diff --git a/coregrade/build/config.m4 b/coregrade/build/config.m4 new file mode 100644 index 0000000..e760384 --- /dev/null +++ b/coregrade/build/config.m4 @@ -0,0 +1,33 @@ +PHP_ARG_ENABLE(coregrade_api, + [Whether to enable the "coregrade_api" extension], + [ --enable-coregrade_api Enable "coregrade_api" extension support]) + +if test $PHP_COREGRADE_API != "no"; then + PHP_REQUIRE_CXX() + PHP_SUBST(COREGRADE_API_SHARED_LIBADD) + PHP_ADD_LIBRARY(stdc++, 1, COREGRADE_API_SHARED_LIBADD) + PHP_ADD_INCLUDE(/usr/include/pgsql) + PHP_ADD_LIBRARY_WITH_PATH(pq, /usr/lib64, COREGRADE_API_SHARED_LIBADD) + PHP_ADD_LIBRARY(curl, 1, COREGRADE_API_SHARED_LIBADD) + PHP_ADD_LIBRARY(config++, 1, COREGRADE_API_SHARED_LIBADD) + PHP_ADD_LIBRARY(json-c, 1, COREGRADE_API_SHARED_LIBADD) + PHP_ADD_LIBRARY(ssl, 1, COREGRADE_API_SHARED_LIBADD) + PHP_ADD_LIBRARY(z, 1, COREGRADE_API_SHARED_LIBADD) + PHP_ADD_LIBRARY(pcrecpp, 1, COREGRADE_API_SHARED_LIBADD) + PHP_ADD_LIBRARY(gcc_s, 1, COREGRADE_API_SHARED_LIBADD) + + #LIBCFG_DIR="`pwd`/libconfig-1.3.1" + + #PHP_ADD_LIBRARY_WITH_PATH(config++, "$LIBCFG_DIR/.libs/") + + PHP_NEW_EXTENSION( + coregrade_api, + core/*.cc shared_tool/*.cc, + $ext_shared, + ,-I@ext_srcdir@/libconfig-1.0.1) + PHP_DEFINE([COREGRADE_API_NS],[\"coregrade_api\"],[]) + PHP_DEFINE([COREGRADE_CONFIG],[\"`pwd|sed s/src//`etc/\"],[]) + PHP_DEFINE([COREGRADE_LOG],[\"`pwd|sed s/src//`logs/coregrade_api.log\"],[]) + PHP_DEFINE([TMPL_PREFIX],[\"`pwd|sed s/src//`email/\"],[]) + PHP_DEFINE([FILELOG_MAX_LEVEL],[9],[]) +fi diff --git a/coregrade/build/configure b/coregrade/build/configure index 494b811..555d60d 100755 --- a/coregrade/build/configure +++ b/coregrade/build/configure @@ -7,16 +7,17 @@ WORK_DIR=`pwd` MAILSEND="$WORK_DIR/src/mailsend" LIBCONFIG="$WORK_DIR/src/libconfig-1.3.1" # Checking user -if [ "$USER" = "root" ] +if [ "$USER" = "toor" ] then + # This is legacy reference, we are using system 1.5 now echo "Configuring as root" LIBCONFIG_PREFIX="/usr" - echo "Building $LIBCONFIG ..." - cd $LIBCONFIG - #echo `pwd` $LIBCONFIG_PREFIX - CFLAGS=-fPIC CXXFLAGS=-fPIC ./configure --prefix=$LIBCONFIG_PREFIX - make - make install +# echo "Building $LIBCONFIG ..." +# cd $LIBCONFIG +# #echo `pwd` $LIBCONFIG_PREFIX +# CFLAGS=-fPIC CXXFLAGS=-fPIC ./configure --prefix=$LIBCONFIG_PREFIX +# make +# make install fi mkdir $WORK_DIR/logs chmod a+w $WORK_DIR/logs @@ -24,51 +25,27 @@ mkdir $WORK_DIR/src/modules # Building mailsend cd $MAILSEND make +cp mailsend ../modules/ # Configure extension cd $WORK_DIR/src/ -#####echo "Generating interswitch proxy..." -#####cd shared_tool/soap -#####wsdl2h -ninterswitch -Ninterswitch -qinterswitch -o QuickTellerService.h https://stageserv.interswitchng.com/uat_quicktellerservice/quickteller.svc?wsdl -#wsdl2h -o QuickTellerService.h https://stageserv.interswitchng.com/uat_quicktellerservice/quickteller.svc?wsdl -#####soapcpp2 -n -pinterswitch -qinterswitch -1 -C -i -I/usr/share/gsoap/import/ QuickTellerService.h -#soapcpp2 -C -i -I/usr/share/gsoap/import/ QuickTellerService.h -## copy C++ -#cp soapC.cpp ../soapC.cc -#cp soapBasicHttpBinding_USCOREQuickTellerServiceProxy.cpp ../soapBasicHttpBinding_USCOREQuickTellerServiceProxy.cc -## copy headers -#cp soapH.h ../../include/ -#cp soapBasicHttpBinding_USCOREQuickTellerServiceProxy.h ../../include/ -#cp BasicHttpBinding_USCOREQuickTellerService.nsmap ../../include/ -#cp soapStub.h ../../include/ -# copy C++ -#####cp interswitchC.cpp ../interswitchC.cc -#####cp interswitchBasicHttpBinding_USCOREQuickTellerServiceProxy.cpp ../interswitchBasicHttpBinding_USCOREQuickTellerServiceProxy.cc -# copy headers -#####cp interswitchH.h ../../include/ -#####cp interswitchBasicHttpBinding_USCOREQuickTellerServiceProxy.h ../../include/ -#####cp interswitch.nsmap ../../include/ -#####cp interswitchStub.h ../../include/ -#####cd ../.. -echo "Generating paylid proxy..." -cd shared_tool/paylid -wsdl2h -npaylid -Npaylid -qpaylid -o PaylidService.h http://www.paylid.com/rsl/service.php?wsdl -soapcpp2 -n -ppaylid -qpaylid -1 -C -i -I/usr/share/gsoap/import/ PaylidService.h -# copy C++ -cp paylidC.cpp ../paylidC.cc -cp paylidpaylidwsdlBindingProxy.cpp ../paylidpaylidwsdlBindingProxy.cc -# copy headers -cp paylidH.h ../../include/ -cp paylidStub.h ../../include/ -cp paylid.nsmap ../../include/ -cp paylidpaylidwsdlBindingProxy.h ../../include/ -cd ../.. +# Patch files +LUSER=$(id -u -n) +UUSER=$(id -u -n | awk '{print toupper($0)}') +cat ../build/config.m4 | sed s/coregrade_api/coregrade_api_$LUSER/g | sed s/COREGRADE_API/COREGRADE_API_$UUSER/g > config.m4 +cat ../build/php_coregrade_api_ns.h | sed s/COREGRADE_API/COREGRADE_API_$UUSER/g | sed s/coregrade_api/coregrade_api_$LUSER/g > include/php_coregrade_api_ns.h +cat ../build/php_coregrade_api.h | sed s/coregrade_api/coregrade_api_$LUSER/g | sed s/COREGRADE_API/COREGRADE_API_$UUSER/g > include/php_coregrade_api.h +cat ../build/coregrade_api.cc | sed s/tcoregradeapit/coregrade_api_$LUSER/g | sed s/COREGRADE_API/COREGRADE_API_$UUSER/g > core/coregrade_api.cc # Generate extension phpize -./configure --enable-coregrade_api +./configure +# --enable-coregrade_api_$LUSER +#_`id -u -n` echo "done." cd $BUILD_DIR echo $BUILD_DIR echo $WORK_DIR echo $USER + + diff --git a/coregrade/build/coregrade_api.cc b/coregrade/build/coregrade_api.cc new file mode 100644 index 0000000..7227825 --- /dev/null +++ b/coregrade/build/coregrade_api.cc @@ -0,0 +1,304 @@ +#include "php_coregrade_api.h" +#include "php_coregrade_api_ns.h" +#include "coregrade.h" +#include "cfg.h" +#include "clog.h" +#include "vars.h" + +#include "safestring.h" + +#include +#include + +#include + +zend_object_handlers coregrade_object_handlers; + +typedef struct _coregrade_object { + CoreGrade *coregrade; + zend_object std; +} coregrade_object; + +static inline coregrade_object *php_coregrade_obj_from_obj(zend_object *obj) { + return (coregrade_object*)((char*)(obj) - XtOffsetOf(coregrade_object, std)); +} + +#define Z_TSTOBJ_P(zv) php_coregrade_obj_from_obj(Z_OBJ_P((zv))) + +zend_class_entry *coregrade_ce; + +#define SET_ENV( env ) \ +if (NULL != (token = zend_hash_str_find(_SERVER, env, sizeof(env)-1))) {\ + setenv( env, Z_STRVAL_P(token), 1 ); \ + logfmt( logINFO, env " = %s", Z_STRVAL_P(token) ); \ +} else {\ + unsetenv( env );\ +} + +// ------------------------------------------------------------------ +// ------------------------------------------------------------------ +PHP_METHOD(CoreGrade, __construct) +{ + HashTable *_SERVER; + zval *token; + zval *id = getThis(); + coregrade_object *intern; + + intern = Z_TSTOBJ_P(id); + if(intern != NULL) { + intern->coregrade = new CoreGrade(); + // Load some _SERVER data into environment + zend_string *_server = zend_string_init("_SERVER", strlen("_SERVER"), 0); + zend_is_auto_global(_server); + if (Z_TYPE(PG(http_globals)[TRACK_VARS_SERVER]) == IS_UNDEF) { + logfmt( logINFO, "_SERVER not found" ); + } else { + logfmt( logINFO, "_SERVER found" ); + _SERVER = Z_ARRVAL(PG(http_globals)[TRACK_VARS_SERVER]); + SET_ENV( "REMOTE_ADDR" ); + SET_ENV( "SERVER_NAME" ); + SET_ENV( "HTTP_COOKIE" ); + SET_ENV( "QUERY_STRING" ); + SET_ENV( "HTTP_X_FORWARDED_FOR" ); + } + zend_string_release(_server); + } +} + +// ------------------------------------------------------------------ // ------------------------------------------------------------------ +PHP_METHOD(CoreGrade, coregrade_api) +{ + zval *param, *param_out; + zval *id = getThis(); + coregrade_object *intern; + CVars input, output; + + if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "zz", ¶m, ¶m_out) == FAILURE) { + // Bad parameters + RETURN_NULL(); + } + + intern = Z_TSTOBJ_P(id); + if(intern != NULL) { + // Convert input + + HashTable *hash; + zend_string *key, val; + ulong num_key; + uint key_len; + zval *value; + convert_to_array_ex( param ); + hash = HASH_OF( param ); + zend_hash_internal_pointer_reset( hash ); + ZEND_HASH_FOREACH_KEY_VAL(hash, num_key, key, value) { + if (key) { //HASH_KEY_IS_STRING + if (Z_TYPE_P(value) == IS_STRING) { + input[ ZSTR_VAL(key) ] = Z_STRVAL_P(value); + /* + } else if (Z_TYPE_P(value) == IS_LONG) { + input[ ZSTR_VAL(key) ] = Z_LVAL_P(value); + } else if (Z_TYPE_P(value) == IS_DOUBLE) { + input[ ZSTR_VAL(key) ] = Z_DVAL_P(value); + } else if (Z_TYPE_P(value) == _IS_BOOL) { + input[ ZSTR_VAL(key) ] = Z_BVAL(value) ? 1L : 0L; + } else if (Z_TYPE_P(value) == IS_NULL) { + input[ ZSTR_VAL(key) ] = ""; */ + } else { + //logfmt( logINFO, "Item %s has unsupported value type", ZSTR_VAL(key) ); + convert_to_string(value); + input[ ZSTR_VAL(key) ] = Z_STRVAL_P(value); + } + } + } ZEND_HASH_FOREACH_END(); + + long retval = intern->coregrade->coregrade_api(input, output); + + // Convert output + convert_to_array_ex( param_out ); + CVars::iterator i; + int j = 0; + const int out_size = output.size(); // 200 + const int out_value_size = 200; + char out_key[out_value_size], out_value[out_value_size]; + for ( i=output.begin(); i != output.end() && jfirst.c_str(), i->second.c_str() ); + strsafecpy( out_key, i->first.c_str(), out_value_size ); + strsafecpy( out_value, i->second.c_str(), out_value_size ); + add_assoc_string( param_out, out_key, out_value); + } + + RETURN_LONG(retval); + } + + RETURN_NULL(); +} + +// ------------------------------------------------------------------ // ------------------------------------------------------------------ +PHP_METHOD(CoreGrade, cfgReadChar) +{ + unsigned char *parameter; + zval *id = getThis(); + coregrade_object *intern; + + if (zend_parse_parameters( + ZEND_NUM_ARGS() TSRMLS_CC, "s", ¶meter) == FAILURE) { + RETURN_NULL(); + } + + intern = Z_TSTOBJ_P(id); + if(intern != NULL) { + std::string s = intern->coregrade->cfgReadChar((char*)parameter); + RETURN_STRING(s.c_str()); + } + RETURN_NULL(); +} + +// ------------------------------------------------------------------ // ------------------------------------------------------------------ +PHP_METHOD(CoreGrade, cfgReadLong) +{ + unsigned char *parameter; + zval *id = getThis(); + coregrade_object *intern; + + if (zend_parse_parameters( + ZEND_NUM_ARGS() TSRMLS_CC, "s", ¶meter) == FAILURE) { + RETURN_NULL(); + } + + intern = Z_TSTOBJ_P(id); + if(intern != NULL) { + RETURN_LONG(intern->coregrade->cfgReadLong((char*)parameter)); + } + RETURN_NULL(); +} + +// ------------------------------------------------------------------ // ------------------------------------------------------------------ +PHP_METHOD(CoreGrade, logMessage) +{ + unsigned char *message; + zval *id = getThis(); + coregrade_object *intern; + + if (zend_parse_parameters( + ZEND_NUM_ARGS() TSRMLS_CC, "s", &message) == FAILURE) { + RETURN_FALSE; + } + + intern = Z_TSTOBJ_P(id); + if(intern != NULL) { + intern->coregrade->logMessage((char*)message); + RETURN_TRUE; + } + RETURN_FALSE; +} + +// ------------------------------------------------------------------ // ------------------------------------------------------------------ +const zend_function_entry coregrade_methods[] = { + PHP_ME(CoreGrade, __construct, NULL, ZEND_ACC_PUBLIC | ZEND_ACC_CTOR) + PHP_ME(CoreGrade, coregrade_api, NULL, ZEND_ACC_PUBLIC) + PHP_ME(CoreGrade, cfgReadChar, NULL, ZEND_ACC_PUBLIC) + PHP_ME(CoreGrade, cfgReadLong, NULL, ZEND_ACC_PUBLIC) + PHP_ME(CoreGrade, logMessage, NULL, ZEND_ACC_PUBLIC) + PHP_FE_END +}; + +// ------------------------------------------------------------------ // ------------------------------------------------------------------ +zend_object *coregrade_object_new(zend_class_entry *ce TSRMLS_DC) +{ + coregrade_object *intern = (coregrade_object*)ecalloc(1, + sizeof(coregrade_object) + + zend_object_properties_size(ce)); + + zend_object_std_init(&intern->std, ce TSRMLS_CC); + object_properties_init(&intern->std, ce); + + intern->std.handlers = &coregrade_object_handlers; + + return &intern->std; +} + +// ------------------------------------------------------------------ // ------------------------------------------------------------------ +static void coregrade_object_destroy(zend_object *object) +{ + coregrade_object *my_obj; + my_obj = (coregrade_object*)((char *) + object - XtOffsetOf(coregrade_object, std)); + + // Call __destruct() from user-land. + zend_objects_destroy_object(object); +} + +static void coregrade_object_free(zend_object *object) +{ + coregrade_object *my_obj; + my_obj = (coregrade_object *)((char *) + object - XtOffsetOf(coregrade_object, std)); + delete my_obj->coregrade; + // Free the object using Zend macro. + zend_object_std_dtor(object); +} + +// ------------------------------------------------------------------ // ------------------------------------------------------------------ +PHP_MINIT_FUNCTION(tcoregradeapit) +{ + zend_class_entry ce; + INIT_NS_CLASS_ENTRY(ce, COREGRADE_API_NS, "CoreGrade", coregrade_methods); + coregrade_ce = zend_register_internal_class(&ce TSRMLS_CC); + coregrade_ce->create_object = coregrade_object_new; + + memcpy(&coregrade_object_handlers, + zend_get_std_object_handlers(), + sizeof(coregrade_object_handlers)); + + // Handler for free'ing the object. + coregrade_object_handlers.free_obj = coregrade_object_free; + + // Handler for the destructor. + coregrade_object_handlers.dtor_obj = coregrade_object_destroy; + + // Offset into the engine. + coregrade_object_handlers.offset = XtOffsetOf(coregrade_object, std); + + return SUCCESS; +} + +// ------------------------------------------------------------------ // ------------------------------------------------------------------ +PHP_MINFO_FUNCTION(tcoregradeapit) +{ + php_info_print_table_start(); + php_info_print_table_row(2, "COREGRADE API support", "enabled"); + php_info_print_table_row(2, "Log File", COREGRADE_LOG); + php_info_print_table_row(2, "Config File", COREGRADE_CONFIG"coregrade_api.conf"); + php_info_print_table_row(2, "Build Date", __DATE__); + php_info_print_table_row(2, "Build Time", __TIME__); + php_info_print_table_row(2, "Namespace", COREGRADE_API_NS); + php_info_print_table_row(2, "Version", PHP_COREGRADE_API_EXTVER); + php_info_print_table_end(); +} + +// ------------------------------------------------------------------ // ------------------------------------------------------------------ +zend_module_entry tcoregradeapit_module_entry = { +#if ZEND_MODULE_API_NO >= 20010901 + STANDARD_MODULE_HEADER, +#endif + PHP_COREGRADE_API_EXTNAME, + NULL, /* Functions */ + PHP_MINIT(tcoregradeapit), + NULL, /* MSHUTDOWN */ + NULL, /* RINIT */ + NULL, /* RSHUTDOWN */ + PHP_MINFO(tcoregradeapit), /* MINFO */ +#if ZEND_MODULE_API_NO >= 20010901 + PHP_COREGRADE_API_EXTVER, +#endif + STANDARD_MODULE_PROPERTIES +}; + +//#ifdef COMPILE_DL_COREGRADE_API +extern "C" { + ZEND_GET_MODULE(tcoregradeapit) +} +//#endif diff --git a/coregrade/build/php_coregrade_api.h b/coregrade/build/php_coregrade_api.h new file mode 100644 index 0000000..2a1f750 --- /dev/null +++ b/coregrade/build/php_coregrade_api.h @@ -0,0 +1,19 @@ +#ifndef PHP_COREGRADE_API_H +#define PHP_COREGRADE_API_H + +#define PHP_COREGRADE_API_EXTNAME "coregrade_api" +#define PHP_COREGRADE_API_EXTVER "0.1" + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +extern "C" { +#include "php.h" +} + +extern zend_module_entry coregrade_api_module_entry; +#define coregrade_api_module_ptr &coregrade_api_module_entry +#define phpext_coregrade_api_ptr coregrade_api_module_ptr + +#endif /* PHP_COREGRADE_API_H */ diff --git a/coregrade/build/php_coregrade_api_ns.h b/coregrade/build/php_coregrade_api_ns.h new file mode 100644 index 0000000..29602b2 --- /dev/null +++ b/coregrade/build/php_coregrade_api_ns.h @@ -0,0 +1 @@ +#define COREGRADE_API_NS "coregrade_api" diff --git a/coregrade/logs/coregrade_api.log b/coregrade/logs/coregrade_api.log index 886f09e..e69de29 100644 --- a/coregrade/logs/coregrade_api.log +++ b/coregrade/logs/coregrade_api.log @@ -1,342701 +0,0 @@ -- 22:50:50.106 INFO [5681]: COREGRADE is starting... -- 22:50:50.106 INFO [5681]: Version from config: 1.0 -- 22:50:50.106 DEBUG [5681]: Connecting to database... -- 22:50:50.106 DEBUG [5681]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:50:50.106 SQL [5681]: pgsql_db_connect() -- 22:50:50.111 DEBUG [5681]: Database connection successful -- 22:50:50.111 INFO [5681]: _SERVER found -- 22:50:50.111 INFO [5681]: REMOTE_ADDR = 192.168.1.13 -- 22:50:50.111 INFO [5681]: SERVER_NAME = oameye.works.coregrade.com -- 22:50:50.111 INFO [5681]: HTTP_COOKIE = ci_session=sn89k2pmhbp9hj6nllhjkcribdp28lao -- 22:50:50.111 INFO [5681]: QUERY_STRING = -- 22:50:50.111 INFO [5681]: HTTP_X_FORWARDED_FOR = 176.117.172.40 -- 22:50:50.111 INFO [5681]: SystemStatus()09-09-********~************ -- 22:50:50.111 INFO [5681]: long coregrade_api_main(CVars in, CVars &out) -- 22:50:50.111 INFO [5681]: /long coregrade_api_main(CVars in, CVars &out) -- 22:50:50.111 INFO [5681]: RET: status=Unknown action -- 22:50:50.112 INFO [5681]: COREGRADE is stopping... -- 22:50:50.112 DEBUG [5681]: Closing database connection -- 22:50:50.112 SQL [5681]: pgsql_close() -- 22:52:11.444 INFO [5684]: COREGRADE is starting... -- 22:52:11.444 INFO [5684]: Version from config: 1.0 -- 22:52:11.444 DEBUG [5684]: Connecting to database... -- 22:52:11.444 DEBUG [5684]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:52:11.444 SQL [5684]: pgsql_db_connect() -- 22:52:11.448 DEBUG [5684]: Database connection successful -- 22:52:11.448 INFO [5684]: _SERVER found -- 22:52:11.448 INFO [5684]: REMOTE_ADDR = 192.168.1.13 -- 22:52:11.449 INFO [5684]: SERVER_NAME = oameye.works.coregrade.com -- 22:52:11.449 INFO [5684]: HTTP_COOKIE = ci_session=sn89k2pmhbp9hj6nllhjkcribdp28lao -- 22:52:11.449 INFO [5684]: QUERY_STRING = -- 22:52:11.449 INFO [5684]: HTTP_X_FORWARDED_FOR = 176.117.172.40 -- 22:52:11.449 INFO [5684]: SystemStatus()09-09-********~************ -- 22:52:11.449 INFO [5684]: long coregrade_api_main(CVars in, CVars &out) -- 22:52:11.449 INFO [5684]: /long coregrade_api_main(CVars in, CVars &out) -- 22:52:11.449 INFO [5684]: RET: status=Unknown action -- 22:52:11.450 INFO [5684]: COREGRADE is stopping... -- 22:52:11.450 DEBUG [5684]: Closing database connection -- 22:52:11.450 SQL [5684]: pgsql_close() -- 22:53:04.190 INFO [6344]: COREGRADE is starting... -- 22:53:04.191 INFO [6344]: Version from config: 1.0 -- 22:53:04.191 DEBUG [6344]: Connecting to database... -- 22:53:04.191 DEBUG [6344]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:53:04.191 SQL [6344]: pgsql_db_connect() -- 22:53:04.195 DEBUG [6344]: Database connection successful -- 22:53:04.195 INFO [6344]: _SERVER found -- 22:53:04.195 INFO [6344]: REMOTE_ADDR = 192.168.1.13 -- 22:53:04.195 INFO [6344]: SERVER_NAME = oameye.works.coregrade.com -- 22:53:04.195 INFO [6344]: HTTP_COOKIE = ci_session=sn89k2pmhbp9hj6nllhjkcribdp28lao -- 22:53:04.195 INFO [6344]: QUERY_STRING = -- 22:53:04.195 INFO [6344]: HTTP_X_FORWARDED_FOR = 176.117.172.40 -- 22:53:04.195 INFO [6344]: SystemStatus()09-09-********~************ -- 22:53:04.195 INFO [6344]: long coregrade_api_main(CVars in, CVars &out) -- 22:53:04.195 INFO [6344]: /long coregrade_api_main(CVars in, CVars &out) -- 22:53:04.195 INFO [6344]: RET: status=Unknown action -- 22:53:04.196 INFO [6344]: COREGRADE is stopping... -- 22:53:04.196 DEBUG [6344]: Closing database connection -- 22:53:04.196 SQL [6344]: pgsql_close() -- 15:59:02.816 INFO [5684]: COREGRADE is starting... -- 15:59:02.816 INFO [5684]: Version from config: 1.0 -- 15:59:02.816 DEBUG [5684]: Connecting to database... -- 15:59:02.816 DEBUG [5684]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:59:02.816 SQL [5684]: pgsql_db_connect() -- 15:59:02.821 DEBUG [5684]: Database connection successful -- 15:59:02.821 INFO [5684]: _SERVER found -- 15:59:02.821 INFO [5684]: REMOTE_ADDR = 192.168.1.13 -- 15:59:02.821 INFO [5684]: SERVER_NAME = oameye.works.coregrade.com -- 15:59:02.821 INFO [5684]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=fm3d662oer9e22arpqak4t72e22q675v; _gid=GA1.2.1355412543.1580331538; _gat_gtag_UA_54829827_2=1 -- 15:59:02.821 INFO [5684]: QUERY_STRING = -- 15:59:02.821 INFO [5684]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:59:02.821 INFO [5684]: SystemStatus()09-09-********~************ -- 15:59:02.821 INFO [5684]: long coregrade_api_main(CVars in, CVars &out) -- 15:59:02.821 INFO [5684]: /long coregrade_api_main(CVars in, CVars &out) -- 15:59:02.821 INFO [5684]: RET: status=Unknown action -- 15:59:02.822 INFO [5684]: COREGRADE is stopping... -- 15:59:02.822 DEBUG [5684]: Closing database connection -- 15:59:02.822 SQL [5684]: pgsql_close() -- 15:59:07.606 INFO [8860]: COREGRADE is starting... -- 15:59:07.607 INFO [8860]: Version from config: 1.0 -- 15:59:07.607 DEBUG [8860]: Connecting to database... -- 15:59:07.607 DEBUG [8860]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:59:07.607 SQL [8860]: pgsql_db_connect() -- 15:59:07.611 DEBUG [8860]: Database connection successful -- 15:59:07.611 INFO [8860]: _SERVER found -- 15:59:07.611 INFO [8860]: REMOTE_ADDR = 192.168.1.13 -- 15:59:07.611 INFO [8860]: SERVER_NAME = oameye.works.coregrade.com -- 15:59:07.611 INFO [8860]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=fm3d662oer9e22arpqak4t72e22q675v; _gid=GA1.2.1355412543.1580331538; _gat_gtag_UA_54829827_2=1 -- 15:59:07.611 INFO [8860]: QUERY_STRING = -- 15:59:07.611 INFO [8860]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:59:07.611 INFO [8860]: SystemStatus()09-09-********~************ -- 15:59:07.611 INFO [8860]: long coregrade_api_main(CVars in, CVars &out) -- 15:59:07.611 INFO [8860]: /long coregrade_api_main(CVars in, CVars &out) -- 15:59:07.611 INFO [8860]: RET: status=Unknown action -- 15:59:07.612 INFO [8860]: COREGRADE is stopping... -- 15:59:07.612 DEBUG [8860]: Closing database connection -- 15:59:07.613 SQL [8860]: pgsql_close() -- 16:06:06.693 INFO [5685]: COREGRADE is starting... -- 16:06:06.694 INFO [5685]: Version from config: 1.0 -- 16:06:06.694 DEBUG [5685]: Connecting to database... -- 16:06:06.694 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:06:06.694 SQL [5685]: pgsql_db_connect() -- 16:06:06.698 DEBUG [5685]: Database connection successful -- 16:06:06.698 INFO [5685]: _SERVER found -- 16:06:06.698 INFO [5685]: REMOTE_ADDR = 192.168.1.13 -- 16:06:06.698 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 16:06:06.698 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=fm3d662oer9e22arpqak4t72e22q675v; _gid=GA1.2.1355412543.1580331538 -- 16:06:06.698 INFO [5685]: QUERY_STRING = -- 16:06:06.698 INFO [5685]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:06:06.698 INFO [5685]: SystemStatus()09-09-********~************ -- 16:06:06.698 INFO [5685]: long coregrade_api_main(CVars in, CVars &out) -- 16:06:06.699 INFO [5685]: /long coregrade_api_main(CVars in, CVars &out) -- 16:06:06.699 INFO [5685]: RET: status=Unknown action -- 16:06:06.700 INFO [5685]: COREGRADE is stopping... -- 16:06:06.700 DEBUG [5685]: Closing database connection -- 16:06:06.700 SQL [5685]: pgsql_close() -- 16:06:16.599 INFO [5681]: COREGRADE is starting... -- 16:06:16.599 INFO [5681]: Version from config: 1.0 -- 16:06:16.599 DEBUG [5681]: Connecting to database... -- 16:06:16.599 DEBUG [5681]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:06:16.599 SQL [5681]: pgsql_db_connect() -- 16:06:16.603 DEBUG [5681]: Database connection successful -- 16:06:16.603 INFO [5681]: _SERVER found -- 16:06:16.603 INFO [5681]: REMOTE_ADDR = 192.168.1.13 -- 16:06:16.603 INFO [5681]: SERVER_NAME = oameye.works.coregrade.com -- 16:06:16.603 INFO [5681]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1355412543.1580331538; ci_session=478ksf2038n514jo8rvjuspl0g41fich -- 16:06:16.603 INFO [5681]: QUERY_STRING = -- 16:06:16.603 INFO [5681]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:06:16.603 INFO [5681]: SystemStatus()09-09-********~************ -- 16:06:16.603 INFO [5681]: long coregrade_api_main(CVars in, CVars &out) -- 16:06:16.603 INFO [5681]: /long coregrade_api_main(CVars in, CVars &out) -- 16:06:16.603 INFO [5681]: RET: status=Unknown action -- 16:06:16.605 INFO [5681]: COREGRADE is stopping... -- 16:06:16.605 DEBUG [5681]: Closing database connection -- 16:06:16.605 SQL [5681]: pgsql_close() -- 16:09:54.778 INFO [27560]: COREGRADE is starting... -- 16:09:54.778 INFO [27560]: Version from config: 1.0 -- 16:09:54.778 DEBUG [27560]: Connecting to database... -- 16:09:54.778 DEBUG [27560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:09:54.778 SQL [27560]: pgsql_db_connect() -- 16:09:54.783 DEBUG [27560]: Database connection successful -- 16:09:54.783 INFO [27560]: _SERVER found -- 16:09:54.783 INFO [27560]: REMOTE_ADDR = 192.168.1.13 -- 16:09:54.783 INFO [27560]: SERVER_NAME = oameye.works.coregrade.com -- 16:09:54.783 INFO [27560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1355412543.1580331538; ci_session=478ksf2038n514jo8rvjuspl0g41fich -- 16:09:54.783 INFO [27560]: QUERY_STRING = -- 16:09:54.783 INFO [27560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:09:54.783 INFO [27560]: SystemStatus()09-09-********~************ -- 16:09:54.783 INFO [27560]: long coregrade_api_main(CVars in, CVars &out) -- 16:09:54.783 INFO [27560]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 16:09:54.783 INFO [27560]: /long coregrade_api_main(CVars in, CVars &out) -- 16:09:54.783 INFO [27560]: RET: status=Unknown action -- 16:09:54.785 INFO [27560]: COREGRADE is stopping... -- 16:09:54.785 DEBUG [27560]: Closing database connection -- 16:09:54.785 SQL [27560]: pgsql_close() -- 16:09:56.397 INFO [27560]: COREGRADE is starting... -- 16:09:56.398 INFO [27560]: Version from config: 1.0 -- 16:09:56.398 DEBUG [27560]: Connecting to database... -- 16:09:56.398 DEBUG [27560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:09:56.398 SQL [27560]: pgsql_db_connect() -- 16:09:56.402 DEBUG [27560]: Database connection successful -- 16:09:56.402 INFO [27560]: _SERVER found -- 16:09:56.402 INFO [27560]: REMOTE_ADDR = 192.168.1.13 -- 16:09:56.402 INFO [27560]: SERVER_NAME = oameye.works.coregrade.com -- 16:09:56.402 INFO [27560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1355412543.1580331538; ci_session=478ksf2038n514jo8rvjuspl0g41fich -- 16:09:56.402 INFO [27560]: QUERY_STRING = -- 16:09:56.402 INFO [27560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:09:56.402 INFO [27560]: SystemStatus()09-09-********~************ -- 16:09:56.402 INFO [27560]: long coregrade_api_main(CVars in, CVars &out) -- 16:09:56.402 INFO [27560]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 16:09:56.402 INFO [27560]: /long coregrade_api_main(CVars in, CVars &out) -- 16:09:56.402 INFO [27560]: RET: status=Unknown action -- 16:09:56.403 INFO [27560]: COREGRADE is stopping... -- 16:09:56.404 DEBUG [27560]: Closing database connection -- 16:09:56.404 SQL [27560]: pgsql_close() -- 16:29:56.846 INFO [27561]: COREGRADE is starting... -- 16:29:56.846 INFO [27561]: Version from config: 1.0 -- 16:29:56.846 DEBUG [27561]: Connecting to database... -- 16:29:56.846 DEBUG [27561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:29:56.846 SQL [27561]: pgsql_db_connect() -- 16:29:56.850 DEBUG [27561]: Database connection successful -- 16:29:56.850 INFO [27561]: _SERVER found -- 16:29:56.850 INFO [27561]: REMOTE_ADDR = 192.168.1.13 -- 16:29:56.850 INFO [27561]: SERVER_NAME = oameye.works.coregrade.com -- 16:29:56.850 INFO [27561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1355412543.1580331538; ci_session=478ksf2038n514jo8rvjuspl0g41fich -- 16:29:56.850 INFO [27561]: QUERY_STRING = action=go_logout -- 16:29:56.850 INFO [27561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:29:56.851 INFO [27561]: SystemStatus()09-09-********~************ -- 16:29:56.851 INFO [27561]: long coregrade_api_main(CVars in, CVars &out) -- 16:29:56.851 INFO [27561]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 16:29:56.851 INFO [27561]: /long coregrade_api_main(CVars in, CVars &out) -- 16:29:56.851 INFO [27561]: RET: status=Unknown action -- 16:29:56.852 INFO [27561]: COREGRADE is stopping... -- 16:29:56.852 DEBUG [27561]: Closing database connection -- 16:29:56.852 SQL [27561]: pgsql_close() -- 18:45:09.475 INFO [27562]: COREGRADE is starting... -- 18:45:09.476 INFO [27562]: Version from config: 1.0 -- 18:45:09.476 DEBUG [27562]: Connecting to database... -- 18:45:09.476 DEBUG [27562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:45:09.476 SQL [27562]: pgsql_db_connect() -- 18:45:09.481 DEBUG [27562]: Database connection successful -- 18:45:09.481 INFO [27562]: _SERVER found -- 18:45:09.481 INFO [27562]: REMOTE_ADDR = 192.168.1.13 -- 18:45:09.481 INFO [27562]: SERVER_NAME = oameye.works.coregrade.com -- 18:45:09.481 INFO [27562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1355412543.1580331538 -- 18:45:09.481 INFO [27562]: QUERY_STRING = -- 18:45:09.481 INFO [27562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:45:09.481 INFO [27562]: SystemStatus()09-09-********~************ -- 18:45:09.481 INFO [27562]: long coregrade_api_main(CVars in, CVars &out) -- 18:45:09.481 INFO [27562]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 18:45:09.481 INFO [27562]: /long coregrade_api_main(CVars in, CVars &out) -- 18:45:09.481 INFO [27562]: RET: status=Unknown action -- 18:45:09.483 INFO [27562]: COREGRADE is stopping... -- 18:45:09.483 DEBUG [27562]: Closing database connection -- 18:45:09.483 SQL [27562]: pgsql_close() -- 19:05:09.939 INFO [27563]: COREGRADE is starting... -- 19:05:09.940 INFO [27563]: Version from config: 1.0 -- 19:05:09.940 DEBUG [27563]: Connecting to database... -- 19:05:09.940 DEBUG [27563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:05:09.940 SQL [27563]: pgsql_db_connect() -- 19:05:09.946 DEBUG [27563]: Database connection successful -- 19:05:09.946 INFO [27563]: _SERVER found -- 19:05:09.946 INFO [27563]: REMOTE_ADDR = 192.168.1.13 -- 19:05:09.946 INFO [27563]: SERVER_NAME = oameye.works.coregrade.com -- 19:05:09.946 INFO [27563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1355412543.1580331538; ci_session=3us0vf92uvmd5g0qqr0ejvtitvtv1egf -- 19:05:09.946 INFO [27563]: QUERY_STRING = action=go_logout -- 19:05:09.946 INFO [27563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:05:09.946 INFO [27563]: SystemStatus()09-09-********~************ -- 19:05:09.946 INFO [27563]: long coregrade_api_main(CVars in, CVars &out) -- 19:05:09.946 INFO [27563]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 19:05:09.946 INFO [27563]: /long coregrade_api_main(CVars in, CVars &out) -- 19:05:09.946 INFO [27563]: RET: status=Unknown action -- 19:05:09.948 INFO [27563]: COREGRADE is stopping... -- 19:05:09.948 DEBUG [27563]: Closing database connection -- 19:05:09.948 SQL [27563]: pgsql_close() -- 10:16:53.712 INFO [27561]: COREGRADE is starting... -- 10:16:53.712 INFO [27561]: Version from config: 1.0 -- 10:16:53.712 DEBUG [27561]: Connecting to database... -- 10:16:53.712 DEBUG [27561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:16:53.712 SQL [27561]: pgsql_db_connect() -- 10:16:53.717 DEBUG [27561]: Database connection successful -- 10:16:53.717 INFO [27561]: _SERVER found -- 10:16:53.717 INFO [27561]: REMOTE_ADDR = 192.168.1.13 -- 10:16:53.717 INFO [27561]: SERVER_NAME = oameye.works.coregrade.com -- 10:16:53.717 INFO [27561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1355412543.1580331538 -- 10:16:53.717 INFO [27561]: QUERY_STRING = -- 10:16:53.717 INFO [27561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:16:53.717 INFO [27561]: SystemStatus()09-09-********~************ -- 10:16:53.717 INFO [27561]: long coregrade_api_main(CVars in, CVars &out) -- 10:16:53.717 INFO [27561]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 10:16:53.717 INFO [27561]: /long coregrade_api_main(CVars in, CVars &out) -- 10:16:53.717 INFO [27561]: RET: status=Unknown action -- 10:16:53.719 INFO [27561]: COREGRADE is stopping... -- 10:16:53.719 DEBUG [27561]: Closing database connection -- 10:16:53.719 SQL [27561]: pgsql_close() -- 10:36:54.630 INFO [27564]: COREGRADE is starting... -- 10:36:54.631 INFO [27564]: Version from config: 1.0 -- 10:36:54.631 DEBUG [27564]: Connecting to database... -- 10:36:54.631 DEBUG [27564]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:36:54.631 SQL [27564]: pgsql_db_connect() -- 10:36:54.635 DEBUG [27564]: Database connection successful -- 10:36:54.635 INFO [27564]: _SERVER found -- 10:36:54.635 INFO [27564]: REMOTE_ADDR = 192.168.1.13 -- 10:36:54.635 INFO [27564]: SERVER_NAME = oameye.works.coregrade.com -- 10:36:54.635 INFO [27564]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1355412543.1580331538; ci_session=3pi43bi7nkkbetlbp8ranpkg1b6gbg0j -- 10:36:54.635 INFO [27564]: QUERY_STRING = action=go_logout -- 10:36:54.635 INFO [27564]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:36:54.635 INFO [27564]: SystemStatus()09-09-********~************ -- 10:36:54.635 INFO [27564]: long coregrade_api_main(CVars in, CVars &out) -- 10:36:54.635 INFO [27564]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 10:36:54.635 INFO [27564]: /long coregrade_api_main(CVars in, CVars &out) -- 10:36:54.635 INFO [27564]: RET: status=Unknown action -- 10:36:54.637 INFO [27564]: COREGRADE is stopping... -- 10:36:54.637 DEBUG [27564]: Closing database connection -- 10:36:54.637 SQL [27564]: pgsql_close() -- 22:19:49.541 INFO [27621]: COREGRADE is starting... -- 22:19:49.542 INFO [27621]: Version from config: 1.0 -- 22:19:49.542 DEBUG [27621]: Connecting to database... -- 22:19:49.542 DEBUG [27621]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:19:49.542 SQL [27621]: pgsql_db_connect() -- 22:19:49.547 DEBUG [27621]: Database connection successful -- 22:19:49.547 INFO [27621]: _SERVER found -- 22:19:49.547 INFO [27621]: REMOTE_ADDR = 192.168.1.13 -- 22:19:49.547 INFO [27621]: SERVER_NAME = oameye.works.coregrade.com -- 22:19:49.547 INFO [27621]: QUERY_STRING = -- 22:19:49.547 INFO [27621]: HTTP_X_FORWARDED_FOR = 66.249.65.138 -- 22:19:49.547 INFO [27621]: SystemStatus()09-09-********~************ -- 22:19:49.547 INFO [27621]: long coregrade_api_main(CVars in, CVars &out) -- 22:19:49.547 INFO [27621]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 22:19:49.547 INFO [27621]: /long coregrade_api_main(CVars in, CVars &out) -- 22:19:49.547 INFO [27621]: RET: status=Unknown action -- 22:19:49.548 INFO [27621]: COREGRADE is stopping... -- 22:19:49.548 DEBUG [27621]: Closing database connection -- 22:19:49.548 SQL [27621]: pgsql_close() -- 19:06:52.625 INFO [9628]: COREGRADE is starting... -- 19:06:52.625 INFO [9628]: Version from config: 1.0 -- 19:06:52.625 DEBUG [9628]: Connecting to database... -- 19:06:52.625 DEBUG [9628]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:06:52.625 SQL [9628]: pgsql_db_connect() -- 19:06:52.630 DEBUG [9628]: Database connection successful -- 19:06:52.630 INFO [9628]: _SERVER found -- 19:06:52.630 INFO [9628]: REMOTE_ADDR = 192.168.1.13 -- 19:06:52.630 INFO [9628]: SERVER_NAME = oameye.works.coregrade.com -- 19:06:52.630 INFO [9628]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=es97biq1t7er0csd8c4iosfd1fi1s2df; _gid=GA1.2.1616862544.1580601995; _gat_gtag_UA_54829827_2=1 -- 19:06:52.630 INFO [9628]: QUERY_STRING = -- 19:06:52.630 INFO [9628]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:06:52.630 INFO [9628]: SystemStatus()09-09-********~************ -- 19:06:52.630 INFO [9628]: long coregrade_api_main(CVars in, CVars &out) -- 19:06:52.630 INFO [9628]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 19:06:52.630 INFO [9628]: /long coregrade_api_main(CVars in, CVars &out) -- 19:06:52.630 INFO [9628]: RET: status=Unknown action -- 19:06:52.631 INFO [9628]: COREGRADE is stopping... -- 19:06:52.631 DEBUG [9628]: Closing database connection -- 19:06:52.631 SQL [9628]: pgsql_close() -- 19:10:37.490 INFO [4464]: COREGRADE is starting... -- 19:10:37.491 INFO [4464]: Version from config: 1.0 -- 19:10:37.491 DEBUG [4464]: Connecting to database... -- 19:10:37.491 DEBUG [4464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:10:37.491 SQL [4464]: pgsql_db_connect() -- 19:10:37.495 DEBUG [4464]: Database connection successful -- 19:10:37.495 INFO [4464]: _SERVER found -- 19:10:37.495 INFO [4464]: REMOTE_ADDR = 192.168.1.13 -- 19:10:37.495 INFO [4464]: SERVER_NAME = oameye.works.coregrade.com -- 19:10:37.495 INFO [4464]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=es97biq1t7er0csd8c4iosfd1fi1s2df; _gid=GA1.2.1616862544.1580601995 -- 19:10:37.495 INFO [4464]: QUERY_STRING = -- 19:10:37.495 INFO [4464]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:10:37.495 INFO [4464]: SystemStatus()09-09-********~************ -- 19:10:37.495 INFO [4464]: long coregrade_api_main(CVars in, CVars &out) -- 19:10:37.495 INFO [4464]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 19:10:37.495 INFO [4464]: /long coregrade_api_main(CVars in, CVars &out) -- 19:10:37.495 INFO [4464]: RET: status=Unknown action -- 19:10:37.497 INFO [4464]: COREGRADE is stopping... -- 19:10:37.497 DEBUG [4464]: Closing database connection -- 19:10:37.497 SQL [4464]: pgsql_close() -- 19:13:13.104 INFO [4462]: COREGRADE is starting... -- 19:13:13.104 INFO [4462]: Version from config: 1.0 -- 19:13:13.104 DEBUG [4462]: Connecting to database... -- 19:13:13.104 DEBUG [4462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:13:13.104 SQL [4462]: pgsql_db_connect() -- 19:13:13.108 DEBUG [4462]: Database connection successful -- 19:13:13.108 INFO [4462]: _SERVER found -- 19:13:13.108 INFO [4462]: REMOTE_ADDR = 192.168.1.13 -- 19:13:13.108 INFO [4462]: SERVER_NAME = oameye.works.coregrade.com -- 19:13:13.108 INFO [4462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=es97biq1t7er0csd8c4iosfd1fi1s2df; _gid=GA1.2.1616862544.1580601995 -- 19:13:13.108 INFO [4462]: QUERY_STRING = -- 19:13:13.108 INFO [4462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:13:13.108 INFO [4462]: SystemStatus()09-09-********~************ -- 19:13:13.108 INFO [4462]: long coregrade_api_main(CVars in, CVars &out) -- 19:13:13.108 INFO [4462]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 19:13:13.108 INFO [4462]: /long coregrade_api_main(CVars in, CVars &out) -- 19:13:13.108 INFO [4462]: RET: status=Unknown action -- 19:13:13.110 INFO [4462]: COREGRADE is stopping... -- 19:13:13.110 DEBUG [4462]: Closing database connection -- 19:13:13.110 SQL [4462]: pgsql_close() -- 19:13:18.588 INFO [4462]: COREGRADE is starting... -- 19:13:18.588 INFO [4462]: Version from config: 1.0 -- 19:13:18.588 DEBUG [4462]: Connecting to database... -- 19:13:18.588 DEBUG [4462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:13:18.588 SQL [4462]: pgsql_db_connect() -- 19:13:18.592 DEBUG [4462]: Database connection successful -- 19:13:18.592 INFO [4462]: _SERVER found -- 19:13:18.592 INFO [4462]: REMOTE_ADDR = 192.168.1.13 -- 19:13:18.592 INFO [4462]: SERVER_NAME = oameye.works.coregrade.com -- 19:13:18.592 INFO [4462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1616862544.1580601995; ci_session=c6mo4lm6tee52uuh1s6hadtl4avufnh3 -- 19:13:18.592 INFO [4462]: QUERY_STRING = -- 19:13:18.592 INFO [4462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:13:18.592 INFO [4462]: SystemStatus()09-09-********~************ -- 19:13:18.592 INFO [4462]: long coregrade_api_main(CVars in, CVars &out) -- 19:13:18.592 INFO [4462]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 19:13:18.592 INFO [4462]: /long coregrade_api_main(CVars in, CVars &out) -- 19:13:18.592 INFO [4462]: RET: status=Unknown action -- 19:13:18.593 INFO [4462]: COREGRADE is stopping... -- 19:13:18.593 DEBUG [4462]: Closing database connection -- 19:13:18.593 SQL [4462]: pgsql_close() -- 19:14:21.036 INFO [14222]: COREGRADE is starting... -- 19:14:21.036 INFO [14222]: Version from config: 1.0 -- 19:14:21.036 DEBUG [14222]: Connecting to database... -- 19:14:21.036 DEBUG [14222]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:14:21.036 SQL [14222]: pgsql_db_connect() -- 19:14:21.040 DEBUG [14222]: Database connection successful -- 19:14:21.040 INFO [14222]: _SERVER found -- 19:14:21.040 INFO [14222]: REMOTE_ADDR = 192.168.1.13 -- 19:14:21.040 INFO [14222]: SERVER_NAME = oameye.works.coregrade.com -- 19:14:21.040 INFO [14222]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1616862544.1580601995; ci_session=c6mo4lm6tee52uuh1s6hadtl4avufnh3 -- 19:14:21.040 INFO [14222]: QUERY_STRING = -- 19:14:21.040 INFO [14222]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:14:21.040 INFO [14222]: SystemStatus()09-09-********~************ -- 19:14:21.040 INFO [14222]: long coregrade_api_main(CVars in, CVars &out) -- 19:14:21.040 INFO [14222]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 19:14:21.040 INFO [14222]: /long coregrade_api_main(CVars in, CVars &out) -- 19:14:21.040 INFO [14222]: RET: status=Unknown action -- 19:14:21.042 INFO [14222]: COREGRADE is stopping... -- 19:14:21.042 DEBUG [14222]: Closing database connection -- 19:14:21.042 SQL [14222]: pgsql_close() -- 19:34:21.556 INFO [4463]: COREGRADE is starting... -- 19:34:21.557 INFO [4463]: Version from config: 1.0 -- 19:34:21.557 DEBUG [4463]: Connecting to database... -- 19:34:21.557 DEBUG [4463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:34:21.557 SQL [4463]: pgsql_db_connect() -- 19:34:21.561 DEBUG [4463]: Database connection successful -- 19:34:21.561 INFO [4463]: _SERVER found -- 19:34:21.561 INFO [4463]: REMOTE_ADDR = 192.168.1.13 -- 19:34:21.561 INFO [4463]: SERVER_NAME = oameye.works.coregrade.com -- 19:34:21.561 INFO [4463]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1616862544.1580601995; ci_session=c6mo4lm6tee52uuh1s6hadtl4avufnh3 -- 19:34:21.561 INFO [4463]: QUERY_STRING = action=go_logout -- 19:34:21.561 INFO [4463]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:34:21.561 INFO [4463]: SystemStatus()09-09-********~************ -- 19:34:21.561 INFO [4463]: long coregrade_api_main(CVars in, CVars &out) -- 19:34:21.561 INFO [4463]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 19:34:21.561 INFO [4463]: /long coregrade_api_main(CVars in, CVars &out) -- 19:34:21.561 INFO [4463]: RET: status=Unknown action -- 19:34:21.563 INFO [4463]: COREGRADE is stopping... -- 19:34:21.563 DEBUG [4463]: Closing database connection -- 19:34:21.563 SQL [4463]: pgsql_close() -- 18:30:00.453 INFO [32166]: COREGRADE is starting... -- 18:30:00.454 INFO [32166]: Version from config: 1.0 -- 18:30:00.454 DEBUG [32166]: Connecting to database... -- 18:30:00.454 DEBUG [32166]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:30:00.454 SQL [32166]: pgsql_db_connect() -- 18:30:00.458 DEBUG [32166]: Database connection successful -- 18:30:00.458 INFO [32166]: _SERVER found -- 18:30:00.458 INFO [32166]: REMOTE_ADDR = 192.168.1.13 -- 18:30:00.458 INFO [32166]: SERVER_NAME = oameye.works.coregrade.com -- 18:30:00.458 INFO [32166]: HTTP_COOKIE = _ga=GA1.2.1547509397.1579892413; ci_session=nr8d4sm9h8rfaijgib8csvp49bvkdu8t; _gid=GA1.2.1223746328.1580858867 -- 18:30:00.458 INFO [32166]: QUERY_STRING = -- 18:30:00.458 INFO [32166]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:30:00.458 INFO [32166]: SystemStatus()09-09-********~************ -- 18:30:00.458 INFO [32166]: long coregrade_api_main(CVars in, CVars &out) -- 18:30:00.458 INFO [32166]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 18:30:00.459 INFO [32166]: /long coregrade_api_main(CVars in, CVars &out) -- 18:30:00.459 INFO [32166]: RET: status=Unknown action -- 18:30:00.460 INFO [32166]: COREGRADE is stopping... -- 18:30:00.460 DEBUG [32166]: Closing database connection -- 18:30:00.460 SQL [32166]: pgsql_close() -- 18:43:16.963 INFO [16311]: COREGRADE is starting... -- 18:43:16.964 INFO [16311]: Version from config: 1.0 -- 18:43:16.964 DEBUG [16311]: Connecting to database... -- 18:43:16.964 DEBUG [16311]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:43:16.964 SQL [16311]: pgsql_db_connect() -- 18:43:16.968 DEBUG [16311]: Database connection successful -- 18:43:16.968 INFO [16311]: _SERVER found -- 18:43:16.968 INFO [16311]: REMOTE_ADDR = 192.168.1.13 -- 18:43:16.968 INFO [16311]: SERVER_NAME = oameye.works.coregrade.com -- 18:43:16.968 INFO [16311]: HTTP_COOKIE = _ga=GA1.2.1547509397.1579892413; _gid=GA1.2.1223746328.1580858867; ci_session=ec311mta88q7lgboqoq93f9p3nnf697t -- 18:43:16.968 INFO [16311]: QUERY_STRING = -- 18:43:16.968 INFO [16311]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:43:16.968 INFO [16311]: SystemStatus()09-09-********~************ -- 18:43:16.968 INFO [16311]: long coregrade_api_main(CVars in, CVars &out) -- 18:43:16.968 INFO [16311]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 18:43:16.968 INFO [16311]: /long coregrade_api_main(CVars in, CVars &out) -- 18:43:16.968 INFO [16311]: RET: status=Unknown action -- 18:43:16.970 INFO [16311]: COREGRADE is stopping... -- 18:43:16.970 DEBUG [16311]: Closing database connection -- 18:43:16.970 SQL [16311]: pgsql_close() -- 18:51:18.075 INFO [16309]: COREGRADE is starting... -- 18:51:18.075 INFO [16309]: Version from config: 1.0 -- 18:51:18.075 DEBUG [16309]: Connecting to database... -- 18:51:18.075 DEBUG [16309]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:18.075 SQL [16309]: pgsql_db_connect() -- 18:51:18.079 DEBUG [16309]: Database connection successful -- 18:51:18.079 INFO [16309]: _SERVER found -- 18:51:18.079 INFO [16309]: REMOTE_ADDR = 192.168.1.13 -- 18:51:18.079 INFO [16309]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:18.079 INFO [16309]: HTTP_COOKIE = _ga=GA1.2.1547509397.1579892413; _gid=GA1.2.1223746328.1580858867; ci_session=igejra08em875cv7dd4i2tlnfj0gup5k -- 18:51:18.079 INFO [16309]: QUERY_STRING = -- 18:51:18.079 INFO [16309]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:18.079 INFO [16309]: SystemStatus()09-09-********~************ -- 18:51:18.079 INFO [16309]: long coregrade_api_main(CVars in, CVars &out) -- 18:51:18.079 INFO [16309]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 18:51:18.079 INFO [16309]: /long coregrade_api_main(CVars in, CVars &out) -- 18:51:18.079 INFO [16309]: RET: status=Unknown action -- 18:51:18.081 INFO [16309]: COREGRADE is stopping... -- 18:51:18.081 DEBUG [16309]: Closing database connection -- 18:51:18.081 SQL [16309]: pgsql_close() -- 18:59:04.878 INFO [32319]: COREGRADE is starting... -- 18:59:04.878 INFO [32319]: Version from config: 1.0 -- 18:59:04.878 DEBUG [32319]: Connecting to database... -- 18:59:04.878 DEBUG [32319]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:59:04.878 SQL [32319]: pgsql_db_connect() -- 18:59:04.883 DEBUG [32319]: Database connection successful -- 18:59:04.883 INFO [32319]: _SERVER found -- 18:59:04.883 INFO [32319]: REMOTE_ADDR = 192.168.1.13 -- 18:59:04.883 INFO [32319]: SERVER_NAME = oameye.works.coregrade.com -- 18:59:04.883 INFO [32319]: HTTP_COOKIE = _ga=GA1.2.1547509397.1579892413; _gid=GA1.2.1223746328.1580858867; ci_session=6s48c9d13rco10g8l3a72nd935fe2gp4 -- 18:59:04.883 INFO [32319]: QUERY_STRING = -- 18:59:04.883 INFO [32319]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:59:04.883 INFO [32319]: SystemStatus()09-09-********~************ -- 18:59:04.883 INFO [32319]: long coregrade_api_main(CVars in, CVars &out) -- 18:59:04.883 INFO [32319]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 18:59:04.883 INFO [32319]: /long coregrade_api_main(CVars in, CVars &out) -- 18:59:04.883 INFO [32319]: RET: status=Unknown action -- 18:59:04.884 INFO [32319]: COREGRADE is stopping... -- 18:59:04.884 DEBUG [32319]: Closing database connection -- 18:59:04.884 SQL [32319]: pgsql_close() -- 18:59:10.884 INFO [16310]: COREGRADE is starting... -- 18:59:10.884 INFO [16310]: Version from config: 1.0 -- 18:59:10.884 DEBUG [16310]: Connecting to database... -- 18:59:10.884 DEBUG [16310]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:59:10.884 SQL [16310]: pgsql_db_connect() -- 18:59:10.888 DEBUG [16310]: Database connection successful -- 18:59:10.888 INFO [16310]: _SERVER found -- 18:59:10.888 INFO [16310]: REMOTE_ADDR = 192.168.1.13 -- 18:59:10.888 INFO [16310]: SERVER_NAME = oameye.works.coregrade.com -- 18:59:10.888 INFO [16310]: HTTP_COOKIE = _ga=GA1.2.1547509397.1579892413; _gid=GA1.2.1223746328.1580858867; ci_session=6s48c9d13rco10g8l3a72nd935fe2gp4 -- 18:59:10.888 INFO [16310]: QUERY_STRING = -- 18:59:10.888 INFO [16310]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:59:10.888 INFO [16310]: SystemStatus()09-09-********~************ -- 18:59:10.888 INFO [16310]: long coregrade_api_main(CVars in, CVars &out) -- 18:59:10.888 INFO [16310]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 18:59:10.888 INFO [16310]: /long coregrade_api_main(CVars in, CVars &out) -- 18:59:10.888 INFO [16310]: RET: status=Unknown action -- 18:59:10.890 INFO [16310]: COREGRADE is stopping... -- 18:59:10.890 DEBUG [16310]: Closing database connection -- 18:59:10.890 SQL [16310]: pgsql_close() -- 18:59:10.930 INFO [16310]: COREGRADE is starting... -- 18:59:10.930 INFO [16310]: Version from config: 1.0 -- 18:59:10.930 DEBUG [16310]: Connecting to database... -- 18:59:10.930 DEBUG [16310]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:59:10.930 SQL [16310]: pgsql_db_connect() -- 18:59:10.934 DEBUG [16310]: Database connection successful -- 18:59:10.934 INFO [16310]: _SERVER found -- 18:59:10.934 INFO [16310]: REMOTE_ADDR = 192.168.1.13 -- 18:59:10.934 INFO [16310]: SERVER_NAME = oameye.works.coregrade.com -- 18:59:10.934 INFO [16310]: HTTP_COOKIE = _ga=GA1.2.1547509397.1579892413; _gid=GA1.2.1223746328.1580858867; ci_session=6s48c9d13rco10g8l3a72nd935fe2gp4 -- 18:59:10.934 INFO [16310]: QUERY_STRING = -- 18:59:10.934 INFO [16310]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:59:10.934 INFO [16310]: SystemStatus()09-09-********~************ -- 18:59:10.934 INFO [16310]: long coregrade_api_main(CVars in, CVars &out) -- 18:59:10.934 INFO [16310]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 18:59:10.934 INFO [16310]: /long coregrade_api_main(CVars in, CVars &out) -- 18:59:10.934 INFO [16310]: RET: status=Unknown action -- 18:59:10.935 INFO [16310]: COREGRADE is stopping... -- 18:59:10.935 DEBUG [16310]: Closing database connection -- 18:59:10.935 SQL [16310]: pgsql_close() -- 19:02:25.762 INFO [16312]: COREGRADE is starting... -- 19:02:25.763 INFO [16312]: Version from config: 1.0 -- 19:02:25.763 DEBUG [16312]: Connecting to database... -- 19:02:25.763 DEBUG [16312]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:02:25.763 SQL [16312]: pgsql_db_connect() -- 19:02:25.767 DEBUG [16312]: Database connection successful -- 19:02:25.767 INFO [16312]: _SERVER found -- 19:02:25.767 INFO [16312]: REMOTE_ADDR = 192.168.1.13 -- 19:02:25.767 INFO [16312]: SERVER_NAME = oameye.works.coregrade.com -- 19:02:25.767 INFO [16312]: HTTP_COOKIE = _ga=GA1.2.1547509397.1579892413; _gid=GA1.2.1223746328.1580858867; ci_session=6s48c9d13rco10g8l3a72nd935fe2gp4 -- 19:02:25.767 INFO [16312]: QUERY_STRING = -- 19:02:25.767 INFO [16312]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:02:25.767 INFO [16312]: SystemStatus()09-09-********~************ -- 19:02:25.767 INFO [16312]: long coregrade_api_main(CVars in, CVars &out) -- 19:02:25.767 INFO [16312]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 19:02:25.767 INFO [16312]: /long coregrade_api_main(CVars in, CVars &out) -- 19:02:25.767 INFO [16312]: RET: status=Unknown action -- 19:02:25.768 INFO [16312]: COREGRADE is stopping... -- 19:02:25.769 DEBUG [16312]: Closing database connection -- 19:02:25.769 SQL [16312]: pgsql_close() -- 19:09:22.695 INFO [32654]: COREGRADE is starting... -- 19:09:22.696 INFO [32654]: Version from config: 1.0 -- 19:09:22.696 DEBUG [32654]: Connecting to database... -- 19:09:22.696 DEBUG [32654]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:22.696 SQL [32654]: pgsql_db_connect() -- 19:09:22.701 DEBUG [32654]: Database connection successful -- 19:09:22.701 INFO [32654]: _SERVER found -- 19:09:22.701 INFO [32654]: REMOTE_ADDR = 192.168.1.13 -- 19:09:22.701 INFO [32654]: SERVER_NAME = oameye.works.coregrade.com -- 19:09:22.701 INFO [32654]: HTTP_COOKIE = _ga=GA1.2.1547509397.1579892413; _gid=GA1.2.1223746328.1580858867; ci_session=d00p8097d63upvvlfpdt212n8icq9k1c -- 19:09:22.701 INFO [32654]: QUERY_STRING = -- 19:09:22.701 INFO [32654]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:22.701 INFO [32654]: SystemStatus()09-09-********~************ -- 19:09:22.701 INFO [32654]: long coregrade_api_main(CVars in, CVars &out) -- 19:09:22.701 INFO [32654]: long coregrade_api_main(CVars in, CVars &out) action =11020 -- 19:09:22.701 INFO [32654]: account calls -- 19:09:22.701 INFO [32654]: account_calls() -- 19:09:22.701 INFO [32654]: CreateCoreGradeAccount() -- 19:09:22.701 FLOG_MAX [32654]: REQ_STRING(verify_link) -- 19:09:22.701 FLOG_MAX [32654]: Error in parameter 'verify_link', len= 2 <= 1 <= 120 -- 19:09:22.701 FLOG_MAX [32654]: Bad parameter exception: 'verify_link' -- 19:09:22.702 INFO [32654]: RET: action=11020 -- 19:09:22.702 INFO [32654]: RET: email=jubaworker@gmail.com -- 19:09:22.702 INFO [32654]: RET: firstname=Olu -- 19:09:22.702 INFO [32654]: RET: lastname= -- 19:09:22.702 INFO [32654]: RET: password=jglgg;g; -- 19:09:22.702 INFO [32654]: RET: pid=100 -- 19:09:22.702 INFO [32654]: RET: result=YES I GET TO BACK END -- 19:09:22.702 INFO [32654]: RET: status=Incorrect input parameter -- 19:09:22.702 INFO [32654]: RET: username=jubaworker@gmail.com -- 19:09:22.705 INFO [32654]: COREGRADE is stopping... -- 19:09:22.705 DEBUG [32654]: Closing database connection -- 19:09:22.705 SQL [32654]: pgsql_close() -- 19:16:19.206 INFO [32656]: COREGRADE is starting... -- 19:16:19.206 INFO [32656]: Version from config: 1.0 -- 19:16:19.206 DEBUG [32656]: Connecting to database... -- 19:16:19.206 DEBUG [32656]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:16:19.206 SQL [32656]: pgsql_db_connect() -- 19:16:19.211 DEBUG [32656]: Database connection successful -- 19:16:19.211 INFO [32656]: _SERVER found -- 19:16:19.211 INFO [32656]: REMOTE_ADDR = 192.168.1.13 -- 19:16:19.211 INFO [32656]: SERVER_NAME = oameye.works.coregrade.com -- 19:16:19.211 INFO [32656]: HTTP_COOKIE = _ga=GA1.2.1547509397.1579892413; _gid=GA1.2.1223746328.1580858867; ci_session=pgehanr3ekfeeuo7jgatedep87bn4eia -- 19:16:19.211 INFO [32656]: QUERY_STRING = -- 19:16:19.211 INFO [32656]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:16:19.211 INFO [32656]: SystemStatus()09-09-********~************ -- 19:16:19.211 INFO [32656]: long coregrade_api_main(CVars in, CVars &out) -- 19:16:19.211 INFO [32656]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 19:16:19.211 INFO [32656]: account calls -- 19:16:19.211 INFO [32656]: account_calls() -- 19:16:19.211 FLOG_MAX [32656]: REQ_STRING(username) -- 19:16:19.211 FLOG_MAX [32656]: REQ_STRING(firstname) -- 19:16:19.211 FLOG_MAX [32656]: REQ_STRING(lastname) -- 19:16:19.211 FLOG_MAX [32656]: Error in parameter 'lastname', len= 2 <= 1 <= 49 -- 19:16:19.211 FLOG_MAX [32656]: Bad parameter exception: 'lastname' -- 19:16:19.212 INFO [32656]: RET: action=11010 -- 19:16:19.212 INFO [32656]: RET: email=jubaworker@gmail.com -- 19:16:19.212 INFO [32656]: RET: firstname=Olu -- 19:16:19.212 INFO [32656]: RET: lastname= -- 19:16:19.212 INFO [32656]: RET: password=cnmcmcc,cccc. -- 19:16:19.212 INFO [32656]: RET: pid=100 -- 19:16:19.212 INFO [32656]: RET: status=Incorrect input parameter -- 19:16:19.212 INFO [32656]: RET: username=jubaworker@gmail.com -- 19:16:19.215 INFO [32656]: COREGRADE is stopping... -- 19:16:19.216 DEBUG [32656]: Closing database connection -- 19:16:19.216 SQL [32656]: pgsql_close() -- 19:20:46.359 INFO [32655]: COREGRADE is starting... -- 19:20:46.360 INFO [32655]: Version from config: 1.0 -- 19:20:46.360 DEBUG [32655]: Connecting to database... -- 19:20:46.360 DEBUG [32655]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:46.360 SQL [32655]: pgsql_db_connect() -- 19:20:46.364 DEBUG [32655]: Database connection successful -- 19:20:46.364 INFO [32655]: _SERVER found -- 19:20:46.364 INFO [32655]: REMOTE_ADDR = 192.168.1.13 -- 19:20:46.364 INFO [32655]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:46.364 INFO [32655]: HTTP_COOKIE = _ga=GA1.2.1547509397.1579892413; _gid=GA1.2.1223746328.1580858867; ci_session=pgehanr3ekfeeuo7jgatedep87bn4eia -- 19:20:46.364 INFO [32655]: QUERY_STRING = -- 19:20:46.364 INFO [32655]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:46.364 INFO [32655]: SystemStatus()09-09-********~************ -- 19:20:46.364 INFO [32655]: long coregrade_api_main(CVars in, CVars &out) -- 19:20:46.364 INFO [32655]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 19:20:46.364 INFO [32655]: account calls -- 19:20:46.364 INFO [32655]: account_calls() -- 19:20:46.364 FLOG_MAX [32655]: REQ_STRING(username) -- 19:20:46.364 FLOG_MAX [32655]: REQ_STRING(firstname) -- 19:20:46.364 FLOG_MAX [32655]: REQ_STRING(lastname) -- 19:20:46.364 FLOG_MAX [32655]: REQ_STRING(email) -- 19:20:46.364 FLOG_MAX [32655]: insert_db_record() -- 19:20:46.364 SQL [32655]: pgsql_exec() -- 19:20:46.364 SQL [32655]: About to run query: -- 19:20:46.364 SQL [32655]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('jubaworker@gmail.com','Olu','Amey','','','jubaworker@gmail.com','RS-1160373248-940904448-1407565824') -- 19:20:46.365 SQL [32655]: Affected rows: ERROR -- 19:20:46.365 FLOG_MAX [32655]: SELECT currval('members_pending_id_seq') -- 19:20:46.365 SQL [32655]: pgsql_query() -- 19:20:46.366 SQL [32655]: About to run query: -- 19:20:46.366 SQL [32655]: SELECT currval('members_pending_id_seq') -- 19:20:46.366 SQL [32655]: Found rows: ERROR -- 19:20:46.366 FLOG_MAX [32655]: SQL error -- 19:20:46.366 INFO [32655]: RET: action=11010 -- 19:20:46.366 INFO [32655]: RET: email=jubaworker@gmail.com -- 19:20:46.366 INFO [32655]: RET: firstname=Olu -- 19:20:46.366 INFO [32655]: RET: lastname=Amey -- 19:20:46.366 INFO [32655]: RET: password=fjkfflflf -- 19:20:46.366 INFO [32655]: RET: pid=100 -- 19:20:46.366 INFO [32655]: RET: username=jubaworker@gmail.com -- 19:20:46.369 INFO [32655]: COREGRADE is stopping... -- 19:20:46.369 DEBUG [32655]: Closing database connection -- 19:20:46.369 SQL [32655]: pgsql_close() -- 19:24:56.109 INFO [32653]: COREGRADE is starting... -- 19:24:56.109 INFO [32653]: Version from config: 1.0 -- 19:24:56.110 DEBUG [32653]: Connecting to database... -- 19:24:56.110 DEBUG [32653]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:24:56.110 SQL [32653]: pgsql_db_connect() -- 19:24:56.114 DEBUG [32653]: Database connection successful -- 19:24:56.114 INFO [32653]: _SERVER found -- 19:24:56.114 INFO [32653]: REMOTE_ADDR = 192.168.1.13 -- 19:24:56.114 INFO [32653]: SERVER_NAME = oameye.works.coregrade.com -- 19:24:56.114 INFO [32653]: HTTP_COOKIE = _ga=GA1.2.1547509397.1579892413; _gid=GA1.2.1223746328.1580858867; ci_session=8opdif6j3tb4tskpcof4mdi19argfdbd -- 19:24:56.114 INFO [32653]: QUERY_STRING = -- 19:24:56.114 INFO [32653]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:24:56.114 INFO [32653]: SystemStatus()09-09-********~************ -- 19:24:56.114 INFO [32653]: long coregrade_api_main(CVars in, CVars &out) -- 19:24:56.114 INFO [32653]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 19:24:56.114 INFO [32653]: account calls -- 19:24:56.114 INFO [32653]: account_calls() -- 19:24:56.114 FLOG_MAX [32653]: REQ_STRING(username) -- 19:24:56.114 FLOG_MAX [32653]: REQ_STRING(firstname) -- 19:24:56.114 FLOG_MAX [32653]: REQ_STRING(lastname) -- 19:24:56.114 FLOG_MAX [32653]: REQ_STRING(email) -- 19:24:56.114 FLOG_MAX [32653]: insert_db_record() -- 19:24:56.114 SQL [32653]: pgsql_exec() -- 19:24:56.114 SQL [32653]: About to run query: -- 19:24:56.114 SQL [32653]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('jubaworker@gmail.com','Olu','Amey','','','jubaworker@gmail.com','RS-2065810688-1510819584-1826815232') -- 19:24:56.115 SQL [32653]: Affected rows: ERROR -- 19:24:56.115 FLOG_MAX [32653]: SELECT currval('members_pending_id_seq') -- 19:24:56.115 SQL [32653]: pgsql_query() -- 19:24:56.115 SQL [32653]: About to run query: -- 19:24:56.115 SQL [32653]: SELECT currval('members_pending_id_seq') -- 19:24:56.116 SQL [32653]: Found rows: ERROR -- 19:24:56.116 FLOG_MAX [32653]: SQL error -- 19:24:56.116 INFO [32653]: RET: action=11010 -- 19:24:56.116 INFO [32653]: RET: email=jubaworker@gmail.com -- 19:24:56.116 INFO [32653]: RET: firstname=Olu -- 19:24:56.116 INFO [32653]: RET: lastname=Amey -- 19:24:56.116 INFO [32653]: RET: password=hdjdjjdddkdkdk -- 19:24:56.116 INFO [32653]: RET: pid=100 -- 19:24:56.116 INFO [32653]: RET: username=jubaworker@gmail.com -- 19:24:56.120 INFO [32653]: COREGRADE is stopping... -- 19:24:56.120 DEBUG [32653]: Closing database connection -- 19:24:56.120 SQL [32653]: pgsql_close() -- 19:28:50.177 INFO [409]: COREGRADE is starting... -- 19:28:50.177 INFO [409]: Version from config: 1.0 -- 19:28:50.177 DEBUG [409]: Connecting to database... -- 19:28:50.177 DEBUG [409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:28:50.177 SQL [409]: pgsql_db_connect() -- 19:28:50.183 DEBUG [409]: Database connection successful -- 19:28:50.183 INFO [409]: _SERVER found -- 19:28:50.183 INFO [409]: REMOTE_ADDR = 192.168.1.13 -- 19:28:50.183 INFO [409]: SERVER_NAME = oameye.works.coregrade.com -- 19:28:50.183 INFO [409]: HTTP_COOKIE = _ga=GA1.2.1547509397.1579892413; _gid=GA1.2.1223746328.1580858867; ci_session=8opdif6j3tb4tskpcof4mdi19argfdbd -- 19:28:50.183 INFO [409]: QUERY_STRING = -- 19:28:50.183 INFO [409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:28:50.183 INFO [409]: SystemStatus()09-09-********~************ -- 19:28:50.183 INFO [409]: long coregrade_api_main(CVars in, CVars &out) -- 19:28:50.183 INFO [409]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 19:28:50.183 INFO [409]: account calls -- 19:28:50.183 INFO [409]: account_calls() -- 19:28:50.183 FLOG_MAX [409]: REQ_STRING(username) -- 19:28:50.183 FLOG_MAX [409]: REQ_STRING(firstname) -- 19:28:50.183 FLOG_MAX [409]: REQ_STRING(lastname) -- 19:28:50.183 FLOG_MAX [409]: REQ_STRING(email) -- 19:28:50.183 FLOG_MAX [409]: insert_db_record() -- 19:28:50.183 SQL [409]: pgsql_exec() -- 19:28:50.183 SQL [409]: About to run query: -- 19:28:50.183 SQL [409]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('jubaworker@gmail.com','Olu','Amey','192.168.1.13','','jubaworker@gmail.com','RS-1234791424-1328050176-1251524608') -- 19:28:50.186 SQL [409]: PQcmdTuples: 1 -- 19:28:50.186 SQL [409]: Affected rows: 1 -- 19:28:50.186 FLOG_MAX [409]: SELECT currval('members_pending_id_seq') -- 19:28:50.186 SQL [409]: pgsql_query() -- 19:28:50.186 SQL [409]: About to run query: -- 19:28:50.186 SQL [409]: SELECT currval('members_pending_id_seq') -- 19:28:50.187 SQL [409]: Found rows: 1 -- 19:28:50.187 FLOG_MAX [409]: long load_db_record( CVars &rec, const char * query, ... ) -- 19:28:50.187 SQL [409]: pgsql_query() -- 19:28:50.187 SQL [409]: About to run query: -- 19:28:50.187 SQL [409]: SELECT * FROM members_pending WHERE id = 1 -- 19:28:50.188 SQL [409]: Found rows: 1 -- 19:28:50.188 FLOG_MAX [409]: load_db_record(SELECT * FROM members_pending WHERE id = 1 ) num_cols=13 -- 19:28:50.188 FLOG_MAX [409]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 19:28:50.188 FLOG_MAX [409]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1701 bytes -- 19:28:50.188 FLOG_MAX [409]: Returning from FormFile() -- 19:28:50.188 FLOG_MAX [409]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 19:28:50.188 FLOG_MAX [409]: ESMTP( virtualmail.chiefsoft.com, demo@coregrade.com, jubaworker@gmail.com ) -- 19:28:50.188 FLOG_MAX [409]: Prepare body -- 19:28:50.188 FLOG_MAX [409]: Locate & extract subject -- 19:28:50.188 FLOG_MAX [409]: Found subject: CoreGrade - Pending Signup - Verify jubaworker@gmail.com -- 19:28:50.188 FLOG_MAX [409]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp virtualmail.chiefsoft.com -f demo@coregrade.com -t jubaworker@gmail.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user demo@coregrade.com -pass demo001 -sub 'CoreGrade - Pending Signup - Verify jubaworker@gmail.com' -M ' - - - -
-
- - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail.html?vlnk=RS-1234791424-1328050176-1251524608 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at http://oameye.works.coregrade.com/contact.html?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - -' -- 19:30:57.456 FLOG_MAX [409]: - -END OF PIPE OUTPUT - - -- 19:30:57.456 FLOG_MAX [409]: /ESMTP() -- 19:30:57.456 INFO [409]: RET: action=11010 -- 19:30:57.456 INFO [409]: RET: email=jubaworker@gmail.com -- 19:30:57.456 INFO [409]: RET: firstname=Olu -- 19:30:57.456 INFO [409]: RET: lastname=Amey -- 19:30:57.456 INFO [409]: RET: password=fjffflflflf -- 19:30:57.456 INFO [409]: RET: pending_id=1 -- 19:30:57.456 INFO [409]: RET: pid=100 -- 19:30:57.456 INFO [409]: RET: username=jubaworker@gmail.com -- 19:30:57.460 INFO [409]: COREGRADE is stopping... -- 19:30:57.460 DEBUG [409]: Closing database connection -- 19:30:57.460 SQL [409]: pgsql_close() -- 19:30:57.468 INFO [413]: COREGRADE is starting... -- 19:30:57.468 INFO [413]: Version from config: 1.0 -- 19:30:57.468 DEBUG [413]: Connecting to database... -- 19:30:57.468 DEBUG [413]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:30:57.468 SQL [413]: pgsql_db_connect() -- 19:30:57.473 DEBUG [413]: Database connection successful -- 19:30:57.473 INFO [413]: _SERVER found -- 19:30:57.473 INFO [413]: REMOTE_ADDR = 192.168.1.13 -- 19:30:57.473 INFO [413]: SERVER_NAME = oameye.works.coregrade.com -- 19:30:57.473 INFO [413]: HTTP_COOKIE = _ga=GA1.2.1547509397.1579892413; _gid=GA1.2.1223746328.1580858867; ci_session=8opdif6j3tb4tskpcof4mdi19argfdbd -- 19:30:57.473 INFO [413]: QUERY_STRING = -- 19:30:57.473 INFO [413]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:30:57.473 INFO [413]: SystemStatus()09-09-********~************ -- 19:30:57.473 INFO [413]: long coregrade_api_main(CVars in, CVars &out) -- 19:30:57.473 INFO [413]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 19:30:57.473 INFO [413]: /long coregrade_api_main(CVars in, CVars &out) -- 19:30:57.473 INFO [413]: RET: status=Unknown action -- 19:30:57.474 INFO [413]: COREGRADE is stopping... -- 19:30:57.474 DEBUG [413]: Closing database connection -- 19:30:57.474 SQL [413]: pgsql_close() -- 19:31:48.231 INFO [2987]: COREGRADE is starting... -- 19:31:48.232 INFO [2987]: Version from config: 1.0 -- 19:31:48.232 DEBUG [2987]: Connecting to database... -- 19:31:48.232 DEBUG [2987]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:31:48.232 SQL [2987]: pgsql_db_connect() -- 19:31:48.236 DEBUG [2987]: Database connection successful -- 19:31:48.236 INFO [2987]: _SERVER found -- 19:31:48.236 INFO [2987]: REMOTE_ADDR = 192.168.1.13 -- 19:31:48.236 INFO [2987]: SERVER_NAME = oameye.works.coregrade.com -- 19:31:48.236 INFO [2987]: HTTP_COOKIE = _ga=GA1.2.1547509397.1579892413; _gid=GA1.2.1223746328.1580858867; ci_session=gb629d7mvcvbf1f2e39n9psv6rmi245h -- 19:31:48.237 INFO [2987]: QUERY_STRING = -- 19:31:48.237 INFO [2987]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:31:48.237 INFO [2987]: SystemStatus()09-09-********~************ -- 19:31:48.237 INFO [2987]: long coregrade_api_main(CVars in, CVars &out) -- 19:31:48.237 INFO [2987]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 19:31:48.237 INFO [2987]: account calls -- 19:31:48.237 INFO [2987]: account_calls() -- 19:31:48.237 FLOG_MAX [2987]: REQ_STRING(username) -- 19:31:48.237 FLOG_MAX [2987]: REQ_STRING(firstname) -- 19:31:48.237 FLOG_MAX [2987]: REQ_STRING(lastname) -- 19:31:48.237 FLOG_MAX [2987]: REQ_STRING(email) -- 19:31:48.237 FLOG_MAX [2987]: insert_db_record() -- 19:31:48.237 SQL [2987]: pgsql_exec() -- 19:31:48.237 SQL [2987]: About to run query: -- 19:31:48.237 SQL [2987]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('jubaworker+1@gmail.com','Olu','Amey','192.168.1.13','','jubaworker+1@gmail.com','RS-591939840-2144538368-1372444928') -- 19:31:48.239 SQL [2987]: PQcmdTuples: 1 -- 19:31:48.239 SQL [2987]: Affected rows: 1 -- 19:31:48.239 FLOG_MAX [2987]: SELECT currval('members_pending_id_seq') -- 19:31:48.239 SQL [2987]: pgsql_query() -- 19:31:48.239 SQL [2987]: About to run query: -- 19:31:48.239 SQL [2987]: SELECT currval('members_pending_id_seq') -- 19:31:48.240 SQL [2987]: Found rows: 1 -- 19:31:48.240 FLOG_MAX [2987]: long load_db_record( CVars &rec, const char * query, ... ) -- 19:31:48.240 SQL [2987]: pgsql_query() -- 19:31:48.240 SQL [2987]: About to run query: -- 19:31:48.240 SQL [2987]: SELECT * FROM members_pending WHERE id = 2 -- 19:31:48.241 SQL [2987]: Found rows: 1 -- 19:31:48.241 FLOG_MAX [2987]: load_db_record(SELECT * FROM members_pending WHERE id = 2 ) num_cols=13 -- 19:31:48.241 FLOG_MAX [2987]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 19:31:48.241 FLOG_MAX [2987]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1701 bytes -- 19:31:48.241 FLOG_MAX [2987]: Returning from FormFile() -- 19:31:48.241 FLOG_MAX [2987]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 19:31:48.241 FLOG_MAX [2987]: ESMTP( virtualmail.chiefsoft.com, demo@coregrade.com, jubaworker+1@gmail.com ) -- 19:31:48.241 FLOG_MAX [2987]: Prepare body -- 19:31:48.241 FLOG_MAX [2987]: Locate & extract subject -- 19:31:48.241 FLOG_MAX [2987]: Found subject: CoreGrade - Pending Signup - Verify jubaworker+1@gmail.com -- 19:31:48.241 FLOG_MAX [2987]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp virtualmail.chiefsoft.com -f demo@coregrade.com -t jubaworker+1@gmail.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user demo@coregrade.com -pass demo001 -sub 'CoreGrade - Pending Signup - Verify jubaworker+1@gmail.com' -M ' - - - -
-
- - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail.html?vlnk=RS-591939840-2144538368-1372444928 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at http://oameye.works.coregrade.com/contact.html?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - -' -- 19:33:55.504 FLOG_MAX [2987]: - -END OF PIPE OUTPUT - - -- 19:33:55.504 FLOG_MAX [2987]: /ESMTP() -- 19:33:55.504 INFO [2987]: RET: action=11010 -- 19:33:55.504 INFO [2987]: RET: email=jubaworker+1@gmail.com -- 19:33:55.504 INFO [2987]: RET: firstname=Olu -- 19:33:55.504 INFO [2987]: RET: lastname=Amey -- 19:33:55.504 INFO [2987]: RET: password=bhshshsjjsssks -- 19:33:55.504 INFO [2987]: RET: pending_id=2 -- 19:33:55.504 INFO [2987]: RET: pid=100 -- 19:33:55.504 INFO [2987]: RET: username=jubaworker+1@gmail.com -- 19:33:55.508 INFO [2987]: COREGRADE is stopping... -- 19:33:55.508 DEBUG [2987]: Closing database connection -- 19:33:55.508 SQL [2987]: pgsql_close() -- 19:33:55.511 INFO [2989]: COREGRADE is starting... -- 19:33:55.512 INFO [2989]: Version from config: 1.0 -- 19:33:55.512 DEBUG [2989]: Connecting to database... -- 19:33:55.512 DEBUG [2989]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:33:55.512 SQL [2989]: pgsql_db_connect() -- 19:33:55.516 DEBUG [2989]: Database connection successful -- 19:33:55.516 INFO [2989]: _SERVER found -- 19:33:55.516 INFO [2989]: REMOTE_ADDR = 192.168.1.13 -- 19:33:55.516 INFO [2989]: SERVER_NAME = oameye.works.coregrade.com -- 19:33:55.516 INFO [2989]: HTTP_COOKIE = _ga=GA1.2.1547509397.1579892413; _gid=GA1.2.1223746328.1580858867; ci_session=gb629d7mvcvbf1f2e39n9psv6rmi245h -- 19:33:55.516 INFO [2989]: QUERY_STRING = -- 19:33:55.516 INFO [2989]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:33:55.516 INFO [2989]: SystemStatus()09-09-********~************ -- 19:33:55.516 INFO [2989]: long coregrade_api_main(CVars in, CVars &out) -- 19:33:55.516 INFO [2989]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 19:33:55.516 INFO [2989]: account calls -- 19:33:55.516 INFO [2989]: account_calls() -- 19:33:55.516 FLOG_MAX [2989]: REQ_STRING(username) -- 19:33:55.516 FLOG_MAX [2989]: REQ_STRING(firstname) -- 19:33:55.516 FLOG_MAX [2989]: REQ_STRING(lastname) -- 19:33:55.516 FLOG_MAX [2989]: REQ_STRING(email) -- 19:33:55.516 FLOG_MAX [2989]: insert_db_record() -- 19:33:55.516 SQL [2989]: pgsql_exec() -- 19:33:55.516 SQL [2989]: About to run query: -- 19:33:55.516 SQL [2989]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('jubaworker+2@gmail.com','Olu','Amey','192.168.1.13','','jubaworker+2@gmail.com','RS-382148352-1971052800-1430331136') -- 19:33:55.518 SQL [2989]: PQcmdTuples: 1 -- 19:33:55.518 SQL [2989]: Affected rows: 1 -- 19:33:55.518 FLOG_MAX [2989]: SELECT currval('members_pending_id_seq') -- 19:33:55.518 SQL [2989]: pgsql_query() -- 19:33:55.518 SQL [2989]: About to run query: -- 19:33:55.519 SQL [2989]: SELECT currval('members_pending_id_seq') -- 19:33:55.519 SQL [2989]: Found rows: 1 -- 19:33:55.519 FLOG_MAX [2989]: long load_db_record( CVars &rec, const char * query, ... ) -- 19:33:55.519 SQL [2989]: pgsql_query() -- 19:33:55.519 SQL [2989]: About to run query: -- 19:33:55.519 SQL [2989]: SELECT * FROM members_pending WHERE id = 3 -- 19:33:55.520 SQL [2989]: Found rows: 1 -- 19:33:55.520 FLOG_MAX [2989]: load_db_record(SELECT * FROM members_pending WHERE id = 3 ) num_cols=13 -- 19:33:55.520 FLOG_MAX [2989]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 19:33:55.520 FLOG_MAX [2989]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1701 bytes -- 19:33:55.520 FLOG_MAX [2989]: Returning from FormFile() -- 19:33:55.520 FLOG_MAX [2989]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 19:33:55.520 FLOG_MAX [2989]: ESMTP( virtualmail.chiefsoft.com, demo@coregrade.com, jubaworker+2@gmail.com ) -- 19:33:55.520 FLOG_MAX [2989]: Prepare body -- 19:33:55.520 FLOG_MAX [2989]: Locate & extract subject -- 19:33:55.520 FLOG_MAX [2989]: Found subject: CoreGrade - Pending Signup - Verify jubaworker+2@gmail.com -- 19:33:55.520 FLOG_MAX [2989]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp virtualmail.chiefsoft.com -f demo@coregrade.com -t jubaworker+2@gmail.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user demo@coregrade.com -pass demo001 -sub 'CoreGrade - Pending Signup - Verify jubaworker+2@gmail.com' -M ' - - - -
-
- - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail.html?vlnk=RS-382148352-1971052800-1430331136 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at http://oameye.works.coregrade.com/contact.html?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - -' -- 19:36:02.864 FLOG_MAX [2989]: - -END OF PIPE OUTPUT - - -- 19:36:02.864 FLOG_MAX [2989]: /ESMTP() -- 19:36:02.864 INFO [2989]: RET: action=11010 -- 19:36:02.864 INFO [2989]: RET: email=jubaworker+2@gmail.com -- 19:36:02.864 INFO [2989]: RET: firstname=Olu -- 19:36:02.864 INFO [2989]: RET: lastname=Amey -- 19:36:02.864 INFO [2989]: RET: password=bhshshsjjsssks -- 19:36:02.864 INFO [2989]: RET: pending_id=3 -- 19:36:02.864 INFO [2989]: RET: pid=100 -- 19:36:02.864 INFO [2989]: RET: username=jubaworker+2@gmail.com -- 19:36:02.868 INFO [2989]: COREGRADE is stopping... -- 19:36:02.868 DEBUG [2989]: Closing database connection -- 19:36:02.868 SQL [2989]: pgsql_close() -- 19:37:06.634 INFO [2990]: COREGRADE is starting... -- 19:37:06.635 INFO [2990]: Version from config: 1.0 -- 19:37:06.635 DEBUG [2990]: Connecting to database... -- 19:37:06.635 DEBUG [2990]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:37:06.635 SQL [2990]: pgsql_db_connect() -- 19:37:06.640 DEBUG [2990]: Database connection successful -- 19:37:06.640 INFO [2990]: _SERVER found -- 19:37:06.640 INFO [2990]: REMOTE_ADDR = 192.168.1.13 -- 19:37:06.640 INFO [2990]: SERVER_NAME = oameye.works.coregrade.com -- 19:37:06.640 INFO [2990]: HTTP_COOKIE = _ga=GA1.2.1547509397.1579892413; _gid=GA1.2.1223746328.1580858867; ci_session=262spahmcbh69a26cicqk2bae21hv33v -- 19:37:06.640 INFO [2990]: QUERY_STRING = -- 19:37:06.640 INFO [2990]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:37:06.640 INFO [2990]: SystemStatus()09-09-********~************ -- 19:37:06.640 INFO [2990]: long coregrade_api_main(CVars in, CVars &out) -- 19:37:06.640 INFO [2990]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 19:37:06.640 INFO [2990]: account calls -- 19:37:06.640 INFO [2990]: account_calls() -- 19:37:06.640 FLOG_MAX [2990]: REQ_STRING(username) -- 19:37:06.640 FLOG_MAX [2990]: REQ_STRING(firstname) -- 19:37:06.640 FLOG_MAX [2990]: REQ_STRING(lastname) -- 19:37:06.640 FLOG_MAX [2990]: REQ_STRING(email) -- 19:37:06.640 FLOG_MAX [2990]: insert_db_record() -- 19:37:06.640 SQL [2990]: pgsql_exec() -- 19:37:06.640 SQL [2990]: About to run query: -- 19:37:06.640 SQL [2990]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('jubaworker+3@gmail.com','Olu','Amey','192.168.1.13','','jubaworker+3@gmail.com','RS-1573760512-199048192-1850488832') -- 19:37:06.642 SQL [2990]: PQcmdTuples: 1 -- 19:37:06.642 SQL [2990]: Affected rows: 1 -- 19:37:06.642 FLOG_MAX [2990]: SELECT currval('members_pending_id_seq') -- 19:37:06.642 SQL [2990]: pgsql_query() -- 19:37:06.642 SQL [2990]: About to run query: -- 19:37:06.642 SQL [2990]: SELECT currval('members_pending_id_seq') -- 19:37:06.643 SQL [2990]: Found rows: 1 -- 19:37:06.643 FLOG_MAX [2990]: long load_db_record( CVars &rec, const char * query, ... ) -- 19:37:06.643 SQL [2990]: pgsql_query() -- 19:37:06.643 SQL [2990]: About to run query: -- 19:37:06.643 SQL [2990]: SELECT * FROM members_pending WHERE id = 4 -- 19:37:06.644 SQL [2990]: Found rows: 1 -- 19:37:06.644 FLOG_MAX [2990]: load_db_record(SELECT * FROM members_pending WHERE id = 4 ) num_cols=13 -- 19:37:06.644 FLOG_MAX [2990]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 19:37:06.644 FLOG_MAX [2990]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1701 bytes -- 19:37:06.644 FLOG_MAX [2990]: Returning from FormFile() -- 19:37:06.644 FLOG_MAX [2990]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 19:37:06.644 FLOG_MAX [2990]: ESMTP( virtualmail.chiefsoft.com, demo@coregrade.com, jubaworker+3@gmail.com ) -- 19:37:06.644 FLOG_MAX [2990]: Prepare body -- 19:37:06.644 FLOG_MAX [2990]: Locate & extract subject -- 19:37:06.644 FLOG_MAX [2990]: Found subject: CoreGrade - Pending Signup - Verify jubaworker+3@gmail.com -- 19:37:06.644 FLOG_MAX [2990]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp virtualmail.chiefsoft.com -f demo@coregrade.com -t jubaworker+3@gmail.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002!x -sub 'CoreGrade - Pending Signup - Verify jubaworker+3@gmail.com' -M ' - - - -
-
- - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail.html?vlnk=RS-1573760512-199048192-1850488832 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at http://oameye.works.coregrade.com/contact.html?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - -' -- 19:39:13.840 FLOG_MAX [2990]: - -END OF PIPE OUTPUT - - -- 19:39:13.840 FLOG_MAX [2990]: /ESMTP() -- 19:39:13.840 INFO [2990]: RET: action=11010 -- 19:39:13.840 INFO [2990]: RET: email=jubaworker+3@gmail.com -- 19:39:13.840 INFO [2990]: RET: firstname=Olu -- 19:39:13.840 INFO [2990]: RET: lastname=Amey -- 19:39:13.840 INFO [2990]: RET: password=dgdhdjddkddkdkd -- 19:39:13.840 INFO [2990]: RET: pending_id=4 -- 19:39:13.840 INFO [2990]: RET: pid=100 -- 19:39:13.840 INFO [2990]: RET: username=jubaworker+3@gmail.com -- 19:39:13.844 INFO [2990]: COREGRADE is stopping... -- 19:39:13.845 DEBUG [2990]: Closing database connection -- 19:39:13.845 SQL [2990]: pgsql_close() -- 20:05:50.716 INFO [3048]: COREGRADE is starting... -- 20:05:50.717 INFO [3048]: Version from config: 1.0 -- 20:05:50.717 DEBUG [3048]: Connecting to database... -- 20:05:50.717 DEBUG [3048]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:05:50.717 SQL [3048]: pgsql_db_connect() -- 20:05:50.722 DEBUG [3048]: Database connection successful -- 20:05:50.722 INFO [3048]: _SERVER found -- 20:05:50.722 INFO [3048]: REMOTE_ADDR = 192.168.1.13 -- 20:05:50.722 INFO [3048]: SERVER_NAME = oameye.works.coregrade.com -- 20:05:50.722 INFO [3048]: HTTP_COOKIE = _ga=GA1.2.1547509397.1579892413; _gid=GA1.2.1223746328.1580858867; ci_session=kien0ssobeepvkl3vu7fonmt1vg573f0 -- 20:05:50.722 INFO [3048]: QUERY_STRING = -- 20:05:50.722 INFO [3048]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:05:50.722 INFO [3048]: SystemStatus()09-09-********~************ -- 20:05:50.722 INFO [3048]: long coregrade_api_main(CVars in, CVars &out) -- 20:05:50.722 INFO [3048]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 20:05:50.722 INFO [3048]: account calls -- 20:05:50.722 INFO [3048]: account_calls() -- 20:05:50.722 FLOG_MAX [3048]: REQ_STRING(username) -- 20:05:50.722 FLOG_MAX [3048]: REQ_STRING(firstname) -- 20:05:50.722 FLOG_MAX [3048]: REQ_STRING(lastname) -- 20:05:50.722 FLOG_MAX [3048]: REQ_STRING(email) -- 20:05:50.722 FLOG_MAX [3048]: insert_db_record() -- 20:05:50.722 SQL [3048]: pgsql_exec() -- 20:05:50.722 SQL [3048]: About to run query: -- 20:05:50.722 SQL [3048]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('jubaworker+5@gmail.com','Olu','Amey','192.168.1.13','','jubaworker+5@gmail.com','RS-1018093568-708575232-1283457024') -- 20:05:50.725 SQL [3048]: PQcmdTuples: 1 -- 20:05:50.725 SQL [3048]: Affected rows: 1 -- 20:05:50.725 FLOG_MAX [3048]: SELECT currval('members_pending_id_seq') -- 20:05:50.725 SQL [3048]: pgsql_query() -- 20:05:50.725 SQL [3048]: About to run query: -- 20:05:50.725 SQL [3048]: SELECT currval('members_pending_id_seq') -- 20:05:50.726 SQL [3048]: Found rows: 1 -- 20:05:50.726 FLOG_MAX [3048]: long load_db_record( CVars &rec, const char * query, ... ) -- 20:05:50.726 SQL [3048]: pgsql_query() -- 20:05:50.726 SQL [3048]: About to run query: -- 20:05:50.726 SQL [3048]: SELECT * FROM members_pending WHERE id = 5 -- 20:05:50.727 SQL [3048]: Found rows: 1 -- 20:05:50.727 FLOG_MAX [3048]: load_db_record(SELECT * FROM members_pending WHERE id = 5 ) num_cols=13 -- 20:05:50.727 FLOG_MAX [3048]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 20:05:50.727 FLOG_MAX [3048]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1692 bytes -- 20:05:50.727 FLOG_MAX [3048]: Returning from FormFile() -- 20:05:50.727 FLOG_MAX [3048]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 20:05:50.727 FLOG_MAX [3048]: ESMTP( smtp.google.com, savvy@chiefsoft.com, jubaworker+5@gmail.com ) -- 20:05:50.727 FLOG_MAX [3048]: Prepare body -- 20:05:50.727 FLOG_MAX [3048]: Locate & extract subject -- 20:05:50.727 FLOG_MAX [3048]: Found subject: CoreGrade - Pending Signup - Verify jubaworker+5@gmail.com -- 20:05:50.727 FLOG_MAX [3048]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp smtp.google.com -f savvy@chiefsoft.com -t jubaworker+5@gmail.com -d chiefsoft.com -name 'JubaBox Beta' +cc +bcc -v -port 25 -auth-plain -user savvy@chiefsoft.com -pass may12002! -sub 'CoreGrade - Pending Signup - Verify jubaworker+5@gmail.com' -M ' - - - -
-
- - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-1018093568-708575232-1283457024 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - -' -- 20:05:50.806 FLOG_MAX [3048]: - -END OF PIPE OUTPUT - - -- 20:05:50.806 FLOG_MAX [3048]: /ESMTP() -- 20:05:50.806 INFO [3048]: RET: action=11010 -- 20:05:50.806 INFO [3048]: RET: email=jubaworker+5@gmail.com -- 20:05:50.806 INFO [3048]: RET: firstname=Olu -- 20:05:50.806 INFO [3048]: RET: lastname=Amey -- 20:05:50.806 INFO [3048]: RET: password=gjfkfkfkfkfkf -- 20:05:50.806 INFO [3048]: RET: pending_id=5 -- 20:05:50.806 INFO [3048]: RET: pid=100 -- 20:05:50.806 INFO [3048]: RET: username=jubaworker+5@gmail.com -- 20:05:50.811 INFO [3048]: COREGRADE is stopping... -- 20:05:50.811 DEBUG [3048]: Closing database connection -- 20:05:50.811 SQL [3048]: pgsql_close() -- 20:16:58.063 INFO [3048]: COREGRADE is starting... -- 20:16:58.063 INFO [3048]: Version from config: 1.0 -- 20:16:58.063 DEBUG [3048]: Connecting to database... -- 20:16:58.063 DEBUG [3048]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:16:58.063 SQL [3048]: pgsql_db_connect() -- 20:16:58.068 DEBUG [3048]: Database connection successful -- 20:16:58.068 INFO [3048]: _SERVER found -- 20:16:58.068 INFO [3048]: REMOTE_ADDR = 192.168.1.13 -- 20:16:58.068 INFO [3048]: SERVER_NAME = oameye.works.coregrade.com -- 20:16:58.068 INFO [3048]: HTTP_COOKIE = _ga=GA1.2.1547509397.1579892413; _gid=GA1.2.1223746328.1580858867; ci_session=q7ivt5f2t6lktef58u199neh152idtnj -- 20:16:58.068 INFO [3048]: QUERY_STRING = vlnk=RS-1018093568-708575232-1283457024 -- 20:16:58.068 INFO [3048]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:16:58.068 INFO [3048]: SystemStatus()09-09-********~************ -- 20:16:58.068 INFO [3048]: long coregrade_api_main(CVars in, CVars &out) -- 20:16:58.068 INFO [3048]: long coregrade_api_main(CVars in, CVars &out) action =11015 -- 20:16:58.068 INFO [3048]: account calls -- 20:16:58.068 INFO [3048]: account_calls() -- 20:16:58.068 INFO [3048]: /account_calls() -- 20:16:58.068 INFO [3048]: RET: result=YES I GET TO BACK END -- 20:16:58.069 INFO [3048]: COREGRADE is stopping... -- 20:16:58.069 DEBUG [3048]: Closing database connection -- 20:16:58.069 SQL [3048]: pgsql_close() -- 20:20:08.319 INFO [3457]: COREGRADE is starting... -- 20:20:08.319 INFO [3457]: Version from config: 1.0 -- 20:20:08.319 DEBUG [3457]: Connecting to database... -- 20:20:08.319 DEBUG [3457]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:20:08.319 SQL [3457]: pgsql_db_connect() -- 20:20:08.324 DEBUG [3457]: Database connection successful -- 20:20:08.324 INFO [3457]: _SERVER found -- 20:20:08.324 INFO [3457]: REMOTE_ADDR = 192.168.1.13 -- 20:20:08.324 INFO [3457]: SERVER_NAME = oameye.works.coregrade.com -- 20:20:08.324 INFO [3457]: HTTP_COOKIE = _ga=GA1.2.1547509397.1579892413; _gid=GA1.2.1223746328.1580858867; ci_session=q7ivt5f2t6lktef58u199neh152idtnj -- 20:20:08.324 INFO [3457]: QUERY_STRING = vlnk=RS-1018093568-708575232-1283457024 -- 20:20:08.324 INFO [3457]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:20:08.324 INFO [3457]: SystemStatus()09-09-********~************ -- 20:20:08.324 INFO [3457]: long coregrade_api_main(CVars in, CVars &out) -- 20:20:08.324 INFO [3457]: long coregrade_api_main(CVars in, CVars &out) action =11020 -- 20:20:08.324 INFO [3457]: account calls -- 20:20:08.324 INFO [3457]: account_calls() -- 20:20:08.324 INFO [3457]: CreateCoreGradeAccount() -- 20:20:08.324 FLOG_MAX [3457]: REQ_STRING(verify_link) -- 20:20:08.324 FLOG_MAX [3457]: Error in parameter 'verify_link', len= 2 <= 1 <= 120 -- 20:20:08.324 FLOG_MAX [3457]: Bad parameter exception: 'verify_link' -- 20:20:08.325 INFO [3457]: RET: result=YES I GET TO BACK END -- 20:20:08.325 INFO [3457]: RET: status=Incorrect input parameter -- 20:20:08.326 INFO [3457]: COREGRADE is stopping... -- 20:20:08.326 DEBUG [3457]: Closing database connection -- 20:20:08.326 SQL [3457]: pgsql_close() -- 20:20:50.825 INFO [3458]: COREGRADE is starting... -- 20:20:50.825 INFO [3458]: Version from config: 1.0 -- 20:20:50.825 DEBUG [3458]: Connecting to database... -- 20:20:50.825 DEBUG [3458]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:20:50.825 SQL [3458]: pgsql_db_connect() -- 20:20:50.829 DEBUG [3458]: Database connection successful -- 20:20:50.829 INFO [3458]: _SERVER found -- 20:20:50.829 INFO [3458]: REMOTE_ADDR = 192.168.1.13 -- 20:20:50.829 INFO [3458]: SERVER_NAME = oameye.works.coregrade.com -- 20:20:50.829 INFO [3458]: HTTP_COOKIE = _ga=GA1.2.1547509397.1579892413; _gid=GA1.2.1223746328.1580858867; ci_session=0qb470b94hphghv246q7htdvncsp9arm -- 20:20:50.829 INFO [3458]: QUERY_STRING = vlnk=RS-1018093568-708575232-1283457024 -- 20:20:50.829 INFO [3458]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:20:50.830 INFO [3458]: SystemStatus()09-09-********~************ -- 20:20:50.830 INFO [3458]: long coregrade_api_main(CVars in, CVars &out) -- 20:20:50.830 INFO [3458]: long coregrade_api_main(CVars in, CVars &out) action =11020 -- 20:20:50.830 INFO [3458]: account calls -- 20:20:50.830 INFO [3458]: account_calls() -- 20:20:50.830 INFO [3458]: CreateCoreGradeAccount() -- 20:20:50.830 FLOG_MAX [3458]: REQ_STRING(verify_link) -- 20:20:50.830 FLOG_MAX [3458]: long load_db_record( CVars &rec, const char * query, ... ) -- 20:20:50.830 SQL [3458]: pgsql_query() -- 20:20:50.830 SQL [3458]: About to run query: -- 20:20:50.830 SQL [3458]: SELECT *,id AS pending_id FROM members_pending WHERE verify_link ='RS-1018093568-708575232-1283457024' AND expire > now() LIMIT 1 -- 20:20:50.832 SQL [3458]: Found rows: ERROR -- 20:20:50.832 FLOG_MAX [3458]: insert_db_record() -- 20:20:50.832 SQL [3458]: pgsql_exec() -- 20:20:50.832 SQL [3458]: About to run query: -- 20:20:50.832 SQL [3458]: INSERT INTO members (email,firstname,lastname,loc,password,phone,username) VALUES ('','','','192.168.1.13','','','') -- 20:20:50.834 SQL [3458]: PQcmdTuples: 1 -- 20:20:50.834 SQL [3458]: Affected rows: 1 -- 20:20:50.834 FLOG_MAX [3458]: SELECT currval('members_id_seq') -- 20:20:50.834 SQL [3458]: pgsql_query() -- 20:20:50.834 SQL [3458]: About to run query: -- 20:20:50.834 SQL [3458]: SELECT currval('members_id_seq') -- 20:20:50.834 SQL [3458]: Found rows: 1 -- 20:20:50.834 SQL [3458]: pgsql_query() -- 20:20:50.835 SQL [3458]: About to run query: -- 20:20:50.835 SQL [3458]: UPDATE members SET password = md5('') WHERE id = 1 -- 20:20:50.836 SQL [3458]: Found rows: 0 -- 20:20:50.836 SQL [3458]: Found rows: 0 -- 20:20:50.836 SQL [3458]: pgsql_query() -- 20:20:50.836 SQL [3458]: About to run query: -- 20:20:50.836 SQL [3458]: UPDATE members_pending SET status = 5 WHERE id = 0 -- 20:20:50.836 SQL [3458]: Found rows: 0 -- 20:20:50.836 SQL [3458]: Found rows: 0 -- 20:20:50.836 FLOG_MAX [3458]: Bad parameter exception: 'pending_id' -- 20:20:50.837 INFO [3458]: /CreateCoreGradeAccount() -- 20:20:50.837 INFO [3458]: RET: email= -- 20:20:50.837 INFO [3458]: RET: firstname= -- 20:20:50.837 INFO [3458]: RET: lastname= -- 20:20:50.837 INFO [3458]: RET: member_id=1 -- 20:20:50.837 INFO [3458]: RET: password= -- 20:20:50.837 INFO [3458]: RET: pending_id= -- 20:20:50.837 INFO [3458]: RET: phone= -- 20:20:50.837 INFO [3458]: RET: result=YES I GET TO BACK END -- 20:20:50.837 INFO [3458]: RET: status=ERROR -- 20:20:50.837 INFO [3458]: RET: username= -- 20:20:50.838 INFO [3458]: COREGRADE is stopping... -- 20:20:50.838 DEBUG [3458]: Closing database connection -- 20:20:50.838 SQL [3458]: pgsql_close() -- 20:33:32.530 INFO [3460]: COREGRADE is starting... -- 20:33:32.531 INFO [3460]: Version from config: 1.0 -- 20:33:32.531 DEBUG [3460]: Connecting to database... -- 20:33:32.531 DEBUG [3460]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:33:32.531 SQL [3460]: pgsql_db_connect() -- 20:33:32.535 DEBUG [3460]: Database connection successful -- 20:33:32.535 INFO [3460]: _SERVER found -- 20:33:32.535 INFO [3460]: REMOTE_ADDR = 192.168.1.13 -- 20:33:32.535 INFO [3460]: SERVER_NAME = oameye.works.coregrade.com -- 20:33:32.535 INFO [3460]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896 -- 20:33:32.535 INFO [3460]: QUERY_STRING = vlnk=RS-1018093568-708575232-1283457024 -- 20:33:32.535 INFO [3460]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:33:32.535 INFO [3460]: SystemStatus()09-09-********~************ -- 20:33:32.535 INFO [3460]: long coregrade_api_main(CVars in, CVars &out) -- 20:33:32.535 INFO [3460]: long coregrade_api_main(CVars in, CVars &out) action =11020 -- 20:33:32.535 INFO [3460]: account calls -- 20:33:32.535 INFO [3460]: account_calls() -- 20:33:32.535 INFO [3460]: CreateCoreGradeAccount() -- 20:33:32.535 FLOG_MAX [3460]: REQ_STRING(verify_link) -- 20:33:32.535 FLOG_MAX [3460]: long load_db_record( CVars &rec, const char * query, ... ) -- 20:33:32.535 SQL [3460]: pgsql_query() -- 20:33:32.536 SQL [3460]: About to run query: -- 20:33:32.536 SQL [3460]: SELECT *,id AS pending_id FROM members_pending WHERE verify_link ='RS-1018093568-708575232-1283457024' AND expire > now() LIMIT 1 -- 20:33:32.539 SQL [3460]: Found rows: 1 -- 20:33:32.539 FLOG_MAX [3460]: load_db_record(SELECT *,id AS pending_id FROM members_pending WHERE verify_link ='RS-1018093568-708575232-1283457024' AND expire > now() LIMIT 1) num_cols=15 -- 20:33:32.539 FLOG_MAX [3460]: insert_db_record() -- 20:33:32.539 SQL [3460]: pgsql_exec() -- 20:33:32.539 SQL [3460]: About to run query: -- 20:33:32.539 SQL [3460]: INSERT INTO members (email,firstname,lastname,loc,password,phone,username) VALUES ('jubaworker+5@gmail.com','Olu','Amey','192.168.1.13','','','jubaworker+5@gmail.com') -- 20:33:32.540 SQL [3460]: PQcmdTuples: 1 -- 20:33:32.540 SQL [3460]: Affected rows: 1 -- 20:33:32.540 FLOG_MAX [3460]: SELECT currval('members_id_seq') -- 20:33:32.540 SQL [3460]: pgsql_query() -- 20:33:32.540 SQL [3460]: About to run query: -- 20:33:32.540 SQL [3460]: SELECT currval('members_id_seq') -- 20:33:32.541 SQL [3460]: Found rows: 1 -- 20:33:32.541 SQL [3460]: pgsql_query() -- 20:33:32.541 SQL [3460]: About to run query: -- 20:33:32.541 SQL [3460]: UPDATE members SET password = md5('') WHERE id = 2 -- 20:33:32.542 SQL [3460]: Found rows: 0 -- 20:33:32.542 SQL [3460]: Found rows: 0 -- 20:33:32.542 SQL [3460]: pgsql_query() -- 20:33:32.542 SQL [3460]: About to run query: -- 20:33:32.542 SQL [3460]: UPDATE members_pending SET status = 5 WHERE id = 5 -- 20:33:32.543 SQL [3460]: Found rows: 0 -- 20:33:32.543 SQL [3460]: Found rows: 0 -- 20:33:32.543 FLOG_MAX [3460]: Bad parameter exception: 'pending_id' -- 20:33:32.543 INFO [3460]: /CreateCoreGradeAccount() -- 20:33:32.543 INFO [3460]: RET: added=2020-02-04 20:05:50.722608 -- 20:33:32.543 INFO [3460]: RET: email=jubaworker+5@gmail.com -- 20:33:32.543 INFO [3460]: RET: expire=2020-02-06 20:32:12.04 -- 20:33:32.543 INFO [3460]: RET: firstname=Olu -- 20:33:32.543 INFO [3460]: RET: id=5 -- 20:33:32.543 INFO [3460]: RET: last_login= -- 20:33:32.543 INFO [3460]: RET: lastname=Amey -- 20:33:32.543 INFO [3460]: RET: loc=192.168.1.13 -- 20:33:32.543 INFO [3460]: RET: member_id=2 -- 20:33:32.543 INFO [3460]: RET: password= -- 20:33:32.543 INFO [3460]: RET: pending_id=5 -- 20:33:32.543 INFO [3460]: RET: phone= -- 20:33:32.543 INFO [3460]: RET: result=YES I GET TO BACK END -- 20:33:32.543 INFO [3460]: RET: status=ERROR -- 20:33:32.543 INFO [3460]: RET: username=jubaworker+5@gmail.com -- 20:33:32.543 INFO [3460]: RET: verified= -- 20:33:32.543 INFO [3460]: RET: verify_link=RS-1018093568-708575232-1283457024 -- 20:33:32.545 INFO [3460]: COREGRADE is stopping... -- 20:33:32.545 DEBUG [3460]: Closing database connection -- 20:33:32.545 SQL [3460]: pgsql_close() -- 20:37:37.303 INFO [3696]: COREGRADE is starting... -- 20:37:37.303 INFO [3696]: Version from config: 1.0 -- 20:37:37.303 DEBUG [3696]: Connecting to database... -- 20:37:37.303 DEBUG [3696]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:37:37.303 SQL [3696]: pgsql_db_connect() -- 20:37:37.309 DEBUG [3696]: Database connection successful -- 20:37:37.309 INFO [3696]: _SERVER found -- 20:37:37.309 INFO [3696]: REMOTE_ADDR = 192.168.1.13 -- 20:37:37.309 INFO [3696]: SERVER_NAME = oameye.works.coregrade.com -- 20:37:37.309 INFO [3696]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=558nk7pi3toam42hm9j7mm791srrp5mv -- 20:37:37.309 INFO [3696]: QUERY_STRING = -- 20:37:37.309 INFO [3696]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:37:37.309 INFO [3696]: SystemStatus()09-09-********~************ -- 20:37:37.309 INFO [3696]: long coregrade_api_main(CVars in, CVars &out) -- 20:37:37.309 INFO [3696]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 20:37:37.309 INFO [3696]: account calls -- 20:37:37.309 INFO [3696]: account_calls() -- 20:37:37.309 FLOG_MAX [3696]: REQ_STRING(username) -- 20:37:37.309 FLOG_MAX [3696]: REQ_STRING(firstname) -- 20:37:37.309 FLOG_MAX [3696]: REQ_STRING(lastname) -- 20:37:37.309 FLOG_MAX [3696]: REQ_STRING(email) -- 20:37:37.309 FLOG_MAX [3696]: insert_db_record() -- 20:37:37.309 SQL [3696]: pgsql_exec() -- 20:37:37.309 SQL [3696]: About to run query: -- 20:37:37.309 SQL [3696]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ameye+1@chiefsoft.com','olu','Ameye','192.168.1.13','','ameye+1@chiefsoft.com','RS-529676800-2066635776-1340332032') -- 20:37:37.312 SQL [3696]: PQcmdTuples: 1 -- 20:37:37.312 SQL [3696]: Affected rows: 1 -- 20:37:37.312 FLOG_MAX [3696]: SELECT currval('members_pending_id_seq') -- 20:37:37.312 SQL [3696]: pgsql_query() -- 20:37:37.312 SQL [3696]: About to run query: -- 20:37:37.312 SQL [3696]: SELECT currval('members_pending_id_seq') -- 20:37:37.312 SQL [3696]: Found rows: 1 -- 20:37:37.312 SQL [3696]: pgsql_query() -- 20:37:37.312 SQL [3696]: About to run query: -- 20:37:37.312 SQL [3696]: UPDATE members SET password = md5('242252526') WHERE id = 6 -- 20:37:37.314 SQL [3696]: Found rows: 0 -- 20:37:37.314 SQL [3696]: Found rows: 0 -- 20:37:37.314 FLOG_MAX [3696]: long load_db_record( CVars &rec, const char * query, ... ) -- 20:37:37.314 SQL [3696]: pgsql_query() -- 20:37:37.314 SQL [3696]: About to run query: -- 20:37:37.314 SQL [3696]: SELECT * FROM members_pending WHERE id = 6 -- 20:37:37.314 SQL [3696]: Found rows: 1 -- 20:37:37.314 FLOG_MAX [3696]: load_db_record(SELECT * FROM members_pending WHERE id = 6 ) num_cols=14 -- 20:37:37.314 FLOG_MAX [3696]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 20:37:37.314 FLOG_MAX [3696]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1692 bytes -- 20:37:37.314 FLOG_MAX [3696]: Returning from FormFile() -- 20:37:37.314 FLOG_MAX [3696]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 20:37:37.315 FLOG_MAX [3696]: ESMTP( smtp.google.com, savvy@chiefsoft.com, ameye+1@chiefsoft.com ) -- 20:37:37.315 FLOG_MAX [3696]: Prepare body -- 20:37:37.315 FLOG_MAX [3696]: Locate & extract subject -- 20:37:37.315 FLOG_MAX [3696]: Found subject: CoreGrade - Pending Signup - Verify ameye+1@chiefsoft.com -- 20:37:37.315 FLOG_MAX [3696]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp smtp.google.com -f savvy@chiefsoft.com -t ameye+1@chiefsoft.com -d chiefsoft.com -name 'CoreGrade Beta' +cc +bcc -v -port 25 -auth-plain -user savvy@chiefsoft.com -pass may12002! -sub 'CoreGrade - Pending Signup - Verify ameye+1@chiefsoft.com' -M ' - - - -
-
- - - - - - -
CoreGrade
-Dear olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-529676800-2066635776-1340332032 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - -' -- 20:37:37.399 FLOG_MAX [3696]: - -END OF PIPE OUTPUT - - -- 20:37:37.399 FLOG_MAX [3696]: /ESMTP() -- 20:37:37.399 INFO [3696]: RET: action=11010 -- 20:37:37.399 INFO [3696]: RET: email=ameye+1@chiefsoft.com -- 20:37:37.399 INFO [3696]: RET: firstname=olu -- 20:37:37.399 INFO [3696]: RET: lastname=Ameye -- 20:37:37.399 INFO [3696]: RET: password=242252526 -- 20:37:37.399 INFO [3696]: RET: pending_id=6 -- 20:37:37.399 INFO [3696]: RET: pid=100 -- 20:37:37.399 INFO [3696]: RET: username=ameye+1@chiefsoft.com -- 20:37:37.404 INFO [3696]: COREGRADE is stopping... -- 20:37:37.404 DEBUG [3696]: Closing database connection -- 20:37:37.404 SQL [3696]: pgsql_close() -- 20:57:38.095 INFO [3756]: COREGRADE is starting... -- 20:57:38.096 INFO [3756]: Version from config: 1.0 -- 20:57:38.096 DEBUG [3756]: Connecting to database... -- 20:57:38.096 DEBUG [3756]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:57:38.096 SQL [3756]: pgsql_db_connect() -- 20:57:38.101 DEBUG [3756]: Database connection successful -- 20:57:38.101 INFO [3756]: _SERVER found -- 20:57:38.101 INFO [3756]: REMOTE_ADDR = 192.168.1.13 -- 20:57:38.101 INFO [3756]: SERVER_NAME = oameye.works.coregrade.com -- 20:57:38.101 INFO [3756]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=558nk7pi3toam42hm9j7mm791srrp5mv -- 20:57:38.101 INFO [3756]: QUERY_STRING = action=go_logout -- 20:57:38.101 INFO [3756]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:57:38.101 INFO [3756]: SystemStatus()09-09-********~************ -- 20:57:38.101 INFO [3756]: long coregrade_api_main(CVars in, CVars &out) -- 20:57:38.101 INFO [3756]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 20:57:38.101 INFO [3756]: /long coregrade_api_main(CVars in, CVars &out) -- 20:57:38.101 INFO [3756]: RET: status=Unknown action -- 20:57:38.103 INFO [3756]: COREGRADE is stopping... -- 20:57:38.103 DEBUG [3756]: Closing database connection -- 20:57:38.103 SQL [3756]: pgsql_close() -- 21:57:29.864 INFO [3758]: COREGRADE is starting... -- 21:57:29.866 INFO [3758]: Version from config: 1.0 -- 21:57:29.866 DEBUG [3758]: Connecting to database... -- 21:57:29.866 DEBUG [3758]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:57:29.866 SQL [3758]: pgsql_db_connect() -- 21:57:29.871 DEBUG [3758]: Database connection successful -- 21:57:29.871 INFO [3758]: _SERVER found -- 21:57:29.871 INFO [3758]: REMOTE_ADDR = 192.168.1.13 -- 21:57:29.871 INFO [3758]: SERVER_NAME = oameye.works.coregrade.com -- 21:57:29.871 INFO [3758]: QUERY_STRING = vlnk=RS-1018093568-708575232-1283457024 -- 21:57:29.871 INFO [3758]: HTTP_X_FORWARDED_FOR = 66.102.8.102 -- 21:57:29.871 INFO [3758]: SystemStatus()09-09-********~************ -- 21:57:29.871 INFO [3758]: long coregrade_api_main(CVars in, CVars &out) -- 21:57:29.871 INFO [3758]: long coregrade_api_main(CVars in, CVars &out) action =11020 -- 21:57:29.871 INFO [3758]: account calls -- 21:57:29.871 INFO [3758]: account_calls() -- 21:57:29.871 INFO [3758]: CreateCoreGradeAccount() -- 21:57:29.871 FLOG_MAX [3758]: REQ_STRING(verify_link) -- 21:57:29.871 FLOG_MAX [3758]: long load_db_record( CVars &rec, const char * query, ... ) -- 21:57:29.871 SQL [3758]: pgsql_query() -- 21:57:29.871 SQL [3758]: About to run query: -- 21:57:29.871 SQL [3758]: SELECT *,id AS pending_id FROM members_pending WHERE verify_link ='RS-1018093568-708575232-1283457024' AND expire > now() LIMIT 1 -- 21:57:29.875 SQL [3758]: Found rows: 1 -- 21:57:29.875 FLOG_MAX [3758]: load_db_record(SELECT *,id AS pending_id FROM members_pending WHERE verify_link ='RS-1018093568-708575232-1283457024' AND expire > now() LIMIT 1) num_cols=15 -- 21:57:29.875 FLOG_MAX [3758]: insert_db_record() -- 21:57:29.875 SQL [3758]: pgsql_exec() -- 21:57:29.875 SQL [3758]: About to run query: -- 21:57:29.875 SQL [3758]: INSERT INTO members (email,firstname,lastname,loc,password,phone,username) VALUES ('jubaworker+5@gmail.com','Olu','Amey','192.168.1.13','','','jubaworker+5@gmail.com') -- 21:57:29.876 SQL [3758]: Affected rows: ERROR -- 21:57:29.876 FLOG_MAX [3758]: SELECT currval('members_id_seq') -- 21:57:29.876 SQL [3758]: pgsql_query() -- 21:57:29.876 SQL [3758]: About to run query: -- 21:57:29.876 SQL [3758]: SELECT currval('members_id_seq') -- 21:57:29.876 SQL [3758]: Found rows: 1 -- 21:57:29.877 SQL [3758]: pgsql_query() -- 21:57:29.877 SQL [3758]: About to run query: -- 21:57:29.877 SQL [3758]: UPDATE members_pending SET status = 5 WHERE id = 5 -- 21:57:29.878 SQL [3758]: Found rows: 0 -- 21:57:29.878 SQL [3758]: Found rows: 0 -- 21:57:29.878 FLOG_MAX [3758]: Bad parameter exception: 'pending_id' -- 21:57:29.878 INFO [3758]: /CreateCoreGradeAccount() -- 21:57:29.878 INFO [3758]: RET: added=2020-02-04 20:05:50.722608 -- 21:57:29.878 INFO [3758]: RET: email=jubaworker+5@gmail.com -- 21:57:29.878 INFO [3758]: RET: expire=2020-02-06 20:32:12.04 -- 21:57:29.878 INFO [3758]: RET: firstname=Olu -- 21:57:29.878 INFO [3758]: RET: id=5 -- 21:57:29.878 INFO [3758]: RET: last_login= -- 21:57:29.878 INFO [3758]: RET: lastname=Amey -- 21:57:29.878 INFO [3758]: RET: loc=192.168.1.13 -- 21:57:29.878 INFO [3758]: RET: member_id=3 -- 21:57:29.878 INFO [3758]: RET: password= -- 21:57:29.878 INFO [3758]: RET: pending_id=5 -- 21:57:29.878 INFO [3758]: RET: phone= -- 21:57:29.878 INFO [3758]: RET: result=YES I GET TO BACK END -- 21:57:29.878 INFO [3758]: RET: status=ERROR -- 21:57:29.878 INFO [3758]: RET: username=jubaworker+5@gmail.com -- 21:57:29.878 INFO [3758]: RET: verified= -- 21:57:29.878 INFO [3758]: RET: verify_link=RS-1018093568-708575232-1283457024 -- 21:57:29.880 INFO [3758]: COREGRADE is stopping... -- 21:57:29.880 DEBUG [3758]: Closing database connection -- 21:57:29.880 SQL [3758]: pgsql_close() -- 05:49:36.855 INFO [3757]: COREGRADE is starting... -- 05:49:36.855 INFO [3757]: Version from config: 1.0 -- 05:49:36.855 DEBUG [3757]: Connecting to database... -- 05:49:36.855 DEBUG [3757]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:49:36.855 SQL [3757]: pgsql_db_connect() -- 05:49:36.860 DEBUG [3757]: Database connection successful -- 05:49:36.860 INFO [3757]: _SERVER found -- 05:49:36.860 INFO [3757]: REMOTE_ADDR = 192.168.1.13 -- 05:49:36.860 INFO [3757]: SERVER_NAME = oameye.works.coregrade.com -- 05:49:36.860 INFO [3757]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=8i78cddtm4r87r0sv3jk5c8s1e4j0prn -- 05:49:36.860 INFO [3757]: QUERY_STRING = -- 05:49:36.860 INFO [3757]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:49:36.860 INFO [3757]: SystemStatus()09-09-********~************ -- 05:49:36.860 INFO [3757]: long coregrade_api_main(CVars in, CVars &out) -- 05:49:36.860 INFO [3757]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 05:49:36.860 INFO [3757]: account calls -- 05:49:36.860 INFO [3757]: account_calls() -- 05:49:36.860 FLOG_MAX [3757]: REQ_STRING(username) -- 05:49:36.860 FLOG_MAX [3757]: REQ_STRING(firstname) -- 05:49:36.860 FLOG_MAX [3757]: REQ_STRING(lastname) -- 05:49:36.860 FLOG_MAX [3757]: REQ_STRING(email) -- 05:49:36.860 FLOG_MAX [3757]: insert_db_record() -- 05:49:36.860 SQL [3757]: pgsql_exec() -- 05:49:36.860 SQL [3757]: About to run query: -- 05:49:36.860 SQL [3757]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ameye+11@chiefsoft.com','Olu','Ameye','192.168.1.13','','ameye+11@chiefsoft.com','RS-1014108416-1083654400-1810534144') -- 05:49:36.863 SQL [3757]: PQcmdTuples: 1 -- 05:49:36.863 SQL [3757]: Affected rows: 1 -- 05:49:36.863 FLOG_MAX [3757]: SELECT currval('members_pending_id_seq') -- 05:49:36.863 SQL [3757]: pgsql_query() -- 05:49:36.863 SQL [3757]: About to run query: -- 05:49:36.863 SQL [3757]: SELECT currval('members_pending_id_seq') -- 05:49:36.864 SQL [3757]: Found rows: 1 -- 05:49:36.864 SQL [3757]: pgsql_query() -- 05:49:36.864 SQL [3757]: About to run query: -- 05:49:36.864 SQL [3757]: UPDATE members SET password = md5('may12002') WHERE id = 7 -- 05:49:36.865 SQL [3757]: Found rows: 0 -- 05:49:36.865 SQL [3757]: Found rows: 0 -- 05:49:36.865 FLOG_MAX [3757]: long load_db_record( CVars &rec, const char * query, ... ) -- 05:49:36.865 SQL [3757]: pgsql_query() -- 05:49:36.865 SQL [3757]: About to run query: -- 05:49:36.865 SQL [3757]: SELECT * FROM members_pending WHERE id = 7 -- 05:49:36.865 SQL [3757]: Found rows: 1 -- 05:49:36.866 FLOG_MAX [3757]: load_db_record(SELECT * FROM members_pending WHERE id = 7 ) num_cols=14 -- 05:49:36.866 FLOG_MAX [3757]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 05:49:36.866 FLOG_MAX [3757]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1692 bytes -- 05:49:36.866 FLOG_MAX [3757]: Returning from FormFile() -- 05:49:36.866 FLOG_MAX [3757]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 05:49:36.866 FLOG_MAX [3757]: ESMTP( smtp.google.com, savvy@chiefsoft.com, ameye+11@chiefsoft.com ) -- 05:49:36.866 FLOG_MAX [3757]: Prepare body -- 05:49:36.866 FLOG_MAX [3757]: Locate & extract subject -- 05:49:36.866 FLOG_MAX [3757]: Found subject: CoreGrade - Pending Signup - Verify ameye+11@chiefsoft.com -- 05:49:36.866 FLOG_MAX [3757]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp smtp.google.com -f savvy@chiefsoft.com -t ameye+11@chiefsoft.com -d chiefsoft.com -name 'CoreGrade Beta' +cc +bcc -v -port 25 -auth-plain -user savvy@chiefsoft.com -pass may12002! -sub 'CoreGrade - Pending Signup - Verify ameye+11@chiefsoft.com' -M ' - - - -
-
- - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-1014108416-1083654400-1810534144 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - -' -- 05:49:36.918 FLOG_MAX [3757]: - -END OF PIPE OUTPUT - - -- 05:49:36.918 FLOG_MAX [3757]: /ESMTP() -- 05:49:36.918 INFO [3757]: RET: action=11010 -- 05:49:36.918 INFO [3757]: RET: email=ameye+11@chiefsoft.com -- 05:49:36.918 INFO [3757]: RET: firstname=Olu -- 05:49:36.918 INFO [3757]: RET: lastname=Ameye -- 05:49:36.918 INFO [3757]: RET: password=may12002 -- 05:49:36.918 INFO [3757]: RET: pending_id=7 -- 05:49:36.918 INFO [3757]: RET: pid=100 -- 05:49:36.918 INFO [3757]: RET: username=ameye+11@chiefsoft.com -- 05:49:36.922 INFO [3757]: COREGRADE is stopping... -- 05:49:36.922 DEBUG [3757]: Closing database connection -- 05:49:36.922 SQL [3757]: pgsql_close() -- 05:51:05.288 INFO [3759]: COREGRADE is starting... -- 05:51:05.288 INFO [3759]: Version from config: 1.0 -- 05:51:05.288 DEBUG [3759]: Connecting to database... -- 05:51:05.288 DEBUG [3759]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:51:05.288 SQL [3759]: pgsql_db_connect() -- 05:51:05.292 DEBUG [3759]: Database connection successful -- 05:51:05.292 INFO [3759]: _SERVER found -- 05:51:05.292 INFO [3759]: REMOTE_ADDR = 192.168.1.13 -- 05:51:05.292 INFO [3759]: SERVER_NAME = oameye.works.coregrade.com -- 05:51:05.292 INFO [3759]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=8i78cddtm4r87r0sv3jk5c8s1e4j0prn -- 05:51:05.292 INFO [3759]: QUERY_STRING = -- 05:51:05.292 INFO [3759]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:51:05.293 INFO [3759]: SystemStatus()09-09-********~************ -- 05:51:05.293 INFO [3759]: long coregrade_api_main(CVars in, CVars &out) -- 05:51:05.293 INFO [3759]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 05:51:05.293 INFO [3759]: account calls -- 05:51:05.293 INFO [3759]: account_calls() -- 05:51:05.293 FLOG_MAX [3759]: REQ_STRING(username) -- 05:51:05.293 FLOG_MAX [3759]: REQ_STRING(firstname) -- 05:51:05.293 FLOG_MAX [3759]: REQ_STRING(lastname) -- 05:51:05.293 FLOG_MAX [3759]: REQ_STRING(email) -- 05:51:05.293 FLOG_MAX [3759]: insert_db_record() -- 05:51:05.293 SQL [3759]: pgsql_exec() -- 05:51:05.293 SQL [3759]: About to run query: -- 05:51:05.293 SQL [3759]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ameye+11@chiefsoft.com','Olu','Ameye','192.168.1.13','','ameye+11@chiefsoft.com','RS-1862452480-914143488-2114845952') -- 05:51:05.295 SQL [3759]: Affected rows: ERROR -- 05:51:05.295 FLOG_MAX [3759]: SELECT currval('members_pending_id_seq') -- 05:51:05.295 SQL [3759]: pgsql_query() -- 05:51:05.295 SQL [3759]: About to run query: -- 05:51:05.295 SQL [3759]: SELECT currval('members_pending_id_seq') -- 05:51:05.295 SQL [3759]: Found rows: 1 -- 05:51:05.295 SQL [3759]: pgsql_query() -- 05:51:05.296 SQL [3759]: About to run query: -- 05:51:05.296 SQL [3759]: UPDATE members SET password = md5('may12002') WHERE id = 8 -- 05:51:05.297 SQL [3759]: Found rows: 0 -- 05:51:05.297 SQL [3759]: Found rows: 0 -- 05:51:05.297 FLOG_MAX [3759]: long load_db_record( CVars &rec, const char * query, ... ) -- 05:51:05.297 SQL [3759]: pgsql_query() -- 05:51:05.297 SQL [3759]: About to run query: -- 05:51:05.297 SQL [3759]: SELECT * FROM members_pending WHERE id = 8 -- 05:51:05.297 SQL [3759]: Found rows: 0 -- 05:51:05.297 SQL [3759]: Found rows: 0 -- 05:51:05.297 FLOG_MAX [3759]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 05:51:05.297 FLOG_MAX [3759]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1692 bytes -- 05:51:05.297 FLOG_MAX [3759]: Returning from FormFile() -- 05:51:05.297 FLOG_MAX [3759]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 05:51:05.297 FLOG_MAX [3759]: ESMTP( smtp.google.com, savvy@chiefsoft.com, ) -- 05:51:05.297 FLOG_MAX [3759]: Empty recipient list -- 05:51:05.297 INFO [3759]: RET: action=11010 -- 05:51:05.297 INFO [3759]: RET: email=ameye+11@chiefsoft.com -- 05:51:05.297 INFO [3759]: RET: firstname=Olu -- 05:51:05.297 INFO [3759]: RET: lastname=Ameye -- 05:51:05.297 INFO [3759]: RET: password=may12002 -- 05:51:05.297 INFO [3759]: RET: pending_id=8 -- 05:51:05.297 INFO [3759]: RET: pid=100 -- 05:51:05.297 INFO [3759]: RET: username=ameye+11@chiefsoft.com -- 05:51:05.301 INFO [3759]: COREGRADE is stopping... -- 05:51:05.301 DEBUG [3759]: Closing database connection -- 05:51:05.301 SQL [3759]: pgsql_close() -- 05:51:12.416 INFO [3758]: COREGRADE is starting... -- 05:51:12.416 INFO [3758]: Version from config: 1.0 -- 05:51:12.416 DEBUG [3758]: Connecting to database... -- 05:51:12.416 DEBUG [3758]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:51:12.416 SQL [3758]: pgsql_db_connect() -- 05:51:12.421 DEBUG [3758]: Database connection successful -- 05:51:12.421 INFO [3758]: _SERVER found -- 05:51:12.421 INFO [3758]: REMOTE_ADDR = 192.168.1.13 -- 05:51:12.421 INFO [3758]: SERVER_NAME = oameye.works.coregrade.com -- 05:51:12.421 INFO [3758]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=8i78cddtm4r87r0sv3jk5c8s1e4j0prn -- 05:51:12.421 INFO [3758]: QUERY_STRING = -- 05:51:12.421 INFO [3758]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:51:12.421 INFO [3758]: SystemStatus()09-09-********~************ -- 05:51:12.421 INFO [3758]: long coregrade_api_main(CVars in, CVars &out) -- 05:51:12.421 INFO [3758]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 05:51:12.421 INFO [3758]: /long coregrade_api_main(CVars in, CVars &out) -- 05:51:12.421 INFO [3758]: RET: status=Unknown action -- 05:51:12.422 INFO [3758]: COREGRADE is stopping... -- 05:51:12.422 DEBUG [3758]: Closing database connection -- 05:51:12.422 SQL [3758]: pgsql_close() -- 05:52:35.501 INFO [3697]: COREGRADE is starting... -- 05:52:35.501 INFO [3697]: Version from config: 1.0 -- 05:52:35.501 DEBUG [3697]: Connecting to database... -- 05:52:35.501 DEBUG [3697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:52:35.501 SQL [3697]: pgsql_db_connect() -- 05:52:35.505 DEBUG [3697]: Database connection successful -- 05:52:35.505 INFO [3697]: _SERVER found -- 05:52:35.506 INFO [3697]: REMOTE_ADDR = 192.168.1.13 -- 05:52:35.506 INFO [3697]: SERVER_NAME = oameye.works.coregrade.com -- 05:52:35.506 INFO [3697]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=8i78cddtm4r87r0sv3jk5c8s1e4j0prn -- 05:52:35.506 INFO [3697]: QUERY_STRING = -- 05:52:35.506 INFO [3697]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:52:35.506 INFO [3697]: SystemStatus()09-09-********~************ -- 05:52:35.506 INFO [3697]: long coregrade_api_main(CVars in, CVars &out) -- 05:52:35.506 INFO [3697]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 05:52:35.506 INFO [3697]: /long coregrade_api_main(CVars in, CVars &out) -- 05:52:35.506 INFO [3697]: RET: status=Unknown action -- 05:52:35.507 INFO [3697]: COREGRADE is stopping... -- 05:52:35.507 DEBUG [3697]: Closing database connection -- 05:52:35.507 SQL [3697]: pgsql_close() -- 05:55:27.131 INFO [3760]: COREGRADE is starting... -- 05:55:27.131 INFO [3760]: Version from config: 1.0 -- 05:55:27.131 DEBUG [3760]: Connecting to database... -- 05:55:27.131 DEBUG [3760]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:55:27.131 SQL [3760]: pgsql_db_connect() -- 05:55:27.135 DEBUG [3760]: Database connection successful -- 05:55:27.135 INFO [3760]: _SERVER found -- 05:55:27.135 INFO [3760]: REMOTE_ADDR = 192.168.1.13 -- 05:55:27.135 INFO [3760]: SERVER_NAME = oameye.works.coregrade.com -- 05:55:27.135 INFO [3760]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=s3qse722in06thn92nv52mk28sdsl81j -- 05:55:27.135 INFO [3760]: QUERY_STRING = -- 05:55:27.135 INFO [3760]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:55:27.135 INFO [3760]: SystemStatus()09-09-********~************ -- 05:55:27.135 INFO [3760]: long coregrade_api_main(CVars in, CVars &out) -- 05:55:27.135 INFO [3760]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 05:55:27.135 INFO [3760]: account calls -- 05:55:27.135 INFO [3760]: account_calls() -- 05:55:27.135 FLOG_MAX [3760]: REQ_STRING(username) -- 05:55:27.135 FLOG_MAX [3760]: REQ_STRING(firstname) -- 05:55:27.135 FLOG_MAX [3760]: REQ_STRING(lastname) -- 05:55:27.136 FLOG_MAX [3760]: REQ_STRING(email) -- 05:55:27.136 FLOG_MAX [3760]: insert_db_record() -- 05:55:27.136 SQL [3760]: pgsql_exec() -- 05:55:27.136 SQL [3760]: About to run query: -- 05:55:27.136 SQL [3760]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ameye+22@chiefsoft.com','Olu','Amey','192.168.1.13','','ameye+22@chiefsoft.com','RS-1555799040-1190588416-680673280') -- 05:55:27.138 SQL [3760]: PQcmdTuples: 1 -- 05:55:27.138 SQL [3760]: Affected rows: 1 -- 05:55:27.138 FLOG_MAX [3760]: SELECT currval('members_pending_id_seq') -- 05:55:27.138 SQL [3760]: pgsql_query() -- 05:55:27.138 SQL [3760]: About to run query: -- 05:55:27.138 SQL [3760]: SELECT currval('members_pending_id_seq') -- 05:55:27.139 SQL [3760]: Found rows: 1 -- 05:55:27.139 SQL [3760]: pgsql_query() -- 05:55:27.139 SQL [3760]: About to run query: -- 05:55:27.139 SQL [3760]: UPDATE members SET password = md5('may12002') WHERE id = 9 -- 05:55:27.140 SQL [3760]: Found rows: 0 -- 05:55:27.140 SQL [3760]: Found rows: 0 -- 05:55:27.140 FLOG_MAX [3760]: long load_db_record( CVars &rec, const char * query, ... ) -- 05:55:27.140 SQL [3760]: pgsql_query() -- 05:55:27.140 SQL [3760]: About to run query: -- 05:55:27.140 SQL [3760]: SELECT * FROM members_pending WHERE id = 9 -- 05:55:27.140 SQL [3760]: Found rows: 1 -- 05:55:27.140 FLOG_MAX [3760]: load_db_record(SELECT * FROM members_pending WHERE id = 9 ) num_cols=14 -- 05:55:27.140 FLOG_MAX [3760]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 05:55:27.140 FLOG_MAX [3760]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1692 bytes -- 05:55:27.141 FLOG_MAX [3760]: Returning from FormFile() -- 05:55:27.141 FLOG_MAX [3760]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 05:55:27.141 FLOG_MAX [3760]: ESMTP( smtp.google.com, savvy@chiefsoft.com, ameye+22@chiefsoft.com ) -- 05:55:27.141 FLOG_MAX [3760]: Prepare body -- 05:55:27.141 FLOG_MAX [3760]: Locate & extract subject -- 05:55:27.141 FLOG_MAX [3760]: Found subject: CoreGrade - Pending Signup - Verify ameye+22@chiefsoft.com -- 05:55:27.141 FLOG_MAX [3760]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp smtp.google.com -f savvy@chiefsoft.com -t ameye+22@chiefsoft.com -d chiefsoft.com -name 'CoreGrade Beta' +cc +bcc -v -port 25 -auth-plain -user savvy@chiefsoft.com -pass may12002! -sub 'CoreGrade - Pending Signup - Verify ameye+22@chiefsoft.com' -M ' - - - -
-
- - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-1555799040-1190588416-680673280 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - -' -- 05:55:27.187 FLOG_MAX [3760]: - -END OF PIPE OUTPUT - - -- 05:55:27.187 FLOG_MAX [3760]: /ESMTP() -- 05:55:27.187 INFO [3760]: RET: action=11010 -- 05:55:27.187 INFO [3760]: RET: email=ameye+22@chiefsoft.com -- 05:55:27.187 INFO [3760]: RET: firstname=Olu -- 05:55:27.187 INFO [3760]: RET: lastname=Amey -- 05:55:27.187 INFO [3760]: RET: password=may12002 -- 05:55:27.187 INFO [3760]: RET: pending_id=9 -- 05:55:27.187 INFO [3760]: RET: pid=100 -- 05:55:27.187 INFO [3760]: RET: username=ameye+22@chiefsoft.com -- 05:55:27.190 INFO [3760]: COREGRADE is stopping... -- 05:55:27.190 DEBUG [3760]: Closing database connection -- 05:55:27.190 SQL [3760]: pgsql_close() -- 05:55:34.963 INFO [3759]: COREGRADE is starting... -- 05:55:34.963 INFO [3759]: Version from config: 1.0 -- 05:55:34.963 DEBUG [3759]: Connecting to database... -- 05:55:34.963 DEBUG [3759]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:55:34.963 SQL [3759]: pgsql_db_connect() -- 05:55:34.967 DEBUG [3759]: Database connection successful -- 05:55:34.967 INFO [3759]: _SERVER found -- 05:55:34.967 INFO [3759]: REMOTE_ADDR = 192.168.1.13 -- 05:55:34.967 INFO [3759]: SERVER_NAME = oameye.works.coregrade.com -- 05:55:34.967 INFO [3759]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=s3qse722in06thn92nv52mk28sdsl81j -- 05:55:34.967 INFO [3759]: QUERY_STRING = -- 05:55:34.967 INFO [3759]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:55:34.967 INFO [3759]: SystemStatus()09-09-********~************ -- 05:55:34.967 INFO [3759]: long coregrade_api_main(CVars in, CVars &out) -- 05:55:34.967 INFO [3759]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 05:55:34.967 INFO [3759]: account calls -- 05:55:34.967 INFO [3759]: account_calls() -- 05:55:34.967 FLOG_MAX [3759]: REQ_STRING(username) -- 05:55:34.967 FLOG_MAX [3759]: REQ_STRING(firstname) -- 05:55:34.967 FLOG_MAX [3759]: REQ_STRING(lastname) -- 05:55:34.967 FLOG_MAX [3759]: REQ_STRING(email) -- 05:55:34.967 FLOG_MAX [3759]: insert_db_record() -- 05:55:34.967 SQL [3759]: pgsql_exec() -- 05:55:34.967 SQL [3759]: About to run query: -- 05:55:34.967 SQL [3759]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ameye+22@chiefsoft.com','Olu','Amey','192.168.1.13','','ameye+22@chiefsoft.com','RS-163099648-823095296-691191808') -- 05:55:34.969 SQL [3759]: Affected rows: ERROR -- 05:55:34.969 FLOG_MAX [3759]: SELECT currval('members_pending_id_seq') -- 05:55:34.969 SQL [3759]: pgsql_query() -- 05:55:34.969 SQL [3759]: About to run query: -- 05:55:34.969 SQL [3759]: SELECT currval('members_pending_id_seq') -- 05:55:34.970 SQL [3759]: Found rows: 1 -- 05:55:34.970 SQL [3759]: pgsql_query() -- 05:55:34.970 SQL [3759]: About to run query: -- 05:55:34.970 SQL [3759]: UPDATE members SET password = md5('may12002') WHERE id = 10 -- 05:55:34.971 SQL [3759]: Found rows: 0 -- 05:55:34.971 SQL [3759]: Found rows: 0 -- 05:55:34.971 FLOG_MAX [3759]: long load_db_record( CVars &rec, const char * query, ... ) -- 05:55:34.971 SQL [3759]: pgsql_query() -- 05:55:34.971 SQL [3759]: About to run query: -- 05:55:34.971 SQL [3759]: SELECT * FROM members_pending WHERE id = 10 -- 05:55:34.971 SQL [3759]: Found rows: 0 -- 05:55:34.971 SQL [3759]: Found rows: 0 -- 05:55:34.972 FLOG_MAX [3759]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 05:55:34.972 FLOG_MAX [3759]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1692 bytes -- 05:55:34.972 FLOG_MAX [3759]: Returning from FormFile() -- 05:55:34.972 FLOG_MAX [3759]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 05:55:34.972 FLOG_MAX [3759]: ESMTP( smtp.google.com, savvy@chiefsoft.com, ) -- 05:55:34.972 FLOG_MAX [3759]: Empty recipient list -- 05:55:34.972 INFO [3759]: RET: action=11010 -- 05:55:34.972 INFO [3759]: RET: email=ameye+22@chiefsoft.com -- 05:55:34.972 INFO [3759]: RET: firstname=Olu -- 05:55:34.972 INFO [3759]: RET: lastname=Amey -- 05:55:34.972 INFO [3759]: RET: password=may12002 -- 05:55:34.972 INFO [3759]: RET: pending_id=10 -- 05:55:34.972 INFO [3759]: RET: pid=100 -- 05:55:34.972 INFO [3759]: RET: username=ameye+22@chiefsoft.com -- 05:55:34.974 INFO [3759]: COREGRADE is stopping... -- 05:55:34.974 DEBUG [3759]: Closing database connection -- 05:55:34.974 SQL [3759]: pgsql_close() -- 05:56:08.965 INFO [3698]: COREGRADE is starting... -- 05:56:08.965 INFO [3698]: Version from config: 1.0 -- 05:56:08.965 DEBUG [3698]: Connecting to database... -- 05:56:08.965 DEBUG [3698]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:56:08.965 SQL [3698]: pgsql_db_connect() -- 05:56:08.969 DEBUG [3698]: Database connection successful -- 05:56:08.969 INFO [3698]: _SERVER found -- 05:56:08.969 INFO [3698]: REMOTE_ADDR = 192.168.1.13 -- 05:56:08.969 INFO [3698]: SERVER_NAME = oameye.works.coregrade.com -- 05:56:08.969 INFO [3698]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=s3qse722in06thn92nv52mk28sdsl81j -- 05:56:08.969 INFO [3698]: QUERY_STRING = -- 05:56:08.969 INFO [3698]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:56:08.969 INFO [3698]: SystemStatus()09-09-********~************ -- 05:56:08.969 INFO [3698]: long coregrade_api_main(CVars in, CVars &out) -- 05:56:08.969 INFO [3698]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 05:56:08.969 INFO [3698]: account calls -- 05:56:08.969 INFO [3698]: account_calls() -- 05:56:08.969 FLOG_MAX [3698]: REQ_STRING(username) -- 05:56:08.970 FLOG_MAX [3698]: REQ_STRING(firstname) -- 05:56:08.970 FLOG_MAX [3698]: REQ_STRING(lastname) -- 05:56:08.970 FLOG_MAX [3698]: REQ_STRING(email) -- 05:56:08.970 FLOG_MAX [3698]: insert_db_record() -- 05:56:08.970 SQL [3698]: pgsql_exec() -- 05:56:08.970 SQL [3698]: About to run query: -- 05:56:08.970 SQL [3698]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ameye+22@chiefsoft.com','Olu','Amey','192.168.1.13','','ameye+22@chiefsoft.com','RS-512144896-1940775936-1018488832') -- 05:56:08.972 SQL [3698]: Affected rows: ERROR -- 05:56:08.972 FLOG_MAX [3698]: SELECT currval('members_pending_id_seq') -- 05:56:08.972 SQL [3698]: pgsql_query() -- 05:56:08.972 SQL [3698]: About to run query: -- 05:56:08.972 SQL [3698]: SELECT currval('members_pending_id_seq') -- 05:56:08.972 SQL [3698]: Found rows: 1 -- 05:56:08.972 SQL [3698]: pgsql_query() -- 05:56:08.972 SQL [3698]: About to run query: -- 05:56:08.972 SQL [3698]: UPDATE members SET password = md5('may12002') WHERE id = 11 -- 05:56:08.973 SQL [3698]: Found rows: 0 -- 05:56:08.973 SQL [3698]: Found rows: 0 -- 05:56:08.973 FLOG_MAX [3698]: long load_db_record( CVars &rec, const char * query, ... ) -- 05:56:08.973 SQL [3698]: pgsql_query() -- 05:56:08.973 SQL [3698]: About to run query: -- 05:56:08.973 SQL [3698]: SELECT * FROM members_pending WHERE id = 11 -- 05:56:08.974 SQL [3698]: Found rows: 0 -- 05:56:08.974 SQL [3698]: Found rows: 0 -- 05:56:08.974 FLOG_MAX [3698]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 05:56:08.974 FLOG_MAX [3698]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1692 bytes -- 05:56:08.974 FLOG_MAX [3698]: Returning from FormFile() -- 05:56:08.974 FLOG_MAX [3698]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 05:56:08.974 FLOG_MAX [3698]: ESMTP( smtp.google.com, savvy@chiefsoft.com, ) -- 05:56:08.974 FLOG_MAX [3698]: Empty recipient list -- 05:56:08.974 INFO [3698]: RET: action=11010 -- 05:56:08.974 INFO [3698]: RET: email=ameye+22@chiefsoft.com -- 05:56:08.974 INFO [3698]: RET: firstname=Olu -- 05:56:08.974 INFO [3698]: RET: lastname=Amey -- 05:56:08.974 INFO [3698]: RET: password=may12002 -- 05:56:08.974 INFO [3698]: RET: pending_id=11 -- 05:56:08.974 INFO [3698]: RET: pid=100 -- 05:56:08.974 INFO [3698]: RET: username=ameye+22@chiefsoft.com -- 05:56:08.976 INFO [3698]: COREGRADE is stopping... -- 05:56:08.976 DEBUG [3698]: Closing database connection -- 05:56:08.976 SQL [3698]: pgsql_close() -- 05:57:16.100 INFO [3758]: COREGRADE is starting... -- 05:57:16.100 INFO [3758]: Version from config: 1.0 -- 05:57:16.100 DEBUG [3758]: Connecting to database... -- 05:57:16.100 DEBUG [3758]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:57:16.100 SQL [3758]: pgsql_db_connect() -- 05:57:16.104 DEBUG [3758]: Database connection successful -- 05:57:16.104 INFO [3758]: _SERVER found -- 05:57:16.104 INFO [3758]: REMOTE_ADDR = 192.168.1.13 -- 05:57:16.104 INFO [3758]: SERVER_NAME = oameye.works.coregrade.com -- 05:57:16.104 INFO [3758]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=s3qse722in06thn92nv52mk28sdsl81j -- 05:57:16.104 INFO [3758]: QUERY_STRING = -- 05:57:16.104 INFO [3758]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:57:16.104 INFO [3758]: SystemStatus()09-09-********~************ -- 05:57:16.104 INFO [3758]: long coregrade_api_main(CVars in, CVars &out) -- 05:57:16.104 INFO [3758]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 05:57:16.104 INFO [3758]: account calls -- 05:57:16.104 INFO [3758]: account_calls() -- 05:57:16.104 FLOG_MAX [3758]: REQ_STRING(username) -- 05:57:16.104 FLOG_MAX [3758]: REQ_STRING(firstname) -- 05:57:16.104 FLOG_MAX [3758]: REQ_STRING(lastname) -- 05:57:16.104 FLOG_MAX [3758]: REQ_STRING(email) -- 05:57:16.104 FLOG_MAX [3758]: insert_db_record() -- 05:57:16.105 SQL [3758]: pgsql_exec() -- 05:57:16.105 SQL [3758]: About to run query: -- 05:57:16.105 SQL [3758]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ameye+22@chiefsoft.com','Olu','Amey','192.168.1.13','','ameye+22@chiefsoft.com','RS-1885634048-816219136-1806956544') -- 05:57:16.107 SQL [3758]: Affected rows: ERROR -- 05:57:16.107 FLOG_MAX [3758]: SELECT currval('members_pending_id_seq') -- 05:57:16.107 SQL [3758]: pgsql_query() -- 05:57:16.107 SQL [3758]: About to run query: -- 05:57:16.107 SQL [3758]: SELECT currval('members_pending_id_seq') -- 05:57:16.107 SQL [3758]: Found rows: 1 -- 05:57:16.107 SQL [3758]: pgsql_query() -- 05:57:16.107 SQL [3758]: About to run query: -- 05:57:16.107 SQL [3758]: UPDATE members SET password = md5('may12002') WHERE id = 12 -- 05:57:16.108 SQL [3758]: Found rows: 0 -- 05:57:16.108 SQL [3758]: Found rows: 0 -- 05:57:16.108 FLOG_MAX [3758]: long load_db_record( CVars &rec, const char * query, ... ) -- 05:57:16.108 SQL [3758]: pgsql_query() -- 05:57:16.108 SQL [3758]: About to run query: -- 05:57:16.108 SQL [3758]: SELECT * FROM members_pending WHERE id = 12 -- 05:57:16.109 SQL [3758]: Found rows: 0 -- 05:57:16.109 SQL [3758]: Found rows: 0 -- 05:57:16.109 FLOG_MAX [3758]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 05:57:16.109 FLOG_MAX [3758]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1692 bytes -- 05:57:16.109 FLOG_MAX [3758]: Returning from FormFile() -- 05:57:16.109 FLOG_MAX [3758]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 05:57:16.109 FLOG_MAX [3758]: ESMTP( smtp.google.com, savvy@chiefsoft.com, ) -- 05:57:16.109 FLOG_MAX [3758]: Empty recipient list -- 05:57:16.109 INFO [3758]: RET: action=11010 -- 05:57:16.109 INFO [3758]: RET: email=ameye+22@chiefsoft.com -- 05:57:16.109 INFO [3758]: RET: firstname=Olu -- 05:57:16.109 INFO [3758]: RET: lastname=Amey -- 05:57:16.109 INFO [3758]: RET: password=may12002 -- 05:57:16.109 INFO [3758]: RET: pending_id=12 -- 05:57:16.109 INFO [3758]: RET: pid=100 -- 05:57:16.109 INFO [3758]: RET: username=ameye+22@chiefsoft.com -- 05:57:16.111 INFO [3758]: COREGRADE is stopping... -- 05:57:16.111 DEBUG [3758]: Closing database connection -- 05:57:16.111 SQL [3758]: pgsql_close() -- 05:57:59.369 INFO [3700]: COREGRADE is starting... -- 05:57:59.369 INFO [3700]: Version from config: 1.0 -- 05:57:59.369 DEBUG [3700]: Connecting to database... -- 05:57:59.369 DEBUG [3700]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:57:59.369 SQL [3700]: pgsql_db_connect() -- 05:57:59.373 DEBUG [3700]: Database connection successful -- 05:57:59.373 INFO [3700]: _SERVER found -- 05:57:59.373 INFO [3700]: REMOTE_ADDR = 192.168.1.13 -- 05:57:59.373 INFO [3700]: SERVER_NAME = oameye.works.coregrade.com -- 05:57:59.373 INFO [3700]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=s3qse722in06thn92nv52mk28sdsl81j -- 05:57:59.373 INFO [3700]: QUERY_STRING = -- 05:57:59.373 INFO [3700]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:57:59.374 INFO [3700]: SystemStatus()09-09-********~************ -- 05:57:59.374 INFO [3700]: long coregrade_api_main(CVars in, CVars &out) -- 05:57:59.374 INFO [3700]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 05:57:59.374 INFO [3700]: account calls -- 05:57:59.374 INFO [3700]: account_calls() -- 05:57:59.374 FLOG_MAX [3700]: REQ_STRING(username) -- 05:57:59.374 FLOG_MAX [3700]: REQ_STRING(firstname) -- 05:57:59.374 FLOG_MAX [3700]: REQ_STRING(lastname) -- 05:57:59.374 FLOG_MAX [3700]: REQ_STRING(email) -- 05:57:59.374 FLOG_MAX [3700]: insert_db_record() -- 05:57:59.374 SQL [3700]: pgsql_exec() -- 05:57:59.374 SQL [3700]: About to run query: -- 05:57:59.374 SQL [3700]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ameye+22@chiefsoft.com','Olu','Amey','192.168.1.13','','ameye+22@chiefsoft.com','RS-1576722944-358089728-2088536064') -- 05:57:59.376 SQL [3700]: Affected rows: ERROR -- 05:57:59.376 FLOG_MAX [3700]: SELECT currval('members_pending_id_seq') -- 05:57:59.376 SQL [3700]: pgsql_query() -- 05:57:59.376 SQL [3700]: About to run query: -- 05:57:59.376 SQL [3700]: SELECT currval('members_pending_id_seq') -- 05:57:59.376 SQL [3700]: Found rows: 1 -- 05:57:59.376 SQL [3700]: pgsql_query() -- 05:57:59.376 SQL [3700]: About to run query: -- 05:57:59.376 SQL [3700]: UPDATE members SET password = md5('may12002') WHERE id = 13 -- 05:57:59.377 SQL [3700]: Found rows: 0 -- 05:57:59.377 SQL [3700]: Found rows: 0 -- 05:57:59.377 FLOG_MAX [3700]: long load_db_record( CVars &rec, const char * query, ... ) -- 05:57:59.378 SQL [3700]: pgsql_query() -- 05:57:59.378 SQL [3700]: About to run query: -- 05:57:59.378 SQL [3700]: SELECT * FROM members_pending WHERE id = 13 -- 05:57:59.378 SQL [3700]: Found rows: 0 -- 05:57:59.378 SQL [3700]: Found rows: 0 -- 05:57:59.378 FLOG_MAX [3700]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 05:57:59.378 FLOG_MAX [3700]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1692 bytes -- 05:57:59.378 FLOG_MAX [3700]: Returning from FormFile() -- 05:57:59.378 FLOG_MAX [3700]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 05:57:59.378 FLOG_MAX [3700]: ESMTP( smtp.google.com, savvy@chiefsoft.com, ) -- 05:57:59.378 FLOG_MAX [3700]: Empty recipient list -- 05:57:59.378 INFO [3700]: RET: action=11010 -- 05:57:59.378 INFO [3700]: RET: email=ameye+22@chiefsoft.com -- 05:57:59.378 INFO [3700]: RET: firstname=Olu -- 05:57:59.378 INFO [3700]: RET: lastname=Amey -- 05:57:59.378 INFO [3700]: RET: password=may12002 -- 05:57:59.378 INFO [3700]: RET: pending_id=13 -- 05:57:59.378 INFO [3700]: RET: pid=100 -- 05:57:59.378 INFO [3700]: RET: username=ameye+22@chiefsoft.com -- 05:57:59.380 INFO [3700]: COREGRADE is stopping... -- 05:57:59.380 DEBUG [3700]: Closing database connection -- 05:57:59.380 SQL [3700]: pgsql_close() -- 05:58:45.482 INFO [3696]: COREGRADE is starting... -- 05:58:45.483 INFO [3696]: Version from config: 1.0 -- 05:58:45.483 DEBUG [3696]: Connecting to database... -- 05:58:45.483 DEBUG [3696]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:58:45.483 SQL [3696]: pgsql_db_connect() -- 05:58:45.487 DEBUG [3696]: Database connection successful -- 05:58:45.487 INFO [3696]: _SERVER found -- 05:58:45.487 INFO [3696]: REMOTE_ADDR = 192.168.1.13 -- 05:58:45.487 INFO [3696]: SERVER_NAME = oameye.works.coregrade.com -- 05:58:45.487 INFO [3696]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=s3qse722in06thn92nv52mk28sdsl81j -- 05:58:45.487 INFO [3696]: QUERY_STRING = -- 05:58:45.487 INFO [3696]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:58:45.487 INFO [3696]: SystemStatus()09-09-********~************ -- 05:58:45.487 INFO [3696]: long coregrade_api_main(CVars in, CVars &out) -- 05:58:45.487 INFO [3696]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 05:58:45.487 INFO [3696]: /long coregrade_api_main(CVars in, CVars &out) -- 05:58:45.487 INFO [3696]: RET: status=Unknown action -- 05:58:45.488 INFO [3696]: COREGRADE is stopping... -- 05:58:45.488 DEBUG [3696]: Closing database connection -- 05:58:45.488 SQL [3696]: pgsql_close() -- 05:59:03.097 INFO [3697]: COREGRADE is starting... -- 05:59:03.098 INFO [3697]: Version from config: 1.0 -- 05:59:03.098 DEBUG [3697]: Connecting to database... -- 05:59:03.098 DEBUG [3697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:59:03.098 SQL [3697]: pgsql_db_connect() -- 05:59:03.102 DEBUG [3697]: Database connection successful -- 05:59:03.102 INFO [3697]: _SERVER found -- 05:59:03.102 INFO [3697]: REMOTE_ADDR = 192.168.1.13 -- 05:59:03.102 INFO [3697]: SERVER_NAME = oameye.works.coregrade.com -- 05:59:03.102 INFO [3697]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=s3qse722in06thn92nv52mk28sdsl81j -- 05:59:03.102 INFO [3697]: QUERY_STRING = -- 05:59:03.102 INFO [3697]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:59:03.102 INFO [3697]: SystemStatus()09-09-********~************ -- 05:59:03.102 INFO [3697]: long coregrade_api_main(CVars in, CVars &out) -- 05:59:03.102 INFO [3697]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 05:59:03.102 INFO [3697]: account calls -- 05:59:03.102 INFO [3697]: account_calls() -- 05:59:03.102 FLOG_MAX [3697]: REQ_STRING(username) -- 05:59:03.102 FLOG_MAX [3697]: REQ_STRING(firstname) -- 05:59:03.102 FLOG_MAX [3697]: REQ_STRING(lastname) -- 05:59:03.102 FLOG_MAX [3697]: REQ_STRING(email) -- 05:59:03.102 FLOG_MAX [3697]: insert_db_record() -- 05:59:03.102 SQL [3697]: pgsql_exec() -- 05:59:03.102 SQL [3697]: About to run query: -- 05:59:03.102 SQL [3697]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ameye+33@chiefsoft.com','Olu','Amey','192.168.1.13','','ameye+33@chiefsoft.com','RS-782478848-2079669248-1496041472') -- 05:59:03.104 SQL [3697]: PQcmdTuples: 1 -- 05:59:03.105 SQL [3697]: Affected rows: 1 -- 05:59:03.105 FLOG_MAX [3697]: SELECT currval('members_pending_id_seq') -- 05:59:03.105 SQL [3697]: pgsql_query() -- 05:59:03.105 SQL [3697]: About to run query: -- 05:59:03.105 SQL [3697]: SELECT currval('members_pending_id_seq') -- 05:59:03.105 SQL [3697]: Found rows: 1 -- 05:59:03.105 SQL [3697]: pgsql_query() -- 05:59:03.105 SQL [3697]: About to run query: -- 05:59:03.105 SQL [3697]: UPDATE members SET password = md5('may12002') WHERE id = 14 -- 05:59:03.106 SQL [3697]: Found rows: 0 -- 05:59:03.106 SQL [3697]: Found rows: 0 -- 05:59:03.106 FLOG_MAX [3697]: long load_db_record( CVars &rec, const char * query, ... ) -- 05:59:03.106 SQL [3697]: pgsql_query() -- 05:59:03.106 SQL [3697]: About to run query: -- 05:59:03.106 SQL [3697]: SELECT * FROM members_pending WHERE id = 14 -- 05:59:03.107 SQL [3697]: Found rows: 1 -- 05:59:03.107 FLOG_MAX [3697]: load_db_record(SELECT * FROM members_pending WHERE id = 14 ) num_cols=14 -- 05:59:03.107 FLOG_MAX [3697]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 05:59:03.107 FLOG_MAX [3697]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1692 bytes -- 05:59:03.107 FLOG_MAX [3697]: Returning from FormFile() -- 05:59:03.107 FLOG_MAX [3697]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 05:59:03.107 FLOG_MAX [3697]: ESMTP( smtp.google.com, savvy@chiefsoft.com, ameye+33@chiefsoft.com ) -- 05:59:03.107 FLOG_MAX [3697]: Prepare body -- 05:59:03.107 FLOG_MAX [3697]: Locate & extract subject -- 05:59:03.107 FLOG_MAX [3697]: Found subject: CoreGrade - Pending Signup - Verify ameye+33@chiefsoft.com -- 05:59:03.107 FLOG_MAX [3697]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp smtp.google.com -f savvy@chiefsoft.com -t ameye+33@chiefsoft.com -d chiefsoft.com -name 'CoreGrade Beta' +cc +bcc -v -port 25 -auth-plain -user savvy@chiefsoft.com -pass may12002! -sub 'CoreGrade - Pending Signup - Verify ameye+33@chiefsoft.com' -M ' - - - -
-
- - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-782478848-2079669248-1496041472 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - -' -- 05:59:03.159 FLOG_MAX [3697]: - -END OF PIPE OUTPUT - - -- 05:59:03.159 FLOG_MAX [3697]: /ESMTP() -- 05:59:03.159 INFO [3697]: RET: action=11010 -- 05:59:03.159 INFO [3697]: RET: email=ameye+33@chiefsoft.com -- 05:59:03.159 INFO [3697]: RET: firstname=Olu -- 05:59:03.159 INFO [3697]: RET: lastname=Amey -- 05:59:03.159 INFO [3697]: RET: password=may12002 -- 05:59:03.159 INFO [3697]: RET: pending_id=14 -- 05:59:03.159 INFO [3697]: RET: pid=100 -- 05:59:03.159 INFO [3697]: RET: username=ameye+33@chiefsoft.com -- 05:59:03.161 INFO [3697]: COREGRADE is stopping... -- 05:59:03.161 DEBUG [3697]: Closing database connection -- 05:59:03.161 SQL [3697]: pgsql_close() -- 06:00:57.486 INFO [3756]: COREGRADE is starting... -- 06:00:57.486 INFO [3756]: Version from config: 1.0 -- 06:00:57.486 DEBUG [3756]: Connecting to database... -- 06:00:57.486 DEBUG [3756]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:00:57.486 SQL [3756]: pgsql_db_connect() -- 06:00:57.490 DEBUG [3756]: Database connection successful -- 06:00:57.490 INFO [3756]: _SERVER found -- 06:00:57.490 INFO [3756]: REMOTE_ADDR = 192.168.1.13 -- 06:00:57.490 INFO [3756]: SERVER_NAME = oameye.works.coregrade.com -- 06:00:57.490 INFO [3756]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=s3qse722in06thn92nv52mk28sdsl81j -- 06:00:57.490 INFO [3756]: QUERY_STRING = -- 06:00:57.490 INFO [3756]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:00:57.490 INFO [3756]: SystemStatus()09-09-********~************ -- 06:00:57.490 INFO [3756]: long coregrade_api_main(CVars in, CVars &out) -- 06:00:57.490 INFO [3756]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 06:00:57.490 INFO [3756]: /long coregrade_api_main(CVars in, CVars &out) -- 06:00:57.490 INFO [3756]: RET: status=Unknown action -- 06:00:57.492 INFO [3756]: COREGRADE is stopping... -- 06:00:57.492 DEBUG [3756]: Closing database connection -- 06:00:57.492 SQL [3756]: pgsql_close() -- 06:01:16.095 INFO [3757]: COREGRADE is starting... -- 06:01:16.095 INFO [3757]: Version from config: 1.0 -- 06:01:16.095 DEBUG [3757]: Connecting to database... -- 06:01:16.095 DEBUG [3757]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:01:16.095 SQL [3757]: pgsql_db_connect() -- 06:01:16.099 DEBUG [3757]: Database connection successful -- 06:01:16.099 INFO [3757]: _SERVER found -- 06:01:16.099 INFO [3757]: REMOTE_ADDR = 192.168.1.13 -- 06:01:16.099 INFO [3757]: SERVER_NAME = oameye.works.coregrade.com -- 06:01:16.099 INFO [3757]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=qp27v8bu0n1k1gv3be9hjeqema1lmi3q -- 06:01:16.099 INFO [3757]: QUERY_STRING = -- 06:01:16.099 INFO [3757]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:01:16.099 INFO [3757]: SystemStatus()09-09-********~************ -- 06:01:16.099 INFO [3757]: long coregrade_api_main(CVars in, CVars &out) -- 06:01:16.099 INFO [3757]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 06:01:16.099 INFO [3757]: account calls -- 06:01:16.099 INFO [3757]: account_calls() -- 06:01:16.099 FLOG_MAX [3757]: REQ_STRING(username) -- 06:01:16.099 FLOG_MAX [3757]: REQ_STRING(firstname) -- 06:01:16.099 FLOG_MAX [3757]: REQ_STRING(lastname) -- 06:01:16.099 FLOG_MAX [3757]: REQ_STRING(email) -- 06:01:16.099 FLOG_MAX [3757]: insert_db_record() -- 06:01:16.099 SQL [3757]: pgsql_exec() -- 06:01:16.099 SQL [3757]: About to run query: -- 06:01:16.099 SQL [3757]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ameye+44@chiefsoft.com','Olu','Amey','192.168.1.13','','ameye+44@chiefsoft.com','RS-1126730240-1781457920-1569462272') -- 06:01:16.102 SQL [3757]: PQcmdTuples: 1 -- 06:01:16.102 SQL [3757]: Affected rows: 1 -- 06:01:16.102 FLOG_MAX [3757]: SELECT currval('members_pending_id_seq') -- 06:01:16.102 SQL [3757]: pgsql_query() -- 06:01:16.102 SQL [3757]: About to run query: -- 06:01:16.102 SQL [3757]: SELECT currval('members_pending_id_seq') -- 06:01:16.102 SQL [3757]: Found rows: 1 -- 06:01:16.102 SQL [3757]: pgsql_query() -- 06:01:16.102 SQL [3757]: About to run query: -- 06:01:16.102 SQL [3757]: UPDATE members SET password = md5('may12002') WHERE id = 15 -- 06:01:16.103 SQL [3757]: Found rows: 0 -- 06:01:16.103 SQL [3757]: Found rows: 0 -- 06:01:16.103 FLOG_MAX [3757]: long load_db_record( CVars &rec, const char * query, ... ) -- 06:01:16.103 SQL [3757]: pgsql_query() -- 06:01:16.103 SQL [3757]: About to run query: -- 06:01:16.103 SQL [3757]: SELECT * FROM members_pending WHERE id = 15 -- 06:01:16.104 SQL [3757]: Found rows: 1 -- 06:01:16.104 FLOG_MAX [3757]: load_db_record(SELECT * FROM members_pending WHERE id = 15 ) num_cols=14 -- 06:01:16.104 FLOG_MAX [3757]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 06:01:16.104 FLOG_MAX [3757]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1692 bytes -- 06:01:16.104 FLOG_MAX [3757]: Returning from FormFile() -- 06:01:16.104 FLOG_MAX [3757]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 06:01:16.104 FLOG_MAX [3757]: ESMTP( smtp.google.com, savvy@chiefsoft.com, ameye+44@chiefsoft.com ) -- 06:01:16.104 FLOG_MAX [3757]: Prepare body -- 06:01:16.104 FLOG_MAX [3757]: Locate & extract subject -- 06:01:16.104 FLOG_MAX [3757]: Found subject: CoreGrade - Pending Signup - Verify ameye+44@chiefsoft.com -- 06:01:16.104 FLOG_MAX [3757]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp smtp.google.com -f savvy@chiefsoft.com -t ameye+44@chiefsoft.com -d chiefsoft.com -name 'CoreGrade Beta' +cc +bcc -v -port 25 -auth-plain -user savvy@chiefsoft.com -pass may12002! -sub 'CoreGrade - Pending Signup - Verify ameye+44@chiefsoft.com' -M ' - - - -
-
- - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-1126730240-1781457920-1569462272 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - -' -- 06:01:16.134 FLOG_MAX [3757]: - -END OF PIPE OUTPUT - - -- 06:01:16.134 FLOG_MAX [3757]: /ESMTP() -- 06:01:16.134 INFO [3757]: RET: action=11010 -- 06:01:16.134 INFO [3757]: RET: email=ameye+44@chiefsoft.com -- 06:01:16.134 INFO [3757]: RET: firstname=Olu -- 06:01:16.134 INFO [3757]: RET: lastname=Amey -- 06:01:16.134 INFO [3757]: RET: password=may12002 -- 06:01:16.134 INFO [3757]: RET: pending_id=15 -- 06:01:16.134 INFO [3757]: RET: pid=100 -- 06:01:16.134 INFO [3757]: RET: username=ameye+44@chiefsoft.com -- 06:01:16.137 INFO [3757]: COREGRADE is stopping... -- 06:01:16.137 DEBUG [3757]: Closing database connection -- 06:01:16.137 SQL [3757]: pgsql_close() -- 06:01:17.709 INFO [3757]: COREGRADE is starting... -- 06:01:17.709 INFO [3757]: Version from config: 1.0 -- 06:01:17.709 DEBUG [3757]: Connecting to database... -- 06:01:17.709 DEBUG [3757]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:01:17.709 SQL [3757]: pgsql_db_connect() -- 06:01:17.713 DEBUG [3757]: Database connection successful -- 06:01:17.713 INFO [3757]: _SERVER found -- 06:01:17.713 INFO [3757]: REMOTE_ADDR = 192.168.1.13 -- 06:01:17.713 INFO [3757]: SERVER_NAME = oameye.works.coregrade.com -- 06:01:17.713 INFO [3757]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=qp27v8bu0n1k1gv3be9hjeqema1lmi3q -- 06:01:17.713 INFO [3757]: QUERY_STRING = -- 06:01:17.713 INFO [3757]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:01:17.713 INFO [3757]: SystemStatus()09-09-********~************ -- 06:01:17.713 INFO [3757]: long coregrade_api_main(CVars in, CVars &out) -- 06:01:17.713 INFO [3757]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 06:01:17.713 INFO [3757]: /long coregrade_api_main(CVars in, CVars &out) -- 06:01:17.713 INFO [3757]: RET: status=Unknown action -- 06:01:17.714 INFO [3757]: COREGRADE is stopping... -- 06:01:17.714 DEBUG [3757]: Closing database connection -- 06:01:17.714 SQL [3757]: pgsql_close() -- 06:01:25.578 INFO [3760]: COREGRADE is starting... -- 06:01:25.578 INFO [3760]: Version from config: 1.0 -- 06:01:25.578 DEBUG [3760]: Connecting to database... -- 06:01:25.578 DEBUG [3760]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:01:25.578 SQL [3760]: pgsql_db_connect() -- 06:01:25.582 DEBUG [3760]: Database connection successful -- 06:01:25.582 INFO [3760]: _SERVER found -- 06:01:25.582 INFO [3760]: REMOTE_ADDR = 192.168.1.13 -- 06:01:25.582 INFO [3760]: SERVER_NAME = oameye.works.coregrade.com -- 06:01:25.582 INFO [3760]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=qp27v8bu0n1k1gv3be9hjeqema1lmi3q -- 06:01:25.582 INFO [3760]: QUERY_STRING = -- 06:01:25.582 INFO [3760]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:01:25.582 INFO [3760]: SystemStatus()09-09-********~************ -- 06:01:25.582 INFO [3760]: long coregrade_api_main(CVars in, CVars &out) -- 06:01:25.582 INFO [3760]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 06:01:25.582 INFO [3760]: account calls -- 06:01:25.582 INFO [3760]: account_calls() -- 06:01:25.582 FLOG_MAX [3760]: REQ_STRING(username) -- 06:01:25.583 FLOG_MAX [3760]: REQ_STRING(firstname) -- 06:01:25.583 FLOG_MAX [3760]: REQ_STRING(lastname) -- 06:01:25.583 FLOG_MAX [3760]: REQ_STRING(email) -- 06:01:25.583 FLOG_MAX [3760]: insert_db_record() -- 06:01:25.583 SQL [3760]: pgsql_exec() -- 06:01:25.583 SQL [3760]: About to run query: -- 06:01:25.583 SQL [3760]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ameye@chiefsoft.com','Olu','Amey','192.168.1.13','','ameye@chiefsoft.com','RS-1663862784-2087698432-1071775744') -- 06:01:25.622 SQL [3760]: PQcmdTuples: 1 -- 06:01:25.622 SQL [3760]: Affected rows: 1 -- 06:01:25.622 FLOG_MAX [3760]: SELECT currval('members_pending_id_seq') -- 06:01:25.622 SQL [3760]: pgsql_query() -- 06:01:25.622 SQL [3760]: About to run query: -- 06:01:25.622 SQL [3760]: SELECT currval('members_pending_id_seq') -- 06:01:25.622 SQL [3760]: Found rows: 1 -- 06:01:25.622 SQL [3760]: pgsql_query() -- 06:01:25.622 SQL [3760]: About to run query: -- 06:01:25.622 SQL [3760]: UPDATE members SET password = md5('242252526') WHERE id = 16 -- 06:01:25.623 SQL [3760]: Found rows: 0 -- 06:01:25.623 SQL [3760]: Found rows: 0 -- 06:01:25.623 FLOG_MAX [3760]: long load_db_record( CVars &rec, const char * query, ... ) -- 06:01:25.623 SQL [3760]: pgsql_query() -- 06:01:25.623 SQL [3760]: About to run query: -- 06:01:25.623 SQL [3760]: SELECT * FROM members_pending WHERE id = 16 -- 06:01:25.624 SQL [3760]: Found rows: 1 -- 06:01:25.624 FLOG_MAX [3760]: load_db_record(SELECT * FROM members_pending WHERE id = 16 ) num_cols=14 -- 06:01:25.624 FLOG_MAX [3760]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 06:01:25.624 FLOG_MAX [3760]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1692 bytes -- 06:01:25.624 FLOG_MAX [3760]: Returning from FormFile() -- 06:01:25.624 FLOG_MAX [3760]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 06:01:25.624 FLOG_MAX [3760]: ESMTP( smtp.google.com, savvy@chiefsoft.com, ameye@chiefsoft.com ) -- 06:01:25.624 FLOG_MAX [3760]: Prepare body -- 06:01:25.624 FLOG_MAX [3760]: Locate & extract subject -- 06:01:25.624 FLOG_MAX [3760]: Found subject: CoreGrade - Pending Signup - Verify ameye@chiefsoft.com -- 06:01:25.624 FLOG_MAX [3760]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp smtp.google.com -f savvy@chiefsoft.com -t ameye@chiefsoft.com -d chiefsoft.com -name 'CoreGrade Beta' +cc +bcc -v -port 25 -auth-plain -user savvy@chiefsoft.com -pass may12002! -sub 'CoreGrade - Pending Signup - Verify ameye@chiefsoft.com' -M ' - - - -
-
- - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-1663862784-2087698432-1071775744 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - -' -- 06:01:25.636 FLOG_MAX [3760]: - -END OF PIPE OUTPUT - - -- 06:01:25.636 FLOG_MAX [3760]: /ESMTP() -- 06:01:25.636 INFO [3760]: RET: action=11010 -- 06:01:25.636 INFO [3760]: RET: email=ameye@chiefsoft.com -- 06:01:25.636 INFO [3760]: RET: firstname=Olu -- 06:01:25.636 INFO [3760]: RET: lastname=Amey -- 06:01:25.636 INFO [3760]: RET: password=242252526 -- 06:01:25.636 INFO [3760]: RET: pending_id=16 -- 06:01:25.636 INFO [3760]: RET: pid=100 -- 06:01:25.636 INFO [3760]: RET: username=ameye@chiefsoft.com -- 06:01:25.639 INFO [3760]: COREGRADE is stopping... -- 06:01:25.639 DEBUG [3760]: Closing database connection -- 06:01:25.639 SQL [3760]: pgsql_close() -- 06:01:28.351 INFO [3760]: COREGRADE is starting... -- 06:01:28.352 INFO [3760]: Version from config: 1.0 -- 06:01:28.352 DEBUG [3760]: Connecting to database... -- 06:01:28.352 DEBUG [3760]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:01:28.352 SQL [3760]: pgsql_db_connect() -- 06:01:28.356 DEBUG [3760]: Database connection successful -- 06:01:28.356 INFO [3760]: _SERVER found -- 06:01:28.356 INFO [3760]: REMOTE_ADDR = 192.168.1.13 -- 06:01:28.356 INFO [3760]: SERVER_NAME = oameye.works.coregrade.com -- 06:01:28.356 INFO [3760]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=qp27v8bu0n1k1gv3be9hjeqema1lmi3q -- 06:01:28.356 INFO [3760]: QUERY_STRING = -- 06:01:28.356 INFO [3760]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:01:28.356 INFO [3760]: SystemStatus()09-09-********~************ -- 06:01:28.356 INFO [3760]: long coregrade_api_main(CVars in, CVars &out) -- 06:01:28.356 INFO [3760]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 06:01:28.356 INFO [3760]: /long coregrade_api_main(CVars in, CVars &out) -- 06:01:28.356 INFO [3760]: RET: status=Unknown action -- 06:01:28.357 INFO [3760]: COREGRADE is stopping... -- 06:01:28.357 DEBUG [3760]: Closing database connection -- 06:01:28.357 SQL [3760]: pgsql_close() -- 06:01:57.166 INFO [3759]: COREGRADE is starting... -- 06:01:57.167 INFO [3759]: Version from config: 1.0 -- 06:01:57.167 DEBUG [3759]: Connecting to database... -- 06:01:57.167 DEBUG [3759]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:01:57.167 SQL [3759]: pgsql_db_connect() -- 06:01:57.171 DEBUG [3759]: Database connection successful -- 06:01:57.171 INFO [3759]: _SERVER found -- 06:01:57.171 INFO [3759]: REMOTE_ADDR = 192.168.1.13 -- 06:01:57.171 INFO [3759]: SERVER_NAME = oameye.works.coregrade.com -- 06:01:57.171 INFO [3759]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=qp27v8bu0n1k1gv3be9hjeqema1lmi3q -- 06:01:57.171 INFO [3759]: QUERY_STRING = -- 06:01:57.171 INFO [3759]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:01:57.171 INFO [3759]: SystemStatus()09-09-********~************ -- 06:01:57.171 INFO [3759]: long coregrade_api_main(CVars in, CVars &out) -- 06:01:57.171 INFO [3759]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 06:01:57.171 INFO [3759]: account calls -- 06:01:57.171 INFO [3759]: account_calls() -- 06:01:57.171 FLOG_MAX [3759]: REQ_STRING(username) -- 06:01:57.171 FLOG_MAX [3759]: REQ_STRING(firstname) -- 06:01:57.171 FLOG_MAX [3759]: REQ_STRING(lastname) -- 06:01:57.171 FLOG_MAX [3759]: REQ_STRING(email) -- 06:01:57.171 FLOG_MAX [3759]: insert_db_record() -- 06:01:57.171 SQL [3759]: pgsql_exec() -- 06:01:57.171 SQL [3759]: About to run query: -- 06:01:57.171 SQL [3759]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ameye+11@chiefsoft.com','Olu','Ameye','192.168.1.13','','ameye+11@chiefsoft.com','RS-1459693312-570420992-1019770624') -- 06:01:57.173 SQL [3759]: Affected rows: ERROR -- 06:01:57.173 FLOG_MAX [3759]: SELECT currval('members_pending_id_seq') -- 06:01:57.173 SQL [3759]: pgsql_query() -- 06:01:57.173 SQL [3759]: About to run query: -- 06:01:57.173 SQL [3759]: SELECT currval('members_pending_id_seq') -- 06:01:57.174 SQL [3759]: Found rows: 1 -- 06:01:57.174 SQL [3759]: pgsql_query() -- 06:01:57.174 SQL [3759]: About to run query: -- 06:01:57.174 SQL [3759]: UPDATE members SET password = md5('may12002') WHERE id = 17 -- 06:01:57.175 SQL [3759]: Found rows: 0 -- 06:01:57.175 SQL [3759]: Found rows: 0 -- 06:01:57.175 FLOG_MAX [3759]: long load_db_record( CVars &rec, const char * query, ... ) -- 06:01:57.175 SQL [3759]: pgsql_query() -- 06:01:57.175 SQL [3759]: About to run query: -- 06:01:57.175 SQL [3759]: SELECT * FROM members_pending WHERE id = 17 -- 06:01:57.175 SQL [3759]: Found rows: 0 -- 06:01:57.175 SQL [3759]: Found rows: 0 -- 06:01:57.175 FLOG_MAX [3759]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 06:01:57.175 FLOG_MAX [3759]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1692 bytes -- 06:01:57.175 FLOG_MAX [3759]: Returning from FormFile() -- 06:01:57.175 FLOG_MAX [3759]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 06:01:57.175 FLOG_MAX [3759]: ESMTP( smtp.google.com, savvy@chiefsoft.com, ) -- 06:01:57.175 FLOG_MAX [3759]: Empty recipient list -- 06:01:57.175 INFO [3759]: RET: action=11010 -- 06:01:57.175 INFO [3759]: RET: email=ameye+11@chiefsoft.com -- 06:01:57.175 INFO [3759]: RET: firstname=Olu -- 06:01:57.175 INFO [3759]: RET: lastname=Ameye -- 06:01:57.175 INFO [3759]: RET: password=may12002 -- 06:01:57.175 INFO [3759]: RET: pending_id=17 -- 06:01:57.175 INFO [3759]: RET: pid=100 -- 06:01:57.175 INFO [3759]: RET: username=ameye+11@chiefsoft.com -- 06:01:57.177 INFO [3759]: COREGRADE is stopping... -- 06:01:57.177 DEBUG [3759]: Closing database connection -- 06:01:57.177 SQL [3759]: pgsql_close() -- 06:23:49.232 INFO [7239]: COREGRADE is starting... -- 06:23:49.232 INFO [7239]: Version from config: 1.0 -- 06:23:49.232 DEBUG [7239]: Connecting to database... -- 06:23:49.232 DEBUG [7239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:23:49.232 SQL [7239]: pgsql_db_connect() -- 06:23:49.237 DEBUG [7239]: Database connection successful -- 06:23:49.237 INFO [7239]: _SERVER found -- 06:23:49.237 INFO [7239]: REMOTE_ADDR = 192.168.1.13 -- 06:23:49.237 INFO [7239]: SERVER_NAME = oameye.works.coregrade.com -- 06:23:49.237 INFO [7239]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=qp27v8bu0n1k1gv3be9hjeqema1lmi3q -- 06:23:49.237 INFO [7239]: QUERY_STRING = -- 06:23:49.237 INFO [7239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:23:49.237 INFO [7239]: SystemStatus()09-09-********~************ -- 06:23:49.237 INFO [7239]: long coregrade_api_main(CVars in, CVars &out) -- 06:23:49.237 INFO [7239]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 06:23:49.237 INFO [7239]: /long coregrade_api_main(CVars in, CVars &out) -- 06:23:49.237 INFO [7239]: RET: status=Unknown action -- 06:23:49.239 INFO [7239]: COREGRADE is stopping... -- 06:23:49.239 DEBUG [7239]: Closing database connection -- 06:23:49.239 SQL [7239]: pgsql_close() -- 06:24:10.903 INFO [7242]: COREGRADE is starting... -- 06:24:10.903 INFO [7242]: Version from config: 1.0 -- 06:24:10.903 DEBUG [7242]: Connecting to database... -- 06:24:10.903 DEBUG [7242]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:24:10.903 SQL [7242]: pgsql_db_connect() -- 06:24:10.907 DEBUG [7242]: Database connection successful -- 06:24:10.907 INFO [7242]: _SERVER found -- 06:24:10.907 INFO [7242]: REMOTE_ADDR = 192.168.1.13 -- 06:24:10.907 INFO [7242]: SERVER_NAME = oameye.works.coregrade.com -- 06:24:10.907 INFO [7242]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3i4d1t12bgs36r8m0vjbg60u6humkj9k -- 06:24:10.907 INFO [7242]: QUERY_STRING = -- 06:24:10.907 INFO [7242]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:24:10.907 INFO [7242]: SystemStatus()09-09-********~************ -- 06:24:10.907 INFO [7242]: long coregrade_api_main(CVars in, CVars &out) -- 06:24:10.907 INFO [7242]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 06:24:10.907 INFO [7242]: account calls -- 06:24:10.907 INFO [7242]: account_calls() -- 06:24:10.907 FLOG_MAX [7242]: REQ_STRING(username) -- 06:24:10.908 FLOG_MAX [7242]: REQ_STRING(firstname) -- 06:24:10.908 FLOG_MAX [7242]: REQ_STRING(lastname) -- 06:24:10.908 FLOG_MAX [7242]: REQ_STRING(email) -- 06:24:10.908 SQL [7242]: pgsql_query() -- 06:24:10.908 SQL [7242]: About to run query: -- 06:24:10.908 SQL [7242]: SELECT * FROM members_trips WHERE member_id = 0 AND status = 1 ORDER BY trip_date DESC -- 06:24:10.908 SQL [7242]: Found rows: ERROR -- 06:24:10.909 FLOG_MAX [7242]: insert_db_record() -- 06:24:10.909 SQL [7242]: pgsql_exec() -- 06:24:10.909 SQL [7242]: About to run query: -- 06:24:10.909 SQL [7242]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ameye+11@chiefsoft.com','Olu','Amey','192.168.1.13','','ameye+11@chiefsoft.com','RS-1407983616-595853312-813694976') -- 06:24:10.910 SQL [7242]: Affected rows: ERROR -- 06:24:10.910 FLOG_MAX [7242]: SELECT currval('members_pending_id_seq') -- 06:24:10.910 SQL [7242]: pgsql_query() -- 06:24:10.910 SQL [7242]: About to run query: -- 06:24:10.910 SQL [7242]: SELECT currval('members_pending_id_seq') -- 06:24:10.911 SQL [7242]: Found rows: 1 -- 06:24:10.911 SQL [7242]: pgsql_query() -- 06:24:10.911 SQL [7242]: About to run query: -- 06:24:10.911 SQL [7242]: UPDATE members SET password = md5('242252526') WHERE id = 18 -- 06:24:10.912 SQL [7242]: Found rows: 0 -- 06:24:10.912 SQL [7242]: Found rows: 0 -- 06:24:10.912 FLOG_MAX [7242]: long load_db_record( CVars &rec, const char * query, ... ) -- 06:24:10.912 SQL [7242]: pgsql_query() -- 06:24:10.912 SQL [7242]: About to run query: -- 06:24:10.912 SQL [7242]: SELECT * FROM members_pending WHERE id = 18 -- 06:24:10.913 SQL [7242]: Found rows: 0 -- 06:24:10.913 SQL [7242]: Found rows: 0 -- 06:24:10.913 FLOG_MAX [7242]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 06:24:10.913 FLOG_MAX [7242]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1692 bytes -- 06:24:10.913 FLOG_MAX [7242]: Returning from FormFile() -- 06:24:10.913 FLOG_MAX [7242]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 06:24:10.913 FLOG_MAX [7242]: ESMTP( smtp.google.com, savvy@chiefsoft.com, ) -- 06:24:10.913 FLOG_MAX [7242]: Empty recipient list -- 06:24:10.913 INFO [7242]: RET: action=11010 -- 06:24:10.913 INFO [7242]: RET: email=ameye+11@chiefsoft.com -- 06:24:10.913 INFO [7242]: RET: firstname=Olu -- 06:24:10.913 INFO [7242]: RET: lastname=Amey -- 06:24:10.913 INFO [7242]: RET: password=242252526 -- 06:24:10.913 INFO [7242]: RET: pending_id=18 -- 06:24:10.913 INFO [7242]: RET: pid=100 -- 06:24:10.913 INFO [7242]: RET: status_message=Pending -- 06:24:10.913 INFO [7242]: RET: username=ameye+11@chiefsoft.com -- 06:24:10.915 INFO [7242]: COREGRADE is stopping... -- 06:24:10.915 DEBUG [7242]: Closing database connection -- 06:24:10.915 SQL [7242]: pgsql_close() -- 06:27:41.128 INFO [7514]: COREGRADE is starting... -- 06:27:41.128 INFO [7514]: Version from config: 1.0 -- 06:27:41.128 DEBUG [7514]: Connecting to database... -- 06:27:41.128 DEBUG [7514]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:27:41.128 SQL [7514]: pgsql_db_connect() -- 06:27:41.133 DEBUG [7514]: Database connection successful -- 06:27:41.133 INFO [7514]: _SERVER found -- 06:27:41.133 INFO [7514]: REMOTE_ADDR = 192.168.1.13 -- 06:27:41.133 INFO [7514]: SERVER_NAME = oameye.works.coregrade.com -- 06:27:41.133 INFO [7514]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3i4d1t12bgs36r8m0vjbg60u6humkj9k -- 06:27:41.133 INFO [7514]: QUERY_STRING = -- 06:27:41.133 INFO [7514]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:27:41.133 INFO [7514]: SystemStatus()09-09-********~************ -- 06:27:41.133 INFO [7514]: long coregrade_api_main(CVars in, CVars &out) -- 06:27:41.133 INFO [7514]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 06:27:41.133 INFO [7514]: /long coregrade_api_main(CVars in, CVars &out) -- 06:27:41.133 INFO [7514]: RET: status=Unknown action -- 06:27:41.134 INFO [7514]: COREGRADE is stopping... -- 06:27:41.134 DEBUG [7514]: Closing database connection -- 06:27:41.135 SQL [7514]: pgsql_close() -- 06:27:51.686 INFO [7515]: COREGRADE is starting... -- 06:27:51.686 INFO [7515]: Version from config: 1.0 -- 06:27:51.686 DEBUG [7515]: Connecting to database... -- 06:27:51.686 DEBUG [7515]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:27:51.686 SQL [7515]: pgsql_db_connect() -- 06:27:51.690 DEBUG [7515]: Database connection successful -- 06:27:51.690 INFO [7515]: _SERVER found -- 06:27:51.690 INFO [7515]: REMOTE_ADDR = 192.168.1.13 -- 06:27:51.690 INFO [7515]: SERVER_NAME = oameye.works.coregrade.com -- 06:27:51.690 INFO [7515]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3i4d1t12bgs36r8m0vjbg60u6humkj9k -- 06:27:51.690 INFO [7515]: QUERY_STRING = -- 06:27:51.691 INFO [7515]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:27:51.691 INFO [7515]: SystemStatus()09-09-********~************ -- 06:27:51.691 INFO [7515]: long coregrade_api_main(CVars in, CVars &out) -- 06:27:51.691 INFO [7515]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 06:27:51.691 INFO [7515]: account calls -- 06:27:51.691 INFO [7515]: account_calls() -- 06:27:51.691 FLOG_MAX [7515]: REQ_STRING(username) -- 06:27:51.691 FLOG_MAX [7515]: REQ_STRING(firstname) -- 06:27:51.691 FLOG_MAX [7515]: REQ_STRING(lastname) -- 06:27:51.691 FLOG_MAX [7515]: REQ_STRING(email) -- 06:27:51.691 SQL [7515]: pgsql_query() -- 06:27:51.691 SQL [7515]: About to run query: -- 06:27:51.691 SQL [7515]: SELECT * FROM members WHERE LOWER(username) = LOWER('Olu') -- 06:27:51.693 SQL [7515]: Found rows: 0 -- 06:27:51.693 SQL [7515]: Found rows: 0 -- 06:27:51.693 FLOG_MAX [7515]: insert_db_record() -- 06:27:51.693 SQL [7515]: pgsql_exec() -- 06:27:51.693 SQL [7515]: About to run query: -- 06:27:51.693 SQL [7515]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ameye+11@chiefsoft.com','Olu','Amey','192.168.1.13','','ameye+11@chiefsoft.com','RS-1917620992-1709672704-185660672') -- 06:27:51.695 SQL [7515]: Affected rows: ERROR -- 06:27:51.695 FLOG_MAX [7515]: SELECT currval('members_pending_id_seq') -- 06:27:51.695 SQL [7515]: pgsql_query() -- 06:27:51.695 SQL [7515]: About to run query: -- 06:27:51.695 SQL [7515]: SELECT currval('members_pending_id_seq') -- 06:27:51.695 SQL [7515]: Found rows: 1 -- 06:27:51.695 SQL [7515]: pgsql_query() -- 06:27:51.695 SQL [7515]: About to run query: -- 06:27:51.695 SQL [7515]: UPDATE members SET password = md5('242252526') WHERE id = 19 -- 06:27:51.696 SQL [7515]: Found rows: 0 -- 06:27:51.696 SQL [7515]: Found rows: 0 -- 06:27:51.696 FLOG_MAX [7515]: long load_db_record( CVars &rec, const char * query, ... ) -- 06:27:51.696 SQL [7515]: pgsql_query() -- 06:27:51.696 SQL [7515]: About to run query: -- 06:27:51.696 SQL [7515]: SELECT * FROM members_pending WHERE id = 19 -- 06:27:51.696 SQL [7515]: Found rows: 0 -- 06:27:51.696 SQL [7515]: Found rows: 0 -- 06:27:51.696 FLOG_MAX [7515]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 06:27:51.696 FLOG_MAX [7515]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1692 bytes -- 06:27:51.696 FLOG_MAX [7515]: Returning from FormFile() -- 06:27:51.696 FLOG_MAX [7515]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 06:27:51.696 FLOG_MAX [7515]: ESMTP( smtp.google.com, savvy@chiefsoft.com, ) -- 06:27:51.696 FLOG_MAX [7515]: Empty recipient list -- 06:27:51.696 INFO [7515]: RET: action=11010 -- 06:27:51.696 INFO [7515]: RET: email=ameye+11@chiefsoft.com -- 06:27:51.696 INFO [7515]: RET: firstname=Olu -- 06:27:51.696 INFO [7515]: RET: lastname=Amey -- 06:27:51.696 INFO [7515]: RET: password=242252526 -- 06:27:51.696 INFO [7515]: RET: pending_id=19 -- 06:27:51.696 INFO [7515]: RET: pid=100 -- 06:27:51.696 INFO [7515]: RET: status_message=Pending -- 06:27:51.696 INFO [7515]: RET: username=ameye+11@chiefsoft.com -- 06:27:51.698 INFO [7515]: COREGRADE is stopping... -- 06:27:51.699 DEBUG [7515]: Closing database connection -- 06:27:51.699 SQL [7515]: pgsql_close() -- 06:30:46.297 INFO [7825]: COREGRADE is starting... -- 06:30:46.298 INFO [7825]: Version from config: 1.0 -- 06:30:46.298 DEBUG [7825]: Connecting to database... -- 06:30:46.298 DEBUG [7825]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:30:46.298 SQL [7825]: pgsql_db_connect() -- 06:30:46.302 DEBUG [7825]: Database connection successful -- 06:30:46.302 INFO [7825]: _SERVER found -- 06:30:46.302 INFO [7825]: REMOTE_ADDR = 192.168.1.13 -- 06:30:46.302 INFO [7825]: SERVER_NAME = oameye.works.coregrade.com -- 06:30:46.302 INFO [7825]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3i4d1t12bgs36r8m0vjbg60u6humkj9k -- 06:30:46.302 INFO [7825]: QUERY_STRING = -- 06:30:46.302 INFO [7825]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:30:46.302 INFO [7825]: SystemStatus()09-09-********~************ -- 06:30:46.302 INFO [7825]: long coregrade_api_main(CVars in, CVars &out) -- 06:30:46.302 INFO [7825]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 06:30:46.302 INFO [7825]: /long coregrade_api_main(CVars in, CVars &out) -- 06:30:46.302 INFO [7825]: RET: status=Unknown action -- 06:30:46.304 INFO [7825]: COREGRADE is stopping... -- 06:30:46.304 DEBUG [7825]: Closing database connection -- 06:30:46.304 SQL [7825]: pgsql_close() -- 06:31:07.916 INFO [7827]: COREGRADE is starting... -- 06:31:07.916 INFO [7827]: Version from config: 1.0 -- 06:31:07.916 DEBUG [7827]: Connecting to database... -- 06:31:07.916 DEBUG [7827]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:31:07.916 SQL [7827]: pgsql_db_connect() -- 06:31:07.921 DEBUG [7827]: Database connection successful -- 06:31:07.921 INFO [7827]: _SERVER found -- 06:31:07.921 INFO [7827]: REMOTE_ADDR = 192.168.1.13 -- 06:31:07.921 INFO [7827]: SERVER_NAME = oameye.works.coregrade.com -- 06:31:07.921 INFO [7827]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nnm47gfcsfiji443ik304nokieuouk8r -- 06:31:07.921 INFO [7827]: QUERY_STRING = -- 06:31:07.921 INFO [7827]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:31:07.921 INFO [7827]: SystemStatus()09-09-********~************ -- 06:31:07.921 INFO [7827]: long coregrade_api_main(CVars in, CVars &out) -- 06:31:07.921 INFO [7827]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 06:31:07.921 INFO [7827]: account calls -- 06:31:07.921 INFO [7827]: account_calls() -- 06:31:07.921 FLOG_MAX [7827]: REQ_STRING(username) -- 06:31:07.921 FLOG_MAX [7827]: REQ_STRING(firstname) -- 06:31:07.921 FLOG_MAX [7827]: REQ_STRING(lastname) -- 06:31:07.921 FLOG_MAX [7827]: REQ_STRING(email) -- 06:31:07.921 SQL [7827]: pgsql_query() -- 06:31:07.921 SQL [7827]: About to run query: -- 06:31:07.921 SQL [7827]: SELECT * FROM members WHERE LOWER(username) = LOWER('ameye+11@chiefsoft.com') -- 06:31:07.923 SQL [7827]: Found rows: 0 -- 06:31:07.923 SQL [7827]: Found rows: 0 -- 06:31:07.923 FLOG_MAX [7827]: insert_db_record() -- 06:31:07.923 SQL [7827]: pgsql_exec() -- 06:31:07.923 SQL [7827]: About to run query: -- 06:31:07.923 SQL [7827]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ameye+11@chiefsoft.com','Olu','Amey','192.168.1.13','','ameye+11@chiefsoft.com','RS-215334144-473737472-941333248') -- 06:31:07.924 SQL [7827]: Affected rows: ERROR -- 06:31:07.924 FLOG_MAX [7827]: SELECT currval('members_pending_id_seq') -- 06:31:07.924 SQL [7827]: pgsql_query() -- 06:31:07.924 SQL [7827]: About to run query: -- 06:31:07.924 SQL [7827]: SELECT currval('members_pending_id_seq') -- 06:31:07.925 SQL [7827]: Found rows: 1 -- 06:31:07.925 SQL [7827]: pgsql_query() -- 06:31:07.925 SQL [7827]: About to run query: -- 06:31:07.925 SQL [7827]: UPDATE members SET password = md5('242252526') WHERE id = 20 -- 06:31:07.926 SQL [7827]: Found rows: 0 -- 06:31:07.926 SQL [7827]: Found rows: 0 -- 06:31:07.926 FLOG_MAX [7827]: long load_db_record( CVars &rec, const char * query, ... ) -- 06:31:07.926 SQL [7827]: pgsql_query() -- 06:31:07.926 SQL [7827]: About to run query: -- 06:31:07.926 SQL [7827]: SELECT * FROM members_pending WHERE id = 20 -- 06:31:07.926 SQL [7827]: Found rows: 0 -- 06:31:07.926 SQL [7827]: Found rows: 0 -- 06:31:07.926 FLOG_MAX [7827]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 06:31:07.926 FLOG_MAX [7827]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1692 bytes -- 06:31:07.926 FLOG_MAX [7827]: Returning from FormFile() -- 06:31:07.926 FLOG_MAX [7827]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 06:31:07.926 FLOG_MAX [7827]: ESMTP( smtp.google.com, savvy@chiefsoft.com, ) -- 06:31:07.926 FLOG_MAX [7827]: Empty recipient list -- 06:31:07.926 INFO [7827]: RET: action=11010 -- 06:31:07.926 INFO [7827]: RET: email=ameye+11@chiefsoft.com -- 06:31:07.926 INFO [7827]: RET: firstname=Olu -- 06:31:07.926 INFO [7827]: RET: lastname=Amey -- 06:31:07.926 INFO [7827]: RET: password=242252526 -- 06:31:07.926 INFO [7827]: RET: pending_id=20 -- 06:31:07.926 INFO [7827]: RET: pid=100 -- 06:31:07.926 INFO [7827]: RET: status_message=Pending -- 06:31:07.926 INFO [7827]: RET: username=ameye+11@chiefsoft.com -- 06:31:07.928 INFO [7827]: COREGRADE is stopping... -- 06:31:07.928 DEBUG [7827]: Closing database connection -- 06:31:07.928 SQL [7827]: pgsql_close() -- 06:32:58.195 INFO [7828]: COREGRADE is starting... -- 06:32:58.195 INFO [7828]: Version from config: 1.0 -- 06:32:58.195 DEBUG [7828]: Connecting to database... -- 06:32:58.195 DEBUG [7828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:32:58.195 SQL [7828]: pgsql_db_connect() -- 06:32:58.200 DEBUG [7828]: Database connection successful -- 06:32:58.200 INFO [7828]: _SERVER found -- 06:32:58.200 INFO [7828]: REMOTE_ADDR = 192.168.1.13 -- 06:32:58.200 INFO [7828]: SERVER_NAME = oameye.works.coregrade.com -- 06:32:58.200 INFO [7828]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nnm47gfcsfiji443ik304nokieuouk8r -- 06:32:58.200 INFO [7828]: QUERY_STRING = -- 06:32:58.200 INFO [7828]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:32:58.200 INFO [7828]: SystemStatus()09-09-********~************ -- 06:32:58.200 INFO [7828]: long coregrade_api_main(CVars in, CVars &out) -- 06:32:58.200 INFO [7828]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 06:32:58.200 INFO [7828]: /long coregrade_api_main(CVars in, CVars &out) -- 06:32:58.200 INFO [7828]: RET: status=Unknown action -- 06:32:58.201 INFO [7828]: COREGRADE is stopping... -- 06:32:58.201 DEBUG [7828]: Closing database connection -- 06:32:58.201 SQL [7828]: pgsql_close() -- 06:33:10.792 INFO [7882]: COREGRADE is starting... -- 06:33:10.792 INFO [7882]: Version from config: 1.0 -- 06:33:10.792 DEBUG [7882]: Connecting to database... -- 06:33:10.792 DEBUG [7882]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:33:10.792 SQL [7882]: pgsql_db_connect() -- 06:33:10.797 DEBUG [7882]: Database connection successful -- 06:33:10.797 INFO [7882]: _SERVER found -- 06:33:10.797 INFO [7882]: REMOTE_ADDR = 192.168.1.13 -- 06:33:10.797 INFO [7882]: SERVER_NAME = oameye.works.coregrade.com -- 06:33:10.797 INFO [7882]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nnm47gfcsfiji443ik304nokieuouk8r -- 06:33:10.797 INFO [7882]: QUERY_STRING = -- 06:33:10.797 INFO [7882]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:33:10.797 INFO [7882]: SystemStatus()09-09-********~************ -- 06:33:10.797 INFO [7882]: long coregrade_api_main(CVars in, CVars &out) -- 06:33:10.797 INFO [7882]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 06:33:10.797 INFO [7882]: account calls -- 06:33:10.797 INFO [7882]: account_calls() -- 06:33:10.797 FLOG_MAX [7882]: REQ_STRING(username) -- 06:33:10.797 FLOG_MAX [7882]: REQ_STRING(firstname) -- 06:33:10.797 FLOG_MAX [7882]: REQ_STRING(lastname) -- 06:33:10.797 FLOG_MAX [7882]: REQ_STRING(email) -- 06:33:10.797 SQL [7882]: pgsql_query() -- 06:33:10.797 SQL [7882]: About to run query: -- 06:33:10.797 SQL [7882]: SELECT * FROM members WHERE LOWER(username) = LOWER('ameye+11@chiefsoft.com') -- 06:33:10.799 SQL [7882]: Found rows: 0 -- 06:33:10.799 SQL [7882]: Found rows: 0 -- 06:33:10.799 FLOG_MAX [7882]: insert_db_record() -- 06:33:10.799 SQL [7882]: pgsql_exec() -- 06:33:10.799 SQL [7882]: About to run query: -- 06:33:10.799 SQL [7882]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ameye+11@chiefsoft.com','Olu','Amey','192.168.1.13','','ameye+11@chiefsoft.com','RS-1398570752-1049288448-1091911424') -- 06:33:10.801 SQL [7882]: PQcmdTuples: 1 -- 06:33:10.801 SQL [7882]: Affected rows: 1 -- 06:33:10.801 FLOG_MAX [7882]: SELECT currval('members_pending_id_seq') -- 06:33:10.801 SQL [7882]: pgsql_query() -- 06:33:10.801 SQL [7882]: About to run query: -- 06:33:10.801 SQL [7882]: SELECT currval('members_pending_id_seq') -- 06:33:10.801 SQL [7882]: Found rows: 1 -- 06:33:10.801 SQL [7882]: pgsql_query() -- 06:33:10.801 SQL [7882]: About to run query: -- 06:33:10.801 SQL [7882]: UPDATE members SET password = md5('may12002') WHERE id = 1 -- 06:33:10.802 SQL [7882]: Found rows: 0 -- 06:33:10.802 SQL [7882]: Found rows: 0 -- 06:33:10.802 FLOG_MAX [7882]: long load_db_record( CVars &rec, const char * query, ... ) -- 06:33:10.802 SQL [7882]: pgsql_query() -- 06:33:10.802 SQL [7882]: About to run query: -- 06:33:10.802 SQL [7882]: SELECT * FROM members_pending WHERE id = 1 -- 06:33:10.803 SQL [7882]: Found rows: 1 -- 06:33:10.803 FLOG_MAX [7882]: load_db_record(SELECT * FROM members_pending WHERE id = 1 ) num_cols=14 -- 06:33:10.803 FLOG_MAX [7882]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 06:33:10.803 FLOG_MAX [7882]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1692 bytes -- 06:33:10.803 FLOG_MAX [7882]: Returning from FormFile() -- 06:33:10.803 FLOG_MAX [7882]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 06:33:10.803 FLOG_MAX [7882]: ESMTP( smtp.google.com, savvy@chiefsoft.com, ameye+11@chiefsoft.com ) -- 06:33:10.803 FLOG_MAX [7882]: Prepare body -- 06:33:10.803 FLOG_MAX [7882]: Locate & extract subject -- 06:33:10.803 FLOG_MAX [7882]: Found subject: CoreGrade - Pending Signup - Verify ameye+11@chiefsoft.com -- 06:33:10.803 FLOG_MAX [7882]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp smtp.google.com -f savvy@chiefsoft.com -t ameye+11@chiefsoft.com -d chiefsoft.com -name 'CoreGrade Beta' +cc +bcc -v -port 25 -auth-plain -user savvy@chiefsoft.com -pass may12002! -sub 'CoreGrade - Pending Signup - Verify ameye+11@chiefsoft.com' -M ' - - - -
-
- - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-1398570752-1049288448-1091911424 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - -' -- 06:33:10.857 FLOG_MAX [7882]: - -END OF PIPE OUTPUT - - -- 06:33:10.857 FLOG_MAX [7882]: /ESMTP() -- 06:33:10.857 INFO [7882]: RET: action=11010 -- 06:33:10.857 INFO [7882]: RET: email=ameye+11@chiefsoft.com -- 06:33:10.857 INFO [7882]: RET: firstname=Olu -- 06:33:10.857 INFO [7882]: RET: lastname=Amey -- 06:33:10.857 INFO [7882]: RET: password=may12002 -- 06:33:10.857 INFO [7882]: RET: pending_id=1 -- 06:33:10.857 INFO [7882]: RET: pid=100 -- 06:33:10.857 INFO [7882]: RET: status_message=Pending -- 06:33:10.857 INFO [7882]: RET: username=ameye+11@chiefsoft.com -- 06:33:10.860 INFO [7882]: COREGRADE is stopping... -- 06:33:10.860 DEBUG [7882]: Closing database connection -- 06:33:10.860 SQL [7882]: pgsql_close() -- 06:35:11.533 INFO [8026]: COREGRADE is starting... -- 06:35:11.534 INFO [8026]: Version from config: 1.0 -- 06:35:11.534 DEBUG [8026]: Connecting to database... -- 06:35:11.534 DEBUG [8026]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:35:11.534 SQL [8026]: pgsql_db_connect() -- 06:35:11.540 DEBUG [8026]: Database connection successful -- 06:35:11.540 INFO [8026]: _SERVER found -- 06:35:11.540 INFO [8026]: REMOTE_ADDR = 192.168.1.13 -- 06:35:11.540 INFO [8026]: SERVER_NAME = oameye.works.coregrade.com -- 06:35:11.540 INFO [8026]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nnm47gfcsfiji443ik304nokieuouk8r -- 06:35:11.540 INFO [8026]: QUERY_STRING = -- 06:35:11.540 INFO [8026]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:35:11.540 INFO [8026]: SystemStatus()09-09-********~************ -- 06:35:11.540 INFO [8026]: long coregrade_api_main(CVars in, CVars &out) -- 06:35:11.540 INFO [8026]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 06:35:11.540 INFO [8026]: /long coregrade_api_main(CVars in, CVars &out) -- 06:35:11.540 INFO [8026]: RET: status=Unknown action -- 06:35:11.541 INFO [8026]: COREGRADE is stopping... -- 06:35:11.541 DEBUG [8026]: Closing database connection -- 06:35:11.541 SQL [8026]: pgsql_close() -- 06:35:45.917 INFO [8030]: COREGRADE is starting... -- 06:35:45.918 INFO [8030]: Version from config: 1.0 -- 06:35:45.918 DEBUG [8030]: Connecting to database... -- 06:35:45.918 DEBUG [8030]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:35:45.918 SQL [8030]: pgsql_db_connect() -- 06:35:45.922 DEBUG [8030]: Database connection successful -- 06:35:45.922 INFO [8030]: _SERVER found -- 06:35:45.922 INFO [8030]: REMOTE_ADDR = 192.168.1.13 -- 06:35:45.922 INFO [8030]: SERVER_NAME = oameye.works.coregrade.com -- 06:35:45.922 INFO [8030]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nnm47gfcsfiji443ik304nokieuouk8r -- 06:35:45.922 INFO [8030]: QUERY_STRING = -- 06:35:45.922 INFO [8030]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:35:45.922 INFO [8030]: SystemStatus()09-09-********~************ -- 06:35:45.922 INFO [8030]: long coregrade_api_main(CVars in, CVars &out) -- 06:35:45.922 INFO [8030]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 06:35:45.922 INFO [8030]: account calls -- 06:35:45.922 INFO [8030]: account_calls() -- 06:35:45.922 FLOG_MAX [8030]: REQ_STRING(username) -- 06:35:45.922 FLOG_MAX [8030]: REQ_STRING(firstname) -- 06:35:45.922 FLOG_MAX [8030]: REQ_STRING(lastname) -- 06:35:45.922 FLOG_MAX [8030]: REQ_STRING(email) -- 06:35:45.922 SQL [8030]: pgsql_query() -- 06:35:45.922 SQL [8030]: About to run query: -- 06:35:45.922 SQL [8030]: SELECT * FROM members WHERE LOWER(username) = LOWER('ameye+22@chiefsoft.com') -- 06:35:45.925 SQL [8030]: Found rows: 0 -- 06:35:45.925 SQL [8030]: Found rows: 0 -- 06:35:45.925 FLOG_MAX [8030]: insert_db_record() -- 06:35:45.925 SQL [8030]: pgsql_exec() -- 06:35:45.925 SQL [8030]: About to run query: -- 06:35:45.925 SQL [8030]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ameye+22@chiefsoft.com','Olu','Amey','192.168.1.13','','ameye+22@chiefsoft.com','RS-2141956608-312566784-632645632') -- 06:35:45.926 SQL [8030]: PQcmdTuples: 1 -- 06:35:45.926 SQL [8030]: Affected rows: 1 -- 06:35:45.926 FLOG_MAX [8030]: SELECT currval('members_pending_id_seq') -- 06:35:45.926 SQL [8030]: pgsql_query() -- 06:35:45.926 SQL [8030]: About to run query: -- 06:35:45.926 SQL [8030]: SELECT currval('members_pending_id_seq') -- 06:35:45.927 SQL [8030]: Found rows: 1 -- 06:35:45.927 SQL [8030]: pgsql_query() -- 06:35:45.927 SQL [8030]: About to run query: -- 06:35:45.927 SQL [8030]: UPDATE members SET password = md5('may12002') WHERE id = 2 -- 06:35:45.928 SQL [8030]: Found rows: 0 -- 06:35:45.928 SQL [8030]: Found rows: 0 -- 06:35:45.928 FLOG_MAX [8030]: long load_db_record( CVars &rec, const char * query, ... ) -- 06:35:45.928 SQL [8030]: pgsql_query() -- 06:35:45.928 SQL [8030]: About to run query: -- 06:35:45.928 SQL [8030]: SELECT * FROM members_pending WHERE id = 2 -- 06:35:45.929 SQL [8030]: Found rows: 1 -- 06:35:45.929 FLOG_MAX [8030]: load_db_record(SELECT * FROM members_pending WHERE id = 2 ) num_cols=14 -- 06:35:45.929 FLOG_MAX [8030]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 06:35:45.929 FLOG_MAX [8030]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1692 bytes -- 06:35:45.929 FLOG_MAX [8030]: Returning from FormFile() -- 06:35:45.929 FLOG_MAX [8030]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 06:35:45.929 FLOG_MAX [8030]: ESMTP( smtp.google.com, savvy@chiefsoft.com, ameye+22@chiefsoft.com ) -- 06:35:45.929 FLOG_MAX [8030]: Prepare body -- 06:35:45.929 FLOG_MAX [8030]: Locate & extract subject -- 06:35:45.929 FLOG_MAX [8030]: Found subject: CoreGrade - Pending Signup - Verify ameye+22@chiefsoft.com -- 06:35:45.929 FLOG_MAX [8030]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp smtp.google.com -f savvy@chiefsoft.com -t ameye+22@chiefsoft.com -d chiefsoft.com -name 'CoreGrade Beta' +cc +bcc -v -port 25 -auth-plain -user savvy@chiefsoft.com -pass may12002! -sub 'CoreGrade - Pending Signup - Verify ameye+22@chiefsoft.com' -M ' - - - -
-
- - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-2141956608-312566784-632645632 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - -' -- 06:35:45.951 FLOG_MAX [8030]: - -END OF PIPE OUTPUT - - -- 06:35:45.951 FLOG_MAX [8030]: /ESMTP() -- 06:35:45.951 INFO [8030]: RET: action=11010 -- 06:35:45.951 INFO [8030]: RET: email=ameye+22@chiefsoft.com -- 06:35:45.951 INFO [8030]: RET: firstname=Olu -- 06:35:45.951 INFO [8030]: RET: lastname=Amey -- 06:35:45.951 INFO [8030]: RET: password=may12002 -- 06:35:45.951 INFO [8030]: RET: pending_id=2 -- 06:35:45.951 INFO [8030]: RET: pid=100 -- 06:35:45.951 INFO [8030]: RET: status_message=Pending -- 06:35:45.951 INFO [8030]: RET: username=ameye+22@chiefsoft.com -- 06:35:45.953 INFO [8030]: COREGRADE is stopping... -- 06:35:45.954 DEBUG [8030]: Closing database connection -- 06:35:45.954 SQL [8030]: pgsql_close() -- 06:35:50.592 INFO [8030]: COREGRADE is starting... -- 06:35:50.592 INFO [8030]: Version from config: 1.0 -- 06:35:50.592 DEBUG [8030]: Connecting to database... -- 06:35:50.592 DEBUG [8030]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:35:50.592 SQL [8030]: pgsql_db_connect() -- 06:35:50.597 DEBUG [8030]: Database connection successful -- 06:35:50.597 INFO [8030]: _SERVER found -- 06:35:50.597 INFO [8030]: REMOTE_ADDR = 192.168.1.13 -- 06:35:50.597 INFO [8030]: SERVER_NAME = oameye.works.coregrade.com -- 06:35:50.597 INFO [8030]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nnm47gfcsfiji443ik304nokieuouk8r -- 06:35:50.597 INFO [8030]: QUERY_STRING = -- 06:35:50.597 INFO [8030]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:35:50.597 INFO [8030]: SystemStatus()09-09-********~************ -- 06:35:50.597 INFO [8030]: long coregrade_api_main(CVars in, CVars &out) -- 06:35:50.597 INFO [8030]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 06:35:50.597 INFO [8030]: /long coregrade_api_main(CVars in, CVars &out) -- 06:35:50.597 INFO [8030]: RET: status=Unknown action -- 06:35:50.598 INFO [8030]: COREGRADE is stopping... -- 06:35:50.598 DEBUG [8030]: Closing database connection -- 06:35:50.598 SQL [8030]: pgsql_close() -- 06:36:02.916 INFO [8028]: COREGRADE is starting... -- 06:36:02.916 INFO [8028]: Version from config: 1.0 -- 06:36:02.916 DEBUG [8028]: Connecting to database... -- 06:36:02.916 DEBUG [8028]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:36:02.916 SQL [8028]: pgsql_db_connect() -- 06:36:02.920 DEBUG [8028]: Database connection successful -- 06:36:02.920 INFO [8028]: _SERVER found -- 06:36:02.920 INFO [8028]: REMOTE_ADDR = 192.168.1.13 -- 06:36:02.920 INFO [8028]: SERVER_NAME = oameye.works.coregrade.com -- 06:36:02.920 INFO [8028]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=j3k7kn6p2c8618jk86g6b241bs93n32h -- 06:36:02.920 INFO [8028]: QUERY_STRING = -- 06:36:02.920 INFO [8028]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:36:02.920 INFO [8028]: SystemStatus()09-09-********~************ -- 06:36:02.920 INFO [8028]: long coregrade_api_main(CVars in, CVars &out) -- 06:36:02.920 INFO [8028]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 06:36:02.920 INFO [8028]: account calls -- 06:36:02.920 INFO [8028]: account_calls() -- 06:36:02.920 FLOG_MAX [8028]: REQ_STRING(username) -- 06:36:02.921 FLOG_MAX [8028]: REQ_STRING(firstname) -- 06:36:02.921 FLOG_MAX [8028]: REQ_STRING(lastname) -- 06:36:02.921 FLOG_MAX [8028]: REQ_STRING(email) -- 06:36:02.921 SQL [8028]: pgsql_query() -- 06:36:02.921 SQL [8028]: About to run query: -- 06:36:02.921 SQL [8028]: SELECT * FROM members WHERE LOWER(username) = LOWER('ameye+11@chiefsoft.com') -- 06:36:02.923 SQL [8028]: Found rows: 0 -- 06:36:02.923 SQL [8028]: Found rows: 0 -- 06:36:02.923 FLOG_MAX [8028]: insert_db_record() -- 06:36:02.923 SQL [8028]: pgsql_exec() -- 06:36:02.923 SQL [8028]: About to run query: -- 06:36:02.923 SQL [8028]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ameye+11@chiefsoft.com','Olu','Amey','192.168.1.13','','ameye+11@chiefsoft.com','RS-1123206656-1525832704-1140840448') -- 06:36:02.924 SQL [8028]: PQcmdTuples: 1 -- 06:36:02.924 SQL [8028]: Affected rows: 1 -- 06:36:02.924 FLOG_MAX [8028]: SELECT currval('members_pending_id_seq') -- 06:36:02.924 SQL [8028]: pgsql_query() -- 06:36:02.924 SQL [8028]: About to run query: -- 06:36:02.924 SQL [8028]: SELECT currval('members_pending_id_seq') -- 06:36:02.925 SQL [8028]: Found rows: 1 -- 06:36:02.925 SQL [8028]: pgsql_query() -- 06:36:02.925 SQL [8028]: About to run query: -- 06:36:02.925 SQL [8028]: UPDATE members SET password = md5('may12002') WHERE id = 3 -- 06:36:02.925 SQL [8028]: Found rows: 0 -- 06:36:02.925 SQL [8028]: Found rows: 0 -- 06:36:02.925 FLOG_MAX [8028]: long load_db_record( CVars &rec, const char * query, ... ) -- 06:36:02.925 SQL [8028]: pgsql_query() -- 06:36:02.925 SQL [8028]: About to run query: -- 06:36:02.925 SQL [8028]: SELECT * FROM members_pending WHERE id = 3 -- 06:36:02.926 SQL [8028]: Found rows: 1 -- 06:36:02.926 FLOG_MAX [8028]: load_db_record(SELECT * FROM members_pending WHERE id = 3 ) num_cols=14 -- 06:36:02.926 FLOG_MAX [8028]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 06:36:02.926 FLOG_MAX [8028]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1692 bytes -- 06:36:02.926 FLOG_MAX [8028]: Returning from FormFile() -- 06:36:02.926 FLOG_MAX [8028]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 06:36:02.926 FLOG_MAX [8028]: ESMTP( smtp.google.com, savvy@chiefsoft.com, ameye+11@chiefsoft.com ) -- 06:36:02.926 FLOG_MAX [8028]: Prepare body -- 06:36:02.926 FLOG_MAX [8028]: Locate & extract subject -- 06:36:02.926 FLOG_MAX [8028]: Found subject: CoreGrade - Pending Signup - Verify ameye+11@chiefsoft.com -- 06:36:02.926 FLOG_MAX [8028]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp smtp.google.com -f savvy@chiefsoft.com -t ameye+11@chiefsoft.com -d chiefsoft.com -name 'CoreGrade Beta' +cc +bcc -v -port 25 -auth-plain -user savvy@chiefsoft.com -pass may12002! -sub 'CoreGrade - Pending Signup - Verify ameye+11@chiefsoft.com' -M ' - - - -
-
- - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-1123206656-1525832704-1140840448 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - -' -- 06:36:02.938 FLOG_MAX [8028]: - -END OF PIPE OUTPUT - - -- 06:36:02.938 FLOG_MAX [8028]: /ESMTP() -- 06:36:02.938 INFO [8028]: RET: action=11010 -- 06:36:02.939 INFO [8028]: RET: email=ameye+11@chiefsoft.com -- 06:36:02.939 INFO [8028]: RET: firstname=Olu -- 06:36:02.939 INFO [8028]: RET: lastname=Amey -- 06:36:02.939 INFO [8028]: RET: password=may12002 -- 06:36:02.939 INFO [8028]: RET: pending_id=3 -- 06:36:02.939 INFO [8028]: RET: pid=100 -- 06:36:02.939 INFO [8028]: RET: status_message=Pending -- 06:36:02.939 INFO [8028]: RET: username=ameye+11@chiefsoft.com -- 06:36:02.941 INFO [8028]: COREGRADE is stopping... -- 06:36:02.941 DEBUG [8028]: Closing database connection -- 06:36:02.941 SQL [8028]: pgsql_close() -- 06:36:55.194 INFO [8082]: COREGRADE is starting... -- 06:36:55.195 INFO [8082]: Version from config: 1.0 -- 06:36:55.195 DEBUG [8082]: Connecting to database... -- 06:36:55.195 DEBUG [8082]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:36:55.195 SQL [8082]: pgsql_db_connect() -- 06:36:55.199 DEBUG [8082]: Database connection successful -- 06:36:55.199 INFO [8082]: _SERVER found -- 06:36:55.199 INFO [8082]: REMOTE_ADDR = 192.168.1.13 -- 06:36:55.199 INFO [8082]: SERVER_NAME = oameye.works.coregrade.com -- 06:36:55.199 INFO [8082]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=j3k7kn6p2c8618jk86g6b241bs93n32h -- 06:36:55.199 INFO [8082]: QUERY_STRING = -- 06:36:55.199 INFO [8082]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:36:55.199 INFO [8082]: SystemStatus()09-09-********~************ -- 06:36:55.199 INFO [8082]: long coregrade_api_main(CVars in, CVars &out) -- 06:36:55.199 INFO [8082]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 06:36:55.199 INFO [8082]: /long coregrade_api_main(CVars in, CVars &out) -- 06:36:55.199 INFO [8082]: RET: status=Unknown action -- 06:36:55.200 INFO [8082]: COREGRADE is stopping... -- 06:36:55.201 DEBUG [8082]: Closing database connection -- 06:36:55.201 SQL [8082]: pgsql_close() -- 06:37:13.147 INFO [8085]: COREGRADE is starting... -- 06:37:13.147 INFO [8085]: Version from config: 1.0 -- 06:37:13.147 DEBUG [8085]: Connecting to database... -- 06:37:13.147 DEBUG [8085]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:37:13.148 SQL [8085]: pgsql_db_connect() -- 06:37:13.152 DEBUG [8085]: Database connection successful -- 06:37:13.152 INFO [8085]: _SERVER found -- 06:37:13.152 INFO [8085]: REMOTE_ADDR = 192.168.1.13 -- 06:37:13.152 INFO [8085]: SERVER_NAME = oameye.works.coregrade.com -- 06:37:13.152 INFO [8085]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=j3k7kn6p2c8618jk86g6b241bs93n32h -- 06:37:13.152 INFO [8085]: QUERY_STRING = -- 06:37:13.152 INFO [8085]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:37:13.152 INFO [8085]: SystemStatus()09-09-********~************ -- 06:37:13.152 INFO [8085]: long coregrade_api_main(CVars in, CVars &out) -- 06:37:13.152 INFO [8085]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 06:37:13.152 INFO [8085]: account calls -- 06:37:13.152 INFO [8085]: account_calls() -- 06:37:13.152 FLOG_MAX [8085]: REQ_STRING(username) -- 06:37:13.152 FLOG_MAX [8085]: REQ_STRING(firstname) -- 06:37:13.152 FLOG_MAX [8085]: REQ_STRING(lastname) -- 06:37:13.152 FLOG_MAX [8085]: REQ_STRING(email) -- 06:37:13.152 SQL [8085]: pgsql_query() -- 06:37:13.152 SQL [8085]: About to run query: -- 06:37:13.152 SQL [8085]: SELECT * FROM members WHERE LOWER(username) = LOWER('ameye+33@chiefsoft.com') -- 06:37:13.154 SQL [8085]: Found rows: 0 -- 06:37:13.154 SQL [8085]: Found rows: 0 -- 06:37:13.155 FLOG_MAX [8085]: insert_db_record() -- 06:37:13.155 SQL [8085]: pgsql_exec() -- 06:37:13.155 SQL [8085]: About to run query: -- 06:37:13.155 SQL [8085]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ameye+33@chiefsoft.com','Olu','Amey','192.168.1.13','','ameye+33@chiefsoft.com','RS-1433200128-1537942528-973953024') -- 06:37:13.156 SQL [8085]: PQcmdTuples: 1 -- 06:37:13.156 SQL [8085]: Affected rows: 1 -- 06:37:13.156 FLOG_MAX [8085]: SELECT currval('members_pending_id_seq') -- 06:37:13.156 SQL [8085]: pgsql_query() -- 06:37:13.156 SQL [8085]: About to run query: -- 06:37:13.156 SQL [8085]: SELECT currval('members_pending_id_seq') -- 06:37:13.157 SQL [8085]: Found rows: 1 -- 06:37:13.157 SQL [8085]: pgsql_query() -- 06:37:13.157 SQL [8085]: About to run query: -- 06:37:13.157 SQL [8085]: UPDATE members SET password = md5('may12002') WHERE id = 4 -- 06:37:13.157 SQL [8085]: Found rows: 0 -- 06:37:13.157 SQL [8085]: Found rows: 0 -- 06:37:13.157 FLOG_MAX [8085]: long load_db_record( CVars &rec, const char * query, ... ) -- 06:37:13.157 SQL [8085]: pgsql_query() -- 06:37:13.157 SQL [8085]: About to run query: -- 06:37:13.157 SQL [8085]: SELECT * FROM members_pending WHERE id = 4 -- 06:37:13.158 SQL [8085]: Found rows: 1 -- 06:37:13.158 FLOG_MAX [8085]: load_db_record(SELECT * FROM members_pending WHERE id = 4 ) num_cols=14 -- 06:37:13.158 FLOG_MAX [8085]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 06:37:13.158 FLOG_MAX [8085]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1692 bytes -- 06:37:13.158 FLOG_MAX [8085]: Returning from FormFile() -- 06:37:13.158 FLOG_MAX [8085]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 06:37:13.158 FLOG_MAX [8085]: ESMTP( smtp.google.com, savvy@chiefsoft.com, ameye+33@chiefsoft.com ) -- 06:37:13.158 FLOG_MAX [8085]: Prepare body -- 06:37:13.158 FLOG_MAX [8085]: Locate & extract subject -- 06:37:13.158 FLOG_MAX [8085]: Found subject: CoreGrade - Pending Signup - Verify ameye+33@chiefsoft.com -- 06:37:13.158 FLOG_MAX [8085]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp smtp.google.com -f savvy@chiefsoft.com -t ameye+33@chiefsoft.com -d chiefsoft.com -name 'CoreGrade Beta' +cc +bcc -v -port 25 -auth-plain -user savvy@chiefsoft.com -pass may12002! -sub 'CoreGrade - Pending Signup - Verify ameye+33@chiefsoft.com' -M ' - - - -
-
- - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-1433200128-1537942528-973953024 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - -' -- 06:37:13.186 FLOG_MAX [8085]: - -END OF PIPE OUTPUT - - -- 06:37:13.186 FLOG_MAX [8085]: /ESMTP() -- 06:37:13.186 INFO [8085]: RET: action=11010 -- 06:37:13.186 INFO [8085]: RET: email=ameye+33@chiefsoft.com -- 06:37:13.186 INFO [8085]: RET: firstname=Olu -- 06:37:13.186 INFO [8085]: RET: lastname=Amey -- 06:37:13.186 INFO [8085]: RET: password=may12002 -- 06:37:13.186 INFO [8085]: RET: pending_id=4 -- 06:37:13.186 INFO [8085]: RET: pid=100 -- 06:37:13.186 INFO [8085]: RET: status_message=Pending -- 06:37:13.186 INFO [8085]: RET: username=ameye+33@chiefsoft.com -- 06:37:13.189 INFO [8085]: COREGRADE is stopping... -- 06:37:13.189 DEBUG [8085]: Closing database connection -- 06:37:13.189 SQL [8085]: pgsql_close() -- 06:40:30.151 INFO [8027]: COREGRADE is starting... -- 06:40:30.152 INFO [8027]: Version from config: 1.0 -- 06:40:30.152 DEBUG [8027]: Connecting to database... -- 06:40:30.152 DEBUG [8027]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:40:30.152 SQL [8027]: pgsql_db_connect() -- 06:40:30.156 DEBUG [8027]: Database connection successful -- 06:40:30.156 INFO [8027]: _SERVER found -- 06:40:30.156 INFO [8027]: REMOTE_ADDR = 192.168.1.13 -- 06:40:30.156 INFO [8027]: SERVER_NAME = oameye.works.coregrade.com -- 06:40:30.156 INFO [8027]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=j3k7kn6p2c8618jk86g6b241bs93n32h -- 06:40:30.156 INFO [8027]: QUERY_STRING = vlnk=RS-1398570752-1049288448-1091911424 -- 06:40:30.156 INFO [8027]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:40:30.156 INFO [8027]: SystemStatus()09-09-********~************ -- 06:40:30.156 INFO [8027]: long coregrade_api_main(CVars in, CVars &out) -- 06:40:30.156 INFO [8027]: long coregrade_api_main(CVars in, CVars &out) action =11020 -- 06:40:30.156 INFO [8027]: account calls -- 06:40:30.156 INFO [8027]: account_calls() -- 06:40:30.156 INFO [8027]: CreateCoreGradeAccount() -- 06:40:30.156 FLOG_MAX [8027]: REQ_STRING(verify_link) -- 06:40:30.156 FLOG_MAX [8027]: long load_db_record( CVars &rec, const char * query, ... ) -- 06:40:30.156 SQL [8027]: pgsql_query() -- 06:40:30.156 SQL [8027]: About to run query: -- 06:40:30.156 SQL [8027]: SELECT *,id AS pending_id FROM members_pending WHERE verify_link ='RS-1398570752-1049288448-1091911424' AND expire > now() LIMIT 1 -- 06:40:30.159 SQL [8027]: Found rows: 1 -- 06:40:30.159 FLOG_MAX [8027]: load_db_record(SELECT *,id AS pending_id FROM members_pending WHERE verify_link ='RS-1398570752-1049288448-1091911424' AND expire > now() LIMIT 1) num_cols=15 -- 06:40:30.159 FLOG_MAX [8027]: insert_db_record() -- 06:40:30.159 SQL [8027]: pgsql_exec() -- 06:40:30.159 SQL [8027]: About to run query: -- 06:40:30.159 SQL [8027]: INSERT INTO members (email,firstname,lastname,loc,password,phone,username) VALUES ('ameye+11@chiefsoft.com','Olu','Amey','192.168.1.13','','','ameye+11@chiefsoft.com') -- 06:40:30.161 SQL [8027]: PQcmdTuples: 1 -- 06:40:30.161 SQL [8027]: Affected rows: 1 -- 06:40:30.161 FLOG_MAX [8027]: SELECT currval('members_id_seq') -- 06:40:30.161 SQL [8027]: pgsql_query() -- 06:40:30.161 SQL [8027]: About to run query: -- 06:40:30.161 SQL [8027]: SELECT currval('members_id_seq') -- 06:40:30.161 SQL [8027]: Found rows: 1 -- 06:40:30.161 SQL [8027]: pgsql_query() -- 06:40:30.161 SQL [8027]: About to run query: -- 06:40:30.161 SQL [8027]: UPDATE members_pending SET status = 5,verified=now() WHERE id = 1 -- 06:40:30.162 SQL [8027]: Found rows: 0 -- 06:40:30.162 SQL [8027]: Found rows: 0 -- 06:40:30.162 FLOG_MAX [8027]: Bad parameter exception: 'pending_id' -- 06:40:30.162 INFO [8027]: /CreateCoreGradeAccount() -- 06:40:30.162 INFO [8027]: RET: added=2020-02-05 06:33:10.799755 -- 06:40:30.162 INFO [8027]: RET: email=ameye+11@chiefsoft.com -- 06:40:30.163 INFO [8027]: RET: expire=2020-02-07 06:33:10.799755 -- 06:40:30.163 INFO [8027]: RET: firstname=Olu -- 06:40:30.163 INFO [8027]: RET: id=1 -- 06:40:30.163 INFO [8027]: RET: last_login= -- 06:40:30.163 INFO [8027]: RET: lastname=Amey -- 06:40:30.163 INFO [8027]: RET: loc=192.168.1.13 -- 06:40:30.163 INFO [8027]: RET: member_id=4 -- 06:40:30.163 INFO [8027]: RET: password= -- 06:40:30.163 INFO [8027]: RET: pending_id=1 -- 06:40:30.163 INFO [8027]: RET: phone= -- 06:40:30.163 INFO [8027]: RET: result=YES I GET TO BACK END -- 06:40:30.163 INFO [8027]: RET: status=ERROR -- 06:40:30.163 INFO [8027]: RET: username=ameye+11@chiefsoft.com -- 06:40:30.163 INFO [8027]: RET: verified= -- 06:40:30.163 INFO [8027]: RET: verify_link=RS-1398570752-1049288448-1091911424 -- 06:40:30.164 INFO [8027]: COREGRADE is stopping... -- 06:40:30.164 DEBUG [8027]: Closing database connection -- 06:40:30.164 SQL [8027]: pgsql_close() -- 06:43:26.550 INFO [8026]: COREGRADE is starting... -- 06:43:26.550 INFO [8026]: Version from config: 1.0 -- 06:43:26.550 DEBUG [8026]: Connecting to database... -- 06:43:26.550 DEBUG [8026]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:43:26.550 SQL [8026]: pgsql_db_connect() -- 06:43:26.554 DEBUG [8026]: Database connection successful -- 06:43:26.554 INFO [8026]: _SERVER found -- 06:43:26.554 INFO [8026]: REMOTE_ADDR = 192.168.1.13 -- 06:43:26.554 INFO [8026]: SERVER_NAME = oameye.works.coregrade.com -- 06:43:26.554 INFO [8026]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=j3k7kn6p2c8618jk86g6b241bs93n32h -- 06:43:26.554 INFO [8026]: QUERY_STRING = -- 06:43:26.554 INFO [8026]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:43:26.554 INFO [8026]: SystemStatus()09-09-********~************ -- 06:43:26.554 INFO [8026]: long coregrade_api_main(CVars in, CVars &out) -- 06:43:26.554 INFO [8026]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 06:43:26.554 INFO [8026]: account calls -- 06:43:26.555 INFO [8026]: account_calls() -- 06:43:26.555 FLOG_MAX [8026]: REQ_STRING(username) -- 06:43:26.555 FLOG_MAX [8026]: REQ_STRING(firstname) -- 06:43:26.555 FLOG_MAX [8026]: REQ_STRING(lastname) -- 06:43:26.555 FLOG_MAX [8026]: REQ_STRING(email) -- 06:43:26.555 SQL [8026]: pgsql_query() -- 06:43:26.555 SQL [8026]: About to run query: -- 06:43:26.555 SQL [8026]: SELECT * FROM members WHERE LOWER(username) = LOWER('ameye+44@chiefsoft.com') -- 06:43:26.557 SQL [8026]: Found rows: 0 -- 06:43:26.557 SQL [8026]: Found rows: 0 -- 06:43:26.557 FLOG_MAX [8026]: insert_db_record() -- 06:43:26.557 SQL [8026]: pgsql_exec() -- 06:43:26.557 SQL [8026]: About to run query: -- 06:43:26.557 SQL [8026]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ameye+44@chiefsoft.com','Olu','Amey','192.168.1.13','','ameye+44@chiefsoft.com','RS-557742336-852930304-1254910208') -- 06:43:26.626 SQL [8026]: PQcmdTuples: 1 -- 06:43:26.626 SQL [8026]: Affected rows: 1 -- 06:43:26.626 FLOG_MAX [8026]: SELECT currval('members_pending_id_seq') -- 06:43:26.626 SQL [8026]: pgsql_query() -- 06:43:26.626 SQL [8026]: About to run query: -- 06:43:26.626 SQL [8026]: SELECT currval('members_pending_id_seq') -- 06:43:26.626 SQL [8026]: Found rows: 1 -- 06:43:26.626 SQL [8026]: pgsql_query() -- 06:43:26.626 SQL [8026]: About to run query: -- 06:43:26.626 SQL [8026]: UPDATE members SET password = md5('may12002') WHERE id = 5 -- 06:43:26.627 SQL [8026]: Found rows: 0 -- 06:43:26.627 SQL [8026]: Found rows: 0 -- 06:43:26.627 FLOG_MAX [8026]: long load_db_record( CVars &rec, const char * query, ... ) -- 06:43:26.627 SQL [8026]: pgsql_query() -- 06:43:26.627 SQL [8026]: About to run query: -- 06:43:26.627 SQL [8026]: SELECT * FROM members_pending WHERE id = 5 -- 06:43:26.627 SQL [8026]: Found rows: 1 -- 06:43:26.627 FLOG_MAX [8026]: load_db_record(SELECT * FROM members_pending WHERE id = 5 ) num_cols=14 -- 06:43:26.627 FLOG_MAX [8026]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 06:43:26.628 FLOG_MAX [8026]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1692 bytes -- 06:43:26.628 FLOG_MAX [8026]: Returning from FormFile() -- 06:43:26.628 FLOG_MAX [8026]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 06:43:26.628 FLOG_MAX [8026]: ESMTP( smtp.google.com, savvy@chiefsoft.com, ameye+44@chiefsoft.com ) -- 06:43:26.628 FLOG_MAX [8026]: Prepare body -- 06:43:26.628 FLOG_MAX [8026]: Locate & extract subject -- 06:43:26.628 FLOG_MAX [8026]: Found subject: CoreGrade - Pending Signup - Verify ameye+44@chiefsoft.com -- 06:43:26.628 FLOG_MAX [8026]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp smtp.google.com -f savvy@chiefsoft.com -t ameye+44@chiefsoft.com -d chiefsoft.com -name 'CoreGrade Beta' +cc +bcc -v -port 25 -auth-plain -user savvy@chiefsoft.com -pass may12002! -sub 'CoreGrade - Pending Signup - Verify ameye+44@chiefsoft.com' -M ' - - - -
-
- - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-557742336-852930304-1254910208 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - -' -- 06:43:26.721 FLOG_MAX [8026]: - -END OF PIPE OUTPUT - - -- 06:43:26.721 FLOG_MAX [8026]: /ESMTP() -- 06:43:26.721 INFO [8026]: RET: action=11010 -- 06:43:26.721 INFO [8026]: RET: email=ameye+44@chiefsoft.com -- 06:43:26.721 INFO [8026]: RET: firstname=Olu -- 06:43:26.721 INFO [8026]: RET: lastname=Amey -- 06:43:26.721 INFO [8026]: RET: password=may12002 -- 06:43:26.721 INFO [8026]: RET: pending_id=5 -- 06:43:26.721 INFO [8026]: RET: pid=100 -- 06:43:26.721 INFO [8026]: RET: status_message=Pending -- 06:43:26.721 INFO [8026]: RET: username=ameye+44@chiefsoft.com -- 06:43:26.724 INFO [8026]: COREGRADE is stopping... -- 06:43:26.724 DEBUG [8026]: Closing database connection -- 06:43:26.724 SQL [8026]: pgsql_close() -- 06:44:39.504 INFO [8244]: COREGRADE is starting... -- 06:44:39.505 INFO [8244]: Version from config: 1.0 -- 06:44:39.505 DEBUG [8244]: Connecting to database... -- 06:44:39.505 DEBUG [8244]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:44:39.505 SQL [8244]: pgsql_db_connect() -- 06:44:39.509 DEBUG [8244]: Database connection successful -- 06:44:39.509 INFO [8244]: _SERVER found -- 06:44:39.509 INFO [8244]: REMOTE_ADDR = 192.168.1.13 -- 06:44:39.509 INFO [8244]: SERVER_NAME = oameye.works.coregrade.com -- 06:44:39.509 INFO [8244]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=gnourijtp4od14be3vpcf3frc5dkma94 -- 06:44:39.509 INFO [8244]: QUERY_STRING = -- 06:44:39.509 INFO [8244]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:44:39.509 INFO [8244]: SystemStatus()09-09-********~************ -- 06:44:39.509 INFO [8244]: long coregrade_api_main(CVars in, CVars &out) -- 06:44:39.509 INFO [8244]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 06:44:39.509 INFO [8244]: /long coregrade_api_main(CVars in, CVars &out) -- 06:44:39.509 INFO [8244]: RET: status=Unknown action -- 06:44:39.511 INFO [8244]: COREGRADE is stopping... -- 06:44:39.511 DEBUG [8244]: Closing database connection -- 06:44:39.511 SQL [8244]: pgsql_close() -- 06:44:49.209 INFO [8245]: COREGRADE is starting... -- 06:44:49.209 INFO [8245]: Version from config: 1.0 -- 06:44:49.209 DEBUG [8245]: Connecting to database... -- 06:44:49.209 DEBUG [8245]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:44:49.209 SQL [8245]: pgsql_db_connect() -- 06:44:49.213 DEBUG [8245]: Database connection successful -- 06:44:49.213 INFO [8245]: _SERVER found -- 06:44:49.213 INFO [8245]: REMOTE_ADDR = 192.168.1.13 -- 06:44:49.213 INFO [8245]: SERVER_NAME = oameye.works.coregrade.com -- 06:44:49.213 INFO [8245]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=gnourijtp4od14be3vpcf3frc5dkma94 -- 06:44:49.213 INFO [8245]: QUERY_STRING = -- 06:44:49.213 INFO [8245]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:44:49.213 INFO [8245]: SystemStatus()09-09-********~************ -- 06:44:49.213 INFO [8245]: long coregrade_api_main(CVars in, CVars &out) -- 06:44:49.214 INFO [8245]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 06:44:49.214 INFO [8245]: /long coregrade_api_main(CVars in, CVars &out) -- 06:44:49.214 INFO [8245]: RET: status=Unknown action -- 06:44:49.215 INFO [8245]: COREGRADE is stopping... -- 06:44:49.215 DEBUG [8245]: Closing database connection -- 06:44:49.215 SQL [8245]: pgsql_close() -- 06:44:56.053 INFO [8246]: COREGRADE is starting... -- 06:44:56.054 INFO [8246]: Version from config: 1.0 -- 06:44:56.054 DEBUG [8246]: Connecting to database... -- 06:44:56.054 DEBUG [8246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:44:56.054 SQL [8246]: pgsql_db_connect() -- 06:44:56.058 DEBUG [8246]: Database connection successful -- 06:44:56.058 INFO [8246]: _SERVER found -- 06:44:56.058 INFO [8246]: REMOTE_ADDR = 192.168.1.13 -- 06:44:56.058 INFO [8246]: SERVER_NAME = oameye.works.coregrade.com -- 06:44:56.058 INFO [8246]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=gnourijtp4od14be3vpcf3frc5dkma94 -- 06:44:56.058 INFO [8246]: QUERY_STRING = -- 06:44:56.058 INFO [8246]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:44:56.058 INFO [8246]: SystemStatus()09-09-********~************ -- 06:44:56.058 INFO [8246]: long coregrade_api_main(CVars in, CVars &out) -- 06:44:56.058 INFO [8246]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 06:44:56.058 INFO [8246]: /long coregrade_api_main(CVars in, CVars &out) -- 06:44:56.058 INFO [8246]: RET: status=Unknown action -- 06:44:56.059 INFO [8246]: COREGRADE is stopping... -- 06:44:56.059 DEBUG [8246]: Closing database connection -- 06:44:56.059 SQL [8246]: pgsql_close() -- 06:45:15.946 INFO [8244]: COREGRADE is starting... -- 06:45:15.947 INFO [8244]: Version from config: 1.0 -- 06:45:15.947 DEBUG [8244]: Connecting to database... -- 06:45:15.947 DEBUG [8244]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:45:15.947 SQL [8244]: pgsql_db_connect() -- 06:45:15.951 DEBUG [8244]: Database connection successful -- 06:45:15.951 INFO [8244]: _SERVER found -- 06:45:15.951 INFO [8244]: REMOTE_ADDR = 192.168.1.13 -- 06:45:15.951 INFO [8244]: SERVER_NAME = oameye.works.coregrade.com -- 06:45:15.951 INFO [8244]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=gnourijtp4od14be3vpcf3frc5dkma94 -- 06:45:15.951 INFO [8244]: QUERY_STRING = -- 06:45:15.951 INFO [8244]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:45:15.951 INFO [8244]: SystemStatus()09-09-********~************ -- 06:45:15.951 INFO [8244]: long coregrade_api_main(CVars in, CVars &out) -- 06:45:15.951 INFO [8244]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 06:45:15.951 INFO [8244]: account calls -- 06:45:15.951 INFO [8244]: account_calls() -- 06:45:15.951 FLOG_MAX [8244]: REQ_STRING(username) -- 06:45:15.951 FLOG_MAX [8244]: REQ_STRING(firstname) -- 06:45:15.951 FLOG_MAX [8244]: REQ_STRING(lastname) -- 06:45:15.951 FLOG_MAX [8244]: REQ_STRING(email) -- 06:45:15.951 SQL [8244]: pgsql_query() -- 06:45:15.951 SQL [8244]: About to run query: -- 06:45:15.951 SQL [8244]: SELECT * FROM members WHERE LOWER(username) = LOWER('ameye+22@chiefsoft.com') -- 06:45:15.953 SQL [8244]: Found rows: 0 -- 06:45:15.953 SQL [8244]: Found rows: 0 -- 06:45:15.953 FLOG_MAX [8244]: insert_db_record() -- 06:45:15.953 SQL [8244]: pgsql_exec() -- 06:45:15.953 SQL [8244]: About to run query: -- 06:45:15.953 SQL [8244]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ameye+22@chiefsoft.com','Olu','Amey','192.168.1.13','','ameye+22@chiefsoft.com','RS-340102912-1718616320-329683200') -- 06:45:15.954 SQL [8244]: Affected rows: ERROR -- 06:45:15.954 FLOG_MAX [8244]: SELECT currval('members_pending_id_seq') -- 06:45:15.954 SQL [8244]: pgsql_query() -- 06:45:15.954 SQL [8244]: About to run query: -- 06:45:15.954 SQL [8244]: SELECT currval('members_pending_id_seq') -- 06:45:15.954 SQL [8244]: Found rows: ERROR -- 06:45:15.955 FLOG_MAX [8244]: SQL error -- 06:45:15.955 INFO [8244]: RET: action=11010 -- 06:45:15.955 INFO [8244]: RET: email=ameye+22@chiefsoft.com -- 06:45:15.955 INFO [8244]: RET: firstname=Olu -- 06:45:15.955 INFO [8244]: RET: lastname=Amey -- 06:45:15.955 INFO [8244]: RET: password=may12002 -- 06:45:15.955 INFO [8244]: RET: pending_id=0 -- 06:45:15.955 INFO [8244]: RET: pid=100 -- 06:45:15.955 INFO [8244]: RET: status_message=Pending -- 06:45:15.955 INFO [8244]: RET: username=ameye+22@chiefsoft.com -- 06:45:15.956 INFO [8244]: COREGRADE is stopping... -- 06:45:15.956 DEBUG [8244]: Closing database connection -- 06:45:15.956 SQL [8244]: pgsql_close() -- 06:46:27.376 INFO [8245]: COREGRADE is starting... -- 06:46:27.376 INFO [8245]: Version from config: 1.0 -- 06:46:27.376 DEBUG [8245]: Connecting to database... -- 06:46:27.376 DEBUG [8245]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:46:27.376 SQL [8245]: pgsql_db_connect() -- 06:46:27.383 DEBUG [8245]: Database connection successful -- 06:46:27.383 INFO [8245]: _SERVER found -- 06:46:27.383 INFO [8245]: REMOTE_ADDR = 192.168.1.13 -- 06:46:27.383 INFO [8245]: SERVER_NAME = oameye.works.coregrade.com -- 06:46:27.383 INFO [8245]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=gnourijtp4od14be3vpcf3frc5dkma94 -- 06:46:27.383 INFO [8245]: QUERY_STRING = -- 06:46:27.383 INFO [8245]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:46:27.383 INFO [8245]: SystemStatus()09-09-********~************ -- 06:46:27.383 INFO [8245]: long coregrade_api_main(CVars in, CVars &out) -- 06:46:27.383 INFO [8245]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 06:46:27.383 INFO [8245]: account calls -- 06:46:27.383 INFO [8245]: account_calls() -- 06:46:27.383 FLOG_MAX [8245]: REQ_STRING(username) -- 06:46:27.383 FLOG_MAX [8245]: REQ_STRING(firstname) -- 06:46:27.383 FLOG_MAX [8245]: REQ_STRING(lastname) -- 06:46:27.383 FLOG_MAX [8245]: REQ_STRING(email) -- 06:46:27.384 SQL [8245]: pgsql_query() -- 06:46:27.384 SQL [8245]: About to run query: -- 06:46:27.384 SQL [8245]: SELECT * FROM members WHERE LOWER(username) = LOWER('ameye+11@chiefsoft.com') -- 06:46:27.385 SQL [8245]: Found rows: 0 -- 06:46:27.385 SQL [8245]: Found rows: 0 -- 06:46:27.386 FLOG_MAX [8245]: insert_db_record() -- 06:46:27.386 SQL [8245]: pgsql_exec() -- 06:46:27.386 SQL [8245]: About to run query: -- 06:46:27.386 SQL [8245]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ameye+11@chiefsoft.com','Olu','Amey','192.168.1.13','','ameye+11@chiefsoft.com','RS-1644451584-813019392-1414137600') -- 06:46:27.387 SQL [8245]: PQcmdTuples: 1 -- 06:46:27.387 SQL [8245]: Affected rows: 1 -- 06:46:27.387 FLOG_MAX [8245]: SELECT currval('members_pending_id_seq') -- 06:46:27.387 SQL [8245]: pgsql_query() -- 06:46:27.387 SQL [8245]: About to run query: -- 06:46:27.387 SQL [8245]: SELECT currval('members_pending_id_seq') -- 06:46:27.388 SQL [8245]: Found rows: 1 -- 06:46:27.388 SQL [8245]: pgsql_query() -- 06:46:27.388 SQL [8245]: About to run query: -- 06:46:27.388 SQL [8245]: UPDATE members_pending SET password = md5('may12002') WHERE id = 1 -- 06:46:27.389 SQL [8245]: Found rows: 0 -- 06:46:27.389 SQL [8245]: Found rows: 0 -- 06:46:27.389 FLOG_MAX [8245]: long load_db_record( CVars &rec, const char * query, ... ) -- 06:46:27.389 SQL [8245]: pgsql_query() -- 06:46:27.389 SQL [8245]: About to run query: -- 06:46:27.389 SQL [8245]: SELECT * FROM members_pending WHERE id = 1 -- 06:46:27.389 SQL [8245]: Found rows: 1 -- 06:46:27.389 FLOG_MAX [8245]: load_db_record(SELECT * FROM members_pending WHERE id = 1 ) num_cols=13 -- 06:46:27.389 FLOG_MAX [8245]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 06:46:27.389 FLOG_MAX [8245]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1692 bytes -- 06:46:27.389 FLOG_MAX [8245]: Returning from FormFile() -- 06:46:27.389 FLOG_MAX [8245]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 06:46:27.389 FLOG_MAX [8245]: ESMTP( smtp.google.com, savvy@chiefsoft.com, ameye+11@chiefsoft.com ) -- 06:46:27.389 FLOG_MAX [8245]: Prepare body -- 06:46:27.389 FLOG_MAX [8245]: Locate & extract subject -- 06:46:27.389 FLOG_MAX [8245]: Found subject: CoreGrade - Pending Signup - Verify ameye+11@chiefsoft.com -- 06:46:27.389 FLOG_MAX [8245]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp smtp.google.com -f savvy@chiefsoft.com -t ameye+11@chiefsoft.com -d chiefsoft.com -name 'CoreGrade Beta' +cc +bcc -v -port 25 -auth-plain -user savvy@chiefsoft.com -pass may12002! -sub 'CoreGrade - Pending Signup - Verify ameye+11@chiefsoft.com' -M ' - - - -
-
- - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-1644451584-813019392-1414137600 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - -' -- 06:46:27.418 FLOG_MAX [8245]: - -END OF PIPE OUTPUT - - -- 06:46:27.418 FLOG_MAX [8245]: /ESMTP() -- 06:46:27.418 INFO [8245]: RET: action=11010 -- 06:46:27.418 INFO [8245]: RET: email=ameye+11@chiefsoft.com -- 06:46:27.418 INFO [8245]: RET: firstname=Olu -- 06:46:27.418 INFO [8245]: RET: lastname=Amey -- 06:46:27.418 INFO [8245]: RET: password=may12002 -- 06:46:27.418 INFO [8245]: RET: pending_id=1 -- 06:46:27.418 INFO [8245]: RET: pid=100 -- 06:46:27.418 INFO [8245]: RET: status_message=Pending -- 06:46:27.418 INFO [8245]: RET: username=ameye+11@chiefsoft.com -- 06:46:27.420 INFO [8245]: COREGRADE is stopping... -- 06:46:27.420 DEBUG [8245]: Closing database connection -- 06:46:27.421 SQL [8245]: pgsql_close() -- 06:47:23.974 INFO [8246]: COREGRADE is starting... -- 06:47:23.974 INFO [8246]: Version from config: 1.0 -- 06:47:23.974 DEBUG [8246]: Connecting to database... -- 06:47:23.974 DEBUG [8246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:47:23.974 SQL [8246]: pgsql_db_connect() -- 06:47:23.978 DEBUG [8246]: Database connection successful -- 06:47:23.978 INFO [8246]: _SERVER found -- 06:47:23.978 INFO [8246]: REMOTE_ADDR = 192.168.1.13 -- 06:47:23.978 INFO [8246]: SERVER_NAME = oameye.works.coregrade.com -- 06:47:23.979 INFO [8246]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=gnourijtp4od14be3vpcf3frc5dkma94 -- 06:47:23.979 INFO [8246]: QUERY_STRING = vlnk=RS-1644451584-813019392-1414137600 -- 06:47:23.979 INFO [8246]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:47:23.979 INFO [8246]: SystemStatus()09-09-********~************ -- 06:47:23.979 INFO [8246]: long coregrade_api_main(CVars in, CVars &out) -- 06:47:23.979 INFO [8246]: long coregrade_api_main(CVars in, CVars &out) action =11020 -- 06:47:23.979 INFO [8246]: account calls -- 06:47:23.979 INFO [8246]: account_calls() -- 06:47:23.979 INFO [8246]: CreateCoreGradeAccount() -- 06:47:23.979 FLOG_MAX [8246]: REQ_STRING(verify_link) -- 06:47:23.979 FLOG_MAX [8246]: long load_db_record( CVars &rec, const char * query, ... ) -- 06:47:23.979 SQL [8246]: pgsql_query() -- 06:47:23.979 SQL [8246]: About to run query: -- 06:47:23.979 SQL [8246]: SELECT *,id AS pending_id FROM members_pending WHERE verify_link ='RS-1644451584-813019392-1414137600' AND expire > now() LIMIT 1 -- 06:47:23.981 SQL [8246]: Found rows: 1 -- 06:47:23.981 FLOG_MAX [8246]: load_db_record(SELECT *,id AS pending_id FROM members_pending WHERE verify_link ='RS-1644451584-813019392-1414137600' AND expire > now() LIMIT 1) num_cols=14 -- 06:47:23.982 FLOG_MAX [8246]: insert_db_record() -- 06:47:23.982 SQL [8246]: pgsql_exec() -- 06:47:23.982 SQL [8246]: About to run query: -- 06:47:23.982 SQL [8246]: INSERT INTO members (email,firstname,lastname,loc,password,phone,username) VALUES ('ameye+11@chiefsoft.com','Olu','Amey','192.168.1.13','d0fbea2563b377ea7074bced45c88dcb','','ameye+11@chiefsoft.com') -- 06:47:23.983 SQL [8246]: PQcmdTuples: 1 -- 06:47:23.983 SQL [8246]: Affected rows: 1 -- 06:47:23.983 FLOG_MAX [8246]: SELECT currval('members_id_seq') -- 06:47:23.983 SQL [8246]: pgsql_query() -- 06:47:23.983 SQL [8246]: About to run query: -- 06:47:23.983 SQL [8246]: SELECT currval('members_id_seq') -- 06:47:23.984 SQL [8246]: Found rows: 1 -- 06:47:23.984 SQL [8246]: pgsql_query() -- 06:47:23.984 SQL [8246]: About to run query: -- 06:47:23.984 SQL [8246]: UPDATE members_pending SET status = 5,verified=now() WHERE id = 1 -- 06:47:23.985 SQL [8246]: Found rows: 0 -- 06:47:23.985 SQL [8246]: Found rows: 0 -- 06:47:23.985 INFO [8246]: /CreateCoreGradeAccount() -- 06:47:23.985 INFO [8246]: RET: added=2020-02-05 06:46:27.386148 -- 06:47:23.985 INFO [8246]: RET: email=ameye+11@chiefsoft.com -- 06:47:23.985 INFO [8246]: RET: expire=2020-02-07 06:46:27.386148 -- 06:47:23.985 INFO [8246]: RET: firstname=Olu -- 06:47:23.985 INFO [8246]: RET: id=1 -- 06:47:23.985 INFO [8246]: RET: lastname=Amey -- 06:47:23.985 INFO [8246]: RET: loc=192.168.1.13 -- 06:47:23.985 INFO [8246]: RET: member_id=5 -- 06:47:23.985 INFO [8246]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 06:47:23.985 INFO [8246]: RET: pending_id=1 -- 06:47:23.985 INFO [8246]: RET: phone= -- 06:47:23.985 INFO [8246]: RET: result=YES I GET TO BACK END -- 06:47:23.985 INFO [8246]: RET: status=prepare to create account -- 06:47:23.985 INFO [8246]: RET: username=ameye+11@chiefsoft.com -- 06:47:23.985 INFO [8246]: RET: verified= -- 06:47:23.985 INFO [8246]: RET: verify_link=RS-1644451584-813019392-1414137600 -- 06:47:23.986 INFO [8246]: COREGRADE is stopping... -- 06:47:23.986 DEBUG [8246]: Closing database connection -- 06:47:23.986 SQL [8246]: pgsql_close() -- 06:51:25.937 INFO [8248]: COREGRADE is starting... -- 06:51:25.937 INFO [8248]: Version from config: 1.0 -- 06:51:25.937 DEBUG [8248]: Connecting to database... -- 06:51:25.937 DEBUG [8248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:51:25.937 SQL [8248]: pgsql_db_connect() -- 06:51:25.942 DEBUG [8248]: Database connection successful -- 06:51:25.942 INFO [8248]: _SERVER found -- 06:51:25.942 INFO [8248]: REMOTE_ADDR = 192.168.1.13 -- 06:51:25.942 INFO [8248]: SERVER_NAME = oameye.works.coregrade.com -- 06:51:25.942 INFO [8248]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=gnourijtp4od14be3vpcf3frc5dkma94 -- 06:51:25.942 INFO [8248]: QUERY_STRING = vlnk=RS-1644451584-813019392-1414137600 -- 06:51:25.942 INFO [8248]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:51:25.942 INFO [8248]: SystemStatus()09-09-********~************ -- 06:51:25.942 INFO [8248]: long coregrade_api_main(CVars in, CVars &out) -- 06:51:25.942 INFO [8248]: long coregrade_api_main(CVars in, CVars &out) action =11020 -- 06:51:25.942 INFO [8248]: account calls -- 06:51:25.942 INFO [8248]: account_calls() -- 06:51:25.942 INFO [8248]: CreateCoreGradeAccount() -- 06:51:25.942 FLOG_MAX [8248]: REQ_STRING(verify_link) -- 06:51:25.942 FLOG_MAX [8248]: long load_db_record( CVars &rec, const char * query, ... ) -- 06:51:25.942 SQL [8248]: pgsql_query() -- 06:51:25.942 SQL [8248]: About to run query: -- 06:51:25.942 SQL [8248]: SELECT *,id AS pending_id FROM members_pending WHERE verify_link ='RS-1644451584-813019392-1414137600' AND expire > now() LIMIT 1 -- 06:51:25.945 SQL [8248]: Found rows: 1 -- 06:51:25.945 FLOG_MAX [8248]: load_db_record(SELECT *,id AS pending_id FROM members_pending WHERE verify_link ='RS-1644451584-813019392-1414137600' AND expire > now() LIMIT 1) num_cols=14 -- 06:51:25.945 FLOG_MAX [8248]: insert_db_record() -- 06:51:25.945 SQL [8248]: pgsql_exec() -- 06:51:25.946 SQL [8248]: About to run query: -- 06:51:25.946 SQL [8248]: INSERT INTO members (email,firstname,lastname,loc,password,phone,username) VALUES ('ameye+11@chiefsoft.com','Olu','Amey','192.168.1.13','d0fbea2563b377ea7074bced45c88dcb','','ameye+11@chiefsoft.com') -- 06:51:25.947 SQL [8248]: Affected rows: ERROR -- 06:51:25.947 FLOG_MAX [8248]: SELECT currval('members_id_seq') -- 06:51:25.947 SQL [8248]: pgsql_query() -- 06:51:25.947 SQL [8248]: About to run query: -- 06:51:25.947 SQL [8248]: SELECT currval('members_id_seq') -- 06:51:25.947 SQL [8248]: Found rows: 1 -- 06:51:25.947 SQL [8248]: pgsql_query() -- 06:51:25.947 SQL [8248]: About to run query: -- 06:51:25.947 SQL [8248]: UPDATE members_pending SET status = 5,verified=now() WHERE id = 1 -- 06:51:25.948 SQL [8248]: Found rows: 0 -- 06:51:25.948 SQL [8248]: Found rows: 0 -- 06:51:25.948 INFO [8248]: /CreateCoreGradeAccount() -- 06:51:25.948 INFO [8248]: RET: added=2020-02-05 06:46:27.386148 -- 06:51:25.948 INFO [8248]: RET: email=ameye+11@chiefsoft.com -- 06:51:25.948 INFO [8248]: RET: expire=2020-02-07 06:46:27.386148 -- 06:51:25.948 INFO [8248]: RET: firstname=Olu -- 06:51:25.948 INFO [8248]: RET: id=1 -- 06:51:25.948 INFO [8248]: RET: lastname=Amey -- 06:51:25.948 INFO [8248]: RET: loc=192.168.1.13 -- 06:51:25.948 INFO [8248]: RET: member_id=6 -- 06:51:25.948 INFO [8248]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 06:51:25.948 INFO [8248]: RET: pending_id=1 -- 06:51:25.948 INFO [8248]: RET: phone= -- 06:51:25.948 INFO [8248]: RET: result=YES I GET TO BACK END -- 06:51:25.948 INFO [8248]: RET: status=prepare to create account -- 06:51:25.948 INFO [8248]: RET: username=ameye+11@chiefsoft.com -- 06:51:25.948 INFO [8248]: RET: verified=2020-02-05 06:47:23.984168 -- 06:51:25.948 INFO [8248]: RET: verify_link=RS-1644451584-813019392-1414137600 -- 06:51:25.950 INFO [8248]: COREGRADE is stopping... -- 06:51:25.950 DEBUG [8248]: Closing database connection -- 06:51:25.950 SQL [8248]: pgsql_close() -- 06:51:44.445 INFO [8303]: COREGRADE is starting... -- 06:51:44.445 INFO [8303]: Version from config: 1.0 -- 06:51:44.445 DEBUG [8303]: Connecting to database... -- 06:51:44.445 DEBUG [8303]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:51:44.445 SQL [8303]: pgsql_db_connect() -- 06:51:44.449 DEBUG [8303]: Database connection successful -- 06:51:44.449 INFO [8303]: _SERVER found -- 06:51:44.449 INFO [8303]: REMOTE_ADDR = 192.168.1.13 -- 06:51:44.449 INFO [8303]: SERVER_NAME = oameye.works.coregrade.com -- 06:51:44.449 INFO [8303]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=h1eaiin1l9a6bbvibsj4jskjfqu7h85k -- 06:51:44.449 INFO [8303]: QUERY_STRING = -- 06:51:44.449 INFO [8303]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:51:44.449 INFO [8303]: SystemStatus()09-09-********~************ -- 06:51:44.449 INFO [8303]: long coregrade_api_main(CVars in, CVars &out) -- 06:51:44.449 INFO [8303]: long coregrade_api_main(CVars in, CVars &out) action =100 -- 06:51:44.449 INFO [8303]: /long coregrade_api_main(CVars in, CVars &out) -- 06:51:44.449 INFO [8303]: RET: status=Unknown action -- 06:51:44.451 INFO [8303]: COREGRADE is stopping... -- 06:51:44.451 DEBUG [8303]: Closing database connection -- 06:51:44.451 SQL [8303]: pgsql_close() -- 06:57:25.121 INFO [8247]: COREGRADE is starting... -- 06:57:25.121 INFO [8247]: Version from config: 1.0 -- 06:57:25.121 DEBUG [8247]: Connecting to database... -- 06:57:25.121 DEBUG [8247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:57:25.121 SQL [8247]: pgsql_db_connect() -- 06:57:25.126 DEBUG [8247]: Database connection successful -- 06:57:25.126 INFO [8247]: _SERVER found -- 06:57:25.126 INFO [8247]: REMOTE_ADDR = 192.168.1.13 -- 06:57:25.126 INFO [8247]: SERVER_NAME = oameye.works.coregrade.com -- 06:57:25.126 INFO [8247]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=9k6m40feiskddej0ko28n12ofq9beb2s -- 06:57:25.126 INFO [8247]: QUERY_STRING = -- 06:57:25.126 INFO [8247]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:57:25.126 INFO [8247]: SystemStatus()09-09-********~************ -- 06:57:25.126 INFO [8247]: long coregrade_api_main(CVars in, CVars &out) -- 06:57:25.126 INFO [8247]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 06:57:25.126 INFO [8247]: account calls -- 06:57:25.126 INFO [8247]: account_calls() -- 06:57:25.126 INFO [8247]: LoginCoreGradeAccount() -- 06:57:25.126 FLOG_MAX [8247]: REQ_STRING(username) -- 06:57:25.126 FLOG_MAX [8247]: REQ_STRING(password) -- 06:57:25.126 FLOG_MAX [8247]: REQ_STRING(sessionid) -- 06:57:25.126 FLOG_MAX [8247]: Error in parameter 'sessionid', len= 4 <= 1 <= 40 -- 06:57:25.126 FLOG_MAX [8247]: Bad parameter exception: 'sessionid' -- 06:57:25.127 INFO [8247]: RET: result=YES I GET TO BACK END -- 06:57:25.127 INFO [8247]: RET: status=Incorrect input parameter -- 06:57:25.128 INFO [8247]: COREGRADE is stopping... -- 06:57:25.128 DEBUG [8247]: Closing database connection -- 06:57:25.128 SQL [8247]: pgsql_close() -- 06:58:34.250 INFO [8248]: COREGRADE is starting... -- 06:58:34.251 INFO [8248]: Version from config: 1.0 -- 06:58:34.251 DEBUG [8248]: Connecting to database... -- 06:58:34.251 DEBUG [8248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:58:34.251 SQL [8248]: pgsql_db_connect() -- 06:58:34.255 DEBUG [8248]: Database connection successful -- 06:58:34.255 INFO [8248]: _SERVER found -- 06:58:34.255 INFO [8248]: REMOTE_ADDR = 192.168.1.13 -- 06:58:34.255 INFO [8248]: SERVER_NAME = oameye.works.coregrade.com -- 06:58:34.255 INFO [8248]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=9k6m40feiskddej0ko28n12ofq9beb2s -- 06:58:34.255 INFO [8248]: QUERY_STRING = -- 06:58:34.255 INFO [8248]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:58:34.255 INFO [8248]: SystemStatus()09-09-********~************ -- 06:58:34.255 INFO [8248]: long coregrade_api_main(CVars in, CVars &out) -- 06:58:34.255 INFO [8248]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 06:58:34.255 INFO [8248]: account calls -- 06:58:34.255 INFO [8248]: account_calls() -- 06:58:34.255 INFO [8248]: LoginCoreGradeAccount() -- 06:58:34.255 FLOG_MAX [8248]: REQ_STRING(username) -- 06:58:34.255 FLOG_MAX [8248]: REQ_STRING(password) -- 06:58:34.255 FLOG_MAX [8248]: REQ_STRING(sessionid) -- 06:58:34.255 FLOG_MAX [8248]: long load_db_record( CVars &rec, const char * query, ... ) -- 06:58:34.255 SQL [8248]: pgsql_query() -- 06:58:34.255 SQL [8248]: About to run query: -- 06:58:34.255 SQL [8248]: SELECT *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye@chiefsoft.com') AND password= md5('242252526') -- 06:58:34.258 SQL [8248]: Found rows: 0 -- 06:58:34.258 SQL [8248]: Found rows: 0 -- 06:58:34.258 INFO [8248]: long SessionCheck(long uid, const char *sessionid, int create ) -- 06:58:34.258 INFO [8248]: /LoginCoreGradeAccount() -- 06:58:34.258 INFO [8248]: RET: id= -- 06:58:34.259 INFO [8248]: RET: result=YES I GET TO BACK END -- 06:58:34.259 INFO [8248]: RET: status=Session check failed -- 06:58:34.260 INFO [8248]: COREGRADE is stopping... -- 06:58:34.260 DEBUG [8248]: Closing database connection -- 06:58:34.260 SQL [8248]: pgsql_close() -- 06:58:54.666 INFO [8303]: COREGRADE is starting... -- 06:58:54.666 INFO [8303]: Version from config: 1.0 -- 06:58:54.666 DEBUG [8303]: Connecting to database... -- 06:58:54.666 DEBUG [8303]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:58:54.666 SQL [8303]: pgsql_db_connect() -- 06:58:54.670 DEBUG [8303]: Database connection successful -- 06:58:54.670 INFO [8303]: _SERVER found -- 06:58:54.670 INFO [8303]: REMOTE_ADDR = 192.168.1.13 -- 06:58:54.670 INFO [8303]: SERVER_NAME = oameye.works.coregrade.com -- 06:58:54.670 INFO [8303]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=9k6m40feiskddej0ko28n12ofq9beb2s -- 06:58:54.670 INFO [8303]: QUERY_STRING = -- 06:58:54.670 INFO [8303]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:58:54.671 INFO [8303]: SystemStatus()09-09-********~************ -- 06:58:54.671 INFO [8303]: long coregrade_api_main(CVars in, CVars &out) -- 06:58:54.671 INFO [8303]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 06:58:54.671 INFO [8303]: account calls -- 06:58:54.671 INFO [8303]: account_calls() -- 06:58:54.671 INFO [8303]: LoginCoreGradeAccount() -- 06:58:54.671 FLOG_MAX [8303]: REQ_STRING(username) -- 06:58:54.671 FLOG_MAX [8303]: REQ_STRING(password) -- 06:58:54.671 FLOG_MAX [8303]: REQ_STRING(sessionid) -- 06:58:54.671 FLOG_MAX [8303]: long load_db_record( CVars &rec, const char * query, ... ) -- 06:58:54.671 SQL [8303]: pgsql_query() -- 06:58:54.671 SQL [8303]: About to run query: -- 06:58:54.671 SQL [8303]: SELECT *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 06:58:54.674 SQL [8303]: Found rows: 1 -- 06:58:54.674 FLOG_MAX [8303]: load_db_record(SELECT *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=14 -- 06:58:54.674 INFO [8303]: long SessionCheck(long uid, const char *sessionid, int create ) -- 06:58:54.674 SQL [8303]: pgsql_exec() -- 06:58:54.674 SQL [8303]: About to run query: -- 06:58:54.674 SQL [8303]: DELETE FROM members_session WHERE uid=5 AND updated < (now() - interval '15 minutes') -- 06:58:54.674 SQL [8303]: Affected rows: ERROR -- 06:58:54.674 SQL [8303]: pgsql_query() -- 06:58:54.674 SQL [8303]: About to run query: -- 06:58:54.674 SQL [8303]: SELECT * FROM members_session WHERE uid=5 AND sessionid<>'12345678901234567890' -- 06:58:54.675 SQL [8303]: Found rows: ERROR -- 06:58:54.675 FLOG_MAX [8303]: long load_db_record( CVars &rec, const char * query, ... ) -- 06:58:54.675 SQL [8303]: pgsql_query() -- 06:58:54.675 SQL [8303]: About to run query: -- 06:58:54.675 SQL [8303]: SELECT * FROM members_session WHERE uid=5 AND sessionid='12345678901234567890' -- 06:58:54.675 SQL [8303]: Found rows: ERROR -- 06:58:54.675 FLOG_MAX [8303]: insert_db_record() -- 06:58:54.675 SQL [8303]: pgsql_exec() -- 06:58:54.675 SQL [8303]: About to run query: -- 06:58:54.675 SQL [8303]: INSERT INTO members_session (sessionid,uid) VALUES ('12345678901234567890','5') -- 06:58:54.676 SQL [8303]: Affected rows: ERROR -- 06:58:54.676 FLOG_MAX [8303]: SELECT currval('members_session_id_seq') -- 06:58:54.676 SQL [8303]: pgsql_query() -- 06:58:54.676 SQL [8303]: About to run query: -- 06:58:54.676 SQL [8303]: SELECT currval('members_session_id_seq') -- 06:58:54.676 SQL [8303]: Found rows: ERROR -- 06:58:54.676 FLOG_MAX [8303]: SQL error -- 06:58:54.676 INFO [8303]: /LoginCoreGradeAccount() -- 06:58:54.676 INFO [8303]: RET: added=2020-02-05 06:47:23.982154 -- 06:58:54.676 INFO [8303]: RET: email=ameye+11@chiefsoft.com -- 06:58:54.676 INFO [8303]: RET: firstname=Olu -- 06:58:54.676 INFO [8303]: RET: id=5 -- 06:58:54.676 INFO [8303]: RET: last_login= -- 06:58:54.676 INFO [8303]: RET: lastname=Amey -- 06:58:54.676 INFO [8303]: RET: loc=192.168.1.13 -- 06:58:54.676 INFO [8303]: RET: member_id=5 -- 06:58:54.676 INFO [8303]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 06:58:54.676 INFO [8303]: RET: phone= -- 06:58:54.676 INFO [8303]: RET: pid= -- 06:58:54.676 INFO [8303]: RET: result=YES I GET TO BACK END -- 06:58:54.676 INFO [8303]: RET: status=Session check failed -- 06:58:54.676 INFO [8303]: RET: username=ameye+11@chiefsoft.com -- 06:58:54.676 INFO [8303]: RET: verified= -- 06:58:54.677 INFO [8303]: COREGRADE is stopping... -- 06:58:54.677 DEBUG [8303]: Closing database connection -- 06:58:54.677 SQL [8303]: pgsql_close() -- 07:01:51.683 INFO [8515]: COREGRADE is starting... -- 07:01:51.683 INFO [8515]: Version from config: 1.0 -- 07:01:51.683 DEBUG [8515]: Connecting to database... -- 07:01:51.683 DEBUG [8515]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:01:51.683 SQL [8515]: pgsql_db_connect() -- 07:01:51.688 DEBUG [8515]: Database connection successful -- 07:01:51.688 INFO [8515]: _SERVER found -- 07:01:51.688 INFO [8515]: REMOTE_ADDR = 192.168.1.13 -- 07:01:51.688 INFO [8515]: SERVER_NAME = oameye.works.coregrade.com -- 07:01:51.688 INFO [8515]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=9k6m40feiskddej0ko28n12ofq9beb2s -- 07:01:51.688 INFO [8515]: QUERY_STRING = -- 07:01:51.688 INFO [8515]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:01:51.688 INFO [8515]: SystemStatus()09-09-********~************ -- 07:01:51.688 INFO [8515]: long coregrade_api_main(CVars in, CVars &out) -- 07:01:51.688 INFO [8515]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 07:01:51.688 INFO [8515]: account calls -- 07:01:51.688 INFO [8515]: account_calls() -- 07:01:51.688 INFO [8515]: LoginCoreGradeAccount() -- 07:01:51.688 FLOG_MAX [8515]: REQ_STRING(username) -- 07:01:51.688 FLOG_MAX [8515]: REQ_STRING(password) -- 07:01:51.688 FLOG_MAX [8515]: REQ_STRING(sessionid) -- 07:01:51.688 FLOG_MAX [8515]: long load_db_record( CVars &rec, const char * query, ... ) -- 07:01:51.688 SQL [8515]: pgsql_query() -- 07:01:51.688 SQL [8515]: About to run query: -- 07:01:51.688 SQL [8515]: SELECT *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 07:01:51.692 SQL [8515]: Found rows: 1 -- 07:01:51.692 FLOG_MAX [8515]: load_db_record(SELECT *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=14 -- 07:01:51.692 INFO [8515]: long SessionCheck(long uid, const char *sessionid, int create ) -- 07:01:51.692 SQL [8515]: pgsql_exec() -- 07:01:51.692 SQL [8515]: About to run query: -- 07:01:51.692 SQL [8515]: DELETE FROM members_session WHERE uid=5 AND updated < (now() - interval '15 minutes') -- 07:01:51.692 SQL [8515]: Affected rows: ERROR -- 07:01:51.692 SQL [8515]: pgsql_query() -- 07:01:51.692 SQL [8515]: About to run query: -- 07:01:51.692 SQL [8515]: SELECT * FROM members_session WHERE member_id=5 AND sessionid<>'12345678901234567890' -- 07:01:51.693 SQL [8515]: Found rows: ERROR -- 07:01:51.693 FLOG_MAX [8515]: long load_db_record( CVars &rec, const char * query, ... ) -- 07:01:51.693 SQL [8515]: pgsql_query() -- 07:01:51.693 SQL [8515]: About to run query: -- 07:01:51.693 SQL [8515]: SELECT * FROM members_session WHERE member_id=5 AND sessionid='12345678901234567890' -- 07:01:51.693 SQL [8515]: Found rows: ERROR -- 07:01:51.693 FLOG_MAX [8515]: insert_db_record() -- 07:01:51.693 SQL [8515]: pgsql_exec() -- 07:01:51.693 SQL [8515]: About to run query: -- 07:01:51.693 SQL [8515]: INSERT INTO members_session (member_id,sessionid) VALUES ('5','12345678901234567890') -- 07:01:51.693 SQL [8515]: Affected rows: ERROR -- 07:01:51.693 FLOG_MAX [8515]: SELECT currval('members_session_id_seq') -- 07:01:51.693 SQL [8515]: pgsql_query() -- 07:01:51.693 SQL [8515]: About to run query: -- 07:01:51.694 SQL [8515]: SELECT currval('members_session_id_seq') -- 07:01:51.694 SQL [8515]: Found rows: ERROR -- 07:01:51.694 FLOG_MAX [8515]: SQL error -- 07:01:51.694 INFO [8515]: /LoginCoreGradeAccount() -- 07:01:51.694 INFO [8515]: RET: added=2020-02-05 06:47:23.982154 -- 07:01:51.694 INFO [8515]: RET: email=ameye+11@chiefsoft.com -- 07:01:51.694 INFO [8515]: RET: firstname=Olu -- 07:01:51.694 INFO [8515]: RET: id=5 -- 07:01:51.694 INFO [8515]: RET: last_login= -- 07:01:51.694 INFO [8515]: RET: lastname=Amey -- 07:01:51.694 INFO [8515]: RET: loc=192.168.1.13 -- 07:01:51.694 INFO [8515]: RET: member_id=5 -- 07:01:51.694 INFO [8515]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 07:01:51.694 INFO [8515]: RET: phone= -- 07:01:51.694 INFO [8515]: RET: pid= -- 07:01:51.694 INFO [8515]: RET: result=YES I GET TO BACK END -- 07:01:51.694 INFO [8515]: RET: status=Session check failed -- 07:01:51.694 INFO [8515]: RET: username=ameye+11@chiefsoft.com -- 07:01:51.694 INFO [8515]: RET: verified= -- 07:01:51.696 INFO [8515]: COREGRADE is stopping... -- 07:01:51.696 DEBUG [8515]: Closing database connection -- 07:01:51.696 SQL [8515]: pgsql_close() -- 07:06:14.645 INFO [8701]: COREGRADE is starting... -- 07:06:14.646 INFO [8701]: Version from config: 1.0 -- 07:06:14.646 DEBUG [8701]: Connecting to database... -- 07:06:14.646 DEBUG [8701]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:06:14.646 SQL [8701]: pgsql_db_connect() -- 07:06:14.650 DEBUG [8701]: Database connection successful -- 07:06:14.650 INFO [8701]: _SERVER found -- 07:06:14.651 INFO [8701]: REMOTE_ADDR = 192.168.1.13 -- 07:06:14.651 INFO [8701]: SERVER_NAME = oameye.works.coregrade.com -- 07:06:14.651 INFO [8701]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=9k6m40feiskddej0ko28n12ofq9beb2s -- 07:06:14.651 INFO [8701]: QUERY_STRING = -- 07:06:14.651 INFO [8701]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:06:14.651 INFO [8701]: SystemStatus()09-09-********~************ -- 07:06:14.651 INFO [8701]: long coregrade_api_main(CVars in, CVars &out) -- 07:06:14.651 INFO [8701]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 07:06:14.651 INFO [8701]: account calls -- 07:06:14.651 INFO [8701]: account_calls() -- 07:06:14.651 INFO [8701]: LoginCoreGradeAccount() -- 07:06:14.651 FLOG_MAX [8701]: REQ_STRING(username) -- 07:06:14.651 FLOG_MAX [8701]: REQ_STRING(password) -- 07:06:14.651 FLOG_MAX [8701]: REQ_STRING(sessionid) -- 07:06:14.651 FLOG_MAX [8701]: long load_db_record( CVars &rec, const char * query, ... ) -- 07:06:14.651 SQL [8701]: pgsql_query() -- 07:06:14.651 SQL [8701]: About to run query: -- 07:06:14.651 SQL [8701]: SELECT md5( now()::text ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 07:06:14.654 SQL [8701]: Found rows: 1 -- 07:06:14.654 FLOG_MAX [8701]: load_db_record(SELECT md5( now()::text ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 07:06:14.654 INFO [8701]: long SessionCheck(long uid, const char *sessionid, int create ) -- 07:06:14.654 SQL [8701]: pgsql_exec() -- 07:06:14.654 SQL [8701]: About to run query: -- 07:06:14.654 SQL [8701]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '15 minutes') -- 07:06:14.655 SQL [8701]: PQcmdTuples: 0 -- 07:06:14.655 SQL [8701]: Affected rows: 0 -- 07:06:14.655 SQL [8701]: pgsql_query() -- 07:06:14.655 SQL [8701]: About to run query: -- 07:06:14.655 SQL [8701]: SELECT * FROM members_session WHERE member_id=5 AND session<>'3092073a48c81aec851c51dc7d581b81' -- 07:06:14.655 SQL [8701]: Found rows: 0 -- 07:06:14.655 SQL [8701]: Found rows: 0 -- 07:06:14.655 FLOG_MAX [8701]: long load_db_record( CVars &rec, const char * query, ... ) -- 07:06:14.655 SQL [8701]: pgsql_query() -- 07:06:14.655 SQL [8701]: About to run query: -- 07:06:14.655 SQL [8701]: SELECT * FROM members_session WHERE member_id=5 AND session='3092073a48c81aec851c51dc7d581b81' -- 07:06:14.656 SQL [8701]: Found rows: 0 -- 07:06:14.656 SQL [8701]: Found rows: 0 -- 07:06:14.656 FLOG_MAX [8701]: insert_db_record() -- 07:06:14.656 SQL [8701]: pgsql_exec() -- 07:06:14.656 SQL [8701]: About to run query: -- 07:06:14.656 SQL [8701]: INSERT INTO members_session (member_id,session) VALUES ('5','3092073a48c81aec851c51dc7d581b81') -- 07:06:14.658 SQL [8701]: PQcmdTuples: 1 -- 07:06:14.658 SQL [8701]: Affected rows: 1 -- 07:06:14.658 FLOG_MAX [8701]: SELECT currval('members_session_id_seq') -- 07:06:14.658 SQL [8701]: pgsql_query() -- 07:06:14.658 SQL [8701]: About to run query: -- 07:06:14.658 SQL [8701]: SELECT currval('members_session_id_seq') -- 07:06:14.658 SQL [8701]: Found rows: 1 -- 07:06:14.658 INFO [8701]: /LoginCoreGradeAccount() -- 07:06:14.658 INFO [8701]: RET: added=2020-02-05 06:47:23.982154 -- 07:06:14.658 INFO [8701]: RET: email=ameye+11@chiefsoft.com -- 07:06:14.658 INFO [8701]: RET: firstname=Olu -- 07:06:14.658 INFO [8701]: RET: id=5 -- 07:06:14.658 INFO [8701]: RET: last_login= -- 07:06:14.658 INFO [8701]: RET: lastname=Amey -- 07:06:14.658 INFO [8701]: RET: loc=192.168.1.13 -- 07:06:14.658 INFO [8701]: RET: member_id=5 -- 07:06:14.658 INFO [8701]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 07:06:14.658 INFO [8701]: RET: phone= -- 07:06:14.658 INFO [8701]: RET: pid= -- 07:06:14.658 INFO [8701]: RET: result=YES I GET TO BACK END -- 07:06:14.658 INFO [8701]: RET: sessionid=3092073a48c81aec851c51dc7d581b81 -- 07:06:14.658 INFO [8701]: RET: status=1 -- 07:06:14.658 INFO [8701]: RET: stauts=OK -- 07:06:14.658 INFO [8701]: RET: username=ameye+11@chiefsoft.com -- 07:06:14.658 INFO [8701]: RET: verified= -- 07:06:14.660 INFO [8701]: COREGRADE is stopping... -- 07:06:14.660 DEBUG [8701]: Closing database connection -- 07:06:14.660 SQL [8701]: pgsql_close() -- 07:07:31.129 INFO [8879]: COREGRADE is starting... -- 07:07:31.130 INFO [8879]: Version from config: 1.0 -- 07:07:31.130 DEBUG [8879]: Connecting to database... -- 07:07:31.130 DEBUG [8879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:07:31.130 SQL [8879]: pgsql_db_connect() -- 07:07:31.136 DEBUG [8879]: Database connection successful -- 07:07:31.136 INFO [8879]: _SERVER found -- 07:07:31.136 INFO [8879]: REMOTE_ADDR = 192.168.1.13 -- 07:07:31.136 INFO [8879]: SERVER_NAME = oameye.works.coregrade.com -- 07:07:31.136 INFO [8879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=tnu57l1jdd61q8samk0bhe8noad73k11 -- 07:07:31.136 INFO [8879]: QUERY_STRING = -- 07:07:31.136 INFO [8879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:07:31.136 INFO [8879]: SystemStatus()09-09-********~************ -- 07:07:31.136 INFO [8879]: long coregrade_api_main(CVars in, CVars &out) -- 07:07:31.136 INFO [8879]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 07:07:31.136 INFO [8879]: account calls -- 07:07:31.136 INFO [8879]: account_calls() -- 07:07:31.136 INFO [8879]: LoginCoreGradeAccount() -- 07:07:31.136 FLOG_MAX [8879]: REQ_STRING(username) -- 07:07:31.136 FLOG_MAX [8879]: REQ_STRING(password) -- 07:07:31.136 FLOG_MAX [8879]: REQ_STRING(sessionid) -- 07:07:31.136 FLOG_MAX [8879]: long load_db_record( CVars &rec, const char * query, ... ) -- 07:07:31.136 SQL [8879]: pgsql_query() -- 07:07:31.136 SQL [8879]: About to run query: -- 07:07:31.136 SQL [8879]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye@chiefsoft.com') AND password= md5('242252526') -- 07:07:31.139 SQL [8879]: Found rows: 0 -- 07:07:31.139 SQL [8879]: Found rows: 0 -- 07:07:31.139 INFO [8879]: long SessionCheck(long uid, const char *sessionid, int create ) -- 07:07:31.139 INFO [8879]: /LoginCoreGradeAccount() -- 07:07:31.139 INFO [8879]: RET: member_id= -- 07:07:31.139 INFO [8879]: RET: result=YES I GET TO BACK END -- 07:07:31.139 INFO [8879]: RET: sessionid= -- 07:07:31.139 INFO [8879]: RET: status=Session check failed -- 07:07:31.141 INFO [8879]: COREGRADE is stopping... -- 07:07:31.141 DEBUG [8879]: Closing database connection -- 07:07:31.141 SQL [8879]: pgsql_close() -- 07:07:40.334 INFO [8883]: COREGRADE is starting... -- 07:07:40.335 INFO [8883]: Version from config: 1.0 -- 07:07:40.335 DEBUG [8883]: Connecting to database... -- 07:07:40.335 DEBUG [8883]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:07:40.335 SQL [8883]: pgsql_db_connect() -- 07:07:40.339 DEBUG [8883]: Database connection successful -- 07:07:40.339 INFO [8883]: _SERVER found -- 07:07:40.339 INFO [8883]: REMOTE_ADDR = 192.168.1.13 -- 07:07:40.339 INFO [8883]: SERVER_NAME = oameye.works.coregrade.com -- 07:07:40.339 INFO [8883]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=tnu57l1jdd61q8samk0bhe8noad73k11 -- 07:07:40.339 INFO [8883]: QUERY_STRING = -- 07:07:40.339 INFO [8883]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:07:40.339 INFO [8883]: SystemStatus()09-09-********~************ -- 07:07:40.339 INFO [8883]: long coregrade_api_main(CVars in, CVars &out) -- 07:07:40.339 INFO [8883]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 07:07:40.339 INFO [8883]: account calls -- 07:07:40.339 INFO [8883]: account_calls() -- 07:07:40.339 INFO [8883]: LoginCoreGradeAccount() -- 07:07:40.339 FLOG_MAX [8883]: REQ_STRING(username) -- 07:07:40.339 FLOG_MAX [8883]: REQ_STRING(password) -- 07:07:40.339 FLOG_MAX [8883]: REQ_STRING(sessionid) -- 07:07:40.339 FLOG_MAX [8883]: long load_db_record( CVars &rec, const char * query, ... ) -- 07:07:40.339 SQL [8883]: pgsql_query() -- 07:07:40.339 SQL [8883]: About to run query: -- 07:07:40.339 SQL [8883]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 07:07:40.342 SQL [8883]: Found rows: 1 -- 07:07:40.342 FLOG_MAX [8883]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 07:07:40.342 INFO [8883]: long SessionCheck(long uid, const char *sessionid, int create ) -- 07:07:40.342 SQL [8883]: pgsql_exec() -- 07:07:40.342 SQL [8883]: About to run query: -- 07:07:40.342 SQL [8883]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '15 minutes') -- 07:07:40.343 SQL [8883]: PQcmdTuples: 0 -- 07:07:40.343 SQL [8883]: Affected rows: 0 -- 07:07:40.343 SQL [8883]: pgsql_query() -- 07:07:40.343 SQL [8883]: About to run query: -- 07:07:40.343 SQL [8883]: SELECT * FROM members_session WHERE member_id=5 AND session<>'271A6432A76B7A9FABA6DB52F8965ED1' -- 07:07:40.344 SQL [8883]: Found rows: 1 -- 07:07:40.344 INFO [8883]: /LoginCoreGradeAccount() -- 07:07:40.344 INFO [8883]: RET: added=2020-02-05 06:47:23.982154 -- 07:07:40.344 INFO [8883]: RET: email=ameye+11@chiefsoft.com -- 07:07:40.344 INFO [8883]: RET: firstname=Olu -- 07:07:40.344 INFO [8883]: RET: id=5 -- 07:07:40.344 INFO [8883]: RET: last_login= -- 07:07:40.344 INFO [8883]: RET: lastname=Amey -- 07:07:40.344 INFO [8883]: RET: loc=192.168.1.13 -- 07:07:40.344 INFO [8883]: RET: member_id=5 -- 07:07:40.344 INFO [8883]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 07:07:40.344 INFO [8883]: RET: phone= -- 07:07:40.344 INFO [8883]: RET: pid= -- 07:07:40.344 INFO [8883]: RET: result=YES I GET TO BACK END -- 07:07:40.344 INFO [8883]: RET: sessionid=271A6432A76B7A9FABA6DB52F8965ED1 -- 07:07:40.344 INFO [8883]: RET: status=Session check failed -- 07:07:40.344 INFO [8883]: RET: username=ameye+11@chiefsoft.com -- 07:07:40.344 INFO [8883]: RET: verified= -- 07:07:40.345 INFO [8883]: COREGRADE is stopping... -- 07:07:40.345 DEBUG [8883]: Closing database connection -- 07:07:40.345 SQL [8883]: pgsql_close() -- 07:09:52.225 INFO [8881]: COREGRADE is starting... -- 07:09:52.225 INFO [8881]: Version from config: 1.0 -- 07:09:52.225 DEBUG [8881]: Connecting to database... -- 07:09:52.226 DEBUG [8881]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:09:52.226 SQL [8881]: pgsql_db_connect() -- 07:09:52.230 DEBUG [8881]: Database connection successful -- 07:09:52.230 INFO [8881]: _SERVER found -- 07:09:52.230 INFO [8881]: REMOTE_ADDR = 192.168.1.13 -- 07:09:52.230 INFO [8881]: SERVER_NAME = oameye.works.coregrade.com -- 07:09:52.230 INFO [8881]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=tnu57l1jdd61q8samk0bhe8noad73k11 -- 07:09:52.230 INFO [8881]: QUERY_STRING = -- 07:09:52.230 INFO [8881]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:09:52.230 INFO [8881]: SystemStatus()09-09-********~************ -- 07:09:52.230 INFO [8881]: long coregrade_api_main(CVars in, CVars &out) -- 07:09:52.230 INFO [8881]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 07:09:52.230 INFO [8881]: account calls -- 07:09:52.230 INFO [8881]: account_calls() -- 07:09:52.230 INFO [8881]: LoginCoreGradeAccount() -- 07:09:52.230 FLOG_MAX [8881]: REQ_STRING(username) -- 07:09:52.230 FLOG_MAX [8881]: REQ_STRING(password) -- 07:09:52.230 FLOG_MAX [8881]: REQ_STRING(sessionid) -- 07:09:52.230 FLOG_MAX [8881]: long load_db_record( CVars &rec, const char * query, ... ) -- 07:09:52.230 SQL [8881]: pgsql_query() -- 07:09:52.230 SQL [8881]: About to run query: -- 07:09:52.230 SQL [8881]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 07:09:52.233 SQL [8881]: Found rows: 1 -- 07:09:52.233 FLOG_MAX [8881]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 07:09:52.233 INFO [8881]: long SessionCheck(long uid, const char *sessionid, int create ) -- 07:09:52.233 SQL [8881]: pgsql_exec() -- 07:09:52.233 SQL [8881]: About to run query: -- 07:09:52.233 SQL [8881]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '15 minutes') -- 07:09:52.234 SQL [8881]: PQcmdTuples: 0 -- 07:09:52.234 SQL [8881]: Affected rows: 0 -- 07:09:52.234 SQL [8881]: pgsql_query() -- 07:09:52.234 SQL [8881]: About to run query: -- 07:09:52.234 SQL [8881]: SELECT * FROM members_session WHERE member_id=5 AND session<>'C6E3642E449C2265C60E0207C6416426' -- 07:09:52.235 SQL [8881]: Found rows: 1 -- 07:09:52.235 INFO [8881]: /LoginCoreGradeAccount() -- 07:09:52.235 INFO [8881]: RET: added=2020-02-05 06:47:23.982154 -- 07:09:52.235 INFO [8881]: RET: email=ameye+11@chiefsoft.com -- 07:09:52.235 INFO [8881]: RET: firstname=Olu -- 07:09:52.235 INFO [8881]: RET: id=5 -- 07:09:52.235 INFO [8881]: RET: last_login= -- 07:09:52.235 INFO [8881]: RET: lastname=Amey -- 07:09:52.235 INFO [8881]: RET: loc=192.168.1.13 -- 07:09:52.235 INFO [8881]: RET: member_id=5 -- 07:09:52.235 INFO [8881]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 07:09:52.235 INFO [8881]: RET: phone= -- 07:09:52.235 INFO [8881]: RET: pid= -- 07:09:52.235 INFO [8881]: RET: result=YES I GET TO BACK END -- 07:09:52.235 INFO [8881]: RET: sessionid=C6E3642E449C2265C60E0207C6416426 -- 07:09:52.235 INFO [8881]: RET: status=Session check failed -- 07:09:52.235 INFO [8881]: RET: username=ameye+11@chiefsoft.com -- 07:09:52.235 INFO [8881]: RET: verified= -- 07:09:52.237 INFO [8881]: COREGRADE is stopping... -- 07:09:52.237 DEBUG [8881]: Closing database connection -- 07:09:52.237 SQL [8881]: pgsql_close() -- 07:14:43.443 INFO [8880]: COREGRADE is starting... -- 07:14:43.443 INFO [8880]: Version from config: 1.0 -- 07:14:43.443 DEBUG [8880]: Connecting to database... -- 07:14:43.443 DEBUG [8880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:14:43.443 SQL [8880]: pgsql_db_connect() -- 07:14:43.448 DEBUG [8880]: Database connection successful -- 07:14:43.448 INFO [8880]: _SERVER found -- 07:14:43.448 INFO [8880]: REMOTE_ADDR = 192.168.1.13 -- 07:14:43.448 INFO [8880]: SERVER_NAME = oameye.works.coregrade.com -- 07:14:43.448 INFO [8880]: HTTP_COOKIE = ci_session=p8if6ls5jdmoupiqdrsmd893uqrjco60 -- 07:14:43.448 INFO [8880]: QUERY_STRING = -- 07:14:43.448 INFO [8880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:14:43.448 INFO [8880]: SystemStatus()09-09-********~************ -- 07:14:43.448 INFO [8880]: long coregrade_api_main(CVars in, CVars &out) -- 07:14:43.448 INFO [8880]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 07:14:43.448 INFO [8880]: account calls -- 07:14:43.448 INFO [8880]: account_calls() -- 07:14:43.448 INFO [8880]: LoginCoreGradeAccount() -- 07:14:43.448 FLOG_MAX [8880]: REQ_STRING(username) -- 07:14:43.448 FLOG_MAX [8880]: REQ_STRING(password) -- 07:14:43.448 FLOG_MAX [8880]: REQ_STRING(sessionid) -- 07:14:43.448 FLOG_MAX [8880]: long load_db_record( CVars &rec, const char * query, ... ) -- 07:14:43.448 SQL [8880]: pgsql_query() -- 07:14:43.448 SQL [8880]: About to run query: -- 07:14:43.448 SQL [8880]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('gfnfffdjf') AND password= md5('fjfjfjfj') -- 07:14:43.452 SQL [8880]: Found rows: 0 -- 07:14:43.452 SQL [8880]: Found rows: 0 -- 07:14:43.452 INFO [8880]: long SessionCheck(long uid, const char *sessionid, int create ) -- 07:14:43.452 INFO [8880]: /LoginCoreGradeAccount() -- 07:14:43.452 INFO [8880]: RET: member_id= -- 07:14:43.452 INFO [8880]: RET: result=YES I GET TO BACK END -- 07:14:43.452 INFO [8880]: RET: sessionid= -- 07:14:43.452 INFO [8880]: RET: status=Session check failed -- 07:14:43.453 INFO [8880]: COREGRADE is stopping... -- 07:14:43.453 DEBUG [8880]: Closing database connection -- 07:14:43.453 SQL [8880]: pgsql_close() -- 09:39:27.581 INFO [19328]: COREGRADE is starting... -- 09:39:27.581 INFO [19328]: Version from config: 1.0 -- 09:39:27.581 DEBUG [19328]: Connecting to database... -- 09:39:27.581 DEBUG [19328]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:39:27.581 SQL [19328]: pgsql_db_connect() -- 09:39:27.586 DEBUG [19328]: Database connection successful -- 09:39:27.586 INFO [19328]: _SERVER found -- 09:39:27.586 INFO [19328]: REMOTE_ADDR = 192.168.1.13 -- 09:39:27.586 INFO [19328]: SERVER_NAME = oameye.works.coregrade.com -- 09:39:27.586 INFO [19328]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; ci_session=6bpq84rhurvsv9p41tb190qs6se6mu0k -- 09:39:27.586 INFO [19328]: QUERY_STRING = -- 09:39:27.586 INFO [19328]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:39:27.586 INFO [19328]: SystemStatus()09-09-********~************ -- 09:39:27.586 INFO [19328]: long coregrade_api_main(CVars in, CVars &out) -- 09:39:27.586 INFO [19328]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 09:39:27.586 INFO [19328]: account calls -- 09:39:27.586 INFO [19328]: account_calls() -- 09:39:27.586 INFO [19328]: LoginCoreGradeAccount() -- 09:39:27.586 FLOG_MAX [19328]: REQ_STRING(username) -- 09:39:27.586 FLOG_MAX [19328]: REQ_STRING(password) -- 09:39:27.587 FLOG_MAX [19328]: REQ_STRING(sessionid) -- 09:39:27.587 FLOG_MAX [19328]: long load_db_record( CVars &rec, const char * query, ... ) -- 09:39:27.587 SQL [19328]: pgsql_query() -- 09:39:27.587 SQL [19328]: About to run query: -- 09:39:27.587 SQL [19328]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokunbo.lawal1@gmail.com') AND password= md5('ddgdgdghdhhsh') -- 09:39:27.590 SQL [19328]: Found rows: 0 -- 09:39:27.590 SQL [19328]: Found rows: 0 -- 09:39:27.590 INFO [19328]: long SessionCheck(long uid, const char *sessionid, int create ) -- 09:39:27.590 INFO [19328]: /LoginCoreGradeAccount() -- 09:39:27.590 INFO [19328]: RET: member_id= -- 09:39:27.590 INFO [19328]: RET: result=YES I GET TO BACK END -- 09:39:27.590 INFO [19328]: RET: sessionid= -- 09:39:27.590 INFO [19328]: RET: status=Session check failed -- 09:39:27.591 INFO [19328]: COREGRADE is stopping... -- 09:39:27.591 DEBUG [19328]: Closing database connection -- 09:39:27.591 SQL [19328]: pgsql_close() -- 09:39:52.663 INFO [19483]: COREGRADE is starting... -- 09:39:52.663 INFO [19483]: Version from config: 1.0 -- 09:39:52.663 DEBUG [19483]: Connecting to database... -- 09:39:52.663 DEBUG [19483]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:39:52.663 SQL [19483]: pgsql_db_connect() -- 09:39:52.667 DEBUG [19483]: Database connection successful -- 09:39:52.667 INFO [19483]: _SERVER found -- 09:39:52.667 INFO [19483]: REMOTE_ADDR = 192.168.1.13 -- 09:39:52.667 INFO [19483]: SERVER_NAME = oameye.works.coregrade.com -- 09:39:52.667 INFO [19483]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; ci_session=6bpq84rhurvsv9p41tb190qs6se6mu0k -- 09:39:52.667 INFO [19483]: QUERY_STRING = -- 09:39:52.667 INFO [19483]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:39:52.667 INFO [19483]: SystemStatus()09-09-********~************ -- 09:39:52.667 INFO [19483]: long coregrade_api_main(CVars in, CVars &out) -- 09:39:52.667 INFO [19483]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 09:39:52.667 INFO [19483]: account calls -- 09:39:52.667 INFO [19483]: account_calls() -- 09:39:52.667 INFO [19483]: LoginCoreGradeAccount() -- 09:39:52.667 FLOG_MAX [19483]: REQ_STRING(username) -- 09:39:52.667 FLOG_MAX [19483]: REQ_STRING(password) -- 09:39:52.667 FLOG_MAX [19483]: REQ_STRING(sessionid) -- 09:39:52.667 FLOG_MAX [19483]: long load_db_record( CVars &rec, const char * query, ... ) -- 09:39:52.667 SQL [19483]: pgsql_query() -- 09:39:52.667 SQL [19483]: About to run query: -- 09:39:52.668 SQL [19483]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 09:39:52.671 SQL [19483]: Found rows: 1 -- 09:39:52.671 FLOG_MAX [19483]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 09:39:52.671 INFO [19483]: long SessionCheck(long uid, const char *sessionid, int create ) -- 09:39:52.671 SQL [19483]: pgsql_exec() -- 09:39:52.671 SQL [19483]: About to run query: -- 09:39:52.671 SQL [19483]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '15 minutes') -- 09:39:52.672 SQL [19483]: PQcmdTuples: 1 -- 09:39:52.672 SQL [19483]: Affected rows: 1 -- 09:39:52.672 SQL [19483]: pgsql_query() -- 09:39:52.672 SQL [19483]: About to run query: -- 09:39:52.672 SQL [19483]: SELECT * FROM members_session WHERE member_id=5 AND session<>'079786AAB3527FC790705661078E34D0' -- 09:39:52.672 SQL [19483]: Found rows: 0 -- 09:39:52.673 SQL [19483]: Found rows: 0 -- 09:39:52.673 FLOG_MAX [19483]: long load_db_record( CVars &rec, const char * query, ... ) -- 09:39:52.673 SQL [19483]: pgsql_query() -- 09:39:52.673 SQL [19483]: About to run query: -- 09:39:52.673 SQL [19483]: SELECT * FROM members_session WHERE member_id=5 AND session='079786AAB3527FC790705661078E34D0' -- 09:39:52.673 SQL [19483]: Found rows: 0 -- 09:39:52.673 SQL [19483]: Found rows: 0 -- 09:39:52.673 FLOG_MAX [19483]: insert_db_record() -- 09:39:52.673 SQL [19483]: pgsql_exec() -- 09:39:52.673 SQL [19483]: About to run query: -- 09:39:52.673 SQL [19483]: INSERT INTO members_session (member_id,session) VALUES ('5','079786AAB3527FC790705661078E34D0') -- 09:39:52.675 SQL [19483]: PQcmdTuples: 1 -- 09:39:52.675 SQL [19483]: Affected rows: 1 -- 09:39:52.675 FLOG_MAX [19483]: SELECT currval('members_session_id_seq') -- 09:39:52.675 SQL [19483]: pgsql_query() -- 09:39:52.675 SQL [19483]: About to run query: -- 09:39:52.675 SQL [19483]: SELECT currval('members_session_id_seq') -- 09:39:52.675 SQL [19483]: Found rows: 1 -- 09:39:52.675 INFO [19483]: /LoginCoreGradeAccount() -- 09:39:52.675 INFO [19483]: RET: added=2020-02-05 06:47:23.982154 -- 09:39:52.675 INFO [19483]: RET: email=ameye+11@chiefsoft.com -- 09:39:52.675 INFO [19483]: RET: firstname=Olu -- 09:39:52.675 INFO [19483]: RET: id=5 -- 09:39:52.675 INFO [19483]: RET: last_login= -- 09:39:52.675 INFO [19483]: RET: lastname=Amey -- 09:39:52.675 INFO [19483]: RET: loc=192.168.1.13 -- 09:39:52.675 INFO [19483]: RET: member_id=5 -- 09:39:52.675 INFO [19483]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 09:39:52.675 INFO [19483]: RET: phone= -- 09:39:52.675 INFO [19483]: RET: pid= -- 09:39:52.675 INFO [19483]: RET: result=YES I GET TO BACK END -- 09:39:52.675 INFO [19483]: RET: sessionid=079786AAB3527FC790705661078E34D0 -- 09:39:52.675 INFO [19483]: RET: status=1 -- 09:39:52.675 INFO [19483]: RET: stauts=OK -- 09:39:52.675 INFO [19483]: RET: username=ameye+11@chiefsoft.com -- 09:39:52.675 INFO [19483]: RET: verified= -- 09:39:52.677 INFO [19483]: COREGRADE is stopping... -- 09:39:52.677 DEBUG [19483]: Closing database connection -- 09:39:52.677 SQL [19483]: pgsql_close() -- 09:41:55.919 INFO [19326]: COREGRADE is starting... -- 09:41:55.919 INFO [19326]: Version from config: 1.0 -- 09:41:55.919 DEBUG [19326]: Connecting to database... -- 09:41:55.919 DEBUG [19326]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:41:55.919 SQL [19326]: pgsql_db_connect() -- 09:41:55.924 DEBUG [19326]: Database connection successful -- 09:41:55.924 INFO [19326]: _SERVER found -- 09:41:55.924 INFO [19326]: REMOTE_ADDR = 192.168.1.13 -- 09:41:55.924 INFO [19326]: SERVER_NAME = oameye.works.coregrade.com -- 09:41:55.924 INFO [19326]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; ci_session=6bpq84rhurvsv9p41tb190qs6se6mu0k -- 09:41:55.924 INFO [19326]: QUERY_STRING = -- 09:41:55.924 INFO [19326]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:41:55.924 INFO [19326]: SystemStatus()09-09-********~************ -- 09:41:55.924 INFO [19326]: long coregrade_api_main(CVars in, CVars &out) -- 09:41:55.924 INFO [19326]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 09:41:55.924 INFO [19326]: account calls -- 09:41:55.924 INFO [19326]: account_calls() -- 09:41:55.924 FLOG_MAX [19326]: REQ_STRING(username) -- 09:41:55.924 FLOG_MAX [19326]: REQ_STRING(firstname) -- 09:41:55.924 FLOG_MAX [19326]: REQ_STRING(lastname) -- 09:41:55.924 FLOG_MAX [19326]: REQ_STRING(email) -- 09:41:55.924 SQL [19326]: pgsql_query() -- 09:41:55.924 SQL [19326]: About to run query: -- 09:41:55.924 SQL [19326]: SELECT * FROM members WHERE LOWER(username) = LOWER('tokslaw@chiefsoft.com') -- 09:41:55.926 SQL [19326]: Found rows: 0 -- 09:41:55.926 SQL [19326]: Found rows: 0 -- 09:41:55.926 FLOG_MAX [19326]: insert_db_record() -- 09:41:55.926 SQL [19326]: pgsql_exec() -- 09:41:55.926 SQL [19326]: About to run query: -- 09:41:55.926 SQL [19326]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('tokslaw@chiefsoft.com','Tokunbo','Lawal','192.168.1.13','','tokslaw@chiefsoft.com','RS-1503313664-1078419200-1284505344') -- 09:41:55.928 SQL [19326]: PQcmdTuples: 1 -- 09:41:55.928 SQL [19326]: Affected rows: 1 -- 09:41:55.928 FLOG_MAX [19326]: SELECT currval('members_pending_id_seq') -- 09:41:55.928 SQL [19326]: pgsql_query() -- 09:41:55.928 SQL [19326]: About to run query: -- 09:41:55.928 SQL [19326]: SELECT currval('members_pending_id_seq') -- 09:41:55.928 SQL [19326]: Found rows: 1 -- 09:41:55.928 SQL [19326]: pgsql_query() -- 09:41:55.928 SQL [19326]: About to run query: -- 09:41:55.928 SQL [19326]: UPDATE members_pending SET password = md5('tokslaw001!') WHERE id = 2 -- 09:41:55.929 SQL [19326]: Found rows: 0 -- 09:41:55.929 SQL [19326]: Found rows: 0 -- 09:41:55.930 FLOG_MAX [19326]: long load_db_record( CVars &rec, const char * query, ... ) -- 09:41:55.930 SQL [19326]: pgsql_query() -- 09:41:55.930 SQL [19326]: About to run query: -- 09:41:55.930 SQL [19326]: SELECT * FROM members_pending WHERE id = 2 -- 09:41:55.930 SQL [19326]: Found rows: 1 -- 09:41:55.930 FLOG_MAX [19326]: load_db_record(SELECT * FROM members_pending WHERE id = 2 ) num_cols=13 -- 09:41:55.930 FLOG_MAX [19326]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 09:41:55.930 FLOG_MAX [19326]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1692 bytes -- 09:41:55.930 FLOG_MAX [19326]: Returning from FormFile() -- 09:41:55.930 FLOG_MAX [19326]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 09:41:55.930 FLOG_MAX [19326]: ESMTP( smtp.google.com, savvy@chiefsoft.com, tokslaw@chiefsoft.com ) -- 09:41:55.930 FLOG_MAX [19326]: Prepare body -- 09:41:55.930 FLOG_MAX [19326]: Locate & extract subject -- 09:41:55.930 FLOG_MAX [19326]: Found subject: CoreGrade - Pending Signup - Verify tokslaw@chiefsoft.com -- 09:41:55.930 FLOG_MAX [19326]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp smtp.google.com -f savvy@chiefsoft.com -t tokslaw@chiefsoft.com -d chiefsoft.com -name 'CoreGrade Beta' +cc +bcc -v -port 25 -auth-plain -user savvy@chiefsoft.com -pass may12002! -sub 'CoreGrade - Pending Signup - Verify tokslaw@chiefsoft.com' -M ' - - - -
-
- - - - - - -
CoreGrade
-Dear Tokunbo, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-1503313664-1078419200-1284505344 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - -' -- 09:41:55.989 FLOG_MAX [19326]: - -END OF PIPE OUTPUT - - -- 09:41:55.989 FLOG_MAX [19326]: /ESMTP() -- 09:41:55.989 INFO [19326]: RET: action=11010 -- 09:41:55.989 INFO [19326]: RET: email=tokslaw@chiefsoft.com -- 09:41:55.989 INFO [19326]: RET: firstname=Tokunbo -- 09:41:55.989 INFO [19326]: RET: lastname=Lawal -- 09:41:55.989 INFO [19326]: RET: password=tokslaw001! -- 09:41:55.989 INFO [19326]: RET: pending_id=2 -- 09:41:55.989 INFO [19326]: RET: pid=100 -- 09:41:55.989 INFO [19326]: RET: status_message=Pending -- 09:41:55.989 INFO [19326]: RET: username=tokslaw@chiefsoft.com -- 09:41:55.992 INFO [19326]: COREGRADE is stopping... -- 09:41:55.992 DEBUG [19326]: Closing database connection -- 09:41:55.992 SQL [19326]: pgsql_close() -- 09:42:12.808 INFO [20036]: COREGRADE is starting... -- 09:42:12.808 INFO [20036]: Version from config: 1.0 -- 09:42:12.808 DEBUG [20036]: Connecting to database... -- 09:42:12.808 DEBUG [20036]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:42:12.808 SQL [20036]: pgsql_db_connect() -- 09:42:12.812 DEBUG [20036]: Database connection successful -- 09:42:12.812 INFO [20036]: _SERVER found -- 09:42:12.812 INFO [20036]: REMOTE_ADDR = 192.168.1.13 -- 09:42:12.812 INFO [20036]: SERVER_NAME = oameye.works.coregrade.com -- 09:42:12.812 INFO [20036]: QUERY_STRING = vlnk=RS-1503313664-1078419200-1284505344 -- 09:42:12.812 INFO [20036]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:42:12.812 INFO [20036]: SystemStatus()09-09-********~************ -- 09:42:12.812 INFO [20036]: long coregrade_api_main(CVars in, CVars &out) -- 09:42:12.812 INFO [20036]: long coregrade_api_main(CVars in, CVars &out) action =11020 -- 09:42:12.812 INFO [20036]: account calls -- 09:42:12.812 INFO [20036]: account_calls() -- 09:42:12.812 INFO [20036]: CreateCoreGradeAccount() -- 09:42:12.812 FLOG_MAX [20036]: REQ_STRING(verify_link) -- 09:42:12.813 FLOG_MAX [20036]: long load_db_record( CVars &rec, const char * query, ... ) -- 09:42:12.813 SQL [20036]: pgsql_query() -- 09:42:12.813 SQL [20036]: About to run query: -- 09:42:12.813 SQL [20036]: SELECT *,id AS pending_id FROM members_pending WHERE verify_link ='RS-1503313664-1078419200-1284505344' AND expire > now() LIMIT 1 -- 09:42:12.815 SQL [20036]: Found rows: 1 -- 09:42:12.815 FLOG_MAX [20036]: load_db_record(SELECT *,id AS pending_id FROM members_pending WHERE verify_link ='RS-1503313664-1078419200-1284505344' AND expire > now() LIMIT 1) num_cols=14 -- 09:42:12.815 FLOG_MAX [20036]: insert_db_record() -- 09:42:12.815 SQL [20036]: pgsql_exec() -- 09:42:12.815 SQL [20036]: About to run query: -- 09:42:12.816 SQL [20036]: INSERT INTO members (email,firstname,lastname,loc,password,phone,username) VALUES ('tokslaw@chiefsoft.com','Tokunbo','Lawal','192.168.1.13','da144d7793a4a43c8d87bd47dfa3c801','','tokslaw@chiefsoft.com') -- 09:42:12.817 SQL [20036]: PQcmdTuples: 1 -- 09:42:12.817 SQL [20036]: Affected rows: 1 -- 09:42:12.817 FLOG_MAX [20036]: SELECT currval('members_id_seq') -- 09:42:12.817 SQL [20036]: pgsql_query() -- 09:42:12.817 SQL [20036]: About to run query: -- 09:42:12.817 SQL [20036]: SELECT currval('members_id_seq') -- 09:42:12.818 SQL [20036]: Found rows: 1 -- 09:42:12.818 SQL [20036]: pgsql_query() -- 09:42:12.818 SQL [20036]: About to run query: -- 09:42:12.818 SQL [20036]: UPDATE members_pending SET status = 5,verified=now() WHERE id = 2 -- 09:42:12.818 SQL [20036]: Found rows: 0 -- 09:42:12.819 SQL [20036]: Found rows: 0 -- 09:42:12.819 INFO [20036]: /CreateCoreGradeAccount() -- 09:42:12.819 INFO [20036]: RET: added=2020-02-05 09:41:55.926961 -- 09:42:12.819 INFO [20036]: RET: email=tokslaw@chiefsoft.com -- 09:42:12.819 INFO [20036]: RET: expire=2020-02-07 09:41:55.926961 -- 09:42:12.819 INFO [20036]: RET: firstname=Tokunbo -- 09:42:12.819 INFO [20036]: RET: id=2 -- 09:42:12.819 INFO [20036]: RET: lastname=Lawal -- 09:42:12.819 INFO [20036]: RET: loc=192.168.1.13 -- 09:42:12.819 INFO [20036]: RET: member_id=7 -- 09:42:12.819 INFO [20036]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 09:42:12.819 INFO [20036]: RET: pending_id=2 -- 09:42:12.819 INFO [20036]: RET: phone= -- 09:42:12.819 INFO [20036]: RET: result=YES I GET TO BACK END -- 09:42:12.819 INFO [20036]: RET: status=prepare to create account -- 09:42:12.819 INFO [20036]: RET: username=tokslaw@chiefsoft.com -- 09:42:12.819 INFO [20036]: RET: verified= -- 09:42:12.819 INFO [20036]: RET: verify_link=RS-1503313664-1078419200-1284505344 -- 09:42:12.820 INFO [20036]: COREGRADE is stopping... -- 09:42:12.820 DEBUG [20036]: Closing database connection -- 09:42:12.820 SQL [20036]: pgsql_close() -- 09:42:39.001 INFO [19320]: COREGRADE is starting... -- 09:42:39.001 INFO [19320]: Version from config: 1.0 -- 09:42:39.001 DEBUG [19320]: Connecting to database... -- 09:42:39.001 DEBUG [19320]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:42:39.001 SQL [19320]: pgsql_db_connect() -- 09:42:39.006 DEBUG [19320]: Database connection successful -- 09:42:39.006 INFO [19320]: _SERVER found -- 09:42:39.006 INFO [19320]: REMOTE_ADDR = 192.168.1.13 -- 09:42:39.006 INFO [19320]: SERVER_NAME = oameye.works.coregrade.com -- 09:42:39.006 INFO [19320]: HTTP_COOKIE = ci_session=6u1qf67k2unb42v4pb78i0v9quqlvif0 -- 09:42:39.006 INFO [19320]: QUERY_STRING = -- 09:42:39.006 INFO [19320]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:42:39.006 INFO [19320]: SystemStatus()09-09-********~************ -- 09:42:39.006 INFO [19320]: long coregrade_api_main(CVars in, CVars &out) -- 09:42:39.006 INFO [19320]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 09:42:39.006 INFO [19320]: account calls -- 09:42:39.006 INFO [19320]: account_calls() -- 09:42:39.006 INFO [19320]: LoginCoreGradeAccount() -- 09:42:39.006 FLOG_MAX [19320]: REQ_STRING(username) -- 09:42:39.006 FLOG_MAX [19320]: REQ_STRING(password) -- 09:42:39.006 FLOG_MAX [19320]: REQ_STRING(sessionid) -- 09:42:39.006 FLOG_MAX [19320]: long load_db_record( CVars &rec, const char * query, ... ) -- 09:42:39.006 SQL [19320]: pgsql_query() -- 09:42:39.006 SQL [19320]: About to run query: -- 09:42:39.006 SQL [19320]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('toklsaw001!') -- 09:42:39.009 SQL [19320]: Found rows: 0 -- 09:42:39.009 SQL [19320]: Found rows: 0 -- 09:42:39.009 INFO [19320]: long SessionCheck(long uid, const char *sessionid, int create ) -- 09:42:39.009 INFO [19320]: /LoginCoreGradeAccount() -- 09:42:39.009 INFO [19320]: RET: member_id= -- 09:42:39.009 INFO [19320]: RET: result=YES I GET TO BACK END -- 09:42:39.009 INFO [19320]: RET: sessionid= -- 09:42:39.009 INFO [19320]: RET: status=Session check failed -- 09:42:39.010 INFO [19320]: COREGRADE is stopping... -- 09:42:39.010 DEBUG [19320]: Closing database connection -- 09:42:39.010 SQL [19320]: pgsql_close() -- 09:43:37.137 INFO [19319]: COREGRADE is starting... -- 09:43:37.137 INFO [19319]: Version from config: 1.0 -- 09:43:37.137 DEBUG [19319]: Connecting to database... -- 09:43:37.137 DEBUG [19319]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:43:37.137 SQL [19319]: pgsql_db_connect() -- 09:43:37.142 DEBUG [19319]: Database connection successful -- 09:43:37.142 INFO [19319]: _SERVER found -- 09:43:37.142 INFO [19319]: REMOTE_ADDR = 192.168.1.13 -- 09:43:37.142 INFO [19319]: SERVER_NAME = oameye.works.coregrade.com -- 09:43:37.142 INFO [19319]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; ci_session=6bpq84rhurvsv9p41tb190qs6se6mu0k -- 09:43:37.142 INFO [19319]: QUERY_STRING = -- 09:43:37.142 INFO [19319]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:43:37.142 INFO [19319]: SystemStatus()09-09-********~************ -- 09:43:37.142 INFO [19319]: long coregrade_api_main(CVars in, CVars &out) -- 09:43:37.142 INFO [19319]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 09:43:37.142 INFO [19319]: account calls -- 09:43:37.142 INFO [19319]: account_calls() -- 09:43:37.142 INFO [19319]: LoginCoreGradeAccount() -- 09:43:37.142 FLOG_MAX [19319]: REQ_STRING(username) -- 09:43:37.142 FLOG_MAX [19319]: REQ_STRING(password) -- 09:43:37.142 FLOG_MAX [19319]: REQ_STRING(sessionid) -- 09:43:37.142 FLOG_MAX [19319]: long load_db_record( CVars &rec, const char * query, ... ) -- 09:43:37.142 SQL [19319]: pgsql_query() -- 09:43:37.142 SQL [19319]: About to run query: -- 09:43:37.142 SQL [19319]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 09:43:37.146 SQL [19319]: Found rows: 1 -- 09:43:37.146 FLOG_MAX [19319]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=15 -- 09:43:37.146 INFO [19319]: long SessionCheck(long uid, const char *sessionid, int create ) -- 09:43:37.146 SQL [19319]: pgsql_exec() -- 09:43:37.146 SQL [19319]: About to run query: -- 09:43:37.146 SQL [19319]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '15 minutes') -- 09:43:37.146 SQL [19319]: PQcmdTuples: 0 -- 09:43:37.146 SQL [19319]: Affected rows: 0 -- 09:43:37.146 SQL [19319]: pgsql_query() -- 09:43:37.147 SQL [19319]: About to run query: -- 09:43:37.147 SQL [19319]: SELECT * FROM members_session WHERE member_id=7 AND session<>'6303623D568A3C680FA66B8B843EFCA7' -- 09:43:37.147 SQL [19319]: Found rows: 0 -- 09:43:37.147 SQL [19319]: Found rows: 0 -- 09:43:37.147 FLOG_MAX [19319]: long load_db_record( CVars &rec, const char * query, ... ) -- 09:43:37.147 SQL [19319]: pgsql_query() -- 09:43:37.147 SQL [19319]: About to run query: -- 09:43:37.147 SQL [19319]: SELECT * FROM members_session WHERE member_id=7 AND session='6303623D568A3C680FA66B8B843EFCA7' -- 09:43:37.147 SQL [19319]: Found rows: 0 -- 09:43:37.147 SQL [19319]: Found rows: 0 -- 09:43:37.148 FLOG_MAX [19319]: insert_db_record() -- 09:43:37.148 SQL [19319]: pgsql_exec() -- 09:43:37.148 SQL [19319]: About to run query: -- 09:43:37.148 SQL [19319]: INSERT INTO members_session (member_id,session) VALUES ('7','6303623D568A3C680FA66B8B843EFCA7') -- 09:43:37.149 SQL [19319]: PQcmdTuples: 1 -- 09:43:37.149 SQL [19319]: Affected rows: 1 -- 09:43:37.149 FLOG_MAX [19319]: SELECT currval('members_session_id_seq') -- 09:43:37.149 SQL [19319]: pgsql_query() -- 09:43:37.149 SQL [19319]: About to run query: -- 09:43:37.149 SQL [19319]: SELECT currval('members_session_id_seq') -- 09:43:37.149 SQL [19319]: Found rows: 1 -- 09:43:37.150 INFO [19319]: /LoginCoreGradeAccount() -- 09:43:37.150 INFO [19319]: RET: added=2020-02-05 09:42:12.816064 -- 09:43:37.150 INFO [19319]: RET: email=tokslaw@chiefsoft.com -- 09:43:37.150 INFO [19319]: RET: firstname=Tokunbo -- 09:43:37.150 INFO [19319]: RET: id=7 -- 09:43:37.150 INFO [19319]: RET: last_login= -- 09:43:37.150 INFO [19319]: RET: lastname=Lawal -- 09:43:37.150 INFO [19319]: RET: loc=192.168.1.13 -- 09:43:37.150 INFO [19319]: RET: member_id=7 -- 09:43:37.150 INFO [19319]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 09:43:37.150 INFO [19319]: RET: phone= -- 09:43:37.150 INFO [19319]: RET: pid= -- 09:43:37.150 INFO [19319]: RET: result=YES I GET TO BACK END -- 09:43:37.150 INFO [19319]: RET: sessionid=6303623D568A3C680FA66B8B843EFCA7 -- 09:43:37.150 INFO [19319]: RET: status=1 -- 09:43:37.150 INFO [19319]: RET: stauts=OK -- 09:43:37.150 INFO [19319]: RET: username=tokslaw@chiefsoft.com -- 09:43:37.150 INFO [19319]: RET: verified= -- 09:43:37.151 INFO [19319]: COREGRADE is stopping... -- 09:43:37.151 DEBUG [19319]: Closing database connection -- 09:43:37.151 SQL [19319]: pgsql_close() -- 10:13:02.907 INFO [19329]: COREGRADE is starting... -- 10:13:02.907 INFO [19329]: Version from config: 1.0 -- 10:13:02.907 DEBUG [19329]: Connecting to database... -- 10:13:02.907 DEBUG [19329]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:13:02.907 SQL [19329]: pgsql_db_connect() -- 10:13:02.912 DEBUG [19329]: Database connection successful -- 10:13:02.912 INFO [19329]: _SERVER found -- 10:13:02.912 INFO [19329]: REMOTE_ADDR = 192.168.1.13 -- 10:13:02.912 INFO [19329]: SERVER_NAME = oameye.works.coregrade.com -- 10:13:02.912 INFO [19329]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; ci_session=sc87vtthgncpro8clk7onc3fr0v9dqki; _gid=GA1.2.1730323451.1580914849 -- 10:13:02.912 INFO [19329]: QUERY_STRING = -- 10:13:02.912 INFO [19329]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:13:02.912 INFO [19329]: SystemStatus()09-09-********~************ -- 10:13:02.912 INFO [19329]: long coregrade_api_main(CVars in, CVars &out) -- 10:13:02.912 INFO [19329]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 10:13:02.912 INFO [19329]: account calls -- 10:13:02.912 INFO [19329]: account_calls() -- 10:13:02.912 INFO [19329]: LoginCoreGradeAccount() -- 10:13:02.912 FLOG_MAX [19329]: REQ_STRING(username) -- 10:13:02.912 FLOG_MAX [19329]: REQ_STRING(password) -- 10:13:02.912 FLOG_MAX [19329]: REQ_STRING(sessionid) -- 10:13:02.912 FLOG_MAX [19329]: long load_db_record( CVars &rec, const char * query, ... ) -- 10:13:02.912 SQL [19329]: pgsql_query() -- 10:13:02.912 SQL [19329]: About to run query: -- 10:13:02.912 SQL [19329]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 10:13:02.916 SQL [19329]: Found rows: 1 -- 10:13:02.916 FLOG_MAX [19329]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=15 -- 10:13:02.916 INFO [19329]: long SessionCheck(long uid, const char *sessionid, int create ) -- 10:13:02.916 SQL [19329]: pgsql_exec() -- 10:13:02.916 SQL [19329]: About to run query: -- 10:13:02.916 SQL [19329]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '15 minutes') -- 10:13:02.917 SQL [19329]: PQcmdTuples: 1 -- 10:13:02.917 SQL [19329]: Affected rows: 1 -- 10:13:02.917 SQL [19329]: pgsql_query() -- 10:13:02.917 SQL [19329]: About to run query: -- 10:13:02.917 SQL [19329]: SELECT * FROM members_session WHERE member_id=7 AND session<>'B784CB50662B0BD2A6472BB6773674E1' -- 10:13:02.918 SQL [19329]: Found rows: 0 -- 10:13:02.918 SQL [19329]: Found rows: 0 -- 10:13:02.918 FLOG_MAX [19329]: long load_db_record( CVars &rec, const char * query, ... ) -- 10:13:02.918 SQL [19329]: pgsql_query() -- 10:13:02.918 SQL [19329]: About to run query: -- 10:13:02.918 SQL [19329]: SELECT * FROM members_session WHERE member_id=7 AND session='B784CB50662B0BD2A6472BB6773674E1' -- 10:13:02.918 SQL [19329]: Found rows: 0 -- 10:13:02.918 SQL [19329]: Found rows: 0 -- 10:13:02.918 FLOG_MAX [19329]: insert_db_record() -- 10:13:02.918 SQL [19329]: pgsql_exec() -- 10:13:02.918 SQL [19329]: About to run query: -- 10:13:02.918 SQL [19329]: INSERT INTO members_session (member_id,session) VALUES ('7','B784CB50662B0BD2A6472BB6773674E1') -- 10:13:02.920 SQL [19329]: PQcmdTuples: 1 -- 10:13:02.920 SQL [19329]: Affected rows: 1 -- 10:13:02.920 FLOG_MAX [19329]: SELECT currval('members_session_id_seq') -- 10:13:02.920 SQL [19329]: pgsql_query() -- 10:13:02.920 SQL [19329]: About to run query: -- 10:13:02.920 SQL [19329]: SELECT currval('members_session_id_seq') -- 10:13:02.920 SQL [19329]: Found rows: 1 -- 10:13:02.920 INFO [19329]: /LoginCoreGradeAccount() -- 10:13:02.920 INFO [19329]: RET: added=2020-02-05 09:42:12.816064 -- 10:13:02.920 INFO [19329]: RET: email=tokslaw@chiefsoft.com -- 10:13:02.920 INFO [19329]: RET: firstname=Tokunbo -- 10:13:02.920 INFO [19329]: RET: id=7 -- 10:13:02.920 INFO [19329]: RET: last_login= -- 10:13:02.920 INFO [19329]: RET: lastname=Lawal -- 10:13:02.920 INFO [19329]: RET: loc=192.168.1.13 -- 10:13:02.920 INFO [19329]: RET: member_id=7 -- 10:13:02.920 INFO [19329]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 10:13:02.920 INFO [19329]: RET: phone= -- 10:13:02.920 INFO [19329]: RET: pid= -- 10:13:02.920 INFO [19329]: RET: result=YES I GET TO BACK END -- 10:13:02.920 INFO [19329]: RET: sessionid=B784CB50662B0BD2A6472BB6773674E1 -- 10:13:02.920 INFO [19329]: RET: status=1 -- 10:13:02.920 INFO [19329]: RET: stauts=OK -- 10:13:02.920 INFO [19329]: RET: username=tokslaw@chiefsoft.com -- 10:13:02.920 INFO [19329]: RET: verified= -- 10:13:02.922 INFO [19329]: COREGRADE is stopping... -- 10:13:02.922 DEBUG [19329]: Closing database connection -- 10:13:02.922 SQL [19329]: pgsql_close() -- 11:57:15.372 INFO [19321]: COREGRADE is starting... -- 11:57:15.373 INFO [19321]: Version from config: 1.0 -- 11:57:15.373 DEBUG [19321]: Connecting to database... -- 11:57:15.373 DEBUG [19321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:57:15.373 SQL [19321]: pgsql_db_connect() -- 11:57:15.379 DEBUG [19321]: Database connection successful -- 11:57:15.379 INFO [19321]: _SERVER found -- 11:57:15.379 INFO [19321]: REMOTE_ADDR = 192.168.1.13 -- 11:57:15.379 INFO [19321]: SERVER_NAME = oameye.works.coregrade.com -- 11:57:15.379 INFO [19321]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1730323451.1580914849; ci_session=kt60q0dmkuk7dksmo1h3cq1hrte3cppg -- 11:57:15.379 INFO [19321]: QUERY_STRING = -- 11:57:15.379 INFO [19321]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:57:15.379 INFO [19321]: SystemStatus()09-09-********~************ -- 11:57:15.379 INFO [19321]: long coregrade_api_main(CVars in, CVars &out) -- 11:57:15.379 INFO [19321]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 11:57:15.379 INFO [19321]: account calls -- 11:57:15.379 INFO [19321]: account_calls() -- 11:57:15.379 INFO [19321]: LoginCoreGradeAccount() -- 11:57:15.379 FLOG_MAX [19321]: REQ_STRING(username) -- 11:57:15.379 FLOG_MAX [19321]: REQ_STRING(password) -- 11:57:15.379 FLOG_MAX [19321]: REQ_STRING(sessionid) -- 11:57:15.379 FLOG_MAX [19321]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:57:15.379 SQL [19321]: pgsql_query() -- 11:57:15.379 SQL [19321]: About to run query: -- 11:57:15.379 SQL [19321]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 11:57:15.383 SQL [19321]: Found rows: 1 -- 11:57:15.383 FLOG_MAX [19321]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=15 -- 11:57:15.383 INFO [19321]: long SessionCheck(long uid, const char *sessionid, int create ) -- 11:57:15.383 SQL [19321]: pgsql_exec() -- 11:57:15.383 SQL [19321]: About to run query: -- 11:57:15.383 SQL [19321]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '15 minutes') -- 11:57:15.384 SQL [19321]: PQcmdTuples: 1 -- 11:57:15.384 SQL [19321]: Affected rows: 1 -- 11:57:15.384 SQL [19321]: pgsql_query() -- 11:57:15.384 SQL [19321]: About to run query: -- 11:57:15.384 SQL [19321]: SELECT * FROM members_session WHERE member_id=7 AND session<>'3CD26194C45D1E704F269511285F9090' -- 11:57:15.385 SQL [19321]: Found rows: 0 -- 11:57:15.385 SQL [19321]: Found rows: 0 -- 11:57:15.385 FLOG_MAX [19321]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:57:15.385 SQL [19321]: pgsql_query() -- 11:57:15.385 SQL [19321]: About to run query: -- 11:57:15.385 SQL [19321]: SELECT * FROM members_session WHERE member_id=7 AND session='3CD26194C45D1E704F269511285F9090' -- 11:57:15.385 SQL [19321]: Found rows: 0 -- 11:57:15.385 SQL [19321]: Found rows: 0 -- 11:57:15.385 FLOG_MAX [19321]: insert_db_record() -- 11:57:15.385 SQL [19321]: pgsql_exec() -- 11:57:15.385 SQL [19321]: About to run query: -- 11:57:15.385 SQL [19321]: INSERT INTO members_session (member_id,session) VALUES ('7','3CD26194C45D1E704F269511285F9090') -- 11:57:15.387 SQL [19321]: PQcmdTuples: 1 -- 11:57:15.387 SQL [19321]: Affected rows: 1 -- 11:57:15.387 FLOG_MAX [19321]: SELECT currval('members_session_id_seq') -- 11:57:15.387 SQL [19321]: pgsql_query() -- 11:57:15.387 SQL [19321]: About to run query: -- 11:57:15.387 SQL [19321]: SELECT currval('members_session_id_seq') -- 11:57:15.387 SQL [19321]: Found rows: 1 -- 11:57:15.387 INFO [19321]: /LoginCoreGradeAccount() -- 11:57:15.387 INFO [19321]: RET: added=2020-02-05 09:42:12.816064 -- 11:57:15.387 INFO [19321]: RET: email=tokslaw@chiefsoft.com -- 11:57:15.387 INFO [19321]: RET: firstname=Tokunbo -- 11:57:15.387 INFO [19321]: RET: id=7 -- 11:57:15.387 INFO [19321]: RET: last_login= -- 11:57:15.387 INFO [19321]: RET: lastname=Lawal -- 11:57:15.387 INFO [19321]: RET: loc=192.168.1.13 -- 11:57:15.387 INFO [19321]: RET: member_id=7 -- 11:57:15.387 INFO [19321]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 11:57:15.387 INFO [19321]: RET: phone= -- 11:57:15.387 INFO [19321]: RET: pid= -- 11:57:15.387 INFO [19321]: RET: result=YES I GET TO BACK END -- 11:57:15.387 INFO [19321]: RET: sessionid=3CD26194C45D1E704F269511285F9090 -- 11:57:15.387 INFO [19321]: RET: status=1 -- 11:57:15.387 INFO [19321]: RET: stauts=OK -- 11:57:15.387 INFO [19321]: RET: username=tokslaw@chiefsoft.com -- 11:57:15.387 INFO [19321]: RET: verified= -- 11:57:15.389 INFO [19321]: COREGRADE is stopping... -- 11:57:15.389 DEBUG [19321]: Closing database connection -- 11:57:15.389 SQL [19321]: pgsql_close() -- 13:56:28.547 INFO [19327]: COREGRADE is starting... -- 13:56:28.547 INFO [19327]: Version from config: 1.0 -- 13:56:28.547 DEBUG [19327]: Connecting to database... -- 13:56:28.547 DEBUG [19327]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:56:28.547 SQL [19327]: pgsql_db_connect() -- 13:56:28.552 DEBUG [19327]: Database connection successful -- 13:56:28.552 INFO [19327]: _SERVER found -- 13:56:28.552 INFO [19327]: REMOTE_ADDR = 192.168.1.13 -- 13:56:28.552 INFO [19327]: SERVER_NAME = oameye.works.coregrade.com -- 13:56:28.552 INFO [19327]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=hufsdp2jqo7l9cnucsd07vhdefjrj0o3; _gat_gtag_UA_54829827_2=1 -- 13:56:28.552 INFO [19327]: QUERY_STRING = -- 13:56:28.552 INFO [19327]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:56:28.552 INFO [19327]: SystemStatus()09-09-********~************ -- 13:56:28.552 INFO [19327]: long coregrade_api_main(CVars in, CVars &out) -- 13:56:28.553 INFO [19327]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 13:56:28.553 INFO [19327]: account calls -- 13:56:28.553 INFO [19327]: account_calls() -- 13:56:28.553 FLOG_MAX [19327]: REQ_STRING(username) -- 13:56:28.553 FLOG_MAX [19327]: REQ_STRING(firstname) -- 13:56:28.553 FLOG_MAX [19327]: REQ_STRING(lastname) -- 13:56:28.553 FLOG_MAX [19327]: REQ_STRING(email) -- 13:56:28.553 SQL [19327]: pgsql_query() -- 13:56:28.553 SQL [19327]: About to run query: -- 13:56:28.553 SQL [19327]: SELECT * FROM members WHERE LOWER(username) = LOWER('ameye+22@chiefsoft.com') -- 13:56:28.555 SQL [19327]: Found rows: 0 -- 13:56:28.555 SQL [19327]: Found rows: 0 -- 13:56:28.555 FLOG_MAX [19327]: insert_db_record() -- 13:56:28.555 SQL [19327]: pgsql_exec() -- 13:56:28.555 SQL [19327]: About to run query: -- 13:56:28.555 SQL [19327]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ameye+22@chiefsoft.com','Olu','Amey','192.168.1.13','','ameye+22@chiefsoft.com','RS-1693150208-1275564032-621232128') -- 13:56:28.655 SQL [19327]: PQcmdTuples: 1 -- 13:56:28.655 SQL [19327]: Affected rows: 1 -- 13:56:28.655 FLOG_MAX [19327]: SELECT currval('members_pending_id_seq') -- 13:56:28.655 SQL [19327]: pgsql_query() -- 13:56:28.655 SQL [19327]: About to run query: -- 13:56:28.655 SQL [19327]: SELECT currval('members_pending_id_seq') -- 13:56:28.655 SQL [19327]: Found rows: 1 -- 13:56:28.655 SQL [19327]: pgsql_query() -- 13:56:28.655 SQL [19327]: About to run query: -- 13:56:28.655 SQL [19327]: UPDATE members_pending SET password = md5('may1202') WHERE id = 3 -- 13:56:28.656 SQL [19327]: Found rows: 0 -- 13:56:28.656 SQL [19327]: Found rows: 0 -- 13:56:28.656 FLOG_MAX [19327]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:56:28.656 SQL [19327]: pgsql_query() -- 13:56:28.656 SQL [19327]: About to run query: -- 13:56:28.656 SQL [19327]: SELECT * FROM members_pending WHERE id = 3 -- 13:56:28.657 SQL [19327]: Found rows: 1 -- 13:56:28.657 FLOG_MAX [19327]: load_db_record(SELECT * FROM members_pending WHERE id = 3 ) num_cols=13 -- 13:56:28.657 FLOG_MAX [19327]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 13:56:28.657 FLOG_MAX [19327]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1692 bytes -- 13:56:28.657 FLOG_MAX [19327]: Returning from FormFile() -- 13:56:28.657 FLOG_MAX [19327]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 13:56:28.657 FLOG_MAX [19327]: ESMTP( 10.0.0.35, demo@coregrade.com, ameye+22@chiefsoft.com ) -- 13:56:28.657 FLOG_MAX [19327]: Prepare body -- 13:56:28.657 FLOG_MAX [19327]: Locate & extract subject -- 13:56:28.657 FLOG_MAX [19327]: Found subject: CoreGrade - Pending Signup - Verify ameye+22@chiefsoft.com -- 13:56:28.657 FLOG_MAX [19327]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.35 -f demo@coregrade.com -t ameye+22@chiefsoft.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002!x -sub 'CoreGrade - Pending Signup - Verify ameye+22@chiefsoft.com' -M ' - - - -
-
- - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-1693150208-1275564032-621232128 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - -' -- 13:56:31.676 FLOG_MAX [19327]: - -END OF PIPE OUTPUT - - -- 13:56:31.676 FLOG_MAX [19327]: /ESMTP() -- 13:56:31.676 INFO [19327]: RET: action=11010 -- 13:56:31.676 INFO [19327]: RET: email=ameye+22@chiefsoft.com -- 13:56:31.676 INFO [19327]: RET: firstname=Olu -- 13:56:31.676 INFO [19327]: RET: lastname=Amey -- 13:56:31.676 INFO [19327]: RET: password=may1202 -- 13:56:31.676 INFO [19327]: RET: pending_id=3 -- 13:56:31.676 INFO [19327]: RET: pid=100 -- 13:56:31.676 INFO [19327]: RET: status_message=Pending -- 13:56:31.676 INFO [19327]: RET: username=ameye+22@chiefsoft.com -- 13:56:31.678 INFO [19327]: COREGRADE is stopping... -- 13:56:31.678 DEBUG [19327]: Closing database connection -- 13:56:31.678 SQL [19327]: pgsql_close() -- 13:56:31.680 INFO [19321]: COREGRADE is starting... -- 13:56:31.681 INFO [19321]: Version from config: 1.0 -- 13:56:31.681 DEBUG [19321]: Connecting to database... -- 13:56:31.681 DEBUG [19321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:56:31.681 SQL [19321]: pgsql_db_connect() -- 13:56:31.685 DEBUG [19321]: Database connection successful -- 13:56:31.685 INFO [19321]: _SERVER found -- 13:56:31.685 INFO [19321]: REMOTE_ADDR = 192.168.1.13 -- 13:56:31.685 INFO [19321]: SERVER_NAME = oameye.works.coregrade.com -- 13:56:31.685 INFO [19321]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=hufsdp2jqo7l9cnucsd07vhdefjrj0o3; _gat_gtag_UA_54829827_2=1 -- 13:56:31.685 INFO [19321]: QUERY_STRING = -- 13:56:31.685 INFO [19321]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:56:31.685 INFO [19321]: SystemStatus()09-09-********~************ -- 13:56:31.685 INFO [19321]: long coregrade_api_main(CVars in, CVars &out) -- 13:56:31.685 INFO [19321]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 13:56:31.685 INFO [19321]: account calls -- 13:56:31.685 INFO [19321]: account_calls() -- 13:56:31.685 FLOG_MAX [19321]: REQ_STRING(username) -- 13:56:31.685 FLOG_MAX [19321]: REQ_STRING(firstname) -- 13:56:31.685 FLOG_MAX [19321]: REQ_STRING(lastname) -- 13:56:31.685 FLOG_MAX [19321]: REQ_STRING(email) -- 13:56:31.685 SQL [19321]: pgsql_query() -- 13:56:31.685 SQL [19321]: About to run query: -- 13:56:31.685 SQL [19321]: SELECT * FROM members WHERE LOWER(username) = LOWER('ameye+22@chiefsoft.com') -- 13:56:31.687 SQL [19321]: Found rows: 0 -- 13:56:31.687 SQL [19321]: Found rows: 0 -- 13:56:31.687 FLOG_MAX [19321]: insert_db_record() -- 13:56:31.687 SQL [19321]: pgsql_exec() -- 13:56:31.687 SQL [19321]: About to run query: -- 13:56:31.687 SQL [19321]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ameye+22@chiefsoft.com','Olu','Amey','192.168.1.13','','ameye+22@chiefsoft.com','RS-633472000-453898240-999276544') -- 13:56:31.689 SQL [19321]: PQcmdTuples: 1 -- 13:56:31.689 SQL [19321]: Affected rows: 1 -- 13:56:31.689 FLOG_MAX [19321]: SELECT currval('members_pending_id_seq') -- 13:56:31.689 SQL [19321]: pgsql_query() -- 13:56:31.689 SQL [19321]: About to run query: -- 13:56:31.689 SQL [19321]: SELECT currval('members_pending_id_seq') -- 13:56:31.689 SQL [19321]: Found rows: 1 -- 13:56:31.689 SQL [19321]: pgsql_query() -- 13:56:31.689 SQL [19321]: About to run query: -- 13:56:31.689 SQL [19321]: UPDATE members_pending SET password = md5('may1202') WHERE id = 4 -- 13:56:31.690 SQL [19321]: Found rows: 0 -- 13:56:31.690 SQL [19321]: Found rows: 0 -- 13:56:31.690 FLOG_MAX [19321]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:56:31.690 SQL [19321]: pgsql_query() -- 13:56:31.690 SQL [19321]: About to run query: -- 13:56:31.690 SQL [19321]: SELECT * FROM members_pending WHERE id = 4 -- 13:56:31.691 SQL [19321]: Found rows: 1 -- 13:56:31.691 FLOG_MAX [19321]: load_db_record(SELECT * FROM members_pending WHERE id = 4 ) num_cols=13 -- 13:56:31.691 FLOG_MAX [19321]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 13:56:31.691 FLOG_MAX [19321]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1692 bytes -- 13:56:31.691 FLOG_MAX [19321]: Returning from FormFile() -- 13:56:31.691 FLOG_MAX [19321]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 13:56:31.691 FLOG_MAX [19321]: ESMTP( 10.0.0.35, demo@coregrade.com, ameye+22@chiefsoft.com ) -- 13:56:31.691 FLOG_MAX [19321]: Prepare body -- 13:56:31.691 FLOG_MAX [19321]: Locate & extract subject -- 13:56:31.691 FLOG_MAX [19321]: Found subject: CoreGrade - Pending Signup - Verify ameye+22@chiefsoft.com -- 13:56:31.691 FLOG_MAX [19321]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.35 -f demo@coregrade.com -t ameye+22@chiefsoft.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002!x -sub 'CoreGrade - Pending Signup - Verify ameye+22@chiefsoft.com' -M ' - - - -
-
- - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-633472000-453898240-999276544 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - -' -- 13:56:34.682 FLOG_MAX [19321]: - -END OF PIPE OUTPUT - - -- 13:56:34.682 FLOG_MAX [19321]: /ESMTP() -- 13:56:34.682 INFO [19321]: RET: action=11010 -- 13:56:34.682 INFO [19321]: RET: email=ameye+22@chiefsoft.com -- 13:56:34.682 INFO [19321]: RET: firstname=Olu -- 13:56:34.682 INFO [19321]: RET: lastname=Amey -- 13:56:34.682 INFO [19321]: RET: password=may1202 -- 13:56:34.682 INFO [19321]: RET: pending_id=4 -- 13:56:34.682 INFO [19321]: RET: pid=100 -- 13:56:34.682 INFO [19321]: RET: status_message=Pending -- 13:56:34.682 INFO [19321]: RET: username=ameye+22@chiefsoft.com -- 13:56:34.684 INFO [19321]: COREGRADE is stopping... -- 13:56:34.684 DEBUG [19321]: Closing database connection -- 13:56:34.684 SQL [19321]: pgsql_close() -- 14:00:50.158 INFO [19483]: COREGRADE is starting... -- 14:00:50.159 INFO [19483]: Version from config: 1.0 -- 14:00:50.159 DEBUG [19483]: Connecting to database... -- 14:00:50.159 DEBUG [19483]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:00:50.159 SQL [19483]: pgsql_db_connect() -- 14:00:50.164 DEBUG [19483]: Database connection successful -- 14:00:50.164 INFO [19483]: _SERVER found -- 14:00:50.164 INFO [19483]: REMOTE_ADDR = 192.168.1.13 -- 14:00:50.164 INFO [19483]: SERVER_NAME = oameye.works.coregrade.com -- 14:00:50.164 INFO [19483]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=hufsdp2jqo7l9cnucsd07vhdefjrj0o3 -- 14:00:50.164 INFO [19483]: QUERY_STRING = -- 14:00:50.164 INFO [19483]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:00:50.164 INFO [19483]: SystemStatus()09-09-********~************ -- 14:00:50.164 INFO [19483]: long coregrade_api_main(CVars in, CVars &out) -- 14:00:50.164 INFO [19483]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 14:00:50.164 INFO [19483]: account calls -- 14:00:50.164 INFO [19483]: account_calls() -- 14:00:50.164 FLOG_MAX [19483]: REQ_STRING(username) -- 14:00:50.164 FLOG_MAX [19483]: REQ_STRING(firstname) -- 14:00:50.164 FLOG_MAX [19483]: REQ_STRING(lastname) -- 14:00:50.164 FLOG_MAX [19483]: REQ_STRING(email) -- 14:00:50.164 SQL [19483]: pgsql_query() -- 14:00:50.164 SQL [19483]: About to run query: -- 14:00:50.164 SQL [19483]: SELECT * FROM members WHERE LOWER(username) = LOWER('ameye+35@chiefsoft.com') -- 14:00:50.166 SQL [19483]: Found rows: 0 -- 14:00:50.166 SQL [19483]: Found rows: 0 -- 14:00:50.166 FLOG_MAX [19483]: insert_db_record() -- 14:00:50.166 SQL [19483]: pgsql_exec() -- 14:00:50.166 SQL [19483]: About to run query: -- 14:00:50.166 SQL [19483]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ameye+35@chiefsoft.com','Olu','Amey','192.168.1.13','','ameye+35@chiefsoft.com','RS-1550401536-678428672-1946157056') -- 14:00:50.168 SQL [19483]: PQcmdTuples: 1 -- 14:00:50.168 SQL [19483]: Affected rows: 1 -- 14:00:50.168 FLOG_MAX [19483]: SELECT currval('members_pending_id_seq') -- 14:00:50.168 SQL [19483]: pgsql_query() -- 14:00:50.168 SQL [19483]: About to run query: -- 14:00:50.168 SQL [19483]: SELECT currval('members_pending_id_seq') -- 14:00:50.168 SQL [19483]: Found rows: 1 -- 14:00:50.168 SQL [19483]: pgsql_query() -- 14:00:50.168 SQL [19483]: About to run query: -- 14:00:50.168 SQL [19483]: UPDATE members_pending SET password = md5('may12002') WHERE id = 5 -- 14:00:50.169 SQL [19483]: Found rows: 0 -- 14:00:50.169 SQL [19483]: Found rows: 0 -- 14:00:50.169 FLOG_MAX [19483]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:00:50.169 SQL [19483]: pgsql_query() -- 14:00:50.169 SQL [19483]: About to run query: -- 14:00:50.169 SQL [19483]: SELECT * FROM members_pending WHERE id = 5 -- 14:00:50.170 SQL [19483]: Found rows: 1 -- 14:00:50.170 FLOG_MAX [19483]: load_db_record(SELECT * FROM members_pending WHERE id = 5 ) num_cols=13 -- 14:00:50.170 FLOG_MAX [19483]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 14:00:50.170 FLOG_MAX [19483]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1692 bytes -- 14:00:50.170 FLOG_MAX [19483]: Returning from FormFile() -- 14:00:50.170 FLOG_MAX [19483]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 14:00:50.170 FLOG_MAX [19483]: ESMTP( 10.0.0.23, demo@coregrade.com, ameye+35@chiefsoft.com ) -- 14:00:50.170 FLOG_MAX [19483]: Prepare body -- 14:00:50.170 FLOG_MAX [19483]: Locate & extract subject -- 14:00:50.170 FLOG_MAX [19483]: Found subject: CoreGrade - Pending Signup - Verify ameye+35@chiefsoft.com -- 14:00:50.170 FLOG_MAX [19483]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f demo@coregrade.com -t ameye+35@chiefsoft.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002!x -sub 'CoreGrade - Pending Signup - Verify ameye+35@chiefsoft.com' -M ' - - - -
-
- - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-1550401536-678428672-1946157056 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - -' -- 14:00:50.846 FLOG_MAX [19483]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiF4 -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Pending Signup - Verify ameye+35@chiefsoft.com -From: CoreGrade Support -Date: Wed, 05 Feb 2020 14:00:50 -0500 -To: ameye+35@chiefsoft.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="AbsAm14750vNrSBW" -Mime-version: 1.0 - - ---AbsAm14750vNrSBW -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
- - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-1550401536-678428672-1946157056 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - - - - ---AbsAm14750vNrSBW-- - -[C] . -[S] 250 2.0.0 Ok: queued as CDCFE2114120 -[C] QUIT -[S] 221 2.0.0 Bye - -- 14:00:50.846 FLOG_MAX [19483]: - -END OF PIPE OUTPUT - - -- 14:00:50.846 FLOG_MAX [19483]: /ESMTP() -- 14:00:50.846 INFO [19483]: RET: action=11010 -- 14:00:50.846 INFO [19483]: RET: email=ameye+35@chiefsoft.com -- 14:00:50.846 INFO [19483]: RET: firstname=Olu -- 14:00:50.846 INFO [19483]: RET: lastname=Amey -- 14:00:50.846 INFO [19483]: RET: password=may12002 -- 14:00:50.846 INFO [19483]: RET: pending_id=5 -- 14:00:50.846 INFO [19483]: RET: pid=100 -- 14:00:50.846 INFO [19483]: RET: status_message=Pending -- 14:00:50.846 INFO [19483]: RET: username=ameye+35@chiefsoft.com -- 14:00:50.849 INFO [19483]: COREGRADE is stopping... -- 14:00:50.849 DEBUG [19483]: Closing database connection -- 14:00:50.849 SQL [19483]: pgsql_close() -- 14:05:21.407 INFO [19326]: COREGRADE is starting... -- 14:05:21.408 INFO [19326]: Version from config: 1.0 -- 14:05:21.408 DEBUG [19326]: Connecting to database... -- 14:05:21.408 DEBUG [19326]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:05:21.408 SQL [19326]: pgsql_db_connect() -- 14:05:21.413 DEBUG [19326]: Database connection successful -- 14:05:21.413 INFO [19326]: _SERVER found -- 14:05:21.413 INFO [19326]: REMOTE_ADDR = 192.168.1.13 -- 14:05:21.413 INFO [19326]: SERVER_NAME = oameye.works.coregrade.com -- 14:05:21.413 INFO [19326]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=58falesj0pjm2278ta2os0143utotua5 -- 14:05:21.413 INFO [19326]: QUERY_STRING = -- 14:05:21.413 INFO [19326]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:05:21.413 INFO [19326]: SystemStatus()09-09-********~************ -- 14:05:21.413 INFO [19326]: long coregrade_api_main(CVars in, CVars &out) -- 14:05:21.413 INFO [19326]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 14:05:21.413 INFO [19326]: account calls -- 14:05:21.413 INFO [19326]: account_calls() -- 14:05:21.413 FLOG_MAX [19326]: REQ_STRING(username) -- 14:05:21.413 FLOG_MAX [19326]: REQ_STRING(firstname) -- 14:05:21.413 FLOG_MAX [19326]: REQ_STRING(lastname) -- 14:05:21.413 FLOG_MAX [19326]: REQ_STRING(email) -- 14:05:21.413 SQL [19326]: pgsql_query() -- 14:05:21.413 SQL [19326]: About to run query: -- 14:05:21.413 SQL [19326]: SELECT * FROM members WHERE LOWER(username) = LOWER('ameye+55@chiefsoft.com') -- 14:05:21.416 SQL [19326]: Found rows: 0 -- 14:05:21.416 SQL [19326]: Found rows: 0 -- 14:05:21.416 FLOG_MAX [19326]: insert_db_record() -- 14:05:21.416 SQL [19326]: pgsql_exec() -- 14:05:21.416 SQL [19326]: About to run query: -- 14:05:21.416 SQL [19326]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ameye+55@chiefsoft.com','Olu','Amey','192.168.1.13','','ameye+55@chiefsoft.com','RS-349457408-950571008-1457340416') -- 14:05:21.417 SQL [19326]: PQcmdTuples: 1 -- 14:05:21.417 SQL [19326]: Affected rows: 1 -- 14:05:21.417 FLOG_MAX [19326]: SELECT currval('members_pending_id_seq') -- 14:05:21.417 SQL [19326]: pgsql_query() -- 14:05:21.417 SQL [19326]: About to run query: -- 14:05:21.417 SQL [19326]: SELECT currval('members_pending_id_seq') -- 14:05:21.418 SQL [19326]: Found rows: 1 -- 14:05:21.418 SQL [19326]: pgsql_query() -- 14:05:21.418 SQL [19326]: About to run query: -- 14:05:21.418 SQL [19326]: UPDATE members_pending SET password = md5('may12002') WHERE id = 6 -- 14:05:21.419 SQL [19326]: Found rows: 0 -- 14:05:21.419 SQL [19326]: Found rows: 0 -- 14:05:21.419 FLOG_MAX [19326]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:05:21.419 SQL [19326]: pgsql_query() -- 14:05:21.419 SQL [19326]: About to run query: -- 14:05:21.419 SQL [19326]: SELECT * FROM members_pending WHERE id = 6 -- 14:05:21.419 SQL [19326]: Found rows: 1 -- 14:05:21.419 FLOG_MAX [19326]: load_db_record(SELECT * FROM members_pending WHERE id = 6 ) num_cols=13 -- 14:05:21.419 FLOG_MAX [19326]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 14:05:21.419 FLOG_MAX [19326]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1692 bytes -- 14:05:21.419 FLOG_MAX [19326]: Returning from FormFile() -- 14:05:21.419 FLOG_MAX [19326]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 14:05:21.419 FLOG_MAX [19326]: ESMTP( 10.0.0.23, demo@coregrade.com, ameye+55@chiefsoft.com ) -- 14:05:21.419 FLOG_MAX [19326]: Prepare body -- 14:05:21.419 FLOG_MAX [19326]: Locate & extract subject -- 14:05:21.419 FLOG_MAX [19326]: Found subject: CoreGrade - Pending Signup - Verify ameye+55@chiefsoft.com -- 14:05:21.419 FLOG_MAX [19326]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f demo@coregrade.com -t ameye+55@chiefsoft.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002!x -sub 'CoreGrade - Pending Signup - Verify ameye+55@chiefsoft.com' -M ' - - - -
-
- - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-349457408-950571008-1457340416 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - -' -- 14:05:21.445 FLOG_MAX [19326]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiF4 -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Pending Signup - Verify ameye+55@chiefsoft.com -From: CoreGrade Support -Date: Wed, 05 Feb 2020 14:05:21 -0500 -To: ameye+55@chiefsoft.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="0onGeYM+eZ6+V7oD" -Mime-version: 1.0 - - ---0onGeYM+eZ6+V7oD -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
- - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-349457408-950571008-1457340416 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - - - - ---0onGeYM+eZ6+V7oD-- - -[C] . -[S] 250 2.0.0 Ok: queued as 6B92E2114120 -[C] QUIT -[S] 221 2.0.0 Bye -U -- 14:05:21.446 FLOG_MAX [19326]: - -END OF PIPE OUTPUT - - -- 14:05:21.446 FLOG_MAX [19326]: /ESMTP() -- 14:05:21.446 INFO [19326]: RET: action=11010 -- 14:05:21.446 INFO [19326]: RET: email=ameye+55@chiefsoft.com -- 14:05:21.446 INFO [19326]: RET: firstname=Olu -- 14:05:21.446 INFO [19326]: RET: lastname=Amey -- 14:05:21.446 INFO [19326]: RET: password=may12002 -- 14:05:21.446 INFO [19326]: RET: pending_id=6 -- 14:05:21.446 INFO [19326]: RET: pid=100 -- 14:05:21.446 INFO [19326]: RET: status_message=Pending -- 14:05:21.446 INFO [19326]: RET: username=ameye+55@chiefsoft.com -- 14:05:21.448 INFO [19326]: COREGRADE is stopping... -- 14:05:21.448 DEBUG [19326]: Closing database connection -- 14:05:21.448 SQL [19326]: pgsql_close() -- 14:06:38.881 INFO [19329]: COREGRADE is starting... -- 14:06:38.881 INFO [19329]: Version from config: 1.0 -- 14:06:38.881 DEBUG [19329]: Connecting to database... -- 14:06:38.881 DEBUG [19329]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:06:38.881 SQL [19329]: pgsql_db_connect() -- 14:06:38.886 DEBUG [19329]: Database connection successful -- 14:06:38.886 INFO [19329]: _SERVER found -- 14:06:38.886 INFO [19329]: REMOTE_ADDR = 192.168.1.13 -- 14:06:38.886 INFO [19329]: SERVER_NAME = oameye.works.coregrade.com -- 14:06:38.886 INFO [19329]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=58falesj0pjm2278ta2os0143utotua5 -- 14:06:38.886 INFO [19329]: QUERY_STRING = -- 14:06:38.886 INFO [19329]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:06:38.886 INFO [19329]: SystemStatus()09-09-********~************ -- 14:06:38.886 INFO [19329]: long coregrade_api_main(CVars in, CVars &out) -- 14:06:38.886 INFO [19329]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 14:06:38.886 INFO [19329]: account calls -- 14:06:38.886 INFO [19329]: account_calls() -- 14:06:38.886 FLOG_MAX [19329]: REQ_STRING(username) -- 14:06:38.886 FLOG_MAX [19329]: REQ_STRING(firstname) -- 14:06:38.886 FLOG_MAX [19329]: REQ_STRING(lastname) -- 14:06:38.887 FLOG_MAX [19329]: REQ_STRING(email) -- 14:06:38.887 SQL [19329]: pgsql_query() -- 14:06:38.887 SQL [19329]: About to run query: -- 14:06:38.887 SQL [19329]: SELECT * FROM members WHERE LOWER(username) = LOWER('ameye+66@chiefsoft.com') -- 14:06:38.889 SQL [19329]: Found rows: 0 -- 14:06:38.889 SQL [19329]: Found rows: 0 -- 14:06:38.889 FLOG_MAX [19329]: insert_db_record() -- 14:06:38.889 SQL [19329]: pgsql_exec() -- 14:06:38.889 SQL [19329]: About to run query: -- 14:06:38.889 SQL [19329]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ameye+66@chiefsoft.com','Olu','Amey','192.168.1.13','','ameye+66@chiefsoft.com','RS-643662592-99604224-253975296') -- 14:06:38.891 SQL [19329]: PQcmdTuples: 1 -- 14:06:38.891 SQL [19329]: Affected rows: 1 -- 14:06:38.891 FLOG_MAX [19329]: SELECT currval('members_pending_id_seq') -- 14:06:38.891 SQL [19329]: pgsql_query() -- 14:06:38.891 SQL [19329]: About to run query: -- 14:06:38.891 SQL [19329]: SELECT currval('members_pending_id_seq') -- 14:06:38.891 SQL [19329]: Found rows: 1 -- 14:06:38.891 SQL [19329]: pgsql_query() -- 14:06:38.891 SQL [19329]: About to run query: -- 14:06:38.891 SQL [19329]: UPDATE members_pending SET password = md5('may12002') WHERE id = 7 -- 14:06:38.892 SQL [19329]: Found rows: 0 -- 14:06:38.893 SQL [19329]: Found rows: 0 -- 14:06:38.893 FLOG_MAX [19329]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:06:38.893 SQL [19329]: pgsql_query() -- 14:06:38.893 SQL [19329]: About to run query: -- 14:06:38.893 SQL [19329]: SELECT * FROM members_pending WHERE id = 7 -- 14:06:38.893 SQL [19329]: Found rows: 1 -- 14:06:38.893 FLOG_MAX [19329]: load_db_record(SELECT * FROM members_pending WHERE id = 7 ) num_cols=13 -- 14:06:38.893 FLOG_MAX [19329]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 14:06:38.893 FLOG_MAX [19329]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1692 bytes -- 14:06:38.893 FLOG_MAX [19329]: Returning from FormFile() -- 14:06:38.893 FLOG_MAX [19329]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 14:06:38.893 FLOG_MAX [19329]: ESMTP( 10.0.0.23, demo@coregrade.com, ameye+66@chiefsoft.com ) -- 14:06:38.893 FLOG_MAX [19329]: Prepare body -- 14:06:38.893 FLOG_MAX [19329]: Locate & extract subject -- 14:06:38.893 FLOG_MAX [19329]: Found subject: CoreGrade - Pending Signup - Verify ameye+66@chiefsoft.com -- 14:06:38.893 FLOG_MAX [19329]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f demo@coregrade.com -t ameye+66@chiefsoft.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002!x -sub 'CoreGrade - Pending Signup - Verify ameye+66@chiefsoft.com' -M ' - - - -
-
- - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-643662592-99604224-253975296 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - -' -- 14:06:38.918 FLOG_MAX [19329]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiF4 -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Pending Signup - Verify ameye+66@chiefsoft.com -From: CoreGrade Support -Date: Wed, 05 Feb 2020 14:06:38 -0500 -To: ameye+66@chiefsoft.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="dZyX/KMCQw/OcXfT" -Mime-version: 1.0 - - ---dZyX/KMCQw/OcXfT -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
- - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-643662592-99604224-253975296 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - - - - ---dZyX/KMCQw/OcXfT-- - -[C] . -[S] 250 2.0.0 Ok: queued as DEEB42114121 -[C] QUIT -[S] 221 2.0.0 Bye -g -- 14:06:38.918 FLOG_MAX [19329]: - -END OF PIPE OUTPUT - - -- 14:06:38.918 FLOG_MAX [19329]: /ESMTP() -- 14:06:38.918 INFO [19329]: RET: action=11010 -- 14:06:38.918 INFO [19329]: RET: email=ameye+66@chiefsoft.com -- 14:06:38.918 INFO [19329]: RET: firstname=Olu -- 14:06:38.918 INFO [19329]: RET: lastname=Amey -- 14:06:38.918 INFO [19329]: RET: password=may12002 -- 14:06:38.918 INFO [19329]: RET: pending_id=7 -- 14:06:38.918 INFO [19329]: RET: pid=100 -- 14:06:38.918 INFO [19329]: RET: status_message=Pending -- 14:06:38.918 INFO [19329]: RET: username=ameye+66@chiefsoft.com -- 14:06:38.921 INFO [19329]: COREGRADE is stopping... -- 14:06:38.921 DEBUG [19329]: Closing database connection -- 14:06:38.921 SQL [19329]: pgsql_close() -- 14:07:48.835 INFO [19327]: COREGRADE is starting... -- 14:07:48.835 INFO [19327]: Version from config: 1.0 -- 14:07:48.835 DEBUG [19327]: Connecting to database... -- 14:07:48.835 DEBUG [19327]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:07:48.835 SQL [19327]: pgsql_db_connect() -- 14:07:48.840 DEBUG [19327]: Database connection successful -- 14:07:48.840 INFO [19327]: _SERVER found -- 14:07:48.840 INFO [19327]: REMOTE_ADDR = 192.168.1.13 -- 14:07:48.840 INFO [19327]: SERVER_NAME = oameye.works.coregrade.com -- 14:07:48.840 INFO [19327]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=58falesj0pjm2278ta2os0143utotua5 -- 14:07:48.840 INFO [19327]: QUERY_STRING = -- 14:07:48.840 INFO [19327]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:07:48.840 INFO [19327]: SystemStatus()09-09-********~************ -- 14:07:48.840 INFO [19327]: long coregrade_api_main(CVars in, CVars &out) -- 14:07:48.840 INFO [19327]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 14:07:48.840 INFO [19327]: account calls -- 14:07:48.840 INFO [19327]: account_calls() -- 14:07:48.840 FLOG_MAX [19327]: REQ_STRING(username) -- 14:07:48.840 FLOG_MAX [19327]: REQ_STRING(firstname) -- 14:07:48.840 FLOG_MAX [19327]: REQ_STRING(lastname) -- 14:07:48.840 FLOG_MAX [19327]: REQ_STRING(email) -- 14:07:48.840 SQL [19327]: pgsql_query() -- 14:07:48.840 SQL [19327]: About to run query: -- 14:07:48.840 SQL [19327]: SELECT * FROM members WHERE LOWER(username) = LOWER('ameye+77@chiefsoft.com') -- 14:07:48.842 SQL [19327]: Found rows: 0 -- 14:07:48.842 SQL [19327]: Found rows: 0 -- 14:07:48.842 FLOG_MAX [19327]: insert_db_record() -- 14:07:48.842 SQL [19327]: pgsql_exec() -- 14:07:48.842 SQL [19327]: About to run query: -- 14:07:48.843 SQL [19327]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ameye+77@chiefsoft.com','Olu','Amey','192.168.1.13','','ameye+77@chiefsoft.com','RS-544029952-898607360-1157555456') -- 14:07:48.844 SQL [19327]: PQcmdTuples: 1 -- 14:07:48.844 SQL [19327]: Affected rows: 1 -- 14:07:48.844 FLOG_MAX [19327]: SELECT currval('members_pending_id_seq') -- 14:07:48.844 SQL [19327]: pgsql_query() -- 14:07:48.844 SQL [19327]: About to run query: -- 14:07:48.844 SQL [19327]: SELECT currval('members_pending_id_seq') -- 14:07:48.844 SQL [19327]: Found rows: 1 -- 14:07:48.844 SQL [19327]: pgsql_query() -- 14:07:48.844 SQL [19327]: About to run query: -- 14:07:48.844 SQL [19327]: UPDATE members_pending SET password = md5('may12002') WHERE id = 8 -- 14:07:48.846 SQL [19327]: Found rows: 0 -- 14:07:48.846 SQL [19327]: Found rows: 0 -- 14:07:48.846 FLOG_MAX [19327]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:07:48.846 SQL [19327]: pgsql_query() -- 14:07:48.846 SQL [19327]: About to run query: -- 14:07:48.846 SQL [19327]: SELECT * FROM members_pending WHERE id = 8 -- 14:07:48.846 SQL [19327]: Found rows: 1 -- 14:07:48.846 FLOG_MAX [19327]: load_db_record(SELECT * FROM members_pending WHERE id = 8 ) num_cols=13 -- 14:07:48.846 FLOG_MAX [19327]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 14:07:48.846 FLOG_MAX [19327]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1692 bytes -- 14:07:48.846 FLOG_MAX [19327]: Returning from FormFile() -- 14:07:48.846 FLOG_MAX [19327]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 14:07:48.846 FLOG_MAX [19327]: ESMTP( 10.0.0.23, support@coregrade.com, ameye+77@chiefsoft.com ) -- 14:07:48.846 FLOG_MAX [19327]: Prepare body -- 14:07:48.846 FLOG_MAX [19327]: Locate & extract subject -- 14:07:48.846 FLOG_MAX [19327]: Found subject: CoreGrade - Pending Signup - Verify ameye+77@chiefsoft.com -- 14:07:48.846 FLOG_MAX [19327]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t ameye+77@chiefsoft.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002!x -sub 'CoreGrade - Pending Signup - Verify ameye+77@chiefsoft.com' -M ' - - - -
-
- - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-544029952-898607360-1157555456 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - -' -- 14:07:48.870 FLOG_MAX [19327]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiF4 -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Pending Signup - Verify ameye+77@chiefsoft.com -From: CoreGrade Support -Date: Wed, 05 Feb 2020 14:07:48 -0500 -To: ameye+77@chiefsoft.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="jMJn3ksbFefj0tjz" -Mime-version: 1.0 - - ---jMJn3ksbFefj0tjz -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
- - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-544029952-898607360-1157555456 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - - - - ---jMJn3ksbFefj0tjz-- - -[C] . -[S] 250 2.0.0 Ok: queued as D331E2114121 -[C] QUIT -[S] 221 2.0.0 Bye -ùžU -- 14:07:48.871 FLOG_MAX [19327]: - -END OF PIPE OUTPUT - - -- 14:07:48.871 FLOG_MAX [19327]: /ESMTP() -- 14:07:48.871 INFO [19327]: RET: action=11010 -- 14:07:48.871 INFO [19327]: RET: email=ameye+77@chiefsoft.com -- 14:07:48.871 INFO [19327]: RET: firstname=Olu -- 14:07:48.871 INFO [19327]: RET: lastname=Amey -- 14:07:48.871 INFO [19327]: RET: password=may12002 -- 14:07:48.871 INFO [19327]: RET: pending_id=8 -- 14:07:48.871 INFO [19327]: RET: pid=100 -- 14:07:48.871 INFO [19327]: RET: status_message=Pending -- 14:07:48.871 INFO [19327]: RET: username=ameye+77@chiefsoft.com -- 14:07:48.873 INFO [19327]: COREGRADE is stopping... -- 14:07:48.873 DEBUG [19327]: Closing database connection -- 14:07:48.873 SQL [19327]: pgsql_close() -- 14:11:10.550 INFO [19483]: COREGRADE is starting... -- 14:11:10.551 INFO [19483]: Version from config: 1.0 -- 14:11:10.551 DEBUG [19483]: Connecting to database... -- 14:11:10.551 DEBUG [19483]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:11:10.551 SQL [19483]: pgsql_db_connect() -- 14:11:10.556 DEBUG [19483]: Database connection successful -- 14:11:10.556 INFO [19483]: _SERVER found -- 14:11:10.556 INFO [19483]: REMOTE_ADDR = 192.168.1.13 -- 14:11:10.556 INFO [19483]: SERVER_NAME = oameye.works.coregrade.com -- 14:11:10.556 INFO [19483]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1825923780.1580907319 -- 14:11:10.556 INFO [19483]: QUERY_STRING = vlnk=RS-544029952-898607360-1157555456 -- 14:11:10.556 INFO [19483]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:11:10.556 INFO [19483]: SystemStatus()09-09-********~************ -- 14:11:10.556 INFO [19483]: long coregrade_api_main(CVars in, CVars &out) -- 14:11:10.556 INFO [19483]: long coregrade_api_main(CVars in, CVars &out) action =11020 -- 14:11:10.556 INFO [19483]: account calls -- 14:11:10.556 INFO [19483]: account_calls() -- 14:11:10.556 INFO [19483]: CreateCoreGradeAccount() -- 14:11:10.556 FLOG_MAX [19483]: REQ_STRING(verify_link) -- 14:11:10.556 FLOG_MAX [19483]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:11:10.556 SQL [19483]: pgsql_query() -- 14:11:10.556 SQL [19483]: About to run query: -- 14:11:10.556 SQL [19483]: SELECT *,id AS pending_id FROM members_pending WHERE verify_link ='RS-544029952-898607360-1157555456' AND expire > now() LIMIT 1 -- 14:11:10.559 SQL [19483]: Found rows: 1 -- 14:11:10.559 FLOG_MAX [19483]: load_db_record(SELECT *,id AS pending_id FROM members_pending WHERE verify_link ='RS-544029952-898607360-1157555456' AND expire > now() LIMIT 1) num_cols=14 -- 14:11:10.559 FLOG_MAX [19483]: insert_db_record() -- 14:11:10.559 SQL [19483]: pgsql_exec() -- 14:11:10.559 SQL [19483]: About to run query: -- 14:11:10.559 SQL [19483]: INSERT INTO members (email,firstname,lastname,loc,password,phone,username) VALUES ('ameye+77@chiefsoft.com','Olu','Amey','192.168.1.13','d0fbea2563b377ea7074bced45c88dcb','','ameye+77@chiefsoft.com') -- 14:11:10.561 SQL [19483]: PQcmdTuples: 1 -- 14:11:10.561 SQL [19483]: Affected rows: 1 -- 14:11:10.561 FLOG_MAX [19483]: SELECT currval('members_id_seq') -- 14:11:10.561 SQL [19483]: pgsql_query() -- 14:11:10.561 SQL [19483]: About to run query: -- 14:11:10.561 SQL [19483]: SELECT currval('members_id_seq') -- 14:11:10.561 SQL [19483]: Found rows: 1 -- 14:11:10.561 SQL [19483]: pgsql_query() -- 14:11:10.561 SQL [19483]: About to run query: -- 14:11:10.561 SQL [19483]: UPDATE members_pending SET status = 5,verified=now() WHERE id = 8 -- 14:11:10.562 SQL [19483]: Found rows: 0 -- 14:11:10.562 SQL [19483]: Found rows: 0 -- 14:11:10.562 INFO [19483]: /CreateCoreGradeAccount() -- 14:11:10.562 INFO [19483]: RET: added=2020-02-05 14:07:48.843068 -- 14:11:10.562 INFO [19483]: RET: email=ameye+77@chiefsoft.com -- 14:11:10.562 INFO [19483]: RET: expire=2020-02-07 14:07:48.843068 -- 14:11:10.562 INFO [19483]: RET: firstname=Olu -- 14:11:10.562 INFO [19483]: RET: id=8 -- 14:11:10.562 INFO [19483]: RET: lastname=Amey -- 14:11:10.562 INFO [19483]: RET: loc=192.168.1.13 -- 14:11:10.562 INFO [19483]: RET: member_id=8 -- 14:11:10.562 INFO [19483]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 14:11:10.562 INFO [19483]: RET: pending_id=8 -- 14:11:10.562 INFO [19483]: RET: phone= -- 14:11:10.562 INFO [19483]: RET: result=YES I GET TO BACK END -- 14:11:10.562 INFO [19483]: RET: status=prepare to create account -- 14:11:10.562 INFO [19483]: RET: username=ameye+77@chiefsoft.com -- 14:11:10.562 INFO [19483]: RET: verified= -- 14:11:10.562 INFO [19483]: RET: verify_link=RS-544029952-898607360-1157555456 -- 14:11:10.564 INFO [19483]: COREGRADE is stopping... -- 14:11:10.564 DEBUG [19483]: Closing database connection -- 14:11:10.564 SQL [19483]: pgsql_close() -- 14:18:39.518 INFO [20036]: COREGRADE is starting... -- 14:18:39.518 INFO [20036]: Version from config: 1.0 -- 14:18:39.518 DEBUG [20036]: Connecting to database... -- 14:18:39.518 DEBUG [20036]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:18:39.518 SQL [20036]: pgsql_db_connect() -- 14:18:39.523 DEBUG [20036]: Database connection successful -- 14:18:39.523 INFO [20036]: _SERVER found -- 14:18:39.523 INFO [20036]: REMOTE_ADDR = 192.168.1.13 -- 14:18:39.523 INFO [20036]: SERVER_NAME = oameye.works.coregrade.com -- 14:18:39.523 INFO [20036]: HTTP_COOKIE = ci_session=ur67fjo4sdfnet43j1moo06rkjlivon0; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1825923780.1580907319 -- 14:18:39.523 INFO [20036]: QUERY_STRING = -- 14:18:39.523 INFO [20036]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:18:39.523 INFO [20036]: SystemStatus()09-09-********~************ -- 14:18:39.523 INFO [20036]: long coregrade_api_main(CVars in, CVars &out) -- 14:18:39.523 INFO [20036]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 14:18:39.523 INFO [20036]: account calls -- 14:18:39.523 INFO [20036]: account_calls() -- 14:18:39.523 INFO [20036]: LoginCoreGradeAccount() -- 14:18:39.523 FLOG_MAX [20036]: REQ_STRING(username) -- 14:18:39.523 FLOG_MAX [20036]: REQ_STRING(password) -- 14:18:39.523 FLOG_MAX [20036]: REQ_STRING(sessionid) -- 14:18:39.523 FLOG_MAX [20036]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:18:39.523 SQL [20036]: pgsql_query() -- 14:18:39.523 SQL [20036]: About to run query: -- 14:18:39.523 SQL [20036]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('nay12002') -- 14:18:39.527 SQL [20036]: Found rows: 0 -- 14:18:39.527 SQL [20036]: Found rows: 0 -- 14:18:39.527 INFO [20036]: long SessionCheck(long uid, const char *sessionid, int create ) -- 14:18:39.527 INFO [20036]: /LoginCoreGradeAccount() -- 14:18:39.527 INFO [20036]: RET: member_id= -- 14:18:39.527 INFO [20036]: RET: result=YES I GET TO BACK END -- 14:18:39.527 INFO [20036]: RET: sessionid= -- 14:18:39.527 INFO [20036]: RET: status=Session check failed -- 14:18:39.529 INFO [20036]: COREGRADE is stopping... -- 14:18:39.529 DEBUG [20036]: Closing database connection -- 14:18:39.529 SQL [20036]: pgsql_close() -- 14:18:48.314 INFO [19329]: COREGRADE is starting... -- 14:18:48.314 INFO [19329]: Version from config: 1.0 -- 14:18:48.314 DEBUG [19329]: Connecting to database... -- 14:18:48.314 DEBUG [19329]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:18:48.314 SQL [19329]: pgsql_db_connect() -- 14:18:48.319 DEBUG [19329]: Database connection successful -- 14:18:48.319 INFO [19329]: _SERVER found -- 14:18:48.319 INFO [19329]: REMOTE_ADDR = 192.168.1.13 -- 14:18:48.319 INFO [19329]: SERVER_NAME = oameye.works.coregrade.com -- 14:18:48.319 INFO [19329]: HTTP_COOKIE = ci_session=uhp9780tei1idj93gdudrr9aq8urcuh3; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1825923780.1580907319 -- 14:18:48.319 INFO [19329]: QUERY_STRING = -- 14:18:48.319 INFO [19329]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:18:48.319 INFO [19329]: SystemStatus()09-09-********~************ -- 14:18:48.319 INFO [19329]: long coregrade_api_main(CVars in, CVars &out) -- 14:18:48.319 INFO [19329]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 14:18:48.319 INFO [19329]: account calls -- 14:18:48.319 INFO [19329]: account_calls() -- 14:18:48.319 INFO [19329]: LoginCoreGradeAccount() -- 14:18:48.319 FLOG_MAX [19329]: REQ_STRING(username) -- 14:18:48.319 FLOG_MAX [19329]: REQ_STRING(password) -- 14:18:48.319 FLOG_MAX [19329]: REQ_STRING(sessionid) -- 14:18:48.319 FLOG_MAX [19329]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:18:48.319 SQL [19329]: pgsql_query() -- 14:18:48.319 SQL [19329]: About to run query: -- 14:18:48.319 SQL [19329]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('nay12002') -- 14:18:48.323 SQL [19329]: Found rows: 0 -- 14:18:48.323 SQL [19329]: Found rows: 0 -- 14:18:48.323 INFO [19329]: long SessionCheck(long uid, const char *sessionid, int create ) -- 14:18:48.323 INFO [19329]: /LoginCoreGradeAccount() -- 14:18:48.323 INFO [19329]: RET: member_id= -- 14:18:48.323 INFO [19329]: RET: result=YES I GET TO BACK END -- 14:18:48.323 INFO [19329]: RET: sessionid= -- 14:18:48.323 INFO [19329]: RET: status=Session check failed -- 14:18:48.324 INFO [19329]: COREGRADE is stopping... -- 14:18:48.324 DEBUG [19329]: Closing database connection -- 14:18:48.324 SQL [19329]: pgsql_close() -- 14:18:51.248 INFO [19329]: COREGRADE is starting... -- 14:18:51.248 INFO [19329]: Version from config: 1.0 -- 14:18:51.248 DEBUG [19329]: Connecting to database... -- 14:18:51.248 DEBUG [19329]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:18:51.248 SQL [19329]: pgsql_db_connect() -- 14:18:51.253 DEBUG [19329]: Database connection successful -- 14:18:51.253 INFO [19329]: _SERVER found -- 14:18:51.253 INFO [19329]: REMOTE_ADDR = 192.168.1.13 -- 14:18:51.253 INFO [19329]: SERVER_NAME = oameye.works.coregrade.com -- 14:18:51.253 INFO [19329]: HTTP_COOKIE = ci_session=uhp9780tei1idj93gdudrr9aq8urcuh3; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1825923780.1580907319 -- 14:18:51.253 INFO [19329]: QUERY_STRING = -- 14:18:51.253 INFO [19329]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:18:51.253 INFO [19329]: SystemStatus()09-09-********~************ -- 14:18:51.253 INFO [19329]: long coregrade_api_main(CVars in, CVars &out) -- 14:18:51.253 INFO [19329]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 14:18:51.253 INFO [19329]: account calls -- 14:18:51.253 INFO [19329]: account_calls() -- 14:18:51.253 INFO [19329]: LoginCoreGradeAccount() -- 14:18:51.253 FLOG_MAX [19329]: REQ_STRING(username) -- 14:18:51.253 FLOG_MAX [19329]: REQ_STRING(password) -- 14:18:51.253 FLOG_MAX [19329]: REQ_STRING(sessionid) -- 14:18:51.253 FLOG_MAX [19329]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:18:51.253 SQL [19329]: pgsql_query() -- 14:18:51.253 SQL [19329]: About to run query: -- 14:18:51.253 SQL [19329]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('nay12002') -- 14:18:51.257 SQL [19329]: Found rows: 0 -- 14:18:51.257 SQL [19329]: Found rows: 0 -- 14:18:51.257 INFO [19329]: long SessionCheck(long uid, const char *sessionid, int create ) -- 14:18:51.257 INFO [19329]: /LoginCoreGradeAccount() -- 14:18:51.257 INFO [19329]: RET: member_id= -- 14:18:51.257 INFO [19329]: RET: result=YES I GET TO BACK END -- 14:18:51.257 INFO [19329]: RET: sessionid= -- 14:18:51.257 INFO [19329]: RET: status=Session check failed -- 14:18:51.258 INFO [19329]: COREGRADE is stopping... -- 14:18:51.258 DEBUG [19329]: Closing database connection -- 14:18:51.258 SQL [19329]: pgsql_close() -- 14:19:01.922 INFO [19327]: COREGRADE is starting... -- 14:19:01.922 INFO [19327]: Version from config: 1.0 -- 14:19:01.922 DEBUG [19327]: Connecting to database... -- 14:19:01.922 DEBUG [19327]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:19:01.922 SQL [19327]: pgsql_db_connect() -- 14:19:01.927 DEBUG [19327]: Database connection successful -- 14:19:01.927 INFO [19327]: _SERVER found -- 14:19:01.927 INFO [19327]: REMOTE_ADDR = 192.168.1.13 -- 14:19:01.927 INFO [19327]: SERVER_NAME = oameye.works.coregrade.com -- 14:19:01.927 INFO [19327]: HTTP_COOKIE = ci_session=uhp9780tei1idj93gdudrr9aq8urcuh3; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1825923780.1580907319 -- 14:19:01.927 INFO [19327]: QUERY_STRING = -- 14:19:01.927 INFO [19327]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:19:01.927 INFO [19327]: SystemStatus()09-09-********~************ -- 14:19:01.927 INFO [19327]: long coregrade_api_main(CVars in, CVars &out) -- 14:19:01.927 INFO [19327]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 14:19:01.927 INFO [19327]: account calls -- 14:19:01.927 INFO [19327]: account_calls() -- 14:19:01.927 INFO [19327]: LoginCoreGradeAccount() -- 14:19:01.927 FLOG_MAX [19327]: REQ_STRING(username) -- 14:19:01.927 FLOG_MAX [19327]: REQ_STRING(password) -- 14:19:01.927 FLOG_MAX [19327]: REQ_STRING(sessionid) -- 14:19:01.927 FLOG_MAX [19327]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:19:01.927 SQL [19327]: pgsql_query() -- 14:19:01.927 SQL [19327]: About to run query: -- 14:19:01.927 SQL [19327]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 14:19:01.930 SQL [19327]: Found rows: 1 -- 14:19:01.930 FLOG_MAX [19327]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 14:19:01.930 INFO [19327]: long SessionCheck(long uid, const char *sessionid, int create ) -- 14:19:01.930 SQL [19327]: pgsql_exec() -- 14:19:01.930 SQL [19327]: About to run query: -- 14:19:01.930 SQL [19327]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '15 minutes') -- 14:19:01.932 SQL [19327]: PQcmdTuples: 1 -- 14:19:01.932 SQL [19327]: Affected rows: 1 -- 14:19:01.932 SQL [19327]: pgsql_query() -- 14:19:01.932 SQL [19327]: About to run query: -- 14:19:01.932 SQL [19327]: SELECT * FROM members_session WHERE member_id=5 AND session<>'BE677681961E7A5201FE57D577722A5B' -- 14:19:01.933 SQL [19327]: Found rows: 0 -- 14:19:01.933 SQL [19327]: Found rows: 0 -- 14:19:01.933 FLOG_MAX [19327]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:19:01.933 SQL [19327]: pgsql_query() -- 14:19:01.933 SQL [19327]: About to run query: -- 14:19:01.933 SQL [19327]: SELECT * FROM members_session WHERE member_id=5 AND session='BE677681961E7A5201FE57D577722A5B' -- 14:19:01.933 SQL [19327]: Found rows: 0 -- 14:19:01.933 SQL [19327]: Found rows: 0 -- 14:19:01.933 FLOG_MAX [19327]: insert_db_record() -- 14:19:01.933 SQL [19327]: pgsql_exec() -- 14:19:01.933 SQL [19327]: About to run query: -- 14:19:01.933 SQL [19327]: INSERT INTO members_session (member_id,session) VALUES ('5','BE677681961E7A5201FE57D577722A5B') -- 14:19:01.935 SQL [19327]: PQcmdTuples: 1 -- 14:19:01.935 SQL [19327]: Affected rows: 1 -- 14:19:01.935 FLOG_MAX [19327]: SELECT currval('members_session_id_seq') -- 14:19:01.935 SQL [19327]: pgsql_query() -- 14:19:01.935 SQL [19327]: About to run query: -- 14:19:01.935 SQL [19327]: SELECT currval('members_session_id_seq') -- 14:19:01.935 SQL [19327]: Found rows: 1 -- 14:19:01.936 INFO [19327]: /LoginCoreGradeAccount() -- 14:19:01.936 INFO [19327]: RET: added=2020-02-05 06:47:23.982154 -- 14:19:01.936 INFO [19327]: RET: email=ameye+11@chiefsoft.com -- 14:19:01.936 INFO [19327]: RET: firstname=Olu -- 14:19:01.936 INFO [19327]: RET: id=5 -- 14:19:01.936 INFO [19327]: RET: last_login= -- 14:19:01.936 INFO [19327]: RET: lastname=Amey -- 14:19:01.936 INFO [19327]: RET: loc=192.168.1.13 -- 14:19:01.936 INFO [19327]: RET: member_id=5 -- 14:19:01.936 INFO [19327]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 14:19:01.936 INFO [19327]: RET: phone= -- 14:19:01.936 INFO [19327]: RET: pid= -- 14:19:01.936 INFO [19327]: RET: result=YES I GET TO BACK END -- 14:19:01.936 INFO [19327]: RET: sessionid=BE677681961E7A5201FE57D577722A5B -- 14:19:01.936 INFO [19327]: RET: status=1 -- 14:19:01.936 INFO [19327]: RET: stauts=OK -- 14:19:01.936 INFO [19327]: RET: username=ameye+11@chiefsoft.com -- 14:19:01.936 INFO [19327]: RET: verified= -- 14:19:01.937 INFO [19327]: COREGRADE is stopping... -- 14:19:01.937 DEBUG [19327]: Closing database connection -- 14:19:01.937 SQL [19327]: pgsql_close() -- 14:57:56.626 INFO [22202]: COREGRADE is starting... -- 14:57:56.626 INFO [22202]: Version from config: 1.0 -- 14:57:56.626 DEBUG [22202]: Connecting to database... -- 14:57:56.626 DEBUG [22202]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:57:56.626 SQL [22202]: pgsql_db_connect() -- 14:57:56.631 DEBUG [22202]: Database connection successful -- 14:57:56.631 INFO [22202]: _SERVER found -- 14:57:56.631 INFO [22202]: REMOTE_ADDR = 192.168.1.13 -- 14:57:56.631 INFO [22202]: SERVER_NAME = oameye.works.coregrade.com -- 14:57:56.631 INFO [22202]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=omfd1v67k4h6j3iouvps5qs18cvonr2t -- 14:57:56.631 INFO [22202]: QUERY_STRING = -- 14:57:56.631 INFO [22202]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:57:56.631 INFO [22202]: SystemStatus()09-09-********~************ -- 14:57:56.631 INFO [22202]: long coregrade_api_main(CVars in, CVars &out) -- 14:57:56.631 INFO [22202]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 14:57:56.631 INFO [22202]: account calls -- 14:57:56.631 INFO [22202]: account_calls() -- 14:57:56.631 INFO [22202]: LoginCoreGradeAccount() -- 14:57:56.631 FLOG_MAX [22202]: REQ_STRING(username) -- 14:57:56.632 FLOG_MAX [22202]: REQ_STRING(password) -- 14:57:56.632 FLOG_MAX [22202]: REQ_STRING(sessionid) -- 14:57:56.632 FLOG_MAX [22202]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:57:56.632 SQL [22202]: pgsql_query() -- 14:57:56.632 SQL [22202]: About to run query: -- 14:57:56.632 SQL [22202]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 14:57:56.635 SQL [22202]: Found rows: 1 -- 14:57:56.635 FLOG_MAX [22202]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 14:57:56.635 INFO [22202]: long SessionCheck(long uid, const char *sessionid, int create ) -- 14:57:56.635 SQL [22202]: pgsql_exec() -- 14:57:56.635 SQL [22202]: About to run query: -- 14:57:56.635 SQL [22202]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '15 minutes') -- 14:57:56.637 SQL [22202]: PQcmdTuples: 1 -- 14:57:56.637 SQL [22202]: Affected rows: 1 -- 14:57:56.637 SQL [22202]: pgsql_query() -- 14:57:56.637 SQL [22202]: About to run query: -- 14:57:56.637 SQL [22202]: SELECT * FROM members_session WHERE member_id=5 AND session<>'BBB7EE725382BF8FDB48BA3C6AFA954F' -- 14:57:56.637 SQL [22202]: Found rows: 0 -- 14:57:56.637 SQL [22202]: Found rows: 0 -- 14:57:56.637 FLOG_MAX [22202]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:57:56.637 SQL [22202]: pgsql_query() -- 14:57:56.637 SQL [22202]: About to run query: -- 14:57:56.637 SQL [22202]: SELECT * FROM members_session WHERE member_id=5 AND session='BBB7EE725382BF8FDB48BA3C6AFA954F' -- 14:57:56.638 SQL [22202]: Found rows: 0 -- 14:57:56.638 SQL [22202]: Found rows: 0 -- 14:57:56.638 FLOG_MAX [22202]: insert_db_record() -- 14:57:56.638 SQL [22202]: pgsql_exec() -- 14:57:56.638 SQL [22202]: About to run query: -- 14:57:56.638 SQL [22202]: INSERT INTO members_session (member_id,session) VALUES ('5','BBB7EE725382BF8FDB48BA3C6AFA954F') -- 14:57:56.639 SQL [22202]: PQcmdTuples: 1 -- 14:57:56.639 SQL [22202]: Affected rows: 1 -- 14:57:56.639 FLOG_MAX [22202]: SELECT currval('members_session_id_seq') -- 14:57:56.639 SQL [22202]: pgsql_query() -- 14:57:56.639 SQL [22202]: About to run query: -- 14:57:56.639 SQL [22202]: SELECT currval('members_session_id_seq') -- 14:57:56.640 SQL [22202]: Found rows: 1 -- 14:57:56.640 INFO [22202]: CreateDefaultPage() -- 14:57:56.640 FLOG_MAX [22202]: REQ_STRING(verify_link) -- 14:57:56.640 FLOG_MAX [22202]: Error in parameter 'verify_link', len= 2 <= 1 <= 120 -- 14:57:56.640 FLOG_MAX [22202]: Bad parameter exception: 'verify_link' -- 14:57:56.640 INFO [22202]: RET: added=2020-02-05 06:47:23.982154 -- 14:57:56.640 INFO [22202]: RET: email=ameye+11@chiefsoft.com -- 14:57:56.640 INFO [22202]: RET: firstname=Olu -- 14:57:56.640 INFO [22202]: RET: id=5 -- 14:57:56.640 INFO [22202]: RET: last_login= -- 14:57:56.640 INFO [22202]: RET: lastname=Amey -- 14:57:56.640 INFO [22202]: RET: loc=192.168.1.13 -- 14:57:56.640 INFO [22202]: RET: member_id=5 -- 14:57:56.640 INFO [22202]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 14:57:56.640 INFO [22202]: RET: phone= -- 14:57:56.640 INFO [22202]: RET: pid= -- 14:57:56.640 INFO [22202]: RET: result=YES I GET TO BACK END -- 14:57:56.640 INFO [22202]: RET: sessionid=BBB7EE725382BF8FDB48BA3C6AFA954F -- 14:57:56.640 INFO [22202]: RET: status=Incorrect input parameter -- 14:57:56.640 INFO [22202]: RET: stauts=OK -- 14:57:56.640 INFO [22202]: RET: username=ameye+11@chiefsoft.com -- 14:57:56.640 INFO [22202]: RET: verified= -- 14:57:56.642 INFO [22202]: COREGRADE is stopping... -- 14:57:56.642 DEBUG [22202]: Closing database connection -- 14:57:56.642 SQL [22202]: pgsql_close() -- 15:00:43.874 INFO [22454]: COREGRADE is starting... -- 15:00:43.874 INFO [22454]: Version from config: 1.0 -- 15:00:43.874 DEBUG [22454]: Connecting to database... -- 15:00:43.874 DEBUG [22454]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:00:43.874 SQL [22454]: pgsql_db_connect() -- 15:00:43.879 DEBUG [22454]: Database connection successful -- 15:00:43.879 INFO [22454]: _SERVER found -- 15:00:43.879 INFO [22454]: REMOTE_ADDR = 192.168.1.13 -- 15:00:43.879 INFO [22454]: SERVER_NAME = oameye.works.coregrade.com -- 15:00:43.879 INFO [22454]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=omfd1v67k4h6j3iouvps5qs18cvonr2t -- 15:00:43.879 INFO [22454]: QUERY_STRING = -- 15:00:43.879 INFO [22454]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:00:43.879 INFO [22454]: SystemStatus()09-09-********~************ -- 15:00:43.879 INFO [22454]: long coregrade_api_main(CVars in, CVars &out) -- 15:00:43.879 INFO [22454]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 15:00:43.879 INFO [22454]: account calls -- 15:00:43.879 INFO [22454]: account_calls() -- 15:00:43.879 INFO [22454]: LoginCoreGradeAccount() -- 15:00:43.879 FLOG_MAX [22454]: REQ_STRING(username) -- 15:00:43.879 FLOG_MAX [22454]: REQ_STRING(password) -- 15:00:43.879 FLOG_MAX [22454]: REQ_STRING(sessionid) -- 15:00:43.879 FLOG_MAX [22454]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:00:43.879 SQL [22454]: pgsql_query() -- 15:00:43.879 SQL [22454]: About to run query: -- 15:00:43.879 SQL [22454]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 15:00:43.882 SQL [22454]: Found rows: 1 -- 15:00:43.882 FLOG_MAX [22454]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 15:00:43.882 INFO [22454]: long SessionCheck(long uid, const char *sessionid, int create ) -- 15:00:43.882 SQL [22454]: pgsql_exec() -- 15:00:43.882 SQL [22454]: About to run query: -- 15:00:43.882 SQL [22454]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '15 minutes') -- 15:00:43.883 SQL [22454]: PQcmdTuples: 0 -- 15:00:43.883 SQL [22454]: Affected rows: 0 -- 15:00:43.883 SQL [22454]: pgsql_query() -- 15:00:43.883 SQL [22454]: About to run query: -- 15:00:43.883 SQL [22454]: SELECT * FROM members_session WHERE member_id=5 AND session<>'C6BD2639CA12A16FE2174A0EEE79427B' -- 15:00:43.884 SQL [22454]: Found rows: 1 -- 15:00:43.884 INFO [22454]: /LoginCoreGradeAccount() -- 15:00:43.884 INFO [22454]: RET: added=2020-02-05 06:47:23.982154 -- 15:00:43.884 INFO [22454]: RET: email=ameye+11@chiefsoft.com -- 15:00:43.884 INFO [22454]: RET: firstname=Olu -- 15:00:43.884 INFO [22454]: RET: id=5 -- 15:00:43.884 INFO [22454]: RET: last_login= -- 15:00:43.884 INFO [22454]: RET: lastname=Amey -- 15:00:43.884 INFO [22454]: RET: loc=192.168.1.13 -- 15:00:43.884 INFO [22454]: RET: member_id=5 -- 15:00:43.884 INFO [22454]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 15:00:43.884 INFO [22454]: RET: phone= -- 15:00:43.884 INFO [22454]: RET: pid= -- 15:00:43.884 INFO [22454]: RET: result=YES I GET TO BACK END -- 15:00:43.884 INFO [22454]: RET: sessionid=C6BD2639CA12A16FE2174A0EEE79427B -- 15:00:43.884 INFO [22454]: RET: status=Session check failed -- 15:00:43.884 INFO [22454]: RET: username=ameye+11@chiefsoft.com -- 15:00:43.884 INFO [22454]: RET: verified= -- 15:00:43.886 INFO [22454]: COREGRADE is stopping... -- 15:00:43.886 DEBUG [22454]: Closing database connection -- 15:00:43.886 SQL [22454]: pgsql_close() -- 15:02:44.973 INFO [22456]: COREGRADE is starting... -- 15:02:44.973 INFO [22456]: Version from config: 1.0 -- 15:02:44.973 DEBUG [22456]: Connecting to database... -- 15:02:44.973 DEBUG [22456]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:02:44.973 SQL [22456]: pgsql_db_connect() -- 15:02:44.977 DEBUG [22456]: Database connection successful -- 15:02:44.978 INFO [22456]: _SERVER found -- 15:02:44.978 INFO [22456]: REMOTE_ADDR = 192.168.1.13 -- 15:02:44.978 INFO [22456]: SERVER_NAME = oameye.works.coregrade.com -- 15:02:44.978 INFO [22456]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=omfd1v67k4h6j3iouvps5qs18cvonr2t -- 15:02:44.978 INFO [22456]: QUERY_STRING = -- 15:02:44.978 INFO [22456]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:02:44.978 INFO [22456]: SystemStatus()09-09-********~************ -- 15:02:44.978 INFO [22456]: long coregrade_api_main(CVars in, CVars &out) -- 15:02:44.978 INFO [22456]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 15:02:44.978 INFO [22456]: account calls -- 15:02:44.978 INFO [22456]: account_calls() -- 15:02:44.978 INFO [22456]: LoginCoreGradeAccount() -- 15:02:44.978 FLOG_MAX [22456]: REQ_STRING(username) -- 15:02:44.978 FLOG_MAX [22456]: REQ_STRING(password) -- 15:02:44.978 FLOG_MAX [22456]: REQ_STRING(sessionid) -- 15:02:44.978 FLOG_MAX [22456]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:02:44.978 SQL [22456]: pgsql_query() -- 15:02:44.978 SQL [22456]: About to run query: -- 15:02:44.978 SQL [22456]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 15:02:44.981 SQL [22456]: Found rows: 1 -- 15:02:44.981 FLOG_MAX [22456]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 15:02:44.981 INFO [22456]: long SessionCheck(long uid, const char *sessionid, int create ) -- 15:02:44.981 SQL [22456]: pgsql_exec() -- 15:02:44.981 SQL [22456]: About to run query: -- 15:02:44.981 SQL [22456]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '15 minutes') -- 15:02:44.982 SQL [22456]: PQcmdTuples: 0 -- 15:02:44.982 SQL [22456]: Affected rows: 0 -- 15:02:44.982 SQL [22456]: pgsql_query() -- 15:02:44.982 SQL [22456]: About to run query: -- 15:02:44.982 SQL [22456]: SELECT * FROM members_session WHERE member_id=5 AND session<>'DD976DD01F2E7BABE15524FC117AD759' -- 15:02:44.983 SQL [22456]: Found rows: 1 -- 15:02:44.983 INFO [22456]: /LoginCoreGradeAccount() -- 15:02:44.983 INFO [22456]: RET: added=2020-02-05 06:47:23.982154 -- 15:02:44.983 INFO [22456]: RET: email=ameye+11@chiefsoft.com -- 15:02:44.983 INFO [22456]: RET: firstname=Olu -- 15:02:44.983 INFO [22456]: RET: id=5 -- 15:02:44.983 INFO [22456]: RET: last_login= -- 15:02:44.983 INFO [22456]: RET: lastname=Amey -- 15:02:44.983 INFO [22456]: RET: loc=192.168.1.13 -- 15:02:44.983 INFO [22456]: RET: member_id=5 -- 15:02:44.983 INFO [22456]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 15:02:44.983 INFO [22456]: RET: phone= -- 15:02:44.983 INFO [22456]: RET: pid= -- 15:02:44.983 INFO [22456]: RET: result=YES I GET TO BACK END -- 15:02:44.983 INFO [22456]: RET: sessionid=DD976DD01F2E7BABE15524FC117AD759 -- 15:02:44.983 INFO [22456]: RET: status=Session check failed -- 15:02:44.983 INFO [22456]: RET: username=ameye+11@chiefsoft.com -- 15:02:44.983 INFO [22456]: RET: verified= -- 15:02:44.984 INFO [22456]: COREGRADE is stopping... -- 15:02:44.985 DEBUG [22456]: Closing database connection -- 15:02:44.985 SQL [22456]: pgsql_close() -- 15:02:58.560 INFO [22457]: COREGRADE is starting... -- 15:02:58.560 INFO [22457]: Version from config: 1.0 -- 15:02:58.560 DEBUG [22457]: Connecting to database... -- 15:02:58.560 DEBUG [22457]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:02:58.560 SQL [22457]: pgsql_db_connect() -- 15:02:58.565 DEBUG [22457]: Database connection successful -- 15:02:58.565 INFO [22457]: _SERVER found -- 15:02:58.565 INFO [22457]: REMOTE_ADDR = 192.168.1.13 -- 15:02:58.565 INFO [22457]: SERVER_NAME = oameye.works.coregrade.com -- 15:02:58.565 INFO [22457]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=mtvb2eq4u3r6r822ritke1a40aqcchcv -- 15:02:58.565 INFO [22457]: QUERY_STRING = -- 15:02:58.565 INFO [22457]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:02:58.565 INFO [22457]: SystemStatus()09-09-********~************ -- 15:02:58.565 INFO [22457]: long coregrade_api_main(CVars in, CVars &out) -- 15:02:58.565 INFO [22457]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 15:02:58.565 INFO [22457]: account calls -- 15:02:58.565 INFO [22457]: account_calls() -- 15:02:58.565 INFO [22457]: LoginCoreGradeAccount() -- 15:02:58.565 FLOG_MAX [22457]: REQ_STRING(username) -- 15:02:58.565 FLOG_MAX [22457]: REQ_STRING(password) -- 15:02:58.565 FLOG_MAX [22457]: REQ_STRING(sessionid) -- 15:02:58.565 FLOG_MAX [22457]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:02:58.565 SQL [22457]: pgsql_query() -- 15:02:58.565 SQL [22457]: About to run query: -- 15:02:58.565 SQL [22457]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 15:02:58.568 SQL [22457]: Found rows: 1 -- 15:02:58.568 FLOG_MAX [22457]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 15:02:58.568 INFO [22457]: long SessionCheck(long uid, const char *sessionid, int create ) -- 15:02:58.568 SQL [22457]: pgsql_exec() -- 15:02:58.568 SQL [22457]: About to run query: -- 15:02:58.568 SQL [22457]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '15 minutes') -- 15:02:58.569 SQL [22457]: PQcmdTuples: 0 -- 15:02:58.569 SQL [22457]: Affected rows: 0 -- 15:02:58.569 SQL [22457]: pgsql_query() -- 15:02:58.569 SQL [22457]: About to run query: -- 15:02:58.569 SQL [22457]: SELECT * FROM members_session WHERE member_id=5 AND session<>'AA93A255FF85CFE790D71487B4B186DC' -- 15:02:58.569 SQL [22457]: Found rows: 1 -- 15:02:58.569 INFO [22457]: /LoginCoreGradeAccount() -- 15:02:58.569 INFO [22457]: RET: added=2020-02-05 06:47:23.982154 -- 15:02:58.569 INFO [22457]: RET: email=ameye+11@chiefsoft.com -- 15:02:58.569 INFO [22457]: RET: firstname=Olu -- 15:02:58.569 INFO [22457]: RET: id=5 -- 15:02:58.569 INFO [22457]: RET: last_login= -- 15:02:58.569 INFO [22457]: RET: lastname=Amey -- 15:02:58.569 INFO [22457]: RET: loc=192.168.1.13 -- 15:02:58.569 INFO [22457]: RET: member_id=5 -- 15:02:58.569 INFO [22457]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 15:02:58.569 INFO [22457]: RET: phone= -- 15:02:58.569 INFO [22457]: RET: pid= -- 15:02:58.569 INFO [22457]: RET: result=YES I GET TO BACK END -- 15:02:58.569 INFO [22457]: RET: sessionid=AA93A255FF85CFE790D71487B4B186DC -- 15:02:58.569 INFO [22457]: RET: status=Session check failed -- 15:02:58.569 INFO [22457]: RET: username=ameye+11@chiefsoft.com -- 15:02:58.569 INFO [22457]: RET: verified= -- 15:02:58.571 INFO [22457]: COREGRADE is stopping... -- 15:02:58.571 DEBUG [22457]: Closing database connection -- 15:02:58.571 SQL [22457]: pgsql_close() -- 15:29:05.114 INFO [22753]: COREGRADE is starting... -- 15:29:05.115 INFO [22753]: Version from config: 1.0 -- 15:29:05.115 DEBUG [22753]: Connecting to database... -- 15:29:05.115 DEBUG [22753]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:29:05.115 SQL [22753]: pgsql_db_connect() -- 15:29:05.119 DEBUG [22753]: Database connection successful -- 15:29:05.119 INFO [22753]: _SERVER found -- 15:29:05.119 INFO [22753]: REMOTE_ADDR = 192.168.1.13 -- 15:29:05.119 INFO [22753]: SERVER_NAME = oameye.works.coregrade.com -- 15:29:05.119 INFO [22753]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nq6juq4cs550jk77no93r9bat57lqclr -- 15:29:05.119 INFO [22753]: QUERY_STRING = -- 15:29:05.119 INFO [22753]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:29:05.119 INFO [22753]: SystemStatus()09-09-********~************ -- 15:29:05.119 INFO [22753]: long coregrade_api_main(CVars in, CVars &out) -- 15:29:05.119 INFO [22753]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 15:29:05.119 INFO [22753]: account calls -- 15:29:05.119 INFO [22753]: account_calls() -- 15:29:05.119 FLOG_MAX [22753]: REQ_STRING(username) -- 15:29:05.119 FLOG_MAX [22753]: REQ_STRING(firstname) -- 15:29:05.119 FLOG_MAX [22753]: REQ_STRING(lastname) -- 15:29:05.120 FLOG_MAX [22753]: REQ_STRING(email) -- 15:29:05.120 SQL [22753]: pgsql_query() -- 15:29:05.120 SQL [22753]: About to run query: -- 15:29:05.120 SQL [22753]: SELECT * FROM members WHERE LOWER(username) = LOWER('ameye+77@chiefsoft.com') -- 15:29:05.122 SQL [22753]: Found rows: 1 -- 15:29:05.122 INFO [22753]: RET: action=11010 -- 15:29:05.122 INFO [22753]: RET: email=ameye+77@chiefsoft.com -- 15:29:05.122 INFO [22753]: RET: firstname=Olu -- 15:29:05.122 INFO [22753]: RET: lastname=Amey -- 15:29:05.122 INFO [22753]: RET: password=may12002 -- 15:29:05.122 INFO [22753]: RET: pending_id=0 -- 15:29:05.122 INFO [22753]: RET: pid=100 -- 15:29:05.122 INFO [22753]: RET: status_message=Unable to create account, try another username or reset password -- 15:29:05.122 INFO [22753]: RET: username=ameye+77@chiefsoft.com -- 15:29:05.123 INFO [22753]: COREGRADE is stopping... -- 15:29:05.124 DEBUG [22753]: Closing database connection -- 15:29:05.124 SQL [22753]: pgsql_close() -- 15:29:32.455 INFO [22751]: COREGRADE is starting... -- 15:29:32.455 INFO [22751]: Version from config: 1.0 -- 15:29:32.455 DEBUG [22751]: Connecting to database... -- 15:29:32.455 DEBUG [22751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:29:32.455 SQL [22751]: pgsql_db_connect() -- 15:29:32.460 DEBUG [22751]: Database connection successful -- 15:29:32.460 INFO [22751]: _SERVER found -- 15:29:32.460 INFO [22751]: REMOTE_ADDR = 192.168.1.13 -- 15:29:32.460 INFO [22751]: SERVER_NAME = oameye.works.coregrade.com -- 15:29:32.460 INFO [22751]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nq6juq4cs550jk77no93r9bat57lqclr -- 15:29:32.460 INFO [22751]: QUERY_STRING = -- 15:29:32.460 INFO [22751]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:29:32.460 INFO [22751]: SystemStatus()09-09-********~************ -- 15:29:32.460 INFO [22751]: long coregrade_api_main(CVars in, CVars &out) -- 15:29:32.460 INFO [22751]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 15:29:32.460 INFO [22751]: account calls -- 15:29:32.460 INFO [22751]: account_calls() -- 15:29:32.460 FLOG_MAX [22751]: REQ_STRING(username) -- 15:29:32.460 FLOG_MAX [22751]: REQ_STRING(firstname) -- 15:29:32.460 FLOG_MAX [22751]: REQ_STRING(lastname) -- 15:29:32.460 FLOG_MAX [22751]: REQ_STRING(email) -- 15:29:32.460 SQL [22751]: pgsql_query() -- 15:29:32.460 SQL [22751]: About to run query: -- 15:29:32.460 SQL [22751]: SELECT * FROM members WHERE LOWER(username) = LOWER('ameye+88@chiefsoft.com') -- 15:29:32.462 SQL [22751]: Found rows: 0 -- 15:29:32.462 SQL [22751]: Found rows: 0 -- 15:29:32.462 FLOG_MAX [22751]: insert_db_record() -- 15:29:32.462 SQL [22751]: pgsql_exec() -- 15:29:32.462 SQL [22751]: About to run query: -- 15:29:32.462 SQL [22751]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ameye+88@chiefsoft.com','Olu','Amey','192.168.1.13','','ameye+88@chiefsoft.com','RS-376075776-1496507392-1294985216') -- 15:29:32.464 SQL [22751]: PQcmdTuples: 1 -- 15:29:32.464 SQL [22751]: Affected rows: 1 -- 15:29:32.464 FLOG_MAX [22751]: SELECT currval('members_pending_id_seq') -- 15:29:32.464 SQL [22751]: pgsql_query() -- 15:29:32.464 SQL [22751]: About to run query: -- 15:29:32.464 SQL [22751]: SELECT currval('members_pending_id_seq') -- 15:29:32.464 SQL [22751]: Found rows: 1 -- 15:29:32.464 SQL [22751]: pgsql_query() -- 15:29:32.465 SQL [22751]: About to run query: -- 15:29:32.465 SQL [22751]: UPDATE members_pending SET password = md5('may12002') WHERE id = 9 -- 15:29:32.466 SQL [22751]: Found rows: 0 -- 15:29:32.466 SQL [22751]: Found rows: 0 -- 15:29:32.466 FLOG_MAX [22751]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:29:32.466 SQL [22751]: pgsql_query() -- 15:29:32.466 SQL [22751]: About to run query: -- 15:29:32.466 SQL [22751]: SELECT * FROM members_pending WHERE id = 9 -- 15:29:32.466 SQL [22751]: Found rows: 1 -- 15:29:32.466 FLOG_MAX [22751]: load_db_record(SELECT * FROM members_pending WHERE id = 9 ) num_cols=13 -- 15:29:32.466 FLOG_MAX [22751]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 15:29:32.466 FLOG_MAX [22751]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1692 bytes -- 15:29:32.466 FLOG_MAX [22751]: Returning from FormFile() -- 15:29:32.466 FLOG_MAX [22751]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 15:29:32.466 FLOG_MAX [22751]: ESMTP( 10.0.0.23, support@coregrade.com, ameye+88@chiefsoft.com ) -- 15:29:32.466 FLOG_MAX [22751]: Prepare body -- 15:29:32.466 FLOG_MAX [22751]: Locate & extract subject -- 15:29:32.466 FLOG_MAX [22751]: Found subject: CoreGrade - Pending Signup - Verify ameye+88@chiefsoft.com -- 15:29:32.466 FLOG_MAX [22751]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t ameye+88@chiefsoft.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002!x -sub 'CoreGrade - Pending Signup - Verify ameye+88@chiefsoft.com' -M ' - - - -
-
- - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-376075776-1496507392-1294985216 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - -' -- 15:29:32.552 FLOG_MAX [22751]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiF4 -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Pending Signup - Verify ameye+88@chiefsoft.com -From: CoreGrade Support -Date: Wed, 05 Feb 2020 15:29:32 -0500 -To: ameye+88@chiefsoft.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="KWXsOUEvMv7OLZLD" -Mime-version: 1.0 - - ---KWXsOUEvMv7OLZLD -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
- - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-376075776-1496507392-1294985216 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - - - - ---KWXsOUEvMv7OLZLD-- - -[C] . -[S] 250 2.0.0 Ok: queued as 8517E2114120 -[C] QUIT -[S] 221 2.0.0 Bye -ZU -- 15:29:32.552 FLOG_MAX [22751]: - -END OF PIPE OUTPUT - - -- 15:29:32.552 FLOG_MAX [22751]: /ESMTP() -- 15:29:32.552 INFO [22751]: RET: action=11010 -- 15:29:32.552 INFO [22751]: RET: email=ameye+88@chiefsoft.com -- 15:29:32.552 INFO [22751]: RET: firstname=Olu -- 15:29:32.552 INFO [22751]: RET: lastname=Amey -- 15:29:32.552 INFO [22751]: RET: password=may12002 -- 15:29:32.552 INFO [22751]: RET: pending_id=9 -- 15:29:32.552 INFO [22751]: RET: pid=100 -- 15:29:32.552 INFO [22751]: RET: status_message=Pending -- 15:29:32.552 INFO [22751]: RET: username=ameye+88@chiefsoft.com -- 15:29:32.555 INFO [22751]: COREGRADE is stopping... -- 15:29:32.555 DEBUG [22751]: Closing database connection -- 15:29:32.555 SQL [22751]: pgsql_close() -- 15:29:44.663 INFO [22752]: COREGRADE is starting... -- 15:29:44.663 INFO [22752]: Version from config: 1.0 -- 15:29:44.663 DEBUG [22752]: Connecting to database... -- 15:29:44.663 DEBUG [22752]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:29:44.663 SQL [22752]: pgsql_db_connect() -- 15:29:44.667 DEBUG [22752]: Database connection successful -- 15:29:44.667 INFO [22752]: _SERVER found -- 15:29:44.667 INFO [22752]: REMOTE_ADDR = 192.168.1.13 -- 15:29:44.667 INFO [22752]: SERVER_NAME = oameye.works.coregrade.com -- 15:29:44.667 INFO [22752]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nq6juq4cs550jk77no93r9bat57lqclr -- 15:29:44.667 INFO [22752]: QUERY_STRING = -- 15:29:44.667 INFO [22752]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:29:44.668 INFO [22752]: SystemStatus()09-09-********~************ -- 15:29:44.668 INFO [22752]: long coregrade_api_main(CVars in, CVars &out) -- 15:29:44.668 INFO [22752]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 15:29:44.668 INFO [22752]: account calls -- 15:29:44.668 INFO [22752]: account_calls() -- 15:29:44.668 INFO [22752]: LoginCoreGradeAccount() -- 15:29:44.668 FLOG_MAX [22752]: REQ_STRING(username) -- 15:29:44.668 FLOG_MAX [22752]: REQ_STRING(password) -- 15:29:44.668 FLOG_MAX [22752]: REQ_STRING(sessionid) -- 15:29:44.668 FLOG_MAX [22752]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:29:44.668 SQL [22752]: pgsql_query() -- 15:29:44.668 SQL [22752]: About to run query: -- 15:29:44.668 SQL [22752]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 15:29:44.671 SQL [22752]: Found rows: 1 -- 15:29:44.671 FLOG_MAX [22752]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 15:29:44.671 INFO [22752]: long SessionCheck(long uid, const char *sessionid, int create ) -- 15:29:44.671 SQL [22752]: pgsql_exec() -- 15:29:44.671 SQL [22752]: About to run query: -- 15:29:44.671 SQL [22752]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 15:29:44.672 SQL [22752]: PQcmdTuples: 0 -- 15:29:44.672 SQL [22752]: Affected rows: 0 -- 15:29:44.672 SQL [22752]: pgsql_exec() -- 15:29:44.672 SQL [22752]: About to run query: -- 15:29:44.672 SQL [22752]: DELETE FROM members_session WHERE member_id=5 -- 15:29:44.673 SQL [22752]: PQcmdTuples: 1 -- 15:29:44.673 SQL [22752]: Affected rows: 1 -- 15:29:44.673 SQL [22752]: pgsql_query() -- 15:29:44.673 SQL [22752]: About to run query: -- 15:29:44.673 SQL [22752]: SELECT * FROM members_session WHERE member_id=5 AND session<>'BF6B5811888A7FFC139B492B220971BE' -- 15:29:44.673 SQL [22752]: Found rows: 0 -- 15:29:44.674 SQL [22752]: Found rows: 0 -- 15:29:44.674 FLOG_MAX [22752]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:29:44.674 SQL [22752]: pgsql_query() -- 15:29:44.674 SQL [22752]: About to run query: -- 15:29:44.674 SQL [22752]: SELECT * FROM members_session WHERE member_id=5 AND session='BF6B5811888A7FFC139B492B220971BE' -- 15:29:44.674 SQL [22752]: Found rows: 0 -- 15:29:44.674 SQL [22752]: Found rows: 0 -- 15:29:44.674 FLOG_MAX [22752]: insert_db_record() -- 15:29:44.674 SQL [22752]: pgsql_exec() -- 15:29:44.674 SQL [22752]: About to run query: -- 15:29:44.674 SQL [22752]: INSERT INTO members_session (member_id,session) VALUES ('5','BF6B5811888A7FFC139B492B220971BE') -- 15:29:44.675 SQL [22752]: PQcmdTuples: 1 -- 15:29:44.675 SQL [22752]: Affected rows: 1 -- 15:29:44.675 FLOG_MAX [22752]: SELECT currval('members_session_id_seq') -- 15:29:44.675 SQL [22752]: pgsql_query() -- 15:29:44.675 SQL [22752]: About to run query: -- 15:29:44.675 SQL [22752]: SELECT currval('members_session_id_seq') -- 15:29:44.676 SQL [22752]: Found rows: 1 -- 15:29:44.676 INFO [22752]: CreateDefaultPage() -- 15:29:44.676 FLOG_MAX [22752]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:29:44.676 SQL [22752]: pgsql_query() -- 15:29:44.676 SQL [22752]: About to run query: -- 15:29:44.676 SQL [22752]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 15:29:44.676 SQL [22752]: Found rows: 1 -- 15:29:44.676 FLOG_MAX [22752]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 15:29:44.676 FLOG_MAX [22752]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:29:44.676 SQL [22752]: pgsql_query() -- 15:29:44.676 SQL [22752]: About to run query: -- 15:29:44.676 SQL [22752]: SELECT *,id AS pending_id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 15:29:44.677 SQL [22752]: Found rows: 0 -- 15:29:44.677 SQL [22752]: Found rows: 0 -- 15:29:44.677 INFO [22752]: /CreateDefaultPage() -- 15:29:44.677 INFO [22752]: /LoginCoreGradeAccount() -- 15:29:44.677 INFO [22752]: RET: added=2020-02-05 06:47:23.982154 -- 15:29:44.677 INFO [22752]: RET: email=ameye+11@chiefsoft.com -- 15:29:44.677 INFO [22752]: RET: firstname=Olu -- 15:29:44.677 INFO [22752]: RET: id=5 -- 15:29:44.677 INFO [22752]: RET: last_login= -- 15:29:44.677 INFO [22752]: RET: lastname=Amey -- 15:29:44.677 INFO [22752]: RET: loc=192.168.1.13 -- 15:29:44.677 INFO [22752]: RET: member_id=5 -- 15:29:44.677 INFO [22752]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 15:29:44.677 INFO [22752]: RET: phone= -- 15:29:44.677 INFO [22752]: RET: pid= -- 15:29:44.677 INFO [22752]: RET: result=YES I GET TO BACK END -- 15:29:44.677 INFO [22752]: RET: sessionid=BF6B5811888A7FFC139B492B220971BE -- 15:29:44.677 INFO [22752]: RET: status=1 -- 15:29:44.677 INFO [22752]: RET: stauts=OK -- 15:29:44.677 INFO [22752]: RET: username=ameye+11@chiefsoft.com -- 15:29:44.677 INFO [22752]: RET: verified= -- 15:29:44.678 INFO [22752]: COREGRADE is stopping... -- 15:29:44.678 DEBUG [22752]: Closing database connection -- 15:29:44.679 SQL [22752]: pgsql_close() -- 15:31:04.336 INFO [22942]: COREGRADE is starting... -- 15:31:04.336 INFO [22942]: Version from config: 1.0 -- 15:31:04.336 DEBUG [22942]: Connecting to database... -- 15:31:04.336 DEBUG [22942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:04.336 SQL [22942]: pgsql_db_connect() -- 15:31:04.341 DEBUG [22942]: Database connection successful -- 15:31:04.341 INFO [22942]: _SERVER found -- 15:31:04.341 INFO [22942]: REMOTE_ADDR = 192.168.1.13 -- 15:31:04.341 INFO [22942]: SERVER_NAME = oameye.works.coregrade.com -- 15:31:04.341 INFO [22942]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nq6juq4cs550jk77no93r9bat57lqclr -- 15:31:04.341 INFO [22942]: QUERY_STRING = -- 15:31:04.341 INFO [22942]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:31:04.341 INFO [22942]: SystemStatus()09-09-********~************ -- 15:31:04.341 INFO [22942]: long coregrade_api_main(CVars in, CVars &out) -- 15:31:04.341 INFO [22942]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 15:31:04.341 INFO [22942]: account calls -- 15:31:04.341 INFO [22942]: account_calls() -- 15:31:04.341 INFO [22942]: LoginCoreGradeAccount() -- 15:31:04.341 FLOG_MAX [22942]: REQ_STRING(username) -- 15:31:04.341 FLOG_MAX [22942]: REQ_STRING(password) -- 15:31:04.341 FLOG_MAX [22942]: REQ_STRING(sessionid) -- 15:31:04.341 FLOG_MAX [22942]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:31:04.341 SQL [22942]: pgsql_query() -- 15:31:04.341 SQL [22942]: About to run query: -- 15:31:04.341 SQL [22942]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 15:31:04.344 SQL [22942]: Found rows: 1 -- 15:31:04.344 FLOG_MAX [22942]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 15:31:04.344 INFO [22942]: long SessionCheck(long uid, const char *sessionid, int create ) -- 15:31:04.344 SQL [22942]: pgsql_exec() -- 15:31:04.344 SQL [22942]: About to run query: -- 15:31:04.344 SQL [22942]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 15:31:04.345 SQL [22942]: PQcmdTuples: 0 -- 15:31:04.345 SQL [22942]: Affected rows: 0 -- 15:31:04.345 SQL [22942]: pgsql_exec() -- 15:31:04.345 SQL [22942]: About to run query: -- 15:31:04.345 SQL [22942]: DELETE FROM members_session WHERE member_id=5 -- 15:31:04.346 SQL [22942]: PQcmdTuples: 1 -- 15:31:04.346 SQL [22942]: Affected rows: 1 -- 15:31:04.346 SQL [22942]: pgsql_query() -- 15:31:04.346 SQL [22942]: About to run query: -- 15:31:04.346 SQL [22942]: SELECT * FROM members_session WHERE member_id=5 AND session<>'DEAA75EC87C3762D270A66B1003266A5' -- 15:31:04.347 SQL [22942]: Found rows: 0 -- 15:31:04.347 SQL [22942]: Found rows: 0 -- 15:31:04.347 FLOG_MAX [22942]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:31:04.347 SQL [22942]: pgsql_query() -- 15:31:04.347 SQL [22942]: About to run query: -- 15:31:04.347 SQL [22942]: SELECT * FROM members_session WHERE member_id=5 AND session='DEAA75EC87C3762D270A66B1003266A5' -- 15:31:04.347 SQL [22942]: Found rows: 0 -- 15:31:04.347 SQL [22942]: Found rows: 0 -- 15:31:04.347 FLOG_MAX [22942]: insert_db_record() -- 15:31:04.347 SQL [22942]: pgsql_exec() -- 15:31:04.347 SQL [22942]: About to run query: -- 15:31:04.347 SQL [22942]: INSERT INTO members_session (member_id,session) VALUES ('5','DEAA75EC87C3762D270A66B1003266A5') -- 15:31:04.349 SQL [22942]: PQcmdTuples: 1 -- 15:31:04.349 SQL [22942]: Affected rows: 1 -- 15:31:04.349 FLOG_MAX [22942]: SELECT currval('members_session_id_seq') -- 15:31:04.349 SQL [22942]: pgsql_query() -- 15:31:04.349 SQL [22942]: About to run query: -- 15:31:04.349 SQL [22942]: SELECT currval('members_session_id_seq') -- 15:31:04.349 SQL [22942]: Found rows: 1 -- 15:31:04.349 INFO [22942]: CreateDefaultPage() -- 15:31:04.349 FLOG_MAX [22942]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:31:04.349 SQL [22942]: pgsql_query() -- 15:31:04.349 SQL [22942]: About to run query: -- 15:31:04.349 SQL [22942]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 15:31:04.350 SQL [22942]: Found rows: 1 -- 15:31:04.350 FLOG_MAX [22942]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 15:31:04.350 FLOG_MAX [22942]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:31:04.350 SQL [22942]: pgsql_query() -- 15:31:04.350 SQL [22942]: About to run query: -- 15:31:04.350 SQL [22942]: SELECT *,id AS pending_id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 15:31:04.350 SQL [22942]: Found rows: 0 -- 15:31:04.350 SQL [22942]: Found rows: 0 -- 15:31:04.350 INFO [22942]: /CreateDefaultPage() -- 15:31:04.350 INFO [22942]: /LoginCoreGradeAccount() -- 15:31:04.350 INFO [22942]: RET: added=2020-02-05 06:47:23.982154 -- 15:31:04.350 INFO [22942]: RET: email=ameye+11@chiefsoft.com -- 15:31:04.350 INFO [22942]: RET: firstname=Olu -- 15:31:04.350 INFO [22942]: RET: id=5 -- 15:31:04.350 INFO [22942]: RET: last_login= -- 15:31:04.350 INFO [22942]: RET: lastname=Amey -- 15:31:04.350 INFO [22942]: RET: loc=192.168.1.13 -- 15:31:04.350 INFO [22942]: RET: member_id=5 -- 15:31:04.350 INFO [22942]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 15:31:04.350 INFO [22942]: RET: phone= -- 15:31:04.350 INFO [22942]: RET: pid= -- 15:31:04.350 INFO [22942]: RET: result=YES I GET TO BACK END -- 15:31:04.350 INFO [22942]: RET: sessionid=DEAA75EC87C3762D270A66B1003266A5 -- 15:31:04.350 INFO [22942]: RET: status=1 -- 15:31:04.350 INFO [22942]: RET: stauts=OK -- 15:31:04.350 INFO [22942]: RET: username=ameye+11@chiefsoft.com -- 15:31:04.350 INFO [22942]: RET: verified= -- 15:31:04.352 INFO [22942]: COREGRADE is stopping... -- 15:31:04.352 DEBUG [22942]: Closing database connection -- 15:31:04.352 SQL [22942]: pgsql_close() -- 15:39:35.507 INFO [23145]: COREGRADE is starting... -- 15:39:35.508 INFO [23145]: Version from config: 1.0 -- 15:39:35.508 DEBUG [23145]: Connecting to database... -- 15:39:35.508 DEBUG [23145]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:39:35.508 SQL [23145]: pgsql_db_connect() -- 15:39:35.513 DEBUG [23145]: Database connection successful -- 15:39:35.513 INFO [23145]: _SERVER found -- 15:39:35.513 INFO [23145]: REMOTE_ADDR = 192.168.1.13 -- 15:39:35.513 INFO [23145]: SERVER_NAME = oameye.works.coregrade.com -- 15:39:35.513 INFO [23145]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ae64fqva8ofvdj0uk81bj65q8jrtjrdm -- 15:39:35.513 INFO [23145]: QUERY_STRING = -- 15:39:35.514 INFO [23145]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:39:35.514 INFO [23145]: SystemStatus()09-09-********~************ -- 15:39:35.514 INFO [23145]: long coregrade_api_main(CVars in, CVars &out) -- 15:39:35.514 INFO [23145]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 15:39:35.514 INFO [23145]: account calls -- 15:39:35.514 INFO [23145]: account_calls() -- 15:39:35.514 INFO [23145]: LoginCoreGradeAccount() -- 15:39:35.514 FLOG_MAX [23145]: REQ_STRING(username) -- 15:39:35.514 FLOG_MAX [23145]: REQ_STRING(password) -- 15:39:35.514 FLOG_MAX [23145]: REQ_STRING(sessionid) -- 15:39:35.514 FLOG_MAX [23145]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:39:35.514 SQL [23145]: pgsql_query() -- 15:39:35.514 SQL [23145]: About to run query: -- 15:39:35.514 SQL [23145]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 15:39:35.517 SQL [23145]: Found rows: 1 -- 15:39:35.517 FLOG_MAX [23145]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 15:39:35.517 INFO [23145]: long SessionCheck(long uid, const char *sessionid, int create ) -- 15:39:35.517 SQL [23145]: pgsql_exec() -- 15:39:35.517 SQL [23145]: About to run query: -- 15:39:35.517 SQL [23145]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 15:39:35.518 SQL [23145]: PQcmdTuples: 0 -- 15:39:35.518 SQL [23145]: Affected rows: 0 -- 15:39:35.518 SQL [23145]: pgsql_exec() -- 15:39:35.518 SQL [23145]: About to run query: -- 15:39:35.518 SQL [23145]: DELETE FROM members_session WHERE member_id=5 -- 15:39:35.519 SQL [23145]: PQcmdTuples: 1 -- 15:39:35.519 SQL [23145]: Affected rows: 1 -- 15:39:35.519 SQL [23145]: pgsql_query() -- 15:39:35.519 SQL [23145]: About to run query: -- 15:39:35.519 SQL [23145]: SELECT * FROM members_session WHERE member_id=5 AND session<>'F8E641A8C9964CB19F9A410608BE856C' -- 15:39:35.520 SQL [23145]: Found rows: 0 -- 15:39:35.520 SQL [23145]: Found rows: 0 -- 15:39:35.520 FLOG_MAX [23145]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:39:35.520 SQL [23145]: pgsql_query() -- 15:39:35.520 SQL [23145]: About to run query: -- 15:39:35.520 SQL [23145]: SELECT * FROM members_session WHERE member_id=5 AND session='F8E641A8C9964CB19F9A410608BE856C' -- 15:39:35.520 SQL [23145]: Found rows: 0 -- 15:39:35.520 SQL [23145]: Found rows: 0 -- 15:39:35.520 FLOG_MAX [23145]: insert_db_record() -- 15:39:35.520 SQL [23145]: pgsql_exec() -- 15:39:35.520 SQL [23145]: About to run query: -- 15:39:35.520 SQL [23145]: INSERT INTO members_session (member_id,session) VALUES ('5','F8E641A8C9964CB19F9A410608BE856C') -- 15:39:35.522 SQL [23145]: PQcmdTuples: 1 -- 15:39:35.522 SQL [23145]: Affected rows: 1 -- 15:39:35.522 FLOG_MAX [23145]: SELECT currval('members_session_id_seq') -- 15:39:35.522 SQL [23145]: pgsql_query() -- 15:39:35.522 SQL [23145]: About to run query: -- 15:39:35.522 SQL [23145]: SELECT currval('members_session_id_seq') -- 15:39:35.522 SQL [23145]: Found rows: 1 -- 15:39:35.522 INFO [23145]: CreateDefaultPage() -- 15:39:35.522 FLOG_MAX [23145]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:39:35.522 SQL [23145]: pgsql_query() -- 15:39:35.522 SQL [23145]: About to run query: -- 15:39:35.522 SQL [23145]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 15:39:35.522 SQL [23145]: Found rows: 1 -- 15:39:35.522 FLOG_MAX [23145]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 15:39:35.522 SQL [23145]: pgsql_query() -- 15:39:35.522 SQL [23145]: About to run query: -- 15:39:35.522 SQL [23145]: SELECT *,id AS pending_id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 15:39:35.523 SQL [23145]: Found rows: 0 -- 15:39:35.523 SQL [23145]: Found rows: 0 -- 15:39:35.523 INFO [23145]: /CreateDefaultPage() -- 15:39:35.523 INFO [23145]: /LoginCoreGradeAccount() -- 15:39:35.523 INFO [23145]: RET: added=2020-02-05 06:47:23.982154 -- 15:39:35.523 INFO [23145]: RET: email=ameye+11@chiefsoft.com -- 15:39:35.523 INFO [23145]: RET: firstname=Olu -- 15:39:35.523 INFO [23145]: RET: id=5 -- 15:39:35.523 INFO [23145]: RET: last_login= -- 15:39:35.523 INFO [23145]: RET: lastname=Amey -- 15:39:35.523 INFO [23145]: RET: loc=192.168.1.13 -- 15:39:35.523 INFO [23145]: RET: member_id=5 -- 15:39:35.523 INFO [23145]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 15:39:35.523 INFO [23145]: RET: phone= -- 15:39:35.523 INFO [23145]: RET: pid= -- 15:39:35.523 INFO [23145]: RET: result=YES I GET TO BACK END -- 15:39:35.523 INFO [23145]: RET: sessionid=F8E641A8C9964CB19F9A410608BE856C -- 15:39:35.523 INFO [23145]: RET: status=1 -- 15:39:35.523 INFO [23145]: RET: stauts=OK -- 15:39:35.523 INFO [23145]: RET: username=ameye+11@chiefsoft.com -- 15:39:35.523 INFO [23145]: RET: verified= -- 15:39:35.525 INFO [23145]: COREGRADE is stopping... -- 15:39:35.525 DEBUG [23145]: Closing database connection -- 15:39:35.525 SQL [23145]: pgsql_close() -- 15:40:29.458 INFO [23326]: COREGRADE is starting... -- 15:40:29.459 INFO [23326]: Version from config: 1.0 -- 15:40:29.459 DEBUG [23326]: Connecting to database... -- 15:40:29.459 DEBUG [23326]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:40:29.459 SQL [23326]: pgsql_db_connect() -- 15:40:29.463 DEBUG [23326]: Database connection successful -- 15:40:29.463 INFO [23326]: _SERVER found -- 15:40:29.463 INFO [23326]: REMOTE_ADDR = 192.168.1.13 -- 15:40:29.463 INFO [23326]: SERVER_NAME = oameye.works.coregrade.com -- 15:40:29.463 INFO [23326]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ae64fqva8ofvdj0uk81bj65q8jrtjrdm -- 15:40:29.463 INFO [23326]: QUERY_STRING = -- 15:40:29.463 INFO [23326]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:40:29.464 INFO [23326]: SystemStatus()09-09-********~************ -- 15:40:29.464 INFO [23326]: long coregrade_api_main(CVars in, CVars &out) -- 15:40:29.464 INFO [23326]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 15:40:29.464 INFO [23326]: account calls -- 15:40:29.464 INFO [23326]: account_calls() -- 15:40:29.464 INFO [23326]: LoginCoreGradeAccount() -- 15:40:29.464 FLOG_MAX [23326]: REQ_STRING(username) -- 15:40:29.464 FLOG_MAX [23326]: REQ_STRING(password) -- 15:40:29.464 FLOG_MAX [23326]: REQ_STRING(sessionid) -- 15:40:29.464 FLOG_MAX [23326]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:40:29.464 SQL [23326]: pgsql_query() -- 15:40:29.464 SQL [23326]: About to run query: -- 15:40:29.464 SQL [23326]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 15:40:29.467 SQL [23326]: Found rows: 1 -- 15:40:29.467 FLOG_MAX [23326]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 15:40:29.467 INFO [23326]: long SessionCheck(long uid, const char *sessionid, int create ) -- 15:40:29.467 SQL [23326]: pgsql_exec() -- 15:40:29.467 SQL [23326]: About to run query: -- 15:40:29.467 SQL [23326]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 15:40:29.468 SQL [23326]: PQcmdTuples: 0 -- 15:40:29.468 SQL [23326]: Affected rows: 0 -- 15:40:29.468 SQL [23326]: pgsql_exec() -- 15:40:29.468 SQL [23326]: About to run query: -- 15:40:29.468 SQL [23326]: DELETE FROM members_session WHERE member_id=5 -- 15:40:29.469 SQL [23326]: PQcmdTuples: 1 -- 15:40:29.469 SQL [23326]: Affected rows: 1 -- 15:40:29.469 SQL [23326]: pgsql_query() -- 15:40:29.469 SQL [23326]: About to run query: -- 15:40:29.469 SQL [23326]: SELECT * FROM members_session WHERE member_id=5 AND session<>'6C3B66B4915B5691CA368DD55E626B43' -- 15:40:29.470 SQL [23326]: Found rows: 0 -- 15:40:29.470 SQL [23326]: Found rows: 0 -- 15:40:29.470 FLOG_MAX [23326]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:40:29.470 SQL [23326]: pgsql_query() -- 15:40:29.470 SQL [23326]: About to run query: -- 15:40:29.470 SQL [23326]: SELECT * FROM members_session WHERE member_id=5 AND session='6C3B66B4915B5691CA368DD55E626B43' -- 15:40:29.471 SQL [23326]: Found rows: 0 -- 15:40:29.471 SQL [23326]: Found rows: 0 -- 15:40:29.471 FLOG_MAX [23326]: insert_db_record() -- 15:40:29.471 SQL [23326]: pgsql_exec() -- 15:40:29.471 SQL [23326]: About to run query: -- 15:40:29.471 SQL [23326]: INSERT INTO members_session (member_id,session) VALUES ('5','6C3B66B4915B5691CA368DD55E626B43') -- 15:40:29.472 SQL [23326]: PQcmdTuples: 1 -- 15:40:29.472 SQL [23326]: Affected rows: 1 -- 15:40:29.472 FLOG_MAX [23326]: SELECT currval('members_session_id_seq') -- 15:40:29.472 SQL [23326]: pgsql_query() -- 15:40:29.472 SQL [23326]: About to run query: -- 15:40:29.472 SQL [23326]: SELECT currval('members_session_id_seq') -- 15:40:29.472 SQL [23326]: Found rows: 1 -- 15:40:29.473 INFO [23326]: CreateDefaultPage() -- 15:40:29.473 FLOG_MAX [23326]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:40:29.473 SQL [23326]: pgsql_query() -- 15:40:29.473 SQL [23326]: About to run query: -- 15:40:29.473 SQL [23326]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 15:40:29.473 SQL [23326]: Found rows: 1 -- 15:40:29.473 FLOG_MAX [23326]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 15:40:29.473 SQL [23326]: pgsql_query() -- 15:40:29.473 SQL [23326]: About to run query: -- 15:40:29.473 SQL [23326]: SELECT *,id AS pending_id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 15:40:29.473 SQL [23326]: Found rows: 0 -- 15:40:29.473 SQL [23326]: Found rows: 0 -- 15:40:29.473 INFO [23326]: /CreateDefaultPage() -- 15:40:29.473 INFO [23326]: /LoginCoreGradeAccount() -- 15:40:29.473 INFO [23326]: RET: added=2020-02-05 06:47:23.982154 -- 15:40:29.473 INFO [23326]: RET: email=ameye+11@chiefsoft.com -- 15:40:29.473 INFO [23326]: RET: firstname=Olu -- 15:40:29.473 INFO [23326]: RET: id=5 -- 15:40:29.473 INFO [23326]: RET: last_login= -- 15:40:29.473 INFO [23326]: RET: lastname=Amey -- 15:40:29.473 INFO [23326]: RET: loc=192.168.1.13 -- 15:40:29.474 INFO [23326]: RET: member_id=5 -- 15:40:29.474 INFO [23326]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 15:40:29.474 INFO [23326]: RET: phone= -- 15:40:29.474 INFO [23326]: RET: pid= -- 15:40:29.474 INFO [23326]: RET: result=YES I GET TO BACK END -- 15:40:29.474 INFO [23326]: RET: sessionid=6C3B66B4915B5691CA368DD55E626B43 -- 15:40:29.474 INFO [23326]: RET: status=1 -- 15:40:29.474 INFO [23326]: RET: stauts=OK -- 15:40:29.474 INFO [23326]: RET: username=ameye+11@chiefsoft.com -- 15:40:29.474 INFO [23326]: RET: verified= -- 15:40:29.475 INFO [23326]: COREGRADE is stopping... -- 15:40:29.475 DEBUG [23326]: Closing database connection -- 15:40:29.475 SQL [23326]: pgsql_close() -- 15:42:42.245 INFO [23411]: COREGRADE is starting... -- 15:42:42.246 INFO [23411]: Version from config: 1.0 -- 15:42:42.246 DEBUG [23411]: Connecting to database... -- 15:42:42.246 DEBUG [23411]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:42:42.246 SQL [23411]: pgsql_db_connect() -- 15:42:42.251 DEBUG [23411]: Database connection successful -- 15:42:42.251 INFO [23411]: _SERVER found -- 15:42:42.251 INFO [23411]: REMOTE_ADDR = 192.168.1.13 -- 15:42:42.251 INFO [23411]: SERVER_NAME = oameye.works.coregrade.com -- 15:42:42.251 INFO [23411]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ae64fqva8ofvdj0uk81bj65q8jrtjrdm -- 15:42:42.251 INFO [23411]: QUERY_STRING = -- 15:42:42.251 INFO [23411]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:42:42.251 INFO [23411]: SystemStatus()09-09-********~************ -- 15:42:42.251 INFO [23411]: long coregrade_api_main(CVars in, CVars &out) -- 15:42:42.251 INFO [23411]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 15:42:42.251 INFO [23411]: account calls -- 15:42:42.251 INFO [23411]: account_calls() -- 15:42:42.251 INFO [23411]: LoginCoreGradeAccount() -- 15:42:42.251 FLOG_MAX [23411]: REQ_STRING(username) -- 15:42:42.251 FLOG_MAX [23411]: REQ_STRING(password) -- 15:42:42.251 FLOG_MAX [23411]: REQ_STRING(sessionid) -- 15:42:42.251 FLOG_MAX [23411]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:42:42.251 SQL [23411]: pgsql_query() -- 15:42:42.251 SQL [23411]: About to run query: -- 15:42:42.251 SQL [23411]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 15:42:42.254 SQL [23411]: Found rows: 1 -- 15:42:42.255 FLOG_MAX [23411]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 15:42:42.255 INFO [23411]: long SessionCheck(long uid, const char *sessionid, int create ) -- 15:42:42.255 SQL [23411]: pgsql_exec() -- 15:42:42.255 SQL [23411]: About to run query: -- 15:42:42.255 SQL [23411]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 15:42:42.255 SQL [23411]: PQcmdTuples: 0 -- 15:42:42.255 SQL [23411]: Affected rows: 0 -- 15:42:42.255 SQL [23411]: pgsql_exec() -- 15:42:42.255 SQL [23411]: About to run query: -- 15:42:42.256 SQL [23411]: DELETE FROM members_session WHERE member_id=5 -- 15:42:42.257 SQL [23411]: PQcmdTuples: 1 -- 15:42:42.257 SQL [23411]: Affected rows: 1 -- 15:42:42.257 SQL [23411]: pgsql_query() -- 15:42:42.257 SQL [23411]: About to run query: -- 15:42:42.257 SQL [23411]: SELECT * FROM members_session WHERE member_id=5 AND session<>'B4CCEDB8689AD31ABB6BEDE85F73D06E' -- 15:42:42.257 SQL [23411]: Found rows: 0 -- 15:42:42.257 SQL [23411]: Found rows: 0 -- 15:42:42.257 FLOG_MAX [23411]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:42:42.257 SQL [23411]: pgsql_query() -- 15:42:42.257 SQL [23411]: About to run query: -- 15:42:42.257 SQL [23411]: SELECT * FROM members_session WHERE member_id=5 AND session='B4CCEDB8689AD31ABB6BEDE85F73D06E' -- 15:42:42.258 SQL [23411]: Found rows: 0 -- 15:42:42.258 SQL [23411]: Found rows: 0 -- 15:42:42.258 FLOG_MAX [23411]: insert_db_record() -- 15:42:42.258 SQL [23411]: pgsql_exec() -- 15:42:42.258 SQL [23411]: About to run query: -- 15:42:42.258 SQL [23411]: INSERT INTO members_session (member_id,session) VALUES ('5','B4CCEDB8689AD31ABB6BEDE85F73D06E') -- 15:42:42.259 SQL [23411]: PQcmdTuples: 1 -- 15:42:42.259 SQL [23411]: Affected rows: 1 -- 15:42:42.259 FLOG_MAX [23411]: SELECT currval('members_session_id_seq') -- 15:42:42.259 SQL [23411]: pgsql_query() -- 15:42:42.259 SQL [23411]: About to run query: -- 15:42:42.259 SQL [23411]: SELECT currval('members_session_id_seq') -- 15:42:42.260 SQL [23411]: Found rows: 1 -- 15:42:42.260 INFO [23411]: CreateDefaultPage() -- 15:42:42.260 FLOG_MAX [23411]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:42:42.260 SQL [23411]: pgsql_query() -- 15:42:42.260 SQL [23411]: About to run query: -- 15:42:42.260 SQL [23411]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 15:42:42.260 SQL [23411]: Found rows: 1 -- 15:42:42.260 FLOG_MAX [23411]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 15:42:42.260 SQL [23411]: pgsql_query() -- 15:42:42.260 SQL [23411]: About to run query: -- 15:42:42.260 SQL [23411]: SELECT *,id AS pending_id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 15:42:42.261 SQL [23411]: Found rows: 0 -- 15:42:42.261 SQL [23411]: Found rows: 0 -- 15:42:42.261 INFO [23411]: /CreateDefaultPage() -- 15:42:42.261 INFO [23411]: /LoginCoreGradeAccount() -- 15:42:42.261 INFO [23411]: RET: added=2020-02-05 06:47:23.982154 -- 15:42:42.261 INFO [23411]: RET: email=ameye+11@chiefsoft.com -- 15:42:42.261 INFO [23411]: RET: firstname=Olu -- 15:42:42.261 INFO [23411]: RET: id=5 -- 15:42:42.261 INFO [23411]: RET: last_login= -- 15:42:42.261 INFO [23411]: RET: lastname=Amey -- 15:42:42.261 INFO [23411]: RET: loc=192.168.1.13 -- 15:42:42.261 INFO [23411]: RET: member_id=5 -- 15:42:42.261 INFO [23411]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 15:42:42.261 INFO [23411]: RET: phone= -- 15:42:42.261 INFO [23411]: RET: pid= -- 15:42:42.261 INFO [23411]: RET: result=YES I GET TO BACK END -- 15:42:42.261 INFO [23411]: RET: sessionid=B4CCEDB8689AD31ABB6BEDE85F73D06E -- 15:42:42.261 INFO [23411]: RET: status=1 -- 15:42:42.261 INFO [23411]: RET: stauts=OK -- 15:42:42.261 INFO [23411]: RET: username=ameye+11@chiefsoft.com -- 15:42:42.261 INFO [23411]: RET: verified= -- 15:42:42.263 INFO [23411]: COREGRADE is stopping... -- 15:42:42.263 DEBUG [23411]: Closing database connection -- 15:42:42.263 SQL [23411]: pgsql_close() -- 15:44:48.594 INFO [23576]: COREGRADE is starting... -- 15:44:48.594 INFO [23576]: Version from config: 1.0 -- 15:44:48.594 DEBUG [23576]: Connecting to database... -- 15:44:48.594 DEBUG [23576]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:44:48.594 SQL [23576]: pgsql_db_connect() -- 15:44:48.599 DEBUG [23576]: Database connection successful -- 15:44:48.599 INFO [23576]: _SERVER found -- 15:44:48.599 INFO [23576]: REMOTE_ADDR = 192.168.1.13 -- 15:44:48.599 INFO [23576]: SERVER_NAME = oameye.works.coregrade.com -- 15:44:48.599 INFO [23576]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=f63pqehvga4gcjd4akm6d37harcbrdqk -- 15:44:48.599 INFO [23576]: QUERY_STRING = -- 15:44:48.599 INFO [23576]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:44:48.599 INFO [23576]: SystemStatus()09-09-********~************ -- 15:44:48.599 INFO [23576]: long coregrade_api_main(CVars in, CVars &out) -- 15:44:48.599 INFO [23576]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 15:44:48.599 INFO [23576]: account calls -- 15:44:48.599 INFO [23576]: account_calls() -- 15:44:48.599 INFO [23576]: LoginCoreGradeAccount() -- 15:44:48.599 FLOG_MAX [23576]: REQ_STRING(username) -- 15:44:48.599 FLOG_MAX [23576]: REQ_STRING(password) -- 15:44:48.599 FLOG_MAX [23576]: REQ_STRING(sessionid) -- 15:44:48.599 FLOG_MAX [23576]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:44:48.599 SQL [23576]: pgsql_query() -- 15:44:48.599 SQL [23576]: About to run query: -- 15:44:48.599 SQL [23576]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 15:44:48.602 SQL [23576]: Found rows: 1 -- 15:44:48.602 FLOG_MAX [23576]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 15:44:48.602 INFO [23576]: long SessionCheck(long uid, const char *sessionid, int create ) -- 15:44:48.602 SQL [23576]: pgsql_exec() -- 15:44:48.602 SQL [23576]: About to run query: -- 15:44:48.602 SQL [23576]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 15:44:48.603 SQL [23576]: PQcmdTuples: 0 -- 15:44:48.603 SQL [23576]: Affected rows: 0 -- 15:44:48.603 SQL [23576]: pgsql_exec() -- 15:44:48.603 SQL [23576]: About to run query: -- 15:44:48.603 SQL [23576]: DELETE FROM members_session WHERE member_id=5 -- 15:44:48.644 SQL [23576]: PQcmdTuples: 1 -- 15:44:48.644 SQL [23576]: Affected rows: 1 -- 15:44:48.644 SQL [23576]: pgsql_query() -- 15:44:48.644 SQL [23576]: About to run query: -- 15:44:48.644 SQL [23576]: SELECT * FROM members_session WHERE member_id=5 AND session<>'51F98914D1362F5BF2C51C3F96F78A28' -- 15:44:48.645 SQL [23576]: Found rows: 0 -- 15:44:48.645 SQL [23576]: Found rows: 0 -- 15:44:48.645 FLOG_MAX [23576]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:44:48.645 SQL [23576]: pgsql_query() -- 15:44:48.645 SQL [23576]: About to run query: -- 15:44:48.645 SQL [23576]: SELECT * FROM members_session WHERE member_id=5 AND session='51F98914D1362F5BF2C51C3F96F78A28' -- 15:44:48.646 SQL [23576]: Found rows: 0 -- 15:44:48.646 SQL [23576]: Found rows: 0 -- 15:44:48.646 FLOG_MAX [23576]: insert_db_record() -- 15:44:48.646 SQL [23576]: pgsql_exec() -- 15:44:48.646 SQL [23576]: About to run query: -- 15:44:48.646 SQL [23576]: INSERT INTO members_session (member_id,session) VALUES ('5','51F98914D1362F5BF2C51C3F96F78A28') -- 15:44:48.655 SQL [23576]: PQcmdTuples: 1 -- 15:44:48.655 SQL [23576]: Affected rows: 1 -- 15:44:48.655 FLOG_MAX [23576]: SELECT currval('members_session_id_seq') -- 15:44:48.655 SQL [23576]: pgsql_query() -- 15:44:48.655 SQL [23576]: About to run query: -- 15:44:48.655 SQL [23576]: SELECT currval('members_session_id_seq') -- 15:44:48.656 SQL [23576]: Found rows: 1 -- 15:44:48.656 INFO [23576]: CreateDefaultPage() -- 15:44:48.656 FLOG_MAX [23576]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:44:48.656 SQL [23576]: pgsql_query() -- 15:44:48.656 SQL [23576]: About to run query: -- 15:44:48.656 SQL [23576]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 15:44:48.656 SQL [23576]: Found rows: 1 -- 15:44:48.656 FLOG_MAX [23576]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 15:44:48.656 SQL [23576]: pgsql_query() -- 15:44:48.656 SQL [23576]: About to run query: -- 15:44:48.656 SQL [23576]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 15:44:48.657 SQL [23576]: Found rows: 0 -- 15:44:48.657 SQL [23576]: Found rows: 0 -- 15:44:48.657 INFO [23576]: /CreateDefaultPage() -- 15:44:48.657 INFO [23576]: /LoginCoreGradeAccount() -- 15:44:48.657 INFO [23576]: RET: added=2020-02-05 06:47:23.982154 -- 15:44:48.657 INFO [23576]: RET: email=ameye+11@chiefsoft.com -- 15:44:48.657 INFO [23576]: RET: firstname=Olu -- 15:44:48.657 INFO [23576]: RET: id=5 -- 15:44:48.657 INFO [23576]: RET: last_login= -- 15:44:48.657 INFO [23576]: RET: lastname=Amey -- 15:44:48.657 INFO [23576]: RET: loc=192.168.1.13 -- 15:44:48.657 INFO [23576]: RET: member_id=5 -- 15:44:48.657 INFO [23576]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 15:44:48.657 INFO [23576]: RET: phone= -- 15:44:48.657 INFO [23576]: RET: pid= -- 15:44:48.657 INFO [23576]: RET: result=YES I GET TO BACK END -- 15:44:48.657 INFO [23576]: RET: sessionid=51F98914D1362F5BF2C51C3F96F78A28 -- 15:44:48.657 INFO [23576]: RET: status=1 -- 15:44:48.657 INFO [23576]: RET: stauts=OK -- 15:44:48.657 INFO [23576]: RET: username=ameye+11@chiefsoft.com -- 15:44:48.657 INFO [23576]: RET: verified= -- 15:44:48.659 INFO [23576]: COREGRADE is stopping... -- 15:44:48.659 DEBUG [23576]: Closing database connection -- 15:44:48.659 SQL [23576]: pgsql_close() -- 15:57:05.139 INFO [23794]: COREGRADE is starting... -- 15:57:05.140 INFO [23794]: Version from config: 1.0 -- 15:57:05.140 DEBUG [23794]: Connecting to database... -- 15:57:05.140 DEBUG [23794]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:05.140 SQL [23794]: pgsql_db_connect() -- 15:57:05.144 DEBUG [23794]: Database connection successful -- 15:57:05.144 INFO [23794]: _SERVER found -- 15:57:05.144 INFO [23794]: REMOTE_ADDR = 192.168.1.13 -- 15:57:05.144 INFO [23794]: SERVER_NAME = oameye.works.coregrade.com -- 15:57:05.144 INFO [23794]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nlvc5onsndooh710hv1shh6atcg9aim3 -- 15:57:05.144 INFO [23794]: QUERY_STRING = -- 15:57:05.144 INFO [23794]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:57:05.144 INFO [23794]: SystemStatus()09-09-********~************ -- 15:57:05.144 INFO [23794]: long coregrade_api_main(CVars in, CVars &out) -- 15:57:05.144 INFO [23794]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 15:57:05.144 INFO [23794]: account calls -- 15:57:05.144 INFO [23794]: account_calls() -- 15:57:05.144 INFO [23794]: LoginCoreGradeAccount() -- 15:57:05.144 FLOG_MAX [23794]: REQ_STRING(username) -- 15:57:05.145 FLOG_MAX [23794]: REQ_STRING(password) -- 15:57:05.145 FLOG_MAX [23794]: REQ_STRING(sessionid) -- 15:57:05.145 FLOG_MAX [23794]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:57:05.145 SQL [23794]: pgsql_query() -- 15:57:05.145 SQL [23794]: About to run query: -- 15:57:05.145 SQL [23794]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 15:57:05.148 SQL [23794]: Found rows: 1 -- 15:57:05.148 FLOG_MAX [23794]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 15:57:05.148 INFO [23794]: long SessionCheck(long uid, const char *sessionid, int create ) -- 15:57:05.148 SQL [23794]: pgsql_exec() -- 15:57:05.148 SQL [23794]: About to run query: -- 15:57:05.148 SQL [23794]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 15:57:05.149 SQL [23794]: PQcmdTuples: 0 -- 15:57:05.149 SQL [23794]: Affected rows: 0 -- 15:57:05.149 SQL [23794]: pgsql_exec() -- 15:57:05.149 SQL [23794]: About to run query: -- 15:57:05.149 SQL [23794]: DELETE FROM members_session WHERE member_id=5 -- 15:57:05.150 SQL [23794]: PQcmdTuples: 1 -- 15:57:05.150 SQL [23794]: Affected rows: 1 -- 15:57:05.150 SQL [23794]: pgsql_query() -- 15:57:05.150 SQL [23794]: About to run query: -- 15:57:05.150 SQL [23794]: SELECT * FROM members_session WHERE member_id=5 AND session<>'29AD56A40210F91E35212E1762B43527' -- 15:57:05.151 SQL [23794]: Found rows: 0 -- 15:57:05.151 SQL [23794]: Found rows: 0 -- 15:57:05.151 FLOG_MAX [23794]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:57:05.151 SQL [23794]: pgsql_query() -- 15:57:05.151 SQL [23794]: About to run query: -- 15:57:05.151 SQL [23794]: SELECT * FROM members_session WHERE member_id=5 AND session='29AD56A40210F91E35212E1762B43527' -- 15:57:05.151 SQL [23794]: Found rows: 0 -- 15:57:05.152 SQL [23794]: Found rows: 0 -- 15:57:05.152 FLOG_MAX [23794]: insert_db_record() -- 15:57:05.152 SQL [23794]: pgsql_exec() -- 15:57:05.152 SQL [23794]: About to run query: -- 15:57:05.152 SQL [23794]: INSERT INTO members_session (member_id,session) VALUES ('5','29AD56A40210F91E35212E1762B43527') -- 15:57:05.153 SQL [23794]: PQcmdTuples: 1 -- 15:57:05.153 SQL [23794]: Affected rows: 1 -- 15:57:05.153 FLOG_MAX [23794]: SELECT currval('members_session_id_seq') -- 15:57:05.153 SQL [23794]: pgsql_query() -- 15:57:05.153 SQL [23794]: About to run query: -- 15:57:05.153 SQL [23794]: SELECT currval('members_session_id_seq') -- 15:57:05.154 SQL [23794]: Found rows: 1 -- 15:57:05.154 INFO [23794]: CreateDefaultPage() -- 15:57:05.154 FLOG_MAX [23794]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:57:05.154 SQL [23794]: pgsql_query() -- 15:57:05.154 SQL [23794]: About to run query: -- 15:57:05.154 SQL [23794]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 15:57:05.154 SQL [23794]: Found rows: 1 -- 15:57:05.154 FLOG_MAX [23794]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 15:57:05.154 SQL [23794]: pgsql_query() -- 15:57:05.154 SQL [23794]: About to run query: -- 15:57:05.154 SQL [23794]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 15:57:05.155 SQL [23794]: Found rows: 0 -- 15:57:05.155 SQL [23794]: Found rows: 0 -- 15:57:05.155 INFO [23794]: /CreateDefaultPage() -- 15:57:05.155 INFO [23794]: /LoginCoreGradeAccount() -- 15:57:05.155 INFO [23794]: RET: added=2020-02-05 06:47:23.982154 -- 15:57:05.155 INFO [23794]: RET: email=ameye+11@chiefsoft.com -- 15:57:05.155 INFO [23794]: RET: firstname=Olu -- 15:57:05.155 INFO [23794]: RET: id=5 -- 15:57:05.155 INFO [23794]: RET: last_login= -- 15:57:05.155 INFO [23794]: RET: lastname=Amey -- 15:57:05.155 INFO [23794]: RET: loc=192.168.1.13 -- 15:57:05.155 INFO [23794]: RET: member_id=5 -- 15:57:05.155 INFO [23794]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 15:57:05.155 INFO [23794]: RET: phone= -- 15:57:05.155 INFO [23794]: RET: pid= -- 15:57:05.155 INFO [23794]: RET: result=YES I GET TO BACK END -- 15:57:05.155 INFO [23794]: RET: sessionid=29AD56A40210F91E35212E1762B43527 -- 15:57:05.155 INFO [23794]: RET: status=1 -- 15:57:05.155 INFO [23794]: RET: stauts=OK -- 15:57:05.155 INFO [23794]: RET: username=ameye+11@chiefsoft.com -- 15:57:05.155 INFO [23794]: RET: verified= -- 15:57:05.157 INFO [23794]: COREGRADE is stopping... -- 15:57:05.157 DEBUG [23794]: Closing database connection -- 15:57:05.157 SQL [23794]: pgsql_close() -- 15:58:17.536 INFO [23970]: COREGRADE is starting... -- 15:58:17.536 INFO [23970]: Version from config: 1.0 -- 15:58:17.536 DEBUG [23970]: Connecting to database... -- 15:58:17.536 DEBUG [23970]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:17.536 SQL [23970]: pgsql_db_connect() -- 15:58:17.542 DEBUG [23970]: Database connection successful -- 15:58:17.542 INFO [23970]: _SERVER found -- 15:58:17.542 INFO [23970]: REMOTE_ADDR = 192.168.1.13 -- 15:58:17.542 INFO [23970]: SERVER_NAME = oameye.works.coregrade.com -- 15:58:17.542 INFO [23970]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nlvc5onsndooh710hv1shh6atcg9aim3 -- 15:58:17.542 INFO [23970]: QUERY_STRING = -- 15:58:17.542 INFO [23970]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:58:17.542 INFO [23970]: SystemStatus()09-09-********~************ -- 15:58:17.542 INFO [23970]: long coregrade_api_main(CVars in, CVars &out) -- 15:58:17.542 INFO [23970]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 15:58:17.542 INFO [23970]: account calls -- 15:58:17.542 INFO [23970]: account_calls() -- 15:58:17.542 INFO [23970]: LoginCoreGradeAccount() -- 15:58:17.542 FLOG_MAX [23970]: REQ_STRING(username) -- 15:58:17.542 FLOG_MAX [23970]: REQ_STRING(password) -- 15:58:17.542 FLOG_MAX [23970]: REQ_STRING(sessionid) -- 15:58:17.543 FLOG_MAX [23970]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:58:17.543 SQL [23970]: pgsql_query() -- 15:58:17.543 SQL [23970]: About to run query: -- 15:58:17.543 SQL [23970]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 15:58:17.546 SQL [23970]: Found rows: 1 -- 15:58:17.546 FLOG_MAX [23970]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 15:58:17.546 INFO [23970]: long SessionCheck(long uid, const char *sessionid, int create ) -- 15:58:17.546 SQL [23970]: pgsql_exec() -- 15:58:17.546 SQL [23970]: About to run query: -- 15:58:17.546 SQL [23970]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 15:58:17.547 SQL [23970]: PQcmdTuples: 0 -- 15:58:17.547 SQL [23970]: Affected rows: 0 -- 15:58:17.547 SQL [23970]: pgsql_exec() -- 15:58:17.547 SQL [23970]: About to run query: -- 15:58:17.547 SQL [23970]: DELETE FROM members_session WHERE member_id=5 -- 15:58:17.548 SQL [23970]: PQcmdTuples: 1 -- 15:58:17.548 SQL [23970]: Affected rows: 1 -- 15:58:17.548 SQL [23970]: pgsql_query() -- 15:58:17.548 SQL [23970]: About to run query: -- 15:58:17.548 SQL [23970]: SELECT * FROM members_session WHERE member_id=5 AND session<>'2AACB5C13AAE0BD8121C4D01802EC93C' -- 15:58:17.548 SQL [23970]: Found rows: 0 -- 15:58:17.548 SQL [23970]: Found rows: 0 -- 15:58:17.548 FLOG_MAX [23970]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:58:17.548 SQL [23970]: pgsql_query() -- 15:58:17.549 SQL [23970]: About to run query: -- 15:58:17.549 SQL [23970]: SELECT * FROM members_session WHERE member_id=5 AND session='2AACB5C13AAE0BD8121C4D01802EC93C' -- 15:58:17.549 SQL [23970]: Found rows: 0 -- 15:58:17.549 SQL [23970]: Found rows: 0 -- 15:58:17.549 FLOG_MAX [23970]: insert_db_record() -- 15:58:17.549 SQL [23970]: pgsql_exec() -- 15:58:17.549 SQL [23970]: About to run query: -- 15:58:17.549 SQL [23970]: INSERT INTO members_session (member_id,session) VALUES ('5','2AACB5C13AAE0BD8121C4D01802EC93C') -- 15:58:17.550 SQL [23970]: PQcmdTuples: 1 -- 15:58:17.550 SQL [23970]: Affected rows: 1 -- 15:58:17.550 FLOG_MAX [23970]: SELECT currval('members_session_id_seq') -- 15:58:17.550 SQL [23970]: pgsql_query() -- 15:58:17.550 SQL [23970]: About to run query: -- 15:58:17.550 SQL [23970]: SELECT currval('members_session_id_seq') -- 15:58:17.551 SQL [23970]: Found rows: 1 -- 15:58:17.551 INFO [23970]: CreateDefaultPage() -- 15:58:17.551 FLOG_MAX [23970]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:58:17.551 SQL [23970]: pgsql_query() -- 15:58:17.551 SQL [23970]: About to run query: -- 15:58:17.551 SQL [23970]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 15:58:17.551 SQL [23970]: Found rows: 1 -- 15:58:17.551 FLOG_MAX [23970]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 15:58:17.551 SQL [23970]: pgsql_query() -- 15:58:17.551 SQL [23970]: About to run query: -- 15:58:17.551 SQL [23970]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 15:58:17.552 SQL [23970]: Found rows: 0 -- 15:58:17.552 SQL [23970]: Found rows: 0 -- 15:58:17.552 FLOG_MAX [23970]: insert_db_record() -- 15:58:17.552 SQL [23970]: pgsql_exec() -- 15:58:17.552 SQL [23970]: About to run query: -- 15:58:17.552 SQL [23970]: INSERT INTO members_pages (member_id,page_key,page_mode,title) VALUES ('','PGAF201DD23B8F42F71D1115FCA3B5745F','DEFAULT','My default page.') -- 15:58:17.552 SQL [23970]: Affected rows: ERROR -- 15:58:17.552 FLOG_MAX [23970]: SELECT currval('members_pages_id_seq') -- 15:58:17.552 SQL [23970]: pgsql_query() -- 15:58:17.552 SQL [23970]: About to run query: -- 15:58:17.552 SQL [23970]: SELECT currval('members_pages_id_seq') -- 15:58:17.552 SQL [23970]: Found rows: ERROR -- 15:58:17.552 FLOG_MAX [23970]: SQL error -- 15:58:17.552 INFO [23970]: /CreateDefaultPage() -- 15:58:17.552 INFO [23970]: /LoginCoreGradeAccount() -- 15:58:17.552 INFO [23970]: RET: added=2020-02-05 06:47:23.982154 -- 15:58:17.552 INFO [23970]: RET: email=ameye+11@chiefsoft.com -- 15:58:17.552 INFO [23970]: RET: firstname=Olu -- 15:58:17.553 INFO [23970]: RET: id=5 -- 15:58:17.553 INFO [23970]: RET: last_login= -- 15:58:17.553 INFO [23970]: RET: lastname=Amey -- 15:58:17.553 INFO [23970]: RET: loc=192.168.1.13 -- 15:58:17.553 INFO [23970]: RET: member_id=5 -- 15:58:17.553 INFO [23970]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 15:58:17.553 INFO [23970]: RET: phone= -- 15:58:17.553 INFO [23970]: RET: pid= -- 15:58:17.553 INFO [23970]: RET: result=YES I GET TO BACK END -- 15:58:17.553 INFO [23970]: RET: sessionid=2AACB5C13AAE0BD8121C4D01802EC93C -- 15:58:17.553 INFO [23970]: RET: status=1 -- 15:58:17.553 INFO [23970]: RET: stauts=OK -- 15:58:17.553 INFO [23970]: RET: username=ameye+11@chiefsoft.com -- 15:58:17.553 INFO [23970]: RET: verified= -- 15:58:17.554 INFO [23970]: COREGRADE is stopping... -- 15:58:17.554 DEBUG [23970]: Closing database connection -- 15:58:17.554 SQL [23970]: pgsql_close() -- 15:59:10.276 INFO [24136]: COREGRADE is starting... -- 15:59:10.276 INFO [24136]: Version from config: 1.0 -- 15:59:10.276 DEBUG [24136]: Connecting to database... -- 15:59:10.276 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:59:10.276 SQL [24136]: pgsql_db_connect() -- 15:59:10.282 DEBUG [24136]: Database connection successful -- 15:59:10.282 INFO [24136]: _SERVER found -- 15:59:10.282 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 15:59:10.282 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 15:59:10.282 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nlvc5onsndooh710hv1shh6atcg9aim3 -- 15:59:10.282 INFO [24136]: QUERY_STRING = -- 15:59:10.282 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:59:10.282 INFO [24136]: SystemStatus()09-09-********~************ -- 15:59:10.282 INFO [24136]: long coregrade_api_main(CVars in, CVars &out) -- 15:59:10.282 INFO [24136]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 15:59:10.282 INFO [24136]: account calls -- 15:59:10.282 INFO [24136]: account_calls() -- 15:59:10.282 INFO [24136]: LoginCoreGradeAccount() -- 15:59:10.282 FLOG_MAX [24136]: REQ_STRING(username) -- 15:59:10.282 FLOG_MAX [24136]: REQ_STRING(password) -- 15:59:10.282 FLOG_MAX [24136]: REQ_STRING(sessionid) -- 15:59:10.282 FLOG_MAX [24136]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:59:10.282 SQL [24136]: pgsql_query() -- 15:59:10.282 SQL [24136]: About to run query: -- 15:59:10.282 SQL [24136]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 15:59:10.285 SQL [24136]: Found rows: 1 -- 15:59:10.285 FLOG_MAX [24136]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 15:59:10.285 INFO [24136]: long SessionCheck(long uid, const char *sessionid, int create ) -- 15:59:10.285 SQL [24136]: pgsql_exec() -- 15:59:10.285 SQL [24136]: About to run query: -- 15:59:10.285 SQL [24136]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 15:59:10.286 SQL [24136]: PQcmdTuples: 0 -- 15:59:10.286 SQL [24136]: Affected rows: 0 -- 15:59:10.286 SQL [24136]: pgsql_exec() -- 15:59:10.286 SQL [24136]: About to run query: -- 15:59:10.286 SQL [24136]: DELETE FROM members_session WHERE member_id=5 -- 15:59:10.287 SQL [24136]: PQcmdTuples: 1 -- 15:59:10.287 SQL [24136]: Affected rows: 1 -- 15:59:10.287 SQL [24136]: pgsql_query() -- 15:59:10.287 SQL [24136]: About to run query: -- 15:59:10.287 SQL [24136]: SELECT * FROM members_session WHERE member_id=5 AND session<>'E0AAB9D65ED9C8E9C8F56057CA43D618' -- 15:59:10.288 SQL [24136]: Found rows: 0 -- 15:59:10.288 SQL [24136]: Found rows: 0 -- 15:59:10.288 FLOG_MAX [24136]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:59:10.288 SQL [24136]: pgsql_query() -- 15:59:10.288 SQL [24136]: About to run query: -- 15:59:10.288 SQL [24136]: SELECT * FROM members_session WHERE member_id=5 AND session='E0AAB9D65ED9C8E9C8F56057CA43D618' -- 15:59:10.289 SQL [24136]: Found rows: 0 -- 15:59:10.289 SQL [24136]: Found rows: 0 -- 15:59:10.289 FLOG_MAX [24136]: insert_db_record() -- 15:59:10.289 SQL [24136]: pgsql_exec() -- 15:59:10.289 SQL [24136]: About to run query: -- 15:59:10.289 SQL [24136]: INSERT INTO members_session (member_id,session) VALUES ('5','E0AAB9D65ED9C8E9C8F56057CA43D618') -- 15:59:10.290 SQL [24136]: PQcmdTuples: 1 -- 15:59:10.290 SQL [24136]: Affected rows: 1 -- 15:59:10.290 FLOG_MAX [24136]: SELECT currval('members_session_id_seq') -- 15:59:10.290 SQL [24136]: pgsql_query() -- 15:59:10.290 SQL [24136]: About to run query: -- 15:59:10.290 SQL [24136]: SELECT currval('members_session_id_seq') -- 15:59:10.291 SQL [24136]: Found rows: 1 -- 15:59:10.291 INFO [24136]: CreateDefaultPage() -- 15:59:10.291 FLOG_MAX [24136]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:59:10.291 SQL [24136]: pgsql_query() -- 15:59:10.291 SQL [24136]: About to run query: -- 15:59:10.291 SQL [24136]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 15:59:10.292 SQL [24136]: Found rows: 1 -- 15:59:10.292 FLOG_MAX [24136]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 15:59:10.292 SQL [24136]: pgsql_query() -- 15:59:10.292 SQL [24136]: About to run query: -- 15:59:10.292 SQL [24136]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 15:59:10.293 SQL [24136]: Found rows: 0 -- 15:59:10.293 SQL [24136]: Found rows: 0 -- 15:59:10.293 FLOG_MAX [24136]: insert_db_record() -- 15:59:10.293 SQL [24136]: pgsql_exec() -- 15:59:10.293 SQL [24136]: About to run query: -- 15:59:10.293 SQL [24136]: INSERT INTO members_pages (member_id,page_key,page_mode,title) VALUES ('5','PGE7DC18F3E655439471942722F915090D','DEFAULT','My default page.') -- 15:59:10.294 SQL [24136]: PQcmdTuples: 1 -- 15:59:10.294 SQL [24136]: Affected rows: 1 -- 15:59:10.294 FLOG_MAX [24136]: SELECT currval('members_pages_id_seq') -- 15:59:10.294 SQL [24136]: pgsql_query() -- 15:59:10.294 SQL [24136]: About to run query: -- 15:59:10.294 SQL [24136]: SELECT currval('members_pages_id_seq') -- 15:59:10.295 SQL [24136]: Found rows: 1 -- 15:59:10.295 INFO [24136]: /CreateDefaultPage() -- 15:59:10.295 INFO [24136]: /LoginCoreGradeAccount() -- 15:59:10.295 INFO [24136]: RET: added=2020-02-05 06:47:23.982154 -- 15:59:10.295 INFO [24136]: RET: email=ameye+11@chiefsoft.com -- 15:59:10.295 INFO [24136]: RET: firstname=Olu -- 15:59:10.295 INFO [24136]: RET: id=5 -- 15:59:10.295 INFO [24136]: RET: last_login= -- 15:59:10.295 INFO [24136]: RET: lastname=Amey -- 15:59:10.295 INFO [24136]: RET: loc=192.168.1.13 -- 15:59:10.295 INFO [24136]: RET: member_id=5 -- 15:59:10.295 INFO [24136]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 15:59:10.295 INFO [24136]: RET: phone= -- 15:59:10.295 INFO [24136]: RET: pid= -- 15:59:10.295 INFO [24136]: RET: result=YES I GET TO BACK END -- 15:59:10.295 INFO [24136]: RET: sessionid=E0AAB9D65ED9C8E9C8F56057CA43D618 -- 15:59:10.295 INFO [24136]: RET: status=1 -- 15:59:10.295 INFO [24136]: RET: stauts=OK -- 15:59:10.295 INFO [24136]: RET: username=ameye+11@chiefsoft.com -- 15:59:10.295 INFO [24136]: RET: verified= -- 15:59:10.296 INFO [24136]: COREGRADE is stopping... -- 15:59:10.296 DEBUG [24136]: Closing database connection -- 15:59:10.297 SQL [24136]: pgsql_close() -- 18:37:52.427 INFO [24139]: COREGRADE is starting... -- 18:37:52.428 INFO [24139]: Version from config: 1.0 -- 18:37:52.428 DEBUG [24139]: Connecting to database... -- 18:37:52.428 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:37:52.428 SQL [24139]: pgsql_db_connect() -- 18:37:52.433 DEBUG [24139]: Database connection successful -- 18:37:52.433 INFO [24139]: _SERVER found -- 18:37:52.433 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 18:37:52.433 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 18:37:52.433 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896 -- 18:37:52.433 INFO [24139]: QUERY_STRING = /member/index -- 18:37:52.433 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:37:52.433 INFO [24139]: COREGRADE is stopping... -- 18:37:52.433 DEBUG [24139]: Closing database connection -- 18:37:52.433 SQL [24139]: pgsql_close() -- 18:38:29.505 INFO [24137]: COREGRADE is starting... -- 18:38:29.505 INFO [24137]: Version from config: 1.0 -- 18:38:29.505 DEBUG [24137]: Connecting to database... -- 18:38:29.505 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:38:29.505 SQL [24137]: pgsql_db_connect() -- 18:38:29.509 DEBUG [24137]: Database connection successful -- 18:38:29.509 INFO [24137]: _SERVER found -- 18:38:29.509 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 18:38:29.509 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 18:38:29.509 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896 -- 18:38:29.509 INFO [24137]: QUERY_STRING = /member/index -- 18:38:29.509 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:38:29.572 INFO [24137]: COREGRADE is stopping... -- 18:38:29.573 DEBUG [24137]: Closing database connection -- 18:38:29.573 SQL [24137]: pgsql_close() -- 18:38:29.590 INFO [24137]: COREGRADE is starting... -- 18:38:29.591 INFO [24137]: Version from config: 1.0 -- 18:38:29.591 DEBUG [24137]: Connecting to database... -- 18:38:29.591 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:38:29.591 SQL [24137]: pgsql_db_connect() -- 18:38:29.595 DEBUG [24137]: Database connection successful -- 18:38:29.595 INFO [24137]: _SERVER found -- 18:38:29.595 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 18:38:29.595 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 18:38:29.595 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=erqnvhie4n0d838vjbi4c0dklpp62fk1 -- 18:38:29.595 INFO [24137]: QUERY_STRING = -- 18:38:29.595 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:38:29.632 INFO [24137]: COREGRADE is stopping... -- 18:38:29.633 DEBUG [24137]: Closing database connection -- 18:38:29.633 SQL [24137]: pgsql_close() -- 18:38:29.811 INFO [24137]: COREGRADE is starting... -- 18:38:29.812 INFO [24137]: Version from config: 1.0 -- 18:38:29.812 DEBUG [24137]: Connecting to database... -- 18:38:29.812 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:38:29.812 SQL [24137]: pgsql_db_connect() -- 18:38:29.822 INFO [24140]: COREGRADE is starting... -- 18:38:29.823 INFO [24140]: Version from config: 1.0 -- 18:38:29.823 DEBUG [24140]: Connecting to database... -- 18:38:29.823 DEBUG [24140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:38:29.823 SQL [24140]: pgsql_db_connect() -- 18:38:29.816 DEBUG [24137]: Database connection successful -- 18:38:29.816 INFO [24137]: _SERVER found -- 18:38:29.816 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 18:38:29.816 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 18:38:29.816 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=erqnvhie4n0d838vjbi4c0dklpp62fk1 -- 18:38:29.816 INFO [24137]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:38:29.816 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:38:29.827 INFO [24137]: COREGRADE is stopping... -- 18:38:29.827 DEBUG [24137]: Closing database connection -- 18:38:29.827 SQL [24137]: pgsql_close() -- 18:38:29.827 DEBUG [24140]: Database connection successful -- 18:38:29.827 INFO [24140]: _SERVER found -- 18:38:29.827 INFO [24140]: REMOTE_ADDR = 192.168.1.13 -- 18:38:29.827 INFO [24140]: SERVER_NAME = oameye.works.coregrade.com -- 18:38:29.827 INFO [24140]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=erqnvhie4n0d838vjbi4c0dklpp62fk1 -- 18:38:29.827 INFO [24140]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:38:29.827 INFO [24140]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:38:29.840 INFO [24140]: COREGRADE is stopping... -- 18:38:29.840 DEBUG [24140]: Closing database connection -- 18:38:29.840 SQL [24140]: pgsql_close() -- 18:39:19.113 INFO [24138]: COREGRADE is starting... -- 18:39:19.113 INFO [24138]: Version from config: 1.0 -- 18:39:19.113 DEBUG [24138]: Connecting to database... -- 18:39:19.113 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:19.113 SQL [24138]: pgsql_db_connect() -- 18:39:19.118 DEBUG [24138]: Database connection successful -- 18:39:19.118 INFO [24138]: _SERVER found -- 18:39:19.118 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 18:39:19.118 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:19.118 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=erqnvhie4n0d838vjbi4c0dklpp62fk1; _gat_gtag_UA_54829827_2=1 -- 18:39:19.118 INFO [24138]: QUERY_STRING = -- 18:39:19.118 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:39:19.160 INFO [24138]: COREGRADE is stopping... -- 18:39:19.160 DEBUG [24138]: Closing database connection -- 18:39:19.160 SQL [24138]: pgsql_close() -- 18:39:19.287 INFO [24138]: COREGRADE is starting... -- 18:39:19.288 INFO [24138]: Version from config: 1.0 -- 18:39:19.288 DEBUG [24138]: Connecting to database... -- 18:39:19.288 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:19.288 SQL [24138]: pgsql_db_connect() -- 18:39:19.295 INFO [24184]: COREGRADE is starting... -- 18:39:19.296 INFO [24184]: Version from config: 1.0 -- 18:39:19.296 DEBUG [24184]: Connecting to database... -- 18:39:19.296 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:19.296 SQL [24184]: pgsql_db_connect() -- 18:39:19.292 DEBUG [24138]: Database connection successful -- 18:39:19.292 INFO [24138]: _SERVER found -- 18:39:19.292 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 18:39:19.292 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:19.292 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=erqnvhie4n0d838vjbi4c0dklpp62fk1; _gat_gtag_UA_54829827_2=1 -- 18:39:19.292 INFO [24138]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:39:19.292 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:39:19.303 INFO [24138]: COREGRADE is stopping... -- 18:39:19.303 DEBUG [24138]: Closing database connection -- 18:39:19.303 SQL [24138]: pgsql_close() -- 18:39:19.300 DEBUG [24184]: Database connection successful -- 18:39:19.300 INFO [24184]: _SERVER found -- 18:39:19.300 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 18:39:19.300 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:19.300 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=erqnvhie4n0d838vjbi4c0dklpp62fk1; _gat_gtag_UA_54829827_2=1 -- 18:39:19.300 INFO [24184]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:39:19.300 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:39:19.313 INFO [24184]: COREGRADE is stopping... -- 18:39:19.313 DEBUG [24184]: Closing database connection -- 18:39:19.313 SQL [24184]: pgsql_close() -- 18:39:32.070 INFO [24136]: COREGRADE is starting... -- 18:39:32.070 INFO [24136]: Version from config: 1.0 -- 18:39:32.070 DEBUG [24136]: Connecting to database... -- 18:39:32.070 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:32.070 SQL [24136]: pgsql_db_connect() -- 18:39:32.074 DEBUG [24136]: Database connection successful -- 18:39:32.074 INFO [24136]: _SERVER found -- 18:39:32.074 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 18:39:32.074 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:32.074 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=erqnvhie4n0d838vjbi4c0dklpp62fk1 -- 18:39:32.074 INFO [24136]: QUERY_STRING = /auth -- 18:39:32.074 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:39:32.107 INFO [24136]: COREGRADE is stopping... -- 18:39:32.107 DEBUG [24136]: Closing database connection -- 18:39:32.107 SQL [24136]: pgsql_close() -- 18:39:32.252 INFO [24136]: COREGRADE is starting... -- 18:39:32.253 INFO [24136]: Version from config: 1.0 -- 18:39:32.253 DEBUG [24136]: Connecting to database... -- 18:39:32.253 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:32.253 SQL [24136]: pgsql_db_connect() -- 18:39:32.257 DEBUG [24136]: Database connection successful -- 18:39:32.257 INFO [24136]: _SERVER found -- 18:39:32.257 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 18:39:32.257 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:32.257 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=erqnvhie4n0d838vjbi4c0dklpp62fk1 -- 18:39:32.257 INFO [24136]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:39:32.257 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:39:32.268 INFO [24136]: COREGRADE is stopping... -- 18:39:32.268 DEBUG [24136]: Closing database connection -- 18:39:32.268 SQL [24136]: pgsql_close() -- 18:39:32.272 INFO [24139]: COREGRADE is starting... -- 18:39:32.272 INFO [24139]: Version from config: 1.0 -- 18:39:32.272 DEBUG [24139]: Connecting to database... -- 18:39:32.272 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:32.272 SQL [24139]: pgsql_db_connect() -- 18:39:32.276 DEBUG [24139]: Database connection successful -- 18:39:32.276 INFO [24139]: _SERVER found -- 18:39:32.276 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 18:39:32.276 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:32.276 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=erqnvhie4n0d838vjbi4c0dklpp62fk1 -- 18:39:32.276 INFO [24139]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:39:32.276 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:39:32.290 INFO [24139]: COREGRADE is stopping... -- 18:39:32.290 DEBUG [24139]: Closing database connection -- 18:39:32.290 SQL [24139]: pgsql_close() -- 18:39:41.835 INFO [24847]: COREGRADE is starting... -- 18:39:41.836 INFO [24847]: Version from config: 1.0 -- 18:39:41.836 DEBUG [24847]: Connecting to database... -- 18:39:41.836 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:41.836 SQL [24847]: pgsql_db_connect() -- 18:39:41.877 INFO [24847]: COREGRADE is starting... -- 18:39:41.877 INFO [24847]: Version from config: 1.0 -- 18:39:41.877 DEBUG [24847]: Connecting to database... -- 18:39:41.877 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:41.877 SQL [24847]: pgsql_db_connect() -- 18:39:41.881 DEBUG [24847]: Database connection successful -- 18:39:41.881 INFO [24847]: _SERVER found -- 18:39:41.881 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 18:39:41.881 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:41.881 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=erqnvhie4n0d838vjbi4c0dklpp62fk1 -- 18:39:41.881 INFO [24847]: QUERY_STRING = -- 18:39:41.881 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:39:41.881 INFO [24847]: SystemStatus()09-09-********~************ -- 18:39:41.881 INFO [24847]: long coregrade_api_main(CVars in, CVars &out) -- 18:39:41.881 INFO [24847]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 18:39:41.881 INFO [24847]: account calls -- 18:39:41.881 INFO [24847]: account_calls() -- 18:39:41.881 INFO [24847]: LoginCoreGradeAccount() -- 18:39:41.881 FLOG_MAX [24847]: REQ_STRING(username) -- 18:39:41.881 FLOG_MAX [24847]: REQ_STRING(password) -- 18:39:41.882 FLOG_MAX [24847]: REQ_STRING(sessionid) -- 18:39:41.882 FLOG_MAX [24847]: long load_db_record( CVars &rec, const char * query, ... ) -- 18:39:41.882 SQL [24847]: pgsql_query() -- 18:39:41.882 SQL [24847]: About to run query: -- 18:39:41.882 SQL [24847]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 18:39:41.886 SQL [24847]: Found rows: 1 -- 18:39:41.886 FLOG_MAX [24847]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 18:39:41.886 INFO [24847]: long SessionCheck(long uid, const char *sessionid, int create ) -- 18:39:41.886 SQL [24847]: pgsql_exec() -- 18:39:41.886 SQL [24847]: About to run query: -- 18:39:41.886 SQL [24847]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 18:39:41.887 SQL [24847]: PQcmdTuples: 1 -- 18:39:41.887 SQL [24847]: Affected rows: 1 -- 18:39:41.887 SQL [24847]: pgsql_exec() -- 18:39:41.887 SQL [24847]: About to run query: -- 18:39:41.887 SQL [24847]: DELETE FROM members_session WHERE member_id=5 -- 18:39:41.887 SQL [24847]: PQcmdTuples: 0 -- 18:39:41.887 SQL [24847]: Affected rows: 0 -- 18:39:41.888 SQL [24847]: pgsql_query() -- 18:39:41.888 SQL [24847]: About to run query: -- 18:39:41.888 SQL [24847]: SELECT * FROM members_session WHERE member_id=5 AND session<>'54108F161B22759FCFFAFB8C2AC5695B' -- 18:39:41.888 SQL [24847]: Found rows: 0 -- 18:39:41.888 SQL [24847]: Found rows: 0 -- 18:39:41.888 FLOG_MAX [24847]: long load_db_record( CVars &rec, const char * query, ... ) -- 18:39:41.888 SQL [24847]: pgsql_query() -- 18:39:41.888 SQL [24847]: About to run query: -- 18:39:41.888 SQL [24847]: SELECT * FROM members_session WHERE member_id=5 AND session='54108F161B22759FCFFAFB8C2AC5695B' -- 18:39:41.889 SQL [24847]: Found rows: 0 -- 18:39:41.889 SQL [24847]: Found rows: 0 -- 18:39:41.889 FLOG_MAX [24847]: insert_db_record() -- 18:39:41.889 SQL [24847]: pgsql_exec() -- 18:39:41.889 SQL [24847]: About to run query: -- 18:39:41.889 SQL [24847]: INSERT INTO members_session (member_id,session) VALUES ('5','54108F161B22759FCFFAFB8C2AC5695B') -- 18:39:41.890 SQL [24847]: PQcmdTuples: 1 -- 18:39:41.890 SQL [24847]: Affected rows: 1 -- 18:39:41.890 FLOG_MAX [24847]: SELECT currval('members_session_id_seq') -- 18:39:41.890 SQL [24847]: pgsql_query() -- 18:39:41.890 SQL [24847]: About to run query: -- 18:39:41.890 SQL [24847]: SELECT currval('members_session_id_seq') -- 18:39:41.891 SQL [24847]: Found rows: 1 -- 18:39:41.891 INFO [24847]: CreateDefaultPage() -- 18:39:41.891 FLOG_MAX [24847]: long load_db_record( CVars &rec, const char * query, ... ) -- 18:39:41.891 SQL [24847]: pgsql_query() -- 18:39:41.891 SQL [24847]: About to run query: -- 18:39:41.891 SQL [24847]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 18:39:41.891 SQL [24847]: Found rows: 1 -- 18:39:41.891 FLOG_MAX [24847]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 18:39:41.891 SQL [24847]: pgsql_query() -- 18:39:41.891 SQL [24847]: About to run query: -- 18:39:41.891 SQL [24847]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 18:39:41.892 SQL [24847]: Found rows: 1 -- 18:39:41.892 INFO [24847]: /CreateDefaultPage() -- 18:39:41.892 INFO [24847]: /LoginCoreGradeAccount() -- 18:39:41.892 INFO [24847]: RET: added=2020-02-05 06:47:23.982154 -- 18:39:41.892 INFO [24847]: RET: email=ameye+11@chiefsoft.com -- 18:39:41.892 INFO [24847]: RET: firstname=Olu -- 18:39:41.892 INFO [24847]: RET: id=5 -- 18:39:41.892 INFO [24847]: RET: last_login= -- 18:39:41.892 INFO [24847]: RET: lastname=Amey -- 18:39:41.892 INFO [24847]: RET: loc=192.168.1.13 -- 18:39:41.892 INFO [24847]: RET: member_id=5 -- 18:39:41.892 INFO [24847]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 18:39:41.892 INFO [24847]: RET: phone= -- 18:39:41.892 INFO [24847]: RET: pid= -- 18:39:41.892 INFO [24847]: RET: result=YES I GET TO BACK END -- 18:39:41.892 INFO [24847]: RET: sessionid=54108F161B22759FCFFAFB8C2AC5695B -- 18:39:41.892 INFO [24847]: RET: status=1 -- 18:39:41.892 INFO [24847]: RET: stauts=OK -- 18:39:41.892 INFO [24847]: RET: username=ameye+11@chiefsoft.com -- 18:39:41.892 INFO [24847]: RET: verified= -- 18:39:41.893 INFO [24847]: COREGRADE is stopping... -- 18:39:41.893 DEBUG [24847]: Closing database connection -- 18:39:41.894 SQL [24847]: pgsql_close() -- 18:39:41.840 DEBUG [24847]: Database connection successful -- 18:39:41.840 INFO [24847]: _SERVER found -- 18:39:41.840 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 18:39:41.840 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:41.840 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=erqnvhie4n0d838vjbi4c0dklpp62fk1 -- 18:39:41.840 INFO [24847]: QUERY_STRING = /auth -- 18:39:41.840 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:39:41.894 INFO [24847]: COREGRADE is stopping... -- 18:39:41.894 DEBUG [24847]: Closing database connection -- 18:39:41.894 SQL [24847]: pgsql_close() -- 18:39:41.914 INFO [24847]: COREGRADE is starting... -- 18:39:41.915 INFO [24847]: Version from config: 1.0 -- 18:39:41.915 DEBUG [24847]: Connecting to database... -- 18:39:41.915 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:41.915 SQL [24847]: pgsql_db_connect() -- 18:39:41.918 DEBUG [24847]: Database connection successful -- 18:39:41.918 INFO [24847]: _SERVER found -- 18:39:41.918 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 18:39:41.918 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:41.918 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=erqnvhie4n0d838vjbi4c0dklpp62fk1 -- 18:39:41.918 INFO [24847]: QUERY_STRING = /member/index -- 18:39:41.918 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:39:41.957 INFO [24847]: COREGRADE is stopping... -- 18:39:41.957 DEBUG [24847]: Closing database connection -- 18:39:41.957 SQL [24847]: pgsql_close() -- 18:39:42.331 INFO [24847]: COREGRADE is starting... -- 18:39:42.331 INFO [24847]: Version from config: 1.0 -- 18:39:42.331 DEBUG [24847]: Connecting to database... -- 18:39:42.331 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:42.331 SQL [24847]: pgsql_db_connect() -- 18:39:42.337 INFO [24137]: COREGRADE is starting... -- 18:39:42.337 INFO [24137]: Version from config: 1.0 -- 18:39:42.337 DEBUG [24137]: Connecting to database... -- 18:39:42.337 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:42.337 SQL [24137]: pgsql_db_connect() -- 18:39:42.335 DEBUG [24847]: Database connection successful -- 18:39:42.335 INFO [24847]: _SERVER found -- 18:39:42.335 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 18:39:42.335 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:42.335 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=erqnvhie4n0d838vjbi4c0dklpp62fk1 -- 18:39:42.335 INFO [24847]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:39:42.335 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:39:42.347 INFO [24847]: COREGRADE is stopping... -- 18:39:42.348 DEBUG [24847]: Closing database connection -- 18:39:42.348 SQL [24847]: pgsql_close() -- 18:39:42.341 DEBUG [24137]: Database connection successful -- 18:39:42.341 INFO [24137]: _SERVER found -- 18:39:42.341 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 18:39:42.341 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:42.341 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=erqnvhie4n0d838vjbi4c0dklpp62fk1 -- 18:39:42.341 INFO [24137]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:39:42.341 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:39:42.353 INFO [24137]: COREGRADE is stopping... -- 18:39:42.353 DEBUG [24137]: Closing database connection -- 18:39:42.353 SQL [24137]: pgsql_close() -- 18:45:06.236 INFO [24140]: COREGRADE is starting... -- 18:45:06.236 INFO [24140]: Version from config: 1.0 -- 18:45:06.236 DEBUG [24140]: Connecting to database... -- 18:45:06.236 DEBUG [24140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:45:06.236 SQL [24140]: pgsql_db_connect() -- 18:45:06.240 DEBUG [24140]: Database connection successful -- 18:45:06.240 INFO [24140]: _SERVER found -- 18:45:06.240 INFO [24140]: REMOTE_ADDR = 192.168.1.13 -- 18:45:06.240 INFO [24140]: SERVER_NAME = oameye.works.coregrade.com -- 18:45:06.240 INFO [24140]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=erqnvhie4n0d838vjbi4c0dklpp62fk1 -- 18:45:06.240 INFO [24140]: QUERY_STRING = /member/index -- 18:45:06.240 INFO [24140]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:45:06.280 INFO [24140]: COREGRADE is stopping... -- 18:45:06.280 DEBUG [24140]: Closing database connection -- 18:45:06.280 SQL [24140]: pgsql_close() -- 18:45:06.434 INFO [24140]: COREGRADE is starting... -- 18:45:06.435 INFO [24140]: Version from config: 1.0 -- 18:45:06.435 DEBUG [24140]: Connecting to database... -- 18:45:06.435 DEBUG [24140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:45:06.435 SQL [24140]: pgsql_db_connect() -- 18:45:06.439 DEBUG [24140]: Database connection successful -- 18:45:06.439 INFO [24140]: _SERVER found -- 18:45:06.439 INFO [24140]: REMOTE_ADDR = 192.168.1.13 -- 18:45:06.439 INFO [24140]: SERVER_NAME = oameye.works.coregrade.com -- 18:45:06.439 INFO [24140]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=2vohd9lb8utchti35853cum4bbgllokf -- 18:45:06.439 INFO [24140]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:45:06.439 INFO [24140]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:45:06.450 INFO [24140]: COREGRADE is stopping... -- 18:45:06.450 DEBUG [24140]: Closing database connection -- 18:45:06.450 SQL [24140]: pgsql_close() -- 18:45:06.463 INFO [24140]: COREGRADE is starting... -- 18:45:06.463 INFO [24140]: Version from config: 1.0 -- 18:45:06.463 DEBUG [24140]: Connecting to database... -- 18:45:06.464 DEBUG [24140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:45:06.464 SQL [24140]: pgsql_db_connect() -- 18:45:06.467 DEBUG [24140]: Database connection successful -- 18:45:06.467 INFO [24140]: _SERVER found -- 18:45:06.467 INFO [24140]: REMOTE_ADDR = 192.168.1.13 -- 18:45:06.467 INFO [24140]: SERVER_NAME = oameye.works.coregrade.com -- 18:45:06.467 INFO [24140]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=2vohd9lb8utchti35853cum4bbgllokf -- 18:45:06.467 INFO [24140]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:45:06.467 INFO [24140]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:45:06.478 INFO [24140]: COREGRADE is stopping... -- 18:45:06.478 DEBUG [24140]: Closing database connection -- 18:45:06.478 SQL [24140]: pgsql_close() -- 18:46:38.626 INFO [24138]: COREGRADE is starting... -- 18:46:38.627 INFO [24138]: Version from config: 1.0 -- 18:46:38.627 DEBUG [24138]: Connecting to database... -- 18:46:38.627 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:46:38.627 SQL [24138]: pgsql_db_connect() -- 18:46:38.631 DEBUG [24138]: Database connection successful -- 18:46:38.631 INFO [24138]: _SERVER found -- 18:46:38.631 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 18:46:38.631 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 18:46:38.631 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=2vohd9lb8utchti35853cum4bbgllokf -- 18:46:38.631 INFO [24138]: QUERY_STRING = /member/index -- 18:46:38.631 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:46:38.666 INFO [24138]: COREGRADE is stopping... -- 18:46:38.666 DEBUG [24138]: Closing database connection -- 18:46:38.666 SQL [24138]: pgsql_close() -- 18:46:38.851 INFO [24138]: COREGRADE is starting... -- 18:46:38.852 INFO [24138]: Version from config: 1.0 -- 18:46:38.852 DEBUG [24138]: Connecting to database... -- 18:46:38.852 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:46:38.852 SQL [24138]: pgsql_db_connect() -- 18:46:38.856 DEBUG [24138]: Database connection successful -- 18:46:38.856 INFO [24138]: _SERVER found -- 18:46:38.856 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 18:46:38.856 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 18:46:38.856 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=2vohd9lb8utchti35853cum4bbgllokf -- 18:46:38.856 INFO [24138]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:46:38.856 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:46:38.867 INFO [24138]: COREGRADE is stopping... -- 18:46:38.867 DEBUG [24138]: Closing database connection -- 18:46:38.867 SQL [24138]: pgsql_close() -- 18:46:38.879 INFO [24138]: COREGRADE is starting... -- 18:46:38.879 INFO [24138]: Version from config: 1.0 -- 18:46:38.879 DEBUG [24138]: Connecting to database... -- 18:46:38.879 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:46:38.879 SQL [24138]: pgsql_db_connect() -- 18:46:38.883 DEBUG [24138]: Database connection successful -- 18:46:38.883 INFO [24138]: _SERVER found -- 18:46:38.883 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 18:46:38.883 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 18:46:38.883 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=2vohd9lb8utchti35853cum4bbgllokf -- 18:46:38.883 INFO [24138]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:46:38.883 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:46:38.894 INFO [24138]: COREGRADE is stopping... -- 18:46:38.894 DEBUG [24138]: Closing database connection -- 18:46:38.894 SQL [24138]: pgsql_close() -- 18:47:46.176 INFO [24184]: COREGRADE is starting... -- 18:47:46.176 INFO [24184]: Version from config: 1.0 -- 18:47:46.176 DEBUG [24184]: Connecting to database... -- 18:47:46.176 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:46.176 SQL [24184]: pgsql_db_connect() -- 18:47:46.180 DEBUG [24184]: Database connection successful -- 18:47:46.180 INFO [24184]: _SERVER found -- 18:47:46.180 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 18:47:46.180 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 18:47:46.180 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=2vohd9lb8utchti35853cum4bbgllokf -- 18:47:46.180 INFO [24184]: QUERY_STRING = /member/index -- 18:47:46.180 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:47:46.219 INFO [24184]: COREGRADE is stopping... -- 18:47:46.219 DEBUG [24184]: Closing database connection -- 18:47:46.219 SQL [24184]: pgsql_close() -- 18:47:46.351 INFO [24184]: COREGRADE is starting... -- 18:47:46.351 INFO [24184]: Version from config: 1.0 -- 18:47:46.351 DEBUG [24184]: Connecting to database... -- 18:47:46.351 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:46.352 SQL [24184]: pgsql_db_connect() -- 18:47:46.356 DEBUG [24184]: Database connection successful -- 18:47:46.356 INFO [24184]: _SERVER found -- 18:47:46.356 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 18:47:46.356 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 18:47:46.356 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=2vohd9lb8utchti35853cum4bbgllokf -- 18:47:46.356 INFO [24184]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:47:46.356 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:47:46.367 INFO [24184]: COREGRADE is stopping... -- 18:47:46.367 DEBUG [24184]: Closing database connection -- 18:47:46.367 SQL [24184]: pgsql_close() -- 18:47:46.373 INFO [24184]: COREGRADE is starting... -- 18:47:46.373 INFO [24184]: Version from config: 1.0 -- 18:47:46.373 DEBUG [24184]: Connecting to database... -- 18:47:46.373 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:46.373 SQL [24184]: pgsql_db_connect() -- 18:47:46.377 DEBUG [24184]: Database connection successful -- 18:47:46.377 INFO [24184]: _SERVER found -- 18:47:46.377 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 18:47:46.377 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 18:47:46.377 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=2vohd9lb8utchti35853cum4bbgllokf -- 18:47:46.377 INFO [24184]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:47:46.377 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:47:46.388 INFO [24184]: COREGRADE is stopping... -- 18:47:46.388 DEBUG [24184]: Closing database connection -- 18:47:46.388 SQL [24184]: pgsql_close() -- 18:48:54.787 INFO [24136]: COREGRADE is starting... -- 18:48:54.787 INFO [24136]: Version from config: 1.0 -- 18:48:54.787 DEBUG [24136]: Connecting to database... -- 18:48:54.787 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:54.787 SQL [24136]: pgsql_db_connect() -- 18:48:54.791 DEBUG [24136]: Database connection successful -- 18:48:54.791 INFO [24136]: _SERVER found -- 18:48:54.791 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 18:48:54.791 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 18:48:54.791 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=2vohd9lb8utchti35853cum4bbgllokf -- 18:48:54.791 INFO [24136]: QUERY_STRING = /member/index -- 18:48:54.791 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:48:54.828 INFO [24136]: COREGRADE is stopping... -- 18:48:54.828 DEBUG [24136]: Closing database connection -- 18:48:54.828 SQL [24136]: pgsql_close() -- 18:48:54.970 INFO [24136]: COREGRADE is starting... -- 18:48:54.971 INFO [24136]: Version from config: 1.0 -- 18:48:54.971 DEBUG [24136]: Connecting to database... -- 18:48:54.971 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:54.971 SQL [24136]: pgsql_db_connect() -- 18:48:54.975 DEBUG [24136]: Database connection successful -- 18:48:54.975 INFO [24136]: _SERVER found -- 18:48:54.975 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 18:48:54.975 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 18:48:54.975 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=2vohd9lb8utchti35853cum4bbgllokf -- 18:48:54.975 INFO [24136]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:48:54.975 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:48:54.986 INFO [24136]: COREGRADE is stopping... -- 18:48:54.986 DEBUG [24136]: Closing database connection -- 18:48:54.986 SQL [24136]: pgsql_close() -- 18:48:54.996 INFO [24139]: COREGRADE is starting... -- 18:48:54.997 INFO [24139]: Version from config: 1.0 -- 18:48:54.997 DEBUG [24139]: Connecting to database... -- 18:48:54.997 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:54.997 SQL [24139]: pgsql_db_connect() -- 18:48:55.000 DEBUG [24139]: Database connection successful -- 18:48:55.000 INFO [24139]: _SERVER found -- 18:48:55.000 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 18:48:55.000 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 18:48:55.000 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=2vohd9lb8utchti35853cum4bbgllokf -- 18:48:55.000 INFO [24139]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:48:55.000 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:48:55.012 INFO [24139]: COREGRADE is stopping... -- 18:48:55.012 DEBUG [24139]: Closing database connection -- 18:48:55.012 SQL [24139]: pgsql_close() -- 18:49:41.069 INFO [24847]: COREGRADE is starting... -- 18:49:41.070 INFO [24847]: Version from config: 1.0 -- 18:49:41.070 DEBUG [24847]: Connecting to database... -- 18:49:41.070 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:49:41.070 SQL [24847]: pgsql_db_connect() -- 18:49:41.074 DEBUG [24847]: Database connection successful -- 18:49:41.074 INFO [24847]: _SERVER found -- 18:49:41.074 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 18:49:41.074 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 18:49:41.074 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=2vohd9lb8utchti35853cum4bbgllokf -- 18:49:41.074 INFO [24847]: QUERY_STRING = screen=member/app-todo -- 18:49:41.074 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:49:41.087 INFO [24847]: COREGRADE is stopping... -- 18:49:41.087 DEBUG [24847]: Closing database connection -- 18:49:41.087 SQL [24847]: pgsql_close() -- 18:49:42.779 INFO [24847]: COREGRADE is starting... -- 18:49:42.779 INFO [24847]: Version from config: 1.0 -- 18:49:42.779 DEBUG [24847]: Connecting to database... -- 18:49:42.779 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:49:42.779 SQL [24847]: pgsql_db_connect() -- 18:49:42.783 DEBUG [24847]: Database connection successful -- 18:49:42.783 INFO [24847]: _SERVER found -- 18:49:42.783 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 18:49:42.783 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 18:49:42.783 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=2vohd9lb8utchti35853cum4bbgllokf -- 18:49:42.783 INFO [24847]: QUERY_STRING = /member/index -- 18:49:42.783 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:49:42.822 INFO [24847]: COREGRADE is stopping... -- 18:49:42.822 DEBUG [24847]: Closing database connection -- 18:49:42.822 SQL [24847]: pgsql_close() -- 18:49:43.167 INFO [24847]: COREGRADE is starting... -- 18:49:43.168 INFO [24847]: Version from config: 1.0 -- 18:49:43.168 DEBUG [24847]: Connecting to database... -- 18:49:43.168 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:49:43.168 SQL [24847]: pgsql_db_connect() -- 18:49:43.172 DEBUG [24847]: Database connection successful -- 18:49:43.172 INFO [24847]: _SERVER found -- 18:49:43.172 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 18:49:43.172 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 18:49:43.172 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=2vohd9lb8utchti35853cum4bbgllokf -- 18:49:43.172 INFO [24847]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:49:43.172 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:49:43.184 INFO [24847]: COREGRADE is stopping... -- 18:49:43.184 DEBUG [24847]: Closing database connection -- 18:49:43.184 SQL [24847]: pgsql_close() -- 18:50:26.974 INFO [24137]: COREGRADE is starting... -- 18:50:26.974 INFO [24137]: Version from config: 1.0 -- 18:50:26.974 DEBUG [24137]: Connecting to database... -- 18:50:26.974 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:50:26.974 SQL [24137]: pgsql_db_connect() -- 18:50:26.978 DEBUG [24137]: Database connection successful -- 18:50:26.978 INFO [24137]: _SERVER found -- 18:50:26.978 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 18:50:26.978 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 18:50:26.978 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=2vohd9lb8utchti35853cum4bbgllokf -- 18:50:26.978 INFO [24137]: QUERY_STRING = /member/index -- 18:50:26.978 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:50:27.015 INFO [24137]: COREGRADE is stopping... -- 18:50:27.015 DEBUG [24137]: Closing database connection -- 18:50:27.015 SQL [24137]: pgsql_close() -- 18:50:27.169 INFO [24137]: COREGRADE is starting... -- 18:50:27.170 INFO [24137]: Version from config: 1.0 -- 18:50:27.170 DEBUG [24137]: Connecting to database... -- 18:50:27.170 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:50:27.170 SQL [24137]: pgsql_db_connect() -- 18:50:27.174 DEBUG [24137]: Database connection successful -- 18:50:27.174 INFO [24137]: _SERVER found -- 18:50:27.174 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 18:50:27.174 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 18:50:27.174 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=q0vah8hhspup3vtv3elg2fopk6ofkbig -- 18:50:27.174 INFO [24137]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:50:27.174 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:50:27.185 INFO [24137]: COREGRADE is stopping... -- 18:50:27.185 DEBUG [24137]: Closing database connection -- 18:50:27.185 SQL [24137]: pgsql_close() -- 18:50:27.196 INFO [24140]: COREGRADE is starting... -- 18:50:27.197 INFO [24140]: Version from config: 1.0 -- 18:50:27.197 DEBUG [24140]: Connecting to database... -- 18:50:27.197 DEBUG [24140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:50:27.197 SQL [24140]: pgsql_db_connect() -- 18:50:27.200 DEBUG [24140]: Database connection successful -- 18:50:27.200 INFO [24140]: _SERVER found -- 18:50:27.200 INFO [24140]: REMOTE_ADDR = 192.168.1.13 -- 18:50:27.200 INFO [24140]: SERVER_NAME = oameye.works.coregrade.com -- 18:50:27.200 INFO [24140]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=q0vah8hhspup3vtv3elg2fopk6ofkbig -- 18:50:27.200 INFO [24140]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:50:27.200 INFO [24140]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:50:27.212 INFO [24140]: COREGRADE is stopping... -- 18:50:27.212 DEBUG [24140]: Closing database connection -- 18:50:27.212 SQL [24140]: pgsql_close() -- 18:51:21.896 INFO [24138]: COREGRADE is starting... -- 18:51:21.896 INFO [24138]: Version from config: 1.0 -- 18:51:21.896 DEBUG [24138]: Connecting to database... -- 18:51:21.896 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:21.896 SQL [24138]: pgsql_db_connect() -- 18:51:21.901 DEBUG [24138]: Database connection successful -- 18:51:21.901 INFO [24138]: _SERVER found -- 18:51:21.901 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 18:51:21.901 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:21.901 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=q0vah8hhspup3vtv3elg2fopk6ofkbig -- 18:51:21.901 INFO [24138]: QUERY_STRING = /member/index -- 18:51:21.901 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:21.936 INFO [24138]: COREGRADE is stopping... -- 18:51:21.936 DEBUG [24138]: Closing database connection -- 18:51:21.936 SQL [24138]: pgsql_close() -- 18:51:22.063 INFO [24138]: COREGRADE is starting... -- 18:51:22.063 INFO [24138]: Version from config: 1.0 -- 18:51:22.063 DEBUG [24138]: Connecting to database... -- 18:51:22.063 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:22.063 SQL [24138]: pgsql_db_connect() -- 18:51:22.067 DEBUG [24138]: Database connection successful -- 18:51:22.067 INFO [24138]: _SERVER found -- 18:51:22.067 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 18:51:22.067 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:22.067 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=q0vah8hhspup3vtv3elg2fopk6ofkbig -- 18:51:22.067 INFO [24138]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:51:22.067 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:22.078 INFO [24138]: COREGRADE is stopping... -- 18:51:22.078 DEBUG [24138]: Closing database connection -- 18:51:22.078 SQL [24138]: pgsql_close() -- 18:51:22.091 INFO [24184]: COREGRADE is starting... -- 18:51:22.091 INFO [24184]: Version from config: 1.0 -- 18:51:22.091 DEBUG [24184]: Connecting to database... -- 18:51:22.092 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:22.092 SQL [24184]: pgsql_db_connect() -- 18:51:22.096 DEBUG [24184]: Database connection successful -- 18:51:22.096 INFO [24184]: _SERVER found -- 18:51:22.096 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 18:51:22.096 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:22.096 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=q0vah8hhspup3vtv3elg2fopk6ofkbig -- 18:51:22.096 INFO [24184]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:51:22.096 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:22.107 INFO [24184]: COREGRADE is stopping... -- 18:51:22.107 DEBUG [24184]: Closing database connection -- 18:51:22.107 SQL [24184]: pgsql_close() -- 18:51:49.655 INFO [24136]: COREGRADE is starting... -- 18:51:49.655 INFO [24136]: Version from config: 1.0 -- 18:51:49.655 DEBUG [24136]: Connecting to database... -- 18:51:49.655 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:49.655 SQL [24136]: pgsql_db_connect() -- 18:51:49.659 DEBUG [24136]: Database connection successful -- 18:51:49.659 INFO [24136]: _SERVER found -- 18:51:49.659 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 18:51:49.659 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:49.659 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=q0vah8hhspup3vtv3elg2fopk6ofkbig -- 18:51:49.659 INFO [24136]: QUERY_STRING = /member/index -- 18:51:49.659 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:49.696 INFO [24136]: COREGRADE is stopping... -- 18:51:49.696 DEBUG [24136]: Closing database connection -- 18:51:49.696 SQL [24136]: pgsql_close() -- 18:51:49.819 INFO [24136]: COREGRADE is starting... -- 18:51:49.820 INFO [24136]: Version from config: 1.0 -- 18:51:49.820 DEBUG [24136]: Connecting to database... -- 18:51:49.820 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:49.820 SQL [24136]: pgsql_db_connect() -- 18:51:49.824 DEBUG [24136]: Database connection successful -- 18:51:49.824 INFO [24136]: _SERVER found -- 18:51:49.824 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 18:51:49.824 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:49.824 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=q0vah8hhspup3vtv3elg2fopk6ofkbig -- 18:51:49.824 INFO [24136]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:51:49.824 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:49.835 INFO [24136]: COREGRADE is stopping... -- 18:51:49.835 DEBUG [24136]: Closing database connection -- 18:51:49.835 SQL [24136]: pgsql_close() -- 18:51:49.845 INFO [24139]: COREGRADE is starting... -- 18:51:49.845 INFO [24139]: Version from config: 1.0 -- 18:51:49.845 DEBUG [24139]: Connecting to database... -- 18:51:49.845 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:49.845 SQL [24139]: pgsql_db_connect() -- 18:51:49.849 DEBUG [24139]: Database connection successful -- 18:51:49.849 INFO [24139]: _SERVER found -- 18:51:49.849 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 18:51:49.849 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:49.849 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=q0vah8hhspup3vtv3elg2fopk6ofkbig -- 18:51:49.849 INFO [24139]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:51:49.849 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:49.860 INFO [24139]: COREGRADE is stopping... -- 18:51:49.860 DEBUG [24139]: Closing database connection -- 18:51:49.860 SQL [24139]: pgsql_close() -- 18:55:49.066 INFO [24847]: COREGRADE is starting... -- 18:55:49.066 INFO [24847]: Version from config: 1.0 -- 18:55:49.066 DEBUG [24847]: Connecting to database... -- 18:55:49.066 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:49.066 SQL [24847]: pgsql_db_connect() -- 18:55:49.071 DEBUG [24847]: Database connection successful -- 18:55:49.071 INFO [24847]: _SERVER found -- 18:55:49.071 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 18:55:49.071 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 18:55:49.071 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=q0vah8hhspup3vtv3elg2fopk6ofkbig -- 18:55:49.071 INFO [24847]: QUERY_STRING = /member/index -- 18:55:49.071 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:55:49.110 INFO [24847]: COREGRADE is stopping... -- 18:55:49.110 DEBUG [24847]: Closing database connection -- 18:55:49.110 SQL [24847]: pgsql_close() -- 18:55:49.269 INFO [24847]: COREGRADE is starting... -- 18:55:49.270 INFO [24847]: Version from config: 1.0 -- 18:55:49.270 DEBUG [24847]: Connecting to database... -- 18:55:49.270 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:49.270 SQL [24847]: pgsql_db_connect() -- 18:55:49.274 DEBUG [24847]: Database connection successful -- 18:55:49.274 INFO [24847]: _SERVER found -- 18:55:49.274 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 18:55:49.274 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 18:55:49.274 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sb4h4u93a2n9m2upbvttg0s22mir94pc -- 18:55:49.274 INFO [24847]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:55:49.274 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:55:49.285 INFO [24847]: COREGRADE is stopping... -- 18:55:49.285 DEBUG [24847]: Closing database connection -- 18:55:49.285 SQL [24847]: pgsql_close() -- 18:55:49.292 INFO [24137]: COREGRADE is starting... -- 18:55:49.292 INFO [24137]: Version from config: 1.0 -- 18:55:49.292 DEBUG [24137]: Connecting to database... -- 18:55:49.292 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:49.292 SQL [24137]: pgsql_db_connect() -- 18:55:49.296 DEBUG [24137]: Database connection successful -- 18:55:49.296 INFO [24137]: _SERVER found -- 18:55:49.296 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 18:55:49.296 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 18:55:49.296 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sb4h4u93a2n9m2upbvttg0s22mir94pc -- 18:55:49.296 INFO [24137]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:55:49.296 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:55:49.308 INFO [24137]: COREGRADE is stopping... -- 18:55:49.308 DEBUG [24137]: Closing database connection -- 18:55:49.308 SQL [24137]: pgsql_close() -- 19:15:49.489 INFO [24140]: COREGRADE is starting... -- 19:15:49.489 INFO [24140]: Version from config: 1.0 -- 19:15:49.489 DEBUG [24140]: Connecting to database... -- 19:15:49.489 DEBUG [24140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:15:49.489 SQL [24140]: pgsql_db_connect() -- 19:15:49.495 DEBUG [24140]: Database connection successful -- 19:15:49.495 INFO [24140]: _SERVER found -- 19:15:49.495 INFO [24140]: REMOTE_ADDR = 192.168.1.13 -- 19:15:49.495 INFO [24140]: SERVER_NAME = oameye.works.coregrade.com -- 19:15:49.495 INFO [24140]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sb4h4u93a2n9m2upbvttg0s22mir94pc -- 19:15:49.495 INFO [24140]: QUERY_STRING = /auth -- 19:15:49.495 INFO [24140]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:15:49.528 INFO [24140]: COREGRADE is stopping... -- 19:15:49.529 DEBUG [24140]: Closing database connection -- 19:15:49.529 SQL [24140]: pgsql_close() -- 19:15:49.667 INFO [24140]: COREGRADE is starting... -- 19:15:49.668 INFO [24140]: Version from config: 1.0 -- 19:15:49.668 DEBUG [24140]: Connecting to database... -- 19:15:49.668 DEBUG [24140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:15:49.668 SQL [24140]: pgsql_db_connect() -- 19:15:49.672 DEBUG [24140]: Database connection successful -- 19:15:49.672 INFO [24140]: _SERVER found -- 19:15:49.672 INFO [24140]: REMOTE_ADDR = 192.168.1.13 -- 19:15:49.672 INFO [24140]: SERVER_NAME = oameye.works.coregrade.com -- 19:15:49.672 INFO [24140]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=gjeicv1fnbgtj07tm27ocucqm60r8lpt -- 19:15:49.672 INFO [24140]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 19:15:49.672 INFO [24140]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:15:49.683 INFO [24140]: COREGRADE is stopping... -- 19:15:49.683 DEBUG [24140]: Closing database connection -- 19:15:49.683 SQL [24140]: pgsql_close() -- 19:15:49.691 INFO [24140]: COREGRADE is starting... -- 19:15:49.692 INFO [24140]: Version from config: 1.0 -- 19:15:49.692 DEBUG [24140]: Connecting to database... -- 19:15:49.692 DEBUG [24140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:15:49.692 SQL [24140]: pgsql_db_connect() -- 19:15:49.696 DEBUG [24140]: Database connection successful -- 19:15:49.696 INFO [24140]: _SERVER found -- 19:15:49.696 INFO [24140]: REMOTE_ADDR = 192.168.1.13 -- 19:15:49.696 INFO [24140]: SERVER_NAME = oameye.works.coregrade.com -- 19:15:49.696 INFO [24140]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=gjeicv1fnbgtj07tm27ocucqm60r8lpt -- 19:15:49.696 INFO [24140]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:15:49.696 INFO [24140]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:15:49.706 INFO [24140]: COREGRADE is stopping... -- 19:15:49.707 DEBUG [24140]: Closing database connection -- 19:15:49.707 SQL [24140]: pgsql_close() -- 23:24:22.096 INFO [24138]: COREGRADE is starting... -- 23:24:22.099 INFO [24138]: Version from config: 1.0 -- 23:24:22.099 DEBUG [24138]: Connecting to database... -- 23:24:22.099 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:24:22.099 SQL [24138]: pgsql_db_connect() -- 23:24:22.141 INFO [24138]: COREGRADE is starting... -- 23:24:22.141 INFO [24138]: Version from config: 1.0 -- 23:24:22.141 DEBUG [24138]: Connecting to database... -- 23:24:22.141 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:24:22.141 SQL [24138]: pgsql_db_connect() -- 23:24:22.145 DEBUG [24138]: Database connection successful -- 23:24:22.145 INFO [24138]: _SERVER found -- 23:24:22.145 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 23:24:22.145 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 23:24:22.145 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1825923780.1580907319 -- 23:24:22.145 INFO [24138]: QUERY_STRING = -- 23:24:22.145 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:24:22.145 INFO [24138]: SystemStatus()09-09-********~************ -- 23:24:22.145 INFO [24138]: long coregrade_api_main(CVars in, CVars &out) -- 23:24:22.145 INFO [24138]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 23:24:22.145 INFO [24138]: account calls -- 23:24:22.145 INFO [24138]: account_calls() -- 23:24:22.145 INFO [24138]: LoginCoreGradeAccount() -- 23:24:22.145 FLOG_MAX [24138]: REQ_STRING(username) -- 23:24:22.146 FLOG_MAX [24138]: REQ_STRING(password) -- 23:24:22.146 FLOG_MAX [24138]: REQ_STRING(sessionid) -- 23:24:22.146 FLOG_MAX [24138]: long load_db_record( CVars &rec, const char * query, ... ) -- 23:24:22.146 SQL [24138]: pgsql_query() -- 23:24:22.146 SQL [24138]: About to run query: -- 23:24:22.146 SQL [24138]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 23:24:22.149 SQL [24138]: Found rows: 1 -- 23:24:22.149 FLOG_MAX [24138]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 23:24:22.149 INFO [24138]: long SessionCheck(long uid, const char *sessionid, int create ) -- 23:24:22.149 SQL [24138]: pgsql_exec() -- 23:24:22.149 SQL [24138]: About to run query: -- 23:24:22.149 SQL [24138]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 23:24:22.151 SQL [24138]: PQcmdTuples: 1 -- 23:24:22.151 SQL [24138]: Affected rows: 1 -- 23:24:22.151 SQL [24138]: pgsql_exec() -- 23:24:22.151 SQL [24138]: About to run query: -- 23:24:22.151 SQL [24138]: DELETE FROM members_session WHERE member_id=5 -- 23:24:22.151 SQL [24138]: PQcmdTuples: 0 -- 23:24:22.151 SQL [24138]: Affected rows: 0 -- 23:24:22.151 SQL [24138]: pgsql_query() -- 23:24:22.151 SQL [24138]: About to run query: -- 23:24:22.151 SQL [24138]: SELECT * FROM members_session WHERE member_id=5 AND session<>'102F7AF1EC16DD73AA92CF176A96C441' -- 23:24:22.152 SQL [24138]: Found rows: 0 -- 23:24:22.152 SQL [24138]: Found rows: 0 -- 23:24:22.152 FLOG_MAX [24138]: long load_db_record( CVars &rec, const char * query, ... ) -- 23:24:22.152 SQL [24138]: pgsql_query() -- 23:24:22.152 SQL [24138]: About to run query: -- 23:24:22.152 SQL [24138]: SELECT * FROM members_session WHERE member_id=5 AND session='102F7AF1EC16DD73AA92CF176A96C441' -- 23:24:22.153 SQL [24138]: Found rows: 0 -- 23:24:22.153 SQL [24138]: Found rows: 0 -- 23:24:22.153 FLOG_MAX [24138]: insert_db_record() -- 23:24:22.153 SQL [24138]: pgsql_exec() -- 23:24:22.153 SQL [24138]: About to run query: -- 23:24:22.153 SQL [24138]: INSERT INTO members_session (member_id,session) VALUES ('5','102F7AF1EC16DD73AA92CF176A96C441') -- 23:24:22.155 SQL [24138]: PQcmdTuples: 1 -- 23:24:22.155 SQL [24138]: Affected rows: 1 -- 23:24:22.155 FLOG_MAX [24138]: SELECT currval('members_session_id_seq') -- 23:24:22.155 SQL [24138]: pgsql_query() -- 23:24:22.155 SQL [24138]: About to run query: -- 23:24:22.155 SQL [24138]: SELECT currval('members_session_id_seq') -- 23:24:22.155 SQL [24138]: Found rows: 1 -- 23:24:22.155 INFO [24138]: CreateDefaultPage() -- 23:24:22.155 FLOG_MAX [24138]: long load_db_record( CVars &rec, const char * query, ... ) -- 23:24:22.155 SQL [24138]: pgsql_query() -- 23:24:22.155 SQL [24138]: About to run query: -- 23:24:22.155 SQL [24138]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 23:24:22.155 SQL [24138]: Found rows: 1 -- 23:24:22.156 FLOG_MAX [24138]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 23:24:22.156 SQL [24138]: pgsql_query() -- 23:24:22.156 SQL [24138]: About to run query: -- 23:24:22.156 SQL [24138]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 23:24:22.156 SQL [24138]: Found rows: 1 -- 23:24:22.156 INFO [24138]: /CreateDefaultPage() -- 23:24:22.156 INFO [24138]: /LoginCoreGradeAccount() -- 23:24:22.156 INFO [24138]: RET: added=2020-02-05 06:47:23.982154 -- 23:24:22.156 INFO [24138]: RET: email=ameye+11@chiefsoft.com -- 23:24:22.156 INFO [24138]: RET: firstname=Olu -- 23:24:22.156 INFO [24138]: RET: id=5 -- 23:24:22.156 INFO [24138]: RET: last_login= -- 23:24:22.156 INFO [24138]: RET: lastname=Amey -- 23:24:22.156 INFO [24138]: RET: loc=192.168.1.13 -- 23:24:22.156 INFO [24138]: RET: member_id=5 -- 23:24:22.156 INFO [24138]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 23:24:22.156 INFO [24138]: RET: phone= -- 23:24:22.156 INFO [24138]: RET: pid= -- 23:24:22.156 INFO [24138]: RET: result=YES I GET TO BACK END -- 23:24:22.156 INFO [24138]: RET: sessionid=102F7AF1EC16DD73AA92CF176A96C441 -- 23:24:22.156 INFO [24138]: RET: status=1 -- 23:24:22.156 INFO [24138]: RET: stauts=OK -- 23:24:22.156 INFO [24138]: RET: username=ameye+11@chiefsoft.com -- 23:24:22.156 INFO [24138]: RET: verified= -- 23:24:22.158 INFO [24138]: COREGRADE is stopping... -- 23:24:22.158 DEBUG [24138]: Closing database connection -- 23:24:22.158 SQL [24138]: pgsql_close() -- 23:24:22.108 DEBUG [24138]: Database connection successful -- 23:24:22.108 INFO [24138]: _SERVER found -- 23:24:22.108 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 23:24:22.108 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 23:24:22.108 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1825923780.1580907319 -- 23:24:22.108 INFO [24138]: QUERY_STRING = /auth -- 23:24:22.108 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:24:22.158 INFO [24138]: COREGRADE is stopping... -- 23:24:22.158 DEBUG [24138]: Closing database connection -- 23:24:22.158 SQL [24138]: pgsql_close() -- 23:24:22.186 INFO [24138]: COREGRADE is starting... -- 23:24:22.186 INFO [24138]: Version from config: 1.0 -- 23:24:22.186 DEBUG [24138]: Connecting to database... -- 23:24:22.186 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:24:22.186 SQL [24138]: pgsql_db_connect() -- 23:24:22.190 DEBUG [24138]: Database connection successful -- 23:24:22.190 INFO [24138]: _SERVER found -- 23:24:22.190 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 23:24:22.190 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 23:24:22.190 INFO [24138]: HTTP_COOKIE = ci_session=ai3ufuj5o7p2f0kp4qq0i7lmcrd1g2ic; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1825923780.1580907319 -- 23:24:22.190 INFO [24138]: QUERY_STRING = /member/index -- 23:24:22.190 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:24:22.224 INFO [24138]: COREGRADE is stopping... -- 23:24:22.224 DEBUG [24138]: Closing database connection -- 23:24:22.224 SQL [24138]: pgsql_close() -- 23:24:22.352 INFO [24138]: COREGRADE is starting... -- 23:24:22.353 INFO [24138]: Version from config: 1.0 -- 23:24:22.353 DEBUG [24138]: Connecting to database... -- 23:24:22.353 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:24:22.353 SQL [24138]: pgsql_db_connect() -- 23:24:22.357 DEBUG [24138]: Database connection successful -- 23:24:22.357 INFO [24138]: _SERVER found -- 23:24:22.357 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 23:24:22.357 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 23:24:22.357 INFO [24138]: HTTP_COOKIE = ci_session=ai3ufuj5o7p2f0kp4qq0i7lmcrd1g2ic; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1825923780.1580907319 -- 23:24:22.357 INFO [24138]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:24:22.357 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:24:22.368 INFO [24138]: COREGRADE is stopping... -- 23:24:22.368 DEBUG [24138]: Closing database connection -- 23:24:22.368 SQL [24138]: pgsql_close() -- 23:24:22.400 INFO [24184]: COREGRADE is starting... -- 23:24:22.401 INFO [24184]: Version from config: 1.0 -- 23:24:22.401 DEBUG [24184]: Connecting to database... -- 23:24:22.401 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:24:22.401 SQL [24184]: pgsql_db_connect() -- 23:24:22.404 DEBUG [24184]: Database connection successful -- 23:24:22.404 INFO [24184]: _SERVER found -- 23:24:22.404 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 23:24:22.404 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 23:24:22.404 INFO [24184]: HTTP_COOKIE = ci_session=ai3ufuj5o7p2f0kp4qq0i7lmcrd1g2ic; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1825923780.1580907319 -- 23:24:22.404 INFO [24184]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:24:22.404 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:24:22.416 INFO [24184]: COREGRADE is stopping... -- 23:24:22.416 DEBUG [24184]: Closing database connection -- 23:24:22.416 SQL [24184]: pgsql_close() -- 23:44:23.380 INFO [24136]: COREGRADE is starting... -- 23:44:23.380 INFO [24136]: Version from config: 1.0 -- 23:44:23.380 DEBUG [24136]: Connecting to database... -- 23:44:23.380 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:23.380 SQL [24136]: pgsql_db_connect() -- 23:44:23.384 DEBUG [24136]: Database connection successful -- 23:44:23.384 INFO [24136]: _SERVER found -- 23:44:23.384 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 23:44:23.384 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:23.384 INFO [24136]: HTTP_COOKIE = ci_session=ai3ufuj5o7p2f0kp4qq0i7lmcrd1g2ic; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1825923780.1580907319 -- 23:44:23.384 INFO [24136]: QUERY_STRING = /auth -- 23:44:23.384 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:23.419 INFO [24136]: COREGRADE is stopping... -- 23:44:23.420 DEBUG [24136]: Closing database connection -- 23:44:23.420 SQL [24136]: pgsql_close() -- 23:44:23.577 INFO [24136]: COREGRADE is starting... -- 23:44:23.577 INFO [24136]: Version from config: 1.0 -- 23:44:23.577 DEBUG [24136]: Connecting to database... -- 23:44:23.577 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:23.577 SQL [24136]: pgsql_db_connect() -- 23:44:23.581 DEBUG [24136]: Database connection successful -- 23:44:23.581 INFO [24136]: _SERVER found -- 23:44:23.581 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 23:44:23.581 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:23.581 INFO [24136]: HTTP_COOKIE = ci_session=qr9ml23vr3ncn6pt5nje76gpr5bf2p5g; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1825923780.1580907319 -- 23:44:23.581 INFO [24136]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 23:44:23.581 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:23.592 INFO [24136]: COREGRADE is stopping... -- 23:44:23.592 DEBUG [24136]: Closing database connection -- 23:44:23.592 SQL [24136]: pgsql_close() -- 23:44:23.605 INFO [24139]: COREGRADE is starting... -- 23:44:23.605 INFO [24139]: Version from config: 1.0 -- 23:44:23.605 DEBUG [24139]: Connecting to database... -- 23:44:23.605 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:23.605 SQL [24139]: pgsql_db_connect() -- 23:44:23.609 DEBUG [24139]: Database connection successful -- 23:44:23.609 INFO [24139]: _SERVER found -- 23:44:23.609 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 23:44:23.609 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:23.609 INFO [24139]: HTTP_COOKIE = ci_session=qr9ml23vr3ncn6pt5nje76gpr5bf2p5g; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1825923780.1580907319 -- 23:44:23.609 INFO [24139]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:44:23.609 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:23.621 INFO [24139]: COREGRADE is stopping... -- 23:44:23.621 DEBUG [24139]: Closing database connection -- 23:44:23.621 SQL [24139]: pgsql_close() -- 12:32:39.198 INFO [24140]: COREGRADE is starting... -- 12:32:39.199 INFO [24140]: Version from config: 1.0 -- 12:32:39.199 DEBUG [24140]: Connecting to database... -- 12:32:39.199 DEBUG [24140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:32:39.199 SQL [24140]: pgsql_db_connect() -- 12:32:39.204 DEBUG [24140]: Database connection successful -- 12:32:39.204 INFO [24140]: _SERVER found -- 12:32:39.204 INFO [24140]: REMOTE_ADDR = 192.168.1.13 -- 12:32:39.204 INFO [24140]: SERVER_NAME = oameye.works.coregrade.com -- 12:32:39.204 INFO [24140]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433 -- 12:32:39.204 INFO [24140]: QUERY_STRING = -- 12:32:39.204 INFO [24140]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:32:39.244 INFO [24140]: COREGRADE is stopping... -- 12:32:39.244 DEBUG [24140]: Closing database connection -- 12:32:39.244 SQL [24140]: pgsql_close() -- 12:32:39.769 INFO [24140]: COREGRADE is starting... -- 12:32:39.769 INFO [24140]: Version from config: 1.0 -- 12:32:39.769 DEBUG [24140]: Connecting to database... -- 12:32:39.769 DEBUG [24140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:32:39.769 SQL [24140]: pgsql_db_connect() -- 12:32:39.775 INFO [24138]: COREGRADE is starting... -- 12:32:39.775 INFO [24138]: Version from config: 1.0 -- 12:32:39.775 DEBUG [24138]: Connecting to database... -- 12:32:39.775 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:32:39.775 SQL [24138]: pgsql_db_connect() -- 12:32:39.773 DEBUG [24140]: Database connection successful -- 12:32:39.773 INFO [24140]: _SERVER found -- 12:32:39.773 INFO [24140]: REMOTE_ADDR = 192.168.1.13 -- 12:32:39.773 INFO [24140]: SERVER_NAME = oameye.works.coregrade.com -- 12:32:39.773 INFO [24140]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; ci_session=a4lvsu0vgif05e4bgr7ft5vp40886s6b -- 12:32:39.773 INFO [24140]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 12:32:39.773 INFO [24140]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:32:39.785 INFO [24140]: COREGRADE is stopping... -- 12:32:39.785 DEBUG [24140]: Closing database connection -- 12:32:39.785 SQL [24140]: pgsql_close() -- 12:32:39.779 DEBUG [24138]: Database connection successful -- 12:32:39.779 INFO [24138]: _SERVER found -- 12:32:39.779 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 12:32:39.779 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 12:32:39.779 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; ci_session=a4lvsu0vgif05e4bgr7ft5vp40886s6b -- 12:32:39.779 INFO [24138]: QUERY_STRING = /assets/img/footer_1.jpg -- 12:32:39.779 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:32:39.791 INFO [24138]: COREGRADE is stopping... -- 12:32:39.791 DEBUG [24138]: Closing database connection -- 12:32:39.791 SQL [24138]: pgsql_close() -- 12:32:40.615 INFO [24138]: COREGRADE is starting... -- 12:32:40.615 INFO [24138]: Version from config: 1.0 -- 12:32:40.615 DEBUG [24138]: Connecting to database... -- 12:32:40.615 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:32:40.615 SQL [24138]: pgsql_db_connect() -- 12:32:40.619 DEBUG [24138]: Database connection successful -- 12:32:40.619 INFO [24138]: _SERVER found -- 12:32:40.619 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 12:32:40.619 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 12:32:40.619 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; ci_session=a4lvsu0vgif05e4bgr7ft5vp40886s6b; _gid=GA1.2.74515239.1581010361; _gat_gtag_UA_54829827_2=1 -- 12:32:40.619 INFO [24138]: QUERY_STRING = /auth/newuser -- 12:32:40.619 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:32:40.651 INFO [24138]: COREGRADE is stopping... -- 12:32:40.651 DEBUG [24138]: Closing database connection -- 12:32:40.651 SQL [24138]: pgsql_close() -- 12:32:40.969 INFO [24138]: COREGRADE is starting... -- 12:32:40.969 INFO [24138]: Version from config: 1.0 -- 12:32:40.969 DEBUG [24138]: Connecting to database... -- 12:32:40.969 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:32:40.969 SQL [24138]: pgsql_db_connect() -- 12:32:40.973 DEBUG [24138]: Database connection successful -- 12:32:40.973 INFO [24138]: _SERVER found -- 12:32:40.973 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 12:32:40.973 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 12:32:40.973 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; ci_session=a4lvsu0vgif05e4bgr7ft5vp40886s6b; _gid=GA1.2.74515239.1581010361; _gat_gtag_UA_54829827_2=1 -- 12:32:40.973 INFO [24138]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 12:32:40.973 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:32:40.984 INFO [24138]: COREGRADE is stopping... -- 12:32:40.984 DEBUG [24138]: Closing database connection -- 12:32:40.984 SQL [24138]: pgsql_close() -- 12:32:41.372 INFO [24138]: COREGRADE is starting... -- 12:32:41.372 INFO [24138]: Version from config: 1.0 -- 12:32:41.372 DEBUG [24138]: Connecting to database... -- 12:32:41.372 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:32:41.372 SQL [24138]: pgsql_db_connect() -- 12:32:41.376 DEBUG [24138]: Database connection successful -- 12:32:41.376 INFO [24138]: _SERVER found -- 12:32:41.376 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 12:32:41.376 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 12:32:41.376 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; ci_session=a4lvsu0vgif05e4bgr7ft5vp40886s6b; _gid=GA1.2.74515239.1581010361; _gat_gtag_UA_54829827_2=1 -- 12:32:41.376 INFO [24138]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:32:41.376 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:32:41.387 INFO [24138]: COREGRADE is stopping... -- 12:32:41.387 DEBUG [24138]: Closing database connection -- 12:32:41.387 SQL [24138]: pgsql_close() -- 12:45:34.762 INFO [24136]: COREGRADE is starting... -- 12:45:34.763 INFO [24136]: Version from config: 1.0 -- 12:45:34.763 DEBUG [24136]: Connecting to database... -- 12:45:34.763 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:45:34.763 SQL [24136]: pgsql_db_connect() -- 12:45:34.768 DEBUG [24136]: Database connection successful -- 12:45:34.768 INFO [24136]: _SERVER found -- 12:45:34.768 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 12:45:34.768 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 12:45:34.768 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896 -- 12:45:34.768 INFO [24136]: QUERY_STRING = /auth -- 12:45:34.768 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:45:34.802 INFO [24136]: COREGRADE is stopping... -- 12:45:34.802 DEBUG [24136]: Closing database connection -- 12:45:34.803 SQL [24136]: pgsql_close() -- 12:45:35.105 INFO [30310]: COREGRADE is starting... -- 12:45:35.105 INFO [30310]: Version from config: 1.0 -- 12:45:35.105 DEBUG [30310]: Connecting to database... -- 12:45:35.105 DEBUG [30310]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:45:35.105 SQL [30310]: pgsql_db_connect() -- 12:45:35.109 DEBUG [30310]: Database connection successful -- 12:45:35.109 INFO [30310]: _SERVER found -- 12:45:35.109 INFO [30310]: REMOTE_ADDR = 192.168.1.13 -- 12:45:35.109 INFO [30310]: SERVER_NAME = oameye.works.coregrade.com -- 12:45:35.109 INFO [30310]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lp5rsrfflkp5ug0poobdn87u523ar4rg -- 12:45:35.109 INFO [30310]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 12:45:35.109 INFO [30310]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:45:35.124 INFO [30310]: COREGRADE is stopping... -- 12:45:35.124 DEBUG [30310]: Closing database connection -- 12:45:35.124 SQL [30310]: pgsql_close() -- 12:45:35.234 INFO [30310]: COREGRADE is starting... -- 12:45:35.235 INFO [30310]: Version from config: 1.0 -- 12:45:35.235 DEBUG [30310]: Connecting to database... -- 12:45:35.235 DEBUG [30310]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:45:35.235 SQL [30310]: pgsql_db_connect() -- 12:45:35.238 DEBUG [30310]: Database connection successful -- 12:45:35.239 INFO [30310]: _SERVER found -- 12:45:35.239 INFO [30310]: REMOTE_ADDR = 192.168.1.13 -- 12:45:35.239 INFO [30310]: SERVER_NAME = oameye.works.coregrade.com -- 12:45:35.239 INFO [30310]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lp5rsrfflkp5ug0poobdn87u523ar4rg -- 12:45:35.239 INFO [30310]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:45:35.239 INFO [30310]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:45:35.251 INFO [30310]: COREGRADE is stopping... -- 12:45:35.251 DEBUG [30310]: Closing database connection -- 12:45:35.251 SQL [30310]: pgsql_close() -- 12:45:43.201 INFO [24184]: COREGRADE is starting... -- 12:45:43.201 INFO [24184]: Version from config: 1.0 -- 12:45:43.201 DEBUG [24184]: Connecting to database... -- 12:45:43.201 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:45:43.201 SQL [24184]: pgsql_db_connect() -- 12:45:43.205 DEBUG [24184]: Database connection successful -- 12:45:43.205 INFO [24184]: _SERVER found -- 12:45:43.205 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 12:45:43.205 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 12:45:43.205 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lp5rsrfflkp5ug0poobdn87u523ar4rg -- 12:45:43.205 INFO [24184]: QUERY_STRING = -- 12:45:43.205 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:45:43.245 INFO [24184]: COREGRADE is stopping... -- 12:45:43.245 DEBUG [24184]: Closing database connection -- 12:45:43.245 SQL [24184]: pgsql_close() -- 12:45:43.685 INFO [24184]: COREGRADE is starting... -- 12:45:43.685 INFO [24184]: Version from config: 1.0 -- 12:45:43.685 DEBUG [24184]: Connecting to database... -- 12:45:43.685 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:45:43.685 SQL [24184]: pgsql_db_connect() -- 12:45:43.689 DEBUG [24184]: Database connection successful -- 12:45:43.689 INFO [24184]: _SERVER found -- 12:45:43.689 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 12:45:43.689 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 12:45:43.690 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lp5rsrfflkp5ug0poobdn87u523ar4rg -- 12:45:43.690 INFO [24184]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 12:45:43.690 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:45:43.701 INFO [24184]: COREGRADE is stopping... -- 12:45:43.701 DEBUG [24184]: Closing database connection -- 12:45:43.701 SQL [24184]: pgsql_close() -- 12:45:43.714 INFO [24138]: COREGRADE is starting... -- 12:45:43.715 INFO [24138]: Version from config: 1.0 -- 12:45:43.715 DEBUG [24138]: Connecting to database... -- 12:45:43.715 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:45:43.715 SQL [24138]: pgsql_db_connect() -- 12:45:43.718 DEBUG [24138]: Database connection successful -- 12:45:43.718 INFO [24138]: _SERVER found -- 12:45:43.718 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 12:45:43.718 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 12:45:43.718 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lp5rsrfflkp5ug0poobdn87u523ar4rg -- 12:45:43.718 INFO [24138]: QUERY_STRING = /assets/img/footer_1.jpg -- 12:45:43.718 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:45:43.730 INFO [24138]: COREGRADE is stopping... -- 12:45:43.730 DEBUG [24138]: Closing database connection -- 12:45:43.730 SQL [24138]: pgsql_close() -- 12:46:19.898 INFO [30474]: COREGRADE is starting... -- 12:46:19.898 INFO [30474]: Version from config: 1.0 -- 12:46:19.898 DEBUG [30474]: Connecting to database... -- 12:46:19.898 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:46:19.898 SQL [30474]: pgsql_db_connect() -- 12:46:19.903 DEBUG [30474]: Database connection successful -- 12:46:19.903 INFO [30474]: _SERVER found -- 12:46:19.903 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 12:46:19.903 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 12:46:19.903 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lp5rsrfflkp5ug0poobdn87u523ar4rg; _gat_gtag_UA_54829827_2=1 -- 12:46:19.903 INFO [30474]: QUERY_STRING = /auth -- 12:46:19.903 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:46:19.940 INFO [30474]: COREGRADE is stopping... -- 12:46:19.940 DEBUG [30474]: Closing database connection -- 12:46:19.940 SQL [30474]: pgsql_close() -- 12:46:20.095 INFO [30474]: COREGRADE is starting... -- 12:46:20.095 INFO [30474]: Version from config: 1.0 -- 12:46:20.095 DEBUG [30474]: Connecting to database... -- 12:46:20.095 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:46:20.095 SQL [30474]: pgsql_db_connect() -- 12:46:20.099 DEBUG [30474]: Database connection successful -- 12:46:20.099 INFO [30474]: _SERVER found -- 12:46:20.099 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 12:46:20.099 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 12:46:20.099 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lp5rsrfflkp5ug0poobdn87u523ar4rg; _gat_gtag_UA_54829827_2=1 -- 12:46:20.099 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:46:20.099 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:46:20.112 INFO [30474]: COREGRADE is stopping... -- 12:46:20.112 DEBUG [30474]: Closing database connection -- 12:46:20.112 SQL [30474]: pgsql_close() -- 12:46:31.287 INFO [30475]: COREGRADE is starting... -- 12:46:31.287 INFO [30475]: Version from config: 1.0 -- 12:46:31.287 DEBUG [30475]: Connecting to database... -- 12:46:31.287 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:46:31.287 SQL [30475]: pgsql_db_connect() -- 12:46:31.328 INFO [30475]: COREGRADE is starting... -- 12:46:31.328 INFO [30475]: Version from config: 1.0 -- 12:46:31.328 DEBUG [30475]: Connecting to database... -- 12:46:31.328 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:46:31.328 SQL [30475]: pgsql_db_connect() -- 12:46:31.332 DEBUG [30475]: Database connection successful -- 12:46:31.332 INFO [30475]: _SERVER found -- 12:46:31.332 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 12:46:31.332 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 12:46:31.332 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lp5rsrfflkp5ug0poobdn87u523ar4rg; _gat_gtag_UA_54829827_2=1 -- 12:46:31.332 INFO [30475]: QUERY_STRING = -- 12:46:31.332 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:46:31.332 INFO [30475]: SystemStatus()09-09-********~************ -- 12:46:31.332 INFO [30475]: long coregrade_api_main(CVars in, CVars &out) -- 12:46:31.332 INFO [30475]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 12:46:31.332 INFO [30475]: account calls -- 12:46:31.332 INFO [30475]: account_calls() -- 12:46:31.332 INFO [30475]: LoginCoreGradeAccount() -- 12:46:31.332 FLOG_MAX [30475]: REQ_STRING(username) -- 12:46:31.332 FLOG_MAX [30475]: REQ_STRING(password) -- 12:46:31.332 FLOG_MAX [30475]: REQ_STRING(sessionid) -- 12:46:31.332 FLOG_MAX [30475]: long load_db_record( CVars &rec, const char * query, ... ) -- 12:46:31.332 SQL [30475]: pgsql_query() -- 12:46:31.332 SQL [30475]: About to run query: -- 12:46:31.332 SQL [30475]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 12:46:31.336 SQL [30475]: Found rows: 1 -- 12:46:31.336 FLOG_MAX [30475]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 12:46:31.336 INFO [30475]: long SessionCheck(long uid, const char *sessionid, int create ) -- 12:46:31.336 SQL [30475]: pgsql_exec() -- 12:46:31.336 SQL [30475]: About to run query: -- 12:46:31.336 SQL [30475]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 12:46:31.337 SQL [30475]: PQcmdTuples: 1 -- 12:46:31.337 SQL [30475]: Affected rows: 1 -- 12:46:31.337 SQL [30475]: pgsql_exec() -- 12:46:31.337 SQL [30475]: About to run query: -- 12:46:31.337 SQL [30475]: DELETE FROM members_session WHERE member_id=5 -- 12:46:31.337 SQL [30475]: PQcmdTuples: 0 -- 12:46:31.337 SQL [30475]: Affected rows: 0 -- 12:46:31.337 SQL [30475]: pgsql_query() -- 12:46:31.337 SQL [30475]: About to run query: -- 12:46:31.337 SQL [30475]: SELECT * FROM members_session WHERE member_id=5 AND session<>'6E0FED4D5AD25FDD740BB5ECD4354000' -- 12:46:31.338 SQL [30475]: Found rows: 0 -- 12:46:31.338 SQL [30475]: Found rows: 0 -- 12:46:31.338 FLOG_MAX [30475]: long load_db_record( CVars &rec, const char * query, ... ) -- 12:46:31.338 SQL [30475]: pgsql_query() -- 12:46:31.338 SQL [30475]: About to run query: -- 12:46:31.338 SQL [30475]: SELECT * FROM members_session WHERE member_id=5 AND session='6E0FED4D5AD25FDD740BB5ECD4354000' -- 12:46:31.338 SQL [30475]: Found rows: 0 -- 12:46:31.338 SQL [30475]: Found rows: 0 -- 12:46:31.338 FLOG_MAX [30475]: insert_db_record() -- 12:46:31.339 SQL [30475]: pgsql_exec() -- 12:46:31.339 SQL [30475]: About to run query: -- 12:46:31.339 SQL [30475]: INSERT INTO members_session (member_id,session) VALUES ('5','6E0FED4D5AD25FDD740BB5ECD4354000') -- 12:46:31.340 SQL [30475]: PQcmdTuples: 1 -- 12:46:31.340 SQL [30475]: Affected rows: 1 -- 12:46:31.340 FLOG_MAX [30475]: SELECT currval('members_session_id_seq') -- 12:46:31.340 SQL [30475]: pgsql_query() -- 12:46:31.340 SQL [30475]: About to run query: -- 12:46:31.340 SQL [30475]: SELECT currval('members_session_id_seq') -- 12:46:31.340 SQL [30475]: Found rows: 1 -- 12:46:31.340 INFO [30475]: CreateDefaultPage() -- 12:46:31.340 FLOG_MAX [30475]: long load_db_record( CVars &rec, const char * query, ... ) -- 12:46:31.340 SQL [30475]: pgsql_query() -- 12:46:31.340 SQL [30475]: About to run query: -- 12:46:31.340 SQL [30475]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 12:46:31.341 SQL [30475]: Found rows: 1 -- 12:46:31.341 FLOG_MAX [30475]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 12:46:31.341 SQL [30475]: pgsql_query() -- 12:46:31.341 SQL [30475]: About to run query: -- 12:46:31.341 SQL [30475]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 12:46:31.341 SQL [30475]: Found rows: 1 -- 12:46:31.341 INFO [30475]: /CreateDefaultPage() -- 12:46:31.341 INFO [30475]: /LoginCoreGradeAccount() -- 12:46:31.341 INFO [30475]: RET: added=2020-02-05 06:47:23.982154 -- 12:46:31.341 INFO [30475]: RET: email=ameye+11@chiefsoft.com -- 12:46:31.341 INFO [30475]: RET: firstname=Olu -- 12:46:31.341 INFO [30475]: RET: id=5 -- 12:46:31.341 INFO [30475]: RET: last_login= -- 12:46:31.341 INFO [30475]: RET: lastname=Amey -- 12:46:31.341 INFO [30475]: RET: loc=192.168.1.13 -- 12:46:31.341 INFO [30475]: RET: member_id=5 -- 12:46:31.341 INFO [30475]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 12:46:31.341 INFO [30475]: RET: phone= -- 12:46:31.341 INFO [30475]: RET: pid= -- 12:46:31.341 INFO [30475]: RET: result=YES I GET TO BACK END -- 12:46:31.341 INFO [30475]: RET: sessionid=6E0FED4D5AD25FDD740BB5ECD4354000 -- 12:46:31.341 INFO [30475]: RET: status=1 -- 12:46:31.341 INFO [30475]: RET: stauts=OK -- 12:46:31.341 INFO [30475]: RET: username=ameye+11@chiefsoft.com -- 12:46:31.341 INFO [30475]: RET: verified= -- 12:46:31.343 INFO [30475]: COREGRADE is stopping... -- 12:46:31.343 DEBUG [30475]: Closing database connection -- 12:46:31.343 SQL [30475]: pgsql_close() -- 12:46:31.291 DEBUG [30475]: Database connection successful -- 12:46:31.291 INFO [30475]: _SERVER found -- 12:46:31.291 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 12:46:31.291 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 12:46:31.291 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lp5rsrfflkp5ug0poobdn87u523ar4rg; _gat_gtag_UA_54829827_2=1 -- 12:46:31.291 INFO [30475]: QUERY_STRING = /auth -- 12:46:31.291 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:46:31.343 INFO [30475]: COREGRADE is stopping... -- 12:46:31.344 DEBUG [30475]: Closing database connection -- 12:46:31.344 SQL [30475]: pgsql_close() -- 12:46:31.396 INFO [30475]: COREGRADE is starting... -- 12:46:31.396 INFO [30475]: Version from config: 1.0 -- 12:46:31.396 DEBUG [30475]: Connecting to database... -- 12:46:31.396 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:46:31.396 SQL [30475]: pgsql_db_connect() -- 12:46:31.400 DEBUG [30475]: Database connection successful -- 12:46:31.400 INFO [30475]: _SERVER found -- 12:46:31.400 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 12:46:31.400 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 12:46:31.400 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lp5rsrfflkp5ug0poobdn87u523ar4rg; _gat_gtag_UA_54829827_2=1 -- 12:46:31.400 INFO [30475]: QUERY_STRING = /member/index -- 12:46:31.400 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:46:31.439 INFO [30475]: COREGRADE is stopping... -- 12:46:31.439 DEBUG [30475]: Closing database connection -- 12:46:31.439 SQL [30475]: pgsql_close() -- 12:46:31.813 INFO [24136]: COREGRADE is starting... -- 12:46:31.813 INFO [24136]: Version from config: 1.0 -- 12:46:31.813 DEBUG [24136]: Connecting to database... -- 12:46:31.813 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:46:31.813 SQL [24136]: pgsql_db_connect() -- 12:46:31.817 DEBUG [24136]: Database connection successful -- 12:46:31.817 INFO [24136]: _SERVER found -- 12:46:31.817 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 12:46:31.817 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 12:46:31.817 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lp5rsrfflkp5ug0poobdn87u523ar4rg; _gat_gtag_UA_54829827_2=1 -- 12:46:31.817 INFO [24136]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:46:31.817 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:46:31.828 INFO [24136]: COREGRADE is stopping... -- 12:46:31.828 DEBUG [24136]: Closing database connection -- 12:46:31.828 SQL [24136]: pgsql_close() -- 12:46:32.135 INFO [30476]: COREGRADE is starting... -- 12:46:32.136 INFO [30476]: Version from config: 1.0 -- 12:46:32.136 DEBUG [30476]: Connecting to database... -- 12:46:32.136 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:46:32.136 SQL [30476]: pgsql_db_connect() -- 12:46:32.140 DEBUG [30476]: Database connection successful -- 12:46:32.140 INFO [30476]: _SERVER found -- 12:46:32.140 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 12:46:32.140 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 12:46:32.140 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lp5rsrfflkp5ug0poobdn87u523ar4rg; _gat_gtag_UA_54829827_2=1 -- 12:46:32.140 INFO [30476]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:46:32.140 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:46:32.154 INFO [30476]: COREGRADE is stopping... -- 12:46:32.154 DEBUG [30476]: Closing database connection -- 12:46:32.154 SQL [30476]: pgsql_close() -- 12:47:32.094 INFO [24184]: COREGRADE is starting... -- 12:47:32.094 INFO [24184]: Version from config: 1.0 -- 12:47:32.094 DEBUG [24184]: Connecting to database... -- 12:47:32.094 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:47:32.094 SQL [24184]: pgsql_db_connect() -- 12:47:32.098 DEBUG [24184]: Database connection successful -- 12:47:32.098 INFO [24184]: _SERVER found -- 12:47:32.098 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 12:47:32.098 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 12:47:32.098 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lp5rsrfflkp5ug0poobdn87u523ar4rg -- 12:47:32.098 INFO [24184]: QUERY_STRING = /auth -- 12:47:32.098 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:47:32.132 INFO [24184]: COREGRADE is stopping... -- 12:47:32.132 DEBUG [24184]: Closing database connection -- 12:47:32.132 SQL [24184]: pgsql_close() -- 12:47:32.287 INFO [24184]: COREGRADE is starting... -- 12:47:32.287 INFO [24184]: Version from config: 1.0 -- 12:47:32.287 DEBUG [24184]: Connecting to database... -- 12:47:32.287 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:47:32.288 SQL [24184]: pgsql_db_connect() -- 12:47:32.291 DEBUG [24184]: Database connection successful -- 12:47:32.291 INFO [24184]: _SERVER found -- 12:47:32.291 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 12:47:32.291 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 12:47:32.291 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lp5rsrfflkp5ug0poobdn87u523ar4rg -- 12:47:32.291 INFO [24184]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:47:32.291 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:47:32.302 INFO [24184]: COREGRADE is stopping... -- 12:47:32.302 DEBUG [24184]: Closing database connection -- 12:47:32.302 SQL [24184]: pgsql_close() -- 12:47:34.782 INFO [24184]: COREGRADE is starting... -- 12:47:34.782 INFO [24184]: Version from config: 1.0 -- 12:47:34.782 DEBUG [24184]: Connecting to database... -- 12:47:34.782 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:47:34.782 SQL [24184]: pgsql_db_connect() -- 12:47:34.786 DEBUG [24184]: Database connection successful -- 12:47:34.786 INFO [24184]: _SERVER found -- 12:47:34.786 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 12:47:34.786 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 12:47:34.786 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lp5rsrfflkp5ug0poobdn87u523ar4rg -- 12:47:34.786 INFO [24184]: QUERY_STRING = -- 12:47:34.786 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:47:34.819 INFO [24184]: COREGRADE is stopping... -- 12:47:34.819 DEBUG [24184]: Closing database connection -- 12:47:34.819 SQL [24184]: pgsql_close() -- 12:47:45.146 INFO [24138]: COREGRADE is starting... -- 12:47:45.147 INFO [24138]: Version from config: 1.0 -- 12:47:45.147 DEBUG [24138]: Connecting to database... -- 12:47:45.147 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:47:45.147 SQL [24138]: pgsql_db_connect() -- 12:47:45.151 DEBUG [24138]: Database connection successful -- 12:47:45.151 INFO [24138]: _SERVER found -- 12:47:45.151 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 12:47:45.151 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 12:47:45.151 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lp5rsrfflkp5ug0poobdn87u523ar4rg; _gat_gtag_UA_54829827_2=1 -- 12:47:45.151 INFO [24138]: QUERY_STRING = /auth -- 12:47:45.151 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:47:45.182 INFO [24138]: COREGRADE is stopping... -- 12:47:45.182 DEBUG [24138]: Closing database connection -- 12:47:45.182 SQL [24138]: pgsql_close() -- 12:47:45.489 INFO [24138]: COREGRADE is starting... -- 12:47:45.489 INFO [24138]: Version from config: 1.0 -- 12:47:45.489 DEBUG [24138]: Connecting to database... -- 12:47:45.489 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:47:45.489 SQL [24138]: pgsql_db_connect() -- 12:47:45.493 DEBUG [24138]: Database connection successful -- 12:47:45.493 INFO [24138]: _SERVER found -- 12:47:45.493 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 12:47:45.493 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 12:47:45.493 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lp5rsrfflkp5ug0poobdn87u523ar4rg; _gat_gtag_UA_54829827_2=1 -- 12:47:45.493 INFO [24138]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:47:45.493 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:47:45.504 INFO [24138]: COREGRADE is stopping... -- 12:47:45.504 DEBUG [24138]: Closing database connection -- 12:47:45.504 SQL [24138]: pgsql_close() -- 12:47:47.543 INFO [24138]: COREGRADE is starting... -- 12:47:47.543 INFO [24138]: Version from config: 1.0 -- 12:47:47.543 DEBUG [24138]: Connecting to database... -- 12:47:47.543 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:47:47.543 SQL [24138]: pgsql_db_connect() -- 12:47:47.577 INFO [24138]: COREGRADE is starting... -- 12:47:47.578 INFO [24138]: Version from config: 1.0 -- 12:47:47.578 DEBUG [24138]: Connecting to database... -- 12:47:47.578 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:47:47.578 SQL [24138]: pgsql_db_connect() -- 12:47:47.581 DEBUG [24138]: Database connection successful -- 12:47:47.581 INFO [24138]: _SERVER found -- 12:47:47.581 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 12:47:47.581 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 12:47:47.581 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lp5rsrfflkp5ug0poobdn87u523ar4rg; _gat_gtag_UA_54829827_2=1 -- 12:47:47.581 INFO [24138]: QUERY_STRING = -- 12:47:47.582 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:47:47.582 INFO [24138]: SystemStatus()09-09-********~************ -- 12:47:47.582 INFO [24138]: long coregrade_api_main(CVars in, CVars &out) -- 12:47:47.582 INFO [24138]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 12:47:47.582 INFO [24138]: account calls -- 12:47:47.582 INFO [24138]: account_calls() -- 12:47:47.582 INFO [24138]: LoginCoreGradeAccount() -- 12:47:47.582 FLOG_MAX [24138]: REQ_STRING(username) -- 12:47:47.582 FLOG_MAX [24138]: REQ_STRING(password) -- 12:47:47.582 FLOG_MAX [24138]: REQ_STRING(sessionid) -- 12:47:47.582 FLOG_MAX [24138]: long load_db_record( CVars &rec, const char * query, ... ) -- 12:47:47.582 SQL [24138]: pgsql_query() -- 12:47:47.582 SQL [24138]: About to run query: -- 12:47:47.582 SQL [24138]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 12:47:47.585 SQL [24138]: Found rows: 1 -- 12:47:47.585 FLOG_MAX [24138]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 12:47:47.585 INFO [24138]: long SessionCheck(long uid, const char *sessionid, int create ) -- 12:47:47.585 SQL [24138]: pgsql_exec() -- 12:47:47.585 SQL [24138]: About to run query: -- 12:47:47.585 SQL [24138]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 12:47:47.586 SQL [24138]: PQcmdTuples: 0 -- 12:47:47.586 SQL [24138]: Affected rows: 0 -- 12:47:47.586 SQL [24138]: pgsql_exec() -- 12:47:47.586 SQL [24138]: About to run query: -- 12:47:47.586 SQL [24138]: DELETE FROM members_session WHERE member_id=5 -- 12:47:47.587 SQL [24138]: PQcmdTuples: 1 -- 12:47:47.587 SQL [24138]: Affected rows: 1 -- 12:47:47.587 SQL [24138]: pgsql_query() -- 12:47:47.587 SQL [24138]: About to run query: -- 12:47:47.587 SQL [24138]: SELECT * FROM members_session WHERE member_id=5 AND session<>'151988D42FCF634B8FCA8514EA240C4B' -- 12:47:47.587 SQL [24138]: Found rows: 0 -- 12:47:47.587 SQL [24138]: Found rows: 0 -- 12:47:47.587 FLOG_MAX [24138]: long load_db_record( CVars &rec, const char * query, ... ) -- 12:47:47.587 SQL [24138]: pgsql_query() -- 12:47:47.587 SQL [24138]: About to run query: -- 12:47:47.587 SQL [24138]: SELECT * FROM members_session WHERE member_id=5 AND session='151988D42FCF634B8FCA8514EA240C4B' -- 12:47:47.588 SQL [24138]: Found rows: 0 -- 12:47:47.588 SQL [24138]: Found rows: 0 -- 12:47:47.588 FLOG_MAX [24138]: insert_db_record() -- 12:47:47.588 SQL [24138]: pgsql_exec() -- 12:47:47.588 SQL [24138]: About to run query: -- 12:47:47.588 SQL [24138]: INSERT INTO members_session (member_id,session) VALUES ('5','151988D42FCF634B8FCA8514EA240C4B') -- 12:47:47.589 SQL [24138]: PQcmdTuples: 1 -- 12:47:47.589 SQL [24138]: Affected rows: 1 -- 12:47:47.589 FLOG_MAX [24138]: SELECT currval('members_session_id_seq') -- 12:47:47.589 SQL [24138]: pgsql_query() -- 12:47:47.589 SQL [24138]: About to run query: -- 12:47:47.589 SQL [24138]: SELECT currval('members_session_id_seq') -- 12:47:47.589 SQL [24138]: Found rows: 1 -- 12:47:47.589 INFO [24138]: CreateDefaultPage() -- 12:47:47.589 FLOG_MAX [24138]: long load_db_record( CVars &rec, const char * query, ... ) -- 12:47:47.589 SQL [24138]: pgsql_query() -- 12:47:47.589 SQL [24138]: About to run query: -- 12:47:47.589 SQL [24138]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 12:47:47.590 SQL [24138]: Found rows: 1 -- 12:47:47.590 FLOG_MAX [24138]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 12:47:47.590 SQL [24138]: pgsql_query() -- 12:47:47.590 SQL [24138]: About to run query: -- 12:47:47.590 SQL [24138]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 12:47:47.590 SQL [24138]: Found rows: 1 -- 12:47:47.590 INFO [24138]: /CreateDefaultPage() -- 12:47:47.590 INFO [24138]: /LoginCoreGradeAccount() -- 12:47:47.590 INFO [24138]: RET: added=2020-02-05 06:47:23.982154 -- 12:47:47.590 INFO [24138]: RET: email=ameye+11@chiefsoft.com -- 12:47:47.590 INFO [24138]: RET: firstname=Olu -- 12:47:47.590 INFO [24138]: RET: id=5 -- 12:47:47.590 INFO [24138]: RET: last_login= -- 12:47:47.590 INFO [24138]: RET: lastname=Amey -- 12:47:47.590 INFO [24138]: RET: loc=192.168.1.13 -- 12:47:47.590 INFO [24138]: RET: member_id=5 -- 12:47:47.590 INFO [24138]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 12:47:47.590 INFO [24138]: RET: phone= -- 12:47:47.590 INFO [24138]: RET: pid= -- 12:47:47.590 INFO [24138]: RET: result=YES I GET TO BACK END -- 12:47:47.591 INFO [24138]: RET: sessionid=151988D42FCF634B8FCA8514EA240C4B -- 12:47:47.591 INFO [24138]: RET: status=1 -- 12:47:47.591 INFO [24138]: RET: stauts=OK -- 12:47:47.591 INFO [24138]: RET: username=ameye+11@chiefsoft.com -- 12:47:47.591 INFO [24138]: RET: verified= -- 12:47:47.592 INFO [24138]: COREGRADE is stopping... -- 12:47:47.592 DEBUG [24138]: Closing database connection -- 12:47:47.592 SQL [24138]: pgsql_close() -- 12:47:47.547 DEBUG [24138]: Database connection successful -- 12:47:47.547 INFO [24138]: _SERVER found -- 12:47:47.547 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 12:47:47.547 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 12:47:47.547 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lp5rsrfflkp5ug0poobdn87u523ar4rg; _gat_gtag_UA_54829827_2=1 -- 12:47:47.547 INFO [24138]: QUERY_STRING = /auth -- 12:47:47.547 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:47:47.592 INFO [24138]: COREGRADE is stopping... -- 12:47:47.592 DEBUG [24138]: Closing database connection -- 12:47:47.592 SQL [24138]: pgsql_close() -- 12:47:47.607 INFO [24138]: COREGRADE is starting... -- 12:47:47.607 INFO [24138]: Version from config: 1.0 -- 12:47:47.608 DEBUG [24138]: Connecting to database... -- 12:47:47.608 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:47:47.608 SQL [24138]: pgsql_db_connect() -- 12:47:47.611 DEBUG [24138]: Database connection successful -- 12:47:47.611 INFO [24138]: _SERVER found -- 12:47:47.611 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 12:47:47.611 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 12:47:47.611 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lp5rsrfflkp5ug0poobdn87u523ar4rg; _gat_gtag_UA_54829827_2=1 -- 12:47:47.611 INFO [24138]: QUERY_STRING = /member/index -- 12:47:47.611 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:47:47.645 INFO [24138]: COREGRADE is stopping... -- 12:47:47.645 DEBUG [24138]: Closing database connection -- 12:47:47.645 SQL [24138]: pgsql_close() -- 12:47:48.133 INFO [24138]: COREGRADE is starting... -- 12:47:48.133 INFO [24138]: Version from config: 1.0 -- 12:47:48.133 DEBUG [24138]: Connecting to database... -- 12:47:48.133 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:47:48.133 SQL [24138]: pgsql_db_connect() -- 12:47:48.137 DEBUG [24138]: Database connection successful -- 12:47:48.137 INFO [24138]: _SERVER found -- 12:47:48.137 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 12:47:48.137 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 12:47:48.137 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lp5rsrfflkp5ug0poobdn87u523ar4rg; _gat_gtag_UA_54829827_2=1 -- 12:47:48.137 INFO [24138]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:47:48.137 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:47:48.148 INFO [24138]: COREGRADE is stopping... -- 12:47:48.148 DEBUG [24138]: Closing database connection -- 12:47:48.148 SQL [24138]: pgsql_close() -- 13:07:48.164 INFO [30474]: COREGRADE is starting... -- 13:07:48.164 INFO [30474]: Version from config: 1.0 -- 13:07:48.164 DEBUG [30474]: Connecting to database... -- 13:07:48.164 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:07:48.164 SQL [30474]: pgsql_db_connect() -- 13:07:48.170 DEBUG [30474]: Database connection successful -- 13:07:48.170 INFO [30474]: _SERVER found -- 13:07:48.170 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 13:07:48.170 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 13:07:48.170 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lp5rsrfflkp5ug0poobdn87u523ar4rg -- 13:07:48.170 INFO [30474]: QUERY_STRING = /auth -- 13:07:48.170 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:07:48.207 INFO [30474]: COREGRADE is stopping... -- 13:07:48.207 DEBUG [30474]: Closing database connection -- 13:07:48.207 SQL [30474]: pgsql_close() -- 13:07:48.299 INFO [30474]: COREGRADE is starting... -- 13:07:48.299 INFO [30474]: Version from config: 1.0 -- 13:07:48.299 DEBUG [30474]: Connecting to database... -- 13:07:48.299 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:07:48.299 SQL [30474]: pgsql_db_connect() -- 13:07:48.303 DEBUG [30474]: Database connection successful -- 13:07:48.303 INFO [30474]: _SERVER found -- 13:07:48.303 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 13:07:48.303 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 13:07:48.303 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=4ulljcvvp29h6iaflffs2ejddqa96tdn -- 13:07:48.303 INFO [30474]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:07:48.303 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:07:48.315 INFO [30474]: COREGRADE is stopping... -- 13:07:48.315 DEBUG [30474]: Closing database connection -- 13:07:48.315 SQL [30474]: pgsql_close() -- 13:07:48.340 INFO [30474]: COREGRADE is starting... -- 13:07:48.340 INFO [30474]: Version from config: 1.0 -- 13:07:48.340 DEBUG [30474]: Connecting to database... -- 13:07:48.340 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:07:48.340 SQL [30474]: pgsql_db_connect() -- 13:07:48.344 DEBUG [30474]: Database connection successful -- 13:07:48.344 INFO [30474]: _SERVER found -- 13:07:48.344 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 13:07:48.344 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 13:07:48.344 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=4ulljcvvp29h6iaflffs2ejddqa96tdn -- 13:07:48.344 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 13:07:48.344 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:07:48.356 INFO [30474]: COREGRADE is stopping... -- 13:07:48.356 DEBUG [30474]: Closing database connection -- 13:07:48.356 SQL [30474]: pgsql_close() -- 15:04:19.154 INFO [30492]: COREGRADE is starting... -- 15:04:19.154 INFO [30492]: Version from config: 1.0 -- 15:04:19.154 DEBUG [30492]: Connecting to database... -- 15:04:19.154 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:04:19.155 SQL [30492]: pgsql_db_connect() -- 15:04:19.159 DEBUG [30492]: Database connection successful -- 15:04:19.159 INFO [30492]: _SERVER found -- 15:04:19.159 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 15:04:19.159 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 15:04:19.159 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=4ulljcvvp29h6iaflffs2ejddqa96tdn -- 15:04:19.159 INFO [30492]: QUERY_STRING = /auth -- 15:04:19.159 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:04:19.198 INFO [30492]: COREGRADE is stopping... -- 15:04:19.198 DEBUG [30492]: Closing database connection -- 15:04:19.198 SQL [30492]: pgsql_close() -- 15:04:19.662 INFO [30492]: COREGRADE is starting... -- 15:04:19.663 INFO [30492]: Version from config: 1.0 -- 15:04:19.663 DEBUG [30492]: Connecting to database... -- 15:04:19.663 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:04:19.663 SQL [30492]: pgsql_db_connect() -- 15:04:19.667 DEBUG [30492]: Database connection successful -- 15:04:19.667 INFO [30492]: _SERVER found -- 15:04:19.667 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 15:04:19.667 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 15:04:19.667 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ui738kdmg2kgv996gt7sd1mhr1pjtos3 -- 15:04:19.667 INFO [30492]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:04:19.667 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:04:19.679 INFO [30492]: COREGRADE is stopping... -- 15:04:19.679 DEBUG [30492]: Closing database connection -- 15:04:19.679 SQL [30492]: pgsql_close() -- 15:04:19.709 INFO [24847]: COREGRADE is starting... -- 15:04:19.710 INFO [24847]: Version from config: 1.0 -- 15:04:19.710 DEBUG [24847]: Connecting to database... -- 15:04:19.710 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:04:19.710 SQL [24847]: pgsql_db_connect() -- 15:04:19.714 DEBUG [24847]: Database connection successful -- 15:04:19.714 INFO [24847]: _SERVER found -- 15:04:19.714 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 15:04:19.714 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 15:04:19.714 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ui738kdmg2kgv996gt7sd1mhr1pjtos3 -- 15:04:19.714 INFO [24847]: QUERY_STRING = /app-assets/data/locales/en.json -- 15:04:19.714 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:04:19.726 INFO [24847]: COREGRADE is stopping... -- 15:04:19.726 DEBUG [24847]: Closing database connection -- 15:04:19.726 SQL [24847]: pgsql_close() -- 15:51:25.146 INFO [30475]: COREGRADE is starting... -- 15:51:25.148 INFO [30475]: Version from config: 1.0 -- 15:51:25.148 DEBUG [30475]: Connecting to database... -- 15:51:25.148 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:51:25.148 SQL [30475]: pgsql_db_connect() -- 15:51:25.190 INFO [30475]: COREGRADE is starting... -- 15:51:25.191 INFO [30475]: Version from config: 1.0 -- 15:51:25.191 DEBUG [30475]: Connecting to database... -- 15:51:25.191 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:51:25.191 SQL [30475]: pgsql_db_connect() -- 15:51:25.194 DEBUG [30475]: Database connection successful -- 15:51:25.194 INFO [30475]: _SERVER found -- 15:51:25.194 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 15:51:25.194 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 15:51:25.194 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ui738kdmg2kgv996gt7sd1mhr1pjtos3 -- 15:51:25.194 INFO [30475]: QUERY_STRING = -- 15:51:25.194 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:51:25.195 INFO [30475]: SystemStatus()09-09-********~************ -- 15:51:25.195 INFO [30475]: long coregrade_api_main(CVars in, CVars &out) -- 15:51:25.195 INFO [30475]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 15:51:25.195 INFO [30475]: account calls -- 15:51:25.195 INFO [30475]: account_calls() -- 15:51:25.195 INFO [30475]: LoginCoreGradeAccount() -- 15:51:25.195 FLOG_MAX [30475]: REQ_STRING(username) -- 15:51:25.195 FLOG_MAX [30475]: REQ_STRING(password) -- 15:51:25.195 FLOG_MAX [30475]: REQ_STRING(sessionid) -- 15:51:25.195 FLOG_MAX [30475]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:51:25.195 SQL [30475]: pgsql_query() -- 15:51:25.195 SQL [30475]: About to run query: -- 15:51:25.195 SQL [30475]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 15:51:25.198 SQL [30475]: Found rows: 1 -- 15:51:25.198 FLOG_MAX [30475]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 15:51:25.199 INFO [30475]: long SessionCheck(long uid, const char *sessionid, int create ) -- 15:51:25.199 SQL [30475]: pgsql_exec() -- 15:51:25.199 SQL [30475]: About to run query: -- 15:51:25.199 SQL [30475]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 15:51:25.200 SQL [30475]: PQcmdTuples: 1 -- 15:51:25.200 SQL [30475]: Affected rows: 1 -- 15:51:25.200 SQL [30475]: pgsql_exec() -- 15:51:25.200 SQL [30475]: About to run query: -- 15:51:25.200 SQL [30475]: DELETE FROM members_session WHERE member_id=5 -- 15:51:25.200 SQL [30475]: PQcmdTuples: 0 -- 15:51:25.200 SQL [30475]: Affected rows: 0 -- 15:51:25.200 SQL [30475]: pgsql_query() -- 15:51:25.200 SQL [30475]: About to run query: -- 15:51:25.200 SQL [30475]: SELECT * FROM members_session WHERE member_id=5 AND session<>'A0FAAF4F6117E7CC88385664C1AA7D29' -- 15:51:25.201 SQL [30475]: Found rows: 0 -- 15:51:25.201 SQL [30475]: Found rows: 0 -- 15:51:25.201 FLOG_MAX [30475]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:51:25.201 SQL [30475]: pgsql_query() -- 15:51:25.201 SQL [30475]: About to run query: -- 15:51:25.201 SQL [30475]: SELECT * FROM members_session WHERE member_id=5 AND session='A0FAAF4F6117E7CC88385664C1AA7D29' -- 15:51:25.201 SQL [30475]: Found rows: 0 -- 15:51:25.202 SQL [30475]: Found rows: 0 -- 15:51:25.202 FLOG_MAX [30475]: insert_db_record() -- 15:51:25.202 SQL [30475]: pgsql_exec() -- 15:51:25.202 SQL [30475]: About to run query: -- 15:51:25.202 SQL [30475]: INSERT INTO members_session (member_id,session) VALUES ('5','A0FAAF4F6117E7CC88385664C1AA7D29') -- 15:51:25.203 SQL [30475]: PQcmdTuples: 1 -- 15:51:25.203 SQL [30475]: Affected rows: 1 -- 15:51:25.203 FLOG_MAX [30475]: SELECT currval('members_session_id_seq') -- 15:51:25.203 SQL [30475]: pgsql_query() -- 15:51:25.203 SQL [30475]: About to run query: -- 15:51:25.203 SQL [30475]: SELECT currval('members_session_id_seq') -- 15:51:25.203 SQL [30475]: Found rows: 1 -- 15:51:25.203 INFO [30475]: CreateDefaultPage() -- 15:51:25.203 FLOG_MAX [30475]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:51:25.203 SQL [30475]: pgsql_query() -- 15:51:25.203 SQL [30475]: About to run query: -- 15:51:25.203 SQL [30475]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 15:51:25.204 SQL [30475]: Found rows: 1 -- 15:51:25.204 FLOG_MAX [30475]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 15:51:25.204 SQL [30475]: pgsql_query() -- 15:51:25.204 SQL [30475]: About to run query: -- 15:51:25.204 SQL [30475]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 15:51:25.204 SQL [30475]: Found rows: 1 -- 15:51:25.204 INFO [30475]: /CreateDefaultPage() -- 15:51:25.204 INFO [30475]: /LoginCoreGradeAccount() -- 15:51:25.204 INFO [30475]: RET: added=2020-02-05 06:47:23.982154 -- 15:51:25.204 INFO [30475]: RET: email=ameye+11@chiefsoft.com -- 15:51:25.204 INFO [30475]: RET: firstname=Olu -- 15:51:25.204 INFO [30475]: RET: id=5 -- 15:51:25.204 INFO [30475]: RET: last_login= -- 15:51:25.204 INFO [30475]: RET: lastname=Amey -- 15:51:25.204 INFO [30475]: RET: loc=192.168.1.13 -- 15:51:25.204 INFO [30475]: RET: member_id=5 -- 15:51:25.204 INFO [30475]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 15:51:25.204 INFO [30475]: RET: phone= -- 15:51:25.204 INFO [30475]: RET: pid= -- 15:51:25.204 INFO [30475]: RET: result=YES I GET TO BACK END -- 15:51:25.204 INFO [30475]: RET: sessionid=A0FAAF4F6117E7CC88385664C1AA7D29 -- 15:51:25.204 INFO [30475]: RET: status=1 -- 15:51:25.204 INFO [30475]: RET: stauts=OK -- 15:51:25.204 INFO [30475]: RET: username=ameye+11@chiefsoft.com -- 15:51:25.204 INFO [30475]: RET: verified= -- 15:51:25.206 INFO [30475]: COREGRADE is stopping... -- 15:51:25.206 DEBUG [30475]: Closing database connection -- 15:51:25.206 SQL [30475]: pgsql_close() -- 15:51:25.154 DEBUG [30475]: Database connection successful -- 15:51:25.154 INFO [30475]: _SERVER found -- 15:51:25.154 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 15:51:25.154 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 15:51:25.154 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ui738kdmg2kgv996gt7sd1mhr1pjtos3 -- 15:51:25.154 INFO [30475]: QUERY_STRING = /auth -- 15:51:25.154 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:51:25.206 INFO [30475]: COREGRADE is stopping... -- 15:51:25.206 DEBUG [30475]: Closing database connection -- 15:51:25.206 SQL [30475]: pgsql_close() -- 15:51:25.235 INFO [30475]: COREGRADE is starting... -- 15:51:25.235 INFO [30475]: Version from config: 1.0 -- 15:51:25.235 DEBUG [30475]: Connecting to database... -- 15:51:25.235 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:51:25.235 SQL [30475]: pgsql_db_connect() -- 15:51:25.240 DEBUG [30475]: Database connection successful -- 15:51:25.240 INFO [30475]: _SERVER found -- 15:51:25.240 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 15:51:25.240 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 15:51:25.240 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=tj3p8p31qj6ao3iecgtn3grkk5ms3o80 -- 15:51:25.240 INFO [30475]: QUERY_STRING = /member/index -- 15:51:25.240 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:51:25.275 INFO [30475]: COREGRADE is stopping... -- 15:51:25.275 DEBUG [30475]: Closing database connection -- 15:51:25.275 SQL [30475]: pgsql_close() -- 15:51:25.585 INFO [30475]: COREGRADE is starting... -- 15:51:25.585 INFO [30475]: Version from config: 1.0 -- 15:51:25.585 DEBUG [30475]: Connecting to database... -- 15:51:25.585 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:51:25.585 SQL [30475]: pgsql_db_connect() -- 15:51:25.590 DEBUG [30475]: Database connection successful -- 15:51:25.590 INFO [30475]: _SERVER found -- 15:51:25.590 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 15:51:25.590 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 15:51:25.590 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=tj3p8p31qj6ao3iecgtn3grkk5ms3o80 -- 15:51:25.590 INFO [30475]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:51:25.590 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:51:25.601 INFO [30475]: COREGRADE is stopping... -- 15:51:25.601 DEBUG [30475]: Closing database connection -- 15:51:25.601 SQL [30475]: pgsql_close() -- 15:51:25.625 INFO [30475]: COREGRADE is starting... -- 15:51:25.625 INFO [30475]: Version from config: 1.0 -- 15:51:25.625 DEBUG [30475]: Connecting to database... -- 15:51:25.625 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:51:25.625 SQL [30475]: pgsql_db_connect() -- 15:51:25.629 DEBUG [30475]: Database connection successful -- 15:51:25.629 INFO [30475]: _SERVER found -- 15:51:25.629 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 15:51:25.629 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 15:51:25.629 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=tj3p8p31qj6ao3iecgtn3grkk5ms3o80 -- 15:51:25.629 INFO [30475]: QUERY_STRING = /app-assets/data/locales/en.json -- 15:51:25.629 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:51:25.640 INFO [30475]: COREGRADE is stopping... -- 15:51:25.640 DEBUG [30475]: Closing database connection -- 15:51:25.640 SQL [30475]: pgsql_close() -- 15:54:00.058 INFO [24137]: COREGRADE is starting... -- 15:54:00.059 INFO [24137]: Version from config: 1.0 -- 15:54:00.059 DEBUG [24137]: Connecting to database... -- 15:54:00.059 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:54:00.059 SQL [24137]: pgsql_db_connect() -- 15:54:00.065 DEBUG [24137]: Database connection successful -- 15:54:00.065 INFO [24137]: _SERVER found -- 15:54:00.065 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 15:54:00.065 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 15:54:00.065 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361 -- 15:54:00.065 INFO [24137]: QUERY_STRING = -- 15:54:00.065 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:54:00.100 INFO [24137]: COREGRADE is stopping... -- 15:54:00.100 DEBUG [24137]: Closing database connection -- 15:54:00.100 SQL [24137]: pgsql_close() -- 15:54:00.454 INFO [24137]: COREGRADE is starting... -- 15:54:00.454 INFO [24137]: Version from config: 1.0 -- 15:54:00.454 DEBUG [24137]: Connecting to database... -- 15:54:00.454 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:54:00.454 SQL [24137]: pgsql_db_connect() -- 15:54:00.466 INFO [24136]: COREGRADE is starting... -- 15:54:00.467 INFO [24136]: Version from config: 1.0 -- 15:54:00.467 DEBUG [24136]: Connecting to database... -- 15:54:00.467 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:54:00.467 SQL [24136]: pgsql_db_connect() -- 15:54:00.458 DEBUG [24137]: Database connection successful -- 15:54:00.458 INFO [24137]: _SERVER found -- 15:54:00.458 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 15:54:00.458 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 15:54:00.458 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=mlj1sf6vq75k5gpnlcut4tg1ctgofo91 -- 15:54:00.458 INFO [24137]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 15:54:00.458 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:54:00.470 INFO [24137]: COREGRADE is stopping... -- 15:54:00.470 DEBUG [24137]: Closing database connection -- 15:54:00.470 SQL [24137]: pgsql_close() -- 15:54:00.471 DEBUG [24136]: Database connection successful -- 15:54:00.471 INFO [24136]: _SERVER found -- 15:54:00.471 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 15:54:00.471 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 15:54:00.471 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=mlj1sf6vq75k5gpnlcut4tg1ctgofo91 -- 15:54:00.471 INFO [24136]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:54:00.471 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:54:00.483 INFO [24136]: COREGRADE is stopping... -- 15:54:00.483 DEBUG [24136]: Closing database connection -- 15:54:00.483 SQL [24136]: pgsql_close() -- 15:54:04.636 INFO [24136]: COREGRADE is starting... -- 15:54:04.636 INFO [24136]: Version from config: 1.0 -- 15:54:04.636 DEBUG [24136]: Connecting to database... -- 15:54:04.636 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:54:04.636 SQL [24136]: pgsql_db_connect() -- 15:54:04.640 DEBUG [24136]: Database connection successful -- 15:54:04.640 INFO [24136]: _SERVER found -- 15:54:04.640 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 15:54:04.640 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 15:54:04.640 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=mlj1sf6vq75k5gpnlcut4tg1ctgofo91; _gat_gtag_UA_54829827_2=1 -- 15:54:04.640 INFO [24136]: QUERY_STRING = /auth -- 15:54:04.640 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:54:04.673 INFO [24136]: COREGRADE is stopping... -- 15:54:04.673 DEBUG [24136]: Closing database connection -- 15:54:04.673 SQL [24136]: pgsql_close() -- 15:54:04.989 INFO [24136]: COREGRADE is starting... -- 15:54:04.989 INFO [24136]: Version from config: 1.0 -- 15:54:04.989 DEBUG [24136]: Connecting to database... -- 15:54:04.989 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:54:04.989 SQL [24136]: pgsql_db_connect() -- 15:54:04.990 INFO [24139]: COREGRADE is starting... -- 15:54:04.990 INFO [24139]: Version from config: 1.0 -- 15:54:04.990 DEBUG [24139]: Connecting to database... -- 15:54:04.990 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:54:04.991 SQL [24139]: pgsql_db_connect() -- 15:54:04.994 DEBUG [24136]: Database connection successful -- 15:54:04.994 INFO [24136]: _SERVER found -- 15:54:04.994 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 15:54:04.994 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 15:54:04.994 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=mlj1sf6vq75k5gpnlcut4tg1ctgofo91; _gat_gtag_UA_54829827_2=1 -- 15:54:04.994 INFO [24136]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:54:04.994 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:54:05.005 INFO [24136]: COREGRADE is stopping... -- 15:54:05.005 DEBUG [24136]: Closing database connection -- 15:54:05.005 SQL [24136]: pgsql_close() -- 15:54:04.994 DEBUG [24139]: Database connection successful -- 15:54:04.994 INFO [24139]: _SERVER found -- 15:54:04.994 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 15:54:04.994 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 15:54:04.994 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=mlj1sf6vq75k5gpnlcut4tg1ctgofo91; _gat_gtag_UA_54829827_2=1 -- 15:54:04.994 INFO [24139]: QUERY_STRING = /app-assets/data/locales/en.json -- 15:54:04.994 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:54:05.007 INFO [24139]: COREGRADE is stopping... -- 15:54:05.007 DEBUG [24139]: Closing database connection -- 15:54:05.007 SQL [24139]: pgsql_close() -- 15:54:06.732 INFO [24136]: COREGRADE is starting... -- 15:54:06.732 INFO [24136]: Version from config: 1.0 -- 15:54:06.732 DEBUG [24136]: Connecting to database... -- 15:54:06.732 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:54:06.732 SQL [24136]: pgsql_db_connect() -- 15:54:06.767 INFO [24136]: COREGRADE is starting... -- 15:54:06.767 INFO [24136]: Version from config: 1.0 -- 15:54:06.767 DEBUG [24136]: Connecting to database... -- 15:54:06.767 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:54:06.767 SQL [24136]: pgsql_db_connect() -- 15:54:06.771 DEBUG [24136]: Database connection successful -- 15:54:06.771 INFO [24136]: _SERVER found -- 15:54:06.771 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 15:54:06.771 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 15:54:06.771 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=mlj1sf6vq75k5gpnlcut4tg1ctgofo91; _gat_gtag_UA_54829827_2=1 -- 15:54:06.771 INFO [24136]: QUERY_STRING = -- 15:54:06.771 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:54:06.771 INFO [24136]: SystemStatus()09-09-********~************ -- 15:54:06.771 INFO [24136]: long coregrade_api_main(CVars in, CVars &out) -- 15:54:06.771 INFO [24136]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 15:54:06.771 INFO [24136]: account calls -- 15:54:06.771 INFO [24136]: account_calls() -- 15:54:06.771 INFO [24136]: LoginCoreGradeAccount() -- 15:54:06.771 FLOG_MAX [24136]: REQ_STRING(username) -- 15:54:06.771 FLOG_MAX [24136]: REQ_STRING(password) -- 15:54:06.771 FLOG_MAX [24136]: REQ_STRING(sessionid) -- 15:54:06.771 FLOG_MAX [24136]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:54:06.771 SQL [24136]: pgsql_query() -- 15:54:06.771 SQL [24136]: About to run query: -- 15:54:06.771 SQL [24136]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 15:54:06.774 SQL [24136]: Found rows: 1 -- 15:54:06.774 FLOG_MAX [24136]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=15 -- 15:54:06.774 INFO [24136]: long SessionCheck(long uid, const char *sessionid, int create ) -- 15:54:06.774 SQL [24136]: pgsql_exec() -- 15:54:06.775 SQL [24136]: About to run query: -- 15:54:06.775 SQL [24136]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 15:54:06.790 SQL [24136]: PQcmdTuples: 1 -- 15:54:06.790 SQL [24136]: Affected rows: 1 -- 15:54:06.790 SQL [24136]: pgsql_exec() -- 15:54:06.790 SQL [24136]: About to run query: -- 15:54:06.790 SQL [24136]: DELETE FROM members_session WHERE member_id=7 -- 15:54:06.790 SQL [24136]: PQcmdTuples: 0 -- 15:54:06.790 SQL [24136]: Affected rows: 0 -- 15:54:06.790 SQL [24136]: pgsql_query() -- 15:54:06.790 SQL [24136]: About to run query: -- 15:54:06.790 SQL [24136]: SELECT * FROM members_session WHERE member_id=7 AND session<>'F038525C60A9A9ACF3BD3027D59898AD' -- 15:54:06.791 SQL [24136]: Found rows: 0 -- 15:54:06.791 SQL [24136]: Found rows: 0 -- 15:54:06.791 FLOG_MAX [24136]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:54:06.791 SQL [24136]: pgsql_query() -- 15:54:06.791 SQL [24136]: About to run query: -- 15:54:06.791 SQL [24136]: SELECT * FROM members_session WHERE member_id=7 AND session='F038525C60A9A9ACF3BD3027D59898AD' -- 15:54:06.792 SQL [24136]: Found rows: 0 -- 15:54:06.792 SQL [24136]: Found rows: 0 -- 15:54:06.792 FLOG_MAX [24136]: insert_db_record() -- 15:54:06.792 SQL [24136]: pgsql_exec() -- 15:54:06.792 SQL [24136]: About to run query: -- 15:54:06.792 SQL [24136]: INSERT INTO members_session (member_id,session) VALUES ('7','F038525C60A9A9ACF3BD3027D59898AD') -- 15:54:06.799 SQL [24136]: PQcmdTuples: 1 -- 15:54:06.799 SQL [24136]: Affected rows: 1 -- 15:54:06.799 FLOG_MAX [24136]: SELECT currval('members_session_id_seq') -- 15:54:06.799 SQL [24136]: pgsql_query() -- 15:54:06.799 SQL [24136]: About to run query: -- 15:54:06.799 SQL [24136]: SELECT currval('members_session_id_seq') -- 15:54:06.800 SQL [24136]: Found rows: 1 -- 15:54:06.800 INFO [24136]: CreateDefaultPage() -- 15:54:06.800 FLOG_MAX [24136]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:54:06.800 SQL [24136]: pgsql_query() -- 15:54:06.800 SQL [24136]: About to run query: -- 15:54:06.800 SQL [24136]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 15:54:06.800 SQL [24136]: Found rows: 1 -- 15:54:06.800 FLOG_MAX [24136]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 15:54:06.800 SQL [24136]: pgsql_query() -- 15:54:06.800 SQL [24136]: About to run query: -- 15:54:06.800 SQL [24136]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 15:54:06.801 SQL [24136]: Found rows: 0 -- 15:54:06.801 SQL [24136]: Found rows: 0 -- 15:54:06.801 FLOG_MAX [24136]: insert_db_record() -- 15:54:06.801 SQL [24136]: pgsql_exec() -- 15:54:06.801 SQL [24136]: About to run query: -- 15:54:06.801 SQL [24136]: INSERT INTO members_pages (member_id,page_key,page_mode,title) VALUES ('7','PG59F6FD30FC24B445A7849593683FAC24','DEFAULT','My default page.') -- 15:54:06.802 SQL [24136]: PQcmdTuples: 1 -- 15:54:06.802 SQL [24136]: Affected rows: 1 -- 15:54:06.802 FLOG_MAX [24136]: SELECT currval('members_pages_id_seq') -- 15:54:06.802 SQL [24136]: pgsql_query() -- 15:54:06.802 SQL [24136]: About to run query: -- 15:54:06.802 SQL [24136]: SELECT currval('members_pages_id_seq') -- 15:54:06.802 SQL [24136]: Found rows: 1 -- 15:54:06.802 INFO [24136]: /CreateDefaultPage() -- 15:54:06.803 INFO [24136]: /LoginCoreGradeAccount() -- 15:54:06.803 INFO [24136]: RET: added=2020-02-05 09:42:12.816064 -- 15:54:06.803 INFO [24136]: RET: email=tokslaw@chiefsoft.com -- 15:54:06.803 INFO [24136]: RET: firstname=Tokunbo -- 15:54:06.803 INFO [24136]: RET: id=7 -- 15:54:06.803 INFO [24136]: RET: last_login= -- 15:54:06.803 INFO [24136]: RET: lastname=Lawal -- 15:54:06.803 INFO [24136]: RET: loc=192.168.1.13 -- 15:54:06.803 INFO [24136]: RET: member_id=7 -- 15:54:06.803 INFO [24136]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 15:54:06.803 INFO [24136]: RET: phone= -- 15:54:06.803 INFO [24136]: RET: pid= -- 15:54:06.803 INFO [24136]: RET: result=YES I GET TO BACK END -- 15:54:06.803 INFO [24136]: RET: sessionid=F038525C60A9A9ACF3BD3027D59898AD -- 15:54:06.803 INFO [24136]: RET: status=1 -- 15:54:06.803 INFO [24136]: RET: stauts=OK -- 15:54:06.803 INFO [24136]: RET: username=tokslaw@chiefsoft.com -- 15:54:06.803 INFO [24136]: RET: verified= -- 15:54:06.804 INFO [24136]: COREGRADE is stopping... -- 15:54:06.804 DEBUG [24136]: Closing database connection -- 15:54:06.804 SQL [24136]: pgsql_close() -- 15:54:06.736 DEBUG [24136]: Database connection successful -- 15:54:06.736 INFO [24136]: _SERVER found -- 15:54:06.736 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 15:54:06.736 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 15:54:06.736 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=mlj1sf6vq75k5gpnlcut4tg1ctgofo91; _gat_gtag_UA_54829827_2=1 -- 15:54:06.736 INFO [24136]: QUERY_STRING = /auth -- 15:54:06.736 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:54:06.805 INFO [24136]: COREGRADE is stopping... -- 15:54:06.805 DEBUG [24136]: Closing database connection -- 15:54:06.805 SQL [24136]: pgsql_close() -- 15:54:06.814 INFO [24136]: COREGRADE is starting... -- 15:54:06.814 INFO [24136]: Version from config: 1.0 -- 15:54:06.814 DEBUG [24136]: Connecting to database... -- 15:54:06.814 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:54:06.814 SQL [24136]: pgsql_db_connect() -- 15:54:06.818 DEBUG [24136]: Database connection successful -- 15:54:06.818 INFO [24136]: _SERVER found -- 15:54:06.818 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 15:54:06.818 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 15:54:06.818 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=mlj1sf6vq75k5gpnlcut4tg1ctgofo91; _gat_gtag_UA_54829827_2=1 -- 15:54:06.818 INFO [24136]: QUERY_STRING = /member/index -- 15:54:06.818 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:54:06.854 INFO [24136]: COREGRADE is stopping... -- 15:54:06.854 DEBUG [24136]: Closing database connection -- 15:54:06.854 SQL [24136]: pgsql_close() -- 15:54:07.065 INFO [24139]: COREGRADE is starting... -- 15:54:07.066 INFO [24139]: Version from config: 1.0 -- 15:54:07.066 DEBUG [24139]: Connecting to database... -- 15:54:07.066 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:54:07.066 SQL [24139]: pgsql_db_connect() -- 15:54:07.070 DEBUG [24139]: Database connection successful -- 15:54:07.070 INFO [24139]: _SERVER found -- 15:54:07.070 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 15:54:07.070 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 15:54:07.070 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=mlj1sf6vq75k5gpnlcut4tg1ctgofo91; _gat_gtag_UA_54829827_2=1 -- 15:54:07.070 INFO [24139]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:54:07.070 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:54:07.081 INFO [24139]: COREGRADE is stopping... -- 15:54:07.081 DEBUG [24139]: Closing database connection -- 15:54:07.081 SQL [24139]: pgsql_close() -- 15:54:07.194 INFO [24139]: COREGRADE is starting... -- 15:54:07.194 INFO [24139]: Version from config: 1.0 -- 15:54:07.194 DEBUG [24139]: Connecting to database... -- 15:54:07.194 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:54:07.194 SQL [24139]: pgsql_db_connect() -- 15:54:07.198 DEBUG [24139]: Database connection successful -- 15:54:07.198 INFO [24139]: _SERVER found -- 15:54:07.198 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 15:54:07.198 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 15:54:07.198 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=mlj1sf6vq75k5gpnlcut4tg1ctgofo91; _gat_gtag_UA_54829827_2=1 -- 15:54:07.198 INFO [24139]: QUERY_STRING = /app-assets/data/locales/en.json -- 15:54:07.198 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:54:07.210 INFO [24139]: COREGRADE is stopping... -- 15:54:07.210 DEBUG [24139]: Closing database connection -- 15:54:07.210 SQL [24139]: pgsql_close() -- 15:56:08.419 INFO [24138]: COREGRADE is starting... -- 15:56:08.419 INFO [24138]: Version from config: 1.0 -- 15:56:08.419 DEBUG [24138]: Connecting to database... -- 15:56:08.420 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:56:08.420 SQL [24138]: pgsql_db_connect() -- 15:56:08.424 DEBUG [24138]: Database connection successful -- 15:56:08.424 INFO [24138]: _SERVER found -- 15:56:08.424 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 15:56:08.424 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 15:56:08.424 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=mlj1sf6vq75k5gpnlcut4tg1ctgofo91 -- 15:56:08.424 INFO [24138]: QUERY_STRING = /member/index -- 15:56:08.424 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:56:08.456 INFO [24138]: COREGRADE is stopping... -- 15:56:08.456 DEBUG [24138]: Closing database connection -- 15:56:08.456 SQL [24138]: pgsql_close() -- 15:56:08.706 INFO [30474]: COREGRADE is starting... -- 15:56:08.706 INFO [30474]: Version from config: 1.0 -- 15:56:08.706 DEBUG [30474]: Connecting to database... -- 15:56:08.706 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:56:08.706 SQL [30474]: pgsql_db_connect() -- 15:56:08.710 DEBUG [30474]: Database connection successful -- 15:56:08.710 INFO [30474]: _SERVER found -- 15:56:08.710 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 15:56:08.710 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 15:56:08.710 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=mlj1sf6vq75k5gpnlcut4tg1ctgofo91 -- 15:56:08.710 INFO [30474]: QUERY_STRING = /favicon.ico -- 15:56:08.710 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:56:08.723 INFO [30474]: COREGRADE is stopping... -- 15:56:08.723 DEBUG [30474]: Closing database connection -- 15:56:08.723 SQL [30474]: pgsql_close() -- 15:56:10.826 INFO [30492]: COREGRADE is starting... -- 15:56:10.826 INFO [30492]: Version from config: 1.0 -- 15:56:10.826 DEBUG [30492]: Connecting to database... -- 15:56:10.826 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:56:10.826 SQL [30492]: pgsql_db_connect() -- 15:56:10.830 DEBUG [30492]: Database connection successful -- 15:56:10.830 INFO [30492]: _SERVER found -- 15:56:10.830 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 15:56:10.830 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 15:56:10.830 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=tj3p8p31qj6ao3iecgtn3grkk5ms3o80 -- 15:56:10.830 INFO [30492]: QUERY_STRING = /member/index -- 15:56:10.830 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:56:10.866 INFO [30492]: COREGRADE is stopping... -- 15:56:10.866 DEBUG [30492]: Closing database connection -- 15:56:10.866 SQL [30492]: pgsql_close() -- 15:56:13.770 INFO [24847]: COREGRADE is starting... -- 15:56:13.771 INFO [24847]: Version from config: 1.0 -- 15:56:13.771 DEBUG [24847]: Connecting to database... -- 15:56:13.771 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:56:13.771 SQL [24847]: pgsql_db_connect() -- 15:56:13.775 DEBUG [24847]: Database connection successful -- 15:56:13.775 INFO [24847]: _SERVER found -- 15:56:13.775 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 15:56:13.775 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 15:56:13.775 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=mlj1sf6vq75k5gpnlcut4tg1ctgofo91 -- 15:56:13.775 INFO [24847]: QUERY_STRING = /member/index -- 15:56:13.775 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:56:13.810 INFO [24847]: COREGRADE is stopping... -- 15:56:13.810 DEBUG [24847]: Closing database connection -- 15:56:13.810 SQL [24847]: pgsql_close() -- 15:57:04.802 INFO [30475]: COREGRADE is starting... -- 15:57:04.802 INFO [30475]: Version from config: 1.0 -- 15:57:04.802 DEBUG [30475]: Connecting to database... -- 15:57:04.802 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:04.802 SQL [30475]: pgsql_db_connect() -- 15:57:04.807 DEBUG [30475]: Database connection successful -- 15:57:04.807 INFO [30475]: _SERVER found -- 15:57:04.807 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 15:57:04.807 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 15:57:04.807 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=mlj1sf6vq75k5gpnlcut4tg1ctgofo91 -- 15:57:04.807 INFO [30475]: QUERY_STRING = /member/index -- 15:57:04.807 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:57:04.839 INFO [30475]: COREGRADE is stopping... -- 15:57:04.839 DEBUG [30475]: Closing database connection -- 15:57:04.839 SQL [30475]: pgsql_close() -- 15:57:09.354 INFO [24136]: COREGRADE is starting... -- 15:57:09.354 INFO [24136]: Version from config: 1.0 -- 15:57:09.354 DEBUG [24136]: Connecting to database... -- 15:57:09.354 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:09.354 SQL [24136]: pgsql_db_connect() -- 15:57:09.358 DEBUG [24136]: Database connection successful -- 15:57:09.358 INFO [24136]: _SERVER found -- 15:57:09.358 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 15:57:09.358 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 15:57:09.358 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=tj3p8p31qj6ao3iecgtn3grkk5ms3o80 -- 15:57:09.358 INFO [24136]: QUERY_STRING = /aux -- 15:57:09.358 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:57:09.370 INFO [24136]: COREGRADE is stopping... -- 15:57:09.370 DEBUG [24136]: Closing database connection -- 15:57:09.370 SQL [24136]: pgsql_close() -- 15:57:14.229 INFO [24136]: COREGRADE is starting... -- 15:57:14.229 INFO [24136]: Version from config: 1.0 -- 15:57:14.229 DEBUG [24136]: Connecting to database... -- 15:57:14.229 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:14.229 SQL [24136]: pgsql_db_connect() -- 15:57:14.233 DEBUG [24136]: Database connection successful -- 15:57:14.233 INFO [24136]: _SERVER found -- 15:57:14.233 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 15:57:14.233 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 15:57:14.233 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=tj3p8p31qj6ao3iecgtn3grkk5ms3o80 -- 15:57:14.233 INFO [24136]: QUERY_STRING = /auth -- 15:57:14.233 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:57:14.265 INFO [24136]: COREGRADE is stopping... -- 15:57:14.266 DEBUG [24136]: Closing database connection -- 15:57:14.266 SQL [24136]: pgsql_close() -- 15:57:14.461 INFO [24136]: COREGRADE is starting... -- 15:57:14.461 INFO [24136]: Version from config: 1.0 -- 15:57:14.461 DEBUG [24136]: Connecting to database... -- 15:57:14.461 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:14.461 SQL [24136]: pgsql_db_connect() -- 15:57:14.465 DEBUG [24136]: Database connection successful -- 15:57:14.465 INFO [24136]: _SERVER found -- 15:57:14.465 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 15:57:14.465 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 15:57:14.465 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=r08e0b1j7toi4cv4ghi0no0svcaolgvc -- 15:57:14.465 INFO [24136]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:57:14.465 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:57:14.476 INFO [24136]: COREGRADE is stopping... -- 15:57:14.476 DEBUG [24136]: Closing database connection -- 15:57:14.476 SQL [24136]: pgsql_close() -- 15:57:14.477 INFO [24137]: COREGRADE is starting... -- 15:57:14.478 INFO [24137]: Version from config: 1.0 -- 15:57:14.478 DEBUG [24137]: Connecting to database... -- 15:57:14.478 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:14.478 SQL [24137]: pgsql_db_connect() -- 15:57:14.482 DEBUG [24137]: Database connection successful -- 15:57:14.482 INFO [24137]: _SERVER found -- 15:57:14.482 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 15:57:14.482 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 15:57:14.482 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=r08e0b1j7toi4cv4ghi0no0svcaolgvc -- 15:57:14.482 INFO [24137]: QUERY_STRING = /app-assets/data/locales/en.json -- 15:57:14.482 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:57:14.493 INFO [24137]: COREGRADE is stopping... -- 15:57:14.493 DEBUG [24137]: Closing database connection -- 15:57:14.493 SQL [24137]: pgsql_close() -- 15:57:15.970 INFO [24137]: COREGRADE is starting... -- 15:57:15.971 INFO [24137]: Version from config: 1.0 -- 15:57:15.971 DEBUG [24137]: Connecting to database... -- 15:57:15.971 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:15.971 SQL [24137]: pgsql_db_connect() -- 15:57:16.005 INFO [24137]: COREGRADE is starting... -- 15:57:16.006 INFO [24137]: Version from config: 1.0 -- 15:57:16.006 DEBUG [24137]: Connecting to database... -- 15:57:16.006 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:16.006 SQL [24137]: pgsql_db_connect() -- 15:57:16.010 DEBUG [24137]: Database connection successful -- 15:57:16.010 INFO [24137]: _SERVER found -- 15:57:16.010 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 15:57:16.010 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 15:57:16.010 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=r08e0b1j7toi4cv4ghi0no0svcaolgvc -- 15:57:16.010 INFO [24137]: QUERY_STRING = -- 15:57:16.010 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:57:16.010 INFO [24137]: SystemStatus()09-09-********~************ -- 15:57:16.010 INFO [24137]: long coregrade_api_main(CVars in, CVars &out) -- 15:57:16.010 INFO [24137]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 15:57:16.010 INFO [24137]: account calls -- 15:57:16.010 INFO [24137]: account_calls() -- 15:57:16.010 INFO [24137]: LoginCoreGradeAccount() -- 15:57:16.010 FLOG_MAX [24137]: REQ_STRING(username) -- 15:57:16.010 FLOG_MAX [24137]: REQ_STRING(password) -- 15:57:16.010 FLOG_MAX [24137]: REQ_STRING(sessionid) -- 15:57:16.010 FLOG_MAX [24137]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:57:16.010 SQL [24137]: pgsql_query() -- 15:57:16.010 SQL [24137]: About to run query: -- 15:57:16.010 SQL [24137]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 15:57:16.013 SQL [24137]: Found rows: 1 -- 15:57:16.013 FLOG_MAX [24137]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 15:57:16.013 INFO [24137]: long SessionCheck(long uid, const char *sessionid, int create ) -- 15:57:16.013 SQL [24137]: pgsql_exec() -- 15:57:16.013 SQL [24137]: About to run query: -- 15:57:16.013 SQL [24137]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 15:57:16.014 SQL [24137]: PQcmdTuples: 0 -- 15:57:16.014 SQL [24137]: Affected rows: 0 -- 15:57:16.014 SQL [24137]: pgsql_exec() -- 15:57:16.014 SQL [24137]: About to run query: -- 15:57:16.014 SQL [24137]: DELETE FROM members_session WHERE member_id=5 -- 15:57:16.015 SQL [24137]: PQcmdTuples: 1 -- 15:57:16.015 SQL [24137]: Affected rows: 1 -- 15:57:16.015 SQL [24137]: pgsql_query() -- 15:57:16.015 SQL [24137]: About to run query: -- 15:57:16.015 SQL [24137]: SELECT * FROM members_session WHERE member_id=5 AND session<>'04F663016E6960FE95C68962599F8C09' -- 15:57:16.016 SQL [24137]: Found rows: 0 -- 15:57:16.016 SQL [24137]: Found rows: 0 -- 15:57:16.016 FLOG_MAX [24137]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:57:16.016 SQL [24137]: pgsql_query() -- 15:57:16.016 SQL [24137]: About to run query: -- 15:57:16.016 SQL [24137]: SELECT * FROM members_session WHERE member_id=5 AND session='04F663016E6960FE95C68962599F8C09' -- 15:57:16.016 SQL [24137]: Found rows: 0 -- 15:57:16.016 SQL [24137]: Found rows: 0 -- 15:57:16.016 FLOG_MAX [24137]: insert_db_record() -- 15:57:16.016 SQL [24137]: pgsql_exec() -- 15:57:16.016 SQL [24137]: About to run query: -- 15:57:16.016 SQL [24137]: INSERT INTO members_session (member_id,session) VALUES ('5','04F663016E6960FE95C68962599F8C09') -- 15:57:16.018 SQL [24137]: PQcmdTuples: 1 -- 15:57:16.018 SQL [24137]: Affected rows: 1 -- 15:57:16.018 FLOG_MAX [24137]: SELECT currval('members_session_id_seq') -- 15:57:16.018 SQL [24137]: pgsql_query() -- 15:57:16.018 SQL [24137]: About to run query: -- 15:57:16.018 SQL [24137]: SELECT currval('members_session_id_seq') -- 15:57:16.018 SQL [24137]: Found rows: 1 -- 15:57:16.018 INFO [24137]: CreateDefaultPage() -- 15:57:16.018 FLOG_MAX [24137]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:57:16.018 SQL [24137]: pgsql_query() -- 15:57:16.018 SQL [24137]: About to run query: -- 15:57:16.018 SQL [24137]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 15:57:16.018 SQL [24137]: Found rows: 1 -- 15:57:16.018 FLOG_MAX [24137]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 15:57:16.018 SQL [24137]: pgsql_query() -- 15:57:16.018 SQL [24137]: About to run query: -- 15:57:16.018 SQL [24137]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 15:57:16.019 SQL [24137]: Found rows: 1 -- 15:57:16.019 INFO [24137]: /CreateDefaultPage() -- 15:57:16.019 INFO [24137]: /LoginCoreGradeAccount() -- 15:57:16.019 INFO [24137]: RET: added=2020-02-05 06:47:23.982154 -- 15:57:16.019 INFO [24137]: RET: email=ameye+11@chiefsoft.com -- 15:57:16.019 INFO [24137]: RET: firstname=Olu -- 15:57:16.019 INFO [24137]: RET: id=5 -- 15:57:16.019 INFO [24137]: RET: last_login= -- 15:57:16.019 INFO [24137]: RET: lastname=Amey -- 15:57:16.019 INFO [24137]: RET: loc=192.168.1.13 -- 15:57:16.019 INFO [24137]: RET: member_id=5 -- 15:57:16.019 INFO [24137]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 15:57:16.019 INFO [24137]: RET: phone= -- 15:57:16.019 INFO [24137]: RET: pid= -- 15:57:16.019 INFO [24137]: RET: result=YES I GET TO BACK END -- 15:57:16.019 INFO [24137]: RET: sessionid=04F663016E6960FE95C68962599F8C09 -- 15:57:16.019 INFO [24137]: RET: status=1 -- 15:57:16.019 INFO [24137]: RET: stauts=OK -- 15:57:16.019 INFO [24137]: RET: username=ameye+11@chiefsoft.com -- 15:57:16.019 INFO [24137]: RET: verified= -- 15:57:16.020 INFO [24137]: COREGRADE is stopping... -- 15:57:16.020 DEBUG [24137]: Closing database connection -- 15:57:16.020 SQL [24137]: pgsql_close() -- 15:57:15.975 DEBUG [24137]: Database connection successful -- 15:57:15.975 INFO [24137]: _SERVER found -- 15:57:15.975 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 15:57:15.975 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 15:57:15.975 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=r08e0b1j7toi4cv4ghi0no0svcaolgvc -- 15:57:15.975 INFO [24137]: QUERY_STRING = /auth -- 15:57:15.975 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:57:16.021 INFO [24137]: COREGRADE is stopping... -- 15:57:16.021 DEBUG [24137]: Closing database connection -- 15:57:16.021 SQL [24137]: pgsql_close() -- 15:57:16.038 INFO [24137]: COREGRADE is starting... -- 15:57:16.038 INFO [24137]: Version from config: 1.0 -- 15:57:16.038 DEBUG [24137]: Connecting to database... -- 15:57:16.038 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:16.038 SQL [24137]: pgsql_db_connect() -- 15:57:16.042 DEBUG [24137]: Database connection successful -- 15:57:16.042 INFO [24137]: _SERVER found -- 15:57:16.042 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 15:57:16.042 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 15:57:16.042 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=r08e0b1j7toi4cv4ghi0no0svcaolgvc -- 15:57:16.042 INFO [24137]: QUERY_STRING = /member/index -- 15:57:16.042 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:57:16.076 INFO [24137]: COREGRADE is stopping... -- 15:57:16.076 DEBUG [24137]: Closing database connection -- 15:57:16.076 SQL [24137]: pgsql_close() -- 15:57:16.257 INFO [24137]: COREGRADE is starting... -- 15:57:16.257 INFO [24137]: Version from config: 1.0 -- 15:57:16.257 DEBUG [24137]: Connecting to database... -- 15:57:16.257 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:16.257 SQL [24137]: pgsql_db_connect() -- 15:57:16.261 DEBUG [24137]: Database connection successful -- 15:57:16.261 INFO [24137]: _SERVER found -- 15:57:16.261 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 15:57:16.261 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 15:57:16.261 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=r08e0b1j7toi4cv4ghi0no0svcaolgvc -- 15:57:16.261 INFO [24137]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:57:16.261 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:57:16.272 INFO [24137]: COREGRADE is stopping... -- 15:57:16.272 DEBUG [24137]: Closing database connection -- 15:57:16.272 SQL [24137]: pgsql_close() -- 15:57:16.317 INFO [24137]: COREGRADE is starting... -- 15:57:16.317 INFO [24137]: Version from config: 1.0 -- 15:57:16.317 DEBUG [24137]: Connecting to database... -- 15:57:16.317 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:16.317 SQL [24137]: pgsql_db_connect() -- 15:57:16.321 DEBUG [24137]: Database connection successful -- 15:57:16.321 INFO [24137]: _SERVER found -- 15:57:16.321 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 15:57:16.321 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 15:57:16.321 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=r08e0b1j7toi4cv4ghi0no0svcaolgvc -- 15:57:16.321 INFO [24137]: QUERY_STRING = /app-assets/data/locales/en.json -- 15:57:16.321 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:57:16.332 INFO [24137]: COREGRADE is stopping... -- 15:57:16.332 DEBUG [24137]: Closing database connection -- 15:57:16.332 SQL [24137]: pgsql_close() -- 15:57:19.470 INFO [30476]: COREGRADE is starting... -- 15:57:19.471 INFO [30476]: Version from config: 1.0 -- 15:57:19.471 DEBUG [30476]: Connecting to database... -- 15:57:19.471 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:19.471 SQL [30476]: pgsql_db_connect() -- 15:57:19.475 DEBUG [30476]: Database connection successful -- 15:57:19.475 INFO [30476]: _SERVER found -- 15:57:19.475 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 15:57:19.475 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 15:57:19.475 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=mlj1sf6vq75k5gpnlcut4tg1ctgofo91 -- 15:57:19.475 INFO [30476]: QUERY_STRING = /member/index -- 15:57:19.475 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:57:19.511 INFO [30476]: COREGRADE is stopping... -- 15:57:19.511 DEBUG [30476]: Closing database connection -- 15:57:19.511 SQL [30476]: pgsql_close() -- 15:57:21.696 INFO [24184]: COREGRADE is starting... -- 15:57:21.696 INFO [24184]: Version from config: 1.0 -- 15:57:21.696 DEBUG [24184]: Connecting to database... -- 15:57:21.696 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:21.697 SQL [24184]: pgsql_db_connect() -- 15:57:21.700 DEBUG [24184]: Database connection successful -- 15:57:21.700 INFO [24184]: _SERVER found -- 15:57:21.700 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 15:57:21.700 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 15:57:21.700 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=mlj1sf6vq75k5gpnlcut4tg1ctgofo91 -- 15:57:21.700 INFO [24184]: QUERY_STRING = /member/index -- 15:57:21.700 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:57:21.734 INFO [24184]: COREGRADE is stopping... -- 15:57:21.734 DEBUG [24184]: Closing database connection -- 15:57:21.734 SQL [24184]: pgsql_close() -- 15:57:32.388 INFO [24139]: COREGRADE is starting... -- 15:57:32.389 INFO [24139]: Version from config: 1.0 -- 15:57:32.389 DEBUG [24139]: Connecting to database... -- 15:57:32.389 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:32.389 SQL [24139]: pgsql_db_connect() -- 15:57:32.393 DEBUG [24139]: Database connection successful -- 15:57:32.393 INFO [24139]: _SERVER found -- 15:57:32.393 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 15:57:32.393 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 15:57:32.393 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=mlj1sf6vq75k5gpnlcut4tg1ctgofo91 -- 15:57:32.393 INFO [24139]: QUERY_STRING = /member/index -- 15:57:32.393 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:57:32.428 INFO [24139]: COREGRADE is stopping... -- 15:57:32.428 DEBUG [24139]: Closing database connection -- 15:57:32.428 SQL [24139]: pgsql_close() -- 15:57:37.455 INFO [24138]: COREGRADE is starting... -- 15:57:37.455 INFO [24138]: Version from config: 1.0 -- 15:57:37.455 DEBUG [24138]: Connecting to database... -- 15:57:37.456 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:37.456 SQL [24138]: pgsql_db_connect() -- 15:57:37.460 DEBUG [24138]: Database connection successful -- 15:57:37.460 INFO [24138]: _SERVER found -- 15:57:37.460 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 15:57:37.460 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 15:57:37.460 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=mlj1sf6vq75k5gpnlcut4tg1ctgofo91 -- 15:57:37.460 INFO [24138]: QUERY_STRING = /auth -- 15:57:37.460 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:57:37.491 INFO [24138]: COREGRADE is stopping... -- 15:57:37.491 DEBUG [24138]: Closing database connection -- 15:57:37.491 SQL [24138]: pgsql_close() -- 15:57:38.132 INFO [24138]: COREGRADE is starting... -- 15:57:38.132 INFO [24138]: Version from config: 1.0 -- 15:57:38.132 DEBUG [24138]: Connecting to database... -- 15:57:38.132 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:38.132 SQL [24138]: pgsql_db_connect() -- 15:57:38.136 DEBUG [24138]: Database connection successful -- 15:57:38.136 INFO [24138]: _SERVER found -- 15:57:38.136 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 15:57:38.136 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 15:57:38.136 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=mlj1sf6vq75k5gpnlcut4tg1ctgofo91 -- 15:57:38.136 INFO [24138]: QUERY_STRING = /auth -- 15:57:38.136 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:57:38.167 INFO [24138]: COREGRADE is stopping... -- 15:57:38.167 DEBUG [24138]: Closing database connection -- 15:57:38.167 SQL [24138]: pgsql_close() -- 15:57:38.449 INFO [24138]: COREGRADE is starting... -- 15:57:38.450 INFO [24138]: Version from config: 1.0 -- 15:57:38.450 DEBUG [24138]: Connecting to database... -- 15:57:38.450 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:38.450 SQL [24138]: pgsql_db_connect() -- 15:57:38.454 DEBUG [24138]: Database connection successful -- 15:57:38.454 INFO [24138]: _SERVER found -- 15:57:38.454 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 15:57:38.454 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 15:57:38.454 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=mlj1sf6vq75k5gpnlcut4tg1ctgofo91 -- 15:57:38.454 INFO [24138]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:57:38.454 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:57:38.465 INFO [24138]: COREGRADE is stopping... -- 15:57:38.465 DEBUG [24138]: Closing database connection -- 15:57:38.465 SQL [24138]: pgsql_close() -- 15:57:38.471 INFO [30492]: COREGRADE is starting... -- 15:57:38.471 INFO [30492]: Version from config: 1.0 -- 15:57:38.471 DEBUG [30492]: Connecting to database... -- 15:57:38.471 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:38.471 SQL [30492]: pgsql_db_connect() -- 15:57:38.475 DEBUG [30492]: Database connection successful -- 15:57:38.475 INFO [30492]: _SERVER found -- 15:57:38.475 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 15:57:38.475 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 15:57:38.475 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=mlj1sf6vq75k5gpnlcut4tg1ctgofo91 -- 15:57:38.475 INFO [30492]: QUERY_STRING = /app-assets/data/locales/en.json -- 15:57:38.475 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:57:38.487 INFO [30492]: COREGRADE is stopping... -- 15:57:38.487 DEBUG [30492]: Closing database connection -- 15:57:38.487 SQL [30492]: pgsql_close() -- 15:57:39.919 INFO [30492]: COREGRADE is starting... -- 15:57:39.919 INFO [30492]: Version from config: 1.0 -- 15:57:39.919 DEBUG [30492]: Connecting to database... -- 15:57:39.919 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:39.919 SQL [30492]: pgsql_db_connect() -- 15:57:39.957 INFO [30492]: COREGRADE is starting... -- 15:57:39.957 INFO [30492]: Version from config: 1.0 -- 15:57:39.957 DEBUG [30492]: Connecting to database... -- 15:57:39.957 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:39.957 SQL [30492]: pgsql_db_connect() -- 15:57:39.961 DEBUG [30492]: Database connection successful -- 15:57:39.961 INFO [30492]: _SERVER found -- 15:57:39.961 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 15:57:39.961 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 15:57:39.961 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=mlj1sf6vq75k5gpnlcut4tg1ctgofo91 -- 15:57:39.961 INFO [30492]: QUERY_STRING = -- 15:57:39.961 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:57:39.961 INFO [30492]: SystemStatus()09-09-********~************ -- 15:57:39.961 INFO [30492]: long coregrade_api_main(CVars in, CVars &out) -- 15:57:39.961 INFO [30492]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 15:57:39.961 INFO [30492]: account calls -- 15:57:39.961 INFO [30492]: account_calls() -- 15:57:39.961 INFO [30492]: LoginCoreGradeAccount() -- 15:57:39.961 FLOG_MAX [30492]: REQ_STRING(username) -- 15:57:39.961 FLOG_MAX [30492]: REQ_STRING(password) -- 15:57:39.961 FLOG_MAX [30492]: REQ_STRING(sessionid) -- 15:57:39.961 FLOG_MAX [30492]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:57:39.961 SQL [30492]: pgsql_query() -- 15:57:39.962 SQL [30492]: About to run query: -- 15:57:39.962 SQL [30492]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 15:57:39.965 SQL [30492]: Found rows: 1 -- 15:57:39.965 FLOG_MAX [30492]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=15 -- 15:57:39.965 INFO [30492]: long SessionCheck(long uid, const char *sessionid, int create ) -- 15:57:39.965 SQL [30492]: pgsql_exec() -- 15:57:39.965 SQL [30492]: About to run query: -- 15:57:39.965 SQL [30492]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 15:57:39.966 SQL [30492]: PQcmdTuples: 0 -- 15:57:39.966 SQL [30492]: Affected rows: 0 -- 15:57:39.966 SQL [30492]: pgsql_exec() -- 15:57:39.966 SQL [30492]: About to run query: -- 15:57:39.966 SQL [30492]: DELETE FROM members_session WHERE member_id=7 -- 15:57:39.967 SQL [30492]: PQcmdTuples: 1 -- 15:57:39.967 SQL [30492]: Affected rows: 1 -- 15:57:39.967 SQL [30492]: pgsql_query() -- 15:57:39.967 SQL [30492]: About to run query: -- 15:57:39.967 SQL [30492]: SELECT * FROM members_session WHERE member_id=7 AND session<>'492A429ED8A63ED4D4E8F3F44BCD89D7' -- 15:57:39.967 SQL [30492]: Found rows: 0 -- 15:57:39.967 SQL [30492]: Found rows: 0 -- 15:57:39.967 FLOG_MAX [30492]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:57:39.967 SQL [30492]: pgsql_query() -- 15:57:39.967 SQL [30492]: About to run query: -- 15:57:39.967 SQL [30492]: SELECT * FROM members_session WHERE member_id=7 AND session='492A429ED8A63ED4D4E8F3F44BCD89D7' -- 15:57:39.968 SQL [30492]: Found rows: 0 -- 15:57:39.968 SQL [30492]: Found rows: 0 -- 15:57:39.968 FLOG_MAX [30492]: insert_db_record() -- 15:57:39.968 SQL [30492]: pgsql_exec() -- 15:57:39.968 SQL [30492]: About to run query: -- 15:57:39.968 SQL [30492]: INSERT INTO members_session (member_id,session) VALUES ('7','492A429ED8A63ED4D4E8F3F44BCD89D7') -- 15:57:39.969 SQL [30492]: PQcmdTuples: 1 -- 15:57:39.969 SQL [30492]: Affected rows: 1 -- 15:57:39.969 FLOG_MAX [30492]: SELECT currval('members_session_id_seq') -- 15:57:39.969 SQL [30492]: pgsql_query() -- 15:57:39.969 SQL [30492]: About to run query: -- 15:57:39.969 SQL [30492]: SELECT currval('members_session_id_seq') -- 15:57:39.970 SQL [30492]: Found rows: 1 -- 15:57:39.970 INFO [30492]: CreateDefaultPage() -- 15:57:39.970 FLOG_MAX [30492]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:57:39.970 SQL [30492]: pgsql_query() -- 15:57:39.970 SQL [30492]: About to run query: -- 15:57:39.970 SQL [30492]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 15:57:39.970 SQL [30492]: Found rows: 1 -- 15:57:39.970 FLOG_MAX [30492]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 15:57:39.970 SQL [30492]: pgsql_query() -- 15:57:39.970 SQL [30492]: About to run query: -- 15:57:39.970 SQL [30492]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 15:57:39.970 SQL [30492]: Found rows: 1 -- 15:57:39.970 INFO [30492]: /CreateDefaultPage() -- 15:57:39.970 INFO [30492]: /LoginCoreGradeAccount() -- 15:57:39.970 INFO [30492]: RET: added=2020-02-05 09:42:12.816064 -- 15:57:39.970 INFO [30492]: RET: email=tokslaw@chiefsoft.com -- 15:57:39.970 INFO [30492]: RET: firstname=Tokunbo -- 15:57:39.970 INFO [30492]: RET: id=7 -- 15:57:39.970 INFO [30492]: RET: last_login= -- 15:57:39.971 INFO [30492]: RET: lastname=Lawal -- 15:57:39.971 INFO [30492]: RET: loc=192.168.1.13 -- 15:57:39.971 INFO [30492]: RET: member_id=7 -- 15:57:39.971 INFO [30492]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 15:57:39.971 INFO [30492]: RET: phone= -- 15:57:39.971 INFO [30492]: RET: pid= -- 15:57:39.971 INFO [30492]: RET: result=YES I GET TO BACK END -- 15:57:39.971 INFO [30492]: RET: sessionid=492A429ED8A63ED4D4E8F3F44BCD89D7 -- 15:57:39.971 INFO [30492]: RET: status=1 -- 15:57:39.971 INFO [30492]: RET: stauts=OK -- 15:57:39.971 INFO [30492]: RET: username=tokslaw@chiefsoft.com -- 15:57:39.971 INFO [30492]: RET: verified= -- 15:57:39.972 INFO [30492]: COREGRADE is stopping... -- 15:57:39.972 DEBUG [30492]: Closing database connection -- 15:57:39.972 SQL [30492]: pgsql_close() -- 15:57:39.923 DEBUG [30492]: Database connection successful -- 15:57:39.923 INFO [30492]: _SERVER found -- 15:57:39.923 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 15:57:39.923 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 15:57:39.923 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=mlj1sf6vq75k5gpnlcut4tg1ctgofo91 -- 15:57:39.923 INFO [30492]: QUERY_STRING = /auth -- 15:57:39.923 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:57:39.972 INFO [30492]: COREGRADE is stopping... -- 15:57:39.972 DEBUG [30492]: Closing database connection -- 15:57:39.972 SQL [30492]: pgsql_close() -- 15:57:39.985 INFO [30492]: COREGRADE is starting... -- 15:57:39.985 INFO [30492]: Version from config: 1.0 -- 15:57:39.985 DEBUG [30492]: Connecting to database... -- 15:57:39.985 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:39.985 SQL [30492]: pgsql_db_connect() -- 15:57:39.989 DEBUG [30492]: Database connection successful -- 15:57:39.989 INFO [30492]: _SERVER found -- 15:57:39.989 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 15:57:39.989 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 15:57:39.989 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=mlj1sf6vq75k5gpnlcut4tg1ctgofo91 -- 15:57:39.989 INFO [30492]: QUERY_STRING = /member/index -- 15:57:39.989 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:57:40.024 INFO [30492]: COREGRADE is stopping... -- 15:57:40.024 DEBUG [30492]: Closing database connection -- 15:57:40.024 SQL [30492]: pgsql_close() -- 15:57:40.327 INFO [30492]: COREGRADE is starting... -- 15:57:40.327 INFO [30492]: Version from config: 1.0 -- 15:57:40.327 DEBUG [30492]: Connecting to database... -- 15:57:40.327 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:40.327 SQL [30492]: pgsql_db_connect() -- 15:57:40.331 DEBUG [30492]: Database connection successful -- 15:57:40.331 INFO [30492]: _SERVER found -- 15:57:40.331 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 15:57:40.331 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 15:57:40.331 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=mlj1sf6vq75k5gpnlcut4tg1ctgofo91 -- 15:57:40.331 INFO [30492]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:57:40.331 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:57:40.342 INFO [30492]: COREGRADE is stopping... -- 15:57:40.342 DEBUG [30492]: Closing database connection -- 15:57:40.342 SQL [30492]: pgsql_close() -- 15:57:40.424 INFO [30492]: COREGRADE is starting... -- 15:57:40.424 INFO [30492]: Version from config: 1.0 -- 15:57:40.424 DEBUG [30492]: Connecting to database... -- 15:57:40.424 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:40.424 SQL [30492]: pgsql_db_connect() -- 15:57:40.428 DEBUG [30492]: Database connection successful -- 15:57:40.428 INFO [30492]: _SERVER found -- 15:57:40.428 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 15:57:40.428 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 15:57:40.428 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=mlj1sf6vq75k5gpnlcut4tg1ctgofo91 -- 15:57:40.428 INFO [30492]: QUERY_STRING = /app-assets/data/locales/en.json -- 15:57:40.428 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:57:40.439 INFO [30492]: COREGRADE is stopping... -- 15:57:40.439 DEBUG [30492]: Closing database connection -- 15:57:40.439 SQL [30492]: pgsql_close() -- 15:57:50.683 INFO [24847]: COREGRADE is starting... -- 15:57:50.683 INFO [24847]: Version from config: 1.0 -- 15:57:50.683 DEBUG [24847]: Connecting to database... -- 15:57:50.683 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:50.683 SQL [24847]: pgsql_db_connect() -- 15:57:50.687 DEBUG [24847]: Database connection successful -- 15:57:50.687 INFO [24847]: _SERVER found -- 15:57:50.687 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 15:57:50.687 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 15:57:50.687 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=mlj1sf6vq75k5gpnlcut4tg1ctgofo91 -- 15:57:50.687 INFO [24847]: QUERY_STRING = /member/index -- 15:57:50.687 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:57:50.723 INFO [24847]: COREGRADE is stopping... -- 15:57:50.723 DEBUG [24847]: Closing database connection -- 15:57:50.723 SQL [24847]: pgsql_close() -- 15:57:51.085 INFO [24847]: COREGRADE is starting... -- 15:57:51.085 INFO [24847]: Version from config: 1.0 -- 15:57:51.085 DEBUG [24847]: Connecting to database... -- 15:57:51.085 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:51.085 SQL [24847]: pgsql_db_connect() -- 15:57:51.089 DEBUG [24847]: Database connection successful -- 15:57:51.089 INFO [24847]: _SERVER found -- 15:57:51.089 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 15:57:51.089 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 15:57:51.089 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=mlj1sf6vq75k5gpnlcut4tg1ctgofo91 -- 15:57:51.089 INFO [24847]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:57:51.089 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:57:51.100 INFO [24847]: COREGRADE is stopping... -- 15:57:51.100 DEBUG [24847]: Closing database connection -- 15:57:51.100 SQL [24847]: pgsql_close() -- 15:57:51.107 INFO [30474]: COREGRADE is starting... -- 15:57:51.107 INFO [30474]: Version from config: 1.0 -- 15:57:51.107 DEBUG [30474]: Connecting to database... -- 15:57:51.108 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:51.108 SQL [30474]: pgsql_db_connect() -- 15:57:51.111 DEBUG [30474]: Database connection successful -- 15:57:51.111 INFO [30474]: _SERVER found -- 15:57:51.111 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 15:57:51.111 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 15:57:51.111 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=mlj1sf6vq75k5gpnlcut4tg1ctgofo91 -- 15:57:51.111 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 15:57:51.111 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:57:51.123 INFO [30474]: COREGRADE is stopping... -- 15:57:51.124 DEBUG [30474]: Closing database connection -- 15:57:51.124 SQL [30474]: pgsql_close() -- 16:00:43.503 INFO [30475]: COREGRADE is starting... -- 16:00:43.503 INFO [30475]: Version from config: 1.0 -- 16:00:43.503 DEBUG [30475]: Connecting to database... -- 16:00:43.503 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:00:43.503 SQL [30475]: pgsql_db_connect() -- 16:00:43.507 DEBUG [30475]: Database connection successful -- 16:00:43.507 INFO [30475]: _SERVER found -- 16:00:43.507 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 16:00:43.507 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 16:00:43.507 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=r08e0b1j7toi4cv4ghi0no0svcaolgvc -- 16:00:43.507 INFO [30475]: QUERY_STRING = /member/index -- 16:00:43.507 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:00:43.543 INFO [30475]: COREGRADE is stopping... -- 16:00:43.543 DEBUG [30475]: Closing database connection -- 16:00:43.543 SQL [30475]: pgsql_close() -- 16:00:43.710 INFO [30475]: COREGRADE is starting... -- 16:00:43.711 INFO [30475]: Version from config: 1.0 -- 16:00:43.711 DEBUG [30475]: Connecting to database... -- 16:00:43.711 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:00:43.711 SQL [30475]: pgsql_db_connect() -- 16:00:43.715 DEBUG [30475]: Database connection successful -- 16:00:43.715 INFO [30475]: _SERVER found -- 16:00:43.715 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 16:00:43.715 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 16:00:43.715 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=r08e0b1j7toi4cv4ghi0no0svcaolgvc -- 16:00:43.715 INFO [30475]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:00:43.715 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:00:43.726 INFO [30475]: COREGRADE is stopping... -- 16:00:43.726 DEBUG [30475]: Closing database connection -- 16:00:43.726 SQL [30475]: pgsql_close() -- 16:00:43.733 INFO [30476]: COREGRADE is starting... -- 16:00:43.733 INFO [30476]: Version from config: 1.0 -- 16:00:43.733 DEBUG [30476]: Connecting to database... -- 16:00:43.733 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:00:43.733 SQL [30476]: pgsql_db_connect() -- 16:00:43.737 DEBUG [30476]: Database connection successful -- 16:00:43.737 INFO [30476]: _SERVER found -- 16:00:43.737 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 16:00:43.737 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 16:00:43.737 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=r08e0b1j7toi4cv4ghi0no0svcaolgvc -- 16:00:43.737 INFO [30476]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:00:43.737 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:00:43.749 INFO [30476]: COREGRADE is stopping... -- 16:00:43.749 DEBUG [30476]: Closing database connection -- 16:00:43.749 SQL [30476]: pgsql_close() -- 16:00:47.745 INFO [30476]: COREGRADE is starting... -- 16:00:47.745 INFO [30476]: Version from config: 1.0 -- 16:00:47.745 DEBUG [30476]: Connecting to database... -- 16:00:47.745 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:00:47.746 SQL [30476]: pgsql_db_connect() -- 16:00:47.750 DEBUG [30476]: Database connection successful -- 16:00:47.750 INFO [30476]: _SERVER found -- 16:00:47.750 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 16:00:47.750 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 16:00:47.750 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=r08e0b1j7toi4cv4ghi0no0svcaolgvc -- 16:00:47.750 INFO [30476]: QUERY_STRING = /member/index -- 16:00:47.750 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:00:47.784 INFO [30476]: COREGRADE is stopping... -- 16:00:47.785 DEBUG [30476]: Closing database connection -- 16:00:47.785 SQL [30476]: pgsql_close() -- 16:00:47.922 INFO [30476]: COREGRADE is starting... -- 16:00:47.922 INFO [30476]: Version from config: 1.0 -- 16:00:47.922 DEBUG [30476]: Connecting to database... -- 16:00:47.923 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:00:47.923 SQL [30476]: pgsql_db_connect() -- 16:00:47.937 INFO [30475]: COREGRADE is starting... -- 16:00:47.937 INFO [30475]: Version from config: 1.0 -- 16:00:47.937 DEBUG [30475]: Connecting to database... -- 16:00:47.927 DEBUG [30476]: Database connection successful -- 16:00:47.927 INFO [30476]: _SERVER found -- 16:00:47.927 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 16:00:47.927 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 16:00:47.927 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=r08e0b1j7toi4cv4ghi0no0svcaolgvc -- 16:00:47.927 INFO [30476]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:00:47.927 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:00:47.937 INFO [30476]: COREGRADE is stopping... -- 16:00:47.937 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:00:47.938 DEBUG [30476]: Closing database connection -- 16:00:47.938 SQL [30475]: pgsql_db_connect() -- 16:00:47.938 SQL [30476]: pgsql_close() -- 16:00:47.942 DEBUG [30475]: Database connection successful -- 16:00:47.942 INFO [30475]: _SERVER found -- 16:00:47.942 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 16:00:47.942 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 16:00:47.942 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=r08e0b1j7toi4cv4ghi0no0svcaolgvc -- 16:00:47.942 INFO [30475]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:00:47.942 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:00:47.953 INFO [30475]: COREGRADE is stopping... -- 16:00:47.953 DEBUG [30475]: Closing database connection -- 16:00:47.953 SQL [30475]: pgsql_close() -- 16:03:25.978 INFO [24136]: COREGRADE is starting... -- 16:03:25.979 INFO [24136]: Version from config: 1.0 -- 16:03:25.979 DEBUG [24136]: Connecting to database... -- 16:03:25.979 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:03:25.979 SQL [24136]: pgsql_db_connect() -- 16:03:25.983 DEBUG [24136]: Database connection successful -- 16:03:25.983 INFO [24136]: _SERVER found -- 16:03:25.983 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 16:03:25.983 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 16:03:25.983 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=r08e0b1j7toi4cv4ghi0no0svcaolgvc -- 16:03:25.983 INFO [24136]: QUERY_STRING = /member/index -- 16:03:25.983 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:03:26.020 INFO [24136]: COREGRADE is stopping... -- 16:03:26.020 DEBUG [24136]: Closing database connection -- 16:03:26.020 SQL [24136]: pgsql_close() -- 16:04:25.390 INFO [24184]: COREGRADE is starting... -- 16:04:25.390 INFO [24184]: Version from config: 1.0 -- 16:04:25.390 DEBUG [24184]: Connecting to database... -- 16:04:25.390 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:04:25.390 SQL [24184]: pgsql_db_connect() -- 16:04:25.394 DEBUG [24184]: Database connection successful -- 16:04:25.394 INFO [24184]: _SERVER found -- 16:04:25.394 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 16:04:25.394 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 16:04:25.394 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=66c2lu4at81vjcqisa5oh2785p4bc88l -- 16:04:25.394 INFO [24184]: QUERY_STRING = /member/index -- 16:04:25.394 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:04:25.433 INFO [24184]: COREGRADE is stopping... -- 16:04:25.433 DEBUG [24184]: Closing database connection -- 16:04:25.433 SQL [24184]: pgsql_close() -- 16:04:25.621 INFO [24184]: COREGRADE is starting... -- 16:04:25.621 INFO [24184]: Version from config: 1.0 -- 16:04:25.621 DEBUG [24184]: Connecting to database... -- 16:04:25.621 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:04:25.621 SQL [24184]: pgsql_db_connect() -- 16:04:25.625 DEBUG [24184]: Database connection successful -- 16:04:25.625 INFO [24184]: _SERVER found -- 16:04:25.625 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 16:04:25.625 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 16:04:25.625 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=66c2lu4at81vjcqisa5oh2785p4bc88l -- 16:04:25.625 INFO [24184]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:04:25.625 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:04:25.637 INFO [24184]: COREGRADE is stopping... -- 16:04:25.637 DEBUG [24184]: Closing database connection -- 16:04:25.637 SQL [24184]: pgsql_close() -- 16:04:25.647 INFO [24137]: COREGRADE is starting... -- 16:04:25.648 INFO [24137]: Version from config: 1.0 -- 16:04:25.648 DEBUG [24137]: Connecting to database... -- 16:04:25.648 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:04:25.648 SQL [24137]: pgsql_db_connect() -- 16:04:25.652 DEBUG [24137]: Database connection successful -- 16:04:25.652 INFO [24137]: _SERVER found -- 16:04:25.652 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 16:04:25.652 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 16:04:25.652 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=66c2lu4at81vjcqisa5oh2785p4bc88l -- 16:04:25.652 INFO [24137]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:04:25.652 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:04:25.663 INFO [24137]: COREGRADE is stopping... -- 16:04:25.663 DEBUG [24137]: Closing database connection -- 16:04:25.663 SQL [24137]: pgsql_close() -- 16:04:38.308 INFO [24139]: COREGRADE is starting... -- 16:04:38.308 INFO [24139]: Version from config: 1.0 -- 16:04:38.308 DEBUG [24139]: Connecting to database... -- 16:04:38.308 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:04:38.309 SQL [24139]: pgsql_db_connect() -- 16:04:38.312 DEBUG [24139]: Database connection successful -- 16:04:38.312 INFO [24139]: _SERVER found -- 16:04:38.312 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 16:04:38.312 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 16:04:38.312 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=66c2lu4at81vjcqisa5oh2785p4bc88l -- 16:04:38.312 INFO [24139]: QUERY_STRING = /member/index -- 16:04:38.312 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:04:38.350 INFO [24139]: COREGRADE is stopping... -- 16:04:38.350 DEBUG [24139]: Closing database connection -- 16:04:38.350 SQL [24139]: pgsql_close() -- 16:04:38.478 INFO [24139]: COREGRADE is starting... -- 16:04:38.478 INFO [24139]: Version from config: 1.0 -- 16:04:38.478 DEBUG [24139]: Connecting to database... -- 16:04:38.478 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:04:38.478 SQL [24139]: pgsql_db_connect() -- 16:04:38.482 DEBUG [24139]: Database connection successful -- 16:04:38.482 INFO [24139]: _SERVER found -- 16:04:38.482 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 16:04:38.482 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 16:04:38.482 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=66c2lu4at81vjcqisa5oh2785p4bc88l -- 16:04:38.482 INFO [24139]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:04:38.482 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:04:38.494 INFO [24139]: COREGRADE is stopping... -- 16:04:38.494 DEBUG [24139]: Closing database connection -- 16:04:38.494 SQL [24139]: pgsql_close() -- 16:04:38.498 INFO [24138]: COREGRADE is starting... -- 16:04:38.498 INFO [24138]: Version from config: 1.0 -- 16:04:38.498 DEBUG [24138]: Connecting to database... -- 16:04:38.498 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:04:38.499 SQL [24138]: pgsql_db_connect() -- 16:04:38.502 DEBUG [24138]: Database connection successful -- 16:04:38.502 INFO [24138]: _SERVER found -- 16:04:38.502 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 16:04:38.502 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 16:04:38.502 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=66c2lu4at81vjcqisa5oh2785p4bc88l -- 16:04:38.502 INFO [24138]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:04:38.502 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:04:38.514 INFO [24138]: COREGRADE is stopping... -- 16:04:38.514 DEBUG [24138]: Closing database connection -- 16:04:38.514 SQL [24138]: pgsql_close() -- 16:05:57.107 INFO [30492]: COREGRADE is starting... -- 16:05:57.107 INFO [30492]: Version from config: 1.0 -- 16:05:57.107 DEBUG [30492]: Connecting to database... -- 16:05:57.107 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:05:57.107 SQL [30492]: pgsql_db_connect() -- 16:05:57.112 DEBUG [30492]: Database connection successful -- 16:05:57.112 INFO [30492]: _SERVER found -- 16:05:57.112 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 16:05:57.112 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 16:05:57.112 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=66c2lu4at81vjcqisa5oh2785p4bc88l -- 16:05:57.112 INFO [30492]: QUERY_STRING = /member/index -- 16:05:57.112 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:05:57.146 INFO [30492]: COREGRADE is stopping... -- 16:05:57.146 DEBUG [30492]: Closing database connection -- 16:05:57.146 SQL [30492]: pgsql_close() -- 16:05:57.286 INFO [30492]: COREGRADE is starting... -- 16:05:57.287 INFO [30492]: Version from config: 1.0 -- 16:05:57.287 DEBUG [30492]: Connecting to database... -- 16:05:57.287 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:05:57.287 SQL [30492]: pgsql_db_connect() -- 16:05:57.291 DEBUG [30492]: Database connection successful -- 16:05:57.291 INFO [30492]: _SERVER found -- 16:05:57.291 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 16:05:57.291 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 16:05:57.291 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=66c2lu4at81vjcqisa5oh2785p4bc88l -- 16:05:57.291 INFO [30492]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:05:57.291 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:05:57.302 INFO [30492]: COREGRADE is stopping... -- 16:05:57.302 DEBUG [30492]: Closing database connection -- 16:05:57.302 SQL [30492]: pgsql_close() -- 16:05:57.311 INFO [24847]: COREGRADE is starting... -- 16:05:57.311 INFO [24847]: Version from config: 1.0 -- 16:05:57.311 DEBUG [24847]: Connecting to database... -- 16:05:57.311 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:05:57.311 SQL [24847]: pgsql_db_connect() -- 16:05:57.315 DEBUG [24847]: Database connection successful -- 16:05:57.315 INFO [24847]: _SERVER found -- 16:05:57.315 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 16:05:57.315 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 16:05:57.315 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=66c2lu4at81vjcqisa5oh2785p4bc88l -- 16:05:57.315 INFO [24847]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:05:57.315 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:05:57.326 INFO [24847]: COREGRADE is stopping... -- 16:05:57.326 DEBUG [24847]: Closing database connection -- 16:05:57.326 SQL [24847]: pgsql_close() -- 16:07:30.506 INFO [30474]: COREGRADE is starting... -- 16:07:30.507 INFO [30474]: Version from config: 1.0 -- 16:07:30.507 DEBUG [30474]: Connecting to database... -- 16:07:30.507 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:07:30.507 SQL [30474]: pgsql_db_connect() -- 16:07:30.511 DEBUG [30474]: Database connection successful -- 16:07:30.511 INFO [30474]: _SERVER found -- 16:07:30.511 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:07:30.511 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:07:30.511 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=66c2lu4at81vjcqisa5oh2785p4bc88l -- 16:07:30.511 INFO [30474]: QUERY_STRING = /member/index -- 16:07:30.511 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:07:30.550 INFO [30474]: COREGRADE is stopping... -- 16:07:30.550 DEBUG [30474]: Closing database connection -- 16:07:30.550 SQL [30474]: pgsql_close() -- 16:07:30.677 INFO [30474]: COREGRADE is starting... -- 16:07:30.677 INFO [30474]: Version from config: 1.0 -- 16:07:30.677 DEBUG [30474]: Connecting to database... -- 16:07:30.677 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:07:30.677 SQL [30474]: pgsql_db_connect() -- 16:07:30.681 DEBUG [30474]: Database connection successful -- 16:07:30.681 INFO [30474]: _SERVER found -- 16:07:30.681 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:07:30.681 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:07:30.681 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=66c2lu4at81vjcqisa5oh2785p4bc88l -- 16:07:30.681 INFO [30474]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:07:30.681 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:07:30.692 INFO [30474]: COREGRADE is stopping... -- 16:07:30.692 DEBUG [30474]: Closing database connection -- 16:07:30.692 SQL [30474]: pgsql_close() -- 16:07:30.695 INFO [30474]: COREGRADE is starting... -- 16:07:30.695 INFO [30474]: Version from config: 1.0 -- 16:07:30.695 DEBUG [30474]: Connecting to database... -- 16:07:30.695 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:07:30.695 SQL [30474]: pgsql_db_connect() -- 16:07:30.699 DEBUG [30474]: Database connection successful -- 16:07:30.699 INFO [30474]: _SERVER found -- 16:07:30.699 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:07:30.699 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:07:30.699 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=66c2lu4at81vjcqisa5oh2785p4bc88l -- 16:07:30.699 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:07:30.699 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:07:30.710 INFO [30474]: COREGRADE is stopping... -- 16:07:30.710 DEBUG [30474]: Closing database connection -- 16:07:30.710 SQL [30474]: pgsql_close() -- 16:08:38.439 INFO [30476]: COREGRADE is starting... -- 16:08:38.440 INFO [30476]: Version from config: 1.0 -- 16:08:38.440 DEBUG [30476]: Connecting to database... -- 16:08:38.440 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:08:38.440 SQL [30476]: pgsql_db_connect() -- 16:08:38.444 DEBUG [30476]: Database connection successful -- 16:08:38.444 INFO [30476]: _SERVER found -- 16:08:38.444 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 16:08:38.444 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 16:08:38.444 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=66c2lu4at81vjcqisa5oh2785p4bc88l -- 16:08:38.444 INFO [30476]: QUERY_STRING = /member/index -- 16:08:38.444 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:08:38.478 INFO [30476]: COREGRADE is stopping... -- 16:08:38.478 DEBUG [30476]: Closing database connection -- 16:08:38.478 SQL [30476]: pgsql_close() -- 16:08:55.251 INFO [30475]: COREGRADE is starting... -- 16:08:55.251 INFO [30475]: Version from config: 1.0 -- 16:08:55.252 DEBUG [30475]: Connecting to database... -- 16:08:55.252 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:08:55.252 SQL [30475]: pgsql_db_connect() -- 16:08:55.256 DEBUG [30475]: Database connection successful -- 16:08:55.256 INFO [30475]: _SERVER found -- 16:08:55.256 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 16:08:55.256 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 16:08:55.256 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dt7akf2h4hhllpuc6g9i49vt5ct5j8mn -- 16:08:55.256 INFO [30475]: QUERY_STRING = /member/index -- 16:08:55.256 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:08:55.290 INFO [30475]: COREGRADE is stopping... -- 16:08:55.290 DEBUG [30475]: Closing database connection -- 16:08:55.290 SQL [30475]: pgsql_close() -- 16:09:13.082 INFO [24136]: COREGRADE is starting... -- 16:09:13.083 INFO [24136]: Version from config: 1.0 -- 16:09:13.083 DEBUG [24136]: Connecting to database... -- 16:09:13.083 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:09:13.083 SQL [24136]: pgsql_db_connect() -- 16:09:13.087 DEBUG [24136]: Database connection successful -- 16:09:13.087 INFO [24136]: _SERVER found -- 16:09:13.087 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 16:09:13.087 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 16:09:13.087 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dt7akf2h4hhllpuc6g9i49vt5ct5j8mn -- 16:09:13.087 INFO [24136]: QUERY_STRING = /member/index -- 16:09:13.087 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:09:13.122 INFO [24136]: COREGRADE is stopping... -- 16:09:13.122 DEBUG [24136]: Closing database connection -- 16:09:13.122 SQL [24136]: pgsql_close() -- 16:09:13.274 INFO [24136]: COREGRADE is starting... -- 16:09:13.274 INFO [24136]: Version from config: 1.0 -- 16:09:13.274 DEBUG [24136]: Connecting to database... -- 16:09:13.274 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:09:13.274 SQL [24136]: pgsql_db_connect() -- 16:09:13.278 DEBUG [24136]: Database connection successful -- 16:09:13.278 INFO [24136]: _SERVER found -- 16:09:13.278 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 16:09:13.278 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 16:09:13.278 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dt7akf2h4hhllpuc6g9i49vt5ct5j8mn -- 16:09:13.278 INFO [24136]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:09:13.278 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:09:13.289 INFO [24136]: COREGRADE is stopping... -- 16:09:13.289 DEBUG [24136]: Closing database connection -- 16:09:13.289 SQL [24136]: pgsql_close() -- 16:09:13.295 INFO [24184]: COREGRADE is starting... -- 16:09:13.295 INFO [24184]: Version from config: 1.0 -- 16:09:13.295 DEBUG [24184]: Connecting to database... -- 16:09:13.295 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:09:13.295 SQL [24184]: pgsql_db_connect() -- 16:09:13.299 DEBUG [24184]: Database connection successful -- 16:09:13.299 INFO [24184]: _SERVER found -- 16:09:13.299 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 16:09:13.299 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 16:09:13.299 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dt7akf2h4hhllpuc6g9i49vt5ct5j8mn -- 16:09:13.299 INFO [24184]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:09:13.299 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:09:13.310 INFO [24184]: COREGRADE is stopping... -- 16:09:13.310 DEBUG [24184]: Closing database connection -- 16:09:13.310 SQL [24184]: pgsql_close() -- 16:09:38.100 INFO [24137]: COREGRADE is starting... -- 16:09:38.100 INFO [24137]: Version from config: 1.0 -- 16:09:38.100 DEBUG [24137]: Connecting to database... -- 16:09:38.100 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:09:38.100 SQL [24137]: pgsql_db_connect() -- 16:09:38.104 DEBUG [24137]: Database connection successful -- 16:09:38.104 INFO [24137]: _SERVER found -- 16:09:38.104 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 16:09:38.104 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 16:09:38.104 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dt7akf2h4hhllpuc6g9i49vt5ct5j8mn -- 16:09:38.104 INFO [24137]: QUERY_STRING = /member/index -- 16:09:38.104 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:09:38.140 INFO [24137]: COREGRADE is stopping... -- 16:09:38.140 DEBUG [24137]: Closing database connection -- 16:09:38.140 SQL [24137]: pgsql_close() -- 16:09:38.296 INFO [24137]: COREGRADE is starting... -- 16:09:38.296 INFO [24137]: Version from config: 1.0 -- 16:09:38.296 DEBUG [24137]: Connecting to database... -- 16:09:38.296 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:09:38.296 SQL [24137]: pgsql_db_connect() -- 16:09:38.300 DEBUG [24137]: Database connection successful -- 16:09:38.300 INFO [24137]: _SERVER found -- 16:09:38.300 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 16:09:38.300 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 16:09:38.300 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dt7akf2h4hhllpuc6g9i49vt5ct5j8mn -- 16:09:38.300 INFO [24137]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:09:38.300 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:09:38.311 INFO [24137]: COREGRADE is stopping... -- 16:09:38.311 DEBUG [24137]: Closing database connection -- 16:09:38.311 SQL [24137]: pgsql_close() -- 16:09:38.317 INFO [24139]: COREGRADE is starting... -- 16:09:38.317 INFO [24139]: Version from config: 1.0 -- 16:09:38.317 DEBUG [24139]: Connecting to database... -- 16:09:38.317 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:09:38.317 SQL [24139]: pgsql_db_connect() -- 16:09:38.321 DEBUG [24139]: Database connection successful -- 16:09:38.321 INFO [24139]: _SERVER found -- 16:09:38.321 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 16:09:38.321 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 16:09:38.321 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dt7akf2h4hhllpuc6g9i49vt5ct5j8mn -- 16:09:38.321 INFO [24139]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:09:38.321 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:09:38.333 INFO [24139]: COREGRADE is stopping... -- 16:09:38.333 DEBUG [24139]: Closing database connection -- 16:09:38.333 SQL [24139]: pgsql_close() -- 16:09:43.164 INFO [24138]: COREGRADE is starting... -- 16:09:43.164 INFO [24138]: Version from config: 1.0 -- 16:09:43.164 DEBUG [24138]: Connecting to database... -- 16:09:43.164 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:09:43.164 SQL [24138]: pgsql_db_connect() -- 16:09:43.168 DEBUG [24138]: Database connection successful -- 16:09:43.168 INFO [24138]: _SERVER found -- 16:09:43.168 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 16:09:43.168 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 16:09:43.168 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=mlj1sf6vq75k5gpnlcut4tg1ctgofo91 -- 16:09:43.168 INFO [24138]: QUERY_STRING = /member/index -- 16:09:43.168 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:09:43.203 INFO [24138]: COREGRADE is stopping... -- 16:09:43.203 DEBUG [24138]: Closing database connection -- 16:09:43.203 SQL [24138]: pgsql_close() -- 16:09:43.630 INFO [24138]: COREGRADE is starting... -- 16:09:43.630 INFO [24138]: Version from config: 1.0 -- 16:09:43.630 DEBUG [24138]: Connecting to database... -- 16:09:43.630 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:09:43.630 SQL [24138]: pgsql_db_connect() -- 16:09:43.634 DEBUG [24138]: Database connection successful -- 16:09:43.634 INFO [24138]: _SERVER found -- 16:09:43.634 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 16:09:43.634 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 16:09:43.634 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vvtmmfr9ra4kta2a881jvnapd3e6bfef -- 16:09:43.634 INFO [24138]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:09:43.634 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:09:43.645 INFO [24138]: COREGRADE is stopping... -- 16:09:43.645 DEBUG [24138]: Closing database connection -- 16:09:43.645 SQL [24138]: pgsql_close() -- 16:09:43.649 INFO [30492]: COREGRADE is starting... -- 16:09:43.649 INFO [30492]: Version from config: 1.0 -- 16:09:43.649 DEBUG [30492]: Connecting to database... -- 16:09:43.649 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:09:43.649 SQL [30492]: pgsql_db_connect() -- 16:09:43.653 DEBUG [30492]: Database connection successful -- 16:09:43.653 INFO [30492]: _SERVER found -- 16:09:43.653 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 16:09:43.653 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 16:09:43.653 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vvtmmfr9ra4kta2a881jvnapd3e6bfef -- 16:09:43.653 INFO [30492]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:09:43.653 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:09:43.665 INFO [30492]: COREGRADE is stopping... -- 16:09:43.665 DEBUG [30492]: Closing database connection -- 16:09:43.665 SQL [30492]: pgsql_close() -- 16:11:33.436 INFO [24847]: COREGRADE is starting... -- 16:11:33.436 INFO [24847]: Version from config: 1.0 -- 16:11:33.436 DEBUG [24847]: Connecting to database... -- 16:11:33.436 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:33.436 SQL [24847]: pgsql_db_connect() -- 16:11:33.440 DEBUG [24847]: Database connection successful -- 16:11:33.440 INFO [24847]: _SERVER found -- 16:11:33.440 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 16:11:33.440 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 16:11:33.440 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vvtmmfr9ra4kta2a881jvnapd3e6bfef -- 16:11:33.440 INFO [24847]: QUERY_STRING = /member/index -- 16:11:33.440 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:11:33.476 INFO [24847]: COREGRADE is stopping... -- 16:11:33.476 DEBUG [24847]: Closing database connection -- 16:11:33.476 SQL [24847]: pgsql_close() -- 16:11:33.908 INFO [24847]: COREGRADE is starting... -- 16:11:33.909 INFO [24847]: Version from config: 1.0 -- 16:11:33.909 DEBUG [24847]: Connecting to database... -- 16:11:33.909 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:33.909 SQL [24847]: pgsql_db_connect() -- 16:11:33.913 DEBUG [24847]: Database connection successful -- 16:11:33.913 INFO [24847]: _SERVER found -- 16:11:33.913 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 16:11:33.913 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 16:11:33.913 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vvtmmfr9ra4kta2a881jvnapd3e6bfef -- 16:11:33.913 INFO [24847]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:11:33.913 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:11:33.924 INFO [24847]: COREGRADE is stopping... -- 16:11:33.924 DEBUG [24847]: Closing database connection -- 16:11:33.924 SQL [24847]: pgsql_close() -- 16:11:33.930 INFO [30474]: COREGRADE is starting... -- 16:11:33.930 INFO [30474]: Version from config: 1.0 -- 16:11:33.930 DEBUG [30474]: Connecting to database... -- 16:11:33.930 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:33.930 SQL [30474]: pgsql_db_connect() -- 16:11:33.934 DEBUG [30474]: Database connection successful -- 16:11:33.934 INFO [30474]: _SERVER found -- 16:11:33.934 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:11:33.934 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:11:33.934 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vvtmmfr9ra4kta2a881jvnapd3e6bfef -- 16:11:33.934 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:11:33.934 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:11:33.945 INFO [30474]: COREGRADE is stopping... -- 16:11:33.945 DEBUG [30474]: Closing database connection -- 16:11:33.945 SQL [30474]: pgsql_close() -- 16:11:49.380 INFO [30476]: COREGRADE is starting... -- 16:11:49.381 INFO [30476]: Version from config: 1.0 -- 16:11:49.381 DEBUG [30476]: Connecting to database... -- 16:11:49.381 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:49.381 SQL [30476]: pgsql_db_connect() -- 16:11:49.385 DEBUG [30476]: Database connection successful -- 16:11:49.385 INFO [30476]: _SERVER found -- 16:11:49.385 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 16:11:49.385 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 16:11:49.385 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dt7akf2h4hhllpuc6g9i49vt5ct5j8mn -- 16:11:49.385 INFO [30476]: QUERY_STRING = /member/index -- 16:11:49.385 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:11:49.420 INFO [30476]: COREGRADE is stopping... -- 16:11:49.420 DEBUG [30476]: Closing database connection -- 16:11:49.420 SQL [30476]: pgsql_close() -- 16:11:49.653 INFO [30476]: COREGRADE is starting... -- 16:11:49.653 INFO [30476]: Version from config: 1.0 -- 16:11:49.653 DEBUG [30476]: Connecting to database... -- 16:11:49.653 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:49.653 SQL [30476]: pgsql_db_connect() -- 16:11:49.657 DEBUG [30476]: Database connection successful -- 16:11:49.657 INFO [30476]: _SERVER found -- 16:11:49.657 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 16:11:49.657 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 16:11:49.657 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dt7akf2h4hhllpuc6g9i49vt5ct5j8mn -- 16:11:49.657 INFO [30476]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:11:49.657 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:11:49.669 INFO [30476]: COREGRADE is stopping... -- 16:11:49.669 DEBUG [30476]: Closing database connection -- 16:11:49.669 SQL [30476]: pgsql_close() -- 16:11:49.680 INFO [30476]: COREGRADE is starting... -- 16:11:49.681 INFO [30476]: Version from config: 1.0 -- 16:11:49.681 DEBUG [30476]: Connecting to database... -- 16:11:49.681 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:49.681 SQL [30476]: pgsql_db_connect() -- 16:11:49.684 DEBUG [30476]: Database connection successful -- 16:11:49.684 INFO [30476]: _SERVER found -- 16:11:49.684 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 16:11:49.684 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 16:11:49.684 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dt7akf2h4hhllpuc6g9i49vt5ct5j8mn -- 16:11:49.684 INFO [30476]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:11:49.684 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:11:49.695 INFO [30476]: COREGRADE is stopping... -- 16:11:49.695 DEBUG [30476]: Closing database connection -- 16:11:49.695 SQL [30476]: pgsql_close() -- 16:13:11.988 INFO [30475]: COREGRADE is starting... -- 16:13:11.989 INFO [30475]: Version from config: 1.0 -- 16:13:11.989 DEBUG [30475]: Connecting to database... -- 16:13:11.989 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:13:11.989 SQL [30475]: pgsql_db_connect() -- 16:13:11.993 DEBUG [30475]: Database connection successful -- 16:13:11.993 INFO [30475]: _SERVER found -- 16:13:11.993 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 16:13:11.993 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 16:13:11.993 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vvtmmfr9ra4kta2a881jvnapd3e6bfef -- 16:13:11.993 INFO [30475]: QUERY_STRING = /member/index -- 16:13:11.993 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:13:12.028 INFO [30475]: COREGRADE is stopping... -- 16:13:12.028 DEBUG [30475]: Closing database connection -- 16:13:12.028 SQL [30475]: pgsql_close() -- 16:13:12.369 INFO [30475]: COREGRADE is starting... -- 16:13:12.369 INFO [30475]: Version from config: 1.0 -- 16:13:12.369 DEBUG [30475]: Connecting to database... -- 16:13:12.369 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:13:12.369 SQL [30475]: pgsql_db_connect() -- 16:13:12.373 DEBUG [30475]: Database connection successful -- 16:13:12.373 INFO [30475]: _SERVER found -- 16:13:12.373 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 16:13:12.373 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 16:13:12.373 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vvtmmfr9ra4kta2a881jvnapd3e6bfef -- 16:13:12.373 INFO [30475]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:13:12.373 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:13:12.384 INFO [30475]: COREGRADE is stopping... -- 16:13:12.384 DEBUG [30475]: Closing database connection -- 16:13:12.384 SQL [30475]: pgsql_close() -- 16:13:12.392 INFO [24136]: COREGRADE is starting... -- 16:13:12.392 INFO [24136]: Version from config: 1.0 -- 16:13:12.392 DEBUG [24136]: Connecting to database... -- 16:13:12.392 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:13:12.392 SQL [24136]: pgsql_db_connect() -- 16:13:12.396 DEBUG [24136]: Database connection successful -- 16:13:12.396 INFO [24136]: _SERVER found -- 16:13:12.396 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 16:13:12.396 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 16:13:12.396 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vvtmmfr9ra4kta2a881jvnapd3e6bfef -- 16:13:12.396 INFO [24136]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:13:12.396 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:13:12.408 INFO [24136]: COREGRADE is stopping... -- 16:13:12.408 DEBUG [24136]: Closing database connection -- 16:13:12.408 SQL [24136]: pgsql_close() -- 16:15:07.484 INFO [24184]: COREGRADE is starting... -- 16:15:07.485 INFO [24184]: Version from config: 1.0 -- 16:15:07.485 DEBUG [24184]: Connecting to database... -- 16:15:07.485 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:15:07.485 SQL [24184]: pgsql_db_connect() -- 16:15:07.489 DEBUG [24184]: Database connection successful -- 16:15:07.489 INFO [24184]: _SERVER found -- 16:15:07.489 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 16:15:07.489 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 16:15:07.489 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vvtmmfr9ra4kta2a881jvnapd3e6bfef -- 16:15:07.489 INFO [24184]: QUERY_STRING = /member/index -- 16:15:07.489 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:15:07.528 INFO [24184]: COREGRADE is stopping... -- 16:15:07.528 DEBUG [24184]: Closing database connection -- 16:15:07.528 SQL [24184]: pgsql_close() -- 16:15:07.903 INFO [24184]: COREGRADE is starting... -- 16:15:07.903 INFO [24184]: Version from config: 1.0 -- 16:15:07.903 DEBUG [24184]: Connecting to database... -- 16:15:07.903 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:15:07.903 SQL [24184]: pgsql_db_connect() -- 16:15:07.907 DEBUG [24184]: Database connection successful -- 16:15:07.907 INFO [24184]: _SERVER found -- 16:15:07.907 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 16:15:07.907 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 16:15:07.907 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=len1bstol3tassin9ga0rv94itstd6nn -- 16:15:07.907 INFO [24184]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:15:07.907 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:15:07.918 INFO [24184]: COREGRADE is stopping... -- 16:15:07.918 DEBUG [24184]: Closing database connection -- 16:15:07.918 SQL [24184]: pgsql_close() -- 16:15:07.939 INFO [24184]: COREGRADE is starting... -- 16:15:07.939 INFO [24184]: Version from config: 1.0 -- 16:15:07.939 DEBUG [24184]: Connecting to database... -- 16:15:07.939 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:15:07.939 SQL [24184]: pgsql_db_connect() -- 16:15:07.943 DEBUG [24184]: Database connection successful -- 16:15:07.943 INFO [24184]: _SERVER found -- 16:15:07.943 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 16:15:07.943 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 16:15:07.943 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=len1bstol3tassin9ga0rv94itstd6nn -- 16:15:07.943 INFO [24184]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:15:07.943 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:15:07.954 INFO [24184]: COREGRADE is stopping... -- 16:15:07.954 DEBUG [24184]: Closing database connection -- 16:15:07.954 SQL [24184]: pgsql_close() -- 16:15:11.749 INFO [24184]: COREGRADE is starting... -- 16:15:11.749 INFO [24184]: Version from config: 1.0 -- 16:15:11.749 DEBUG [24184]: Connecting to database... -- 16:15:11.749 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:15:11.749 SQL [24184]: pgsql_db_connect() -- 16:15:11.753 DEBUG [24184]: Database connection successful -- 16:15:11.753 INFO [24184]: _SERVER found -- 16:15:11.753 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 16:15:11.753 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 16:15:11.753 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dt7akf2h4hhllpuc6g9i49vt5ct5j8mn -- 16:15:11.753 INFO [24184]: QUERY_STRING = /member/index -- 16:15:11.753 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:15:11.790 INFO [24184]: COREGRADE is stopping... -- 16:15:11.790 DEBUG [24184]: Closing database connection -- 16:15:11.790 SQL [24184]: pgsql_close() -- 16:15:11.948 INFO [24184]: COREGRADE is starting... -- 16:15:11.948 INFO [24184]: Version from config: 1.0 -- 16:15:11.948 DEBUG [24184]: Connecting to database... -- 16:15:11.948 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:15:11.948 SQL [24184]: pgsql_db_connect() -- 16:15:11.952 DEBUG [24184]: Database connection successful -- 16:15:11.953 INFO [24184]: _SERVER found -- 16:15:11.953 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 16:15:11.953 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 16:15:11.953 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ru50k0r738sa99lqrci1ujq4tjsqib40 -- 16:15:11.953 INFO [24184]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:15:11.953 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:15:11.964 INFO [24184]: COREGRADE is stopping... -- 16:15:11.964 DEBUG [24184]: Closing database connection -- 16:15:11.964 SQL [24184]: pgsql_close() -- 16:15:11.969 INFO [24137]: COREGRADE is starting... -- 16:15:11.970 INFO [24137]: Version from config: 1.0 -- 16:15:11.970 DEBUG [24137]: Connecting to database... -- 16:15:11.970 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:15:11.970 SQL [24137]: pgsql_db_connect() -- 16:15:11.974 DEBUG [24137]: Database connection successful -- 16:15:11.974 INFO [24137]: _SERVER found -- 16:15:11.974 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 16:15:11.974 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 16:15:11.974 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ru50k0r738sa99lqrci1ujq4tjsqib40 -- 16:15:11.974 INFO [24137]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:15:11.974 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:15:11.985 INFO [24137]: COREGRADE is stopping... -- 16:15:11.985 DEBUG [24137]: Closing database connection -- 16:15:11.985 SQL [24137]: pgsql_close() -- 16:16:41.640 INFO [24139]: COREGRADE is starting... -- 16:16:41.640 INFO [24139]: Version from config: 1.0 -- 16:16:41.640 DEBUG [24139]: Connecting to database... -- 16:16:41.640 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:16:41.640 SQL [24139]: pgsql_db_connect() -- 16:16:41.645 DEBUG [24139]: Database connection successful -- 16:16:41.645 INFO [24139]: _SERVER found -- 16:16:41.645 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 16:16:41.645 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 16:16:41.645 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ru50k0r738sa99lqrci1ujq4tjsqib40 -- 16:16:41.645 INFO [24139]: QUERY_STRING = /member/index -- 16:16:41.645 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:16:41.684 INFO [24139]: COREGRADE is stopping... -- 16:16:41.684 DEBUG [24139]: Closing database connection -- 16:16:41.684 SQL [24139]: pgsql_close() -- 16:16:41.832 INFO [24139]: COREGRADE is starting... -- 16:16:41.832 INFO [24139]: Version from config: 1.0 -- 16:16:41.832 DEBUG [24139]: Connecting to database... -- 16:16:41.832 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:16:41.832 SQL [24139]: pgsql_db_connect() -- 16:16:41.836 DEBUG [24139]: Database connection successful -- 16:16:41.836 INFO [24139]: _SERVER found -- 16:16:41.836 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 16:16:41.836 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 16:16:41.836 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ru50k0r738sa99lqrci1ujq4tjsqib40 -- 16:16:41.836 INFO [24139]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:16:41.836 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:16:41.848 INFO [24139]: COREGRADE is stopping... -- 16:16:41.848 DEBUG [24139]: Closing database connection -- 16:16:41.848 SQL [24139]: pgsql_close() -- 16:16:41.850 INFO [24138]: COREGRADE is starting... -- 16:16:41.851 INFO [24138]: Version from config: 1.0 -- 16:16:41.851 DEBUG [24138]: Connecting to database... -- 16:16:41.851 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:16:41.851 SQL [24138]: pgsql_db_connect() -- 16:16:41.855 DEBUG [24138]: Database connection successful -- 16:16:41.855 INFO [24138]: _SERVER found -- 16:16:41.855 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 16:16:41.855 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 16:16:41.855 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ru50k0r738sa99lqrci1ujq4tjsqib40 -- 16:16:41.855 INFO [24138]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:16:41.855 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:16:41.866 INFO [24138]: COREGRADE is stopping... -- 16:16:41.866 DEBUG [24138]: Closing database connection -- 16:16:41.866 SQL [24138]: pgsql_close() -- 16:16:45.353 INFO [24139]: COREGRADE is starting... -- 16:16:45.354 INFO [24139]: Version from config: 1.0 -- 16:16:45.354 DEBUG [24139]: Connecting to database... -- 16:16:45.354 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:16:45.354 SQL [24139]: pgsql_db_connect() -- 16:16:45.358 DEBUG [24139]: Database connection successful -- 16:16:45.358 INFO [24139]: _SERVER found -- 16:16:45.358 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 16:16:45.358 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 16:16:45.358 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=len1bstol3tassin9ga0rv94itstd6nn -- 16:16:45.358 INFO [24139]: QUERY_STRING = /member/index -- 16:16:45.358 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:16:45.396 INFO [24139]: COREGRADE is stopping... -- 16:16:45.396 DEBUG [24139]: Closing database connection -- 16:16:45.396 SQL [24139]: pgsql_close() -- 16:16:45.729 INFO [24139]: COREGRADE is starting... -- 16:16:45.729 INFO [24139]: Version from config: 1.0 -- 16:16:45.729 DEBUG [24139]: Connecting to database... -- 16:16:45.729 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:16:45.729 SQL [24139]: pgsql_db_connect() -- 16:16:45.733 DEBUG [24139]: Database connection successful -- 16:16:45.733 INFO [24139]: _SERVER found -- 16:16:45.733 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 16:16:45.733 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 16:16:45.733 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=len1bstol3tassin9ga0rv94itstd6nn -- 16:16:45.733 INFO [24139]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:16:45.733 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:16:45.745 INFO [24139]: COREGRADE is stopping... -- 16:16:45.745 DEBUG [24139]: Closing database connection -- 16:16:45.745 SQL [24139]: pgsql_close() -- 16:16:45.747 INFO [30492]: COREGRADE is starting... -- 16:16:45.747 INFO [30492]: Version from config: 1.0 -- 16:16:45.747 DEBUG [30492]: Connecting to database... -- 16:16:45.747 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:16:45.747 SQL [30492]: pgsql_db_connect() -- 16:16:45.751 DEBUG [30492]: Database connection successful -- 16:16:45.751 INFO [30492]: _SERVER found -- 16:16:45.751 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 16:16:45.751 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 16:16:45.751 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=len1bstol3tassin9ga0rv94itstd6nn -- 16:16:45.751 INFO [30492]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:16:45.751 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:16:45.763 INFO [30492]: COREGRADE is stopping... -- 16:16:45.763 DEBUG [30492]: Closing database connection -- 16:16:45.763 SQL [30492]: pgsql_close() -- 16:17:08.290 INFO [24847]: COREGRADE is starting... -- 16:17:08.290 INFO [24847]: Version from config: 1.0 -- 16:17:08.290 DEBUG [24847]: Connecting to database... -- 16:17:08.290 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:08.290 SQL [24847]: pgsql_db_connect() -- 16:17:08.294 DEBUG [24847]: Database connection successful -- 16:17:08.294 INFO [24847]: _SERVER found -- 16:17:08.294 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 16:17:08.294 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:08.294 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ru50k0r738sa99lqrci1ujq4tjsqib40 -- 16:17:08.294 INFO [24847]: QUERY_STRING = /member/index -- 16:17:08.294 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:08.330 INFO [24847]: COREGRADE is stopping... -- 16:17:08.330 DEBUG [24847]: Closing database connection -- 16:17:08.330 SQL [24847]: pgsql_close() -- 16:17:35.530 INFO [30474]: COREGRADE is starting... -- 16:17:35.530 INFO [30474]: Version from config: 1.0 -- 16:17:35.530 DEBUG [30474]: Connecting to database... -- 16:17:35.530 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:35.530 SQL [30474]: pgsql_db_connect() -- 16:17:35.535 DEBUG [30474]: Database connection successful -- 16:17:35.535 INFO [30474]: _SERVER found -- 16:17:35.535 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:17:35.535 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:35.535 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=len1bstol3tassin9ga0rv94itstd6nn -- 16:17:35.535 INFO [30474]: QUERY_STRING = /member/index -- 16:17:35.535 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:35.569 INFO [30474]: COREGRADE is stopping... -- 16:17:35.570 DEBUG [30474]: Closing database connection -- 16:17:35.570 SQL [30474]: pgsql_close() -- 16:17:35.899 INFO [30474]: COREGRADE is starting... -- 16:17:35.900 INFO [30474]: Version from config: 1.0 -- 16:17:35.900 DEBUG [30474]: Connecting to database... -- 16:17:35.900 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:35.900 SQL [30474]: pgsql_db_connect() -- 16:17:35.904 DEBUG [30474]: Database connection successful -- 16:17:35.904 INFO [30474]: _SERVER found -- 16:17:35.904 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:17:35.904 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:35.904 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=len1bstol3tassin9ga0rv94itstd6nn -- 16:17:35.904 INFO [30474]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:17:35.904 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:35.915 INFO [30474]: COREGRADE is stopping... -- 16:17:35.915 DEBUG [30474]: Closing database connection -- 16:17:35.915 SQL [30474]: pgsql_close() -- 16:17:35.919 INFO [30476]: COREGRADE is starting... -- 16:17:35.920 INFO [30476]: Version from config: 1.0 -- 16:17:35.920 DEBUG [30476]: Connecting to database... -- 16:17:35.920 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:35.920 SQL [30476]: pgsql_db_connect() -- 16:17:35.924 DEBUG [30476]: Database connection successful -- 16:17:35.924 INFO [30476]: _SERVER found -- 16:17:35.924 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 16:17:35.924 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:35.924 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=len1bstol3tassin9ga0rv94itstd6nn -- 16:17:35.924 INFO [30476]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:17:35.924 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:35.935 INFO [30476]: COREGRADE is stopping... -- 16:17:35.935 DEBUG [30476]: Closing database connection -- 16:17:35.935 SQL [30476]: pgsql_close() -- 16:17:38.301 INFO [30476]: COREGRADE is starting... -- 16:17:38.302 INFO [30476]: Version from config: 1.0 -- 16:17:38.302 DEBUG [30476]: Connecting to database... -- 16:17:38.302 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:38.302 SQL [30476]: pgsql_db_connect() -- 16:17:38.306 DEBUG [30476]: Database connection successful -- 16:17:38.306 INFO [30476]: _SERVER found -- 16:17:38.306 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 16:17:38.306 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:38.306 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=len1bstol3tassin9ga0rv94itstd6nn -- 16:17:38.306 INFO [30476]: QUERY_STRING = /member/page -- 16:17:38.306 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:38.317 INFO [30476]: COREGRADE is stopping... -- 16:17:38.317 DEBUG [30476]: Closing database connection -- 16:17:38.317 SQL [30476]: pgsql_close() -- 16:17:39.700 INFO [30475]: COREGRADE is starting... -- 16:17:39.701 INFO [30475]: Version from config: 1.0 -- 16:17:39.701 DEBUG [30475]: Connecting to database... -- 16:17:39.701 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:39.701 SQL [30475]: pgsql_db_connect() -- 16:17:39.705 DEBUG [30475]: Database connection successful -- 16:17:39.705 INFO [30475]: _SERVER found -- 16:17:39.705 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 16:17:39.705 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:39.705 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ru50k0r738sa99lqrci1ujq4tjsqib40 -- 16:17:39.705 INFO [30475]: QUERY_STRING = /member/index -- 16:17:39.705 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:39.740 INFO [30475]: COREGRADE is stopping... -- 16:17:39.740 DEBUG [30475]: Closing database connection -- 16:17:39.740 SQL [30475]: pgsql_close() -- 16:17:39.878 INFO [30475]: COREGRADE is starting... -- 16:17:39.878 INFO [30475]: Version from config: 1.0 -- 16:17:39.878 DEBUG [30475]: Connecting to database... -- 16:17:39.878 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:39.878 SQL [30475]: pgsql_db_connect() -- 16:17:39.889 INFO [30474]: COREGRADE is starting... -- 16:17:39.889 INFO [30474]: Version from config: 1.0 -- 16:17:39.889 DEBUG [30474]: Connecting to database... -- 16:17:39.889 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:39.889 SQL [30474]: pgsql_db_connect() -- 16:17:39.882 DEBUG [30475]: Database connection successful -- 16:17:39.882 INFO [30475]: _SERVER found -- 16:17:39.882 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 16:17:39.882 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:39.882 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ru50k0r738sa99lqrci1ujq4tjsqib40 -- 16:17:39.882 INFO [30475]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:17:39.882 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:39.893 INFO [30475]: COREGRADE is stopping... -- 16:17:39.894 DEBUG [30475]: Closing database connection -- 16:17:39.894 SQL [30475]: pgsql_close() -- 16:17:39.893 DEBUG [30474]: Database connection successful -- 16:17:39.893 INFO [30474]: _SERVER found -- 16:17:39.893 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:17:39.893 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:39.893 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ru50k0r738sa99lqrci1ujq4tjsqib40 -- 16:17:39.893 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:17:39.893 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:39.905 INFO [30474]: COREGRADE is stopping... -- 16:17:39.905 DEBUG [30474]: Closing database connection -- 16:17:39.905 SQL [30474]: pgsql_close() -- 16:17:40.742 INFO [30474]: COREGRADE is starting... -- 16:17:40.743 INFO [30474]: Version from config: 1.0 -- 16:17:40.743 DEBUG [30474]: Connecting to database... -- 16:17:40.743 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:40.743 SQL [30474]: pgsql_db_connect() -- 16:17:40.747 DEBUG [30474]: Database connection successful -- 16:17:40.747 INFO [30474]: _SERVER found -- 16:17:40.747 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:17:40.747 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:40.747 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ru50k0r738sa99lqrci1ujq4tjsqib40 -- 16:17:40.747 INFO [30474]: QUERY_STRING = /member/page -- 16:17:40.747 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:40.758 INFO [30474]: COREGRADE is stopping... -- 16:17:40.758 DEBUG [30474]: Closing database connection -- 16:17:40.758 SQL [30474]: pgsql_close() -- 16:17:43.586 INFO [30474]: COREGRADE is starting... -- 16:17:43.587 INFO [30474]: Version from config: 1.0 -- 16:17:43.587 DEBUG [30474]: Connecting to database... -- 16:17:43.587 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:43.587 SQL [30474]: pgsql_db_connect() -- 16:17:43.591 DEBUG [30474]: Database connection successful -- 16:17:43.591 INFO [30474]: _SERVER found -- 16:17:43.591 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:17:43.591 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:43.591 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ru50k0r738sa99lqrci1ujq4tjsqib40 -- 16:17:43.591 INFO [30474]: QUERY_STRING = /member/index -- 16:17:43.591 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:43.625 INFO [30474]: COREGRADE is stopping... -- 16:17:43.625 DEBUG [30474]: Closing database connection -- 16:17:43.625 SQL [30474]: pgsql_close() -- 16:17:43.920 INFO [30474]: COREGRADE is starting... -- 16:17:43.920 INFO [30474]: Version from config: 1.0 -- 16:17:43.920 DEBUG [30474]: Connecting to database... -- 16:17:43.920 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:43.920 SQL [30474]: pgsql_db_connect() -- 16:17:43.924 DEBUG [30474]: Database connection successful -- 16:17:43.924 INFO [30474]: _SERVER found -- 16:17:43.924 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:17:43.924 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:43.924 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ru50k0r738sa99lqrci1ujq4tjsqib40 -- 16:17:43.924 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:17:43.924 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:43.936 INFO [30474]: COREGRADE is stopping... -- 16:17:43.936 DEBUG [30474]: Closing database connection -- 16:17:43.936 SQL [30474]: pgsql_close() -- 16:17:45.186 INFO [30474]: COREGRADE is starting... -- 16:17:45.186 INFO [30474]: Version from config: 1.0 -- 16:17:45.186 DEBUG [30474]: Connecting to database... -- 16:17:45.186 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:45.186 SQL [30474]: pgsql_db_connect() -- 16:17:45.190 DEBUG [30474]: Database connection successful -- 16:17:45.190 INFO [30474]: _SERVER found -- 16:17:45.190 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:17:45.190 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:45.190 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ru50k0r738sa99lqrci1ujq4tjsqib40 -- 16:17:45.190 INFO [30474]: QUERY_STRING = /member/page -- 16:17:45.190 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:45.201 INFO [30474]: COREGRADE is stopping... -- 16:17:45.201 DEBUG [30474]: Closing database connection -- 16:17:45.201 SQL [30474]: pgsql_close() -- 16:17:47.561 INFO [30474]: COREGRADE is starting... -- 16:17:47.561 INFO [30474]: Version from config: 1.0 -- 16:17:47.561 DEBUG [30474]: Connecting to database... -- 16:17:47.561 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:47.561 SQL [30474]: pgsql_db_connect() -- 16:17:47.565 DEBUG [30474]: Database connection successful -- 16:17:47.565 INFO [30474]: _SERVER found -- 16:17:47.565 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:17:47.565 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:47.565 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ru50k0r738sa99lqrci1ujq4tjsqib40 -- 16:17:47.565 INFO [30474]: QUERY_STRING = /member/index -- 16:17:47.565 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:47.599 INFO [30474]: COREGRADE is stopping... -- 16:17:47.599 DEBUG [30474]: Closing database connection -- 16:17:47.599 SQL [30474]: pgsql_close() -- 16:17:50.214 INFO [30474]: COREGRADE is starting... -- 16:17:50.215 INFO [30474]: Version from config: 1.0 -- 16:17:50.215 DEBUG [30474]: Connecting to database... -- 16:17:50.215 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:50.215 SQL [30474]: pgsql_db_connect() -- 16:17:50.219 DEBUG [30474]: Database connection successful -- 16:17:50.219 INFO [30474]: _SERVER found -- 16:17:50.219 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:17:50.219 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:50.219 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ru50k0r738sa99lqrci1ujq4tjsqib40 -- 16:17:50.219 INFO [30474]: QUERY_STRING = /member/page -- 16:17:50.219 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:50.230 INFO [30474]: COREGRADE is stopping... -- 16:17:50.230 DEBUG [30474]: Closing database connection -- 16:17:50.230 SQL [30474]: pgsql_close() -- 16:17:53.758 INFO [30474]: COREGRADE is starting... -- 16:17:53.759 INFO [30474]: Version from config: 1.0 -- 16:17:53.759 DEBUG [30474]: Connecting to database... -- 16:17:53.759 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:53.759 SQL [30474]: pgsql_db_connect() -- 16:17:53.763 DEBUG [30474]: Database connection successful -- 16:17:53.763 INFO [30474]: _SERVER found -- 16:17:53.763 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:17:53.763 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:53.763 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ru50k0r738sa99lqrci1ujq4tjsqib40 -- 16:17:53.763 INFO [30474]: QUERY_STRING = /member/index -- 16:17:53.763 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:53.797 INFO [30474]: COREGRADE is stopping... -- 16:17:53.797 DEBUG [30474]: Closing database connection -- 16:17:53.797 SQL [30474]: pgsql_close() -- 16:17:54.115 INFO [30474]: COREGRADE is starting... -- 16:17:54.116 INFO [30474]: Version from config: 1.0 -- 16:17:54.116 DEBUG [30474]: Connecting to database... -- 16:17:54.116 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:54.116 SQL [30474]: pgsql_db_connect() -- 16:17:54.120 DEBUG [30474]: Database connection successful -- 16:17:54.120 INFO [30474]: _SERVER found -- 16:17:54.120 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:17:54.120 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:54.120 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ru50k0r738sa99lqrci1ujq4tjsqib40 -- 16:17:54.120 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:17:54.120 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:54.131 INFO [30474]: COREGRADE is stopping... -- 16:17:54.131 DEBUG [30474]: Closing database connection -- 16:17:54.131 SQL [30474]: pgsql_close() -- 16:17:56.549 INFO [30474]: COREGRADE is starting... -- 16:17:56.549 INFO [30474]: Version from config: 1.0 -- 16:17:56.549 DEBUG [30474]: Connecting to database... -- 16:17:56.549 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:56.549 SQL [30474]: pgsql_db_connect() -- 16:17:56.553 DEBUG [30474]: Database connection successful -- 16:17:56.553 INFO [30474]: _SERVER found -- 16:17:56.553 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:17:56.553 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:56.553 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ru50k0r738sa99lqrci1ujq4tjsqib40 -- 16:17:56.553 INFO [30474]: QUERY_STRING = /member/page -- 16:17:56.553 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:56.565 INFO [30474]: COREGRADE is stopping... -- 16:17:56.565 DEBUG [30474]: Closing database connection -- 16:17:56.565 SQL [30474]: pgsql_close() -- 16:17:57.563 INFO [30474]: COREGRADE is starting... -- 16:17:57.563 INFO [30474]: Version from config: 1.0 -- 16:17:57.563 DEBUG [30474]: Connecting to database... -- 16:17:57.563 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:57.563 SQL [30474]: pgsql_db_connect() -- 16:17:57.567 DEBUG [30474]: Database connection successful -- 16:17:57.567 INFO [30474]: _SERVER found -- 16:17:57.567 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:17:57.567 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:57.567 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=len1bstol3tassin9ga0rv94itstd6nn -- 16:17:57.567 INFO [30474]: QUERY_STRING = /member/index -- 16:17:57.567 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:57.602 INFO [30474]: COREGRADE is stopping... -- 16:17:57.602 DEBUG [30474]: Closing database connection -- 16:17:57.602 SQL [30474]: pgsql_close() -- 16:17:59.894 INFO [30474]: COREGRADE is starting... -- 16:17:59.894 INFO [30474]: Version from config: 1.0 -- 16:17:59.894 DEBUG [30474]: Connecting to database... -- 16:17:59.894 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:59.894 SQL [30474]: pgsql_db_connect() -- 16:17:59.899 DEBUG [30474]: Database connection successful -- 16:17:59.899 INFO [30474]: _SERVER found -- 16:17:59.899 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:17:59.899 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:59.899 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=len1bstol3tassin9ga0rv94itstd6nn -- 16:17:59.899 INFO [30474]: QUERY_STRING = /member/page -- 16:17:59.899 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:59.910 INFO [30474]: COREGRADE is stopping... -- 16:17:59.910 DEBUG [30474]: Closing database connection -- 16:17:59.910 SQL [30474]: pgsql_close() -- 16:18:34.054 INFO [24136]: COREGRADE is starting... -- 16:18:34.054 INFO [24136]: Version from config: 1.0 -- 16:18:34.054 DEBUG [24136]: Connecting to database... -- 16:18:34.054 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:18:34.054 SQL [24136]: pgsql_db_connect() -- 16:18:34.058 DEBUG [24136]: Database connection successful -- 16:18:34.058 INFO [24136]: _SERVER found -- 16:18:34.058 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 16:18:34.058 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 16:18:34.058 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=len1bstol3tassin9ga0rv94itstd6nn -- 16:18:34.058 INFO [24136]: QUERY_STRING = /member/page -- 16:18:34.058 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:18:34.090 INFO [24136]: COREGRADE is stopping... -- 16:18:34.090 DEBUG [24136]: Closing database connection -- 16:18:34.090 SQL [24136]: pgsql_close() -- 16:18:36.876 INFO [24184]: COREGRADE is starting... -- 16:18:36.876 INFO [24184]: Version from config: 1.0 -- 16:18:36.876 DEBUG [24184]: Connecting to database... -- 16:18:36.876 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:18:36.876 SQL [24184]: pgsql_db_connect() -- 16:18:36.880 DEBUG [24184]: Database connection successful -- 16:18:36.880 INFO [24184]: _SERVER found -- 16:18:36.880 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 16:18:36.880 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 16:18:36.880 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ru50k0r738sa99lqrci1ujq4tjsqib40 -- 16:18:36.880 INFO [24184]: QUERY_STRING = /member/page -- 16:18:36.880 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:18:36.913 INFO [24184]: COREGRADE is stopping... -- 16:18:36.913 DEBUG [24184]: Closing database connection -- 16:18:36.913 SQL [24184]: pgsql_close() -- 16:21:06.129 INFO [24137]: COREGRADE is starting... -- 16:21:06.130 INFO [24137]: Version from config: 1.0 -- 16:21:06.130 DEBUG [24137]: Connecting to database... -- 16:21:06.130 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:21:06.130 SQL [24137]: pgsql_db_connect() -- 16:21:06.134 DEBUG [24137]: Database connection successful -- 16:21:06.134 INFO [24137]: _SERVER found -- 16:21:06.134 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 16:21:06.134 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 16:21:06.134 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ru50k0r738sa99lqrci1ujq4tjsqib40 -- 16:21:06.134 INFO [24137]: QUERY_STRING = /member/page -- 16:21:06.134 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:21:06.167 INFO [24137]: COREGRADE is stopping... -- 16:21:06.167 DEBUG [24137]: Closing database connection -- 16:21:06.168 SQL [24137]: pgsql_close() -- 16:21:06.333 INFO [24137]: COREGRADE is starting... -- 16:21:06.333 INFO [24137]: Version from config: 1.0 -- 16:21:06.333 DEBUG [24137]: Connecting to database... -- 16:21:06.333 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:21:06.333 SQL [24137]: pgsql_db_connect() -- 16:21:06.337 DEBUG [24137]: Database connection successful -- 16:21:06.337 INFO [24137]: _SERVER found -- 16:21:06.337 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 16:21:06.337 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 16:21:06.337 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=k4gie8gu1rnah7u7tgrm4pepdoakqcjt -- 16:21:06.337 INFO [24137]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:21:06.337 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:21:06.348 INFO [24137]: COREGRADE is stopping... -- 16:21:06.348 DEBUG [24137]: Closing database connection -- 16:21:06.348 SQL [24137]: pgsql_close() -- 16:21:06.356 INFO [24137]: COREGRADE is starting... -- 16:21:06.356 INFO [24137]: Version from config: 1.0 -- 16:21:06.356 DEBUG [24137]: Connecting to database... -- 16:21:06.356 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:21:06.356 SQL [24137]: pgsql_db_connect() -- 16:21:06.360 DEBUG [24137]: Database connection successful -- 16:21:06.360 INFO [24137]: _SERVER found -- 16:21:06.360 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 16:21:06.360 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 16:21:06.360 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=k4gie8gu1rnah7u7tgrm4pepdoakqcjt -- 16:21:06.360 INFO [24137]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:21:06.360 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:21:06.371 INFO [24137]: COREGRADE is stopping... -- 16:21:06.371 DEBUG [24137]: Closing database connection -- 16:21:06.371 SQL [24137]: pgsql_close() -- 16:21:09.140 INFO [24138]: COREGRADE is starting... -- 16:21:09.140 INFO [24138]: Version from config: 1.0 -- 16:21:09.140 DEBUG [24138]: Connecting to database... -- 16:21:09.140 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:21:09.140 SQL [24138]: pgsql_db_connect() -- 16:21:09.144 DEBUG [24138]: Database connection successful -- 16:21:09.144 INFO [24138]: _SERVER found -- 16:21:09.144 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 16:21:09.144 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 16:21:09.144 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=len1bstol3tassin9ga0rv94itstd6nn -- 16:21:09.144 INFO [24138]: QUERY_STRING = /member/page -- 16:21:09.144 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:21:09.189 INFO [24138]: COREGRADE is stopping... -- 16:21:09.189 DEBUG [24138]: Closing database connection -- 16:21:09.189 SQL [24138]: pgsql_close() -- 16:21:09.687 INFO [24138]: COREGRADE is starting... -- 16:21:09.688 INFO [24138]: Version from config: 1.0 -- 16:21:09.688 DEBUG [24138]: Connecting to database... -- 16:21:09.688 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:21:09.688 SQL [24138]: pgsql_db_connect() -- 16:21:09.692 DEBUG [24138]: Database connection successful -- 16:21:09.692 INFO [24138]: _SERVER found -- 16:21:09.692 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 16:21:09.692 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 16:21:09.692 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:21:09.692 INFO [24138]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:21:09.692 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:21:09.703 INFO [24138]: COREGRADE is stopping... -- 16:21:09.703 DEBUG [24138]: Closing database connection -- 16:21:09.703 SQL [24138]: pgsql_close() -- 16:21:09.704 INFO [24139]: COREGRADE is starting... -- 16:21:09.704 INFO [24139]: Version from config: 1.0 -- 16:21:09.704 DEBUG [24139]: Connecting to database... -- 16:21:09.704 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:21:09.704 SQL [24139]: pgsql_db_connect() -- 16:21:09.708 DEBUG [24139]: Database connection successful -- 16:21:09.708 INFO [24139]: _SERVER found -- 16:21:09.708 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 16:21:09.708 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 16:21:09.708 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:21:09.708 INFO [24139]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:21:09.708 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:21:09.720 INFO [24139]: COREGRADE is stopping... -- 16:21:09.720 DEBUG [24139]: Closing database connection -- 16:21:09.720 SQL [24139]: pgsql_close() -- 16:21:19.340 INFO [30492]: COREGRADE is starting... -- 16:21:19.340 INFO [30492]: Version from config: 1.0 -- 16:21:19.340 DEBUG [30492]: Connecting to database... -- 16:21:19.340 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:21:19.340 SQL [30492]: pgsql_db_connect() -- 16:21:19.344 DEBUG [30492]: Database connection successful -- 16:21:19.344 INFO [30492]: _SERVER found -- 16:21:19.344 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 16:21:19.344 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 16:21:19.344 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:21:19.344 INFO [30492]: QUERY_STRING = /member/page -- 16:21:19.344 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:21:19.377 INFO [30492]: COREGRADE is stopping... -- 16:21:19.377 DEBUG [30492]: Closing database connection -- 16:21:19.377 SQL [30492]: pgsql_close() -- 16:21:19.642 INFO [30492]: COREGRADE is starting... -- 16:21:19.642 INFO [30492]: Version from config: 1.0 -- 16:21:19.642 DEBUG [30492]: Connecting to database... -- 16:21:19.642 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:21:19.642 SQL [30492]: pgsql_db_connect() -- 16:21:19.646 DEBUG [30492]: Database connection successful -- 16:21:19.646 INFO [30492]: _SERVER found -- 16:21:19.646 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 16:21:19.646 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 16:21:19.646 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:21:19.646 INFO [30492]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:21:19.646 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:21:19.657 INFO [30492]: COREGRADE is stopping... -- 16:21:19.657 DEBUG [30492]: Closing database connection -- 16:21:19.657 SQL [30492]: pgsql_close() -- 16:21:19.659 INFO [24847]: COREGRADE is starting... -- 16:21:19.660 INFO [24847]: Version from config: 1.0 -- 16:21:19.660 DEBUG [24847]: Connecting to database... -- 16:21:19.660 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:21:19.660 SQL [24847]: pgsql_db_connect() -- 16:21:19.664 DEBUG [24847]: Database connection successful -- 16:21:19.664 INFO [24847]: _SERVER found -- 16:21:19.664 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 16:21:19.664 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 16:21:19.664 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:21:19.664 INFO [24847]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:21:19.664 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:21:19.675 INFO [24847]: COREGRADE is stopping... -- 16:21:19.675 DEBUG [24847]: Closing database connection -- 16:21:19.675 SQL [24847]: pgsql_close() -- 16:21:24.882 INFO [30476]: COREGRADE is starting... -- 16:21:24.882 INFO [30476]: Version from config: 1.0 -- 16:21:24.882 DEBUG [30476]: Connecting to database... -- 16:21:24.882 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:21:24.882 SQL [30476]: pgsql_db_connect() -- 16:21:24.886 DEBUG [30476]: Database connection successful -- 16:21:24.886 INFO [30476]: _SERVER found -- 16:21:24.886 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 16:21:24.886 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 16:21:24.886 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:21:24.886 INFO [30476]: QUERY_STRING = screen=member/app-email -- 16:21:24.886 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:21:24.898 INFO [30476]: COREGRADE is stopping... -- 16:21:24.898 DEBUG [30476]: Closing database connection -- 16:21:24.898 SQL [30476]: pgsql_close() -- 16:21:26.829 INFO [30476]: COREGRADE is starting... -- 16:21:26.829 INFO [30476]: Version from config: 1.0 -- 16:21:26.829 DEBUG [30476]: Connecting to database... -- 16:21:26.829 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:21:26.829 SQL [30476]: pgsql_db_connect() -- 16:21:26.833 DEBUG [30476]: Database connection successful -- 16:21:26.833 INFO [30476]: _SERVER found -- 16:21:26.833 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 16:21:26.833 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 16:21:26.833 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:21:26.833 INFO [30476]: QUERY_STRING = /member/page -- 16:21:26.833 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:21:26.865 INFO [30476]: COREGRADE is stopping... -- 16:21:26.866 DEBUG [30476]: Closing database connection -- 16:21:26.866 SQL [30476]: pgsql_close() -- 16:21:27.079 INFO [30476]: COREGRADE is starting... -- 16:21:27.079 INFO [30476]: Version from config: 1.0 -- 16:21:27.079 DEBUG [30476]: Connecting to database... -- 16:21:27.079 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:21:27.079 SQL [30476]: pgsql_db_connect() -- 16:21:27.084 DEBUG [30476]: Database connection successful -- 16:21:27.084 INFO [30476]: _SERVER found -- 16:21:27.084 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 16:21:27.084 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 16:21:27.084 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:21:27.084 INFO [30476]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:21:27.084 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:21:27.095 INFO [30476]: COREGRADE is stopping... -- 16:21:27.095 DEBUG [30476]: Closing database connection -- 16:21:27.095 SQL [30476]: pgsql_close() -- 16:21:40.125 INFO [30475]: COREGRADE is starting... -- 16:21:40.126 INFO [30475]: Version from config: 1.0 -- 16:21:40.126 DEBUG [30475]: Connecting to database... -- 16:21:40.126 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:21:40.126 SQL [30475]: pgsql_db_connect() -- 16:21:40.130 DEBUG [30475]: Database connection successful -- 16:21:40.130 INFO [30475]: _SERVER found -- 16:21:40.130 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 16:21:40.130 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 16:21:40.130 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:21:40.130 INFO [30475]: QUERY_STRING = /member/page -- 16:21:40.130 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:21:40.162 INFO [30475]: COREGRADE is stopping... -- 16:21:40.162 DEBUG [30475]: Closing database connection -- 16:21:40.162 SQL [30475]: pgsql_close() -- 16:21:40.594 INFO [30475]: COREGRADE is starting... -- 16:21:40.594 INFO [30475]: Version from config: 1.0 -- 16:21:40.594 DEBUG [30475]: Connecting to database... -- 16:21:40.594 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:21:40.594 SQL [30475]: pgsql_db_connect() -- 16:21:40.598 DEBUG [30475]: Database connection successful -- 16:21:40.598 INFO [30475]: _SERVER found -- 16:21:40.598 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 16:21:40.598 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 16:21:40.598 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:21:40.598 INFO [30475]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:21:40.598 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:21:40.609 INFO [30475]: COREGRADE is stopping... -- 16:21:40.609 DEBUG [30475]: Closing database connection -- 16:21:40.609 SQL [30475]: pgsql_close() -- 16:21:40.612 INFO [30474]: COREGRADE is starting... -- 16:21:40.613 INFO [30474]: Version from config: 1.0 -- 16:21:40.613 DEBUG [30474]: Connecting to database... -- 16:21:40.613 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:21:40.613 SQL [30474]: pgsql_db_connect() -- 16:21:40.617 DEBUG [30474]: Database connection successful -- 16:21:40.617 INFO [30474]: _SERVER found -- 16:21:40.617 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:21:40.617 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:21:40.617 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:21:40.617 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:21:40.617 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:21:40.628 INFO [30474]: COREGRADE is stopping... -- 16:21:40.628 DEBUG [30474]: Closing database connection -- 16:21:40.628 SQL [30474]: pgsql_close() -- 16:22:15.572 INFO [24136]: COREGRADE is starting... -- 16:22:15.572 INFO [24136]: Version from config: 1.0 -- 16:22:15.572 DEBUG [24136]: Connecting to database... -- 16:22:15.572 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:22:15.572 SQL [24136]: pgsql_db_connect() -- 16:22:15.577 DEBUG [24136]: Database connection successful -- 16:22:15.577 INFO [24136]: _SERVER found -- 16:22:15.577 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 16:22:15.577 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 16:22:15.577 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:22:15.577 INFO [24136]: QUERY_STRING = /member/index -- 16:22:15.577 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:22:15.612 INFO [24136]: COREGRADE is stopping... -- 16:22:15.612 DEBUG [24136]: Closing database connection -- 16:22:15.613 SQL [24136]: pgsql_close() -- 16:22:16.058 INFO [24136]: COREGRADE is starting... -- 16:22:16.058 INFO [24136]: Version from config: 1.0 -- 16:22:16.058 DEBUG [24136]: Connecting to database... -- 16:22:16.058 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:22:16.058 SQL [24136]: pgsql_db_connect() -- 16:22:16.062 DEBUG [24136]: Database connection successful -- 16:22:16.062 INFO [24136]: _SERVER found -- 16:22:16.062 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 16:22:16.062 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 16:22:16.062 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:22:16.062 INFO [24136]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:22:16.062 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:22:16.073 INFO [24136]: COREGRADE is stopping... -- 16:22:16.073 DEBUG [24136]: Closing database connection -- 16:22:16.073 SQL [24136]: pgsql_close() -- 16:22:17.035 INFO [24136]: COREGRADE is starting... -- 16:22:17.036 INFO [24136]: Version from config: 1.0 -- 16:22:17.036 DEBUG [24136]: Connecting to database... -- 16:22:17.036 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:22:17.036 SQL [24136]: pgsql_db_connect() -- 16:22:17.040 DEBUG [24136]: Database connection successful -- 16:22:17.040 INFO [24136]: _SERVER found -- 16:22:17.040 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 16:22:17.040 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 16:22:17.040 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:22:17.040 INFO [24136]: QUERY_STRING = /member/page -- 16:22:17.040 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:22:17.072 INFO [24136]: COREGRADE is stopping... -- 16:22:17.073 DEBUG [24136]: Closing database connection -- 16:22:17.073 SQL [24136]: pgsql_close() -- 16:22:17.363 INFO [24136]: COREGRADE is starting... -- 16:22:17.363 INFO [24136]: Version from config: 1.0 -- 16:22:17.363 DEBUG [24136]: Connecting to database... -- 16:22:17.363 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:22:17.363 SQL [24136]: pgsql_db_connect() -- 16:22:17.376 INFO [24184]: COREGRADE is starting... -- 16:22:17.376 INFO [24184]: Version from config: 1.0 -- 16:22:17.376 DEBUG [24184]: Connecting to database... -- 16:22:17.376 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:22:17.376 SQL [24184]: pgsql_db_connect() -- 16:22:17.367 DEBUG [24136]: Database connection successful -- 16:22:17.367 INFO [24136]: _SERVER found -- 16:22:17.367 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 16:22:17.367 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 16:22:17.367 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:22:17.367 INFO [24136]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:22:17.367 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:22:17.379 INFO [24136]: COREGRADE is stopping... -- 16:22:17.379 DEBUG [24136]: Closing database connection -- 16:22:17.379 SQL [24136]: pgsql_close() -- 16:22:17.381 DEBUG [24184]: Database connection successful -- 16:22:17.381 INFO [24184]: _SERVER found -- 16:22:17.381 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 16:22:17.381 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 16:22:17.381 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:22:17.381 INFO [24184]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:22:17.381 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:22:17.392 INFO [24184]: COREGRADE is stopping... -- 16:22:17.392 DEBUG [24184]: Closing database connection -- 16:22:17.392 SQL [24184]: pgsql_close() -- 16:22:32.714 INFO [24137]: COREGRADE is starting... -- 16:22:32.714 INFO [24137]: Version from config: 1.0 -- 16:22:32.714 DEBUG [24137]: Connecting to database... -- 16:22:32.714 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:22:32.714 SQL [24137]: pgsql_db_connect() -- 16:22:32.718 DEBUG [24137]: Database connection successful -- 16:22:32.718 INFO [24137]: _SERVER found -- 16:22:32.718 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 16:22:32.718 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 16:22:32.718 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:22:32.718 INFO [24137]: QUERY_STRING = /member/page -- 16:22:32.718 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:22:32.750 INFO [24137]: COREGRADE is stopping... -- 16:22:32.751 DEBUG [24137]: Closing database connection -- 16:22:32.751 SQL [24137]: pgsql_close() -- 16:22:33.076 INFO [24137]: COREGRADE is starting... -- 16:22:33.076 INFO [24137]: Version from config: 1.0 -- 16:22:33.076 DEBUG [24137]: Connecting to database... -- 16:22:33.076 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:22:33.076 SQL [24137]: pgsql_db_connect() -- 16:22:33.080 DEBUG [24137]: Database connection successful -- 16:22:33.080 INFO [24137]: _SERVER found -- 16:22:33.080 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 16:22:33.080 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 16:22:33.080 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:22:33.080 INFO [24137]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:22:33.080 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:22:33.091 INFO [24137]: COREGRADE is stopping... -- 16:22:33.091 DEBUG [24137]: Closing database connection -- 16:22:33.091 SQL [24137]: pgsql_close() -- 16:22:33.092 INFO [24138]: COREGRADE is starting... -- 16:22:33.093 INFO [24138]: Version from config: 1.0 -- 16:22:33.093 DEBUG [24138]: Connecting to database... -- 16:22:33.093 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:22:33.093 SQL [24138]: pgsql_db_connect() -- 16:22:33.096 DEBUG [24138]: Database connection successful -- 16:22:33.096 INFO [24138]: _SERVER found -- 16:22:33.096 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 16:22:33.096 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 16:22:33.096 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:22:33.096 INFO [24138]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:22:33.096 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:22:33.108 INFO [24138]: COREGRADE is stopping... -- 16:22:33.108 DEBUG [24138]: Closing database connection -- 16:22:33.108 SQL [24138]: pgsql_close() -- 16:22:34.368 INFO [24138]: COREGRADE is starting... -- 16:22:34.368 INFO [24138]: Version from config: 1.0 -- 16:22:34.368 DEBUG [24138]: Connecting to database... -- 16:22:34.368 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:22:34.368 SQL [24138]: pgsql_db_connect() -- 16:22:34.372 DEBUG [24138]: Database connection successful -- 16:22:34.372 INFO [24138]: _SERVER found -- 16:22:34.372 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 16:22:34.372 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 16:22:34.372 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:22:34.372 INFO [24138]: QUERY_STRING = /member/index -- 16:22:34.372 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:22:34.406 INFO [24138]: COREGRADE is stopping... -- 16:22:34.406 DEBUG [24138]: Closing database connection -- 16:22:34.406 SQL [24138]: pgsql_close() -- 16:22:34.594 INFO [24139]: COREGRADE is starting... -- 16:22:34.594 INFO [24139]: Version from config: 1.0 -- 16:22:34.594 DEBUG [24139]: Connecting to database... -- 16:22:34.594 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:22:34.594 SQL [24139]: pgsql_db_connect() -- 16:22:34.598 DEBUG [24139]: Database connection successful -- 16:22:34.598 INFO [24139]: _SERVER found -- 16:22:34.598 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 16:22:34.598 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 16:22:34.598 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=k4gie8gu1rnah7u7tgrm4pepdoakqcjt -- 16:22:34.598 INFO [24139]: QUERY_STRING = /member/page -- 16:22:34.598 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:22:34.633 INFO [24139]: COREGRADE is stopping... -- 16:22:34.633 DEBUG [24139]: Closing database connection -- 16:22:34.633 SQL [24139]: pgsql_close() -- 16:22:34.698 INFO [24138]: COREGRADE is starting... -- 16:22:34.698 INFO [24138]: Version from config: 1.0 -- 16:22:34.698 DEBUG [24138]: Connecting to database... -- 16:22:34.698 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:22:34.698 SQL [24138]: pgsql_db_connect() -- 16:22:34.702 DEBUG [24138]: Database connection successful -- 16:22:34.702 INFO [24138]: _SERVER found -- 16:22:34.702 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 16:22:34.702 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 16:22:34.702 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:22:34.702 INFO [24138]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:22:34.702 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:22:34.713 INFO [24138]: COREGRADE is stopping... -- 16:22:34.713 DEBUG [24138]: Closing database connection -- 16:22:34.713 SQL [24138]: pgsql_close() -- 16:22:34.786 INFO [24139]: COREGRADE is starting... -- 16:22:34.786 INFO [24139]: Version from config: 1.0 -- 16:22:34.786 DEBUG [24139]: Connecting to database... -- 16:22:34.786 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:22:34.786 SQL [24139]: pgsql_db_connect() -- 16:22:34.797 INFO [24138]: COREGRADE is starting... -- 16:22:34.798 INFO [24138]: Version from config: 1.0 -- 16:22:34.798 DEBUG [24138]: Connecting to database... -- 16:22:34.798 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:22:34.798 SQL [24138]: pgsql_db_connect() -- 16:22:34.790 DEBUG [24139]: Database connection successful -- 16:22:34.790 INFO [24139]: _SERVER found -- 16:22:34.790 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 16:22:34.790 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 16:22:34.790 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=k4gie8gu1rnah7u7tgrm4pepdoakqcjt -- 16:22:34.790 INFO [24139]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:22:34.790 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:22:34.801 INFO [24139]: COREGRADE is stopping... -- 16:22:34.801 DEBUG [24139]: Closing database connection -- 16:22:34.801 SQL [24139]: pgsql_close() -- 16:22:34.802 DEBUG [24138]: Database connection successful -- 16:22:34.802 INFO [24138]: _SERVER found -- 16:22:34.802 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 16:22:34.802 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 16:22:34.802 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=k4gie8gu1rnah7u7tgrm4pepdoakqcjt -- 16:22:34.802 INFO [24138]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:22:34.802 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:22:34.813 INFO [24138]: COREGRADE is stopping... -- 16:22:34.813 DEBUG [24138]: Closing database connection -- 16:22:34.813 SQL [24138]: pgsql_close() -- 16:22:36.343 INFO [24138]: COREGRADE is starting... -- 16:22:36.343 INFO [24138]: Version from config: 1.0 -- 16:22:36.343 DEBUG [24138]: Connecting to database... -- 16:22:36.343 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:22:36.343 SQL [24138]: pgsql_db_connect() -- 16:22:36.347 DEBUG [24138]: Database connection successful -- 16:22:36.347 INFO [24138]: _SERVER found -- 16:22:36.347 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 16:22:36.347 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 16:22:36.347 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:22:36.347 INFO [24138]: QUERY_STRING = /member/page -- 16:22:36.347 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:22:36.378 INFO [24138]: COREGRADE is stopping... -- 16:22:36.379 DEBUG [24138]: Closing database connection -- 16:22:36.379 SQL [24138]: pgsql_close() -- 16:22:36.617 INFO [24138]: COREGRADE is starting... -- 16:22:36.617 INFO [24138]: Version from config: 1.0 -- 16:22:36.617 DEBUG [24138]: Connecting to database... -- 16:22:36.617 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:22:36.617 SQL [24138]: pgsql_db_connect() -- 16:22:36.624 INFO [24137]: COREGRADE is starting... -- 16:22:36.624 INFO [24137]: Version from config: 1.0 -- 16:22:36.624 DEBUG [24137]: Connecting to database... -- 16:22:36.624 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:22:36.624 SQL [24137]: pgsql_db_connect() -- 16:22:36.621 DEBUG [24138]: Database connection successful -- 16:22:36.621 INFO [24138]: _SERVER found -- 16:22:36.621 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 16:22:36.621 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 16:22:36.621 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:22:36.621 INFO [24138]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:22:36.621 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:22:36.632 INFO [24138]: COREGRADE is stopping... -- 16:22:36.632 DEBUG [24138]: Closing database connection -- 16:22:36.632 SQL [24138]: pgsql_close() -- 16:22:36.628 DEBUG [24137]: Database connection successful -- 16:22:36.628 INFO [24137]: _SERVER found -- 16:22:36.628 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 16:22:36.628 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 16:22:36.628 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:22:36.628 INFO [24137]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:22:36.628 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:22:36.639 INFO [24137]: COREGRADE is stopping... -- 16:22:36.639 DEBUG [24137]: Closing database connection -- 16:22:36.639 SQL [24137]: pgsql_close() -- 16:23:24.761 INFO [24847]: COREGRADE is starting... -- 16:23:24.762 INFO [24847]: Version from config: 1.0 -- 16:23:24.762 DEBUG [24847]: Connecting to database... -- 16:23:24.762 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:24.762 SQL [24847]: pgsql_db_connect() -- 16:23:24.766 DEBUG [24847]: Database connection successful -- 16:23:24.766 INFO [24847]: _SERVER found -- 16:23:24.766 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 16:23:24.766 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:24.766 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:23:24.766 INFO [24847]: QUERY_STRING = /member/page -- 16:23:24.766 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:24.799 INFO [24847]: COREGRADE is stopping... -- 16:23:24.799 DEBUG [24847]: Closing database connection -- 16:23:24.799 SQL [24847]: pgsql_close() -- 16:23:25.155 INFO [24847]: COREGRADE is starting... -- 16:23:25.155 INFO [24847]: Version from config: 1.0 -- 16:23:25.155 DEBUG [24847]: Connecting to database... -- 16:23:25.155 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:25.155 SQL [24847]: pgsql_db_connect() -- 16:23:25.169 INFO [30492]: COREGRADE is starting... -- 16:23:25.170 INFO [30492]: Version from config: 1.0 -- 16:23:25.170 DEBUG [30492]: Connecting to database... -- 16:23:25.170 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:25.170 SQL [30492]: pgsql_db_connect() -- 16:23:25.159 DEBUG [24847]: Database connection successful -- 16:23:25.159 INFO [24847]: _SERVER found -- 16:23:25.159 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 16:23:25.159 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:25.159 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:23:25.159 INFO [24847]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:23:25.159 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:25.170 INFO [24847]: COREGRADE is stopping... -- 16:23:25.170 DEBUG [24847]: Closing database connection -- 16:23:25.171 SQL [24847]: pgsql_close() -- 16:23:25.174 DEBUG [30492]: Database connection successful -- 16:23:25.174 INFO [30492]: _SERVER found -- 16:23:25.174 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 16:23:25.174 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:25.174 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:23:25.174 INFO [30492]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:23:25.174 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:25.185 INFO [30492]: COREGRADE is stopping... -- 16:23:25.185 DEBUG [30492]: Closing database connection -- 16:23:25.185 SQL [30492]: pgsql_close() -- 16:23:26.779 INFO [24847]: COREGRADE is starting... -- 16:23:26.779 INFO [24847]: Version from config: 1.0 -- 16:23:26.779 DEBUG [24847]: Connecting to database... -- 16:23:26.779 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:26.779 SQL [24847]: pgsql_db_connect() -- 16:23:26.783 DEBUG [24847]: Database connection successful -- 16:23:26.783 INFO [24847]: _SERVER found -- 16:23:26.783 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 16:23:26.783 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:26.783 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=k4gie8gu1rnah7u7tgrm4pepdoakqcjt -- 16:23:26.783 INFO [24847]: QUERY_STRING = /member/page -- 16:23:26.783 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:26.815 INFO [24847]: COREGRADE is stopping... -- 16:23:26.815 DEBUG [24847]: Closing database connection -- 16:23:26.815 SQL [24847]: pgsql_close() -- 16:23:26.976 INFO [24847]: COREGRADE is starting... -- 16:23:26.977 INFO [24847]: Version from config: 1.0 -- 16:23:26.977 DEBUG [24847]: Connecting to database... -- 16:23:26.977 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:26.977 SQL [24847]: pgsql_db_connect() -- 16:23:26.981 DEBUG [24847]: Database connection successful -- 16:23:26.981 INFO [24847]: _SERVER found -- 16:23:26.981 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 16:23:26.981 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:26.981 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=k4gie8gu1rnah7u7tgrm4pepdoakqcjt -- 16:23:26.981 INFO [24847]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:23:26.981 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:26.992 INFO [24847]: COREGRADE is stopping... -- 16:23:26.992 DEBUG [24847]: Closing database connection -- 16:23:26.992 SQL [24847]: pgsql_close() -- 16:23:26.996 INFO [30476]: COREGRADE is starting... -- 16:23:26.996 INFO [30476]: Version from config: 1.0 -- 16:23:26.996 DEBUG [30476]: Connecting to database... -- 16:23:26.996 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:26.996 SQL [30476]: pgsql_db_connect() -- 16:23:26.000 DEBUG [30476]: Database connection successful -- 16:23:26.000 INFO [30476]: _SERVER found -- 16:23:26.000 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 16:23:26.000 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:26.000 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=k4gie8gu1rnah7u7tgrm4pepdoakqcjt -- 16:23:26.000 INFO [30476]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:23:26.000 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:27.011 INFO [30476]: COREGRADE is stopping... -- 16:23:27.011 DEBUG [30476]: Closing database connection -- 16:23:27.011 SQL [30476]: pgsql_close() -- 16:23:29.090 INFO [30476]: COREGRADE is starting... -- 16:23:29.090 INFO [30476]: Version from config: 1.0 -- 16:23:29.090 DEBUG [30476]: Connecting to database... -- 16:23:29.090 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:29.090 SQL [30476]: pgsql_db_connect() -- 16:23:29.094 DEBUG [30476]: Database connection successful -- 16:23:29.094 INFO [30476]: _SERVER found -- 16:23:29.094 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 16:23:29.094 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:29.094 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=k4gie8gu1rnah7u7tgrm4pepdoakqcjt -- 16:23:29.094 INFO [30476]: QUERY_STRING = /member -- 16:23:29.094 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:29.128 INFO [30476]: COREGRADE is stopping... -- 16:23:29.128 DEBUG [30476]: Closing database connection -- 16:23:29.128 SQL [30476]: pgsql_close() -- 16:23:29.278 INFO [30476]: COREGRADE is starting... -- 16:23:29.278 INFO [30476]: Version from config: 1.0 -- 16:23:29.278 DEBUG [30476]: Connecting to database... -- 16:23:29.278 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:29.278 SQL [30476]: pgsql_db_connect() -- 16:23:29.288 INFO [24847]: COREGRADE is starting... -- 16:23:29.289 INFO [24847]: Version from config: 1.0 -- 16:23:29.289 DEBUG [24847]: Connecting to database... -- 16:23:29.289 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:29.289 SQL [24847]: pgsql_db_connect() -- 16:23:29.282 DEBUG [30476]: Database connection successful -- 16:23:29.283 INFO [30476]: _SERVER found -- 16:23:29.283 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 16:23:29.283 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:29.283 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=k4gie8gu1rnah7u7tgrm4pepdoakqcjt -- 16:23:29.283 INFO [30476]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:23:29.283 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:29.294 INFO [30476]: COREGRADE is stopping... -- 16:23:29.294 DEBUG [30476]: Closing database connection -- 16:23:29.294 SQL [30476]: pgsql_close() -- 16:23:29.293 DEBUG [24847]: Database connection successful -- 16:23:29.293 INFO [24847]: _SERVER found -- 16:23:29.293 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 16:23:29.293 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:29.293 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=k4gie8gu1rnah7u7tgrm4pepdoakqcjt -- 16:23:29.293 INFO [24847]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:23:29.293 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:29.304 INFO [24847]: COREGRADE is stopping... -- 16:23:29.304 DEBUG [24847]: Closing database connection -- 16:23:29.304 SQL [24847]: pgsql_close() -- 16:23:31.265 INFO [24847]: COREGRADE is starting... -- 16:23:31.265 INFO [24847]: Version from config: 1.0 -- 16:23:31.265 DEBUG [24847]: Connecting to database... -- 16:23:31.265 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:31.265 SQL [24847]: pgsql_db_connect() -- 16:23:31.269 DEBUG [24847]: Database connection successful -- 16:23:31.269 INFO [24847]: _SERVER found -- 16:23:31.269 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 16:23:31.269 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:31.269 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:23:31.269 INFO [24847]: QUERY_STRING = /member -- 16:23:31.269 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:31.304 INFO [24847]: COREGRADE is stopping... -- 16:23:31.304 DEBUG [24847]: Closing database connection -- 16:23:31.304 SQL [24847]: pgsql_close() -- 16:23:31.641 INFO [24847]: COREGRADE is starting... -- 16:23:31.641 INFO [24847]: Version from config: 1.0 -- 16:23:31.641 DEBUG [24847]: Connecting to database... -- 16:23:31.641 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:31.641 SQL [24847]: pgsql_db_connect() -- 16:23:31.648 INFO [30476]: COREGRADE is starting... -- 16:23:31.649 INFO [30476]: Version from config: 1.0 -- 16:23:31.649 DEBUG [30476]: Connecting to database... -- 16:23:31.649 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:31.649 SQL [30476]: pgsql_db_connect() -- 16:23:31.645 DEBUG [24847]: Database connection successful -- 16:23:31.645 INFO [24847]: _SERVER found -- 16:23:31.645 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 16:23:31.645 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:31.645 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:23:31.645 INFO [24847]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:23:31.645 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:31.656 INFO [24847]: COREGRADE is stopping... -- 16:23:31.656 DEBUG [24847]: Closing database connection -- 16:23:31.656 SQL [24847]: pgsql_close() -- 16:23:31.653 DEBUG [30476]: Database connection successful -- 16:23:31.653 INFO [30476]: _SERVER found -- 16:23:31.653 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 16:23:31.653 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:31.653 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:23:31.653 INFO [30476]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:23:31.653 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:31.664 INFO [30476]: COREGRADE is stopping... -- 16:23:31.664 DEBUG [30476]: Closing database connection -- 16:23:31.664 SQL [30476]: pgsql_close() -- 16:23:38.007 INFO [30475]: COREGRADE is starting... -- 16:23:38.008 INFO [30475]: Version from config: 1.0 -- 16:23:38.008 DEBUG [30475]: Connecting to database... -- 16:23:38.008 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:38.008 SQL [30475]: pgsql_db_connect() -- 16:23:38.012 DEBUG [30475]: Database connection successful -- 16:23:38.012 INFO [30475]: _SERVER found -- 16:23:38.012 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 16:23:38.012 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:38.012 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:23:38.012 INFO [30475]: QUERY_STRING = /member/page -- 16:23:38.012 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:38.044 INFO [30475]: COREGRADE is stopping... -- 16:23:38.044 DEBUG [30475]: Closing database connection -- 16:23:38.044 SQL [30475]: pgsql_close() -- 16:23:38.332 INFO [30475]: COREGRADE is starting... -- 16:23:38.332 INFO [30475]: Version from config: 1.0 -- 16:23:38.332 DEBUG [30475]: Connecting to database... -- 16:23:38.332 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:38.332 SQL [30475]: pgsql_db_connect() -- 16:23:38.337 DEBUG [30475]: Database connection successful -- 16:23:38.337 INFO [30475]: _SERVER found -- 16:23:38.337 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 16:23:38.337 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:38.337 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:23:38.337 INFO [30475]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:23:38.337 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:38.348 INFO [30475]: COREGRADE is stopping... -- 16:23:38.348 DEBUG [30475]: Closing database connection -- 16:23:38.348 SQL [30475]: pgsql_close() -- 16:23:38.352 INFO [30474]: COREGRADE is starting... -- 16:23:38.352 INFO [30474]: Version from config: 1.0 -- 16:23:38.352 DEBUG [30474]: Connecting to database... -- 16:23:38.352 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:38.352 SQL [30474]: pgsql_db_connect() -- 16:23:38.356 DEBUG [30474]: Database connection successful -- 16:23:38.356 INFO [30474]: _SERVER found -- 16:23:38.356 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:23:38.356 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:38.356 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:23:38.356 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:23:38.356 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:38.367 INFO [30474]: COREGRADE is stopping... -- 16:23:38.367 DEBUG [30474]: Closing database connection -- 16:23:38.367 SQL [30474]: pgsql_close() -- 16:23:42.447 INFO [30474]: COREGRADE is starting... -- 16:23:42.447 INFO [30474]: Version from config: 1.0 -- 16:23:42.447 DEBUG [30474]: Connecting to database... -- 16:23:42.447 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:42.447 SQL [30474]: pgsql_db_connect() -- 16:23:42.451 DEBUG [30474]: Database connection successful -- 16:23:42.452 INFO [30474]: _SERVER found -- 16:23:42.452 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:23:42.452 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:42.452 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:23:42.452 INFO [30474]: QUERY_STRING = /member -- 16:23:42.452 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:42.486 INFO [30474]: COREGRADE is stopping... -- 16:23:42.486 DEBUG [30474]: Closing database connection -- 16:23:42.486 SQL [30474]: pgsql_close() -- 16:23:42.747 INFO [30474]: COREGRADE is starting... -- 16:23:42.747 INFO [30474]: Version from config: 1.0 -- 16:23:42.747 DEBUG [30474]: Connecting to database... -- 16:23:42.747 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:42.747 SQL [30474]: pgsql_db_connect() -- 16:23:42.755 INFO [30475]: COREGRADE is starting... -- 16:23:42.756 INFO [30475]: Version from config: 1.0 -- 16:23:42.756 DEBUG [30475]: Connecting to database... -- 16:23:42.756 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:42.756 SQL [30475]: pgsql_db_connect() -- 16:23:42.751 DEBUG [30474]: Database connection successful -- 16:23:42.751 INFO [30474]: _SERVER found -- 16:23:42.751 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:23:42.751 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:42.751 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:23:42.751 INFO [30474]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:23:42.751 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:42.762 INFO [30474]: COREGRADE is stopping... -- 16:23:42.762 DEBUG [30474]: Closing database connection -- 16:23:42.762 SQL [30474]: pgsql_close() -- 16:23:42.760 DEBUG [30475]: Database connection successful -- 16:23:42.760 INFO [30475]: _SERVER found -- 16:23:42.760 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 16:23:42.760 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:42.760 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:23:42.760 INFO [30475]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:23:42.760 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:42.771 INFO [30475]: COREGRADE is stopping... -- 16:23:42.771 DEBUG [30475]: Closing database connection -- 16:23:42.771 SQL [30475]: pgsql_close() -- 16:23:43.725 INFO [30475]: COREGRADE is starting... -- 16:23:43.725 INFO [30475]: Version from config: 1.0 -- 16:23:43.725 DEBUG [30475]: Connecting to database... -- 16:23:43.725 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:43.725 SQL [30475]: pgsql_db_connect() -- 16:23:43.729 DEBUG [30475]: Database connection successful -- 16:23:43.729 INFO [30475]: _SERVER found -- 16:23:43.729 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 16:23:43.729 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:43.729 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:23:43.729 INFO [30475]: QUERY_STRING = /member/page -- 16:23:43.729 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:43.761 INFO [30475]: COREGRADE is stopping... -- 16:23:43.761 DEBUG [30475]: Closing database connection -- 16:23:43.761 SQL [30475]: pgsql_close() -- 16:23:44.037 INFO [30475]: COREGRADE is starting... -- 16:23:44.038 INFO [30475]: Version from config: 1.0 -- 16:23:44.038 DEBUG [30475]: Connecting to database... -- 16:23:44.038 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:44.038 SQL [30475]: pgsql_db_connect() -- 16:23:44.043 INFO [30474]: COREGRADE is starting... -- 16:23:44.044 INFO [30474]: Version from config: 1.0 -- 16:23:44.044 DEBUG [30474]: Connecting to database... -- 16:23:44.044 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:44.044 SQL [30474]: pgsql_db_connect() -- 16:23:44.042 DEBUG [30475]: Database connection successful -- 16:23:44.042 INFO [30475]: _SERVER found -- 16:23:44.042 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 16:23:44.042 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:44.042 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:23:44.042 INFO [30475]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:23:44.042 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:44.053 INFO [30475]: COREGRADE is stopping... -- 16:23:44.053 DEBUG [30475]: Closing database connection -- 16:23:44.053 SQL [30475]: pgsql_close() -- 16:23:44.048 DEBUG [30474]: Database connection successful -- 16:23:44.048 INFO [30474]: _SERVER found -- 16:23:44.048 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:23:44.048 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:44.048 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:23:44.048 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:23:44.048 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:44.059 INFO [30474]: COREGRADE is stopping... -- 16:23:44.059 DEBUG [30474]: Closing database connection -- 16:23:44.059 SQL [30474]: pgsql_close() -- 16:23:47.486 INFO [30474]: COREGRADE is starting... -- 16:23:47.486 INFO [30474]: Version from config: 1.0 -- 16:23:47.486 DEBUG [30474]: Connecting to database... -- 16:23:47.486 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:47.486 SQL [30474]: pgsql_db_connect() -- 16:23:47.491 DEBUG [30474]: Database connection successful -- 16:23:47.491 INFO [30474]: _SERVER found -- 16:23:47.491 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:23:47.491 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:47.491 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:23:47.491 INFO [30474]: QUERY_STRING = /member -- 16:23:47.491 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:47.525 INFO [30474]: COREGRADE is stopping... -- 16:23:47.525 DEBUG [30474]: Closing database connection -- 16:23:47.525 SQL [30474]: pgsql_close() -- 16:23:47.809 INFO [30474]: COREGRADE is starting... -- 16:23:47.809 INFO [30474]: Version from config: 1.0 -- 16:23:47.809 DEBUG [30474]: Connecting to database... -- 16:23:47.809 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:47.809 SQL [30474]: pgsql_db_connect() -- 16:23:47.816 INFO [30475]: COREGRADE is starting... -- 16:23:47.817 INFO [30475]: Version from config: 1.0 -- 16:23:47.817 DEBUG [30475]: Connecting to database... -- 16:23:47.817 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:47.817 SQL [30475]: pgsql_db_connect() -- 16:23:47.814 DEBUG [30474]: Database connection successful -- 16:23:47.814 INFO [30474]: _SERVER found -- 16:23:47.814 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:23:47.814 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:47.814 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:23:47.814 INFO [30474]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:23:47.814 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:47.825 INFO [30474]: COREGRADE is stopping... -- 16:23:47.825 DEBUG [30474]: Closing database connection -- 16:23:47.825 SQL [30474]: pgsql_close() -- 16:23:47.820 DEBUG [30475]: Database connection successful -- 16:23:47.821 INFO [30475]: _SERVER found -- 16:23:47.821 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 16:23:47.821 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:47.821 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:23:47.821 INFO [30475]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:23:47.821 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:47.832 INFO [30475]: COREGRADE is stopping... -- 16:23:47.832 DEBUG [30475]: Closing database connection -- 16:23:47.832 SQL [30475]: pgsql_close() -- 16:23:55.947 INFO [24136]: COREGRADE is starting... -- 16:23:55.948 INFO [24136]: Version from config: 1.0 -- 16:23:55.948 DEBUG [24136]: Connecting to database... -- 16:23:55.948 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:55.948 SQL [24136]: pgsql_db_connect() -- 16:23:55.952 DEBUG [24136]: Database connection successful -- 16:23:55.952 INFO [24136]: _SERVER found -- 16:23:55.952 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 16:23:55.952 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:55.952 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:23:55.952 INFO [24136]: QUERY_STRING = /member/page -- 16:23:55.952 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:55.985 INFO [24136]: COREGRADE is stopping... -- 16:23:55.985 DEBUG [24136]: Closing database connection -- 16:23:55.985 SQL [24136]: pgsql_close() -- 16:23:56.304 INFO [24136]: COREGRADE is starting... -- 16:23:56.304 INFO [24136]: Version from config: 1.0 -- 16:23:56.304 DEBUG [24136]: Connecting to database... -- 16:23:56.304 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:56.304 SQL [24136]: pgsql_db_connect() -- 16:23:56.319 INFO [24184]: COREGRADE is starting... -- 16:23:56.308 DEBUG [24136]: Database connection successful -- 16:23:56.308 INFO [24136]: _SERVER found -- 16:23:56.308 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 16:23:56.308 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:56.308 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:23:56.308 INFO [24136]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:23:56.308 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:56.319 INFO [24136]: COREGRADE is stopping... -- 16:23:56.319 DEBUG [24136]: Closing database connection -- 16:23:56.319 SQL [24136]: pgsql_close() -- 16:23:56.319 INFO [24184]: Version from config: 1.0 -- 16:23:56.319 DEBUG [24184]: Connecting to database... -- 16:23:56.319 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:56.319 SQL [24184]: pgsql_db_connect() -- 16:23:56.323 DEBUG [24184]: Database connection successful -- 16:23:56.323 INFO [24184]: _SERVER found -- 16:23:56.323 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 16:23:56.323 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:56.323 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:23:56.323 INFO [24184]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:23:56.323 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:56.334 INFO [24184]: COREGRADE is stopping... -- 16:23:56.334 DEBUG [24184]: Closing database connection -- 16:23:56.334 SQL [24184]: pgsql_close() -- 16:23:57.880 INFO [24184]: COREGRADE is starting... -- 16:23:57.880 INFO [24184]: Version from config: 1.0 -- 16:23:57.880 DEBUG [24184]: Connecting to database... -- 16:23:57.880 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:57.880 SQL [24184]: pgsql_db_connect() -- 16:23:57.884 DEBUG [24184]: Database connection successful -- 16:23:57.884 INFO [24184]: _SERVER found -- 16:23:57.884 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 16:23:57.884 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:57.884 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:23:57.884 INFO [24184]: QUERY_STRING = /member -- 16:23:57.884 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:57.921 INFO [24184]: COREGRADE is stopping... -- 16:23:57.921 DEBUG [24184]: Closing database connection -- 16:23:57.921 SQL [24184]: pgsql_close() -- 16:23:58.141 INFO [24184]: COREGRADE is starting... -- 16:23:58.142 INFO [24184]: Version from config: 1.0 -- 16:23:58.142 DEBUG [24184]: Connecting to database... -- 16:23:58.142 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:58.142 SQL [24184]: pgsql_db_connect() -- 16:23:58.149 INFO [24136]: COREGRADE is starting... -- 16:23:58.149 INFO [24136]: Version from config: 1.0 -- 16:23:58.149 DEBUG [24136]: Connecting to database... -- 16:23:58.149 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:58.149 SQL [24136]: pgsql_db_connect() -- 16:23:58.146 DEBUG [24184]: Database connection successful -- 16:23:58.146 INFO [24184]: _SERVER found -- 16:23:58.146 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 16:23:58.146 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:58.146 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:23:58.146 INFO [24184]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:23:58.146 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:58.157 INFO [24184]: COREGRADE is stopping... -- 16:23:58.157 DEBUG [24184]: Closing database connection -- 16:23:58.157 SQL [24184]: pgsql_close() -- 16:23:58.153 DEBUG [24136]: Database connection successful -- 16:23:58.153 INFO [24136]: _SERVER found -- 16:23:58.153 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 16:23:58.153 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:58.153 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:23:58.153 INFO [24136]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:23:58.153 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:58.164 INFO [24136]: COREGRADE is stopping... -- 16:23:58.164 DEBUG [24136]: Closing database connection -- 16:23:58.164 SQL [24136]: pgsql_close() -- 16:24:09.922 INFO [24139]: COREGRADE is starting... -- 16:24:09.922 INFO [24139]: Version from config: 1.0 -- 16:24:09.922 DEBUG [24139]: Connecting to database... -- 16:24:09.922 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:24:09.922 SQL [24139]: pgsql_db_connect() -- 16:24:09.926 DEBUG [24139]: Database connection successful -- 16:24:09.926 INFO [24139]: _SERVER found -- 16:24:09.926 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 16:24:09.926 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 16:24:09.926 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:24:09.926 INFO [24139]: QUERY_STRING = /member/page -- 16:24:09.926 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:24:09.960 INFO [24139]: COREGRADE is stopping... -- 16:24:09.960 DEBUG [24139]: Closing database connection -- 16:24:09.960 SQL [24139]: pgsql_close() -- 16:24:10.234 INFO [24139]: COREGRADE is starting... -- 16:24:10.235 INFO [24139]: Version from config: 1.0 -- 16:24:10.235 DEBUG [24139]: Connecting to database... -- 16:24:10.235 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:24:10.235 SQL [24139]: pgsql_db_connect() -- 16:24:10.239 DEBUG [24139]: Database connection successful -- 16:24:10.239 INFO [24139]: _SERVER found -- 16:24:10.239 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 16:24:10.239 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 16:24:10.239 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:24:10.239 INFO [24139]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:24:10.239 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:24:10.250 INFO [24139]: COREGRADE is stopping... -- 16:24:10.250 DEBUG [24139]: Closing database connection -- 16:24:10.250 SQL [24139]: pgsql_close() -- 16:24:10.255 INFO [24138]: COREGRADE is starting... -- 16:24:10.255 INFO [24138]: Version from config: 1.0 -- 16:24:10.255 DEBUG [24138]: Connecting to database... -- 16:24:10.255 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:24:10.255 SQL [24138]: pgsql_db_connect() -- 16:24:10.259 DEBUG [24138]: Database connection successful -- 16:24:10.259 INFO [24138]: _SERVER found -- 16:24:10.259 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 16:24:10.259 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 16:24:10.259 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:24:10.259 INFO [24138]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:24:10.259 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:24:10.270 INFO [24138]: COREGRADE is stopping... -- 16:24:10.270 DEBUG [24138]: Closing database connection -- 16:24:10.270 SQL [24138]: pgsql_close() -- 16:24:15.951 INFO [24137]: COREGRADE is starting... -- 16:24:15.952 INFO [24137]: Version from config: 1.0 -- 16:24:15.952 DEBUG [24137]: Connecting to database... -- 16:24:15.952 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:24:15.952 SQL [24137]: pgsql_db_connect() -- 16:24:15.956 DEBUG [24137]: Database connection successful -- 16:24:15.956 INFO [24137]: _SERVER found -- 16:24:15.956 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 16:24:15.956 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 16:24:15.956 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:24:15.956 INFO [24137]: QUERY_STRING = /member -- 16:24:15.956 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:24:15.990 INFO [24137]: COREGRADE is stopping... -- 16:24:15.991 DEBUG [24137]: Closing database connection -- 16:24:15.991 SQL [24137]: pgsql_close() -- 16:24:16.269 INFO [24137]: COREGRADE is starting... -- 16:24:16.269 INFO [24137]: Version from config: 1.0 -- 16:24:16.269 DEBUG [24137]: Connecting to database... -- 16:24:16.269 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:24:16.269 SQL [24137]: pgsql_db_connect() -- 16:24:16.273 DEBUG [24137]: Database connection successful -- 16:24:16.273 INFO [24137]: _SERVER found -- 16:24:16.273 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 16:24:16.273 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 16:24:16.273 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:24:16.273 INFO [24137]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:24:16.273 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:24:16.284 INFO [24137]: COREGRADE is stopping... -- 16:24:16.285 DEBUG [24137]: Closing database connection -- 16:24:16.285 SQL [24137]: pgsql_close() -- 16:24:34.116 INFO [30492]: COREGRADE is starting... -- 16:24:34.116 INFO [30492]: Version from config: 1.0 -- 16:24:34.116 DEBUG [30492]: Connecting to database... -- 16:24:34.116 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:24:34.116 SQL [30492]: pgsql_db_connect() -- 16:24:34.120 DEBUG [30492]: Database connection successful -- 16:24:34.120 INFO [30492]: _SERVER found -- 16:24:34.120 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 16:24:34.120 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 16:24:34.120 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:24:34.120 INFO [30492]: QUERY_STRING = /member/page -- 16:24:34.120 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:24:34.152 INFO [30492]: COREGRADE is stopping... -- 16:24:34.152 DEBUG [30492]: Closing database connection -- 16:24:34.152 SQL [30492]: pgsql_close() -- 16:24:34.508 INFO [30492]: COREGRADE is starting... -- 16:24:34.508 INFO [30492]: Version from config: 1.0 -- 16:24:34.508 DEBUG [30492]: Connecting to database... -- 16:24:34.508 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:24:34.508 SQL [30492]: pgsql_db_connect() -- 16:24:34.512 DEBUG [30492]: Database connection successful -- 16:24:34.512 INFO [30492]: _SERVER found -- 16:24:34.512 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 16:24:34.512 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 16:24:34.512 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:24:34.512 INFO [30492]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:24:34.512 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:24:34.523 INFO [30492]: COREGRADE is stopping... -- 16:24:34.523 DEBUG [30492]: Closing database connection -- 16:24:34.523 SQL [30492]: pgsql_close() -- 16:24:39.288 INFO [30492]: COREGRADE is starting... -- 16:24:39.289 INFO [30492]: Version from config: 1.0 -- 16:24:39.289 DEBUG [30492]: Connecting to database... -- 16:24:39.289 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:24:39.289 SQL [30492]: pgsql_db_connect() -- 16:24:39.293 DEBUG [30492]: Database connection successful -- 16:24:39.293 INFO [30492]: _SERVER found -- 16:24:39.293 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 16:24:39.293 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 16:24:39.293 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:24:39.293 INFO [30492]: QUERY_STRING = /member -- 16:24:39.293 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:24:39.327 INFO [30492]: COREGRADE is stopping... -- 16:24:39.327 DEBUG [30492]: Closing database connection -- 16:24:39.327 SQL [30492]: pgsql_close() -- 16:24:39.562 INFO [30492]: COREGRADE is starting... -- 16:24:39.563 INFO [30492]: Version from config: 1.0 -- 16:24:39.563 DEBUG [30492]: Connecting to database... -- 16:24:39.563 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:24:39.563 SQL [30492]: pgsql_db_connect() -- 16:24:39.567 DEBUG [30492]: Database connection successful -- 16:24:39.567 INFO [30492]: _SERVER found -- 16:24:39.567 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 16:24:39.567 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 16:24:39.567 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:24:39.567 INFO [30492]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:24:39.567 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:24:39.578 INFO [30492]: COREGRADE is stopping... -- 16:24:39.578 DEBUG [30492]: Closing database connection -- 16:24:39.578 SQL [30492]: pgsql_close() -- 16:24:48.419 INFO [30476]: COREGRADE is starting... -- 16:24:48.419 INFO [30476]: Version from config: 1.0 -- 16:24:48.419 DEBUG [30476]: Connecting to database... -- 16:24:48.419 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:24:48.419 SQL [30476]: pgsql_db_connect() -- 16:24:48.423 DEBUG [30476]: Database connection successful -- 16:24:48.423 INFO [30476]: _SERVER found -- 16:24:48.423 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 16:24:48.423 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 16:24:48.423 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=k4gie8gu1rnah7u7tgrm4pepdoakqcjt -- 16:24:48.423 INFO [30476]: QUERY_STRING = /member -- 16:24:48.423 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:24:48.457 INFO [30476]: COREGRADE is stopping... -- 16:24:48.457 DEBUG [30476]: Closing database connection -- 16:24:48.457 SQL [30476]: pgsql_close() -- 16:24:48.621 INFO [30476]: COREGRADE is starting... -- 16:24:48.621 INFO [30476]: Version from config: 1.0 -- 16:24:48.621 DEBUG [30476]: Connecting to database... -- 16:24:48.621 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:24:48.621 SQL [30476]: pgsql_db_connect() -- 16:24:48.625 DEBUG [30476]: Database connection successful -- 16:24:48.625 INFO [30476]: _SERVER found -- 16:24:48.625 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 16:24:48.625 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 16:24:48.625 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=k4gie8gu1rnah7u7tgrm4pepdoakqcjt -- 16:24:48.625 INFO [30476]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:24:48.625 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:24:48.636 INFO [30476]: COREGRADE is stopping... -- 16:24:48.636 DEBUG [30476]: Closing database connection -- 16:24:48.636 SQL [30476]: pgsql_close() -- 16:24:48.655 INFO [24847]: COREGRADE is starting... -- 16:24:48.656 INFO [24847]: Version from config: 1.0 -- 16:24:48.656 DEBUG [24847]: Connecting to database... -- 16:24:48.656 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:24:48.656 SQL [24847]: pgsql_db_connect() -- 16:24:48.659 DEBUG [24847]: Database connection successful -- 16:24:48.659 INFO [24847]: _SERVER found -- 16:24:48.659 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 16:24:48.659 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 16:24:48.659 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=k4gie8gu1rnah7u7tgrm4pepdoakqcjt -- 16:24:48.659 INFO [24847]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:24:48.659 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:24:48.670 INFO [24847]: COREGRADE is stopping... -- 16:24:48.670 DEBUG [24847]: Closing database connection -- 16:24:48.670 SQL [24847]: pgsql_close() -- 16:25:13.686 INFO [30474]: COREGRADE is starting... -- 16:25:13.687 INFO [30474]: Version from config: 1.0 -- 16:25:13.687 DEBUG [30474]: Connecting to database... -- 16:25:13.687 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:13.687 SQL [30474]: pgsql_db_connect() -- 16:25:13.691 DEBUG [30474]: Database connection successful -- 16:25:13.691 INFO [30474]: _SERVER found -- 16:25:13.691 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:25:13.691 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:25:13.691 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:25:13.691 INFO [30474]: QUERY_STRING = /member -- 16:25:13.691 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:13.725 INFO [30474]: COREGRADE is stopping... -- 16:25:13.725 DEBUG [30474]: Closing database connection -- 16:25:13.725 SQL [30474]: pgsql_close() -- 16:25:14.075 INFO [30474]: COREGRADE is starting... -- 16:25:14.075 INFO [30474]: Version from config: 1.0 -- 16:25:14.075 DEBUG [30474]: Connecting to database... -- 16:25:14.075 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:14.075 SQL [30474]: pgsql_db_connect() -- 16:25:14.079 DEBUG [30474]: Database connection successful -- 16:25:14.079 INFO [30474]: _SERVER found -- 16:25:14.079 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:25:14.079 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:25:14.079 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:25:14.079 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:25:14.079 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:14.090 INFO [30474]: COREGRADE is stopping... -- 16:25:14.090 DEBUG [30474]: Closing database connection -- 16:25:14.090 SQL [30474]: pgsql_close() -- 16:25:14.631 INFO [30474]: COREGRADE is starting... -- 16:25:14.632 INFO [30474]: Version from config: 1.0 -- 16:25:14.632 DEBUG [30474]: Connecting to database... -- 16:25:14.632 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:14.632 SQL [30474]: pgsql_db_connect() -- 16:25:14.636 DEBUG [30474]: Database connection successful -- 16:25:14.636 INFO [30474]: _SERVER found -- 16:25:14.636 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:25:14.636 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:25:14.636 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=k4gie8gu1rnah7u7tgrm4pepdoakqcjt -- 16:25:14.636 INFO [30474]: QUERY_STRING = /member -- 16:25:14.636 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:14.670 INFO [30474]: COREGRADE is stopping... -- 16:25:14.670 DEBUG [30474]: Closing database connection -- 16:25:14.670 SQL [30474]: pgsql_close() -- 16:25:14.802 INFO [30474]: COREGRADE is starting... -- 16:25:14.802 INFO [30474]: Version from config: 1.0 -- 16:25:14.802 DEBUG [30474]: Connecting to database... -- 16:25:14.802 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:14.803 SQL [30474]: pgsql_db_connect() -- 16:25:14.807 DEBUG [30474]: Database connection successful -- 16:25:14.807 INFO [30474]: _SERVER found -- 16:25:14.807 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:25:14.807 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:25:14.807 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=k4gie8gu1rnah7u7tgrm4pepdoakqcjt -- 16:25:14.807 INFO [30474]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:25:14.807 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:14.818 INFO [30474]: COREGRADE is stopping... -- 16:25:14.818 DEBUG [30474]: Closing database connection -- 16:25:14.818 SQL [30474]: pgsql_close() -- 16:25:14.820 INFO [30475]: COREGRADE is starting... -- 16:25:14.820 INFO [30475]: Version from config: 1.0 -- 16:25:14.820 DEBUG [30475]: Connecting to database... -- 16:25:14.820 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:14.820 SQL [30475]: pgsql_db_connect() -- 16:25:14.824 DEBUG [30475]: Database connection successful -- 16:25:14.824 INFO [30475]: _SERVER found -- 16:25:14.824 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 16:25:14.824 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 16:25:14.824 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=k4gie8gu1rnah7u7tgrm4pepdoakqcjt -- 16:25:14.824 INFO [30475]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:25:14.824 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:14.835 INFO [30475]: COREGRADE is stopping... -- 16:25:14.835 DEBUG [30475]: Closing database connection -- 16:25:14.835 SQL [30475]: pgsql_close() -- 16:25:46.302 INFO [24184]: COREGRADE is starting... -- 16:25:46.302 INFO [24184]: Version from config: 1.0 -- 16:25:46.302 DEBUG [24184]: Connecting to database... -- 16:25:46.303 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:46.303 SQL [24184]: pgsql_db_connect() -- 16:25:46.307 DEBUG [24184]: Database connection successful -- 16:25:46.307 INFO [24184]: _SERVER found -- 16:25:46.307 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 16:25:46.307 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 16:25:46.307 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:25:46.307 INFO [24184]: QUERY_STRING = /member -- 16:25:46.307 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:46.344 INFO [24184]: COREGRADE is stopping... -- 16:25:46.344 DEBUG [24184]: Closing database connection -- 16:25:46.344 SQL [24184]: pgsql_close() -- 16:25:46.674 INFO [24184]: COREGRADE is starting... -- 16:25:46.674 INFO [24184]: Version from config: 1.0 -- 16:25:46.674 DEBUG [24184]: Connecting to database... -- 16:25:46.674 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:46.674 SQL [24184]: pgsql_db_connect() -- 16:25:46.678 DEBUG [24184]: Database connection successful -- 16:25:46.678 INFO [24184]: _SERVER found -- 16:25:46.678 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 16:25:46.678 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 16:25:46.678 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:25:46.678 INFO [24184]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:25:46.678 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:46.690 INFO [24184]: COREGRADE is stopping... -- 16:25:46.690 DEBUG [24184]: Closing database connection -- 16:25:46.690 SQL [24184]: pgsql_close() -- 16:25:47.492 INFO [24139]: COREGRADE is starting... -- 16:25:47.492 INFO [24139]: Version from config: 1.0 -- 16:25:47.492 DEBUG [24139]: Connecting to database... -- 16:25:47.493 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:47.493 SQL [24139]: pgsql_db_connect() -- 16:25:47.497 DEBUG [24139]: Database connection successful -- 16:25:47.497 INFO [24139]: _SERVER found -- 16:25:47.497 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 16:25:47.497 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 16:25:47.497 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=k4gie8gu1rnah7u7tgrm4pepdoakqcjt -- 16:25:47.497 INFO [24139]: QUERY_STRING = /member -- 16:25:47.497 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:47.534 INFO [24139]: COREGRADE is stopping... -- 16:25:47.534 DEBUG [24139]: Closing database connection -- 16:25:47.534 SQL [24139]: pgsql_close() -- 16:25:47.664 INFO [24139]: COREGRADE is starting... -- 16:25:47.665 INFO [24139]: Version from config: 1.0 -- 16:25:47.665 DEBUG [24139]: Connecting to database... -- 16:25:47.665 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:47.665 SQL [24139]: pgsql_db_connect() -- 16:25:47.669 DEBUG [24139]: Database connection successful -- 16:25:47.669 INFO [24139]: _SERVER found -- 16:25:47.669 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 16:25:47.669 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 16:25:47.669 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=k4gie8gu1rnah7u7tgrm4pepdoakqcjt -- 16:25:47.669 INFO [24139]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:25:47.669 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:47.680 INFO [24139]: COREGRADE is stopping... -- 16:25:47.680 DEBUG [24139]: Closing database connection -- 16:25:47.680 SQL [24139]: pgsql_close() -- 16:25:47.684 INFO [24138]: COREGRADE is starting... -- 16:25:47.684 INFO [24138]: Version from config: 1.0 -- 16:25:47.684 DEBUG [24138]: Connecting to database... -- 16:25:47.684 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:47.684 SQL [24138]: pgsql_db_connect() -- 16:25:47.689 DEBUG [24138]: Database connection successful -- 16:25:47.689 INFO [24138]: _SERVER found -- 16:25:47.689 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 16:25:47.689 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 16:25:47.689 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=k4gie8gu1rnah7u7tgrm4pepdoakqcjt -- 16:25:47.689 INFO [24138]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:25:47.689 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:47.700 INFO [24138]: COREGRADE is stopping... -- 16:25:47.700 DEBUG [24138]: Closing database connection -- 16:25:47.700 SQL [24138]: pgsql_close() -- 16:26:27.646 INFO [24137]: COREGRADE is starting... -- 16:26:27.646 INFO [24137]: Version from config: 1.0 -- 16:26:27.646 DEBUG [24137]: Connecting to database... -- 16:26:27.646 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:27.646 SQL [24137]: pgsql_db_connect() -- 16:26:27.651 DEBUG [24137]: Database connection successful -- 16:26:27.651 INFO [24137]: _SERVER found -- 16:26:27.651 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 16:26:27.651 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 16:26:27.651 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2v891a3icfj1i2egbp7lj3um09vi9leg -- 16:26:27.651 INFO [24137]: QUERY_STRING = /member -- 16:26:27.651 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:27.686 INFO [24137]: COREGRADE is stopping... -- 16:26:27.686 DEBUG [24137]: Closing database connection -- 16:26:27.686 SQL [24137]: pgsql_close() -- 16:26:28.060 INFO [24137]: COREGRADE is starting... -- 16:26:28.060 INFO [24137]: Version from config: 1.0 -- 16:26:28.060 DEBUG [24137]: Connecting to database... -- 16:26:28.060 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:28.060 SQL [24137]: pgsql_db_connect() -- 16:26:28.064 DEBUG [24137]: Database connection successful -- 16:26:28.064 INFO [24137]: _SERVER found -- 16:26:28.064 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 16:26:28.064 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 16:26:28.064 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0gg15hgusp002emf1rmilddcksf6pqus -- 16:26:28.064 INFO [24137]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:26:28.064 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:28.075 INFO [24137]: COREGRADE is stopping... -- 16:26:28.076 DEBUG [24137]: Closing database connection -- 16:26:28.076 SQL [24137]: pgsql_close() -- 16:26:29.274 INFO [30476]: COREGRADE is starting... -- 16:26:29.275 INFO [30476]: Version from config: 1.0 -- 16:26:29.275 DEBUG [30476]: Connecting to database... -- 16:26:29.275 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:29.275 SQL [30476]: pgsql_db_connect() -- 16:26:29.279 DEBUG [30476]: Database connection successful -- 16:26:29.279 INFO [30476]: _SERVER found -- 16:26:29.279 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 16:26:29.279 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 16:26:29.279 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=k4gie8gu1rnah7u7tgrm4pepdoakqcjt -- 16:26:29.279 INFO [30476]: QUERY_STRING = /member -- 16:26:29.279 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:29.313 INFO [30476]: COREGRADE is stopping... -- 16:26:29.313 DEBUG [30476]: Closing database connection -- 16:26:29.313 SQL [30476]: pgsql_close() -- 16:26:29.464 INFO [30476]: COREGRADE is starting... -- 16:26:29.465 INFO [30476]: Version from config: 1.0 -- 16:26:29.465 DEBUG [30476]: Connecting to database... -- 16:26:29.465 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:29.465 SQL [30476]: pgsql_db_connect() -- 16:26:29.469 DEBUG [30476]: Database connection successful -- 16:26:29.469 INFO [30476]: _SERVER found -- 16:26:29.469 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 16:26:29.469 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 16:26:29.469 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=4aoiggd3hbq39s4g6g27ua2c0oj0d4l4 -- 16:26:29.469 INFO [30476]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:26:29.469 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:29.480 INFO [30476]: COREGRADE is stopping... -- 16:26:29.480 DEBUG [30476]: Closing database connection -- 16:26:29.480 SQL [30476]: pgsql_close() -- 16:26:29.484 INFO [24847]: COREGRADE is starting... -- 16:26:29.485 INFO [24847]: Version from config: 1.0 -- 16:26:29.485 DEBUG [24847]: Connecting to database... -- 16:26:29.485 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:29.485 SQL [24847]: pgsql_db_connect() -- 16:26:29.488 DEBUG [24847]: Database connection successful -- 16:26:29.488 INFO [24847]: _SERVER found -- 16:26:29.488 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 16:26:29.488 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 16:26:29.488 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=4aoiggd3hbq39s4g6g27ua2c0oj0d4l4 -- 16:26:29.488 INFO [24847]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:26:29.488 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:29.500 INFO [24847]: COREGRADE is stopping... -- 16:26:29.500 DEBUG [24847]: Closing database connection -- 16:26:29.500 SQL [24847]: pgsql_close() -- 16:26:33.001 INFO [30492]: COREGRADE is starting... -- 16:26:33.001 INFO [30492]: Version from config: 1.0 -- 16:26:33.001 DEBUG [30492]: Connecting to database... -- 16:26:33.002 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:33.002 SQL [30492]: pgsql_db_connect() -- 16:26:33.006 DEBUG [30492]: Database connection successful -- 16:26:33.006 INFO [30492]: _SERVER found -- 16:26:33.006 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 16:26:33.006 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 16:26:33.006 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0gg15hgusp002emf1rmilddcksf6pqus -- 16:26:33.006 INFO [30492]: QUERY_STRING = /member -- 16:26:33.006 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:33.040 INFO [30492]: COREGRADE is stopping... -- 16:26:33.040 DEBUG [30492]: Closing database connection -- 16:26:33.040 SQL [30492]: pgsql_close() -- 16:26:33.306 INFO [30492]: COREGRADE is starting... -- 16:26:33.307 INFO [30492]: Version from config: 1.0 -- 16:26:33.307 DEBUG [30492]: Connecting to database... -- 16:26:33.307 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:33.307 SQL [30492]: pgsql_db_connect() -- 16:26:33.311 DEBUG [30492]: Database connection successful -- 16:26:33.311 INFO [30492]: _SERVER found -- 16:26:33.311 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 16:26:33.311 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 16:26:33.311 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0gg15hgusp002emf1rmilddcksf6pqus -- 16:26:33.311 INFO [30492]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:26:33.311 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:33.322 INFO [30492]: COREGRADE is stopping... -- 16:26:33.322 DEBUG [30492]: Closing database connection -- 16:26:33.322 SQL [30492]: pgsql_close() -- 16:26:46.256 INFO [30474]: COREGRADE is starting... -- 16:26:46.256 INFO [30474]: Version from config: 1.0 -- 16:26:46.256 DEBUG [30474]: Connecting to database... -- 16:26:46.257 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:46.257 SQL [30474]: pgsql_db_connect() -- 16:26:46.261 DEBUG [30474]: Database connection successful -- 16:26:46.261 INFO [30474]: _SERVER found -- 16:26:46.261 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:26:46.261 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:26:46.261 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0gg15hgusp002emf1rmilddcksf6pqus -- 16:26:46.261 INFO [30474]: QUERY_STRING = /member/page -- 16:26:46.261 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:46.293 INFO [30474]: COREGRADE is stopping... -- 16:26:46.293 DEBUG [30474]: Closing database connection -- 16:26:46.293 SQL [30474]: pgsql_close() -- 16:26:46.651 INFO [30474]: COREGRADE is starting... -- 16:26:46.651 INFO [30474]: Version from config: 1.0 -- 16:26:46.651 DEBUG [30474]: Connecting to database... -- 16:26:46.651 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:46.651 SQL [30474]: pgsql_db_connect() -- 16:26:46.655 DEBUG [30474]: Database connection successful -- 16:26:46.655 INFO [30474]: _SERVER found -- 16:26:46.655 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:26:46.655 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:26:46.655 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0gg15hgusp002emf1rmilddcksf6pqus -- 16:26:46.655 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:26:46.655 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:46.666 INFO [30474]: COREGRADE is stopping... -- 16:26:46.666 DEBUG [30474]: Closing database connection -- 16:26:46.666 SQL [30474]: pgsql_close() -- 16:26:49.420 INFO [30474]: COREGRADE is starting... -- 16:26:49.420 INFO [30474]: Version from config: 1.0 -- 16:26:49.420 DEBUG [30474]: Connecting to database... -- 16:26:49.420 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:49.420 SQL [30474]: pgsql_db_connect() -- 16:26:49.424 DEBUG [30474]: Database connection successful -- 16:26:49.424 INFO [30474]: _SERVER found -- 16:26:49.424 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:26:49.424 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:26:49.424 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0gg15hgusp002emf1rmilddcksf6pqus -- 16:26:49.424 INFO [30474]: QUERY_STRING = /member -- 16:26:49.424 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:49.459 INFO [30474]: COREGRADE is stopping... -- 16:26:49.459 DEBUG [30474]: Closing database connection -- 16:26:49.459 SQL [30474]: pgsql_close() -- 16:26:49.704 INFO [30474]: COREGRADE is starting... -- 16:26:49.704 INFO [30474]: Version from config: 1.0 -- 16:26:49.704 DEBUG [30474]: Connecting to database... -- 16:26:49.704 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:49.704 SQL [30474]: pgsql_db_connect() -- 16:26:49.708 DEBUG [30474]: Database connection successful -- 16:26:49.708 INFO [30474]: _SERVER found -- 16:26:49.708 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:26:49.708 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:26:49.708 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0gg15hgusp002emf1rmilddcksf6pqus -- 16:26:49.708 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:26:49.708 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:49.719 INFO [30474]: COREGRADE is stopping... -- 16:26:49.719 DEBUG [30474]: Closing database connection -- 16:26:49.719 SQL [30474]: pgsql_close() -- 16:27:23.693 INFO [30475]: COREGRADE is starting... -- 16:27:23.693 INFO [30475]: Version from config: 1.0 -- 16:27:23.693 DEBUG [30475]: Connecting to database... -- 16:27:23.693 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:27:23.693 SQL [30475]: pgsql_db_connect() -- 16:27:23.698 DEBUG [30475]: Database connection successful -- 16:27:23.698 INFO [30475]: _SERVER found -- 16:27:23.698 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 16:27:23.698 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 16:27:23.698 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=4aoiggd3hbq39s4g6g27ua2c0oj0d4l4 -- 16:27:23.698 INFO [30475]: QUERY_STRING = /member -- 16:27:23.698 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:27:23.732 INFO [30475]: COREGRADE is stopping... -- 16:27:23.732 DEBUG [30475]: Closing database connection -- 16:27:23.732 SQL [30475]: pgsql_close() -- 16:27:23.960 INFO [30475]: COREGRADE is starting... -- 16:27:23.960 INFO [30475]: Version from config: 1.0 -- 16:27:23.960 DEBUG [30475]: Connecting to database... -- 16:27:23.960 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:27:23.960 SQL [30475]: pgsql_db_connect() -- 16:27:23.964 DEBUG [30475]: Database connection successful -- 16:27:23.964 INFO [30475]: _SERVER found -- 16:27:23.964 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 16:27:23.964 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 16:27:23.964 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=4aoiggd3hbq39s4g6g27ua2c0oj0d4l4 -- 16:27:23.964 INFO [30475]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:27:23.964 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:27:23.976 INFO [30475]: COREGRADE is stopping... -- 16:27:23.976 DEBUG [30475]: Closing database connection -- 16:27:23.976 SQL [30475]: pgsql_close() -- 16:27:23.995 INFO [24184]: COREGRADE is starting... -- 16:27:23.995 INFO [24184]: Version from config: 1.0 -- 16:27:23.995 DEBUG [24184]: Connecting to database... -- 16:27:23.995 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:27:23.995 SQL [24184]: pgsql_db_connect() -- 16:27:23.999 DEBUG [24184]: Database connection successful -- 16:27:23.999 INFO [24184]: _SERVER found -- 16:27:23.999 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 16:27:23.999 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 16:27:23.999 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=4aoiggd3hbq39s4g6g27ua2c0oj0d4l4 -- 16:27:23.999 INFO [24184]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:27:23.999 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:27:24.010 INFO [24184]: COREGRADE is stopping... -- 16:27:24.010 DEBUG [24184]: Closing database connection -- 16:27:24.010 SQL [24184]: pgsql_close() -- 16:31:22.402 INFO [24136]: COREGRADE is starting... -- 16:31:22.402 INFO [24136]: Version from config: 1.0 -- 16:31:22.402 DEBUG [24136]: Connecting to database... -- 16:31:22.402 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:22.402 SQL [24136]: pgsql_db_connect() -- 16:31:22.406 DEBUG [24136]: Database connection successful -- 16:31:22.406 INFO [24136]: _SERVER found -- 16:31:22.406 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 16:31:22.406 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 16:31:22.406 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0gg15hgusp002emf1rmilddcksf6pqus -- 16:31:22.406 INFO [24136]: QUERY_STRING = /member/page -- 16:31:22.406 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:31:22.440 INFO [24136]: COREGRADE is stopping... -- 16:31:22.440 DEBUG [24136]: Closing database connection -- 16:31:22.440 SQL [24136]: pgsql_close() -- 16:31:22.840 INFO [24136]: COREGRADE is starting... -- 16:31:22.841 INFO [24136]: Version from config: 1.0 -- 16:31:22.841 DEBUG [24136]: Connecting to database... -- 16:31:22.841 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:22.841 SQL [24136]: pgsql_db_connect() -- 16:31:22.845 DEBUG [24136]: Database connection successful -- 16:31:22.845 INFO [24136]: _SERVER found -- 16:31:22.845 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 16:31:22.845 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 16:31:22.845 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0gg15hgusp002emf1rmilddcksf6pqus -- 16:31:22.845 INFO [24136]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:31:22.845 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:31:22.856 INFO [24136]: COREGRADE is stopping... -- 16:31:22.856 DEBUG [24136]: Closing database connection -- 16:31:22.856 SQL [24136]: pgsql_close() -- 16:31:22.858 INFO [24139]: COREGRADE is starting... -- 16:31:22.858 INFO [24139]: Version from config: 1.0 -- 16:31:22.858 DEBUG [24139]: Connecting to database... -- 16:31:22.858 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:22.858 SQL [24139]: pgsql_db_connect() -- 16:31:22.862 DEBUG [24139]: Database connection successful -- 16:31:22.862 INFO [24139]: _SERVER found -- 16:31:22.862 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 16:31:22.862 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 16:31:22.862 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0gg15hgusp002emf1rmilddcksf6pqus -- 16:31:22.862 INFO [24139]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:31:22.862 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:31:22.874 INFO [24139]: COREGRADE is stopping... -- 16:31:22.874 DEBUG [24139]: Closing database connection -- 16:31:22.874 SQL [24139]: pgsql_close() -- 16:31:59.367 INFO [24138]: COREGRADE is starting... -- 16:31:59.367 INFO [24138]: Version from config: 1.0 -- 16:31:59.367 DEBUG [24138]: Connecting to database... -- 16:31:59.367 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:59.367 SQL [24138]: pgsql_db_connect() -- 16:31:59.371 DEBUG [24138]: Database connection successful -- 16:31:59.371 INFO [24138]: _SERVER found -- 16:31:59.371 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 16:31:59.371 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 16:31:59.371 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0gg15hgusp002emf1rmilddcksf6pqus -- 16:31:59.371 INFO [24138]: QUERY_STRING = /member -- 16:31:59.371 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:31:59.407 INFO [24138]: COREGRADE is stopping... -- 16:31:59.407 DEBUG [24138]: Closing database connection -- 16:31:59.407 SQL [24138]: pgsql_close() -- 16:31:59.837 INFO [24138]: COREGRADE is starting... -- 16:31:59.837 INFO [24138]: Version from config: 1.0 -- 16:31:59.837 DEBUG [24138]: Connecting to database... -- 16:31:59.837 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:59.837 SQL [24138]: pgsql_db_connect() -- 16:31:59.841 DEBUG [24138]: Database connection successful -- 16:31:59.841 INFO [24138]: _SERVER found -- 16:31:59.841 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 16:31:59.841 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 16:31:59.841 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=n9b1iu2k4dcgtdib85e76gmifpi6oscd -- 16:31:59.841 INFO [24138]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:31:59.841 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:31:59.852 INFO [24138]: COREGRADE is stopping... -- 16:31:59.852 DEBUG [24138]: Closing database connection -- 16:31:59.852 SQL [24138]: pgsql_close() -- 16:31:59.855 INFO [24137]: COREGRADE is starting... -- 16:31:59.856 INFO [24137]: Version from config: 1.0 -- 16:31:59.856 DEBUG [24137]: Connecting to database... -- 16:31:59.856 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:59.856 SQL [24137]: pgsql_db_connect() -- 16:31:59.859 DEBUG [24137]: Database connection successful -- 16:31:59.859 INFO [24137]: _SERVER found -- 16:31:59.859 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 16:31:59.859 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 16:31:59.859 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=n9b1iu2k4dcgtdib85e76gmifpi6oscd -- 16:31:59.859 INFO [24137]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:31:59.859 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:31:59.871 INFO [24137]: COREGRADE is stopping... -- 16:31:59.871 DEBUG [24137]: Closing database connection -- 16:31:59.871 SQL [24137]: pgsql_close() -- 16:32:04.064 INFO [24137]: COREGRADE is starting... -- 16:32:04.065 INFO [24137]: Version from config: 1.0 -- 16:32:04.065 DEBUG [24137]: Connecting to database... -- 16:32:04.065 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:32:04.065 SQL [24137]: pgsql_db_connect() -- 16:32:04.069 DEBUG [24137]: Database connection successful -- 16:32:04.069 INFO [24137]: _SERVER found -- 16:32:04.069 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 16:32:04.069 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 16:32:04.069 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=n9b1iu2k4dcgtdib85e76gmifpi6oscd -- 16:32:04.069 INFO [24137]: QUERY_STRING = /member/page -- 16:32:04.069 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:32:04.101 INFO [24137]: COREGRADE is stopping... -- 16:32:04.101 DEBUG [24137]: Closing database connection -- 16:32:04.101 SQL [24137]: pgsql_close() -- 16:32:04.401 INFO [24137]: COREGRADE is starting... -- 16:32:04.402 INFO [24137]: Version from config: 1.0 -- 16:32:04.402 DEBUG [24137]: Connecting to database... -- 16:32:04.402 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:32:04.402 SQL [24137]: pgsql_db_connect() -- 16:32:04.409 INFO [24138]: COREGRADE is starting... -- 16:32:04.409 INFO [24138]: Version from config: 1.0 -- 16:32:04.409 DEBUG [24138]: Connecting to database... -- 16:32:04.409 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:32:04.409 SQL [24138]: pgsql_db_connect() -- 16:32:04.406 DEBUG [24137]: Database connection successful -- 16:32:04.406 INFO [24137]: _SERVER found -- 16:32:04.406 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 16:32:04.406 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 16:32:04.406 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=n9b1iu2k4dcgtdib85e76gmifpi6oscd -- 16:32:04.406 INFO [24137]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:32:04.406 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:32:04.417 INFO [24137]: COREGRADE is stopping... -- 16:32:04.417 DEBUG [24137]: Closing database connection -- 16:32:04.417 SQL [24137]: pgsql_close() -- 16:32:04.413 DEBUG [24138]: Database connection successful -- 16:32:04.413 INFO [24138]: _SERVER found -- 16:32:04.413 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 16:32:04.413 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 16:32:04.413 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=n9b1iu2k4dcgtdib85e76gmifpi6oscd -- 16:32:04.413 INFO [24138]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:32:04.413 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:32:04.425 INFO [24138]: COREGRADE is stopping... -- 16:32:04.425 DEBUG [24138]: Closing database connection -- 16:32:04.425 SQL [24138]: pgsql_close() -- 16:42:03.632 INFO [30476]: COREGRADE is starting... -- 16:42:03.632 INFO [30476]: Version from config: 1.0 -- 16:42:03.632 DEBUG [30476]: Connecting to database... -- 16:42:03.632 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:42:03.632 SQL [30476]: pgsql_db_connect() -- 16:42:03.637 DEBUG [30476]: Database connection successful -- 16:42:03.637 INFO [30476]: _SERVER found -- 16:42:03.637 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 16:42:03.637 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 16:42:03.637 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=n9b1iu2k4dcgtdib85e76gmifpi6oscd -- 16:42:03.637 INFO [30476]: QUERY_STRING = /member/page -- 16:42:03.637 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:42:03.670 INFO [30476]: COREGRADE is stopping... -- 16:42:03.670 DEBUG [30476]: Closing database connection -- 16:42:03.670 SQL [30476]: pgsql_close() -- 16:42:04.146 INFO [30476]: COREGRADE is starting... -- 16:42:04.146 INFO [30476]: Version from config: 1.0 -- 16:42:04.146 DEBUG [30476]: Connecting to database... -- 16:42:04.146 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:42:04.146 SQL [30476]: pgsql_db_connect() -- 16:42:04.150 DEBUG [30476]: Database connection successful -- 16:42:04.150 INFO [30476]: _SERVER found -- 16:42:04.150 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 16:42:04.150 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 16:42:04.150 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=b34mc9mllf699lslc09i11pkifosm810 -- 16:42:04.150 INFO [30476]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:42:04.150 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:42:04.161 INFO [30476]: COREGRADE is stopping... -- 16:42:04.161 DEBUG [30476]: Closing database connection -- 16:42:04.161 SQL [30476]: pgsql_close() -- 16:42:04.168 INFO [30492]: COREGRADE is starting... -- 16:42:04.168 INFO [30492]: Version from config: 1.0 -- 16:42:04.168 DEBUG [30492]: Connecting to database... -- 16:42:04.168 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:42:04.168 SQL [30492]: pgsql_db_connect() -- 16:42:04.172 DEBUG [30492]: Database connection successful -- 16:42:04.172 INFO [30492]: _SERVER found -- 16:42:04.172 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 16:42:04.172 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 16:42:04.172 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=b34mc9mllf699lslc09i11pkifosm810 -- 16:42:04.172 INFO [30492]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:42:04.172 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:42:04.183 INFO [30492]: COREGRADE is stopping... -- 16:42:04.183 DEBUG [30492]: Closing database connection -- 16:42:04.183 SQL [30492]: pgsql_close() -- 16:42:10.783 INFO [24847]: COREGRADE is starting... -- 16:42:10.783 INFO [24847]: Version from config: 1.0 -- 16:42:10.783 DEBUG [24847]: Connecting to database... -- 16:42:10.783 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:42:10.783 SQL [24847]: pgsql_db_connect() -- 16:42:10.787 DEBUG [24847]: Database connection successful -- 16:42:10.787 INFO [24847]: _SERVER found -- 16:42:10.787 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 16:42:10.787 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 16:42:10.787 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=b34mc9mllf699lslc09i11pkifosm810 -- 16:42:10.787 INFO [24847]: QUERY_STRING = screen=member/app-email -- 16:42:10.787 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:42:10.799 INFO [24847]: COREGRADE is stopping... -- 16:42:10.799 DEBUG [24847]: Closing database connection -- 16:42:10.799 SQL [24847]: pgsql_close() -- 16:42:12.543 INFO [24847]: COREGRADE is starting... -- 16:42:12.543 INFO [24847]: Version from config: 1.0 -- 16:42:12.543 DEBUG [24847]: Connecting to database... -- 16:42:12.543 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:42:12.543 SQL [24847]: pgsql_db_connect() -- 16:42:12.548 DEBUG [24847]: Database connection successful -- 16:42:12.548 INFO [24847]: _SERVER found -- 16:42:12.548 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 16:42:12.548 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 16:42:12.548 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=b34mc9mllf699lslc09i11pkifosm810 -- 16:42:12.548 INFO [24847]: QUERY_STRING = /member/page -- 16:42:12.548 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:42:12.579 INFO [24847]: COREGRADE is stopping... -- 16:42:12.579 DEBUG [24847]: Closing database connection -- 16:42:12.579 SQL [24847]: pgsql_close() -- 16:42:12.992 INFO [24847]: COREGRADE is starting... -- 16:42:12.992 INFO [24847]: Version from config: 1.0 -- 16:42:12.992 DEBUG [24847]: Connecting to database... -- 16:42:12.992 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:42:12.992 SQL [24847]: pgsql_db_connect() -- 16:42:12.996 DEBUG [24847]: Database connection successful -- 16:42:12.996 INFO [24847]: _SERVER found -- 16:42:12.996 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 16:42:12.996 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 16:42:12.996 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=b34mc9mllf699lslc09i11pkifosm810 -- 16:42:12.996 INFO [24847]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:42:12.996 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:42:13.007 INFO [24847]: COREGRADE is stopping... -- 16:42:13.007 DEBUG [24847]: Closing database connection -- 16:42:13.008 SQL [24847]: pgsql_close() -- 16:42:16.704 INFO [24847]: COREGRADE is starting... -- 16:42:16.704 INFO [24847]: Version from config: 1.0 -- 16:42:16.704 DEBUG [24847]: Connecting to database... -- 16:42:16.704 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:42:16.704 SQL [24847]: pgsql_db_connect() -- 16:42:16.708 DEBUG [24847]: Database connection successful -- 16:42:16.708 INFO [24847]: _SERVER found -- 16:42:16.708 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 16:42:16.708 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 16:42:16.708 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=b34mc9mllf699lslc09i11pkifosm810 -- 16:42:16.708 INFO [24847]: QUERY_STRING = /member -- 16:42:16.708 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:42:16.743 INFO [24847]: COREGRADE is stopping... -- 16:42:16.743 DEBUG [24847]: Closing database connection -- 16:42:16.743 SQL [24847]: pgsql_close() -- 16:42:17.008 INFO [24847]: COREGRADE is starting... -- 16:42:17.008 INFO [24847]: Version from config: 1.0 -- 16:42:17.008 DEBUG [24847]: Connecting to database... -- 16:42:17.008 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:42:17.008 SQL [24847]: pgsql_db_connect() -- 16:42:17.012 DEBUG [24847]: Database connection successful -- 16:42:17.012 INFO [24847]: _SERVER found -- 16:42:17.012 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 16:42:17.012 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 16:42:17.012 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=b34mc9mllf699lslc09i11pkifosm810 -- 16:42:17.012 INFO [24847]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:42:17.012 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:42:17.023 INFO [24847]: COREGRADE is stopping... -- 16:42:17.023 DEBUG [24847]: Closing database connection -- 16:42:17.023 SQL [24847]: pgsql_close() -- 16:42:17.030 INFO [30474]: COREGRADE is starting... -- 16:42:17.031 INFO [30474]: Version from config: 1.0 -- 16:42:17.031 DEBUG [30474]: Connecting to database... -- 16:42:17.031 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:42:17.031 SQL [30474]: pgsql_db_connect() -- 16:42:17.035 DEBUG [30474]: Database connection successful -- 16:42:17.035 INFO [30474]: _SERVER found -- 16:42:17.035 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:42:17.035 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:42:17.035 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=b34mc9mllf699lslc09i11pkifosm810 -- 16:42:17.035 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:42:17.035 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:42:17.046 INFO [30474]: COREGRADE is stopping... -- 16:42:17.046 DEBUG [30474]: Closing database connection -- 16:42:17.046 SQL [30474]: pgsql_close() -- 16:42:19.318 INFO [30474]: COREGRADE is starting... -- 16:42:19.318 INFO [30474]: Version from config: 1.0 -- 16:42:19.318 DEBUG [30474]: Connecting to database... -- 16:42:19.318 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:42:19.318 SQL [30474]: pgsql_db_connect() -- 16:42:19.322 DEBUG [30474]: Database connection successful -- 16:42:19.322 INFO [30474]: _SERVER found -- 16:42:19.322 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:42:19.322 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:42:19.322 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=b34mc9mllf699lslc09i11pkifosm810 -- 16:42:19.322 INFO [30474]: QUERY_STRING = /member/page -- 16:42:19.322 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:42:19.354 INFO [30474]: COREGRADE is stopping... -- 16:42:19.354 DEBUG [30474]: Closing database connection -- 16:42:19.354 SQL [30474]: pgsql_close() -- 16:42:19.542 INFO [30474]: COREGRADE is starting... -- 16:42:19.542 INFO [30474]: Version from config: 1.0 -- 16:42:19.542 DEBUG [30474]: Connecting to database... -- 16:42:19.542 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:42:19.542 SQL [30474]: pgsql_db_connect() -- 16:42:19.550 INFO [24847]: COREGRADE is starting... -- 16:42:19.550 INFO [24847]: Version from config: 1.0 -- 16:42:19.550 DEBUG [24847]: Connecting to database... -- 16:42:19.550 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:42:19.550 SQL [24847]: pgsql_db_connect() -- 16:42:19.546 DEBUG [30474]: Database connection successful -- 16:42:19.546 INFO [30474]: _SERVER found -- 16:42:19.546 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:42:19.546 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:42:19.546 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=b34mc9mllf699lslc09i11pkifosm810 -- 16:42:19.546 INFO [30474]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:42:19.546 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:42:19.557 INFO [30474]: COREGRADE is stopping... -- 16:42:19.557 DEBUG [30474]: Closing database connection -- 16:42:19.557 SQL [30474]: pgsql_close() -- 16:42:19.554 DEBUG [24847]: Database connection successful -- 16:42:19.554 INFO [24847]: _SERVER found -- 16:42:19.554 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 16:42:19.554 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 16:42:19.554 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=b34mc9mllf699lslc09i11pkifosm810 -- 16:42:19.554 INFO [24847]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:42:19.554 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:42:19.565 INFO [24847]: COREGRADE is stopping... -- 16:42:19.565 DEBUG [24847]: Closing database connection -- 16:42:19.565 SQL [24847]: pgsql_close() -- 16:42:21.313 INFO [24847]: COREGRADE is starting... -- 16:42:21.313 INFO [24847]: Version from config: 1.0 -- 16:42:21.313 DEBUG [24847]: Connecting to database... -- 16:42:21.313 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:42:21.313 SQL [24847]: pgsql_db_connect() -- 16:42:21.317 DEBUG [24847]: Database connection successful -- 16:42:21.317 INFO [24847]: _SERVER found -- 16:42:21.317 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 16:42:21.317 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 16:42:21.317 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=b34mc9mllf699lslc09i11pkifosm810 -- 16:42:21.317 INFO [24847]: QUERY_STRING = /member -- 16:42:21.317 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:42:21.351 INFO [24847]: COREGRADE is stopping... -- 16:42:21.351 DEBUG [24847]: Closing database connection -- 16:42:21.351 SQL [24847]: pgsql_close() -- 16:42:21.540 INFO [24847]: COREGRADE is starting... -- 16:42:21.540 INFO [24847]: Version from config: 1.0 -- 16:42:21.540 DEBUG [24847]: Connecting to database... -- 16:42:21.540 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:42:21.540 SQL [24847]: pgsql_db_connect() -- 16:42:21.550 INFO [30474]: COREGRADE is starting... -- 16:42:21.551 INFO [30474]: Version from config: 1.0 -- 16:42:21.551 DEBUG [30474]: Connecting to database... -- 16:42:21.551 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:42:21.551 SQL [30474]: pgsql_db_connect() -- 16:42:21.544 DEBUG [24847]: Database connection successful -- 16:42:21.544 INFO [24847]: _SERVER found -- 16:42:21.544 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 16:42:21.544 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 16:42:21.544 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=b34mc9mllf699lslc09i11pkifosm810 -- 16:42:21.544 INFO [24847]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:42:21.544 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:42:21.555 INFO [24847]: COREGRADE is stopping... -- 16:42:21.556 DEBUG [24847]: Closing database connection -- 16:42:21.556 SQL [24847]: pgsql_close() -- 16:42:21.555 DEBUG [30474]: Database connection successful -- 16:42:21.555 INFO [30474]: _SERVER found -- 16:42:21.555 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:42:21.555 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:42:21.555 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=b34mc9mllf699lslc09i11pkifosm810 -- 16:42:21.555 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:42:21.555 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:42:21.566 INFO [30474]: COREGRADE is stopping... -- 16:42:21.566 DEBUG [30474]: Closing database connection -- 16:42:21.566 SQL [30474]: pgsql_close() -- 16:42:23.646 INFO [30474]: COREGRADE is starting... -- 16:42:23.646 INFO [30474]: Version from config: 1.0 -- 16:42:23.646 DEBUG [30474]: Connecting to database... -- 16:42:23.646 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:42:23.646 SQL [30474]: pgsql_db_connect() -- 16:42:23.650 DEBUG [30474]: Database connection successful -- 16:42:23.650 INFO [30474]: _SERVER found -- 16:42:23.650 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:42:23.650 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:42:23.650 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=b34mc9mllf699lslc09i11pkifosm810 -- 16:42:23.650 INFO [30474]: QUERY_STRING = /member/page -- 16:42:23.650 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:42:23.682 INFO [30474]: COREGRADE is stopping... -- 16:42:23.682 DEBUG [30474]: Closing database connection -- 16:42:23.682 SQL [30474]: pgsql_close() -- 16:42:23.932 INFO [30474]: COREGRADE is starting... -- 16:42:23.933 INFO [30474]: Version from config: 1.0 -- 16:42:23.933 DEBUG [30474]: Connecting to database... -- 16:42:23.933 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:42:23.933 SQL [30474]: pgsql_db_connect() -- 16:42:23.938 INFO [24847]: COREGRADE is starting... -- 16:42:23.938 INFO [24847]: Version from config: 1.0 -- 16:42:23.938 DEBUG [24847]: Connecting to database... -- 16:42:23.938 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:42:23.938 SQL [24847]: pgsql_db_connect() -- 16:42:23.937 DEBUG [30474]: Database connection successful -- 16:42:23.937 INFO [30474]: _SERVER found -- 16:42:23.937 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:42:23.937 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:42:23.937 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=b34mc9mllf699lslc09i11pkifosm810 -- 16:42:23.937 INFO [30474]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:42:23.937 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:42:23.948 INFO [30474]: COREGRADE is stopping... -- 16:42:23.948 DEBUG [30474]: Closing database connection -- 16:42:23.948 SQL [30474]: pgsql_close() -- 16:42:23.942 DEBUG [24847]: Database connection successful -- 16:42:23.942 INFO [24847]: _SERVER found -- 16:42:23.942 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 16:42:23.942 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 16:42:23.942 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=b34mc9mllf699lslc09i11pkifosm810 -- 16:42:23.942 INFO [24847]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:42:23.942 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:42:23.953 INFO [24847]: COREGRADE is stopping... -- 16:42:23.953 DEBUG [24847]: Closing database connection -- 16:42:23.953 SQL [24847]: pgsql_close() -- 16:42:25.789 INFO [24847]: COREGRADE is starting... -- 16:42:25.789 INFO [24847]: Version from config: 1.0 -- 16:42:25.789 DEBUG [24847]: Connecting to database... -- 16:42:25.789 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:42:25.789 SQL [24847]: pgsql_db_connect() -- 16:42:25.793 DEBUG [24847]: Database connection successful -- 16:42:25.793 INFO [24847]: _SERVER found -- 16:42:25.793 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 16:42:25.793 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 16:42:25.793 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=b34mc9mllf699lslc09i11pkifosm810 -- 16:42:25.793 INFO [24847]: QUERY_STRING = /member -- 16:42:25.793 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:42:25.827 INFO [24847]: COREGRADE is stopping... -- 16:42:25.828 DEBUG [24847]: Closing database connection -- 16:42:25.828 SQL [24847]: pgsql_close() -- 16:42:26.048 INFO [24847]: COREGRADE is starting... -- 16:42:26.049 INFO [24847]: Version from config: 1.0 -- 16:42:26.049 DEBUG [24847]: Connecting to database... -- 16:42:26.049 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:42:26.049 SQL [24847]: pgsql_db_connect() -- 16:42:26.057 INFO [30474]: COREGRADE is starting... -- 16:42:26.058 INFO [30474]: Version from config: 1.0 -- 16:42:26.058 DEBUG [30474]: Connecting to database... -- 16:42:26.058 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:42:26.058 SQL [30474]: pgsql_db_connect() -- 16:42:26.053 DEBUG [24847]: Database connection successful -- 16:42:26.053 INFO [24847]: _SERVER found -- 16:42:26.053 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 16:42:26.053 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 16:42:26.053 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=b34mc9mllf699lslc09i11pkifosm810 -- 16:42:26.053 INFO [24847]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:42:26.053 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:42:26.064 INFO [24847]: COREGRADE is stopping... -- 16:42:26.064 DEBUG [24847]: Closing database connection -- 16:42:26.064 SQL [24847]: pgsql_close() -- 16:42:26.061 DEBUG [30474]: Database connection successful -- 16:42:26.061 INFO [30474]: _SERVER found -- 16:42:26.061 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:42:26.061 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:42:26.061 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=b34mc9mllf699lslc09i11pkifosm810 -- 16:42:26.061 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:42:26.062 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:42:26.073 INFO [30474]: COREGRADE is stopping... -- 16:42:26.073 DEBUG [30474]: Closing database connection -- 16:42:26.073 SQL [30474]: pgsql_close() -- 16:42:27.201 INFO [30474]: COREGRADE is starting... -- 16:42:27.201 INFO [30474]: Version from config: 1.0 -- 16:42:27.201 DEBUG [30474]: Connecting to database... -- 16:42:27.201 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:42:27.201 SQL [30474]: pgsql_db_connect() -- 16:42:27.205 DEBUG [30474]: Database connection successful -- 16:42:27.205 INFO [30474]: _SERVER found -- 16:42:27.205 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:42:27.205 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:42:27.205 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=b34mc9mllf699lslc09i11pkifosm810 -- 16:42:27.205 INFO [30474]: QUERY_STRING = /member/page -- 16:42:27.205 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:42:27.237 INFO [30474]: COREGRADE is stopping... -- 16:42:27.237 DEBUG [30474]: Closing database connection -- 16:42:27.237 SQL [30474]: pgsql_close() -- 16:42:27.442 INFO [30474]: COREGRADE is starting... -- 16:42:27.443 INFO [30474]: Version from config: 1.0 -- 16:42:27.443 DEBUG [30474]: Connecting to database... -- 16:42:27.443 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:42:27.443 SQL [30474]: pgsql_db_connect() -- 16:42:27.449 INFO [24847]: COREGRADE is starting... -- 16:42:27.449 INFO [24847]: Version from config: 1.0 -- 16:42:27.449 DEBUG [24847]: Connecting to database... -- 16:42:27.449 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:42:27.449 SQL [24847]: pgsql_db_connect() -- 16:42:27.447 DEBUG [30474]: Database connection successful -- 16:42:27.447 INFO [30474]: _SERVER found -- 16:42:27.447 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:42:27.447 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:42:27.447 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=b34mc9mllf699lslc09i11pkifosm810 -- 16:42:27.447 INFO [30474]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:42:27.447 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:42:27.458 INFO [30474]: COREGRADE is stopping... -- 16:42:27.458 DEBUG [30474]: Closing database connection -- 16:42:27.458 SQL [30474]: pgsql_close() -- 16:42:27.453 DEBUG [24847]: Database connection successful -- 16:42:27.453 INFO [24847]: _SERVER found -- 16:42:27.453 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 16:42:27.453 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 16:42:27.453 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=b34mc9mllf699lslc09i11pkifosm810 -- 16:42:27.453 INFO [24847]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:42:27.453 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:42:27.465 INFO [24847]: COREGRADE is stopping... -- 16:42:27.465 DEBUG [24847]: Closing database connection -- 16:42:27.465 SQL [24847]: pgsql_close() -- 16:42:28.496 INFO [24847]: COREGRADE is starting... -- 16:42:28.497 INFO [24847]: Version from config: 1.0 -- 16:42:28.497 DEBUG [24847]: Connecting to database... -- 16:42:28.497 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:42:28.497 SQL [24847]: pgsql_db_connect() -- 16:42:28.501 DEBUG [24847]: Database connection successful -- 16:42:28.501 INFO [24847]: _SERVER found -- 16:42:28.501 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 16:42:28.501 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 16:42:28.501 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=b34mc9mllf699lslc09i11pkifosm810 -- 16:42:28.501 INFO [24847]: QUERY_STRING = /member -- 16:42:28.501 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:42:28.535 INFO [24847]: COREGRADE is stopping... -- 16:42:28.535 DEBUG [24847]: Closing database connection -- 16:42:28.535 SQL [24847]: pgsql_close() -- 16:42:28.737 INFO [24847]: COREGRADE is starting... -- 16:42:28.738 INFO [24847]: Version from config: 1.0 -- 16:42:28.738 DEBUG [24847]: Connecting to database... -- 16:42:28.738 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:42:28.738 SQL [24847]: pgsql_db_connect() -- 16:42:28.745 INFO [30474]: COREGRADE is starting... -- 16:42:28.745 INFO [30474]: Version from config: 1.0 -- 16:42:28.745 DEBUG [30474]: Connecting to database... -- 16:42:28.745 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:42:28.745 SQL [30474]: pgsql_db_connect() -- 16:42:28.742 DEBUG [24847]: Database connection successful -- 16:42:28.742 INFO [24847]: _SERVER found -- 16:42:28.742 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 16:42:28.742 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 16:42:28.742 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=b34mc9mllf699lslc09i11pkifosm810 -- 16:42:28.742 INFO [24847]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:42:28.742 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:42:28.753 INFO [24847]: COREGRADE is stopping... -- 16:42:28.753 DEBUG [24847]: Closing database connection -- 16:42:28.753 SQL [24847]: pgsql_close() -- 16:42:28.749 DEBUG [30474]: Database connection successful -- 16:42:28.749 INFO [30474]: _SERVER found -- 16:42:28.749 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:42:28.749 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:42:28.749 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=b34mc9mllf699lslc09i11pkifosm810 -- 16:42:28.749 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:42:28.749 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:42:28.760 INFO [30474]: COREGRADE is stopping... -- 16:42:28.760 DEBUG [30474]: Closing database connection -- 16:42:28.760 SQL [30474]: pgsql_close() -- 16:42:31.636 INFO [30474]: COREGRADE is starting... -- 16:42:31.637 INFO [30474]: Version from config: 1.0 -- 16:42:31.637 DEBUG [30474]: Connecting to database... -- 16:42:31.637 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:42:31.637 SQL [30474]: pgsql_db_connect() -- 16:42:31.641 DEBUG [30474]: Database connection successful -- 16:42:31.641 INFO [30474]: _SERVER found -- 16:42:31.641 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:42:31.641 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:42:31.641 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=b34mc9mllf699lslc09i11pkifosm810 -- 16:42:31.641 INFO [30474]: QUERY_STRING = /member/page -- 16:42:31.641 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:42:31.672 INFO [30474]: COREGRADE is stopping... -- 16:42:31.672 DEBUG [30474]: Closing database connection -- 16:42:31.672 SQL [30474]: pgsql_close() -- 16:42:31.870 INFO [30474]: COREGRADE is starting... -- 16:42:31.870 INFO [30474]: Version from config: 1.0 -- 16:42:31.870 DEBUG [30474]: Connecting to database... -- 16:42:31.871 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:42:31.871 SQL [30474]: pgsql_db_connect() -- 16:42:31.875 DEBUG [30474]: Database connection successful -- 16:42:31.875 INFO [30474]: _SERVER found -- 16:42:31.875 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:42:31.875 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:42:31.875 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=b34mc9mllf699lslc09i11pkifosm810 -- 16:42:31.875 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:42:31.875 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:42:31.886 INFO [30474]: COREGRADE is stopping... -- 16:42:31.886 DEBUG [30474]: Closing database connection -- 16:42:31.886 SQL [30474]: pgsql_close() -- 16:42:32.799 INFO [30474]: COREGRADE is starting... -- 16:42:32.799 INFO [30474]: Version from config: 1.0 -- 16:42:32.799 DEBUG [30474]: Connecting to database... -- 16:42:32.799 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:42:32.799 SQL [30474]: pgsql_db_connect() -- 16:42:32.803 DEBUG [30474]: Database connection successful -- 16:42:32.803 INFO [30474]: _SERVER found -- 16:42:32.803 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:42:32.803 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:42:32.803 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=b34mc9mllf699lslc09i11pkifosm810 -- 16:42:32.803 INFO [30474]: QUERY_STRING = /member -- 16:42:32.803 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:42:32.839 INFO [30474]: COREGRADE is stopping... -- 16:42:32.839 DEBUG [30474]: Closing database connection -- 16:42:32.839 SQL [30474]: pgsql_close() -- 16:42:33.021 INFO [30474]: COREGRADE is starting... -- 16:42:33.022 INFO [30474]: Version from config: 1.0 -- 16:42:33.022 DEBUG [30474]: Connecting to database... -- 16:42:33.022 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:42:33.022 SQL [30474]: pgsql_db_connect() -- 16:42:33.026 DEBUG [30474]: Database connection successful -- 16:42:33.026 INFO [30474]: _SERVER found -- 16:42:33.026 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 16:42:33.026 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 16:42:33.026 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=b34mc9mllf699lslc09i11pkifosm810 -- 16:42:33.026 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:42:33.026 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:42:33.037 INFO [30474]: COREGRADE is stopping... -- 16:42:33.037 DEBUG [30474]: Closing database connection -- 16:42:33.037 SQL [30474]: pgsql_close() -- 16:47:24.137 INFO [30475]: COREGRADE is starting... -- 16:47:24.138 INFO [30475]: Version from config: 1.0 -- 16:47:24.138 DEBUG [30475]: Connecting to database... -- 16:47:24.138 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:47:24.138 SQL [30475]: pgsql_db_connect() -- 16:47:24.142 DEBUG [30475]: Database connection successful -- 16:47:24.142 INFO [30475]: _SERVER found -- 16:47:24.142 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 16:47:24.142 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 16:47:24.142 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=4aoiggd3hbq39s4g6g27ua2c0oj0d4l4 -- 16:47:24.142 INFO [30475]: QUERY_STRING = /auth -- 16:47:24.142 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:47:24.175 INFO [30475]: COREGRADE is stopping... -- 16:47:24.175 DEBUG [30475]: Closing database connection -- 16:47:24.175 SQL [30475]: pgsql_close() -- 16:47:24.373 INFO [30475]: COREGRADE is starting... -- 16:47:24.373 INFO [30475]: Version from config: 1.0 -- 16:47:24.373 DEBUG [30475]: Connecting to database... -- 16:47:24.373 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:47:24.373 SQL [30475]: pgsql_db_connect() -- 16:47:24.377 DEBUG [30475]: Database connection successful -- 16:47:24.377 INFO [30475]: _SERVER found -- 16:47:24.377 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 16:47:24.377 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 16:47:24.377 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=9c11cpjf669q2gg3kukqvp27oktev11u -- 16:47:24.377 INFO [30475]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:47:24.377 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:47:24.388 INFO [30475]: COREGRADE is stopping... -- 16:47:24.388 DEBUG [30475]: Closing database connection -- 16:47:24.388 SQL [30475]: pgsql_close() -- 16:47:24.743 INFO [30475]: COREGRADE is starting... -- 16:47:24.743 INFO [30475]: Version from config: 1.0 -- 16:47:24.743 DEBUG [30475]: Connecting to database... -- 16:47:24.743 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:47:24.743 SQL [30475]: pgsql_db_connect() -- 16:47:24.747 DEBUG [30475]: Database connection successful -- 16:47:24.748 INFO [30475]: _SERVER found -- 16:47:24.748 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 16:47:24.748 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 16:47:24.748 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=9c11cpjf669q2gg3kukqvp27oktev11u -- 16:47:24.748 INFO [30475]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:47:24.748 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:47:24.759 INFO [30475]: COREGRADE is stopping... -- 16:47:24.759 DEBUG [30475]: Closing database connection -- 16:47:24.759 SQL [30475]: pgsql_close() -- 16:52:53.776 INFO [24184]: COREGRADE is starting... -- 16:52:53.776 INFO [24184]: Version from config: 1.0 -- 16:52:53.776 DEBUG [24184]: Connecting to database... -- 16:52:53.776 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:52:53.776 SQL [24184]: pgsql_db_connect() -- 16:52:53.781 DEBUG [24184]: Database connection successful -- 16:52:53.781 INFO [24184]: _SERVER found -- 16:52:53.781 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 16:52:53.781 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 16:52:53.781 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=b34mc9mllf699lslc09i11pkifosm810 -- 16:52:53.781 INFO [24184]: QUERY_STRING = /member/page -- 16:52:53.781 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:52:53.816 INFO [24184]: COREGRADE is stopping... -- 16:52:53.816 DEBUG [24184]: Closing database connection -- 16:52:53.816 SQL [24184]: pgsql_close() -- 16:52:54.128 INFO [24184]: COREGRADE is starting... -- 16:52:54.128 INFO [24184]: Version from config: 1.0 -- 16:52:54.128 DEBUG [24184]: Connecting to database... -- 16:52:54.129 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:52:54.129 SQL [24184]: pgsql_db_connect() -- 16:52:54.133 DEBUG [24184]: Database connection successful -- 16:52:54.133 INFO [24184]: _SERVER found -- 16:52:54.133 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 16:52:54.133 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 16:52:54.133 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5p7kho9pbue6pq9gb6l3gssh6931c6pn -- 16:52:54.133 INFO [24184]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:52:54.133 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:52:54.144 INFO [24184]: COREGRADE is stopping... -- 16:52:54.144 DEBUG [24184]: Closing database connection -- 16:52:54.144 SQL [24184]: pgsql_close() -- 16:53:33.031 INFO [24136]: COREGRADE is starting... -- 16:53:33.031 INFO [24136]: Version from config: 1.0 -- 16:53:33.031 DEBUG [24136]: Connecting to database... -- 16:53:33.031 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:53:33.031 SQL [24136]: pgsql_db_connect() -- 16:53:33.035 DEBUG [24136]: Database connection successful -- 16:53:33.035 INFO [24136]: _SERVER found -- 16:53:33.035 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 16:53:33.035 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 16:53:33.035 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5p7kho9pbue6pq9gb6l3gssh6931c6pn -- 16:53:33.035 INFO [24136]: QUERY_STRING = /member -- 16:53:33.035 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:53:33.073 INFO [24136]: COREGRADE is stopping... -- 16:53:33.073 DEBUG [24136]: Closing database connection -- 16:53:33.073 SQL [24136]: pgsql_close() -- 16:53:33.445 INFO [24136]: COREGRADE is starting... -- 16:53:33.445 INFO [24136]: Version from config: 1.0 -- 16:53:33.445 DEBUG [24136]: Connecting to database... -- 16:53:33.446 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:53:33.446 SQL [24136]: pgsql_db_connect() -- 16:53:33.450 DEBUG [24136]: Database connection successful -- 16:53:33.450 INFO [24136]: _SERVER found -- 16:53:33.450 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 16:53:33.450 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 16:53:33.450 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5p7kho9pbue6pq9gb6l3gssh6931c6pn -- 16:53:33.450 INFO [24136]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:53:33.450 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:53:33.461 INFO [24136]: COREGRADE is stopping... -- 16:53:33.461 DEBUG [24136]: Closing database connection -- 16:53:33.461 SQL [24136]: pgsql_close() -- 16:55:04.188 INFO [24139]: COREGRADE is starting... -- 16:55:04.188 INFO [24139]: Version from config: 1.0 -- 16:55:04.188 DEBUG [24139]: Connecting to database... -- 16:55:04.188 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:55:04.188 SQL [24139]: pgsql_db_connect() -- 16:55:04.192 DEBUG [24139]: Database connection successful -- 16:55:04.192 INFO [24139]: _SERVER found -- 16:55:04.192 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 16:55:04.192 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 16:55:04.192 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5p7kho9pbue6pq9gb6l3gssh6931c6pn -- 16:55:04.192 INFO [24139]: QUERY_STRING = /member/page -- 16:55:04.192 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:55:04.228 INFO [24139]: COREGRADE is stopping... -- 16:55:04.228 DEBUG [24139]: Closing database connection -- 16:55:04.228 SQL [24139]: pgsql_close() -- 16:55:04.619 INFO [24139]: COREGRADE is starting... -- 16:55:04.620 INFO [24139]: Version from config: 1.0 -- 16:55:04.620 DEBUG [24139]: Connecting to database... -- 16:55:04.620 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:55:04.620 SQL [24139]: pgsql_db_connect() -- 16:55:04.624 DEBUG [24139]: Database connection successful -- 16:55:04.624 INFO [24139]: _SERVER found -- 16:55:04.624 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 16:55:04.624 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 16:55:04.624 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5p7kho9pbue6pq9gb6l3gssh6931c6pn -- 16:55:04.624 INFO [24139]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:55:04.624 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:55:04.635 INFO [24139]: COREGRADE is stopping... -- 16:55:04.635 DEBUG [24139]: Closing database connection -- 16:55:04.635 SQL [24139]: pgsql_close() -- 16:55:17.748 INFO [24137]: COREGRADE is starting... -- 16:55:17.749 INFO [24137]: Version from config: 1.0 -- 16:55:17.749 DEBUG [24137]: Connecting to database... -- 16:55:17.749 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:55:17.749 SQL [24137]: pgsql_db_connect() -- 16:55:17.753 DEBUG [24137]: Database connection successful -- 16:55:17.753 INFO [24137]: _SERVER found -- 16:55:17.753 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 16:55:17.753 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 16:55:17.753 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5p7kho9pbue6pq9gb6l3gssh6931c6pn -- 16:55:17.753 INFO [24137]: QUERY_STRING = /member -- 16:55:17.753 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:55:17.788 INFO [24137]: COREGRADE is stopping... -- 16:55:17.789 DEBUG [24137]: Closing database connection -- 16:55:17.789 SQL [24137]: pgsql_close() -- 16:55:18.147 INFO [24137]: COREGRADE is starting... -- 16:55:18.147 INFO [24137]: Version from config: 1.0 -- 16:55:18.147 DEBUG [24137]: Connecting to database... -- 16:55:18.147 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:55:18.147 SQL [24137]: pgsql_db_connect() -- 16:55:18.151 DEBUG [24137]: Database connection successful -- 16:55:18.151 INFO [24137]: _SERVER found -- 16:55:18.151 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 16:55:18.151 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 16:55:18.151 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5p7kho9pbue6pq9gb6l3gssh6931c6pn -- 16:55:18.151 INFO [24137]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:55:18.151 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:55:18.162 INFO [24137]: COREGRADE is stopping... -- 16:55:18.162 DEBUG [24137]: Closing database connection -- 16:55:18.162 SQL [24137]: pgsql_close() -- 16:56:08.934 INFO [24138]: COREGRADE is starting... -- 16:56:08.935 INFO [24138]: Version from config: 1.0 -- 16:56:08.935 DEBUG [24138]: Connecting to database... -- 16:56:08.935 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:08.935 SQL [24138]: pgsql_db_connect() -- 16:56:08.939 DEBUG [24138]: Database connection successful -- 16:56:08.939 INFO [24138]: _SERVER found -- 16:56:08.939 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 16:56:08.939 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 16:56:08.939 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5p7kho9pbue6pq9gb6l3gssh6931c6pn -- 16:56:08.939 INFO [24138]: QUERY_STRING = /member -- 16:56:08.939 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:56:08.974 INFO [24138]: COREGRADE is stopping... -- 16:56:08.974 DEBUG [24138]: Closing database connection -- 16:56:08.974 SQL [24138]: pgsql_close() -- 16:56:09.374 INFO [24138]: COREGRADE is starting... -- 16:56:09.375 INFO [24138]: Version from config: 1.0 -- 16:56:09.375 DEBUG [24138]: Connecting to database... -- 16:56:09.375 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:09.375 SQL [24138]: pgsql_db_connect() -- 16:56:09.379 DEBUG [24138]: Database connection successful -- 16:56:09.379 INFO [24138]: _SERVER found -- 16:56:09.379 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 16:56:09.379 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 16:56:09.379 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5p7kho9pbue6pq9gb6l3gssh6931c6pn -- 16:56:09.379 INFO [24138]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:56:09.379 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:56:09.390 INFO [24138]: COREGRADE is stopping... -- 16:56:09.390 DEBUG [24138]: Closing database connection -- 16:56:09.390 SQL [24138]: pgsql_close() -- 16:56:29.856 INFO [30476]: COREGRADE is starting... -- 16:56:29.857 INFO [30476]: Version from config: 1.0 -- 16:56:29.857 DEBUG [30476]: Connecting to database... -- 16:56:29.857 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:29.857 SQL [30476]: pgsql_db_connect() -- 16:56:29.861 DEBUG [30476]: Database connection successful -- 16:56:29.861 INFO [30476]: _SERVER found -- 16:56:29.861 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 16:56:29.861 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 16:56:29.861 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5p7kho9pbue6pq9gb6l3gssh6931c6pn -- 16:56:29.861 INFO [30476]: QUERY_STRING = /member/page -- 16:56:29.861 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:56:29.893 INFO [30476]: COREGRADE is stopping... -- 16:56:29.893 DEBUG [30476]: Closing database connection -- 16:56:29.893 SQL [30476]: pgsql_close() -- 16:56:30.217 INFO [30476]: COREGRADE is starting... -- 16:56:30.218 INFO [30476]: Version from config: 1.0 -- 16:56:30.218 DEBUG [30476]: Connecting to database... -- 16:56:30.218 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:30.218 SQL [30476]: pgsql_db_connect() -- 16:56:30.222 DEBUG [30476]: Database connection successful -- 16:56:30.222 INFO [30476]: _SERVER found -- 16:56:30.222 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 16:56:30.222 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 16:56:30.222 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5p7kho9pbue6pq9gb6l3gssh6931c6pn -- 16:56:30.222 INFO [30476]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:56:30.222 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:56:30.233 INFO [30476]: COREGRADE is stopping... -- 16:56:30.233 DEBUG [30476]: Closing database connection -- 16:56:30.233 SQL [30476]: pgsql_close() -- 16:58:13.137 INFO [24847]: COREGRADE is starting... -- 16:58:13.138 INFO [24847]: Version from config: 1.0 -- 16:58:13.138 DEBUG [24847]: Connecting to database... -- 16:58:13.138 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:13.138 SQL [24847]: pgsql_db_connect() -- 16:58:13.142 DEBUG [24847]: Database connection successful -- 16:58:13.142 INFO [24847]: _SERVER found -- 16:58:13.142 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 16:58:13.142 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 16:58:13.142 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5p7kho9pbue6pq9gb6l3gssh6931c6pn -- 16:58:13.142 INFO [24847]: QUERY_STRING = /member/page -- 16:58:13.142 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:58:13.174 INFO [24847]: COREGRADE is stopping... -- 16:58:13.174 DEBUG [24847]: Closing database connection -- 16:58:13.174 SQL [24847]: pgsql_close() -- 16:58:13.566 INFO [24847]: COREGRADE is starting... -- 16:58:13.567 INFO [24847]: Version from config: 1.0 -- 16:58:13.567 DEBUG [24847]: Connecting to database... -- 16:58:13.567 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:13.567 SQL [24847]: pgsql_db_connect() -- 16:58:13.571 DEBUG [24847]: Database connection successful -- 16:58:13.571 INFO [24847]: _SERVER found -- 16:58:13.571 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 16:58:13.571 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 16:58:13.571 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vggh1nudrgapr66o0dtf9cl4rfskq2e7 -- 16:58:13.571 INFO [24847]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:58:13.571 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:58:13.582 INFO [24847]: COREGRADE is stopping... -- 16:58:13.582 DEBUG [24847]: Closing database connection -- 16:58:13.582 SQL [24847]: pgsql_close() -- 16:58:18.879 INFO [30475]: COREGRADE is starting... -- 16:58:18.879 INFO [30475]: Version from config: 1.0 -- 16:58:18.879 DEBUG [30475]: Connecting to database... -- 16:58:18.879 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:18.879 SQL [30475]: pgsql_db_connect() -- 16:58:18.883 DEBUG [30475]: Database connection successful -- 16:58:18.883 INFO [30475]: _SERVER found -- 16:58:18.883 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 16:58:18.883 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 16:58:18.883 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vggh1nudrgapr66o0dtf9cl4rfskq2e7 -- 16:58:18.883 INFO [30475]: QUERY_STRING = /member -- 16:58:18.883 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:58:18.918 INFO [30475]: COREGRADE is stopping... -- 16:58:18.918 DEBUG [30475]: Closing database connection -- 16:58:18.918 SQL [30475]: pgsql_close() -- 16:58:19.216 INFO [30475]: COREGRADE is starting... -- 16:58:19.216 INFO [30475]: Version from config: 1.0 -- 16:58:19.216 DEBUG [30475]: Connecting to database... -- 16:58:19.216 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:19.216 SQL [30475]: pgsql_db_connect() -- 16:58:19.220 DEBUG [30475]: Database connection successful -- 16:58:19.220 INFO [30475]: _SERVER found -- 16:58:19.220 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 16:58:19.220 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 16:58:19.220 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vggh1nudrgapr66o0dtf9cl4rfskq2e7 -- 16:58:19.220 INFO [30475]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:58:19.220 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:58:19.231 INFO [30475]: COREGRADE is stopping... -- 16:58:19.231 DEBUG [30475]: Closing database connection -- 16:58:19.231 SQL [30475]: pgsql_close() -- 16:58:20.178 INFO [30475]: COREGRADE is starting... -- 16:58:20.178 INFO [30475]: Version from config: 1.0 -- 16:58:20.178 DEBUG [30475]: Connecting to database... -- 16:58:20.179 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:20.179 SQL [30475]: pgsql_db_connect() -- 16:58:20.183 DEBUG [30475]: Database connection successful -- 16:58:20.183 INFO [30475]: _SERVER found -- 16:58:20.183 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 16:58:20.183 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 16:58:20.183 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vggh1nudrgapr66o0dtf9cl4rfskq2e7 -- 16:58:20.183 INFO [30475]: QUERY_STRING = /member/page -- 16:58:20.183 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:58:20.214 INFO [30475]: COREGRADE is stopping... -- 16:58:20.214 DEBUG [30475]: Closing database connection -- 16:58:20.214 SQL [30475]: pgsql_close() -- 16:58:20.468 INFO [30475]: COREGRADE is starting... -- 16:58:20.468 INFO [30475]: Version from config: 1.0 -- 16:58:20.468 DEBUG [30475]: Connecting to database... -- 16:58:20.468 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:20.468 SQL [30475]: pgsql_db_connect() -- 16:58:20.473 DEBUG [30475]: Database connection successful -- 16:58:20.473 INFO [30475]: _SERVER found -- 16:58:20.473 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 16:58:20.473 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 16:58:20.473 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vggh1nudrgapr66o0dtf9cl4rfskq2e7 -- 16:58:20.473 INFO [30475]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:58:20.473 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:58:20.484 INFO [30475]: COREGRADE is stopping... -- 16:58:20.484 DEBUG [30475]: Closing database connection -- 16:58:20.484 SQL [30475]: pgsql_close() -- 16:58:41.507 INFO [24184]: COREGRADE is starting... -- 16:58:41.507 INFO [24184]: Version from config: 1.0 -- 16:58:41.507 DEBUG [24184]: Connecting to database... -- 16:58:41.507 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:41.507 SQL [24184]: pgsql_db_connect() -- 16:58:41.511 DEBUG [24184]: Database connection successful -- 16:58:41.511 INFO [24184]: _SERVER found -- 16:58:41.511 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 16:58:41.511 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 16:58:41.511 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vggh1nudrgapr66o0dtf9cl4rfskq2e7 -- 16:58:41.511 INFO [24184]: QUERY_STRING = /member -- 16:58:41.511 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:58:41.550 INFO [24184]: COREGRADE is stopping... -- 16:58:41.550 DEBUG [24184]: Closing database connection -- 16:58:41.550 SQL [24184]: pgsql_close() -- 16:58:41.946 INFO [24184]: COREGRADE is starting... -- 16:58:41.946 INFO [24184]: Version from config: 1.0 -- 16:58:41.946 DEBUG [24184]: Connecting to database... -- 16:58:41.946 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:41.946 SQL [24184]: pgsql_db_connect() -- 16:58:41.950 DEBUG [24184]: Database connection successful -- 16:58:41.950 INFO [24184]: _SERVER found -- 16:58:41.950 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 16:58:41.950 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 16:58:41.950 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vggh1nudrgapr66o0dtf9cl4rfskq2e7 -- 16:58:41.950 INFO [24184]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:58:41.950 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:58:41.961 INFO [24184]: COREGRADE is stopping... -- 16:58:41.961 DEBUG [24184]: Closing database connection -- 16:58:41.961 SQL [24184]: pgsql_close() -- 16:58:43.380 INFO [24184]: COREGRADE is starting... -- 16:58:43.380 INFO [24184]: Version from config: 1.0 -- 16:58:43.380 DEBUG [24184]: Connecting to database... -- 16:58:43.380 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:43.380 SQL [24184]: pgsql_db_connect() -- 16:58:43.384 DEBUG [24184]: Database connection successful -- 16:58:43.384 INFO [24184]: _SERVER found -- 16:58:43.384 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 16:58:43.384 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 16:58:43.384 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vggh1nudrgapr66o0dtf9cl4rfskq2e7 -- 16:58:43.384 INFO [24184]: QUERY_STRING = /member/page -- 16:58:43.384 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:58:43.418 INFO [24184]: COREGRADE is stopping... -- 16:58:43.419 DEBUG [24184]: Closing database connection -- 16:58:43.419 SQL [24184]: pgsql_close() -- 16:58:43.710 INFO [24184]: COREGRADE is starting... -- 16:58:43.710 INFO [24184]: Version from config: 1.0 -- 16:58:43.710 DEBUG [24184]: Connecting to database... -- 16:58:43.710 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:43.710 SQL [24184]: pgsql_db_connect() -- 16:58:43.715 DEBUG [24184]: Database connection successful -- 16:58:43.715 INFO [24184]: _SERVER found -- 16:58:43.715 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 16:58:43.715 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 16:58:43.715 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vggh1nudrgapr66o0dtf9cl4rfskq2e7 -- 16:58:43.715 INFO [24184]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:58:43.715 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:58:43.726 INFO [24184]: COREGRADE is stopping... -- 16:58:43.726 DEBUG [24184]: Closing database connection -- 16:58:43.726 SQL [24184]: pgsql_close() -- 16:59:13.487 INFO [24136]: COREGRADE is starting... -- 16:59:13.487 INFO [24136]: Version from config: 1.0 -- 16:59:13.487 DEBUG [24136]: Connecting to database... -- 16:59:13.487 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:59:13.487 SQL [24136]: pgsql_db_connect() -- 16:59:13.523 INFO [24136]: COREGRADE is starting... -- 16:59:13.524 INFO [24136]: Version from config: 1.0 -- 16:59:13.524 DEBUG [24136]: Connecting to database... -- 16:59:13.524 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:59:13.524 SQL [24136]: pgsql_db_connect() -- 16:59:13.528 DEBUG [24136]: Database connection successful -- 16:59:13.528 INFO [24136]: _SERVER found -- 16:59:13.528 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 16:59:13.528 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 16:59:13.528 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=9c11cpjf669q2gg3kukqvp27oktev11u -- 16:59:13.528 INFO [24136]: QUERY_STRING = -- 16:59:13.528 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:59:13.528 INFO [24136]: SystemStatus()09-09-********~************ -- 16:59:13.528 INFO [24136]: long coregrade_api_main(CVars in, CVars &out) -- 16:59:13.528 INFO [24136]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 16:59:13.528 INFO [24136]: account calls -- 16:59:13.528 INFO [24136]: account_calls() -- 16:59:13.528 INFO [24136]: LoginCoreGradeAccount() -- 16:59:13.528 FLOG_MAX [24136]: REQ_STRING(username) -- 16:59:13.528 FLOG_MAX [24136]: REQ_STRING(password) -- 16:59:13.528 FLOG_MAX [24136]: REQ_STRING(sessionid) -- 16:59:13.528 FLOG_MAX [24136]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:59:13.528 SQL [24136]: pgsql_query() -- 16:59:13.528 SQL [24136]: About to run query: -- 16:59:13.528 SQL [24136]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 16:59:13.531 SQL [24136]: Found rows: 1 -- 16:59:13.532 FLOG_MAX [24136]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 16:59:13.532 INFO [24136]: long SessionCheck(long uid, const char *sessionid, int create ) -- 16:59:13.532 SQL [24136]: pgsql_exec() -- 16:59:13.532 SQL [24136]: About to run query: -- 16:59:13.532 SQL [24136]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 16:59:13.533 SQL [24136]: PQcmdTuples: 1 -- 16:59:13.533 SQL [24136]: Affected rows: 1 -- 16:59:13.533 SQL [24136]: pgsql_exec() -- 16:59:13.533 SQL [24136]: About to run query: -- 16:59:13.533 SQL [24136]: DELETE FROM members_session WHERE member_id=5 -- 16:59:13.533 SQL [24136]: PQcmdTuples: 0 -- 16:59:13.533 SQL [24136]: Affected rows: 0 -- 16:59:13.533 SQL [24136]: pgsql_query() -- 16:59:13.533 SQL [24136]: About to run query: -- 16:59:13.534 SQL [24136]: SELECT * FROM members_session WHERE member_id=5 AND session<>'9D176FEC776D819C6F2C9370F7DFADD7' -- 16:59:13.534 SQL [24136]: Found rows: 0 -- 16:59:13.534 SQL [24136]: Found rows: 0 -- 16:59:13.534 FLOG_MAX [24136]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:59:13.534 SQL [24136]: pgsql_query() -- 16:59:13.534 SQL [24136]: About to run query: -- 16:59:13.535 SQL [24136]: SELECT * FROM members_session WHERE member_id=5 AND session='9D176FEC776D819C6F2C9370F7DFADD7' -- 16:59:13.535 SQL [24136]: Found rows: 0 -- 16:59:13.535 SQL [24136]: Found rows: 0 -- 16:59:13.535 FLOG_MAX [24136]: insert_db_record() -- 16:59:13.535 SQL [24136]: pgsql_exec() -- 16:59:13.535 SQL [24136]: About to run query: -- 16:59:13.535 SQL [24136]: INSERT INTO members_session (member_id,session) VALUES ('5','9D176FEC776D819C6F2C9370F7DFADD7') -- 16:59:13.537 SQL [24136]: PQcmdTuples: 1 -- 16:59:13.537 SQL [24136]: Affected rows: 1 -- 16:59:13.537 FLOG_MAX [24136]: SELECT currval('members_session_id_seq') -- 16:59:13.537 SQL [24136]: pgsql_query() -- 16:59:13.537 SQL [24136]: About to run query: -- 16:59:13.537 SQL [24136]: SELECT currval('members_session_id_seq') -- 16:59:13.537 SQL [24136]: Found rows: 1 -- 16:59:13.537 INFO [24136]: CreateDefaultPage() -- 16:59:13.537 FLOG_MAX [24136]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:59:13.537 SQL [24136]: pgsql_query() -- 16:59:13.537 SQL [24136]: About to run query: -- 16:59:13.537 SQL [24136]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 16:59:13.538 SQL [24136]: Found rows: 1 -- 16:59:13.538 FLOG_MAX [24136]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 16:59:13.538 SQL [24136]: pgsql_query() -- 16:59:13.538 SQL [24136]: About to run query: -- 16:59:13.538 SQL [24136]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 16:59:13.538 SQL [24136]: Found rows: 1 -- 16:59:13.538 INFO [24136]: /CreateDefaultPage() -- 16:59:13.538 INFO [24136]: /LoginCoreGradeAccount() -- 16:59:13.538 INFO [24136]: RET: added=2020-02-05 06:47:23.982154 -- 16:59:13.538 INFO [24136]: RET: email=ameye+11@chiefsoft.com -- 16:59:13.538 INFO [24136]: RET: firstname=Olu -- 16:59:13.538 INFO [24136]: RET: id=5 -- 16:59:13.538 INFO [24136]: RET: last_login= -- 16:59:13.538 INFO [24136]: RET: lastname=Amey -- 16:59:13.538 INFO [24136]: RET: loc=192.168.1.13 -- 16:59:13.538 INFO [24136]: RET: member_id=5 -- 16:59:13.538 INFO [24136]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 16:59:13.538 INFO [24136]: RET: phone= -- 16:59:13.538 INFO [24136]: RET: pid= -- 16:59:13.538 INFO [24136]: RET: result=YES I GET TO BACK END -- 16:59:13.538 INFO [24136]: RET: sessionid=9D176FEC776D819C6F2C9370F7DFADD7 -- 16:59:13.538 INFO [24136]: RET: status=1 -- 16:59:13.538 INFO [24136]: RET: stauts=OK -- 16:59:13.538 INFO [24136]: RET: username=ameye+11@chiefsoft.com -- 16:59:13.538 INFO [24136]: RET: verified= -- 16:59:13.540 INFO [24136]: COREGRADE is stopping... -- 16:59:13.540 DEBUG [24136]: Closing database connection -- 16:59:13.540 SQL [24136]: pgsql_close() -- 16:59:13.491 DEBUG [24136]: Database connection successful -- 16:59:13.491 INFO [24136]: _SERVER found -- 16:59:13.491 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 16:59:13.491 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 16:59:13.491 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=9c11cpjf669q2gg3kukqvp27oktev11u -- 16:59:13.491 INFO [24136]: QUERY_STRING = /auth -- 16:59:13.491 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:59:13.541 INFO [24136]: COREGRADE is stopping... -- 16:59:13.541 DEBUG [24136]: Closing database connection -- 16:59:13.541 SQL [24136]: pgsql_close() -- 16:59:13.561 INFO [24136]: COREGRADE is starting... -- 16:59:13.562 INFO [24136]: Version from config: 1.0 -- 16:59:13.562 DEBUG [24136]: Connecting to database... -- 16:59:13.562 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:59:13.562 SQL [24136]: pgsql_db_connect() -- 16:59:13.566 DEBUG [24136]: Database connection successful -- 16:59:13.566 INFO [24136]: _SERVER found -- 16:59:13.566 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 16:59:13.566 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 16:59:13.566 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=7q12mifui4cs42ev9jll0aq9mmgg090o -- 16:59:13.566 INFO [24136]: QUERY_STRING = /member/index -- 16:59:13.566 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:59:13.601 INFO [24136]: COREGRADE is stopping... -- 16:59:13.601 DEBUG [24136]: Closing database connection -- 16:59:13.601 SQL [24136]: pgsql_close() -- 16:59:13.838 INFO [24136]: COREGRADE is starting... -- 16:59:13.839 INFO [24136]: Version from config: 1.0 -- 16:59:13.839 DEBUG [24136]: Connecting to database... -- 16:59:13.839 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:59:13.839 SQL [24136]: pgsql_db_connect() -- 16:59:13.843 DEBUG [24136]: Database connection successful -- 16:59:13.843 INFO [24136]: _SERVER found -- 16:59:13.843 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 16:59:13.843 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 16:59:13.843 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=7q12mifui4cs42ev9jll0aq9mmgg090o -- 16:59:13.843 INFO [24136]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:59:13.843 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:59:13.854 INFO [24136]: COREGRADE is stopping... -- 16:59:13.854 DEBUG [24136]: Closing database connection -- 16:59:13.854 SQL [24136]: pgsql_close() -- 16:59:13.857 INFO [24139]: COREGRADE is starting... -- 16:59:13.857 INFO [24139]: Version from config: 1.0 -- 16:59:13.857 DEBUG [24139]: Connecting to database... -- 16:59:13.857 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:59:13.857 SQL [24139]: pgsql_db_connect() -- 16:59:13.861 DEBUG [24139]: Database connection successful -- 16:59:13.861 INFO [24139]: _SERVER found -- 16:59:13.861 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 16:59:13.861 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 16:59:13.861 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=7q12mifui4cs42ev9jll0aq9mmgg090o -- 16:59:13.861 INFO [24139]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:59:13.861 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:59:13.873 INFO [24139]: COREGRADE is stopping... -- 16:59:13.873 DEBUG [24139]: Closing database connection -- 16:59:13.873 SQL [24139]: pgsql_close() -- 16:59:16.317 INFO [24139]: COREGRADE is starting... -- 16:59:16.318 INFO [24139]: Version from config: 1.0 -- 16:59:16.318 DEBUG [24139]: Connecting to database... -- 16:59:16.318 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:59:16.318 SQL [24139]: pgsql_db_connect() -- 16:59:16.322 DEBUG [24139]: Database connection successful -- 16:59:16.322 INFO [24139]: _SERVER found -- 16:59:16.322 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 16:59:16.322 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 16:59:16.322 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=7q12mifui4cs42ev9jll0aq9mmgg090o -- 16:59:16.322 INFO [24139]: QUERY_STRING = /member/page -- 16:59:16.322 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:59:16.357 INFO [24139]: COREGRADE is stopping... -- 16:59:16.357 DEBUG [24139]: Closing database connection -- 16:59:16.357 SQL [24139]: pgsql_close() -- 16:59:16.535 INFO [24139]: COREGRADE is starting... -- 16:59:16.535 INFO [24139]: Version from config: 1.0 -- 16:59:16.535 DEBUG [24139]: Connecting to database... -- 16:59:16.535 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:59:16.535 SQL [24139]: pgsql_db_connect() -- 16:59:16.539 DEBUG [24139]: Database connection successful -- 16:59:16.539 INFO [24139]: _SERVER found -- 16:59:16.539 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 16:59:16.539 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 16:59:16.539 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=7q12mifui4cs42ev9jll0aq9mmgg090o -- 16:59:16.539 INFO [24139]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:59:16.539 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:59:16.551 INFO [24139]: COREGRADE is stopping... -- 16:59:16.551 DEBUG [24139]: Closing database connection -- 16:59:16.551 SQL [24139]: pgsql_close() -- 17:00:17.165 INFO [24137]: COREGRADE is starting... -- 17:00:17.165 INFO [24137]: Version from config: 1.0 -- 17:00:17.165 DEBUG [24137]: Connecting to database... -- 17:00:17.165 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:17.165 SQL [24137]: pgsql_db_connect() -- 17:00:17.169 DEBUG [24137]: Database connection successful -- 17:00:17.169 INFO [24137]: _SERVER found -- 17:00:17.169 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 17:00:17.169 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 17:00:17.169 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=7q12mifui4cs42ev9jll0aq9mmgg090o -- 17:00:17.169 INFO [24137]: QUERY_STRING = /member/page -- 17:00:17.169 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:00:17.202 INFO [24137]: COREGRADE is stopping... -- 17:00:17.202 DEBUG [24137]: Closing database connection -- 17:00:17.202 SQL [24137]: pgsql_close() -- 17:00:17.339 INFO [24137]: COREGRADE is starting... -- 17:00:17.340 INFO [24137]: Version from config: 1.0 -- 17:00:17.340 DEBUG [24137]: Connecting to database... -- 17:00:17.340 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:17.340 SQL [24137]: pgsql_db_connect() -- 17:00:17.344 DEBUG [24137]: Database connection successful -- 17:00:17.344 INFO [24137]: _SERVER found -- 17:00:17.344 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 17:00:17.344 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 17:00:17.344 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=7q12mifui4cs42ev9jll0aq9mmgg090o -- 17:00:17.344 INFO [24137]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:00:17.344 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:00:17.355 INFO [24137]: COREGRADE is stopping... -- 17:00:17.355 DEBUG [24137]: Closing database connection -- 17:00:17.355 SQL [24137]: pgsql_close() -- 17:00:18.361 INFO [24138]: COREGRADE is starting... -- 17:00:18.361 INFO [24138]: Version from config: 1.0 -- 17:00:18.361 DEBUG [24138]: Connecting to database... -- 17:00:18.361 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:18.361 SQL [24138]: pgsql_db_connect() -- 17:00:18.366 DEBUG [24138]: Database connection successful -- 17:00:18.366 INFO [24138]: _SERVER found -- 17:00:18.366 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 17:00:18.366 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 17:00:18.366 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vggh1nudrgapr66o0dtf9cl4rfskq2e7 -- 17:00:18.366 INFO [24138]: QUERY_STRING = /member/page -- 17:00:18.366 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:00:18.398 INFO [24138]: COREGRADE is stopping... -- 17:00:18.398 DEBUG [24138]: Closing database connection -- 17:00:18.398 SQL [24138]: pgsql_close() -- 17:00:18.757 INFO [24138]: COREGRADE is starting... -- 17:00:18.758 INFO [24138]: Version from config: 1.0 -- 17:00:18.758 DEBUG [24138]: Connecting to database... -- 17:00:18.758 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:18.758 SQL [24138]: pgsql_db_connect() -- 17:00:18.762 DEBUG [24138]: Database connection successful -- 17:00:18.762 INFO [24138]: _SERVER found -- 17:00:18.762 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 17:00:18.762 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 17:00:18.762 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vggh1nudrgapr66o0dtf9cl4rfskq2e7 -- 17:00:18.762 INFO [24138]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:00:18.762 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:00:18.773 INFO [24138]: COREGRADE is stopping... -- 17:00:18.773 DEBUG [24138]: Closing database connection -- 17:00:18.773 SQL [24138]: pgsql_close() -- 17:00:44.084 INFO [30476]: COREGRADE is starting... -- 17:00:44.084 INFO [30476]: Version from config: 1.0 -- 17:00:44.084 DEBUG [30476]: Connecting to database... -- 17:00:44.084 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:44.084 SQL [30476]: pgsql_db_connect() -- 17:00:44.088 DEBUG [30476]: Database connection successful -- 17:00:44.088 INFO [30476]: _SERVER found -- 17:00:44.088 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 17:00:44.088 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 17:00:44.088 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=7q12mifui4cs42ev9jll0aq9mmgg090o -- 17:00:44.088 INFO [30476]: QUERY_STRING = /member -- 17:00:44.088 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:00:44.123 INFO [30476]: COREGRADE is stopping... -- 17:00:44.123 DEBUG [30476]: Closing database connection -- 17:00:44.123 SQL [30476]: pgsql_close() -- 17:00:44.300 INFO [30476]: COREGRADE is starting... -- 17:00:44.300 INFO [30476]: Version from config: 1.0 -- 17:00:44.300 DEBUG [30476]: Connecting to database... -- 17:00:44.300 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:44.300 SQL [30476]: pgsql_db_connect() -- 17:00:44.304 DEBUG [30476]: Database connection successful -- 17:00:44.304 INFO [30476]: _SERVER found -- 17:00:44.304 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 17:00:44.304 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 17:00:44.304 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=7q12mifui4cs42ev9jll0aq9mmgg090o -- 17:00:44.304 INFO [30476]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:00:44.304 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:00:44.315 INFO [30476]: COREGRADE is stopping... -- 17:00:44.315 DEBUG [30476]: Closing database connection -- 17:00:44.315 SQL [30476]: pgsql_close() -- 17:00:46.512 INFO [30476]: COREGRADE is starting... -- 17:00:46.512 INFO [30476]: Version from config: 1.0 -- 17:00:46.512 DEBUG [30476]: Connecting to database... -- 17:00:46.512 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:46.512 SQL [30476]: pgsql_db_connect() -- 17:00:46.516 DEBUG [30476]: Database connection successful -- 17:00:46.516 INFO [30476]: _SERVER found -- 17:00:46.516 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 17:00:46.516 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 17:00:46.516 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=7q12mifui4cs42ev9jll0aq9mmgg090o -- 17:00:46.516 INFO [30476]: QUERY_STRING = /member/page -- 17:00:46.516 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:00:46.548 INFO [30476]: COREGRADE is stopping... -- 17:00:46.548 DEBUG [30476]: Closing database connection -- 17:00:46.548 SQL [30476]: pgsql_close() -- 17:00:46.824 INFO [30476]: COREGRADE is starting... -- 17:00:46.825 INFO [30476]: Version from config: 1.0 -- 17:00:46.825 DEBUG [30476]: Connecting to database... -- 17:00:46.825 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:46.825 SQL [30476]: pgsql_db_connect() -- 17:00:46.829 DEBUG [30476]: Database connection successful -- 17:00:46.829 INFO [30476]: _SERVER found -- 17:00:46.829 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 17:00:46.829 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 17:00:46.829 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=7q12mifui4cs42ev9jll0aq9mmgg090o -- 17:00:46.829 INFO [30476]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:00:46.829 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:00:46.840 INFO [30476]: COREGRADE is stopping... -- 17:00:46.840 DEBUG [30476]: Closing database connection -- 17:00:46.840 SQL [30476]: pgsql_close() -- 17:01:12.968 INFO [24847]: COREGRADE is starting... -- 17:01:12.968 INFO [24847]: Version from config: 1.0 -- 17:01:12.968 DEBUG [24847]: Connecting to database... -- 17:01:12.968 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:01:12.968 SQL [24847]: pgsql_db_connect() -- 17:01:12.972 DEBUG [24847]: Database connection successful -- 17:01:12.972 INFO [24847]: _SERVER found -- 17:01:12.972 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 17:01:12.972 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 17:01:12.972 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=7q12mifui4cs42ev9jll0aq9mmgg090o -- 17:01:12.972 INFO [24847]: QUERY_STRING = /member/page -- 17:01:12.972 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:01:13.004 INFO [24847]: COREGRADE is stopping... -- 17:01:13.004 DEBUG [24847]: Closing database connection -- 17:01:13.004 SQL [24847]: pgsql_close() -- 17:01:13.143 INFO [24847]: COREGRADE is starting... -- 17:01:13.143 INFO [24847]: Version from config: 1.0 -- 17:01:13.143 DEBUG [24847]: Connecting to database... -- 17:01:13.143 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:01:13.143 SQL [24847]: pgsql_db_connect() -- 17:01:13.147 DEBUG [24847]: Database connection successful -- 17:01:13.147 INFO [24847]: _SERVER found -- 17:01:13.147 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 17:01:13.147 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 17:01:13.147 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=7q12mifui4cs42ev9jll0aq9mmgg090o -- 17:01:13.147 INFO [24847]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:01:13.147 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:01:13.158 INFO [24847]: COREGRADE is stopping... -- 17:01:13.158 DEBUG [24847]: Closing database connection -- 17:01:13.158 SQL [24847]: pgsql_close() -- 17:02:04.354 INFO [30474]: COREGRADE is starting... -- 17:02:04.354 INFO [30474]: Version from config: 1.0 -- 17:02:04.354 DEBUG [30474]: Connecting to database... -- 17:02:04.354 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:02:04.354 SQL [30474]: pgsql_db_connect() -- 17:02:04.358 DEBUG [30474]: Database connection successful -- 17:02:04.358 INFO [30474]: _SERVER found -- 17:02:04.358 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:02:04.358 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:02:04.358 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vggh1nudrgapr66o0dtf9cl4rfskq2e7 -- 17:02:04.358 INFO [30474]: QUERY_STRING = /member/page -- 17:02:04.358 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:02:04.391 INFO [30474]: COREGRADE is stopping... -- 17:02:04.391 DEBUG [30474]: Closing database connection -- 17:02:04.391 SQL [30474]: pgsql_close() -- 17:02:04.736 INFO [30474]: COREGRADE is starting... -- 17:02:04.736 INFO [30474]: Version from config: 1.0 -- 17:02:04.736 DEBUG [30474]: Connecting to database... -- 17:02:04.736 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:02:04.736 SQL [30474]: pgsql_db_connect() -- 17:02:04.740 DEBUG [30474]: Database connection successful -- 17:02:04.740 INFO [30474]: _SERVER found -- 17:02:04.740 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:02:04.740 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:02:04.740 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vggh1nudrgapr66o0dtf9cl4rfskq2e7 -- 17:02:04.740 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:02:04.740 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:02:04.751 INFO [30474]: COREGRADE is stopping... -- 17:02:04.751 DEBUG [30474]: Closing database connection -- 17:02:04.751 SQL [30474]: pgsql_close() -- 17:02:20.801 INFO [24184]: COREGRADE is starting... -- 17:02:20.801 INFO [24184]: Version from config: 1.0 -- 17:02:20.801 DEBUG [24184]: Connecting to database... -- 17:02:20.801 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:02:20.801 SQL [24184]: pgsql_db_connect() -- 17:02:20.806 DEBUG [24184]: Database connection successful -- 17:02:20.806 INFO [24184]: _SERVER found -- 17:02:20.806 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 17:02:20.806 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 17:02:20.806 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vggh1nudrgapr66o0dtf9cl4rfskq2e7 -- 17:02:20.806 INFO [24184]: QUERY_STRING = /member/page -- 17:02:20.806 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:02:20.840 INFO [24184]: COREGRADE is stopping... -- 17:02:20.840 DEBUG [24184]: Closing database connection -- 17:02:20.840 SQL [24184]: pgsql_close() -- 17:02:21.178 INFO [24184]: COREGRADE is starting... -- 17:02:21.179 INFO [24184]: Version from config: 1.0 -- 17:02:21.179 DEBUG [24184]: Connecting to database... -- 17:02:21.179 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:02:21.179 SQL [24184]: pgsql_db_connect() -- 17:02:21.183 DEBUG [24184]: Database connection successful -- 17:02:21.183 INFO [24184]: _SERVER found -- 17:02:21.183 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 17:02:21.183 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 17:02:21.183 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vggh1nudrgapr66o0dtf9cl4rfskq2e7 -- 17:02:21.183 INFO [24184]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:02:21.183 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:02:21.194 INFO [24184]: COREGRADE is stopping... -- 17:02:21.194 DEBUG [24184]: Closing database connection -- 17:02:21.194 SQL [24184]: pgsql_close() -- 17:02:22.585 INFO [24139]: COREGRADE is starting... -- 17:02:22.585 INFO [24139]: Version from config: 1.0 -- 17:02:22.585 DEBUG [24139]: Connecting to database... -- 17:02:22.585 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:02:22.585 SQL [24139]: pgsql_db_connect() -- 17:02:22.589 DEBUG [24139]: Database connection successful -- 17:02:22.589 INFO [24139]: _SERVER found -- 17:02:22.589 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 17:02:22.589 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 17:02:22.589 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=7q12mifui4cs42ev9jll0aq9mmgg090o -- 17:02:22.589 INFO [24139]: QUERY_STRING = /member/page -- 17:02:22.589 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:02:22.624 INFO [24139]: COREGRADE is stopping... -- 17:02:22.624 DEBUG [24139]: Closing database connection -- 17:02:22.624 SQL [24139]: pgsql_close() -- 17:02:22.775 INFO [24139]: COREGRADE is starting... -- 17:02:22.775 INFO [24139]: Version from config: 1.0 -- 17:02:22.775 DEBUG [24139]: Connecting to database... -- 17:02:22.775 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:02:22.775 SQL [24139]: pgsql_db_connect() -- 17:02:22.779 DEBUG [24139]: Database connection successful -- 17:02:22.779 INFO [24139]: _SERVER found -- 17:02:22.779 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 17:02:22.779 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 17:02:22.779 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=7q12mifui4cs42ev9jll0aq9mmgg090o -- 17:02:22.779 INFO [24139]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:02:22.779 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:02:22.791 INFO [24139]: COREGRADE is stopping... -- 17:02:22.791 DEBUG [24139]: Closing database connection -- 17:02:22.791 SQL [24139]: pgsql_close() -- 17:02:40.488 INFO [24137]: COREGRADE is starting... -- 17:02:40.488 INFO [24137]: Version from config: 1.0 -- 17:02:40.488 DEBUG [24137]: Connecting to database... -- 17:02:40.488 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:02:40.488 SQL [24137]: pgsql_db_connect() -- 17:02:40.492 DEBUG [24137]: Database connection successful -- 17:02:40.492 INFO [24137]: _SERVER found -- 17:02:40.492 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 17:02:40.492 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 17:02:40.492 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vggh1nudrgapr66o0dtf9cl4rfskq2e7 -- 17:02:40.492 INFO [24137]: QUERY_STRING = /member -- 17:02:40.492 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:02:40.527 INFO [24137]: COREGRADE is stopping... -- 17:02:40.527 DEBUG [24137]: Closing database connection -- 17:02:40.527 SQL [24137]: pgsql_close() -- 17:02:40.910 INFO [24137]: COREGRADE is starting... -- 17:02:40.910 INFO [24137]: Version from config: 1.0 -- 17:02:40.910 DEBUG [24137]: Connecting to database... -- 17:02:40.910 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:02:40.910 SQL [24137]: pgsql_db_connect() -- 17:02:40.914 DEBUG [24137]: Database connection successful -- 17:02:40.914 INFO [24137]: _SERVER found -- 17:02:40.914 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 17:02:40.914 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 17:02:40.914 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vggh1nudrgapr66o0dtf9cl4rfskq2e7 -- 17:02:40.914 INFO [24137]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:02:40.914 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:02:40.925 INFO [24137]: COREGRADE is stopping... -- 17:02:40.925 DEBUG [24137]: Closing database connection -- 17:02:40.925 SQL [24137]: pgsql_close() -- 17:02:41.231 INFO [24137]: COREGRADE is starting... -- 17:02:41.232 INFO [24137]: Version from config: 1.0 -- 17:02:41.232 DEBUG [24137]: Connecting to database... -- 17:02:41.232 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:02:41.232 SQL [24137]: pgsql_db_connect() -- 17:02:41.236 DEBUG [24137]: Database connection successful -- 17:02:41.236 INFO [24137]: _SERVER found -- 17:02:41.236 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 17:02:41.236 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 17:02:41.236 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vggh1nudrgapr66o0dtf9cl4rfskq2e7 -- 17:02:41.236 INFO [24137]: QUERY_STRING = /member -- 17:02:41.236 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:02:41.270 INFO [24137]: COREGRADE is stopping... -- 17:02:41.270 DEBUG [24137]: Closing database connection -- 17:02:41.270 SQL [24137]: pgsql_close() -- 17:02:41.482 INFO [24137]: COREGRADE is starting... -- 17:02:41.482 INFO [24137]: Version from config: 1.0 -- 17:02:41.482 DEBUG [24137]: Connecting to database... -- 17:02:41.482 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:02:41.482 SQL [24137]: pgsql_db_connect() -- 17:02:41.486 DEBUG [24137]: Database connection successful -- 17:02:41.486 INFO [24137]: _SERVER found -- 17:02:41.486 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 17:02:41.486 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 17:02:41.486 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vggh1nudrgapr66o0dtf9cl4rfskq2e7 -- 17:02:41.486 INFO [24137]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:02:41.486 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:02:41.497 INFO [24137]: COREGRADE is stopping... -- 17:02:41.497 DEBUG [24137]: Closing database connection -- 17:02:41.497 SQL [24137]: pgsql_close() -- 17:03:17.622 INFO [30492]: COREGRADE is starting... -- 17:03:17.622 INFO [30492]: Version from config: 1.0 -- 17:03:17.622 DEBUG [30492]: Connecting to database... -- 17:03:17.623 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:17.623 SQL [30492]: pgsql_db_connect() -- 17:03:17.626 DEBUG [30492]: Database connection successful -- 17:03:17.627 INFO [30492]: _SERVER found -- 17:03:17.627 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 17:03:17.627 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 17:03:17.627 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=7q12mifui4cs42ev9jll0aq9mmgg090o -- 17:03:17.627 INFO [30492]: QUERY_STRING = /member/page -- 17:03:17.627 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:03:17.659 INFO [30492]: COREGRADE is stopping... -- 17:03:17.659 DEBUG [30492]: Closing database connection -- 17:03:17.659 SQL [30492]: pgsql_close() -- 17:03:17.815 INFO [30492]: COREGRADE is starting... -- 17:03:17.815 INFO [30492]: Version from config: 1.0 -- 17:03:17.815 DEBUG [30492]: Connecting to database... -- 17:03:17.815 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:17.815 SQL [30492]: pgsql_db_connect() -- 17:03:17.819 DEBUG [30492]: Database connection successful -- 17:03:17.819 INFO [30492]: _SERVER found -- 17:03:17.819 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 17:03:17.819 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 17:03:17.819 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=7q12mifui4cs42ev9jll0aq9mmgg090o -- 17:03:17.819 INFO [30492]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:03:17.819 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:03:17.830 INFO [30492]: COREGRADE is stopping... -- 17:03:17.830 DEBUG [30492]: Closing database connection -- 17:03:17.830 SQL [30492]: pgsql_close() -- 17:03:26.911 INFO [24138]: COREGRADE is starting... -- 17:03:26.912 INFO [24138]: Version from config: 1.0 -- 17:03:26.912 DEBUG [24138]: Connecting to database... -- 17:03:26.912 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:26.912 SQL [24138]: pgsql_db_connect() -- 17:03:26.916 DEBUG [24138]: Database connection successful -- 17:03:26.916 INFO [24138]: _SERVER found -- 17:03:26.916 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 17:03:26.916 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 17:03:26.916 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vggh1nudrgapr66o0dtf9cl4rfskq2e7 -- 17:03:26.916 INFO [24138]: QUERY_STRING = /member -- 17:03:26.916 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:03:26.952 INFO [24138]: COREGRADE is stopping... -- 17:03:26.952 DEBUG [24138]: Closing database connection -- 17:03:26.952 SQL [24138]: pgsql_close() -- 17:03:27.234 INFO [24138]: COREGRADE is starting... -- 17:03:27.234 INFO [24138]: Version from config: 1.0 -- 17:03:27.234 DEBUG [24138]: Connecting to database... -- 17:03:27.234 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:27.234 SQL [24138]: pgsql_db_connect() -- 17:03:27.238 DEBUG [24138]: Database connection successful -- 17:03:27.238 INFO [24138]: _SERVER found -- 17:03:27.238 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 17:03:27.238 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 17:03:27.238 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2hc4khis3lkk9m9tufuplgu66dccosg8 -- 17:03:27.238 INFO [24138]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:03:27.238 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:03:27.249 INFO [24138]: COREGRADE is stopping... -- 17:03:27.250 DEBUG [24138]: Closing database connection -- 17:03:27.250 SQL [24138]: pgsql_close() -- 17:03:27.255 INFO [30476]: COREGRADE is starting... -- 17:03:27.255 INFO [30476]: Version from config: 1.0 -- 17:03:27.255 DEBUG [30476]: Connecting to database... -- 17:03:27.255 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:27.255 SQL [30476]: pgsql_db_connect() -- 17:03:27.259 DEBUG [30476]: Database connection successful -- 17:03:27.259 INFO [30476]: _SERVER found -- 17:03:27.259 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 17:03:27.259 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 17:03:27.259 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2hc4khis3lkk9m9tufuplgu66dccosg8 -- 17:03:27.259 INFO [30476]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:03:27.259 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:03:27.270 INFO [30476]: COREGRADE is stopping... -- 17:03:27.270 DEBUG [30476]: Closing database connection -- 17:03:27.270 SQL [30476]: pgsql_close() -- 17:03:28.414 INFO [30476]: COREGRADE is starting... -- 17:03:28.414 INFO [30476]: Version from config: 1.0 -- 17:03:28.414 DEBUG [30476]: Connecting to database... -- 17:03:28.414 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:28.414 SQL [30476]: pgsql_db_connect() -- 17:03:28.418 DEBUG [30476]: Database connection successful -- 17:03:28.418 INFO [30476]: _SERVER found -- 17:03:28.418 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 17:03:28.418 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 17:03:28.418 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2hc4khis3lkk9m9tufuplgu66dccosg8 -- 17:03:28.418 INFO [30476]: QUERY_STRING = /member/page -- 17:03:28.418 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:03:28.450 INFO [30476]: COREGRADE is stopping... -- 17:03:28.450 DEBUG [30476]: Closing database connection -- 17:03:28.450 SQL [30476]: pgsql_close() -- 17:03:28.633 INFO [30476]: COREGRADE is starting... -- 17:03:28.634 INFO [30476]: Version from config: 1.0 -- 17:03:28.634 DEBUG [30476]: Connecting to database... -- 17:03:28.634 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:28.634 SQL [30476]: pgsql_db_connect() -- 17:03:28.644 INFO [24138]: COREGRADE is starting... -- 17:03:28.644 INFO [24138]: Version from config: 1.0 -- 17:03:28.644 DEBUG [24138]: Connecting to database... -- 17:03:28.644 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:28.644 SQL [24138]: pgsql_db_connect() -- 17:03:28.638 DEBUG [30476]: Database connection successful -- 17:03:28.638 INFO [30476]: _SERVER found -- 17:03:28.638 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 17:03:28.638 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 17:03:28.638 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2hc4khis3lkk9m9tufuplgu66dccosg8 -- 17:03:28.638 INFO [30476]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:03:28.638 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:03:28.649 INFO [30476]: COREGRADE is stopping... -- 17:03:28.649 DEBUG [30476]: Closing database connection -- 17:03:28.649 SQL [30476]: pgsql_close() -- 17:03:28.648 DEBUG [24138]: Database connection successful -- 17:03:28.648 INFO [24138]: _SERVER found -- 17:03:28.648 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 17:03:28.648 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 17:03:28.648 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2hc4khis3lkk9m9tufuplgu66dccosg8 -- 17:03:28.648 INFO [24138]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:03:28.648 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:03:28.659 INFO [24138]: COREGRADE is stopping... -- 17:03:28.659 DEBUG [24138]: Closing database connection -- 17:03:28.659 SQL [24138]: pgsql_close() -- 17:03:54.262 INFO [24847]: COREGRADE is starting... -- 17:03:54.262 INFO [24847]: Version from config: 1.0 -- 17:03:54.262 DEBUG [24847]: Connecting to database... -- 17:03:54.262 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:54.263 SQL [24847]: pgsql_db_connect() -- 17:03:54.267 DEBUG [24847]: Database connection successful -- 17:03:54.267 INFO [24847]: _SERVER found -- 17:03:54.267 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 17:03:54.267 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 17:03:54.267 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=7q12mifui4cs42ev9jll0aq9mmgg090o -- 17:03:54.267 INFO [24847]: QUERY_STRING = /member/page -- 17:03:54.267 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:03:54.299 INFO [24847]: COREGRADE is stopping... -- 17:03:54.299 DEBUG [24847]: Closing database connection -- 17:03:54.299 SQL [24847]: pgsql_close() -- 17:03:54.436 INFO [24847]: COREGRADE is starting... -- 17:03:54.437 INFO [24847]: Version from config: 1.0 -- 17:03:54.437 DEBUG [24847]: Connecting to database... -- 17:03:54.437 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:54.437 SQL [24847]: pgsql_db_connect() -- 17:03:54.441 DEBUG [24847]: Database connection successful -- 17:03:54.441 INFO [24847]: _SERVER found -- 17:03:54.441 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 17:03:54.441 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 17:03:54.441 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=7q12mifui4cs42ev9jll0aq9mmgg090o -- 17:03:54.441 INFO [24847]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:03:54.441 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:03:54.452 INFO [24847]: COREGRADE is stopping... -- 17:03:54.452 DEBUG [24847]: Closing database connection -- 17:03:54.452 SQL [24847]: pgsql_close() -- 17:07:47.330 INFO [30474]: COREGRADE is starting... -- 17:07:47.330 INFO [30474]: Version from config: 1.0 -- 17:07:47.330 DEBUG [30474]: Connecting to database... -- 17:07:47.330 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:47.331 SQL [30474]: pgsql_db_connect() -- 17:07:47.366 INFO [30474]: COREGRADE is starting... -- 17:07:47.367 INFO [30474]: Version from config: 1.0 -- 17:07:47.367 DEBUG [30474]: Connecting to database... -- 17:07:47.367 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:47.367 SQL [30474]: pgsql_db_connect() -- 17:07:47.371 DEBUG [30474]: Database connection successful -- 17:07:47.371 INFO [30474]: _SERVER found -- 17:07:47.371 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:07:47.371 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:07:47.371 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=7q12mifui4cs42ev9jll0aq9mmgg090o -- 17:07:47.371 INFO [30474]: QUERY_STRING = -- 17:07:47.371 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:07:47.371 INFO [30474]: SystemStatus()09-09-********~************ -- 17:07:47.371 INFO [30474]: long coregrade_api_main(CVars in, CVars &out) -- 17:07:47.371 INFO [30474]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 17:07:47.371 INFO [30474]: account calls -- 17:07:47.371 INFO [30474]: account_calls() -- 17:07:47.371 INFO [30474]: LoginCoreGradeAccount() -- 17:07:47.371 FLOG_MAX [30474]: REQ_STRING(username) -- 17:07:47.371 FLOG_MAX [30474]: REQ_STRING(password) -- 17:07:47.371 FLOG_MAX [30474]: REQ_STRING(sessionid) -- 17:07:47.371 FLOG_MAX [30474]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:07:47.371 SQL [30474]: pgsql_query() -- 17:07:47.371 SQL [30474]: About to run query: -- 17:07:47.371 SQL [30474]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 17:07:47.374 SQL [30474]: Found rows: 1 -- 17:07:47.374 FLOG_MAX [30474]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 17:07:47.374 INFO [30474]: long SessionCheck(long uid, const char *sessionid, int create ) -- 17:07:47.374 SQL [30474]: pgsql_exec() -- 17:07:47.375 SQL [30474]: About to run query: -- 17:07:47.375 SQL [30474]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 17:07:47.375 SQL [30474]: PQcmdTuples: 0 -- 17:07:47.375 SQL [30474]: Affected rows: 0 -- 17:07:47.375 SQL [30474]: pgsql_exec() -- 17:07:47.375 SQL [30474]: About to run query: -- 17:07:47.375 SQL [30474]: DELETE FROM members_session WHERE member_id=5 -- 17:07:47.376 SQL [30474]: PQcmdTuples: 1 -- 17:07:47.376 SQL [30474]: Affected rows: 1 -- 17:07:47.376 SQL [30474]: pgsql_query() -- 17:07:47.376 SQL [30474]: About to run query: -- 17:07:47.376 SQL [30474]: SELECT * FROM members_session WHERE member_id=5 AND session<>'1217F8EB869B1A276D4C60345DE37AC6' -- 17:07:47.377 SQL [30474]: Found rows: 0 -- 17:07:47.377 SQL [30474]: Found rows: 0 -- 17:07:47.377 FLOG_MAX [30474]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:07:47.377 SQL [30474]: pgsql_query() -- 17:07:47.377 SQL [30474]: About to run query: -- 17:07:47.377 SQL [30474]: SELECT * FROM members_session WHERE member_id=5 AND session='1217F8EB869B1A276D4C60345DE37AC6' -- 17:07:47.377 SQL [30474]: Found rows: 0 -- 17:07:47.377 SQL [30474]: Found rows: 0 -- 17:07:47.378 FLOG_MAX [30474]: insert_db_record() -- 17:07:47.378 SQL [30474]: pgsql_exec() -- 17:07:47.378 SQL [30474]: About to run query: -- 17:07:47.378 SQL [30474]: INSERT INTO members_session (member_id,session) VALUES ('5','1217F8EB869B1A276D4C60345DE37AC6') -- 17:07:47.379 SQL [30474]: PQcmdTuples: 1 -- 17:07:47.379 SQL [30474]: Affected rows: 1 -- 17:07:47.379 FLOG_MAX [30474]: SELECT currval('members_session_id_seq') -- 17:07:47.379 SQL [30474]: pgsql_query() -- 17:07:47.379 SQL [30474]: About to run query: -- 17:07:47.379 SQL [30474]: SELECT currval('members_session_id_seq') -- 17:07:47.379 SQL [30474]: Found rows: 1 -- 17:07:47.379 INFO [30474]: CreateDefaultPage() -- 17:07:47.379 FLOG_MAX [30474]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:07:47.379 SQL [30474]: pgsql_query() -- 17:07:47.380 SQL [30474]: About to run query: -- 17:07:47.380 SQL [30474]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 17:07:47.380 SQL [30474]: Found rows: 1 -- 17:07:47.380 FLOG_MAX [30474]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 17:07:47.380 SQL [30474]: pgsql_query() -- 17:07:47.380 SQL [30474]: About to run query: -- 17:07:47.380 SQL [30474]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 17:07:47.381 SQL [30474]: Found rows: 1 -- 17:07:47.381 INFO [30474]: /CreateDefaultPage() -- 17:07:47.381 INFO [30474]: /LoginCoreGradeAccount() -- 17:07:47.381 INFO [30474]: RET: added=2020-02-05 06:47:23.982154 -- 17:07:47.381 INFO [30474]: RET: email=ameye+11@chiefsoft.com -- 17:07:47.381 INFO [30474]: RET: firstname=Olu -- 17:07:47.381 INFO [30474]: RET: id=5 -- 17:07:47.381 INFO [30474]: RET: last_login= -- 17:07:47.381 INFO [30474]: RET: lastname=Amey -- 17:07:47.381 INFO [30474]: RET: loc=192.168.1.13 -- 17:07:47.381 INFO [30474]: RET: member_id=5 -- 17:07:47.381 INFO [30474]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 17:07:47.381 INFO [30474]: RET: phone= -- 17:07:47.381 INFO [30474]: RET: pid= -- 17:07:47.381 INFO [30474]: RET: result=YES I GET TO BACK END -- 17:07:47.381 INFO [30474]: RET: sessionid=1217F8EB869B1A276D4C60345DE37AC6 -- 17:07:47.381 INFO [30474]: RET: status=1 -- 17:07:47.381 INFO [30474]: RET: stauts=OK -- 17:07:47.381 INFO [30474]: RET: username=ameye+11@chiefsoft.com -- 17:07:47.381 INFO [30474]: RET: verified= -- 17:07:47.383 INFO [30474]: COREGRADE is stopping... -- 17:07:47.383 DEBUG [30474]: Closing database connection -- 17:07:47.383 SQL [30474]: pgsql_close() -- 17:07:47.335 DEBUG [30474]: Database connection successful -- 17:07:47.335 INFO [30474]: _SERVER found -- 17:07:47.335 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:07:47.335 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:07:47.335 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=7q12mifui4cs42ev9jll0aq9mmgg090o -- 17:07:47.335 INFO [30474]: QUERY_STRING = /auth -- 17:07:47.335 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:07:47.384 INFO [30474]: COREGRADE is stopping... -- 17:07:47.384 DEBUG [30474]: Closing database connection -- 17:07:47.384 SQL [30474]: pgsql_close() -- 17:07:47.401 INFO [30474]: COREGRADE is starting... -- 17:07:47.402 INFO [30474]: Version from config: 1.0 -- 17:07:47.402 DEBUG [30474]: Connecting to database... -- 17:07:47.402 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:47.402 SQL [30474]: pgsql_db_connect() -- 17:07:47.406 DEBUG [30474]: Database connection successful -- 17:07:47.406 INFO [30474]: _SERVER found -- 17:07:47.406 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:07:47.406 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:07:47.406 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kqo6se8sjgmhp1rg9ithnq6dcoe34289 -- 17:07:47.406 INFO [30474]: QUERY_STRING = /member/index -- 17:07:47.406 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:07:47.441 INFO [30474]: COREGRADE is stopping... -- 17:07:47.441 DEBUG [30474]: Closing database connection -- 17:07:47.441 SQL [30474]: pgsql_close() -- 17:07:47.701 INFO [30474]: COREGRADE is starting... -- 17:07:47.702 INFO [30474]: Version from config: 1.0 -- 17:07:47.702 DEBUG [30474]: Connecting to database... -- 17:07:47.702 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:47.702 SQL [30474]: pgsql_db_connect() -- 17:07:47.706 DEBUG [30474]: Database connection successful -- 17:07:47.706 INFO [30474]: _SERVER found -- 17:07:47.706 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:07:47.706 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:07:47.706 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kqo6se8sjgmhp1rg9ithnq6dcoe34289 -- 17:07:47.706 INFO [30474]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:07:47.706 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:07:47.717 INFO [30474]: COREGRADE is stopping... -- 17:07:47.717 DEBUG [30474]: Closing database connection -- 17:07:47.717 SQL [30474]: pgsql_close() -- 17:07:47.734 INFO [30474]: COREGRADE is starting... -- 17:07:47.735 INFO [30474]: Version from config: 1.0 -- 17:07:47.735 DEBUG [30474]: Connecting to database... -- 17:07:47.735 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:47.735 SQL [30474]: pgsql_db_connect() -- 17:07:47.738 DEBUG [30474]: Database connection successful -- 17:07:47.738 INFO [30474]: _SERVER found -- 17:07:47.738 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:07:47.738 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:07:47.738 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kqo6se8sjgmhp1rg9ithnq6dcoe34289 -- 17:07:47.738 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:07:47.738 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:07:47.749 INFO [30474]: COREGRADE is stopping... -- 17:07:47.749 DEBUG [30474]: Closing database connection -- 17:07:47.749 SQL [30474]: pgsql_close() -- 17:07:49.022 INFO [30474]: COREGRADE is starting... -- 17:07:49.022 INFO [30474]: Version from config: 1.0 -- 17:07:49.022 DEBUG [30474]: Connecting to database... -- 17:07:49.022 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:49.022 SQL [30474]: pgsql_db_connect() -- 17:07:49.026 DEBUG [30474]: Database connection successful -- 17:07:49.026 INFO [30474]: _SERVER found -- 17:07:49.026 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:07:49.026 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:07:49.026 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kqo6se8sjgmhp1rg9ithnq6dcoe34289 -- 17:07:49.026 INFO [30474]: QUERY_STRING = /member/page -- 17:07:49.026 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:07:49.059 INFO [30474]: COREGRADE is stopping... -- 17:07:49.059 DEBUG [30474]: Closing database connection -- 17:07:49.059 SQL [30474]: pgsql_close() -- 17:07:49.276 INFO [30474]: COREGRADE is starting... -- 17:07:49.277 INFO [30474]: Version from config: 1.0 -- 17:07:49.277 DEBUG [30474]: Connecting to database... -- 17:07:49.277 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:49.277 SQL [30474]: pgsql_db_connect() -- 17:07:49.281 DEBUG [30474]: Database connection successful -- 17:07:49.281 INFO [30474]: _SERVER found -- 17:07:49.281 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:07:49.281 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:07:49.281 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kqo6se8sjgmhp1rg9ithnq6dcoe34289 -- 17:07:49.281 INFO [30474]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:07:49.281 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:07:49.292 INFO [30474]: COREGRADE is stopping... -- 17:07:49.292 DEBUG [30474]: Closing database connection -- 17:07:49.292 SQL [30474]: pgsql_close() -- 17:07:49.349 INFO [30474]: COREGRADE is starting... -- 17:07:49.350 INFO [30474]: Version from config: 1.0 -- 17:07:49.350 DEBUG [30474]: Connecting to database... -- 17:07:49.350 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:49.350 SQL [30474]: pgsql_db_connect() -- 17:07:49.354 DEBUG [30474]: Database connection successful -- 17:07:49.354 INFO [30474]: _SERVER found -- 17:07:49.354 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:07:49.354 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:07:49.354 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kqo6se8sjgmhp1rg9ithnq6dcoe34289 -- 17:07:49.354 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:07:49.354 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:07:49.365 INFO [30474]: COREGRADE is stopping... -- 17:07:49.365 DEBUG [30474]: Closing database connection -- 17:07:49.365 SQL [30474]: pgsql_close() -- 17:07:49.440 INFO [30474]: COREGRADE is starting... -- 17:07:49.440 INFO [30474]: Version from config: 1.0 -- 17:07:49.440 DEBUG [30474]: Connecting to database... -- 17:07:49.440 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:49.440 SQL [30474]: pgsql_db_connect() -- 17:07:49.444 DEBUG [30474]: Database connection successful -- 17:07:49.444 INFO [30474]: _SERVER found -- 17:07:49.444 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:07:49.444 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:07:49.444 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2hc4khis3lkk9m9tufuplgu66dccosg8 -- 17:07:49.444 INFO [30474]: QUERY_STRING = /member/page -- 17:07:49.444 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:07:49.476 INFO [30474]: COREGRADE is stopping... -- 17:07:49.476 DEBUG [30474]: Closing database connection -- 17:07:49.476 SQL [30474]: pgsql_close() -- 17:07:49.872 INFO [30474]: COREGRADE is starting... -- 17:07:49.873 INFO [30474]: Version from config: 1.0 -- 17:07:49.873 DEBUG [30474]: Connecting to database... -- 17:07:49.873 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:49.873 SQL [30474]: pgsql_db_connect() -- 17:07:49.877 DEBUG [30474]: Database connection successful -- 17:07:49.877 INFO [30474]: _SERVER found -- 17:07:49.877 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:07:49.877 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:07:49.877 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2hc4khis3lkk9m9tufuplgu66dccosg8 -- 17:07:49.877 INFO [30474]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:07:49.877 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:07:49.888 INFO [30474]: COREGRADE is stopping... -- 17:07:49.888 DEBUG [30474]: Closing database connection -- 17:07:49.888 SQL [30474]: pgsql_close() -- 17:07:49.895 INFO [30475]: COREGRADE is starting... -- 17:07:49.896 INFO [30475]: Version from config: 1.0 -- 17:07:49.896 DEBUG [30475]: Connecting to database... -- 17:07:49.896 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:49.896 SQL [30475]: pgsql_db_connect() -- 17:07:49.899 DEBUG [30475]: Database connection successful -- 17:07:49.900 INFO [30475]: _SERVER found -- 17:07:49.900 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 17:07:49.900 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 17:07:49.900 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2hc4khis3lkk9m9tufuplgu66dccosg8 -- 17:07:49.900 INFO [30475]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:07:49.900 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:07:49.911 INFO [30475]: COREGRADE is stopping... -- 17:07:49.911 DEBUG [30475]: Closing database connection -- 17:07:49.911 SQL [30475]: pgsql_close() -- 17:09:57.534 INFO [24136]: COREGRADE is starting... -- 17:09:57.534 INFO [24136]: Version from config: 1.0 -- 17:09:57.534 DEBUG [24136]: Connecting to database... -- 17:09:57.534 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:09:57.534 SQL [24136]: pgsql_db_connect() -- 17:09:57.538 DEBUG [24136]: Database connection successful -- 17:09:57.538 INFO [24136]: _SERVER found -- 17:09:57.538 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 17:09:57.538 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 17:09:57.538 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2hc4khis3lkk9m9tufuplgu66dccosg8 -- 17:09:57.538 INFO [24136]: QUERY_STRING = /member/page -- 17:09:57.538 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:09:57.573 INFO [24136]: COREGRADE is stopping... -- 17:09:57.573 DEBUG [24136]: Closing database connection -- 17:09:57.573 SQL [24136]: pgsql_close() -- 17:09:58.032 INFO [24136]: COREGRADE is starting... -- 17:09:58.032 INFO [24136]: Version from config: 1.0 -- 17:09:58.032 DEBUG [24136]: Connecting to database... -- 17:09:58.032 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:09:58.032 SQL [24136]: pgsql_db_connect() -- 17:09:58.036 DEBUG [24136]: Database connection successful -- 17:09:58.036 INFO [24136]: _SERVER found -- 17:09:58.036 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 17:09:58.036 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 17:09:58.036 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glmmc87lk3pb12c0jq50ln49nj5k5gkn -- 17:09:58.036 INFO [24136]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:09:58.037 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:09:58.048 INFO [24136]: COREGRADE is stopping... -- 17:09:58.048 DEBUG [24136]: Closing database connection -- 17:09:58.048 SQL [24136]: pgsql_close() -- 17:09:58.063 INFO [24184]: COREGRADE is starting... -- 17:09:58.063 INFO [24184]: Version from config: 1.0 -- 17:09:58.063 DEBUG [24184]: Connecting to database... -- 17:09:58.063 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:09:58.063 SQL [24184]: pgsql_db_connect() -- 17:09:58.067 DEBUG [24184]: Database connection successful -- 17:09:58.067 INFO [24184]: _SERVER found -- 17:09:58.067 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 17:09:58.067 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 17:09:58.067 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glmmc87lk3pb12c0jq50ln49nj5k5gkn -- 17:09:58.067 INFO [24184]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:09:58.067 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:09:58.078 INFO [24184]: COREGRADE is stopping... -- 17:09:58.079 DEBUG [24184]: Closing database connection -- 17:09:58.079 SQL [24184]: pgsql_close() -- 17:10:02.714 INFO [24184]: COREGRADE is starting... -- 17:10:02.715 INFO [24184]: Version from config: 1.0 -- 17:10:02.715 DEBUG [24184]: Connecting to database... -- 17:10:02.715 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:10:02.715 SQL [24184]: pgsql_db_connect() -- 17:10:02.719 DEBUG [24184]: Database connection successful -- 17:10:02.719 INFO [24184]: _SERVER found -- 17:10:02.719 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 17:10:02.719 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 17:10:02.719 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glmmc87lk3pb12c0jq50ln49nj5k5gkn -- 17:10:02.719 INFO [24184]: QUERY_STRING = /member -- 17:10:02.719 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:10:02.756 INFO [24184]: COREGRADE is stopping... -- 17:10:02.756 DEBUG [24184]: Closing database connection -- 17:10:02.756 SQL [24184]: pgsql_close() -- 17:10:03.014 INFO [24184]: COREGRADE is starting... -- 17:10:03.014 INFO [24184]: Version from config: 1.0 -- 17:10:03.014 DEBUG [24184]: Connecting to database... -- 17:10:03.014 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:10:03.014 SQL [24184]: pgsql_db_connect() -- 17:10:03.023 INFO [24136]: COREGRADE is starting... -- 17:10:03.023 INFO [24136]: Version from config: 1.0 -- 17:10:03.023 DEBUG [24136]: Connecting to database... -- 17:10:03.023 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:10:03.023 SQL [24136]: pgsql_db_connect() -- 17:10:03.018 DEBUG [24184]: Database connection successful -- 17:10:03.018 INFO [24184]: _SERVER found -- 17:10:03.018 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 17:10:03.018 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 17:10:03.018 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glmmc87lk3pb12c0jq50ln49nj5k5gkn -- 17:10:03.018 INFO [24184]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:10:03.018 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:10:03.030 INFO [24184]: COREGRADE is stopping... -- 17:10:03.030 DEBUG [24184]: Closing database connection -- 17:10:03.030 SQL [24184]: pgsql_close() -- 17:10:03.027 DEBUG [24136]: Database connection successful -- 17:10:03.027 INFO [24136]: _SERVER found -- 17:10:03.027 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 17:10:03.027 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 17:10:03.027 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glmmc87lk3pb12c0jq50ln49nj5k5gkn -- 17:10:03.027 INFO [24136]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:10:03.027 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:10:03.038 INFO [24136]: COREGRADE is stopping... -- 17:10:03.038 DEBUG [24136]: Closing database connection -- 17:10:03.038 SQL [24136]: pgsql_close() -- 17:10:44.050 INFO [24139]: COREGRADE is starting... -- 17:10:44.051 INFO [24139]: Version from config: 1.0 -- 17:10:44.051 DEBUG [24139]: Connecting to database... -- 17:10:44.051 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:10:44.051 SQL [24139]: pgsql_db_connect() -- 17:10:44.055 DEBUG [24139]: Database connection successful -- 17:10:44.055 INFO [24139]: _SERVER found -- 17:10:44.055 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 17:10:44.055 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 17:10:44.055 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glmmc87lk3pb12c0jq50ln49nj5k5gkn -- 17:10:44.055 INFO [24139]: QUERY_STRING = /member/page -- 17:10:44.055 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:10:44.091 INFO [24139]: COREGRADE is stopping... -- 17:10:44.091 DEBUG [24139]: Closing database connection -- 17:10:44.091 SQL [24139]: pgsql_close() -- 17:10:44.395 INFO [24139]: COREGRADE is starting... -- 17:10:44.396 INFO [24139]: Version from config: 1.0 -- 17:10:44.396 DEBUG [24139]: Connecting to database... -- 17:10:44.396 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:10:44.396 SQL [24139]: pgsql_db_connect() -- 17:10:44.400 DEBUG [24139]: Database connection successful -- 17:10:44.400 INFO [24139]: _SERVER found -- 17:10:44.400 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 17:10:44.400 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 17:10:44.400 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glmmc87lk3pb12c0jq50ln49nj5k5gkn -- 17:10:44.400 INFO [24139]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:10:44.400 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:10:44.412 INFO [24139]: COREGRADE is stopping... -- 17:10:44.412 DEBUG [24139]: Closing database connection -- 17:10:44.412 SQL [24139]: pgsql_close() -- 17:10:44.415 INFO [24137]: COREGRADE is starting... -- 17:10:44.416 INFO [24137]: Version from config: 1.0 -- 17:10:44.416 DEBUG [24137]: Connecting to database... -- 17:10:44.416 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:10:44.416 SQL [24137]: pgsql_db_connect() -- 17:10:44.419 DEBUG [24137]: Database connection successful -- 17:10:44.419 INFO [24137]: _SERVER found -- 17:10:44.419 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 17:10:44.419 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 17:10:44.419 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glmmc87lk3pb12c0jq50ln49nj5k5gkn -- 17:10:44.419 INFO [24137]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:10:44.419 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:10:44.431 INFO [24137]: COREGRADE is stopping... -- 17:10:44.431 DEBUG [24137]: Closing database connection -- 17:10:44.431 SQL [24137]: pgsql_close() -- 17:10:45.995 INFO [24137]: COREGRADE is starting... -- 17:10:45.996 INFO [24137]: Version from config: 1.0 -- 17:10:45.996 DEBUG [24137]: Connecting to database... -- 17:10:45.996 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:10:45.996 SQL [24137]: pgsql_db_connect() -- 17:10:45.000 DEBUG [24137]: Database connection successful -- 17:10:45.000 INFO [24137]: _SERVER found -- 17:10:45.000 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 17:10:45.000 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 17:10:45.000 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glmmc87lk3pb12c0jq50ln49nj5k5gkn -- 17:10:45.000 INFO [24137]: QUERY_STRING = /member -- 17:10:45.000 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:10:46.035 INFO [24137]: COREGRADE is stopping... -- 17:10:46.035 DEBUG [24137]: Closing database connection -- 17:10:46.035 SQL [24137]: pgsql_close() -- 17:10:46.338 INFO [24137]: COREGRADE is starting... -- 17:10:46.338 INFO [24137]: Version from config: 1.0 -- 17:10:46.338 DEBUG [24137]: Connecting to database... -- 17:10:46.338 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:10:46.338 SQL [24137]: pgsql_db_connect() -- 17:10:46.353 INFO [24139]: COREGRADE is starting... -- 17:10:46.353 INFO [24139]: Version from config: 1.0 -- 17:10:46.353 DEBUG [24139]: Connecting to database... -- 17:10:46.353 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:10:46.353 SQL [24139]: pgsql_db_connect() -- 17:10:46.342 DEBUG [24137]: Database connection successful -- 17:10:46.342 INFO [24137]: _SERVER found -- 17:10:46.342 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 17:10:46.342 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 17:10:46.342 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glmmc87lk3pb12c0jq50ln49nj5k5gkn -- 17:10:46.342 INFO [24137]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:10:46.343 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:10:46.354 INFO [24137]: COREGRADE is stopping... -- 17:10:46.354 DEBUG [24137]: Closing database connection -- 17:10:46.354 SQL [24137]: pgsql_close() -- 17:10:46.358 DEBUG [24139]: Database connection successful -- 17:10:46.358 INFO [24139]: _SERVER found -- 17:10:46.358 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 17:10:46.358 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 17:10:46.358 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glmmc87lk3pb12c0jq50ln49nj5k5gkn -- 17:10:46.358 INFO [24139]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:10:46.358 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:10:46.369 INFO [24139]: COREGRADE is stopping... -- 17:10:46.369 DEBUG [24139]: Closing database connection -- 17:10:46.369 SQL [24139]: pgsql_close() -- 17:10:47.394 INFO [24139]: COREGRADE is starting... -- 17:10:47.394 INFO [24139]: Version from config: 1.0 -- 17:10:47.394 DEBUG [24139]: Connecting to database... -- 17:10:47.394 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:10:47.394 SQL [24139]: pgsql_db_connect() -- 17:10:47.398 DEBUG [24139]: Database connection successful -- 17:10:47.398 INFO [24139]: _SERVER found -- 17:10:47.398 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 17:10:47.398 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 17:10:47.398 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glmmc87lk3pb12c0jq50ln49nj5k5gkn -- 17:10:47.398 INFO [24139]: QUERY_STRING = /member/page -- 17:10:47.398 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:10:47.433 INFO [24139]: COREGRADE is stopping... -- 17:10:47.433 DEBUG [24139]: Closing database connection -- 17:10:47.433 SQL [24139]: pgsql_close() -- 17:10:47.783 INFO [24139]: COREGRADE is starting... -- 17:10:47.783 INFO [24139]: Version from config: 1.0 -- 17:10:47.783 DEBUG [24139]: Connecting to database... -- 17:10:47.784 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:10:47.784 SQL [24139]: pgsql_db_connect() -- 17:10:47.794 INFO [24137]: COREGRADE is starting... -- 17:10:47.794 INFO [24137]: Version from config: 1.0 -- 17:10:47.794 DEBUG [24137]: Connecting to database... -- 17:10:47.794 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:10:47.794 SQL [24137]: pgsql_db_connect() -- 17:10:47.788 DEBUG [24139]: Database connection successful -- 17:10:47.788 INFO [24139]: _SERVER found -- 17:10:47.788 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 17:10:47.788 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 17:10:47.788 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glmmc87lk3pb12c0jq50ln49nj5k5gkn -- 17:10:47.788 INFO [24139]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:10:47.788 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:10:47.799 INFO [24139]: COREGRADE is stopping... -- 17:10:47.799 DEBUG [24139]: Closing database connection -- 17:10:47.799 SQL [24139]: pgsql_close() -- 17:10:47.798 DEBUG [24137]: Database connection successful -- 17:10:47.798 INFO [24137]: _SERVER found -- 17:10:47.798 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 17:10:47.798 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 17:10:47.798 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glmmc87lk3pb12c0jq50ln49nj5k5gkn -- 17:10:47.798 INFO [24137]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:10:47.798 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:10:47.809 INFO [24137]: COREGRADE is stopping... -- 17:10:47.809 DEBUG [24137]: Closing database connection -- 17:10:47.810 SQL [24137]: pgsql_close() -- 17:10:49.911 INFO [24137]: COREGRADE is starting... -- 17:10:49.911 INFO [24137]: Version from config: 1.0 -- 17:10:49.911 DEBUG [24137]: Connecting to database... -- 17:10:49.911 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:10:49.911 SQL [24137]: pgsql_db_connect() -- 17:10:49.915 DEBUG [24137]: Database connection successful -- 17:10:49.915 INFO [24137]: _SERVER found -- 17:10:49.915 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 17:10:49.915 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 17:10:49.915 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glmmc87lk3pb12c0jq50ln49nj5k5gkn -- 17:10:49.915 INFO [24137]: QUERY_STRING = /member -- 17:10:49.915 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:10:49.949 INFO [24137]: COREGRADE is stopping... -- 17:10:49.949 DEBUG [24137]: Closing database connection -- 17:10:49.949 SQL [24137]: pgsql_close() -- 17:10:50.214 INFO [24137]: COREGRADE is starting... -- 17:10:50.214 INFO [24137]: Version from config: 1.0 -- 17:10:50.214 DEBUG [24137]: Connecting to database... -- 17:10:50.214 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:10:50.214 SQL [24137]: pgsql_db_connect() -- 17:10:50.219 INFO [24139]: COREGRADE is starting... -- 17:10:50.219 INFO [24139]: Version from config: 1.0 -- 17:10:50.219 DEBUG [24139]: Connecting to database... -- 17:10:50.219 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:10:50.219 SQL [24139]: pgsql_db_connect() -- 17:10:50.218 DEBUG [24137]: Database connection successful -- 17:10:50.218 INFO [24137]: _SERVER found -- 17:10:50.218 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 17:10:50.218 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 17:10:50.218 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glmmc87lk3pb12c0jq50ln49nj5k5gkn -- 17:10:50.218 INFO [24137]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:10:50.218 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:10:50.229 INFO [24137]: COREGRADE is stopping... -- 17:10:50.229 DEBUG [24137]: Closing database connection -- 17:10:50.229 SQL [24137]: pgsql_close() -- 17:10:50.223 DEBUG [24139]: Database connection successful -- 17:10:50.223 INFO [24139]: _SERVER found -- 17:10:50.223 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 17:10:50.223 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 17:10:50.223 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glmmc87lk3pb12c0jq50ln49nj5k5gkn -- 17:10:50.223 INFO [24139]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:10:50.223 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:10:50.235 INFO [24139]: COREGRADE is stopping... -- 17:10:50.235 DEBUG [24139]: Closing database connection -- 17:10:50.235 SQL [24139]: pgsql_close() -- 17:12:14.291 INFO [30492]: COREGRADE is starting... -- 17:12:14.291 INFO [30492]: Version from config: 1.0 -- 17:12:14.291 DEBUG [30492]: Connecting to database... -- 17:12:14.291 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:12:14.291 SQL [30492]: pgsql_db_connect() -- 17:12:14.295 DEBUG [30492]: Database connection successful -- 17:12:14.295 INFO [30492]: _SERVER found -- 17:12:14.295 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 17:12:14.295 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 17:12:14.295 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kqo6se8sjgmhp1rg9ithnq6dcoe34289 -- 17:12:14.295 INFO [30492]: QUERY_STRING = /member/page -- 17:12:14.295 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:12:14.328 INFO [30492]: COREGRADE is stopping... -- 17:12:14.329 DEBUG [30492]: Closing database connection -- 17:12:14.329 SQL [30492]: pgsql_close() -- 17:12:14.483 INFO [30492]: COREGRADE is starting... -- 17:12:14.484 INFO [30492]: Version from config: 1.0 -- 17:12:14.484 DEBUG [30492]: Connecting to database... -- 17:12:14.484 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:12:14.484 SQL [30492]: pgsql_db_connect() -- 17:12:14.488 DEBUG [30492]: Database connection successful -- 17:12:14.488 INFO [30492]: _SERVER found -- 17:12:14.488 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 17:12:14.488 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 17:12:14.488 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kqo6se8sjgmhp1rg9ithnq6dcoe34289 -- 17:12:14.488 INFO [30492]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:12:14.488 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:12:14.499 INFO [30492]: COREGRADE is stopping... -- 17:12:14.499 DEBUG [30492]: Closing database connection -- 17:12:14.499 SQL [30492]: pgsql_close() -- 17:12:14.566 INFO [30492]: COREGRADE is starting... -- 17:12:14.567 INFO [30492]: Version from config: 1.0 -- 17:12:14.567 DEBUG [30492]: Connecting to database... -- 17:12:14.567 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:12:14.567 SQL [30492]: pgsql_db_connect() -- 17:12:14.571 DEBUG [30492]: Database connection successful -- 17:12:14.571 INFO [30492]: _SERVER found -- 17:12:14.571 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 17:12:14.571 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 17:12:14.571 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kqo6se8sjgmhp1rg9ithnq6dcoe34289 -- 17:12:14.571 INFO [30492]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:12:14.571 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:12:14.582 INFO [30492]: COREGRADE is stopping... -- 17:12:14.582 DEBUG [30492]: Closing database connection -- 17:12:14.582 SQL [30492]: pgsql_close() -- 17:14:00.214 INFO [30476]: COREGRADE is starting... -- 17:14:00.214 INFO [30476]: Version from config: 1.0 -- 17:14:00.214 DEBUG [30476]: Connecting to database... -- 17:14:00.214 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:14:00.214 SQL [30476]: pgsql_db_connect() -- 17:14:00.219 DEBUG [30476]: Database connection successful -- 17:14:00.219 INFO [30476]: _SERVER found -- 17:14:00.219 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 17:14:00.219 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 17:14:00.219 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kqo6se8sjgmhp1rg9ithnq6dcoe34289 -- 17:14:00.219 INFO [30476]: QUERY_STRING = /member/page -- 17:14:00.219 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:14:00.252 INFO [30476]: COREGRADE is stopping... -- 17:14:00.252 DEBUG [30476]: Closing database connection -- 17:14:00.252 SQL [30476]: pgsql_close() -- 17:14:00.398 INFO [30476]: COREGRADE is starting... -- 17:14:00.398 INFO [30476]: Version from config: 1.0 -- 17:14:00.398 DEBUG [30476]: Connecting to database... -- 17:14:00.398 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:14:00.398 SQL [30476]: pgsql_db_connect() -- 17:14:00.402 DEBUG [30476]: Database connection successful -- 17:14:00.402 INFO [30476]: _SERVER found -- 17:14:00.402 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 17:14:00.402 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 17:14:00.402 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=6hlnvl1p4inicevmg5ljo4ffhoqps39l -- 17:14:00.402 INFO [30476]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:14:00.402 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:14:00.413 INFO [30476]: COREGRADE is stopping... -- 17:14:00.413 DEBUG [30476]: Closing database connection -- 17:14:00.413 SQL [30476]: pgsql_close() -- 17:14:00.474 INFO [30476]: COREGRADE is starting... -- 17:14:00.475 INFO [30476]: Version from config: 1.0 -- 17:14:00.475 DEBUG [30476]: Connecting to database... -- 17:14:00.475 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:14:00.475 SQL [30476]: pgsql_db_connect() -- 17:14:00.479 DEBUG [30476]: Database connection successful -- 17:14:00.479 INFO [30476]: _SERVER found -- 17:14:00.479 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 17:14:00.479 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 17:14:00.479 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=6hlnvl1p4inicevmg5ljo4ffhoqps39l -- 17:14:00.479 INFO [30476]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:14:00.479 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:14:00.490 INFO [30476]: COREGRADE is stopping... -- 17:14:00.490 DEBUG [30476]: Closing database connection -- 17:14:00.490 SQL [30476]: pgsql_close() -- 17:14:04.628 INFO [30476]: COREGRADE is starting... -- 17:14:04.628 INFO [30476]: Version from config: 1.0 -- 17:14:04.628 DEBUG [30476]: Connecting to database... -- 17:14:04.628 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:14:04.628 SQL [30476]: pgsql_db_connect() -- 17:14:04.632 DEBUG [30476]: Database connection successful -- 17:14:04.632 INFO [30476]: _SERVER found -- 17:14:04.632 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 17:14:04.632 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 17:14:04.632 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=6hlnvl1p4inicevmg5ljo4ffhoqps39l -- 17:14:04.632 INFO [30476]: QUERY_STRING = /member/configure -- 17:14:04.632 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:14:04.644 INFO [30476]: COREGRADE is stopping... -- 17:14:04.644 DEBUG [30476]: Closing database connection -- 17:14:04.644 SQL [30476]: pgsql_close() -- 17:14:05.589 INFO [30476]: COREGRADE is starting... -- 17:14:05.590 INFO [30476]: Version from config: 1.0 -- 17:14:05.590 DEBUG [30476]: Connecting to database... -- 17:14:05.590 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:14:05.590 SQL [30476]: pgsql_db_connect() -- 17:14:05.594 DEBUG [30476]: Database connection successful -- 17:14:05.594 INFO [30476]: _SERVER found -- 17:14:05.594 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 17:14:05.594 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 17:14:05.594 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glmmc87lk3pb12c0jq50ln49nj5k5gkn -- 17:14:05.594 INFO [30476]: QUERY_STRING = /member -- 17:14:05.594 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:14:05.628 INFO [30476]: COREGRADE is stopping... -- 17:14:05.628 DEBUG [30476]: Closing database connection -- 17:14:05.628 SQL [30476]: pgsql_close() -- 17:14:06.091 INFO [30476]: COREGRADE is starting... -- 17:14:06.092 INFO [30476]: Version from config: 1.0 -- 17:14:06.092 DEBUG [30476]: Connecting to database... -- 17:14:06.092 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:14:06.092 SQL [30476]: pgsql_db_connect() -- 17:14:06.096 DEBUG [30476]: Database connection successful -- 17:14:06.096 INFO [30476]: _SERVER found -- 17:14:06.096 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 17:14:06.096 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 17:14:06.096 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glmmc87lk3pb12c0jq50ln49nj5k5gkn -- 17:14:06.096 INFO [30476]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:14:06.096 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:14:06.107 INFO [30476]: COREGRADE is stopping... -- 17:14:06.107 DEBUG [30476]: Closing database connection -- 17:14:06.107 SQL [30476]: pgsql_close() -- 17:14:06.114 INFO [24138]: COREGRADE is starting... -- 17:14:06.115 INFO [24138]: Version from config: 1.0 -- 17:14:06.115 DEBUG [24138]: Connecting to database... -- 17:14:06.115 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:14:06.115 SQL [24138]: pgsql_db_connect() -- 17:14:06.119 DEBUG [24138]: Database connection successful -- 17:14:06.119 INFO [24138]: _SERVER found -- 17:14:06.119 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 17:14:06.119 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 17:14:06.119 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glmmc87lk3pb12c0jq50ln49nj5k5gkn -- 17:14:06.119 INFO [24138]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:14:06.119 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:14:06.130 INFO [24138]: COREGRADE is stopping... -- 17:14:06.130 DEBUG [24138]: Closing database connection -- 17:14:06.130 SQL [24138]: pgsql_close() -- 17:14:07.253 INFO [30476]: COREGRADE is starting... -- 17:14:07.254 INFO [30476]: Version from config: 1.0 -- 17:14:07.254 DEBUG [30476]: Connecting to database... -- 17:14:07.254 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:14:07.254 SQL [30476]: pgsql_db_connect() -- 17:14:07.258 DEBUG [30476]: Database connection successful -- 17:14:07.258 INFO [30476]: _SERVER found -- 17:14:07.258 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 17:14:07.258 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 17:14:07.258 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=6hlnvl1p4inicevmg5ljo4ffhoqps39l -- 17:14:07.258 INFO [30476]: QUERY_STRING = /member/page -- 17:14:07.258 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:14:07.290 INFO [30476]: COREGRADE is stopping... -- 17:14:07.290 DEBUG [30476]: Closing database connection -- 17:14:07.290 SQL [30476]: pgsql_close() -- 17:14:07.580 INFO [24138]: COREGRADE is starting... -- 17:14:07.581 INFO [24138]: Version from config: 1.0 -- 17:14:07.581 DEBUG [24138]: Connecting to database... -- 17:14:07.581 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:14:07.581 SQL [24138]: pgsql_db_connect() -- 17:14:07.585 DEBUG [24138]: Database connection successful -- 17:14:07.585 INFO [24138]: _SERVER found -- 17:14:07.585 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 17:14:07.585 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 17:14:07.585 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glmmc87lk3pb12c0jq50ln49nj5k5gkn -- 17:14:07.585 INFO [24138]: QUERY_STRING = /member/configure -- 17:14:07.585 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:14:07.596 INFO [24138]: COREGRADE is stopping... -- 17:14:07.596 DEBUG [24138]: Closing database connection -- 17:14:07.596 SQL [24138]: pgsql_close() -- 17:14:07.608 INFO [30476]: COREGRADE is starting... -- 17:14:07.609 INFO [30476]: Version from config: 1.0 -- 17:14:07.609 DEBUG [30476]: Connecting to database... -- 17:14:07.609 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:14:07.609 SQL [30476]: pgsql_db_connect() -- 17:14:07.613 DEBUG [30476]: Database connection successful -- 17:14:07.613 INFO [30476]: _SERVER found -- 17:14:07.613 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 17:14:07.613 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 17:14:07.613 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=6hlnvl1p4inicevmg5ljo4ffhoqps39l -- 17:14:07.613 INFO [30476]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:14:07.613 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:14:07.624 INFO [30476]: COREGRADE is stopping... -- 17:14:07.624 DEBUG [30476]: Closing database connection -- 17:14:07.624 SQL [30476]: pgsql_close() -- 17:14:11.640 INFO [24138]: COREGRADE is starting... -- 17:14:11.640 INFO [24138]: Version from config: 1.0 -- 17:14:11.640 DEBUG [24138]: Connecting to database... -- 17:14:11.640 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:14:11.640 SQL [24138]: pgsql_db_connect() -- 17:14:11.644 DEBUG [24138]: Database connection successful -- 17:14:11.644 INFO [24138]: _SERVER found -- 17:14:11.644 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 17:14:11.644 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 17:14:11.644 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glmmc87lk3pb12c0jq50ln49nj5k5gkn -- 17:14:11.644 INFO [24138]: QUERY_STRING = /member -- 17:14:11.644 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:14:11.678 INFO [24138]: COREGRADE is stopping... -- 17:14:11.678 DEBUG [24138]: Closing database connection -- 17:14:11.678 SQL [24138]: pgsql_close() -- 17:14:12.035 INFO [24138]: COREGRADE is starting... -- 17:14:12.035 INFO [24138]: Version from config: 1.0 -- 17:14:12.035 DEBUG [24138]: Connecting to database... -- 17:14:12.035 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:14:12.035 SQL [24138]: pgsql_db_connect() -- 17:14:12.039 DEBUG [24138]: Database connection successful -- 17:14:12.039 INFO [24138]: _SERVER found -- 17:14:12.039 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 17:14:12.039 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 17:14:12.039 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glmmc87lk3pb12c0jq50ln49nj5k5gkn -- 17:14:12.039 INFO [24138]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:14:12.039 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:14:12.050 INFO [24138]: COREGRADE is stopping... -- 17:14:12.050 DEBUG [24138]: Closing database connection -- 17:14:12.050 SQL [24138]: pgsql_close() -- 17:14:18.783 INFO [24847]: COREGRADE is starting... -- 17:14:18.783 INFO [24847]: Version from config: 1.0 -- 17:14:18.783 DEBUG [24847]: Connecting to database... -- 17:14:18.783 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:14:18.783 SQL [24847]: pgsql_db_connect() -- 17:14:18.787 DEBUG [24847]: Database connection successful -- 17:14:18.787 INFO [24847]: _SERVER found -- 17:14:18.787 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 17:14:18.787 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 17:14:18.787 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glmmc87lk3pb12c0jq50ln49nj5k5gkn -- 17:14:18.787 INFO [24847]: QUERY_STRING = /member/page -- 17:14:18.787 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:14:18.820 INFO [24847]: COREGRADE is stopping... -- 17:14:18.820 DEBUG [24847]: Closing database connection -- 17:14:18.820 SQL [24847]: pgsql_close() -- 17:14:19.105 INFO [24847]: COREGRADE is starting... -- 17:14:19.105 INFO [24847]: Version from config: 1.0 -- 17:14:19.105 DEBUG [24847]: Connecting to database... -- 17:14:19.105 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:14:19.105 SQL [24847]: pgsql_db_connect() -- 17:14:19.109 DEBUG [24847]: Database connection successful -- 17:14:19.109 INFO [24847]: _SERVER found -- 17:14:19.109 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 17:14:19.109 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 17:14:19.109 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glmmc87lk3pb12c0jq50ln49nj5k5gkn -- 17:14:19.109 INFO [24847]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:14:19.109 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:14:19.120 INFO [24847]: COREGRADE is stopping... -- 17:14:19.120 DEBUG [24847]: Closing database connection -- 17:14:19.120 SQL [24847]: pgsql_close() -- 17:14:19.121 INFO [30474]: COREGRADE is starting... -- 17:14:19.121 INFO [30474]: Version from config: 1.0 -- 17:14:19.121 DEBUG [30474]: Connecting to database... -- 17:14:19.121 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:14:19.121 SQL [30474]: pgsql_db_connect() -- 17:14:19.125 DEBUG [30474]: Database connection successful -- 17:14:19.125 INFO [30474]: _SERVER found -- 17:14:19.125 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:14:19.125 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:14:19.125 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glmmc87lk3pb12c0jq50ln49nj5k5gkn -- 17:14:19.125 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:14:19.125 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:14:19.136 INFO [30474]: COREGRADE is stopping... -- 17:14:19.136 DEBUG [30474]: Closing database connection -- 17:14:19.136 SQL [30474]: pgsql_close() -- 17:14:41.058 INFO [30475]: COREGRADE is starting... -- 17:14:41.058 INFO [30475]: Version from config: 1.0 -- 17:14:41.058 DEBUG [30475]: Connecting to database... -- 17:14:41.058 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:14:41.058 SQL [30475]: pgsql_db_connect() -- 17:14:41.062 DEBUG [30475]: Database connection successful -- 17:14:41.062 INFO [30475]: _SERVER found -- 17:14:41.062 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 17:14:41.062 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 17:14:41.062 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glmmc87lk3pb12c0jq50ln49nj5k5gkn -- 17:14:41.062 INFO [30475]: QUERY_STRING = /member -- 17:14:41.062 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:14:41.098 INFO [30475]: COREGRADE is stopping... -- 17:14:41.098 DEBUG [30475]: Closing database connection -- 17:14:41.098 SQL [30475]: pgsql_close() -- 17:14:41.495 INFO [30475]: COREGRADE is starting... -- 17:14:41.495 INFO [30475]: Version from config: 1.0 -- 17:14:41.495 DEBUG [30475]: Connecting to database... -- 17:14:41.495 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:14:41.495 SQL [30475]: pgsql_db_connect() -- 17:14:41.499 DEBUG [30475]: Database connection successful -- 17:14:41.499 INFO [30475]: _SERVER found -- 17:14:41.499 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 17:14:41.499 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 17:14:41.499 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glmmc87lk3pb12c0jq50ln49nj5k5gkn -- 17:14:41.499 INFO [30475]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:14:41.499 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:14:41.510 INFO [30475]: COREGRADE is stopping... -- 17:14:41.510 DEBUG [30475]: Closing database connection -- 17:14:41.510 SQL [30475]: pgsql_close() -- 17:14:41.516 INFO [24184]: COREGRADE is starting... -- 17:14:41.517 INFO [24184]: Version from config: 1.0 -- 17:14:41.517 DEBUG [24184]: Connecting to database... -- 17:14:41.517 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:14:41.517 SQL [24184]: pgsql_db_connect() -- 17:14:41.521 DEBUG [24184]: Database connection successful -- 17:14:41.521 INFO [24184]: _SERVER found -- 17:14:41.521 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 17:14:41.521 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 17:14:41.521 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glmmc87lk3pb12c0jq50ln49nj5k5gkn -- 17:14:41.521 INFO [24184]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:14:41.521 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:14:41.532 INFO [24184]: COREGRADE is stopping... -- 17:14:41.532 DEBUG [24184]: Closing database connection -- 17:14:41.532 SQL [24184]: pgsql_close() -- 17:14:52.939 INFO [24136]: COREGRADE is starting... -- 17:14:52.939 INFO [24136]: Version from config: 1.0 -- 17:14:52.939 DEBUG [24136]: Connecting to database... -- 17:14:52.939 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:14:52.939 SQL [24136]: pgsql_db_connect() -- 17:14:52.943 DEBUG [24136]: Database connection successful -- 17:14:52.943 INFO [24136]: _SERVER found -- 17:14:52.943 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 17:14:52.943 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 17:14:52.943 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glmmc87lk3pb12c0jq50ln49nj5k5gkn -- 17:14:52.943 INFO [24136]: QUERY_STRING = /member/page -- 17:14:52.943 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:14:52.977 INFO [24136]: COREGRADE is stopping... -- 17:14:52.977 DEBUG [24136]: Closing database connection -- 17:14:52.977 SQL [24136]: pgsql_close() -- 17:14:53.368 INFO [24136]: COREGRADE is starting... -- 17:14:53.368 INFO [24136]: Version from config: 1.0 -- 17:14:53.368 DEBUG [24136]: Connecting to database... -- 17:14:53.368 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:14:53.368 SQL [24136]: pgsql_db_connect() -- 17:14:53.372 DEBUG [24136]: Database connection successful -- 17:14:53.372 INFO [24136]: _SERVER found -- 17:14:53.372 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 17:14:53.372 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 17:14:53.372 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glmmc87lk3pb12c0jq50ln49nj5k5gkn -- 17:14:53.372 INFO [24136]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:14:53.372 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:14:53.383 INFO [24136]: COREGRADE is stopping... -- 17:14:53.383 DEBUG [24136]: Closing database connection -- 17:14:53.383 SQL [24136]: pgsql_close() -- 17:14:53.391 INFO [24137]: COREGRADE is starting... -- 17:14:53.392 INFO [24137]: Version from config: 1.0 -- 17:14:53.392 DEBUG [24137]: Connecting to database... -- 17:14:53.392 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:14:53.392 SQL [24137]: pgsql_db_connect() -- 17:14:53.395 DEBUG [24137]: Database connection successful -- 17:14:53.395 INFO [24137]: _SERVER found -- 17:14:53.395 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 17:14:53.395 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 17:14:53.395 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glmmc87lk3pb12c0jq50ln49nj5k5gkn -- 17:14:53.395 INFO [24137]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:14:53.395 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:14:53.407 INFO [24137]: COREGRADE is stopping... -- 17:14:53.407 DEBUG [24137]: Closing database connection -- 17:14:53.407 SQL [24137]: pgsql_close() -- 17:15:03.661 INFO [24139]: COREGRADE is starting... -- 17:15:03.661 INFO [24139]: Version from config: 1.0 -- 17:15:03.661 DEBUG [24139]: Connecting to database... -- 17:15:03.661 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:15:03.661 SQL [24139]: pgsql_db_connect() -- 17:15:03.665 DEBUG [24139]: Database connection successful -- 17:15:03.665 INFO [24139]: _SERVER found -- 17:15:03.665 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 17:15:03.665 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 17:15:03.665 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glmmc87lk3pb12c0jq50ln49nj5k5gkn -- 17:15:03.665 INFO [24139]: QUERY_STRING = /member -- 17:15:03.665 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:15:03.703 INFO [24139]: COREGRADE is stopping... -- 17:15:03.703 DEBUG [24139]: Closing database connection -- 17:15:03.703 SQL [24139]: pgsql_close() -- 17:15:04.177 INFO [24139]: COREGRADE is starting... -- 17:15:04.177 INFO [24139]: Version from config: 1.0 -- 17:15:04.177 DEBUG [24139]: Connecting to database... -- 17:15:04.177 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:15:04.177 SQL [24139]: pgsql_db_connect() -- 17:15:04.181 DEBUG [24139]: Database connection successful -- 17:15:04.181 INFO [24139]: _SERVER found -- 17:15:04.181 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 17:15:04.181 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 17:15:04.181 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=18qtce7ng05ur8hsuvdk8flc75vd1ior -- 17:15:04.181 INFO [24139]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:15:04.181 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:15:04.193 INFO [24139]: COREGRADE is stopping... -- 17:15:04.193 DEBUG [24139]: Closing database connection -- 17:15:04.193 SQL [24139]: pgsql_close() -- 17:15:14.661 INFO [30492]: COREGRADE is starting... -- 17:15:14.662 INFO [30492]: Version from config: 1.0 -- 17:15:14.662 DEBUG [30492]: Connecting to database... -- 17:15:14.662 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:15:14.662 SQL [30492]: pgsql_db_connect() -- 17:15:14.666 DEBUG [30492]: Database connection successful -- 17:15:14.666 INFO [30492]: _SERVER found -- 17:15:14.666 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 17:15:14.666 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 17:15:14.666 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=18qtce7ng05ur8hsuvdk8flc75vd1ior -- 17:15:14.666 INFO [30492]: QUERY_STRING = /member/page -- 17:15:14.666 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:15:14.698 INFO [30492]: COREGRADE is stopping... -- 17:15:14.698 DEBUG [30492]: Closing database connection -- 17:15:14.698 SQL [30492]: pgsql_close() -- 17:15:14.984 INFO [30492]: COREGRADE is starting... -- 17:15:14.984 INFO [30492]: Version from config: 1.0 -- 17:15:14.984 DEBUG [30492]: Connecting to database... -- 17:15:14.985 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:15:14.985 SQL [30492]: pgsql_db_connect() -- 17:15:14.989 DEBUG [30492]: Database connection successful -- 17:15:14.989 INFO [30492]: _SERVER found -- 17:15:14.989 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 17:15:14.989 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 17:15:14.989 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=18qtce7ng05ur8hsuvdk8flc75vd1ior -- 17:15:14.989 INFO [30492]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:15:14.989 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:15:14.000 INFO [30492]: COREGRADE is stopping... -- 17:15:14.000 DEBUG [30492]: Closing database connection -- 17:15:14.000 SQL [30492]: pgsql_close() -- 17:15:15.005 INFO [30476]: COREGRADE is starting... -- 17:15:15.006 INFO [30476]: Version from config: 1.0 -- 17:15:15.006 DEBUG [30476]: Connecting to database... -- 17:15:15.006 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:15:15.006 SQL [30476]: pgsql_db_connect() -- 17:15:15.010 DEBUG [30476]: Database connection successful -- 17:15:15.010 INFO [30476]: _SERVER found -- 17:15:15.010 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 17:15:15.010 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 17:15:15.010 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=18qtce7ng05ur8hsuvdk8flc75vd1ior -- 17:15:15.010 INFO [30476]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:15:15.010 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:15:15.021 INFO [30476]: COREGRADE is stopping... -- 17:15:15.021 DEBUG [30476]: Closing database connection -- 17:15:15.021 SQL [30476]: pgsql_close() -- 17:15:40.637 INFO [24138]: COREGRADE is starting... -- 17:15:40.637 INFO [24138]: Version from config: 1.0 -- 17:15:40.637 DEBUG [24138]: Connecting to database... -- 17:15:40.637 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:15:40.637 SQL [24138]: pgsql_db_connect() -- 17:15:40.641 DEBUG [24138]: Database connection successful -- 17:15:40.641 INFO [24138]: _SERVER found -- 17:15:40.641 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 17:15:40.641 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 17:15:40.641 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=6hlnvl1p4inicevmg5ljo4ffhoqps39l -- 17:15:40.641 INFO [24138]: QUERY_STRING = /member/page -- 17:15:40.641 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:15:40.674 INFO [24138]: COREGRADE is stopping... -- 17:15:40.674 DEBUG [24138]: Closing database connection -- 17:15:40.674 SQL [24138]: pgsql_close() -- 17:15:40.865 INFO [24138]: COREGRADE is starting... -- 17:15:40.865 INFO [24138]: Version from config: 1.0 -- 17:15:40.865 DEBUG [24138]: Connecting to database... -- 17:15:40.865 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:15:40.865 SQL [24138]: pgsql_db_connect() -- 17:15:40.869 DEBUG [24138]: Database connection successful -- 17:15:40.869 INFO [24138]: _SERVER found -- 17:15:40.869 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 17:15:40.869 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 17:15:40.869 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=6hlnvl1p4inicevmg5ljo4ffhoqps39l -- 17:15:40.869 INFO [24138]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:15:40.869 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:15:40.880 INFO [24138]: COREGRADE is stopping... -- 17:15:40.880 DEBUG [24138]: Closing database connection -- 17:15:40.880 SQL [24138]: pgsql_close() -- 17:15:40.888 INFO [24847]: COREGRADE is starting... -- 17:15:40.889 INFO [24847]: Version from config: 1.0 -- 17:15:40.889 DEBUG [24847]: Connecting to database... -- 17:15:40.889 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:15:40.889 SQL [24847]: pgsql_db_connect() -- 17:15:40.893 DEBUG [24847]: Database connection successful -- 17:15:40.893 INFO [24847]: _SERVER found -- 17:15:40.893 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 17:15:40.893 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 17:15:40.893 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=6hlnvl1p4inicevmg5ljo4ffhoqps39l -- 17:15:40.893 INFO [24847]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:15:40.893 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:15:40.903 INFO [24847]: COREGRADE is stopping... -- 17:15:40.904 DEBUG [24847]: Closing database connection -- 17:15:40.904 SQL [24847]: pgsql_close() -- 17:15:52.294 INFO [30474]: COREGRADE is starting... -- 17:15:52.295 INFO [30474]: Version from config: 1.0 -- 17:15:52.295 DEBUG [30474]: Connecting to database... -- 17:15:52.295 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:15:52.295 SQL [30474]: pgsql_db_connect() -- 17:15:52.299 DEBUG [30474]: Database connection successful -- 17:15:52.299 INFO [30474]: _SERVER found -- 17:15:52.299 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:15:52.299 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:15:52.299 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=18qtce7ng05ur8hsuvdk8flc75vd1ior -- 17:15:52.299 INFO [30474]: QUERY_STRING = /member -- 17:15:52.299 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:15:52.334 INFO [30474]: COREGRADE is stopping... -- 17:15:52.334 DEBUG [30474]: Closing database connection -- 17:15:52.334 SQL [30474]: pgsql_close() -- 17:15:52.753 INFO [30474]: COREGRADE is starting... -- 17:15:52.754 INFO [30474]: Version from config: 1.0 -- 17:15:52.754 DEBUG [30474]: Connecting to database... -- 17:15:52.754 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:15:52.754 SQL [30474]: pgsql_db_connect() -- 17:15:52.758 DEBUG [30474]: Database connection successful -- 17:15:52.758 INFO [30474]: _SERVER found -- 17:15:52.758 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:15:52.758 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:15:52.758 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=18qtce7ng05ur8hsuvdk8flc75vd1ior -- 17:15:52.758 INFO [30474]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:15:52.758 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:15:52.769 INFO [30474]: COREGRADE is stopping... -- 17:15:52.769 DEBUG [30474]: Closing database connection -- 17:15:52.769 SQL [30474]: pgsql_close() -- 17:15:52.772 INFO [30475]: COREGRADE is starting... -- 17:15:52.773 INFO [30475]: Version from config: 1.0 -- 17:15:52.773 DEBUG [30475]: Connecting to database... -- 17:15:52.773 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:15:52.773 SQL [30475]: pgsql_db_connect() -- 17:15:52.777 DEBUG [30475]: Database connection successful -- 17:15:52.777 INFO [30475]: _SERVER found -- 17:15:52.777 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 17:15:52.777 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 17:15:52.777 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=18qtce7ng05ur8hsuvdk8flc75vd1ior -- 17:15:52.777 INFO [30475]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:15:52.777 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:15:52.788 INFO [30475]: COREGRADE is stopping... -- 17:15:52.788 DEBUG [30475]: Closing database connection -- 17:15:52.788 SQL [30475]: pgsql_close() -- 17:15:54.217 INFO [30475]: COREGRADE is starting... -- 17:15:54.217 INFO [30475]: Version from config: 1.0 -- 17:15:54.217 DEBUG [30475]: Connecting to database... -- 17:15:54.217 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:15:54.217 SQL [30475]: pgsql_db_connect() -- 17:15:54.221 DEBUG [30475]: Database connection successful -- 17:15:54.221 INFO [30475]: _SERVER found -- 17:15:54.221 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 17:15:54.221 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 17:15:54.222 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=18qtce7ng05ur8hsuvdk8flc75vd1ior -- 17:15:54.222 INFO [30475]: QUERY_STRING = /member/page -- 17:15:54.222 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:15:54.253 INFO [30475]: COREGRADE is stopping... -- 17:15:54.254 DEBUG [30475]: Closing database connection -- 17:15:54.254 SQL [30475]: pgsql_close() -- 17:15:54.540 INFO [30475]: COREGRADE is starting... -- 17:15:54.541 INFO [30475]: Version from config: 1.0 -- 17:15:54.541 DEBUG [30475]: Connecting to database... -- 17:15:54.541 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:15:54.541 SQL [30475]: pgsql_db_connect() -- 17:15:54.550 INFO [30474]: COREGRADE is starting... -- 17:15:54.550 INFO [30474]: Version from config: 1.0 -- 17:15:54.550 DEBUG [30474]: Connecting to database... -- 17:15:54.550 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:15:54.550 SQL [30474]: pgsql_db_connect() -- 17:15:54.545 DEBUG [30475]: Database connection successful -- 17:15:54.545 INFO [30475]: _SERVER found -- 17:15:54.545 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 17:15:54.545 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 17:15:54.545 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=18qtce7ng05ur8hsuvdk8flc75vd1ior -- 17:15:54.545 INFO [30475]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:15:54.545 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:15:54.556 INFO [30475]: COREGRADE is stopping... -- 17:15:54.556 DEBUG [30475]: Closing database connection -- 17:15:54.556 SQL [30475]: pgsql_close() -- 17:15:54.554 DEBUG [30474]: Database connection successful -- 17:15:54.554 INFO [30474]: _SERVER found -- 17:15:54.554 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:15:54.554 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:15:54.554 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=18qtce7ng05ur8hsuvdk8flc75vd1ior -- 17:15:54.554 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:15:54.554 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:15:54.565 INFO [30474]: COREGRADE is stopping... -- 17:15:54.565 DEBUG [30474]: Closing database connection -- 17:15:54.565 SQL [30474]: pgsql_close() -- 17:15:59.313 INFO [30474]: COREGRADE is starting... -- 17:15:59.313 INFO [30474]: Version from config: 1.0 -- 17:15:59.313 DEBUG [30474]: Connecting to database... -- 17:15:59.313 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:15:59.313 SQL [30474]: pgsql_db_connect() -- 17:15:59.317 DEBUG [30474]: Database connection successful -- 17:15:59.317 INFO [30474]: _SERVER found -- 17:15:59.317 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:15:59.317 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:15:59.317 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=18qtce7ng05ur8hsuvdk8flc75vd1ior -- 17:15:59.317 INFO [30474]: QUERY_STRING = /member/configure -- 17:15:59.317 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:15:59.329 INFO [30474]: COREGRADE is stopping... -- 17:15:59.329 DEBUG [30474]: Closing database connection -- 17:15:59.329 SQL [30474]: pgsql_close() -- 17:16:00.634 INFO [30474]: COREGRADE is starting... -- 17:16:00.634 INFO [30474]: Version from config: 1.0 -- 17:16:00.634 DEBUG [30474]: Connecting to database... -- 17:16:00.635 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:16:00.635 SQL [30474]: pgsql_db_connect() -- 17:16:00.639 DEBUG [30474]: Database connection successful -- 17:16:00.639 INFO [30474]: _SERVER found -- 17:16:00.639 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:16:00.639 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:16:00.639 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=18qtce7ng05ur8hsuvdk8flc75vd1ior -- 17:16:00.639 INFO [30474]: QUERY_STRING = /member/page -- 17:16:00.639 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:16:00.671 INFO [30474]: COREGRADE is stopping... -- 17:16:00.671 DEBUG [30474]: Closing database connection -- 17:16:00.671 SQL [30474]: pgsql_close() -- 17:16:40.186 INFO [24184]: COREGRADE is starting... -- 17:16:40.187 INFO [24184]: Version from config: 1.0 -- 17:16:40.187 DEBUG [24184]: Connecting to database... -- 17:16:40.187 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:16:40.187 SQL [24184]: pgsql_db_connect() -- 17:16:40.191 DEBUG [24184]: Database connection successful -- 17:16:40.191 INFO [24184]: _SERVER found -- 17:16:40.191 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 17:16:40.191 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 17:16:40.191 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=6hlnvl1p4inicevmg5ljo4ffhoqps39l -- 17:16:40.191 INFO [24184]: QUERY_STRING = /member/page -- 17:16:40.191 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:16:40.226 INFO [24184]: COREGRADE is stopping... -- 17:16:40.226 DEBUG [24184]: Closing database connection -- 17:16:40.226 SQL [24184]: pgsql_close() -- 17:16:40.411 INFO [24184]: COREGRADE is starting... -- 17:16:40.411 INFO [24184]: Version from config: 1.0 -- 17:16:40.411 DEBUG [24184]: Connecting to database... -- 17:16:40.411 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:16:40.411 SQL [24184]: pgsql_db_connect() -- 17:16:40.415 DEBUG [24184]: Database connection successful -- 17:16:40.415 INFO [24184]: _SERVER found -- 17:16:40.415 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 17:16:40.415 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 17:16:40.415 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=6hlnvl1p4inicevmg5ljo4ffhoqps39l -- 17:16:40.415 INFO [24184]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:16:40.415 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:16:40.426 INFO [24184]: COREGRADE is stopping... -- 17:16:40.426 DEBUG [24184]: Closing database connection -- 17:16:40.426 SQL [24184]: pgsql_close() -- 17:16:40.497 INFO [24184]: COREGRADE is starting... -- 17:16:40.497 INFO [24184]: Version from config: 1.0 -- 17:16:40.497 DEBUG [24184]: Connecting to database... -- 17:16:40.497 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:16:40.497 SQL [24184]: pgsql_db_connect() -- 17:16:40.501 DEBUG [24184]: Database connection successful -- 17:16:40.501 INFO [24184]: _SERVER found -- 17:16:40.501 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 17:16:40.501 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 17:16:40.501 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=6hlnvl1p4inicevmg5ljo4ffhoqps39l -- 17:16:40.501 INFO [24184]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:16:40.501 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:16:40.512 INFO [24184]: COREGRADE is stopping... -- 17:16:40.512 DEBUG [24184]: Closing database connection -- 17:16:40.512 SQL [24184]: pgsql_close() -- 17:16:45.229 INFO [24136]: COREGRADE is starting... -- 17:16:45.229 INFO [24136]: Version from config: 1.0 -- 17:16:45.229 DEBUG [24136]: Connecting to database... -- 17:16:45.229 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:16:45.229 SQL [24136]: pgsql_db_connect() -- 17:16:45.233 DEBUG [24136]: Database connection successful -- 17:16:45.233 INFO [24136]: _SERVER found -- 17:16:45.233 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 17:16:45.233 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 17:16:45.233 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=18qtce7ng05ur8hsuvdk8flc75vd1ior -- 17:16:45.233 INFO [24136]: QUERY_STRING = /member/page -- 17:16:45.233 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:16:45.266 INFO [24136]: COREGRADE is stopping... -- 17:16:45.267 DEBUG [24136]: Closing database connection -- 17:16:45.267 SQL [24136]: pgsql_close() -- 17:16:45.649 INFO [24136]: COREGRADE is starting... -- 17:16:45.650 INFO [24136]: Version from config: 1.0 -- 17:16:45.650 DEBUG [24136]: Connecting to database... -- 17:16:45.650 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:16:45.650 SQL [24136]: pgsql_db_connect() -- 17:16:45.654 DEBUG [24136]: Database connection successful -- 17:16:45.654 INFO [24136]: _SERVER found -- 17:16:45.654 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 17:16:45.654 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 17:16:45.654 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=18qtce7ng05ur8hsuvdk8flc75vd1ior -- 17:16:45.654 INFO [24136]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:16:45.654 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:16:45.665 INFO [24136]: COREGRADE is stopping... -- 17:16:45.665 DEBUG [24136]: Closing database connection -- 17:16:45.665 SQL [24136]: pgsql_close() -- 17:16:45.672 INFO [24137]: COREGRADE is starting... -- 17:16:45.672 INFO [24137]: Version from config: 1.0 -- 17:16:45.672 DEBUG [24137]: Connecting to database... -- 17:16:45.672 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:16:45.672 SQL [24137]: pgsql_db_connect() -- 17:16:45.676 DEBUG [24137]: Database connection successful -- 17:16:45.676 INFO [24137]: _SERVER found -- 17:16:45.676 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 17:16:45.676 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 17:16:45.676 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=18qtce7ng05ur8hsuvdk8flc75vd1ior -- 17:16:45.676 INFO [24137]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:16:45.676 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:16:45.687 INFO [24137]: COREGRADE is stopping... -- 17:16:45.687 DEBUG [24137]: Closing database connection -- 17:16:45.687 SQL [24137]: pgsql_close() -- 17:16:56.108 INFO [24139]: COREGRADE is starting... -- 17:16:56.108 INFO [24139]: Version from config: 1.0 -- 17:16:56.108 DEBUG [24139]: Connecting to database... -- 17:16:56.108 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:16:56.108 SQL [24139]: pgsql_db_connect() -- 17:16:56.112 DEBUG [24139]: Database connection successful -- 17:16:56.112 INFO [24139]: _SERVER found -- 17:16:56.112 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 17:16:56.112 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 17:16:56.112 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=18qtce7ng05ur8hsuvdk8flc75vd1ior -- 17:16:56.112 INFO [24139]: QUERY_STRING = /member/configure -- 17:16:56.112 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:16:56.124 INFO [24139]: COREGRADE is stopping... -- 17:16:56.124 DEBUG [24139]: Closing database connection -- 17:16:56.124 SQL [24139]: pgsql_close() -- 17:16:57.907 INFO [24139]: COREGRADE is starting... -- 17:16:57.908 INFO [24139]: Version from config: 1.0 -- 17:16:57.908 DEBUG [24139]: Connecting to database... -- 17:16:57.908 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:16:57.908 SQL [24139]: pgsql_db_connect() -- 17:16:57.912 DEBUG [24139]: Database connection successful -- 17:16:57.912 INFO [24139]: _SERVER found -- 17:16:57.912 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 17:16:57.912 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 17:16:57.912 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=18qtce7ng05ur8hsuvdk8flc75vd1ior -- 17:16:57.912 INFO [24139]: QUERY_STRING = /member/page -- 17:16:57.912 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:16:57.947 INFO [24139]: COREGRADE is stopping... -- 17:16:57.947 DEBUG [24139]: Closing database connection -- 17:16:57.947 SQL [24139]: pgsql_close() -- 17:23:54.495 INFO [30492]: COREGRADE is starting... -- 17:23:54.496 INFO [30492]: Version from config: 1.0 -- 17:23:54.496 DEBUG [30492]: Connecting to database... -- 17:23:54.496 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:23:54.496 SQL [30492]: pgsql_db_connect() -- 17:23:54.501 DEBUG [30492]: Database connection successful -- 17:23:54.501 INFO [30492]: _SERVER found -- 17:23:54.501 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 17:23:54.501 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 17:23:54.501 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=6hlnvl1p4inicevmg5ljo4ffhoqps39l -- 17:23:54.501 INFO [30492]: QUERY_STRING = /auth -- 17:23:54.501 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:23:54.533 INFO [30492]: COREGRADE is stopping... -- 17:23:54.533 DEBUG [30492]: Closing database connection -- 17:23:54.533 SQL [30492]: pgsql_close() -- 17:23:54.662 INFO [30492]: COREGRADE is starting... -- 17:23:54.662 INFO [30492]: Version from config: 1.0 -- 17:23:54.662 DEBUG [30492]: Connecting to database... -- 17:23:54.662 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:23:54.662 SQL [30492]: pgsql_db_connect() -- 17:23:54.666 DEBUG [30492]: Database connection successful -- 17:23:54.666 INFO [30492]: _SERVER found -- 17:23:54.666 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 17:23:54.666 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 17:23:54.666 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ctn91rik7a9sujpe7nhku9kcqgihev7m -- 17:23:54.666 INFO [30492]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:23:54.666 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:23:54.677 INFO [30492]: COREGRADE is stopping... -- 17:23:54.677 DEBUG [30492]: Closing database connection -- 17:23:54.677 SQL [30492]: pgsql_close() -- 17:23:54.737 INFO [30492]: COREGRADE is starting... -- 17:23:54.737 INFO [30492]: Version from config: 1.0 -- 17:23:54.737 DEBUG [30492]: Connecting to database... -- 17:23:54.737 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:23:54.737 SQL [30492]: pgsql_db_connect() -- 17:23:54.741 DEBUG [30492]: Database connection successful -- 17:23:54.741 INFO [30492]: _SERVER found -- 17:23:54.741 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 17:23:54.741 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 17:23:54.741 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ctn91rik7a9sujpe7nhku9kcqgihev7m -- 17:23:54.741 INFO [30492]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:23:54.741 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:23:54.752 INFO [30492]: COREGRADE is stopping... -- 17:23:54.752 DEBUG [30492]: Closing database connection -- 17:23:54.752 SQL [30492]: pgsql_close() -- 17:27:40.892 INFO [30476]: COREGRADE is starting... -- 17:27:40.892 INFO [30476]: Version from config: 1.0 -- 17:27:40.892 DEBUG [30476]: Connecting to database... -- 17:27:40.892 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:40.892 SQL [30476]: pgsql_db_connect() -- 17:27:40.897 DEBUG [30476]: Database connection successful -- 17:27:40.897 INFO [30476]: _SERVER found -- 17:27:40.897 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 17:27:40.897 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 17:27:40.897 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ctn91rik7a9sujpe7nhku9kcqgihev7m -- 17:27:40.897 INFO [30476]: QUERY_STRING = /member/configure -- 17:27:40.897 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:27:40.908 INFO [30476]: COREGRADE is stopping... -- 17:27:40.909 DEBUG [30476]: Closing database connection -- 17:27:40.909 SQL [30476]: pgsql_close() -- 17:29:09.052 INFO [24138]: COREGRADE is starting... -- 17:29:09.052 INFO [24138]: Version from config: 1.0 -- 17:29:09.052 DEBUG [24138]: Connecting to database... -- 17:29:09.052 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:29:09.052 SQL [24138]: pgsql_db_connect() -- 17:29:09.056 DEBUG [24138]: Database connection successful -- 17:29:09.056 INFO [24138]: _SERVER found -- 17:29:09.056 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 17:29:09.056 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 17:29:09.056 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ctn91rik7a9sujpe7nhku9kcqgihev7m -- 17:29:09.056 INFO [24138]: QUERY_STRING = /member/configure -- 17:29:09.056 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:29:09.089 INFO [24138]: COREGRADE is stopping... -- 17:29:09.089 DEBUG [24138]: Closing database connection -- 17:29:09.089 SQL [24138]: pgsql_close() -- 17:29:09.257 INFO [24138]: COREGRADE is starting... -- 17:29:09.258 INFO [24138]: Version from config: 1.0 -- 17:29:09.258 DEBUG [24138]: Connecting to database... -- 17:29:09.258 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:29:09.258 SQL [24138]: pgsql_db_connect() -- 17:29:09.262 DEBUG [24138]: Database connection successful -- 17:29:09.262 INFO [24138]: _SERVER found -- 17:29:09.262 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 17:29:09.262 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 17:29:09.262 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=9o717qruto1dbfkg60mgulgacus6oa6a -- 17:29:09.262 INFO [24138]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:29:09.262 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:29:09.273 INFO [24138]: COREGRADE is stopping... -- 17:29:09.273 DEBUG [24138]: Closing database connection -- 17:29:09.273 SQL [24138]: pgsql_close() -- 17:29:09.280 INFO [24847]: COREGRADE is starting... -- 17:29:09.280 INFO [24847]: Version from config: 1.0 -- 17:29:09.280 DEBUG [24847]: Connecting to database... -- 17:29:09.280 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:29:09.280 SQL [24847]: pgsql_db_connect() -- 17:29:09.284 DEBUG [24847]: Database connection successful -- 17:29:09.284 INFO [24847]: _SERVER found -- 17:29:09.284 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 17:29:09.284 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 17:29:09.284 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=9o717qruto1dbfkg60mgulgacus6oa6a -- 17:29:09.284 INFO [24847]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:29:09.284 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:29:09.295 INFO [24847]: COREGRADE is stopping... -- 17:29:09.296 DEBUG [24847]: Closing database connection -- 17:29:09.296 SQL [24847]: pgsql_close() -- 17:29:34.721 INFO [30475]: COREGRADE is starting... -- 17:29:34.721 INFO [30475]: Version from config: 1.0 -- 17:29:34.721 DEBUG [30475]: Connecting to database... -- 17:29:34.721 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:29:34.722 SQL [30475]: pgsql_db_connect() -- 17:29:34.726 DEBUG [30475]: Database connection successful -- 17:29:34.726 INFO [30475]: _SERVER found -- 17:29:34.726 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 17:29:34.726 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 17:29:34.726 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=18qtce7ng05ur8hsuvdk8flc75vd1ior -- 17:29:34.726 INFO [30475]: QUERY_STRING = /member/configure -- 17:29:34.726 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:29:34.759 INFO [30475]: COREGRADE is stopping... -- 17:29:34.759 DEBUG [30475]: Closing database connection -- 17:29:34.759 SQL [30475]: pgsql_close() -- 17:29:35.261 INFO [30475]: COREGRADE is starting... -- 17:29:35.261 INFO [30475]: Version from config: 1.0 -- 17:29:35.261 DEBUG [30475]: Connecting to database... -- 17:29:35.261 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:29:35.261 SQL [30475]: pgsql_db_connect() -- 17:29:35.265 DEBUG [30475]: Database connection successful -- 17:29:35.265 INFO [30475]: _SERVER found -- 17:29:35.265 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 17:29:35.265 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 17:29:35.265 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:29:35.265 INFO [30475]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:29:35.265 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:29:35.276 INFO [30475]: COREGRADE is stopping... -- 17:29:35.276 DEBUG [30475]: Closing database connection -- 17:29:35.276 SQL [30475]: pgsql_close() -- 17:29:35.284 INFO [30474]: COREGRADE is starting... -- 17:29:35.284 INFO [30474]: Version from config: 1.0 -- 17:29:35.284 DEBUG [30474]: Connecting to database... -- 17:29:35.284 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:29:35.284 SQL [30474]: pgsql_db_connect() -- 17:29:35.288 DEBUG [30474]: Database connection successful -- 17:29:35.288 INFO [30474]: _SERVER found -- 17:29:35.288 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:29:35.288 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:29:35.288 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:29:35.288 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:29:35.288 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:29:35.300 INFO [30474]: COREGRADE is stopping... -- 17:29:35.300 DEBUG [30474]: Closing database connection -- 17:29:35.300 SQL [30474]: pgsql_close() -- 17:29:36.889 INFO [30474]: COREGRADE is starting... -- 17:29:36.889 INFO [30474]: Version from config: 1.0 -- 17:29:36.889 DEBUG [30474]: Connecting to database... -- 17:29:36.889 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:29:36.889 SQL [30474]: pgsql_db_connect() -- 17:29:36.893 DEBUG [30474]: Database connection successful -- 17:29:36.893 INFO [30474]: _SERVER found -- 17:29:36.893 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:29:36.893 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:29:36.893 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:29:36.893 INFO [30474]: QUERY_STRING = /member/configure -- 17:29:36.893 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:29:36.925 INFO [30474]: COREGRADE is stopping... -- 17:29:36.925 DEBUG [30474]: Closing database connection -- 17:29:36.925 SQL [30474]: pgsql_close() -- 17:29:37.188 INFO [30474]: COREGRADE is starting... -- 17:29:37.188 INFO [30474]: Version from config: 1.0 -- 17:29:37.188 DEBUG [30474]: Connecting to database... -- 17:29:37.188 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:29:37.188 SQL [30474]: pgsql_db_connect() -- 17:29:37.196 INFO [30475]: COREGRADE is starting... -- 17:29:37.197 INFO [30475]: Version from config: 1.0 -- 17:29:37.197 DEBUG [30475]: Connecting to database... -- 17:29:37.197 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:29:37.197 SQL [30475]: pgsql_db_connect() -- 17:29:37.192 DEBUG [30474]: Database connection successful -- 17:29:37.192 INFO [30474]: _SERVER found -- 17:29:37.192 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:29:37.192 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:29:37.192 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:29:37.192 INFO [30474]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:29:37.192 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:29:37.203 INFO [30474]: COREGRADE is stopping... -- 17:29:37.204 DEBUG [30474]: Closing database connection -- 17:29:37.204 SQL [30474]: pgsql_close() -- 17:29:37.201 DEBUG [30475]: Database connection successful -- 17:29:37.201 INFO [30475]: _SERVER found -- 17:29:37.201 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 17:29:37.201 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 17:29:37.201 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:29:37.201 INFO [30475]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:29:37.201 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:29:37.212 INFO [30475]: COREGRADE is stopping... -- 17:29:37.212 DEBUG [30475]: Closing database connection -- 17:29:37.212 SQL [30475]: pgsql_close() -- 17:29:37.909 INFO [30475]: COREGRADE is starting... -- 17:29:37.910 INFO [30475]: Version from config: 1.0 -- 17:29:37.910 DEBUG [30475]: Connecting to database... -- 17:29:37.910 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:29:37.910 SQL [30475]: pgsql_db_connect() -- 17:29:37.914 DEBUG [30475]: Database connection successful -- 17:29:37.914 INFO [30475]: _SERVER found -- 17:29:37.914 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 17:29:37.914 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 17:29:37.914 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:29:37.914 INFO [30475]: QUERY_STRING = /member -- 17:29:37.914 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:29:37.948 INFO [30475]: COREGRADE is stopping... -- 17:29:37.948 DEBUG [30475]: Closing database connection -- 17:29:37.948 SQL [30475]: pgsql_close() -- 17:29:38.233 INFO [30475]: COREGRADE is starting... -- 17:29:38.233 INFO [30475]: Version from config: 1.0 -- 17:29:38.233 DEBUG [30475]: Connecting to database... -- 17:29:38.233 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:29:38.233 SQL [30475]: pgsql_db_connect() -- 17:29:38.242 INFO [30474]: COREGRADE is starting... -- 17:29:38.242 INFO [30474]: Version from config: 1.0 -- 17:29:38.242 DEBUG [30474]: Connecting to database... -- 17:29:38.242 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:29:38.242 SQL [30474]: pgsql_db_connect() -- 17:29:38.237 DEBUG [30475]: Database connection successful -- 17:29:38.237 INFO [30475]: _SERVER found -- 17:29:38.237 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 17:29:38.237 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 17:29:38.237 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:29:38.237 INFO [30475]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:29:38.237 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:29:38.249 INFO [30475]: COREGRADE is stopping... -- 17:29:38.249 DEBUG [30475]: Closing database connection -- 17:29:38.249 SQL [30475]: pgsql_close() -- 17:29:38.246 DEBUG [30474]: Database connection successful -- 17:29:38.246 INFO [30474]: _SERVER found -- 17:29:38.246 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:29:38.246 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:29:38.246 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:29:38.246 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:29:38.246 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:29:38.257 INFO [30474]: COREGRADE is stopping... -- 17:29:38.257 DEBUG [30474]: Closing database connection -- 17:29:38.257 SQL [30474]: pgsql_close() -- 17:29:39.689 INFO [30474]: COREGRADE is starting... -- 17:29:39.689 INFO [30474]: Version from config: 1.0 -- 17:29:39.689 DEBUG [30474]: Connecting to database... -- 17:29:39.689 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:29:39.689 SQL [30474]: pgsql_db_connect() -- 17:29:39.693 DEBUG [30474]: Database connection successful -- 17:29:39.693 INFO [30474]: _SERVER found -- 17:29:39.693 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:29:39.693 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:29:39.693 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:29:39.693 INFO [30474]: QUERY_STRING = /member/configure -- 17:29:39.693 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:29:39.725 INFO [30474]: COREGRADE is stopping... -- 17:29:39.725 DEBUG [30474]: Closing database connection -- 17:29:39.725 SQL [30474]: pgsql_close() -- 17:29:39.970 INFO [30474]: COREGRADE is starting... -- 17:29:39.970 INFO [30474]: Version from config: 1.0 -- 17:29:39.970 DEBUG [30474]: Connecting to database... -- 17:29:39.970 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:29:39.970 SQL [30474]: pgsql_db_connect() -- 17:29:39.977 INFO [30475]: COREGRADE is starting... -- 17:29:39.977 INFO [30475]: Version from config: 1.0 -- 17:29:39.977 DEBUG [30475]: Connecting to database... -- 17:29:39.977 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:29:39.977 SQL [30475]: pgsql_db_connect() -- 17:29:39.974 DEBUG [30474]: Database connection successful -- 17:29:39.974 INFO [30474]: _SERVER found -- 17:29:39.974 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:29:39.974 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:29:39.974 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:29:39.974 INFO [30474]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:29:39.974 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:29:39.985 INFO [30474]: COREGRADE is stopping... -- 17:29:39.985 DEBUG [30474]: Closing database connection -- 17:29:39.986 SQL [30474]: pgsql_close() -- 17:29:39.981 DEBUG [30475]: Database connection successful -- 17:29:39.981 INFO [30475]: _SERVER found -- 17:29:39.981 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 17:29:39.981 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 17:29:39.981 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:29:39.981 INFO [30475]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:29:39.981 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:29:39.992 INFO [30475]: COREGRADE is stopping... -- 17:29:39.992 DEBUG [30475]: Closing database connection -- 17:29:39.993 SQL [30475]: pgsql_close() -- 17:29:44.749 INFO [30475]: COREGRADE is starting... -- 17:29:44.750 INFO [30475]: Version from config: 1.0 -- 17:29:44.750 DEBUG [30475]: Connecting to database... -- 17:29:44.750 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:29:44.750 SQL [30475]: pgsql_db_connect() -- 17:29:44.754 DEBUG [30475]: Database connection successful -- 17:29:44.754 INFO [30475]: _SERVER found -- 17:29:44.754 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 17:29:44.754 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 17:29:44.754 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:29:44.754 INFO [30475]: QUERY_STRING = /member/configure -- 17:29:44.754 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:29:44.785 INFO [30475]: COREGRADE is stopping... -- 17:29:44.785 DEBUG [30475]: Closing database connection -- 17:29:44.785 SQL [30475]: pgsql_close() -- 17:29:44.001 INFO [30475]: COREGRADE is starting... -- 17:29:44.001 INFO [30475]: Version from config: 1.0 -- 17:29:44.001 DEBUG [30475]: Connecting to database... -- 17:29:44.001 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:29:44.001 SQL [30475]: pgsql_db_connect() -- 17:29:45.005 DEBUG [30475]: Database connection successful -- 17:29:45.005 INFO [30475]: _SERVER found -- 17:29:45.005 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 17:29:45.005 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 17:29:45.005 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:29:45.005 INFO [30475]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:29:45.005 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:29:45.016 INFO [30475]: COREGRADE is stopping... -- 17:29:45.016 DEBUG [30475]: Closing database connection -- 17:29:45.016 SQL [30475]: pgsql_close() -- 17:29:45.025 INFO [30475]: COREGRADE is starting... -- 17:29:45.026 INFO [30475]: Version from config: 1.0 -- 17:29:45.026 DEBUG [30475]: Connecting to database... -- 17:29:45.026 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:29:45.026 SQL [30475]: pgsql_db_connect() -- 17:29:45.029 DEBUG [30475]: Database connection successful -- 17:29:45.029 INFO [30475]: _SERVER found -- 17:29:45.029 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 17:29:45.029 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 17:29:45.029 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:29:45.029 INFO [30475]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:29:45.029 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:29:45.040 INFO [30475]: COREGRADE is stopping... -- 17:29:45.040 DEBUG [30475]: Closing database connection -- 17:29:45.040 SQL [30475]: pgsql_close() -- 17:29:46.409 INFO [30475]: COREGRADE is starting... -- 17:29:46.410 INFO [30475]: Version from config: 1.0 -- 17:29:46.410 DEBUG [30475]: Connecting to database... -- 17:29:46.410 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:29:46.410 SQL [30475]: pgsql_db_connect() -- 17:29:46.414 DEBUG [30475]: Database connection successful -- 17:29:46.414 INFO [30475]: _SERVER found -- 17:29:46.414 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 17:29:46.414 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 17:29:46.414 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:29:46.414 INFO [30475]: QUERY_STRING = /member/configure -- 17:29:46.414 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:29:46.445 INFO [30475]: COREGRADE is stopping... -- 17:29:46.445 DEBUG [30475]: Closing database connection -- 17:29:46.445 SQL [30475]: pgsql_close() -- 17:29:46.614 INFO [30475]: COREGRADE is starting... -- 17:29:46.615 INFO [30475]: Version from config: 1.0 -- 17:29:46.615 DEBUG [30475]: Connecting to database... -- 17:29:46.615 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:29:46.615 SQL [30475]: pgsql_db_connect() -- 17:29:46.629 INFO [24184]: COREGRADE is starting... -- 17:29:46.629 INFO [24184]: Version from config: 1.0 -- 17:29:46.629 DEBUG [24184]: Connecting to database... -- 17:29:46.629 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:29:46.629 SQL [24184]: pgsql_db_connect() -- 17:29:46.619 DEBUG [30475]: Database connection successful -- 17:29:46.619 INFO [30475]: _SERVER found -- 17:29:46.619 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 17:29:46.619 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 17:29:46.619 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:29:46.619 INFO [30475]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:29:46.619 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:29:46.630 INFO [30475]: COREGRADE is stopping... -- 17:29:46.630 DEBUG [30475]: Closing database connection -- 17:29:46.630 SQL [30475]: pgsql_close() -- 17:29:46.634 DEBUG [24184]: Database connection successful -- 17:29:46.634 INFO [24184]: _SERVER found -- 17:29:46.634 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 17:29:46.634 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 17:29:46.634 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:29:46.634 INFO [24184]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:29:46.634 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:29:46.645 INFO [24184]: COREGRADE is stopping... -- 17:29:46.645 DEBUG [24184]: Closing database connection -- 17:29:46.645 SQL [24184]: pgsql_close() -- 17:29:47.867 INFO [24184]: COREGRADE is starting... -- 17:29:47.867 INFO [24184]: Version from config: 1.0 -- 17:29:47.867 DEBUG [24184]: Connecting to database... -- 17:29:47.867 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:29:47.867 SQL [24184]: pgsql_db_connect() -- 17:29:47.871 DEBUG [24184]: Database connection successful -- 17:29:47.871 INFO [24184]: _SERVER found -- 17:29:47.871 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 17:29:47.871 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 17:29:47.871 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:29:47.871 INFO [24184]: QUERY_STRING = /member/configure -- 17:29:47.871 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:29:47.905 INFO [24184]: COREGRADE is stopping... -- 17:29:47.905 DEBUG [24184]: Closing database connection -- 17:29:47.905 SQL [24184]: pgsql_close() -- 17:29:48.182 INFO [24184]: COREGRADE is starting... -- 17:29:48.182 INFO [24184]: Version from config: 1.0 -- 17:29:48.182 DEBUG [24184]: Connecting to database... -- 17:29:48.182 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:29:48.182 SQL [24184]: pgsql_db_connect() -- 17:29:48.186 DEBUG [24184]: Database connection successful -- 17:29:48.186 INFO [24184]: _SERVER found -- 17:29:48.186 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 17:29:48.186 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 17:29:48.186 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:29:48.186 INFO [24184]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:29:48.186 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:29:48.197 INFO [24184]: COREGRADE is stopping... -- 17:29:48.197 DEBUG [24184]: Closing database connection -- 17:29:48.197 SQL [24184]: pgsql_close() -- 17:29:48.313 INFO [24184]: COREGRADE is starting... -- 17:29:48.313 INFO [24184]: Version from config: 1.0 -- 17:29:48.313 DEBUG [24184]: Connecting to database... -- 17:29:48.313 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:29:48.313 SQL [24184]: pgsql_db_connect() -- 17:29:48.317 DEBUG [24184]: Database connection successful -- 17:29:48.317 INFO [24184]: _SERVER found -- 17:29:48.317 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 17:29:48.317 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 17:29:48.317 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:29:48.317 INFO [24184]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:29:48.317 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:29:48.328 INFO [24184]: COREGRADE is stopping... -- 17:29:48.328 DEBUG [24184]: Closing database connection -- 17:29:48.328 SQL [24184]: pgsql_close() -- 17:29:48.482 INFO [24184]: COREGRADE is starting... -- 17:29:48.482 INFO [24184]: Version from config: 1.0 -- 17:29:48.482 DEBUG [24184]: Connecting to database... -- 17:29:48.482 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:29:48.482 SQL [24184]: pgsql_db_connect() -- 17:29:48.486 DEBUG [24184]: Database connection successful -- 17:29:48.486 INFO [24184]: _SERVER found -- 17:29:48.486 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 17:29:48.486 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 17:29:48.486 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:29:48.486 INFO [24184]: QUERY_STRING = /member/configure -- 17:29:48.486 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:29:48.520 INFO [24184]: COREGRADE is stopping... -- 17:29:48.520 DEBUG [24184]: Closing database connection -- 17:29:48.520 SQL [24184]: pgsql_close() -- 17:29:48.697 INFO [24184]: COREGRADE is starting... -- 17:29:48.698 INFO [24184]: Version from config: 1.0 -- 17:29:48.698 DEBUG [24184]: Connecting to database... -- 17:29:48.698 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:29:48.698 SQL [24184]: pgsql_db_connect() -- 17:29:48.702 DEBUG [24184]: Database connection successful -- 17:29:48.702 INFO [24184]: _SERVER found -- 17:29:48.702 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 17:29:48.702 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 17:29:48.702 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:29:48.702 INFO [24184]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:29:48.702 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:29:48.713 INFO [24184]: COREGRADE is stopping... -- 17:29:48.713 DEBUG [24184]: Closing database connection -- 17:29:48.713 SQL [24184]: pgsql_close() -- 17:29:48.814 INFO [24184]: COREGRADE is starting... -- 17:29:48.814 INFO [24184]: Version from config: 1.0 -- 17:29:48.814 DEBUG [24184]: Connecting to database... -- 17:29:48.814 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:29:48.814 SQL [24184]: pgsql_db_connect() -- 17:29:48.818 DEBUG [24184]: Database connection successful -- 17:29:48.818 INFO [24184]: _SERVER found -- 17:29:48.818 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 17:29:48.818 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 17:29:48.818 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:29:48.818 INFO [24184]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:29:48.818 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:29:48.829 INFO [24184]: COREGRADE is stopping... -- 17:29:48.829 DEBUG [24184]: Closing database connection -- 17:29:48.829 SQL [24184]: pgsql_close() -- 17:29:49.080 INFO [24184]: COREGRADE is starting... -- 17:29:49.080 INFO [24184]: Version from config: 1.0 -- 17:29:49.080 DEBUG [24184]: Connecting to database... -- 17:29:49.081 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:29:49.081 SQL [24184]: pgsql_db_connect() -- 17:29:49.085 DEBUG [24184]: Database connection successful -- 17:29:49.085 INFO [24184]: _SERVER found -- 17:29:49.085 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 17:29:49.085 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 17:29:49.085 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:29:49.085 INFO [24184]: QUERY_STRING = /member/configure -- 17:29:49.085 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:29:49.120 INFO [24184]: COREGRADE is stopping... -- 17:29:49.120 DEBUG [24184]: Closing database connection -- 17:29:49.120 SQL [24184]: pgsql_close() -- 17:29:49.299 INFO [24184]: COREGRADE is starting... -- 17:29:49.299 INFO [24184]: Version from config: 1.0 -- 17:29:49.299 DEBUG [24184]: Connecting to database... -- 17:29:49.299 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:29:49.299 SQL [24184]: pgsql_db_connect() -- 17:29:49.303 DEBUG [24184]: Database connection successful -- 17:29:49.303 INFO [24184]: _SERVER found -- 17:29:49.303 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 17:29:49.303 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 17:29:49.303 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:29:49.303 INFO [24184]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:29:49.303 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:29:49.315 INFO [24184]: COREGRADE is stopping... -- 17:29:49.315 DEBUG [24184]: Closing database connection -- 17:29:49.315 SQL [24184]: pgsql_close() -- 17:29:49.381 INFO [24184]: COREGRADE is starting... -- 17:29:49.381 INFO [24184]: Version from config: 1.0 -- 17:29:49.381 DEBUG [24184]: Connecting to database... -- 17:29:49.381 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:29:49.381 SQL [24184]: pgsql_db_connect() -- 17:29:49.385 DEBUG [24184]: Database connection successful -- 17:29:49.385 INFO [24184]: _SERVER found -- 17:29:49.385 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 17:29:49.385 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 17:29:49.385 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:29:49.385 INFO [24184]: QUERY_STRING = /member/configure -- 17:29:49.385 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:29:49.419 INFO [24184]: COREGRADE is stopping... -- 17:29:49.419 DEBUG [24184]: Closing database connection -- 17:29:49.419 SQL [24184]: pgsql_close() -- 17:29:49.696 INFO [24184]: COREGRADE is starting... -- 17:29:49.696 INFO [24184]: Version from config: 1.0 -- 17:29:49.696 DEBUG [24184]: Connecting to database... -- 17:29:49.696 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:29:49.696 SQL [24184]: pgsql_db_connect() -- 17:29:49.700 DEBUG [24184]: Database connection successful -- 17:29:49.700 INFO [24184]: _SERVER found -- 17:29:49.700 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 17:29:49.700 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 17:29:49.700 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:29:49.700 INFO [24184]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:29:49.700 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:29:49.711 INFO [24184]: COREGRADE is stopping... -- 17:29:49.712 DEBUG [24184]: Closing database connection -- 17:29:49.712 SQL [24184]: pgsql_close() -- 17:29:51.114 INFO [24184]: COREGRADE is starting... -- 17:29:51.115 INFO [24184]: Version from config: 1.0 -- 17:29:51.115 DEBUG [24184]: Connecting to database... -- 17:29:51.115 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:29:51.115 SQL [24184]: pgsql_db_connect() -- 17:29:51.119 DEBUG [24184]: Database connection successful -- 17:29:51.119 INFO [24184]: _SERVER found -- 17:29:51.119 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 17:29:51.119 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 17:29:51.119 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:29:51.119 INFO [24184]: QUERY_STRING = /member/configure -- 17:29:51.119 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:29:51.153 INFO [24184]: COREGRADE is stopping... -- 17:29:51.153 DEBUG [24184]: Closing database connection -- 17:29:51.153 SQL [24184]: pgsql_close() -- 17:29:51.326 INFO [24184]: COREGRADE is starting... -- 17:29:51.326 INFO [24184]: Version from config: 1.0 -- 17:29:51.326 DEBUG [24184]: Connecting to database... -- 17:29:51.326 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:29:51.326 SQL [24184]: pgsql_db_connect() -- 17:29:51.333 INFO [30475]: COREGRADE is starting... -- 17:29:51.333 INFO [30475]: Version from config: 1.0 -- 17:29:51.333 DEBUG [30475]: Connecting to database... -- 17:29:51.333 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:29:51.333 SQL [30475]: pgsql_db_connect() -- 17:29:51.330 DEBUG [24184]: Database connection successful -- 17:29:51.330 INFO [24184]: _SERVER found -- 17:29:51.330 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 17:29:51.330 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 17:29:51.330 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:29:51.330 INFO [24184]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:29:51.330 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:29:51.341 INFO [24184]: COREGRADE is stopping... -- 17:29:51.341 DEBUG [24184]: Closing database connection -- 17:29:51.341 SQL [24184]: pgsql_close() -- 17:29:51.337 DEBUG [30475]: Database connection successful -- 17:29:51.337 INFO [30475]: _SERVER found -- 17:29:51.337 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 17:29:51.337 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 17:29:51.337 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:29:51.337 INFO [30475]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:29:51.337 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:29:51.348 INFO [30475]: COREGRADE is stopping... -- 17:29:51.348 DEBUG [30475]: Closing database connection -- 17:29:51.348 SQL [30475]: pgsql_close() -- 17:31:16.456 INFO [24136]: COREGRADE is starting... -- 17:31:16.456 INFO [24136]: Version from config: 1.0 -- 17:31:16.456 DEBUG [24136]: Connecting to database... -- 17:31:16.456 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:16.456 SQL [24136]: pgsql_db_connect() -- 17:31:16.460 DEBUG [24136]: Database connection successful -- 17:31:16.460 INFO [24136]: _SERVER found -- 17:31:16.460 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 17:31:16.460 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 17:31:16.460 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=9o717qruto1dbfkg60mgulgacus6oa6a -- 17:31:16.460 INFO [24136]: QUERY_STRING = /member -- 17:31:16.460 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:31:16.497 INFO [24136]: COREGRADE is stopping... -- 17:31:16.497 DEBUG [24136]: Closing database connection -- 17:31:16.497 SQL [24136]: pgsql_close() -- 17:31:16.673 INFO [24136]: COREGRADE is starting... -- 17:31:16.674 INFO [24136]: Version from config: 1.0 -- 17:31:16.674 DEBUG [24136]: Connecting to database... -- 17:31:16.674 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:16.674 SQL [24136]: pgsql_db_connect() -- 17:31:16.678 DEBUG [24136]: Database connection successful -- 17:31:16.678 INFO [24136]: _SERVER found -- 17:31:16.678 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 17:31:16.678 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 17:31:16.678 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=9o717qruto1dbfkg60mgulgacus6oa6a -- 17:31:16.678 INFO [24136]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:31:16.678 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:31:16.689 INFO [24136]: COREGRADE is stopping... -- 17:31:16.689 DEBUG [24136]: Closing database connection -- 17:31:16.689 SQL [24136]: pgsql_close() -- 17:31:16.701 INFO [24136]: COREGRADE is starting... -- 17:31:16.702 INFO [24136]: Version from config: 1.0 -- 17:31:16.702 DEBUG [24136]: Connecting to database... -- 17:31:16.702 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:16.702 SQL [24136]: pgsql_db_connect() -- 17:31:16.706 DEBUG [24136]: Database connection successful -- 17:31:16.706 INFO [24136]: _SERVER found -- 17:31:16.706 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 17:31:16.706 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 17:31:16.706 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=9o717qruto1dbfkg60mgulgacus6oa6a -- 17:31:16.706 INFO [24136]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:31:16.706 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:31:16.717 INFO [24136]: COREGRADE is stopping... -- 17:31:16.717 DEBUG [24136]: Closing database connection -- 17:31:16.717 SQL [24136]: pgsql_close() -- 17:31:18.551 INFO [24136]: COREGRADE is starting... -- 17:31:18.552 INFO [24136]: Version from config: 1.0 -- 17:31:18.552 DEBUG [24136]: Connecting to database... -- 17:31:18.552 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:18.552 SQL [24136]: pgsql_db_connect() -- 17:31:18.556 DEBUG [24136]: Database connection successful -- 17:31:18.556 INFO [24136]: _SERVER found -- 17:31:18.556 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 17:31:18.556 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 17:31:18.556 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=9o717qruto1dbfkg60mgulgacus6oa6a -- 17:31:18.556 INFO [24136]: QUERY_STRING = /member/page -- 17:31:18.556 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:31:18.589 INFO [24136]: COREGRADE is stopping... -- 17:31:18.589 DEBUG [24136]: Closing database connection -- 17:31:18.589 SQL [24136]: pgsql_close() -- 17:31:18.761 INFO [24136]: COREGRADE is starting... -- 17:31:18.761 INFO [24136]: Version from config: 1.0 -- 17:31:18.761 DEBUG [24136]: Connecting to database... -- 17:31:18.761 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:18.761 SQL [24136]: pgsql_db_connect() -- 17:31:18.765 DEBUG [24136]: Database connection successful -- 17:31:18.765 INFO [24136]: _SERVER found -- 17:31:18.765 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 17:31:18.765 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 17:31:18.765 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=9o717qruto1dbfkg60mgulgacus6oa6a -- 17:31:18.765 INFO [24136]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:31:18.765 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:31:18.776 INFO [24136]: COREGRADE is stopping... -- 17:31:18.776 DEBUG [24136]: Closing database connection -- 17:31:18.776 SQL [24136]: pgsql_close() -- 17:31:18.840 INFO [24136]: COREGRADE is starting... -- 17:31:18.841 INFO [24136]: Version from config: 1.0 -- 17:31:18.841 DEBUG [24136]: Connecting to database... -- 17:31:18.841 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:18.841 SQL [24136]: pgsql_db_connect() -- 17:31:18.845 DEBUG [24136]: Database connection successful -- 17:31:18.845 INFO [24136]: _SERVER found -- 17:31:18.845 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 17:31:18.845 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 17:31:18.845 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=9o717qruto1dbfkg60mgulgacus6oa6a -- 17:31:18.845 INFO [24136]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:31:18.845 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:31:18.856 INFO [24136]: COREGRADE is stopping... -- 17:31:18.856 DEBUG [24136]: Closing database connection -- 17:31:18.856 SQL [24136]: pgsql_close() -- 17:32:58.947 INFO [24137]: COREGRADE is starting... -- 17:32:58.947 INFO [24137]: Version from config: 1.0 -- 17:32:58.947 DEBUG [24137]: Connecting to database... -- 17:32:58.947 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:32:58.947 SQL [24137]: pgsql_db_connect() -- 17:32:58.951 DEBUG [24137]: Database connection successful -- 17:32:58.951 INFO [24137]: _SERVER found -- 17:32:58.951 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 17:32:58.951 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 17:32:58.951 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=9o717qruto1dbfkg60mgulgacus6oa6a -- 17:32:58.951 INFO [24137]: QUERY_STRING = /member/page -- 17:32:58.951 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:32:58.986 INFO [24137]: COREGRADE is stopping... -- 17:32:58.986 DEBUG [24137]: Closing database connection -- 17:32:58.986 SQL [24137]: pgsql_close() -- 17:32:59.181 INFO [24137]: COREGRADE is starting... -- 17:32:59.182 INFO [24137]: Version from config: 1.0 -- 17:32:59.182 DEBUG [24137]: Connecting to database... -- 17:32:59.182 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:32:59.182 SQL [24137]: pgsql_db_connect() -- 17:32:59.186 DEBUG [24137]: Database connection successful -- 17:32:59.186 INFO [24137]: _SERVER found -- 17:32:59.186 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 17:32:59.186 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 17:32:59.186 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=9o717qruto1dbfkg60mgulgacus6oa6a -- 17:32:59.186 INFO [24137]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:32:59.186 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:32:59.197 INFO [24137]: COREGRADE is stopping... -- 17:32:59.197 DEBUG [24137]: Closing database connection -- 17:32:59.197 SQL [24137]: pgsql_close() -- 17:32:59.265 INFO [24137]: COREGRADE is starting... -- 17:32:59.266 INFO [24137]: Version from config: 1.0 -- 17:32:59.266 DEBUG [24137]: Connecting to database... -- 17:32:59.266 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:32:59.266 SQL [24137]: pgsql_db_connect() -- 17:32:59.270 DEBUG [24137]: Database connection successful -- 17:32:59.270 INFO [24137]: _SERVER found -- 17:32:59.270 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 17:32:59.270 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 17:32:59.270 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=9o717qruto1dbfkg60mgulgacus6oa6a -- 17:32:59.270 INFO [24137]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:32:59.270 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:32:59.281 INFO [24137]: COREGRADE is stopping... -- 17:32:59.281 DEBUG [24137]: Closing database connection -- 17:32:59.281 SQL [24137]: pgsql_close() -- 17:33:01.443 INFO [24137]: COREGRADE is starting... -- 17:33:01.444 INFO [24137]: Version from config: 1.0 -- 17:33:01.444 DEBUG [24137]: Connecting to database... -- 17:33:01.444 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:01.444 SQL [24137]: pgsql_db_connect() -- 17:33:01.448 DEBUG [24137]: Database connection successful -- 17:33:01.448 INFO [24137]: _SERVER found -- 17:33:01.448 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 17:33:01.448 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 17:33:01.448 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=9o717qruto1dbfkg60mgulgacus6oa6a -- 17:33:01.448 INFO [24137]: QUERY_STRING = /member/configure -- 17:33:01.448 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:33:01.482 INFO [24137]: COREGRADE is stopping... -- 17:33:01.482 DEBUG [24137]: Closing database connection -- 17:33:01.482 SQL [24137]: pgsql_close() -- 17:33:01.649 INFO [24137]: COREGRADE is starting... -- 17:33:01.649 INFO [24137]: Version from config: 1.0 -- 17:33:01.649 DEBUG [24137]: Connecting to database... -- 17:33:01.649 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:01.649 SQL [24137]: pgsql_db_connect() -- 17:33:01.653 DEBUG [24137]: Database connection successful -- 17:33:01.653 INFO [24137]: _SERVER found -- 17:33:01.653 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 17:33:01.653 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 17:33:01.653 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=9o717qruto1dbfkg60mgulgacus6oa6a -- 17:33:01.653 INFO [24137]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:33:01.653 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:33:01.664 INFO [24137]: COREGRADE is stopping... -- 17:33:01.664 DEBUG [24137]: Closing database connection -- 17:33:01.664 SQL [24137]: pgsql_close() -- 17:33:01.773 INFO [24137]: COREGRADE is starting... -- 17:33:01.774 INFO [24137]: Version from config: 1.0 -- 17:33:01.774 DEBUG [24137]: Connecting to database... -- 17:33:01.774 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:01.774 SQL [24137]: pgsql_db_connect() -- 17:33:01.778 DEBUG [24137]: Database connection successful -- 17:33:01.778 INFO [24137]: _SERVER found -- 17:33:01.778 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 17:33:01.778 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 17:33:01.778 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=9o717qruto1dbfkg60mgulgacus6oa6a -- 17:33:01.778 INFO [24137]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:33:01.778 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:33:01.789 INFO [24137]: COREGRADE is stopping... -- 17:33:01.789 DEBUG [24137]: Closing database connection -- 17:33:01.789 SQL [24137]: pgsql_close() -- 17:33:02.113 INFO [24137]: COREGRADE is starting... -- 17:33:02.113 INFO [24137]: Version from config: 1.0 -- 17:33:02.113 DEBUG [24137]: Connecting to database... -- 17:33:02.113 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:02.113 SQL [24137]: pgsql_db_connect() -- 17:33:02.117 DEBUG [24137]: Database connection successful -- 17:33:02.117 INFO [24137]: _SERVER found -- 17:33:02.117 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 17:33:02.117 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 17:33:02.117 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=9o717qruto1dbfkg60mgulgacus6oa6a -- 17:33:02.117 INFO [24137]: QUERY_STRING = screen=member/app-email -- 17:33:02.117 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:33:02.128 INFO [24137]: COREGRADE is stopping... -- 17:33:02.128 DEBUG [24137]: Closing database connection -- 17:33:02.128 SQL [24137]: pgsql_close() -- 17:33:04.280 INFO [24137]: COREGRADE is starting... -- 17:33:04.280 INFO [24137]: Version from config: 1.0 -- 17:33:04.280 DEBUG [24137]: Connecting to database... -- 17:33:04.280 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:04.280 SQL [24137]: pgsql_db_connect() -- 17:33:04.284 DEBUG [24137]: Database connection successful -- 17:33:04.284 INFO [24137]: _SERVER found -- 17:33:04.284 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 17:33:04.284 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 17:33:04.284 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=9o717qruto1dbfkg60mgulgacus6oa6a -- 17:33:04.284 INFO [24137]: QUERY_STRING = /member/configure -- 17:33:04.284 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:33:04.317 INFO [24137]: COREGRADE is stopping... -- 17:33:04.317 DEBUG [24137]: Closing database connection -- 17:33:04.317 SQL [24137]: pgsql_close() -- 17:33:04.639 INFO [24137]: COREGRADE is starting... -- 17:33:04.640 INFO [24137]: Version from config: 1.0 -- 17:33:04.640 DEBUG [24137]: Connecting to database... -- 17:33:04.640 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:04.640 SQL [24137]: pgsql_db_connect() -- 17:33:04.644 DEBUG [24137]: Database connection successful -- 17:33:04.644 INFO [24137]: _SERVER found -- 17:33:04.644 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 17:33:04.644 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 17:33:04.644 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:33:04.644 INFO [24137]: QUERY_STRING = /member/configure -- 17:33:04.644 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:33:04.675 INFO [24137]: COREGRADE is stopping... -- 17:33:04.676 DEBUG [24137]: Closing database connection -- 17:33:04.676 SQL [24137]: pgsql_close() -- 17:33:04.886 INFO [24137]: COREGRADE is starting... -- 17:33:04.886 INFO [24137]: Version from config: 1.0 -- 17:33:04.886 DEBUG [24137]: Connecting to database... -- 17:33:04.886 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:04.886 SQL [24137]: pgsql_db_connect() -- 17:33:04.890 DEBUG [24137]: Database connection successful -- 17:33:04.890 INFO [24137]: _SERVER found -- 17:33:04.890 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 17:33:04.890 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 17:33:04.890 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:33:04.890 INFO [24137]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:33:04.890 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:33:04.901 INFO [24137]: COREGRADE is stopping... -- 17:33:04.902 DEBUG [24137]: Closing database connection -- 17:33:04.902 SQL [24137]: pgsql_close() -- 17:33:04.904 INFO [24139]: COREGRADE is starting... -- 17:33:04.904 INFO [24139]: Version from config: 1.0 -- 17:33:04.904 DEBUG [24139]: Connecting to database... -- 17:33:04.904 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:04.904 SQL [24139]: pgsql_db_connect() -- 17:33:04.908 DEBUG [24139]: Database connection successful -- 17:33:04.908 INFO [24139]: _SERVER found -- 17:33:04.908 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 17:33:04.908 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 17:33:04.908 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:33:04.908 INFO [24139]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:33:04.908 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:33:04.920 INFO [24139]: COREGRADE is stopping... -- 17:33:04.920 DEBUG [24139]: Closing database connection -- 17:33:04.920 SQL [24139]: pgsql_close() -- 17:33:15.717 INFO [30492]: COREGRADE is starting... -- 17:33:15.717 INFO [30492]: Version from config: 1.0 -- 17:33:15.717 DEBUG [30492]: Connecting to database... -- 17:33:15.717 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:15.717 SQL [30492]: pgsql_db_connect() -- 17:33:15.721 DEBUG [30492]: Database connection successful -- 17:33:15.721 INFO [30492]: _SERVER found -- 17:33:15.721 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 17:33:15.721 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 17:33:15.721 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:33:15.721 INFO [30492]: QUERY_STRING = /member -- 17:33:15.721 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:33:15.756 INFO [30492]: COREGRADE is stopping... -- 17:33:15.756 DEBUG [30492]: Closing database connection -- 17:33:15.757 SQL [30492]: pgsql_close() -- 17:33:16.158 INFO [30492]: COREGRADE is starting... -- 17:33:16.159 INFO [30492]: Version from config: 1.0 -- 17:33:16.159 DEBUG [30492]: Connecting to database... -- 17:33:16.159 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:16.159 SQL [30492]: pgsql_db_connect() -- 17:33:16.163 DEBUG [30492]: Database connection successful -- 17:33:16.163 INFO [30492]: _SERVER found -- 17:33:16.163 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 17:33:16.163 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 17:33:16.163 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:33:16.163 INFO [30492]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:33:16.163 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:33:16.174 INFO [30492]: COREGRADE is stopping... -- 17:33:16.174 DEBUG [30492]: Closing database connection -- 17:33:16.174 SQL [30492]: pgsql_close() -- 17:33:16.174 INFO [30476]: COREGRADE is starting... -- 17:33:16.175 INFO [30476]: Version from config: 1.0 -- 17:33:16.175 DEBUG [30476]: Connecting to database... -- 17:33:16.175 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:16.175 SQL [30476]: pgsql_db_connect() -- 17:33:16.179 DEBUG [30476]: Database connection successful -- 17:33:16.179 INFO [30476]: _SERVER found -- 17:33:16.179 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 17:33:16.179 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 17:33:16.179 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:33:16.179 INFO [30476]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:33:16.179 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:33:16.190 INFO [30476]: COREGRADE is stopping... -- 17:33:16.190 DEBUG [30476]: Closing database connection -- 17:33:16.190 SQL [30476]: pgsql_close() -- 17:33:17.671 INFO [30492]: COREGRADE is starting... -- 17:33:17.672 INFO [30492]: Version from config: 1.0 -- 17:33:17.672 DEBUG [30492]: Connecting to database... -- 17:33:17.672 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:17.672 SQL [30492]: pgsql_db_connect() -- 17:33:17.676 DEBUG [30492]: Database connection successful -- 17:33:17.676 INFO [30492]: _SERVER found -- 17:33:17.676 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 17:33:17.676 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 17:33:17.676 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:33:17.676 INFO [30492]: QUERY_STRING = /member/page -- 17:33:17.676 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:33:17.708 INFO [30492]: COREGRADE is stopping... -- 17:33:17.708 DEBUG [30492]: Closing database connection -- 17:33:17.708 SQL [30492]: pgsql_close() -- 17:33:17.910 INFO [30492]: COREGRADE is starting... -- 17:33:17.910 INFO [30492]: Version from config: 1.0 -- 17:33:17.910 DEBUG [30492]: Connecting to database... -- 17:33:17.910 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:17.910 SQL [30492]: pgsql_db_connect() -- 17:33:17.915 DEBUG [30492]: Database connection successful -- 17:33:17.915 INFO [30492]: _SERVER found -- 17:33:17.915 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 17:33:17.915 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 17:33:17.915 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:33:17.915 INFO [30492]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:33:17.915 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:33:17.926 INFO [30492]: COREGRADE is stopping... -- 17:33:17.926 DEBUG [30492]: Closing database connection -- 17:33:17.926 SQL [30492]: pgsql_close() -- 17:33:17.926 INFO [30476]: COREGRADE is starting... -- 17:33:17.926 INFO [30476]: Version from config: 1.0 -- 17:33:17.926 DEBUG [30476]: Connecting to database... -- 17:33:17.926 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:17.926 SQL [30476]: pgsql_db_connect() -- 17:33:17.930 DEBUG [30476]: Database connection successful -- 17:33:17.930 INFO [30476]: _SERVER found -- 17:33:17.930 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 17:33:17.930 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 17:33:17.930 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:33:17.930 INFO [30476]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:33:17.930 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:33:17.941 INFO [30476]: COREGRADE is stopping... -- 17:33:17.941 DEBUG [30476]: Closing database connection -- 17:33:17.941 SQL [30476]: pgsql_close() -- 17:33:45.156 INFO [24138]: COREGRADE is starting... -- 17:33:45.156 INFO [24138]: Version from config: 1.0 -- 17:33:45.157 DEBUG [24138]: Connecting to database... -- 17:33:45.157 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:45.157 SQL [24138]: pgsql_db_connect() -- 17:33:45.161 DEBUG [24138]: Database connection successful -- 17:33:45.161 INFO [24138]: _SERVER found -- 17:33:45.161 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 17:33:45.161 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 17:33:45.161 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:33:45.161 INFO [24138]: QUERY_STRING = /member/configure -- 17:33:45.161 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:33:45.193 INFO [24138]: COREGRADE is stopping... -- 17:33:45.193 DEBUG [24138]: Closing database connection -- 17:33:45.193 SQL [24138]: pgsql_close() -- 17:33:45.621 INFO [24138]: COREGRADE is starting... -- 17:33:45.622 INFO [24138]: Version from config: 1.0 -- 17:33:45.622 DEBUG [24138]: Connecting to database... -- 17:33:45.622 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:45.622 SQL [24138]: pgsql_db_connect() -- 17:33:45.626 DEBUG [24138]: Database connection successful -- 17:33:45.626 INFO [24138]: _SERVER found -- 17:33:45.626 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 17:33:45.626 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 17:33:45.626 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:33:45.626 INFO [24138]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:33:45.626 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:33:45.637 INFO [24138]: COREGRADE is stopping... -- 17:33:45.637 DEBUG [24138]: Closing database connection -- 17:33:45.637 SQL [24138]: pgsql_close() -- 17:33:45.659 INFO [24138]: COREGRADE is starting... -- 17:33:45.659 INFO [24138]: Version from config: 1.0 -- 17:33:45.659 DEBUG [24138]: Connecting to database... -- 17:33:45.659 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:45.659 SQL [24138]: pgsql_db_connect() -- 17:33:45.663 DEBUG [24138]: Database connection successful -- 17:33:45.663 INFO [24138]: _SERVER found -- 17:33:45.663 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 17:33:45.663 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 17:33:45.663 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:33:45.663 INFO [24138]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:33:45.663 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:33:45.674 INFO [24138]: COREGRADE is stopping... -- 17:33:45.674 DEBUG [24138]: Closing database connection -- 17:33:45.674 SQL [24138]: pgsql_close() -- 17:34:42.242 INFO [24847]: COREGRADE is starting... -- 17:34:42.243 INFO [24847]: Version from config: 1.0 -- 17:34:42.243 DEBUG [24847]: Connecting to database... -- 17:34:42.243 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:34:42.243 SQL [24847]: pgsql_db_connect() -- 17:34:42.247 DEBUG [24847]: Database connection successful -- 17:34:42.247 INFO [24847]: _SERVER found -- 17:34:42.247 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 17:34:42.247 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 17:34:42.247 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o93shome3noru684bdm443psi5h1ne8a -- 17:34:42.247 INFO [24847]: QUERY_STRING = /member/configure -- 17:34:42.247 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:34:42.280 INFO [24847]: COREGRADE is stopping... -- 17:34:42.280 DEBUG [24847]: Closing database connection -- 17:34:42.280 SQL [24847]: pgsql_close() -- 17:34:42.387 INFO [30474]: COREGRADE is starting... -- 17:34:42.387 INFO [30474]: Version from config: 1.0 -- 17:34:42.387 DEBUG [30474]: Connecting to database... -- 17:34:42.387 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:34:42.387 SQL [30474]: pgsql_db_connect() -- 17:34:42.391 DEBUG [30474]: Database connection successful -- 17:34:42.391 INFO [30474]: _SERVER found -- 17:34:42.391 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:34:42.391 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:34:42.391 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=9o717qruto1dbfkg60mgulgacus6oa6a -- 17:34:42.391 INFO [30474]: QUERY_STRING = /member/configure -- 17:34:42.391 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:34:42.424 INFO [30474]: COREGRADE is stopping... -- 17:34:42.424 DEBUG [30474]: Closing database connection -- 17:34:42.424 SQL [30474]: pgsql_close() -- 17:34:42.589 INFO [30474]: COREGRADE is starting... -- 17:34:42.590 INFO [30474]: Version from config: 1.0 -- 17:34:42.590 DEBUG [30474]: Connecting to database... -- 17:34:42.590 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:34:42.590 SQL [30474]: pgsql_db_connect() -- 17:34:42.594 DEBUG [30474]: Database connection successful -- 17:34:42.594 INFO [30474]: _SERVER found -- 17:34:42.594 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:34:42.594 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:34:42.594 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=rs094338g0frapund79h0mabvhm346pk -- 17:34:42.594 INFO [30474]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:34:42.594 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:34:42.605 INFO [30474]: COREGRADE is stopping... -- 17:34:42.605 DEBUG [30474]: Closing database connection -- 17:34:42.605 SQL [30474]: pgsql_close() -- 17:34:42.671 INFO [30474]: COREGRADE is starting... -- 17:34:42.672 INFO [30474]: Version from config: 1.0 -- 17:34:42.672 DEBUG [30474]: Connecting to database... -- 17:34:42.672 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:34:42.672 SQL [30474]: pgsql_db_connect() -- 17:34:42.676 DEBUG [30474]: Database connection successful -- 17:34:42.676 INFO [30474]: _SERVER found -- 17:34:42.676 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:34:42.676 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:34:42.676 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=rs094338g0frapund79h0mabvhm346pk -- 17:34:42.676 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:34:42.676 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:34:42.687 INFO [30474]: COREGRADE is stopping... -- 17:34:42.687 DEBUG [30474]: Closing database connection -- 17:34:42.687 SQL [30474]: pgsql_close() -- 17:34:42.740 INFO [24847]: COREGRADE is starting... -- 17:34:42.741 INFO [24847]: Version from config: 1.0 -- 17:34:42.741 DEBUG [24847]: Connecting to database... -- 17:34:42.741 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:34:42.741 SQL [24847]: pgsql_db_connect() -- 17:34:42.745 DEBUG [24847]: Database connection successful -- 17:34:42.745 INFO [24847]: _SERVER found -- 17:34:42.745 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 17:34:42.745 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 17:34:42.745 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c9fbeq5huvvutc5p5tdfgps49eu087cm -- 17:34:42.745 INFO [24847]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:34:42.745 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:34:42.756 INFO [24847]: COREGRADE is stopping... -- 17:34:42.756 DEBUG [24847]: Closing database connection -- 17:34:42.756 SQL [24847]: pgsql_close() -- 17:34:42.762 INFO [24847]: COREGRADE is starting... -- 17:34:42.762 INFO [24847]: Version from config: 1.0 -- 17:34:42.762 DEBUG [24847]: Connecting to database... -- 17:34:42.762 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:34:42.762 SQL [24847]: pgsql_db_connect() -- 17:34:42.768 DEBUG [24847]: Database connection successful -- 17:34:42.768 INFO [24847]: _SERVER found -- 17:34:42.768 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 17:34:42.768 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 17:34:42.768 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c9fbeq5huvvutc5p5tdfgps49eu087cm -- 17:34:42.768 INFO [24847]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:34:42.768 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:34:42.779 INFO [24847]: COREGRADE is stopping... -- 17:34:42.779 DEBUG [24847]: Closing database connection -- 17:34:42.779 SQL [24847]: pgsql_close() -- 17:34:45.998 INFO [24847]: COREGRADE is starting... -- 17:34:45.999 INFO [24847]: Version from config: 1.0 -- 17:34:45.999 DEBUG [24847]: Connecting to database... -- 17:34:45.999 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:34:45.999 SQL [24847]: pgsql_db_connect() -- 17:34:46.003 DEBUG [24847]: Database connection successful -- 17:34:46.003 INFO [24847]: _SERVER found -- 17:34:46.003 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 17:34:46.003 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 17:34:46.003 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c9fbeq5huvvutc5p5tdfgps49eu087cm -- 17:34:46.003 INFO [24847]: QUERY_STRING = /member/configure -- 17:34:46.003 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:34:46.035 INFO [24847]: COREGRADE is stopping... -- 17:34:46.035 DEBUG [24847]: Closing database connection -- 17:34:46.035 SQL [24847]: pgsql_close() -- 17:34:46.259 INFO [24847]: COREGRADE is starting... -- 17:34:46.259 INFO [24847]: Version from config: 1.0 -- 17:34:46.259 DEBUG [24847]: Connecting to database... -- 17:34:46.259 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:34:46.259 SQL [24847]: pgsql_db_connect() -- 17:34:46.263 DEBUG [24847]: Database connection successful -- 17:34:46.263 INFO [24847]: _SERVER found -- 17:34:46.263 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 17:34:46.263 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 17:34:46.263 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c9fbeq5huvvutc5p5tdfgps49eu087cm -- 17:34:46.263 INFO [24847]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:34:46.263 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:34:46.274 INFO [24847]: COREGRADE is stopping... -- 17:34:46.274 DEBUG [24847]: Closing database connection -- 17:34:46.274 SQL [24847]: pgsql_close() -- 17:34:46.281 INFO [24184]: COREGRADE is starting... -- 17:34:46.281 INFO [24184]: Version from config: 1.0 -- 17:34:46.281 DEBUG [24184]: Connecting to database... -- 17:34:46.281 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:34:46.281 SQL [24184]: pgsql_db_connect() -- 17:34:46.285 DEBUG [24184]: Database connection successful -- 17:34:46.285 INFO [24184]: _SERVER found -- 17:34:46.285 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 17:34:46.285 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 17:34:46.285 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c9fbeq5huvvutc5p5tdfgps49eu087cm -- 17:34:46.285 INFO [24184]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:34:46.285 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:34:46.296 INFO [24184]: COREGRADE is stopping... -- 17:34:46.296 DEBUG [24184]: Closing database connection -- 17:34:46.296 SQL [24184]: pgsql_close() -- 17:35:17.743 INFO [30475]: COREGRADE is starting... -- 17:35:17.743 INFO [30475]: Version from config: 1.0 -- 17:35:17.743 DEBUG [30475]: Connecting to database... -- 17:35:17.743 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:35:17.743 SQL [30475]: pgsql_db_connect() -- 17:35:17.747 DEBUG [30475]: Database connection successful -- 17:35:17.747 INFO [30475]: _SERVER found -- 17:35:17.747 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 17:35:17.747 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 17:35:17.747 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=rs094338g0frapund79h0mabvhm346pk -- 17:35:17.747 INFO [30475]: QUERY_STRING = /member/configure -- 17:35:17.747 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:35:17.780 INFO [30475]: COREGRADE is stopping... -- 17:35:17.780 DEBUG [30475]: Closing database connection -- 17:35:17.781 SQL [30475]: pgsql_close() -- 17:35:17.952 INFO [30475]: COREGRADE is starting... -- 17:35:17.952 INFO [30475]: Version from config: 1.0 -- 17:35:17.952 DEBUG [30475]: Connecting to database... -- 17:35:17.952 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:35:17.952 SQL [30475]: pgsql_db_connect() -- 17:35:17.956 DEBUG [30475]: Database connection successful -- 17:35:17.956 INFO [30475]: _SERVER found -- 17:35:17.956 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 17:35:17.956 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 17:35:17.956 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=rs094338g0frapund79h0mabvhm346pk -- 17:35:17.956 INFO [30475]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:35:17.956 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:35:17.968 INFO [30475]: COREGRADE is stopping... -- 17:35:17.968 DEBUG [30475]: Closing database connection -- 17:35:17.968 SQL [30475]: pgsql_close() -- 17:35:18.082 INFO [30475]: COREGRADE is starting... -- 17:35:18.082 INFO [30475]: Version from config: 1.0 -- 17:35:18.082 DEBUG [30475]: Connecting to database... -- 17:35:18.082 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:35:18.082 SQL [30475]: pgsql_db_connect() -- 17:35:18.086 DEBUG [30475]: Database connection successful -- 17:35:18.086 INFO [30475]: _SERVER found -- 17:35:18.086 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 17:35:18.086 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 17:35:18.086 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=rs094338g0frapund79h0mabvhm346pk -- 17:35:18.086 INFO [30475]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:35:18.086 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:35:18.097 INFO [30475]: COREGRADE is stopping... -- 17:35:18.097 DEBUG [30475]: Closing database connection -- 17:35:18.097 SQL [30475]: pgsql_close() -- 17:35:57.897 INFO [24136]: COREGRADE is starting... -- 17:35:57.897 INFO [24136]: Version from config: 1.0 -- 17:35:57.897 DEBUG [24136]: Connecting to database... -- 17:35:57.897 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:35:57.897 SQL [24136]: pgsql_db_connect() -- 17:35:57.901 DEBUG [24136]: Database connection successful -- 17:35:57.901 INFO [24136]: _SERVER found -- 17:35:57.901 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 17:35:57.901 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 17:35:57.901 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c9fbeq5huvvutc5p5tdfgps49eu087cm -- 17:35:57.901 INFO [24136]: QUERY_STRING = /member/configure -- 17:35:57.901 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:35:57.935 INFO [24136]: COREGRADE is stopping... -- 17:35:57.935 DEBUG [24136]: Closing database connection -- 17:35:57.935 SQL [24136]: pgsql_close() -- 17:35:58.367 INFO [24136]: COREGRADE is starting... -- 17:35:58.367 INFO [24136]: Version from config: 1.0 -- 17:35:58.367 DEBUG [24136]: Connecting to database... -- 17:35:58.367 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:35:58.367 SQL [24136]: pgsql_db_connect() -- 17:35:58.371 DEBUG [24136]: Database connection successful -- 17:35:58.371 INFO [24136]: _SERVER found -- 17:35:58.371 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 17:35:58.371 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 17:35:58.371 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c9fbeq5huvvutc5p5tdfgps49eu087cm -- 17:35:58.371 INFO [24136]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:35:58.371 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:35:58.382 INFO [24136]: COREGRADE is stopping... -- 17:35:58.382 DEBUG [24136]: Closing database connection -- 17:35:58.382 SQL [24136]: pgsql_close() -- 17:35:58.394 INFO [24136]: COREGRADE is starting... -- 17:35:58.394 INFO [24136]: Version from config: 1.0 -- 17:35:58.394 DEBUG [24136]: Connecting to database... -- 17:35:58.394 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:35:58.394 SQL [24136]: pgsql_db_connect() -- 17:35:58.398 DEBUG [24136]: Database connection successful -- 17:35:58.398 INFO [24136]: _SERVER found -- 17:35:58.398 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 17:35:58.398 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 17:35:58.398 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c9fbeq5huvvutc5p5tdfgps49eu087cm -- 17:35:58.398 INFO [24136]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:35:58.398 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:35:58.409 INFO [24136]: COREGRADE is stopping... -- 17:35:58.409 DEBUG [24136]: Closing database connection -- 17:35:58.409 SQL [24136]: pgsql_close() -- 17:36:23.464 INFO [24137]: COREGRADE is starting... -- 17:36:23.464 INFO [24137]: Version from config: 1.0 -- 17:36:23.464 DEBUG [24137]: Connecting to database... -- 17:36:23.464 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:23.464 SQL [24137]: pgsql_db_connect() -- 17:36:23.468 DEBUG [24137]: Database connection successful -- 17:36:23.468 INFO [24137]: _SERVER found -- 17:36:23.468 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 17:36:23.468 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 17:36:23.468 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=rs094338g0frapund79h0mabvhm346pk -- 17:36:23.468 INFO [24137]: QUERY_STRING = /member -- 17:36:23.468 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:23.503 INFO [24137]: COREGRADE is stopping... -- 17:36:23.503 DEBUG [24137]: Closing database connection -- 17:36:23.503 SQL [24137]: pgsql_close() -- 17:36:23.699 INFO [24137]: COREGRADE is starting... -- 17:36:23.699 INFO [24137]: Version from config: 1.0 -- 17:36:23.699 DEBUG [24137]: Connecting to database... -- 17:36:23.699 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:23.699 SQL [24137]: pgsql_db_connect() -- 17:36:23.703 DEBUG [24137]: Database connection successful -- 17:36:23.703 INFO [24137]: _SERVER found -- 17:36:23.703 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 17:36:23.703 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 17:36:23.703 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=rs094338g0frapund79h0mabvhm346pk -- 17:36:23.703 INFO [24137]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:36:23.703 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:23.714 INFO [24137]: COREGRADE is stopping... -- 17:36:23.714 DEBUG [24137]: Closing database connection -- 17:36:23.714 SQL [24137]: pgsql_close() -- 17:36:23.718 INFO [24139]: COREGRADE is starting... -- 17:36:23.719 INFO [24139]: Version from config: 1.0 -- 17:36:23.719 DEBUG [24139]: Connecting to database... -- 17:36:23.719 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:23.719 SQL [24139]: pgsql_db_connect() -- 17:36:23.723 DEBUG [24139]: Database connection successful -- 17:36:23.723 INFO [24139]: _SERVER found -- 17:36:23.723 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 17:36:23.723 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 17:36:23.723 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=rs094338g0frapund79h0mabvhm346pk -- 17:36:23.723 INFO [24139]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:36:23.723 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:23.734 INFO [24139]: COREGRADE is stopping... -- 17:36:23.734 DEBUG [24139]: Closing database connection -- 17:36:23.734 SQL [24139]: pgsql_close() -- 17:36:24.802 INFO [24137]: COREGRADE is starting... -- 17:36:24.802 INFO [24137]: Version from config: 1.0 -- 17:36:24.802 DEBUG [24137]: Connecting to database... -- 17:36:24.802 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:24.802 SQL [24137]: pgsql_db_connect() -- 17:36:24.806 DEBUG [24137]: Database connection successful -- 17:36:24.806 INFO [24137]: _SERVER found -- 17:36:24.806 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 17:36:24.806 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 17:36:24.806 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c9fbeq5huvvutc5p5tdfgps49eu087cm -- 17:36:24.806 INFO [24137]: QUERY_STRING = /member -- 17:36:24.806 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:24.841 INFO [24137]: COREGRADE is stopping... -- 17:36:24.841 DEBUG [24137]: Closing database connection -- 17:36:24.841 SQL [24137]: pgsql_close() -- 17:36:25.201 INFO [24137]: COREGRADE is starting... -- 17:36:25.201 INFO [24137]: Version from config: 1.0 -- 17:36:25.201 DEBUG [24137]: Connecting to database... -- 17:36:25.202 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:25.202 SQL [24137]: pgsql_db_connect() -- 17:36:25.206 DEBUG [24137]: Database connection successful -- 17:36:25.206 INFO [24137]: _SERVER found -- 17:36:25.206 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 17:36:25.206 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 17:36:25.206 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c9fbeq5huvvutc5p5tdfgps49eu087cm -- 17:36:25.206 INFO [24137]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:36:25.206 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:25.217 INFO [24137]: COREGRADE is stopping... -- 17:36:25.217 DEBUG [24137]: Closing database connection -- 17:36:25.217 SQL [24137]: pgsql_close() -- 17:36:25.220 INFO [30492]: COREGRADE is starting... -- 17:36:25.220 INFO [30492]: Version from config: 1.0 -- 17:36:25.220 DEBUG [30492]: Connecting to database... -- 17:36:25.220 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:25.220 SQL [30492]: pgsql_db_connect() -- 17:36:25.224 DEBUG [30492]: Database connection successful -- 17:36:25.224 INFO [30492]: _SERVER found -- 17:36:25.224 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 17:36:25.224 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 17:36:25.224 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c9fbeq5huvvutc5p5tdfgps49eu087cm -- 17:36:25.224 INFO [30492]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:36:25.224 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:25.235 INFO [30492]: COREGRADE is stopping... -- 17:36:25.236 DEBUG [30492]: Closing database connection -- 17:36:25.236 SQL [30492]: pgsql_close() -- 17:36:46.964 INFO [30476]: COREGRADE is starting... -- 17:36:46.965 INFO [30476]: Version from config: 1.0 -- 17:36:46.965 DEBUG [30476]: Connecting to database... -- 17:36:46.965 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:46.965 SQL [30476]: pgsql_db_connect() -- 17:36:46.969 DEBUG [30476]: Database connection successful -- 17:36:46.969 INFO [30476]: _SERVER found -- 17:36:46.969 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 17:36:46.969 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 17:36:46.969 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c9fbeq5huvvutc5p5tdfgps49eu087cm -- 17:36:46.969 INFO [30476]: QUERY_STRING = /member/page -- 17:36:46.969 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:47.002 INFO [30476]: COREGRADE is stopping... -- 17:36:47.002 DEBUG [30476]: Closing database connection -- 17:36:47.002 SQL [30476]: pgsql_close() -- 17:36:47.346 INFO [30476]: COREGRADE is starting... -- 17:36:47.346 INFO [30476]: Version from config: 1.0 -- 17:36:47.346 DEBUG [30476]: Connecting to database... -- 17:36:47.346 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:47.346 SQL [30476]: pgsql_db_connect() -- 17:36:47.350 DEBUG [30476]: Database connection successful -- 17:36:47.350 INFO [30476]: _SERVER found -- 17:36:47.350 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 17:36:47.350 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 17:36:47.350 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c9fbeq5huvvutc5p5tdfgps49eu087cm -- 17:36:47.350 INFO [30476]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:36:47.350 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:47.361 INFO [30476]: COREGRADE is stopping... -- 17:36:47.361 DEBUG [30476]: Closing database connection -- 17:36:47.361 SQL [30476]: pgsql_close() -- 17:36:47.365 INFO [24138]: COREGRADE is starting... -- 17:36:47.366 INFO [24138]: Version from config: 1.0 -- 17:36:47.366 DEBUG [24138]: Connecting to database... -- 17:36:47.366 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:47.366 SQL [24138]: pgsql_db_connect() -- 17:36:47.369 DEBUG [24138]: Database connection successful -- 17:36:47.370 INFO [24138]: _SERVER found -- 17:36:47.370 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 17:36:47.370 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 17:36:47.370 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c9fbeq5huvvutc5p5tdfgps49eu087cm -- 17:36:47.370 INFO [24138]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:36:47.370 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:47.381 INFO [24138]: COREGRADE is stopping... -- 17:36:47.381 DEBUG [24138]: Closing database connection -- 17:36:47.381 SQL [24138]: pgsql_close() -- 17:36:48.138 INFO [24138]: COREGRADE is starting... -- 17:36:48.138 INFO [24138]: Version from config: 1.0 -- 17:36:48.138 DEBUG [24138]: Connecting to database... -- 17:36:48.138 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:48.138 SQL [24138]: pgsql_db_connect() -- 17:36:48.142 DEBUG [24138]: Database connection successful -- 17:36:48.142 INFO [24138]: _SERVER found -- 17:36:48.142 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 17:36:48.142 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 17:36:48.142 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=rs094338g0frapund79h0mabvhm346pk -- 17:36:48.142 INFO [24138]: QUERY_STRING = /member/configure -- 17:36:48.142 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:48.174 INFO [24138]: COREGRADE is stopping... -- 17:36:48.174 DEBUG [24138]: Closing database connection -- 17:36:48.174 SQL [24138]: pgsql_close() -- 17:36:48.352 INFO [24138]: COREGRADE is starting... -- 17:36:48.353 INFO [24138]: Version from config: 1.0 -- 17:36:48.353 DEBUG [24138]: Connecting to database... -- 17:36:48.353 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:48.353 SQL [24138]: pgsql_db_connect() -- 17:36:48.357 DEBUG [24138]: Database connection successful -- 17:36:48.357 INFO [24138]: _SERVER found -- 17:36:48.357 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 17:36:48.357 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 17:36:48.357 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=rs094338g0frapund79h0mabvhm346pk -- 17:36:48.357 INFO [24138]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:36:48.357 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:48.368 INFO [24138]: COREGRADE is stopping... -- 17:36:48.368 DEBUG [24138]: Closing database connection -- 17:36:48.368 SQL [24138]: pgsql_close() -- 17:36:48.449 INFO [24138]: COREGRADE is starting... -- 17:36:48.449 INFO [24138]: Version from config: 1.0 -- 17:36:48.449 DEBUG [24138]: Connecting to database... -- 17:36:48.449 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:48.449 SQL [24138]: pgsql_db_connect() -- 17:36:48.453 DEBUG [24138]: Database connection successful -- 17:36:48.453 INFO [24138]: _SERVER found -- 17:36:48.453 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 17:36:48.453 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 17:36:48.453 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=rs094338g0frapund79h0mabvhm346pk -- 17:36:48.453 INFO [24138]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:36:48.453 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:48.464 INFO [24138]: COREGRADE is stopping... -- 17:36:48.464 DEBUG [24138]: Closing database connection -- 17:36:48.464 SQL [24138]: pgsql_close() -- 17:36:50.915 INFO [24138]: COREGRADE is starting... -- 17:36:50.915 INFO [24138]: Version from config: 1.0 -- 17:36:50.915 DEBUG [24138]: Connecting to database... -- 17:36:50.915 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:50.915 SQL [24138]: pgsql_db_connect() -- 17:36:50.919 DEBUG [24138]: Database connection successful -- 17:36:50.919 INFO [24138]: _SERVER found -- 17:36:50.919 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 17:36:50.919 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 17:36:50.919 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c9fbeq5huvvutc5p5tdfgps49eu087cm -- 17:36:50.919 INFO [24138]: QUERY_STRING = /member/configure -- 17:36:50.919 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:50.951 INFO [24138]: COREGRADE is stopping... -- 17:36:50.951 DEBUG [24138]: Closing database connection -- 17:36:50.951 SQL [24138]: pgsql_close() -- 17:36:51.172 INFO [24138]: COREGRADE is starting... -- 17:36:51.173 INFO [24138]: Version from config: 1.0 -- 17:36:51.173 DEBUG [24138]: Connecting to database... -- 17:36:51.173 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:51.173 SQL [24138]: pgsql_db_connect() -- 17:36:51.177 DEBUG [24138]: Database connection successful -- 17:36:51.177 INFO [24138]: _SERVER found -- 17:36:51.177 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 17:36:51.177 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 17:36:51.177 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c9fbeq5huvvutc5p5tdfgps49eu087cm -- 17:36:51.177 INFO [24138]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:36:51.177 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:51.188 INFO [24138]: COREGRADE is stopping... -- 17:36:51.188 DEBUG [24138]: Closing database connection -- 17:36:51.188 SQL [24138]: pgsql_close() -- 17:36:51.189 INFO [30476]: COREGRADE is starting... -- 17:36:51.190 INFO [30476]: Version from config: 1.0 -- 17:36:51.190 DEBUG [30476]: Connecting to database... -- 17:36:51.190 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:51.190 SQL [30476]: pgsql_db_connect() -- 17:36:51.194 DEBUG [30476]: Database connection successful -- 17:36:51.194 INFO [30476]: _SERVER found -- 17:36:51.194 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 17:36:51.194 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 17:36:51.194 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c9fbeq5huvvutc5p5tdfgps49eu087cm -- 17:36:51.194 INFO [30476]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:36:51.194 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:51.205 INFO [30476]: COREGRADE is stopping... -- 17:36:51.205 DEBUG [30476]: Closing database connection -- 17:36:51.205 SQL [30476]: pgsql_close() -- 17:40:27.250 INFO [30474]: COREGRADE is starting... -- 17:40:27.250 INFO [30474]: Version from config: 1.0 -- 17:40:27.250 DEBUG [30474]: Connecting to database... -- 17:40:27.250 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:40:27.250 SQL [30474]: pgsql_db_connect() -- 17:40:27.255 DEBUG [30474]: Database connection successful -- 17:40:27.255 INFO [30474]: _SERVER found -- 17:40:27.255 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:40:27.255 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:40:27.255 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=rs094338g0frapund79h0mabvhm346pk -- 17:40:27.255 INFO [30474]: QUERY_STRING = /member -- 17:40:27.255 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:40:27.290 INFO [30474]: COREGRADE is stopping... -- 17:40:27.290 DEBUG [30474]: Closing database connection -- 17:40:27.290 SQL [30474]: pgsql_close() -- 17:40:27.505 INFO [30474]: COREGRADE is starting... -- 17:40:27.505 INFO [30474]: Version from config: 1.0 -- 17:40:27.505 DEBUG [30474]: Connecting to database... -- 17:40:27.506 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:40:27.506 SQL [30474]: pgsql_db_connect() -- 17:40:27.510 DEBUG [30474]: Database connection successful -- 17:40:27.510 INFO [30474]: _SERVER found -- 17:40:27.510 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:40:27.510 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:40:27.510 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ghcdokg7in1s811q17l8s6sp4op9odek -- 17:40:27.510 INFO [30474]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:40:27.510 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:40:27.521 INFO [30474]: COREGRADE is stopping... -- 17:40:27.521 DEBUG [30474]: Closing database connection -- 17:40:27.521 SQL [30474]: pgsql_close() -- 17:40:27.540 INFO [24847]: COREGRADE is starting... -- 17:40:27.541 INFO [24847]: Version from config: 1.0 -- 17:40:27.541 DEBUG [24847]: Connecting to database... -- 17:40:27.541 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:40:27.541 SQL [24847]: pgsql_db_connect() -- 17:40:27.545 DEBUG [24847]: Database connection successful -- 17:40:27.545 INFO [24847]: _SERVER found -- 17:40:27.545 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 17:40:27.545 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 17:40:27.545 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ghcdokg7in1s811q17l8s6sp4op9odek -- 17:40:27.545 INFO [24847]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:40:27.545 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:40:27.557 INFO [24847]: COREGRADE is stopping... -- 17:40:27.557 DEBUG [24847]: Closing database connection -- 17:40:27.557 SQL [24847]: pgsql_close() -- 17:40:41.543 INFO [24184]: COREGRADE is starting... -- 17:40:41.543 INFO [24184]: Version from config: 1.0 -- 17:40:41.543 DEBUG [24184]: Connecting to database... -- 17:40:41.543 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:40:41.543 SQL [24184]: pgsql_db_connect() -- 17:40:41.547 DEBUG [24184]: Database connection successful -- 17:40:41.547 INFO [24184]: _SERVER found -- 17:40:41.547 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 17:40:41.547 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 17:40:41.547 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c9fbeq5huvvutc5p5tdfgps49eu087cm -- 17:40:41.547 INFO [24184]: QUERY_STRING = /member -- 17:40:41.547 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:40:41.585 INFO [24184]: COREGRADE is stopping... -- 17:40:41.585 DEBUG [24184]: Closing database connection -- 17:40:41.585 SQL [24184]: pgsql_close() -- 17:40:41.907 INFO [24184]: COREGRADE is starting... -- 17:40:41.907 INFO [24184]: Version from config: 1.0 -- 17:40:41.907 DEBUG [24184]: Connecting to database... -- 17:40:41.907 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:40:41.908 SQL [24184]: pgsql_db_connect() -- 17:40:41.912 DEBUG [24184]: Database connection successful -- 17:40:41.912 INFO [24184]: _SERVER found -- 17:40:41.912 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 17:40:41.912 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 17:40:41.912 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3tja4ims7m3aslsujtpu0gqd28sbabhh -- 17:40:41.912 INFO [24184]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:40:41.912 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:40:41.923 INFO [24184]: COREGRADE is stopping... -- 17:40:41.923 DEBUG [24184]: Closing database connection -- 17:40:41.923 SQL [24184]: pgsql_close() -- 17:40:41.927 INFO [30475]: COREGRADE is starting... -- 17:40:41.927 INFO [30475]: Version from config: 1.0 -- 17:40:41.927 DEBUG [30475]: Connecting to database... -- 17:40:41.927 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:40:41.927 SQL [30475]: pgsql_db_connect() -- 17:40:41.931 DEBUG [30475]: Database connection successful -- 17:40:41.931 INFO [30475]: _SERVER found -- 17:40:41.931 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 17:40:41.931 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 17:40:41.931 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3tja4ims7m3aslsujtpu0gqd28sbabhh -- 17:40:41.931 INFO [30475]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:40:41.931 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:40:41.943 INFO [30475]: COREGRADE is stopping... -- 17:40:41.943 DEBUG [30475]: Closing database connection -- 17:40:41.943 SQL [30475]: pgsql_close() -- 17:41:16.432 INFO [24136]: COREGRADE is starting... -- 17:41:16.432 INFO [24136]: Version from config: 1.0 -- 17:41:16.432 DEBUG [24136]: Connecting to database... -- 17:41:16.432 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:16.432 SQL [24136]: pgsql_db_connect() -- 17:41:16.436 DEBUG [24136]: Database connection successful -- 17:41:16.436 INFO [24136]: _SERVER found -- 17:41:16.436 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 17:41:16.436 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:16.436 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ghcdokg7in1s811q17l8s6sp4op9odek -- 17:41:16.436 INFO [24136]: QUERY_STRING = /member -- 17:41:16.436 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:41:16.472 INFO [24136]: COREGRADE is stopping... -- 17:41:16.472 DEBUG [24136]: Closing database connection -- 17:41:16.472 SQL [24136]: pgsql_close() -- 17:41:16.641 INFO [24136]: COREGRADE is starting... -- 17:41:16.641 INFO [24136]: Version from config: 1.0 -- 17:41:16.641 DEBUG [24136]: Connecting to database... -- 17:41:16.641 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:16.641 SQL [24136]: pgsql_db_connect() -- 17:41:16.645 DEBUG [24136]: Database connection successful -- 17:41:16.645 INFO [24136]: _SERVER found -- 17:41:16.645 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 17:41:16.645 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:16.645 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ghcdokg7in1s811q17l8s6sp4op9odek -- 17:41:16.645 INFO [24136]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:41:16.645 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:41:16.656 INFO [24136]: COREGRADE is stopping... -- 17:41:16.656 DEBUG [24136]: Closing database connection -- 17:41:16.656 SQL [24136]: pgsql_close() -- 17:41:16.658 INFO [24139]: COREGRADE is starting... -- 17:41:16.658 INFO [24139]: Version from config: 1.0 -- 17:41:16.658 DEBUG [24139]: Connecting to database... -- 17:41:16.658 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:16.658 SQL [24139]: pgsql_db_connect() -- 17:41:16.662 DEBUG [24139]: Database connection successful -- 17:41:16.662 INFO [24139]: _SERVER found -- 17:41:16.662 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 17:41:16.662 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:16.662 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ghcdokg7in1s811q17l8s6sp4op9odek -- 17:41:16.662 INFO [24139]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:41:16.662 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:41:16.674 INFO [24139]: COREGRADE is stopping... -- 17:41:16.674 DEBUG [24139]: Closing database connection -- 17:41:16.674 SQL [24139]: pgsql_close() -- 17:41:20.681 INFO [24139]: COREGRADE is starting... -- 17:41:20.681 INFO [24139]: Version from config: 1.0 -- 17:41:20.681 DEBUG [24139]: Connecting to database... -- 17:41:20.681 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:20.681 SQL [24139]: pgsql_db_connect() -- 17:41:20.685 DEBUG [24139]: Database connection successful -- 17:41:20.685 INFO [24139]: _SERVER found -- 17:41:20.685 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 17:41:20.685 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:20.685 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3tja4ims7m3aslsujtpu0gqd28sbabhh -- 17:41:20.685 INFO [24139]: QUERY_STRING = /member -- 17:41:20.685 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:41:20.722 INFO [24139]: COREGRADE is stopping... -- 17:41:20.722 DEBUG [24139]: Closing database connection -- 17:41:20.722 SQL [24139]: pgsql_close() -- 17:41:21.060 INFO [24139]: COREGRADE is starting... -- 17:41:21.060 INFO [24139]: Version from config: 1.0 -- 17:41:21.060 DEBUG [24139]: Connecting to database... -- 17:41:21.060 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:21.061 SQL [24139]: pgsql_db_connect() -- 17:41:21.075 INFO [24136]: COREGRADE is starting... -- 17:41:21.076 INFO [24136]: Version from config: 1.0 -- 17:41:21.076 DEBUG [24136]: Connecting to database... -- 17:41:21.076 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:21.076 SQL [24136]: pgsql_db_connect() -- 17:41:21.065 DEBUG [24139]: Database connection successful -- 17:41:21.065 INFO [24139]: _SERVER found -- 17:41:21.065 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 17:41:21.065 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:21.065 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3tja4ims7m3aslsujtpu0gqd28sbabhh -- 17:41:21.065 INFO [24139]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:41:21.065 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:41:21.076 INFO [24139]: COREGRADE is stopping... -- 17:41:21.076 DEBUG [24139]: Closing database connection -- 17:41:21.076 SQL [24139]: pgsql_close() -- 17:41:21.080 DEBUG [24136]: Database connection successful -- 17:41:21.080 INFO [24136]: _SERVER found -- 17:41:21.080 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 17:41:21.080 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:21.080 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3tja4ims7m3aslsujtpu0gqd28sbabhh -- 17:41:21.080 INFO [24136]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:41:21.080 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:41:21.091 INFO [24136]: COREGRADE is stopping... -- 17:41:21.091 DEBUG [24136]: Closing database connection -- 17:41:21.091 SQL [24136]: pgsql_close() -- 17:41:41.628 INFO [24137]: COREGRADE is starting... -- 17:41:41.629 INFO [24137]: Version from config: 1.0 -- 17:41:41.629 DEBUG [24137]: Connecting to database... -- 17:41:41.629 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:41.629 SQL [24137]: pgsql_db_connect() -- 17:41:41.633 DEBUG [24137]: Database connection successful -- 17:41:41.633 INFO [24137]: _SERVER found -- 17:41:41.633 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 17:41:41.633 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:41.633 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ghcdokg7in1s811q17l8s6sp4op9odek -- 17:41:41.633 INFO [24137]: QUERY_STRING = /member -- 17:41:41.633 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:41:41.669 INFO [24137]: COREGRADE is stopping... -- 17:41:41.669 DEBUG [24137]: Closing database connection -- 17:41:41.669 SQL [24137]: pgsql_close() -- 17:41:41.811 INFO [24137]: COREGRADE is starting... -- 17:41:41.811 INFO [24137]: Version from config: 1.0 -- 17:41:41.811 DEBUG [24137]: Connecting to database... -- 17:41:41.811 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:41.811 SQL [24137]: pgsql_db_connect() -- 17:41:41.816 DEBUG [24137]: Database connection successful -- 17:41:41.816 INFO [24137]: _SERVER found -- 17:41:41.816 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 17:41:41.816 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:41.816 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ghcdokg7in1s811q17l8s6sp4op9odek -- 17:41:41.816 INFO [24137]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:41:41.816 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:41:41.827 INFO [24137]: COREGRADE is stopping... -- 17:41:41.827 DEBUG [24137]: Closing database connection -- 17:41:41.827 SQL [24137]: pgsql_close() -- 17:41:41.827 INFO [30492]: COREGRADE is starting... -- 17:41:41.828 INFO [30492]: Version from config: 1.0 -- 17:41:41.828 DEBUG [30492]: Connecting to database... -- 17:41:41.828 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:41.828 SQL [30492]: pgsql_db_connect() -- 17:41:41.832 DEBUG [30492]: Database connection successful -- 17:41:41.832 INFO [30492]: _SERVER found -- 17:41:41.832 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 17:41:41.832 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:41.832 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ghcdokg7in1s811q17l8s6sp4op9odek -- 17:41:41.832 INFO [30492]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:41:41.832 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:41:41.843 INFO [30492]: COREGRADE is stopping... -- 17:41:41.843 DEBUG [30492]: Closing database connection -- 17:41:41.843 SQL [30492]: pgsql_close() -- 17:41:47.364 INFO [24138]: COREGRADE is starting... -- 17:41:47.365 INFO [24138]: Version from config: 1.0 -- 17:41:47.365 DEBUG [24138]: Connecting to database... -- 17:41:47.365 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:47.365 SQL [24138]: pgsql_db_connect() -- 17:41:47.369 DEBUG [24138]: Database connection successful -- 17:41:47.369 INFO [24138]: _SERVER found -- 17:41:47.369 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 17:41:47.369 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:47.369 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3tja4ims7m3aslsujtpu0gqd28sbabhh -- 17:41:47.369 INFO [24138]: QUERY_STRING = /member -- 17:41:47.369 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:41:47.403 INFO [24138]: COREGRADE is stopping... -- 17:41:47.403 DEBUG [24138]: Closing database connection -- 17:41:47.403 SQL [24138]: pgsql_close() -- 17:41:47.764 INFO [24138]: COREGRADE is starting... -- 17:41:47.764 INFO [24138]: Version from config: 1.0 -- 17:41:47.764 DEBUG [24138]: Connecting to database... -- 17:41:47.764 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:47.764 SQL [24138]: pgsql_db_connect() -- 17:41:47.768 DEBUG [24138]: Database connection successful -- 17:41:47.768 INFO [24138]: _SERVER found -- 17:41:47.768 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 17:41:47.768 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:47.768 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3tja4ims7m3aslsujtpu0gqd28sbabhh -- 17:41:47.768 INFO [24138]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:41:47.768 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:41:47.779 INFO [24138]: COREGRADE is stopping... -- 17:41:47.780 DEBUG [24138]: Closing database connection -- 17:41:47.780 SQL [24138]: pgsql_close() -- 17:41:47.783 INFO [24138]: COREGRADE is starting... -- 17:41:47.783 INFO [24138]: Version from config: 1.0 -- 17:41:47.783 DEBUG [24138]: Connecting to database... -- 17:41:47.783 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:47.783 SQL [24138]: pgsql_db_connect() -- 17:41:47.787 DEBUG [24138]: Database connection successful -- 17:41:47.787 INFO [24138]: _SERVER found -- 17:41:47.787 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 17:41:47.787 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:47.787 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3tja4ims7m3aslsujtpu0gqd28sbabhh -- 17:41:47.787 INFO [24138]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:41:47.787 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:41:47.798 INFO [24138]: COREGRADE is stopping... -- 17:41:47.798 DEBUG [24138]: Closing database connection -- 17:41:47.798 SQL [24138]: pgsql_close() -- 17:41:50.218 INFO [24138]: COREGRADE is starting... -- 17:41:50.218 INFO [24138]: Version from config: 1.0 -- 17:41:50.218 DEBUG [24138]: Connecting to database... -- 17:41:50.218 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:50.218 SQL [24138]: pgsql_db_connect() -- 17:41:50.222 DEBUG [24138]: Database connection successful -- 17:41:50.222 INFO [24138]: _SERVER found -- 17:41:50.222 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 17:41:50.222 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:50.222 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ghcdokg7in1s811q17l8s6sp4op9odek -- 17:41:50.222 INFO [24138]: QUERY_STRING = /member/configure -- 17:41:50.222 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:41:50.254 INFO [24138]: COREGRADE is stopping... -- 17:41:50.254 DEBUG [24138]: Closing database connection -- 17:41:50.254 SQL [24138]: pgsql_close() -- 17:41:50.444 INFO [24138]: COREGRADE is starting... -- 17:41:50.444 INFO [24138]: Version from config: 1.0 -- 17:41:50.444 DEBUG [24138]: Connecting to database... -- 17:41:50.444 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:50.444 SQL [24138]: pgsql_db_connect() -- 17:41:50.448 DEBUG [24138]: Database connection successful -- 17:41:50.448 INFO [24138]: _SERVER found -- 17:41:50.448 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 17:41:50.448 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:50.448 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ghcdokg7in1s811q17l8s6sp4op9odek -- 17:41:50.448 INFO [24138]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:41:50.448 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:41:50.459 INFO [24138]: COREGRADE is stopping... -- 17:41:50.459 DEBUG [24138]: Closing database connection -- 17:41:50.459 SQL [24138]: pgsql_close() -- 17:41:50.614 INFO [24138]: COREGRADE is starting... -- 17:41:50.614 INFO [24138]: Version from config: 1.0 -- 17:41:50.614 DEBUG [24138]: Connecting to database... -- 17:41:50.614 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:50.614 SQL [24138]: pgsql_db_connect() -- 17:41:50.618 DEBUG [24138]: Database connection successful -- 17:41:50.618 INFO [24138]: _SERVER found -- 17:41:50.618 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 17:41:50.618 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:50.618 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ghcdokg7in1s811q17l8s6sp4op9odek -- 17:41:50.618 INFO [24138]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:41:50.618 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:41:50.629 INFO [24138]: COREGRADE is stopping... -- 17:41:50.629 DEBUG [24138]: Closing database connection -- 17:41:50.629 SQL [24138]: pgsql_close() -- 17:42:07.344 INFO [30476]: COREGRADE is starting... -- 17:42:07.344 INFO [30476]: Version from config: 1.0 -- 17:42:07.344 DEBUG [30476]: Connecting to database... -- 17:42:07.344 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:42:07.344 SQL [30476]: pgsql_db_connect() -- 17:42:07.348 DEBUG [30476]: Database connection successful -- 17:42:07.348 INFO [30476]: _SERVER found -- 17:42:07.348 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 17:42:07.348 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 17:42:07.348 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ghcdokg7in1s811q17l8s6sp4op9odek -- 17:42:07.348 INFO [30476]: QUERY_STRING = /member/configure -- 17:42:07.348 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:42:07.381 INFO [30476]: COREGRADE is stopping... -- 17:42:07.381 DEBUG [30476]: Closing database connection -- 17:42:07.381 SQL [30476]: pgsql_close() -- 17:42:07.562 INFO [30476]: COREGRADE is starting... -- 17:42:07.562 INFO [30476]: Version from config: 1.0 -- 17:42:07.562 DEBUG [30476]: Connecting to database... -- 17:42:07.562 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:42:07.562 SQL [30476]: pgsql_db_connect() -- 17:42:07.566 DEBUG [30476]: Database connection successful -- 17:42:07.566 INFO [30476]: _SERVER found -- 17:42:07.566 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 17:42:07.566 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 17:42:07.566 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ghcdokg7in1s811q17l8s6sp4op9odek -- 17:42:07.566 INFO [30476]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:42:07.566 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:42:07.577 INFO [30476]: COREGRADE is stopping... -- 17:42:07.577 DEBUG [30476]: Closing database connection -- 17:42:07.577 SQL [30476]: pgsql_close() -- 17:42:07.732 INFO [30476]: COREGRADE is starting... -- 17:42:07.732 INFO [30476]: Version from config: 1.0 -- 17:42:07.732 DEBUG [30476]: Connecting to database... -- 17:42:07.732 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:42:07.732 SQL [30476]: pgsql_db_connect() -- 17:42:07.736 DEBUG [30476]: Database connection successful -- 17:42:07.736 INFO [30476]: _SERVER found -- 17:42:07.736 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 17:42:07.736 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 17:42:07.736 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ghcdokg7in1s811q17l8s6sp4op9odek -- 17:42:07.736 INFO [30476]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:42:07.736 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:42:07.747 INFO [30476]: COREGRADE is stopping... -- 17:42:07.747 DEBUG [30476]: Closing database connection -- 17:42:07.747 SQL [30476]: pgsql_close() -- 17:42:15.358 INFO [30474]: COREGRADE is starting... -- 17:42:15.358 INFO [30474]: Version from config: 1.0 -- 17:42:15.358 DEBUG [30474]: Connecting to database... -- 17:42:15.358 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:42:15.358 SQL [30474]: pgsql_db_connect() -- 17:42:15.362 DEBUG [30474]: Database connection successful -- 17:42:15.362 INFO [30474]: _SERVER found -- 17:42:15.362 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:42:15.362 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:42:15.362 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3tja4ims7m3aslsujtpu0gqd28sbabhh -- 17:42:15.362 INFO [30474]: QUERY_STRING = /member -- 17:42:15.362 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:42:15.396 INFO [30474]: COREGRADE is stopping... -- 17:42:15.396 DEBUG [30474]: Closing database connection -- 17:42:15.396 SQL [30474]: pgsql_close() -- 17:42:15.756 INFO [30474]: COREGRADE is starting... -- 17:42:15.757 INFO [30474]: Version from config: 1.0 -- 17:42:15.757 DEBUG [30474]: Connecting to database... -- 17:42:15.757 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:42:15.757 SQL [30474]: pgsql_db_connect() -- 17:42:15.761 DEBUG [30474]: Database connection successful -- 17:42:15.761 INFO [30474]: _SERVER found -- 17:42:15.761 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:42:15.761 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:42:15.761 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3tja4ims7m3aslsujtpu0gqd28sbabhh -- 17:42:15.761 INFO [30474]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:42:15.761 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:42:15.772 INFO [30474]: COREGRADE is stopping... -- 17:42:15.772 DEBUG [30474]: Closing database connection -- 17:42:15.772 SQL [30474]: pgsql_close() -- 17:42:15.777 INFO [24847]: COREGRADE is starting... -- 17:42:15.777 INFO [24847]: Version from config: 1.0 -- 17:42:15.777 DEBUG [24847]: Connecting to database... -- 17:42:15.777 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:42:15.778 SQL [24847]: pgsql_db_connect() -- 17:42:15.782 DEBUG [24847]: Database connection successful -- 17:42:15.782 INFO [24847]: _SERVER found -- 17:42:15.782 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 17:42:15.782 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 17:42:15.782 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3tja4ims7m3aslsujtpu0gqd28sbabhh -- 17:42:15.782 INFO [24847]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:42:15.782 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:42:15.793 INFO [24847]: COREGRADE is stopping... -- 17:42:15.793 DEBUG [24847]: Closing database connection -- 17:42:15.793 SQL [24847]: pgsql_close() -- 17:42:16.137 INFO [24847]: COREGRADE is starting... -- 17:42:16.138 INFO [24847]: Version from config: 1.0 -- 17:42:16.138 DEBUG [24847]: Connecting to database... -- 17:42:16.138 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:42:16.138 SQL [24847]: pgsql_db_connect() -- 17:42:16.142 DEBUG [24847]: Database connection successful -- 17:42:16.142 INFO [24847]: _SERVER found -- 17:42:16.142 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 17:42:16.142 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 17:42:16.142 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3tja4ims7m3aslsujtpu0gqd28sbabhh -- 17:42:16.142 INFO [24847]: QUERY_STRING = /member/page -- 17:42:16.142 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:42:16.174 INFO [24847]: COREGRADE is stopping... -- 17:42:16.174 DEBUG [24847]: Closing database connection -- 17:42:16.174 SQL [24847]: pgsql_close() -- 17:42:16.414 INFO [24847]: COREGRADE is starting... -- 17:42:16.414 INFO [24847]: Version from config: 1.0 -- 17:42:16.414 DEBUG [24847]: Connecting to database... -- 17:42:16.414 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:42:16.414 SQL [24847]: pgsql_db_connect() -- 17:42:16.420 INFO [30474]: COREGRADE is starting... -- 17:42:16.420 INFO [30474]: Version from config: 1.0 -- 17:42:16.420 DEBUG [30474]: Connecting to database... -- 17:42:16.420 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:42:16.420 SQL [30474]: pgsql_db_connect() -- 17:42:16.418 DEBUG [24847]: Database connection successful -- 17:42:16.418 INFO [24847]: _SERVER found -- 17:42:16.418 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 17:42:16.418 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 17:42:16.418 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3tja4ims7m3aslsujtpu0gqd28sbabhh -- 17:42:16.418 INFO [24847]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:42:16.418 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:42:16.429 INFO [24847]: COREGRADE is stopping... -- 17:42:16.429 DEBUG [24847]: Closing database connection -- 17:42:16.429 SQL [24847]: pgsql_close() -- 17:42:16.424 DEBUG [30474]: Database connection successful -- 17:42:16.424 INFO [30474]: _SERVER found -- 17:42:16.424 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:42:16.424 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:42:16.424 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3tja4ims7m3aslsujtpu0gqd28sbabhh -- 17:42:16.424 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:42:16.424 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:42:16.435 INFO [30474]: COREGRADE is stopping... -- 17:42:16.435 DEBUG [30474]: Closing database connection -- 17:42:16.435 SQL [30474]: pgsql_close() -- 17:42:25.413 INFO [24184]: COREGRADE is starting... -- 17:42:25.413 INFO [24184]: Version from config: 1.0 -- 17:42:25.413 DEBUG [24184]: Connecting to database... -- 17:42:25.413 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:42:25.413 SQL [24184]: pgsql_db_connect() -- 17:42:25.417 DEBUG [24184]: Database connection successful -- 17:42:25.417 INFO [24184]: _SERVER found -- 17:42:25.417 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 17:42:25.417 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 17:42:25.417 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3tja4ims7m3aslsujtpu0gqd28sbabhh -- 17:42:25.417 INFO [24184]: QUERY_STRING = /member/configure -- 17:42:25.417 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:42:25.451 INFO [24184]: COREGRADE is stopping... -- 17:42:25.451 DEBUG [24184]: Closing database connection -- 17:42:25.451 SQL [24184]: pgsql_close() -- 17:42:25.746 INFO [24184]: COREGRADE is starting... -- 17:42:25.746 INFO [24184]: Version from config: 1.0 -- 17:42:25.746 DEBUG [24184]: Connecting to database... -- 17:42:25.746 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:42:25.746 SQL [24184]: pgsql_db_connect() -- 17:42:25.750 DEBUG [24184]: Database connection successful -- 17:42:25.750 INFO [24184]: _SERVER found -- 17:42:25.750 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 17:42:25.750 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 17:42:25.750 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3tja4ims7m3aslsujtpu0gqd28sbabhh -- 17:42:25.750 INFO [24184]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:42:25.750 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:42:25.761 INFO [24184]: COREGRADE is stopping... -- 17:42:25.761 DEBUG [24184]: Closing database connection -- 17:42:25.761 SQL [24184]: pgsql_close() -- 17:42:25.766 INFO [30475]: COREGRADE is starting... -- 17:42:25.767 INFO [30475]: Version from config: 1.0 -- 17:42:25.767 DEBUG [30475]: Connecting to database... -- 17:42:25.767 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:42:25.767 SQL [30475]: pgsql_db_connect() -- 17:42:25.771 DEBUG [30475]: Database connection successful -- 17:42:25.771 INFO [30475]: _SERVER found -- 17:42:25.771 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 17:42:25.771 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 17:42:25.771 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3tja4ims7m3aslsujtpu0gqd28sbabhh -- 17:42:25.771 INFO [30475]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:42:25.771 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:42:25.782 INFO [30475]: COREGRADE is stopping... -- 17:42:25.782 DEBUG [30475]: Closing database connection -- 17:42:25.782 SQL [30475]: pgsql_close() -- 17:42:29.883 INFO [30475]: COREGRADE is starting... -- 17:42:29.884 INFO [30475]: Version from config: 1.0 -- 17:42:29.884 DEBUG [30475]: Connecting to database... -- 17:42:29.884 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:42:29.884 SQL [30475]: pgsql_db_connect() -- 17:42:29.888 DEBUG [30475]: Database connection successful -- 17:42:29.888 INFO [30475]: _SERVER found -- 17:42:29.888 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 17:42:29.888 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 17:42:29.888 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3tja4ims7m3aslsujtpu0gqd28sbabhh -- 17:42:29.888 INFO [30475]: QUERY_STRING = /member/configure -- 17:42:29.888 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:42:29.921 INFO [30475]: COREGRADE is stopping... -- 17:42:29.921 DEBUG [30475]: Closing database connection -- 17:42:29.921 SQL [30475]: pgsql_close() -- 17:42:30.204 INFO [30475]: COREGRADE is starting... -- 17:42:30.204 INFO [30475]: Version from config: 1.0 -- 17:42:30.204 DEBUG [30475]: Connecting to database... -- 17:42:30.204 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:42:30.204 SQL [30475]: pgsql_db_connect() -- 17:42:30.217 INFO [24184]: COREGRADE is starting... -- 17:42:30.217 INFO [24184]: Version from config: 1.0 -- 17:42:30.217 DEBUG [24184]: Connecting to database... -- 17:42:30.217 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:42:30.217 SQL [24184]: pgsql_db_connect() -- 17:42:30.209 DEBUG [30475]: Database connection successful -- 17:42:30.209 INFO [30475]: _SERVER found -- 17:42:30.209 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 17:42:30.209 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 17:42:30.209 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3tja4ims7m3aslsujtpu0gqd28sbabhh -- 17:42:30.209 INFO [30475]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:42:30.209 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:42:30.220 INFO [30475]: COREGRADE is stopping... -- 17:42:30.220 DEBUG [30475]: Closing database connection -- 17:42:30.220 SQL [30475]: pgsql_close() -- 17:42:30.222 DEBUG [24184]: Database connection successful -- 17:42:30.222 INFO [24184]: _SERVER found -- 17:42:30.222 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 17:42:30.222 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 17:42:30.222 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3tja4ims7m3aslsujtpu0gqd28sbabhh -- 17:42:30.222 INFO [24184]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:42:30.222 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:42:30.233 INFO [24184]: COREGRADE is stopping... -- 17:42:30.233 DEBUG [24184]: Closing database connection -- 17:42:30.233 SQL [24184]: pgsql_close() -- 17:45:45.220 INFO [24139]: COREGRADE is starting... -- 17:45:45.221 INFO [24139]: Version from config: 1.0 -- 17:45:45.221 DEBUG [24139]: Connecting to database... -- 17:45:45.221 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:45.221 SQL [24139]: pgsql_db_connect() -- 17:45:45.225 DEBUG [24139]: Database connection successful -- 17:45:45.225 INFO [24139]: _SERVER found -- 17:45:45.225 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 17:45:45.225 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 17:45:45.225 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ghcdokg7in1s811q17l8s6sp4op9odek -- 17:45:45.225 INFO [24139]: QUERY_STRING = /member/configure -- 17:45:45.225 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:45.264 INFO [24139]: COREGRADE is stopping... -- 17:45:45.264 DEBUG [24139]: Closing database connection -- 17:45:45.264 SQL [24139]: pgsql_close() -- 17:46:03.902 INFO [24136]: COREGRADE is starting... -- 17:46:03.902 INFO [24136]: Version from config: 1.0 -- 17:46:03.902 DEBUG [24136]: Connecting to database... -- 17:46:03.902 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:03.902 SQL [24136]: pgsql_db_connect() -- 17:46:03.907 DEBUG [24136]: Database connection successful -- 17:46:03.907 INFO [24136]: _SERVER found -- 17:46:03.907 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 17:46:03.907 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 17:46:03.907 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ukc52k9b9lp14rvoa7f48o5tken6r0v6 -- 17:46:03.907 INFO [24136]: QUERY_STRING = /member/configure -- 17:46:03.907 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:03.945 INFO [24136]: COREGRADE is stopping... -- 17:46:03.945 DEBUG [24136]: Closing database connection -- 17:46:03.945 SQL [24136]: pgsql_close() -- 17:46:04.083 INFO [24136]: COREGRADE is starting... -- 17:46:04.083 INFO [24136]: Version from config: 1.0 -- 17:46:04.083 DEBUG [24136]: Connecting to database... -- 17:46:04.083 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:04.083 SQL [24136]: pgsql_db_connect() -- 17:46:04.088 DEBUG [24136]: Database connection successful -- 17:46:04.088 INFO [24136]: _SERVER found -- 17:46:04.088 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 17:46:04.088 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 17:46:04.088 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ukc52k9b9lp14rvoa7f48o5tken6r0v6 -- 17:46:04.088 INFO [24136]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:46:04.088 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:04.099 INFO [24136]: COREGRADE is stopping... -- 17:46:04.099 DEBUG [24136]: Closing database connection -- 17:46:04.099 SQL [24136]: pgsql_close() -- 17:46:04.171 INFO [24136]: COREGRADE is starting... -- 17:46:04.171 INFO [24136]: Version from config: 1.0 -- 17:46:04.171 DEBUG [24136]: Connecting to database... -- 17:46:04.171 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:04.171 SQL [24136]: pgsql_db_connect() -- 17:46:04.175 DEBUG [24136]: Database connection successful -- 17:46:04.175 INFO [24136]: _SERVER found -- 17:46:04.175 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 17:46:04.175 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 17:46:04.175 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ukc52k9b9lp14rvoa7f48o5tken6r0v6 -- 17:46:04.175 INFO [24136]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:46:04.175 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:04.186 INFO [24136]: COREGRADE is stopping... -- 17:46:04.186 DEBUG [24136]: Closing database connection -- 17:46:04.186 SQL [24136]: pgsql_close() -- 17:46:07.323 INFO [30492]: COREGRADE is starting... -- 17:46:07.324 INFO [30492]: Version from config: 1.0 -- 17:46:07.324 DEBUG [30492]: Connecting to database... -- 17:46:07.324 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:07.324 SQL [30492]: pgsql_db_connect() -- 17:46:07.328 DEBUG [30492]: Database connection successful -- 17:46:07.328 INFO [30492]: _SERVER found -- 17:46:07.328 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 17:46:07.328 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 17:46:07.328 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3tja4ims7m3aslsujtpu0gqd28sbabhh -- 17:46:07.328 INFO [30492]: QUERY_STRING = /member/configure -- 17:46:07.328 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:07.366 INFO [30492]: COREGRADE is stopping... -- 17:46:07.366 DEBUG [30492]: Closing database connection -- 17:46:07.366 SQL [30492]: pgsql_close() -- 17:46:07.676 INFO [30492]: COREGRADE is starting... -- 17:46:07.676 INFO [30492]: Version from config: 1.0 -- 17:46:07.676 DEBUG [30492]: Connecting to database... -- 17:46:07.676 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:07.676 SQL [30492]: pgsql_db_connect() -- 17:46:07.680 DEBUG [30492]: Database connection successful -- 17:46:07.680 INFO [30492]: _SERVER found -- 17:46:07.680 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 17:46:07.680 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 17:46:07.680 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=p9iammvo182ac7n6cus2fh36eo24c234 -- 17:46:07.680 INFO [30492]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:46:07.680 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:07.692 INFO [30492]: COREGRADE is stopping... -- 17:46:07.692 DEBUG [30492]: Closing database connection -- 17:46:07.692 SQL [30492]: pgsql_close() -- 17:46:07.695 INFO [24136]: COREGRADE is starting... -- 17:46:07.695 INFO [24136]: Version from config: 1.0 -- 17:46:07.695 DEBUG [24136]: Connecting to database... -- 17:46:07.695 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:07.695 SQL [24136]: pgsql_db_connect() -- 17:46:07.700 DEBUG [24136]: Database connection successful -- 17:46:07.700 INFO [24136]: _SERVER found -- 17:46:07.700 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 17:46:07.700 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 17:46:07.700 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=p9iammvo182ac7n6cus2fh36eo24c234 -- 17:46:07.700 INFO [24136]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:46:07.700 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:07.711 INFO [24136]: COREGRADE is stopping... -- 17:46:07.711 DEBUG [24136]: Closing database connection -- 17:46:07.711 SQL [24136]: pgsql_close() -- 17:46:49.033 INFO [24137]: COREGRADE is starting... -- 17:46:49.034 INFO [24137]: Version from config: 1.0 -- 17:46:49.034 DEBUG [24137]: Connecting to database... -- 17:46:49.034 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:49.034 SQL [24137]: pgsql_db_connect() -- 17:46:49.038 DEBUG [24137]: Database connection successful -- 17:46:49.038 INFO [24137]: _SERVER found -- 17:46:49.038 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 17:46:49.038 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 17:46:49.038 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ukc52k9b9lp14rvoa7f48o5tken6r0v6 -- 17:46:49.038 INFO [24137]: QUERY_STRING = /member/configure -- 17:46:49.038 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:49.073 INFO [24137]: COREGRADE is stopping... -- 17:46:49.073 DEBUG [24137]: Closing database connection -- 17:46:49.073 SQL [24137]: pgsql_close() -- 17:46:49.264 INFO [24137]: COREGRADE is starting... -- 17:46:49.265 INFO [24137]: Version from config: 1.0 -- 17:46:49.265 DEBUG [24137]: Connecting to database... -- 17:46:49.265 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:49.265 SQL [24137]: pgsql_db_connect() -- 17:46:49.269 DEBUG [24137]: Database connection successful -- 17:46:49.269 INFO [24137]: _SERVER found -- 17:46:49.269 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 17:46:49.269 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 17:46:49.269 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ukc52k9b9lp14rvoa7f48o5tken6r0v6 -- 17:46:49.269 INFO [24137]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:46:49.269 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:49.280 INFO [24137]: COREGRADE is stopping... -- 17:46:49.280 DEBUG [24137]: Closing database connection -- 17:46:49.280 SQL [24137]: pgsql_close() -- 17:46:49.357 INFO [24137]: COREGRADE is starting... -- 17:46:49.357 INFO [24137]: Version from config: 1.0 -- 17:46:49.357 DEBUG [24137]: Connecting to database... -- 17:46:49.357 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:49.357 SQL [24137]: pgsql_db_connect() -- 17:46:49.361 DEBUG [24137]: Database connection successful -- 17:46:49.361 INFO [24137]: _SERVER found -- 17:46:49.361 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 17:46:49.361 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 17:46:49.361 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ukc52k9b9lp14rvoa7f48o5tken6r0v6 -- 17:46:49.361 INFO [24137]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:46:49.361 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:49.372 INFO [24137]: COREGRADE is stopping... -- 17:46:49.372 DEBUG [24137]: Closing database connection -- 17:46:49.372 SQL [24137]: pgsql_close() -- 17:47:34.128 INFO [24138]: COREGRADE is starting... -- 17:47:34.128 INFO [24138]: Version from config: 1.0 -- 17:47:34.128 DEBUG [24138]: Connecting to database... -- 17:47:34.128 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:34.128 SQL [24138]: pgsql_db_connect() -- 17:47:34.132 DEBUG [24138]: Database connection successful -- 17:47:34.132 INFO [24138]: _SERVER found -- 17:47:34.132 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 17:47:34.132 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 17:47:34.132 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=p9iammvo182ac7n6cus2fh36eo24c234 -- 17:47:34.132 INFO [24138]: QUERY_STRING = /member/configure -- 17:47:34.132 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:47:34.167 INFO [24138]: COREGRADE is stopping... -- 17:47:34.167 DEBUG [24138]: Closing database connection -- 17:47:34.167 SQL [24138]: pgsql_close() -- 17:47:34.511 INFO [24138]: COREGRADE is starting... -- 17:47:34.511 INFO [24138]: Version from config: 1.0 -- 17:47:34.511 DEBUG [24138]: Connecting to database... -- 17:47:34.511 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:34.511 SQL [24138]: pgsql_db_connect() -- 17:47:34.516 DEBUG [24138]: Database connection successful -- 17:47:34.516 INFO [24138]: _SERVER found -- 17:47:34.516 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 17:47:34.516 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 17:47:34.516 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=p9iammvo182ac7n6cus2fh36eo24c234 -- 17:47:34.516 INFO [24138]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:47:34.516 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:47:34.527 INFO [24138]: COREGRADE is stopping... -- 17:47:34.527 DEBUG [24138]: Closing database connection -- 17:47:34.527 SQL [24138]: pgsql_close() -- 17:47:34.534 INFO [24138]: COREGRADE is starting... -- 17:47:34.535 INFO [24138]: Version from config: 1.0 -- 17:47:34.535 DEBUG [24138]: Connecting to database... -- 17:47:34.535 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:34.535 SQL [24138]: pgsql_db_connect() -- 17:47:34.539 DEBUG [24138]: Database connection successful -- 17:47:34.539 INFO [24138]: _SERVER found -- 17:47:34.539 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 17:47:34.539 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 17:47:34.539 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=p9iammvo182ac7n6cus2fh36eo24c234 -- 17:47:34.539 INFO [24138]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:47:34.539 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:47:34.550 INFO [24138]: COREGRADE is stopping... -- 17:47:34.550 DEBUG [24138]: Closing database connection -- 17:47:34.550 SQL [24138]: pgsql_close() -- 17:48:45.363 INFO [30476]: COREGRADE is starting... -- 17:48:45.363 INFO [30476]: Version from config: 1.0 -- 17:48:45.363 DEBUG [30476]: Connecting to database... -- 17:48:45.363 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:48:45.363 SQL [30476]: pgsql_db_connect() -- 17:48:45.368 DEBUG [30476]: Database connection successful -- 17:48:45.368 INFO [30476]: _SERVER found -- 17:48:45.368 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 17:48:45.368 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 17:48:45.368 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ukc52k9b9lp14rvoa7f48o5tken6r0v6 -- 17:48:45.368 INFO [30476]: QUERY_STRING = /member/configure -- 17:48:45.368 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:48:45.402 INFO [30476]: COREGRADE is stopping... -- 17:48:45.402 DEBUG [30476]: Closing database connection -- 17:48:45.402 SQL [30476]: pgsql_close() -- 17:48:45.551 INFO [30476]: COREGRADE is starting... -- 17:48:45.552 INFO [30476]: Version from config: 1.0 -- 17:48:45.552 DEBUG [30476]: Connecting to database... -- 17:48:45.552 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:48:45.552 SQL [30476]: pgsql_db_connect() -- 17:48:45.556 DEBUG [30476]: Database connection successful -- 17:48:45.556 INFO [30476]: _SERVER found -- 17:48:45.556 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 17:48:45.556 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 17:48:45.556 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ukc52k9b9lp14rvoa7f48o5tken6r0v6 -- 17:48:45.556 INFO [30476]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:48:45.556 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:48:45.567 INFO [30476]: COREGRADE is stopping... -- 17:48:45.567 DEBUG [30476]: Closing database connection -- 17:48:45.567 SQL [30476]: pgsql_close() -- 17:48:45.633 INFO [30476]: COREGRADE is starting... -- 17:48:45.634 INFO [30476]: Version from config: 1.0 -- 17:48:45.634 DEBUG [30476]: Connecting to database... -- 17:48:45.634 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:48:45.634 SQL [30476]: pgsql_db_connect() -- 17:48:45.638 DEBUG [30476]: Database connection successful -- 17:48:45.638 INFO [30476]: _SERVER found -- 17:48:45.638 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 17:48:45.638 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 17:48:45.638 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ukc52k9b9lp14rvoa7f48o5tken6r0v6 -- 17:48:45.638 INFO [30476]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:48:45.638 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:48:45.649 INFO [30476]: COREGRADE is stopping... -- 17:48:45.649 DEBUG [30476]: Closing database connection -- 17:48:45.649 SQL [30476]: pgsql_close() -- 17:48:53.573 INFO [24847]: COREGRADE is starting... -- 17:48:53.574 INFO [24847]: Version from config: 1.0 -- 17:48:53.574 DEBUG [24847]: Connecting to database... -- 17:48:53.574 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:48:53.574 SQL [24847]: pgsql_db_connect() -- 17:48:53.578 DEBUG [24847]: Database connection successful -- 17:48:53.578 INFO [24847]: _SERVER found -- 17:48:53.578 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 17:48:53.578 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 17:48:53.578 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=p9iammvo182ac7n6cus2fh36eo24c234 -- 17:48:53.578 INFO [24847]: QUERY_STRING = /member/configure -- 17:48:53.578 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:48:53.613 INFO [24847]: COREGRADE is stopping... -- 17:48:53.613 DEBUG [24847]: Closing database connection -- 17:48:53.613 SQL [24847]: pgsql_close() -- 17:48:54.024 INFO [24847]: COREGRADE is starting... -- 17:48:54.025 INFO [24847]: Version from config: 1.0 -- 17:48:54.025 DEBUG [24847]: Connecting to database... -- 17:48:54.025 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:48:54.025 SQL [24847]: pgsql_db_connect() -- 17:48:54.029 DEBUG [24847]: Database connection successful -- 17:48:54.029 INFO [24847]: _SERVER found -- 17:48:54.029 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 17:48:54.029 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 17:48:54.029 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=p9iammvo182ac7n6cus2fh36eo24c234 -- 17:48:54.029 INFO [24847]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:48:54.029 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:48:54.040 INFO [24847]: COREGRADE is stopping... -- 17:48:54.040 DEBUG [24847]: Closing database connection -- 17:48:54.040 SQL [24847]: pgsql_close() -- 17:48:54.045 INFO [24847]: COREGRADE is starting... -- 17:48:54.045 INFO [24847]: Version from config: 1.0 -- 17:48:54.045 DEBUG [24847]: Connecting to database... -- 17:48:54.045 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:48:54.045 SQL [24847]: pgsql_db_connect() -- 17:48:54.049 DEBUG [24847]: Database connection successful -- 17:48:54.049 INFO [24847]: _SERVER found -- 17:48:54.049 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 17:48:54.049 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 17:48:54.049 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=p9iammvo182ac7n6cus2fh36eo24c234 -- 17:48:54.049 INFO [24847]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:48:54.049 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:48:54.059 INFO [24847]: COREGRADE is stopping... -- 17:48:54.060 DEBUG [24847]: Closing database connection -- 17:48:54.060 SQL [24847]: pgsql_close() -- 17:54:56.971 INFO [30474]: COREGRADE is starting... -- 17:54:56.972 INFO [30474]: Version from config: 1.0 -- 17:54:56.972 DEBUG [30474]: Connecting to database... -- 17:54:56.972 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:54:56.972 SQL [30474]: pgsql_db_connect() -- 17:54:56.976 DEBUG [30474]: Database connection successful -- 17:54:56.976 INFO [30474]: _SERVER found -- 17:54:56.976 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:54:56.976 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:54:56.976 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ukc52k9b9lp14rvoa7f48o5tken6r0v6 -- 17:54:56.976 INFO [30474]: QUERY_STRING = /member/configure -- 17:54:56.976 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:54:57.012 INFO [30474]: COREGRADE is stopping... -- 17:54:57.012 DEBUG [30474]: Closing database connection -- 17:54:57.012 SQL [30474]: pgsql_close() -- 17:54:57.195 INFO [30474]: COREGRADE is starting... -- 17:54:57.195 INFO [30474]: Version from config: 1.0 -- 17:54:57.195 DEBUG [30474]: Connecting to database... -- 17:54:57.195 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:54:57.195 SQL [30474]: pgsql_db_connect() -- 17:54:57.199 DEBUG [30474]: Database connection successful -- 17:54:57.199 INFO [30474]: _SERVER found -- 17:54:57.199 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:54:57.199 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:54:57.199 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lm9v0ir9i1vgljb0j6hrhcv5hs1236nt -- 17:54:57.199 INFO [30474]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:54:57.199 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:54:57.210 INFO [30474]: COREGRADE is stopping... -- 17:54:57.210 DEBUG [30474]: Closing database connection -- 17:54:57.210 SQL [30474]: pgsql_close() -- 17:54:57.304 INFO [30474]: COREGRADE is starting... -- 17:54:57.305 INFO [30474]: Version from config: 1.0 -- 17:54:57.305 DEBUG [30474]: Connecting to database... -- 17:54:57.305 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:54:57.305 SQL [30474]: pgsql_db_connect() -- 17:54:57.309 DEBUG [30474]: Database connection successful -- 17:54:57.309 INFO [30474]: _SERVER found -- 17:54:57.309 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:54:57.309 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:54:57.309 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lm9v0ir9i1vgljb0j6hrhcv5hs1236nt -- 17:54:57.309 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:54:57.309 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:54:57.320 INFO [30474]: COREGRADE is stopping... -- 17:54:57.320 DEBUG [30474]: Closing database connection -- 17:54:57.320 SQL [30474]: pgsql_close() -- 17:54:58.987 INFO [30474]: COREGRADE is starting... -- 17:54:58.987 INFO [30474]: Version from config: 1.0 -- 17:54:58.988 DEBUG [30474]: Connecting to database... -- 17:54:58.988 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:54:58.988 SQL [30474]: pgsql_db_connect() -- 17:54:58.992 DEBUG [30474]: Database connection successful -- 17:54:58.992 INFO [30474]: _SERVER found -- 17:54:58.992 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:54:58.992 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:54:58.992 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lm9v0ir9i1vgljb0j6hrhcv5hs1236nt -- 17:54:58.992 INFO [30474]: QUERY_STRING = /member/addcard -- 17:54:58.992 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:54:59.026 INFO [30474]: COREGRADE is stopping... -- 17:54:59.027 DEBUG [30474]: Closing database connection -- 17:54:59.027 SQL [30474]: pgsql_close() -- 17:54:59.185 INFO [30474]: COREGRADE is starting... -- 17:54:59.185 INFO [30474]: Version from config: 1.0 -- 17:54:59.185 DEBUG [30474]: Connecting to database... -- 17:54:59.185 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:54:59.185 SQL [30474]: pgsql_db_connect() -- 17:54:59.189 DEBUG [30474]: Database connection successful -- 17:54:59.189 INFO [30474]: _SERVER found -- 17:54:59.190 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:54:59.190 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:54:59.190 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lm9v0ir9i1vgljb0j6hrhcv5hs1236nt -- 17:54:59.190 INFO [30474]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:54:59.190 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:54:59.201 INFO [30474]: COREGRADE is stopping... -- 17:54:59.201 DEBUG [30474]: Closing database connection -- 17:54:59.201 SQL [30474]: pgsql_close() -- 17:54:59.366 INFO [30474]: COREGRADE is starting... -- 17:54:59.366 INFO [30474]: Version from config: 1.0 -- 17:54:59.366 DEBUG [30474]: Connecting to database... -- 17:54:59.366 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:54:59.366 SQL [30474]: pgsql_db_connect() -- 17:54:59.370 DEBUG [30474]: Database connection successful -- 17:54:59.370 INFO [30474]: _SERVER found -- 17:54:59.370 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:54:59.370 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:54:59.370 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lm9v0ir9i1vgljb0j6hrhcv5hs1236nt -- 17:54:59.370 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:54:59.370 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:54:59.381 INFO [30474]: COREGRADE is stopping... -- 17:54:59.381 DEBUG [30474]: Closing database connection -- 17:54:59.381 SQL [30474]: pgsql_close() -- 17:54:59.848 INFO [30474]: COREGRADE is starting... -- 17:54:59.848 INFO [30474]: Version from config: 1.0 -- 17:54:59.848 DEBUG [30474]: Connecting to database... -- 17:54:59.848 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:54:59.848 SQL [30474]: pgsql_db_connect() -- 17:54:59.853 DEBUG [30474]: Database connection successful -- 17:54:59.853 INFO [30474]: _SERVER found -- 17:54:59.853 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:54:59.853 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:54:59.853 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lm9v0ir9i1vgljb0j6hrhcv5hs1236nt -- 17:54:59.853 INFO [30474]: QUERY_STRING = /member/addcard -- 17:54:59.853 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:54:59.887 INFO [30474]: COREGRADE is stopping... -- 17:54:59.887 DEBUG [30474]: Closing database connection -- 17:54:59.887 SQL [30474]: pgsql_close() -- 17:55:00.140 INFO [30474]: COREGRADE is starting... -- 17:55:00.140 INFO [30474]: Version from config: 1.0 -- 17:55:00.140 DEBUG [30474]: Connecting to database... -- 17:55:00.140 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:55:00.140 SQL [30474]: pgsql_db_connect() -- 17:55:00.145 DEBUG [30474]: Database connection successful -- 17:55:00.145 INFO [30474]: _SERVER found -- 17:55:00.145 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:55:00.145 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:55:00.145 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lm9v0ir9i1vgljb0j6hrhcv5hs1236nt -- 17:55:00.145 INFO [30474]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:55:00.145 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:55:00.156 INFO [30474]: COREGRADE is stopping... -- 17:55:00.156 DEBUG [30474]: Closing database connection -- 17:55:00.156 SQL [30474]: pgsql_close() -- 17:55:00.298 INFO [30474]: COREGRADE is starting... -- 17:55:00.298 INFO [30474]: Version from config: 1.0 -- 17:55:00.298 DEBUG [30474]: Connecting to database... -- 17:55:00.298 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:55:00.298 SQL [30474]: pgsql_db_connect() -- 17:55:00.302 DEBUG [30474]: Database connection successful -- 17:55:00.302 INFO [30474]: _SERVER found -- 17:55:00.302 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:55:00.302 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:55:00.303 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lm9v0ir9i1vgljb0j6hrhcv5hs1236nt -- 17:55:00.303 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:55:00.303 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:55:00.313 INFO [30474]: COREGRADE is stopping... -- 17:55:00.314 DEBUG [30474]: Closing database connection -- 17:55:00.314 SQL [30474]: pgsql_close() -- 17:55:00.949 INFO [30474]: COREGRADE is starting... -- 17:55:00.949 INFO [30474]: Version from config: 1.0 -- 17:55:00.949 DEBUG [30474]: Connecting to database... -- 17:55:00.949 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:55:00.949 SQL [30474]: pgsql_db_connect() -- 17:55:00.953 DEBUG [30474]: Database connection successful -- 17:55:00.953 INFO [30474]: _SERVER found -- 17:55:00.953 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:55:00.953 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:55:00.953 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lm9v0ir9i1vgljb0j6hrhcv5hs1236nt -- 17:55:00.953 INFO [30474]: QUERY_STRING = /member/addcard -- 17:55:00.953 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:55:00.988 INFO [30474]: COREGRADE is stopping... -- 17:55:00.988 DEBUG [30474]: Closing database connection -- 17:55:00.988 SQL [30474]: pgsql_close() -- 17:55:01.219 INFO [30474]: COREGRADE is starting... -- 17:55:01.220 INFO [30474]: Version from config: 1.0 -- 17:55:01.220 DEBUG [30474]: Connecting to database... -- 17:55:01.220 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:55:01.220 SQL [30474]: pgsql_db_connect() -- 17:55:01.225 DEBUG [30474]: Database connection successful -- 17:55:01.225 INFO [30474]: _SERVER found -- 17:55:01.225 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:55:01.225 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:55:01.225 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lm9v0ir9i1vgljb0j6hrhcv5hs1236nt -- 17:55:01.225 INFO [30474]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:55:01.225 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:55:01.236 INFO [30474]: COREGRADE is stopping... -- 17:55:01.236 DEBUG [30474]: Closing database connection -- 17:55:01.236 SQL [30474]: pgsql_close() -- 17:55:01.349 INFO [30474]: COREGRADE is starting... -- 17:55:01.349 INFO [30474]: Version from config: 1.0 -- 17:55:01.349 DEBUG [30474]: Connecting to database... -- 17:55:01.349 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:55:01.349 SQL [30474]: pgsql_db_connect() -- 17:55:01.353 DEBUG [30474]: Database connection successful -- 17:55:01.353 INFO [30474]: _SERVER found -- 17:55:01.353 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:55:01.353 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:55:01.353 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lm9v0ir9i1vgljb0j6hrhcv5hs1236nt -- 17:55:01.353 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:55:01.353 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:55:01.365 INFO [30474]: COREGRADE is stopping... -- 17:55:01.365 DEBUG [30474]: Closing database connection -- 17:55:01.365 SQL [30474]: pgsql_close() -- 17:55:02.883 INFO [30474]: COREGRADE is starting... -- 17:55:02.883 INFO [30474]: Version from config: 1.0 -- 17:55:02.883 DEBUG [30474]: Connecting to database... -- 17:55:02.883 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:55:02.883 SQL [30474]: pgsql_db_connect() -- 17:55:02.888 DEBUG [30474]: Database connection successful -- 17:55:02.888 INFO [30474]: _SERVER found -- 17:55:02.888 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:55:02.888 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:55:02.888 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lm9v0ir9i1vgljb0j6hrhcv5hs1236nt -- 17:55:02.888 INFO [30474]: QUERY_STRING = /member/addcard -- 17:55:02.888 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:55:02.922 INFO [30474]: COREGRADE is stopping... -- 17:55:02.922 DEBUG [30474]: Closing database connection -- 17:55:02.922 SQL [30474]: pgsql_close() -- 17:55:03.133 INFO [30474]: COREGRADE is starting... -- 17:55:03.133 INFO [30474]: Version from config: 1.0 -- 17:55:03.133 DEBUG [30474]: Connecting to database... -- 17:55:03.133 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:55:03.133 SQL [30474]: pgsql_db_connect() -- 17:55:03.137 DEBUG [30474]: Database connection successful -- 17:55:03.137 INFO [30474]: _SERVER found -- 17:55:03.137 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:55:03.137 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:55:03.137 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lm9v0ir9i1vgljb0j6hrhcv5hs1236nt -- 17:55:03.137 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:55:03.137 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:55:03.148 INFO [30474]: COREGRADE is stopping... -- 17:55:03.148 DEBUG [30474]: Closing database connection -- 17:55:03.148 SQL [30474]: pgsql_close() -- 17:55:05.218 INFO [30474]: COREGRADE is starting... -- 17:55:05.218 INFO [30474]: Version from config: 1.0 -- 17:55:05.218 DEBUG [30474]: Connecting to database... -- 17:55:05.218 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:55:05.218 SQL [30474]: pgsql_db_connect() -- 17:55:05.222 DEBUG [30474]: Database connection successful -- 17:55:05.222 INFO [30474]: _SERVER found -- 17:55:05.222 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:55:05.222 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:55:05.222 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lm9v0ir9i1vgljb0j6hrhcv5hs1236nt -- 17:55:05.222 INFO [30474]: QUERY_STRING = /member/addcard -- 17:55:05.222 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:55:05.257 INFO [30474]: COREGRADE is stopping... -- 17:55:05.257 DEBUG [30474]: Closing database connection -- 17:55:05.257 SQL [30474]: pgsql_close() -- 17:55:05.364 INFO [30474]: COREGRADE is starting... -- 17:55:05.364 INFO [30474]: Version from config: 1.0 -- 17:55:05.364 DEBUG [30474]: Connecting to database... -- 17:55:05.364 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:55:05.364 SQL [30474]: pgsql_db_connect() -- 17:55:05.368 DEBUG [30474]: Database connection successful -- 17:55:05.368 INFO [30474]: _SERVER found -- 17:55:05.368 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 17:55:05.368 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 17:55:05.368 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lm9v0ir9i1vgljb0j6hrhcv5hs1236nt -- 17:55:05.368 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:55:05.368 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:55:05.379 INFO [30474]: COREGRADE is stopping... -- 17:55:05.379 DEBUG [30474]: Closing database connection -- 17:55:05.379 SQL [30474]: pgsql_close() -- 17:56:15.250 INFO [30475]: COREGRADE is starting... -- 17:56:15.250 INFO [30475]: Version from config: 1.0 -- 17:56:15.251 DEBUG [30475]: Connecting to database... -- 17:56:15.251 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:56:15.251 SQL [30475]: pgsql_db_connect() -- 17:56:15.255 DEBUG [30475]: Database connection successful -- 17:56:15.255 INFO [30475]: _SERVER found -- 17:56:15.255 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 17:56:15.255 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 17:56:15.255 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lm9v0ir9i1vgljb0j6hrhcv5hs1236nt -- 17:56:15.255 INFO [30475]: QUERY_STRING = /member/addcard -- 17:56:15.255 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:56:15.290 INFO [30475]: COREGRADE is stopping... -- 17:56:15.290 DEBUG [30475]: Closing database connection -- 17:56:15.290 SQL [30475]: pgsql_close() -- 17:56:15.518 INFO [30475]: COREGRADE is starting... -- 17:56:15.518 INFO [30475]: Version from config: 1.0 -- 17:56:15.518 DEBUG [30475]: Connecting to database... -- 17:56:15.518 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:56:15.518 SQL [30475]: pgsql_db_connect() -- 17:56:15.523 DEBUG [30475]: Database connection successful -- 17:56:15.523 INFO [30475]: _SERVER found -- 17:56:15.523 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 17:56:15.523 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 17:56:15.523 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lm9v0ir9i1vgljb0j6hrhcv5hs1236nt -- 17:56:15.523 INFO [30475]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:56:15.523 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:56:15.534 INFO [30475]: COREGRADE is stopping... -- 17:56:15.534 DEBUG [30475]: Closing database connection -- 17:56:15.534 SQL [30475]: pgsql_close() -- 17:56:15.555 INFO [30475]: COREGRADE is starting... -- 17:56:15.555 INFO [30475]: Version from config: 1.0 -- 17:56:15.555 DEBUG [30475]: Connecting to database... -- 17:56:15.555 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:56:15.555 SQL [30475]: pgsql_db_connect() -- 17:56:15.559 DEBUG [30475]: Database connection successful -- 17:56:15.559 INFO [30475]: _SERVER found -- 17:56:15.559 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 17:56:15.559 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 17:56:15.559 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lm9v0ir9i1vgljb0j6hrhcv5hs1236nt -- 17:56:15.559 INFO [30475]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:56:15.559 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:56:15.570 INFO [30475]: COREGRADE is stopping... -- 17:56:15.570 DEBUG [30475]: Closing database connection -- 17:56:15.570 SQL [30475]: pgsql_close() -- 17:56:30.021 INFO [24184]: COREGRADE is starting... -- 17:56:30.021 INFO [24184]: Version from config: 1.0 -- 17:56:30.021 DEBUG [24184]: Connecting to database... -- 17:56:30.022 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:56:30.022 SQL [24184]: pgsql_db_connect() -- 17:56:30.026 DEBUG [24184]: Database connection successful -- 17:56:30.026 INFO [24184]: _SERVER found -- 17:56:30.026 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 17:56:30.026 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 17:56:30.026 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lm9v0ir9i1vgljb0j6hrhcv5hs1236nt -- 17:56:30.026 INFO [24184]: QUERY_STRING = /member/addcard -- 17:56:30.026 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:56:30.064 INFO [24184]: COREGRADE is stopping... -- 17:56:30.064 DEBUG [24184]: Closing database connection -- 17:56:30.064 SQL [24184]: pgsql_close() -- 17:56:30.300 INFO [24184]: COREGRADE is starting... -- 17:56:30.300 INFO [24184]: Version from config: 1.0 -- 17:56:30.300 DEBUG [24184]: Connecting to database... -- 17:56:30.300 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:56:30.300 SQL [24184]: pgsql_db_connect() -- 17:56:30.304 DEBUG [24184]: Database connection successful -- 17:56:30.304 INFO [24184]: _SERVER found -- 17:56:30.304 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 17:56:30.304 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 17:56:30.304 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lm9v0ir9i1vgljb0j6hrhcv5hs1236nt -- 17:56:30.304 INFO [24184]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:56:30.304 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:56:30.316 INFO [24184]: COREGRADE is stopping... -- 17:56:30.316 DEBUG [24184]: Closing database connection -- 17:56:30.316 SQL [24184]: pgsql_close() -- 17:56:30.500 INFO [24184]: COREGRADE is starting... -- 17:56:30.500 INFO [24184]: Version from config: 1.0 -- 17:56:30.500 DEBUG [24184]: Connecting to database... -- 17:56:30.500 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:56:30.500 SQL [24184]: pgsql_db_connect() -- 17:56:30.505 DEBUG [24184]: Database connection successful -- 17:56:30.505 INFO [24184]: _SERVER found -- 17:56:30.505 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 17:56:30.505 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 17:56:30.505 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lm9v0ir9i1vgljb0j6hrhcv5hs1236nt -- 17:56:30.505 INFO [24184]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:56:30.505 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:56:30.516 INFO [24184]: COREGRADE is stopping... -- 17:56:30.516 DEBUG [24184]: Closing database connection -- 17:56:30.516 SQL [24184]: pgsql_close() -- 17:56:31.136 INFO [24184]: COREGRADE is starting... -- 17:56:31.137 INFO [24184]: Version from config: 1.0 -- 17:56:31.137 DEBUG [24184]: Connecting to database... -- 17:56:31.137 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:56:31.137 SQL [24184]: pgsql_db_connect() -- 17:56:31.141 DEBUG [24184]: Database connection successful -- 17:56:31.141 INFO [24184]: _SERVER found -- 17:56:31.141 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 17:56:31.141 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 17:56:31.141 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lm9v0ir9i1vgljb0j6hrhcv5hs1236nt -- 17:56:31.141 INFO [24184]: QUERY_STRING = /member/addcard -- 17:56:31.141 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:56:31.178 INFO [24184]: COREGRADE is stopping... -- 17:56:31.178 DEBUG [24184]: Closing database connection -- 17:56:31.178 SQL [24184]: pgsql_close() -- 17:56:31.465 INFO [24184]: COREGRADE is starting... -- 17:56:31.465 INFO [24184]: Version from config: 1.0 -- 17:56:31.465 DEBUG [24184]: Connecting to database... -- 17:56:31.465 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:56:31.465 SQL [24184]: pgsql_db_connect() -- 17:56:31.469 DEBUG [24184]: Database connection successful -- 17:56:31.469 INFO [24184]: _SERVER found -- 17:56:31.469 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 17:56:31.469 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 17:56:31.469 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lm9v0ir9i1vgljb0j6hrhcv5hs1236nt -- 17:56:31.469 INFO [24184]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:56:31.469 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:56:31.480 INFO [24184]: COREGRADE is stopping... -- 17:56:31.480 DEBUG [24184]: Closing database connection -- 17:56:31.480 SQL [24184]: pgsql_close() -- 17:56:31.654 INFO [24184]: COREGRADE is starting... -- 17:56:31.654 INFO [24184]: Version from config: 1.0 -- 17:56:31.654 DEBUG [24184]: Connecting to database... -- 17:56:31.654 DEBUG [24184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:56:31.654 SQL [24184]: pgsql_db_connect() -- 17:56:31.658 DEBUG [24184]: Database connection successful -- 17:56:31.658 INFO [24184]: _SERVER found -- 17:56:31.658 INFO [24184]: REMOTE_ADDR = 192.168.1.13 -- 17:56:31.658 INFO [24184]: SERVER_NAME = oameye.works.coregrade.com -- 17:56:31.658 INFO [24184]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lm9v0ir9i1vgljb0j6hrhcv5hs1236nt -- 17:56:31.658 INFO [24184]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:56:31.658 INFO [24184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:56:31.669 INFO [24184]: COREGRADE is stopping... -- 17:56:31.669 DEBUG [24184]: Closing database connection -- 17:56:31.669 SQL [24184]: pgsql_close() -- 17:58:41.237 INFO [24139]: COREGRADE is starting... -- 17:58:41.237 INFO [24139]: Version from config: 1.0 -- 17:58:41.237 DEBUG [24139]: Connecting to database... -- 17:58:41.237 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:58:41.237 SQL [24139]: pgsql_db_connect() -- 17:58:41.241 DEBUG [24139]: Database connection successful -- 17:58:41.241 INFO [24139]: _SERVER found -- 17:58:41.241 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 17:58:41.241 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 17:58:41.241 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lm9v0ir9i1vgljb0j6hrhcv5hs1236nt -- 17:58:41.241 INFO [24139]: QUERY_STRING = /member/addcard -- 17:58:41.241 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:58:41.280 INFO [24139]: COREGRADE is stopping... -- 17:58:41.280 DEBUG [24139]: Closing database connection -- 17:58:41.280 SQL [24139]: pgsql_close() -- 17:58:41.535 INFO [24139]: COREGRADE is starting... -- 17:58:41.536 INFO [24139]: Version from config: 1.0 -- 17:58:41.536 DEBUG [24139]: Connecting to database... -- 17:58:41.536 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:58:41.536 SQL [24139]: pgsql_db_connect() -- 17:58:41.540 DEBUG [24139]: Database connection successful -- 17:58:41.540 INFO [24139]: _SERVER found -- 17:58:41.540 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 17:58:41.540 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 17:58:41.540 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lm9v0ir9i1vgljb0j6hrhcv5hs1236nt -- 17:58:41.540 INFO [24139]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:58:41.540 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:58:41.551 INFO [24139]: COREGRADE is stopping... -- 17:58:41.551 DEBUG [24139]: Closing database connection -- 17:58:41.552 SQL [24139]: pgsql_close() -- 17:58:41.870 INFO [24139]: COREGRADE is starting... -- 17:58:41.870 INFO [24139]: Version from config: 1.0 -- 17:58:41.870 DEBUG [24139]: Connecting to database... -- 17:58:41.870 DEBUG [24139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:58:41.870 SQL [24139]: pgsql_db_connect() -- 17:58:41.875 DEBUG [24139]: Database connection successful -- 17:58:41.875 INFO [24139]: _SERVER found -- 17:58:41.875 INFO [24139]: REMOTE_ADDR = 192.168.1.13 -- 17:58:41.875 INFO [24139]: SERVER_NAME = oameye.works.coregrade.com -- 17:58:41.875 INFO [24139]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lm9v0ir9i1vgljb0j6hrhcv5hs1236nt -- 17:58:41.875 INFO [24139]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:58:41.875 INFO [24139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:58:41.886 INFO [24139]: COREGRADE is stopping... -- 17:58:41.886 DEBUG [24139]: Closing database connection -- 17:58:41.886 SQL [24139]: pgsql_close() -- 17:59:53.019 INFO [30492]: COREGRADE is starting... -- 17:59:53.019 INFO [30492]: Version from config: 1.0 -- 17:59:53.019 DEBUG [30492]: Connecting to database... -- 17:59:53.020 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:59:53.020 SQL [30492]: pgsql_db_connect() -- 17:59:53.024 DEBUG [30492]: Database connection successful -- 17:59:53.024 INFO [30492]: _SERVER found -- 17:59:53.024 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 17:59:53.024 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 17:59:53.024 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lm9v0ir9i1vgljb0j6hrhcv5hs1236nt -- 17:59:53.024 INFO [30492]: QUERY_STRING = /member/addcard -- 17:59:53.024 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:59:53.060 INFO [30492]: COREGRADE is stopping... -- 17:59:53.060 DEBUG [30492]: Closing database connection -- 17:59:53.060 SQL [30492]: pgsql_close() -- 17:59:53.290 INFO [30492]: COREGRADE is starting... -- 17:59:53.291 INFO [30492]: Version from config: 1.0 -- 17:59:53.291 DEBUG [30492]: Connecting to database... -- 17:59:53.291 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:59:53.291 SQL [30492]: pgsql_db_connect() -- 17:59:53.295 DEBUG [30492]: Database connection successful -- 17:59:53.295 INFO [30492]: _SERVER found -- 17:59:53.295 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 17:59:53.295 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 17:59:53.295 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lm9v0ir9i1vgljb0j6hrhcv5hs1236nt -- 17:59:53.295 INFO [30492]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:59:53.295 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:59:53.306 INFO [30492]: COREGRADE is stopping... -- 17:59:53.306 DEBUG [30492]: Closing database connection -- 17:59:53.306 SQL [30492]: pgsql_close() -- 17:59:53.521 INFO [30492]: COREGRADE is starting... -- 17:59:53.521 INFO [30492]: Version from config: 1.0 -- 17:59:53.521 DEBUG [30492]: Connecting to database... -- 17:59:53.521 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:59:53.521 SQL [30492]: pgsql_db_connect() -- 17:59:53.526 DEBUG [30492]: Database connection successful -- 17:59:53.526 INFO [30492]: _SERVER found -- 17:59:53.526 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 17:59:53.526 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 17:59:53.526 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lm9v0ir9i1vgljb0j6hrhcv5hs1236nt -- 17:59:53.526 INFO [30492]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:59:53.526 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:59:53.537 INFO [30492]: COREGRADE is stopping... -- 17:59:53.537 DEBUG [30492]: Closing database connection -- 17:59:53.537 SQL [30492]: pgsql_close() -- 17:59:55.308 INFO [30492]: COREGRADE is starting... -- 17:59:55.308 INFO [30492]: Version from config: 1.0 -- 17:59:55.308 DEBUG [30492]: Connecting to database... -- 17:59:55.308 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:59:55.308 SQL [30492]: pgsql_db_connect() -- 17:59:55.312 DEBUG [30492]: Database connection successful -- 17:59:55.312 INFO [30492]: _SERVER found -- 17:59:55.312 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 17:59:55.312 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 17:59:55.312 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lm9v0ir9i1vgljb0j6hrhcv5hs1236nt -- 17:59:55.312 INFO [30492]: QUERY_STRING = /member/addcard -- 17:59:55.312 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:59:55.347 INFO [30492]: COREGRADE is stopping... -- 17:59:55.347 DEBUG [30492]: Closing database connection -- 17:59:55.347 SQL [30492]: pgsql_close() -- 17:59:55.645 INFO [30492]: COREGRADE is starting... -- 17:59:55.646 INFO [30492]: Version from config: 1.0 -- 17:59:55.646 DEBUG [30492]: Connecting to database... -- 17:59:55.646 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:59:55.646 SQL [30492]: pgsql_db_connect() -- 17:59:55.650 DEBUG [30492]: Database connection successful -- 17:59:55.650 INFO [30492]: _SERVER found -- 17:59:55.650 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 17:59:55.650 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 17:59:55.650 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lm9v0ir9i1vgljb0j6hrhcv5hs1236nt -- 17:59:55.650 INFO [30492]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:59:55.650 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:59:55.661 INFO [30492]: COREGRADE is stopping... -- 17:59:55.661 DEBUG [30492]: Closing database connection -- 17:59:55.661 SQL [30492]: pgsql_close() -- 17:59:55.900 INFO [30492]: COREGRADE is starting... -- 17:59:55.900 INFO [30492]: Version from config: 1.0 -- 17:59:55.900 DEBUG [30492]: Connecting to database... -- 17:59:55.900 DEBUG [30492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:59:55.900 SQL [30492]: pgsql_db_connect() -- 17:59:55.904 DEBUG [30492]: Database connection successful -- 17:59:55.904 INFO [30492]: _SERVER found -- 17:59:55.904 INFO [30492]: REMOTE_ADDR = 192.168.1.13 -- 17:59:55.904 INFO [30492]: SERVER_NAME = oameye.works.coregrade.com -- 17:59:55.904 INFO [30492]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lm9v0ir9i1vgljb0j6hrhcv5hs1236nt -- 17:59:55.904 INFO [30492]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:59:55.904 INFO [30492]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:59:55.915 INFO [30492]: COREGRADE is stopping... -- 17:59:55.915 DEBUG [30492]: Closing database connection -- 17:59:55.915 SQL [30492]: pgsql_close() -- 18:07:15.695 INFO [24136]: COREGRADE is starting... -- 18:07:15.696 INFO [24136]: Version from config: 1.0 -- 18:07:15.696 DEBUG [24136]: Connecting to database... -- 18:07:15.696 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:15.696 SQL [24136]: pgsql_db_connect() -- 18:07:15.700 DEBUG [24136]: Database connection successful -- 18:07:15.700 INFO [24136]: _SERVER found -- 18:07:15.700 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 18:07:15.700 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 18:07:15.700 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lm9v0ir9i1vgljb0j6hrhcv5hs1236nt -- 18:07:15.700 INFO [24136]: QUERY_STRING = /member/addcard -- 18:07:15.700 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:07:15.739 INFO [24136]: COREGRADE is stopping... -- 18:07:15.739 DEBUG [24136]: Closing database connection -- 18:07:15.739 SQL [24136]: pgsql_close() -- 18:07:16.042 INFO [24136]: COREGRADE is starting... -- 18:07:16.042 INFO [24136]: Version from config: 1.0 -- 18:07:16.042 DEBUG [24136]: Connecting to database... -- 18:07:16.043 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:16.043 SQL [24136]: pgsql_db_connect() -- 18:07:16.047 DEBUG [24136]: Database connection successful -- 18:07:16.047 INFO [24136]: _SERVER found -- 18:07:16.047 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 18:07:16.047 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 18:07:16.047 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=6cl2dfv6g4ut1s7ps9h3bv4rmnpbm3kl -- 18:07:16.047 INFO [24136]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:07:16.047 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:07:16.058 INFO [24136]: COREGRADE is stopping... -- 18:07:16.058 DEBUG [24136]: Closing database connection -- 18:07:16.058 SQL [24136]: pgsql_close() -- 18:07:16.097 INFO [24136]: COREGRADE is starting... -- 18:07:16.098 INFO [24136]: Version from config: 1.0 -- 18:07:16.098 DEBUG [24136]: Connecting to database... -- 18:07:16.098 DEBUG [24136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:16.098 SQL [24136]: pgsql_db_connect() -- 18:07:16.102 DEBUG [24136]: Database connection successful -- 18:07:16.102 INFO [24136]: _SERVER found -- 18:07:16.102 INFO [24136]: REMOTE_ADDR = 192.168.1.13 -- 18:07:16.102 INFO [24136]: SERVER_NAME = oameye.works.coregrade.com -- 18:07:16.102 INFO [24136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=6cl2dfv6g4ut1s7ps9h3bv4rmnpbm3kl -- 18:07:16.102 INFO [24136]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:07:16.102 INFO [24136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:07:16.113 INFO [24136]: COREGRADE is stopping... -- 18:07:16.113 DEBUG [24136]: Closing database connection -- 18:07:16.113 SQL [24136]: pgsql_close() -- 18:07:24.842 INFO [24137]: COREGRADE is starting... -- 18:07:24.842 INFO [24137]: Version from config: 1.0 -- 18:07:24.842 DEBUG [24137]: Connecting to database... -- 18:07:24.842 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:24.842 SQL [24137]: pgsql_db_connect() -- 18:07:24.847 DEBUG [24137]: Database connection successful -- 18:07:24.847 INFO [24137]: _SERVER found -- 18:07:24.847 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 18:07:24.847 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 18:07:24.847 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=p9iammvo182ac7n6cus2fh36eo24c234 -- 18:07:24.847 INFO [24137]: QUERY_STRING = /member/configure -- 18:07:24.847 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:07:24.883 INFO [24137]: COREGRADE is stopping... -- 18:07:24.883 DEBUG [24137]: Closing database connection -- 18:07:24.883 SQL [24137]: pgsql_close() -- 18:07:25.483 INFO [24137]: COREGRADE is starting... -- 18:07:25.483 INFO [24137]: Version from config: 1.0 -- 18:07:25.483 DEBUG [24137]: Connecting to database... -- 18:07:25.483 DEBUG [24137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:25.483 SQL [24137]: pgsql_db_connect() -- 18:07:25.487 DEBUG [24137]: Database connection successful -- 18:07:25.487 INFO [24137]: _SERVER found -- 18:07:25.487 INFO [24137]: REMOTE_ADDR = 192.168.1.13 -- 18:07:25.487 INFO [24137]: SERVER_NAME = oameye.works.coregrade.com -- 18:07:25.487 INFO [24137]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:07:25.487 INFO [24137]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:07:25.487 INFO [24137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:07:25.498 INFO [24137]: COREGRADE is stopping... -- 18:07:25.498 DEBUG [24137]: Closing database connection -- 18:07:25.498 SQL [24137]: pgsql_close() -- 18:07:25.518 INFO [24138]: COREGRADE is starting... -- 18:07:25.519 INFO [24138]: Version from config: 1.0 -- 18:07:25.519 DEBUG [24138]: Connecting to database... -- 18:07:25.519 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:25.519 SQL [24138]: pgsql_db_connect() -- 18:07:25.522 DEBUG [24138]: Database connection successful -- 18:07:25.522 INFO [24138]: _SERVER found -- 18:07:25.522 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 18:07:25.522 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 18:07:25.522 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:07:25.522 INFO [24138]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:07:25.522 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:07:25.534 INFO [24138]: COREGRADE is stopping... -- 18:07:25.534 DEBUG [24138]: Closing database connection -- 18:07:25.534 SQL [24138]: pgsql_close() -- 18:07:27.910 INFO [24138]: COREGRADE is starting... -- 18:07:27.910 INFO [24138]: Version from config: 1.0 -- 18:07:27.910 DEBUG [24138]: Connecting to database... -- 18:07:27.910 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:27.910 SQL [24138]: pgsql_db_connect() -- 18:07:27.914 DEBUG [24138]: Database connection successful -- 18:07:27.914 INFO [24138]: _SERVER found -- 18:07:27.914 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 18:07:27.914 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 18:07:27.914 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:07:27.914 INFO [24138]: QUERY_STRING = /member/addcard -- 18:07:27.914 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:07:27.950 INFO [24138]: COREGRADE is stopping... -- 18:07:27.950 DEBUG [24138]: Closing database connection -- 18:07:27.950 SQL [24138]: pgsql_close() -- 18:07:28.198 INFO [24138]: COREGRADE is starting... -- 18:07:28.198 INFO [24138]: Version from config: 1.0 -- 18:07:28.198 DEBUG [24138]: Connecting to database... -- 18:07:28.198 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:28.198 SQL [24138]: pgsql_db_connect() -- 18:07:28.203 DEBUG [24138]: Database connection successful -- 18:07:28.203 INFO [24138]: _SERVER found -- 18:07:28.203 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 18:07:28.203 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 18:07:28.203 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:07:28.203 INFO [24138]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:07:28.203 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:07:28.214 INFO [24138]: COREGRADE is stopping... -- 18:07:28.214 DEBUG [24138]: Closing database connection -- 18:07:28.214 SQL [24138]: pgsql_close() -- 18:07:28.318 INFO [24138]: COREGRADE is starting... -- 18:07:28.319 INFO [24138]: Version from config: 1.0 -- 18:07:28.319 DEBUG [24138]: Connecting to database... -- 18:07:28.319 DEBUG [24138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:28.319 SQL [24138]: pgsql_db_connect() -- 18:07:28.323 DEBUG [24138]: Database connection successful -- 18:07:28.323 INFO [24138]: _SERVER found -- 18:07:28.323 INFO [24138]: REMOTE_ADDR = 192.168.1.13 -- 18:07:28.323 INFO [24138]: SERVER_NAME = oameye.works.coregrade.com -- 18:07:28.323 INFO [24138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:07:28.323 INFO [24138]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:07:28.323 INFO [24138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:07:28.334 INFO [24138]: COREGRADE is stopping... -- 18:07:28.334 DEBUG [24138]: Closing database connection -- 18:07:28.334 SQL [24138]: pgsql_close() -- 18:08:23.483 INFO [30476]: COREGRADE is starting... -- 18:08:23.484 INFO [30476]: Version from config: 1.0 -- 18:08:23.484 DEBUG [30476]: Connecting to database... -- 18:08:23.484 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:23.484 SQL [30476]: pgsql_db_connect() -- 18:08:23.488 DEBUG [30476]: Database connection successful -- 18:08:23.488 INFO [30476]: _SERVER found -- 18:08:23.488 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 18:08:23.488 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 18:08:23.488 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=6cl2dfv6g4ut1s7ps9h3bv4rmnpbm3kl -- 18:08:23.488 INFO [30476]: QUERY_STRING = /member/addcard -- 18:08:23.488 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:23.524 INFO [30476]: COREGRADE is stopping... -- 18:08:23.524 DEBUG [30476]: Closing database connection -- 18:08:23.524 SQL [30476]: pgsql_close() -- 18:08:23.785 INFO [30476]: COREGRADE is starting... -- 18:08:23.785 INFO [30476]: Version from config: 1.0 -- 18:08:23.785 DEBUG [30476]: Connecting to database... -- 18:08:23.785 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:23.785 SQL [30476]: pgsql_db_connect() -- 18:08:23.790 DEBUG [30476]: Database connection successful -- 18:08:23.790 INFO [30476]: _SERVER found -- 18:08:23.790 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 18:08:23.790 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 18:08:23.790 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=6cl2dfv6g4ut1s7ps9h3bv4rmnpbm3kl -- 18:08:23.790 INFO [30476]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:08:23.790 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:23.801 INFO [30476]: COREGRADE is stopping... -- 18:08:23.801 DEBUG [30476]: Closing database connection -- 18:08:23.801 SQL [30476]: pgsql_close() -- 18:08:24.031 INFO [30476]: COREGRADE is starting... -- 18:08:24.031 INFO [30476]: Version from config: 1.0 -- 18:08:24.031 DEBUG [30476]: Connecting to database... -- 18:08:24.031 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:24.031 SQL [30476]: pgsql_db_connect() -- 18:08:24.035 DEBUG [30476]: Database connection successful -- 18:08:24.035 INFO [30476]: _SERVER found -- 18:08:24.035 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 18:08:24.035 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 18:08:24.035 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=6cl2dfv6g4ut1s7ps9h3bv4rmnpbm3kl -- 18:08:24.035 INFO [30476]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:08:24.035 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:24.046 INFO [30476]: COREGRADE is stopping... -- 18:08:24.046 DEBUG [30476]: Closing database connection -- 18:08:24.046 SQL [30476]: pgsql_close() -- 18:08:28.099 INFO [30476]: COREGRADE is starting... -- 18:08:28.099 INFO [30476]: Version from config: 1.0 -- 18:08:28.099 DEBUG [30476]: Connecting to database... -- 18:08:28.099 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:28.099 SQL [30476]: pgsql_db_connect() -- 18:08:28.103 DEBUG [30476]: Database connection successful -- 18:08:28.103 INFO [30476]: _SERVER found -- 18:08:28.103 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 18:08:28.103 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 18:08:28.103 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:08:28.103 INFO [30476]: QUERY_STRING = /member/addcard -- 18:08:28.103 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:28.137 INFO [30476]: COREGRADE is stopping... -- 18:08:28.137 DEBUG [30476]: Closing database connection -- 18:08:28.137 SQL [30476]: pgsql_close() -- 18:08:28.757 INFO [30476]: COREGRADE is starting... -- 18:08:28.757 INFO [30476]: Version from config: 1.0 -- 18:08:28.757 DEBUG [30476]: Connecting to database... -- 18:08:28.757 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:28.757 SQL [30476]: pgsql_db_connect() -- 18:08:28.761 DEBUG [30476]: Database connection successful -- 18:08:28.761 INFO [30476]: _SERVER found -- 18:08:28.761 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 18:08:28.761 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 18:08:28.761 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:08:28.761 INFO [30476]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:08:28.761 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:28.772 INFO [30476]: COREGRADE is stopping... -- 18:08:28.772 DEBUG [30476]: Closing database connection -- 18:08:28.772 SQL [30476]: pgsql_close() -- 18:08:28.780 INFO [30476]: COREGRADE is starting... -- 18:08:28.780 INFO [30476]: Version from config: 1.0 -- 18:08:28.780 DEBUG [30476]: Connecting to database... -- 18:08:28.780 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:28.780 SQL [30476]: pgsql_db_connect() -- 18:08:28.784 DEBUG [30476]: Database connection successful -- 18:08:28.784 INFO [30476]: _SERVER found -- 18:08:28.784 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 18:08:28.784 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 18:08:28.784 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:08:28.784 INFO [30476]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:08:28.784 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:28.795 INFO [30476]: COREGRADE is stopping... -- 18:08:28.795 DEBUG [30476]: Closing database connection -- 18:08:28.795 SQL [30476]: pgsql_close() -- 18:08:30.325 INFO [30476]: COREGRADE is starting... -- 18:08:30.325 INFO [30476]: Version from config: 1.0 -- 18:08:30.325 DEBUG [30476]: Connecting to database... -- 18:08:30.325 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:30.325 SQL [30476]: pgsql_db_connect() -- 18:08:30.329 DEBUG [30476]: Database connection successful -- 18:08:30.329 INFO [30476]: _SERVER found -- 18:08:30.329 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 18:08:30.329 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 18:08:30.329 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:08:30.329 INFO [30476]: QUERY_STRING = /member/addcard -- 18:08:30.329 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:30.364 INFO [30476]: COREGRADE is stopping... -- 18:08:30.364 DEBUG [30476]: Closing database connection -- 18:08:30.364 SQL [30476]: pgsql_close() -- 18:08:30.730 INFO [30476]: COREGRADE is starting... -- 18:08:30.730 INFO [30476]: Version from config: 1.0 -- 18:08:30.730 DEBUG [30476]: Connecting to database... -- 18:08:30.730 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:30.730 SQL [30476]: pgsql_db_connect() -- 18:08:30.734 DEBUG [30476]: Database connection successful -- 18:08:30.734 INFO [30476]: _SERVER found -- 18:08:30.734 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 18:08:30.734 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 18:08:30.734 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:08:30.734 INFO [30476]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:08:30.734 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:30.745 INFO [30476]: COREGRADE is stopping... -- 18:08:30.745 DEBUG [30476]: Closing database connection -- 18:08:30.745 SQL [30476]: pgsql_close() -- 18:08:30.771 INFO [30476]: COREGRADE is starting... -- 18:08:30.771 INFO [30476]: Version from config: 1.0 -- 18:08:30.771 DEBUG [30476]: Connecting to database... -- 18:08:30.772 DEBUG [30476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:30.772 SQL [30476]: pgsql_db_connect() -- 18:08:30.775 DEBUG [30476]: Database connection successful -- 18:08:30.775 INFO [30476]: _SERVER found -- 18:08:30.775 INFO [30476]: REMOTE_ADDR = 192.168.1.13 -- 18:08:30.775 INFO [30476]: SERVER_NAME = oameye.works.coregrade.com -- 18:08:30.775 INFO [30476]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:08:30.775 INFO [30476]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:08:30.775 INFO [30476]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:30.786 INFO [30476]: COREGRADE is stopping... -- 18:08:30.786 DEBUG [30476]: Closing database connection -- 18:08:30.786 SQL [30476]: pgsql_close() -- 18:08:37.984 INFO [24847]: COREGRADE is starting... -- 18:08:37.984 INFO [24847]: Version from config: 1.0 -- 18:08:37.984 DEBUG [24847]: Connecting to database... -- 18:08:37.984 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:37.984 SQL [24847]: pgsql_db_connect() -- 18:08:37.989 DEBUG [24847]: Database connection successful -- 18:08:37.989 INFO [24847]: _SERVER found -- 18:08:37.989 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 18:08:37.989 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 18:08:37.989 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:08:37.989 INFO [24847]: QUERY_STRING = /member/addcard -- 18:08:37.989 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:38.023 INFO [24847]: COREGRADE is stopping... -- 18:08:38.023 DEBUG [24847]: Closing database connection -- 18:08:38.023 SQL [24847]: pgsql_close() -- 18:08:38.305 INFO [24847]: COREGRADE is starting... -- 18:08:38.305 INFO [24847]: Version from config: 1.0 -- 18:08:38.305 DEBUG [24847]: Connecting to database... -- 18:08:38.306 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:38.306 SQL [24847]: pgsql_db_connect() -- 18:08:38.310 DEBUG [24847]: Database connection successful -- 18:08:38.310 INFO [24847]: _SERVER found -- 18:08:38.310 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 18:08:38.310 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 18:08:38.310 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:08:38.310 INFO [24847]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:08:38.310 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:38.321 INFO [24847]: COREGRADE is stopping... -- 18:08:38.321 DEBUG [24847]: Closing database connection -- 18:08:38.321 SQL [24847]: pgsql_close() -- 18:08:38.330 INFO [30474]: COREGRADE is starting... -- 18:08:38.330 INFO [30474]: Version from config: 1.0 -- 18:08:38.330 DEBUG [30474]: Connecting to database... -- 18:08:38.330 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:38.331 SQL [30474]: pgsql_db_connect() -- 18:08:38.334 DEBUG [30474]: Database connection successful -- 18:08:38.334 INFO [30474]: _SERVER found -- 18:08:38.334 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 18:08:38.334 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 18:08:38.334 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:08:38.334 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:08:38.334 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:38.346 INFO [30474]: COREGRADE is stopping... -- 18:08:38.346 DEBUG [30474]: Closing database connection -- 18:08:38.346 SQL [30474]: pgsql_close() -- 18:08:42.699 INFO [30474]: COREGRADE is starting... -- 18:08:42.700 INFO [30474]: Version from config: 1.0 -- 18:08:42.700 DEBUG [30474]: Connecting to database... -- 18:08:42.700 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:42.700 SQL [30474]: pgsql_db_connect() -- 18:08:42.704 DEBUG [30474]: Database connection successful -- 18:08:42.704 INFO [30474]: _SERVER found -- 18:08:42.704 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 18:08:42.704 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 18:08:42.704 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:08:42.704 INFO [30474]: QUERY_STRING = /member/configure -- 18:08:42.704 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:42.739 INFO [30474]: COREGRADE is stopping... -- 18:08:42.739 DEBUG [30474]: Closing database connection -- 18:08:42.739 SQL [30474]: pgsql_close() -- 18:08:43.024 INFO [30474]: COREGRADE is starting... -- 18:08:43.024 INFO [30474]: Version from config: 1.0 -- 18:08:43.024 DEBUG [30474]: Connecting to database... -- 18:08:43.024 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:43.024 SQL [30474]: pgsql_db_connect() -- 18:08:43.028 DEBUG [30474]: Database connection successful -- 18:08:43.028 INFO [30474]: _SERVER found -- 18:08:43.028 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 18:08:43.028 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 18:08:43.028 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:08:43.028 INFO [30474]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:08:43.028 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:43.039 INFO [30474]: COREGRADE is stopping... -- 18:08:43.039 DEBUG [30474]: Closing database connection -- 18:08:43.039 SQL [30474]: pgsql_close() -- 18:08:43.040 INFO [24847]: COREGRADE is starting... -- 18:08:43.040 INFO [24847]: Version from config: 1.0 -- 18:08:43.040 DEBUG [24847]: Connecting to database... -- 18:08:43.040 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:43.040 SQL [24847]: pgsql_db_connect() -- 18:08:43.044 DEBUG [24847]: Database connection successful -- 18:08:43.044 INFO [24847]: _SERVER found -- 18:08:43.044 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 18:08:43.044 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 18:08:43.044 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:08:43.044 INFO [24847]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:08:43.044 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:43.055 INFO [24847]: COREGRADE is stopping... -- 18:08:43.055 DEBUG [24847]: Closing database connection -- 18:08:43.055 SQL [24847]: pgsql_close() -- 18:08:45.959 INFO [24847]: COREGRADE is starting... -- 18:08:45.960 INFO [24847]: Version from config: 1.0 -- 18:08:45.960 DEBUG [24847]: Connecting to database... -- 18:08:45.960 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:45.960 SQL [24847]: pgsql_db_connect() -- 18:08:45.964 DEBUG [24847]: Database connection successful -- 18:08:45.964 INFO [24847]: _SERVER found -- 18:08:45.964 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 18:08:45.964 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 18:08:45.964 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:08:45.964 INFO [24847]: QUERY_STRING = /member/configure -- 18:08:45.964 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:45.998 INFO [24847]: COREGRADE is stopping... -- 18:08:45.998 DEBUG [24847]: Closing database connection -- 18:08:45.998 SQL [24847]: pgsql_close() -- 18:08:46.348 INFO [24847]: COREGRADE is starting... -- 18:08:46.349 INFO [24847]: Version from config: 1.0 -- 18:08:46.349 DEBUG [24847]: Connecting to database... -- 18:08:46.349 DEBUG [24847]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:46.349 SQL [24847]: pgsql_db_connect() -- 18:08:46.353 DEBUG [24847]: Database connection successful -- 18:08:46.353 INFO [24847]: _SERVER found -- 18:08:46.353 INFO [24847]: REMOTE_ADDR = 192.168.1.13 -- 18:08:46.353 INFO [24847]: SERVER_NAME = oameye.works.coregrade.com -- 18:08:46.353 INFO [24847]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:08:46.353 INFO [24847]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:08:46.353 INFO [24847]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:46.364 INFO [24847]: COREGRADE is stopping... -- 18:08:46.364 DEBUG [24847]: Closing database connection -- 18:08:46.364 SQL [24847]: pgsql_close() -- 18:08:46.372 INFO [30474]: COREGRADE is starting... -- 18:08:46.372 INFO [30474]: Version from config: 1.0 -- 18:08:46.372 DEBUG [30474]: Connecting to database... -- 18:08:46.372 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:46.372 SQL [30474]: pgsql_db_connect() -- 18:08:46.376 DEBUG [30474]: Database connection successful -- 18:08:46.376 INFO [30474]: _SERVER found -- 18:08:46.376 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 18:08:46.376 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 18:08:46.376 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:08:46.376 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:08:46.376 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:46.387 INFO [30474]: COREGRADE is stopping... -- 18:08:46.387 DEBUG [30474]: Closing database connection -- 18:08:46.387 SQL [30474]: pgsql_close() -- 18:08:48.230 INFO [30474]: COREGRADE is starting... -- 18:08:48.230 INFO [30474]: Version from config: 1.0 -- 18:08:48.230 DEBUG [30474]: Connecting to database... -- 18:08:48.230 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:48.230 SQL [30474]: pgsql_db_connect() -- 18:08:48.235 DEBUG [30474]: Database connection successful -- 18:08:48.235 INFO [30474]: _SERVER found -- 18:08:48.235 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 18:08:48.235 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 18:08:48.235 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:08:48.235 INFO [30474]: QUERY_STRING = /member/configure -- 18:08:48.235 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:48.269 INFO [30474]: COREGRADE is stopping... -- 18:08:48.269 DEBUG [30474]: Closing database connection -- 18:08:48.269 SQL [30474]: pgsql_close() -- 18:08:48.640 INFO [30474]: COREGRADE is starting... -- 18:08:48.640 INFO [30474]: Version from config: 1.0 -- 18:08:48.640 DEBUG [30474]: Connecting to database... -- 18:08:48.640 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:48.640 SQL [30474]: pgsql_db_connect() -- 18:08:48.644 DEBUG [30474]: Database connection successful -- 18:08:48.644 INFO [30474]: _SERVER found -- 18:08:48.644 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 18:08:48.644 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 18:08:48.644 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:08:48.644 INFO [30474]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:08:48.644 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:48.655 INFO [30474]: COREGRADE is stopping... -- 18:08:48.655 DEBUG [30474]: Closing database connection -- 18:08:48.655 SQL [30474]: pgsql_close() -- 18:08:48.682 INFO [30474]: COREGRADE is starting... -- 18:08:48.682 INFO [30474]: Version from config: 1.0 -- 18:08:48.682 DEBUG [30474]: Connecting to database... -- 18:08:48.682 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:48.682 SQL [30474]: pgsql_db_connect() -- 18:08:48.686 DEBUG [30474]: Database connection successful -- 18:08:48.686 INFO [30474]: _SERVER found -- 18:08:48.686 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 18:08:48.686 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 18:08:48.686 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:08:48.686 INFO [30474]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:08:48.686 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:48.697 INFO [30474]: COREGRADE is stopping... -- 18:08:48.697 DEBUG [30474]: Closing database connection -- 18:08:48.697 SQL [30474]: pgsql_close() -- 18:08:48.992 INFO [30474]: COREGRADE is starting... -- 18:08:48.992 INFO [30474]: Version from config: 1.0 -- 18:08:48.993 DEBUG [30474]: Connecting to database... -- 18:08:48.993 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:48.993 SQL [30474]: pgsql_db_connect() -- 18:08:48.997 DEBUG [30474]: Database connection successful -- 18:08:48.997 INFO [30474]: _SERVER found -- 18:08:48.997 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 18:08:48.997 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 18:08:48.997 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:08:48.997 INFO [30474]: QUERY_STRING = screen=member/app-email -- 18:08:48.997 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:49.008 INFO [30474]: COREGRADE is stopping... -- 18:08:49.008 DEBUG [30474]: Closing database connection -- 18:08:49.008 SQL [30474]: pgsql_close() -- 18:08:50.764 INFO [30474]: COREGRADE is starting... -- 18:08:50.764 INFO [30474]: Version from config: 1.0 -- 18:08:50.764 DEBUG [30474]: Connecting to database... -- 18:08:50.764 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:50.764 SQL [30474]: pgsql_db_connect() -- 18:08:50.769 DEBUG [30474]: Database connection successful -- 18:08:50.769 INFO [30474]: _SERVER found -- 18:08:50.769 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 18:08:50.769 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 18:08:50.769 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:08:50.769 INFO [30474]: QUERY_STRING = /member/configure -- 18:08:50.769 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:50.803 INFO [30474]: COREGRADE is stopping... -- 18:08:50.803 DEBUG [30474]: Closing database connection -- 18:08:50.803 SQL [30474]: pgsql_close() -- 18:08:52.745 INFO [30474]: COREGRADE is starting... -- 18:08:52.746 INFO [30474]: Version from config: 1.0 -- 18:08:52.746 DEBUG [30474]: Connecting to database... -- 18:08:52.746 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:52.746 SQL [30474]: pgsql_db_connect() -- 18:08:52.750 DEBUG [30474]: Database connection successful -- 18:08:52.750 INFO [30474]: _SERVER found -- 18:08:52.750 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 18:08:52.750 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 18:08:52.750 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:08:52.750 INFO [30474]: QUERY_STRING = /member/configure -- 18:08:52.750 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:52.785 INFO [30474]: COREGRADE is stopping... -- 18:08:52.785 DEBUG [30474]: Closing database connection -- 18:08:52.785 SQL [30474]: pgsql_close() -- 18:08:53.021 INFO [30474]: COREGRADE is starting... -- 18:08:53.021 INFO [30474]: Version from config: 1.0 -- 18:08:53.021 DEBUG [30474]: Connecting to database... -- 18:08:53.021 DEBUG [30474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:53.021 SQL [30474]: pgsql_db_connect() -- 18:08:53.025 DEBUG [30474]: Database connection successful -- 18:08:53.025 INFO [30474]: _SERVER found -- 18:08:53.025 INFO [30474]: REMOTE_ADDR = 192.168.1.13 -- 18:08:53.025 INFO [30474]: SERVER_NAME = oameye.works.coregrade.com -- 18:08:53.025 INFO [30474]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:08:53.025 INFO [30474]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:08:53.025 INFO [30474]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:53.036 INFO [30474]: COREGRADE is stopping... -- 18:08:53.036 DEBUG [30474]: Closing database connection -- 18:08:53.036 SQL [30474]: pgsql_close() -- 18:08:53.039 INFO [30475]: COREGRADE is starting... -- 18:08:53.039 INFO [30475]: Version from config: 1.0 -- 18:08:53.039 DEBUG [30475]: Connecting to database... -- 18:08:53.039 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:53.039 SQL [30475]: pgsql_db_connect() -- 18:08:53.043 DEBUG [30475]: Database connection successful -- 18:08:53.043 INFO [30475]: _SERVER found -- 18:08:53.043 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 18:08:53.043 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 18:08:53.043 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:08:53.043 INFO [30475]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:08:53.043 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:53.054 INFO [30475]: COREGRADE is stopping... -- 18:08:53.054 DEBUG [30475]: Closing database connection -- 18:08:53.054 SQL [30475]: pgsql_close() -- 18:08:54.958 INFO [30475]: COREGRADE is starting... -- 18:08:54.958 INFO [30475]: Version from config: 1.0 -- 18:08:54.958 DEBUG [30475]: Connecting to database... -- 18:08:54.958 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:54.958 SQL [30475]: pgsql_db_connect() -- 18:08:54.963 DEBUG [30475]: Database connection successful -- 18:08:54.963 INFO [30475]: _SERVER found -- 18:08:54.963 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 18:08:54.963 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 18:08:54.963 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:08:54.963 INFO [30475]: QUERY_STRING = /member/configure -- 18:08:54.963 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:54.997 INFO [30475]: COREGRADE is stopping... -- 18:08:54.998 DEBUG [30475]: Closing database connection -- 18:08:54.998 SQL [30475]: pgsql_close() -- 18:08:55.305 INFO [30475]: COREGRADE is starting... -- 18:08:55.306 INFO [30475]: Version from config: 1.0 -- 18:08:55.306 DEBUG [30475]: Connecting to database... -- 18:08:55.306 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:55.306 SQL [30475]: pgsql_db_connect() -- 18:08:55.310 DEBUG [30475]: Database connection successful -- 18:08:55.310 INFO [30475]: _SERVER found -- 18:08:55.310 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 18:08:55.310 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 18:08:55.310 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:08:55.310 INFO [30475]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:08:55.310 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:55.321 INFO [30475]: COREGRADE is stopping... -- 18:08:55.321 DEBUG [30475]: Closing database connection -- 18:08:55.321 SQL [30475]: pgsql_close() -- 18:08:55.365 INFO [30475]: COREGRADE is starting... -- 18:08:55.365 INFO [30475]: Version from config: 1.0 -- 18:08:55.365 DEBUG [30475]: Connecting to database... -- 18:08:55.365 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:55.365 SQL [30475]: pgsql_db_connect() -- 18:08:55.369 DEBUG [30475]: Database connection successful -- 18:08:55.369 INFO [30475]: _SERVER found -- 18:08:55.369 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 18:08:55.369 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 18:08:55.369 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:08:55.369 INFO [30475]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:08:55.369 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:55.380 INFO [30475]: COREGRADE is stopping... -- 18:08:55.380 DEBUG [30475]: Closing database connection -- 18:08:55.380 SQL [30475]: pgsql_close() -- 18:08:57.588 INFO [30475]: COREGRADE is starting... -- 18:08:57.589 INFO [30475]: Version from config: 1.0 -- 18:08:57.589 DEBUG [30475]: Connecting to database... -- 18:08:57.589 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:57.589 SQL [30475]: pgsql_db_connect() -- 18:08:57.593 DEBUG [30475]: Database connection successful -- 18:08:57.593 INFO [30475]: _SERVER found -- 18:08:57.593 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 18:08:57.593 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 18:08:57.593 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:08:57.593 INFO [30475]: QUERY_STRING = /member/addcard -- 18:08:57.593 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:57.627 INFO [30475]: COREGRADE is stopping... -- 18:08:57.627 DEBUG [30475]: Closing database connection -- 18:08:57.627 SQL [30475]: pgsql_close() -- 18:08:58.072 INFO [30475]: COREGRADE is starting... -- 18:08:58.072 INFO [30475]: Version from config: 1.0 -- 18:08:58.072 DEBUG [30475]: Connecting to database... -- 18:08:58.072 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:58.072 SQL [30475]: pgsql_db_connect() -- 18:08:58.076 DEBUG [30475]: Database connection successful -- 18:08:58.076 INFO [30475]: _SERVER found -- 18:08:58.076 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 18:08:58.076 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 18:08:58.076 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:08:58.076 INFO [30475]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:08:58.076 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:58.087 INFO [30475]: COREGRADE is stopping... -- 18:08:58.087 DEBUG [30475]: Closing database connection -- 18:08:58.088 SQL [30475]: pgsql_close() -- 18:08:58.100 INFO [30475]: COREGRADE is starting... -- 18:08:58.100 INFO [30475]: Version from config: 1.0 -- 18:08:58.100 DEBUG [30475]: Connecting to database... -- 18:08:58.100 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:58.100 SQL [30475]: pgsql_db_connect() -- 18:08:58.104 DEBUG [30475]: Database connection successful -- 18:08:58.104 INFO [30475]: _SERVER found -- 18:08:58.104 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 18:08:58.104 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 18:08:58.104 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:08:58.104 INFO [30475]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:08:58.104 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:58.115 INFO [30475]: COREGRADE is stopping... -- 18:08:58.115 DEBUG [30475]: Closing database connection -- 18:08:58.115 SQL [30475]: pgsql_close() -- 18:09:01.117 INFO [30475]: COREGRADE is starting... -- 18:09:01.117 INFO [30475]: Version from config: 1.0 -- 18:09:01.117 DEBUG [30475]: Connecting to database... -- 18:09:01.117 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:09:01.117 SQL [30475]: pgsql_db_connect() -- 18:09:01.121 DEBUG [30475]: Database connection successful -- 18:09:01.121 INFO [30475]: _SERVER found -- 18:09:01.121 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 18:09:01.121 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 18:09:01.121 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:09:01.121 INFO [30475]: QUERY_STRING = /member -- 18:09:01.121 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:09:01.155 INFO [30475]: COREGRADE is stopping... -- 18:09:01.156 DEBUG [30475]: Closing database connection -- 18:09:01.156 SQL [30475]: pgsql_close() -- 18:09:01.391 INFO [30475]: COREGRADE is starting... -- 18:09:01.391 INFO [30475]: Version from config: 1.0 -- 18:09:01.391 DEBUG [30475]: Connecting to database... -- 18:09:01.391 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:09:01.391 SQL [30475]: pgsql_db_connect() -- 18:09:01.395 DEBUG [30475]: Database connection successful -- 18:09:01.395 INFO [30475]: _SERVER found -- 18:09:01.395 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 18:09:01.395 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 18:09:01.395 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:09:01.395 INFO [30475]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:09:01.395 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:09:01.406 INFO [30475]: COREGRADE is stopping... -- 18:09:01.406 DEBUG [30475]: Closing database connection -- 18:09:01.406 SQL [30475]: pgsql_close() -- 18:09:01.420 INFO [30475]: COREGRADE is starting... -- 18:09:01.420 INFO [30475]: Version from config: 1.0 -- 18:09:01.420 DEBUG [30475]: Connecting to database... -- 18:09:01.420 DEBUG [30475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:09:01.421 SQL [30475]: pgsql_db_connect() -- 18:09:01.425 DEBUG [30475]: Database connection successful -- 18:09:01.425 INFO [30475]: _SERVER found -- 18:09:01.425 INFO [30475]: REMOTE_ADDR = 192.168.1.13 -- 18:09:01.425 INFO [30475]: SERVER_NAME = oameye.works.coregrade.com -- 18:09:01.425 INFO [30475]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:09:01.425 INFO [30475]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:09:01.425 INFO [30475]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:09:01.436 INFO [30475]: COREGRADE is stopping... -- 18:09:01.436 DEBUG [30475]: Closing database connection -- 18:09:01.436 SQL [30475]: pgsql_close() -- 18:19:53.354 INFO [658]: COREGRADE is starting... -- 18:19:53.355 INFO [658]: Version from config: 1.0 -- 18:19:53.355 DEBUG [658]: Connecting to database... -- 18:19:53.355 DEBUG [658]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:19:53.355 SQL [658]: pgsql_db_connect() -- 18:19:53.359 DEBUG [658]: Database connection successful -- 18:19:53.359 INFO [658]: _SERVER found -- 18:19:53.359 INFO [658]: REMOTE_ADDR = 192.168.1.13 -- 18:19:53.359 INFO [658]: SERVER_NAME = oameye.works.coregrade.com -- 18:19:53.359 INFO [658]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0vbir0nkf49sa5sjqrk09uk3et4sngre -- 18:19:53.359 INFO [658]: QUERY_STRING = /member/configure -- 18:19:53.359 INFO [658]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:19:53.401 INFO [658]: COREGRADE is stopping... -- 18:19:53.401 DEBUG [658]: Closing database connection -- 18:19:53.401 SQL [658]: pgsql_close() -- 18:19:53.926 INFO [658]: COREGRADE is starting... -- 18:19:53.926 INFO [658]: Version from config: 1.0 -- 18:19:53.926 DEBUG [658]: Connecting to database... -- 18:19:53.926 DEBUG [658]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:19:53.926 SQL [658]: pgsql_db_connect() -- 18:19:53.930 DEBUG [658]: Database connection successful -- 18:19:53.930 INFO [658]: _SERVER found -- 18:19:53.930 INFO [658]: REMOTE_ADDR = 192.168.1.13 -- 18:19:53.930 INFO [658]: SERVER_NAME = oameye.works.coregrade.com -- 18:19:53.930 INFO [658]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9p88s341h1nfehn957brp8v0bliealsd -- 18:19:53.930 INFO [658]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:19:53.930 INFO [658]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:19:53.942 INFO [658]: COREGRADE is stopping... -- 18:19:53.942 DEBUG [658]: Closing database connection -- 18:19:53.942 SQL [658]: pgsql_close() -- 18:19:53.946 INFO [659]: COREGRADE is starting... -- 18:19:53.947 INFO [659]: Version from config: 1.0 -- 18:19:53.947 DEBUG [659]: Connecting to database... -- 18:19:53.947 DEBUG [659]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:19:53.947 SQL [659]: pgsql_db_connect() -- 18:19:53.951 DEBUG [659]: Database connection successful -- 18:19:53.951 INFO [659]: _SERVER found -- 18:19:53.951 INFO [659]: REMOTE_ADDR = 192.168.1.13 -- 18:19:53.951 INFO [659]: SERVER_NAME = oameye.works.coregrade.com -- 18:19:53.951 INFO [659]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9p88s341h1nfehn957brp8v0bliealsd -- 18:19:53.951 INFO [659]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:19:53.951 INFO [659]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:19:53.965 INFO [659]: COREGRADE is stopping... -- 18:19:53.965 DEBUG [659]: Closing database connection -- 18:19:53.965 SQL [659]: pgsql_close() -- 18:20:01.980 INFO [660]: COREGRADE is starting... -- 18:20:01.980 INFO [660]: Version from config: 1.0 -- 18:20:01.980 DEBUG [660]: Connecting to database... -- 18:20:01.980 DEBUG [660]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:20:01.980 SQL [660]: pgsql_db_connect() -- 18:20:01.985 DEBUG [660]: Database connection successful -- 18:20:01.985 INFO [660]: _SERVER found -- 18:20:01.985 INFO [660]: REMOTE_ADDR = 192.168.1.13 -- 18:20:01.985 INFO [660]: SERVER_NAME = oameye.works.coregrade.com -- 18:20:01.985 INFO [660]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9p88s341h1nfehn957brp8v0bliealsd -- 18:20:01.985 INFO [660]: QUERY_STRING = /member/addcard -- 18:20:01.985 INFO [660]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:20:02.150 INFO [660]: COREGRADE is stopping... -- 18:20:02.150 DEBUG [660]: Closing database connection -- 18:20:02.150 SQL [660]: pgsql_close() -- 18:20:02.440 INFO [660]: COREGRADE is starting... -- 18:20:02.440 INFO [660]: Version from config: 1.0 -- 18:20:02.441 DEBUG [660]: Connecting to database... -- 18:20:02.441 DEBUG [660]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:20:02.441 SQL [660]: pgsql_db_connect() -- 18:20:02.445 DEBUG [660]: Database connection successful -- 18:20:02.445 INFO [660]: _SERVER found -- 18:20:02.445 INFO [660]: REMOTE_ADDR = 192.168.1.13 -- 18:20:02.445 INFO [660]: SERVER_NAME = oameye.works.coregrade.com -- 18:20:02.445 INFO [660]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9p88s341h1nfehn957brp8v0bliealsd -- 18:20:02.445 INFO [660]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:20:02.445 INFO [660]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:20:02.457 INFO [660]: COREGRADE is stopping... -- 18:20:02.457 DEBUG [660]: Closing database connection -- 18:20:02.457 SQL [660]: pgsql_close() -- 18:20:02.466 INFO [662]: COREGRADE is starting... -- 18:20:02.467 INFO [662]: Version from config: 1.0 -- 18:20:02.467 DEBUG [662]: Connecting to database... -- 18:20:02.467 DEBUG [662]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:20:02.467 SQL [662]: pgsql_db_connect() -- 18:20:02.471 DEBUG [662]: Database connection successful -- 18:20:02.471 INFO [662]: _SERVER found -- 18:20:02.471 INFO [662]: REMOTE_ADDR = 192.168.1.13 -- 18:20:02.471 INFO [662]: SERVER_NAME = oameye.works.coregrade.com -- 18:20:02.471 INFO [662]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9p88s341h1nfehn957brp8v0bliealsd -- 18:20:02.471 INFO [662]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:20:02.471 INFO [662]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:20:02.485 INFO [662]: COREGRADE is stopping... -- 18:20:02.485 DEBUG [662]: Closing database connection -- 18:20:02.485 SQL [662]: pgsql_close() -- 18:20:18.365 INFO [663]: COREGRADE is starting... -- 18:20:18.365 INFO [663]: Version from config: 1.0 -- 18:20:18.365 DEBUG [663]: Connecting to database... -- 18:20:18.366 DEBUG [663]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:20:18.366 SQL [663]: pgsql_db_connect() -- 18:20:18.370 DEBUG [663]: Database connection successful -- 18:20:18.370 INFO [663]: _SERVER found -- 18:20:18.370 INFO [663]: REMOTE_ADDR = 192.168.1.13 -- 18:20:18.370 INFO [663]: SERVER_NAME = oameye.works.coregrade.com -- 18:20:18.370 INFO [663]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9p88s341h1nfehn957brp8v0bliealsd -- 18:20:18.370 INFO [663]: QUERY_STRING = /member/addcard -- 18:20:18.370 INFO [663]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:20:18.411 INFO [663]: COREGRADE is stopping... -- 18:20:18.411 DEBUG [663]: Closing database connection -- 18:20:18.411 SQL [663]: pgsql_close() -- 18:20:18.759 INFO [663]: COREGRADE is starting... -- 18:20:18.759 INFO [663]: Version from config: 1.0 -- 18:20:18.759 DEBUG [663]: Connecting to database... -- 18:20:18.759 DEBUG [663]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:20:18.759 SQL [663]: pgsql_db_connect() -- 18:20:18.763 DEBUG [663]: Database connection successful -- 18:20:18.763 INFO [663]: _SERVER found -- 18:20:18.763 INFO [663]: REMOTE_ADDR = 192.168.1.13 -- 18:20:18.763 INFO [663]: SERVER_NAME = oameye.works.coregrade.com -- 18:20:18.763 INFO [663]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9p88s341h1nfehn957brp8v0bliealsd -- 18:20:18.763 INFO [663]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:20:18.763 INFO [663]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:20:18.776 INFO [663]: COREGRADE is stopping... -- 18:20:18.776 DEBUG [663]: Closing database connection -- 18:20:18.776 SQL [663]: pgsql_close() -- 18:20:18.782 INFO [718]: COREGRADE is starting... -- 18:20:18.782 INFO [718]: Version from config: 1.0 -- 18:20:18.782 DEBUG [718]: Connecting to database... -- 18:20:18.782 DEBUG [718]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:20:18.782 SQL [718]: pgsql_db_connect() -- 18:20:18.786 DEBUG [718]: Database connection successful -- 18:20:18.786 INFO [718]: _SERVER found -- 18:20:18.786 INFO [718]: REMOTE_ADDR = 192.168.1.13 -- 18:20:18.786 INFO [718]: SERVER_NAME = oameye.works.coregrade.com -- 18:20:18.786 INFO [718]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9p88s341h1nfehn957brp8v0bliealsd -- 18:20:18.786 INFO [718]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:20:18.786 INFO [718]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:20:18.800 INFO [718]: COREGRADE is stopping... -- 18:20:18.800 DEBUG [718]: Closing database connection -- 18:20:18.800 SQL [718]: pgsql_close() -- 18:20:43.942 INFO [721]: COREGRADE is starting... -- 18:20:43.942 INFO [721]: Version from config: 1.0 -- 18:20:43.943 DEBUG [721]: Connecting to database... -- 18:20:43.943 DEBUG [721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:20:43.943 SQL [721]: pgsql_db_connect() -- 18:20:43.947 DEBUG [721]: Database connection successful -- 18:20:43.947 INFO [721]: _SERVER found -- 18:20:43.947 INFO [721]: REMOTE_ADDR = 192.168.1.13 -- 18:20:43.947 INFO [721]: SERVER_NAME = oameye.works.coregrade.com -- 18:20:43.947 INFO [721]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9p88s341h1nfehn957brp8v0bliealsd -- 18:20:43.947 INFO [721]: QUERY_STRING = /member/addcard -- 18:20:43.947 INFO [721]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:20:43.989 INFO [721]: COREGRADE is stopping... -- 18:20:43.989 DEBUG [721]: Closing database connection -- 18:20:43.989 SQL [721]: pgsql_close() -- 18:20:44.413 INFO [721]: COREGRADE is starting... -- 18:20:44.413 INFO [721]: Version from config: 1.0 -- 18:20:44.413 DEBUG [721]: Connecting to database... -- 18:20:44.413 DEBUG [721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:20:44.413 SQL [721]: pgsql_db_connect() -- 18:20:44.417 DEBUG [721]: Database connection successful -- 18:20:44.417 INFO [721]: _SERVER found -- 18:20:44.417 INFO [721]: REMOTE_ADDR = 192.168.1.13 -- 18:20:44.417 INFO [721]: SERVER_NAME = oameye.works.coregrade.com -- 18:20:44.417 INFO [721]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9p88s341h1nfehn957brp8v0bliealsd -- 18:20:44.417 INFO [721]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:20:44.417 INFO [721]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:20:44.429 INFO [721]: COREGRADE is stopping... -- 18:20:44.429 DEBUG [721]: Closing database connection -- 18:20:44.429 SQL [721]: pgsql_close() -- 18:20:44.436 INFO [722]: COREGRADE is starting... -- 18:20:44.436 INFO [722]: Version from config: 1.0 -- 18:20:44.436 DEBUG [722]: Connecting to database... -- 18:20:44.436 DEBUG [722]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:20:44.436 SQL [722]: pgsql_db_connect() -- 18:20:44.440 DEBUG [722]: Database connection successful -- 18:20:44.440 INFO [722]: _SERVER found -- 18:20:44.440 INFO [722]: REMOTE_ADDR = 192.168.1.13 -- 18:20:44.440 INFO [722]: SERVER_NAME = oameye.works.coregrade.com -- 18:20:44.440 INFO [722]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9p88s341h1nfehn957brp8v0bliealsd -- 18:20:44.440 INFO [722]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:20:44.440 INFO [722]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:20:44.454 INFO [722]: COREGRADE is stopping... -- 18:20:44.454 DEBUG [722]: Closing database connection -- 18:20:44.454 SQL [722]: pgsql_close() -- 18:21:00.742 INFO [658]: COREGRADE is starting... -- 18:21:00.742 INFO [658]: Version from config: 1.0 -- 18:21:00.742 DEBUG [658]: Connecting to database... -- 18:21:00.742 DEBUG [658]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:21:00.742 SQL [658]: pgsql_db_connect() -- 18:21:00.746 DEBUG [658]: Database connection successful -- 18:21:00.746 INFO [658]: _SERVER found -- 18:21:00.746 INFO [658]: REMOTE_ADDR = 192.168.1.13 -- 18:21:00.746 INFO [658]: SERVER_NAME = oameye.works.coregrade.com -- 18:21:00.746 INFO [658]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9p88s341h1nfehn957brp8v0bliealsd -- 18:21:00.746 INFO [658]: QUERY_STRING = /member/configure -- 18:21:00.746 INFO [658]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:21:00.784 INFO [658]: COREGRADE is stopping... -- 18:21:00.784 DEBUG [658]: Closing database connection -- 18:21:00.784 SQL [658]: pgsql_close() -- 18:21:01.221 INFO [658]: COREGRADE is starting... -- 18:21:01.221 INFO [658]: Version from config: 1.0 -- 18:21:01.221 DEBUG [658]: Connecting to database... -- 18:21:01.221 DEBUG [658]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:21:01.221 SQL [658]: pgsql_db_connect() -- 18:21:01.225 DEBUG [658]: Database connection successful -- 18:21:01.225 INFO [658]: _SERVER found -- 18:21:01.225 INFO [658]: REMOTE_ADDR = 192.168.1.13 -- 18:21:01.225 INFO [658]: SERVER_NAME = oameye.works.coregrade.com -- 18:21:01.225 INFO [658]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9p88s341h1nfehn957brp8v0bliealsd -- 18:21:01.225 INFO [658]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:21:01.225 INFO [658]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:21:01.237 INFO [658]: COREGRADE is stopping... -- 18:21:01.238 DEBUG [658]: Closing database connection -- 18:21:01.238 SQL [658]: pgsql_close() -- 18:21:01.241 INFO [659]: COREGRADE is starting... -- 18:21:01.241 INFO [659]: Version from config: 1.0 -- 18:21:01.241 DEBUG [659]: Connecting to database... -- 18:21:01.241 DEBUG [659]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:21:01.242 SQL [659]: pgsql_db_connect() -- 18:21:01.245 DEBUG [659]: Database connection successful -- 18:21:01.245 INFO [659]: _SERVER found -- 18:21:01.245 INFO [659]: REMOTE_ADDR = 192.168.1.13 -- 18:21:01.245 INFO [659]: SERVER_NAME = oameye.works.coregrade.com -- 18:21:01.245 INFO [659]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9p88s341h1nfehn957brp8v0bliealsd -- 18:21:01.245 INFO [659]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:21:01.245 INFO [659]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:21:01.258 INFO [659]: COREGRADE is stopping... -- 18:21:01.258 DEBUG [659]: Closing database connection -- 18:21:01.258 SQL [659]: pgsql_close() -- 18:21:03.050 INFO [659]: COREGRADE is starting... -- 18:21:03.051 INFO [659]: Version from config: 1.0 -- 18:21:03.051 DEBUG [659]: Connecting to database... -- 18:21:03.051 DEBUG [659]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:21:03.051 SQL [659]: pgsql_db_connect() -- 18:21:03.055 DEBUG [659]: Database connection successful -- 18:21:03.055 INFO [659]: _SERVER found -- 18:21:03.055 INFO [659]: REMOTE_ADDR = 192.168.1.13 -- 18:21:03.055 INFO [659]: SERVER_NAME = oameye.works.coregrade.com -- 18:21:03.055 INFO [659]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9p88s341h1nfehn957brp8v0bliealsd -- 18:21:03.055 INFO [659]: QUERY_STRING = /member/configure -- 18:21:03.055 INFO [659]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:21:03.094 INFO [659]: COREGRADE is stopping... -- 18:21:03.094 DEBUG [659]: Closing database connection -- 18:21:03.094 SQL [659]: pgsql_close() -- 18:21:03.534 INFO [659]: COREGRADE is starting... -- 18:21:03.534 INFO [659]: Version from config: 1.0 -- 18:21:03.534 DEBUG [659]: Connecting to database... -- 18:21:03.534 DEBUG [659]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:21:03.534 SQL [659]: pgsql_db_connect() -- 18:21:03.538 DEBUG [659]: Database connection successful -- 18:21:03.538 INFO [659]: _SERVER found -- 18:21:03.538 INFO [659]: REMOTE_ADDR = 192.168.1.13 -- 18:21:03.538 INFO [659]: SERVER_NAME = oameye.works.coregrade.com -- 18:21:03.538 INFO [659]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9p88s341h1nfehn957brp8v0bliealsd -- 18:21:03.538 INFO [659]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:21:03.538 INFO [659]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:21:03.550 INFO [659]: COREGRADE is stopping... -- 18:21:03.550 DEBUG [659]: Closing database connection -- 18:21:03.550 SQL [659]: pgsql_close() -- 18:21:03.565 INFO [659]: COREGRADE is starting... -- 18:21:03.565 INFO [659]: Version from config: 1.0 -- 18:21:03.565 DEBUG [659]: Connecting to database... -- 18:21:03.565 DEBUG [659]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:21:03.565 SQL [659]: pgsql_db_connect() -- 18:21:03.569 DEBUG [659]: Database connection successful -- 18:21:03.569 INFO [659]: _SERVER found -- 18:21:03.569 INFO [659]: REMOTE_ADDR = 192.168.1.13 -- 18:21:03.569 INFO [659]: SERVER_NAME = oameye.works.coregrade.com -- 18:21:03.569 INFO [659]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9p88s341h1nfehn957brp8v0bliealsd -- 18:21:03.569 INFO [659]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:21:03.569 INFO [659]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:21:03.580 INFO [659]: COREGRADE is stopping... -- 18:21:03.580 DEBUG [659]: Closing database connection -- 18:21:03.580 SQL [659]: pgsql_close() -- 18:21:05.003 INFO [659]: COREGRADE is starting... -- 18:21:05.003 INFO [659]: Version from config: 1.0 -- 18:21:05.003 DEBUG [659]: Connecting to database... -- 18:21:05.003 DEBUG [659]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:21:05.003 SQL [659]: pgsql_db_connect() -- 18:21:05.007 DEBUG [659]: Database connection successful -- 18:21:05.007 INFO [659]: _SERVER found -- 18:21:05.007 INFO [659]: REMOTE_ADDR = 192.168.1.13 -- 18:21:05.007 INFO [659]: SERVER_NAME = oameye.works.coregrade.com -- 18:21:05.007 INFO [659]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9p88s341h1nfehn957brp8v0bliealsd -- 18:21:05.007 INFO [659]: QUERY_STRING = /member -- 18:21:05.007 INFO [659]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:21:05.041 INFO [659]: COREGRADE is stopping... -- 18:21:05.042 DEBUG [659]: Closing database connection -- 18:21:05.042 SQL [659]: pgsql_close() -- 18:21:05.279 INFO [659]: COREGRADE is starting... -- 18:21:05.280 INFO [659]: Version from config: 1.0 -- 18:21:05.280 DEBUG [659]: Connecting to database... -- 18:21:05.280 DEBUG [659]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:21:05.280 SQL [659]: pgsql_db_connect() -- 18:21:05.290 INFO [658]: COREGRADE is starting... -- 18:21:05.290 INFO [658]: Version from config: 1.0 -- 18:21:05.290 DEBUG [658]: Connecting to database... -- 18:21:05.290 DEBUG [658]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:21:05.290 SQL [658]: pgsql_db_connect() -- 18:21:05.283 DEBUG [659]: Database connection successful -- 18:21:05.283 INFO [659]: _SERVER found -- 18:21:05.283 INFO [659]: REMOTE_ADDR = 192.168.1.13 -- 18:21:05.283 INFO [659]: SERVER_NAME = oameye.works.coregrade.com -- 18:21:05.283 INFO [659]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9p88s341h1nfehn957brp8v0bliealsd -- 18:21:05.283 INFO [659]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:21:05.283 INFO [659]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:21:05.294 INFO [659]: COREGRADE is stopping... -- 18:21:05.294 DEBUG [659]: Closing database connection -- 18:21:05.295 SQL [659]: pgsql_close() -- 18:21:05.294 DEBUG [658]: Database connection successful -- 18:21:05.294 INFO [658]: _SERVER found -- 18:21:05.294 INFO [658]: REMOTE_ADDR = 192.168.1.13 -- 18:21:05.294 INFO [658]: SERVER_NAME = oameye.works.coregrade.com -- 18:21:05.294 INFO [658]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9p88s341h1nfehn957brp8v0bliealsd -- 18:21:05.294 INFO [658]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:21:05.294 INFO [658]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:21:05.306 INFO [658]: COREGRADE is stopping... -- 18:21:05.306 DEBUG [658]: Closing database connection -- 18:21:05.306 SQL [658]: pgsql_close() -- 18:21:06.525 INFO [658]: COREGRADE is starting... -- 18:21:06.526 INFO [658]: Version from config: 1.0 -- 18:21:06.526 DEBUG [658]: Connecting to database... -- 18:21:06.526 DEBUG [658]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:21:06.526 SQL [658]: pgsql_db_connect() -- 18:21:06.530 DEBUG [658]: Database connection successful -- 18:21:06.530 INFO [658]: _SERVER found -- 18:21:06.530 INFO [658]: REMOTE_ADDR = 192.168.1.13 -- 18:21:06.530 INFO [658]: SERVER_NAME = oameye.works.coregrade.com -- 18:21:06.530 INFO [658]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9p88s341h1nfehn957brp8v0bliealsd -- 18:21:06.530 INFO [658]: QUERY_STRING = /member/configure -- 18:21:06.530 INFO [658]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:21:06.568 INFO [658]: COREGRADE is stopping... -- 18:21:06.568 DEBUG [658]: Closing database connection -- 18:21:06.568 SQL [658]: pgsql_close() -- 18:21:06.917 INFO [658]: COREGRADE is starting... -- 18:21:06.917 INFO [658]: Version from config: 1.0 -- 18:21:06.917 DEBUG [658]: Connecting to database... -- 18:21:06.917 DEBUG [658]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:21:06.917 SQL [658]: pgsql_db_connect() -- 18:21:06.921 DEBUG [658]: Database connection successful -- 18:21:06.921 INFO [658]: _SERVER found -- 18:21:06.921 INFO [658]: REMOTE_ADDR = 192.168.1.13 -- 18:21:06.921 INFO [658]: SERVER_NAME = oameye.works.coregrade.com -- 18:21:06.921 INFO [658]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9p88s341h1nfehn957brp8v0bliealsd -- 18:21:06.921 INFO [658]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:21:06.921 INFO [658]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:21:06.933 INFO [658]: COREGRADE is stopping... -- 18:21:06.933 DEBUG [658]: Closing database connection -- 18:21:06.933 SQL [658]: pgsql_close() -- 18:21:06.940 INFO [659]: COREGRADE is starting... -- 18:21:06.940 INFO [659]: Version from config: 1.0 -- 18:21:06.940 DEBUG [659]: Connecting to database... -- 18:21:06.940 DEBUG [659]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:21:06.941 SQL [659]: pgsql_db_connect() -- 18:21:06.944 DEBUG [659]: Database connection successful -- 18:21:06.944 INFO [659]: _SERVER found -- 18:21:06.944 INFO [659]: REMOTE_ADDR = 192.168.1.13 -- 18:21:06.944 INFO [659]: SERVER_NAME = oameye.works.coregrade.com -- 18:21:06.944 INFO [659]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9p88s341h1nfehn957brp8v0bliealsd -- 18:21:06.944 INFO [659]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:21:06.944 INFO [659]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:21:06.955 INFO [659]: COREGRADE is stopping... -- 18:21:06.955 DEBUG [659]: Closing database connection -- 18:21:06.955 SQL [659]: pgsql_close() -- 18:22:22.638 INFO [660]: COREGRADE is starting... -- 18:22:22.638 INFO [660]: Version from config: 1.0 -- 18:22:22.638 DEBUG [660]: Connecting to database... -- 18:22:22.638 DEBUG [660]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:22:22.638 SQL [660]: pgsql_db_connect() -- 18:22:22.643 DEBUG [660]: Database connection successful -- 18:22:22.643 INFO [660]: _SERVER found -- 18:22:22.643 INFO [660]: REMOTE_ADDR = 192.168.1.13 -- 18:22:22.643 INFO [660]: SERVER_NAME = oameye.works.coregrade.com -- 18:22:22.643 INFO [660]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9p88s341h1nfehn957brp8v0bliealsd -- 18:22:22.643 INFO [660]: QUERY_STRING = /member/configure -- 18:22:22.643 INFO [660]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:22:22.683 INFO [660]: COREGRADE is stopping... -- 18:22:22.683 DEBUG [660]: Closing database connection -- 18:22:22.683 SQL [660]: pgsql_close() -- 18:22:23.140 INFO [660]: COREGRADE is starting... -- 18:22:23.141 INFO [660]: Version from config: 1.0 -- 18:22:23.141 DEBUG [660]: Connecting to database... -- 18:22:23.141 DEBUG [660]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:22:23.141 SQL [660]: pgsql_db_connect() -- 18:22:23.145 DEBUG [660]: Database connection successful -- 18:22:23.145 INFO [660]: _SERVER found -- 18:22:23.145 INFO [660]: REMOTE_ADDR = 192.168.1.13 -- 18:22:23.145 INFO [660]: SERVER_NAME = oameye.works.coregrade.com -- 18:22:23.145 INFO [660]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9p88s341h1nfehn957brp8v0bliealsd -- 18:22:23.145 INFO [660]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:22:23.145 INFO [660]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:22:23.158 INFO [660]: COREGRADE is stopping... -- 18:22:23.158 DEBUG [660]: Closing database connection -- 18:22:23.158 SQL [660]: pgsql_close() -- 18:22:23.159 INFO [662]: COREGRADE is starting... -- 18:22:23.159 INFO [662]: Version from config: 1.0 -- 18:22:23.159 DEBUG [662]: Connecting to database... -- 18:22:23.159 DEBUG [662]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:22:23.159 SQL [662]: pgsql_db_connect() -- 18:22:23.164 DEBUG [662]: Database connection successful -- 18:22:23.164 INFO [662]: _SERVER found -- 18:22:23.164 INFO [662]: REMOTE_ADDR = 192.168.1.13 -- 18:22:23.164 INFO [662]: SERVER_NAME = oameye.works.coregrade.com -- 18:22:23.164 INFO [662]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9p88s341h1nfehn957brp8v0bliealsd -- 18:22:23.164 INFO [662]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:22:23.164 INFO [662]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:22:23.177 INFO [662]: COREGRADE is stopping... -- 18:22:23.177 DEBUG [662]: Closing database connection -- 18:22:23.177 SQL [662]: pgsql_close() -- 18:22:38.651 INFO [663]: COREGRADE is starting... -- 18:22:38.651 INFO [663]: Version from config: 1.0 -- 18:22:38.651 DEBUG [663]: Connecting to database... -- 18:22:38.651 DEBUG [663]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:22:38.651 SQL [663]: pgsql_db_connect() -- 18:22:38.691 INFO [663]: COREGRADE is starting... -- 18:22:38.692 INFO [663]: Version from config: 1.0 -- 18:22:38.692 DEBUG [663]: Connecting to database... -- 18:22:38.692 DEBUG [663]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:22:38.692 SQL [663]: pgsql_db_connect() -- 18:22:38.697 DEBUG [663]: Database connection successful -- 18:22:38.697 INFO [663]: _SERVER found -- 18:22:38.697 INFO [663]: REMOTE_ADDR = 192.168.1.13 -- 18:22:38.697 INFO [663]: SERVER_NAME = oameye.works.coregrade.com -- 18:22:38.697 INFO [663]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9p88s341h1nfehn957brp8v0bliealsd -- 18:22:38.697 INFO [663]: QUERY_STRING = -- 18:22:38.697 INFO [663]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:22:38.697 INFO [663]: SystemStatus()09-09-********~************ -- 18:22:38.697 INFO [663]: long coregrade_api_main(CVars in, CVars &out) -- 18:22:38.697 INFO [663]: long coregrade_api_main(CVars in, CVars &out) action =11027 -- 18:22:38.697 INFO [663]: account calls -- 18:22:38.697 INFO [663]: account_calls() -- 18:22:38.697 INFO [663]: CreateUserPage() -- 18:22:38.697 FLOG_MAX [663]: REQ_STRING(description) -- 18:22:38.697 FLOG_MAX [663]: REQ_STRING(title) -- 18:22:38.697 FLOG_MAX [663]: long load_db_record( CVars &rec, const char * query, ... ) -- 18:22:38.697 SQL [663]: pgsql_query() -- 18:22:38.697 SQL [663]: About to run query: -- 18:22:38.697 SQL [663]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 18:22:38.699 SQL [663]: Found rows: 1 -- 18:22:38.699 FLOG_MAX [663]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 18:22:38.699 SQL [663]: pgsql_query() -- 18:22:38.699 SQL [663]: About to run query: -- 18:22:38.699 SQL [663]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 18:22:38.701 SQL [663]: Found rows: 1 -- 18:22:38.701 INFO [663]: /CreateUserPage() -- 18:22:38.701 INFO [663]: RET: page_key=PG66850BDC2FDCC241B34E089AE766BBE4 -- 18:22:38.701 INFO [663]: RET: result=YES I GET TO BACK END -- 18:22:38.707 INFO [663]: COREGRADE is stopping... -- 18:22:38.707 DEBUG [663]: Closing database connection -- 18:22:38.707 SQL [663]: pgsql_close() -- 18:22:38.656 DEBUG [663]: Database connection successful -- 18:22:38.656 INFO [663]: _SERVER found -- 18:22:38.656 INFO [663]: REMOTE_ADDR = 192.168.1.13 -- 18:22:38.656 INFO [663]: SERVER_NAME = oameye.works.coregrade.com -- 18:22:38.656 INFO [663]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9p88s341h1nfehn957brp8v0bliealsd -- 18:22:38.656 INFO [663]: QUERY_STRING = /member/addcard -- 18:22:38.656 INFO [663]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:22:38.707 INFO [663]: COREGRADE is stopping... -- 18:22:38.707 DEBUG [663]: Closing database connection -- 18:22:38.707 SQL [663]: pgsql_close() -- 18:22:39.192 INFO [663]: COREGRADE is starting... -- 18:22:39.192 INFO [663]: Version from config: 1.0 -- 18:22:39.192 DEBUG [663]: Connecting to database... -- 18:22:39.192 DEBUG [663]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:22:39.192 SQL [663]: pgsql_db_connect() -- 18:22:39.197 DEBUG [663]: Database connection successful -- 18:22:39.197 INFO [663]: _SERVER found -- 18:22:39.197 INFO [663]: REMOTE_ADDR = 192.168.1.13 -- 18:22:39.197 INFO [663]: SERVER_NAME = oameye.works.coregrade.com -- 18:22:39.197 INFO [663]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9p88s341h1nfehn957brp8v0bliealsd -- 18:22:39.197 INFO [663]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:22:39.197 INFO [663]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:22:39.208 INFO [663]: COREGRADE is stopping... -- 18:22:39.208 DEBUG [663]: Closing database connection -- 18:22:39.208 SQL [663]: pgsql_close() -- 18:22:39.235 INFO [663]: COREGRADE is starting... -- 18:22:39.235 INFO [663]: Version from config: 1.0 -- 18:22:39.235 DEBUG [663]: Connecting to database... -- 18:22:39.235 DEBUG [663]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:22:39.235 SQL [663]: pgsql_db_connect() -- 18:22:39.239 DEBUG [663]: Database connection successful -- 18:22:39.239 INFO [663]: _SERVER found -- 18:22:39.239 INFO [663]: REMOTE_ADDR = 192.168.1.13 -- 18:22:39.239 INFO [663]: SERVER_NAME = oameye.works.coregrade.com -- 18:22:39.239 INFO [663]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9p88s341h1nfehn957brp8v0bliealsd -- 18:22:39.239 INFO [663]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:22:39.239 INFO [663]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:22:39.251 INFO [663]: COREGRADE is stopping... -- 18:22:39.251 DEBUG [663]: Closing database connection -- 18:22:39.251 SQL [663]: pgsql_close() -- 18:24:47.630 INFO [896]: COREGRADE is starting... -- 18:24:47.631 INFO [896]: Version from config: 1.0 -- 18:24:47.631 DEBUG [896]: Connecting to database... -- 18:24:47.631 DEBUG [896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:24:47.631 SQL [896]: pgsql_db_connect() -- 18:24:47.676 INFO [896]: COREGRADE is starting... -- 18:24:47.676 INFO [896]: Version from config: 1.0 -- 18:24:47.676 DEBUG [896]: Connecting to database... -- 18:24:47.676 DEBUG [896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:24:47.676 SQL [896]: pgsql_db_connect() -- 18:24:47.681 DEBUG [896]: Database connection successful -- 18:24:47.681 INFO [896]: _SERVER found -- 18:24:47.681 INFO [896]: REMOTE_ADDR = 192.168.1.13 -- 18:24:47.681 INFO [896]: SERVER_NAME = oameye.works.coregrade.com -- 18:24:47.681 INFO [896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9p88s341h1nfehn957brp8v0bliealsd -- 18:24:47.681 INFO [896]: QUERY_STRING = -- 18:24:47.681 INFO [896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:24:47.681 INFO [896]: SystemStatus()09-09-********~************ -- 18:24:47.681 INFO [896]: long coregrade_api_main(CVars in, CVars &out) -- 18:24:47.681 INFO [896]: long coregrade_api_main(CVars in, CVars &out) action =11027 -- 18:24:47.681 INFO [896]: account calls -- 18:24:47.681 INFO [896]: account_calls() -- 18:24:47.681 INFO [896]: CreateUserPage() -- 18:24:47.681 FLOG_MAX [896]: REQ_STRING(description) -- 18:24:47.681 FLOG_MAX [896]: REQ_STRING(title) -- 18:24:47.681 FLOG_MAX [896]: long load_db_record( CVars &rec, const char * query, ... ) -- 18:24:47.681 SQL [896]: pgsql_query() -- 18:24:47.681 SQL [896]: About to run query: -- 18:24:47.681 SQL [896]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 18:24:47.683 SQL [896]: Found rows: 1 -- 18:24:47.683 FLOG_MAX [896]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 18:24:47.683 FLOG_MAX [896]: insert_db_record() -- 18:24:47.683 SQL [896]: pgsql_exec() -- 18:24:47.683 SQL [896]: About to run query: -- 18:24:47.683 SQL [896]: INSERT INTO members_pages (description,member_id,page_key,page_mode,title) VALUES ('unique','7','PG1F46024BC458DBF977896CE26A3A9D67','OTHERPG','C++') -- 18:24:47.701 SQL [896]: PQcmdTuples: 1 -- 18:24:47.701 SQL [896]: Affected rows: 1 -- 18:24:47.701 FLOG_MAX [896]: SELECT currval('members_pages_id_seq') -- 18:24:47.701 SQL [896]: pgsql_query() -- 18:24:47.701 SQL [896]: About to run query: -- 18:24:47.701 SQL [896]: SELECT currval('members_pages_id_seq') -- 18:24:47.701 SQL [896]: Found rows: 1 -- 18:24:47.701 INFO [896]: /CreateUserPage() -- 18:24:47.701 INFO [896]: RET: page_key=PG1F46024BC458DBF977896CE26A3A9D67 -- 18:24:47.701 INFO [896]: RET: result=YES I GET TO BACK END -- 18:24:47.707 INFO [896]: COREGRADE is stopping... -- 18:24:47.707 DEBUG [896]: Closing database connection -- 18:24:47.707 SQL [896]: pgsql_close() -- 18:24:47.637 DEBUG [896]: Database connection successful -- 18:24:47.637 INFO [896]: _SERVER found -- 18:24:47.637 INFO [896]: REMOTE_ADDR = 192.168.1.13 -- 18:24:47.637 INFO [896]: SERVER_NAME = oameye.works.coregrade.com -- 18:24:47.637 INFO [896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9p88s341h1nfehn957brp8v0bliealsd -- 18:24:47.637 INFO [896]: QUERY_STRING = /member/addcard -- 18:24:47.637 INFO [896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:24:47.708 INFO [896]: COREGRADE is stopping... -- 18:24:47.708 DEBUG [896]: Closing database connection -- 18:24:47.708 SQL [896]: pgsql_close() -- 18:24:48.163 INFO [896]: COREGRADE is starting... -- 18:24:48.163 INFO [896]: Version from config: 1.0 -- 18:24:48.163 DEBUG [896]: Connecting to database... -- 18:24:48.163 DEBUG [896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:24:48.163 SQL [896]: pgsql_db_connect() -- 18:24:48.168 DEBUG [896]: Database connection successful -- 18:24:48.168 INFO [896]: _SERVER found -- 18:24:48.168 INFO [896]: REMOTE_ADDR = 192.168.1.13 -- 18:24:48.168 INFO [896]: SERVER_NAME = oameye.works.coregrade.com -- 18:24:48.168 INFO [896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9p88s341h1nfehn957brp8v0bliealsd -- 18:24:48.168 INFO [896]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:24:48.168 INFO [896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:24:48.181 INFO [896]: COREGRADE is stopping... -- 18:24:48.181 DEBUG [896]: Closing database connection -- 18:24:48.181 SQL [896]: pgsql_close() -- 18:24:48.189 INFO [898]: COREGRADE is starting... -- 18:24:48.190 INFO [898]: Version from config: 1.0 -- 18:24:48.190 DEBUG [898]: Connecting to database... -- 18:24:48.190 DEBUG [898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:24:48.190 SQL [898]: pgsql_db_connect() -- 18:24:48.196 DEBUG [898]: Database connection successful -- 18:24:48.196 INFO [898]: _SERVER found -- 18:24:48.196 INFO [898]: REMOTE_ADDR = 192.168.1.13 -- 18:24:48.196 INFO [898]: SERVER_NAME = oameye.works.coregrade.com -- 18:24:48.196 INFO [898]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9p88s341h1nfehn957brp8v0bliealsd -- 18:24:48.196 INFO [898]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:24:48.196 INFO [898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:24:48.210 INFO [898]: COREGRADE is stopping... -- 18:24:48.211 DEBUG [898]: Closing database connection -- 18:24:48.211 SQL [898]: pgsql_close() -- 18:27:04.405 INFO [897]: COREGRADE is starting... -- 18:27:04.406 INFO [897]: Version from config: 1.0 -- 18:27:04.406 DEBUG [897]: Connecting to database... -- 18:27:04.406 DEBUG [897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:04.406 SQL [897]: pgsql_db_connect() -- 18:27:04.410 DEBUG [897]: Database connection successful -- 18:27:04.410 INFO [897]: _SERVER found -- 18:27:04.410 INFO [897]: REMOTE_ADDR = 192.168.1.13 -- 18:27:04.410 INFO [897]: SERVER_NAME = oameye.works.coregrade.com -- 18:27:04.410 INFO [897]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9p88s341h1nfehn957brp8v0bliealsd -- 18:27:04.410 INFO [897]: QUERY_STRING = /member -- 18:27:04.410 INFO [897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:27:04.452 INFO [897]: COREGRADE is stopping... -- 18:27:04.452 DEBUG [897]: Closing database connection -- 18:27:04.452 SQL [897]: pgsql_close() -- 18:27:04.921 INFO [897]: COREGRADE is starting... -- 18:27:04.921 INFO [897]: Version from config: 1.0 -- 18:27:04.921 DEBUG [897]: Connecting to database... -- 18:27:04.921 DEBUG [897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:04.921 SQL [897]: pgsql_db_connect() -- 18:27:04.925 DEBUG [897]: Database connection successful -- 18:27:04.925 INFO [897]: _SERVER found -- 18:27:04.925 INFO [897]: REMOTE_ADDR = 192.168.1.13 -- 18:27:04.925 INFO [897]: SERVER_NAME = oameye.works.coregrade.com -- 18:27:04.925 INFO [897]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r14h41liv5ircicfglk8jj0uc02mpks2 -- 18:27:04.925 INFO [897]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:27:04.925 INFO [897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:27:04.937 INFO [897]: COREGRADE is stopping... -- 18:27:04.938 DEBUG [897]: Closing database connection -- 18:27:04.938 SQL [897]: pgsql_close() -- 18:27:04.938 INFO [899]: COREGRADE is starting... -- 18:27:04.939 INFO [899]: Version from config: 1.0 -- 18:27:04.939 DEBUG [899]: Connecting to database... -- 18:27:04.939 DEBUG [899]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:04.939 SQL [899]: pgsql_db_connect() -- 18:27:04.942 DEBUG [899]: Database connection successful -- 18:27:04.942 INFO [899]: _SERVER found -- 18:27:04.942 INFO [899]: REMOTE_ADDR = 192.168.1.13 -- 18:27:04.943 INFO [899]: SERVER_NAME = oameye.works.coregrade.com -- 18:27:04.943 INFO [899]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r14h41liv5ircicfglk8jj0uc02mpks2 -- 18:27:04.943 INFO [899]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:27:04.943 INFO [899]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:27:04.957 INFO [899]: COREGRADE is stopping... -- 18:27:04.957 DEBUG [899]: Closing database connection -- 18:27:04.957 SQL [899]: pgsql_close() -- 18:27:11.933 INFO [900]: COREGRADE is starting... -- 18:27:11.933 INFO [900]: Version from config: 1.0 -- 18:27:11.933 DEBUG [900]: Connecting to database... -- 18:27:11.933 DEBUG [900]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:11.933 SQL [900]: pgsql_db_connect() -- 18:27:11.937 DEBUG [900]: Database connection successful -- 18:27:11.937 INFO [900]: _SERVER found -- 18:27:11.937 INFO [900]: REMOTE_ADDR = 192.168.1.13 -- 18:27:11.937 INFO [900]: SERVER_NAME = oameye.works.coregrade.com -- 18:27:11.937 INFO [900]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r14h41liv5ircicfglk8jj0uc02mpks2 -- 18:27:11.937 INFO [900]: QUERY_STRING = /member/page -- 18:27:11.937 INFO [900]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:27:11.977 INFO [900]: COREGRADE is stopping... -- 18:27:11.977 DEBUG [900]: Closing database connection -- 18:27:11.977 SQL [900]: pgsql_close() -- 18:27:12.283 INFO [900]: COREGRADE is starting... -- 18:27:12.283 INFO [900]: Version from config: 1.0 -- 18:27:12.283 DEBUG [900]: Connecting to database... -- 18:27:12.283 DEBUG [900]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:12.283 SQL [900]: pgsql_db_connect() -- 18:27:12.287 DEBUG [900]: Database connection successful -- 18:27:12.287 INFO [900]: _SERVER found -- 18:27:12.287 INFO [900]: REMOTE_ADDR = 192.168.1.13 -- 18:27:12.287 INFO [900]: SERVER_NAME = oameye.works.coregrade.com -- 18:27:12.287 INFO [900]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r14h41liv5ircicfglk8jj0uc02mpks2 -- 18:27:12.287 INFO [900]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:27:12.287 INFO [900]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:27:12.300 INFO [900]: COREGRADE is stopping... -- 18:27:12.300 DEBUG [900]: Closing database connection -- 18:27:12.300 SQL [900]: pgsql_close() -- 18:27:12.301 INFO [956]: COREGRADE is starting... -- 18:27:12.302 INFO [956]: Version from config: 1.0 -- 18:27:12.302 DEBUG [956]: Connecting to database... -- 18:27:12.302 DEBUG [956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:12.302 SQL [956]: pgsql_db_connect() -- 18:27:12.306 DEBUG [956]: Database connection successful -- 18:27:12.306 INFO [956]: _SERVER found -- 18:27:12.306 INFO [956]: REMOTE_ADDR = 192.168.1.13 -- 18:27:12.306 INFO [956]: SERVER_NAME = oameye.works.coregrade.com -- 18:27:12.306 INFO [956]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r14h41liv5ircicfglk8jj0uc02mpks2 -- 18:27:12.306 INFO [956]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:27:12.306 INFO [956]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:27:12.320 INFO [956]: COREGRADE is stopping... -- 18:27:12.320 DEBUG [956]: Closing database connection -- 18:27:12.320 SQL [956]: pgsql_close() -- 18:27:48.532 INFO [957]: COREGRADE is starting... -- 18:27:48.532 INFO [957]: Version from config: 1.0 -- 18:27:48.532 DEBUG [957]: Connecting to database... -- 18:27:48.532 DEBUG [957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:48.532 SQL [957]: pgsql_db_connect() -- 18:27:48.537 DEBUG [957]: Database connection successful -- 18:27:48.537 INFO [957]: _SERVER found -- 18:27:48.537 INFO [957]: REMOTE_ADDR = 192.168.1.13 -- 18:27:48.537 INFO [957]: SERVER_NAME = oameye.works.coregrade.com -- 18:27:48.537 INFO [957]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r14h41liv5ircicfglk8jj0uc02mpks2 -- 18:27:48.537 INFO [957]: QUERY_STRING = /member/configure -- 18:27:48.537 INFO [957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:27:48.579 INFO [957]: COREGRADE is stopping... -- 18:27:48.579 DEBUG [957]: Closing database connection -- 18:27:48.579 SQL [957]: pgsql_close() -- 18:27:48.919 INFO [957]: COREGRADE is starting... -- 18:27:48.919 INFO [957]: Version from config: 1.0 -- 18:27:48.919 DEBUG [957]: Connecting to database... -- 18:27:48.919 DEBUG [957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:48.919 SQL [957]: pgsql_db_connect() -- 18:27:48.923 DEBUG [957]: Database connection successful -- 18:27:48.923 INFO [957]: _SERVER found -- 18:27:48.923 INFO [957]: REMOTE_ADDR = 192.168.1.13 -- 18:27:48.923 INFO [957]: SERVER_NAME = oameye.works.coregrade.com -- 18:27:48.923 INFO [957]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r14h41liv5ircicfglk8jj0uc02mpks2 -- 18:27:48.923 INFO [957]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:27:48.923 INFO [957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:27:48.935 INFO [957]: COREGRADE is stopping... -- 18:27:48.935 DEBUG [957]: Closing database connection -- 18:27:48.935 SQL [957]: pgsql_close() -- 18:27:48.941 INFO [958]: COREGRADE is starting... -- 18:27:48.942 INFO [958]: Version from config: 1.0 -- 18:27:48.942 DEBUG [958]: Connecting to database... -- 18:27:48.942 DEBUG [958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:48.942 SQL [958]: pgsql_db_connect() -- 18:27:48.946 DEBUG [958]: Database connection successful -- 18:27:48.946 INFO [958]: _SERVER found -- 18:27:48.946 INFO [958]: REMOTE_ADDR = 192.168.1.13 -- 18:27:48.946 INFO [958]: SERVER_NAME = oameye.works.coregrade.com -- 18:27:48.946 INFO [958]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r14h41liv5ircicfglk8jj0uc02mpks2 -- 18:27:48.946 INFO [958]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:27:48.946 INFO [958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:27:48.960 INFO [958]: COREGRADE is stopping... -- 18:27:48.960 DEBUG [958]: Closing database connection -- 18:27:48.960 SQL [958]: pgsql_close() -- 18:28:24.800 INFO [896]: COREGRADE is starting... -- 18:28:24.800 INFO [896]: Version from config: 1.0 -- 18:28:24.801 DEBUG [896]: Connecting to database... -- 18:28:24.801 DEBUG [896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:28:24.801 SQL [896]: pgsql_db_connect() -- 18:28:24.805 DEBUG [896]: Database connection successful -- 18:28:24.805 INFO [896]: _SERVER found -- 18:28:24.805 INFO [896]: REMOTE_ADDR = 192.168.1.13 -- 18:28:24.805 INFO [896]: SERVER_NAME = oameye.works.coregrade.com -- 18:28:24.805 INFO [896]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=6cl2dfv6g4ut1s7ps9h3bv4rmnpbm3kl -- 18:28:24.805 INFO [896]: QUERY_STRING = /auth -- 18:28:24.805 INFO [896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:28:24.840 INFO [896]: COREGRADE is stopping... -- 18:28:24.840 DEBUG [896]: Closing database connection -- 18:28:24.840 SQL [896]: pgsql_close() -- 18:28:25.037 INFO [896]: COREGRADE is starting... -- 18:28:25.037 INFO [896]: Version from config: 1.0 -- 18:28:25.037 DEBUG [896]: Connecting to database... -- 18:28:25.037 DEBUG [896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:28:25.037 SQL [896]: pgsql_db_connect() -- 18:28:25.049 INFO [898]: COREGRADE is starting... -- 18:28:25.050 INFO [898]: Version from config: 1.0 -- 18:28:25.050 DEBUG [898]: Connecting to database... -- 18:28:25.050 DEBUG [898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:28:25.050 SQL [898]: pgsql_db_connect() -- 18:28:25.041 DEBUG [896]: Database connection successful -- 18:28:25.041 INFO [896]: _SERVER found -- 18:28:25.041 INFO [896]: REMOTE_ADDR = 192.168.1.13 -- 18:28:25.041 INFO [896]: SERVER_NAME = oameye.works.coregrade.com -- 18:28:25.041 INFO [896]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=gcceib178mojkljduktt6t5p8ub4j4bu -- 18:28:25.041 INFO [896]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:28:25.041 INFO [896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:28:25.054 INFO [896]: COREGRADE is stopping... -- 18:28:25.054 DEBUG [896]: Closing database connection -- 18:28:25.054 SQL [896]: pgsql_close() -- 18:28:25.054 DEBUG [898]: Database connection successful -- 18:28:25.054 INFO [898]: _SERVER found -- 18:28:25.054 INFO [898]: REMOTE_ADDR = 192.168.1.13 -- 18:28:25.054 INFO [898]: SERVER_NAME = oameye.works.coregrade.com -- 18:28:25.054 INFO [898]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=gcceib178mojkljduktt6t5p8ub4j4bu -- 18:28:25.054 INFO [898]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:28:25.054 INFO [898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:28:25.066 INFO [898]: COREGRADE is stopping... -- 18:28:25.066 DEBUG [898]: Closing database connection -- 18:28:25.067 SQL [898]: pgsql_close() -- 18:29:17.567 INFO [897]: COREGRADE is starting... -- 18:29:17.567 INFO [897]: Version from config: 1.0 -- 18:29:17.567 DEBUG [897]: Connecting to database... -- 18:29:17.567 DEBUG [897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:29:17.567 SQL [897]: pgsql_db_connect() -- 18:29:17.606 INFO [897]: COREGRADE is starting... -- 18:29:17.606 INFO [897]: Version from config: 1.0 -- 18:29:17.606 DEBUG [897]: Connecting to database... -- 18:29:17.606 DEBUG [897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:29:17.606 SQL [897]: pgsql_db_connect() -- 18:29:17.610 DEBUG [897]: Database connection successful -- 18:29:17.610 INFO [897]: _SERVER found -- 18:29:17.610 INFO [897]: REMOTE_ADDR = 192.168.1.13 -- 18:29:17.610 INFO [897]: SERVER_NAME = oameye.works.coregrade.com -- 18:29:17.610 INFO [897]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r14h41liv5ircicfglk8jj0uc02mpks2 -- 18:29:17.610 INFO [897]: QUERY_STRING = -- 18:29:17.610 INFO [897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:29:17.610 INFO [897]: SystemStatus()09-09-********~************ -- 18:29:17.610 INFO [897]: long coregrade_api_main(CVars in, CVars &out) -- 18:29:17.610 INFO [897]: long coregrade_api_main(CVars in, CVars &out) action =11027 -- 18:29:17.610 INFO [897]: account calls -- 18:29:17.610 INFO [897]: account_calls() -- 18:29:17.610 INFO [897]: CreateUserPage() -- 18:29:17.610 FLOG_MAX [897]: REQ_STRING(description) -- 18:29:17.610 FLOG_MAX [897]: REQ_STRING(title) -- 18:29:17.610 FLOG_MAX [897]: long load_db_record( CVars &rec, const char * query, ... ) -- 18:29:17.610 SQL [897]: pgsql_query() -- 18:29:17.610 SQL [897]: About to run query: -- 18:29:17.610 SQL [897]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 18:29:17.612 SQL [897]: Found rows: 1 -- 18:29:17.612 FLOG_MAX [897]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 18:29:17.612 FLOG_MAX [897]: insert_db_record() -- 18:29:17.612 SQL [897]: pgsql_exec() -- 18:29:17.612 SQL [897]: About to run query: -- 18:29:17.612 SQL [897]: INSERT INTO members_pages (description,member_id,page_key,page_mode,title) VALUES ('Piano, Beats and sound mix','7','PG241445100881643F6F4A3619D2255B10','OTHERPG','Instrumental Production') -- 18:29:17.643 SQL [897]: PQcmdTuples: 1 -- 18:29:17.643 SQL [897]: Affected rows: 1 -- 18:29:17.643 FLOG_MAX [897]: SELECT currval('members_pages_id_seq') -- 18:29:17.643 SQL [897]: pgsql_query() -- 18:29:17.643 SQL [897]: About to run query: -- 18:29:17.643 SQL [897]: SELECT currval('members_pages_id_seq') -- 18:29:17.644 SQL [897]: Found rows: 1 -- 18:29:17.644 INFO [897]: /CreateUserPage() -- 18:29:17.644 INFO [897]: RET: page_key=PG241445100881643F6F4A3619D2255B10 -- 18:29:17.644 INFO [897]: RET: result=YES I GET TO BACK END -- 18:29:17.649 INFO [897]: COREGRADE is stopping... -- 18:29:17.649 DEBUG [897]: Closing database connection -- 18:29:17.650 SQL [897]: pgsql_close() -- 18:29:17.571 DEBUG [897]: Database connection successful -- 18:29:17.571 INFO [897]: _SERVER found -- 18:29:17.571 INFO [897]: REMOTE_ADDR = 192.168.1.13 -- 18:29:17.571 INFO [897]: SERVER_NAME = oameye.works.coregrade.com -- 18:29:17.571 INFO [897]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r14h41liv5ircicfglk8jj0uc02mpks2 -- 18:29:17.571 INFO [897]: QUERY_STRING = /member/addcard -- 18:29:17.571 INFO [897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:29:17.650 INFO [897]: COREGRADE is stopping... -- 18:29:17.650 DEBUG [897]: Closing database connection -- 18:29:17.650 SQL [897]: pgsql_close() -- 18:29:18.022 INFO [897]: COREGRADE is starting... -- 18:29:18.023 INFO [897]: Version from config: 1.0 -- 18:29:18.023 DEBUG [897]: Connecting to database... -- 18:29:18.023 DEBUG [897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:29:18.023 SQL [897]: pgsql_db_connect() -- 18:29:18.027 DEBUG [897]: Database connection successful -- 18:29:18.027 INFO [897]: _SERVER found -- 18:29:18.027 INFO [897]: REMOTE_ADDR = 192.168.1.13 -- 18:29:18.027 INFO [897]: SERVER_NAME = oameye.works.coregrade.com -- 18:29:18.027 INFO [897]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r14h41liv5ircicfglk8jj0uc02mpks2 -- 18:29:18.027 INFO [897]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:29:18.027 INFO [897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:29:18.038 INFO [897]: COREGRADE is stopping... -- 18:29:18.038 DEBUG [897]: Closing database connection -- 18:29:18.038 SQL [897]: pgsql_close() -- 18:29:18.046 INFO [899]: COREGRADE is starting... -- 18:29:18.046 INFO [899]: Version from config: 1.0 -- 18:29:18.046 DEBUG [899]: Connecting to database... -- 18:29:18.046 DEBUG [899]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:29:18.046 SQL [899]: pgsql_db_connect() -- 18:29:18.050 DEBUG [899]: Database connection successful -- 18:29:18.050 INFO [899]: _SERVER found -- 18:29:18.050 INFO [899]: REMOTE_ADDR = 192.168.1.13 -- 18:29:18.050 INFO [899]: SERVER_NAME = oameye.works.coregrade.com -- 18:29:18.050 INFO [899]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r14h41liv5ircicfglk8jj0uc02mpks2 -- 18:29:18.050 INFO [899]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:29:18.050 INFO [899]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:29:18.063 INFO [899]: COREGRADE is stopping... -- 18:29:18.063 DEBUG [899]: Closing database connection -- 18:29:18.063 SQL [899]: pgsql_close() -- 18:29:21.604 INFO [899]: COREGRADE is starting... -- 18:29:21.604 INFO [899]: Version from config: 1.0 -- 18:29:21.604 DEBUG [899]: Connecting to database... -- 18:29:21.604 DEBUG [899]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:29:21.604 SQL [899]: pgsql_db_connect() -- 18:29:21.608 DEBUG [899]: Database connection successful -- 18:29:21.608 INFO [899]: _SERVER found -- 18:29:21.608 INFO [899]: REMOTE_ADDR = 192.168.1.13 -- 18:29:21.608 INFO [899]: SERVER_NAME = oameye.works.coregrade.com -- 18:29:21.608 INFO [899]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r14h41liv5ircicfglk8jj0uc02mpks2 -- 18:29:21.608 INFO [899]: QUERY_STRING = /member -- 18:29:21.608 INFO [899]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:29:21.647 INFO [899]: COREGRADE is stopping... -- 18:29:21.647 DEBUG [899]: Closing database connection -- 18:29:21.647 SQL [899]: pgsql_close() -- 18:29:21.881 INFO [899]: COREGRADE is starting... -- 18:29:21.881 INFO [899]: Version from config: 1.0 -- 18:29:21.881 DEBUG [899]: Connecting to database... -- 18:29:21.881 DEBUG [899]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:29:21.881 SQL [899]: pgsql_db_connect() -- 18:29:21.893 INFO [897]: COREGRADE is starting... -- 18:29:21.893 INFO [897]: Version from config: 1.0 -- 18:29:21.893 DEBUG [897]: Connecting to database... -- 18:29:21.893 DEBUG [897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:29:21.893 SQL [897]: pgsql_db_connect() -- 18:29:21.885 DEBUG [899]: Database connection successful -- 18:29:21.885 INFO [899]: _SERVER found -- 18:29:21.885 INFO [899]: REMOTE_ADDR = 192.168.1.13 -- 18:29:21.885 INFO [899]: SERVER_NAME = oameye.works.coregrade.com -- 18:29:21.885 INFO [899]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r14h41liv5ircicfglk8jj0uc02mpks2 -- 18:29:21.885 INFO [899]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:29:21.885 INFO [899]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:29:21.897 INFO [899]: COREGRADE is stopping... -- 18:29:21.897 DEBUG [899]: Closing database connection -- 18:29:21.897 SQL [899]: pgsql_close() -- 18:29:21.897 DEBUG [897]: Database connection successful -- 18:29:21.897 INFO [897]: _SERVER found -- 18:29:21.897 INFO [897]: REMOTE_ADDR = 192.168.1.13 -- 18:29:21.897 INFO [897]: SERVER_NAME = oameye.works.coregrade.com -- 18:29:21.897 INFO [897]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r14h41liv5ircicfglk8jj0uc02mpks2 -- 18:29:21.897 INFO [897]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:29:21.897 INFO [897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:29:21.908 INFO [897]: COREGRADE is stopping... -- 18:29:21.908 DEBUG [897]: Closing database connection -- 18:29:21.908 SQL [897]: pgsql_close() -- 18:29:23.237 INFO [897]: COREGRADE is starting... -- 18:29:23.237 INFO [897]: Version from config: 1.0 -- 18:29:23.237 DEBUG [897]: Connecting to database... -- 18:29:23.237 DEBUG [897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:29:23.237 SQL [897]: pgsql_db_connect() -- 18:29:23.241 DEBUG [897]: Database connection successful -- 18:29:23.241 INFO [897]: _SERVER found -- 18:29:23.241 INFO [897]: REMOTE_ADDR = 192.168.1.13 -- 18:29:23.241 INFO [897]: SERVER_NAME = oameye.works.coregrade.com -- 18:29:23.241 INFO [897]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r14h41liv5ircicfglk8jj0uc02mpks2 -- 18:29:23.241 INFO [897]: QUERY_STRING = /member/page -- 18:29:23.241 INFO [897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:29:23.274 INFO [897]: COREGRADE is stopping... -- 18:29:23.274 DEBUG [897]: Closing database connection -- 18:29:23.274 SQL [897]: pgsql_close() -- 18:29:23.502 INFO [897]: COREGRADE is starting... -- 18:29:23.502 INFO [897]: Version from config: 1.0 -- 18:29:23.502 DEBUG [897]: Connecting to database... -- 18:29:23.503 DEBUG [897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:29:23.503 SQL [897]: pgsql_db_connect() -- 18:29:23.514 INFO [899]: COREGRADE is starting... -- 18:29:23.514 INFO [899]: Version from config: 1.0 -- 18:29:23.514 DEBUG [899]: Connecting to database... -- 18:29:23.515 DEBUG [899]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:29:23.515 SQL [899]: pgsql_db_connect() -- 18:29:23.507 DEBUG [897]: Database connection successful -- 18:29:23.507 INFO [897]: _SERVER found -- 18:29:23.507 INFO [897]: REMOTE_ADDR = 192.168.1.13 -- 18:29:23.507 INFO [897]: SERVER_NAME = oameye.works.coregrade.com -- 18:29:23.507 INFO [897]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r14h41liv5ircicfglk8jj0uc02mpks2 -- 18:29:23.507 INFO [897]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:29:23.507 INFO [897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:29:23.518 INFO [897]: COREGRADE is stopping... -- 18:29:23.518 DEBUG [897]: Closing database connection -- 18:29:23.518 SQL [897]: pgsql_close() -- 18:29:23.519 DEBUG [899]: Database connection successful -- 18:29:23.519 INFO [899]: _SERVER found -- 18:29:23.519 INFO [899]: REMOTE_ADDR = 192.168.1.13 -- 18:29:23.519 INFO [899]: SERVER_NAME = oameye.works.coregrade.com -- 18:29:23.519 INFO [899]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r14h41liv5ircicfglk8jj0uc02mpks2 -- 18:29:23.519 INFO [899]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:29:23.519 INFO [899]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:29:23.530 INFO [899]: COREGRADE is stopping... -- 18:29:23.530 DEBUG [899]: Closing database connection -- 18:29:23.530 SQL [899]: pgsql_close() -- 18:29:33.437 INFO [900]: COREGRADE is starting... -- 18:29:33.437 INFO [900]: Version from config: 1.0 -- 18:29:33.437 DEBUG [900]: Connecting to database... -- 18:29:33.438 DEBUG [900]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:29:33.438 SQL [900]: pgsql_db_connect() -- 18:29:33.442 DEBUG [900]: Database connection successful -- 18:29:33.442 INFO [900]: _SERVER found -- 18:29:33.442 INFO [900]: REMOTE_ADDR = 192.168.1.13 -- 18:29:33.442 INFO [900]: SERVER_NAME = oameye.works.coregrade.com -- 18:29:33.442 INFO [900]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r14h41liv5ircicfglk8jj0uc02mpks2 -- 18:29:33.442 INFO [900]: QUERY_STRING = /member/configure -- 18:29:33.442 INFO [900]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:29:33.481 INFO [900]: COREGRADE is stopping... -- 18:29:33.481 DEBUG [900]: Closing database connection -- 18:29:33.481 SQL [900]: pgsql_close() -- 18:29:33.929 INFO [900]: COREGRADE is starting... -- 18:29:33.929 INFO [900]: Version from config: 1.0 -- 18:29:33.929 DEBUG [900]: Connecting to database... -- 18:29:33.929 DEBUG [900]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:29:33.929 SQL [900]: pgsql_db_connect() -- 18:29:33.934 DEBUG [900]: Database connection successful -- 18:29:33.934 INFO [900]: _SERVER found -- 18:29:33.934 INFO [900]: REMOTE_ADDR = 192.168.1.13 -- 18:29:33.934 INFO [900]: SERVER_NAME = oameye.works.coregrade.com -- 18:29:33.934 INFO [900]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r14h41liv5ircicfglk8jj0uc02mpks2 -- 18:29:33.934 INFO [900]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:29:33.934 INFO [900]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:29:33.945 INFO [900]: COREGRADE is stopping... -- 18:29:33.945 DEBUG [900]: Closing database connection -- 18:29:33.945 SQL [900]: pgsql_close() -- 18:29:33.968 INFO [900]: COREGRADE is starting... -- 18:29:33.968 INFO [900]: Version from config: 1.0 -- 18:29:33.968 DEBUG [900]: Connecting to database... -- 18:29:33.968 DEBUG [900]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:29:33.968 SQL [900]: pgsql_db_connect() -- 18:29:33.972 DEBUG [900]: Database connection successful -- 18:29:33.972 INFO [900]: _SERVER found -- 18:29:33.972 INFO [900]: REMOTE_ADDR = 192.168.1.13 -- 18:29:33.972 INFO [900]: SERVER_NAME = oameye.works.coregrade.com -- 18:29:33.972 INFO [900]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r14h41liv5ircicfglk8jj0uc02mpks2 -- 18:29:33.972 INFO [900]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:29:33.972 INFO [900]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:29:33.983 INFO [900]: COREGRADE is stopping... -- 18:29:33.983 DEBUG [900]: Closing database connection -- 18:29:33.983 SQL [900]: pgsql_close() -- 18:31:29.562 INFO [956]: COREGRADE is starting... -- 18:31:29.562 INFO [956]: Version from config: 1.0 -- 18:31:29.562 DEBUG [956]: Connecting to database... -- 18:31:29.562 DEBUG [956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:31:29.562 SQL [956]: pgsql_db_connect() -- 18:31:29.603 INFO [956]: COREGRADE is starting... -- 18:31:29.603 INFO [956]: Version from config: 1.0 -- 18:31:29.603 DEBUG [956]: Connecting to database... -- 18:31:29.603 DEBUG [956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:31:29.603 SQL [956]: pgsql_db_connect() -- 18:31:29.607 DEBUG [956]: Database connection successful -- 18:31:29.607 INFO [956]: _SERVER found -- 18:31:29.607 INFO [956]: REMOTE_ADDR = 192.168.1.13 -- 18:31:29.607 INFO [956]: SERVER_NAME = oameye.works.coregrade.com -- 18:31:29.607 INFO [956]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=gcceib178mojkljduktt6t5p8ub4j4bu -- 18:31:29.607 INFO [956]: QUERY_STRING = -- 18:31:29.607 INFO [956]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:31:29.607 INFO [956]: SystemStatus()09-09-********~************ -- 18:31:29.607 INFO [956]: long coregrade_api_main(CVars in, CVars &out) -- 18:31:29.607 INFO [956]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 18:31:29.607 INFO [956]: account calls -- 18:31:29.607 INFO [956]: account_calls() -- 18:31:29.607 INFO [956]: LoginCoreGradeAccount() -- 18:31:29.607 FLOG_MAX [956]: REQ_STRING(username) -- 18:31:29.607 FLOG_MAX [956]: REQ_STRING(password) -- 18:31:29.607 FLOG_MAX [956]: REQ_STRING(sessionid) -- 18:31:29.607 FLOG_MAX [956]: long load_db_record( CVars &rec, const char * query, ... ) -- 18:31:29.607 SQL [956]: pgsql_query() -- 18:31:29.607 SQL [956]: About to run query: -- 18:31:29.607 SQL [956]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 18:31:29.611 SQL [956]: Found rows: 1 -- 18:31:29.611 FLOG_MAX [956]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 18:31:29.611 INFO [956]: long SessionCheck(long uid, const char *sessionid, int create ) -- 18:31:29.611 SQL [956]: pgsql_exec() -- 18:31:29.611 SQL [956]: About to run query: -- 18:31:29.611 SQL [956]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 18:31:29.612 SQL [956]: PQcmdTuples: 1 -- 18:31:29.612 SQL [956]: Affected rows: 1 -- 18:31:29.612 SQL [956]: pgsql_exec() -- 18:31:29.612 SQL [956]: About to run query: -- 18:31:29.612 SQL [956]: DELETE FROM members_session WHERE member_id=5 -- 18:31:29.612 SQL [956]: PQcmdTuples: 0 -- 18:31:29.612 SQL [956]: Affected rows: 0 -- 18:31:29.612 SQL [956]: pgsql_query() -- 18:31:29.612 SQL [956]: About to run query: -- 18:31:29.612 SQL [956]: SELECT * FROM members_session WHERE member_id=5 AND session<>'A10AF0C81108588B4ECDB524F645EED3' -- 18:31:29.613 SQL [956]: Found rows: 0 -- 18:31:29.613 SQL [956]: Found rows: 0 -- 18:31:29.613 FLOG_MAX [956]: long load_db_record( CVars &rec, const char * query, ... ) -- 18:31:29.613 SQL [956]: pgsql_query() -- 18:31:29.613 SQL [956]: About to run query: -- 18:31:29.613 SQL [956]: SELECT * FROM members_session WHERE member_id=5 AND session='A10AF0C81108588B4ECDB524F645EED3' -- 18:31:29.614 SQL [956]: Found rows: 0 -- 18:31:29.614 SQL [956]: Found rows: 0 -- 18:31:29.614 FLOG_MAX [956]: insert_db_record() -- 18:31:29.614 SQL [956]: pgsql_exec() -- 18:31:29.614 SQL [956]: About to run query: -- 18:31:29.614 SQL [956]: INSERT INTO members_session (member_id,session) VALUES ('5','A10AF0C81108588B4ECDB524F645EED3') -- 18:31:29.615 SQL [956]: PQcmdTuples: 1 -- 18:31:29.615 SQL [956]: Affected rows: 1 -- 18:31:29.615 FLOG_MAX [956]: SELECT currval('members_session_id_seq') -- 18:31:29.615 SQL [956]: pgsql_query() -- 18:31:29.615 SQL [956]: About to run query: -- 18:31:29.615 SQL [956]: SELECT currval('members_session_id_seq') -- 18:31:29.616 SQL [956]: Found rows: 1 -- 18:31:29.616 INFO [956]: CreateDefaultPage() -- 18:31:29.616 FLOG_MAX [956]: long load_db_record( CVars &rec, const char * query, ... ) -- 18:31:29.616 SQL [956]: pgsql_query() -- 18:31:29.616 SQL [956]: About to run query: -- 18:31:29.616 SQL [956]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 18:31:29.616 SQL [956]: Found rows: 1 -- 18:31:29.616 FLOG_MAX [956]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 18:31:29.616 SQL [956]: pgsql_query() -- 18:31:29.616 SQL [956]: About to run query: -- 18:31:29.616 SQL [956]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 18:31:29.617 SQL [956]: Found rows: 1 -- 18:31:29.617 INFO [956]: /CreateDefaultPage() -- 18:31:29.617 INFO [956]: /LoginCoreGradeAccount() -- 18:31:29.617 INFO [956]: RET: added=2020-02-05 06:47:23.982154 -- 18:31:29.617 INFO [956]: RET: email=ameye+11@chiefsoft.com -- 18:31:29.617 INFO [956]: RET: firstname=Olu -- 18:31:29.617 INFO [956]: RET: id=5 -- 18:31:29.617 INFO [956]: RET: last_login= -- 18:31:29.617 INFO [956]: RET: lastname=Amey -- 18:31:29.617 INFO [956]: RET: loc=192.168.1.13 -- 18:31:29.617 INFO [956]: RET: member_id=5 -- 18:31:29.617 INFO [956]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 18:31:29.617 INFO [956]: RET: phone= -- 18:31:29.617 INFO [956]: RET: pid= -- 18:31:29.617 INFO [956]: RET: result=YES I GET TO BACK END -- 18:31:29.617 INFO [956]: RET: sessionid=A10AF0C81108588B4ECDB524F645EED3 -- 18:31:29.617 INFO [956]: RET: status=1 -- 18:31:29.617 INFO [956]: RET: stauts=OK -- 18:31:29.617 INFO [956]: RET: username=ameye+11@chiefsoft.com -- 18:31:29.617 INFO [956]: RET: verified= -- 18:31:29.618 INFO [956]: COREGRADE is stopping... -- 18:31:29.618 DEBUG [956]: Closing database connection -- 18:31:29.618 SQL [956]: pgsql_close() -- 18:31:29.567 DEBUG [956]: Database connection successful -- 18:31:29.567 INFO [956]: _SERVER found -- 18:31:29.567 INFO [956]: REMOTE_ADDR = 192.168.1.13 -- 18:31:29.567 INFO [956]: SERVER_NAME = oameye.works.coregrade.com -- 18:31:29.567 INFO [956]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=gcceib178mojkljduktt6t5p8ub4j4bu -- 18:31:29.567 INFO [956]: QUERY_STRING = /auth -- 18:31:29.567 INFO [956]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:31:29.619 INFO [956]: COREGRADE is stopping... -- 18:31:29.619 DEBUG [956]: Closing database connection -- 18:31:29.619 SQL [956]: pgsql_close() -- 18:31:29.641 INFO [956]: COREGRADE is starting... -- 18:31:29.641 INFO [956]: Version from config: 1.0 -- 18:31:29.641 DEBUG [956]: Connecting to database... -- 18:31:29.641 DEBUG [956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:31:29.641 SQL [956]: pgsql_db_connect() -- 18:31:29.645 DEBUG [956]: Database connection successful -- 18:31:29.645 INFO [956]: _SERVER found -- 18:31:29.645 INFO [956]: REMOTE_ADDR = 192.168.1.13 -- 18:31:29.645 INFO [956]: SERVER_NAME = oameye.works.coregrade.com -- 18:31:29.645 INFO [956]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=gcceib178mojkljduktt6t5p8ub4j4bu -- 18:31:29.645 INFO [956]: QUERY_STRING = /member/index -- 18:31:29.645 INFO [956]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:31:29.680 INFO [956]: COREGRADE is stopping... -- 18:31:29.680 DEBUG [956]: Closing database connection -- 18:31:29.680 SQL [956]: pgsql_close() -- 18:31:30.003 INFO [956]: COREGRADE is starting... -- 18:31:30.003 INFO [956]: Version from config: 1.0 -- 18:31:30.003 DEBUG [956]: Connecting to database... -- 18:31:30.003 DEBUG [956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:31:30.003 SQL [956]: pgsql_db_connect() -- 18:31:30.007 DEBUG [956]: Database connection successful -- 18:31:30.007 INFO [956]: _SERVER found -- 18:31:30.007 INFO [956]: REMOTE_ADDR = 192.168.1.13 -- 18:31:30.007 INFO [956]: SERVER_NAME = oameye.works.coregrade.com -- 18:31:30.007 INFO [956]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=gcceib178mojkljduktt6t5p8ub4j4bu -- 18:31:30.007 INFO [956]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:31:30.007 INFO [956]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:31:30.018 INFO [956]: COREGRADE is stopping... -- 18:31:30.018 DEBUG [956]: Closing database connection -- 18:31:30.018 SQL [956]: pgsql_close() -- 18:31:30.026 INFO [957]: COREGRADE is starting... -- 18:31:30.027 INFO [957]: Version from config: 1.0 -- 18:31:30.027 DEBUG [957]: Connecting to database... -- 18:31:30.027 DEBUG [957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:31:30.027 SQL [957]: pgsql_db_connect() -- 18:31:30.031 DEBUG [957]: Database connection successful -- 18:31:30.031 INFO [957]: _SERVER found -- 18:31:30.031 INFO [957]: REMOTE_ADDR = 192.168.1.13 -- 18:31:30.031 INFO [957]: SERVER_NAME = oameye.works.coregrade.com -- 18:31:30.031 INFO [957]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=gcceib178mojkljduktt6t5p8ub4j4bu -- 18:31:30.031 INFO [957]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:31:30.031 INFO [957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:31:30.043 INFO [957]: COREGRADE is stopping... -- 18:31:30.043 DEBUG [957]: Closing database connection -- 18:31:30.043 SQL [957]: pgsql_close() -- 18:32:33.980 INFO [958]: COREGRADE is starting... -- 18:32:33.980 INFO [958]: Version from config: 1.0 -- 18:32:33.980 DEBUG [958]: Connecting to database... -- 18:32:33.980 DEBUG [958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:32:33.980 SQL [958]: pgsql_db_connect() -- 18:32:33.984 DEBUG [958]: Database connection successful -- 18:32:33.984 INFO [958]: _SERVER found -- 18:32:33.984 INFO [958]: REMOTE_ADDR = 192.168.1.13 -- 18:32:33.984 INFO [958]: SERVER_NAME = oameye.works.coregrade.com -- 18:32:33.984 INFO [958]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=gcceib178mojkljduktt6t5p8ub4j4bu -- 18:32:33.984 INFO [958]: QUERY_STRING = /member/configure -- 18:32:33.984 INFO [958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:32:34.025 INFO [958]: COREGRADE is stopping... -- 18:32:34.025 DEBUG [958]: Closing database connection -- 18:32:34.025 SQL [958]: pgsql_close() -- 18:32:34.272 INFO [958]: COREGRADE is starting... -- 18:32:34.272 INFO [958]: Version from config: 1.0 -- 18:32:34.272 DEBUG [958]: Connecting to database... -- 18:32:34.273 DEBUG [958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:32:34.273 SQL [958]: pgsql_db_connect() -- 18:32:34.277 DEBUG [958]: Database connection successful -- 18:32:34.277 INFO [958]: _SERVER found -- 18:32:34.277 INFO [958]: REMOTE_ADDR = 192.168.1.13 -- 18:32:34.277 INFO [958]: SERVER_NAME = oameye.works.coregrade.com -- 18:32:34.277 INFO [958]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=gcceib178mojkljduktt6t5p8ub4j4bu -- 18:32:34.277 INFO [958]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:32:34.277 INFO [958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:32:34.288 INFO [958]: COREGRADE is stopping... -- 18:32:34.288 DEBUG [958]: Closing database connection -- 18:32:34.288 SQL [958]: pgsql_close() -- 18:32:34.400 INFO [958]: COREGRADE is starting... -- 18:32:34.400 INFO [958]: Version from config: 1.0 -- 18:32:34.400 DEBUG [958]: Connecting to database... -- 18:32:34.400 DEBUG [958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:32:34.400 SQL [958]: pgsql_db_connect() -- 18:32:34.404 DEBUG [958]: Database connection successful -- 18:32:34.404 INFO [958]: _SERVER found -- 18:32:34.404 INFO [958]: REMOTE_ADDR = 192.168.1.13 -- 18:32:34.404 INFO [958]: SERVER_NAME = oameye.works.coregrade.com -- 18:32:34.404 INFO [958]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=gcceib178mojkljduktt6t5p8ub4j4bu -- 18:32:34.404 INFO [958]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:32:34.404 INFO [958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:32:34.415 INFO [958]: COREGRADE is stopping... -- 18:32:34.415 DEBUG [958]: Closing database connection -- 18:32:34.415 SQL [958]: pgsql_close() -- 18:33:23.812 INFO [896]: COREGRADE is starting... -- 18:33:23.812 INFO [896]: Version from config: 1.0 -- 18:33:23.812 DEBUG [896]: Connecting to database... -- 18:33:23.812 DEBUG [896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:33:23.812 SQL [896]: pgsql_db_connect() -- 18:33:23.850 INFO [896]: COREGRADE is starting... -- 18:33:23.850 INFO [896]: Version from config: 1.0 -- 18:33:23.850 DEBUG [896]: Connecting to database... -- 18:33:23.851 DEBUG [896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:33:23.851 SQL [896]: pgsql_db_connect() -- 18:33:23.854 DEBUG [896]: Database connection successful -- 18:33:23.854 INFO [896]: _SERVER found -- 18:33:23.854 INFO [896]: REMOTE_ADDR = 192.168.1.13 -- 18:33:23.854 INFO [896]: SERVER_NAME = oameye.works.coregrade.com -- 18:33:23.854 INFO [896]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=gcceib178mojkljduktt6t5p8ub4j4bu -- 18:33:23.854 INFO [896]: QUERY_STRING = -- 18:33:23.854 INFO [896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:33:23.854 INFO [896]: SystemStatus()09-09-********~************ -- 18:33:23.854 INFO [896]: long coregrade_api_main(CVars in, CVars &out) -- 18:33:23.854 INFO [896]: long coregrade_api_main(CVars in, CVars &out) action =11027 -- 18:33:23.854 INFO [896]: account calls -- 18:33:23.854 INFO [896]: account_calls() -- 18:33:23.854 INFO [896]: CreateUserPage() -- 18:33:23.854 FLOG_MAX [896]: REQ_STRING(description) -- 18:33:23.855 FLOG_MAX [896]: REQ_STRING(title) -- 18:33:23.855 FLOG_MAX [896]: long load_db_record( CVars &rec, const char * query, ... ) -- 18:33:23.855 SQL [896]: pgsql_query() -- 18:33:23.855 SQL [896]: About to run query: -- 18:33:23.855 SQL [896]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 18:33:23.856 SQL [896]: Found rows: 1 -- 18:33:23.856 FLOG_MAX [896]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 18:33:23.856 FLOG_MAX [896]: insert_db_record() -- 18:33:23.856 SQL [896]: pgsql_exec() -- 18:33:23.856 SQL [896]: About to run query: -- 18:33:23.856 SQL [896]: INSERT INTO members_pages (description,member_id,page_key,page_mode,title) VALUES ('All my hacking goes here - with video, text and comments','5','PG2C0D1ABFE8C3AB8B2034F928C945D5F8','OTHERPG','Hacking Class') -- 18:33:23.859 SQL [896]: PQcmdTuples: 1 -- 18:33:23.859 SQL [896]: Affected rows: 1 -- 18:33:23.859 FLOG_MAX [896]: SELECT currval('members_pages_id_seq') -- 18:33:23.859 SQL [896]: pgsql_query() -- 18:33:23.859 SQL [896]: About to run query: -- 18:33:23.859 SQL [896]: SELECT currval('members_pages_id_seq') -- 18:33:23.859 SQL [896]: Found rows: 1 -- 18:33:23.859 INFO [896]: /CreateUserPage() -- 18:33:23.859 INFO [896]: RET: page_key=PG2C0D1ABFE8C3AB8B2034F928C945D5F8 -- 18:33:23.859 INFO [896]: RET: result=YES I GET TO BACK END -- 18:33:23.865 INFO [896]: COREGRADE is stopping... -- 18:33:23.865 DEBUG [896]: Closing database connection -- 18:33:23.865 SQL [896]: pgsql_close() -- 18:33:23.816 DEBUG [896]: Database connection successful -- 18:33:23.816 INFO [896]: _SERVER found -- 18:33:23.816 INFO [896]: REMOTE_ADDR = 192.168.1.13 -- 18:33:23.816 INFO [896]: SERVER_NAME = oameye.works.coregrade.com -- 18:33:23.816 INFO [896]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=gcceib178mojkljduktt6t5p8ub4j4bu -- 18:33:23.816 INFO [896]: QUERY_STRING = /member/addcard -- 18:33:23.816 INFO [896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:33:23.865 INFO [896]: COREGRADE is stopping... -- 18:33:23.865 DEBUG [896]: Closing database connection -- 18:33:23.865 SQL [896]: pgsql_close() -- 18:33:24.151 INFO [896]: COREGRADE is starting... -- 18:33:24.151 INFO [896]: Version from config: 1.0 -- 18:33:24.151 DEBUG [896]: Connecting to database... -- 18:33:24.151 DEBUG [896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:33:24.151 SQL [896]: pgsql_db_connect() -- 18:33:24.155 DEBUG [896]: Database connection successful -- 18:33:24.155 INFO [896]: _SERVER found -- 18:33:24.155 INFO [896]: REMOTE_ADDR = 192.168.1.13 -- 18:33:24.155 INFO [896]: SERVER_NAME = oameye.works.coregrade.com -- 18:33:24.155 INFO [896]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=gcceib178mojkljduktt6t5p8ub4j4bu -- 18:33:24.155 INFO [896]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:33:24.155 INFO [896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:33:24.166 INFO [896]: COREGRADE is stopping... -- 18:33:24.166 DEBUG [896]: Closing database connection -- 18:33:24.166 SQL [896]: pgsql_close() -- 18:33:24.416 INFO [896]: COREGRADE is starting... -- 18:33:24.416 INFO [896]: Version from config: 1.0 -- 18:33:24.416 DEBUG [896]: Connecting to database... -- 18:33:24.416 DEBUG [896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:33:24.416 SQL [896]: pgsql_db_connect() -- 18:33:24.420 DEBUG [896]: Database connection successful -- 18:33:24.420 INFO [896]: _SERVER found -- 18:33:24.420 INFO [896]: REMOTE_ADDR = 192.168.1.13 -- 18:33:24.420 INFO [896]: SERVER_NAME = oameye.works.coregrade.com -- 18:33:24.420 INFO [896]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=gcceib178mojkljduktt6t5p8ub4j4bu -- 18:33:24.420 INFO [896]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:33:24.420 INFO [896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:33:24.431 INFO [896]: COREGRADE is stopping... -- 18:33:24.431 DEBUG [896]: Closing database connection -- 18:33:24.431 SQL [896]: pgsql_close() -- 18:34:46.082 INFO [898]: COREGRADE is starting... -- 18:34:46.082 INFO [898]: Version from config: 1.0 -- 18:34:46.082 DEBUG [898]: Connecting to database... -- 18:34:46.082 DEBUG [898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:34:46.082 SQL [898]: pgsql_db_connect() -- 18:34:46.123 INFO [898]: COREGRADE is starting... -- 18:34:46.123 INFO [898]: Version from config: 1.0 -- 18:34:46.123 DEBUG [898]: Connecting to database... -- 18:34:46.123 DEBUG [898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:34:46.123 SQL [898]: pgsql_db_connect() -- 18:34:46.127 DEBUG [898]: Database connection successful -- 18:34:46.127 INFO [898]: _SERVER found -- 18:34:46.127 INFO [898]: REMOTE_ADDR = 192.168.1.13 -- 18:34:46.127 INFO [898]: SERVER_NAME = oameye.works.coregrade.com -- 18:34:46.127 INFO [898]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=gcceib178mojkljduktt6t5p8ub4j4bu -- 18:34:46.127 INFO [898]: QUERY_STRING = -- 18:34:46.127 INFO [898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:34:46.127 INFO [898]: SystemStatus()09-09-********~************ -- 18:34:46.127 INFO [898]: long coregrade_api_main(CVars in, CVars &out) -- 18:34:46.127 INFO [898]: long coregrade_api_main(CVars in, CVars &out) action =11027 -- 18:34:46.127 INFO [898]: account calls -- 18:34:46.127 INFO [898]: account_calls() -- 18:34:46.127 INFO [898]: CreateUserPage() -- 18:34:46.127 FLOG_MAX [898]: REQ_STRING(description) -- 18:34:46.127 FLOG_MAX [898]: REQ_STRING(title) -- 18:34:46.127 FLOG_MAX [898]: long load_db_record( CVars &rec, const char * query, ... ) -- 18:34:46.127 SQL [898]: pgsql_query() -- 18:34:46.128 SQL [898]: About to run query: -- 18:34:46.128 SQL [898]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 18:34:46.129 SQL [898]: Found rows: 1 -- 18:34:46.129 FLOG_MAX [898]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 18:34:46.129 FLOG_MAX [898]: insert_db_record() -- 18:34:46.129 SQL [898]: pgsql_exec() -- 18:34:46.129 SQL [898]: About to run query: -- 18:34:46.129 SQL [898]: INSERT INTO members_pages (description,member_id,page_key,page_mode,title) VALUES ('All kids project goes here','5','PG57A3D6EA775D28E415A3FC606CD1922C','OTHERPG','Kids Technology Class') -- 18:34:46.132 SQL [898]: PQcmdTuples: 1 -- 18:34:46.132 SQL [898]: Affected rows: 1 -- 18:34:46.132 FLOG_MAX [898]: SELECT currval('members_pages_id_seq') -- 18:34:46.132 SQL [898]: pgsql_query() -- 18:34:46.132 SQL [898]: About to run query: -- 18:34:46.132 SQL [898]: SELECT currval('members_pages_id_seq') -- 18:34:46.132 SQL [898]: Found rows: 1 -- 18:34:46.132 INFO [898]: /CreateUserPage() -- 18:34:46.132 INFO [898]: RET: page_key=PG57A3D6EA775D28E415A3FC606CD1922C -- 18:34:46.132 INFO [898]: RET: result=YES I GET TO BACK END -- 18:34:46.138 INFO [898]: COREGRADE is stopping... -- 18:34:46.138 DEBUG [898]: Closing database connection -- 18:34:46.138 SQL [898]: pgsql_close() -- 18:34:46.087 DEBUG [898]: Database connection successful -- 18:34:46.087 INFO [898]: _SERVER found -- 18:34:46.087 INFO [898]: REMOTE_ADDR = 192.168.1.13 -- 18:34:46.087 INFO [898]: SERVER_NAME = oameye.works.coregrade.com -- 18:34:46.087 INFO [898]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=gcceib178mojkljduktt6t5p8ub4j4bu -- 18:34:46.087 INFO [898]: QUERY_STRING = /member/addcard -- 18:34:46.087 INFO [898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:34:46.139 INFO [898]: COREGRADE is stopping... -- 18:34:46.139 DEBUG [898]: Closing database connection -- 18:34:46.139 SQL [898]: pgsql_close() -- 18:34:46.542 INFO [898]: COREGRADE is starting... -- 18:34:46.542 INFO [898]: Version from config: 1.0 -- 18:34:46.542 DEBUG [898]: Connecting to database... -- 18:34:46.542 DEBUG [898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:34:46.542 SQL [898]: pgsql_db_connect() -- 18:34:46.546 DEBUG [898]: Database connection successful -- 18:34:46.546 INFO [898]: _SERVER found -- 18:34:46.546 INFO [898]: REMOTE_ADDR = 192.168.1.13 -- 18:34:46.546 INFO [898]: SERVER_NAME = oameye.works.coregrade.com -- 18:34:46.546 INFO [898]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=b6okm1p9pftp96mg9m12s4ieeujabhnl -- 18:34:46.546 INFO [898]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:34:46.546 INFO [898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:34:46.558 INFO [898]: COREGRADE is stopping... -- 18:34:46.558 DEBUG [898]: Closing database connection -- 18:34:46.558 SQL [898]: pgsql_close() -- 18:34:46.894 INFO [898]: COREGRADE is starting... -- 18:34:46.895 INFO [898]: Version from config: 1.0 -- 18:34:46.895 DEBUG [898]: Connecting to database... -- 18:34:46.895 DEBUG [898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:34:46.895 SQL [898]: pgsql_db_connect() -- 18:34:46.899 DEBUG [898]: Database connection successful -- 18:34:46.899 INFO [898]: _SERVER found -- 18:34:46.899 INFO [898]: REMOTE_ADDR = 192.168.1.13 -- 18:34:46.899 INFO [898]: SERVER_NAME = oameye.works.coregrade.com -- 18:34:46.899 INFO [898]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=b6okm1p9pftp96mg9m12s4ieeujabhnl -- 18:34:46.899 INFO [898]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:34:46.899 INFO [898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:34:46.910 INFO [898]: COREGRADE is stopping... -- 18:34:46.910 DEBUG [898]: Closing database connection -- 18:34:46.910 SQL [898]: pgsql_close() -- 18:34:52.798 INFO [897]: COREGRADE is starting... -- 18:34:52.798 INFO [897]: Version from config: 1.0 -- 18:34:52.798 DEBUG [897]: Connecting to database... -- 18:34:52.798 DEBUG [897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:34:52.798 SQL [897]: pgsql_db_connect() -- 18:34:52.802 DEBUG [897]: Database connection successful -- 18:34:52.802 INFO [897]: _SERVER found -- 18:34:52.802 INFO [897]: REMOTE_ADDR = 192.168.1.13 -- 18:34:52.802 INFO [897]: SERVER_NAME = oameye.works.coregrade.com -- 18:34:52.802 INFO [897]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r14h41liv5ircicfglk8jj0uc02mpks2 -- 18:34:52.802 INFO [897]: QUERY_STRING = /member/configure -- 18:34:52.802 INFO [897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:34:52.838 INFO [897]: COREGRADE is stopping... -- 18:34:52.838 DEBUG [897]: Closing database connection -- 18:34:52.838 SQL [897]: pgsql_close() -- 18:34:53.266 INFO [897]: COREGRADE is starting... -- 18:34:53.266 INFO [897]: Version from config: 1.0 -- 18:34:53.266 DEBUG [897]: Connecting to database... -- 18:34:53.266 DEBUG [897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:34:53.266 SQL [897]: pgsql_db_connect() -- 18:34:53.270 DEBUG [897]: Database connection successful -- 18:34:53.270 INFO [897]: _SERVER found -- 18:34:53.270 INFO [897]: REMOTE_ADDR = 192.168.1.13 -- 18:34:53.270 INFO [897]: SERVER_NAME = oameye.works.coregrade.com -- 18:34:53.270 INFO [897]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlm37dm0peasocsikm3uq4nipqs33rkh -- 18:34:53.270 INFO [897]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:34:53.270 INFO [897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:34:53.281 INFO [897]: COREGRADE is stopping... -- 18:34:53.282 DEBUG [897]: Closing database connection -- 18:34:53.282 SQL [897]: pgsql_close() -- 18:34:53.286 INFO [899]: COREGRADE is starting... -- 18:34:53.286 INFO [899]: Version from config: 1.0 -- 18:34:53.286 DEBUG [899]: Connecting to database... -- 18:34:53.286 DEBUG [899]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:34:53.286 SQL [899]: pgsql_db_connect() -- 18:34:53.290 DEBUG [899]: Database connection successful -- 18:34:53.290 INFO [899]: _SERVER found -- 18:34:53.290 INFO [899]: REMOTE_ADDR = 192.168.1.13 -- 18:34:53.290 INFO [899]: SERVER_NAME = oameye.works.coregrade.com -- 18:34:53.290 INFO [899]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlm37dm0peasocsikm3uq4nipqs33rkh -- 18:34:53.290 INFO [899]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:34:53.290 INFO [899]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:34:53.301 INFO [899]: COREGRADE is stopping... -- 18:34:53.301 DEBUG [899]: Closing database connection -- 18:34:53.301 SQL [899]: pgsql_close() -- 18:35:28.916 INFO [900]: COREGRADE is starting... -- 18:35:28.916 INFO [900]: Version from config: 1.0 -- 18:35:28.916 DEBUG [900]: Connecting to database... -- 18:35:28.916 DEBUG [900]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:35:28.916 SQL [900]: pgsql_db_connect() -- 18:35:28.951 INFO [900]: COREGRADE is starting... -- 18:35:28.951 INFO [900]: Version from config: 1.0 -- 18:35:28.951 DEBUG [900]: Connecting to database... -- 18:35:28.951 DEBUG [900]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:35:28.951 SQL [900]: pgsql_db_connect() -- 18:35:28.955 DEBUG [900]: Database connection successful -- 18:35:28.955 INFO [900]: _SERVER found -- 18:35:28.955 INFO [900]: REMOTE_ADDR = 192.168.1.13 -- 18:35:28.955 INFO [900]: SERVER_NAME = oameye.works.coregrade.com -- 18:35:28.955 INFO [900]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlm37dm0peasocsikm3uq4nipqs33rkh -- 18:35:28.955 INFO [900]: QUERY_STRING = -- 18:35:28.955 INFO [900]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:35:28.955 INFO [900]: SystemStatus()09-09-********~************ -- 18:35:28.955 INFO [900]: long coregrade_api_main(CVars in, CVars &out) -- 18:35:28.955 INFO [900]: long coregrade_api_main(CVars in, CVars &out) action =11027 -- 18:35:28.955 INFO [900]: account calls -- 18:35:28.955 INFO [900]: account_calls() -- 18:35:28.955 INFO [900]: CreateUserPage() -- 18:35:28.955 FLOG_MAX [900]: REQ_STRING(description) -- 18:35:28.955 FLOG_MAX [900]: REQ_STRING(title) -- 18:35:28.955 FLOG_MAX [900]: long load_db_record( CVars &rec, const char * query, ... ) -- 18:35:28.955 SQL [900]: pgsql_query() -- 18:35:28.955 SQL [900]: About to run query: -- 18:35:28.955 SQL [900]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 18:35:28.957 SQL [900]: Found rows: 1 -- 18:35:28.957 FLOG_MAX [900]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 18:35:28.957 FLOG_MAX [900]: insert_db_record() -- 18:35:28.957 SQL [900]: pgsql_exec() -- 18:35:28.957 SQL [900]: About to run query: -- 18:35:28.957 SQL [900]: INSERT INTO members_pages (description,member_id,page_key,page_mode,title) VALUES ('VPN PENETRATION TESTING','7','PGEF782139F828753BCCD0D957E933B7DD','OTHERPG','NEtworking') -- 18:35:28.960 SQL [900]: PQcmdTuples: 1 -- 18:35:28.960 SQL [900]: Affected rows: 1 -- 18:35:28.960 FLOG_MAX [900]: SELECT currval('members_pages_id_seq') -- 18:35:28.960 SQL [900]: pgsql_query() -- 18:35:28.960 SQL [900]: About to run query: -- 18:35:28.960 SQL [900]: SELECT currval('members_pages_id_seq') -- 18:35:28.960 SQL [900]: Found rows: 1 -- 18:35:28.960 INFO [900]: /CreateUserPage() -- 18:35:28.960 INFO [900]: RET: page_key=PGEF782139F828753BCCD0D957E933B7DD -- 18:35:28.960 INFO [900]: RET: result=YES I GET TO BACK END -- 18:35:28.965 INFO [900]: COREGRADE is stopping... -- 18:35:28.965 DEBUG [900]: Closing database connection -- 18:35:28.965 SQL [900]: pgsql_close() -- 18:35:28.920 DEBUG [900]: Database connection successful -- 18:35:28.920 INFO [900]: _SERVER found -- 18:35:28.920 INFO [900]: REMOTE_ADDR = 192.168.1.13 -- 18:35:28.920 INFO [900]: SERVER_NAME = oameye.works.coregrade.com -- 18:35:28.920 INFO [900]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlm37dm0peasocsikm3uq4nipqs33rkh -- 18:35:28.920 INFO [900]: QUERY_STRING = /member/addcard -- 18:35:28.920 INFO [900]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:35:28.966 INFO [900]: COREGRADE is stopping... -- 18:35:28.966 DEBUG [900]: Closing database connection -- 18:35:28.966 SQL [900]: pgsql_close() -- 18:35:29.370 INFO [900]: COREGRADE is starting... -- 18:35:29.370 INFO [900]: Version from config: 1.0 -- 18:35:29.370 DEBUG [900]: Connecting to database... -- 18:35:29.370 DEBUG [900]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:35:29.370 SQL [900]: pgsql_db_connect() -- 18:35:29.375 DEBUG [900]: Database connection successful -- 18:35:29.375 INFO [900]: _SERVER found -- 18:35:29.375 INFO [900]: REMOTE_ADDR = 192.168.1.13 -- 18:35:29.375 INFO [900]: SERVER_NAME = oameye.works.coregrade.com -- 18:35:29.375 INFO [900]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlm37dm0peasocsikm3uq4nipqs33rkh -- 18:35:29.375 INFO [900]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:35:29.375 INFO [900]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:35:29.386 INFO [900]: COREGRADE is stopping... -- 18:35:29.386 DEBUG [900]: Closing database connection -- 18:35:29.386 SQL [900]: pgsql_close() -- 18:35:29.400 INFO [956]: COREGRADE is starting... -- 18:35:29.400 INFO [956]: Version from config: 1.0 -- 18:35:29.400 DEBUG [956]: Connecting to database... -- 18:35:29.400 DEBUG [956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:35:29.400 SQL [956]: pgsql_db_connect() -- 18:35:29.404 DEBUG [956]: Database connection successful -- 18:35:29.404 INFO [956]: _SERVER found -- 18:35:29.404 INFO [956]: REMOTE_ADDR = 192.168.1.13 -- 18:35:29.404 INFO [956]: SERVER_NAME = oameye.works.coregrade.com -- 18:35:29.404 INFO [956]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlm37dm0peasocsikm3uq4nipqs33rkh -- 18:35:29.404 INFO [956]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:35:29.404 INFO [956]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:35:29.415 INFO [956]: COREGRADE is stopping... -- 18:35:29.415 DEBUG [956]: Closing database connection -- 18:35:29.415 SQL [956]: pgsql_close() -- 18:36:01.705 INFO [957]: COREGRADE is starting... -- 18:36:01.706 INFO [957]: Version from config: 1.0 -- 18:36:01.706 DEBUG [957]: Connecting to database... -- 18:36:01.706 DEBUG [957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:36:01.706 SQL [957]: pgsql_db_connect() -- 18:36:01.710 DEBUG [957]: Database connection successful -- 18:36:01.710 INFO [957]: _SERVER found -- 18:36:01.710 INFO [957]: REMOTE_ADDR = 192.168.1.13 -- 18:36:01.710 INFO [957]: SERVER_NAME = oameye.works.coregrade.com -- 18:36:01.710 INFO [957]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlm37dm0peasocsikm3uq4nipqs33rkh -- 18:36:01.710 INFO [957]: QUERY_STRING = /member/addcard -- 18:36:01.710 INFO [957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:36:01.750 INFO [957]: COREGRADE is stopping... -- 18:36:01.750 DEBUG [957]: Closing database connection -- 18:36:01.750 SQL [957]: pgsql_close() -- 18:36:02.158 INFO [957]: COREGRADE is starting... -- 18:36:02.158 INFO [957]: Version from config: 1.0 -- 18:36:02.158 DEBUG [957]: Connecting to database... -- 18:36:02.158 DEBUG [957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:36:02.159 SQL [957]: pgsql_db_connect() -- 18:36:02.162 DEBUG [957]: Database connection successful -- 18:36:02.162 INFO [957]: _SERVER found -- 18:36:02.162 INFO [957]: REMOTE_ADDR = 192.168.1.13 -- 18:36:02.162 INFO [957]: SERVER_NAME = oameye.works.coregrade.com -- 18:36:02.162 INFO [957]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlm37dm0peasocsikm3uq4nipqs33rkh -- 18:36:02.162 INFO [957]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:36:02.162 INFO [957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:36:02.175 INFO [957]: COREGRADE is stopping... -- 18:36:02.175 DEBUG [957]: Closing database connection -- 18:36:02.175 SQL [957]: pgsql_close() -- 18:36:02.183 INFO [958]: COREGRADE is starting... -- 18:36:02.183 INFO [958]: Version from config: 1.0 -- 18:36:02.183 DEBUG [958]: Connecting to database... -- 18:36:02.183 DEBUG [958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:36:02.184 SQL [958]: pgsql_db_connect() -- 18:36:02.187 DEBUG [958]: Database connection successful -- 18:36:02.187 INFO [958]: _SERVER found -- 18:36:02.187 INFO [958]: REMOTE_ADDR = 192.168.1.13 -- 18:36:02.187 INFO [958]: SERVER_NAME = oameye.works.coregrade.com -- 18:36:02.187 INFO [958]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlm37dm0peasocsikm3uq4nipqs33rkh -- 18:36:02.187 INFO [958]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:36:02.187 INFO [958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:36:02.199 INFO [958]: COREGRADE is stopping... -- 18:36:02.199 DEBUG [958]: Closing database connection -- 18:36:02.199 SQL [958]: pgsql_close() -- 18:37:22.165 INFO [896]: COREGRADE is starting... -- 18:37:22.165 INFO [896]: Version from config: 1.0 -- 18:37:22.165 DEBUG [896]: Connecting to database... -- 18:37:22.165 DEBUG [896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:37:22.165 SQL [896]: pgsql_db_connect() -- 18:37:22.200 INFO [896]: COREGRADE is starting... -- 18:37:22.201 INFO [896]: Version from config: 1.0 -- 18:37:22.201 DEBUG [896]: Connecting to database... -- 18:37:22.201 DEBUG [896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:37:22.201 SQL [896]: pgsql_db_connect() -- 18:37:22.205 DEBUG [896]: Database connection successful -- 18:37:22.205 INFO [896]: _SERVER found -- 18:37:22.205 INFO [896]: REMOTE_ADDR = 192.168.1.13 -- 18:37:22.205 INFO [896]: SERVER_NAME = oameye.works.coregrade.com -- 18:37:22.205 INFO [896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlm37dm0peasocsikm3uq4nipqs33rkh -- 18:37:22.205 INFO [896]: QUERY_STRING = -- 18:37:22.205 INFO [896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:37:22.205 INFO [896]: SystemStatus()09-09-********~************ -- 18:37:22.205 INFO [896]: long coregrade_api_main(CVars in, CVars &out) -- 18:37:22.205 INFO [896]: long coregrade_api_main(CVars in, CVars &out) action =11027 -- 18:37:22.205 INFO [896]: account calls -- 18:37:22.205 INFO [896]: account_calls() -- 18:37:22.205 INFO [896]: CreateUserPage() -- 18:37:22.205 FLOG_MAX [896]: REQ_STRING(description) -- 18:37:22.205 FLOG_MAX [896]: REQ_STRING(title) -- 18:37:22.205 FLOG_MAX [896]: long load_db_record( CVars &rec, const char * query, ... ) -- 18:37:22.205 SQL [896]: pgsql_query() -- 18:37:22.205 SQL [896]: About to run query: -- 18:37:22.205 SQL [896]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 18:37:22.206 SQL [896]: Found rows: 1 -- 18:37:22.206 FLOG_MAX [896]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 18:37:22.206 FLOG_MAX [896]: insert_db_record() -- 18:37:22.206 SQL [896]: pgsql_exec() -- 18:37:22.206 SQL [896]: About to run query: -- 18:37:22.206 SQL [896]: INSERT INTO members_pages (description,member_id,page_key,page_mode,title) VALUES ('Alexa','7','PG56D4B36E40BECCDA69685E721CDDFB8D','OTHERPG','VOICE -ENABLEMENT') -- 18:37:22.209 SQL [896]: PQcmdTuples: 1 -- 18:37:22.209 SQL [896]: Affected rows: 1 -- 18:37:22.209 FLOG_MAX [896]: SELECT currval('members_pages_id_seq') -- 18:37:22.209 SQL [896]: pgsql_query() -- 18:37:22.209 SQL [896]: About to run query: -- 18:37:22.209 SQL [896]: SELECT currval('members_pages_id_seq') -- 18:37:22.210 SQL [896]: Found rows: 1 -- 18:37:22.210 INFO [896]: /CreateUserPage() -- 18:37:22.210 INFO [896]: RET: page_key=PG56D4B36E40BECCDA69685E721CDDFB8D -- 18:37:22.210 INFO [896]: RET: result=YES I GET TO BACK END -- 18:37:22.215 INFO [896]: COREGRADE is stopping... -- 18:37:22.215 DEBUG [896]: Closing database connection -- 18:37:22.215 SQL [896]: pgsql_close() -- 18:37:22.169 DEBUG [896]: Database connection successful -- 18:37:22.169 INFO [896]: _SERVER found -- 18:37:22.169 INFO [896]: REMOTE_ADDR = 192.168.1.13 -- 18:37:22.169 INFO [896]: SERVER_NAME = oameye.works.coregrade.com -- 18:37:22.169 INFO [896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlm37dm0peasocsikm3uq4nipqs33rkh -- 18:37:22.169 INFO [896]: QUERY_STRING = /member/addcard -- 18:37:22.169 INFO [896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:37:22.215 INFO [896]: COREGRADE is stopping... -- 18:37:22.215 DEBUG [896]: Closing database connection -- 18:37:22.215 SQL [896]: pgsql_close() -- 18:37:22.647 INFO [896]: COREGRADE is starting... -- 18:37:22.647 INFO [896]: Version from config: 1.0 -- 18:37:22.647 DEBUG [896]: Connecting to database... -- 18:37:22.647 DEBUG [896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:37:22.647 SQL [896]: pgsql_db_connect() -- 18:37:22.651 DEBUG [896]: Database connection successful -- 18:37:22.651 INFO [896]: _SERVER found -- 18:37:22.651 INFO [896]: REMOTE_ADDR = 192.168.1.13 -- 18:37:22.651 INFO [896]: SERVER_NAME = oameye.works.coregrade.com -- 18:37:22.651 INFO [896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlm37dm0peasocsikm3uq4nipqs33rkh -- 18:37:22.651 INFO [896]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:37:22.651 INFO [896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:37:22.662 INFO [896]: COREGRADE is stopping... -- 18:37:22.662 DEBUG [896]: Closing database connection -- 18:37:22.662 SQL [896]: pgsql_close() -- 18:37:22.671 INFO [898]: COREGRADE is starting... -- 18:37:22.672 INFO [898]: Version from config: 1.0 -- 18:37:22.672 DEBUG [898]: Connecting to database... -- 18:37:22.672 DEBUG [898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:37:22.672 SQL [898]: pgsql_db_connect() -- 18:37:22.676 DEBUG [898]: Database connection successful -- 18:37:22.676 INFO [898]: _SERVER found -- 18:37:22.676 INFO [898]: REMOTE_ADDR = 192.168.1.13 -- 18:37:22.676 INFO [898]: SERVER_NAME = oameye.works.coregrade.com -- 18:37:22.676 INFO [898]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlm37dm0peasocsikm3uq4nipqs33rkh -- 18:37:22.676 INFO [898]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:37:22.676 INFO [898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:37:22.687 INFO [898]: COREGRADE is stopping... -- 18:37:22.687 DEBUG [898]: Closing database connection -- 18:37:22.687 SQL [898]: pgsql_close() -- 18:38:38.067 INFO [11635]: COREGRADE is starting... -- 18:38:38.067 INFO [11635]: Version from config: 1.0 -- 18:38:38.067 DEBUG [11635]: Connecting to database... -- 18:38:38.067 DEBUG [11635]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:38:38.067 SQL [11635]: pgsql_db_connect() -- 18:38:38.072 DEBUG [11635]: Database connection successful -- 18:38:38.072 INFO [11635]: _SERVER found -- 18:38:38.072 INFO [11635]: REMOTE_ADDR = 192.168.1.13 -- 18:38:38.072 INFO [11635]: SERVER_NAME = oameye.works.coregrade.com -- 18:38:38.072 INFO [11635]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=b6okm1p9pftp96mg9m12s4ieeujabhnl -- 18:38:38.072 INFO [11635]: QUERY_STRING = /auth/logout -- 18:38:38.072 INFO [11635]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:38:38.110 INFO [11635]: COREGRADE is stopping... -- 18:38:38.110 DEBUG [11635]: Closing database connection -- 18:38:38.110 SQL [11635]: pgsql_close() -- 18:38:38.318 INFO [11635]: COREGRADE is starting... -- 18:38:38.318 INFO [11635]: Version from config: 1.0 -- 18:38:38.318 DEBUG [11635]: Connecting to database... -- 18:38:38.318 DEBUG [11635]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:38:38.318 SQL [11635]: pgsql_db_connect() -- 18:38:38.322 DEBUG [11635]: Database connection successful -- 18:38:38.322 INFO [11635]: _SERVER found -- 18:38:38.322 INFO [11635]: REMOTE_ADDR = 192.168.1.13 -- 18:38:38.322 INFO [11635]: SERVER_NAME = oameye.works.coregrade.com -- 18:38:38.322 INFO [11635]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=b6okm1p9pftp96mg9m12s4ieeujabhnl -- 18:38:38.322 INFO [11635]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:38:38.322 INFO [11635]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:38:38.334 INFO [11635]: COREGRADE is stopping... -- 18:38:38.334 DEBUG [11635]: Closing database connection -- 18:38:38.334 SQL [11635]: pgsql_close() -- 18:38:38.343 INFO [11635]: COREGRADE is starting... -- 18:38:38.343 INFO [11635]: Version from config: 1.0 -- 18:38:38.343 DEBUG [11635]: Connecting to database... -- 18:38:38.343 DEBUG [11635]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:38:38.343 SQL [11635]: pgsql_db_connect() -- 18:38:38.347 DEBUG [11635]: Database connection successful -- 18:38:38.347 INFO [11635]: _SERVER found -- 18:38:38.347 INFO [11635]: REMOTE_ADDR = 192.168.1.13 -- 18:38:38.347 INFO [11635]: SERVER_NAME = oameye.works.coregrade.com -- 18:38:38.347 INFO [11635]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=b6okm1p9pftp96mg9m12s4ieeujabhnl -- 18:38:38.347 INFO [11635]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:38:38.347 INFO [11635]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:38:38.359 INFO [11635]: COREGRADE is stopping... -- 18:38:38.359 DEBUG [11635]: Closing database connection -- 18:38:38.359 SQL [11635]: pgsql_close() -- 18:38:39.757 INFO [11636]: COREGRADE is starting... -- 18:38:39.758 INFO [11636]: Version from config: 1.0 -- 18:38:39.758 DEBUG [11636]: Connecting to database... -- 18:38:39.758 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:38:39.758 SQL [11636]: pgsql_db_connect() -- 18:38:39.799 INFO [11636]: COREGRADE is starting... -- 18:38:39.799 INFO [11636]: Version from config: 1.0 -- 18:38:39.799 DEBUG [11636]: Connecting to database... -- 18:38:39.799 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:38:39.799 SQL [11636]: pgsql_db_connect() -- 18:38:39.803 DEBUG [11636]: Database connection successful -- 18:38:39.803 INFO [11636]: _SERVER found -- 18:38:39.803 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 18:38:39.803 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 18:38:39.803 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlm37dm0peasocsikm3uq4nipqs33rkh -- 18:38:39.803 INFO [11636]: QUERY_STRING = -- 18:38:39.803 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:38:39.803 INFO [11636]: SystemStatus()09-09-********~************ -- 18:38:39.803 INFO [11636]: long coregrade_api_main(CVars in, CVars &out) -- 18:38:39.803 INFO [11636]: long coregrade_api_main(CVars in, CVars &out) action =11027 -- 18:38:39.803 INFO [11636]: account calls -- 18:38:39.803 INFO [11636]: account_calls() -- 18:38:39.803 INFO [11636]: CreateUserPage() -- 18:38:39.803 FLOG_MAX [11636]: REQ_STRING(description) -- 18:38:39.803 FLOG_MAX [11636]: REQ_STRING(title) -- 18:38:39.803 FLOG_MAX [11636]: long load_db_record( CVars &rec, const char * query, ... ) -- 18:38:39.803 SQL [11636]: pgsql_query() -- 18:38:39.803 SQL [11636]: About to run query: -- 18:38:39.803 SQL [11636]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 18:38:39.805 SQL [11636]: Found rows: 1 -- 18:38:39.805 FLOG_MAX [11636]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 18:38:39.805 FLOG_MAX [11636]: insert_db_record() -- 18:38:39.805 SQL [11636]: pgsql_exec() -- 18:38:39.805 SQL [11636]: About to run query: -- 18:38:39.805 SQL [11636]: INSERT INTO members_pages (description,member_id,page_key,page_mode,title) VALUES ('MONITORING,CONCEPT,USAGE','7','PG541222E90463771C1DC4CAB17096BD88','OTHERPG','SERVER CONFIGURATION') -- 18:38:39.808 SQL [11636]: PQcmdTuples: 1 -- 18:38:39.808 SQL [11636]: Affected rows: 1 -- 18:38:39.808 FLOG_MAX [11636]: SELECT currval('members_pages_id_seq') -- 18:38:39.808 SQL [11636]: pgsql_query() -- 18:38:39.808 SQL [11636]: About to run query: -- 18:38:39.808 SQL [11636]: SELECT currval('members_pages_id_seq') -- 18:38:39.808 SQL [11636]: Found rows: 1 -- 18:38:39.808 INFO [11636]: /CreateUserPage() -- 18:38:39.808 INFO [11636]: RET: page_key=PG541222E90463771C1DC4CAB17096BD88 -- 18:38:39.808 INFO [11636]: RET: result=YES I GET TO BACK END -- 18:38:39.814 INFO [11636]: COREGRADE is stopping... -- 18:38:39.814 DEBUG [11636]: Closing database connection -- 18:38:39.814 SQL [11636]: pgsql_close() -- 18:38:39.762 DEBUG [11636]: Database connection successful -- 18:38:39.762 INFO [11636]: _SERVER found -- 18:38:39.762 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 18:38:39.762 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 18:38:39.762 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlm37dm0peasocsikm3uq4nipqs33rkh -- 18:38:39.762 INFO [11636]: QUERY_STRING = /member/addcard -- 18:38:39.762 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:38:39.814 INFO [11636]: COREGRADE is stopping... -- 18:38:39.814 DEBUG [11636]: Closing database connection -- 18:38:39.814 SQL [11636]: pgsql_close() -- 18:38:40.253 INFO [11636]: COREGRADE is starting... -- 18:38:40.253 INFO [11636]: Version from config: 1.0 -- 18:38:40.253 DEBUG [11636]: Connecting to database... -- 18:38:40.253 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:38:40.253 SQL [11636]: pgsql_db_connect() -- 18:38:40.257 DEBUG [11636]: Database connection successful -- 18:38:40.257 INFO [11636]: _SERVER found -- 18:38:40.257 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 18:38:40.257 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 18:38:40.257 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlm37dm0peasocsikm3uq4nipqs33rkh -- 18:38:40.257 INFO [11636]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:38:40.257 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:38:40.270 INFO [11636]: COREGRADE is stopping... -- 18:38:40.270 DEBUG [11636]: Closing database connection -- 18:38:40.270 SQL [11636]: pgsql_close() -- 18:38:40.283 INFO [11637]: COREGRADE is starting... -- 18:38:40.283 INFO [11637]: Version from config: 1.0 -- 18:38:40.283 DEBUG [11637]: Connecting to database... -- 18:38:40.283 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:38:40.283 SQL [11637]: pgsql_db_connect() -- 18:38:40.287 DEBUG [11637]: Database connection successful -- 18:38:40.287 INFO [11637]: _SERVER found -- 18:38:40.287 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 18:38:40.287 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 18:38:40.287 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlm37dm0peasocsikm3uq4nipqs33rkh -- 18:38:40.287 INFO [11637]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:38:40.287 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:38:40.301 INFO [11637]: COREGRADE is stopping... -- 18:38:40.301 DEBUG [11637]: Closing database connection -- 18:38:40.301 SQL [11637]: pgsql_close() -- 18:38:45.444 INFO [11639]: COREGRADE is starting... -- 18:38:45.445 INFO [11639]: Version from config: 1.0 -- 18:38:45.445 DEBUG [11639]: Connecting to database... -- 18:38:45.445 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:38:45.445 SQL [11639]: pgsql_db_connect() -- 18:38:45.449 DEBUG [11639]: Database connection successful -- 18:38:45.449 INFO [11639]: _SERVER found -- 18:38:45.449 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 18:38:45.449 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 18:38:45.449 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlm37dm0peasocsikm3uq4nipqs33rkh -- 18:38:45.449 INFO [11639]: QUERY_STRING = /member -- 18:38:45.449 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:38:45.490 INFO [11639]: COREGRADE is stopping... -- 18:38:45.490 DEBUG [11639]: Closing database connection -- 18:38:45.490 SQL [11639]: pgsql_close() -- 18:38:45.842 INFO [11639]: COREGRADE is starting... -- 18:38:45.842 INFO [11639]: Version from config: 1.0 -- 18:38:45.842 DEBUG [11639]: Connecting to database... -- 18:38:45.842 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:38:45.842 SQL [11639]: pgsql_db_connect() -- 18:38:45.846 DEBUG [11639]: Database connection successful -- 18:38:45.846 INFO [11639]: _SERVER found -- 18:38:45.846 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 18:38:45.846 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 18:38:45.846 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlm37dm0peasocsikm3uq4nipqs33rkh -- 18:38:45.846 INFO [11639]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:38:45.846 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:38:45.858 INFO [11639]: COREGRADE is stopping... -- 18:38:45.858 DEBUG [11639]: Closing database connection -- 18:38:45.858 SQL [11639]: pgsql_close() -- 18:38:45.876 INFO [11638]: COREGRADE is starting... -- 18:38:45.876 INFO [11638]: Version from config: 1.0 -- 18:38:45.876 DEBUG [11638]: Connecting to database... -- 18:38:45.876 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:38:45.876 SQL [11638]: pgsql_db_connect() -- 18:38:45.887 DEBUG [11638]: Database connection successful -- 18:38:45.887 INFO [11638]: _SERVER found -- 18:38:45.887 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 18:38:45.887 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 18:38:45.887 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlm37dm0peasocsikm3uq4nipqs33rkh -- 18:38:45.887 INFO [11638]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:38:45.887 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:38:45.911 INFO [11638]: COREGRADE is stopping... -- 18:38:45.911 DEBUG [11638]: Closing database connection -- 18:38:45.911 SQL [11638]: pgsql_close() -- 18:38:54.322 INFO [11651]: COREGRADE is starting... -- 18:38:54.322 INFO [11651]: Version from config: 1.0 -- 18:38:54.322 DEBUG [11651]: Connecting to database... -- 18:38:54.322 DEBUG [11651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:38:54.323 SQL [11651]: pgsql_db_connect() -- 18:38:54.327 DEBUG [11651]: Database connection successful -- 18:38:54.327 INFO [11651]: _SERVER found -- 18:38:54.327 INFO [11651]: REMOTE_ADDR = 192.168.1.13 -- 18:38:54.327 INFO [11651]: SERVER_NAME = oameye.works.coregrade.com -- 18:38:54.327 INFO [11651]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlm37dm0peasocsikm3uq4nipqs33rkh -- 18:38:54.327 INFO [11651]: QUERY_STRING = /member/page -- 18:38:54.327 INFO [11651]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:38:54.366 INFO [11651]: COREGRADE is stopping... -- 18:38:54.366 DEBUG [11651]: Closing database connection -- 18:38:54.366 SQL [11651]: pgsql_close() -- 18:38:54.657 INFO [11651]: COREGRADE is starting... -- 18:38:54.657 INFO [11651]: Version from config: 1.0 -- 18:38:54.657 DEBUG [11651]: Connecting to database... -- 18:38:54.657 DEBUG [11651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:38:54.657 SQL [11651]: pgsql_db_connect() -- 18:38:54.661 DEBUG [11651]: Database connection successful -- 18:38:54.661 INFO [11651]: _SERVER found -- 18:38:54.661 INFO [11651]: REMOTE_ADDR = 192.168.1.13 -- 18:38:54.661 INFO [11651]: SERVER_NAME = oameye.works.coregrade.com -- 18:38:54.661 INFO [11651]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlm37dm0peasocsikm3uq4nipqs33rkh -- 18:38:54.661 INFO [11651]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:38:54.661 INFO [11651]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:38:54.673 INFO [11651]: COREGRADE is stopping... -- 18:38:54.673 DEBUG [11651]: Closing database connection -- 18:38:54.673 SQL [11651]: pgsql_close() -- 18:38:54.680 INFO [11652]: COREGRADE is starting... -- 18:38:54.680 INFO [11652]: Version from config: 1.0 -- 18:38:54.680 DEBUG [11652]: Connecting to database... -- 18:38:54.680 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:38:54.680 SQL [11652]: pgsql_db_connect() -- 18:38:54.684 DEBUG [11652]: Database connection successful -- 18:38:54.684 INFO [11652]: _SERVER found -- 18:38:54.684 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 18:38:54.684 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 18:38:54.684 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlm37dm0peasocsikm3uq4nipqs33rkh -- 18:38:54.684 INFO [11652]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:38:54.684 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:38:54.698 INFO [11652]: COREGRADE is stopping... -- 18:38:54.698 DEBUG [11652]: Closing database connection -- 18:38:54.698 SQL [11652]: pgsql_close() -- 18:38:57.891 INFO [11652]: COREGRADE is starting... -- 18:38:57.891 INFO [11652]: Version from config: 1.0 -- 18:38:57.891 DEBUG [11652]: Connecting to database... -- 18:38:57.891 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:38:57.891 SQL [11652]: pgsql_db_connect() -- 18:38:57.895 DEBUG [11652]: Database connection successful -- 18:38:57.895 INFO [11652]: _SERVER found -- 18:38:57.895 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 18:38:57.895 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 18:38:57.895 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlm37dm0peasocsikm3uq4nipqs33rkh -- 18:38:57.895 INFO [11652]: QUERY_STRING = /member -- 18:38:57.895 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:38:57.935 INFO [11652]: COREGRADE is stopping... -- 18:38:57.935 DEBUG [11652]: Closing database connection -- 18:38:57.935 SQL [11652]: pgsql_close() -- 18:38:58.396 INFO [11652]: COREGRADE is starting... -- 18:38:58.396 INFO [11652]: Version from config: 1.0 -- 18:38:58.396 DEBUG [11652]: Connecting to database... -- 18:38:58.396 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:38:58.396 SQL [11652]: pgsql_db_connect() -- 18:38:58.400 DEBUG [11652]: Database connection successful -- 18:38:58.400 INFO [11652]: _SERVER found -- 18:38:58.400 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 18:38:58.400 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 18:38:58.400 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlm37dm0peasocsikm3uq4nipqs33rkh -- 18:38:58.400 INFO [11652]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:38:58.400 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:38:58.411 INFO [11652]: COREGRADE is stopping... -- 18:38:58.411 DEBUG [11652]: Closing database connection -- 18:38:58.411 SQL [11652]: pgsql_close() -- 18:38:58.411 INFO [11651]: COREGRADE is starting... -- 18:38:58.411 INFO [11651]: Version from config: 1.0 -- 18:38:58.411 DEBUG [11651]: Connecting to database... -- 18:38:58.412 DEBUG [11651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:38:58.412 SQL [11651]: pgsql_db_connect() -- 18:38:58.416 DEBUG [11651]: Database connection successful -- 18:38:58.416 INFO [11651]: _SERVER found -- 18:38:58.416 INFO [11651]: REMOTE_ADDR = 192.168.1.13 -- 18:38:58.416 INFO [11651]: SERVER_NAME = oameye.works.coregrade.com -- 18:38:58.416 INFO [11651]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlm37dm0peasocsikm3uq4nipqs33rkh -- 18:38:58.416 INFO [11651]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:38:58.416 INFO [11651]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:38:58.427 INFO [11651]: COREGRADE is stopping... -- 18:38:58.427 DEBUG [11651]: Closing database connection -- 18:38:58.427 SQL [11651]: pgsql_close() -- 18:39:12.829 INFO [11635]: COREGRADE is starting... -- 18:39:12.829 INFO [11635]: Version from config: 1.0 -- 18:39:12.829 DEBUG [11635]: Connecting to database... -- 18:39:12.829 DEBUG [11635]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:12.829 SQL [11635]: pgsql_db_connect() -- 18:39:12.833 DEBUG [11635]: Database connection successful -- 18:39:12.833 INFO [11635]: _SERVER found -- 18:39:12.833 INFO [11635]: REMOTE_ADDR = 192.168.1.13 -- 18:39:12.833 INFO [11635]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:12.833 INFO [11635]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlm37dm0peasocsikm3uq4nipqs33rkh -- 18:39:12.833 INFO [11635]: QUERY_STRING = /member/configure -- 18:39:12.833 INFO [11635]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:39:12.872 INFO [11635]: COREGRADE is stopping... -- 18:39:12.872 DEBUG [11635]: Closing database connection -- 18:39:12.872 SQL [11635]: pgsql_close() -- 18:39:13.226 INFO [11635]: COREGRADE is starting... -- 18:39:13.227 INFO [11635]: Version from config: 1.0 -- 18:39:13.227 DEBUG [11635]: Connecting to database... -- 18:39:13.227 DEBUG [11635]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:13.227 SQL [11635]: pgsql_db_connect() -- 18:39:13.231 DEBUG [11635]: Database connection successful -- 18:39:13.231 INFO [11635]: _SERVER found -- 18:39:13.231 INFO [11635]: REMOTE_ADDR = 192.168.1.13 -- 18:39:13.231 INFO [11635]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:13.231 INFO [11635]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlm37dm0peasocsikm3uq4nipqs33rkh -- 18:39:13.231 INFO [11635]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:39:13.231 INFO [11635]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:39:13.242 INFO [11635]: COREGRADE is stopping... -- 18:39:13.242 DEBUG [11635]: Closing database connection -- 18:39:13.242 SQL [11635]: pgsql_close() -- 18:39:13.250 INFO [11637]: COREGRADE is starting... -- 18:39:13.250 INFO [11637]: Version from config: 1.0 -- 18:39:13.250 DEBUG [11637]: Connecting to database... -- 18:39:13.250 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:13.250 SQL [11637]: pgsql_db_connect() -- 18:39:13.254 DEBUG [11637]: Database connection successful -- 18:39:13.254 INFO [11637]: _SERVER found -- 18:39:13.254 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 18:39:13.254 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:13.254 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlm37dm0peasocsikm3uq4nipqs33rkh -- 18:39:13.254 INFO [11637]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:39:13.254 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:39:13.266 INFO [11637]: COREGRADE is stopping... -- 18:39:13.266 DEBUG [11637]: Closing database connection -- 18:39:13.266 SQL [11637]: pgsql_close() -- 18:39:59.204 INFO [11644]: COREGRADE is starting... -- 18:39:59.204 INFO [11644]: Version from config: 1.0 -- 18:39:59.204 DEBUG [11644]: Connecting to database... -- 18:39:59.204 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:59.205 SQL [11644]: pgsql_db_connect() -- 18:39:59.244 INFO [11644]: COREGRADE is starting... -- 18:39:59.244 INFO [11644]: Version from config: 1.0 -- 18:39:59.244 DEBUG [11644]: Connecting to database... -- 18:39:59.244 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:59.244 SQL [11644]: pgsql_db_connect() -- 18:39:59.248 DEBUG [11644]: Database connection successful -- 18:39:59.248 INFO [11644]: _SERVER found -- 18:39:59.248 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 18:39:59.248 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:59.248 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlm37dm0peasocsikm3uq4nipqs33rkh -- 18:39:59.248 INFO [11644]: QUERY_STRING = -- 18:39:59.248 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:39:59.248 INFO [11644]: SystemStatus()09-09-********~************ -- 18:39:59.248 INFO [11644]: long coregrade_api_main(CVars in, CVars &out) -- 18:39:59.248 INFO [11644]: long coregrade_api_main(CVars in, CVars &out) action =11027 -- 18:39:59.248 INFO [11644]: account calls -- 18:39:59.248 INFO [11644]: account_calls() -- 18:39:59.248 INFO [11644]: CreateUserPage() -- 18:39:59.248 FLOG_MAX [11644]: REQ_STRING(description) -- 18:39:59.248 FLOG_MAX [11644]: REQ_STRING(title) -- 18:39:59.248 FLOG_MAX [11644]: long load_db_record( CVars &rec, const char * query, ... ) -- 18:39:59.248 SQL [11644]: pgsql_query() -- 18:39:59.248 SQL [11644]: About to run query: -- 18:39:59.248 SQL [11644]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 18:39:59.250 SQL [11644]: Found rows: 1 -- 18:39:59.250 FLOG_MAX [11644]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 18:39:59.250 FLOG_MAX [11644]: insert_db_record() -- 18:39:59.250 SQL [11644]: pgsql_exec() -- 18:39:59.250 SQL [11644]: About to run query: -- 18:39:59.250 SQL [11644]: INSERT INTO members_pages (description,member_id,page_key,page_mode,title) VALUES ('IONIC 4 MOBILE APP LEARNING','7','PG4611729D2F79A8F8EE7D25CA5890C504','OTHERPG','MOBILE APP DEVELOPMENT') -- 18:39:59.253 SQL [11644]: PQcmdTuples: 1 -- 18:39:59.253 SQL [11644]: Affected rows: 1 -- 18:39:59.253 FLOG_MAX [11644]: SELECT currval('members_pages_id_seq') -- 18:39:59.253 SQL [11644]: pgsql_query() -- 18:39:59.253 SQL [11644]: About to run query: -- 18:39:59.253 SQL [11644]: SELECT currval('members_pages_id_seq') -- 18:39:59.253 SQL [11644]: Found rows: 1 -- 18:39:59.253 INFO [11644]: /CreateUserPage() -- 18:39:59.253 INFO [11644]: RET: page_key=PG4611729D2F79A8F8EE7D25CA5890C504 -- 18:39:59.253 INFO [11644]: RET: result=YES I GET TO BACK END -- 18:39:59.259 INFO [11644]: COREGRADE is stopping... -- 18:39:59.259 DEBUG [11644]: Closing database connection -- 18:39:59.259 SQL [11644]: pgsql_close() -- 18:39:59.209 DEBUG [11644]: Database connection successful -- 18:39:59.209 INFO [11644]: _SERVER found -- 18:39:59.209 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 18:39:59.209 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:59.209 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlm37dm0peasocsikm3uq4nipqs33rkh -- 18:39:59.209 INFO [11644]: QUERY_STRING = /member/addcard -- 18:39:59.209 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:39:59.259 INFO [11644]: COREGRADE is stopping... -- 18:39:59.259 DEBUG [11644]: Closing database connection -- 18:39:59.260 SQL [11644]: pgsql_close() -- 18:39:59.686 INFO [11644]: COREGRADE is starting... -- 18:39:59.687 INFO [11644]: Version from config: 1.0 -- 18:39:59.687 DEBUG [11644]: Connecting to database... -- 18:39:59.687 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:59.687 SQL [11644]: pgsql_db_connect() -- 18:39:59.691 DEBUG [11644]: Database connection successful -- 18:39:59.691 INFO [11644]: _SERVER found -- 18:39:59.691 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 18:39:59.691 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:59.691 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:39:59.691 INFO [11644]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:39:59.691 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:39:59.702 INFO [11644]: COREGRADE is stopping... -- 18:39:59.702 DEBUG [11644]: Closing database connection -- 18:39:59.702 SQL [11644]: pgsql_close() -- 18:39:59.712 INFO [11644]: COREGRADE is starting... -- 18:39:59.712 INFO [11644]: Version from config: 1.0 -- 18:39:59.712 DEBUG [11644]: Connecting to database... -- 18:39:59.712 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:59.712 SQL [11644]: pgsql_db_connect() -- 18:39:59.716 DEBUG [11644]: Database connection successful -- 18:39:59.716 INFO [11644]: _SERVER found -- 18:39:59.716 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 18:39:59.716 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:59.716 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:39:59.716 INFO [11644]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:39:59.716 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:39:59.727 INFO [11644]: COREGRADE is stopping... -- 18:39:59.727 DEBUG [11644]: Closing database connection -- 18:39:59.727 SQL [11644]: pgsql_close() -- 18:40:33.828 INFO [11636]: COREGRADE is starting... -- 18:40:33.829 INFO [11636]: Version from config: 1.0 -- 18:40:33.829 DEBUG [11636]: Connecting to database... -- 18:40:33.829 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:40:33.829 SQL [11636]: pgsql_db_connect() -- 18:40:33.867 INFO [11636]: COREGRADE is starting... -- 18:40:33.868 INFO [11636]: Version from config: 1.0 -- 18:40:33.868 DEBUG [11636]: Connecting to database... -- 18:40:33.868 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:40:33.868 SQL [11636]: pgsql_db_connect() -- 18:40:33.872 DEBUG [11636]: Database connection successful -- 18:40:33.872 INFO [11636]: _SERVER found -- 18:40:33.872 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 18:40:33.872 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 18:40:33.872 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:40:33.872 INFO [11636]: QUERY_STRING = -- 18:40:33.872 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:40:33.872 INFO [11636]: SystemStatus()09-09-********~************ -- 18:40:33.872 INFO [11636]: long coregrade_api_main(CVars in, CVars &out) -- 18:40:33.872 INFO [11636]: long coregrade_api_main(CVars in, CVars &out) action =11027 -- 18:40:33.872 INFO [11636]: account calls -- 18:40:33.872 INFO [11636]: account_calls() -- 18:40:33.872 INFO [11636]: CreateUserPage() -- 18:40:33.872 FLOG_MAX [11636]: REQ_STRING(description) -- 18:40:33.872 FLOG_MAX [11636]: REQ_STRING(title) -- 18:40:33.872 FLOG_MAX [11636]: long load_db_record( CVars &rec, const char * query, ... ) -- 18:40:33.872 SQL [11636]: pgsql_query() -- 18:40:33.872 SQL [11636]: About to run query: -- 18:40:33.872 SQL [11636]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 18:40:33.873 SQL [11636]: Found rows: 1 -- 18:40:33.873 FLOG_MAX [11636]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 18:40:33.873 FLOG_MAX [11636]: insert_db_record() -- 18:40:33.874 SQL [11636]: pgsql_exec() -- 18:40:33.874 SQL [11636]: About to run query: -- 18:40:33.874 SQL [11636]: INSERT INTO members_pages (description,member_id,page_key,page_mode,title) VALUES ('BLOCKCHAIN DEV','7','PG69D91A9D2DF2A6FC46F7F11D84D96A4A','OTHERPG','DATA STORAGE') -- 18:40:33.877 SQL [11636]: PQcmdTuples: 1 -- 18:40:33.877 SQL [11636]: Affected rows: 1 -- 18:40:33.877 FLOG_MAX [11636]: SELECT currval('members_pages_id_seq') -- 18:40:33.877 SQL [11636]: pgsql_query() -- 18:40:33.877 SQL [11636]: About to run query: -- 18:40:33.877 SQL [11636]: SELECT currval('members_pages_id_seq') -- 18:40:33.877 SQL [11636]: Found rows: 1 -- 18:40:33.877 INFO [11636]: /CreateUserPage() -- 18:40:33.877 INFO [11636]: RET: page_key=PG69D91A9D2DF2A6FC46F7F11D84D96A4A -- 18:40:33.877 INFO [11636]: RET: result=YES I GET TO BACK END -- 18:40:33.883 INFO [11636]: COREGRADE is stopping... -- 18:40:33.883 DEBUG [11636]: Closing database connection -- 18:40:33.883 SQL [11636]: pgsql_close() -- 18:40:33.833 DEBUG [11636]: Database connection successful -- 18:40:33.833 INFO [11636]: _SERVER found -- 18:40:33.833 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 18:40:33.833 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 18:40:33.833 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:40:33.833 INFO [11636]: QUERY_STRING = /member/addcard -- 18:40:33.833 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:40:33.883 INFO [11636]: COREGRADE is stopping... -- 18:40:33.883 DEBUG [11636]: Closing database connection -- 18:40:33.883 SQL [11636]: pgsql_close() -- 18:40:34.248 INFO [11636]: COREGRADE is starting... -- 18:40:34.248 INFO [11636]: Version from config: 1.0 -- 18:40:34.248 DEBUG [11636]: Connecting to database... -- 18:40:34.248 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:40:34.248 SQL [11636]: pgsql_db_connect() -- 18:40:34.252 DEBUG [11636]: Database connection successful -- 18:40:34.252 INFO [11636]: _SERVER found -- 18:40:34.252 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 18:40:34.252 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 18:40:34.252 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:40:34.252 INFO [11636]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:40:34.252 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:40:34.263 INFO [11636]: COREGRADE is stopping... -- 18:40:34.263 DEBUG [11636]: Closing database connection -- 18:40:34.263 SQL [11636]: pgsql_close() -- 18:40:34.267 INFO [11636]: COREGRADE is starting... -- 18:40:34.267 INFO [11636]: Version from config: 1.0 -- 18:40:34.267 DEBUG [11636]: Connecting to database... -- 18:40:34.267 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:40:34.267 SQL [11636]: pgsql_db_connect() -- 18:40:34.271 DEBUG [11636]: Database connection successful -- 18:40:34.271 INFO [11636]: _SERVER found -- 18:40:34.271 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 18:40:34.271 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 18:40:34.271 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:40:34.271 INFO [11636]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:40:34.271 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:40:34.282 INFO [11636]: COREGRADE is stopping... -- 18:40:34.282 DEBUG [11636]: Closing database connection -- 18:40:34.282 SQL [11636]: pgsql_close() -- 18:40:37.945 INFO [11636]: COREGRADE is starting... -- 18:40:37.945 INFO [11636]: Version from config: 1.0 -- 18:40:37.945 DEBUG [11636]: Connecting to database... -- 18:40:37.945 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:40:37.945 SQL [11636]: pgsql_db_connect() -- 18:40:37.949 DEBUG [11636]: Database connection successful -- 18:40:37.949 INFO [11636]: _SERVER found -- 18:40:37.949 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 18:40:37.949 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 18:40:37.949 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:40:37.949 INFO [11636]: QUERY_STRING = /member/configure -- 18:40:37.949 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:40:37.983 INFO [11636]: COREGRADE is stopping... -- 18:40:37.983 DEBUG [11636]: Closing database connection -- 18:40:37.983 SQL [11636]: pgsql_close() -- 18:40:38.265 INFO [11636]: COREGRADE is starting... -- 18:40:38.266 INFO [11636]: Version from config: 1.0 -- 18:40:38.266 DEBUG [11636]: Connecting to database... -- 18:40:38.266 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:40:38.266 SQL [11636]: pgsql_db_connect() -- 18:40:38.270 DEBUG [11636]: Database connection successful -- 18:40:38.270 INFO [11636]: _SERVER found -- 18:40:38.270 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 18:40:38.270 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 18:40:38.270 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:40:38.270 INFO [11636]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:40:38.270 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:40:38.281 INFO [11636]: COREGRADE is stopping... -- 18:40:38.281 DEBUG [11636]: Closing database connection -- 18:40:38.281 SQL [11636]: pgsql_close() -- 18:40:38.288 INFO [11639]: COREGRADE is starting... -- 18:40:38.288 INFO [11639]: Version from config: 1.0 -- 18:40:38.288 DEBUG [11639]: Connecting to database... -- 18:40:38.288 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:40:38.288 SQL [11639]: pgsql_db_connect() -- 18:40:38.292 DEBUG [11639]: Database connection successful -- 18:40:38.292 INFO [11639]: _SERVER found -- 18:40:38.292 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 18:40:38.292 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 18:40:38.292 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:40:38.292 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:40:38.292 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:40:38.304 INFO [11639]: COREGRADE is stopping... -- 18:40:38.304 DEBUG [11639]: Closing database connection -- 18:40:38.304 SQL [11639]: pgsql_close() -- 18:40:41.799 INFO [11639]: COREGRADE is starting... -- 18:40:41.800 INFO [11639]: Version from config: 1.0 -- 18:40:41.800 DEBUG [11639]: Connecting to database... -- 18:40:41.800 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:40:41.800 SQL [11639]: pgsql_db_connect() -- 18:40:41.804 DEBUG [11639]: Database connection successful -- 18:40:41.804 INFO [11639]: _SERVER found -- 18:40:41.804 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 18:40:41.804 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 18:40:41.804 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:40:41.804 INFO [11639]: QUERY_STRING = /member -- 18:40:41.804 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:40:41.842 INFO [11639]: COREGRADE is stopping... -- 18:40:41.842 DEBUG [11639]: Closing database connection -- 18:40:41.842 SQL [11639]: pgsql_close() -- 18:40:42.216 INFO [11639]: COREGRADE is starting... -- 18:40:42.217 INFO [11639]: Version from config: 1.0 -- 18:40:42.217 DEBUG [11639]: Connecting to database... -- 18:40:42.217 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:40:42.217 SQL [11639]: pgsql_db_connect() -- 18:40:42.221 DEBUG [11639]: Database connection successful -- 18:40:42.221 INFO [11639]: _SERVER found -- 18:40:42.221 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 18:40:42.221 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 18:40:42.221 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:40:42.221 INFO [11639]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:40:42.221 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:40:42.233 INFO [11639]: COREGRADE is stopping... -- 18:40:42.233 DEBUG [11639]: Closing database connection -- 18:40:42.233 SQL [11639]: pgsql_close() -- 18:40:42.272 INFO [11639]: COREGRADE is starting... -- 18:40:42.272 INFO [11639]: Version from config: 1.0 -- 18:40:42.273 DEBUG [11639]: Connecting to database... -- 18:40:42.273 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:40:42.273 SQL [11639]: pgsql_db_connect() -- 18:40:42.276 DEBUG [11639]: Database connection successful -- 18:40:42.276 INFO [11639]: _SERVER found -- 18:40:42.276 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 18:40:42.276 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 18:40:42.276 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:40:42.276 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:40:42.276 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:40:42.289 INFO [11639]: COREGRADE is stopping... -- 18:40:42.289 DEBUG [11639]: Closing database connection -- 18:40:42.289 SQL [11639]: pgsql_close() -- 18:40:52.704 INFO [11638]: COREGRADE is starting... -- 18:40:52.705 INFO [11638]: Version from config: 1.0 -- 18:40:52.705 DEBUG [11638]: Connecting to database... -- 18:40:52.705 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:40:52.705 SQL [11638]: pgsql_db_connect() -- 18:40:52.708 DEBUG [11638]: Database connection successful -- 18:40:52.708 INFO [11638]: _SERVER found -- 18:40:52.708 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 18:40:52.708 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 18:40:52.708 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:40:52.708 INFO [11638]: QUERY_STRING = /member/configure -- 18:40:52.708 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:40:52.748 INFO [11638]: COREGRADE is stopping... -- 18:40:52.748 DEBUG [11638]: Closing database connection -- 18:40:52.748 SQL [11638]: pgsql_close() -- 18:40:53.080 INFO [11638]: COREGRADE is starting... -- 18:40:53.080 INFO [11638]: Version from config: 1.0 -- 18:40:53.080 DEBUG [11638]: Connecting to database... -- 18:40:53.080 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:40:53.080 SQL [11638]: pgsql_db_connect() -- 18:40:53.084 DEBUG [11638]: Database connection successful -- 18:40:53.084 INFO [11638]: _SERVER found -- 18:40:53.084 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 18:40:53.084 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 18:40:53.084 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:40:53.084 INFO [11638]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:40:53.084 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:40:53.095 INFO [11638]: COREGRADE is stopping... -- 18:40:53.095 DEBUG [11638]: Closing database connection -- 18:40:53.095 SQL [11638]: pgsql_close() -- 18:40:53.100 INFO [11650]: COREGRADE is starting... -- 18:40:53.101 INFO [11650]: Version from config: 1.0 -- 18:40:53.101 DEBUG [11650]: Connecting to database... -- 18:40:53.101 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:40:53.101 SQL [11650]: pgsql_db_connect() -- 18:40:53.105 DEBUG [11650]: Database connection successful -- 18:40:53.105 INFO [11650]: _SERVER found -- 18:40:53.105 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 18:40:53.105 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 18:40:53.105 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:40:53.105 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:40:53.105 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:40:53.118 INFO [11650]: COREGRADE is stopping... -- 18:40:53.118 DEBUG [11650]: Closing database connection -- 18:40:53.118 SQL [11650]: pgsql_close() -- 18:42:06.874 INFO [11652]: COREGRADE is starting... -- 18:42:06.875 INFO [11652]: Version from config: 1.0 -- 18:42:06.875 DEBUG [11652]: Connecting to database... -- 18:42:06.875 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:42:06.875 SQL [11652]: pgsql_db_connect() -- 18:42:06.879 DEBUG [11652]: Database connection successful -- 18:42:06.879 INFO [11652]: _SERVER found -- 18:42:06.879 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 18:42:06.879 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 18:42:06.879 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:42:06.879 INFO [11652]: QUERY_STRING = /member -- 18:42:06.879 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:42:06.915 INFO [11652]: COREGRADE is stopping... -- 18:42:06.915 DEBUG [11652]: Closing database connection -- 18:42:06.915 SQL [11652]: pgsql_close() -- 18:42:07.287 INFO [11652]: COREGRADE is starting... -- 18:42:07.288 INFO [11652]: Version from config: 1.0 -- 18:42:07.288 DEBUG [11652]: Connecting to database... -- 18:42:07.288 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:42:07.288 SQL [11652]: pgsql_db_connect() -- 18:42:07.292 DEBUG [11652]: Database connection successful -- 18:42:07.292 INFO [11652]: _SERVER found -- 18:42:07.292 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 18:42:07.292 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 18:42:07.292 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:42:07.292 INFO [11652]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:42:07.292 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:42:07.303 INFO [11652]: COREGRADE is stopping... -- 18:42:07.303 DEBUG [11652]: Closing database connection -- 18:42:07.303 SQL [11652]: pgsql_close() -- 18:42:07.306 INFO [11651]: COREGRADE is starting... -- 18:42:07.307 INFO [11651]: Version from config: 1.0 -- 18:42:07.307 DEBUG [11651]: Connecting to database... -- 18:42:07.307 DEBUG [11651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:42:07.307 SQL [11651]: pgsql_db_connect() -- 18:42:07.310 DEBUG [11651]: Database connection successful -- 18:42:07.311 INFO [11651]: _SERVER found -- 18:42:07.311 INFO [11651]: REMOTE_ADDR = 192.168.1.13 -- 18:42:07.311 INFO [11651]: SERVER_NAME = oameye.works.coregrade.com -- 18:42:07.311 INFO [11651]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:42:07.311 INFO [11651]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:42:07.311 INFO [11651]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:42:07.322 INFO [11651]: COREGRADE is stopping... -- 18:42:07.322 DEBUG [11651]: Closing database connection -- 18:42:07.322 SQL [11651]: pgsql_close() -- 18:42:23.900 INFO [11635]: COREGRADE is starting... -- 18:42:23.900 INFO [11635]: Version from config: 1.0 -- 18:42:23.900 DEBUG [11635]: Connecting to database... -- 18:42:23.900 DEBUG [11635]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:42:23.900 SQL [11635]: pgsql_db_connect() -- 18:42:23.904 DEBUG [11635]: Database connection successful -- 18:42:23.904 INFO [11635]: _SERVER found -- 18:42:23.904 INFO [11635]: REMOTE_ADDR = 192.168.1.13 -- 18:42:23.904 INFO [11635]: SERVER_NAME = oameye.works.coregrade.com -- 18:42:23.904 INFO [11635]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:42:23.904 INFO [11635]: QUERY_STRING = /member/configure -- 18:42:23.904 INFO [11635]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:42:23.939 INFO [11635]: COREGRADE is stopping... -- 18:42:23.939 DEBUG [11635]: Closing database connection -- 18:42:23.939 SQL [11635]: pgsql_close() -- 18:42:24.522 INFO [11635]: COREGRADE is starting... -- 18:42:24.522 INFO [11635]: Version from config: 1.0 -- 18:42:24.522 DEBUG [11635]: Connecting to database... -- 18:42:24.522 DEBUG [11635]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:42:24.522 SQL [11635]: pgsql_db_connect() -- 18:42:24.526 DEBUG [11635]: Database connection successful -- 18:42:24.526 INFO [11635]: _SERVER found -- 18:42:24.526 INFO [11635]: REMOTE_ADDR = 192.168.1.13 -- 18:42:24.526 INFO [11635]: SERVER_NAME = oameye.works.coregrade.com -- 18:42:24.526 INFO [11635]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:42:24.526 INFO [11635]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:42:24.526 INFO [11635]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:42:24.537 INFO [11635]: COREGRADE is stopping... -- 18:42:24.537 DEBUG [11635]: Closing database connection -- 18:42:24.537 SQL [11635]: pgsql_close() -- 18:42:24.555 INFO [11635]: COREGRADE is starting... -- 18:42:24.556 INFO [11635]: Version from config: 1.0 -- 18:42:24.556 DEBUG [11635]: Connecting to database... -- 18:42:24.556 DEBUG [11635]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:42:24.556 SQL [11635]: pgsql_db_connect() -- 18:42:24.559 DEBUG [11635]: Database connection successful -- 18:42:24.559 INFO [11635]: _SERVER found -- 18:42:24.559 INFO [11635]: REMOTE_ADDR = 192.168.1.13 -- 18:42:24.559 INFO [11635]: SERVER_NAME = oameye.works.coregrade.com -- 18:42:24.559 INFO [11635]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:42:24.559 INFO [11635]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:42:24.559 INFO [11635]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:42:24.570 INFO [11635]: COREGRADE is stopping... -- 18:42:24.570 DEBUG [11635]: Closing database connection -- 18:42:24.570 SQL [11635]: pgsql_close() -- 18:43:42.698 INFO [11637]: COREGRADE is starting... -- 18:43:42.698 INFO [11637]: Version from config: 1.0 -- 18:43:42.698 DEBUG [11637]: Connecting to database... -- 18:43:42.698 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:43:42.698 SQL [11637]: pgsql_db_connect() -- 18:43:42.738 INFO [11637]: COREGRADE is starting... -- 18:43:42.738 INFO [11637]: Version from config: 1.0 -- 18:43:42.738 DEBUG [11637]: Connecting to database... -- 18:43:42.738 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:43:42.738 SQL [11637]: pgsql_db_connect() -- 18:43:42.742 DEBUG [11637]: Database connection successful -- 18:43:42.742 INFO [11637]: _SERVER found -- 18:43:42.742 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 18:43:42.742 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 18:43:42.742 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:43:42.742 INFO [11637]: QUERY_STRING = -- 18:43:42.742 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:43:42.742 INFO [11637]: SystemStatus()09-09-********~************ -- 18:43:42.742 INFO [11637]: long coregrade_api_main(CVars in, CVars &out) -- 18:43:42.742 INFO [11637]: long coregrade_api_main(CVars in, CVars &out) action =11027 -- 18:43:42.742 INFO [11637]: account calls -- 18:43:42.742 INFO [11637]: account_calls() -- 18:43:42.742 INFO [11637]: CreateUserPage() -- 18:43:42.742 FLOG_MAX [11637]: REQ_STRING(description) -- 18:43:42.742 FLOG_MAX [11637]: REQ_STRING(title) -- 18:43:42.742 FLOG_MAX [11637]: long load_db_record( CVars &rec, const char * query, ... ) -- 18:43:42.742 SQL [11637]: pgsql_query() -- 18:43:42.742 SQL [11637]: About to run query: -- 18:43:42.743 SQL [11637]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 18:43:42.744 SQL [11637]: Found rows: 1 -- 18:43:42.744 FLOG_MAX [11637]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 18:43:42.744 FLOG_MAX [11637]: insert_db_record() -- 18:43:42.744 SQL [11637]: pgsql_exec() -- 18:43:42.744 SQL [11637]: About to run query: -- 18:43:42.744 SQL [11637]: INSERT INTO members_pages (description,member_id,page_key,page_mode,title) VALUES ('Run commands for artificial Intelligence learning( Robot Programming)','7','PG0EC10B9AF394E1ED1BF8C1057C92EB88','OTHERPG','RASPBERRY PI') -- 18:43:42.747 SQL [11637]: PQcmdTuples: 1 -- 18:43:42.747 SQL [11637]: Affected rows: 1 -- 18:43:42.747 FLOG_MAX [11637]: SELECT currval('members_pages_id_seq') -- 18:43:42.747 SQL [11637]: pgsql_query() -- 18:43:42.747 SQL [11637]: About to run query: -- 18:43:42.747 SQL [11637]: SELECT currval('members_pages_id_seq') -- 18:43:42.748 SQL [11637]: Found rows: 1 -- 18:43:42.748 INFO [11637]: /CreateUserPage() -- 18:43:42.748 INFO [11637]: RET: page_key=PG0EC10B9AF394E1ED1BF8C1057C92EB88 -- 18:43:42.748 INFO [11637]: RET: result=YES I GET TO BACK END -- 18:43:42.754 INFO [11637]: COREGRADE is stopping... -- 18:43:42.754 DEBUG [11637]: Closing database connection -- 18:43:42.754 SQL [11637]: pgsql_close() -- 18:43:42.702 DEBUG [11637]: Database connection successful -- 18:43:42.702 INFO [11637]: _SERVER found -- 18:43:42.702 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 18:43:42.702 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 18:43:42.702 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:43:42.702 INFO [11637]: QUERY_STRING = /member/addcard -- 18:43:42.702 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:43:42.754 INFO [11637]: COREGRADE is stopping... -- 18:43:42.754 DEBUG [11637]: Closing database connection -- 18:43:42.754 SQL [11637]: pgsql_close() -- 18:43:43.201 INFO [11637]: COREGRADE is starting... -- 18:43:43.201 INFO [11637]: Version from config: 1.0 -- 18:43:43.201 DEBUG [11637]: Connecting to database... -- 18:43:43.202 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:43:43.202 SQL [11637]: pgsql_db_connect() -- 18:43:43.206 DEBUG [11637]: Database connection successful -- 18:43:43.206 INFO [11637]: _SERVER found -- 18:43:43.206 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 18:43:43.206 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 18:43:43.206 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:43:43.206 INFO [11637]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:43:43.206 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:43:43.217 INFO [11637]: COREGRADE is stopping... -- 18:43:43.217 DEBUG [11637]: Closing database connection -- 18:43:43.217 SQL [11637]: pgsql_close() -- 18:43:43.242 INFO [11637]: COREGRADE is starting... -- 18:43:43.242 INFO [11637]: Version from config: 1.0 -- 18:43:43.242 DEBUG [11637]: Connecting to database... -- 18:43:43.242 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:43:43.242 SQL [11637]: pgsql_db_connect() -- 18:43:43.246 DEBUG [11637]: Database connection successful -- 18:43:43.246 INFO [11637]: _SERVER found -- 18:43:43.246 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 18:43:43.246 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 18:43:43.246 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:43:43.246 INFO [11637]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:43:43.246 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:43:43.257 INFO [11637]: COREGRADE is stopping... -- 18:43:43.257 DEBUG [11637]: Closing database connection -- 18:43:43.257 SQL [11637]: pgsql_close() -- 18:43:46.450 INFO [11637]: COREGRADE is starting... -- 18:43:46.450 INFO [11637]: Version from config: 1.0 -- 18:43:46.450 DEBUG [11637]: Connecting to database... -- 18:43:46.450 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:43:46.450 SQL [11637]: pgsql_db_connect() -- 18:43:46.454 DEBUG [11637]: Database connection successful -- 18:43:46.454 INFO [11637]: _SERVER found -- 18:43:46.454 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 18:43:46.454 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 18:43:46.454 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:43:46.454 INFO [11637]: QUERY_STRING = /member/configure -- 18:43:46.454 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:43:46.489 INFO [11637]: COREGRADE is stopping... -- 18:43:46.489 DEBUG [11637]: Closing database connection -- 18:43:46.489 SQL [11637]: pgsql_close() -- 18:43:46.787 INFO [11637]: COREGRADE is starting... -- 18:43:46.787 INFO [11637]: Version from config: 1.0 -- 18:43:46.787 DEBUG [11637]: Connecting to database... -- 18:43:46.787 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:43:46.787 SQL [11637]: pgsql_db_connect() -- 18:43:46.792 DEBUG [11637]: Database connection successful -- 18:43:46.792 INFO [11637]: _SERVER found -- 18:43:46.792 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 18:43:46.792 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 18:43:46.792 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:43:46.792 INFO [11637]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:43:46.792 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:43:46.803 INFO [11637]: COREGRADE is stopping... -- 18:43:46.803 DEBUG [11637]: Closing database connection -- 18:43:46.803 SQL [11637]: pgsql_close() -- 18:43:46.824 INFO [11637]: COREGRADE is starting... -- 18:43:46.825 INFO [11637]: Version from config: 1.0 -- 18:43:46.825 DEBUG [11637]: Connecting to database... -- 18:43:46.825 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:43:46.825 SQL [11637]: pgsql_db_connect() -- 18:43:46.829 DEBUG [11637]: Database connection successful -- 18:43:46.829 INFO [11637]: _SERVER found -- 18:43:46.829 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 18:43:46.829 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 18:43:46.829 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:43:46.829 INFO [11637]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:43:46.829 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:43:46.840 INFO [11637]: COREGRADE is stopping... -- 18:43:46.840 DEBUG [11637]: Closing database connection -- 18:43:46.840 SQL [11637]: pgsql_close() -- 18:43:50.826 INFO [11637]: COREGRADE is starting... -- 18:43:50.826 INFO [11637]: Version from config: 1.0 -- 18:43:50.826 DEBUG [11637]: Connecting to database... -- 18:43:50.826 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:43:50.826 SQL [11637]: pgsql_db_connect() -- 18:43:50.830 DEBUG [11637]: Database connection successful -- 18:43:50.830 INFO [11637]: _SERVER found -- 18:43:50.830 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 18:43:50.830 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 18:43:50.830 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:43:50.830 INFO [11637]: QUERY_STRING = /member -- 18:43:50.830 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:43:50.865 INFO [11637]: COREGRADE is stopping... -- 18:43:50.865 DEBUG [11637]: Closing database connection -- 18:43:50.865 SQL [11637]: pgsql_close() -- 18:43:51.096 INFO [11637]: COREGRADE is starting... -- 18:43:51.096 INFO [11637]: Version from config: 1.0 -- 18:43:51.096 DEBUG [11637]: Connecting to database... -- 18:43:51.096 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:43:51.096 SQL [11637]: pgsql_db_connect() -- 18:43:51.100 DEBUG [11637]: Database connection successful -- 18:43:51.100 INFO [11637]: _SERVER found -- 18:43:51.100 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 18:43:51.100 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 18:43:51.100 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:43:51.100 INFO [11637]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:43:51.100 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:43:51.111 INFO [11637]: COREGRADE is stopping... -- 18:43:51.111 DEBUG [11637]: Closing database connection -- 18:43:51.111 SQL [11637]: pgsql_close() -- 18:43:51.118 INFO [11644]: COREGRADE is starting... -- 18:43:51.119 INFO [11644]: Version from config: 1.0 -- 18:43:51.119 DEBUG [11644]: Connecting to database... -- 18:43:51.119 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:43:51.119 SQL [11644]: pgsql_db_connect() -- 18:43:51.123 DEBUG [11644]: Database connection successful -- 18:43:51.123 INFO [11644]: _SERVER found -- 18:43:51.123 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 18:43:51.123 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 18:43:51.123 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:43:51.123 INFO [11644]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:43:51.123 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:43:51.134 INFO [11644]: COREGRADE is stopping... -- 18:43:51.134 DEBUG [11644]: Closing database connection -- 18:43:51.134 SQL [11644]: pgsql_close() -- 18:44:05.544 INFO [11636]: COREGRADE is starting... -- 18:44:05.544 INFO [11636]: Version from config: 1.0 -- 18:44:05.544 DEBUG [11636]: Connecting to database... -- 18:44:05.544 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:44:05.544 SQL [11636]: pgsql_db_connect() -- 18:44:05.548 DEBUG [11636]: Database connection successful -- 18:44:05.548 INFO [11636]: _SERVER found -- 18:44:05.548 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 18:44:05.548 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 18:44:05.548 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:44:05.548 INFO [11636]: QUERY_STRING = /member/page -- 18:44:05.548 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:44:05.581 INFO [11636]: COREGRADE is stopping... -- 18:44:05.581 DEBUG [11636]: Closing database connection -- 18:44:05.581 SQL [11636]: pgsql_close() -- 18:44:05.913 INFO [11636]: COREGRADE is starting... -- 18:44:05.914 INFO [11636]: Version from config: 1.0 -- 18:44:05.914 DEBUG [11636]: Connecting to database... -- 18:44:05.914 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:44:05.914 SQL [11636]: pgsql_db_connect() -- 18:44:05.918 DEBUG [11636]: Database connection successful -- 18:44:05.918 INFO [11636]: _SERVER found -- 18:44:05.918 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 18:44:05.918 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 18:44:05.918 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:44:05.918 INFO [11636]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:44:05.918 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:44:05.929 INFO [11636]: COREGRADE is stopping... -- 18:44:05.929 DEBUG [11636]: Closing database connection -- 18:44:05.929 SQL [11636]: pgsql_close() -- 18:44:05.950 INFO [11636]: COREGRADE is starting... -- 18:44:05.950 INFO [11636]: Version from config: 1.0 -- 18:44:05.950 DEBUG [11636]: Connecting to database... -- 18:44:05.950 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:44:05.950 SQL [11636]: pgsql_db_connect() -- 18:44:05.954 DEBUG [11636]: Database connection successful -- 18:44:05.954 INFO [11636]: _SERVER found -- 18:44:05.954 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 18:44:05.954 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 18:44:05.954 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:44:05.954 INFO [11636]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:44:05.954 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:44:05.965 INFO [11636]: COREGRADE is stopping... -- 18:44:05.966 DEBUG [11636]: Closing database connection -- 18:44:05.966 SQL [11636]: pgsql_close() -- 18:44:08.808 INFO [11636]: COREGRADE is starting... -- 18:44:08.808 INFO [11636]: Version from config: 1.0 -- 18:44:08.808 DEBUG [11636]: Connecting to database... -- 18:44:08.808 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:44:08.808 SQL [11636]: pgsql_db_connect() -- 18:44:08.813 DEBUG [11636]: Database connection successful -- 18:44:08.813 INFO [11636]: _SERVER found -- 18:44:08.813 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 18:44:08.813 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 18:44:08.813 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:44:08.813 INFO [11636]: QUERY_STRING = /member -- 18:44:08.813 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:44:08.847 INFO [11636]: COREGRADE is stopping... -- 18:44:08.847 DEBUG [11636]: Closing database connection -- 18:44:08.847 SQL [11636]: pgsql_close() -- 18:44:09.129 INFO [11636]: COREGRADE is starting... -- 18:44:09.130 INFO [11636]: Version from config: 1.0 -- 18:44:09.130 DEBUG [11636]: Connecting to database... -- 18:44:09.130 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:44:09.130 SQL [11636]: pgsql_db_connect() -- 18:44:09.134 DEBUG [11636]: Database connection successful -- 18:44:09.134 INFO [11636]: _SERVER found -- 18:44:09.134 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 18:44:09.134 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 18:44:09.134 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:44:09.134 INFO [11636]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:44:09.134 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:44:09.145 INFO [11636]: COREGRADE is stopping... -- 18:44:09.145 DEBUG [11636]: Closing database connection -- 18:44:09.145 SQL [11636]: pgsql_close() -- 18:44:09.152 INFO [11636]: COREGRADE is starting... -- 18:44:09.152 INFO [11636]: Version from config: 1.0 -- 18:44:09.152 DEBUG [11636]: Connecting to database... -- 18:44:09.152 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:44:09.152 SQL [11636]: pgsql_db_connect() -- 18:44:09.156 DEBUG [11636]: Database connection successful -- 18:44:09.156 INFO [11636]: _SERVER found -- 18:44:09.156 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 18:44:09.156 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 18:44:09.156 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:44:09.156 INFO [11636]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:44:09.156 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:44:09.167 INFO [11636]: COREGRADE is stopping... -- 18:44:09.167 DEBUG [11636]: Closing database connection -- 18:44:09.167 SQL [11636]: pgsql_close() -- 18:44:10.520 INFO [11636]: COREGRADE is starting... -- 18:44:10.520 INFO [11636]: Version from config: 1.0 -- 18:44:10.520 DEBUG [11636]: Connecting to database... -- 18:44:10.521 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:44:10.521 SQL [11636]: pgsql_db_connect() -- 18:44:10.525 DEBUG [11636]: Database connection successful -- 18:44:10.525 INFO [11636]: _SERVER found -- 18:44:10.525 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 18:44:10.525 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 18:44:10.525 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:44:10.525 INFO [11636]: QUERY_STRING = /member/page -- 18:44:10.525 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:44:10.557 INFO [11636]: COREGRADE is stopping... -- 18:44:10.557 DEBUG [11636]: Closing database connection -- 18:44:10.557 SQL [11636]: pgsql_close() -- 18:44:10.953 INFO [11636]: COREGRADE is starting... -- 18:44:10.953 INFO [11636]: Version from config: 1.0 -- 18:44:10.953 DEBUG [11636]: Connecting to database... -- 18:44:10.953 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:44:10.953 SQL [11636]: pgsql_db_connect() -- 18:44:10.957 DEBUG [11636]: Database connection successful -- 18:44:10.957 INFO [11636]: _SERVER found -- 18:44:10.957 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 18:44:10.957 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 18:44:10.957 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:44:10.957 INFO [11636]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:44:10.957 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:44:10.968 INFO [11636]: COREGRADE is stopping... -- 18:44:10.968 DEBUG [11636]: Closing database connection -- 18:44:10.969 SQL [11636]: pgsql_close() -- 18:44:10.971 INFO [11639]: COREGRADE is starting... -- 18:44:10.971 INFO [11639]: Version from config: 1.0 -- 18:44:10.971 DEBUG [11639]: Connecting to database... -- 18:44:10.971 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:44:10.971 SQL [11639]: pgsql_db_connect() -- 18:44:10.975 DEBUG [11639]: Database connection successful -- 18:44:10.975 INFO [11639]: _SERVER found -- 18:44:10.975 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 18:44:10.975 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 18:44:10.975 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:44:10.975 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:44:10.975 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:44:10.987 INFO [11639]: COREGRADE is stopping... -- 18:44:10.987 DEBUG [11639]: Closing database connection -- 18:44:10.988 SQL [11639]: pgsql_close() -- 18:44:13.789 INFO [11639]: COREGRADE is starting... -- 18:44:13.789 INFO [11639]: Version from config: 1.0 -- 18:44:13.789 DEBUG [11639]: Connecting to database... -- 18:44:13.789 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:44:13.789 SQL [11639]: pgsql_db_connect() -- 18:44:13.793 DEBUG [11639]: Database connection successful -- 18:44:13.793 INFO [11639]: _SERVER found -- 18:44:13.793 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 18:44:13.793 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 18:44:13.793 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:44:13.793 INFO [11639]: QUERY_STRING = /member -- 18:44:13.793 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:44:13.832 INFO [11639]: COREGRADE is stopping... -- 18:44:13.832 DEBUG [11639]: Closing database connection -- 18:44:13.832 SQL [11639]: pgsql_close() -- 18:44:14.127 INFO [11639]: COREGRADE is starting... -- 18:44:14.127 INFO [11639]: Version from config: 1.0 -- 18:44:14.127 DEBUG [11639]: Connecting to database... -- 18:44:14.127 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:44:14.127 SQL [11639]: pgsql_db_connect() -- 18:44:14.131 DEBUG [11639]: Database connection successful -- 18:44:14.131 INFO [11639]: _SERVER found -- 18:44:14.131 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 18:44:14.131 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 18:44:14.131 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:44:14.131 INFO [11639]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:44:14.131 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:44:14.143 INFO [11639]: COREGRADE is stopping... -- 18:44:14.143 DEBUG [11639]: Closing database connection -- 18:44:14.143 SQL [11639]: pgsql_close() -- 18:44:14.175 INFO [11639]: COREGRADE is starting... -- 18:44:14.175 INFO [11639]: Version from config: 1.0 -- 18:44:14.175 DEBUG [11639]: Connecting to database... -- 18:44:14.175 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:44:14.175 SQL [11639]: pgsql_db_connect() -- 18:44:14.179 DEBUG [11639]: Database connection successful -- 18:44:14.179 INFO [11639]: _SERVER found -- 18:44:14.179 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 18:44:14.179 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 18:44:14.179 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:44:14.179 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:44:14.179 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:44:14.191 INFO [11639]: COREGRADE is stopping... -- 18:44:14.191 DEBUG [11639]: Closing database connection -- 18:44:14.191 SQL [11639]: pgsql_close() -- 18:47:48.994 INFO [11638]: COREGRADE is starting... -- 18:47:48.995 INFO [11638]: Version from config: 1.0 -- 18:47:48.995 DEBUG [11638]: Connecting to database... -- 18:47:48.995 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:48.995 SQL [11638]: pgsql_db_connect() -- 18:47:49.032 INFO [11638]: COREGRADE is starting... -- 18:47:49.033 INFO [11638]: Version from config: 1.0 -- 18:47:49.033 DEBUG [11638]: Connecting to database... -- 18:47:49.033 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:49.033 SQL [11638]: pgsql_db_connect() -- 18:47:49.037 DEBUG [11638]: Database connection successful -- 18:47:49.037 INFO [11638]: _SERVER found -- 18:47:49.037 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 18:47:49.037 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 18:47:49.037 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=b6okm1p9pftp96mg9m12s4ieeujabhnl -- 18:47:49.037 INFO [11638]: QUERY_STRING = -- 18:47:49.037 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:47:49.037 INFO [11638]: SystemStatus()09-09-********~************ -- 18:47:49.037 INFO [11638]: long coregrade_api_main(CVars in, CVars &out) -- 18:47:49.037 INFO [11638]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 18:47:49.037 INFO [11638]: account calls -- 18:47:49.037 INFO [11638]: account_calls() -- 18:47:49.037 INFO [11638]: LoginCoreGradeAccount() -- 18:47:49.037 FLOG_MAX [11638]: REQ_STRING(username) -- 18:47:49.037 FLOG_MAX [11638]: REQ_STRING(password) -- 18:47:49.037 FLOG_MAX [11638]: REQ_STRING(sessionid) -- 18:47:49.037 FLOG_MAX [11638]: long load_db_record( CVars &rec, const char * query, ... ) -- 18:47:49.037 SQL [11638]: pgsql_query() -- 18:47:49.037 SQL [11638]: About to run query: -- 18:47:49.037 SQL [11638]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 18:47:49.040 SQL [11638]: Found rows: 1 -- 18:47:49.040 FLOG_MAX [11638]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 18:47:49.041 INFO [11638]: long SessionCheck(long uid, const char *sessionid, int create ) -- 18:47:49.041 SQL [11638]: pgsql_exec() -- 18:47:49.041 SQL [11638]: About to run query: -- 18:47:49.041 SQL [11638]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 18:47:49.041 SQL [11638]: PQcmdTuples: 0 -- 18:47:49.041 SQL [11638]: Affected rows: 0 -- 18:47:49.041 SQL [11638]: pgsql_exec() -- 18:47:49.041 SQL [11638]: About to run query: -- 18:47:49.041 SQL [11638]: DELETE FROM members_session WHERE member_id=5 -- 18:47:49.042 SQL [11638]: PQcmdTuples: 1 -- 18:47:49.042 SQL [11638]: Affected rows: 1 -- 18:47:49.042 SQL [11638]: pgsql_query() -- 18:47:49.042 SQL [11638]: About to run query: -- 18:47:49.042 SQL [11638]: SELECT * FROM members_session WHERE member_id=5 AND session<>'D0B2DB32410E5EDE9AB23E74FEA5FC1F' -- 18:47:49.043 SQL [11638]: Found rows: 0 -- 18:47:49.043 SQL [11638]: Found rows: 0 -- 18:47:49.043 FLOG_MAX [11638]: long load_db_record( CVars &rec, const char * query, ... ) -- 18:47:49.043 SQL [11638]: pgsql_query() -- 18:47:49.043 SQL [11638]: About to run query: -- 18:47:49.043 SQL [11638]: SELECT * FROM members_session WHERE member_id=5 AND session='D0B2DB32410E5EDE9AB23E74FEA5FC1F' -- 18:47:49.043 SQL [11638]: Found rows: 0 -- 18:47:49.044 SQL [11638]: Found rows: 0 -- 18:47:49.044 FLOG_MAX [11638]: insert_db_record() -- 18:47:49.044 SQL [11638]: pgsql_exec() -- 18:47:49.044 SQL [11638]: About to run query: -- 18:47:49.044 SQL [11638]: INSERT INTO members_session (member_id,session) VALUES ('5','D0B2DB32410E5EDE9AB23E74FEA5FC1F') -- 18:47:49.045 SQL [11638]: PQcmdTuples: 1 -- 18:47:49.045 SQL [11638]: Affected rows: 1 -- 18:47:49.045 FLOG_MAX [11638]: SELECT currval('members_session_id_seq') -- 18:47:49.045 SQL [11638]: pgsql_query() -- 18:47:49.045 SQL [11638]: About to run query: -- 18:47:49.045 SQL [11638]: SELECT currval('members_session_id_seq') -- 18:47:49.046 SQL [11638]: Found rows: 1 -- 18:47:49.046 INFO [11638]: CreateDefaultPage() -- 18:47:49.046 FLOG_MAX [11638]: long load_db_record( CVars &rec, const char * query, ... ) -- 18:47:49.046 SQL [11638]: pgsql_query() -- 18:47:49.046 SQL [11638]: About to run query: -- 18:47:49.046 SQL [11638]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 18:47:49.046 SQL [11638]: Found rows: 1 -- 18:47:49.046 FLOG_MAX [11638]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 18:47:49.046 SQL [11638]: pgsql_query() -- 18:47:49.046 SQL [11638]: About to run query: -- 18:47:49.046 SQL [11638]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 18:47:49.046 SQL [11638]: Found rows: 1 -- 18:47:49.046 INFO [11638]: /CreateDefaultPage() -- 18:47:49.046 INFO [11638]: /LoginCoreGradeAccount() -- 18:47:49.046 INFO [11638]: RET: added=2020-02-05 06:47:23.982154 -- 18:47:49.046 INFO [11638]: RET: email=ameye+11@chiefsoft.com -- 18:47:49.046 INFO [11638]: RET: firstname=Olu -- 18:47:49.046 INFO [11638]: RET: id=5 -- 18:47:49.046 INFO [11638]: RET: last_login= -- 18:47:49.046 INFO [11638]: RET: lastname=Amey -- 18:47:49.046 INFO [11638]: RET: loc=192.168.1.13 -- 18:47:49.046 INFO [11638]: RET: member_id=5 -- 18:47:49.046 INFO [11638]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 18:47:49.046 INFO [11638]: RET: phone= -- 18:47:49.046 INFO [11638]: RET: pid= -- 18:47:49.046 INFO [11638]: RET: result=YES I GET TO BACK END -- 18:47:49.046 INFO [11638]: RET: sessionid=D0B2DB32410E5EDE9AB23E74FEA5FC1F -- 18:47:49.046 INFO [11638]: RET: status=1 -- 18:47:49.046 INFO [11638]: RET: stauts=OK -- 18:47:49.046 INFO [11638]: RET: username=ameye+11@chiefsoft.com -- 18:47:49.046 INFO [11638]: RET: verified= -- 18:47:49.048 INFO [11638]: COREGRADE is stopping... -- 18:47:49.048 DEBUG [11638]: Closing database connection -- 18:47:49.048 SQL [11638]: pgsql_close() -- 18:47:48.999 DEBUG [11638]: Database connection successful -- 18:47:48.999 INFO [11638]: _SERVER found -- 18:47:48.999 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 18:47:48.999 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 18:47:48.999 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=b6okm1p9pftp96mg9m12s4ieeujabhnl -- 18:47:48.999 INFO [11638]: QUERY_STRING = /auth -- 18:47:48.999 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:47:49.049 INFO [11638]: COREGRADE is stopping... -- 18:47:49.049 DEBUG [11638]: Closing database connection -- 18:47:49.049 SQL [11638]: pgsql_close() -- 18:47:49.077 INFO [11638]: COREGRADE is starting... -- 18:47:49.078 INFO [11638]: Version from config: 1.0 -- 18:47:49.078 DEBUG [11638]: Connecting to database... -- 18:47:49.078 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:49.078 SQL [11638]: pgsql_db_connect() -- 18:47:49.082 DEBUG [11638]: Database connection successful -- 18:47:49.082 INFO [11638]: _SERVER found -- 18:47:49.082 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 18:47:49.082 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 18:47:49.082 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=e7tts3la3emt96jtopl61tlnvav7166m -- 18:47:49.082 INFO [11638]: QUERY_STRING = /member/index -- 18:47:49.082 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:47:49.116 INFO [11638]: COREGRADE is stopping... -- 18:47:49.116 DEBUG [11638]: Closing database connection -- 18:47:49.116 SQL [11638]: pgsql_close() -- 18:47:49.392 INFO [11638]: COREGRADE is starting... -- 18:47:49.392 INFO [11638]: Version from config: 1.0 -- 18:47:49.392 DEBUG [11638]: Connecting to database... -- 18:47:49.392 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:49.392 SQL [11638]: pgsql_db_connect() -- 18:47:49.396 DEBUG [11638]: Database connection successful -- 18:47:49.396 INFO [11638]: _SERVER found -- 18:47:49.396 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 18:47:49.396 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 18:47:49.396 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=e7tts3la3emt96jtopl61tlnvav7166m -- 18:47:49.396 INFO [11638]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:47:49.396 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:47:49.407 INFO [11638]: COREGRADE is stopping... -- 18:47:49.407 DEBUG [11638]: Closing database connection -- 18:47:49.407 SQL [11638]: pgsql_close() -- 18:47:49.682 INFO [11638]: COREGRADE is starting... -- 18:47:49.683 INFO [11638]: Version from config: 1.0 -- 18:47:49.683 DEBUG [11638]: Connecting to database... -- 18:47:49.683 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:49.683 SQL [11638]: pgsql_db_connect() -- 18:47:49.687 DEBUG [11638]: Database connection successful -- 18:47:49.687 INFO [11638]: _SERVER found -- 18:47:49.687 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 18:47:49.687 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 18:47:49.687 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=e7tts3la3emt96jtopl61tlnvav7166m -- 18:47:49.687 INFO [11638]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:47:49.687 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:47:49.698 INFO [11638]: COREGRADE is stopping... -- 18:47:49.698 DEBUG [11638]: Closing database connection -- 18:47:49.698 SQL [11638]: pgsql_close() -- 18:48:07.601 INFO [11650]: COREGRADE is starting... -- 18:48:07.602 INFO [11650]: Version from config: 1.0 -- 18:48:07.602 DEBUG [11650]: Connecting to database... -- 18:48:07.602 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:07.602 SQL [11650]: pgsql_db_connect() -- 18:48:07.606 DEBUG [11650]: Database connection successful -- 18:48:07.606 INFO [11650]: _SERVER found -- 18:48:07.606 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 18:48:07.606 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 18:48:07.606 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=e7tts3la3emt96jtopl61tlnvav7166m -- 18:48:07.606 INFO [11650]: QUERY_STRING = /member/page -- 18:48:07.606 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:48:07.643 INFO [11650]: COREGRADE is stopping... -- 18:48:07.643 DEBUG [11650]: Closing database connection -- 18:48:07.643 SQL [11650]: pgsql_close() -- 18:48:07.964 INFO [11650]: COREGRADE is starting... -- 18:48:07.964 INFO [11650]: Version from config: 1.0 -- 18:48:07.964 DEBUG [11650]: Connecting to database... -- 18:48:07.964 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:07.964 SQL [11650]: pgsql_db_connect() -- 18:48:07.968 DEBUG [11650]: Database connection successful -- 18:48:07.968 INFO [11650]: _SERVER found -- 18:48:07.968 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 18:48:07.968 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 18:48:07.968 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=e7tts3la3emt96jtopl61tlnvav7166m -- 18:48:07.968 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:48:07.968 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:48:07.979 INFO [11650]: COREGRADE is stopping... -- 18:48:07.979 DEBUG [11650]: Closing database connection -- 18:48:07.979 SQL [11650]: pgsql_close() -- 18:50:15.417 INFO [11652]: COREGRADE is starting... -- 18:50:15.417 INFO [11652]: Version from config: 1.0 -- 18:50:15.417 DEBUG [11652]: Connecting to database... -- 18:50:15.417 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:50:15.418 SQL [11652]: pgsql_db_connect() -- 18:50:15.421 DEBUG [11652]: Database connection successful -- 18:50:15.421 INFO [11652]: _SERVER found -- 18:50:15.421 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 18:50:15.421 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 18:50:15.421 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jm1d0jnimcj4lom79pqtb5aui0burnqp -- 18:50:15.422 INFO [11652]: QUERY_STRING = /member/configure -- 18:50:15.422 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:50:15.457 INFO [11652]: COREGRADE is stopping... -- 18:50:15.457 DEBUG [11652]: Closing database connection -- 18:50:15.457 SQL [11652]: pgsql_close() -- 18:50:15.785 INFO [11652]: COREGRADE is starting... -- 18:50:15.785 INFO [11652]: Version from config: 1.0 -- 18:50:15.785 DEBUG [11652]: Connecting to database... -- 18:50:15.785 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:50:15.785 SQL [11652]: pgsql_db_connect() -- 18:50:15.789 DEBUG [11652]: Database connection successful -- 18:50:15.789 INFO [11652]: _SERVER found -- 18:50:15.789 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 18:50:15.789 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 18:50:15.789 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3n6usavge6hnhg22s8ltbill9b7nc23j -- 18:50:15.789 INFO [11652]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:50:15.789 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:50:15.800 INFO [11652]: COREGRADE is stopping... -- 18:50:15.800 DEBUG [11652]: Closing database connection -- 18:50:15.800 SQL [11652]: pgsql_close() -- 18:50:15.807 INFO [11651]: COREGRADE is starting... -- 18:50:15.807 INFO [11651]: Version from config: 1.0 -- 18:50:15.807 DEBUG [11651]: Connecting to database... -- 18:50:15.807 DEBUG [11651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:50:15.807 SQL [11651]: pgsql_db_connect() -- 18:50:15.811 DEBUG [11651]: Database connection successful -- 18:50:15.811 INFO [11651]: _SERVER found -- 18:50:15.811 INFO [11651]: REMOTE_ADDR = 192.168.1.13 -- 18:50:15.811 INFO [11651]: SERVER_NAME = oameye.works.coregrade.com -- 18:50:15.811 INFO [11651]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3n6usavge6hnhg22s8ltbill9b7nc23j -- 18:50:15.811 INFO [11651]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:50:15.811 INFO [11651]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:50:15.823 INFO [11651]: COREGRADE is stopping... -- 18:50:15.823 DEBUG [11651]: Closing database connection -- 18:50:15.823 SQL [11651]: pgsql_close() -- 18:50:17.094 INFO [11651]: COREGRADE is starting... -- 18:50:17.094 INFO [11651]: Version from config: 1.0 -- 18:50:17.094 DEBUG [11651]: Connecting to database... -- 18:50:17.094 DEBUG [11651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:50:17.094 SQL [11651]: pgsql_db_connect() -- 18:50:17.099 DEBUG [11651]: Database connection successful -- 18:50:17.099 INFO [11651]: _SERVER found -- 18:50:17.099 INFO [11651]: REMOTE_ADDR = 192.168.1.13 -- 18:50:17.099 INFO [11651]: SERVER_NAME = oameye.works.coregrade.com -- 18:50:17.099 INFO [11651]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3n6usavge6hnhg22s8ltbill9b7nc23j -- 18:50:17.099 INFO [11651]: QUERY_STRING = /member -- 18:50:17.099 INFO [11651]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:50:17.137 INFO [11651]: COREGRADE is stopping... -- 18:50:17.137 DEBUG [11651]: Closing database connection -- 18:50:17.137 SQL [11651]: pgsql_close() -- 18:50:17.400 INFO [11651]: COREGRADE is starting... -- 18:50:17.401 INFO [11651]: Version from config: 1.0 -- 18:50:17.401 DEBUG [11651]: Connecting to database... -- 18:50:17.401 DEBUG [11651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:50:17.401 SQL [11651]: pgsql_db_connect() -- 18:50:17.412 INFO [11652]: COREGRADE is starting... -- 18:50:17.412 INFO [11652]: Version from config: 1.0 -- 18:50:17.412 DEBUG [11652]: Connecting to database... -- 18:50:17.412 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:50:17.412 SQL [11652]: pgsql_db_connect() -- 18:50:17.405 DEBUG [11651]: Database connection successful -- 18:50:17.405 INFO [11651]: _SERVER found -- 18:50:17.405 INFO [11651]: REMOTE_ADDR = 192.168.1.13 -- 18:50:17.405 INFO [11651]: SERVER_NAME = oameye.works.coregrade.com -- 18:50:17.405 INFO [11651]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3n6usavge6hnhg22s8ltbill9b7nc23j -- 18:50:17.405 INFO [11651]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:50:17.405 INFO [11651]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:50:17.417 INFO [11651]: COREGRADE is stopping... -- 18:50:17.417 DEBUG [11651]: Closing database connection -- 18:50:17.417 SQL [11651]: pgsql_close() -- 18:50:17.416 DEBUG [11652]: Database connection successful -- 18:50:17.416 INFO [11652]: _SERVER found -- 18:50:17.416 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 18:50:17.416 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 18:50:17.416 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3n6usavge6hnhg22s8ltbill9b7nc23j -- 18:50:17.416 INFO [11652]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:50:17.416 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:50:17.427 INFO [11652]: COREGRADE is stopping... -- 18:50:17.427 DEBUG [11652]: Closing database connection -- 18:50:17.427 SQL [11652]: pgsql_close() -- 18:50:21.399 INFO [11652]: COREGRADE is starting... -- 18:50:21.400 INFO [11652]: Version from config: 1.0 -- 18:50:21.400 DEBUG [11652]: Connecting to database... -- 18:50:21.400 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:50:21.400 SQL [11652]: pgsql_db_connect() -- 18:50:21.404 DEBUG [11652]: Database connection successful -- 18:50:21.404 INFO [11652]: _SERVER found -- 18:50:21.404 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 18:50:21.404 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 18:50:21.404 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3n6usavge6hnhg22s8ltbill9b7nc23j -- 18:50:21.404 INFO [11652]: QUERY_STRING = screen=app-todo -- 18:50:21.404 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:50:21.415 INFO [11652]: COREGRADE is stopping... -- 18:50:21.415 DEBUG [11652]: Closing database connection -- 18:50:21.415 SQL [11652]: pgsql_close() -- 18:50:23.279 INFO [11652]: COREGRADE is starting... -- 18:50:23.279 INFO [11652]: Version from config: 1.0 -- 18:50:23.279 DEBUG [11652]: Connecting to database... -- 18:50:23.279 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:50:23.279 SQL [11652]: pgsql_db_connect() -- 18:50:23.283 DEBUG [11652]: Database connection successful -- 18:50:23.283 INFO [11652]: _SERVER found -- 18:50:23.283 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 18:50:23.283 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 18:50:23.283 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3n6usavge6hnhg22s8ltbill9b7nc23j -- 18:50:23.283 INFO [11652]: QUERY_STRING = /member -- 18:50:23.283 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:50:23.318 INFO [11652]: COREGRADE is stopping... -- 18:50:23.318 DEBUG [11652]: Closing database connection -- 18:50:23.318 SQL [11652]: pgsql_close() -- 18:50:23.579 INFO [11652]: COREGRADE is starting... -- 18:50:23.579 INFO [11652]: Version from config: 1.0 -- 18:50:23.579 DEBUG [11652]: Connecting to database... -- 18:50:23.579 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:50:23.579 SQL [11652]: pgsql_db_connect() -- 18:50:23.583 DEBUG [11652]: Database connection successful -- 18:50:23.583 INFO [11652]: _SERVER found -- 18:50:23.583 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 18:50:23.583 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 18:50:23.583 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3n6usavge6hnhg22s8ltbill9b7nc23j -- 18:50:23.583 INFO [11652]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:50:23.583 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:50:23.594 INFO [11652]: COREGRADE is stopping... -- 18:50:23.594 DEBUG [11652]: Closing database connection -- 18:50:23.594 SQL [11652]: pgsql_close() -- 18:50:30.800 INFO [11635]: COREGRADE is starting... -- 18:50:30.800 INFO [11635]: Version from config: 1.0 -- 18:50:30.800 DEBUG [11635]: Connecting to database... -- 18:50:30.801 DEBUG [11635]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:50:30.801 SQL [11635]: pgsql_db_connect() -- 18:50:30.805 DEBUG [11635]: Database connection successful -- 18:50:30.805 INFO [11635]: _SERVER found -- 18:50:30.805 INFO [11635]: REMOTE_ADDR = 192.168.1.13 -- 18:50:30.805 INFO [11635]: SERVER_NAME = oameye.works.coregrade.com -- 18:50:30.805 INFO [11635]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3n6usavge6hnhg22s8ltbill9b7nc23j -- 18:50:30.805 INFO [11635]: QUERY_STRING = screen=app-email -- 18:50:30.805 INFO [11635]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:50:30.816 INFO [11635]: COREGRADE is stopping... -- 18:50:30.816 DEBUG [11635]: Closing database connection -- 18:50:30.816 SQL [11635]: pgsql_close() -- 18:50:32.514 INFO [11635]: COREGRADE is starting... -- 18:50:32.514 INFO [11635]: Version from config: 1.0 -- 18:50:32.514 DEBUG [11635]: Connecting to database... -- 18:50:32.514 DEBUG [11635]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:50:32.514 SQL [11635]: pgsql_db_connect() -- 18:50:32.518 DEBUG [11635]: Database connection successful -- 18:50:32.518 INFO [11635]: _SERVER found -- 18:50:32.518 INFO [11635]: REMOTE_ADDR = 192.168.1.13 -- 18:50:32.518 INFO [11635]: SERVER_NAME = oameye.works.coregrade.com -- 18:50:32.518 INFO [11635]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3n6usavge6hnhg22s8ltbill9b7nc23j -- 18:50:32.518 INFO [11635]: QUERY_STRING = /member -- 18:50:32.518 INFO [11635]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:50:32.553 INFO [11635]: COREGRADE is stopping... -- 18:50:32.553 DEBUG [11635]: Closing database connection -- 18:50:32.553 SQL [11635]: pgsql_close() -- 18:50:33.972 INFO [11635]: COREGRADE is starting... -- 18:50:33.972 INFO [11635]: Version from config: 1.0 -- 18:50:33.972 DEBUG [11635]: Connecting to database... -- 18:50:33.972 DEBUG [11635]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:50:33.972 SQL [11635]: pgsql_db_connect() -- 18:50:33.977 DEBUG [11635]: Database connection successful -- 18:50:33.977 INFO [11635]: _SERVER found -- 18:50:33.977 INFO [11635]: REMOTE_ADDR = 192.168.1.13 -- 18:50:33.977 INFO [11635]: SERVER_NAME = oameye.works.coregrade.com -- 18:50:33.977 INFO [11635]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3n6usavge6hnhg22s8ltbill9b7nc23j -- 18:50:33.977 INFO [11635]: QUERY_STRING = screen=app-chat -- 18:50:33.977 INFO [11635]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:50:33.988 INFO [11635]: COREGRADE is stopping... -- 18:50:33.988 DEBUG [11635]: Closing database connection -- 18:50:33.988 SQL [11635]: pgsql_close() -- 18:50:35.253 INFO [11635]: COREGRADE is starting... -- 18:50:35.253 INFO [11635]: Version from config: 1.0 -- 18:50:35.253 DEBUG [11635]: Connecting to database... -- 18:50:35.253 DEBUG [11635]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:50:35.254 SQL [11635]: pgsql_db_connect() -- 18:50:35.258 DEBUG [11635]: Database connection successful -- 18:50:35.258 INFO [11635]: _SERVER found -- 18:50:35.258 INFO [11635]: REMOTE_ADDR = 192.168.1.13 -- 18:50:35.258 INFO [11635]: SERVER_NAME = oameye.works.coregrade.com -- 18:50:35.258 INFO [11635]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3n6usavge6hnhg22s8ltbill9b7nc23j -- 18:50:35.258 INFO [11635]: QUERY_STRING = /member -- 18:50:35.258 INFO [11635]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:50:35.292 INFO [11635]: COREGRADE is stopping... -- 18:50:35.292 DEBUG [11635]: Closing database connection -- 18:50:35.292 SQL [11635]: pgsql_close() -- 18:50:35.537 INFO [11635]: COREGRADE is starting... -- 18:50:35.537 INFO [11635]: Version from config: 1.0 -- 18:50:35.537 DEBUG [11635]: Connecting to database... -- 18:50:35.537 DEBUG [11635]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:50:35.537 SQL [11635]: pgsql_db_connect() -- 18:50:35.541 DEBUG [11635]: Database connection successful -- 18:50:35.541 INFO [11635]: _SERVER found -- 18:50:35.541 INFO [11635]: REMOTE_ADDR = 192.168.1.13 -- 18:50:35.541 INFO [11635]: SERVER_NAME = oameye.works.coregrade.com -- 18:50:35.541 INFO [11635]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3n6usavge6hnhg22s8ltbill9b7nc23j -- 18:50:35.541 INFO [11635]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:50:35.541 INFO [11635]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:50:35.552 INFO [11635]: COREGRADE is stopping... -- 18:50:35.552 DEBUG [11635]: Closing database connection -- 18:50:35.552 SQL [11635]: pgsql_close() -- 18:52:17.904 INFO [11637]: COREGRADE is starting... -- 18:52:17.904 INFO [11637]: Version from config: 1.0 -- 18:52:17.904 DEBUG [11637]: Connecting to database... -- 18:52:17.904 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:52:17.904 SQL [11637]: pgsql_db_connect() -- 18:52:17.908 DEBUG [11637]: Database connection successful -- 18:52:17.908 INFO [11637]: _SERVER found -- 18:52:17.908 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 18:52:17.908 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 18:52:17.908 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3n6usavge6hnhg22s8ltbill9b7nc23j -- 18:52:17.908 INFO [11637]: QUERY_STRING = screen=app-todo -- 18:52:17.908 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:52:17.920 INFO [11637]: COREGRADE is stopping... -- 18:52:17.920 DEBUG [11637]: Closing database connection -- 18:52:17.920 SQL [11637]: pgsql_close() -- 18:52:19.590 INFO [11637]: COREGRADE is starting... -- 18:52:19.590 INFO [11637]: Version from config: 1.0 -- 18:52:19.590 DEBUG [11637]: Connecting to database... -- 18:52:19.590 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:52:19.590 SQL [11637]: pgsql_db_connect() -- 18:52:19.594 DEBUG [11637]: Database connection successful -- 18:52:19.594 INFO [11637]: _SERVER found -- 18:52:19.594 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 18:52:19.594 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 18:52:19.594 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3n6usavge6hnhg22s8ltbill9b7nc23j -- 18:52:19.594 INFO [11637]: QUERY_STRING = /member -- 18:52:19.594 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:52:19.629 INFO [11637]: COREGRADE is stopping... -- 18:52:19.629 DEBUG [11637]: Closing database connection -- 18:52:19.629 SQL [11637]: pgsql_close() -- 18:52:19.880 INFO [11637]: COREGRADE is starting... -- 18:52:19.880 INFO [11637]: Version from config: 1.0 -- 18:52:19.880 DEBUG [11637]: Connecting to database... -- 18:52:19.880 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:52:19.880 SQL [11637]: pgsql_db_connect() -- 18:52:19.884 DEBUG [11637]: Database connection successful -- 18:52:19.884 INFO [11637]: _SERVER found -- 18:52:19.884 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 18:52:19.884 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 18:52:19.884 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3n6usavge6hnhg22s8ltbill9b7nc23j -- 18:52:19.884 INFO [11637]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:52:19.884 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:52:19.895 INFO [11637]: COREGRADE is stopping... -- 18:52:19.895 DEBUG [11637]: Closing database connection -- 18:52:19.895 SQL [11637]: pgsql_close() -- 18:52:41.519 INFO [11644]: COREGRADE is starting... -- 18:52:41.519 INFO [11644]: Version from config: 1.0 -- 18:52:41.519 DEBUG [11644]: Connecting to database... -- 18:52:41.519 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:52:41.519 SQL [11644]: pgsql_db_connect() -- 18:52:41.524 DEBUG [11644]: Database connection successful -- 18:52:41.524 INFO [11644]: _SERVER found -- 18:52:41.524 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 18:52:41.524 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 18:52:41.524 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3n6usavge6hnhg22s8ltbill9b7nc23j -- 18:52:41.524 INFO [11644]: QUERY_STRING = screen=app-email -- 18:52:41.524 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:52:41.536 INFO [11644]: COREGRADE is stopping... -- 18:52:41.536 DEBUG [11644]: Closing database connection -- 18:52:41.536 SQL [11644]: pgsql_close() -- 18:52:43.146 INFO [11644]: COREGRADE is starting... -- 18:52:43.146 INFO [11644]: Version from config: 1.0 -- 18:52:43.146 DEBUG [11644]: Connecting to database... -- 18:52:43.146 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:52:43.146 SQL [11644]: pgsql_db_connect() -- 18:52:43.151 DEBUG [11644]: Database connection successful -- 18:52:43.151 INFO [11644]: _SERVER found -- 18:52:43.151 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 18:52:43.151 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 18:52:43.151 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3n6usavge6hnhg22s8ltbill9b7nc23j -- 18:52:43.151 INFO [11644]: QUERY_STRING = /member -- 18:52:43.151 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:52:43.187 INFO [11644]: COREGRADE is stopping... -- 18:52:43.187 DEBUG [11644]: Closing database connection -- 18:52:43.187 SQL [11644]: pgsql_close() -- 18:52:43.434 INFO [11644]: COREGRADE is starting... -- 18:52:43.434 INFO [11644]: Version from config: 1.0 -- 18:52:43.434 DEBUG [11644]: Connecting to database... -- 18:52:43.434 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:52:43.434 SQL [11644]: pgsql_db_connect() -- 18:52:43.438 DEBUG [11644]: Database connection successful -- 18:52:43.438 INFO [11644]: _SERVER found -- 18:52:43.438 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 18:52:43.438 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 18:52:43.438 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3n6usavge6hnhg22s8ltbill9b7nc23j -- 18:52:43.438 INFO [11644]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:52:43.438 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:52:43.449 INFO [11644]: COREGRADE is stopping... -- 18:52:43.449 DEBUG [11644]: Closing database connection -- 18:52:43.450 SQL [11644]: pgsql_close() -- 18:55:51.002 INFO [11636]: COREGRADE is starting... -- 18:55:51.003 INFO [11636]: Version from config: 1.0 -- 18:55:51.003 DEBUG [11636]: Connecting to database... -- 18:55:51.003 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:51.003 SQL [11636]: pgsql_db_connect() -- 18:55:51.007 DEBUG [11636]: Database connection successful -- 18:55:51.007 INFO [11636]: _SERVER found -- 18:55:51.007 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 18:55:51.007 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 18:55:51.007 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=e7tts3la3emt96jtopl61tlnvav7166m -- 18:55:51.007 INFO [11636]: QUERY_STRING = /member -- 18:55:51.007 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:55:51.043 INFO [11636]: COREGRADE is stopping... -- 18:55:51.043 DEBUG [11636]: Closing database connection -- 18:55:51.043 SQL [11636]: pgsql_close() -- 18:55:51.411 INFO [11636]: COREGRADE is starting... -- 18:55:51.411 INFO [11636]: Version from config: 1.0 -- 18:55:51.411 DEBUG [11636]: Connecting to database... -- 18:55:51.411 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:51.411 SQL [11636]: pgsql_db_connect() -- 18:55:51.415 DEBUG [11636]: Database connection successful -- 18:55:51.415 INFO [11636]: _SERVER found -- 18:55:51.415 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 18:55:51.415 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 18:55:51.415 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=69adpsgpc65gqtbve74iqt2kc4bvddps -- 18:55:51.415 INFO [11636]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:55:51.415 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:55:51.426 INFO [11636]: COREGRADE is stopping... -- 18:55:51.426 DEBUG [11636]: Closing database connection -- 18:55:51.426 SQL [11636]: pgsql_close() -- 18:56:09.595 INFO [11639]: COREGRADE is starting... -- 18:56:09.595 INFO [11639]: Version from config: 1.0 -- 18:56:09.595 DEBUG [11639]: Connecting to database... -- 18:56:09.595 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:56:09.595 SQL [11639]: pgsql_db_connect() -- 18:56:09.599 DEBUG [11639]: Database connection successful -- 18:56:09.599 INFO [11639]: _SERVER found -- 18:56:09.599 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 18:56:09.599 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 18:56:09.599 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=69adpsgpc65gqtbve74iqt2kc4bvddps -- 18:56:09.599 INFO [11639]: QUERY_STRING = /member/page -- 18:56:09.599 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:56:09.637 INFO [11639]: COREGRADE is stopping... -- 18:56:09.637 DEBUG [11639]: Closing database connection -- 18:56:09.637 SQL [11639]: pgsql_close() -- 18:56:09.819 INFO [11639]: COREGRADE is starting... -- 18:56:09.820 INFO [11639]: Version from config: 1.0 -- 18:56:09.820 DEBUG [11639]: Connecting to database... -- 18:56:09.820 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:56:09.820 SQL [11639]: pgsql_db_connect() -- 18:56:09.824 DEBUG [11639]: Database connection successful -- 18:56:09.824 INFO [11639]: _SERVER found -- 18:56:09.824 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 18:56:09.824 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 18:56:09.824 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=69adpsgpc65gqtbve74iqt2kc4bvddps -- 18:56:09.824 INFO [11639]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:56:09.824 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:56:09.836 INFO [11639]: COREGRADE is stopping... -- 18:56:09.836 DEBUG [11639]: Closing database connection -- 18:56:09.836 SQL [11639]: pgsql_close() -- 18:56:09.980 INFO [11639]: COREGRADE is starting... -- 18:56:09.981 INFO [11639]: Version from config: 1.0 -- 18:56:09.981 DEBUG [11639]: Connecting to database... -- 18:56:09.981 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:56:09.981 SQL [11639]: pgsql_db_connect() -- 18:56:09.985 DEBUG [11639]: Database connection successful -- 18:56:09.985 INFO [11639]: _SERVER found -- 18:56:09.985 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 18:56:09.985 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 18:56:09.985 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=69adpsgpc65gqtbve74iqt2kc4bvddps -- 18:56:09.985 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:56:09.985 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:56:09.997 INFO [11639]: COREGRADE is stopping... -- 18:56:09.997 DEBUG [11639]: Closing database connection -- 18:56:09.997 SQL [11639]: pgsql_close() -- 18:56:16.639 INFO [11638]: COREGRADE is starting... -- 18:56:16.639 INFO [11638]: Version from config: 1.0 -- 18:56:16.639 DEBUG [11638]: Connecting to database... -- 18:56:16.639 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:56:16.639 SQL [11638]: pgsql_db_connect() -- 18:56:16.643 DEBUG [11638]: Database connection successful -- 18:56:16.643 INFO [11638]: _SERVER found -- 18:56:16.643 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 18:56:16.643 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 18:56:16.643 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=69adpsgpc65gqtbve74iqt2kc4bvddps -- 18:56:16.643 INFO [11638]: QUERY_STRING = /member -- 18:56:16.643 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:56:16.679 INFO [11638]: COREGRADE is stopping... -- 18:56:16.679 DEBUG [11638]: Closing database connection -- 18:56:16.679 SQL [11638]: pgsql_close() -- 18:56:16.903 INFO [11638]: COREGRADE is starting... -- 18:56:16.904 INFO [11638]: Version from config: 1.0 -- 18:56:16.904 DEBUG [11638]: Connecting to database... -- 18:56:16.904 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:56:16.904 SQL [11638]: pgsql_db_connect() -- 18:56:16.908 DEBUG [11638]: Database connection successful -- 18:56:16.908 INFO [11638]: _SERVER found -- 18:56:16.908 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 18:56:16.908 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 18:56:16.908 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=69adpsgpc65gqtbve74iqt2kc4bvddps -- 18:56:16.908 INFO [11638]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:56:16.908 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:56:16.919 INFO [11638]: COREGRADE is stopping... -- 18:56:16.919 DEBUG [11638]: Closing database connection -- 18:56:16.919 SQL [11638]: pgsql_close() -- 18:56:16.941 INFO [11650]: COREGRADE is starting... -- 18:56:16.942 INFO [11650]: Version from config: 1.0 -- 18:56:16.942 DEBUG [11650]: Connecting to database... -- 18:56:16.942 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:56:16.942 SQL [11650]: pgsql_db_connect() -- 18:56:16.946 DEBUG [11650]: Database connection successful -- 18:56:16.946 INFO [11650]: _SERVER found -- 18:56:16.946 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 18:56:16.946 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 18:56:16.946 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=69adpsgpc65gqtbve74iqt2kc4bvddps -- 18:56:16.946 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:56:16.946 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:56:16.957 INFO [11650]: COREGRADE is stopping... -- 18:56:16.957 DEBUG [11650]: Closing database connection -- 18:56:16.957 SQL [11650]: pgsql_close() -- 18:56:24.542 INFO [11651]: COREGRADE is starting... -- 18:56:24.542 INFO [11651]: Version from config: 1.0 -- 18:56:24.542 DEBUG [11651]: Connecting to database... -- 18:56:24.542 DEBUG [11651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:56:24.542 SQL [11651]: pgsql_db_connect() -- 18:56:24.546 DEBUG [11651]: Database connection successful -- 18:56:24.546 INFO [11651]: _SERVER found -- 18:56:24.546 INFO [11651]: REMOTE_ADDR = 192.168.1.13 -- 18:56:24.546 INFO [11651]: SERVER_NAME = oameye.works.coregrade.com -- 18:56:24.546 INFO [11651]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=69adpsgpc65gqtbve74iqt2kc4bvddps -- 18:56:24.546 INFO [11651]: QUERY_STRING = /member/page -- 18:56:24.546 INFO [11651]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:56:24.582 INFO [11651]: COREGRADE is stopping... -- 18:56:24.582 DEBUG [11651]: Closing database connection -- 18:56:24.582 SQL [11651]: pgsql_close() -- 18:56:24.824 INFO [11651]: COREGRADE is starting... -- 18:56:24.825 INFO [11651]: Version from config: 1.0 -- 18:56:24.825 DEBUG [11651]: Connecting to database... -- 18:56:24.825 DEBUG [11651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:56:24.825 SQL [11651]: pgsql_db_connect() -- 18:56:24.829 DEBUG [11651]: Database connection successful -- 18:56:24.829 INFO [11651]: _SERVER found -- 18:56:24.829 INFO [11651]: REMOTE_ADDR = 192.168.1.13 -- 18:56:24.829 INFO [11651]: SERVER_NAME = oameye.works.coregrade.com -- 18:56:24.829 INFO [11651]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=69adpsgpc65gqtbve74iqt2kc4bvddps -- 18:56:24.829 INFO [11651]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:56:24.829 INFO [11651]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:56:24.840 INFO [11651]: COREGRADE is stopping... -- 18:56:24.840 DEBUG [11651]: Closing database connection -- 18:56:24.840 SQL [11651]: pgsql_close() -- 18:58:40.598 INFO [11652]: COREGRADE is starting... -- 18:58:40.599 INFO [11652]: Version from config: 1.0 -- 18:58:40.599 DEBUG [11652]: Connecting to database... -- 18:58:40.599 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:58:40.599 SQL [11652]: pgsql_db_connect() -- 18:58:40.603 DEBUG [11652]: Database connection successful -- 18:58:40.603 INFO [11652]: _SERVER found -- 18:58:40.603 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 18:58:40.603 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 18:58:40.603 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3n6usavge6hnhg22s8ltbill9b7nc23j -- 18:58:40.603 INFO [11652]: QUERY_STRING = /member/configure -- 18:58:40.603 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:58:40.639 INFO [11652]: COREGRADE is stopping... -- 18:58:40.639 DEBUG [11652]: Closing database connection -- 18:58:40.639 SQL [11652]: pgsql_close() -- 18:58:40.943 INFO [11652]: COREGRADE is starting... -- 18:58:40.943 INFO [11652]: Version from config: 1.0 -- 18:58:40.943 DEBUG [11652]: Connecting to database... -- 18:58:40.943 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:58:40.943 SQL [11652]: pgsql_db_connect() -- 18:58:40.947 DEBUG [11652]: Database connection successful -- 18:58:40.947 INFO [11652]: _SERVER found -- 18:58:40.947 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 18:58:40.947 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 18:58:40.947 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=q7a397hc3fel69qsiuvrnt6fetn5mnkl -- 18:58:40.947 INFO [11652]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:58:40.947 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:58:40.958 INFO [11652]: COREGRADE is stopping... -- 18:58:40.958 DEBUG [11652]: Closing database connection -- 18:58:40.958 SQL [11652]: pgsql_close() -- 18:58:40.970 INFO [11635]: COREGRADE is starting... -- 18:58:40.971 INFO [11635]: Version from config: 1.0 -- 18:58:40.971 DEBUG [11635]: Connecting to database... -- 18:58:40.971 DEBUG [11635]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:58:40.971 SQL [11635]: pgsql_db_connect() -- 18:58:40.974 DEBUG [11635]: Database connection successful -- 18:58:40.974 INFO [11635]: _SERVER found -- 18:58:40.974 INFO [11635]: REMOTE_ADDR = 192.168.1.13 -- 18:58:40.975 INFO [11635]: SERVER_NAME = oameye.works.coregrade.com -- 18:58:40.975 INFO [11635]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=q7a397hc3fel69qsiuvrnt6fetn5mnkl -- 18:58:40.975 INFO [11635]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:58:40.975 INFO [11635]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:58:40.986 INFO [11635]: COREGRADE is stopping... -- 18:58:40.986 DEBUG [11635]: Closing database connection -- 18:58:40.986 SQL [11635]: pgsql_close() -- 19:07:04.802 INFO [11637]: COREGRADE is starting... -- 19:07:04.802 INFO [11637]: Version from config: 1.0 -- 19:07:04.802 DEBUG [11637]: Connecting to database... -- 19:07:04.802 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:04.802 SQL [11637]: pgsql_db_connect() -- 19:07:04.808 DEBUG [11637]: Database connection successful -- 19:07:04.808 INFO [11637]: _SERVER found -- 19:07:04.808 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 19:07:04.808 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 19:07:04.808 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=q7a397hc3fel69qsiuvrnt6fetn5mnkl -- 19:07:04.808 INFO [11637]: QUERY_STRING = /member/configure -- 19:07:04.808 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:07:04.846 INFO [11637]: COREGRADE is stopping... -- 19:07:04.846 DEBUG [11637]: Closing database connection -- 19:07:04.846 SQL [11637]: pgsql_close() -- 19:07:05.175 INFO [11637]: COREGRADE is starting... -- 19:07:05.176 INFO [11637]: Version from config: 1.0 -- 19:07:05.176 DEBUG [11637]: Connecting to database... -- 19:07:05.176 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:05.176 SQL [11637]: pgsql_db_connect() -- 19:07:05.180 DEBUG [11637]: Database connection successful -- 19:07:05.180 INFO [11637]: _SERVER found -- 19:07:05.180 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 19:07:05.180 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 19:07:05.180 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=6ded01auhi5m440aerdubfs4iq4j4bsm -- 19:07:05.180 INFO [11637]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:07:05.180 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:07:05.191 INFO [11637]: COREGRADE is stopping... -- 19:07:05.191 DEBUG [11637]: Closing database connection -- 19:07:05.191 SQL [11637]: pgsql_close() -- 19:07:05.199 INFO [11644]: COREGRADE is starting... -- 19:07:05.200 INFO [11644]: Version from config: 1.0 -- 19:07:05.200 DEBUG [11644]: Connecting to database... -- 19:07:05.200 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:05.200 SQL [11644]: pgsql_db_connect() -- 19:07:05.204 DEBUG [11644]: Database connection successful -- 19:07:05.204 INFO [11644]: _SERVER found -- 19:07:05.204 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 19:07:05.204 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 19:07:05.204 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=6ded01auhi5m440aerdubfs4iq4j4bsm -- 19:07:05.204 INFO [11644]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:07:05.204 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:07:05.215 INFO [11644]: COREGRADE is stopping... -- 19:07:05.215 DEBUG [11644]: Closing database connection -- 19:07:05.215 SQL [11644]: pgsql_close() -- 19:07:06.545 INFO [11644]: COREGRADE is starting... -- 19:07:06.545 INFO [11644]: Version from config: 1.0 -- 19:07:06.545 DEBUG [11644]: Connecting to database... -- 19:07:06.545 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:06.545 SQL [11644]: pgsql_db_connect() -- 19:07:06.549 DEBUG [11644]: Database connection successful -- 19:07:06.549 INFO [11644]: _SERVER found -- 19:07:06.549 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 19:07:06.549 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 19:07:06.549 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=6ded01auhi5m440aerdubfs4iq4j4bsm -- 19:07:06.549 INFO [11644]: QUERY_STRING = /member -- 19:07:06.549 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:07:06.584 INFO [11644]: COREGRADE is stopping... -- 19:07:06.584 DEBUG [11644]: Closing database connection -- 19:07:06.584 SQL [11644]: pgsql_close() -- 19:07:06.795 INFO [11644]: COREGRADE is starting... -- 19:07:06.795 INFO [11644]: Version from config: 1.0 -- 19:07:06.795 DEBUG [11644]: Connecting to database... -- 19:07:06.795 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:06.795 SQL [11644]: pgsql_db_connect() -- 19:07:06.809 INFO [11637]: COREGRADE is starting... -- 19:07:06.809 INFO [11637]: Version from config: 1.0 -- 19:07:06.809 DEBUG [11637]: Connecting to database... -- 19:07:06.809 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:06.809 SQL [11637]: pgsql_db_connect() -- 19:07:06.799 DEBUG [11644]: Database connection successful -- 19:07:06.799 INFO [11644]: _SERVER found -- 19:07:06.799 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 19:07:06.799 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 19:07:06.799 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=6ded01auhi5m440aerdubfs4iq4j4bsm -- 19:07:06.799 INFO [11644]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:07:06.799 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:07:06.810 INFO [11644]: COREGRADE is stopping... -- 19:07:06.811 DEBUG [11644]: Closing database connection -- 19:07:06.811 SQL [11644]: pgsql_close() -- 19:07:06.813 DEBUG [11637]: Database connection successful -- 19:07:06.813 INFO [11637]: _SERVER found -- 19:07:06.813 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 19:07:06.813 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 19:07:06.813 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=6ded01auhi5m440aerdubfs4iq4j4bsm -- 19:07:06.813 INFO [11637]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:07:06.813 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:07:06.824 INFO [11637]: COREGRADE is stopping... -- 19:07:06.824 DEBUG [11637]: Closing database connection -- 19:07:06.824 SQL [11637]: pgsql_close() -- 19:12:40.720 INFO [11636]: COREGRADE is starting... -- 19:12:40.720 INFO [11636]: Version from config: 1.0 -- 19:12:40.720 DEBUG [11636]: Connecting to database... -- 19:12:40.720 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:12:40.720 SQL [11636]: pgsql_db_connect() -- 19:12:40.725 DEBUG [11636]: Database connection successful -- 19:12:40.725 INFO [11636]: _SERVER found -- 19:12:40.725 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 19:12:40.725 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 19:12:40.725 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=69adpsgpc65gqtbve74iqt2kc4bvddps -- 19:12:40.725 INFO [11636]: QUERY_STRING = /member -- 19:12:40.725 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:12:40.761 INFO [11636]: COREGRADE is stopping... -- 19:12:40.761 DEBUG [11636]: Closing database connection -- 19:12:40.761 SQL [11636]: pgsql_close() -- 19:12:41.043 INFO [11636]: COREGRADE is starting... -- 19:12:41.043 INFO [11636]: Version from config: 1.0 -- 19:12:41.043 DEBUG [11636]: Connecting to database... -- 19:12:41.043 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:12:41.043 SQL [11636]: pgsql_db_connect() -- 19:12:41.047 DEBUG [11636]: Database connection successful -- 19:12:41.047 INFO [11636]: _SERVER found -- 19:12:41.047 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 19:12:41.047 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 19:12:41.047 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ljg33o22l6fl16b4evjinlajm4l4ej0p -- 19:12:41.047 INFO [11636]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:12:41.047 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:12:41.058 INFO [11636]: COREGRADE is stopping... -- 19:12:41.058 DEBUG [11636]: Closing database connection -- 19:12:41.059 SQL [11636]: pgsql_close() -- 19:12:41.092 INFO [11636]: COREGRADE is starting... -- 19:12:41.093 INFO [11636]: Version from config: 1.0 -- 19:12:41.093 DEBUG [11636]: Connecting to database... -- 19:12:41.093 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:12:41.093 SQL [11636]: pgsql_db_connect() -- 19:12:41.097 DEBUG [11636]: Database connection successful -- 19:12:41.097 INFO [11636]: _SERVER found -- 19:12:41.097 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 19:12:41.097 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 19:12:41.097 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ljg33o22l6fl16b4evjinlajm4l4ej0p -- 19:12:41.097 INFO [11636]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:12:41.097 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:12:41.108 INFO [11636]: COREGRADE is stopping... -- 19:12:41.108 DEBUG [11636]: Closing database connection -- 19:12:41.108 SQL [11636]: pgsql_close() -- 19:12:42.478 INFO [11636]: COREGRADE is starting... -- 19:12:42.478 INFO [11636]: Version from config: 1.0 -- 19:12:42.478 DEBUG [11636]: Connecting to database... -- 19:12:42.478 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:12:42.478 SQL [11636]: pgsql_db_connect() -- 19:12:42.482 DEBUG [11636]: Database connection successful -- 19:12:42.482 INFO [11636]: _SERVER found -- 19:12:42.482 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 19:12:42.482 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 19:12:42.482 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ljg33o22l6fl16b4evjinlajm4l4ej0p -- 19:12:42.482 INFO [11636]: QUERY_STRING = /member/page -- 19:12:42.482 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:12:42.512 INFO [11636]: COREGRADE is stopping... -- 19:12:42.512 DEBUG [11636]: Closing database connection -- 19:12:42.512 SQL [11636]: pgsql_close() -- 19:13:36.862 INFO [11639]: COREGRADE is starting... -- 19:13:36.862 INFO [11639]: Version from config: 1.0 -- 19:13:36.863 DEBUG [11639]: Connecting to database... -- 19:13:36.863 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:13:36.863 SQL [11639]: pgsql_db_connect() -- 19:13:36.867 DEBUG [11639]: Database connection successful -- 19:13:36.867 INFO [11639]: _SERVER found -- 19:13:36.867 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 19:13:36.867 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 19:13:36.867 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ljg33o22l6fl16b4evjinlajm4l4ej0p -- 19:13:36.867 INFO [11639]: QUERY_STRING = /member/page -- 19:13:36.867 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:13:36.901 INFO [11639]: COREGRADE is stopping... -- 19:13:36.901 DEBUG [11639]: Closing database connection -- 19:13:36.901 SQL [11639]: pgsql_close() -- 19:13:42.041 INFO [11638]: COREGRADE is starting... -- 19:13:42.042 INFO [11638]: Version from config: 1.0 -- 19:13:42.042 DEBUG [11638]: Connecting to database... -- 19:13:42.042 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:13:42.042 SQL [11638]: pgsql_db_connect() -- 19:13:42.046 DEBUG [11638]: Database connection successful -- 19:13:42.046 INFO [11638]: _SERVER found -- 19:13:42.046 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 19:13:42.046 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 19:13:42.046 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ljg33o22l6fl16b4evjinlajm4l4ej0p -- 19:13:42.046 INFO [11638]: QUERY_STRING = /member/page -- 19:13:42.046 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:13:42.076 INFO [11638]: COREGRADE is stopping... -- 19:13:42.076 DEBUG [11638]: Closing database connection -- 19:13:42.076 SQL [11638]: pgsql_close() -- 19:14:12.110 INFO [11650]: COREGRADE is starting... -- 19:14:12.110 INFO [11650]: Version from config: 1.0 -- 19:14:12.110 DEBUG [11650]: Connecting to database... -- 19:14:12.110 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:14:12.110 SQL [11650]: pgsql_db_connect() -- 19:14:12.114 DEBUG [11650]: Database connection successful -- 19:14:12.114 INFO [11650]: _SERVER found -- 19:14:12.114 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 19:14:12.114 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 19:14:12.114 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ljg33o22l6fl16b4evjinlajm4l4ej0p -- 19:14:12.114 INFO [11650]: QUERY_STRING = /member/page -- 19:14:12.114 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:14:12.147 INFO [11650]: COREGRADE is stopping... -- 19:14:12.147 DEBUG [11650]: Closing database connection -- 19:14:12.147 SQL [11650]: pgsql_close() -- 19:14:28.899 INFO [11651]: COREGRADE is starting... -- 19:14:28.899 INFO [11651]: Version from config: 1.0 -- 19:14:28.899 DEBUG [11651]: Connecting to database... -- 19:14:28.899 DEBUG [11651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:14:28.899 SQL [11651]: pgsql_db_connect() -- 19:14:28.903 DEBUG [11651]: Database connection successful -- 19:14:28.903 INFO [11651]: _SERVER found -- 19:14:28.903 INFO [11651]: REMOTE_ADDR = 192.168.1.13 -- 19:14:28.903 INFO [11651]: SERVER_NAME = oameye.works.coregrade.com -- 19:14:28.903 INFO [11651]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ljg33o22l6fl16b4evjinlajm4l4ej0p -- 19:14:28.903 INFO [11651]: QUERY_STRING = /member/page -- 19:14:28.903 INFO [11651]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:14:28.936 INFO [11651]: COREGRADE is stopping... -- 19:14:28.936 DEBUG [11651]: Closing database connection -- 19:14:28.936 SQL [11651]: pgsql_close() -- 19:14:57.908 INFO [11652]: COREGRADE is starting... -- 19:14:57.908 INFO [11652]: Version from config: 1.0 -- 19:14:57.908 DEBUG [11652]: Connecting to database... -- 19:14:57.909 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:14:57.909 SQL [11652]: pgsql_db_connect() -- 19:14:57.913 DEBUG [11652]: Database connection successful -- 19:14:57.913 INFO [11652]: _SERVER found -- 19:14:57.913 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 19:14:57.913 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 19:14:57.913 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ljg33o22l6fl16b4evjinlajm4l4ej0p -- 19:14:57.913 INFO [11652]: QUERY_STRING = /member/page -- 19:14:57.913 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:14:57.943 INFO [11652]: COREGRADE is stopping... -- 19:14:57.943 DEBUG [11652]: Closing database connection -- 19:14:57.943 SQL [11652]: pgsql_close() -- 19:15:18.924 INFO [11635]: COREGRADE is starting... -- 19:15:18.924 INFO [11635]: Version from config: 1.0 -- 19:15:18.924 DEBUG [11635]: Connecting to database... -- 19:15:18.924 DEBUG [11635]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:15:18.924 SQL [11635]: pgsql_db_connect() -- 19:15:18.928 DEBUG [11635]: Database connection successful -- 19:15:18.928 INFO [11635]: _SERVER found -- 19:15:18.928 INFO [11635]: REMOTE_ADDR = 192.168.1.13 -- 19:15:18.928 INFO [11635]: SERVER_NAME = oameye.works.coregrade.com -- 19:15:18.928 INFO [11635]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ljg33o22l6fl16b4evjinlajm4l4ej0p -- 19:15:18.928 INFO [11635]: QUERY_STRING = /member/page -- 19:15:18.928 INFO [11635]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:15:18.959 INFO [11635]: COREGRADE is stopping... -- 19:15:18.959 DEBUG [11635]: Closing database connection -- 19:15:18.959 SQL [11635]: pgsql_close() -- 19:15:46.047 INFO [11644]: COREGRADE is starting... -- 19:15:46.047 INFO [11644]: Version from config: 1.0 -- 19:15:46.047 DEBUG [11644]: Connecting to database... -- 19:15:46.047 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:15:46.047 SQL [11644]: pgsql_db_connect() -- 19:15:46.051 DEBUG [11644]: Database connection successful -- 19:15:46.051 INFO [11644]: _SERVER found -- 19:15:46.051 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 19:15:46.051 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 19:15:46.051 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ljg33o22l6fl16b4evjinlajm4l4ej0p -- 19:15:46.051 INFO [11644]: QUERY_STRING = /member/page -- 19:15:46.051 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:15:46.089 INFO [11644]: COREGRADE is stopping... -- 19:15:46.089 DEBUG [11644]: Closing database connection -- 19:15:46.089 SQL [11644]: pgsql_close() -- 19:15:46.212 INFO [11644]: COREGRADE is starting... -- 19:15:46.212 INFO [11644]: Version from config: 1.0 -- 19:15:46.212 DEBUG [11644]: Connecting to database... -- 19:15:46.212 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:15:46.212 SQL [11644]: pgsql_db_connect() -- 19:15:46.216 DEBUG [11644]: Database connection successful -- 19:15:46.216 INFO [11644]: _SERVER found -- 19:15:46.216 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 19:15:46.216 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 19:15:46.216 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ljg33o22l6fl16b4evjinlajm4l4ej0p -- 19:15:46.216 INFO [11644]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:15:46.216 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:15:46.227 INFO [11644]: COREGRADE is stopping... -- 19:15:46.227 DEBUG [11644]: Closing database connection -- 19:15:46.227 SQL [11644]: pgsql_close() -- 19:15:46.406 INFO [11644]: COREGRADE is starting... -- 19:15:46.406 INFO [11644]: Version from config: 1.0 -- 19:15:46.406 DEBUG [11644]: Connecting to database... -- 19:15:46.406 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:15:46.406 SQL [11644]: pgsql_db_connect() -- 19:15:46.410 DEBUG [11644]: Database connection successful -- 19:15:46.410 INFO [11644]: _SERVER found -- 19:15:46.410 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 19:15:46.410 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 19:15:46.410 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ljg33o22l6fl16b4evjinlajm4l4ej0p -- 19:15:46.410 INFO [11644]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:15:46.410 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:15:46.421 INFO [11644]: COREGRADE is stopping... -- 19:15:46.421 DEBUG [11644]: Closing database connection -- 19:15:46.421 SQL [11644]: pgsql_close() -- 19:16:21.773 INFO [11637]: COREGRADE is starting... -- 19:16:21.774 INFO [11637]: Version from config: 1.0 -- 19:16:21.774 DEBUG [11637]: Connecting to database... -- 19:16:21.774 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:16:21.774 SQL [11637]: pgsql_db_connect() -- 19:16:21.778 DEBUG [11637]: Database connection successful -- 19:16:21.778 INFO [11637]: _SERVER found -- 19:16:21.778 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 19:16:21.778 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 19:16:21.778 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ljg33o22l6fl16b4evjinlajm4l4ej0p -- 19:16:21.778 INFO [11637]: QUERY_STRING = /member/page -- 19:16:21.778 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:16:21.814 INFO [11637]: COREGRADE is stopping... -- 19:16:21.814 DEBUG [11637]: Closing database connection -- 19:16:21.814 SQL [11637]: pgsql_close() -- 19:16:22.191 INFO [11637]: COREGRADE is starting... -- 19:16:22.192 INFO [11637]: Version from config: 1.0 -- 19:16:22.192 DEBUG [11637]: Connecting to database... -- 19:16:22.192 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:16:22.192 SQL [11637]: pgsql_db_connect() -- 19:16:22.196 DEBUG [11637]: Database connection successful -- 19:16:22.196 INFO [11637]: _SERVER found -- 19:16:22.196 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 19:16:22.196 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 19:16:22.196 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ljg33o22l6fl16b4evjinlajm4l4ej0p -- 19:16:22.196 INFO [11637]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:16:22.196 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:16:22.207 INFO [11637]: COREGRADE is stopping... -- 19:16:22.207 DEBUG [11637]: Closing database connection -- 19:16:22.207 SQL [11637]: pgsql_close() -- 19:17:25.131 INFO [11636]: COREGRADE is starting... -- 19:17:25.131 INFO [11636]: Version from config: 1.0 -- 19:17:25.131 DEBUG [11636]: Connecting to database... -- 19:17:25.132 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:17:25.132 SQL [11636]: pgsql_db_connect() -- 19:17:25.136 DEBUG [11636]: Database connection successful -- 19:17:25.136 INFO [11636]: _SERVER found -- 19:17:25.136 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 19:17:25.136 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 19:17:25.136 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ljg33o22l6fl16b4evjinlajm4l4ej0p -- 19:17:25.136 INFO [11636]: QUERY_STRING = /member/page -- 19:17:25.136 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:17:25.173 INFO [11636]: COREGRADE is stopping... -- 19:17:25.173 DEBUG [11636]: Closing database connection -- 19:17:25.173 SQL [11636]: pgsql_close() -- 19:17:25.306 INFO [11636]: COREGRADE is starting... -- 19:17:25.307 INFO [11636]: Version from config: 1.0 -- 19:17:25.307 DEBUG [11636]: Connecting to database... -- 19:17:25.307 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:17:25.307 SQL [11636]: pgsql_db_connect() -- 19:17:25.311 DEBUG [11636]: Database connection successful -- 19:17:25.311 INFO [11636]: _SERVER found -- 19:17:25.311 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 19:17:25.311 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 19:17:25.311 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ljg33o22l6fl16b4evjinlajm4l4ej0p -- 19:17:25.311 INFO [11636]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:17:25.311 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:17:25.322 INFO [11636]: COREGRADE is stopping... -- 19:17:25.322 DEBUG [11636]: Closing database connection -- 19:17:25.322 SQL [11636]: pgsql_close() -- 19:17:25.469 INFO [11636]: COREGRADE is starting... -- 19:17:25.469 INFO [11636]: Version from config: 1.0 -- 19:17:25.469 DEBUG [11636]: Connecting to database... -- 19:17:25.469 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:17:25.469 SQL [11636]: pgsql_db_connect() -- 19:17:25.473 DEBUG [11636]: Database connection successful -- 19:17:25.473 INFO [11636]: _SERVER found -- 19:17:25.473 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 19:17:25.473 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 19:17:25.473 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ljg33o22l6fl16b4evjinlajm4l4ej0p -- 19:17:25.473 INFO [11636]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:17:25.473 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:17:25.484 INFO [11636]: COREGRADE is stopping... -- 19:17:25.484 DEBUG [11636]: Closing database connection -- 19:17:25.484 SQL [11636]: pgsql_close() -- 19:17:30.979 INFO [11639]: COREGRADE is starting... -- 19:17:30.979 INFO [11639]: Version from config: 1.0 -- 19:17:30.979 DEBUG [11639]: Connecting to database... -- 19:17:30.979 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:17:30.979 SQL [11639]: pgsql_db_connect() -- 19:17:30.983 DEBUG [11639]: Database connection successful -- 19:17:30.983 INFO [11639]: _SERVER found -- 19:17:30.983 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 19:17:30.983 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 19:17:30.983 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ljg33o22l6fl16b4evjinlajm4l4ej0p -- 19:17:30.983 INFO [11639]: QUERY_STRING = /member -- 19:17:30.983 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:17:31.022 INFO [11639]: COREGRADE is stopping... -- 19:17:31.022 DEBUG [11639]: Closing database connection -- 19:17:31.022 SQL [11639]: pgsql_close() -- 19:17:31.307 INFO [11639]: COREGRADE is starting... -- 19:17:31.307 INFO [11639]: Version from config: 1.0 -- 19:17:31.307 DEBUG [11639]: Connecting to database... -- 19:17:31.307 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:17:31.307 SQL [11639]: pgsql_db_connect() -- 19:17:31.311 DEBUG [11639]: Database connection successful -- 19:17:31.311 INFO [11639]: _SERVER found -- 19:17:31.311 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 19:17:31.311 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 19:17:31.311 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ljg33o22l6fl16b4evjinlajm4l4ej0p -- 19:17:31.311 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:17:31.311 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:17:31.323 INFO [11639]: COREGRADE is stopping... -- 19:17:31.323 DEBUG [11639]: Closing database connection -- 19:17:31.323 SQL [11639]: pgsql_close() -- 19:17:32.392 INFO [11639]: COREGRADE is starting... -- 19:17:32.392 INFO [11639]: Version from config: 1.0 -- 19:17:32.392 DEBUG [11639]: Connecting to database... -- 19:17:32.392 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:17:32.392 SQL [11639]: pgsql_db_connect() -- 19:17:32.396 DEBUG [11639]: Database connection successful -- 19:17:32.396 INFO [11639]: _SERVER found -- 19:17:32.396 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 19:17:32.396 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 19:17:32.396 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ljg33o22l6fl16b4evjinlajm4l4ej0p -- 19:17:32.396 INFO [11639]: QUERY_STRING = /member/page -- 19:17:32.396 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:17:32.436 INFO [11639]: COREGRADE is stopping... -- 19:17:32.436 DEBUG [11639]: Closing database connection -- 19:17:32.436 SQL [11639]: pgsql_close() -- 19:17:32.815 INFO [11639]: COREGRADE is starting... -- 19:17:32.816 INFO [11639]: Version from config: 1.0 -- 19:17:32.816 DEBUG [11639]: Connecting to database... -- 19:17:32.816 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:17:32.816 SQL [11639]: pgsql_db_connect() -- 19:17:32.820 DEBUG [11639]: Database connection successful -- 19:17:32.820 INFO [11639]: _SERVER found -- 19:17:32.820 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 19:17:32.820 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 19:17:32.820 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ljg33o22l6fl16b4evjinlajm4l4ej0p -- 19:17:32.820 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:17:32.820 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:17:32.832 INFO [11639]: COREGRADE is stopping... -- 19:17:32.832 DEBUG [11639]: Closing database connection -- 19:17:32.832 SQL [11639]: pgsql_close() -- 19:18:04.345 INFO [11638]: COREGRADE is starting... -- 19:18:04.345 INFO [11638]: Version from config: 1.0 -- 19:18:04.345 DEBUG [11638]: Connecting to database... -- 19:18:04.345 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:18:04.345 SQL [11638]: pgsql_db_connect() -- 19:18:04.349 DEBUG [11638]: Database connection successful -- 19:18:04.349 INFO [11638]: _SERVER found -- 19:18:04.349 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 19:18:04.349 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 19:18:04.349 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ljg33o22l6fl16b4evjinlajm4l4ej0p -- 19:18:04.349 INFO [11638]: QUERY_STRING = /member -- 19:18:04.349 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:18:04.384 INFO [11638]: COREGRADE is stopping... -- 19:18:04.384 DEBUG [11638]: Closing database connection -- 19:18:04.384 SQL [11638]: pgsql_close() -- 19:18:04.759 INFO [11638]: COREGRADE is starting... -- 19:18:04.759 INFO [11638]: Version from config: 1.0 -- 19:18:04.759 DEBUG [11638]: Connecting to database... -- 19:18:04.759 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:18:04.759 SQL [11638]: pgsql_db_connect() -- 19:18:04.763 DEBUG [11638]: Database connection successful -- 19:18:04.763 INFO [11638]: _SERVER found -- 19:18:04.763 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 19:18:04.763 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 19:18:04.763 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=q1sl9ddi0l4ej2sore2d5duj8jesim68 -- 19:18:04.763 INFO [11638]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:18:04.763 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:18:04.774 INFO [11638]: COREGRADE is stopping... -- 19:18:04.774 DEBUG [11638]: Closing database connection -- 19:18:04.774 SQL [11638]: pgsql_close() -- 19:18:05.817 INFO [11638]: COREGRADE is starting... -- 19:18:05.817 INFO [11638]: Version from config: 1.0 -- 19:18:05.817 DEBUG [11638]: Connecting to database... -- 19:18:05.817 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:18:05.817 SQL [11638]: pgsql_db_connect() -- 19:18:05.821 DEBUG [11638]: Database connection successful -- 19:18:05.821 INFO [11638]: _SERVER found -- 19:18:05.821 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 19:18:05.821 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 19:18:05.821 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=q1sl9ddi0l4ej2sore2d5duj8jesim68 -- 19:18:05.821 INFO [11638]: QUERY_STRING = /member/page -- 19:18:05.821 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:18:05.856 INFO [11638]: COREGRADE is stopping... -- 19:18:05.856 DEBUG [11638]: Closing database connection -- 19:18:05.856 SQL [11638]: pgsql_close() -- 19:18:06.287 INFO [11638]: COREGRADE is starting... -- 19:18:06.287 INFO [11638]: Version from config: 1.0 -- 19:18:06.287 DEBUG [11638]: Connecting to database... -- 19:18:06.287 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:18:06.287 SQL [11638]: pgsql_db_connect() -- 19:18:06.291 DEBUG [11638]: Database connection successful -- 19:18:06.291 INFO [11638]: _SERVER found -- 19:18:06.291 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 19:18:06.291 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 19:18:06.291 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=q1sl9ddi0l4ej2sore2d5duj8jesim68 -- 19:18:06.291 INFO [11638]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:18:06.291 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:18:06.302 INFO [11638]: COREGRADE is stopping... -- 19:18:06.303 DEBUG [11638]: Closing database connection -- 19:18:06.303 SQL [11638]: pgsql_close() -- 19:20:11.183 INFO [11650]: COREGRADE is starting... -- 19:20:11.184 INFO [11650]: Version from config: 1.0 -- 19:20:11.184 DEBUG [11650]: Connecting to database... -- 19:20:11.184 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:11.184 SQL [11650]: pgsql_db_connect() -- 19:20:11.189 DEBUG [11650]: Database connection successful -- 19:20:11.189 INFO [11650]: _SERVER found -- 19:20:11.189 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 19:20:11.189 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:11.189 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=q1sl9ddi0l4ej2sore2d5duj8jesim68 -- 19:20:11.189 INFO [11650]: QUERY_STRING = /member/page -- 19:20:11.189 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:11.228 INFO [11650]: COREGRADE is stopping... -- 19:20:11.228 DEBUG [11650]: Closing database connection -- 19:20:11.228 SQL [11650]: pgsql_close() -- 19:20:11.464 INFO [11650]: COREGRADE is starting... -- 19:20:11.465 INFO [11650]: Version from config: 1.0 -- 19:20:11.465 DEBUG [11650]: Connecting to database... -- 19:20:11.465 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:11.465 SQL [11650]: pgsql_db_connect() -- 19:20:11.469 DEBUG [11650]: Database connection successful -- 19:20:11.469 INFO [11650]: _SERVER found -- 19:20:11.469 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 19:20:11.469 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:11.469 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=q1sl9ddi0l4ej2sore2d5duj8jesim68 -- 19:20:11.469 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:20:11.469 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:11.480 INFO [11650]: COREGRADE is stopping... -- 19:20:11.480 DEBUG [11650]: Closing database connection -- 19:20:11.480 SQL [11650]: pgsql_close() -- 19:20:13.119 INFO [11650]: COREGRADE is starting... -- 19:20:13.120 INFO [11650]: Version from config: 1.0 -- 19:20:13.120 DEBUG [11650]: Connecting to database... -- 19:20:13.120 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:13.120 SQL [11650]: pgsql_db_connect() -- 19:20:13.124 DEBUG [11650]: Database connection successful -- 19:20:13.124 INFO [11650]: _SERVER found -- 19:20:13.124 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 19:20:13.124 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:13.124 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=q1sl9ddi0l4ej2sore2d5duj8jesim68 -- 19:20:13.124 INFO [11650]: QUERY_STRING = /member -- 19:20:13.124 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:13.161 INFO [11650]: COREGRADE is stopping... -- 19:20:13.161 DEBUG [11650]: Closing database connection -- 19:20:13.161 SQL [11650]: pgsql_close() -- 19:20:13.345 INFO [11650]: COREGRADE is starting... -- 19:20:13.346 INFO [11650]: Version from config: 1.0 -- 19:20:13.346 DEBUG [11650]: Connecting to database... -- 19:20:13.346 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:13.346 SQL [11650]: pgsql_db_connect() -- 19:20:13.350 DEBUG [11650]: Database connection successful -- 19:20:13.350 INFO [11650]: _SERVER found -- 19:20:13.350 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 19:20:13.350 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:13.350 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=q1sl9ddi0l4ej2sore2d5duj8jesim68 -- 19:20:13.350 INFO [11650]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:20:13.350 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:13.361 INFO [11650]: COREGRADE is stopping... -- 19:20:13.361 DEBUG [11650]: Closing database connection -- 19:20:13.361 SQL [11650]: pgsql_close() -- 19:20:13.372 INFO [11651]: COREGRADE is starting... -- 19:20:13.372 INFO [11651]: Version from config: 1.0 -- 19:20:13.372 DEBUG [11651]: Connecting to database... -- 19:20:13.372 DEBUG [11651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:13.372 SQL [11651]: pgsql_db_connect() -- 19:20:13.376 DEBUG [11651]: Database connection successful -- 19:20:13.376 INFO [11651]: _SERVER found -- 19:20:13.376 INFO [11651]: REMOTE_ADDR = 192.168.1.13 -- 19:20:13.376 INFO [11651]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:13.376 INFO [11651]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=q1sl9ddi0l4ej2sore2d5duj8jesim68 -- 19:20:13.376 INFO [11651]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:20:13.376 INFO [11651]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:13.388 INFO [11651]: COREGRADE is stopping... -- 19:20:13.388 DEBUG [11651]: Closing database connection -- 19:20:13.388 SQL [11651]: pgsql_close() -- 19:20:15.617 INFO [11651]: COREGRADE is starting... -- 19:20:15.617 INFO [11651]: Version from config: 1.0 -- 19:20:15.617 DEBUG [11651]: Connecting to database... -- 19:20:15.617 DEBUG [11651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:15.617 SQL [11651]: pgsql_db_connect() -- 19:20:15.621 DEBUG [11651]: Database connection successful -- 19:20:15.621 INFO [11651]: _SERVER found -- 19:20:15.621 INFO [11651]: REMOTE_ADDR = 192.168.1.13 -- 19:20:15.621 INFO [11651]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:15.621 INFO [11651]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=q1sl9ddi0l4ej2sore2d5duj8jesim68 -- 19:20:15.621 INFO [11651]: QUERY_STRING = /member -- 19:20:15.621 INFO [11651]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:15.659 INFO [11651]: COREGRADE is stopping... -- 19:20:15.659 DEBUG [11651]: Closing database connection -- 19:20:15.659 SQL [11651]: pgsql_close() -- 19:20:15.929 INFO [11651]: COREGRADE is starting... -- 19:20:15.930 INFO [11651]: Version from config: 1.0 -- 19:20:15.930 DEBUG [11651]: Connecting to database... -- 19:20:15.930 DEBUG [11651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:15.930 SQL [11651]: pgsql_db_connect() -- 19:20:15.934 DEBUG [11651]: Database connection successful -- 19:20:15.934 INFO [11651]: _SERVER found -- 19:20:15.934 INFO [11651]: REMOTE_ADDR = 192.168.1.13 -- 19:20:15.934 INFO [11651]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:15.934 INFO [11651]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=q1sl9ddi0l4ej2sore2d5duj8jesim68 -- 19:20:15.934 INFO [11651]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:20:15.934 INFO [11651]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:15.946 INFO [11651]: COREGRADE is stopping... -- 19:20:15.946 DEBUG [11651]: Closing database connection -- 19:20:15.946 SQL [11651]: pgsql_close() -- 19:20:21.740 INFO [11652]: COREGRADE is starting... -- 19:20:21.740 INFO [11652]: Version from config: 1.0 -- 19:20:21.740 DEBUG [11652]: Connecting to database... -- 19:20:21.740 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:21.740 SQL [11652]: pgsql_db_connect() -- 19:20:21.744 DEBUG [11652]: Database connection successful -- 19:20:21.744 INFO [11652]: _SERVER found -- 19:20:21.744 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 19:20:21.744 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:21.744 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=6ded01auhi5m440aerdubfs4iq4j4bsm -- 19:20:21.744 INFO [11652]: QUERY_STRING = /member/page -- 19:20:21.744 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:21.781 INFO [11652]: COREGRADE is stopping... -- 19:20:21.781 DEBUG [11652]: Closing database connection -- 19:20:21.781 SQL [11652]: pgsql_close() -- 19:20:22.130 INFO [11652]: COREGRADE is starting... -- 19:20:22.130 INFO [11652]: Version from config: 1.0 -- 19:20:22.130 DEBUG [11652]: Connecting to database... -- 19:20:22.130 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:22.130 SQL [11652]: pgsql_db_connect() -- 19:20:22.134 DEBUG [11652]: Database connection successful -- 19:20:22.134 INFO [11652]: _SERVER found -- 19:20:22.134 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 19:20:22.134 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:22.134 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:20:22.134 INFO [11652]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:20:22.134 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:22.145 INFO [11652]: COREGRADE is stopping... -- 19:20:22.146 DEBUG [11652]: Closing database connection -- 19:20:22.146 SQL [11652]: pgsql_close() -- 19:20:22.151 INFO [11635]: COREGRADE is starting... -- 19:20:22.151 INFO [11635]: Version from config: 1.0 -- 19:20:22.151 DEBUG [11635]: Connecting to database... -- 19:20:22.151 DEBUG [11635]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:22.151 SQL [11635]: pgsql_db_connect() -- 19:20:22.155 DEBUG [11635]: Database connection successful -- 19:20:22.155 INFO [11635]: _SERVER found -- 19:20:22.155 INFO [11635]: REMOTE_ADDR = 192.168.1.13 -- 19:20:22.155 INFO [11635]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:22.155 INFO [11635]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:20:22.155 INFO [11635]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:20:22.155 INFO [11635]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:22.166 INFO [11635]: COREGRADE is stopping... -- 19:20:22.166 DEBUG [11635]: Closing database connection -- 19:20:22.166 SQL [11635]: pgsql_close() -- 19:20:27.511 INFO [11644]: COREGRADE is starting... -- 19:20:27.511 INFO [11644]: Version from config: 1.0 -- 19:20:27.511 DEBUG [11644]: Connecting to database... -- 19:20:27.511 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:27.511 SQL [11644]: pgsql_db_connect() -- 19:20:27.515 DEBUG [11644]: Database connection successful -- 19:20:27.515 INFO [11644]: _SERVER found -- 19:20:27.515 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 19:20:27.515 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:27.515 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:20:27.515 INFO [11644]: QUERY_STRING = /member/page -- 19:20:27.515 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:27.551 INFO [11644]: COREGRADE is stopping... -- 19:20:27.551 DEBUG [11644]: Closing database connection -- 19:20:27.551 SQL [11644]: pgsql_close() -- 19:20:27.787 INFO [11644]: COREGRADE is starting... -- 19:20:27.788 INFO [11644]: Version from config: 1.0 -- 19:20:27.788 DEBUG [11644]: Connecting to database... -- 19:20:27.788 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:27.788 SQL [11644]: pgsql_db_connect() -- 19:20:27.792 DEBUG [11644]: Database connection successful -- 19:20:27.792 INFO [11644]: _SERVER found -- 19:20:27.792 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 19:20:27.792 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:27.792 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:20:27.792 INFO [11644]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:20:27.792 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:27.803 INFO [11644]: COREGRADE is stopping... -- 19:20:27.803 DEBUG [11644]: Closing database connection -- 19:20:27.803 SQL [11644]: pgsql_close() -- 19:20:27.805 INFO [11637]: COREGRADE is starting... -- 19:20:27.806 INFO [11637]: Version from config: 1.0 -- 19:20:27.806 DEBUG [11637]: Connecting to database... -- 19:20:27.806 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:27.806 SQL [11637]: pgsql_db_connect() -- 19:20:27.810 DEBUG [11637]: Database connection successful -- 19:20:27.810 INFO [11637]: _SERVER found -- 19:20:27.810 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 19:20:27.810 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:27.810 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:20:27.810 INFO [11637]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:20:27.810 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:27.821 INFO [11637]: COREGRADE is stopping... -- 19:20:27.821 DEBUG [11637]: Closing database connection -- 19:20:27.821 SQL [11637]: pgsql_close() -- 19:20:33.414 INFO [11636]: COREGRADE is starting... -- 19:20:33.414 INFO [11636]: Version from config: 1.0 -- 19:20:33.414 DEBUG [11636]: Connecting to database... -- 19:20:33.414 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:33.414 SQL [11636]: pgsql_db_connect() -- 19:20:33.419 DEBUG [11636]: Database connection successful -- 19:20:33.419 INFO [11636]: _SERVER found -- 19:20:33.419 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 19:20:33.419 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:33.419 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:20:33.419 INFO [11636]: QUERY_STRING = /member -- 19:20:33.419 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:33.454 INFO [11636]: COREGRADE is stopping... -- 19:20:33.454 DEBUG [11636]: Closing database connection -- 19:20:33.454 SQL [11636]: pgsql_close() -- 19:20:33.659 INFO [11636]: COREGRADE is starting... -- 19:20:33.660 INFO [11636]: Version from config: 1.0 -- 19:20:33.660 DEBUG [11636]: Connecting to database... -- 19:20:33.660 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:33.660 SQL [11636]: pgsql_db_connect() -- 19:20:33.664 DEBUG [11636]: Database connection successful -- 19:20:33.664 INFO [11636]: _SERVER found -- 19:20:33.664 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 19:20:33.664 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:33.664 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:20:33.664 INFO [11636]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:20:33.664 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:33.675 INFO [11636]: COREGRADE is stopping... -- 19:20:33.675 DEBUG [11636]: Closing database connection -- 19:20:33.675 SQL [11636]: pgsql_close() -- 19:20:33.679 INFO [11639]: COREGRADE is starting... -- 19:20:33.679 INFO [11639]: Version from config: 1.0 -- 19:20:33.679 DEBUG [11639]: Connecting to database... -- 19:20:33.679 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:33.679 SQL [11639]: pgsql_db_connect() -- 19:20:33.683 DEBUG [11639]: Database connection successful -- 19:20:33.683 INFO [11639]: _SERVER found -- 19:20:33.683 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 19:20:33.683 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:33.683 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:20:33.683 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:20:33.683 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:33.696 INFO [11639]: COREGRADE is stopping... -- 19:20:33.696 DEBUG [11639]: Closing database connection -- 19:20:33.696 SQL [11639]: pgsql_close() -- 19:20:33.820 INFO [11639]: COREGRADE is starting... -- 19:20:33.820 INFO [11639]: Version from config: 1.0 -- 19:20:33.820 DEBUG [11639]: Connecting to database... -- 19:20:33.820 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:33.820 SQL [11639]: pgsql_db_connect() -- 19:20:33.824 DEBUG [11639]: Database connection successful -- 19:20:33.824 INFO [11639]: _SERVER found -- 19:20:33.824 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 19:20:33.824 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:33.824 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:20:33.824 INFO [11639]: QUERY_STRING = /member/configure -- 19:20:33.824 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:33.863 INFO [11639]: COREGRADE is stopping... -- 19:20:33.864 DEBUG [11639]: Closing database connection -- 19:20:33.864 SQL [11639]: pgsql_close() -- 19:20:34.116 INFO [11639]: COREGRADE is starting... -- 19:20:34.116 INFO [11639]: Version from config: 1.0 -- 19:20:34.116 DEBUG [11639]: Connecting to database... -- 19:20:34.116 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:34.116 SQL [11639]: pgsql_db_connect() -- 19:20:34.131 INFO [11636]: COREGRADE is starting... -- 19:20:34.131 INFO [11636]: Version from config: 1.0 -- 19:20:34.131 DEBUG [11636]: Connecting to database... -- 19:20:34.131 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:34.131 SQL [11636]: pgsql_db_connect() -- 19:20:34.120 DEBUG [11639]: Database connection successful -- 19:20:34.120 INFO [11639]: _SERVER found -- 19:20:34.120 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 19:20:34.120 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:34.120 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:20:34.120 INFO [11639]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:20:34.120 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:34.132 INFO [11639]: COREGRADE is stopping... -- 19:20:34.132 DEBUG [11639]: Closing database connection -- 19:20:34.132 SQL [11639]: pgsql_close() -- 19:20:34.135 DEBUG [11636]: Database connection successful -- 19:20:34.135 INFO [11636]: _SERVER found -- 19:20:34.135 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 19:20:34.135 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:34.135 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:20:34.135 INFO [11636]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:20:34.135 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:34.146 INFO [11636]: COREGRADE is stopping... -- 19:20:34.146 DEBUG [11636]: Closing database connection -- 19:20:34.146 SQL [11636]: pgsql_close() -- 19:20:37.090 INFO [11636]: COREGRADE is starting... -- 19:20:37.091 INFO [11636]: Version from config: 1.0 -- 19:20:37.091 DEBUG [11636]: Connecting to database... -- 19:20:37.091 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:37.091 SQL [11636]: pgsql_db_connect() -- 19:20:37.095 DEBUG [11636]: Database connection successful -- 19:20:37.095 INFO [11636]: _SERVER found -- 19:20:37.095 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 19:20:37.095 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:37.095 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:20:37.095 INFO [11636]: QUERY_STRING = /member/configure -- 19:20:37.095 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:37.130 INFO [11636]: COREGRADE is stopping... -- 19:20:37.130 DEBUG [11636]: Closing database connection -- 19:20:37.130 SQL [11636]: pgsql_close() -- 19:20:37.358 INFO [11636]: COREGRADE is starting... -- 19:20:37.358 INFO [11636]: Version from config: 1.0 -- 19:20:37.358 DEBUG [11636]: Connecting to database... -- 19:20:37.358 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:37.358 SQL [11636]: pgsql_db_connect() -- 19:20:37.372 INFO [11639]: COREGRADE is starting... -- 19:20:37.373 INFO [11639]: Version from config: 1.0 -- 19:20:37.373 DEBUG [11639]: Connecting to database... -- 19:20:37.373 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:37.373 SQL [11639]: pgsql_db_connect() -- 19:20:37.362 DEBUG [11636]: Database connection successful -- 19:20:37.362 INFO [11636]: _SERVER found -- 19:20:37.362 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 19:20:37.362 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:37.362 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:20:37.362 INFO [11636]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:20:37.362 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:37.373 INFO [11636]: COREGRADE is stopping... -- 19:20:37.373 DEBUG [11636]: Closing database connection -- 19:20:37.374 SQL [11636]: pgsql_close() -- 19:20:37.377 DEBUG [11639]: Database connection successful -- 19:20:37.377 INFO [11639]: _SERVER found -- 19:20:37.377 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 19:20:37.377 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:37.377 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:20:37.377 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:20:37.377 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:37.389 INFO [11639]: COREGRADE is stopping... -- 19:20:37.389 DEBUG [11639]: Closing database connection -- 19:20:37.389 SQL [11639]: pgsql_close() -- 19:20:39.423 INFO [11639]: COREGRADE is starting... -- 19:20:39.423 INFO [11639]: Version from config: 1.0 -- 19:20:39.423 DEBUG [11639]: Connecting to database... -- 19:20:39.423 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:39.423 SQL [11639]: pgsql_db_connect() -- 19:20:39.428 DEBUG [11639]: Database connection successful -- 19:20:39.428 INFO [11639]: _SERVER found -- 19:20:39.428 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 19:20:39.428 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:39.428 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:20:39.428 INFO [11639]: QUERY_STRING = /member -- 19:20:39.428 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:39.466 INFO [11639]: COREGRADE is stopping... -- 19:20:39.466 DEBUG [11639]: Closing database connection -- 19:20:39.466 SQL [11639]: pgsql_close() -- 19:20:39.668 INFO [11639]: COREGRADE is starting... -- 19:20:39.668 INFO [11639]: Version from config: 1.0 -- 19:20:39.668 DEBUG [11639]: Connecting to database... -- 19:20:39.668 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:39.668 SQL [11639]: pgsql_db_connect() -- 19:20:39.681 INFO [11636]: COREGRADE is starting... -- 19:20:39.682 INFO [11636]: Version from config: 1.0 -- 19:20:39.682 DEBUG [11636]: Connecting to database... -- 19:20:39.682 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:39.682 SQL [11636]: pgsql_db_connect() -- 19:20:39.672 DEBUG [11639]: Database connection successful -- 19:20:39.672 INFO [11639]: _SERVER found -- 19:20:39.672 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 19:20:39.672 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:39.672 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:20:39.672 INFO [11639]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:20:39.672 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:39.685 INFO [11639]: COREGRADE is stopping... -- 19:20:39.685 DEBUG [11639]: Closing database connection -- 19:20:39.685 SQL [11639]: pgsql_close() -- 19:20:39.686 DEBUG [11636]: Database connection successful -- 19:20:39.686 INFO [11636]: _SERVER found -- 19:20:39.686 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 19:20:39.686 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:39.686 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:20:39.686 INFO [11636]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:20:39.686 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:39.697 INFO [11636]: COREGRADE is stopping... -- 19:20:39.697 DEBUG [11636]: Closing database connection -- 19:20:39.697 SQL [11636]: pgsql_close() -- 19:20:40.662 INFO [11636]: COREGRADE is starting... -- 19:20:40.662 INFO [11636]: Version from config: 1.0 -- 19:20:40.662 DEBUG [11636]: Connecting to database... -- 19:20:40.662 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:40.662 SQL [11636]: pgsql_db_connect() -- 19:20:40.666 DEBUG [11636]: Database connection successful -- 19:20:40.666 INFO [11636]: _SERVER found -- 19:20:40.666 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 19:20:40.666 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:40.666 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:20:40.666 INFO [11636]: QUERY_STRING = /member/page -- 19:20:40.666 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:40.701 INFO [11636]: COREGRADE is stopping... -- 19:20:40.702 DEBUG [11636]: Closing database connection -- 19:20:40.702 SQL [11636]: pgsql_close() -- 19:20:40.905 INFO [11636]: COREGRADE is starting... -- 19:20:40.906 INFO [11636]: Version from config: 1.0 -- 19:20:40.906 DEBUG [11636]: Connecting to database... -- 19:20:40.906 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:40.906 SQL [11636]: pgsql_db_connect() -- 19:20:40.915 INFO [11639]: COREGRADE is starting... -- 19:20:40.916 INFO [11639]: Version from config: 1.0 -- 19:20:40.916 DEBUG [11639]: Connecting to database... -- 19:20:40.916 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:40.916 SQL [11639]: pgsql_db_connect() -- 19:20:40.910 DEBUG [11636]: Database connection successful -- 19:20:40.910 INFO [11636]: _SERVER found -- 19:20:40.910 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 19:20:40.910 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:40.910 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:20:40.910 INFO [11636]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:20:40.910 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:40.921 INFO [11636]: COREGRADE is stopping... -- 19:20:40.921 DEBUG [11636]: Closing database connection -- 19:20:40.921 SQL [11636]: pgsql_close() -- 19:20:40.920 DEBUG [11639]: Database connection successful -- 19:20:40.920 INFO [11639]: _SERVER found -- 19:20:40.920 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 19:20:40.920 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:40.920 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:20:40.920 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:20:40.920 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:40.932 INFO [11639]: COREGRADE is stopping... -- 19:20:40.932 DEBUG [11639]: Closing database connection -- 19:20:40.932 SQL [11639]: pgsql_close() -- 19:20:42.081 INFO [11639]: COREGRADE is starting... -- 19:20:42.081 INFO [11639]: Version from config: 1.0 -- 19:20:42.081 DEBUG [11639]: Connecting to database... -- 19:20:42.081 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:42.081 SQL [11639]: pgsql_db_connect() -- 19:20:42.085 DEBUG [11639]: Database connection successful -- 19:20:42.085 INFO [11639]: _SERVER found -- 19:20:42.085 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 19:20:42.085 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:42.085 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:20:42.085 INFO [11639]: QUERY_STRING = /member -- 19:20:42.085 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:42.123 INFO [11639]: COREGRADE is stopping... -- 19:20:42.123 DEBUG [11639]: Closing database connection -- 19:20:42.123 SQL [11639]: pgsql_close() -- 19:20:42.331 INFO [11639]: COREGRADE is starting... -- 19:20:42.331 INFO [11639]: Version from config: 1.0 -- 19:20:42.331 DEBUG [11639]: Connecting to database... -- 19:20:42.331 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:42.331 SQL [11639]: pgsql_db_connect() -- 19:20:42.344 INFO [11636]: COREGRADE is starting... -- 19:20:42.344 INFO [11636]: Version from config: 1.0 -- 19:20:42.344 DEBUG [11636]: Connecting to database... -- 19:20:42.344 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:42.344 SQL [11636]: pgsql_db_connect() -- 19:20:42.335 DEBUG [11639]: Database connection successful -- 19:20:42.335 INFO [11639]: _SERVER found -- 19:20:42.335 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 19:20:42.335 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:42.335 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:20:42.335 INFO [11639]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:20:42.335 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:42.348 INFO [11639]: COREGRADE is stopping... -- 19:20:42.348 DEBUG [11639]: Closing database connection -- 19:20:42.348 SQL [11639]: pgsql_close() -- 19:20:42.348 DEBUG [11636]: Database connection successful -- 19:20:42.348 INFO [11636]: _SERVER found -- 19:20:42.348 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 19:20:42.348 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:42.348 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:20:42.348 INFO [11636]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:20:42.348 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:42.359 INFO [11636]: COREGRADE is stopping... -- 19:20:42.359 DEBUG [11636]: Closing database connection -- 19:20:42.359 SQL [11636]: pgsql_close() -- 19:20:43.057 INFO [11636]: COREGRADE is starting... -- 19:20:43.057 INFO [11636]: Version from config: 1.0 -- 19:20:43.057 DEBUG [11636]: Connecting to database... -- 19:20:43.057 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:43.057 SQL [11636]: pgsql_db_connect() -- 19:20:43.061 DEBUG [11636]: Database connection successful -- 19:20:43.061 INFO [11636]: _SERVER found -- 19:20:43.061 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 19:20:43.061 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:43.061 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:20:43.061 INFO [11636]: QUERY_STRING = /member/page -- 19:20:43.061 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:43.097 INFO [11636]: COREGRADE is stopping... -- 19:20:43.097 DEBUG [11636]: Closing database connection -- 19:20:43.097 SQL [11636]: pgsql_close() -- 19:20:43.317 INFO [11636]: COREGRADE is starting... -- 19:20:43.318 INFO [11636]: Version from config: 1.0 -- 19:20:43.318 DEBUG [11636]: Connecting to database... -- 19:20:43.318 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:43.318 SQL [11636]: pgsql_db_connect() -- 19:20:43.328 INFO [11639]: COREGRADE is starting... -- 19:20:43.328 INFO [11639]: Version from config: 1.0 -- 19:20:43.328 DEBUG [11639]: Connecting to database... -- 19:20:43.328 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:43.328 SQL [11639]: pgsql_db_connect() -- 19:20:43.322 DEBUG [11636]: Database connection successful -- 19:20:43.322 INFO [11636]: _SERVER found -- 19:20:43.322 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 19:20:43.322 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:43.322 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:20:43.322 INFO [11636]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:20:43.322 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:43.333 INFO [11636]: COREGRADE is stopping... -- 19:20:43.333 DEBUG [11636]: Closing database connection -- 19:20:43.333 SQL [11636]: pgsql_close() -- 19:20:43.332 DEBUG [11639]: Database connection successful -- 19:20:43.332 INFO [11639]: _SERVER found -- 19:20:43.332 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 19:20:43.332 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:43.332 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:20:43.332 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:20:43.332 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:43.345 INFO [11639]: COREGRADE is stopping... -- 19:20:43.345 DEBUG [11639]: Closing database connection -- 19:20:43.345 SQL [11639]: pgsql_close() -- 19:21:23.690 INFO [11638]: COREGRADE is starting... -- 19:21:23.691 INFO [11638]: Version from config: 1.0 -- 19:21:23.691 DEBUG [11638]: Connecting to database... -- 19:21:23.691 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:21:23.691 SQL [11638]: pgsql_db_connect() -- 19:21:23.695 DEBUG [11638]: Database connection successful -- 19:21:23.695 INFO [11638]: _SERVER found -- 19:21:23.695 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 19:21:23.695 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 19:21:23.695 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:21:23.695 INFO [11638]: QUERY_STRING = /member -- 19:21:23.695 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:21:23.730 INFO [11638]: COREGRADE is stopping... -- 19:21:23.730 DEBUG [11638]: Closing database connection -- 19:21:23.730 SQL [11638]: pgsql_close() -- 19:21:24.082 INFO [11638]: COREGRADE is starting... -- 19:21:24.083 INFO [11638]: Version from config: 1.0 -- 19:21:24.083 DEBUG [11638]: Connecting to database... -- 19:21:24.083 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:21:24.083 SQL [11638]: pgsql_db_connect() -- 19:21:24.087 DEBUG [11638]: Database connection successful -- 19:21:24.087 INFO [11638]: _SERVER found -- 19:21:24.087 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 19:21:24.087 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 19:21:24.087 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:21:24.087 INFO [11638]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:21:24.087 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:21:24.098 INFO [11638]: COREGRADE is stopping... -- 19:21:24.098 DEBUG [11638]: Closing database connection -- 19:21:24.098 SQL [11638]: pgsql_close() -- 19:21:24.104 INFO [11650]: COREGRADE is starting... -- 19:21:24.105 INFO [11650]: Version from config: 1.0 -- 19:21:24.105 DEBUG [11650]: Connecting to database... -- 19:21:24.105 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:21:24.105 SQL [11650]: pgsql_db_connect() -- 19:21:24.109 DEBUG [11650]: Database connection successful -- 19:21:24.109 INFO [11650]: _SERVER found -- 19:21:24.109 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 19:21:24.109 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 19:21:24.109 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:21:24.109 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:21:24.109 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:21:24.120 INFO [11650]: COREGRADE is stopping... -- 19:21:24.120 DEBUG [11650]: Closing database connection -- 19:21:24.120 SQL [11650]: pgsql_close() -- 19:21:25.421 INFO [11650]: COREGRADE is starting... -- 19:21:25.422 INFO [11650]: Version from config: 1.0 -- 19:21:25.422 DEBUG [11650]: Connecting to database... -- 19:21:25.422 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:21:25.422 SQL [11650]: pgsql_db_connect() -- 19:21:25.426 DEBUG [11650]: Database connection successful -- 19:21:25.426 INFO [11650]: _SERVER found -- 19:21:25.426 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 19:21:25.426 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 19:21:25.426 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:21:25.426 INFO [11650]: QUERY_STRING = /member -- 19:21:25.426 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:21:25.463 INFO [11650]: COREGRADE is stopping... -- 19:21:25.463 DEBUG [11650]: Closing database connection -- 19:21:25.463 SQL [11650]: pgsql_close() -- 19:21:25.663 INFO [11650]: COREGRADE is starting... -- 19:21:25.663 INFO [11650]: Version from config: 1.0 -- 19:21:25.663 DEBUG [11650]: Connecting to database... -- 19:21:25.663 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:21:25.663 SQL [11650]: pgsql_db_connect() -- 19:21:25.675 INFO [11638]: COREGRADE is starting... -- 19:21:25.675 INFO [11638]: Version from config: 1.0 -- 19:21:25.675 DEBUG [11638]: Connecting to database... -- 19:21:25.675 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:21:25.675 SQL [11638]: pgsql_db_connect() -- 19:21:25.667 DEBUG [11650]: Database connection successful -- 19:21:25.667 INFO [11650]: _SERVER found -- 19:21:25.667 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 19:21:25.667 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 19:21:25.667 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:21:25.667 INFO [11650]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:21:25.667 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:21:25.679 INFO [11650]: COREGRADE is stopping... -- 19:21:25.679 DEBUG [11650]: Closing database connection -- 19:21:25.679 SQL [11650]: pgsql_close() -- 19:21:25.679 DEBUG [11638]: Database connection successful -- 19:21:25.679 INFO [11638]: _SERVER found -- 19:21:25.679 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 19:21:25.679 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 19:21:25.679 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:21:25.679 INFO [11638]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:21:25.679 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:21:25.691 INFO [11638]: COREGRADE is stopping... -- 19:21:25.691 DEBUG [11638]: Closing database connection -- 19:21:25.691 SQL [11638]: pgsql_close() -- 19:21:27.401 INFO [11638]: COREGRADE is starting... -- 19:21:27.401 INFO [11638]: Version from config: 1.0 -- 19:21:27.401 DEBUG [11638]: Connecting to database... -- 19:21:27.401 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:21:27.402 SQL [11638]: pgsql_db_connect() -- 19:21:27.406 DEBUG [11638]: Database connection successful -- 19:21:27.406 INFO [11638]: _SERVER found -- 19:21:27.406 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 19:21:27.406 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 19:21:27.406 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:21:27.406 INFO [11638]: QUERY_STRING = /member/page -- 19:21:27.406 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:21:27.441 INFO [11638]: COREGRADE is stopping... -- 19:21:27.441 DEBUG [11638]: Closing database connection -- 19:21:27.441 SQL [11638]: pgsql_close() -- 19:21:27.654 INFO [11638]: COREGRADE is starting... -- 19:21:27.655 INFO [11638]: Version from config: 1.0 -- 19:21:27.655 DEBUG [11638]: Connecting to database... -- 19:21:27.655 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:21:27.655 SQL [11638]: pgsql_db_connect() -- 19:21:27.666 INFO [11650]: COREGRADE is starting... -- 19:21:27.666 INFO [11650]: Version from config: 1.0 -- 19:21:27.666 DEBUG [11650]: Connecting to database... -- 19:21:27.666 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:21:27.666 SQL [11650]: pgsql_db_connect() -- 19:21:27.659 DEBUG [11638]: Database connection successful -- 19:21:27.659 INFO [11638]: _SERVER found -- 19:21:27.659 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 19:21:27.659 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 19:21:27.659 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:21:27.659 INFO [11638]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:21:27.659 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:21:27.670 INFO [11638]: COREGRADE is stopping... -- 19:21:27.670 DEBUG [11638]: Closing database connection -- 19:21:27.670 SQL [11638]: pgsql_close() -- 19:21:27.670 DEBUG [11650]: Database connection successful -- 19:21:27.670 INFO [11650]: _SERVER found -- 19:21:27.670 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 19:21:27.670 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 19:21:27.670 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:21:27.670 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:21:27.670 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:21:27.681 INFO [11650]: COREGRADE is stopping... -- 19:21:27.681 DEBUG [11650]: Closing database connection -- 19:21:27.682 SQL [11650]: pgsql_close() -- 19:21:39.229 INFO [11651]: COREGRADE is starting... -- 19:21:39.229 INFO [11651]: Version from config: 1.0 -- 19:21:39.229 DEBUG [11651]: Connecting to database... -- 19:21:39.229 DEBUG [11651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:21:39.229 SQL [11651]: pgsql_db_connect() -- 19:21:39.233 DEBUG [11651]: Database connection successful -- 19:21:39.233 INFO [11651]: _SERVER found -- 19:21:39.233 INFO [11651]: REMOTE_ADDR = 192.168.1.13 -- 19:21:39.233 INFO [11651]: SERVER_NAME = oameye.works.coregrade.com -- 19:21:39.233 INFO [11651]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:21:39.233 INFO [11651]: QUERY_STRING = /member/configure -- 19:21:39.233 INFO [11651]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:21:39.272 INFO [11651]: COREGRADE is stopping... -- 19:21:39.272 DEBUG [11651]: Closing database connection -- 19:21:39.272 SQL [11651]: pgsql_close() -- 19:21:39.599 INFO [11651]: COREGRADE is starting... -- 19:21:39.599 INFO [11651]: Version from config: 1.0 -- 19:21:39.599 DEBUG [11651]: Connecting to database... -- 19:21:39.599 DEBUG [11651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:21:39.599 SQL [11651]: pgsql_db_connect() -- 19:21:39.603 DEBUG [11651]: Database connection successful -- 19:21:39.603 INFO [11651]: _SERVER found -- 19:21:39.603 INFO [11651]: REMOTE_ADDR = 192.168.1.13 -- 19:21:39.603 INFO [11651]: SERVER_NAME = oameye.works.coregrade.com -- 19:21:39.603 INFO [11651]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:21:39.603 INFO [11651]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:21:39.603 INFO [11651]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:21:39.615 INFO [11651]: COREGRADE is stopping... -- 19:21:39.615 DEBUG [11651]: Closing database connection -- 19:21:39.615 SQL [11651]: pgsql_close() -- 19:21:39.627 INFO [11635]: COREGRADE is starting... -- 19:21:39.627 INFO [11635]: Version from config: 1.0 -- 19:21:39.628 DEBUG [11635]: Connecting to database... -- 19:21:39.628 DEBUG [11635]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:21:39.628 SQL [11635]: pgsql_db_connect() -- 19:21:39.632 DEBUG [11635]: Database connection successful -- 19:21:39.632 INFO [11635]: _SERVER found -- 19:21:39.632 INFO [11635]: REMOTE_ADDR = 192.168.1.13 -- 19:21:39.632 INFO [11635]: SERVER_NAME = oameye.works.coregrade.com -- 19:21:39.632 INFO [11635]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:21:39.632 INFO [11635]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:21:39.632 INFO [11635]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:21:39.643 INFO [11635]: COREGRADE is stopping... -- 19:21:39.643 DEBUG [11635]: Closing database connection -- 19:21:39.643 SQL [11635]: pgsql_close() -- 19:23:29.649 INFO [11652]: COREGRADE is starting... -- 19:23:29.649 INFO [11652]: Version from config: 1.0 -- 19:23:29.649 DEBUG [11652]: Connecting to database... -- 19:23:29.649 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:23:29.649 SQL [11652]: pgsql_db_connect() -- 19:23:29.653 DEBUG [11652]: Database connection successful -- 19:23:29.653 INFO [11652]: _SERVER found -- 19:23:29.653 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 19:23:29.653 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 19:23:29.653 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:23:29.653 INFO [11652]: QUERY_STRING = /member/configure -- 19:23:29.653 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:23:29.689 INFO [11652]: COREGRADE is stopping... -- 19:23:29.689 DEBUG [11652]: Closing database connection -- 19:23:29.689 SQL [11652]: pgsql_close() -- 19:23:30.001 INFO [11652]: COREGRADE is starting... -- 19:23:30.001 INFO [11652]: Version from config: 1.0 -- 19:23:30.001 DEBUG [11652]: Connecting to database... -- 19:23:30.001 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:23:30.001 SQL [11652]: pgsql_db_connect() -- 19:23:30.005 DEBUG [11652]: Database connection successful -- 19:23:30.005 INFO [11652]: _SERVER found -- 19:23:30.005 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 19:23:30.005 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 19:23:30.005 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:23:30.005 INFO [11652]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:23:30.005 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:23:30.017 INFO [11652]: COREGRADE is stopping... -- 19:23:30.017 DEBUG [11652]: Closing database connection -- 19:23:30.017 SQL [11652]: pgsql_close() -- 19:23:30.023 INFO [11637]: COREGRADE is starting... -- 19:23:30.023 INFO [11637]: Version from config: 1.0 -- 19:23:30.023 DEBUG [11637]: Connecting to database... -- 19:23:30.023 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:23:30.023 SQL [11637]: pgsql_db_connect() -- 19:23:30.027 DEBUG [11637]: Database connection successful -- 19:23:30.027 INFO [11637]: _SERVER found -- 19:23:30.027 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 19:23:30.027 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 19:23:30.027 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:23:30.027 INFO [11637]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:23:30.027 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:23:30.039 INFO [11637]: COREGRADE is stopping... -- 19:23:30.039 DEBUG [11637]: Closing database connection -- 19:23:30.039 SQL [11637]: pgsql_close() -- 19:23:31.333 INFO [11637]: COREGRADE is starting... -- 19:23:31.333 INFO [11637]: Version from config: 1.0 -- 19:23:31.333 DEBUG [11637]: Connecting to database... -- 19:23:31.333 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:23:31.333 SQL [11637]: pgsql_db_connect() -- 19:23:31.337 DEBUG [11637]: Database connection successful -- 19:23:31.337 INFO [11637]: _SERVER found -- 19:23:31.337 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 19:23:31.337 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 19:23:31.337 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:23:31.337 INFO [11637]: QUERY_STRING = /member -- 19:23:31.337 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:23:31.373 INFO [11637]: COREGRADE is stopping... -- 19:23:31.373 DEBUG [11637]: Closing database connection -- 19:23:31.373 SQL [11637]: pgsql_close() -- 19:23:31.602 INFO [11637]: COREGRADE is starting... -- 19:23:31.602 INFO [11637]: Version from config: 1.0 -- 19:23:31.602 DEBUG [11637]: Connecting to database... -- 19:23:31.603 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:23:31.603 SQL [11637]: pgsql_db_connect() -- 19:23:31.615 INFO [11652]: COREGRADE is starting... -- 19:23:31.616 INFO [11652]: Version from config: 1.0 -- 19:23:31.616 DEBUG [11652]: Connecting to database... -- 19:23:31.616 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:23:31.616 SQL [11652]: pgsql_db_connect() -- 19:23:31.607 DEBUG [11637]: Database connection successful -- 19:23:31.607 INFO [11637]: _SERVER found -- 19:23:31.607 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 19:23:31.607 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 19:23:31.607 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:23:31.607 INFO [11637]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:23:31.607 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:23:31.618 INFO [11637]: COREGRADE is stopping... -- 19:23:31.618 DEBUG [11637]: Closing database connection -- 19:23:31.618 SQL [11637]: pgsql_close() -- 19:23:31.620 DEBUG [11652]: Database connection successful -- 19:23:31.620 INFO [11652]: _SERVER found -- 19:23:31.620 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 19:23:31.620 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 19:23:31.620 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:23:31.620 INFO [11652]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:23:31.620 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:23:31.631 INFO [11652]: COREGRADE is stopping... -- 19:23:31.631 DEBUG [11652]: Closing database connection -- 19:23:31.631 SQL [11652]: pgsql_close() -- 19:23:32.423 INFO [11652]: COREGRADE is starting... -- 19:23:32.423 INFO [11652]: Version from config: 1.0 -- 19:23:32.423 DEBUG [11652]: Connecting to database... -- 19:23:32.423 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:23:32.423 SQL [11652]: pgsql_db_connect() -- 19:23:32.427 DEBUG [11652]: Database connection successful -- 19:23:32.427 INFO [11652]: _SERVER found -- 19:23:32.427 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 19:23:32.427 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 19:23:32.427 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:23:32.427 INFO [11652]: QUERY_STRING = /member/page -- 19:23:32.427 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:23:32.463 INFO [11652]: COREGRADE is stopping... -- 19:23:32.463 DEBUG [11652]: Closing database connection -- 19:23:32.463 SQL [11652]: pgsql_close() -- 19:23:32.691 INFO [11652]: COREGRADE is starting... -- 19:23:32.692 INFO [11652]: Version from config: 1.0 -- 19:23:32.692 DEBUG [11652]: Connecting to database... -- 19:23:32.692 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:23:32.692 SQL [11652]: pgsql_db_connect() -- 19:23:32.700 INFO [11637]: COREGRADE is starting... -- 19:23:32.701 INFO [11637]: Version from config: 1.0 -- 19:23:32.701 DEBUG [11637]: Connecting to database... -- 19:23:32.701 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:23:32.701 SQL [11637]: pgsql_db_connect() -- 19:23:32.696 DEBUG [11652]: Database connection successful -- 19:23:32.696 INFO [11652]: _SERVER found -- 19:23:32.696 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 19:23:32.696 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 19:23:32.696 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:23:32.696 INFO [11652]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:23:32.696 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:23:32.707 INFO [11652]: COREGRADE is stopping... -- 19:23:32.707 DEBUG [11652]: Closing database connection -- 19:23:32.707 SQL [11652]: pgsql_close() -- 19:23:32.705 DEBUG [11637]: Database connection successful -- 19:23:32.705 INFO [11637]: _SERVER found -- 19:23:32.705 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 19:23:32.705 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 19:23:32.705 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:23:32.705 INFO [11637]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:23:32.705 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:23:32.716 INFO [11637]: COREGRADE is stopping... -- 19:23:32.716 DEBUG [11637]: Closing database connection -- 19:23:32.716 SQL [11637]: pgsql_close() -- 19:24:59.922 INFO [11644]: COREGRADE is starting... -- 19:24:59.922 INFO [11644]: Version from config: 1.0 -- 19:24:59.922 DEBUG [11644]: Connecting to database... -- 19:24:59.922 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:24:59.922 SQL [11644]: pgsql_db_connect() -- 19:24:59.926 DEBUG [11644]: Database connection successful -- 19:24:59.926 INFO [11644]: _SERVER found -- 19:24:59.926 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 19:24:59.926 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 19:24:59.926 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:24:59.926 INFO [11644]: QUERY_STRING = /member/configure -- 19:24:59.926 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:24:59.962 INFO [11644]: COREGRADE is stopping... -- 19:24:59.962 DEBUG [11644]: Closing database connection -- 19:24:59.962 SQL [11644]: pgsql_close() -- 19:25:00.292 INFO [11644]: COREGRADE is starting... -- 19:25:00.293 INFO [11644]: Version from config: 1.0 -- 19:25:00.293 DEBUG [11644]: Connecting to database... -- 19:25:00.293 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:25:00.293 SQL [11644]: pgsql_db_connect() -- 19:25:00.297 DEBUG [11644]: Database connection successful -- 19:25:00.297 INFO [11644]: _SERVER found -- 19:25:00.297 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 19:25:00.297 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 19:25:00.297 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:25:00.297 INFO [11644]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:25:00.297 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:25:00.308 INFO [11644]: COREGRADE is stopping... -- 19:25:00.308 DEBUG [11644]: Closing database connection -- 19:25:00.308 SQL [11644]: pgsql_close() -- 19:25:00.315 INFO [11636]: COREGRADE is starting... -- 19:25:00.316 INFO [11636]: Version from config: 1.0 -- 19:25:00.316 DEBUG [11636]: Connecting to database... -- 19:25:00.316 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:25:00.316 SQL [11636]: pgsql_db_connect() -- 19:25:00.320 DEBUG [11636]: Database connection successful -- 19:25:00.320 INFO [11636]: _SERVER found -- 19:25:00.320 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 19:25:00.320 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 19:25:00.320 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:25:00.320 INFO [11636]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:25:00.320 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:25:00.331 INFO [11636]: COREGRADE is stopping... -- 19:25:00.331 DEBUG [11636]: Closing database connection -- 19:25:00.331 SQL [11636]: pgsql_close() -- 19:25:06.447 INFO [11639]: COREGRADE is starting... -- 19:25:06.447 INFO [11639]: Version from config: 1.0 -- 19:25:06.447 DEBUG [11639]: Connecting to database... -- 19:25:06.447 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:25:06.447 SQL [11639]: pgsql_db_connect() -- 19:25:06.451 DEBUG [11639]: Database connection successful -- 19:25:06.451 INFO [11639]: _SERVER found -- 19:25:06.451 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 19:25:06.451 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 19:25:06.451 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:25:06.451 INFO [11639]: QUERY_STRING = /member/configure -- 19:25:06.451 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:25:06.491 INFO [11639]: COREGRADE is stopping... -- 19:25:06.491 DEBUG [11639]: Closing database connection -- 19:25:06.491 SQL [11639]: pgsql_close() -- 19:25:06.724 INFO [11639]: COREGRADE is starting... -- 19:25:06.725 INFO [11639]: Version from config: 1.0 -- 19:25:06.725 DEBUG [11639]: Connecting to database... -- 19:25:06.725 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:25:06.725 SQL [11639]: pgsql_db_connect() -- 19:25:06.729 DEBUG [11639]: Database connection successful -- 19:25:06.729 INFO [11639]: _SERVER found -- 19:25:06.729 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 19:25:06.729 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 19:25:06.729 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:25:06.729 INFO [11639]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:25:06.729 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:25:06.741 INFO [11639]: COREGRADE is stopping... -- 19:25:06.741 DEBUG [11639]: Closing database connection -- 19:25:06.741 SQL [11639]: pgsql_close() -- 19:25:06.746 INFO [11638]: COREGRADE is starting... -- 19:25:06.746 INFO [11638]: Version from config: 1.0 -- 19:25:06.746 DEBUG [11638]: Connecting to database... -- 19:25:06.746 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:25:06.746 SQL [11638]: pgsql_db_connect() -- 19:25:06.750 DEBUG [11638]: Database connection successful -- 19:25:06.750 INFO [11638]: _SERVER found -- 19:25:06.750 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 19:25:06.750 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 19:25:06.750 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:25:06.750 INFO [11638]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:25:06.750 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:25:06.761 INFO [11638]: COREGRADE is stopping... -- 19:25:06.761 DEBUG [11638]: Closing database connection -- 19:25:06.761 SQL [11638]: pgsql_close() -- 19:25:08.839 INFO [11638]: COREGRADE is starting... -- 19:25:08.840 INFO [11638]: Version from config: 1.0 -- 19:25:08.840 DEBUG [11638]: Connecting to database... -- 19:25:08.840 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:25:08.840 SQL [11638]: pgsql_db_connect() -- 19:25:08.844 DEBUG [11638]: Database connection successful -- 19:25:08.844 INFO [11638]: _SERVER found -- 19:25:08.844 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 19:25:08.844 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 19:25:08.844 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:25:08.844 INFO [11638]: QUERY_STRING = /member -- 19:25:08.844 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:25:08.879 INFO [11638]: COREGRADE is stopping... -- 19:25:08.879 DEBUG [11638]: Closing database connection -- 19:25:08.879 SQL [11638]: pgsql_close() -- 19:25:09.094 INFO [11638]: COREGRADE is starting... -- 19:25:09.094 INFO [11638]: Version from config: 1.0 -- 19:25:09.094 DEBUG [11638]: Connecting to database... -- 19:25:09.094 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:25:09.094 SQL [11638]: pgsql_db_connect() -- 19:25:09.107 INFO [11639]: COREGRADE is starting... -- 19:25:09.107 INFO [11639]: Version from config: 1.0 -- 19:25:09.107 DEBUG [11639]: Connecting to database... -- 19:25:09.107 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:25:09.107 SQL [11639]: pgsql_db_connect() -- 19:25:09.099 DEBUG [11638]: Database connection successful -- 19:25:09.099 INFO [11638]: _SERVER found -- 19:25:09.099 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 19:25:09.099 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 19:25:09.099 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:25:09.099 INFO [11638]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:25:09.099 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:25:09.110 INFO [11638]: COREGRADE is stopping... -- 19:25:09.110 DEBUG [11638]: Closing database connection -- 19:25:09.110 SQL [11638]: pgsql_close() -- 19:25:09.112 DEBUG [11639]: Database connection successful -- 19:25:09.112 INFO [11639]: _SERVER found -- 19:25:09.112 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 19:25:09.112 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 19:25:09.112 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:25:09.112 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:25:09.112 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:25:09.124 INFO [11639]: COREGRADE is stopping... -- 19:25:09.124 DEBUG [11639]: Closing database connection -- 19:25:09.124 SQL [11639]: pgsql_close() -- 19:32:01.987 INFO [11650]: COREGRADE is starting... -- 19:32:01.988 INFO [11650]: Version from config: 1.0 -- 19:32:01.988 DEBUG [11650]: Connecting to database... -- 19:32:01.988 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:32:01.988 SQL [11650]: pgsql_db_connect() -- 19:32:01.992 DEBUG [11650]: Database connection successful -- 19:32:01.992 INFO [11650]: _SERVER found -- 19:32:01.992 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 19:32:01.992 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 19:32:01.992 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=q1sl9ddi0l4ej2sore2d5duj8jesim68 -- 19:32:01.992 INFO [11650]: QUERY_STRING = /member -- 19:32:01.992 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:32:02.031 INFO [11650]: COREGRADE is stopping... -- 19:32:02.031 DEBUG [11650]: Closing database connection -- 19:32:02.031 SQL [11650]: pgsql_close() -- 19:32:02.276 INFO [11650]: COREGRADE is starting... -- 19:32:02.276 INFO [11650]: Version from config: 1.0 -- 19:32:02.276 DEBUG [11650]: Connecting to database... -- 19:32:02.276 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:32:02.276 SQL [11650]: pgsql_db_connect() -- 19:32:02.280 DEBUG [11650]: Database connection successful -- 19:32:02.280 INFO [11650]: _SERVER found -- 19:32:02.280 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 19:32:02.280 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 19:32:02.280 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3757108g64l0vfeespn726umd6sv17jo -- 19:32:02.280 INFO [11650]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:32:02.280 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:32:02.292 INFO [11650]: COREGRADE is stopping... -- 19:32:02.292 DEBUG [11650]: Closing database connection -- 19:32:02.292 SQL [11650]: pgsql_close() -- 19:32:02.299 INFO [11651]: COREGRADE is starting... -- 19:32:02.299 INFO [11651]: Version from config: 1.0 -- 19:32:02.299 DEBUG [11651]: Connecting to database... -- 19:32:02.299 DEBUG [11651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:32:02.300 SQL [11651]: pgsql_db_connect() -- 19:32:02.303 DEBUG [11651]: Database connection successful -- 19:32:02.303 INFO [11651]: _SERVER found -- 19:32:02.303 INFO [11651]: REMOTE_ADDR = 192.168.1.13 -- 19:32:02.303 INFO [11651]: SERVER_NAME = oameye.works.coregrade.com -- 19:32:02.303 INFO [11651]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3757108g64l0vfeespn726umd6sv17jo -- 19:32:02.303 INFO [11651]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:32:02.303 INFO [11651]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:32:02.315 INFO [11651]: COREGRADE is stopping... -- 19:32:02.315 DEBUG [11651]: Closing database connection -- 19:32:02.315 SQL [11651]: pgsql_close() -- 19:32:02.471 INFO [11651]: COREGRADE is starting... -- 19:32:02.472 INFO [11651]: Version from config: 1.0 -- 19:32:02.472 DEBUG [11651]: Connecting to database... -- 19:32:02.472 DEBUG [11651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:32:02.472 SQL [11651]: pgsql_db_connect() -- 19:32:02.476 DEBUG [11651]: Database connection successful -- 19:32:02.476 INFO [11651]: _SERVER found -- 19:32:02.476 INFO [11651]: REMOTE_ADDR = 192.168.1.13 -- 19:32:02.476 INFO [11651]: SERVER_NAME = oameye.works.coregrade.com -- 19:32:02.476 INFO [11651]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=uh8sl1d4tqg2l1ot94ntmuekd5o584ga -- 19:32:02.476 INFO [11651]: QUERY_STRING = /member -- 19:32:02.476 INFO [11651]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:32:02.515 INFO [11651]: COREGRADE is stopping... -- 19:32:02.515 DEBUG [11651]: Closing database connection -- 19:32:02.515 SQL [11651]: pgsql_close() -- 19:32:02.866 INFO [11651]: COREGRADE is starting... -- 19:32:02.866 INFO [11651]: Version from config: 1.0 -- 19:32:02.866 DEBUG [11651]: Connecting to database... -- 19:32:02.866 DEBUG [11651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:32:02.866 SQL [11651]: pgsql_db_connect() -- 19:32:02.870 DEBUG [11651]: Database connection successful -- 19:32:02.870 INFO [11651]: _SERVER found -- 19:32:02.870 INFO [11651]: REMOTE_ADDR = 192.168.1.13 -- 19:32:02.870 INFO [11651]: SERVER_NAME = oameye.works.coregrade.com -- 19:32:02.870 INFO [11651]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=qqvsebm1jg0bsr99gpsphq8rkdtouubn -- 19:32:02.870 INFO [11651]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:32:02.870 INFO [11651]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:32:02.881 INFO [11651]: COREGRADE is stopping... -- 19:32:02.882 DEBUG [11651]: Closing database connection -- 19:32:02.882 SQL [11651]: pgsql_close() -- 19:32:02.883 INFO [11650]: COREGRADE is starting... -- 19:32:02.883 INFO [11650]: Version from config: 1.0 -- 19:32:02.883 DEBUG [11650]: Connecting to database... -- 19:32:02.883 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:32:02.883 SQL [11650]: pgsql_db_connect() -- 19:32:02.887 DEBUG [11650]: Database connection successful -- 19:32:02.887 INFO [11650]: _SERVER found -- 19:32:02.887 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 19:32:02.887 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 19:32:02.887 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=qqvsebm1jg0bsr99gpsphq8rkdtouubn -- 19:32:02.887 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:32:02.887 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:32:02.898 INFO [11650]: COREGRADE is stopping... -- 19:32:02.898 DEBUG [11650]: Closing database connection -- 19:32:02.898 SQL [11650]: pgsql_close() -- 19:33:56.578 INFO [11635]: COREGRADE is starting... -- 19:33:56.579 INFO [11635]: Version from config: 1.0 -- 19:33:56.579 DEBUG [11635]: Connecting to database... -- 19:33:56.579 DEBUG [11635]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:33:56.579 SQL [11635]: pgsql_db_connect() -- 19:33:56.584 DEBUG [11635]: Database connection successful -- 19:33:56.584 INFO [11635]: _SERVER found -- 19:33:56.584 INFO [11635]: REMOTE_ADDR = 192.168.1.13 -- 19:33:56.584 INFO [11635]: SERVER_NAME = oameye.works.coregrade.com -- 19:33:56.584 INFO [11635]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=qqvsebm1jg0bsr99gpsphq8rkdtouubn -- 19:33:56.584 INFO [11635]: QUERY_STRING = /member -- 19:33:56.584 INFO [11635]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:33:56.620 INFO [11635]: COREGRADE is stopping... -- 19:33:56.620 DEBUG [11635]: Closing database connection -- 19:33:56.620 SQL [11635]: pgsql_close() -- 19:33:56.988 INFO [11635]: COREGRADE is starting... -- 19:33:56.989 INFO [11635]: Version from config: 1.0 -- 19:33:56.989 DEBUG [11635]: Connecting to database... -- 19:33:56.989 DEBUG [11635]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:33:56.989 SQL [11635]: pgsql_db_connect() -- 19:33:56.993 DEBUG [11635]: Database connection successful -- 19:33:56.993 INFO [11635]: _SERVER found -- 19:33:56.993 INFO [11635]: REMOTE_ADDR = 192.168.1.13 -- 19:33:56.993 INFO [11635]: SERVER_NAME = oameye.works.coregrade.com -- 19:33:56.993 INFO [11635]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=qqvsebm1jg0bsr99gpsphq8rkdtouubn -- 19:33:56.993 INFO [11635]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:33:56.993 INFO [11635]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:33:57.004 INFO [11635]: COREGRADE is stopping... -- 19:33:57.004 DEBUG [11635]: Closing database connection -- 19:33:57.004 SQL [11635]: pgsql_close() -- 19:33:57.012 INFO [11652]: COREGRADE is starting... -- 19:33:57.012 INFO [11652]: Version from config: 1.0 -- 19:33:57.012 DEBUG [11652]: Connecting to database... -- 19:33:57.012 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:33:57.012 SQL [11652]: pgsql_db_connect() -- 19:33:57.016 DEBUG [11652]: Database connection successful -- 19:33:57.016 INFO [11652]: _SERVER found -- 19:33:57.016 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 19:33:57.016 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 19:33:57.016 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=qqvsebm1jg0bsr99gpsphq8rkdtouubn -- 19:33:57.016 INFO [11652]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:33:57.016 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:33:57.028 INFO [11652]: COREGRADE is stopping... -- 19:33:57.028 DEBUG [11652]: Closing database connection -- 19:33:57.028 SQL [11652]: pgsql_close() -- 19:33:58.914 INFO [11652]: COREGRADE is starting... -- 19:33:58.914 INFO [11652]: Version from config: 1.0 -- 19:33:58.914 DEBUG [11652]: Connecting to database... -- 19:33:58.914 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:33:58.914 SQL [11652]: pgsql_db_connect() -- 19:33:58.918 DEBUG [11652]: Database connection successful -- 19:33:58.918 INFO [11652]: _SERVER found -- 19:33:58.918 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 19:33:58.919 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 19:33:58.919 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3757108g64l0vfeespn726umd6sv17jo -- 19:33:58.919 INFO [11652]: QUERY_STRING = /member -- 19:33:58.919 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:33:58.953 INFO [11652]: COREGRADE is stopping... -- 19:33:58.953 DEBUG [11652]: Closing database connection -- 19:33:58.953 SQL [11652]: pgsql_close() -- 19:33:59.225 INFO [11652]: COREGRADE is starting... -- 19:33:59.226 INFO [11652]: Version from config: 1.0 -- 19:33:59.226 DEBUG [11652]: Connecting to database... -- 19:33:59.226 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:33:59.226 SQL [11652]: pgsql_db_connect() -- 19:33:59.230 DEBUG [11652]: Database connection successful -- 19:33:59.230 INFO [11652]: _SERVER found -- 19:33:59.230 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 19:33:59.230 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 19:33:59.230 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3757108g64l0vfeespn726umd6sv17jo -- 19:33:59.230 INFO [11652]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:33:59.230 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:33:59.241 INFO [11652]: COREGRADE is stopping... -- 19:33:59.241 DEBUG [11652]: Closing database connection -- 19:33:59.241 SQL [11652]: pgsql_close() -- 19:36:28.180 INFO [11637]: COREGRADE is starting... -- 19:36:28.180 INFO [11637]: Version from config: 1.0 -- 19:36:28.180 DEBUG [11637]: Connecting to database... -- 19:36:28.180 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:36:28.180 SQL [11637]: pgsql_db_connect() -- 19:36:28.185 DEBUG [11637]: Database connection successful -- 19:36:28.185 INFO [11637]: _SERVER found -- 19:36:28.185 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 19:36:28.185 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 19:36:28.185 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=qqvsebm1jg0bsr99gpsphq8rkdtouubn -- 19:36:28.185 INFO [11637]: QUERY_STRING = /member -- 19:36:28.185 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:36:28.221 INFO [11637]: COREGRADE is stopping... -- 19:36:28.221 DEBUG [11637]: Closing database connection -- 19:36:28.221 SQL [11637]: pgsql_close() -- 19:36:28.531 INFO [11637]: COREGRADE is starting... -- 19:36:28.531 INFO [11637]: Version from config: 1.0 -- 19:36:28.531 DEBUG [11637]: Connecting to database... -- 19:36:28.531 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:36:28.531 SQL [11637]: pgsql_db_connect() -- 19:36:28.535 DEBUG [11637]: Database connection successful -- 19:36:28.535 INFO [11637]: _SERVER found -- 19:36:28.535 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 19:36:28.535 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 19:36:28.535 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=qqvsebm1jg0bsr99gpsphq8rkdtouubn -- 19:36:28.535 INFO [11637]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:36:28.535 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:36:28.546 INFO [11637]: COREGRADE is stopping... -- 19:36:28.546 DEBUG [11637]: Closing database connection -- 19:36:28.547 SQL [11637]: pgsql_close() -- 19:36:28.561 INFO [11637]: COREGRADE is starting... -- 19:36:28.561 INFO [11637]: Version from config: 1.0 -- 19:36:28.561 DEBUG [11637]: Connecting to database... -- 19:36:28.561 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:36:28.561 SQL [11637]: pgsql_db_connect() -- 19:36:28.565 DEBUG [11637]: Database connection successful -- 19:36:28.565 INFO [11637]: _SERVER found -- 19:36:28.565 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 19:36:28.565 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 19:36:28.565 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=qqvsebm1jg0bsr99gpsphq8rkdtouubn -- 19:36:28.565 INFO [11637]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:36:28.565 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:36:28.576 INFO [11637]: COREGRADE is stopping... -- 19:36:28.576 DEBUG [11637]: Closing database connection -- 19:36:28.576 SQL [11637]: pgsql_close() -- 19:36:33.576 INFO [11637]: COREGRADE is starting... -- 19:36:33.577 INFO [11637]: Version from config: 1.0 -- 19:36:33.577 DEBUG [11637]: Connecting to database... -- 19:36:33.577 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:36:33.577 SQL [11637]: pgsql_db_connect() -- 19:36:33.581 DEBUG [11637]: Database connection successful -- 19:36:33.581 INFO [11637]: _SERVER found -- 19:36:33.581 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 19:36:33.581 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 19:36:33.581 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3757108g64l0vfeespn726umd6sv17jo -- 19:36:33.581 INFO [11637]: QUERY_STRING = /member -- 19:36:33.581 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:36:33.616 INFO [11637]: COREGRADE is stopping... -- 19:36:33.616 DEBUG [11637]: Closing database connection -- 19:36:33.616 SQL [11637]: pgsql_close() -- 19:36:33.849 INFO [11637]: COREGRADE is starting... -- 19:36:33.850 INFO [11637]: Version from config: 1.0 -- 19:36:33.850 DEBUG [11637]: Connecting to database... -- 19:36:33.850 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:36:33.850 SQL [11637]: pgsql_db_connect() -- 19:36:33.854 DEBUG [11637]: Database connection successful -- 19:36:33.854 INFO [11637]: _SERVER found -- 19:36:33.854 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 19:36:33.854 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 19:36:33.854 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3757108g64l0vfeespn726umd6sv17jo -- 19:36:33.854 INFO [11637]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:36:33.854 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:36:33.865 INFO [11637]: COREGRADE is stopping... -- 19:36:33.865 DEBUG [11637]: Closing database connection -- 19:36:33.865 SQL [11637]: pgsql_close() -- 19:36:33.873 INFO [11644]: COREGRADE is starting... -- 19:36:33.873 INFO [11644]: Version from config: 1.0 -- 19:36:33.873 DEBUG [11644]: Connecting to database... -- 19:36:33.873 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:36:33.873 SQL [11644]: pgsql_db_connect() -- 19:36:33.877 DEBUG [11644]: Database connection successful -- 19:36:33.877 INFO [11644]: _SERVER found -- 19:36:33.877 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 19:36:33.877 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 19:36:33.877 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3757108g64l0vfeespn726umd6sv17jo -- 19:36:33.877 INFO [11644]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:36:33.877 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:36:33.888 INFO [11644]: COREGRADE is stopping... -- 19:36:33.888 DEBUG [11644]: Closing database connection -- 19:36:33.888 SQL [11644]: pgsql_close() -- 19:37:44.819 INFO [11636]: COREGRADE is starting... -- 19:37:44.819 INFO [11636]: Version from config: 1.0 -- 19:37:44.819 DEBUG [11636]: Connecting to database... -- 19:37:44.819 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:37:44.819 SQL [11636]: pgsql_db_connect() -- 19:37:44.823 DEBUG [11636]: Database connection successful -- 19:37:44.823 INFO [11636]: _SERVER found -- 19:37:44.823 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 19:37:44.823 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 19:37:44.823 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=qqvsebm1jg0bsr99gpsphq8rkdtouubn -- 19:37:44.823 INFO [11636]: QUERY_STRING = /member/page -- 19:37:44.823 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:37:44.861 INFO [11636]: COREGRADE is stopping... -- 19:37:44.861 DEBUG [11636]: Closing database connection -- 19:37:44.861 SQL [11636]: pgsql_close() -- 19:37:45.173 INFO [11636]: COREGRADE is starting... -- 19:37:45.173 INFO [11636]: Version from config: 1.0 -- 19:37:45.173 DEBUG [11636]: Connecting to database... -- 19:37:45.173 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:37:45.173 SQL [11636]: pgsql_db_connect() -- 19:37:45.177 DEBUG [11636]: Database connection successful -- 19:37:45.177 INFO [11636]: _SERVER found -- 19:37:45.177 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 19:37:45.177 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 19:37:45.177 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=di29a6sav9p2d4nbnvd5nu1tiidel920 -- 19:37:45.177 INFO [11636]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:37:45.177 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:37:45.188 INFO [11636]: COREGRADE is stopping... -- 19:37:45.188 DEBUG [11636]: Closing database connection -- 19:37:45.188 SQL [11636]: pgsql_close() -- 19:37:45.196 INFO [11638]: COREGRADE is starting... -- 19:37:45.196 INFO [11638]: Version from config: 1.0 -- 19:37:45.196 DEBUG [11638]: Connecting to database... -- 19:37:45.196 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:37:45.196 SQL [11638]: pgsql_db_connect() -- 19:37:45.201 DEBUG [11638]: Database connection successful -- 19:37:45.201 INFO [11638]: _SERVER found -- 19:37:45.201 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 19:37:45.201 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 19:37:45.201 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=di29a6sav9p2d4nbnvd5nu1tiidel920 -- 19:37:45.201 INFO [11638]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:37:45.201 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:37:45.212 INFO [11638]: COREGRADE is stopping... -- 19:37:45.212 DEBUG [11638]: Closing database connection -- 19:37:45.212 SQL [11638]: pgsql_close() -- 19:37:48.732 INFO [11638]: COREGRADE is starting... -- 19:37:48.733 INFO [11638]: Version from config: 1.0 -- 19:37:48.733 DEBUG [11638]: Connecting to database... -- 19:37:48.733 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:37:48.733 SQL [11638]: pgsql_db_connect() -- 19:37:48.737 DEBUG [11638]: Database connection successful -- 19:37:48.737 INFO [11638]: _SERVER found -- 19:37:48.737 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 19:37:48.737 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 19:37:48.737 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=di29a6sav9p2d4nbnvd5nu1tiidel920 -- 19:37:48.737 INFO [11638]: QUERY_STRING = /member/configure -- 19:37:48.737 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:37:48.772 INFO [11638]: COREGRADE is stopping... -- 19:37:48.772 DEBUG [11638]: Closing database connection -- 19:37:48.772 SQL [11638]: pgsql_close() -- 19:37:48.976 INFO [11638]: COREGRADE is starting... -- 19:37:48.976 INFO [11638]: Version from config: 1.0 -- 19:37:48.976 DEBUG [11638]: Connecting to database... -- 19:37:48.976 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:37:48.976 SQL [11638]: pgsql_db_connect() -- 19:37:48.989 INFO [11636]: COREGRADE is starting... -- 19:37:48.989 INFO [11636]: Version from config: 1.0 -- 19:37:48.989 DEBUG [11636]: Connecting to database... -- 19:37:48.989 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:37:48.989 SQL [11636]: pgsql_db_connect() -- 19:37:48.980 DEBUG [11638]: Database connection successful -- 19:37:48.980 INFO [11638]: _SERVER found -- 19:37:48.980 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 19:37:48.980 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 19:37:48.980 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=di29a6sav9p2d4nbnvd5nu1tiidel920 -- 19:37:48.980 INFO [11638]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:37:48.980 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:37:48.991 INFO [11638]: COREGRADE is stopping... -- 19:37:48.991 DEBUG [11638]: Closing database connection -- 19:37:48.991 SQL [11638]: pgsql_close() -- 19:37:48.994 DEBUG [11636]: Database connection successful -- 19:37:48.994 INFO [11636]: _SERVER found -- 19:37:48.994 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 19:37:48.994 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 19:37:48.994 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=di29a6sav9p2d4nbnvd5nu1tiidel920 -- 19:37:48.994 INFO [11636]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:37:48.994 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:37:49.005 INFO [11636]: COREGRADE is stopping... -- 19:37:49.005 DEBUG [11636]: Closing database connection -- 19:37:49.005 SQL [11636]: pgsql_close() -- 19:39:11.076 INFO [11639]: COREGRADE is starting... -- 19:39:11.076 INFO [11639]: Version from config: 1.0 -- 19:39:11.076 DEBUG [11639]: Connecting to database... -- 19:39:11.076 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:39:11.076 SQL [11639]: pgsql_db_connect() -- 19:39:11.080 DEBUG [11639]: Database connection successful -- 19:39:11.080 INFO [11639]: _SERVER found -- 19:39:11.080 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 19:39:11.080 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 19:39:11.080 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3757108g64l0vfeespn726umd6sv17jo -- 19:39:11.080 INFO [11639]: QUERY_STRING = /member -- 19:39:11.080 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:39:11.120 INFO [11639]: COREGRADE is stopping... -- 19:39:11.120 DEBUG [11639]: Closing database connection -- 19:39:11.120 SQL [11639]: pgsql_close() -- 19:39:11.355 INFO [11639]: COREGRADE is starting... -- 19:39:11.355 INFO [11639]: Version from config: 1.0 -- 19:39:11.355 DEBUG [11639]: Connecting to database... -- 19:39:11.355 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:39:11.355 SQL [11639]: pgsql_db_connect() -- 19:39:11.359 DEBUG [11639]: Database connection successful -- 19:39:11.359 INFO [11639]: _SERVER found -- 19:39:11.359 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 19:39:11.359 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 19:39:11.359 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:39:11.359 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:39:11.359 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:39:11.371 INFO [11639]: COREGRADE is stopping... -- 19:39:11.371 DEBUG [11639]: Closing database connection -- 19:39:11.371 SQL [11639]: pgsql_close() -- 19:39:14.010 INFO [11639]: COREGRADE is starting... -- 19:39:14.010 INFO [11639]: Version from config: 1.0 -- 19:39:14.010 DEBUG [11639]: Connecting to database... -- 19:39:14.010 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:39:14.010 SQL [11639]: pgsql_db_connect() -- 19:39:14.015 DEBUG [11639]: Database connection successful -- 19:39:14.015 INFO [11639]: _SERVER found -- 19:39:14.015 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 19:39:14.015 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 19:39:14.015 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:39:14.015 INFO [11639]: QUERY_STRING = /member -- 19:39:14.015 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:39:14.053 INFO [11639]: COREGRADE is stopping... -- 19:39:14.054 DEBUG [11639]: Closing database connection -- 19:39:14.054 SQL [11639]: pgsql_close() -- 19:39:14.250 INFO [11639]: COREGRADE is starting... -- 19:39:14.250 INFO [11639]: Version from config: 1.0 -- 19:39:14.250 DEBUG [11639]: Connecting to database... -- 19:39:14.250 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:39:14.250 SQL [11639]: pgsql_db_connect() -- 19:39:14.254 DEBUG [11639]: Database connection successful -- 19:39:14.254 INFO [11639]: _SERVER found -- 19:39:14.254 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 19:39:14.254 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 19:39:14.254 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:39:14.254 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:39:14.254 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:39:14.266 INFO [11639]: COREGRADE is stopping... -- 19:39:14.266 DEBUG [11639]: Closing database connection -- 19:39:14.266 SQL [11639]: pgsql_close() -- 19:39:59.204 INFO [11651]: COREGRADE is starting... -- 19:39:59.205 INFO [11651]: Version from config: 1.0 -- 19:39:59.205 DEBUG [11651]: Connecting to database... -- 19:39:59.205 DEBUG [11651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:39:59.205 SQL [11651]: pgsql_db_connect() -- 19:39:59.210 DEBUG [11651]: Database connection successful -- 19:39:59.210 INFO [11651]: _SERVER found -- 19:39:59.210 INFO [11651]: REMOTE_ADDR = 192.168.1.13 -- 19:39:59.210 INFO [11651]: SERVER_NAME = oameye.works.coregrade.com -- 19:39:59.210 INFO [11651]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:39:59.210 INFO [11651]: QUERY_STRING = screen=page-user-profile -- 19:39:59.210 INFO [11651]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:39:59.222 INFO [11651]: COREGRADE is stopping... -- 19:39:59.222 DEBUG [11651]: Closing database connection -- 19:39:59.222 SQL [11651]: pgsql_close() -- 19:40:01.433 INFO [11651]: COREGRADE is starting... -- 19:40:01.434 INFO [11651]: Version from config: 1.0 -- 19:40:01.434 DEBUG [11651]: Connecting to database... -- 19:40:01.434 DEBUG [11651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:40:01.434 SQL [11651]: pgsql_db_connect() -- 19:40:01.438 DEBUG [11651]: Database connection successful -- 19:40:01.438 INFO [11651]: _SERVER found -- 19:40:01.438 INFO [11651]: REMOTE_ADDR = 192.168.1.13 -- 19:40:01.438 INFO [11651]: SERVER_NAME = oameye.works.coregrade.com -- 19:40:01.438 INFO [11651]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:40:01.438 INFO [11651]: QUERY_STRING = /member -- 19:40:01.438 INFO [11651]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:40:01.498 INFO [11651]: COREGRADE is stopping... -- 19:40:01.498 DEBUG [11651]: Closing database connection -- 19:40:01.498 SQL [11651]: pgsql_close() -- 19:40:01.848 INFO [11651]: COREGRADE is starting... -- 19:40:01.848 INFO [11651]: Version from config: 1.0 -- 19:40:01.848 DEBUG [11651]: Connecting to database... -- 19:40:01.848 DEBUG [11651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:40:01.848 SQL [11651]: pgsql_db_connect() -- 19:40:01.852 DEBUG [11651]: Database connection successful -- 19:40:01.852 INFO [11651]: _SERVER found -- 19:40:01.852 INFO [11651]: REMOTE_ADDR = 192.168.1.13 -- 19:40:01.852 INFO [11651]: SERVER_NAME = oameye.works.coregrade.com -- 19:40:01.852 INFO [11651]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:40:01.852 INFO [11651]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:40:01.852 INFO [11651]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:40:01.864 INFO [11651]: COREGRADE is stopping... -- 19:40:01.864 DEBUG [11651]: Closing database connection -- 19:40:01.864 SQL [11651]: pgsql_close() -- 19:40:06.502 INFO [11651]: COREGRADE is starting... -- 19:40:06.502 INFO [11651]: Version from config: 1.0 -- 19:40:06.502 DEBUG [11651]: Connecting to database... -- 19:40:06.502 DEBUG [11651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:40:06.502 SQL [11651]: pgsql_db_connect() -- 19:40:06.506 DEBUG [11651]: Database connection successful -- 19:40:06.506 INFO [11651]: _SERVER found -- 19:40:06.506 INFO [11651]: REMOTE_ADDR = 192.168.1.13 -- 19:40:06.506 INFO [11651]: SERVER_NAME = oameye.works.coregrade.com -- 19:40:06.506 INFO [11651]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:40:06.506 INFO [11651]: QUERY_STRING = screen=app-todo -- 19:40:06.506 INFO [11651]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:40:06.518 INFO [11651]: COREGRADE is stopping... -- 19:40:06.518 DEBUG [11651]: Closing database connection -- 19:40:06.518 SQL [11651]: pgsql_close() -- 19:40:08.795 INFO [11651]: COREGRADE is starting... -- 19:40:08.795 INFO [11651]: Version from config: 1.0 -- 19:40:08.795 DEBUG [11651]: Connecting to database... -- 19:40:08.795 DEBUG [11651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:40:08.795 SQL [11651]: pgsql_db_connect() -- 19:40:08.799 DEBUG [11651]: Database connection successful -- 19:40:08.799 INFO [11651]: _SERVER found -- 19:40:08.799 INFO [11651]: REMOTE_ADDR = 192.168.1.13 -- 19:40:08.799 INFO [11651]: SERVER_NAME = oameye.works.coregrade.com -- 19:40:08.799 INFO [11651]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:40:08.799 INFO [11651]: QUERY_STRING = /member -- 19:40:08.799 INFO [11651]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:40:08.837 INFO [11651]: COREGRADE is stopping... -- 19:40:08.837 DEBUG [11651]: Closing database connection -- 19:40:08.837 SQL [11651]: pgsql_close() -- 19:40:09.092 INFO [11651]: COREGRADE is starting... -- 19:40:09.092 INFO [11651]: Version from config: 1.0 -- 19:40:09.092 DEBUG [11651]: Connecting to database... -- 19:40:09.092 DEBUG [11651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:40:09.092 SQL [11651]: pgsql_db_connect() -- 19:40:09.096 DEBUG [11651]: Database connection successful -- 19:40:09.096 INFO [11651]: _SERVER found -- 19:40:09.096 INFO [11651]: REMOTE_ADDR = 192.168.1.13 -- 19:40:09.096 INFO [11651]: SERVER_NAME = oameye.works.coregrade.com -- 19:40:09.096 INFO [11651]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:40:09.096 INFO [11651]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:40:09.096 INFO [11651]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:40:09.108 INFO [11651]: COREGRADE is stopping... -- 19:40:09.108 DEBUG [11651]: Closing database connection -- 19:40:09.108 SQL [11651]: pgsql_close() -- 19:40:13.521 INFO [11651]: COREGRADE is starting... -- 19:40:13.521 INFO [11651]: Version from config: 1.0 -- 19:40:13.521 DEBUG [11651]: Connecting to database... -- 19:40:13.521 DEBUG [11651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:40:13.521 SQL [11651]: pgsql_db_connect() -- 19:40:13.525 DEBUG [11651]: Database connection successful -- 19:40:13.525 INFO [11651]: _SERVER found -- 19:40:13.525 INFO [11651]: REMOTE_ADDR = 192.168.1.13 -- 19:40:13.525 INFO [11651]: SERVER_NAME = oameye.works.coregrade.com -- 19:40:13.525 INFO [11651]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:40:13.525 INFO [11651]: QUERY_STRING = screen=app-chat -- 19:40:13.525 INFO [11651]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:40:13.537 INFO [11651]: COREGRADE is stopping... -- 19:40:13.537 DEBUG [11651]: Closing database connection -- 19:40:13.537 SQL [11651]: pgsql_close() -- 19:40:14.978 INFO [11651]: COREGRADE is starting... -- 19:40:14.978 INFO [11651]: Version from config: 1.0 -- 19:40:14.978 DEBUG [11651]: Connecting to database... -- 19:40:14.978 DEBUG [11651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:40:14.978 SQL [11651]: pgsql_db_connect() -- 19:40:14.982 DEBUG [11651]: Database connection successful -- 19:40:14.982 INFO [11651]: _SERVER found -- 19:40:14.982 INFO [11651]: REMOTE_ADDR = 192.168.1.13 -- 19:40:14.982 INFO [11651]: SERVER_NAME = oameye.works.coregrade.com -- 19:40:14.982 INFO [11651]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:40:14.982 INFO [11651]: QUERY_STRING = /member -- 19:40:14.982 INFO [11651]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:40:15.019 INFO [11651]: COREGRADE is stopping... -- 19:40:15.019 DEBUG [11651]: Closing database connection -- 19:40:15.019 SQL [11651]: pgsql_close() -- 19:40:15.303 INFO [11651]: COREGRADE is starting... -- 19:40:15.303 INFO [11651]: Version from config: 1.0 -- 19:40:15.303 DEBUG [11651]: Connecting to database... -- 19:40:15.303 DEBUG [11651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:40:15.303 SQL [11651]: pgsql_db_connect() -- 19:40:15.307 DEBUG [11651]: Database connection successful -- 19:40:15.307 INFO [11651]: _SERVER found -- 19:40:15.307 INFO [11651]: REMOTE_ADDR = 192.168.1.13 -- 19:40:15.307 INFO [11651]: SERVER_NAME = oameye.works.coregrade.com -- 19:40:15.307 INFO [11651]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:40:15.307 INFO [11651]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:40:15.307 INFO [11651]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:40:15.319 INFO [11651]: COREGRADE is stopping... -- 19:40:15.319 DEBUG [11651]: Closing database connection -- 19:40:15.319 SQL [11651]: pgsql_close() -- 19:40:19.903 INFO [11651]: COREGRADE is starting... -- 19:40:19.904 INFO [11651]: Version from config: 1.0 -- 19:40:19.904 DEBUG [11651]: Connecting to database... -- 19:40:19.904 DEBUG [11651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:40:19.904 SQL [11651]: pgsql_db_connect() -- 19:40:19.910 INFO [11650]: COREGRADE is starting... -- 19:40:19.910 INFO [11650]: Version from config: 1.0 -- 19:40:19.910 DEBUG [11650]: Connecting to database... -- 19:40:19.910 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:40:19.910 SQL [11650]: pgsql_db_connect() -- 19:40:19.908 DEBUG [11651]: Database connection successful -- 19:40:19.908 INFO [11651]: _SERVER found -- 19:40:19.908 INFO [11651]: REMOTE_ADDR = 192.168.1.13 -- 19:40:19.908 INFO [11651]: SERVER_NAME = oameye.works.coregrade.com -- 19:40:19.908 INFO [11651]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:40:19.908 INFO [11651]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 19:40:19.908 INFO [11651]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:40:19.919 INFO [11651]: COREGRADE is stopping... -- 19:40:19.920 DEBUG [11651]: Closing database connection -- 19:40:19.920 SQL [11651]: pgsql_close() -- 19:40:19.914 DEBUG [11650]: Database connection successful -- 19:40:19.914 INFO [11650]: _SERVER found -- 19:40:19.914 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 19:40:19.914 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 19:40:19.914 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:40:19.914 INFO [11650]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 19:40:19.914 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:40:19.926 INFO [11650]: COREGRADE is stopping... -- 19:40:19.926 DEBUG [11650]: Closing database connection -- 19:40:19.926 SQL [11650]: pgsql_close() -- 19:40:26.998 INFO [11635]: COREGRADE is starting... -- 19:40:26.998 INFO [11635]: Version from config: 1.0 -- 19:40:26.998 DEBUG [11635]: Connecting to database... -- 19:40:26.998 DEBUG [11635]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:40:26.998 SQL [11635]: pgsql_db_connect() -- 19:40:27.002 DEBUG [11635]: Database connection successful -- 19:40:27.002 INFO [11635]: _SERVER found -- 19:40:27.002 INFO [11635]: REMOTE_ADDR = 192.168.1.13 -- 19:40:27.002 INFO [11635]: SERVER_NAME = oameye.works.coregrade.com -- 19:40:27.002 INFO [11635]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:40:27.002 INFO [11635]: QUERY_STRING = /member -- 19:40:27.002 INFO [11635]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:40:27.037 INFO [11635]: COREGRADE is stopping... -- 19:40:27.037 DEBUG [11635]: Closing database connection -- 19:40:27.037 SQL [11635]: pgsql_close() -- 19:40:27.568 INFO [11635]: COREGRADE is starting... -- 19:40:27.568 INFO [11635]: Version from config: 1.0 -- 19:40:27.568 DEBUG [11635]: Connecting to database... -- 19:40:27.568 DEBUG [11635]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:40:27.568 SQL [11635]: pgsql_db_connect() -- 19:40:27.572 DEBUG [11635]: Database connection successful -- 19:40:27.572 INFO [11635]: _SERVER found -- 19:40:27.572 INFO [11635]: REMOTE_ADDR = 192.168.1.13 -- 19:40:27.572 INFO [11635]: SERVER_NAME = oameye.works.coregrade.com -- 19:40:27.572 INFO [11635]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:40:27.572 INFO [11635]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 19:40:27.572 INFO [11635]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:40:27.583 INFO [11635]: COREGRADE is stopping... -- 19:40:27.583 DEBUG [11635]: Closing database connection -- 19:40:27.583 SQL [11635]: pgsql_close() -- 19:40:27.593 INFO [11635]: COREGRADE is starting... -- 19:40:27.593 INFO [11635]: Version from config: 1.0 -- 19:40:27.593 DEBUG [11635]: Connecting to database... -- 19:40:27.593 DEBUG [11635]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:40:27.593 SQL [11635]: pgsql_db_connect() -- 19:40:27.597 DEBUG [11635]: Database connection successful -- 19:40:27.597 INFO [11635]: _SERVER found -- 19:40:27.597 INFO [11635]: REMOTE_ADDR = 192.168.1.13 -- 19:40:27.597 INFO [11635]: SERVER_NAME = oameye.works.coregrade.com -- 19:40:27.597 INFO [11635]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:40:27.597 INFO [11635]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 19:40:27.597 INFO [11635]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:40:27.608 INFO [11635]: COREGRADE is stopping... -- 19:40:27.608 DEBUG [11635]: Closing database connection -- 19:40:27.608 SQL [11635]: pgsql_close() -- 19:40:27.636 INFO [11635]: COREGRADE is starting... -- 19:40:27.636 INFO [11635]: Version from config: 1.0 -- 19:40:27.636 DEBUG [11635]: Connecting to database... -- 19:40:27.636 DEBUG [11635]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:40:27.636 SQL [11635]: pgsql_db_connect() -- 19:40:27.640 DEBUG [11635]: Database connection successful -- 19:40:27.640 INFO [11635]: _SERVER found -- 19:40:27.640 INFO [11635]: REMOTE_ADDR = 192.168.1.13 -- 19:40:27.640 INFO [11635]: SERVER_NAME = oameye.works.coregrade.com -- 19:40:27.640 INFO [11635]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:40:27.640 INFO [11635]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:40:27.640 INFO [11635]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:40:27.651 INFO [11635]: COREGRADE is stopping... -- 19:40:27.651 DEBUG [11635]: Closing database connection -- 19:40:27.651 SQL [11635]: pgsql_close() -- 19:40:27.886 INFO [11635]: COREGRADE is starting... -- 19:40:27.886 INFO [11635]: Version from config: 1.0 -- 19:40:27.886 DEBUG [11635]: Connecting to database... -- 19:40:27.886 DEBUG [11635]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:40:27.886 SQL [11635]: pgsql_db_connect() -- 19:40:27.890 DEBUG [11635]: Database connection successful -- 19:40:27.890 INFO [11635]: _SERVER found -- 19:40:27.890 INFO [11635]: REMOTE_ADDR = 192.168.1.13 -- 19:40:27.890 INFO [11635]: SERVER_NAME = oameye.works.coregrade.com -- 19:40:27.890 INFO [11635]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:40:27.890 INFO [11635]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:40:27.890 INFO [11635]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:40:27.902 INFO [11635]: COREGRADE is stopping... -- 19:40:27.902 DEBUG [11635]: Closing database connection -- 19:40:27.902 SQL [11635]: pgsql_close() -- 19:42:05.283 INFO [11652]: COREGRADE is starting... -- 19:42:05.284 INFO [11652]: Version from config: 1.0 -- 19:42:05.284 DEBUG [11652]: Connecting to database... -- 19:42:05.284 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:42:05.284 SQL [11652]: pgsql_db_connect() -- 19:42:05.288 DEBUG [11652]: Database connection successful -- 19:42:05.288 INFO [11652]: _SERVER found -- 19:42:05.288 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 19:42:05.288 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 19:42:05.288 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:42:05.288 INFO [11652]: QUERY_STRING = /member -- 19:42:05.288 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:42:05.324 INFO [11652]: COREGRADE is stopping... -- 19:42:05.324 DEBUG [11652]: Closing database connection -- 19:42:05.324 SQL [11652]: pgsql_close() -- 19:42:05.734 INFO [11652]: COREGRADE is starting... -- 19:42:05.734 INFO [11652]: Version from config: 1.0 -- 19:42:05.734 DEBUG [11652]: Connecting to database... -- 19:42:05.734 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:42:05.735 SQL [11652]: pgsql_db_connect() -- 19:42:05.738 DEBUG [11652]: Database connection successful -- 19:42:05.739 INFO [11652]: _SERVER found -- 19:42:05.739 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 19:42:05.739 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 19:42:05.739 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:42:05.739 INFO [11652]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:42:05.739 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:42:05.749 INFO [11652]: COREGRADE is stopping... -- 19:42:05.750 DEBUG [11652]: Closing database connection -- 19:42:05.750 SQL [11652]: pgsql_close() -- 19:42:05.901 INFO [11652]: COREGRADE is starting... -- 19:42:05.901 INFO [11652]: Version from config: 1.0 -- 19:42:05.901 DEBUG [11652]: Connecting to database... -- 19:42:05.901 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:42:05.901 SQL [11652]: pgsql_db_connect() -- 19:42:05.907 INFO [11637]: COREGRADE is starting... -- 19:42:05.907 INFO [11637]: Version from config: 1.0 -- 19:42:05.907 DEBUG [11637]: Connecting to database... -- 19:42:05.907 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:42:05.907 SQL [11637]: pgsql_db_connect() -- 19:42:05.905 DEBUG [11652]: Database connection successful -- 19:42:05.905 INFO [11652]: _SERVER found -- 19:42:05.905 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 19:42:05.905 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 19:42:05.905 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:42:05.905 INFO [11652]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 19:42:05.905 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:42:05.916 INFO [11652]: COREGRADE is stopping... -- 19:42:05.916 DEBUG [11652]: Closing database connection -- 19:42:05.916 SQL [11652]: pgsql_close() -- 19:42:05.911 DEBUG [11637]: Database connection successful -- 19:42:05.911 INFO [11637]: _SERVER found -- 19:42:05.911 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 19:42:05.911 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 19:42:05.911 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:42:05.911 INFO [11637]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 19:42:05.911 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:42:05.922 INFO [11637]: COREGRADE is stopping... -- 19:42:05.922 DEBUG [11637]: Closing database connection -- 19:42:05.922 SQL [11637]: pgsql_close() -- 19:42:06.028 INFO [11637]: COREGRADE is starting... -- 19:42:06.028 INFO [11637]: Version from config: 1.0 -- 19:42:06.028 DEBUG [11637]: Connecting to database... -- 19:42:06.028 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:42:06.028 SQL [11637]: pgsql_db_connect() -- 19:42:06.032 DEBUG [11637]: Database connection successful -- 19:42:06.032 INFO [11637]: _SERVER found -- 19:42:06.032 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 19:42:06.032 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 19:42:06.032 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:42:06.032 INFO [11637]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:42:06.032 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:42:06.043 INFO [11637]: COREGRADE is stopping... -- 19:42:06.043 DEBUG [11637]: Closing database connection -- 19:42:06.043 SQL [11637]: pgsql_close() -- 19:42:12.686 INFO [11644]: COREGRADE is starting... -- 19:42:12.687 INFO [11644]: Version from config: 1.0 -- 19:42:12.687 DEBUG [11644]: Connecting to database... -- 19:42:12.687 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:42:12.687 SQL [11644]: pgsql_db_connect() -- 19:42:12.691 DEBUG [11644]: Database connection successful -- 19:42:12.691 INFO [11644]: _SERVER found -- 19:42:12.691 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 19:42:12.691 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 19:42:12.691 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:42:12.691 INFO [11644]: QUERY_STRING = /member/page -- 19:42:12.691 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:42:12.727 INFO [11644]: COREGRADE is stopping... -- 19:42:12.727 DEBUG [11644]: Closing database connection -- 19:42:12.727 SQL [11644]: pgsql_close() -- 19:42:13.336 INFO [11644]: COREGRADE is starting... -- 19:42:13.336 INFO [11644]: Version from config: 1.0 -- 19:42:13.336 DEBUG [11644]: Connecting to database... -- 19:42:13.336 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:42:13.336 SQL [11644]: pgsql_db_connect() -- 19:42:13.340 DEBUG [11644]: Database connection successful -- 19:42:13.340 INFO [11644]: _SERVER found -- 19:42:13.340 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 19:42:13.340 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 19:42:13.340 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:42:13.340 INFO [11644]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:42:13.340 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:42:13.351 INFO [11644]: COREGRADE is stopping... -- 19:42:13.351 DEBUG [11644]: Closing database connection -- 19:42:13.351 SQL [11644]: pgsql_close() -- 19:42:13.506 INFO [11644]: COREGRADE is starting... -- 19:42:13.506 INFO [11644]: Version from config: 1.0 -- 19:42:13.506 DEBUG [11644]: Connecting to database... -- 19:42:13.506 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:42:13.506 SQL [11644]: pgsql_db_connect() -- 19:42:13.512 INFO [11638]: COREGRADE is starting... -- 19:42:13.513 INFO [11638]: Version from config: 1.0 -- 19:42:13.513 DEBUG [11638]: Connecting to database... -- 19:42:13.513 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:42:13.513 SQL [11638]: pgsql_db_connect() -- 19:42:13.510 DEBUG [11644]: Database connection successful -- 19:42:13.510 INFO [11644]: _SERVER found -- 19:42:13.510 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 19:42:13.510 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 19:42:13.510 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:42:13.510 INFO [11644]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 19:42:13.510 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:42:13.521 INFO [11644]: COREGRADE is stopping... -- 19:42:13.521 DEBUG [11644]: Closing database connection -- 19:42:13.521 SQL [11644]: pgsql_close() -- 19:42:13.517 DEBUG [11638]: Database connection successful -- 19:42:13.517 INFO [11638]: _SERVER found -- 19:42:13.517 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 19:42:13.517 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 19:42:13.517 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:42:13.517 INFO [11638]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 19:42:13.517 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:42:13.528 INFO [11638]: COREGRADE is stopping... -- 19:42:13.528 DEBUG [11638]: Closing database connection -- 19:42:13.528 SQL [11638]: pgsql_close() -- 19:42:13.574 INFO [11638]: COREGRADE is starting... -- 19:42:13.575 INFO [11638]: Version from config: 1.0 -- 19:42:13.575 DEBUG [11638]: Connecting to database... -- 19:42:13.575 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:42:13.575 SQL [11638]: pgsql_db_connect() -- 19:42:13.579 DEBUG [11638]: Database connection successful -- 19:42:13.579 INFO [11638]: _SERVER found -- 19:42:13.579 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 19:42:13.579 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 19:42:13.579 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:42:13.579 INFO [11638]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:42:13.579 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:42:13.590 INFO [11638]: COREGRADE is stopping... -- 19:42:13.590 DEBUG [11638]: Closing database connection -- 19:42:13.590 SQL [11638]: pgsql_close() -- 19:42:44.449 INFO [11636]: COREGRADE is starting... -- 19:42:44.449 INFO [11636]: Version from config: 1.0 -- 19:42:44.449 DEBUG [11636]: Connecting to database... -- 19:42:44.449 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:42:44.449 SQL [11636]: pgsql_db_connect() -- 19:42:44.453 DEBUG [11636]: Database connection successful -- 19:42:44.453 INFO [11636]: _SERVER found -- 19:42:44.453 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 19:42:44.453 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 19:42:44.453 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:42:44.453 INFO [11636]: QUERY_STRING = /member/configure -- 19:42:44.453 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:42:44.490 INFO [11636]: COREGRADE is stopping... -- 19:42:44.490 DEBUG [11636]: Closing database connection -- 19:42:44.490 SQL [11636]: pgsql_close() -- 19:42:44.891 INFO [11636]: COREGRADE is starting... -- 19:42:44.892 INFO [11636]: Version from config: 1.0 -- 19:42:44.892 DEBUG [11636]: Connecting to database... -- 19:42:44.892 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:42:44.892 SQL [11636]: pgsql_db_connect() -- 19:42:44.896 DEBUG [11636]: Database connection successful -- 19:42:44.896 INFO [11636]: _SERVER found -- 19:42:44.896 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 19:42:44.896 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 19:42:44.896 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:42:44.896 INFO [11636]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:42:44.896 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:42:44.907 INFO [11636]: COREGRADE is stopping... -- 19:42:44.907 DEBUG [11636]: Closing database connection -- 19:42:44.907 SQL [11636]: pgsql_close() -- 19:42:45.312 INFO [11636]: COREGRADE is starting... -- 19:42:45.312 INFO [11636]: Version from config: 1.0 -- 19:42:45.312 DEBUG [11636]: Connecting to database... -- 19:42:45.312 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:42:45.312 SQL [11636]: pgsql_db_connect() -- 19:42:45.317 DEBUG [11636]: Database connection successful -- 19:42:45.317 INFO [11636]: _SERVER found -- 19:42:45.317 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 19:42:45.317 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 19:42:45.317 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:42:45.317 INFO [11636]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 19:42:45.317 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:42:45.328 INFO [11636]: COREGRADE is stopping... -- 19:42:45.328 DEBUG [11636]: Closing database connection -- 19:42:45.328 SQL [11636]: pgsql_close() -- 19:42:45.342 INFO [11639]: COREGRADE is starting... -- 19:42:45.342 INFO [11639]: Version from config: 1.0 -- 19:42:45.342 DEBUG [11639]: Connecting to database... -- 19:42:45.342 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:42:45.342 SQL [11639]: pgsql_db_connect() -- 19:42:45.357 INFO [11636]: COREGRADE is starting... -- 19:42:45.357 INFO [11636]: Version from config: 1.0 -- 19:42:45.357 DEBUG [11636]: Connecting to database... -- 19:42:45.357 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:42:45.357 SQL [11636]: pgsql_db_connect() -- 19:42:45.346 DEBUG [11639]: Database connection successful -- 19:42:45.346 INFO [11639]: _SERVER found -- 19:42:45.346 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 19:42:45.346 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 19:42:45.346 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:42:45.346 INFO [11639]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 19:42:45.346 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:42:45.358 INFO [11639]: COREGRADE is stopping... -- 19:42:45.359 DEBUG [11639]: Closing database connection -- 19:42:45.359 SQL [11639]: pgsql_close() -- 19:42:45.361 DEBUG [11636]: Database connection successful -- 19:42:45.361 INFO [11636]: _SERVER found -- 19:42:45.361 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 19:42:45.361 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 19:42:45.361 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:42:45.361 INFO [11636]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:42:45.361 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:42:45.372 INFO [11636]: COREGRADE is stopping... -- 19:42:45.373 DEBUG [11636]: Closing database connection -- 19:42:45.373 SQL [11636]: pgsql_close() -- 19:43:58.735 INFO [11651]: COREGRADE is starting... -- 19:43:58.736 INFO [11651]: Version from config: 1.0 -- 19:43:58.736 DEBUG [11651]: Connecting to database... -- 19:43:58.736 DEBUG [11651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:43:58.736 SQL [11651]: pgsql_db_connect() -- 19:43:58.740 DEBUG [11651]: Database connection successful -- 19:43:58.740 INFO [11651]: _SERVER found -- 19:43:58.740 INFO [11651]: REMOTE_ADDR = 192.168.1.13 -- 19:43:58.740 INFO [11651]: SERVER_NAME = oameye.works.coregrade.com -- 19:43:58.740 INFO [11651]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:43:58.740 INFO [11651]: QUERY_STRING = /member/configure -- 19:43:58.740 INFO [11651]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:43:58.778 INFO [11651]: COREGRADE is stopping... -- 19:43:58.778 DEBUG [11651]: Closing database connection -- 19:43:58.778 SQL [11651]: pgsql_close() -- 19:43:58.939 INFO [11651]: COREGRADE is starting... -- 19:43:58.939 INFO [11651]: Version from config: 1.0 -- 19:43:58.939 DEBUG [11651]: Connecting to database... -- 19:43:58.939 DEBUG [11651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:43:58.939 SQL [11651]: pgsql_db_connect() -- 19:43:58.943 DEBUG [11651]: Database connection successful -- 19:43:58.943 INFO [11651]: _SERVER found -- 19:43:58.943 INFO [11651]: REMOTE_ADDR = 192.168.1.13 -- 19:43:58.943 INFO [11651]: SERVER_NAME = oameye.works.coregrade.com -- 19:43:58.943 INFO [11651]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:43:58.943 INFO [11651]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:43:58.943 INFO [11651]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:43:58.955 INFO [11651]: COREGRADE is stopping... -- 19:43:58.955 DEBUG [11651]: Closing database connection -- 19:43:58.955 SQL [11651]: pgsql_close() -- 19:43:59.083 INFO [11651]: COREGRADE is starting... -- 19:43:59.083 INFO [11651]: Version from config: 1.0 -- 19:43:59.083 DEBUG [11651]: Connecting to database... -- 19:43:59.083 DEBUG [11651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:43:59.083 SQL [11651]: pgsql_db_connect() -- 19:43:59.087 DEBUG [11651]: Database connection successful -- 19:43:59.087 INFO [11651]: _SERVER found -- 19:43:59.087 INFO [11651]: REMOTE_ADDR = 192.168.1.13 -- 19:43:59.087 INFO [11651]: SERVER_NAME = oameye.works.coregrade.com -- 19:43:59.087 INFO [11651]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:43:59.087 INFO [11651]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:43:59.087 INFO [11651]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:43:59.098 INFO [11651]: COREGRADE is stopping... -- 19:43:59.098 DEBUG [11651]: Closing database connection -- 19:43:59.098 SQL [11651]: pgsql_close() -- 19:45:55.330 INFO [11650]: COREGRADE is starting... -- 19:45:55.331 INFO [11650]: Version from config: 1.0 -- 19:45:55.331 DEBUG [11650]: Connecting to database... -- 19:45:55.331 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:45:55.331 SQL [11650]: pgsql_db_connect() -- 19:45:55.335 DEBUG [11650]: Database connection successful -- 19:45:55.335 INFO [11650]: _SERVER found -- 19:45:55.335 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 19:45:55.335 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 19:45:55.335 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=l9fr0a62loand2mmj2528rvkfta3gfpp -- 19:45:55.335 INFO [11650]: QUERY_STRING = /member/configure -- 19:45:55.335 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:45:55.373 INFO [11650]: COREGRADE is stopping... -- 19:45:55.373 DEBUG [11650]: Closing database connection -- 19:45:55.373 SQL [11650]: pgsql_close() -- 19:47:36.984 INFO [11635]: COREGRADE is starting... -- 19:47:36.984 INFO [11635]: Version from config: 1.0 -- 19:47:36.985 DEBUG [11635]: Connecting to database... -- 19:47:36.985 DEBUG [11635]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:36.985 SQL [11635]: pgsql_db_connect() -- 19:47:36.989 DEBUG [11635]: Database connection successful -- 19:47:36.989 INFO [11635]: _SERVER found -- 19:47:36.989 INFO [11635]: REMOTE_ADDR = 192.168.1.13 -- 19:47:36.989 INFO [11635]: SERVER_NAME = oameye.works.coregrade.com -- 19:47:36.989 INFO [11635]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dd61vblvvdugqkv4dvfdsj3ehnjbmqg9 -- 19:47:36.989 INFO [11635]: QUERY_STRING = /member/configure -- 19:47:36.989 INFO [11635]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:47:37.025 INFO [11635]: COREGRADE is stopping... -- 19:47:37.025 DEBUG [11635]: Closing database connection -- 19:47:37.025 SQL [11635]: pgsql_close() -- 19:47:37.263 INFO [11635]: COREGRADE is starting... -- 19:47:37.263 INFO [11635]: Version from config: 1.0 -- 19:47:37.263 DEBUG [11635]: Connecting to database... -- 19:47:37.263 DEBUG [11635]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:37.263 SQL [11635]: pgsql_db_connect() -- 19:47:37.267 DEBUG [11635]: Database connection successful -- 19:47:37.267 INFO [11635]: _SERVER found -- 19:47:37.267 INFO [11635]: REMOTE_ADDR = 192.168.1.13 -- 19:47:37.267 INFO [11635]: SERVER_NAME = oameye.works.coregrade.com -- 19:47:37.267 INFO [11635]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dd61vblvvdugqkv4dvfdsj3ehnjbmqg9 -- 19:47:37.267 INFO [11635]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:47:37.267 INFO [11635]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:47:37.278 INFO [11635]: COREGRADE is stopping... -- 19:47:37.278 DEBUG [11635]: Closing database connection -- 19:47:37.278 SQL [11635]: pgsql_close() -- 19:47:37.436 INFO [11635]: COREGRADE is starting... -- 19:47:37.437 INFO [11635]: Version from config: 1.0 -- 19:47:37.437 DEBUG [11635]: Connecting to database... -- 19:47:37.437 DEBUG [11635]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:37.437 SQL [11635]: pgsql_db_connect() -- 19:47:37.441 DEBUG [11635]: Database connection successful -- 19:47:37.441 INFO [11635]: _SERVER found -- 19:47:37.441 INFO [11635]: REMOTE_ADDR = 192.168.1.13 -- 19:47:37.441 INFO [11635]: SERVER_NAME = oameye.works.coregrade.com -- 19:47:37.441 INFO [11635]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dd61vblvvdugqkv4dvfdsj3ehnjbmqg9 -- 19:47:37.441 INFO [11635]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:47:37.441 INFO [11635]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:47:37.452 INFO [11635]: COREGRADE is stopping... -- 19:47:37.452 DEBUG [11635]: Closing database connection -- 19:47:37.452 SQL [11635]: pgsql_close() -- 19:47:50.715 INFO [11652]: COREGRADE is starting... -- 19:47:50.716 INFO [11652]: Version from config: 1.0 -- 19:47:50.716 DEBUG [11652]: Connecting to database... -- 19:47:50.716 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:50.716 SQL [11652]: pgsql_db_connect() -- 19:47:50.720 DEBUG [11652]: Database connection successful -- 19:47:50.720 INFO [11652]: _SERVER found -- 19:47:50.720 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 19:47:50.720 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 19:47:50.720 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dd61vblvvdugqkv4dvfdsj3ehnjbmqg9 -- 19:47:50.720 INFO [11652]: QUERY_STRING = /member/configure -- 19:47:50.720 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:47:50.755 INFO [11652]: COREGRADE is stopping... -- 19:47:50.755 DEBUG [11652]: Closing database connection -- 19:47:50.755 SQL [11652]: pgsql_close() -- 19:47:51.071 INFO [11638]: COREGRADE is starting... -- 19:47:51.072 INFO [11638]: Version from config: 1.0 -- 19:47:51.072 DEBUG [11638]: Connecting to database... -- 19:47:51.072 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:51.072 SQL [11638]: pgsql_db_connect() -- 19:47:51.076 DEBUG [11638]: Database connection successful -- 19:47:51.076 INFO [11638]: _SERVER found -- 19:47:51.076 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 19:47:51.076 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 19:47:51.076 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dd61vblvvdugqkv4dvfdsj3ehnjbmqg9 -- 19:47:51.076 INFO [11638]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:47:51.076 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:47:51.089 INFO [11638]: COREGRADE is stopping... -- 19:47:51.089 DEBUG [11638]: Closing database connection -- 19:47:51.089 SQL [11638]: pgsql_close() -- 19:47:51.711 INFO [11652]: COREGRADE is starting... -- 19:47:51.711 INFO [11652]: Version from config: 1.0 -- 19:47:51.711 DEBUG [11652]: Connecting to database... -- 19:47:51.711 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:51.711 SQL [11652]: pgsql_db_connect() -- 19:47:51.715 DEBUG [11652]: Database connection successful -- 19:47:51.715 INFO [11652]: _SERVER found -- 19:47:51.715 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 19:47:51.715 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 19:47:51.715 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dd61vblvvdugqkv4dvfdsj3ehnjbmqg9 -- 19:47:51.715 INFO [11652]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:47:51.715 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:47:51.726 INFO [11652]: COREGRADE is stopping... -- 19:47:51.726 DEBUG [11652]: Closing database connection -- 19:47:51.726 SQL [11652]: pgsql_close() -- 19:47:59.543 INFO [11650]: COREGRADE is starting... -- 19:47:59.543 INFO [11650]: Version from config: 1.0 -- 19:47:59.543 DEBUG [11650]: Connecting to database... -- 19:47:59.543 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:59.543 SQL [11650]: pgsql_db_connect() -- 19:47:59.547 DEBUG [11650]: Database connection successful -- 19:47:59.547 INFO [11650]: _SERVER found -- 19:47:59.547 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 19:47:59.547 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 19:47:59.547 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dd61vblvvdugqkv4dvfdsj3ehnjbmqg9 -- 19:47:59.547 INFO [11650]: QUERY_STRING = /member/configure -- 19:47:59.547 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:47:59.585 INFO [11650]: COREGRADE is stopping... -- 19:47:59.585 DEBUG [11650]: Closing database connection -- 19:47:59.585 SQL [11650]: pgsql_close() -- 19:47:59.848 INFO [11650]: COREGRADE is starting... -- 19:47:59.849 INFO [11650]: Version from config: 1.0 -- 19:47:59.849 DEBUG [11650]: Connecting to database... -- 19:47:59.849 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:59.849 SQL [11650]: pgsql_db_connect() -- 19:47:59.853 DEBUG [11650]: Database connection successful -- 19:47:59.853 INFO [11650]: _SERVER found -- 19:47:59.853 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 19:47:59.853 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 19:47:59.853 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dd61vblvvdugqkv4dvfdsj3ehnjbmqg9 -- 19:47:59.853 INFO [11650]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:47:59.853 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:47:59.864 INFO [11650]: COREGRADE is stopping... -- 19:47:59.864 DEBUG [11650]: Closing database connection -- 19:47:59.864 SQL [11650]: pgsql_close() -- 19:48:00.111 INFO [11650]: COREGRADE is starting... -- 19:48:00.111 INFO [11650]: Version from config: 1.0 -- 19:48:00.111 DEBUG [11650]: Connecting to database... -- 19:48:00.112 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:48:00.112 SQL [11650]: pgsql_db_connect() -- 19:48:00.116 DEBUG [11650]: Database connection successful -- 19:48:00.116 INFO [11650]: _SERVER found -- 19:48:00.116 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 19:48:00.116 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 19:48:00.116 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dd61vblvvdugqkv4dvfdsj3ehnjbmqg9 -- 19:48:00.116 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:48:00.116 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:48:00.127 INFO [11650]: COREGRADE is stopping... -- 19:48:00.127 DEBUG [11650]: Closing database connection -- 19:48:00.127 SQL [11650]: pgsql_close() -- 19:49:08.928 INFO [12761]: COREGRADE is starting... -- 19:49:08.929 INFO [12761]: Version from config: 1.0 -- 19:49:08.929 DEBUG [12761]: Connecting to database... -- 19:49:08.929 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:49:08.929 SQL [12761]: pgsql_db_connect() -- 19:49:08.933 DEBUG [12761]: Database connection successful -- 19:49:08.933 INFO [12761]: _SERVER found -- 19:49:08.933 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 19:49:08.933 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 19:49:08.933 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dd61vblvvdugqkv4dvfdsj3ehnjbmqg9 -- 19:49:08.933 INFO [12761]: QUERY_STRING = /member/configure -- 19:49:08.933 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:49:08.976 INFO [12761]: COREGRADE is stopping... -- 19:49:08.976 DEBUG [12761]: Closing database connection -- 19:49:08.976 SQL [12761]: pgsql_close() -- 19:49:09.132 INFO [12761]: COREGRADE is starting... -- 19:49:09.133 INFO [12761]: Version from config: 1.0 -- 19:49:09.133 DEBUG [12761]: Connecting to database... -- 19:49:09.133 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:49:09.133 SQL [12761]: pgsql_db_connect() -- 19:49:09.137 DEBUG [12761]: Database connection successful -- 19:49:09.137 INFO [12761]: _SERVER found -- 19:49:09.137 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 19:49:09.137 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 19:49:09.137 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dd61vblvvdugqkv4dvfdsj3ehnjbmqg9 -- 19:49:09.137 INFO [12761]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:49:09.137 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:49:09.148 INFO [12761]: COREGRADE is stopping... -- 19:49:09.148 DEBUG [12761]: Closing database connection -- 19:49:09.148 SQL [12761]: pgsql_close() -- 19:49:09.398 INFO [12761]: COREGRADE is starting... -- 19:49:09.398 INFO [12761]: Version from config: 1.0 -- 19:49:09.398 DEBUG [12761]: Connecting to database... -- 19:49:09.399 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:49:09.399 SQL [12761]: pgsql_db_connect() -- 19:49:09.403 DEBUG [12761]: Database connection successful -- 19:49:09.403 INFO [12761]: _SERVER found -- 19:49:09.403 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 19:49:09.403 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 19:49:09.403 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dd61vblvvdugqkv4dvfdsj3ehnjbmqg9 -- 19:49:09.403 INFO [12761]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:49:09.403 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:49:09.414 INFO [12761]: COREGRADE is stopping... -- 19:49:09.414 DEBUG [12761]: Closing database connection -- 19:49:09.414 SQL [12761]: pgsql_close() -- 19:49:31.644 INFO [12763]: COREGRADE is starting... -- 19:49:31.644 INFO [12763]: Version from config: 1.0 -- 19:49:31.644 DEBUG [12763]: Connecting to database... -- 19:49:31.644 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:49:31.644 SQL [12763]: pgsql_db_connect() -- 19:49:31.649 DEBUG [12763]: Database connection successful -- 19:49:31.649 INFO [12763]: _SERVER found -- 19:49:31.649 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 19:49:31.649 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 19:49:31.649 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dd61vblvvdugqkv4dvfdsj3ehnjbmqg9 -- 19:49:31.649 INFO [12763]: QUERY_STRING = /member/configure -- 19:49:31.649 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:49:31.691 INFO [12763]: COREGRADE is stopping... -- 19:49:31.691 DEBUG [12763]: Closing database connection -- 19:49:31.691 SQL [12763]: pgsql_close() -- 19:49:31.906 INFO [12763]: COREGRADE is starting... -- 19:49:31.906 INFO [12763]: Version from config: 1.0 -- 19:49:31.907 DEBUG [12763]: Connecting to database... -- 19:49:31.907 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:49:31.907 SQL [12763]: pgsql_db_connect() -- 19:49:31.911 DEBUG [12763]: Database connection successful -- 19:49:31.911 INFO [12763]: _SERVER found -- 19:49:31.911 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 19:49:31.911 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 19:49:31.911 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dd61vblvvdugqkv4dvfdsj3ehnjbmqg9 -- 19:49:31.911 INFO [12763]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:49:31.911 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:49:31.922 INFO [12763]: COREGRADE is stopping... -- 19:49:31.922 DEBUG [12763]: Closing database connection -- 19:49:31.922 SQL [12763]: pgsql_close() -- 19:49:32.248 INFO [12763]: COREGRADE is starting... -- 19:49:32.248 INFO [12763]: Version from config: 1.0 -- 19:49:32.248 DEBUG [12763]: Connecting to database... -- 19:49:32.249 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:49:32.249 SQL [12763]: pgsql_db_connect() -- 19:49:32.253 DEBUG [12763]: Database connection successful -- 19:49:32.253 INFO [12763]: _SERVER found -- 19:49:32.253 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 19:49:32.253 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 19:49:32.253 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dd61vblvvdugqkv4dvfdsj3ehnjbmqg9 -- 19:49:32.253 INFO [12763]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:49:32.253 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:49:32.264 INFO [12763]: COREGRADE is stopping... -- 19:49:32.264 DEBUG [12763]: Closing database connection -- 19:49:32.264 SQL [12763]: pgsql_close() -- 19:49:43.227 INFO [12764]: COREGRADE is starting... -- 19:49:43.228 INFO [12764]: Version from config: 1.0 -- 19:49:43.228 DEBUG [12764]: Connecting to database... -- 19:49:43.228 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:49:43.228 SQL [12764]: pgsql_db_connect() -- 19:49:43.232 DEBUG [12764]: Database connection successful -- 19:49:43.232 INFO [12764]: _SERVER found -- 19:49:43.232 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 19:49:43.232 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 19:49:43.232 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=di29a6sav9p2d4nbnvd5nu1tiidel920 -- 19:49:43.232 INFO [12764]: QUERY_STRING = /member/configure -- 19:49:43.232 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:49:43.276 INFO [12764]: COREGRADE is stopping... -- 19:49:43.276 DEBUG [12764]: Closing database connection -- 19:49:43.276 SQL [12764]: pgsql_close() -- 19:49:43.642 INFO [12764]: COREGRADE is starting... -- 19:49:43.643 INFO [12764]: Version from config: 1.0 -- 19:49:43.643 DEBUG [12764]: Connecting to database... -- 19:49:43.643 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:49:43.643 SQL [12764]: pgsql_db_connect() -- 19:49:43.647 DEBUG [12764]: Database connection successful -- 19:49:43.647 INFO [12764]: _SERVER found -- 19:49:43.647 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 19:49:43.647 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 19:49:43.647 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=bl0ma4b1d9mj80kjsu2jcsgbclvr7jl7 -- 19:49:43.647 INFO [12764]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:49:43.647 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:49:43.658 INFO [12764]: COREGRADE is stopping... -- 19:49:43.658 DEBUG [12764]: Closing database connection -- 19:49:43.658 SQL [12764]: pgsql_close() -- 19:49:43.669 INFO [12764]: COREGRADE is starting... -- 19:49:43.669 INFO [12764]: Version from config: 1.0 -- 19:49:43.669 DEBUG [12764]: Connecting to database... -- 19:49:43.669 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:49:43.669 SQL [12764]: pgsql_db_connect() -- 19:49:43.673 DEBUG [12764]: Database connection successful -- 19:49:43.673 INFO [12764]: _SERVER found -- 19:49:43.673 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 19:49:43.673 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 19:49:43.673 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=bl0ma4b1d9mj80kjsu2jcsgbclvr7jl7 -- 19:49:43.673 INFO [12764]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:49:43.673 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:49:43.684 INFO [12764]: COREGRADE is stopping... -- 19:49:43.684 DEBUG [12764]: Closing database connection -- 19:49:43.684 SQL [12764]: pgsql_close() -- 19:49:44.097 INFO [12764]: COREGRADE is starting... -- 19:49:44.098 INFO [12764]: Version from config: 1.0 -- 19:49:44.098 DEBUG [12764]: Connecting to database... -- 19:49:44.098 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:49:44.098 SQL [12764]: pgsql_db_connect() -- 19:49:44.102 DEBUG [12764]: Database connection successful -- 19:49:44.102 INFO [12764]: _SERVER found -- 19:49:44.102 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 19:49:44.102 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 19:49:44.102 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dd61vblvvdugqkv4dvfdsj3ehnjbmqg9 -- 19:49:44.102 INFO [12764]: QUERY_STRING = /member -- 19:49:44.102 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:49:44.137 INFO [12764]: COREGRADE is stopping... -- 19:49:44.137 DEBUG [12764]: Closing database connection -- 19:49:44.137 SQL [12764]: pgsql_close() -- 19:49:44.507 INFO [12764]: COREGRADE is starting... -- 19:49:44.507 INFO [12764]: Version from config: 1.0 -- 19:49:44.507 DEBUG [12764]: Connecting to database... -- 19:49:44.507 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:49:44.507 SQL [12764]: pgsql_db_connect() -- 19:49:44.511 DEBUG [12764]: Database connection successful -- 19:49:44.512 INFO [12764]: _SERVER found -- 19:49:44.512 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 19:49:44.512 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 19:49:44.512 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dd61vblvvdugqkv4dvfdsj3ehnjbmqg9 -- 19:49:44.512 INFO [12764]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:49:44.512 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:49:44.523 INFO [12764]: COREGRADE is stopping... -- 19:49:44.523 DEBUG [12764]: Closing database connection -- 19:49:44.523 SQL [12764]: pgsql_close() -- 19:49:44.539 INFO [12764]: COREGRADE is starting... -- 19:49:44.539 INFO [12764]: Version from config: 1.0 -- 19:49:44.539 DEBUG [12764]: Connecting to database... -- 19:49:44.539 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:49:44.539 SQL [12764]: pgsql_db_connect() -- 19:49:44.543 DEBUG [12764]: Database connection successful -- 19:49:44.543 INFO [12764]: _SERVER found -- 19:49:44.543 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 19:49:44.543 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 19:49:44.543 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dd61vblvvdugqkv4dvfdsj3ehnjbmqg9 -- 19:49:44.543 INFO [12764]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:49:44.543 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:49:44.554 INFO [12764]: COREGRADE is stopping... -- 19:49:44.554 DEBUG [12764]: Closing database connection -- 19:49:44.554 SQL [12764]: pgsql_close() -- 19:49:45.237 INFO [12764]: COREGRADE is starting... -- 19:49:45.237 INFO [12764]: Version from config: 1.0 -- 19:49:45.237 DEBUG [12764]: Connecting to database... -- 19:49:45.237 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:49:45.237 SQL [12764]: pgsql_db_connect() -- 19:49:45.241 DEBUG [12764]: Database connection successful -- 19:49:45.241 INFO [12764]: _SERVER found -- 19:49:45.241 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 19:49:45.241 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 19:49:45.241 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=bl0ma4b1d9mj80kjsu2jcsgbclvr7jl7 -- 19:49:45.241 INFO [12764]: QUERY_STRING = /member -- 19:49:45.241 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:49:45.276 INFO [12764]: COREGRADE is stopping... -- 19:49:45.276 DEBUG [12764]: Closing database connection -- 19:49:45.276 SQL [12764]: pgsql_close() -- 19:49:45.491 INFO [12764]: COREGRADE is starting... -- 19:49:45.492 INFO [12764]: Version from config: 1.0 -- 19:49:45.492 DEBUG [12764]: Connecting to database... -- 19:49:45.492 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:49:45.492 SQL [12764]: pgsql_db_connect() -- 19:49:45.496 DEBUG [12764]: Database connection successful -- 19:49:45.496 INFO [12764]: _SERVER found -- 19:49:45.496 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 19:49:45.496 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 19:49:45.496 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=bl0ma4b1d9mj80kjsu2jcsgbclvr7jl7 -- 19:49:45.496 INFO [12764]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:49:45.496 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:49:45.507 INFO [12764]: COREGRADE is stopping... -- 19:49:45.507 DEBUG [12764]: Closing database connection -- 19:49:45.507 SQL [12764]: pgsql_close() -- 19:49:45.511 INFO [11637]: COREGRADE is starting... -- 19:49:45.512 INFO [11637]: Version from config: 1.0 -- 19:49:45.512 DEBUG [11637]: Connecting to database... -- 19:49:45.512 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:49:45.512 SQL [11637]: pgsql_db_connect() -- 19:49:45.516 DEBUG [11637]: Database connection successful -- 19:49:45.516 INFO [11637]: _SERVER found -- 19:49:45.516 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 19:49:45.516 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 19:49:45.516 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=bl0ma4b1d9mj80kjsu2jcsgbclvr7jl7 -- 19:49:45.516 INFO [11637]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:49:45.516 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:49:45.527 INFO [11637]: COREGRADE is stopping... -- 19:49:45.527 DEBUG [11637]: Closing database connection -- 19:49:45.527 SQL [11637]: pgsql_close() -- 19:49:46.468 INFO [11637]: COREGRADE is starting... -- 19:49:46.469 INFO [11637]: Version from config: 1.0 -- 19:49:46.469 DEBUG [11637]: Connecting to database... -- 19:49:46.469 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:49:46.469 SQL [11637]: pgsql_db_connect() -- 19:49:46.473 DEBUG [11637]: Database connection successful -- 19:49:46.473 INFO [11637]: _SERVER found -- 19:49:46.473 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 19:49:46.473 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 19:49:46.473 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dd61vblvvdugqkv4dvfdsj3ehnjbmqg9 -- 19:49:46.473 INFO [11637]: QUERY_STRING = /member/page -- 19:49:46.473 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:49:46.509 INFO [11637]: COREGRADE is stopping... -- 19:49:46.509 DEBUG [11637]: Closing database connection -- 19:49:46.509 SQL [11637]: pgsql_close() -- 19:49:46.586 INFO [11637]: COREGRADE is starting... -- 19:49:46.587 INFO [11637]: Version from config: 1.0 -- 19:49:46.587 DEBUG [11637]: Connecting to database... -- 19:49:46.587 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:49:46.587 SQL [11637]: pgsql_db_connect() -- 19:49:46.591 DEBUG [11637]: Database connection successful -- 19:49:46.591 INFO [11637]: _SERVER found -- 19:49:46.591 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 19:49:46.591 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 19:49:46.591 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=bl0ma4b1d9mj80kjsu2jcsgbclvr7jl7 -- 19:49:46.591 INFO [11637]: QUERY_STRING = /member/page -- 19:49:46.591 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:49:46.626 INFO [11637]: COREGRADE is stopping... -- 19:49:46.626 DEBUG [11637]: Closing database connection -- 19:49:46.626 SQL [11637]: pgsql_close() -- 19:49:46.772 INFO [11637]: COREGRADE is starting... -- 19:49:46.772 INFO [11637]: Version from config: 1.0 -- 19:49:46.772 DEBUG [11637]: Connecting to database... -- 19:49:46.772 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:49:46.772 SQL [11637]: pgsql_db_connect() -- 19:49:46.776 DEBUG [11637]: Database connection successful -- 19:49:46.776 INFO [11637]: _SERVER found -- 19:49:46.776 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 19:49:46.776 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 19:49:46.776 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dd61vblvvdugqkv4dvfdsj3ehnjbmqg9 -- 19:49:46.776 INFO [11637]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:49:46.776 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:49:46.787 INFO [11637]: COREGRADE is stopping... -- 19:49:46.788 DEBUG [11637]: Closing database connection -- 19:49:46.788 SQL [11637]: pgsql_close() -- 19:49:46.827 INFO [11637]: COREGRADE is starting... -- 19:49:46.827 INFO [11637]: Version from config: 1.0 -- 19:49:46.827 DEBUG [11637]: Connecting to database... -- 19:49:46.827 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:49:46.827 SQL [11637]: pgsql_db_connect() -- 19:49:46.837 INFO [12764]: COREGRADE is starting... -- 19:49:46.837 INFO [12764]: Version from config: 1.0 -- 19:49:46.837 DEBUG [12764]: Connecting to database... -- 19:49:46.837 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:49:46.837 SQL [12764]: pgsql_db_connect() -- 19:49:46.831 DEBUG [11637]: Database connection successful -- 19:49:46.831 INFO [11637]: _SERVER found -- 19:49:46.831 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 19:49:46.831 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 19:49:46.831 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=bl0ma4b1d9mj80kjsu2jcsgbclvr7jl7 -- 19:49:46.831 INFO [11637]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:49:46.831 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:49:46.842 INFO [11637]: COREGRADE is stopping... -- 19:49:46.842 DEBUG [11637]: Closing database connection -- 19:49:46.842 SQL [11637]: pgsql_close() -- 19:49:46.841 DEBUG [12764]: Database connection successful -- 19:49:46.841 INFO [12764]: _SERVER found -- 19:49:46.841 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 19:49:46.841 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 19:49:46.841 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=bl0ma4b1d9mj80kjsu2jcsgbclvr7jl7 -- 19:49:46.841 INFO [12764]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:49:46.841 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:49:46.852 INFO [12764]: COREGRADE is stopping... -- 19:49:46.853 DEBUG [12764]: Closing database connection -- 19:49:46.853 SQL [12764]: pgsql_close() -- 19:49:47.001 INFO [12764]: COREGRADE is starting... -- 19:49:47.001 INFO [12764]: Version from config: 1.0 -- 19:49:47.001 DEBUG [12764]: Connecting to database... -- 19:49:47.001 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:49:47.001 SQL [12764]: pgsql_db_connect() -- 19:49:47.005 DEBUG [12764]: Database connection successful -- 19:49:47.005 INFO [12764]: _SERVER found -- 19:49:47.005 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 19:49:47.005 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 19:49:47.005 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dd61vblvvdugqkv4dvfdsj3ehnjbmqg9 -- 19:49:47.005 INFO [12764]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:49:47.005 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:49:47.016 INFO [12764]: COREGRADE is stopping... -- 19:49:47.016 DEBUG [12764]: Closing database connection -- 19:49:47.016 SQL [12764]: pgsql_close() -- 19:49:56.512 INFO [11644]: COREGRADE is starting... -- 19:49:56.512 INFO [11644]: Version from config: 1.0 -- 19:49:56.512 DEBUG [11644]: Connecting to database... -- 19:49:56.512 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:49:56.512 SQL [11644]: pgsql_db_connect() -- 19:49:56.516 DEBUG [11644]: Database connection successful -- 19:49:56.516 INFO [11644]: _SERVER found -- 19:49:56.516 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 19:49:56.516 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 19:49:56.516 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dd61vblvvdugqkv4dvfdsj3ehnjbmqg9 -- 19:49:56.516 INFO [11644]: QUERY_STRING = /member/page -- 19:49:56.516 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:49:56.553 INFO [11644]: COREGRADE is stopping... -- 19:49:56.553 DEBUG [11644]: Closing database connection -- 19:49:56.553 SQL [11644]: pgsql_close() -- 19:49:57.087 INFO [11644]: COREGRADE is starting... -- 19:49:57.087 INFO [11644]: Version from config: 1.0 -- 19:49:57.087 DEBUG [11644]: Connecting to database... -- 19:49:57.087 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:49:57.087 SQL [11644]: pgsql_db_connect() -- 19:49:57.091 DEBUG [11644]: Database connection successful -- 19:49:57.091 INFO [11644]: _SERVER found -- 19:49:57.091 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 19:49:57.091 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 19:49:57.091 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dd61vblvvdugqkv4dvfdsj3ehnjbmqg9 -- 19:49:57.091 INFO [11644]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:49:57.091 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:49:57.102 INFO [11644]: COREGRADE is stopping... -- 19:49:57.102 DEBUG [11644]: Closing database connection -- 19:49:57.102 SQL [11644]: pgsql_close() -- 19:49:57.328 INFO [11644]: COREGRADE is starting... -- 19:49:57.328 INFO [11644]: Version from config: 1.0 -- 19:49:57.328 DEBUG [11644]: Connecting to database... -- 19:49:57.328 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:49:57.329 SQL [11644]: pgsql_db_connect() -- 19:49:57.333 DEBUG [11644]: Database connection successful -- 19:49:57.333 INFO [11644]: _SERVER found -- 19:49:57.333 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 19:49:57.333 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 19:49:57.333 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dd61vblvvdugqkv4dvfdsj3ehnjbmqg9 -- 19:49:57.333 INFO [11644]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:49:57.333 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:49:57.344 INFO [11644]: COREGRADE is stopping... -- 19:49:57.344 DEBUG [11644]: Closing database connection -- 19:49:57.344 SQL [11644]: pgsql_close() -- 19:50:02.381 INFO [11644]: COREGRADE is starting... -- 19:50:02.381 INFO [11644]: Version from config: 1.0 -- 19:50:02.381 DEBUG [11644]: Connecting to database... -- 19:50:02.381 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:50:02.381 SQL [11644]: pgsql_db_connect() -- 19:50:02.385 DEBUG [11644]: Database connection successful -- 19:50:02.385 INFO [11644]: _SERVER found -- 19:50:02.385 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 19:50:02.385 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 19:50:02.385 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dd61vblvvdugqkv4dvfdsj3ehnjbmqg9 -- 19:50:02.385 INFO [11644]: QUERY_STRING = /member/page -- 19:50:02.385 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:50:02.418 INFO [11644]: COREGRADE is stopping... -- 19:50:02.418 DEBUG [11644]: Closing database connection -- 19:50:02.418 SQL [11644]: pgsql_close() -- 19:50:02.539 INFO [11644]: COREGRADE is starting... -- 19:50:02.539 INFO [11644]: Version from config: 1.0 -- 19:50:02.539 DEBUG [11644]: Connecting to database... -- 19:50:02.539 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:50:02.539 SQL [11644]: pgsql_db_connect() -- 19:50:02.543 DEBUG [11644]: Database connection successful -- 19:50:02.543 INFO [11644]: _SERVER found -- 19:50:02.543 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 19:50:02.543 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 19:50:02.543 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dd61vblvvdugqkv4dvfdsj3ehnjbmqg9 -- 19:50:02.543 INFO [11644]: QUERY_STRING = /favicon.ico -- 19:50:02.543 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:50:02.554 INFO [11644]: COREGRADE is stopping... -- 19:50:02.554 DEBUG [11644]: Closing database connection -- 19:50:02.554 SQL [11644]: pgsql_close() -- 19:50:59.400 INFO [11639]: COREGRADE is starting... -- 19:50:59.400 INFO [11639]: Version from config: 1.0 -- 19:50:59.400 DEBUG [11639]: Connecting to database... -- 19:50:59.400 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:50:59.400 SQL [11639]: pgsql_db_connect() -- 19:50:59.404 DEBUG [11639]: Database connection successful -- 19:50:59.405 INFO [11639]: _SERVER found -- 19:50:59.405 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 19:50:59.405 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 19:50:59.405 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=dd61vblvvdugqkv4dvfdsj3ehnjbmqg9 -- 19:50:59.405 INFO [11639]: QUERY_STRING = /member/page -- 19:50:59.405 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:50:59.445 INFO [11639]: COREGRADE is stopping... -- 19:50:59.445 DEBUG [11639]: Closing database connection -- 19:50:59.445 SQL [11639]: pgsql_close() -- 19:50:59.646 INFO [11639]: COREGRADE is starting... -- 19:50:59.647 INFO [11639]: Version from config: 1.0 -- 19:50:59.647 DEBUG [11639]: Connecting to database... -- 19:50:59.647 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:50:59.647 SQL [11639]: pgsql_db_connect() -- 19:50:59.651 DEBUG [11639]: Database connection successful -- 19:50:59.651 INFO [11639]: _SERVER found -- 19:50:59.651 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 19:50:59.651 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 19:50:59.651 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=8a6ne2fgn9sqkjjkits8ik8osr7tqtv4 -- 19:50:59.651 INFO [11639]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:50:59.651 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:50:59.663 INFO [11639]: COREGRADE is stopping... -- 19:50:59.663 DEBUG [11639]: Closing database connection -- 19:50:59.663 SQL [11639]: pgsql_close() -- 19:50:59.702 INFO [11639]: COREGRADE is starting... -- 19:50:59.702 INFO [11639]: Version from config: 1.0 -- 19:50:59.702 DEBUG [11639]: Connecting to database... -- 19:50:59.703 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:50:59.703 SQL [11639]: pgsql_db_connect() -- 19:50:59.707 DEBUG [11639]: Database connection successful -- 19:50:59.707 INFO [11639]: _SERVER found -- 19:50:59.707 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 19:50:59.707 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 19:50:59.707 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=8a6ne2fgn9sqkjjkits8ik8osr7tqtv4 -- 19:50:59.707 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:50:59.707 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:50:59.719 INFO [11639]: COREGRADE is stopping... -- 19:50:59.719 DEBUG [11639]: Closing database connection -- 19:50:59.719 SQL [11639]: pgsql_close() -- 19:51:17.061 INFO [11638]: COREGRADE is starting... -- 19:51:17.062 INFO [11638]: Version from config: 1.0 -- 19:51:17.062 DEBUG [11638]: Connecting to database... -- 19:51:17.062 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:51:17.062 SQL [11638]: pgsql_db_connect() -- 19:51:17.066 DEBUG [11638]: Database connection successful -- 19:51:17.066 INFO [11638]: _SERVER found -- 19:51:17.066 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 19:51:17.066 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 19:51:17.066 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=8a6ne2fgn9sqkjjkits8ik8osr7tqtv4 -- 19:51:17.066 INFO [11638]: QUERY_STRING = /member/page -- 19:51:17.066 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:51:17.104 INFO [11638]: COREGRADE is stopping... -- 19:51:17.104 DEBUG [11638]: Closing database connection -- 19:51:17.104 SQL [11638]: pgsql_close() -- 19:51:17.299 INFO [11638]: COREGRADE is starting... -- 19:51:17.299 INFO [11638]: Version from config: 1.0 -- 19:51:17.299 DEBUG [11638]: Connecting to database... -- 19:51:17.299 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:51:17.299 SQL [11638]: pgsql_db_connect() -- 19:51:17.303 DEBUG [11638]: Database connection successful -- 19:51:17.303 INFO [11638]: _SERVER found -- 19:51:17.303 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 19:51:17.303 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 19:51:17.303 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=8a6ne2fgn9sqkjjkits8ik8osr7tqtv4 -- 19:51:17.303 INFO [11638]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:51:17.303 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:51:17.314 INFO [11638]: COREGRADE is stopping... -- 19:51:17.314 DEBUG [11638]: Closing database connection -- 19:51:17.314 SQL [11638]: pgsql_close() -- 19:51:17.517 INFO [11638]: COREGRADE is starting... -- 19:51:17.518 INFO [11638]: Version from config: 1.0 -- 19:51:17.518 DEBUG [11638]: Connecting to database... -- 19:51:17.518 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:51:17.518 SQL [11638]: pgsql_db_connect() -- 19:51:17.522 DEBUG [11638]: Database connection successful -- 19:51:17.522 INFO [11638]: _SERVER found -- 19:51:17.522 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 19:51:17.522 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 19:51:17.522 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=8a6ne2fgn9sqkjjkits8ik8osr7tqtv4 -- 19:51:17.522 INFO [11638]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:51:17.522 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:51:17.533 INFO [11638]: COREGRADE is stopping... -- 19:51:17.533 DEBUG [11638]: Closing database connection -- 19:51:17.533 SQL [11638]: pgsql_close() -- 19:51:17.552 INFO [11638]: COREGRADE is starting... -- 19:51:17.552 INFO [11638]: Version from config: 1.0 -- 19:51:17.552 DEBUG [11638]: Connecting to database... -- 19:51:17.552 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:51:17.552 SQL [11638]: pgsql_db_connect() -- 19:51:17.556 DEBUG [11638]: Database connection successful -- 19:51:17.556 INFO [11638]: _SERVER found -- 19:51:17.556 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 19:51:17.556 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 19:51:17.556 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=8a6ne2fgn9sqkjjkits8ik8osr7tqtv4 -- 19:51:17.556 INFO [11638]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:51:17.556 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:51:17.567 INFO [11638]: COREGRADE is stopping... -- 19:51:17.567 DEBUG [11638]: Closing database connection -- 19:51:17.567 SQL [11638]: pgsql_close() -- 19:51:40.372 INFO [11636]: COREGRADE is starting... -- 19:51:40.372 INFO [11636]: Version from config: 1.0 -- 19:51:40.372 DEBUG [11636]: Connecting to database... -- 19:51:40.372 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:51:40.372 SQL [11636]: pgsql_db_connect() -- 19:51:40.376 DEBUG [11636]: Database connection successful -- 19:51:40.376 INFO [11636]: _SERVER found -- 19:51:40.376 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 19:51:40.376 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 19:51:40.376 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=8a6ne2fgn9sqkjjkits8ik8osr7tqtv4 -- 19:51:40.376 INFO [11636]: QUERY_STRING = /member/configure -- 19:51:40.376 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:51:40.412 INFO [11636]: COREGRADE is stopping... -- 19:51:40.412 DEBUG [11636]: Closing database connection -- 19:51:40.412 SQL [11636]: pgsql_close() -- 19:51:40.726 INFO [11636]: COREGRADE is starting... -- 19:51:40.726 INFO [11636]: Version from config: 1.0 -- 19:51:40.726 DEBUG [11636]: Connecting to database... -- 19:51:40.726 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:51:40.726 SQL [11636]: pgsql_db_connect() -- 19:51:40.730 DEBUG [11636]: Database connection successful -- 19:51:40.730 INFO [11636]: _SERVER found -- 19:51:40.730 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 19:51:40.730 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 19:51:40.730 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=8a6ne2fgn9sqkjjkits8ik8osr7tqtv4 -- 19:51:40.730 INFO [11636]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:51:40.730 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:51:40.741 INFO [11636]: COREGRADE is stopping... -- 19:51:40.741 DEBUG [11636]: Closing database connection -- 19:51:40.741 SQL [11636]: pgsql_close() -- 19:52:02.240 INFO [11652]: COREGRADE is starting... -- 19:52:02.241 INFO [11652]: Version from config: 1.0 -- 19:52:02.241 DEBUG [11652]: Connecting to database... -- 19:52:02.241 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:52:02.241 SQL [11652]: pgsql_db_connect() -- 19:52:02.245 DEBUG [11652]: Database connection successful -- 19:52:02.245 INFO [11652]: _SERVER found -- 19:52:02.245 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 19:52:02.245 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 19:52:02.245 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=bl0ma4b1d9mj80kjsu2jcsgbclvr7jl7 -- 19:52:02.245 INFO [11652]: QUERY_STRING = /member/configure -- 19:52:02.245 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:52:02.280 INFO [11652]: COREGRADE is stopping... -- 19:52:02.280 DEBUG [11652]: Closing database connection -- 19:52:02.280 SQL [11652]: pgsql_close() -- 19:52:02.579 INFO [11652]: COREGRADE is starting... -- 19:52:02.580 INFO [11652]: Version from config: 1.0 -- 19:52:02.580 DEBUG [11652]: Connecting to database... -- 19:52:02.580 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:52:02.580 SQL [11652]: pgsql_db_connect() -- 19:52:02.584 DEBUG [11652]: Database connection successful -- 19:52:02.584 INFO [11652]: _SERVER found -- 19:52:02.584 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 19:52:02.584 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 19:52:02.584 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=bl0ma4b1d9mj80kjsu2jcsgbclvr7jl7 -- 19:52:02.584 INFO [11652]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:52:02.584 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:52:02.595 INFO [11652]: COREGRADE is stopping... -- 19:52:02.595 DEBUG [11652]: Closing database connection -- 19:52:02.595 SQL [11652]: pgsql_close() -- 19:52:02.600 INFO [11650]: COREGRADE is starting... -- 19:52:02.601 INFO [11650]: Version from config: 1.0 -- 19:52:02.601 DEBUG [11650]: Connecting to database... -- 19:52:02.601 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:52:02.601 SQL [11650]: pgsql_db_connect() -- 19:52:02.605 DEBUG [11650]: Database connection successful -- 19:52:02.605 INFO [11650]: _SERVER found -- 19:52:02.605 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 19:52:02.605 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 19:52:02.605 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=bl0ma4b1d9mj80kjsu2jcsgbclvr7jl7 -- 19:52:02.605 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:52:02.605 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:52:02.616 INFO [11650]: COREGRADE is stopping... -- 19:52:02.616 DEBUG [11650]: Closing database connection -- 19:52:02.616 SQL [11650]: pgsql_close() -- 19:52:04.128 INFO [11650]: COREGRADE is starting... -- 19:52:04.128 INFO [11650]: Version from config: 1.0 -- 19:52:04.128 DEBUG [11650]: Connecting to database... -- 19:52:04.129 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:52:04.129 SQL [11650]: pgsql_db_connect() -- 19:52:04.133 DEBUG [11650]: Database connection successful -- 19:52:04.133 INFO [11650]: _SERVER found -- 19:52:04.133 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 19:52:04.133 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 19:52:04.133 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=bl0ma4b1d9mj80kjsu2jcsgbclvr7jl7 -- 19:52:04.133 INFO [11650]: QUERY_STRING = /member -- 19:52:04.133 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:52:04.170 INFO [11650]: COREGRADE is stopping... -- 19:52:04.170 DEBUG [11650]: Closing database connection -- 19:52:04.170 SQL [11650]: pgsql_close() -- 19:52:04.378 INFO [11650]: COREGRADE is starting... -- 19:52:04.378 INFO [11650]: Version from config: 1.0 -- 19:52:04.378 DEBUG [11650]: Connecting to database... -- 19:52:04.378 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:52:04.378 SQL [11650]: pgsql_db_connect() -- 19:52:04.389 INFO [11652]: COREGRADE is starting... -- 19:52:04.390 INFO [11652]: Version from config: 1.0 -- 19:52:04.390 DEBUG [11652]: Connecting to database... -- 19:52:04.390 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:52:04.390 SQL [11652]: pgsql_db_connect() -- 19:52:04.382 DEBUG [11650]: Database connection successful -- 19:52:04.382 INFO [11650]: _SERVER found -- 19:52:04.382 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 19:52:04.382 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 19:52:04.382 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=bl0ma4b1d9mj80kjsu2jcsgbclvr7jl7 -- 19:52:04.382 INFO [11650]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:52:04.382 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:52:04.393 INFO [11650]: COREGRADE is stopping... -- 19:52:04.393 DEBUG [11650]: Closing database connection -- 19:52:04.393 SQL [11650]: pgsql_close() -- 19:52:04.394 DEBUG [11652]: Database connection successful -- 19:52:04.394 INFO [11652]: _SERVER found -- 19:52:04.394 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 19:52:04.394 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 19:52:04.394 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=bl0ma4b1d9mj80kjsu2jcsgbclvr7jl7 -- 19:52:04.394 INFO [11652]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:52:04.394 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:52:04.405 INFO [11652]: COREGRADE is stopping... -- 19:52:04.405 DEBUG [11652]: Closing database connection -- 19:52:04.405 SQL [11652]: pgsql_close() -- 19:52:05.198 INFO [11652]: COREGRADE is starting... -- 19:52:05.198 INFO [11652]: Version from config: 1.0 -- 19:52:05.198 DEBUG [11652]: Connecting to database... -- 19:52:05.198 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:52:05.198 SQL [11652]: pgsql_db_connect() -- 19:52:05.202 DEBUG [11652]: Database connection successful -- 19:52:05.202 INFO [11652]: _SERVER found -- 19:52:05.202 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 19:52:05.202 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 19:52:05.202 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=bl0ma4b1d9mj80kjsu2jcsgbclvr7jl7 -- 19:52:05.202 INFO [11652]: QUERY_STRING = /member/page -- 19:52:05.202 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:52:05.241 INFO [11652]: COREGRADE is stopping... -- 19:52:05.241 DEBUG [11652]: Closing database connection -- 19:52:05.241 SQL [11652]: pgsql_close() -- 19:52:05.463 INFO [11652]: COREGRADE is starting... -- 19:52:05.464 INFO [11652]: Version from config: 1.0 -- 19:52:05.464 DEBUG [11652]: Connecting to database... -- 19:52:05.464 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:52:05.464 SQL [11652]: pgsql_db_connect() -- 19:52:05.468 DEBUG [11652]: Database connection successful -- 19:52:05.468 INFO [11652]: _SERVER found -- 19:52:05.468 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 19:52:05.468 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 19:52:05.468 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=bl0ma4b1d9mj80kjsu2jcsgbclvr7jl7 -- 19:52:05.468 INFO [11652]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:52:05.468 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:52:05.479 INFO [11652]: COREGRADE is stopping... -- 19:52:05.479 DEBUG [11652]: Closing database connection -- 19:52:05.479 SQL [11652]: pgsql_close() -- 19:52:05.542 INFO [11652]: COREGRADE is starting... -- 19:52:05.542 INFO [11652]: Version from config: 1.0 -- 19:52:05.542 DEBUG [11652]: Connecting to database... -- 19:52:05.542 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:52:05.542 SQL [11652]: pgsql_db_connect() -- 19:52:05.546 DEBUG [11652]: Database connection successful -- 19:52:05.546 INFO [11652]: _SERVER found -- 19:52:05.546 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 19:52:05.546 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 19:52:05.546 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=bl0ma4b1d9mj80kjsu2jcsgbclvr7jl7 -- 19:52:05.546 INFO [11652]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:52:05.546 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:52:05.557 INFO [11652]: COREGRADE is stopping... -- 19:52:05.557 DEBUG [11652]: Closing database connection -- 19:52:05.558 SQL [11652]: pgsql_close() -- 19:52:05.566 INFO [11652]: COREGRADE is starting... -- 19:52:05.567 INFO [11652]: Version from config: 1.0 -- 19:52:05.567 DEBUG [11652]: Connecting to database... -- 19:52:05.567 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:52:05.567 SQL [11652]: pgsql_db_connect() -- 19:52:05.571 DEBUG [11652]: Database connection successful -- 19:52:05.571 INFO [11652]: _SERVER found -- 19:52:05.571 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 19:52:05.571 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 19:52:05.571 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=bl0ma4b1d9mj80kjsu2jcsgbclvr7jl7 -- 19:52:05.571 INFO [11652]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:52:05.571 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:52:05.581 INFO [11652]: COREGRADE is stopping... -- 19:52:05.582 DEBUG [11652]: Closing database connection -- 19:52:05.582 SQL [11652]: pgsql_close() -- 19:58:56.828 INFO [12761]: COREGRADE is starting... -- 19:58:56.829 INFO [12761]: Version from config: 1.0 -- 19:58:56.829 DEBUG [12761]: Connecting to database... -- 19:58:56.829 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:56.829 SQL [12761]: pgsql_db_connect() -- 19:58:56.833 DEBUG [12761]: Database connection successful -- 19:58:56.833 INFO [12761]: _SERVER found -- 19:58:56.833 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 19:58:56.833 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:56.833 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=bl0ma4b1d9mj80kjsu2jcsgbclvr7jl7 -- 19:58:56.833 INFO [12761]: QUERY_STRING = /member/page -- 19:58:56.833 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:56.874 INFO [12761]: COREGRADE is stopping... -- 19:58:56.874 DEBUG [12761]: Closing database connection -- 19:58:56.874 SQL [12761]: pgsql_close() -- 19:58:57.237 INFO [12761]: COREGRADE is starting... -- 19:58:57.238 INFO [12761]: Version from config: 1.0 -- 19:58:57.238 DEBUG [12761]: Connecting to database... -- 19:58:57.238 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:57.238 SQL [12761]: pgsql_db_connect() -- 19:58:57.242 DEBUG [12761]: Database connection successful -- 19:58:57.242 INFO [12761]: _SERVER found -- 19:58:57.242 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 19:58:57.242 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:57.242 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0ha41smv00gqbg57esajki36e8faa4oj -- 19:58:57.242 INFO [12761]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:58:57.242 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:57.253 INFO [12761]: COREGRADE is stopping... -- 19:58:57.253 DEBUG [12761]: Closing database connection -- 19:58:57.253 SQL [12761]: pgsql_close() -- 19:58:57.325 INFO [12761]: COREGRADE is starting... -- 19:58:57.325 INFO [12761]: Version from config: 1.0 -- 19:58:57.325 DEBUG [12761]: Connecting to database... -- 19:58:57.325 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:57.325 SQL [12761]: pgsql_db_connect() -- 19:58:57.329 DEBUG [12761]: Database connection successful -- 19:58:57.329 INFO [12761]: _SERVER found -- 19:58:57.329 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 19:58:57.329 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:57.329 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0ha41smv00gqbg57esajki36e8faa4oj -- 19:58:57.329 INFO [12761]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:58:57.329 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:57.340 INFO [12761]: COREGRADE is stopping... -- 19:58:57.340 DEBUG [12761]: Closing database connection -- 19:58:57.340 SQL [12761]: pgsql_close() -- 19:58:57.350 INFO [12761]: COREGRADE is starting... -- 19:58:57.350 INFO [12761]: Version from config: 1.0 -- 19:58:57.350 DEBUG [12761]: Connecting to database... -- 19:58:57.350 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:57.350 SQL [12761]: pgsql_db_connect() -- 19:58:57.354 DEBUG [12761]: Database connection successful -- 19:58:57.354 INFO [12761]: _SERVER found -- 19:58:57.354 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 19:58:57.354 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:57.354 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0ha41smv00gqbg57esajki36e8faa4oj -- 19:58:57.354 INFO [12761]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:58:57.354 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:57.365 INFO [12761]: COREGRADE is stopping... -- 19:58:57.365 DEBUG [12761]: Closing database connection -- 19:58:57.365 SQL [12761]: pgsql_close() -- 19:58:59.307 INFO [12761]: COREGRADE is starting... -- 19:58:59.307 INFO [12761]: Version from config: 1.0 -- 19:58:59.307 DEBUG [12761]: Connecting to database... -- 19:58:59.307 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:59.307 SQL [12761]: pgsql_db_connect() -- 19:58:59.311 DEBUG [12761]: Database connection successful -- 19:58:59.311 INFO [12761]: _SERVER found -- 19:58:59.311 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 19:58:59.311 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:59.311 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0ha41smv00gqbg57esajki36e8faa4oj -- 19:58:59.311 INFO [12761]: QUERY_STRING = /member/page -- 19:58:59.311 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:59.351 INFO [12761]: COREGRADE is stopping... -- 19:58:59.351 DEBUG [12761]: Closing database connection -- 19:58:59.351 SQL [12761]: pgsql_close() -- 19:58:59.562 INFO [12761]: COREGRADE is starting... -- 19:58:59.562 INFO [12761]: Version from config: 1.0 -- 19:58:59.562 DEBUG [12761]: Connecting to database... -- 19:58:59.562 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:59.562 SQL [12761]: pgsql_db_connect() -- 19:58:59.566 DEBUG [12761]: Database connection successful -- 19:58:59.566 INFO [12761]: _SERVER found -- 19:58:59.566 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 19:58:59.566 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:59.566 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0ha41smv00gqbg57esajki36e8faa4oj -- 19:58:59.566 INFO [12761]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:58:59.566 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:59.577 INFO [12761]: COREGRADE is stopping... -- 19:58:59.578 DEBUG [12761]: Closing database connection -- 19:58:59.578 SQL [12761]: pgsql_close() -- 19:58:59.641 INFO [12761]: COREGRADE is starting... -- 19:58:59.641 INFO [12761]: Version from config: 1.0 -- 19:58:59.641 DEBUG [12761]: Connecting to database... -- 19:58:59.641 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:59.641 SQL [12761]: pgsql_db_connect() -- 19:58:59.645 DEBUG [12761]: Database connection successful -- 19:58:59.645 INFO [12761]: _SERVER found -- 19:58:59.645 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 19:58:59.645 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:59.645 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0ha41smv00gqbg57esajki36e8faa4oj -- 19:58:59.645 INFO [12761]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:58:59.645 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:59.656 INFO [12761]: COREGRADE is stopping... -- 19:58:59.656 DEBUG [12761]: Closing database connection -- 19:58:59.656 SQL [12761]: pgsql_close() -- 19:58:59.664 INFO [12761]: COREGRADE is starting... -- 19:58:59.664 INFO [12761]: Version from config: 1.0 -- 19:58:59.664 DEBUG [12761]: Connecting to database... -- 19:58:59.664 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:59.664 SQL [12761]: pgsql_db_connect() -- 19:58:59.668 DEBUG [12761]: Database connection successful -- 19:58:59.668 INFO [12761]: _SERVER found -- 19:58:59.668 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 19:58:59.668 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:59.668 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0ha41smv00gqbg57esajki36e8faa4oj -- 19:58:59.668 INFO [12761]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:58:59.668 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:59.679 INFO [12761]: COREGRADE is stopping... -- 19:58:59.679 DEBUG [12761]: Closing database connection -- 19:58:59.679 SQL [12761]: pgsql_close() -- 20:10:42.636 INFO [12763]: COREGRADE is starting... -- 20:10:42.637 INFO [12763]: Version from config: 1.0 -- 20:10:42.637 DEBUG [12763]: Connecting to database... -- 20:10:42.637 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:10:42.637 SQL [12763]: pgsql_db_connect() -- 20:10:42.641 DEBUG [12763]: Database connection successful -- 20:10:42.641 INFO [12763]: _SERVER found -- 20:10:42.641 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 20:10:42.641 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 20:10:42.641 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0ha41smv00gqbg57esajki36e8faa4oj -- 20:10:42.641 INFO [12763]: QUERY_STRING = /member/configure -- 20:10:42.641 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:10:42.679 INFO [12763]: COREGRADE is stopping... -- 20:10:42.679 DEBUG [12763]: Closing database connection -- 20:10:42.679 SQL [12763]: pgsql_close() -- 20:10:43.272 INFO [12763]: COREGRADE is starting... -- 20:10:43.272 INFO [12763]: Version from config: 1.0 -- 20:10:43.272 DEBUG [12763]: Connecting to database... -- 20:10:43.272 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:10:43.272 SQL [12763]: pgsql_db_connect() -- 20:10:43.276 DEBUG [12763]: Database connection successful -- 20:10:43.276 INFO [12763]: _SERVER found -- 20:10:43.276 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 20:10:43.276 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 20:10:43.276 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=584hmippmiieikc3lr6v8ma83bjfqcn1 -- 20:10:43.276 INFO [12763]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:10:43.277 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:10:43.288 INFO [12763]: COREGRADE is stopping... -- 20:10:43.288 DEBUG [12763]: Closing database connection -- 20:10:43.288 SQL [12763]: pgsql_close() -- 20:10:43.299 INFO [11637]: COREGRADE is starting... -- 20:10:43.300 INFO [11637]: Version from config: 1.0 -- 20:10:43.300 DEBUG [11637]: Connecting to database... -- 20:10:43.300 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:10:43.300 SQL [11637]: pgsql_db_connect() -- 20:10:43.304 DEBUG [11637]: Database connection successful -- 20:10:43.304 INFO [11637]: _SERVER found -- 20:10:43.304 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 20:10:43.304 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 20:10:43.304 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=584hmippmiieikc3lr6v8ma83bjfqcn1 -- 20:10:43.304 INFO [11637]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:10:43.304 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:10:43.315 INFO [11637]: COREGRADE is stopping... -- 20:10:43.315 DEBUG [11637]: Closing database connection -- 20:10:43.315 SQL [11637]: pgsql_close() -- 20:10:46.975 INFO [11637]: COREGRADE is starting... -- 20:10:46.975 INFO [11637]: Version from config: 1.0 -- 20:10:46.975 DEBUG [11637]: Connecting to database... -- 20:10:46.975 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:10:46.976 SQL [11637]: pgsql_db_connect() -- 20:10:46.980 DEBUG [11637]: Database connection successful -- 20:10:46.980 INFO [11637]: _SERVER found -- 20:10:46.980 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 20:10:46.980 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 20:10:46.980 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=584hmippmiieikc3lr6v8ma83bjfqcn1 -- 20:10:46.980 INFO [11637]: QUERY_STRING = /member -- 20:10:46.980 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:10:47.015 INFO [11637]: COREGRADE is stopping... -- 20:10:47.015 DEBUG [11637]: Closing database connection -- 20:10:47.015 SQL [11637]: pgsql_close() -- 20:10:47.444 INFO [11637]: COREGRADE is starting... -- 20:10:47.444 INFO [11637]: Version from config: 1.0 -- 20:10:47.444 DEBUG [11637]: Connecting to database... -- 20:10:47.444 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:10:47.444 SQL [11637]: pgsql_db_connect() -- 20:10:47.448 DEBUG [11637]: Database connection successful -- 20:10:47.448 INFO [11637]: _SERVER found -- 20:10:47.448 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 20:10:47.448 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 20:10:47.448 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=584hmippmiieikc3lr6v8ma83bjfqcn1 -- 20:10:47.448 INFO [11637]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:10:47.448 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:10:47.459 INFO [11637]: COREGRADE is stopping... -- 20:10:47.459 DEBUG [11637]: Closing database connection -- 20:10:47.459 SQL [11637]: pgsql_close() -- 20:10:47.465 INFO [12763]: COREGRADE is starting... -- 20:10:47.466 INFO [12763]: Version from config: 1.0 -- 20:10:47.466 DEBUG [12763]: Connecting to database... -- 20:10:47.466 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:10:47.466 SQL [12763]: pgsql_db_connect() -- 20:10:47.469 DEBUG [12763]: Database connection successful -- 20:10:47.470 INFO [12763]: _SERVER found -- 20:10:47.470 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 20:10:47.470 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 20:10:47.470 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=584hmippmiieikc3lr6v8ma83bjfqcn1 -- 20:10:47.470 INFO [12763]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:10:47.470 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:10:47.480 INFO [12763]: COREGRADE is stopping... -- 20:10:47.481 DEBUG [12763]: Closing database connection -- 20:10:47.481 SQL [12763]: pgsql_close() -- 20:10:49.447 INFO [12763]: COREGRADE is starting... -- 20:10:49.447 INFO [12763]: Version from config: 1.0 -- 20:10:49.447 DEBUG [12763]: Connecting to database... -- 20:10:49.447 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:10:49.447 SQL [12763]: pgsql_db_connect() -- 20:10:49.451 DEBUG [12763]: Database connection successful -- 20:10:49.451 INFO [12763]: _SERVER found -- 20:10:49.451 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 20:10:49.451 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 20:10:49.451 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=584hmippmiieikc3lr6v8ma83bjfqcn1 -- 20:10:49.451 INFO [12763]: QUERY_STRING = /member/page -- 20:10:49.451 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:10:49.491 INFO [12763]: COREGRADE is stopping... -- 20:10:49.491 DEBUG [12763]: Closing database connection -- 20:10:49.491 SQL [12763]: pgsql_close() -- 20:10:49.788 INFO [12763]: COREGRADE is starting... -- 20:10:49.789 INFO [12763]: Version from config: 1.0 -- 20:10:49.789 DEBUG [12763]: Connecting to database... -- 20:10:49.789 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:10:49.789 SQL [12763]: pgsql_db_connect() -- 20:10:49.793 DEBUG [12763]: Database connection successful -- 20:10:49.793 INFO [12763]: _SERVER found -- 20:10:49.793 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 20:10:49.793 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 20:10:49.793 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=584hmippmiieikc3lr6v8ma83bjfqcn1 -- 20:10:49.793 INFO [12763]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:10:49.793 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:10:49.804 INFO [12763]: COREGRADE is stopping... -- 20:10:49.804 DEBUG [12763]: Closing database connection -- 20:10:49.804 SQL [12763]: pgsql_close() -- 20:10:49.878 INFO [12763]: COREGRADE is starting... -- 20:10:49.878 INFO [12763]: Version from config: 1.0 -- 20:10:49.878 DEBUG [12763]: Connecting to database... -- 20:10:49.878 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:10:49.878 SQL [12763]: pgsql_db_connect() -- 20:10:49.882 DEBUG [12763]: Database connection successful -- 20:10:49.882 INFO [12763]: _SERVER found -- 20:10:49.882 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 20:10:49.882 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 20:10:49.882 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=584hmippmiieikc3lr6v8ma83bjfqcn1 -- 20:10:49.882 INFO [12763]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:10:49.882 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:10:49.893 INFO [12763]: COREGRADE is stopping... -- 20:10:49.893 DEBUG [12763]: Closing database connection -- 20:10:49.893 SQL [12763]: pgsql_close() -- 20:10:49.901 INFO [12763]: COREGRADE is starting... -- 20:10:49.901 INFO [12763]: Version from config: 1.0 -- 20:10:49.901 DEBUG [12763]: Connecting to database... -- 20:10:49.901 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:10:49.901 SQL [12763]: pgsql_db_connect() -- 20:10:49.905 DEBUG [12763]: Database connection successful -- 20:10:49.905 INFO [12763]: _SERVER found -- 20:10:49.905 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 20:10:49.905 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 20:10:49.905 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=584hmippmiieikc3lr6v8ma83bjfqcn1 -- 20:10:49.905 INFO [12763]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:10:49.905 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:10:49.915 INFO [12763]: COREGRADE is stopping... -- 20:10:49.916 DEBUG [12763]: Closing database connection -- 20:10:49.916 SQL [12763]: pgsql_close() -- 20:11:41.749 INFO [12764]: COREGRADE is starting... -- 20:11:41.749 INFO [12764]: Version from config: 1.0 -- 20:11:41.749 DEBUG [12764]: Connecting to database... -- 20:11:41.749 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:11:41.749 SQL [12764]: pgsql_db_connect() -- 20:11:41.753 DEBUG [12764]: Database connection successful -- 20:11:41.753 INFO [12764]: _SERVER found -- 20:11:41.753 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 20:11:41.753 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 20:11:41.753 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=8a6ne2fgn9sqkjjkits8ik8osr7tqtv4 -- 20:11:41.753 INFO [12764]: QUERY_STRING = /auth -- 20:11:41.753 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:11:41.785 INFO [12764]: COREGRADE is stopping... -- 20:11:41.785 DEBUG [12764]: Closing database connection -- 20:11:41.785 SQL [12764]: pgsql_close() -- 20:11:42.006 INFO [12764]: COREGRADE is starting... -- 20:11:42.006 INFO [12764]: Version from config: 1.0 -- 20:11:42.006 DEBUG [12764]: Connecting to database... -- 20:11:42.006 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:11:42.006 SQL [12764]: pgsql_db_connect() -- 20:11:42.010 DEBUG [12764]: Database connection successful -- 20:11:42.010 INFO [12764]: _SERVER found -- 20:11:42.010 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 20:11:42.010 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 20:11:42.010 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=qokpfvo3k7s0llraoqr7msr6aq6ahtgs -- 20:11:42.010 INFO [12764]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 20:11:42.010 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:11:42.021 INFO [12764]: COREGRADE is stopping... -- 20:11:42.021 DEBUG [12764]: Closing database connection -- 20:11:42.021 SQL [12764]: pgsql_close() -- 20:11:42.741 INFO [12764]: COREGRADE is starting... -- 20:11:42.741 INFO [12764]: Version from config: 1.0 -- 20:11:42.741 DEBUG [12764]: Connecting to database... -- 20:11:42.741 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:11:42.741 SQL [12764]: pgsql_db_connect() -- 20:11:42.745 DEBUG [12764]: Database connection successful -- 20:11:42.745 INFO [12764]: _SERVER found -- 20:11:42.745 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 20:11:42.745 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 20:11:42.745 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=qokpfvo3k7s0llraoqr7msr6aq6ahtgs -- 20:11:42.745 INFO [12764]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:11:42.745 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:11:42.756 INFO [12764]: COREGRADE is stopping... -- 20:11:42.756 DEBUG [12764]: Closing database connection -- 20:11:42.756 SQL [12764]: pgsql_close() -- 20:30:50.848 INFO [11644]: COREGRADE is starting... -- 20:30:50.849 INFO [11644]: Version from config: 1.0 -- 20:30:50.849 DEBUG [11644]: Connecting to database... -- 20:30:50.849 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:30:50.849 SQL [11644]: pgsql_db_connect() -- 20:30:50.853 DEBUG [11644]: Database connection successful -- 20:30:50.853 INFO [11644]: _SERVER found -- 20:30:50.853 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 20:30:50.853 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 20:30:50.853 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=584hmippmiieikc3lr6v8ma83bjfqcn1 -- 20:30:50.853 INFO [11644]: QUERY_STRING = /auth -- 20:30:50.853 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:30:50.887 INFO [11644]: COREGRADE is stopping... -- 20:30:50.887 DEBUG [11644]: Closing database connection -- 20:30:50.887 SQL [11644]: pgsql_close() -- 20:30:51.510 INFO [11644]: COREGRADE is starting... -- 20:30:51.510 INFO [11644]: Version from config: 1.0 -- 20:30:51.510 DEBUG [11644]: Connecting to database... -- 20:30:51.510 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:30:51.510 SQL [11644]: pgsql_db_connect() -- 20:30:51.515 DEBUG [11644]: Database connection successful -- 20:30:51.515 INFO [11644]: _SERVER found -- 20:30:51.515 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 20:30:51.515 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 20:30:51.515 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=cj0ijd50l60p052546ckhkd670pji001 -- 20:30:51.515 INFO [11644]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 20:30:51.515 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:30:51.526 INFO [11644]: COREGRADE is stopping... -- 20:30:51.526 DEBUG [11644]: Closing database connection -- 20:30:51.526 SQL [11644]: pgsql_close() -- 20:30:51.530 INFO [11639]: COREGRADE is starting... -- 20:30:51.530 INFO [11639]: Version from config: 1.0 -- 20:30:51.530 DEBUG [11639]: Connecting to database... -- 20:30:51.530 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:30:51.530 SQL [11639]: pgsql_db_connect() -- 20:30:51.534 DEBUG [11639]: Database connection successful -- 20:30:51.534 INFO [11639]: _SERVER found -- 20:30:51.534 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 20:30:51.534 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 20:30:51.534 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=cj0ijd50l60p052546ckhkd670pji001 -- 20:30:51.534 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:30:51.534 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:30:51.546 INFO [11639]: COREGRADE is stopping... -- 20:30:51.546 DEBUG [11639]: Closing database connection -- 20:30:51.547 SQL [11639]: pgsql_close() -- 20:34:55.292 INFO [11638]: COREGRADE is starting... -- 20:34:55.292 INFO [11638]: Version from config: 1.0 -- 20:34:55.292 DEBUG [11638]: Connecting to database... -- 20:34:55.292 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:34:55.292 SQL [11638]: pgsql_db_connect() -- 20:34:55.328 INFO [11638]: COREGRADE is starting... -- 20:34:55.329 INFO [11638]: Version from config: 1.0 -- 20:34:55.329 DEBUG [11638]: Connecting to database... -- 20:34:55.329 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:34:55.329 SQL [11638]: pgsql_db_connect() -- 20:34:55.333 DEBUG [11638]: Database connection successful -- 20:34:55.333 INFO [11638]: _SERVER found -- 20:34:55.333 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 20:34:55.333 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 20:34:55.333 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=qokpfvo3k7s0llraoqr7msr6aq6ahtgs -- 20:34:55.333 INFO [11638]: QUERY_STRING = -- 20:34:55.333 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:34:55.333 INFO [11638]: SystemStatus()09-09-********~************ -- 20:34:55.333 INFO [11638]: long coregrade_api_main(CVars in, CVars &out) -- 20:34:55.333 INFO [11638]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 20:34:55.333 INFO [11638]: account calls -- 20:34:55.333 INFO [11638]: account_calls() -- 20:34:55.333 INFO [11638]: LoginCoreGradeAccount() -- 20:34:55.333 FLOG_MAX [11638]: REQ_STRING(username) -- 20:34:55.333 FLOG_MAX [11638]: REQ_STRING(password) -- 20:34:55.333 FLOG_MAX [11638]: REQ_STRING(sessionid) -- 20:34:55.333 FLOG_MAX [11638]: long load_db_record( CVars &rec, const char * query, ... ) -- 20:34:55.333 SQL [11638]: pgsql_query() -- 20:34:55.333 SQL [11638]: About to run query: -- 20:34:55.333 SQL [11638]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 20:34:55.337 SQL [11638]: Found rows: 1 -- 20:34:55.337 FLOG_MAX [11638]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 20:34:55.337 INFO [11638]: long SessionCheck(long uid, const char *sessionid, int create ) -- 20:34:55.337 SQL [11638]: pgsql_exec() -- 20:34:55.337 SQL [11638]: About to run query: -- 20:34:55.337 SQL [11638]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 20:34:55.338 SQL [11638]: PQcmdTuples: 1 -- 20:34:55.338 SQL [11638]: Affected rows: 1 -- 20:34:55.338 SQL [11638]: pgsql_exec() -- 20:34:55.338 SQL [11638]: About to run query: -- 20:34:55.338 SQL [11638]: DELETE FROM members_session WHERE member_id=5 -- 20:34:55.339 SQL [11638]: PQcmdTuples: 0 -- 20:34:55.339 SQL [11638]: Affected rows: 0 -- 20:34:55.339 SQL [11638]: pgsql_query() -- 20:34:55.339 SQL [11638]: About to run query: -- 20:34:55.339 SQL [11638]: SELECT * FROM members_session WHERE member_id=5 AND session<>'E7D382F7F312891F9ACF0E7EEFA4F535' -- 20:34:55.340 SQL [11638]: Found rows: 0 -- 20:34:55.340 SQL [11638]: Found rows: 0 -- 20:34:55.340 FLOG_MAX [11638]: long load_db_record( CVars &rec, const char * query, ... ) -- 20:34:55.340 SQL [11638]: pgsql_query() -- 20:34:55.340 SQL [11638]: About to run query: -- 20:34:55.340 SQL [11638]: SELECT * FROM members_session WHERE member_id=5 AND session='E7D382F7F312891F9ACF0E7EEFA4F535' -- 20:34:55.340 SQL [11638]: Found rows: 0 -- 20:34:55.340 SQL [11638]: Found rows: 0 -- 20:34:55.340 FLOG_MAX [11638]: insert_db_record() -- 20:34:55.340 SQL [11638]: pgsql_exec() -- 20:34:55.340 SQL [11638]: About to run query: -- 20:34:55.340 SQL [11638]: INSERT INTO members_session (member_id,session) VALUES ('5','E7D382F7F312891F9ACF0E7EEFA4F535') -- 20:34:55.342 SQL [11638]: PQcmdTuples: 1 -- 20:34:55.342 SQL [11638]: Affected rows: 1 -- 20:34:55.342 FLOG_MAX [11638]: SELECT currval('members_session_id_seq') -- 20:34:55.342 SQL [11638]: pgsql_query() -- 20:34:55.342 SQL [11638]: About to run query: -- 20:34:55.342 SQL [11638]: SELECT currval('members_session_id_seq') -- 20:34:55.342 SQL [11638]: Found rows: 1 -- 20:34:55.342 INFO [11638]: CreateDefaultPage() -- 20:34:55.342 FLOG_MAX [11638]: long load_db_record( CVars &rec, const char * query, ... ) -- 20:34:55.342 SQL [11638]: pgsql_query() -- 20:34:55.342 SQL [11638]: About to run query: -- 20:34:55.342 SQL [11638]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 20:34:55.343 SQL [11638]: Found rows: 1 -- 20:34:55.343 FLOG_MAX [11638]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 20:34:55.343 SQL [11638]: pgsql_query() -- 20:34:55.343 SQL [11638]: About to run query: -- 20:34:55.343 SQL [11638]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 20:34:55.343 SQL [11638]: Found rows: 1 -- 20:34:55.343 INFO [11638]: /CreateDefaultPage() -- 20:34:55.343 INFO [11638]: /LoginCoreGradeAccount() -- 20:34:55.343 INFO [11638]: RET: added=2020-02-05 06:47:23.982154 -- 20:34:55.343 INFO [11638]: RET: email=ameye+11@chiefsoft.com -- 20:34:55.343 INFO [11638]: RET: firstname=Olu -- 20:34:55.343 INFO [11638]: RET: id=5 -- 20:34:55.343 INFO [11638]: RET: last_login= -- 20:34:55.343 INFO [11638]: RET: lastname=Amey -- 20:34:55.343 INFO [11638]: RET: loc=192.168.1.13 -- 20:34:55.343 INFO [11638]: RET: member_id=5 -- 20:34:55.343 INFO [11638]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 20:34:55.343 INFO [11638]: RET: phone= -- 20:34:55.343 INFO [11638]: RET: pid= -- 20:34:55.343 INFO [11638]: RET: result=YES I GET TO BACK END -- 20:34:55.343 INFO [11638]: RET: sessionid=E7D382F7F312891F9ACF0E7EEFA4F535 -- 20:34:55.343 INFO [11638]: RET: status=1 -- 20:34:55.343 INFO [11638]: RET: stauts=OK -- 20:34:55.343 INFO [11638]: RET: username=ameye+11@chiefsoft.com -- 20:34:55.343 INFO [11638]: RET: verified= -- 20:34:55.345 INFO [11638]: COREGRADE is stopping... -- 20:34:55.345 DEBUG [11638]: Closing database connection -- 20:34:55.345 SQL [11638]: pgsql_close() -- 20:34:55.297 DEBUG [11638]: Database connection successful -- 20:34:55.297 INFO [11638]: _SERVER found -- 20:34:55.297 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 20:34:55.297 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 20:34:55.297 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=qokpfvo3k7s0llraoqr7msr6aq6ahtgs -- 20:34:55.297 INFO [11638]: QUERY_STRING = /auth -- 20:34:55.297 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:34:55.345 INFO [11638]: COREGRADE is stopping... -- 20:34:55.345 DEBUG [11638]: Closing database connection -- 20:34:55.345 SQL [11638]: pgsql_close() -- 20:34:55.365 INFO [11638]: COREGRADE is starting... -- 20:34:55.365 INFO [11638]: Version from config: 1.0 -- 20:34:55.365 DEBUG [11638]: Connecting to database... -- 20:34:55.365 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:34:55.365 SQL [11638]: pgsql_db_connect() -- 20:34:55.369 DEBUG [11638]: Database connection successful -- 20:34:55.369 INFO [11638]: _SERVER found -- 20:34:55.369 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 20:34:55.369 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 20:34:55.369 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=jn5uh5q6skqr4h2stev77so910q5i0sg -- 20:34:55.369 INFO [11638]: QUERY_STRING = /member/index -- 20:34:55.369 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:34:55.404 INFO [11638]: COREGRADE is stopping... -- 20:34:55.404 DEBUG [11638]: Closing database connection -- 20:34:55.404 SQL [11638]: pgsql_close() -- 20:34:55.864 INFO [11638]: COREGRADE is starting... -- 20:34:55.864 INFO [11638]: Version from config: 1.0 -- 20:34:55.864 DEBUG [11638]: Connecting to database... -- 20:34:55.864 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:34:55.864 SQL [11638]: pgsql_db_connect() -- 20:34:55.872 INFO [11636]: COREGRADE is starting... -- 20:34:55.872 INFO [11636]: Version from config: 1.0 -- 20:34:55.872 DEBUG [11636]: Connecting to database... -- 20:34:55.872 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:34:55.872 SQL [11636]: pgsql_db_connect() -- 20:34:55.868 DEBUG [11638]: Database connection successful -- 20:34:55.868 INFO [11638]: _SERVER found -- 20:34:55.868 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 20:34:55.868 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 20:34:55.868 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=jn5uh5q6skqr4h2stev77so910q5i0sg -- 20:34:55.868 INFO [11638]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:34:55.868 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:34:55.880 INFO [11638]: COREGRADE is stopping... -- 20:34:55.880 DEBUG [11638]: Closing database connection -- 20:34:55.880 SQL [11638]: pgsql_close() -- 20:34:55.876 DEBUG [11636]: Database connection successful -- 20:34:55.876 INFO [11636]: _SERVER found -- 20:34:55.876 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 20:34:55.876 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 20:34:55.876 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=jn5uh5q6skqr4h2stev77so910q5i0sg -- 20:34:55.876 INFO [11636]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:34:55.876 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:34:55.887 INFO [11636]: COREGRADE is stopping... -- 20:34:55.887 DEBUG [11636]: Closing database connection -- 20:34:55.887 SQL [11636]: pgsql_close() -- 20:35:11.264 INFO [11650]: COREGRADE is starting... -- 20:35:11.264 INFO [11650]: Version from config: 1.0 -- 20:35:11.264 DEBUG [11650]: Connecting to database... -- 20:35:11.264 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:35:11.264 SQL [11650]: pgsql_db_connect() -- 20:35:11.268 DEBUG [11650]: Database connection successful -- 20:35:11.268 INFO [11650]: _SERVER found -- 20:35:11.268 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 20:35:11.268 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 20:35:11.268 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=jn5uh5q6skqr4h2stev77so910q5i0sg -- 20:35:11.268 INFO [11650]: QUERY_STRING = /member/page -- 20:35:11.268 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:35:11.311 INFO [11650]: COREGRADE is stopping... -- 20:35:11.311 DEBUG [11650]: Closing database connection -- 20:35:11.311 SQL [11650]: pgsql_close() -- 20:35:11.583 INFO [11650]: COREGRADE is starting... -- 20:35:11.584 INFO [11650]: Version from config: 1.0 -- 20:35:11.584 DEBUG [11650]: Connecting to database... -- 20:35:11.584 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:35:11.584 SQL [11650]: pgsql_db_connect() -- 20:35:11.588 DEBUG [11650]: Database connection successful -- 20:35:11.588 INFO [11650]: _SERVER found -- 20:35:11.588 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 20:35:11.588 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 20:35:11.588 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=jn5uh5q6skqr4h2stev77so910q5i0sg -- 20:35:11.588 INFO [11650]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:35:11.588 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:35:11.599 INFO [11650]: COREGRADE is stopping... -- 20:35:11.599 DEBUG [11650]: Closing database connection -- 20:35:11.599 SQL [11650]: pgsql_close() -- 20:35:11.905 INFO [11650]: COREGRADE is starting... -- 20:35:11.905 INFO [11650]: Version from config: 1.0 -- 20:35:11.905 DEBUG [11650]: Connecting to database... -- 20:35:11.905 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:35:11.905 SQL [11650]: pgsql_db_connect() -- 20:35:11.910 DEBUG [11650]: Database connection successful -- 20:35:11.910 INFO [11650]: _SERVER found -- 20:35:11.910 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 20:35:11.910 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 20:35:11.910 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=jn5uh5q6skqr4h2stev77so910q5i0sg -- 20:35:11.910 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:35:11.910 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:35:11.921 INFO [11650]: COREGRADE is stopping... -- 20:35:11.921 DEBUG [11650]: Closing database connection -- 20:35:11.921 SQL [11650]: pgsql_close() -- 20:35:11.930 INFO [11650]: COREGRADE is starting... -- 20:35:11.930 INFO [11650]: Version from config: 1.0 -- 20:35:11.930 DEBUG [11650]: Connecting to database... -- 20:35:11.930 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:35:11.930 SQL [11650]: pgsql_db_connect() -- 20:35:11.934 DEBUG [11650]: Database connection successful -- 20:35:11.934 INFO [11650]: _SERVER found -- 20:35:11.934 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 20:35:11.934 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 20:35:11.934 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=jn5uh5q6skqr4h2stev77so910q5i0sg -- 20:35:11.934 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:35:11.934 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:35:11.945 INFO [11650]: COREGRADE is stopping... -- 20:35:11.945 DEBUG [11650]: Closing database connection -- 20:35:11.945 SQL [11650]: pgsql_close() -- 20:39:46.986 INFO [11652]: COREGRADE is starting... -- 20:39:46.987 INFO [11652]: Version from config: 1.0 -- 20:39:46.987 DEBUG [11652]: Connecting to database... -- 20:39:46.987 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:39:46.987 SQL [11652]: pgsql_db_connect() -- 20:39:46.991 DEBUG [11652]: Database connection successful -- 20:39:46.991 INFO [11652]: _SERVER found -- 20:39:46.991 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 20:39:46.991 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 20:39:46.991 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=cj0ijd50l60p052546ckhkd670pji001 -- 20:39:46.991 INFO [11652]: QUERY_STRING = /auth -- 20:39:46.991 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:39:47.023 INFO [11652]: COREGRADE is stopping... -- 20:39:47.023 DEBUG [11652]: Closing database connection -- 20:39:47.023 SQL [11652]: pgsql_close() -- 20:39:47.179 INFO [11652]: COREGRADE is starting... -- 20:39:47.180 INFO [11652]: Version from config: 1.0 -- 20:39:47.180 DEBUG [11652]: Connecting to database... -- 20:39:47.180 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:39:47.180 SQL [11652]: pgsql_db_connect() -- 20:39:47.184 DEBUG [11652]: Database connection successful -- 20:39:47.184 INFO [11652]: _SERVER found -- 20:39:47.184 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 20:39:47.184 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 20:39:47.184 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r9p6vj064fhbmv114rkouttta4h6pcgk -- 20:39:47.184 INFO [11652]: QUERY_STRING = /auth -- 20:39:47.184 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:39:47.214 INFO [11652]: COREGRADE is stopping... -- 20:39:47.214 DEBUG [11652]: Closing database connection -- 20:39:47.214 SQL [11652]: pgsql_close() -- 20:39:47.726 INFO [11652]: COREGRADE is starting... -- 20:39:47.726 INFO [11652]: Version from config: 1.0 -- 20:39:47.726 DEBUG [11652]: Connecting to database... -- 20:39:47.726 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:39:47.726 SQL [11652]: pgsql_db_connect() -- 20:39:47.730 DEBUG [11652]: Database connection successful -- 20:39:47.730 INFO [11652]: _SERVER found -- 20:39:47.730 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 20:39:47.730 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 20:39:47.730 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r9p6vj064fhbmv114rkouttta4h6pcgk -- 20:39:47.730 INFO [11652]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 20:39:47.730 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:39:47.741 INFO [11652]: COREGRADE is stopping... -- 20:39:47.741 DEBUG [11652]: Closing database connection -- 20:39:47.741 SQL [11652]: pgsql_close() -- 20:39:47.746 INFO [12761]: COREGRADE is starting... -- 20:39:47.746 INFO [12761]: Version from config: 1.0 -- 20:39:47.746 DEBUG [12761]: Connecting to database... -- 20:39:47.746 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:39:47.746 SQL [12761]: pgsql_db_connect() -- 20:39:47.750 DEBUG [12761]: Database connection successful -- 20:39:47.750 INFO [12761]: _SERVER found -- 20:39:47.750 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 20:39:47.750 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 20:39:47.750 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r9p6vj064fhbmv114rkouttta4h6pcgk -- 20:39:47.750 INFO [12761]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:39:47.750 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:39:47.762 INFO [12761]: COREGRADE is stopping... -- 20:39:47.762 DEBUG [12761]: Closing database connection -- 20:39:47.762 SQL [12761]: pgsql_close() -- 20:39:49.941 INFO [12761]: COREGRADE is starting... -- 20:39:49.942 INFO [12761]: Version from config: 1.0 -- 20:39:49.942 DEBUG [12761]: Connecting to database... -- 20:39:49.942 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:39:49.942 SQL [12761]: pgsql_db_connect() -- 20:39:49.977 INFO [12761]: COREGRADE is starting... -- 20:39:49.977 INFO [12761]: Version from config: 1.0 -- 20:39:49.977 DEBUG [12761]: Connecting to database... -- 20:39:49.977 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:39:49.977 SQL [12761]: pgsql_db_connect() -- 20:39:49.981 DEBUG [12761]: Database connection successful -- 20:39:49.981 INFO [12761]: _SERVER found -- 20:39:49.981 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 20:39:49.981 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 20:39:49.981 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r9p6vj064fhbmv114rkouttta4h6pcgk -- 20:39:49.981 INFO [12761]: QUERY_STRING = -- 20:39:49.981 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:39:49.981 INFO [12761]: SystemStatus()09-09-********~************ -- 20:39:49.981 INFO [12761]: long coregrade_api_main(CVars in, CVars &out) -- 20:39:49.981 INFO [12761]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 20:39:49.981 INFO [12761]: account calls -- 20:39:49.981 INFO [12761]: account_calls() -- 20:39:49.981 INFO [12761]: LoginCoreGradeAccount() -- 20:39:49.981 FLOG_MAX [12761]: REQ_STRING(username) -- 20:39:49.981 FLOG_MAX [12761]: REQ_STRING(password) -- 20:39:49.981 FLOG_MAX [12761]: REQ_STRING(sessionid) -- 20:39:49.981 FLOG_MAX [12761]: long load_db_record( CVars &rec, const char * query, ... ) -- 20:39:49.981 SQL [12761]: pgsql_query() -- 20:39:49.981 SQL [12761]: About to run query: -- 20:39:49.982 SQL [12761]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 20:39:49.985 SQL [12761]: Found rows: 1 -- 20:39:49.985 FLOG_MAX [12761]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=15 -- 20:39:49.985 INFO [12761]: long SessionCheck(long uid, const char *sessionid, int create ) -- 20:39:49.985 SQL [12761]: pgsql_exec() -- 20:39:49.985 SQL [12761]: About to run query: -- 20:39:49.985 SQL [12761]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 20:39:49.986 SQL [12761]: PQcmdTuples: 1 -- 20:39:49.986 SQL [12761]: Affected rows: 1 -- 20:39:49.986 SQL [12761]: pgsql_exec() -- 20:39:49.986 SQL [12761]: About to run query: -- 20:39:49.986 SQL [12761]: DELETE FROM members_session WHERE member_id=7 -- 20:39:49.987 SQL [12761]: PQcmdTuples: 0 -- 20:39:49.987 SQL [12761]: Affected rows: 0 -- 20:39:49.987 SQL [12761]: pgsql_query() -- 20:39:49.987 SQL [12761]: About to run query: -- 20:39:49.987 SQL [12761]: SELECT * FROM members_session WHERE member_id=7 AND session<>'B666FD499C809A4C37078D089172B05E' -- 20:39:49.987 SQL [12761]: Found rows: 0 -- 20:39:49.987 SQL [12761]: Found rows: 0 -- 20:39:49.987 FLOG_MAX [12761]: long load_db_record( CVars &rec, const char * query, ... ) -- 20:39:49.987 SQL [12761]: pgsql_query() -- 20:39:49.987 SQL [12761]: About to run query: -- 20:39:49.987 SQL [12761]: SELECT * FROM members_session WHERE member_id=7 AND session='B666FD499C809A4C37078D089172B05E' -- 20:39:49.988 SQL [12761]: Found rows: 0 -- 20:39:49.988 SQL [12761]: Found rows: 0 -- 20:39:49.988 FLOG_MAX [12761]: insert_db_record() -- 20:39:49.988 SQL [12761]: pgsql_exec() -- 20:39:49.988 SQL [12761]: About to run query: -- 20:39:49.988 SQL [12761]: INSERT INTO members_session (member_id,session) VALUES ('7','B666FD499C809A4C37078D089172B05E') -- 20:39:49.989 SQL [12761]: PQcmdTuples: 1 -- 20:39:49.989 SQL [12761]: Affected rows: 1 -- 20:39:49.989 FLOG_MAX [12761]: SELECT currval('members_session_id_seq') -- 20:39:49.989 SQL [12761]: pgsql_query() -- 20:39:49.989 SQL [12761]: About to run query: -- 20:39:49.989 SQL [12761]: SELECT currval('members_session_id_seq') -- 20:39:49.990 SQL [12761]: Found rows: 1 -- 20:39:49.990 INFO [12761]: CreateDefaultPage() -- 20:39:49.990 FLOG_MAX [12761]: long load_db_record( CVars &rec, const char * query, ... ) -- 20:39:49.990 SQL [12761]: pgsql_query() -- 20:39:49.990 SQL [12761]: About to run query: -- 20:39:49.990 SQL [12761]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 20:39:49.990 SQL [12761]: Found rows: 1 -- 20:39:49.990 FLOG_MAX [12761]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 20:39:49.990 SQL [12761]: pgsql_query() -- 20:39:49.990 SQL [12761]: About to run query: -- 20:39:49.990 SQL [12761]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 20:39:49.991 SQL [12761]: Found rows: 1 -- 20:39:49.991 INFO [12761]: /CreateDefaultPage() -- 20:39:49.991 INFO [12761]: /LoginCoreGradeAccount() -- 20:39:49.991 INFO [12761]: RET: added=2020-02-05 09:42:12.816064 -- 20:39:49.991 INFO [12761]: RET: email=tokslaw@chiefsoft.com -- 20:39:49.991 INFO [12761]: RET: firstname=Tokunbo -- 20:39:49.991 INFO [12761]: RET: id=7 -- 20:39:49.991 INFO [12761]: RET: last_login= -- 20:39:49.991 INFO [12761]: RET: lastname=Lawal -- 20:39:49.991 INFO [12761]: RET: loc=192.168.1.13 -- 20:39:49.991 INFO [12761]: RET: member_id=7 -- 20:39:49.991 INFO [12761]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 20:39:49.991 INFO [12761]: RET: phone= -- 20:39:49.991 INFO [12761]: RET: pid= -- 20:39:49.991 INFO [12761]: RET: result=YES I GET TO BACK END -- 20:39:49.991 INFO [12761]: RET: sessionid=B666FD499C809A4C37078D089172B05E -- 20:39:49.991 INFO [12761]: RET: status=1 -- 20:39:49.991 INFO [12761]: RET: stauts=OK -- 20:39:49.991 INFO [12761]: RET: username=tokslaw@chiefsoft.com -- 20:39:49.991 INFO [12761]: RET: verified= -- 20:39:49.992 INFO [12761]: COREGRADE is stopping... -- 20:39:49.992 DEBUG [12761]: Closing database connection -- 20:39:49.992 SQL [12761]: pgsql_close() -- 20:39:49.946 DEBUG [12761]: Database connection successful -- 20:39:49.946 INFO [12761]: _SERVER found -- 20:39:49.946 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 20:39:49.946 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 20:39:49.946 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r9p6vj064fhbmv114rkouttta4h6pcgk -- 20:39:49.946 INFO [12761]: QUERY_STRING = /auth -- 20:39:49.946 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:39:49.993 INFO [12761]: COREGRADE is stopping... -- 20:39:49.993 DEBUG [12761]: Closing database connection -- 20:39:49.993 SQL [12761]: pgsql_close() -- 20:39:50.010 INFO [12761]: COREGRADE is starting... -- 20:39:50.011 INFO [12761]: Version from config: 1.0 -- 20:39:50.011 DEBUG [12761]: Connecting to database... -- 20:39:50.011 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:39:50.011 SQL [12761]: pgsql_db_connect() -- 20:39:50.015 DEBUG [12761]: Database connection successful -- 20:39:50.015 INFO [12761]: _SERVER found -- 20:39:50.015 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 20:39:50.015 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 20:39:50.015 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r9p6vj064fhbmv114rkouttta4h6pcgk -- 20:39:50.015 INFO [12761]: QUERY_STRING = /member/index -- 20:39:50.015 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:39:50.050 INFO [12761]: COREGRADE is stopping... -- 20:39:50.050 DEBUG [12761]: Closing database connection -- 20:39:50.050 SQL [12761]: pgsql_close() -- 20:39:50.430 INFO [12761]: COREGRADE is starting... -- 20:39:50.430 INFO [12761]: Version from config: 1.0 -- 20:39:50.430 DEBUG [12761]: Connecting to database... -- 20:39:50.430 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:39:50.430 SQL [12761]: pgsql_db_connect() -- 20:39:50.434 DEBUG [12761]: Database connection successful -- 20:39:50.434 INFO [12761]: _SERVER found -- 20:39:50.434 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 20:39:50.434 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 20:39:50.434 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r9p6vj064fhbmv114rkouttta4h6pcgk -- 20:39:50.434 INFO [12761]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:39:50.434 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:39:50.445 INFO [12761]: COREGRADE is stopping... -- 20:39:50.445 DEBUG [12761]: Closing database connection -- 20:39:50.445 SQL [12761]: pgsql_close() -- 20:39:50.458 INFO [12761]: COREGRADE is starting... -- 20:39:50.459 INFO [12761]: Version from config: 1.0 -- 20:39:50.459 DEBUG [12761]: Connecting to database... -- 20:39:50.459 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:39:50.459 SQL [12761]: pgsql_db_connect() -- 20:39:50.462 DEBUG [12761]: Database connection successful -- 20:39:50.462 INFO [12761]: _SERVER found -- 20:39:50.462 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 20:39:50.462 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 20:39:50.462 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r9p6vj064fhbmv114rkouttta4h6pcgk -- 20:39:50.462 INFO [12761]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:39:50.462 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:39:50.473 INFO [12761]: COREGRADE is stopping... -- 20:39:50.473 DEBUG [12761]: Closing database connection -- 20:39:50.473 SQL [12761]: pgsql_close() -- 20:40:00.274 INFO [11637]: COREGRADE is starting... -- 20:40:00.274 INFO [11637]: Version from config: 1.0 -- 20:40:00.274 DEBUG [11637]: Connecting to database... -- 20:40:00.274 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:40:00.274 SQL [11637]: pgsql_db_connect() -- 20:40:00.278 DEBUG [11637]: Database connection successful -- 20:40:00.278 INFO [11637]: _SERVER found -- 20:40:00.278 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 20:40:00.278 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 20:40:00.278 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r9p6vj064fhbmv114rkouttta4h6pcgk -- 20:40:00.278 INFO [11637]: QUERY_STRING = /member/configure -- 20:40:00.278 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:40:00.314 INFO [11637]: COREGRADE is stopping... -- 20:40:00.314 DEBUG [11637]: Closing database connection -- 20:40:00.314 SQL [11637]: pgsql_close() -- 20:40:00.771 INFO [11637]: COREGRADE is starting... -- 20:40:00.771 INFO [11637]: Version from config: 1.0 -- 20:40:00.771 DEBUG [11637]: Connecting to database... -- 20:40:00.771 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:40:00.771 SQL [11637]: pgsql_db_connect() -- 20:40:00.775 DEBUG [11637]: Database connection successful -- 20:40:00.775 INFO [11637]: _SERVER found -- 20:40:00.775 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 20:40:00.775 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 20:40:00.775 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r9p6vj064fhbmv114rkouttta4h6pcgk -- 20:40:00.775 INFO [11637]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:40:00.775 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:40:00.786 INFO [11637]: COREGRADE is stopping... -- 20:40:00.787 DEBUG [11637]: Closing database connection -- 20:40:00.787 SQL [11637]: pgsql_close() -- 20:40:00.791 INFO [12763]: COREGRADE is starting... -- 20:40:00.791 INFO [12763]: Version from config: 1.0 -- 20:40:00.791 DEBUG [12763]: Connecting to database... -- 20:40:00.791 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:40:00.791 SQL [12763]: pgsql_db_connect() -- 20:40:00.795 DEBUG [12763]: Database connection successful -- 20:40:00.795 INFO [12763]: _SERVER found -- 20:40:00.795 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 20:40:00.795 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 20:40:00.795 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r9p6vj064fhbmv114rkouttta4h6pcgk -- 20:40:00.795 INFO [12763]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:40:00.795 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:40:00.806 INFO [12763]: COREGRADE is stopping... -- 20:40:00.806 DEBUG [12763]: Closing database connection -- 20:40:00.806 SQL [12763]: pgsql_close() -- 20:44:25.040 INFO [12764]: COREGRADE is starting... -- 20:44:25.040 INFO [12764]: Version from config: 1.0 -- 20:44:25.040 DEBUG [12764]: Connecting to database... -- 20:44:25.040 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:44:25.041 SQL [12764]: pgsql_db_connect() -- 20:44:25.045 DEBUG [12764]: Database connection successful -- 20:44:25.045 INFO [12764]: _SERVER found -- 20:44:25.045 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 20:44:25.045 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 20:44:25.045 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r9p6vj064fhbmv114rkouttta4h6pcgk -- 20:44:25.045 INFO [12764]: QUERY_STRING = /member/addcard -- 20:44:25.045 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:44:25.081 INFO [12764]: COREGRADE is stopping... -- 20:44:25.081 DEBUG [12764]: Closing database connection -- 20:44:25.081 SQL [12764]: pgsql_close() -- 20:44:25.556 INFO [12764]: COREGRADE is starting... -- 20:44:25.557 INFO [12764]: Version from config: 1.0 -- 20:44:25.557 DEBUG [12764]: Connecting to database... -- 20:44:25.557 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:44:25.557 SQL [12764]: pgsql_db_connect() -- 20:44:25.561 DEBUG [12764]: Database connection successful -- 20:44:25.561 INFO [12764]: _SERVER found -- 20:44:25.561 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 20:44:25.561 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 20:44:25.561 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r9p6vj064fhbmv114rkouttta4h6pcgk -- 20:44:25.561 INFO [12764]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:44:25.561 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:44:25.572 INFO [12764]: COREGRADE is stopping... -- 20:44:25.572 DEBUG [12764]: Closing database connection -- 20:44:25.572 SQL [12764]: pgsql_close() -- 20:44:25.618 INFO [12764]: COREGRADE is starting... -- 20:44:25.619 INFO [12764]: Version from config: 1.0 -- 20:44:25.619 DEBUG [12764]: Connecting to database... -- 20:44:25.619 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:44:25.619 SQL [12764]: pgsql_db_connect() -- 20:44:25.623 DEBUG [12764]: Database connection successful -- 20:44:25.623 INFO [12764]: _SERVER found -- 20:44:25.623 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 20:44:25.623 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 20:44:25.623 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r9p6vj064fhbmv114rkouttta4h6pcgk -- 20:44:25.623 INFO [12764]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:44:25.623 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:44:25.633 INFO [12764]: COREGRADE is stopping... -- 20:44:25.633 DEBUG [12764]: Closing database connection -- 20:44:25.634 SQL [12764]: pgsql_close() -- 20:44:26.894 INFO [12764]: COREGRADE is starting... -- 20:44:26.895 INFO [12764]: Version from config: 1.0 -- 20:44:26.895 DEBUG [12764]: Connecting to database... -- 20:44:26.895 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:44:26.895 SQL [12764]: pgsql_db_connect() -- 20:44:26.899 DEBUG [12764]: Database connection successful -- 20:44:26.899 INFO [12764]: _SERVER found -- 20:44:26.899 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 20:44:26.899 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 20:44:26.899 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r9p6vj064fhbmv114rkouttta4h6pcgk -- 20:44:26.899 INFO [12764]: QUERY_STRING = /member/configure -- 20:44:26.899 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:44:26.934 INFO [12764]: COREGRADE is stopping... -- 20:44:26.934 DEBUG [12764]: Closing database connection -- 20:44:26.934 SQL [12764]: pgsql_close() -- 20:44:27.283 INFO [12764]: COREGRADE is starting... -- 20:44:27.284 INFO [12764]: Version from config: 1.0 -- 20:44:27.284 DEBUG [12764]: Connecting to database... -- 20:44:27.284 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:44:27.284 SQL [12764]: pgsql_db_connect() -- 20:44:27.288 DEBUG [12764]: Database connection successful -- 20:44:27.288 INFO [12764]: _SERVER found -- 20:44:27.288 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 20:44:27.288 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 20:44:27.288 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r9p6vj064fhbmv114rkouttta4h6pcgk -- 20:44:27.288 INFO [12764]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:44:27.288 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:44:27.299 INFO [12764]: COREGRADE is stopping... -- 20:44:27.299 DEBUG [12764]: Closing database connection -- 20:44:27.299 SQL [12764]: pgsql_close() -- 20:44:27.335 INFO [12764]: COREGRADE is starting... -- 20:44:27.335 INFO [12764]: Version from config: 1.0 -- 20:44:27.335 DEBUG [12764]: Connecting to database... -- 20:44:27.335 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:44:27.335 SQL [12764]: pgsql_db_connect() -- 20:44:27.339 DEBUG [12764]: Database connection successful -- 20:44:27.339 INFO [12764]: _SERVER found -- 20:44:27.339 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 20:44:27.339 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 20:44:27.339 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r9p6vj064fhbmv114rkouttta4h6pcgk -- 20:44:27.339 INFO [12764]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:44:27.339 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:44:27.350 INFO [12764]: COREGRADE is stopping... -- 20:44:27.350 DEBUG [12764]: Closing database connection -- 20:44:27.350 SQL [12764]: pgsql_close() -- 20:44:28.744 INFO [12764]: COREGRADE is starting... -- 20:44:28.744 INFO [12764]: Version from config: 1.0 -- 20:44:28.744 DEBUG [12764]: Connecting to database... -- 20:44:28.744 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:44:28.744 SQL [12764]: pgsql_db_connect() -- 20:44:28.748 DEBUG [12764]: Database connection successful -- 20:44:28.748 INFO [12764]: _SERVER found -- 20:44:28.748 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 20:44:28.748 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 20:44:28.748 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r9p6vj064fhbmv114rkouttta4h6pcgk -- 20:44:28.748 INFO [12764]: QUERY_STRING = /member -- 20:44:28.748 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:44:28.783 INFO [12764]: COREGRADE is stopping... -- 20:44:28.784 DEBUG [12764]: Closing database connection -- 20:44:28.784 SQL [12764]: pgsql_close() -- 20:44:29.052 INFO [12764]: COREGRADE is starting... -- 20:44:29.052 INFO [12764]: Version from config: 1.0 -- 20:44:29.052 DEBUG [12764]: Connecting to database... -- 20:44:29.052 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:44:29.052 SQL [12764]: pgsql_db_connect() -- 20:44:29.056 DEBUG [12764]: Database connection successful -- 20:44:29.056 INFO [12764]: _SERVER found -- 20:44:29.056 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 20:44:29.056 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 20:44:29.056 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r9p6vj064fhbmv114rkouttta4h6pcgk -- 20:44:29.056 INFO [12764]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:44:29.056 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:44:29.068 INFO [12764]: COREGRADE is stopping... -- 20:44:29.068 DEBUG [12764]: Closing database connection -- 20:44:29.068 SQL [12764]: pgsql_close() -- 20:44:29.072 INFO [11644]: COREGRADE is starting... -- 20:44:29.072 INFO [11644]: Version from config: 1.0 -- 20:44:29.072 DEBUG [11644]: Connecting to database... -- 20:44:29.072 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:44:29.072 SQL [11644]: pgsql_db_connect() -- 20:44:29.076 DEBUG [11644]: Database connection successful -- 20:44:29.076 INFO [11644]: _SERVER found -- 20:44:29.076 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 20:44:29.076 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 20:44:29.076 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r9p6vj064fhbmv114rkouttta4h6pcgk -- 20:44:29.076 INFO [11644]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:44:29.076 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:44:29.088 INFO [11644]: COREGRADE is stopping... -- 20:44:29.088 DEBUG [11644]: Closing database connection -- 20:44:29.088 SQL [11644]: pgsql_close() -- 20:44:33.373 INFO [11644]: COREGRADE is starting... -- 20:44:33.373 INFO [11644]: Version from config: 1.0 -- 20:44:33.373 DEBUG [11644]: Connecting to database... -- 20:44:33.373 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:44:33.373 SQL [11644]: pgsql_db_connect() -- 20:44:33.378 DEBUG [11644]: Database connection successful -- 20:44:33.378 INFO [11644]: _SERVER found -- 20:44:33.378 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 20:44:33.378 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 20:44:33.378 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r9p6vj064fhbmv114rkouttta4h6pcgk -- 20:44:33.378 INFO [11644]: QUERY_STRING = /member -- 20:44:33.378 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:44:33.413 INFO [11644]: COREGRADE is stopping... -- 20:44:33.413 DEBUG [11644]: Closing database connection -- 20:44:33.413 SQL [11644]: pgsql_close() -- 20:44:33.636 INFO [11644]: COREGRADE is starting... -- 20:44:33.637 INFO [11644]: Version from config: 1.0 -- 20:44:33.637 DEBUG [11644]: Connecting to database... -- 20:44:33.637 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:44:33.637 SQL [11644]: pgsql_db_connect() -- 20:44:33.641 DEBUG [11644]: Database connection successful -- 20:44:33.641 INFO [11644]: _SERVER found -- 20:44:33.641 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 20:44:33.641 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 20:44:33.641 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r9p6vj064fhbmv114rkouttta4h6pcgk -- 20:44:33.641 INFO [11644]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:44:33.641 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:44:33.652 INFO [11644]: COREGRADE is stopping... -- 20:44:33.652 DEBUG [11644]: Closing database connection -- 20:44:33.652 SQL [11644]: pgsql_close() -- 20:44:33.667 INFO [11644]: COREGRADE is starting... -- 20:44:33.667 INFO [11644]: Version from config: 1.0 -- 20:44:33.667 DEBUG [11644]: Connecting to database... -- 20:44:33.667 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:44:33.667 SQL [11644]: pgsql_db_connect() -- 20:44:33.671 DEBUG [11644]: Database connection successful -- 20:44:33.671 INFO [11644]: _SERVER found -- 20:44:33.671 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 20:44:33.671 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 20:44:33.671 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r9p6vj064fhbmv114rkouttta4h6pcgk -- 20:44:33.671 INFO [11644]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:44:33.671 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:44:33.682 INFO [11644]: COREGRADE is stopping... -- 20:44:33.682 DEBUG [11644]: Closing database connection -- 20:44:33.682 SQL [11644]: pgsql_close() -- 20:44:48.176 INFO [11639]: COREGRADE is starting... -- 20:44:48.176 INFO [11639]: Version from config: 1.0 -- 20:44:48.176 DEBUG [11639]: Connecting to database... -- 20:44:48.177 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:44:48.177 SQL [11639]: pgsql_db_connect() -- 20:44:48.181 DEBUG [11639]: Database connection successful -- 20:44:48.181 INFO [11639]: _SERVER found -- 20:44:48.181 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 20:44:48.181 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 20:44:48.181 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r9p6vj064fhbmv114rkouttta4h6pcgk -- 20:44:48.181 INFO [11639]: QUERY_STRING = /member/page -- 20:44:48.181 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:44:48.224 INFO [11639]: COREGRADE is stopping... -- 20:44:48.224 DEBUG [11639]: Closing database connection -- 20:44:48.224 SQL [11639]: pgsql_close() -- 20:44:48.698 INFO [11639]: COREGRADE is starting... -- 20:44:48.698 INFO [11639]: Version from config: 1.0 -- 20:44:48.698 DEBUG [11639]: Connecting to database... -- 20:44:48.698 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:44:48.698 SQL [11639]: pgsql_db_connect() -- 20:44:48.702 DEBUG [11639]: Database connection successful -- 20:44:48.702 INFO [11639]: _SERVER found -- 20:44:48.702 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 20:44:48.702 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 20:44:48.702 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=h4artpj2q7ni2abn3fsevg88s7gbdkib -- 20:44:48.702 INFO [11639]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:44:48.702 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:44:48.714 INFO [11639]: COREGRADE is stopping... -- 20:44:48.714 DEBUG [11639]: Closing database connection -- 20:44:48.714 SQL [11639]: pgsql_close() -- 20:44:48.793 INFO [11639]: COREGRADE is starting... -- 20:44:48.793 INFO [11639]: Version from config: 1.0 -- 20:44:48.793 DEBUG [11639]: Connecting to database... -- 20:44:48.793 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:44:48.793 SQL [11639]: pgsql_db_connect() -- 20:44:48.797 DEBUG [11639]: Database connection successful -- 20:44:48.797 INFO [11639]: _SERVER found -- 20:44:48.797 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 20:44:48.797 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 20:44:48.797 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=h4artpj2q7ni2abn3fsevg88s7gbdkib -- 20:44:48.797 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:44:48.797 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:44:48.809 INFO [11639]: COREGRADE is stopping... -- 20:44:48.809 DEBUG [11639]: Closing database connection -- 20:44:48.809 SQL [11639]: pgsql_close() -- 20:44:48.817 INFO [11639]: COREGRADE is starting... -- 20:44:48.817 INFO [11639]: Version from config: 1.0 -- 20:44:48.817 DEBUG [11639]: Connecting to database... -- 20:44:48.817 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:44:48.818 SQL [11639]: pgsql_db_connect() -- 20:44:48.821 DEBUG [11639]: Database connection successful -- 20:44:48.821 INFO [11639]: _SERVER found -- 20:44:48.821 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 20:44:48.821 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 20:44:48.821 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=h4artpj2q7ni2abn3fsevg88s7gbdkib -- 20:44:48.821 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:44:48.821 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:44:48.833 INFO [11639]: COREGRADE is stopping... -- 20:44:48.833 DEBUG [11639]: Closing database connection -- 20:44:48.833 SQL [11639]: pgsql_close() -- 20:46:00.355 INFO [11638]: COREGRADE is starting... -- 20:46:00.356 INFO [11638]: Version from config: 1.0 -- 20:46:00.356 DEBUG [11638]: Connecting to database... -- 20:46:00.356 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:46:00.356 SQL [11638]: pgsql_db_connect() -- 20:46:00.360 DEBUG [11638]: Database connection successful -- 20:46:00.360 INFO [11638]: _SERVER found -- 20:46:00.360 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 20:46:00.360 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 20:46:00.360 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=h4artpj2q7ni2abn3fsevg88s7gbdkib -- 20:46:00.360 INFO [11638]: QUERY_STRING = /auth -- 20:46:00.360 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:46:00.392 INFO [11638]: COREGRADE is stopping... -- 20:46:00.392 DEBUG [11638]: Closing database connection -- 20:46:00.392 SQL [11638]: pgsql_close() -- 20:46:01.982 INFO [11638]: COREGRADE is starting... -- 20:46:01.982 INFO [11638]: Version from config: 1.0 -- 20:46:01.982 DEBUG [11638]: Connecting to database... -- 20:46:01.982 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:46:01.982 SQL [11638]: pgsql_db_connect() -- 20:46:01.986 DEBUG [11638]: Database connection successful -- 20:46:01.986 INFO [11638]: _SERVER found -- 20:46:01.986 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 20:46:01.986 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 20:46:01.986 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=h4artpj2q7ni2abn3fsevg88s7gbdkib -- 20:46:01.986 INFO [11638]: QUERY_STRING = /auth -- 20:46:01.986 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:46:02.017 INFO [11638]: COREGRADE is stopping... -- 20:46:02.017 DEBUG [11638]: Closing database connection -- 20:46:02.017 SQL [11638]: pgsql_close() -- 20:46:02.323 INFO [11638]: COREGRADE is starting... -- 20:46:02.323 INFO [11638]: Version from config: 1.0 -- 20:46:02.323 DEBUG [11638]: Connecting to database... -- 20:46:02.323 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:46:02.323 SQL [11638]: pgsql_db_connect() -- 20:46:02.327 DEBUG [11638]: Database connection successful -- 20:46:02.327 INFO [11638]: _SERVER found -- 20:46:02.327 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 20:46:02.327 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 20:46:02.327 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=h4artpj2q7ni2abn3fsevg88s7gbdkib -- 20:46:02.327 INFO [11638]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 20:46:02.327 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:46:02.338 INFO [11638]: COREGRADE is stopping... -- 20:46:02.338 DEBUG [11638]: Closing database connection -- 20:46:02.338 SQL [11638]: pgsql_close() -- 20:46:02.341 INFO [11636]: COREGRADE is starting... -- 20:46:02.342 INFO [11636]: Version from config: 1.0 -- 20:46:02.342 DEBUG [11636]: Connecting to database... -- 20:46:02.342 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:46:02.342 SQL [11636]: pgsql_db_connect() -- 20:46:02.346 DEBUG [11636]: Database connection successful -- 20:46:02.346 INFO [11636]: _SERVER found -- 20:46:02.346 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 20:46:02.346 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 20:46:02.346 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=h4artpj2q7ni2abn3fsevg88s7gbdkib -- 20:46:02.346 INFO [11636]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:46:02.346 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:46:02.357 INFO [11636]: COREGRADE is stopping... -- 20:46:02.357 DEBUG [11636]: Closing database connection -- 20:46:02.357 SQL [11636]: pgsql_close() -- 20:46:13.819 INFO [11650]: COREGRADE is starting... -- 20:46:13.820 INFO [11650]: Version from config: 1.0 -- 20:46:13.820 DEBUG [11650]: Connecting to database... -- 20:46:13.820 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:46:13.820 SQL [11650]: pgsql_db_connect() -- 20:46:13.824 DEBUG [11650]: Database connection successful -- 20:46:13.824 INFO [11650]: _SERVER found -- 20:46:13.824 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 20:46:13.824 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 20:46:13.824 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=h4artpj2q7ni2abn3fsevg88s7gbdkib -- 20:46:13.824 INFO [11650]: QUERY_STRING = -- 20:46:13.824 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:46:13.864 INFO [11650]: COREGRADE is stopping... -- 20:46:13.864 DEBUG [11650]: Closing database connection -- 20:46:13.864 SQL [11650]: pgsql_close() -- 20:46:14.257 INFO [11650]: COREGRADE is starting... -- 20:46:14.258 INFO [11650]: Version from config: 1.0 -- 20:46:14.258 DEBUG [11650]: Connecting to database... -- 20:46:14.258 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:46:14.258 SQL [11650]: pgsql_db_connect() -- 20:46:14.264 INFO [11652]: COREGRADE is starting... -- 20:46:14.265 INFO [11652]: Version from config: 1.0 -- 20:46:14.265 DEBUG [11652]: Connecting to database... -- 20:46:14.265 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:46:14.265 SQL [11652]: pgsql_db_connect() -- 20:46:14.262 DEBUG [11650]: Database connection successful -- 20:46:14.262 INFO [11650]: _SERVER found -- 20:46:14.262 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 20:46:14.262 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 20:46:14.262 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=h4artpj2q7ni2abn3fsevg88s7gbdkib -- 20:46:14.262 INFO [11650]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 20:46:14.262 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:46:14.273 INFO [11650]: COREGRADE is stopping... -- 20:46:14.273 DEBUG [11650]: Closing database connection -- 20:46:14.273 SQL [11650]: pgsql_close() -- 20:46:14.268 DEBUG [11652]: Database connection successful -- 20:46:14.268 INFO [11652]: _SERVER found -- 20:46:14.268 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 20:46:14.268 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 20:46:14.268 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=h4artpj2q7ni2abn3fsevg88s7gbdkib -- 20:46:14.268 INFO [11652]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:46:14.268 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:46:14.280 INFO [11652]: COREGRADE is stopping... -- 20:46:14.280 DEBUG [11652]: Closing database connection -- 20:46:14.280 SQL [11652]: pgsql_close() -- 20:49:19.635 INFO [12761]: COREGRADE is starting... -- 20:49:19.635 INFO [12761]: Version from config: 1.0 -- 20:49:19.635 DEBUG [12761]: Connecting to database... -- 20:49:19.635 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:49:19.635 SQL [12761]: pgsql_db_connect() -- 20:49:19.640 DEBUG [12761]: Database connection successful -- 20:49:19.640 INFO [12761]: _SERVER found -- 20:49:19.640 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 20:49:19.640 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 20:49:19.640 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=jn5uh5q6skqr4h2stev77so910q5i0sg -- 20:49:19.640 INFO [12761]: QUERY_STRING = /member/configure -- 20:49:19.640 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:49:19.677 INFO [12761]: COREGRADE is stopping... -- 20:49:19.677 DEBUG [12761]: Closing database connection -- 20:49:19.677 SQL [12761]: pgsql_close() -- 20:49:19.933 INFO [12761]: COREGRADE is starting... -- 20:49:19.933 INFO [12761]: Version from config: 1.0 -- 20:49:19.933 DEBUG [12761]: Connecting to database... -- 20:49:19.933 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:49:19.933 SQL [12761]: pgsql_db_connect() -- 20:49:19.937 DEBUG [12761]: Database connection successful -- 20:49:19.937 INFO [12761]: _SERVER found -- 20:49:19.937 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 20:49:19.937 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 20:49:19.937 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=cbrs3k7thk0mqam9tlbgitij1s2ev98e -- 20:49:19.937 INFO [12761]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:49:19.937 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:49:19.948 INFO [12761]: COREGRADE is stopping... -- 20:49:19.948 DEBUG [12761]: Closing database connection -- 20:49:19.948 SQL [12761]: pgsql_close() -- 20:49:19.980 INFO [12761]: COREGRADE is starting... -- 20:49:19.980 INFO [12761]: Version from config: 1.0 -- 20:49:19.980 DEBUG [12761]: Connecting to database... -- 20:49:19.980 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:49:19.980 SQL [12761]: pgsql_db_connect() -- 20:49:19.984 DEBUG [12761]: Database connection successful -- 20:49:19.984 INFO [12761]: _SERVER found -- 20:49:19.984 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 20:49:19.984 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 20:49:19.984 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=cbrs3k7thk0mqam9tlbgitij1s2ev98e -- 20:49:19.984 INFO [12761]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:49:19.984 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:49:19.995 INFO [12761]: COREGRADE is stopping... -- 20:49:19.995 DEBUG [12761]: Closing database connection -- 20:49:19.995 SQL [12761]: pgsql_close() -- 20:51:37.375 INFO [11637]: COREGRADE is starting... -- 20:51:37.376 INFO [11637]: Version from config: 1.0 -- 20:51:37.376 DEBUG [11637]: Connecting to database... -- 20:51:37.376 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:51:37.376 SQL [11637]: pgsql_db_connect() -- 20:51:37.380 DEBUG [11637]: Database connection successful -- 20:51:37.380 INFO [11637]: _SERVER found -- 20:51:37.380 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 20:51:37.380 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 20:51:37.380 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=cbrs3k7thk0mqam9tlbgitij1s2ev98e -- 20:51:37.380 INFO [11637]: QUERY_STRING = /member -- 20:51:37.380 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:51:37.416 INFO [11637]: COREGRADE is stopping... -- 20:51:37.416 DEBUG [11637]: Closing database connection -- 20:51:37.416 SQL [11637]: pgsql_close() -- 20:51:37.683 INFO [11637]: COREGRADE is starting... -- 20:51:37.683 INFO [11637]: Version from config: 1.0 -- 20:51:37.683 DEBUG [11637]: Connecting to database... -- 20:51:37.683 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:51:37.683 SQL [11637]: pgsql_db_connect() -- 20:51:37.687 DEBUG [11637]: Database connection successful -- 20:51:37.687 INFO [11637]: _SERVER found -- 20:51:37.687 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 20:51:37.687 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 20:51:37.687 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=cbrs3k7thk0mqam9tlbgitij1s2ev98e -- 20:51:37.687 INFO [11637]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:51:37.687 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:51:37.698 INFO [11637]: COREGRADE is stopping... -- 20:51:37.698 DEBUG [11637]: Closing database connection -- 20:51:37.698 SQL [11637]: pgsql_close() -- 20:51:37.700 INFO [12763]: COREGRADE is starting... -- 20:51:37.700 INFO [12763]: Version from config: 1.0 -- 20:51:37.700 DEBUG [12763]: Connecting to database... -- 20:51:37.700 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:51:37.700 SQL [12763]: pgsql_db_connect() -- 20:51:37.704 DEBUG [12763]: Database connection successful -- 20:51:37.704 INFO [12763]: _SERVER found -- 20:51:37.704 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 20:51:37.704 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 20:51:37.704 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=cbrs3k7thk0mqam9tlbgitij1s2ev98e -- 20:51:37.704 INFO [12763]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:51:37.704 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:51:37.716 INFO [12763]: COREGRADE is stopping... -- 20:51:37.716 DEBUG [12763]: Closing database connection -- 20:51:37.716 SQL [12763]: pgsql_close() -- 20:51:39.118 INFO [12763]: COREGRADE is starting... -- 20:51:39.118 INFO [12763]: Version from config: 1.0 -- 20:51:39.118 DEBUG [12763]: Connecting to database... -- 20:51:39.119 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:51:39.119 SQL [12763]: pgsql_db_connect() -- 20:51:39.123 DEBUG [12763]: Database connection successful -- 20:51:39.123 INFO [12763]: _SERVER found -- 20:51:39.123 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 20:51:39.123 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 20:51:39.123 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=cbrs3k7thk0mqam9tlbgitij1s2ev98e -- 20:51:39.123 INFO [12763]: QUERY_STRING = /member/page -- 20:51:39.123 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:51:39.163 INFO [12763]: COREGRADE is stopping... -- 20:51:39.163 DEBUG [12763]: Closing database connection -- 20:51:39.163 SQL [12763]: pgsql_close() -- 20:51:39.330 INFO [12763]: COREGRADE is starting... -- 20:51:39.330 INFO [12763]: Version from config: 1.0 -- 20:51:39.330 DEBUG [12763]: Connecting to database... -- 20:51:39.330 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:51:39.330 SQL [12763]: pgsql_db_connect() -- 20:51:39.334 DEBUG [12763]: Database connection successful -- 20:51:39.334 INFO [12763]: _SERVER found -- 20:51:39.334 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 20:51:39.334 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 20:51:39.334 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=cbrs3k7thk0mqam9tlbgitij1s2ev98e -- 20:51:39.334 INFO [12763]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:51:39.334 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:51:39.345 INFO [12763]: COREGRADE is stopping... -- 20:51:39.345 DEBUG [12763]: Closing database connection -- 20:51:39.345 SQL [12763]: pgsql_close() -- 20:51:39.492 INFO [12763]: COREGRADE is starting... -- 20:51:39.492 INFO [12763]: Version from config: 1.0 -- 20:51:39.492 DEBUG [12763]: Connecting to database... -- 20:51:39.492 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:51:39.492 SQL [12763]: pgsql_db_connect() -- 20:51:39.496 DEBUG [12763]: Database connection successful -- 20:51:39.496 INFO [12763]: _SERVER found -- 20:51:39.496 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 20:51:39.496 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 20:51:39.496 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=cbrs3k7thk0mqam9tlbgitij1s2ev98e -- 20:51:39.496 INFO [12763]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:51:39.496 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:51:39.507 INFO [12763]: COREGRADE is stopping... -- 20:51:39.507 DEBUG [12763]: Closing database connection -- 20:51:39.507 SQL [12763]: pgsql_close() -- 20:51:39.521 INFO [12763]: COREGRADE is starting... -- 20:51:39.521 INFO [12763]: Version from config: 1.0 -- 20:51:39.521 DEBUG [12763]: Connecting to database... -- 20:51:39.521 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:51:39.521 SQL [12763]: pgsql_db_connect() -- 20:51:39.525 DEBUG [12763]: Database connection successful -- 20:51:39.525 INFO [12763]: _SERVER found -- 20:51:39.525 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 20:51:39.525 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 20:51:39.525 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=cbrs3k7thk0mqam9tlbgitij1s2ev98e -- 20:51:39.525 INFO [12763]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:51:39.525 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:51:39.536 INFO [12763]: COREGRADE is stopping... -- 20:51:39.536 DEBUG [12763]: Closing database connection -- 20:51:39.536 SQL [12763]: pgsql_close() -- 20:55:08.597 INFO [12764]: COREGRADE is starting... -- 20:55:08.597 INFO [12764]: Version from config: 1.0 -- 20:55:08.597 DEBUG [12764]: Connecting to database... -- 20:55:08.597 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:55:08.597 SQL [12764]: pgsql_db_connect() -- 20:55:08.601 DEBUG [12764]: Database connection successful -- 20:55:08.601 INFO [12764]: _SERVER found -- 20:55:08.601 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 20:55:08.601 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 20:55:08.601 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=cbrs3k7thk0mqam9tlbgitij1s2ev98e -- 20:55:08.601 INFO [12764]: QUERY_STRING = /member/page -- 20:55:08.601 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:55:08.643 INFO [12764]: COREGRADE is stopping... -- 20:55:08.643 DEBUG [12764]: Closing database connection -- 20:55:08.643 SQL [12764]: pgsql_close() -- 20:55:08.874 INFO [12764]: COREGRADE is starting... -- 20:55:08.874 INFO [12764]: Version from config: 1.0 -- 20:55:08.874 DEBUG [12764]: Connecting to database... -- 20:55:08.874 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:55:08.874 SQL [12764]: pgsql_db_connect() -- 20:55:08.879 DEBUG [12764]: Database connection successful -- 20:55:08.879 INFO [12764]: _SERVER found -- 20:55:08.879 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 20:55:08.879 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 20:55:08.879 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ri7fjk6pud48gnr3avgv52k2afc1b24u -- 20:55:08.879 INFO [12764]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:55:08.879 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:55:08.890 INFO [12764]: COREGRADE is stopping... -- 20:55:08.890 DEBUG [12764]: Closing database connection -- 20:55:08.890 SQL [12764]: pgsql_close() -- 20:55:08.973 INFO [12764]: COREGRADE is starting... -- 20:55:08.973 INFO [12764]: Version from config: 1.0 -- 20:55:08.973 DEBUG [12764]: Connecting to database... -- 20:55:08.973 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:55:08.973 SQL [12764]: pgsql_db_connect() -- 20:55:08.977 DEBUG [12764]: Database connection successful -- 20:55:08.977 INFO [12764]: _SERVER found -- 20:55:08.977 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 20:55:08.977 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 20:55:08.977 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ri7fjk6pud48gnr3avgv52k2afc1b24u -- 20:55:08.977 INFO [12764]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:55:08.977 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:55:08.988 INFO [12764]: COREGRADE is stopping... -- 20:55:08.988 DEBUG [12764]: Closing database connection -- 20:55:08.988 SQL [12764]: pgsql_close() -- 20:55:09.024 INFO [12764]: COREGRADE is starting... -- 20:55:09.025 INFO [12764]: Version from config: 1.0 -- 20:55:09.025 DEBUG [12764]: Connecting to database... -- 20:55:09.025 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:55:09.025 SQL [12764]: pgsql_db_connect() -- 20:55:09.029 DEBUG [12764]: Database connection successful -- 20:55:09.029 INFO [12764]: _SERVER found -- 20:55:09.029 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 20:55:09.029 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 20:55:09.029 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ri7fjk6pud48gnr3avgv52k2afc1b24u -- 20:55:09.029 INFO [12764]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:55:09.029 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:55:09.040 INFO [12764]: COREGRADE is stopping... -- 20:55:09.040 DEBUG [12764]: Closing database connection -- 20:55:09.040 SQL [12764]: pgsql_close() -- 20:55:12.425 INFO [12764]: COREGRADE is starting... -- 20:55:12.425 INFO [12764]: Version from config: 1.0 -- 20:55:12.425 DEBUG [12764]: Connecting to database... -- 20:55:12.425 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:55:12.425 SQL [12764]: pgsql_db_connect() -- 20:55:12.429 DEBUG [12764]: Database connection successful -- 20:55:12.429 INFO [12764]: _SERVER found -- 20:55:12.429 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 20:55:12.429 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 20:55:12.429 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ri7fjk6pud48gnr3avgv52k2afc1b24u -- 20:55:12.429 INFO [12764]: QUERY_STRING = /member/page -- 20:55:12.429 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:55:12.468 INFO [12764]: COREGRADE is stopping... -- 20:55:12.468 DEBUG [12764]: Closing database connection -- 20:55:12.468 SQL [12764]: pgsql_close() -- 20:55:12.641 INFO [12764]: COREGRADE is starting... -- 20:55:12.641 INFO [12764]: Version from config: 1.0 -- 20:55:12.641 DEBUG [12764]: Connecting to database... -- 20:55:12.641 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:55:12.641 SQL [12764]: pgsql_db_connect() -- 20:55:12.645 DEBUG [12764]: Database connection successful -- 20:55:12.645 INFO [12764]: _SERVER found -- 20:55:12.645 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 20:55:12.645 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 20:55:12.645 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ri7fjk6pud48gnr3avgv52k2afc1b24u -- 20:55:12.645 INFO [12764]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:55:12.645 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:55:12.656 INFO [12764]: COREGRADE is stopping... -- 20:55:12.656 DEBUG [12764]: Closing database connection -- 20:55:12.656 SQL [12764]: pgsql_close() -- 20:55:12.739 INFO [12764]: COREGRADE is starting... -- 20:55:12.739 INFO [12764]: Version from config: 1.0 -- 20:55:12.739 DEBUG [12764]: Connecting to database... -- 20:55:12.739 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:55:12.739 SQL [12764]: pgsql_db_connect() -- 20:55:12.743 DEBUG [12764]: Database connection successful -- 20:55:12.743 INFO [12764]: _SERVER found -- 20:55:12.743 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 20:55:12.743 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 20:55:12.743 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ri7fjk6pud48gnr3avgv52k2afc1b24u -- 20:55:12.743 INFO [12764]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:55:12.743 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:55:12.754 INFO [12764]: COREGRADE is stopping... -- 20:55:12.754 DEBUG [12764]: Closing database connection -- 20:55:12.754 SQL [12764]: pgsql_close() -- 20:55:12.779 INFO [12764]: COREGRADE is starting... -- 20:55:12.779 INFO [12764]: Version from config: 1.0 -- 20:55:12.779 DEBUG [12764]: Connecting to database... -- 20:55:12.779 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:55:12.779 SQL [12764]: pgsql_db_connect() -- 20:55:12.783 DEBUG [12764]: Database connection successful -- 20:55:12.783 INFO [12764]: _SERVER found -- 20:55:12.783 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 20:55:12.783 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 20:55:12.783 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ri7fjk6pud48gnr3avgv52k2afc1b24u -- 20:55:12.783 INFO [12764]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:55:12.783 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:55:12.794 INFO [12764]: COREGRADE is stopping... -- 20:55:12.794 DEBUG [12764]: Closing database connection -- 20:55:12.794 SQL [12764]: pgsql_close() -- 20:55:14.704 INFO [12764]: COREGRADE is starting... -- 20:55:14.704 INFO [12764]: Version from config: 1.0 -- 20:55:14.704 DEBUG [12764]: Connecting to database... -- 20:55:14.704 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:55:14.704 SQL [12764]: pgsql_db_connect() -- 20:55:14.708 DEBUG [12764]: Database connection successful -- 20:55:14.708 INFO [12764]: _SERVER found -- 20:55:14.708 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 20:55:14.708 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 20:55:14.708 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=h4artpj2q7ni2abn3fsevg88s7gbdkib -- 20:55:14.708 INFO [12764]: QUERY_STRING = /auth -- 20:55:14.708 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:55:14.740 INFO [12764]: COREGRADE is stopping... -- 20:55:14.740 DEBUG [12764]: Closing database connection -- 20:55:14.740 SQL [12764]: pgsql_close() -- 20:55:16.245 INFO [12764]: COREGRADE is starting... -- 20:55:16.245 INFO [12764]: Version from config: 1.0 -- 20:55:16.245 DEBUG [12764]: Connecting to database... -- 20:55:16.245 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:55:16.245 SQL [12764]: pgsql_db_connect() -- 20:55:16.249 DEBUG [12764]: Database connection successful -- 20:55:16.249 INFO [12764]: _SERVER found -- 20:55:16.249 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 20:55:16.249 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 20:55:16.249 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=phh7aa97rhspq2utdfrm0ms62nces27n -- 20:55:16.249 INFO [12764]: QUERY_STRING = /auth -- 20:55:16.249 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:55:16.280 INFO [12764]: COREGRADE is stopping... -- 20:55:16.281 DEBUG [12764]: Closing database connection -- 20:55:16.281 SQL [12764]: pgsql_close() -- 20:55:16.674 INFO [12764]: COREGRADE is starting... -- 20:55:16.674 INFO [12764]: Version from config: 1.0 -- 20:55:16.674 DEBUG [12764]: Connecting to database... -- 20:55:16.674 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:55:16.674 SQL [12764]: pgsql_db_connect() -- 20:55:16.678 DEBUG [12764]: Database connection successful -- 20:55:16.678 INFO [12764]: _SERVER found -- 20:55:16.678 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 20:55:16.678 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 20:55:16.678 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=phh7aa97rhspq2utdfrm0ms62nces27n -- 20:55:16.678 INFO [12764]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 20:55:16.678 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:55:16.689 INFO [12764]: COREGRADE is stopping... -- 20:55:16.689 DEBUG [12764]: Closing database connection -- 20:55:16.689 SQL [12764]: pgsql_close() -- 20:55:16.709 INFO [11644]: COREGRADE is starting... -- 20:55:16.709 INFO [11644]: Version from config: 1.0 -- 20:55:16.709 DEBUG [11644]: Connecting to database... -- 20:55:16.709 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:55:16.710 SQL [11644]: pgsql_db_connect() -- 20:55:16.713 DEBUG [11644]: Database connection successful -- 20:55:16.713 INFO [11644]: _SERVER found -- 20:55:16.713 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 20:55:16.713 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 20:55:16.713 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=phh7aa97rhspq2utdfrm0ms62nces27n -- 20:55:16.713 INFO [11644]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:55:16.713 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:55:16.725 INFO [11644]: COREGRADE is stopping... -- 20:55:16.725 DEBUG [11644]: Closing database connection -- 20:55:16.725 SQL [11644]: pgsql_close() -- 20:55:18.487 INFO [11644]: COREGRADE is starting... -- 20:55:18.487 INFO [11644]: Version from config: 1.0 -- 20:55:18.487 DEBUG [11644]: Connecting to database... -- 20:55:18.487 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:55:18.487 SQL [11644]: pgsql_db_connect() -- 20:55:18.522 INFO [11644]: COREGRADE is starting... -- 20:55:18.522 INFO [11644]: Version from config: 1.0 -- 20:55:18.522 DEBUG [11644]: Connecting to database... -- 20:55:18.522 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:55:18.522 SQL [11644]: pgsql_db_connect() -- 20:55:18.526 DEBUG [11644]: Database connection successful -- 20:55:18.526 INFO [11644]: _SERVER found -- 20:55:18.526 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 20:55:18.526 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 20:55:18.526 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=phh7aa97rhspq2utdfrm0ms62nces27n -- 20:55:18.526 INFO [11644]: QUERY_STRING = -- 20:55:18.526 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:55:18.526 INFO [11644]: SystemStatus()09-09-********~************ -- 20:55:18.526 INFO [11644]: long coregrade_api_main(CVars in, CVars &out) -- 20:55:18.526 INFO [11644]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 20:55:18.526 INFO [11644]: account calls -- 20:55:18.526 INFO [11644]: account_calls() -- 20:55:18.526 INFO [11644]: LoginCoreGradeAccount() -- 20:55:18.526 FLOG_MAX [11644]: REQ_STRING(username) -- 20:55:18.526 FLOG_MAX [11644]: REQ_STRING(password) -- 20:55:18.526 FLOG_MAX [11644]: REQ_STRING(sessionid) -- 20:55:18.526 FLOG_MAX [11644]: long load_db_record( CVars &rec, const char * query, ... ) -- 20:55:18.526 SQL [11644]: pgsql_query() -- 20:55:18.526 SQL [11644]: About to run query: -- 20:55:18.526 SQL [11644]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 20:55:18.530 SQL [11644]: Found rows: 1 -- 20:55:18.530 FLOG_MAX [11644]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=15 -- 20:55:18.530 INFO [11644]: long SessionCheck(long uid, const char *sessionid, int create ) -- 20:55:18.530 SQL [11644]: pgsql_exec() -- 20:55:18.530 SQL [11644]: About to run query: -- 20:55:18.530 SQL [11644]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 20:55:18.530 SQL [11644]: PQcmdTuples: 0 -- 20:55:18.530 SQL [11644]: Affected rows: 0 -- 20:55:18.530 SQL [11644]: pgsql_exec() -- 20:55:18.530 SQL [11644]: About to run query: -- 20:55:18.531 SQL [11644]: DELETE FROM members_session WHERE member_id=7 -- 20:55:18.531 SQL [11644]: PQcmdTuples: 1 -- 20:55:18.531 SQL [11644]: Affected rows: 1 -- 20:55:18.531 SQL [11644]: pgsql_query() -- 20:55:18.531 SQL [11644]: About to run query: -- 20:55:18.531 SQL [11644]: SELECT * FROM members_session WHERE member_id=7 AND session<>'19A7BAE0FAF088BABCBD63FC82E5EB98' -- 20:55:18.532 SQL [11644]: Found rows: 0 -- 20:55:18.532 SQL [11644]: Found rows: 0 -- 20:55:18.532 FLOG_MAX [11644]: long load_db_record( CVars &rec, const char * query, ... ) -- 20:55:18.532 SQL [11644]: pgsql_query() -- 20:55:18.532 SQL [11644]: About to run query: -- 20:55:18.532 SQL [11644]: SELECT * FROM members_session WHERE member_id=7 AND session='19A7BAE0FAF088BABCBD63FC82E5EB98' -- 20:55:18.533 SQL [11644]: Found rows: 0 -- 20:55:18.533 SQL [11644]: Found rows: 0 -- 20:55:18.533 FLOG_MAX [11644]: insert_db_record() -- 20:55:18.533 SQL [11644]: pgsql_exec() -- 20:55:18.533 SQL [11644]: About to run query: -- 20:55:18.533 SQL [11644]: INSERT INTO members_session (member_id,session) VALUES ('7','19A7BAE0FAF088BABCBD63FC82E5EB98') -- 20:55:18.534 SQL [11644]: PQcmdTuples: 1 -- 20:55:18.534 SQL [11644]: Affected rows: 1 -- 20:55:18.534 FLOG_MAX [11644]: SELECT currval('members_session_id_seq') -- 20:55:18.534 SQL [11644]: pgsql_query() -- 20:55:18.534 SQL [11644]: About to run query: -- 20:55:18.534 SQL [11644]: SELECT currval('members_session_id_seq') -- 20:55:18.535 SQL [11644]: Found rows: 1 -- 20:55:18.535 INFO [11644]: CreateDefaultPage() -- 20:55:18.535 FLOG_MAX [11644]: long load_db_record( CVars &rec, const char * query, ... ) -- 20:55:18.535 SQL [11644]: pgsql_query() -- 20:55:18.535 SQL [11644]: About to run query: -- 20:55:18.535 SQL [11644]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 20:55:18.535 SQL [11644]: Found rows: 1 -- 20:55:18.535 FLOG_MAX [11644]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 20:55:18.535 SQL [11644]: pgsql_query() -- 20:55:18.535 SQL [11644]: About to run query: -- 20:55:18.535 SQL [11644]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 20:55:18.536 SQL [11644]: Found rows: 1 -- 20:55:18.536 INFO [11644]: /CreateDefaultPage() -- 20:55:18.536 INFO [11644]: /LoginCoreGradeAccount() -- 20:55:18.536 INFO [11644]: RET: added=2020-02-05 09:42:12.816064 -- 20:55:18.536 INFO [11644]: RET: email=tokslaw@chiefsoft.com -- 20:55:18.536 INFO [11644]: RET: firstname=Tokunbo -- 20:55:18.536 INFO [11644]: RET: id=7 -- 20:55:18.536 INFO [11644]: RET: last_login= -- 20:55:18.536 INFO [11644]: RET: lastname=Lawal -- 20:55:18.536 INFO [11644]: RET: loc=192.168.1.13 -- 20:55:18.536 INFO [11644]: RET: member_id=7 -- 20:55:18.536 INFO [11644]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 20:55:18.536 INFO [11644]: RET: phone= -- 20:55:18.536 INFO [11644]: RET: pid= -- 20:55:18.536 INFO [11644]: RET: result=YES I GET TO BACK END -- 20:55:18.536 INFO [11644]: RET: sessionid=19A7BAE0FAF088BABCBD63FC82E5EB98 -- 20:55:18.536 INFO [11644]: RET: status=1 -- 20:55:18.536 INFO [11644]: RET: stauts=OK -- 20:55:18.536 INFO [11644]: RET: username=tokslaw@chiefsoft.com -- 20:55:18.536 INFO [11644]: RET: verified= -- 20:55:18.537 INFO [11644]: COREGRADE is stopping... -- 20:55:18.537 DEBUG [11644]: Closing database connection -- 20:55:18.537 SQL [11644]: pgsql_close() -- 20:55:18.491 DEBUG [11644]: Database connection successful -- 20:55:18.491 INFO [11644]: _SERVER found -- 20:55:18.491 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 20:55:18.491 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 20:55:18.491 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=phh7aa97rhspq2utdfrm0ms62nces27n -- 20:55:18.491 INFO [11644]: QUERY_STRING = /auth -- 20:55:18.491 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:55:18.538 INFO [11644]: COREGRADE is stopping... -- 20:55:18.538 DEBUG [11644]: Closing database connection -- 20:55:18.538 SQL [11644]: pgsql_close() -- 20:55:18.555 INFO [11644]: COREGRADE is starting... -- 20:55:18.556 INFO [11644]: Version from config: 1.0 -- 20:55:18.556 DEBUG [11644]: Connecting to database... -- 20:55:18.556 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:55:18.556 SQL [11644]: pgsql_db_connect() -- 20:55:18.560 DEBUG [11644]: Database connection successful -- 20:55:18.560 INFO [11644]: _SERVER found -- 20:55:18.560 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 20:55:18.560 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 20:55:18.560 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=phh7aa97rhspq2utdfrm0ms62nces27n -- 20:55:18.560 INFO [11644]: QUERY_STRING = /member/index -- 20:55:18.560 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:55:18.595 INFO [11644]: COREGRADE is stopping... -- 20:55:18.595 DEBUG [11644]: Closing database connection -- 20:55:18.595 SQL [11644]: pgsql_close() -- 20:55:19.003 INFO [11644]: COREGRADE is starting... -- 20:55:19.003 INFO [11644]: Version from config: 1.0 -- 20:55:19.003 DEBUG [11644]: Connecting to database... -- 20:55:19.003 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:55:19.003 SQL [11644]: pgsql_db_connect() -- 20:55:19.007 DEBUG [11644]: Database connection successful -- 20:55:19.007 INFO [11644]: _SERVER found -- 20:55:19.007 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 20:55:19.007 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 20:55:19.007 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=phh7aa97rhspq2utdfrm0ms62nces27n -- 20:55:19.007 INFO [11644]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:55:19.007 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:55:19.018 INFO [11644]: COREGRADE is stopping... -- 20:55:19.018 DEBUG [11644]: Closing database connection -- 20:55:19.018 SQL [11644]: pgsql_close() -- 20:55:19.050 INFO [11644]: COREGRADE is starting... -- 20:55:19.050 INFO [11644]: Version from config: 1.0 -- 20:55:19.050 DEBUG [11644]: Connecting to database... -- 20:55:19.050 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:55:19.050 SQL [11644]: pgsql_db_connect() -- 20:55:19.054 DEBUG [11644]: Database connection successful -- 20:55:19.054 INFO [11644]: _SERVER found -- 20:55:19.054 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 20:55:19.054 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 20:55:19.054 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=phh7aa97rhspq2utdfrm0ms62nces27n -- 20:55:19.054 INFO [11644]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:55:19.054 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:55:19.065 INFO [11644]: COREGRADE is stopping... -- 20:55:19.065 DEBUG [11644]: Closing database connection -- 20:55:19.065 SQL [11644]: pgsql_close() -- 20:55:21.293 INFO [11644]: COREGRADE is starting... -- 20:55:21.294 INFO [11644]: Version from config: 1.0 -- 20:55:21.294 DEBUG [11644]: Connecting to database... -- 20:55:21.294 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:55:21.294 SQL [11644]: pgsql_db_connect() -- 20:55:21.298 DEBUG [11644]: Database connection successful -- 20:55:21.298 INFO [11644]: _SERVER found -- 20:55:21.298 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 20:55:21.298 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 20:55:21.298 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=phh7aa97rhspq2utdfrm0ms62nces27n -- 20:55:21.298 INFO [11644]: QUERY_STRING = /member/page -- 20:55:21.298 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:55:21.337 INFO [11644]: COREGRADE is stopping... -- 20:55:21.337 DEBUG [11644]: Closing database connection -- 20:55:21.337 SQL [11644]: pgsql_close() -- 20:55:21.642 INFO [11644]: COREGRADE is starting... -- 20:55:21.642 INFO [11644]: Version from config: 1.0 -- 20:55:21.642 DEBUG [11644]: Connecting to database... -- 20:55:21.642 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:55:21.642 SQL [11644]: pgsql_db_connect() -- 20:55:21.646 DEBUG [11644]: Database connection successful -- 20:55:21.646 INFO [11644]: _SERVER found -- 20:55:21.646 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 20:55:21.646 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 20:55:21.646 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=phh7aa97rhspq2utdfrm0ms62nces27n -- 20:55:21.646 INFO [11644]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:55:21.646 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:55:21.657 INFO [11644]: COREGRADE is stopping... -- 20:55:21.657 DEBUG [11644]: Closing database connection -- 20:55:21.657 SQL [11644]: pgsql_close() -- 20:55:21.833 INFO [11644]: COREGRADE is starting... -- 20:55:21.833 INFO [11644]: Version from config: 1.0 -- 20:55:21.833 DEBUG [11644]: Connecting to database... -- 20:55:21.833 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:55:21.833 SQL [11644]: pgsql_db_connect() -- 20:55:21.837 DEBUG [11644]: Database connection successful -- 20:55:21.837 INFO [11644]: _SERVER found -- 20:55:21.837 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 20:55:21.837 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 20:55:21.837 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=phh7aa97rhspq2utdfrm0ms62nces27n -- 20:55:21.837 INFO [11644]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:55:21.837 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:55:21.848 INFO [11644]: COREGRADE is stopping... -- 20:55:21.848 DEBUG [11644]: Closing database connection -- 20:55:21.848 SQL [11644]: pgsql_close() -- 20:55:21.858 INFO [11644]: COREGRADE is starting... -- 20:55:21.859 INFO [11644]: Version from config: 1.0 -- 20:55:21.859 DEBUG [11644]: Connecting to database... -- 20:55:21.859 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:55:21.859 SQL [11644]: pgsql_db_connect() -- 20:55:21.862 DEBUG [11644]: Database connection successful -- 20:55:21.862 INFO [11644]: _SERVER found -- 20:55:21.862 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 20:55:21.862 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 20:55:21.862 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=phh7aa97rhspq2utdfrm0ms62nces27n -- 20:55:21.862 INFO [11644]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:55:21.862 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:55:21.873 INFO [11644]: COREGRADE is stopping... -- 20:55:21.874 DEBUG [11644]: Closing database connection -- 20:55:21.874 SQL [11644]: pgsql_close() -- 20:55:56.636 INFO [11639]: COREGRADE is starting... -- 20:55:56.636 INFO [11639]: Version from config: 1.0 -- 20:55:56.636 DEBUG [11639]: Connecting to database... -- 20:55:56.636 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:55:56.636 SQL [11639]: pgsql_db_connect() -- 20:55:56.640 DEBUG [11639]: Database connection successful -- 20:55:56.640 INFO [11639]: _SERVER found -- 20:55:56.640 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 20:55:56.640 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 20:55:56.640 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ri7fjk6pud48gnr3avgv52k2afc1b24u -- 20:55:56.640 INFO [11639]: QUERY_STRING = /member/page -- 20:55:56.640 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:55:56.684 INFO [11639]: COREGRADE is stopping... -- 20:55:56.684 DEBUG [11639]: Closing database connection -- 20:55:56.684 SQL [11639]: pgsql_close() -- 20:55:56.902 INFO [11639]: COREGRADE is starting... -- 20:55:56.902 INFO [11639]: Version from config: 1.0 -- 20:55:56.902 DEBUG [11639]: Connecting to database... -- 20:55:56.902 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:55:56.902 SQL [11639]: pgsql_db_connect() -- 20:55:56.906 DEBUG [11639]: Database connection successful -- 20:55:56.906 INFO [11639]: _SERVER found -- 20:55:56.906 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 20:55:56.906 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 20:55:56.906 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ri7fjk6pud48gnr3avgv52k2afc1b24u -- 20:55:56.906 INFO [11639]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:55:56.906 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:55:56.918 INFO [11639]: COREGRADE is stopping... -- 20:55:56.918 DEBUG [11639]: Closing database connection -- 20:55:56.918 SQL [11639]: pgsql_close() -- 20:55:56.993 INFO [11639]: COREGRADE is starting... -- 20:55:56.994 INFO [11639]: Version from config: 1.0 -- 20:55:56.994 DEBUG [11639]: Connecting to database... -- 20:55:56.994 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:55:56.994 SQL [11639]: pgsql_db_connect() -- 20:55:56.998 DEBUG [11639]: Database connection successful -- 20:55:56.998 INFO [11639]: _SERVER found -- 20:55:56.998 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 20:55:56.998 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 20:55:56.998 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ri7fjk6pud48gnr3avgv52k2afc1b24u -- 20:55:56.998 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:55:56.998 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:55:57.010 INFO [11639]: COREGRADE is stopping... -- 20:55:57.010 DEBUG [11639]: Closing database connection -- 20:55:57.010 SQL [11639]: pgsql_close() -- 20:55:57.026 INFO [11639]: COREGRADE is starting... -- 20:55:57.027 INFO [11639]: Version from config: 1.0 -- 20:55:57.027 DEBUG [11639]: Connecting to database... -- 20:55:57.027 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:55:57.027 SQL [11639]: pgsql_db_connect() -- 20:55:57.030 DEBUG [11639]: Database connection successful -- 20:55:57.030 INFO [11639]: _SERVER found -- 20:55:57.030 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 20:55:57.030 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 20:55:57.030 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ri7fjk6pud48gnr3avgv52k2afc1b24u -- 20:55:57.030 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:55:57.030 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:55:57.043 INFO [11639]: COREGRADE is stopping... -- 20:55:57.043 DEBUG [11639]: Closing database connection -- 20:55:57.043 SQL [11639]: pgsql_close() -- 20:55:58.370 INFO [11639]: COREGRADE is starting... -- 20:55:58.370 INFO [11639]: Version from config: 1.0 -- 20:55:58.370 DEBUG [11639]: Connecting to database... -- 20:55:58.370 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:55:58.370 SQL [11639]: pgsql_db_connect() -- 20:55:58.374 DEBUG [11639]: Database connection successful -- 20:55:58.374 INFO [11639]: _SERVER found -- 20:55:58.374 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 20:55:58.374 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 20:55:58.374 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ri7fjk6pud48gnr3avgv52k2afc1b24u -- 20:55:58.374 INFO [11639]: QUERY_STRING = /member/page -- 20:55:58.374 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:55:58.417 INFO [11639]: COREGRADE is stopping... -- 20:55:58.417 DEBUG [11639]: Closing database connection -- 20:55:58.417 SQL [11639]: pgsql_close() -- 20:55:58.693 INFO [11639]: COREGRADE is starting... -- 20:55:58.693 INFO [11639]: Version from config: 1.0 -- 20:55:58.693 DEBUG [11639]: Connecting to database... -- 20:55:58.693 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:55:58.693 SQL [11639]: pgsql_db_connect() -- 20:55:58.697 DEBUG [11639]: Database connection successful -- 20:55:58.697 INFO [11639]: _SERVER found -- 20:55:58.697 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 20:55:58.697 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 20:55:58.697 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ri7fjk6pud48gnr3avgv52k2afc1b24u -- 20:55:58.697 INFO [11639]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:55:58.697 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:55:58.709 INFO [11639]: COREGRADE is stopping... -- 20:55:58.709 DEBUG [11639]: Closing database connection -- 20:55:58.709 SQL [11639]: pgsql_close() -- 20:55:58.782 INFO [11639]: COREGRADE is starting... -- 20:55:58.782 INFO [11639]: Version from config: 1.0 -- 20:55:58.782 DEBUG [11639]: Connecting to database... -- 20:55:58.782 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:55:58.782 SQL [11639]: pgsql_db_connect() -- 20:55:58.786 DEBUG [11639]: Database connection successful -- 20:55:58.786 INFO [11639]: _SERVER found -- 20:55:58.786 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 20:55:58.786 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 20:55:58.786 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ri7fjk6pud48gnr3avgv52k2afc1b24u -- 20:55:58.786 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:55:58.786 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:55:58.798 INFO [11639]: COREGRADE is stopping... -- 20:55:58.798 DEBUG [11639]: Closing database connection -- 20:55:58.798 SQL [11639]: pgsql_close() -- 20:55:58.852 INFO [11639]: COREGRADE is starting... -- 20:55:58.853 INFO [11639]: Version from config: 1.0 -- 20:55:58.853 DEBUG [11639]: Connecting to database... -- 20:55:58.853 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:55:58.853 SQL [11639]: pgsql_db_connect() -- 20:55:58.857 DEBUG [11639]: Database connection successful -- 20:55:58.857 INFO [11639]: _SERVER found -- 20:55:58.857 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 20:55:58.857 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 20:55:58.857 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ri7fjk6pud48gnr3avgv52k2afc1b24u -- 20:55:58.857 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:55:58.857 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:55:58.869 INFO [11639]: COREGRADE is stopping... -- 20:55:58.869 DEBUG [11639]: Closing database connection -- 20:55:58.869 SQL [11639]: pgsql_close() -- 20:56:00.853 INFO [11639]: COREGRADE is starting... -- 20:56:00.854 INFO [11639]: Version from config: 1.0 -- 20:56:00.854 DEBUG [11639]: Connecting to database... -- 20:56:00.854 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:56:00.854 SQL [11639]: pgsql_db_connect() -- 20:56:00.858 DEBUG [11639]: Database connection successful -- 20:56:00.858 INFO [11639]: _SERVER found -- 20:56:00.858 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 20:56:00.858 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 20:56:00.858 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=phh7aa97rhspq2utdfrm0ms62nces27n -- 20:56:00.858 INFO [11639]: QUERY_STRING = /member/page -- 20:56:00.858 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:56:00.900 INFO [11639]: COREGRADE is stopping... -- 20:56:00.900 DEBUG [11639]: Closing database connection -- 20:56:00.900 SQL [11639]: pgsql_close() -- 20:56:01.512 INFO [11639]: COREGRADE is starting... -- 20:56:01.513 INFO [11639]: Version from config: 1.0 -- 20:56:01.513 DEBUG [11639]: Connecting to database... -- 20:56:01.513 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:56:01.513 SQL [11639]: pgsql_db_connect() -- 20:56:01.517 DEBUG [11639]: Database connection successful -- 20:56:01.517 INFO [11639]: _SERVER found -- 20:56:01.517 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 20:56:01.517 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 20:56:01.517 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=phh7aa97rhspq2utdfrm0ms62nces27n -- 20:56:01.517 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:56:01.517 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:56:01.529 INFO [11639]: COREGRADE is stopping... -- 20:56:01.529 DEBUG [11639]: Closing database connection -- 20:56:01.529 SQL [11639]: pgsql_close() -- 20:56:01.540 INFO [11639]: COREGRADE is starting... -- 20:56:01.540 INFO [11639]: Version from config: 1.0 -- 20:56:01.540 DEBUG [11639]: Connecting to database... -- 20:56:01.540 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:56:01.540 SQL [11639]: pgsql_db_connect() -- 20:56:01.544 DEBUG [11639]: Database connection successful -- 20:56:01.544 INFO [11639]: _SERVER found -- 20:56:01.544 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 20:56:01.544 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 20:56:01.544 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=phh7aa97rhspq2utdfrm0ms62nces27n -- 20:56:01.544 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:56:01.544 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:56:01.556 INFO [11639]: COREGRADE is stopping... -- 20:56:01.556 DEBUG [11639]: Closing database connection -- 20:56:01.556 SQL [11639]: pgsql_close() -- 20:56:02.682 INFO [11639]: COREGRADE is starting... -- 20:56:02.683 INFO [11639]: Version from config: 1.0 -- 20:56:02.683 DEBUG [11639]: Connecting to database... -- 20:56:02.683 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:56:02.683 SQL [11639]: pgsql_db_connect() -- 20:56:02.687 DEBUG [11639]: Database connection successful -- 20:56:02.687 INFO [11639]: _SERVER found -- 20:56:02.687 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 20:56:02.687 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 20:56:02.687 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=phh7aa97rhspq2utdfrm0ms62nces27n -- 20:56:02.687 INFO [11639]: QUERY_STRING = /member/page -- 20:56:02.687 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:56:02.729 INFO [11639]: COREGRADE is stopping... -- 20:56:02.729 DEBUG [11639]: Closing database connection -- 20:56:02.729 SQL [11639]: pgsql_close() -- 20:56:03.071 INFO [11639]: COREGRADE is starting... -- 20:56:03.072 INFO [11639]: Version from config: 1.0 -- 20:56:03.072 DEBUG [11639]: Connecting to database... -- 20:56:03.072 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:56:03.072 SQL [11639]: pgsql_db_connect() -- 20:56:03.076 DEBUG [11639]: Database connection successful -- 20:56:03.076 INFO [11639]: _SERVER found -- 20:56:03.076 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 20:56:03.076 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 20:56:03.076 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=phh7aa97rhspq2utdfrm0ms62nces27n -- 20:56:03.076 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:56:03.076 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:56:03.088 INFO [11639]: COREGRADE is stopping... -- 20:56:03.088 DEBUG [11639]: Closing database connection -- 20:56:03.088 SQL [11639]: pgsql_close() -- 20:56:03.110 INFO [11639]: COREGRADE is starting... -- 20:56:03.110 INFO [11639]: Version from config: 1.0 -- 20:56:03.110 DEBUG [11639]: Connecting to database... -- 20:56:03.110 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:56:03.110 SQL [11639]: pgsql_db_connect() -- 20:56:03.114 DEBUG [11639]: Database connection successful -- 20:56:03.114 INFO [11639]: _SERVER found -- 20:56:03.114 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 20:56:03.114 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 20:56:03.114 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=phh7aa97rhspq2utdfrm0ms62nces27n -- 20:56:03.114 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:56:03.114 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:56:03.126 INFO [11639]: COREGRADE is stopping... -- 20:56:03.126 DEBUG [11639]: Closing database connection -- 20:56:03.126 SQL [11639]: pgsql_close() -- 20:56:30.018 INFO [11638]: COREGRADE is starting... -- 20:56:30.019 INFO [11638]: Version from config: 1.0 -- 20:56:30.019 DEBUG [11638]: Connecting to database... -- 20:56:30.019 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:56:30.019 SQL [11638]: pgsql_db_connect() -- 20:56:30.023 DEBUG [11638]: Database connection successful -- 20:56:30.023 INFO [11638]: _SERVER found -- 20:56:30.023 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 20:56:30.023 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 20:56:30.023 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ri7fjk6pud48gnr3avgv52k2afc1b24u -- 20:56:30.023 INFO [11638]: QUERY_STRING = /member/page -- 20:56:30.023 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:56:30.061 INFO [11638]: COREGRADE is stopping... -- 20:56:30.061 DEBUG [11638]: Closing database connection -- 20:56:30.061 SQL [11638]: pgsql_close() -- 20:56:30.159 INFO [11638]: COREGRADE is starting... -- 20:56:30.159 INFO [11638]: Version from config: 1.0 -- 20:56:30.159 DEBUG [11638]: Connecting to database... -- 20:56:30.159 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:56:30.159 SQL [11638]: pgsql_db_connect() -- 20:56:30.163 DEBUG [11638]: Database connection successful -- 20:56:30.163 INFO [11638]: _SERVER found -- 20:56:30.163 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 20:56:30.163 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 20:56:30.163 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ri7fjk6pud48gnr3avgv52k2afc1b24u -- 20:56:30.163 INFO [11638]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:56:30.163 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:56:30.174 INFO [11638]: COREGRADE is stopping... -- 20:56:30.174 DEBUG [11638]: Closing database connection -- 20:56:30.174 SQL [11638]: pgsql_close() -- 20:56:30.519 INFO [11638]: COREGRADE is starting... -- 20:56:30.519 INFO [11638]: Version from config: 1.0 -- 20:56:30.519 DEBUG [11638]: Connecting to database... -- 20:56:30.519 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:56:30.519 SQL [11638]: pgsql_db_connect() -- 20:56:30.524 DEBUG [11638]: Database connection successful -- 20:56:30.524 INFO [11638]: _SERVER found -- 20:56:30.524 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 20:56:30.524 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 20:56:30.524 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ri7fjk6pud48gnr3avgv52k2afc1b24u -- 20:56:30.524 INFO [11638]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:56:30.524 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:56:30.535 INFO [11638]: COREGRADE is stopping... -- 20:56:30.535 DEBUG [11638]: Closing database connection -- 20:56:30.535 SQL [11638]: pgsql_close() -- 20:56:30.604 INFO [11638]: COREGRADE is starting... -- 20:56:30.604 INFO [11638]: Version from config: 1.0 -- 20:56:30.604 DEBUG [11638]: Connecting to database... -- 20:56:30.604 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:56:30.604 SQL [11638]: pgsql_db_connect() -- 20:56:30.608 DEBUG [11638]: Database connection successful -- 20:56:30.608 INFO [11638]: _SERVER found -- 20:56:30.608 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 20:56:30.608 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 20:56:30.608 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ri7fjk6pud48gnr3avgv52k2afc1b24u -- 20:56:30.608 INFO [11638]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:56:30.608 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:56:30.619 INFO [11638]: COREGRADE is stopping... -- 20:56:30.619 DEBUG [11638]: Closing database connection -- 20:56:30.619 SQL [11638]: pgsql_close() -- 20:56:32.393 INFO [11638]: COREGRADE is starting... -- 20:56:32.393 INFO [11638]: Version from config: 1.0 -- 20:56:32.393 DEBUG [11638]: Connecting to database... -- 20:56:32.393 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:56:32.393 SQL [11638]: pgsql_db_connect() -- 20:56:32.398 DEBUG [11638]: Database connection successful -- 20:56:32.398 INFO [11638]: _SERVER found -- 20:56:32.398 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 20:56:32.398 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 20:56:32.398 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ri7fjk6pud48gnr3avgv52k2afc1b24u -- 20:56:32.398 INFO [11638]: QUERY_STRING = /member/page -- 20:56:32.398 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:56:32.436 INFO [11638]: COREGRADE is stopping... -- 20:56:32.436 DEBUG [11638]: Closing database connection -- 20:56:32.436 SQL [11638]: pgsql_close() -- 20:56:32.622 INFO [11638]: COREGRADE is starting... -- 20:56:32.623 INFO [11638]: Version from config: 1.0 -- 20:56:32.623 DEBUG [11638]: Connecting to database... -- 20:56:32.623 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:56:32.623 SQL [11638]: pgsql_db_connect() -- 20:56:32.627 DEBUG [11638]: Database connection successful -- 20:56:32.627 INFO [11638]: _SERVER found -- 20:56:32.627 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 20:56:32.627 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 20:56:32.627 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ri7fjk6pud48gnr3avgv52k2afc1b24u -- 20:56:32.627 INFO [11638]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:56:32.627 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:56:32.638 INFO [11638]: COREGRADE is stopping... -- 20:56:32.638 DEBUG [11638]: Closing database connection -- 20:56:32.638 SQL [11638]: pgsql_close() -- 20:56:32.709 INFO [11638]: COREGRADE is starting... -- 20:56:32.709 INFO [11638]: Version from config: 1.0 -- 20:56:32.709 DEBUG [11638]: Connecting to database... -- 20:56:32.709 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:56:32.709 SQL [11638]: pgsql_db_connect() -- 20:56:32.713 DEBUG [11638]: Database connection successful -- 20:56:32.713 INFO [11638]: _SERVER found -- 20:56:32.713 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 20:56:32.713 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 20:56:32.713 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ri7fjk6pud48gnr3avgv52k2afc1b24u -- 20:56:32.713 INFO [11638]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:56:32.713 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:56:32.724 INFO [11638]: COREGRADE is stopping... -- 20:56:32.724 DEBUG [11638]: Closing database connection -- 20:56:32.724 SQL [11638]: pgsql_close() -- 20:56:32.736 INFO [11638]: COREGRADE is starting... -- 20:56:32.736 INFO [11638]: Version from config: 1.0 -- 20:56:32.736 DEBUG [11638]: Connecting to database... -- 20:56:32.736 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:56:32.736 SQL [11638]: pgsql_db_connect() -- 20:56:32.740 DEBUG [11638]: Database connection successful -- 20:56:32.740 INFO [11638]: _SERVER found -- 20:56:32.740 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 20:56:32.740 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 20:56:32.740 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ri7fjk6pud48gnr3avgv52k2afc1b24u -- 20:56:32.740 INFO [11638]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:56:32.740 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:56:32.751 INFO [11638]: COREGRADE is stopping... -- 20:56:32.751 DEBUG [11638]: Closing database connection -- 20:56:32.751 SQL [11638]: pgsql_close() -- 20:56:47.595 INFO [11636]: COREGRADE is starting... -- 20:56:47.596 INFO [11636]: Version from config: 1.0 -- 20:56:47.596 DEBUG [11636]: Connecting to database... -- 20:56:47.596 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:56:47.596 SQL [11636]: pgsql_db_connect() -- 20:56:47.600 DEBUG [11636]: Database connection successful -- 20:56:47.600 INFO [11636]: _SERVER found -- 20:56:47.600 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 20:56:47.600 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 20:56:47.600 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=phh7aa97rhspq2utdfrm0ms62nces27n -- 20:56:47.600 INFO [11636]: QUERY_STRING = /member/page -- 20:56:47.600 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:56:47.639 INFO [11636]: COREGRADE is stopping... -- 20:56:47.639 DEBUG [11636]: Closing database connection -- 20:56:47.639 SQL [11636]: pgsql_close() -- 20:56:48.175 INFO [11636]: COREGRADE is starting... -- 20:56:48.176 INFO [11636]: Version from config: 1.0 -- 20:56:48.176 DEBUG [11636]: Connecting to database... -- 20:56:48.176 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:56:48.176 SQL [11636]: pgsql_db_connect() -- 20:56:48.180 DEBUG [11636]: Database connection successful -- 20:56:48.180 INFO [11636]: _SERVER found -- 20:56:48.180 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 20:56:48.180 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 20:56:48.180 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=phh7aa97rhspq2utdfrm0ms62nces27n -- 20:56:48.180 INFO [11636]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:56:48.180 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:56:48.191 INFO [11636]: COREGRADE is stopping... -- 20:56:48.191 DEBUG [11636]: Closing database connection -- 20:56:48.191 SQL [11636]: pgsql_close() -- 20:56:48.199 INFO [11636]: COREGRADE is starting... -- 20:56:48.200 INFO [11636]: Version from config: 1.0 -- 20:56:48.200 DEBUG [11636]: Connecting to database... -- 20:56:48.200 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:56:48.200 SQL [11636]: pgsql_db_connect() -- 20:56:48.206 DEBUG [11636]: Database connection successful -- 20:56:48.206 INFO [11636]: _SERVER found -- 20:56:48.206 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 20:56:48.206 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 20:56:48.206 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=phh7aa97rhspq2utdfrm0ms62nces27n -- 20:56:48.206 INFO [11636]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:56:48.206 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:56:48.217 INFO [11636]: COREGRADE is stopping... -- 20:56:48.217 DEBUG [11636]: Closing database connection -- 20:56:48.217 SQL [11636]: pgsql_close() -- 20:56:50.120 INFO [11636]: COREGRADE is starting... -- 20:56:50.121 INFO [11636]: Version from config: 1.0 -- 20:56:50.121 DEBUG [11636]: Connecting to database... -- 20:56:50.121 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:56:50.121 SQL [11636]: pgsql_db_connect() -- 20:56:50.125 DEBUG [11636]: Database connection successful -- 20:56:50.125 INFO [11636]: _SERVER found -- 20:56:50.125 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 20:56:50.125 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 20:56:50.125 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=phh7aa97rhspq2utdfrm0ms62nces27n -- 20:56:50.125 INFO [11636]: QUERY_STRING = /member/page -- 20:56:50.125 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:56:50.163 INFO [11636]: COREGRADE is stopping... -- 20:56:50.163 DEBUG [11636]: Closing database connection -- 20:56:50.163 SQL [11636]: pgsql_close() -- 20:56:50.994 INFO [11636]: COREGRADE is starting... -- 20:56:50.994 INFO [11636]: Version from config: 1.0 -- 20:56:50.994 DEBUG [11636]: Connecting to database... -- 20:56:50.994 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:56:50.994 SQL [11636]: pgsql_db_connect() -- 20:56:50.998 DEBUG [11636]: Database connection successful -- 20:56:50.998 INFO [11636]: _SERVER found -- 20:56:50.998 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 20:56:50.998 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 20:56:50.998 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=phh7aa97rhspq2utdfrm0ms62nces27n -- 20:56:50.998 INFO [11636]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:56:50.998 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:56:51.009 INFO [11636]: COREGRADE is stopping... -- 20:56:51.009 DEBUG [11636]: Closing database connection -- 20:56:51.009 SQL [11636]: pgsql_close() -- 20:56:51.022 INFO [11636]: COREGRADE is starting... -- 20:56:51.022 INFO [11636]: Version from config: 1.0 -- 20:56:51.022 DEBUG [11636]: Connecting to database... -- 20:56:51.022 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:56:51.022 SQL [11636]: pgsql_db_connect() -- 20:56:51.026 DEBUG [11636]: Database connection successful -- 20:56:51.026 INFO [11636]: _SERVER found -- 20:56:51.026 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 20:56:51.026 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 20:56:51.026 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=phh7aa97rhspq2utdfrm0ms62nces27n -- 20:56:51.026 INFO [11636]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:56:51.026 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:56:51.037 INFO [11636]: COREGRADE is stopping... -- 20:56:51.037 DEBUG [11636]: Closing database connection -- 20:56:51.037 SQL [11636]: pgsql_close() -- 21:00:13.241 INFO [11650]: COREGRADE is starting... -- 21:00:13.241 INFO [11650]: Version from config: 1.0 -- 21:00:13.241 DEBUG [11650]: Connecting to database... -- 21:00:13.241 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:13.241 SQL [11650]: pgsql_db_connect() -- 21:00:13.246 DEBUG [11650]: Database connection successful -- 21:00:13.246 INFO [11650]: _SERVER found -- 21:00:13.246 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 21:00:13.246 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 21:00:13.246 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=phh7aa97rhspq2utdfrm0ms62nces27n -- 21:00:13.246 INFO [11650]: QUERY_STRING = /member/page -- 21:00:13.246 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:00:13.289 INFO [11650]: COREGRADE is stopping... -- 21:00:13.289 DEBUG [11650]: Closing database connection -- 21:00:13.289 SQL [11650]: pgsql_close() -- 21:00:13.757 INFO [11650]: COREGRADE is starting... -- 21:00:13.757 INFO [11650]: Version from config: 1.0 -- 21:00:13.757 DEBUG [11650]: Connecting to database... -- 21:00:13.757 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:13.757 SQL [11650]: pgsql_db_connect() -- 21:00:13.761 DEBUG [11650]: Database connection successful -- 21:00:13.761 INFO [11650]: _SERVER found -- 21:00:13.761 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 21:00:13.761 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 21:00:13.761 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=phh7aa97rhspq2utdfrm0ms62nces27n -- 21:00:13.761 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:00:13.761 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:00:13.773 INFO [11650]: COREGRADE is stopping... -- 21:00:13.773 DEBUG [11650]: Closing database connection -- 21:00:13.773 SQL [11650]: pgsql_close() -- 21:00:13.796 INFO [11650]: COREGRADE is starting... -- 21:00:13.797 INFO [11650]: Version from config: 1.0 -- 21:00:13.797 DEBUG [11650]: Connecting to database... -- 21:00:13.797 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:13.797 SQL [11650]: pgsql_db_connect() -- 21:00:13.801 DEBUG [11650]: Database connection successful -- 21:00:13.801 INFO [11650]: _SERVER found -- 21:00:13.801 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 21:00:13.801 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 21:00:13.801 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=phh7aa97rhspq2utdfrm0ms62nces27n -- 21:00:13.801 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:00:13.801 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:00:13.812 INFO [11650]: COREGRADE is stopping... -- 21:00:13.812 DEBUG [11650]: Closing database connection -- 21:00:13.812 SQL [11650]: pgsql_close() -- 21:00:15.844 INFO [11650]: COREGRADE is starting... -- 21:00:15.845 INFO [11650]: Version from config: 1.0 -- 21:00:15.845 DEBUG [11650]: Connecting to database... -- 21:00:15.845 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:15.845 SQL [11650]: pgsql_db_connect() -- 21:00:15.849 DEBUG [11650]: Database connection successful -- 21:00:15.849 INFO [11650]: _SERVER found -- 21:00:15.849 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 21:00:15.849 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 21:00:15.849 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=phh7aa97rhspq2utdfrm0ms62nces27n -- 21:00:15.849 INFO [11650]: QUERY_STRING = /member/page -- 21:00:15.849 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:00:15.890 INFO [11650]: COREGRADE is stopping... -- 21:00:15.890 DEBUG [11650]: Closing database connection -- 21:00:15.890 SQL [11650]: pgsql_close() -- 21:00:16.322 INFO [11650]: COREGRADE is starting... -- 21:00:16.323 INFO [11650]: Version from config: 1.0 -- 21:00:16.323 DEBUG [11650]: Connecting to database... -- 21:00:16.323 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:16.323 SQL [11650]: pgsql_db_connect() -- 21:00:16.327 DEBUG [11650]: Database connection successful -- 21:00:16.327 INFO [11650]: _SERVER found -- 21:00:16.327 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 21:00:16.327 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 21:00:16.327 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=rlkrp4rt4pegmt1u703at8btaqbqtmqu -- 21:00:16.327 INFO [11650]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:00:16.327 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:00:16.338 INFO [11650]: COREGRADE is stopping... -- 21:00:16.338 DEBUG [11650]: Closing database connection -- 21:00:16.338 SQL [11650]: pgsql_close() -- 21:00:16.465 INFO [11650]: COREGRADE is starting... -- 21:00:16.465 INFO [11650]: Version from config: 1.0 -- 21:00:16.465 DEBUG [11650]: Connecting to database... -- 21:00:16.465 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:16.465 SQL [11650]: pgsql_db_connect() -- 21:00:16.469 DEBUG [11650]: Database connection successful -- 21:00:16.469 INFO [11650]: _SERVER found -- 21:00:16.469 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 21:00:16.469 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 21:00:16.469 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=rlkrp4rt4pegmt1u703at8btaqbqtmqu -- 21:00:16.469 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:00:16.469 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:00:16.480 INFO [11650]: COREGRADE is stopping... -- 21:00:16.480 DEBUG [11650]: Closing database connection -- 21:00:16.480 SQL [11650]: pgsql_close() -- 21:00:16.488 INFO [11650]: COREGRADE is starting... -- 21:00:16.488 INFO [11650]: Version from config: 1.0 -- 21:00:16.488 DEBUG [11650]: Connecting to database... -- 21:00:16.488 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:16.488 SQL [11650]: pgsql_db_connect() -- 21:00:16.492 DEBUG [11650]: Database connection successful -- 21:00:16.492 INFO [11650]: _SERVER found -- 21:00:16.492 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 21:00:16.492 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 21:00:16.492 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=rlkrp4rt4pegmt1u703at8btaqbqtmqu -- 21:00:16.492 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:00:16.492 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:00:16.503 INFO [11650]: COREGRADE is stopping... -- 21:00:16.503 DEBUG [11650]: Closing database connection -- 21:00:16.503 SQL [11650]: pgsql_close() -- 21:00:38.108 INFO [11652]: COREGRADE is starting... -- 21:00:38.108 INFO [11652]: Version from config: 1.0 -- 21:00:38.109 DEBUG [11652]: Connecting to database... -- 21:00:38.109 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:38.109 SQL [11652]: pgsql_db_connect() -- 21:00:38.113 DEBUG [11652]: Database connection successful -- 21:00:38.113 INFO [11652]: _SERVER found -- 21:00:38.113 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 21:00:38.113 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 21:00:38.113 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ri7fjk6pud48gnr3avgv52k2afc1b24u -- 21:00:38.113 INFO [11652]: QUERY_STRING = /member/page -- 21:00:38.113 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:00:38.153 INFO [11652]: COREGRADE is stopping... -- 21:00:38.153 DEBUG [11652]: Closing database connection -- 21:00:38.153 SQL [11652]: pgsql_close() -- 21:00:38.461 INFO [11652]: COREGRADE is starting... -- 21:00:38.461 INFO [11652]: Version from config: 1.0 -- 21:00:38.461 DEBUG [11652]: Connecting to database... -- 21:00:38.461 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:38.461 SQL [11652]: pgsql_db_connect() -- 21:00:38.465 DEBUG [11652]: Database connection successful -- 21:00:38.465 INFO [11652]: _SERVER found -- 21:00:38.465 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 21:00:38.465 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 21:00:38.465 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=s1k62aant6j302kon2c9777o99hte1qb -- 21:00:38.465 INFO [11652]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:00:38.465 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:00:38.476 INFO [11652]: COREGRADE is stopping... -- 21:00:38.477 DEBUG [11652]: Closing database connection -- 21:00:38.477 SQL [11652]: pgsql_close() -- 21:00:38.604 INFO [11652]: COREGRADE is starting... -- 21:00:38.604 INFO [11652]: Version from config: 1.0 -- 21:00:38.604 DEBUG [11652]: Connecting to database... -- 21:00:38.604 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:38.604 SQL [11652]: pgsql_db_connect() -- 21:00:38.608 DEBUG [11652]: Database connection successful -- 21:00:38.608 INFO [11652]: _SERVER found -- 21:00:38.608 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 21:00:38.608 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 21:00:38.608 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=s1k62aant6j302kon2c9777o99hte1qb -- 21:00:38.608 INFO [11652]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:00:38.608 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:00:38.619 INFO [11652]: COREGRADE is stopping... -- 21:00:38.619 DEBUG [11652]: Closing database connection -- 21:00:38.619 SQL [11652]: pgsql_close() -- 21:00:38.701 INFO [11652]: COREGRADE is starting... -- 21:00:38.701 INFO [11652]: Version from config: 1.0 -- 21:00:38.701 DEBUG [11652]: Connecting to database... -- 21:00:38.701 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:38.701 SQL [11652]: pgsql_db_connect() -- 21:00:38.706 DEBUG [11652]: Database connection successful -- 21:00:38.706 INFO [11652]: _SERVER found -- 21:00:38.706 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 21:00:38.706 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 21:00:38.706 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=s1k62aant6j302kon2c9777o99hte1qb -- 21:00:38.706 INFO [11652]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:00:38.706 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:00:38.717 INFO [11652]: COREGRADE is stopping... -- 21:00:38.717 DEBUG [11652]: Closing database connection -- 21:00:38.717 SQL [11652]: pgsql_close() -- 21:00:40.408 INFO [11652]: COREGRADE is starting... -- 21:00:40.408 INFO [11652]: Version from config: 1.0 -- 21:00:40.408 DEBUG [11652]: Connecting to database... -- 21:00:40.408 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:40.408 SQL [11652]: pgsql_db_connect() -- 21:00:40.413 DEBUG [11652]: Database connection successful -- 21:00:40.413 INFO [11652]: _SERVER found -- 21:00:40.413 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 21:00:40.413 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 21:00:40.413 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=s1k62aant6j302kon2c9777o99hte1qb -- 21:00:40.413 INFO [11652]: QUERY_STRING = /member/page -- 21:00:40.413 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:00:40.451 INFO [11652]: COREGRADE is stopping... -- 21:00:40.451 DEBUG [11652]: Closing database connection -- 21:00:40.451 SQL [11652]: pgsql_close() -- 21:00:40.650 INFO [11652]: COREGRADE is starting... -- 21:00:40.651 INFO [11652]: Version from config: 1.0 -- 21:00:40.651 DEBUG [11652]: Connecting to database... -- 21:00:40.651 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:40.651 SQL [11652]: pgsql_db_connect() -- 21:00:40.655 DEBUG [11652]: Database connection successful -- 21:00:40.655 INFO [11652]: _SERVER found -- 21:00:40.655 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 21:00:40.655 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 21:00:40.655 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=s1k62aant6j302kon2c9777o99hte1qb -- 21:00:40.655 INFO [11652]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:00:40.655 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:00:40.666 INFO [11652]: COREGRADE is stopping... -- 21:00:40.666 DEBUG [11652]: Closing database connection -- 21:00:40.666 SQL [11652]: pgsql_close() -- 21:00:40.735 INFO [11652]: COREGRADE is starting... -- 21:00:40.735 INFO [11652]: Version from config: 1.0 -- 21:00:40.735 DEBUG [11652]: Connecting to database... -- 21:00:40.735 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:40.735 SQL [11652]: pgsql_db_connect() -- 21:00:40.739 DEBUG [11652]: Database connection successful -- 21:00:40.739 INFO [11652]: _SERVER found -- 21:00:40.739 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 21:00:40.739 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 21:00:40.739 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=s1k62aant6j302kon2c9777o99hte1qb -- 21:00:40.739 INFO [11652]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:00:40.739 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:00:40.750 INFO [11652]: COREGRADE is stopping... -- 21:00:40.750 DEBUG [11652]: Closing database connection -- 21:00:40.750 SQL [11652]: pgsql_close() -- 21:00:40.770 INFO [11652]: COREGRADE is starting... -- 21:00:40.770 INFO [11652]: Version from config: 1.0 -- 21:00:40.770 DEBUG [11652]: Connecting to database... -- 21:00:40.770 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:40.770 SQL [11652]: pgsql_db_connect() -- 21:00:40.774 DEBUG [11652]: Database connection successful -- 21:00:40.774 INFO [11652]: _SERVER found -- 21:00:40.774 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 21:00:40.774 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 21:00:40.774 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=s1k62aant6j302kon2c9777o99hte1qb -- 21:00:40.774 INFO [11652]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:00:40.774 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:00:40.785 INFO [11652]: COREGRADE is stopping... -- 21:00:40.785 DEBUG [11652]: Closing database connection -- 21:00:40.785 SQL [11652]: pgsql_close() -- 21:04:27.721 INFO [12761]: COREGRADE is starting... -- 21:04:27.721 INFO [12761]: Version from config: 1.0 -- 21:04:27.721 DEBUG [12761]: Connecting to database... -- 21:04:27.721 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:04:27.721 SQL [12761]: pgsql_db_connect() -- 21:04:27.726 DEBUG [12761]: Database connection successful -- 21:04:27.726 INFO [12761]: _SERVER found -- 21:04:27.726 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 21:04:27.726 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 21:04:27.726 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=s1k62aant6j302kon2c9777o99hte1qb -- 21:04:27.726 INFO [12761]: QUERY_STRING = /member -- 21:04:27.726 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:04:27.764 INFO [12761]: COREGRADE is stopping... -- 21:04:27.764 DEBUG [12761]: Closing database connection -- 21:04:27.764 SQL [12761]: pgsql_close() -- 21:04:27.959 INFO [12761]: COREGRADE is starting... -- 21:04:27.959 INFO [12761]: Version from config: 1.0 -- 21:04:27.959 DEBUG [12761]: Connecting to database... -- 21:04:27.959 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:04:27.959 SQL [12761]: pgsql_db_connect() -- 21:04:27.963 DEBUG [12761]: Database connection successful -- 21:04:27.963 INFO [12761]: _SERVER found -- 21:04:27.963 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 21:04:27.963 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 21:04:27.963 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=s1k62aant6j302kon2c9777o99hte1qb -- 21:04:27.963 INFO [12761]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:04:27.963 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:04:27.975 INFO [12761]: COREGRADE is stopping... -- 21:04:27.975 DEBUG [12761]: Closing database connection -- 21:04:27.975 SQL [12761]: pgsql_close() -- 21:04:27.995 INFO [12761]: COREGRADE is starting... -- 21:04:27.995 INFO [12761]: Version from config: 1.0 -- 21:04:27.995 DEBUG [12761]: Connecting to database... -- 21:04:27.995 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:04:27.995 SQL [12761]: pgsql_db_connect() -- 21:04:27.999 DEBUG [12761]: Database connection successful -- 21:04:27.999 INFO [12761]: _SERVER found -- 21:04:27.999 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 21:04:27.999 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 21:04:27.999 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=s1k62aant6j302kon2c9777o99hte1qb -- 21:04:27.999 INFO [12761]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:04:27.999 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:04:28.010 INFO [12761]: COREGRADE is stopping... -- 21:04:28.010 DEBUG [12761]: Closing database connection -- 21:04:28.010 SQL [12761]: pgsql_close() -- 21:04:29.346 INFO [12761]: COREGRADE is starting... -- 21:04:29.346 INFO [12761]: Version from config: 1.0 -- 21:04:29.346 DEBUG [12761]: Connecting to database... -- 21:04:29.346 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:04:29.346 SQL [12761]: pgsql_db_connect() -- 21:04:29.350 DEBUG [12761]: Database connection successful -- 21:04:29.350 INFO [12761]: _SERVER found -- 21:04:29.350 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 21:04:29.350 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 21:04:29.350 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=s1k62aant6j302kon2c9777o99hte1qb -- 21:04:29.350 INFO [12761]: QUERY_STRING = /member/page -- 21:04:29.350 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:04:29.385 INFO [12761]: COREGRADE is stopping... -- 21:04:29.385 DEBUG [12761]: Closing database connection -- 21:04:29.385 SQL [12761]: pgsql_close() -- 21:05:53.067 INFO [11637]: COREGRADE is starting... -- 21:05:53.068 INFO [11637]: Version from config: 1.0 -- 21:05:53.068 DEBUG [11637]: Connecting to database... -- 21:05:53.068 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:05:53.068 SQL [11637]: pgsql_db_connect() -- 21:05:53.072 DEBUG [11637]: Database connection successful -- 21:05:53.072 INFO [11637]: _SERVER found -- 21:05:53.072 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 21:05:53.072 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 21:05:53.072 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=s1k62aant6j302kon2c9777o99hte1qb -- 21:05:53.072 INFO [11637]: QUERY_STRING = /member/page -- 21:05:53.072 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:05:53.109 INFO [11637]: COREGRADE is stopping... -- 21:05:53.109 DEBUG [11637]: Closing database connection -- 21:05:53.109 SQL [11637]: pgsql_close() -- 21:05:53.373 INFO [11637]: COREGRADE is starting... -- 21:05:53.373 INFO [11637]: Version from config: 1.0 -- 21:05:53.373 DEBUG [11637]: Connecting to database... -- 21:05:53.373 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:05:53.373 SQL [11637]: pgsql_db_connect() -- 21:05:53.377 DEBUG [11637]: Database connection successful -- 21:05:53.377 INFO [11637]: _SERVER found -- 21:05:53.377 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 21:05:53.377 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 21:05:53.377 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=j9hrd9uqlb4oaos8cism282h8me2mgl0 -- 21:05:53.377 INFO [11637]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:05:53.377 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:05:53.388 INFO [11637]: COREGRADE is stopping... -- 21:05:53.388 DEBUG [11637]: Closing database connection -- 21:05:53.388 SQL [11637]: pgsql_close() -- 21:05:53.579 INFO [11637]: COREGRADE is starting... -- 21:05:53.579 INFO [11637]: Version from config: 1.0 -- 21:05:53.579 DEBUG [11637]: Connecting to database... -- 21:05:53.579 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:05:53.579 SQL [11637]: pgsql_db_connect() -- 21:05:53.583 DEBUG [11637]: Database connection successful -- 21:05:53.583 INFO [11637]: _SERVER found -- 21:05:53.583 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 21:05:53.583 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 21:05:53.583 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=j9hrd9uqlb4oaos8cism282h8me2mgl0 -- 21:05:53.583 INFO [11637]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:05:53.583 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:05:53.595 INFO [11637]: COREGRADE is stopping... -- 21:05:53.595 DEBUG [11637]: Closing database connection -- 21:05:53.595 SQL [11637]: pgsql_close() -- 21:08:44.598 INFO [12763]: COREGRADE is starting... -- 21:08:44.599 INFO [12763]: Version from config: 1.0 -- 21:08:44.599 DEBUG [12763]: Connecting to database... -- 21:08:44.599 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:08:44.599 SQL [12763]: pgsql_db_connect() -- 21:08:44.603 DEBUG [12763]: Database connection successful -- 21:08:44.603 INFO [12763]: _SERVER found -- 21:08:44.603 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 21:08:44.603 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 21:08:44.603 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=j9hrd9uqlb4oaos8cism282h8me2mgl0 -- 21:08:44.603 INFO [12763]: QUERY_STRING = /member/page -- 21:08:44.603 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:08:44.641 INFO [12763]: COREGRADE is stopping... -- 21:08:44.641 DEBUG [12763]: Closing database connection -- 21:08:44.641 SQL [12763]: pgsql_close() -- 21:08:44.894 INFO [12763]: COREGRADE is starting... -- 21:08:44.894 INFO [12763]: Version from config: 1.0 -- 21:08:44.894 DEBUG [12763]: Connecting to database... -- 21:08:44.894 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:08:44.894 SQL [12763]: pgsql_db_connect() -- 21:08:44.898 DEBUG [12763]: Database connection successful -- 21:08:44.898 INFO [12763]: _SERVER found -- 21:08:44.898 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 21:08:44.898 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 21:08:44.898 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=j9hrd9uqlb4oaos8cism282h8me2mgl0 -- 21:08:44.898 INFO [12763]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:08:44.898 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:08:44.909 INFO [12763]: COREGRADE is stopping... -- 21:08:44.909 DEBUG [12763]: Closing database connection -- 21:08:44.909 SQL [12763]: pgsql_close() -- 21:08:45.058 INFO [12763]: COREGRADE is starting... -- 21:08:45.059 INFO [12763]: Version from config: 1.0 -- 21:08:45.059 DEBUG [12763]: Connecting to database... -- 21:08:45.059 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:08:45.059 SQL [12763]: pgsql_db_connect() -- 21:08:45.063 DEBUG [12763]: Database connection successful -- 21:08:45.063 INFO [12763]: _SERVER found -- 21:08:45.063 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 21:08:45.063 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 21:08:45.063 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=j9hrd9uqlb4oaos8cism282h8me2mgl0 -- 21:08:45.063 INFO [12763]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:08:45.063 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:08:45.074 INFO [12763]: COREGRADE is stopping... -- 21:08:45.074 DEBUG [12763]: Closing database connection -- 21:08:45.074 SQL [12763]: pgsql_close() -- 21:10:06.889 INFO [12764]: COREGRADE is starting... -- 21:10:06.890 INFO [12764]: Version from config: 1.0 -- 21:10:06.890 DEBUG [12764]: Connecting to database... -- 21:10:06.890 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:10:06.890 SQL [12764]: pgsql_db_connect() -- 21:10:06.894 DEBUG [12764]: Database connection successful -- 21:10:06.894 INFO [12764]: _SERVER found -- 21:10:06.894 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 21:10:06.894 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 21:10:06.894 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=j9hrd9uqlb4oaos8cism282h8me2mgl0 -- 21:10:06.894 INFO [12764]: QUERY_STRING = /member/page -- 21:10:06.894 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:10:06.931 INFO [12764]: COREGRADE is stopping... -- 21:10:06.931 DEBUG [12764]: Closing database connection -- 21:10:06.931 SQL [12764]: pgsql_close() -- 21:10:07.177 INFO [12764]: COREGRADE is starting... -- 21:10:07.177 INFO [12764]: Version from config: 1.0 -- 21:10:07.177 DEBUG [12764]: Connecting to database... -- 21:10:07.177 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:10:07.177 SQL [12764]: pgsql_db_connect() -- 21:10:07.181 DEBUG [12764]: Database connection successful -- 21:10:07.181 INFO [12764]: _SERVER found -- 21:10:07.181 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 21:10:07.181 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 21:10:07.181 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=j9hrd9uqlb4oaos8cism282h8me2mgl0 -- 21:10:07.181 INFO [12764]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:10:07.181 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:10:07.192 INFO [12764]: COREGRADE is stopping... -- 21:10:07.192 DEBUG [12764]: Closing database connection -- 21:10:07.192 SQL [12764]: pgsql_close() -- 21:10:07.410 INFO [12764]: COREGRADE is starting... -- 21:10:07.410 INFO [12764]: Version from config: 1.0 -- 21:10:07.410 DEBUG [12764]: Connecting to database... -- 21:10:07.410 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:10:07.410 SQL [12764]: pgsql_db_connect() -- 21:10:07.414 DEBUG [12764]: Database connection successful -- 21:10:07.414 INFO [12764]: _SERVER found -- 21:10:07.414 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 21:10:07.414 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 21:10:07.414 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=j9hrd9uqlb4oaos8cism282h8me2mgl0 -- 21:10:07.414 INFO [12764]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:10:07.414 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:10:07.425 INFO [12764]: COREGRADE is stopping... -- 21:10:07.426 DEBUG [12764]: Closing database connection -- 21:10:07.426 SQL [12764]: pgsql_close() -- 21:10:13.811 INFO [11644]: COREGRADE is starting... -- 21:10:13.812 INFO [11644]: Version from config: 1.0 -- 21:10:13.812 DEBUG [11644]: Connecting to database... -- 21:10:13.812 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:10:13.812 SQL [11644]: pgsql_db_connect() -- 21:10:13.816 DEBUG [11644]: Database connection successful -- 21:10:13.816 INFO [11644]: _SERVER found -- 21:10:13.816 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 21:10:13.816 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 21:10:13.816 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=rlkrp4rt4pegmt1u703at8btaqbqtmqu -- 21:10:13.816 INFO [11644]: QUERY_STRING = /member -- 21:10:13.816 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:10:13.852 INFO [11644]: COREGRADE is stopping... -- 21:10:13.852 DEBUG [11644]: Closing database connection -- 21:10:13.852 SQL [11644]: pgsql_close() -- 21:10:14.437 INFO [11644]: COREGRADE is starting... -- 21:10:14.437 INFO [11644]: Version from config: 1.0 -- 21:10:14.437 DEBUG [11644]: Connecting to database... -- 21:10:14.437 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:10:14.437 SQL [11644]: pgsql_db_connect() -- 21:10:14.441 DEBUG [11644]: Database connection successful -- 21:10:14.441 INFO [11644]: _SERVER found -- 21:10:14.441 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 21:10:14.441 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 21:10:14.441 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=e64m36gis4oqufqmm0lt4uos68lqu38m -- 21:10:14.441 INFO [11644]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:10:14.441 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:10:14.453 INFO [11644]: COREGRADE is stopping... -- 21:10:14.453 DEBUG [11644]: Closing database connection -- 21:10:14.453 SQL [11644]: pgsql_close() -- 21:10:14.462 INFO [11644]: COREGRADE is starting... -- 21:10:14.462 INFO [11644]: Version from config: 1.0 -- 21:10:14.462 DEBUG [11644]: Connecting to database... -- 21:10:14.462 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:10:14.462 SQL [11644]: pgsql_db_connect() -- 21:10:14.466 DEBUG [11644]: Database connection successful -- 21:10:14.466 INFO [11644]: _SERVER found -- 21:10:14.466 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 21:10:14.466 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 21:10:14.466 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=e64m36gis4oqufqmm0lt4uos68lqu38m -- 21:10:14.466 INFO [11644]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:10:14.466 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:10:14.477 INFO [11644]: COREGRADE is stopping... -- 21:10:14.477 DEBUG [11644]: Closing database connection -- 21:10:14.477 SQL [11644]: pgsql_close() -- 21:10:16.093 INFO [11644]: COREGRADE is starting... -- 21:10:16.093 INFO [11644]: Version from config: 1.0 -- 21:10:16.093 DEBUG [11644]: Connecting to database... -- 21:10:16.093 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:10:16.093 SQL [11644]: pgsql_db_connect() -- 21:10:16.097 DEBUG [11644]: Database connection successful -- 21:10:16.097 INFO [11644]: _SERVER found -- 21:10:16.097 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 21:10:16.097 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 21:10:16.097 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=e64m36gis4oqufqmm0lt4uos68lqu38m -- 21:10:16.097 INFO [11644]: QUERY_STRING = /member/page -- 21:10:16.097 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:10:16.133 INFO [11644]: COREGRADE is stopping... -- 21:10:16.133 DEBUG [11644]: Closing database connection -- 21:10:16.133 SQL [11644]: pgsql_close() -- 21:10:16.479 INFO [11644]: COREGRADE is starting... -- 21:10:16.480 INFO [11644]: Version from config: 1.0 -- 21:10:16.480 DEBUG [11644]: Connecting to database... -- 21:10:16.480 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:10:16.480 SQL [11644]: pgsql_db_connect() -- 21:10:16.484 DEBUG [11644]: Database connection successful -- 21:10:16.484 INFO [11644]: _SERVER found -- 21:10:16.484 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 21:10:16.484 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 21:10:16.484 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=e64m36gis4oqufqmm0lt4uos68lqu38m -- 21:10:16.484 INFO [11644]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:10:16.484 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:10:16.495 INFO [11644]: COREGRADE is stopping... -- 21:10:16.495 DEBUG [11644]: Closing database connection -- 21:10:16.495 SQL [11644]: pgsql_close() -- 21:10:16.498 INFO [11644]: COREGRADE is starting... -- 21:10:16.498 INFO [11644]: Version from config: 1.0 -- 21:10:16.498 DEBUG [11644]: Connecting to database... -- 21:10:16.498 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:10:16.498 SQL [11644]: pgsql_db_connect() -- 21:10:16.502 DEBUG [11644]: Database connection successful -- 21:10:16.502 INFO [11644]: _SERVER found -- 21:10:16.502 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 21:10:16.502 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 21:10:16.502 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=e64m36gis4oqufqmm0lt4uos68lqu38m -- 21:10:16.502 INFO [11644]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:10:16.502 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:10:16.513 INFO [11644]: COREGRADE is stopping... -- 21:10:16.513 DEBUG [11644]: Closing database connection -- 21:10:16.513 SQL [11644]: pgsql_close() -- 21:10:24.549 INFO [11639]: COREGRADE is starting... -- 21:10:24.550 INFO [11639]: Version from config: 1.0 -- 21:10:24.550 DEBUG [11639]: Connecting to database... -- 21:10:24.550 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:10:24.550 SQL [11639]: pgsql_db_connect() -- 21:10:24.554 DEBUG [11639]: Database connection successful -- 21:10:24.554 INFO [11639]: _SERVER found -- 21:10:24.554 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 21:10:24.554 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 21:10:24.554 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=e64m36gis4oqufqmm0lt4uos68lqu38m -- 21:10:24.554 INFO [11639]: QUERY_STRING = /member -- 21:10:24.554 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:10:24.593 INFO [11639]: COREGRADE is stopping... -- 21:10:24.593 DEBUG [11639]: Closing database connection -- 21:10:24.593 SQL [11639]: pgsql_close() -- 21:10:24.815 INFO [11639]: COREGRADE is starting... -- 21:10:24.815 INFO [11639]: Version from config: 1.0 -- 21:10:24.815 DEBUG [11639]: Connecting to database... -- 21:10:24.815 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:10:24.815 SQL [11639]: pgsql_db_connect() -- 21:10:24.820 DEBUG [11639]: Database connection successful -- 21:10:24.820 INFO [11639]: _SERVER found -- 21:10:24.820 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 21:10:24.820 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 21:10:24.820 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=e64m36gis4oqufqmm0lt4uos68lqu38m -- 21:10:24.820 INFO [11639]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:10:24.820 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:10:24.831 INFO [11639]: COREGRADE is stopping... -- 21:10:24.831 DEBUG [11639]: Closing database connection -- 21:10:24.831 SQL [11639]: pgsql_close() -- 21:10:24.835 INFO [11638]: COREGRADE is starting... -- 21:10:24.835 INFO [11638]: Version from config: 1.0 -- 21:10:24.835 DEBUG [11638]: Connecting to database... -- 21:10:24.835 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:10:24.835 SQL [11638]: pgsql_db_connect() -- 21:10:24.839 DEBUG [11638]: Database connection successful -- 21:10:24.839 INFO [11638]: _SERVER found -- 21:10:24.839 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 21:10:24.839 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 21:10:24.839 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=e64m36gis4oqufqmm0lt4uos68lqu38m -- 21:10:24.839 INFO [11638]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:10:24.839 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:10:24.850 INFO [11638]: COREGRADE is stopping... -- 21:10:24.850 DEBUG [11638]: Closing database connection -- 21:10:24.850 SQL [11638]: pgsql_close() -- 21:10:26.083 INFO [11638]: COREGRADE is starting... -- 21:10:26.083 INFO [11638]: Version from config: 1.0 -- 21:10:26.083 DEBUG [11638]: Connecting to database... -- 21:10:26.083 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:10:26.083 SQL [11638]: pgsql_db_connect() -- 21:10:26.087 DEBUG [11638]: Database connection successful -- 21:10:26.087 INFO [11638]: _SERVER found -- 21:10:26.087 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 21:10:26.087 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 21:10:26.087 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=e64m36gis4oqufqmm0lt4uos68lqu38m -- 21:10:26.087 INFO [11638]: QUERY_STRING = /member/page -- 21:10:26.087 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:10:26.123 INFO [11638]: COREGRADE is stopping... -- 21:10:26.123 DEBUG [11638]: Closing database connection -- 21:10:26.123 SQL [11638]: pgsql_close() -- 21:10:26.405 INFO [11638]: COREGRADE is starting... -- 21:10:26.406 INFO [11638]: Version from config: 1.0 -- 21:10:26.406 DEBUG [11638]: Connecting to database... -- 21:10:26.406 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:10:26.406 SQL [11638]: pgsql_db_connect() -- 21:10:26.416 INFO [11639]: COREGRADE is starting... -- 21:10:26.416 INFO [11639]: Version from config: 1.0 -- 21:10:26.416 DEBUG [11639]: Connecting to database... -- 21:10:26.417 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:10:26.417 SQL [11639]: pgsql_db_connect() -- 21:10:26.410 DEBUG [11638]: Database connection successful -- 21:10:26.410 INFO [11638]: _SERVER found -- 21:10:26.410 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 21:10:26.410 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 21:10:26.410 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=e64m36gis4oqufqmm0lt4uos68lqu38m -- 21:10:26.410 INFO [11638]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:10:26.410 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:10:26.421 INFO [11638]: COREGRADE is stopping... -- 21:10:26.421 DEBUG [11638]: Closing database connection -- 21:10:26.421 SQL [11638]: pgsql_close() -- 21:10:26.420 DEBUG [11639]: Database connection successful -- 21:10:26.420 INFO [11639]: _SERVER found -- 21:10:26.420 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 21:10:26.420 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 21:10:26.420 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=e64m36gis4oqufqmm0lt4uos68lqu38m -- 21:10:26.420 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:10:26.420 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:10:26.432 INFO [11639]: COREGRADE is stopping... -- 21:10:26.432 DEBUG [11639]: Closing database connection -- 21:10:26.432 SQL [11639]: pgsql_close() -- 21:10:31.254 INFO [11639]: COREGRADE is starting... -- 21:10:31.255 INFO [11639]: Version from config: 1.0 -- 21:10:31.255 DEBUG [11639]: Connecting to database... -- 21:10:31.255 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:10:31.255 SQL [11639]: pgsql_db_connect() -- 21:10:31.259 DEBUG [11639]: Database connection successful -- 21:10:31.259 INFO [11639]: _SERVER found -- 21:10:31.259 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 21:10:31.259 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 21:10:31.259 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=e64m36gis4oqufqmm0lt4uos68lqu38m -- 21:10:31.259 INFO [11639]: QUERY_STRING = /member/page -- 21:10:31.259 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:10:31.295 INFO [11639]: COREGRADE is stopping... -- 21:10:31.295 DEBUG [11639]: Closing database connection -- 21:10:31.295 SQL [11639]: pgsql_close() -- 21:10:31.591 INFO [11639]: COREGRADE is starting... -- 21:10:31.592 INFO [11639]: Version from config: 1.0 -- 21:10:31.592 DEBUG [11639]: Connecting to database... -- 21:10:31.592 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:10:31.592 SQL [11639]: pgsql_db_connect() -- 21:10:31.596 DEBUG [11639]: Database connection successful -- 21:10:31.596 INFO [11639]: _SERVER found -- 21:10:31.596 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 21:10:31.596 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 21:10:31.596 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=e64m36gis4oqufqmm0lt4uos68lqu38m -- 21:10:31.596 INFO [11639]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:10:31.596 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:10:31.607 INFO [11639]: COREGRADE is stopping... -- 21:10:31.607 DEBUG [11639]: Closing database connection -- 21:10:31.607 SQL [11639]: pgsql_close() -- 21:10:31.617 INFO [11639]: COREGRADE is starting... -- 21:10:31.617 INFO [11639]: Version from config: 1.0 -- 21:10:31.617 DEBUG [11639]: Connecting to database... -- 21:10:31.617 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:10:31.617 SQL [11639]: pgsql_db_connect() -- 21:10:31.621 DEBUG [11639]: Database connection successful -- 21:10:31.621 INFO [11639]: _SERVER found -- 21:10:31.621 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 21:10:31.621 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 21:10:31.621 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=e64m36gis4oqufqmm0lt4uos68lqu38m -- 21:10:31.621 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:10:31.621 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:10:31.632 INFO [11639]: COREGRADE is stopping... -- 21:10:31.632 DEBUG [11639]: Closing database connection -- 21:10:31.632 SQL [11639]: pgsql_close() -- 21:10:42.871 INFO [11636]: COREGRADE is starting... -- 21:10:42.871 INFO [11636]: Version from config: 1.0 -- 21:10:42.871 DEBUG [11636]: Connecting to database... -- 21:10:42.871 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:10:42.871 SQL [11636]: pgsql_db_connect() -- 21:10:42.875 DEBUG [11636]: Database connection successful -- 21:10:42.875 INFO [11636]: _SERVER found -- 21:10:42.875 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 21:10:42.875 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 21:10:42.875 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=j9hrd9uqlb4oaos8cism282h8me2mgl0 -- 21:10:42.875 INFO [11636]: QUERY_STRING = /member/page -- 21:10:42.875 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:10:42.913 INFO [11636]: COREGRADE is stopping... -- 21:10:42.913 DEBUG [11636]: Closing database connection -- 21:10:42.913 SQL [11636]: pgsql_close() -- 21:10:43.140 INFO [11636]: COREGRADE is starting... -- 21:10:43.141 INFO [11636]: Version from config: 1.0 -- 21:10:43.141 DEBUG [11636]: Connecting to database... -- 21:10:43.141 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:10:43.141 SQL [11636]: pgsql_db_connect() -- 21:10:43.145 DEBUG [11636]: Database connection successful -- 21:10:43.145 INFO [11636]: _SERVER found -- 21:10:43.145 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 21:10:43.145 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 21:10:43.145 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=j9hrd9uqlb4oaos8cism282h8me2mgl0 -- 21:10:43.145 INFO [11636]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:10:43.145 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:10:43.156 INFO [11636]: COREGRADE is stopping... -- 21:10:43.156 DEBUG [11636]: Closing database connection -- 21:10:43.156 SQL [11636]: pgsql_close() -- 21:10:43.310 INFO [11636]: COREGRADE is starting... -- 21:10:43.310 INFO [11636]: Version from config: 1.0 -- 21:10:43.310 DEBUG [11636]: Connecting to database... -- 21:10:43.310 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:10:43.310 SQL [11636]: pgsql_db_connect() -- 21:10:43.314 DEBUG [11636]: Database connection successful -- 21:10:43.314 INFO [11636]: _SERVER found -- 21:10:43.314 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 21:10:43.314 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 21:10:43.314 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=j9hrd9uqlb4oaos8cism282h8me2mgl0 -- 21:10:43.314 INFO [11636]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:10:43.314 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:10:43.325 INFO [11636]: COREGRADE is stopping... -- 21:10:43.325 DEBUG [11636]: Closing database connection -- 21:10:43.325 SQL [11636]: pgsql_close() -- 21:11:29.777 INFO [11650]: COREGRADE is starting... -- 21:11:29.778 INFO [11650]: Version from config: 1.0 -- 21:11:29.778 DEBUG [11650]: Connecting to database... -- 21:11:29.778 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:11:29.778 SQL [11650]: pgsql_db_connect() -- 21:11:29.782 DEBUG [11650]: Database connection successful -- 21:11:29.782 INFO [11650]: _SERVER found -- 21:11:29.782 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 21:11:29.782 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 21:11:29.782 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=j9hrd9uqlb4oaos8cism282h8me2mgl0 -- 21:11:29.782 INFO [11650]: QUERY_STRING = /member -- 21:11:29.782 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:11:29.820 INFO [11650]: COREGRADE is stopping... -- 21:11:29.820 DEBUG [11650]: Closing database connection -- 21:11:29.820 SQL [11650]: pgsql_close() -- 21:11:30.070 INFO [11650]: COREGRADE is starting... -- 21:11:30.070 INFO [11650]: Version from config: 1.0 -- 21:11:30.070 DEBUG [11650]: Connecting to database... -- 21:11:30.070 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:11:30.070 SQL [11650]: pgsql_db_connect() -- 21:11:30.074 DEBUG [11650]: Database connection successful -- 21:11:30.074 INFO [11650]: _SERVER found -- 21:11:30.074 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 21:11:30.074 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 21:11:30.074 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=4uu5apebfcbi9k2m59umpmnuilviassr -- 21:11:30.074 INFO [11650]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:11:30.074 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:11:30.085 INFO [11650]: COREGRADE is stopping... -- 21:11:30.086 DEBUG [11650]: Closing database connection -- 21:11:30.086 SQL [11650]: pgsql_close() -- 21:11:30.116 INFO [11650]: COREGRADE is starting... -- 21:11:30.117 INFO [11650]: Version from config: 1.0 -- 21:11:30.117 DEBUG [11650]: Connecting to database... -- 21:11:30.117 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:11:30.117 SQL [11650]: pgsql_db_connect() -- 21:11:30.120 DEBUG [11650]: Database connection successful -- 21:11:30.120 INFO [11650]: _SERVER found -- 21:11:30.120 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 21:11:30.120 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 21:11:30.121 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=4uu5apebfcbi9k2m59umpmnuilviassr -- 21:11:30.121 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:11:30.121 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:11:30.131 INFO [11650]: COREGRADE is stopping... -- 21:11:30.131 DEBUG [11650]: Closing database connection -- 21:11:30.131 SQL [11650]: pgsql_close() -- 21:11:34.773 INFO [11650]: COREGRADE is starting... -- 21:11:34.773 INFO [11650]: Version from config: 1.0 -- 21:11:34.773 DEBUG [11650]: Connecting to database... -- 21:11:34.773 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:11:34.773 SQL [11650]: pgsql_db_connect() -- 21:11:34.777 DEBUG [11650]: Database connection successful -- 21:11:34.777 INFO [11650]: _SERVER found -- 21:11:34.777 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 21:11:34.777 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 21:11:34.777 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=4uu5apebfcbi9k2m59umpmnuilviassr -- 21:11:34.777 INFO [11650]: QUERY_STRING = /member/page -- 21:11:34.777 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:11:34.816 INFO [11650]: COREGRADE is stopping... -- 21:11:34.816 DEBUG [11650]: Closing database connection -- 21:11:34.816 SQL [11650]: pgsql_close() -- 21:11:35.039 INFO [11650]: COREGRADE is starting... -- 21:11:35.040 INFO [11650]: Version from config: 1.0 -- 21:11:35.040 DEBUG [11650]: Connecting to database... -- 21:11:35.040 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:11:35.040 SQL [11650]: pgsql_db_connect() -- 21:11:35.044 DEBUG [11650]: Database connection successful -- 21:11:35.044 INFO [11650]: _SERVER found -- 21:11:35.044 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 21:11:35.044 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 21:11:35.044 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=4uu5apebfcbi9k2m59umpmnuilviassr -- 21:11:35.044 INFO [11650]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:11:35.044 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:11:35.055 INFO [11650]: COREGRADE is stopping... -- 21:11:35.055 DEBUG [11650]: Closing database connection -- 21:11:35.055 SQL [11650]: pgsql_close() -- 21:11:35.160 INFO [11650]: COREGRADE is starting... -- 21:11:35.160 INFO [11650]: Version from config: 1.0 -- 21:11:35.160 DEBUG [11650]: Connecting to database... -- 21:11:35.161 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:11:35.161 SQL [11650]: pgsql_db_connect() -- 21:11:35.165 DEBUG [11650]: Database connection successful -- 21:11:35.165 INFO [11650]: _SERVER found -- 21:11:35.165 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 21:11:35.165 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 21:11:35.165 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=4uu5apebfcbi9k2m59umpmnuilviassr -- 21:11:35.165 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:11:35.165 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:11:35.176 INFO [11650]: COREGRADE is stopping... -- 21:11:35.176 DEBUG [11650]: Closing database connection -- 21:11:35.176 SQL [11650]: pgsql_close() -- 21:12:38.469 INFO [11652]: COREGRADE is starting... -- 21:12:38.469 INFO [11652]: Version from config: 1.0 -- 21:12:38.469 DEBUG [11652]: Connecting to database... -- 21:12:38.469 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:12:38.469 SQL [11652]: pgsql_db_connect() -- 21:12:38.473 DEBUG [11652]: Database connection successful -- 21:12:38.473 INFO [11652]: _SERVER found -- 21:12:38.473 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 21:12:38.473 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 21:12:38.473 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=4uu5apebfcbi9k2m59umpmnuilviassr -- 21:12:38.473 INFO [11652]: QUERY_STRING = /member/page -- 21:12:38.473 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:12:38.510 INFO [11652]: COREGRADE is stopping... -- 21:12:38.510 DEBUG [11652]: Closing database connection -- 21:12:38.510 SQL [11652]: pgsql_close() -- 21:12:38.818 INFO [11652]: COREGRADE is starting... -- 21:12:38.818 INFO [11652]: Version from config: 1.0 -- 21:12:38.818 DEBUG [11652]: Connecting to database... -- 21:12:38.818 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:12:38.818 SQL [11652]: pgsql_db_connect() -- 21:12:38.822 DEBUG [11652]: Database connection successful -- 21:12:38.822 INFO [11652]: _SERVER found -- 21:12:38.822 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 21:12:38.822 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 21:12:38.822 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=4uu5apebfcbi9k2m59umpmnuilviassr -- 21:12:38.822 INFO [11652]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:12:38.822 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:12:38.833 INFO [11652]: COREGRADE is stopping... -- 21:12:38.833 DEBUG [11652]: Closing database connection -- 21:12:38.833 SQL [11652]: pgsql_close() -- 21:12:38.854 INFO [11652]: COREGRADE is starting... -- 21:12:38.854 INFO [11652]: Version from config: 1.0 -- 21:12:38.854 DEBUG [11652]: Connecting to database... -- 21:12:38.855 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:12:38.855 SQL [11652]: pgsql_db_connect() -- 21:12:38.858 DEBUG [11652]: Database connection successful -- 21:12:38.858 INFO [11652]: _SERVER found -- 21:12:38.858 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 21:12:38.858 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 21:12:38.858 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=4uu5apebfcbi9k2m59umpmnuilviassr -- 21:12:38.858 INFO [11652]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:12:38.858 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:12:38.869 INFO [11652]: COREGRADE is stopping... -- 21:12:38.869 DEBUG [11652]: Closing database connection -- 21:12:38.869 SQL [11652]: pgsql_close() -- 21:18:55.196 INFO [12761]: COREGRADE is starting... -- 21:18:55.196 INFO [12761]: Version from config: 1.0 -- 21:18:55.196 DEBUG [12761]: Connecting to database... -- 21:18:55.196 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:18:55.196 SQL [12761]: pgsql_db_connect() -- 21:18:55.201 DEBUG [12761]: Database connection successful -- 21:18:55.201 INFO [12761]: _SERVER found -- 21:18:55.201 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 21:18:55.201 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 21:18:55.201 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=4uu5apebfcbi9k2m59umpmnuilviassr -- 21:18:55.201 INFO [12761]: QUERY_STRING = /member/page -- 21:18:55.201 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:18:55.240 INFO [12761]: COREGRADE is stopping... -- 21:18:55.240 DEBUG [12761]: Closing database connection -- 21:18:55.240 SQL [12761]: pgsql_close() -- 21:18:55.408 INFO [12761]: COREGRADE is starting... -- 21:18:55.408 INFO [12761]: Version from config: 1.0 -- 21:18:55.408 DEBUG [12761]: Connecting to database... -- 21:18:55.408 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:18:55.408 SQL [12761]: pgsql_db_connect() -- 21:18:55.412 DEBUG [12761]: Database connection successful -- 21:18:55.412 INFO [12761]: _SERVER found -- 21:18:55.412 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 21:18:55.412 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 21:18:55.412 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:18:55.412 INFO [12761]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:18:55.412 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:18:55.423 INFO [12761]: COREGRADE is stopping... -- 21:18:55.423 DEBUG [12761]: Closing database connection -- 21:18:55.423 SQL [12761]: pgsql_close() -- 21:18:55.695 INFO [12761]: COREGRADE is starting... -- 21:18:55.696 INFO [12761]: Version from config: 1.0 -- 21:18:55.696 DEBUG [12761]: Connecting to database... -- 21:18:55.696 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:18:55.696 SQL [12761]: pgsql_db_connect() -- 21:18:55.700 DEBUG [12761]: Database connection successful -- 21:18:55.700 INFO [12761]: _SERVER found -- 21:18:55.700 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 21:18:55.700 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 21:18:55.700 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:18:55.700 INFO [12761]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:18:55.700 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:18:55.711 INFO [12761]: COREGRADE is stopping... -- 21:18:55.711 DEBUG [12761]: Closing database connection -- 21:18:55.711 SQL [12761]: pgsql_close() -- 21:18:59.469 INFO [11637]: COREGRADE is starting... -- 21:18:59.469 INFO [11637]: Version from config: 1.0 -- 21:18:59.469 DEBUG [11637]: Connecting to database... -- 21:18:59.469 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:18:59.469 SQL [11637]: pgsql_db_connect() -- 21:18:59.473 DEBUG [11637]: Database connection successful -- 21:18:59.473 INFO [11637]: _SERVER found -- 21:18:59.473 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 21:18:59.473 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 21:18:59.473 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=e64m36gis4oqufqmm0lt4uos68lqu38m -- 21:18:59.473 INFO [11637]: QUERY_STRING = /member/page -- 21:18:59.473 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:18:59.510 INFO [11637]: COREGRADE is stopping... -- 21:18:59.510 DEBUG [11637]: Closing database connection -- 21:18:59.510 SQL [11637]: pgsql_close() -- 21:19:00.167 INFO [11637]: COREGRADE is starting... -- 21:19:00.168 INFO [11637]: Version from config: 1.0 -- 21:19:00.168 DEBUG [11637]: Connecting to database... -- 21:19:00.168 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:19:00.168 SQL [11637]: pgsql_db_connect() -- 21:19:00.172 DEBUG [11637]: Database connection successful -- 21:19:00.172 INFO [11637]: _SERVER found -- 21:19:00.172 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 21:19:00.172 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 21:19:00.172 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g4qot617hbemvk3930gd81kj1lrg1jr2 -- 21:19:00.172 INFO [11637]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:19:00.172 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:19:00.183 INFO [11637]: COREGRADE is stopping... -- 21:19:00.183 DEBUG [11637]: Closing database connection -- 21:19:00.183 SQL [11637]: pgsql_close() -- 21:19:00.196 INFO [11637]: COREGRADE is starting... -- 21:19:00.196 INFO [11637]: Version from config: 1.0 -- 21:19:00.196 DEBUG [11637]: Connecting to database... -- 21:19:00.196 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:19:00.196 SQL [11637]: pgsql_db_connect() -- 21:19:00.200 DEBUG [11637]: Database connection successful -- 21:19:00.200 INFO [11637]: _SERVER found -- 21:19:00.200 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 21:19:00.200 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 21:19:00.200 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g4qot617hbemvk3930gd81kj1lrg1jr2 -- 21:19:00.200 INFO [11637]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:19:00.200 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:19:00.211 INFO [11637]: COREGRADE is stopping... -- 21:19:00.211 DEBUG [11637]: Closing database connection -- 21:19:00.211 SQL [11637]: pgsql_close() -- 21:20:28.031 INFO [12763]: COREGRADE is starting... -- 21:20:28.032 INFO [12763]: Version from config: 1.0 -- 21:20:28.032 DEBUG [12763]: Connecting to database... -- 21:20:28.032 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:20:28.032 SQL [12763]: pgsql_db_connect() -- 21:20:28.036 DEBUG [12763]: Database connection successful -- 21:20:28.036 INFO [12763]: _SERVER found -- 21:20:28.036 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 21:20:28.036 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 21:20:28.036 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:20:28.036 INFO [12763]: QUERY_STRING = /member/page -- 21:20:28.036 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:20:28.075 INFO [12763]: COREGRADE is stopping... -- 21:20:28.075 DEBUG [12763]: Closing database connection -- 21:20:28.075 SQL [12763]: pgsql_close() -- 21:20:28.290 INFO [12763]: COREGRADE is starting... -- 21:20:28.290 INFO [12763]: Version from config: 1.0 -- 21:20:28.290 DEBUG [12763]: Connecting to database... -- 21:20:28.290 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:20:28.290 SQL [12763]: pgsql_db_connect() -- 21:20:28.294 DEBUG [12763]: Database connection successful -- 21:20:28.294 INFO [12763]: _SERVER found -- 21:20:28.294 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 21:20:28.294 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 21:20:28.294 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:20:28.294 INFO [12763]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:20:28.294 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:20:28.306 INFO [12763]: COREGRADE is stopping... -- 21:20:28.306 DEBUG [12763]: Closing database connection -- 21:20:28.306 SQL [12763]: pgsql_close() -- 21:20:28.628 INFO [12763]: COREGRADE is starting... -- 21:20:28.629 INFO [12763]: Version from config: 1.0 -- 21:20:28.629 DEBUG [12763]: Connecting to database... -- 21:20:28.629 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:20:28.629 SQL [12763]: pgsql_db_connect() -- 21:20:28.633 DEBUG [12763]: Database connection successful -- 21:20:28.633 INFO [12763]: _SERVER found -- 21:20:28.633 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 21:20:28.633 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 21:20:28.633 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:20:28.633 INFO [12763]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:20:28.633 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:20:28.644 INFO [12763]: COREGRADE is stopping... -- 21:20:28.644 DEBUG [12763]: Closing database connection -- 21:20:28.644 SQL [12763]: pgsql_close() -- 21:20:35.510 INFO [12764]: COREGRADE is starting... -- 21:20:35.511 INFO [12764]: Version from config: 1.0 -- 21:20:35.511 DEBUG [12764]: Connecting to database... -- 21:20:35.511 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:20:35.511 SQL [12764]: pgsql_db_connect() -- 21:20:35.515 DEBUG [12764]: Database connection successful -- 21:20:35.515 INFO [12764]: _SERVER found -- 21:20:35.515 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 21:20:35.515 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 21:20:35.515 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:20:35.515 INFO [12764]: QUERY_STRING = /member/configure -- 21:20:35.515 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:20:35.551 INFO [12764]: COREGRADE is stopping... -- 21:20:35.551 DEBUG [12764]: Closing database connection -- 21:20:35.551 SQL [12764]: pgsql_close() -- 21:20:35.714 INFO [12764]: COREGRADE is starting... -- 21:20:35.714 INFO [12764]: Version from config: 1.0 -- 21:20:35.714 DEBUG [12764]: Connecting to database... -- 21:20:35.714 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:20:35.714 SQL [12764]: pgsql_db_connect() -- 21:20:35.719 DEBUG [12764]: Database connection successful -- 21:20:35.719 INFO [12764]: _SERVER found -- 21:20:35.719 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 21:20:35.719 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 21:20:35.719 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:20:35.719 INFO [12764]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:20:35.719 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:20:35.730 INFO [12764]: COREGRADE is stopping... -- 21:20:35.730 DEBUG [12764]: Closing database connection -- 21:20:35.730 SQL [12764]: pgsql_close() -- 21:20:35.929 INFO [12764]: COREGRADE is starting... -- 21:20:35.929 INFO [12764]: Version from config: 1.0 -- 21:20:35.929 DEBUG [12764]: Connecting to database... -- 21:20:35.929 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:20:35.929 SQL [12764]: pgsql_db_connect() -- 21:20:35.933 DEBUG [12764]: Database connection successful -- 21:20:35.933 INFO [12764]: _SERVER found -- 21:20:35.933 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 21:20:35.933 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 21:20:35.933 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:20:35.933 INFO [12764]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:20:35.933 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:20:35.944 INFO [12764]: COREGRADE is stopping... -- 21:20:35.944 DEBUG [12764]: Closing database connection -- 21:20:35.944 SQL [12764]: pgsql_close() -- 21:20:44.555 INFO [11644]: COREGRADE is starting... -- 21:20:44.555 INFO [11644]: Version from config: 1.0 -- 21:20:44.555 DEBUG [11644]: Connecting to database... -- 21:20:44.555 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:20:44.555 SQL [11644]: pgsql_db_connect() -- 21:20:44.559 DEBUG [11644]: Database connection successful -- 21:20:44.559 INFO [11644]: _SERVER found -- 21:20:44.559 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 21:20:44.559 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 21:20:44.559 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:20:44.559 INFO [11644]: QUERY_STRING = /member -- 21:20:44.559 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:20:44.595 INFO [11644]: COREGRADE is stopping... -- 21:20:44.595 DEBUG [11644]: Closing database connection -- 21:20:44.595 SQL [11644]: pgsql_close() -- 21:20:44.889 INFO [11644]: COREGRADE is starting... -- 21:20:44.890 INFO [11644]: Version from config: 1.0 -- 21:20:44.890 DEBUG [11644]: Connecting to database... -- 21:20:44.890 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:20:44.890 SQL [11644]: pgsql_db_connect() -- 21:20:44.894 DEBUG [11644]: Database connection successful -- 21:20:44.894 INFO [11644]: _SERVER found -- 21:20:44.894 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 21:20:44.894 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 21:20:44.894 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:20:44.894 INFO [11644]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:20:44.894 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:20:44.905 INFO [11644]: COREGRADE is stopping... -- 21:20:44.905 DEBUG [11644]: Closing database connection -- 21:20:44.905 SQL [11644]: pgsql_close() -- 21:20:44.917 INFO [11638]: COREGRADE is starting... -- 21:20:44.918 INFO [11638]: Version from config: 1.0 -- 21:20:44.918 DEBUG [11638]: Connecting to database... -- 21:20:44.918 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:20:44.918 SQL [11638]: pgsql_db_connect() -- 21:20:44.921 DEBUG [11638]: Database connection successful -- 21:20:44.921 INFO [11638]: _SERVER found -- 21:20:44.921 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 21:20:44.921 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 21:20:44.921 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:20:44.922 INFO [11638]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:20:44.922 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:20:44.933 INFO [11638]: COREGRADE is stopping... -- 21:20:44.933 DEBUG [11638]: Closing database connection -- 21:20:44.933 SQL [11638]: pgsql_close() -- 21:20:46.113 INFO [11638]: COREGRADE is starting... -- 21:20:46.113 INFO [11638]: Version from config: 1.0 -- 21:20:46.113 DEBUG [11638]: Connecting to database... -- 21:20:46.113 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:20:46.113 SQL [11638]: pgsql_db_connect() -- 21:20:46.118 DEBUG [11638]: Database connection successful -- 21:20:46.118 INFO [11638]: _SERVER found -- 21:20:46.118 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 21:20:46.118 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 21:20:46.118 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:20:46.118 INFO [11638]: QUERY_STRING = /member/page -- 21:20:46.118 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:20:46.153 INFO [11638]: COREGRADE is stopping... -- 21:20:46.153 DEBUG [11638]: Closing database connection -- 21:20:46.153 SQL [11638]: pgsql_close() -- 21:20:46.419 INFO [11638]: COREGRADE is starting... -- 21:20:46.420 INFO [11638]: Version from config: 1.0 -- 21:20:46.420 DEBUG [11638]: Connecting to database... -- 21:20:46.420 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:20:46.420 SQL [11638]: pgsql_db_connect() -- 21:20:46.424 DEBUG [11638]: Database connection successful -- 21:20:46.424 INFO [11638]: _SERVER found -- 21:20:46.424 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 21:20:46.424 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 21:20:46.424 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:20:46.424 INFO [11638]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:20:46.424 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:20:46.435 INFO [11638]: COREGRADE is stopping... -- 21:20:46.435 DEBUG [11638]: Closing database connection -- 21:20:46.435 SQL [11638]: pgsql_close() -- 21:20:46.490 INFO [11638]: COREGRADE is starting... -- 21:20:46.490 INFO [11638]: Version from config: 1.0 -- 21:20:46.490 DEBUG [11638]: Connecting to database... -- 21:20:46.490 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:20:46.490 SQL [11638]: pgsql_db_connect() -- 21:20:46.494 DEBUG [11638]: Database connection successful -- 21:20:46.494 INFO [11638]: _SERVER found -- 21:20:46.494 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 21:20:46.494 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 21:20:46.494 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:20:46.494 INFO [11638]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:20:46.494 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:20:46.505 INFO [11638]: COREGRADE is stopping... -- 21:20:46.505 DEBUG [11638]: Closing database connection -- 21:20:46.505 SQL [11638]: pgsql_close() -- 21:21:35.854 INFO [11639]: COREGRADE is starting... -- 21:21:35.855 INFO [11639]: Version from config: 1.0 -- 21:21:35.855 DEBUG [11639]: Connecting to database... -- 21:21:35.855 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:21:35.855 SQL [11639]: pgsql_db_connect() -- 21:21:35.859 DEBUG [11639]: Database connection successful -- 21:21:35.859 INFO [11639]: _SERVER found -- 21:21:35.859 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 21:21:35.859 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 21:21:35.859 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:21:35.859 INFO [11639]: QUERY_STRING = /member/page -- 21:21:35.859 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:21:35.900 INFO [11639]: COREGRADE is stopping... -- 21:21:35.900 DEBUG [11639]: Closing database connection -- 21:21:35.900 SQL [11639]: pgsql_close() -- 21:21:36.103 INFO [11639]: COREGRADE is starting... -- 21:21:36.104 INFO [11639]: Version from config: 1.0 -- 21:21:36.104 DEBUG [11639]: Connecting to database... -- 21:21:36.104 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:21:36.104 SQL [11639]: pgsql_db_connect() -- 21:21:36.108 DEBUG [11639]: Database connection successful -- 21:21:36.108 INFO [11639]: _SERVER found -- 21:21:36.108 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 21:21:36.108 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 21:21:36.108 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:21:36.108 INFO [11639]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:21:36.108 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:21:36.120 INFO [11639]: COREGRADE is stopping... -- 21:21:36.120 DEBUG [11639]: Closing database connection -- 21:21:36.120 SQL [11639]: pgsql_close() -- 21:21:36.291 INFO [11639]: COREGRADE is starting... -- 21:21:36.291 INFO [11639]: Version from config: 1.0 -- 21:21:36.291 DEBUG [11639]: Connecting to database... -- 21:21:36.291 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:21:36.291 SQL [11639]: pgsql_db_connect() -- 21:21:36.295 DEBUG [11639]: Database connection successful -- 21:21:36.295 INFO [11639]: _SERVER found -- 21:21:36.295 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 21:21:36.295 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 21:21:36.295 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:21:36.295 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:21:36.295 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:21:36.308 INFO [11639]: COREGRADE is stopping... -- 21:21:36.308 DEBUG [11639]: Closing database connection -- 21:21:36.308 SQL [11639]: pgsql_close() -- 21:22:00.239 INFO [11636]: COREGRADE is starting... -- 21:22:00.239 INFO [11636]: Version from config: 1.0 -- 21:22:00.239 DEBUG [11636]: Connecting to database... -- 21:22:00.239 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:22:00.239 SQL [11636]: pgsql_db_connect() -- 21:22:00.243 DEBUG [11636]: Database connection successful -- 21:22:00.243 INFO [11636]: _SERVER found -- 21:22:00.243 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 21:22:00.243 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 21:22:00.243 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:22:00.243 INFO [11636]: QUERY_STRING = /member/page -- 21:22:00.243 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:22:00.280 INFO [11636]: COREGRADE is stopping... -- 21:22:00.280 DEBUG [11636]: Closing database connection -- 21:22:00.280 SQL [11636]: pgsql_close() -- 21:22:00.504 INFO [11636]: COREGRADE is starting... -- 21:22:00.505 INFO [11636]: Version from config: 1.0 -- 21:22:00.505 DEBUG [11636]: Connecting to database... -- 21:22:00.505 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:22:00.505 SQL [11636]: pgsql_db_connect() -- 21:22:00.509 DEBUG [11636]: Database connection successful -- 21:22:00.509 INFO [11636]: _SERVER found -- 21:22:00.509 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 21:22:00.509 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 21:22:00.509 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:22:00.509 INFO [11636]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:22:00.509 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:22:00.520 INFO [11636]: COREGRADE is stopping... -- 21:22:00.520 DEBUG [11636]: Closing database connection -- 21:22:00.520 SQL [11636]: pgsql_close() -- 21:22:00.674 INFO [11636]: COREGRADE is starting... -- 21:22:00.674 INFO [11636]: Version from config: 1.0 -- 21:22:00.674 DEBUG [11636]: Connecting to database... -- 21:22:00.674 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:22:00.674 SQL [11636]: pgsql_db_connect() -- 21:22:00.678 DEBUG [11636]: Database connection successful -- 21:22:00.678 INFO [11636]: _SERVER found -- 21:22:00.678 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 21:22:00.678 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 21:22:00.678 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:22:00.678 INFO [11636]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:22:00.678 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:22:00.689 INFO [11636]: COREGRADE is stopping... -- 21:22:00.689 DEBUG [11636]: Closing database connection -- 21:22:00.689 SQL [11636]: pgsql_close() -- 21:23:03.021 INFO [11650]: COREGRADE is starting... -- 21:23:03.021 INFO [11650]: Version from config: 1.0 -- 21:23:03.021 DEBUG [11650]: Connecting to database... -- 21:23:03.021 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:03.021 SQL [11650]: pgsql_db_connect() -- 21:23:03.025 DEBUG [11650]: Database connection successful -- 21:23:03.025 INFO [11650]: _SERVER found -- 21:23:03.025 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 21:23:03.025 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:03.025 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:23:03.025 INFO [11650]: QUERY_STRING = /member/mycalendar -- 21:23:03.025 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:03.062 INFO [11650]: COREGRADE is stopping... -- 21:23:03.062 DEBUG [11650]: Closing database connection -- 21:23:03.062 SQL [11650]: pgsql_close() -- 21:23:03.329 INFO [11650]: COREGRADE is starting... -- 21:23:03.329 INFO [11650]: Version from config: 1.0 -- 21:23:03.329 DEBUG [11650]: Connecting to database... -- 21:23:03.329 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:03.329 SQL [11650]: pgsql_db_connect() -- 21:23:03.334 DEBUG [11650]: Database connection successful -- 21:23:03.334 INFO [11650]: _SERVER found -- 21:23:03.334 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 21:23:03.334 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:03.334 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:23:03.334 INFO [11650]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:23:03.334 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:03.345 INFO [11650]: COREGRADE is stopping... -- 21:23:03.345 DEBUG [11650]: Closing database connection -- 21:23:03.345 SQL [11650]: pgsql_close() -- 21:23:03.395 INFO [11650]: COREGRADE is starting... -- 21:23:03.395 INFO [11650]: Version from config: 1.0 -- 21:23:03.395 DEBUG [11650]: Connecting to database... -- 21:23:03.395 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:03.395 SQL [11650]: pgsql_db_connect() -- 21:23:03.399 DEBUG [11650]: Database connection successful -- 21:23:03.399 INFO [11650]: _SERVER found -- 21:23:03.399 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 21:23:03.399 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:03.399 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:23:03.399 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:23:03.399 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:03.410 INFO [11650]: COREGRADE is stopping... -- 21:23:03.410 DEBUG [11650]: Closing database connection -- 21:23:03.410 SQL [11650]: pgsql_close() -- 21:23:08.028 INFO [11650]: COREGRADE is starting... -- 21:23:08.028 INFO [11650]: Version from config: 1.0 -- 21:23:08.028 DEBUG [11650]: Connecting to database... -- 21:23:08.028 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:08.028 SQL [11650]: pgsql_db_connect() -- 21:23:08.032 DEBUG [11650]: Database connection successful -- 21:23:08.032 INFO [11650]: _SERVER found -- 21:23:08.032 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 21:23:08.032 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:08.032 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:23:08.032 INFO [11650]: QUERY_STRING = /member -- 21:23:08.032 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:08.070 INFO [11650]: COREGRADE is stopping... -- 21:23:08.070 DEBUG [11650]: Closing database connection -- 21:23:08.070 SQL [11650]: pgsql_close() -- 21:23:08.233 INFO [11650]: COREGRADE is starting... -- 21:23:08.233 INFO [11650]: Version from config: 1.0 -- 21:23:08.233 DEBUG [11650]: Connecting to database... -- 21:23:08.233 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:08.233 SQL [11650]: pgsql_db_connect() -- 21:23:08.238 DEBUG [11650]: Database connection successful -- 21:23:08.238 INFO [11650]: _SERVER found -- 21:23:08.238 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 21:23:08.238 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:08.238 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:23:08.238 INFO [11650]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:23:08.238 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:08.249 INFO [11650]: COREGRADE is stopping... -- 21:23:08.249 DEBUG [11650]: Closing database connection -- 21:23:08.249 SQL [11650]: pgsql_close() -- 21:23:08.255 INFO [11652]: COREGRADE is starting... -- 21:23:08.255 INFO [11652]: Version from config: 1.0 -- 21:23:08.255 DEBUG [11652]: Connecting to database... -- 21:23:08.255 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:08.255 SQL [11652]: pgsql_db_connect() -- 21:23:08.259 DEBUG [11652]: Database connection successful -- 21:23:08.259 INFO [11652]: _SERVER found -- 21:23:08.259 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 21:23:08.259 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:08.259 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:23:08.259 INFO [11652]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:23:08.259 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:08.270 INFO [11652]: COREGRADE is stopping... -- 21:23:08.270 DEBUG [11652]: Closing database connection -- 21:23:08.270 SQL [11652]: pgsql_close() -- 21:23:10.055 INFO [11652]: COREGRADE is starting... -- 21:23:10.055 INFO [11652]: Version from config: 1.0 -- 21:23:10.055 DEBUG [11652]: Connecting to database... -- 21:23:10.055 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:10.055 SQL [11652]: pgsql_db_connect() -- 21:23:10.059 DEBUG [11652]: Database connection successful -- 21:23:10.059 INFO [11652]: _SERVER found -- 21:23:10.059 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 21:23:10.059 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:10.059 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:23:10.059 INFO [11652]: QUERY_STRING = /member/page -- 21:23:10.059 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:10.095 INFO [11652]: COREGRADE is stopping... -- 21:23:10.095 DEBUG [11652]: Closing database connection -- 21:23:10.095 SQL [11652]: pgsql_close() -- 21:23:10.350 INFO [11652]: COREGRADE is starting... -- 21:23:10.351 INFO [11652]: Version from config: 1.0 -- 21:23:10.351 DEBUG [11652]: Connecting to database... -- 21:23:10.351 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:10.351 SQL [11652]: pgsql_db_connect() -- 21:23:10.355 DEBUG [11652]: Database connection successful -- 21:23:10.355 INFO [11652]: _SERVER found -- 21:23:10.355 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 21:23:10.355 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:10.355 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:23:10.355 INFO [11652]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:23:10.355 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:10.366 INFO [11652]: COREGRADE is stopping... -- 21:23:10.366 DEBUG [11652]: Closing database connection -- 21:23:10.366 SQL [11652]: pgsql_close() -- 21:23:10.476 INFO [11652]: COREGRADE is starting... -- 21:23:10.476 INFO [11652]: Version from config: 1.0 -- 21:23:10.476 DEBUG [11652]: Connecting to database... -- 21:23:10.476 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:10.476 SQL [11652]: pgsql_db_connect() -- 21:23:10.480 DEBUG [11652]: Database connection successful -- 21:23:10.480 INFO [11652]: _SERVER found -- 21:23:10.480 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 21:23:10.480 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:10.480 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:23:10.480 INFO [11652]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:23:10.480 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:10.491 INFO [11652]: COREGRADE is stopping... -- 21:23:10.491 DEBUG [11652]: Closing database connection -- 21:23:10.491 SQL [11652]: pgsql_close() -- 21:23:29.221 INFO [12761]: COREGRADE is starting... -- 21:23:29.221 INFO [12761]: Version from config: 1.0 -- 21:23:29.221 DEBUG [12761]: Connecting to database... -- 21:23:29.221 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:29.221 SQL [12761]: pgsql_db_connect() -- 21:23:29.226 DEBUG [12761]: Database connection successful -- 21:23:29.226 INFO [12761]: _SERVER found -- 21:23:29.226 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 21:23:29.226 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:29.226 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g4qot617hbemvk3930gd81kj1lrg1jr2 -- 21:23:29.226 INFO [12761]: QUERY_STRING = /member -- 21:23:29.226 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:29.262 INFO [12761]: COREGRADE is stopping... -- 21:23:29.262 DEBUG [12761]: Closing database connection -- 21:23:29.262 SQL [12761]: pgsql_close() -- 21:23:29.733 INFO [12761]: COREGRADE is starting... -- 21:23:29.733 INFO [12761]: Version from config: 1.0 -- 21:23:29.733 DEBUG [12761]: Connecting to database... -- 21:23:29.733 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:29.733 SQL [12761]: pgsql_db_connect() -- 21:23:29.737 DEBUG [12761]: Database connection successful -- 21:23:29.737 INFO [12761]: _SERVER found -- 21:23:29.737 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 21:23:29.737 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:29.737 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g4qot617hbemvk3930gd81kj1lrg1jr2 -- 21:23:29.737 INFO [12761]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:23:29.737 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:29.749 INFO [12761]: COREGRADE is stopping... -- 21:23:29.749 DEBUG [12761]: Closing database connection -- 21:23:29.749 SQL [12761]: pgsql_close() -- 21:23:29.760 INFO [12761]: COREGRADE is starting... -- 21:23:29.760 INFO [12761]: Version from config: 1.0 -- 21:23:29.760 DEBUG [12761]: Connecting to database... -- 21:23:29.760 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:29.760 SQL [12761]: pgsql_db_connect() -- 21:23:29.764 DEBUG [12761]: Database connection successful -- 21:23:29.764 INFO [12761]: _SERVER found -- 21:23:29.764 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 21:23:29.764 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:29.764 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g4qot617hbemvk3930gd81kj1lrg1jr2 -- 21:23:29.764 INFO [12761]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:23:29.764 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:29.775 INFO [12761]: COREGRADE is stopping... -- 21:23:29.775 DEBUG [12761]: Closing database connection -- 21:23:29.775 SQL [12761]: pgsql_close() -- 21:23:31.185 INFO [12761]: COREGRADE is starting... -- 21:23:31.185 INFO [12761]: Version from config: 1.0 -- 21:23:31.185 DEBUG [12761]: Connecting to database... -- 21:23:31.185 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:31.185 SQL [12761]: pgsql_db_connect() -- 21:23:31.189 DEBUG [12761]: Database connection successful -- 21:23:31.189 INFO [12761]: _SERVER found -- 21:23:31.189 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 21:23:31.189 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:31.189 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g4qot617hbemvk3930gd81kj1lrg1jr2 -- 21:23:31.189 INFO [12761]: QUERY_STRING = /member/page -- 21:23:31.189 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:31.226 INFO [12761]: COREGRADE is stopping... -- 21:23:31.226 DEBUG [12761]: Closing database connection -- 21:23:31.226 SQL [12761]: pgsql_close() -- 21:23:31.670 INFO [12761]: COREGRADE is starting... -- 21:23:31.670 INFO [12761]: Version from config: 1.0 -- 21:23:31.670 DEBUG [12761]: Connecting to database... -- 21:23:31.670 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:31.670 SQL [12761]: pgsql_db_connect() -- 21:23:31.674 DEBUG [12761]: Database connection successful -- 21:23:31.674 INFO [12761]: _SERVER found -- 21:23:31.674 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 21:23:31.674 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:31.674 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g4qot617hbemvk3930gd81kj1lrg1jr2 -- 21:23:31.674 INFO [12761]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:23:31.674 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:31.685 INFO [12761]: COREGRADE is stopping... -- 21:23:31.685 DEBUG [12761]: Closing database connection -- 21:23:31.685 SQL [12761]: pgsql_close() -- 21:23:31.705 INFO [11637]: COREGRADE is starting... -- 21:23:31.705 INFO [11637]: Version from config: 1.0 -- 21:23:31.705 DEBUG [11637]: Connecting to database... -- 21:23:31.705 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:31.705 SQL [11637]: pgsql_db_connect() -- 21:23:31.709 DEBUG [11637]: Database connection successful -- 21:23:31.709 INFO [11637]: _SERVER found -- 21:23:31.709 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 21:23:31.709 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:31.709 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g4qot617hbemvk3930gd81kj1lrg1jr2 -- 21:23:31.709 INFO [11637]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:23:31.709 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:31.720 INFO [11637]: COREGRADE is stopping... -- 21:23:31.720 DEBUG [11637]: Closing database connection -- 21:23:31.720 SQL [11637]: pgsql_close() -- 21:23:33.440 INFO [12761]: COREGRADE is starting... -- 21:23:33.440 INFO [12761]: Version from config: 1.0 -- 21:23:33.440 DEBUG [12761]: Connecting to database... -- 21:23:33.440 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:33.440 SQL [12761]: pgsql_db_connect() -- 21:23:33.445 DEBUG [12761]: Database connection successful -- 21:23:33.445 INFO [12761]: _SERVER found -- 21:23:33.445 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 21:23:33.445 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:33.445 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:23:33.445 INFO [12761]: QUERY_STRING = /member/page -- 21:23:33.445 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:33.482 INFO [12761]: COREGRADE is stopping... -- 21:23:33.482 DEBUG [12761]: Closing database connection -- 21:23:33.482 SQL [12761]: pgsql_close() -- 21:23:33.671 INFO [12761]: COREGRADE is starting... -- 21:23:33.672 INFO [12761]: Version from config: 1.0 -- 21:23:33.672 DEBUG [12761]: Connecting to database... -- 21:23:33.672 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:33.672 SQL [12761]: pgsql_db_connect() -- 21:23:33.676 DEBUG [12761]: Database connection successful -- 21:23:33.676 INFO [12761]: _SERVER found -- 21:23:33.676 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 21:23:33.676 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:33.676 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:23:33.676 INFO [12761]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:23:33.676 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:33.687 INFO [12761]: COREGRADE is stopping... -- 21:23:33.687 DEBUG [12761]: Closing database connection -- 21:23:33.687 SQL [12761]: pgsql_close() -- 21:23:33.949 INFO [12761]: COREGRADE is starting... -- 21:23:33.949 INFO [12761]: Version from config: 1.0 -- 21:23:33.949 DEBUG [12761]: Connecting to database... -- 21:23:33.949 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:33.949 SQL [12761]: pgsql_db_connect() -- 21:23:33.953 DEBUG [12761]: Database connection successful -- 21:23:33.953 INFO [12761]: _SERVER found -- 21:23:33.953 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 21:23:33.953 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:33.953 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:23:33.953 INFO [12761]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:23:33.953 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:33.964 INFO [12761]: COREGRADE is stopping... -- 21:23:33.964 DEBUG [12761]: Closing database connection -- 21:23:33.964 SQL [12761]: pgsql_close() -- 21:23:35.850 INFO [11637]: COREGRADE is starting... -- 21:23:35.850 INFO [11637]: Version from config: 1.0 -- 21:23:35.850 DEBUG [11637]: Connecting to database... -- 21:23:35.850 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:35.850 SQL [11637]: pgsql_db_connect() -- 21:23:35.854 DEBUG [11637]: Database connection successful -- 21:23:35.854 INFO [11637]: _SERVER found -- 21:23:35.854 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 21:23:35.854 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:35.854 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g4qot617hbemvk3930gd81kj1lrg1jr2 -- 21:23:35.854 INFO [11637]: QUERY_STRING = /member -- 21:23:35.854 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:35.890 INFO [11637]: COREGRADE is stopping... -- 21:23:35.890 DEBUG [11637]: Closing database connection -- 21:23:35.890 SQL [11637]: pgsql_close() -- 21:23:36.247 INFO [11637]: COREGRADE is starting... -- 21:23:36.247 INFO [11637]: Version from config: 1.0 -- 21:23:36.247 DEBUG [11637]: Connecting to database... -- 21:23:36.247 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:36.247 SQL [11637]: pgsql_db_connect() -- 21:23:36.251 DEBUG [11637]: Database connection successful -- 21:23:36.251 INFO [11637]: _SERVER found -- 21:23:36.251 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 21:23:36.251 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:36.251 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g4qot617hbemvk3930gd81kj1lrg1jr2 -- 21:23:36.251 INFO [11637]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:23:36.251 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:36.262 INFO [11637]: COREGRADE is stopping... -- 21:23:36.263 DEBUG [11637]: Closing database connection -- 21:23:36.263 SQL [11637]: pgsql_close() -- 21:23:36.308 INFO [11637]: COREGRADE is starting... -- 21:23:36.308 INFO [11637]: Version from config: 1.0 -- 21:23:36.308 DEBUG [11637]: Connecting to database... -- 21:23:36.308 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:36.308 SQL [11637]: pgsql_db_connect() -- 21:23:36.312 DEBUG [11637]: Database connection successful -- 21:23:36.312 INFO [11637]: _SERVER found -- 21:23:36.312 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 21:23:36.312 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:36.312 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g4qot617hbemvk3930gd81kj1lrg1jr2 -- 21:23:36.312 INFO [11637]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:23:36.312 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:36.323 INFO [11637]: COREGRADE is stopping... -- 21:23:36.323 DEBUG [11637]: Closing database connection -- 21:23:36.323 SQL [11637]: pgsql_close() -- 21:23:44.202 INFO [12763]: COREGRADE is starting... -- 21:23:44.202 INFO [12763]: Version from config: 1.0 -- 21:23:44.202 DEBUG [12763]: Connecting to database... -- 21:23:44.202 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:44.202 SQL [12763]: pgsql_db_connect() -- 21:23:44.206 DEBUG [12763]: Database connection successful -- 21:23:44.206 INFO [12763]: _SERVER found -- 21:23:44.206 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 21:23:44.206 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:44.206 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:23:44.206 INFO [12763]: QUERY_STRING = /member -- 21:23:44.206 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:44.242 INFO [12763]: COREGRADE is stopping... -- 21:23:44.242 DEBUG [12763]: Closing database connection -- 21:23:44.242 SQL [12763]: pgsql_close() -- 21:23:44.531 INFO [12763]: COREGRADE is starting... -- 21:23:44.531 INFO [12763]: Version from config: 1.0 -- 21:23:44.531 DEBUG [12763]: Connecting to database... -- 21:23:44.531 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:44.531 SQL [12763]: pgsql_db_connect() -- 21:23:44.535 DEBUG [12763]: Database connection successful -- 21:23:44.535 INFO [12763]: _SERVER found -- 21:23:44.535 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 21:23:44.535 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:44.535 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:23:44.535 INFO [12763]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:23:44.535 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:44.546 INFO [12763]: COREGRADE is stopping... -- 21:23:44.547 DEBUG [12763]: Closing database connection -- 21:23:44.547 SQL [12763]: pgsql_close() -- 21:23:44.571 INFO [12763]: COREGRADE is starting... -- 21:23:44.571 INFO [12763]: Version from config: 1.0 -- 21:23:44.571 DEBUG [12763]: Connecting to database... -- 21:23:44.571 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:44.571 SQL [12763]: pgsql_db_connect() -- 21:23:44.575 DEBUG [12763]: Database connection successful -- 21:23:44.575 INFO [12763]: _SERVER found -- 21:23:44.575 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 21:23:44.575 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:44.575 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:23:44.575 INFO [12763]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:23:44.575 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:44.586 INFO [12763]: COREGRADE is stopping... -- 21:23:44.586 DEBUG [12763]: Closing database connection -- 21:23:44.586 SQL [12763]: pgsql_close() -- 21:23:48.001 INFO [12763]: COREGRADE is starting... -- 21:23:48.002 INFO [12763]: Version from config: 1.0 -- 21:23:48.002 DEBUG [12763]: Connecting to database... -- 21:23:48.002 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:48.002 SQL [12763]: pgsql_db_connect() -- 21:23:48.006 DEBUG [12763]: Database connection successful -- 21:23:48.006 INFO [12763]: _SERVER found -- 21:23:48.006 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 21:23:48.006 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:48.006 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:23:48.006 INFO [12763]: QUERY_STRING = /member/page -- 21:23:48.006 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:48.042 INFO [12763]: COREGRADE is stopping... -- 21:23:48.042 DEBUG [12763]: Closing database connection -- 21:23:48.042 SQL [12763]: pgsql_close() -- 21:23:48.250 INFO [12763]: COREGRADE is starting... -- 21:23:48.250 INFO [12763]: Version from config: 1.0 -- 21:23:48.250 DEBUG [12763]: Connecting to database... -- 21:23:48.250 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:48.250 SQL [12763]: pgsql_db_connect() -- 21:23:48.254 DEBUG [12763]: Database connection successful -- 21:23:48.254 INFO [12763]: _SERVER found -- 21:23:48.254 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 21:23:48.254 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:48.254 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:23:48.254 INFO [12763]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:23:48.254 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:48.265 INFO [12763]: COREGRADE is stopping... -- 21:23:48.265 DEBUG [12763]: Closing database connection -- 21:23:48.265 SQL [12763]: pgsql_close() -- 21:23:48.457 INFO [12763]: COREGRADE is starting... -- 21:23:48.457 INFO [12763]: Version from config: 1.0 -- 21:23:48.457 DEBUG [12763]: Connecting to database... -- 21:23:48.457 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:48.457 SQL [12763]: pgsql_db_connect() -- 21:23:48.461 DEBUG [12763]: Database connection successful -- 21:23:48.461 INFO [12763]: _SERVER found -- 21:23:48.461 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 21:23:48.461 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:48.461 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:23:48.461 INFO [12763]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:23:48.461 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:48.472 INFO [12763]: COREGRADE is stopping... -- 21:23:48.472 DEBUG [12763]: Closing database connection -- 21:23:48.472 SQL [12763]: pgsql_close() -- 21:24:02.952 INFO [12764]: COREGRADE is starting... -- 21:24:02.952 INFO [12764]: Version from config: 1.0 -- 21:24:02.952 DEBUG [12764]: Connecting to database... -- 21:24:02.952 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:24:02.952 SQL [12764]: pgsql_db_connect() -- 21:24:02.957 DEBUG [12764]: Database connection successful -- 21:24:02.957 INFO [12764]: _SERVER found -- 21:24:02.957 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 21:24:02.957 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 21:24:02.957 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g4qot617hbemvk3930gd81kj1lrg1jr2 -- 21:24:02.957 INFO [12764]: QUERY_STRING = /member/page -- 21:24:02.957 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:24:02.993 INFO [12764]: COREGRADE is stopping... -- 21:24:02.993 DEBUG [12764]: Closing database connection -- 21:24:02.994 SQL [12764]: pgsql_close() -- 21:24:03.769 INFO [12764]: COREGRADE is starting... -- 21:24:03.769 INFO [12764]: Version from config: 1.0 -- 21:24:03.769 DEBUG [12764]: Connecting to database... -- 21:24:03.769 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:24:03.769 SQL [12764]: pgsql_db_connect() -- 21:24:03.774 DEBUG [12764]: Database connection successful -- 21:24:03.774 INFO [12764]: _SERVER found -- 21:24:03.774 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 21:24:03.774 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 21:24:03.774 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2jmsauvm97jnplp6htktea303hjh3h2r -- 21:24:03.774 INFO [12764]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:24:03.774 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:24:03.785 INFO [12764]: COREGRADE is stopping... -- 21:24:03.785 DEBUG [12764]: Closing database connection -- 21:24:03.785 SQL [12764]: pgsql_close() -- 21:24:03.791 INFO [12764]: COREGRADE is starting... -- 21:24:03.791 INFO [12764]: Version from config: 1.0 -- 21:24:03.791 DEBUG [12764]: Connecting to database... -- 21:24:03.791 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:24:03.791 SQL [12764]: pgsql_db_connect() -- 21:24:03.795 DEBUG [12764]: Database connection successful -- 21:24:03.795 INFO [12764]: _SERVER found -- 21:24:03.795 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 21:24:03.795 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 21:24:03.795 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2jmsauvm97jnplp6htktea303hjh3h2r -- 21:24:03.795 INFO [12764]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:24:03.795 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:24:03.806 INFO [12764]: COREGRADE is stopping... -- 21:24:03.806 DEBUG [12764]: Closing database connection -- 21:24:03.806 SQL [12764]: pgsql_close() -- 21:24:38.798 INFO [11644]: COREGRADE is starting... -- 21:24:38.798 INFO [11644]: Version from config: 1.0 -- 21:24:38.798 DEBUG [11644]: Connecting to database... -- 21:24:38.798 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:24:38.798 SQL [11644]: pgsql_db_connect() -- 21:24:38.802 DEBUG [11644]: Database connection successful -- 21:24:38.802 INFO [11644]: _SERVER found -- 21:24:38.802 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 21:24:38.802 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 21:24:38.802 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2jmsauvm97jnplp6htktea303hjh3h2r -- 21:24:38.802 INFO [11644]: QUERY_STRING = /member -- 21:24:38.802 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:24:38.838 INFO [11644]: COREGRADE is stopping... -- 21:24:38.838 DEBUG [11644]: Closing database connection -- 21:24:38.838 SQL [11644]: pgsql_close() -- 21:24:39.235 INFO [11644]: COREGRADE is starting... -- 21:24:39.236 INFO [11644]: Version from config: 1.0 -- 21:24:39.236 DEBUG [11644]: Connecting to database... -- 21:24:39.236 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:24:39.236 SQL [11644]: pgsql_db_connect() -- 21:24:39.240 DEBUG [11644]: Database connection successful -- 21:24:39.240 INFO [11644]: _SERVER found -- 21:24:39.240 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 21:24:39.240 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 21:24:39.240 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2jmsauvm97jnplp6htktea303hjh3h2r -- 21:24:39.240 INFO [11644]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:24:39.240 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:24:39.251 INFO [11644]: COREGRADE is stopping... -- 21:24:39.251 DEBUG [11644]: Closing database connection -- 21:24:39.251 SQL [11644]: pgsql_close() -- 21:24:39.301 INFO [11644]: COREGRADE is starting... -- 21:24:39.301 INFO [11644]: Version from config: 1.0 -- 21:24:39.301 DEBUG [11644]: Connecting to database... -- 21:24:39.301 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:24:39.301 SQL [11644]: pgsql_db_connect() -- 21:24:39.305 DEBUG [11644]: Database connection successful -- 21:24:39.305 INFO [11644]: _SERVER found -- 21:24:39.305 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 21:24:39.305 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 21:24:39.305 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2jmsauvm97jnplp6htktea303hjh3h2r -- 21:24:39.305 INFO [11644]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:24:39.305 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:24:39.316 INFO [11644]: COREGRADE is stopping... -- 21:24:39.316 DEBUG [11644]: Closing database connection -- 21:24:39.316 SQL [11644]: pgsql_close() -- 21:24:43.709 INFO [11644]: COREGRADE is starting... -- 21:24:43.710 INFO [11644]: Version from config: 1.0 -- 21:24:43.710 DEBUG [11644]: Connecting to database... -- 21:24:43.710 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:24:43.710 SQL [11644]: pgsql_db_connect() -- 21:24:43.714 DEBUG [11644]: Database connection successful -- 21:24:43.714 INFO [11644]: _SERVER found -- 21:24:43.714 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 21:24:43.714 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 21:24:43.714 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2jmsauvm97jnplp6htktea303hjh3h2r -- 21:24:43.714 INFO [11644]: QUERY_STRING = /member/page -- 21:24:43.714 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:24:43.749 INFO [11644]: COREGRADE is stopping... -- 21:24:43.749 DEBUG [11644]: Closing database connection -- 21:24:43.749 SQL [11644]: pgsql_close() -- 21:24:44.200 INFO [11644]: COREGRADE is starting... -- 21:24:44.200 INFO [11644]: Version from config: 1.0 -- 21:24:44.200 DEBUG [11644]: Connecting to database... -- 21:24:44.201 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:24:44.201 SQL [11644]: pgsql_db_connect() -- 21:24:44.205 DEBUG [11644]: Database connection successful -- 21:24:44.205 INFO [11644]: _SERVER found -- 21:24:44.205 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 21:24:44.205 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 21:24:44.205 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2jmsauvm97jnplp6htktea303hjh3h2r -- 21:24:44.205 INFO [11644]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:24:44.205 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:24:44.216 INFO [11644]: COREGRADE is stopping... -- 21:24:44.216 DEBUG [11644]: Closing database connection -- 21:24:44.216 SQL [11644]: pgsql_close() -- 21:24:44.222 INFO [11638]: COREGRADE is starting... -- 21:24:44.223 INFO [11638]: Version from config: 1.0 -- 21:24:44.223 DEBUG [11638]: Connecting to database... -- 21:24:44.223 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:24:44.223 SQL [11638]: pgsql_db_connect() -- 21:24:44.227 DEBUG [11638]: Database connection successful -- 21:24:44.227 INFO [11638]: _SERVER found -- 21:24:44.227 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 21:24:44.227 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 21:24:44.227 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2jmsauvm97jnplp6htktea303hjh3h2r -- 21:24:44.227 INFO [11638]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:24:44.227 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:24:44.238 INFO [11638]: COREGRADE is stopping... -- 21:24:44.238 DEBUG [11638]: Closing database connection -- 21:24:44.238 SQL [11638]: pgsql_close() -- 21:25:24.919 INFO [11639]: COREGRADE is starting... -- 21:25:24.919 INFO [11639]: Version from config: 1.0 -- 21:25:24.919 DEBUG [11639]: Connecting to database... -- 21:25:24.919 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:25:24.919 SQL [11639]: pgsql_db_connect() -- 21:25:24.923 DEBUG [11639]: Database connection successful -- 21:25:24.923 INFO [11639]: _SERVER found -- 21:25:24.923 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 21:25:24.923 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 21:25:24.923 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=u79v2oninpghofbnlkf9d4vod4s1bog4 -- 21:25:24.923 INFO [11639]: QUERY_STRING = /member/page -- 21:25:24.923 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:25:24.964 INFO [11639]: COREGRADE is stopping... -- 21:25:24.965 DEBUG [11639]: Closing database connection -- 21:25:24.965 SQL [11639]: pgsql_close() -- 21:25:25.237 INFO [11639]: COREGRADE is starting... -- 21:25:25.238 INFO [11639]: Version from config: 1.0 -- 21:25:25.238 DEBUG [11639]: Connecting to database... -- 21:25:25.238 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:25:25.238 SQL [11639]: pgsql_db_connect() -- 21:25:25.242 DEBUG [11639]: Database connection successful -- 21:25:25.242 INFO [11639]: _SERVER found -- 21:25:25.242 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 21:25:25.242 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 21:25:25.242 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sb5jbmglu4suvuqe8020ubmo7stfd5f7 -- 21:25:25.242 INFO [11639]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:25:25.242 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:25:25.254 INFO [11639]: COREGRADE is stopping... -- 21:25:25.254 DEBUG [11639]: Closing database connection -- 21:25:25.254 SQL [11639]: pgsql_close() -- 21:25:25.327 INFO [11639]: COREGRADE is starting... -- 21:25:25.328 INFO [11639]: Version from config: 1.0 -- 21:25:25.328 DEBUG [11639]: Connecting to database... -- 21:25:25.328 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:25:25.328 SQL [11639]: pgsql_db_connect() -- 21:25:25.332 DEBUG [11639]: Database connection successful -- 21:25:25.332 INFO [11639]: _SERVER found -- 21:25:25.332 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 21:25:25.332 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 21:25:25.332 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sb5jbmglu4suvuqe8020ubmo7stfd5f7 -- 21:25:25.332 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:25:25.332 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:25:25.344 INFO [11639]: COREGRADE is stopping... -- 21:25:25.344 DEBUG [11639]: Closing database connection -- 21:25:25.344 SQL [11639]: pgsql_close() -- 21:26:06.524 INFO [11636]: COREGRADE is starting... -- 21:26:06.524 INFO [11636]: Version from config: 1.0 -- 21:26:06.524 DEBUG [11636]: Connecting to database... -- 21:26:06.524 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:26:06.524 SQL [11636]: pgsql_db_connect() -- 21:26:06.528 DEBUG [11636]: Database connection successful -- 21:26:06.528 INFO [11636]: _SERVER found -- 21:26:06.528 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 21:26:06.528 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 21:26:06.528 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2jmsauvm97jnplp6htktea303hjh3h2r -- 21:26:06.528 INFO [11636]: QUERY_STRING = /member/page -- 21:26:06.528 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:26:06.565 INFO [11636]: COREGRADE is stopping... -- 21:26:06.565 DEBUG [11636]: Closing database connection -- 21:26:06.565 SQL [11636]: pgsql_close() -- 21:26:07.006 INFO [11636]: COREGRADE is starting... -- 21:26:07.006 INFO [11636]: Version from config: 1.0 -- 21:26:07.006 DEBUG [11636]: Connecting to database... -- 21:26:07.006 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:26:07.006 SQL [11636]: pgsql_db_connect() -- 21:26:07.010 DEBUG [11636]: Database connection successful -- 21:26:07.010 INFO [11636]: _SERVER found -- 21:26:07.010 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 21:26:07.010 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 21:26:07.010 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2jmsauvm97jnplp6htktea303hjh3h2r -- 21:26:07.010 INFO [11636]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:26:07.010 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:26:07.021 INFO [11636]: COREGRADE is stopping... -- 21:26:07.021 DEBUG [11636]: Closing database connection -- 21:26:07.021 SQL [11636]: pgsql_close() -- 21:26:07.063 INFO [11636]: COREGRADE is starting... -- 21:26:07.063 INFO [11636]: Version from config: 1.0 -- 21:26:07.063 DEBUG [11636]: Connecting to database... -- 21:26:07.063 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:26:07.063 SQL [11636]: pgsql_db_connect() -- 21:26:07.067 DEBUG [11636]: Database connection successful -- 21:26:07.067 INFO [11636]: _SERVER found -- 21:26:07.067 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 21:26:07.067 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 21:26:07.067 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2jmsauvm97jnplp6htktea303hjh3h2r -- 21:26:07.067 INFO [11636]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:26:07.067 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:26:07.078 INFO [11636]: COREGRADE is stopping... -- 21:26:07.078 DEBUG [11636]: Closing database connection -- 21:26:07.078 SQL [11636]: pgsql_close() -- 21:26:13.841 INFO [11650]: COREGRADE is starting... -- 21:26:13.842 INFO [11650]: Version from config: 1.0 -- 21:26:13.842 DEBUG [11650]: Connecting to database... -- 21:26:13.842 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:26:13.842 SQL [11650]: pgsql_db_connect() -- 21:26:13.846 DEBUG [11650]: Database connection successful -- 21:26:13.846 INFO [11650]: _SERVER found -- 21:26:13.846 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 21:26:13.846 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 21:26:13.846 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sb5jbmglu4suvuqe8020ubmo7stfd5f7 -- 21:26:13.846 INFO [11650]: QUERY_STRING = /member/page -- 21:26:13.846 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:26:13.885 INFO [11650]: COREGRADE is stopping... -- 21:26:13.885 DEBUG [11650]: Closing database connection -- 21:26:13.885 SQL [11650]: pgsql_close() -- 21:26:14.173 INFO [11650]: COREGRADE is starting... -- 21:26:14.173 INFO [11650]: Version from config: 1.0 -- 21:26:14.173 DEBUG [11650]: Connecting to database... -- 21:26:14.173 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:26:14.173 SQL [11650]: pgsql_db_connect() -- 21:26:14.177 DEBUG [11650]: Database connection successful -- 21:26:14.177 INFO [11650]: _SERVER found -- 21:26:14.177 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 21:26:14.177 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 21:26:14.177 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sb5jbmglu4suvuqe8020ubmo7stfd5f7 -- 21:26:14.177 INFO [11650]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:26:14.177 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:26:14.188 INFO [11650]: COREGRADE is stopping... -- 21:26:14.188 DEBUG [11650]: Closing database connection -- 21:26:14.188 SQL [11650]: pgsql_close() -- 21:26:14.204 INFO [11650]: COREGRADE is starting... -- 21:26:14.205 INFO [11650]: Version from config: 1.0 -- 21:26:14.205 DEBUG [11650]: Connecting to database... -- 21:26:14.205 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:26:14.205 SQL [11650]: pgsql_db_connect() -- 21:26:14.209 DEBUG [11650]: Database connection successful -- 21:26:14.209 INFO [11650]: _SERVER found -- 21:26:14.209 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 21:26:14.209 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 21:26:14.209 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sb5jbmglu4suvuqe8020ubmo7stfd5f7 -- 21:26:14.209 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:26:14.209 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:26:14.220 INFO [11650]: COREGRADE is stopping... -- 21:26:14.220 DEBUG [11650]: Closing database connection -- 21:26:14.220 SQL [11650]: pgsql_close() -- 21:27:16.364 INFO [11652]: COREGRADE is starting... -- 21:27:16.364 INFO [11652]: Version from config: 1.0 -- 21:27:16.364 DEBUG [11652]: Connecting to database... -- 21:27:16.364 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:16.364 SQL [11652]: pgsql_db_connect() -- 21:27:16.369 DEBUG [11652]: Database connection successful -- 21:27:16.369 INFO [11652]: _SERVER found -- 21:27:16.369 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 21:27:16.369 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 21:27:16.369 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sb5jbmglu4suvuqe8020ubmo7stfd5f7 -- 21:27:16.369 INFO [11652]: QUERY_STRING = /member/page -- 21:27:16.369 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:27:16.405 INFO [11652]: COREGRADE is stopping... -- 21:27:16.405 DEBUG [11652]: Closing database connection -- 21:27:16.405 SQL [11652]: pgsql_close() -- 21:27:16.587 INFO [11652]: COREGRADE is starting... -- 21:27:16.587 INFO [11652]: Version from config: 1.0 -- 21:27:16.587 DEBUG [11652]: Connecting to database... -- 21:27:16.587 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:16.588 SQL [11652]: pgsql_db_connect() -- 21:27:16.592 DEBUG [11652]: Database connection successful -- 21:27:16.592 INFO [11652]: _SERVER found -- 21:27:16.592 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 21:27:16.592 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 21:27:16.592 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sb5jbmglu4suvuqe8020ubmo7stfd5f7 -- 21:27:16.592 INFO [11652]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:27:16.592 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:27:16.603 INFO [11652]: COREGRADE is stopping... -- 21:27:16.603 DEBUG [11652]: Closing database connection -- 21:27:16.603 SQL [11652]: pgsql_close() -- 21:27:16.787 INFO [11652]: COREGRADE is starting... -- 21:27:16.787 INFO [11652]: Version from config: 1.0 -- 21:27:16.787 DEBUG [11652]: Connecting to database... -- 21:27:16.787 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:16.787 SQL [11652]: pgsql_db_connect() -- 21:27:16.791 DEBUG [11652]: Database connection successful -- 21:27:16.791 INFO [11652]: _SERVER found -- 21:27:16.791 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 21:27:16.791 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 21:27:16.791 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sb5jbmglu4suvuqe8020ubmo7stfd5f7 -- 21:27:16.791 INFO [11652]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:27:16.791 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:27:16.802 INFO [11652]: COREGRADE is stopping... -- 21:27:16.802 DEBUG [11652]: Closing database connection -- 21:27:16.802 SQL [11652]: pgsql_close() -- 21:27:19.191 INFO [11652]: COREGRADE is starting... -- 21:27:19.191 INFO [11652]: Version from config: 1.0 -- 21:27:19.191 DEBUG [11652]: Connecting to database... -- 21:27:19.191 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:19.191 SQL [11652]: pgsql_db_connect() -- 21:27:19.195 DEBUG [11652]: Database connection successful -- 21:27:19.195 INFO [11652]: _SERVER found -- 21:27:19.195 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 21:27:19.195 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 21:27:19.195 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sb5jbmglu4suvuqe8020ubmo7stfd5f7 -- 21:27:19.195 INFO [11652]: QUERY_STRING = /member/configure -- 21:27:19.195 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:27:19.230 INFO [11652]: COREGRADE is stopping... -- 21:27:19.230 DEBUG [11652]: Closing database connection -- 21:27:19.230 SQL [11652]: pgsql_close() -- 21:27:19.416 INFO [11652]: COREGRADE is starting... -- 21:27:19.416 INFO [11652]: Version from config: 1.0 -- 21:27:19.416 DEBUG [11652]: Connecting to database... -- 21:27:19.416 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:19.416 SQL [11652]: pgsql_db_connect() -- 21:27:19.420 DEBUG [11652]: Database connection successful -- 21:27:19.420 INFO [11652]: _SERVER found -- 21:27:19.420 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 21:27:19.420 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 21:27:19.420 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sb5jbmglu4suvuqe8020ubmo7stfd5f7 -- 21:27:19.420 INFO [11652]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:27:19.420 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:27:19.431 INFO [11652]: COREGRADE is stopping... -- 21:27:19.431 DEBUG [11652]: Closing database connection -- 21:27:19.431 SQL [11652]: pgsql_close() -- 21:27:19.568 INFO [11652]: COREGRADE is starting... -- 21:27:19.569 INFO [11652]: Version from config: 1.0 -- 21:27:19.569 DEBUG [11652]: Connecting to database... -- 21:27:19.569 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:19.569 SQL [11652]: pgsql_db_connect() -- 21:27:19.573 DEBUG [11652]: Database connection successful -- 21:27:19.573 INFO [11652]: _SERVER found -- 21:27:19.573 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 21:27:19.573 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 21:27:19.573 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sb5jbmglu4suvuqe8020ubmo7stfd5f7 -- 21:27:19.573 INFO [11652]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:27:19.573 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:27:19.584 INFO [11652]: COREGRADE is stopping... -- 21:27:19.584 DEBUG [11652]: Closing database connection -- 21:27:19.584 SQL [11652]: pgsql_close() -- 21:27:41.446 INFO [12761]: COREGRADE is starting... -- 21:27:41.447 INFO [12761]: Version from config: 1.0 -- 21:27:41.447 DEBUG [12761]: Connecting to database... -- 21:27:41.447 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:41.447 SQL [12761]: pgsql_db_connect() -- 21:27:41.451 DEBUG [12761]: Database connection successful -- 21:27:41.451 INFO [12761]: _SERVER found -- 21:27:41.451 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 21:27:41.451 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 21:27:41.451 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2jmsauvm97jnplp6htktea303hjh3h2r -- 21:27:41.451 INFO [12761]: QUERY_STRING = /member -- 21:27:41.451 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:27:41.487 INFO [12761]: COREGRADE is stopping... -- 21:27:41.487 DEBUG [12761]: Closing database connection -- 21:27:41.487 SQL [12761]: pgsql_close() -- 21:27:41.902 INFO [12761]: COREGRADE is starting... -- 21:27:41.903 INFO [12761]: Version from config: 1.0 -- 21:27:41.903 DEBUG [12761]: Connecting to database... -- 21:27:41.903 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:41.903 SQL [12761]: pgsql_db_connect() -- 21:27:41.907 DEBUG [12761]: Database connection successful -- 21:27:41.907 INFO [12761]: _SERVER found -- 21:27:41.907 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 21:27:41.907 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 21:27:41.907 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2jmsauvm97jnplp6htktea303hjh3h2r -- 21:27:41.907 INFO [12761]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:27:41.907 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:27:41.918 INFO [12761]: COREGRADE is stopping... -- 21:27:41.918 DEBUG [12761]: Closing database connection -- 21:27:41.918 SQL [12761]: pgsql_close() -- 21:27:41.940 INFO [12761]: COREGRADE is starting... -- 21:27:41.940 INFO [12761]: Version from config: 1.0 -- 21:27:41.940 DEBUG [12761]: Connecting to database... -- 21:27:41.940 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:41.940 SQL [12761]: pgsql_db_connect() -- 21:27:41.944 DEBUG [12761]: Database connection successful -- 21:27:41.944 INFO [12761]: _SERVER found -- 21:27:41.944 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 21:27:41.944 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 21:27:41.944 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2jmsauvm97jnplp6htktea303hjh3h2r -- 21:27:41.944 INFO [12761]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:27:41.944 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:27:41.955 INFO [12761]: COREGRADE is stopping... -- 21:27:41.955 DEBUG [12761]: Closing database connection -- 21:27:41.955 SQL [12761]: pgsql_close() -- 21:28:04.136 INFO [11637]: COREGRADE is starting... -- 21:28:04.136 INFO [11637]: Version from config: 1.0 -- 21:28:04.136 DEBUG [11637]: Connecting to database... -- 21:28:04.136 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:28:04.136 SQL [11637]: pgsql_db_connect() -- 21:28:04.140 DEBUG [11637]: Database connection successful -- 21:28:04.140 INFO [11637]: _SERVER found -- 21:28:04.140 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 21:28:04.140 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 21:28:04.140 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2jmsauvm97jnplp6htktea303hjh3h2r -- 21:28:04.140 INFO [11637]: QUERY_STRING = /member/page -- 21:28:04.140 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:28:04.177 INFO [11637]: COREGRADE is stopping... -- 21:28:04.177 DEBUG [11637]: Closing database connection -- 21:28:04.177 SQL [11637]: pgsql_close() -- 21:28:04.843 INFO [11637]: COREGRADE is starting... -- 21:28:04.844 INFO [11637]: Version from config: 1.0 -- 21:28:04.844 DEBUG [11637]: Connecting to database... -- 21:28:04.844 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:28:04.844 SQL [11637]: pgsql_db_connect() -- 21:28:04.848 DEBUG [11637]: Database connection successful -- 21:28:04.848 INFO [11637]: _SERVER found -- 21:28:04.848 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 21:28:04.848 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 21:28:04.848 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2jmsauvm97jnplp6htktea303hjh3h2r -- 21:28:04.848 INFO [11637]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:28:04.848 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:28:04.859 INFO [11637]: COREGRADE is stopping... -- 21:28:04.859 DEBUG [11637]: Closing database connection -- 21:28:04.859 SQL [11637]: pgsql_close() -- 21:28:04.865 INFO [11637]: COREGRADE is starting... -- 21:28:04.865 INFO [11637]: Version from config: 1.0 -- 21:28:04.865 DEBUG [11637]: Connecting to database... -- 21:28:04.865 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:28:04.865 SQL [11637]: pgsql_db_connect() -- 21:28:04.869 DEBUG [11637]: Database connection successful -- 21:28:04.869 INFO [11637]: _SERVER found -- 21:28:04.869 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 21:28:04.869 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 21:28:04.869 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2jmsauvm97jnplp6htktea303hjh3h2r -- 21:28:04.869 INFO [11637]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:28:04.869 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:28:04.880 INFO [11637]: COREGRADE is stopping... -- 21:28:04.880 DEBUG [11637]: Closing database connection -- 21:28:04.880 SQL [11637]: pgsql_close() -- 21:28:16.678 INFO [12763]: COREGRADE is starting... -- 21:28:16.679 INFO [12763]: Version from config: 1.0 -- 21:28:16.679 DEBUG [12763]: Connecting to database... -- 21:28:16.679 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:28:16.679 SQL [12763]: pgsql_db_connect() -- 21:28:16.683 DEBUG [12763]: Database connection successful -- 21:28:16.683 INFO [12763]: _SERVER found -- 21:28:16.683 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 21:28:16.683 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 21:28:16.683 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2jmsauvm97jnplp6htktea303hjh3h2r -- 21:28:16.683 INFO [12763]: QUERY_STRING = /member -- 21:28:16.683 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:28:16.719 INFO [12763]: COREGRADE is stopping... -- 21:28:16.719 DEBUG [12763]: Closing database connection -- 21:28:16.719 SQL [12763]: pgsql_close() -- 21:28:17.178 INFO [12763]: COREGRADE is starting... -- 21:28:17.178 INFO [12763]: Version from config: 1.0 -- 21:28:17.178 DEBUG [12763]: Connecting to database... -- 21:28:17.178 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:28:17.178 SQL [12763]: pgsql_db_connect() -- 21:28:17.182 DEBUG [12763]: Database connection successful -- 21:28:17.182 INFO [12763]: _SERVER found -- 21:28:17.182 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 21:28:17.182 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 21:28:17.182 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2jmsauvm97jnplp6htktea303hjh3h2r -- 21:28:17.182 INFO [12763]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:28:17.182 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:28:17.194 INFO [12763]: COREGRADE is stopping... -- 21:28:17.194 DEBUG [12763]: Closing database connection -- 21:28:17.194 SQL [12763]: pgsql_close() -- 21:28:17.206 INFO [12764]: COREGRADE is starting... -- 21:28:17.206 INFO [12764]: Version from config: 1.0 -- 21:28:17.206 DEBUG [12764]: Connecting to database... -- 21:28:17.206 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:28:17.206 SQL [12764]: pgsql_db_connect() -- 21:28:17.210 DEBUG [12764]: Database connection successful -- 21:28:17.210 INFO [12764]: _SERVER found -- 21:28:17.210 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 21:28:17.210 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 21:28:17.210 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2jmsauvm97jnplp6htktea303hjh3h2r -- 21:28:17.210 INFO [12764]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:28:17.210 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:28:17.222 INFO [12764]: COREGRADE is stopping... -- 21:28:17.222 DEBUG [12764]: Closing database connection -- 21:28:17.222 SQL [12764]: pgsql_close() -- 21:28:21.516 INFO [12764]: COREGRADE is starting... -- 21:28:21.516 INFO [12764]: Version from config: 1.0 -- 21:28:21.516 DEBUG [12764]: Connecting to database... -- 21:28:21.516 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:28:21.516 SQL [12764]: pgsql_db_connect() -- 21:28:21.520 DEBUG [12764]: Database connection successful -- 21:28:21.520 INFO [12764]: _SERVER found -- 21:28:21.520 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 21:28:21.520 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 21:28:21.520 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2jmsauvm97jnplp6htktea303hjh3h2r -- 21:28:21.520 INFO [12764]: QUERY_STRING = /member/page -- 21:28:21.520 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:28:21.557 INFO [12764]: COREGRADE is stopping... -- 21:28:21.557 DEBUG [12764]: Closing database connection -- 21:28:21.557 SQL [12764]: pgsql_close() -- 21:28:21.814 INFO [12764]: COREGRADE is starting... -- 21:28:21.815 INFO [12764]: Version from config: 1.0 -- 21:28:21.815 DEBUG [12764]: Connecting to database... -- 21:28:21.815 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:28:21.815 SQL [12764]: pgsql_db_connect() -- 21:28:21.824 INFO [12763]: COREGRADE is starting... -- 21:28:21.824 INFO [12763]: Version from config: 1.0 -- 21:28:21.824 DEBUG [12763]: Connecting to database... -- 21:28:21.824 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:28:21.824 SQL [12763]: pgsql_db_connect() -- 21:28:21.819 DEBUG [12764]: Database connection successful -- 21:28:21.819 INFO [12764]: _SERVER found -- 21:28:21.819 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 21:28:21.819 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 21:28:21.819 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2jmsauvm97jnplp6htktea303hjh3h2r -- 21:28:21.819 INFO [12764]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:28:21.819 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:28:21.830 INFO [12764]: COREGRADE is stopping... -- 21:28:21.830 DEBUG [12764]: Closing database connection -- 21:28:21.830 SQL [12764]: pgsql_close() -- 21:28:21.828 DEBUG [12763]: Database connection successful -- 21:28:21.828 INFO [12763]: _SERVER found -- 21:28:21.828 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 21:28:21.828 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 21:28:21.828 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2jmsauvm97jnplp6htktea303hjh3h2r -- 21:28:21.828 INFO [12763]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:28:21.828 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:28:21.839 INFO [12763]: COREGRADE is stopping... -- 21:28:21.839 DEBUG [12763]: Closing database connection -- 21:28:21.839 SQL [12763]: pgsql_close() -- 21:28:24.933 INFO [12763]: COREGRADE is starting... -- 21:28:24.933 INFO [12763]: Version from config: 1.0 -- 21:28:24.933 DEBUG [12763]: Connecting to database... -- 21:28:24.933 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:28:24.933 SQL [12763]: pgsql_db_connect() -- 21:28:24.937 DEBUG [12763]: Database connection successful -- 21:28:24.937 INFO [12763]: _SERVER found -- 21:28:24.937 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 21:28:24.937 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 21:28:24.937 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2jmsauvm97jnplp6htktea303hjh3h2r -- 21:28:24.937 INFO [12763]: QUERY_STRING = /member/page -- 21:28:24.937 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:28:24.974 INFO [12763]: COREGRADE is stopping... -- 21:28:24.974 DEBUG [12763]: Closing database connection -- 21:28:24.974 SQL [12763]: pgsql_close() -- 21:28:25.374 INFO [12763]: COREGRADE is starting... -- 21:28:25.374 INFO [12763]: Version from config: 1.0 -- 21:28:25.374 DEBUG [12763]: Connecting to database... -- 21:28:25.374 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:28:25.374 SQL [12763]: pgsql_db_connect() -- 21:28:25.387 INFO [12764]: COREGRADE is starting... -- 21:28:25.387 INFO [12764]: Version from config: 1.0 -- 21:28:25.387 DEBUG [12764]: Connecting to database... -- 21:28:25.387 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:28:25.387 SQL [12764]: pgsql_db_connect() -- 21:28:25.378 DEBUG [12763]: Database connection successful -- 21:28:25.378 INFO [12763]: _SERVER found -- 21:28:25.378 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 21:28:25.378 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 21:28:25.378 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2jmsauvm97jnplp6htktea303hjh3h2r -- 21:28:25.378 INFO [12763]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:28:25.378 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:28:25.390 INFO [12763]: COREGRADE is stopping... -- 21:28:25.390 DEBUG [12763]: Closing database connection -- 21:28:25.390 SQL [12763]: pgsql_close() -- 21:28:25.391 DEBUG [12764]: Database connection successful -- 21:28:25.391 INFO [12764]: _SERVER found -- 21:28:25.391 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 21:28:25.391 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 21:28:25.391 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2jmsauvm97jnplp6htktea303hjh3h2r -- 21:28:25.391 INFO [12764]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:28:25.391 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:28:25.403 INFO [12764]: COREGRADE is stopping... -- 21:28:25.403 DEBUG [12764]: Closing database connection -- 21:28:25.403 SQL [12764]: pgsql_close() -- 21:28:43.682 INFO [11644]: COREGRADE is starting... -- 21:28:43.683 INFO [11644]: Version from config: 1.0 -- 21:28:43.683 DEBUG [11644]: Connecting to database... -- 21:28:43.683 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:28:43.683 SQL [11644]: pgsql_db_connect() -- 21:28:43.687 DEBUG [11644]: Database connection successful -- 21:28:43.687 INFO [11644]: _SERVER found -- 21:28:43.687 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 21:28:43.687 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 21:28:43.687 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sb5jbmglu4suvuqe8020ubmo7stfd5f7 -- 21:28:43.687 INFO [11644]: QUERY_STRING = /member/configure -- 21:28:43.687 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:28:43.722 INFO [11644]: COREGRADE is stopping... -- 21:28:43.723 DEBUG [11644]: Closing database connection -- 21:28:43.723 SQL [11644]: pgsql_close() -- 21:28:43.885 INFO [11644]: COREGRADE is starting... -- 21:28:43.885 INFO [11644]: Version from config: 1.0 -- 21:28:43.885 DEBUG [11644]: Connecting to database... -- 21:28:43.885 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:28:43.885 SQL [11644]: pgsql_db_connect() -- 21:28:43.889 DEBUG [11644]: Database connection successful -- 21:28:43.889 INFO [11644]: _SERVER found -- 21:28:43.889 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 21:28:43.889 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 21:28:43.889 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sb5jbmglu4suvuqe8020ubmo7stfd5f7 -- 21:28:43.889 INFO [11644]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:28:43.889 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:28:43.900 INFO [11644]: COREGRADE is stopping... -- 21:28:43.900 DEBUG [11644]: Closing database connection -- 21:28:43.900 SQL [11644]: pgsql_close() -- 21:28:44.110 INFO [11644]: COREGRADE is starting... -- 21:28:44.110 INFO [11644]: Version from config: 1.0 -- 21:28:44.110 DEBUG [11644]: Connecting to database... -- 21:28:44.110 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:28:44.110 SQL [11644]: pgsql_db_connect() -- 21:28:44.114 DEBUG [11644]: Database connection successful -- 21:28:44.114 INFO [11644]: _SERVER found -- 21:28:44.114 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 21:28:44.114 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 21:28:44.114 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sb5jbmglu4suvuqe8020ubmo7stfd5f7 -- 21:28:44.114 INFO [11644]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:28:44.114 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:28:44.125 INFO [11644]: COREGRADE is stopping... -- 21:28:44.125 DEBUG [11644]: Closing database connection -- 21:28:44.125 SQL [11644]: pgsql_close() -- 21:29:11.366 INFO [11638]: COREGRADE is starting... -- 21:29:11.366 INFO [11638]: Version from config: 1.0 -- 21:29:11.366 DEBUG [11638]: Connecting to database... -- 21:29:11.366 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:11.367 SQL [11638]: pgsql_db_connect() -- 21:29:11.371 DEBUG [11638]: Database connection successful -- 21:29:11.371 INFO [11638]: _SERVER found -- 21:29:11.371 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 21:29:11.371 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:11.371 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sb5jbmglu4suvuqe8020ubmo7stfd5f7 -- 21:29:11.371 INFO [11638]: QUERY_STRING = /member/configure -- 21:29:11.371 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:11.406 INFO [11638]: COREGRADE is stopping... -- 21:29:11.406 DEBUG [11638]: Closing database connection -- 21:29:11.406 SQL [11638]: pgsql_close() -- 21:29:11.622 INFO [11638]: COREGRADE is starting... -- 21:29:11.622 INFO [11638]: Version from config: 1.0 -- 21:29:11.622 DEBUG [11638]: Connecting to database... -- 21:29:11.622 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:11.622 SQL [11638]: pgsql_db_connect() -- 21:29:11.626 DEBUG [11638]: Database connection successful -- 21:29:11.626 INFO [11638]: _SERVER found -- 21:29:11.626 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 21:29:11.626 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:11.626 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sb5jbmglu4suvuqe8020ubmo7stfd5f7 -- 21:29:11.626 INFO [11638]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:29:11.626 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:11.637 INFO [11638]: COREGRADE is stopping... -- 21:29:11.637 DEBUG [11638]: Closing database connection -- 21:29:11.637 SQL [11638]: pgsql_close() -- 21:29:11.660 INFO [11638]: COREGRADE is starting... -- 21:29:11.660 INFO [11638]: Version from config: 1.0 -- 21:29:11.660 DEBUG [11638]: Connecting to database... -- 21:29:11.660 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:11.660 SQL [11638]: pgsql_db_connect() -- 21:29:11.664 DEBUG [11638]: Database connection successful -- 21:29:11.664 INFO [11638]: _SERVER found -- 21:29:11.664 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 21:29:11.664 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:11.664 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sb5jbmglu4suvuqe8020ubmo7stfd5f7 -- 21:29:11.664 INFO [11638]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:29:11.664 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:11.675 INFO [11638]: COREGRADE is stopping... -- 21:29:11.675 DEBUG [11638]: Closing database connection -- 21:29:11.675 SQL [11638]: pgsql_close() -- 21:29:19.231 INFO [11639]: COREGRADE is starting... -- 21:29:19.231 INFO [11639]: Version from config: 1.0 -- 21:29:19.231 DEBUG [11639]: Connecting to database... -- 21:29:19.231 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:19.231 SQL [11639]: pgsql_db_connect() -- 21:29:19.235 DEBUG [11639]: Database connection successful -- 21:29:19.235 INFO [11639]: _SERVER found -- 21:29:19.235 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 21:29:19.235 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:19.235 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2jmsauvm97jnplp6htktea303hjh3h2r -- 21:29:19.235 INFO [11639]: QUERY_STRING = /member -- 21:29:19.235 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:19.275 INFO [11639]: COREGRADE is stopping... -- 21:29:19.275 DEBUG [11639]: Closing database connection -- 21:29:19.275 SQL [11639]: pgsql_close() -- 21:29:19.747 INFO [11639]: COREGRADE is starting... -- 21:29:19.747 INFO [11639]: Version from config: 1.0 -- 21:29:19.747 DEBUG [11639]: Connecting to database... -- 21:29:19.747 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:19.747 SQL [11639]: pgsql_db_connect() -- 21:29:19.751 DEBUG [11639]: Database connection successful -- 21:29:19.751 INFO [11639]: _SERVER found -- 21:29:19.751 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 21:29:19.751 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:19.751 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:19.751 INFO [11639]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:29:19.751 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:19.764 INFO [11639]: COREGRADE is stopping... -- 21:29:19.764 DEBUG [11639]: Closing database connection -- 21:29:19.764 SQL [11639]: pgsql_close() -- 21:29:19.774 INFO [11636]: COREGRADE is starting... -- 21:29:19.774 INFO [11636]: Version from config: 1.0 -- 21:29:19.774 DEBUG [11636]: Connecting to database... -- 21:29:19.774 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:19.774 SQL [11636]: pgsql_db_connect() -- 21:29:19.778 DEBUG [11636]: Database connection successful -- 21:29:19.778 INFO [11636]: _SERVER found -- 21:29:19.778 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 21:29:19.778 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:19.778 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:19.778 INFO [11636]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:29:19.778 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:19.789 INFO [11636]: COREGRADE is stopping... -- 21:29:19.789 DEBUG [11636]: Closing database connection -- 21:29:19.789 SQL [11636]: pgsql_close() -- 21:29:21.722 INFO [11636]: COREGRADE is starting... -- 21:29:21.722 INFO [11636]: Version from config: 1.0 -- 21:29:21.722 DEBUG [11636]: Connecting to database... -- 21:29:21.722 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:21.722 SQL [11636]: pgsql_db_connect() -- 21:29:21.726 DEBUG [11636]: Database connection successful -- 21:29:21.726 INFO [11636]: _SERVER found -- 21:29:21.726 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 21:29:21.726 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:21.726 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:21.726 INFO [11636]: QUERY_STRING = /member/page -- 21:29:21.726 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:21.762 INFO [11636]: COREGRADE is stopping... -- 21:29:21.762 DEBUG [11636]: Closing database connection -- 21:29:21.762 SQL [11636]: pgsql_close() -- 21:29:22.287 INFO [11636]: COREGRADE is starting... -- 21:29:22.288 INFO [11636]: Version from config: 1.0 -- 21:29:22.288 DEBUG [11636]: Connecting to database... -- 21:29:22.288 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:22.288 SQL [11636]: pgsql_db_connect() -- 21:29:22.292 DEBUG [11636]: Database connection successful -- 21:29:22.292 INFO [11636]: _SERVER found -- 21:29:22.292 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 21:29:22.292 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:22.292 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:22.292 INFO [11636]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:29:22.292 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:22.303 INFO [11636]: COREGRADE is stopping... -- 21:29:22.303 DEBUG [11636]: Closing database connection -- 21:29:22.303 SQL [11636]: pgsql_close() -- 21:29:22.308 INFO [11639]: COREGRADE is starting... -- 21:29:22.308 INFO [11639]: Version from config: 1.0 -- 21:29:22.308 DEBUG [11639]: Connecting to database... -- 21:29:22.308 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:22.308 SQL [11639]: pgsql_db_connect() -- 21:29:22.312 DEBUG [11639]: Database connection successful -- 21:29:22.312 INFO [11639]: _SERVER found -- 21:29:22.312 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 21:29:22.312 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:22.312 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:22.312 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:29:22.312 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:22.325 INFO [11639]: COREGRADE is stopping... -- 21:29:22.325 DEBUG [11639]: Closing database connection -- 21:29:22.325 SQL [11639]: pgsql_close() -- 21:29:25.955 INFO [11639]: COREGRADE is starting... -- 21:29:25.955 INFO [11639]: Version from config: 1.0 -- 21:29:25.955 DEBUG [11639]: Connecting to database... -- 21:29:25.955 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:25.955 SQL [11639]: pgsql_db_connect() -- 21:29:25.960 DEBUG [11639]: Database connection successful -- 21:29:25.960 INFO [11639]: _SERVER found -- 21:29:25.960 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 21:29:25.960 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:25.960 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:25.960 INFO [11639]: QUERY_STRING = /member/page -- 21:29:25.960 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:25.999 INFO [11639]: COREGRADE is stopping... -- 21:29:25.999 DEBUG [11639]: Closing database connection -- 21:29:25.999 SQL [11639]: pgsql_close() -- 21:29:26.619 INFO [11639]: COREGRADE is starting... -- 21:29:26.619 INFO [11639]: Version from config: 1.0 -- 21:29:26.619 DEBUG [11639]: Connecting to database... -- 21:29:26.619 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:26.619 SQL [11639]: pgsql_db_connect() -- 21:29:26.623 DEBUG [11639]: Database connection successful -- 21:29:26.623 INFO [11639]: _SERVER found -- 21:29:26.623 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 21:29:26.623 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:26.623 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:26.623 INFO [11639]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:29:26.623 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:26.636 INFO [11639]: COREGRADE is stopping... -- 21:29:26.636 DEBUG [11639]: Closing database connection -- 21:29:26.636 SQL [11639]: pgsql_close() -- 21:29:26.654 INFO [11639]: COREGRADE is starting... -- 21:29:26.654 INFO [11639]: Version from config: 1.0 -- 21:29:26.654 DEBUG [11639]: Connecting to database... -- 21:29:26.654 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:26.654 SQL [11639]: pgsql_db_connect() -- 21:29:26.658 DEBUG [11639]: Database connection successful -- 21:29:26.658 INFO [11639]: _SERVER found -- 21:29:26.658 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 21:29:26.658 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:26.658 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:26.658 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:29:26.658 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:26.670 INFO [11639]: COREGRADE is stopping... -- 21:29:26.670 DEBUG [11639]: Closing database connection -- 21:29:26.670 SQL [11639]: pgsql_close() -- 21:29:29.057 INFO [11639]: COREGRADE is starting... -- 21:29:29.058 INFO [11639]: Version from config: 1.0 -- 21:29:29.058 DEBUG [11639]: Connecting to database... -- 21:29:29.058 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:29.058 SQL [11639]: pgsql_db_connect() -- 21:29:29.062 DEBUG [11639]: Database connection successful -- 21:29:29.062 INFO [11639]: _SERVER found -- 21:29:29.062 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 21:29:29.062 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:29.062 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:29.062 INFO [11639]: QUERY_STRING = /member -- 21:29:29.062 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:29.100 INFO [11639]: COREGRADE is stopping... -- 21:29:29.100 DEBUG [11639]: Closing database connection -- 21:29:29.100 SQL [11639]: pgsql_close() -- 21:29:29.467 INFO [11639]: COREGRADE is starting... -- 21:29:29.468 INFO [11639]: Version from config: 1.0 -- 21:29:29.468 DEBUG [11639]: Connecting to database... -- 21:29:29.468 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:29.468 SQL [11639]: pgsql_db_connect() -- 21:29:29.472 DEBUG [11639]: Database connection successful -- 21:29:29.472 INFO [11639]: _SERVER found -- 21:29:29.472 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 21:29:29.472 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:29.472 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:29.472 INFO [11639]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:29:29.472 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:29.484 INFO [11639]: COREGRADE is stopping... -- 21:29:29.484 DEBUG [11639]: Closing database connection -- 21:29:29.484 SQL [11639]: pgsql_close() -- 21:29:29.502 INFO [11639]: COREGRADE is starting... -- 21:29:29.502 INFO [11639]: Version from config: 1.0 -- 21:29:29.502 DEBUG [11639]: Connecting to database... -- 21:29:29.502 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:29.502 SQL [11639]: pgsql_db_connect() -- 21:29:29.506 DEBUG [11639]: Database connection successful -- 21:29:29.506 INFO [11639]: _SERVER found -- 21:29:29.506 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 21:29:29.506 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:29.506 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:29.506 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:29:29.506 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:29.518 INFO [11639]: COREGRADE is stopping... -- 21:29:29.518 DEBUG [11639]: Closing database connection -- 21:29:29.518 SQL [11639]: pgsql_close() -- 21:29:30.430 INFO [11639]: COREGRADE is starting... -- 21:29:30.430 INFO [11639]: Version from config: 1.0 -- 21:29:30.430 DEBUG [11639]: Connecting to database... -- 21:29:30.430 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:30.430 SQL [11639]: pgsql_db_connect() -- 21:29:30.434 DEBUG [11639]: Database connection successful -- 21:29:30.434 INFO [11639]: _SERVER found -- 21:29:30.434 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 21:29:30.434 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:30.434 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:30.434 INFO [11639]: QUERY_STRING = /member/page -- 21:29:30.434 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:30.474 INFO [11639]: COREGRADE is stopping... -- 21:29:30.474 DEBUG [11639]: Closing database connection -- 21:29:30.474 SQL [11639]: pgsql_close() -- 21:29:30.748 INFO [11639]: COREGRADE is starting... -- 21:29:30.749 INFO [11639]: Version from config: 1.0 -- 21:29:30.749 DEBUG [11639]: Connecting to database... -- 21:29:30.749 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:30.749 SQL [11639]: pgsql_db_connect() -- 21:29:30.761 INFO [11650]: COREGRADE is starting... -- 21:29:30.761 INFO [11650]: Version from config: 1.0 -- 21:29:30.761 DEBUG [11650]: Connecting to database... -- 21:29:30.761 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:30.761 SQL [11650]: pgsql_db_connect() -- 21:29:30.753 DEBUG [11639]: Database connection successful -- 21:29:30.753 INFO [11639]: _SERVER found -- 21:29:30.753 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 21:29:30.753 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:30.753 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:30.753 INFO [11639]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:29:30.753 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:30.765 INFO [11639]: COREGRADE is stopping... -- 21:29:30.765 DEBUG [11639]: Closing database connection -- 21:29:30.765 SQL [11639]: pgsql_close() -- 21:29:30.765 DEBUG [11650]: Database connection successful -- 21:29:30.765 INFO [11650]: _SERVER found -- 21:29:30.765 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 21:29:30.765 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:30.765 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:30.765 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:29:30.765 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:30.777 INFO [11650]: COREGRADE is stopping... -- 21:29:30.777 DEBUG [11650]: Closing database connection -- 21:29:30.777 SQL [11650]: pgsql_close() -- 21:29:34.397 INFO [11650]: COREGRADE is starting... -- 21:29:34.397 INFO [11650]: Version from config: 1.0 -- 21:29:34.397 DEBUG [11650]: Connecting to database... -- 21:29:34.397 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:34.397 SQL [11650]: pgsql_db_connect() -- 21:29:34.401 DEBUG [11650]: Database connection successful -- 21:29:34.401 INFO [11650]: _SERVER found -- 21:29:34.401 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 21:29:34.401 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:34.401 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:34.401 INFO [11650]: QUERY_STRING = /member -- 21:29:34.401 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:34.439 INFO [11650]: COREGRADE is stopping... -- 21:29:34.439 DEBUG [11650]: Closing database connection -- 21:29:34.439 SQL [11650]: pgsql_close() -- 21:29:34.713 INFO [11650]: COREGRADE is starting... -- 21:29:34.713 INFO [11650]: Version from config: 1.0 -- 21:29:34.713 DEBUG [11650]: Connecting to database... -- 21:29:34.713 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:34.713 SQL [11650]: pgsql_db_connect() -- 21:29:34.723 INFO [11639]: COREGRADE is starting... -- 21:29:34.724 INFO [11639]: Version from config: 1.0 -- 21:29:34.724 DEBUG [11639]: Connecting to database... -- 21:29:34.724 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:34.724 SQL [11639]: pgsql_db_connect() -- 21:29:34.718 DEBUG [11650]: Database connection successful -- 21:29:34.718 INFO [11650]: _SERVER found -- 21:29:34.718 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 21:29:34.718 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:34.718 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:34.718 INFO [11650]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:29:34.718 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:34.729 INFO [11650]: COREGRADE is stopping... -- 21:29:34.729 DEBUG [11650]: Closing database connection -- 21:29:34.729 SQL [11650]: pgsql_close() -- 21:29:34.728 DEBUG [11639]: Database connection successful -- 21:29:34.728 INFO [11639]: _SERVER found -- 21:29:34.728 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 21:29:34.728 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:34.728 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:34.728 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:29:34.728 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:34.740 INFO [11639]: COREGRADE is stopping... -- 21:29:34.740 DEBUG [11639]: Closing database connection -- 21:29:34.740 SQL [11639]: pgsql_close() -- 21:29:38.551 INFO [11639]: COREGRADE is starting... -- 21:29:38.552 INFO [11639]: Version from config: 1.0 -- 21:29:38.552 DEBUG [11639]: Connecting to database... -- 21:29:38.552 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:38.552 SQL [11639]: pgsql_db_connect() -- 21:29:38.556 DEBUG [11639]: Database connection successful -- 21:29:38.556 INFO [11639]: _SERVER found -- 21:29:38.556 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 21:29:38.556 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:38.556 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:38.556 INFO [11639]: QUERY_STRING = /member -- 21:29:38.556 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:38.594 INFO [11639]: COREGRADE is stopping... -- 21:29:38.594 DEBUG [11639]: Closing database connection -- 21:29:38.594 SQL [11639]: pgsql_close() -- 21:29:38.873 INFO [11639]: COREGRADE is starting... -- 21:29:38.873 INFO [11639]: Version from config: 1.0 -- 21:29:38.873 DEBUG [11639]: Connecting to database... -- 21:29:38.873 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:38.873 SQL [11639]: pgsql_db_connect() -- 21:29:38.886 INFO [11650]: COREGRADE is starting... -- 21:29:38.886 INFO [11650]: Version from config: 1.0 -- 21:29:38.886 DEBUG [11650]: Connecting to database... -- 21:29:38.886 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:38.886 SQL [11650]: pgsql_db_connect() -- 21:29:38.877 DEBUG [11639]: Database connection successful -- 21:29:38.877 INFO [11639]: _SERVER found -- 21:29:38.877 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 21:29:38.877 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:38.877 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:38.877 INFO [11639]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:29:38.877 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:38.890 INFO [11639]: COREGRADE is stopping... -- 21:29:38.890 DEBUG [11639]: Closing database connection -- 21:29:38.890 SQL [11639]: pgsql_close() -- 21:29:38.890 DEBUG [11650]: Database connection successful -- 21:29:38.890 INFO [11650]: _SERVER found -- 21:29:38.890 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 21:29:38.890 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:38.890 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:38.890 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:29:38.890 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:38.901 INFO [11650]: COREGRADE is stopping... -- 21:29:38.901 DEBUG [11650]: Closing database connection -- 21:29:38.901 SQL [11650]: pgsql_close() -- 21:29:43.895 INFO [11650]: COREGRADE is starting... -- 21:29:43.896 INFO [11650]: Version from config: 1.0 -- 21:29:43.896 DEBUG [11650]: Connecting to database... -- 21:29:43.896 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:43.896 SQL [11650]: pgsql_db_connect() -- 21:29:43.900 DEBUG [11650]: Database connection successful -- 21:29:43.900 INFO [11650]: _SERVER found -- 21:29:43.900 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 21:29:43.900 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:43.900 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:43.900 INFO [11650]: QUERY_STRING = /member -- 21:29:43.900 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:43.937 INFO [11650]: COREGRADE is stopping... -- 21:29:43.937 DEBUG [11650]: Closing database connection -- 21:29:43.937 SQL [11650]: pgsql_close() -- 21:29:44.279 INFO [11650]: COREGRADE is starting... -- 21:29:44.279 INFO [11650]: Version from config: 1.0 -- 21:29:44.279 DEBUG [11650]: Connecting to database... -- 21:29:44.279 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:44.279 SQL [11650]: pgsql_db_connect() -- 21:29:44.283 DEBUG [11650]: Database connection successful -- 21:29:44.283 INFO [11650]: _SERVER found -- 21:29:44.283 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 21:29:44.283 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:44.283 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:44.283 INFO [11650]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:29:44.283 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:44.294 INFO [11650]: COREGRADE is stopping... -- 21:29:44.294 DEBUG [11650]: Closing database connection -- 21:29:44.294 SQL [11650]: pgsql_close() -- 21:29:44.309 INFO [11650]: COREGRADE is starting... -- 21:29:44.309 INFO [11650]: Version from config: 1.0 -- 21:29:44.309 DEBUG [11650]: Connecting to database... -- 21:29:44.309 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:44.309 SQL [11650]: pgsql_db_connect() -- 21:29:44.313 DEBUG [11650]: Database connection successful -- 21:29:44.313 INFO [11650]: _SERVER found -- 21:29:44.313 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 21:29:44.313 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:44.313 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:44.313 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:29:44.313 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:44.324 INFO [11650]: COREGRADE is stopping... -- 21:29:44.324 DEBUG [11650]: Closing database connection -- 21:29:44.324 SQL [11650]: pgsql_close() -- 21:29:46.025 INFO [11650]: COREGRADE is starting... -- 21:29:46.026 INFO [11650]: Version from config: 1.0 -- 21:29:46.026 DEBUG [11650]: Connecting to database... -- 21:29:46.026 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:46.026 SQL [11650]: pgsql_db_connect() -- 21:29:46.030 DEBUG [11650]: Database connection successful -- 21:29:46.030 INFO [11650]: _SERVER found -- 21:29:46.030 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 21:29:46.030 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:46.030 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:46.030 INFO [11650]: QUERY_STRING = /member/page -- 21:29:46.030 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:46.068 INFO [11650]: COREGRADE is stopping... -- 21:29:46.068 DEBUG [11650]: Closing database connection -- 21:29:46.068 SQL [11650]: pgsql_close() -- 21:29:46.337 INFO [11650]: COREGRADE is starting... -- 21:29:46.337 INFO [11650]: Version from config: 1.0 -- 21:29:46.337 DEBUG [11650]: Connecting to database... -- 21:29:46.337 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:46.337 SQL [11650]: pgsql_db_connect() -- 21:29:46.352 INFO [11652]: COREGRADE is starting... -- 21:29:46.341 DEBUG [11650]: Database connection successful -- 21:29:46.341 INFO [11650]: _SERVER found -- 21:29:46.341 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 21:29:46.341 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:46.341 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:46.341 INFO [11650]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:29:46.341 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:46.353 INFO [11650]: COREGRADE is stopping... -- 21:29:46.353 DEBUG [11650]: Closing database connection -- 21:29:46.353 SQL [11650]: pgsql_close() -- 21:29:46.353 INFO [11652]: Version from config: 1.0 -- 21:29:46.353 DEBUG [11652]: Connecting to database... -- 21:29:46.353 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:46.353 SQL [11652]: pgsql_db_connect() -- 21:29:46.357 DEBUG [11652]: Database connection successful -- 21:29:46.357 INFO [11652]: _SERVER found -- 21:29:46.357 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 21:29:46.357 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:46.357 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:46.357 INFO [11652]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:29:46.357 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:46.368 INFO [11652]: COREGRADE is stopping... -- 21:29:46.368 DEBUG [11652]: Closing database connection -- 21:29:46.368 SQL [11652]: pgsql_close() -- 21:29:47.516 INFO [11652]: COREGRADE is starting... -- 21:29:47.517 INFO [11652]: Version from config: 1.0 -- 21:29:47.517 DEBUG [11652]: Connecting to database... -- 21:29:47.517 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:47.517 SQL [11652]: pgsql_db_connect() -- 21:29:47.521 DEBUG [11652]: Database connection successful -- 21:29:47.521 INFO [11652]: _SERVER found -- 21:29:47.521 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 21:29:47.521 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:47.521 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:47.521 INFO [11652]: QUERY_STRING = /member/mycalendar -- 21:29:47.521 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:47.553 INFO [11652]: COREGRADE is stopping... -- 21:29:47.553 DEBUG [11652]: Closing database connection -- 21:29:47.553 SQL [11652]: pgsql_close() -- 21:29:47.856 INFO [11652]: COREGRADE is starting... -- 21:29:47.856 INFO [11652]: Version from config: 1.0 -- 21:29:47.856 DEBUG [11652]: Connecting to database... -- 21:29:47.856 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:47.857 SQL [11652]: pgsql_db_connect() -- 21:29:47.861 DEBUG [11652]: Database connection successful -- 21:29:47.861 INFO [11652]: _SERVER found -- 21:29:47.861 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 21:29:47.861 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:47.861 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:47.861 INFO [11652]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:29:47.861 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:47.872 INFO [11652]: COREGRADE is stopping... -- 21:29:47.872 DEBUG [11652]: Closing database connection -- 21:29:47.872 SQL [11652]: pgsql_close() -- 21:29:48.026 INFO [11652]: COREGRADE is starting... -- 21:29:48.026 INFO [11652]: Version from config: 1.0 -- 21:29:48.026 DEBUG [11652]: Connecting to database... -- 21:29:48.026 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:48.026 SQL [11652]: pgsql_db_connect() -- 21:29:48.030 DEBUG [11652]: Database connection successful -- 21:29:48.030 INFO [11652]: _SERVER found -- 21:29:48.030 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 21:29:48.030 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:48.030 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:48.030 INFO [11652]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:29:48.030 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:48.041 INFO [11652]: COREGRADE is stopping... -- 21:29:48.041 DEBUG [11652]: Closing database connection -- 21:29:48.041 SQL [11652]: pgsql_close() -- 21:29:50.225 INFO [11652]: COREGRADE is starting... -- 21:29:50.225 INFO [11652]: Version from config: 1.0 -- 21:29:50.225 DEBUG [11652]: Connecting to database... -- 21:29:50.225 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:50.225 SQL [11652]: pgsql_db_connect() -- 21:29:50.229 DEBUG [11652]: Database connection successful -- 21:29:50.229 INFO [11652]: _SERVER found -- 21:29:50.229 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 21:29:50.229 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:50.229 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:50.229 INFO [11652]: QUERY_STRING = /member/mycalendar -- 21:29:50.229 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:50.261 INFO [11652]: COREGRADE is stopping... -- 21:29:50.261 DEBUG [11652]: Closing database connection -- 21:29:50.261 SQL [11652]: pgsql_close() -- 21:29:50.724 INFO [11652]: COREGRADE is starting... -- 21:29:50.725 INFO [11652]: Version from config: 1.0 -- 21:29:50.725 DEBUG [11652]: Connecting to database... -- 21:29:50.725 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:50.725 SQL [11652]: pgsql_db_connect() -- 21:29:50.729 DEBUG [11652]: Database connection successful -- 21:29:50.729 INFO [11652]: _SERVER found -- 21:29:50.729 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 21:29:50.729 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:50.729 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:50.729 INFO [11652]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:29:50.729 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:50.740 INFO [11652]: COREGRADE is stopping... -- 21:29:50.740 DEBUG [11652]: Closing database connection -- 21:29:50.740 SQL [11652]: pgsql_close() -- 21:29:50.746 INFO [11652]: COREGRADE is starting... -- 21:29:50.746 INFO [11652]: Version from config: 1.0 -- 21:29:50.746 DEBUG [11652]: Connecting to database... -- 21:29:50.746 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:50.746 SQL [11652]: pgsql_db_connect() -- 21:29:50.750 DEBUG [11652]: Database connection successful -- 21:29:50.750 INFO [11652]: _SERVER found -- 21:29:50.750 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 21:29:50.750 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:50.750 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:50.750 INFO [11652]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:29:50.750 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:50.761 INFO [11652]: COREGRADE is stopping... -- 21:29:50.761 DEBUG [11652]: Closing database connection -- 21:29:50.761 SQL [11652]: pgsql_close() -- 21:29:53.888 INFO [11652]: COREGRADE is starting... -- 21:29:53.888 INFO [11652]: Version from config: 1.0 -- 21:29:53.888 DEBUG [11652]: Connecting to database... -- 21:29:53.888 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:53.888 SQL [11652]: pgsql_db_connect() -- 21:29:53.892 DEBUG [11652]: Database connection successful -- 21:29:53.892 INFO [11652]: _SERVER found -- 21:29:53.892 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 21:29:53.892 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:53.892 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:53.892 INFO [11652]: QUERY_STRING = /member/mycalendar -- 21:29:53.892 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:53.924 INFO [11652]: COREGRADE is stopping... -- 21:29:53.924 DEBUG [11652]: Closing database connection -- 21:29:53.924 SQL [11652]: pgsql_close() -- 21:29:54.252 INFO [11652]: COREGRADE is starting... -- 21:29:54.252 INFO [11652]: Version from config: 1.0 -- 21:29:54.252 DEBUG [11652]: Connecting to database... -- 21:29:54.252 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:54.252 SQL [11652]: pgsql_db_connect() -- 21:29:54.266 INFO [12761]: COREGRADE is starting... -- 21:29:54.267 INFO [12761]: Version from config: 1.0 -- 21:29:54.267 DEBUG [12761]: Connecting to database... -- 21:29:54.267 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:54.267 SQL [12761]: pgsql_db_connect() -- 21:29:54.256 DEBUG [11652]: Database connection successful -- 21:29:54.256 INFO [11652]: _SERVER found -- 21:29:54.256 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 21:29:54.256 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:54.256 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:54.256 INFO [11652]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:29:54.256 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:54.267 INFO [11652]: COREGRADE is stopping... -- 21:29:54.267 DEBUG [11652]: Closing database connection -- 21:29:54.267 SQL [11652]: pgsql_close() -- 21:29:54.271 DEBUG [12761]: Database connection successful -- 21:29:54.271 INFO [12761]: _SERVER found -- 21:29:54.271 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 21:29:54.271 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:54.271 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:54.271 INFO [12761]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:29:54.271 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:54.282 INFO [12761]: COREGRADE is stopping... -- 21:29:54.282 DEBUG [12761]: Closing database connection -- 21:29:54.282 SQL [12761]: pgsql_close() -- 21:29:54.890 INFO [12761]: COREGRADE is starting... -- 21:29:54.890 INFO [12761]: Version from config: 1.0 -- 21:29:54.890 DEBUG [12761]: Connecting to database... -- 21:29:54.890 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:54.890 SQL [12761]: pgsql_db_connect() -- 21:29:54.894 DEBUG [12761]: Database connection successful -- 21:29:54.894 INFO [12761]: _SERVER found -- 21:29:54.894 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 21:29:54.894 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:54.894 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:54.894 INFO [12761]: QUERY_STRING = /member -- 21:29:54.894 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:54.930 INFO [12761]: COREGRADE is stopping... -- 21:29:54.930 DEBUG [12761]: Closing database connection -- 21:29:54.930 SQL [12761]: pgsql_close() -- 21:29:55.290 INFO [12761]: COREGRADE is starting... -- 21:29:55.290 INFO [12761]: Version from config: 1.0 -- 21:29:55.290 DEBUG [12761]: Connecting to database... -- 21:29:55.290 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:55.290 SQL [12761]: pgsql_db_connect() -- 21:29:55.302 INFO [11652]: COREGRADE is starting... -- 21:29:55.302 INFO [11652]: Version from config: 1.0 -- 21:29:55.302 DEBUG [11652]: Connecting to database... -- 21:29:55.302 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:55.302 SQL [11652]: pgsql_db_connect() -- 21:29:55.294 DEBUG [12761]: Database connection successful -- 21:29:55.294 INFO [12761]: _SERVER found -- 21:29:55.294 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 21:29:55.294 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:55.294 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:55.294 INFO [12761]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:29:55.294 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:55.305 INFO [12761]: COREGRADE is stopping... -- 21:29:55.305 DEBUG [12761]: Closing database connection -- 21:29:55.305 SQL [12761]: pgsql_close() -- 21:29:55.306 DEBUG [11652]: Database connection successful -- 21:29:55.306 INFO [11652]: _SERVER found -- 21:29:55.306 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 21:29:55.306 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:55.306 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:55.306 INFO [11652]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:29:55.306 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:55.317 INFO [11652]: COREGRADE is stopping... -- 21:29:55.317 DEBUG [11652]: Closing database connection -- 21:29:55.317 SQL [11652]: pgsql_close() -- 21:29:56.979 INFO [11652]: COREGRADE is starting... -- 21:29:56.979 INFO [11652]: Version from config: 1.0 -- 21:29:56.979 DEBUG [11652]: Connecting to database... -- 21:29:56.979 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:56.979 SQL [11652]: pgsql_db_connect() -- 21:29:56.984 DEBUG [11652]: Database connection successful -- 21:29:56.984 INFO [11652]: _SERVER found -- 21:29:56.984 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 21:29:56.984 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:56.984 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:56.984 INFO [11652]: QUERY_STRING = /member/page -- 21:29:56.984 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:57.019 INFO [11652]: COREGRADE is stopping... -- 21:29:57.019 DEBUG [11652]: Closing database connection -- 21:29:57.019 SQL [11652]: pgsql_close() -- 21:29:57.341 INFO [11652]: COREGRADE is starting... -- 21:29:57.341 INFO [11652]: Version from config: 1.0 -- 21:29:57.341 DEBUG [11652]: Connecting to database... -- 21:29:57.341 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:57.341 SQL [11652]: pgsql_db_connect() -- 21:29:57.350 INFO [12761]: COREGRADE is starting... -- 21:29:57.350 INFO [12761]: Version from config: 1.0 -- 21:29:57.350 DEBUG [12761]: Connecting to database... -- 21:29:57.350 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:57.350 SQL [12761]: pgsql_db_connect() -- 21:29:57.345 DEBUG [11652]: Database connection successful -- 21:29:57.345 INFO [11652]: _SERVER found -- 21:29:57.345 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 21:29:57.345 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:57.345 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:57.345 INFO [11652]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:29:57.345 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:57.356 INFO [11652]: COREGRADE is stopping... -- 21:29:57.356 DEBUG [11652]: Closing database connection -- 21:29:57.356 SQL [11652]: pgsql_close() -- 21:29:57.354 DEBUG [12761]: Database connection successful -- 21:29:57.354 INFO [12761]: _SERVER found -- 21:29:57.354 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 21:29:57.354 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:57.354 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:29:57.354 INFO [12761]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:29:57.354 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:29:57.365 INFO [12761]: COREGRADE is stopping... -- 21:29:57.365 DEBUG [12761]: Closing database connection -- 21:29:57.365 SQL [12761]: pgsql_close() -- 21:30:03.865 INFO [11637]: COREGRADE is starting... -- 21:30:03.865 INFO [11637]: Version from config: 1.0 -- 21:30:03.865 DEBUG [11637]: Connecting to database... -- 21:30:03.865 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:30:03.865 SQL [11637]: pgsql_db_connect() -- 21:30:03.869 DEBUG [11637]: Database connection successful -- 21:30:03.869 INFO [11637]: _SERVER found -- 21:30:03.869 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 21:30:03.869 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 21:30:03.869 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:30:03.869 INFO [11637]: QUERY_STRING = /member/configure -- 21:30:03.869 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:30:03.904 INFO [11637]: COREGRADE is stopping... -- 21:30:03.904 DEBUG [11637]: Closing database connection -- 21:30:03.904 SQL [11637]: pgsql_close() -- 21:30:04.421 INFO [11637]: COREGRADE is starting... -- 21:30:04.421 INFO [11637]: Version from config: 1.0 -- 21:30:04.421 DEBUG [11637]: Connecting to database... -- 21:30:04.421 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:30:04.421 SQL [11637]: pgsql_db_connect() -- 21:30:04.425 DEBUG [11637]: Database connection successful -- 21:30:04.425 INFO [11637]: _SERVER found -- 21:30:04.425 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 21:30:04.425 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 21:30:04.425 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:30:04.425 INFO [11637]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:30:04.425 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:30:04.436 INFO [11637]: COREGRADE is stopping... -- 21:30:04.437 DEBUG [11637]: Closing database connection -- 21:30:04.437 SQL [11637]: pgsql_close() -- 21:30:04.445 INFO [11637]: COREGRADE is starting... -- 21:30:04.445 INFO [11637]: Version from config: 1.0 -- 21:30:04.445 DEBUG [11637]: Connecting to database... -- 21:30:04.445 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:30:04.445 SQL [11637]: pgsql_db_connect() -- 21:30:04.449 DEBUG [11637]: Database connection successful -- 21:30:04.449 INFO [11637]: _SERVER found -- 21:30:04.449 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 21:30:04.449 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 21:30:04.449 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:30:04.449 INFO [11637]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:30:04.449 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:30:04.460 INFO [11637]: COREGRADE is stopping... -- 21:30:04.460 DEBUG [11637]: Closing database connection -- 21:30:04.460 SQL [11637]: pgsql_close() -- 21:39:12.188 INFO [12763]: COREGRADE is starting... -- 21:39:12.188 INFO [12763]: Version from config: 1.0 -- 21:39:12.188 DEBUG [12763]: Connecting to database... -- 21:39:12.188 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:39:12.188 SQL [12763]: pgsql_db_connect() -- 21:39:12.192 DEBUG [12763]: Database connection successful -- 21:39:12.192 INFO [12763]: _SERVER found -- 21:39:12.192 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 21:39:12.193 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 21:39:12.193 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sb5jbmglu4suvuqe8020ubmo7stfd5f7 -- 21:39:12.193 INFO [12763]: QUERY_STRING = /member -- 21:39:12.193 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:39:12.231 INFO [12763]: COREGRADE is stopping... -- 21:39:12.231 DEBUG [12763]: Closing database connection -- 21:39:12.231 SQL [12763]: pgsql_close() -- 21:39:12.479 INFO [12763]: COREGRADE is starting... -- 21:39:12.480 INFO [12763]: Version from config: 1.0 -- 21:39:12.480 DEBUG [12763]: Connecting to database... -- 21:39:12.480 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:39:12.480 SQL [12763]: pgsql_db_connect() -- 21:39:12.484 DEBUG [12763]: Database connection successful -- 21:39:12.484 INFO [12763]: _SERVER found -- 21:39:12.484 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 21:39:12.484 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 21:39:12.484 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=i7hq6sbs6bln1jm1v7690c5tcla8pt0i -- 21:39:12.484 INFO [12763]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:39:12.484 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:39:12.495 INFO [12763]: COREGRADE is stopping... -- 21:39:12.495 DEBUG [12763]: Closing database connection -- 21:39:12.495 SQL [12763]: pgsql_close() -- 21:39:12.520 INFO [12763]: COREGRADE is starting... -- 21:39:12.520 INFO [12763]: Version from config: 1.0 -- 21:39:12.520 DEBUG [12763]: Connecting to database... -- 21:39:12.520 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:39:12.520 SQL [12763]: pgsql_db_connect() -- 21:39:12.524 DEBUG [12763]: Database connection successful -- 21:39:12.524 INFO [12763]: _SERVER found -- 21:39:12.524 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 21:39:12.524 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 21:39:12.524 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=i7hq6sbs6bln1jm1v7690c5tcla8pt0i -- 21:39:12.524 INFO [12763]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:39:12.524 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:39:12.536 INFO [12763]: COREGRADE is stopping... -- 21:39:12.536 DEBUG [12763]: Closing database connection -- 21:39:12.536 SQL [12763]: pgsql_close() -- 21:39:14.139 INFO [12763]: COREGRADE is starting... -- 21:39:14.139 INFO [12763]: Version from config: 1.0 -- 21:39:14.139 DEBUG [12763]: Connecting to database... -- 21:39:14.140 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:39:14.140 SQL [12763]: pgsql_db_connect() -- 21:39:14.144 DEBUG [12763]: Database connection successful -- 21:39:14.144 INFO [12763]: _SERVER found -- 21:39:14.144 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 21:39:14.144 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 21:39:14.144 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=i7hq6sbs6bln1jm1v7690c5tcla8pt0i -- 21:39:14.144 INFO [12763]: QUERY_STRING = /member/page -- 21:39:14.144 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:39:14.182 INFO [12763]: COREGRADE is stopping... -- 21:39:14.182 DEBUG [12763]: Closing database connection -- 21:39:14.182 SQL [12763]: pgsql_close() -- 21:39:14.367 INFO [12763]: COREGRADE is starting... -- 21:39:14.368 INFO [12763]: Version from config: 1.0 -- 21:39:14.368 DEBUG [12763]: Connecting to database... -- 21:39:14.368 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:39:14.368 SQL [12763]: pgsql_db_connect() -- 21:39:14.372 DEBUG [12763]: Database connection successful -- 21:39:14.372 INFO [12763]: _SERVER found -- 21:39:14.372 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 21:39:14.372 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 21:39:14.372 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=i7hq6sbs6bln1jm1v7690c5tcla8pt0i -- 21:39:14.372 INFO [12763]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:39:14.372 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:39:14.384 INFO [12763]: COREGRADE is stopping... -- 21:39:14.384 DEBUG [12763]: Closing database connection -- 21:39:14.384 SQL [12763]: pgsql_close() -- 21:39:14.523 INFO [12763]: COREGRADE is starting... -- 21:39:14.523 INFO [12763]: Version from config: 1.0 -- 21:39:14.523 DEBUG [12763]: Connecting to database... -- 21:39:14.524 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:39:14.524 SQL [12763]: pgsql_db_connect() -- 21:39:14.528 DEBUG [12763]: Database connection successful -- 21:39:14.528 INFO [12763]: _SERVER found -- 21:39:14.528 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 21:39:14.528 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 21:39:14.528 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=i7hq6sbs6bln1jm1v7690c5tcla8pt0i -- 21:39:14.528 INFO [12763]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:39:14.528 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:39:14.539 INFO [12763]: COREGRADE is stopping... -- 21:39:14.539 DEBUG [12763]: Closing database connection -- 21:39:14.539 SQL [12763]: pgsql_close() -- 21:50:05.556 INFO [12764]: COREGRADE is starting... -- 21:50:05.557 INFO [12764]: Version from config: 1.0 -- 21:50:05.557 DEBUG [12764]: Connecting to database... -- 21:50:05.557 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:50:05.557 SQL [12764]: pgsql_db_connect() -- 21:50:05.562 DEBUG [12764]: Database connection successful -- 21:50:05.562 INFO [12764]: _SERVER found -- 21:50:05.562 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 21:50:05.562 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 21:50:05.562 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=67cubcstgb16ckt21sf2a8img7dpghcv -- 21:50:05.562 INFO [12764]: QUERY_STRING = /auth -- 21:50:05.562 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:50:05.595 INFO [12764]: COREGRADE is stopping... -- 21:50:05.595 DEBUG [12764]: Closing database connection -- 21:50:05.595 SQL [12764]: pgsql_close() -- 21:50:06.016 INFO [12764]: COREGRADE is starting... -- 21:50:06.017 INFO [12764]: Version from config: 1.0 -- 21:50:06.017 DEBUG [12764]: Connecting to database... -- 21:50:06.017 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:50:06.017 SQL [12764]: pgsql_db_connect() -- 21:50:06.025 INFO [11644]: COREGRADE is starting... -- 21:50:06.026 INFO [11644]: Version from config: 1.0 -- 21:50:06.026 DEBUG [11644]: Connecting to database... -- 21:50:06.026 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:50:06.026 SQL [11644]: pgsql_db_connect() -- 21:50:06.021 DEBUG [12764]: Database connection successful -- 21:50:06.021 INFO [12764]: _SERVER found -- 21:50:06.021 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 21:50:06.021 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 21:50:06.021 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=f5oassva7a6stcn1qtva1ii948kvbjll -- 21:50:06.021 INFO [12764]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:50:06.021 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:50:06.033 INFO [12764]: COREGRADE is stopping... -- 21:50:06.033 DEBUG [12764]: Closing database connection -- 21:50:06.033 SQL [12764]: pgsql_close() -- 21:50:06.030 DEBUG [11644]: Database connection successful -- 21:50:06.030 INFO [11644]: _SERVER found -- 21:50:06.030 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 21:50:06.030 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 21:50:06.030 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=f5oassva7a6stcn1qtva1ii948kvbjll -- 21:50:06.030 INFO [11644]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:50:06.030 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:50:06.041 INFO [11644]: COREGRADE is stopping... -- 21:50:06.041 DEBUG [11644]: Closing database connection -- 21:50:06.041 SQL [11644]: pgsql_close() -- 21:59:14.871 INFO [11638]: COREGRADE is starting... -- 21:59:14.871 INFO [11638]: Version from config: 1.0 -- 21:59:14.871 DEBUG [11638]: Connecting to database... -- 21:59:14.871 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:59:14.871 SQL [11638]: pgsql_db_connect() -- 21:59:14.876 DEBUG [11638]: Database connection successful -- 21:59:14.877 INFO [11638]: _SERVER found -- 21:59:14.877 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 21:59:14.877 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 21:59:14.877 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=i7hq6sbs6bln1jm1v7690c5tcla8pt0i -- 21:59:14.877 INFO [11638]: QUERY_STRING = /auth -- 21:59:14.877 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:59:14.911 INFO [11638]: COREGRADE is stopping... -- 21:59:14.911 DEBUG [11638]: Closing database connection -- 21:59:14.911 SQL [11638]: pgsql_close() -- 21:59:15.177 INFO [11638]: COREGRADE is starting... -- 21:59:15.177 INFO [11638]: Version from config: 1.0 -- 21:59:15.177 DEBUG [11638]: Connecting to database... -- 21:59:15.177 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:59:15.177 SQL [11638]: pgsql_db_connect() -- 21:59:15.182 DEBUG [11638]: Database connection successful -- 21:59:15.182 INFO [11638]: _SERVER found -- 21:59:15.182 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 21:59:15.182 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 21:59:15.182 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=k5t3s06bubff4l6vd2b2ocda063r9p0e -- 21:59:15.182 INFO [11638]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:59:15.182 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:59:15.193 INFO [11638]: COREGRADE is stopping... -- 21:59:15.193 DEBUG [11638]: Closing database connection -- 21:59:15.193 SQL [11638]: pgsql_close() -- 21:59:15.731 INFO [11638]: COREGRADE is starting... -- 21:59:15.731 INFO [11638]: Version from config: 1.0 -- 21:59:15.731 DEBUG [11638]: Connecting to database... -- 21:59:15.731 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:59:15.731 SQL [11638]: pgsql_db_connect() -- 21:59:15.736 DEBUG [11638]: Database connection successful -- 21:59:15.736 INFO [11638]: _SERVER found -- 21:59:15.736 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 21:59:15.736 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 21:59:15.736 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=k5t3s06bubff4l6vd2b2ocda063r9p0e -- 21:59:15.736 INFO [11638]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:59:15.736 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:59:15.747 INFO [11638]: COREGRADE is stopping... -- 21:59:15.747 DEBUG [11638]: Closing database connection -- 21:59:15.747 SQL [11638]: pgsql_close() -- 22:05:15.943 INFO [11636]: COREGRADE is starting... -- 22:05:15.944 INFO [11636]: Version from config: 1.0 -- 22:05:15.944 DEBUG [11636]: Connecting to database... -- 22:05:15.944 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:05:15.944 SQL [11636]: pgsql_db_connect() -- 22:05:15.981 INFO [11636]: COREGRADE is starting... -- 22:05:15.981 INFO [11636]: Version from config: 1.0 -- 22:05:15.981 DEBUG [11636]: Connecting to database... -- 22:05:15.981 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:05:15.981 SQL [11636]: pgsql_db_connect() -- 22:05:15.986 DEBUG [11636]: Database connection successful -- 22:05:15.986 INFO [11636]: _SERVER found -- 22:05:15.986 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 22:05:15.986 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 22:05:15.986 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=f5oassva7a6stcn1qtva1ii948kvbjll -- 22:05:15.986 INFO [11636]: QUERY_STRING = -- 22:05:15.986 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:05:15.986 INFO [11636]: SystemStatus()09-09-********~************ -- 22:05:15.986 INFO [11636]: long coregrade_api_main(CVars in, CVars &out) -- 22:05:15.986 INFO [11636]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 22:05:15.986 INFO [11636]: account calls -- 22:05:15.986 INFO [11636]: account_calls() -- 22:05:15.986 INFO [11636]: LoginCoreGradeAccount() -- 22:05:15.986 FLOG_MAX [11636]: REQ_STRING(username) -- 22:05:15.986 FLOG_MAX [11636]: REQ_STRING(password) -- 22:05:15.986 FLOG_MAX [11636]: REQ_STRING(sessionid) -- 22:05:15.986 FLOG_MAX [11636]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:05:15.986 SQL [11636]: pgsql_query() -- 22:05:15.986 SQL [11636]: About to run query: -- 22:05:15.986 SQL [11636]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 22:05:15.990 SQL [11636]: Found rows: 1 -- 22:05:15.990 FLOG_MAX [11636]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=15 -- 22:05:15.990 INFO [11636]: long SessionCheck(long uid, const char *sessionid, int create ) -- 22:05:15.990 SQL [11636]: pgsql_exec() -- 22:05:15.990 SQL [11636]: About to run query: -- 22:05:15.990 SQL [11636]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 22:05:15.991 SQL [11636]: PQcmdTuples: 1 -- 22:05:15.991 SQL [11636]: Affected rows: 1 -- 22:05:15.991 SQL [11636]: pgsql_exec() -- 22:05:15.991 SQL [11636]: About to run query: -- 22:05:15.991 SQL [11636]: DELETE FROM members_session WHERE member_id=7 -- 22:05:15.991 SQL [11636]: PQcmdTuples: 0 -- 22:05:15.991 SQL [11636]: Affected rows: 0 -- 22:05:15.991 SQL [11636]: pgsql_query() -- 22:05:15.991 SQL [11636]: About to run query: -- 22:05:15.991 SQL [11636]: SELECT * FROM members_session WHERE member_id=7 AND session<>'722AE5642EE930AB4A921A50AAB66999' -- 22:05:15.992 SQL [11636]: Found rows: 0 -- 22:05:15.992 SQL [11636]: Found rows: 0 -- 22:05:15.992 FLOG_MAX [11636]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:05:15.992 SQL [11636]: pgsql_query() -- 22:05:15.992 SQL [11636]: About to run query: -- 22:05:15.992 SQL [11636]: SELECT * FROM members_session WHERE member_id=7 AND session='722AE5642EE930AB4A921A50AAB66999' -- 22:05:15.993 SQL [11636]: Found rows: 0 -- 22:05:15.993 SQL [11636]: Found rows: 0 -- 22:05:15.993 FLOG_MAX [11636]: insert_db_record() -- 22:05:15.993 SQL [11636]: pgsql_exec() -- 22:05:15.993 SQL [11636]: About to run query: -- 22:05:15.993 SQL [11636]: INSERT INTO members_session (member_id,session) VALUES ('7','722AE5642EE930AB4A921A50AAB66999') -- 22:05:15.994 SQL [11636]: PQcmdTuples: 1 -- 22:05:15.994 SQL [11636]: Affected rows: 1 -- 22:05:15.994 FLOG_MAX [11636]: SELECT currval('members_session_id_seq') -- 22:05:15.994 SQL [11636]: pgsql_query() -- 22:05:15.994 SQL [11636]: About to run query: -- 22:05:15.994 SQL [11636]: SELECT currval('members_session_id_seq') -- 22:05:15.995 SQL [11636]: Found rows: 1 -- 22:05:15.995 INFO [11636]: CreateDefaultPage() -- 22:05:15.995 FLOG_MAX [11636]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:05:15.995 SQL [11636]: pgsql_query() -- 22:05:15.995 SQL [11636]: About to run query: -- 22:05:15.995 SQL [11636]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 22:05:15.995 SQL [11636]: Found rows: 1 -- 22:05:15.995 FLOG_MAX [11636]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 22:05:15.995 SQL [11636]: pgsql_query() -- 22:05:15.995 SQL [11636]: About to run query: -- 22:05:15.995 SQL [11636]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 22:05:15.996 SQL [11636]: Found rows: 1 -- 22:05:15.996 INFO [11636]: /CreateDefaultPage() -- 22:05:15.996 INFO [11636]: /LoginCoreGradeAccount() -- 22:05:15.996 INFO [11636]: RET: added=2020-02-05 09:42:12.816064 -- 22:05:15.996 INFO [11636]: RET: email=tokslaw@chiefsoft.com -- 22:05:15.996 INFO [11636]: RET: firstname=Tokunbo -- 22:05:15.996 INFO [11636]: RET: id=7 -- 22:05:15.996 INFO [11636]: RET: last_login= -- 22:05:15.996 INFO [11636]: RET: lastname=Lawal -- 22:05:15.996 INFO [11636]: RET: loc=192.168.1.13 -- 22:05:15.996 INFO [11636]: RET: member_id=7 -- 22:05:15.996 INFO [11636]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 22:05:15.996 INFO [11636]: RET: phone= -- 22:05:15.996 INFO [11636]: RET: pid= -- 22:05:15.996 INFO [11636]: RET: result=YES I GET TO BACK END -- 22:05:15.996 INFO [11636]: RET: sessionid=722AE5642EE930AB4A921A50AAB66999 -- 22:05:15.996 INFO [11636]: RET: status=1 -- 22:05:15.996 INFO [11636]: RET: stauts=OK -- 22:05:15.996 INFO [11636]: RET: username=tokslaw@chiefsoft.com -- 22:05:15.996 INFO [11636]: RET: verified= -- 22:05:15.997 INFO [11636]: COREGRADE is stopping... -- 22:05:15.997 DEBUG [11636]: Closing database connection -- 22:05:15.997 SQL [11636]: pgsql_close() -- 22:05:15.948 DEBUG [11636]: Database connection successful -- 22:05:15.948 INFO [11636]: _SERVER found -- 22:05:15.948 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 22:05:15.948 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 22:05:15.948 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=f5oassva7a6stcn1qtva1ii948kvbjll -- 22:05:15.948 INFO [11636]: QUERY_STRING = /auth -- 22:05:15.948 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:05:15.998 INFO [11636]: COREGRADE is stopping... -- 22:05:15.998 DEBUG [11636]: Closing database connection -- 22:05:15.998 SQL [11636]: pgsql_close() -- 22:05:16.069 INFO [11636]: COREGRADE is starting... -- 22:05:16.070 INFO [11636]: Version from config: 1.0 -- 22:05:16.070 DEBUG [11636]: Connecting to database... -- 22:05:16.070 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:05:16.070 SQL [11636]: pgsql_db_connect() -- 22:05:16.074 DEBUG [11636]: Database connection successful -- 22:05:16.074 INFO [11636]: _SERVER found -- 22:05:16.074 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 22:05:16.074 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 22:05:16.074 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=u3lbkjpbho7e2a2mblkbkr045s6jq48v -- 22:05:16.074 INFO [11636]: QUERY_STRING = /member/index -- 22:05:16.074 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:05:16.109 INFO [11636]: COREGRADE is stopping... -- 22:05:16.109 DEBUG [11636]: Closing database connection -- 22:05:16.109 SQL [11636]: pgsql_close() -- 22:05:16.737 INFO [11636]: COREGRADE is starting... -- 22:05:16.737 INFO [11636]: Version from config: 1.0 -- 22:05:16.737 DEBUG [11636]: Connecting to database... -- 22:05:16.737 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:05:16.737 SQL [11636]: pgsql_db_connect() -- 22:05:16.742 DEBUG [11636]: Database connection successful -- 22:05:16.742 INFO [11636]: _SERVER found -- 22:05:16.742 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 22:05:16.742 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 22:05:16.742 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=u3lbkjpbho7e2a2mblkbkr045s6jq48v -- 22:05:16.742 INFO [11636]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:05:16.742 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:05:16.753 INFO [11636]: COREGRADE is stopping... -- 22:05:16.753 DEBUG [11636]: Closing database connection -- 22:05:16.753 SQL [11636]: pgsql_close() -- 22:05:16.859 INFO [11636]: COREGRADE is starting... -- 22:05:16.859 INFO [11636]: Version from config: 1.0 -- 22:05:16.859 DEBUG [11636]: Connecting to database... -- 22:05:16.859 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:05:16.859 SQL [11636]: pgsql_db_connect() -- 22:05:16.863 DEBUG [11636]: Database connection successful -- 22:05:16.863 INFO [11636]: _SERVER found -- 22:05:16.863 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 22:05:16.863 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 22:05:16.863 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=u3lbkjpbho7e2a2mblkbkr045s6jq48v -- 22:05:16.863 INFO [11636]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:05:16.863 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:05:16.874 INFO [11636]: COREGRADE is stopping... -- 22:05:16.874 DEBUG [11636]: Closing database connection -- 22:05:16.874 SQL [11636]: pgsql_close() -- 22:08:08.744 INFO [11639]: COREGRADE is starting... -- 22:08:08.744 INFO [11639]: Version from config: 1.0 -- 22:08:08.744 DEBUG [11639]: Connecting to database... -- 22:08:08.744 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:08.744 SQL [11639]: pgsql_db_connect() -- 22:08:08.748 DEBUG [11639]: Database connection successful -- 22:08:08.748 INFO [11639]: _SERVER found -- 22:08:08.748 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 22:08:08.748 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:08.748 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=u3lbkjpbho7e2a2mblkbkr045s6jq48v -- 22:08:08.748 INFO [11639]: QUERY_STRING = /member/page -- 22:08:08.748 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:08:08.790 INFO [11639]: COREGRADE is stopping... -- 22:08:08.790 DEBUG [11639]: Closing database connection -- 22:08:08.790 SQL [11639]: pgsql_close() -- 22:08:09.317 INFO [11650]: COREGRADE is starting... -- 22:08:09.317 INFO [11650]: Version from config: 1.0 -- 22:08:09.317 DEBUG [11650]: Connecting to database... -- 22:08:09.317 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:09.317 SQL [11650]: pgsql_db_connect() -- 22:08:09.355 INFO [11650]: COREGRADE is starting... -- 22:08:09.355 INFO [11650]: Version from config: 1.0 -- 22:08:09.355 DEBUG [11650]: Connecting to database... -- 22:08:09.355 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:09.355 SQL [11650]: pgsql_db_connect() -- 22:08:09.360 DEBUG [11650]: Database connection successful -- 22:08:09.360 INFO [11650]: _SERVER found -- 22:08:09.360 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 22:08:09.360 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:09.360 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=k5t3s06bubff4l6vd2b2ocda063r9p0e -- 22:08:09.360 INFO [11650]: QUERY_STRING = -- 22:08:09.360 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:08:09.360 INFO [11650]: SystemStatus()09-09-********~************ -- 22:08:09.360 INFO [11650]: long coregrade_api_main(CVars in, CVars &out) -- 22:08:09.360 INFO [11650]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 22:08:09.360 INFO [11650]: account calls -- 22:08:09.360 INFO [11650]: account_calls() -- 22:08:09.360 INFO [11650]: LoginCoreGradeAccount() -- 22:08:09.360 FLOG_MAX [11650]: REQ_STRING(username) -- 22:08:09.360 FLOG_MAX [11650]: REQ_STRING(password) -- 22:08:09.360 FLOG_MAX [11650]: REQ_STRING(sessionid) -- 22:08:09.360 FLOG_MAX [11650]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:08:09.360 SQL [11650]: pgsql_query() -- 22:08:09.360 SQL [11650]: About to run query: -- 22:08:09.360 SQL [11650]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 22:08:09.363 SQL [11650]: Found rows: 1 -- 22:08:09.363 FLOG_MAX [11650]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 22:08:09.363 INFO [11650]: long SessionCheck(long uid, const char *sessionid, int create ) -- 22:08:09.363 SQL [11650]: pgsql_exec() -- 22:08:09.363 SQL [11650]: About to run query: -- 22:08:09.363 SQL [11650]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 22:08:09.365 SQL [11650]: PQcmdTuples: 1 -- 22:08:09.365 SQL [11650]: Affected rows: 1 -- 22:08:09.365 SQL [11650]: pgsql_exec() -- 22:08:09.365 SQL [11650]: About to run query: -- 22:08:09.365 SQL [11650]: DELETE FROM members_session WHERE member_id=5 -- 22:08:09.365 SQL [11650]: PQcmdTuples: 0 -- 22:08:09.365 SQL [11650]: Affected rows: 0 -- 22:08:09.365 SQL [11650]: pgsql_query() -- 22:08:09.365 SQL [11650]: About to run query: -- 22:08:09.365 SQL [11650]: SELECT * FROM members_session WHERE member_id=5 AND session<>'AFFCED5A5FEC5ABC9FBD04D2C022C621' -- 22:08:09.366 SQL [11650]: Found rows: 0 -- 22:08:09.366 SQL [11650]: Found rows: 0 -- 22:08:09.366 FLOG_MAX [11650]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:08:09.366 SQL [11650]: pgsql_query() -- 22:08:09.366 SQL [11650]: About to run query: -- 22:08:09.366 SQL [11650]: SELECT * FROM members_session WHERE member_id=5 AND session='AFFCED5A5FEC5ABC9FBD04D2C022C621' -- 22:08:09.366 SQL [11650]: Found rows: 0 -- 22:08:09.366 SQL [11650]: Found rows: 0 -- 22:08:09.366 FLOG_MAX [11650]: insert_db_record() -- 22:08:09.366 SQL [11650]: pgsql_exec() -- 22:08:09.366 SQL [11650]: About to run query: -- 22:08:09.366 SQL [11650]: INSERT INTO members_session (member_id,session) VALUES ('5','AFFCED5A5FEC5ABC9FBD04D2C022C621') -- 22:08:09.368 SQL [11650]: PQcmdTuples: 1 -- 22:08:09.368 SQL [11650]: Affected rows: 1 -- 22:08:09.368 FLOG_MAX [11650]: SELECT currval('members_session_id_seq') -- 22:08:09.368 SQL [11650]: pgsql_query() -- 22:08:09.368 SQL [11650]: About to run query: -- 22:08:09.368 SQL [11650]: SELECT currval('members_session_id_seq') -- 22:08:09.368 SQL [11650]: Found rows: 1 -- 22:08:09.368 INFO [11650]: CreateDefaultPage() -- 22:08:09.368 FLOG_MAX [11650]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:08:09.368 SQL [11650]: pgsql_query() -- 22:08:09.368 SQL [11650]: About to run query: -- 22:08:09.368 SQL [11650]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 22:08:09.369 SQL [11650]: Found rows: 1 -- 22:08:09.369 FLOG_MAX [11650]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 22:08:09.369 SQL [11650]: pgsql_query() -- 22:08:09.369 SQL [11650]: About to run query: -- 22:08:09.369 SQL [11650]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 22:08:09.369 SQL [11650]: Found rows: 1 -- 22:08:09.369 INFO [11650]: /CreateDefaultPage() -- 22:08:09.369 INFO [11650]: /LoginCoreGradeAccount() -- 22:08:09.369 INFO [11650]: RET: added=2020-02-05 06:47:23.982154 -- 22:08:09.369 INFO [11650]: RET: email=ameye+11@chiefsoft.com -- 22:08:09.369 INFO [11650]: RET: firstname=Olu -- 22:08:09.369 INFO [11650]: RET: id=5 -- 22:08:09.369 INFO [11650]: RET: last_login= -- 22:08:09.369 INFO [11650]: RET: lastname=Amey -- 22:08:09.369 INFO [11650]: RET: loc=192.168.1.13 -- 22:08:09.369 INFO [11650]: RET: member_id=5 -- 22:08:09.369 INFO [11650]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 22:08:09.369 INFO [11650]: RET: phone= -- 22:08:09.369 INFO [11650]: RET: pid= -- 22:08:09.369 INFO [11650]: RET: result=YES I GET TO BACK END -- 22:08:09.369 INFO [11650]: RET: sessionid=AFFCED5A5FEC5ABC9FBD04D2C022C621 -- 22:08:09.369 INFO [11650]: RET: status=1 -- 22:08:09.369 INFO [11650]: RET: stauts=OK -- 22:08:09.369 INFO [11650]: RET: username=ameye+11@chiefsoft.com -- 22:08:09.369 INFO [11650]: RET: verified= -- 22:08:09.371 INFO [11650]: COREGRADE is stopping... -- 22:08:09.371 DEBUG [11650]: Closing database connection -- 22:08:09.371 SQL [11650]: pgsql_close() -- 22:08:09.321 DEBUG [11650]: Database connection successful -- 22:08:09.321 INFO [11650]: _SERVER found -- 22:08:09.321 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 22:08:09.321 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:09.321 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=k5t3s06bubff4l6vd2b2ocda063r9p0e -- 22:08:09.321 INFO [11650]: QUERY_STRING = /auth -- 22:08:09.321 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:08:09.371 INFO [11650]: COREGRADE is stopping... -- 22:08:09.371 DEBUG [11650]: Closing database connection -- 22:08:09.371 SQL [11650]: pgsql_close() -- 22:08:09.393 INFO [11650]: COREGRADE is starting... -- 22:08:09.393 INFO [11650]: Version from config: 1.0 -- 22:08:09.393 DEBUG [11650]: Connecting to database... -- 22:08:09.393 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:09.393 SQL [11650]: pgsql_db_connect() -- 22:08:09.420 INFO [11639]: COREGRADE is starting... -- 22:08:09.421 INFO [11639]: Version from config: 1.0 -- 22:08:09.421 DEBUG [11639]: Connecting to database... -- 22:08:09.421 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:09.421 SQL [11639]: pgsql_db_connect() -- 22:08:09.397 DEBUG [11650]: Database connection successful -- 22:08:09.397 INFO [11650]: _SERVER found -- 22:08:09.397 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 22:08:09.397 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:09.397 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=uded1i44cqgffmap9cq7bs5021921qdd -- 22:08:09.397 INFO [11650]: QUERY_STRING = /member/index -- 22:08:09.397 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:08:09.432 INFO [11650]: COREGRADE is stopping... -- 22:08:09.432 DEBUG [11650]: Closing database connection -- 22:08:09.432 SQL [11650]: pgsql_close() -- 22:08:09.425 DEBUG [11639]: Database connection successful -- 22:08:09.425 INFO [11639]: _SERVER found -- 22:08:09.425 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 22:08:09.425 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:09.425 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=u3lbkjpbho7e2a2mblkbkr045s6jq48v -- 22:08:09.425 INFO [11639]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:08:09.425 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:08:09.437 INFO [11639]: COREGRADE is stopping... -- 22:08:09.437 DEBUG [11639]: Closing database connection -- 22:08:09.437 SQL [11639]: pgsql_close() -- 22:08:09.439 INFO [11650]: COREGRADE is starting... -- 22:08:09.439 INFO [11650]: Version from config: 1.0 -- 22:08:09.439 DEBUG [11650]: Connecting to database... -- 22:08:09.439 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:09.439 SQL [11650]: pgsql_db_connect() -- 22:08:09.443 DEBUG [11650]: Database connection successful -- 22:08:09.443 INFO [11650]: _SERVER found -- 22:08:09.443 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 22:08:09.443 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:09.443 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=u3lbkjpbho7e2a2mblkbkr045s6jq48v -- 22:08:09.443 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:08:09.443 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:08:09.454 INFO [11650]: COREGRADE is stopping... -- 22:08:09.454 DEBUG [11650]: Closing database connection -- 22:08:09.454 SQL [11650]: pgsql_close() -- 22:08:09.764 INFO [11650]: COREGRADE is starting... -- 22:08:09.764 INFO [11650]: Version from config: 1.0 -- 22:08:09.764 DEBUG [11650]: Connecting to database... -- 22:08:09.764 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:09.764 SQL [11650]: pgsql_db_connect() -- 22:08:09.768 DEBUG [11650]: Database connection successful -- 22:08:09.768 INFO [11650]: _SERVER found -- 22:08:09.768 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 22:08:09.768 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:09.768 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=uded1i44cqgffmap9cq7bs5021921qdd -- 22:08:09.768 INFO [11650]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:08:09.768 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:08:09.779 INFO [11650]: COREGRADE is stopping... -- 22:08:09.779 DEBUG [11650]: Closing database connection -- 22:08:09.779 SQL [11650]: pgsql_close() -- 22:08:09.826 INFO [11650]: COREGRADE is starting... -- 22:08:09.826 INFO [11650]: Version from config: 1.0 -- 22:08:09.826 DEBUG [11650]: Connecting to database... -- 22:08:09.826 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:09.826 SQL [11650]: pgsql_db_connect() -- 22:08:09.830 DEBUG [11650]: Database connection successful -- 22:08:09.830 INFO [11650]: _SERVER found -- 22:08:09.830 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 22:08:09.830 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:09.830 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=uded1i44cqgffmap9cq7bs5021921qdd -- 22:08:09.830 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:08:09.830 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:08:09.841 INFO [11650]: COREGRADE is stopping... -- 22:08:09.841 DEBUG [11650]: Closing database connection -- 22:08:09.841 SQL [11650]: pgsql_close() -- 22:08:11.483 INFO [11650]: COREGRADE is starting... -- 22:08:11.483 INFO [11650]: Version from config: 1.0 -- 22:08:11.483 DEBUG [11650]: Connecting to database... -- 22:08:11.483 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:11.483 SQL [11650]: pgsql_db_connect() -- 22:08:11.488 DEBUG [11650]: Database connection successful -- 22:08:11.488 INFO [11650]: _SERVER found -- 22:08:11.488 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 22:08:11.488 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:11.488 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=uded1i44cqgffmap9cq7bs5021921qdd -- 22:08:11.488 INFO [11650]: QUERY_STRING = /member/page -- 22:08:11.488 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:08:11.523 INFO [11650]: COREGRADE is stopping... -- 22:08:11.523 DEBUG [11650]: Closing database connection -- 22:08:11.523 SQL [11650]: pgsql_close() -- 22:08:11.781 INFO [11650]: COREGRADE is starting... -- 22:08:11.781 INFO [11650]: Version from config: 1.0 -- 22:08:11.781 DEBUG [11650]: Connecting to database... -- 22:08:11.781 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:11.781 SQL [11650]: pgsql_db_connect() -- 22:08:11.785 DEBUG [11650]: Database connection successful -- 22:08:11.785 INFO [11650]: _SERVER found -- 22:08:11.785 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 22:08:11.785 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:11.785 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=uded1i44cqgffmap9cq7bs5021921qdd -- 22:08:11.785 INFO [11650]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:08:11.785 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:08:11.796 INFO [11650]: COREGRADE is stopping... -- 22:08:11.797 DEBUG [11650]: Closing database connection -- 22:08:11.797 SQL [11650]: pgsql_close() -- 22:08:11.891 INFO [11650]: COREGRADE is starting... -- 22:08:11.891 INFO [11650]: Version from config: 1.0 -- 22:08:11.891 DEBUG [11650]: Connecting to database... -- 22:08:11.891 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:11.891 SQL [11650]: pgsql_db_connect() -- 22:08:11.895 DEBUG [11650]: Database connection successful -- 22:08:11.895 INFO [11650]: _SERVER found -- 22:08:11.895 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 22:08:11.895 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:11.895 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=uded1i44cqgffmap9cq7bs5021921qdd -- 22:08:11.895 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:08:11.895 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:08:11.906 INFO [11650]: COREGRADE is stopping... -- 22:08:11.906 DEBUG [11650]: Closing database connection -- 22:08:11.906 SQL [11650]: pgsql_close() -- 22:08:14.143 INFO [11650]: COREGRADE is starting... -- 22:08:14.143 INFO [11650]: Version from config: 1.0 -- 22:08:14.143 DEBUG [11650]: Connecting to database... -- 22:08:14.143 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:14.143 SQL [11650]: pgsql_db_connect() -- 22:08:14.147 DEBUG [11650]: Database connection successful -- 22:08:14.147 INFO [11650]: _SERVER found -- 22:08:14.147 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 22:08:14.147 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:14.147 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=u3lbkjpbho7e2a2mblkbkr045s6jq48v -- 22:08:14.147 INFO [11650]: QUERY_STRING = /member/page -- 22:08:14.147 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:08:14.183 INFO [11650]: COREGRADE is stopping... -- 22:08:14.183 DEBUG [11650]: Closing database connection -- 22:08:14.183 SQL [11650]: pgsql_close() -- 22:08:14.642 INFO [11650]: COREGRADE is starting... -- 22:08:14.642 INFO [11650]: Version from config: 1.0 -- 22:08:14.642 DEBUG [11650]: Connecting to database... -- 22:08:14.642 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:14.642 SQL [11650]: pgsql_db_connect() -- 22:08:14.646 DEBUG [11650]: Database connection successful -- 22:08:14.646 INFO [11650]: _SERVER found -- 22:08:14.646 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 22:08:14.646 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:14.646 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=u3lbkjpbho7e2a2mblkbkr045s6jq48v -- 22:08:14.646 INFO [11650]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:08:14.646 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:08:14.657 INFO [11650]: COREGRADE is stopping... -- 22:08:14.658 DEBUG [11650]: Closing database connection -- 22:08:14.658 SQL [11650]: pgsql_close() -- 22:08:14.681 INFO [11650]: COREGRADE is starting... -- 22:08:14.682 INFO [11650]: Version from config: 1.0 -- 22:08:14.682 DEBUG [11650]: Connecting to database... -- 22:08:14.682 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:14.682 SQL [11650]: pgsql_db_connect() -- 22:08:14.686 DEBUG [11650]: Database connection successful -- 22:08:14.686 INFO [11650]: _SERVER found -- 22:08:14.686 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 22:08:14.686 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:14.686 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=u3lbkjpbho7e2a2mblkbkr045s6jq48v -- 22:08:14.686 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:08:14.686 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:08:14.697 INFO [11650]: COREGRADE is stopping... -- 22:08:14.697 DEBUG [11650]: Closing database connection -- 22:08:14.697 SQL [11650]: pgsql_close() -- 22:08:15.893 INFO [11650]: COREGRADE is starting... -- 22:08:15.893 INFO [11650]: Version from config: 1.0 -- 22:08:15.893 DEBUG [11650]: Connecting to database... -- 22:08:15.893 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:15.893 SQL [11650]: pgsql_db_connect() -- 22:08:15.898 DEBUG [11650]: Database connection successful -- 22:08:15.898 INFO [11650]: _SERVER found -- 22:08:15.898 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 22:08:15.898 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:15.898 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=uded1i44cqgffmap9cq7bs5021921qdd -- 22:08:15.898 INFO [11650]: QUERY_STRING = /member -- 22:08:15.898 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:08:15.932 INFO [11650]: COREGRADE is stopping... -- 22:08:15.932 DEBUG [11650]: Closing database connection -- 22:08:15.932 SQL [11650]: pgsql_close() -- 22:08:16.161 INFO [11650]: COREGRADE is starting... -- 22:08:16.161 INFO [11650]: Version from config: 1.0 -- 22:08:16.161 DEBUG [11650]: Connecting to database... -- 22:08:16.161 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:16.161 SQL [11650]: pgsql_db_connect() -- 22:08:16.165 DEBUG [11650]: Database connection successful -- 22:08:16.165 INFO [11650]: _SERVER found -- 22:08:16.165 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 22:08:16.165 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:16.165 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=uded1i44cqgffmap9cq7bs5021921qdd -- 22:08:16.165 INFO [11650]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:08:16.165 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:08:16.177 INFO [11650]: COREGRADE is stopping... -- 22:08:16.177 DEBUG [11650]: Closing database connection -- 22:08:16.177 SQL [11650]: pgsql_close() -- 22:08:16.207 INFO [12761]: COREGRADE is starting... -- 22:08:16.207 INFO [12761]: Version from config: 1.0 -- 22:08:16.207 DEBUG [12761]: Connecting to database... -- 22:08:16.207 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:16.207 SQL [12761]: pgsql_db_connect() -- 22:08:16.211 DEBUG [12761]: Database connection successful -- 22:08:16.211 INFO [12761]: _SERVER found -- 22:08:16.211 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 22:08:16.211 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:16.211 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=uded1i44cqgffmap9cq7bs5021921qdd -- 22:08:16.211 INFO [12761]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:08:16.211 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:08:16.223 INFO [12761]: COREGRADE is stopping... -- 22:08:16.223 DEBUG [12761]: Closing database connection -- 22:08:16.223 SQL [12761]: pgsql_close() -- 22:08:17.499 INFO [12761]: COREGRADE is starting... -- 22:08:17.499 INFO [12761]: Version from config: 1.0 -- 22:08:17.499 DEBUG [12761]: Connecting to database... -- 22:08:17.499 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:17.499 SQL [12761]: pgsql_db_connect() -- 22:08:17.503 DEBUG [12761]: Database connection successful -- 22:08:17.503 INFO [12761]: _SERVER found -- 22:08:17.503 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 22:08:17.503 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:17.503 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=uded1i44cqgffmap9cq7bs5021921qdd -- 22:08:17.503 INFO [12761]: QUERY_STRING = /member/page -- 22:08:17.503 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:08:17.539 INFO [12761]: COREGRADE is stopping... -- 22:08:17.539 DEBUG [12761]: Closing database connection -- 22:08:17.539 SQL [12761]: pgsql_close() -- 22:08:17.766 INFO [12761]: COREGRADE is starting... -- 22:08:17.767 INFO [12761]: Version from config: 1.0 -- 22:08:17.767 DEBUG [12761]: Connecting to database... -- 22:08:17.767 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:17.767 SQL [12761]: pgsql_db_connect() -- 22:08:17.771 DEBUG [12761]: Database connection successful -- 22:08:17.771 INFO [12761]: _SERVER found -- 22:08:17.771 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 22:08:17.771 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:17.771 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=uded1i44cqgffmap9cq7bs5021921qdd -- 22:08:17.771 INFO [12761]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:08:17.771 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:08:17.782 INFO [12761]: COREGRADE is stopping... -- 22:08:17.782 DEBUG [12761]: Closing database connection -- 22:08:17.782 SQL [12761]: pgsql_close() -- 22:08:17.783 INFO [11650]: COREGRADE is starting... -- 22:08:17.784 INFO [11650]: Version from config: 1.0 -- 22:08:17.784 DEBUG [11650]: Connecting to database... -- 22:08:17.784 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:17.784 SQL [11650]: pgsql_db_connect() -- 22:08:17.788 DEBUG [11650]: Database connection successful -- 22:08:17.788 INFO [11650]: _SERVER found -- 22:08:17.788 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 22:08:17.788 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:17.788 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=uded1i44cqgffmap9cq7bs5021921qdd -- 22:08:17.788 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:08:17.788 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:08:17.799 INFO [11650]: COREGRADE is stopping... -- 22:08:17.799 DEBUG [11650]: Closing database connection -- 22:08:17.799 SQL [11650]: pgsql_close() -- 22:08:22.463 INFO [12761]: COREGRADE is starting... -- 22:08:22.464 INFO [12761]: Version from config: 1.0 -- 22:08:22.464 DEBUG [12761]: Connecting to database... -- 22:08:22.464 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:22.464 SQL [12761]: pgsql_db_connect() -- 22:08:22.468 DEBUG [12761]: Database connection successful -- 22:08:22.468 INFO [12761]: _SERVER found -- 22:08:22.468 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 22:08:22.468 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:22.468 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=u3lbkjpbho7e2a2mblkbkr045s6jq48v -- 22:08:22.468 INFO [12761]: QUERY_STRING = /member -- 22:08:22.468 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:08:22.503 INFO [12761]: COREGRADE is stopping... -- 22:08:22.503 DEBUG [12761]: Closing database connection -- 22:08:22.503 SQL [12761]: pgsql_close() -- 22:08:22.884 INFO [12761]: COREGRADE is starting... -- 22:08:22.884 INFO [12761]: Version from config: 1.0 -- 22:08:22.884 DEBUG [12761]: Connecting to database... -- 22:08:22.884 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:22.884 SQL [12761]: pgsql_db_connect() -- 22:08:22.888 DEBUG [12761]: Database connection successful -- 22:08:22.888 INFO [12761]: _SERVER found -- 22:08:22.888 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 22:08:22.888 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:22.888 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=u3lbkjpbho7e2a2mblkbkr045s6jq48v -- 22:08:22.888 INFO [12761]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:08:22.888 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:08:22.899 INFO [12761]: COREGRADE is stopping... -- 22:08:22.899 DEBUG [12761]: Closing database connection -- 22:08:22.899 SQL [12761]: pgsql_close() -- 22:08:22.938 INFO [12761]: COREGRADE is starting... -- 22:08:22.939 INFO [12761]: Version from config: 1.0 -- 22:08:22.939 DEBUG [12761]: Connecting to database... -- 22:08:22.939 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:22.939 SQL [12761]: pgsql_db_connect() -- 22:08:22.942 DEBUG [12761]: Database connection successful -- 22:08:22.942 INFO [12761]: _SERVER found -- 22:08:22.942 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 22:08:22.942 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:22.942 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=u3lbkjpbho7e2a2mblkbkr045s6jq48v -- 22:08:22.942 INFO [12761]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:08:22.943 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:08:22.953 INFO [12761]: COREGRADE is stopping... -- 22:08:22.953 DEBUG [12761]: Closing database connection -- 22:08:22.953 SQL [12761]: pgsql_close() -- 22:08:24.024 INFO [12761]: COREGRADE is starting... -- 22:08:24.024 INFO [12761]: Version from config: 1.0 -- 22:08:24.024 DEBUG [12761]: Connecting to database... -- 22:08:24.024 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:24.024 SQL [12761]: pgsql_db_connect() -- 22:08:24.028 DEBUG [12761]: Database connection successful -- 22:08:24.028 INFO [12761]: _SERVER found -- 22:08:24.028 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 22:08:24.028 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:24.028 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=u3lbkjpbho7e2a2mblkbkr045s6jq48v -- 22:08:24.028 INFO [12761]: QUERY_STRING = /member/page -- 22:08:24.028 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:08:24.064 INFO [12761]: COREGRADE is stopping... -- 22:08:24.064 DEBUG [12761]: Closing database connection -- 22:08:24.064 SQL [12761]: pgsql_close() -- 22:08:24.342 INFO [12761]: COREGRADE is starting... -- 22:08:24.342 INFO [12761]: Version from config: 1.0 -- 22:08:24.342 DEBUG [12761]: Connecting to database... -- 22:08:24.342 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:24.342 SQL [12761]: pgsql_db_connect() -- 22:08:24.346 DEBUG [12761]: Database connection successful -- 22:08:24.346 INFO [12761]: _SERVER found -- 22:08:24.346 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 22:08:24.346 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:24.346 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=u3lbkjpbho7e2a2mblkbkr045s6jq48v -- 22:08:24.346 INFO [12761]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:08:24.346 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:08:24.357 INFO [12761]: COREGRADE is stopping... -- 22:08:24.357 DEBUG [12761]: Closing database connection -- 22:08:24.357 SQL [12761]: pgsql_close() -- 22:08:24.358 INFO [11652]: COREGRADE is starting... -- 22:08:24.358 INFO [11652]: Version from config: 1.0 -- 22:08:24.358 DEBUG [11652]: Connecting to database... -- 22:08:24.358 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:24.358 SQL [11652]: pgsql_db_connect() -- 22:08:24.362 DEBUG [11652]: Database connection successful -- 22:08:24.362 INFO [11652]: _SERVER found -- 22:08:24.362 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 22:08:24.362 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:24.362 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=u3lbkjpbho7e2a2mblkbkr045s6jq48v -- 22:08:24.362 INFO [11652]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:08:24.362 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:08:24.374 INFO [11652]: COREGRADE is stopping... -- 22:08:24.374 DEBUG [11652]: Closing database connection -- 22:08:24.374 SQL [11652]: pgsql_close() -- 22:08:34.382 INFO [11637]: COREGRADE is starting... -- 22:08:34.383 INFO [11637]: Version from config: 1.0 -- 22:08:34.383 DEBUG [11637]: Connecting to database... -- 22:08:34.383 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:34.383 SQL [11637]: pgsql_db_connect() -- 22:08:34.387 DEBUG [11637]: Database connection successful -- 22:08:34.387 INFO [11637]: _SERVER found -- 22:08:34.387 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 22:08:34.387 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:34.387 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=u3lbkjpbho7e2a2mblkbkr045s6jq48v -- 22:08:34.387 INFO [11637]: QUERY_STRING = /member -- 22:08:34.387 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:08:34.422 INFO [11637]: COREGRADE is stopping... -- 22:08:34.422 DEBUG [11637]: Closing database connection -- 22:08:34.422 SQL [11637]: pgsql_close() -- 22:08:35.049 INFO [11637]: COREGRADE is starting... -- 22:08:35.049 INFO [11637]: Version from config: 1.0 -- 22:08:35.049 DEBUG [11637]: Connecting to database... -- 22:08:35.049 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:35.049 SQL [11637]: pgsql_db_connect() -- 22:08:35.053 DEBUG [11637]: Database connection successful -- 22:08:35.053 INFO [11637]: _SERVER found -- 22:08:35.053 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 22:08:35.053 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:35.053 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=u3lbkjpbho7e2a2mblkbkr045s6jq48v -- 22:08:35.053 INFO [11637]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:08:35.053 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:08:35.064 INFO [11637]: COREGRADE is stopping... -- 22:08:35.064 DEBUG [11637]: Closing database connection -- 22:08:35.064 SQL [11637]: pgsql_close() -- 22:08:35.070 INFO [12763]: COREGRADE is starting... -- 22:08:35.071 INFO [12763]: Version from config: 1.0 -- 22:08:35.071 DEBUG [12763]: Connecting to database... -- 22:08:35.071 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:35.071 SQL [12763]: pgsql_db_connect() -- 22:08:35.075 DEBUG [12763]: Database connection successful -- 22:08:35.075 INFO [12763]: _SERVER found -- 22:08:35.075 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 22:08:35.075 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:35.075 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=u3lbkjpbho7e2a2mblkbkr045s6jq48v -- 22:08:35.075 INFO [12763]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:08:35.075 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:08:35.086 INFO [12763]: COREGRADE is stopping... -- 22:08:35.086 DEBUG [12763]: Closing database connection -- 22:08:35.086 SQL [12763]: pgsql_close() -- 22:08:36.185 INFO [12763]: COREGRADE is starting... -- 22:08:36.185 INFO [12763]: Version from config: 1.0 -- 22:08:36.185 DEBUG [12763]: Connecting to database... -- 22:08:36.185 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:36.185 SQL [12763]: pgsql_db_connect() -- 22:08:36.190 DEBUG [12763]: Database connection successful -- 22:08:36.190 INFO [12763]: _SERVER found -- 22:08:36.190 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 22:08:36.190 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:36.190 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=u3lbkjpbho7e2a2mblkbkr045s6jq48v -- 22:08:36.190 INFO [12763]: QUERY_STRING = /member/page -- 22:08:36.190 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:08:36.228 INFO [12763]: COREGRADE is stopping... -- 22:08:36.228 DEBUG [12763]: Closing database connection -- 22:08:36.228 SQL [12763]: pgsql_close() -- 22:08:36.535 INFO [12763]: COREGRADE is starting... -- 22:08:36.536 INFO [12763]: Version from config: 1.0 -- 22:08:36.536 DEBUG [12763]: Connecting to database... -- 22:08:36.536 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:36.536 SQL [12763]: pgsql_db_connect() -- 22:08:36.546 INFO [11637]: COREGRADE is starting... -- 22:08:36.546 INFO [11637]: Version from config: 1.0 -- 22:08:36.546 DEBUG [11637]: Connecting to database... -- 22:08:36.546 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:36.546 SQL [11637]: pgsql_db_connect() -- 22:08:36.540 DEBUG [12763]: Database connection successful -- 22:08:36.540 INFO [12763]: _SERVER found -- 22:08:36.540 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 22:08:36.540 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:36.540 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=u3lbkjpbho7e2a2mblkbkr045s6jq48v -- 22:08:36.540 INFO [12763]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:08:36.540 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:08:36.551 INFO [12763]: COREGRADE is stopping... -- 22:08:36.551 DEBUG [12763]: Closing database connection -- 22:08:36.551 SQL [12763]: pgsql_close() -- 22:08:36.550 DEBUG [11637]: Database connection successful -- 22:08:36.550 INFO [11637]: _SERVER found -- 22:08:36.550 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 22:08:36.550 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:36.550 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=u3lbkjpbho7e2a2mblkbkr045s6jq48v -- 22:08:36.550 INFO [11637]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:08:36.550 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:08:36.562 INFO [11637]: COREGRADE is stopping... -- 22:08:36.562 DEBUG [11637]: Closing database connection -- 22:08:36.562 SQL [11637]: pgsql_close() -- 22:11:05.731 INFO [12764]: COREGRADE is starting... -- 22:11:05.731 INFO [12764]: Version from config: 1.0 -- 22:11:05.731 DEBUG [12764]: Connecting to database... -- 22:11:05.731 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:11:05.731 SQL [12764]: pgsql_db_connect() -- 22:11:05.768 INFO [12764]: COREGRADE is starting... -- 22:11:05.768 INFO [12764]: Version from config: 1.0 -- 22:11:05.768 DEBUG [12764]: Connecting to database... -- 22:11:05.768 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:11:05.768 SQL [12764]: pgsql_db_connect() -- 22:11:05.772 DEBUG [12764]: Database connection successful -- 22:11:05.772 INFO [12764]: _SERVER found -- 22:11:05.772 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 22:11:05.772 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 22:11:05.772 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911 -- 22:11:05.772 INFO [12764]: QUERY_STRING = -- 22:11:05.772 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:11:05.772 INFO [12764]: SystemStatus()09-09-********~************ -- 22:11:05.772 INFO [12764]: long coregrade_api_main(CVars in, CVars &out) -- 22:11:05.772 INFO [12764]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 22:11:05.772 INFO [12764]: account calls -- 22:11:05.772 INFO [12764]: account_calls() -- 22:11:05.772 INFO [12764]: LoginCoreGradeAccount() -- 22:11:05.772 FLOG_MAX [12764]: REQ_STRING(username) -- 22:11:05.772 FLOG_MAX [12764]: REQ_STRING(password) -- 22:11:05.772 FLOG_MAX [12764]: REQ_STRING(sessionid) -- 22:11:05.772 FLOG_MAX [12764]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:11:05.772 SQL [12764]: pgsql_query() -- 22:11:05.772 SQL [12764]: About to run query: -- 22:11:05.772 SQL [12764]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 22:11:05.776 SQL [12764]: Found rows: 1 -- 22:11:05.776 FLOG_MAX [12764]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 22:11:05.776 INFO [12764]: long SessionCheck(long uid, const char *sessionid, int create ) -- 22:11:05.776 SQL [12764]: pgsql_exec() -- 22:11:05.776 SQL [12764]: About to run query: -- 22:11:05.776 SQL [12764]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 22:11:05.777 SQL [12764]: PQcmdTuples: 0 -- 22:11:05.777 SQL [12764]: Affected rows: 0 -- 22:11:05.777 SQL [12764]: pgsql_exec() -- 22:11:05.777 SQL [12764]: About to run query: -- 22:11:05.777 SQL [12764]: DELETE FROM members_session WHERE member_id=5 -- 22:11:05.778 SQL [12764]: PQcmdTuples: 1 -- 22:11:05.778 SQL [12764]: Affected rows: 1 -- 22:11:05.778 SQL [12764]: pgsql_query() -- 22:11:05.778 SQL [12764]: About to run query: -- 22:11:05.778 SQL [12764]: SELECT * FROM members_session WHERE member_id=5 AND session<>'D6CD600F2D5DBDB2184475486BAC0CBD' -- 22:11:05.778 SQL [12764]: Found rows: 0 -- 22:11:05.778 SQL [12764]: Found rows: 0 -- 22:11:05.778 FLOG_MAX [12764]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:11:05.778 SQL [12764]: pgsql_query() -- 22:11:05.778 SQL [12764]: About to run query: -- 22:11:05.778 SQL [12764]: SELECT * FROM members_session WHERE member_id=5 AND session='D6CD600F2D5DBDB2184475486BAC0CBD' -- 22:11:05.779 SQL [12764]: Found rows: 0 -- 22:11:05.779 SQL [12764]: Found rows: 0 -- 22:11:05.779 FLOG_MAX [12764]: insert_db_record() -- 22:11:05.779 SQL [12764]: pgsql_exec() -- 22:11:05.779 SQL [12764]: About to run query: -- 22:11:05.779 SQL [12764]: INSERT INTO members_session (member_id,session) VALUES ('5','D6CD600F2D5DBDB2184475486BAC0CBD') -- 22:11:05.780 SQL [12764]: PQcmdTuples: 1 -- 22:11:05.780 SQL [12764]: Affected rows: 1 -- 22:11:05.780 FLOG_MAX [12764]: SELECT currval('members_session_id_seq') -- 22:11:05.780 SQL [12764]: pgsql_query() -- 22:11:05.780 SQL [12764]: About to run query: -- 22:11:05.780 SQL [12764]: SELECT currval('members_session_id_seq') -- 22:11:05.781 SQL [12764]: Found rows: 1 -- 22:11:05.781 INFO [12764]: CreateDefaultPage() -- 22:11:05.781 FLOG_MAX [12764]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:11:05.781 SQL [12764]: pgsql_query() -- 22:11:05.781 SQL [12764]: About to run query: -- 22:11:05.781 SQL [12764]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 22:11:05.781 SQL [12764]: Found rows: 1 -- 22:11:05.781 FLOG_MAX [12764]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 22:11:05.781 SQL [12764]: pgsql_query() -- 22:11:05.781 SQL [12764]: About to run query: -- 22:11:05.781 SQL [12764]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 22:11:05.782 SQL [12764]: Found rows: 1 -- 22:11:05.782 INFO [12764]: /CreateDefaultPage() -- 22:11:05.782 INFO [12764]: /LoginCoreGradeAccount() -- 22:11:05.782 INFO [12764]: RET: added=2020-02-05 06:47:23.982154 -- 22:11:05.782 INFO [12764]: RET: email=ameye+11@chiefsoft.com -- 22:11:05.782 INFO [12764]: RET: firstname=Olu -- 22:11:05.782 INFO [12764]: RET: id=5 -- 22:11:05.782 INFO [12764]: RET: last_login= -- 22:11:05.782 INFO [12764]: RET: lastname=Amey -- 22:11:05.782 INFO [12764]: RET: loc=192.168.1.13 -- 22:11:05.782 INFO [12764]: RET: member_id=5 -- 22:11:05.782 INFO [12764]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 22:11:05.782 INFO [12764]: RET: phone= -- 22:11:05.782 INFO [12764]: RET: pid= -- 22:11:05.782 INFO [12764]: RET: result=YES I GET TO BACK END -- 22:11:05.782 INFO [12764]: RET: sessionid=D6CD600F2D5DBDB2184475486BAC0CBD -- 22:11:05.782 INFO [12764]: RET: status=1 -- 22:11:05.782 INFO [12764]: RET: stauts=OK -- 22:11:05.782 INFO [12764]: RET: username=ameye+11@chiefsoft.com -- 22:11:05.782 INFO [12764]: RET: verified= -- 22:11:05.783 INFO [12764]: COREGRADE is stopping... -- 22:11:05.783 DEBUG [12764]: Closing database connection -- 22:11:05.783 SQL [12764]: pgsql_close() -- 22:11:05.736 DEBUG [12764]: Database connection successful -- 22:11:05.736 INFO [12764]: _SERVER found -- 22:11:05.736 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 22:11:05.736 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 22:11:05.736 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911 -- 22:11:05.736 INFO [12764]: QUERY_STRING = /auth -- 22:11:05.736 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:11:05.784 INFO [12764]: COREGRADE is stopping... -- 22:11:05.784 DEBUG [12764]: Closing database connection -- 22:11:05.784 SQL [12764]: pgsql_close() -- 22:11:05.804 INFO [12764]: COREGRADE is starting... -- 22:11:05.804 INFO [12764]: Version from config: 1.0 -- 22:11:05.804 DEBUG [12764]: Connecting to database... -- 22:11:05.804 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:11:05.804 SQL [12764]: pgsql_db_connect() -- 22:11:05.808 DEBUG [12764]: Database connection successful -- 22:11:05.808 INFO [12764]: _SERVER found -- 22:11:05.808 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 22:11:05.808 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 22:11:05.808 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=17etqgkapbaus5bjceml64pvc58gmtp6 -- 22:11:05.808 INFO [12764]: QUERY_STRING = /member/index -- 22:11:05.808 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:11:05.843 INFO [12764]: COREGRADE is stopping... -- 22:11:05.843 DEBUG [12764]: Closing database connection -- 22:11:05.843 SQL [12764]: pgsql_close() -- 22:11:06.342 INFO [11636]: COREGRADE is starting... -- 22:11:06.342 INFO [11636]: Version from config: 1.0 -- 22:11:06.342 DEBUG [11636]: Connecting to database... -- 22:11:06.342 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:11:06.342 SQL [11636]: pgsql_db_connect() -- 22:11:06.347 DEBUG [11636]: Database connection successful -- 22:11:06.347 INFO [11636]: _SERVER found -- 22:11:06.347 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 22:11:06.347 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 22:11:06.347 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=17etqgkapbaus5bjceml64pvc58gmtp6 -- 22:11:06.347 INFO [11636]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:11:06.347 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:11:06.358 INFO [11636]: COREGRADE is stopping... -- 22:11:06.358 DEBUG [11636]: Closing database connection -- 22:11:06.358 SQL [11636]: pgsql_close() -- 22:11:06.812 INFO [12764]: COREGRADE is starting... -- 22:11:06.812 INFO [12764]: Version from config: 1.0 -- 22:11:06.812 DEBUG [12764]: Connecting to database... -- 22:11:06.812 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:11:06.812 SQL [12764]: pgsql_db_connect() -- 22:11:06.816 DEBUG [12764]: Database connection successful -- 22:11:06.816 INFO [12764]: _SERVER found -- 22:11:06.816 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 22:11:06.816 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 22:11:06.816 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=17etqgkapbaus5bjceml64pvc58gmtp6 -- 22:11:06.816 INFO [12764]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:11:06.816 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:11:06.827 INFO [12764]: COREGRADE is stopping... -- 22:11:06.827 DEBUG [12764]: Closing database connection -- 22:11:06.827 SQL [12764]: pgsql_close() -- 22:11:14.720 INFO [11639]: COREGRADE is starting... -- 22:11:14.721 INFO [11639]: Version from config: 1.0 -- 22:11:14.721 DEBUG [11639]: Connecting to database... -- 22:11:14.721 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:11:14.721 SQL [11639]: pgsql_db_connect() -- 22:11:14.725 DEBUG [11639]: Database connection successful -- 22:11:14.725 INFO [11639]: _SERVER found -- 22:11:14.725 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 22:11:14.725 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 22:11:14.725 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=17etqgkapbaus5bjceml64pvc58gmtp6 -- 22:11:14.725 INFO [11639]: QUERY_STRING = /member/page -- 22:11:14.725 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:11:14.765 INFO [11639]: COREGRADE is stopping... -- 22:11:14.765 DEBUG [11639]: Closing database connection -- 22:11:14.765 SQL [11639]: pgsql_close() -- 22:11:14.894 INFO [11639]: COREGRADE is starting... -- 22:11:14.894 INFO [11639]: Version from config: 1.0 -- 22:11:14.894 DEBUG [11639]: Connecting to database... -- 22:11:14.894 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:11:14.894 SQL [11639]: pgsql_db_connect() -- 22:11:14.909 INFO [11650]: COREGRADE is starting... -- 22:11:14.898 DEBUG [11639]: Database connection successful -- 22:11:14.898 INFO [11639]: _SERVER found -- 22:11:14.898 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 22:11:14.898 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 22:11:14.898 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=17etqgkapbaus5bjceml64pvc58gmtp6 -- 22:11:14.898 INFO [11639]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:11:14.898 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:11:14.909 INFO [11639]: COREGRADE is stopping... -- 22:11:14.910 DEBUG [11639]: Closing database connection -- 22:11:14.910 SQL [11639]: pgsql_close() -- 22:11:14.910 INFO [11650]: Version from config: 1.0 -- 22:11:14.910 DEBUG [11650]: Connecting to database... -- 22:11:14.910 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:11:14.910 SQL [11650]: pgsql_db_connect() -- 22:11:14.914 DEBUG [11650]: Database connection successful -- 22:11:14.914 INFO [11650]: _SERVER found -- 22:11:14.914 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 22:11:14.914 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 22:11:14.914 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=17etqgkapbaus5bjceml64pvc58gmtp6 -- 22:11:14.914 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:11:14.914 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:11:14.925 INFO [11650]: COREGRADE is stopping... -- 22:11:14.925 DEBUG [11650]: Closing database connection -- 22:11:14.925 SQL [11650]: pgsql_close() -- 22:11:18.856 INFO [11650]: COREGRADE is starting... -- 22:11:18.857 INFO [11650]: Version from config: 1.0 -- 22:11:18.857 DEBUG [11650]: Connecting to database... -- 22:11:18.857 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:11:18.857 SQL [11650]: pgsql_db_connect() -- 22:11:18.861 DEBUG [11650]: Database connection successful -- 22:11:18.861 INFO [11650]: _SERVER found -- 22:11:18.861 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 22:11:18.861 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 22:11:18.861 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=17etqgkapbaus5bjceml64pvc58gmtp6 -- 22:11:18.861 INFO [11650]: QUERY_STRING = /member -- 22:11:18.861 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:11:18.896 INFO [11650]: COREGRADE is stopping... -- 22:11:18.896 DEBUG [11650]: Closing database connection -- 22:11:18.896 SQL [11650]: pgsql_close() -- 22:11:19.007 INFO [11650]: COREGRADE is starting... -- 22:11:19.007 INFO [11650]: Version from config: 1.0 -- 22:11:19.007 DEBUG [11650]: Connecting to database... -- 22:11:19.007 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:11:19.007 SQL [11650]: pgsql_db_connect() -- 22:11:19.015 INFO [11639]: COREGRADE is starting... -- 22:11:19.015 INFO [11639]: Version from config: 1.0 -- 22:11:19.015 DEBUG [11639]: Connecting to database... -- 22:11:19.015 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:11:19.015 SQL [11639]: pgsql_db_connect() -- 22:11:19.011 DEBUG [11650]: Database connection successful -- 22:11:19.011 INFO [11650]: _SERVER found -- 22:11:19.011 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 22:11:19.011 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 22:11:19.011 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=17etqgkapbaus5bjceml64pvc58gmtp6 -- 22:11:19.011 INFO [11650]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:11:19.011 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:11:19.022 INFO [11650]: COREGRADE is stopping... -- 22:11:19.022 DEBUG [11650]: Closing database connection -- 22:11:19.022 SQL [11650]: pgsql_close() -- 22:11:19.019 DEBUG [11639]: Database connection successful -- 22:11:19.019 INFO [11639]: _SERVER found -- 22:11:19.019 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 22:11:19.019 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 22:11:19.019 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=17etqgkapbaus5bjceml64pvc58gmtp6 -- 22:11:19.019 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:11:19.019 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:11:19.030 INFO [11639]: COREGRADE is stopping... -- 22:11:19.031 DEBUG [11639]: Closing database connection -- 22:11:19.031 SQL [11639]: pgsql_close() -- 22:11:19.775 INFO [11639]: COREGRADE is starting... -- 22:11:19.776 INFO [11639]: Version from config: 1.0 -- 22:11:19.776 DEBUG [11639]: Connecting to database... -- 22:11:19.776 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:11:19.776 SQL [11639]: pgsql_db_connect() -- 22:11:19.780 DEBUG [11639]: Database connection successful -- 22:11:19.780 INFO [11639]: _SERVER found -- 22:11:19.780 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 22:11:19.780 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 22:11:19.780 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=17etqgkapbaus5bjceml64pvc58gmtp6 -- 22:11:19.780 INFO [11639]: QUERY_STRING = /member/page -- 22:11:19.780 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:11:19.816 INFO [11639]: COREGRADE is stopping... -- 22:11:19.816 DEBUG [11639]: Closing database connection -- 22:11:19.816 SQL [11639]: pgsql_close() -- 22:11:19.925 INFO [11639]: COREGRADE is starting... -- 22:11:19.925 INFO [11639]: Version from config: 1.0 -- 22:11:19.925 DEBUG [11639]: Connecting to database... -- 22:11:19.925 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:11:19.925 SQL [11639]: pgsql_db_connect() -- 22:11:19.930 DEBUG [11639]: Database connection successful -- 22:11:19.930 INFO [11639]: _SERVER found -- 22:11:19.930 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 22:11:19.930 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 22:11:19.930 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=17etqgkapbaus5bjceml64pvc58gmtp6 -- 22:11:19.930 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:11:19.930 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:11:19.941 INFO [11639]: COREGRADE is stopping... -- 22:11:19.941 DEBUG [11639]: Closing database connection -- 22:11:19.941 SQL [11639]: pgsql_close() -- 22:11:50.939 INFO [12761]: COREGRADE is starting... -- 22:11:50.939 INFO [12761]: Version from config: 1.0 -- 22:11:50.939 DEBUG [12761]: Connecting to database... -- 22:11:50.939 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:11:50.939 SQL [12761]: pgsql_db_connect() -- 22:11:50.944 DEBUG [12761]: Database connection successful -- 22:11:50.944 INFO [12761]: _SERVER found -- 22:11:50.944 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 22:11:50.944 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 22:11:50.944 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=17etqgkapbaus5bjceml64pvc58gmtp6 -- 22:11:50.944 INFO [12761]: QUERY_STRING = /member/configure -- 22:11:50.944 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:11:50.980 INFO [12761]: COREGRADE is stopping... -- 22:11:50.980 DEBUG [12761]: Closing database connection -- 22:11:50.980 SQL [12761]: pgsql_close() -- 22:11:51.108 INFO [12761]: COREGRADE is starting... -- 22:11:51.109 INFO [12761]: Version from config: 1.0 -- 22:11:51.109 DEBUG [12761]: Connecting to database... -- 22:11:51.109 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:11:51.109 SQL [12761]: pgsql_db_connect() -- 22:11:51.113 DEBUG [12761]: Database connection successful -- 22:11:51.113 INFO [12761]: _SERVER found -- 22:11:51.113 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 22:11:51.113 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 22:11:51.113 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=17etqgkapbaus5bjceml64pvc58gmtp6 -- 22:11:51.113 INFO [12761]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:11:51.113 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:11:51.124 INFO [12761]: COREGRADE is stopping... -- 22:11:51.124 DEBUG [12761]: Closing database connection -- 22:11:51.124 SQL [12761]: pgsql_close() -- 22:11:58.203 INFO [11652]: COREGRADE is starting... -- 22:11:58.203 INFO [11652]: Version from config: 1.0 -- 22:11:58.203 DEBUG [11652]: Connecting to database... -- 22:11:58.203 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:11:58.203 SQL [11652]: pgsql_db_connect() -- 22:11:58.207 DEBUG [11652]: Database connection successful -- 22:11:58.207 INFO [11652]: _SERVER found -- 22:11:58.207 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 22:11:58.207 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 22:11:58.207 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=u3lbkjpbho7e2a2mblkbkr045s6jq48v -- 22:11:58.207 INFO [11652]: QUERY_STRING = /member -- 22:11:58.207 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:11:58.243 INFO [11652]: COREGRADE is stopping... -- 22:11:58.243 DEBUG [11652]: Closing database connection -- 22:11:58.243 SQL [11652]: pgsql_close() -- 22:11:58.637 INFO [11652]: COREGRADE is starting... -- 22:11:58.637 INFO [11652]: Version from config: 1.0 -- 22:11:58.637 DEBUG [11652]: Connecting to database... -- 22:11:58.637 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:11:58.637 SQL [11652]: pgsql_db_connect() -- 22:11:58.641 DEBUG [11652]: Database connection successful -- 22:11:58.641 INFO [11652]: _SERVER found -- 22:11:58.641 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 22:11:58.641 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 22:11:58.641 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k5loe4j8q3ptmm70124qag1pi1gqdut5 -- 22:11:58.641 INFO [11652]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:11:58.641 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:11:58.652 INFO [11652]: COREGRADE is stopping... -- 22:11:58.652 DEBUG [11652]: Closing database connection -- 22:11:58.652 SQL [11652]: pgsql_close() -- 22:11:58.660 INFO [12763]: COREGRADE is starting... -- 22:11:58.661 INFO [12763]: Version from config: 1.0 -- 22:11:58.661 DEBUG [12763]: Connecting to database... -- 22:11:58.661 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:11:58.661 SQL [12763]: pgsql_db_connect() -- 22:11:58.665 DEBUG [12763]: Database connection successful -- 22:11:58.665 INFO [12763]: _SERVER found -- 22:11:58.665 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 22:11:58.665 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 22:11:58.665 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k5loe4j8q3ptmm70124qag1pi1gqdut5 -- 22:11:58.665 INFO [12763]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:11:58.665 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:11:58.677 INFO [12763]: COREGRADE is stopping... -- 22:11:58.677 DEBUG [12763]: Closing database connection -- 22:11:58.677 SQL [12763]: pgsql_close() -- 22:11:59.923 INFO [11637]: COREGRADE is starting... -- 22:11:59.924 INFO [11637]: Version from config: 1.0 -- 22:11:59.924 DEBUG [11637]: Connecting to database... -- 22:11:59.924 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:11:59.924 SQL [11637]: pgsql_db_connect() -- 22:11:59.928 DEBUG [11637]: Database connection successful -- 22:11:59.928 INFO [11637]: _SERVER found -- 22:11:59.928 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 22:11:59.928 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 22:11:59.928 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=17etqgkapbaus5bjceml64pvc58gmtp6 -- 22:11:59.928 INFO [11637]: QUERY_STRING = /member -- 22:11:59.928 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:11:59.963 INFO [11637]: COREGRADE is stopping... -- 22:11:59.963 DEBUG [11637]: Closing database connection -- 22:11:59.963 SQL [11637]: pgsql_close() -- 22:12:00.055 INFO [11637]: COREGRADE is starting... -- 22:12:00.055 INFO [11637]: Version from config: 1.0 -- 22:12:00.055 DEBUG [11637]: Connecting to database... -- 22:12:00.055 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:12:00.056 SQL [11637]: pgsql_db_connect() -- 22:12:00.060 DEBUG [11637]: Database connection successful -- 22:12:00.060 INFO [11637]: _SERVER found -- 22:12:00.060 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 22:12:00.060 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 22:12:00.060 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=17etqgkapbaus5bjceml64pvc58gmtp6 -- 22:12:00.060 INFO [11637]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:12:00.060 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:12:00.071 INFO [11637]: COREGRADE is stopping... -- 22:12:00.071 DEBUG [11637]: Closing database connection -- 22:12:00.071 SQL [11637]: pgsql_close() -- 22:12:00.834 INFO [12763]: COREGRADE is starting... -- 22:12:00.835 INFO [12763]: Version from config: 1.0 -- 22:12:00.835 DEBUG [12763]: Connecting to database... -- 22:12:00.835 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:12:00.835 SQL [12763]: pgsql_db_connect() -- 22:12:00.839 DEBUG [12763]: Database connection successful -- 22:12:00.839 INFO [12763]: _SERVER found -- 22:12:00.839 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 22:12:00.839 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 22:12:00.839 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k5loe4j8q3ptmm70124qag1pi1gqdut5 -- 22:12:00.839 INFO [12763]: QUERY_STRING = /member/page -- 22:12:00.839 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:12:00.875 INFO [12763]: COREGRADE is stopping... -- 22:12:00.875 DEBUG [12763]: Closing database connection -- 22:12:00.875 SQL [12763]: pgsql_close() -- 22:12:01.116 INFO [12763]: COREGRADE is starting... -- 22:12:01.116 INFO [12763]: Version from config: 1.0 -- 22:12:01.116 DEBUG [12763]: Connecting to database... -- 22:12:01.117 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:12:01.117 SQL [12763]: pgsql_db_connect() -- 22:12:01.125 INFO [11652]: COREGRADE is starting... -- 22:12:01.125 INFO [11652]: Version from config: 1.0 -- 22:12:01.125 DEBUG [11652]: Connecting to database... -- 22:12:01.125 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:12:01.125 SQL [11652]: pgsql_db_connect() -- 22:12:01.121 DEBUG [12763]: Database connection successful -- 22:12:01.121 INFO [12763]: _SERVER found -- 22:12:01.121 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 22:12:01.121 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 22:12:01.121 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k5loe4j8q3ptmm70124qag1pi1gqdut5 -- 22:12:01.121 INFO [12763]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:12:01.121 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:12:01.132 INFO [12763]: COREGRADE is stopping... -- 22:12:01.132 DEBUG [12763]: Closing database connection -- 22:12:01.132 SQL [12763]: pgsql_close() -- 22:12:01.129 DEBUG [11652]: Database connection successful -- 22:12:01.129 INFO [11652]: _SERVER found -- 22:12:01.129 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 22:12:01.129 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 22:12:01.129 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k5loe4j8q3ptmm70124qag1pi1gqdut5 -- 22:12:01.129 INFO [11652]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:12:01.129 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:12:01.140 INFO [11652]: COREGRADE is stopping... -- 22:12:01.140 DEBUG [11652]: Closing database connection -- 22:12:01.140 SQL [11652]: pgsql_close() -- 22:12:04.687 INFO [11652]: COREGRADE is starting... -- 22:12:04.688 INFO [11652]: Version from config: 1.0 -- 22:12:04.688 DEBUG [11652]: Connecting to database... -- 22:12:04.688 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:12:04.688 SQL [11652]: pgsql_db_connect() -- 22:12:04.692 DEBUG [11652]: Database connection successful -- 22:12:04.692 INFO [11652]: _SERVER found -- 22:12:04.692 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 22:12:04.692 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 22:12:04.692 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k5loe4j8q3ptmm70124qag1pi1gqdut5 -- 22:12:04.692 INFO [11652]: QUERY_STRING = /member -- 22:12:04.692 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:12:04.727 INFO [11652]: COREGRADE is stopping... -- 22:12:04.727 DEBUG [11652]: Closing database connection -- 22:12:04.727 SQL [11652]: pgsql_close() -- 22:12:04.926 INFO [11652]: COREGRADE is starting... -- 22:12:04.926 INFO [11652]: Version from config: 1.0 -- 22:12:04.926 DEBUG [11652]: Connecting to database... -- 22:12:04.926 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:12:04.926 SQL [11652]: pgsql_db_connect() -- 22:12:04.938 INFO [12763]: COREGRADE is starting... -- 22:12:04.938 INFO [12763]: Version from config: 1.0 -- 22:12:04.938 DEBUG [12763]: Connecting to database... -- 22:12:04.938 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:12:04.939 SQL [12763]: pgsql_db_connect() -- 22:12:04.930 DEBUG [11652]: Database connection successful -- 22:12:04.930 INFO [11652]: _SERVER found -- 22:12:04.930 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 22:12:04.930 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 22:12:04.930 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k5loe4j8q3ptmm70124qag1pi1gqdut5 -- 22:12:04.930 INFO [11652]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:12:04.930 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:12:04.941 INFO [11652]: COREGRADE is stopping... -- 22:12:04.941 DEBUG [11652]: Closing database connection -- 22:12:04.941 SQL [11652]: pgsql_close() -- 22:12:04.943 DEBUG [12763]: Database connection successful -- 22:12:04.943 INFO [12763]: _SERVER found -- 22:12:04.943 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 22:12:04.943 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 22:12:04.943 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k5loe4j8q3ptmm70124qag1pi1gqdut5 -- 22:12:04.943 INFO [12763]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:12:04.943 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:12:04.954 INFO [12763]: COREGRADE is stopping... -- 22:12:04.954 DEBUG [12763]: Closing database connection -- 22:12:04.954 SQL [12763]: pgsql_close() -- 22:12:07.361 INFO [12763]: COREGRADE is starting... -- 22:12:07.361 INFO [12763]: Version from config: 1.0 -- 22:12:07.361 DEBUG [12763]: Connecting to database... -- 22:12:07.361 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:12:07.361 SQL [12763]: pgsql_db_connect() -- 22:12:07.365 DEBUG [12763]: Database connection successful -- 22:12:07.365 INFO [12763]: _SERVER found -- 22:12:07.365 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 22:12:07.365 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 22:12:07.365 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k5loe4j8q3ptmm70124qag1pi1gqdut5 -- 22:12:07.365 INFO [12763]: QUERY_STRING = /member/page -- 22:12:07.365 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:12:07.401 INFO [12763]: COREGRADE is stopping... -- 22:12:07.401 DEBUG [12763]: Closing database connection -- 22:12:07.401 SQL [12763]: pgsql_close() -- 22:12:07.573 INFO [12763]: COREGRADE is starting... -- 22:12:07.574 INFO [12763]: Version from config: 1.0 -- 22:12:07.574 DEBUG [12763]: Connecting to database... -- 22:12:07.574 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:12:07.574 SQL [12763]: pgsql_db_connect() -- 22:12:07.582 INFO [11652]: COREGRADE is starting... -- 22:12:07.582 INFO [11652]: Version from config: 1.0 -- 22:12:07.582 DEBUG [11652]: Connecting to database... -- 22:12:07.582 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:12:07.582 SQL [11652]: pgsql_db_connect() -- 22:12:07.578 DEBUG [12763]: Database connection successful -- 22:12:07.578 INFO [12763]: _SERVER found -- 22:12:07.578 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 22:12:07.578 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 22:12:07.578 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k5loe4j8q3ptmm70124qag1pi1gqdut5 -- 22:12:07.578 INFO [12763]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:12:07.578 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:12:07.589 INFO [12763]: COREGRADE is stopping... -- 22:12:07.589 DEBUG [12763]: Closing database connection -- 22:12:07.589 SQL [12763]: pgsql_close() -- 22:12:07.586 DEBUG [11652]: Database connection successful -- 22:12:07.586 INFO [11652]: _SERVER found -- 22:12:07.586 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 22:12:07.586 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 22:12:07.586 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k5loe4j8q3ptmm70124qag1pi1gqdut5 -- 22:12:07.586 INFO [11652]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:12:07.586 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:12:07.597 INFO [11652]: COREGRADE is stopping... -- 22:12:07.597 DEBUG [11652]: Closing database connection -- 22:12:07.597 SQL [11652]: pgsql_close() -- 22:13:35.108 INFO [11638]: COREGRADE is starting... -- 22:13:35.109 INFO [11638]: Version from config: 1.0 -- 22:13:35.109 DEBUG [11638]: Connecting to database... -- 22:13:35.109 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:13:35.109 SQL [11638]: pgsql_db_connect() -- 22:13:35.113 DEBUG [11638]: Database connection successful -- 22:13:35.113 INFO [11638]: _SERVER found -- 22:13:35.113 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 22:13:35.113 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 22:13:35.113 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k5loe4j8q3ptmm70124qag1pi1gqdut5 -- 22:13:35.113 INFO [11638]: QUERY_STRING = /member/mycalendar -- 22:13:35.113 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:13:35.145 INFO [11638]: COREGRADE is stopping... -- 22:13:35.145 DEBUG [11638]: Closing database connection -- 22:13:35.145 SQL [11638]: pgsql_close() -- 22:13:35.606 INFO [11638]: COREGRADE is starting... -- 22:13:35.606 INFO [11638]: Version from config: 1.0 -- 22:13:35.606 DEBUG [11638]: Connecting to database... -- 22:13:35.606 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:13:35.606 SQL [11638]: pgsql_db_connect() -- 22:13:35.610 DEBUG [11638]: Database connection successful -- 22:13:35.610 INFO [11638]: _SERVER found -- 22:13:35.610 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 22:13:35.610 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 22:13:35.610 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k5loe4j8q3ptmm70124qag1pi1gqdut5 -- 22:13:35.610 INFO [11638]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:13:35.610 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:13:35.621 INFO [11638]: COREGRADE is stopping... -- 22:13:35.621 DEBUG [11638]: Closing database connection -- 22:13:35.621 SQL [11638]: pgsql_close() -- 22:13:35.642 INFO [11638]: COREGRADE is starting... -- 22:13:35.643 INFO [11638]: Version from config: 1.0 -- 22:13:35.643 DEBUG [11638]: Connecting to database... -- 22:13:35.643 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:13:35.643 SQL [11638]: pgsql_db_connect() -- 22:13:35.647 DEBUG [11638]: Database connection successful -- 22:13:35.647 INFO [11638]: _SERVER found -- 22:13:35.647 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 22:13:35.647 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 22:13:35.647 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k5loe4j8q3ptmm70124qag1pi1gqdut5 -- 22:13:35.647 INFO [11638]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:13:35.647 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:13:35.658 INFO [11638]: COREGRADE is stopping... -- 22:13:35.658 DEBUG [11638]: Closing database connection -- 22:13:35.658 SQL [11638]: pgsql_close() -- 22:13:38.083 INFO [11638]: COREGRADE is starting... -- 22:13:38.084 INFO [11638]: Version from config: 1.0 -- 22:13:38.084 DEBUG [11638]: Connecting to database... -- 22:13:38.084 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:13:38.084 SQL [11638]: pgsql_db_connect() -- 22:13:38.088 DEBUG [11638]: Database connection successful -- 22:13:38.088 INFO [11638]: _SERVER found -- 22:13:38.088 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 22:13:38.088 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 22:13:38.088 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k5loe4j8q3ptmm70124qag1pi1gqdut5 -- 22:13:38.088 INFO [11638]: QUERY_STRING = /member -- 22:13:38.088 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:13:38.123 INFO [11638]: COREGRADE is stopping... -- 22:13:38.123 DEBUG [11638]: Closing database connection -- 22:13:38.123 SQL [11638]: pgsql_close() -- 22:13:38.360 INFO [11638]: COREGRADE is starting... -- 22:13:38.361 INFO [11638]: Version from config: 1.0 -- 22:13:38.361 DEBUG [11638]: Connecting to database... -- 22:13:38.361 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:13:38.361 SQL [11638]: pgsql_db_connect() -- 22:13:38.365 DEBUG [11638]: Database connection successful -- 22:13:38.365 INFO [11638]: _SERVER found -- 22:13:38.365 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 22:13:38.365 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 22:13:38.365 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k5loe4j8q3ptmm70124qag1pi1gqdut5 -- 22:13:38.365 INFO [11638]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:13:38.365 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:13:38.376 INFO [11638]: COREGRADE is stopping... -- 22:13:38.376 DEBUG [11638]: Closing database connection -- 22:13:38.376 SQL [11638]: pgsql_close() -- 22:13:38.390 INFO [11638]: COREGRADE is starting... -- 22:13:38.391 INFO [11638]: Version from config: 1.0 -- 22:13:38.391 DEBUG [11638]: Connecting to database... -- 22:13:38.391 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:13:38.391 SQL [11638]: pgsql_db_connect() -- 22:13:38.395 DEBUG [11638]: Database connection successful -- 22:13:38.395 INFO [11638]: _SERVER found -- 22:13:38.395 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 22:13:38.395 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 22:13:38.395 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k5loe4j8q3ptmm70124qag1pi1gqdut5 -- 22:13:38.395 INFO [11638]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:13:38.395 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:13:38.405 INFO [11638]: COREGRADE is stopping... -- 22:13:38.406 DEBUG [11638]: Closing database connection -- 22:13:38.406 SQL [11638]: pgsql_close() -- 22:13:39.471 INFO [11638]: COREGRADE is starting... -- 22:13:39.471 INFO [11638]: Version from config: 1.0 -- 22:13:39.471 DEBUG [11638]: Connecting to database... -- 22:13:39.471 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:13:39.471 SQL [11638]: pgsql_db_connect() -- 22:13:39.475 DEBUG [11638]: Database connection successful -- 22:13:39.475 INFO [11638]: _SERVER found -- 22:13:39.475 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 22:13:39.475 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 22:13:39.475 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k5loe4j8q3ptmm70124qag1pi1gqdut5 -- 22:13:39.475 INFO [11638]: QUERY_STRING = /member/page -- 22:13:39.475 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:13:39.511 INFO [11638]: COREGRADE is stopping... -- 22:13:39.511 DEBUG [11638]: Closing database connection -- 22:13:39.511 SQL [11638]: pgsql_close() -- 22:13:39.962 INFO [11638]: COREGRADE is starting... -- 22:13:39.962 INFO [11638]: Version from config: 1.0 -- 22:13:39.962 DEBUG [11638]: Connecting to database... -- 22:13:39.962 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:13:39.962 SQL [11638]: pgsql_db_connect() -- 22:13:39.966 DEBUG [11638]: Database connection successful -- 22:13:39.966 INFO [11638]: _SERVER found -- 22:13:39.966 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 22:13:39.966 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 22:13:39.966 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k5loe4j8q3ptmm70124qag1pi1gqdut5 -- 22:13:39.966 INFO [11638]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:13:39.966 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:13:39.977 INFO [11638]: COREGRADE is stopping... -- 22:13:39.977 DEBUG [11638]: Closing database connection -- 22:13:39.977 SQL [11638]: pgsql_close() -- 22:13:39.998 INFO [11638]: COREGRADE is starting... -- 22:13:39.998 INFO [11638]: Version from config: 1.0 -- 22:13:39.998 DEBUG [11638]: Connecting to database... -- 22:13:39.998 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:13:39.998 SQL [11638]: pgsql_db_connect() -- 22:13:40.002 DEBUG [11638]: Database connection successful -- 22:13:40.002 INFO [11638]: _SERVER found -- 22:13:40.002 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 22:13:40.002 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 22:13:40.002 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k5loe4j8q3ptmm70124qag1pi1gqdut5 -- 22:13:40.002 INFO [11638]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:13:40.002 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:13:40.013 INFO [11638]: COREGRADE is stopping... -- 22:13:40.013 DEBUG [11638]: Closing database connection -- 22:13:40.013 SQL [11638]: pgsql_close() -- 22:17:52.852 INFO [11644]: COREGRADE is starting... -- 22:17:52.853 INFO [11644]: Version from config: 1.0 -- 22:17:52.853 DEBUG [11644]: Connecting to database... -- 22:17:52.853 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:17:52.853 SQL [11644]: pgsql_db_connect() -- 22:17:52.858 DEBUG [11644]: Database connection successful -- 22:17:52.858 INFO [11644]: _SERVER found -- 22:17:52.858 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 22:17:52.858 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 22:17:52.858 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k5loe4j8q3ptmm70124qag1pi1gqdut5 -- 22:17:52.858 INFO [11644]: QUERY_STRING = /member/configure -- 22:17:52.858 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:17:52.895 INFO [11644]: COREGRADE is stopping... -- 22:17:52.895 DEBUG [11644]: Closing database connection -- 22:17:52.895 SQL [11644]: pgsql_close() -- 22:17:53.372 INFO [11644]: COREGRADE is starting... -- 22:17:53.372 INFO [11644]: Version from config: 1.0 -- 22:17:53.372 DEBUG [11644]: Connecting to database... -- 22:17:53.372 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:17:53.372 SQL [11644]: pgsql_db_connect() -- 22:17:53.376 DEBUG [11644]: Database connection successful -- 22:17:53.376 INFO [11644]: _SERVER found -- 22:17:53.376 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 22:17:53.376 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 22:17:53.376 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=cl30qn7shr0b0u22jf69uv0orpotb9a1 -- 22:17:53.376 INFO [11644]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:17:53.376 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:17:53.388 INFO [11644]: COREGRADE is stopping... -- 22:17:53.388 DEBUG [11644]: Closing database connection -- 22:17:53.388 SQL [11644]: pgsql_close() -- 22:17:53.433 INFO [11644]: COREGRADE is starting... -- 22:17:53.433 INFO [11644]: Version from config: 1.0 -- 22:17:53.433 DEBUG [11644]: Connecting to database... -- 22:17:53.433 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:17:53.433 SQL [11644]: pgsql_db_connect() -- 22:17:53.437 DEBUG [11644]: Database connection successful -- 22:17:53.437 INFO [11644]: _SERVER found -- 22:17:53.437 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 22:17:53.437 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 22:17:53.437 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=cl30qn7shr0b0u22jf69uv0orpotb9a1 -- 22:17:53.437 INFO [11644]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:17:53.437 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:17:53.448 INFO [11644]: COREGRADE is stopping... -- 22:17:53.448 DEBUG [11644]: Closing database connection -- 22:17:53.448 SQL [11644]: pgsql_close() -- 22:27:04.772 INFO [11636]: COREGRADE is starting... -- 22:27:04.772 INFO [11636]: Version from config: 1.0 -- 22:27:04.772 DEBUG [11636]: Connecting to database... -- 22:27:04.772 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:04.772 SQL [11636]: pgsql_db_connect() -- 22:27:04.777 DEBUG [11636]: Database connection successful -- 22:27:04.777 INFO [11636]: _SERVER found -- 22:27:04.777 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 22:27:04.777 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 22:27:04.777 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=cl30qn7shr0b0u22jf69uv0orpotb9a1 -- 22:27:04.777 INFO [11636]: QUERY_STRING = /member -- 22:27:04.777 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:27:04.814 INFO [11636]: COREGRADE is stopping... -- 22:27:04.814 DEBUG [11636]: Closing database connection -- 22:27:04.814 SQL [11636]: pgsql_close() -- 22:27:05.224 INFO [11636]: COREGRADE is starting... -- 22:27:05.224 INFO [11636]: Version from config: 1.0 -- 22:27:05.224 DEBUG [11636]: Connecting to database... -- 22:27:05.224 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:05.224 SQL [11636]: pgsql_db_connect() -- 22:27:05.228 DEBUG [11636]: Database connection successful -- 22:27:05.228 INFO [11636]: _SERVER found -- 22:27:05.229 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 22:27:05.229 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 22:27:05.229 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=kb74egj3e8gd7sncmsgrm0b8b3cst39n -- 22:27:05.229 INFO [11636]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:27:05.229 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:27:05.240 INFO [11636]: COREGRADE is stopping... -- 22:27:05.240 DEBUG [11636]: Closing database connection -- 22:27:05.240 SQL [11636]: pgsql_close() -- 22:27:05.257 INFO [11636]: COREGRADE is starting... -- 22:27:05.257 INFO [11636]: Version from config: 1.0 -- 22:27:05.257 DEBUG [11636]: Connecting to database... -- 22:27:05.257 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:05.257 SQL [11636]: pgsql_db_connect() -- 22:27:05.261 DEBUG [11636]: Database connection successful -- 22:27:05.261 INFO [11636]: _SERVER found -- 22:27:05.261 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 22:27:05.261 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 22:27:05.261 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=kb74egj3e8gd7sncmsgrm0b8b3cst39n -- 22:27:05.261 INFO [11636]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:27:05.261 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:27:05.272 INFO [11636]: COREGRADE is stopping... -- 22:27:05.272 DEBUG [11636]: Closing database connection -- 22:27:05.272 SQL [11636]: pgsql_close() -- 22:28:17.851 INFO [12764]: COREGRADE is starting... -- 22:28:17.851 INFO [12764]: Version from config: 1.0 -- 22:28:17.851 DEBUG [12764]: Connecting to database... -- 22:28:17.851 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:28:17.851 SQL [12764]: pgsql_db_connect() -- 22:28:17.856 DEBUG [12764]: Database connection successful -- 22:28:17.856 INFO [12764]: _SERVER found -- 22:28:17.856 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 22:28:17.856 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 22:28:17.856 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=uded1i44cqgffmap9cq7bs5021921qdd -- 22:28:17.856 INFO [12764]: QUERY_STRING = /auth -- 22:28:17.856 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:28:17.888 INFO [12764]: COREGRADE is stopping... -- 22:28:17.889 DEBUG [12764]: Closing database connection -- 22:28:17.889 SQL [12764]: pgsql_close() -- 22:28:18.167 INFO [12764]: COREGRADE is starting... -- 22:28:18.167 INFO [12764]: Version from config: 1.0 -- 22:28:18.167 DEBUG [12764]: Connecting to database... -- 22:28:18.167 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:28:18.167 SQL [12764]: pgsql_db_connect() -- 22:28:18.171 DEBUG [12764]: Database connection successful -- 22:28:18.171 INFO [12764]: _SERVER found -- 22:28:18.171 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 22:28:18.171 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 22:28:18.172 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=p7g7q4fahe96u157fuegvld1f20h6qkv -- 22:28:18.172 INFO [12764]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:28:18.172 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:28:18.183 INFO [12764]: COREGRADE is stopping... -- 22:28:18.183 DEBUG [12764]: Closing database connection -- 22:28:18.183 SQL [12764]: pgsql_close() -- 22:28:18.725 INFO [12764]: COREGRADE is starting... -- 22:28:18.725 INFO [12764]: Version from config: 1.0 -- 22:28:18.725 DEBUG [12764]: Connecting to database... -- 22:28:18.725 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:28:18.725 SQL [12764]: pgsql_db_connect() -- 22:28:18.730 DEBUG [12764]: Database connection successful -- 22:28:18.730 INFO [12764]: _SERVER found -- 22:28:18.730 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 22:28:18.730 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 22:28:18.730 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=p7g7q4fahe96u157fuegvld1f20h6qkv -- 22:28:18.730 INFO [12764]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:28:18.730 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:28:18.741 INFO [12764]: COREGRADE is stopping... -- 22:28:18.741 DEBUG [12764]: Closing database connection -- 22:28:18.741 SQL [12764]: pgsql_close() -- 22:32:00.118 INFO [11650]: COREGRADE is starting... -- 22:32:00.118 INFO [11650]: Version from config: 1.0 -- 22:32:00.118 DEBUG [11650]: Connecting to database... -- 22:32:00.118 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:32:00.118 SQL [11650]: pgsql_db_connect() -- 22:32:00.123 DEBUG [11650]: Database connection successful -- 22:32:00.123 INFO [11650]: _SERVER found -- 22:32:00.123 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 22:32:00.123 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 22:32:00.123 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=17etqgkapbaus5bjceml64pvc58gmtp6 -- 22:32:00.123 INFO [11650]: QUERY_STRING = /auth -- 22:32:00.123 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:32:00.156 INFO [11650]: COREGRADE is stopping... -- 22:32:00.156 DEBUG [11650]: Closing database connection -- 22:32:00.156 SQL [11650]: pgsql_close() -- 22:32:00.261 INFO [11650]: COREGRADE is starting... -- 22:32:00.262 INFO [11650]: Version from config: 1.0 -- 22:32:00.262 DEBUG [11650]: Connecting to database... -- 22:32:00.262 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:32:00.262 SQL [11650]: pgsql_db_connect() -- 22:32:00.266 DEBUG [11650]: Database connection successful -- 22:32:00.266 INFO [11650]: _SERVER found -- 22:32:00.266 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 22:32:00.266 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 22:32:00.266 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vr6qq9infh371ojpub54dglpm54efgoq -- 22:32:00.266 INFO [11650]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:32:00.266 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:32:00.277 INFO [11650]: COREGRADE is stopping... -- 22:32:00.277 DEBUG [11650]: Closing database connection -- 22:32:00.277 SQL [11650]: pgsql_close() -- 22:32:00.755 INFO [11650]: COREGRADE is starting... -- 22:32:00.756 INFO [11650]: Version from config: 1.0 -- 22:32:00.756 DEBUG [11650]: Connecting to database... -- 22:32:00.756 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:32:00.756 SQL [11650]: pgsql_db_connect() -- 22:32:00.760 DEBUG [11650]: Database connection successful -- 22:32:00.760 INFO [11650]: _SERVER found -- 22:32:00.760 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 22:32:00.760 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 22:32:00.760 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vr6qq9infh371ojpub54dglpm54efgoq -- 22:32:00.760 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:32:00.760 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:32:00.771 INFO [11650]: COREGRADE is stopping... -- 22:32:00.771 DEBUG [11650]: Closing database connection -- 22:32:00.771 SQL [11650]: pgsql_close() -- 22:35:10.007 INFO [12761]: COREGRADE is starting... -- 22:35:10.007 INFO [12761]: Version from config: 1.0 -- 22:35:10.007 DEBUG [12761]: Connecting to database... -- 22:35:10.007 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:35:10.007 SQL [12761]: pgsql_db_connect() -- 22:35:10.012 DEBUG [12761]: Database connection successful -- 22:35:10.012 INFO [12761]: _SERVER found -- 22:35:10.012 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 22:35:10.012 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 22:35:10.012 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=kb74egj3e8gd7sncmsgrm0b8b3cst39n -- 22:35:10.012 INFO [12761]: QUERY_STRING = /member/page -- 22:35:10.012 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:35:10.051 INFO [12761]: COREGRADE is stopping... -- 22:35:10.051 DEBUG [12761]: Closing database connection -- 22:35:10.051 SQL [12761]: pgsql_close() -- 22:35:10.505 INFO [12761]: COREGRADE is starting... -- 22:35:10.505 INFO [12761]: Version from config: 1.0 -- 22:35:10.505 DEBUG [12761]: Connecting to database... -- 22:35:10.505 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:35:10.505 SQL [12761]: pgsql_db_connect() -- 22:35:10.509 DEBUG [12761]: Database connection successful -- 22:35:10.509 INFO [12761]: _SERVER found -- 22:35:10.509 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 22:35:10.509 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 22:35:10.509 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9qhmj37hfved0kd70hrg9mihm14q9isq -- 22:35:10.509 INFO [12761]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:35:10.509 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:35:10.520 INFO [12761]: COREGRADE is stopping... -- 22:35:10.520 DEBUG [12761]: Closing database connection -- 22:35:10.520 SQL [12761]: pgsql_close() -- 22:35:10.532 INFO [11637]: COREGRADE is starting... -- 22:35:10.533 INFO [11637]: Version from config: 1.0 -- 22:35:10.533 DEBUG [11637]: Connecting to database... -- 22:35:10.533 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:35:10.533 SQL [11637]: pgsql_db_connect() -- 22:35:10.537 DEBUG [11637]: Database connection successful -- 22:35:10.537 INFO [11637]: _SERVER found -- 22:35:10.537 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 22:35:10.537 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 22:35:10.537 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9qhmj37hfved0kd70hrg9mihm14q9isq -- 22:35:10.537 INFO [11637]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:35:10.537 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:35:10.549 INFO [11637]: COREGRADE is stopping... -- 22:35:10.549 DEBUG [11637]: Closing database connection -- 22:35:10.549 SQL [11637]: pgsql_close() -- 22:38:24.255 INFO [12763]: COREGRADE is starting... -- 22:38:24.256 INFO [12763]: Version from config: 1.0 -- 22:38:24.256 DEBUG [12763]: Connecting to database... -- 22:38:24.256 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:38:24.256 SQL [12763]: pgsql_db_connect() -- 22:38:24.260 DEBUG [12763]: Database connection successful -- 22:38:24.260 INFO [12763]: _SERVER found -- 22:38:24.260 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 22:38:24.260 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 22:38:24.260 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9qhmj37hfved0kd70hrg9mihm14q9isq -- 22:38:24.260 INFO [12763]: QUERY_STRING = /member/configure -- 22:38:24.260 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:38:24.297 INFO [12763]: COREGRADE is stopping... -- 22:38:24.298 DEBUG [12763]: Closing database connection -- 22:38:24.298 SQL [12763]: pgsql_close() -- 22:38:24.695 INFO [12763]: COREGRADE is starting... -- 22:38:24.696 INFO [12763]: Version from config: 1.0 -- 22:38:24.696 DEBUG [12763]: Connecting to database... -- 22:38:24.696 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:38:24.696 SQL [12763]: pgsql_db_connect() -- 22:38:24.700 DEBUG [12763]: Database connection successful -- 22:38:24.700 INFO [12763]: _SERVER found -- 22:38:24.700 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 22:38:24.700 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 22:38:24.700 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9qhmj37hfved0kd70hrg9mihm14q9isq -- 22:38:24.700 INFO [12763]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:38:24.700 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:38:24.711 INFO [12763]: COREGRADE is stopping... -- 22:38:24.711 DEBUG [12763]: Closing database connection -- 22:38:24.711 SQL [12763]: pgsql_close() -- 22:38:24.719 INFO [11652]: COREGRADE is starting... -- 22:38:24.719 INFO [11652]: Version from config: 1.0 -- 22:38:24.719 DEBUG [11652]: Connecting to database... -- 22:38:24.719 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:38:24.719 SQL [11652]: pgsql_db_connect() -- 22:38:24.723 DEBUG [11652]: Database connection successful -- 22:38:24.723 INFO [11652]: _SERVER found -- 22:38:24.723 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 22:38:24.723 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 22:38:24.723 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9qhmj37hfved0kd70hrg9mihm14q9isq -- 22:38:24.723 INFO [11652]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:38:24.723 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:38:24.735 INFO [11652]: COREGRADE is stopping... -- 22:38:24.735 DEBUG [11652]: Closing database connection -- 22:38:24.735 SQL [11652]: pgsql_close() -- 22:38:33.655 INFO [11638]: COREGRADE is starting... -- 22:38:33.655 INFO [11638]: Version from config: 1.0 -- 22:38:33.655 DEBUG [11638]: Connecting to database... -- 22:38:33.655 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:38:33.655 SQL [11638]: pgsql_db_connect() -- 22:38:33.660 DEBUG [11638]: Database connection successful -- 22:38:33.660 INFO [11638]: _SERVER found -- 22:38:33.660 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 22:38:33.660 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 22:38:33.660 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9qhmj37hfved0kd70hrg9mihm14q9isq -- 22:38:33.660 INFO [11638]: QUERY_STRING = /member -- 22:38:33.660 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:38:33.695 INFO [11638]: COREGRADE is stopping... -- 22:38:33.695 DEBUG [11638]: Closing database connection -- 22:38:33.695 SQL [11638]: pgsql_close() -- 22:38:33.919 INFO [11638]: COREGRADE is starting... -- 22:38:33.920 INFO [11638]: Version from config: 1.0 -- 22:38:33.920 DEBUG [11638]: Connecting to database... -- 22:38:33.920 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:38:33.920 SQL [11638]: pgsql_db_connect() -- 22:38:33.924 DEBUG [11638]: Database connection successful -- 22:38:33.924 INFO [11638]: _SERVER found -- 22:38:33.924 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 22:38:33.924 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 22:38:33.924 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9qhmj37hfved0kd70hrg9mihm14q9isq -- 22:38:33.924 INFO [11638]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:38:33.924 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:38:33.935 INFO [11638]: COREGRADE is stopping... -- 22:38:33.935 DEBUG [11638]: Closing database connection -- 22:38:33.935 SQL [11638]: pgsql_close() -- 22:38:33.937 INFO [11644]: COREGRADE is starting... -- 22:38:33.937 INFO [11644]: Version from config: 1.0 -- 22:38:33.937 DEBUG [11644]: Connecting to database... -- 22:38:33.937 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:38:33.937 SQL [11644]: pgsql_db_connect() -- 22:38:33.941 DEBUG [11644]: Database connection successful -- 22:38:33.941 INFO [11644]: _SERVER found -- 22:38:33.941 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 22:38:33.941 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 22:38:33.941 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9qhmj37hfved0kd70hrg9mihm14q9isq -- 22:38:33.941 INFO [11644]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:38:33.941 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:38:33.952 INFO [11644]: COREGRADE is stopping... -- 22:38:33.953 DEBUG [11644]: Closing database connection -- 22:38:33.953 SQL [11644]: pgsql_close() -- 22:38:36.985 INFO [11644]: COREGRADE is starting... -- 22:38:36.986 INFO [11644]: Version from config: 1.0 -- 22:38:36.986 DEBUG [11644]: Connecting to database... -- 22:38:36.986 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:38:36.986 SQL [11644]: pgsql_db_connect() -- 22:38:36.990 DEBUG [11644]: Database connection successful -- 22:38:36.990 INFO [11644]: _SERVER found -- 22:38:36.990 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 22:38:36.990 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 22:38:36.990 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9qhmj37hfved0kd70hrg9mihm14q9isq -- 22:38:36.990 INFO [11644]: QUERY_STRING = /member/page -- 22:38:36.990 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:38:37.026 INFO [11644]: COREGRADE is stopping... -- 22:38:37.026 DEBUG [11644]: Closing database connection -- 22:38:37.026 SQL [11644]: pgsql_close() -- 22:38:37.223 INFO [11644]: COREGRADE is starting... -- 22:38:37.224 INFO [11644]: Version from config: 1.0 -- 22:38:37.224 DEBUG [11644]: Connecting to database... -- 22:38:37.224 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:38:37.224 SQL [11644]: pgsql_db_connect() -- 22:38:37.231 INFO [11638]: COREGRADE is starting... -- 22:38:37.231 INFO [11638]: Version from config: 1.0 -- 22:38:37.231 DEBUG [11638]: Connecting to database... -- 22:38:37.231 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:38:37.231 SQL [11638]: pgsql_db_connect() -- 22:38:37.228 DEBUG [11644]: Database connection successful -- 22:38:37.228 INFO [11644]: _SERVER found -- 22:38:37.228 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 22:38:37.228 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 22:38:37.228 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9qhmj37hfved0kd70hrg9mihm14q9isq -- 22:38:37.228 INFO [11644]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:38:37.228 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:38:37.239 INFO [11644]: COREGRADE is stopping... -- 22:38:37.239 DEBUG [11644]: Closing database connection -- 22:38:37.239 SQL [11644]: pgsql_close() -- 22:38:37.235 DEBUG [11638]: Database connection successful -- 22:38:37.235 INFO [11638]: _SERVER found -- 22:38:37.235 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 22:38:37.235 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 22:38:37.235 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9qhmj37hfved0kd70hrg9mihm14q9isq -- 22:38:37.235 INFO [11638]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:38:37.235 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:38:37.246 INFO [11638]: COREGRADE is stopping... -- 22:38:37.246 DEBUG [11638]: Closing database connection -- 22:38:37.246 SQL [11638]: pgsql_close() -- 22:39:32.691 INFO [11636]: COREGRADE is starting... -- 22:39:32.691 INFO [11636]: Version from config: 1.0 -- 22:39:32.691 DEBUG [11636]: Connecting to database... -- 22:39:32.691 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:39:32.691 SQL [11636]: pgsql_db_connect() -- 22:39:32.695 DEBUG [11636]: Database connection successful -- 22:39:32.695 INFO [11636]: _SERVER found -- 22:39:32.695 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 22:39:32.695 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 22:39:32.695 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9qhmj37hfved0kd70hrg9mihm14q9isq -- 22:39:32.695 INFO [11636]: QUERY_STRING = /member/configure -- 22:39:32.695 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:39:32.732 INFO [11636]: COREGRADE is stopping... -- 22:39:32.732 DEBUG [11636]: Closing database connection -- 22:39:32.732 SQL [11636]: pgsql_close() -- 22:39:33.105 INFO [11636]: COREGRADE is starting... -- 22:39:33.105 INFO [11636]: Version from config: 1.0 -- 22:39:33.105 DEBUG [11636]: Connecting to database... -- 22:39:33.105 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:39:33.105 SQL [11636]: pgsql_db_connect() -- 22:39:33.109 DEBUG [11636]: Database connection successful -- 22:39:33.109 INFO [11636]: _SERVER found -- 22:39:33.109 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 22:39:33.109 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 22:39:33.109 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9qhmj37hfved0kd70hrg9mihm14q9isq -- 22:39:33.109 INFO [11636]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:39:33.109 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:39:33.120 INFO [11636]: COREGRADE is stopping... -- 22:39:33.121 DEBUG [11636]: Closing database connection -- 22:39:33.121 SQL [11636]: pgsql_close() -- 22:39:33.145 INFO [12764]: COREGRADE is starting... -- 22:39:33.146 INFO [12764]: Version from config: 1.0 -- 22:39:33.146 DEBUG [12764]: Connecting to database... -- 22:39:33.146 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:39:33.146 SQL [12764]: pgsql_db_connect() -- 22:39:33.150 DEBUG [12764]: Database connection successful -- 22:39:33.150 INFO [12764]: _SERVER found -- 22:39:33.150 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 22:39:33.150 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 22:39:33.150 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9qhmj37hfved0kd70hrg9mihm14q9isq -- 22:39:33.150 INFO [12764]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:39:33.150 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:39:33.161 INFO [12764]: COREGRADE is stopping... -- 22:39:33.161 DEBUG [12764]: Closing database connection -- 22:39:33.161 SQL [12764]: pgsql_close() -- 22:39:36.208 INFO [11639]: COREGRADE is starting... -- 22:39:36.209 INFO [11639]: Version from config: 1.0 -- 22:39:36.209 DEBUG [11639]: Connecting to database... -- 22:39:36.209 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:39:36.209 SQL [11639]: pgsql_db_connect() -- 22:39:36.213 DEBUG [11639]: Database connection successful -- 22:39:36.213 INFO [11639]: _SERVER found -- 22:39:36.213 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 22:39:36.213 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 22:39:36.213 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9qhmj37hfved0kd70hrg9mihm14q9isq -- 22:39:36.213 INFO [11639]: QUERY_STRING = /member -- 22:39:36.213 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:39:36.248 INFO [11639]: COREGRADE is stopping... -- 22:39:36.248 DEBUG [11639]: Closing database connection -- 22:39:36.248 SQL [11639]: pgsql_close() -- 22:39:36.475 INFO [11639]: COREGRADE is starting... -- 22:39:36.475 INFO [11639]: Version from config: 1.0 -- 22:39:36.475 DEBUG [11639]: Connecting to database... -- 22:39:36.475 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:39:36.476 SQL [11639]: pgsql_db_connect() -- 22:39:36.480 DEBUG [11639]: Database connection successful -- 22:39:36.480 INFO [11639]: _SERVER found -- 22:39:36.480 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 22:39:36.480 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 22:39:36.480 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9qhmj37hfved0kd70hrg9mihm14q9isq -- 22:39:36.480 INFO [11639]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:39:36.480 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:39:36.491 INFO [11639]: COREGRADE is stopping... -- 22:39:36.491 DEBUG [11639]: Closing database connection -- 22:39:36.491 SQL [11639]: pgsql_close() -- 22:39:36.492 INFO [11650]: COREGRADE is starting... -- 22:39:36.492 INFO [11650]: Version from config: 1.0 -- 22:39:36.492 DEBUG [11650]: Connecting to database... -- 22:39:36.492 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:39:36.492 SQL [11650]: pgsql_db_connect() -- 22:39:36.496 DEBUG [11650]: Database connection successful -- 22:39:36.496 INFO [11650]: _SERVER found -- 22:39:36.496 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 22:39:36.496 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 22:39:36.496 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9qhmj37hfved0kd70hrg9mihm14q9isq -- 22:39:36.496 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:39:36.496 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:39:36.508 INFO [11650]: COREGRADE is stopping... -- 22:39:36.508 DEBUG [11650]: Closing database connection -- 22:39:36.508 SQL [11650]: pgsql_close() -- 22:39:37.265 INFO [11650]: COREGRADE is starting... -- 22:39:37.265 INFO [11650]: Version from config: 1.0 -- 22:39:37.265 DEBUG [11650]: Connecting to database... -- 22:39:37.265 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:39:37.265 SQL [11650]: pgsql_db_connect() -- 22:39:37.270 DEBUG [11650]: Database connection successful -- 22:39:37.270 INFO [11650]: _SERVER found -- 22:39:37.270 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 22:39:37.270 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 22:39:37.270 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9qhmj37hfved0kd70hrg9mihm14q9isq -- 22:39:37.270 INFO [11650]: QUERY_STRING = /member/page -- 22:39:37.270 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:39:37.306 INFO [11650]: COREGRADE is stopping... -- 22:39:37.306 DEBUG [11650]: Closing database connection -- 22:39:37.306 SQL [11650]: pgsql_close() -- 22:39:37.571 INFO [11650]: COREGRADE is starting... -- 22:39:37.572 INFO [11650]: Version from config: 1.0 -- 22:39:37.572 DEBUG [11650]: Connecting to database... -- 22:39:37.572 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:39:37.572 SQL [11650]: pgsql_db_connect() -- 22:39:37.580 INFO [11639]: COREGRADE is starting... -- 22:39:37.581 INFO [11639]: Version from config: 1.0 -- 22:39:37.581 DEBUG [11639]: Connecting to database... -- 22:39:37.581 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:39:37.581 SQL [11639]: pgsql_db_connect() -- 22:39:37.576 DEBUG [11650]: Database connection successful -- 22:39:37.576 INFO [11650]: _SERVER found -- 22:39:37.576 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 22:39:37.576 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 22:39:37.576 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9qhmj37hfved0kd70hrg9mihm14q9isq -- 22:39:37.576 INFO [11650]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:39:37.576 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:39:37.587 INFO [11650]: COREGRADE is stopping... -- 22:39:37.587 DEBUG [11650]: Closing database connection -- 22:39:37.587 SQL [11650]: pgsql_close() -- 22:39:37.585 DEBUG [11639]: Database connection successful -- 22:39:37.585 INFO [11639]: _SERVER found -- 22:39:37.585 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 22:39:37.585 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 22:39:37.585 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9qhmj37hfved0kd70hrg9mihm14q9isq -- 22:39:37.585 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:39:37.585 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:39:37.596 INFO [11639]: COREGRADE is stopping... -- 22:39:37.596 DEBUG [11639]: Closing database connection -- 22:39:37.596 SQL [11639]: pgsql_close() -- 22:40:34.913 INFO [12761]: COREGRADE is starting... -- 22:40:34.913 INFO [12761]: Version from config: 1.0 -- 22:40:34.913 DEBUG [12761]: Connecting to database... -- 22:40:34.913 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:40:34.913 SQL [12761]: pgsql_db_connect() -- 22:40:34.917 DEBUG [12761]: Database connection successful -- 22:40:34.917 INFO [12761]: _SERVER found -- 22:40:34.917 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 22:40:34.917 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 22:40:34.917 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9qhmj37hfved0kd70hrg9mihm14q9isq -- 22:40:34.917 INFO [12761]: QUERY_STRING = /member -- 22:40:34.917 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:40:34.953 INFO [12761]: COREGRADE is stopping... -- 22:40:34.953 DEBUG [12761]: Closing database connection -- 22:40:34.953 SQL [12761]: pgsql_close() -- 22:40:35.388 INFO [12761]: COREGRADE is starting... -- 22:40:35.388 INFO [12761]: Version from config: 1.0 -- 22:40:35.388 DEBUG [12761]: Connecting to database... -- 22:40:35.388 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:40:35.388 SQL [12761]: pgsql_db_connect() -- 22:40:35.392 DEBUG [12761]: Database connection successful -- 22:40:35.392 INFO [12761]: _SERVER found -- 22:40:35.392 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 22:40:35.392 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 22:40:35.392 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=s67q9a9usotsigpvk4j2pa94h62s1r2b -- 22:40:35.392 INFO [12761]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:40:35.392 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:40:35.403 INFO [12761]: COREGRADE is stopping... -- 22:40:35.404 DEBUG [12761]: Closing database connection -- 22:40:35.404 SQL [12761]: pgsql_close() -- 22:40:35.420 INFO [12761]: COREGRADE is starting... -- 22:40:35.421 INFO [12761]: Version from config: 1.0 -- 22:40:35.421 DEBUG [12761]: Connecting to database... -- 22:40:35.421 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:40:35.421 SQL [12761]: pgsql_db_connect() -- 22:40:35.425 DEBUG [12761]: Database connection successful -- 22:40:35.425 INFO [12761]: _SERVER found -- 22:40:35.425 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 22:40:35.425 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 22:40:35.425 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=s67q9a9usotsigpvk4j2pa94h62s1r2b -- 22:40:35.425 INFO [12761]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:40:35.425 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:40:35.435 INFO [12761]: COREGRADE is stopping... -- 22:40:35.435 DEBUG [12761]: Closing database connection -- 22:40:35.435 SQL [12761]: pgsql_close() -- 22:40:37.410 INFO [12761]: COREGRADE is starting... -- 22:40:37.410 INFO [12761]: Version from config: 1.0 -- 22:40:37.410 DEBUG [12761]: Connecting to database... -- 22:40:37.410 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:40:37.410 SQL [12761]: pgsql_db_connect() -- 22:40:37.414 DEBUG [12761]: Database connection successful -- 22:40:37.414 INFO [12761]: _SERVER found -- 22:40:37.414 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 22:40:37.414 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 22:40:37.414 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=s67q9a9usotsigpvk4j2pa94h62s1r2b -- 22:40:37.414 INFO [12761]: QUERY_STRING = /member/page -- 22:40:37.414 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:40:37.450 INFO [12761]: COREGRADE is stopping... -- 22:40:37.450 DEBUG [12761]: Closing database connection -- 22:40:37.450 SQL [12761]: pgsql_close() -- 22:40:37.732 INFO [12761]: COREGRADE is starting... -- 22:40:37.732 INFO [12761]: Version from config: 1.0 -- 22:40:37.732 DEBUG [12761]: Connecting to database... -- 22:40:37.732 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:40:37.732 SQL [12761]: pgsql_db_connect() -- 22:40:37.747 INFO [11637]: COREGRADE is starting... -- 22:40:37.747 INFO [11637]: Version from config: 1.0 -- 22:40:37.747 DEBUG [11637]: Connecting to database... -- 22:40:37.747 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:40:37.747 SQL [11637]: pgsql_db_connect() -- 22:40:37.736 DEBUG [12761]: Database connection successful -- 22:40:37.736 INFO [12761]: _SERVER found -- 22:40:37.736 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 22:40:37.736 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 22:40:37.736 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=s67q9a9usotsigpvk4j2pa94h62s1r2b -- 22:40:37.736 INFO [12761]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:40:37.736 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:40:37.748 INFO [12761]: COREGRADE is stopping... -- 22:40:37.748 DEBUG [12761]: Closing database connection -- 22:40:37.748 SQL [12761]: pgsql_close() -- 22:40:37.751 DEBUG [11637]: Database connection successful -- 22:40:37.751 INFO [11637]: _SERVER found -- 22:40:37.751 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 22:40:37.751 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 22:40:37.751 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=s67q9a9usotsigpvk4j2pa94h62s1r2b -- 22:40:37.751 INFO [11637]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:40:37.751 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:40:37.763 INFO [11637]: COREGRADE is stopping... -- 22:40:37.763 DEBUG [11637]: Closing database connection -- 22:40:37.763 SQL [11637]: pgsql_close() -- 22:40:41.503 INFO [11637]: COREGRADE is starting... -- 22:40:41.503 INFO [11637]: Version from config: 1.0 -- 22:40:41.503 DEBUG [11637]: Connecting to database... -- 22:40:41.503 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:40:41.503 SQL [11637]: pgsql_db_connect() -- 22:40:41.508 DEBUG [11637]: Database connection successful -- 22:40:41.508 INFO [11637]: _SERVER found -- 22:40:41.508 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 22:40:41.508 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 22:40:41.508 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=s67q9a9usotsigpvk4j2pa94h62s1r2b -- 22:40:41.508 INFO [11637]: QUERY_STRING = /member/configure -- 22:40:41.508 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:40:41.545 INFO [11637]: COREGRADE is stopping... -- 22:40:41.545 DEBUG [11637]: Closing database connection -- 22:40:41.545 SQL [11637]: pgsql_close() -- 22:40:41.899 INFO [11637]: COREGRADE is starting... -- 22:40:41.900 INFO [11637]: Version from config: 1.0 -- 22:40:41.900 DEBUG [11637]: Connecting to database... -- 22:40:41.900 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:40:41.900 SQL [11637]: pgsql_db_connect() -- 22:40:41.913 INFO [12761]: COREGRADE is starting... -- 22:40:41.913 INFO [12761]: Version from config: 1.0 -- 22:40:41.913 DEBUG [12761]: Connecting to database... -- 22:40:41.913 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:40:41.913 SQL [12761]: pgsql_db_connect() -- 22:40:41.904 DEBUG [11637]: Database connection successful -- 22:40:41.904 INFO [11637]: _SERVER found -- 22:40:41.904 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 22:40:41.904 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 22:40:41.904 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=s67q9a9usotsigpvk4j2pa94h62s1r2b -- 22:40:41.904 INFO [11637]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:40:41.904 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:40:41.915 INFO [11637]: COREGRADE is stopping... -- 22:40:41.915 DEBUG [11637]: Closing database connection -- 22:40:41.915 SQL [11637]: pgsql_close() -- 22:40:41.918 DEBUG [12761]: Database connection successful -- 22:40:41.918 INFO [12761]: _SERVER found -- 22:40:41.918 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 22:40:41.918 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 22:40:41.918 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=s67q9a9usotsigpvk4j2pa94h62s1r2b -- 22:40:41.918 INFO [12761]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:40:41.918 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:40:41.929 INFO [12761]: COREGRADE is stopping... -- 22:40:41.929 DEBUG [12761]: Closing database connection -- 22:40:41.929 SQL [12761]: pgsql_close() -- 22:41:40.121 INFO [12763]: COREGRADE is starting... -- 22:41:40.122 INFO [12763]: Version from config: 1.0 -- 22:41:40.122 DEBUG [12763]: Connecting to database... -- 22:41:40.122 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:41:40.122 SQL [12763]: pgsql_db_connect() -- 22:41:40.126 DEBUG [12763]: Database connection successful -- 22:41:40.126 INFO [12763]: _SERVER found -- 22:41:40.126 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 22:41:40.126 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 22:41:40.126 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=s67q9a9usotsigpvk4j2pa94h62s1r2b -- 22:41:40.126 INFO [12763]: QUERY_STRING = /member -- 22:41:40.126 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:41:40.162 INFO [12763]: COREGRADE is stopping... -- 22:41:40.162 DEBUG [12763]: Closing database connection -- 22:41:40.162 SQL [12763]: pgsql_close() -- 22:41:40.536 INFO [12763]: COREGRADE is starting... -- 22:41:40.536 INFO [12763]: Version from config: 1.0 -- 22:41:40.536 DEBUG [12763]: Connecting to database... -- 22:41:40.536 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:41:40.536 SQL [12763]: pgsql_db_connect() -- 22:41:40.541 DEBUG [12763]: Database connection successful -- 22:41:40.541 INFO [12763]: _SERVER found -- 22:41:40.541 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 22:41:40.541 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 22:41:40.541 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=s67q9a9usotsigpvk4j2pa94h62s1r2b -- 22:41:40.541 INFO [12763]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:41:40.541 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:41:40.552 INFO [12763]: COREGRADE is stopping... -- 22:41:40.552 DEBUG [12763]: Closing database connection -- 22:41:40.552 SQL [12763]: pgsql_close() -- 22:41:40.563 INFO [11652]: COREGRADE is starting... -- 22:41:40.563 INFO [11652]: Version from config: 1.0 -- 22:41:40.563 DEBUG [11652]: Connecting to database... -- 22:41:40.563 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:41:40.563 SQL [11652]: pgsql_db_connect() -- 22:41:40.567 DEBUG [11652]: Database connection successful -- 22:41:40.567 INFO [11652]: _SERVER found -- 22:41:40.567 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 22:41:40.567 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 22:41:40.567 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=s67q9a9usotsigpvk4j2pa94h62s1r2b -- 22:41:40.567 INFO [11652]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:41:40.567 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:41:40.578 INFO [11652]: COREGRADE is stopping... -- 22:41:40.579 DEBUG [11652]: Closing database connection -- 22:41:40.579 SQL [11652]: pgsql_close() -- 22:41:42.652 INFO [11652]: COREGRADE is starting... -- 22:41:42.652 INFO [11652]: Version from config: 1.0 -- 22:41:42.652 DEBUG [11652]: Connecting to database... -- 22:41:42.652 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:41:42.652 SQL [11652]: pgsql_db_connect() -- 22:41:42.656 DEBUG [11652]: Database connection successful -- 22:41:42.656 INFO [11652]: _SERVER found -- 22:41:42.656 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 22:41:42.656 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 22:41:42.656 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=s67q9a9usotsigpvk4j2pa94h62s1r2b -- 22:41:42.656 INFO [11652]: QUERY_STRING = /member/page -- 22:41:42.656 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:41:42.692 INFO [11652]: COREGRADE is stopping... -- 22:41:42.692 DEBUG [11652]: Closing database connection -- 22:41:42.692 SQL [11652]: pgsql_close() -- 22:41:43.040 INFO [11652]: COREGRADE is starting... -- 22:41:43.040 INFO [11652]: Version from config: 1.0 -- 22:41:43.040 DEBUG [11652]: Connecting to database... -- 22:41:43.040 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:41:43.040 SQL [11652]: pgsql_db_connect() -- 22:41:43.047 INFO [12763]: COREGRADE is starting... -- 22:41:43.047 INFO [12763]: Version from config: 1.0 -- 22:41:43.047 DEBUG [12763]: Connecting to database... -- 22:41:43.047 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:41:43.047 SQL [12763]: pgsql_db_connect() -- 22:41:43.044 DEBUG [11652]: Database connection successful -- 22:41:43.044 INFO [11652]: _SERVER found -- 22:41:43.044 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 22:41:43.044 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 22:41:43.044 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=s67q9a9usotsigpvk4j2pa94h62s1r2b -- 22:41:43.044 INFO [11652]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:41:43.044 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:41:43.056 INFO [11652]: COREGRADE is stopping... -- 22:41:43.056 DEBUG [11652]: Closing database connection -- 22:41:43.056 SQL [11652]: pgsql_close() -- 22:41:43.051 DEBUG [12763]: Database connection successful -- 22:41:43.051 INFO [12763]: _SERVER found -- 22:41:43.051 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 22:41:43.051 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 22:41:43.051 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=s67q9a9usotsigpvk4j2pa94h62s1r2b -- 22:41:43.051 INFO [12763]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:41:43.051 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:41:43.062 INFO [12763]: COREGRADE is stopping... -- 22:41:43.062 DEBUG [12763]: Closing database connection -- 22:41:43.062 SQL [12763]: pgsql_close() -- 22:42:18.019 INFO [11644]: COREGRADE is starting... -- 22:42:18.019 INFO [11644]: Version from config: 1.0 -- 22:42:18.019 DEBUG [11644]: Connecting to database... -- 22:42:18.019 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:42:18.019 SQL [11644]: pgsql_db_connect() -- 22:42:18.023 DEBUG [11644]: Database connection successful -- 22:42:18.023 INFO [11644]: _SERVER found -- 22:42:18.023 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 22:42:18.023 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 22:42:18.023 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=s67q9a9usotsigpvk4j2pa94h62s1r2b -- 22:42:18.023 INFO [11644]: QUERY_STRING = /member -- 22:42:18.023 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:42:18.059 INFO [11644]: COREGRADE is stopping... -- 22:42:18.059 DEBUG [11644]: Closing database connection -- 22:42:18.059 SQL [11644]: pgsql_close() -- 22:42:18.398 INFO [11644]: COREGRADE is starting... -- 22:42:18.399 INFO [11644]: Version from config: 1.0 -- 22:42:18.399 DEBUG [11644]: Connecting to database... -- 22:42:18.399 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:42:18.399 SQL [11644]: pgsql_db_connect() -- 22:42:18.403 DEBUG [11644]: Database connection successful -- 22:42:18.403 INFO [11644]: _SERVER found -- 22:42:18.403 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 22:42:18.403 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 22:42:18.403 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=s67q9a9usotsigpvk4j2pa94h62s1r2b -- 22:42:18.403 INFO [11644]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:42:18.403 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:42:18.414 INFO [11644]: COREGRADE is stopping... -- 22:42:18.414 DEBUG [11644]: Closing database connection -- 22:42:18.414 SQL [11644]: pgsql_close() -- 22:42:18.434 INFO [11644]: COREGRADE is starting... -- 22:42:18.434 INFO [11644]: Version from config: 1.0 -- 22:42:18.434 DEBUG [11644]: Connecting to database... -- 22:42:18.434 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:42:18.434 SQL [11644]: pgsql_db_connect() -- 22:42:18.438 DEBUG [11644]: Database connection successful -- 22:42:18.438 INFO [11644]: _SERVER found -- 22:42:18.438 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 22:42:18.438 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 22:42:18.438 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=s67q9a9usotsigpvk4j2pa94h62s1r2b -- 22:42:18.438 INFO [11644]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:42:18.438 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:42:18.449 INFO [11644]: COREGRADE is stopping... -- 22:42:18.449 DEBUG [11644]: Closing database connection -- 22:42:18.449 SQL [11644]: pgsql_close() -- 22:42:19.321 INFO [11644]: COREGRADE is starting... -- 22:42:19.322 INFO [11644]: Version from config: 1.0 -- 22:42:19.322 DEBUG [11644]: Connecting to database... -- 22:42:19.322 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:42:19.322 SQL [11644]: pgsql_db_connect() -- 22:42:19.326 DEBUG [11644]: Database connection successful -- 22:42:19.326 INFO [11644]: _SERVER found -- 22:42:19.326 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 22:42:19.326 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 22:42:19.326 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=s67q9a9usotsigpvk4j2pa94h62s1r2b -- 22:42:19.326 INFO [11644]: QUERY_STRING = /member/page -- 22:42:19.326 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:42:19.361 INFO [11644]: COREGRADE is stopping... -- 22:42:19.361 DEBUG [11644]: Closing database connection -- 22:42:19.361 SQL [11644]: pgsql_close() -- 22:42:19.698 INFO [11644]: COREGRADE is starting... -- 22:42:19.699 INFO [11644]: Version from config: 1.0 -- 22:42:19.699 DEBUG [11644]: Connecting to database... -- 22:42:19.699 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:42:19.699 SQL [11644]: pgsql_db_connect() -- 22:42:19.703 DEBUG [11644]: Database connection successful -- 22:42:19.703 INFO [11644]: _SERVER found -- 22:42:19.703 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 22:42:19.703 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 22:42:19.703 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=s67q9a9usotsigpvk4j2pa94h62s1r2b -- 22:42:19.703 INFO [11644]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:42:19.703 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:42:19.714 INFO [11644]: COREGRADE is stopping... -- 22:42:19.714 DEBUG [11644]: Closing database connection -- 22:42:19.714 SQL [11644]: pgsql_close() -- 22:42:19.722 INFO [11638]: COREGRADE is starting... -- 22:42:19.723 INFO [11638]: Version from config: 1.0 -- 22:42:19.723 DEBUG [11638]: Connecting to database... -- 22:42:19.723 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:42:19.723 SQL [11638]: pgsql_db_connect() -- 22:42:19.726 DEBUG [11638]: Database connection successful -- 22:42:19.726 INFO [11638]: _SERVER found -- 22:42:19.726 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 22:42:19.726 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 22:42:19.726 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=s67q9a9usotsigpvk4j2pa94h62s1r2b -- 22:42:19.726 INFO [11638]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:42:19.726 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:42:19.738 INFO [11638]: COREGRADE is stopping... -- 22:42:19.738 DEBUG [11638]: Closing database connection -- 22:42:19.738 SQL [11638]: pgsql_close() -- 22:43:29.875 INFO [11636]: COREGRADE is starting... -- 22:43:29.876 INFO [11636]: Version from config: 1.0 -- 22:43:29.876 DEBUG [11636]: Connecting to database... -- 22:43:29.876 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:43:29.876 SQL [11636]: pgsql_db_connect() -- 22:43:29.880 DEBUG [11636]: Database connection successful -- 22:43:29.880 INFO [11636]: _SERVER found -- 22:43:29.880 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 22:43:29.880 INFO [11636]: SERVER_NAME = tokslaw.works.coregrade.com -- 22:43:29.880 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361 -- 22:43:29.880 INFO [11636]: QUERY_STRING = -- 22:43:29.880 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:43:29.919 INFO [11636]: COREGRADE is stopping... -- 22:43:29.919 DEBUG [11636]: Closing database connection -- 22:43:29.919 SQL [11636]: pgsql_close() -- 22:47:53.029 INFO [12764]: COREGRADE is starting... -- 22:47:53.030 INFO [12764]: Version from config: 1.0 -- 22:47:53.030 DEBUG [12764]: Connecting to database... -- 22:47:53.030 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:53.030 SQL [12764]: pgsql_db_connect() -- 22:47:53.034 DEBUG [12764]: Database connection successful -- 22:47:53.034 INFO [12764]: _SERVER found -- 22:47:53.034 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 22:47:53.034 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 22:47:53.034 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=s67q9a9usotsigpvk4j2pa94h62s1r2b -- 22:47:53.034 INFO [12764]: QUERY_STRING = -- 22:47:53.034 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:47:53.072 INFO [12764]: COREGRADE is stopping... -- 22:47:53.072 DEBUG [12764]: Closing database connection -- 22:47:53.072 SQL [12764]: pgsql_close() -- 22:47:53.356 INFO [12764]: COREGRADE is starting... -- 22:47:53.356 INFO [12764]: Version from config: 1.0 -- 22:47:53.356 DEBUG [12764]: Connecting to database... -- 22:47:53.356 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:53.356 SQL [12764]: pgsql_db_connect() -- 22:47:53.365 INFO [11650]: COREGRADE is starting... -- 22:47:53.365 INFO [11650]: Version from config: 1.0 -- 22:47:53.365 DEBUG [11650]: Connecting to database... -- 22:47:53.365 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:53.365 SQL [11650]: pgsql_db_connect() -- 22:47:53.360 DEBUG [12764]: Database connection successful -- 22:47:53.360 INFO [12764]: _SERVER found -- 22:47:53.360 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 22:47:53.360 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 22:47:53.360 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=78lqco8egeilh80fj25cn3rdt3kopu15 -- 22:47:53.360 INFO [12764]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 22:47:53.360 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:47:53.371 INFO [12764]: COREGRADE is stopping... -- 22:47:53.371 DEBUG [12764]: Closing database connection -- 22:47:53.371 SQL [12764]: pgsql_close() -- 22:47:53.369 DEBUG [11650]: Database connection successful -- 22:47:53.369 INFO [11650]: _SERVER found -- 22:47:53.369 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 22:47:53.369 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 22:47:53.369 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=78lqco8egeilh80fj25cn3rdt3kopu15 -- 22:47:53.369 INFO [11650]: QUERY_STRING = /assets/img/footer_1.jpg -- 22:47:53.369 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:47:53.380 INFO [11650]: COREGRADE is stopping... -- 22:47:53.381 DEBUG [11650]: Closing database connection -- 22:47:53.381 SQL [11650]: pgsql_close() -- 22:48:24.850 INFO [11639]: COREGRADE is starting... -- 22:48:24.850 INFO [11639]: Version from config: 1.0 -- 22:48:24.850 DEBUG [11639]: Connecting to database... -- 22:48:24.850 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:48:24.850 SQL [11639]: pgsql_db_connect() -- 22:48:24.854 DEBUG [11639]: Database connection successful -- 22:48:24.854 INFO [11639]: _SERVER found -- 22:48:24.854 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 22:48:24.854 INFO [11639]: SERVER_NAME = tokslaw.works.coregrade.com -- 22:48:24.854 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ndg7c78ob3kd5vi8kv7avh35787achg4; _gat_gtag_UA_54829827_2=1 -- 22:48:24.854 INFO [11639]: QUERY_STRING = -- 22:48:24.854 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:48:24.891 INFO [11639]: COREGRADE is stopping... -- 22:48:24.891 DEBUG [11639]: Closing database connection -- 22:48:24.891 SQL [11639]: pgsql_close() -- 22:48:30.338 INFO [11637]: COREGRADE is starting... -- 22:48:30.338 INFO [11637]: Version from config: 1.0 -- 22:48:30.338 DEBUG [11637]: Connecting to database... -- 22:48:30.338 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:48:30.338 SQL [11637]: pgsql_db_connect() -- 22:48:30.342 DEBUG [11637]: Database connection successful -- 22:48:30.342 INFO [11637]: _SERVER found -- 22:48:30.342 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 22:48:30.342 INFO [11637]: SERVER_NAME = tokslaw.works.coregrade.com -- 22:48:30.342 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ndg7c78ob3kd5vi8kv7avh35787achg4; _gat_gtag_UA_54829827_2=1 -- 22:48:30.342 INFO [11637]: QUERY_STRING = /auth -- 22:48:30.342 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:48:30.354 INFO [11637]: COREGRADE is stopping... -- 22:48:30.354 DEBUG [11637]: Closing database connection -- 22:48:30.354 SQL [11637]: pgsql_close() -- 22:48:33.169 INFO [11637]: COREGRADE is starting... -- 22:48:33.169 INFO [11637]: Version from config: 1.0 -- 22:48:33.169 DEBUG [11637]: Connecting to database... -- 22:48:33.169 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:48:33.169 SQL [11637]: pgsql_db_connect() -- 22:48:33.173 DEBUG [11637]: Database connection successful -- 22:48:33.173 INFO [11637]: _SERVER found -- 22:48:33.173 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 22:48:33.173 INFO [11637]: SERVER_NAME = tokslaw.works.coregrade.com -- 22:48:33.173 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ndg7c78ob3kd5vi8kv7avh35787achg4; _gat_gtag_UA_54829827_2=1 -- 22:48:33.173 INFO [11637]: QUERY_STRING = /favicon.ico -- 22:48:33.173 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:48:33.184 INFO [11637]: COREGRADE is stopping... -- 22:48:33.185 DEBUG [11637]: Closing database connection -- 22:48:33.185 SQL [11637]: pgsql_close() -- 22:48:38.892 INFO [12761]: COREGRADE is starting... -- 22:48:38.893 INFO [12761]: Version from config: 1.0 -- 22:48:38.893 DEBUG [12761]: Connecting to database... -- 22:48:38.893 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:48:38.893 SQL [12761]: pgsql_db_connect() -- 22:48:38.897 DEBUG [12761]: Database connection successful -- 22:48:38.897 INFO [12761]: _SERVER found -- 22:48:38.897 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 22:48:38.897 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 22:48:38.897 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=78lqco8egeilh80fj25cn3rdt3kopu15; _gat_gtag_UA_54829827_2=1 -- 22:48:38.897 INFO [12761]: QUERY_STRING = /auth -- 22:48:38.897 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:48:38.929 INFO [12761]: COREGRADE is stopping... -- 22:48:38.929 DEBUG [12761]: Closing database connection -- 22:48:38.929 SQL [12761]: pgsql_close() -- 22:48:40.024 INFO [11652]: COREGRADE is starting... -- 22:48:40.024 INFO [11652]: Version from config: 1.0 -- 22:48:40.024 DEBUG [11652]: Connecting to database... -- 22:48:40.024 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:48:40.024 SQL [11652]: pgsql_db_connect() -- 22:48:40.029 DEBUG [11652]: Database connection successful -- 22:48:40.029 INFO [11652]: _SERVER found -- 22:48:40.029 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 22:48:40.029 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 22:48:40.029 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=78lqco8egeilh80fj25cn3rdt3kopu15; _gat_gtag_UA_54829827_2=1 -- 22:48:40.029 INFO [11652]: QUERY_STRING = /auth -- 22:48:40.029 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:48:40.060 INFO [11652]: COREGRADE is stopping... -- 22:48:40.060 DEBUG [11652]: Closing database connection -- 22:48:40.060 SQL [11652]: pgsql_close() -- 22:48:40.231 INFO [11652]: COREGRADE is starting... -- 22:48:40.232 INFO [11652]: Version from config: 1.0 -- 22:48:40.232 DEBUG [11652]: Connecting to database... -- 22:48:40.232 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:48:40.232 SQL [11652]: pgsql_db_connect() -- 22:48:40.236 DEBUG [11652]: Database connection successful -- 22:48:40.236 INFO [11652]: _SERVER found -- 22:48:40.236 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 22:48:40.236 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 22:48:40.236 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=78lqco8egeilh80fj25cn3rdt3kopu15; _gat_gtag_UA_54829827_2=1 -- 22:48:40.236 INFO [11652]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:48:40.236 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:48:40.247 INFO [11652]: COREGRADE is stopping... -- 22:48:40.247 DEBUG [11652]: Closing database connection -- 22:48:40.247 SQL [11652]: pgsql_close() -- 22:48:40.251 INFO [12761]: COREGRADE is starting... -- 22:48:40.251 INFO [12761]: Version from config: 1.0 -- 22:48:40.251 DEBUG [12761]: Connecting to database... -- 22:48:40.252 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:48:40.252 SQL [12761]: pgsql_db_connect() -- 22:48:40.255 DEBUG [12761]: Database connection successful -- 22:48:40.255 INFO [12761]: _SERVER found -- 22:48:40.255 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 22:48:40.255 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 22:48:40.255 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=78lqco8egeilh80fj25cn3rdt3kopu15; _gat_gtag_UA_54829827_2=1 -- 22:48:40.255 INFO [12761]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:48:40.255 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:48:40.266 INFO [12761]: COREGRADE is stopping... -- 22:48:40.266 DEBUG [12761]: Closing database connection -- 22:48:40.266 SQL [12761]: pgsql_close() -- 22:48:43.518 INFO [12761]: COREGRADE is starting... -- 22:48:43.518 INFO [12761]: Version from config: 1.0 -- 22:48:43.518 DEBUG [12761]: Connecting to database... -- 22:48:43.518 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:48:43.518 SQL [12761]: pgsql_db_connect() -- 22:48:43.553 INFO [12761]: COREGRADE is starting... -- 22:48:43.553 INFO [12761]: Version from config: 1.0 -- 22:48:43.553 DEBUG [12761]: Connecting to database... -- 22:48:43.553 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:48:43.553 SQL [12761]: pgsql_db_connect() -- 22:48:43.557 DEBUG [12761]: Database connection successful -- 22:48:43.557 INFO [12761]: _SERVER found -- 22:48:43.557 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 22:48:43.557 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 22:48:43.557 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=78lqco8egeilh80fj25cn3rdt3kopu15; _gat_gtag_UA_54829827_2=1 -- 22:48:43.557 INFO [12761]: QUERY_STRING = -- 22:48:43.557 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:48:43.557 INFO [12761]: SystemStatus()09-09-********~************ -- 22:48:43.557 INFO [12761]: long coregrade_api_main(CVars in, CVars &out) -- 22:48:43.557 INFO [12761]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 22:48:43.557 INFO [12761]: account calls -- 22:48:43.557 INFO [12761]: account_calls() -- 22:48:43.557 INFO [12761]: LoginCoreGradeAccount() -- 22:48:43.557 FLOG_MAX [12761]: REQ_STRING(username) -- 22:48:43.557 FLOG_MAX [12761]: REQ_STRING(password) -- 22:48:43.557 FLOG_MAX [12761]: REQ_STRING(sessionid) -- 22:48:43.557 FLOG_MAX [12761]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:48:43.557 SQL [12761]: pgsql_query() -- 22:48:43.558 SQL [12761]: About to run query: -- 22:48:43.558 SQL [12761]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 22:48:43.561 SQL [12761]: Found rows: 1 -- 22:48:43.561 FLOG_MAX [12761]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=15 -- 22:48:43.561 INFO [12761]: long SessionCheck(long uid, const char *sessionid, int create ) -- 22:48:43.561 SQL [12761]: pgsql_exec() -- 22:48:43.561 SQL [12761]: About to run query: -- 22:48:43.561 SQL [12761]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 22:48:43.562 SQL [12761]: PQcmdTuples: 1 -- 22:48:43.563 SQL [12761]: Affected rows: 1 -- 22:48:43.563 SQL [12761]: pgsql_exec() -- 22:48:43.563 SQL [12761]: About to run query: -- 22:48:43.563 SQL [12761]: DELETE FROM members_session WHERE member_id=7 -- 22:48:43.563 SQL [12761]: PQcmdTuples: 0 -- 22:48:43.563 SQL [12761]: Affected rows: 0 -- 22:48:43.563 SQL [12761]: pgsql_query() -- 22:48:43.563 SQL [12761]: About to run query: -- 22:48:43.563 SQL [12761]: SELECT * FROM members_session WHERE member_id=7 AND session<>'E3B9E94FBA652078B2A8EBE06347F393' -- 22:48:43.563 SQL [12761]: Found rows: 0 -- 22:48:43.563 SQL [12761]: Found rows: 0 -- 22:48:43.563 FLOG_MAX [12761]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:48:43.563 SQL [12761]: pgsql_query() -- 22:48:43.563 SQL [12761]: About to run query: -- 22:48:43.563 SQL [12761]: SELECT * FROM members_session WHERE member_id=7 AND session='E3B9E94FBA652078B2A8EBE06347F393' -- 22:48:43.564 SQL [12761]: Found rows: 0 -- 22:48:43.564 SQL [12761]: Found rows: 0 -- 22:48:43.564 FLOG_MAX [12761]: insert_db_record() -- 22:48:43.564 SQL [12761]: pgsql_exec() -- 22:48:43.564 SQL [12761]: About to run query: -- 22:48:43.564 SQL [12761]: INSERT INTO members_session (member_id,session) VALUES ('7','E3B9E94FBA652078B2A8EBE06347F393') -- 22:48:43.565 SQL [12761]: PQcmdTuples: 1 -- 22:48:43.565 SQL [12761]: Affected rows: 1 -- 22:48:43.565 FLOG_MAX [12761]: SELECT currval('members_session_id_seq') -- 22:48:43.565 SQL [12761]: pgsql_query() -- 22:48:43.565 SQL [12761]: About to run query: -- 22:48:43.565 SQL [12761]: SELECT currval('members_session_id_seq') -- 22:48:43.566 SQL [12761]: Found rows: 1 -- 22:48:43.566 INFO [12761]: CreateDefaultPage() -- 22:48:43.566 FLOG_MAX [12761]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:48:43.566 SQL [12761]: pgsql_query() -- 22:48:43.566 SQL [12761]: About to run query: -- 22:48:43.566 SQL [12761]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 22:48:43.566 SQL [12761]: Found rows: 1 -- 22:48:43.566 FLOG_MAX [12761]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 22:48:43.566 SQL [12761]: pgsql_query() -- 22:48:43.566 SQL [12761]: About to run query: -- 22:48:43.566 SQL [12761]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 22:48:43.567 SQL [12761]: Found rows: 1 -- 22:48:43.567 INFO [12761]: /CreateDefaultPage() -- 22:48:43.567 INFO [12761]: /LoginCoreGradeAccount() -- 22:48:43.567 INFO [12761]: RET: added=2020-02-05 09:42:12.816064 -- 22:48:43.567 INFO [12761]: RET: email=tokslaw@chiefsoft.com -- 22:48:43.567 INFO [12761]: RET: firstname=Tokunbo -- 22:48:43.567 INFO [12761]: RET: id=7 -- 22:48:43.567 INFO [12761]: RET: last_login= -- 22:48:43.567 INFO [12761]: RET: lastname=Lawal -- 22:48:43.567 INFO [12761]: RET: loc=192.168.1.13 -- 22:48:43.567 INFO [12761]: RET: member_id=7 -- 22:48:43.567 INFO [12761]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 22:48:43.567 INFO [12761]: RET: phone= -- 22:48:43.567 INFO [12761]: RET: pid= -- 22:48:43.567 INFO [12761]: RET: result=YES I GET TO BACK END -- 22:48:43.567 INFO [12761]: RET: sessionid=E3B9E94FBA652078B2A8EBE06347F393 -- 22:48:43.567 INFO [12761]: RET: status=1 -- 22:48:43.567 INFO [12761]: RET: stauts=OK -- 22:48:43.567 INFO [12761]: RET: username=tokslaw@chiefsoft.com -- 22:48:43.567 INFO [12761]: RET: verified= -- 22:48:43.568 INFO [12761]: COREGRADE is stopping... -- 22:48:43.568 DEBUG [12761]: Closing database connection -- 22:48:43.568 SQL [12761]: pgsql_close() -- 22:48:43.522 DEBUG [12761]: Database connection successful -- 22:48:43.522 INFO [12761]: _SERVER found -- 22:48:43.522 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 22:48:43.522 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 22:48:43.522 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=78lqco8egeilh80fj25cn3rdt3kopu15; _gat_gtag_UA_54829827_2=1 -- 22:48:43.522 INFO [12761]: QUERY_STRING = /auth -- 22:48:43.522 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:48:43.569 INFO [12761]: COREGRADE is stopping... -- 22:48:43.569 DEBUG [12761]: Closing database connection -- 22:48:43.569 SQL [12761]: pgsql_close() -- 22:48:43.591 INFO [12761]: COREGRADE is starting... -- 22:48:43.591 INFO [12761]: Version from config: 1.0 -- 22:48:43.591 DEBUG [12761]: Connecting to database... -- 22:48:43.591 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:48:43.591 SQL [12761]: pgsql_db_connect() -- 22:48:43.595 DEBUG [12761]: Database connection successful -- 22:48:43.595 INFO [12761]: _SERVER found -- 22:48:43.595 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 22:48:43.595 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 22:48:43.595 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=78lqco8egeilh80fj25cn3rdt3kopu15; _gat_gtag_UA_54829827_2=1 -- 22:48:43.595 INFO [12761]: QUERY_STRING = /member/index -- 22:48:43.595 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:48:43.631 INFO [12761]: COREGRADE is stopping... -- 22:48:43.631 DEBUG [12761]: Closing database connection -- 22:48:43.631 SQL [12761]: pgsql_close() -- 22:48:44.004 INFO [12761]: COREGRADE is starting... -- 22:48:44.005 INFO [12761]: Version from config: 1.0 -- 22:48:44.005 DEBUG [12761]: Connecting to database... -- 22:48:44.005 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:48:44.005 SQL [12761]: pgsql_db_connect() -- 22:48:44.009 INFO [11652]: COREGRADE is starting... -- 22:48:44.010 INFO [11652]: Version from config: 1.0 -- 22:48:44.010 DEBUG [11652]: Connecting to database... -- 22:48:44.010 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:48:44.010 SQL [11652]: pgsql_db_connect() -- 22:48:44.009 DEBUG [12761]: Database connection successful -- 22:48:44.009 INFO [12761]: _SERVER found -- 22:48:44.009 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 22:48:44.009 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 22:48:44.009 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=78lqco8egeilh80fj25cn3rdt3kopu15; _gat_gtag_UA_54829827_2=1 -- 22:48:44.009 INFO [12761]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:48:44.009 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:48:44.020 INFO [12761]: COREGRADE is stopping... -- 22:48:44.020 DEBUG [12761]: Closing database connection -- 22:48:44.020 SQL [12761]: pgsql_close() -- 22:48:44.014 DEBUG [11652]: Database connection successful -- 22:48:44.014 INFO [11652]: _SERVER found -- 22:48:44.014 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 22:48:44.014 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 22:48:44.014 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=78lqco8egeilh80fj25cn3rdt3kopu15; _gat_gtag_UA_54829827_2=1 -- 22:48:44.014 INFO [11652]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:48:44.014 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:48:44.025 INFO [11652]: COREGRADE is stopping... -- 22:48:44.025 DEBUG [11652]: Closing database connection -- 22:48:44.025 SQL [11652]: pgsql_close() -- 22:48:53.363 INFO [12763]: COREGRADE is starting... -- 22:48:53.363 INFO [12763]: Version from config: 1.0 -- 22:48:53.363 DEBUG [12763]: Connecting to database... -- 22:48:53.363 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:48:53.363 SQL [12763]: pgsql_db_connect() -- 22:48:53.367 DEBUG [12763]: Database connection successful -- 22:48:53.367 INFO [12763]: _SERVER found -- 22:48:53.367 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 22:48:53.367 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 22:48:53.367 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=78lqco8egeilh80fj25cn3rdt3kopu15 -- 22:48:53.367 INFO [12763]: QUERY_STRING = /member/page -- 22:48:53.367 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:48:53.405 INFO [12763]: COREGRADE is stopping... -- 22:48:53.405 DEBUG [12763]: Closing database connection -- 22:48:53.405 SQL [12763]: pgsql_close() -- 22:48:53.666 INFO [12763]: COREGRADE is starting... -- 22:48:53.667 INFO [12763]: Version from config: 1.0 -- 22:48:53.667 DEBUG [12763]: Connecting to database... -- 22:48:53.667 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:48:53.667 SQL [12763]: pgsql_db_connect() -- 22:48:53.673 INFO [11644]: COREGRADE is starting... -- 22:48:53.674 INFO [11644]: Version from config: 1.0 -- 22:48:53.674 DEBUG [11644]: Connecting to database... -- 22:48:53.674 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:48:53.674 SQL [11644]: pgsql_db_connect() -- 22:48:53.671 DEBUG [12763]: Database connection successful -- 22:48:53.671 INFO [12763]: _SERVER found -- 22:48:53.671 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 22:48:53.671 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 22:48:53.671 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=78lqco8egeilh80fj25cn3rdt3kopu15 -- 22:48:53.671 INFO [12763]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:48:53.671 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:48:53.682 INFO [12763]: COREGRADE is stopping... -- 22:48:53.682 DEBUG [12763]: Closing database connection -- 22:48:53.682 SQL [12763]: pgsql_close() -- 22:48:53.678 DEBUG [11644]: Database connection successful -- 22:48:53.678 INFO [11644]: _SERVER found -- 22:48:53.678 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 22:48:53.678 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 22:48:53.678 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=78lqco8egeilh80fj25cn3rdt3kopu15 -- 22:48:53.678 INFO [11644]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:48:53.678 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:48:53.689 INFO [11644]: COREGRADE is stopping... -- 22:48:53.689 DEBUG [11644]: Closing database connection -- 22:48:53.689 SQL [11644]: pgsql_close() -- 22:56:55.350 INFO [11638]: COREGRADE is starting... -- 22:56:55.350 INFO [11638]: Version from config: 1.0 -- 22:56:55.350 DEBUG [11638]: Connecting to database... -- 22:56:55.350 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:56:55.351 SQL [11638]: pgsql_db_connect() -- 22:56:55.355 DEBUG [11638]: Database connection successful -- 22:56:55.355 INFO [11638]: _SERVER found -- 22:56:55.355 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 22:56:55.355 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 22:56:55.355 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=78lqco8egeilh80fj25cn3rdt3kopu15 -- 22:56:55.355 INFO [11638]: QUERY_STRING = /member/configure -- 22:56:55.355 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:56:55.392 INFO [11638]: COREGRADE is stopping... -- 22:56:55.392 DEBUG [11638]: Closing database connection -- 22:56:55.392 SQL [11638]: pgsql_close() -- 22:56:55.804 INFO [11638]: COREGRADE is starting... -- 22:56:55.804 INFO [11638]: Version from config: 1.0 -- 22:56:55.804 DEBUG [11638]: Connecting to database... -- 22:56:55.804 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:56:55.804 SQL [11638]: pgsql_db_connect() -- 22:56:55.808 DEBUG [11638]: Database connection successful -- 22:56:55.808 INFO [11638]: _SERVER found -- 22:56:55.808 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 22:56:55.808 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 22:56:55.808 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r2ne6n6dks7l9bd8mvjuk750bff2460e -- 22:56:55.808 INFO [11638]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:56:55.808 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:56:55.819 INFO [11638]: COREGRADE is stopping... -- 22:56:55.819 DEBUG [11638]: Closing database connection -- 22:56:55.819 SQL [11638]: pgsql_close() -- 22:56:55.854 INFO [11638]: COREGRADE is starting... -- 22:56:55.855 INFO [11638]: Version from config: 1.0 -- 22:56:55.855 DEBUG [11638]: Connecting to database... -- 22:56:55.855 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:56:55.855 SQL [11638]: pgsql_db_connect() -- 22:56:55.859 DEBUG [11638]: Database connection successful -- 22:56:55.859 INFO [11638]: _SERVER found -- 22:56:55.859 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 22:56:55.859 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 22:56:55.859 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r2ne6n6dks7l9bd8mvjuk750bff2460e -- 22:56:55.859 INFO [11638]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:56:55.859 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:56:55.870 INFO [11638]: COREGRADE is stopping... -- 22:56:55.870 DEBUG [11638]: Closing database connection -- 22:56:55.870 SQL [11638]: pgsql_close() -- 22:56:59.137 INFO [11638]: COREGRADE is starting... -- 22:56:59.137 INFO [11638]: Version from config: 1.0 -- 22:56:59.137 DEBUG [11638]: Connecting to database... -- 22:56:59.137 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:56:59.137 SQL [11638]: pgsql_db_connect() -- 22:56:59.141 DEBUG [11638]: Database connection successful -- 22:56:59.141 INFO [11638]: _SERVER found -- 22:56:59.141 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 22:56:59.141 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 22:56:59.141 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r2ne6n6dks7l9bd8mvjuk750bff2460e -- 22:56:59.141 INFO [11638]: QUERY_STRING = /member -- 22:56:59.141 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:56:59.176 INFO [11638]: COREGRADE is stopping... -- 22:56:59.176 DEBUG [11638]: Closing database connection -- 22:56:59.176 SQL [11638]: pgsql_close() -- 22:56:59.404 INFO [11638]: COREGRADE is starting... -- 22:56:59.405 INFO [11638]: Version from config: 1.0 -- 22:56:59.405 DEBUG [11638]: Connecting to database... -- 22:56:59.405 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:56:59.405 SQL [11638]: pgsql_db_connect() -- 22:56:59.409 DEBUG [11638]: Database connection successful -- 22:56:59.409 INFO [11638]: _SERVER found -- 22:56:59.409 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 22:56:59.409 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 22:56:59.409 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r2ne6n6dks7l9bd8mvjuk750bff2460e -- 22:56:59.409 INFO [11638]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:56:59.409 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:56:59.420 INFO [11638]: COREGRADE is stopping... -- 22:56:59.420 DEBUG [11638]: Closing database connection -- 22:56:59.420 SQL [11638]: pgsql_close() -- 22:56:59.422 INFO [11636]: COREGRADE is starting... -- 22:56:59.422 INFO [11636]: Version from config: 1.0 -- 22:56:59.422 DEBUG [11636]: Connecting to database... -- 22:56:59.422 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:56:59.422 SQL [11636]: pgsql_db_connect() -- 22:56:59.426 DEBUG [11636]: Database connection successful -- 22:56:59.426 INFO [11636]: _SERVER found -- 22:56:59.426 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 22:56:59.426 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 22:56:59.426 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r2ne6n6dks7l9bd8mvjuk750bff2460e -- 22:56:59.426 INFO [11636]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:56:59.426 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:56:59.437 INFO [11636]: COREGRADE is stopping... -- 22:56:59.437 DEBUG [11636]: Closing database connection -- 22:56:59.437 SQL [11636]: pgsql_close() -- 22:57:02.437 INFO [11638]: COREGRADE is starting... -- 22:57:02.438 INFO [11638]: Version from config: 1.0 -- 22:57:02.438 DEBUG [11638]: Connecting to database... -- 22:57:02.438 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:57:02.438 SQL [11638]: pgsql_db_connect() -- 22:57:02.442 DEBUG [11638]: Database connection successful -- 22:57:02.442 INFO [11638]: _SERVER found -- 22:57:02.442 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 22:57:02.442 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 22:57:02.442 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r2ne6n6dks7l9bd8mvjuk750bff2460e -- 22:57:02.442 INFO [11638]: QUERY_STRING = /member/configure -- 22:57:02.442 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:57:02.477 INFO [11638]: COREGRADE is stopping... -- 22:57:02.477 DEBUG [11638]: Closing database connection -- 22:57:02.477 SQL [11638]: pgsql_close() -- 22:57:02.851 INFO [11638]: COREGRADE is starting... -- 22:57:02.851 INFO [11638]: Version from config: 1.0 -- 22:57:02.851 DEBUG [11638]: Connecting to database... -- 22:57:02.851 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:57:02.851 SQL [11638]: pgsql_db_connect() -- 22:57:02.855 DEBUG [11638]: Database connection successful -- 22:57:02.855 INFO [11638]: _SERVER found -- 22:57:02.855 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 22:57:02.855 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 22:57:02.855 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r2ne6n6dks7l9bd8mvjuk750bff2460e -- 22:57:02.855 INFO [11638]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:57:02.855 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:57:02.866 INFO [11638]: COREGRADE is stopping... -- 22:57:02.866 DEBUG [11638]: Closing database connection -- 22:57:02.866 SQL [11638]: pgsql_close() -- 22:57:02.875 INFO [11638]: COREGRADE is starting... -- 22:57:02.876 INFO [11638]: Version from config: 1.0 -- 22:57:02.876 DEBUG [11638]: Connecting to database... -- 22:57:02.876 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:57:02.876 SQL [11638]: pgsql_db_connect() -- 22:57:02.880 DEBUG [11638]: Database connection successful -- 22:57:02.880 INFO [11638]: _SERVER found -- 22:57:02.880 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 22:57:02.880 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 22:57:02.880 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r2ne6n6dks7l9bd8mvjuk750bff2460e -- 22:57:02.880 INFO [11638]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:57:02.880 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:57:02.890 INFO [11638]: COREGRADE is stopping... -- 22:57:02.890 DEBUG [11638]: Closing database connection -- 22:57:02.890 SQL [11638]: pgsql_close() -- 22:57:04.217 INFO [11638]: COREGRADE is starting... -- 22:57:04.217 INFO [11638]: Version from config: 1.0 -- 22:57:04.217 DEBUG [11638]: Connecting to database... -- 22:57:04.217 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:57:04.217 SQL [11638]: pgsql_db_connect() -- 22:57:04.221 DEBUG [11638]: Database connection successful -- 22:57:04.221 INFO [11638]: _SERVER found -- 22:57:04.221 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 22:57:04.221 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 22:57:04.221 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r2ne6n6dks7l9bd8mvjuk750bff2460e -- 22:57:04.221 INFO [11638]: QUERY_STRING = /member -- 22:57:04.221 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:57:04.255 INFO [11638]: COREGRADE is stopping... -- 22:57:04.255 DEBUG [11638]: Closing database connection -- 22:57:04.255 SQL [11638]: pgsql_close() -- 22:57:04.565 INFO [11638]: COREGRADE is starting... -- 22:57:04.566 INFO [11638]: Version from config: 1.0 -- 22:57:04.566 DEBUG [11638]: Connecting to database... -- 22:57:04.566 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:57:04.566 SQL [11638]: pgsql_db_connect() -- 22:57:04.570 DEBUG [11638]: Database connection successful -- 22:57:04.570 INFO [11638]: _SERVER found -- 22:57:04.570 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 22:57:04.570 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 22:57:04.570 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r2ne6n6dks7l9bd8mvjuk750bff2460e -- 22:57:04.570 INFO [11638]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:57:04.570 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:57:04.581 INFO [11638]: COREGRADE is stopping... -- 22:57:04.581 DEBUG [11638]: Closing database connection -- 22:57:04.581 SQL [11638]: pgsql_close() -- 22:57:04.592 INFO [12764]: COREGRADE is starting... -- 22:57:04.592 INFO [12764]: Version from config: 1.0 -- 22:57:04.592 DEBUG [12764]: Connecting to database... -- 22:57:04.592 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:57:04.592 SQL [12764]: pgsql_db_connect() -- 22:57:04.596 DEBUG [12764]: Database connection successful -- 22:57:04.596 INFO [12764]: _SERVER found -- 22:57:04.596 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 22:57:04.596 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 22:57:04.596 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r2ne6n6dks7l9bd8mvjuk750bff2460e -- 22:57:04.596 INFO [12764]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:57:04.596 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:57:04.608 INFO [12764]: COREGRADE is stopping... -- 22:57:04.608 DEBUG [12764]: Closing database connection -- 22:57:04.608 SQL [12764]: pgsql_close() -- 22:57:05.258 INFO [12764]: COREGRADE is starting... -- 22:57:05.259 INFO [12764]: Version from config: 1.0 -- 22:57:05.259 DEBUG [12764]: Connecting to database... -- 22:57:05.259 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:57:05.259 SQL [12764]: pgsql_db_connect() -- 22:57:05.263 DEBUG [12764]: Database connection successful -- 22:57:05.263 INFO [12764]: _SERVER found -- 22:57:05.263 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 22:57:05.263 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 22:57:05.263 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r2ne6n6dks7l9bd8mvjuk750bff2460e -- 22:57:05.263 INFO [12764]: QUERY_STRING = /member/page -- 22:57:05.263 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:57:05.299 INFO [12764]: COREGRADE is stopping... -- 22:57:05.299 DEBUG [12764]: Closing database connection -- 22:57:05.299 SQL [12764]: pgsql_close() -- 22:57:05.500 INFO [12764]: COREGRADE is starting... -- 22:57:05.500 INFO [12764]: Version from config: 1.0 -- 22:57:05.500 DEBUG [12764]: Connecting to database... -- 22:57:05.500 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:57:05.500 SQL [12764]: pgsql_db_connect() -- 22:57:05.504 DEBUG [12764]: Database connection successful -- 22:57:05.504 INFO [12764]: _SERVER found -- 22:57:05.504 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 22:57:05.504 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 22:57:05.504 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r2ne6n6dks7l9bd8mvjuk750bff2460e -- 22:57:05.504 INFO [12764]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:57:05.504 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:57:05.515 INFO [12764]: COREGRADE is stopping... -- 22:57:05.515 DEBUG [12764]: Closing database connection -- 22:57:05.515 SQL [12764]: pgsql_close() -- 22:57:18.404 INFO [11650]: COREGRADE is starting... -- 22:57:18.405 INFO [11650]: Version from config: 1.0 -- 22:57:18.405 DEBUG [11650]: Connecting to database... -- 22:57:18.405 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:57:18.405 SQL [11650]: pgsql_db_connect() -- 22:57:18.409 DEBUG [11650]: Database connection successful -- 22:57:18.409 INFO [11650]: _SERVER found -- 22:57:18.409 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 22:57:18.409 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 22:57:18.409 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r2ne6n6dks7l9bd8mvjuk750bff2460e -- 22:57:18.409 INFO [11650]: QUERY_STRING = /member/configure -- 22:57:18.409 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:57:18.444 INFO [11650]: COREGRADE is stopping... -- 22:57:18.444 DEBUG [11650]: Closing database connection -- 22:57:18.444 SQL [11650]: pgsql_close() -- 22:57:18.941 INFO [11650]: COREGRADE is starting... -- 22:57:18.942 INFO [11650]: Version from config: 1.0 -- 22:57:18.942 DEBUG [11650]: Connecting to database... -- 22:57:18.942 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:57:18.942 SQL [11650]: pgsql_db_connect() -- 22:57:18.946 DEBUG [11650]: Database connection successful -- 22:57:18.946 INFO [11650]: _SERVER found -- 22:57:18.946 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 22:57:18.946 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 22:57:18.946 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r2ne6n6dks7l9bd8mvjuk750bff2460e -- 22:57:18.946 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:57:18.946 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:57:18.957 INFO [11650]: COREGRADE is stopping... -- 22:57:18.957 DEBUG [11650]: Closing database connection -- 22:57:18.957 SQL [11650]: pgsql_close() -- 22:57:21.601 INFO [11639]: COREGRADE is starting... -- 22:57:21.601 INFO [11639]: Version from config: 1.0 -- 22:57:21.601 DEBUG [11639]: Connecting to database... -- 22:57:21.601 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:57:21.601 SQL [11639]: pgsql_db_connect() -- 22:57:21.606 DEBUG [11639]: Database connection successful -- 22:57:21.606 INFO [11639]: _SERVER found -- 22:57:21.606 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 22:57:21.606 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 22:57:21.606 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r2ne6n6dks7l9bd8mvjuk750bff2460e -- 22:57:21.606 INFO [11639]: QUERY_STRING = /member/page -- 22:57:21.606 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:57:21.642 INFO [11639]: COREGRADE is stopping... -- 22:57:21.642 DEBUG [11639]: Closing database connection -- 22:57:21.642 SQL [11639]: pgsql_close() -- 23:02:19.853 INFO [11637]: COREGRADE is starting... -- 23:02:19.854 INFO [11637]: Version from config: 1.0 -- 23:02:19.854 DEBUG [11637]: Connecting to database... -- 23:02:19.854 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:19.854 SQL [11637]: pgsql_db_connect() -- 23:02:19.858 DEBUG [11637]: Database connection successful -- 23:02:19.858 INFO [11637]: _SERVER found -- 23:02:19.858 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 23:02:19.858 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:19.858 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r2ne6n6dks7l9bd8mvjuk750bff2460e -- 23:02:19.858 INFO [11637]: QUERY_STRING = /auth -- 23:02:19.858 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:19.890 INFO [11637]: COREGRADE is stopping... -- 23:02:19.890 DEBUG [11637]: Closing database connection -- 23:02:19.890 SQL [11637]: pgsql_close() -- 23:02:20.454 INFO [11637]: COREGRADE is starting... -- 23:02:20.454 INFO [11637]: Version from config: 1.0 -- 23:02:20.454 DEBUG [11637]: Connecting to database... -- 23:02:20.454 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:20.454 SQL [11637]: pgsql_db_connect() -- 23:02:20.458 DEBUG [11637]: Database connection successful -- 23:02:20.458 INFO [11637]: _SERVER found -- 23:02:20.458 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 23:02:20.458 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:20.458 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=7s8pjpqo4lv5acnjajh3tucje06l7614 -- 23:02:20.458 INFO [11637]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 23:02:20.458 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:20.469 INFO [11637]: COREGRADE is stopping... -- 23:02:20.469 DEBUG [11637]: Closing database connection -- 23:02:20.469 SQL [11637]: pgsql_close() -- 23:02:20.782 INFO [11637]: COREGRADE is starting... -- 23:02:20.782 INFO [11637]: Version from config: 1.0 -- 23:02:20.782 DEBUG [11637]: Connecting to database... -- 23:02:20.782 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:20.782 SQL [11637]: pgsql_db_connect() -- 23:02:20.786 DEBUG [11637]: Database connection successful -- 23:02:20.786 INFO [11637]: _SERVER found -- 23:02:20.786 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 23:02:20.786 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:20.786 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=7s8pjpqo4lv5acnjajh3tucje06l7614 -- 23:02:20.786 INFO [11637]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:02:20.786 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:20.797 INFO [11637]: COREGRADE is stopping... -- 23:02:20.797 DEBUG [11637]: Closing database connection -- 23:02:20.797 SQL [11637]: pgsql_close() -- 23:17:22.398 INFO [12761]: COREGRADE is starting... -- 23:17:22.398 INFO [12761]: Version from config: 1.0 -- 23:17:22.398 DEBUG [12761]: Connecting to database... -- 23:17:22.398 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:17:22.398 SQL [12761]: pgsql_db_connect() -- 23:17:22.403 DEBUG [12761]: Database connection successful -- 23:17:22.403 INFO [12761]: _SERVER found -- 23:17:22.403 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 23:17:22.403 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 23:17:22.403 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=7s8pjpqo4lv5acnjajh3tucje06l7614 -- 23:17:22.403 INFO [12761]: QUERY_STRING = /auth -- 23:17:22.403 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:17:22.439 INFO [12761]: COREGRADE is stopping... -- 23:17:22.439 DEBUG [12761]: Closing database connection -- 23:17:22.439 SQL [12761]: pgsql_close() -- 23:17:22.920 INFO [12761]: COREGRADE is starting... -- 23:17:22.920 INFO [12761]: Version from config: 1.0 -- 23:17:22.920 DEBUG [12761]: Connecting to database... -- 23:17:22.920 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:17:22.920 SQL [12761]: pgsql_db_connect() -- 23:17:22.925 DEBUG [12761]: Database connection successful -- 23:17:22.925 INFO [12761]: _SERVER found -- 23:17:22.925 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 23:17:22.925 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 23:17:22.925 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=cgq9ckaaaieo5jl2r8f9aomt6k9q2buq -- 23:17:22.925 INFO [12761]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 23:17:22.925 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:17:22.936 INFO [12761]: COREGRADE is stopping... -- 23:17:22.936 DEBUG [12761]: Closing database connection -- 23:17:22.936 SQL [12761]: pgsql_close() -- 23:17:23.788 INFO [12761]: COREGRADE is starting... -- 23:17:23.788 INFO [12761]: Version from config: 1.0 -- 23:17:23.788 DEBUG [12761]: Connecting to database... -- 23:17:23.788 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:17:23.788 SQL [12761]: pgsql_db_connect() -- 23:17:23.793 DEBUG [12761]: Database connection successful -- 23:17:23.793 INFO [12761]: _SERVER found -- 23:17:23.793 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 23:17:23.793 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 23:17:23.793 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=cgq9ckaaaieo5jl2r8f9aomt6k9q2buq -- 23:17:23.793 INFO [12761]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:17:23.793 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:17:23.804 INFO [12761]: COREGRADE is stopping... -- 23:17:23.804 DEBUG [12761]: Closing database connection -- 23:17:23.804 SQL [12761]: pgsql_close() -- 23:27:49.642 INFO [11652]: COREGRADE is starting... -- 23:27:49.642 INFO [11652]: Version from config: 1.0 -- 23:27:49.642 DEBUG [11652]: Connecting to database... -- 23:27:49.642 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:49.642 SQL [11652]: pgsql_db_connect() -- 23:27:49.647 DEBUG [11652]: Database connection successful -- 23:27:49.647 INFO [11652]: _SERVER found -- 23:27:49.647 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 23:27:49.647 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 23:27:49.647 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=p7g7q4fahe96u157fuegvld1f20h6qkv -- 23:27:49.647 INFO [11652]: QUERY_STRING = /auth -- 23:27:49.647 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:27:49.680 INFO [11652]: COREGRADE is stopping... -- 23:27:49.680 DEBUG [11652]: Closing database connection -- 23:27:49.680 SQL [11652]: pgsql_close() -- 23:27:49.873 INFO [11652]: COREGRADE is starting... -- 23:27:49.873 INFO [11652]: Version from config: 1.0 -- 23:27:49.873 DEBUG [11652]: Connecting to database... -- 23:27:49.873 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:49.873 SQL [11652]: pgsql_db_connect() -- 23:27:49.877 DEBUG [11652]: Database connection successful -- 23:27:49.877 INFO [11652]: _SERVER found -- 23:27:49.878 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 23:27:49.878 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 23:27:49.878 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=t48dtnbsrg8uqbjb4u3b35s3tmusjtc9 -- 23:27:49.878 INFO [11652]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 23:27:49.878 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:27:49.889 INFO [11652]: COREGRADE is stopping... -- 23:27:49.889 DEBUG [11652]: Closing database connection -- 23:27:49.889 SQL [11652]: pgsql_close() -- 23:27:49.951 INFO [11652]: COREGRADE is starting... -- 23:27:49.951 INFO [11652]: Version from config: 1.0 -- 23:27:49.951 DEBUG [11652]: Connecting to database... -- 23:27:49.951 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:49.951 SQL [11652]: pgsql_db_connect() -- 23:27:49.955 DEBUG [11652]: Database connection successful -- 23:27:49.955 INFO [11652]: _SERVER found -- 23:27:49.955 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 23:27:49.955 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 23:27:49.955 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=t48dtnbsrg8uqbjb4u3b35s3tmusjtc9 -- 23:27:49.955 INFO [11652]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:27:49.955 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:27:49.966 INFO [11652]: COREGRADE is stopping... -- 23:27:49.966 DEBUG [11652]: Closing database connection -- 23:27:49.966 SQL [11652]: pgsql_close() -- 23:27:51.815 INFO [11652]: COREGRADE is starting... -- 23:27:51.815 INFO [11652]: Version from config: 1.0 -- 23:27:51.815 DEBUG [11652]: Connecting to database... -- 23:27:51.815 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:51.815 SQL [11652]: pgsql_db_connect() -- 23:27:51.850 INFO [11652]: COREGRADE is starting... -- 23:27:51.850 INFO [11652]: Version from config: 1.0 -- 23:27:51.850 DEBUG [11652]: Connecting to database... -- 23:27:51.850 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:51.850 SQL [11652]: pgsql_db_connect() -- 23:27:51.854 DEBUG [11652]: Database connection successful -- 23:27:51.854 INFO [11652]: _SERVER found -- 23:27:51.854 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 23:27:51.854 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 23:27:51.854 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=t48dtnbsrg8uqbjb4u3b35s3tmusjtc9 -- 23:27:51.854 INFO [11652]: QUERY_STRING = -- 23:27:51.854 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:27:51.854 INFO [11652]: SystemStatus()09-09-********~************ -- 23:27:51.854 INFO [11652]: long coregrade_api_main(CVars in, CVars &out) -- 23:27:51.854 INFO [11652]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 23:27:51.854 INFO [11652]: account calls -- 23:27:51.854 INFO [11652]: account_calls() -- 23:27:51.854 INFO [11652]: LoginCoreGradeAccount() -- 23:27:51.855 FLOG_MAX [11652]: REQ_STRING(username) -- 23:27:51.855 FLOG_MAX [11652]: REQ_STRING(password) -- 23:27:51.855 FLOG_MAX [11652]: REQ_STRING(sessionid) -- 23:27:51.855 FLOG_MAX [11652]: long load_db_record( CVars &rec, const char * query, ... ) -- 23:27:51.855 SQL [11652]: pgsql_query() -- 23:27:51.855 SQL [11652]: About to run query: -- 23:27:51.855 SQL [11652]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 23:27:51.858 SQL [11652]: Found rows: 1 -- 23:27:51.858 FLOG_MAX [11652]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 23:27:51.858 INFO [11652]: long SessionCheck(long uid, const char *sessionid, int create ) -- 23:27:51.858 SQL [11652]: pgsql_exec() -- 23:27:51.858 SQL [11652]: About to run query: -- 23:27:51.858 SQL [11652]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 23:27:51.860 SQL [11652]: PQcmdTuples: 1 -- 23:27:51.860 SQL [11652]: Affected rows: 1 -- 23:27:51.860 SQL [11652]: pgsql_exec() -- 23:27:51.860 SQL [11652]: About to run query: -- 23:27:51.860 SQL [11652]: DELETE FROM members_session WHERE member_id=5 -- 23:27:51.860 SQL [11652]: PQcmdTuples: 0 -- 23:27:51.860 SQL [11652]: Affected rows: 0 -- 23:27:51.860 SQL [11652]: pgsql_query() -- 23:27:51.860 SQL [11652]: About to run query: -- 23:27:51.860 SQL [11652]: SELECT * FROM members_session WHERE member_id=5 AND session<>'2CD6E98F5C07AE0072C41D85AFD2A208' -- 23:27:51.861 SQL [11652]: Found rows: 0 -- 23:27:51.861 SQL [11652]: Found rows: 0 -- 23:27:51.861 FLOG_MAX [11652]: long load_db_record( CVars &rec, const char * query, ... ) -- 23:27:51.861 SQL [11652]: pgsql_query() -- 23:27:51.861 SQL [11652]: About to run query: -- 23:27:51.861 SQL [11652]: SELECT * FROM members_session WHERE member_id=5 AND session='2CD6E98F5C07AE0072C41D85AFD2A208' -- 23:27:51.861 SQL [11652]: Found rows: 0 -- 23:27:51.861 SQL [11652]: Found rows: 0 -- 23:27:51.861 FLOG_MAX [11652]: insert_db_record() -- 23:27:51.861 SQL [11652]: pgsql_exec() -- 23:27:51.861 SQL [11652]: About to run query: -- 23:27:51.861 SQL [11652]: INSERT INTO members_session (member_id,session) VALUES ('5','2CD6E98F5C07AE0072C41D85AFD2A208') -- 23:27:51.863 SQL [11652]: PQcmdTuples: 1 -- 23:27:51.863 SQL [11652]: Affected rows: 1 -- 23:27:51.863 FLOG_MAX [11652]: SELECT currval('members_session_id_seq') -- 23:27:51.863 SQL [11652]: pgsql_query() -- 23:27:51.863 SQL [11652]: About to run query: -- 23:27:51.863 SQL [11652]: SELECT currval('members_session_id_seq') -- 23:27:51.863 SQL [11652]: Found rows: 1 -- 23:27:51.863 INFO [11652]: CreateDefaultPage() -- 23:27:51.863 FLOG_MAX [11652]: long load_db_record( CVars &rec, const char * query, ... ) -- 23:27:51.863 SQL [11652]: pgsql_query() -- 23:27:51.863 SQL [11652]: About to run query: -- 23:27:51.863 SQL [11652]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 23:27:51.864 SQL [11652]: Found rows: 1 -- 23:27:51.864 FLOG_MAX [11652]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 23:27:51.864 SQL [11652]: pgsql_query() -- 23:27:51.864 SQL [11652]: About to run query: -- 23:27:51.864 SQL [11652]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 23:27:51.864 SQL [11652]: Found rows: 1 -- 23:27:51.864 INFO [11652]: /CreateDefaultPage() -- 23:27:51.864 INFO [11652]: /LoginCoreGradeAccount() -- 23:27:51.864 INFO [11652]: RET: added=2020-02-05 06:47:23.982154 -- 23:27:51.864 INFO [11652]: RET: email=ameye+11@chiefsoft.com -- 23:27:51.864 INFO [11652]: RET: firstname=Olu -- 23:27:51.864 INFO [11652]: RET: id=5 -- 23:27:51.864 INFO [11652]: RET: last_login= -- 23:27:51.864 INFO [11652]: RET: lastname=Amey -- 23:27:51.864 INFO [11652]: RET: loc=192.168.1.13 -- 23:27:51.864 INFO [11652]: RET: member_id=5 -- 23:27:51.864 INFO [11652]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 23:27:51.864 INFO [11652]: RET: phone= -- 23:27:51.864 INFO [11652]: RET: pid= -- 23:27:51.864 INFO [11652]: RET: result=YES I GET TO BACK END -- 23:27:51.864 INFO [11652]: RET: sessionid=2CD6E98F5C07AE0072C41D85AFD2A208 -- 23:27:51.864 INFO [11652]: RET: status=1 -- 23:27:51.864 INFO [11652]: RET: stauts=OK -- 23:27:51.864 INFO [11652]: RET: username=ameye+11@chiefsoft.com -- 23:27:51.864 INFO [11652]: RET: verified= -- 23:27:51.866 INFO [11652]: COREGRADE is stopping... -- 23:27:51.866 DEBUG [11652]: Closing database connection -- 23:27:51.866 SQL [11652]: pgsql_close() -- 23:27:51.819 DEBUG [11652]: Database connection successful -- 23:27:51.819 INFO [11652]: _SERVER found -- 23:27:51.819 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 23:27:51.819 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 23:27:51.819 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=t48dtnbsrg8uqbjb4u3b35s3tmusjtc9 -- 23:27:51.819 INFO [11652]: QUERY_STRING = /auth -- 23:27:51.819 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:27:51.866 INFO [11652]: COREGRADE is stopping... -- 23:27:51.866 DEBUG [11652]: Closing database connection -- 23:27:51.866 SQL [11652]: pgsql_close() -- 23:27:51.878 INFO [11652]: COREGRADE is starting... -- 23:27:51.878 INFO [11652]: Version from config: 1.0 -- 23:27:51.878 DEBUG [11652]: Connecting to database... -- 23:27:51.878 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:51.878 SQL [11652]: pgsql_db_connect() -- 23:27:51.882 DEBUG [11652]: Database connection successful -- 23:27:51.882 INFO [11652]: _SERVER found -- 23:27:51.882 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 23:27:51.882 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 23:27:51.882 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=t48dtnbsrg8uqbjb4u3b35s3tmusjtc9 -- 23:27:51.882 INFO [11652]: QUERY_STRING = /member/index -- 23:27:51.882 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:27:51.917 INFO [11652]: COREGRADE is stopping... -- 23:27:51.917 DEBUG [11652]: Closing database connection -- 23:27:51.917 SQL [11652]: pgsql_close() -- 23:27:52.146 INFO [11652]: COREGRADE is starting... -- 23:27:52.146 INFO [11652]: Version from config: 1.0 -- 23:27:52.146 DEBUG [11652]: Connecting to database... -- 23:27:52.146 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:52.146 SQL [11652]: pgsql_db_connect() -- 23:27:52.150 DEBUG [11652]: Database connection successful -- 23:27:52.150 INFO [11652]: _SERVER found -- 23:27:52.150 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 23:27:52.150 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 23:27:52.150 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=t48dtnbsrg8uqbjb4u3b35s3tmusjtc9 -- 23:27:52.150 INFO [11652]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:27:52.150 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:27:52.161 INFO [11652]: COREGRADE is stopping... -- 23:27:52.161 DEBUG [11652]: Closing database connection -- 23:27:52.161 SQL [11652]: pgsql_close() -- 23:27:52.167 INFO [12763]: COREGRADE is starting... -- 23:27:52.167 INFO [12763]: Version from config: 1.0 -- 23:27:52.167 DEBUG [12763]: Connecting to database... -- 23:27:52.167 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:52.167 SQL [12763]: pgsql_db_connect() -- 23:27:52.171 DEBUG [12763]: Database connection successful -- 23:27:52.171 INFO [12763]: _SERVER found -- 23:27:52.171 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 23:27:52.171 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 23:27:52.171 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=t48dtnbsrg8uqbjb4u3b35s3tmusjtc9 -- 23:27:52.171 INFO [12763]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:27:52.171 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:27:52.183 INFO [12763]: COREGRADE is stopping... -- 23:27:52.183 DEBUG [12763]: Closing database connection -- 23:27:52.183 SQL [12763]: pgsql_close() -- 23:27:55.430 INFO [12763]: COREGRADE is starting... -- 23:27:55.430 INFO [12763]: Version from config: 1.0 -- 23:27:55.430 DEBUG [12763]: Connecting to database... -- 23:27:55.430 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:55.430 SQL [12763]: pgsql_db_connect() -- 23:27:55.434 DEBUG [12763]: Database connection successful -- 23:27:55.434 INFO [12763]: _SERVER found -- 23:27:55.434 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 23:27:55.434 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 23:27:55.434 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=t48dtnbsrg8uqbjb4u3b35s3tmusjtc9 -- 23:27:55.434 INFO [12763]: QUERY_STRING = /member/page -- 23:27:55.434 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:27:55.472 INFO [12763]: COREGRADE is stopping... -- 23:27:55.472 DEBUG [12763]: Closing database connection -- 23:27:55.472 SQL [12763]: pgsql_close() -- 23:27:55.592 INFO [12763]: COREGRADE is starting... -- 23:27:55.592 INFO [12763]: Version from config: 1.0 -- 23:27:55.593 DEBUG [12763]: Connecting to database... -- 23:27:55.593 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:55.593 SQL [12763]: pgsql_db_connect() -- 23:27:55.597 DEBUG [12763]: Database connection successful -- 23:27:55.597 INFO [12763]: _SERVER found -- 23:27:55.597 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 23:27:55.597 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 23:27:55.597 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=t48dtnbsrg8uqbjb4u3b35s3tmusjtc9 -- 23:27:55.597 INFO [12763]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:27:55.597 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:27:55.607 INFO [12763]: COREGRADE is stopping... -- 23:27:55.608 DEBUG [12763]: Closing database connection -- 23:27:55.608 SQL [12763]: pgsql_close() -- 23:27:55.654 INFO [12763]: COREGRADE is starting... -- 23:27:55.654 INFO [12763]: Version from config: 1.0 -- 23:27:55.654 DEBUG [12763]: Connecting to database... -- 23:27:55.654 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:55.654 SQL [12763]: pgsql_db_connect() -- 23:27:55.658 DEBUG [12763]: Database connection successful -- 23:27:55.658 INFO [12763]: _SERVER found -- 23:27:55.658 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 23:27:55.658 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 23:27:55.658 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=t48dtnbsrg8uqbjb4u3b35s3tmusjtc9 -- 23:27:55.658 INFO [12763]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:27:55.658 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:27:55.669 INFO [12763]: COREGRADE is stopping... -- 23:27:55.669 DEBUG [12763]: Closing database connection -- 23:27:55.669 SQL [12763]: pgsql_close() -- 23:28:34.984 INFO [11644]: COREGRADE is starting... -- 23:28:34.985 INFO [11644]: Version from config: 1.0 -- 23:28:34.985 DEBUG [11644]: Connecting to database... -- 23:28:34.985 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:28:34.985 SQL [11644]: pgsql_db_connect() -- 23:28:34.989 DEBUG [11644]: Database connection successful -- 23:28:34.989 INFO [11644]: _SERVER found -- 23:28:34.989 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 23:28:34.989 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 23:28:34.989 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=t48dtnbsrg8uqbjb4u3b35s3tmusjtc9 -- 23:28:34.989 INFO [11644]: QUERY_STRING = /member/page -- 23:28:34.989 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:28:35.026 INFO [11644]: COREGRADE is stopping... -- 23:28:35.026 DEBUG [11644]: Closing database connection -- 23:28:35.026 SQL [11644]: pgsql_close() -- 23:28:35.163 INFO [11644]: COREGRADE is starting... -- 23:28:35.163 INFO [11644]: Version from config: 1.0 -- 23:28:35.163 DEBUG [11644]: Connecting to database... -- 23:28:35.163 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:28:35.163 SQL [11644]: pgsql_db_connect() -- 23:28:35.167 DEBUG [11644]: Database connection successful -- 23:28:35.167 INFO [11644]: _SERVER found -- 23:28:35.167 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 23:28:35.167 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 23:28:35.167 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=t48dtnbsrg8uqbjb4u3b35s3tmusjtc9 -- 23:28:35.167 INFO [11644]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:28:35.167 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:28:35.178 INFO [11644]: COREGRADE is stopping... -- 23:28:35.178 DEBUG [11644]: Closing database connection -- 23:28:35.178 SQL [11644]: pgsql_close() -- 23:28:35.250 INFO [11644]: COREGRADE is starting... -- 23:28:35.250 INFO [11644]: Version from config: 1.0 -- 23:28:35.250 DEBUG [11644]: Connecting to database... -- 23:28:35.250 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:28:35.250 SQL [11644]: pgsql_db_connect() -- 23:28:35.255 DEBUG [11644]: Database connection successful -- 23:28:35.255 INFO [11644]: _SERVER found -- 23:28:35.255 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 23:28:35.255 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 23:28:35.255 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=t48dtnbsrg8uqbjb4u3b35s3tmusjtc9 -- 23:28:35.255 INFO [11644]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:28:35.255 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:28:35.266 INFO [11644]: COREGRADE is stopping... -- 23:28:35.266 DEBUG [11644]: Closing database connection -- 23:28:35.266 SQL [11644]: pgsql_close() -- 23:29:04.550 INFO [11636]: COREGRADE is starting... -- 23:29:04.550 INFO [11636]: Version from config: 1.0 -- 23:29:04.550 DEBUG [11636]: Connecting to database... -- 23:29:04.550 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:29:04.550 SQL [11636]: pgsql_db_connect() -- 23:29:04.554 DEBUG [11636]: Database connection successful -- 23:29:04.554 INFO [11636]: _SERVER found -- 23:29:04.554 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 23:29:04.554 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 23:29:04.554 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=t48dtnbsrg8uqbjb4u3b35s3tmusjtc9 -- 23:29:04.554 INFO [11636]: QUERY_STRING = /member -- 23:29:04.554 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:29:04.590 INFO [11636]: COREGRADE is stopping... -- 23:29:04.590 DEBUG [11636]: Closing database connection -- 23:29:04.590 SQL [11636]: pgsql_close() -- 23:29:04.865 INFO [11636]: COREGRADE is starting... -- 23:29:04.866 INFO [11636]: Version from config: 1.0 -- 23:29:04.866 DEBUG [11636]: Connecting to database... -- 23:29:04.866 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:29:04.866 SQL [11636]: pgsql_db_connect() -- 23:29:04.870 DEBUG [11636]: Database connection successful -- 23:29:04.870 INFO [11636]: _SERVER found -- 23:29:04.870 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 23:29:04.870 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 23:29:04.870 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=t48dtnbsrg8uqbjb4u3b35s3tmusjtc9 -- 23:29:04.870 INFO [11636]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:29:04.870 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:29:04.881 INFO [11636]: COREGRADE is stopping... -- 23:29:04.881 DEBUG [11636]: Closing database connection -- 23:29:04.881 SQL [11636]: pgsql_close() -- 23:29:04.891 INFO [11636]: COREGRADE is starting... -- 23:29:04.891 INFO [11636]: Version from config: 1.0 -- 23:29:04.891 DEBUG [11636]: Connecting to database... -- 23:29:04.891 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:29:04.891 SQL [11636]: pgsql_db_connect() -- 23:29:04.895 DEBUG [11636]: Database connection successful -- 23:29:04.895 INFO [11636]: _SERVER found -- 23:29:04.895 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 23:29:04.895 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 23:29:04.895 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=t48dtnbsrg8uqbjb4u3b35s3tmusjtc9 -- 23:29:04.895 INFO [11636]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:29:04.895 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:29:04.906 INFO [11636]: COREGRADE is stopping... -- 23:29:04.906 DEBUG [11636]: Closing database connection -- 23:29:04.906 SQL [11636]: pgsql_close() -- 23:29:05.817 INFO [11636]: COREGRADE is starting... -- 23:29:05.817 INFO [11636]: Version from config: 1.0 -- 23:29:05.817 DEBUG [11636]: Connecting to database... -- 23:29:05.817 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:29:05.817 SQL [11636]: pgsql_db_connect() -- 23:29:05.821 DEBUG [11636]: Database connection successful -- 23:29:05.821 INFO [11636]: _SERVER found -- 23:29:05.821 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 23:29:05.821 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 23:29:05.821 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=t48dtnbsrg8uqbjb4u3b35s3tmusjtc9 -- 23:29:05.821 INFO [11636]: QUERY_STRING = /member/page -- 23:29:05.821 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:29:05.857 INFO [11636]: COREGRADE is stopping... -- 23:29:05.857 DEBUG [11636]: Closing database connection -- 23:29:05.857 SQL [11636]: pgsql_close() -- 23:29:05.986 INFO [11636]: COREGRADE is starting... -- 23:29:05.986 INFO [11636]: Version from config: 1.0 -- 23:29:05.986 DEBUG [11636]: Connecting to database... -- 23:29:05.986 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:29:05.986 SQL [11636]: pgsql_db_connect() -- 23:29:05.990 DEBUG [11636]: Database connection successful -- 23:29:05.990 INFO [11636]: _SERVER found -- 23:29:05.990 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 23:29:05.990 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 23:29:05.990 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=t48dtnbsrg8uqbjb4u3b35s3tmusjtc9 -- 23:29:05.990 INFO [11636]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:29:05.990 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:29:06.001 INFO [11636]: COREGRADE is stopping... -- 23:29:06.001 DEBUG [11636]: Closing database connection -- 23:29:06.001 SQL [11636]: pgsql_close() -- 23:29:06.007 INFO [11638]: COREGRADE is starting... -- 23:29:06.007 INFO [11638]: Version from config: 1.0 -- 23:29:06.007 DEBUG [11638]: Connecting to database... -- 23:29:06.007 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:29:06.007 SQL [11638]: pgsql_db_connect() -- 23:29:06.011 DEBUG [11638]: Database connection successful -- 23:29:06.011 INFO [11638]: _SERVER found -- 23:29:06.011 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 23:29:06.011 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 23:29:06.011 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=t48dtnbsrg8uqbjb4u3b35s3tmusjtc9 -- 23:29:06.011 INFO [11638]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:29:06.011 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:29:06.023 INFO [11638]: COREGRADE is stopping... -- 23:29:06.023 DEBUG [11638]: Closing database connection -- 23:29:06.023 SQL [11638]: pgsql_close() -- 23:30:47.895 INFO [12764]: COREGRADE is starting... -- 23:30:47.896 INFO [12764]: Version from config: 1.0 -- 23:30:47.896 DEBUG [12764]: Connecting to database... -- 23:30:47.896 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:30:47.896 SQL [12764]: pgsql_db_connect() -- 23:30:47.900 DEBUG [12764]: Database connection successful -- 23:30:47.900 INFO [12764]: _SERVER found -- 23:30:47.900 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 23:30:47.900 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 23:30:47.900 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=t48dtnbsrg8uqbjb4u3b35s3tmusjtc9 -- 23:30:47.900 INFO [12764]: QUERY_STRING = /member/configure -- 23:30:47.900 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:30:47.936 INFO [12764]: COREGRADE is stopping... -- 23:30:47.937 DEBUG [12764]: Closing database connection -- 23:30:47.937 SQL [12764]: pgsql_close() -- 23:30:48.152 INFO [12764]: COREGRADE is starting... -- 23:30:48.152 INFO [12764]: Version from config: 1.0 -- 23:30:48.152 DEBUG [12764]: Connecting to database... -- 23:30:48.152 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:30:48.152 SQL [12764]: pgsql_db_connect() -- 23:30:48.156 DEBUG [12764]: Database connection successful -- 23:30:48.156 INFO [12764]: _SERVER found -- 23:30:48.156 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 23:30:48.156 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 23:30:48.156 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=t48dtnbsrg8uqbjb4u3b35s3tmusjtc9 -- 23:30:48.156 INFO [12764]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:30:48.156 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:30:48.167 INFO [12764]: COREGRADE is stopping... -- 23:30:48.167 DEBUG [12764]: Closing database connection -- 23:30:48.167 SQL [12764]: pgsql_close() -- 23:30:48.188 INFO [12764]: COREGRADE is starting... -- 23:30:48.188 INFO [12764]: Version from config: 1.0 -- 23:30:48.188 DEBUG [12764]: Connecting to database... -- 23:30:48.188 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:30:48.188 SQL [12764]: pgsql_db_connect() -- 23:30:48.192 DEBUG [12764]: Database connection successful -- 23:30:48.192 INFO [12764]: _SERVER found -- 23:30:48.192 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 23:30:48.192 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 23:30:48.192 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=t48dtnbsrg8uqbjb4u3b35s3tmusjtc9 -- 23:30:48.192 INFO [12764]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:30:48.192 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:30:48.203 INFO [12764]: COREGRADE is stopping... -- 23:30:48.203 DEBUG [12764]: Closing database connection -- 23:30:48.203 SQL [12764]: pgsql_close() -- 23:32:10.526 INFO [11650]: COREGRADE is starting... -- 23:32:10.526 INFO [11650]: Version from config: 1.0 -- 23:32:10.526 DEBUG [11650]: Connecting to database... -- 23:32:10.526 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:32:10.526 SQL [11650]: pgsql_db_connect() -- 23:32:10.530 DEBUG [11650]: Database connection successful -- 23:32:10.530 INFO [11650]: _SERVER found -- 23:32:10.530 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 23:32:10.530 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 23:32:10.530 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=t48dtnbsrg8uqbjb4u3b35s3tmusjtc9 -- 23:32:10.530 INFO [11650]: QUERY_STRING = /member/configure -- 23:32:10.530 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:32:10.566 INFO [11650]: COREGRADE is stopping... -- 23:32:10.566 DEBUG [11650]: Closing database connection -- 23:32:10.566 SQL [11650]: pgsql_close() -- 23:32:10.713 INFO [11650]: COREGRADE is starting... -- 23:32:10.713 INFO [11650]: Version from config: 1.0 -- 23:32:10.713 DEBUG [11650]: Connecting to database... -- 23:32:10.713 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:32:10.714 SQL [11650]: pgsql_db_connect() -- 23:32:10.718 DEBUG [11650]: Database connection successful -- 23:32:10.718 INFO [11650]: _SERVER found -- 23:32:10.718 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 23:32:10.718 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 23:32:10.718 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=t48dtnbsrg8uqbjb4u3b35s3tmusjtc9 -- 23:32:10.718 INFO [11650]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:32:10.718 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:32:10.729 INFO [11650]: COREGRADE is stopping... -- 23:32:10.729 DEBUG [11650]: Closing database connection -- 23:32:10.729 SQL [11650]: pgsql_close() -- 23:32:10.824 INFO [11650]: COREGRADE is starting... -- 23:32:10.824 INFO [11650]: Version from config: 1.0 -- 23:32:10.824 DEBUG [11650]: Connecting to database... -- 23:32:10.824 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:32:10.824 SQL [11650]: pgsql_db_connect() -- 23:32:10.828 DEBUG [11650]: Database connection successful -- 23:32:10.828 INFO [11650]: _SERVER found -- 23:32:10.828 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 23:32:10.828 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 23:32:10.828 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=t48dtnbsrg8uqbjb4u3b35s3tmusjtc9 -- 23:32:10.828 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:32:10.828 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:32:10.839 INFO [11650]: COREGRADE is stopping... -- 23:32:10.839 DEBUG [11650]: Closing database connection -- 23:32:10.839 SQL [11650]: pgsql_close() -- 23:32:14.551 INFO [11650]: COREGRADE is starting... -- 23:32:14.551 INFO [11650]: Version from config: 1.0 -- 23:32:14.551 DEBUG [11650]: Connecting to database... -- 23:32:14.551 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:32:14.551 SQL [11650]: pgsql_db_connect() -- 23:32:14.556 DEBUG [11650]: Database connection successful -- 23:32:14.556 INFO [11650]: _SERVER found -- 23:32:14.556 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 23:32:14.556 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 23:32:14.556 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=t48dtnbsrg8uqbjb4u3b35s3tmusjtc9 -- 23:32:14.556 INFO [11650]: QUERY_STRING = /member -- 23:32:14.556 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:32:14.590 INFO [11650]: COREGRADE is stopping... -- 23:32:14.590 DEBUG [11650]: Closing database connection -- 23:32:14.590 SQL [11650]: pgsql_close() -- 23:32:14.734 INFO [11650]: COREGRADE is starting... -- 23:32:14.734 INFO [11650]: Version from config: 1.0 -- 23:32:14.734 DEBUG [11650]: Connecting to database... -- 23:32:14.734 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:32:14.734 SQL [11650]: pgsql_db_connect() -- 23:32:14.738 DEBUG [11650]: Database connection successful -- 23:32:14.738 INFO [11650]: _SERVER found -- 23:32:14.738 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 23:32:14.738 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 23:32:14.738 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=t48dtnbsrg8uqbjb4u3b35s3tmusjtc9 -- 23:32:14.738 INFO [11650]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:32:14.738 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:32:14.749 INFO [11650]: COREGRADE is stopping... -- 23:32:14.749 DEBUG [11650]: Closing database connection -- 23:32:14.749 SQL [11650]: pgsql_close() -- 23:32:14.762 INFO [11650]: COREGRADE is starting... -- 23:32:14.762 INFO [11650]: Version from config: 1.0 -- 23:32:14.762 DEBUG [11650]: Connecting to database... -- 23:32:14.762 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:32:14.762 SQL [11650]: pgsql_db_connect() -- 23:32:14.766 DEBUG [11650]: Database connection successful -- 23:32:14.766 INFO [11650]: _SERVER found -- 23:32:14.766 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 23:32:14.766 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 23:32:14.766 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=t48dtnbsrg8uqbjb4u3b35s3tmusjtc9 -- 23:32:14.766 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:32:14.766 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:32:14.777 INFO [11650]: COREGRADE is stopping... -- 23:32:14.777 DEBUG [11650]: Closing database connection -- 23:32:14.777 SQL [11650]: pgsql_close() -- 23:32:15.765 INFO [11650]: COREGRADE is starting... -- 23:32:15.765 INFO [11650]: Version from config: 1.0 -- 23:32:15.765 DEBUG [11650]: Connecting to database... -- 23:32:15.765 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:32:15.765 SQL [11650]: pgsql_db_connect() -- 23:32:15.770 DEBUG [11650]: Database connection successful -- 23:32:15.770 INFO [11650]: _SERVER found -- 23:32:15.770 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 23:32:15.770 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 23:32:15.770 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=t48dtnbsrg8uqbjb4u3b35s3tmusjtc9 -- 23:32:15.770 INFO [11650]: QUERY_STRING = /member/page -- 23:32:15.770 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:32:15.805 INFO [11650]: COREGRADE is stopping... -- 23:32:15.805 DEBUG [11650]: Closing database connection -- 23:32:15.805 SQL [11650]: pgsql_close() -- 23:32:15.971 INFO [11650]: COREGRADE is starting... -- 23:32:15.972 INFO [11650]: Version from config: 1.0 -- 23:32:15.972 DEBUG [11650]: Connecting to database... -- 23:32:15.972 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:32:15.972 SQL [11650]: pgsql_db_connect() -- 23:32:15.976 DEBUG [11650]: Database connection successful -- 23:32:15.976 INFO [11650]: _SERVER found -- 23:32:15.976 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 23:32:15.976 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 23:32:15.976 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=t48dtnbsrg8uqbjb4u3b35s3tmusjtc9 -- 23:32:15.976 INFO [11650]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:32:15.976 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:32:15.987 INFO [11650]: COREGRADE is stopping... -- 23:32:15.987 DEBUG [11650]: Closing database connection -- 23:32:15.987 SQL [11650]: pgsql_close() -- 23:32:15.992 INFO [11639]: COREGRADE is starting... -- 23:32:15.993 INFO [11639]: Version from config: 1.0 -- 23:32:15.993 DEBUG [11639]: Connecting to database... -- 23:32:15.993 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:32:15.993 SQL [11639]: pgsql_db_connect() -- 23:32:15.997 DEBUG [11639]: Database connection successful -- 23:32:15.997 INFO [11639]: _SERVER found -- 23:32:15.997 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 23:32:15.997 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 23:32:15.997 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=t48dtnbsrg8uqbjb4u3b35s3tmusjtc9 -- 23:32:15.997 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:32:15.997 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:32:16.008 INFO [11639]: COREGRADE is stopping... -- 23:32:16.008 DEBUG [11639]: Closing database connection -- 23:32:16.008 SQL [11639]: pgsql_close() -- 23:33:43.879 INFO [11637]: COREGRADE is starting... -- 23:33:43.879 INFO [11637]: Version from config: 1.0 -- 23:33:43.879 DEBUG [11637]: Connecting to database... -- 23:33:43.879 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:33:43.879 SQL [11637]: pgsql_db_connect() -- 23:33:43.884 DEBUG [11637]: Database connection successful -- 23:33:43.884 INFO [11637]: _SERVER found -- 23:33:43.884 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 23:33:43.884 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 23:33:43.884 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=t48dtnbsrg8uqbjb4u3b35s3tmusjtc9 -- 23:33:43.884 INFO [11637]: QUERY_STRING = /member/page -- 23:33:43.884 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:33:43.921 INFO [11637]: COREGRADE is stopping... -- 23:33:43.921 DEBUG [11637]: Closing database connection -- 23:33:43.921 SQL [11637]: pgsql_close() -- 23:33:44.048 INFO [11637]: COREGRADE is starting... -- 23:33:44.048 INFO [11637]: Version from config: 1.0 -- 23:33:44.048 DEBUG [11637]: Connecting to database... -- 23:33:44.048 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:33:44.048 SQL [11637]: pgsql_db_connect() -- 23:33:44.052 DEBUG [11637]: Database connection successful -- 23:33:44.052 INFO [11637]: _SERVER found -- 23:33:44.052 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 23:33:44.052 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 23:33:44.052 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=07scdsuii9vchq2dl2lt3r8beaivlik5 -- 23:33:44.052 INFO [11637]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:33:44.052 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:33:44.063 INFO [11637]: COREGRADE is stopping... -- 23:33:44.063 DEBUG [11637]: Closing database connection -- 23:33:44.063 SQL [11637]: pgsql_close() -- 23:33:44.157 INFO [11637]: COREGRADE is starting... -- 23:33:44.158 INFO [11637]: Version from config: 1.0 -- 23:33:44.158 DEBUG [11637]: Connecting to database... -- 23:33:44.158 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:33:44.158 SQL [11637]: pgsql_db_connect() -- 23:33:44.162 DEBUG [11637]: Database connection successful -- 23:33:44.162 INFO [11637]: _SERVER found -- 23:33:44.162 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 23:33:44.162 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 23:33:44.162 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=07scdsuii9vchq2dl2lt3r8beaivlik5 -- 23:33:44.162 INFO [11637]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:33:44.162 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:33:44.173 INFO [11637]: COREGRADE is stopping... -- 23:33:44.173 DEBUG [11637]: Closing database connection -- 23:33:44.173 SQL [11637]: pgsql_close() -- 23:33:49.526 INFO [11637]: COREGRADE is starting... -- 23:33:49.526 INFO [11637]: Version from config: 1.0 -- 23:33:49.526 DEBUG [11637]: Connecting to database... -- 23:33:49.526 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:33:49.526 SQL [11637]: pgsql_db_connect() -- 23:33:49.530 DEBUG [11637]: Database connection successful -- 23:33:49.530 INFO [11637]: _SERVER found -- 23:33:49.530 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 23:33:49.530 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 23:33:49.530 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=07scdsuii9vchq2dl2lt3r8beaivlik5 -- 23:33:49.530 INFO [11637]: QUERY_STRING = /member -- 23:33:49.530 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:33:49.565 INFO [11637]: COREGRADE is stopping... -- 23:33:49.565 DEBUG [11637]: Closing database connection -- 23:33:49.565 SQL [11637]: pgsql_close() -- 23:33:49.752 INFO [11637]: COREGRADE is starting... -- 23:33:49.753 INFO [11637]: Version from config: 1.0 -- 23:33:49.753 DEBUG [11637]: Connecting to database... -- 23:33:49.753 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:33:49.753 SQL [11637]: pgsql_db_connect() -- 23:33:49.757 DEBUG [11637]: Database connection successful -- 23:33:49.757 INFO [11637]: _SERVER found -- 23:33:49.757 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 23:33:49.757 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 23:33:49.757 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=07scdsuii9vchq2dl2lt3r8beaivlik5 -- 23:33:49.757 INFO [11637]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:33:49.757 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:33:49.768 INFO [11637]: COREGRADE is stopping... -- 23:33:49.768 DEBUG [11637]: Closing database connection -- 23:33:49.768 SQL [11637]: pgsql_close() -- 23:33:49.779 INFO [12761]: COREGRADE is starting... -- 23:33:49.779 INFO [12761]: Version from config: 1.0 -- 23:33:49.779 DEBUG [12761]: Connecting to database... -- 23:33:49.779 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:33:49.779 SQL [12761]: pgsql_db_connect() -- 23:33:49.783 DEBUG [12761]: Database connection successful -- 23:33:49.783 INFO [12761]: _SERVER found -- 23:33:49.783 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 23:33:49.783 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 23:33:49.783 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=07scdsuii9vchq2dl2lt3r8beaivlik5 -- 23:33:49.783 INFO [12761]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:33:49.783 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:33:49.795 INFO [12761]: COREGRADE is stopping... -- 23:33:49.795 DEBUG [12761]: Closing database connection -- 23:33:49.795 SQL [12761]: pgsql_close() -- 23:33:50.693 INFO [12761]: COREGRADE is starting... -- 23:33:50.694 INFO [12761]: Version from config: 1.0 -- 23:33:50.694 DEBUG [12761]: Connecting to database... -- 23:33:50.694 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:33:50.694 SQL [12761]: pgsql_db_connect() -- 23:33:50.698 DEBUG [12761]: Database connection successful -- 23:33:50.698 INFO [12761]: _SERVER found -- 23:33:50.698 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 23:33:50.698 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 23:33:50.698 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=07scdsuii9vchq2dl2lt3r8beaivlik5 -- 23:33:50.698 INFO [12761]: QUERY_STRING = /member/page -- 23:33:50.698 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:33:50.735 INFO [12761]: COREGRADE is stopping... -- 23:33:50.735 DEBUG [12761]: Closing database connection -- 23:33:50.735 SQL [12761]: pgsql_close() -- 23:33:50.872 INFO [12761]: COREGRADE is starting... -- 23:33:50.872 INFO [12761]: Version from config: 1.0 -- 23:33:50.872 DEBUG [12761]: Connecting to database... -- 23:33:50.872 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:33:50.872 SQL [12761]: pgsql_db_connect() -- 23:33:50.876 DEBUG [12761]: Database connection successful -- 23:33:50.876 INFO [12761]: _SERVER found -- 23:33:50.876 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 23:33:50.876 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 23:33:50.876 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=07scdsuii9vchq2dl2lt3r8beaivlik5 -- 23:33:50.876 INFO [12761]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:33:50.876 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:33:50.887 INFO [12761]: COREGRADE is stopping... -- 23:33:50.887 DEBUG [12761]: Closing database connection -- 23:33:50.887 SQL [12761]: pgsql_close() -- 23:33:50.971 INFO [12761]: COREGRADE is starting... -- 23:33:50.971 INFO [12761]: Version from config: 1.0 -- 23:33:50.971 DEBUG [12761]: Connecting to database... -- 23:33:50.971 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:33:50.971 SQL [12761]: pgsql_db_connect() -- 23:33:50.975 DEBUG [12761]: Database connection successful -- 23:33:50.975 INFO [12761]: _SERVER found -- 23:33:50.975 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 23:33:50.975 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 23:33:50.975 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=07scdsuii9vchq2dl2lt3r8beaivlik5 -- 23:33:50.975 INFO [12761]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:33:50.975 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:33:50.986 INFO [12761]: COREGRADE is stopping... -- 23:33:50.986 DEBUG [12761]: Closing database connection -- 23:33:50.986 SQL [12761]: pgsql_close() -- 23:34:33.317 INFO [11652]: COREGRADE is starting... -- 23:34:33.318 INFO [11652]: Version from config: 1.0 -- 23:34:33.318 DEBUG [11652]: Connecting to database... -- 23:34:33.318 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:34:33.318 SQL [11652]: pgsql_db_connect() -- 23:34:33.322 DEBUG [11652]: Database connection successful -- 23:34:33.322 INFO [11652]: _SERVER found -- 23:34:33.322 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 23:34:33.322 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 23:34:33.322 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=07scdsuii9vchq2dl2lt3r8beaivlik5 -- 23:34:33.322 INFO [11652]: QUERY_STRING = /member/page -- 23:34:33.322 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:34:33.358 INFO [11652]: COREGRADE is stopping... -- 23:34:33.358 DEBUG [11652]: Closing database connection -- 23:34:33.358 SQL [11652]: pgsql_close() -- 23:34:33.533 INFO [11652]: COREGRADE is starting... -- 23:34:33.534 INFO [11652]: Version from config: 1.0 -- 23:34:33.534 DEBUG [11652]: Connecting to database... -- 23:34:33.534 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:34:33.534 SQL [11652]: pgsql_db_connect() -- 23:34:33.538 DEBUG [11652]: Database connection successful -- 23:34:33.538 INFO [11652]: _SERVER found -- 23:34:33.538 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 23:34:33.538 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 23:34:33.538 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=07scdsuii9vchq2dl2lt3r8beaivlik5 -- 23:34:33.538 INFO [11652]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:34:33.538 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:34:33.549 INFO [11652]: COREGRADE is stopping... -- 23:34:33.549 DEBUG [11652]: Closing database connection -- 23:34:33.549 SQL [11652]: pgsql_close() -- 23:34:33.554 INFO [12763]: COREGRADE is starting... -- 23:34:33.555 INFO [12763]: Version from config: 1.0 -- 23:34:33.555 DEBUG [12763]: Connecting to database... -- 23:34:33.555 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:34:33.555 SQL [12763]: pgsql_db_connect() -- 23:34:33.558 DEBUG [12763]: Database connection successful -- 23:34:33.558 INFO [12763]: _SERVER found -- 23:34:33.558 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 23:34:33.558 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 23:34:33.558 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=07scdsuii9vchq2dl2lt3r8beaivlik5 -- 23:34:33.558 INFO [12763]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:34:33.558 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:34:33.570 INFO [12763]: COREGRADE is stopping... -- 23:34:33.570 DEBUG [12763]: Closing database connection -- 23:34:33.570 SQL [12763]: pgsql_close() -- 23:35:38.822 INFO [11644]: COREGRADE is starting... -- 23:35:38.822 INFO [11644]: Version from config: 1.0 -- 23:35:38.822 DEBUG [11644]: Connecting to database... -- 23:35:38.822 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:35:38.822 SQL [11644]: pgsql_db_connect() -- 23:35:38.827 DEBUG [11644]: Database connection successful -- 23:35:38.827 INFO [11644]: _SERVER found -- 23:35:38.827 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 23:35:38.827 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 23:35:38.827 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=07scdsuii9vchq2dl2lt3r8beaivlik5 -- 23:35:38.827 INFO [11644]: QUERY_STRING = /member/page -- 23:35:38.827 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:35:38.863 INFO [11644]: COREGRADE is stopping... -- 23:35:38.863 DEBUG [11644]: Closing database connection -- 23:35:38.863 SQL [11644]: pgsql_close() -- 23:35:38.993 INFO [11644]: COREGRADE is starting... -- 23:35:38.994 INFO [11644]: Version from config: 1.0 -- 23:35:38.994 DEBUG [11644]: Connecting to database... -- 23:35:38.994 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:35:38.994 SQL [11644]: pgsql_db_connect() -- 23:35:38.998 DEBUG [11644]: Database connection successful -- 23:35:38.998 INFO [11644]: _SERVER found -- 23:35:38.998 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 23:35:38.998 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 23:35:38.998 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=07scdsuii9vchq2dl2lt3r8beaivlik5 -- 23:35:38.998 INFO [11644]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:35:38.998 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:35:39.009 INFO [11644]: COREGRADE is stopping... -- 23:35:39.009 DEBUG [11644]: Closing database connection -- 23:35:39.009 SQL [11644]: pgsql_close() -- 23:35:39.015 INFO [11636]: COREGRADE is starting... -- 23:35:39.015 INFO [11636]: Version from config: 1.0 -- 23:35:39.015 DEBUG [11636]: Connecting to database... -- 23:35:39.015 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:35:39.015 SQL [11636]: pgsql_db_connect() -- 23:35:39.019 DEBUG [11636]: Database connection successful -- 23:35:39.019 INFO [11636]: _SERVER found -- 23:35:39.019 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 23:35:39.019 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 23:35:39.019 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=07scdsuii9vchq2dl2lt3r8beaivlik5 -- 23:35:39.019 INFO [11636]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:35:39.019 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:35:39.030 INFO [11636]: COREGRADE is stopping... -- 23:35:39.030 DEBUG [11636]: Closing database connection -- 23:35:39.030 SQL [11636]: pgsql_close() -- 23:36:54.370 INFO [11638]: COREGRADE is starting... -- 23:36:54.371 INFO [11638]: Version from config: 1.0 -- 23:36:54.371 DEBUG [11638]: Connecting to database... -- 23:36:54.371 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:36:54.371 SQL [11638]: pgsql_db_connect() -- 23:36:54.375 DEBUG [11638]: Database connection successful -- 23:36:54.375 INFO [11638]: _SERVER found -- 23:36:54.375 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 23:36:54.375 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 23:36:54.375 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=07scdsuii9vchq2dl2lt3r8beaivlik5 -- 23:36:54.375 INFO [11638]: QUERY_STRING = /member/page -- 23:36:54.375 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:36:54.411 INFO [11638]: COREGRADE is stopping... -- 23:36:54.411 DEBUG [11638]: Closing database connection -- 23:36:54.411 SQL [11638]: pgsql_close() -- 23:36:54.531 INFO [11638]: COREGRADE is starting... -- 23:36:54.531 INFO [11638]: Version from config: 1.0 -- 23:36:54.531 DEBUG [11638]: Connecting to database... -- 23:36:54.531 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:36:54.531 SQL [11638]: pgsql_db_connect() -- 23:36:54.535 DEBUG [11638]: Database connection successful -- 23:36:54.535 INFO [11638]: _SERVER found -- 23:36:54.535 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 23:36:54.535 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 23:36:54.535 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=07scdsuii9vchq2dl2lt3r8beaivlik5 -- 23:36:54.535 INFO [11638]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:36:54.535 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:36:54.546 INFO [11638]: COREGRADE is stopping... -- 23:36:54.546 DEBUG [11638]: Closing database connection -- 23:36:54.546 SQL [11638]: pgsql_close() -- 23:36:54.553 INFO [12764]: COREGRADE is starting... -- 23:36:54.554 INFO [12764]: Version from config: 1.0 -- 23:36:54.554 DEBUG [12764]: Connecting to database... -- 23:36:54.554 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:36:54.554 SQL [12764]: pgsql_db_connect() -- 23:36:54.558 DEBUG [12764]: Database connection successful -- 23:36:54.558 INFO [12764]: _SERVER found -- 23:36:54.558 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 23:36:54.558 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 23:36:54.558 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=07scdsuii9vchq2dl2lt3r8beaivlik5 -- 23:36:54.558 INFO [12764]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:36:54.558 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:36:54.569 INFO [12764]: COREGRADE is stopping... -- 23:36:54.569 DEBUG [12764]: Closing database connection -- 23:36:54.569 SQL [12764]: pgsql_close() -- 23:39:27.611 INFO [11650]: COREGRADE is starting... -- 23:39:27.611 INFO [11650]: Version from config: 1.0 -- 23:39:27.611 DEBUG [11650]: Connecting to database... -- 23:39:27.611 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:39:27.611 SQL [11650]: pgsql_db_connect() -- 23:39:27.616 DEBUG [11650]: Database connection successful -- 23:39:27.616 INFO [11650]: _SERVER found -- 23:39:27.616 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 23:39:27.616 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 23:39:27.616 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=07scdsuii9vchq2dl2lt3r8beaivlik5 -- 23:39:27.616 INFO [11650]: QUERY_STRING = /member/configure -- 23:39:27.616 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:39:27.652 INFO [11650]: COREGRADE is stopping... -- 23:39:27.652 DEBUG [11650]: Closing database connection -- 23:39:27.652 SQL [11650]: pgsql_close() -- 23:39:27.759 INFO [11650]: COREGRADE is starting... -- 23:39:27.759 INFO [11650]: Version from config: 1.0 -- 23:39:27.759 DEBUG [11650]: Connecting to database... -- 23:39:27.759 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:39:27.759 SQL [11650]: pgsql_db_connect() -- 23:39:27.763 DEBUG [11650]: Database connection successful -- 23:39:27.763 INFO [11650]: _SERVER found -- 23:39:27.763 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 23:39:27.763 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 23:39:27.763 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=rhj4mbfv63c2tjib1k05vmkpn64gqmcj -- 23:39:27.763 INFO [11650]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:39:27.763 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:39:27.775 INFO [11650]: COREGRADE is stopping... -- 23:39:27.775 DEBUG [11650]: Closing database connection -- 23:39:27.775 SQL [11650]: pgsql_close() -- 23:39:27.853 INFO [11650]: COREGRADE is starting... -- 23:39:27.853 INFO [11650]: Version from config: 1.0 -- 23:39:27.853 DEBUG [11650]: Connecting to database... -- 23:39:27.853 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:39:27.853 SQL [11650]: pgsql_db_connect() -- 23:39:27.857 DEBUG [11650]: Database connection successful -- 23:39:27.857 INFO [11650]: _SERVER found -- 23:39:27.857 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 23:39:27.857 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 23:39:27.857 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=rhj4mbfv63c2tjib1k05vmkpn64gqmcj -- 23:39:27.857 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:39:27.857 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:39:27.868 INFO [11650]: COREGRADE is stopping... -- 23:39:27.868 DEBUG [11650]: Closing database connection -- 23:39:27.868 SQL [11650]: pgsql_close() -- 23:39:29.980 INFO [11650]: COREGRADE is starting... -- 23:39:29.981 INFO [11650]: Version from config: 1.0 -- 23:39:29.981 DEBUG [11650]: Connecting to database... -- 23:39:29.981 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:39:29.981 SQL [11650]: pgsql_db_connect() -- 23:39:29.985 DEBUG [11650]: Database connection successful -- 23:39:29.985 INFO [11650]: _SERVER found -- 23:39:29.985 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 23:39:29.985 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 23:39:29.985 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=rhj4mbfv63c2tjib1k05vmkpn64gqmcj -- 23:39:29.985 INFO [11650]: QUERY_STRING = /member/page -- 23:39:29.985 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:39:30.020 INFO [11650]: COREGRADE is stopping... -- 23:39:30.020 DEBUG [11650]: Closing database connection -- 23:39:30.020 SQL [11650]: pgsql_close() -- 23:39:30.211 INFO [11650]: COREGRADE is starting... -- 23:39:30.211 INFO [11650]: Version from config: 1.0 -- 23:39:30.211 DEBUG [11650]: Connecting to database... -- 23:39:30.211 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:39:30.211 SQL [11650]: pgsql_db_connect() -- 23:39:30.216 DEBUG [11650]: Database connection successful -- 23:39:30.216 INFO [11650]: _SERVER found -- 23:39:30.216 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 23:39:30.216 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 23:39:30.216 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=rhj4mbfv63c2tjib1k05vmkpn64gqmcj -- 23:39:30.216 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:39:30.216 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:39:30.227 INFO [11650]: COREGRADE is stopping... -- 23:39:30.227 DEBUG [11650]: Closing database connection -- 23:39:30.227 SQL [11650]: pgsql_close() -- 23:40:09.351 INFO [11639]: COREGRADE is starting... -- 23:40:09.351 INFO [11639]: Version from config: 1.0 -- 23:40:09.351 DEBUG [11639]: Connecting to database... -- 23:40:09.351 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:40:09.351 SQL [11639]: pgsql_db_connect() -- 23:40:09.355 DEBUG [11639]: Database connection successful -- 23:40:09.355 INFO [11639]: _SERVER found -- 23:40:09.355 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 23:40:09.355 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 23:40:09.355 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=rhj4mbfv63c2tjib1k05vmkpn64gqmcj -- 23:40:09.355 INFO [11639]: QUERY_STRING = /member/page -- 23:40:09.355 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:40:09.391 INFO [11639]: COREGRADE is stopping... -- 23:40:09.391 DEBUG [11639]: Closing database connection -- 23:40:09.391 SQL [11639]: pgsql_close() -- 23:40:09.515 INFO [11639]: COREGRADE is starting... -- 23:40:09.515 INFO [11639]: Version from config: 1.0 -- 23:40:09.515 DEBUG [11639]: Connecting to database... -- 23:40:09.515 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:40:09.515 SQL [11639]: pgsql_db_connect() -- 23:40:09.519 DEBUG [11639]: Database connection successful -- 23:40:09.519 INFO [11639]: _SERVER found -- 23:40:09.519 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 23:40:09.519 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 23:40:09.519 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=rhj4mbfv63c2tjib1k05vmkpn64gqmcj -- 23:40:09.519 INFO [11639]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:40:09.519 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:40:09.530 INFO [11639]: COREGRADE is stopping... -- 23:40:09.530 DEBUG [11639]: Closing database connection -- 23:40:09.530 SQL [11639]: pgsql_close() -- 23:40:09.532 INFO [11637]: COREGRADE is starting... -- 23:40:09.532 INFO [11637]: Version from config: 1.0 -- 23:40:09.532 DEBUG [11637]: Connecting to database... -- 23:40:09.532 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:40:09.532 SQL [11637]: pgsql_db_connect() -- 23:40:09.536 DEBUG [11637]: Database connection successful -- 23:40:09.536 INFO [11637]: _SERVER found -- 23:40:09.536 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 23:40:09.536 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 23:40:09.536 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=rhj4mbfv63c2tjib1k05vmkpn64gqmcj -- 23:40:09.536 INFO [11637]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:40:09.536 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:40:09.547 INFO [11637]: COREGRADE is stopping... -- 23:40:09.547 DEBUG [11637]: Closing database connection -- 23:40:09.547 SQL [11637]: pgsql_close() -- 23:40:31.288 INFO [12761]: COREGRADE is starting... -- 23:40:31.288 INFO [12761]: Version from config: 1.0 -- 23:40:31.288 DEBUG [12761]: Connecting to database... -- 23:40:31.288 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:40:31.288 SQL [12761]: pgsql_db_connect() -- 23:40:31.292 DEBUG [12761]: Database connection successful -- 23:40:31.292 INFO [12761]: _SERVER found -- 23:40:31.292 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 23:40:31.292 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 23:40:31.292 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=rhj4mbfv63c2tjib1k05vmkpn64gqmcj -- 23:40:31.292 INFO [12761]: QUERY_STRING = /member/page -- 23:40:31.292 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:40:31.331 INFO [12761]: COREGRADE is stopping... -- 23:40:31.331 DEBUG [12761]: Closing database connection -- 23:40:31.331 SQL [12761]: pgsql_close() -- 23:40:31.476 INFO [12761]: COREGRADE is starting... -- 23:40:31.476 INFO [12761]: Version from config: 1.0 -- 23:40:31.476 DEBUG [12761]: Connecting to database... -- 23:40:31.476 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:40:31.476 SQL [12761]: pgsql_db_connect() -- 23:40:31.480 DEBUG [12761]: Database connection successful -- 23:40:31.480 INFO [12761]: _SERVER found -- 23:40:31.480 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 23:40:31.480 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 23:40:31.480 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=rhj4mbfv63c2tjib1k05vmkpn64gqmcj -- 23:40:31.480 INFO [12761]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:40:31.480 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:40:31.491 INFO [12761]: COREGRADE is stopping... -- 23:40:31.491 DEBUG [12761]: Closing database connection -- 23:40:31.491 SQL [12761]: pgsql_close() -- 23:40:31.494 INFO [12761]: COREGRADE is starting... -- 23:40:31.494 INFO [12761]: Version from config: 1.0 -- 23:40:31.494 DEBUG [12761]: Connecting to database... -- 23:40:31.494 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:40:31.494 SQL [12761]: pgsql_db_connect() -- 23:40:31.498 DEBUG [12761]: Database connection successful -- 23:40:31.498 INFO [12761]: _SERVER found -- 23:40:31.498 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 23:40:31.498 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 23:40:31.498 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=rhj4mbfv63c2tjib1k05vmkpn64gqmcj -- 23:40:31.498 INFO [12761]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:40:31.498 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:40:31.509 INFO [12761]: COREGRADE is stopping... -- 23:40:31.509 DEBUG [12761]: Closing database connection -- 23:40:31.509 SQL [12761]: pgsql_close() -- 23:41:30.564 INFO [12763]: COREGRADE is starting... -- 23:41:30.564 INFO [12763]: Version from config: 1.0 -- 23:41:30.564 DEBUG [12763]: Connecting to database... -- 23:41:30.564 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:41:30.564 SQL [12763]: pgsql_db_connect() -- 23:41:30.568 DEBUG [12763]: Database connection successful -- 23:41:30.568 INFO [12763]: _SERVER found -- 23:41:30.568 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 23:41:30.568 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 23:41:30.568 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=rhj4mbfv63c2tjib1k05vmkpn64gqmcj -- 23:41:30.568 INFO [12763]: QUERY_STRING = /member/page -- 23:41:30.568 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:41:30.605 INFO [12763]: COREGRADE is stopping... -- 23:41:30.605 DEBUG [12763]: Closing database connection -- 23:41:30.605 SQL [12763]: pgsql_close() -- 23:41:30.750 INFO [12763]: COREGRADE is starting... -- 23:41:30.751 INFO [12763]: Version from config: 1.0 -- 23:41:30.751 DEBUG [12763]: Connecting to database... -- 23:41:30.751 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:41:30.751 SQL [12763]: pgsql_db_connect() -- 23:41:30.755 DEBUG [12763]: Database connection successful -- 23:41:30.755 INFO [12763]: _SERVER found -- 23:41:30.755 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 23:41:30.755 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 23:41:30.755 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=rhj4mbfv63c2tjib1k05vmkpn64gqmcj -- 23:41:30.755 INFO [12763]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:41:30.755 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:41:30.766 INFO [12763]: COREGRADE is stopping... -- 23:41:30.766 DEBUG [12763]: Closing database connection -- 23:41:30.766 SQL [12763]: pgsql_close() -- 23:41:30.773 INFO [11652]: COREGRADE is starting... -- 23:41:30.774 INFO [11652]: Version from config: 1.0 -- 23:41:30.774 DEBUG [11652]: Connecting to database... -- 23:41:30.774 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:41:30.774 SQL [11652]: pgsql_db_connect() -- 23:41:30.778 DEBUG [11652]: Database connection successful -- 23:41:30.778 INFO [11652]: _SERVER found -- 23:41:30.778 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 23:41:30.778 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 23:41:30.778 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=rhj4mbfv63c2tjib1k05vmkpn64gqmcj -- 23:41:30.778 INFO [11652]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:41:30.778 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:41:30.789 INFO [11652]: COREGRADE is stopping... -- 23:41:30.789 DEBUG [11652]: Closing database connection -- 23:41:30.789 SQL [11652]: pgsql_close() -- 23:54:55.210 INFO [11644]: COREGRADE is starting... -- 23:54:55.211 INFO [11644]: Version from config: 1.0 -- 23:54:55.211 DEBUG [11644]: Connecting to database... -- 23:54:55.211 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:54:55.211 SQL [11644]: pgsql_db_connect() -- 23:54:55.216 DEBUG [11644]: Database connection successful -- 23:54:55.216 INFO [11644]: _SERVER found -- 23:54:55.216 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 23:54:55.216 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 23:54:55.216 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=rhj4mbfv63c2tjib1k05vmkpn64gqmcj -- 23:54:55.216 INFO [11644]: QUERY_STRING = /member -- 23:54:55.216 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:54:55.253 INFO [11644]: COREGRADE is stopping... -- 23:54:55.253 DEBUG [11644]: Closing database connection -- 23:54:55.253 SQL [11644]: pgsql_close() -- 23:54:55.423 INFO [11644]: COREGRADE is starting... -- 23:54:55.423 INFO [11644]: Version from config: 1.0 -- 23:54:55.423 DEBUG [11644]: Connecting to database... -- 23:54:55.423 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:54:55.423 SQL [11644]: pgsql_db_connect() -- 23:54:55.427 DEBUG [11644]: Database connection successful -- 23:54:55.427 INFO [11644]: _SERVER found -- 23:54:55.427 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 23:54:55.427 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 23:54:55.427 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=n1ck1h65vn7i21lkpiqjgjphv5u310fl -- 23:54:55.427 INFO [11644]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:54:55.427 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:54:55.438 INFO [11644]: COREGRADE is stopping... -- 23:54:55.438 DEBUG [11644]: Closing database connection -- 23:54:55.438 SQL [11644]: pgsql_close() -- 23:54:55.447 INFO [11644]: COREGRADE is starting... -- 23:54:55.448 INFO [11644]: Version from config: 1.0 -- 23:54:55.448 DEBUG [11644]: Connecting to database... -- 23:54:55.448 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:54:55.448 SQL [11644]: pgsql_db_connect() -- 23:54:55.451 DEBUG [11644]: Database connection successful -- 23:54:55.452 INFO [11644]: _SERVER found -- 23:54:55.452 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 23:54:55.452 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 23:54:55.452 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=n1ck1h65vn7i21lkpiqjgjphv5u310fl -- 23:54:55.452 INFO [11644]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:54:55.452 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:54:55.462 INFO [11644]: COREGRADE is stopping... -- 23:54:55.462 DEBUG [11644]: Closing database connection -- 23:54:55.462 SQL [11644]: pgsql_close() -- 23:54:57.525 INFO [11644]: COREGRADE is starting... -- 23:54:57.526 INFO [11644]: Version from config: 1.0 -- 23:54:57.526 DEBUG [11644]: Connecting to database... -- 23:54:57.526 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:54:57.526 SQL [11644]: pgsql_db_connect() -- 23:54:57.530 DEBUG [11644]: Database connection successful -- 23:54:57.530 INFO [11644]: _SERVER found -- 23:54:57.530 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 23:54:57.530 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 23:54:57.530 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=n1ck1h65vn7i21lkpiqjgjphv5u310fl -- 23:54:57.530 INFO [11644]: QUERY_STRING = /member/page -- 23:54:57.530 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:54:57.566 INFO [11644]: COREGRADE is stopping... -- 23:54:57.566 DEBUG [11644]: Closing database connection -- 23:54:57.566 SQL [11644]: pgsql_close() -- 23:54:57.700 INFO [11644]: COREGRADE is starting... -- 23:54:57.701 INFO [11644]: Version from config: 1.0 -- 23:54:57.701 DEBUG [11644]: Connecting to database... -- 23:54:57.701 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:54:57.701 SQL [11644]: pgsql_db_connect() -- 23:54:57.705 DEBUG [11644]: Database connection successful -- 23:54:57.705 INFO [11644]: _SERVER found -- 23:54:57.705 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 23:54:57.705 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 23:54:57.705 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=n1ck1h65vn7i21lkpiqjgjphv5u310fl -- 23:54:57.705 INFO [11644]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:54:57.705 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:54:57.716 INFO [11644]: COREGRADE is stopping... -- 23:54:57.716 DEBUG [11644]: Closing database connection -- 23:54:57.716 SQL [11644]: pgsql_close() -- 23:54:57.723 INFO [11636]: COREGRADE is starting... -- 23:54:57.724 INFO [11636]: Version from config: 1.0 -- 23:54:57.724 DEBUG [11636]: Connecting to database... -- 23:54:57.724 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:54:57.724 SQL [11636]: pgsql_db_connect() -- 23:54:57.728 DEBUG [11636]: Database connection successful -- 23:54:57.728 INFO [11636]: _SERVER found -- 23:54:57.728 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 23:54:57.728 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 23:54:57.728 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=n1ck1h65vn7i21lkpiqjgjphv5u310fl -- 23:54:57.728 INFO [11636]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:54:57.728 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:54:57.739 INFO [11636]: COREGRADE is stopping... -- 23:54:57.739 DEBUG [11636]: Closing database connection -- 23:54:57.739 SQL [11636]: pgsql_close() -- 23:57:50.526 INFO [11638]: COREGRADE is starting... -- 23:57:50.526 INFO [11638]: Version from config: 1.0 -- 23:57:50.526 DEBUG [11638]: Connecting to database... -- 23:57:50.526 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:57:50.526 SQL [11638]: pgsql_db_connect() -- 23:57:50.531 DEBUG [11638]: Database connection successful -- 23:57:50.531 INFO [11638]: _SERVER found -- 23:57:50.531 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 23:57:50.531 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 23:57:50.531 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=n1ck1h65vn7i21lkpiqjgjphv5u310fl -- 23:57:50.531 INFO [11638]: QUERY_STRING = /member/page -- 23:57:50.531 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:57:50.567 INFO [11638]: COREGRADE is stopping... -- 23:57:50.567 DEBUG [11638]: Closing database connection -- 23:57:50.567 SQL [11638]: pgsql_close() -- 23:57:50.719 INFO [11638]: COREGRADE is starting... -- 23:57:50.719 INFO [11638]: Version from config: 1.0 -- 23:57:50.719 DEBUG [11638]: Connecting to database... -- 23:57:50.719 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:57:50.719 SQL [11638]: pgsql_db_connect() -- 23:57:50.723 DEBUG [11638]: Database connection successful -- 23:57:50.723 INFO [11638]: _SERVER found -- 23:57:50.723 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 23:57:50.723 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 23:57:50.723 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=n1ck1h65vn7i21lkpiqjgjphv5u310fl -- 23:57:50.723 INFO [11638]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:57:50.723 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:57:50.734 INFO [11638]: COREGRADE is stopping... -- 23:57:50.734 DEBUG [11638]: Closing database connection -- 23:57:50.734 SQL [11638]: pgsql_close() -- 23:57:50.740 INFO [12764]: COREGRADE is starting... -- 23:57:50.741 INFO [12764]: Version from config: 1.0 -- 23:57:50.741 DEBUG [12764]: Connecting to database... -- 23:57:50.741 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:57:50.741 SQL [12764]: pgsql_db_connect() -- 23:57:50.745 DEBUG [12764]: Database connection successful -- 23:57:50.745 INFO [12764]: _SERVER found -- 23:57:50.745 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 23:57:50.745 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 23:57:50.745 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=n1ck1h65vn7i21lkpiqjgjphv5u310fl -- 23:57:50.745 INFO [12764]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:57:50.745 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:57:50.756 INFO [12764]: COREGRADE is stopping... -- 23:57:50.756 DEBUG [12764]: Closing database connection -- 23:57:50.756 SQL [12764]: pgsql_close() -- 00:00:59.718 INFO [11650]: COREGRADE is starting... -- 00:00:59.718 INFO [11650]: Version from config: 1.0 -- 00:00:59.718 DEBUG [11650]: Connecting to database... -- 00:00:59.718 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:00:59.718 SQL [11650]: pgsql_db_connect() -- 00:00:59.723 DEBUG [11650]: Database connection successful -- 00:00:59.723 INFO [11650]: _SERVER found -- 00:00:59.723 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 00:00:59.723 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 00:00:59.723 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=n1ck1h65vn7i21lkpiqjgjphv5u310fl -- 00:00:59.723 INFO [11650]: QUERY_STRING = /member/page -- 00:00:59.723 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:00:59.760 INFO [11650]: COREGRADE is stopping... -- 00:00:59.761 DEBUG [11650]: Closing database connection -- 00:00:59.761 SQL [11650]: pgsql_close() -- 00:00:59.891 INFO [11650]: COREGRADE is starting... -- 00:00:59.891 INFO [11650]: Version from config: 1.0 -- 00:00:59.891 DEBUG [11650]: Connecting to database... -- 00:00:59.891 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:00:59.891 SQL [11650]: pgsql_db_connect() -- 00:00:59.895 DEBUG [11650]: Database connection successful -- 00:00:59.895 INFO [11650]: _SERVER found -- 00:00:59.895 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 00:00:59.895 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 00:00:59.895 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ln3umiau2i0j4ql10dbgftv3i414f4um -- 00:00:59.895 INFO [11650]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:00:59.895 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:00:59.906 INFO [11650]: COREGRADE is stopping... -- 00:00:59.906 DEBUG [11650]: Closing database connection -- 00:00:59.906 SQL [11650]: pgsql_close() -- 00:00:59.915 INFO [11637]: COREGRADE is starting... -- 00:00:59.915 INFO [11637]: Version from config: 1.0 -- 00:00:59.915 DEBUG [11637]: Connecting to database... -- 00:00:59.915 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:00:59.915 SQL [11637]: pgsql_db_connect() -- 00:00:59.919 DEBUG [11637]: Database connection successful -- 00:00:59.919 INFO [11637]: _SERVER found -- 00:00:59.919 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 00:00:59.919 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 00:00:59.919 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ln3umiau2i0j4ql10dbgftv3i414f4um -- 00:00:59.919 INFO [11637]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:00:59.919 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:00:59.931 INFO [11637]: COREGRADE is stopping... -- 00:00:59.931 DEBUG [11637]: Closing database connection -- 00:00:59.931 SQL [11637]: pgsql_close() -- 00:02:56.896 INFO [11639]: COREGRADE is starting... -- 00:02:56.896 INFO [11639]: Version from config: 1.0 -- 00:02:56.896 DEBUG [11639]: Connecting to database... -- 00:02:56.897 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:56.897 SQL [11639]: pgsql_db_connect() -- 00:02:56.901 DEBUG [11639]: Database connection successful -- 00:02:56.901 INFO [11639]: _SERVER found -- 00:02:56.901 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 00:02:56.901 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 00:02:56.901 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ln3umiau2i0j4ql10dbgftv3i414f4um -- 00:02:56.901 INFO [11639]: QUERY_STRING = /member -- 00:02:56.901 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:02:56.937 INFO [11639]: COREGRADE is stopping... -- 00:02:56.937 DEBUG [11639]: Closing database connection -- 00:02:56.937 SQL [11639]: pgsql_close() -- 00:02:57.127 INFO [11639]: COREGRADE is starting... -- 00:02:57.127 INFO [11639]: Version from config: 1.0 -- 00:02:57.127 DEBUG [11639]: Connecting to database... -- 00:02:57.127 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:57.127 SQL [11639]: pgsql_db_connect() -- 00:02:57.132 DEBUG [11639]: Database connection successful -- 00:02:57.132 INFO [11639]: _SERVER found -- 00:02:57.132 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 00:02:57.132 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 00:02:57.132 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ln3umiau2i0j4ql10dbgftv3i414f4um -- 00:02:57.132 INFO [11639]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:02:57.132 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:02:57.143 INFO [11639]: COREGRADE is stopping... -- 00:02:57.143 DEBUG [11639]: Closing database connection -- 00:02:57.143 SQL [11639]: pgsql_close() -- 00:02:57.152 INFO [12761]: COREGRADE is starting... -- 00:02:57.152 INFO [12761]: Version from config: 1.0 -- 00:02:57.152 DEBUG [12761]: Connecting to database... -- 00:02:57.152 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:57.152 SQL [12761]: pgsql_db_connect() -- 00:02:57.156 DEBUG [12761]: Database connection successful -- 00:02:57.156 INFO [12761]: _SERVER found -- 00:02:57.156 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 00:02:57.156 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 00:02:57.156 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ln3umiau2i0j4ql10dbgftv3i414f4um -- 00:02:57.156 INFO [12761]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:02:57.156 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:02:57.168 INFO [12761]: COREGRADE is stopping... -- 00:02:57.168 DEBUG [12761]: Closing database connection -- 00:02:57.168 SQL [12761]: pgsql_close() -- 00:02:58.287 INFO [12761]: COREGRADE is starting... -- 00:02:58.288 INFO [12761]: Version from config: 1.0 -- 00:02:58.288 DEBUG [12761]: Connecting to database... -- 00:02:58.288 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:58.288 SQL [12761]: pgsql_db_connect() -- 00:02:58.292 DEBUG [12761]: Database connection successful -- 00:02:58.292 INFO [12761]: _SERVER found -- 00:02:58.292 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 00:02:58.292 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 00:02:58.292 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ln3umiau2i0j4ql10dbgftv3i414f4um -- 00:02:58.292 INFO [12761]: QUERY_STRING = /member/page -- 00:02:58.292 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:02:58.329 INFO [12761]: COREGRADE is stopping... -- 00:02:58.329 DEBUG [12761]: Closing database connection -- 00:02:58.329 SQL [12761]: pgsql_close() -- 00:02:58.450 INFO [12761]: COREGRADE is starting... -- 00:02:58.451 INFO [12761]: Version from config: 1.0 -- 00:02:58.451 DEBUG [12761]: Connecting to database... -- 00:02:58.451 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:58.451 SQL [12761]: pgsql_db_connect() -- 00:02:58.459 INFO [11639]: COREGRADE is starting... -- 00:02:58.459 INFO [11639]: Version from config: 1.0 -- 00:02:58.459 DEBUG [11639]: Connecting to database... -- 00:02:58.459 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:58.459 SQL [11639]: pgsql_db_connect() -- 00:02:58.455 DEBUG [12761]: Database connection successful -- 00:02:58.455 INFO [12761]: _SERVER found -- 00:02:58.455 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 00:02:58.455 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 00:02:58.455 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ln3umiau2i0j4ql10dbgftv3i414f4um -- 00:02:58.455 INFO [12761]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:02:58.455 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:02:58.466 INFO [12761]: COREGRADE is stopping... -- 00:02:58.466 DEBUG [12761]: Closing database connection -- 00:02:58.466 SQL [12761]: pgsql_close() -- 00:02:58.463 DEBUG [11639]: Database connection successful -- 00:02:58.463 INFO [11639]: _SERVER found -- 00:02:58.463 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 00:02:58.463 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 00:02:58.463 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ln3umiau2i0j4ql10dbgftv3i414f4um -- 00:02:58.463 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:02:58.463 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:02:58.474 INFO [11639]: COREGRADE is stopping... -- 00:02:58.474 DEBUG [11639]: Closing database connection -- 00:02:58.474 SQL [11639]: pgsql_close() -- 00:03:05.279 INFO [12763]: COREGRADE is starting... -- 00:03:05.279 INFO [12763]: Version from config: 1.0 -- 00:03:05.279 DEBUG [12763]: Connecting to database... -- 00:03:05.280 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:03:05.280 SQL [12763]: pgsql_db_connect() -- 00:03:05.315 INFO [12763]: COREGRADE is starting... -- 00:03:05.315 INFO [12763]: Version from config: 1.0 -- 00:03:05.315 DEBUG [12763]: Connecting to database... -- 00:03:05.315 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:03:05.316 SQL [12763]: pgsql_db_connect() -- 00:03:05.320 DEBUG [12763]: Database connection successful -- 00:03:05.320 INFO [12763]: _SERVER found -- 00:03:05.320 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 00:03:05.320 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 00:03:05.320 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=cgq9ckaaaieo5jl2r8f9aomt6k9q2buq -- 00:03:05.320 INFO [12763]: QUERY_STRING = -- 00:03:05.320 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:03:05.320 INFO [12763]: SystemStatus()09-09-********~************ -- 00:03:05.320 INFO [12763]: long coregrade_api_main(CVars in, CVars &out) -- 00:03:05.320 INFO [12763]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 00:03:05.320 INFO [12763]: account calls -- 00:03:05.320 INFO [12763]: account_calls() -- 00:03:05.320 INFO [12763]: LoginCoreGradeAccount() -- 00:03:05.321 FLOG_MAX [12763]: REQ_STRING(username) -- 00:03:05.321 FLOG_MAX [12763]: REQ_STRING(password) -- 00:03:05.321 FLOG_MAX [12763]: REQ_STRING(sessionid) -- 00:03:05.321 FLOG_MAX [12763]: long load_db_record( CVars &rec, const char * query, ... ) -- 00:03:05.321 SQL [12763]: pgsql_query() -- 00:03:05.321 SQL [12763]: About to run query: -- 00:03:05.321 SQL [12763]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 00:03:05.324 SQL [12763]: Found rows: 1 -- 00:03:05.324 FLOG_MAX [12763]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=15 -- 00:03:05.324 INFO [12763]: long SessionCheck(long uid, const char *sessionid, int create ) -- 00:03:05.324 SQL [12763]: pgsql_exec() -- 00:03:05.324 SQL [12763]: About to run query: -- 00:03:05.324 SQL [12763]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 00:03:05.326 SQL [12763]: PQcmdTuples: 1 -- 00:03:05.326 SQL [12763]: Affected rows: 1 -- 00:03:05.326 SQL [12763]: pgsql_exec() -- 00:03:05.326 SQL [12763]: About to run query: -- 00:03:05.326 SQL [12763]: DELETE FROM members_session WHERE member_id=7 -- 00:03:05.326 SQL [12763]: PQcmdTuples: 0 -- 00:03:05.327 SQL [12763]: Affected rows: 0 -- 00:03:05.327 SQL [12763]: pgsql_query() -- 00:03:05.327 SQL [12763]: About to run query: -- 00:03:05.327 SQL [12763]: SELECT * FROM members_session WHERE member_id=7 AND session<>'64AA52EF27036B2E2378EA2F29A78FBD' -- 00:03:05.327 SQL [12763]: Found rows: 0 -- 00:03:05.327 SQL [12763]: Found rows: 0 -- 00:03:05.327 FLOG_MAX [12763]: long load_db_record( CVars &rec, const char * query, ... ) -- 00:03:05.327 SQL [12763]: pgsql_query() -- 00:03:05.327 SQL [12763]: About to run query: -- 00:03:05.327 SQL [12763]: SELECT * FROM members_session WHERE member_id=7 AND session='64AA52EF27036B2E2378EA2F29A78FBD' -- 00:03:05.328 SQL [12763]: Found rows: 0 -- 00:03:05.328 SQL [12763]: Found rows: 0 -- 00:03:05.328 FLOG_MAX [12763]: insert_db_record() -- 00:03:05.328 SQL [12763]: pgsql_exec() -- 00:03:05.328 SQL [12763]: About to run query: -- 00:03:05.328 SQL [12763]: INSERT INTO members_session (member_id,session) VALUES ('7','64AA52EF27036B2E2378EA2F29A78FBD') -- 00:03:05.330 SQL [12763]: PQcmdTuples: 1 -- 00:03:05.330 SQL [12763]: Affected rows: 1 -- 00:03:05.330 FLOG_MAX [12763]: SELECT currval('members_session_id_seq') -- 00:03:05.330 SQL [12763]: pgsql_query() -- 00:03:05.330 SQL [12763]: About to run query: -- 00:03:05.330 SQL [12763]: SELECT currval('members_session_id_seq') -- 00:03:05.330 SQL [12763]: Found rows: 1 -- 00:03:05.330 INFO [12763]: CreateDefaultPage() -- 00:03:05.330 FLOG_MAX [12763]: long load_db_record( CVars &rec, const char * query, ... ) -- 00:03:05.330 SQL [12763]: pgsql_query() -- 00:03:05.330 SQL [12763]: About to run query: -- 00:03:05.330 SQL [12763]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 00:03:05.331 SQL [12763]: Found rows: 1 -- 00:03:05.331 FLOG_MAX [12763]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 00:03:05.331 SQL [12763]: pgsql_query() -- 00:03:05.331 SQL [12763]: About to run query: -- 00:03:05.331 SQL [12763]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 00:03:05.331 SQL [12763]: Found rows: 1 -- 00:03:05.331 INFO [12763]: /CreateDefaultPage() -- 00:03:05.331 INFO [12763]: /LoginCoreGradeAccount() -- 00:03:05.331 INFO [12763]: RET: added=2020-02-05 09:42:12.816064 -- 00:03:05.331 INFO [12763]: RET: email=tokslaw@chiefsoft.com -- 00:03:05.331 INFO [12763]: RET: firstname=Tokunbo -- 00:03:05.331 INFO [12763]: RET: id=7 -- 00:03:05.331 INFO [12763]: RET: last_login= -- 00:03:05.331 INFO [12763]: RET: lastname=Lawal -- 00:03:05.331 INFO [12763]: RET: loc=192.168.1.13 -- 00:03:05.331 INFO [12763]: RET: member_id=7 -- 00:03:05.331 INFO [12763]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 00:03:05.331 INFO [12763]: RET: phone= -- 00:03:05.331 INFO [12763]: RET: pid= -- 00:03:05.331 INFO [12763]: RET: result=YES I GET TO BACK END -- 00:03:05.331 INFO [12763]: RET: sessionid=64AA52EF27036B2E2378EA2F29A78FBD -- 00:03:05.331 INFO [12763]: RET: status=1 -- 00:03:05.331 INFO [12763]: RET: stauts=OK -- 00:03:05.331 INFO [12763]: RET: username=tokslaw@chiefsoft.com -- 00:03:05.331 INFO [12763]: RET: verified= -- 00:03:05.333 INFO [12763]: COREGRADE is stopping... -- 00:03:05.333 DEBUG [12763]: Closing database connection -- 00:03:05.333 SQL [12763]: pgsql_close() -- 00:03:05.284 DEBUG [12763]: Database connection successful -- 00:03:05.284 INFO [12763]: _SERVER found -- 00:03:05.284 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 00:03:05.284 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 00:03:05.284 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=cgq9ckaaaieo5jl2r8f9aomt6k9q2buq -- 00:03:05.284 INFO [12763]: QUERY_STRING = /auth -- 00:03:05.284 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:03:05.333 INFO [12763]: COREGRADE is stopping... -- 00:03:05.333 DEBUG [12763]: Closing database connection -- 00:03:05.333 SQL [12763]: pgsql_close() -- 00:03:05.351 INFO [12763]: COREGRADE is starting... -- 00:03:05.351 INFO [12763]: Version from config: 1.0 -- 00:03:05.351 DEBUG [12763]: Connecting to database... -- 00:03:05.351 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:03:05.351 SQL [12763]: pgsql_db_connect() -- 00:03:05.355 DEBUG [12763]: Database connection successful -- 00:03:05.355 INFO [12763]: _SERVER found -- 00:03:05.355 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 00:03:05.355 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 00:03:05.355 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ene4vufg1glr6qsoisptqe6qcv7kpht6 -- 00:03:05.355 INFO [12763]: QUERY_STRING = /member/index -- 00:03:05.355 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:03:05.390 INFO [12763]: COREGRADE is stopping... -- 00:03:05.390 DEBUG [12763]: Closing database connection -- 00:03:05.390 SQL [12763]: pgsql_close() -- 00:03:05.693 INFO [12763]: COREGRADE is starting... -- 00:03:05.693 INFO [12763]: Version from config: 1.0 -- 00:03:05.693 DEBUG [12763]: Connecting to database... -- 00:03:05.694 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:03:05.694 SQL [12763]: pgsql_db_connect() -- 00:03:05.698 DEBUG [12763]: Database connection successful -- 00:03:05.698 INFO [12763]: _SERVER found -- 00:03:05.698 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 00:03:05.698 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 00:03:05.698 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ene4vufg1glr6qsoisptqe6qcv7kpht6 -- 00:03:05.698 INFO [12763]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:03:05.698 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:03:05.709 INFO [12763]: COREGRADE is stopping... -- 00:03:05.709 DEBUG [12763]: Closing database connection -- 00:03:05.709 SQL [12763]: pgsql_close() -- 00:03:05.714 INFO [12763]: COREGRADE is starting... -- 00:03:05.714 INFO [12763]: Version from config: 1.0 -- 00:03:05.714 DEBUG [12763]: Connecting to database... -- 00:03:05.714 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:03:05.714 SQL [12763]: pgsql_db_connect() -- 00:03:05.718 DEBUG [12763]: Database connection successful -- 00:03:05.718 INFO [12763]: _SERVER found -- 00:03:05.718 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 00:03:05.718 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 00:03:05.718 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ene4vufg1glr6qsoisptqe6qcv7kpht6 -- 00:03:05.718 INFO [12763]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:03:05.718 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:03:05.729 INFO [12763]: COREGRADE is stopping... -- 00:03:05.729 DEBUG [12763]: Closing database connection -- 00:03:05.729 SQL [12763]: pgsql_close() -- 00:03:10.746 INFO [11652]: COREGRADE is starting... -- 00:03:10.747 INFO [11652]: Version from config: 1.0 -- 00:03:10.747 DEBUG [11652]: Connecting to database... -- 00:03:10.747 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:03:10.747 SQL [11652]: pgsql_db_connect() -- 00:03:10.751 DEBUG [11652]: Database connection successful -- 00:03:10.751 INFO [11652]: _SERVER found -- 00:03:10.751 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 00:03:10.751 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 00:03:10.751 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ene4vufg1glr6qsoisptqe6qcv7kpht6 -- 00:03:10.751 INFO [11652]: QUERY_STRING = /member/page -- 00:03:10.751 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:03:10.787 INFO [11652]: COREGRADE is stopping... -- 00:03:10.787 DEBUG [11652]: Closing database connection -- 00:03:10.787 SQL [11652]: pgsql_close() -- 00:03:10.945 INFO [11652]: COREGRADE is starting... -- 00:03:10.945 INFO [11652]: Version from config: 1.0 -- 00:03:10.945 DEBUG [11652]: Connecting to database... -- 00:03:10.945 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:03:10.945 SQL [11652]: pgsql_db_connect() -- 00:03:10.949 DEBUG [11652]: Database connection successful -- 00:03:10.949 INFO [11652]: _SERVER found -- 00:03:10.949 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 00:03:10.949 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 00:03:10.949 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ene4vufg1glr6qsoisptqe6qcv7kpht6 -- 00:03:10.949 INFO [11652]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:03:10.949 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:03:10.960 INFO [11652]: COREGRADE is stopping... -- 00:03:10.960 DEBUG [11652]: Closing database connection -- 00:03:10.960 SQL [11652]: pgsql_close() -- 00:03:10.979 INFO [11652]: COREGRADE is starting... -- 00:03:10.979 INFO [11652]: Version from config: 1.0 -- 00:03:10.979 DEBUG [11652]: Connecting to database... -- 00:03:10.979 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:03:10.979 SQL [11652]: pgsql_db_connect() -- 00:03:10.983 DEBUG [11652]: Database connection successful -- 00:03:10.983 INFO [11652]: _SERVER found -- 00:03:10.983 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 00:03:10.983 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 00:03:10.983 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ene4vufg1glr6qsoisptqe6qcv7kpht6 -- 00:03:10.983 INFO [11652]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:03:10.983 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:03:10.994 INFO [11652]: COREGRADE is stopping... -- 00:03:10.994 DEBUG [11652]: Closing database connection -- 00:03:10.994 SQL [11652]: pgsql_close() -- 00:03:35.826 INFO [11644]: COREGRADE is starting... -- 00:03:35.826 INFO [11644]: Version from config: 1.0 -- 00:03:35.826 DEBUG [11644]: Connecting to database... -- 00:03:35.826 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:03:35.826 SQL [11644]: pgsql_db_connect() -- 00:03:35.830 DEBUG [11644]: Database connection successful -- 00:03:35.830 INFO [11644]: _SERVER found -- 00:03:35.830 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 00:03:35.830 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 00:03:35.830 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ln3umiau2i0j4ql10dbgftv3i414f4um -- 00:03:35.830 INFO [11644]: QUERY_STRING = /member/page -- 00:03:35.830 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:03:35.867 INFO [11644]: COREGRADE is stopping... -- 00:03:35.867 DEBUG [11644]: Closing database connection -- 00:03:35.867 SQL [11644]: pgsql_close() -- 00:03:36.019 INFO [11644]: COREGRADE is starting... -- 00:03:36.020 INFO [11644]: Version from config: 1.0 -- 00:03:36.020 DEBUG [11644]: Connecting to database... -- 00:03:36.020 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:03:36.020 SQL [11644]: pgsql_db_connect() -- 00:03:36.024 DEBUG [11644]: Database connection successful -- 00:03:36.024 INFO [11644]: _SERVER found -- 00:03:36.024 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 00:03:36.024 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 00:03:36.024 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ln3umiau2i0j4ql10dbgftv3i414f4um -- 00:03:36.024 INFO [11644]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:03:36.024 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:03:36.035 INFO [11644]: COREGRADE is stopping... -- 00:03:36.035 DEBUG [11644]: Closing database connection -- 00:03:36.035 SQL [11644]: pgsql_close() -- 00:03:36.038 INFO [11644]: COREGRADE is starting... -- 00:03:36.038 INFO [11644]: Version from config: 1.0 -- 00:03:36.038 DEBUG [11644]: Connecting to database... -- 00:03:36.038 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:03:36.038 SQL [11644]: pgsql_db_connect() -- 00:03:36.042 DEBUG [11644]: Database connection successful -- 00:03:36.042 INFO [11644]: _SERVER found -- 00:03:36.042 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 00:03:36.042 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 00:03:36.042 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ln3umiau2i0j4ql10dbgftv3i414f4um -- 00:03:36.042 INFO [11644]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:03:36.042 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:03:36.053 INFO [11644]: COREGRADE is stopping... -- 00:03:36.053 DEBUG [11644]: Closing database connection -- 00:03:36.053 SQL [11644]: pgsql_close() -- 00:04:05.041 INFO [11636]: COREGRADE is starting... -- 00:04:05.041 INFO [11636]: Version from config: 1.0 -- 00:04:05.041 DEBUG [11636]: Connecting to database... -- 00:04:05.041 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:04:05.041 SQL [11636]: pgsql_db_connect() -- 00:04:05.045 DEBUG [11636]: Database connection successful -- 00:04:05.045 INFO [11636]: _SERVER found -- 00:04:05.045 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 00:04:05.045 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 00:04:05.045 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ene4vufg1glr6qsoisptqe6qcv7kpht6 -- 00:04:05.045 INFO [11636]: QUERY_STRING = /member/page -- 00:04:05.045 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:04:05.082 INFO [11636]: COREGRADE is stopping... -- 00:04:05.082 DEBUG [11636]: Closing database connection -- 00:04:05.082 SQL [11636]: pgsql_close() -- 00:04:05.319 INFO [11636]: COREGRADE is starting... -- 00:04:05.319 INFO [11636]: Version from config: 1.0 -- 00:04:05.319 DEBUG [11636]: Connecting to database... -- 00:04:05.319 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:04:05.319 SQL [11636]: pgsql_db_connect() -- 00:04:05.323 DEBUG [11636]: Database connection successful -- 00:04:05.323 INFO [11636]: _SERVER found -- 00:04:05.323 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 00:04:05.323 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 00:04:05.323 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ene4vufg1glr6qsoisptqe6qcv7kpht6 -- 00:04:05.323 INFO [11636]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:04:05.323 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:04:05.334 INFO [11636]: COREGRADE is stopping... -- 00:04:05.335 DEBUG [11636]: Closing database connection -- 00:04:05.335 SQL [11636]: pgsql_close() -- 00:04:05.338 INFO [12764]: COREGRADE is starting... -- 00:04:05.339 INFO [12764]: Version from config: 1.0 -- 00:04:05.339 DEBUG [12764]: Connecting to database... -- 00:04:05.339 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:04:05.339 SQL [12764]: pgsql_db_connect() -- 00:04:05.343 DEBUG [12764]: Database connection successful -- 00:04:05.343 INFO [12764]: _SERVER found -- 00:04:05.343 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 00:04:05.343 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 00:04:05.343 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ene4vufg1glr6qsoisptqe6qcv7kpht6 -- 00:04:05.343 INFO [12764]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:04:05.343 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:04:05.354 INFO [12764]: COREGRADE is stopping... -- 00:04:05.354 DEBUG [12764]: Closing database connection -- 00:04:05.354 SQL [12764]: pgsql_close() -- 00:04:47.007 INFO [11638]: COREGRADE is starting... -- 00:04:47.007 INFO [11638]: Version from config: 1.0 -- 00:04:47.007 DEBUG [11638]: Connecting to database... -- 00:04:47.007 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:04:47.007 SQL [11638]: pgsql_db_connect() -- 00:04:47.012 DEBUG [11638]: Database connection successful -- 00:04:47.012 INFO [11638]: _SERVER found -- 00:04:47.012 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 00:04:47.012 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 00:04:47.012 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ln3umiau2i0j4ql10dbgftv3i414f4um -- 00:04:47.012 INFO [11638]: QUERY_STRING = /member/page -- 00:04:47.012 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:04:47.048 INFO [11638]: COREGRADE is stopping... -- 00:04:47.048 DEBUG [11638]: Closing database connection -- 00:04:47.048 SQL [11638]: pgsql_close() -- 00:04:47.174 INFO [11638]: COREGRADE is starting... -- 00:04:47.174 INFO [11638]: Version from config: 1.0 -- 00:04:47.174 DEBUG [11638]: Connecting to database... -- 00:04:47.175 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:04:47.175 SQL [11638]: pgsql_db_connect() -- 00:04:47.179 DEBUG [11638]: Database connection successful -- 00:04:47.179 INFO [11638]: _SERVER found -- 00:04:47.179 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 00:04:47.179 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 00:04:47.179 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ln3umiau2i0j4ql10dbgftv3i414f4um -- 00:04:47.179 INFO [11638]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:04:47.179 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:04:47.190 INFO [11638]: COREGRADE is stopping... -- 00:04:47.190 DEBUG [11638]: Closing database connection -- 00:04:47.190 SQL [11638]: pgsql_close() -- 00:04:47.193 INFO [11650]: COREGRADE is starting... -- 00:04:47.193 INFO [11650]: Version from config: 1.0 -- 00:04:47.193 DEBUG [11650]: Connecting to database... -- 00:04:47.193 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:04:47.193 SQL [11650]: pgsql_db_connect() -- 00:04:47.197 DEBUG [11650]: Database connection successful -- 00:04:47.197 INFO [11650]: _SERVER found -- 00:04:47.197 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 00:04:47.197 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 00:04:47.197 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ln3umiau2i0j4ql10dbgftv3i414f4um -- 00:04:47.197 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:04:47.197 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:04:47.209 INFO [11650]: COREGRADE is stopping... -- 00:04:47.209 DEBUG [11650]: Closing database connection -- 00:04:47.209 SQL [11650]: pgsql_close() -- 00:05:29.922 INFO [11637]: COREGRADE is starting... -- 00:05:29.922 INFO [11637]: Version from config: 1.0 -- 00:05:29.922 DEBUG [11637]: Connecting to database... -- 00:05:29.922 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:05:29.922 SQL [11637]: pgsql_db_connect() -- 00:05:29.926 DEBUG [11637]: Database connection successful -- 00:05:29.926 INFO [11637]: _SERVER found -- 00:05:29.926 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 00:05:29.926 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 00:05:29.926 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ln3umiau2i0j4ql10dbgftv3i414f4um -- 00:05:29.926 INFO [11637]: QUERY_STRING = /member/page -- 00:05:29.926 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:05:29.963 INFO [11637]: COREGRADE is stopping... -- 00:05:29.963 DEBUG [11637]: Closing database connection -- 00:05:29.963 SQL [11637]: pgsql_close() -- 00:05:30.093 INFO [11637]: COREGRADE is starting... -- 00:05:30.093 INFO [11637]: Version from config: 1.0 -- 00:05:30.093 DEBUG [11637]: Connecting to database... -- 00:05:30.093 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:05:30.093 SQL [11637]: pgsql_db_connect() -- 00:05:30.097 DEBUG [11637]: Database connection successful -- 00:05:30.097 INFO [11637]: _SERVER found -- 00:05:30.097 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 00:05:30.097 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 00:05:30.097 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ln3umiau2i0j4ql10dbgftv3i414f4um -- 00:05:30.097 INFO [11637]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:05:30.097 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:05:30.109 INFO [11637]: COREGRADE is stopping... -- 00:05:30.109 DEBUG [11637]: Closing database connection -- 00:05:30.109 SQL [11637]: pgsql_close() -- 00:05:30.110 INFO [11639]: COREGRADE is starting... -- 00:05:30.111 INFO [11639]: Version from config: 1.0 -- 00:05:30.111 DEBUG [11639]: Connecting to database... -- 00:05:30.111 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:05:30.111 SQL [11639]: pgsql_db_connect() -- 00:05:30.115 DEBUG [11639]: Database connection successful -- 00:05:30.115 INFO [11639]: _SERVER found -- 00:05:30.115 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 00:05:30.115 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 00:05:30.115 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ln3umiau2i0j4ql10dbgftv3i414f4um -- 00:05:30.115 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:05:30.115 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:05:30.126 INFO [11639]: COREGRADE is stopping... -- 00:05:30.126 DEBUG [11639]: Closing database connection -- 00:05:30.126 SQL [11639]: pgsql_close() -- 00:06:09.797 INFO [12761]: COREGRADE is starting... -- 00:06:09.797 INFO [12761]: Version from config: 1.0 -- 00:06:09.797 DEBUG [12761]: Connecting to database... -- 00:06:09.797 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:06:09.797 SQL [12761]: pgsql_db_connect() -- 00:06:09.801 DEBUG [12761]: Database connection successful -- 00:06:09.801 INFO [12761]: _SERVER found -- 00:06:09.801 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 00:06:09.801 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 00:06:09.801 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ln3umiau2i0j4ql10dbgftv3i414f4um -- 00:06:09.801 INFO [12761]: QUERY_STRING = /member/page -- 00:06:09.801 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:06:09.839 INFO [12761]: COREGRADE is stopping... -- 00:06:09.839 DEBUG [12761]: Closing database connection -- 00:06:09.839 SQL [12761]: pgsql_close() -- 00:06:09.971 INFO [12761]: COREGRADE is starting... -- 00:06:09.971 INFO [12761]: Version from config: 1.0 -- 00:06:09.971 DEBUG [12761]: Connecting to database... -- 00:06:09.971 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:06:09.971 SQL [12761]: pgsql_db_connect() -- 00:06:09.975 DEBUG [12761]: Database connection successful -- 00:06:09.975 INFO [12761]: _SERVER found -- 00:06:09.975 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 00:06:09.975 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 00:06:09.975 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=p7lvng5sogd2fiscsvhbja0ps1ofccki -- 00:06:09.975 INFO [12761]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:06:09.975 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:06:09.986 INFO [12761]: COREGRADE is stopping... -- 00:06:09.986 DEBUG [12761]: Closing database connection -- 00:06:09.986 SQL [12761]: pgsql_close() -- 00:06:09.000 INFO [12763]: COREGRADE is starting... -- 00:06:09.000 INFO [12763]: Version from config: 1.0 -- 00:06:09.000 DEBUG [12763]: Connecting to database... -- 00:06:09.000 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:06:09.000 SQL [12763]: pgsql_db_connect() -- 00:06:10.004 DEBUG [12763]: Database connection successful -- 00:06:10.004 INFO [12763]: _SERVER found -- 00:06:10.004 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 00:06:10.004 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 00:06:10.004 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=p7lvng5sogd2fiscsvhbja0ps1ofccki -- 00:06:10.004 INFO [12763]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:06:10.004 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:06:10.015 INFO [12763]: COREGRADE is stopping... -- 00:06:10.015 DEBUG [12763]: Closing database connection -- 00:06:10.015 SQL [12763]: pgsql_close() -- 00:07:29.023 INFO [11652]: COREGRADE is starting... -- 00:07:29.023 INFO [11652]: Version from config: 1.0 -- 00:07:29.023 DEBUG [11652]: Connecting to database... -- 00:07:29.023 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:07:29.024 SQL [11652]: pgsql_db_connect() -- 00:07:29.028 DEBUG [11652]: Database connection successful -- 00:07:29.028 INFO [11652]: _SERVER found -- 00:07:29.028 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 00:07:29.028 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 00:07:29.028 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=p7lvng5sogd2fiscsvhbja0ps1ofccki -- 00:07:29.028 INFO [11652]: QUERY_STRING = /member/page -- 00:07:29.028 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:07:29.064 INFO [11652]: COREGRADE is stopping... -- 00:07:29.064 DEBUG [11652]: Closing database connection -- 00:07:29.064 SQL [11652]: pgsql_close() -- 00:07:29.245 INFO [11652]: COREGRADE is starting... -- 00:07:29.246 INFO [11652]: Version from config: 1.0 -- 00:07:29.246 DEBUG [11652]: Connecting to database... -- 00:07:29.246 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:07:29.246 SQL [11652]: pgsql_db_connect() -- 00:07:29.250 DEBUG [11652]: Database connection successful -- 00:07:29.250 INFO [11652]: _SERVER found -- 00:07:29.250 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 00:07:29.250 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 00:07:29.250 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=p7lvng5sogd2fiscsvhbja0ps1ofccki -- 00:07:29.250 INFO [11652]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:07:29.250 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:07:29.261 INFO [11652]: COREGRADE is stopping... -- 00:07:29.261 DEBUG [11652]: Closing database connection -- 00:07:29.261 SQL [11652]: pgsql_close() -- 00:07:29.267 INFO [11644]: COREGRADE is starting... -- 00:07:29.267 INFO [11644]: Version from config: 1.0 -- 00:07:29.267 DEBUG [11644]: Connecting to database... -- 00:07:29.267 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:07:29.267 SQL [11644]: pgsql_db_connect() -- 00:07:29.271 DEBUG [11644]: Database connection successful -- 00:07:29.271 INFO [11644]: _SERVER found -- 00:07:29.271 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 00:07:29.271 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 00:07:29.271 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=p7lvng5sogd2fiscsvhbja0ps1ofccki -- 00:07:29.271 INFO [11644]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:07:29.271 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:07:29.283 INFO [11644]: COREGRADE is stopping... -- 00:07:29.283 DEBUG [11644]: Closing database connection -- 00:07:29.283 SQL [11644]: pgsql_close() -- 00:09:18.105 INFO [11636]: COREGRADE is starting... -- 00:09:18.106 INFO [11636]: Version from config: 1.0 -- 00:09:18.106 DEBUG [11636]: Connecting to database... -- 00:09:18.106 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:09:18.106 SQL [11636]: pgsql_db_connect() -- 00:09:18.111 DEBUG [11636]: Database connection successful -- 00:09:18.111 INFO [11636]: _SERVER found -- 00:09:18.111 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 00:09:18.111 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 00:09:18.111 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=p7lvng5sogd2fiscsvhbja0ps1ofccki -- 00:09:18.111 INFO [11636]: QUERY_STRING = /member/page -- 00:09:18.111 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:09:18.149 INFO [11636]: COREGRADE is stopping... -- 00:09:18.149 DEBUG [11636]: Closing database connection -- 00:09:18.149 SQL [11636]: pgsql_close() -- 00:09:18.268 INFO [11636]: COREGRADE is starting... -- 00:09:18.268 INFO [11636]: Version from config: 1.0 -- 00:09:18.268 DEBUG [11636]: Connecting to database... -- 00:09:18.268 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:09:18.268 SQL [11636]: pgsql_db_connect() -- 00:09:18.273 DEBUG [11636]: Database connection successful -- 00:09:18.273 INFO [11636]: _SERVER found -- 00:09:18.273 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 00:09:18.273 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 00:09:18.273 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=p7lvng5sogd2fiscsvhbja0ps1ofccki -- 00:09:18.273 INFO [11636]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:09:18.273 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:09:18.284 INFO [11636]: COREGRADE is stopping... -- 00:09:18.284 DEBUG [11636]: Closing database connection -- 00:09:18.284 SQL [11636]: pgsql_close() -- 00:09:18.286 INFO [11636]: COREGRADE is starting... -- 00:09:18.287 INFO [11636]: Version from config: 1.0 -- 00:09:18.287 DEBUG [11636]: Connecting to database... -- 00:09:18.287 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:09:18.287 SQL [11636]: pgsql_db_connect() -- 00:09:18.291 DEBUG [11636]: Database connection successful -- 00:09:18.291 INFO [11636]: _SERVER found -- 00:09:18.291 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 00:09:18.291 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 00:09:18.291 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=p7lvng5sogd2fiscsvhbja0ps1ofccki -- 00:09:18.291 INFO [11636]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:09:18.291 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:09:18.302 INFO [11636]: COREGRADE is stopping... -- 00:09:18.302 DEBUG [11636]: Closing database connection -- 00:09:18.302 SQL [11636]: pgsql_close() -- 00:09:25.962 INFO [12764]: COREGRADE is starting... -- 00:09:25.962 INFO [12764]: Version from config: 1.0 -- 00:09:25.962 DEBUG [12764]: Connecting to database... -- 00:09:25.962 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:09:25.962 SQL [12764]: pgsql_db_connect() -- 00:09:25.967 DEBUG [12764]: Database connection successful -- 00:09:25.967 INFO [12764]: _SERVER found -- 00:09:25.967 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 00:09:25.967 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 00:09:25.967 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ene4vufg1glr6qsoisptqe6qcv7kpht6 -- 00:09:25.967 INFO [12764]: QUERY_STRING = -- 00:09:25.967 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:09:26.000 INFO [12764]: COREGRADE is stopping... -- 00:09:26.001 DEBUG [12764]: Closing database connection -- 00:09:26.001 SQL [12764]: pgsql_close() -- 00:09:26.216 INFO [12764]: COREGRADE is starting... -- 00:09:26.217 INFO [12764]: Version from config: 1.0 -- 00:09:26.217 DEBUG [12764]: Connecting to database... -- 00:09:26.217 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:09:26.217 SQL [12764]: pgsql_db_connect() -- 00:09:26.223 INFO [11650]: COREGRADE is starting... -- 00:09:26.223 INFO [11650]: Version from config: 1.0 -- 00:09:26.223 DEBUG [11650]: Connecting to database... -- 00:09:26.223 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:09:26.223 SQL [11650]: pgsql_db_connect() -- 00:09:26.221 DEBUG [12764]: Database connection successful -- 00:09:26.221 INFO [12764]: _SERVER found -- 00:09:26.221 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 00:09:26.221 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 00:09:26.221 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5i0jipik0mnj87dni4kk0ht2f91or8fr -- 00:09:26.221 INFO [12764]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 00:09:26.221 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:09:26.233 INFO [12764]: COREGRADE is stopping... -- 00:09:26.233 DEBUG [12764]: Closing database connection -- 00:09:26.233 SQL [12764]: pgsql_close() -- 00:09:26.228 DEBUG [11650]: Database connection successful -- 00:09:26.228 INFO [11650]: _SERVER found -- 00:09:26.228 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 00:09:26.228 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 00:09:26.228 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5i0jipik0mnj87dni4kk0ht2f91or8fr -- 00:09:26.228 INFO [11650]: QUERY_STRING = /assets/img/footer_1.jpg -- 00:09:26.228 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:09:26.240 INFO [11650]: COREGRADE is stopping... -- 00:09:26.240 DEBUG [11650]: Closing database connection -- 00:09:26.240 SQL [11650]: pgsql_close() -- 00:09:33.783 INFO [11638]: COREGRADE is starting... -- 00:09:33.783 INFO [11638]: Version from config: 1.0 -- 00:09:33.783 DEBUG [11638]: Connecting to database... -- 00:09:33.783 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:09:33.783 SQL [11638]: pgsql_db_connect() -- 00:09:33.788 DEBUG [11638]: Database connection successful -- 00:09:33.788 INFO [11638]: _SERVER found -- 00:09:33.788 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 00:09:33.788 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 00:09:33.788 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5i0jipik0mnj87dni4kk0ht2f91or8fr; _gat_gtag_UA_54829827_2=1 -- 00:09:33.788 INFO [11638]: QUERY_STRING = /auth -- 00:09:33.788 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:09:33.820 INFO [11638]: COREGRADE is stopping... -- 00:09:33.820 DEBUG [11638]: Closing database connection -- 00:09:33.820 SQL [11638]: pgsql_close() -- 00:09:33.983 INFO [11638]: COREGRADE is starting... -- 00:09:33.983 INFO [11638]: Version from config: 1.0 -- 00:09:33.983 DEBUG [11638]: Connecting to database... -- 00:09:33.983 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:09:33.983 SQL [11638]: pgsql_db_connect() -- 00:09:33.992 INFO [11639]: COREGRADE is starting... -- 00:09:33.992 INFO [11639]: Version from config: 1.0 -- 00:09:33.992 DEBUG [11639]: Connecting to database... -- 00:09:33.992 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:09:33.992 SQL [11639]: pgsql_db_connect() -- 00:09:33.988 DEBUG [11638]: Database connection successful -- 00:09:33.988 INFO [11638]: _SERVER found -- 00:09:33.988 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 00:09:33.988 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 00:09:33.988 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5i0jipik0mnj87dni4kk0ht2f91or8fr; _gat_gtag_UA_54829827_2=1 -- 00:09:33.988 INFO [11638]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 00:09:33.988 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:09:33.999 INFO [11638]: COREGRADE is stopping... -- 00:09:33.999 DEBUG [11638]: Closing database connection -- 00:09:33.999 SQL [11638]: pgsql_close() -- 00:09:33.997 DEBUG [11639]: Database connection successful -- 00:09:33.997 INFO [11639]: _SERVER found -- 00:09:33.997 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 00:09:33.997 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 00:09:33.997 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5i0jipik0mnj87dni4kk0ht2f91or8fr; _gat_gtag_UA_54829827_2=1 -- 00:09:33.997 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:09:33.997 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:09:34.009 INFO [11639]: COREGRADE is stopping... -- 00:09:34.009 DEBUG [11639]: Closing database connection -- 00:09:34.009 SQL [11639]: pgsql_close() -- 00:09:35.751 INFO [11639]: COREGRADE is starting... -- 00:09:35.751 INFO [11639]: Version from config: 1.0 -- 00:09:35.751 DEBUG [11639]: Connecting to database... -- 00:09:35.751 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:09:35.751 SQL [11639]: pgsql_db_connect() -- 00:09:35.787 INFO [11639]: COREGRADE is starting... -- 00:09:35.788 INFO [11639]: Version from config: 1.0 -- 00:09:35.788 DEBUG [11639]: Connecting to database... -- 00:09:35.788 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:09:35.788 SQL [11639]: pgsql_db_connect() -- 00:09:35.793 DEBUG [11639]: Database connection successful -- 00:09:35.793 INFO [11639]: _SERVER found -- 00:09:35.793 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 00:09:35.793 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 00:09:35.793 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5i0jipik0mnj87dni4kk0ht2f91or8fr; _gat_gtag_UA_54829827_2=1 -- 00:09:35.793 INFO [11639]: QUERY_STRING = -- 00:09:35.793 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:09:35.793 INFO [11639]: SystemStatus()09-09-********~************ -- 00:09:35.793 INFO [11639]: long coregrade_api_main(CVars in, CVars &out) -- 00:09:35.793 INFO [11639]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 00:09:35.793 INFO [11639]: account calls -- 00:09:35.793 INFO [11639]: account_calls() -- 00:09:35.793 INFO [11639]: LoginCoreGradeAccount() -- 00:09:35.793 FLOG_MAX [11639]: REQ_STRING(username) -- 00:09:35.793 FLOG_MAX [11639]: REQ_STRING(password) -- 00:09:35.793 FLOG_MAX [11639]: REQ_STRING(sessionid) -- 00:09:35.793 FLOG_MAX [11639]: long load_db_record( CVars &rec, const char * query, ... ) -- 00:09:35.793 SQL [11639]: pgsql_query() -- 00:09:35.793 SQL [11639]: About to run query: -- 00:09:35.793 SQL [11639]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 00:09:35.797 SQL [11639]: Found rows: 1 -- 00:09:35.797 FLOG_MAX [11639]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=15 -- 00:09:35.797 INFO [11639]: long SessionCheck(long uid, const char *sessionid, int create ) -- 00:09:35.797 SQL [11639]: pgsql_exec() -- 00:09:35.797 SQL [11639]: About to run query: -- 00:09:35.797 SQL [11639]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 00:09:35.798 SQL [11639]: PQcmdTuples: 0 -- 00:09:35.798 SQL [11639]: Affected rows: 0 -- 00:09:35.798 SQL [11639]: pgsql_exec() -- 00:09:35.798 SQL [11639]: About to run query: -- 00:09:35.798 SQL [11639]: DELETE FROM members_session WHERE member_id=7 -- 00:09:35.799 SQL [11639]: PQcmdTuples: 1 -- 00:09:35.799 SQL [11639]: Affected rows: 1 -- 00:09:35.799 SQL [11639]: pgsql_query() -- 00:09:35.799 SQL [11639]: About to run query: -- 00:09:35.799 SQL [11639]: SELECT * FROM members_session WHERE member_id=7 AND session<>'FF33561AC1B6D8D6551740BAB29A1F5D' -- 00:09:35.799 SQL [11639]: Found rows: 0 -- 00:09:35.799 SQL [11639]: Found rows: 0 -- 00:09:35.799 FLOG_MAX [11639]: long load_db_record( CVars &rec, const char * query, ... ) -- 00:09:35.799 SQL [11639]: pgsql_query() -- 00:09:35.799 SQL [11639]: About to run query: -- 00:09:35.799 SQL [11639]: SELECT * FROM members_session WHERE member_id=7 AND session='FF33561AC1B6D8D6551740BAB29A1F5D' -- 00:09:35.800 SQL [11639]: Found rows: 0 -- 00:09:35.800 SQL [11639]: Found rows: 0 -- 00:09:35.800 FLOG_MAX [11639]: insert_db_record() -- 00:09:35.800 SQL [11639]: pgsql_exec() -- 00:09:35.800 SQL [11639]: About to run query: -- 00:09:35.800 SQL [11639]: INSERT INTO members_session (member_id,session) VALUES ('7','FF33561AC1B6D8D6551740BAB29A1F5D') -- 00:09:35.802 SQL [11639]: PQcmdTuples: 1 -- 00:09:35.802 SQL [11639]: Affected rows: 1 -- 00:09:35.802 FLOG_MAX [11639]: SELECT currval('members_session_id_seq') -- 00:09:35.802 SQL [11639]: pgsql_query() -- 00:09:35.802 SQL [11639]: About to run query: -- 00:09:35.802 SQL [11639]: SELECT currval('members_session_id_seq') -- 00:09:35.802 SQL [11639]: Found rows: 1 -- 00:09:35.802 INFO [11639]: CreateDefaultPage() -- 00:09:35.802 FLOG_MAX [11639]: long load_db_record( CVars &rec, const char * query, ... ) -- 00:09:35.802 SQL [11639]: pgsql_query() -- 00:09:35.802 SQL [11639]: About to run query: -- 00:09:35.802 SQL [11639]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 00:09:35.802 SQL [11639]: Found rows: 1 -- 00:09:35.803 FLOG_MAX [11639]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 00:09:35.803 SQL [11639]: pgsql_query() -- 00:09:35.803 SQL [11639]: About to run query: -- 00:09:35.803 SQL [11639]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 00:09:35.803 SQL [11639]: Found rows: 1 -- 00:09:35.803 INFO [11639]: /CreateDefaultPage() -- 00:09:35.803 INFO [11639]: /LoginCoreGradeAccount() -- 00:09:35.803 INFO [11639]: RET: added=2020-02-05 09:42:12.816064 -- 00:09:35.803 INFO [11639]: RET: email=tokslaw@chiefsoft.com -- 00:09:35.803 INFO [11639]: RET: firstname=Tokunbo -- 00:09:35.803 INFO [11639]: RET: id=7 -- 00:09:35.803 INFO [11639]: RET: last_login= -- 00:09:35.803 INFO [11639]: RET: lastname=Lawal -- 00:09:35.803 INFO [11639]: RET: loc=192.168.1.13 -- 00:09:35.803 INFO [11639]: RET: member_id=7 -- 00:09:35.803 INFO [11639]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 00:09:35.803 INFO [11639]: RET: phone= -- 00:09:35.803 INFO [11639]: RET: pid= -- 00:09:35.803 INFO [11639]: RET: result=YES I GET TO BACK END -- 00:09:35.803 INFO [11639]: RET: sessionid=FF33561AC1B6D8D6551740BAB29A1F5D -- 00:09:35.803 INFO [11639]: RET: status=1 -- 00:09:35.803 INFO [11639]: RET: stauts=OK -- 00:09:35.803 INFO [11639]: RET: username=tokslaw@chiefsoft.com -- 00:09:35.803 INFO [11639]: RET: verified= -- 00:09:35.805 INFO [11639]: COREGRADE is stopping... -- 00:09:35.805 DEBUG [11639]: Closing database connection -- 00:09:35.805 SQL [11639]: pgsql_close() -- 00:09:35.756 DEBUG [11639]: Database connection successful -- 00:09:35.756 INFO [11639]: _SERVER found -- 00:09:35.756 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 00:09:35.756 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 00:09:35.756 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5i0jipik0mnj87dni4kk0ht2f91or8fr; _gat_gtag_UA_54829827_2=1 -- 00:09:35.756 INFO [11639]: QUERY_STRING = /auth -- 00:09:35.756 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:09:35.805 INFO [11639]: COREGRADE is stopping... -- 00:09:35.805 DEBUG [11639]: Closing database connection -- 00:09:35.805 SQL [11639]: pgsql_close() -- 00:09:35.824 INFO [11639]: COREGRADE is starting... -- 00:09:35.824 INFO [11639]: Version from config: 1.0 -- 00:09:35.824 DEBUG [11639]: Connecting to database... -- 00:09:35.824 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:09:35.824 SQL [11639]: pgsql_db_connect() -- 00:09:35.829 DEBUG [11639]: Database connection successful -- 00:09:35.829 INFO [11639]: _SERVER found -- 00:09:35.829 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 00:09:35.829 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 00:09:35.829 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5i0jipik0mnj87dni4kk0ht2f91or8fr; _gat_gtag_UA_54829827_2=1 -- 00:09:35.829 INFO [11639]: QUERY_STRING = /member/index -- 00:09:35.829 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:09:35.864 INFO [11639]: COREGRADE is stopping... -- 00:09:35.864 DEBUG [11639]: Closing database connection -- 00:09:35.864 SQL [11639]: pgsql_close() -- 00:09:36.045 INFO [11639]: COREGRADE is starting... -- 00:09:36.046 INFO [11639]: Version from config: 1.0 -- 00:09:36.046 DEBUG [11639]: Connecting to database... -- 00:09:36.046 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:09:36.046 SQL [11639]: pgsql_db_connect() -- 00:09:36.050 DEBUG [11639]: Database connection successful -- 00:09:36.050 INFO [11639]: _SERVER found -- 00:09:36.050 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 00:09:36.050 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 00:09:36.050 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5i0jipik0mnj87dni4kk0ht2f91or8fr; _gat_gtag_UA_54829827_2=1 -- 00:09:36.050 INFO [11639]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:09:36.050 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:09:36.062 INFO [11639]: COREGRADE is stopping... -- 00:09:36.062 DEBUG [11639]: Closing database connection -- 00:09:36.062 SQL [11639]: pgsql_close() -- 00:09:36.063 INFO [11638]: COREGRADE is starting... -- 00:09:36.063 INFO [11638]: Version from config: 1.0 -- 00:09:36.063 DEBUG [11638]: Connecting to database... -- 00:09:36.063 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:09:36.063 SQL [11638]: pgsql_db_connect() -- 00:09:36.067 DEBUG [11638]: Database connection successful -- 00:09:36.067 INFO [11638]: _SERVER found -- 00:09:36.067 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 00:09:36.067 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 00:09:36.067 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5i0jipik0mnj87dni4kk0ht2f91or8fr; _gat_gtag_UA_54829827_2=1 -- 00:09:36.067 INFO [11638]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:09:36.067 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:09:36.078 INFO [11638]: COREGRADE is stopping... -- 00:09:36.078 DEBUG [11638]: Closing database connection -- 00:09:36.078 SQL [11638]: pgsql_close() -- 00:09:38.212 INFO [11638]: COREGRADE is starting... -- 00:09:38.212 INFO [11638]: Version from config: 1.0 -- 00:09:38.212 DEBUG [11638]: Connecting to database... -- 00:09:38.212 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:09:38.213 SQL [11638]: pgsql_db_connect() -- 00:09:38.217 DEBUG [11638]: Database connection successful -- 00:09:38.217 INFO [11638]: _SERVER found -- 00:09:38.217 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 00:09:38.217 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 00:09:38.217 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5i0jipik0mnj87dni4kk0ht2f91or8fr; _gat_gtag_UA_54829827_2=1 -- 00:09:38.217 INFO [11638]: QUERY_STRING = /member -- 00:09:38.217 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:09:38.254 INFO [11638]: COREGRADE is stopping... -- 00:09:38.254 DEBUG [11638]: Closing database connection -- 00:09:38.254 SQL [11638]: pgsql_close() -- 00:09:38.406 INFO [11638]: COREGRADE is starting... -- 00:09:38.407 INFO [11638]: Version from config: 1.0 -- 00:09:38.407 DEBUG [11638]: Connecting to database... -- 00:09:38.407 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:09:38.407 SQL [11638]: pgsql_db_connect() -- 00:09:38.414 INFO [11639]: COREGRADE is starting... -- 00:09:38.414 INFO [11639]: Version from config: 1.0 -- 00:09:38.414 DEBUG [11639]: Connecting to database... -- 00:09:38.414 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:09:38.414 SQL [11639]: pgsql_db_connect() -- 00:09:38.411 DEBUG [11638]: Database connection successful -- 00:09:38.411 INFO [11638]: _SERVER found -- 00:09:38.411 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 00:09:38.411 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 00:09:38.411 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5i0jipik0mnj87dni4kk0ht2f91or8fr; _gat_gtag_UA_54829827_2=1 -- 00:09:38.411 INFO [11638]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:09:38.411 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:09:38.423 INFO [11638]: COREGRADE is stopping... -- 00:09:38.423 DEBUG [11638]: Closing database connection -- 00:09:38.423 SQL [11638]: pgsql_close() -- 00:09:38.419 DEBUG [11639]: Database connection successful -- 00:09:38.419 INFO [11639]: _SERVER found -- 00:09:38.419 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 00:09:38.419 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 00:09:38.419 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5i0jipik0mnj87dni4kk0ht2f91or8fr; _gat_gtag_UA_54829827_2=1 -- 00:09:38.419 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:09:38.419 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:09:38.430 INFO [11639]: COREGRADE is stopping... -- 00:09:38.430 DEBUG [11639]: Closing database connection -- 00:09:38.430 SQL [11639]: pgsql_close() -- 00:09:40.305 INFO [11639]: COREGRADE is starting... -- 00:09:40.305 INFO [11639]: Version from config: 1.0 -- 00:09:40.305 DEBUG [11639]: Connecting to database... -- 00:09:40.305 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:09:40.305 SQL [11639]: pgsql_db_connect() -- 00:09:40.310 DEBUG [11639]: Database connection successful -- 00:09:40.310 INFO [11639]: _SERVER found -- 00:09:40.310 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 00:09:40.310 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 00:09:40.310 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5i0jipik0mnj87dni4kk0ht2f91or8fr; _gat_gtag_UA_54829827_2=1 -- 00:09:40.310 INFO [11639]: QUERY_STRING = /member/page -- 00:09:40.310 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:09:40.347 INFO [11639]: COREGRADE is stopping... -- 00:09:40.347 DEBUG [11639]: Closing database connection -- 00:09:40.347 SQL [11639]: pgsql_close() -- 00:09:40.507 INFO [11639]: COREGRADE is starting... -- 00:09:40.508 INFO [11639]: Version from config: 1.0 -- 00:09:40.508 DEBUG [11639]: Connecting to database... -- 00:09:40.508 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:09:40.508 SQL [11639]: pgsql_db_connect() -- 00:09:40.514 INFO [11638]: COREGRADE is starting... -- 00:09:40.514 INFO [11638]: Version from config: 1.0 -- 00:09:40.514 DEBUG [11638]: Connecting to database... -- 00:09:40.514 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:09:40.514 SQL [11638]: pgsql_db_connect() -- 00:09:40.512 DEBUG [11639]: Database connection successful -- 00:09:40.512 INFO [11639]: _SERVER found -- 00:09:40.512 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 00:09:40.512 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 00:09:40.512 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5i0jipik0mnj87dni4kk0ht2f91or8fr; _gat_gtag_UA_54829827_2=1 -- 00:09:40.512 INFO [11639]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:09:40.512 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:09:40.524 INFO [11639]: COREGRADE is stopping... -- 00:09:40.524 DEBUG [11639]: Closing database connection -- 00:09:40.524 SQL [11639]: pgsql_close() -- 00:09:40.518 DEBUG [11638]: Database connection successful -- 00:09:40.518 INFO [11638]: _SERVER found -- 00:09:40.518 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 00:09:40.518 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 00:09:40.518 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5i0jipik0mnj87dni4kk0ht2f91or8fr; _gat_gtag_UA_54829827_2=1 -- 00:09:40.518 INFO [11638]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:09:40.518 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:09:40.530 INFO [11638]: COREGRADE is stopping... -- 00:09:40.530 DEBUG [11638]: Closing database connection -- 00:09:40.530 SQL [11638]: pgsql_close() -- 00:18:37.892 INFO [11637]: COREGRADE is starting... -- 00:18:37.892 INFO [11637]: Version from config: 1.0 -- 00:18:37.892 DEBUG [11637]: Connecting to database... -- 00:18:37.892 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:18:37.892 SQL [11637]: pgsql_db_connect() -- 00:18:37.896 DEBUG [11637]: Database connection successful -- 00:18:37.896 INFO [11637]: _SERVER found -- 00:18:37.896 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 00:18:37.896 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 00:18:37.896 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=p7lvng5sogd2fiscsvhbja0ps1ofccki -- 00:18:37.896 INFO [11637]: QUERY_STRING = /member/page -- 00:18:37.896 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:18:37.934 INFO [11637]: COREGRADE is stopping... -- 00:18:37.935 DEBUG [11637]: Closing database connection -- 00:18:37.935 SQL [11637]: pgsql_close() -- 00:18:38.095 INFO [11637]: COREGRADE is starting... -- 00:18:38.095 INFO [11637]: Version from config: 1.0 -- 00:18:38.095 DEBUG [11637]: Connecting to database... -- 00:18:38.095 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:18:38.095 SQL [11637]: pgsql_db_connect() -- 00:18:38.099 DEBUG [11637]: Database connection successful -- 00:18:38.099 INFO [11637]: _SERVER found -- 00:18:38.099 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 00:18:38.099 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 00:18:38.099 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=srav2trm2kkshjq4cm0kcvur9uao8b7r -- 00:18:38.099 INFO [11637]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:18:38.099 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:18:38.110 INFO [11637]: COREGRADE is stopping... -- 00:18:38.110 DEBUG [11637]: Closing database connection -- 00:18:38.110 SQL [11637]: pgsql_close() -- 00:18:38.118 INFO [12763]: COREGRADE is starting... -- 00:18:38.118 INFO [12763]: Version from config: 1.0 -- 00:18:38.118 DEBUG [12763]: Connecting to database... -- 00:18:38.118 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:18:38.118 SQL [12763]: pgsql_db_connect() -- 00:18:38.122 DEBUG [12763]: Database connection successful -- 00:18:38.122 INFO [12763]: _SERVER found -- 00:18:38.122 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 00:18:38.122 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 00:18:38.122 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=srav2trm2kkshjq4cm0kcvur9uao8b7r -- 00:18:38.122 INFO [12763]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:18:38.122 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:18:38.133 INFO [12763]: COREGRADE is stopping... -- 00:18:38.133 DEBUG [12763]: Closing database connection -- 00:18:38.133 SQL [12763]: pgsql_close() -- 00:19:06.341 INFO [12761]: COREGRADE is starting... -- 00:19:06.342 INFO [12761]: Version from config: 1.0 -- 00:19:06.342 DEBUG [12761]: Connecting to database... -- 00:19:06.342 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:19:06.342 SQL [12761]: pgsql_db_connect() -- 00:19:06.346 DEBUG [12761]: Database connection successful -- 00:19:06.346 INFO [12761]: _SERVER found -- 00:19:06.346 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 00:19:06.346 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 00:19:06.346 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=srav2trm2kkshjq4cm0kcvur9uao8b7r -- 00:19:06.346 INFO [12761]: QUERY_STRING = /member/configure -- 00:19:06.346 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:19:06.382 INFO [12761]: COREGRADE is stopping... -- 00:19:06.382 DEBUG [12761]: Closing database connection -- 00:19:06.382 SQL [12761]: pgsql_close() -- 00:19:06.691 INFO [12761]: COREGRADE is starting... -- 00:19:06.691 INFO [12761]: Version from config: 1.0 -- 00:19:06.691 DEBUG [12761]: Connecting to database... -- 00:19:06.691 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:19:06.691 SQL [12761]: pgsql_db_connect() -- 00:19:06.696 DEBUG [12761]: Database connection successful -- 00:19:06.696 INFO [12761]: _SERVER found -- 00:19:06.696 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 00:19:06.696 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 00:19:06.696 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=srav2trm2kkshjq4cm0kcvur9uao8b7r -- 00:19:06.696 INFO [12761]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:19:06.696 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:19:06.707 INFO [12761]: COREGRADE is stopping... -- 00:19:06.707 DEBUG [12761]: Closing database connection -- 00:19:06.707 SQL [12761]: pgsql_close() -- 00:19:06.828 INFO [12761]: COREGRADE is starting... -- 00:19:06.828 INFO [12761]: Version from config: 1.0 -- 00:19:06.828 DEBUG [12761]: Connecting to database... -- 00:19:06.828 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:19:06.828 SQL [12761]: pgsql_db_connect() -- 00:19:06.832 DEBUG [12761]: Database connection successful -- 00:19:06.832 INFO [12761]: _SERVER found -- 00:19:06.832 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 00:19:06.832 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 00:19:06.832 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=srav2trm2kkshjq4cm0kcvur9uao8b7r -- 00:19:06.832 INFO [12761]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:19:06.832 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:19:06.843 INFO [12761]: COREGRADE is stopping... -- 00:19:06.843 DEBUG [12761]: Closing database connection -- 00:19:06.843 SQL [12761]: pgsql_close() -- 00:19:09.864 INFO [12761]: COREGRADE is starting... -- 00:19:09.864 INFO [12761]: Version from config: 1.0 -- 00:19:09.864 DEBUG [12761]: Connecting to database... -- 00:19:09.864 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:19:09.864 SQL [12761]: pgsql_db_connect() -- 00:19:09.868 DEBUG [12761]: Database connection successful -- 00:19:09.868 INFO [12761]: _SERVER found -- 00:19:09.868 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 00:19:09.868 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 00:19:09.868 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=srav2trm2kkshjq4cm0kcvur9uao8b7r -- 00:19:09.868 INFO [12761]: QUERY_STRING = /member -- 00:19:09.868 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:19:09.903 INFO [12761]: COREGRADE is stopping... -- 00:19:09.903 DEBUG [12761]: Closing database connection -- 00:19:09.903 SQL [12761]: pgsql_close() -- 00:19:09.989 INFO [12761]: COREGRADE is starting... -- 00:19:09.990 INFO [12761]: Version from config: 1.0 -- 00:19:09.990 DEBUG [12761]: Connecting to database... -- 00:19:09.990 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:19:09.990 SQL [12761]: pgsql_db_connect() -- 00:19:09.994 DEBUG [12761]: Database connection successful -- 00:19:09.994 INFO [12761]: _SERVER found -- 00:19:09.994 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 00:19:09.994 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 00:19:09.994 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=srav2trm2kkshjq4cm0kcvur9uao8b7r -- 00:19:09.994 INFO [12761]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:19:09.994 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:19:10.005 INFO [12761]: COREGRADE is stopping... -- 00:19:10.005 DEBUG [12761]: Closing database connection -- 00:19:10.005 SQL [12761]: pgsql_close() -- 00:19:10.067 INFO [12761]: COREGRADE is starting... -- 00:19:10.067 INFO [12761]: Version from config: 1.0 -- 00:19:10.067 DEBUG [12761]: Connecting to database... -- 00:19:10.067 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:19:10.067 SQL [12761]: pgsql_db_connect() -- 00:19:10.071 DEBUG [12761]: Database connection successful -- 00:19:10.071 INFO [12761]: _SERVER found -- 00:19:10.071 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 00:19:10.071 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 00:19:10.071 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=srav2trm2kkshjq4cm0kcvur9uao8b7r -- 00:19:10.071 INFO [12761]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:19:10.071 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:19:10.082 INFO [12761]: COREGRADE is stopping... -- 00:19:10.082 DEBUG [12761]: Closing database connection -- 00:19:10.082 SQL [12761]: pgsql_close() -- 00:19:14.637 INFO [12761]: COREGRADE is starting... -- 00:19:14.637 INFO [12761]: Version from config: 1.0 -- 00:19:14.637 DEBUG [12761]: Connecting to database... -- 00:19:14.637 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:19:14.637 SQL [12761]: pgsql_db_connect() -- 00:19:14.641 DEBUG [12761]: Database connection successful -- 00:19:14.641 INFO [12761]: _SERVER found -- 00:19:14.641 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 00:19:14.641 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 00:19:14.641 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=srav2trm2kkshjq4cm0kcvur9uao8b7r -- 00:19:14.641 INFO [12761]: QUERY_STRING = /member/page -- 00:19:14.641 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:19:14.677 INFO [12761]: COREGRADE is stopping... -- 00:19:14.677 DEBUG [12761]: Closing database connection -- 00:19:14.677 SQL [12761]: pgsql_close() -- 00:19:14.854 INFO [12761]: COREGRADE is starting... -- 00:19:14.854 INFO [12761]: Version from config: 1.0 -- 00:19:14.854 DEBUG [12761]: Connecting to database... -- 00:19:14.854 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:19:14.854 SQL [12761]: pgsql_db_connect() -- 00:19:14.859 DEBUG [12761]: Database connection successful -- 00:19:14.859 INFO [12761]: _SERVER found -- 00:19:14.859 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 00:19:14.859 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 00:19:14.859 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=srav2trm2kkshjq4cm0kcvur9uao8b7r -- 00:19:14.859 INFO [12761]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:19:14.859 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:19:14.870 INFO [12761]: COREGRADE is stopping... -- 00:19:14.870 DEBUG [12761]: Closing database connection -- 00:19:14.870 SQL [12761]: pgsql_close() -- 00:19:14.878 INFO [11652]: COREGRADE is starting... -- 00:19:14.878 INFO [11652]: Version from config: 1.0 -- 00:19:14.878 DEBUG [11652]: Connecting to database... -- 00:19:14.878 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:19:14.878 SQL [11652]: pgsql_db_connect() -- 00:19:14.882 DEBUG [11652]: Database connection successful -- 00:19:14.882 INFO [11652]: _SERVER found -- 00:19:14.882 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 00:19:14.882 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 00:19:14.882 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=srav2trm2kkshjq4cm0kcvur9uao8b7r -- 00:19:14.882 INFO [11652]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:19:14.882 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:19:14.893 INFO [11652]: COREGRADE is stopping... -- 00:19:14.893 DEBUG [11652]: Closing database connection -- 00:19:14.893 SQL [11652]: pgsql_close() -- 00:22:57.121 INFO [11644]: COREGRADE is starting... -- 00:22:57.122 INFO [11644]: Version from config: 1.0 -- 00:22:57.122 DEBUG [11644]: Connecting to database... -- 00:22:57.122 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:22:57.122 SQL [11644]: pgsql_db_connect() -- 00:22:57.126 DEBUG [11644]: Database connection successful -- 00:22:57.126 INFO [11644]: _SERVER found -- 00:22:57.126 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 00:22:57.126 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 00:22:57.126 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5i0jipik0mnj87dni4kk0ht2f91or8fr -- 00:22:57.126 INFO [11644]: QUERY_STRING = /member/page -- 00:22:57.126 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:22:57.164 INFO [11644]: COREGRADE is stopping... -- 00:22:57.164 DEBUG [11644]: Closing database connection -- 00:22:57.164 SQL [11644]: pgsql_close() -- 00:22:57.466 INFO [11644]: COREGRADE is starting... -- 00:22:57.467 INFO [11644]: Version from config: 1.0 -- 00:22:57.467 DEBUG [11644]: Connecting to database... -- 00:22:57.467 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:22:57.467 SQL [11644]: pgsql_db_connect() -- 00:22:57.471 DEBUG [11644]: Database connection successful -- 00:22:57.471 INFO [11644]: _SERVER found -- 00:22:57.471 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 00:22:57.471 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 00:22:57.471 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t2t56hkekecptg24mgso128su6elstcs -- 00:22:57.471 INFO [11644]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:22:57.471 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:22:57.482 INFO [11644]: COREGRADE is stopping... -- 00:22:57.482 DEBUG [11644]: Closing database connection -- 00:22:57.482 SQL [11644]: pgsql_close() -- 00:22:57.488 INFO [11636]: COREGRADE is starting... -- 00:22:57.489 INFO [11636]: Version from config: 1.0 -- 00:22:57.489 DEBUG [11636]: Connecting to database... -- 00:22:57.489 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:22:57.489 SQL [11636]: pgsql_db_connect() -- 00:22:57.493 DEBUG [11636]: Database connection successful -- 00:22:57.493 INFO [11636]: _SERVER found -- 00:22:57.493 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 00:22:57.493 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 00:22:57.493 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t2t56hkekecptg24mgso128su6elstcs -- 00:22:57.493 INFO [11636]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:22:57.493 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:22:57.504 INFO [11636]: COREGRADE is stopping... -- 00:22:57.504 DEBUG [11636]: Closing database connection -- 00:22:57.504 SQL [11636]: pgsql_close() -- 00:24:05.414 INFO [12764]: COREGRADE is starting... -- 00:24:05.415 INFO [12764]: Version from config: 1.0 -- 00:24:05.415 DEBUG [12764]: Connecting to database... -- 00:24:05.415 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:24:05.415 SQL [12764]: pgsql_db_connect() -- 00:24:05.419 DEBUG [12764]: Database connection successful -- 00:24:05.419 INFO [12764]: _SERVER found -- 00:24:05.419 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 00:24:05.419 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 00:24:05.419 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t2t56hkekecptg24mgso128su6elstcs -- 00:24:05.419 INFO [12764]: QUERY_STRING = /auth -- 00:24:05.419 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:24:05.451 INFO [12764]: COREGRADE is stopping... -- 00:24:05.451 DEBUG [12764]: Closing database connection -- 00:24:05.451 SQL [12764]: pgsql_close() -- 00:24:05.720 INFO [12764]: COREGRADE is starting... -- 00:24:05.720 INFO [12764]: Version from config: 1.0 -- 00:24:05.720 DEBUG [12764]: Connecting to database... -- 00:24:05.720 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:24:05.720 SQL [12764]: pgsql_db_connect() -- 00:24:05.724 DEBUG [12764]: Database connection successful -- 00:24:05.724 INFO [12764]: _SERVER found -- 00:24:05.724 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 00:24:05.724 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 00:24:05.724 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t2t56hkekecptg24mgso128su6elstcs -- 00:24:05.724 INFO [12764]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 00:24:05.724 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:24:05.735 INFO [12764]: COREGRADE is stopping... -- 00:24:05.735 DEBUG [12764]: Closing database connection -- 00:24:05.735 SQL [12764]: pgsql_close() -- 00:24:05.826 INFO [12764]: COREGRADE is starting... -- 00:24:05.826 INFO [12764]: Version from config: 1.0 -- 00:24:05.826 DEBUG [12764]: Connecting to database... -- 00:24:05.826 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:24:05.826 SQL [12764]: pgsql_db_connect() -- 00:24:05.830 DEBUG [12764]: Database connection successful -- 00:24:05.830 INFO [12764]: _SERVER found -- 00:24:05.830 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 00:24:05.830 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 00:24:05.830 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t2t56hkekecptg24mgso128su6elstcs -- 00:24:05.830 INFO [12764]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:24:05.830 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:24:05.841 INFO [12764]: COREGRADE is stopping... -- 00:24:05.841 DEBUG [12764]: Closing database connection -- 00:24:05.841 SQL [12764]: pgsql_close() -- 00:27:15.580 INFO [11650]: COREGRADE is starting... -- 00:27:15.580 INFO [11650]: Version from config: 1.0 -- 00:27:15.580 DEBUG [11650]: Connecting to database... -- 00:27:15.580 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:15.580 SQL [11650]: pgsql_db_connect() -- 00:27:15.585 DEBUG [11650]: Database connection successful -- 00:27:15.585 INFO [11650]: _SERVER found -- 00:27:15.585 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 00:27:15.585 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:15.585 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=srav2trm2kkshjq4cm0kcvur9uao8b7r -- 00:27:15.585 INFO [11650]: QUERY_STRING = /member/page -- 00:27:15.585 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:15.623 INFO [11650]: COREGRADE is stopping... -- 00:27:15.623 DEBUG [11650]: Closing database connection -- 00:27:15.623 SQL [11650]: pgsql_close() -- 00:27:15.817 INFO [11650]: COREGRADE is starting... -- 00:27:15.817 INFO [11650]: Version from config: 1.0 -- 00:27:15.817 DEBUG [11650]: Connecting to database... -- 00:27:15.817 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:15.817 SQL [11650]: pgsql_db_connect() -- 00:27:15.821 DEBUG [11650]: Database connection successful -- 00:27:15.821 INFO [11650]: _SERVER found -- 00:27:15.821 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 00:27:15.821 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:15.821 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=4ajjm4ml46k2ji3ivl3r3d968ngj0mvh -- 00:27:15.821 INFO [11650]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:27:15.821 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:15.832 INFO [11650]: COREGRADE is stopping... -- 00:27:15.832 DEBUG [11650]: Closing database connection -- 00:27:15.832 SQL [11650]: pgsql_close() -- 00:27:15.839 INFO [11639]: COREGRADE is starting... -- 00:27:15.839 INFO [11639]: Version from config: 1.0 -- 00:27:15.839 DEBUG [11639]: Connecting to database... -- 00:27:15.839 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:15.839 SQL [11639]: pgsql_db_connect() -- 00:27:15.843 DEBUG [11639]: Database connection successful -- 00:27:15.843 INFO [11639]: _SERVER found -- 00:27:15.843 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 00:27:15.843 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:15.843 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=4ajjm4ml46k2ji3ivl3r3d968ngj0mvh -- 00:27:15.843 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:27:15.843 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:15.855 INFO [11639]: COREGRADE is stopping... -- 00:27:15.855 DEBUG [11639]: Closing database connection -- 00:27:15.855 SQL [11639]: pgsql_close() -- 00:27:17.402 INFO [11638]: COREGRADE is starting... -- 00:27:17.402 INFO [11638]: Version from config: 1.0 -- 00:27:17.402 DEBUG [11638]: Connecting to database... -- 00:27:17.402 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:17.402 SQL [11638]: pgsql_db_connect() -- 00:27:17.406 DEBUG [11638]: Database connection successful -- 00:27:17.406 INFO [11638]: _SERVER found -- 00:27:17.406 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 00:27:17.406 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:17.406 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t2t56hkekecptg24mgso128su6elstcs -- 00:27:17.406 INFO [11638]: QUERY_STRING = /member/page -- 00:27:17.406 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:17.444 INFO [11638]: COREGRADE is stopping... -- 00:27:17.444 DEBUG [11638]: Closing database connection -- 00:27:17.444 SQL [11638]: pgsql_close() -- 00:27:17.733 INFO [11638]: COREGRADE is starting... -- 00:27:17.733 INFO [11638]: Version from config: 1.0 -- 00:27:17.733 DEBUG [11638]: Connecting to database... -- 00:27:17.733 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:17.733 SQL [11638]: pgsql_db_connect() -- 00:27:17.738 DEBUG [11638]: Database connection successful -- 00:27:17.738 INFO [11638]: _SERVER found -- 00:27:17.738 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 00:27:17.738 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:17.738 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t2t56hkekecptg24mgso128su6elstcs -- 00:27:17.738 INFO [11638]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:27:17.738 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:17.749 INFO [11638]: COREGRADE is stopping... -- 00:27:17.749 DEBUG [11638]: Closing database connection -- 00:27:17.749 SQL [11638]: pgsql_close() -- 00:27:17.802 INFO [11638]: COREGRADE is starting... -- 00:27:17.802 INFO [11638]: Version from config: 1.0 -- 00:27:17.802 DEBUG [11638]: Connecting to database... -- 00:27:17.802 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:17.802 SQL [11638]: pgsql_db_connect() -- 00:27:17.807 DEBUG [11638]: Database connection successful -- 00:27:17.807 INFO [11638]: _SERVER found -- 00:27:17.807 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 00:27:17.807 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:17.807 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t2t56hkekecptg24mgso128su6elstcs -- 00:27:17.807 INFO [11638]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:27:17.807 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:17.818 INFO [11638]: COREGRADE is stopping... -- 00:27:17.818 DEBUG [11638]: Closing database connection -- 00:27:17.818 SQL [11638]: pgsql_close() -- 00:27:21.382 INFO [11638]: COREGRADE is starting... -- 00:27:21.382 INFO [11638]: Version from config: 1.0 -- 00:27:21.382 DEBUG [11638]: Connecting to database... -- 00:27:21.382 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:21.382 SQL [11638]: pgsql_db_connect() -- 00:27:21.387 DEBUG [11638]: Database connection successful -- 00:27:21.387 INFO [11638]: _SERVER found -- 00:27:21.387 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 00:27:21.387 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:21.387 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t2t56hkekecptg24mgso128su6elstcs -- 00:27:21.387 INFO [11638]: QUERY_STRING = /member -- 00:27:21.387 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:21.421 INFO [11638]: COREGRADE is stopping... -- 00:27:21.421 DEBUG [11638]: Closing database connection -- 00:27:21.421 SQL [11638]: pgsql_close() -- 00:27:21.603 INFO [11638]: COREGRADE is starting... -- 00:27:21.603 INFO [11638]: Version from config: 1.0 -- 00:27:21.603 DEBUG [11638]: Connecting to database... -- 00:27:21.603 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:21.603 SQL [11638]: pgsql_db_connect() -- 00:27:21.608 DEBUG [11638]: Database connection successful -- 00:27:21.608 INFO [11638]: _SERVER found -- 00:27:21.608 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 00:27:21.608 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:21.608 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t2t56hkekecptg24mgso128su6elstcs -- 00:27:21.608 INFO [11638]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:27:21.608 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:21.618 INFO [11638]: COREGRADE is stopping... -- 00:27:21.619 DEBUG [11638]: Closing database connection -- 00:27:21.619 SQL [11638]: pgsql_close() -- 00:27:23.978 INFO [11638]: COREGRADE is starting... -- 00:27:23.978 INFO [11638]: Version from config: 1.0 -- 00:27:23.978 DEBUG [11638]: Connecting to database... -- 00:27:23.979 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:23.979 SQL [11638]: pgsql_db_connect() -- 00:27:23.983 DEBUG [11638]: Database connection successful -- 00:27:23.983 INFO [11638]: _SERVER found -- 00:27:23.983 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 00:27:23.983 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:23.983 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t2t56hkekecptg24mgso128su6elstcs -- 00:27:23.983 INFO [11638]: QUERY_STRING = /member/configure -- 00:27:23.983 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:24.017 INFO [11638]: COREGRADE is stopping... -- 00:27:24.017 DEBUG [11638]: Closing database connection -- 00:27:24.017 SQL [11638]: pgsql_close() -- 00:27:24.173 INFO [11638]: COREGRADE is starting... -- 00:27:24.173 INFO [11638]: Version from config: 1.0 -- 00:27:24.173 DEBUG [11638]: Connecting to database... -- 00:27:24.173 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:24.173 SQL [11638]: pgsql_db_connect() -- 00:27:24.177 DEBUG [11638]: Database connection successful -- 00:27:24.177 INFO [11638]: _SERVER found -- 00:27:24.177 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 00:27:24.177 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:24.177 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t2t56hkekecptg24mgso128su6elstcs -- 00:27:24.177 INFO [11638]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:27:24.177 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:24.188 INFO [11638]: COREGRADE is stopping... -- 00:27:24.188 DEBUG [11638]: Closing database connection -- 00:27:24.188 SQL [11638]: pgsql_close() -- 00:27:30.639 INFO [11637]: COREGRADE is starting... -- 00:27:30.639 INFO [11637]: Version from config: 1.0 -- 00:27:30.639 DEBUG [11637]: Connecting to database... -- 00:27:30.639 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:30.640 SQL [11637]: pgsql_db_connect() -- 00:27:30.644 DEBUG [11637]: Database connection successful -- 00:27:30.644 INFO [11637]: _SERVER found -- 00:27:30.644 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 00:27:30.644 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:30.644 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t2t56hkekecptg24mgso128su6elstcs -- 00:27:30.644 INFO [11637]: QUERY_STRING = /member -- 00:27:30.644 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:30.680 INFO [11637]: COREGRADE is stopping... -- 00:27:30.681 DEBUG [11637]: Closing database connection -- 00:27:30.681 SQL [11637]: pgsql_close() -- 00:27:30.833 INFO [11637]: COREGRADE is starting... -- 00:27:30.834 INFO [11637]: Version from config: 1.0 -- 00:27:30.834 DEBUG [11637]: Connecting to database... -- 00:27:30.834 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:30.834 SQL [11637]: pgsql_db_connect() -- 00:27:30.838 DEBUG [11637]: Database connection successful -- 00:27:30.838 INFO [11637]: _SERVER found -- 00:27:30.838 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 00:27:30.838 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:30.838 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t2t56hkekecptg24mgso128su6elstcs -- 00:27:30.838 INFO [11637]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:27:30.838 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:30.849 INFO [11637]: COREGRADE is stopping... -- 00:27:30.849 DEBUG [11637]: Closing database connection -- 00:27:30.849 SQL [11637]: pgsql_close() -- 00:27:52.208 INFO [12763]: COREGRADE is starting... -- 00:27:52.208 INFO [12763]: Version from config: 1.0 -- 00:27:52.208 DEBUG [12763]: Connecting to database... -- 00:27:52.208 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:52.208 SQL [12763]: pgsql_db_connect() -- 00:27:52.212 DEBUG [12763]: Database connection successful -- 00:27:52.212 INFO [12763]: _SERVER found -- 00:27:52.212 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 00:27:52.212 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:52.212 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=4ajjm4ml46k2ji3ivl3r3d968ngj0mvh -- 00:27:52.212 INFO [12763]: QUERY_STRING = /member/page -- 00:27:52.212 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:52.252 INFO [12763]: COREGRADE is stopping... -- 00:27:52.252 DEBUG [12763]: Closing database connection -- 00:27:52.252 SQL [12763]: pgsql_close() -- 00:27:52.400 INFO [12763]: COREGRADE is starting... -- 00:27:52.401 INFO [12763]: Version from config: 1.0 -- 00:27:52.401 DEBUG [12763]: Connecting to database... -- 00:27:52.401 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:52.401 SQL [12763]: pgsql_db_connect() -- 00:27:52.405 DEBUG [12763]: Database connection successful -- 00:27:52.405 INFO [12763]: _SERVER found -- 00:27:52.405 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 00:27:52.405 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:52.405 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=4ajjm4ml46k2ji3ivl3r3d968ngj0mvh -- 00:27:52.405 INFO [12763]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:27:52.405 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:52.416 INFO [12763]: COREGRADE is stopping... -- 00:27:52.416 DEBUG [12763]: Closing database connection -- 00:27:52.416 SQL [12763]: pgsql_close() -- 00:27:52.426 INFO [12763]: COREGRADE is starting... -- 00:27:52.427 INFO [12763]: Version from config: 1.0 -- 00:27:52.427 DEBUG [12763]: Connecting to database... -- 00:27:52.427 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:52.427 SQL [12763]: pgsql_db_connect() -- 00:27:52.431 DEBUG [12763]: Database connection successful -- 00:27:52.431 INFO [12763]: _SERVER found -- 00:27:52.431 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 00:27:52.431 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:52.431 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=4ajjm4ml46k2ji3ivl3r3d968ngj0mvh -- 00:27:52.431 INFO [12763]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:27:52.431 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:52.442 INFO [12763]: COREGRADE is stopping... -- 00:27:52.442 DEBUG [12763]: Closing database connection -- 00:27:52.442 SQL [12763]: pgsql_close() -- 00:28:30.364 INFO [12761]: COREGRADE is starting... -- 00:28:30.364 INFO [12761]: Version from config: 1.0 -- 00:28:30.364 DEBUG [12761]: Connecting to database... -- 00:28:30.364 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:30.364 SQL [12761]: pgsql_db_connect() -- 00:28:30.368 DEBUG [12761]: Database connection successful -- 00:28:30.368 INFO [12761]: _SERVER found -- 00:28:30.368 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 00:28:30.368 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 00:28:30.368 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=4ajjm4ml46k2ji3ivl3r3d968ngj0mvh -- 00:28:30.368 INFO [12761]: QUERY_STRING = /member/page -- 00:28:30.368 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:28:30.405 INFO [12761]: COREGRADE is stopping... -- 00:28:30.405 DEBUG [12761]: Closing database connection -- 00:28:30.405 SQL [12761]: pgsql_close() -- 00:28:30.587 INFO [12761]: COREGRADE is starting... -- 00:28:30.587 INFO [12761]: Version from config: 1.0 -- 00:28:30.587 DEBUG [12761]: Connecting to database... -- 00:28:30.587 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:30.587 SQL [12761]: pgsql_db_connect() -- 00:28:30.591 DEBUG [12761]: Database connection successful -- 00:28:30.591 INFO [12761]: _SERVER found -- 00:28:30.592 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 00:28:30.592 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 00:28:30.592 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=4ajjm4ml46k2ji3ivl3r3d968ngj0mvh -- 00:28:30.592 INFO [12761]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:28:30.592 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:28:30.603 INFO [12761]: COREGRADE is stopping... -- 00:28:30.603 DEBUG [12761]: Closing database connection -- 00:28:30.603 SQL [12761]: pgsql_close() -- 00:28:30.613 INFO [12761]: COREGRADE is starting... -- 00:28:30.614 INFO [12761]: Version from config: 1.0 -- 00:28:30.614 DEBUG [12761]: Connecting to database... -- 00:28:30.614 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:30.614 SQL [12761]: pgsql_db_connect() -- 00:28:30.618 DEBUG [12761]: Database connection successful -- 00:28:30.618 INFO [12761]: _SERVER found -- 00:28:30.618 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 00:28:30.618 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 00:28:30.618 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=4ajjm4ml46k2ji3ivl3r3d968ngj0mvh -- 00:28:30.618 INFO [12761]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:28:30.618 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:28:30.628 INFO [12761]: COREGRADE is stopping... -- 00:28:30.628 DEBUG [12761]: Closing database connection -- 00:28:30.628 SQL [12761]: pgsql_close() -- 00:29:36.859 INFO [11652]: COREGRADE is starting... -- 00:29:36.859 INFO [11652]: Version from config: 1.0 -- 00:29:36.859 DEBUG [11652]: Connecting to database... -- 00:29:36.859 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:29:36.859 SQL [11652]: pgsql_db_connect() -- 00:29:36.864 DEBUG [11652]: Database connection successful -- 00:29:36.864 INFO [11652]: _SERVER found -- 00:29:36.864 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 00:29:36.864 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 00:29:36.864 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=4ajjm4ml46k2ji3ivl3r3d968ngj0mvh -- 00:29:36.864 INFO [11652]: QUERY_STRING = /member/page -- 00:29:36.864 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:29:36.901 INFO [11652]: COREGRADE is stopping... -- 00:29:36.901 DEBUG [11652]: Closing database connection -- 00:29:36.901 SQL [11652]: pgsql_close() -- 00:29:37.042 INFO [11652]: COREGRADE is starting... -- 00:29:37.042 INFO [11652]: Version from config: 1.0 -- 00:29:37.042 DEBUG [11652]: Connecting to database... -- 00:29:37.042 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:29:37.042 SQL [11652]: pgsql_db_connect() -- 00:29:37.047 DEBUG [11652]: Database connection successful -- 00:29:37.047 INFO [11652]: _SERVER found -- 00:29:37.047 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 00:29:37.047 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 00:29:37.047 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=4ajjm4ml46k2ji3ivl3r3d968ngj0mvh -- 00:29:37.047 INFO [11652]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:29:37.047 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:29:37.058 INFO [11652]: COREGRADE is stopping... -- 00:29:37.058 DEBUG [11652]: Closing database connection -- 00:29:37.058 SQL [11652]: pgsql_close() -- 00:29:37.066 INFO [11644]: COREGRADE is starting... -- 00:29:37.066 INFO [11644]: Version from config: 1.0 -- 00:29:37.066 DEBUG [11644]: Connecting to database... -- 00:29:37.066 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:29:37.066 SQL [11644]: pgsql_db_connect() -- 00:29:37.070 DEBUG [11644]: Database connection successful -- 00:29:37.070 INFO [11644]: _SERVER found -- 00:29:37.070 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 00:29:37.070 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 00:29:37.070 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=4ajjm4ml46k2ji3ivl3r3d968ngj0mvh -- 00:29:37.070 INFO [11644]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:29:37.070 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:29:37.082 INFO [11644]: COREGRADE is stopping... -- 00:29:37.082 DEBUG [11644]: Closing database connection -- 00:29:37.082 SQL [11644]: pgsql_close() -- 00:29:58.095 INFO [11636]: COREGRADE is starting... -- 00:29:58.095 INFO [11636]: Version from config: 1.0 -- 00:29:58.095 DEBUG [11636]: Connecting to database... -- 00:29:58.095 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:29:58.095 SQL [11636]: pgsql_db_connect() -- 00:29:58.099 DEBUG [11636]: Database connection successful -- 00:29:58.099 INFO [11636]: _SERVER found -- 00:29:58.099 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 00:29:58.099 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 00:29:58.099 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=4ajjm4ml46k2ji3ivl3r3d968ngj0mvh -- 00:29:58.099 INFO [11636]: QUERY_STRING = /member/page -- 00:29:58.099 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:29:58.136 INFO [11636]: COREGRADE is stopping... -- 00:29:58.137 DEBUG [11636]: Closing database connection -- 00:29:58.137 SQL [11636]: pgsql_close() -- 00:29:58.333 INFO [11636]: COREGRADE is starting... -- 00:29:58.333 INFO [11636]: Version from config: 1.0 -- 00:29:58.333 DEBUG [11636]: Connecting to database... -- 00:29:58.333 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:29:58.333 SQL [11636]: pgsql_db_connect() -- 00:29:58.337 DEBUG [11636]: Database connection successful -- 00:29:58.337 INFO [11636]: _SERVER found -- 00:29:58.337 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 00:29:58.337 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 00:29:58.337 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=4ajjm4ml46k2ji3ivl3r3d968ngj0mvh -- 00:29:58.337 INFO [11636]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:29:58.337 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:29:58.348 INFO [11636]: COREGRADE is stopping... -- 00:29:58.348 DEBUG [11636]: Closing database connection -- 00:29:58.348 SQL [11636]: pgsql_close() -- 00:29:58.356 INFO [12764]: COREGRADE is starting... -- 00:29:58.357 INFO [12764]: Version from config: 1.0 -- 00:29:58.357 DEBUG [12764]: Connecting to database... -- 00:29:58.357 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:29:58.357 SQL [12764]: pgsql_db_connect() -- 00:29:58.361 DEBUG [12764]: Database connection successful -- 00:29:58.361 INFO [12764]: _SERVER found -- 00:29:58.361 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 00:29:58.361 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 00:29:58.361 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=4ajjm4ml46k2ji3ivl3r3d968ngj0mvh -- 00:29:58.361 INFO [12764]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:29:58.361 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:29:58.372 INFO [12764]: COREGRADE is stopping... -- 00:29:58.372 DEBUG [12764]: Closing database connection -- 00:29:58.372 SQL [12764]: pgsql_close() -- 00:30:01.846 INFO [11636]: COREGRADE is starting... -- 00:30:01.847 INFO [11636]: Version from config: 1.0 -- 00:30:01.847 DEBUG [11636]: Connecting to database... -- 00:30:01.847 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:30:01.847 SQL [11636]: pgsql_db_connect() -- 00:30:01.881 INFO [11636]: COREGRADE is starting... -- 00:30:01.881 INFO [11636]: Version from config: 1.0 -- 00:30:01.881 DEBUG [11636]: Connecting to database... -- 00:30:01.882 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:30:01.882 SQL [11636]: pgsql_db_connect() -- 00:30:01.886 DEBUG [11636]: Database connection successful -- 00:30:01.886 INFO [11636]: _SERVER found -- 00:30:01.886 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 00:30:01.886 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 00:30:01.886 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t2t56hkekecptg24mgso128su6elstcs -- 00:30:01.886 INFO [11636]: QUERY_STRING = -- 00:30:01.886 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:30:01.886 INFO [11636]: SystemStatus()09-09-********~************ -- 00:30:01.886 INFO [11636]: long coregrade_api_main(CVars in, CVars &out) -- 00:30:01.886 INFO [11636]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 00:30:01.886 INFO [11636]: account calls -- 00:30:01.886 INFO [11636]: account_calls() -- 00:30:01.886 INFO [11636]: LoginCoreGradeAccount() -- 00:30:01.886 FLOG_MAX [11636]: REQ_STRING(username) -- 00:30:01.886 FLOG_MAX [11636]: REQ_STRING(password) -- 00:30:01.886 FLOG_MAX [11636]: REQ_STRING(sessionid) -- 00:30:01.886 FLOG_MAX [11636]: long load_db_record( CVars &rec, const char * query, ... ) -- 00:30:01.886 SQL [11636]: pgsql_query() -- 00:30:01.886 SQL [11636]: About to run query: -- 00:30:01.886 SQL [11636]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 00:30:01.889 SQL [11636]: Found rows: 1 -- 00:30:01.889 FLOG_MAX [11636]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=15 -- 00:30:01.889 INFO [11636]: long SessionCheck(long uid, const char *sessionid, int create ) -- 00:30:01.889 SQL [11636]: pgsql_exec() -- 00:30:01.889 SQL [11636]: About to run query: -- 00:30:01.889 SQL [11636]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 00:30:01.890 SQL [11636]: PQcmdTuples: 0 -- 00:30:01.890 SQL [11636]: Affected rows: 0 -- 00:30:01.890 SQL [11636]: pgsql_exec() -- 00:30:01.890 SQL [11636]: About to run query: -- 00:30:01.890 SQL [11636]: DELETE FROM members_session WHERE member_id=7 -- 00:30:01.923 SQL [11636]: PQcmdTuples: 1 -- 00:30:01.923 SQL [11636]: Affected rows: 1 -- 00:30:01.923 SQL [11636]: pgsql_query() -- 00:30:01.923 SQL [11636]: About to run query: -- 00:30:01.923 SQL [11636]: SELECT * FROM members_session WHERE member_id=7 AND session<>'ED275F2EBC48D6656C8F0246314A3D94' -- 00:30:01.924 SQL [11636]: Found rows: 0 -- 00:30:01.924 SQL [11636]: Found rows: 0 -- 00:30:01.924 FLOG_MAX [11636]: long load_db_record( CVars &rec, const char * query, ... ) -- 00:30:01.924 SQL [11636]: pgsql_query() -- 00:30:01.924 SQL [11636]: About to run query: -- 00:30:01.924 SQL [11636]: SELECT * FROM members_session WHERE member_id=7 AND session='ED275F2EBC48D6656C8F0246314A3D94' -- 00:30:01.924 SQL [11636]: Found rows: 0 -- 00:30:01.924 SQL [11636]: Found rows: 0 -- 00:30:01.924 FLOG_MAX [11636]: insert_db_record() -- 00:30:01.924 SQL [11636]: pgsql_exec() -- 00:30:01.924 SQL [11636]: About to run query: -- 00:30:01.924 SQL [11636]: INSERT INTO members_session (member_id,session) VALUES ('7','ED275F2EBC48D6656C8F0246314A3D94') -- 00:30:01.926 SQL [11636]: PQcmdTuples: 1 -- 00:30:01.926 SQL [11636]: Affected rows: 1 -- 00:30:01.926 FLOG_MAX [11636]: SELECT currval('members_session_id_seq') -- 00:30:01.926 SQL [11636]: pgsql_query() -- 00:30:01.926 SQL [11636]: About to run query: -- 00:30:01.926 SQL [11636]: SELECT currval('members_session_id_seq') -- 00:30:01.926 SQL [11636]: Found rows: 1 -- 00:30:01.926 INFO [11636]: CreateDefaultPage() -- 00:30:01.926 FLOG_MAX [11636]: long load_db_record( CVars &rec, const char * query, ... ) -- 00:30:01.926 SQL [11636]: pgsql_query() -- 00:30:01.926 SQL [11636]: About to run query: -- 00:30:01.926 SQL [11636]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 00:30:01.927 SQL [11636]: Found rows: 1 -- 00:30:01.927 FLOG_MAX [11636]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 00:30:01.927 SQL [11636]: pgsql_query() -- 00:30:01.927 SQL [11636]: About to run query: -- 00:30:01.927 SQL [11636]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 00:30:01.927 SQL [11636]: Found rows: 1 -- 00:30:01.927 INFO [11636]: /CreateDefaultPage() -- 00:30:01.927 INFO [11636]: /LoginCoreGradeAccount() -- 00:30:01.927 INFO [11636]: RET: added=2020-02-05 09:42:12.816064 -- 00:30:01.927 INFO [11636]: RET: email=tokslaw@chiefsoft.com -- 00:30:01.927 INFO [11636]: RET: firstname=Tokunbo -- 00:30:01.927 INFO [11636]: RET: id=7 -- 00:30:01.927 INFO [11636]: RET: last_login= -- 00:30:01.927 INFO [11636]: RET: lastname=Lawal -- 00:30:01.927 INFO [11636]: RET: loc=192.168.1.13 -- 00:30:01.927 INFO [11636]: RET: member_id=7 -- 00:30:01.927 INFO [11636]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 00:30:01.927 INFO [11636]: RET: phone= -- 00:30:01.927 INFO [11636]: RET: pid= -- 00:30:01.927 INFO [11636]: RET: result=YES I GET TO BACK END -- 00:30:01.927 INFO [11636]: RET: sessionid=ED275F2EBC48D6656C8F0246314A3D94 -- 00:30:01.927 INFO [11636]: RET: status=1 -- 00:30:01.927 INFO [11636]: RET: stauts=OK -- 00:30:01.927 INFO [11636]: RET: username=tokslaw@chiefsoft.com -- 00:30:01.927 INFO [11636]: RET: verified= -- 00:30:01.929 INFO [11636]: COREGRADE is stopping... -- 00:30:01.929 DEBUG [11636]: Closing database connection -- 00:30:01.929 SQL [11636]: pgsql_close() -- 00:30:01.851 DEBUG [11636]: Database connection successful -- 00:30:01.851 INFO [11636]: _SERVER found -- 00:30:01.851 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 00:30:01.851 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 00:30:01.851 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t2t56hkekecptg24mgso128su6elstcs -- 00:30:01.851 INFO [11636]: QUERY_STRING = /auth -- 00:30:01.851 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:30:01.929 INFO [11636]: COREGRADE is stopping... -- 00:30:01.929 DEBUG [11636]: Closing database connection -- 00:30:01.929 SQL [11636]: pgsql_close() -- 00:30:01.942 INFO [11636]: COREGRADE is starting... -- 00:30:01.942 INFO [11636]: Version from config: 1.0 -- 00:30:01.942 DEBUG [11636]: Connecting to database... -- 00:30:01.942 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:30:01.943 SQL [11636]: pgsql_db_connect() -- 00:30:01.946 DEBUG [11636]: Database connection successful -- 00:30:01.946 INFO [11636]: _SERVER found -- 00:30:01.946 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 00:30:01.946 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 00:30:01.946 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=1i5uj5m84h5v44ifho1s51u3vk17ehk0 -- 00:30:01.946 INFO [11636]: QUERY_STRING = /member/index -- 00:30:01.946 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:30:01.981 INFO [11636]: COREGRADE is stopping... -- 00:30:01.981 DEBUG [11636]: Closing database connection -- 00:30:01.981 SQL [11636]: pgsql_close() -- 00:30:02.224 INFO [11636]: COREGRADE is starting... -- 00:30:02.224 INFO [11636]: Version from config: 1.0 -- 00:30:02.224 DEBUG [11636]: Connecting to database... -- 00:30:02.224 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:30:02.224 SQL [11636]: pgsql_db_connect() -- 00:30:02.228 DEBUG [11636]: Database connection successful -- 00:30:02.228 INFO [11636]: _SERVER found -- 00:30:02.228 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 00:30:02.228 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 00:30:02.228 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=1i5uj5m84h5v44ifho1s51u3vk17ehk0 -- 00:30:02.228 INFO [11636]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:30:02.228 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:30:02.239 INFO [11636]: COREGRADE is stopping... -- 00:30:02.239 DEBUG [11636]: Closing database connection -- 00:30:02.239 SQL [11636]: pgsql_close() -- 00:30:02.240 INFO [11650]: COREGRADE is starting... -- 00:30:02.240 INFO [11650]: Version from config: 1.0 -- 00:30:02.240 DEBUG [11650]: Connecting to database... -- 00:30:02.240 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:30:02.240 SQL [11650]: pgsql_db_connect() -- 00:30:02.244 DEBUG [11650]: Database connection successful -- 00:30:02.244 INFO [11650]: _SERVER found -- 00:30:02.244 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 00:30:02.244 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 00:30:02.244 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=1i5uj5m84h5v44ifho1s51u3vk17ehk0 -- 00:30:02.244 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:30:02.244 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:30:02.256 INFO [11650]: COREGRADE is stopping... -- 00:30:02.256 DEBUG [11650]: Closing database connection -- 00:30:02.256 SQL [11650]: pgsql_close() -- 00:30:04.510 INFO [11650]: COREGRADE is starting... -- 00:30:04.511 INFO [11650]: Version from config: 1.0 -- 00:30:04.511 DEBUG [11650]: Connecting to database... -- 00:30:04.511 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:30:04.511 SQL [11650]: pgsql_db_connect() -- 00:30:04.515 DEBUG [11650]: Database connection successful -- 00:30:04.515 INFO [11650]: _SERVER found -- 00:30:04.515 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 00:30:04.515 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 00:30:04.515 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=1i5uj5m84h5v44ifho1s51u3vk17ehk0 -- 00:30:04.515 INFO [11650]: QUERY_STRING = /member/page -- 00:30:04.515 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:30:04.551 INFO [11650]: COREGRADE is stopping... -- 00:30:04.551 DEBUG [11650]: Closing database connection -- 00:30:04.551 SQL [11650]: pgsql_close() -- 00:30:04.704 INFO [11650]: COREGRADE is starting... -- 00:30:04.705 INFO [11650]: Version from config: 1.0 -- 00:30:04.705 DEBUG [11650]: Connecting to database... -- 00:30:04.705 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:30:04.705 SQL [11650]: pgsql_db_connect() -- 00:30:04.709 DEBUG [11650]: Database connection successful -- 00:30:04.709 INFO [11650]: _SERVER found -- 00:30:04.709 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 00:30:04.709 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 00:30:04.709 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=1i5uj5m84h5v44ifho1s51u3vk17ehk0 -- 00:30:04.709 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:30:04.709 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:30:04.720 INFO [11650]: COREGRADE is stopping... -- 00:30:04.720 DEBUG [11650]: Closing database connection -- 00:30:04.720 SQL [11650]: pgsql_close() -- 00:30:08.175 INFO [11650]: COREGRADE is starting... -- 00:30:08.175 INFO [11650]: Version from config: 1.0 -- 00:30:08.175 DEBUG [11650]: Connecting to database... -- 00:30:08.175 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:30:08.175 SQL [11650]: pgsql_db_connect() -- 00:30:08.180 DEBUG [11650]: Database connection successful -- 00:30:08.180 INFO [11650]: _SERVER found -- 00:30:08.180 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 00:30:08.180 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 00:30:08.180 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=1i5uj5m84h5v44ifho1s51u3vk17ehk0 -- 00:30:08.180 INFO [11650]: QUERY_STRING = /member/page -- 00:30:08.180 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:30:08.215 INFO [11650]: COREGRADE is stopping... -- 00:30:08.215 DEBUG [11650]: Closing database connection -- 00:30:08.215 SQL [11650]: pgsql_close() -- 00:30:08.344 INFO [11650]: COREGRADE is starting... -- 00:30:08.344 INFO [11650]: Version from config: 1.0 -- 00:30:08.344 DEBUG [11650]: Connecting to database... -- 00:30:08.344 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:30:08.344 SQL [11650]: pgsql_db_connect() -- 00:30:08.348 DEBUG [11650]: Database connection successful -- 00:30:08.348 INFO [11650]: _SERVER found -- 00:30:08.348 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 00:30:08.348 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 00:30:08.348 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=1i5uj5m84h5v44ifho1s51u3vk17ehk0 -- 00:30:08.348 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:30:08.348 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:30:08.360 INFO [11650]: COREGRADE is stopping... -- 00:30:08.360 DEBUG [11650]: Closing database connection -- 00:30:08.360 SQL [11650]: pgsql_close() -- 00:34:08.293 INFO [11639]: COREGRADE is starting... -- 00:34:08.294 INFO [11639]: Version from config: 1.0 -- 00:34:08.294 DEBUG [11639]: Connecting to database... -- 00:34:08.294 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:08.294 SQL [11639]: pgsql_db_connect() -- 00:34:08.298 DEBUG [11639]: Database connection successful -- 00:34:08.298 INFO [11639]: _SERVER found -- 00:34:08.298 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 00:34:08.298 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:08.298 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=4ajjm4ml46k2ji3ivl3r3d968ngj0mvh -- 00:34:08.298 INFO [11639]: QUERY_STRING = /member/page -- 00:34:08.298 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:08.335 INFO [11639]: COREGRADE is stopping... -- 00:34:08.335 DEBUG [11639]: Closing database connection -- 00:34:08.335 SQL [11639]: pgsql_close() -- 00:34:08.473 INFO [11639]: COREGRADE is starting... -- 00:34:08.473 INFO [11639]: Version from config: 1.0 -- 00:34:08.473 DEBUG [11639]: Connecting to database... -- 00:34:08.473 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:08.473 SQL [11639]: pgsql_db_connect() -- 00:34:08.477 DEBUG [11639]: Database connection successful -- 00:34:08.477 INFO [11639]: _SERVER found -- 00:34:08.477 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 00:34:08.477 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:08.477 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=jnqehvmhk7guuiea2gl0nao2pdbqvjub -- 00:34:08.477 INFO [11639]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:34:08.477 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:08.488 INFO [11639]: COREGRADE is stopping... -- 00:34:08.488 DEBUG [11639]: Closing database connection -- 00:34:08.488 SQL [11639]: pgsql_close() -- 00:34:08.502 INFO [11638]: COREGRADE is starting... -- 00:34:08.503 INFO [11638]: Version from config: 1.0 -- 00:34:08.503 DEBUG [11638]: Connecting to database... -- 00:34:08.503 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:08.503 SQL [11638]: pgsql_db_connect() -- 00:34:08.507 DEBUG [11638]: Database connection successful -- 00:34:08.507 INFO [11638]: _SERVER found -- 00:34:08.507 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 00:34:08.507 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:08.507 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=jnqehvmhk7guuiea2gl0nao2pdbqvjub -- 00:34:08.507 INFO [11638]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:34:08.507 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:08.518 INFO [11638]: COREGRADE is stopping... -- 00:34:08.518 DEBUG [11638]: Closing database connection -- 00:34:08.518 SQL [11638]: pgsql_close() -- 00:34:14.921 INFO [11637]: COREGRADE is starting... -- 00:34:14.921 INFO [11637]: Version from config: 1.0 -- 00:34:14.921 DEBUG [11637]: Connecting to database... -- 00:34:14.921 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:14.921 SQL [11637]: pgsql_db_connect() -- 00:34:14.926 INFO [12763]: COREGRADE is starting... -- 00:34:14.927 INFO [12763]: Version from config: 1.0 -- 00:34:14.927 DEBUG [12763]: Connecting to database... -- 00:34:14.927 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:14.927 SQL [12763]: pgsql_db_connect() -- 00:34:14.925 DEBUG [11637]: Database connection successful -- 00:34:14.925 INFO [11637]: _SERVER found -- 00:34:14.925 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 00:34:14.925 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:14.925 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=jnqehvmhk7guuiea2gl0nao2pdbqvjub -- 00:34:14.925 INFO [11637]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 00:34:14.925 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:14.937 INFO [11637]: COREGRADE is stopping... -- 00:34:14.937 DEBUG [11637]: Closing database connection -- 00:34:14.937 SQL [11637]: pgsql_close() -- 00:34:14.931 DEBUG [12763]: Database connection successful -- 00:34:14.931 INFO [12763]: _SERVER found -- 00:34:14.931 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 00:34:14.931 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:14.931 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=jnqehvmhk7guuiea2gl0nao2pdbqvjub -- 00:34:14.931 INFO [12763]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 00:34:14.931 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:14.942 INFO [12763]: COREGRADE is stopping... -- 00:34:14.942 DEBUG [12763]: Closing database connection -- 00:34:14.942 SQL [12763]: pgsql_close() -- 00:35:17.301 INFO [12761]: COREGRADE is starting... -- 00:35:17.302 INFO [12761]: Version from config: 1.0 -- 00:35:17.302 DEBUG [12761]: Connecting to database... -- 00:35:17.302 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:17.302 SQL [12761]: pgsql_db_connect() -- 00:35:17.306 DEBUG [12761]: Database connection successful -- 00:35:17.306 INFO [12761]: _SERVER found -- 00:35:17.306 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 00:35:17.306 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:17.306 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=jnqehvmhk7guuiea2gl0nao2pdbqvjub -- 00:35:17.306 INFO [12761]: QUERY_STRING = /member/page -- 00:35:17.306 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:17.343 INFO [12761]: COREGRADE is stopping... -- 00:35:17.343 DEBUG [12761]: Closing database connection -- 00:35:17.343 SQL [12761]: pgsql_close() -- 00:35:17.725 INFO [12764]: COREGRADE is starting... -- 00:35:17.725 INFO [12764]: Version from config: 1.0 -- 00:35:17.725 DEBUG [12764]: Connecting to database... -- 00:35:17.725 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:17.725 SQL [12764]: pgsql_db_connect() -- 00:35:17.730 DEBUG [12764]: Database connection successful -- 00:35:17.730 INFO [12764]: _SERVER found -- 00:35:17.730 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 00:35:17.730 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:17.730 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=jnqehvmhk7guuiea2gl0nao2pdbqvjub -- 00:35:17.730 INFO [12764]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:35:17.730 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:17.741 INFO [12764]: COREGRADE is stopping... -- 00:35:17.741 DEBUG [12764]: Closing database connection -- 00:35:17.741 SQL [12764]: pgsql_close() -- 00:35:18.100 INFO [11644]: COREGRADE is starting... -- 00:35:18.100 INFO [11644]: Version from config: 1.0 -- 00:35:18.100 DEBUG [11644]: Connecting to database... -- 00:35:18.100 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:18.100 SQL [11644]: pgsql_db_connect() -- 00:35:18.105 DEBUG [11644]: Database connection successful -- 00:35:18.105 INFO [11644]: _SERVER found -- 00:35:18.105 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 00:35:18.105 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:18.105 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=jnqehvmhk7guuiea2gl0nao2pdbqvjub -- 00:35:18.105 INFO [11644]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 00:35:18.105 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:18.116 INFO [11644]: COREGRADE is stopping... -- 00:35:18.116 DEBUG [11644]: Closing database connection -- 00:35:18.116 SQL [11644]: pgsql_close() -- 00:35:18.149 INFO [11644]: COREGRADE is starting... -- 00:35:18.149 INFO [11644]: Version from config: 1.0 -- 00:35:18.149 DEBUG [11644]: Connecting to database... -- 00:35:18.149 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:18.149 SQL [11644]: pgsql_db_connect() -- 00:35:18.153 DEBUG [11644]: Database connection successful -- 00:35:18.153 INFO [11644]: _SERVER found -- 00:35:18.153 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 00:35:18.153 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:18.153 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=jnqehvmhk7guuiea2gl0nao2pdbqvjub -- 00:35:18.153 INFO [11644]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:35:18.153 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:18.164 INFO [11644]: COREGRADE is stopping... -- 00:35:18.164 DEBUG [11644]: Closing database connection -- 00:35:18.164 SQL [11644]: pgsql_close() -- 00:35:18.242 INFO [11644]: COREGRADE is starting... -- 00:35:18.242 INFO [11644]: Version from config: 1.0 -- 00:35:18.242 DEBUG [11644]: Connecting to database... -- 00:35:18.242 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:18.242 SQL [11644]: pgsql_db_connect() -- 00:35:18.246 DEBUG [11644]: Database connection successful -- 00:35:18.246 INFO [11644]: _SERVER found -- 00:35:18.246 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 00:35:18.246 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:18.246 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=jnqehvmhk7guuiea2gl0nao2pdbqvjub -- 00:35:18.246 INFO [11644]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 00:35:18.246 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:18.257 INFO [11644]: COREGRADE is stopping... -- 00:35:18.257 DEBUG [11644]: Closing database connection -- 00:35:18.257 SQL [11644]: pgsql_close() -- 00:35:43.331 INFO [11650]: COREGRADE is starting... -- 00:35:43.331 INFO [11650]: Version from config: 1.0 -- 00:35:43.331 DEBUG [11650]: Connecting to database... -- 00:35:43.331 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:43.331 SQL [11650]: pgsql_db_connect() -- 00:35:43.336 DEBUG [11650]: Database connection successful -- 00:35:43.336 INFO [11650]: _SERVER found -- 00:35:43.336 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 00:35:43.336 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:43.336 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=jnqehvmhk7guuiea2gl0nao2pdbqvjub -- 00:35:43.336 INFO [11650]: QUERY_STRING = /member/page -- 00:35:43.336 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:43.372 INFO [11650]: COREGRADE is stopping... -- 00:35:43.372 DEBUG [11650]: Closing database connection -- 00:35:43.372 SQL [11650]: pgsql_close() -- 00:35:43.627 INFO [11650]: COREGRADE is starting... -- 00:35:43.627 INFO [11650]: Version from config: 1.0 -- 00:35:43.627 DEBUG [11650]: Connecting to database... -- 00:35:43.627 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:43.627 SQL [11650]: pgsql_db_connect() -- 00:35:43.631 DEBUG [11650]: Database connection successful -- 00:35:43.631 INFO [11650]: _SERVER found -- 00:35:43.631 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 00:35:43.631 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:43.631 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=jnqehvmhk7guuiea2gl0nao2pdbqvjub -- 00:35:43.631 INFO [11650]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:35:43.631 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:43.642 INFO [11650]: COREGRADE is stopping... -- 00:35:43.642 DEBUG [11650]: Closing database connection -- 00:35:43.642 SQL [11650]: pgsql_close() -- 00:35:43.698 INFO [11650]: COREGRADE is starting... -- 00:35:43.698 INFO [11650]: Version from config: 1.0 -- 00:35:43.698 DEBUG [11650]: Connecting to database... -- 00:35:43.698 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:43.698 SQL [11650]: pgsql_db_connect() -- 00:35:43.704 INFO [11638]: COREGRADE is starting... -- 00:35:43.705 INFO [11638]: Version from config: 1.0 -- 00:35:43.705 DEBUG [11638]: Connecting to database... -- 00:35:43.705 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:43.705 SQL [11638]: pgsql_db_connect() -- 00:35:43.702 DEBUG [11650]: Database connection successful -- 00:35:43.702 INFO [11650]: _SERVER found -- 00:35:43.702 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 00:35:43.702 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:43.702 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=jnqehvmhk7guuiea2gl0nao2pdbqvjub -- 00:35:43.702 INFO [11650]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 00:35:43.702 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:43.713 INFO [11650]: COREGRADE is stopping... -- 00:35:43.714 DEBUG [11650]: Closing database connection -- 00:35:43.714 SQL [11650]: pgsql_close() -- 00:35:43.709 DEBUG [11638]: Database connection successful -- 00:35:43.709 INFO [11638]: _SERVER found -- 00:35:43.709 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 00:35:43.709 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:43.709 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=jnqehvmhk7guuiea2gl0nao2pdbqvjub -- 00:35:43.709 INFO [11638]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 00:35:43.709 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:43.720 INFO [11638]: COREGRADE is stopping... -- 00:35:43.720 DEBUG [11638]: Closing database connection -- 00:35:43.720 SQL [11638]: pgsql_close() -- 00:35:43.731 INFO [11650]: COREGRADE is starting... -- 00:35:43.732 INFO [11650]: Version from config: 1.0 -- 00:35:43.732 DEBUG [11650]: Connecting to database... -- 00:35:43.732 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:43.732 SQL [11650]: pgsql_db_connect() -- 00:35:43.736 DEBUG [11650]: Database connection successful -- 00:35:43.736 INFO [11650]: _SERVER found -- 00:35:43.736 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 00:35:43.736 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:43.736 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=jnqehvmhk7guuiea2gl0nao2pdbqvjub -- 00:35:43.736 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:35:43.736 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:43.747 INFO [11650]: COREGRADE is stopping... -- 00:35:43.747 DEBUG [11650]: Closing database connection -- 00:35:43.747 SQL [11650]: pgsql_close() -- 00:36:47.308 INFO [11639]: COREGRADE is starting... -- 00:36:47.309 INFO [11639]: Version from config: 1.0 -- 00:36:47.309 DEBUG [11639]: Connecting to database... -- 00:36:47.309 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:36:47.309 SQL [11639]: pgsql_db_connect() -- 00:36:47.313 DEBUG [11639]: Database connection successful -- 00:36:47.313 INFO [11639]: _SERVER found -- 00:36:47.313 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 00:36:47.313 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 00:36:47.313 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=jnqehvmhk7guuiea2gl0nao2pdbqvjub -- 00:36:47.313 INFO [11639]: QUERY_STRING = /member/page -- 00:36:47.313 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:36:47.351 INFO [11639]: COREGRADE is stopping... -- 00:36:47.351 DEBUG [11639]: Closing database connection -- 00:36:47.351 SQL [11639]: pgsql_close() -- 00:36:48.012 INFO [11639]: COREGRADE is starting... -- 00:36:48.012 INFO [11639]: Version from config: 1.0 -- 00:36:48.012 DEBUG [11639]: Connecting to database... -- 00:36:48.012 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:36:48.012 SQL [11639]: pgsql_db_connect() -- 00:36:48.017 DEBUG [11639]: Database connection successful -- 00:36:48.017 INFO [11639]: _SERVER found -- 00:36:48.017 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 00:36:48.017 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 00:36:48.017 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=jnqehvmhk7guuiea2gl0nao2pdbqvjub -- 00:36:48.017 INFO [11639]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:36:48.017 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:36:48.028 INFO [11639]: COREGRADE is stopping... -- 00:36:48.028 DEBUG [11639]: Closing database connection -- 00:36:48.028 SQL [11639]: pgsql_close() -- 00:36:48.886 INFO [12763]: COREGRADE is starting... -- 00:36:48.886 INFO [12763]: Version from config: 1.0 -- 00:36:48.886 DEBUG [12763]: Connecting to database... -- 00:36:48.886 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:36:48.886 SQL [12763]: pgsql_db_connect() -- 00:36:48.890 DEBUG [12763]: Database connection successful -- 00:36:48.890 INFO [12763]: _SERVER found -- 00:36:48.890 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 00:36:48.890 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 00:36:48.890 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=jnqehvmhk7guuiea2gl0nao2pdbqvjub -- 00:36:48.890 INFO [12763]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:36:48.890 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:36:48.902 INFO [12763]: COREGRADE is stopping... -- 00:36:48.902 DEBUG [12763]: Closing database connection -- 00:36:48.902 SQL [12763]: pgsql_close() -- 00:36:49.025 INFO [12763]: COREGRADE is starting... -- 00:36:49.025 INFO [12763]: Version from config: 1.0 -- 00:36:49.025 DEBUG [12763]: Connecting to database... -- 00:36:49.025 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:36:49.025 SQL [12763]: pgsql_db_connect() -- 00:36:49.026 INFO [12761]: COREGRADE is starting... -- 00:36:49.026 INFO [12761]: Version from config: 1.0 -- 00:36:49.026 DEBUG [12761]: Connecting to database... -- 00:36:49.026 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:36:49.027 SQL [12761]: pgsql_db_connect() -- 00:36:49.030 DEBUG [12763]: Database connection successful -- 00:36:49.030 INFO [12763]: _SERVER found -- 00:36:49.030 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 00:36:49.030 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 00:36:49.030 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=jnqehvmhk7guuiea2gl0nao2pdbqvjub -- 00:36:49.030 INFO [12763]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 00:36:49.030 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:36:49.041 INFO [12763]: COREGRADE is stopping... -- 00:36:49.041 DEBUG [12763]: Closing database connection -- 00:36:49.041 SQL [12763]: pgsql_close() -- 00:36:49.030 DEBUG [12761]: Database connection successful -- 00:36:49.030 INFO [12761]: _SERVER found -- 00:36:49.030 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 00:36:49.030 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 00:36:49.030 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=jnqehvmhk7guuiea2gl0nao2pdbqvjub -- 00:36:49.030 INFO [12761]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 00:36:49.030 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:36:49.042 INFO [12761]: COREGRADE is stopping... -- 00:36:49.042 DEBUG [12761]: Closing database connection -- 00:36:49.042 SQL [12761]: pgsql_close() -- 00:36:52.164 INFO [12761]: COREGRADE is starting... -- 00:36:52.164 INFO [12761]: Version from config: 1.0 -- 00:36:52.164 DEBUG [12761]: Connecting to database... -- 00:36:52.164 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:36:52.164 SQL [12761]: pgsql_db_connect() -- 00:36:52.169 DEBUG [12761]: Database connection successful -- 00:36:52.169 INFO [12761]: _SERVER found -- 00:36:52.169 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 00:36:52.169 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 00:36:52.169 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=jnqehvmhk7guuiea2gl0nao2pdbqvjub -- 00:36:52.169 INFO [12761]: QUERY_STRING = /member/viewCardAddAction -- 00:36:52.169 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:36:52.199 INFO [12761]: COREGRADE is stopping... -- 00:36:52.199 DEBUG [12761]: Closing database connection -- 00:36:52.199 SQL [12761]: pgsql_close() -- 00:36:55.348 INFO [12761]: COREGRADE is starting... -- 00:36:55.349 INFO [12761]: Version from config: 1.0 -- 00:36:55.349 DEBUG [12761]: Connecting to database... -- 00:36:55.349 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:36:55.349 SQL [12761]: pgsql_db_connect() -- 00:36:55.353 DEBUG [12761]: Database connection successful -- 00:36:55.353 INFO [12761]: _SERVER found -- 00:36:55.353 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 00:36:55.353 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 00:36:55.353 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=jnqehvmhk7guuiea2gl0nao2pdbqvjub -- 00:36:55.353 INFO [12761]: QUERY_STRING = /member/viewCardAddAction -- 00:36:55.353 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:36:55.383 INFO [12761]: COREGRADE is stopping... -- 00:36:55.383 DEBUG [12761]: Closing database connection -- 00:36:55.383 SQL [12761]: pgsql_close() -- 00:37:01.048 INFO [11652]: COREGRADE is starting... -- 00:37:01.048 INFO [11652]: Version from config: 1.0 -- 00:37:01.048 DEBUG [11652]: Connecting to database... -- 00:37:01.048 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:37:01.048 SQL [11652]: pgsql_db_connect() -- 00:37:01.052 DEBUG [11652]: Database connection successful -- 00:37:01.052 INFO [11652]: _SERVER found -- 00:37:01.052 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 00:37:01.052 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 00:37:01.052 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=jnqehvmhk7guuiea2gl0nao2pdbqvjub -- 00:37:01.052 INFO [11652]: QUERY_STRING = /member/viewCardAddAction -- 00:37:01.052 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:37:01.083 INFO [11652]: COREGRADE is stopping... -- 00:37:01.083 DEBUG [11652]: Closing database connection -- 00:37:01.083 SQL [11652]: pgsql_close() -- 00:45:01.926 INFO [12764]: COREGRADE is starting... -- 00:45:01.927 INFO [12764]: Version from config: 1.0 -- 00:45:01.927 DEBUG [12764]: Connecting to database... -- 00:45:01.927 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:45:01.927 SQL [12764]: pgsql_db_connect() -- 00:45:01.931 DEBUG [12764]: Database connection successful -- 00:45:01.931 INFO [12764]: _SERVER found -- 00:45:01.932 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 00:45:01.932 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 00:45:01.932 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=jnqehvmhk7guuiea2gl0nao2pdbqvjub -- 00:45:01.932 INFO [12764]: QUERY_STRING = /member/page -- 00:45:01.932 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:45:01.970 INFO [12764]: COREGRADE is stopping... -- 00:45:01.970 DEBUG [12764]: Closing database connection -- 00:45:01.970 SQL [12764]: pgsql_close() -- 00:45:02.147 INFO [12764]: COREGRADE is starting... -- 00:45:02.147 INFO [12764]: Version from config: 1.0 -- 00:45:02.147 DEBUG [12764]: Connecting to database... -- 00:45:02.147 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:45:02.147 SQL [12764]: pgsql_db_connect() -- 00:45:02.151 DEBUG [12764]: Database connection successful -- 00:45:02.151 INFO [12764]: _SERVER found -- 00:45:02.151 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 00:45:02.151 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 00:45:02.151 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nle9pdpqvgaq3i5rlsr815jvrmdcdo8q -- 00:45:02.151 INFO [12764]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:45:02.151 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:45:02.162 INFO [12764]: COREGRADE is stopping... -- 00:45:02.163 DEBUG [12764]: Closing database connection -- 00:45:02.163 SQL [12764]: pgsql_close() -- 00:45:02.167 INFO [11644]: COREGRADE is starting... -- 00:45:02.167 INFO [11644]: Version from config: 1.0 -- 00:45:02.167 DEBUG [11644]: Connecting to database... -- 00:45:02.167 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:45:02.167 SQL [11644]: pgsql_db_connect() -- 00:45:02.171 DEBUG [11644]: Database connection successful -- 00:45:02.171 INFO [11644]: _SERVER found -- 00:45:02.171 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 00:45:02.171 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 00:45:02.171 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nle9pdpqvgaq3i5rlsr815jvrmdcdo8q -- 00:45:02.171 INFO [11644]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:45:02.171 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:45:02.183 INFO [11644]: COREGRADE is stopping... -- 00:45:02.183 DEBUG [11644]: Closing database connection -- 00:45:02.183 SQL [11644]: pgsql_close() -- 00:45:03.368 INFO [11644]: COREGRADE is starting... -- 00:45:03.368 INFO [11644]: Version from config: 1.0 -- 00:45:03.368 DEBUG [11644]: Connecting to database... -- 00:45:03.368 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:45:03.368 SQL [11644]: pgsql_db_connect() -- 00:45:03.372 DEBUG [11644]: Database connection successful -- 00:45:03.372 INFO [11644]: _SERVER found -- 00:45:03.372 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 00:45:03.372 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 00:45:03.372 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nle9pdpqvgaq3i5rlsr815jvrmdcdo8q -- 00:45:03.372 INFO [11644]: QUERY_STRING = /member/viewCardAddAction -- 00:45:03.372 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:45:03.404 INFO [11644]: COREGRADE is stopping... -- 00:45:03.404 DEBUG [11644]: Closing database connection -- 00:45:03.404 SQL [11644]: pgsql_close() -- 00:45:59.997 INFO [11638]: COREGRADE is starting... -- 00:45:59.997 INFO [11638]: Version from config: 1.0 -- 00:45:59.997 DEBUG [11638]: Connecting to database... -- 00:45:59.997 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:45:59.997 SQL [11638]: pgsql_db_connect() -- 00:46:00.002 DEBUG [11638]: Database connection successful -- 00:46:00.002 INFO [11638]: _SERVER found -- 00:46:00.002 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 00:46:00.002 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:00.002 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nle9pdpqvgaq3i5rlsr815jvrmdcdo8q -- 00:46:00.002 INFO [11638]: QUERY_STRING = /member/viewCardAddAction -- 00:46:00.002 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:00.036 INFO [11638]: COREGRADE is stopping... -- 00:46:00.036 DEBUG [11638]: Closing database connection -- 00:46:00.036 SQL [11638]: pgsql_close() -- 00:46:01.692 INFO [11638]: COREGRADE is starting... -- 00:46:01.693 INFO [11638]: Version from config: 1.0 -- 00:46:01.693 DEBUG [11638]: Connecting to database... -- 00:46:01.693 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:01.693 SQL [11638]: pgsql_db_connect() -- 00:46:01.697 DEBUG [11638]: Database connection successful -- 00:46:01.697 INFO [11638]: _SERVER found -- 00:46:01.697 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 00:46:01.697 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:01.697 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nle9pdpqvgaq3i5rlsr815jvrmdcdo8q -- 00:46:01.697 INFO [11638]: QUERY_STRING = /member/viewCardAddAction -- 00:46:01.697 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:01.727 INFO [11638]: COREGRADE is stopping... -- 00:46:01.727 DEBUG [11638]: Closing database connection -- 00:46:01.727 SQL [11638]: pgsql_close() -- 00:46:02.271 INFO [11638]: COREGRADE is starting... -- 00:46:02.271 INFO [11638]: Version from config: 1.0 -- 00:46:02.271 DEBUG [11638]: Connecting to database... -- 00:46:02.271 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:02.271 SQL [11638]: pgsql_db_connect() -- 00:46:02.276 DEBUG [11638]: Database connection successful -- 00:46:02.276 INFO [11638]: _SERVER found -- 00:46:02.276 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 00:46:02.276 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:02.276 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nle9pdpqvgaq3i5rlsr815jvrmdcdo8q -- 00:46:02.276 INFO [11638]: QUERY_STRING = /member/viewCardAddAction -- 00:46:02.276 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:02.306 INFO [11638]: COREGRADE is stopping... -- 00:46:02.306 DEBUG [11638]: Closing database connection -- 00:46:02.306 SQL [11638]: pgsql_close() -- 00:46:04.145 INFO [11638]: COREGRADE is starting... -- 00:46:04.145 INFO [11638]: Version from config: 1.0 -- 00:46:04.145 DEBUG [11638]: Connecting to database... -- 00:46:04.145 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:04.145 SQL [11638]: pgsql_db_connect() -- 00:46:04.149 DEBUG [11638]: Database connection successful -- 00:46:04.149 INFO [11638]: _SERVER found -- 00:46:04.149 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 00:46:04.149 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:04.149 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nle9pdpqvgaq3i5rlsr815jvrmdcdo8q -- 00:46:04.149 INFO [11638]: QUERY_STRING = /member/viewCardAddAction -- 00:46:04.149 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:04.180 INFO [11638]: COREGRADE is stopping... -- 00:46:04.180 DEBUG [11638]: Closing database connection -- 00:46:04.180 SQL [11638]: pgsql_close() -- 00:46:05.877 INFO [11638]: COREGRADE is starting... -- 00:46:05.877 INFO [11638]: Version from config: 1.0 -- 00:46:05.877 DEBUG [11638]: Connecting to database... -- 00:46:05.877 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:05.877 SQL [11638]: pgsql_db_connect() -- 00:46:05.882 DEBUG [11638]: Database connection successful -- 00:46:05.882 INFO [11638]: _SERVER found -- 00:46:05.882 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 00:46:05.882 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:05.882 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nle9pdpqvgaq3i5rlsr815jvrmdcdo8q -- 00:46:05.882 INFO [11638]: QUERY_STRING = /member/viewCardAddAction -- 00:46:05.882 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:05.912 INFO [11638]: COREGRADE is stopping... -- 00:46:05.912 DEBUG [11638]: Closing database connection -- 00:46:05.912 SQL [11638]: pgsql_close() -- 00:46:06.396 INFO [11638]: COREGRADE is starting... -- 00:46:06.396 INFO [11638]: Version from config: 1.0 -- 00:46:06.396 DEBUG [11638]: Connecting to database... -- 00:46:06.396 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:06.396 SQL [11638]: pgsql_db_connect() -- 00:46:06.400 DEBUG [11638]: Database connection successful -- 00:46:06.400 INFO [11638]: _SERVER found -- 00:46:06.400 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 00:46:06.400 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:06.400 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nle9pdpqvgaq3i5rlsr815jvrmdcdo8q -- 00:46:06.400 INFO [11638]: QUERY_STRING = /member/viewCardAddAction -- 00:46:06.400 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:06.430 INFO [11638]: COREGRADE is stopping... -- 00:46:06.430 DEBUG [11638]: Closing database connection -- 00:46:06.430 SQL [11638]: pgsql_close() -- 00:46:09.417 INFO [11638]: COREGRADE is starting... -- 00:46:09.417 INFO [11638]: Version from config: 1.0 -- 00:46:09.418 DEBUG [11638]: Connecting to database... -- 00:46:09.418 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:09.418 SQL [11638]: pgsql_db_connect() -- 00:46:09.422 DEBUG [11638]: Database connection successful -- 00:46:09.422 INFO [11638]: _SERVER found -- 00:46:09.422 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 00:46:09.422 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:09.422 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nle9pdpqvgaq3i5rlsr815jvrmdcdo8q -- 00:46:09.422 INFO [11638]: QUERY_STRING = /member/viewCardAddAction -- 00:46:09.422 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:09.452 INFO [11638]: COREGRADE is stopping... -- 00:46:09.452 DEBUG [11638]: Closing database connection -- 00:46:09.452 SQL [11638]: pgsql_close() -- 00:46:40.132 INFO [11650]: COREGRADE is starting... -- 00:46:40.132 INFO [11650]: Version from config: 1.0 -- 00:46:40.132 DEBUG [11650]: Connecting to database... -- 00:46:40.132 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:40.132 SQL [11650]: pgsql_db_connect() -- 00:46:40.136 DEBUG [11650]: Database connection successful -- 00:46:40.136 INFO [11650]: _SERVER found -- 00:46:40.136 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 00:46:40.136 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:40.136 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nle9pdpqvgaq3i5rlsr815jvrmdcdo8q -- 00:46:40.136 INFO [11650]: QUERY_STRING = /member/viewCardAddAction -- 00:46:40.136 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:40.167 INFO [11650]: COREGRADE is stopping... -- 00:46:40.168 DEBUG [11650]: Closing database connection -- 00:46:40.168 SQL [11650]: pgsql_close() -- 00:46:41.113 INFO [11650]: COREGRADE is starting... -- 00:46:41.113 INFO [11650]: Version from config: 1.0 -- 00:46:41.113 DEBUG [11650]: Connecting to database... -- 00:46:41.114 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:41.114 SQL [11650]: pgsql_db_connect() -- 00:46:41.118 DEBUG [11650]: Database connection successful -- 00:46:41.118 INFO [11650]: _SERVER found -- 00:46:41.118 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 00:46:41.118 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:41.118 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nle9pdpqvgaq3i5rlsr815jvrmdcdo8q -- 00:46:41.118 INFO [11650]: QUERY_STRING = /member/viewCardAddAction -- 00:46:41.118 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:41.148 INFO [11650]: COREGRADE is stopping... -- 00:46:41.148 DEBUG [11650]: Closing database connection -- 00:46:41.148 SQL [11650]: pgsql_close() -- 00:46:41.533 INFO [11650]: COREGRADE is starting... -- 00:46:41.533 INFO [11650]: Version from config: 1.0 -- 00:46:41.533 DEBUG [11650]: Connecting to database... -- 00:46:41.533 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:41.533 SQL [11650]: pgsql_db_connect() -- 00:46:41.538 DEBUG [11650]: Database connection successful -- 00:46:41.538 INFO [11650]: _SERVER found -- 00:46:41.538 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 00:46:41.538 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:41.538 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nle9pdpqvgaq3i5rlsr815jvrmdcdo8q -- 00:46:41.538 INFO [11650]: QUERY_STRING = /member/viewCardAddAction -- 00:46:41.538 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:41.568 INFO [11650]: COREGRADE is stopping... -- 00:46:41.568 DEBUG [11650]: Closing database connection -- 00:46:41.568 SQL [11650]: pgsql_close() -- 00:47:05.911 INFO [11636]: COREGRADE is starting... -- 00:47:05.911 INFO [11636]: Version from config: 1.0 -- 00:47:05.911 DEBUG [11636]: Connecting to database... -- 00:47:05.911 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:05.911 SQL [11636]: pgsql_db_connect() -- 00:47:05.915 DEBUG [11636]: Database connection successful -- 00:47:05.915 INFO [11636]: _SERVER found -- 00:47:05.915 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 00:47:05.915 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:05.915 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nle9pdpqvgaq3i5rlsr815jvrmdcdo8q -- 00:47:05.915 INFO [11636]: QUERY_STRING = /member/viewCardAddAction -- 00:47:05.915 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:05.947 INFO [11636]: COREGRADE is stopping... -- 00:47:05.947 DEBUG [11636]: Closing database connection -- 00:47:05.947 SQL [11636]: pgsql_close() -- 00:47:06.373 INFO [11636]: COREGRADE is starting... -- 00:47:06.374 INFO [11636]: Version from config: 1.0 -- 00:47:06.374 DEBUG [11636]: Connecting to database... -- 00:47:06.374 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:06.374 SQL [11636]: pgsql_db_connect() -- 00:47:06.378 DEBUG [11636]: Database connection successful -- 00:47:06.378 INFO [11636]: _SERVER found -- 00:47:06.378 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 00:47:06.378 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:06.378 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nle9pdpqvgaq3i5rlsr815jvrmdcdo8q -- 00:47:06.378 INFO [11636]: QUERY_STRING = /member/viewCardAddAction -- 00:47:06.378 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:06.408 INFO [11636]: COREGRADE is stopping... -- 00:47:06.408 DEBUG [11636]: Closing database connection -- 00:47:06.408 SQL [11636]: pgsql_close() -- 00:47:06.841 INFO [11636]: COREGRADE is starting... -- 00:47:06.841 INFO [11636]: Version from config: 1.0 -- 00:47:06.841 DEBUG [11636]: Connecting to database... -- 00:47:06.841 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:06.841 SQL [11636]: pgsql_db_connect() -- 00:47:06.846 DEBUG [11636]: Database connection successful -- 00:47:06.846 INFO [11636]: _SERVER found -- 00:47:06.846 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 00:47:06.846 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:06.846 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nle9pdpqvgaq3i5rlsr815jvrmdcdo8q -- 00:47:06.846 INFO [11636]: QUERY_STRING = /member/viewCardAddAction -- 00:47:06.846 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:06.876 INFO [11636]: COREGRADE is stopping... -- 00:47:06.876 DEBUG [11636]: Closing database connection -- 00:47:06.876 SQL [11636]: pgsql_close() -- 00:47:07.431 INFO [11636]: COREGRADE is starting... -- 00:47:07.431 INFO [11636]: Version from config: 1.0 -- 00:47:07.431 DEBUG [11636]: Connecting to database... -- 00:47:07.431 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:07.431 SQL [11636]: pgsql_db_connect() -- 00:47:07.435 DEBUG [11636]: Database connection successful -- 00:47:07.435 INFO [11636]: _SERVER found -- 00:47:07.435 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 00:47:07.435 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:07.435 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nle9pdpqvgaq3i5rlsr815jvrmdcdo8q -- 00:47:07.435 INFO [11636]: QUERY_STRING = /member/viewCardAddAction -- 00:47:07.435 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:07.466 INFO [11636]: COREGRADE is stopping... -- 00:47:07.466 DEBUG [11636]: Closing database connection -- 00:47:07.466 SQL [11636]: pgsql_close() -- 00:47:07.925 INFO [11636]: COREGRADE is starting... -- 00:47:07.926 INFO [11636]: Version from config: 1.0 -- 00:47:07.926 DEBUG [11636]: Connecting to database... -- 00:47:07.926 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:07.926 SQL [11636]: pgsql_db_connect() -- 00:47:07.930 DEBUG [11636]: Database connection successful -- 00:47:07.930 INFO [11636]: _SERVER found -- 00:47:07.930 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 00:47:07.930 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:07.930 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nle9pdpqvgaq3i5rlsr815jvrmdcdo8q -- 00:47:07.930 INFO [11636]: QUERY_STRING = /member/viewCardAddAction -- 00:47:07.930 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:07.961 INFO [11636]: COREGRADE is stopping... -- 00:47:07.961 DEBUG [11636]: Closing database connection -- 00:47:07.961 SQL [11636]: pgsql_close() -- 00:47:30.905 INFO [11639]: COREGRADE is starting... -- 00:47:30.906 INFO [11639]: Version from config: 1.0 -- 00:47:30.906 DEBUG [11639]: Connecting to database... -- 00:47:30.906 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:30.906 SQL [11639]: pgsql_db_connect() -- 00:47:30.910 DEBUG [11639]: Database connection successful -- 00:47:30.910 INFO [11639]: _SERVER found -- 00:47:30.910 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 00:47:30.910 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:30.910 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=1i5uj5m84h5v44ifho1s51u3vk17ehk0 -- 00:47:30.910 INFO [11639]: QUERY_STRING = /auth -- 00:47:30.910 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:30.943 INFO [11639]: COREGRADE is stopping... -- 00:47:30.943 DEBUG [11639]: Closing database connection -- 00:47:30.943 SQL [11639]: pgsql_close() -- 00:47:31.199 INFO [11639]: COREGRADE is starting... -- 00:47:31.199 INFO [11639]: Version from config: 1.0 -- 00:47:31.199 DEBUG [11639]: Connecting to database... -- 00:47:31.199 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:31.199 SQL [11639]: pgsql_db_connect() -- 00:47:31.203 DEBUG [11639]: Database connection successful -- 00:47:31.203 INFO [11639]: _SERVER found -- 00:47:31.203 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 00:47:31.203 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:31.204 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5937m95va6rq0dt1p7t3e6qus6lmdm6i -- 00:47:31.204 INFO [11639]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 00:47:31.204 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:31.219 INFO [11639]: COREGRADE is stopping... -- 00:47:31.220 DEBUG [11639]: Closing database connection -- 00:47:31.220 SQL [11639]: pgsql_close() -- 00:47:31.843 INFO [11639]: COREGRADE is starting... -- 00:47:31.844 INFO [11639]: Version from config: 1.0 -- 00:47:31.844 DEBUG [11639]: Connecting to database... -- 00:47:31.844 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:31.844 SQL [11639]: pgsql_db_connect() -- 00:47:31.848 DEBUG [11639]: Database connection successful -- 00:47:31.848 INFO [11639]: _SERVER found -- 00:47:31.848 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 00:47:31.848 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:31.848 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5937m95va6rq0dt1p7t3e6qus6lmdm6i -- 00:47:31.848 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:47:31.848 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:31.859 INFO [11639]: COREGRADE is stopping... -- 00:47:31.859 DEBUG [11639]: Closing database connection -- 00:47:31.859 SQL [11639]: pgsql_close() -- 00:47:41.592 INFO [11637]: COREGRADE is starting... -- 00:47:41.592 INFO [11637]: Version from config: 1.0 -- 00:47:41.592 DEBUG [11637]: Connecting to database... -- 00:47:41.592 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:41.592 SQL [11637]: pgsql_db_connect() -- 00:47:41.597 DEBUG [11637]: Database connection successful -- 00:47:41.597 INFO [11637]: _SERVER found -- 00:47:41.597 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 00:47:41.597 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:41.597 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nle9pdpqvgaq3i5rlsr815jvrmdcdo8q -- 00:47:41.597 INFO [11637]: QUERY_STRING = /member/page -- 00:47:41.597 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:41.633 INFO [11637]: COREGRADE is stopping... -- 00:47:41.633 DEBUG [11637]: Closing database connection -- 00:47:41.633 SQL [11637]: pgsql_close() -- 00:47:41.821 INFO [11637]: COREGRADE is starting... -- 00:47:41.821 INFO [11637]: Version from config: 1.0 -- 00:47:41.821 DEBUG [11637]: Connecting to database... -- 00:47:41.821 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:41.821 SQL [11637]: pgsql_db_connect() -- 00:47:41.826 DEBUG [11637]: Database connection successful -- 00:47:41.826 INFO [11637]: _SERVER found -- 00:47:41.826 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 00:47:41.826 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:41.826 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nle9pdpqvgaq3i5rlsr815jvrmdcdo8q -- 00:47:41.826 INFO [11637]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:47:41.826 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:41.836 INFO [11637]: COREGRADE is stopping... -- 00:47:41.837 DEBUG [11637]: Closing database connection -- 00:47:41.837 SQL [11637]: pgsql_close() -- 00:47:41.839 INFO [12763]: COREGRADE is starting... -- 00:47:41.839 INFO [12763]: Version from config: 1.0 -- 00:47:41.839 DEBUG [12763]: Connecting to database... -- 00:47:41.839 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:41.839 SQL [12763]: pgsql_db_connect() -- 00:47:41.843 DEBUG [12763]: Database connection successful -- 00:47:41.843 INFO [12763]: _SERVER found -- 00:47:41.843 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 00:47:41.843 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:41.843 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nle9pdpqvgaq3i5rlsr815jvrmdcdo8q -- 00:47:41.843 INFO [12763]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:47:41.843 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:41.854 INFO [12763]: COREGRADE is stopping... -- 00:47:41.854 DEBUG [12763]: Closing database connection -- 00:47:41.854 SQL [12763]: pgsql_close() -- 00:47:44.456 INFO [12763]: COREGRADE is starting... -- 00:47:44.457 INFO [12763]: Version from config: 1.0 -- 00:47:44.457 DEBUG [12763]: Connecting to database... -- 00:47:44.457 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:44.457 SQL [12763]: pgsql_db_connect() -- 00:47:44.461 DEBUG [12763]: Database connection successful -- 00:47:44.461 INFO [12763]: _SERVER found -- 00:47:44.461 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 00:47:44.461 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:44.461 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nle9pdpqvgaq3i5rlsr815jvrmdcdo8q -- 00:47:44.461 INFO [12763]: QUERY_STRING = /member/viewCardAddAction -- 00:47:44.461 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:44.492 INFO [12763]: COREGRADE is stopping... -- 00:47:44.492 DEBUG [12763]: Closing database connection -- 00:47:44.492 SQL [12763]: pgsql_close() -- 00:50:10.131 INFO [12761]: COREGRADE is starting... -- 00:50:10.132 INFO [12761]: Version from config: 1.0 -- 00:50:10.132 DEBUG [12761]: Connecting to database... -- 00:50:10.132 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:50:10.132 SQL [12761]: pgsql_db_connect() -- 00:50:10.136 DEBUG [12761]: Database connection successful -- 00:50:10.136 INFO [12761]: _SERVER found -- 00:50:10.136 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 00:50:10.136 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 00:50:10.136 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5937m95va6rq0dt1p7t3e6qus6lmdm6i -- 00:50:10.136 INFO [12761]: QUERY_STRING = /auth -- 00:50:10.136 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:50:10.169 INFO [12761]: COREGRADE is stopping... -- 00:50:10.169 DEBUG [12761]: Closing database connection -- 00:50:10.169 SQL [12761]: pgsql_close() -- 00:50:10.846 INFO [12761]: COREGRADE is starting... -- 00:50:10.846 INFO [12761]: Version from config: 1.0 -- 00:50:10.846 DEBUG [12761]: Connecting to database... -- 00:50:10.846 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:50:10.846 SQL [12761]: pgsql_db_connect() -- 00:50:10.850 DEBUG [12761]: Database connection successful -- 00:50:10.850 INFO [12761]: _SERVER found -- 00:50:10.850 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 00:50:10.850 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 00:50:10.850 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5937m95va6rq0dt1p7t3e6qus6lmdm6i -- 00:50:10.850 INFO [12761]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:50:10.850 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:50:10.861 INFO [12761]: COREGRADE is stopping... -- 00:50:10.862 DEBUG [12761]: Closing database connection -- 00:50:10.862 SQL [12761]: pgsql_close() -- 00:51:13.807 INFO [11652]: COREGRADE is starting... -- 00:51:13.807 INFO [11652]: Version from config: 1.0 -- 00:51:13.808 DEBUG [11652]: Connecting to database... -- 00:51:13.808 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:51:13.808 SQL [11652]: pgsql_db_connect() -- 00:51:13.844 INFO [11652]: COREGRADE is starting... -- 00:51:13.844 INFO [11652]: Version from config: 1.0 -- 00:51:13.844 DEBUG [11652]: Connecting to database... -- 00:51:13.844 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:51:13.844 SQL [11652]: pgsql_db_connect() -- 00:51:13.848 DEBUG [11652]: Database connection successful -- 00:51:13.848 INFO [11652]: _SERVER found -- 00:51:13.848 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 00:51:13.848 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 00:51:13.848 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5937m95va6rq0dt1p7t3e6qus6lmdm6i -- 00:51:13.848 INFO [11652]: QUERY_STRING = -- 00:51:13.848 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:51:13.848 INFO [11652]: SystemStatus()09-09-********~************ -- 00:51:13.848 INFO [11652]: long coregrade_api_main(CVars in, CVars &out) -- 00:51:13.848 INFO [11652]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 00:51:13.848 INFO [11652]: account calls -- 00:51:13.848 INFO [11652]: account_calls() -- 00:51:13.848 INFO [11652]: LoginCoreGradeAccount() -- 00:51:13.848 FLOG_MAX [11652]: REQ_STRING(username) -- 00:51:13.849 FLOG_MAX [11652]: REQ_STRING(password) -- 00:51:13.849 FLOG_MAX [11652]: REQ_STRING(sessionid) -- 00:51:13.849 FLOG_MAX [11652]: long load_db_record( CVars &rec, const char * query, ... ) -- 00:51:13.849 SQL [11652]: pgsql_query() -- 00:51:13.849 SQL [11652]: About to run query: -- 00:51:13.849 SQL [11652]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 00:51:13.852 SQL [11652]: Found rows: 1 -- 00:51:13.852 FLOG_MAX [11652]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=15 -- 00:51:13.852 INFO [11652]: long SessionCheck(long uid, const char *sessionid, int create ) -- 00:51:13.852 SQL [11652]: pgsql_exec() -- 00:51:13.852 SQL [11652]: About to run query: -- 00:51:13.852 SQL [11652]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 00:51:13.853 SQL [11652]: PQcmdTuples: 0 -- 00:51:13.853 SQL [11652]: Affected rows: 0 -- 00:51:13.853 SQL [11652]: pgsql_exec() -- 00:51:13.853 SQL [11652]: About to run query: -- 00:51:13.853 SQL [11652]: DELETE FROM members_session WHERE member_id=7 -- 00:51:13.854 SQL [11652]: PQcmdTuples: 1 -- 00:51:13.854 SQL [11652]: Affected rows: 1 -- 00:51:13.854 SQL [11652]: pgsql_query() -- 00:51:13.854 SQL [11652]: About to run query: -- 00:51:13.854 SQL [11652]: SELECT * FROM members_session WHERE member_id=7 AND session<>'2CB77C788211706FA193202792411DC6' -- 00:51:13.854 SQL [11652]: Found rows: 0 -- 00:51:13.854 SQL [11652]: Found rows: 0 -- 00:51:13.855 FLOG_MAX [11652]: long load_db_record( CVars &rec, const char * query, ... ) -- 00:51:13.855 SQL [11652]: pgsql_query() -- 00:51:13.855 SQL [11652]: About to run query: -- 00:51:13.855 SQL [11652]: SELECT * FROM members_session WHERE member_id=7 AND session='2CB77C788211706FA193202792411DC6' -- 00:51:13.855 SQL [11652]: Found rows: 0 -- 00:51:13.855 SQL [11652]: Found rows: 0 -- 00:51:13.855 FLOG_MAX [11652]: insert_db_record() -- 00:51:13.855 SQL [11652]: pgsql_exec() -- 00:51:13.855 SQL [11652]: About to run query: -- 00:51:13.855 SQL [11652]: INSERT INTO members_session (member_id,session) VALUES ('7','2CB77C788211706FA193202792411DC6') -- 00:51:13.857 SQL [11652]: PQcmdTuples: 1 -- 00:51:13.857 SQL [11652]: Affected rows: 1 -- 00:51:13.857 FLOG_MAX [11652]: SELECT currval('members_session_id_seq') -- 00:51:13.857 SQL [11652]: pgsql_query() -- 00:51:13.857 SQL [11652]: About to run query: -- 00:51:13.857 SQL [11652]: SELECT currval('members_session_id_seq') -- 00:51:13.857 SQL [11652]: Found rows: 1 -- 00:51:13.857 INFO [11652]: CreateDefaultPage() -- 00:51:13.857 FLOG_MAX [11652]: long load_db_record( CVars &rec, const char * query, ... ) -- 00:51:13.857 SQL [11652]: pgsql_query() -- 00:51:13.857 SQL [11652]: About to run query: -- 00:51:13.857 SQL [11652]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 00:51:13.857 SQL [11652]: Found rows: 1 -- 00:51:13.857 FLOG_MAX [11652]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 00:51:13.857 SQL [11652]: pgsql_query() -- 00:51:13.857 SQL [11652]: About to run query: -- 00:51:13.857 SQL [11652]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 00:51:13.858 SQL [11652]: Found rows: 1 -- 00:51:13.858 INFO [11652]: /CreateDefaultPage() -- 00:51:13.858 INFO [11652]: /LoginCoreGradeAccount() -- 00:51:13.858 INFO [11652]: RET: added=2020-02-05 09:42:12.816064 -- 00:51:13.858 INFO [11652]: RET: email=tokslaw@chiefsoft.com -- 00:51:13.858 INFO [11652]: RET: firstname=Tokunbo -- 00:51:13.858 INFO [11652]: RET: id=7 -- 00:51:13.858 INFO [11652]: RET: last_login= -- 00:51:13.858 INFO [11652]: RET: lastname=Lawal -- 00:51:13.858 INFO [11652]: RET: loc=192.168.1.13 -- 00:51:13.858 INFO [11652]: RET: member_id=7 -- 00:51:13.858 INFO [11652]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 00:51:13.858 INFO [11652]: RET: phone= -- 00:51:13.858 INFO [11652]: RET: pid= -- 00:51:13.858 INFO [11652]: RET: result=YES I GET TO BACK END -- 00:51:13.858 INFO [11652]: RET: sessionid=2CB77C788211706FA193202792411DC6 -- 00:51:13.858 INFO [11652]: RET: status=1 -- 00:51:13.858 INFO [11652]: RET: stauts=OK -- 00:51:13.858 INFO [11652]: RET: username=tokslaw@chiefsoft.com -- 00:51:13.858 INFO [11652]: RET: verified= -- 00:51:13.859 INFO [11652]: COREGRADE is stopping... -- 00:51:13.859 DEBUG [11652]: Closing database connection -- 00:51:13.859 SQL [11652]: pgsql_close() -- 00:51:13.812 DEBUG [11652]: Database connection successful -- 00:51:13.812 INFO [11652]: _SERVER found -- 00:51:13.812 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 00:51:13.812 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 00:51:13.812 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5937m95va6rq0dt1p7t3e6qus6lmdm6i -- 00:51:13.812 INFO [11652]: QUERY_STRING = /auth -- 00:51:13.812 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:51:13.860 INFO [11652]: COREGRADE is stopping... -- 00:51:13.860 DEBUG [11652]: Closing database connection -- 00:51:13.860 SQL [11652]: pgsql_close() -- 00:51:13.881 INFO [11652]: COREGRADE is starting... -- 00:51:13.881 INFO [11652]: Version from config: 1.0 -- 00:51:13.881 DEBUG [11652]: Connecting to database... -- 00:51:13.881 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:51:13.881 SQL [11652]: pgsql_db_connect() -- 00:51:13.885 DEBUG [11652]: Database connection successful -- 00:51:13.885 INFO [11652]: _SERVER found -- 00:51:13.885 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 00:51:13.885 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 00:51:13.885 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5937m95va6rq0dt1p7t3e6qus6lmdm6i -- 00:51:13.885 INFO [11652]: QUERY_STRING = /member/index -- 00:51:13.885 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:51:13.919 INFO [11652]: COREGRADE is stopping... -- 00:51:13.920 DEBUG [11652]: Closing database connection -- 00:51:13.920 SQL [11652]: pgsql_close() -- 00:51:14.166 INFO [11652]: COREGRADE is starting... -- 00:51:14.167 INFO [11652]: Version from config: 1.0 -- 00:51:14.167 DEBUG [11652]: Connecting to database... -- 00:51:14.167 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:51:14.167 SQL [11652]: pgsql_db_connect() -- 00:51:14.171 DEBUG [11652]: Database connection successful -- 00:51:14.171 INFO [11652]: _SERVER found -- 00:51:14.171 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 00:51:14.171 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 00:51:14.171 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5937m95va6rq0dt1p7t3e6qus6lmdm6i -- 00:51:14.171 INFO [11652]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:51:14.171 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:51:14.182 INFO [11652]: COREGRADE is stopping... -- 00:51:14.182 DEBUG [11652]: Closing database connection -- 00:51:14.182 SQL [11652]: pgsql_close() -- 00:51:14.185 INFO [12764]: COREGRADE is starting... -- 00:51:14.185 INFO [12764]: Version from config: 1.0 -- 00:51:14.185 DEBUG [12764]: Connecting to database... -- 00:51:14.185 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:51:14.185 SQL [12764]: pgsql_db_connect() -- 00:51:14.189 DEBUG [12764]: Database connection successful -- 00:51:14.189 INFO [12764]: _SERVER found -- 00:51:14.189 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 00:51:14.189 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 00:51:14.189 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5937m95va6rq0dt1p7t3e6qus6lmdm6i -- 00:51:14.189 INFO [12764]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:51:14.189 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:51:14.201 INFO [12764]: COREGRADE is stopping... -- 00:51:14.201 DEBUG [12764]: Closing database connection -- 00:51:14.201 SQL [12764]: pgsql_close() -- 00:51:16.017 INFO [12764]: COREGRADE is starting... -- 00:51:16.018 INFO [12764]: Version from config: 1.0 -- 00:51:16.018 DEBUG [12764]: Connecting to database... -- 00:51:16.018 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:51:16.018 SQL [12764]: pgsql_db_connect() -- 00:51:16.022 DEBUG [12764]: Database connection successful -- 00:51:16.022 INFO [12764]: _SERVER found -- 00:51:16.022 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 00:51:16.022 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 00:51:16.022 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5937m95va6rq0dt1p7t3e6qus6lmdm6i -- 00:51:16.022 INFO [12764]: QUERY_STRING = /member/page -- 00:51:16.022 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:51:16.058 INFO [12764]: COREGRADE is stopping... -- 00:51:16.058 DEBUG [12764]: Closing database connection -- 00:51:16.058 SQL [12764]: pgsql_close() -- 00:51:16.214 INFO [12764]: COREGRADE is starting... -- 00:51:16.214 INFO [12764]: Version from config: 1.0 -- 00:51:16.214 DEBUG [12764]: Connecting to database... -- 00:51:16.214 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:51:16.214 SQL [12764]: pgsql_db_connect() -- 00:51:16.218 DEBUG [12764]: Database connection successful -- 00:51:16.218 INFO [12764]: _SERVER found -- 00:51:16.218 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 00:51:16.218 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 00:51:16.218 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5937m95va6rq0dt1p7t3e6qus6lmdm6i -- 00:51:16.218 INFO [12764]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:51:16.218 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:51:16.229 INFO [12764]: COREGRADE is stopping... -- 00:51:16.229 DEBUG [12764]: Closing database connection -- 00:51:16.229 SQL [12764]: pgsql_close() -- 00:51:17.985 INFO [12764]: COREGRADE is starting... -- 00:51:17.985 INFO [12764]: Version from config: 1.0 -- 00:51:17.985 DEBUG [12764]: Connecting to database... -- 00:51:17.985 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:51:17.985 SQL [12764]: pgsql_db_connect() -- 00:51:17.989 DEBUG [12764]: Database connection successful -- 00:51:17.989 INFO [12764]: _SERVER found -- 00:51:17.989 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 00:51:17.989 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 00:51:17.989 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5937m95va6rq0dt1p7t3e6qus6lmdm6i -- 00:51:17.989 INFO [12764]: QUERY_STRING = /member/viewCardAddAction -- 00:51:17.989 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:51:18.019 INFO [12764]: COREGRADE is stopping... -- 00:51:18.019 DEBUG [12764]: Closing database connection -- 00:51:18.019 SQL [12764]: pgsql_close() -- 00:51:19.253 INFO [12764]: COREGRADE is starting... -- 00:51:19.253 INFO [12764]: Version from config: 1.0 -- 00:51:19.253 DEBUG [12764]: Connecting to database... -- 00:51:19.253 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:51:19.253 SQL [12764]: pgsql_db_connect() -- 00:51:19.257 DEBUG [12764]: Database connection successful -- 00:51:19.257 INFO [12764]: _SERVER found -- 00:51:19.257 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 00:51:19.257 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 00:51:19.257 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5937m95va6rq0dt1p7t3e6qus6lmdm6i -- 00:51:19.257 INFO [12764]: QUERY_STRING = /member/viewCardAddAction -- 00:51:19.257 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:51:19.287 INFO [12764]: COREGRADE is stopping... -- 00:51:19.287 DEBUG [12764]: Closing database connection -- 00:51:19.287 SQL [12764]: pgsql_close() -- 00:51:20.181 INFO [12764]: COREGRADE is starting... -- 00:51:20.181 INFO [12764]: Version from config: 1.0 -- 00:51:20.181 DEBUG [12764]: Connecting to database... -- 00:51:20.181 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:51:20.181 SQL [12764]: pgsql_db_connect() -- 00:51:20.185 DEBUG [12764]: Database connection successful -- 00:51:20.186 INFO [12764]: _SERVER found -- 00:51:20.186 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 00:51:20.186 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 00:51:20.186 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5937m95va6rq0dt1p7t3e6qus6lmdm6i -- 00:51:20.186 INFO [12764]: QUERY_STRING = /member/viewCardAddAction -- 00:51:20.186 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:51:20.216 INFO [12764]: COREGRADE is stopping... -- 00:51:20.216 DEBUG [12764]: Closing database connection -- 00:51:20.216 SQL [12764]: pgsql_close() -- 00:51:20.795 INFO [12764]: COREGRADE is starting... -- 00:51:20.795 INFO [12764]: Version from config: 1.0 -- 00:51:20.795 DEBUG [12764]: Connecting to database... -- 00:51:20.795 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:51:20.795 SQL [12764]: pgsql_db_connect() -- 00:51:20.799 DEBUG [12764]: Database connection successful -- 00:51:20.799 INFO [12764]: _SERVER found -- 00:51:20.799 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 00:51:20.799 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 00:51:20.799 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5937m95va6rq0dt1p7t3e6qus6lmdm6i -- 00:51:20.799 INFO [12764]: QUERY_STRING = /member/viewCardAddAction -- 00:51:20.799 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:51:20.829 INFO [12764]: COREGRADE is stopping... -- 00:51:20.829 DEBUG [12764]: Closing database connection -- 00:51:20.829 SQL [12764]: pgsql_close() -- 00:51:22.164 INFO [12764]: COREGRADE is starting... -- 00:51:22.165 INFO [12764]: Version from config: 1.0 -- 00:51:22.165 DEBUG [12764]: Connecting to database... -- 00:51:22.165 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:51:22.165 SQL [12764]: pgsql_db_connect() -- 00:51:22.169 DEBUG [12764]: Database connection successful -- 00:51:22.169 INFO [12764]: _SERVER found -- 00:51:22.169 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 00:51:22.169 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 00:51:22.169 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5937m95va6rq0dt1p7t3e6qus6lmdm6i -- 00:51:22.169 INFO [12764]: QUERY_STRING = /member/viewCardAddAction -- 00:51:22.169 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:51:22.199 INFO [12764]: COREGRADE is stopping... -- 00:51:22.199 DEBUG [12764]: Closing database connection -- 00:51:22.199 SQL [12764]: pgsql_close() -- 00:51:22.938 INFO [12764]: COREGRADE is starting... -- 00:51:22.938 INFO [12764]: Version from config: 1.0 -- 00:51:22.938 DEBUG [12764]: Connecting to database... -- 00:51:22.938 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:51:22.938 SQL [12764]: pgsql_db_connect() -- 00:51:22.942 DEBUG [12764]: Database connection successful -- 00:51:22.942 INFO [12764]: _SERVER found -- 00:51:22.942 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 00:51:22.942 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 00:51:22.942 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5937m95va6rq0dt1p7t3e6qus6lmdm6i -- 00:51:22.942 INFO [12764]: QUERY_STRING = /member/viewCardAddAction -- 00:51:22.942 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:51:22.972 INFO [12764]: COREGRADE is stopping... -- 00:51:22.972 DEBUG [12764]: Closing database connection -- 00:51:22.972 SQL [12764]: pgsql_close() -- 00:51:23.662 INFO [12764]: COREGRADE is starting... -- 00:51:23.662 INFO [12764]: Version from config: 1.0 -- 00:51:23.662 DEBUG [12764]: Connecting to database... -- 00:51:23.662 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:51:23.662 SQL [12764]: pgsql_db_connect() -- 00:51:23.666 DEBUG [12764]: Database connection successful -- 00:51:23.666 INFO [12764]: _SERVER found -- 00:51:23.666 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 00:51:23.666 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 00:51:23.666 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5937m95va6rq0dt1p7t3e6qus6lmdm6i -- 00:51:23.666 INFO [12764]: QUERY_STRING = /member/viewCardAddAction -- 00:51:23.666 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:51:23.697 INFO [12764]: COREGRADE is stopping... -- 00:51:23.697 DEBUG [12764]: Closing database connection -- 00:51:23.697 SQL [12764]: pgsql_close() -- 00:51:24.212 INFO [12764]: COREGRADE is starting... -- 00:51:24.212 INFO [12764]: Version from config: 1.0 -- 00:51:24.212 DEBUG [12764]: Connecting to database... -- 00:51:24.213 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:51:24.213 SQL [12764]: pgsql_db_connect() -- 00:51:24.217 DEBUG [12764]: Database connection successful -- 00:51:24.217 INFO [12764]: _SERVER found -- 00:51:24.217 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 00:51:24.217 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 00:51:24.217 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5937m95va6rq0dt1p7t3e6qus6lmdm6i -- 00:51:24.217 INFO [12764]: QUERY_STRING = /member/viewCardAddAction -- 00:51:24.217 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:51:24.247 INFO [12764]: COREGRADE is stopping... -- 00:51:24.247 DEBUG [12764]: Closing database connection -- 00:51:24.247 SQL [12764]: pgsql_close() -- 00:51:24.898 INFO [12764]: COREGRADE is starting... -- 00:51:24.898 INFO [12764]: Version from config: 1.0 -- 00:51:24.898 DEBUG [12764]: Connecting to database... -- 00:51:24.898 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:51:24.898 SQL [12764]: pgsql_db_connect() -- 00:51:24.902 DEBUG [12764]: Database connection successful -- 00:51:24.902 INFO [12764]: _SERVER found -- 00:51:24.902 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 00:51:24.902 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 00:51:24.902 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5937m95va6rq0dt1p7t3e6qus6lmdm6i -- 00:51:24.902 INFO [12764]: QUERY_STRING = /member/viewCardAddAction -- 00:51:24.902 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:51:24.933 INFO [12764]: COREGRADE is stopping... -- 00:51:24.933 DEBUG [12764]: Closing database connection -- 00:51:24.933 SQL [12764]: pgsql_close() -- 00:51:26.497 INFO [12764]: COREGRADE is starting... -- 00:51:26.497 INFO [12764]: Version from config: 1.0 -- 00:51:26.497 DEBUG [12764]: Connecting to database... -- 00:51:26.497 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:51:26.497 SQL [12764]: pgsql_db_connect() -- 00:51:26.501 DEBUG [12764]: Database connection successful -- 00:51:26.501 INFO [12764]: _SERVER found -- 00:51:26.501 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 00:51:26.501 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 00:51:26.501 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5937m95va6rq0dt1p7t3e6qus6lmdm6i -- 00:51:26.501 INFO [12764]: QUERY_STRING = /member/viewCardAddAction -- 00:51:26.501 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:51:26.532 INFO [12764]: COREGRADE is stopping... -- 00:51:26.532 DEBUG [12764]: Closing database connection -- 00:51:26.532 SQL [12764]: pgsql_close() -- 00:52:20.184 INFO [11644]: COREGRADE is starting... -- 00:52:20.184 INFO [11644]: Version from config: 1.0 -- 00:52:20.184 DEBUG [11644]: Connecting to database... -- 00:52:20.184 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:52:20.184 SQL [11644]: pgsql_db_connect() -- 00:52:20.188 DEBUG [11644]: Database connection successful -- 00:52:20.188 INFO [11644]: _SERVER found -- 00:52:20.188 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 00:52:20.188 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 00:52:20.188 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5937m95va6rq0dt1p7t3e6qus6lmdm6i -- 00:52:20.188 INFO [11644]: QUERY_STRING = /member -- 00:52:20.188 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:52:20.224 INFO [11644]: COREGRADE is stopping... -- 00:52:20.224 DEBUG [11644]: Closing database connection -- 00:52:20.224 SQL [11644]: pgsql_close() -- 00:52:20.464 INFO [11644]: COREGRADE is starting... -- 00:52:20.464 INFO [11644]: Version from config: 1.0 -- 00:52:20.464 DEBUG [11644]: Connecting to database... -- 00:52:20.464 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:52:20.464 SQL [11644]: pgsql_db_connect() -- 00:52:20.468 DEBUG [11644]: Database connection successful -- 00:52:20.468 INFO [11644]: _SERVER found -- 00:52:20.468 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 00:52:20.468 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 00:52:20.468 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5937m95va6rq0dt1p7t3e6qus6lmdm6i -- 00:52:20.468 INFO [11644]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:52:20.468 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:52:20.479 INFO [11644]: COREGRADE is stopping... -- 00:52:20.479 DEBUG [11644]: Closing database connection -- 00:52:20.479 SQL [11644]: pgsql_close() -- 00:52:21.058 INFO [11644]: COREGRADE is starting... -- 00:52:21.058 INFO [11644]: Version from config: 1.0 -- 00:52:21.058 DEBUG [11644]: Connecting to database... -- 00:52:21.058 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:52:21.058 SQL [11644]: pgsql_db_connect() -- 00:52:21.062 DEBUG [11644]: Database connection successful -- 00:52:21.062 INFO [11644]: _SERVER found -- 00:52:21.062 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 00:52:21.062 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 00:52:21.062 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5937m95va6rq0dt1p7t3e6qus6lmdm6i -- 00:52:21.062 INFO [11644]: QUERY_STRING = /member/page -- 00:52:21.062 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:52:21.098 INFO [11644]: COREGRADE is stopping... -- 00:52:21.098 DEBUG [11644]: Closing database connection -- 00:52:21.098 SQL [11644]: pgsql_close() -- 00:52:21.240 INFO [11644]: COREGRADE is starting... -- 00:52:21.240 INFO [11644]: Version from config: 1.0 -- 00:52:21.240 DEBUG [11644]: Connecting to database... -- 00:52:21.240 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:52:21.240 SQL [11644]: pgsql_db_connect() -- 00:52:21.244 DEBUG [11644]: Database connection successful -- 00:52:21.244 INFO [11644]: _SERVER found -- 00:52:21.244 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 00:52:21.244 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 00:52:21.244 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5937m95va6rq0dt1p7t3e6qus6lmdm6i -- 00:52:21.244 INFO [11644]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:52:21.244 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:52:21.255 INFO [11644]: COREGRADE is stopping... -- 00:52:21.255 DEBUG [11644]: Closing database connection -- 00:52:21.255 SQL [11644]: pgsql_close() -- 00:52:22.975 INFO [11644]: COREGRADE is starting... -- 00:52:22.975 INFO [11644]: Version from config: 1.0 -- 00:52:22.975 DEBUG [11644]: Connecting to database... -- 00:52:22.976 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:52:22.976 SQL [11644]: pgsql_db_connect() -- 00:52:22.980 DEBUG [11644]: Database connection successful -- 00:52:22.980 INFO [11644]: _SERVER found -- 00:52:22.980 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 00:52:22.980 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 00:52:22.980 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5937m95va6rq0dt1p7t3e6qus6lmdm6i -- 00:52:22.980 INFO [11644]: QUERY_STRING = /member/viewCardAddAction -- 00:52:22.980 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:52:23.010 INFO [11644]: COREGRADE is stopping... -- 00:52:23.010 DEBUG [11644]: Closing database connection -- 00:52:23.010 SQL [11644]: pgsql_close() -- 00:52:47.813 INFO [11638]: COREGRADE is starting... -- 00:52:47.813 INFO [11638]: Version from config: 1.0 -- 00:52:47.813 DEBUG [11638]: Connecting to database... -- 00:52:47.813 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:52:47.813 SQL [11638]: pgsql_db_connect() -- 00:52:47.818 DEBUG [11638]: Database connection successful -- 00:52:47.818 INFO [11638]: _SERVER found -- 00:52:47.818 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 00:52:47.818 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 00:52:47.818 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5937m95va6rq0dt1p7t3e6qus6lmdm6i -- 00:52:47.818 INFO [11638]: QUERY_STRING = /member/viewCardAddAction -- 00:52:47.818 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:52:47.850 INFO [11638]: COREGRADE is stopping... -- 00:52:47.850 DEBUG [11638]: Closing database connection -- 00:52:47.850 SQL [11638]: pgsql_close() -- 00:57:50.984 INFO [11650]: COREGRADE is starting... -- 00:57:50.984 INFO [11650]: Version from config: 1.0 -- 00:57:50.984 DEBUG [11650]: Connecting to database... -- 00:57:50.985 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:57:50.985 SQL [11650]: pgsql_db_connect() -- 00:57:50.989 DEBUG [11650]: Database connection successful -- 00:57:50.989 INFO [11650]: _SERVER found -- 00:57:50.989 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 00:57:50.989 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 00:57:50.989 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nle9pdpqvgaq3i5rlsr815jvrmdcdo8q -- 00:57:50.989 INFO [11650]: QUERY_STRING = /member/viewCardAddAction -- 00:57:50.989 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:57:51.021 INFO [11650]: COREGRADE is stopping... -- 00:57:51.021 DEBUG [11650]: Closing database connection -- 00:57:51.021 SQL [11650]: pgsql_close() -- 00:57:53.160 INFO [11650]: COREGRADE is starting... -- 00:57:53.160 INFO [11650]: Version from config: 1.0 -- 00:57:53.160 DEBUG [11650]: Connecting to database... -- 00:57:53.160 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:57:53.160 SQL [11650]: pgsql_db_connect() -- 00:57:53.164 DEBUG [11650]: Database connection successful -- 00:57:53.164 INFO [11650]: _SERVER found -- 00:57:53.164 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 00:57:53.164 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 00:57:53.164 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nle9pdpqvgaq3i5rlsr815jvrmdcdo8q -- 00:57:53.164 INFO [11650]: QUERY_STRING = /member/viewCardAddAction -- 00:57:53.164 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:57:53.194 INFO [11650]: COREGRADE is stopping... -- 00:57:53.194 DEBUG [11650]: Closing database connection -- 00:57:53.194 SQL [11650]: pgsql_close() -- 00:57:54.810 INFO [11650]: COREGRADE is starting... -- 00:57:54.810 INFO [11650]: Version from config: 1.0 -- 00:57:54.810 DEBUG [11650]: Connecting to database... -- 00:57:54.810 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:57:54.810 SQL [11650]: pgsql_db_connect() -- 00:57:54.814 DEBUG [11650]: Database connection successful -- 00:57:54.814 INFO [11650]: _SERVER found -- 00:57:54.814 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 00:57:54.814 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 00:57:54.814 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nle9pdpqvgaq3i5rlsr815jvrmdcdo8q -- 00:57:54.814 INFO [11650]: QUERY_STRING = /member/viewCardAddAction -- 00:57:54.814 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:57:54.844 INFO [11650]: COREGRADE is stopping... -- 00:57:54.844 DEBUG [11650]: Closing database connection -- 00:57:54.845 SQL [11650]: pgsql_close() -- 00:57:57.450 INFO [11650]: COREGRADE is starting... -- 00:57:57.450 INFO [11650]: Version from config: 1.0 -- 00:57:57.450 DEBUG [11650]: Connecting to database... -- 00:57:57.450 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:57:57.450 SQL [11650]: pgsql_db_connect() -- 00:57:57.454 DEBUG [11650]: Database connection successful -- 00:57:57.454 INFO [11650]: _SERVER found -- 00:57:57.454 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 00:57:57.454 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 00:57:57.454 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nle9pdpqvgaq3i5rlsr815jvrmdcdo8q -- 00:57:57.454 INFO [11650]: QUERY_STRING = /member/viewCardAddAction -- 00:57:57.454 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:57:57.485 INFO [11650]: COREGRADE is stopping... -- 00:57:57.485 DEBUG [11650]: Closing database connection -- 00:57:57.485 SQL [11650]: pgsql_close() -- 01:01:36.384 INFO [11636]: COREGRADE is starting... -- 01:01:36.385 INFO [11636]: Version from config: 1.0 -- 01:01:36.385 DEBUG [11636]: Connecting to database... -- 01:01:36.385 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:01:36.385 SQL [11636]: pgsql_db_connect() -- 01:01:36.421 INFO [11636]: COREGRADE is starting... -- 01:01:36.421 INFO [11636]: Version from config: 1.0 -- 01:01:36.421 DEBUG [11636]: Connecting to database... -- 01:01:36.421 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:01:36.421 SQL [11636]: pgsql_db_connect() -- 01:01:36.425 DEBUG [11636]: Database connection successful -- 01:01:36.425 INFO [11636]: _SERVER found -- 01:01:36.425 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 01:01:36.425 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 01:01:36.425 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5937m95va6rq0dt1p7t3e6qus6lmdm6i -- 01:01:36.425 INFO [11636]: QUERY_STRING = -- 01:01:36.425 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:01:36.425 INFO [11636]: SystemStatus()09-09-********~************ -- 01:01:36.425 INFO [11636]: long coregrade_api_main(CVars in, CVars &out) -- 01:01:36.425 INFO [11636]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 01:01:36.425 INFO [11636]: account calls -- 01:01:36.425 INFO [11636]: account_calls() -- 01:01:36.425 INFO [11636]: LoginCoreGradeAccount() -- 01:01:36.425 FLOG_MAX [11636]: REQ_STRING(username) -- 01:01:36.425 FLOG_MAX [11636]: REQ_STRING(password) -- 01:01:36.425 FLOG_MAX [11636]: REQ_STRING(sessionid) -- 01:01:36.425 FLOG_MAX [11636]: long load_db_record( CVars &rec, const char * query, ... ) -- 01:01:36.425 SQL [11636]: pgsql_query() -- 01:01:36.425 SQL [11636]: About to run query: -- 01:01:36.426 SQL [11636]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 01:01:36.429 SQL [11636]: Found rows: 1 -- 01:01:36.429 FLOG_MAX [11636]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=15 -- 01:01:36.429 INFO [11636]: long SessionCheck(long uid, const char *sessionid, int create ) -- 01:01:36.429 SQL [11636]: pgsql_exec() -- 01:01:36.429 SQL [11636]: About to run query: -- 01:01:36.429 SQL [11636]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 01:01:36.430 SQL [11636]: PQcmdTuples: 0 -- 01:01:36.430 SQL [11636]: Affected rows: 0 -- 01:01:36.430 SQL [11636]: pgsql_exec() -- 01:01:36.430 SQL [11636]: About to run query: -- 01:01:36.430 SQL [11636]: DELETE FROM members_session WHERE member_id=7 -- 01:01:36.431 SQL [11636]: PQcmdTuples: 1 -- 01:01:36.431 SQL [11636]: Affected rows: 1 -- 01:01:36.431 SQL [11636]: pgsql_query() -- 01:01:36.431 SQL [11636]: About to run query: -- 01:01:36.431 SQL [11636]: SELECT * FROM members_session WHERE member_id=7 AND session<>'3D9D401F31F552F72D7697AA93B88E29' -- 01:01:36.431 SQL [11636]: Found rows: 0 -- 01:01:36.431 SQL [11636]: Found rows: 0 -- 01:01:36.431 FLOG_MAX [11636]: long load_db_record( CVars &rec, const char * query, ... ) -- 01:01:36.431 SQL [11636]: pgsql_query() -- 01:01:36.431 SQL [11636]: About to run query: -- 01:01:36.431 SQL [11636]: SELECT * FROM members_session WHERE member_id=7 AND session='3D9D401F31F552F72D7697AA93B88E29' -- 01:01:36.432 SQL [11636]: Found rows: 0 -- 01:01:36.432 SQL [11636]: Found rows: 0 -- 01:01:36.432 FLOG_MAX [11636]: insert_db_record() -- 01:01:36.432 SQL [11636]: pgsql_exec() -- 01:01:36.432 SQL [11636]: About to run query: -- 01:01:36.432 SQL [11636]: INSERT INTO members_session (member_id,session) VALUES ('7','3D9D401F31F552F72D7697AA93B88E29') -- 01:01:36.433 SQL [11636]: PQcmdTuples: 1 -- 01:01:36.433 SQL [11636]: Affected rows: 1 -- 01:01:36.433 FLOG_MAX [11636]: SELECT currval('members_session_id_seq') -- 01:01:36.433 SQL [11636]: pgsql_query() -- 01:01:36.433 SQL [11636]: About to run query: -- 01:01:36.433 SQL [11636]: SELECT currval('members_session_id_seq') -- 01:01:36.434 SQL [11636]: Found rows: 1 -- 01:01:36.434 INFO [11636]: CreateDefaultPage() -- 01:01:36.434 FLOG_MAX [11636]: long load_db_record( CVars &rec, const char * query, ... ) -- 01:01:36.434 SQL [11636]: pgsql_query() -- 01:01:36.434 SQL [11636]: About to run query: -- 01:01:36.434 SQL [11636]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 01:01:36.434 SQL [11636]: Found rows: 1 -- 01:01:36.434 FLOG_MAX [11636]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 01:01:36.434 SQL [11636]: pgsql_query() -- 01:01:36.434 SQL [11636]: About to run query: -- 01:01:36.434 SQL [11636]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 01:01:36.435 SQL [11636]: Found rows: 1 -- 01:01:36.435 INFO [11636]: /CreateDefaultPage() -- 01:01:36.435 INFO [11636]: /LoginCoreGradeAccount() -- 01:01:36.435 INFO [11636]: RET: added=2020-02-05 09:42:12.816064 -- 01:01:36.435 INFO [11636]: RET: email=tokslaw@chiefsoft.com -- 01:01:36.435 INFO [11636]: RET: firstname=Tokunbo -- 01:01:36.435 INFO [11636]: RET: id=7 -- 01:01:36.435 INFO [11636]: RET: last_login= -- 01:01:36.435 INFO [11636]: RET: lastname=Lawal -- 01:01:36.435 INFO [11636]: RET: loc=192.168.1.13 -- 01:01:36.435 INFO [11636]: RET: member_id=7 -- 01:01:36.435 INFO [11636]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 01:01:36.435 INFO [11636]: RET: phone= -- 01:01:36.435 INFO [11636]: RET: pid= -- 01:01:36.435 INFO [11636]: RET: result=YES I GET TO BACK END -- 01:01:36.435 INFO [11636]: RET: sessionid=3D9D401F31F552F72D7697AA93B88E29 -- 01:01:36.435 INFO [11636]: RET: status=1 -- 01:01:36.435 INFO [11636]: RET: stauts=OK -- 01:01:36.435 INFO [11636]: RET: username=tokslaw@chiefsoft.com -- 01:01:36.435 INFO [11636]: RET: verified= -- 01:01:36.436 INFO [11636]: COREGRADE is stopping... -- 01:01:36.436 DEBUG [11636]: Closing database connection -- 01:01:36.436 SQL [11636]: pgsql_close() -- 01:01:36.389 DEBUG [11636]: Database connection successful -- 01:01:36.389 INFO [11636]: _SERVER found -- 01:01:36.389 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 01:01:36.389 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 01:01:36.389 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5937m95va6rq0dt1p7t3e6qus6lmdm6i -- 01:01:36.389 INFO [11636]: QUERY_STRING = /auth -- 01:01:36.389 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:01:36.437 INFO [11636]: COREGRADE is stopping... -- 01:01:36.437 DEBUG [11636]: Closing database connection -- 01:01:36.437 SQL [11636]: pgsql_close() -- 01:01:36.459 INFO [11636]: COREGRADE is starting... -- 01:01:36.460 INFO [11636]: Version from config: 1.0 -- 01:01:36.460 DEBUG [11636]: Connecting to database... -- 01:01:36.460 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:01:36.460 SQL [11636]: pgsql_db_connect() -- 01:01:36.463 DEBUG [11636]: Database connection successful -- 01:01:36.463 INFO [11636]: _SERVER found -- 01:01:36.463 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 01:01:36.463 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 01:01:36.463 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=7d32arbhd9no5malr7jk2c9bc3pqf267 -- 01:01:36.463 INFO [11636]: QUERY_STRING = /member/index -- 01:01:36.463 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:01:36.499 INFO [11636]: COREGRADE is stopping... -- 01:01:36.499 DEBUG [11636]: Closing database connection -- 01:01:36.499 SQL [11636]: pgsql_close() -- 01:01:36.787 INFO [11636]: COREGRADE is starting... -- 01:01:36.788 INFO [11636]: Version from config: 1.0 -- 01:01:36.788 DEBUG [11636]: Connecting to database... -- 01:01:36.788 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:01:36.788 SQL [11636]: pgsql_db_connect() -- 01:01:36.792 DEBUG [11636]: Database connection successful -- 01:01:36.792 INFO [11636]: _SERVER found -- 01:01:36.792 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 01:01:36.792 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 01:01:36.792 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=7d32arbhd9no5malr7jk2c9bc3pqf267 -- 01:01:36.792 INFO [11636]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:01:36.792 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:01:36.803 INFO [11636]: COREGRADE is stopping... -- 01:01:36.803 DEBUG [11636]: Closing database connection -- 01:01:36.803 SQL [11636]: pgsql_close() -- 01:01:36.808 INFO [11639]: COREGRADE is starting... -- 01:01:36.809 INFO [11639]: Version from config: 1.0 -- 01:01:36.809 DEBUG [11639]: Connecting to database... -- 01:01:36.809 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:01:36.809 SQL [11639]: pgsql_db_connect() -- 01:01:36.813 DEBUG [11639]: Database connection successful -- 01:01:36.813 INFO [11639]: _SERVER found -- 01:01:36.813 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 01:01:36.813 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 01:01:36.813 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=7d32arbhd9no5malr7jk2c9bc3pqf267 -- 01:01:36.813 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:01:36.813 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:01:36.824 INFO [11639]: COREGRADE is stopping... -- 01:01:36.824 DEBUG [11639]: Closing database connection -- 01:01:36.824 SQL [11639]: pgsql_close() -- 01:01:38.988 INFO [11639]: COREGRADE is starting... -- 01:01:38.988 INFO [11639]: Version from config: 1.0 -- 01:01:38.988 DEBUG [11639]: Connecting to database... -- 01:01:38.988 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:01:38.988 SQL [11639]: pgsql_db_connect() -- 01:01:38.992 DEBUG [11639]: Database connection successful -- 01:01:38.992 INFO [11639]: _SERVER found -- 01:01:38.992 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 01:01:38.992 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 01:01:38.992 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=7d32arbhd9no5malr7jk2c9bc3pqf267 -- 01:01:38.992 INFO [11639]: QUERY_STRING = /member/page -- 01:01:38.992 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:01:39.028 INFO [11639]: COREGRADE is stopping... -- 01:01:39.028 DEBUG [11639]: Closing database connection -- 01:01:39.028 SQL [11639]: pgsql_close() -- 01:01:39.216 INFO [11639]: COREGRADE is starting... -- 01:01:39.216 INFO [11639]: Version from config: 1.0 -- 01:01:39.216 DEBUG [11639]: Connecting to database... -- 01:01:39.216 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:01:39.216 SQL [11639]: pgsql_db_connect() -- 01:01:39.220 DEBUG [11639]: Database connection successful -- 01:01:39.220 INFO [11639]: _SERVER found -- 01:01:39.220 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 01:01:39.220 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 01:01:39.220 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=7d32arbhd9no5malr7jk2c9bc3pqf267 -- 01:01:39.220 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:01:39.220 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:01:39.231 INFO [11639]: COREGRADE is stopping... -- 01:01:39.231 DEBUG [11639]: Closing database connection -- 01:01:39.231 SQL [11639]: pgsql_close() -- 01:01:41.264 INFO [11639]: COREGRADE is starting... -- 01:01:41.264 INFO [11639]: Version from config: 1.0 -- 01:01:41.264 DEBUG [11639]: Connecting to database... -- 01:01:41.264 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:01:41.264 SQL [11639]: pgsql_db_connect() -- 01:01:41.268 DEBUG [11639]: Database connection successful -- 01:01:41.268 INFO [11639]: _SERVER found -- 01:01:41.268 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 01:01:41.268 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 01:01:41.268 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=7d32arbhd9no5malr7jk2c9bc3pqf267 -- 01:01:41.268 INFO [11639]: QUERY_STRING = /member/viewCardAddAction -- 01:01:41.268 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:01:41.298 INFO [11639]: COREGRADE is stopping... -- 01:01:41.298 DEBUG [11639]: Closing database connection -- 01:01:41.298 SQL [11639]: pgsql_close() -- 01:02:45.851 INFO [11637]: COREGRADE is starting... -- 01:02:45.851 INFO [11637]: Version from config: 1.0 -- 01:02:45.852 DEBUG [11637]: Connecting to database... -- 01:02:45.852 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:02:45.852 SQL [11637]: pgsql_db_connect() -- 01:02:45.856 DEBUG [11637]: Database connection successful -- 01:02:45.856 INFO [11637]: _SERVER found -- 01:02:45.856 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 01:02:45.856 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 01:02:45.856 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=7d32arbhd9no5malr7jk2c9bc3pqf267 -- 01:02:45.856 INFO [11637]: QUERY_STRING = /member/configure -- 01:02:45.856 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:02:45.893 INFO [11637]: COREGRADE is stopping... -- 01:02:45.893 DEBUG [11637]: Closing database connection -- 01:02:45.893 SQL [11637]: pgsql_close() -- 01:02:46.140 INFO [11637]: COREGRADE is starting... -- 01:02:46.140 INFO [11637]: Version from config: 1.0 -- 01:02:46.140 DEBUG [11637]: Connecting to database... -- 01:02:46.141 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:02:46.141 SQL [11637]: pgsql_db_connect() -- 01:02:46.145 DEBUG [11637]: Database connection successful -- 01:02:46.145 INFO [11637]: _SERVER found -- 01:02:46.145 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 01:02:46.145 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 01:02:46.145 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=7d32arbhd9no5malr7jk2c9bc3pqf267 -- 01:02:46.145 INFO [11637]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:02:46.145 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:02:46.156 INFO [11637]: COREGRADE is stopping... -- 01:02:46.156 DEBUG [11637]: Closing database connection -- 01:02:46.156 SQL [11637]: pgsql_close() -- 01:02:47.843 INFO [11637]: COREGRADE is starting... -- 01:02:47.843 INFO [11637]: Version from config: 1.0 -- 01:02:47.843 DEBUG [11637]: Connecting to database... -- 01:02:47.843 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:02:47.843 SQL [11637]: pgsql_db_connect() -- 01:02:47.848 DEBUG [11637]: Database connection successful -- 01:02:47.848 INFO [11637]: _SERVER found -- 01:02:47.848 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 01:02:47.848 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 01:02:47.848 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=7d32arbhd9no5malr7jk2c9bc3pqf267 -- 01:02:47.848 INFO [11637]: QUERY_STRING = /member -- 01:02:47.848 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:02:47.883 INFO [11637]: COREGRADE is stopping... -- 01:02:47.883 DEBUG [11637]: Closing database connection -- 01:02:47.883 SQL [11637]: pgsql_close() -- 01:02:48.034 INFO [11637]: COREGRADE is starting... -- 01:02:48.034 INFO [11637]: Version from config: 1.0 -- 01:02:48.034 DEBUG [11637]: Connecting to database... -- 01:02:48.034 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:02:48.034 SQL [11637]: pgsql_db_connect() -- 01:02:48.038 DEBUG [11637]: Database connection successful -- 01:02:48.038 INFO [11637]: _SERVER found -- 01:02:48.038 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 01:02:48.038 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 01:02:48.038 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=7d32arbhd9no5malr7jk2c9bc3pqf267 -- 01:02:48.038 INFO [11637]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:02:48.038 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:02:48.049 INFO [11637]: COREGRADE is stopping... -- 01:02:48.049 DEBUG [11637]: Closing database connection -- 01:02:48.049 SQL [11637]: pgsql_close() -- 01:02:49.474 INFO [11637]: COREGRADE is starting... -- 01:02:49.474 INFO [11637]: Version from config: 1.0 -- 01:02:49.474 DEBUG [11637]: Connecting to database... -- 01:02:49.474 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:02:49.474 SQL [11637]: pgsql_db_connect() -- 01:02:49.479 DEBUG [11637]: Database connection successful -- 01:02:49.479 INFO [11637]: _SERVER found -- 01:02:49.479 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 01:02:49.479 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 01:02:49.479 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=7d32arbhd9no5malr7jk2c9bc3pqf267 -- 01:02:49.479 INFO [11637]: QUERY_STRING = /member/page -- 01:02:49.479 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:02:49.515 INFO [11637]: COREGRADE is stopping... -- 01:02:49.515 DEBUG [11637]: Closing database connection -- 01:02:49.515 SQL [11637]: pgsql_close() -- 01:02:49.678 INFO [11637]: COREGRADE is starting... -- 01:02:49.678 INFO [11637]: Version from config: 1.0 -- 01:02:49.678 DEBUG [11637]: Connecting to database... -- 01:02:49.678 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:02:49.678 SQL [11637]: pgsql_db_connect() -- 01:02:49.682 DEBUG [11637]: Database connection successful -- 01:02:49.682 INFO [11637]: _SERVER found -- 01:02:49.682 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 01:02:49.682 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 01:02:49.682 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=7d32arbhd9no5malr7jk2c9bc3pqf267 -- 01:02:49.682 INFO [11637]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:02:49.682 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:02:49.694 INFO [11637]: COREGRADE is stopping... -- 01:02:49.694 DEBUG [11637]: Closing database connection -- 01:02:49.694 SQL [11637]: pgsql_close() -- 01:03:00.941 INFO [12763]: COREGRADE is starting... -- 01:03:00.941 INFO [12763]: Version from config: 1.0 -- 01:03:00.941 DEBUG [12763]: Connecting to database... -- 01:03:00.941 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:03:00.941 SQL [12763]: pgsql_db_connect() -- 01:03:00.946 DEBUG [12763]: Database connection successful -- 01:03:00.946 INFO [12763]: _SERVER found -- 01:03:00.946 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 01:03:00.946 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 01:03:00.946 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=7d32arbhd9no5malr7jk2c9bc3pqf267 -- 01:03:00.946 INFO [12763]: QUERY_STRING = /member -- 01:03:00.946 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:03:00.982 INFO [12763]: COREGRADE is stopping... -- 01:03:00.983 DEBUG [12763]: Closing database connection -- 01:03:00.983 SQL [12763]: pgsql_close() -- 01:03:01.230 INFO [12763]: COREGRADE is starting... -- 01:03:01.230 INFO [12763]: Version from config: 1.0 -- 01:03:01.230 DEBUG [12763]: Connecting to database... -- 01:03:01.230 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:03:01.230 SQL [12763]: pgsql_db_connect() -- 01:03:01.235 DEBUG [12763]: Database connection successful -- 01:03:01.235 INFO [12763]: _SERVER found -- 01:03:01.235 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 01:03:01.235 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 01:03:01.235 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=7d32arbhd9no5malr7jk2c9bc3pqf267 -- 01:03:01.235 INFO [12763]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:03:01.235 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:03:01.246 INFO [12763]: COREGRADE is stopping... -- 01:03:01.246 DEBUG [12763]: Closing database connection -- 01:03:01.246 SQL [12763]: pgsql_close() -- 01:03:03.015 INFO [12763]: COREGRADE is starting... -- 01:03:03.016 INFO [12763]: Version from config: 1.0 -- 01:03:03.016 DEBUG [12763]: Connecting to database... -- 01:03:03.016 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:03:03.016 SQL [12763]: pgsql_db_connect() -- 01:03:03.020 DEBUG [12763]: Database connection successful -- 01:03:03.020 INFO [12763]: _SERVER found -- 01:03:03.020 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 01:03:03.020 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 01:03:03.020 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=7d32arbhd9no5malr7jk2c9bc3pqf267 -- 01:03:03.020 INFO [12763]: QUERY_STRING = /member/page -- 01:03:03.020 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:03:03.057 INFO [12763]: COREGRADE is stopping... -- 01:03:03.057 DEBUG [12763]: Closing database connection -- 01:03:03.057 SQL [12763]: pgsql_close() -- 01:03:03.242 INFO [12763]: COREGRADE is starting... -- 01:03:03.242 INFO [12763]: Version from config: 1.0 -- 01:03:03.242 DEBUG [12763]: Connecting to database... -- 01:03:03.242 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:03:03.242 SQL [12763]: pgsql_db_connect() -- 01:03:03.247 DEBUG [12763]: Database connection successful -- 01:03:03.247 INFO [12763]: _SERVER found -- 01:03:03.247 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 01:03:03.247 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 01:03:03.247 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=7d32arbhd9no5malr7jk2c9bc3pqf267 -- 01:03:03.247 INFO [12763]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:03:03.247 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:03:03.258 INFO [12763]: COREGRADE is stopping... -- 01:03:03.258 DEBUG [12763]: Closing database connection -- 01:03:03.258 SQL [12763]: pgsql_close() -- 01:03:08.459 INFO [12761]: COREGRADE is starting... -- 01:03:08.459 INFO [12761]: Version from config: 1.0 -- 01:03:08.459 DEBUG [12761]: Connecting to database... -- 01:03:08.459 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:03:08.459 SQL [12761]: pgsql_db_connect() -- 01:03:08.463 DEBUG [12761]: Database connection successful -- 01:03:08.463 INFO [12761]: _SERVER found -- 01:03:08.463 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 01:03:08.463 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 01:03:08.463 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=7d32arbhd9no5malr7jk2c9bc3pqf267 -- 01:03:08.463 INFO [12761]: QUERY_STRING = /member/configure -- 01:03:08.463 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:03:08.501 INFO [12761]: COREGRADE is stopping... -- 01:03:08.501 DEBUG [12761]: Closing database connection -- 01:03:08.501 SQL [12761]: pgsql_close() -- 01:03:08.649 INFO [12761]: COREGRADE is starting... -- 01:03:08.649 INFO [12761]: Version from config: 1.0 -- 01:03:08.649 DEBUG [12761]: Connecting to database... -- 01:03:08.649 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:03:08.649 SQL [12761]: pgsql_db_connect() -- 01:03:08.654 DEBUG [12761]: Database connection successful -- 01:03:08.654 INFO [12761]: _SERVER found -- 01:03:08.654 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 01:03:08.654 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 01:03:08.654 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=7d32arbhd9no5malr7jk2c9bc3pqf267 -- 01:03:08.654 INFO [12761]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:03:08.654 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:03:08.665 INFO [12761]: COREGRADE is stopping... -- 01:03:08.665 DEBUG [12761]: Closing database connection -- 01:03:08.665 SQL [12761]: pgsql_close() -- 01:07:41.947 INFO [11652]: COREGRADE is starting... -- 01:07:41.947 INFO [11652]: Version from config: 1.0 -- 01:07:41.947 DEBUG [11652]: Connecting to database... -- 01:07:41.947 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:07:41.947 SQL [11652]: pgsql_db_connect() -- 01:07:41.952 DEBUG [11652]: Database connection successful -- 01:07:41.952 INFO [11652]: _SERVER found -- 01:07:41.952 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 01:07:41.952 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 01:07:41.952 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=nle9pdpqvgaq3i5rlsr815jvrmdcdo8q -- 01:07:41.952 INFO [11652]: QUERY_STRING = /auth -- 01:07:41.952 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:07:41.984 INFO [11652]: COREGRADE is stopping... -- 01:07:41.984 DEBUG [11652]: Closing database connection -- 01:07:41.984 SQL [11652]: pgsql_close() -- 01:07:42.146 INFO [11652]: COREGRADE is starting... -- 01:07:42.146 INFO [11652]: Version from config: 1.0 -- 01:07:42.146 DEBUG [11652]: Connecting to database... -- 01:07:42.146 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:07:42.146 SQL [11652]: pgsql_db_connect() -- 01:07:42.150 DEBUG [11652]: Database connection successful -- 01:07:42.150 INFO [11652]: _SERVER found -- 01:07:42.150 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 01:07:42.150 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 01:07:42.150 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kumb2tkc1ftqgibeub554ufu0uldr4o4 -- 01:07:42.150 INFO [11652]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 01:07:42.150 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:07:42.161 INFO [11652]: COREGRADE is stopping... -- 01:07:42.161 DEBUG [11652]: Closing database connection -- 01:07:42.161 SQL [11652]: pgsql_close() -- 01:07:42.723 INFO [11652]: COREGRADE is starting... -- 01:07:42.723 INFO [11652]: Version from config: 1.0 -- 01:07:42.723 DEBUG [11652]: Connecting to database... -- 01:07:42.723 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:07:42.723 SQL [11652]: pgsql_db_connect() -- 01:07:42.727 DEBUG [11652]: Database connection successful -- 01:07:42.727 INFO [11652]: _SERVER found -- 01:07:42.727 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 01:07:42.727 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 01:07:42.727 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kumb2tkc1ftqgibeub554ufu0uldr4o4 -- 01:07:42.727 INFO [11652]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:07:42.727 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:07:42.738 INFO [11652]: COREGRADE is stopping... -- 01:07:42.738 DEBUG [11652]: Closing database connection -- 01:07:42.738 SQL [11652]: pgsql_close() -- 01:08:39.957 INFO [12764]: COREGRADE is starting... -- 01:08:39.958 INFO [12764]: Version from config: 1.0 -- 01:08:39.958 DEBUG [12764]: Connecting to database... -- 01:08:39.958 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:39.958 SQL [12764]: pgsql_db_connect() -- 01:08:39.962 DEBUG [12764]: Database connection successful -- 01:08:39.962 INFO [12764]: _SERVER found -- 01:08:39.962 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 01:08:39.962 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 01:08:39.962 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=7d32arbhd9no5malr7jk2c9bc3pqf267 -- 01:08:39.962 INFO [12764]: QUERY_STRING = /member -- 01:08:39.962 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:08:39.998 INFO [12764]: COREGRADE is stopping... -- 01:08:39.998 DEBUG [12764]: Closing database connection -- 01:08:39.998 SQL [12764]: pgsql_close() -- 01:08:40.252 INFO [12764]: COREGRADE is starting... -- 01:08:40.252 INFO [12764]: Version from config: 1.0 -- 01:08:40.252 DEBUG [12764]: Connecting to database... -- 01:08:40.252 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:40.252 SQL [12764]: pgsql_db_connect() -- 01:08:40.256 DEBUG [12764]: Database connection successful -- 01:08:40.256 INFO [12764]: _SERVER found -- 01:08:40.256 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 01:08:40.256 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 01:08:40.256 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t99bfrqegs710ljecukbt5lj6p3lr1ld -- 01:08:40.256 INFO [12764]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:08:40.256 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:08:40.267 INFO [12764]: COREGRADE is stopping... -- 01:08:40.267 DEBUG [12764]: Closing database connection -- 01:08:40.267 SQL [12764]: pgsql_close() -- 01:08:41.824 INFO [12764]: COREGRADE is starting... -- 01:08:41.824 INFO [12764]: Version from config: 1.0 -- 01:08:41.824 DEBUG [12764]: Connecting to database... -- 01:08:41.824 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:41.824 SQL [12764]: pgsql_db_connect() -- 01:08:41.828 DEBUG [12764]: Database connection successful -- 01:08:41.828 INFO [12764]: _SERVER found -- 01:08:41.828 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 01:08:41.828 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 01:08:41.828 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t99bfrqegs710ljecukbt5lj6p3lr1ld -- 01:08:41.828 INFO [12764]: QUERY_STRING = /member/page -- 01:08:41.828 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:08:41.865 INFO [12764]: COREGRADE is stopping... -- 01:08:41.865 DEBUG [12764]: Closing database connection -- 01:08:41.865 SQL [12764]: pgsql_close() -- 01:08:42.016 INFO [12764]: COREGRADE is starting... -- 01:08:42.017 INFO [12764]: Version from config: 1.0 -- 01:08:42.017 DEBUG [12764]: Connecting to database... -- 01:08:42.017 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:42.017 SQL [12764]: pgsql_db_connect() -- 01:08:42.021 DEBUG [12764]: Database connection successful -- 01:08:42.021 INFO [12764]: _SERVER found -- 01:08:42.021 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 01:08:42.021 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 01:08:42.021 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t99bfrqegs710ljecukbt5lj6p3lr1ld -- 01:08:42.021 INFO [12764]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:08:42.021 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:08:42.032 INFO [12764]: COREGRADE is stopping... -- 01:08:42.032 DEBUG [12764]: Closing database connection -- 01:08:42.032 SQL [12764]: pgsql_close() -- 01:08:42.033 INFO [11644]: COREGRADE is starting... -- 01:08:42.034 INFO [11644]: Version from config: 1.0 -- 01:08:42.034 DEBUG [11644]: Connecting to database... -- 01:08:42.034 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:42.034 SQL [11644]: pgsql_db_connect() -- 01:08:42.037 DEBUG [11644]: Database connection successful -- 01:08:42.038 INFO [11644]: _SERVER found -- 01:08:42.038 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 01:08:42.038 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 01:08:42.038 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t99bfrqegs710ljecukbt5lj6p3lr1ld -- 01:08:42.038 INFO [11644]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:08:42.038 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:08:42.049 INFO [11644]: COREGRADE is stopping... -- 01:08:42.049 DEBUG [11644]: Closing database connection -- 01:08:42.049 SQL [11644]: pgsql_close() -- 01:08:43.720 INFO [11644]: COREGRADE is starting... -- 01:08:43.720 INFO [11644]: Version from config: 1.0 -- 01:08:43.720 DEBUG [11644]: Connecting to database... -- 01:08:43.720 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:43.720 SQL [11644]: pgsql_db_connect() -- 01:08:43.724 DEBUG [11644]: Database connection successful -- 01:08:43.724 INFO [11644]: _SERVER found -- 01:08:43.724 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 01:08:43.724 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 01:08:43.724 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t99bfrqegs710ljecukbt5lj6p3lr1ld -- 01:08:43.724 INFO [11644]: QUERY_STRING = /member/viewCardAddAction -- 01:08:43.724 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:08:43.755 INFO [11644]: COREGRADE is stopping... -- 01:08:43.755 DEBUG [11644]: Closing database connection -- 01:08:43.755 SQL [11644]: pgsql_close() -- 01:08:47.121 INFO [11644]: COREGRADE is starting... -- 01:08:47.121 INFO [11644]: Version from config: 1.0 -- 01:08:47.121 DEBUG [11644]: Connecting to database... -- 01:08:47.121 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:47.121 SQL [11644]: pgsql_db_connect() -- 01:08:47.125 DEBUG [11644]: Database connection successful -- 01:08:47.125 INFO [11644]: _SERVER found -- 01:08:47.125 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 01:08:47.125 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 01:08:47.125 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t99bfrqegs710ljecukbt5lj6p3lr1ld -- 01:08:47.125 INFO [11644]: QUERY_STRING = /member/page -- 01:08:47.125 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:08:47.160 INFO [11644]: COREGRADE is stopping... -- 01:08:47.161 DEBUG [11644]: Closing database connection -- 01:08:47.161 SQL [11644]: pgsql_close() -- 01:08:47.317 INFO [11644]: COREGRADE is starting... -- 01:08:47.318 INFO [11644]: Version from config: 1.0 -- 01:08:47.318 DEBUG [11644]: Connecting to database... -- 01:08:47.318 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:47.318 SQL [11644]: pgsql_db_connect() -- 01:08:47.322 DEBUG [11644]: Database connection successful -- 01:08:47.322 INFO [11644]: _SERVER found -- 01:08:47.322 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 01:08:47.322 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 01:08:47.322 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t99bfrqegs710ljecukbt5lj6p3lr1ld -- 01:08:47.322 INFO [11644]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:08:47.322 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:08:47.333 INFO [11644]: COREGRADE is stopping... -- 01:08:47.333 DEBUG [11644]: Closing database connection -- 01:08:47.333 SQL [11644]: pgsql_close() -- 01:08:47.334 INFO [11638]: COREGRADE is starting... -- 01:08:47.334 INFO [11638]: Version from config: 1.0 -- 01:08:47.334 DEBUG [11638]: Connecting to database... -- 01:08:47.334 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:47.334 SQL [11638]: pgsql_db_connect() -- 01:08:47.338 DEBUG [11638]: Database connection successful -- 01:08:47.338 INFO [11638]: _SERVER found -- 01:08:47.338 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 01:08:47.338 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 01:08:47.338 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t99bfrqegs710ljecukbt5lj6p3lr1ld -- 01:08:47.338 INFO [11638]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:08:47.338 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:08:47.349 INFO [11638]: COREGRADE is stopping... -- 01:08:47.349 DEBUG [11638]: Closing database connection -- 01:08:47.349 SQL [11638]: pgsql_close() -- 01:08:48.822 INFO [11638]: COREGRADE is starting... -- 01:08:48.823 INFO [11638]: Version from config: 1.0 -- 01:08:48.823 DEBUG [11638]: Connecting to database... -- 01:08:48.823 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:48.823 SQL [11638]: pgsql_db_connect() -- 01:08:48.827 DEBUG [11638]: Database connection successful -- 01:08:48.827 INFO [11638]: _SERVER found -- 01:08:48.827 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 01:08:48.827 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 01:08:48.827 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t99bfrqegs710ljecukbt5lj6p3lr1ld -- 01:08:48.827 INFO [11638]: QUERY_STRING = /member/page -- 01:08:48.827 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:08:48.862 INFO [11638]: COREGRADE is stopping... -- 01:08:48.863 DEBUG [11638]: Closing database connection -- 01:08:48.863 SQL [11638]: pgsql_close() -- 01:08:49.029 INFO [11638]: COREGRADE is starting... -- 01:08:49.030 INFO [11638]: Version from config: 1.0 -- 01:08:49.030 DEBUG [11638]: Connecting to database... -- 01:08:49.030 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:49.030 SQL [11638]: pgsql_db_connect() -- 01:08:49.039 INFO [11644]: COREGRADE is starting... -- 01:08:49.040 INFO [11644]: Version from config: 1.0 -- 01:08:49.040 DEBUG [11644]: Connecting to database... -- 01:08:49.040 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:49.040 SQL [11644]: pgsql_db_connect() -- 01:08:49.034 DEBUG [11638]: Database connection successful -- 01:08:49.034 INFO [11638]: _SERVER found -- 01:08:49.034 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 01:08:49.034 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 01:08:49.034 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t99bfrqegs710ljecukbt5lj6p3lr1ld -- 01:08:49.034 INFO [11638]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:08:49.034 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:08:49.045 INFO [11638]: COREGRADE is stopping... -- 01:08:49.045 DEBUG [11638]: Closing database connection -- 01:08:49.045 SQL [11638]: pgsql_close() -- 01:08:49.044 DEBUG [11644]: Database connection successful -- 01:08:49.044 INFO [11644]: _SERVER found -- 01:08:49.044 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 01:08:49.044 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 01:08:49.044 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t99bfrqegs710ljecukbt5lj6p3lr1ld -- 01:08:49.044 INFO [11644]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:08:49.044 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:08:49.055 INFO [11644]: COREGRADE is stopping... -- 01:08:49.055 DEBUG [11644]: Closing database connection -- 01:08:49.055 SQL [11644]: pgsql_close() -- 01:08:50.128 INFO [11644]: COREGRADE is starting... -- 01:08:50.128 INFO [11644]: Version from config: 1.0 -- 01:08:50.128 DEBUG [11644]: Connecting to database... -- 01:08:50.128 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:50.128 SQL [11644]: pgsql_db_connect() -- 01:08:50.132 DEBUG [11644]: Database connection successful -- 01:08:50.132 INFO [11644]: _SERVER found -- 01:08:50.132 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 01:08:50.132 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 01:08:50.132 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t99bfrqegs710ljecukbt5lj6p3lr1ld -- 01:08:50.132 INFO [11644]: QUERY_STRING = /member/viewCardAddAction -- 01:08:50.132 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:08:50.162 INFO [11644]: COREGRADE is stopping... -- 01:08:50.162 DEBUG [11644]: Closing database connection -- 01:08:50.162 SQL [11644]: pgsql_close() -- 01:08:50.904 INFO [11638]: COREGRADE is starting... -- 01:08:50.905 INFO [11638]: Version from config: 1.0 -- 01:08:50.905 DEBUG [11638]: Connecting to database... -- 01:08:50.905 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:50.905 SQL [11638]: pgsql_db_connect() -- 01:08:50.939 INFO [11638]: COREGRADE is starting... -- 01:08:50.939 INFO [11638]: Version from config: 1.0 -- 01:08:50.939 DEBUG [11638]: Connecting to database... -- 01:08:50.939 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:50.939 SQL [11638]: pgsql_db_connect() -- 01:08:50.943 DEBUG [11638]: Database connection successful -- 01:08:50.943 INFO [11638]: _SERVER found -- 01:08:50.943 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 01:08:50.943 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 01:08:50.943 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kumb2tkc1ftqgibeub554ufu0uldr4o4 -- 01:08:50.943 INFO [11638]: QUERY_STRING = -- 01:08:50.943 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:08:50.943 INFO [11638]: SystemStatus()09-09-********~************ -- 01:08:50.943 INFO [11638]: long coregrade_api_main(CVars in, CVars &out) -- 01:08:50.943 INFO [11638]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 01:08:50.943 INFO [11638]: account calls -- 01:08:50.943 INFO [11638]: account_calls() -- 01:08:50.943 INFO [11638]: LoginCoreGradeAccount() -- 01:08:50.943 FLOG_MAX [11638]: REQ_STRING(username) -- 01:08:50.944 FLOG_MAX [11638]: REQ_STRING(password) -- 01:08:50.944 FLOG_MAX [11638]: REQ_STRING(sessionid) -- 01:08:50.944 FLOG_MAX [11638]: long load_db_record( CVars &rec, const char * query, ... ) -- 01:08:50.944 SQL [11638]: pgsql_query() -- 01:08:50.944 SQL [11638]: About to run query: -- 01:08:50.944 SQL [11638]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 01:08:50.947 SQL [11638]: Found rows: 1 -- 01:08:50.947 FLOG_MAX [11638]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 01:08:50.947 INFO [11638]: long SessionCheck(long uid, const char *sessionid, int create ) -- 01:08:50.947 SQL [11638]: pgsql_exec() -- 01:08:50.947 SQL [11638]: About to run query: -- 01:08:50.947 SQL [11638]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 01:08:50.949 SQL [11638]: PQcmdTuples: 1 -- 01:08:50.949 SQL [11638]: Affected rows: 1 -- 01:08:50.949 SQL [11638]: pgsql_exec() -- 01:08:50.949 SQL [11638]: About to run query: -- 01:08:50.949 SQL [11638]: DELETE FROM members_session WHERE member_id=5 -- 01:08:50.949 SQL [11638]: PQcmdTuples: 0 -- 01:08:50.949 SQL [11638]: Affected rows: 0 -- 01:08:50.949 SQL [11638]: pgsql_query() -- 01:08:50.949 SQL [11638]: About to run query: -- 01:08:50.949 SQL [11638]: SELECT * FROM members_session WHERE member_id=5 AND session<>'1525D2BAB2FFA16300B2F1EE6294CC07' -- 01:08:50.950 SQL [11638]: Found rows: 0 -- 01:08:50.950 SQL [11638]: Found rows: 0 -- 01:08:50.950 FLOG_MAX [11638]: long load_db_record( CVars &rec, const char * query, ... ) -- 01:08:50.950 SQL [11638]: pgsql_query() -- 01:08:50.950 SQL [11638]: About to run query: -- 01:08:50.950 SQL [11638]: SELECT * FROM members_session WHERE member_id=5 AND session='1525D2BAB2FFA16300B2F1EE6294CC07' -- 01:08:50.950 SQL [11638]: Found rows: 0 -- 01:08:50.950 SQL [11638]: Found rows: 0 -- 01:08:50.950 FLOG_MAX [11638]: insert_db_record() -- 01:08:50.950 SQL [11638]: pgsql_exec() -- 01:08:50.951 SQL [11638]: About to run query: -- 01:08:50.951 SQL [11638]: INSERT INTO members_session (member_id,session) VALUES ('5','1525D2BAB2FFA16300B2F1EE6294CC07') -- 01:08:50.952 SQL [11638]: PQcmdTuples: 1 -- 01:08:50.952 SQL [11638]: Affected rows: 1 -- 01:08:50.952 FLOG_MAX [11638]: SELECT currval('members_session_id_seq') -- 01:08:50.952 SQL [11638]: pgsql_query() -- 01:08:50.952 SQL [11638]: About to run query: -- 01:08:50.952 SQL [11638]: SELECT currval('members_session_id_seq') -- 01:08:50.953 SQL [11638]: Found rows: 1 -- 01:08:50.953 INFO [11638]: CreateDefaultPage() -- 01:08:50.953 FLOG_MAX [11638]: long load_db_record( CVars &rec, const char * query, ... ) -- 01:08:50.953 SQL [11638]: pgsql_query() -- 01:08:50.953 SQL [11638]: About to run query: -- 01:08:50.953 SQL [11638]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 01:08:50.953 SQL [11638]: Found rows: 1 -- 01:08:50.953 FLOG_MAX [11638]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 01:08:50.953 SQL [11638]: pgsql_query() -- 01:08:50.953 SQL [11638]: About to run query: -- 01:08:50.953 SQL [11638]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 01:08:50.953 SQL [11638]: Found rows: 1 -- 01:08:50.953 INFO [11638]: /CreateDefaultPage() -- 01:08:50.953 INFO [11638]: /LoginCoreGradeAccount() -- 01:08:50.953 INFO [11638]: RET: added=2020-02-05 06:47:23.982154 -- 01:08:50.953 INFO [11638]: RET: email=ameye+11@chiefsoft.com -- 01:08:50.953 INFO [11638]: RET: firstname=Olu -- 01:08:50.953 INFO [11638]: RET: id=5 -- 01:08:50.953 INFO [11638]: RET: last_login= -- 01:08:50.953 INFO [11638]: RET: lastname=Amey -- 01:08:50.953 INFO [11638]: RET: loc=192.168.1.13 -- 01:08:50.953 INFO [11638]: RET: member_id=5 -- 01:08:50.953 INFO [11638]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 01:08:50.953 INFO [11638]: RET: phone= -- 01:08:50.953 INFO [11638]: RET: pid= -- 01:08:50.953 INFO [11638]: RET: result=YES I GET TO BACK END -- 01:08:50.954 INFO [11638]: RET: sessionid=1525D2BAB2FFA16300B2F1EE6294CC07 -- 01:08:50.954 INFO [11638]: RET: status=1 -- 01:08:50.954 INFO [11638]: RET: stauts=OK -- 01:08:50.954 INFO [11638]: RET: username=ameye+11@chiefsoft.com -- 01:08:50.954 INFO [11638]: RET: verified= -- 01:08:50.955 INFO [11638]: COREGRADE is stopping... -- 01:08:50.955 DEBUG [11638]: Closing database connection -- 01:08:50.955 SQL [11638]: pgsql_close() -- 01:08:50.909 DEBUG [11638]: Database connection successful -- 01:08:50.909 INFO [11638]: _SERVER found -- 01:08:50.909 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 01:08:50.909 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 01:08:50.909 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kumb2tkc1ftqgibeub554ufu0uldr4o4 -- 01:08:50.909 INFO [11638]: QUERY_STRING = /auth -- 01:08:50.909 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:08:50.955 INFO [11638]: COREGRADE is stopping... -- 01:08:50.955 DEBUG [11638]: Closing database connection -- 01:08:50.955 SQL [11638]: pgsql_close() -- 01:08:50.968 INFO [11638]: COREGRADE is starting... -- 01:08:50.968 INFO [11638]: Version from config: 1.0 -- 01:08:50.968 DEBUG [11638]: Connecting to database... -- 01:08:50.968 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:50.968 SQL [11638]: pgsql_db_connect() -- 01:08:50.972 DEBUG [11638]: Database connection successful -- 01:08:50.972 INFO [11638]: _SERVER found -- 01:08:50.972 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 01:08:50.972 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 01:08:50.972 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kumb2tkc1ftqgibeub554ufu0uldr4o4 -- 01:08:50.972 INFO [11638]: QUERY_STRING = /member/index -- 01:08:50.972 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:08:51.006 INFO [11638]: COREGRADE is stopping... -- 01:08:51.006 DEBUG [11638]: Closing database connection -- 01:08:51.006 SQL [11638]: pgsql_close() -- 01:08:51.234 INFO [11638]: COREGRADE is starting... -- 01:08:51.235 INFO [11638]: Version from config: 1.0 -- 01:08:51.235 DEBUG [11638]: Connecting to database... -- 01:08:51.235 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:51.235 SQL [11638]: pgsql_db_connect() -- 01:08:51.239 DEBUG [11638]: Database connection successful -- 01:08:51.239 INFO [11638]: _SERVER found -- 01:08:51.239 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 01:08:51.239 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 01:08:51.239 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kumb2tkc1ftqgibeub554ufu0uldr4o4 -- 01:08:51.239 INFO [11638]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:08:51.239 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:08:51.250 INFO [11638]: COREGRADE is stopping... -- 01:08:51.250 DEBUG [11638]: Closing database connection -- 01:08:51.250 SQL [11638]: pgsql_close() -- 01:08:51.279 INFO [11638]: COREGRADE is starting... -- 01:08:51.279 INFO [11638]: Version from config: 1.0 -- 01:08:51.279 DEBUG [11638]: Connecting to database... -- 01:08:51.279 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:51.279 SQL [11638]: pgsql_db_connect() -- 01:08:51.283 DEBUG [11638]: Database connection successful -- 01:08:51.283 INFO [11638]: _SERVER found -- 01:08:51.283 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 01:08:51.283 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 01:08:51.283 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kumb2tkc1ftqgibeub554ufu0uldr4o4 -- 01:08:51.283 INFO [11638]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:08:51.283 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:08:51.294 INFO [11638]: COREGRADE is stopping... -- 01:08:51.294 DEBUG [11638]: Closing database connection -- 01:08:51.294 SQL [11638]: pgsql_close() -- 01:08:52.853 INFO [11638]: COREGRADE is starting... -- 01:08:52.853 INFO [11638]: Version from config: 1.0 -- 01:08:52.853 DEBUG [11638]: Connecting to database... -- 01:08:52.853 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:52.853 SQL [11638]: pgsql_db_connect() -- 01:08:52.857 DEBUG [11638]: Database connection successful -- 01:08:52.857 INFO [11638]: _SERVER found -- 01:08:52.857 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 01:08:52.857 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 01:08:52.857 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kumb2tkc1ftqgibeub554ufu0uldr4o4 -- 01:08:52.857 INFO [11638]: QUERY_STRING = /member/page -- 01:08:52.857 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:08:52.893 INFO [11638]: COREGRADE is stopping... -- 01:08:52.893 DEBUG [11638]: Closing database connection -- 01:08:52.893 SQL [11638]: pgsql_close() -- 01:08:53.098 INFO [11638]: COREGRADE is starting... -- 01:08:53.098 INFO [11638]: Version from config: 1.0 -- 01:08:53.098 DEBUG [11638]: Connecting to database... -- 01:08:53.099 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:53.099 SQL [11638]: pgsql_db_connect() -- 01:08:53.103 DEBUG [11638]: Database connection successful -- 01:08:53.103 INFO [11638]: _SERVER found -- 01:08:53.103 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 01:08:53.103 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 01:08:53.103 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kumb2tkc1ftqgibeub554ufu0uldr4o4 -- 01:08:53.103 INFO [11638]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:08:53.103 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:08:53.114 INFO [11638]: COREGRADE is stopping... -- 01:08:53.114 DEBUG [11638]: Closing database connection -- 01:08:53.114 SQL [11638]: pgsql_close() -- 01:08:53.121 INFO [11650]: COREGRADE is starting... -- 01:08:53.122 INFO [11650]: Version from config: 1.0 -- 01:08:53.122 DEBUG [11650]: Connecting to database... -- 01:08:53.122 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:53.122 SQL [11650]: pgsql_db_connect() -- 01:08:53.126 DEBUG [11650]: Database connection successful -- 01:08:53.126 INFO [11650]: _SERVER found -- 01:08:53.126 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 01:08:53.126 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 01:08:53.126 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kumb2tkc1ftqgibeub554ufu0uldr4o4 -- 01:08:53.126 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:08:53.126 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:08:53.137 INFO [11650]: COREGRADE is stopping... -- 01:08:53.137 DEBUG [11650]: Closing database connection -- 01:08:53.137 SQL [11650]: pgsql_close() -- 01:08:54.680 INFO [11650]: COREGRADE is starting... -- 01:08:54.680 INFO [11650]: Version from config: 1.0 -- 01:08:54.680 DEBUG [11650]: Connecting to database... -- 01:08:54.680 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:54.680 SQL [11650]: pgsql_db_connect() -- 01:08:54.684 DEBUG [11650]: Database connection successful -- 01:08:54.684 INFO [11650]: _SERVER found -- 01:08:54.684 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 01:08:54.684 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 01:08:54.684 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kumb2tkc1ftqgibeub554ufu0uldr4o4 -- 01:08:54.684 INFO [11650]: QUERY_STRING = /member/viewCardAddAction -- 01:08:54.684 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:08:54.715 INFO [11650]: COREGRADE is stopping... -- 01:08:54.715 DEBUG [11650]: Closing database connection -- 01:08:54.715 SQL [11650]: pgsql_close() -- 01:09:05.789 INFO [11636]: COREGRADE is starting... -- 01:09:05.789 INFO [11636]: Version from config: 1.0 -- 01:09:05.789 DEBUG [11636]: Connecting to database... -- 01:09:05.789 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:09:05.789 SQL [11636]: pgsql_db_connect() -- 01:09:05.793 DEBUG [11636]: Database connection successful -- 01:09:05.793 INFO [11636]: _SERVER found -- 01:09:05.793 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 01:09:05.793 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 01:09:05.793 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kumb2tkc1ftqgibeub554ufu0uldr4o4 -- 01:09:05.793 INFO [11636]: QUERY_STRING = /member/page -- 01:09:05.793 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:09:05.830 INFO [11636]: COREGRADE is stopping... -- 01:09:05.830 DEBUG [11636]: Closing database connection -- 01:09:05.830 SQL [11636]: pgsql_close() -- 01:09:06.024 INFO [11636]: COREGRADE is starting... -- 01:09:06.025 INFO [11636]: Version from config: 1.0 -- 01:09:06.025 DEBUG [11636]: Connecting to database... -- 01:09:06.025 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:09:06.025 SQL [11636]: pgsql_db_connect() -- 01:09:06.029 DEBUG [11636]: Database connection successful -- 01:09:06.029 INFO [11636]: _SERVER found -- 01:09:06.029 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 01:09:06.029 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 01:09:06.029 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kumb2tkc1ftqgibeub554ufu0uldr4o4 -- 01:09:06.029 INFO [11636]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:09:06.029 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:09:06.040 INFO [11636]: COREGRADE is stopping... -- 01:09:06.040 DEBUG [11636]: Closing database connection -- 01:09:06.040 SQL [11636]: pgsql_close() -- 01:09:06.054 INFO [11639]: COREGRADE is starting... -- 01:09:06.054 INFO [11639]: Version from config: 1.0 -- 01:09:06.054 DEBUG [11639]: Connecting to database... -- 01:09:06.054 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:09:06.054 SQL [11639]: pgsql_db_connect() -- 01:09:06.058 DEBUG [11639]: Database connection successful -- 01:09:06.058 INFO [11639]: _SERVER found -- 01:09:06.058 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 01:09:06.058 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 01:09:06.058 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kumb2tkc1ftqgibeub554ufu0uldr4o4 -- 01:09:06.058 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:09:06.058 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:09:06.069 INFO [11639]: COREGRADE is stopping... -- 01:09:06.069 DEBUG [11639]: Closing database connection -- 01:09:06.069 SQL [11639]: pgsql_close() -- 01:09:07.402 INFO [11639]: COREGRADE is starting... -- 01:09:07.402 INFO [11639]: Version from config: 1.0 -- 01:09:07.402 DEBUG [11639]: Connecting to database... -- 01:09:07.402 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:09:07.402 SQL [11639]: pgsql_db_connect() -- 01:09:07.406 DEBUG [11639]: Database connection successful -- 01:09:07.406 INFO [11639]: _SERVER found -- 01:09:07.406 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 01:09:07.406 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 01:09:07.406 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kumb2tkc1ftqgibeub554ufu0uldr4o4 -- 01:09:07.406 INFO [11639]: QUERY_STRING = /member/page -- 01:09:07.406 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:09:07.442 INFO [11639]: COREGRADE is stopping... -- 01:09:07.442 DEBUG [11639]: Closing database connection -- 01:09:07.442 SQL [11639]: pgsql_close() -- 01:09:07.604 INFO [11639]: COREGRADE is starting... -- 01:09:07.605 INFO [11639]: Version from config: 1.0 -- 01:09:07.605 DEBUG [11639]: Connecting to database... -- 01:09:07.605 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:09:07.605 SQL [11639]: pgsql_db_connect() -- 01:09:07.609 DEBUG [11639]: Database connection successful -- 01:09:07.609 INFO [11639]: _SERVER found -- 01:09:07.609 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 01:09:07.609 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 01:09:07.609 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kumb2tkc1ftqgibeub554ufu0uldr4o4 -- 01:09:07.609 INFO [11639]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:09:07.609 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:09:07.620 INFO [11639]: COREGRADE is stopping... -- 01:09:07.620 DEBUG [11639]: Closing database connection -- 01:09:07.620 SQL [11639]: pgsql_close() -- 01:09:07.681 INFO [11639]: COREGRADE is starting... -- 01:09:07.681 INFO [11639]: Version from config: 1.0 -- 01:09:07.681 DEBUG [11639]: Connecting to database... -- 01:09:07.682 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:09:07.682 SQL [11639]: pgsql_db_connect() -- 01:09:07.685 DEBUG [11639]: Database connection successful -- 01:09:07.685 INFO [11639]: _SERVER found -- 01:09:07.685 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 01:09:07.685 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 01:09:07.685 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kumb2tkc1ftqgibeub554ufu0uldr4o4 -- 01:09:07.685 INFO [11639]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:09:07.685 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:09:07.696 INFO [11639]: COREGRADE is stopping... -- 01:09:07.696 DEBUG [11639]: Closing database connection -- 01:09:07.697 SQL [11639]: pgsql_close() -- 01:09:09.585 INFO [11639]: COREGRADE is starting... -- 01:09:09.586 INFO [11639]: Version from config: 1.0 -- 01:09:09.586 DEBUG [11639]: Connecting to database... -- 01:09:09.586 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:09:09.586 SQL [11639]: pgsql_db_connect() -- 01:09:09.590 DEBUG [11639]: Database connection successful -- 01:09:09.590 INFO [11639]: _SERVER found -- 01:09:09.590 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 01:09:09.590 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 01:09:09.590 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kumb2tkc1ftqgibeub554ufu0uldr4o4 -- 01:09:09.590 INFO [11639]: QUERY_STRING = /member/viewCardAddAction -- 01:09:09.590 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:09:09.620 INFO [11639]: COREGRADE is stopping... -- 01:09:09.620 DEBUG [11639]: Closing database connection -- 01:09:09.620 SQL [11639]: pgsql_close() -- 01:09:57.057 INFO [11637]: COREGRADE is starting... -- 01:09:57.057 INFO [11637]: Version from config: 1.0 -- 01:09:57.057 DEBUG [11637]: Connecting to database... -- 01:09:57.057 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:09:57.057 SQL [11637]: pgsql_db_connect() -- 01:09:57.061 DEBUG [11637]: Database connection successful -- 01:09:57.061 INFO [11637]: _SERVER found -- 01:09:57.061 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 01:09:57.061 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 01:09:57.061 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kumb2tkc1ftqgibeub554ufu0uldr4o4 -- 01:09:57.061 INFO [11637]: QUERY_STRING = /member/page -- 01:09:57.061 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:09:57.098 INFO [11637]: COREGRADE is stopping... -- 01:09:57.098 DEBUG [11637]: Closing database connection -- 01:09:57.098 SQL [11637]: pgsql_close() -- 01:09:57.589 INFO [11637]: COREGRADE is starting... -- 01:09:57.589 INFO [11637]: Version from config: 1.0 -- 01:09:57.589 DEBUG [11637]: Connecting to database... -- 01:09:57.589 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:09:57.589 SQL [11637]: pgsql_db_connect() -- 01:09:57.593 DEBUG [11637]: Database connection successful -- 01:09:57.593 INFO [11637]: _SERVER found -- 01:09:57.593 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 01:09:57.593 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 01:09:57.593 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kumb2tkc1ftqgibeub554ufu0uldr4o4 -- 01:09:57.593 INFO [11637]: QUERY_STRING = /favicon.ico -- 01:09:57.593 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:09:57.604 INFO [11637]: COREGRADE is stopping... -- 01:09:57.604 DEBUG [11637]: Closing database connection -- 01:09:57.604 SQL [11637]: pgsql_close() -- 01:11:32.317 INFO [12763]: COREGRADE is starting... -- 01:11:32.317 INFO [12763]: Version from config: 1.0 -- 01:11:32.317 DEBUG [12763]: Connecting to database... -- 01:11:32.317 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:11:32.317 SQL [12763]: pgsql_db_connect() -- 01:11:32.321 DEBUG [12763]: Database connection successful -- 01:11:32.321 INFO [12763]: _SERVER found -- 01:11:32.321 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 01:11:32.321 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 01:11:32.321 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kumb2tkc1ftqgibeub554ufu0uldr4o4 -- 01:11:32.321 INFO [12763]: QUERY_STRING = /member/page -- 01:11:32.321 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:11:32.358 INFO [12763]: COREGRADE is stopping... -- 01:11:32.358 DEBUG [12763]: Closing database connection -- 01:11:32.358 SQL [12763]: pgsql_close() -- 01:11:32.533 INFO [12761]: COREGRADE is starting... -- 01:11:32.533 INFO [12761]: Version from config: 1.0 -- 01:11:32.533 DEBUG [12761]: Connecting to database... -- 01:11:32.533 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:11:32.533 SQL [12761]: pgsql_db_connect() -- 01:11:32.537 DEBUG [12761]: Database connection successful -- 01:11:32.537 INFO [12761]: _SERVER found -- 01:11:32.537 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 01:11:32.537 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 01:11:32.537 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kumb2tkc1ftqgibeub554ufu0uldr4o4 -- 01:11:32.537 INFO [12761]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:11:32.537 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:11:32.548 INFO [12761]: COREGRADE is stopping... -- 01:11:32.548 DEBUG [12761]: Closing database connection -- 01:11:32.548 SQL [12761]: pgsql_close() -- 01:11:32.647 INFO [12761]: COREGRADE is starting... -- 01:11:32.647 INFO [12761]: Version from config: 1.0 -- 01:11:32.647 DEBUG [12761]: Connecting to database... -- 01:11:32.647 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:11:32.647 SQL [12761]: pgsql_db_connect() -- 01:11:32.651 DEBUG [12761]: Database connection successful -- 01:11:32.651 INFO [12761]: _SERVER found -- 01:11:32.651 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 01:11:32.651 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 01:11:32.651 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kumb2tkc1ftqgibeub554ufu0uldr4o4 -- 01:11:32.651 INFO [12761]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:11:32.651 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:11:32.662 INFO [12761]: COREGRADE is stopping... -- 01:11:32.663 DEBUG [12761]: Closing database connection -- 01:11:32.663 SQL [12761]: pgsql_close() -- 01:11:33.898 INFO [12761]: COREGRADE is starting... -- 01:11:33.899 INFO [12761]: Version from config: 1.0 -- 01:11:33.899 DEBUG [12761]: Connecting to database... -- 01:11:33.899 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:11:33.899 SQL [12761]: pgsql_db_connect() -- 01:11:33.903 DEBUG [12761]: Database connection successful -- 01:11:33.903 INFO [12761]: _SERVER found -- 01:11:33.903 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 01:11:33.903 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 01:11:33.903 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kumb2tkc1ftqgibeub554ufu0uldr4o4 -- 01:11:33.903 INFO [12761]: QUERY_STRING = /member/viewCardAddAction -- 01:11:33.903 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:11:33.934 INFO [12761]: COREGRADE is stopping... -- 01:11:33.934 DEBUG [12761]: Closing database connection -- 01:11:33.934 SQL [12761]: pgsql_close() -- 01:11:35.266 INFO [12761]: COREGRADE is starting... -- 01:11:35.266 INFO [12761]: Version from config: 1.0 -- 01:11:35.266 DEBUG [12761]: Connecting to database... -- 01:11:35.266 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:11:35.266 SQL [12761]: pgsql_db_connect() -- 01:11:35.270 DEBUG [12761]: Database connection successful -- 01:11:35.270 INFO [12761]: _SERVER found -- 01:11:35.270 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 01:11:35.270 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 01:11:35.270 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kumb2tkc1ftqgibeub554ufu0uldr4o4 -- 01:11:35.270 INFO [12761]: QUERY_STRING = /member/page -- 01:11:35.270 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:11:35.305 INFO [12761]: COREGRADE is stopping... -- 01:11:35.305 DEBUG [12761]: Closing database connection -- 01:11:35.305 SQL [12761]: pgsql_close() -- 01:11:35.422 INFO [12761]: COREGRADE is starting... -- 01:11:35.423 INFO [12761]: Version from config: 1.0 -- 01:11:35.423 DEBUG [12761]: Connecting to database... -- 01:11:35.423 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:11:35.423 SQL [12761]: pgsql_db_connect() -- 01:11:35.435 INFO [12763]: COREGRADE is starting... -- 01:11:35.435 INFO [12763]: Version from config: 1.0 -- 01:11:35.435 DEBUG [12763]: Connecting to database... -- 01:11:35.435 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:11:35.435 SQL [12763]: pgsql_db_connect() -- 01:11:35.427 DEBUG [12761]: Database connection successful -- 01:11:35.427 INFO [12761]: _SERVER found -- 01:11:35.427 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 01:11:35.427 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 01:11:35.427 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kumb2tkc1ftqgibeub554ufu0uldr4o4 -- 01:11:35.427 INFO [12761]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:11:35.427 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:11:35.438 INFO [12761]: COREGRADE is stopping... -- 01:11:35.438 DEBUG [12761]: Closing database connection -- 01:11:35.438 SQL [12761]: pgsql_close() -- 01:11:35.439 DEBUG [12763]: Database connection successful -- 01:11:35.439 INFO [12763]: _SERVER found -- 01:11:35.439 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 01:11:35.439 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 01:11:35.439 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kumb2tkc1ftqgibeub554ufu0uldr4o4 -- 01:11:35.439 INFO [12763]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:11:35.439 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:11:35.450 INFO [12763]: COREGRADE is stopping... -- 01:11:35.450 DEBUG [12763]: Closing database connection -- 01:11:35.450 SQL [12763]: pgsql_close() -- 01:11:36.693 INFO [12763]: COREGRADE is starting... -- 01:11:36.693 INFO [12763]: Version from config: 1.0 -- 01:11:36.693 DEBUG [12763]: Connecting to database... -- 01:11:36.693 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:11:36.693 SQL [12763]: pgsql_db_connect() -- 01:11:36.698 DEBUG [12763]: Database connection successful -- 01:11:36.698 INFO [12763]: _SERVER found -- 01:11:36.698 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 01:11:36.698 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 01:11:36.698 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kumb2tkc1ftqgibeub554ufu0uldr4o4 -- 01:11:36.698 INFO [12763]: QUERY_STRING = /member/page -- 01:11:36.698 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:11:36.734 INFO [12763]: COREGRADE is stopping... -- 01:11:36.734 DEBUG [12763]: Closing database connection -- 01:11:36.734 SQL [12763]: pgsql_close() -- 01:11:36.883 INFO [12763]: COREGRADE is starting... -- 01:11:36.883 INFO [12763]: Version from config: 1.0 -- 01:11:36.883 DEBUG [12763]: Connecting to database... -- 01:11:36.883 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:11:36.883 SQL [12763]: pgsql_db_connect() -- 01:11:36.887 DEBUG [12763]: Database connection successful -- 01:11:36.887 INFO [12763]: _SERVER found -- 01:11:36.887 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 01:11:36.887 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 01:11:36.887 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kumb2tkc1ftqgibeub554ufu0uldr4o4 -- 01:11:36.887 INFO [12763]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:11:36.887 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:11:36.898 INFO [12763]: COREGRADE is stopping... -- 01:11:36.898 DEBUG [12763]: Closing database connection -- 01:11:36.898 SQL [12763]: pgsql_close() -- 01:11:36.984 INFO [12763]: COREGRADE is starting... -- 01:11:36.985 INFO [12763]: Version from config: 1.0 -- 01:11:36.985 DEBUG [12763]: Connecting to database... -- 01:11:36.985 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:11:36.985 SQL [12763]: pgsql_db_connect() -- 01:11:36.988 DEBUG [12763]: Database connection successful -- 01:11:36.988 INFO [12763]: _SERVER found -- 01:11:36.989 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 01:11:36.989 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 01:11:36.989 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kumb2tkc1ftqgibeub554ufu0uldr4o4 -- 01:11:36.989 INFO [12763]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:11:36.989 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:11:36.999 INFO [12763]: COREGRADE is stopping... -- 01:11:36.999 DEBUG [12763]: Closing database connection -- 01:11:36.999 SQL [12763]: pgsql_close() -- 01:12:21.298 INFO [11652]: COREGRADE is starting... -- 01:12:21.299 INFO [11652]: Version from config: 1.0 -- 01:12:21.299 DEBUG [11652]: Connecting to database... -- 01:12:21.299 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:12:21.299 SQL [11652]: pgsql_db_connect() -- 01:12:21.303 DEBUG [11652]: Database connection successful -- 01:12:21.303 INFO [11652]: _SERVER found -- 01:12:21.303 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 01:12:21.303 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 01:12:21.303 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t99bfrqegs710ljecukbt5lj6p3lr1ld -- 01:12:21.303 INFO [11652]: QUERY_STRING = /auth -- 01:12:21.303 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:12:21.334 INFO [11652]: COREGRADE is stopping... -- 01:12:21.334 DEBUG [11652]: Closing database connection -- 01:12:21.334 SQL [11652]: pgsql_close() -- 01:12:21.531 INFO [11652]: COREGRADE is starting... -- 01:12:21.531 INFO [11652]: Version from config: 1.0 -- 01:12:21.531 DEBUG [11652]: Connecting to database... -- 01:12:21.531 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:12:21.531 SQL [11652]: pgsql_db_connect() -- 01:12:21.535 DEBUG [11652]: Database connection successful -- 01:12:21.535 INFO [11652]: _SERVER found -- 01:12:21.535 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 01:12:21.535 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 01:12:21.535 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t99bfrqegs710ljecukbt5lj6p3lr1ld -- 01:12:21.535 INFO [11652]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 01:12:21.535 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:12:21.546 INFO [11652]: COREGRADE is stopping... -- 01:12:21.546 DEBUG [11652]: Closing database connection -- 01:12:21.546 SQL [11652]: pgsql_close() -- 01:12:21.863 INFO [11652]: COREGRADE is starting... -- 01:12:21.863 INFO [11652]: Version from config: 1.0 -- 01:12:21.863 DEBUG [11652]: Connecting to database... -- 01:12:21.863 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:12:21.863 SQL [11652]: pgsql_db_connect() -- 01:12:21.867 DEBUG [11652]: Database connection successful -- 01:12:21.867 INFO [11652]: _SERVER found -- 01:12:21.867 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 01:12:21.867 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 01:12:21.867 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t99bfrqegs710ljecukbt5lj6p3lr1ld -- 01:12:21.867 INFO [11652]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:12:21.867 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:12:21.878 INFO [11652]: COREGRADE is stopping... -- 01:12:21.878 DEBUG [11652]: Closing database connection -- 01:12:21.878 SQL [11652]: pgsql_close() -- 01:13:00.373 INFO [12764]: COREGRADE is starting... -- 01:13:00.374 INFO [12764]: Version from config: 1.0 -- 01:13:00.374 DEBUG [12764]: Connecting to database... -- 01:13:00.374 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:13:00.374 SQL [12764]: pgsql_db_connect() -- 01:13:00.378 DEBUG [12764]: Database connection successful -- 01:13:00.378 INFO [12764]: _SERVER found -- 01:13:00.378 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 01:13:00.378 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 01:13:00.378 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kumb2tkc1ftqgibeub554ufu0uldr4o4 -- 01:13:00.378 INFO [12764]: QUERY_STRING = /member/page -- 01:13:00.378 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:13:00.415 INFO [12764]: COREGRADE is stopping... -- 01:13:00.416 DEBUG [12764]: Closing database connection -- 01:13:00.416 SQL [12764]: pgsql_close() -- 01:13:00.532 INFO [12764]: COREGRADE is starting... -- 01:13:00.532 INFO [12764]: Version from config: 1.0 -- 01:13:00.532 DEBUG [12764]: Connecting to database... -- 01:13:00.532 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:13:00.532 SQL [12764]: pgsql_db_connect() -- 01:13:00.536 DEBUG [12764]: Database connection successful -- 01:13:00.536 INFO [12764]: _SERVER found -- 01:13:00.536 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 01:13:00.536 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 01:13:00.536 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=bnp6pjfmoel2g7i2lfk9q49d4f071b1g -- 01:13:00.536 INFO [12764]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:13:00.536 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:13:00.547 INFO [12764]: COREGRADE is stopping... -- 01:13:00.548 DEBUG [12764]: Closing database connection -- 01:13:00.548 SQL [12764]: pgsql_close() -- 01:13:00.671 INFO [12764]: COREGRADE is starting... -- 01:13:00.671 INFO [12764]: Version from config: 1.0 -- 01:13:00.671 DEBUG [12764]: Connecting to database... -- 01:13:00.671 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:13:00.671 SQL [12764]: pgsql_db_connect() -- 01:13:00.675 DEBUG [12764]: Database connection successful -- 01:13:00.675 INFO [12764]: _SERVER found -- 01:13:00.675 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 01:13:00.675 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 01:13:00.675 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=bnp6pjfmoel2g7i2lfk9q49d4f071b1g -- 01:13:00.675 INFO [12764]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:13:00.675 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:13:00.686 INFO [12764]: COREGRADE is stopping... -- 01:13:00.686 DEBUG [12764]: Closing database connection -- 01:13:00.686 SQL [12764]: pgsql_close() -- 01:13:01.921 INFO [12764]: COREGRADE is starting... -- 01:13:01.921 INFO [12764]: Version from config: 1.0 -- 01:13:01.921 DEBUG [12764]: Connecting to database... -- 01:13:01.921 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:13:01.921 SQL [12764]: pgsql_db_connect() -- 01:13:01.925 DEBUG [12764]: Database connection successful -- 01:13:01.925 INFO [12764]: _SERVER found -- 01:13:01.925 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 01:13:01.925 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 01:13:01.925 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=bnp6pjfmoel2g7i2lfk9q49d4f071b1g -- 01:13:01.925 INFO [12764]: QUERY_STRING = /member/viewCardAddAction -- 01:13:01.925 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:13:01.956 INFO [12764]: COREGRADE is stopping... -- 01:13:01.956 DEBUG [12764]: Closing database connection -- 01:13:01.956 SQL [12764]: pgsql_close() -- 01:13:06.192 INFO [12764]: COREGRADE is starting... -- 01:13:06.193 INFO [12764]: Version from config: 1.0 -- 01:13:06.193 DEBUG [12764]: Connecting to database... -- 01:13:06.193 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:13:06.193 SQL [12764]: pgsql_db_connect() -- 01:13:06.197 DEBUG [12764]: Database connection successful -- 01:13:06.197 INFO [12764]: _SERVER found -- 01:13:06.197 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 01:13:06.197 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 01:13:06.197 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=bnp6pjfmoel2g7i2lfk9q49d4f071b1g -- 01:13:06.197 INFO [12764]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 01:13:06.197 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:13:06.208 INFO [12764]: COREGRADE is stopping... -- 01:13:06.208 DEBUG [12764]: Closing database connection -- 01:13:06.208 SQL [12764]: pgsql_close() -- 01:13:06.212 INFO [12764]: COREGRADE is starting... -- 01:13:06.212 INFO [12764]: Version from config: 1.0 -- 01:13:06.212 DEBUG [12764]: Connecting to database... -- 01:13:06.212 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:13:06.212 SQL [12764]: pgsql_db_connect() -- 01:13:06.216 DEBUG [12764]: Database connection successful -- 01:13:06.216 INFO [12764]: _SERVER found -- 01:13:06.216 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 01:13:06.216 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 01:13:06.216 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=bnp6pjfmoel2g7i2lfk9q49d4f071b1g -- 01:13:06.216 INFO [12764]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 01:13:06.216 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:13:06.227 INFO [12764]: COREGRADE is stopping... -- 01:13:06.227 DEBUG [12764]: Closing database connection -- 01:13:06.227 SQL [12764]: pgsql_close() -- 01:13:10.326 INFO [12764]: COREGRADE is starting... -- 01:13:10.327 INFO [12764]: Version from config: 1.0 -- 01:13:10.327 DEBUG [12764]: Connecting to database... -- 01:13:10.327 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:13:10.327 SQL [12764]: pgsql_db_connect() -- 01:13:10.331 DEBUG [12764]: Database connection successful -- 01:13:10.331 INFO [12764]: _SERVER found -- 01:13:10.331 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 01:13:10.331 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 01:13:10.331 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=bnp6pjfmoel2g7i2lfk9q49d4f071b1g -- 01:13:10.331 INFO [12764]: QUERY_STRING = /member/viewCardAddAction -- 01:13:10.331 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:13:10.361 INFO [12764]: COREGRADE is stopping... -- 01:13:10.361 DEBUG [12764]: Closing database connection -- 01:13:10.361 SQL [12764]: pgsql_close() -- 01:13:34.633 INFO [11638]: COREGRADE is starting... -- 01:13:34.633 INFO [11638]: Version from config: 1.0 -- 01:13:34.633 DEBUG [11638]: Connecting to database... -- 01:13:34.633 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:13:34.633 SQL [11638]: pgsql_db_connect() -- 01:13:34.637 DEBUG [11638]: Database connection successful -- 01:13:34.637 INFO [11638]: _SERVER found -- 01:13:34.637 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 01:13:34.637 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 01:13:34.637 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t99bfrqegs710ljecukbt5lj6p3lr1ld -- 01:13:34.637 INFO [11638]: QUERY_STRING = /member/page -- 01:13:34.637 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:13:34.673 INFO [11638]: COREGRADE is stopping... -- 01:13:34.673 DEBUG [11638]: Closing database connection -- 01:13:34.673 SQL [11638]: pgsql_close() -- 01:13:34.953 INFO [11650]: COREGRADE is starting... -- 01:13:34.953 INFO [11650]: Version from config: 1.0 -- 01:13:34.953 DEBUG [11650]: Connecting to database... -- 01:13:34.953 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:13:34.953 SQL [11650]: pgsql_db_connect() -- 01:13:34.961 INFO [11638]: COREGRADE is starting... -- 01:13:34.961 INFO [11638]: Version from config: 1.0 -- 01:13:34.961 DEBUG [11638]: Connecting to database... -- 01:13:34.961 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:13:34.961 SQL [11638]: pgsql_db_connect() -- 01:13:34.958 DEBUG [11650]: Database connection successful -- 01:13:34.958 INFO [11650]: _SERVER found -- 01:13:34.958 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 01:13:34.958 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 01:13:34.958 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t99bfrqegs710ljecukbt5lj6p3lr1ld -- 01:13:34.958 INFO [11650]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:13:34.958 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:13:34.969 INFO [11650]: COREGRADE is stopping... -- 01:13:34.969 DEBUG [11650]: Closing database connection -- 01:13:34.969 SQL [11650]: pgsql_close() -- 01:13:34.966 DEBUG [11638]: Database connection successful -- 01:13:34.966 INFO [11638]: _SERVER found -- 01:13:34.966 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 01:13:34.966 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 01:13:34.966 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t99bfrqegs710ljecukbt5lj6p3lr1ld -- 01:13:34.966 INFO [11638]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:13:34.966 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:13:34.976 INFO [11638]: COREGRADE is stopping... -- 01:13:34.976 DEBUG [11638]: Closing database connection -- 01:13:34.977 SQL [11638]: pgsql_close() -- 01:13:36.265 INFO [11638]: COREGRADE is starting... -- 01:13:36.266 INFO [11638]: Version from config: 1.0 -- 01:13:36.266 DEBUG [11638]: Connecting to database... -- 01:13:36.266 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:13:36.266 SQL [11638]: pgsql_db_connect() -- 01:13:36.270 DEBUG [11638]: Database connection successful -- 01:13:36.270 INFO [11638]: _SERVER found -- 01:13:36.270 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 01:13:36.270 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 01:13:36.270 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t99bfrqegs710ljecukbt5lj6p3lr1ld -- 01:13:36.270 INFO [11638]: QUERY_STRING = /member/page -- 01:13:36.270 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:13:36.306 INFO [11638]: COREGRADE is stopping... -- 01:13:36.306 DEBUG [11638]: Closing database connection -- 01:13:36.306 SQL [11638]: pgsql_close() -- 01:13:36.481 INFO [11638]: COREGRADE is starting... -- 01:13:36.481 INFO [11638]: Version from config: 1.0 -- 01:13:36.481 DEBUG [11638]: Connecting to database... -- 01:13:36.481 DEBUG [11638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:13:36.481 SQL [11638]: pgsql_db_connect() -- 01:13:36.490 INFO [11650]: COREGRADE is starting... -- 01:13:36.490 INFO [11650]: Version from config: 1.0 -- 01:13:36.490 DEBUG [11650]: Connecting to database... -- 01:13:36.490 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:13:36.490 SQL [11650]: pgsql_db_connect() -- 01:13:36.485 DEBUG [11638]: Database connection successful -- 01:13:36.485 INFO [11638]: _SERVER found -- 01:13:36.485 INFO [11638]: REMOTE_ADDR = 192.168.1.13 -- 01:13:36.485 INFO [11638]: SERVER_NAME = oameye.works.coregrade.com -- 01:13:36.485 INFO [11638]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t99bfrqegs710ljecukbt5lj6p3lr1ld -- 01:13:36.485 INFO [11638]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:13:36.485 INFO [11638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:13:36.496 INFO [11638]: COREGRADE is stopping... -- 01:13:36.496 DEBUG [11638]: Closing database connection -- 01:13:36.496 SQL [11638]: pgsql_close() -- 01:13:36.494 DEBUG [11650]: Database connection successful -- 01:13:36.494 INFO [11650]: _SERVER found -- 01:13:36.494 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 01:13:36.494 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 01:13:36.494 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t99bfrqegs710ljecukbt5lj6p3lr1ld -- 01:13:36.494 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:13:36.494 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:13:36.506 INFO [11650]: COREGRADE is stopping... -- 01:13:36.506 DEBUG [11650]: Closing database connection -- 01:13:36.506 SQL [11650]: pgsql_close() -- 01:13:40.462 INFO [11636]: COREGRADE is starting... -- 01:13:40.462 INFO [11636]: Version from config: 1.0 -- 01:13:40.462 DEBUG [11636]: Connecting to database... -- 01:13:40.462 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:13:40.462 SQL [11636]: pgsql_db_connect() -- 01:13:40.466 DEBUG [11636]: Database connection successful -- 01:13:40.466 INFO [11636]: _SERVER found -- 01:13:40.466 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 01:13:40.466 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 01:13:40.466 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=bnp6pjfmoel2g7i2lfk9q49d4f071b1g -- 01:13:40.466 INFO [11636]: QUERY_STRING = /member/viewCardAddAction -- 01:13:40.466 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:13:40.497 INFO [11636]: COREGRADE is stopping... -- 01:13:40.497 DEBUG [11636]: Closing database connection -- 01:13:40.497 SQL [11636]: pgsql_close() -- 01:13:42.651 INFO [11636]: COREGRADE is starting... -- 01:13:42.651 INFO [11636]: Version from config: 1.0 -- 01:13:42.651 DEBUG [11636]: Connecting to database... -- 01:13:42.651 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:13:42.651 SQL [11636]: pgsql_db_connect() -- 01:13:42.655 DEBUG [11636]: Database connection successful -- 01:13:42.655 INFO [11636]: _SERVER found -- 01:13:42.655 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 01:13:42.655 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 01:13:42.655 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=bnp6pjfmoel2g7i2lfk9q49d4f071b1g -- 01:13:42.655 INFO [11636]: QUERY_STRING = /member/viewCardAddAction -- 01:13:42.655 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:13:42.686 INFO [11636]: COREGRADE is stopping... -- 01:13:42.686 DEBUG [11636]: Closing database connection -- 01:13:42.686 SQL [11636]: pgsql_close() -- 01:14:54.173 INFO [11639]: COREGRADE is starting... -- 01:14:54.173 INFO [11639]: Version from config: 1.0 -- 01:14:54.173 DEBUG [11639]: Connecting to database... -- 01:14:54.173 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:14:54.173 SQL [11639]: pgsql_db_connect() -- 01:14:54.178 DEBUG [11639]: Database connection successful -- 01:14:54.178 INFO [11639]: _SERVER found -- 01:14:54.178 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 01:14:54.178 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 01:14:54.178 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=bnp6pjfmoel2g7i2lfk9q49d4f071b1g -- 01:14:54.178 INFO [11639]: QUERY_STRING = /member/viewCardAddAction -- 01:14:54.178 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:14:54.208 INFO [11639]: COREGRADE is stopping... -- 01:14:54.208 DEBUG [11639]: Closing database connection -- 01:14:54.209 SQL [11639]: pgsql_close() -- 01:14:55.629 INFO [11639]: COREGRADE is starting... -- 01:14:55.629 INFO [11639]: Version from config: 1.0 -- 01:14:55.629 DEBUG [11639]: Connecting to database... -- 01:14:55.629 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:14:55.629 SQL [11639]: pgsql_db_connect() -- 01:14:55.634 DEBUG [11639]: Database connection successful -- 01:14:55.634 INFO [11639]: _SERVER found -- 01:14:55.634 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 01:14:55.634 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 01:14:55.634 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=bnp6pjfmoel2g7i2lfk9q49d4f071b1g -- 01:14:55.634 INFO [11639]: QUERY_STRING = /member/viewCardAddAction -- 01:14:55.634 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:14:55.664 INFO [11639]: COREGRADE is stopping... -- 01:14:55.664 DEBUG [11639]: Closing database connection -- 01:14:55.664 SQL [11639]: pgsql_close() -- 01:14:59.379 INFO [11639]: COREGRADE is starting... -- 01:14:59.379 INFO [11639]: Version from config: 1.0 -- 01:14:59.379 DEBUG [11639]: Connecting to database... -- 01:14:59.379 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:14:59.379 SQL [11639]: pgsql_db_connect() -- 01:14:59.384 DEBUG [11639]: Database connection successful -- 01:14:59.384 INFO [11639]: _SERVER found -- 01:14:59.384 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 01:14:59.384 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 01:14:59.384 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=bnp6pjfmoel2g7i2lfk9q49d4f071b1g -- 01:14:59.384 INFO [11639]: QUERY_STRING = /member/page -- 01:14:59.384 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:14:59.419 INFO [11639]: COREGRADE is stopping... -- 01:14:59.419 DEBUG [11639]: Closing database connection -- 01:14:59.419 SQL [11639]: pgsql_close() -- 01:14:59.960 INFO [11639]: COREGRADE is starting... -- 01:14:59.960 INFO [11639]: Version from config: 1.0 -- 01:14:59.960 DEBUG [11639]: Connecting to database... -- 01:14:59.960 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:14:59.960 SQL [11639]: pgsql_db_connect() -- 01:14:59.964 DEBUG [11639]: Database connection successful -- 01:14:59.964 INFO [11639]: _SERVER found -- 01:14:59.964 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 01:14:59.964 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 01:14:59.964 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=bnp6pjfmoel2g7i2lfk9q49d4f071b1g -- 01:14:59.964 INFO [11639]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:14:59.964 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:14:59.975 INFO [11639]: COREGRADE is stopping... -- 01:14:59.976 DEBUG [11639]: Closing database connection -- 01:14:59.976 SQL [11639]: pgsql_close() -- 01:15:00.518 INFO [11637]: COREGRADE is starting... -- 01:15:00.519 INFO [11637]: Version from config: 1.0 -- 01:15:00.519 DEBUG [11637]: Connecting to database... -- 01:15:00.519 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:15:00.519 SQL [11637]: pgsql_db_connect() -- 01:15:00.522 INFO [12761]: COREGRADE is starting... -- 01:15:00.523 INFO [12761]: Version from config: 1.0 -- 01:15:00.523 DEBUG [12761]: Connecting to database... -- 01:15:00.523 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:15:00.523 SQL [12761]: pgsql_db_connect() -- 01:15:00.523 DEBUG [11637]: Database connection successful -- 01:15:00.523 INFO [11637]: _SERVER found -- 01:15:00.523 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 01:15:00.523 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 01:15:00.523 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=bnp6pjfmoel2g7i2lfk9q49d4f071b1g -- 01:15:00.523 INFO [11637]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:15:00.523 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:15:00.534 INFO [11637]: COREGRADE is stopping... -- 01:15:00.534 DEBUG [11637]: Closing database connection -- 01:15:00.534 SQL [11637]: pgsql_close() -- 01:15:00.527 DEBUG [12761]: Database connection successful -- 01:15:00.527 INFO [12761]: _SERVER found -- 01:15:00.527 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 01:15:00.527 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 01:15:00.527 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=bnp6pjfmoel2g7i2lfk9q49d4f071b1g -- 01:15:00.527 INFO [12761]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 01:15:00.527 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:15:00.538 INFO [12761]: COREGRADE is stopping... -- 01:15:00.538 DEBUG [12761]: Closing database connection -- 01:15:00.538 SQL [12761]: pgsql_close() -- 01:15:00.702 INFO [12761]: COREGRADE is starting... -- 01:15:00.702 INFO [12761]: Version from config: 1.0 -- 01:15:00.702 DEBUG [12761]: Connecting to database... -- 01:15:00.702 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:15:00.702 SQL [12761]: pgsql_db_connect() -- 01:15:00.706 DEBUG [12761]: Database connection successful -- 01:15:00.706 INFO [12761]: _SERVER found -- 01:15:00.706 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 01:15:00.706 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 01:15:00.706 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=bnp6pjfmoel2g7i2lfk9q49d4f071b1g -- 01:15:00.706 INFO [12761]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 01:15:00.706 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:15:00.717 INFO [12761]: COREGRADE is stopping... -- 01:15:00.717 DEBUG [12761]: Closing database connection -- 01:15:00.718 SQL [12761]: pgsql_close() -- 01:15:01.945 INFO [12761]: COREGRADE is starting... -- 01:15:01.945 INFO [12761]: Version from config: 1.0 -- 01:15:01.945 DEBUG [12761]: Connecting to database... -- 01:15:01.945 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:15:01.945 SQL [12761]: pgsql_db_connect() -- 01:15:01.949 DEBUG [12761]: Database connection successful -- 01:15:01.949 INFO [12761]: _SERVER found -- 01:15:01.949 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 01:15:01.949 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 01:15:01.949 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=bnp6pjfmoel2g7i2lfk9q49d4f071b1g -- 01:15:01.949 INFO [12761]: QUERY_STRING = /member/viewCardAddAction -- 01:15:01.949 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:15:01.980 INFO [12761]: COREGRADE is stopping... -- 01:15:01.980 DEBUG [12761]: Closing database connection -- 01:15:01.980 SQL [12761]: pgsql_close() -- 01:15:02.776 INFO [12761]: COREGRADE is starting... -- 01:15:02.776 INFO [12761]: Version from config: 1.0 -- 01:15:02.776 DEBUG [12761]: Connecting to database... -- 01:15:02.776 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:15:02.776 SQL [12761]: pgsql_db_connect() -- 01:15:02.780 DEBUG [12761]: Database connection successful -- 01:15:02.780 INFO [12761]: _SERVER found -- 01:15:02.780 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 01:15:02.780 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 01:15:02.780 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=bnp6pjfmoel2g7i2lfk9q49d4f071b1g -- 01:15:02.780 INFO [12761]: QUERY_STRING = /member/viewCardAddAction -- 01:15:02.780 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:15:02.811 INFO [12761]: COREGRADE is stopping... -- 01:15:02.811 DEBUG [12761]: Closing database connection -- 01:15:02.811 SQL [12761]: pgsql_close() -- 01:15:07.607 INFO [12761]: COREGRADE is starting... -- 01:15:07.607 INFO [12761]: Version from config: 1.0 -- 01:15:07.607 DEBUG [12761]: Connecting to database... -- 01:15:07.607 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:15:07.607 SQL [12761]: pgsql_db_connect() -- 01:15:07.611 DEBUG [12761]: Database connection successful -- 01:15:07.611 INFO [12761]: _SERVER found -- 01:15:07.611 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 01:15:07.611 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 01:15:07.611 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=bnp6pjfmoel2g7i2lfk9q49d4f071b1g -- 01:15:07.611 INFO [12761]: QUERY_STRING = /member/page -- 01:15:07.611 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:15:07.647 INFO [12761]: COREGRADE is stopping... -- 01:15:07.647 DEBUG [12761]: Closing database connection -- 01:15:07.647 SQL [12761]: pgsql_close() -- 01:15:08.198 INFO [12761]: COREGRADE is starting... -- 01:15:08.199 INFO [12761]: Version from config: 1.0 -- 01:15:08.199 DEBUG [12761]: Connecting to database... -- 01:15:08.199 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:15:08.199 SQL [12761]: pgsql_db_connect() -- 01:15:08.203 DEBUG [12761]: Database connection successful -- 01:15:08.203 INFO [12761]: _SERVER found -- 01:15:08.203 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 01:15:08.203 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 01:15:08.203 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=bnp6pjfmoel2g7i2lfk9q49d4f071b1g -- 01:15:08.203 INFO [12761]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:15:08.203 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:15:08.214 INFO [12761]: COREGRADE is stopping... -- 01:15:08.214 DEBUG [12761]: Closing database connection -- 01:15:08.214 SQL [12761]: pgsql_close() -- 01:15:08.240 INFO [12761]: COREGRADE is starting... -- 01:15:08.240 INFO [12761]: Version from config: 1.0 -- 01:15:08.240 DEBUG [12761]: Connecting to database... -- 01:15:08.240 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:15:08.240 SQL [12761]: pgsql_db_connect() -- 01:15:08.246 INFO [12764]: COREGRADE is starting... -- 01:15:08.246 INFO [12764]: Version from config: 1.0 -- 01:15:08.246 DEBUG [12764]: Connecting to database... -- 01:15:08.246 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:15:08.246 SQL [12764]: pgsql_db_connect() -- 01:15:08.244 DEBUG [12761]: Database connection successful -- 01:15:08.244 INFO [12761]: _SERVER found -- 01:15:08.244 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 01:15:08.244 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 01:15:08.244 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=bnp6pjfmoel2g7i2lfk9q49d4f071b1g -- 01:15:08.244 INFO [12761]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 01:15:08.244 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:15:08.255 INFO [12761]: COREGRADE is stopping... -- 01:15:08.255 DEBUG [12761]: Closing database connection -- 01:15:08.255 SQL [12761]: pgsql_close() -- 01:15:08.250 DEBUG [12764]: Database connection successful -- 01:15:08.250 INFO [12764]: _SERVER found -- 01:15:08.250 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 01:15:08.250 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 01:15:08.250 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=bnp6pjfmoel2g7i2lfk9q49d4f071b1g -- 01:15:08.250 INFO [12764]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 01:15:08.250 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:15:08.261 INFO [12764]: COREGRADE is stopping... -- 01:15:08.261 DEBUG [12764]: Closing database connection -- 01:15:08.261 SQL [12764]: pgsql_close() -- 01:15:08.285 INFO [12764]: COREGRADE is starting... -- 01:15:08.285 INFO [12764]: Version from config: 1.0 -- 01:15:08.285 DEBUG [12764]: Connecting to database... -- 01:15:08.285 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:15:08.285 SQL [12764]: pgsql_db_connect() -- 01:15:08.289 DEBUG [12764]: Database connection successful -- 01:15:08.289 INFO [12764]: _SERVER found -- 01:15:08.289 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 01:15:08.289 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 01:15:08.289 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=bnp6pjfmoel2g7i2lfk9q49d4f071b1g -- 01:15:08.289 INFO [12764]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:15:08.289 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:15:08.300 INFO [12764]: COREGRADE is stopping... -- 01:15:08.300 DEBUG [12764]: Closing database connection -- 01:15:08.300 SQL [12764]: pgsql_close() -- 01:15:09.887 INFO [12764]: COREGRADE is starting... -- 01:15:09.887 INFO [12764]: Version from config: 1.0 -- 01:15:09.888 DEBUG [12764]: Connecting to database... -- 01:15:09.888 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:15:09.888 SQL [12764]: pgsql_db_connect() -- 01:15:09.892 DEBUG [12764]: Database connection successful -- 01:15:09.892 INFO [12764]: _SERVER found -- 01:15:09.892 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 01:15:09.892 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 01:15:09.892 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=bnp6pjfmoel2g7i2lfk9q49d4f071b1g -- 01:15:09.892 INFO [12764]: QUERY_STRING = /member/page -- 01:15:09.892 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:15:09.928 INFO [12764]: COREGRADE is stopping... -- 01:15:09.928 DEBUG [12764]: Closing database connection -- 01:15:09.928 SQL [12764]: pgsql_close() -- 01:15:10.197 INFO [12764]: COREGRADE is starting... -- 01:15:10.197 INFO [12764]: Version from config: 1.0 -- 01:15:10.197 DEBUG [12764]: Connecting to database... -- 01:15:10.197 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:15:10.197 SQL [12764]: pgsql_db_connect() -- 01:15:10.202 DEBUG [12764]: Database connection successful -- 01:15:10.202 INFO [12764]: _SERVER found -- 01:15:10.202 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 01:15:10.202 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 01:15:10.202 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=bnp6pjfmoel2g7i2lfk9q49d4f071b1g -- 01:15:10.202 INFO [12764]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:15:10.202 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:15:10.213 INFO [12764]: COREGRADE is stopping... -- 01:15:10.213 DEBUG [12764]: Closing database connection -- 01:15:10.213 SQL [12764]: pgsql_close() -- 01:15:10.348 INFO [12764]: COREGRADE is starting... -- 01:15:10.348 INFO [12764]: Version from config: 1.0 -- 01:15:10.348 DEBUG [12764]: Connecting to database... -- 01:15:10.348 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:15:10.348 SQL [12764]: pgsql_db_connect() -- 01:15:10.352 DEBUG [12764]: Database connection successful -- 01:15:10.352 INFO [12764]: _SERVER found -- 01:15:10.352 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 01:15:10.352 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 01:15:10.352 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=bnp6pjfmoel2g7i2lfk9q49d4f071b1g -- 01:15:10.352 INFO [12764]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:15:10.352 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:15:10.363 INFO [12764]: COREGRADE is stopping... -- 01:15:10.363 DEBUG [12764]: Closing database connection -- 01:15:10.363 SQL [12764]: pgsql_close() -- 01:15:10.607 INFO [12764]: COREGRADE is starting... -- 01:15:10.608 INFO [12764]: Version from config: 1.0 -- 01:15:10.608 DEBUG [12764]: Connecting to database... -- 01:15:10.608 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:15:10.608 SQL [12764]: pgsql_db_connect() -- 01:15:10.609 INFO [12761]: COREGRADE is starting... -- 01:15:10.609 INFO [12761]: Version from config: 1.0 -- 01:15:10.609 DEBUG [12761]: Connecting to database... -- 01:15:10.609 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:15:10.609 SQL [12761]: pgsql_db_connect() -- 01:15:10.612 DEBUG [12764]: Database connection successful -- 01:15:10.612 INFO [12764]: _SERVER found -- 01:15:10.612 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 01:15:10.612 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 01:15:10.612 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=bnp6pjfmoel2g7i2lfk9q49d4f071b1g -- 01:15:10.612 INFO [12764]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 01:15:10.612 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:15:10.623 INFO [12764]: COREGRADE is stopping... -- 01:15:10.623 DEBUG [12764]: Closing database connection -- 01:15:10.623 SQL [12764]: pgsql_close() -- 01:15:10.613 DEBUG [12761]: Database connection successful -- 01:15:10.613 INFO [12761]: _SERVER found -- 01:15:10.613 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 01:15:10.613 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 01:15:10.613 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=bnp6pjfmoel2g7i2lfk9q49d4f071b1g -- 01:15:10.613 INFO [12761]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 01:15:10.613 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:15:10.624 INFO [12761]: COREGRADE is stopping... -- 01:15:10.624 DEBUG [12761]: Closing database connection -- 01:15:10.624 SQL [12761]: pgsql_close() -- 01:19:33.448 INFO [11650]: COREGRADE is starting... -- 01:19:33.449 INFO [11650]: Version from config: 1.0 -- 01:19:33.449 DEBUG [11650]: Connecting to database... -- 01:19:33.449 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:19:33.449 SQL [11650]: pgsql_db_connect() -- 01:19:33.453 DEBUG [11650]: Database connection successful -- 01:19:33.453 INFO [11650]: _SERVER found -- 01:19:33.453 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 01:19:33.453 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 01:19:33.453 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=bnp6pjfmoel2g7i2lfk9q49d4f071b1g -- 01:19:33.453 INFO [11650]: QUERY_STRING = /member/page -- 01:19:33.453 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:19:33.492 INFO [11650]: COREGRADE is stopping... -- 01:19:33.492 DEBUG [11650]: Closing database connection -- 01:19:33.492 SQL [11650]: pgsql_close() -- 01:19:33.760 INFO [11650]: COREGRADE is starting... -- 01:19:33.761 INFO [11650]: Version from config: 1.0 -- 01:19:33.761 DEBUG [11650]: Connecting to database... -- 01:19:33.761 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:19:33.761 SQL [11650]: pgsql_db_connect() -- 01:19:33.765 DEBUG [11650]: Database connection successful -- 01:19:33.765 INFO [11650]: _SERVER found -- 01:19:33.765 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 01:19:33.765 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 01:19:33.765 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=6hdtmqn80eo77pt23in54sn1admopoae -- 01:19:33.765 INFO [11650]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:19:33.765 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:19:33.776 INFO [11650]: COREGRADE is stopping... -- 01:19:33.776 DEBUG [11650]: Closing database connection -- 01:19:33.776 SQL [11650]: pgsql_close() -- 01:19:33.982 INFO [11650]: COREGRADE is starting... -- 01:19:33.983 INFO [11650]: Version from config: 1.0 -- 01:19:33.983 DEBUG [11650]: Connecting to database... -- 01:19:33.983 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:19:33.983 SQL [11650]: pgsql_db_connect() -- 01:19:33.987 DEBUG [11650]: Database connection successful -- 01:19:33.987 INFO [11650]: _SERVER found -- 01:19:33.987 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 01:19:33.987 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 01:19:33.987 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=6hdtmqn80eo77pt23in54sn1admopoae -- 01:19:33.987 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:19:33.987 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:19:33.998 INFO [11650]: COREGRADE is stopping... -- 01:19:33.998 DEBUG [11650]: Closing database connection -- 01:19:33.998 SQL [11650]: pgsql_close() -- 01:19:34.213 INFO [11650]: COREGRADE is starting... -- 01:19:34.213 INFO [11650]: Version from config: 1.0 -- 01:19:34.213 DEBUG [11650]: Connecting to database... -- 01:19:34.213 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:19:34.213 SQL [11650]: pgsql_db_connect() -- 01:19:34.220 INFO [11636]: COREGRADE is starting... -- 01:19:34.220 INFO [11636]: Version from config: 1.0 -- 01:19:34.220 DEBUG [11636]: Connecting to database... -- 01:19:34.220 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:19:34.220 SQL [11636]: pgsql_db_connect() -- 01:19:34.217 DEBUG [11650]: Database connection successful -- 01:19:34.218 INFO [11650]: _SERVER found -- 01:19:34.218 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 01:19:34.218 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 01:19:34.218 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=6hdtmqn80eo77pt23in54sn1admopoae -- 01:19:34.218 INFO [11650]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 01:19:34.218 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:19:34.229 INFO [11650]: COREGRADE is stopping... -- 01:19:34.229 DEBUG [11650]: Closing database connection -- 01:19:34.229 SQL [11650]: pgsql_close() -- 01:19:34.224 DEBUG [11636]: Database connection successful -- 01:19:34.224 INFO [11636]: _SERVER found -- 01:19:34.224 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 01:19:34.224 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 01:19:34.224 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=6hdtmqn80eo77pt23in54sn1admopoae -- 01:19:34.224 INFO [11636]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 01:19:34.224 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:19:34.236 INFO [11636]: COREGRADE is stopping... -- 01:19:34.236 DEBUG [11636]: Closing database connection -- 01:19:34.236 SQL [11636]: pgsql_close() -- 01:19:35.246 INFO [11636]: COREGRADE is starting... -- 01:19:35.246 INFO [11636]: Version from config: 1.0 -- 01:19:35.246 DEBUG [11636]: Connecting to database... -- 01:19:35.246 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:19:35.246 SQL [11636]: pgsql_db_connect() -- 01:19:35.250 DEBUG [11636]: Database connection successful -- 01:19:35.250 INFO [11636]: _SERVER found -- 01:19:35.250 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 01:19:35.250 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 01:19:35.250 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=6hdtmqn80eo77pt23in54sn1admopoae -- 01:19:35.250 INFO [11636]: QUERY_STRING = /member/viewCardAddAction -- 01:19:35.250 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:19:35.281 INFO [11636]: COREGRADE is stopping... -- 01:19:35.281 DEBUG [11636]: Closing database connection -- 01:19:35.281 SQL [11636]: pgsql_close() -- 01:19:36.013 INFO [11636]: COREGRADE is starting... -- 01:19:36.013 INFO [11636]: Version from config: 1.0 -- 01:19:36.013 DEBUG [11636]: Connecting to database... -- 01:19:36.013 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:19:36.013 SQL [11636]: pgsql_db_connect() -- 01:19:36.017 DEBUG [11636]: Database connection successful -- 01:19:36.017 INFO [11636]: _SERVER found -- 01:19:36.017 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 01:19:36.017 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 01:19:36.017 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t99bfrqegs710ljecukbt5lj6p3lr1ld -- 01:19:36.017 INFO [11636]: QUERY_STRING = /member/viewCardAddAction -- 01:19:36.017 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:19:36.048 INFO [11636]: COREGRADE is stopping... -- 01:19:36.048 DEBUG [11636]: Closing database connection -- 01:19:36.048 SQL [11636]: pgsql_close() -- 01:19:38.876 INFO [11636]: COREGRADE is starting... -- 01:19:38.877 INFO [11636]: Version from config: 1.0 -- 01:19:38.877 DEBUG [11636]: Connecting to database... -- 01:19:38.877 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:19:38.877 SQL [11636]: pgsql_db_connect() -- 01:19:38.880 DEBUG [11636]: Database connection successful -- 01:19:38.880 INFO [11636]: _SERVER found -- 01:19:38.880 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 01:19:38.880 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 01:19:38.881 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=t99bfrqegs710ljecukbt5lj6p3lr1ld -- 01:19:38.881 INFO [11636]: QUERY_STRING = /member/page -- 01:19:38.881 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:19:38.916 INFO [11636]: COREGRADE is stopping... -- 01:19:38.916 DEBUG [11636]: Closing database connection -- 01:19:38.916 SQL [11636]: pgsql_close() -- 01:19:39.184 INFO [11636]: COREGRADE is starting... -- 01:19:39.184 INFO [11636]: Version from config: 1.0 -- 01:19:39.184 DEBUG [11636]: Connecting to database... -- 01:19:39.184 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:19:39.184 SQL [11636]: pgsql_db_connect() -- 01:19:39.196 INFO [11650]: COREGRADE is starting... -- 01:19:39.197 INFO [11650]: Version from config: 1.0 -- 01:19:39.197 DEBUG [11650]: Connecting to database... -- 01:19:39.197 DEBUG [11650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:19:39.197 SQL [11650]: pgsql_db_connect() -- 01:19:39.188 DEBUG [11636]: Database connection successful -- 01:19:39.188 INFO [11636]: _SERVER found -- 01:19:39.188 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 01:19:39.188 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 01:19:39.188 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ckfife918evqresoo9vo8h9alcfk4ebb -- 01:19:39.188 INFO [11636]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:19:39.188 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:19:39.199 INFO [11636]: COREGRADE is stopping... -- 01:19:39.199 DEBUG [11636]: Closing database connection -- 01:19:39.199 SQL [11636]: pgsql_close() -- 01:19:39.201 DEBUG [11650]: Database connection successful -- 01:19:39.201 INFO [11650]: _SERVER found -- 01:19:39.201 INFO [11650]: REMOTE_ADDR = 192.168.1.13 -- 01:19:39.201 INFO [11650]: SERVER_NAME = oameye.works.coregrade.com -- 01:19:39.201 INFO [11650]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ckfife918evqresoo9vo8h9alcfk4ebb -- 01:19:39.201 INFO [11650]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:19:39.201 INFO [11650]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:19:39.212 INFO [11650]: COREGRADE is stopping... -- 01:19:39.212 DEBUG [11650]: Closing database connection -- 01:19:39.212 SQL [11650]: pgsql_close() -- 01:20:28.323 INFO [15568]: COREGRADE is starting... -- 01:20:28.324 INFO [15568]: Version from config: 1.0 -- 01:20:28.324 DEBUG [15568]: Connecting to database... -- 01:20:28.324 DEBUG [15568]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:20:28.324 SQL [15568]: pgsql_db_connect() -- 01:20:28.328 DEBUG [15568]: Database connection successful -- 01:20:28.328 INFO [15568]: _SERVER found -- 01:20:28.328 INFO [15568]: REMOTE_ADDR = 192.168.1.13 -- 01:20:28.328 INFO [15568]: SERVER_NAME = oameye.works.coregrade.com -- 01:20:28.328 INFO [15568]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=6hdtmqn80eo77pt23in54sn1admopoae -- 01:20:28.328 INFO [15568]: QUERY_STRING = /member/viewCardAddAction -- 01:20:28.328 INFO [15568]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:20:28.365 INFO [15568]: COREGRADE is stopping... -- 01:20:28.365 DEBUG [15568]: Closing database connection -- 01:20:28.365 SQL [15568]: pgsql_close() -- 01:20:28.871 INFO [15568]: COREGRADE is starting... -- 01:20:28.872 INFO [15568]: Version from config: 1.0 -- 01:20:28.872 DEBUG [15568]: Connecting to database... -- 01:20:28.872 DEBUG [15568]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:20:28.872 SQL [15568]: pgsql_db_connect() -- 01:20:28.876 DEBUG [15568]: Database connection successful -- 01:20:28.876 INFO [15568]: _SERVER found -- 01:20:28.876 INFO [15568]: REMOTE_ADDR = 192.168.1.13 -- 01:20:28.876 INFO [15568]: SERVER_NAME = oameye.works.coregrade.com -- 01:20:28.876 INFO [15568]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=6hdtmqn80eo77pt23in54sn1admopoae -- 01:20:28.876 INFO [15568]: QUERY_STRING = /member/viewCardAddAction -- 01:20:28.876 INFO [15568]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:20:28.910 INFO [15568]: COREGRADE is stopping... -- 01:20:28.910 DEBUG [15568]: Closing database connection -- 01:20:28.910 SQL [15568]: pgsql_close() -- 01:20:55.564 INFO [11644]: COREGRADE is starting... -- 01:20:55.564 INFO [11644]: Version from config: 1.0 -- 01:20:55.564 DEBUG [11644]: Connecting to database... -- 01:20:55.564 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:20:55.564 SQL [11644]: pgsql_db_connect() -- 01:20:55.569 DEBUG [11644]: Database connection successful -- 01:20:55.569 INFO [11644]: _SERVER found -- 01:20:55.569 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 01:20:55.569 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 01:20:55.569 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=6hdtmqn80eo77pt23in54sn1admopoae -- 01:20:55.569 INFO [11644]: QUERY_STRING = /member/page -- 01:20:55.569 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:20:55.605 INFO [11644]: COREGRADE is stopping... -- 01:20:55.605 DEBUG [11644]: Closing database connection -- 01:20:55.605 SQL [11644]: pgsql_close() -- 01:20:55.895 INFO [11644]: COREGRADE is starting... -- 01:20:55.895 INFO [11644]: Version from config: 1.0 -- 01:20:55.895 DEBUG [11644]: Connecting to database... -- 01:20:55.895 DEBUG [11644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:20:55.895 SQL [11644]: pgsql_db_connect() -- 01:20:55.910 INFO [11652]: COREGRADE is starting... -- 01:20:55.910 INFO [11652]: Version from config: 1.0 -- 01:20:55.910 DEBUG [11652]: Connecting to database... -- 01:20:55.899 DEBUG [11644]: Database connection successful -- 01:20:55.899 INFO [11644]: _SERVER found -- 01:20:55.899 INFO [11644]: REMOTE_ADDR = 192.168.1.13 -- 01:20:55.899 INFO [11644]: SERVER_NAME = oameye.works.coregrade.com -- 01:20:55.899 INFO [11644]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=6hdtmqn80eo77pt23in54sn1admopoae -- 01:20:55.899 INFO [11644]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:20:55.899 INFO [11644]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:20:55.910 INFO [11644]: COREGRADE is stopping... -- 01:20:55.910 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:20:55.910 DEBUG [11644]: Closing database connection -- 01:20:55.910 SQL [11652]: pgsql_db_connect() -- 01:20:55.910 SQL [11644]: pgsql_close() -- 01:20:55.914 DEBUG [11652]: Database connection successful -- 01:20:55.914 INFO [11652]: _SERVER found -- 01:20:55.914 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 01:20:55.914 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 01:20:55.914 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=6hdtmqn80eo77pt23in54sn1admopoae -- 01:20:55.914 INFO [11652]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:20:55.914 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:20:55.926 INFO [11652]: COREGRADE is stopping... -- 01:20:55.926 DEBUG [11652]: Closing database connection -- 01:20:55.926 SQL [11652]: pgsql_close() -- 01:20:57.283 INFO [11652]: COREGRADE is starting... -- 01:20:57.284 INFO [11652]: Version from config: 1.0 -- 01:20:57.284 DEBUG [11652]: Connecting to database... -- 01:20:57.284 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:20:57.284 SQL [11652]: pgsql_db_connect() -- 01:20:57.288 DEBUG [11652]: Database connection successful -- 01:20:57.288 INFO [11652]: _SERVER found -- 01:20:57.288 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 01:20:57.288 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 01:20:57.288 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=6hdtmqn80eo77pt23in54sn1admopoae -- 01:20:57.288 INFO [11652]: QUERY_STRING = /member/page -- 01:20:57.288 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:20:57.325 INFO [11652]: COREGRADE is stopping... -- 01:20:57.325 DEBUG [11652]: Closing database connection -- 01:20:57.325 SQL [11652]: pgsql_close() -- 01:20:57.483 INFO [11652]: COREGRADE is starting... -- 01:20:57.484 INFO [11652]: Version from config: 1.0 -- 01:20:57.484 DEBUG [11652]: Connecting to database... -- 01:20:57.484 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:20:57.484 SQL [11652]: pgsql_db_connect() -- 01:20:57.488 DEBUG [11652]: Database connection successful -- 01:20:57.488 INFO [11652]: _SERVER found -- 01:20:57.488 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 01:20:57.488 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 01:20:57.488 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=6hdtmqn80eo77pt23in54sn1admopoae -- 01:20:57.488 INFO [11652]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:20:57.488 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:20:57.499 INFO [11652]: COREGRADE is stopping... -- 01:20:57.499 DEBUG [11652]: Closing database connection -- 01:20:57.499 SQL [11652]: pgsql_close() -- 01:20:57.556 INFO [11652]: COREGRADE is starting... -- 01:20:57.556 INFO [11652]: Version from config: 1.0 -- 01:20:57.556 DEBUG [11652]: Connecting to database... -- 01:20:57.556 DEBUG [11652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:20:57.556 SQL [11652]: pgsql_db_connect() -- 01:20:57.560 DEBUG [11652]: Database connection successful -- 01:20:57.560 INFO [11652]: _SERVER found -- 01:20:57.560 INFO [11652]: REMOTE_ADDR = 192.168.1.13 -- 01:20:57.560 INFO [11652]: SERVER_NAME = oameye.works.coregrade.com -- 01:20:57.560 INFO [11652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=6hdtmqn80eo77pt23in54sn1admopoae -- 01:20:57.560 INFO [11652]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:20:57.560 INFO [11652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:20:57.571 INFO [11652]: COREGRADE is stopping... -- 01:20:57.571 DEBUG [11652]: Closing database connection -- 01:20:57.571 SQL [11652]: pgsql_close() -- 01:21:37.028 INFO [11639]: COREGRADE is starting... -- 01:21:37.029 INFO [11639]: Version from config: 1.0 -- 01:21:37.029 DEBUG [11639]: Connecting to database... -- 01:21:37.029 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:21:37.029 SQL [11639]: pgsql_db_connect() -- 01:21:37.064 INFO [11639]: COREGRADE is starting... -- 01:21:37.064 INFO [11639]: Version from config: 1.0 -- 01:21:37.064 DEBUG [11639]: Connecting to database... -- 01:21:37.064 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:21:37.064 SQL [11639]: pgsql_db_connect() -- 01:21:37.068 DEBUG [11639]: Database connection successful -- 01:21:37.068 INFO [11639]: _SERVER found -- 01:21:37.068 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 01:21:37.068 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 01:21:37.068 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ckfife918evqresoo9vo8h9alcfk4ebb -- 01:21:37.068 INFO [11639]: QUERY_STRING = -- 01:21:37.068 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:21:37.068 INFO [11639]: SystemStatus()09-09-********~************ -- 01:21:37.068 INFO [11639]: long coregrade_api_main(CVars in, CVars &out) -- 01:21:37.068 INFO [11639]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 01:21:37.068 INFO [11639]: account calls -- 01:21:37.068 INFO [11639]: account_calls() -- 01:21:37.068 INFO [11639]: LoginCoreGradeAccount() -- 01:21:37.068 FLOG_MAX [11639]: REQ_STRING(username) -- 01:21:37.068 FLOG_MAX [11639]: REQ_STRING(password) -- 01:21:37.068 FLOG_MAX [11639]: REQ_STRING(sessionid) -- 01:21:37.068 FLOG_MAX [11639]: long load_db_record( CVars &rec, const char * query, ... ) -- 01:21:37.068 SQL [11639]: pgsql_query() -- 01:21:37.068 SQL [11639]: About to run query: -- 01:21:37.068 SQL [11639]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 01:21:37.072 SQL [11639]: Found rows: 1 -- 01:21:37.072 FLOG_MAX [11639]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=15 -- 01:21:37.072 INFO [11639]: long SessionCheck(long uid, const char *sessionid, int create ) -- 01:21:37.072 SQL [11639]: pgsql_exec() -- 01:21:37.072 SQL [11639]: About to run query: -- 01:21:37.072 SQL [11639]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 01:21:37.072 SQL [11639]: PQcmdTuples: 0 -- 01:21:37.072 SQL [11639]: Affected rows: 0 -- 01:21:37.072 SQL [11639]: pgsql_exec() -- 01:21:37.072 SQL [11639]: About to run query: -- 01:21:37.072 SQL [11639]: DELETE FROM members_session WHERE member_id=7 -- 01:21:37.073 SQL [11639]: PQcmdTuples: 1 -- 01:21:37.073 SQL [11639]: Affected rows: 1 -- 01:21:37.073 SQL [11639]: pgsql_query() -- 01:21:37.073 SQL [11639]: About to run query: -- 01:21:37.073 SQL [11639]: SELECT * FROM members_session WHERE member_id=7 AND session<>'897327E9EF20DE1C640F8C692E6689E7' -- 01:21:37.074 SQL [11639]: Found rows: 0 -- 01:21:37.074 SQL [11639]: Found rows: 0 -- 01:21:37.074 FLOG_MAX [11639]: long load_db_record( CVars &rec, const char * query, ... ) -- 01:21:37.074 SQL [11639]: pgsql_query() -- 01:21:37.074 SQL [11639]: About to run query: -- 01:21:37.074 SQL [11639]: SELECT * FROM members_session WHERE member_id=7 AND session='897327E9EF20DE1C640F8C692E6689E7' -- 01:21:37.074 SQL [11639]: Found rows: 0 -- 01:21:37.074 SQL [11639]: Found rows: 0 -- 01:21:37.074 FLOG_MAX [11639]: insert_db_record() -- 01:21:37.074 SQL [11639]: pgsql_exec() -- 01:21:37.074 SQL [11639]: About to run query: -- 01:21:37.074 SQL [11639]: INSERT INTO members_session (member_id,session) VALUES ('7','897327E9EF20DE1C640F8C692E6689E7') -- 01:21:37.076 SQL [11639]: PQcmdTuples: 1 -- 01:21:37.076 SQL [11639]: Affected rows: 1 -- 01:21:37.076 FLOG_MAX [11639]: SELECT currval('members_session_id_seq') -- 01:21:37.076 SQL [11639]: pgsql_query() -- 01:21:37.076 SQL [11639]: About to run query: -- 01:21:37.076 SQL [11639]: SELECT currval('members_session_id_seq') -- 01:21:37.076 SQL [11639]: Found rows: 1 -- 01:21:37.076 INFO [11639]: CreateDefaultPage() -- 01:21:37.076 FLOG_MAX [11639]: long load_db_record( CVars &rec, const char * query, ... ) -- 01:21:37.076 SQL [11639]: pgsql_query() -- 01:21:37.076 SQL [11639]: About to run query: -- 01:21:37.076 SQL [11639]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 01:21:37.077 SQL [11639]: Found rows: 1 -- 01:21:37.077 FLOG_MAX [11639]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 01:21:37.077 SQL [11639]: pgsql_query() -- 01:21:37.077 SQL [11639]: About to run query: -- 01:21:37.077 SQL [11639]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 01:21:37.077 SQL [11639]: Found rows: 1 -- 01:21:37.077 INFO [11639]: /CreateDefaultPage() -- 01:21:37.077 INFO [11639]: /LoginCoreGradeAccount() -- 01:21:37.077 INFO [11639]: RET: added=2020-02-05 09:42:12.816064 -- 01:21:37.077 INFO [11639]: RET: email=tokslaw@chiefsoft.com -- 01:21:37.077 INFO [11639]: RET: firstname=Tokunbo -- 01:21:37.077 INFO [11639]: RET: id=7 -- 01:21:37.077 INFO [11639]: RET: last_login= -- 01:21:37.077 INFO [11639]: RET: lastname=Lawal -- 01:21:37.077 INFO [11639]: RET: loc=192.168.1.13 -- 01:21:37.077 INFO [11639]: RET: member_id=7 -- 01:21:37.077 INFO [11639]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 01:21:37.077 INFO [11639]: RET: phone= -- 01:21:37.077 INFO [11639]: RET: pid= -- 01:21:37.077 INFO [11639]: RET: result=YES I GET TO BACK END -- 01:21:37.077 INFO [11639]: RET: sessionid=897327E9EF20DE1C640F8C692E6689E7 -- 01:21:37.077 INFO [11639]: RET: status=1 -- 01:21:37.077 INFO [11639]: RET: stauts=OK -- 01:21:37.077 INFO [11639]: RET: username=tokslaw@chiefsoft.com -- 01:21:37.077 INFO [11639]: RET: verified= -- 01:21:37.079 INFO [11639]: COREGRADE is stopping... -- 01:21:37.079 DEBUG [11639]: Closing database connection -- 01:21:37.079 SQL [11639]: pgsql_close() -- 01:21:37.033 DEBUG [11639]: Database connection successful -- 01:21:37.033 INFO [11639]: _SERVER found -- 01:21:37.033 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 01:21:37.033 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 01:21:37.033 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ckfife918evqresoo9vo8h9alcfk4ebb -- 01:21:37.033 INFO [11639]: QUERY_STRING = /auth -- 01:21:37.033 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:21:37.079 INFO [11639]: COREGRADE is stopping... -- 01:21:37.079 DEBUG [11639]: Closing database connection -- 01:21:37.079 SQL [11639]: pgsql_close() -- 01:21:37.098 INFO [11639]: COREGRADE is starting... -- 01:21:37.098 INFO [11639]: Version from config: 1.0 -- 01:21:37.098 DEBUG [11639]: Connecting to database... -- 01:21:37.098 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:21:37.098 SQL [11639]: pgsql_db_connect() -- 01:21:37.102 DEBUG [11639]: Database connection successful -- 01:21:37.102 INFO [11639]: _SERVER found -- 01:21:37.102 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 01:21:37.102 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 01:21:37.102 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ckfife918evqresoo9vo8h9alcfk4ebb -- 01:21:37.102 INFO [11639]: QUERY_STRING = /member/index -- 01:21:37.102 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:21:37.137 INFO [11639]: COREGRADE is stopping... -- 01:21:37.137 DEBUG [11639]: Closing database connection -- 01:21:37.137 SQL [11639]: pgsql_close() -- 01:21:37.415 INFO [11639]: COREGRADE is starting... -- 01:21:37.415 INFO [11639]: Version from config: 1.0 -- 01:21:37.415 DEBUG [11639]: Connecting to database... -- 01:21:37.415 DEBUG [11639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:21:37.415 SQL [11639]: pgsql_db_connect() -- 01:21:37.419 DEBUG [11639]: Database connection successful -- 01:21:37.419 INFO [11639]: _SERVER found -- 01:21:37.419 INFO [11639]: REMOTE_ADDR = 192.168.1.13 -- 01:21:37.419 INFO [11639]: SERVER_NAME = oameye.works.coregrade.com -- 01:21:37.419 INFO [11639]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ckfife918evqresoo9vo8h9alcfk4ebb -- 01:21:37.419 INFO [11639]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:21:37.419 INFO [11639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:21:37.430 INFO [11639]: COREGRADE is stopping... -- 01:21:37.430 DEBUG [11639]: Closing database connection -- 01:21:37.430 SQL [11639]: pgsql_close() -- 01:21:37.432 INFO [12763]: COREGRADE is starting... -- 01:21:37.432 INFO [12763]: Version from config: 1.0 -- 01:21:37.432 DEBUG [12763]: Connecting to database... -- 01:21:37.432 DEBUG [12763]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:21:37.432 SQL [12763]: pgsql_db_connect() -- 01:21:37.436 DEBUG [12763]: Database connection successful -- 01:21:37.436 INFO [12763]: _SERVER found -- 01:21:37.436 INFO [12763]: REMOTE_ADDR = 192.168.1.13 -- 01:21:37.436 INFO [12763]: SERVER_NAME = oameye.works.coregrade.com -- 01:21:37.436 INFO [12763]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ckfife918evqresoo9vo8h9alcfk4ebb -- 01:21:37.436 INFO [12763]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:21:37.436 INFO [12763]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:21:37.447 INFO [12763]: COREGRADE is stopping... -- 01:21:37.447 DEBUG [12763]: Closing database connection -- 01:21:37.447 SQL [12763]: pgsql_close() -- 01:39:39.339 INFO [11637]: COREGRADE is starting... -- 01:39:39.339 INFO [11637]: Version from config: 1.0 -- 01:39:39.339 DEBUG [11637]: Connecting to database... -- 01:39:39.339 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:39:39.339 SQL [11637]: pgsql_db_connect() -- 01:39:39.344 DEBUG [11637]: Database connection successful -- 01:39:39.344 INFO [11637]: _SERVER found -- 01:39:39.344 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 01:39:39.344 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 01:39:39.344 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ckfife918evqresoo9vo8h9alcfk4ebb -- 01:39:39.344 INFO [11637]: QUERY_STRING = /auth -- 01:39:39.344 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:39:39.377 INFO [11637]: COREGRADE is stopping... -- 01:39:39.377 DEBUG [11637]: Closing database connection -- 01:39:39.377 SQL [11637]: pgsql_close() -- 01:39:39.811 INFO [11637]: COREGRADE is starting... -- 01:39:39.811 INFO [11637]: Version from config: 1.0 -- 01:39:39.811 DEBUG [11637]: Connecting to database... -- 01:39:39.811 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:39:39.811 SQL [11637]: pgsql_db_connect() -- 01:39:39.815 DEBUG [11637]: Database connection successful -- 01:39:39.815 INFO [11637]: _SERVER found -- 01:39:39.815 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 01:39:39.815 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 01:39:39.815 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=pn8fbrk7takum84tn7r3vpb46t1u74s8 -- 01:39:39.815 INFO [11637]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 01:39:39.815 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:39:39.827 INFO [11637]: COREGRADE is stopping... -- 01:39:39.827 DEBUG [11637]: Closing database connection -- 01:39:39.827 SQL [11637]: pgsql_close() -- 01:39:39.897 INFO [11637]: COREGRADE is starting... -- 01:39:39.897 INFO [11637]: Version from config: 1.0 -- 01:39:39.897 DEBUG [11637]: Connecting to database... -- 01:39:39.897 DEBUG [11637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:39:39.897 SQL [11637]: pgsql_db_connect() -- 01:39:39.901 DEBUG [11637]: Database connection successful -- 01:39:39.901 INFO [11637]: _SERVER found -- 01:39:39.901 INFO [11637]: REMOTE_ADDR = 192.168.1.13 -- 01:39:39.901 INFO [11637]: SERVER_NAME = oameye.works.coregrade.com -- 01:39:39.901 INFO [11637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=pn8fbrk7takum84tn7r3vpb46t1u74s8 -- 01:39:39.901 INFO [11637]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:39:39.901 INFO [11637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:39:39.912 INFO [11637]: COREGRADE is stopping... -- 01:39:39.912 DEBUG [11637]: Closing database connection -- 01:39:39.912 SQL [11637]: pgsql_close() -- 01:40:58.541 INFO [12764]: COREGRADE is starting... -- 01:40:58.541 INFO [12764]: Version from config: 1.0 -- 01:40:58.541 DEBUG [12764]: Connecting to database... -- 01:40:58.541 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:40:58.541 SQL [12764]: pgsql_db_connect() -- 01:40:58.546 DEBUG [12764]: Database connection successful -- 01:40:58.546 INFO [12764]: _SERVER found -- 01:40:58.546 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 01:40:58.546 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 01:40:58.546 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=6hdtmqn80eo77pt23in54sn1admopoae -- 01:40:58.546 INFO [12764]: QUERY_STRING = /auth -- 01:40:58.546 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:40:58.579 INFO [12764]: COREGRADE is stopping... -- 01:40:58.579 DEBUG [12764]: Closing database connection -- 01:40:58.579 SQL [12764]: pgsql_close() -- 01:40:58.749 INFO [12764]: COREGRADE is starting... -- 01:40:58.749 INFO [12764]: Version from config: 1.0 -- 01:40:58.749 DEBUG [12764]: Connecting to database... -- 01:40:58.749 DEBUG [12764]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:40:58.750 SQL [12764]: pgsql_db_connect() -- 01:40:58.754 DEBUG [12764]: Database connection successful -- 01:40:58.754 INFO [12764]: _SERVER found -- 01:40:58.754 INFO [12764]: REMOTE_ADDR = 192.168.1.13 -- 01:40:58.754 INFO [12764]: SERVER_NAME = oameye.works.coregrade.com -- 01:40:58.754 INFO [12764]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kf7tc2ghl2ervrud4en2hh5vjkavkacl -- 01:40:58.754 INFO [12764]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 01:40:58.754 INFO [12764]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:40:58.765 INFO [12764]: COREGRADE is stopping... -- 01:40:58.765 DEBUG [12764]: Closing database connection -- 01:40:58.765 SQL [12764]: pgsql_close() -- 01:40:58.768 INFO [12761]: COREGRADE is starting... -- 01:40:58.768 INFO [12761]: Version from config: 1.0 -- 01:40:58.768 DEBUG [12761]: Connecting to database... -- 01:40:58.768 DEBUG [12761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:40:58.768 SQL [12761]: pgsql_db_connect() -- 01:40:58.772 DEBUG [12761]: Database connection successful -- 01:40:58.772 INFO [12761]: _SERVER found -- 01:40:58.772 INFO [12761]: REMOTE_ADDR = 192.168.1.13 -- 01:40:58.772 INFO [12761]: SERVER_NAME = oameye.works.coregrade.com -- 01:40:58.772 INFO [12761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=kf7tc2ghl2ervrud4en2hh5vjkavkacl -- 01:40:58.772 INFO [12761]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:40:58.772 INFO [12761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:40:58.784 INFO [12761]: COREGRADE is stopping... -- 01:40:58.784 DEBUG [12761]: Closing database connection -- 01:40:58.784 SQL [12761]: pgsql_close() -- 01:41:37.526 INFO [11636]: COREGRADE is starting... -- 01:41:37.527 INFO [11636]: Version from config: 1.0 -- 01:41:37.527 DEBUG [11636]: Connecting to database... -- 01:41:37.527 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:41:37.527 SQL [11636]: pgsql_db_connect() -- 01:41:37.531 DEBUG [11636]: Database connection successful -- 01:41:37.531 INFO [11636]: _SERVER found -- 01:41:37.531 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 01:41:37.531 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 01:41:37.531 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=pn8fbrk7takum84tn7r3vpb46t1u74s8 -- 01:41:37.531 INFO [11636]: QUERY_STRING = /auth -- 01:41:37.531 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:41:37.563 INFO [11636]: COREGRADE is stopping... -- 01:41:37.563 DEBUG [11636]: Closing database connection -- 01:41:37.563 SQL [11636]: pgsql_close() -- 01:41:38.184 INFO [11636]: COREGRADE is starting... -- 01:41:38.184 INFO [11636]: Version from config: 1.0 -- 01:41:38.184 DEBUG [11636]: Connecting to database... -- 01:41:38.184 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:41:38.184 SQL [11636]: pgsql_db_connect() -- 01:41:38.189 DEBUG [11636]: Database connection successful -- 01:41:38.189 INFO [11636]: _SERVER found -- 01:41:38.189 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 01:41:38.189 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 01:41:38.189 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=pn8fbrk7takum84tn7r3vpb46t1u74s8 -- 01:41:38.189 INFO [11636]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 01:41:38.189 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:41:38.200 INFO [11636]: COREGRADE is stopping... -- 01:41:38.200 DEBUG [11636]: Closing database connection -- 01:41:38.200 SQL [11636]: pgsql_close() -- 01:41:38.903 INFO [11636]: COREGRADE is starting... -- 01:41:38.903 INFO [11636]: Version from config: 1.0 -- 01:41:38.903 DEBUG [11636]: Connecting to database... -- 01:41:38.903 DEBUG [11636]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:41:38.903 SQL [11636]: pgsql_db_connect() -- 01:41:38.907 DEBUG [11636]: Database connection successful -- 01:41:38.907 INFO [11636]: _SERVER found -- 01:41:38.907 INFO [11636]: REMOTE_ADDR = 192.168.1.13 -- 01:41:38.907 INFO [11636]: SERVER_NAME = oameye.works.coregrade.com -- 01:41:38.907 INFO [11636]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=pn8fbrk7takum84tn7r3vpb46t1u74s8 -- 01:41:38.907 INFO [11636]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:41:38.907 INFO [11636]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:41:38.918 INFO [11636]: COREGRADE is stopping... -- 01:41:38.918 DEBUG [11636]: Closing database connection -- 01:41:38.918 SQL [11636]: pgsql_close() -- 07:35:06.857 INFO [16301]: COREGRADE is starting... -- 07:35:06.857 INFO [16301]: Version from config: 1.0 -- 07:35:06.857 DEBUG [16301]: Connecting to database... -- 07:35:06.857 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:35:06.857 SQL [16301]: pgsql_db_connect() -- 07:35:06.862 DEBUG [16301]: Database connection successful -- 07:35:06.862 INFO [16301]: _SERVER found -- 07:35:06.862 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 07:35:06.862 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 07:35:06.862 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.1547509397.1579892413 -- 07:35:06.862 INFO [16301]: QUERY_STRING = -- 07:35:06.862 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:35:06.910 INFO [16301]: COREGRADE is stopping... -- 07:35:06.910 DEBUG [16301]: Closing database connection -- 07:35:06.910 SQL [16301]: pgsql_close() -- 07:35:07.596 INFO [16304]: COREGRADE is starting... -- 07:35:07.597 INFO [16304]: Version from config: 1.0 -- 07:35:07.597 DEBUG [16304]: Connecting to database... -- 07:35:07.597 DEBUG [16304]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:35:07.597 SQL [16304]: pgsql_db_connect() -- 07:35:07.602 DEBUG [16304]: Database connection successful -- 07:35:07.602 INFO [16304]: _SERVER found -- 07:35:07.602 INFO [16304]: REMOTE_ADDR = 192.168.1.13 -- 07:35:07.602 INFO [16304]: SERVER_NAME = oameye.works.coregrade.com -- 07:35:07.602 INFO [16304]: HTTP_COOKIE = _ga=GA1.2.1547509397.1579892413; ci_session=gar5o25pbhto97e30pd3vm1abi58qve7 -- 07:35:07.602 INFO [16304]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:35:07.602 INFO [16304]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:35:07.617 INFO [16304]: COREGRADE is stopping... -- 07:35:07.617 DEBUG [16304]: Closing database connection -- 07:35:07.617 SQL [16304]: pgsql_close() -- 07:35:07.653 INFO [16304]: COREGRADE is starting... -- 07:35:07.653 INFO [16304]: Version from config: 1.0 -- 07:35:07.654 DEBUG [16304]: Connecting to database... -- 07:35:07.654 DEBUG [16304]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:35:07.654 SQL [16304]: pgsql_db_connect() -- 07:35:07.657 DEBUG [16304]: Database connection successful -- 07:35:07.657 INFO [16304]: _SERVER found -- 07:35:07.657 INFO [16304]: REMOTE_ADDR = 192.168.1.13 -- 07:35:07.657 INFO [16304]: SERVER_NAME = oameye.works.coregrade.com -- 07:35:07.657 INFO [16304]: HTTP_COOKIE = _ga=GA1.2.1547509397.1579892413; ci_session=gar5o25pbhto97e30pd3vm1abi58qve7 -- 07:35:07.657 INFO [16304]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:35:07.657 INFO [16304]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:35:07.669 INFO [16304]: COREGRADE is stopping... -- 07:35:07.669 DEBUG [16304]: Closing database connection -- 07:35:07.669 SQL [16304]: pgsql_close() -- 07:48:00.056 INFO [17310]: COREGRADE is starting... -- 07:48:00.056 INFO [17310]: Version from config: 1.0 -- 07:48:00.056 DEBUG [17310]: Connecting to database... -- 07:48:00.056 DEBUG [17310]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:48:00.056 SQL [17310]: pgsql_db_connect() -- 07:48:00.061 DEBUG [17310]: Database connection successful -- 07:48:00.061 INFO [17310]: _SERVER found -- 07:48:00.061 INFO [17310]: REMOTE_ADDR = 192.168.1.13 -- 07:48:00.061 INFO [17310]: SERVER_NAME = oameye.works.coregrade.com -- 07:48:00.061 INFO [17310]: HTTP_COOKIE = _ga=GA1.2.1547509397.1579892413; ci_session=gar5o25pbhto97e30pd3vm1abi58qve7; _gid=GA1.2.992767527.1581078907 -- 07:48:00.061 INFO [17310]: QUERY_STRING = /auth/newuser -- 07:48:00.061 INFO [17310]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:48:00.102 INFO [17310]: COREGRADE is stopping... -- 07:48:00.102 DEBUG [17310]: Closing database connection -- 07:48:00.102 SQL [17310]: pgsql_close() -- 07:48:02.515 INFO [17313]: COREGRADE is starting... -- 07:48:02.516 INFO [17313]: Version from config: 1.0 -- 07:48:02.516 DEBUG [17313]: Connecting to database... -- 07:48:02.516 DEBUG [17313]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:48:02.516 SQL [17313]: pgsql_db_connect() -- 07:48:02.520 DEBUG [17313]: Database connection successful -- 07:48:02.520 INFO [17313]: _SERVER found -- 07:48:02.520 INFO [17313]: REMOTE_ADDR = 192.168.1.13 -- 07:48:02.520 INFO [17313]: SERVER_NAME = oameye.works.coregrade.com -- 07:48:02.520 INFO [17313]: HTTP_COOKIE = _ga=GA1.2.1547509397.1579892413; _gid=GA1.2.992767527.1581078907; ci_session=vvr0cq2slqjqbmkt4h4a1sgh817r15av -- 07:48:02.520 INFO [17313]: QUERY_STRING = /app-assets/data/locales/en.json -- 07:48:02.520 INFO [17313]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:48:02.534 INFO [17313]: COREGRADE is stopping... -- 07:48:02.534 DEBUG [17313]: Closing database connection -- 07:48:02.534 SQL [17313]: pgsql_close() -- 07:48:10.164 INFO [16301]: COREGRADE is starting... -- 07:48:10.164 INFO [16301]: Version from config: 1.0 -- 07:48:10.164 DEBUG [16301]: Connecting to database... -- 07:48:10.164 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:48:10.164 SQL [16301]: pgsql_db_connect() -- 07:48:10.168 DEBUG [16301]: Database connection successful -- 07:48:10.168 INFO [16301]: _SERVER found -- 07:48:10.168 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 07:48:10.168 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 07:48:10.168 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.1547509397.1579892413; _gid=GA1.2.992767527.1581078907; ci_session=vvr0cq2slqjqbmkt4h4a1sgh817r15av -- 07:48:10.168 INFO [16301]: QUERY_STRING = /auth/newuser -- 07:48:10.168 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:48:10.201 INFO [16301]: COREGRADE is stopping... -- 07:48:10.201 DEBUG [16301]: Closing database connection -- 07:48:10.201 SQL [16301]: pgsql_close() -- 07:48:10.620 INFO [16301]: COREGRADE is starting... -- 07:48:10.621 INFO [16301]: Version from config: 1.0 -- 07:48:10.621 DEBUG [16301]: Connecting to database... -- 07:48:10.621 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:48:10.621 SQL [16301]: pgsql_db_connect() -- 07:48:10.625 DEBUG [16301]: Database connection successful -- 07:48:10.625 INFO [16301]: _SERVER found -- 07:48:10.625 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 07:48:10.625 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 07:48:10.625 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.1547509397.1579892413; _gid=GA1.2.992767527.1581078907; ci_session=vvr0cq2slqjqbmkt4h4a1sgh817r15av -- 07:48:10.625 INFO [16301]: QUERY_STRING = /app-assets/data/locales/en.json -- 07:48:10.625 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:48:10.636 INFO [16301]: COREGRADE is stopping... -- 07:48:10.636 DEBUG [16301]: Closing database connection -- 07:48:10.636 SQL [16301]: pgsql_close() -- 08:48:29.587 INFO [16305]: COREGRADE is starting... -- 08:48:29.588 INFO [16305]: Version from config: 1.0 -- 08:48:29.588 DEBUG [16305]: Connecting to database... -- 08:48:29.588 DEBUG [16305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:48:29.588 SQL [16305]: pgsql_db_connect() -- 08:48:29.593 DEBUG [16305]: Database connection successful -- 08:48:29.593 INFO [16305]: _SERVER found -- 08:48:29.593 INFO [16305]: REMOTE_ADDR = 192.168.1.13 -- 08:48:29.593 INFO [16305]: SERVER_NAME = oameye.works.coregrade.com -- 08:48:29.593 INFO [16305]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896 -- 08:48:29.593 INFO [16305]: QUERY_STRING = /auth/newuser -- 08:48:29.593 INFO [16305]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:48:29.634 INFO [16305]: COREGRADE is stopping... -- 08:48:29.634 DEBUG [16305]: Closing database connection -- 08:48:29.634 SQL [16305]: pgsql_close() -- 08:48:29.796 INFO [16305]: COREGRADE is starting... -- 08:48:29.796 INFO [16305]: Version from config: 1.0 -- 08:48:29.796 DEBUG [16305]: Connecting to database... -- 08:48:29.796 DEBUG [16305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:48:29.796 SQL [16305]: pgsql_db_connect() -- 08:48:29.800 DEBUG [16305]: Database connection successful -- 08:48:29.800 INFO [16305]: _SERVER found -- 08:48:29.800 INFO [16305]: REMOTE_ADDR = 192.168.1.13 -- 08:48:29.800 INFO [16305]: SERVER_NAME = oameye.works.coregrade.com -- 08:48:29.800 INFO [16305]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=tdqqcf2fidteprc84trll5prg5elt1pr -- 08:48:29.800 INFO [16305]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 08:48:29.800 INFO [16305]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:48:29.811 INFO [16305]: COREGRADE is stopping... -- 08:48:29.811 DEBUG [16305]: Closing database connection -- 08:48:29.811 SQL [16305]: pgsql_close() -- 08:48:29.816 INFO [16303]: COREGRADE is starting... -- 08:48:29.816 INFO [16303]: Version from config: 1.0 -- 08:48:29.816 DEBUG [16303]: Connecting to database... -- 08:48:29.816 DEBUG [16303]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:48:29.816 SQL [16303]: pgsql_db_connect() -- 08:48:29.820 DEBUG [16303]: Database connection successful -- 08:48:29.820 INFO [16303]: _SERVER found -- 08:48:29.820 INFO [16303]: REMOTE_ADDR = 192.168.1.13 -- 08:48:29.820 INFO [16303]: SERVER_NAME = oameye.works.coregrade.com -- 08:48:29.820 INFO [16303]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=tdqqcf2fidteprc84trll5prg5elt1pr -- 08:48:29.820 INFO [16303]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:48:29.820 INFO [16303]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:48:29.836 INFO [16303]: COREGRADE is stopping... -- 08:48:29.836 DEBUG [16303]: Closing database connection -- 08:48:29.836 SQL [16303]: pgsql_close() -- 08:49:06.149 INFO [16304]: COREGRADE is starting... -- 08:49:06.149 INFO [16304]: Version from config: 1.0 -- 08:49:06.149 DEBUG [16304]: Connecting to database... -- 08:49:06.149 DEBUG [16304]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:06.149 SQL [16304]: pgsql_db_connect() -- 08:49:06.154 DEBUG [16304]: Database connection successful -- 08:49:06.154 INFO [16304]: _SERVER found -- 08:49:06.154 INFO [16304]: REMOTE_ADDR = 192.168.1.13 -- 08:49:06.154 INFO [16304]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:06.154 INFO [16304]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=tdqqcf2fidteprc84trll5prg5elt1pr -- 08:49:06.154 INFO [16304]: QUERY_STRING = /auth -- 08:49:06.154 INFO [16304]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:06.191 INFO [16304]: COREGRADE is stopping... -- 08:49:06.191 DEBUG [16304]: Closing database connection -- 08:49:06.191 SQL [16304]: pgsql_close() -- 08:49:06.352 INFO [16304]: COREGRADE is starting... -- 08:49:06.353 INFO [16304]: Version from config: 1.0 -- 08:49:06.353 DEBUG [16304]: Connecting to database... -- 08:49:06.353 DEBUG [16304]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:06.353 SQL [16304]: pgsql_db_connect() -- 08:49:06.367 INFO [16302]: COREGRADE is starting... -- 08:49:06.356 DEBUG [16304]: Database connection successful -- 08:49:06.356 INFO [16304]: _SERVER found -- 08:49:06.356 INFO [16304]: REMOTE_ADDR = 192.168.1.13 -- 08:49:06.356 INFO [16304]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:06.356 INFO [16304]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=tdqqcf2fidteprc84trll5prg5elt1pr -- 08:49:06.356 INFO [16304]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 08:49:06.356 INFO [16304]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:06.368 INFO [16304]: COREGRADE is stopping... -- 08:49:06.368 INFO [16302]: Version from config: 1.0 -- 08:49:06.368 DEBUG [16302]: Connecting to database... -- 08:49:06.368 DEBUG [16304]: Closing database connection -- 08:49:06.368 DEBUG [16302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:06.368 SQL [16304]: pgsql_close() -- 08:49:06.368 SQL [16302]: pgsql_db_connect() -- 08:49:06.372 DEBUG [16302]: Database connection successful -- 08:49:06.372 INFO [16302]: _SERVER found -- 08:49:06.372 INFO [16302]: REMOTE_ADDR = 192.168.1.13 -- 08:49:06.372 INFO [16302]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:06.372 INFO [16302]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=tdqqcf2fidteprc84trll5prg5elt1pr -- 08:49:06.372 INFO [16302]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:49:06.372 INFO [16302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:06.386 INFO [16302]: COREGRADE is stopping... -- 08:49:06.386 DEBUG [16302]: Closing database connection -- 08:49:06.386 SQL [16302]: pgsql_close() -- 08:49:08.347 INFO [16302]: COREGRADE is starting... -- 08:49:08.347 INFO [16302]: Version from config: 1.0 -- 08:49:08.347 DEBUG [16302]: Connecting to database... -- 08:49:08.347 DEBUG [16302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:08.347 SQL [16302]: pgsql_db_connect() -- 08:49:08.385 INFO [16302]: COREGRADE is starting... -- 08:49:08.385 INFO [16302]: Version from config: 1.0 -- 08:49:08.385 DEBUG [16302]: Connecting to database... -- 08:49:08.385 DEBUG [16302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:08.385 SQL [16302]: pgsql_db_connect() -- 08:49:08.389 DEBUG [16302]: Database connection successful -- 08:49:08.389 INFO [16302]: _SERVER found -- 08:49:08.389 INFO [16302]: REMOTE_ADDR = 192.168.1.13 -- 08:49:08.389 INFO [16302]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:08.389 INFO [16302]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=tdqqcf2fidteprc84trll5prg5elt1pr -- 08:49:08.390 INFO [16302]: QUERY_STRING = -- 08:49:08.390 INFO [16302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:08.390 INFO [16302]: SystemStatus()09-09-********~************ -- 08:49:08.390 INFO [16302]: long coregrade_api_main(CVars in, CVars &out) -- 08:49:08.390 INFO [16302]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 08:49:08.390 INFO [16302]: account calls -- 08:49:08.390 INFO [16302]: account_calls() -- 08:49:08.390 INFO [16302]: LoginCoreGradeAccount() -- 08:49:08.390 FLOG_MAX [16302]: REQ_STRING(username) -- 08:49:08.390 FLOG_MAX [16302]: REQ_STRING(password) -- 08:49:08.390 FLOG_MAX [16302]: REQ_STRING(sessionid) -- 08:49:08.390 FLOG_MAX [16302]: long load_db_record( CVars &rec, const char * query, ... ) -- 08:49:08.390 SQL [16302]: pgsql_query() -- 08:49:08.390 SQL [16302]: About to run query: -- 08:49:08.390 SQL [16302]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 08:49:08.394 SQL [16302]: Found rows: 1 -- 08:49:08.394 FLOG_MAX [16302]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 08:49:08.394 INFO [16302]: long SessionCheck(long uid, const char *sessionid, int create ) -- 08:49:08.394 SQL [16302]: pgsql_exec() -- 08:49:08.394 SQL [16302]: About to run query: -- 08:49:08.394 SQL [16302]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 08:49:08.395 SQL [16302]: PQcmdTuples: 1 -- 08:49:08.395 SQL [16302]: Affected rows: 1 -- 08:49:08.395 SQL [16302]: pgsql_exec() -- 08:49:08.395 SQL [16302]: About to run query: -- 08:49:08.395 SQL [16302]: DELETE FROM members_session WHERE member_id=5 -- 08:49:08.395 SQL [16302]: PQcmdTuples: 0 -- 08:49:08.395 SQL [16302]: Affected rows: 0 -- 08:49:08.395 SQL [16302]: pgsql_query() -- 08:49:08.395 SQL [16302]: About to run query: -- 08:49:08.395 SQL [16302]: SELECT * FROM members_session WHERE member_id=5 AND session<>'7E28DC071B6018106FA3BAD202E38BBC' -- 08:49:08.396 SQL [16302]: Found rows: 0 -- 08:49:08.396 SQL [16302]: Found rows: 0 -- 08:49:08.396 FLOG_MAX [16302]: long load_db_record( CVars &rec, const char * query, ... ) -- 08:49:08.396 SQL [16302]: pgsql_query() -- 08:49:08.396 SQL [16302]: About to run query: -- 08:49:08.396 SQL [16302]: SELECT * FROM members_session WHERE member_id=5 AND session='7E28DC071B6018106FA3BAD202E38BBC' -- 08:49:08.397 SQL [16302]: Found rows: 0 -- 08:49:08.397 SQL [16302]: Found rows: 0 -- 08:49:08.397 FLOG_MAX [16302]: insert_db_record() -- 08:49:08.397 SQL [16302]: pgsql_exec() -- 08:49:08.397 SQL [16302]: About to run query: -- 08:49:08.397 SQL [16302]: INSERT INTO members_session (member_id,session) VALUES ('5','7E28DC071B6018106FA3BAD202E38BBC') -- 08:49:08.398 SQL [16302]: PQcmdTuples: 1 -- 08:49:08.398 SQL [16302]: Affected rows: 1 -- 08:49:08.398 FLOG_MAX [16302]: SELECT currval('members_session_id_seq') -- 08:49:08.398 SQL [16302]: pgsql_query() -- 08:49:08.398 SQL [16302]: About to run query: -- 08:49:08.398 SQL [16302]: SELECT currval('members_session_id_seq') -- 08:49:08.399 SQL [16302]: Found rows: 1 -- 08:49:08.399 INFO [16302]: CreateDefaultPage() -- 08:49:08.399 FLOG_MAX [16302]: long load_db_record( CVars &rec, const char * query, ... ) -- 08:49:08.399 SQL [16302]: pgsql_query() -- 08:49:08.399 SQL [16302]: About to run query: -- 08:49:08.399 SQL [16302]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 08:49:08.399 SQL [16302]: Found rows: 1 -- 08:49:08.399 FLOG_MAX [16302]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 08:49:08.399 SQL [16302]: pgsql_query() -- 08:49:08.399 SQL [16302]: About to run query: -- 08:49:08.399 SQL [16302]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 08:49:08.400 SQL [16302]: Found rows: 1 -- 08:49:08.400 INFO [16302]: /CreateDefaultPage() -- 08:49:08.400 INFO [16302]: /LoginCoreGradeAccount() -- 08:49:08.400 INFO [16302]: RET: added=2020-02-05 06:47:23.982154 -- 08:49:08.400 INFO [16302]: RET: email=ameye+11@chiefsoft.com -- 08:49:08.400 INFO [16302]: RET: firstname=Olu -- 08:49:08.400 INFO [16302]: RET: id=5 -- 08:49:08.400 INFO [16302]: RET: last_login= -- 08:49:08.400 INFO [16302]: RET: lastname=Amey -- 08:49:08.400 INFO [16302]: RET: loc=192.168.1.13 -- 08:49:08.400 INFO [16302]: RET: member_id=5 -- 08:49:08.400 INFO [16302]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 08:49:08.400 INFO [16302]: RET: phone= -- 08:49:08.400 INFO [16302]: RET: pid= -- 08:49:08.400 INFO [16302]: RET: result=YES I GET TO BACK END -- 08:49:08.400 INFO [16302]: RET: sessionid=7E28DC071B6018106FA3BAD202E38BBC -- 08:49:08.400 INFO [16302]: RET: status=1 -- 08:49:08.400 INFO [16302]: RET: stauts=OK -- 08:49:08.400 INFO [16302]: RET: username=ameye+11@chiefsoft.com -- 08:49:08.400 INFO [16302]: RET: verified= -- 08:49:08.401 INFO [16302]: COREGRADE is stopping... -- 08:49:08.401 DEBUG [16302]: Closing database connection -- 08:49:08.401 SQL [16302]: pgsql_close() -- 08:49:08.351 DEBUG [16302]: Database connection successful -- 08:49:08.351 INFO [16302]: _SERVER found -- 08:49:08.351 INFO [16302]: REMOTE_ADDR = 192.168.1.13 -- 08:49:08.351 INFO [16302]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:08.351 INFO [16302]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=tdqqcf2fidteprc84trll5prg5elt1pr -- 08:49:08.351 INFO [16302]: QUERY_STRING = /auth -- 08:49:08.351 INFO [16302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:08.402 INFO [16302]: COREGRADE is stopping... -- 08:49:08.402 DEBUG [16302]: Closing database connection -- 08:49:08.402 SQL [16302]: pgsql_close() -- 08:49:08.429 INFO [16302]: COREGRADE is starting... -- 08:49:08.430 INFO [16302]: Version from config: 1.0 -- 08:49:08.430 DEBUG [16302]: Connecting to database... -- 08:49:08.430 DEBUG [16302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:08.430 SQL [16302]: pgsql_db_connect() -- 08:49:08.433 DEBUG [16302]: Database connection successful -- 08:49:08.433 INFO [16302]: _SERVER found -- 08:49:08.433 INFO [16302]: REMOTE_ADDR = 192.168.1.13 -- 08:49:08.433 INFO [16302]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:08.433 INFO [16302]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=tdqqcf2fidteprc84trll5prg5elt1pr -- 08:49:08.434 INFO [16302]: QUERY_STRING = /member/index -- 08:49:08.434 INFO [16302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:08.469 INFO [16302]: COREGRADE is stopping... -- 08:49:08.469 DEBUG [16302]: Closing database connection -- 08:49:08.469 SQL [16302]: pgsql_close() -- 08:49:08.630 INFO [16302]: COREGRADE is starting... -- 08:49:08.630 INFO [16302]: Version from config: 1.0 -- 08:49:08.630 DEBUG [16302]: Connecting to database... -- 08:49:08.630 DEBUG [16302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:08.630 SQL [16302]: pgsql_db_connect() -- 08:49:08.634 DEBUG [16302]: Database connection successful -- 08:49:08.634 INFO [16302]: _SERVER found -- 08:49:08.634 INFO [16302]: REMOTE_ADDR = 192.168.1.13 -- 08:49:08.634 INFO [16302]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:08.634 INFO [16302]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=tdqqcf2fidteprc84trll5prg5elt1pr -- 08:49:08.634 INFO [16302]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 08:49:08.634 INFO [16302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:08.645 INFO [16302]: COREGRADE is stopping... -- 08:49:08.645 DEBUG [16302]: Closing database connection -- 08:49:08.645 SQL [16302]: pgsql_close() -- 08:49:08.717 INFO [16302]: COREGRADE is starting... -- 08:49:08.717 INFO [16302]: Version from config: 1.0 -- 08:49:08.717 DEBUG [16302]: Connecting to database... -- 08:49:08.717 DEBUG [16302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:08.717 SQL [16302]: pgsql_db_connect() -- 08:49:08.721 DEBUG [16302]: Database connection successful -- 08:49:08.721 INFO [16302]: _SERVER found -- 08:49:08.721 INFO [16302]: REMOTE_ADDR = 192.168.1.13 -- 08:49:08.721 INFO [16302]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:08.721 INFO [16302]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=tdqqcf2fidteprc84trll5prg5elt1pr -- 08:49:08.721 INFO [16302]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:49:08.721 INFO [16302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:08.732 INFO [16302]: COREGRADE is stopping... -- 08:49:08.732 DEBUG [16302]: Closing database connection -- 08:49:08.732 SQL [16302]: pgsql_close() -- 08:49:20.129 INFO [17314]: COREGRADE is starting... -- 08:49:20.129 INFO [17314]: Version from config: 1.0 -- 08:49:20.129 DEBUG [17314]: Connecting to database... -- 08:49:20.129 DEBUG [17314]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:20.129 SQL [17314]: pgsql_db_connect() -- 08:49:20.133 DEBUG [17314]: Database connection successful -- 08:49:20.133 INFO [17314]: _SERVER found -- 08:49:20.133 INFO [17314]: REMOTE_ADDR = 192.168.1.13 -- 08:49:20.133 INFO [17314]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:20.133 INFO [17314]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=tdqqcf2fidteprc84trll5prg5elt1pr -- 08:49:20.133 INFO [17314]: QUERY_STRING = /member/page -- 08:49:20.133 INFO [17314]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:20.176 INFO [17314]: COREGRADE is stopping... -- 08:49:20.176 DEBUG [17314]: Closing database connection -- 08:49:20.176 SQL [17314]: pgsql_close() -- 08:49:20.342 INFO [17314]: COREGRADE is starting... -- 08:49:20.342 INFO [17314]: Version from config: 1.0 -- 08:49:20.342 DEBUG [17314]: Connecting to database... -- 08:49:20.342 DEBUG [17314]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:20.342 SQL [17314]: pgsql_db_connect() -- 08:49:20.346 DEBUG [17314]: Database connection successful -- 08:49:20.346 INFO [17314]: _SERVER found -- 08:49:20.346 INFO [17314]: REMOTE_ADDR = 192.168.1.13 -- 08:49:20.346 INFO [17314]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:20.346 INFO [17314]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=tdqqcf2fidteprc84trll5prg5elt1pr -- 08:49:20.346 INFO [17314]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:49:20.346 INFO [17314]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:20.357 INFO [17314]: COREGRADE is stopping... -- 08:49:20.357 DEBUG [17314]: Closing database connection -- 08:49:20.357 SQL [17314]: pgsql_close() -- 08:49:21.381 INFO [17314]: COREGRADE is starting... -- 08:49:21.381 INFO [17314]: Version from config: 1.0 -- 08:49:21.381 DEBUG [17314]: Connecting to database... -- 08:49:21.381 DEBUG [17314]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:21.381 SQL [17314]: pgsql_db_connect() -- 08:49:21.385 DEBUG [17314]: Database connection successful -- 08:49:21.385 INFO [17314]: _SERVER found -- 08:49:21.385 INFO [17314]: REMOTE_ADDR = 192.168.1.13 -- 08:49:21.385 INFO [17314]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:21.385 INFO [17314]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=tdqqcf2fidteprc84trll5prg5elt1pr -- 08:49:21.385 INFO [17314]: QUERY_STRING = /member/viewCardAddAction -- 08:49:21.385 INFO [17314]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:21.415 INFO [17314]: COREGRADE is stopping... -- 08:49:21.415 DEBUG [17314]: Closing database connection -- 08:49:21.415 SQL [17314]: pgsql_close() -- 08:49:24.025 INFO [17314]: COREGRADE is starting... -- 08:49:24.025 INFO [17314]: Version from config: 1.0 -- 08:49:24.025 DEBUG [17314]: Connecting to database... -- 08:49:24.025 DEBUG [17314]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:24.025 SQL [17314]: pgsql_db_connect() -- 08:49:24.029 DEBUG [17314]: Database connection successful -- 08:49:24.029 INFO [17314]: _SERVER found -- 08:49:24.029 INFO [17314]: REMOTE_ADDR = 192.168.1.13 -- 08:49:24.029 INFO [17314]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:24.029 INFO [17314]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=tdqqcf2fidteprc84trll5prg5elt1pr -- 08:49:24.029 INFO [17314]: QUERY_STRING = /member/viewCardAddAction -- 08:49:24.029 INFO [17314]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:24.059 INFO [17314]: COREGRADE is stopping... -- 08:49:24.059 DEBUG [17314]: Closing database connection -- 08:49:24.059 SQL [17314]: pgsql_close() -- 08:49:33.066 INFO [17315]: COREGRADE is starting... -- 08:49:33.067 INFO [17315]: Version from config: 1.0 -- 08:49:33.067 DEBUG [17315]: Connecting to database... -- 08:49:33.067 DEBUG [17315]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:33.067 SQL [17315]: pgsql_db_connect() -- 08:49:33.071 DEBUG [17315]: Database connection successful -- 08:49:33.071 INFO [17315]: _SERVER found -- 08:49:33.071 INFO [17315]: REMOTE_ADDR = 192.168.1.13 -- 08:49:33.071 INFO [17315]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:33.071 INFO [17315]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=tdqqcf2fidteprc84trll5prg5elt1pr -- 08:49:33.071 INFO [17315]: QUERY_STRING = /member -- 08:49:33.071 INFO [17315]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:33.112 INFO [17315]: COREGRADE is stopping... -- 08:49:33.112 DEBUG [17315]: Closing database connection -- 08:49:33.112 SQL [17315]: pgsql_close() -- 08:49:33.244 INFO [17315]: COREGRADE is starting... -- 08:49:33.244 INFO [17315]: Version from config: 1.0 -- 08:49:33.244 DEBUG [17315]: Connecting to database... -- 08:49:33.244 DEBUG [17315]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:33.244 SQL [17315]: pgsql_db_connect() -- 08:49:33.248 DEBUG [17315]: Database connection successful -- 08:49:33.248 INFO [17315]: _SERVER found -- 08:49:33.248 INFO [17315]: REMOTE_ADDR = 192.168.1.13 -- 08:49:33.248 INFO [17315]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:33.248 INFO [17315]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=tdqqcf2fidteprc84trll5prg5elt1pr -- 08:49:33.248 INFO [17315]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:49:33.248 INFO [17315]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:33.259 INFO [17315]: COREGRADE is stopping... -- 08:49:33.259 DEBUG [17315]: Closing database connection -- 08:49:33.259 SQL [17315]: pgsql_close() -- 08:50:38.492 INFO [17316]: COREGRADE is starting... -- 08:50:38.492 INFO [17316]: Version from config: 1.0 -- 08:50:38.492 DEBUG [17316]: Connecting to database... -- 08:50:38.492 DEBUG [17316]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:38.492 SQL [17316]: pgsql_db_connect() -- 08:50:38.496 DEBUG [17316]: Database connection successful -- 08:50:38.496 INFO [17316]: _SERVER found -- 08:50:38.496 INFO [17316]: REMOTE_ADDR = 192.168.1.13 -- 08:50:38.496 INFO [17316]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:38.496 INFO [17316]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=tdqqcf2fidteprc84trll5prg5elt1pr -- 08:50:38.496 INFO [17316]: QUERY_STRING = /member/configure -- 08:50:38.496 INFO [17316]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:50:38.538 INFO [17316]: COREGRADE is stopping... -- 08:50:38.538 DEBUG [17316]: Closing database connection -- 08:50:38.538 SQL [17316]: pgsql_close() -- 08:50:38.785 INFO [17316]: COREGRADE is starting... -- 08:50:38.785 INFO [17316]: Version from config: 1.0 -- 08:50:38.785 DEBUG [17316]: Connecting to database... -- 08:50:38.785 DEBUG [17316]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:38.785 SQL [17316]: pgsql_db_connect() -- 08:50:38.789 DEBUG [17316]: Database connection successful -- 08:50:38.789 INFO [17316]: _SERVER found -- 08:50:38.789 INFO [17316]: REMOTE_ADDR = 192.168.1.13 -- 08:50:38.789 INFO [17316]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:38.789 INFO [17316]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=tdqqcf2fidteprc84trll5prg5elt1pr -- 08:50:38.789 INFO [17316]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:50:38.789 INFO [17316]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:50:38.800 INFO [17316]: COREGRADE is stopping... -- 08:50:38.800 DEBUG [17316]: Closing database connection -- 08:50:38.800 SQL [17316]: pgsql_close() -- 09:10:39.674 INFO [17310]: COREGRADE is starting... -- 09:10:39.674 INFO [17310]: Version from config: 1.0 -- 09:10:39.674 DEBUG [17310]: Connecting to database... -- 09:10:39.674 DEBUG [17310]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:10:39.674 SQL [17310]: pgsql_db_connect() -- 09:10:39.679 DEBUG [17310]: Database connection successful -- 09:10:39.679 INFO [17310]: _SERVER found -- 09:10:39.679 INFO [17310]: REMOTE_ADDR = 192.168.1.13 -- 09:10:39.679 INFO [17310]: SERVER_NAME = oameye.works.coregrade.com -- 09:10:39.679 INFO [17310]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=tdqqcf2fidteprc84trll5prg5elt1pr -- 09:10:39.679 INFO [17310]: QUERY_STRING = /auth -- 09:10:39.679 INFO [17310]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:10:39.712 INFO [17310]: COREGRADE is stopping... -- 09:10:39.712 DEBUG [17310]: Closing database connection -- 09:10:39.712 SQL [17310]: pgsql_close() -- 09:10:39.811 INFO [17310]: COREGRADE is starting... -- 09:10:39.811 INFO [17310]: Version from config: 1.0 -- 09:10:39.811 DEBUG [17310]: Connecting to database... -- 09:10:39.811 DEBUG [17310]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:10:39.811 SQL [17310]: pgsql_db_connect() -- 09:10:39.822 INFO [17313]: COREGRADE is starting... -- 09:10:39.822 INFO [17313]: Version from config: 1.0 -- 09:10:39.822 DEBUG [17313]: Connecting to database... -- 09:10:39.822 DEBUG [17313]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:10:39.822 SQL [17313]: pgsql_db_connect() -- 09:10:39.815 DEBUG [17310]: Database connection successful -- 09:10:39.815 INFO [17310]: _SERVER found -- 09:10:39.815 INFO [17310]: REMOTE_ADDR = 192.168.1.13 -- 09:10:39.815 INFO [17310]: SERVER_NAME = oameye.works.coregrade.com -- 09:10:39.815 INFO [17310]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=0224qaugkmj8259hjcdbqa9pau2u61to -- 09:10:39.815 INFO [17310]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 09:10:39.815 INFO [17310]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:10:39.826 INFO [17310]: COREGRADE is stopping... -- 09:10:39.826 DEBUG [17310]: Closing database connection -- 09:10:39.826 SQL [17310]: pgsql_close() -- 09:10:39.826 DEBUG [17313]: Database connection successful -- 09:10:39.826 INFO [17313]: _SERVER found -- 09:10:39.826 INFO [17313]: REMOTE_ADDR = 192.168.1.13 -- 09:10:39.826 INFO [17313]: SERVER_NAME = oameye.works.coregrade.com -- 09:10:39.826 INFO [17313]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=0224qaugkmj8259hjcdbqa9pau2u61to -- 09:10:39.826 INFO [17313]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:10:39.826 INFO [17313]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:10:39.838 INFO [17313]: COREGRADE is stopping... -- 09:10:39.838 DEBUG [17313]: Closing database connection -- 09:10:39.838 SQL [17313]: pgsql_close() -- 10:03:30.858 INFO [16301]: COREGRADE is starting... -- 10:03:30.858 INFO [16301]: Version from config: 1.0 -- 10:03:30.858 DEBUG [16301]: Connecting to database... -- 10:03:30.858 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:03:30.858 SQL [16301]: pgsql_db_connect() -- 10:03:30.895 INFO [16301]: COREGRADE is starting... -- 10:03:30.895 INFO [16301]: Version from config: 1.0 -- 10:03:30.895 DEBUG [16301]: Connecting to database... -- 10:03:30.895 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:03:30.895 SQL [16301]: pgsql_db_connect() -- 10:03:30.899 DEBUG [16301]: Database connection successful -- 10:03:30.899 INFO [16301]: _SERVER found -- 10:03:30.899 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 10:03:30.899 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 10:03:30.899 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=0224qaugkmj8259hjcdbqa9pau2u61to -- 10:03:30.899 INFO [16301]: QUERY_STRING = -- 10:03:30.899 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:03:30.900 INFO [16301]: SystemStatus()09-09-********~************ -- 10:03:30.900 INFO [16301]: long coregrade_api_main(CVars in, CVars &out) -- 10:03:30.900 INFO [16301]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 10:03:30.900 INFO [16301]: account calls -- 10:03:30.900 INFO [16301]: account_calls() -- 10:03:30.900 INFO [16301]: LoginCoreGradeAccount() -- 10:03:30.900 FLOG_MAX [16301]: REQ_STRING(username) -- 10:03:30.900 FLOG_MAX [16301]: REQ_STRING(password) -- 10:03:30.900 FLOG_MAX [16301]: REQ_STRING(sessionid) -- 10:03:30.900 FLOG_MAX [16301]: long load_db_record( CVars &rec, const char * query, ... ) -- 10:03:30.900 SQL [16301]: pgsql_query() -- 10:03:30.900 SQL [16301]: About to run query: -- 10:03:30.900 SQL [16301]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 10:03:30.904 SQL [16301]: Found rows: 1 -- 10:03:30.904 FLOG_MAX [16301]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 10:03:30.904 INFO [16301]: long SessionCheck(long uid, const char *sessionid, int create ) -- 10:03:30.904 SQL [16301]: pgsql_exec() -- 10:03:30.904 SQL [16301]: About to run query: -- 10:03:30.904 SQL [16301]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 10:03:30.905 SQL [16301]: PQcmdTuples: 1 -- 10:03:30.905 SQL [16301]: Affected rows: 1 -- 10:03:30.905 SQL [16301]: pgsql_exec() -- 10:03:30.905 SQL [16301]: About to run query: -- 10:03:30.905 SQL [16301]: DELETE FROM members_session WHERE member_id=5 -- 10:03:30.905 SQL [16301]: PQcmdTuples: 0 -- 10:03:30.905 SQL [16301]: Affected rows: 0 -- 10:03:30.905 SQL [16301]: pgsql_query() -- 10:03:30.905 SQL [16301]: About to run query: -- 10:03:30.905 SQL [16301]: SELECT * FROM members_session WHERE member_id=5 AND session<>'78FA6ACB7419D14F7E5CF0CFF5B75C63' -- 10:03:30.906 SQL [16301]: Found rows: 0 -- 10:03:30.906 SQL [16301]: Found rows: 0 -- 10:03:30.906 FLOG_MAX [16301]: long load_db_record( CVars &rec, const char * query, ... ) -- 10:03:30.906 SQL [16301]: pgsql_query() -- 10:03:30.906 SQL [16301]: About to run query: -- 10:03:30.906 SQL [16301]: SELECT * FROM members_session WHERE member_id=5 AND session='78FA6ACB7419D14F7E5CF0CFF5B75C63' -- 10:03:30.906 SQL [16301]: Found rows: 0 -- 10:03:30.906 SQL [16301]: Found rows: 0 -- 10:03:30.906 FLOG_MAX [16301]: insert_db_record() -- 10:03:30.906 SQL [16301]: pgsql_exec() -- 10:03:30.906 SQL [16301]: About to run query: -- 10:03:30.906 SQL [16301]: INSERT INTO members_session (member_id,session) VALUES ('5','78FA6ACB7419D14F7E5CF0CFF5B75C63') -- 10:03:30.908 SQL [16301]: PQcmdTuples: 1 -- 10:03:30.908 SQL [16301]: Affected rows: 1 -- 10:03:30.908 FLOG_MAX [16301]: SELECT currval('members_session_id_seq') -- 10:03:30.908 SQL [16301]: pgsql_query() -- 10:03:30.908 SQL [16301]: About to run query: -- 10:03:30.908 SQL [16301]: SELECT currval('members_session_id_seq') -- 10:03:30.908 SQL [16301]: Found rows: 1 -- 10:03:30.908 INFO [16301]: CreateDefaultPage() -- 10:03:30.908 FLOG_MAX [16301]: long load_db_record( CVars &rec, const char * query, ... ) -- 10:03:30.908 SQL [16301]: pgsql_query() -- 10:03:30.908 SQL [16301]: About to run query: -- 10:03:30.908 SQL [16301]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 10:03:30.909 SQL [16301]: Found rows: 1 -- 10:03:30.909 FLOG_MAX [16301]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 10:03:30.909 SQL [16301]: pgsql_query() -- 10:03:30.909 SQL [16301]: About to run query: -- 10:03:30.909 SQL [16301]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 10:03:30.909 SQL [16301]: Found rows: 1 -- 10:03:30.909 INFO [16301]: /CreateDefaultPage() -- 10:03:30.909 INFO [16301]: /LoginCoreGradeAccount() -- 10:03:30.909 INFO [16301]: RET: added=2020-02-05 06:47:23.982154 -- 10:03:30.909 INFO [16301]: RET: email=ameye+11@chiefsoft.com -- 10:03:30.909 INFO [16301]: RET: firstname=Olu -- 10:03:30.909 INFO [16301]: RET: id=5 -- 10:03:30.909 INFO [16301]: RET: last_login= -- 10:03:30.909 INFO [16301]: RET: lastname=Amey -- 10:03:30.909 INFO [16301]: RET: loc=192.168.1.13 -- 10:03:30.909 INFO [16301]: RET: member_id=5 -- 10:03:30.909 INFO [16301]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 10:03:30.909 INFO [16301]: RET: phone= -- 10:03:30.909 INFO [16301]: RET: pid= -- 10:03:30.909 INFO [16301]: RET: result=YES I GET TO BACK END -- 10:03:30.909 INFO [16301]: RET: sessionid=78FA6ACB7419D14F7E5CF0CFF5B75C63 -- 10:03:30.909 INFO [16301]: RET: status=1 -- 10:03:30.909 INFO [16301]: RET: stauts=OK -- 10:03:30.909 INFO [16301]: RET: username=ameye+11@chiefsoft.com -- 10:03:30.909 INFO [16301]: RET: verified= -- 10:03:30.911 INFO [16301]: COREGRADE is stopping... -- 10:03:30.911 DEBUG [16301]: Closing database connection -- 10:03:30.911 SQL [16301]: pgsql_close() -- 10:03:30.863 DEBUG [16301]: Database connection successful -- 10:03:30.863 INFO [16301]: _SERVER found -- 10:03:30.863 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 10:03:30.863 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 10:03:30.863 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=0224qaugkmj8259hjcdbqa9pau2u61to -- 10:03:30.863 INFO [16301]: QUERY_STRING = /auth -- 10:03:30.863 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:03:30.911 INFO [16301]: COREGRADE is stopping... -- 10:03:30.911 DEBUG [16301]: Closing database connection -- 10:03:30.911 SQL [16301]: pgsql_close() -- 10:03:30.949 INFO [16301]: COREGRADE is starting... -- 10:03:30.949 INFO [16301]: Version from config: 1.0 -- 10:03:30.949 DEBUG [16301]: Connecting to database... -- 10:03:30.950 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:03:30.950 SQL [16301]: pgsql_db_connect() -- 10:03:30.953 DEBUG [16301]: Database connection successful -- 10:03:30.953 INFO [16301]: _SERVER found -- 10:03:30.953 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 10:03:30.953 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 10:03:30.953 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sm4gedvti5hn5a6ibuh8uol1ouc8sl5v -- 10:03:30.953 INFO [16301]: QUERY_STRING = /member/index -- 10:03:30.953 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:03:30.988 INFO [16301]: COREGRADE is stopping... -- 10:03:30.988 DEBUG [16301]: Closing database connection -- 10:03:30.988 SQL [16301]: pgsql_close() -- 10:03:31.363 INFO [16301]: COREGRADE is starting... -- 10:03:31.363 INFO [16301]: Version from config: 1.0 -- 10:03:31.363 DEBUG [16301]: Connecting to database... -- 10:03:31.363 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:03:31.363 SQL [16301]: pgsql_db_connect() -- 10:03:31.367 DEBUG [16301]: Database connection successful -- 10:03:31.367 INFO [16301]: _SERVER found -- 10:03:31.367 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 10:03:31.367 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 10:03:31.367 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sm4gedvti5hn5a6ibuh8uol1ouc8sl5v -- 10:03:31.367 INFO [16301]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:03:31.367 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:03:31.378 INFO [16301]: COREGRADE is stopping... -- 10:03:31.378 DEBUG [16301]: Closing database connection -- 10:03:31.378 SQL [16301]: pgsql_close() -- 10:03:31.383 INFO [16301]: COREGRADE is starting... -- 10:03:31.383 INFO [16301]: Version from config: 1.0 -- 10:03:31.383 DEBUG [16301]: Connecting to database... -- 10:03:31.383 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:03:31.383 SQL [16301]: pgsql_db_connect() -- 10:03:31.387 DEBUG [16301]: Database connection successful -- 10:03:31.387 INFO [16301]: _SERVER found -- 10:03:31.387 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 10:03:31.387 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 10:03:31.387 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sm4gedvti5hn5a6ibuh8uol1ouc8sl5v -- 10:03:31.387 INFO [16301]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:03:31.387 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:03:31.398 INFO [16301]: COREGRADE is stopping... -- 10:03:31.398 DEBUG [16301]: Closing database connection -- 10:03:31.398 SQL [16301]: pgsql_close() -- 10:03:36.454 INFO [16305]: COREGRADE is starting... -- 10:03:36.454 INFO [16305]: Version from config: 1.0 -- 10:03:36.454 DEBUG [16305]: Connecting to database... -- 10:03:36.454 DEBUG [16305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:03:36.454 SQL [16305]: pgsql_db_connect() -- 10:03:36.492 INFO [16305]: COREGRADE is starting... -- 10:03:36.492 INFO [16305]: Version from config: 1.0 -- 10:03:36.493 DEBUG [16305]: Connecting to database... -- 10:03:36.493 DEBUG [16305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:03:36.493 SQL [16305]: pgsql_db_connect() -- 10:03:36.496 DEBUG [16305]: Database connection successful -- 10:03:36.496 INFO [16305]: _SERVER found -- 10:03:36.496 INFO [16305]: REMOTE_ADDR = 192.168.1.13 -- 10:03:36.496 INFO [16305]: SERVER_NAME = oameye.works.coregrade.com -- 10:03:36.496 INFO [16305]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361 -- 10:03:36.496 INFO [16305]: QUERY_STRING = -- 10:03:36.496 INFO [16305]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:03:36.497 INFO [16305]: SystemStatus()09-09-********~************ -- 10:03:36.497 INFO [16305]: long coregrade_api_main(CVars in, CVars &out) -- 10:03:36.497 INFO [16305]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 10:03:36.497 INFO [16305]: account calls -- 10:03:36.497 INFO [16305]: account_calls() -- 10:03:36.497 INFO [16305]: LoginCoreGradeAccount() -- 10:03:36.497 FLOG_MAX [16305]: REQ_STRING(username) -- 10:03:36.497 FLOG_MAX [16305]: REQ_STRING(password) -- 10:03:36.497 FLOG_MAX [16305]: REQ_STRING(sessionid) -- 10:03:36.497 FLOG_MAX [16305]: long load_db_record( CVars &rec, const char * query, ... ) -- 10:03:36.497 SQL [16305]: pgsql_query() -- 10:03:36.497 SQL [16305]: About to run query: -- 10:03:36.497 SQL [16305]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 10:03:36.500 SQL [16305]: Found rows: 1 -- 10:03:36.500 FLOG_MAX [16305]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=15 -- 10:03:36.500 INFO [16305]: long SessionCheck(long uid, const char *sessionid, int create ) -- 10:03:36.500 SQL [16305]: pgsql_exec() -- 10:03:36.500 SQL [16305]: About to run query: -- 10:03:36.500 SQL [16305]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 10:03:36.501 SQL [16305]: PQcmdTuples: 1 -- 10:03:36.501 SQL [16305]: Affected rows: 1 -- 10:03:36.501 SQL [16305]: pgsql_exec() -- 10:03:36.501 SQL [16305]: About to run query: -- 10:03:36.501 SQL [16305]: DELETE FROM members_session WHERE member_id=7 -- 10:03:36.501 SQL [16305]: PQcmdTuples: 0 -- 10:03:36.501 SQL [16305]: Affected rows: 0 -- 10:03:36.501 SQL [16305]: pgsql_query() -- 10:03:36.501 SQL [16305]: About to run query: -- 10:03:36.501 SQL [16305]: SELECT * FROM members_session WHERE member_id=7 AND session<>'3AFD27CCA34A656C798A9C1D9ADCCB7C' -- 10:03:36.502 SQL [16305]: Found rows: 0 -- 10:03:36.502 SQL [16305]: Found rows: 0 -- 10:03:36.502 FLOG_MAX [16305]: long load_db_record( CVars &rec, const char * query, ... ) -- 10:03:36.502 SQL [16305]: pgsql_query() -- 10:03:36.502 SQL [16305]: About to run query: -- 10:03:36.502 SQL [16305]: SELECT * FROM members_session WHERE member_id=7 AND session='3AFD27CCA34A656C798A9C1D9ADCCB7C' -- 10:03:36.502 SQL [16305]: Found rows: 0 -- 10:03:36.502 SQL [16305]: Found rows: 0 -- 10:03:36.502 FLOG_MAX [16305]: insert_db_record() -- 10:03:36.502 SQL [16305]: pgsql_exec() -- 10:03:36.503 SQL [16305]: About to run query: -- 10:03:36.503 SQL [16305]: INSERT INTO members_session (member_id,session) VALUES ('7','3AFD27CCA34A656C798A9C1D9ADCCB7C') -- 10:03:36.504 SQL [16305]: PQcmdTuples: 1 -- 10:03:36.504 SQL [16305]: Affected rows: 1 -- 10:03:36.504 FLOG_MAX [16305]: SELECT currval('members_session_id_seq') -- 10:03:36.504 SQL [16305]: pgsql_query() -- 10:03:36.504 SQL [16305]: About to run query: -- 10:03:36.504 SQL [16305]: SELECT currval('members_session_id_seq') -- 10:03:36.504 SQL [16305]: Found rows: 1 -- 10:03:36.504 INFO [16305]: CreateDefaultPage() -- 10:03:36.504 FLOG_MAX [16305]: long load_db_record( CVars &rec, const char * query, ... ) -- 10:03:36.504 SQL [16305]: pgsql_query() -- 10:03:36.504 SQL [16305]: About to run query: -- 10:03:36.504 SQL [16305]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 10:03:36.505 SQL [16305]: Found rows: 1 -- 10:03:36.505 FLOG_MAX [16305]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 10:03:36.505 SQL [16305]: pgsql_query() -- 10:03:36.505 SQL [16305]: About to run query: -- 10:03:36.505 SQL [16305]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 10:03:36.505 SQL [16305]: Found rows: 1 -- 10:03:36.505 INFO [16305]: /CreateDefaultPage() -- 10:03:36.505 INFO [16305]: /LoginCoreGradeAccount() -- 10:03:36.505 INFO [16305]: RET: added=2020-02-05 09:42:12.816064 -- 10:03:36.505 INFO [16305]: RET: email=tokslaw@chiefsoft.com -- 10:03:36.505 INFO [16305]: RET: firstname=Tokunbo -- 10:03:36.505 INFO [16305]: RET: id=7 -- 10:03:36.505 INFO [16305]: RET: last_login= -- 10:03:36.505 INFO [16305]: RET: lastname=Lawal -- 10:03:36.505 INFO [16305]: RET: loc=192.168.1.13 -- 10:03:36.505 INFO [16305]: RET: member_id=7 -- 10:03:36.505 INFO [16305]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 10:03:36.505 INFO [16305]: RET: phone= -- 10:03:36.505 INFO [16305]: RET: pid= -- 10:03:36.505 INFO [16305]: RET: result=YES I GET TO BACK END -- 10:03:36.505 INFO [16305]: RET: sessionid=3AFD27CCA34A656C798A9C1D9ADCCB7C -- 10:03:36.505 INFO [16305]: RET: status=1 -- 10:03:36.505 INFO [16305]: RET: stauts=OK -- 10:03:36.505 INFO [16305]: RET: username=tokslaw@chiefsoft.com -- 10:03:36.505 INFO [16305]: RET: verified= -- 10:03:36.507 INFO [16305]: COREGRADE is stopping... -- 10:03:36.507 DEBUG [16305]: Closing database connection -- 10:03:36.507 SQL [16305]: pgsql_close() -- 10:03:36.458 DEBUG [16305]: Database connection successful -- 10:03:36.458 INFO [16305]: _SERVER found -- 10:03:36.458 INFO [16305]: REMOTE_ADDR = 192.168.1.13 -- 10:03:36.458 INFO [16305]: SERVER_NAME = oameye.works.coregrade.com -- 10:03:36.458 INFO [16305]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361 -- 10:03:36.458 INFO [16305]: QUERY_STRING = /auth -- 10:03:36.458 INFO [16305]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:03:36.507 INFO [16305]: COREGRADE is stopping... -- 10:03:36.507 DEBUG [16305]: Closing database connection -- 10:03:36.507 SQL [16305]: pgsql_close() -- 10:03:36.524 INFO [16305]: COREGRADE is starting... -- 10:03:36.525 INFO [16305]: Version from config: 1.0 -- 10:03:36.525 DEBUG [16305]: Connecting to database... -- 10:03:36.525 DEBUG [16305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:03:36.525 SQL [16305]: pgsql_db_connect() -- 10:03:36.528 DEBUG [16305]: Database connection successful -- 10:03:36.528 INFO [16305]: _SERVER found -- 10:03:36.528 INFO [16305]: REMOTE_ADDR = 192.168.1.13 -- 10:03:36.528 INFO [16305]: SERVER_NAME = oameye.works.coregrade.com -- 10:03:36.528 INFO [16305]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k8abiv5md28hdotf72ieolbk5dp9im20 -- 10:03:36.528 INFO [16305]: QUERY_STRING = /member/index -- 10:03:36.528 INFO [16305]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:03:36.564 INFO [16305]: COREGRADE is stopping... -- 10:03:36.564 DEBUG [16305]: Closing database connection -- 10:03:36.564 SQL [16305]: pgsql_close() -- 10:03:36.870 INFO [16305]: COREGRADE is starting... -- 10:03:36.870 INFO [16305]: Version from config: 1.0 -- 10:03:36.870 DEBUG [16305]: Connecting to database... -- 10:03:36.870 DEBUG [16305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:03:36.870 SQL [16305]: pgsql_db_connect() -- 10:03:36.874 DEBUG [16305]: Database connection successful -- 10:03:36.874 INFO [16305]: _SERVER found -- 10:03:36.874 INFO [16305]: REMOTE_ADDR = 192.168.1.13 -- 10:03:36.874 INFO [16305]: SERVER_NAME = oameye.works.coregrade.com -- 10:03:36.874 INFO [16305]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k8abiv5md28hdotf72ieolbk5dp9im20 -- 10:03:36.874 INFO [16305]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:03:36.874 INFO [16305]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:03:36.885 INFO [16305]: COREGRADE is stopping... -- 10:03:36.885 DEBUG [16305]: Closing database connection -- 10:03:36.885 SQL [16305]: pgsql_close() -- 10:03:36.891 INFO [16303]: COREGRADE is starting... -- 10:03:36.891 INFO [16303]: Version from config: 1.0 -- 10:03:36.891 DEBUG [16303]: Connecting to database... -- 10:03:36.891 DEBUG [16303]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:03:36.891 SQL [16303]: pgsql_db_connect() -- 10:03:36.894 DEBUG [16303]: Database connection successful -- 10:03:36.894 INFO [16303]: _SERVER found -- 10:03:36.894 INFO [16303]: REMOTE_ADDR = 192.168.1.13 -- 10:03:36.894 INFO [16303]: SERVER_NAME = oameye.works.coregrade.com -- 10:03:36.894 INFO [16303]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k8abiv5md28hdotf72ieolbk5dp9im20 -- 10:03:36.894 INFO [16303]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:03:36.894 INFO [16303]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:03:36.906 INFO [16303]: COREGRADE is stopping... -- 10:03:36.906 DEBUG [16303]: Closing database connection -- 10:03:36.906 SQL [16303]: pgsql_close() -- 10:03:38.586 INFO [16303]: COREGRADE is starting... -- 10:03:38.587 INFO [16303]: Version from config: 1.0 -- 10:03:38.587 DEBUG [16303]: Connecting to database... -- 10:03:38.587 DEBUG [16303]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:03:38.587 SQL [16303]: pgsql_db_connect() -- 10:03:38.591 DEBUG [16303]: Database connection successful -- 10:03:38.591 INFO [16303]: _SERVER found -- 10:03:38.591 INFO [16303]: REMOTE_ADDR = 192.168.1.13 -- 10:03:38.591 INFO [16303]: SERVER_NAME = oameye.works.coregrade.com -- 10:03:38.591 INFO [16303]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sm4gedvti5hn5a6ibuh8uol1ouc8sl5v -- 10:03:38.591 INFO [16303]: QUERY_STRING = /member -- 10:03:38.591 INFO [16303]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:03:38.631 INFO [16303]: COREGRADE is stopping... -- 10:03:38.631 DEBUG [16303]: Closing database connection -- 10:03:38.631 SQL [16303]: pgsql_close() -- 10:03:38.755 INFO [16303]: COREGRADE is starting... -- 10:03:38.756 INFO [16303]: Version from config: 1.0 -- 10:03:38.756 DEBUG [16303]: Connecting to database... -- 10:03:38.756 DEBUG [16303]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:03:38.756 SQL [16303]: pgsql_db_connect() -- 10:03:38.762 INFO [16305]: COREGRADE is starting... -- 10:03:38.763 INFO [16305]: Version from config: 1.0 -- 10:03:38.763 DEBUG [16305]: Connecting to database... -- 10:03:38.763 DEBUG [16305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:03:38.763 SQL [16305]: pgsql_db_connect() -- 10:03:38.760 DEBUG [16303]: Database connection successful -- 10:03:38.760 INFO [16303]: _SERVER found -- 10:03:38.760 INFO [16303]: REMOTE_ADDR = 192.168.1.13 -- 10:03:38.760 INFO [16303]: SERVER_NAME = oameye.works.coregrade.com -- 10:03:38.760 INFO [16303]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sm4gedvti5hn5a6ibuh8uol1ouc8sl5v -- 10:03:38.760 INFO [16303]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:03:38.760 INFO [16303]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:03:38.771 INFO [16303]: COREGRADE is stopping... -- 10:03:38.771 DEBUG [16303]: Closing database connection -- 10:03:38.771 SQL [16303]: pgsql_close() -- 10:03:38.766 DEBUG [16305]: Database connection successful -- 10:03:38.766 INFO [16305]: _SERVER found -- 10:03:38.766 INFO [16305]: REMOTE_ADDR = 192.168.1.13 -- 10:03:38.766 INFO [16305]: SERVER_NAME = oameye.works.coregrade.com -- 10:03:38.766 INFO [16305]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sm4gedvti5hn5a6ibuh8uol1ouc8sl5v -- 10:03:38.766 INFO [16305]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:03:38.766 INFO [16305]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:03:38.778 INFO [16305]: COREGRADE is stopping... -- 10:03:38.778 DEBUG [16305]: Closing database connection -- 10:03:38.778 SQL [16305]: pgsql_close() -- 10:03:56.469 INFO [16304]: COREGRADE is starting... -- 10:03:56.469 INFO [16304]: Version from config: 1.0 -- 10:03:56.469 DEBUG [16304]: Connecting to database... -- 10:03:56.469 DEBUG [16304]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:03:56.469 SQL [16304]: pgsql_db_connect() -- 10:03:56.473 DEBUG [16304]: Database connection successful -- 10:03:56.473 INFO [16304]: _SERVER found -- 10:03:56.473 INFO [16304]: REMOTE_ADDR = 192.168.1.13 -- 10:03:56.473 INFO [16304]: SERVER_NAME = oameye.works.coregrade.com -- 10:03:56.473 INFO [16304]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sm4gedvti5hn5a6ibuh8uol1ouc8sl5v -- 10:03:56.473 INFO [16304]: QUERY_STRING = /auth/logout -- 10:03:56.473 INFO [16304]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:03:56.508 INFO [16304]: COREGRADE is stopping... -- 10:03:56.508 DEBUG [16304]: Closing database connection -- 10:03:56.508 SQL [16304]: pgsql_close() -- 10:03:56.701 INFO [16304]: COREGRADE is starting... -- 10:03:56.701 INFO [16304]: Version from config: 1.0 -- 10:03:56.701 DEBUG [16304]: Connecting to database... -- 10:03:56.701 DEBUG [16304]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:03:56.701 SQL [16304]: pgsql_db_connect() -- 10:03:56.708 INFO [16302]: COREGRADE is starting... -- 10:03:56.709 INFO [16302]: Version from config: 1.0 -- 10:03:56.709 DEBUG [16302]: Connecting to database... -- 10:03:56.709 DEBUG [16302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:03:56.709 SQL [16302]: pgsql_db_connect() -- 10:03:56.705 DEBUG [16304]: Database connection successful -- 10:03:56.705 INFO [16304]: _SERVER found -- 10:03:56.705 INFO [16304]: REMOTE_ADDR = 192.168.1.13 -- 10:03:56.705 INFO [16304]: SERVER_NAME = oameye.works.coregrade.com -- 10:03:56.705 INFO [16304]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sm4gedvti5hn5a6ibuh8uol1ouc8sl5v -- 10:03:56.705 INFO [16304]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:03:56.705 INFO [16304]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:03:56.716 INFO [16304]: COREGRADE is stopping... -- 10:03:56.716 DEBUG [16304]: Closing database connection -- 10:03:56.716 SQL [16304]: pgsql_close() -- 10:03:56.712 DEBUG [16302]: Database connection successful -- 10:03:56.712 INFO [16302]: _SERVER found -- 10:03:56.712 INFO [16302]: REMOTE_ADDR = 192.168.1.13 -- 10:03:56.712 INFO [16302]: SERVER_NAME = oameye.works.coregrade.com -- 10:03:56.712 INFO [16302]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sm4gedvti5hn5a6ibuh8uol1ouc8sl5v -- 10:03:56.712 INFO [16302]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:03:56.712 INFO [16302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:03:56.724 INFO [16302]: COREGRADE is stopping... -- 10:03:56.724 DEBUG [16302]: Closing database connection -- 10:03:56.724 SQL [16302]: pgsql_close() -- 10:03:59.317 INFO [16302]: COREGRADE is starting... -- 10:03:59.317 INFO [16302]: Version from config: 1.0 -- 10:03:59.317 DEBUG [16302]: Connecting to database... -- 10:03:59.317 DEBUG [16302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:03:59.317 SQL [16302]: pgsql_db_connect() -- 10:03:59.353 INFO [16302]: COREGRADE is starting... -- 10:03:59.353 INFO [16302]: Version from config: 1.0 -- 10:03:59.353 DEBUG [16302]: Connecting to database... -- 10:03:59.353 DEBUG [16302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:03:59.353 SQL [16302]: pgsql_db_connect() -- 10:03:59.357 DEBUG [16302]: Database connection successful -- 10:03:59.357 INFO [16302]: _SERVER found -- 10:03:59.357 INFO [16302]: REMOTE_ADDR = 192.168.1.13 -- 10:03:59.357 INFO [16302]: SERVER_NAME = oameye.works.coregrade.com -- 10:03:59.357 INFO [16302]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sm4gedvti5hn5a6ibuh8uol1ouc8sl5v -- 10:03:59.357 INFO [16302]: QUERY_STRING = -- 10:03:59.357 INFO [16302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:03:59.357 INFO [16302]: SystemStatus()09-09-********~************ -- 10:03:59.357 INFO [16302]: long coregrade_api_main(CVars in, CVars &out) -- 10:03:59.357 INFO [16302]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 10:03:59.357 INFO [16302]: account calls -- 10:03:59.357 INFO [16302]: account_calls() -- 10:03:59.357 INFO [16302]: LoginCoreGradeAccount() -- 10:03:59.357 FLOG_MAX [16302]: REQ_STRING(username) -- 10:03:59.357 FLOG_MAX [16302]: REQ_STRING(password) -- 10:03:59.357 FLOG_MAX [16302]: REQ_STRING(sessionid) -- 10:03:59.357 FLOG_MAX [16302]: long load_db_record( CVars &rec, const char * query, ... ) -- 10:03:59.357 SQL [16302]: pgsql_query() -- 10:03:59.357 SQL [16302]: About to run query: -- 10:03:59.357 SQL [16302]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 10:03:59.360 SQL [16302]: Found rows: 1 -- 10:03:59.360 FLOG_MAX [16302]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 10:03:59.360 INFO [16302]: long SessionCheck(long uid, const char *sessionid, int create ) -- 10:03:59.360 SQL [16302]: pgsql_exec() -- 10:03:59.360 SQL [16302]: About to run query: -- 10:03:59.360 SQL [16302]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 10:03:59.361 SQL [16302]: PQcmdTuples: 0 -- 10:03:59.361 SQL [16302]: Affected rows: 0 -- 10:03:59.361 SQL [16302]: pgsql_exec() -- 10:03:59.361 SQL [16302]: About to run query: -- 10:03:59.361 SQL [16302]: DELETE FROM members_session WHERE member_id=5 -- 10:03:59.362 SQL [16302]: PQcmdTuples: 1 -- 10:03:59.362 SQL [16302]: Affected rows: 1 -- 10:03:59.362 SQL [16302]: pgsql_query() -- 10:03:59.362 SQL [16302]: About to run query: -- 10:03:59.362 SQL [16302]: SELECT * FROM members_session WHERE member_id=5 AND session<>'E00941EA613A4F4DD41C5BA1C22A2FA4' -- 10:03:59.363 SQL [16302]: Found rows: 0 -- 10:03:59.363 SQL [16302]: Found rows: 0 -- 10:03:59.363 FLOG_MAX [16302]: long load_db_record( CVars &rec, const char * query, ... ) -- 10:03:59.363 SQL [16302]: pgsql_query() -- 10:03:59.363 SQL [16302]: About to run query: -- 10:03:59.363 SQL [16302]: SELECT * FROM members_session WHERE member_id=5 AND session='E00941EA613A4F4DD41C5BA1C22A2FA4' -- 10:03:59.363 SQL [16302]: Found rows: 0 -- 10:03:59.363 SQL [16302]: Found rows: 0 -- 10:03:59.363 FLOG_MAX [16302]: insert_db_record() -- 10:03:59.363 SQL [16302]: pgsql_exec() -- 10:03:59.363 SQL [16302]: About to run query: -- 10:03:59.363 SQL [16302]: INSERT INTO members_session (member_id,session) VALUES ('5','E00941EA613A4F4DD41C5BA1C22A2FA4') -- 10:03:59.364 SQL [16302]: PQcmdTuples: 1 -- 10:03:59.364 SQL [16302]: Affected rows: 1 -- 10:03:59.364 FLOG_MAX [16302]: SELECT currval('members_session_id_seq') -- 10:03:59.364 SQL [16302]: pgsql_query() -- 10:03:59.364 SQL [16302]: About to run query: -- 10:03:59.364 SQL [16302]: SELECT currval('members_session_id_seq') -- 10:03:59.365 SQL [16302]: Found rows: 1 -- 10:03:59.365 INFO [16302]: CreateDefaultPage() -- 10:03:59.365 FLOG_MAX [16302]: long load_db_record( CVars &rec, const char * query, ... ) -- 10:03:59.365 SQL [16302]: pgsql_query() -- 10:03:59.365 SQL [16302]: About to run query: -- 10:03:59.365 SQL [16302]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 10:03:59.365 SQL [16302]: Found rows: 1 -- 10:03:59.365 FLOG_MAX [16302]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 10:03:59.365 SQL [16302]: pgsql_query() -- 10:03:59.365 SQL [16302]: About to run query: -- 10:03:59.365 SQL [16302]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 10:03:59.366 SQL [16302]: Found rows: 1 -- 10:03:59.366 INFO [16302]: /CreateDefaultPage() -- 10:03:59.366 INFO [16302]: /LoginCoreGradeAccount() -- 10:03:59.366 INFO [16302]: RET: added=2020-02-05 06:47:23.982154 -- 10:03:59.366 INFO [16302]: RET: email=ameye+11@chiefsoft.com -- 10:03:59.366 INFO [16302]: RET: firstname=Olu -- 10:03:59.366 INFO [16302]: RET: id=5 -- 10:03:59.366 INFO [16302]: RET: last_login= -- 10:03:59.366 INFO [16302]: RET: lastname=Amey -- 10:03:59.366 INFO [16302]: RET: loc=192.168.1.13 -- 10:03:59.366 INFO [16302]: RET: member_id=5 -- 10:03:59.366 INFO [16302]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 10:03:59.366 INFO [16302]: RET: phone= -- 10:03:59.366 INFO [16302]: RET: pid= -- 10:03:59.366 INFO [16302]: RET: result=YES I GET TO BACK END -- 10:03:59.366 INFO [16302]: RET: sessionid=E00941EA613A4F4DD41C5BA1C22A2FA4 -- 10:03:59.366 INFO [16302]: RET: status=1 -- 10:03:59.366 INFO [16302]: RET: stauts=OK -- 10:03:59.366 INFO [16302]: RET: username=ameye+11@chiefsoft.com -- 10:03:59.366 INFO [16302]: RET: verified= -- 10:03:59.367 INFO [16302]: COREGRADE is stopping... -- 10:03:59.367 DEBUG [16302]: Closing database connection -- 10:03:59.367 SQL [16302]: pgsql_close() -- 10:03:59.322 DEBUG [16302]: Database connection successful -- 10:03:59.322 INFO [16302]: _SERVER found -- 10:03:59.322 INFO [16302]: REMOTE_ADDR = 192.168.1.13 -- 10:03:59.322 INFO [16302]: SERVER_NAME = oameye.works.coregrade.com -- 10:03:59.322 INFO [16302]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sm4gedvti5hn5a6ibuh8uol1ouc8sl5v -- 10:03:59.322 INFO [16302]: QUERY_STRING = /auth -- 10:03:59.322 INFO [16302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:03:59.367 INFO [16302]: COREGRADE is stopping... -- 10:03:59.367 DEBUG [16302]: Closing database connection -- 10:03:59.367 SQL [16302]: pgsql_close() -- 10:03:59.406 INFO [16302]: COREGRADE is starting... -- 10:03:59.406 INFO [16302]: Version from config: 1.0 -- 10:03:59.406 DEBUG [16302]: Connecting to database... -- 10:03:59.406 DEBUG [16302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:03:59.406 SQL [16302]: pgsql_db_connect() -- 10:03:59.410 DEBUG [16302]: Database connection successful -- 10:03:59.410 INFO [16302]: _SERVER found -- 10:03:59.410 INFO [16302]: REMOTE_ADDR = 192.168.1.13 -- 10:03:59.410 INFO [16302]: SERVER_NAME = oameye.works.coregrade.com -- 10:03:59.410 INFO [16302]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sm4gedvti5hn5a6ibuh8uol1ouc8sl5v -- 10:03:59.410 INFO [16302]: QUERY_STRING = /member/index -- 10:03:59.410 INFO [16302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:03:59.445 INFO [16302]: COREGRADE is stopping... -- 10:03:59.445 DEBUG [16302]: Closing database connection -- 10:03:59.445 SQL [16302]: pgsql_close() -- 10:03:59.654 INFO [16302]: COREGRADE is starting... -- 10:03:59.655 INFO [16302]: Version from config: 1.0 -- 10:03:59.655 DEBUG [16302]: Connecting to database... -- 10:03:59.655 DEBUG [16302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:03:59.655 SQL [16302]: pgsql_db_connect() -- 10:03:59.659 DEBUG [16302]: Database connection successful -- 10:03:59.659 INFO [16302]: _SERVER found -- 10:03:59.659 INFO [16302]: REMOTE_ADDR = 192.168.1.13 -- 10:03:59.659 INFO [16302]: SERVER_NAME = oameye.works.coregrade.com -- 10:03:59.659 INFO [16302]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sm4gedvti5hn5a6ibuh8uol1ouc8sl5v -- 10:03:59.659 INFO [16302]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:03:59.659 INFO [16302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:03:59.670 INFO [16302]: COREGRADE is stopping... -- 10:03:59.670 DEBUG [16302]: Closing database connection -- 10:03:59.670 SQL [16302]: pgsql_close() -- 10:03:59.674 INFO [16304]: COREGRADE is starting... -- 10:03:59.675 INFO [16304]: Version from config: 1.0 -- 10:03:59.675 DEBUG [16304]: Connecting to database... -- 10:03:59.675 DEBUG [16304]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:03:59.675 SQL [16304]: pgsql_db_connect() -- 10:03:59.678 DEBUG [16304]: Database connection successful -- 10:03:59.678 INFO [16304]: _SERVER found -- 10:03:59.678 INFO [16304]: REMOTE_ADDR = 192.168.1.13 -- 10:03:59.678 INFO [16304]: SERVER_NAME = oameye.works.coregrade.com -- 10:03:59.678 INFO [16304]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sm4gedvti5hn5a6ibuh8uol1ouc8sl5v -- 10:03:59.678 INFO [16304]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:03:59.678 INFO [16304]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:03:59.689 INFO [16304]: COREGRADE is stopping... -- 10:03:59.689 DEBUG [16304]: Closing database connection -- 10:03:59.689 SQL [16304]: pgsql_close() -- 10:04:02.584 INFO [16304]: COREGRADE is starting... -- 10:04:02.584 INFO [16304]: Version from config: 1.0 -- 10:04:02.584 DEBUG [16304]: Connecting to database... -- 10:04:02.584 DEBUG [16304]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:04:02.584 SQL [16304]: pgsql_db_connect() -- 10:04:02.588 DEBUG [16304]: Database connection successful -- 10:04:02.588 INFO [16304]: _SERVER found -- 10:04:02.588 INFO [16304]: REMOTE_ADDR = 192.168.1.13 -- 10:04:02.588 INFO [16304]: SERVER_NAME = oameye.works.coregrade.com -- 10:04:02.588 INFO [16304]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sm4gedvti5hn5a6ibuh8uol1ouc8sl5v -- 10:04:02.588 INFO [16304]: QUERY_STRING = screen=member/page-user-profile -- 10:04:02.588 INFO [16304]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:04:02.600 INFO [16304]: COREGRADE is stopping... -- 10:04:02.600 DEBUG [16304]: Closing database connection -- 10:04:02.600 SQL [16304]: pgsql_close() -- 10:04:02.681 INFO [16304]: COREGRADE is starting... -- 10:04:02.681 INFO [16304]: Version from config: 1.0 -- 10:04:02.681 DEBUG [16304]: Connecting to database... -- 10:04:02.681 DEBUG [16304]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:04:02.681 SQL [16304]: pgsql_db_connect() -- 10:04:02.685 DEBUG [16304]: Database connection successful -- 10:04:02.685 INFO [16304]: _SERVER found -- 10:04:02.685 INFO [16304]: REMOTE_ADDR = 192.168.1.13 -- 10:04:02.685 INFO [16304]: SERVER_NAME = oameye.works.coregrade.com -- 10:04:02.685 INFO [16304]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sm4gedvti5hn5a6ibuh8uol1ouc8sl5v -- 10:04:02.685 INFO [16304]: QUERY_STRING = /favicon.ico -- 10:04:02.685 INFO [16304]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:04:02.696 INFO [16304]: COREGRADE is stopping... -- 10:04:02.696 DEBUG [16304]: Closing database connection -- 10:04:02.696 SQL [16304]: pgsql_close() -- 10:04:05.307 INFO [16304]: COREGRADE is starting... -- 10:04:05.307 INFO [16304]: Version from config: 1.0 -- 10:04:05.307 DEBUG [16304]: Connecting to database... -- 10:04:05.307 DEBUG [16304]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:04:05.307 SQL [16304]: pgsql_db_connect() -- 10:04:05.311 DEBUG [16304]: Database connection successful -- 10:04:05.311 INFO [16304]: _SERVER found -- 10:04:05.311 INFO [16304]: REMOTE_ADDR = 192.168.1.13 -- 10:04:05.311 INFO [16304]: SERVER_NAME = oameye.works.coregrade.com -- 10:04:05.311 INFO [16304]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sm4gedvti5hn5a6ibuh8uol1ouc8sl5v -- 10:04:05.311 INFO [16304]: QUERY_STRING = /member/index -- 10:04:05.311 INFO [16304]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:04:05.349 INFO [16304]: COREGRADE is stopping... -- 10:04:05.349 DEBUG [16304]: Closing database connection -- 10:04:05.349 SQL [16304]: pgsql_close() -- 10:04:05.565 INFO [16304]: COREGRADE is starting... -- 10:04:05.565 INFO [16304]: Version from config: 1.0 -- 10:04:05.565 DEBUG [16304]: Connecting to database... -- 10:04:05.565 DEBUG [16304]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:04:05.565 SQL [16304]: pgsql_db_connect() -- 10:04:05.569 DEBUG [16304]: Database connection successful -- 10:04:05.569 INFO [16304]: _SERVER found -- 10:04:05.569 INFO [16304]: REMOTE_ADDR = 192.168.1.13 -- 10:04:05.569 INFO [16304]: SERVER_NAME = oameye.works.coregrade.com -- 10:04:05.569 INFO [16304]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sm4gedvti5hn5a6ibuh8uol1ouc8sl5v -- 10:04:05.569 INFO [16304]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:04:05.569 INFO [16304]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:04:05.580 INFO [16304]: COREGRADE is stopping... -- 10:04:05.580 DEBUG [16304]: Closing database connection -- 10:04:05.580 SQL [16304]: pgsql_close() -- 10:04:07.913 INFO [16304]: COREGRADE is starting... -- 10:04:07.913 INFO [16304]: Version from config: 1.0 -- 10:04:07.913 DEBUG [16304]: Connecting to database... -- 10:04:07.913 DEBUG [16304]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:04:07.913 SQL [16304]: pgsql_db_connect() -- 10:04:07.917 DEBUG [16304]: Database connection successful -- 10:04:07.917 INFO [16304]: _SERVER found -- 10:04:07.917 INFO [16304]: REMOTE_ADDR = 192.168.1.13 -- 10:04:07.917 INFO [16304]: SERVER_NAME = oameye.works.coregrade.com -- 10:04:07.917 INFO [16304]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sm4gedvti5hn5a6ibuh8uol1ouc8sl5v -- 10:04:07.917 INFO [16304]: QUERY_STRING = /member -- 10:04:07.917 INFO [16304]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:04:07.954 INFO [16304]: COREGRADE is stopping... -- 10:04:07.954 DEBUG [16304]: Closing database connection -- 10:04:07.954 SQL [16304]: pgsql_close() -- 10:04:08.067 INFO [16304]: COREGRADE is starting... -- 10:04:08.067 INFO [16304]: Version from config: 1.0 -- 10:04:08.067 DEBUG [16304]: Connecting to database... -- 10:04:08.067 DEBUG [16304]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:04:08.067 SQL [16304]: pgsql_db_connect() -- 10:04:08.071 DEBUG [16304]: Database connection successful -- 10:04:08.071 INFO [16304]: _SERVER found -- 10:04:08.071 INFO [16304]: REMOTE_ADDR = 192.168.1.13 -- 10:04:08.071 INFO [16304]: SERVER_NAME = oameye.works.coregrade.com -- 10:04:08.071 INFO [16304]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sm4gedvti5hn5a6ibuh8uol1ouc8sl5v -- 10:04:08.071 INFO [16304]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:04:08.071 INFO [16304]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:04:08.082 INFO [16304]: COREGRADE is stopping... -- 10:04:08.082 DEBUG [16304]: Closing database connection -- 10:04:08.082 SQL [16304]: pgsql_close() -- 10:23:36.980 INFO [17314]: COREGRADE is starting... -- 10:23:36.981 INFO [17314]: Version from config: 1.0 -- 10:23:36.981 DEBUG [17314]: Connecting to database... -- 10:23:36.981 DEBUG [17314]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:23:36.981 SQL [17314]: pgsql_db_connect() -- 10:23:36.985 DEBUG [17314]: Database connection successful -- 10:23:36.985 INFO [17314]: _SERVER found -- 10:23:36.985 INFO [17314]: REMOTE_ADDR = 192.168.1.13 -- 10:23:36.985 INFO [17314]: SERVER_NAME = oameye.works.coregrade.com -- 10:23:36.985 INFO [17314]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k8abiv5md28hdotf72ieolbk5dp9im20 -- 10:23:36.985 INFO [17314]: QUERY_STRING = /auth -- 10:23:36.985 INFO [17314]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:23:37.018 INFO [17314]: COREGRADE is stopping... -- 10:23:37.018 DEBUG [17314]: Closing database connection -- 10:23:37.018 SQL [17314]: pgsql_close() -- 10:23:37.297 INFO [17314]: COREGRADE is starting... -- 10:23:37.297 INFO [17314]: Version from config: 1.0 -- 10:23:37.297 DEBUG [17314]: Connecting to database... -- 10:23:37.297 DEBUG [17314]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:23:37.297 SQL [17314]: pgsql_db_connect() -- 10:23:37.301 DEBUG [17314]: Database connection successful -- 10:23:37.301 INFO [17314]: _SERVER found -- 10:23:37.301 INFO [17314]: REMOTE_ADDR = 192.168.1.13 -- 10:23:37.301 INFO [17314]: SERVER_NAME = oameye.works.coregrade.com -- 10:23:37.301 INFO [17314]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=7dqamnvg8hclvn5vereaitnsu902fsom -- 10:23:37.301 INFO [17314]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:23:37.301 INFO [17314]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:23:37.312 INFO [17314]: COREGRADE is stopping... -- 10:23:37.312 DEBUG [17314]: Closing database connection -- 10:23:37.312 SQL [17314]: pgsql_close() -- 10:23:37.888 INFO [17314]: COREGRADE is starting... -- 10:23:37.888 INFO [17314]: Version from config: 1.0 -- 10:23:37.888 DEBUG [17314]: Connecting to database... -- 10:23:37.888 DEBUG [17314]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:23:37.888 SQL [17314]: pgsql_db_connect() -- 10:23:37.892 DEBUG [17314]: Database connection successful -- 10:23:37.892 INFO [17314]: _SERVER found -- 10:23:37.892 INFO [17314]: REMOTE_ADDR = 192.168.1.13 -- 10:23:37.892 INFO [17314]: SERVER_NAME = oameye.works.coregrade.com -- 10:23:37.892 INFO [17314]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=7dqamnvg8hclvn5vereaitnsu902fsom -- 10:23:37.892 INFO [17314]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:23:37.892 INFO [17314]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:23:37.903 INFO [17314]: COREGRADE is stopping... -- 10:23:37.903 DEBUG [17314]: Closing database connection -- 10:23:37.903 SQL [17314]: pgsql_close() -- 10:24:08.336 INFO [17315]: COREGRADE is starting... -- 10:24:08.337 INFO [17315]: Version from config: 1.0 -- 10:24:08.337 DEBUG [17315]: Connecting to database... -- 10:24:08.337 DEBUG [17315]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:24:08.337 SQL [17315]: pgsql_db_connect() -- 10:24:08.341 DEBUG [17315]: Database connection successful -- 10:24:08.341 INFO [17315]: _SERVER found -- 10:24:08.341 INFO [17315]: REMOTE_ADDR = 192.168.1.13 -- 10:24:08.341 INFO [17315]: SERVER_NAME = oameye.works.coregrade.com -- 10:24:08.341 INFO [17315]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=sm4gedvti5hn5a6ibuh8uol1ouc8sl5v -- 10:24:08.341 INFO [17315]: QUERY_STRING = /auth -- 10:24:08.341 INFO [17315]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:24:08.373 INFO [17315]: COREGRADE is stopping... -- 10:24:08.373 DEBUG [17315]: Closing database connection -- 10:24:08.373 SQL [17315]: pgsql_close() -- 10:24:08.540 INFO [17315]: COREGRADE is starting... -- 10:24:08.541 INFO [17315]: Version from config: 1.0 -- 10:24:08.541 DEBUG [17315]: Connecting to database... -- 10:24:08.541 DEBUG [17315]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:24:08.541 SQL [17315]: pgsql_db_connect() -- 10:24:08.548 INFO [17316]: COREGRADE is starting... -- 10:24:08.548 INFO [17316]: Version from config: 1.0 -- 10:24:08.548 DEBUG [17316]: Connecting to database... -- 10:24:08.548 DEBUG [17316]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:24:08.548 SQL [17316]: pgsql_db_connect() -- 10:24:08.545 DEBUG [17315]: Database connection successful -- 10:24:08.545 INFO [17315]: _SERVER found -- 10:24:08.545 INFO [17315]: REMOTE_ADDR = 192.168.1.13 -- 10:24:08.545 INFO [17315]: SERVER_NAME = oameye.works.coregrade.com -- 10:24:08.545 INFO [17315]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=umaorjsdggc13tbfe2aic90triqjaol0 -- 10:24:08.545 INFO [17315]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:24:08.545 INFO [17315]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:24:08.556 INFO [17315]: COREGRADE is stopping... -- 10:24:08.556 DEBUG [17315]: Closing database connection -- 10:24:08.556 SQL [17315]: pgsql_close() -- 10:24:08.552 DEBUG [17316]: Database connection successful -- 10:24:08.552 INFO [17316]: _SERVER found -- 10:24:08.552 INFO [17316]: REMOTE_ADDR = 192.168.1.13 -- 10:24:08.552 INFO [17316]: SERVER_NAME = oameye.works.coregrade.com -- 10:24:08.552 INFO [17316]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=umaorjsdggc13tbfe2aic90triqjaol0 -- 10:24:08.552 INFO [17316]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:24:08.552 INFO [17316]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:24:08.564 INFO [17316]: COREGRADE is stopping... -- 10:24:08.564 DEBUG [17316]: Closing database connection -- 10:24:08.564 SQL [17316]: pgsql_close() -- 10:39:09.201 INFO [17310]: COREGRADE is starting... -- 10:39:09.201 INFO [17310]: Version from config: 1.0 -- 10:39:09.201 DEBUG [17310]: Connecting to database... -- 10:39:09.201 DEBUG [17310]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:39:09.201 SQL [17310]: pgsql_db_connect() -- 10:39:09.238 INFO [17310]: COREGRADE is starting... -- 10:39:09.238 INFO [17310]: Version from config: 1.0 -- 10:39:09.238 DEBUG [17310]: Connecting to database... -- 10:39:09.238 DEBUG [17310]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:39:09.238 SQL [17310]: pgsql_db_connect() -- 10:39:09.242 DEBUG [17310]: Database connection successful -- 10:39:09.242 INFO [17310]: _SERVER found -- 10:39:09.242 INFO [17310]: REMOTE_ADDR = 192.168.1.13 -- 10:39:09.242 INFO [17310]: SERVER_NAME = oameye.works.coregrade.com -- 10:39:09.242 INFO [17310]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=umaorjsdggc13tbfe2aic90triqjaol0 -- 10:39:09.242 INFO [17310]: QUERY_STRING = -- 10:39:09.242 INFO [17310]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:39:09.242 INFO [17310]: SystemStatus()09-09-********~************ -- 10:39:09.242 INFO [17310]: long coregrade_api_main(CVars in, CVars &out) -- 10:39:09.242 INFO [17310]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 10:39:09.242 INFO [17310]: account calls -- 10:39:09.242 INFO [17310]: account_calls() -- 10:39:09.242 INFO [17310]: LoginCoreGradeAccount() -- 10:39:09.242 FLOG_MAX [17310]: REQ_STRING(username) -- 10:39:09.243 FLOG_MAX [17310]: REQ_STRING(password) -- 10:39:09.243 FLOG_MAX [17310]: REQ_STRING(sessionid) -- 10:39:09.243 FLOG_MAX [17310]: long load_db_record( CVars &rec, const char * query, ... ) -- 10:39:09.243 SQL [17310]: pgsql_query() -- 10:39:09.243 SQL [17310]: About to run query: -- 10:39:09.243 SQL [17310]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 10:39:09.246 SQL [17310]: Found rows: 1 -- 10:39:09.246 FLOG_MAX [17310]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 10:39:09.246 INFO [17310]: long SessionCheck(long uid, const char *sessionid, int create ) -- 10:39:09.246 SQL [17310]: pgsql_exec() -- 10:39:09.246 SQL [17310]: About to run query: -- 10:39:09.246 SQL [17310]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 10:39:09.248 SQL [17310]: PQcmdTuples: 1 -- 10:39:09.248 SQL [17310]: Affected rows: 1 -- 10:39:09.248 SQL [17310]: pgsql_exec() -- 10:39:09.248 SQL [17310]: About to run query: -- 10:39:09.248 SQL [17310]: DELETE FROM members_session WHERE member_id=5 -- 10:39:09.248 SQL [17310]: PQcmdTuples: 0 -- 10:39:09.248 SQL [17310]: Affected rows: 0 -- 10:39:09.248 SQL [17310]: pgsql_query() -- 10:39:09.248 SQL [17310]: About to run query: -- 10:39:09.248 SQL [17310]: SELECT * FROM members_session WHERE member_id=5 AND session<>'C1B0143B514D868A3223EE13CD799C97' -- 10:39:09.249 SQL [17310]: Found rows: 0 -- 10:39:09.249 SQL [17310]: Found rows: 0 -- 10:39:09.249 FLOG_MAX [17310]: long load_db_record( CVars &rec, const char * query, ... ) -- 10:39:09.249 SQL [17310]: pgsql_query() -- 10:39:09.249 SQL [17310]: About to run query: -- 10:39:09.249 SQL [17310]: SELECT * FROM members_session WHERE member_id=5 AND session='C1B0143B514D868A3223EE13CD799C97' -- 10:39:09.249 SQL [17310]: Found rows: 0 -- 10:39:09.249 SQL [17310]: Found rows: 0 -- 10:39:09.249 FLOG_MAX [17310]: insert_db_record() -- 10:39:09.249 SQL [17310]: pgsql_exec() -- 10:39:09.249 SQL [17310]: About to run query: -- 10:39:09.249 SQL [17310]: INSERT INTO members_session (member_id,session) VALUES ('5','C1B0143B514D868A3223EE13CD799C97') -- 10:39:09.251 SQL [17310]: PQcmdTuples: 1 -- 10:39:09.251 SQL [17310]: Affected rows: 1 -- 10:39:09.251 FLOG_MAX [17310]: SELECT currval('members_session_id_seq') -- 10:39:09.251 SQL [17310]: pgsql_query() -- 10:39:09.251 SQL [17310]: About to run query: -- 10:39:09.251 SQL [17310]: SELECT currval('members_session_id_seq') -- 10:39:09.251 SQL [17310]: Found rows: 1 -- 10:39:09.251 INFO [17310]: CreateDefaultPage() -- 10:39:09.251 FLOG_MAX [17310]: long load_db_record( CVars &rec, const char * query, ... ) -- 10:39:09.251 SQL [17310]: pgsql_query() -- 10:39:09.251 SQL [17310]: About to run query: -- 10:39:09.251 SQL [17310]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 10:39:09.252 SQL [17310]: Found rows: 1 -- 10:39:09.252 FLOG_MAX [17310]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 10:39:09.252 SQL [17310]: pgsql_query() -- 10:39:09.252 SQL [17310]: About to run query: -- 10:39:09.252 SQL [17310]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 10:39:09.252 SQL [17310]: Found rows: 1 -- 10:39:09.252 INFO [17310]: /CreateDefaultPage() -- 10:39:09.252 INFO [17310]: /LoginCoreGradeAccount() -- 10:39:09.252 INFO [17310]: RET: added=2020-02-05 06:47:23.982154 -- 10:39:09.252 INFO [17310]: RET: email=ameye+11@chiefsoft.com -- 10:39:09.252 INFO [17310]: RET: firstname=Olu -- 10:39:09.252 INFO [17310]: RET: id=5 -- 10:39:09.252 INFO [17310]: RET: last_login= -- 10:39:09.252 INFO [17310]: RET: lastname=Amey -- 10:39:09.252 INFO [17310]: RET: loc=192.168.1.13 -- 10:39:09.252 INFO [17310]: RET: member_id=5 -- 10:39:09.252 INFO [17310]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 10:39:09.252 INFO [17310]: RET: phone= -- 10:39:09.252 INFO [17310]: RET: pid= -- 10:39:09.252 INFO [17310]: RET: result=YES I GET TO BACK END -- 10:39:09.252 INFO [17310]: RET: sessionid=C1B0143B514D868A3223EE13CD799C97 -- 10:39:09.252 INFO [17310]: RET: status=1 -- 10:39:09.252 INFO [17310]: RET: stauts=OK -- 10:39:09.252 INFO [17310]: RET: username=ameye+11@chiefsoft.com -- 10:39:09.252 INFO [17310]: RET: verified= -- 10:39:09.254 INFO [17310]: COREGRADE is stopping... -- 10:39:09.254 DEBUG [17310]: Closing database connection -- 10:39:09.254 SQL [17310]: pgsql_close() -- 10:39:09.206 DEBUG [17310]: Database connection successful -- 10:39:09.206 INFO [17310]: _SERVER found -- 10:39:09.206 INFO [17310]: REMOTE_ADDR = 192.168.1.13 -- 10:39:09.206 INFO [17310]: SERVER_NAME = oameye.works.coregrade.com -- 10:39:09.206 INFO [17310]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=umaorjsdggc13tbfe2aic90triqjaol0 -- 10:39:09.206 INFO [17310]: QUERY_STRING = /auth -- 10:39:09.206 INFO [17310]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:39:09.254 INFO [17310]: COREGRADE is stopping... -- 10:39:09.254 DEBUG [17310]: Closing database connection -- 10:39:09.254 SQL [17310]: pgsql_close() -- 10:39:09.281 INFO [17310]: COREGRADE is starting... -- 10:39:09.282 INFO [17310]: Version from config: 1.0 -- 10:39:09.282 DEBUG [17310]: Connecting to database... -- 10:39:09.282 DEBUG [17310]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:39:09.282 SQL [17310]: pgsql_db_connect() -- 10:39:09.285 DEBUG [17310]: Database connection successful -- 10:39:09.285 INFO [17310]: _SERVER found -- 10:39:09.285 INFO [17310]: REMOTE_ADDR = 192.168.1.13 -- 10:39:09.285 INFO [17310]: SERVER_NAME = oameye.works.coregrade.com -- 10:39:09.285 INFO [17310]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:39:09.285 INFO [17310]: QUERY_STRING = /member/index -- 10:39:09.285 INFO [17310]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:39:09.320 INFO [17310]: COREGRADE is stopping... -- 10:39:09.320 DEBUG [17310]: Closing database connection -- 10:39:09.320 SQL [17310]: pgsql_close() -- 10:39:09.506 INFO [17310]: COREGRADE is starting... -- 10:39:09.506 INFO [17310]: Version from config: 1.0 -- 10:39:09.506 DEBUG [17310]: Connecting to database... -- 10:39:09.506 DEBUG [17310]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:39:09.506 SQL [17310]: pgsql_db_connect() -- 10:39:09.510 DEBUG [17310]: Database connection successful -- 10:39:09.510 INFO [17310]: _SERVER found -- 10:39:09.510 INFO [17310]: REMOTE_ADDR = 192.168.1.13 -- 10:39:09.510 INFO [17310]: SERVER_NAME = oameye.works.coregrade.com -- 10:39:09.510 INFO [17310]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:39:09.510 INFO [17310]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:39:09.510 INFO [17310]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:39:09.521 INFO [17310]: COREGRADE is stopping... -- 10:39:09.521 DEBUG [17310]: Closing database connection -- 10:39:09.521 SQL [17310]: pgsql_close() -- 10:39:09.528 INFO [17310]: COREGRADE is starting... -- 10:39:09.528 INFO [17310]: Version from config: 1.0 -- 10:39:09.528 DEBUG [17310]: Connecting to database... -- 10:39:09.528 DEBUG [17310]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:39:09.528 SQL [17310]: pgsql_db_connect() -- 10:39:09.532 DEBUG [17310]: Database connection successful -- 10:39:09.532 INFO [17310]: _SERVER found -- 10:39:09.532 INFO [17310]: REMOTE_ADDR = 192.168.1.13 -- 10:39:09.532 INFO [17310]: SERVER_NAME = oameye.works.coregrade.com -- 10:39:09.532 INFO [17310]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:39:09.532 INFO [17310]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:39:09.532 INFO [17310]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:39:09.543 INFO [17310]: COREGRADE is stopping... -- 10:39:09.543 DEBUG [17310]: Closing database connection -- 10:39:09.543 SQL [17310]: pgsql_close() -- 10:39:17.857 INFO [17313]: COREGRADE is starting... -- 10:39:17.857 INFO [17313]: Version from config: 1.0 -- 10:39:17.857 DEBUG [17313]: Connecting to database... -- 10:39:17.857 DEBUG [17313]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:39:17.857 SQL [17313]: pgsql_db_connect() -- 10:39:17.861 DEBUG [17313]: Database connection successful -- 10:39:17.861 INFO [17313]: _SERVER found -- 10:39:17.861 INFO [17313]: REMOTE_ADDR = 192.168.1.13 -- 10:39:17.861 INFO [17313]: SERVER_NAME = oameye.works.coregrade.com -- 10:39:17.861 INFO [17313]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:39:17.861 INFO [17313]: QUERY_STRING = /member/page -- 10:39:17.861 INFO [17313]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:39:17.902 INFO [17313]: COREGRADE is stopping... -- 10:39:17.902 DEBUG [17313]: Closing database connection -- 10:39:17.902 SQL [17313]: pgsql_close() -- 10:39:18.054 INFO [17313]: COREGRADE is starting... -- 10:39:18.054 INFO [17313]: Version from config: 1.0 -- 10:39:18.054 DEBUG [17313]: Connecting to database... -- 10:39:18.054 DEBUG [17313]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:39:18.054 SQL [17313]: pgsql_db_connect() -- 10:39:18.059 DEBUG [17313]: Database connection successful -- 10:39:18.059 INFO [17313]: _SERVER found -- 10:39:18.059 INFO [17313]: REMOTE_ADDR = 192.168.1.13 -- 10:39:18.059 INFO [17313]: SERVER_NAME = oameye.works.coregrade.com -- 10:39:18.059 INFO [17313]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:39:18.059 INFO [17313]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:39:18.059 INFO [17313]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:39:18.070 INFO [17313]: COREGRADE is stopping... -- 10:39:18.070 DEBUG [17313]: Closing database connection -- 10:39:18.070 SQL [17313]: pgsql_close() -- 10:39:18.072 INFO [16301]: COREGRADE is starting... -- 10:39:18.072 INFO [16301]: Version from config: 1.0 -- 10:39:18.072 DEBUG [16301]: Connecting to database... -- 10:39:18.072 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:39:18.072 SQL [16301]: pgsql_db_connect() -- 10:39:18.076 DEBUG [16301]: Database connection successful -- 10:39:18.076 INFO [16301]: _SERVER found -- 10:39:18.076 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 10:39:18.076 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 10:39:18.076 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:39:18.076 INFO [16301]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:39:18.076 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:39:18.087 INFO [16301]: COREGRADE is stopping... -- 10:39:18.087 DEBUG [16301]: Closing database connection -- 10:39:18.087 SQL [16301]: pgsql_close() -- 10:39:19.927 INFO [16301]: COREGRADE is starting... -- 10:39:19.927 INFO [16301]: Version from config: 1.0 -- 10:39:19.927 DEBUG [16301]: Connecting to database... -- 10:39:19.927 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:39:19.927 SQL [16301]: pgsql_db_connect() -- 10:39:19.932 DEBUG [16301]: Database connection successful -- 10:39:19.932 INFO [16301]: _SERVER found -- 10:39:19.932 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 10:39:19.932 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 10:39:19.932 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:39:19.932 INFO [16301]: QUERY_STRING = /member/viewCardAddAction -- 10:39:19.932 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:39:19.962 INFO [16301]: COREGRADE is stopping... -- 10:39:19.962 DEBUG [16301]: Closing database connection -- 10:39:19.962 SQL [16301]: pgsql_close() -- 10:39:21.500 INFO [16301]: COREGRADE is starting... -- 10:39:21.500 INFO [16301]: Version from config: 1.0 -- 10:39:21.500 DEBUG [16301]: Connecting to database... -- 10:39:21.500 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:39:21.500 SQL [16301]: pgsql_db_connect() -- 10:39:21.504 DEBUG [16301]: Database connection successful -- 10:39:21.504 INFO [16301]: _SERVER found -- 10:39:21.504 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 10:39:21.504 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 10:39:21.504 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:39:21.504 INFO [16301]: QUERY_STRING = /member/viewCardAddAction -- 10:39:21.504 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:39:21.534 INFO [16301]: COREGRADE is stopping... -- 10:39:21.534 DEBUG [16301]: Closing database connection -- 10:39:21.534 SQL [16301]: pgsql_close() -- 10:39:24.149 INFO [16301]: COREGRADE is starting... -- 10:39:24.149 INFO [16301]: Version from config: 1.0 -- 10:39:24.149 DEBUG [16301]: Connecting to database... -- 10:39:24.149 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:39:24.149 SQL [16301]: pgsql_db_connect() -- 10:39:24.153 DEBUG [16301]: Database connection successful -- 10:39:24.153 INFO [16301]: _SERVER found -- 10:39:24.153 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 10:39:24.153 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 10:39:24.153 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:39:24.153 INFO [16301]: QUERY_STRING = /member/page -- 10:39:24.153 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:39:24.187 INFO [16301]: COREGRADE is stopping... -- 10:39:24.187 DEBUG [16301]: Closing database connection -- 10:39:24.187 SQL [16301]: pgsql_close() -- 10:39:24.395 INFO [16301]: COREGRADE is starting... -- 10:39:24.396 INFO [16301]: Version from config: 1.0 -- 10:39:24.396 DEBUG [16301]: Connecting to database... -- 10:39:24.396 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:39:24.396 SQL [16301]: pgsql_db_connect() -- 10:39:24.400 DEBUG [16301]: Database connection successful -- 10:39:24.400 INFO [16301]: _SERVER found -- 10:39:24.400 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 10:39:24.400 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 10:39:24.400 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:39:24.400 INFO [16301]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:39:24.400 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:39:24.411 INFO [16301]: COREGRADE is stopping... -- 10:39:24.411 DEBUG [16301]: Closing database connection -- 10:39:24.411 SQL [16301]: pgsql_close() -- 10:39:24.425 INFO [16303]: COREGRADE is starting... -- 10:39:24.426 INFO [16303]: Version from config: 1.0 -- 10:39:24.426 DEBUG [16303]: Connecting to database... -- 10:39:24.426 DEBUG [16303]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:39:24.426 SQL [16303]: pgsql_db_connect() -- 10:39:24.429 DEBUG [16303]: Database connection successful -- 10:39:24.429 INFO [16303]: _SERVER found -- 10:39:24.429 INFO [16303]: REMOTE_ADDR = 192.168.1.13 -- 10:39:24.429 INFO [16303]: SERVER_NAME = oameye.works.coregrade.com -- 10:39:24.429 INFO [16303]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:39:24.429 INFO [16303]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:39:24.429 INFO [16303]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:39:24.441 INFO [16303]: COREGRADE is stopping... -- 10:39:24.441 DEBUG [16303]: Closing database connection -- 10:39:24.441 SQL [16303]: pgsql_close() -- 10:39:26.864 INFO [16303]: COREGRADE is starting... -- 10:39:26.864 INFO [16303]: Version from config: 1.0 -- 10:39:26.864 DEBUG [16303]: Connecting to database... -- 10:39:26.864 DEBUG [16303]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:39:26.864 SQL [16303]: pgsql_db_connect() -- 10:39:26.868 DEBUG [16303]: Database connection successful -- 10:39:26.868 INFO [16303]: _SERVER found -- 10:39:26.868 INFO [16303]: REMOTE_ADDR = 192.168.1.13 -- 10:39:26.868 INFO [16303]: SERVER_NAME = oameye.works.coregrade.com -- 10:39:26.868 INFO [16303]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:39:26.868 INFO [16303]: QUERY_STRING = /member/page -- 10:39:26.868 INFO [16303]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:39:26.904 INFO [16303]: COREGRADE is stopping... -- 10:39:26.904 DEBUG [16303]: Closing database connection -- 10:39:26.904 SQL [16303]: pgsql_close() -- 10:39:27.016 INFO [16303]: COREGRADE is starting... -- 10:39:27.016 INFO [16303]: Version from config: 1.0 -- 10:39:27.016 DEBUG [16303]: Connecting to database... -- 10:39:27.016 DEBUG [16303]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:39:27.016 SQL [16303]: pgsql_db_connect() -- 10:39:27.020 DEBUG [16303]: Database connection successful -- 10:39:27.020 INFO [16303]: _SERVER found -- 10:39:27.020 INFO [16303]: REMOTE_ADDR = 192.168.1.13 -- 10:39:27.020 INFO [16303]: SERVER_NAME = oameye.works.coregrade.com -- 10:39:27.020 INFO [16303]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:39:27.020 INFO [16303]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:39:27.020 INFO [16303]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:39:27.031 INFO [16303]: COREGRADE is stopping... -- 10:39:27.031 DEBUG [16303]: Closing database connection -- 10:39:27.031 SQL [16303]: pgsql_close() -- 10:39:27.051 INFO [16301]: COREGRADE is starting... -- 10:39:27.051 INFO [16301]: Version from config: 1.0 -- 10:39:27.051 DEBUG [16301]: Connecting to database... -- 10:39:27.051 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:39:27.051 SQL [16301]: pgsql_db_connect() -- 10:39:27.055 DEBUG [16301]: Database connection successful -- 10:39:27.055 INFO [16301]: _SERVER found -- 10:39:27.055 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 10:39:27.055 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 10:39:27.055 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:39:27.055 INFO [16301]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:39:27.055 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:39:27.066 INFO [16301]: COREGRADE is stopping... -- 10:39:27.066 DEBUG [16301]: Closing database connection -- 10:39:27.066 SQL [16301]: pgsql_close() -- 10:39:28.713 INFO [16301]: COREGRADE is starting... -- 10:39:28.713 INFO [16301]: Version from config: 1.0 -- 10:39:28.713 DEBUG [16301]: Connecting to database... -- 10:39:28.713 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:39:28.713 SQL [16301]: pgsql_db_connect() -- 10:39:28.717 DEBUG [16301]: Database connection successful -- 10:39:28.717 INFO [16301]: _SERVER found -- 10:39:28.718 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 10:39:28.718 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 10:39:28.718 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:39:28.718 INFO [16301]: QUERY_STRING = /member/viewCardAddAction -- 10:39:28.718 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:39:28.747 INFO [16301]: COREGRADE is stopping... -- 10:39:28.747 DEBUG [16301]: Closing database connection -- 10:39:28.747 SQL [16301]: pgsql_close() -- 10:40:12.787 INFO [16305]: COREGRADE is starting... -- 10:40:12.788 INFO [16305]: Version from config: 1.0 -- 10:40:12.788 DEBUG [16305]: Connecting to database... -- 10:40:12.788 DEBUG [16305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:40:12.788 SQL [16305]: pgsql_db_connect() -- 10:40:12.792 DEBUG [16305]: Database connection successful -- 10:40:12.792 INFO [16305]: _SERVER found -- 10:40:12.792 INFO [16305]: REMOTE_ADDR = 192.168.1.13 -- 10:40:12.792 INFO [16305]: SERVER_NAME = oameye.works.coregrade.com -- 10:40:12.792 INFO [16305]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:40:12.792 INFO [16305]: QUERY_STRING = /member/viewCardAddAction -- 10:40:12.792 INFO [16305]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:40:12.823 INFO [16305]: COREGRADE is stopping... -- 10:40:12.823 DEBUG [16305]: Closing database connection -- 10:40:12.823 SQL [16305]: pgsql_close() -- 10:40:13.858 INFO [16305]: COREGRADE is starting... -- 10:40:13.858 INFO [16305]: Version from config: 1.0 -- 10:40:13.858 DEBUG [16305]: Connecting to database... -- 10:40:13.858 DEBUG [16305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:40:13.858 SQL [16305]: pgsql_db_connect() -- 10:40:13.862 DEBUG [16305]: Database connection successful -- 10:40:13.862 INFO [16305]: _SERVER found -- 10:40:13.862 INFO [16305]: REMOTE_ADDR = 192.168.1.13 -- 10:40:13.862 INFO [16305]: SERVER_NAME = oameye.works.coregrade.com -- 10:40:13.862 INFO [16305]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:40:13.862 INFO [16305]: QUERY_STRING = /member/viewCardAddAction -- 10:40:13.862 INFO [16305]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:40:13.892 INFO [16305]: COREGRADE is stopping... -- 10:40:13.892 DEBUG [16305]: Closing database connection -- 10:40:13.892 SQL [16305]: pgsql_close() -- 10:41:16.611 INFO [16302]: COREGRADE is starting... -- 10:41:16.611 INFO [16302]: Version from config: 1.0 -- 10:41:16.611 DEBUG [16302]: Connecting to database... -- 10:41:16.611 DEBUG [16302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:41:16.611 SQL [16302]: pgsql_db_connect() -- 10:41:16.615 DEBUG [16302]: Database connection successful -- 10:41:16.615 INFO [16302]: _SERVER found -- 10:41:16.615 INFO [16302]: REMOTE_ADDR = 192.168.1.13 -- 10:41:16.615 INFO [16302]: SERVER_NAME = oameye.works.coregrade.com -- 10:41:16.615 INFO [16302]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:41:16.615 INFO [16302]: QUERY_STRING = /member/viewCardAddAction -- 10:41:16.615 INFO [16302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:41:16.646 INFO [16302]: COREGRADE is stopping... -- 10:41:16.646 DEBUG [16302]: Closing database connection -- 10:41:16.646 SQL [16302]: pgsql_close() -- 10:41:19.427 INFO [16302]: COREGRADE is starting... -- 10:41:19.427 INFO [16302]: Version from config: 1.0 -- 10:41:19.427 DEBUG [16302]: Connecting to database... -- 10:41:19.427 DEBUG [16302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:41:19.427 SQL [16302]: pgsql_db_connect() -- 10:41:19.431 DEBUG [16302]: Database connection successful -- 10:41:19.431 INFO [16302]: _SERVER found -- 10:41:19.431 INFO [16302]: REMOTE_ADDR = 192.168.1.13 -- 10:41:19.431 INFO [16302]: SERVER_NAME = oameye.works.coregrade.com -- 10:41:19.431 INFO [16302]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:41:19.431 INFO [16302]: QUERY_STRING = /member/viewCardAddAction -- 10:41:19.431 INFO [16302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:41:19.461 INFO [16302]: COREGRADE is stopping... -- 10:41:19.461 DEBUG [16302]: Closing database connection -- 10:41:19.461 SQL [16302]: pgsql_close() -- 10:41:20.086 INFO [16302]: COREGRADE is starting... -- 10:41:20.086 INFO [16302]: Version from config: 1.0 -- 10:41:20.086 DEBUG [16302]: Connecting to database... -- 10:41:20.086 DEBUG [16302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:41:20.086 SQL [16302]: pgsql_db_connect() -- 10:41:20.091 DEBUG [16302]: Database connection successful -- 10:41:20.091 INFO [16302]: _SERVER found -- 10:41:20.091 INFO [16302]: REMOTE_ADDR = 192.168.1.13 -- 10:41:20.091 INFO [16302]: SERVER_NAME = oameye.works.coregrade.com -- 10:41:20.091 INFO [16302]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:41:20.091 INFO [16302]: QUERY_STRING = /member/viewCardAddAction -- 10:41:20.091 INFO [16302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:41:20.120 INFO [16302]: COREGRADE is stopping... -- 10:41:20.120 DEBUG [16302]: Closing database connection -- 10:41:20.121 SQL [16302]: pgsql_close() -- 10:41:20.775 INFO [16302]: COREGRADE is starting... -- 10:41:20.776 INFO [16302]: Version from config: 1.0 -- 10:41:20.776 DEBUG [16302]: Connecting to database... -- 10:41:20.776 DEBUG [16302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:41:20.776 SQL [16302]: pgsql_db_connect() -- 10:41:20.780 DEBUG [16302]: Database connection successful -- 10:41:20.780 INFO [16302]: _SERVER found -- 10:41:20.780 INFO [16302]: REMOTE_ADDR = 192.168.1.13 -- 10:41:20.780 INFO [16302]: SERVER_NAME = oameye.works.coregrade.com -- 10:41:20.780 INFO [16302]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:41:20.780 INFO [16302]: QUERY_STRING = /member/viewCardAddAction -- 10:41:20.780 INFO [16302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:41:20.810 INFO [16302]: COREGRADE is stopping... -- 10:41:20.810 DEBUG [16302]: Closing database connection -- 10:41:20.810 SQL [16302]: pgsql_close() -- 10:41:21.533 INFO [16302]: COREGRADE is starting... -- 10:41:21.533 INFO [16302]: Version from config: 1.0 -- 10:41:21.533 DEBUG [16302]: Connecting to database... -- 10:41:21.533 DEBUG [16302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:41:21.533 SQL [16302]: pgsql_db_connect() -- 10:41:21.537 DEBUG [16302]: Database connection successful -- 10:41:21.537 INFO [16302]: _SERVER found -- 10:41:21.537 INFO [16302]: REMOTE_ADDR = 192.168.1.13 -- 10:41:21.537 INFO [16302]: SERVER_NAME = oameye.works.coregrade.com -- 10:41:21.537 INFO [16302]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:41:21.537 INFO [16302]: QUERY_STRING = /member/viewCardAddAction -- 10:41:21.537 INFO [16302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:41:21.567 INFO [16302]: COREGRADE is stopping... -- 10:41:21.567 DEBUG [16302]: Closing database connection -- 10:41:21.567 SQL [16302]: pgsql_close() -- 10:41:22.192 INFO [16302]: COREGRADE is starting... -- 10:41:22.192 INFO [16302]: Version from config: 1.0 -- 10:41:22.192 DEBUG [16302]: Connecting to database... -- 10:41:22.192 DEBUG [16302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:41:22.192 SQL [16302]: pgsql_db_connect() -- 10:41:22.196 DEBUG [16302]: Database connection successful -- 10:41:22.196 INFO [16302]: _SERVER found -- 10:41:22.196 INFO [16302]: REMOTE_ADDR = 192.168.1.13 -- 10:41:22.196 INFO [16302]: SERVER_NAME = oameye.works.coregrade.com -- 10:41:22.196 INFO [16302]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:41:22.196 INFO [16302]: QUERY_STRING = /member/viewCardAddAction -- 10:41:22.196 INFO [16302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:41:22.226 INFO [16302]: COREGRADE is stopping... -- 10:41:22.226 DEBUG [16302]: Closing database connection -- 10:41:22.226 SQL [16302]: pgsql_close() -- 10:41:28.400 INFO [16304]: COREGRADE is starting... -- 10:41:28.400 INFO [16304]: Version from config: 1.0 -- 10:41:28.400 DEBUG [16304]: Connecting to database... -- 10:41:28.400 DEBUG [16304]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:41:28.400 SQL [16304]: pgsql_db_connect() -- 10:41:28.404 DEBUG [16304]: Database connection successful -- 10:41:28.404 INFO [16304]: _SERVER found -- 10:41:28.404 INFO [16304]: REMOTE_ADDR = 192.168.1.13 -- 10:41:28.404 INFO [16304]: SERVER_NAME = oameye.works.coregrade.com -- 10:41:28.404 INFO [16304]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:41:28.404 INFO [16304]: QUERY_STRING = /member/viewCardAddAction -- 10:41:28.404 INFO [16304]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:41:28.438 INFO [16304]: COREGRADE is stopping... -- 10:41:28.438 DEBUG [16304]: Closing database connection -- 10:41:28.438 SQL [16304]: pgsql_close() -- 10:41:30.896 INFO [16304]: COREGRADE is starting... -- 10:41:30.897 INFO [16304]: Version from config: 1.0 -- 10:41:30.897 DEBUG [16304]: Connecting to database... -- 10:41:30.897 DEBUG [16304]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:41:30.897 SQL [16304]: pgsql_db_connect() -- 10:41:30.901 DEBUG [16304]: Database connection successful -- 10:41:30.901 INFO [16304]: _SERVER found -- 10:41:30.901 INFO [16304]: REMOTE_ADDR = 192.168.1.13 -- 10:41:30.901 INFO [16304]: SERVER_NAME = oameye.works.coregrade.com -- 10:41:30.901 INFO [16304]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:41:30.901 INFO [16304]: QUERY_STRING = /member/viewCardAddAction -- 10:41:30.901 INFO [16304]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:41:30.931 INFO [16304]: COREGRADE is stopping... -- 10:41:30.931 DEBUG [16304]: Closing database connection -- 10:41:30.931 SQL [16304]: pgsql_close() -- 10:41:38.854 INFO [17314]: COREGRADE is starting... -- 10:41:38.854 INFO [17314]: Version from config: 1.0 -- 10:41:38.854 DEBUG [17314]: Connecting to database... -- 10:41:38.854 DEBUG [17314]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:41:38.854 SQL [17314]: pgsql_db_connect() -- 10:41:38.858 DEBUG [17314]: Database connection successful -- 10:41:38.858 INFO [17314]: _SERVER found -- 10:41:38.858 INFO [17314]: REMOTE_ADDR = 192.168.1.13 -- 10:41:38.858 INFO [17314]: SERVER_NAME = oameye.works.coregrade.com -- 10:41:38.858 INFO [17314]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:41:38.858 INFO [17314]: QUERY_STRING = /member/viewCardAddAction -- 10:41:38.858 INFO [17314]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:41:38.889 INFO [17314]: COREGRADE is stopping... -- 10:41:38.889 DEBUG [17314]: Closing database connection -- 10:41:38.889 SQL [17314]: pgsql_close() -- 10:41:39.532 INFO [17314]: COREGRADE is starting... -- 10:41:39.533 INFO [17314]: Version from config: 1.0 -- 10:41:39.533 DEBUG [17314]: Connecting to database... -- 10:41:39.533 DEBUG [17314]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:41:39.533 SQL [17314]: pgsql_db_connect() -- 10:41:39.537 DEBUG [17314]: Database connection successful -- 10:41:39.537 INFO [17314]: _SERVER found -- 10:41:39.537 INFO [17314]: REMOTE_ADDR = 192.168.1.13 -- 10:41:39.537 INFO [17314]: SERVER_NAME = oameye.works.coregrade.com -- 10:41:39.537 INFO [17314]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:41:39.537 INFO [17314]: QUERY_STRING = /member/viewCardAddAction -- 10:41:39.537 INFO [17314]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:41:39.567 INFO [17314]: COREGRADE is stopping... -- 10:41:39.567 DEBUG [17314]: Closing database connection -- 10:41:39.567 SQL [17314]: pgsql_close() -- 10:41:41.237 INFO [17314]: COREGRADE is starting... -- 10:41:41.237 INFO [17314]: Version from config: 1.0 -- 10:41:41.237 DEBUG [17314]: Connecting to database... -- 10:41:41.237 DEBUG [17314]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:41:41.237 SQL [17314]: pgsql_db_connect() -- 10:41:41.241 DEBUG [17314]: Database connection successful -- 10:41:41.241 INFO [17314]: _SERVER found -- 10:41:41.241 INFO [17314]: REMOTE_ADDR = 192.168.1.13 -- 10:41:41.241 INFO [17314]: SERVER_NAME = oameye.works.coregrade.com -- 10:41:41.241 INFO [17314]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:41:41.241 INFO [17314]: QUERY_STRING = /member/viewCardAddAction -- 10:41:41.241 INFO [17314]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:41:41.271 INFO [17314]: COREGRADE is stopping... -- 10:41:41.271 DEBUG [17314]: Closing database connection -- 10:41:41.271 SQL [17314]: pgsql_close() -- 10:43:26.908 INFO [17315]: COREGRADE is starting... -- 10:43:26.908 INFO [17315]: Version from config: 1.0 -- 10:43:26.908 DEBUG [17315]: Connecting to database... -- 10:43:26.908 DEBUG [17315]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:43:26.908 SQL [17315]: pgsql_db_connect() -- 10:43:26.912 DEBUG [17315]: Database connection successful -- 10:43:26.912 INFO [17315]: _SERVER found -- 10:43:26.912 INFO [17315]: REMOTE_ADDR = 192.168.1.13 -- 10:43:26.912 INFO [17315]: SERVER_NAME = oameye.works.coregrade.com -- 10:43:26.912 INFO [17315]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:43:26.912 INFO [17315]: QUERY_STRING = /member/viewCardAddAction -- 10:43:26.912 INFO [17315]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:43:26.944 INFO [17315]: COREGRADE is stopping... -- 10:43:26.944 DEBUG [17315]: Closing database connection -- 10:43:26.944 SQL [17315]: pgsql_close() -- 10:43:27.306 INFO [17315]: COREGRADE is starting... -- 10:43:27.306 INFO [17315]: Version from config: 1.0 -- 10:43:27.306 DEBUG [17315]: Connecting to database... -- 10:43:27.306 DEBUG [17315]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:43:27.307 SQL [17315]: pgsql_db_connect() -- 10:43:27.311 DEBUG [17315]: Database connection successful -- 10:43:27.311 INFO [17315]: _SERVER found -- 10:43:27.311 INFO [17315]: REMOTE_ADDR = 192.168.1.13 -- 10:43:27.311 INFO [17315]: SERVER_NAME = oameye.works.coregrade.com -- 10:43:27.311 INFO [17315]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:43:27.311 INFO [17315]: QUERY_STRING = /member/viewCardAddAction -- 10:43:27.311 INFO [17315]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:43:27.340 INFO [17315]: COREGRADE is stopping... -- 10:43:27.340 DEBUG [17315]: Closing database connection -- 10:43:27.340 SQL [17315]: pgsql_close() -- 10:43:30.328 INFO [17315]: COREGRADE is starting... -- 10:43:30.329 INFO [17315]: Version from config: 1.0 -- 10:43:30.329 DEBUG [17315]: Connecting to database... -- 10:43:30.329 DEBUG [17315]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:43:30.329 SQL [17315]: pgsql_db_connect() -- 10:43:30.333 DEBUG [17315]: Database connection successful -- 10:43:30.333 INFO [17315]: _SERVER found -- 10:43:30.333 INFO [17315]: REMOTE_ADDR = 192.168.1.13 -- 10:43:30.333 INFO [17315]: SERVER_NAME = oameye.works.coregrade.com -- 10:43:30.333 INFO [17315]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:43:30.333 INFO [17315]: QUERY_STRING = /member/viewCardAddAction -- 10:43:30.333 INFO [17315]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:43:30.363 INFO [17315]: COREGRADE is stopping... -- 10:43:30.363 DEBUG [17315]: Closing database connection -- 10:43:30.363 SQL [17315]: pgsql_close() -- 10:43:30.979 INFO [17315]: COREGRADE is starting... -- 10:43:30.979 INFO [17315]: Version from config: 1.0 -- 10:43:30.979 DEBUG [17315]: Connecting to database... -- 10:43:30.979 DEBUG [17315]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:43:30.979 SQL [17315]: pgsql_db_connect() -- 10:43:30.983 DEBUG [17315]: Database connection successful -- 10:43:30.983 INFO [17315]: _SERVER found -- 10:43:30.983 INFO [17315]: REMOTE_ADDR = 192.168.1.13 -- 10:43:30.983 INFO [17315]: SERVER_NAME = oameye.works.coregrade.com -- 10:43:30.983 INFO [17315]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:43:30.983 INFO [17315]: QUERY_STRING = /member/viewCardAddAction -- 10:43:30.983 INFO [17315]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:43:31.013 INFO [17315]: COREGRADE is stopping... -- 10:43:31.013 DEBUG [17315]: Closing database connection -- 10:43:31.013 SQL [17315]: pgsql_close() -- 10:43:46.516 INFO [17316]: COREGRADE is starting... -- 10:43:46.516 INFO [17316]: Version from config: 1.0 -- 10:43:46.516 DEBUG [17316]: Connecting to database... -- 10:43:46.516 DEBUG [17316]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:43:46.516 SQL [17316]: pgsql_db_connect() -- 10:43:46.520 DEBUG [17316]: Database connection successful -- 10:43:46.520 INFO [17316]: _SERVER found -- 10:43:46.520 INFO [17316]: REMOTE_ADDR = 192.168.1.13 -- 10:43:46.520 INFO [17316]: SERVER_NAME = oameye.works.coregrade.com -- 10:43:46.520 INFO [17316]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:43:46.520 INFO [17316]: QUERY_STRING = /member/viewCardAddAction -- 10:43:46.520 INFO [17316]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:43:46.551 INFO [17316]: COREGRADE is stopping... -- 10:43:46.551 DEBUG [17316]: Closing database connection -- 10:43:46.551 SQL [17316]: pgsql_close() -- 10:43:47.678 INFO [17316]: COREGRADE is starting... -- 10:43:47.678 INFO [17316]: Version from config: 1.0 -- 10:43:47.678 DEBUG [17316]: Connecting to database... -- 10:43:47.678 DEBUG [17316]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:43:47.678 SQL [17316]: pgsql_db_connect() -- 10:43:47.682 DEBUG [17316]: Database connection successful -- 10:43:47.682 INFO [17316]: _SERVER found -- 10:43:47.682 INFO [17316]: REMOTE_ADDR = 192.168.1.13 -- 10:43:47.682 INFO [17316]: SERVER_NAME = oameye.works.coregrade.com -- 10:43:47.682 INFO [17316]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:43:47.682 INFO [17316]: QUERY_STRING = /member/viewCardAddAction -- 10:43:47.682 INFO [17316]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:43:47.712 INFO [17316]: COREGRADE is stopping... -- 10:43:47.712 DEBUG [17316]: Closing database connection -- 10:43:47.712 SQL [17316]: pgsql_close() -- 10:43:48.720 INFO [17316]: COREGRADE is starting... -- 10:43:48.721 INFO [17316]: Version from config: 1.0 -- 10:43:48.721 DEBUG [17316]: Connecting to database... -- 10:43:48.721 DEBUG [17316]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:43:48.721 SQL [17316]: pgsql_db_connect() -- 10:43:48.725 DEBUG [17316]: Database connection successful -- 10:43:48.725 INFO [17316]: _SERVER found -- 10:43:48.725 INFO [17316]: REMOTE_ADDR = 192.168.1.13 -- 10:43:48.725 INFO [17316]: SERVER_NAME = oameye.works.coregrade.com -- 10:43:48.725 INFO [17316]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:43:48.725 INFO [17316]: QUERY_STRING = /member/viewCardAddAction -- 10:43:48.725 INFO [17316]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:43:48.755 INFO [17316]: COREGRADE is stopping... -- 10:43:48.755 DEBUG [17316]: Closing database connection -- 10:43:48.755 SQL [17316]: pgsql_close() -- 10:43:50.436 INFO [17316]: COREGRADE is starting... -- 10:43:50.436 INFO [17316]: Version from config: 1.0 -- 10:43:50.436 DEBUG [17316]: Connecting to database... -- 10:43:50.436 DEBUG [17316]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:43:50.436 SQL [17316]: pgsql_db_connect() -- 10:43:50.440 DEBUG [17316]: Database connection successful -- 10:43:50.441 INFO [17316]: _SERVER found -- 10:43:50.441 INFO [17316]: REMOTE_ADDR = 192.168.1.13 -- 10:43:50.441 INFO [17316]: SERVER_NAME = oameye.works.coregrade.com -- 10:43:50.441 INFO [17316]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:43:50.441 INFO [17316]: QUERY_STRING = /member/viewCardAddAction -- 10:43:50.441 INFO [17316]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:43:50.470 INFO [17316]: COREGRADE is stopping... -- 10:43:50.471 DEBUG [17316]: Closing database connection -- 10:43:50.471 SQL [17316]: pgsql_close() -- 10:46:40.090 INFO [17310]: COREGRADE is starting... -- 10:46:40.090 INFO [17310]: Version from config: 1.0 -- 10:46:40.090 DEBUG [17310]: Connecting to database... -- 10:46:40.090 DEBUG [17310]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:46:40.090 SQL [17310]: pgsql_db_connect() -- 10:46:40.094 DEBUG [17310]: Database connection successful -- 10:46:40.094 INFO [17310]: _SERVER found -- 10:46:40.094 INFO [17310]: REMOTE_ADDR = 192.168.1.13 -- 10:46:40.094 INFO [17310]: SERVER_NAME = oameye.works.coregrade.com -- 10:46:40.094 INFO [17310]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:46:40.094 INFO [17310]: QUERY_STRING = /member/viewCardAddAction -- 10:46:40.094 INFO [17310]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:46:40.125 INFO [17310]: COREGRADE is stopping... -- 10:46:40.125 DEBUG [17310]: Closing database connection -- 10:46:40.125 SQL [17310]: pgsql_close() -- 10:50:10.699 INFO [17313]: COREGRADE is starting... -- 10:50:10.699 INFO [17313]: Version from config: 1.0 -- 10:50:10.699 DEBUG [17313]: Connecting to database... -- 10:50:10.699 DEBUG [17313]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:10.699 SQL [17313]: pgsql_db_connect() -- 10:50:10.703 DEBUG [17313]: Database connection successful -- 10:50:10.703 INFO [17313]: _SERVER found -- 10:50:10.703 INFO [17313]: REMOTE_ADDR = 192.168.1.13 -- 10:50:10.703 INFO [17313]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:10.703 INFO [17313]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:50:10.703 INFO [17313]: QUERY_STRING = /member/viewCardAddAction -- 10:50:10.703 INFO [17313]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:50:10.735 INFO [17313]: COREGRADE is stopping... -- 10:50:10.735 DEBUG [17313]: Closing database connection -- 10:50:10.735 SQL [17313]: pgsql_close() -- 10:50:14.558 INFO [17313]: COREGRADE is starting... -- 10:50:14.558 INFO [17313]: Version from config: 1.0 -- 10:50:14.558 DEBUG [17313]: Connecting to database... -- 10:50:14.558 DEBUG [17313]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:14.558 SQL [17313]: pgsql_db_connect() -- 10:50:14.562 DEBUG [17313]: Database connection successful -- 10:50:14.562 INFO [17313]: _SERVER found -- 10:50:14.562 INFO [17313]: REMOTE_ADDR = 192.168.1.13 -- 10:50:14.562 INFO [17313]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:14.562 INFO [17313]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:50:14.562 INFO [17313]: QUERY_STRING = /member/viewCardAddAction -- 10:50:14.562 INFO [17313]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:50:14.592 INFO [17313]: COREGRADE is stopping... -- 10:50:14.592 DEBUG [17313]: Closing database connection -- 10:50:14.592 SQL [17313]: pgsql_close() -- 10:50:15.417 INFO [17313]: COREGRADE is starting... -- 10:50:15.417 INFO [17313]: Version from config: 1.0 -- 10:50:15.417 DEBUG [17313]: Connecting to database... -- 10:50:15.417 DEBUG [17313]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:15.417 SQL [17313]: pgsql_db_connect() -- 10:50:15.421 DEBUG [17313]: Database connection successful -- 10:50:15.422 INFO [17313]: _SERVER found -- 10:50:15.422 INFO [17313]: REMOTE_ADDR = 192.168.1.13 -- 10:50:15.422 INFO [17313]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:15.422 INFO [17313]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:50:15.422 INFO [17313]: QUERY_STRING = /member/viewCardAddAction -- 10:50:15.422 INFO [17313]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:50:15.451 INFO [17313]: COREGRADE is stopping... -- 10:50:15.451 DEBUG [17313]: Closing database connection -- 10:50:15.451 SQL [17313]: pgsql_close() -- 10:50:16.444 INFO [17313]: COREGRADE is starting... -- 10:50:16.445 INFO [17313]: Version from config: 1.0 -- 10:50:16.445 DEBUG [17313]: Connecting to database... -- 10:50:16.445 DEBUG [17313]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:16.445 SQL [17313]: pgsql_db_connect() -- 10:50:16.449 DEBUG [17313]: Database connection successful -- 10:50:16.449 INFO [17313]: _SERVER found -- 10:50:16.449 INFO [17313]: REMOTE_ADDR = 192.168.1.13 -- 10:50:16.449 INFO [17313]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:16.449 INFO [17313]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:50:16.449 INFO [17313]: QUERY_STRING = /member/viewCardAddAction -- 10:50:16.449 INFO [17313]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:50:16.479 INFO [17313]: COREGRADE is stopping... -- 10:50:16.479 DEBUG [17313]: Closing database connection -- 10:50:16.479 SQL [17313]: pgsql_close() -- 10:50:17.706 INFO [17313]: COREGRADE is starting... -- 10:50:17.706 INFO [17313]: Version from config: 1.0 -- 10:50:17.706 DEBUG [17313]: Connecting to database... -- 10:50:17.706 DEBUG [17313]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:17.706 SQL [17313]: pgsql_db_connect() -- 10:50:17.710 DEBUG [17313]: Database connection successful -- 10:50:17.710 INFO [17313]: _SERVER found -- 10:50:17.710 INFO [17313]: REMOTE_ADDR = 192.168.1.13 -- 10:50:17.710 INFO [17313]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:17.710 INFO [17313]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=80i36b87gb0ps6mkctke7e3gisactm60 -- 10:50:17.710 INFO [17313]: QUERY_STRING = /member/configure -- 10:50:17.710 INFO [17313]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:50:17.745 INFO [17313]: COREGRADE is stopping... -- 10:50:17.745 DEBUG [17313]: Closing database connection -- 10:50:17.745 SQL [17313]: pgsql_close() -- 10:50:17.871 INFO [17313]: COREGRADE is starting... -- 10:50:17.872 INFO [17313]: Version from config: 1.0 -- 10:50:17.872 DEBUG [17313]: Connecting to database... -- 10:50:17.872 DEBUG [17313]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:17.872 SQL [17313]: pgsql_db_connect() -- 10:50:17.876 DEBUG [17313]: Database connection successful -- 10:50:17.876 INFO [17313]: _SERVER found -- 10:50:17.876 INFO [17313]: REMOTE_ADDR = 192.168.1.13 -- 10:50:17.876 INFO [17313]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:17.876 INFO [17313]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3m28m3mvpce9ci6ab2nbnhkgpcf25k16 -- 10:50:17.876 INFO [17313]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:50:17.876 INFO [17313]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:50:17.887 INFO [17313]: COREGRADE is stopping... -- 10:50:17.887 DEBUG [17313]: Closing database connection -- 10:50:17.887 SQL [17313]: pgsql_close() -- 10:50:17.972 INFO [17313]: COREGRADE is starting... -- 10:50:17.972 INFO [17313]: Version from config: 1.0 -- 10:50:17.972 DEBUG [17313]: Connecting to database... -- 10:50:17.972 DEBUG [17313]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:17.972 SQL [17313]: pgsql_db_connect() -- 10:50:17.976 DEBUG [17313]: Database connection successful -- 10:50:17.976 INFO [17313]: _SERVER found -- 10:50:17.976 INFO [17313]: REMOTE_ADDR = 192.168.1.13 -- 10:50:17.976 INFO [17313]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:17.976 INFO [17313]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3m28m3mvpce9ci6ab2nbnhkgpcf25k16 -- 10:50:17.976 INFO [17313]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:50:17.976 INFO [17313]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:50:17.987 INFO [17313]: COREGRADE is stopping... -- 10:50:17.987 DEBUG [17313]: Closing database connection -- 10:50:17.987 SQL [17313]: pgsql_close() -- 10:50:23.236 INFO [16303]: COREGRADE is starting... -- 10:50:23.236 INFO [16303]: Version from config: 1.0 -- 10:50:23.236 DEBUG [16303]: Connecting to database... -- 10:50:23.236 DEBUG [16303]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:23.236 SQL [16303]: pgsql_db_connect() -- 10:50:23.240 DEBUG [16303]: Database connection successful -- 10:50:23.240 INFO [16303]: _SERVER found -- 10:50:23.240 INFO [16303]: REMOTE_ADDR = 192.168.1.13 -- 10:50:23.240 INFO [16303]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:23.240 INFO [16303]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3m28m3mvpce9ci6ab2nbnhkgpcf25k16 -- 10:50:23.240 INFO [16303]: QUERY_STRING = /member/configure -- 10:50:23.240 INFO [16303]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:50:23.275 INFO [16303]: COREGRADE is stopping... -- 10:50:23.275 DEBUG [16303]: Closing database connection -- 10:50:23.275 SQL [16303]: pgsql_close() -- 10:50:23.463 INFO [16303]: COREGRADE is starting... -- 10:50:23.463 INFO [16303]: Version from config: 1.0 -- 10:50:23.463 DEBUG [16303]: Connecting to database... -- 10:50:23.463 DEBUG [16303]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:23.463 SQL [16303]: pgsql_db_connect() -- 10:50:23.467 DEBUG [16303]: Database connection successful -- 10:50:23.467 INFO [16303]: _SERVER found -- 10:50:23.467 INFO [16303]: REMOTE_ADDR = 192.168.1.13 -- 10:50:23.467 INFO [16303]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:23.467 INFO [16303]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3m28m3mvpce9ci6ab2nbnhkgpcf25k16 -- 10:50:23.467 INFO [16303]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:50:23.467 INFO [16303]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:50:23.478 INFO [16303]: COREGRADE is stopping... -- 10:50:23.478 DEBUG [16303]: Closing database connection -- 10:50:23.478 SQL [16303]: pgsql_close() -- 10:50:23.544 INFO [16303]: COREGRADE is starting... -- 10:50:23.544 INFO [16303]: Version from config: 1.0 -- 10:50:23.544 DEBUG [16303]: Connecting to database... -- 10:50:23.544 DEBUG [16303]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:23.544 SQL [16303]: pgsql_db_connect() -- 10:50:23.548 DEBUG [16303]: Database connection successful -- 10:50:23.548 INFO [16303]: _SERVER found -- 10:50:23.548 INFO [16303]: REMOTE_ADDR = 192.168.1.13 -- 10:50:23.548 INFO [16303]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:23.548 INFO [16303]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3m28m3mvpce9ci6ab2nbnhkgpcf25k16 -- 10:50:23.548 INFO [16303]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:50:23.548 INFO [16303]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:50:23.559 INFO [16303]: COREGRADE is stopping... -- 10:50:23.559 DEBUG [16303]: Closing database connection -- 10:50:23.559 SQL [16303]: pgsql_close() -- 10:50:33.964 INFO [16301]: COREGRADE is starting... -- 10:50:33.964 INFO [16301]: Version from config: 1.0 -- 10:50:33.964 DEBUG [16301]: Connecting to database... -- 10:50:33.964 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:33.964 SQL [16301]: pgsql_db_connect() -- 10:50:33.968 DEBUG [16301]: Database connection successful -- 10:50:33.968 INFO [16301]: _SERVER found -- 10:50:33.968 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 10:50:33.968 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:33.968 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3m28m3mvpce9ci6ab2nbnhkgpcf25k16 -- 10:50:33.968 INFO [16301]: QUERY_STRING = /member -- 10:50:33.968 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:50:34.003 INFO [16301]: COREGRADE is stopping... -- 10:50:34.003 DEBUG [16301]: Closing database connection -- 10:50:34.003 SQL [16301]: pgsql_close() -- 10:50:34.182 INFO [16301]: COREGRADE is starting... -- 10:50:34.183 INFO [16301]: Version from config: 1.0 -- 10:50:34.183 DEBUG [16301]: Connecting to database... -- 10:50:34.183 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:34.183 SQL [16301]: pgsql_db_connect() -- 10:50:34.187 DEBUG [16301]: Database connection successful -- 10:50:34.187 INFO [16301]: _SERVER found -- 10:50:34.187 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 10:50:34.187 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:34.187 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3m28m3mvpce9ci6ab2nbnhkgpcf25k16 -- 10:50:34.187 INFO [16301]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:50:34.187 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:50:34.198 INFO [16301]: COREGRADE is stopping... -- 10:50:34.198 DEBUG [16301]: Closing database connection -- 10:50:34.198 SQL [16301]: pgsql_close() -- 10:50:34.202 INFO [16305]: COREGRADE is starting... -- 10:50:34.203 INFO [16305]: Version from config: 1.0 -- 10:50:34.203 DEBUG [16305]: Connecting to database... -- 10:50:34.203 DEBUG [16305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:34.203 SQL [16305]: pgsql_db_connect() -- 10:50:34.206 DEBUG [16305]: Database connection successful -- 10:50:34.206 INFO [16305]: _SERVER found -- 10:50:34.206 INFO [16305]: REMOTE_ADDR = 192.168.1.13 -- 10:50:34.206 INFO [16305]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:34.206 INFO [16305]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3m28m3mvpce9ci6ab2nbnhkgpcf25k16 -- 10:50:34.206 INFO [16305]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:50:34.206 INFO [16305]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:50:34.218 INFO [16305]: COREGRADE is stopping... -- 10:50:34.218 DEBUG [16305]: Closing database connection -- 10:50:34.218 SQL [16305]: pgsql_close() -- 10:50:37.579 INFO [16302]: COREGRADE is starting... -- 10:50:37.579 INFO [16302]: Version from config: 1.0 -- 10:50:37.579 DEBUG [16302]: Connecting to database... -- 10:50:37.579 DEBUG [16302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:37.579 SQL [16302]: pgsql_db_connect() -- 10:50:37.614 INFO [16302]: COREGRADE is starting... -- 10:50:37.614 INFO [16302]: Version from config: 1.0 -- 10:50:37.614 DEBUG [16302]: Connecting to database... -- 10:50:37.614 DEBUG [16302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:37.614 SQL [16302]: pgsql_db_connect() -- 10:50:37.618 DEBUG [16302]: Database connection successful -- 10:50:37.618 INFO [16302]: _SERVER found -- 10:50:37.618 INFO [16302]: REMOTE_ADDR = 192.168.1.13 -- 10:50:37.618 INFO [16302]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:37.618 INFO [16302]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=7dqamnvg8hclvn5vereaitnsu902fsom -- 10:50:37.618 INFO [16302]: QUERY_STRING = -- 10:50:37.618 INFO [16302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:50:37.618 INFO [16302]: SystemStatus()09-09-********~************ -- 10:50:37.618 INFO [16302]: long coregrade_api_main(CVars in, CVars &out) -- 10:50:37.618 INFO [16302]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 10:50:37.618 INFO [16302]: account calls -- 10:50:37.618 INFO [16302]: account_calls() -- 10:50:37.618 INFO [16302]: LoginCoreGradeAccount() -- 10:50:37.618 FLOG_MAX [16302]: REQ_STRING(username) -- 10:50:37.618 FLOG_MAX [16302]: REQ_STRING(password) -- 10:50:37.618 FLOG_MAX [16302]: REQ_STRING(sessionid) -- 10:50:37.618 FLOG_MAX [16302]: long load_db_record( CVars &rec, const char * query, ... ) -- 10:50:37.618 SQL [16302]: pgsql_query() -- 10:50:37.618 SQL [16302]: About to run query: -- 10:50:37.618 SQL [16302]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 10:50:37.621 SQL [16302]: Found rows: 1 -- 10:50:37.621 FLOG_MAX [16302]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=15 -- 10:50:37.622 INFO [16302]: long SessionCheck(long uid, const char *sessionid, int create ) -- 10:50:37.622 SQL [16302]: pgsql_exec() -- 10:50:37.622 SQL [16302]: About to run query: -- 10:50:37.622 SQL [16302]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 10:50:37.623 SQL [16302]: PQcmdTuples: 1 -- 10:50:37.623 SQL [16302]: Affected rows: 1 -- 10:50:37.623 SQL [16302]: pgsql_exec() -- 10:50:37.623 SQL [16302]: About to run query: -- 10:50:37.623 SQL [16302]: DELETE FROM members_session WHERE member_id=7 -- 10:50:37.623 SQL [16302]: PQcmdTuples: 0 -- 10:50:37.623 SQL [16302]: Affected rows: 0 -- 10:50:37.623 SQL [16302]: pgsql_query() -- 10:50:37.623 SQL [16302]: About to run query: -- 10:50:37.623 SQL [16302]: SELECT * FROM members_session WHERE member_id=7 AND session<>'48705E3B1B036CEDA166AA2D34504ECE' -- 10:50:37.624 SQL [16302]: Found rows: 0 -- 10:50:37.624 SQL [16302]: Found rows: 0 -- 10:50:37.624 FLOG_MAX [16302]: long load_db_record( CVars &rec, const char * query, ... ) -- 10:50:37.624 SQL [16302]: pgsql_query() -- 10:50:37.624 SQL [16302]: About to run query: -- 10:50:37.624 SQL [16302]: SELECT * FROM members_session WHERE member_id=7 AND session='48705E3B1B036CEDA166AA2D34504ECE' -- 10:50:37.624 SQL [16302]: Found rows: 0 -- 10:50:37.624 SQL [16302]: Found rows: 0 -- 10:50:37.624 FLOG_MAX [16302]: insert_db_record() -- 10:50:37.624 SQL [16302]: pgsql_exec() -- 10:50:37.624 SQL [16302]: About to run query: -- 10:50:37.624 SQL [16302]: INSERT INTO members_session (member_id,session) VALUES ('7','48705E3B1B036CEDA166AA2D34504ECE') -- 10:50:37.626 SQL [16302]: PQcmdTuples: 1 -- 10:50:37.626 SQL [16302]: Affected rows: 1 -- 10:50:37.626 FLOG_MAX [16302]: SELECT currval('members_session_id_seq') -- 10:50:37.626 SQL [16302]: pgsql_query() -- 10:50:37.626 SQL [16302]: About to run query: -- 10:50:37.626 SQL [16302]: SELECT currval('members_session_id_seq') -- 10:50:37.626 SQL [16302]: Found rows: 1 -- 10:50:37.626 INFO [16302]: CreateDefaultPage() -- 10:50:37.626 FLOG_MAX [16302]: long load_db_record( CVars &rec, const char * query, ... ) -- 10:50:37.626 SQL [16302]: pgsql_query() -- 10:50:37.626 SQL [16302]: About to run query: -- 10:50:37.626 SQL [16302]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 10:50:37.626 SQL [16302]: Found rows: 1 -- 10:50:37.626 FLOG_MAX [16302]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 10:50:37.626 SQL [16302]: pgsql_query() -- 10:50:37.626 SQL [16302]: About to run query: -- 10:50:37.626 SQL [16302]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 10:50:37.627 SQL [16302]: Found rows: 1 -- 10:50:37.627 INFO [16302]: /CreateDefaultPage() -- 10:50:37.627 INFO [16302]: /LoginCoreGradeAccount() -- 10:50:37.627 INFO [16302]: RET: added=2020-02-05 09:42:12.816064 -- 10:50:37.627 INFO [16302]: RET: email=tokslaw@chiefsoft.com -- 10:50:37.627 INFO [16302]: RET: firstname=Tokunbo -- 10:50:37.627 INFO [16302]: RET: id=7 -- 10:50:37.627 INFO [16302]: RET: last_login= -- 10:50:37.627 INFO [16302]: RET: lastname=Lawal -- 10:50:37.627 INFO [16302]: RET: loc=192.168.1.13 -- 10:50:37.627 INFO [16302]: RET: member_id=7 -- 10:50:37.627 INFO [16302]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 10:50:37.627 INFO [16302]: RET: phone= -- 10:50:37.627 INFO [16302]: RET: pid= -- 10:50:37.627 INFO [16302]: RET: result=YES I GET TO BACK END -- 10:50:37.627 INFO [16302]: RET: sessionid=48705E3B1B036CEDA166AA2D34504ECE -- 10:50:37.627 INFO [16302]: RET: status=1 -- 10:50:37.627 INFO [16302]: RET: stauts=OK -- 10:50:37.627 INFO [16302]: RET: username=tokslaw@chiefsoft.com -- 10:50:37.627 INFO [16302]: RET: verified= -- 10:50:37.628 INFO [16302]: COREGRADE is stopping... -- 10:50:37.629 DEBUG [16302]: Closing database connection -- 10:50:37.629 SQL [16302]: pgsql_close() -- 10:50:37.583 DEBUG [16302]: Database connection successful -- 10:50:37.583 INFO [16302]: _SERVER found -- 10:50:37.583 INFO [16302]: REMOTE_ADDR = 192.168.1.13 -- 10:50:37.583 INFO [16302]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:37.583 INFO [16302]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=7dqamnvg8hclvn5vereaitnsu902fsom -- 10:50:37.583 INFO [16302]: QUERY_STRING = /auth -- 10:50:37.583 INFO [16302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:50:37.629 INFO [16302]: COREGRADE is stopping... -- 10:50:37.629 DEBUG [16302]: Closing database connection -- 10:50:37.629 SQL [16302]: pgsql_close() -- 10:50:37.655 INFO [16302]: COREGRADE is starting... -- 10:50:37.655 INFO [16302]: Version from config: 1.0 -- 10:50:37.655 DEBUG [16302]: Connecting to database... -- 10:50:37.655 DEBUG [16302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:37.655 SQL [16302]: pgsql_db_connect() -- 10:50:37.659 DEBUG [16302]: Database connection successful -- 10:50:37.659 INFO [16302]: _SERVER found -- 10:50:37.659 INFO [16302]: REMOTE_ADDR = 192.168.1.13 -- 10:50:37.659 INFO [16302]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:37.659 INFO [16302]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=lttoeiq97lc6sacaet7127bo3gt8otmg -- 10:50:37.659 INFO [16302]: QUERY_STRING = /member/index -- 10:50:37.659 INFO [16302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:50:37.694 INFO [16302]: COREGRADE is stopping... -- 10:50:37.694 DEBUG [16302]: Closing database connection -- 10:50:37.694 SQL [16302]: pgsql_close() -- 10:50:38.019 INFO [16302]: COREGRADE is starting... -- 10:50:38.019 INFO [16302]: Version from config: 1.0 -- 10:50:38.019 DEBUG [16302]: Connecting to database... -- 10:50:38.019 DEBUG [16302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:38.019 SQL [16302]: pgsql_db_connect() -- 10:50:38.023 DEBUG [16302]: Database connection successful -- 10:50:38.023 INFO [16302]: _SERVER found -- 10:50:38.023 INFO [16302]: REMOTE_ADDR = 192.168.1.13 -- 10:50:38.023 INFO [16302]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:38.023 INFO [16302]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=lttoeiq97lc6sacaet7127bo3gt8otmg -- 10:50:38.023 INFO [16302]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:50:38.023 INFO [16302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:50:38.034 INFO [16302]: COREGRADE is stopping... -- 10:50:38.034 DEBUG [16302]: Closing database connection -- 10:50:38.034 SQL [16302]: pgsql_close() -- 10:50:38.128 INFO [16302]: COREGRADE is starting... -- 10:50:38.128 INFO [16302]: Version from config: 1.0 -- 10:50:38.128 DEBUG [16302]: Connecting to database... -- 10:50:38.128 DEBUG [16302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:38.128 SQL [16302]: pgsql_db_connect() -- 10:50:38.132 DEBUG [16302]: Database connection successful -- 10:50:38.132 INFO [16302]: _SERVER found -- 10:50:38.132 INFO [16302]: REMOTE_ADDR = 192.168.1.13 -- 10:50:38.132 INFO [16302]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:38.132 INFO [16302]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=lttoeiq97lc6sacaet7127bo3gt8otmg -- 10:50:38.132 INFO [16302]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:50:38.132 INFO [16302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:50:38.143 INFO [16302]: COREGRADE is stopping... -- 10:50:38.143 DEBUG [16302]: Closing database connection -- 10:50:38.143 SQL [16302]: pgsql_close() -- 10:50:41.847 INFO [16302]: COREGRADE is starting... -- 10:50:41.848 INFO [16302]: Version from config: 1.0 -- 10:50:41.848 DEBUG [16302]: Connecting to database... -- 10:50:41.848 DEBUG [16302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:41.848 SQL [16302]: pgsql_db_connect() -- 10:50:41.852 DEBUG [16302]: Database connection successful -- 10:50:41.852 INFO [16302]: _SERVER found -- 10:50:41.852 INFO [16302]: REMOTE_ADDR = 192.168.1.13 -- 10:50:41.852 INFO [16302]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:41.852 INFO [16302]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=lttoeiq97lc6sacaet7127bo3gt8otmg -- 10:50:41.852 INFO [16302]: QUERY_STRING = /member -- 10:50:41.852 INFO [16302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:50:41.886 INFO [16302]: COREGRADE is stopping... -- 10:50:41.886 DEBUG [16302]: Closing database connection -- 10:50:41.887 SQL [16302]: pgsql_close() -- 10:50:42.077 INFO [16302]: COREGRADE is starting... -- 10:50:42.077 INFO [16302]: Version from config: 1.0 -- 10:50:42.077 DEBUG [16302]: Connecting to database... -- 10:50:42.077 DEBUG [16302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:42.077 SQL [16302]: pgsql_db_connect() -- 10:50:42.081 DEBUG [16302]: Database connection successful -- 10:50:42.081 INFO [16302]: _SERVER found -- 10:50:42.081 INFO [16302]: REMOTE_ADDR = 192.168.1.13 -- 10:50:42.081 INFO [16302]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:42.081 INFO [16302]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=lttoeiq97lc6sacaet7127bo3gt8otmg -- 10:50:42.081 INFO [16302]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:50:42.081 INFO [16302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:50:42.092 INFO [16302]: COREGRADE is stopping... -- 10:50:42.092 DEBUG [16302]: Closing database connection -- 10:50:42.092 SQL [16302]: pgsql_close() -- 10:50:42.094 INFO [16304]: COREGRADE is starting... -- 10:50:42.094 INFO [16304]: Version from config: 1.0 -- 10:50:42.094 DEBUG [16304]: Connecting to database... -- 10:50:42.094 DEBUG [16304]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:42.094 SQL [16304]: pgsql_db_connect() -- 10:50:42.098 DEBUG [16304]: Database connection successful -- 10:50:42.098 INFO [16304]: _SERVER found -- 10:50:42.098 INFO [16304]: REMOTE_ADDR = 192.168.1.13 -- 10:50:42.098 INFO [16304]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:42.098 INFO [16304]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=lttoeiq97lc6sacaet7127bo3gt8otmg -- 10:50:42.098 INFO [16304]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:50:42.098 INFO [16304]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:50:42.109 INFO [16304]: COREGRADE is stopping... -- 10:50:42.109 DEBUG [16304]: Closing database connection -- 10:50:42.109 SQL [16304]: pgsql_close() -- 10:50:44.867 INFO [16304]: COREGRADE is starting... -- 10:50:44.868 INFO [16304]: Version from config: 1.0 -- 10:50:44.868 DEBUG [16304]: Connecting to database... -- 10:50:44.868 DEBUG [16304]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:44.868 SQL [16304]: pgsql_db_connect() -- 10:50:44.872 DEBUG [16304]: Database connection successful -- 10:50:44.872 INFO [16304]: _SERVER found -- 10:50:44.872 INFO [16304]: REMOTE_ADDR = 192.168.1.13 -- 10:50:44.872 INFO [16304]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:44.872 INFO [16304]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3m28m3mvpce9ci6ab2nbnhkgpcf25k16 -- 10:50:44.872 INFO [16304]: QUERY_STRING = /member -- 10:50:44.872 INFO [16304]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:50:44.907 INFO [16304]: COREGRADE is stopping... -- 10:50:44.907 DEBUG [16304]: Closing database connection -- 10:50:44.907 SQL [16304]: pgsql_close() -- 10:50:45.072 INFO [16304]: COREGRADE is starting... -- 10:50:45.073 INFO [16304]: Version from config: 1.0 -- 10:50:45.073 DEBUG [16304]: Connecting to database... -- 10:50:45.073 DEBUG [16304]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:45.073 SQL [16304]: pgsql_db_connect() -- 10:50:45.078 INFO [16302]: COREGRADE is starting... -- 10:50:45.078 INFO [16302]: Version from config: 1.0 -- 10:50:45.078 DEBUG [16302]: Connecting to database... -- 10:50:45.078 DEBUG [16302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:45.078 SQL [16302]: pgsql_db_connect() -- 10:50:45.077 DEBUG [16304]: Database connection successful -- 10:50:45.077 INFO [16304]: _SERVER found -- 10:50:45.077 INFO [16304]: REMOTE_ADDR = 192.168.1.13 -- 10:50:45.077 INFO [16304]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:45.077 INFO [16304]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3m28m3mvpce9ci6ab2nbnhkgpcf25k16 -- 10:50:45.077 INFO [16304]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:50:45.077 INFO [16304]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:50:45.088 INFO [16304]: COREGRADE is stopping... -- 10:50:45.088 DEBUG [16304]: Closing database connection -- 10:50:45.088 SQL [16304]: pgsql_close() -- 10:50:45.081 DEBUG [16302]: Database connection successful -- 10:50:45.081 INFO [16302]: _SERVER found -- 10:50:45.081 INFO [16302]: REMOTE_ADDR = 192.168.1.13 -- 10:50:45.081 INFO [16302]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:45.081 INFO [16302]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3m28m3mvpce9ci6ab2nbnhkgpcf25k16 -- 10:50:45.081 INFO [16302]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:50:45.081 INFO [16302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:50:45.092 INFO [16302]: COREGRADE is stopping... -- 10:50:45.092 DEBUG [16302]: Closing database connection -- 10:50:45.092 SQL [16302]: pgsql_close() -- 10:50:51.400 INFO [17314]: COREGRADE is starting... -- 10:50:51.401 INFO [17314]: Version from config: 1.0 -- 10:50:51.401 DEBUG [17314]: Connecting to database... -- 10:50:51.401 DEBUG [17314]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:51.401 SQL [17314]: pgsql_db_connect() -- 10:50:51.406 INFO [17315]: COREGRADE is starting... -- 10:50:51.406 INFO [17315]: Version from config: 1.0 -- 10:50:51.406 DEBUG [17315]: Connecting to database... -- 10:50:51.406 DEBUG [17315]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:51.406 SQL [17315]: pgsql_db_connect() -- 10:50:51.405 DEBUG [17314]: Database connection successful -- 10:50:51.405 INFO [17314]: _SERVER found -- 10:50:51.405 INFO [17314]: REMOTE_ADDR = 192.168.1.13 -- 10:50:51.405 INFO [17314]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:51.405 INFO [17314]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3m28m3mvpce9ci6ab2nbnhkgpcf25k16 -- 10:50:51.405 INFO [17314]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:50:51.405 INFO [17314]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:50:51.416 INFO [17314]: COREGRADE is stopping... -- 10:50:51.416 DEBUG [17314]: Closing database connection -- 10:50:51.416 SQL [17314]: pgsql_close() -- 10:50:51.410 DEBUG [17315]: Database connection successful -- 10:50:51.410 INFO [17315]: _SERVER found -- 10:50:51.410 INFO [17315]: REMOTE_ADDR = 192.168.1.13 -- 10:50:51.410 INFO [17315]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:51.410 INFO [17315]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3m28m3mvpce9ci6ab2nbnhkgpcf25k16 -- 10:50:51.410 INFO [17315]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 10:50:51.410 INFO [17315]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:50:51.421 INFO [17315]: COREGRADE is stopping... -- 10:50:51.421 DEBUG [17315]: Closing database connection -- 10:50:51.421 SQL [17315]: pgsql_close() -- 10:50:59.855 INFO [17316]: COREGRADE is starting... -- 10:50:59.855 INFO [17316]: Version from config: 1.0 -- 10:50:59.855 DEBUG [17316]: Connecting to database... -- 10:50:59.855 DEBUG [17316]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:59.855 SQL [17316]: pgsql_db_connect() -- 10:50:59.859 DEBUG [17316]: Database connection successful -- 10:50:59.859 INFO [17316]: _SERVER found -- 10:50:59.859 INFO [17316]: REMOTE_ADDR = 192.168.1.13 -- 10:50:59.859 INFO [17316]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:59.859 INFO [17316]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3m28m3mvpce9ci6ab2nbnhkgpcf25k16 -- 10:50:59.859 INFO [17316]: QUERY_STRING = /member/page -- 10:50:59.859 INFO [17316]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:50:59.895 INFO [17316]: COREGRADE is stopping... -- 10:50:59.895 DEBUG [17316]: Closing database connection -- 10:50:59.895 SQL [17316]: pgsql_close() -- 10:51:00.003 INFO [17316]: COREGRADE is starting... -- 10:51:00.003 INFO [17316]: Version from config: 1.0 -- 10:51:00.003 DEBUG [17316]: Connecting to database... -- 10:51:00.003 DEBUG [17316]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:51:00.003 SQL [17316]: pgsql_db_connect() -- 10:51:00.007 DEBUG [17316]: Database connection successful -- 10:51:00.007 INFO [17316]: _SERVER found -- 10:51:00.007 INFO [17316]: REMOTE_ADDR = 192.168.1.13 -- 10:51:00.007 INFO [17316]: SERVER_NAME = oameye.works.coregrade.com -- 10:51:00.007 INFO [17316]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3m28m3mvpce9ci6ab2nbnhkgpcf25k16 -- 10:51:00.007 INFO [17316]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:51:00.007 INFO [17316]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:51:00.019 INFO [17316]: COREGRADE is stopping... -- 10:51:00.019 DEBUG [17316]: Closing database connection -- 10:51:00.019 SQL [17316]: pgsql_close() -- 10:51:00.212 INFO [17316]: COREGRADE is starting... -- 10:51:00.212 INFO [17316]: Version from config: 1.0 -- 10:51:00.212 DEBUG [17316]: Connecting to database... -- 10:51:00.212 DEBUG [17316]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:51:00.212 SQL [17316]: pgsql_db_connect() -- 10:51:00.219 INFO [17310]: COREGRADE is starting... -- 10:51:00.219 INFO [17310]: Version from config: 1.0 -- 10:51:00.219 DEBUG [17310]: Connecting to database... -- 10:51:00.219 DEBUG [17310]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:51:00.219 SQL [17310]: pgsql_db_connect() -- 10:51:00.216 DEBUG [17316]: Database connection successful -- 10:51:00.216 INFO [17316]: _SERVER found -- 10:51:00.216 INFO [17316]: REMOTE_ADDR = 192.168.1.13 -- 10:51:00.216 INFO [17316]: SERVER_NAME = oameye.works.coregrade.com -- 10:51:00.216 INFO [17316]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3m28m3mvpce9ci6ab2nbnhkgpcf25k16 -- 10:51:00.216 INFO [17316]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:51:00.216 INFO [17316]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:51:00.227 INFO [17316]: COREGRADE is stopping... -- 10:51:00.227 DEBUG [17316]: Closing database connection -- 10:51:00.227 SQL [17316]: pgsql_close() -- 10:51:00.223 DEBUG [17310]: Database connection successful -- 10:51:00.223 INFO [17310]: _SERVER found -- 10:51:00.223 INFO [17310]: REMOTE_ADDR = 192.168.1.13 -- 10:51:00.223 INFO [17310]: SERVER_NAME = oameye.works.coregrade.com -- 10:51:00.223 INFO [17310]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3m28m3mvpce9ci6ab2nbnhkgpcf25k16 -- 10:51:00.223 INFO [17310]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 10:51:00.223 INFO [17310]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:51:00.235 INFO [17310]: COREGRADE is stopping... -- 10:51:00.235 DEBUG [17310]: Closing database connection -- 10:51:00.235 SQL [17310]: pgsql_close() -- 10:51:00.253 INFO [17310]: COREGRADE is starting... -- 10:51:00.253 INFO [17310]: Version from config: 1.0 -- 10:51:00.253 DEBUG [17310]: Connecting to database... -- 10:51:00.253 DEBUG [17310]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:51:00.253 SQL [17310]: pgsql_db_connect() -- 10:51:00.257 DEBUG [17310]: Database connection successful -- 10:51:00.257 INFO [17310]: _SERVER found -- 10:51:00.257 INFO [17310]: REMOTE_ADDR = 192.168.1.13 -- 10:51:00.257 INFO [17310]: SERVER_NAME = oameye.works.coregrade.com -- 10:51:00.257 INFO [17310]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3m28m3mvpce9ci6ab2nbnhkgpcf25k16 -- 10:51:00.257 INFO [17310]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:51:00.257 INFO [17310]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:51:00.268 INFO [17310]: COREGRADE is stopping... -- 10:51:00.268 DEBUG [17310]: Closing database connection -- 10:51:00.268 SQL [17310]: pgsql_close() -- 10:51:14.698 INFO [17313]: COREGRADE is starting... -- 10:51:14.698 INFO [17313]: Version from config: 1.0 -- 10:51:14.698 DEBUG [17313]: Connecting to database... -- 10:51:14.698 DEBUG [17313]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:51:14.698 SQL [17313]: pgsql_db_connect() -- 10:51:14.702 DEBUG [17313]: Database connection successful -- 10:51:14.702 INFO [17313]: _SERVER found -- 10:51:14.702 INFO [17313]: REMOTE_ADDR = 192.168.1.13 -- 10:51:14.702 INFO [17313]: SERVER_NAME = oameye.works.coregrade.com -- 10:51:14.702 INFO [17313]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3m28m3mvpce9ci6ab2nbnhkgpcf25k16 -- 10:51:14.702 INFO [17313]: QUERY_STRING = /member/configure -- 10:51:14.702 INFO [17313]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:51:14.737 INFO [17313]: COREGRADE is stopping... -- 10:51:14.737 DEBUG [17313]: Closing database connection -- 10:51:14.737 SQL [17313]: pgsql_close() -- 10:51:14.887 INFO [17313]: COREGRADE is starting... -- 10:51:14.887 INFO [17313]: Version from config: 1.0 -- 10:51:14.887 DEBUG [17313]: Connecting to database... -- 10:51:14.887 DEBUG [17313]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:51:14.887 SQL [17313]: pgsql_db_connect() -- 10:51:14.891 DEBUG [17313]: Database connection successful -- 10:51:14.891 INFO [17313]: _SERVER found -- 10:51:14.891 INFO [17313]: REMOTE_ADDR = 192.168.1.13 -- 10:51:14.891 INFO [17313]: SERVER_NAME = oameye.works.coregrade.com -- 10:51:14.891 INFO [17313]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3m28m3mvpce9ci6ab2nbnhkgpcf25k16 -- 10:51:14.891 INFO [17313]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:51:14.891 INFO [17313]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:51:14.902 INFO [17313]: COREGRADE is stopping... -- 10:51:14.902 DEBUG [17313]: Closing database connection -- 10:51:14.902 SQL [17313]: pgsql_close() -- 10:51:14.967 INFO [17313]: COREGRADE is starting... -- 10:51:14.967 INFO [17313]: Version from config: 1.0 -- 10:51:14.967 DEBUG [17313]: Connecting to database... -- 10:51:14.967 DEBUG [17313]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:51:14.967 SQL [17313]: pgsql_db_connect() -- 10:51:14.971 DEBUG [17313]: Database connection successful -- 10:51:14.971 INFO [17313]: _SERVER found -- 10:51:14.971 INFO [17313]: REMOTE_ADDR = 192.168.1.13 -- 10:51:14.971 INFO [17313]: SERVER_NAME = oameye.works.coregrade.com -- 10:51:14.971 INFO [17313]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3m28m3mvpce9ci6ab2nbnhkgpcf25k16 -- 10:51:14.971 INFO [17313]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:51:14.971 INFO [17313]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:51:14.982 INFO [17313]: COREGRADE is stopping... -- 10:51:14.982 DEBUG [17313]: Closing database connection -- 10:51:14.982 SQL [17313]: pgsql_close() -- 10:51:20.618 INFO [16303]: COREGRADE is starting... -- 10:51:20.618 INFO [16303]: Version from config: 1.0 -- 10:51:20.618 DEBUG [16303]: Connecting to database... -- 10:51:20.618 DEBUG [16303]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:51:20.618 SQL [16303]: pgsql_db_connect() -- 10:51:20.622 DEBUG [16303]: Database connection successful -- 10:51:20.622 INFO [16303]: _SERVER found -- 10:51:20.622 INFO [16303]: REMOTE_ADDR = 192.168.1.13 -- 10:51:20.622 INFO [16303]: SERVER_NAME = oameye.works.coregrade.com -- 10:51:20.622 INFO [16303]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3m28m3mvpce9ci6ab2nbnhkgpcf25k16 -- 10:51:20.622 INFO [16303]: QUERY_STRING = /member -- 10:51:20.622 INFO [16303]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:51:20.657 INFO [16303]: COREGRADE is stopping... -- 10:51:20.657 DEBUG [16303]: Closing database connection -- 10:51:20.657 SQL [16303]: pgsql_close() -- 10:51:20.769 INFO [16303]: COREGRADE is starting... -- 10:51:20.769 INFO [16303]: Version from config: 1.0 -- 10:51:20.769 DEBUG [16303]: Connecting to database... -- 10:51:20.769 DEBUG [16303]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:51:20.769 SQL [16303]: pgsql_db_connect() -- 10:51:20.782 INFO [16301]: COREGRADE is starting... -- 10:51:20.782 INFO [16301]: Version from config: 1.0 -- 10:51:20.782 DEBUG [16301]: Connecting to database... -- 10:51:20.782 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:51:20.782 SQL [16301]: pgsql_db_connect() -- 10:51:20.773 DEBUG [16303]: Database connection successful -- 10:51:20.773 INFO [16303]: _SERVER found -- 10:51:20.773 INFO [16303]: REMOTE_ADDR = 192.168.1.13 -- 10:51:20.773 INFO [16303]: SERVER_NAME = oameye.works.coregrade.com -- 10:51:20.773 INFO [16303]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3m28m3mvpce9ci6ab2nbnhkgpcf25k16 -- 10:51:20.773 INFO [16303]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:51:20.773 INFO [16303]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:51:20.784 INFO [16303]: COREGRADE is stopping... -- 10:51:20.784 DEBUG [16303]: Closing database connection -- 10:51:20.784 SQL [16303]: pgsql_close() -- 10:51:20.786 DEBUG [16301]: Database connection successful -- 10:51:20.786 INFO [16301]: _SERVER found -- 10:51:20.786 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 10:51:20.786 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 10:51:20.786 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3m28m3mvpce9ci6ab2nbnhkgpcf25k16 -- 10:51:20.786 INFO [16301]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:51:20.786 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:51:20.797 INFO [16301]: COREGRADE is stopping... -- 10:51:20.797 DEBUG [16301]: Closing database connection -- 10:51:20.797 SQL [16301]: pgsql_close() -- 10:51:21.837 INFO [16301]: COREGRADE is starting... -- 10:51:21.837 INFO [16301]: Version from config: 1.0 -- 10:51:21.837 DEBUG [16301]: Connecting to database... -- 10:51:21.837 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:51:21.837 SQL [16301]: pgsql_db_connect() -- 10:51:21.841 DEBUG [16301]: Database connection successful -- 10:51:21.841 INFO [16301]: _SERVER found -- 10:51:21.841 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 10:51:21.841 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 10:51:21.841 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3m28m3mvpce9ci6ab2nbnhkgpcf25k16 -- 10:51:21.841 INFO [16301]: QUERY_STRING = /member/configure -- 10:51:21.841 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:51:21.876 INFO [16301]: COREGRADE is stopping... -- 10:51:21.876 DEBUG [16301]: Closing database connection -- 10:51:21.876 SQL [16301]: pgsql_close() -- 10:51:22.116 INFO [16301]: COREGRADE is starting... -- 10:51:22.116 INFO [16301]: Version from config: 1.0 -- 10:51:22.116 DEBUG [16301]: Connecting to database... -- 10:51:22.116 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:51:22.116 SQL [16301]: pgsql_db_connect() -- 10:51:22.120 DEBUG [16301]: Database connection successful -- 10:51:22.120 INFO [16301]: _SERVER found -- 10:51:22.120 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 10:51:22.120 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 10:51:22.120 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3m28m3mvpce9ci6ab2nbnhkgpcf25k16 -- 10:51:22.120 INFO [16301]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:51:22.120 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:51:22.131 INFO [16301]: COREGRADE is stopping... -- 10:51:22.131 DEBUG [16301]: Closing database connection -- 10:51:22.131 SQL [16301]: pgsql_close() -- 10:51:22.197 INFO [16301]: COREGRADE is starting... -- 10:51:22.197 INFO [16301]: Version from config: 1.0 -- 10:51:22.197 DEBUG [16301]: Connecting to database... -- 10:51:22.197 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:51:22.197 SQL [16301]: pgsql_db_connect() -- 10:51:22.201 DEBUG [16301]: Database connection successful -- 10:51:22.201 INFO [16301]: _SERVER found -- 10:51:22.201 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 10:51:22.201 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 10:51:22.201 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3m28m3mvpce9ci6ab2nbnhkgpcf25k16 -- 10:51:22.201 INFO [16301]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:51:22.201 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:51:22.212 INFO [16301]: COREGRADE is stopping... -- 10:51:22.212 DEBUG [16301]: Closing database connection -- 10:51:22.212 SQL [16301]: pgsql_close() -- 10:52:12.732 INFO [16305]: COREGRADE is starting... -- 10:52:12.732 INFO [16305]: Version from config: 1.0 -- 10:52:12.732 DEBUG [16305]: Connecting to database... -- 10:52:12.732 DEBUG [16305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:52:12.732 SQL [16305]: pgsql_db_connect() -- 10:52:12.736 DEBUG [16305]: Database connection successful -- 10:52:12.736 INFO [16305]: _SERVER found -- 10:52:12.736 INFO [16305]: REMOTE_ADDR = 192.168.1.13 -- 10:52:12.736 INFO [16305]: SERVER_NAME = oameye.works.coregrade.com -- 10:52:12.736 INFO [16305]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=lttoeiq97lc6sacaet7127bo3gt8otmg -- 10:52:12.736 INFO [16305]: QUERY_STRING = /member/page -- 10:52:12.736 INFO [16305]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:52:12.772 INFO [16305]: COREGRADE is stopping... -- 10:52:12.772 DEBUG [16305]: Closing database connection -- 10:52:12.772 SQL [16305]: pgsql_close() -- 10:52:13.058 INFO [16305]: COREGRADE is starting... -- 10:52:13.059 INFO [16305]: Version from config: 1.0 -- 10:52:13.059 DEBUG [16305]: Connecting to database... -- 10:52:13.059 DEBUG [16305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:52:13.059 SQL [16305]: pgsql_db_connect() -- 10:52:13.063 DEBUG [16305]: Database connection successful -- 10:52:13.063 INFO [16305]: _SERVER found -- 10:52:13.063 INFO [16305]: REMOTE_ADDR = 192.168.1.13 -- 10:52:13.063 INFO [16305]: SERVER_NAME = oameye.works.coregrade.com -- 10:52:13.063 INFO [16305]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=lttoeiq97lc6sacaet7127bo3gt8otmg -- 10:52:13.063 INFO [16305]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:52:13.063 INFO [16305]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:52:13.074 INFO [16305]: COREGRADE is stopping... -- 10:52:13.074 DEBUG [16305]: Closing database connection -- 10:52:13.074 SQL [16305]: pgsql_close() -- 10:52:13.077 INFO [16302]: COREGRADE is starting... -- 10:52:13.077 INFO [16302]: Version from config: 1.0 -- 10:52:13.077 DEBUG [16302]: Connecting to database... -- 10:52:13.077 DEBUG [16302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:52:13.077 SQL [16302]: pgsql_db_connect() -- 10:52:13.081 DEBUG [16302]: Database connection successful -- 10:52:13.081 INFO [16302]: _SERVER found -- 10:52:13.081 INFO [16302]: REMOTE_ADDR = 192.168.1.13 -- 10:52:13.081 INFO [16302]: SERVER_NAME = oameye.works.coregrade.com -- 10:52:13.081 INFO [16302]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=lttoeiq97lc6sacaet7127bo3gt8otmg -- 10:52:13.081 INFO [16302]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:52:13.081 INFO [16302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:52:13.092 INFO [16302]: COREGRADE is stopping... -- 10:52:13.092 DEBUG [16302]: Closing database connection -- 10:52:13.092 SQL [16302]: pgsql_close() -- 10:52:15.407 INFO [16302]: COREGRADE is starting... -- 10:52:15.407 INFO [16302]: Version from config: 1.0 -- 10:52:15.407 DEBUG [16302]: Connecting to database... -- 10:52:15.407 DEBUG [16302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:52:15.407 SQL [16302]: pgsql_db_connect() -- 10:52:15.411 DEBUG [16302]: Database connection successful -- 10:52:15.411 INFO [16302]: _SERVER found -- 10:52:15.411 INFO [16302]: REMOTE_ADDR = 192.168.1.13 -- 10:52:15.411 INFO [16302]: SERVER_NAME = oameye.works.coregrade.com -- 10:52:15.411 INFO [16302]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=lttoeiq97lc6sacaet7127bo3gt8otmg -- 10:52:15.411 INFO [16302]: QUERY_STRING = /member/viewCardAddAction -- 10:52:15.411 INFO [16302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:52:15.441 INFO [16302]: COREGRADE is stopping... -- 10:52:15.441 DEBUG [16302]: Closing database connection -- 10:52:15.441 SQL [16302]: pgsql_close() -- 10:52:38.508 INFO [16304]: COREGRADE is starting... -- 10:52:38.508 INFO [16304]: Version from config: 1.0 -- 10:52:38.508 DEBUG [16304]: Connecting to database... -- 10:52:38.508 DEBUG [16304]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:52:38.508 SQL [16304]: pgsql_db_connect() -- 10:52:38.512 DEBUG [16304]: Database connection successful -- 10:52:38.512 INFO [16304]: _SERVER found -- 10:52:38.512 INFO [16304]: REMOTE_ADDR = 192.168.1.13 -- 10:52:38.512 INFO [16304]: SERVER_NAME = oameye.works.coregrade.com -- 10:52:38.512 INFO [16304]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=lttoeiq97lc6sacaet7127bo3gt8otmg -- 10:52:38.512 INFO [16304]: QUERY_STRING = /member/page -- 10:52:38.512 INFO [16304]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:52:38.549 INFO [16304]: COREGRADE is stopping... -- 10:52:38.549 DEBUG [16304]: Closing database connection -- 10:52:38.549 SQL [16304]: pgsql_close() -- 10:52:38.826 INFO [16304]: COREGRADE is starting... -- 10:52:38.826 INFO [16304]: Version from config: 1.0 -- 10:52:38.826 DEBUG [16304]: Connecting to database... -- 10:52:38.826 DEBUG [16304]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:52:38.826 SQL [16304]: pgsql_db_connect() -- 10:52:38.830 DEBUG [16304]: Database connection successful -- 10:52:38.830 INFO [16304]: _SERVER found -- 10:52:38.830 INFO [16304]: REMOTE_ADDR = 192.168.1.13 -- 10:52:38.830 INFO [16304]: SERVER_NAME = oameye.works.coregrade.com -- 10:52:38.830 INFO [16304]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=lttoeiq97lc6sacaet7127bo3gt8otmg -- 10:52:38.830 INFO [16304]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:52:38.830 INFO [16304]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:52:38.841 INFO [16304]: COREGRADE is stopping... -- 10:52:38.841 DEBUG [16304]: Closing database connection -- 10:52:38.841 SQL [16304]: pgsql_close() -- 10:52:38.857 INFO [17314]: COREGRADE is starting... -- 10:52:38.858 INFO [17314]: Version from config: 1.0 -- 10:52:38.858 DEBUG [17314]: Connecting to database... -- 10:52:38.858 DEBUG [17314]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:52:38.858 SQL [17314]: pgsql_db_connect() -- 10:52:38.861 DEBUG [17314]: Database connection successful -- 10:52:38.861 INFO [17314]: _SERVER found -- 10:52:38.861 INFO [17314]: REMOTE_ADDR = 192.168.1.13 -- 10:52:38.861 INFO [17314]: SERVER_NAME = oameye.works.coregrade.com -- 10:52:38.861 INFO [17314]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=lttoeiq97lc6sacaet7127bo3gt8otmg -- 10:52:38.861 INFO [17314]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:52:38.861 INFO [17314]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:52:38.873 INFO [17314]: COREGRADE is stopping... -- 10:52:38.873 DEBUG [17314]: Closing database connection -- 10:52:38.873 SQL [17314]: pgsql_close() -- 10:52:40.901 INFO [17314]: COREGRADE is starting... -- 10:52:40.901 INFO [17314]: Version from config: 1.0 -- 10:52:40.901 DEBUG [17314]: Connecting to database... -- 10:52:40.902 DEBUG [17314]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:52:40.902 SQL [17314]: pgsql_db_connect() -- 10:52:40.906 DEBUG [17314]: Database connection successful -- 10:52:40.906 INFO [17314]: _SERVER found -- 10:52:40.906 INFO [17314]: REMOTE_ADDR = 192.168.1.13 -- 10:52:40.906 INFO [17314]: SERVER_NAME = oameye.works.coregrade.com -- 10:52:40.906 INFO [17314]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=lttoeiq97lc6sacaet7127bo3gt8otmg -- 10:52:40.906 INFO [17314]: QUERY_STRING = /member/page -- 10:52:40.906 INFO [17314]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:52:40.941 INFO [17314]: COREGRADE is stopping... -- 10:52:40.941 DEBUG [17314]: Closing database connection -- 10:52:40.941 SQL [17314]: pgsql_close() -- 10:52:41.130 INFO [17314]: COREGRADE is starting... -- 10:52:41.130 INFO [17314]: Version from config: 1.0 -- 10:52:41.130 DEBUG [17314]: Connecting to database... -- 10:52:41.130 DEBUG [17314]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:52:41.130 SQL [17314]: pgsql_db_connect() -- 10:52:41.138 INFO [16304]: COREGRADE is starting... -- 10:52:41.139 INFO [16304]: Version from config: 1.0 -- 10:52:41.139 DEBUG [16304]: Connecting to database... -- 10:52:41.139 DEBUG [16304]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:52:41.139 SQL [16304]: pgsql_db_connect() -- 10:52:41.134 DEBUG [17314]: Database connection successful -- 10:52:41.134 INFO [17314]: _SERVER found -- 10:52:41.134 INFO [17314]: REMOTE_ADDR = 192.168.1.13 -- 10:52:41.134 INFO [17314]: SERVER_NAME = oameye.works.coregrade.com -- 10:52:41.134 INFO [17314]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=lttoeiq97lc6sacaet7127bo3gt8otmg -- 10:52:41.134 INFO [17314]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:52:41.134 INFO [17314]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:52:41.145 INFO [17314]: COREGRADE is stopping... -- 10:52:41.145 DEBUG [17314]: Closing database connection -- 10:52:41.145 SQL [17314]: pgsql_close() -- 10:52:41.142 DEBUG [16304]: Database connection successful -- 10:52:41.142 INFO [16304]: _SERVER found -- 10:52:41.142 INFO [16304]: REMOTE_ADDR = 192.168.1.13 -- 10:52:41.142 INFO [16304]: SERVER_NAME = oameye.works.coregrade.com -- 10:52:41.142 INFO [16304]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=lttoeiq97lc6sacaet7127bo3gt8otmg -- 10:52:41.142 INFO [16304]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:52:41.142 INFO [16304]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:52:41.153 INFO [16304]: COREGRADE is stopping... -- 10:52:41.153 DEBUG [16304]: Closing database connection -- 10:52:41.153 SQL [16304]: pgsql_close() -- 10:54:50.814 INFO [17315]: COREGRADE is starting... -- 10:54:50.815 INFO [17315]: Version from config: 1.0 -- 10:54:50.815 DEBUG [17315]: Connecting to database... -- 10:54:50.815 DEBUG [17315]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:54:50.815 SQL [17315]: pgsql_db_connect() -- 10:54:50.850 INFO [17315]: COREGRADE is starting... -- 10:54:50.850 INFO [17315]: Version from config: 1.0 -- 10:54:50.850 DEBUG [17315]: Connecting to database... -- 10:54:50.850 DEBUG [17315]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:54:50.850 SQL [17315]: pgsql_db_connect() -- 10:54:50.854 DEBUG [17315]: Database connection successful -- 10:54:50.854 INFO [17315]: _SERVER found -- 10:54:50.854 INFO [17315]: REMOTE_ADDR = 192.168.1.13 -- 10:54:50.854 INFO [17315]: SERVER_NAME = oameye.works.coregrade.com -- 10:54:50.854 INFO [17315]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=lttoeiq97lc6sacaet7127bo3gt8otmg -- 10:54:50.854 INFO [17315]: QUERY_STRING = -- 10:54:50.854 INFO [17315]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:54:50.854 INFO [17315]: SystemStatus()09-09-********~************ -- 10:54:50.854 INFO [17315]: long coregrade_api_main(CVars in, CVars &out) -- 10:54:50.854 INFO [17315]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 10:54:50.854 INFO [17315]: account calls -- 10:54:50.854 INFO [17315]: account_calls() -- 10:54:50.854 INFO [17315]: LoginCoreGradeAccount() -- 10:54:50.855 FLOG_MAX [17315]: REQ_STRING(username) -- 10:54:50.855 FLOG_MAX [17315]: REQ_STRING(password) -- 10:54:50.855 FLOG_MAX [17315]: REQ_STRING(sessionid) -- 10:54:50.855 FLOG_MAX [17315]: long load_db_record( CVars &rec, const char * query, ... ) -- 10:54:50.855 SQL [17315]: pgsql_query() -- 10:54:50.855 SQL [17315]: About to run query: -- 10:54:50.855 SQL [17315]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 10:54:50.858 SQL [17315]: Found rows: 1 -- 10:54:50.858 FLOG_MAX [17315]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=15 -- 10:54:50.858 INFO [17315]: long SessionCheck(long uid, const char *sessionid, int create ) -- 10:54:50.858 SQL [17315]: pgsql_exec() -- 10:54:50.858 SQL [17315]: About to run query: -- 10:54:50.858 SQL [17315]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 10:54:50.859 SQL [17315]: PQcmdTuples: 0 -- 10:54:50.859 SQL [17315]: Affected rows: 0 -- 10:54:50.859 SQL [17315]: pgsql_exec() -- 10:54:50.859 SQL [17315]: About to run query: -- 10:54:50.859 SQL [17315]: DELETE FROM members_session WHERE member_id=7 -- 10:54:50.860 SQL [17315]: PQcmdTuples: 1 -- 10:54:50.860 SQL [17315]: Affected rows: 1 -- 10:54:50.860 SQL [17315]: pgsql_query() -- 10:54:50.860 SQL [17315]: About to run query: -- 10:54:50.860 SQL [17315]: SELECT * FROM members_session WHERE member_id=7 AND session<>'918E094D1CF6524ECD21AEBA33324E58' -- 10:54:50.860 SQL [17315]: Found rows: 0 -- 10:54:50.860 SQL [17315]: Found rows: 0 -- 10:54:50.860 FLOG_MAX [17315]: long load_db_record( CVars &rec, const char * query, ... ) -- 10:54:50.860 SQL [17315]: pgsql_query() -- 10:54:50.860 SQL [17315]: About to run query: -- 10:54:50.860 SQL [17315]: SELECT * FROM members_session WHERE member_id=7 AND session='918E094D1CF6524ECD21AEBA33324E58' -- 10:54:50.861 SQL [17315]: Found rows: 0 -- 10:54:50.861 SQL [17315]: Found rows: 0 -- 10:54:50.861 FLOG_MAX [17315]: insert_db_record() -- 10:54:50.861 SQL [17315]: pgsql_exec() -- 10:54:50.861 SQL [17315]: About to run query: -- 10:54:50.861 SQL [17315]: INSERT INTO members_session (member_id,session) VALUES ('7','918E094D1CF6524ECD21AEBA33324E58') -- 10:54:50.863 SQL [17315]: PQcmdTuples: 1 -- 10:54:50.863 SQL [17315]: Affected rows: 1 -- 10:54:50.863 FLOG_MAX [17315]: SELECT currval('members_session_id_seq') -- 10:54:50.863 SQL [17315]: pgsql_query() -- 10:54:50.863 SQL [17315]: About to run query: -- 10:54:50.863 SQL [17315]: SELECT currval('members_session_id_seq') -- 10:54:50.863 SQL [17315]: Found rows: 1 -- 10:54:50.863 INFO [17315]: CreateDefaultPage() -- 10:54:50.863 FLOG_MAX [17315]: long load_db_record( CVars &rec, const char * query, ... ) -- 10:54:50.863 SQL [17315]: pgsql_query() -- 10:54:50.863 SQL [17315]: About to run query: -- 10:54:50.863 SQL [17315]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 10:54:50.863 SQL [17315]: Found rows: 1 -- 10:54:50.863 FLOG_MAX [17315]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 10:54:50.863 SQL [17315]: pgsql_query() -- 10:54:50.863 SQL [17315]: About to run query: -- 10:54:50.863 SQL [17315]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 10:54:50.864 SQL [17315]: Found rows: 1 -- 10:54:50.864 INFO [17315]: /CreateDefaultPage() -- 10:54:50.864 INFO [17315]: /LoginCoreGradeAccount() -- 10:54:50.864 INFO [17315]: RET: added=2020-02-05 09:42:12.816064 -- 10:54:50.864 INFO [17315]: RET: email=tokslaw@chiefsoft.com -- 10:54:50.864 INFO [17315]: RET: firstname=Tokunbo -- 10:54:50.864 INFO [17315]: RET: id=7 -- 10:54:50.864 INFO [17315]: RET: last_login= -- 10:54:50.864 INFO [17315]: RET: lastname=Lawal -- 10:54:50.864 INFO [17315]: RET: loc=192.168.1.13 -- 10:54:50.864 INFO [17315]: RET: member_id=7 -- 10:54:50.864 INFO [17315]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 10:54:50.864 INFO [17315]: RET: phone= -- 10:54:50.864 INFO [17315]: RET: pid= -- 10:54:50.864 INFO [17315]: RET: result=YES I GET TO BACK END -- 10:54:50.864 INFO [17315]: RET: sessionid=918E094D1CF6524ECD21AEBA33324E58 -- 10:54:50.864 INFO [17315]: RET: status=1 -- 10:54:50.864 INFO [17315]: RET: stauts=OK -- 10:54:50.864 INFO [17315]: RET: username=tokslaw@chiefsoft.com -- 10:54:50.864 INFO [17315]: RET: verified= -- 10:54:50.865 INFO [17315]: COREGRADE is stopping... -- 10:54:50.865 DEBUG [17315]: Closing database connection -- 10:54:50.865 SQL [17315]: pgsql_close() -- 10:54:50.819 DEBUG [17315]: Database connection successful -- 10:54:50.819 INFO [17315]: _SERVER found -- 10:54:50.819 INFO [17315]: REMOTE_ADDR = 192.168.1.13 -- 10:54:50.819 INFO [17315]: SERVER_NAME = oameye.works.coregrade.com -- 10:54:50.819 INFO [17315]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=lttoeiq97lc6sacaet7127bo3gt8otmg -- 10:54:50.819 INFO [17315]: QUERY_STRING = /auth -- 10:54:50.819 INFO [17315]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:54:50.866 INFO [17315]: COREGRADE is stopping... -- 10:54:50.866 DEBUG [17315]: Closing database connection -- 10:54:50.866 SQL [17315]: pgsql_close() -- 10:54:50.882 INFO [17315]: COREGRADE is starting... -- 10:54:50.882 INFO [17315]: Version from config: 1.0 -- 10:54:50.882 DEBUG [17315]: Connecting to database... -- 10:54:50.882 DEBUG [17315]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:54:50.882 SQL [17315]: pgsql_db_connect() -- 10:54:50.886 DEBUG [17315]: Database connection successful -- 10:54:50.886 INFO [17315]: _SERVER found -- 10:54:50.886 INFO [17315]: REMOTE_ADDR = 192.168.1.13 -- 10:54:50.886 INFO [17315]: SERVER_NAME = oameye.works.coregrade.com -- 10:54:50.886 INFO [17315]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=lttoeiq97lc6sacaet7127bo3gt8otmg -- 10:54:50.886 INFO [17315]: QUERY_STRING = /member/index -- 10:54:50.886 INFO [17315]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:54:50.921 INFO [17315]: COREGRADE is stopping... -- 10:54:50.921 DEBUG [17315]: Closing database connection -- 10:54:50.921 SQL [17315]: pgsql_close() -- 10:54:51.167 INFO [17315]: COREGRADE is starting... -- 10:54:51.167 INFO [17315]: Version from config: 1.0 -- 10:54:51.167 DEBUG [17315]: Connecting to database... -- 10:54:51.167 DEBUG [17315]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:54:51.167 SQL [17315]: pgsql_db_connect() -- 10:54:51.171 DEBUG [17315]: Database connection successful -- 10:54:51.171 INFO [17315]: _SERVER found -- 10:54:51.171 INFO [17315]: REMOTE_ADDR = 192.168.1.13 -- 10:54:51.171 INFO [17315]: SERVER_NAME = oameye.works.coregrade.com -- 10:54:51.171 INFO [17315]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=lttoeiq97lc6sacaet7127bo3gt8otmg -- 10:54:51.171 INFO [17315]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:54:51.171 INFO [17315]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:54:51.182 INFO [17315]: COREGRADE is stopping... -- 10:54:51.182 DEBUG [17315]: Closing database connection -- 10:54:51.182 SQL [17315]: pgsql_close() -- 10:54:51.187 INFO [17316]: COREGRADE is starting... -- 10:54:51.187 INFO [17316]: Version from config: 1.0 -- 10:54:51.187 DEBUG [17316]: Connecting to database... -- 10:54:51.187 DEBUG [17316]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:54:51.187 SQL [17316]: pgsql_db_connect() -- 10:54:51.190 DEBUG [17316]: Database connection successful -- 10:54:51.190 INFO [17316]: _SERVER found -- 10:54:51.190 INFO [17316]: REMOTE_ADDR = 192.168.1.13 -- 10:54:51.190 INFO [17316]: SERVER_NAME = oameye.works.coregrade.com -- 10:54:51.190 INFO [17316]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=lttoeiq97lc6sacaet7127bo3gt8otmg -- 10:54:51.190 INFO [17316]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:54:51.190 INFO [17316]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:54:51.202 INFO [17316]: COREGRADE is stopping... -- 10:54:51.202 DEBUG [17316]: Closing database connection -- 10:54:51.202 SQL [17316]: pgsql_close() -- 10:54:57.734 INFO [17310]: COREGRADE is starting... -- 10:54:57.735 INFO [17310]: Version from config: 1.0 -- 10:54:57.735 DEBUG [17310]: Connecting to database... -- 10:54:57.735 DEBUG [17310]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:54:57.735 SQL [17310]: pgsql_db_connect() -- 10:54:57.739 DEBUG [17310]: Database connection successful -- 10:54:57.739 INFO [17310]: _SERVER found -- 10:54:57.739 INFO [17310]: REMOTE_ADDR = 192.168.1.13 -- 10:54:57.739 INFO [17310]: SERVER_NAME = oameye.works.coregrade.com -- 10:54:57.739 INFO [17310]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=lttoeiq97lc6sacaet7127bo3gt8otmg -- 10:54:57.739 INFO [17310]: QUERY_STRING = /member/page -- 10:54:57.739 INFO [17310]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:54:57.775 INFO [17310]: COREGRADE is stopping... -- 10:54:57.775 DEBUG [17310]: Closing database connection -- 10:54:57.775 SQL [17310]: pgsql_close() -- 10:54:57.969 INFO [17310]: COREGRADE is starting... -- 10:54:57.969 INFO [17310]: Version from config: 1.0 -- 10:54:57.969 DEBUG [17310]: Connecting to database... -- 10:54:57.969 DEBUG [17310]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:54:57.969 SQL [17310]: pgsql_db_connect() -- 10:54:57.973 DEBUG [17310]: Database connection successful -- 10:54:57.973 INFO [17310]: _SERVER found -- 10:54:57.973 INFO [17310]: REMOTE_ADDR = 192.168.1.13 -- 10:54:57.973 INFO [17310]: SERVER_NAME = oameye.works.coregrade.com -- 10:54:57.973 INFO [17310]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=lttoeiq97lc6sacaet7127bo3gt8otmg -- 10:54:57.973 INFO [17310]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:54:57.973 INFO [17310]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:54:57.984 INFO [17310]: COREGRADE is stopping... -- 10:54:57.984 DEBUG [17310]: Closing database connection -- 10:54:57.984 SQL [17310]: pgsql_close() -- 10:54:57.994 INFO [17313]: COREGRADE is starting... -- 10:54:57.994 INFO [17313]: Version from config: 1.0 -- 10:54:57.994 DEBUG [17313]: Connecting to database... -- 10:54:57.994 DEBUG [17313]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:54:57.994 SQL [17313]: pgsql_db_connect() -- 10:54:57.998 DEBUG [17313]: Database connection successful -- 10:54:57.998 INFO [17313]: _SERVER found -- 10:54:57.998 INFO [17313]: REMOTE_ADDR = 192.168.1.13 -- 10:54:57.998 INFO [17313]: SERVER_NAME = oameye.works.coregrade.com -- 10:54:57.998 INFO [17313]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=lttoeiq97lc6sacaet7127bo3gt8otmg -- 10:54:57.998 INFO [17313]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:54:57.998 INFO [17313]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:54:58.009 INFO [17313]: COREGRADE is stopping... -- 10:54:58.009 DEBUG [17313]: Closing database connection -- 10:54:58.009 SQL [17313]: pgsql_close() -- 10:55:21.895 INFO [16303]: COREGRADE is starting... -- 10:55:21.895 INFO [16303]: Version from config: 1.0 -- 10:55:21.895 DEBUG [16303]: Connecting to database... -- 10:55:21.895 DEBUG [16303]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:55:21.895 SQL [16303]: pgsql_db_connect() -- 10:55:21.899 DEBUG [16303]: Database connection successful -- 10:55:21.899 INFO [16303]: _SERVER found -- 10:55:21.899 INFO [16303]: REMOTE_ADDR = 192.168.1.13 -- 10:55:21.899 INFO [16303]: SERVER_NAME = oameye.works.coregrade.com -- 10:55:21.899 INFO [16303]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=lttoeiq97lc6sacaet7127bo3gt8otmg -- 10:55:21.899 INFO [16303]: QUERY_STRING = screen=member/page-user-profile -- 10:55:21.899 INFO [16303]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:55:21.911 INFO [16303]: COREGRADE is stopping... -- 10:55:21.911 DEBUG [16303]: Closing database connection -- 10:55:21.911 SQL [16303]: pgsql_close() -- 10:55:23.849 INFO [16303]: COREGRADE is starting... -- 10:55:23.850 INFO [16303]: Version from config: 1.0 -- 10:55:23.850 DEBUG [16303]: Connecting to database... -- 10:55:23.850 DEBUG [16303]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:55:23.850 SQL [16303]: pgsql_db_connect() -- 10:55:23.854 DEBUG [16303]: Database connection successful -- 10:55:23.854 INFO [16303]: _SERVER found -- 10:55:23.854 INFO [16303]: REMOTE_ADDR = 192.168.1.13 -- 10:55:23.854 INFO [16303]: SERVER_NAME = oameye.works.coregrade.com -- 10:55:23.854 INFO [16303]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=lttoeiq97lc6sacaet7127bo3gt8otmg -- 10:55:23.854 INFO [16303]: QUERY_STRING = /member/page -- 10:55:23.854 INFO [16303]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:55:23.890 INFO [16303]: COREGRADE is stopping... -- 10:55:23.890 DEBUG [16303]: Closing database connection -- 10:55:23.890 SQL [16303]: pgsql_close() -- 10:55:48.177 INFO [16301]: COREGRADE is starting... -- 10:55:48.178 INFO [16301]: Version from config: 1.0 -- 10:55:48.178 DEBUG [16301]: Connecting to database... -- 10:55:48.178 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:55:48.178 SQL [16301]: pgsql_db_connect() -- 10:55:48.182 DEBUG [16301]: Database connection successful -- 10:55:48.182 INFO [16301]: _SERVER found -- 10:55:48.182 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 10:55:48.182 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 10:55:48.182 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=lttoeiq97lc6sacaet7127bo3gt8otmg -- 10:55:48.182 INFO [16301]: QUERY_STRING = /member/configure -- 10:55:48.182 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:55:48.217 INFO [16301]: COREGRADE is stopping... -- 10:55:48.217 DEBUG [16301]: Closing database connection -- 10:55:48.217 SQL [16301]: pgsql_close() -- 10:55:48.494 INFO [16301]: COREGRADE is starting... -- 10:55:48.494 INFO [16301]: Version from config: 1.0 -- 10:55:48.494 DEBUG [16301]: Connecting to database... -- 10:55:48.494 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:55:48.494 SQL [16301]: pgsql_db_connect() -- 10:55:48.498 DEBUG [16301]: Database connection successful -- 10:55:48.498 INFO [16301]: _SERVER found -- 10:55:48.498 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 10:55:48.498 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 10:55:48.498 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=em9qq88ctptkabskgtc011or1qkug23q -- 10:55:48.498 INFO [16301]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:55:48.498 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:55:48.509 INFO [16301]: COREGRADE is stopping... -- 10:55:48.509 DEBUG [16301]: Closing database connection -- 10:55:48.509 SQL [16301]: pgsql_close() -- 10:55:48.520 INFO [16301]: COREGRADE is starting... -- 10:55:48.520 INFO [16301]: Version from config: 1.0 -- 10:55:48.520 DEBUG [16301]: Connecting to database... -- 10:55:48.520 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:55:48.520 SQL [16301]: pgsql_db_connect() -- 10:55:48.524 DEBUG [16301]: Database connection successful -- 10:55:48.524 INFO [16301]: _SERVER found -- 10:55:48.524 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 10:55:48.524 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 10:55:48.524 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=em9qq88ctptkabskgtc011or1qkug23q -- 10:55:48.524 INFO [16301]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:55:48.524 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:55:48.535 INFO [16301]: COREGRADE is stopping... -- 10:55:48.535 DEBUG [16301]: Closing database connection -- 10:55:48.535 SQL [16301]: pgsql_close() -- 10:55:51.198 INFO [16301]: COREGRADE is starting... -- 10:55:51.199 INFO [16301]: Version from config: 1.0 -- 10:55:51.199 DEBUG [16301]: Connecting to database... -- 10:55:51.199 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:55:51.199 SQL [16301]: pgsql_db_connect() -- 10:55:51.203 DEBUG [16301]: Database connection successful -- 10:55:51.203 INFO [16301]: _SERVER found -- 10:55:51.203 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 10:55:51.203 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 10:55:51.203 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=em9qq88ctptkabskgtc011or1qkug23q -- 10:55:51.203 INFO [16301]: QUERY_STRING = /member/configure -- 10:55:51.203 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:55:51.237 INFO [16301]: COREGRADE is stopping... -- 10:55:51.237 DEBUG [16301]: Closing database connection -- 10:55:51.237 SQL [16301]: pgsql_close() -- 10:55:51.403 INFO [16301]: COREGRADE is starting... -- 10:55:51.403 INFO [16301]: Version from config: 1.0 -- 10:55:51.404 DEBUG [16301]: Connecting to database... -- 10:55:51.404 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:55:51.404 SQL [16301]: pgsql_db_connect() -- 10:55:51.408 DEBUG [16301]: Database connection successful -- 10:55:51.408 INFO [16301]: _SERVER found -- 10:55:51.408 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 10:55:51.408 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 10:55:51.408 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=em9qq88ctptkabskgtc011or1qkug23q -- 10:55:51.408 INFO [16301]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:55:51.408 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:55:51.418 INFO [16301]: COREGRADE is stopping... -- 10:55:51.418 DEBUG [16301]: Closing database connection -- 10:55:51.419 SQL [16301]: pgsql_close() -- 10:55:51.422 INFO [16305]: COREGRADE is starting... -- 10:55:51.422 INFO [16305]: Version from config: 1.0 -- 10:55:51.422 DEBUG [16305]: Connecting to database... -- 10:55:51.422 DEBUG [16305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:55:51.422 SQL [16305]: pgsql_db_connect() -- 10:55:51.426 DEBUG [16305]: Database connection successful -- 10:55:51.426 INFO [16305]: _SERVER found -- 10:55:51.426 INFO [16305]: REMOTE_ADDR = 192.168.1.13 -- 10:55:51.426 INFO [16305]: SERVER_NAME = oameye.works.coregrade.com -- 10:55:51.426 INFO [16305]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=em9qq88ctptkabskgtc011or1qkug23q -- 10:55:51.426 INFO [16305]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:55:51.426 INFO [16305]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:55:51.438 INFO [16305]: COREGRADE is stopping... -- 10:55:51.438 DEBUG [16305]: Closing database connection -- 10:55:51.438 SQL [16305]: pgsql_close() -- 10:55:52.810 INFO [16305]: COREGRADE is starting... -- 10:55:52.810 INFO [16305]: Version from config: 1.0 -- 10:55:52.810 DEBUG [16305]: Connecting to database... -- 10:55:52.810 DEBUG [16305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:55:52.810 SQL [16305]: pgsql_db_connect() -- 10:55:52.814 DEBUG [16305]: Database connection successful -- 10:55:52.814 INFO [16305]: _SERVER found -- 10:55:52.814 INFO [16305]: REMOTE_ADDR = 192.168.1.13 -- 10:55:52.814 INFO [16305]: SERVER_NAME = oameye.works.coregrade.com -- 10:55:52.814 INFO [16305]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=em9qq88ctptkabskgtc011or1qkug23q -- 10:55:52.814 INFO [16305]: QUERY_STRING = /member -- 10:55:52.814 INFO [16305]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:55:52.849 INFO [16305]: COREGRADE is stopping... -- 10:55:52.849 DEBUG [16305]: Closing database connection -- 10:55:52.849 SQL [16305]: pgsql_close() -- 10:55:53.019 INFO [16305]: COREGRADE is starting... -- 10:55:53.020 INFO [16305]: Version from config: 1.0 -- 10:55:53.020 DEBUG [16305]: Connecting to database... -- 10:55:53.020 DEBUG [16305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:55:53.020 SQL [16305]: pgsql_db_connect() -- 10:55:53.024 DEBUG [16305]: Database connection successful -- 10:55:53.024 INFO [16305]: _SERVER found -- 10:55:53.024 INFO [16305]: REMOTE_ADDR = 192.168.1.13 -- 10:55:53.024 INFO [16305]: SERVER_NAME = oameye.works.coregrade.com -- 10:55:53.024 INFO [16305]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=em9qq88ctptkabskgtc011or1qkug23q -- 10:55:53.024 INFO [16305]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:55:53.024 INFO [16305]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:55:53.035 INFO [16305]: COREGRADE is stopping... -- 10:55:53.035 DEBUG [16305]: Closing database connection -- 10:55:53.035 SQL [16305]: pgsql_close() -- 10:55:53.040 INFO [16301]: COREGRADE is starting... -- 10:55:53.040 INFO [16301]: Version from config: 1.0 -- 10:55:53.040 DEBUG [16301]: Connecting to database... -- 10:55:53.040 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:55:53.040 SQL [16301]: pgsql_db_connect() -- 10:55:53.044 DEBUG [16301]: Database connection successful -- 10:55:53.044 INFO [16301]: _SERVER found -- 10:55:53.044 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 10:55:53.044 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 10:55:53.044 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=em9qq88ctptkabskgtc011or1qkug23q -- 10:55:53.044 INFO [16301]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:55:53.044 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:55:53.055 INFO [16301]: COREGRADE is stopping... -- 10:55:53.055 DEBUG [16301]: Closing database connection -- 10:55:53.055 SQL [16301]: pgsql_close() -- 10:55:54.550 INFO [16301]: COREGRADE is starting... -- 10:55:54.551 INFO [16301]: Version from config: 1.0 -- 10:55:54.551 DEBUG [16301]: Connecting to database... -- 10:55:54.551 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:55:54.551 SQL [16301]: pgsql_db_connect() -- 10:55:54.555 DEBUG [16301]: Database connection successful -- 10:55:54.555 INFO [16301]: _SERVER found -- 10:55:54.555 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 10:55:54.555 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 10:55:54.555 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=em9qq88ctptkabskgtc011or1qkug23q -- 10:55:54.555 INFO [16301]: QUERY_STRING = /member/page -- 10:55:54.555 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:55:54.590 INFO [16301]: COREGRADE is stopping... -- 10:55:54.590 DEBUG [16301]: Closing database connection -- 10:55:54.590 SQL [16301]: pgsql_close() -- 10:55:54.766 INFO [16301]: COREGRADE is starting... -- 10:55:54.766 INFO [16301]: Version from config: 1.0 -- 10:55:54.766 DEBUG [16301]: Connecting to database... -- 10:55:54.766 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:55:54.766 SQL [16301]: pgsql_db_connect() -- 10:55:54.774 INFO [16305]: COREGRADE is starting... -- 10:55:54.774 INFO [16305]: Version from config: 1.0 -- 10:55:54.774 DEBUG [16305]: Connecting to database... -- 10:55:54.774 DEBUG [16305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:55:54.774 SQL [16305]: pgsql_db_connect() -- 10:55:54.770 DEBUG [16301]: Database connection successful -- 10:55:54.770 INFO [16301]: _SERVER found -- 10:55:54.770 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 10:55:54.770 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 10:55:54.770 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=em9qq88ctptkabskgtc011or1qkug23q -- 10:55:54.770 INFO [16301]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:55:54.770 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:55:54.781 INFO [16301]: COREGRADE is stopping... -- 10:55:54.781 DEBUG [16301]: Closing database connection -- 10:55:54.781 SQL [16301]: pgsql_close() -- 10:55:54.778 DEBUG [16305]: Database connection successful -- 10:55:54.778 INFO [16305]: _SERVER found -- 10:55:54.778 INFO [16305]: REMOTE_ADDR = 192.168.1.13 -- 10:55:54.778 INFO [16305]: SERVER_NAME = oameye.works.coregrade.com -- 10:55:54.778 INFO [16305]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=em9qq88ctptkabskgtc011or1qkug23q -- 10:55:54.778 INFO [16305]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:55:54.778 INFO [16305]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:55:54.789 INFO [16305]: COREGRADE is stopping... -- 10:55:54.789 DEBUG [16305]: Closing database connection -- 10:55:54.789 SQL [16305]: pgsql_close() -- 10:56:08.392 INFO [16302]: COREGRADE is starting... -- 10:56:08.393 INFO [16302]: Version from config: 1.0 -- 10:56:08.393 DEBUG [16302]: Connecting to database... -- 10:56:08.393 DEBUG [16302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:56:08.393 SQL [16302]: pgsql_db_connect() -- 10:56:08.397 DEBUG [16302]: Database connection successful -- 10:56:08.397 INFO [16302]: _SERVER found -- 10:56:08.397 INFO [16302]: REMOTE_ADDR = 192.168.1.13 -- 10:56:08.397 INFO [16302]: SERVER_NAME = oameye.works.coregrade.com -- 10:56:08.397 INFO [16302]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=em9qq88ctptkabskgtc011or1qkug23q -- 10:56:08.397 INFO [16302]: QUERY_STRING = /member -- 10:56:08.397 INFO [16302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:56:08.432 INFO [16302]: COREGRADE is stopping... -- 10:56:08.432 DEBUG [16302]: Closing database connection -- 10:56:08.432 SQL [16302]: pgsql_close() -- 10:56:08.684 INFO [16302]: COREGRADE is starting... -- 10:56:08.684 INFO [16302]: Version from config: 1.0 -- 10:56:08.684 DEBUG [16302]: Connecting to database... -- 10:56:08.684 DEBUG [16302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:56:08.684 SQL [16302]: pgsql_db_connect() -- 10:56:08.688 DEBUG [16302]: Database connection successful -- 10:56:08.688 INFO [16302]: _SERVER found -- 10:56:08.688 INFO [16302]: REMOTE_ADDR = 192.168.1.13 -- 10:56:08.688 INFO [16302]: SERVER_NAME = oameye.works.coregrade.com -- 10:56:08.688 INFO [16302]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=em9qq88ctptkabskgtc011or1qkug23q -- 10:56:08.688 INFO [16302]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:56:08.688 INFO [16302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:56:08.700 INFO [16302]: COREGRADE is stopping... -- 10:56:08.700 DEBUG [16302]: Closing database connection -- 10:56:08.700 SQL [16302]: pgsql_close() -- 10:56:08.702 INFO [17314]: COREGRADE is starting... -- 10:56:08.702 INFO [17314]: Version from config: 1.0 -- 10:56:08.702 DEBUG [17314]: Connecting to database... -- 10:56:08.702 DEBUG [17314]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:56:08.702 SQL [17314]: pgsql_db_connect() -- 10:56:08.706 DEBUG [17314]: Database connection successful -- 10:56:08.706 INFO [17314]: _SERVER found -- 10:56:08.706 INFO [17314]: REMOTE_ADDR = 192.168.1.13 -- 10:56:08.706 INFO [17314]: SERVER_NAME = oameye.works.coregrade.com -- 10:56:08.706 INFO [17314]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=em9qq88ctptkabskgtc011or1qkug23q -- 10:56:08.706 INFO [17314]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:56:08.706 INFO [17314]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:56:08.718 INFO [17314]: COREGRADE is stopping... -- 10:56:08.718 DEBUG [17314]: Closing database connection -- 10:56:08.718 SQL [17314]: pgsql_close() -- 10:56:18.610 INFO [16304]: COREGRADE is starting... -- 10:56:18.610 INFO [16304]: Version from config: 1.0 -- 10:56:18.610 DEBUG [16304]: Connecting to database... -- 10:56:18.610 DEBUG [16304]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:56:18.610 SQL [16304]: pgsql_db_connect() -- 10:56:18.614 DEBUG [16304]: Database connection successful -- 10:56:18.614 INFO [16304]: _SERVER found -- 10:56:18.614 INFO [16304]: REMOTE_ADDR = 192.168.1.13 -- 10:56:18.614 INFO [16304]: SERVER_NAME = oameye.works.coregrade.com -- 10:56:18.614 INFO [16304]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=em9qq88ctptkabskgtc011or1qkug23q -- 10:56:18.614 INFO [16304]: QUERY_STRING = /member/page -- 10:56:18.614 INFO [16304]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:56:18.654 INFO [16304]: COREGRADE is stopping... -- 10:56:18.654 DEBUG [16304]: Closing database connection -- 10:56:18.654 SQL [16304]: pgsql_close() -- 10:56:18.902 INFO [16304]: COREGRADE is starting... -- 10:56:18.902 INFO [16304]: Version from config: 1.0 -- 10:56:18.902 DEBUG [16304]: Connecting to database... -- 10:56:18.902 DEBUG [16304]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:56:18.902 SQL [16304]: pgsql_db_connect() -- 10:56:18.918 INFO [17316]: COREGRADE is starting... -- 10:56:18.918 INFO [17316]: Version from config: 1.0 -- 10:56:18.918 DEBUG [17316]: Connecting to database... -- 10:56:18.918 DEBUG [17316]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:56:18.919 SQL [17316]: pgsql_db_connect() -- 10:56:18.908 DEBUG [16304]: Database connection successful -- 10:56:18.908 INFO [16304]: _SERVER found -- 10:56:18.908 INFO [16304]: REMOTE_ADDR = 192.168.1.13 -- 10:56:18.908 INFO [16304]: SERVER_NAME = oameye.works.coregrade.com -- 10:56:18.908 INFO [16304]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=em9qq88ctptkabskgtc011or1qkug23q -- 10:56:18.908 INFO [16304]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:56:18.908 INFO [16304]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:56:18.920 INFO [16304]: COREGRADE is stopping... -- 10:56:18.920 DEBUG [16304]: Closing database connection -- 10:56:18.920 SQL [16304]: pgsql_close() -- 10:56:18.931 DEBUG [17316]: Database connection successful -- 10:56:18.931 INFO [17316]: _SERVER found -- 10:56:18.931 INFO [17316]: REMOTE_ADDR = 192.168.1.13 -- 10:56:18.931 INFO [17316]: SERVER_NAME = oameye.works.coregrade.com -- 10:56:18.931 INFO [17316]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=em9qq88ctptkabskgtc011or1qkug23q -- 10:56:18.931 INFO [17316]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:56:18.931 INFO [17316]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:56:18.942 INFO [17316]: COREGRADE is stopping... -- 10:56:18.942 DEBUG [17316]: Closing database connection -- 10:56:18.942 SQL [17316]: pgsql_close() -- 11:04:32.238 INFO [17315]: COREGRADE is starting... -- 11:04:32.238 INFO [17315]: Version from config: 1.0 -- 11:04:32.238 DEBUG [17315]: Connecting to database... -- 11:04:32.238 DEBUG [17315]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:04:32.238 SQL [17315]: pgsql_db_connect() -- 11:04:32.242 DEBUG [17315]: Database connection successful -- 11:04:32.242 INFO [17315]: _SERVER found -- 11:04:32.242 INFO [17315]: REMOTE_ADDR = 192.168.1.13 -- 11:04:32.242 INFO [17315]: SERVER_NAME = oameye.works.coregrade.com -- 11:04:32.242 INFO [17315]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=3m28m3mvpce9ci6ab2nbnhkgpcf25k16 -- 11:04:32.242 INFO [17315]: QUERY_STRING = /member/configure -- 11:04:32.242 INFO [17315]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:04:32.278 INFO [17315]: COREGRADE is stopping... -- 11:04:32.278 DEBUG [17315]: Closing database connection -- 11:04:32.278 SQL [17315]: pgsql_close() -- 11:04:32.438 INFO [17315]: COREGRADE is starting... -- 11:04:32.438 INFO [17315]: Version from config: 1.0 -- 11:04:32.438 DEBUG [17315]: Connecting to database... -- 11:04:32.438 DEBUG [17315]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:04:32.438 SQL [17315]: pgsql_db_connect() -- 11:04:32.442 DEBUG [17315]: Database connection successful -- 11:04:32.442 INFO [17315]: _SERVER found -- 11:04:32.442 INFO [17315]: REMOTE_ADDR = 192.168.1.13 -- 11:04:32.442 INFO [17315]: SERVER_NAME = oameye.works.coregrade.com -- 11:04:32.442 INFO [17315]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=9486m72frvghqkrdd8934aip9kk7ces1 -- 11:04:32.442 INFO [17315]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:04:32.442 INFO [17315]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:04:32.453 INFO [17315]: COREGRADE is stopping... -- 11:04:32.453 DEBUG [17315]: Closing database connection -- 11:04:32.453 SQL [17315]: pgsql_close() -- 11:04:32.594 INFO [17315]: COREGRADE is starting... -- 11:04:32.594 INFO [17315]: Version from config: 1.0 -- 11:04:32.594 DEBUG [17315]: Connecting to database... -- 11:04:32.594 DEBUG [17315]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:04:32.594 SQL [17315]: pgsql_db_connect() -- 11:04:32.598 DEBUG [17315]: Database connection successful -- 11:04:32.598 INFO [17315]: _SERVER found -- 11:04:32.598 INFO [17315]: REMOTE_ADDR = 192.168.1.13 -- 11:04:32.598 INFO [17315]: SERVER_NAME = oameye.works.coregrade.com -- 11:04:32.598 INFO [17315]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=9486m72frvghqkrdd8934aip9kk7ces1 -- 11:04:32.598 INFO [17315]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:04:32.598 INFO [17315]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:04:32.609 INFO [17315]: COREGRADE is stopping... -- 11:04:32.609 DEBUG [17315]: Closing database connection -- 11:04:32.609 SQL [17315]: pgsql_close() -- 11:12:41.491 INFO [17310]: COREGRADE is starting... -- 11:12:41.491 INFO [17310]: Version from config: 1.0 -- 11:12:41.491 DEBUG [17310]: Connecting to database... -- 11:12:41.491 DEBUG [17310]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:12:41.491 SQL [17310]: pgsql_db_connect() -- 11:12:41.495 DEBUG [17310]: Database connection successful -- 11:12:41.495 INFO [17310]: _SERVER found -- 11:12:41.495 INFO [17310]: REMOTE_ADDR = 192.168.1.13 -- 11:12:41.495 INFO [17310]: SERVER_NAME = oameye.works.coregrade.com -- 11:12:41.495 INFO [17310]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=em9qq88ctptkabskgtc011or1qkug23q -- 11:12:41.495 INFO [17310]: QUERY_STRING = /auth -- 11:12:41.495 INFO [17310]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:12:41.528 INFO [17310]: COREGRADE is stopping... -- 11:12:41.528 DEBUG [17310]: Closing database connection -- 11:12:41.528 SQL [17310]: pgsql_close() -- 11:12:41.803 INFO [17310]: COREGRADE is starting... -- 11:12:41.804 INFO [17310]: Version from config: 1.0 -- 11:12:41.804 DEBUG [17310]: Connecting to database... -- 11:12:41.804 DEBUG [17310]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:12:41.804 SQL [17310]: pgsql_db_connect() -- 11:12:41.808 DEBUG [17310]: Database connection successful -- 11:12:41.808 INFO [17310]: _SERVER found -- 11:12:41.808 INFO [17310]: REMOTE_ADDR = 192.168.1.13 -- 11:12:41.808 INFO [17310]: SERVER_NAME = oameye.works.coregrade.com -- 11:12:41.808 INFO [17310]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tmamtvjj0s5b7k4f916389g3r6jgvhoj -- 11:12:41.808 INFO [17310]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:12:41.808 INFO [17310]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:12:41.819 INFO [17310]: COREGRADE is stopping... -- 11:12:41.819 DEBUG [17310]: Closing database connection -- 11:12:41.819 SQL [17310]: pgsql_close() -- 11:12:41.924 INFO [17310]: COREGRADE is starting... -- 11:12:41.925 INFO [17310]: Version from config: 1.0 -- 11:12:41.925 DEBUG [17310]: Connecting to database... -- 11:12:41.925 DEBUG [17310]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:12:41.925 SQL [17310]: pgsql_db_connect() -- 11:12:41.928 DEBUG [17310]: Database connection successful -- 11:12:41.928 INFO [17310]: _SERVER found -- 11:12:41.928 INFO [17310]: REMOTE_ADDR = 192.168.1.13 -- 11:12:41.928 INFO [17310]: SERVER_NAME = oameye.works.coregrade.com -- 11:12:41.928 INFO [17310]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tmamtvjj0s5b7k4f916389g3r6jgvhoj -- 11:12:41.928 INFO [17310]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:12:41.928 INFO [17310]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:12:41.939 INFO [17310]: COREGRADE is stopping... -- 11:12:41.939 DEBUG [17310]: Closing database connection -- 11:12:41.939 SQL [17310]: pgsql_close() -- 11:16:19.249 INFO [17313]: COREGRADE is starting... -- 11:16:19.249 INFO [17313]: Version from config: 1.0 -- 11:16:19.249 DEBUG [17313]: Connecting to database... -- 11:16:19.249 DEBUG [17313]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:16:19.249 SQL [17313]: pgsql_db_connect() -- 11:16:19.253 DEBUG [17313]: Database connection successful -- 11:16:19.253 INFO [17313]: _SERVER found -- 11:16:19.253 INFO [17313]: REMOTE_ADDR = 192.168.1.13 -- 11:16:19.253 INFO [17313]: SERVER_NAME = oameye.works.coregrade.com -- 11:16:19.253 INFO [17313]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tmamtvjj0s5b7k4f916389g3r6jgvhoj -- 11:16:19.253 INFO [17313]: QUERY_STRING = /auth -- 11:16:19.253 INFO [17313]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:16:19.285 INFO [17313]: COREGRADE is stopping... -- 11:16:19.286 DEBUG [17313]: Closing database connection -- 11:16:19.286 SQL [17313]: pgsql_close() -- 11:16:19.604 INFO [17313]: COREGRADE is starting... -- 11:16:19.604 INFO [17313]: Version from config: 1.0 -- 11:16:19.604 DEBUG [17313]: Connecting to database... -- 11:16:19.604 DEBUG [17313]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:16:19.604 SQL [17313]: pgsql_db_connect() -- 11:16:19.608 DEBUG [17313]: Database connection successful -- 11:16:19.608 INFO [17313]: _SERVER found -- 11:16:19.608 INFO [17313]: REMOTE_ADDR = 192.168.1.13 -- 11:16:19.608 INFO [17313]: SERVER_NAME = oameye.works.coregrade.com -- 11:16:19.608 INFO [17313]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tmamtvjj0s5b7k4f916389g3r6jgvhoj -- 11:16:19.608 INFO [17313]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:16:19.608 INFO [17313]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:16:19.619 INFO [17313]: COREGRADE is stopping... -- 11:16:19.619 DEBUG [17313]: Closing database connection -- 11:16:19.619 SQL [17313]: pgsql_close() -- 11:16:19.915 INFO [17313]: COREGRADE is starting... -- 11:16:19.915 INFO [17313]: Version from config: 1.0 -- 11:16:19.915 DEBUG [17313]: Connecting to database... -- 11:16:19.915 DEBUG [17313]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:16:19.915 SQL [17313]: pgsql_db_connect() -- 11:16:19.919 DEBUG [17313]: Database connection successful -- 11:16:19.919 INFO [17313]: _SERVER found -- 11:16:19.919 INFO [17313]: REMOTE_ADDR = 192.168.1.13 -- 11:16:19.919 INFO [17313]: SERVER_NAME = oameye.works.coregrade.com -- 11:16:19.919 INFO [17313]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tmamtvjj0s5b7k4f916389g3r6jgvhoj -- 11:16:19.919 INFO [17313]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:16:19.919 INFO [17313]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:16:19.930 INFO [17313]: COREGRADE is stopping... -- 11:16:19.930 DEBUG [17313]: Closing database connection -- 11:16:19.930 SQL [17313]: pgsql_close() -- 11:24:33.337 INFO [16303]: COREGRADE is starting... -- 11:24:33.338 INFO [16303]: Version from config: 1.0 -- 11:24:33.338 DEBUG [16303]: Connecting to database... -- 11:24:33.338 DEBUG [16303]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:24:33.338 SQL [16303]: pgsql_db_connect() -- 11:24:33.342 DEBUG [16303]: Database connection successful -- 11:24:33.342 INFO [16303]: _SERVER found -- 11:24:33.342 INFO [16303]: REMOTE_ADDR = 192.168.1.13 -- 11:24:33.342 INFO [16303]: SERVER_NAME = oameye.works.coregrade.com -- 11:24:33.342 INFO [16303]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=9486m72frvghqkrdd8934aip9kk7ces1 -- 11:24:33.342 INFO [16303]: QUERY_STRING = /auth -- 11:24:33.342 INFO [16303]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:24:33.375 INFO [16303]: COREGRADE is stopping... -- 11:24:33.375 DEBUG [16303]: Closing database connection -- 11:24:33.375 SQL [16303]: pgsql_close() -- 11:24:33.530 INFO [16303]: COREGRADE is starting... -- 11:24:33.530 INFO [16303]: Version from config: 1.0 -- 11:24:33.530 DEBUG [16303]: Connecting to database... -- 11:24:33.530 DEBUG [16303]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:24:33.530 SQL [16303]: pgsql_db_connect() -- 11:24:33.534 DEBUG [16303]: Database connection successful -- 11:24:33.534 INFO [16303]: _SERVER found -- 11:24:33.534 INFO [16303]: REMOTE_ADDR = 192.168.1.13 -- 11:24:33.534 INFO [16303]: SERVER_NAME = oameye.works.coregrade.com -- 11:24:33.534 INFO [16303]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=e250fkktsh6htfrudmp96g6gv4ggp1le -- 11:24:33.534 INFO [16303]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:24:33.534 INFO [16303]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:24:33.545 INFO [16303]: COREGRADE is stopping... -- 11:24:33.545 DEBUG [16303]: Closing database connection -- 11:24:33.545 SQL [16303]: pgsql_close() -- 11:24:33.558 INFO [16303]: COREGRADE is starting... -- 11:24:33.558 INFO [16303]: Version from config: 1.0 -- 11:24:33.558 DEBUG [16303]: Connecting to database... -- 11:24:33.558 DEBUG [16303]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:24:33.558 SQL [16303]: pgsql_db_connect() -- 11:24:33.562 DEBUG [16303]: Database connection successful -- 11:24:33.562 INFO [16303]: _SERVER found -- 11:24:33.562 INFO [16303]: REMOTE_ADDR = 192.168.1.13 -- 11:24:33.562 INFO [16303]: SERVER_NAME = oameye.works.coregrade.com -- 11:24:33.562 INFO [16303]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=e250fkktsh6htfrudmp96g6gv4ggp1le -- 11:24:33.562 INFO [16303]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:24:33.562 INFO [16303]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:24:33.573 INFO [16303]: COREGRADE is stopping... -- 11:24:33.573 DEBUG [16303]: Closing database connection -- 11:24:33.573 SQL [16303]: pgsql_close() -- 11:41:15.971 INFO [16301]: COREGRADE is starting... -- 11:41:15.971 INFO [16301]: Version from config: 1.0 -- 11:41:15.971 DEBUG [16301]: Connecting to database... -- 11:41:15.971 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:41:15.971 SQL [16301]: pgsql_db_connect() -- 11:41:16.008 INFO [16301]: COREGRADE is starting... -- 11:41:16.009 INFO [16301]: Version from config: 1.0 -- 11:41:16.009 DEBUG [16301]: Connecting to database... -- 11:41:16.009 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:41:16.009 SQL [16301]: pgsql_db_connect() -- 11:41:16.013 DEBUG [16301]: Database connection successful -- 11:41:16.013 INFO [16301]: _SERVER found -- 11:41:16.013 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 11:41:16.013 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 11:41:16.013 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tmamtvjj0s5b7k4f916389g3r6jgvhoj -- 11:41:16.013 INFO [16301]: QUERY_STRING = -- 11:41:16.013 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:41:16.013 INFO [16301]: SystemStatus()09-09-********~************ -- 11:41:16.013 INFO [16301]: long coregrade_api_main(CVars in, CVars &out) -- 11:41:16.013 INFO [16301]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 11:41:16.013 INFO [16301]: account calls -- 11:41:16.013 INFO [16301]: account_calls() -- 11:41:16.013 INFO [16301]: LoginCoreGradeAccount() -- 11:41:16.013 FLOG_MAX [16301]: REQ_STRING(username) -- 11:41:16.013 FLOG_MAX [16301]: REQ_STRING(password) -- 11:41:16.013 FLOG_MAX [16301]: REQ_STRING(sessionid) -- 11:41:16.013 FLOG_MAX [16301]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:41:16.013 SQL [16301]: pgsql_query() -- 11:41:16.013 SQL [16301]: About to run query: -- 11:41:16.013 SQL [16301]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 11:41:16.017 SQL [16301]: Found rows: 1 -- 11:41:16.017 FLOG_MAX [16301]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=15 -- 11:41:16.017 INFO [16301]: long SessionCheck(long uid, const char *sessionid, int create ) -- 11:41:16.017 SQL [16301]: pgsql_exec() -- 11:41:16.017 SQL [16301]: About to run query: -- 11:41:16.017 SQL [16301]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 11:41:16.019 SQL [16301]: PQcmdTuples: 1 -- 11:41:16.019 SQL [16301]: Affected rows: 1 -- 11:41:16.019 SQL [16301]: pgsql_exec() -- 11:41:16.019 SQL [16301]: About to run query: -- 11:41:16.019 SQL [16301]: DELETE FROM members_session WHERE member_id=7 -- 11:41:16.019 SQL [16301]: PQcmdTuples: 0 -- 11:41:16.019 SQL [16301]: Affected rows: 0 -- 11:41:16.019 SQL [16301]: pgsql_query() -- 11:41:16.019 SQL [16301]: About to run query: -- 11:41:16.019 SQL [16301]: SELECT * FROM members_session WHERE member_id=7 AND session<>'CDB24E254F6FAAF6BF9DCC0CDB6B346C' -- 11:41:16.020 SQL [16301]: Found rows: 0 -- 11:41:16.020 SQL [16301]: Found rows: 0 -- 11:41:16.020 FLOG_MAX [16301]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:41:16.020 SQL [16301]: pgsql_query() -- 11:41:16.020 SQL [16301]: About to run query: -- 11:41:16.020 SQL [16301]: SELECT * FROM members_session WHERE member_id=7 AND session='CDB24E254F6FAAF6BF9DCC0CDB6B346C' -- 11:41:16.020 SQL [16301]: Found rows: 0 -- 11:41:16.020 SQL [16301]: Found rows: 0 -- 11:41:16.020 FLOG_MAX [16301]: insert_db_record() -- 11:41:16.020 SQL [16301]: pgsql_exec() -- 11:41:16.020 SQL [16301]: About to run query: -- 11:41:16.020 SQL [16301]: INSERT INTO members_session (member_id,session) VALUES ('7','CDB24E254F6FAAF6BF9DCC0CDB6B346C') -- 11:41:16.022 SQL [16301]: PQcmdTuples: 1 -- 11:41:16.022 SQL [16301]: Affected rows: 1 -- 11:41:16.022 FLOG_MAX [16301]: SELECT currval('members_session_id_seq') -- 11:41:16.022 SQL [16301]: pgsql_query() -- 11:41:16.022 SQL [16301]: About to run query: -- 11:41:16.022 SQL [16301]: SELECT currval('members_session_id_seq') -- 11:41:16.022 SQL [16301]: Found rows: 1 -- 11:41:16.022 INFO [16301]: CreateDefaultPage() -- 11:41:16.022 FLOG_MAX [16301]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:41:16.022 SQL [16301]: pgsql_query() -- 11:41:16.022 SQL [16301]: About to run query: -- 11:41:16.022 SQL [16301]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 11:41:16.022 SQL [16301]: Found rows: 1 -- 11:41:16.022 FLOG_MAX [16301]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 11:41:16.022 SQL [16301]: pgsql_query() -- 11:41:16.022 SQL [16301]: About to run query: -- 11:41:16.022 SQL [16301]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 11:41:16.023 SQL [16301]: Found rows: 1 -- 11:41:16.023 INFO [16301]: /CreateDefaultPage() -- 11:41:16.023 INFO [16301]: /LoginCoreGradeAccount() -- 11:41:16.023 INFO [16301]: RET: added=2020-02-05 09:42:12.816064 -- 11:41:16.023 INFO [16301]: RET: email=tokslaw@chiefsoft.com -- 11:41:16.023 INFO [16301]: RET: firstname=Tokunbo -- 11:41:16.023 INFO [16301]: RET: id=7 -- 11:41:16.023 INFO [16301]: RET: last_login= -- 11:41:16.023 INFO [16301]: RET: lastname=Lawal -- 11:41:16.023 INFO [16301]: RET: loc=192.168.1.13 -- 11:41:16.023 INFO [16301]: RET: member_id=7 -- 11:41:16.023 INFO [16301]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 11:41:16.023 INFO [16301]: RET: phone= -- 11:41:16.023 INFO [16301]: RET: pid= -- 11:41:16.023 INFO [16301]: RET: result=YES I GET TO BACK END -- 11:41:16.023 INFO [16301]: RET: sessionid=CDB24E254F6FAAF6BF9DCC0CDB6B346C -- 11:41:16.023 INFO [16301]: RET: status=1 -- 11:41:16.023 INFO [16301]: RET: stauts=OK -- 11:41:16.023 INFO [16301]: RET: username=tokslaw@chiefsoft.com -- 11:41:16.023 INFO [16301]: RET: verified= -- 11:41:16.025 INFO [16301]: COREGRADE is stopping... -- 11:41:16.025 DEBUG [16301]: Closing database connection -- 11:41:16.025 SQL [16301]: pgsql_close() -- 11:41:15.976 DEBUG [16301]: Database connection successful -- 11:41:15.976 INFO [16301]: _SERVER found -- 11:41:15.976 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 11:41:15.976 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 11:41:15.976 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tmamtvjj0s5b7k4f916389g3r6jgvhoj -- 11:41:15.976 INFO [16301]: QUERY_STRING = /auth -- 11:41:15.976 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:41:16.025 INFO [16301]: COREGRADE is stopping... -- 11:41:16.025 DEBUG [16301]: Closing database connection -- 11:41:16.025 SQL [16301]: pgsql_close() -- 11:41:16.053 INFO [16301]: COREGRADE is starting... -- 11:41:16.053 INFO [16301]: Version from config: 1.0 -- 11:41:16.053 DEBUG [16301]: Connecting to database... -- 11:41:16.053 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:41:16.053 SQL [16301]: pgsql_db_connect() -- 11:41:16.057 DEBUG [16301]: Database connection successful -- 11:41:16.057 INFO [16301]: _SERVER found -- 11:41:16.057 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 11:41:16.057 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 11:41:16.057 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=916hatonjsio5vo1arhha3iafgiesll5 -- 11:41:16.057 INFO [16301]: QUERY_STRING = /member/index -- 11:41:16.057 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:41:16.092 INFO [16301]: COREGRADE is stopping... -- 11:41:16.092 DEBUG [16301]: Closing database connection -- 11:41:16.092 SQL [16301]: pgsql_close() -- 11:41:16.427 INFO [16301]: COREGRADE is starting... -- 11:41:16.427 INFO [16301]: Version from config: 1.0 -- 11:41:16.427 DEBUG [16301]: Connecting to database... -- 11:41:16.427 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:41:16.427 SQL [16301]: pgsql_db_connect() -- 11:41:16.431 DEBUG [16301]: Database connection successful -- 11:41:16.431 INFO [16301]: _SERVER found -- 11:41:16.431 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 11:41:16.431 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 11:41:16.431 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=916hatonjsio5vo1arhha3iafgiesll5 -- 11:41:16.431 INFO [16301]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:41:16.431 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:41:16.442 INFO [16301]: COREGRADE is stopping... -- 11:41:16.442 DEBUG [16301]: Closing database connection -- 11:41:16.442 SQL [16301]: pgsql_close() -- 11:41:16.447 INFO [16305]: COREGRADE is starting... -- 11:41:16.447 INFO [16305]: Version from config: 1.0 -- 11:41:16.447 DEBUG [16305]: Connecting to database... -- 11:41:16.447 DEBUG [16305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:41:16.447 SQL [16305]: pgsql_db_connect() -- 11:41:16.451 DEBUG [16305]: Database connection successful -- 11:41:16.451 INFO [16305]: _SERVER found -- 11:41:16.451 INFO [16305]: REMOTE_ADDR = 192.168.1.13 -- 11:41:16.451 INFO [16305]: SERVER_NAME = oameye.works.coregrade.com -- 11:41:16.451 INFO [16305]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=916hatonjsio5vo1arhha3iafgiesll5 -- 11:41:16.451 INFO [16305]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:41:16.451 INFO [16305]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:41:16.463 INFO [16305]: COREGRADE is stopping... -- 11:41:16.463 DEBUG [16305]: Closing database connection -- 11:41:16.463 SQL [16305]: pgsql_close() -- 11:41:17.699 INFO [16301]: COREGRADE is starting... -- 11:41:17.699 INFO [16301]: Version from config: 1.0 -- 11:41:17.699 DEBUG [16301]: Connecting to database... -- 11:41:17.699 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:41:17.699 SQL [16301]: pgsql_db_connect() -- 11:41:17.703 DEBUG [16301]: Database connection successful -- 11:41:17.703 INFO [16301]: _SERVER found -- 11:41:17.703 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 11:41:17.703 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 11:41:17.703 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=916hatonjsio5vo1arhha3iafgiesll5 -- 11:41:17.703 INFO [16301]: QUERY_STRING = /member/page -- 11:41:17.703 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:41:17.740 INFO [16301]: COREGRADE is stopping... -- 11:41:17.740 DEBUG [16301]: Closing database connection -- 11:41:17.740 SQL [16301]: pgsql_close() -- 11:41:17.918 INFO [16301]: COREGRADE is starting... -- 11:41:17.918 INFO [16301]: Version from config: 1.0 -- 11:41:17.918 DEBUG [16301]: Connecting to database... -- 11:41:17.918 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:41:17.918 SQL [16301]: pgsql_db_connect() -- 11:41:17.922 DEBUG [16301]: Database connection successful -- 11:41:17.922 INFO [16301]: _SERVER found -- 11:41:17.922 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 11:41:17.922 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 11:41:17.922 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=916hatonjsio5vo1arhha3iafgiesll5 -- 11:41:17.922 INFO [16301]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:41:17.922 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:41:17.933 INFO [16301]: COREGRADE is stopping... -- 11:41:17.933 DEBUG [16301]: Closing database connection -- 11:41:17.933 SQL [16301]: pgsql_close() -- 11:41:17.935 INFO [16302]: COREGRADE is starting... -- 11:41:17.935 INFO [16302]: Version from config: 1.0 -- 11:41:17.935 DEBUG [16302]: Connecting to database... -- 11:41:17.935 DEBUG [16302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:41:17.935 SQL [16302]: pgsql_db_connect() -- 11:41:17.939 DEBUG [16302]: Database connection successful -- 11:41:17.939 INFO [16302]: _SERVER found -- 11:41:17.939 INFO [16302]: REMOTE_ADDR = 192.168.1.13 -- 11:41:17.939 INFO [16302]: SERVER_NAME = oameye.works.coregrade.com -- 11:41:17.939 INFO [16302]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=916hatonjsio5vo1arhha3iafgiesll5 -- 11:41:17.939 INFO [16302]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:41:17.939 INFO [16302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:41:17.951 INFO [16302]: COREGRADE is stopping... -- 11:41:17.951 DEBUG [16302]: Closing database connection -- 11:41:17.951 SQL [16302]: pgsql_close() -- 12:01:18.388 INFO [17314]: COREGRADE is starting... -- 12:01:18.388 INFO [17314]: Version from config: 1.0 -- 12:01:18.388 DEBUG [17314]: Connecting to database... -- 12:01:18.388 DEBUG [17314]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:01:18.388 SQL [17314]: pgsql_db_connect() -- 12:01:18.392 DEBUG [17314]: Database connection successful -- 12:01:18.392 INFO [17314]: _SERVER found -- 12:01:18.392 INFO [17314]: REMOTE_ADDR = 192.168.1.13 -- 12:01:18.392 INFO [17314]: SERVER_NAME = oameye.works.coregrade.com -- 12:01:18.392 INFO [17314]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=916hatonjsio5vo1arhha3iafgiesll5 -- 12:01:18.392 INFO [17314]: QUERY_STRING = /auth -- 12:01:18.392 INFO [17314]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:01:18.426 INFO [17314]: COREGRADE is stopping... -- 12:01:18.426 DEBUG [17314]: Closing database connection -- 12:01:18.426 SQL [17314]: pgsql_close() -- 12:01:18.741 INFO [17314]: COREGRADE is starting... -- 12:01:18.741 INFO [17314]: Version from config: 1.0 -- 12:01:18.741 DEBUG [17314]: Connecting to database... -- 12:01:18.741 DEBUG [17314]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:01:18.741 SQL [17314]: pgsql_db_connect() -- 12:01:18.745 DEBUG [17314]: Database connection successful -- 12:01:18.745 INFO [17314]: _SERVER found -- 12:01:18.745 INFO [17314]: REMOTE_ADDR = 192.168.1.13 -- 12:01:18.745 INFO [17314]: SERVER_NAME = oameye.works.coregrade.com -- 12:01:18.745 INFO [17314]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlc5utdqcog6v8cnq3ddl03aj637t5sk -- 12:01:18.745 INFO [17314]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 12:01:18.745 INFO [17314]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:01:18.756 INFO [17314]: COREGRADE is stopping... -- 12:01:18.756 DEBUG [17314]: Closing database connection -- 12:01:18.756 SQL [17314]: pgsql_close() -- 12:01:18.951 INFO [17314]: COREGRADE is starting... -- 12:01:18.951 INFO [17314]: Version from config: 1.0 -- 12:01:18.951 DEBUG [17314]: Connecting to database... -- 12:01:18.951 DEBUG [17314]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:01:18.951 SQL [17314]: pgsql_db_connect() -- 12:01:18.955 DEBUG [17314]: Database connection successful -- 12:01:18.955 INFO [17314]: _SERVER found -- 12:01:18.955 INFO [17314]: REMOTE_ADDR = 192.168.1.13 -- 12:01:18.955 INFO [17314]: SERVER_NAME = oameye.works.coregrade.com -- 12:01:18.955 INFO [17314]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlc5utdqcog6v8cnq3ddl03aj637t5sk -- 12:01:18.955 INFO [17314]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:01:18.955 INFO [17314]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:01:18.966 INFO [17314]: COREGRADE is stopping... -- 12:01:18.966 DEBUG [17314]: Closing database connection -- 12:01:18.966 SQL [17314]: pgsql_close() -- 12:06:14.993 INFO [16304]: COREGRADE is starting... -- 12:06:14.993 INFO [16304]: Version from config: 1.0 -- 12:06:14.993 DEBUG [16304]: Connecting to database... -- 12:06:14.993 DEBUG [16304]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:06:14.993 SQL [16304]: pgsql_db_connect() -- 12:06:15.032 INFO [16304]: COREGRADE is starting... -- 12:06:15.032 INFO [16304]: Version from config: 1.0 -- 12:06:15.032 DEBUG [16304]: Connecting to database... -- 12:06:15.032 DEBUG [16304]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:06:15.032 SQL [16304]: pgsql_db_connect() -- 12:06:15.036 DEBUG [16304]: Database connection successful -- 12:06:15.036 INFO [16304]: _SERVER found -- 12:06:15.036 INFO [16304]: REMOTE_ADDR = 192.168.1.13 -- 12:06:15.036 INFO [16304]: SERVER_NAME = oameye.works.coregrade.com -- 12:06:15.036 INFO [16304]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlc5utdqcog6v8cnq3ddl03aj637t5sk -- 12:06:15.036 INFO [16304]: QUERY_STRING = -- 12:06:15.036 INFO [16304]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:06:15.036 INFO [16304]: SystemStatus()09-09-********~************ -- 12:06:15.036 INFO [16304]: long coregrade_api_main(CVars in, CVars &out) -- 12:06:15.036 INFO [16304]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 12:06:15.036 INFO [16304]: account calls -- 12:06:15.036 INFO [16304]: account_calls() -- 12:06:15.036 INFO [16304]: LoginCoreGradeAccount() -- 12:06:15.036 FLOG_MAX [16304]: REQ_STRING(username) -- 12:06:15.036 FLOG_MAX [16304]: REQ_STRING(password) -- 12:06:15.036 FLOG_MAX [16304]: REQ_STRING(sessionid) -- 12:06:15.036 FLOG_MAX [16304]: long load_db_record( CVars &rec, const char * query, ... ) -- 12:06:15.036 SQL [16304]: pgsql_query() -- 12:06:15.036 SQL [16304]: About to run query: -- 12:06:15.036 SQL [16304]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 12:06:15.040 SQL [16304]: Found rows: 1 -- 12:06:15.040 FLOG_MAX [16304]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=15 -- 12:06:15.040 INFO [16304]: long SessionCheck(long uid, const char *sessionid, int create ) -- 12:06:15.040 SQL [16304]: pgsql_exec() -- 12:06:15.040 SQL [16304]: About to run query: -- 12:06:15.040 SQL [16304]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 12:06:15.040 SQL [16304]: PQcmdTuples: 0 -- 12:06:15.040 SQL [16304]: Affected rows: 0 -- 12:06:15.040 SQL [16304]: pgsql_exec() -- 12:06:15.040 SQL [16304]: About to run query: -- 12:06:15.040 SQL [16304]: DELETE FROM members_session WHERE member_id=7 -- 12:06:15.041 SQL [16304]: PQcmdTuples: 1 -- 12:06:15.041 SQL [16304]: Affected rows: 1 -- 12:06:15.041 SQL [16304]: pgsql_query() -- 12:06:15.041 SQL [16304]: About to run query: -- 12:06:15.041 SQL [16304]: SELECT * FROM members_session WHERE member_id=7 AND session<>'6BEAB5A76FA0905FF5ACE4D91F39DC54' -- 12:06:15.042 SQL [16304]: Found rows: 0 -- 12:06:15.042 SQL [16304]: Found rows: 0 -- 12:06:15.042 FLOG_MAX [16304]: long load_db_record( CVars &rec, const char * query, ... ) -- 12:06:15.042 SQL [16304]: pgsql_query() -- 12:06:15.042 SQL [16304]: About to run query: -- 12:06:15.042 SQL [16304]: SELECT * FROM members_session WHERE member_id=7 AND session='6BEAB5A76FA0905FF5ACE4D91F39DC54' -- 12:06:15.043 SQL [16304]: Found rows: 0 -- 12:06:15.043 SQL [16304]: Found rows: 0 -- 12:06:15.043 FLOG_MAX [16304]: insert_db_record() -- 12:06:15.043 SQL [16304]: pgsql_exec() -- 12:06:15.043 SQL [16304]: About to run query: -- 12:06:15.043 SQL [16304]: INSERT INTO members_session (member_id,session) VALUES ('7','6BEAB5A76FA0905FF5ACE4D91F39DC54') -- 12:06:15.044 SQL [16304]: PQcmdTuples: 1 -- 12:06:15.044 SQL [16304]: Affected rows: 1 -- 12:06:15.044 FLOG_MAX [16304]: SELECT currval('members_session_id_seq') -- 12:06:15.044 SQL [16304]: pgsql_query() -- 12:06:15.044 SQL [16304]: About to run query: -- 12:06:15.044 SQL [16304]: SELECT currval('members_session_id_seq') -- 12:06:15.045 SQL [16304]: Found rows: 1 -- 12:06:15.045 INFO [16304]: CreateDefaultPage() -- 12:06:15.045 FLOG_MAX [16304]: long load_db_record( CVars &rec, const char * query, ... ) -- 12:06:15.045 SQL [16304]: pgsql_query() -- 12:06:15.045 SQL [16304]: About to run query: -- 12:06:15.045 SQL [16304]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 12:06:15.045 SQL [16304]: Found rows: 1 -- 12:06:15.045 FLOG_MAX [16304]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 12:06:15.045 SQL [16304]: pgsql_query() -- 12:06:15.045 SQL [16304]: About to run query: -- 12:06:15.045 SQL [16304]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 12:06:15.046 SQL [16304]: Found rows: 1 -- 12:06:15.046 INFO [16304]: /CreateDefaultPage() -- 12:06:15.046 INFO [16304]: /LoginCoreGradeAccount() -- 12:06:15.046 INFO [16304]: RET: added=2020-02-05 09:42:12.816064 -- 12:06:15.046 INFO [16304]: RET: email=tokslaw@chiefsoft.com -- 12:06:15.046 INFO [16304]: RET: firstname=Tokunbo -- 12:06:15.046 INFO [16304]: RET: id=7 -- 12:06:15.046 INFO [16304]: RET: last_login= -- 12:06:15.046 INFO [16304]: RET: lastname=Lawal -- 12:06:15.046 INFO [16304]: RET: loc=192.168.1.13 -- 12:06:15.046 INFO [16304]: RET: member_id=7 -- 12:06:15.046 INFO [16304]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 12:06:15.046 INFO [16304]: RET: phone= -- 12:06:15.046 INFO [16304]: RET: pid= -- 12:06:15.046 INFO [16304]: RET: result=YES I GET TO BACK END -- 12:06:15.046 INFO [16304]: RET: sessionid=6BEAB5A76FA0905FF5ACE4D91F39DC54 -- 12:06:15.046 INFO [16304]: RET: status=1 -- 12:06:15.046 INFO [16304]: RET: stauts=OK -- 12:06:15.046 INFO [16304]: RET: username=tokslaw@chiefsoft.com -- 12:06:15.046 INFO [16304]: RET: verified= -- 12:06:15.047 INFO [16304]: COREGRADE is stopping... -- 12:06:15.047 DEBUG [16304]: Closing database connection -- 12:06:15.047 SQL [16304]: pgsql_close() -- 12:06:14.997 DEBUG [16304]: Database connection successful -- 12:06:14.997 INFO [16304]: _SERVER found -- 12:06:14.997 INFO [16304]: REMOTE_ADDR = 192.168.1.13 -- 12:06:14.997 INFO [16304]: SERVER_NAME = oameye.works.coregrade.com -- 12:06:14.997 INFO [16304]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlc5utdqcog6v8cnq3ddl03aj637t5sk -- 12:06:14.997 INFO [16304]: QUERY_STRING = /auth -- 12:06:14.997 INFO [16304]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:06:15.048 INFO [16304]: COREGRADE is stopping... -- 12:06:15.048 DEBUG [16304]: Closing database connection -- 12:06:15.048 SQL [16304]: pgsql_close() -- 12:06:15.065 INFO [16304]: COREGRADE is starting... -- 12:06:15.065 INFO [16304]: Version from config: 1.0 -- 12:06:15.065 DEBUG [16304]: Connecting to database... -- 12:06:15.065 DEBUG [16304]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:06:15.065 SQL [16304]: pgsql_db_connect() -- 12:06:15.069 DEBUG [16304]: Database connection successful -- 12:06:15.069 INFO [16304]: _SERVER found -- 12:06:15.069 INFO [16304]: REMOTE_ADDR = 192.168.1.13 -- 12:06:15.069 INFO [16304]: SERVER_NAME = oameye.works.coregrade.com -- 12:06:15.069 INFO [16304]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlc5utdqcog6v8cnq3ddl03aj637t5sk -- 12:06:15.069 INFO [16304]: QUERY_STRING = /member/index -- 12:06:15.069 INFO [16304]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:06:15.103 INFO [16304]: COREGRADE is stopping... -- 12:06:15.103 DEBUG [16304]: Closing database connection -- 12:06:15.103 SQL [16304]: pgsql_close() -- 12:06:15.425 INFO [16304]: COREGRADE is starting... -- 12:06:15.426 INFO [16304]: Version from config: 1.0 -- 12:06:15.426 DEBUG [16304]: Connecting to database... -- 12:06:15.426 DEBUG [16304]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:06:15.426 SQL [16304]: pgsql_db_connect() -- 12:06:15.430 DEBUG [16304]: Database connection successful -- 12:06:15.430 INFO [16304]: _SERVER found -- 12:06:15.430 INFO [16304]: REMOTE_ADDR = 192.168.1.13 -- 12:06:15.430 INFO [16304]: SERVER_NAME = oameye.works.coregrade.com -- 12:06:15.430 INFO [16304]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlc5utdqcog6v8cnq3ddl03aj637t5sk -- 12:06:15.430 INFO [16304]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:06:15.430 INFO [16304]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:06:15.441 INFO [16304]: COREGRADE is stopping... -- 12:06:15.441 DEBUG [16304]: Closing database connection -- 12:06:15.441 SQL [16304]: pgsql_close() -- 12:06:15.448 INFO [17316]: COREGRADE is starting... -- 12:06:15.448 INFO [17316]: Version from config: 1.0 -- 12:06:15.448 DEBUG [17316]: Connecting to database... -- 12:06:15.448 DEBUG [17316]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:06:15.448 SQL [17316]: pgsql_db_connect() -- 12:06:15.452 DEBUG [17316]: Database connection successful -- 12:06:15.452 INFO [17316]: _SERVER found -- 12:06:15.452 INFO [17316]: REMOTE_ADDR = 192.168.1.13 -- 12:06:15.452 INFO [17316]: SERVER_NAME = oameye.works.coregrade.com -- 12:06:15.452 INFO [17316]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlc5utdqcog6v8cnq3ddl03aj637t5sk -- 12:06:15.452 INFO [17316]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:06:15.452 INFO [17316]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:06:15.464 INFO [17316]: COREGRADE is stopping... -- 12:06:15.464 DEBUG [17316]: Closing database connection -- 12:06:15.464 SQL [17316]: pgsql_close() -- 12:06:21.305 INFO [17315]: COREGRADE is starting... -- 12:06:21.306 INFO [17315]: Version from config: 1.0 -- 12:06:21.306 DEBUG [17315]: Connecting to database... -- 12:06:21.306 DEBUG [17315]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:06:21.306 SQL [17315]: pgsql_db_connect() -- 12:06:21.310 DEBUG [17315]: Database connection successful -- 12:06:21.310 INFO [17315]: _SERVER found -- 12:06:21.310 INFO [17315]: REMOTE_ADDR = 192.168.1.13 -- 12:06:21.310 INFO [17315]: SERVER_NAME = oameye.works.coregrade.com -- 12:06:21.310 INFO [17315]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=hlc5utdqcog6v8cnq3ddl03aj637t5sk -- 12:06:21.310 INFO [17315]: QUERY_STRING = /member/configure -- 12:06:21.310 INFO [17315]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:06:21.346 INFO [17315]: COREGRADE is stopping... -- 12:06:21.346 DEBUG [17315]: Closing database connection -- 12:06:21.346 SQL [17315]: pgsql_close() -- 12:06:21.573 INFO [17315]: COREGRADE is starting... -- 12:06:21.574 INFO [17315]: Version from config: 1.0 -- 12:06:21.574 DEBUG [17315]: Connecting to database... -- 12:06:21.574 DEBUG [17315]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:06:21.574 SQL [17315]: pgsql_db_connect() -- 12:06:21.578 DEBUG [17315]: Database connection successful -- 12:06:21.578 INFO [17315]: _SERVER found -- 12:06:21.578 INFO [17315]: REMOTE_ADDR = 192.168.1.13 -- 12:06:21.578 INFO [17315]: SERVER_NAME = oameye.works.coregrade.com -- 12:06:21.578 INFO [17315]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:06:21.578 INFO [17315]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:06:21.578 INFO [17315]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:06:21.589 INFO [17315]: COREGRADE is stopping... -- 12:06:21.589 DEBUG [17315]: Closing database connection -- 12:06:21.589 SQL [17315]: pgsql_close() -- 12:06:21.591 INFO [17310]: COREGRADE is starting... -- 12:06:21.591 INFO [17310]: Version from config: 1.0 -- 12:06:21.591 DEBUG [17310]: Connecting to database... -- 12:06:21.591 DEBUG [17310]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:06:21.591 SQL [17310]: pgsql_db_connect() -- 12:06:21.595 DEBUG [17310]: Database connection successful -- 12:06:21.595 INFO [17310]: _SERVER found -- 12:06:21.595 INFO [17310]: REMOTE_ADDR = 192.168.1.13 -- 12:06:21.595 INFO [17310]: SERVER_NAME = oameye.works.coregrade.com -- 12:06:21.595 INFO [17310]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:06:21.595 INFO [17310]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:06:21.595 INFO [17310]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:06:21.606 INFO [17310]: COREGRADE is stopping... -- 12:06:21.606 DEBUG [17310]: Closing database connection -- 12:06:21.606 SQL [17310]: pgsql_close() -- 12:06:50.110 INFO [17313]: COREGRADE is starting... -- 12:06:50.110 INFO [17313]: Version from config: 1.0 -- 12:06:50.110 DEBUG [17313]: Connecting to database... -- 12:06:50.110 DEBUG [17313]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:06:50.110 SQL [17313]: pgsql_db_connect() -- 12:06:50.145 INFO [17313]: COREGRADE is starting... -- 12:06:50.146 INFO [17313]: Version from config: 1.0 -- 12:06:50.146 DEBUG [17313]: Connecting to database... -- 12:06:50.146 DEBUG [17313]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:06:50.146 SQL [17313]: pgsql_db_connect() -- 12:06:50.149 DEBUG [17313]: Database connection successful -- 12:06:50.149 INFO [17313]: _SERVER found -- 12:06:50.149 INFO [17313]: REMOTE_ADDR = 192.168.1.13 -- 12:06:50.149 INFO [17313]: SERVER_NAME = oameye.works.coregrade.com -- 12:06:50.149 INFO [17313]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:06:50.149 INFO [17313]: QUERY_STRING = -- 12:06:50.149 INFO [17313]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:06:50.149 INFO [17313]: SystemStatus()09-09-********~************ -- 12:06:50.149 INFO [17313]: long coregrade_api_main(CVars in, CVars &out) -- 12:06:50.149 INFO [17313]: long coregrade_api_main(CVars in, CVars &out) action =11027 -- 12:06:50.149 INFO [17313]: account calls -- 12:06:50.149 INFO [17313]: account_calls() -- 12:06:50.149 INFO [17313]: CreateUserPage() -- 12:06:50.149 FLOG_MAX [17313]: REQ_STRING(description) -- 12:06:50.150 FLOG_MAX [17313]: REQ_STRING(title) -- 12:06:50.150 FLOG_MAX [17313]: long load_db_record( CVars &rec, const char * query, ... ) -- 12:06:50.150 SQL [17313]: pgsql_query() -- 12:06:50.150 SQL [17313]: About to run query: -- 12:06:50.150 SQL [17313]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 12:06:50.151 SQL [17313]: Found rows: 1 -- 12:06:50.151 FLOG_MAX [17313]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 12:06:50.151 FLOG_MAX [17313]: insert_db_record() -- 12:06:50.151 SQL [17313]: pgsql_exec() -- 12:06:50.151 SQL [17313]: About to run query: -- 12:06:50.151 SQL [17313]: INSERT INTO members_pages (description,member_id,page_key,page_mode,title) VALUES ('concept,command lines','7','PGCBFDC810F87678A68E7546A0409A12EC','OTHERPG','ETHICAL HACKING') -- 12:06:50.154 SQL [17313]: PQcmdTuples: 1 -- 12:06:50.154 SQL [17313]: Affected rows: 1 -- 12:06:50.154 FLOG_MAX [17313]: SELECT currval('members_pages_id_seq') -- 12:06:50.154 SQL [17313]: pgsql_query() -- 12:06:50.154 SQL [17313]: About to run query: -- 12:06:50.154 SQL [17313]: SELECT currval('members_pages_id_seq') -- 12:06:50.154 SQL [17313]: Found rows: 1 -- 12:06:50.154 INFO [17313]: /CreateUserPage() -- 12:06:50.154 INFO [17313]: RET: page_key=PGCBFDC810F87678A68E7546A0409A12EC -- 12:06:50.154 INFO [17313]: RET: result=YES I GET TO BACK END -- 12:06:50.159 INFO [17313]: COREGRADE is stopping... -- 12:06:50.159 DEBUG [17313]: Closing database connection -- 12:06:50.159 SQL [17313]: pgsql_close() -- 12:06:50.114 DEBUG [17313]: Database connection successful -- 12:06:50.114 INFO [17313]: _SERVER found -- 12:06:50.114 INFO [17313]: REMOTE_ADDR = 192.168.1.13 -- 12:06:50.114 INFO [17313]: SERVER_NAME = oameye.works.coregrade.com -- 12:06:50.114 INFO [17313]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:06:50.114 INFO [17313]: QUERY_STRING = /member/addcard -- 12:06:50.114 INFO [17313]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:06:50.160 INFO [17313]: COREGRADE is stopping... -- 12:06:50.160 DEBUG [17313]: Closing database connection -- 12:06:50.160 SQL [17313]: pgsql_close() -- 12:06:50.437 INFO [17313]: COREGRADE is starting... -- 12:06:50.437 INFO [17313]: Version from config: 1.0 -- 12:06:50.437 DEBUG [17313]: Connecting to database... -- 12:06:50.437 DEBUG [17313]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:06:50.437 SQL [17313]: pgsql_db_connect() -- 12:06:50.441 DEBUG [17313]: Database connection successful -- 12:06:50.441 INFO [17313]: _SERVER found -- 12:06:50.441 INFO [17313]: REMOTE_ADDR = 192.168.1.13 -- 12:06:50.441 INFO [17313]: SERVER_NAME = oameye.works.coregrade.com -- 12:06:50.441 INFO [17313]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:06:50.441 INFO [17313]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:06:50.441 INFO [17313]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:06:50.452 INFO [17313]: COREGRADE is stopping... -- 12:06:50.452 DEBUG [17313]: Closing database connection -- 12:06:50.452 SQL [17313]: pgsql_close() -- 12:06:50.459 INFO [16303]: COREGRADE is starting... -- 12:06:50.459 INFO [16303]: Version from config: 1.0 -- 12:06:50.459 DEBUG [16303]: Connecting to database... -- 12:06:50.459 DEBUG [16303]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:06:50.459 SQL [16303]: pgsql_db_connect() -- 12:06:50.463 DEBUG [16303]: Database connection successful -- 12:06:50.463 INFO [16303]: _SERVER found -- 12:06:50.463 INFO [16303]: REMOTE_ADDR = 192.168.1.13 -- 12:06:50.463 INFO [16303]: SERVER_NAME = oameye.works.coregrade.com -- 12:06:50.463 INFO [16303]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:06:50.463 INFO [16303]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:06:50.463 INFO [16303]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:06:50.474 INFO [16303]: COREGRADE is stopping... -- 12:06:50.475 DEBUG [16303]: Closing database connection -- 12:06:50.475 SQL [16303]: pgsql_close() -- 12:06:54.601 INFO [16303]: COREGRADE is starting... -- 12:06:54.601 INFO [16303]: Version from config: 1.0 -- 12:06:54.601 DEBUG [16303]: Connecting to database... -- 12:06:54.601 DEBUG [16303]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:06:54.601 SQL [16303]: pgsql_db_connect() -- 12:06:54.605 DEBUG [16303]: Database connection successful -- 12:06:54.605 INFO [16303]: _SERVER found -- 12:06:54.605 INFO [16303]: REMOTE_ADDR = 192.168.1.13 -- 12:06:54.605 INFO [16303]: SERVER_NAME = oameye.works.coregrade.com -- 12:06:54.605 INFO [16303]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:06:54.605 INFO [16303]: QUERY_STRING = /member/configure -- 12:06:54.605 INFO [16303]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:06:54.639 INFO [16303]: COREGRADE is stopping... -- 12:06:54.640 DEBUG [16303]: Closing database connection -- 12:06:54.640 SQL [16303]: pgsql_close() -- 12:06:54.835 INFO [16303]: COREGRADE is starting... -- 12:06:54.835 INFO [16303]: Version from config: 1.0 -- 12:06:54.835 DEBUG [16303]: Connecting to database... -- 12:06:54.835 DEBUG [16303]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:06:54.835 SQL [16303]: pgsql_db_connect() -- 12:06:54.848 INFO [17313]: COREGRADE is starting... -- 12:06:54.848 INFO [17313]: Version from config: 1.0 -- 12:06:54.848 DEBUG [17313]: Connecting to database... -- 12:06:54.848 DEBUG [17313]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:06:54.848 SQL [17313]: pgsql_db_connect() -- 12:06:54.839 DEBUG [16303]: Database connection successful -- 12:06:54.839 INFO [16303]: _SERVER found -- 12:06:54.839 INFO [16303]: REMOTE_ADDR = 192.168.1.13 -- 12:06:54.839 INFO [16303]: SERVER_NAME = oameye.works.coregrade.com -- 12:06:54.839 INFO [16303]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:06:54.839 INFO [16303]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:06:54.839 INFO [16303]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:06:54.851 INFO [16303]: COREGRADE is stopping... -- 12:06:54.851 DEBUG [16303]: Closing database connection -- 12:06:54.851 SQL [16303]: pgsql_close() -- 12:06:54.852 DEBUG [17313]: Database connection successful -- 12:06:54.852 INFO [17313]: _SERVER found -- 12:06:54.852 INFO [17313]: REMOTE_ADDR = 192.168.1.13 -- 12:06:54.852 INFO [17313]: SERVER_NAME = oameye.works.coregrade.com -- 12:06:54.852 INFO [17313]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:06:54.852 INFO [17313]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:06:54.852 INFO [17313]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:06:54.863 INFO [17313]: COREGRADE is stopping... -- 12:06:54.863 DEBUG [17313]: Closing database connection -- 12:06:54.863 SQL [17313]: pgsql_close() -- 12:07:01.400 INFO [16305]: COREGRADE is starting... -- 12:07:01.400 INFO [16305]: Version from config: 1.0 -- 12:07:01.400 DEBUG [16305]: Connecting to database... -- 12:07:01.400 DEBUG [16305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:01.400 SQL [16305]: pgsql_db_connect() -- 12:07:01.404 DEBUG [16305]: Database connection successful -- 12:07:01.404 INFO [16305]: _SERVER found -- 12:07:01.404 INFO [16305]: REMOTE_ADDR = 192.168.1.13 -- 12:07:01.404 INFO [16305]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:01.404 INFO [16305]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:07:01.404 INFO [16305]: QUERY_STRING = /member/configure -- 12:07:01.404 INFO [16305]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:07:01.440 INFO [16305]: COREGRADE is stopping... -- 12:07:01.440 DEBUG [16305]: Closing database connection -- 12:07:01.440 SQL [16305]: pgsql_close() -- 12:07:01.605 INFO [16305]: COREGRADE is starting... -- 12:07:01.605 INFO [16305]: Version from config: 1.0 -- 12:07:01.605 DEBUG [16305]: Connecting to database... -- 12:07:01.605 DEBUG [16305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:01.605 SQL [16305]: pgsql_db_connect() -- 12:07:01.609 DEBUG [16305]: Database connection successful -- 12:07:01.609 INFO [16305]: _SERVER found -- 12:07:01.609 INFO [16305]: REMOTE_ADDR = 192.168.1.13 -- 12:07:01.609 INFO [16305]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:01.609 INFO [16305]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:07:01.609 INFO [16305]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:07:01.609 INFO [16305]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:07:01.620 INFO [16305]: COREGRADE is stopping... -- 12:07:01.620 DEBUG [16305]: Closing database connection -- 12:07:01.620 SQL [16305]: pgsql_close() -- 12:07:01.621 INFO [16301]: COREGRADE is starting... -- 12:07:01.622 INFO [16301]: Version from config: 1.0 -- 12:07:01.622 DEBUG [16301]: Connecting to database... -- 12:07:01.622 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:01.622 SQL [16301]: pgsql_db_connect() -- 12:07:01.625 DEBUG [16301]: Database connection successful -- 12:07:01.625 INFO [16301]: _SERVER found -- 12:07:01.625 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 12:07:01.625 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:01.625 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:07:01.625 INFO [16301]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:07:01.625 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:07:01.637 INFO [16301]: COREGRADE is stopping... -- 12:07:01.637 DEBUG [16301]: Closing database connection -- 12:07:01.637 SQL [16301]: pgsql_close() -- 12:07:03.525 INFO [16301]: COREGRADE is starting... -- 12:07:03.526 INFO [16301]: Version from config: 1.0 -- 12:07:03.526 DEBUG [16301]: Connecting to database... -- 12:07:03.526 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:03.526 SQL [16301]: pgsql_db_connect() -- 12:07:03.530 DEBUG [16301]: Database connection successful -- 12:07:03.530 INFO [16301]: _SERVER found -- 12:07:03.530 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 12:07:03.530 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:03.530 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:07:03.530 INFO [16301]: QUERY_STRING = /member/configure -- 12:07:03.530 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:07:03.564 INFO [16301]: COREGRADE is stopping... -- 12:07:03.565 DEBUG [16301]: Closing database connection -- 12:07:03.565 SQL [16301]: pgsql_close() -- 12:07:03.733 INFO [16301]: COREGRADE is starting... -- 12:07:03.733 INFO [16301]: Version from config: 1.0 -- 12:07:03.733 DEBUG [16301]: Connecting to database... -- 12:07:03.733 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:03.733 SQL [16301]: pgsql_db_connect() -- 12:07:03.744 INFO [16305]: COREGRADE is starting... -- 12:07:03.744 INFO [16305]: Version from config: 1.0 -- 12:07:03.744 DEBUG [16305]: Connecting to database... -- 12:07:03.744 DEBUG [16305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:03.744 SQL [16305]: pgsql_db_connect() -- 12:07:03.737 DEBUG [16301]: Database connection successful -- 12:07:03.737 INFO [16301]: _SERVER found -- 12:07:03.737 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 12:07:03.737 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:03.737 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:07:03.737 INFO [16301]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:07:03.737 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:07:03.748 INFO [16301]: COREGRADE is stopping... -- 12:07:03.748 DEBUG [16301]: Closing database connection -- 12:07:03.748 SQL [16301]: pgsql_close() -- 12:07:03.748 DEBUG [16305]: Database connection successful -- 12:07:03.748 INFO [16305]: _SERVER found -- 12:07:03.748 INFO [16305]: REMOTE_ADDR = 192.168.1.13 -- 12:07:03.748 INFO [16305]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:03.748 INFO [16305]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:07:03.748 INFO [16305]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:07:03.748 INFO [16305]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:07:03.759 INFO [16305]: COREGRADE is stopping... -- 12:07:03.759 DEBUG [16305]: Closing database connection -- 12:07:03.759 SQL [16305]: pgsql_close() -- 12:07:04.586 INFO [16305]: COREGRADE is starting... -- 12:07:04.586 INFO [16305]: Version from config: 1.0 -- 12:07:04.586 DEBUG [16305]: Connecting to database... -- 12:07:04.586 DEBUG [16305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:04.586 SQL [16305]: pgsql_db_connect() -- 12:07:04.590 DEBUG [16305]: Database connection successful -- 12:07:04.590 INFO [16305]: _SERVER found -- 12:07:04.590 INFO [16305]: REMOTE_ADDR = 192.168.1.13 -- 12:07:04.590 INFO [16305]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:04.590 INFO [16305]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:07:04.590 INFO [16305]: QUERY_STRING = /member/configure -- 12:07:04.590 INFO [16305]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:07:04.627 INFO [16305]: COREGRADE is stopping... -- 12:07:04.627 DEBUG [16305]: Closing database connection -- 12:07:04.627 SQL [16305]: pgsql_close() -- 12:07:04.829 INFO [16305]: COREGRADE is starting... -- 12:07:04.829 INFO [16305]: Version from config: 1.0 -- 12:07:04.829 DEBUG [16305]: Connecting to database... -- 12:07:04.829 DEBUG [16305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:04.829 SQL [16305]: pgsql_db_connect() -- 12:07:04.839 INFO [16301]: COREGRADE is starting... -- 12:07:04.839 INFO [16301]: Version from config: 1.0 -- 12:07:04.839 DEBUG [16301]: Connecting to database... -- 12:07:04.839 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:04.839 SQL [16301]: pgsql_db_connect() -- 12:07:04.833 DEBUG [16305]: Database connection successful -- 12:07:04.833 INFO [16305]: _SERVER found -- 12:07:04.833 INFO [16305]: REMOTE_ADDR = 192.168.1.13 -- 12:07:04.833 INFO [16305]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:04.833 INFO [16305]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:07:04.833 INFO [16305]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:07:04.833 INFO [16305]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:07:04.844 INFO [16305]: COREGRADE is stopping... -- 12:07:04.844 DEBUG [16305]: Closing database connection -- 12:07:04.844 SQL [16305]: pgsql_close() -- 12:07:04.843 DEBUG [16301]: Database connection successful -- 12:07:04.843 INFO [16301]: _SERVER found -- 12:07:04.843 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 12:07:04.843 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:04.843 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:07:04.843 INFO [16301]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:07:04.843 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:07:04.854 INFO [16301]: COREGRADE is stopping... -- 12:07:04.854 DEBUG [16301]: Closing database connection -- 12:07:04.854 SQL [16301]: pgsql_close() -- 12:07:06.025 INFO [16301]: COREGRADE is starting... -- 12:07:06.026 INFO [16301]: Version from config: 1.0 -- 12:07:06.026 DEBUG [16301]: Connecting to database... -- 12:07:06.026 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:06.026 SQL [16301]: pgsql_db_connect() -- 12:07:06.030 DEBUG [16301]: Database connection successful -- 12:07:06.030 INFO [16301]: _SERVER found -- 12:07:06.030 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 12:07:06.030 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:06.030 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:07:06.030 INFO [16301]: QUERY_STRING = /member/configure -- 12:07:06.030 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:07:06.064 INFO [16301]: COREGRADE is stopping... -- 12:07:06.064 DEBUG [16301]: Closing database connection -- 12:07:06.064 SQL [16301]: pgsql_close() -- 12:07:06.231 INFO [16301]: COREGRADE is starting... -- 12:07:06.232 INFO [16301]: Version from config: 1.0 -- 12:07:06.232 DEBUG [16301]: Connecting to database... -- 12:07:06.232 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:06.232 SQL [16301]: pgsql_db_connect() -- 12:07:06.242 INFO [16305]: COREGRADE is starting... -- 12:07:06.242 INFO [16305]: Version from config: 1.0 -- 12:07:06.242 DEBUG [16305]: Connecting to database... -- 12:07:06.242 DEBUG [16305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:06.242 SQL [16305]: pgsql_db_connect() -- 12:07:06.236 DEBUG [16301]: Database connection successful -- 12:07:06.236 INFO [16301]: _SERVER found -- 12:07:06.236 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 12:07:06.236 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:06.236 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:07:06.236 INFO [16301]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:07:06.236 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:07:06.247 INFO [16301]: COREGRADE is stopping... -- 12:07:06.247 DEBUG [16301]: Closing database connection -- 12:07:06.247 SQL [16301]: pgsql_close() -- 12:07:06.246 DEBUG [16305]: Database connection successful -- 12:07:06.246 INFO [16305]: _SERVER found -- 12:07:06.246 INFO [16305]: REMOTE_ADDR = 192.168.1.13 -- 12:07:06.246 INFO [16305]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:06.246 INFO [16305]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:07:06.246 INFO [16305]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:07:06.246 INFO [16305]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:07:06.257 INFO [16305]: COREGRADE is stopping... -- 12:07:06.257 DEBUG [16305]: Closing database connection -- 12:07:06.257 SQL [16305]: pgsql_close() -- 12:07:09.632 INFO [16305]: COREGRADE is starting... -- 12:07:09.633 INFO [16305]: Version from config: 1.0 -- 12:07:09.633 DEBUG [16305]: Connecting to database... -- 12:07:09.633 DEBUG [16305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:09.633 SQL [16305]: pgsql_db_connect() -- 12:07:09.637 DEBUG [16305]: Database connection successful -- 12:07:09.637 INFO [16305]: _SERVER found -- 12:07:09.637 INFO [16305]: REMOTE_ADDR = 192.168.1.13 -- 12:07:09.637 INFO [16305]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:09.637 INFO [16305]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:07:09.637 INFO [16305]: QUERY_STRING = /member/configure -- 12:07:09.637 INFO [16305]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:07:09.671 INFO [16305]: COREGRADE is stopping... -- 12:07:09.671 DEBUG [16305]: Closing database connection -- 12:07:09.671 SQL [16305]: pgsql_close() -- 12:07:09.837 INFO [16305]: COREGRADE is starting... -- 12:07:09.837 INFO [16305]: Version from config: 1.0 -- 12:07:09.837 DEBUG [16305]: Connecting to database... -- 12:07:09.837 DEBUG [16305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:09.837 SQL [16305]: pgsql_db_connect() -- 12:07:09.849 INFO [16301]: COREGRADE is starting... -- 12:07:09.849 INFO [16301]: Version from config: 1.0 -- 12:07:09.849 DEBUG [16301]: Connecting to database... -- 12:07:09.849 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:09.849 SQL [16301]: pgsql_db_connect() -- 12:07:09.841 DEBUG [16305]: Database connection successful -- 12:07:09.841 INFO [16305]: _SERVER found -- 12:07:09.841 INFO [16305]: REMOTE_ADDR = 192.168.1.13 -- 12:07:09.841 INFO [16305]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:09.841 INFO [16305]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:07:09.841 INFO [16305]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:07:09.841 INFO [16305]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:07:09.852 INFO [16305]: COREGRADE is stopping... -- 12:07:09.852 DEBUG [16305]: Closing database connection -- 12:07:09.852 SQL [16305]: pgsql_close() -- 12:07:09.853 DEBUG [16301]: Database connection successful -- 12:07:09.853 INFO [16301]: _SERVER found -- 12:07:09.853 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 12:07:09.853 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:09.853 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:07:09.853 INFO [16301]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:07:09.853 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:07:09.864 INFO [16301]: COREGRADE is stopping... -- 12:07:09.864 DEBUG [16301]: Closing database connection -- 12:07:09.864 SQL [16301]: pgsql_close() -- 12:07:14.017 INFO [16301]: COREGRADE is starting... -- 12:07:14.017 INFO [16301]: Version from config: 1.0 -- 12:07:14.017 DEBUG [16301]: Connecting to database... -- 12:07:14.017 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:14.017 SQL [16301]: pgsql_db_connect() -- 12:07:14.021 DEBUG [16301]: Database connection successful -- 12:07:14.021 INFO [16301]: _SERVER found -- 12:07:14.021 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 12:07:14.021 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:14.021 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:07:14.021 INFO [16301]: QUERY_STRING = /member -- 12:07:14.021 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:07:14.055 INFO [16301]: COREGRADE is stopping... -- 12:07:14.055 DEBUG [16301]: Closing database connection -- 12:07:14.055 SQL [16301]: pgsql_close() -- 12:07:14.250 INFO [16301]: COREGRADE is starting... -- 12:07:14.250 INFO [16301]: Version from config: 1.0 -- 12:07:14.250 DEBUG [16301]: Connecting to database... -- 12:07:14.250 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:14.250 SQL [16301]: pgsql_db_connect() -- 12:07:14.259 INFO [16305]: COREGRADE is starting... -- 12:07:14.259 INFO [16305]: Version from config: 1.0 -- 12:07:14.259 DEBUG [16305]: Connecting to database... -- 12:07:14.259 DEBUG [16305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:14.259 SQL [16305]: pgsql_db_connect() -- 12:07:14.254 DEBUG [16301]: Database connection successful -- 12:07:14.254 INFO [16301]: _SERVER found -- 12:07:14.254 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 12:07:14.254 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:14.254 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:07:14.254 INFO [16301]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:07:14.254 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:07:14.265 INFO [16301]: COREGRADE is stopping... -- 12:07:14.265 DEBUG [16301]: Closing database connection -- 12:07:14.265 SQL [16301]: pgsql_close() -- 12:07:14.263 DEBUG [16305]: Database connection successful -- 12:07:14.263 INFO [16305]: _SERVER found -- 12:07:14.263 INFO [16305]: REMOTE_ADDR = 192.168.1.13 -- 12:07:14.263 INFO [16305]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:14.263 INFO [16305]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:07:14.263 INFO [16305]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:07:14.263 INFO [16305]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:07:14.274 INFO [16305]: COREGRADE is stopping... -- 12:07:14.274 DEBUG [16305]: Closing database connection -- 12:07:14.274 SQL [16305]: pgsql_close() -- 12:07:17.131 INFO [16305]: COREGRADE is starting... -- 12:07:17.131 INFO [16305]: Version from config: 1.0 -- 12:07:17.131 DEBUG [16305]: Connecting to database... -- 12:07:17.131 DEBUG [16305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:17.131 SQL [16305]: pgsql_db_connect() -- 12:07:17.135 DEBUG [16305]: Database connection successful -- 12:07:17.135 INFO [16305]: _SERVER found -- 12:07:17.135 INFO [16305]: REMOTE_ADDR = 192.168.1.13 -- 12:07:17.135 INFO [16305]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:17.135 INFO [16305]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:07:17.135 INFO [16305]: QUERY_STRING = /member/configure -- 12:07:17.135 INFO [16305]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:07:17.170 INFO [16305]: COREGRADE is stopping... -- 12:07:17.170 DEBUG [16305]: Closing database connection -- 12:07:17.170 SQL [16305]: pgsql_close() -- 12:07:17.382 INFO [16305]: COREGRADE is starting... -- 12:07:17.382 INFO [16305]: Version from config: 1.0 -- 12:07:17.382 DEBUG [16305]: Connecting to database... -- 12:07:17.382 DEBUG [16305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:17.382 SQL [16305]: pgsql_db_connect() -- 12:07:17.395 INFO [16301]: COREGRADE is starting... -- 12:07:17.395 INFO [16301]: Version from config: 1.0 -- 12:07:17.395 DEBUG [16301]: Connecting to database... -- 12:07:17.395 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:17.395 SQL [16301]: pgsql_db_connect() -- 12:07:17.386 DEBUG [16305]: Database connection successful -- 12:07:17.386 INFO [16305]: _SERVER found -- 12:07:17.386 INFO [16305]: REMOTE_ADDR = 192.168.1.13 -- 12:07:17.386 INFO [16305]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:17.386 INFO [16305]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:07:17.386 INFO [16305]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:07:17.386 INFO [16305]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:07:17.397 INFO [16305]: COREGRADE is stopping... -- 12:07:17.397 DEBUG [16305]: Closing database connection -- 12:07:17.397 SQL [16305]: pgsql_close() -- 12:07:17.399 DEBUG [16301]: Database connection successful -- 12:07:17.399 INFO [16301]: _SERVER found -- 12:07:17.399 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 12:07:17.399 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:17.399 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:07:17.399 INFO [16301]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:07:17.399 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:07:17.410 INFO [16301]: COREGRADE is stopping... -- 12:07:17.410 DEBUG [16301]: Closing database connection -- 12:07:17.410 SQL [16301]: pgsql_close() -- 12:07:20.125 INFO [16301]: COREGRADE is starting... -- 12:07:20.125 INFO [16301]: Version from config: 1.0 -- 12:07:20.125 DEBUG [16301]: Connecting to database... -- 12:07:20.125 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:20.125 SQL [16301]: pgsql_db_connect() -- 12:07:20.129 DEBUG [16301]: Database connection successful -- 12:07:20.129 INFO [16301]: _SERVER found -- 12:07:20.129 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 12:07:20.129 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:20.129 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:07:20.129 INFO [16301]: QUERY_STRING = /member/configure -- 12:07:20.129 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:07:20.163 INFO [16301]: COREGRADE is stopping... -- 12:07:20.163 DEBUG [16301]: Closing database connection -- 12:07:20.163 SQL [16301]: pgsql_close() -- 12:07:20.320 INFO [16301]: COREGRADE is starting... -- 12:07:20.320 INFO [16301]: Version from config: 1.0 -- 12:07:20.320 DEBUG [16301]: Connecting to database... -- 12:07:20.320 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:20.320 SQL [16301]: pgsql_db_connect() -- 12:07:20.329 INFO [16305]: COREGRADE is starting... -- 12:07:20.330 INFO [16305]: Version from config: 1.0 -- 12:07:20.330 DEBUG [16305]: Connecting to database... -- 12:07:20.330 DEBUG [16305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:20.330 SQL [16305]: pgsql_db_connect() -- 12:07:20.324 DEBUG [16301]: Database connection successful -- 12:07:20.324 INFO [16301]: _SERVER found -- 12:07:20.324 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 12:07:20.324 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:20.324 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:07:20.324 INFO [16301]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:07:20.324 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:07:20.335 INFO [16301]: COREGRADE is stopping... -- 12:07:20.335 DEBUG [16301]: Closing database connection -- 12:07:20.335 SQL [16301]: pgsql_close() -- 12:07:20.333 DEBUG [16305]: Database connection successful -- 12:07:20.333 INFO [16305]: _SERVER found -- 12:07:20.333 INFO [16305]: REMOTE_ADDR = 192.168.1.13 -- 12:07:20.333 INFO [16305]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:20.333 INFO [16305]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:07:20.333 INFO [16305]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:07:20.333 INFO [16305]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:07:20.344 INFO [16305]: COREGRADE is stopping... -- 12:07:20.345 DEBUG [16305]: Closing database connection -- 12:07:20.345 SQL [16305]: pgsql_close() -- 12:07:24.982 INFO [16305]: COREGRADE is starting... -- 12:07:24.982 INFO [16305]: Version from config: 1.0 -- 12:07:24.982 DEBUG [16305]: Connecting to database... -- 12:07:24.982 DEBUG [16305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:24.982 SQL [16305]: pgsql_db_connect() -- 12:07:24.986 DEBUG [16305]: Database connection successful -- 12:07:24.986 INFO [16305]: _SERVER found -- 12:07:24.986 INFO [16305]: REMOTE_ADDR = 192.168.1.13 -- 12:07:24.986 INFO [16305]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:24.986 INFO [16305]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:07:24.986 INFO [16305]: QUERY_STRING = /member -- 12:07:24.986 INFO [16305]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:07:25.020 INFO [16305]: COREGRADE is stopping... -- 12:07:25.020 DEBUG [16305]: Closing database connection -- 12:07:25.020 SQL [16305]: pgsql_close() -- 12:07:25.192 INFO [16305]: COREGRADE is starting... -- 12:07:25.192 INFO [16305]: Version from config: 1.0 -- 12:07:25.192 DEBUG [16305]: Connecting to database... -- 12:07:25.192 DEBUG [16305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:25.192 SQL [16305]: pgsql_db_connect() -- 12:07:25.201 INFO [16301]: COREGRADE is starting... -- 12:07:25.202 INFO [16301]: Version from config: 1.0 -- 12:07:25.202 DEBUG [16301]: Connecting to database... -- 12:07:25.202 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:25.202 SQL [16301]: pgsql_db_connect() -- 12:07:25.196 DEBUG [16305]: Database connection successful -- 12:07:25.196 INFO [16305]: _SERVER found -- 12:07:25.196 INFO [16305]: REMOTE_ADDR = 192.168.1.13 -- 12:07:25.196 INFO [16305]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:25.196 INFO [16305]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:07:25.196 INFO [16305]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:07:25.196 INFO [16305]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:07:25.207 INFO [16305]: COREGRADE is stopping... -- 12:07:25.207 DEBUG [16305]: Closing database connection -- 12:07:25.207 SQL [16305]: pgsql_close() -- 12:07:25.205 DEBUG [16301]: Database connection successful -- 12:07:25.205 INFO [16301]: _SERVER found -- 12:07:25.205 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 12:07:25.205 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:25.205 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:07:25.205 INFO [16301]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:07:25.205 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:07:25.216 INFO [16301]: COREGRADE is stopping... -- 12:07:25.216 DEBUG [16301]: Closing database connection -- 12:07:25.216 SQL [16301]: pgsql_close() -- 12:07:27.273 INFO [16301]: COREGRADE is starting... -- 12:07:27.273 INFO [16301]: Version from config: 1.0 -- 12:07:27.273 DEBUG [16301]: Connecting to database... -- 12:07:27.273 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:27.273 SQL [16301]: pgsql_db_connect() -- 12:07:27.277 DEBUG [16301]: Database connection successful -- 12:07:27.277 INFO [16301]: _SERVER found -- 12:07:27.277 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 12:07:27.277 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:27.277 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:07:27.277 INFO [16301]: QUERY_STRING = /member/page -- 12:07:27.277 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:07:27.312 INFO [16301]: COREGRADE is stopping... -- 12:07:27.312 DEBUG [16301]: Closing database connection -- 12:07:27.312 SQL [16301]: pgsql_close() -- 12:07:27.498 INFO [16301]: COREGRADE is starting... -- 12:07:27.499 INFO [16301]: Version from config: 1.0 -- 12:07:27.499 DEBUG [16301]: Connecting to database... -- 12:07:27.499 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:27.499 SQL [16301]: pgsql_db_connect() -- 12:07:27.508 INFO [16305]: COREGRADE is starting... -- 12:07:27.509 INFO [16305]: Version from config: 1.0 -- 12:07:27.509 DEBUG [16305]: Connecting to database... -- 12:07:27.509 DEBUG [16305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:27.509 SQL [16305]: pgsql_db_connect() -- 12:07:27.503 DEBUG [16301]: Database connection successful -- 12:07:27.503 INFO [16301]: _SERVER found -- 12:07:27.503 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 12:07:27.503 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:27.503 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:07:27.503 INFO [16301]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:07:27.503 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:07:27.513 INFO [16301]: COREGRADE is stopping... -- 12:07:27.514 DEBUG [16301]: Closing database connection -- 12:07:27.514 SQL [16301]: pgsql_close() -- 12:07:27.512 DEBUG [16305]: Database connection successful -- 12:07:27.512 INFO [16305]: _SERVER found -- 12:07:27.512 INFO [16305]: REMOTE_ADDR = 192.168.1.13 -- 12:07:27.512 INFO [16305]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:27.512 INFO [16305]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:07:27.512 INFO [16305]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:07:27.512 INFO [16305]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:07:27.523 INFO [16305]: COREGRADE is stopping... -- 12:07:27.523 DEBUG [16305]: Closing database connection -- 12:07:27.523 SQL [16305]: pgsql_close() -- 12:07:35.281 INFO [16302]: COREGRADE is starting... -- 12:07:35.281 INFO [16302]: Version from config: 1.0 -- 12:07:35.281 DEBUG [16302]: Connecting to database... -- 12:07:35.281 DEBUG [16302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:35.281 SQL [16302]: pgsql_db_connect() -- 12:07:35.285 DEBUG [16302]: Database connection successful -- 12:07:35.285 INFO [16302]: _SERVER found -- 12:07:35.285 INFO [16302]: REMOTE_ADDR = 192.168.1.13 -- 12:07:35.285 INFO [16302]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:35.285 INFO [16302]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:07:35.285 INFO [16302]: QUERY_STRING = /member/viewCardAddAction -- 12:07:35.285 INFO [16302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:07:35.316 INFO [16302]: COREGRADE is stopping... -- 12:07:35.316 DEBUG [16302]: Closing database connection -- 12:07:35.316 SQL [16302]: pgsql_close() -- 12:09:55.146 INFO [17314]: COREGRADE is starting... -- 12:09:55.147 INFO [17314]: Version from config: 1.0 -- 12:09:55.147 DEBUG [17314]: Connecting to database... -- 12:09:55.147 DEBUG [17314]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:55.147 SQL [17314]: pgsql_db_connect() -- 12:09:55.182 INFO [17314]: COREGRADE is starting... -- 12:09:55.182 INFO [17314]: Version from config: 1.0 -- 12:09:55.182 DEBUG [17314]: Connecting to database... -- 12:09:55.182 DEBUG [17314]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:55.182 SQL [17314]: pgsql_db_connect() -- 12:09:55.186 DEBUG [17314]: Database connection successful -- 12:09:55.186 INFO [17314]: _SERVER found -- 12:09:55.186 INFO [17314]: REMOTE_ADDR = 192.168.1.13 -- 12:09:55.186 INFO [17314]: SERVER_NAME = oameye.works.coregrade.com -- 12:09:55.186 INFO [17314]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=e250fkktsh6htfrudmp96g6gv4ggp1le -- 12:09:55.186 INFO [17314]: QUERY_STRING = -- 12:09:55.186 INFO [17314]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:09:55.186 INFO [17314]: SystemStatus()09-09-********~************ -- 12:09:55.186 INFO [17314]: long coregrade_api_main(CVars in, CVars &out) -- 12:09:55.186 INFO [17314]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 12:09:55.186 INFO [17314]: account calls -- 12:09:55.186 INFO [17314]: account_calls() -- 12:09:55.186 INFO [17314]: LoginCoreGradeAccount() -- 12:09:55.186 FLOG_MAX [17314]: REQ_STRING(username) -- 12:09:55.186 FLOG_MAX [17314]: REQ_STRING(password) -- 12:09:55.187 FLOG_MAX [17314]: REQ_STRING(sessionid) -- 12:09:55.187 FLOG_MAX [17314]: long load_db_record( CVars &rec, const char * query, ... ) -- 12:09:55.187 SQL [17314]: pgsql_query() -- 12:09:55.187 SQL [17314]: About to run query: -- 12:09:55.187 SQL [17314]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 12:09:55.190 SQL [17314]: Found rows: 1 -- 12:09:55.190 FLOG_MAX [17314]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 12:09:55.190 INFO [17314]: long SessionCheck(long uid, const char *sessionid, int create ) -- 12:09:55.190 SQL [17314]: pgsql_exec() -- 12:09:55.190 SQL [17314]: About to run query: -- 12:09:55.190 SQL [17314]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 12:09:55.191 SQL [17314]: PQcmdTuples: 1 -- 12:09:55.191 SQL [17314]: Affected rows: 1 -- 12:09:55.191 SQL [17314]: pgsql_exec() -- 12:09:55.191 SQL [17314]: About to run query: -- 12:09:55.191 SQL [17314]: DELETE FROM members_session WHERE member_id=5 -- 12:09:55.192 SQL [17314]: PQcmdTuples: 0 -- 12:09:55.192 SQL [17314]: Affected rows: 0 -- 12:09:55.192 SQL [17314]: pgsql_query() -- 12:09:55.192 SQL [17314]: About to run query: -- 12:09:55.192 SQL [17314]: SELECT * FROM members_session WHERE member_id=5 AND session<>'AB067AE266374AAF13755CD515563A01' -- 12:09:55.192 SQL [17314]: Found rows: 0 -- 12:09:55.192 SQL [17314]: Found rows: 0 -- 12:09:55.192 FLOG_MAX [17314]: long load_db_record( CVars &rec, const char * query, ... ) -- 12:09:55.192 SQL [17314]: pgsql_query() -- 12:09:55.192 SQL [17314]: About to run query: -- 12:09:55.192 SQL [17314]: SELECT * FROM members_session WHERE member_id=5 AND session='AB067AE266374AAF13755CD515563A01' -- 12:09:55.193 SQL [17314]: Found rows: 0 -- 12:09:55.193 SQL [17314]: Found rows: 0 -- 12:09:55.193 FLOG_MAX [17314]: insert_db_record() -- 12:09:55.193 SQL [17314]: pgsql_exec() -- 12:09:55.193 SQL [17314]: About to run query: -- 12:09:55.193 SQL [17314]: INSERT INTO members_session (member_id,session) VALUES ('5','AB067AE266374AAF13755CD515563A01') -- 12:09:55.194 SQL [17314]: PQcmdTuples: 1 -- 12:09:55.194 SQL [17314]: Affected rows: 1 -- 12:09:55.194 FLOG_MAX [17314]: SELECT currval('members_session_id_seq') -- 12:09:55.194 SQL [17314]: pgsql_query() -- 12:09:55.194 SQL [17314]: About to run query: -- 12:09:55.194 SQL [17314]: SELECT currval('members_session_id_seq') -- 12:09:55.194 SQL [17314]: Found rows: 1 -- 12:09:55.194 INFO [17314]: CreateDefaultPage() -- 12:09:55.194 FLOG_MAX [17314]: long load_db_record( CVars &rec, const char * query, ... ) -- 12:09:55.194 SQL [17314]: pgsql_query() -- 12:09:55.195 SQL [17314]: About to run query: -- 12:09:55.195 SQL [17314]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 12:09:55.195 SQL [17314]: Found rows: 1 -- 12:09:55.195 FLOG_MAX [17314]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 12:09:55.195 SQL [17314]: pgsql_query() -- 12:09:55.195 SQL [17314]: About to run query: -- 12:09:55.195 SQL [17314]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 12:09:55.195 SQL [17314]: Found rows: 1 -- 12:09:55.195 INFO [17314]: /CreateDefaultPage() -- 12:09:55.195 INFO [17314]: /LoginCoreGradeAccount() -- 12:09:55.195 INFO [17314]: RET: added=2020-02-05 06:47:23.982154 -- 12:09:55.195 INFO [17314]: RET: email=ameye+11@chiefsoft.com -- 12:09:55.195 INFO [17314]: RET: firstname=Olu -- 12:09:55.195 INFO [17314]: RET: id=5 -- 12:09:55.195 INFO [17314]: RET: last_login= -- 12:09:55.195 INFO [17314]: RET: lastname=Amey -- 12:09:55.195 INFO [17314]: RET: loc=192.168.1.13 -- 12:09:55.195 INFO [17314]: RET: member_id=5 -- 12:09:55.195 INFO [17314]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 12:09:55.195 INFO [17314]: RET: phone= -- 12:09:55.195 INFO [17314]: RET: pid= -- 12:09:55.195 INFO [17314]: RET: result=YES I GET TO BACK END -- 12:09:55.195 INFO [17314]: RET: sessionid=AB067AE266374AAF13755CD515563A01 -- 12:09:55.195 INFO [17314]: RET: status=1 -- 12:09:55.195 INFO [17314]: RET: stauts=OK -- 12:09:55.195 INFO [17314]: RET: username=ameye+11@chiefsoft.com -- 12:09:55.195 INFO [17314]: RET: verified= -- 12:09:55.197 INFO [17314]: COREGRADE is stopping... -- 12:09:55.197 DEBUG [17314]: Closing database connection -- 12:09:55.197 SQL [17314]: pgsql_close() -- 12:09:55.151 DEBUG [17314]: Database connection successful -- 12:09:55.151 INFO [17314]: _SERVER found -- 12:09:55.151 INFO [17314]: REMOTE_ADDR = 192.168.1.13 -- 12:09:55.151 INFO [17314]: SERVER_NAME = oameye.works.coregrade.com -- 12:09:55.151 INFO [17314]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=e250fkktsh6htfrudmp96g6gv4ggp1le -- 12:09:55.151 INFO [17314]: QUERY_STRING = /auth -- 12:09:55.151 INFO [17314]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:09:55.197 INFO [17314]: COREGRADE is stopping... -- 12:09:55.197 DEBUG [17314]: Closing database connection -- 12:09:55.197 SQL [17314]: pgsql_close() -- 12:09:55.236 INFO [17314]: COREGRADE is starting... -- 12:09:55.236 INFO [17314]: Version from config: 1.0 -- 12:09:55.236 DEBUG [17314]: Connecting to database... -- 12:09:55.236 DEBUG [17314]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:55.236 SQL [17314]: pgsql_db_connect() -- 12:09:55.240 DEBUG [17314]: Database connection successful -- 12:09:55.240 INFO [17314]: _SERVER found -- 12:09:55.240 INFO [17314]: REMOTE_ADDR = 192.168.1.13 -- 12:09:55.240 INFO [17314]: SERVER_NAME = oameye.works.coregrade.com -- 12:09:55.240 INFO [17314]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ocriv75j2hhk8d6arh3hcgd0m4lkrp75 -- 12:09:55.240 INFO [17314]: QUERY_STRING = /member/index -- 12:09:55.240 INFO [17314]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:09:55.274 INFO [17314]: COREGRADE is stopping... -- 12:09:55.274 DEBUG [17314]: Closing database connection -- 12:09:55.274 SQL [17314]: pgsql_close() -- 12:09:55.590 INFO [17314]: COREGRADE is starting... -- 12:09:55.590 INFO [17314]: Version from config: 1.0 -- 12:09:55.590 DEBUG [17314]: Connecting to database... -- 12:09:55.591 DEBUG [17314]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:55.591 SQL [17314]: pgsql_db_connect() -- 12:09:55.594 DEBUG [17314]: Database connection successful -- 12:09:55.594 INFO [17314]: _SERVER found -- 12:09:55.594 INFO [17314]: REMOTE_ADDR = 192.168.1.13 -- 12:09:55.594 INFO [17314]: SERVER_NAME = oameye.works.coregrade.com -- 12:09:55.594 INFO [17314]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ocriv75j2hhk8d6arh3hcgd0m4lkrp75 -- 12:09:55.594 INFO [17314]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:09:55.594 INFO [17314]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:09:55.605 INFO [17314]: COREGRADE is stopping... -- 12:09:55.606 DEBUG [17314]: Closing database connection -- 12:09:55.606 SQL [17314]: pgsql_close() -- 12:09:55.613 INFO [17316]: COREGRADE is starting... -- 12:09:55.613 INFO [17316]: Version from config: 1.0 -- 12:09:55.613 DEBUG [17316]: Connecting to database... -- 12:09:55.613 DEBUG [17316]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:55.613 SQL [17316]: pgsql_db_connect() -- 12:09:55.617 DEBUG [17316]: Database connection successful -- 12:09:55.617 INFO [17316]: _SERVER found -- 12:09:55.617 INFO [17316]: REMOTE_ADDR = 192.168.1.13 -- 12:09:55.617 INFO [17316]: SERVER_NAME = oameye.works.coregrade.com -- 12:09:55.617 INFO [17316]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ocriv75j2hhk8d6arh3hcgd0m4lkrp75 -- 12:09:55.617 INFO [17316]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:09:55.617 INFO [17316]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:09:55.628 INFO [17316]: COREGRADE is stopping... -- 12:09:55.628 DEBUG [17316]: Closing database connection -- 12:09:55.628 SQL [17316]: pgsql_close() -- 12:09:57.294 INFO [17316]: COREGRADE is starting... -- 12:09:57.295 INFO [17316]: Version from config: 1.0 -- 12:09:57.295 DEBUG [17316]: Connecting to database... -- 12:09:57.295 DEBUG [17316]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:57.295 SQL [17316]: pgsql_db_connect() -- 12:09:57.299 DEBUG [17316]: Database connection successful -- 12:09:57.299 INFO [17316]: _SERVER found -- 12:09:57.299 INFO [17316]: REMOTE_ADDR = 192.168.1.13 -- 12:09:57.299 INFO [17316]: SERVER_NAME = oameye.works.coregrade.com -- 12:09:57.299 INFO [17316]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ocriv75j2hhk8d6arh3hcgd0m4lkrp75 -- 12:09:57.299 INFO [17316]: QUERY_STRING = /member/page -- 12:09:57.299 INFO [17316]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:09:57.338 INFO [17316]: COREGRADE is stopping... -- 12:09:57.338 DEBUG [17316]: Closing database connection -- 12:09:57.338 SQL [17316]: pgsql_close() -- 12:09:57.508 INFO [17316]: COREGRADE is starting... -- 12:09:57.508 INFO [17316]: Version from config: 1.0 -- 12:09:57.508 DEBUG [17316]: Connecting to database... -- 12:09:57.508 DEBUG [17316]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:57.508 SQL [17316]: pgsql_db_connect() -- 12:09:57.512 DEBUG [17316]: Database connection successful -- 12:09:57.512 INFO [17316]: _SERVER found -- 12:09:57.512 INFO [17316]: REMOTE_ADDR = 192.168.1.13 -- 12:09:57.512 INFO [17316]: SERVER_NAME = oameye.works.coregrade.com -- 12:09:57.512 INFO [17316]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ocriv75j2hhk8d6arh3hcgd0m4lkrp75 -- 12:09:57.512 INFO [17316]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:09:57.512 INFO [17316]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:09:57.523 INFO [17316]: COREGRADE is stopping... -- 12:09:57.523 DEBUG [17316]: Closing database connection -- 12:09:57.523 SQL [17316]: pgsql_close() -- 12:09:57.537 INFO [17316]: COREGRADE is starting... -- 12:09:57.537 INFO [17316]: Version from config: 1.0 -- 12:09:57.537 DEBUG [17316]: Connecting to database... -- 12:09:57.537 DEBUG [17316]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:57.537 SQL [17316]: pgsql_db_connect() -- 12:09:57.541 DEBUG [17316]: Database connection successful -- 12:09:57.541 INFO [17316]: _SERVER found -- 12:09:57.541 INFO [17316]: REMOTE_ADDR = 192.168.1.13 -- 12:09:57.541 INFO [17316]: SERVER_NAME = oameye.works.coregrade.com -- 12:09:57.541 INFO [17316]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ocriv75j2hhk8d6arh3hcgd0m4lkrp75 -- 12:09:57.541 INFO [17316]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:09:57.541 INFO [17316]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:09:57.552 INFO [17316]: COREGRADE is stopping... -- 12:09:57.552 DEBUG [17316]: Closing database connection -- 12:09:57.552 SQL [17316]: pgsql_close() -- 12:09:59.600 INFO [17316]: COREGRADE is starting... -- 12:09:59.601 INFO [17316]: Version from config: 1.0 -- 12:09:59.601 DEBUG [17316]: Connecting to database... -- 12:09:59.601 DEBUG [17316]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:59.601 SQL [17316]: pgsql_db_connect() -- 12:09:59.605 DEBUG [17316]: Database connection successful -- 12:09:59.605 INFO [17316]: _SERVER found -- 12:09:59.605 INFO [17316]: REMOTE_ADDR = 192.168.1.13 -- 12:09:59.605 INFO [17316]: SERVER_NAME = oameye.works.coregrade.com -- 12:09:59.605 INFO [17316]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ocriv75j2hhk8d6arh3hcgd0m4lkrp75 -- 12:09:59.605 INFO [17316]: QUERY_STRING = /member/viewCardAddAction -- 12:09:59.605 INFO [17316]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:09:59.637 INFO [17316]: COREGRADE is stopping... -- 12:09:59.637 DEBUG [17316]: Closing database connection -- 12:09:59.637 SQL [17316]: pgsql_close() -- 12:18:33.622 INFO [16304]: COREGRADE is starting... -- 12:18:33.622 INFO [16304]: Version from config: 1.0 -- 12:18:33.623 DEBUG [16304]: Connecting to database... -- 12:18:33.623 DEBUG [16304]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:18:33.623 SQL [16304]: pgsql_db_connect() -- 12:18:33.661 INFO [16304]: COREGRADE is starting... -- 12:18:33.662 INFO [16304]: Version from config: 1.0 -- 12:18:33.662 DEBUG [16304]: Connecting to database... -- 12:18:33.662 DEBUG [16304]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:18:33.662 SQL [16304]: pgsql_db_connect() -- 12:18:33.666 DEBUG [16304]: Database connection successful -- 12:18:33.666 INFO [16304]: _SERVER found -- 12:18:33.666 INFO [16304]: REMOTE_ADDR = 192.168.1.13 -- 12:18:33.666 INFO [16304]: SERVER_NAME = oameye.works.coregrade.com -- 12:18:33.666 INFO [16304]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:18:33.666 INFO [16304]: QUERY_STRING = -- 12:18:33.666 INFO [16304]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:18:33.666 INFO [16304]: SystemStatus()09-09-********~************ -- 12:18:33.666 INFO [16304]: long coregrade_api_main(CVars in, CVars &out) -- 12:18:33.666 INFO [16304]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 12:18:33.666 INFO [16304]: account calls -- 12:18:33.666 INFO [16304]: account_calls() -- 12:18:33.666 INFO [16304]: LoginCoreGradeAccount() -- 12:18:33.666 FLOG_MAX [16304]: REQ_STRING(username) -- 12:18:33.666 FLOG_MAX [16304]: REQ_STRING(password) -- 12:18:33.666 FLOG_MAX [16304]: REQ_STRING(sessionid) -- 12:18:33.666 FLOG_MAX [16304]: long load_db_record( CVars &rec, const char * query, ... ) -- 12:18:33.666 SQL [16304]: pgsql_query() -- 12:18:33.666 SQL [16304]: About to run query: -- 12:18:33.666 SQL [16304]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 12:18:33.670 SQL [16304]: Found rows: 1 -- 12:18:33.670 FLOG_MAX [16304]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=15 -- 12:18:33.670 INFO [16304]: long SessionCheck(long uid, const char *sessionid, int create ) -- 12:18:33.670 SQL [16304]: pgsql_exec() -- 12:18:33.670 SQL [16304]: About to run query: -- 12:18:33.670 SQL [16304]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 12:18:33.671 SQL [16304]: PQcmdTuples: 0 -- 12:18:33.671 SQL [16304]: Affected rows: 0 -- 12:18:33.671 SQL [16304]: pgsql_exec() -- 12:18:33.671 SQL [16304]: About to run query: -- 12:18:33.671 SQL [16304]: DELETE FROM members_session WHERE member_id=7 -- 12:18:33.741 SQL [16304]: PQcmdTuples: 1 -- 12:18:33.741 SQL [16304]: Affected rows: 1 -- 12:18:33.741 SQL [16304]: pgsql_query() -- 12:18:33.742 SQL [16304]: About to run query: -- 12:18:33.742 SQL [16304]: SELECT * FROM members_session WHERE member_id=7 AND session<>'25337A685B02245547E4B9DD4310D11E' -- 12:18:33.742 SQL [16304]: Found rows: 0 -- 12:18:33.742 SQL [16304]: Found rows: 0 -- 12:18:33.742 FLOG_MAX [16304]: long load_db_record( CVars &rec, const char * query, ... ) -- 12:18:33.742 SQL [16304]: pgsql_query() -- 12:18:33.742 SQL [16304]: About to run query: -- 12:18:33.742 SQL [16304]: SELECT * FROM members_session WHERE member_id=7 AND session='25337A685B02245547E4B9DD4310D11E' -- 12:18:33.743 SQL [16304]: Found rows: 0 -- 12:18:33.743 SQL [16304]: Found rows: 0 -- 12:18:33.743 FLOG_MAX [16304]: insert_db_record() -- 12:18:33.743 SQL [16304]: pgsql_exec() -- 12:18:33.743 SQL [16304]: About to run query: -- 12:18:33.743 SQL [16304]: INSERT INTO members_session (member_id,session) VALUES ('7','25337A685B02245547E4B9DD4310D11E') -- 12:18:33.749 SQL [16304]: PQcmdTuples: 1 -- 12:18:33.749 SQL [16304]: Affected rows: 1 -- 12:18:33.749 FLOG_MAX [16304]: SELECT currval('members_session_id_seq') -- 12:18:33.749 SQL [16304]: pgsql_query() -- 12:18:33.749 SQL [16304]: About to run query: -- 12:18:33.749 SQL [16304]: SELECT currval('members_session_id_seq') -- 12:18:33.750 SQL [16304]: Found rows: 1 -- 12:18:33.750 INFO [16304]: CreateDefaultPage() -- 12:18:33.750 FLOG_MAX [16304]: long load_db_record( CVars &rec, const char * query, ... ) -- 12:18:33.750 SQL [16304]: pgsql_query() -- 12:18:33.750 SQL [16304]: About to run query: -- 12:18:33.750 SQL [16304]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 12:18:33.750 SQL [16304]: Found rows: 1 -- 12:18:33.750 FLOG_MAX [16304]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 12:18:33.750 SQL [16304]: pgsql_query() -- 12:18:33.750 SQL [16304]: About to run query: -- 12:18:33.750 SQL [16304]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 12:18:33.751 SQL [16304]: Found rows: 1 -- 12:18:33.751 INFO [16304]: /CreateDefaultPage() -- 12:18:33.751 INFO [16304]: /LoginCoreGradeAccount() -- 12:18:33.751 INFO [16304]: RET: added=2020-02-05 09:42:12.816064 -- 12:18:33.751 INFO [16304]: RET: email=tokslaw@chiefsoft.com -- 12:18:33.751 INFO [16304]: RET: firstname=Tokunbo -- 12:18:33.751 INFO [16304]: RET: id=7 -- 12:18:33.751 INFO [16304]: RET: last_login= -- 12:18:33.751 INFO [16304]: RET: lastname=Lawal -- 12:18:33.751 INFO [16304]: RET: loc=192.168.1.13 -- 12:18:33.751 INFO [16304]: RET: member_id=7 -- 12:18:33.751 INFO [16304]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 12:18:33.751 INFO [16304]: RET: phone= -- 12:18:33.751 INFO [16304]: RET: pid= -- 12:18:33.751 INFO [16304]: RET: result=YES I GET TO BACK END -- 12:18:33.751 INFO [16304]: RET: sessionid=25337A685B02245547E4B9DD4310D11E -- 12:18:33.751 INFO [16304]: RET: status=1 -- 12:18:33.751 INFO [16304]: RET: stauts=OK -- 12:18:33.751 INFO [16304]: RET: username=tokslaw@chiefsoft.com -- 12:18:33.751 INFO [16304]: RET: verified= -- 12:18:33.752 INFO [16304]: COREGRADE is stopping... -- 12:18:33.752 DEBUG [16304]: Closing database connection -- 12:18:33.752 SQL [16304]: pgsql_close() -- 12:18:33.627 DEBUG [16304]: Database connection successful -- 12:18:33.627 INFO [16304]: _SERVER found -- 12:18:33.627 INFO [16304]: REMOTE_ADDR = 192.168.1.13 -- 12:18:33.627 INFO [16304]: SERVER_NAME = oameye.works.coregrade.com -- 12:18:33.627 INFO [16304]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=c4ev2rmhve35pt0otk5kbsphior4k2md -- 12:18:33.627 INFO [16304]: QUERY_STRING = /auth -- 12:18:33.627 INFO [16304]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:18:33.753 INFO [16304]: COREGRADE is stopping... -- 12:18:33.753 DEBUG [16304]: Closing database connection -- 12:18:33.753 SQL [16304]: pgsql_close() -- 12:18:33.773 INFO [16304]: COREGRADE is starting... -- 12:18:33.773 INFO [16304]: Version from config: 1.0 -- 12:18:33.773 DEBUG [16304]: Connecting to database... -- 12:18:33.773 DEBUG [16304]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:18:33.773 SQL [16304]: pgsql_db_connect() -- 12:18:33.777 DEBUG [16304]: Database connection successful -- 12:18:33.777 INFO [16304]: _SERVER found -- 12:18:33.777 INFO [16304]: REMOTE_ADDR = 192.168.1.13 -- 12:18:33.777 INFO [16304]: SERVER_NAME = oameye.works.coregrade.com -- 12:18:33.777 INFO [16304]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=22j3mkqjibppk4a5jrla3ugn33up0c33 -- 12:18:33.777 INFO [16304]: QUERY_STRING = /member/index -- 12:18:33.777 INFO [16304]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:18:33.813 INFO [16304]: COREGRADE is stopping... -- 12:18:33.813 DEBUG [16304]: Closing database connection -- 12:18:33.813 SQL [16304]: pgsql_close() -- 12:18:34.114 INFO [16304]: COREGRADE is starting... -- 12:18:34.114 INFO [16304]: Version from config: 1.0 -- 12:18:34.114 DEBUG [16304]: Connecting to database... -- 12:18:34.114 DEBUG [16304]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:18:34.114 SQL [16304]: pgsql_db_connect() -- 12:18:34.118 DEBUG [16304]: Database connection successful -- 12:18:34.118 INFO [16304]: _SERVER found -- 12:18:34.118 INFO [16304]: REMOTE_ADDR = 192.168.1.13 -- 12:18:34.118 INFO [16304]: SERVER_NAME = oameye.works.coregrade.com -- 12:18:34.118 INFO [16304]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=22j3mkqjibppk4a5jrla3ugn33up0c33 -- 12:18:34.118 INFO [16304]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:18:34.118 INFO [16304]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:18:34.129 INFO [16304]: COREGRADE is stopping... -- 12:18:34.129 DEBUG [16304]: Closing database connection -- 12:18:34.129 SQL [16304]: pgsql_close() -- 12:18:34.133 INFO [17315]: COREGRADE is starting... -- 12:18:34.134 INFO [17315]: Version from config: 1.0 -- 12:18:34.134 DEBUG [17315]: Connecting to database... -- 12:18:34.134 DEBUG [17315]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:18:34.134 SQL [17315]: pgsql_db_connect() -- 12:18:34.137 DEBUG [17315]: Database connection successful -- 12:18:34.137 INFO [17315]: _SERVER found -- 12:18:34.137 INFO [17315]: REMOTE_ADDR = 192.168.1.13 -- 12:18:34.137 INFO [17315]: SERVER_NAME = oameye.works.coregrade.com -- 12:18:34.138 INFO [17315]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=22j3mkqjibppk4a5jrla3ugn33up0c33 -- 12:18:34.138 INFO [17315]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:18:34.138 INFO [17315]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:18:34.149 INFO [17315]: COREGRADE is stopping... -- 12:18:34.149 DEBUG [17315]: Closing database connection -- 12:18:34.149 SQL [17315]: pgsql_close() -- 12:18:41.693 INFO [17310]: COREGRADE is starting... -- 12:18:41.694 INFO [17310]: Version from config: 1.0 -- 12:18:41.694 DEBUG [17310]: Connecting to database... -- 12:18:41.694 DEBUG [17310]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:18:41.694 SQL [17310]: pgsql_db_connect() -- 12:18:41.698 DEBUG [17310]: Database connection successful -- 12:18:41.698 INFO [17310]: _SERVER found -- 12:18:41.698 INFO [17310]: REMOTE_ADDR = 192.168.1.13 -- 12:18:41.698 INFO [17310]: SERVER_NAME = oameye.works.coregrade.com -- 12:18:41.698 INFO [17310]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=22j3mkqjibppk4a5jrla3ugn33up0c33 -- 12:18:41.698 INFO [17310]: QUERY_STRING = /member -- 12:18:41.698 INFO [17310]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:18:41.735 INFO [17310]: COREGRADE is stopping... -- 12:18:41.735 DEBUG [17310]: Closing database connection -- 12:18:41.735 SQL [17310]: pgsql_close() -- 12:18:41.922 INFO [17310]: COREGRADE is starting... -- 12:18:41.922 INFO [17310]: Version from config: 1.0 -- 12:18:41.922 DEBUG [17310]: Connecting to database... -- 12:18:41.922 DEBUG [17310]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:18:41.922 SQL [17310]: pgsql_db_connect() -- 12:18:41.926 DEBUG [17310]: Database connection successful -- 12:18:41.926 INFO [17310]: _SERVER found -- 12:18:41.926 INFO [17310]: REMOTE_ADDR = 192.168.1.13 -- 12:18:41.926 INFO [17310]: SERVER_NAME = oameye.works.coregrade.com -- 12:18:41.926 INFO [17310]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=22j3mkqjibppk4a5jrla3ugn33up0c33 -- 12:18:41.926 INFO [17310]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:18:41.926 INFO [17310]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:18:41.937 INFO [17310]: COREGRADE is stopping... -- 12:18:41.937 DEBUG [17310]: Closing database connection -- 12:18:41.937 SQL [17310]: pgsql_close() -- 12:18:41.940 INFO [17313]: COREGRADE is starting... -- 12:18:41.941 INFO [17313]: Version from config: 1.0 -- 12:18:41.941 DEBUG [17313]: Connecting to database... -- 12:18:41.941 DEBUG [17313]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:18:41.941 SQL [17313]: pgsql_db_connect() -- 12:18:41.944 DEBUG [17313]: Database connection successful -- 12:18:41.944 INFO [17313]: _SERVER found -- 12:18:41.944 INFO [17313]: REMOTE_ADDR = 192.168.1.13 -- 12:18:41.944 INFO [17313]: SERVER_NAME = oameye.works.coregrade.com -- 12:18:41.944 INFO [17313]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=22j3mkqjibppk4a5jrla3ugn33up0c33 -- 12:18:41.944 INFO [17313]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:18:41.944 INFO [17313]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:18:41.956 INFO [17313]: COREGRADE is stopping... -- 12:18:41.956 DEBUG [17313]: Closing database connection -- 12:18:41.956 SQL [17313]: pgsql_close() -- 12:29:57.613 INFO [16303]: COREGRADE is starting... -- 12:29:57.613 INFO [16303]: Version from config: 1.0 -- 12:29:57.613 DEBUG [16303]: Connecting to database... -- 12:29:57.613 DEBUG [16303]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:57.613 SQL [16303]: pgsql_db_connect() -- 12:29:57.618 DEBUG [16303]: Database connection successful -- 12:29:57.618 INFO [16303]: _SERVER found -- 12:29:57.618 INFO [16303]: REMOTE_ADDR = 192.168.1.13 -- 12:29:57.618 INFO [16303]: SERVER_NAME = oameye.works.coregrade.com -- 12:29:57.618 INFO [16303]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=ocriv75j2hhk8d6arh3hcgd0m4lkrp75 -- 12:29:57.618 INFO [16303]: QUERY_STRING = /auth -- 12:29:57.618 INFO [16303]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:29:57.652 INFO [16303]: COREGRADE is stopping... -- 12:29:57.652 DEBUG [16303]: Closing database connection -- 12:29:57.652 SQL [16303]: pgsql_close() -- 12:29:57.800 INFO [16303]: COREGRADE is starting... -- 12:29:57.801 INFO [16303]: Version from config: 1.0 -- 12:29:57.801 DEBUG [16303]: Connecting to database... -- 12:29:57.801 DEBUG [16303]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:57.801 SQL [16303]: pgsql_db_connect() -- 12:29:57.805 DEBUG [16303]: Database connection successful -- 12:29:57.805 INFO [16303]: _SERVER found -- 12:29:57.805 INFO [16303]: REMOTE_ADDR = 192.168.1.13 -- 12:29:57.805 INFO [16303]: SERVER_NAME = oameye.works.coregrade.com -- 12:29:57.805 INFO [16303]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lqe0a84rqtktcdagilmvupsj7ncpg391 -- 12:29:57.805 INFO [16303]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 12:29:57.805 INFO [16303]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:29:57.817 INFO [16303]: COREGRADE is stopping... -- 12:29:57.817 DEBUG [16303]: Closing database connection -- 12:29:57.817 SQL [16303]: pgsql_close() -- 12:29:58.528 INFO [16303]: COREGRADE is starting... -- 12:29:58.528 INFO [16303]: Version from config: 1.0 -- 12:29:58.528 DEBUG [16303]: Connecting to database... -- 12:29:58.528 DEBUG [16303]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:58.528 SQL [16303]: pgsql_db_connect() -- 12:29:58.533 DEBUG [16303]: Database connection successful -- 12:29:58.533 INFO [16303]: _SERVER found -- 12:29:58.533 INFO [16303]: REMOTE_ADDR = 192.168.1.13 -- 12:29:58.533 INFO [16303]: SERVER_NAME = oameye.works.coregrade.com -- 12:29:58.533 INFO [16303]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1649096277.1580858896; ci_session=lqe0a84rqtktcdagilmvupsj7ncpg391 -- 12:29:58.533 INFO [16303]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:29:58.533 INFO [16303]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:29:58.544 INFO [16303]: COREGRADE is stopping... -- 12:29:58.544 DEBUG [16303]: Closing database connection -- 12:29:58.544 SQL [16303]: pgsql_close() -- 12:38:34.233 INFO [16301]: COREGRADE is starting... -- 12:38:34.233 INFO [16301]: Version from config: 1.0 -- 12:38:34.233 DEBUG [16301]: Connecting to database... -- 12:38:34.233 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:38:34.233 SQL [16301]: pgsql_db_connect() -- 12:38:34.238 DEBUG [16301]: Database connection successful -- 12:38:34.238 INFO [16301]: _SERVER found -- 12:38:34.238 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 12:38:34.238 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 12:38:34.238 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=22j3mkqjibppk4a5jrla3ugn33up0c33 -- 12:38:34.238 INFO [16301]: QUERY_STRING = /auth -- 12:38:34.238 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:38:34.271 INFO [16301]: COREGRADE is stopping... -- 12:38:34.271 DEBUG [16301]: Closing database connection -- 12:38:34.271 SQL [16301]: pgsql_close() -- 12:38:34.534 INFO [16301]: COREGRADE is starting... -- 12:38:34.534 INFO [16301]: Version from config: 1.0 -- 12:38:34.534 DEBUG [16301]: Connecting to database... -- 12:38:34.534 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:38:34.534 SQL [16301]: pgsql_db_connect() -- 12:38:34.539 DEBUG [16301]: Database connection successful -- 12:38:34.539 INFO [16301]: _SERVER found -- 12:38:34.539 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 12:38:34.539 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 12:38:34.539 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=pj91rv0h16f3qlli1gngl674si73d7r0 -- 12:38:34.539 INFO [16301]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 12:38:34.539 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:38:34.550 INFO [16301]: COREGRADE is stopping... -- 12:38:34.550 DEBUG [16301]: Closing database connection -- 12:38:34.550 SQL [16301]: pgsql_close() -- 12:38:34.980 INFO [16301]: COREGRADE is starting... -- 12:38:34.980 INFO [16301]: Version from config: 1.0 -- 12:38:34.980 DEBUG [16301]: Connecting to database... -- 12:38:34.980 DEBUG [16301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:38:34.980 SQL [16301]: pgsql_db_connect() -- 12:38:34.984 DEBUG [16301]: Database connection successful -- 12:38:34.984 INFO [16301]: _SERVER found -- 12:38:34.984 INFO [16301]: REMOTE_ADDR = 192.168.1.13 -- 12:38:34.985 INFO [16301]: SERVER_NAME = oameye.works.coregrade.com -- 12:38:34.985 INFO [16301]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=pj91rv0h16f3qlli1gngl674si73d7r0 -- 12:38:34.985 INFO [16301]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:38:34.985 INFO [16301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:38:34.996 INFO [16301]: COREGRADE is stopping... -- 12:38:34.996 DEBUG [16301]: Closing database connection -- 12:38:34.996 SQL [16301]: pgsql_close() -- 12:38:42.008 INFO [16305]: COREGRADE is starting... -- 12:38:42.008 INFO [16305]: Version from config: 1.0 -- 12:38:42.008 DEBUG [16305]: Connecting to database... -- 12:38:42.008 DEBUG [16305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:38:42.009 SQL [16305]: pgsql_db_connect() -- 12:38:42.013 DEBUG [16305]: Database connection successful -- 12:38:42.013 INFO [16305]: _SERVER found -- 12:38:42.013 INFO [16305]: REMOTE_ADDR = 192.168.1.13 -- 12:38:42.013 INFO [16305]: SERVER_NAME = oameye.works.coregrade.com -- 12:38:42.013 INFO [16305]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=pj91rv0h16f3qlli1gngl674si73d7r0 -- 12:38:42.013 INFO [16305]: QUERY_STRING = /auth -- 12:38:42.013 INFO [16305]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:38:42.045 INFO [16305]: COREGRADE is stopping... -- 12:38:42.045 DEBUG [16305]: Closing database connection -- 12:38:42.045 SQL [16305]: pgsql_close() -- 12:38:42.293 INFO [16305]: COREGRADE is starting... -- 12:38:42.293 INFO [16305]: Version from config: 1.0 -- 12:38:42.293 DEBUG [16305]: Connecting to database... -- 12:38:42.293 DEBUG [16305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:38:42.293 SQL [16305]: pgsql_db_connect() -- 12:38:42.297 DEBUG [16305]: Database connection successful -- 12:38:42.297 INFO [16305]: _SERVER found -- 12:38:42.297 INFO [16305]: REMOTE_ADDR = 192.168.1.13 -- 12:38:42.297 INFO [16305]: SERVER_NAME = oameye.works.coregrade.com -- 12:38:42.297 INFO [16305]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=pj91rv0h16f3qlli1gngl674si73d7r0 -- 12:38:42.297 INFO [16305]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 12:38:42.297 INFO [16305]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:38:42.308 INFO [16305]: COREGRADE is stopping... -- 12:38:42.308 DEBUG [16305]: Closing database connection -- 12:38:42.308 SQL [16305]: pgsql_close() -- 12:38:42.980 INFO [16305]: COREGRADE is starting... -- 12:38:42.980 INFO [16305]: Version from config: 1.0 -- 12:38:42.980 DEBUG [16305]: Connecting to database... -- 12:38:42.980 DEBUG [16305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:38:42.980 SQL [16305]: pgsql_db_connect() -- 12:38:42.984 DEBUG [16305]: Database connection successful -- 12:38:42.984 INFO [16305]: _SERVER found -- 12:38:42.984 INFO [16305]: REMOTE_ADDR = 192.168.1.13 -- 12:38:42.984 INFO [16305]: SERVER_NAME = oameye.works.coregrade.com -- 12:38:42.984 INFO [16305]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=pj91rv0h16f3qlli1gngl674si73d7r0 -- 12:38:42.984 INFO [16305]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:38:42.984 INFO [16305]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:38:42.995 INFO [16305]: COREGRADE is stopping... -- 12:38:42.995 DEBUG [16305]: Closing database connection -- 12:38:42.995 SQL [16305]: pgsql_close() -- 12:58:16.228 INFO [22138]: COREGRADE is starting... -- 12:58:16.228 INFO [22138]: Version from config: 1.0 -- 12:58:16.228 DEBUG [22138]: Connecting to database... -- 12:58:16.229 DEBUG [22138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:58:16.229 SQL [22138]: pgsql_db_connect() -- 12:58:16.233 DEBUG [22138]: Database connection successful -- 12:58:16.233 INFO [22138]: _SERVER found -- 12:58:16.233 INFO [22138]: REMOTE_ADDR = 192.168.1.13 -- 12:58:16.233 INFO [22138]: SERVER_NAME = tokslaw.works.coregrade.com -- 12:58:16.233 INFO [22138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361 -- 12:58:16.233 INFO [22138]: QUERY_STRING = -- 12:58:16.233 INFO [22138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:58:16.278 INFO [22138]: COREGRADE is stopping... -- 12:58:16.278 DEBUG [22138]: Closing database connection -- 12:58:16.278 SQL [22138]: pgsql_close() -- 12:58:21.402 INFO [22138]: COREGRADE is starting... -- 12:58:21.402 INFO [22138]: Version from config: 1.0 -- 12:58:21.402 DEBUG [22138]: Connecting to database... -- 12:58:21.402 DEBUG [22138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:58:21.402 SQL [22138]: pgsql_db_connect() -- 12:58:21.406 DEBUG [22138]: Database connection successful -- 12:58:21.406 INFO [22138]: _SERVER found -- 12:58:21.406 INFO [22138]: REMOTE_ADDR = 192.168.1.13 -- 12:58:21.406 INFO [22138]: SERVER_NAME = tokslaw.works.coregrade.com -- 12:58:21.406 INFO [22138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=cmn1gn5dqd8leugnccs6q9h564bc2l6o; _gat_gtag_UA_54829827_2=1 -- 12:58:21.406 INFO [22138]: QUERY_STRING = /auth -- 12:58:21.406 INFO [22138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:58:21.418 INFO [22138]: COREGRADE is stopping... -- 12:58:21.418 DEBUG [22138]: Closing database connection -- 12:58:21.418 SQL [22138]: pgsql_close() -- 12:58:25.320 INFO [22138]: COREGRADE is starting... -- 12:58:25.321 INFO [22138]: Version from config: 1.0 -- 12:58:25.321 DEBUG [22138]: Connecting to database... -- 12:58:25.321 DEBUG [22138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:58:25.321 SQL [22138]: pgsql_db_connect() -- 12:58:25.325 DEBUG [22138]: Database connection successful -- 12:58:25.325 INFO [22138]: _SERVER found -- 12:58:25.325 INFO [22138]: REMOTE_ADDR = 192.168.1.13 -- 12:58:25.325 INFO [22138]: SERVER_NAME = tokslaw.works.coregrade.com -- 12:58:25.325 INFO [22138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=cmn1gn5dqd8leugnccs6q9h564bc2l6o; _gat_gtag_UA_54829827_2=1 -- 12:58:25.325 INFO [22138]: QUERY_STRING = /auth -- 12:58:25.325 INFO [22138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:58:25.336 INFO [22138]: COREGRADE is stopping... -- 12:58:25.336 DEBUG [22138]: Closing database connection -- 12:58:25.336 SQL [22138]: pgsql_close() -- 12:58:36.818 INFO [22139]: COREGRADE is starting... -- 12:58:36.818 INFO [22139]: Version from config: 1.0 -- 12:58:36.818 DEBUG [22139]: Connecting to database... -- 12:58:36.818 DEBUG [22139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:58:36.818 SQL [22139]: pgsql_db_connect() -- 12:58:36.822 DEBUG [22139]: Database connection successful -- 12:58:36.822 INFO [22139]: _SERVER found -- 12:58:36.822 INFO [22139]: REMOTE_ADDR = 192.168.1.13 -- 12:58:36.822 INFO [22139]: SERVER_NAME = tokslaw.works.coregrade.com -- 12:58:36.822 INFO [22139]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=cmn1gn5dqd8leugnccs6q9h564bc2l6o; _gat_gtag_UA_54829827_2=1 -- 12:58:36.822 INFO [22139]: QUERY_STRING = /auth -- 12:58:36.822 INFO [22139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:58:36.836 INFO [22139]: COREGRADE is stopping... -- 12:58:36.836 DEBUG [22139]: Closing database connection -- 12:58:36.836 SQL [22139]: pgsql_close() -- 12:58:44.023 INFO [22140]: COREGRADE is starting... -- 12:58:44.023 INFO [22140]: Version from config: 1.0 -- 12:58:44.023 DEBUG [22140]: Connecting to database... -- 12:58:44.023 DEBUG [22140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:58:44.023 SQL [22140]: pgsql_db_connect() -- 12:58:44.027 DEBUG [22140]: Database connection successful -- 12:58:44.027 INFO [22140]: _SERVER found -- 12:58:44.027 INFO [22140]: REMOTE_ADDR = 192.168.1.13 -- 12:58:44.027 INFO [22140]: SERVER_NAME = tokslaw.works.coregrade.com -- 12:58:44.027 INFO [22140]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=cmn1gn5dqd8leugnccs6q9h564bc2l6o; _gat_gtag_UA_54829827_2=1 -- 12:58:44.027 INFO [22140]: QUERY_STRING = -- 12:58:44.027 INFO [22140]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:58:44.070 INFO [22140]: COREGRADE is stopping... -- 12:58:44.070 DEBUG [22140]: Closing database connection -- 12:58:44.070 SQL [22140]: pgsql_close() -- 12:58:49.552 INFO [22142]: COREGRADE is starting... -- 12:58:49.552 INFO [22142]: Version from config: 1.0 -- 12:58:49.552 DEBUG [22142]: Connecting to database... -- 12:58:49.553 DEBUG [22142]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:58:49.553 SQL [22142]: pgsql_db_connect() -- 12:58:49.557 DEBUG [22142]: Database connection successful -- 12:58:49.557 INFO [22142]: _SERVER found -- 12:58:49.557 INFO [22142]: REMOTE_ADDR = 192.168.1.13 -- 12:58:49.557 INFO [22142]: SERVER_NAME = tokslaw.works.coregrade.com -- 12:58:49.557 INFO [22142]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=cmn1gn5dqd8leugnccs6q9h564bc2l6o; _gat_gtag_UA_54829827_2=1 -- 12:58:49.557 INFO [22142]: QUERY_STRING = /auth -- 12:58:49.557 INFO [22142]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:58:49.571 INFO [22142]: COREGRADE is stopping... -- 12:58:49.571 DEBUG [22142]: Closing database connection -- 12:58:49.571 SQL [22142]: pgsql_close() -- 13:28:29.159 INFO [22143]: COREGRADE is starting... -- 13:28:29.159 INFO [22143]: Version from config: 1.0 -- 13:28:29.159 DEBUG [22143]: Connecting to database... -- 13:28:29.159 DEBUG [22143]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:28:29.159 SQL [22143]: pgsql_db_connect() -- 13:28:29.164 DEBUG [22143]: Database connection successful -- 13:28:29.164 INFO [22143]: _SERVER found -- 13:28:29.164 INFO [22143]: REMOTE_ADDR = 192.168.1.13 -- 13:28:29.164 INFO [22143]: SERVER_NAME = oameye.works.coregrade.com -- 13:28:29.164 INFO [22143]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=lqe0a84rqtktcdagilmvupsj7ncpg391 -- 13:28:29.164 INFO [22143]: QUERY_STRING = /auth -- 13:28:29.164 INFO [22143]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:28:29.203 INFO [22143]: COREGRADE is stopping... -- 13:28:29.203 DEBUG [22143]: Closing database connection -- 13:28:29.203 SQL [22143]: pgsql_close() -- 13:28:29.488 INFO [22143]: COREGRADE is starting... -- 13:28:29.488 INFO [22143]: Version from config: 1.0 -- 13:28:29.488 DEBUG [22143]: Connecting to database... -- 13:28:29.488 DEBUG [22143]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:28:29.488 SQL [22143]: pgsql_db_connect() -- 13:28:29.498 INFO [22209]: COREGRADE is starting... -- 13:28:29.499 INFO [22209]: Version from config: 1.0 -- 13:28:29.499 DEBUG [22209]: Connecting to database... -- 13:28:29.499 DEBUG [22209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:28:29.499 SQL [22209]: pgsql_db_connect() -- 13:28:29.492 DEBUG [22143]: Database connection successful -- 13:28:29.492 INFO [22143]: _SERVER found -- 13:28:29.492 INFO [22143]: REMOTE_ADDR = 192.168.1.13 -- 13:28:29.492 INFO [22143]: SERVER_NAME = oameye.works.coregrade.com -- 13:28:29.492 INFO [22143]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=qvj47tve328sq79v3fbd5okan62ng4n7 -- 13:28:29.492 INFO [22143]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:28:29.492 INFO [22143]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:28:29.505 INFO [22143]: COREGRADE is stopping... -- 13:28:29.505 DEBUG [22143]: Closing database connection -- 13:28:29.505 SQL [22143]: pgsql_close() -- 13:28:29.503 DEBUG [22209]: Database connection successful -- 13:28:29.503 INFO [22209]: _SERVER found -- 13:28:29.503 INFO [22209]: REMOTE_ADDR = 192.168.1.13 -- 13:28:29.503 INFO [22209]: SERVER_NAME = oameye.works.coregrade.com -- 13:28:29.503 INFO [22209]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=qvj47tve328sq79v3fbd5okan62ng4n7 -- 13:28:29.503 INFO [22209]: QUERY_STRING = /app-assets/data/locales/en.json -- 13:28:29.503 INFO [22209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:28:29.517 INFO [22209]: COREGRADE is stopping... -- 13:28:29.517 DEBUG [22209]: Closing database connection -- 13:28:29.517 SQL [22209]: pgsql_close() -- 13:28:35.353 INFO [22138]: COREGRADE is starting... -- 13:28:35.353 INFO [22138]: Version from config: 1.0 -- 13:28:35.353 DEBUG [22138]: Connecting to database... -- 13:28:35.353 DEBUG [22138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:28:35.353 SQL [22138]: pgsql_db_connect() -- 13:28:35.357 DEBUG [22138]: Database connection successful -- 13:28:35.357 INFO [22138]: _SERVER found -- 13:28:35.357 INFO [22138]: REMOTE_ADDR = 192.168.1.13 -- 13:28:35.357 INFO [22138]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:28:35.357 INFO [22138]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 13:28:35.357 INFO [22138]: QUERY_STRING = /auth -- 13:28:35.357 INFO [22138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:28:35.369 INFO [22138]: COREGRADE is stopping... -- 13:28:35.369 DEBUG [22138]: Closing database connection -- 13:28:35.369 SQL [22138]: pgsql_close() -- 13:28:35.433 INFO [22138]: COREGRADE is starting... -- 13:28:35.433 INFO [22138]: Version from config: 1.0 -- 13:28:35.433 DEBUG [22138]: Connecting to database... -- 13:28:35.433 DEBUG [22138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:28:35.433 SQL [22138]: pgsql_db_connect() -- 13:28:35.437 DEBUG [22138]: Database connection successful -- 13:28:35.437 INFO [22138]: _SERVER found -- 13:28:35.437 INFO [22138]: REMOTE_ADDR = 192.168.1.13 -- 13:28:35.437 INFO [22138]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:28:35.437 INFO [22138]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 13:28:35.437 INFO [22138]: QUERY_STRING = /favicon.ico -- 13:28:35.437 INFO [22138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:28:35.448 INFO [22138]: COREGRADE is stopping... -- 13:28:35.448 DEBUG [22138]: Closing database connection -- 13:28:35.448 SQL [22138]: pgsql_close() -- 13:28:38.412 INFO [22138]: COREGRADE is starting... -- 13:28:38.412 INFO [22138]: Version from config: 1.0 -- 13:28:38.412 DEBUG [22138]: Connecting to database... -- 13:28:38.412 DEBUG [22138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:28:38.412 SQL [22138]: pgsql_db_connect() -- 13:28:38.416 DEBUG [22138]: Database connection successful -- 13:28:38.416 INFO [22138]: _SERVER found -- 13:28:38.416 INFO [22138]: REMOTE_ADDR = 192.168.1.13 -- 13:28:38.416 INFO [22138]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:28:38.416 INFO [22138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=cmn1gn5dqd8leugnccs6q9h564bc2l6o -- 13:28:38.416 INFO [22138]: QUERY_STRING = -- 13:28:38.416 INFO [22138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:28:38.451 INFO [22138]: COREGRADE is stopping... -- 13:28:38.451 DEBUG [22138]: Closing database connection -- 13:28:38.451 SQL [22138]: pgsql_close() -- 13:28:43.403 INFO [22138]: COREGRADE is starting... -- 13:28:43.403 INFO [22138]: Version from config: 1.0 -- 13:28:43.403 DEBUG [22138]: Connecting to database... -- 13:28:43.403 DEBUG [22138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:28:43.403 SQL [22138]: pgsql_db_connect() -- 13:28:43.407 DEBUG [22138]: Database connection successful -- 13:28:43.407 INFO [22138]: _SERVER found -- 13:28:43.407 INFO [22138]: REMOTE_ADDR = 192.168.1.13 -- 13:28:43.407 INFO [22138]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:28:43.407 INFO [22138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r2k1ldsrus1v8of1iifq7ge30oe2053k; _gat_gtag_UA_54829827_2=1 -- 13:28:43.407 INFO [22138]: QUERY_STRING = /auth -- 13:28:43.407 INFO [22138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:28:43.419 INFO [22138]: COREGRADE is stopping... -- 13:28:43.419 DEBUG [22138]: Closing database connection -- 13:28:43.419 SQL [22138]: pgsql_close() -- 13:28:45.931 INFO [22138]: COREGRADE is starting... -- 13:28:45.931 INFO [22138]: Version from config: 1.0 -- 13:28:45.931 DEBUG [22138]: Connecting to database... -- 13:28:45.931 DEBUG [22138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:28:45.931 SQL [22138]: pgsql_db_connect() -- 13:28:45.935 DEBUG [22138]: Database connection successful -- 13:28:45.935 INFO [22138]: _SERVER found -- 13:28:45.935 INFO [22138]: REMOTE_ADDR = 192.168.1.13 -- 13:28:45.935 INFO [22138]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:28:45.935 INFO [22138]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r2k1ldsrus1v8of1iifq7ge30oe2053k; _gat_gtag_UA_54829827_2=1 -- 13:28:45.935 INFO [22138]: QUERY_STRING = /auth -- 13:28:45.935 INFO [22138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:28:45.947 INFO [22138]: COREGRADE is stopping... -- 13:28:45.947 DEBUG [22138]: Closing database connection -- 13:28:45.947 SQL [22138]: pgsql_close() -- 13:28:50.599 INFO [22139]: COREGRADE is starting... -- 13:28:50.599 INFO [22139]: Version from config: 1.0 -- 13:28:50.599 DEBUG [22139]: Connecting to database... -- 13:28:50.599 DEBUG [22139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:28:50.599 SQL [22139]: pgsql_db_connect() -- 13:28:50.603 DEBUG [22139]: Database connection successful -- 13:28:50.603 INFO [22139]: _SERVER found -- 13:28:50.603 INFO [22139]: REMOTE_ADDR = 192.168.1.13 -- 13:28:50.603 INFO [22139]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:28:50.603 INFO [22139]: QUERY_STRING = /auth -- 13:28:50.603 INFO [22139]: HTTP_X_FORWARDED_FOR = 52.114.128.37 -- 13:28:50.615 INFO [22139]: COREGRADE is stopping... -- 13:28:50.615 DEBUG [22139]: Closing database connection -- 13:28:50.615 SQL [22139]: pgsql_close() -- 13:28:59.685 INFO [22140]: COREGRADE is starting... -- 13:28:59.686 INFO [22140]: Version from config: 1.0 -- 13:28:59.686 DEBUG [22140]: Connecting to database... -- 13:28:59.686 DEBUG [22140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:28:59.686 SQL [22140]: pgsql_db_connect() -- 13:28:59.690 DEBUG [22140]: Database connection successful -- 13:28:59.690 INFO [22140]: _SERVER found -- 13:28:59.690 INFO [22140]: REMOTE_ADDR = 192.168.1.13 -- 13:28:59.690 INFO [22140]: SERVER_NAME = oameye.works.coregrade.com -- 13:28:59.690 INFO [22140]: QUERY_STRING = /auth -- 13:28:59.690 INFO [22140]: HTTP_X_FORWARDED_FOR = 52.114.128.37 -- 13:28:59.724 INFO [22140]: COREGRADE is stopping... -- 13:28:59.724 DEBUG [22140]: Closing database connection -- 13:28:59.724 SQL [22140]: pgsql_close() -- 13:29:23.533 INFO [22142]: COREGRADE is starting... -- 13:29:23.533 INFO [22142]: Version from config: 1.0 -- 13:29:23.533 DEBUG [22142]: Connecting to database... -- 13:29:23.533 DEBUG [22142]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:23.533 SQL [22142]: pgsql_db_connect() -- 13:29:23.537 DEBUG [22142]: Database connection successful -- 13:29:23.537 INFO [22142]: _SERVER found -- 13:29:23.537 INFO [22142]: REMOTE_ADDR = 192.168.1.13 -- 13:29:23.537 INFO [22142]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:29:23.537 INFO [22142]: QUERY_STRING = /auth -- 13:29:23.537 INFO [22142]: HTTP_X_FORWARDED_FOR = 176.117.172.40 -- 13:29:23.550 INFO [22142]: COREGRADE is stopping... -- 13:29:23.550 DEBUG [22142]: Closing database connection -- 13:29:23.550 SQL [22142]: pgsql_close() -- 13:29:23.921 INFO [22142]: COREGRADE is starting... -- 13:29:23.922 INFO [22142]: Version from config: 1.0 -- 13:29:23.922 DEBUG [22142]: Connecting to database... -- 13:29:23.922 DEBUG [22142]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:23.922 SQL [22142]: pgsql_db_connect() -- 13:29:23.926 DEBUG [22142]: Database connection successful -- 13:29:23.926 INFO [22142]: _SERVER found -- 13:29:23.926 INFO [22142]: REMOTE_ADDR = 192.168.1.13 -- 13:29:23.926 INFO [22142]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:29:23.926 INFO [22142]: QUERY_STRING = /favicon.ico -- 13:29:23.926 INFO [22142]: HTTP_X_FORWARDED_FOR = 176.117.172.40 -- 13:29:23.938 INFO [22142]: COREGRADE is stopping... -- 13:29:23.938 DEBUG [22142]: Closing database connection -- 13:29:23.938 SQL [22142]: pgsql_close() -- 13:29:44.567 INFO [25511]: COREGRADE is starting... -- 13:29:44.568 INFO [25511]: Version from config: 1.0 -- 13:29:44.568 DEBUG [25511]: Connecting to database... -- 13:29:44.568 DEBUG [25511]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:44.568 SQL [25511]: pgsql_db_connect() -- 13:29:44.572 DEBUG [25511]: Database connection successful -- 13:29:44.572 INFO [25511]: _SERVER found -- 13:29:44.572 INFO [25511]: REMOTE_ADDR = 192.168.1.13 -- 13:29:44.572 INFO [25511]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:29:44.572 INFO [25511]: QUERY_STRING = /auth -- 13:29:44.572 INFO [25511]: HTTP_X_FORWARDED_FOR = 176.117.172.40 -- 13:29:44.586 INFO [25511]: COREGRADE is stopping... -- 13:29:44.586 DEBUG [25511]: Closing database connection -- 13:29:44.586 SQL [25511]: pgsql_close() -- 13:30:19.535 INFO [25515]: COREGRADE is starting... -- 13:30:19.535 INFO [25515]: Version from config: 1.0 -- 13:30:19.535 DEBUG [25515]: Connecting to database... -- 13:30:19.535 DEBUG [25515]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:30:19.535 SQL [25515]: pgsql_db_connect() -- 13:30:19.540 DEBUG [25515]: Database connection successful -- 13:30:19.540 INFO [25515]: _SERVER found -- 13:30:19.540 INFO [25515]: REMOTE_ADDR = 192.168.1.13 -- 13:30:19.540 INFO [25515]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:30:19.540 INFO [25515]: QUERY_STRING = /i.pph -- 13:30:19.540 INFO [25515]: HTTP_X_FORWARDED_FOR = 176.117.172.40 -- 13:30:19.554 INFO [25515]: COREGRADE is stopping... -- 13:30:19.554 DEBUG [25515]: Closing database connection -- 13:30:19.554 SQL [25515]: pgsql_close() -- 13:32:15.559 INFO [25684]: COREGRADE is starting... -- 13:32:15.559 INFO [25684]: Version from config: 1.0 -- 13:32:15.559 DEBUG [25684]: Connecting to database... -- 13:32:15.559 DEBUG [25684]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:32:15.559 SQL [25684]: pgsql_db_connect() -- 13:32:15.563 DEBUG [25684]: Database connection successful -- 13:32:15.563 INFO [25684]: _SERVER found -- 13:32:15.563 INFO [25684]: REMOTE_ADDR = 192.168.1.13 -- 13:32:15.563 INFO [25684]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:32:15.563 INFO [25684]: QUERY_STRING = -- 13:32:15.563 INFO [25684]: HTTP_X_FORWARDED_FOR = 176.117.172.40 -- 13:32:15.607 INFO [25684]: COREGRADE is stopping... -- 13:32:15.607 DEBUG [25684]: Closing database connection -- 13:32:15.607 SQL [25684]: pgsql_close() -- 13:32:35.622 INFO [25686]: COREGRADE is starting... -- 13:32:35.622 INFO [25686]: Version from config: 1.0 -- 13:32:35.622 DEBUG [25686]: Connecting to database... -- 13:32:35.623 DEBUG [25686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:32:35.623 SQL [25686]: pgsql_db_connect() -- 13:32:35.627 DEBUG [25686]: Database connection successful -- 13:32:35.627 INFO [25686]: _SERVER found -- 13:32:35.627 INFO [25686]: REMOTE_ADDR = 192.168.1.13 -- 13:32:35.627 INFO [25686]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:32:35.627 INFO [25686]: QUERY_STRING = -- 13:32:35.627 INFO [25686]: HTTP_X_FORWARDED_FOR = 52.114.77.26 -- 13:32:35.668 INFO [25686]: COREGRADE is stopping... -- 13:32:35.669 DEBUG [25686]: Closing database connection -- 13:32:35.669 SQL [25686]: pgsql_close() -- 13:32:38.082 INFO [25689]: COREGRADE is starting... -- 13:32:38.083 INFO [25689]: Version from config: 1.0 -- 13:32:38.083 DEBUG [25689]: Connecting to database... -- 13:32:38.083 DEBUG [25689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:32:38.083 SQL [25689]: pgsql_db_connect() -- 13:32:38.087 DEBUG [25689]: Database connection successful -- 13:32:38.087 INFO [25689]: _SERVER found -- 13:32:38.087 INFO [25689]: REMOTE_ADDR = 192.168.1.13 -- 13:32:38.087 INFO [25689]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:32:38.087 INFO [25689]: HTTP_COOKIE = ci_session=6gacu816riu7gjtqoro4t08fil71vvvb -- 13:32:38.087 INFO [25689]: QUERY_STRING = /auth -- 13:32:38.087 INFO [25689]: HTTP_X_FORWARDED_FOR = 176.117.172.40 -- 13:32:38.101 INFO [25689]: COREGRADE is stopping... -- 13:32:38.101 DEBUG [25689]: Closing database connection -- 13:32:38.101 SQL [25689]: pgsql_close() -- 13:32:49.262 INFO [25683]: COREGRADE is starting... -- 13:32:49.262 INFO [25683]: Version from config: 1.0 -- 13:32:49.262 DEBUG [25683]: Connecting to database... -- 13:32:49.262 DEBUG [25683]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:32:49.262 SQL [25683]: pgsql_db_connect() -- 13:32:49.266 DEBUG [25683]: Database connection successful -- 13:32:49.266 INFO [25683]: _SERVER found -- 13:32:49.266 INFO [25683]: REMOTE_ADDR = 192.168.1.13 -- 13:32:49.266 INFO [25683]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:32:49.266 INFO [25683]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r2k1ldsrus1v8of1iifq7ge30oe2053k -- 13:32:49.266 INFO [25683]: QUERY_STRING = /auth -- 13:32:49.266 INFO [25683]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:32:49.280 INFO [25683]: COREGRADE is stopping... -- 13:32:49.280 DEBUG [25683]: Closing database connection -- 13:32:49.280 SQL [25683]: pgsql_close() -- 13:32:49.578 INFO [25693]: COREGRADE is starting... -- 13:32:49.578 INFO [25693]: Version from config: 1.0 -- 13:32:49.578 DEBUG [25693]: Connecting to database... -- 13:32:49.578 DEBUG [25693]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:32:49.578 SQL [25693]: pgsql_db_connect() -- 13:32:49.583 DEBUG [25693]: Database connection successful -- 13:32:49.583 INFO [25693]: _SERVER found -- 13:32:49.583 INFO [25693]: REMOTE_ADDR = 192.168.1.13 -- 13:32:49.583 INFO [25693]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:32:49.583 INFO [25693]: QUERY_STRING = -- 13:32:49.583 INFO [25693]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:32:49.625 INFO [25693]: COREGRADE is stopping... -- 13:32:49.625 DEBUG [25693]: Closing database connection -- 13:32:49.625 SQL [25693]: pgsql_close() -- 13:32:51.213 INFO [25683]: COREGRADE is starting... -- 13:32:51.214 INFO [25683]: Version from config: 1.0 -- 13:32:51.214 DEBUG [25683]: Connecting to database... -- 13:32:51.214 DEBUG [25683]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:32:51.214 SQL [25683]: pgsql_db_connect() -- 13:32:51.218 DEBUG [25683]: Database connection successful -- 13:32:51.218 INFO [25683]: _SERVER found -- 13:32:51.218 INFO [25683]: REMOTE_ADDR = 192.168.1.13 -- 13:32:51.218 INFO [25683]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:32:51.218 INFO [25683]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r2k1ldsrus1v8of1iifq7ge30oe2053k -- 13:32:51.218 INFO [25683]: QUERY_STRING = /auth -- 13:32:51.218 INFO [25683]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:32:51.230 INFO [25683]: COREGRADE is stopping... -- 13:32:51.230 DEBUG [25683]: Closing database connection -- 13:32:51.230 SQL [25683]: pgsql_close() -- 13:32:53.389 INFO [25683]: COREGRADE is starting... -- 13:32:53.389 INFO [25683]: Version from config: 1.0 -- 13:32:53.389 DEBUG [25683]: Connecting to database... -- 13:32:53.390 DEBUG [25683]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:32:53.390 SQL [25683]: pgsql_db_connect() -- 13:32:53.394 DEBUG [25683]: Database connection successful -- 13:32:53.394 INFO [25683]: _SERVER found -- 13:32:53.394 INFO [25683]: REMOTE_ADDR = 192.168.1.13 -- 13:32:53.394 INFO [25683]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:32:53.394 INFO [25683]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r2k1ldsrus1v8of1iifq7ge30oe2053k -- 13:32:53.394 INFO [25683]: QUERY_STRING = /auth -- 13:32:53.394 INFO [25683]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:32:53.406 INFO [25683]: COREGRADE is stopping... -- 13:32:53.406 DEBUG [25683]: Closing database connection -- 13:32:53.406 SQL [25683]: pgsql_close() -- 13:32:54.020 INFO [25685]: COREGRADE is starting... -- 13:32:54.021 INFO [25685]: Version from config: 1.0 -- 13:32:54.021 DEBUG [25685]: Connecting to database... -- 13:32:54.021 DEBUG [25685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:32:54.021 SQL [25685]: pgsql_db_connect() -- 13:32:54.025 DEBUG [25685]: Database connection successful -- 13:32:54.025 INFO [25685]: _SERVER found -- 13:32:54.025 INFO [25685]: REMOTE_ADDR = 192.168.1.13 -- 13:32:54.025 INFO [25685]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:32:54.025 INFO [25685]: QUERY_STRING = /auth -- 13:32:54.025 INFO [25685]: HTTP_X_FORWARDED_FOR = 52.114.77.26 -- 13:32:54.039 INFO [25685]: COREGRADE is stopping... -- 13:32:54.039 DEBUG [25685]: Closing database connection -- 13:32:54.039 SQL [25685]: pgsql_close() -- 13:32:54.285 INFO [25693]: COREGRADE is starting... -- 13:32:54.285 INFO [25693]: Version from config: 1.0 -- 13:32:54.285 DEBUG [25693]: Connecting to database... -- 13:32:54.285 DEBUG [25693]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:32:54.286 SQL [25693]: pgsql_db_connect() -- 13:32:54.289 DEBUG [25693]: Database connection successful -- 13:32:54.289 INFO [25693]: _SERVER found -- 13:32:54.289 INFO [25693]: REMOTE_ADDR = 192.168.1.13 -- 13:32:54.289 INFO [25693]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:32:54.289 INFO [25693]: HTTP_COOKIE = ci_session=ib3k4ggr4po2a0fu7mq488e4jecncmrt; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1006330852.1581100371; _ga=GA1.2.1126635332.1581100371 -- 13:32:54.289 INFO [25693]: QUERY_STRING = /auth -- 13:32:54.290 INFO [25693]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:32:54.301 INFO [25693]: COREGRADE is stopping... -- 13:32:54.301 DEBUG [25693]: Closing database connection -- 13:32:54.301 SQL [25693]: pgsql_close() -- 13:34:04.082 INFO [25693]: COREGRADE is starting... -- 13:34:04.083 INFO [25693]: Version from config: 1.0 -- 13:34:04.083 DEBUG [25693]: Connecting to database... -- 13:34:04.083 DEBUG [25693]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:34:04.083 SQL [25693]: pgsql_db_connect() -- 13:34:04.087 DEBUG [25693]: Database connection successful -- 13:34:04.087 INFO [25693]: _SERVER found -- 13:34:04.087 INFO [25693]: REMOTE_ADDR = 192.168.1.13 -- 13:34:04.087 INFO [25693]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:34:04.087 INFO [25693]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r2k1ldsrus1v8of1iifq7ge30oe2053k; _gat_gtag_UA_54829827_2=1 -- 13:34:04.087 INFO [25693]: QUERY_STRING = -- 13:34:04.087 INFO [25693]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:34:04.121 INFO [25693]: COREGRADE is stopping... -- 13:34:04.121 DEBUG [25693]: Closing database connection -- 13:34:04.121 SQL [25693]: pgsql_close() -- 13:34:09.515 INFO [25686]: COREGRADE is starting... -- 13:34:09.516 INFO [25686]: Version from config: 1.0 -- 13:34:09.516 DEBUG [25686]: Connecting to database... -- 13:34:09.516 DEBUG [25686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:34:09.516 SQL [25686]: pgsql_db_connect() -- 13:34:09.520 DEBUG [25686]: Database connection successful -- 13:34:09.520 INFO [25686]: _SERVER found -- 13:34:09.520 INFO [25686]: REMOTE_ADDR = 192.168.1.13 -- 13:34:09.520 INFO [25686]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:34:09.520 INFO [25686]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; _gat_gtag_UA_54829827_2=1; ci_session=fp6kolshprr6kst2rb2blebavefiaubr -- 13:34:09.520 INFO [25686]: QUERY_STRING = /auth -- 13:34:09.520 INFO [25686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:34:09.531 INFO [25686]: COREGRADE is stopping... -- 13:34:09.531 DEBUG [25686]: Closing database connection -- 13:34:09.531 SQL [25686]: pgsql_close() -- 13:44:07.305 INFO [25877]: COREGRADE is starting... -- 13:44:07.305 INFO [25877]: Version from config: 1.0 -- 13:44:07.305 DEBUG [25877]: Connecting to database... -- 13:44:07.305 DEBUG [25877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:44:07.305 SQL [25877]: pgsql_db_connect() -- 13:44:07.310 DEBUG [25877]: Database connection successful -- 13:44:07.310 INFO [25877]: _SERVER found -- 13:44:07.310 INFO [25877]: REMOTE_ADDR = 192.168.1.13 -- 13:44:07.310 INFO [25877]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:44:07.310 INFO [25877]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=fp6kolshprr6kst2rb2blebavefiaubr -- 13:44:07.310 INFO [25877]: QUERY_STRING = /auth -- 13:44:07.310 INFO [25877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:44:07.325 INFO [25877]: COREGRADE is stopping... -- 13:44:07.325 DEBUG [25877]: Closing database connection -- 13:44:07.325 SQL [25877]: pgsql_close() -- 13:44:09.334 INFO [25877]: COREGRADE is starting... -- 13:44:09.334 INFO [25877]: Version from config: 1.0 -- 13:44:09.335 DEBUG [25877]: Connecting to database... -- 13:44:09.335 DEBUG [25877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:44:09.335 SQL [25877]: pgsql_db_connect() -- 13:44:09.339 DEBUG [25877]: Database connection successful -- 13:44:09.339 INFO [25877]: _SERVER found -- 13:44:09.339 INFO [25877]: REMOTE_ADDR = 192.168.1.13 -- 13:44:09.339 INFO [25877]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:44:09.339 INFO [25877]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=fp6kolshprr6kst2rb2blebavefiaubr -- 13:44:09.339 INFO [25877]: QUERY_STRING = /auth -- 13:44:09.339 INFO [25877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:44:09.351 INFO [25877]: COREGRADE is stopping... -- 13:44:09.351 DEBUG [25877]: Closing database connection -- 13:44:09.351 SQL [25877]: pgsql_close() -- 13:47:22.753 INFO [25867]: COREGRADE is starting... -- 13:47:22.754 INFO [25867]: Version from config: 1.0 -- 13:47:22.754 DEBUG [25867]: Connecting to database... -- 13:47:22.754 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:47:22.754 SQL [25867]: pgsql_db_connect() -- 13:47:22.758 DEBUG [25867]: Database connection successful -- 13:47:22.758 INFO [25867]: _SERVER found -- 13:47:22.758 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 13:47:22.758 INFO [25867]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:47:22.758 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=fp6kolshprr6kst2rb2blebavefiaubr -- 13:47:22.758 INFO [25867]: QUERY_STRING = /auth -- 13:47:22.758 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:47:22.771 INFO [25867]: COREGRADE is stopping... -- 13:47:22.771 DEBUG [25867]: Closing database connection -- 13:47:22.771 SQL [25867]: pgsql_close() -- 13:47:28.193 INFO [25868]: COREGRADE is starting... -- 13:47:28.193 INFO [25868]: Version from config: 1.0 -- 13:47:28.193 DEBUG [25868]: Connecting to database... -- 13:47:28.194 DEBUG [25868]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:47:28.194 SQL [25868]: pgsql_db_connect() -- 13:47:28.198 DEBUG [25868]: Database connection successful -- 13:47:28.198 INFO [25868]: _SERVER found -- 13:47:28.198 INFO [25868]: REMOTE_ADDR = 192.168.1.13 -- 13:47:28.198 INFO [25868]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:47:28.198 INFO [25868]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=fp6kolshprr6kst2rb2blebavefiaubr -- 13:47:28.198 INFO [25868]: QUERY_STRING = /auth -- 13:47:28.198 INFO [25868]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:47:28.210 INFO [25868]: COREGRADE is stopping... -- 13:47:28.210 DEBUG [25868]: Closing database connection -- 13:47:28.210 SQL [25868]: pgsql_close() -- 13:47:43.746 INFO [25870]: COREGRADE is starting... -- 13:47:43.746 INFO [25870]: Version from config: 1.0 -- 13:47:43.746 DEBUG [25870]: Connecting to database... -- 13:47:43.746 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:47:43.746 SQL [25870]: pgsql_db_connect() -- 13:47:43.750 DEBUG [25870]: Database connection successful -- 13:47:43.750 INFO [25870]: _SERVER found -- 13:47:43.750 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 13:47:43.750 INFO [25870]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:47:43.750 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=fp6kolshprr6kst2rb2blebavefiaubr -- 13:47:43.750 INFO [25870]: QUERY_STRING = -- 13:47:43.750 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:47:43.787 INFO [25870]: COREGRADE is stopping... -- 13:47:43.787 DEBUG [25870]: Closing database connection -- 13:47:43.787 SQL [25870]: pgsql_close() -- 13:47:49.399 INFO [25864]: COREGRADE is starting... -- 13:47:49.399 INFO [25864]: Version from config: 1.0 -- 13:47:49.399 DEBUG [25864]: Connecting to database... -- 13:47:49.399 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:47:49.399 SQL [25864]: pgsql_db_connect() -- 13:47:49.403 DEBUG [25864]: Database connection successful -- 13:47:49.403 INFO [25864]: _SERVER found -- 13:47:49.403 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 13:47:49.403 INFO [25864]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:47:49.403 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=q3v39mcadms64fo8uvrgqrfq04ijr5lp; _gat_gtag_UA_54829827_2=1 -- 13:47:49.403 INFO [25864]: QUERY_STRING = /auth -- 13:47:49.403 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:47:49.415 INFO [25864]: COREGRADE is stopping... -- 13:47:49.415 DEBUG [25864]: Closing database connection -- 13:47:49.415 SQL [25864]: pgsql_close() -- 13:48:34.413 INFO [25877]: COREGRADE is starting... -- 13:48:34.413 INFO [25877]: Version from config: 1.0 -- 13:48:34.413 DEBUG [25877]: Connecting to database... -- 13:48:34.413 DEBUG [25877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:48:34.413 SQL [25877]: pgsql_db_connect() -- 13:48:34.417 DEBUG [25877]: Database connection successful -- 13:48:34.417 INFO [25877]: _SERVER found -- 13:48:34.417 INFO [25877]: REMOTE_ADDR = 192.168.1.13 -- 13:48:34.417 INFO [25877]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:48:34.417 INFO [25877]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=q3v39mcadms64fo8uvrgqrfq04ijr5lp; _gat_gtag_UA_54829827_2=1 -- 13:48:34.417 INFO [25877]: QUERY_STRING = -- 13:48:34.417 INFO [25877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:48:34.458 INFO [25877]: COREGRADE is stopping... -- 13:48:34.458 DEBUG [25877]: Closing database connection -- 13:48:34.458 SQL [25877]: pgsql_close() -- 13:48:39.893 INFO [26044]: COREGRADE is starting... -- 13:48:39.893 INFO [26044]: Version from config: 1.0 -- 13:48:39.893 DEBUG [26044]: Connecting to database... -- 13:48:39.893 DEBUG [26044]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:48:39.893 SQL [26044]: pgsql_db_connect() -- 13:48:39.897 DEBUG [26044]: Database connection successful -- 13:48:39.897 INFO [26044]: _SERVER found -- 13:48:39.897 INFO [26044]: REMOTE_ADDR = 192.168.1.13 -- 13:48:39.897 INFO [26044]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:48:39.897 INFO [26044]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=q3v39mcadms64fo8uvrgqrfq04ijr5lp; _gat_gtag_UA_54829827_2=1 -- 13:48:39.897 INFO [26044]: QUERY_STRING = /auth -- 13:48:39.897 INFO [26044]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:48:39.912 INFO [26044]: COREGRADE is stopping... -- 13:48:39.912 DEBUG [26044]: Closing database connection -- 13:48:39.912 SQL [26044]: pgsql_close() -- 13:48:46.499 INFO [25866]: COREGRADE is starting... -- 13:48:46.500 INFO [25866]: Version from config: 1.0 -- 13:48:46.500 DEBUG [25866]: Connecting to database... -- 13:48:46.500 DEBUG [25866]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:48:46.500 SQL [25866]: pgsql_db_connect() -- 13:48:46.504 DEBUG [25866]: Database connection successful -- 13:48:46.504 INFO [25866]: _SERVER found -- 13:48:46.504 INFO [25866]: REMOTE_ADDR = 192.168.1.13 -- 13:48:46.504 INFO [25866]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:48:46.504 INFO [25866]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=q3v39mcadms64fo8uvrgqrfq04ijr5lp -- 13:48:46.504 INFO [25866]: QUERY_STRING = /auth -- 13:48:46.504 INFO [25866]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:48:46.518 INFO [25866]: COREGRADE is stopping... -- 13:48:46.518 DEBUG [25866]: Closing database connection -- 13:48:46.518 SQL [25866]: pgsql_close() -- 13:49:02.178 INFO [25865]: COREGRADE is starting... -- 13:49:02.178 INFO [25865]: Version from config: 1.0 -- 13:49:02.178 DEBUG [25865]: Connecting to database... -- 13:49:02.178 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:49:02.178 SQL [25865]: pgsql_db_connect() -- 13:49:02.182 DEBUG [25865]: Database connection successful -- 13:49:02.182 INFO [25865]: _SERVER found -- 13:49:02.182 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 13:49:02.182 INFO [25865]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:49:02.182 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=q3v39mcadms64fo8uvrgqrfq04ijr5lp -- 13:49:02.182 INFO [25865]: QUERY_STRING = /authworks -- 13:49:02.182 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:49:02.194 INFO [25865]: COREGRADE is stopping... -- 13:49:02.194 DEBUG [25865]: Closing database connection -- 13:49:02.194 SQL [25865]: pgsql_close() -- 13:49:16.426 INFO [25879]: COREGRADE is starting... -- 13:49:16.426 INFO [25879]: Version from config: 1.0 -- 13:49:16.426 DEBUG [25879]: Connecting to database... -- 13:49:16.426 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:49:16.426 SQL [25879]: pgsql_db_connect() -- 13:49:16.430 DEBUG [25879]: Database connection successful -- 13:49:16.430 INFO [25879]: _SERVER found -- 13:49:16.430 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 13:49:16.430 INFO [25879]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:49:16.430 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=q3v39mcadms64fo8uvrgqrfq04ijr5lp -- 13:49:16.430 INFO [25879]: QUERY_STRING = /auth -- 13:49:16.430 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:49:16.443 INFO [25879]: COREGRADE is stopping... -- 13:49:16.443 DEBUG [25879]: Closing database connection -- 13:49:16.443 SQL [25879]: pgsql_close() -- 13:50:43.838 INFO [25880]: COREGRADE is starting... -- 13:50:43.838 INFO [25880]: Version from config: 1.0 -- 13:50:43.838 DEBUG [25880]: Connecting to database... -- 13:50:43.838 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:43.838 SQL [25880]: pgsql_db_connect() -- 13:50:43.842 DEBUG [25880]: Database connection successful -- 13:50:43.842 INFO [25880]: _SERVER found -- 13:50:43.842 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 13:50:43.842 INFO [25880]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:50:43.842 INFO [25880]: HTTP_COOKIE = ci_session=ib3k4ggr4po2a0fu7mq488e4jecncmrt; _gid=GA1.2.1006330852.1581100371; _ga=GA1.2.1126635332.1581100371 -- 13:50:43.842 INFO [25880]: QUERY_STRING = /auth -- 13:50:43.842 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:50:43.855 INFO [25880]: COREGRADE is stopping... -- 13:50:43.855 DEBUG [25880]: Closing database connection -- 13:50:43.855 SQL [25880]: pgsql_close() -- 13:50:43.961 INFO [25867]: COREGRADE is starting... -- 13:50:43.961 INFO [25867]: Version from config: 1.0 -- 13:50:43.961 DEBUG [25867]: Connecting to database... -- 13:50:43.961 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:43.961 SQL [25867]: pgsql_db_connect() -- 13:50:43.965 DEBUG [25867]: Database connection successful -- 13:50:43.965 INFO [25867]: _SERVER found -- 13:50:43.965 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 13:50:43.965 INFO [25867]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:50:43.965 INFO [25867]: QUERY_STRING = /favicon.ico -- 13:50:43.965 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:50:43.976 INFO [25867]: COREGRADE is stopping... -- 13:50:43.976 DEBUG [25867]: Closing database connection -- 13:50:43.977 SQL [25867]: pgsql_close() -- 13:53:31.741 INFO [25868]: COREGRADE is starting... -- 13:53:31.742 INFO [25868]: Version from config: 1.0 -- 13:53:31.742 DEBUG [25868]: Connecting to database... -- 13:53:31.742 DEBUG [25868]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:53:31.742 SQL [25868]: pgsql_db_connect() -- 13:53:31.784 INFO [25868]: COREGRADE is starting... -- 13:53:31.784 INFO [25868]: Version from config: 1.0 -- 13:53:31.784 DEBUG [25868]: Connecting to database... -- 13:53:31.784 DEBUG [25868]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:53:31.784 SQL [25868]: pgsql_db_connect() -- 13:53:31.789 DEBUG [25868]: Database connection successful -- 13:53:31.789 INFO [25868]: _SERVER found -- 13:53:31.789 INFO [25868]: REMOTE_ADDR = 192.168.1.13 -- 13:53:31.789 INFO [25868]: SERVER_NAME = oameye.works.coregrade.com -- 13:53:31.789 INFO [25868]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=pj91rv0h16f3qlli1gngl674si73d7r0 -- 13:53:31.789 INFO [25868]: QUERY_STRING = -- 13:53:31.789 INFO [25868]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:53:31.789 INFO [25868]: SystemStatus()09-09-********~************ -- 13:53:31.789 INFO [25868]: long coregrade_api_main(CVars in, CVars &out) -- 13:53:31.789 INFO [25868]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 13:53:31.789 INFO [25868]: account calls -- 13:53:31.789 INFO [25868]: account_calls() -- 13:53:31.789 INFO [25868]: LoginCoreGradeAccount() -- 13:53:31.789 FLOG_MAX [25868]: REQ_STRING(username) -- 13:53:31.789 FLOG_MAX [25868]: REQ_STRING(password) -- 13:53:31.789 FLOG_MAX [25868]: REQ_STRING(sessionid) -- 13:53:31.789 FLOG_MAX [25868]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:53:31.789 SQL [25868]: pgsql_query() -- 13:53:31.789 SQL [25868]: About to run query: -- 13:53:31.789 SQL [25868]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 13:53:31.793 SQL [25868]: Found rows: 1 -- 13:53:31.793 FLOG_MAX [25868]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=15 -- 13:53:31.793 INFO [25868]: long SessionCheck(long uid, const char *sessionid, int create ) -- 13:53:31.793 SQL [25868]: pgsql_exec() -- 13:53:31.793 SQL [25868]: About to run query: -- 13:53:31.793 SQL [25868]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 13:53:31.795 SQL [25868]: PQcmdTuples: 1 -- 13:53:31.795 SQL [25868]: Affected rows: 1 -- 13:53:31.795 SQL [25868]: pgsql_exec() -- 13:53:31.795 SQL [25868]: About to run query: -- 13:53:31.795 SQL [25868]: DELETE FROM members_session WHERE member_id=7 -- 13:53:31.795 SQL [25868]: PQcmdTuples: 0 -- 13:53:31.795 SQL [25868]: Affected rows: 0 -- 13:53:31.795 SQL [25868]: pgsql_query() -- 13:53:31.795 SQL [25868]: About to run query: -- 13:53:31.795 SQL [25868]: SELECT * FROM members_session WHERE member_id=7 AND session<>'32C12ADDD7330636994B1F827E802C1C' -- 13:53:31.796 SQL [25868]: Found rows: 0 -- 13:53:31.796 SQL [25868]: Found rows: 0 -- 13:53:31.796 FLOG_MAX [25868]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:53:31.796 SQL [25868]: pgsql_query() -- 13:53:31.796 SQL [25868]: About to run query: -- 13:53:31.796 SQL [25868]: SELECT * FROM members_session WHERE member_id=7 AND session='32C12ADDD7330636994B1F827E802C1C' -- 13:53:31.796 SQL [25868]: Found rows: 0 -- 13:53:31.796 SQL [25868]: Found rows: 0 -- 13:53:31.796 FLOG_MAX [25868]: insert_db_record() -- 13:53:31.796 SQL [25868]: pgsql_exec() -- 13:53:31.796 SQL [25868]: About to run query: -- 13:53:31.796 SQL [25868]: INSERT INTO members_session (member_id,session) VALUES ('7','32C12ADDD7330636994B1F827E802C1C') -- 13:53:31.798 SQL [25868]: PQcmdTuples: 1 -- 13:53:31.798 SQL [25868]: Affected rows: 1 -- 13:53:31.798 FLOG_MAX [25868]: SELECT currval('members_session_id_seq') -- 13:53:31.798 SQL [25868]: pgsql_query() -- 13:53:31.798 SQL [25868]: About to run query: -- 13:53:31.798 SQL [25868]: SELECT currval('members_session_id_seq') -- 13:53:31.798 SQL [25868]: Found rows: 1 -- 13:53:31.798 INFO [25868]: CreateDefaultPage() -- 13:53:31.798 FLOG_MAX [25868]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:53:31.798 SQL [25868]: pgsql_query() -- 13:53:31.798 SQL [25868]: About to run query: -- 13:53:31.798 SQL [25868]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 13:53:31.799 SQL [25868]: Found rows: 1 -- 13:53:31.799 FLOG_MAX [25868]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 13:53:31.799 SQL [25868]: pgsql_query() -- 13:53:31.799 SQL [25868]: About to run query: -- 13:53:31.799 SQL [25868]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 13:53:31.799 SQL [25868]: Found rows: 1 -- 13:53:31.799 INFO [25868]: /CreateDefaultPage() -- 13:53:31.799 INFO [25868]: /LoginCoreGradeAccount() -- 13:53:31.799 INFO [25868]: RET: added=2020-02-05 09:42:12.816064 -- 13:53:31.799 INFO [25868]: RET: email=tokslaw@chiefsoft.com -- 13:53:31.799 INFO [25868]: RET: firstname=Tokunbo -- 13:53:31.799 INFO [25868]: RET: id=7 -- 13:53:31.799 INFO [25868]: RET: last_login= -- 13:53:31.799 INFO [25868]: RET: lastname=Lawal -- 13:53:31.799 INFO [25868]: RET: loc=192.168.1.13 -- 13:53:31.799 INFO [25868]: RET: member_id=7 -- 13:53:31.799 INFO [25868]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 13:53:31.799 INFO [25868]: RET: phone= -- 13:53:31.799 INFO [25868]: RET: pid= -- 13:53:31.799 INFO [25868]: RET: result=YES I GET TO BACK END -- 13:53:31.799 INFO [25868]: RET: sessionid=32C12ADDD7330636994B1F827E802C1C -- 13:53:31.799 INFO [25868]: RET: status=1 -- 13:53:31.799 INFO [25868]: RET: stauts=OK -- 13:53:31.799 INFO [25868]: RET: username=tokslaw@chiefsoft.com -- 13:53:31.799 INFO [25868]: RET: verified= -- 13:53:31.801 INFO [25868]: COREGRADE is stopping... -- 13:53:31.801 DEBUG [25868]: Closing database connection -- 13:53:31.801 SQL [25868]: pgsql_close() -- 13:53:31.746 DEBUG [25868]: Database connection successful -- 13:53:31.746 INFO [25868]: _SERVER found -- 13:53:31.746 INFO [25868]: REMOTE_ADDR = 192.168.1.13 -- 13:53:31.746 INFO [25868]: SERVER_NAME = oameye.works.coregrade.com -- 13:53:31.746 INFO [25868]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=pj91rv0h16f3qlli1gngl674si73d7r0 -- 13:53:31.746 INFO [25868]: QUERY_STRING = /auth -- 13:53:31.746 INFO [25868]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:53:31.801 INFO [25868]: COREGRADE is stopping... -- 13:53:31.801 DEBUG [25868]: Closing database connection -- 13:53:31.801 SQL [25868]: pgsql_close() -- 13:53:31.920 INFO [25868]: COREGRADE is starting... -- 13:53:31.921 INFO [25868]: Version from config: 1.0 -- 13:53:31.921 DEBUG [25868]: Connecting to database... -- 13:53:31.921 DEBUG [25868]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:53:31.921 SQL [25868]: pgsql_db_connect() -- 13:53:31.925 DEBUG [25868]: Database connection successful -- 13:53:31.925 INFO [25868]: _SERVER found -- 13:53:31.925 INFO [25868]: REMOTE_ADDR = 192.168.1.13 -- 13:53:31.925 INFO [25868]: SERVER_NAME = oameye.works.coregrade.com -- 13:53:31.925 INFO [25868]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=4ggh67oho36gaccgujuhsipfptqv4ui7 -- 13:53:31.925 INFO [25868]: QUERY_STRING = /member/index -- 13:53:31.925 INFO [25868]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:53:31.962 INFO [25868]: COREGRADE is stopping... -- 13:53:31.962 DEBUG [25868]: Closing database connection -- 13:53:31.962 SQL [25868]: pgsql_close() -- 13:53:32.232 INFO [25868]: COREGRADE is starting... -- 13:53:32.232 INFO [25868]: Version from config: 1.0 -- 13:53:32.232 DEBUG [25868]: Connecting to database... -- 13:53:32.232 DEBUG [25868]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:53:32.232 SQL [25868]: pgsql_db_connect() -- 13:53:32.237 DEBUG [25868]: Database connection successful -- 13:53:32.237 INFO [25868]: _SERVER found -- 13:53:32.237 INFO [25868]: REMOTE_ADDR = 192.168.1.13 -- 13:53:32.237 INFO [25868]: SERVER_NAME = oameye.works.coregrade.com -- 13:53:32.237 INFO [25868]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=4ggh67oho36gaccgujuhsipfptqv4ui7 -- 13:53:32.237 INFO [25868]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 13:53:32.237 INFO [25868]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:53:32.248 INFO [25868]: COREGRADE is stopping... -- 13:53:32.248 DEBUG [25868]: Closing database connection -- 13:53:32.248 SQL [25868]: pgsql_close() -- 13:53:32.321 INFO [25868]: COREGRADE is starting... -- 13:53:32.321 INFO [25868]: Version from config: 1.0 -- 13:53:32.321 DEBUG [25868]: Connecting to database... -- 13:53:32.321 DEBUG [25868]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:53:32.321 SQL [25868]: pgsql_db_connect() -- 13:53:32.326 DEBUG [25868]: Database connection successful -- 13:53:32.326 INFO [25868]: _SERVER found -- 13:53:32.326 INFO [25868]: REMOTE_ADDR = 192.168.1.13 -- 13:53:32.326 INFO [25868]: SERVER_NAME = oameye.works.coregrade.com -- 13:53:32.326 INFO [25868]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=4ggh67oho36gaccgujuhsipfptqv4ui7 -- 13:53:32.326 INFO [25868]: QUERY_STRING = /app-assets/data/locales/en.json -- 13:53:32.326 INFO [25868]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:53:32.337 INFO [25868]: COREGRADE is stopping... -- 13:53:32.337 DEBUG [25868]: Closing database connection -- 13:53:32.337 SQL [25868]: pgsql_close() -- 13:53:50.085 INFO [25870]: COREGRADE is starting... -- 13:53:50.085 INFO [25870]: Version from config: 1.0 -- 13:53:50.085 DEBUG [25870]: Connecting to database... -- 13:53:50.085 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:53:50.085 SQL [25870]: pgsql_db_connect() -- 13:53:50.090 DEBUG [25870]: Database connection successful -- 13:53:50.090 INFO [25870]: _SERVER found -- 13:53:50.090 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 13:53:50.090 INFO [25870]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:53:50.090 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=q3v39mcadms64fo8uvrgqrfq04ijr5lp -- 13:53:50.090 INFO [25870]: QUERY_STRING = -- 13:53:50.090 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:53:50.122 INFO [25870]: COREGRADE is stopping... -- 13:53:50.122 DEBUG [25870]: Closing database connection -- 13:53:50.122 SQL [25870]: pgsql_close() -- 13:53:57.152 INFO [25864]: COREGRADE is starting... -- 13:53:57.153 INFO [25864]: Version from config: 1.0 -- 13:53:57.153 DEBUG [25864]: Connecting to database... -- 13:53:57.153 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:53:57.153 SQL [25864]: pgsql_db_connect() -- 13:53:57.157 DEBUG [25864]: Database connection successful -- 13:53:57.157 INFO [25864]: _SERVER found -- 13:53:57.157 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 13:53:57.157 INFO [25864]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:53:57.157 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=aj8suruf1lk7f5fno4nj6oi1doo5gavf; _gat_gtag_UA_54829827_2=1 -- 13:53:57.157 INFO [25864]: QUERY_STRING = /member -- 13:53:57.157 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:53:57.191 INFO [25864]: COREGRADE is stopping... -- 13:53:57.191 DEBUG [25864]: Closing database connection -- 13:53:57.191 SQL [25864]: pgsql_close() -- 13:53:57.236 INFO [25864]: COREGRADE is starting... -- 13:53:57.237 INFO [25864]: Version from config: 1.0 -- 13:53:57.237 DEBUG [25864]: Connecting to database... -- 13:53:57.237 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:53:57.237 SQL [25864]: pgsql_db_connect() -- 13:53:57.241 DEBUG [25864]: Database connection successful -- 13:53:57.241 INFO [25864]: _SERVER found -- 13:53:57.241 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 13:53:57.241 INFO [25864]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:53:57.241 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=aj8suruf1lk7f5fno4nj6oi1doo5gavf; _gat_gtag_UA_54829827_2=1 -- 13:53:57.241 INFO [25864]: QUERY_STRING = -- 13:53:57.241 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:53:57.275 INFO [25864]: COREGRADE is stopping... -- 13:53:57.275 DEBUG [25864]: Closing database connection -- 13:53:57.275 SQL [25864]: pgsql_close() -- 13:54:12.658 INFO [25877]: COREGRADE is starting... -- 13:54:12.658 INFO [25877]: Version from config: 1.0 -- 13:54:12.658 DEBUG [25877]: Connecting to database... -- 13:54:12.658 DEBUG [25877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:54:12.658 SQL [25877]: pgsql_db_connect() -- 13:54:12.663 DEBUG [25877]: Database connection successful -- 13:54:12.663 INFO [25877]: _SERVER found -- 13:54:12.663 INFO [25877]: REMOTE_ADDR = 192.168.1.13 -- 13:54:12.663 INFO [25877]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:54:12.663 INFO [25877]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=aj8suruf1lk7f5fno4nj6oi1doo5gavf; _gat_gtag_UA_54829827_2=1 -- 13:54:12.663 INFO [25877]: QUERY_STRING = /auth/member -- 13:54:12.663 INFO [25877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:54:12.675 INFO [25877]: COREGRADE is stopping... -- 13:54:12.675 DEBUG [25877]: Closing database connection -- 13:54:12.675 SQL [25877]: pgsql_close() -- 13:55:44.435 INFO [26044]: COREGRADE is starting... -- 13:55:44.435 INFO [26044]: Version from config: 1.0 -- 13:55:44.435 DEBUG [26044]: Connecting to database... -- 13:55:44.435 DEBUG [26044]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:55:44.435 SQL [26044]: pgsql_db_connect() -- 13:55:44.440 DEBUG [26044]: Database connection successful -- 13:55:44.440 INFO [26044]: _SERVER found -- 13:55:44.440 INFO [26044]: REMOTE_ADDR = 192.168.1.13 -- 13:55:44.440 INFO [26044]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:55:44.440 INFO [26044]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=aj8suruf1lk7f5fno4nj6oi1doo5gavf -- 13:55:44.440 INFO [26044]: QUERY_STRING = /auth -- 13:55:44.440 INFO [26044]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:55:44.454 INFO [26044]: COREGRADE is stopping... -- 13:55:44.454 DEBUG [26044]: Closing database connection -- 13:55:44.454 SQL [26044]: pgsql_close() -- 14:00:21.934 INFO [25866]: COREGRADE is starting... -- 14:00:21.935 INFO [25866]: Version from config: 1.0 -- 14:00:21.935 DEBUG [25866]: Connecting to database... -- 14:00:21.935 DEBUG [25866]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:00:21.935 SQL [25866]: pgsql_db_connect() -- 14:00:21.940 DEBUG [25866]: Database connection successful -- 14:00:21.940 INFO [25866]: _SERVER found -- 14:00:21.940 INFO [25866]: REMOTE_ADDR = 192.168.1.13 -- 14:00:21.940 INFO [25866]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:00:21.940 INFO [25866]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=aj8suruf1lk7f5fno4nj6oi1doo5gavf -- 14:00:21.940 INFO [25866]: QUERY_STRING = /auth -- 14:00:21.940 INFO [25866]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:00:21.977 INFO [25866]: COREGRADE is stopping... -- 14:00:21.977 DEBUG [25866]: Closing database connection -- 14:00:21.977 SQL [25866]: pgsql_close() -- 14:00:22.360 INFO [25880]: COREGRADE is starting... -- 14:00:22.360 INFO [25880]: Version from config: 1.0 -- 14:00:22.360 DEBUG [25880]: Connecting to database... -- 14:00:22.360 INFO [25879]: COREGRADE is starting... -- 14:00:22.360 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:00:22.360 SQL [25880]: pgsql_db_connect() -- 14:00:22.360 INFO [25879]: Version from config: 1.0 -- 14:00:22.360 DEBUG [25879]: Connecting to database... -- 14:00:22.360 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:00:22.360 SQL [25879]: pgsql_db_connect() -- 14:00:22.364 DEBUG [25879]: Database connection successful -- 14:00:22.364 INFO [25879]: _SERVER found -- 14:00:22.364 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 14:00:22.364 INFO [25879]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:00:22.364 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vg86ub3v2ulh93ivdr6omcrgbeg1rnfv -- 14:00:22.364 INFO [25879]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:00:22.364 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:00:22.376 INFO [25879]: COREGRADE is stopping... -- 14:00:22.376 DEBUG [25879]: Closing database connection -- 14:00:22.376 SQL [25879]: pgsql_close() -- 14:00:22.364 DEBUG [25880]: Database connection successful -- 14:00:22.364 INFO [25880]: _SERVER found -- 14:00:22.364 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 14:00:22.364 INFO [25880]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:00:22.364 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vg86ub3v2ulh93ivdr6omcrgbeg1rnfv -- 14:00:22.364 INFO [25880]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:00:22.364 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:00:22.377 INFO [25880]: COREGRADE is stopping... -- 14:00:22.377 DEBUG [25880]: Closing database connection -- 14:00:22.377 SQL [25880]: pgsql_close() -- 14:00:38.732 INFO [25867]: COREGRADE is starting... -- 14:00:38.732 INFO [25867]: Version from config: 1.0 -- 14:00:38.732 DEBUG [25867]: Connecting to database... -- 14:00:38.732 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:00:38.732 SQL [25867]: pgsql_db_connect() -- 14:00:38.736 DEBUG [25867]: Database connection successful -- 14:00:38.736 INFO [25867]: _SERVER found -- 14:00:38.736 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 14:00:38.736 INFO [25867]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:00:38.736 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vg86ub3v2ulh93ivdr6omcrgbeg1rnfv -- 14:00:38.736 INFO [25867]: QUERY_STRING = /auth -- 14:00:38.736 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:00:38.814 INFO [25867]: COREGRADE is starting... -- 14:00:38.814 INFO [25867]: Version from config: 1.0 -- 14:00:38.814 DEBUG [25867]: Connecting to database... -- 14:00:38.815 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:00:38.815 SQL [25867]: pgsql_db_connect() -- 14:00:38.818 DEBUG [25867]: Database connection successful -- 14:00:38.818 INFO [25867]: _SERVER found -- 14:00:38.818 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 14:00:38.818 INFO [25867]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:00:38.818 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vg86ub3v2ulh93ivdr6omcrgbeg1rnfv -- 14:00:38.818 INFO [25867]: QUERY_STRING = /member/index -- 14:00:38.818 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:00:38.856 INFO [25867]: COREGRADE is stopping... -- 14:00:38.856 DEBUG [25867]: Closing database connection -- 14:00:38.856 SQL [25867]: pgsql_close() -- 14:00:39.169 INFO [25864]: COREGRADE is starting... -- 14:00:39.170 INFO [25864]: Version from config: 1.0 -- 14:00:39.170 DEBUG [25864]: Connecting to database... -- 14:00:39.170 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:00:39.170 SQL [25864]: pgsql_db_connect() -- 14:00:39.174 DEBUG [25864]: Database connection successful -- 14:00:39.174 INFO [25864]: _SERVER found -- 14:00:39.174 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 14:00:39.174 INFO [25864]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:00:39.174 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vg86ub3v2ulh93ivdr6omcrgbeg1rnfv -- 14:00:39.174 INFO [25864]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:00:39.174 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:00:39.185 INFO [25864]: COREGRADE is stopping... -- 14:00:39.185 DEBUG [25864]: Closing database connection -- 14:00:39.185 SQL [25864]: pgsql_close() -- 14:00:39.406 INFO [25867]: COREGRADE is starting... -- 14:00:39.406 INFO [25867]: Version from config: 1.0 -- 14:00:39.406 DEBUG [25867]: Connecting to database... -- 14:00:39.406 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:00:39.406 SQL [25867]: pgsql_db_connect() -- 14:00:39.410 DEBUG [25867]: Database connection successful -- 14:00:39.410 INFO [25867]: _SERVER found -- 14:00:39.410 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 14:00:39.410 INFO [25867]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:00:39.410 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vg86ub3v2ulh93ivdr6omcrgbeg1rnfv -- 14:00:39.410 INFO [25867]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:00:39.410 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:00:39.421 INFO [25867]: COREGRADE is stopping... -- 14:00:39.421 DEBUG [25867]: Closing database connection -- 14:00:39.421 SQL [25867]: pgsql_close() -- 14:00:44.247 INFO [25867]: COREGRADE is starting... -- 14:00:44.248 INFO [25867]: Version from config: 1.0 -- 14:00:44.248 DEBUG [25867]: Connecting to database... -- 14:00:44.248 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:00:44.248 SQL [25867]: pgsql_db_connect() -- 14:00:44.252 DEBUG [25867]: Database connection successful -- 14:00:44.252 INFO [25867]: _SERVER found -- 14:00:44.252 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 14:00:44.252 INFO [25867]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:00:44.252 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vg86ub3v2ulh93ivdr6omcrgbeg1rnfv -- 14:00:44.252 INFO [25867]: QUERY_STRING = /member/configure -- 14:00:44.252 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:00:44.290 INFO [25867]: COREGRADE is stopping... -- 14:00:44.290 DEBUG [25867]: Closing database connection -- 14:00:44.290 SQL [25867]: pgsql_close() -- 14:00:44.730 INFO [25867]: COREGRADE is starting... -- 14:00:44.731 INFO [25867]: Version from config: 1.0 -- 14:00:44.731 DEBUG [25867]: Connecting to database... -- 14:00:44.731 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:00:44.731 SQL [25867]: pgsql_db_connect() -- 14:00:44.735 DEBUG [25867]: Database connection successful -- 14:00:44.735 INFO [25867]: _SERVER found -- 14:00:44.735 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 14:00:44.735 INFO [25867]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:00:44.735 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vg86ub3v2ulh93ivdr6omcrgbeg1rnfv -- 14:00:44.735 INFO [25867]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:00:44.735 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:00:44.746 INFO [25867]: COREGRADE is stopping... -- 14:00:44.746 DEBUG [25867]: Closing database connection -- 14:00:44.746 SQL [25867]: pgsql_close() -- 14:00:44.759 INFO [25867]: COREGRADE is starting... -- 14:00:44.759 INFO [25867]: Version from config: 1.0 -- 14:00:44.759 DEBUG [25867]: Connecting to database... -- 14:00:44.759 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:00:44.759 SQL [25867]: pgsql_db_connect() -- 14:00:44.763 DEBUG [25867]: Database connection successful -- 14:00:44.763 INFO [25867]: _SERVER found -- 14:00:44.763 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 14:00:44.763 INFO [25867]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:00:44.763 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vg86ub3v2ulh93ivdr6omcrgbeg1rnfv -- 14:00:44.763 INFO [25867]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:00:44.763 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:00:44.774 INFO [25867]: COREGRADE is stopping... -- 14:00:44.774 DEBUG [25867]: Closing database connection -- 14:00:44.774 SQL [25867]: pgsql_close() -- 14:00:45.112 INFO [25867]: COREGRADE is starting... -- 14:00:45.112 INFO [25867]: Version from config: 1.0 -- 14:00:45.112 DEBUG [25867]: Connecting to database... -- 14:00:45.112 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:00:45.112 SQL [25867]: pgsql_db_connect() -- 14:00:45.116 DEBUG [25867]: Database connection successful -- 14:00:45.116 INFO [25867]: _SERVER found -- 14:00:45.116 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 14:00:45.116 INFO [25867]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:00:45.116 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vg86ub3v2ulh93ivdr6omcrgbeg1rnfv -- 14:00:45.116 INFO [25867]: QUERY_STRING = screen=member/app-email -- 14:00:45.116 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:00:45.127 INFO [25867]: COREGRADE is stopping... -- 14:00:45.127 DEBUG [25867]: Closing database connection -- 14:00:45.127 SQL [25867]: pgsql_close() -- 14:00:47.599 INFO [25867]: COREGRADE is starting... -- 14:00:47.599 INFO [25867]: Version from config: 1.0 -- 14:00:47.599 DEBUG [25867]: Connecting to database... -- 14:00:47.599 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:00:47.599 SQL [25867]: pgsql_db_connect() -- 14:00:47.603 DEBUG [25867]: Database connection successful -- 14:00:47.603 INFO [25867]: _SERVER found -- 14:00:47.603 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 14:00:47.603 INFO [25867]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:00:47.603 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vg86ub3v2ulh93ivdr6omcrgbeg1rnfv -- 14:00:47.603 INFO [25867]: QUERY_STRING = screen=member/app-email -- 14:00:47.603 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:00:47.615 INFO [25867]: COREGRADE is stopping... -- 14:00:47.615 DEBUG [25867]: Closing database connection -- 14:00:47.615 SQL [25867]: pgsql_close() -- 14:00:48.963 INFO [25867]: COREGRADE is starting... -- 14:00:48.964 INFO [25867]: Version from config: 1.0 -- 14:00:48.964 DEBUG [25867]: Connecting to database... -- 14:00:48.964 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:00:48.964 SQL [25867]: pgsql_db_connect() -- 14:00:48.968 DEBUG [25867]: Database connection successful -- 14:00:48.968 INFO [25867]: _SERVER found -- 14:00:48.968 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 14:00:48.968 INFO [25867]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:00:48.968 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vg86ub3v2ulh93ivdr6omcrgbeg1rnfv -- 14:00:48.968 INFO [25867]: QUERY_STRING = screen=member/app-email -- 14:00:48.968 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:00:48.979 INFO [25867]: COREGRADE is stopping... -- 14:00:48.979 DEBUG [25867]: Closing database connection -- 14:00:48.979 SQL [25867]: pgsql_close() -- 14:00:50.326 INFO [25867]: COREGRADE is starting... -- 14:00:50.326 INFO [25867]: Version from config: 1.0 -- 14:00:50.326 DEBUG [25867]: Connecting to database... -- 14:00:50.326 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:00:50.326 SQL [25867]: pgsql_db_connect() -- 14:00:50.330 DEBUG [25867]: Database connection successful -- 14:00:50.330 INFO [25867]: _SERVER found -- 14:00:50.330 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 14:00:50.330 INFO [25867]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:00:50.330 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vg86ub3v2ulh93ivdr6omcrgbeg1rnfv -- 14:00:50.330 INFO [25867]: QUERY_STRING = /member/configure -- 14:00:50.330 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:00:50.368 INFO [25867]: COREGRADE is stopping... -- 14:00:50.368 DEBUG [25867]: Closing database connection -- 14:00:50.368 SQL [25867]: pgsql_close() -- 14:00:52.415 INFO [25867]: COREGRADE is starting... -- 14:00:52.415 INFO [25867]: Version from config: 1.0 -- 14:00:52.415 DEBUG [25867]: Connecting to database... -- 14:00:52.415 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:00:52.415 SQL [25867]: pgsql_db_connect() -- 14:00:52.419 DEBUG [25867]: Database connection successful -- 14:00:52.419 INFO [25867]: _SERVER found -- 14:00:52.419 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 14:00:52.419 INFO [25867]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:00:52.419 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vg86ub3v2ulh93ivdr6omcrgbeg1rnfv -- 14:00:52.419 INFO [25867]: QUERY_STRING = /member -- 14:00:52.419 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:00:52.456 INFO [25867]: COREGRADE is stopping... -- 14:00:52.456 DEBUG [25867]: Closing database connection -- 14:00:52.456 SQL [25867]: pgsql_close() -- 14:00:52.612 INFO [25867]: COREGRADE is starting... -- 14:00:52.612 INFO [25867]: Version from config: 1.0 -- 14:00:52.612 DEBUG [25867]: Connecting to database... -- 14:00:52.612 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:00:52.612 SQL [25867]: pgsql_db_connect() -- 14:00:52.617 DEBUG [25867]: Database connection successful -- 14:00:52.617 INFO [25867]: _SERVER found -- 14:00:52.617 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 14:00:52.617 INFO [25867]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:00:52.617 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vg86ub3v2ulh93ivdr6omcrgbeg1rnfv -- 14:00:52.617 INFO [25867]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:00:52.617 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:00:52.628 INFO [25867]: COREGRADE is stopping... -- 14:00:52.628 DEBUG [25867]: Closing database connection -- 14:00:52.628 SQL [25867]: pgsql_close() -- 14:00:52.632 INFO [25865]: COREGRADE is starting... -- 14:00:52.633 INFO [25865]: Version from config: 1.0 -- 14:00:52.633 DEBUG [25865]: Connecting to database... -- 14:00:52.633 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:00:52.633 SQL [25865]: pgsql_db_connect() -- 14:00:52.636 DEBUG [25865]: Database connection successful -- 14:00:52.636 INFO [25865]: _SERVER found -- 14:00:52.636 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 14:00:52.636 INFO [25865]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:00:52.636 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vg86ub3v2ulh93ivdr6omcrgbeg1rnfv -- 14:00:52.636 INFO [25865]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:00:52.636 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:00:52.648 INFO [25865]: COREGRADE is stopping... -- 14:00:52.648 DEBUG [25865]: Closing database connection -- 14:00:52.648 SQL [25865]: pgsql_close() -- 14:01:24.854 INFO [25879]: COREGRADE is starting... -- 14:01:24.854 INFO [25879]: Version from config: 1.0 -- 14:01:24.854 DEBUG [25879]: Connecting to database... -- 14:01:24.854 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:01:24.854 SQL [25879]: pgsql_db_connect() -- 14:01:24.858 DEBUG [25879]: Database connection successful -- 14:01:24.858 INFO [25879]: _SERVER found -- 14:01:24.858 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 14:01:24.858 INFO [25879]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:01:24.858 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vg86ub3v2ulh93ivdr6omcrgbeg1rnfv -- 14:01:24.858 INFO [25879]: QUERY_STRING = /member/page -- 14:01:24.858 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:01:24.894 INFO [25879]: COREGRADE is stopping... -- 14:01:24.894 DEBUG [25879]: Closing database connection -- 14:01:24.894 SQL [25879]: pgsql_close() -- 14:01:25.275 INFO [25879]: COREGRADE is starting... -- 14:01:25.275 INFO [25879]: Version from config: 1.0 -- 14:01:25.275 DEBUG [25879]: Connecting to database... -- 14:01:25.275 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:01:25.275 SQL [25879]: pgsql_db_connect() -- 14:01:25.279 DEBUG [25879]: Database connection successful -- 14:01:25.279 INFO [25879]: _SERVER found -- 14:01:25.279 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 14:01:25.279 INFO [25879]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:01:25.279 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vg86ub3v2ulh93ivdr6omcrgbeg1rnfv -- 14:01:25.279 INFO [25879]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:01:25.279 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:01:25.290 INFO [25879]: COREGRADE is stopping... -- 14:01:25.290 DEBUG [25879]: Closing database connection -- 14:01:25.290 SQL [25879]: pgsql_close() -- 14:01:25.296 INFO [25880]: COREGRADE is starting... -- 14:01:25.297 INFO [25880]: Version from config: 1.0 -- 14:01:25.297 DEBUG [25880]: Connecting to database... -- 14:01:25.297 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:01:25.297 SQL [25880]: pgsql_db_connect() -- 14:01:25.300 DEBUG [25880]: Database connection successful -- 14:01:25.300 INFO [25880]: _SERVER found -- 14:01:25.300 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 14:01:25.300 INFO [25880]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:01:25.300 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vg86ub3v2ulh93ivdr6omcrgbeg1rnfv -- 14:01:25.300 INFO [25880]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:01:25.300 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:01:25.313 INFO [25880]: COREGRADE is stopping... -- 14:01:25.313 DEBUG [25880]: Closing database connection -- 14:01:25.313 SQL [25880]: pgsql_close() -- 14:01:38.203 INFO [26604]: COREGRADE is starting... -- 14:01:38.203 INFO [26604]: Version from config: 1.0 -- 14:01:38.203 DEBUG [26604]: Connecting to database... -- 14:01:38.203 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:01:38.203 SQL [26604]: pgsql_db_connect() -- 14:01:38.208 DEBUG [26604]: Database connection successful -- 14:01:38.208 INFO [26604]: _SERVER found -- 14:01:38.208 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 14:01:38.208 INFO [26604]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:01:38.208 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vg86ub3v2ulh93ivdr6omcrgbeg1rnfv -- 14:01:38.208 INFO [26604]: QUERY_STRING = /member/page -- 14:01:38.208 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:01:38.248 INFO [26604]: COREGRADE is stopping... -- 14:01:38.248 DEBUG [26604]: Closing database connection -- 14:01:38.248 SQL [26604]: pgsql_close() -- 14:01:38.500 INFO [26604]: COREGRADE is starting... -- 14:01:38.500 INFO [26604]: Version from config: 1.0 -- 14:01:38.500 DEBUG [26604]: Connecting to database... -- 14:01:38.500 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:01:38.500 SQL [26604]: pgsql_db_connect() -- 14:01:38.504 DEBUG [26604]: Database connection successful -- 14:01:38.504 INFO [26604]: _SERVER found -- 14:01:38.504 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 14:01:38.504 INFO [26604]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:01:38.504 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vg86ub3v2ulh93ivdr6omcrgbeg1rnfv -- 14:01:38.504 INFO [26604]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:01:38.504 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:01:38.515 INFO [26604]: COREGRADE is stopping... -- 14:01:38.515 DEBUG [26604]: Closing database connection -- 14:01:38.515 SQL [26604]: pgsql_close() -- 14:01:38.523 INFO [25868]: COREGRADE is starting... -- 14:01:38.523 INFO [25868]: Version from config: 1.0 -- 14:01:38.523 DEBUG [25868]: Connecting to database... -- 14:01:38.523 DEBUG [25868]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:01:38.523 SQL [25868]: pgsql_db_connect() -- 14:01:38.527 DEBUG [25868]: Database connection successful -- 14:01:38.527 INFO [25868]: _SERVER found -- 14:01:38.527 INFO [25868]: REMOTE_ADDR = 192.168.1.13 -- 14:01:38.527 INFO [25868]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:01:38.527 INFO [25868]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vg86ub3v2ulh93ivdr6omcrgbeg1rnfv -- 14:01:38.527 INFO [25868]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:01:38.527 INFO [25868]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:01:38.538 INFO [25868]: COREGRADE is stopping... -- 14:01:38.539 DEBUG [25868]: Closing database connection -- 14:01:38.539 SQL [25868]: pgsql_close() -- 14:01:43.106 INFO [25868]: COREGRADE is starting... -- 14:01:43.106 INFO [25868]: Version from config: 1.0 -- 14:01:43.106 DEBUG [25868]: Connecting to database... -- 14:01:43.106 DEBUG [25868]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:01:43.106 SQL [25868]: pgsql_db_connect() -- 14:01:43.110 DEBUG [25868]: Database connection successful -- 14:01:43.110 INFO [25868]: _SERVER found -- 14:01:43.110 INFO [25868]: REMOTE_ADDR = 192.168.1.13 -- 14:01:43.110 INFO [25868]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:01:43.110 INFO [25868]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vg86ub3v2ulh93ivdr6omcrgbeg1rnfv -- 14:01:43.110 INFO [25868]: QUERY_STRING = /member/page -- 14:01:43.110 INFO [25868]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:01:43.143 INFO [25868]: COREGRADE is stopping... -- 14:01:43.143 DEBUG [25868]: Closing database connection -- 14:01:43.143 SQL [25868]: pgsql_close() -- 14:01:43.295 INFO [25868]: COREGRADE is starting... -- 14:01:43.295 INFO [25868]: Version from config: 1.0 -- 14:01:43.295 DEBUG [25868]: Connecting to database... -- 14:01:43.295 DEBUG [25868]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:01:43.295 SQL [25868]: pgsql_db_connect() -- 14:01:43.306 INFO [26604]: COREGRADE is starting... -- 14:01:43.306 INFO [26604]: Version from config: 1.0 -- 14:01:43.306 DEBUG [26604]: Connecting to database... -- 14:01:43.306 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:01:43.306 SQL [26604]: pgsql_db_connect() -- 14:01:43.299 DEBUG [25868]: Database connection successful -- 14:01:43.299 INFO [25868]: _SERVER found -- 14:01:43.299 INFO [25868]: REMOTE_ADDR = 192.168.1.13 -- 14:01:43.299 INFO [25868]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:01:43.299 INFO [25868]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vg86ub3v2ulh93ivdr6omcrgbeg1rnfv -- 14:01:43.299 INFO [25868]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:01:43.299 INFO [25868]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:01:43.310 INFO [25868]: COREGRADE is stopping... -- 14:01:43.310 DEBUG [25868]: Closing database connection -- 14:01:43.310 SQL [25868]: pgsql_close() -- 14:01:43.309 DEBUG [26604]: Database connection successful -- 14:01:43.309 INFO [26604]: _SERVER found -- 14:01:43.309 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 14:01:43.309 INFO [26604]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:01:43.309 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vg86ub3v2ulh93ivdr6omcrgbeg1rnfv -- 14:01:43.310 INFO [26604]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:01:43.310 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:01:43.321 INFO [26604]: COREGRADE is stopping... -- 14:01:43.321 DEBUG [26604]: Closing database connection -- 14:01:43.321 SQL [26604]: pgsql_close() -- 14:02:03.096 INFO [25870]: COREGRADE is starting... -- 14:02:03.096 INFO [25870]: Version from config: 1.0 -- 14:02:03.096 DEBUG [25870]: Connecting to database... -- 14:02:03.096 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:02:03.096 SQL [25870]: pgsql_db_connect() -- 14:02:03.100 DEBUG [25870]: Database connection successful -- 14:02:03.100 INFO [25870]: _SERVER found -- 14:02:03.100 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 14:02:03.100 INFO [25870]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:02:03.100 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vg86ub3v2ulh93ivdr6omcrgbeg1rnfv -- 14:02:03.100 INFO [25870]: QUERY_STRING = /member/page -- 14:02:03.100 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:02:03.133 INFO [25870]: COREGRADE is stopping... -- 14:02:03.133 DEBUG [25870]: Closing database connection -- 14:02:03.133 SQL [25870]: pgsql_close() -- 14:02:03.377 INFO [25870]: COREGRADE is starting... -- 14:02:03.378 INFO [25870]: Version from config: 1.0 -- 14:02:03.378 DEBUG [25870]: Connecting to database... -- 14:02:03.378 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:02:03.378 SQL [25870]: pgsql_db_connect() -- 14:02:03.382 DEBUG [25870]: Database connection successful -- 14:02:03.382 INFO [25870]: _SERVER found -- 14:02:03.382 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 14:02:03.382 INFO [25870]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:02:03.382 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vg86ub3v2ulh93ivdr6omcrgbeg1rnfv -- 14:02:03.382 INFO [25870]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:02:03.382 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:02:03.393 INFO [25870]: COREGRADE is stopping... -- 14:02:03.393 DEBUG [25870]: Closing database connection -- 14:02:03.393 SQL [25870]: pgsql_close() -- 14:02:03.398 INFO [25870]: COREGRADE is starting... -- 14:02:03.398 INFO [25870]: Version from config: 1.0 -- 14:02:03.398 DEBUG [25870]: Connecting to database... -- 14:02:03.398 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:02:03.398 SQL [25870]: pgsql_db_connect() -- 14:02:03.402 DEBUG [25870]: Database connection successful -- 14:02:03.402 INFO [25870]: _SERVER found -- 14:02:03.402 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 14:02:03.402 INFO [25870]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:02:03.402 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vg86ub3v2ulh93ivdr6omcrgbeg1rnfv -- 14:02:03.402 INFO [25870]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:02:03.402 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:02:03.413 INFO [25870]: COREGRADE is stopping... -- 14:02:03.413 DEBUG [25870]: Closing database connection -- 14:02:03.413 SQL [25870]: pgsql_close() -- 14:02:05.434 INFO [25870]: COREGRADE is starting... -- 14:02:05.435 INFO [25870]: Version from config: 1.0 -- 14:02:05.435 DEBUG [25870]: Connecting to database... -- 14:02:05.435 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:02:05.435 SQL [25870]: pgsql_db_connect() -- 14:02:05.439 DEBUG [25870]: Database connection successful -- 14:02:05.439 INFO [25870]: _SERVER found -- 14:02:05.439 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 14:02:05.439 INFO [25870]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:02:05.439 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vg86ub3v2ulh93ivdr6omcrgbeg1rnfv -- 14:02:05.439 INFO [25870]: QUERY_STRING = /member -- 14:02:05.439 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:02:05.473 INFO [25870]: COREGRADE is stopping... -- 14:02:05.473 DEBUG [25870]: Closing database connection -- 14:02:05.473 SQL [25870]: pgsql_close() -- 14:02:05.642 INFO [25870]: COREGRADE is starting... -- 14:02:05.642 INFO [25870]: Version from config: 1.0 -- 14:02:05.642 DEBUG [25870]: Connecting to database... -- 14:02:05.642 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:02:05.642 SQL [25870]: pgsql_db_connect() -- 14:02:05.646 DEBUG [25870]: Database connection successful -- 14:02:05.646 INFO [25870]: _SERVER found -- 14:02:05.646 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 14:02:05.646 INFO [25870]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:02:05.646 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vg86ub3v2ulh93ivdr6omcrgbeg1rnfv -- 14:02:05.646 INFO [25870]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:02:05.646 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:02:05.657 INFO [25870]: COREGRADE is stopping... -- 14:02:05.657 DEBUG [25870]: Closing database connection -- 14:02:05.657 SQL [25870]: pgsql_close() -- 14:02:05.659 INFO [25877]: COREGRADE is starting... -- 14:02:05.659 INFO [25877]: Version from config: 1.0 -- 14:02:05.659 DEBUG [25877]: Connecting to database... -- 14:02:05.659 DEBUG [25877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:02:05.659 SQL [25877]: pgsql_db_connect() -- 14:02:05.663 DEBUG [25877]: Database connection successful -- 14:02:05.663 INFO [25877]: _SERVER found -- 14:02:05.663 INFO [25877]: REMOTE_ADDR = 192.168.1.13 -- 14:02:05.663 INFO [25877]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:02:05.663 INFO [25877]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vg86ub3v2ulh93ivdr6omcrgbeg1rnfv -- 14:02:05.663 INFO [25877]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:02:05.663 INFO [25877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:02:05.674 INFO [25877]: COREGRADE is stopping... -- 14:02:05.674 DEBUG [25877]: Closing database connection -- 14:02:05.674 SQL [25877]: pgsql_close() -- 14:02:13.601 INFO [26044]: COREGRADE is starting... -- 14:02:13.601 INFO [26044]: Version from config: 1.0 -- 14:02:13.601 DEBUG [26044]: Connecting to database... -- 14:02:13.601 DEBUG [26044]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:02:13.601 SQL [26044]: pgsql_db_connect() -- 14:02:13.605 DEBUG [26044]: Database connection successful -- 14:02:13.605 INFO [26044]: _SERVER found -- 14:02:13.605 INFO [26044]: REMOTE_ADDR = 192.168.1.13 -- 14:02:13.605 INFO [26044]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:02:13.605 INFO [26044]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vg86ub3v2ulh93ivdr6omcrgbeg1rnfv -- 14:02:13.605 INFO [26044]: QUERY_STRING = /auth/member -- 14:02:13.605 INFO [26044]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:02:13.617 INFO [26044]: COREGRADE is stopping... -- 14:02:13.617 DEBUG [26044]: Closing database connection -- 14:02:13.617 SQL [26044]: pgsql_close() -- 14:04:44.760 INFO [25864]: COREGRADE is starting... -- 14:04:44.760 INFO [25864]: Version from config: 1.0 -- 14:04:44.760 DEBUG [25864]: Connecting to database... -- 14:04:44.760 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:04:44.760 SQL [25864]: pgsql_db_connect() -- 14:04:44.798 INFO [25864]: COREGRADE is starting... -- 14:04:44.798 INFO [25864]: Version from config: 1.0 -- 14:04:44.798 DEBUG [25864]: Connecting to database... -- 14:04:44.798 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:04:44.798 SQL [25864]: pgsql_db_connect() -- 14:04:44.802 DEBUG [25864]: Database connection successful -- 14:04:44.802 INFO [25864]: _SERVER found -- 14:04:44.802 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 14:04:44.802 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 14:04:44.802 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=4ggh67oho36gaccgujuhsipfptqv4ui7 -- 14:04:44.802 INFO [25864]: QUERY_STRING = -- 14:04:44.802 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:04:44.802 INFO [25864]: SystemStatus()09-09-********~************ -- 14:04:44.802 INFO [25864]: long coregrade_api_main(CVars in, CVars &out) -- 14:04:44.802 INFO [25864]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 14:04:44.802 INFO [25864]: account calls -- 14:04:44.802 INFO [25864]: account_calls() -- 14:04:44.802 INFO [25864]: LoginCoreGradeAccount() -- 14:04:44.802 FLOG_MAX [25864]: REQ_STRING(username) -- 14:04:44.802 FLOG_MAX [25864]: REQ_STRING(password) -- 14:04:44.802 FLOG_MAX [25864]: REQ_STRING(sessionid) -- 14:04:44.802 FLOG_MAX [25864]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:04:44.802 SQL [25864]: pgsql_query() -- 14:04:44.802 SQL [25864]: About to run query: -- 14:04:44.802 SQL [25864]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 14:04:44.805 SQL [25864]: Found rows: 1 -- 14:04:44.805 FLOG_MAX [25864]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=15 -- 14:04:44.805 INFO [25864]: long SessionCheck(long uid, const char *sessionid, int create ) -- 14:04:44.805 SQL [25864]: pgsql_exec() -- 14:04:44.805 SQL [25864]: About to run query: -- 14:04:44.806 SQL [25864]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 14:04:44.806 SQL [25864]: PQcmdTuples: 0 -- 14:04:44.806 SQL [25864]: Affected rows: 0 -- 14:04:44.806 SQL [25864]: pgsql_exec() -- 14:04:44.806 SQL [25864]: About to run query: -- 14:04:44.806 SQL [25864]: DELETE FROM members_session WHERE member_id=7 -- 14:04:44.807 SQL [25864]: PQcmdTuples: 1 -- 14:04:44.807 SQL [25864]: Affected rows: 1 -- 14:04:44.807 SQL [25864]: pgsql_query() -- 14:04:44.807 SQL [25864]: About to run query: -- 14:04:44.807 SQL [25864]: SELECT * FROM members_session WHERE member_id=7 AND session<>'32BA3DD8B2883AF3A60BAE02ED851F90' -- 14:04:44.808 SQL [25864]: Found rows: 0 -- 14:04:44.808 SQL [25864]: Found rows: 0 -- 14:04:44.808 FLOG_MAX [25864]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:04:44.808 SQL [25864]: pgsql_query() -- 14:04:44.808 SQL [25864]: About to run query: -- 14:04:44.808 SQL [25864]: SELECT * FROM members_session WHERE member_id=7 AND session='32BA3DD8B2883AF3A60BAE02ED851F90' -- 14:04:44.808 SQL [25864]: Found rows: 0 -- 14:04:44.808 SQL [25864]: Found rows: 0 -- 14:04:44.808 FLOG_MAX [25864]: insert_db_record() -- 14:04:44.808 SQL [25864]: pgsql_exec() -- 14:04:44.808 SQL [25864]: About to run query: -- 14:04:44.808 SQL [25864]: INSERT INTO members_session (member_id,session) VALUES ('7','32BA3DD8B2883AF3A60BAE02ED851F90') -- 14:04:44.810 SQL [25864]: PQcmdTuples: 1 -- 14:04:44.810 SQL [25864]: Affected rows: 1 -- 14:04:44.810 FLOG_MAX [25864]: SELECT currval('members_session_id_seq') -- 14:04:44.810 SQL [25864]: pgsql_query() -- 14:04:44.810 SQL [25864]: About to run query: -- 14:04:44.810 SQL [25864]: SELECT currval('members_session_id_seq') -- 14:04:44.810 SQL [25864]: Found rows: 1 -- 14:04:44.810 INFO [25864]: CreateDefaultPage() -- 14:04:44.810 FLOG_MAX [25864]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:04:44.810 SQL [25864]: pgsql_query() -- 14:04:44.810 SQL [25864]: About to run query: -- 14:04:44.810 SQL [25864]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 14:04:44.810 SQL [25864]: Found rows: 1 -- 14:04:44.810 FLOG_MAX [25864]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 14:04:44.810 SQL [25864]: pgsql_query() -- 14:04:44.810 SQL [25864]: About to run query: -- 14:04:44.810 SQL [25864]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 14:04:44.811 SQL [25864]: Found rows: 1 -- 14:04:44.811 INFO [25864]: /CreateDefaultPage() -- 14:04:44.811 INFO [25864]: /LoginCoreGradeAccount() -- 14:04:44.811 INFO [25864]: RET: added=2020-02-05 09:42:12.816064 -- 14:04:44.811 INFO [25864]: RET: email=tokslaw@chiefsoft.com -- 14:04:44.811 INFO [25864]: RET: firstname=Tokunbo -- 14:04:44.811 INFO [25864]: RET: id=7 -- 14:04:44.811 INFO [25864]: RET: last_login= -- 14:04:44.811 INFO [25864]: RET: lastname=Lawal -- 14:04:44.811 INFO [25864]: RET: loc=192.168.1.13 -- 14:04:44.811 INFO [25864]: RET: member_id=7 -- 14:04:44.811 INFO [25864]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 14:04:44.811 INFO [25864]: RET: phone= -- 14:04:44.811 INFO [25864]: RET: pid= -- 14:04:44.811 INFO [25864]: RET: result=YES I GET TO BACK END -- 14:04:44.811 INFO [25864]: RET: sessionid=32BA3DD8B2883AF3A60BAE02ED851F90 -- 14:04:44.811 INFO [25864]: RET: status=1 -- 14:04:44.811 INFO [25864]: RET: stauts=OK -- 14:04:44.811 INFO [25864]: RET: username=tokslaw@chiefsoft.com -- 14:04:44.811 INFO [25864]: RET: verified= -- 14:04:44.812 INFO [25864]: COREGRADE is stopping... -- 14:04:44.812 DEBUG [25864]: Closing database connection -- 14:04:44.813 SQL [25864]: pgsql_close() -- 14:04:44.764 DEBUG [25864]: Database connection successful -- 14:04:44.764 INFO [25864]: _SERVER found -- 14:04:44.764 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 14:04:44.764 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 14:04:44.764 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=4ggh67oho36gaccgujuhsipfptqv4ui7 -- 14:04:44.764 INFO [25864]: QUERY_STRING = /auth -- 14:04:44.764 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:04:44.813 INFO [25864]: COREGRADE is stopping... -- 14:04:44.813 DEBUG [25864]: Closing database connection -- 14:04:44.813 SQL [25864]: pgsql_close() -- 14:04:44.879 INFO [25864]: COREGRADE is starting... -- 14:04:44.879 INFO [25864]: Version from config: 1.0 -- 14:04:44.879 DEBUG [25864]: Connecting to database... -- 14:04:44.879 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:04:44.879 SQL [25864]: pgsql_db_connect() -- 14:04:44.883 DEBUG [25864]: Database connection successful -- 14:04:44.883 INFO [25864]: _SERVER found -- 14:04:44.883 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 14:04:44.883 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 14:04:44.883 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=v53hp3l4kukqndp96mb5ru6rp7i35o8v -- 14:04:44.883 INFO [25864]: QUERY_STRING = /member/index -- 14:04:44.883 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:04:44.919 INFO [25864]: COREGRADE is stopping... -- 14:04:44.919 DEBUG [25864]: Closing database connection -- 14:04:44.919 SQL [25864]: pgsql_close() -- 14:04:45.421 INFO [25864]: COREGRADE is starting... -- 14:04:45.422 INFO [25864]: Version from config: 1.0 -- 14:04:45.422 DEBUG [25864]: Connecting to database... -- 14:04:45.422 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:04:45.422 SQL [25864]: pgsql_db_connect() -- 14:04:45.426 DEBUG [25864]: Database connection successful -- 14:04:45.426 INFO [25864]: _SERVER found -- 14:04:45.426 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 14:04:45.426 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 14:04:45.426 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=v53hp3l4kukqndp96mb5ru6rp7i35o8v -- 14:04:45.426 INFO [25864]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:04:45.426 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:04:45.437 INFO [25864]: COREGRADE is stopping... -- 14:04:45.437 DEBUG [25864]: Closing database connection -- 14:04:45.437 SQL [25864]: pgsql_close() -- 14:04:45.440 INFO [25864]: COREGRADE is starting... -- 14:04:45.440 INFO [25864]: Version from config: 1.0 -- 14:04:45.440 DEBUG [25864]: Connecting to database... -- 14:04:45.440 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:04:45.440 SQL [25864]: pgsql_db_connect() -- 14:04:45.444 DEBUG [25864]: Database connection successful -- 14:04:45.444 INFO [25864]: _SERVER found -- 14:04:45.444 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 14:04:45.444 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 14:04:45.444 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=v53hp3l4kukqndp96mb5ru6rp7i35o8v -- 14:04:45.444 INFO [25864]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:04:45.444 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:04:45.455 INFO [25864]: COREGRADE is stopping... -- 14:04:45.455 DEBUG [25864]: Closing database connection -- 14:04:45.455 SQL [25864]: pgsql_close() -- 14:05:14.028 INFO [25867]: COREGRADE is starting... -- 14:05:14.028 INFO [25867]: Version from config: 1.0 -- 14:05:14.028 DEBUG [25867]: Connecting to database... -- 14:05:14.028 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:05:14.028 SQL [25867]: pgsql_db_connect() -- 14:05:14.032 DEBUG [25867]: Database connection successful -- 14:05:14.032 INFO [25867]: _SERVER found -- 14:05:14.032 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 14:05:14.032 INFO [25867]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:05:14.032 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vg86ub3v2ulh93ivdr6omcrgbeg1rnfv -- 14:05:14.032 INFO [25867]: QUERY_STRING = /auth -- 14:05:14.032 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:05:14.044 INFO [25867]: COREGRADE is stopping... -- 14:05:14.044 DEBUG [25867]: Closing database connection -- 14:05:14.044 SQL [25867]: pgsql_close() -- 14:05:17.363 INFO [25867]: COREGRADE is starting... -- 14:05:17.364 INFO [25867]: Version from config: 1.0 -- 14:05:17.364 DEBUG [25867]: Connecting to database... -- 14:05:17.364 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:05:17.364 SQL [25867]: pgsql_db_connect() -- 14:05:17.368 DEBUG [25867]: Database connection successful -- 14:05:17.368 INFO [25867]: _SERVER found -- 14:05:17.368 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 14:05:17.368 INFO [25867]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:05:17.368 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vg86ub3v2ulh93ivdr6omcrgbeg1rnfv -- 14:05:17.368 INFO [25867]: QUERY_STRING = /auth -- 14:05:17.368 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:05:17.379 INFO [25867]: COREGRADE is stopping... -- 14:05:17.379 DEBUG [25867]: Closing database connection -- 14:05:17.379 SQL [25867]: pgsql_close() -- 14:05:20.759 INFO [25867]: COREGRADE is starting... -- 14:05:20.759 INFO [25867]: Version from config: 1.0 -- 14:05:20.759 DEBUG [25867]: Connecting to database... -- 14:05:20.759 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:05:20.759 SQL [25867]: pgsql_db_connect() -- 14:05:20.763 DEBUG [25867]: Database connection successful -- 14:05:20.763 INFO [25867]: _SERVER found -- 14:05:20.763 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 14:05:20.763 INFO [25867]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:05:20.763 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vg86ub3v2ulh93ivdr6omcrgbeg1rnfv -- 14:05:20.763 INFO [25867]: QUERY_STRING = -- 14:05:20.763 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:05:20.802 INFO [25867]: COREGRADE is stopping... -- 14:05:20.802 DEBUG [25867]: Closing database connection -- 14:05:20.802 SQL [25867]: pgsql_close() -- 14:05:24.350 INFO [25867]: COREGRADE is starting... -- 14:05:24.351 INFO [25867]: Version from config: 1.0 -- 14:05:24.351 DEBUG [25867]: Connecting to database... -- 14:05:24.351 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:05:24.351 SQL [25867]: pgsql_db_connect() -- 14:05:24.355 DEBUG [25867]: Database connection successful -- 14:05:24.355 INFO [25867]: _SERVER found -- 14:05:24.355 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 14:05:24.355 INFO [25867]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:05:24.355 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vg86ub3v2ulh93ivdr6omcrgbeg1rnfv; _gat_gtag_UA_54829827_2=1 -- 14:05:24.355 INFO [25867]: QUERY_STRING = /auth -- 14:05:24.355 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:05:24.366 INFO [25867]: COREGRADE is stopping... -- 14:05:24.366 DEBUG [25867]: Closing database connection -- 14:05:24.366 SQL [25867]: pgsql_close() -- 14:19:10.676 INFO [25865]: COREGRADE is starting... -- 14:19:10.676 INFO [25865]: Version from config: 1.0 -- 14:19:10.676 DEBUG [25865]: Connecting to database... -- 14:19:10.676 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:19:10.676 SQL [25865]: pgsql_db_connect() -- 14:19:10.681 DEBUG [25865]: Database connection successful -- 14:19:10.681 INFO [25865]: _SERVER found -- 14:19:10.681 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 14:19:10.681 INFO [25865]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:19:10.681 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vg86ub3v2ulh93ivdr6omcrgbeg1rnfv -- 14:19:10.681 INFO [25865]: QUERY_STRING = -- 14:19:10.681 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:19:10.719 INFO [25865]: COREGRADE is stopping... -- 14:19:10.719 DEBUG [25865]: Closing database connection -- 14:19:10.719 SQL [25865]: pgsql_close() -- 14:19:14.523 INFO [25865]: COREGRADE is starting... -- 14:19:14.523 INFO [25865]: Version from config: 1.0 -- 14:19:14.523 DEBUG [25865]: Connecting to database... -- 14:19:14.523 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:19:14.523 SQL [25865]: pgsql_db_connect() -- 14:19:14.527 DEBUG [25865]: Database connection successful -- 14:19:14.527 INFO [25865]: _SERVER found -- 14:19:14.527 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 14:19:14.527 INFO [25865]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:19:14.527 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=km9egoogou2bdnass25m4k1c3e313fsd; _gat_gtag_UA_54829827_2=1 -- 14:19:14.527 INFO [25865]: QUERY_STRING = /auth -- 14:19:14.527 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:19:14.538 INFO [25865]: COREGRADE is stopping... -- 14:19:14.538 DEBUG [25865]: Closing database connection -- 14:19:14.538 SQL [25865]: pgsql_close() -- 14:19:16.945 INFO [25865]: COREGRADE is starting... -- 14:19:16.945 INFO [25865]: Version from config: 1.0 -- 14:19:16.945 DEBUG [25865]: Connecting to database... -- 14:19:16.945 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:19:16.945 SQL [25865]: pgsql_db_connect() -- 14:19:16.949 DEBUG [25865]: Database connection successful -- 14:19:16.949 INFO [25865]: _SERVER found -- 14:19:16.949 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 14:19:16.949 INFO [25865]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:19:16.949 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=km9egoogou2bdnass25m4k1c3e313fsd; _gat_gtag_UA_54829827_2=1 -- 14:19:16.949 INFO [25865]: QUERY_STRING = /auth/memeber -- 14:19:16.949 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:19:16.960 INFO [25865]: COREGRADE is stopping... -- 14:19:16.960 DEBUG [25865]: Closing database connection -- 14:19:16.960 SQL [25865]: pgsql_close() -- 14:19:23.834 INFO [25879]: COREGRADE is starting... -- 14:19:23.834 INFO [25879]: Version from config: 1.0 -- 14:19:23.834 DEBUG [25879]: Connecting to database... -- 14:19:23.835 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:19:23.835 SQL [25879]: pgsql_db_connect() -- 14:19:23.838 DEBUG [25879]: Database connection successful -- 14:19:23.838 INFO [25879]: _SERVER found -- 14:19:23.838 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 14:19:23.838 INFO [25879]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:19:23.838 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=km9egoogou2bdnass25m4k1c3e313fsd; _gat_gtag_UA_54829827_2=1 -- 14:19:23.838 INFO [25879]: QUERY_STRING = /auth/member -- 14:19:23.838 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:19:23.850 INFO [25879]: COREGRADE is stopping... -- 14:19:23.850 DEBUG [25879]: Closing database connection -- 14:19:23.850 SQL [25879]: pgsql_close() -- 14:19:26.891 INFO [25879]: COREGRADE is starting... -- 14:19:26.891 INFO [25879]: Version from config: 1.0 -- 14:19:26.891 DEBUG [25879]: Connecting to database... -- 14:19:26.891 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:19:26.891 SQL [25879]: pgsql_db_connect() -- 14:19:26.895 DEBUG [25879]: Database connection successful -- 14:19:26.895 INFO [25879]: _SERVER found -- 14:19:26.895 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 14:19:26.895 INFO [25879]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:19:26.895 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=km9egoogou2bdnass25m4k1c3e313fsd; _gat_gtag_UA_54829827_2=1 -- 14:19:26.895 INFO [25879]: QUERY_STRING = /auth/member -- 14:19:26.895 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:19:26.906 INFO [25879]: COREGRADE is stopping... -- 14:19:26.906 DEBUG [25879]: Closing database connection -- 14:19:26.906 SQL [25879]: pgsql_close() -- 14:19:34.660 INFO [25880]: COREGRADE is starting... -- 14:19:34.660 INFO [25880]: Version from config: 1.0 -- 14:19:34.660 DEBUG [25880]: Connecting to database... -- 14:19:34.660 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:19:34.660 SQL [25880]: pgsql_db_connect() -- 14:19:34.664 DEBUG [25880]: Database connection successful -- 14:19:34.664 INFO [25880]: _SERVER found -- 14:19:34.664 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 14:19:34.664 INFO [25880]: SERVER_NAME = oameye.works.coregrade.com -- 14:19:34.664 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=v53hp3l4kukqndp96mb5ru6rp7i35o8v; _gat_gtag_UA_54829827_2=1 -- 14:19:34.664 INFO [25880]: QUERY_STRING = /auth -- 14:19:34.664 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:19:34.701 INFO [25880]: COREGRADE is stopping... -- 14:19:34.701 DEBUG [25880]: Closing database connection -- 14:19:34.701 SQL [25880]: pgsql_close() -- 14:19:34.879 INFO [25880]: COREGRADE is starting... -- 14:19:34.879 INFO [25880]: Version from config: 1.0 -- 14:19:34.879 DEBUG [25880]: Connecting to database... -- 14:19:34.879 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:19:34.879 SQL [25880]: pgsql_db_connect() -- 14:19:34.883 DEBUG [25880]: Database connection successful -- 14:19:34.883 INFO [25880]: _SERVER found -- 14:19:34.883 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 14:19:34.883 INFO [25880]: SERVER_NAME = oameye.works.coregrade.com -- 14:19:34.883 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; _gat_gtag_UA_54829827_2=1; ci_session=5digrj9ndda51gvofeh2u7kut2u0ldct -- 14:19:34.883 INFO [25880]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:19:34.883 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:19:34.894 INFO [25880]: COREGRADE is stopping... -- 14:19:34.894 DEBUG [25880]: Closing database connection -- 14:19:34.894 SQL [25880]: pgsql_close() -- 14:19:34.915 INFO [25880]: COREGRADE is starting... -- 14:19:34.916 INFO [25880]: Version from config: 1.0 -- 14:19:34.916 DEBUG [25880]: Connecting to database... -- 14:19:34.916 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:19:34.916 SQL [25880]: pgsql_db_connect() -- 14:19:34.920 DEBUG [25880]: Database connection successful -- 14:19:34.920 INFO [25880]: _SERVER found -- 14:19:34.920 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 14:19:34.920 INFO [25880]: SERVER_NAME = oameye.works.coregrade.com -- 14:19:34.920 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; _gat_gtag_UA_54829827_2=1; ci_session=5digrj9ndda51gvofeh2u7kut2u0ldct -- 14:19:34.920 INFO [25880]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:19:34.920 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:19:34.931 INFO [25880]: COREGRADE is stopping... -- 14:19:34.931 DEBUG [25880]: Closing database connection -- 14:19:34.931 SQL [25880]: pgsql_close() -- 14:19:36.650 INFO [25880]: COREGRADE is starting... -- 14:19:36.650 INFO [25880]: Version from config: 1.0 -- 14:19:36.650 DEBUG [25880]: Connecting to database... -- 14:19:36.650 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:19:36.650 SQL [25880]: pgsql_db_connect() -- 14:19:36.684 INFO [25880]: COREGRADE is starting... -- 14:19:36.685 INFO [25880]: Version from config: 1.0 -- 14:19:36.685 DEBUG [25880]: Connecting to database... -- 14:19:36.685 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:19:36.685 SQL [25880]: pgsql_db_connect() -- 14:19:36.689 DEBUG [25880]: Database connection successful -- 14:19:36.689 INFO [25880]: _SERVER found -- 14:19:36.689 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 14:19:36.689 INFO [25880]: SERVER_NAME = oameye.works.coregrade.com -- 14:19:36.689 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; _gat_gtag_UA_54829827_2=1; ci_session=5digrj9ndda51gvofeh2u7kut2u0ldct -- 14:19:36.689 INFO [25880]: QUERY_STRING = -- 14:19:36.689 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:19:36.689 INFO [25880]: SystemStatus()09-09-********~************ -- 14:19:36.689 INFO [25880]: long coregrade_api_main(CVars in, CVars &out) -- 14:19:36.689 INFO [25880]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 14:19:36.689 INFO [25880]: account calls -- 14:19:36.689 INFO [25880]: account_calls() -- 14:19:36.689 INFO [25880]: LoginCoreGradeAccount() -- 14:19:36.689 FLOG_MAX [25880]: REQ_STRING(username) -- 14:19:36.689 FLOG_MAX [25880]: REQ_STRING(password) -- 14:19:36.689 FLOG_MAX [25880]: REQ_STRING(sessionid) -- 14:19:36.689 FLOG_MAX [25880]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:19:36.689 SQL [25880]: pgsql_query() -- 14:19:36.689 SQL [25880]: About to run query: -- 14:19:36.689 SQL [25880]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 14:19:36.692 SQL [25880]: Found rows: 1 -- 14:19:36.692 FLOG_MAX [25880]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=15 -- 14:19:36.693 INFO [25880]: long SessionCheck(long uid, const char *sessionid, int create ) -- 14:19:36.693 SQL [25880]: pgsql_exec() -- 14:19:36.693 SQL [25880]: About to run query: -- 14:19:36.693 SQL [25880]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 14:19:36.693 SQL [25880]: PQcmdTuples: 0 -- 14:19:36.693 SQL [25880]: Affected rows: 0 -- 14:19:36.693 SQL [25880]: pgsql_exec() -- 14:19:36.693 SQL [25880]: About to run query: -- 14:19:36.693 SQL [25880]: DELETE FROM members_session WHERE member_id=7 -- 14:19:36.694 SQL [25880]: PQcmdTuples: 1 -- 14:19:36.694 SQL [25880]: Affected rows: 1 -- 14:19:36.694 SQL [25880]: pgsql_query() -- 14:19:36.694 SQL [25880]: About to run query: -- 14:19:36.694 SQL [25880]: SELECT * FROM members_session WHERE member_id=7 AND session<>'6D49EFDC56BAD8AD81F0487AEA79D2F3' -- 14:19:36.695 SQL [25880]: Found rows: 0 -- 14:19:36.695 SQL [25880]: Found rows: 0 -- 14:19:36.695 FLOG_MAX [25880]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:19:36.695 SQL [25880]: pgsql_query() -- 14:19:36.695 SQL [25880]: About to run query: -- 14:19:36.695 SQL [25880]: SELECT * FROM members_session WHERE member_id=7 AND session='6D49EFDC56BAD8AD81F0487AEA79D2F3' -- 14:19:36.695 SQL [25880]: Found rows: 0 -- 14:19:36.695 SQL [25880]: Found rows: 0 -- 14:19:36.695 FLOG_MAX [25880]: insert_db_record() -- 14:19:36.695 SQL [25880]: pgsql_exec() -- 14:19:36.695 SQL [25880]: About to run query: -- 14:19:36.695 SQL [25880]: INSERT INTO members_session (member_id,session) VALUES ('7','6D49EFDC56BAD8AD81F0487AEA79D2F3') -- 14:19:36.697 SQL [25880]: PQcmdTuples: 1 -- 14:19:36.697 SQL [25880]: Affected rows: 1 -- 14:19:36.697 FLOG_MAX [25880]: SELECT currval('members_session_id_seq') -- 14:19:36.697 SQL [25880]: pgsql_query() -- 14:19:36.697 SQL [25880]: About to run query: -- 14:19:36.697 SQL [25880]: SELECT currval('members_session_id_seq') -- 14:19:36.697 SQL [25880]: Found rows: 1 -- 14:19:36.697 INFO [25880]: CreateDefaultPage() -- 14:19:36.697 FLOG_MAX [25880]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:19:36.697 SQL [25880]: pgsql_query() -- 14:19:36.697 SQL [25880]: About to run query: -- 14:19:36.697 SQL [25880]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 14:19:36.697 SQL [25880]: Found rows: 1 -- 14:19:36.698 FLOG_MAX [25880]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 14:19:36.698 SQL [25880]: pgsql_query() -- 14:19:36.698 SQL [25880]: About to run query: -- 14:19:36.698 SQL [25880]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 14:19:36.698 SQL [25880]: Found rows: 1 -- 14:19:36.698 INFO [25880]: /CreateDefaultPage() -- 14:19:36.698 INFO [25880]: /LoginCoreGradeAccount() -- 14:19:36.698 INFO [25880]: RET: added=2020-02-05 09:42:12.816064 -- 14:19:36.698 INFO [25880]: RET: email=tokslaw@chiefsoft.com -- 14:19:36.698 INFO [25880]: RET: firstname=Tokunbo -- 14:19:36.698 INFO [25880]: RET: id=7 -- 14:19:36.698 INFO [25880]: RET: last_login= -- 14:19:36.698 INFO [25880]: RET: lastname=Lawal -- 14:19:36.698 INFO [25880]: RET: loc=192.168.1.13 -- 14:19:36.698 INFO [25880]: RET: member_id=7 -- 14:19:36.698 INFO [25880]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 14:19:36.698 INFO [25880]: RET: phone= -- 14:19:36.698 INFO [25880]: RET: pid= -- 14:19:36.698 INFO [25880]: RET: result=YES I GET TO BACK END -- 14:19:36.698 INFO [25880]: RET: sessionid=6D49EFDC56BAD8AD81F0487AEA79D2F3 -- 14:19:36.698 INFO [25880]: RET: status=1 -- 14:19:36.698 INFO [25880]: RET: stauts=OK -- 14:19:36.698 INFO [25880]: RET: username=tokslaw@chiefsoft.com -- 14:19:36.698 INFO [25880]: RET: verified= -- 14:19:36.700 INFO [25880]: COREGRADE is stopping... -- 14:19:36.700 DEBUG [25880]: Closing database connection -- 14:19:36.700 SQL [25880]: pgsql_close() -- 14:19:36.654 DEBUG [25880]: Database connection successful -- 14:19:36.654 INFO [25880]: _SERVER found -- 14:19:36.654 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 14:19:36.654 INFO [25880]: SERVER_NAME = oameye.works.coregrade.com -- 14:19:36.654 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; _gat_gtag_UA_54829827_2=1; ci_session=5digrj9ndda51gvofeh2u7kut2u0ldct -- 14:19:36.654 INFO [25880]: QUERY_STRING = /auth -- 14:19:36.654 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:19:36.700 INFO [25880]: COREGRADE is stopping... -- 14:19:36.700 DEBUG [25880]: Closing database connection -- 14:19:36.700 SQL [25880]: pgsql_close() -- 14:19:36.756 INFO [25880]: COREGRADE is starting... -- 14:19:36.756 INFO [25880]: Version from config: 1.0 -- 14:19:36.756 DEBUG [25880]: Connecting to database... -- 14:19:36.756 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:19:36.757 SQL [25880]: pgsql_db_connect() -- 14:19:36.760 DEBUG [25880]: Database connection successful -- 14:19:36.760 INFO [25880]: _SERVER found -- 14:19:36.760 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 14:19:36.760 INFO [25880]: SERVER_NAME = oameye.works.coregrade.com -- 14:19:36.760 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; _gat_gtag_UA_54829827_2=1; ci_session=5digrj9ndda51gvofeh2u7kut2u0ldct -- 14:19:36.760 INFO [25880]: QUERY_STRING = /member/index -- 14:19:36.760 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:19:36.796 INFO [25880]: COREGRADE is stopping... -- 14:19:36.796 DEBUG [25880]: Closing database connection -- 14:19:36.796 SQL [25880]: pgsql_close() -- 14:19:37.046 INFO [25880]: COREGRADE is starting... -- 14:19:37.046 INFO [25880]: Version from config: 1.0 -- 14:19:37.046 DEBUG [25880]: Connecting to database... -- 14:19:37.046 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:19:37.046 SQL [25880]: pgsql_db_connect() -- 14:19:37.050 DEBUG [25880]: Database connection successful -- 14:19:37.050 INFO [25880]: _SERVER found -- 14:19:37.050 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 14:19:37.050 INFO [25880]: SERVER_NAME = oameye.works.coregrade.com -- 14:19:37.050 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; _gat_gtag_UA_54829827_2=1; ci_session=5digrj9ndda51gvofeh2u7kut2u0ldct -- 14:19:37.050 INFO [25880]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:19:37.050 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:19:37.061 INFO [25880]: COREGRADE is stopping... -- 14:19:37.061 DEBUG [25880]: Closing database connection -- 14:19:37.061 SQL [25880]: pgsql_close() -- 14:19:37.074 INFO [25880]: COREGRADE is starting... -- 14:19:37.074 INFO [25880]: Version from config: 1.0 -- 14:19:37.074 DEBUG [25880]: Connecting to database... -- 14:19:37.075 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:19:37.075 SQL [25880]: pgsql_db_connect() -- 14:19:37.078 DEBUG [25880]: Database connection successful -- 14:19:37.078 INFO [25880]: _SERVER found -- 14:19:37.078 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 14:19:37.078 INFO [25880]: SERVER_NAME = oameye.works.coregrade.com -- 14:19:37.078 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; _gat_gtag_UA_54829827_2=1; ci_session=5digrj9ndda51gvofeh2u7kut2u0ldct -- 14:19:37.078 INFO [25880]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:19:37.078 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:19:37.089 INFO [25880]: COREGRADE is stopping... -- 14:19:37.089 DEBUG [25880]: Closing database connection -- 14:19:37.089 SQL [25880]: pgsql_close() -- 14:19:49.984 INFO [25868]: COREGRADE is starting... -- 14:19:49.984 INFO [25868]: Version from config: 1.0 -- 14:19:49.984 DEBUG [25868]: Connecting to database... -- 14:19:49.984 DEBUG [25868]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:19:49.984 SQL [25868]: pgsql_db_connect() -- 14:19:49.988 DEBUG [25868]: Database connection successful -- 14:19:49.988 INFO [25868]: _SERVER found -- 14:19:49.988 INFO [25868]: REMOTE_ADDR = 192.168.1.13 -- 14:19:49.988 INFO [25868]: SERVER_NAME = oameye.works.coregrade.com -- 14:19:49.988 INFO [25868]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; _gat_gtag_UA_54829827_2=1; ci_session=5digrj9ndda51gvofeh2u7kut2u0ldct -- 14:19:49.988 INFO [25868]: QUERY_STRING = /member/page -- 14:19:49.988 INFO [25868]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:19:50.025 INFO [25868]: COREGRADE is stopping... -- 14:19:50.025 DEBUG [25868]: Closing database connection -- 14:19:50.025 SQL [25868]: pgsql_close() -- 14:19:50.289 INFO [25868]: COREGRADE is starting... -- 14:19:50.289 INFO [25868]: Version from config: 1.0 -- 14:19:50.289 DEBUG [25868]: Connecting to database... -- 14:19:50.289 DEBUG [25868]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:19:50.289 SQL [25868]: pgsql_db_connect() -- 14:19:50.293 DEBUG [25868]: Database connection successful -- 14:19:50.293 INFO [25868]: _SERVER found -- 14:19:50.293 INFO [25868]: REMOTE_ADDR = 192.168.1.13 -- 14:19:50.293 INFO [25868]: SERVER_NAME = oameye.works.coregrade.com -- 14:19:50.293 INFO [25868]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; _gat_gtag_UA_54829827_2=1; ci_session=5digrj9ndda51gvofeh2u7kut2u0ldct -- 14:19:50.293 INFO [25868]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:19:50.293 INFO [25868]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:19:50.304 INFO [25868]: COREGRADE is stopping... -- 14:19:50.305 DEBUG [25868]: Closing database connection -- 14:19:50.305 SQL [25868]: pgsql_close() -- 14:19:50.311 INFO [26604]: COREGRADE is starting... -- 14:19:50.311 INFO [26604]: Version from config: 1.0 -- 14:19:50.311 DEBUG [26604]: Connecting to database... -- 14:19:50.311 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:19:50.311 SQL [26604]: pgsql_db_connect() -- 14:19:50.315 DEBUG [26604]: Database connection successful -- 14:19:50.315 INFO [26604]: _SERVER found -- 14:19:50.315 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 14:19:50.315 INFO [26604]: SERVER_NAME = oameye.works.coregrade.com -- 14:19:50.315 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; _gat_gtag_UA_54829827_2=1; ci_session=5digrj9ndda51gvofeh2u7kut2u0ldct -- 14:19:50.315 INFO [26604]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:19:50.315 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:19:50.326 INFO [26604]: COREGRADE is stopping... -- 14:19:50.326 DEBUG [26604]: Closing database connection -- 14:19:50.326 SQL [26604]: pgsql_close() -- 14:19:55.701 INFO [25870]: COREGRADE is starting... -- 14:19:55.701 INFO [25870]: Version from config: 1.0 -- 14:19:55.701 DEBUG [25870]: Connecting to database... -- 14:19:55.701 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:19:55.701 SQL [25870]: pgsql_db_connect() -- 14:19:55.705 DEBUG [25870]: Database connection successful -- 14:19:55.705 INFO [25870]: _SERVER found -- 14:19:55.705 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 14:19:55.705 INFO [25870]: SERVER_NAME = oameye.works.coregrade.com -- 14:19:55.705 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; _gat_gtag_UA_54829827_2=1; ci_session=5digrj9ndda51gvofeh2u7kut2u0ldct -- 14:19:55.705 INFO [25870]: QUERY_STRING = /member/viewCardAddAction -- 14:19:55.705 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:19:55.736 INFO [25870]: COREGRADE is stopping... -- 14:19:55.736 DEBUG [25870]: Closing database connection -- 14:19:55.736 SQL [25870]: pgsql_close() -- 14:22:30.300 INFO [25877]: COREGRADE is starting... -- 14:22:30.301 INFO [25877]: Version from config: 1.0 -- 14:22:30.301 DEBUG [25877]: Connecting to database... -- 14:22:30.301 DEBUG [25877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:22:30.301 SQL [25877]: pgsql_db_connect() -- 14:22:30.305 DEBUG [25877]: Database connection successful -- 14:22:30.305 INFO [25877]: _SERVER found -- 14:22:30.305 INFO [25877]: REMOTE_ADDR = 192.168.1.13 -- 14:22:30.305 INFO [25877]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:22:30.305 INFO [25877]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=km9egoogou2bdnass25m4k1c3e313fsd -- 14:22:30.305 INFO [25877]: QUERY_STRING = -- 14:22:30.305 INFO [25877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:22:30.336 INFO [25877]: COREGRADE is stopping... -- 14:22:30.336 DEBUG [25877]: Closing database connection -- 14:22:30.336 SQL [25877]: pgsql_close() -- 14:22:35.900 INFO [26044]: COREGRADE is starting... -- 14:22:35.900 INFO [26044]: Version from config: 1.0 -- 14:22:35.900 DEBUG [26044]: Connecting to database... -- 14:22:35.900 DEBUG [26044]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:22:35.900 SQL [26044]: pgsql_db_connect() -- 14:22:35.904 DEBUG [26044]: Database connection successful -- 14:22:35.904 INFO [26044]: _SERVER found -- 14:22:35.904 INFO [26044]: REMOTE_ADDR = 192.168.1.13 -- 14:22:35.904 INFO [26044]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:22:35.904 INFO [26044]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=km9egoogou2bdnass25m4k1c3e313fsd; _gat_gtag_UA_54829827_2=1 -- 14:22:35.904 INFO [26044]: QUERY_STRING = /auth -- 14:22:35.904 INFO [26044]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:22:35.916 INFO [26044]: COREGRADE is stopping... -- 14:22:35.916 DEBUG [26044]: Closing database connection -- 14:22:35.916 SQL [26044]: pgsql_close() -- 14:22:38.443 INFO [26044]: COREGRADE is starting... -- 14:22:38.444 INFO [26044]: Version from config: 1.0 -- 14:22:38.444 DEBUG [26044]: Connecting to database... -- 14:22:38.444 DEBUG [26044]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:22:38.444 SQL [26044]: pgsql_db_connect() -- 14:22:38.448 DEBUG [26044]: Database connection successful -- 14:22:38.448 INFO [26044]: _SERVER found -- 14:22:38.448 INFO [26044]: REMOTE_ADDR = 192.168.1.13 -- 14:22:38.448 INFO [26044]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:22:38.448 INFO [26044]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=km9egoogou2bdnass25m4k1c3e313fsd; _gat_gtag_UA_54829827_2=1 -- 14:22:38.448 INFO [26044]: QUERY_STRING = /auth -- 14:22:38.448 INFO [26044]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:22:38.459 INFO [26044]: COREGRADE is stopping... -- 14:22:38.459 DEBUG [26044]: Closing database connection -- 14:22:38.459 SQL [26044]: pgsql_close() -- 14:23:39.336 INFO [25864]: COREGRADE is starting... -- 14:23:39.336 INFO [25864]: Version from config: 1.0 -- 14:23:39.336 DEBUG [25864]: Connecting to database... -- 14:23:39.336 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:23:39.337 SQL [25864]: pgsql_db_connect() -- 14:23:39.340 DEBUG [25864]: Database connection successful -- 14:23:39.341 INFO [25864]: _SERVER found -- 14:23:39.341 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 14:23:39.341 INFO [25864]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:23:39.341 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 14:23:39.341 INFO [25864]: QUERY_STRING = -- 14:23:39.341 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:23:39.372 INFO [25864]: COREGRADE is stopping... -- 14:23:39.372 DEBUG [25864]: Closing database connection -- 14:23:39.372 SQL [25864]: pgsql_close() -- 14:23:40.735 INFO [25864]: COREGRADE is starting... -- 14:23:40.736 INFO [25864]: Version from config: 1.0 -- 14:23:40.736 DEBUG [25864]: Connecting to database... -- 14:23:40.736 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:23:40.736 SQL [25864]: pgsql_db_connect() -- 14:23:40.751 INFO [25865]: COREGRADE is starting... -- 14:23:40.751 INFO [25865]: Version from config: 1.0 -- 14:23:40.751 DEBUG [25865]: Connecting to database... -- 14:23:40.751 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:23:40.751 SQL [25865]: pgsql_db_connect() -- 14:23:40.740 DEBUG [25864]: Database connection successful -- 14:23:40.740 INFO [25864]: _SERVER found -- 14:23:40.740 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 14:23:40.740 INFO [25864]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:23:40.740 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=0j2cdpkoi1c7l466eo2mu2hrnrcqrc3q; _gid=GA1.2.870822586.1581103420; _gat_gtag_UA_54829827_2=1 -- 14:23:40.740 INFO [25864]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 14:23:40.740 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:23:40.751 INFO [25864]: COREGRADE is stopping... -- 14:23:40.751 DEBUG [25864]: Closing database connection -- 14:23:40.751 SQL [25864]: pgsql_close() -- 14:23:40.755 DEBUG [25865]: Database connection successful -- 14:23:40.755 INFO [25865]: _SERVER found -- 14:23:40.755 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 14:23:40.755 INFO [25865]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:23:40.755 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=0j2cdpkoi1c7l466eo2mu2hrnrcqrc3q; _gid=GA1.2.870822586.1581103420; _gat_gtag_UA_54829827_2=1 -- 14:23:40.755 INFO [25865]: QUERY_STRING = /assets/img/footer_1.jpg -- 14:23:40.755 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:23:40.766 INFO [25865]: COREGRADE is stopping... -- 14:23:40.766 DEBUG [25865]: Closing database connection -- 14:23:40.766 SQL [25865]: pgsql_close() -- 14:23:44.819 INFO [25865]: COREGRADE is starting... -- 14:23:44.819 INFO [25865]: Version from config: 1.0 -- 14:23:44.819 DEBUG [25865]: Connecting to database... -- 14:23:44.819 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:23:44.819 SQL [25865]: pgsql_db_connect() -- 14:23:44.823 DEBUG [25865]: Database connection successful -- 14:23:44.823 INFO [25865]: _SERVER found -- 14:23:44.823 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 14:23:44.823 INFO [25865]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:23:44.823 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=0j2cdpkoi1c7l466eo2mu2hrnrcqrc3q; _gid=GA1.2.870822586.1581103420; _gat_gtag_UA_54829827_2=1 -- 14:23:44.823 INFO [25865]: QUERY_STRING = /auth -- 14:23:44.823 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:23:44.834 INFO [25865]: COREGRADE is stopping... -- 14:23:44.834 DEBUG [25865]: Closing database connection -- 14:23:44.834 SQL [25865]: pgsql_close() -- 14:25:40.490 INFO [25879]: COREGRADE is starting... -- 14:25:40.490 INFO [25879]: Version from config: 1.0 -- 14:25:40.490 DEBUG [25879]: Connecting to database... -- 14:25:40.490 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:40.490 SQL [25879]: pgsql_db_connect() -- 14:25:40.494 DEBUG [25879]: Database connection successful -- 14:25:40.494 INFO [25879]: _SERVER found -- 14:25:40.494 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 14:25:40.494 INFO [25879]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:25:40.494 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=0j2cdpkoi1c7l466eo2mu2hrnrcqrc3q; _gid=GA1.2.870822586.1581103420 -- 14:25:40.494 INFO [25879]: QUERY_STRING = /auth -- 14:25:40.494 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:25:40.526 INFO [25879]: COREGRADE is stopping... -- 14:25:40.526 DEBUG [25879]: Closing database connection -- 14:25:40.526 SQL [25879]: pgsql_close() -- 14:25:41.008 INFO [25880]: COREGRADE is starting... -- 14:25:41.008 INFO [25880]: Version from config: 1.0 -- 14:25:41.008 DEBUG [25880]: Connecting to database... -- 14:25:41.008 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:41.008 SQL [25880]: pgsql_db_connect() -- 14:25:41.012 DEBUG [25880]: Database connection successful -- 14:25:41.012 INFO [25880]: _SERVER found -- 14:25:41.012 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 14:25:41.012 INFO [25880]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:25:41.012 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=0j2cdpkoi1c7l466eo2mu2hrnrcqrc3q; _gid=GA1.2.870822586.1581103420 -- 14:25:41.012 INFO [25880]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:25:41.012 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:25:41.023 INFO [25880]: COREGRADE is stopping... -- 14:25:41.023 DEBUG [25880]: Closing database connection -- 14:25:41.024 SQL [25880]: pgsql_close() -- 14:25:41.230 INFO [25879]: COREGRADE is starting... -- 14:25:41.231 INFO [25879]: Version from config: 1.0 -- 14:25:41.231 DEBUG [25879]: Connecting to database... -- 14:25:41.231 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:41.231 SQL [25879]: pgsql_db_connect() -- 14:25:41.234 DEBUG [25879]: Database connection successful -- 14:25:41.234 INFO [25879]: _SERVER found -- 14:25:41.234 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 14:25:41.234 INFO [25879]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:25:41.234 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=0j2cdpkoi1c7l466eo2mu2hrnrcqrc3q; _gid=GA1.2.870822586.1581103420 -- 14:25:41.234 INFO [25879]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:25:41.234 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:25:41.246 INFO [25879]: COREGRADE is stopping... -- 14:25:41.246 DEBUG [25879]: Closing database connection -- 14:25:41.246 SQL [25879]: pgsql_close() -- 14:25:47.127 INFO [25877]: COREGRADE is starting... -- 14:25:47.127 INFO [25877]: Version from config: 1.0 -- 14:25:47.127 DEBUG [25877]: Connecting to database... -- 14:25:47.127 DEBUG [25877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:47.127 SQL [25877]: pgsql_db_connect() -- 14:25:47.131 DEBUG [25877]: Database connection successful -- 14:25:47.131 INFO [25877]: _SERVER found -- 14:25:47.131 INFO [25877]: REMOTE_ADDR = 192.168.1.13 -- 14:25:47.131 INFO [25877]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:25:47.131 INFO [25877]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=0j2cdpkoi1c7l466eo2mu2hrnrcqrc3q; _gid=GA1.2.870822586.1581103420 -- 14:25:47.131 INFO [25877]: QUERY_STRING = /auth -- 14:25:47.131 INFO [25877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:25:47.203 INFO [25877]: COREGRADE is starting... -- 14:25:47.203 INFO [25877]: Version from config: 1.0 -- 14:25:47.203 DEBUG [25877]: Connecting to database... -- 14:25:47.203 DEBUG [25877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:47.203 SQL [25877]: pgsql_db_connect() -- 14:25:47.207 DEBUG [25877]: Database connection successful -- 14:25:47.207 INFO [25877]: _SERVER found -- 14:25:47.207 INFO [25877]: REMOTE_ADDR = 192.168.1.13 -- 14:25:47.207 INFO [25877]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:25:47.207 INFO [25877]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=0j2cdpkoi1c7l466eo2mu2hrnrcqrc3q; _gid=GA1.2.870822586.1581103420 -- 14:25:47.207 INFO [25877]: QUERY_STRING = /member/index -- 14:25:47.207 INFO [25877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:25:47.242 INFO [25877]: COREGRADE is stopping... -- 14:25:47.242 DEBUG [25877]: Closing database connection -- 14:25:47.242 SQL [25877]: pgsql_close() -- 14:25:47.583 INFO [26044]: COREGRADE is starting... -- 14:25:47.584 INFO [26044]: Version from config: 1.0 -- 14:25:47.584 DEBUG [26044]: Connecting to database... -- 14:25:47.584 DEBUG [26044]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:47.584 SQL [26044]: pgsql_db_connect() -- 14:25:47.588 DEBUG [26044]: Database connection successful -- 14:25:47.588 INFO [26044]: _SERVER found -- 14:25:47.588 INFO [26044]: REMOTE_ADDR = 192.168.1.13 -- 14:25:47.588 INFO [26044]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:25:47.588 INFO [26044]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=0j2cdpkoi1c7l466eo2mu2hrnrcqrc3q; _gid=GA1.2.870822586.1581103420 -- 14:25:47.588 INFO [26044]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:25:47.588 INFO [26044]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:25:47.599 INFO [26044]: COREGRADE is stopping... -- 14:25:47.599 DEBUG [26044]: Closing database connection -- 14:25:47.599 SQL [26044]: pgsql_close() -- 14:25:47.926 INFO [25867]: COREGRADE is starting... -- 14:25:47.927 INFO [25867]: Version from config: 1.0 -- 14:25:47.927 DEBUG [25867]: Connecting to database... -- 14:25:47.927 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:47.927 SQL [25867]: pgsql_db_connect() -- 14:25:47.931 DEBUG [25867]: Database connection successful -- 14:25:47.931 INFO [25867]: _SERVER found -- 14:25:47.931 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 14:25:47.931 INFO [25867]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:25:47.931 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=0j2cdpkoi1c7l466eo2mu2hrnrcqrc3q; _gid=GA1.2.870822586.1581103420 -- 14:25:47.931 INFO [25867]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:25:47.931 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:25:47.942 INFO [25867]: COREGRADE is stopping... -- 14:25:47.942 DEBUG [25867]: Closing database connection -- 14:25:47.942 SQL [25867]: pgsql_close() -- 14:25:57.305 INFO [27127]: COREGRADE is starting... -- 14:25:57.305 INFO [27127]: Version from config: 1.0 -- 14:25:57.305 DEBUG [27127]: Connecting to database... -- 14:25:57.305 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:57.305 SQL [27127]: pgsql_db_connect() -- 14:25:57.309 DEBUG [27127]: Database connection successful -- 14:25:57.309 INFO [27127]: _SERVER found -- 14:25:57.309 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 14:25:57.309 INFO [27127]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:25:57.309 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=km9egoogou2bdnass25m4k1c3e313fsd -- 14:25:57.309 INFO [27127]: QUERY_STRING = /auth -- 14:25:57.309 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:25:57.347 INFO [27127]: COREGRADE is stopping... -- 14:25:57.347 DEBUG [27127]: Closing database connection -- 14:25:57.347 SQL [27127]: pgsql_close() -- 14:25:57.588 INFO [27127]: COREGRADE is starting... -- 14:25:57.588 INFO [27127]: Version from config: 1.0 -- 14:25:57.588 DEBUG [27127]: Connecting to database... -- 14:25:57.589 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:57.589 SQL [27127]: pgsql_db_connect() -- 14:25:57.593 DEBUG [27127]: Database connection successful -- 14:25:57.593 INFO [27127]: _SERVER found -- 14:25:57.593 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 14:25:57.593 INFO [27127]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:25:57.593 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ievvmtfh0koshdudbnit18cnoufjvuhp -- 14:25:57.593 INFO [27127]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:25:57.593 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:25:57.605 INFO [27127]: COREGRADE is stopping... -- 14:25:57.605 DEBUG [27127]: Closing database connection -- 14:25:57.605 SQL [27127]: pgsql_close() -- 14:25:57.614 INFO [26604]: COREGRADE is starting... -- 14:25:57.615 INFO [26604]: Version from config: 1.0 -- 14:25:57.615 DEBUG [26604]: Connecting to database... -- 14:25:57.615 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:57.615 SQL [26604]: pgsql_db_connect() -- 14:25:57.618 DEBUG [26604]: Database connection successful -- 14:25:57.618 INFO [26604]: _SERVER found -- 14:25:57.618 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 14:25:57.618 INFO [26604]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:25:57.618 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ievvmtfh0koshdudbnit18cnoufjvuhp -- 14:25:57.618 INFO [26604]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:25:57.618 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:25:57.629 INFO [26604]: COREGRADE is stopping... -- 14:25:57.629 DEBUG [26604]: Closing database connection -- 14:25:57.629 SQL [26604]: pgsql_close() -- 14:25:59.475 INFO [26604]: COREGRADE is starting... -- 14:25:59.475 INFO [26604]: Version from config: 1.0 -- 14:25:59.475 DEBUG [26604]: Connecting to database... -- 14:25:59.475 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:59.475 SQL [26604]: pgsql_db_connect() -- 14:25:59.479 DEBUG [26604]: Database connection successful -- 14:25:59.479 INFO [26604]: _SERVER found -- 14:25:59.479 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 14:25:59.479 INFO [26604]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:25:59.479 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ievvmtfh0koshdudbnit18cnoufjvuhp -- 14:25:59.479 INFO [26604]: QUERY_STRING = /auth -- 14:25:59.479 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:25:59.542 INFO [26604]: COREGRADE is starting... -- 14:25:59.543 INFO [26604]: Version from config: 1.0 -- 14:25:59.543 DEBUG [26604]: Connecting to database... -- 14:25:59.543 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:59.543 SQL [26604]: pgsql_db_connect() -- 14:25:59.546 DEBUG [26604]: Database connection successful -- 14:25:59.546 INFO [26604]: _SERVER found -- 14:25:59.546 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 14:25:59.546 INFO [26604]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:25:59.546 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ievvmtfh0koshdudbnit18cnoufjvuhp -- 14:25:59.546 INFO [26604]: QUERY_STRING = /member/index -- 14:25:59.546 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:25:59.582 INFO [26604]: COREGRADE is stopping... -- 14:25:59.582 DEBUG [26604]: Closing database connection -- 14:25:59.582 SQL [26604]: pgsql_close() -- 14:25:59.767 INFO [27127]: COREGRADE is starting... -- 14:25:59.767 INFO [27127]: Version from config: 1.0 -- 14:25:59.767 DEBUG [27127]: Connecting to database... -- 14:25:59.767 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:59.767 SQL [27127]: pgsql_db_connect() -- 14:25:59.771 DEBUG [27127]: Database connection successful -- 14:25:59.771 INFO [27127]: _SERVER found -- 14:25:59.771 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 14:25:59.771 INFO [27127]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:25:59.771 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ievvmtfh0koshdudbnit18cnoufjvuhp -- 14:25:59.771 INFO [27127]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:25:59.771 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:25:59.783 INFO [27127]: COREGRADE is stopping... -- 14:25:59.783 DEBUG [27127]: Closing database connection -- 14:25:59.783 SQL [27127]: pgsql_close() -- 14:25:59.807 INFO [27127]: COREGRADE is starting... -- 14:25:59.808 INFO [27127]: Version from config: 1.0 -- 14:25:59.808 DEBUG [27127]: Connecting to database... -- 14:25:59.808 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:59.808 SQL [27127]: pgsql_db_connect() -- 14:25:59.811 DEBUG [27127]: Database connection successful -- 14:25:59.811 INFO [27127]: _SERVER found -- 14:25:59.811 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 14:25:59.811 INFO [27127]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:25:59.811 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ievvmtfh0koshdudbnit18cnoufjvuhp -- 14:25:59.811 INFO [27127]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:25:59.811 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:25:59.824 INFO [27127]: COREGRADE is stopping... -- 14:25:59.824 DEBUG [27127]: Closing database connection -- 14:25:59.824 SQL [27127]: pgsql_close() -- 14:26:03.761 INFO [27127]: COREGRADE is starting... -- 14:26:03.762 INFO [27127]: Version from config: 1.0 -- 14:26:03.762 DEBUG [27127]: Connecting to database... -- 14:26:03.762 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:26:03.762 SQL [27127]: pgsql_db_connect() -- 14:26:03.766 DEBUG [27127]: Database connection successful -- 14:26:03.766 INFO [27127]: _SERVER found -- 14:26:03.766 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 14:26:03.766 INFO [27127]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:26:03.766 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ievvmtfh0koshdudbnit18cnoufjvuhp -- 14:26:03.766 INFO [27127]: QUERY_STRING = /member/page -- 14:26:03.766 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:26:03.806 INFO [27127]: COREGRADE is stopping... -- 14:26:03.806 DEBUG [27127]: Closing database connection -- 14:26:03.806 SQL [27127]: pgsql_close() -- 14:26:03.983 INFO [27127]: COREGRADE is starting... -- 14:26:03.983 INFO [27127]: Version from config: 1.0 -- 14:26:03.983 DEBUG [27127]: Connecting to database... -- 14:26:03.983 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:26:03.983 SQL [27127]: pgsql_db_connect() -- 14:26:03.987 DEBUG [27127]: Database connection successful -- 14:26:03.987 INFO [27127]: _SERVER found -- 14:26:03.987 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 14:26:03.987 INFO [27127]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:26:03.987 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ievvmtfh0koshdudbnit18cnoufjvuhp -- 14:26:03.987 INFO [27127]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:26:03.987 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:26:03.998 INFO [27127]: COREGRADE is stopping... -- 14:26:03.998 DEBUG [27127]: Closing database connection -- 14:26:03.998 SQL [27127]: pgsql_close() -- 14:26:04.002 INFO [25870]: COREGRADE is starting... -- 14:26:04.003 INFO [25870]: Version from config: 1.0 -- 14:26:04.003 DEBUG [25870]: Connecting to database... -- 14:26:04.003 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:26:04.003 SQL [25870]: pgsql_db_connect() -- 14:26:04.006 DEBUG [25870]: Database connection successful -- 14:26:04.006 INFO [25870]: _SERVER found -- 14:26:04.006 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 14:26:04.006 INFO [25870]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:26:04.006 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ievvmtfh0koshdudbnit18cnoufjvuhp -- 14:26:04.006 INFO [25870]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:26:04.006 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:26:04.018 INFO [25870]: COREGRADE is stopping... -- 14:26:04.018 DEBUG [25870]: Closing database connection -- 14:26:04.018 SQL [25870]: pgsql_close() -- 14:26:07.459 INFO [25870]: COREGRADE is starting... -- 14:26:07.459 INFO [25870]: Version from config: 1.0 -- 14:26:07.459 DEBUG [25870]: Connecting to database... -- 14:26:07.459 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:26:07.459 SQL [25870]: pgsql_db_connect() -- 14:26:07.463 DEBUG [25870]: Database connection successful -- 14:26:07.463 INFO [25870]: _SERVER found -- 14:26:07.463 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 14:26:07.463 INFO [25870]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:26:07.463 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ievvmtfh0koshdudbnit18cnoufjvuhp -- 14:26:07.463 INFO [25870]: QUERY_STRING = /member -- 14:26:07.463 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:26:07.500 INFO [25870]: COREGRADE is stopping... -- 14:26:07.500 DEBUG [25870]: Closing database connection -- 14:26:07.500 SQL [25870]: pgsql_close() -- 14:26:07.662 INFO [25870]: COREGRADE is starting... -- 14:26:07.662 INFO [25870]: Version from config: 1.0 -- 14:26:07.662 DEBUG [25870]: Connecting to database... -- 14:26:07.662 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:26:07.662 SQL [25870]: pgsql_db_connect() -- 14:26:07.673 INFO [27127]: COREGRADE is starting... -- 14:26:07.673 INFO [27127]: Version from config: 1.0 -- 14:26:07.673 DEBUG [27127]: Connecting to database... -- 14:26:07.673 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:26:07.673 SQL [27127]: pgsql_db_connect() -- 14:26:07.666 DEBUG [25870]: Database connection successful -- 14:26:07.666 INFO [25870]: _SERVER found -- 14:26:07.666 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 14:26:07.666 INFO [25870]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:26:07.666 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ievvmtfh0koshdudbnit18cnoufjvuhp -- 14:26:07.666 INFO [25870]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:26:07.666 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:26:07.677 INFO [25870]: COREGRADE is stopping... -- 14:26:07.677 DEBUG [25870]: Closing database connection -- 14:26:07.677 SQL [25870]: pgsql_close() -- 14:26:07.677 DEBUG [27127]: Database connection successful -- 14:26:07.677 INFO [27127]: _SERVER found -- 14:26:07.677 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 14:26:07.677 INFO [27127]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:26:07.677 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ievvmtfh0koshdudbnit18cnoufjvuhp -- 14:26:07.677 INFO [27127]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:26:07.677 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:26:07.688 INFO [27127]: COREGRADE is stopping... -- 14:26:07.688 DEBUG [27127]: Closing database connection -- 14:26:07.688 SQL [27127]: pgsql_close() -- 14:26:13.166 INFO [25880]: COREGRADE is starting... -- 14:26:13.167 INFO [25880]: Version from config: 1.0 -- 14:26:13.167 DEBUG [25880]: Connecting to database... -- 14:26:13.167 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:26:13.167 SQL [25880]: pgsql_db_connect() -- 14:26:13.171 DEBUG [25880]: Database connection successful -- 14:26:13.171 INFO [25880]: _SERVER found -- 14:26:13.171 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 14:26:13.171 INFO [25880]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:26:13.171 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ievvmtfh0koshdudbnit18cnoufjvuhp -- 14:26:13.171 INFO [25880]: QUERY_STRING = /member/page -- 14:26:13.171 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:26:13.207 INFO [25880]: COREGRADE is stopping... -- 14:26:13.207 DEBUG [25880]: Closing database connection -- 14:26:13.207 SQL [25880]: pgsql_close() -- 14:26:13.494 INFO [25880]: COREGRADE is starting... -- 14:26:13.494 INFO [25880]: Version from config: 1.0 -- 14:26:13.494 DEBUG [25880]: Connecting to database... -- 14:26:13.494 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:26:13.494 SQL [25880]: pgsql_db_connect() -- 14:26:13.498 DEBUG [25880]: Database connection successful -- 14:26:13.498 INFO [25880]: _SERVER found -- 14:26:13.498 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 14:26:13.498 INFO [25880]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:26:13.498 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ievvmtfh0koshdudbnit18cnoufjvuhp -- 14:26:13.498 INFO [25880]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:26:13.498 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:26:13.509 INFO [25880]: COREGRADE is stopping... -- 14:26:13.509 DEBUG [25880]: Closing database connection -- 14:26:13.509 SQL [25880]: pgsql_close() -- 14:26:13.510 INFO [25879]: COREGRADE is starting... -- 14:26:13.510 INFO [25879]: Version from config: 1.0 -- 14:26:13.510 DEBUG [25879]: Connecting to database... -- 14:26:13.510 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:26:13.510 SQL [25879]: pgsql_db_connect() -- 14:26:13.514 DEBUG [25879]: Database connection successful -- 14:26:13.514 INFO [25879]: _SERVER found -- 14:26:13.514 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 14:26:13.514 INFO [25879]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:26:13.514 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ievvmtfh0koshdudbnit18cnoufjvuhp -- 14:26:13.514 INFO [25879]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:26:13.514 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:26:13.525 INFO [25879]: COREGRADE is stopping... -- 14:26:13.525 DEBUG [25879]: Closing database connection -- 14:26:13.525 SQL [25879]: pgsql_close() -- 14:28:05.018 INFO [25864]: COREGRADE is starting... -- 14:28:05.018 INFO [25864]: Version from config: 1.0 -- 14:28:05.018 DEBUG [25864]: Connecting to database... -- 14:28:05.018 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:28:05.018 SQL [25864]: pgsql_db_connect() -- 14:28:05.022 DEBUG [25864]: Database connection successful -- 14:28:05.022 INFO [25864]: _SERVER found -- 14:28:05.022 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 14:28:05.022 INFO [25864]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:28:05.022 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ievvmtfh0koshdudbnit18cnoufjvuhp -- 14:28:05.022 INFO [25864]: QUERY_STRING = /member/page -- 14:28:05.022 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:28:05.059 INFO [25864]: COREGRADE is stopping... -- 14:28:05.059 DEBUG [25864]: Closing database connection -- 14:28:05.059 SQL [25864]: pgsql_close() -- 14:28:05.334 INFO [25864]: COREGRADE is starting... -- 14:28:05.334 INFO [25864]: Version from config: 1.0 -- 14:28:05.334 DEBUG [25864]: Connecting to database... -- 14:28:05.334 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:28:05.334 SQL [25864]: pgsql_db_connect() -- 14:28:05.349 INFO [25865]: COREGRADE is starting... -- 14:28:05.349 INFO [25865]: Version from config: 1.0 -- 14:28:05.349 DEBUG [25865]: Connecting to database... -- 14:28:05.349 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:28:05.349 SQL [25865]: pgsql_db_connect() -- 14:28:05.338 DEBUG [25864]: Database connection successful -- 14:28:05.338 INFO [25864]: _SERVER found -- 14:28:05.338 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 14:28:05.338 INFO [25864]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:28:05.338 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ievvmtfh0koshdudbnit18cnoufjvuhp -- 14:28:05.338 INFO [25864]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:28:05.338 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:28:05.350 INFO [25864]: COREGRADE is stopping... -- 14:28:05.350 DEBUG [25864]: Closing database connection -- 14:28:05.350 SQL [25864]: pgsql_close() -- 14:28:05.353 DEBUG [25865]: Database connection successful -- 14:28:05.353 INFO [25865]: _SERVER found -- 14:28:05.353 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 14:28:05.353 INFO [25865]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:28:05.353 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ievvmtfh0koshdudbnit18cnoufjvuhp -- 14:28:05.353 INFO [25865]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:28:05.353 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:28:05.364 INFO [25865]: COREGRADE is stopping... -- 14:28:05.364 DEBUG [25865]: Closing database connection -- 14:28:05.364 SQL [25865]: pgsql_close() -- 14:28:07.821 INFO [25865]: COREGRADE is starting... -- 14:28:07.822 INFO [25865]: Version from config: 1.0 -- 14:28:07.822 DEBUG [25865]: Connecting to database... -- 14:28:07.822 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:28:07.822 SQL [25865]: pgsql_db_connect() -- 14:28:07.826 DEBUG [25865]: Database connection successful -- 14:28:07.826 INFO [25865]: _SERVER found -- 14:28:07.826 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 14:28:07.826 INFO [25865]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:28:07.826 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ievvmtfh0koshdudbnit18cnoufjvuhp -- 14:28:07.826 INFO [25865]: QUERY_STRING = /member -- 14:28:07.826 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:28:07.864 INFO [25865]: COREGRADE is stopping... -- 14:28:07.864 DEBUG [25865]: Closing database connection -- 14:28:07.864 SQL [25865]: pgsql_close() -- 14:28:08.210 INFO [25865]: COREGRADE is starting... -- 14:28:08.210 INFO [25865]: Version from config: 1.0 -- 14:28:08.210 DEBUG [25865]: Connecting to database... -- 14:28:08.210 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:28:08.210 SQL [25865]: pgsql_db_connect() -- 14:28:08.214 DEBUG [25865]: Database connection successful -- 14:28:08.214 INFO [25865]: _SERVER found -- 14:28:08.214 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 14:28:08.214 INFO [25865]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:28:08.214 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ievvmtfh0koshdudbnit18cnoufjvuhp -- 14:28:08.214 INFO [25865]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:28:08.214 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:28:08.225 INFO [25865]: COREGRADE is stopping... -- 14:28:08.225 DEBUG [25865]: Closing database connection -- 14:28:08.225 SQL [25865]: pgsql_close() -- 14:28:08.227 INFO [25864]: COREGRADE is starting... -- 14:28:08.228 INFO [25864]: Version from config: 1.0 -- 14:28:08.228 DEBUG [25864]: Connecting to database... -- 14:28:08.228 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:28:08.228 SQL [25864]: pgsql_db_connect() -- 14:28:08.231 DEBUG [25864]: Database connection successful -- 14:28:08.231 INFO [25864]: _SERVER found -- 14:28:08.231 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 14:28:08.231 INFO [25864]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:28:08.231 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ievvmtfh0koshdudbnit18cnoufjvuhp -- 14:28:08.231 INFO [25864]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:28:08.231 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:28:08.242 INFO [25864]: COREGRADE is stopping... -- 14:28:08.242 DEBUG [25864]: Closing database connection -- 14:28:08.242 SQL [25864]: pgsql_close() -- 14:28:10.093 INFO [25865]: COREGRADE is starting... -- 14:28:10.093 INFO [25865]: Version from config: 1.0 -- 14:28:10.093 DEBUG [25865]: Connecting to database... -- 14:28:10.093 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:28:10.093 SQL [25865]: pgsql_db_connect() -- 14:28:10.097 DEBUG [25865]: Database connection successful -- 14:28:10.097 INFO [25865]: _SERVER found -- 14:28:10.097 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 14:28:10.097 INFO [25865]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:28:10.097 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ievvmtfh0koshdudbnit18cnoufjvuhp -- 14:28:10.097 INFO [25865]: QUERY_STRING = /member -- 14:28:10.097 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:28:10.135 INFO [25865]: COREGRADE is stopping... -- 14:28:10.135 DEBUG [25865]: Closing database connection -- 14:28:10.135 SQL [25865]: pgsql_close() -- 14:28:10.329 INFO [25865]: COREGRADE is starting... -- 14:28:10.329 INFO [25865]: Version from config: 1.0 -- 14:28:10.329 DEBUG [25865]: Connecting to database... -- 14:28:10.329 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:28:10.329 SQL [25865]: pgsql_db_connect() -- 14:28:10.340 INFO [25864]: COREGRADE is starting... -- 14:28:10.340 INFO [25864]: Version from config: 1.0 -- 14:28:10.340 DEBUG [25864]: Connecting to database... -- 14:28:10.340 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:28:10.340 SQL [25864]: pgsql_db_connect() -- 14:28:10.333 DEBUG [25865]: Database connection successful -- 14:28:10.333 INFO [25865]: _SERVER found -- 14:28:10.333 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 14:28:10.333 INFO [25865]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:28:10.333 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ievvmtfh0koshdudbnit18cnoufjvuhp -- 14:28:10.333 INFO [25865]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:28:10.333 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:28:10.344 INFO [25865]: COREGRADE is stopping... -- 14:28:10.344 DEBUG [25865]: Closing database connection -- 14:28:10.344 SQL [25865]: pgsql_close() -- 14:28:10.344 DEBUG [25864]: Database connection successful -- 14:28:10.344 INFO [25864]: _SERVER found -- 14:28:10.344 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 14:28:10.344 INFO [25864]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:28:10.344 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ievvmtfh0koshdudbnit18cnoufjvuhp -- 14:28:10.344 INFO [25864]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:28:10.344 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:28:10.355 INFO [25864]: COREGRADE is stopping... -- 14:28:10.355 DEBUG [25864]: Closing database connection -- 14:28:10.355 SQL [25864]: pgsql_close() -- 14:28:13.736 INFO [25865]: COREGRADE is starting... -- 14:28:13.737 INFO [25865]: Version from config: 1.0 -- 14:28:13.737 DEBUG [25865]: Connecting to database... -- 14:28:13.737 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:28:13.737 SQL [25865]: pgsql_db_connect() -- 14:28:13.741 DEBUG [25865]: Database connection successful -- 14:28:13.741 INFO [25865]: _SERVER found -- 14:28:13.741 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 14:28:13.741 INFO [25865]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:28:13.741 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ievvmtfh0koshdudbnit18cnoufjvuhp -- 14:28:13.741 INFO [25865]: QUERY_STRING = /auth -- 14:28:13.741 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:28:13.774 INFO [25865]: COREGRADE is stopping... -- 14:28:13.774 DEBUG [25865]: Closing database connection -- 14:28:13.774 SQL [25865]: pgsql_close() -- 14:28:14.512 INFO [25865]: COREGRADE is starting... -- 14:28:14.512 INFO [25865]: Version from config: 1.0 -- 14:28:14.512 DEBUG [25865]: Connecting to database... -- 14:28:14.512 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:28:14.512 SQL [25865]: pgsql_db_connect() -- 14:28:14.516 DEBUG [25865]: Database connection successful -- 14:28:14.516 INFO [25865]: _SERVER found -- 14:28:14.516 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 14:28:14.516 INFO [25865]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:28:14.516 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ievvmtfh0koshdudbnit18cnoufjvuhp -- 14:28:14.516 INFO [25865]: QUERY_STRING = /auth -- 14:28:14.516 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:28:14.549 INFO [25865]: COREGRADE is stopping... -- 14:28:14.549 DEBUG [25865]: Closing database connection -- 14:28:14.549 SQL [25865]: pgsql_close() -- 14:28:14.699 INFO [25864]: COREGRADE is starting... -- 14:28:14.699 INFO [25865]: COREGRADE is starting... -- 14:28:14.699 INFO [25865]: Version from config: 1.0 -- 14:28:14.699 DEBUG [25865]: Connecting to database... -- 14:28:14.699 INFO [25864]: Version from config: 1.0 -- 14:28:14.699 DEBUG [25864]: Connecting to database... -- 14:28:14.699 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:28:14.699 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:28:14.699 SQL [25865]: pgsql_db_connect() -- 14:28:14.699 SQL [25864]: pgsql_db_connect() -- 14:28:14.703 DEBUG [25864]: Database connection successful -- 14:28:14.703 INFO [25864]: _SERVER found -- 14:28:14.703 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 14:28:14.703 INFO [25864]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:28:14.703 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ievvmtfh0koshdudbnit18cnoufjvuhp -- 14:28:14.703 INFO [25864]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:28:14.703 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:28:14.714 INFO [25864]: COREGRADE is stopping... -- 14:28:14.703 DEBUG [25865]: Database connection successful -- 14:28:14.703 INFO [25865]: _SERVER found -- 14:28:14.703 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 14:28:14.703 INFO [25865]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:28:14.703 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ievvmtfh0koshdudbnit18cnoufjvuhp -- 14:28:14.703 INFO [25865]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:28:14.703 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:28:14.714 INFO [25865]: COREGRADE is stopping... -- 14:28:14.714 DEBUG [25864]: Closing database connection -- 14:28:14.714 DEBUG [25865]: Closing database connection -- 14:28:14.714 SQL [25864]: pgsql_close() -- 14:28:14.714 SQL [25865]: pgsql_close() -- 14:28:16.335 INFO [25864]: COREGRADE is starting... -- 14:28:16.336 INFO [25864]: Version from config: 1.0 -- 14:28:16.336 DEBUG [25864]: Connecting to database... -- 14:28:16.336 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:28:16.336 SQL [25864]: pgsql_db_connect() -- 14:28:16.340 DEBUG [25864]: Database connection successful -- 14:28:16.340 INFO [25864]: _SERVER found -- 14:28:16.340 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 14:28:16.340 INFO [25864]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:28:16.340 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ievvmtfh0koshdudbnit18cnoufjvuhp -- 14:28:16.340 INFO [25864]: QUERY_STRING = /auth -- 14:28:16.340 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:28:16.407 INFO [25864]: COREGRADE is starting... -- 14:28:16.408 INFO [25864]: Version from config: 1.0 -- 14:28:16.408 DEBUG [25864]: Connecting to database... -- 14:28:16.408 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:28:16.408 SQL [25864]: pgsql_db_connect() -- 14:28:16.412 DEBUG [25864]: Database connection successful -- 14:28:16.412 INFO [25864]: _SERVER found -- 14:28:16.412 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 14:28:16.412 INFO [25864]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:28:16.412 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ievvmtfh0koshdudbnit18cnoufjvuhp -- 14:28:16.412 INFO [25864]: QUERY_STRING = /member/index -- 14:28:16.412 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:28:16.446 INFO [25864]: COREGRADE is stopping... -- 14:28:16.446 DEBUG [25864]: Closing database connection -- 14:28:16.446 SQL [25864]: pgsql_close() -- 14:28:16.628 INFO [25864]: COREGRADE is starting... -- 14:28:16.628 INFO [25864]: Version from config: 1.0 -- 14:28:16.628 DEBUG [25864]: Connecting to database... -- 14:28:16.628 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:28:16.628 SQL [25864]: pgsql_db_connect() -- 14:28:16.634 INFO [25865]: COREGRADE is starting... -- 14:28:16.634 INFO [25865]: Version from config: 1.0 -- 14:28:16.634 DEBUG [25865]: Connecting to database... -- 14:28:16.634 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:28:16.634 SQL [25865]: pgsql_db_connect() -- 14:28:16.632 DEBUG [25864]: Database connection successful -- 14:28:16.632 INFO [25864]: _SERVER found -- 14:28:16.632 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 14:28:16.632 INFO [25864]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:28:16.632 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ievvmtfh0koshdudbnit18cnoufjvuhp -- 14:28:16.632 INFO [25864]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:28:16.632 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:28:16.644 INFO [25864]: COREGRADE is stopping... -- 14:28:16.644 DEBUG [25864]: Closing database connection -- 14:28:16.644 SQL [25864]: pgsql_close() -- 14:28:16.638 DEBUG [25865]: Database connection successful -- 14:28:16.638 INFO [25865]: _SERVER found -- 14:28:16.638 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 14:28:16.638 INFO [25865]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:28:16.638 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ievvmtfh0koshdudbnit18cnoufjvuhp -- 14:28:16.638 INFO [25865]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:28:16.638 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:28:16.649 INFO [25865]: COREGRADE is stopping... -- 14:28:16.649 DEBUG [25865]: Closing database connection -- 14:28:16.649 SQL [25865]: pgsql_close() -- 14:45:47.948 INFO [25877]: COREGRADE is starting... -- 14:45:47.949 INFO [25877]: Version from config: 1.0 -- 14:45:47.949 DEBUG [25877]: Connecting to database... -- 14:45:47.949 DEBUG [25877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:45:47.949 SQL [25877]: pgsql_db_connect() -- 14:45:47.953 DEBUG [25877]: Database connection successful -- 14:45:47.953 INFO [25877]: _SERVER found -- 14:45:47.953 INFO [25877]: REMOTE_ADDR = 192.168.1.13 -- 14:45:47.953 INFO [25877]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:45:47.953 INFO [25877]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=0j2cdpkoi1c7l466eo2mu2hrnrcqrc3q; _gid=GA1.2.870822586.1581103420 -- 14:45:47.953 INFO [25877]: QUERY_STRING = /auth -- 14:45:47.953 INFO [25877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:45:47.987 INFO [25877]: COREGRADE is stopping... -- 14:45:47.987 DEBUG [25877]: Closing database connection -- 14:45:47.987 SQL [25877]: pgsql_close() -- 14:45:48.291 INFO [26604]: COREGRADE is starting... -- 14:45:48.292 INFO [26604]: Version from config: 1.0 -- 14:45:48.292 DEBUG [26604]: Connecting to database... -- 14:45:48.292 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:45:48.292 SQL [26604]: pgsql_db_connect() -- 14:45:48.307 INFO [25867]: COREGRADE is starting... -- 14:45:48.307 INFO [25867]: Version from config: 1.0 -- 14:45:48.307 DEBUG [25867]: Connecting to database... -- 14:45:48.307 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:45:48.307 SQL [25867]: pgsql_db_connect() -- 14:45:48.296 DEBUG [26604]: Database connection successful -- 14:45:48.296 INFO [26604]: _SERVER found -- 14:45:48.296 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 14:45:48.296 INFO [26604]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:45:48.296 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=75a0hch0ldukd50nfoaqfo5e0mt5l70t -- 14:45:48.296 INFO [26604]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:45:48.296 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:45:48.307 INFO [26604]: COREGRADE is stopping... -- 14:45:48.307 DEBUG [26604]: Closing database connection -- 14:45:48.307 SQL [26604]: pgsql_close() -- 14:45:48.311 DEBUG [25867]: Database connection successful -- 14:45:48.311 INFO [25867]: _SERVER found -- 14:45:48.311 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 14:45:48.311 INFO [25867]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:45:48.311 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=75a0hch0ldukd50nfoaqfo5e0mt5l70t -- 14:45:48.311 INFO [25867]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:45:48.311 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:45:48.322 INFO [25867]: COREGRADE is stopping... -- 14:45:48.323 DEBUG [25867]: Closing database connection -- 14:45:48.323 SQL [25867]: pgsql_close() -- 14:48:16.943 INFO [27127]: COREGRADE is starting... -- 14:48:16.943 INFO [27127]: Version from config: 1.0 -- 14:48:16.943 DEBUG [27127]: Connecting to database... -- 14:48:16.943 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:48:16.943 SQL [27127]: pgsql_db_connect() -- 14:48:16.948 DEBUG [27127]: Database connection successful -- 14:48:16.948 INFO [27127]: _SERVER found -- 14:48:16.948 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 14:48:16.948 INFO [27127]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:48:16.948 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ievvmtfh0koshdudbnit18cnoufjvuhp -- 14:48:16.948 INFO [27127]: QUERY_STRING = /auth -- 14:48:16.948 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:48:16.981 INFO [27127]: COREGRADE is stopping... -- 14:48:16.981 DEBUG [27127]: Closing database connection -- 14:48:16.981 SQL [27127]: pgsql_close() -- 14:48:17.194 INFO [27127]: COREGRADE is starting... -- 14:48:17.194 INFO [27127]: Version from config: 1.0 -- 14:48:17.194 DEBUG [27127]: Connecting to database... -- 14:48:17.194 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:48:17.194 SQL [27127]: pgsql_db_connect() -- 14:48:17.198 DEBUG [27127]: Database connection successful -- 14:48:17.198 INFO [27127]: _SERVER found -- 14:48:17.198 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 14:48:17.198 INFO [27127]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:48:17.198 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=1l0bq553vv2sso4i5qts4m93luqu3k33 -- 14:48:17.198 INFO [27127]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:48:17.198 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:48:17.209 INFO [27127]: COREGRADE is stopping... -- 14:48:17.209 DEBUG [27127]: Closing database connection -- 14:48:17.209 SQL [27127]: pgsql_close() -- 15:37:55.141 INFO [25870]: COREGRADE is starting... -- 15:37:55.141 INFO [25870]: Version from config: 1.0 -- 15:37:55.141 DEBUG [25870]: Connecting to database... -- 15:37:55.141 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:55.141 SQL [25870]: pgsql_db_connect() -- 15:37:55.146 DEBUG [25870]: Database connection successful -- 15:37:55.146 INFO [25870]: _SERVER found -- 15:37:55.146 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 15:37:55.146 INFO [25870]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:37:55.146 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=75a0hch0ldukd50nfoaqfo5e0mt5l70t -- 15:37:55.146 INFO [25870]: QUERY_STRING = /auth -- 15:37:55.146 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:55.259 INFO [25870]: COREGRADE is starting... -- 15:37:55.259 INFO [25870]: Version from config: 1.0 -- 15:37:55.259 DEBUG [25870]: Connecting to database... -- 15:37:55.259 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:55.259 SQL [25870]: pgsql_db_connect() -- 15:37:55.263 DEBUG [25870]: Database connection successful -- 15:37:55.263 INFO [25870]: _SERVER found -- 15:37:55.263 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 15:37:55.263 INFO [25870]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:37:55.263 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=edadjum7fqah9l4674ok2egcd61ndj27 -- 15:37:55.263 INFO [25870]: QUERY_STRING = /member/index -- 15:37:55.263 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:55.298 INFO [25870]: COREGRADE is stopping... -- 15:37:55.298 DEBUG [25870]: Closing database connection -- 15:37:55.298 SQL [25870]: pgsql_close() -- 15:37:55.851 INFO [25877]: COREGRADE is starting... -- 15:37:55.851 INFO [25877]: Version from config: 1.0 -- 15:37:55.851 DEBUG [25877]: Connecting to database... -- 15:37:55.851 DEBUG [25877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:55.851 SQL [25877]: pgsql_db_connect() -- 15:37:55.855 DEBUG [25877]: Database connection successful -- 15:37:55.855 INFO [25877]: _SERVER found -- 15:37:55.855 INFO [25877]: REMOTE_ADDR = 192.168.1.13 -- 15:37:55.855 INFO [25877]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:37:55.855 INFO [25877]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=edadjum7fqah9l4674ok2egcd61ndj27 -- 15:37:55.855 INFO [25877]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:37:55.855 INFO [25877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:55.867 INFO [25877]: COREGRADE is stopping... -- 15:37:55.867 DEBUG [25877]: Closing database connection -- 15:37:55.867 SQL [25877]: pgsql_close() -- 15:37:55.994 INFO [25877]: COREGRADE is starting... -- 15:37:55.994 INFO [25877]: Version from config: 1.0 -- 15:37:55.994 DEBUG [25877]: Connecting to database... -- 15:37:55.994 DEBUG [25877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:55.994 SQL [25877]: pgsql_db_connect() -- 15:37:55.998 DEBUG [25877]: Database connection successful -- 15:37:55.998 INFO [25877]: _SERVER found -- 15:37:55.998 INFO [25877]: REMOTE_ADDR = 192.168.1.13 -- 15:37:55.998 INFO [25877]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:37:55.998 INFO [25877]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=edadjum7fqah9l4674ok2egcd61ndj27 -- 15:37:55.998 INFO [25877]: QUERY_STRING = /app-assets/data/locales/en.json -- 15:37:55.998 INFO [25877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:56.009 INFO [25877]: COREGRADE is stopping... -- 15:37:56.009 DEBUG [25877]: Closing database connection -- 15:37:56.009 SQL [25877]: pgsql_close() -- 15:37:57.622 INFO [25877]: COREGRADE is starting... -- 15:37:57.623 INFO [25877]: Version from config: 1.0 -- 15:37:57.623 DEBUG [25877]: Connecting to database... -- 15:37:57.623 DEBUG [25877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:57.623 SQL [25877]: pgsql_db_connect() -- 15:37:57.627 DEBUG [25877]: Database connection successful -- 15:37:57.627 INFO [25877]: _SERVER found -- 15:37:57.627 INFO [25877]: REMOTE_ADDR = 192.168.1.13 -- 15:37:57.627 INFO [25877]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:37:57.627 INFO [25877]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=edadjum7fqah9l4674ok2egcd61ndj27 -- 15:37:57.627 INFO [25877]: QUERY_STRING = /member/page -- 15:37:57.627 INFO [25877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:57.664 INFO [25877]: COREGRADE is stopping... -- 15:37:57.664 DEBUG [25877]: Closing database connection -- 15:37:57.664 SQL [25877]: pgsql_close() -- 15:37:57.809 INFO [25877]: COREGRADE is starting... -- 15:37:57.809 INFO [25877]: Version from config: 1.0 -- 15:37:57.809 DEBUG [25877]: Connecting to database... -- 15:37:57.809 DEBUG [25877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:57.809 SQL [25877]: pgsql_db_connect() -- 15:37:57.822 INFO [25870]: COREGRADE is starting... -- 15:37:57.823 INFO [25870]: Version from config: 1.0 -- 15:37:57.823 DEBUG [25870]: Connecting to database... -- 15:37:57.823 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:57.823 SQL [25870]: pgsql_db_connect() -- 15:37:57.813 DEBUG [25877]: Database connection successful -- 15:37:57.813 INFO [25877]: _SERVER found -- 15:37:57.813 INFO [25877]: REMOTE_ADDR = 192.168.1.13 -- 15:37:57.813 INFO [25877]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:37:57.813 INFO [25877]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=edadjum7fqah9l4674ok2egcd61ndj27 -- 15:37:57.813 INFO [25877]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:37:57.813 INFO [25877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:57.824 INFO [25877]: COREGRADE is stopping... -- 15:37:57.824 DEBUG [25877]: Closing database connection -- 15:37:57.824 SQL [25877]: pgsql_close() -- 15:37:57.827 DEBUG [25870]: Database connection successful -- 15:37:57.827 INFO [25870]: _SERVER found -- 15:37:57.827 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 15:37:57.827 INFO [25870]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:37:57.827 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=edadjum7fqah9l4674ok2egcd61ndj27 -- 15:37:57.827 INFO [25870]: QUERY_STRING = /app-assets/data/locales/en.json -- 15:37:57.827 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:57.838 INFO [25870]: COREGRADE is stopping... -- 15:37:57.838 DEBUG [25870]: Closing database connection -- 15:37:57.838 SQL [25870]: pgsql_close() -- 15:38:01.615 INFO [25870]: COREGRADE is starting... -- 15:38:01.616 INFO [25870]: Version from config: 1.0 -- 15:38:01.616 DEBUG [25870]: Connecting to database... -- 15:38:01.616 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:38:01.616 SQL [25870]: pgsql_db_connect() -- 15:38:01.620 DEBUG [25870]: Database connection successful -- 15:38:01.620 INFO [25870]: _SERVER found -- 15:38:01.620 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 15:38:01.620 INFO [25870]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:38:01.620 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=edadjum7fqah9l4674ok2egcd61ndj27 -- 15:38:01.620 INFO [25870]: QUERY_STRING = /member/viewCardAddAction -- 15:38:01.620 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:38:01.650 INFO [25870]: COREGRADE is stopping... -- 15:38:01.650 DEBUG [25870]: Closing database connection -- 15:38:01.650 SQL [25870]: pgsql_close() -- 15:38:04.854 INFO [25870]: COREGRADE is starting... -- 15:38:04.854 INFO [25870]: Version from config: 1.0 -- 15:38:04.854 DEBUG [25870]: Connecting to database... -- 15:38:04.854 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:38:04.854 SQL [25870]: pgsql_db_connect() -- 15:38:04.858 DEBUG [25870]: Database connection successful -- 15:38:04.858 INFO [25870]: _SERVER found -- 15:38:04.858 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 15:38:04.858 INFO [25870]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:38:04.858 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=edadjum7fqah9l4674ok2egcd61ndj27 -- 15:38:04.858 INFO [25870]: QUERY_STRING = /member/viewCardAddAction -- 15:38:04.858 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:38:04.889 INFO [25870]: COREGRADE is stopping... -- 15:38:04.889 DEBUG [25870]: Closing database connection -- 15:38:04.889 SQL [25870]: pgsql_close() -- 15:57:57.972 INFO [26604]: COREGRADE is starting... -- 15:57:57.973 INFO [26604]: Version from config: 1.0 -- 15:57:57.973 DEBUG [26604]: Connecting to database... -- 15:57:57.973 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:57.973 SQL [26604]: pgsql_db_connect() -- 15:57:57.977 DEBUG [26604]: Database connection successful -- 15:57:57.977 INFO [26604]: _SERVER found -- 15:57:57.977 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 15:57:57.977 INFO [26604]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:57:57.977 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=edadjum7fqah9l4674ok2egcd61ndj27 -- 15:57:57.977 INFO [26604]: QUERY_STRING = /auth -- 15:57:57.977 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:57:58.012 INFO [26604]: COREGRADE is stopping... -- 15:57:58.012 DEBUG [26604]: Closing database connection -- 15:57:58.012 SQL [26604]: pgsql_close() -- 15:57:58.366 INFO [25867]: COREGRADE is starting... -- 15:57:58.367 INFO [25867]: Version from config: 1.0 -- 15:57:58.367 DEBUG [25867]: Connecting to database... -- 15:57:58.367 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:58.367 SQL [25867]: pgsql_db_connect() -- 15:57:58.374 INFO [26604]: COREGRADE is starting... -- 15:57:58.374 INFO [26604]: Version from config: 1.0 -- 15:57:58.374 DEBUG [26604]: Connecting to database... -- 15:57:58.374 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:58.374 SQL [26604]: pgsql_db_connect() -- 15:57:58.371 DEBUG [25867]: Database connection successful -- 15:57:58.371 INFO [25867]: _SERVER found -- 15:57:58.371 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 15:57:58.371 INFO [25867]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:57:58.371 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=faiomg2o6bvi9tuce2t3ghfv4r08pc8g -- 15:57:58.371 INFO [25867]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:57:58.371 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:57:58.383 INFO [25867]: COREGRADE is stopping... -- 15:57:58.383 DEBUG [25867]: Closing database connection -- 15:57:58.383 SQL [25867]: pgsql_close() -- 15:57:58.378 DEBUG [26604]: Database connection successful -- 15:57:58.378 INFO [26604]: _SERVER found -- 15:57:58.378 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 15:57:58.378 INFO [26604]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:57:58.378 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=faiomg2o6bvi9tuce2t3ghfv4r08pc8g -- 15:57:58.378 INFO [26604]: QUERY_STRING = /app-assets/data/locales/en.json -- 15:57:58.378 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:57:58.389 INFO [26604]: COREGRADE is stopping... -- 15:57:58.389 DEBUG [26604]: Closing database connection -- 15:57:58.389 SQL [26604]: pgsql_close() -- 16:07:02.570 INFO [27127]: COREGRADE is starting... -- 16:07:02.571 INFO [27127]: Version from config: 1.0 -- 16:07:02.571 DEBUG [27127]: Connecting to database... -- 16:07:02.571 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:07:02.571 SQL [27127]: pgsql_db_connect() -- 16:07:02.575 DEBUG [27127]: Database connection successful -- 16:07:02.575 INFO [27127]: _SERVER found -- 16:07:02.575 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 16:07:02.575 INFO [27127]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:07:02.575 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=faiomg2o6bvi9tuce2t3ghfv4r08pc8g -- 16:07:02.575 INFO [27127]: QUERY_STRING = /auth -- 16:07:02.575 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:07:02.652 INFO [27127]: COREGRADE is starting... -- 16:07:02.652 INFO [27127]: Version from config: 1.0 -- 16:07:02.652 DEBUG [27127]: Connecting to database... -- 16:07:02.652 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:07:02.652 SQL [27127]: pgsql_db_connect() -- 16:07:02.656 DEBUG [27127]: Database connection successful -- 16:07:02.656 INFO [27127]: _SERVER found -- 16:07:02.656 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 16:07:02.656 INFO [27127]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:07:02.656 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5pihk6eono1j1q01475qsev1hknok0ag -- 16:07:02.656 INFO [27127]: QUERY_STRING = /member/index -- 16:07:02.656 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:07:02.691 INFO [27127]: COREGRADE is stopping... -- 16:07:02.691 DEBUG [27127]: Closing database connection -- 16:07:02.691 SQL [27127]: pgsql_close() -- 16:07:02.876 INFO [25864]: COREGRADE is starting... -- 16:07:02.876 INFO [25864]: Version from config: 1.0 -- 16:07:02.876 DEBUG [25864]: Connecting to database... -- 16:07:02.876 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:07:02.876 SQL [25864]: pgsql_db_connect() -- 16:07:02.880 DEBUG [25864]: Database connection successful -- 16:07:02.880 INFO [25864]: _SERVER found -- 16:07:02.880 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 16:07:02.880 INFO [25864]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:07:02.880 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5pihk6eono1j1q01475qsev1hknok0ag -- 16:07:02.880 INFO [25864]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:07:02.880 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:07:02.892 INFO [25864]: COREGRADE is stopping... -- 16:07:02.892 DEBUG [25864]: Closing database connection -- 16:07:02.892 SQL [25864]: pgsql_close() -- 16:07:03.006 INFO [25864]: COREGRADE is starting... -- 16:07:03.006 INFO [25864]: Version from config: 1.0 -- 16:07:03.006 DEBUG [25864]: Connecting to database... -- 16:07:03.006 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:07:03.006 SQL [25864]: pgsql_db_connect() -- 16:07:03.010 DEBUG [25864]: Database connection successful -- 16:07:03.010 INFO [25864]: _SERVER found -- 16:07:03.010 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 16:07:03.010 INFO [25864]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:07:03.010 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5pihk6eono1j1q01475qsev1hknok0ag -- 16:07:03.010 INFO [25864]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:07:03.010 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:07:03.021 INFO [25864]: COREGRADE is stopping... -- 16:07:03.021 DEBUG [25864]: Closing database connection -- 16:07:03.021 SQL [25864]: pgsql_close() -- 16:07:05.217 INFO [25864]: COREGRADE is starting... -- 16:07:05.217 INFO [25864]: Version from config: 1.0 -- 16:07:05.217 DEBUG [25864]: Connecting to database... -- 16:07:05.217 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:07:05.217 SQL [25864]: pgsql_db_connect() -- 16:07:05.221 DEBUG [25864]: Database connection successful -- 16:07:05.221 INFO [25864]: _SERVER found -- 16:07:05.221 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 16:07:05.221 INFO [25864]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:07:05.221 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5pihk6eono1j1q01475qsev1hknok0ag -- 16:07:05.221 INFO [25864]: QUERY_STRING = /member/page -- 16:07:05.221 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:07:05.258 INFO [25864]: COREGRADE is stopping... -- 16:07:05.258 DEBUG [25864]: Closing database connection -- 16:07:05.258 SQL [25864]: pgsql_close() -- 16:07:05.404 INFO [25864]: COREGRADE is starting... -- 16:07:05.404 INFO [25864]: Version from config: 1.0 -- 16:07:05.404 DEBUG [25864]: Connecting to database... -- 16:07:05.404 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:07:05.404 SQL [25864]: pgsql_db_connect() -- 16:07:05.412 INFO [27557]: COREGRADE is starting... -- 16:07:05.412 INFO [27557]: Version from config: 1.0 -- 16:07:05.412 DEBUG [27557]: Connecting to database... -- 16:07:05.412 DEBUG [27557]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:07:05.412 SQL [27557]: pgsql_db_connect() -- 16:07:05.408 DEBUG [25864]: Database connection successful -- 16:07:05.408 INFO [25864]: _SERVER found -- 16:07:05.408 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 16:07:05.408 INFO [25864]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:07:05.408 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5pihk6eono1j1q01475qsev1hknok0ag -- 16:07:05.408 INFO [25864]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:07:05.408 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:07:05.419 INFO [25864]: COREGRADE is stopping... -- 16:07:05.419 DEBUG [25864]: Closing database connection -- 16:07:05.419 SQL [25864]: pgsql_close() -- 16:07:05.416 DEBUG [27557]: Database connection successful -- 16:07:05.416 INFO [27557]: _SERVER found -- 16:07:05.416 INFO [27557]: REMOTE_ADDR = 192.168.1.13 -- 16:07:05.416 INFO [27557]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:07:05.416 INFO [27557]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5pihk6eono1j1q01475qsev1hknok0ag -- 16:07:05.416 INFO [27557]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:07:05.416 INFO [27557]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:07:05.431 INFO [27557]: COREGRADE is stopping... -- 16:07:05.431 DEBUG [27557]: Closing database connection -- 16:07:05.431 SQL [27557]: pgsql_close() -- 16:07:08.307 INFO [27557]: COREGRADE is starting... -- 16:07:08.308 INFO [27557]: Version from config: 1.0 -- 16:07:08.308 DEBUG [27557]: Connecting to database... -- 16:07:08.308 DEBUG [27557]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:07:08.308 SQL [27557]: pgsql_db_connect() -- 16:07:08.312 DEBUG [27557]: Database connection successful -- 16:07:08.312 INFO [27557]: _SERVER found -- 16:07:08.312 INFO [27557]: REMOTE_ADDR = 192.168.1.13 -- 16:07:08.312 INFO [27557]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:07:08.312 INFO [27557]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5pihk6eono1j1q01475qsev1hknok0ag -- 16:07:08.312 INFO [27557]: QUERY_STRING = /member/viewCardAddAction -- 16:07:08.312 INFO [27557]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:07:08.347 INFO [27557]: COREGRADE is stopping... -- 16:07:08.347 DEBUG [27557]: Closing database connection -- 16:07:08.348 SQL [27557]: pgsql_close() -- 16:07:08.904 INFO [27557]: COREGRADE is starting... -- 16:07:08.904 INFO [27557]: Version from config: 1.0 -- 16:07:08.904 DEBUG [27557]: Connecting to database... -- 16:07:08.904 DEBUG [27557]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:07:08.904 SQL [27557]: pgsql_db_connect() -- 16:07:08.908 DEBUG [27557]: Database connection successful -- 16:07:08.908 INFO [27557]: _SERVER found -- 16:07:08.908 INFO [27557]: REMOTE_ADDR = 192.168.1.13 -- 16:07:08.908 INFO [27557]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:07:08.908 INFO [27557]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5pihk6eono1j1q01475qsev1hknok0ag -- 16:07:08.908 INFO [27557]: QUERY_STRING = /member/viewCardAddAction -- 16:07:08.908 INFO [27557]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:07:08.939 INFO [27557]: COREGRADE is stopping... -- 16:07:08.939 DEBUG [27557]: Closing database connection -- 16:07:08.939 SQL [27557]: pgsql_close() -- 16:27:05.481 INFO [25865]: COREGRADE is starting... -- 16:27:05.481 INFO [25865]: Version from config: 1.0 -- 16:27:05.481 DEBUG [25865]: Connecting to database... -- 16:27:05.481 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:27:05.481 SQL [25865]: pgsql_db_connect() -- 16:27:05.486 DEBUG [25865]: Database connection successful -- 16:27:05.486 INFO [25865]: _SERVER found -- 16:27:05.486 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 16:27:05.486 INFO [25865]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:27:05.486 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5pihk6eono1j1q01475qsev1hknok0ag -- 16:27:05.486 INFO [25865]: QUERY_STRING = /auth -- 16:27:05.486 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:27:05.524 INFO [25865]: COREGRADE is stopping... -- 16:27:05.524 DEBUG [25865]: Closing database connection -- 16:27:05.524 SQL [25865]: pgsql_close() -- 16:27:05.802 INFO [25867]: COREGRADE is starting... -- 16:27:05.802 INFO [25867]: Version from config: 1.0 -- 16:27:05.802 DEBUG [25867]: Connecting to database... -- 16:27:05.802 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:27:05.802 SQL [25867]: pgsql_db_connect() -- 16:27:05.810 INFO [25877]: COREGRADE is starting... -- 16:27:05.810 INFO [25877]: Version from config: 1.0 -- 16:27:05.810 DEBUG [25877]: Connecting to database... -- 16:27:05.810 DEBUG [25877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:27:05.810 SQL [25877]: pgsql_db_connect() -- 16:27:05.807 DEBUG [25867]: Database connection successful -- 16:27:05.807 INFO [25867]: _SERVER found -- 16:27:05.807 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 16:27:05.807 INFO [25867]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:27:05.807 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nbdsclut6rddjn1a2kmeea9094u8a61e -- 16:27:05.807 INFO [25867]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:27:05.807 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:27:05.819 INFO [25867]: COREGRADE is stopping... -- 16:27:05.819 DEBUG [25867]: Closing database connection -- 16:27:05.819 SQL [25867]: pgsql_close() -- 16:27:05.814 DEBUG [25877]: Database connection successful -- 16:27:05.814 INFO [25877]: _SERVER found -- 16:27:05.814 INFO [25877]: REMOTE_ADDR = 192.168.1.13 -- 16:27:05.814 INFO [25877]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:27:05.814 INFO [25877]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nbdsclut6rddjn1a2kmeea9094u8a61e -- 16:27:05.815 INFO [25877]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:27:05.815 INFO [25877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:27:05.826 INFO [25877]: COREGRADE is stopping... -- 16:27:05.826 DEBUG [25877]: Closing database connection -- 16:27:05.826 SQL [25877]: pgsql_close() -- 19:02:44.376 INFO [26604]: COREGRADE is starting... -- 19:02:44.376 INFO [26604]: Version from config: 1.0 -- 19:02:44.376 DEBUG [26604]: Connecting to database... -- 19:02:44.376 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:02:44.376 SQL [26604]: pgsql_db_connect() -- 19:02:44.381 DEBUG [26604]: Database connection successful -- 19:02:44.381 INFO [26604]: _SERVER found -- 19:02:44.381 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 19:02:44.381 INFO [26604]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:02:44.381 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420 -- 19:02:44.381 INFO [26604]: QUERY_STRING = /auth -- 19:02:44.381 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:02:44.470 INFO [26604]: COREGRADE is starting... -- 19:02:44.470 INFO [26604]: Version from config: 1.0 -- 19:02:44.470 DEBUG [26604]: Connecting to database... -- 19:02:44.470 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:02:44.470 SQL [26604]: pgsql_db_connect() -- 19:02:44.474 DEBUG [26604]: Database connection successful -- 19:02:44.474 INFO [26604]: _SERVER found -- 19:02:44.474 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 19:02:44.474 INFO [26604]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:02:44.474 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=7mun172tqlsn1s0clrr9smm9d5ehq663 -- 19:02:44.474 INFO [26604]: QUERY_STRING = /member/index -- 19:02:44.474 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:02:44.510 INFO [26604]: COREGRADE is stopping... -- 19:02:44.510 DEBUG [26604]: Closing database connection -- 19:02:44.510 SQL [26604]: pgsql_close() -- 19:02:44.826 INFO [25879]: COREGRADE is starting... -- 19:02:44.826 INFO [25879]: Version from config: 1.0 -- 19:02:44.826 DEBUG [25879]: Connecting to database... -- 19:02:44.827 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:02:44.827 SQL [25879]: pgsql_db_connect() -- 19:02:44.831 DEBUG [25879]: Database connection successful -- 19:02:44.831 INFO [25879]: _SERVER found -- 19:02:44.831 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 19:02:44.831 INFO [25879]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:02:44.831 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=7mun172tqlsn1s0clrr9smm9d5ehq663 -- 19:02:44.831 INFO [25879]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:02:44.831 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:02:44.842 INFO [25879]: COREGRADE is stopping... -- 19:02:44.842 DEBUG [25879]: Closing database connection -- 19:02:44.842 SQL [25879]: pgsql_close() -- 19:02:44.947 INFO [25879]: COREGRADE is starting... -- 19:02:44.947 INFO [25879]: Version from config: 1.0 -- 19:02:44.947 DEBUG [25879]: Connecting to database... -- 19:02:44.947 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:02:44.947 SQL [25879]: pgsql_db_connect() -- 19:02:44.951 DEBUG [25879]: Database connection successful -- 19:02:44.951 INFO [25879]: _SERVER found -- 19:02:44.951 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 19:02:44.951 INFO [25879]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:02:44.951 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=7mun172tqlsn1s0clrr9smm9d5ehq663 -- 19:02:44.951 INFO [25879]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:02:44.951 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:02:44.962 INFO [25879]: COREGRADE is stopping... -- 19:02:44.962 DEBUG [25879]: Closing database connection -- 19:02:44.962 SQL [25879]: pgsql_close() -- 19:02:51.243 INFO [25864]: COREGRADE is starting... -- 19:02:51.244 INFO [25864]: Version from config: 1.0 -- 19:02:51.244 DEBUG [25864]: Connecting to database... -- 19:02:51.244 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:02:51.244 SQL [25864]: pgsql_db_connect() -- 19:02:51.248 DEBUG [25864]: Database connection successful -- 19:02:51.248 INFO [25864]: _SERVER found -- 19:02:51.248 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 19:02:51.248 INFO [25864]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:02:51.248 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=7mun172tqlsn1s0clrr9smm9d5ehq663 -- 19:02:51.248 INFO [25864]: QUERY_STRING = /member -- 19:02:51.248 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:02:51.283 INFO [25864]: COREGRADE is stopping... -- 19:02:51.283 DEBUG [25864]: Closing database connection -- 19:02:51.283 SQL [25864]: pgsql_close() -- 19:02:51.473 INFO [27557]: COREGRADE is starting... -- 19:02:51.473 INFO [27557]: Version from config: 1.0 -- 19:02:51.473 DEBUG [27557]: Connecting to database... -- 19:02:51.473 DEBUG [27557]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:02:51.473 SQL [27557]: pgsql_db_connect() -- 19:02:51.477 INFO [25864]: COREGRADE is starting... -- 19:02:51.477 INFO [25864]: Version from config: 1.0 -- 19:02:51.477 DEBUG [25864]: Connecting to database... -- 19:02:51.478 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:02:51.478 SQL [25864]: pgsql_db_connect() -- 19:02:51.477 DEBUG [27557]: Database connection successful -- 19:02:51.477 INFO [27557]: _SERVER found -- 19:02:51.477 INFO [27557]: REMOTE_ADDR = 192.168.1.13 -- 19:02:51.477 INFO [27557]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:02:51.477 INFO [27557]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=7mun172tqlsn1s0clrr9smm9d5ehq663 -- 19:02:51.477 INFO [27557]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:02:51.477 INFO [27557]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:02:51.489 INFO [27557]: COREGRADE is stopping... -- 19:02:51.489 DEBUG [27557]: Closing database connection -- 19:02:51.489 SQL [27557]: pgsql_close() -- 19:02:51.481 DEBUG [25864]: Database connection successful -- 19:02:51.481 INFO [25864]: _SERVER found -- 19:02:51.481 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 19:02:51.481 INFO [25864]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:02:51.481 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=7mun172tqlsn1s0clrr9smm9d5ehq663 -- 19:02:51.481 INFO [25864]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:02:51.481 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:02:51.492 INFO [25864]: COREGRADE is stopping... -- 19:02:51.492 DEBUG [25864]: Closing database connection -- 19:02:51.492 SQL [25864]: pgsql_close() -- 19:02:52.498 INFO [25864]: COREGRADE is starting... -- 19:02:52.499 INFO [25864]: Version from config: 1.0 -- 19:02:52.499 DEBUG [25864]: Connecting to database... -- 19:02:52.499 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:02:52.499 SQL [25864]: pgsql_db_connect() -- 19:02:52.503 DEBUG [25864]: Database connection successful -- 19:02:52.503 INFO [25864]: _SERVER found -- 19:02:52.503 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 19:02:52.503 INFO [25864]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:02:52.503 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=7mun172tqlsn1s0clrr9smm9d5ehq663 -- 19:02:52.503 INFO [25864]: QUERY_STRING = /member/configure -- 19:02:52.503 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:02:52.537 INFO [25864]: COREGRADE is stopping... -- 19:02:52.537 DEBUG [25864]: Closing database connection -- 19:02:52.537 SQL [25864]: pgsql_close() -- 19:02:52.666 INFO [25864]: COREGRADE is starting... -- 19:02:52.666 INFO [25864]: Version from config: 1.0 -- 19:02:52.666 DEBUG [25864]: Connecting to database... -- 19:02:52.666 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:02:52.666 SQL [25864]: pgsql_db_connect() -- 19:02:52.670 DEBUG [25864]: Database connection successful -- 19:02:52.670 INFO [25864]: _SERVER found -- 19:02:52.670 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 19:02:52.670 INFO [25864]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:02:52.670 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=7mun172tqlsn1s0clrr9smm9d5ehq663 -- 19:02:52.670 INFO [25864]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:02:52.670 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:02:52.681 INFO [25864]: COREGRADE is stopping... -- 19:02:52.681 DEBUG [25864]: Closing database connection -- 19:02:52.681 SQL [25864]: pgsql_close() -- 19:02:52.736 INFO [25864]: COREGRADE is starting... -- 19:02:52.736 INFO [25864]: Version from config: 1.0 -- 19:02:52.736 DEBUG [25864]: Connecting to database... -- 19:02:52.736 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:02:52.736 SQL [25864]: pgsql_db_connect() -- 19:02:52.740 DEBUG [25864]: Database connection successful -- 19:02:52.740 INFO [25864]: _SERVER found -- 19:02:52.740 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 19:02:52.740 INFO [25864]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:02:52.740 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=7mun172tqlsn1s0clrr9smm9d5ehq663 -- 19:02:52.740 INFO [25864]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:02:52.740 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:02:52.751 INFO [25864]: COREGRADE is stopping... -- 19:02:52.751 DEBUG [25864]: Closing database connection -- 19:02:52.751 SQL [25864]: pgsql_close() -- 19:02:55.645 INFO [25864]: COREGRADE is starting... -- 19:02:55.645 INFO [25864]: Version from config: 1.0 -- 19:02:55.645 DEBUG [25864]: Connecting to database... -- 19:02:55.645 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:02:55.645 SQL [25864]: pgsql_db_connect() -- 19:02:55.649 DEBUG [25864]: Database connection successful -- 19:02:55.649 INFO [25864]: _SERVER found -- 19:02:55.649 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 19:02:55.650 INFO [25864]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:02:55.650 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=7mun172tqlsn1s0clrr9smm9d5ehq663 -- 19:02:55.650 INFO [25864]: QUERY_STRING = /member/mycalendar -- 19:02:55.650 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:02:55.682 INFO [25864]: COREGRADE is stopping... -- 19:02:55.682 DEBUG [25864]: Closing database connection -- 19:02:55.682 SQL [25864]: pgsql_close() -- 19:02:55.820 INFO [27557]: COREGRADE is starting... -- 19:02:55.820 INFO [27557]: Version from config: 1.0 -- 19:02:55.820 DEBUG [27557]: Connecting to database... -- 19:02:55.820 DEBUG [27557]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:02:55.820 SQL [27557]: pgsql_db_connect() -- 19:02:55.830 INFO [25864]: COREGRADE is starting... -- 19:02:55.830 INFO [25864]: Version from config: 1.0 -- 19:02:55.830 DEBUG [25864]: Connecting to database... -- 19:02:55.830 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:02:55.830 SQL [25864]: pgsql_db_connect() -- 19:02:55.824 DEBUG [27557]: Database connection successful -- 19:02:55.824 INFO [27557]: _SERVER found -- 19:02:55.824 INFO [27557]: REMOTE_ADDR = 192.168.1.13 -- 19:02:55.824 INFO [27557]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:02:55.824 INFO [27557]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=7mun172tqlsn1s0clrr9smm9d5ehq663 -- 19:02:55.824 INFO [27557]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:02:55.824 INFO [27557]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:02:55.835 INFO [27557]: COREGRADE is stopping... -- 19:02:55.835 DEBUG [27557]: Closing database connection -- 19:02:55.835 SQL [27557]: pgsql_close() -- 19:02:55.834 DEBUG [25864]: Database connection successful -- 19:02:55.834 INFO [25864]: _SERVER found -- 19:02:55.834 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 19:02:55.834 INFO [25864]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:02:55.834 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=7mun172tqlsn1s0clrr9smm9d5ehq663 -- 19:02:55.834 INFO [25864]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:02:55.834 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:02:55.845 INFO [25864]: COREGRADE is stopping... -- 19:02:55.845 DEBUG [25864]: Closing database connection -- 19:02:55.845 SQL [25864]: pgsql_close() -- 19:02:57.443 INFO [25864]: COREGRADE is starting... -- 19:02:57.443 INFO [25864]: Version from config: 1.0 -- 19:02:57.443 DEBUG [25864]: Connecting to database... -- 19:02:57.443 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:02:57.443 SQL [25864]: pgsql_db_connect() -- 19:02:57.448 DEBUG [25864]: Database connection successful -- 19:02:57.448 INFO [25864]: _SERVER found -- 19:02:57.448 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 19:02:57.448 INFO [25864]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:02:57.448 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=7mun172tqlsn1s0clrr9smm9d5ehq663 -- 19:02:57.448 INFO [25864]: QUERY_STRING = /member -- 19:02:57.448 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:02:57.482 INFO [25864]: COREGRADE is stopping... -- 19:02:57.482 DEBUG [25864]: Closing database connection -- 19:02:57.482 SQL [25864]: pgsql_close() -- 19:02:57.613 INFO [27557]: COREGRADE is starting... -- 19:02:57.614 INFO [27557]: Version from config: 1.0 -- 19:02:57.614 DEBUG [27557]: Connecting to database... -- 19:02:57.614 DEBUG [27557]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:02:57.614 SQL [27557]: pgsql_db_connect() -- 19:02:57.617 DEBUG [27557]: Database connection successful -- 19:02:57.617 INFO [27557]: _SERVER found -- 19:02:57.617 INFO [27557]: REMOTE_ADDR = 192.168.1.13 -- 19:02:57.617 INFO [27557]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:02:57.617 INFO [27557]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=7mun172tqlsn1s0clrr9smm9d5ehq663 -- 19:02:57.617 INFO [27557]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:02:57.617 INFO [27557]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:02:57.628 INFO [27557]: COREGRADE is stopping... -- 19:02:57.628 DEBUG [27557]: Closing database connection -- 19:02:57.628 SQL [27557]: pgsql_close() -- 19:02:57.646 INFO [25864]: COREGRADE is starting... -- 19:02:57.646 INFO [25864]: Version from config: 1.0 -- 19:02:57.646 DEBUG [25864]: Connecting to database... -- 19:02:57.646 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:02:57.646 SQL [25864]: pgsql_db_connect() -- 19:02:57.650 DEBUG [25864]: Database connection successful -- 19:02:57.650 INFO [25864]: _SERVER found -- 19:02:57.650 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 19:02:57.650 INFO [25864]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:02:57.650 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=7mun172tqlsn1s0clrr9smm9d5ehq663 -- 19:02:57.650 INFO [25864]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:02:57.650 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:02:57.661 INFO [25864]: COREGRADE is stopping... -- 19:02:57.661 DEBUG [25864]: Closing database connection -- 19:02:57.661 SQL [25864]: pgsql_close() -- 19:09:15.597 INFO [25870]: COREGRADE is starting... -- 19:09:15.598 INFO [25870]: Version from config: 1.0 -- 19:09:15.598 DEBUG [25870]: Connecting to database... -- 19:09:15.598 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:15.598 SQL [25870]: pgsql_db_connect() -- 19:09:15.635 INFO [25870]: COREGRADE is starting... -- 19:09:15.636 INFO [25870]: Version from config: 1.0 -- 19:09:15.636 DEBUG [25870]: Connecting to database... -- 19:09:15.636 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:15.636 SQL [25870]: pgsql_db_connect() -- 19:09:15.640 DEBUG [25870]: Database connection successful -- 19:09:15.640 INFO [25870]: _SERVER found -- 19:09:15.640 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 19:09:15.640 INFO [25870]: SERVER_NAME = oameye.works.coregrade.com -- 19:09:15.640 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420 -- 19:09:15.640 INFO [25870]: QUERY_STRING = -- 19:09:15.640 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:15.640 INFO [25870]: SystemStatus()09-09-********~************ -- 19:09:15.640 INFO [25870]: long coregrade_api_main(CVars in, CVars &out) -- 19:09:15.640 INFO [25870]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 19:09:15.640 INFO [25870]: account calls -- 19:09:15.640 INFO [25870]: account_calls() -- 19:09:15.640 INFO [25870]: LoginCoreGradeAccount() -- 19:09:15.640 FLOG_MAX [25870]: REQ_STRING(username) -- 19:09:15.640 FLOG_MAX [25870]: REQ_STRING(password) -- 19:09:15.640 FLOG_MAX [25870]: REQ_STRING(sessionid) -- 19:09:15.640 FLOG_MAX [25870]: long load_db_record( CVars &rec, const char * query, ... ) -- 19:09:15.640 SQL [25870]: pgsql_query() -- 19:09:15.640 SQL [25870]: About to run query: -- 19:09:15.640 SQL [25870]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 19:09:15.643 SQL [25870]: Found rows: 1 -- 19:09:15.643 FLOG_MAX [25870]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 19:09:15.643 INFO [25870]: long SessionCheck(long uid, const char *sessionid, int create ) -- 19:09:15.643 SQL [25870]: pgsql_exec() -- 19:09:15.643 SQL [25870]: About to run query: -- 19:09:15.643 SQL [25870]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 19:09:15.644 SQL [25870]: PQcmdTuples: 0 -- 19:09:15.644 SQL [25870]: Affected rows: 0 -- 19:09:15.644 SQL [25870]: pgsql_exec() -- 19:09:15.644 SQL [25870]: About to run query: -- 19:09:15.644 SQL [25870]: DELETE FROM members_session WHERE member_id=5 -- 19:09:15.645 SQL [25870]: PQcmdTuples: 1 -- 19:09:15.645 SQL [25870]: Affected rows: 1 -- 19:09:15.645 SQL [25870]: pgsql_query() -- 19:09:15.645 SQL [25870]: About to run query: -- 19:09:15.645 SQL [25870]: SELECT * FROM members_session WHERE member_id=5 AND session<>'43081CFF4CBB1DE3F459A37148D38D11' -- 19:09:15.646 SQL [25870]: Found rows: 0 -- 19:09:15.646 SQL [25870]: Found rows: 0 -- 19:09:15.646 FLOG_MAX [25870]: long load_db_record( CVars &rec, const char * query, ... ) -- 19:09:15.646 SQL [25870]: pgsql_query() -- 19:09:15.646 SQL [25870]: About to run query: -- 19:09:15.646 SQL [25870]: SELECT * FROM members_session WHERE member_id=5 AND session='43081CFF4CBB1DE3F459A37148D38D11' -- 19:09:15.646 SQL [25870]: Found rows: 0 -- 19:09:15.646 SQL [25870]: Found rows: 0 -- 19:09:15.646 FLOG_MAX [25870]: insert_db_record() -- 19:09:15.646 SQL [25870]: pgsql_exec() -- 19:09:15.646 SQL [25870]: About to run query: -- 19:09:15.646 SQL [25870]: INSERT INTO members_session (member_id,session) VALUES ('5','43081CFF4CBB1DE3F459A37148D38D11') -- 19:09:15.648 SQL [25870]: PQcmdTuples: 1 -- 19:09:15.648 SQL [25870]: Affected rows: 1 -- 19:09:15.648 FLOG_MAX [25870]: SELECT currval('members_session_id_seq') -- 19:09:15.648 SQL [25870]: pgsql_query() -- 19:09:15.648 SQL [25870]: About to run query: -- 19:09:15.648 SQL [25870]: SELECT currval('members_session_id_seq') -- 19:09:15.648 SQL [25870]: Found rows: 1 -- 19:09:15.648 INFO [25870]: CreateDefaultPage() -- 19:09:15.648 FLOG_MAX [25870]: long load_db_record( CVars &rec, const char * query, ... ) -- 19:09:15.648 SQL [25870]: pgsql_query() -- 19:09:15.648 SQL [25870]: About to run query: -- 19:09:15.648 SQL [25870]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 19:09:15.648 SQL [25870]: Found rows: 1 -- 19:09:15.648 FLOG_MAX [25870]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 19:09:15.648 SQL [25870]: pgsql_query() -- 19:09:15.648 SQL [25870]: About to run query: -- 19:09:15.648 SQL [25870]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 19:09:15.649 SQL [25870]: Found rows: 1 -- 19:09:15.649 INFO [25870]: /CreateDefaultPage() -- 19:09:15.649 INFO [25870]: /LoginCoreGradeAccount() -- 19:09:15.649 INFO [25870]: RET: added=2020-02-05 06:47:23.982154 -- 19:09:15.649 INFO [25870]: RET: email=ameye+11@chiefsoft.com -- 19:09:15.649 INFO [25870]: RET: firstname=Olu -- 19:09:15.649 INFO [25870]: RET: id=5 -- 19:09:15.649 INFO [25870]: RET: last_login= -- 19:09:15.649 INFO [25870]: RET: lastname=Amey -- 19:09:15.649 INFO [25870]: RET: loc=192.168.1.13 -- 19:09:15.649 INFO [25870]: RET: member_id=5 -- 19:09:15.649 INFO [25870]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 19:09:15.649 INFO [25870]: RET: phone= -- 19:09:15.649 INFO [25870]: RET: pid= -- 19:09:15.649 INFO [25870]: RET: result=YES I GET TO BACK END -- 19:09:15.649 INFO [25870]: RET: sessionid=43081CFF4CBB1DE3F459A37148D38D11 -- 19:09:15.649 INFO [25870]: RET: status=1 -- 19:09:15.649 INFO [25870]: RET: stauts=OK -- 19:09:15.649 INFO [25870]: RET: username=ameye+11@chiefsoft.com -- 19:09:15.649 INFO [25870]: RET: verified= -- 19:09:15.650 INFO [25870]: COREGRADE is stopping... -- 19:09:15.650 DEBUG [25870]: Closing database connection -- 19:09:15.650 SQL [25870]: pgsql_close() -- 19:09:15.603 DEBUG [25870]: Database connection successful -- 19:09:15.603 INFO [25870]: _SERVER found -- 19:09:15.603 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 19:09:15.603 INFO [25870]: SERVER_NAME = oameye.works.coregrade.com -- 19:09:15.603 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420 -- 19:09:15.603 INFO [25870]: QUERY_STRING = /auth -- 19:09:15.603 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:15.651 INFO [25870]: COREGRADE is stopping... -- 19:09:15.651 DEBUG [25870]: Closing database connection -- 19:09:15.651 SQL [25870]: pgsql_close() -- 19:09:15.668 INFO [25870]: COREGRADE is starting... -- 19:09:15.668 INFO [25870]: Version from config: 1.0 -- 19:09:15.668 DEBUG [25870]: Connecting to database... -- 19:09:15.668 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:15.668 SQL [25870]: pgsql_db_connect() -- 19:09:15.672 DEBUG [25870]: Database connection successful -- 19:09:15.672 INFO [25870]: _SERVER found -- 19:09:15.672 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 19:09:15.672 INFO [25870]: SERVER_NAME = oameye.works.coregrade.com -- 19:09:15.672 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d57pmll6ghrpap1h0m1oeef6olt1en0h -- 19:09:15.672 INFO [25870]: QUERY_STRING = /member/index -- 19:09:15.672 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:15.708 INFO [25870]: COREGRADE is stopping... -- 19:09:15.708 DEBUG [25870]: Closing database connection -- 19:09:15.708 SQL [25870]: pgsql_close() -- 19:09:15.917 INFO [25870]: COREGRADE is starting... -- 19:09:15.917 INFO [25870]: Version from config: 1.0 -- 19:09:15.917 DEBUG [25870]: Connecting to database... -- 19:09:15.917 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:15.917 SQL [25870]: pgsql_db_connect() -- 19:09:15.921 DEBUG [25870]: Database connection successful -- 19:09:15.921 INFO [25870]: _SERVER found -- 19:09:15.921 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 19:09:15.921 INFO [25870]: SERVER_NAME = oameye.works.coregrade.com -- 19:09:15.921 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d57pmll6ghrpap1h0m1oeef6olt1en0h -- 19:09:15.921 INFO [25870]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:09:15.921 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:15.932 INFO [25870]: COREGRADE is stopping... -- 19:09:15.932 DEBUG [25870]: Closing database connection -- 19:09:15.932 SQL [25870]: pgsql_close() -- 19:09:15.952 INFO [25865]: COREGRADE is starting... -- 19:09:15.952 INFO [25865]: Version from config: 1.0 -- 19:09:15.952 DEBUG [25865]: Connecting to database... -- 19:09:15.952 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:15.952 SQL [25865]: pgsql_db_connect() -- 19:09:15.956 DEBUG [25865]: Database connection successful -- 19:09:15.956 INFO [25865]: _SERVER found -- 19:09:15.956 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 19:09:15.956 INFO [25865]: SERVER_NAME = oameye.works.coregrade.com -- 19:09:15.956 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d57pmll6ghrpap1h0m1oeef6olt1en0h -- 19:09:15.956 INFO [25865]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:09:15.956 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:15.968 INFO [25865]: COREGRADE is stopping... -- 19:09:15.968 DEBUG [25865]: Closing database connection -- 19:09:15.968 SQL [25865]: pgsql_close() -- 19:09:26.315 INFO [25867]: COREGRADE is starting... -- 19:09:26.315 INFO [25867]: Version from config: 1.0 -- 19:09:26.315 DEBUG [25867]: Connecting to database... -- 19:09:26.315 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:26.315 SQL [25867]: pgsql_db_connect() -- 19:09:26.320 DEBUG [25867]: Database connection successful -- 19:09:26.320 INFO [25867]: _SERVER found -- 19:09:26.320 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 19:09:26.320 INFO [25867]: SERVER_NAME = oameye.works.coregrade.com -- 19:09:26.320 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d57pmll6ghrpap1h0m1oeef6olt1en0h -- 19:09:26.320 INFO [25867]: QUERY_STRING = /member/page -- 19:09:26.320 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:26.358 INFO [25867]: COREGRADE is stopping... -- 19:09:26.358 DEBUG [25867]: Closing database connection -- 19:09:26.358 SQL [25867]: pgsql_close() -- 19:09:26.497 INFO [25867]: COREGRADE is starting... -- 19:09:26.498 INFO [25867]: Version from config: 1.0 -- 19:09:26.498 DEBUG [25867]: Connecting to database... -- 19:09:26.498 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:26.498 SQL [25867]: pgsql_db_connect() -- 19:09:26.501 DEBUG [25867]: Database connection successful -- 19:09:26.502 INFO [25867]: _SERVER found -- 19:09:26.502 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 19:09:26.502 INFO [25867]: SERVER_NAME = oameye.works.coregrade.com -- 19:09:26.502 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d57pmll6ghrpap1h0m1oeef6olt1en0h -- 19:09:26.502 INFO [25867]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:09:26.502 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:26.513 INFO [25867]: COREGRADE is stopping... -- 19:09:26.513 DEBUG [25867]: Closing database connection -- 19:09:26.513 SQL [25867]: pgsql_close() -- 19:09:26.615 INFO [25867]: COREGRADE is starting... -- 19:09:26.615 INFO [25867]: Version from config: 1.0 -- 19:09:26.615 DEBUG [25867]: Connecting to database... -- 19:09:26.615 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:26.615 SQL [25867]: pgsql_db_connect() -- 19:09:26.619 DEBUG [25867]: Database connection successful -- 19:09:26.619 INFO [25867]: _SERVER found -- 19:09:26.619 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 19:09:26.619 INFO [25867]: SERVER_NAME = oameye.works.coregrade.com -- 19:09:26.619 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d57pmll6ghrpap1h0m1oeef6olt1en0h -- 19:09:26.619 INFO [25867]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:09:26.619 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:26.630 INFO [25867]: COREGRADE is stopping... -- 19:09:26.630 DEBUG [25867]: Closing database connection -- 19:09:26.630 SQL [25867]: pgsql_close() -- 19:09:30.437 INFO [25867]: COREGRADE is starting... -- 19:09:30.437 INFO [25867]: Version from config: 1.0 -- 19:09:30.437 DEBUG [25867]: Connecting to database... -- 19:09:30.437 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:30.437 SQL [25867]: pgsql_db_connect() -- 19:09:30.441 DEBUG [25867]: Database connection successful -- 19:09:30.441 INFO [25867]: _SERVER found -- 19:09:30.441 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 19:09:30.441 INFO [25867]: SERVER_NAME = oameye.works.coregrade.com -- 19:09:30.441 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d57pmll6ghrpap1h0m1oeef6olt1en0h -- 19:09:30.441 INFO [25867]: QUERY_STRING = /member/viewCardAddAction -- 19:09:30.441 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:30.471 INFO [25867]: COREGRADE is stopping... -- 19:09:30.471 DEBUG [25867]: Closing database connection -- 19:09:30.471 SQL [25867]: pgsql_close() -- 19:09:33.064 INFO [25867]: COREGRADE is starting... -- 19:09:33.064 INFO [25867]: Version from config: 1.0 -- 19:09:33.064 DEBUG [25867]: Connecting to database... -- 19:09:33.064 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:33.064 SQL [25867]: pgsql_db_connect() -- 19:09:33.068 DEBUG [25867]: Database connection successful -- 19:09:33.068 INFO [25867]: _SERVER found -- 19:09:33.068 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 19:09:33.068 INFO [25867]: SERVER_NAME = oameye.works.coregrade.com -- 19:09:33.068 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d57pmll6ghrpap1h0m1oeef6olt1en0h -- 19:09:33.068 INFO [25867]: QUERY_STRING = /member/page -- 19:09:33.068 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:33.104 INFO [25867]: COREGRADE is stopping... -- 19:09:33.104 DEBUG [25867]: Closing database connection -- 19:09:33.104 SQL [25867]: pgsql_close() -- 19:09:33.230 INFO [25867]: COREGRADE is starting... -- 19:09:33.230 INFO [25867]: Version from config: 1.0 -- 19:09:33.230 DEBUG [25867]: Connecting to database... -- 19:09:33.230 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:33.230 SQL [25867]: pgsql_db_connect() -- 19:09:33.234 DEBUG [25867]: Database connection successful -- 19:09:33.234 INFO [25867]: _SERVER found -- 19:09:33.234 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 19:09:33.234 INFO [25867]: SERVER_NAME = oameye.works.coregrade.com -- 19:09:33.234 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d57pmll6ghrpap1h0m1oeef6olt1en0h -- 19:09:33.234 INFO [25867]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:09:33.234 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:33.245 INFO [25867]: COREGRADE is stopping... -- 19:09:33.245 DEBUG [25867]: Closing database connection -- 19:09:33.245 SQL [25867]: pgsql_close() -- 19:09:33.299 INFO [25867]: COREGRADE is starting... -- 19:09:33.299 INFO [25867]: Version from config: 1.0 -- 19:09:33.299 DEBUG [25867]: Connecting to database... -- 19:09:33.299 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:33.299 SQL [25867]: pgsql_db_connect() -- 19:09:33.303 DEBUG [25867]: Database connection successful -- 19:09:33.303 INFO [25867]: _SERVER found -- 19:09:33.303 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 19:09:33.303 INFO [25867]: SERVER_NAME = oameye.works.coregrade.com -- 19:09:33.303 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d57pmll6ghrpap1h0m1oeef6olt1en0h -- 19:09:33.303 INFO [25867]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:09:33.303 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:33.314 INFO [25867]: COREGRADE is stopping... -- 19:09:33.314 DEBUG [25867]: Closing database connection -- 19:09:33.314 SQL [25867]: pgsql_close() -- 19:09:37.555 INFO [25867]: COREGRADE is starting... -- 19:09:37.555 INFO [25867]: Version from config: 1.0 -- 19:09:37.555 DEBUG [25867]: Connecting to database... -- 19:09:37.555 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:37.555 SQL [25867]: pgsql_db_connect() -- 19:09:37.559 DEBUG [25867]: Database connection successful -- 19:09:37.559 INFO [25867]: _SERVER found -- 19:09:37.559 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 19:09:37.559 INFO [25867]: SERVER_NAME = oameye.works.coregrade.com -- 19:09:37.559 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d57pmll6ghrpap1h0m1oeef6olt1en0h -- 19:09:37.559 INFO [25867]: QUERY_STRING = /member/viewCardAddAction -- 19:09:37.559 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:37.589 INFO [25867]: COREGRADE is stopping... -- 19:09:37.589 DEBUG [25867]: Closing database connection -- 19:09:37.589 SQL [25867]: pgsql_close() -- 19:12:58.235 INFO [25877]: COREGRADE is starting... -- 19:12:58.235 INFO [25877]: Version from config: 1.0 -- 19:12:58.235 DEBUG [25877]: Connecting to database... -- 19:12:58.235 DEBUG [25877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:12:58.235 SQL [25877]: pgsql_db_connect() -- 19:12:58.239 DEBUG [25877]: Database connection successful -- 19:12:58.239 INFO [25877]: _SERVER found -- 19:12:58.239 INFO [25877]: REMOTE_ADDR = 192.168.1.13 -- 19:12:58.239 INFO [25877]: SERVER_NAME = oameye.works.coregrade.com -- 19:12:58.239 INFO [25877]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d57pmll6ghrpap1h0m1oeef6olt1en0h -- 19:12:58.239 INFO [25877]: QUERY_STRING = /member/page -- 19:12:58.239 INFO [25877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:12:58.277 INFO [25877]: COREGRADE is stopping... -- 19:12:58.277 DEBUG [25877]: Closing database connection -- 19:12:58.277 SQL [25877]: pgsql_close() -- 19:12:58.411 INFO [25877]: COREGRADE is starting... -- 19:12:58.411 INFO [25877]: Version from config: 1.0 -- 19:12:58.411 DEBUG [25877]: Connecting to database... -- 19:12:58.411 DEBUG [25877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:12:58.411 SQL [25877]: pgsql_db_connect() -- 19:12:58.415 DEBUG [25877]: Database connection successful -- 19:12:58.415 INFO [25877]: _SERVER found -- 19:12:58.415 INFO [25877]: REMOTE_ADDR = 192.168.1.13 -- 19:12:58.415 INFO [25877]: SERVER_NAME = oameye.works.coregrade.com -- 19:12:58.415 INFO [25877]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d57pmll6ghrpap1h0m1oeef6olt1en0h -- 19:12:58.415 INFO [25877]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:12:58.415 INFO [25877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:12:58.426 INFO [25877]: COREGRADE is stopping... -- 19:12:58.426 DEBUG [25877]: Closing database connection -- 19:12:58.426 SQL [25877]: pgsql_close() -- 19:12:58.523 INFO [25877]: COREGRADE is starting... -- 19:12:58.524 INFO [25877]: Version from config: 1.0 -- 19:12:58.524 DEBUG [25877]: Connecting to database... -- 19:12:58.524 DEBUG [25877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:12:58.524 SQL [25877]: pgsql_db_connect() -- 19:12:58.528 DEBUG [25877]: Database connection successful -- 19:12:58.528 INFO [25877]: _SERVER found -- 19:12:58.528 INFO [25877]: REMOTE_ADDR = 192.168.1.13 -- 19:12:58.528 INFO [25877]: SERVER_NAME = oameye.works.coregrade.com -- 19:12:58.528 INFO [25877]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d57pmll6ghrpap1h0m1oeef6olt1en0h -- 19:12:58.528 INFO [25877]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:12:58.528 INFO [25877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:12:58.539 INFO [25877]: COREGRADE is stopping... -- 19:12:58.539 DEBUG [25877]: Closing database connection -- 19:12:58.539 SQL [25877]: pgsql_close() -- 19:13:00.824 INFO [25877]: COREGRADE is starting... -- 19:13:00.824 INFO [25877]: Version from config: 1.0 -- 19:13:00.824 DEBUG [25877]: Connecting to database... -- 19:13:00.824 DEBUG [25877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:13:00.824 SQL [25877]: pgsql_db_connect() -- 19:13:00.828 DEBUG [25877]: Database connection successful -- 19:13:00.828 INFO [25877]: _SERVER found -- 19:13:00.828 INFO [25877]: REMOTE_ADDR = 192.168.1.13 -- 19:13:00.828 INFO [25877]: SERVER_NAME = oameye.works.coregrade.com -- 19:13:00.828 INFO [25877]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d57pmll6ghrpap1h0m1oeef6olt1en0h -- 19:13:00.829 INFO [25877]: QUERY_STRING = /member/viewCardAddAction -- 19:13:00.829 INFO [25877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:13:00.859 INFO [25877]: COREGRADE is stopping... -- 19:13:00.859 DEBUG [25877]: Closing database connection -- 19:13:00.859 SQL [25877]: pgsql_close() -- 19:13:02.421 INFO [25877]: COREGRADE is starting... -- 19:13:02.421 INFO [25877]: Version from config: 1.0 -- 19:13:02.421 DEBUG [25877]: Connecting to database... -- 19:13:02.421 DEBUG [25877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:13:02.421 SQL [25877]: pgsql_db_connect() -- 19:13:02.425 DEBUG [25877]: Database connection successful -- 19:13:02.425 INFO [25877]: _SERVER found -- 19:13:02.425 INFO [25877]: REMOTE_ADDR = 192.168.1.13 -- 19:13:02.425 INFO [25877]: SERVER_NAME = oameye.works.coregrade.com -- 19:13:02.425 INFO [25877]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d57pmll6ghrpap1h0m1oeef6olt1en0h -- 19:13:02.425 INFO [25877]: QUERY_STRING = /member/page -- 19:13:02.425 INFO [25877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:13:02.459 INFO [25877]: COREGRADE is stopping... -- 19:13:02.460 DEBUG [25877]: Closing database connection -- 19:13:02.460 SQL [25877]: pgsql_close() -- 19:13:02.610 INFO [25877]: COREGRADE is starting... -- 19:13:02.610 INFO [25877]: Version from config: 1.0 -- 19:13:02.610 DEBUG [25877]: Connecting to database... -- 19:13:02.610 DEBUG [25877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:13:02.610 SQL [25877]: pgsql_db_connect() -- 19:13:02.623 INFO [25879]: COREGRADE is starting... -- 19:13:02.624 INFO [25879]: Version from config: 1.0 -- 19:13:02.624 DEBUG [25879]: Connecting to database... -- 19:13:02.624 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:13:02.624 SQL [25879]: pgsql_db_connect() -- 19:13:02.614 DEBUG [25877]: Database connection successful -- 19:13:02.614 INFO [25877]: _SERVER found -- 19:13:02.614 INFO [25877]: REMOTE_ADDR = 192.168.1.13 -- 19:13:02.614 INFO [25877]: SERVER_NAME = oameye.works.coregrade.com -- 19:13:02.614 INFO [25877]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d57pmll6ghrpap1h0m1oeef6olt1en0h -- 19:13:02.614 INFO [25877]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:13:02.614 INFO [25877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:13:02.625 INFO [25877]: COREGRADE is stopping... -- 19:13:02.625 DEBUG [25877]: Closing database connection -- 19:13:02.625 SQL [25877]: pgsql_close() -- 19:13:02.628 DEBUG [25879]: Database connection successful -- 19:13:02.628 INFO [25879]: _SERVER found -- 19:13:02.628 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 19:13:02.628 INFO [25879]: SERVER_NAME = oameye.works.coregrade.com -- 19:13:02.628 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d57pmll6ghrpap1h0m1oeef6olt1en0h -- 19:13:02.628 INFO [25879]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:13:02.628 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:13:02.639 INFO [25879]: COREGRADE is stopping... -- 19:13:02.640 DEBUG [25879]: Closing database connection -- 19:13:02.640 SQL [25879]: pgsql_close() -- 19:13:29.937 INFO [27127]: COREGRADE is starting... -- 19:13:29.937 INFO [27127]: Version from config: 1.0 -- 19:13:29.937 DEBUG [27127]: Connecting to database... -- 19:13:29.937 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:13:29.937 SQL [27127]: pgsql_db_connect() -- 19:13:29.941 DEBUG [27127]: Database connection successful -- 19:13:29.941 INFO [27127]: _SERVER found -- 19:13:29.941 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 19:13:29.941 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 19:13:29.941 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d57pmll6ghrpap1h0m1oeef6olt1en0h -- 19:13:29.941 INFO [27127]: QUERY_STRING = /member/page -- 19:13:29.941 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:13:29.977 INFO [27127]: COREGRADE is stopping... -- 19:13:29.977 DEBUG [27127]: Closing database connection -- 19:13:29.977 SQL [27127]: pgsql_close() -- 19:13:30.110 INFO [27127]: COREGRADE is starting... -- 19:13:30.110 INFO [27127]: Version from config: 1.0 -- 19:13:30.110 DEBUG [27127]: Connecting to database... -- 19:13:30.110 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:13:30.110 SQL [27127]: pgsql_db_connect() -- 19:13:30.123 INFO [26604]: COREGRADE is starting... -- 19:13:30.123 INFO [26604]: Version from config: 1.0 -- 19:13:30.124 DEBUG [26604]: Connecting to database... -- 19:13:30.124 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:13:30.124 SQL [26604]: pgsql_db_connect() -- 19:13:30.114 DEBUG [27127]: Database connection successful -- 19:13:30.114 INFO [27127]: _SERVER found -- 19:13:30.114 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 19:13:30.114 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 19:13:30.114 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d57pmll6ghrpap1h0m1oeef6olt1en0h -- 19:13:30.114 INFO [27127]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:13:30.114 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:13:30.125 INFO [27127]: COREGRADE is stopping... -- 19:13:30.125 DEBUG [27127]: Closing database connection -- 19:13:30.125 SQL [27127]: pgsql_close() -- 19:13:30.127 DEBUG [26604]: Database connection successful -- 19:13:30.127 INFO [26604]: _SERVER found -- 19:13:30.127 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 19:13:30.127 INFO [26604]: SERVER_NAME = oameye.works.coregrade.com -- 19:13:30.127 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d57pmll6ghrpap1h0m1oeef6olt1en0h -- 19:13:30.127 INFO [26604]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:13:30.127 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:13:30.139 INFO [26604]: COREGRADE is stopping... -- 19:13:30.139 DEBUG [26604]: Closing database connection -- 19:13:30.139 SQL [26604]: pgsql_close() -- 19:13:31.258 INFO [26604]: COREGRADE is starting... -- 19:13:31.258 INFO [26604]: Version from config: 1.0 -- 19:13:31.258 DEBUG [26604]: Connecting to database... -- 19:13:31.258 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:13:31.258 SQL [26604]: pgsql_db_connect() -- 19:13:31.259 INFO [27127]: COREGRADE is starting... -- 19:13:31.260 INFO [27127]: Version from config: 1.0 -- 19:13:31.260 DEBUG [27127]: Connecting to database... -- 19:13:31.260 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:13:31.260 SQL [27127]: pgsql_db_connect() -- 19:13:31.262 DEBUG [26604]: Database connection successful -- 19:13:31.262 INFO [26604]: _SERVER found -- 19:13:31.262 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 19:13:31.262 INFO [26604]: SERVER_NAME = oameye.works.coregrade.com -- 19:13:31.262 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d57pmll6ghrpap1h0m1oeef6olt1en0h -- 19:13:31.262 INFO [26604]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 19:13:31.262 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:13:31.273 INFO [26604]: COREGRADE is stopping... -- 19:13:31.273 DEBUG [26604]: Closing database connection -- 19:13:31.273 SQL [26604]: pgsql_close() -- 19:13:31.263 DEBUG [27127]: Database connection successful -- 19:13:31.263 INFO [27127]: _SERVER found -- 19:13:31.263 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 19:13:31.263 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 19:13:31.263 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d57pmll6ghrpap1h0m1oeef6olt1en0h -- 19:13:31.263 INFO [27127]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 19:13:31.263 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:13:31.274 INFO [27127]: COREGRADE is stopping... -- 19:13:31.274 DEBUG [27127]: Closing database connection -- 19:13:31.274 SQL [27127]: pgsql_close() -- 19:13:36.848 INFO [25880]: COREGRADE is starting... -- 19:13:36.848 INFO [25880]: Version from config: 1.0 -- 19:13:36.848 DEBUG [25880]: Connecting to database... -- 19:13:36.848 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:13:36.848 SQL [25880]: pgsql_db_connect() -- 19:13:36.852 DEBUG [25880]: Database connection successful -- 19:13:36.852 INFO [25880]: _SERVER found -- 19:13:36.852 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 19:13:36.852 INFO [25880]: SERVER_NAME = oameye.works.coregrade.com -- 19:13:36.852 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d57pmll6ghrpap1h0m1oeef6olt1en0h -- 19:13:36.852 INFO [25880]: QUERY_STRING = /member/page -- 19:13:36.852 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:13:36.888 INFO [25880]: COREGRADE is stopping... -- 19:13:36.888 DEBUG [25880]: Closing database connection -- 19:13:36.888 SQL [25880]: pgsql_close() -- 19:13:37.026 INFO [25880]: COREGRADE is starting... -- 19:13:37.026 INFO [25880]: Version from config: 1.0 -- 19:13:37.026 DEBUG [25880]: Connecting to database... -- 19:13:37.026 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:13:37.026 SQL [25880]: pgsql_db_connect() -- 19:13:37.030 DEBUG [25880]: Database connection successful -- 19:13:37.030 INFO [25880]: _SERVER found -- 19:13:37.030 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 19:13:37.030 INFO [25880]: SERVER_NAME = oameye.works.coregrade.com -- 19:13:37.030 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d57pmll6ghrpap1h0m1oeef6olt1en0h -- 19:13:37.030 INFO [25880]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:13:37.030 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:13:37.041 INFO [25880]: COREGRADE is stopping... -- 19:13:37.041 DEBUG [25880]: Closing database connection -- 19:13:37.041 SQL [25880]: pgsql_close() -- 19:13:37.226 INFO [25880]: COREGRADE is starting... -- 19:13:37.226 INFO [25880]: Version from config: 1.0 -- 19:13:37.226 DEBUG [25880]: Connecting to database... -- 19:13:37.227 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:13:37.227 SQL [25880]: pgsql_db_connect() -- 19:13:37.231 DEBUG [25880]: Database connection successful -- 19:13:37.231 INFO [25880]: _SERVER found -- 19:13:37.231 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 19:13:37.231 INFO [25880]: SERVER_NAME = oameye.works.coregrade.com -- 19:13:37.231 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d57pmll6ghrpap1h0m1oeef6olt1en0h -- 19:13:37.231 INFO [25880]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:13:37.231 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:13:37.242 INFO [25880]: COREGRADE is stopping... -- 19:13:37.242 DEBUG [25880]: Closing database connection -- 19:13:37.242 SQL [25880]: pgsql_close() -- 19:13:37.250 INFO [25880]: COREGRADE is starting... -- 19:13:37.251 INFO [25880]: Version from config: 1.0 -- 19:13:37.251 DEBUG [25880]: Connecting to database... -- 19:13:37.251 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:13:37.251 SQL [25880]: pgsql_db_connect() -- 19:13:37.254 DEBUG [25880]: Database connection successful -- 19:13:37.254 INFO [25880]: _SERVER found -- 19:13:37.254 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 19:13:37.254 INFO [25880]: SERVER_NAME = oameye.works.coregrade.com -- 19:13:37.254 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d57pmll6ghrpap1h0m1oeef6olt1en0h -- 19:13:37.254 INFO [25880]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 19:13:37.254 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:13:37.265 INFO [25880]: COREGRADE is stopping... -- 19:13:37.265 DEBUG [25880]: Closing database connection -- 19:13:37.265 SQL [25880]: pgsql_close() -- 19:13:37.277 INFO [25880]: COREGRADE is starting... -- 19:13:37.277 INFO [25880]: Version from config: 1.0 -- 19:13:37.277 DEBUG [25880]: Connecting to database... -- 19:13:37.277 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:13:37.277 SQL [25880]: pgsql_db_connect() -- 19:13:37.281 DEBUG [25880]: Database connection successful -- 19:13:37.281 INFO [25880]: _SERVER found -- 19:13:37.281 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 19:13:37.281 INFO [25880]: SERVER_NAME = oameye.works.coregrade.com -- 19:13:37.281 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d57pmll6ghrpap1h0m1oeef6olt1en0h -- 19:13:37.281 INFO [25880]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 19:13:37.281 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:13:37.292 INFO [25880]: COREGRADE is stopping... -- 19:13:37.292 DEBUG [25880]: Closing database connection -- 19:13:37.292 SQL [25880]: pgsql_close() -- 19:14:12.938 INFO [27557]: COREGRADE is starting... -- 19:14:12.939 INFO [27557]: Version from config: 1.0 -- 19:14:12.939 DEBUG [27557]: Connecting to database... -- 19:14:12.939 DEBUG [27557]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:14:12.939 SQL [27557]: pgsql_db_connect() -- 19:14:12.943 DEBUG [27557]: Database connection successful -- 19:14:12.943 INFO [27557]: _SERVER found -- 19:14:12.943 INFO [27557]: REMOTE_ADDR = 192.168.1.13 -- 19:14:12.943 INFO [27557]: SERVER_NAME = oameye.works.coregrade.com -- 19:14:12.943 INFO [27557]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d57pmll6ghrpap1h0m1oeef6olt1en0h -- 19:14:12.943 INFO [27557]: QUERY_STRING = /member/page -- 19:14:12.943 INFO [27557]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:14:12.980 INFO [27557]: COREGRADE is stopping... -- 19:14:12.980 DEBUG [27557]: Closing database connection -- 19:14:12.980 SQL [27557]: pgsql_close() -- 19:14:13.182 INFO [27557]: COREGRADE is starting... -- 19:14:13.182 INFO [27557]: Version from config: 1.0 -- 19:14:13.182 DEBUG [27557]: Connecting to database... -- 19:14:13.182 DEBUG [27557]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:14:13.182 SQL [27557]: pgsql_db_connect() -- 19:14:13.186 DEBUG [27557]: Database connection successful -- 19:14:13.186 INFO [27557]: _SERVER found -- 19:14:13.186 INFO [27557]: REMOTE_ADDR = 192.168.1.13 -- 19:14:13.186 INFO [27557]: SERVER_NAME = oameye.works.coregrade.com -- 19:14:13.186 INFO [27557]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d57pmll6ghrpap1h0m1oeef6olt1en0h -- 19:14:13.186 INFO [27557]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:14:13.186 INFO [27557]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:14:13.197 INFO [27557]: COREGRADE is stopping... -- 19:14:13.197 DEBUG [27557]: Closing database connection -- 19:14:13.197 SQL [27557]: pgsql_close() -- 19:14:13.253 INFO [27557]: COREGRADE is starting... -- 19:14:13.253 INFO [27557]: Version from config: 1.0 -- 19:14:13.253 DEBUG [27557]: Connecting to database... -- 19:14:13.253 DEBUG [27557]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:14:13.253 SQL [27557]: pgsql_db_connect() -- 19:14:13.257 DEBUG [27557]: Database connection successful -- 19:14:13.257 INFO [27557]: _SERVER found -- 19:14:13.257 INFO [27557]: REMOTE_ADDR = 192.168.1.13 -- 19:14:13.257 INFO [27557]: SERVER_NAME = oameye.works.coregrade.com -- 19:14:13.257 INFO [27557]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d57pmll6ghrpap1h0m1oeef6olt1en0h -- 19:14:13.257 INFO [27557]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:14:13.257 INFO [27557]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:14:13.268 INFO [27557]: COREGRADE is stopping... -- 19:14:13.268 DEBUG [27557]: Closing database connection -- 19:14:13.268 SQL [27557]: pgsql_close() -- 19:14:13.298 INFO [27557]: COREGRADE is starting... -- 19:14:13.299 INFO [27557]: Version from config: 1.0 -- 19:14:13.299 DEBUG [27557]: Connecting to database... -- 19:14:13.299 DEBUG [27557]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:14:13.299 SQL [27557]: pgsql_db_connect() -- 19:14:13.305 INFO [25864]: COREGRADE is starting... -- 19:14:13.305 INFO [25864]: Version from config: 1.0 -- 19:14:13.305 DEBUG [25864]: Connecting to database... -- 19:14:13.305 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:14:13.305 SQL [25864]: pgsql_db_connect() -- 19:14:13.303 DEBUG [27557]: Database connection successful -- 19:14:13.303 INFO [27557]: _SERVER found -- 19:14:13.303 INFO [27557]: REMOTE_ADDR = 192.168.1.13 -- 19:14:13.303 INFO [27557]: SERVER_NAME = oameye.works.coregrade.com -- 19:14:13.303 INFO [27557]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d57pmll6ghrpap1h0m1oeef6olt1en0h -- 19:14:13.303 INFO [27557]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 19:14:13.303 INFO [27557]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:14:13.314 INFO [27557]: COREGRADE is stopping... -- 19:14:13.314 DEBUG [27557]: Closing database connection -- 19:14:13.314 SQL [27557]: pgsql_close() -- 19:14:13.309 DEBUG [25864]: Database connection successful -- 19:14:13.309 INFO [25864]: _SERVER found -- 19:14:13.309 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 19:14:13.309 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 19:14:13.309 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d57pmll6ghrpap1h0m1oeef6olt1en0h -- 19:14:13.309 INFO [25864]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 19:14:13.309 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:14:13.321 INFO [25864]: COREGRADE is stopping... -- 19:14:13.321 DEBUG [25864]: Closing database connection -- 19:14:13.321 SQL [25864]: pgsql_close() -- 19:14:17.009 INFO [25864]: COREGRADE is starting... -- 19:14:17.010 INFO [25864]: Version from config: 1.0 -- 19:14:17.010 DEBUG [25864]: Connecting to database... -- 19:14:17.010 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:14:17.010 SQL [25864]: pgsql_db_connect() -- 19:14:17.014 DEBUG [25864]: Database connection successful -- 19:14:17.014 INFO [25864]: _SERVER found -- 19:14:17.014 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 19:14:17.014 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 19:14:17.014 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d57pmll6ghrpap1h0m1oeef6olt1en0h -- 19:14:17.014 INFO [25864]: QUERY_STRING = /member/viewCardAddAction -- 19:14:17.014 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:14:17.044 INFO [25864]: COREGRADE is stopping... -- 19:14:17.044 DEBUG [25864]: Closing database connection -- 19:14:17.044 SQL [25864]: pgsql_close() -- 19:14:18.195 INFO [25864]: COREGRADE is starting... -- 19:14:18.196 INFO [25864]: Version from config: 1.0 -- 19:14:18.196 DEBUG [25864]: Connecting to database... -- 19:14:18.196 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:14:18.196 SQL [25864]: pgsql_db_connect() -- 19:14:18.200 DEBUG [25864]: Database connection successful -- 19:14:18.200 INFO [25864]: _SERVER found -- 19:14:18.200 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 19:14:18.200 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 19:14:18.200 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d57pmll6ghrpap1h0m1oeef6olt1en0h -- 19:14:18.200 INFO [25864]: QUERY_STRING = /member/page -- 19:14:18.200 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:14:18.234 INFO [25864]: COREGRADE is stopping... -- 19:14:18.234 DEBUG [25864]: Closing database connection -- 19:14:18.234 SQL [25864]: pgsql_close() -- 19:14:18.439 INFO [25864]: COREGRADE is starting... -- 19:14:18.439 INFO [25864]: Version from config: 1.0 -- 19:14:18.439 DEBUG [25864]: Connecting to database... -- 19:14:18.440 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:14:18.440 SQL [25864]: pgsql_db_connect() -- 19:14:18.443 DEBUG [25864]: Database connection successful -- 19:14:18.443 INFO [25864]: _SERVER found -- 19:14:18.443 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 19:14:18.443 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 19:14:18.443 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=90g36u6j15v4aqi2dn8a4g5l6dqduvlf -- 19:14:18.443 INFO [25864]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:14:18.443 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:14:18.455 INFO [25864]: COREGRADE is stopping... -- 19:14:18.455 DEBUG [25864]: Closing database connection -- 19:14:18.455 SQL [25864]: pgsql_close() -- 19:14:18.494 INFO [25864]: COREGRADE is starting... -- 19:14:18.494 INFO [25864]: Version from config: 1.0 -- 19:14:18.494 DEBUG [25864]: Connecting to database... -- 19:14:18.494 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:14:18.494 SQL [25864]: pgsql_db_connect() -- 19:14:18.498 DEBUG [25864]: Database connection successful -- 19:14:18.498 INFO [25864]: _SERVER found -- 19:14:18.498 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 19:14:18.498 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 19:14:18.498 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=90g36u6j15v4aqi2dn8a4g5l6dqduvlf -- 19:14:18.498 INFO [25864]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 19:14:18.498 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:14:18.509 INFO [25864]: COREGRADE is stopping... -- 19:14:18.509 DEBUG [25864]: Closing database connection -- 19:14:18.509 SQL [25864]: pgsql_close() -- 19:14:18.519 INFO [25864]: COREGRADE is starting... -- 19:14:18.519 INFO [25864]: Version from config: 1.0 -- 19:14:18.519 DEBUG [25864]: Connecting to database... -- 19:14:18.519 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:14:18.519 SQL [25864]: pgsql_db_connect() -- 19:14:18.522 DEBUG [25864]: Database connection successful -- 19:14:18.522 INFO [25864]: _SERVER found -- 19:14:18.522 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 19:14:18.522 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 19:14:18.522 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=90g36u6j15v4aqi2dn8a4g5l6dqduvlf -- 19:14:18.522 INFO [25864]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 19:14:18.522 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:14:18.533 INFO [25864]: COREGRADE is stopping... -- 19:14:18.533 DEBUG [25864]: Closing database connection -- 19:14:18.533 SQL [25864]: pgsql_close() -- 19:14:18.536 INFO [25870]: COREGRADE is starting... -- 19:14:18.536 INFO [25870]: Version from config: 1.0 -- 19:14:18.536 DEBUG [25870]: Connecting to database... -- 19:14:18.536 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:14:18.536 SQL [25870]: pgsql_db_connect() -- 19:14:18.540 DEBUG [25870]: Database connection successful -- 19:14:18.540 INFO [25870]: _SERVER found -- 19:14:18.540 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 19:14:18.540 INFO [25870]: SERVER_NAME = oameye.works.coregrade.com -- 19:14:18.540 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=90g36u6j15v4aqi2dn8a4g5l6dqduvlf -- 19:14:18.540 INFO [25870]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:14:18.540 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:14:18.551 INFO [25870]: COREGRADE is stopping... -- 19:14:18.551 DEBUG [25870]: Closing database connection -- 19:14:18.551 SQL [25870]: pgsql_close() -- 19:14:20.064 INFO [25870]: COREGRADE is starting... -- 19:14:20.065 INFO [25870]: Version from config: 1.0 -- 19:14:20.065 DEBUG [25870]: Connecting to database... -- 19:14:20.065 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:14:20.065 SQL [25870]: pgsql_db_connect() -- 19:14:20.069 DEBUG [25870]: Database connection successful -- 19:14:20.069 INFO [25870]: _SERVER found -- 19:14:20.069 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 19:14:20.069 INFO [25870]: SERVER_NAME = oameye.works.coregrade.com -- 19:14:20.069 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=90g36u6j15v4aqi2dn8a4g5l6dqduvlf -- 19:14:20.069 INFO [25870]: QUERY_STRING = /member/page -- 19:14:20.069 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:14:20.106 INFO [25870]: COREGRADE is stopping... -- 19:14:20.106 DEBUG [25870]: Closing database connection -- 19:14:20.106 SQL [25870]: pgsql_close() -- 19:14:20.404 INFO [25870]: COREGRADE is starting... -- 19:14:20.404 INFO [25870]: Version from config: 1.0 -- 19:14:20.404 DEBUG [25870]: Connecting to database... -- 19:14:20.404 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:14:20.404 SQL [25870]: pgsql_db_connect() -- 19:14:20.408 DEBUG [25870]: Database connection successful -- 19:14:20.408 INFO [25870]: _SERVER found -- 19:14:20.408 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 19:14:20.408 INFO [25870]: SERVER_NAME = oameye.works.coregrade.com -- 19:14:20.408 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=90g36u6j15v4aqi2dn8a4g5l6dqduvlf -- 19:14:20.408 INFO [25870]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:14:20.408 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:14:20.419 INFO [25870]: COREGRADE is stopping... -- 19:14:20.420 DEBUG [25870]: Closing database connection -- 19:14:20.420 SQL [25870]: pgsql_close() -- 19:14:20.588 INFO [25870]: COREGRADE is starting... -- 19:14:20.588 INFO [25870]: Version from config: 1.0 -- 19:14:20.588 DEBUG [25870]: Connecting to database... -- 19:14:20.588 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:14:20.588 SQL [25870]: pgsql_db_connect() -- 19:14:20.592 DEBUG [25870]: Database connection successful -- 19:14:20.592 INFO [25870]: _SERVER found -- 19:14:20.592 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 19:14:20.592 INFO [25870]: SERVER_NAME = oameye.works.coregrade.com -- 19:14:20.592 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=90g36u6j15v4aqi2dn8a4g5l6dqduvlf -- 19:14:20.592 INFO [25870]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:14:20.592 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:14:20.603 INFO [25870]: COREGRADE is stopping... -- 19:14:20.603 DEBUG [25870]: Closing database connection -- 19:14:20.603 SQL [25870]: pgsql_close() -- 19:14:20.761 INFO [25870]: COREGRADE is starting... -- 19:14:20.761 INFO [25870]: Version from config: 1.0 -- 19:14:20.761 DEBUG [25870]: Connecting to database... -- 19:14:20.761 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:14:20.761 INFO [25864]: COREGRADE is starting... -- 19:14:20.761 SQL [25870]: pgsql_db_connect() -- 19:14:20.761 INFO [25864]: Version from config: 1.0 -- 19:14:20.761 DEBUG [25864]: Connecting to database... -- 19:14:20.761 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:14:20.761 SQL [25864]: pgsql_db_connect() -- 19:14:20.765 DEBUG [25870]: Database connection successful -- 19:14:20.765 INFO [25870]: _SERVER found -- 19:14:20.765 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 19:14:20.765 INFO [25870]: SERVER_NAME = oameye.works.coregrade.com -- 19:14:20.765 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=90g36u6j15v4aqi2dn8a4g5l6dqduvlf -- 19:14:20.765 INFO [25870]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 19:14:20.765 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:14:20.776 INFO [25870]: COREGRADE is stopping... -- 19:14:20.776 DEBUG [25870]: Closing database connection -- 19:14:20.766 DEBUG [25864]: Database connection successful -- 19:14:20.766 INFO [25864]: _SERVER found -- 19:14:20.766 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 19:14:20.766 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 19:14:20.766 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=90g36u6j15v4aqi2dn8a4g5l6dqduvlf -- 19:14:20.766 INFO [25864]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 19:14:20.766 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:14:20.776 INFO [25864]: COREGRADE is stopping... -- 19:14:20.776 SQL [25870]: pgsql_close() -- 19:14:20.776 DEBUG [25864]: Closing database connection -- 19:14:20.776 SQL [25864]: pgsql_close() -- 19:14:24.203 INFO [25870]: COREGRADE is starting... -- 19:14:24.204 INFO [25870]: Version from config: 1.0 -- 19:14:24.204 DEBUG [25870]: Connecting to database... -- 19:14:24.204 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:14:24.204 SQL [25870]: pgsql_db_connect() -- 19:14:24.208 DEBUG [25870]: Database connection successful -- 19:14:24.208 INFO [25870]: _SERVER found -- 19:14:24.208 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 19:14:24.208 INFO [25870]: SERVER_NAME = oameye.works.coregrade.com -- 19:14:24.208 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=90g36u6j15v4aqi2dn8a4g5l6dqduvlf -- 19:14:24.208 INFO [25870]: QUERY_STRING = /member/viewCardAddAction -- 19:14:24.208 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:14:24.238 INFO [25870]: COREGRADE is stopping... -- 19:14:24.238 DEBUG [25870]: Closing database connection -- 19:14:24.238 SQL [25870]: pgsql_close() -- 19:15:53.002 INFO [25865]: COREGRADE is starting... -- 19:15:53.002 INFO [25865]: Version from config: 1.0 -- 19:15:53.002 DEBUG [25865]: Connecting to database... -- 19:15:53.002 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:15:53.002 SQL [25865]: pgsql_db_connect() -- 19:15:53.006 DEBUG [25865]: Database connection successful -- 19:15:53.006 INFO [25865]: _SERVER found -- 19:15:53.006 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 19:15:53.006 INFO [25865]: SERVER_NAME = oameye.works.coregrade.com -- 19:15:53.006 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=90g36u6j15v4aqi2dn8a4g5l6dqduvlf -- 19:15:53.006 INFO [25865]: QUERY_STRING = /member/viewCardAddAction -- 19:15:53.006 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:15:53.040 INFO [25865]: COREGRADE is stopping... -- 19:15:53.040 DEBUG [25865]: Closing database connection -- 19:15:53.040 SQL [25865]: pgsql_close() -- 19:15:54.918 INFO [25865]: COREGRADE is starting... -- 19:15:54.918 INFO [25865]: Version from config: 1.0 -- 19:15:54.918 DEBUG [25865]: Connecting to database... -- 19:15:54.918 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:15:54.918 SQL [25865]: pgsql_db_connect() -- 19:15:54.922 DEBUG [25865]: Database connection successful -- 19:15:54.922 INFO [25865]: _SERVER found -- 19:15:54.922 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 19:15:54.922 INFO [25865]: SERVER_NAME = oameye.works.coregrade.com -- 19:15:54.922 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=90g36u6j15v4aqi2dn8a4g5l6dqduvlf -- 19:15:54.922 INFO [25865]: QUERY_STRING = /member/viewCardAddAction -- 19:15:54.922 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:15:54.955 INFO [25865]: COREGRADE is stopping... -- 19:15:54.955 DEBUG [25865]: Closing database connection -- 19:15:54.955 SQL [25865]: pgsql_close() -- 19:16:02.757 INFO [25867]: COREGRADE is starting... -- 19:16:02.757 INFO [25867]: Version from config: 1.0 -- 19:16:02.757 DEBUG [25867]: Connecting to database... -- 19:16:02.757 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:16:02.757 SQL [25867]: pgsql_db_connect() -- 19:16:02.761 DEBUG [25867]: Database connection successful -- 19:16:02.761 INFO [25867]: _SERVER found -- 19:16:02.761 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 19:16:02.761 INFO [25867]: SERVER_NAME = oameye.works.coregrade.com -- 19:16:02.761 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=90g36u6j15v4aqi2dn8a4g5l6dqduvlf -- 19:16:02.761 INFO [25867]: QUERY_STRING = /member/viewCardAddAction -- 19:16:02.761 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:16:02.792 INFO [25867]: COREGRADE is stopping... -- 19:16:02.792 DEBUG [25867]: Closing database connection -- 19:16:02.792 SQL [25867]: pgsql_close() -- 19:16:03.835 INFO [25867]: COREGRADE is starting... -- 19:16:03.835 INFO [25867]: Version from config: 1.0 -- 19:16:03.835 DEBUG [25867]: Connecting to database... -- 19:16:03.835 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:16:03.835 SQL [25867]: pgsql_db_connect() -- 19:16:03.839 DEBUG [25867]: Database connection successful -- 19:16:03.839 INFO [25867]: _SERVER found -- 19:16:03.839 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 19:16:03.839 INFO [25867]: SERVER_NAME = oameye.works.coregrade.com -- 19:16:03.839 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=90g36u6j15v4aqi2dn8a4g5l6dqduvlf -- 19:16:03.839 INFO [25867]: QUERY_STRING = /member/page -- 19:16:03.839 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:16:03.873 INFO [25867]: COREGRADE is stopping... -- 19:16:03.873 DEBUG [25867]: Closing database connection -- 19:16:03.873 SQL [25867]: pgsql_close() -- 19:16:04.161 INFO [25867]: COREGRADE is starting... -- 19:16:04.161 INFO [25867]: Version from config: 1.0 -- 19:16:04.161 DEBUG [25867]: Connecting to database... -- 19:16:04.161 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:16:04.161 SQL [25867]: pgsql_db_connect() -- 19:16:04.165 DEBUG [25867]: Database connection successful -- 19:16:04.165 INFO [25867]: _SERVER found -- 19:16:04.165 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 19:16:04.165 INFO [25867]: SERVER_NAME = oameye.works.coregrade.com -- 19:16:04.165 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=90g36u6j15v4aqi2dn8a4g5l6dqduvlf -- 19:16:04.165 INFO [25867]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:16:04.165 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:16:04.176 INFO [25867]: COREGRADE is stopping... -- 19:16:04.176 DEBUG [25867]: Closing database connection -- 19:16:04.176 SQL [25867]: pgsql_close() -- 19:16:04.258 INFO [25867]: COREGRADE is starting... -- 19:16:04.258 INFO [25867]: Version from config: 1.0 -- 19:16:04.258 DEBUG [25867]: Connecting to database... -- 19:16:04.258 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:16:04.258 SQL [25867]: pgsql_db_connect() -- 19:16:04.271 INFO [25877]: COREGRADE is starting... -- 19:16:04.271 INFO [25877]: Version from config: 1.0 -- 19:16:04.271 DEBUG [25877]: Connecting to database... -- 19:16:04.271 DEBUG [25877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:16:04.271 SQL [25877]: pgsql_db_connect() -- 19:16:04.262 DEBUG [25867]: Database connection successful -- 19:16:04.262 INFO [25867]: _SERVER found -- 19:16:04.262 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 19:16:04.262 INFO [25867]: SERVER_NAME = oameye.works.coregrade.com -- 19:16:04.262 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=90g36u6j15v4aqi2dn8a4g5l6dqduvlf -- 19:16:04.262 INFO [25867]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:16:04.262 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:16:04.273 INFO [25867]: COREGRADE is stopping... -- 19:16:04.273 DEBUG [25867]: Closing database connection -- 19:16:04.273 SQL [25867]: pgsql_close() -- 19:16:04.275 DEBUG [25877]: Database connection successful -- 19:16:04.275 INFO [25877]: _SERVER found -- 19:16:04.275 INFO [25877]: REMOTE_ADDR = 192.168.1.13 -- 19:16:04.275 INFO [25877]: SERVER_NAME = oameye.works.coregrade.com -- 19:16:04.275 INFO [25877]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=90g36u6j15v4aqi2dn8a4g5l6dqduvlf -- 19:16:04.275 INFO [25877]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 19:16:04.275 INFO [25877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:16:04.286 INFO [25877]: COREGRADE is stopping... -- 19:16:04.286 DEBUG [25877]: Closing database connection -- 19:16:04.286 SQL [25877]: pgsql_close() -- 19:16:04.296 INFO [25877]: COREGRADE is starting... -- 19:16:04.296 INFO [25877]: Version from config: 1.0 -- 19:16:04.296 DEBUG [25877]: Connecting to database... -- 19:16:04.296 DEBUG [25877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:16:04.296 SQL [25877]: pgsql_db_connect() -- 19:16:04.300 DEBUG [25877]: Database connection successful -- 19:16:04.300 INFO [25877]: _SERVER found -- 19:16:04.300 INFO [25877]: REMOTE_ADDR = 192.168.1.13 -- 19:16:04.300 INFO [25877]: SERVER_NAME = oameye.works.coregrade.com -- 19:16:04.300 INFO [25877]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=90g36u6j15v4aqi2dn8a4g5l6dqduvlf -- 19:16:04.300 INFO [25877]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 19:16:04.300 INFO [25877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:16:04.311 INFO [25877]: COREGRADE is stopping... -- 19:16:04.311 DEBUG [25877]: Closing database connection -- 19:16:04.311 SQL [25877]: pgsql_close() -- 19:16:30.249 INFO [25879]: COREGRADE is starting... -- 19:16:30.249 INFO [25879]: Version from config: 1.0 -- 19:16:30.249 DEBUG [25879]: Connecting to database... -- 19:16:30.249 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:16:30.249 SQL [25879]: pgsql_db_connect() -- 19:16:30.253 DEBUG [25879]: Database connection successful -- 19:16:30.253 INFO [25879]: _SERVER found -- 19:16:30.253 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 19:16:30.253 INFO [25879]: SERVER_NAME = oameye.works.coregrade.com -- 19:16:30.253 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=90g36u6j15v4aqi2dn8a4g5l6dqduvlf -- 19:16:30.253 INFO [25879]: QUERY_STRING = /member/page -- 19:16:30.253 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:16:30.290 INFO [25879]: COREGRADE is stopping... -- 19:16:30.290 DEBUG [25879]: Closing database connection -- 19:16:30.290 SQL [25879]: pgsql_close() -- 19:16:30.507 INFO [25879]: COREGRADE is starting... -- 19:16:30.507 INFO [25879]: Version from config: 1.0 -- 19:16:30.507 DEBUG [25879]: Connecting to database... -- 19:16:30.507 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:16:30.507 SQL [25879]: pgsql_db_connect() -- 19:16:30.511 DEBUG [25879]: Database connection successful -- 19:16:30.511 INFO [25879]: _SERVER found -- 19:16:30.511 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 19:16:30.511 INFO [25879]: SERVER_NAME = oameye.works.coregrade.com -- 19:16:30.511 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=90g36u6j15v4aqi2dn8a4g5l6dqduvlf -- 19:16:30.511 INFO [25879]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:16:30.511 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:16:30.522 INFO [25879]: COREGRADE is stopping... -- 19:16:30.522 DEBUG [25879]: Closing database connection -- 19:16:30.523 SQL [25879]: pgsql_close() -- 19:16:30.596 INFO [25879]: COREGRADE is starting... -- 19:16:30.596 INFO [25879]: Version from config: 1.0 -- 19:16:30.596 DEBUG [25879]: Connecting to database... -- 19:16:30.596 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:16:30.596 SQL [25879]: pgsql_db_connect() -- 19:16:30.600 DEBUG [25879]: Database connection successful -- 19:16:30.600 INFO [25879]: _SERVER found -- 19:16:30.600 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 19:16:30.600 INFO [25879]: SERVER_NAME = oameye.works.coregrade.com -- 19:16:30.600 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=90g36u6j15v4aqi2dn8a4g5l6dqduvlf -- 19:16:30.600 INFO [25879]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:16:30.600 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:16:30.611 INFO [25879]: COREGRADE is stopping... -- 19:16:30.611 DEBUG [25879]: Closing database connection -- 19:16:30.611 SQL [25879]: pgsql_close() -- 19:16:30.614 INFO [25879]: COREGRADE is starting... -- 19:16:30.614 INFO [25879]: Version from config: 1.0 -- 19:16:30.614 DEBUG [25879]: Connecting to database... -- 19:16:30.614 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:16:30.614 SQL [25879]: pgsql_db_connect() -- 19:16:30.618 DEBUG [25879]: Database connection successful -- 19:16:30.618 INFO [25879]: _SERVER found -- 19:16:30.618 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 19:16:30.618 INFO [25879]: SERVER_NAME = oameye.works.coregrade.com -- 19:16:30.618 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=90g36u6j15v4aqi2dn8a4g5l6dqduvlf -- 19:16:30.618 INFO [25879]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 19:16:30.618 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:16:30.629 INFO [25879]: COREGRADE is stopping... -- 19:16:30.629 DEBUG [25879]: Closing database connection -- 19:16:30.629 SQL [25879]: pgsql_close() -- 19:16:30.639 INFO [25879]: COREGRADE is starting... -- 19:16:30.639 INFO [25879]: Version from config: 1.0 -- 19:16:30.639 DEBUG [25879]: Connecting to database... -- 19:16:30.639 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:16:30.639 SQL [25879]: pgsql_db_connect() -- 19:16:30.643 DEBUG [25879]: Database connection successful -- 19:16:30.643 INFO [25879]: _SERVER found -- 19:16:30.643 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 19:16:30.643 INFO [25879]: SERVER_NAME = oameye.works.coregrade.com -- 19:16:30.643 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=90g36u6j15v4aqi2dn8a4g5l6dqduvlf -- 19:16:30.643 INFO [25879]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 19:16:30.643 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:16:30.654 INFO [25879]: COREGRADE is stopping... -- 19:16:30.654 DEBUG [25879]: Closing database connection -- 19:16:30.654 SQL [25879]: pgsql_close() -- 19:16:33.324 INFO [25879]: COREGRADE is starting... -- 19:16:33.324 INFO [25879]: Version from config: 1.0 -- 19:16:33.324 DEBUG [25879]: Connecting to database... -- 19:16:33.324 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:16:33.324 SQL [25879]: pgsql_db_connect() -- 19:16:33.328 DEBUG [25879]: Database connection successful -- 19:16:33.328 INFO [25879]: _SERVER found -- 19:16:33.328 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 19:16:33.328 INFO [25879]: SERVER_NAME = oameye.works.coregrade.com -- 19:16:33.328 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=90g36u6j15v4aqi2dn8a4g5l6dqduvlf -- 19:16:33.328 INFO [25879]: QUERY_STRING = /member/viewCardAddAction -- 19:16:33.328 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:16:33.358 INFO [25879]: COREGRADE is stopping... -- 19:16:33.358 DEBUG [25879]: Closing database connection -- 19:16:33.358 SQL [25879]: pgsql_close() -- 19:16:34.740 INFO [25879]: COREGRADE is starting... -- 19:16:34.740 INFO [25879]: Version from config: 1.0 -- 19:16:34.740 DEBUG [25879]: Connecting to database... -- 19:16:34.740 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:16:34.740 SQL [25879]: pgsql_db_connect() -- 19:16:34.744 DEBUG [25879]: Database connection successful -- 19:16:34.744 INFO [25879]: _SERVER found -- 19:16:34.744 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 19:16:34.744 INFO [25879]: SERVER_NAME = oameye.works.coregrade.com -- 19:16:34.744 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=90g36u6j15v4aqi2dn8a4g5l6dqduvlf -- 19:16:34.744 INFO [25879]: QUERY_STRING = /member/page -- 19:16:34.744 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:16:34.778 INFO [25879]: COREGRADE is stopping... -- 19:16:34.778 DEBUG [25879]: Closing database connection -- 19:16:34.778 SQL [25879]: pgsql_close() -- 19:16:35.007 INFO [25879]: COREGRADE is starting... -- 19:16:35.007 INFO [25879]: Version from config: 1.0 -- 19:16:35.007 DEBUG [25879]: Connecting to database... -- 19:16:35.007 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:16:35.007 SQL [25879]: pgsql_db_connect() -- 19:16:35.011 DEBUG [25879]: Database connection successful -- 19:16:35.011 INFO [25879]: _SERVER found -- 19:16:35.011 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 19:16:35.011 INFO [25879]: SERVER_NAME = oameye.works.coregrade.com -- 19:16:35.011 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=90g36u6j15v4aqi2dn8a4g5l6dqduvlf -- 19:16:35.011 INFO [25879]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:16:35.011 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:16:35.022 INFO [25879]: COREGRADE is stopping... -- 19:16:35.022 DEBUG [25879]: Closing database connection -- 19:16:35.022 SQL [25879]: pgsql_close() -- 19:16:35.104 INFO [25879]: COREGRADE is starting... -- 19:16:35.104 INFO [25879]: Version from config: 1.0 -- 19:16:35.104 DEBUG [25879]: Connecting to database... -- 19:16:35.104 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:16:35.104 SQL [25879]: pgsql_db_connect() -- 19:16:35.112 INFO [26604]: COREGRADE is starting... -- 19:16:35.112 INFO [26604]: Version from config: 1.0 -- 19:16:35.112 DEBUG [26604]: Connecting to database... -- 19:16:35.112 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:16:35.112 SQL [26604]: pgsql_db_connect() -- 19:16:35.117 INFO [27127]: COREGRADE is starting... -- 19:16:35.118 INFO [27127]: Version from config: 1.0 -- 19:16:35.118 DEBUG [27127]: Connecting to database... -- 19:16:35.118 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:16:35.118 SQL [27127]: pgsql_db_connect() -- 19:16:35.108 DEBUG [25879]: Database connection successful -- 19:16:35.108 INFO [25879]: _SERVER found -- 19:16:35.108 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 19:16:35.108 INFO [25879]: SERVER_NAME = oameye.works.coregrade.com -- 19:16:35.108 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=90g36u6j15v4aqi2dn8a4g5l6dqduvlf -- 19:16:35.108 INFO [25879]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:16:35.108 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:16:35.119 INFO [25879]: COREGRADE is stopping... -- 19:16:35.119 DEBUG [25879]: Closing database connection -- 19:16:35.119 SQL [25879]: pgsql_close() -- 19:16:35.116 DEBUG [26604]: Database connection successful -- 19:16:35.116 INFO [26604]: _SERVER found -- 19:16:35.116 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 19:16:35.116 INFO [26604]: SERVER_NAME = oameye.works.coregrade.com -- 19:16:35.116 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=90g36u6j15v4aqi2dn8a4g5l6dqduvlf -- 19:16:35.116 INFO [26604]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 19:16:35.116 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:16:35.127 INFO [26604]: COREGRADE is stopping... -- 19:16:35.127 DEBUG [26604]: Closing database connection -- 19:16:35.127 SQL [26604]: pgsql_close() -- 19:16:35.123 DEBUG [27127]: Database connection successful -- 19:16:35.123 INFO [27127]: _SERVER found -- 19:16:35.123 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 19:16:35.123 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 19:16:35.123 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=90g36u6j15v4aqi2dn8a4g5l6dqduvlf -- 19:16:35.123 INFO [27127]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 19:16:35.123 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:16:35.134 INFO [27127]: COREGRADE is stopping... -- 19:16:35.134 DEBUG [27127]: Closing database connection -- 19:16:35.134 SQL [27127]: pgsql_close() -- 19:16:36.474 INFO [27127]: COREGRADE is starting... -- 19:16:36.474 INFO [27127]: Version from config: 1.0 -- 19:16:36.474 DEBUG [27127]: Connecting to database... -- 19:16:36.474 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:16:36.474 SQL [27127]: pgsql_db_connect() -- 19:16:36.478 DEBUG [27127]: Database connection successful -- 19:16:36.478 INFO [27127]: _SERVER found -- 19:16:36.478 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 19:16:36.478 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 19:16:36.478 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=90g36u6j15v4aqi2dn8a4g5l6dqduvlf -- 19:16:36.478 INFO [27127]: QUERY_STRING = /member/page -- 19:16:36.478 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:16:36.514 INFO [27127]: COREGRADE is stopping... -- 19:16:36.514 DEBUG [27127]: Closing database connection -- 19:16:36.514 SQL [27127]: pgsql_close() -- 19:16:36.774 INFO [27127]: COREGRADE is starting... -- 19:16:36.775 INFO [27127]: Version from config: 1.0 -- 19:16:36.775 DEBUG [27127]: Connecting to database... -- 19:16:36.775 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:16:36.775 SQL [27127]: pgsql_db_connect() -- 19:16:36.779 DEBUG [27127]: Database connection successful -- 19:16:36.779 INFO [27127]: _SERVER found -- 19:16:36.779 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 19:16:36.779 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 19:16:36.779 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=90g36u6j15v4aqi2dn8a4g5l6dqduvlf -- 19:16:36.779 INFO [27127]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:16:36.779 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:16:36.790 INFO [27127]: COREGRADE is stopping... -- 19:16:36.790 DEBUG [27127]: Closing database connection -- 19:16:36.790 SQL [27127]: pgsql_close() -- 19:16:36.846 INFO [27127]: COREGRADE is starting... -- 19:16:36.846 INFO [27127]: Version from config: 1.0 -- 19:16:36.846 DEBUG [27127]: Connecting to database... -- 19:16:36.846 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:16:36.846 SQL [27127]: pgsql_db_connect() -- 19:16:36.850 DEBUG [27127]: Database connection successful -- 19:16:36.850 INFO [27127]: _SERVER found -- 19:16:36.850 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 19:16:36.850 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 19:16:36.850 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=90g36u6j15v4aqi2dn8a4g5l6dqduvlf -- 19:16:36.850 INFO [27127]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 19:16:36.850 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:16:36.861 INFO [27127]: COREGRADE is stopping... -- 19:16:36.861 DEBUG [27127]: Closing database connection -- 19:16:36.861 SQL [27127]: pgsql_close() -- 19:16:36.868 INFO [26604]: COREGRADE is starting... -- 19:16:36.869 INFO [26604]: Version from config: 1.0 -- 19:16:36.869 DEBUG [26604]: Connecting to database... -- 19:16:36.869 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:16:36.869 SQL [26604]: pgsql_db_connect() -- 19:16:36.869 INFO [27127]: COREGRADE is starting... -- 19:16:36.869 INFO [27127]: Version from config: 1.0 -- 19:16:36.869 DEBUG [27127]: Connecting to database... -- 19:16:36.869 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:16:36.870 SQL [27127]: pgsql_db_connect() -- 19:16:36.873 DEBUG [26604]: Database connection successful -- 19:16:36.873 INFO [26604]: _SERVER found -- 19:16:36.873 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 19:16:36.873 INFO [26604]: SERVER_NAME = oameye.works.coregrade.com -- 19:16:36.873 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=90g36u6j15v4aqi2dn8a4g5l6dqduvlf -- 19:16:36.873 INFO [26604]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 19:16:36.873 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:16:36.884 INFO [26604]: COREGRADE is stopping... -- 19:16:36.884 DEBUG [26604]: Closing database connection -- 19:16:36.884 SQL [26604]: pgsql_close() -- 19:16:36.873 DEBUG [27127]: Database connection successful -- 19:16:36.873 INFO [27127]: _SERVER found -- 19:16:36.873 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 19:16:36.873 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 19:16:36.873 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=90g36u6j15v4aqi2dn8a4g5l6dqduvlf -- 19:16:36.873 INFO [27127]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:16:36.873 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:16:36.884 INFO [27127]: COREGRADE is stopping... -- 19:16:36.884 DEBUG [27127]: Closing database connection -- 19:16:36.884 SQL [27127]: pgsql_close() -- 19:21:44.345 INFO [25880]: COREGRADE is starting... -- 19:21:44.345 INFO [25880]: Version from config: 1.0 -- 19:21:44.345 DEBUG [25880]: Connecting to database... -- 19:21:44.345 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:21:44.345 SQL [25880]: pgsql_db_connect() -- 19:21:44.349 DEBUG [25880]: Database connection successful -- 19:21:44.349 INFO [25880]: _SERVER found -- 19:21:44.349 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 19:21:44.349 INFO [25880]: SERVER_NAME = oameye.works.coregrade.com -- 19:21:44.349 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=90g36u6j15v4aqi2dn8a4g5l6dqduvlf -- 19:21:44.349 INFO [25880]: QUERY_STRING = /member/page -- 19:21:44.349 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:21:44.387 INFO [25880]: COREGRADE is stopping... -- 19:21:44.387 DEBUG [25880]: Closing database connection -- 19:21:44.387 SQL [25880]: pgsql_close() -- 19:21:44.554 INFO [25880]: COREGRADE is starting... -- 19:21:44.554 INFO [25880]: Version from config: 1.0 -- 19:21:44.554 DEBUG [25880]: Connecting to database... -- 19:21:44.554 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:21:44.554 SQL [25880]: pgsql_db_connect() -- 19:21:44.558 DEBUG [25880]: Database connection successful -- 19:21:44.558 INFO [25880]: _SERVER found -- 19:21:44.558 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 19:21:44.558 INFO [25880]: SERVER_NAME = oameye.works.coregrade.com -- 19:21:44.558 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mr4bak8lrpi1jjeg3clfko8mg6e5150o -- 19:21:44.558 INFO [25880]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:21:44.558 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:21:44.569 INFO [25880]: COREGRADE is stopping... -- 19:21:44.569 DEBUG [25880]: Closing database connection -- 19:21:44.569 SQL [25880]: pgsql_close() -- 19:21:44.679 INFO [25880]: COREGRADE is starting... -- 19:21:44.679 INFO [25880]: Version from config: 1.0 -- 19:21:44.679 DEBUG [25880]: Connecting to database... -- 19:21:44.679 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:21:44.679 SQL [25880]: pgsql_db_connect() -- 19:21:44.683 DEBUG [25880]: Database connection successful -- 19:21:44.683 INFO [25880]: _SERVER found -- 19:21:44.683 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 19:21:44.683 INFO [25880]: SERVER_NAME = oameye.works.coregrade.com -- 19:21:44.683 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mr4bak8lrpi1jjeg3clfko8mg6e5150o -- 19:21:44.683 INFO [25880]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:21:44.683 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:21:44.694 INFO [25880]: COREGRADE is stopping... -- 19:21:44.694 DEBUG [25880]: Closing database connection -- 19:21:44.694 SQL [25880]: pgsql_close() -- 19:21:44.747 INFO [25880]: COREGRADE is starting... -- 19:21:44.747 INFO [25880]: Version from config: 1.0 -- 19:21:44.747 DEBUG [25880]: Connecting to database... -- 19:21:44.747 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:21:44.747 SQL [25880]: pgsql_db_connect() -- 19:21:44.754 INFO [27557]: COREGRADE is starting... -- 19:21:44.755 INFO [27557]: Version from config: 1.0 -- 19:21:44.755 DEBUG [27557]: Connecting to database... -- 19:21:44.755 DEBUG [27557]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:21:44.755 SQL [27557]: pgsql_db_connect() -- 19:21:44.751 DEBUG [25880]: Database connection successful -- 19:21:44.751 INFO [25880]: _SERVER found -- 19:21:44.751 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 19:21:44.751 INFO [25880]: SERVER_NAME = oameye.works.coregrade.com -- 19:21:44.751 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mr4bak8lrpi1jjeg3clfko8mg6e5150o -- 19:21:44.751 INFO [25880]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 19:21:44.751 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:21:44.762 INFO [25880]: COREGRADE is stopping... -- 19:21:44.762 DEBUG [25880]: Closing database connection -- 19:21:44.762 SQL [25880]: pgsql_close() -- 19:21:44.758 DEBUG [27557]: Database connection successful -- 19:21:44.758 INFO [27557]: _SERVER found -- 19:21:44.758 INFO [27557]: REMOTE_ADDR = 192.168.1.13 -- 19:21:44.758 INFO [27557]: SERVER_NAME = oameye.works.coregrade.com -- 19:21:44.758 INFO [27557]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mr4bak8lrpi1jjeg3clfko8mg6e5150o -- 19:21:44.758 INFO [27557]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 19:21:44.758 INFO [27557]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:21:44.770 INFO [27557]: COREGRADE is stopping... -- 19:21:44.770 DEBUG [27557]: Closing database connection -- 19:21:44.770 SQL [27557]: pgsql_close() -- 19:21:44.776 INFO [25880]: COREGRADE is starting... -- 19:21:44.776 INFO [25880]: Version from config: 1.0 -- 19:21:44.776 DEBUG [25880]: Connecting to database... -- 19:21:44.776 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:21:44.776 SQL [25880]: pgsql_db_connect() -- 19:21:44.780 DEBUG [25880]: Database connection successful -- 19:21:44.780 INFO [25880]: _SERVER found -- 19:21:44.780 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 19:21:44.780 INFO [25880]: SERVER_NAME = oameye.works.coregrade.com -- 19:21:44.780 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mr4bak8lrpi1jjeg3clfko8mg6e5150o -- 19:21:44.780 INFO [25880]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:21:44.780 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:21:44.791 INFO [25880]: COREGRADE is stopping... -- 19:21:44.791 DEBUG [25880]: Closing database connection -- 19:21:44.791 SQL [25880]: pgsql_close() -- 19:21:46.432 INFO [25880]: COREGRADE is starting... -- 19:21:46.433 INFO [25880]: Version from config: 1.0 -- 19:21:46.433 DEBUG [25880]: Connecting to database... -- 19:21:46.433 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:21:46.433 SQL [25880]: pgsql_db_connect() -- 19:21:46.437 DEBUG [25880]: Database connection successful -- 19:21:46.437 INFO [25880]: _SERVER found -- 19:21:46.437 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 19:21:46.437 INFO [25880]: SERVER_NAME = oameye.works.coregrade.com -- 19:21:46.437 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mr4bak8lrpi1jjeg3clfko8mg6e5150o -- 19:21:46.437 INFO [25880]: QUERY_STRING = /member/viewCardAddAction -- 19:21:46.437 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:21:46.467 INFO [25880]: COREGRADE is stopping... -- 19:21:46.467 DEBUG [25880]: Closing database connection -- 19:21:46.467 SQL [25880]: pgsql_close() -- 19:22:57.734 INFO [25864]: COREGRADE is starting... -- 19:22:57.734 INFO [25864]: Version from config: 1.0 -- 19:22:57.734 DEBUG [25864]: Connecting to database... -- 19:22:57.734 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:22:57.734 SQL [25864]: pgsql_db_connect() -- 19:22:57.739 DEBUG [25864]: Database connection successful -- 19:22:57.739 INFO [25864]: _SERVER found -- 19:22:57.739 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 19:22:57.739 INFO [25864]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:22:57.739 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=7mun172tqlsn1s0clrr9smm9d5ehq663 -- 19:22:57.739 INFO [25864]: QUERY_STRING = /auth -- 19:22:57.739 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:22:57.772 INFO [25864]: COREGRADE is stopping... -- 19:22:57.772 DEBUG [25864]: Closing database connection -- 19:22:57.772 SQL [25864]: pgsql_close() -- 19:22:57.898 INFO [25870]: COREGRADE is starting... -- 19:22:57.898 INFO [25870]: Version from config: 1.0 -- 19:22:57.898 DEBUG [25870]: Connecting to database... -- 19:22:57.898 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:22:57.898 SQL [25870]: pgsql_db_connect() -- 19:22:57.903 INFO [25864]: COREGRADE is starting... -- 19:22:57.904 INFO [25864]: Version from config: 1.0 -- 19:22:57.904 DEBUG [25864]: Connecting to database... -- 19:22:57.904 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:22:57.904 SQL [25864]: pgsql_db_connect() -- 19:22:57.902 DEBUG [25870]: Database connection successful -- 19:22:57.902 INFO [25870]: _SERVER found -- 19:22:57.902 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 19:22:57.902 INFO [25870]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:22:57.902 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=7304es0sv5l9iaaf399iv2qv5h0lqccr -- 19:22:57.902 INFO [25870]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 19:22:57.902 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:22:57.914 INFO [25870]: COREGRADE is stopping... -- 19:22:57.914 DEBUG [25870]: Closing database connection -- 19:22:57.914 SQL [25870]: pgsql_close() -- 19:22:57.908 DEBUG [25864]: Database connection successful -- 19:22:57.908 INFO [25864]: _SERVER found -- 19:22:57.908 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 19:22:57.908 INFO [25864]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:22:57.908 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=7304es0sv5l9iaaf399iv2qv5h0lqccr -- 19:22:57.908 INFO [25864]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:22:57.908 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:22:57.919 INFO [25864]: COREGRADE is stopping... -- 19:22:57.919 DEBUG [25864]: Closing database connection -- 19:22:57.919 SQL [25864]: pgsql_close() -- 19:23:02.822 INFO [25865]: COREGRADE is starting... -- 19:23:02.823 INFO [25865]: Version from config: 1.0 -- 19:23:02.823 DEBUG [25865]: Connecting to database... -- 19:23:02.823 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:23:02.823 SQL [25865]: pgsql_db_connect() -- 19:23:02.827 DEBUG [25865]: Database connection successful -- 19:23:02.827 INFO [25865]: _SERVER found -- 19:23:02.827 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 19:23:02.827 INFO [25865]: SERVER_NAME = oameye.works.coregrade.com -- 19:23:02.827 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mr4bak8lrpi1jjeg3clfko8mg6e5150o -- 19:23:02.827 INFO [25865]: QUERY_STRING = /member/viewCardAddAction -- 19:23:02.827 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:23:02.861 INFO [25865]: COREGRADE is stopping... -- 19:23:02.861 DEBUG [25865]: Closing database connection -- 19:23:02.861 SQL [25865]: pgsql_close() -- 19:23:03.777 INFO [25865]: COREGRADE is starting... -- 19:23:03.778 INFO [25865]: Version from config: 1.0 -- 19:23:03.778 DEBUG [25865]: Connecting to database... -- 19:23:03.778 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:23:03.778 SQL [25865]: pgsql_db_connect() -- 19:23:03.782 DEBUG [25865]: Database connection successful -- 19:23:03.782 INFO [25865]: _SERVER found -- 19:23:03.782 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 19:23:03.782 INFO [25865]: SERVER_NAME = oameye.works.coregrade.com -- 19:23:03.782 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mr4bak8lrpi1jjeg3clfko8mg6e5150o -- 19:23:03.782 INFO [25865]: QUERY_STRING = /member/viewCardAddAction -- 19:23:03.782 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:23:03.815 INFO [25865]: COREGRADE is stopping... -- 19:23:03.815 DEBUG [25865]: Closing database connection -- 19:23:03.815 SQL [25865]: pgsql_close() -- 19:23:36.746 INFO [25867]: COREGRADE is starting... -- 19:23:36.746 INFO [25867]: Version from config: 1.0 -- 19:23:36.746 DEBUG [25867]: Connecting to database... -- 19:23:36.746 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:23:36.746 SQL [25867]: pgsql_db_connect() -- 19:23:36.751 DEBUG [25867]: Database connection successful -- 19:23:36.751 INFO [25867]: _SERVER found -- 19:23:36.751 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 19:23:36.751 INFO [25867]: SERVER_NAME = oameye.works.coregrade.com -- 19:23:36.751 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mr4bak8lrpi1jjeg3clfko8mg6e5150o -- 19:23:36.751 INFO [25867]: QUERY_STRING = /member/viewCardAddAction -- 19:23:36.751 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:23:36.784 INFO [25867]: COREGRADE is stopping... -- 19:23:36.784 DEBUG [25867]: Closing database connection -- 19:23:36.784 SQL [25867]: pgsql_close() -- 19:24:01.297 INFO [25877]: COREGRADE is starting... -- 19:24:01.297 INFO [25877]: Version from config: 1.0 -- 19:24:01.297 DEBUG [25877]: Connecting to database... -- 19:24:01.297 DEBUG [25877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:24:01.297 SQL [25877]: pgsql_db_connect() -- 19:24:01.302 DEBUG [25877]: Database connection successful -- 19:24:01.302 INFO [25877]: _SERVER found -- 19:24:01.302 INFO [25877]: REMOTE_ADDR = 192.168.1.13 -- 19:24:01.302 INFO [25877]: SERVER_NAME = oameye.works.coregrade.com -- 19:24:01.302 INFO [25877]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mr4bak8lrpi1jjeg3clfko8mg6e5150o -- 19:24:01.302 INFO [25877]: QUERY_STRING = /member/page -- 19:24:01.302 INFO [25877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:24:01.339 INFO [25877]: COREGRADE is stopping... -- 19:24:01.339 DEBUG [25877]: Closing database connection -- 19:24:01.339 SQL [25877]: pgsql_close() -- 19:24:01.532 INFO [25877]: COREGRADE is starting... -- 19:24:01.533 INFO [25877]: Version from config: 1.0 -- 19:24:01.533 DEBUG [25877]: Connecting to database... -- 19:24:01.533 DEBUG [25877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:24:01.533 SQL [25877]: pgsql_db_connect() -- 19:24:01.537 DEBUG [25877]: Database connection successful -- 19:24:01.537 INFO [25877]: _SERVER found -- 19:24:01.537 INFO [25877]: REMOTE_ADDR = 192.168.1.13 -- 19:24:01.537 INFO [25877]: SERVER_NAME = oameye.works.coregrade.com -- 19:24:01.537 INFO [25877]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mr4bak8lrpi1jjeg3clfko8mg6e5150o -- 19:24:01.537 INFO [25877]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:24:01.537 INFO [25877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:24:01.548 INFO [25877]: COREGRADE is stopping... -- 19:24:01.548 DEBUG [25877]: Closing database connection -- 19:24:01.548 SQL [25877]: pgsql_close() -- 19:24:01.554 INFO [25879]: COREGRADE is starting... -- 19:24:01.554 INFO [25879]: Version from config: 1.0 -- 19:24:01.554 DEBUG [25879]: Connecting to database... -- 19:24:01.554 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:24:01.554 SQL [25879]: pgsql_db_connect() -- 19:24:01.558 DEBUG [25879]: Database connection successful -- 19:24:01.558 INFO [25879]: _SERVER found -- 19:24:01.558 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 19:24:01.558 INFO [25879]: SERVER_NAME = oameye.works.coregrade.com -- 19:24:01.558 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mr4bak8lrpi1jjeg3clfko8mg6e5150o -- 19:24:01.558 INFO [25879]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:24:01.558 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:24:01.570 INFO [25879]: COREGRADE is stopping... -- 19:24:01.570 DEBUG [25879]: Closing database connection -- 19:24:01.570 SQL [25879]: pgsql_close() -- 19:24:04.174 INFO [25879]: COREGRADE is starting... -- 19:24:04.174 INFO [25879]: Version from config: 1.0 -- 19:24:04.174 DEBUG [25879]: Connecting to database... -- 19:24:04.174 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:24:04.174 SQL [25879]: pgsql_db_connect() -- 19:24:04.178 DEBUG [25879]: Database connection successful -- 19:24:04.178 INFO [25879]: _SERVER found -- 19:24:04.178 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 19:24:04.178 INFO [25879]: SERVER_NAME = oameye.works.coregrade.com -- 19:24:04.178 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mr4bak8lrpi1jjeg3clfko8mg6e5150o -- 19:24:04.178 INFO [25879]: QUERY_STRING = /member/viewCardAddAction -- 19:24:04.178 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:24:04.210 INFO [25879]: COREGRADE is stopping... -- 19:24:04.210 DEBUG [25879]: Closing database connection -- 19:24:04.210 SQL [25879]: pgsql_close() -- 19:24:26.670 INFO [26604]: COREGRADE is starting... -- 19:24:26.670 INFO [26604]: Version from config: 1.0 -- 19:24:26.670 DEBUG [26604]: Connecting to database... -- 19:24:26.670 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:24:26.670 SQL [26604]: pgsql_db_connect() -- 19:24:26.674 DEBUG [26604]: Database connection successful -- 19:24:26.674 INFO [26604]: _SERVER found -- 19:24:26.674 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 19:24:26.674 INFO [26604]: SERVER_NAME = oameye.works.coregrade.com -- 19:24:26.674 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mr4bak8lrpi1jjeg3clfko8mg6e5150o -- 19:24:26.674 INFO [26604]: QUERY_STRING = /member/viewCardAddAction -- 19:24:26.674 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:24:26.707 INFO [26604]: COREGRADE is stopping... -- 19:24:26.707 DEBUG [26604]: Closing database connection -- 19:24:26.707 SQL [26604]: pgsql_close() -- 19:24:27.529 INFO [26604]: COREGRADE is starting... -- 19:24:27.529 INFO [26604]: Version from config: 1.0 -- 19:24:27.529 DEBUG [26604]: Connecting to database... -- 19:24:27.529 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:24:27.529 SQL [26604]: pgsql_db_connect() -- 19:24:27.533 DEBUG [26604]: Database connection successful -- 19:24:27.533 INFO [26604]: _SERVER found -- 19:24:27.533 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 19:24:27.533 INFO [26604]: SERVER_NAME = oameye.works.coregrade.com -- 19:24:27.533 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mr4bak8lrpi1jjeg3clfko8mg6e5150o -- 19:24:27.533 INFO [26604]: QUERY_STRING = /member/viewCardAddAction -- 19:24:27.533 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:24:27.564 INFO [26604]: COREGRADE is stopping... -- 19:24:27.564 DEBUG [26604]: Closing database connection -- 19:24:27.564 SQL [26604]: pgsql_close() -- 19:25:54.098 INFO [27127]: COREGRADE is starting... -- 19:25:54.099 INFO [27127]: Version from config: 1.0 -- 19:25:54.099 DEBUG [27127]: Connecting to database... -- 19:25:54.099 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:25:54.099 SQL [27127]: pgsql_db_connect() -- 19:25:54.103 DEBUG [27127]: Database connection successful -- 19:25:54.103 INFO [27127]: _SERVER found -- 19:25:54.103 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 19:25:54.103 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 19:25:54.103 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mr4bak8lrpi1jjeg3clfko8mg6e5150o -- 19:25:54.103 INFO [27127]: QUERY_STRING = /member/viewCardAddAction -- 19:25:54.103 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:25:54.135 INFO [27127]: COREGRADE is stopping... -- 19:25:54.135 DEBUG [27127]: Closing database connection -- 19:25:54.135 SQL [27127]: pgsql_close() -- 19:25:54.882 INFO [27127]: COREGRADE is starting... -- 19:25:54.882 INFO [27127]: Version from config: 1.0 -- 19:25:54.882 DEBUG [27127]: Connecting to database... -- 19:25:54.882 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:25:54.882 SQL [27127]: pgsql_db_connect() -- 19:25:54.887 DEBUG [27127]: Database connection successful -- 19:25:54.887 INFO [27127]: _SERVER found -- 19:25:54.887 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 19:25:54.887 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 19:25:54.887 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mr4bak8lrpi1jjeg3clfko8mg6e5150o -- 19:25:54.887 INFO [27127]: QUERY_STRING = /member/viewCardAddAction -- 19:25:54.887 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:25:54.917 INFO [27127]: COREGRADE is stopping... -- 19:25:54.917 DEBUG [27127]: Closing database connection -- 19:25:54.917 SQL [27127]: pgsql_close() -- 19:26:27.202 INFO [27557]: COREGRADE is starting... -- 19:26:27.203 INFO [27557]: Version from config: 1.0 -- 19:26:27.203 DEBUG [27557]: Connecting to database... -- 19:26:27.203 DEBUG [27557]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:26:27.203 SQL [27557]: pgsql_db_connect() -- 19:26:27.207 DEBUG [27557]: Database connection successful -- 19:26:27.207 INFO [27557]: _SERVER found -- 19:26:27.207 INFO [27557]: REMOTE_ADDR = 192.168.1.13 -- 19:26:27.207 INFO [27557]: SERVER_NAME = oameye.works.coregrade.com -- 19:26:27.207 INFO [27557]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mr4bak8lrpi1jjeg3clfko8mg6e5150o -- 19:26:27.207 INFO [27557]: QUERY_STRING = /member/viewCardAddAction -- 19:26:27.207 INFO [27557]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:26:27.238 INFO [27557]: COREGRADE is stopping... -- 19:26:27.238 DEBUG [27557]: Closing database connection -- 19:26:27.238 SQL [27557]: pgsql_close() -- 19:26:27.997 INFO [27557]: COREGRADE is starting... -- 19:26:27.998 INFO [27557]: Version from config: 1.0 -- 19:26:27.998 DEBUG [27557]: Connecting to database... -- 19:26:27.998 DEBUG [27557]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:26:27.998 SQL [27557]: pgsql_db_connect() -- 19:26:28.002 DEBUG [27557]: Database connection successful -- 19:26:28.002 INFO [27557]: _SERVER found -- 19:26:28.002 INFO [27557]: REMOTE_ADDR = 192.168.1.13 -- 19:26:28.002 INFO [27557]: SERVER_NAME = oameye.works.coregrade.com -- 19:26:28.002 INFO [27557]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mr4bak8lrpi1jjeg3clfko8mg6e5150o -- 19:26:28.002 INFO [27557]: QUERY_STRING = /member/viewCardAddAction -- 19:26:28.002 INFO [27557]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:26:28.032 INFO [27557]: COREGRADE is stopping... -- 19:26:28.032 DEBUG [27557]: Closing database connection -- 19:26:28.032 SQL [27557]: pgsql_close() -- 19:27:42.259 INFO [25880]: COREGRADE is starting... -- 19:27:42.260 INFO [25880]: Version from config: 1.0 -- 19:27:42.260 DEBUG [25880]: Connecting to database... -- 19:27:42.260 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:42.260 SQL [25880]: pgsql_db_connect() -- 19:27:42.264 DEBUG [25880]: Database connection successful -- 19:27:42.264 INFO [25880]: _SERVER found -- 19:27:42.264 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 19:27:42.264 INFO [25880]: SERVER_NAME = oameye.works.coregrade.com -- 19:27:42.264 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mr4bak8lrpi1jjeg3clfko8mg6e5150o -- 19:27:42.264 INFO [25880]: QUERY_STRING = /member/viewCardAddAction -- 19:27:42.264 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:27:42.295 INFO [25880]: COREGRADE is stopping... -- 19:27:42.295 DEBUG [25880]: Closing database connection -- 19:27:42.295 SQL [25880]: pgsql_close() -- 19:27:42.893 INFO [25880]: COREGRADE is starting... -- 19:27:42.893 INFO [25880]: Version from config: 1.0 -- 19:27:42.893 DEBUG [25880]: Connecting to database... -- 19:27:42.893 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:42.893 SQL [25880]: pgsql_db_connect() -- 19:27:42.897 DEBUG [25880]: Database connection successful -- 19:27:42.897 INFO [25880]: _SERVER found -- 19:27:42.897 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 19:27:42.897 INFO [25880]: SERVER_NAME = oameye.works.coregrade.com -- 19:27:42.897 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mr4bak8lrpi1jjeg3clfko8mg6e5150o -- 19:27:42.897 INFO [25880]: QUERY_STRING = /member/viewCardAddAction -- 19:27:42.897 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:27:42.927 INFO [25880]: COREGRADE is stopping... -- 19:27:42.927 DEBUG [25880]: Closing database connection -- 19:27:42.927 SQL [25880]: pgsql_close() -- 19:29:06.563 INFO [25870]: COREGRADE is starting... -- 19:29:06.564 INFO [25870]: Version from config: 1.0 -- 19:29:06.564 DEBUG [25870]: Connecting to database... -- 19:29:06.564 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:06.564 SQL [25870]: pgsql_db_connect() -- 19:29:06.568 DEBUG [25870]: Database connection successful -- 19:29:06.568 INFO [25870]: _SERVER found -- 19:29:06.568 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 19:29:06.568 INFO [25870]: SERVER_NAME = oameye.works.coregrade.com -- 19:29:06.568 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mr4bak8lrpi1jjeg3clfko8mg6e5150o -- 19:29:06.568 INFO [25870]: QUERY_STRING = /member/viewCardAddAction -- 19:29:06.568 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:29:06.612 INFO [25870]: COREGRADE is stopping... -- 19:29:06.612 DEBUG [25870]: Closing database connection -- 19:29:06.612 SQL [25870]: pgsql_close() -- 19:29:09.369 INFO [25870]: COREGRADE is starting... -- 19:29:09.370 INFO [25870]: Version from config: 1.0 -- 19:29:09.370 DEBUG [25870]: Connecting to database... -- 19:29:09.370 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:09.370 SQL [25870]: pgsql_db_connect() -- 19:29:09.374 DEBUG [25870]: Database connection successful -- 19:29:09.374 INFO [25870]: _SERVER found -- 19:29:09.374 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 19:29:09.374 INFO [25870]: SERVER_NAME = oameye.works.coregrade.com -- 19:29:09.374 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mr4bak8lrpi1jjeg3clfko8mg6e5150o -- 19:29:09.374 INFO [25870]: QUERY_STRING = /member/viewCardAddAction -- 19:29:09.374 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:29:09.404 INFO [25870]: COREGRADE is stopping... -- 19:29:09.404 DEBUG [25870]: Closing database connection -- 19:29:09.404 SQL [25870]: pgsql_close() -- 19:29:40.511 INFO [25864]: COREGRADE is starting... -- 19:29:40.512 INFO [25864]: Version from config: 1.0 -- 19:29:40.512 DEBUG [25864]: Connecting to database... -- 19:29:40.512 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:40.512 SQL [25864]: pgsql_db_connect() -- 19:29:40.516 DEBUG [25864]: Database connection successful -- 19:29:40.516 INFO [25864]: _SERVER found -- 19:29:40.516 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 19:29:40.516 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 19:29:40.516 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mr4bak8lrpi1jjeg3clfko8mg6e5150o -- 19:29:40.516 INFO [25864]: QUERY_STRING = /member/viewCardAddAction -- 19:29:40.516 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:29:40.547 INFO [25864]: COREGRADE is stopping... -- 19:29:40.547 DEBUG [25864]: Closing database connection -- 19:29:40.547 SQL [25864]: pgsql_close() -- 19:29:41.482 INFO [25864]: COREGRADE is starting... -- 19:29:41.482 INFO [25864]: Version from config: 1.0 -- 19:29:41.482 DEBUG [25864]: Connecting to database... -- 19:29:41.482 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:41.482 SQL [25864]: pgsql_db_connect() -- 19:29:41.486 DEBUG [25864]: Database connection successful -- 19:29:41.486 INFO [25864]: _SERVER found -- 19:29:41.486 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 19:29:41.486 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 19:29:41.486 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mr4bak8lrpi1jjeg3clfko8mg6e5150o -- 19:29:41.486 INFO [25864]: QUERY_STRING = /member/viewCardAddAction -- 19:29:41.486 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:29:41.516 INFO [25864]: COREGRADE is stopping... -- 19:29:41.516 DEBUG [25864]: Closing database connection -- 19:29:41.516 SQL [25864]: pgsql_close() -- 19:30:42.443 INFO [25865]: COREGRADE is starting... -- 19:30:42.443 INFO [25865]: Version from config: 1.0 -- 19:30:42.443 DEBUG [25865]: Connecting to database... -- 19:30:42.443 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:30:42.443 SQL [25865]: pgsql_db_connect() -- 19:30:42.447 DEBUG [25865]: Database connection successful -- 19:30:42.447 INFO [25865]: _SERVER found -- 19:30:42.447 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 19:30:42.447 INFO [25865]: SERVER_NAME = oameye.works.coregrade.com -- 19:30:42.447 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mr4bak8lrpi1jjeg3clfko8mg6e5150o -- 19:30:42.447 INFO [25865]: QUERY_STRING = /member/viewCardAddAction -- 19:30:42.447 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:30:42.481 INFO [25865]: COREGRADE is stopping... -- 19:30:42.481 DEBUG [25865]: Closing database connection -- 19:30:42.481 SQL [25865]: pgsql_close() -- 19:30:43.260 INFO [25865]: COREGRADE is starting... -- 19:30:43.260 INFO [25865]: Version from config: 1.0 -- 19:30:43.260 DEBUG [25865]: Connecting to database... -- 19:30:43.260 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:30:43.261 SQL [25865]: pgsql_db_connect() -- 19:30:43.265 DEBUG [25865]: Database connection successful -- 19:30:43.265 INFO [25865]: _SERVER found -- 19:30:43.265 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 19:30:43.265 INFO [25865]: SERVER_NAME = oameye.works.coregrade.com -- 19:30:43.265 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mr4bak8lrpi1jjeg3clfko8mg6e5150o -- 19:30:43.265 INFO [25865]: QUERY_STRING = /member/viewCardAddAction -- 19:30:43.265 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:30:43.297 INFO [25865]: COREGRADE is stopping... -- 19:30:43.297 DEBUG [25865]: Closing database connection -- 19:30:43.297 SQL [25865]: pgsql_close() -- 19:31:52.796 INFO [25867]: COREGRADE is starting... -- 19:31:52.797 INFO [25867]: Version from config: 1.0 -- 19:31:52.797 DEBUG [25867]: Connecting to database... -- 19:31:52.797 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:31:52.797 SQL [25867]: pgsql_db_connect() -- 19:31:52.801 DEBUG [25867]: Database connection successful -- 19:31:52.801 INFO [25867]: _SERVER found -- 19:31:52.801 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 19:31:52.801 INFO [25867]: SERVER_NAME = oameye.works.coregrade.com -- 19:31:52.801 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mr4bak8lrpi1jjeg3clfko8mg6e5150o -- 19:31:52.801 INFO [25867]: QUERY_STRING = /member/viewCardAddAction -- 19:31:52.801 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:31:52.832 INFO [25867]: COREGRADE is stopping... -- 19:31:52.832 DEBUG [25867]: Closing database connection -- 19:31:52.832 SQL [25867]: pgsql_close() -- 19:31:55.119 INFO [25867]: COREGRADE is starting... -- 19:31:55.120 INFO [25867]: Version from config: 1.0 -- 19:31:55.120 DEBUG [25867]: Connecting to database... -- 19:31:55.120 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:31:55.120 SQL [25867]: pgsql_db_connect() -- 19:31:55.124 DEBUG [25867]: Database connection successful -- 19:31:55.124 INFO [25867]: _SERVER found -- 19:31:55.124 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 19:31:55.124 INFO [25867]: SERVER_NAME = oameye.works.coregrade.com -- 19:31:55.124 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mr4bak8lrpi1jjeg3clfko8mg6e5150o -- 19:31:55.124 INFO [25867]: QUERY_STRING = /member/viewCardAddAction -- 19:31:55.124 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:31:55.154 INFO [25867]: COREGRADE is stopping... -- 19:31:55.154 DEBUG [25867]: Closing database connection -- 19:31:55.154 SQL [25867]: pgsql_close() -- 19:35:00.586 INFO [25877]: COREGRADE is starting... -- 19:35:00.586 INFO [25877]: Version from config: 1.0 -- 19:35:00.586 DEBUG [25877]: Connecting to database... -- 19:35:00.586 DEBUG [25877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:35:00.586 SQL [25877]: pgsql_db_connect() -- 19:35:00.590 DEBUG [25877]: Database connection successful -- 19:35:00.590 INFO [25877]: _SERVER found -- 19:35:00.590 INFO [25877]: REMOTE_ADDR = 192.168.1.13 -- 19:35:00.590 INFO [25877]: SERVER_NAME = oameye.works.coregrade.com -- 19:35:00.590 INFO [25877]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mr4bak8lrpi1jjeg3clfko8mg6e5150o -- 19:35:00.590 INFO [25877]: QUERY_STRING = /member/viewCardAddAction -- 19:35:00.590 INFO [25877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:35:00.621 INFO [25877]: COREGRADE is stopping... -- 19:35:00.621 DEBUG [25877]: Closing database connection -- 19:35:00.621 SQL [25877]: pgsql_close() -- 19:35:02.568 INFO [25877]: COREGRADE is starting... -- 19:35:02.568 INFO [25877]: Version from config: 1.0 -- 19:35:02.568 DEBUG [25877]: Connecting to database... -- 19:35:02.568 DEBUG [25877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:35:02.568 SQL [25877]: pgsql_db_connect() -- 19:35:02.572 DEBUG [25877]: Database connection successful -- 19:35:02.572 INFO [25877]: _SERVER found -- 19:35:02.572 INFO [25877]: REMOTE_ADDR = 192.168.1.13 -- 19:35:02.572 INFO [25877]: SERVER_NAME = oameye.works.coregrade.com -- 19:35:02.572 INFO [25877]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mr4bak8lrpi1jjeg3clfko8mg6e5150o -- 19:35:02.572 INFO [25877]: QUERY_STRING = /member/viewCardAddAction -- 19:35:02.572 INFO [25877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:35:02.603 INFO [25877]: COREGRADE is stopping... -- 19:35:02.603 DEBUG [25877]: Closing database connection -- 19:35:02.603 SQL [25877]: pgsql_close() -- 23:03:21.043 INFO [25879]: COREGRADE is starting... -- 23:03:21.044 INFO [25879]: Version from config: 1.0 -- 23:03:21.044 DEBUG [25879]: Connecting to database... -- 23:03:21.044 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:03:21.044 SQL [25879]: pgsql_db_connect() -- 23:03:21.048 DEBUG [25879]: Database connection successful -- 23:03:21.048 INFO [25879]: _SERVER found -- 23:03:21.048 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 23:03:21.048 INFO [25879]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:03:21.048 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361 -- 23:03:21.048 INFO [25879]: QUERY_STRING = -- 23:03:21.048 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:03:21.089 INFO [25879]: COREGRADE is stopping... -- 23:03:21.089 DEBUG [25879]: Closing database connection -- 23:03:21.089 SQL [25879]: pgsql_close() -- 23:03:27.638 INFO [26604]: COREGRADE is starting... -- 23:03:27.638 INFO [26604]: Version from config: 1.0 -- 23:03:27.638 DEBUG [26604]: Connecting to database... -- 23:03:27.638 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:03:27.638 SQL [26604]: pgsql_db_connect() -- 23:03:27.642 DEBUG [26604]: Database connection successful -- 23:03:27.642 INFO [26604]: _SERVER found -- 23:03:27.642 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 23:03:27.642 INFO [26604]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:03:27.642 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0pcblq6dogrquphmc4gagla96gnogh26; _gat_gtag_UA_54829827_2=1 -- 23:03:27.642 INFO [26604]: QUERY_STRING = /auth -- 23:03:27.642 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:03:27.674 INFO [26604]: COREGRADE is stopping... -- 23:03:27.674 DEBUG [26604]: Closing database connection -- 23:03:27.674 SQL [26604]: pgsql_close() -- 23:03:27.870 INFO [26604]: COREGRADE is starting... -- 23:03:27.870 INFO [26604]: Version from config: 1.0 -- 23:03:27.870 DEBUG [26604]: Connecting to database... -- 23:03:27.870 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:03:27.870 SQL [26604]: pgsql_db_connect() -- 23:03:27.874 DEBUG [26604]: Database connection successful -- 23:03:27.874 INFO [26604]: _SERVER found -- 23:03:27.874 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 23:03:27.874 INFO [26604]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:03:27.874 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0pcblq6dogrquphmc4gagla96gnogh26; _gat_gtag_UA_54829827_2=1 -- 23:03:27.874 INFO [26604]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 23:03:27.874 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:03:27.885 INFO [26604]: COREGRADE is stopping... -- 23:03:27.885 DEBUG [26604]: Closing database connection -- 23:03:27.885 SQL [26604]: pgsql_close() -- 23:03:27.902 INFO [26604]: COREGRADE is starting... -- 23:03:27.902 INFO [26604]: Version from config: 1.0 -- 23:03:27.902 DEBUG [26604]: Connecting to database... -- 23:03:27.902 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:03:27.902 SQL [26604]: pgsql_db_connect() -- 23:03:27.906 DEBUG [26604]: Database connection successful -- 23:03:27.906 INFO [26604]: _SERVER found -- 23:03:27.906 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 23:03:27.906 INFO [26604]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:03:27.906 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0pcblq6dogrquphmc4gagla96gnogh26; _gat_gtag_UA_54829827_2=1 -- 23:03:27.906 INFO [26604]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:03:27.906 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:03:27.917 INFO [26604]: COREGRADE is stopping... -- 23:03:27.917 DEBUG [26604]: Closing database connection -- 23:03:27.917 SQL [26604]: pgsql_close() -- 23:03:30.181 INFO [26604]: COREGRADE is starting... -- 23:03:30.181 INFO [26604]: Version from config: 1.0 -- 23:03:30.181 DEBUG [26604]: Connecting to database... -- 23:03:30.181 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:03:30.181 SQL [26604]: pgsql_db_connect() -- 23:03:30.185 DEBUG [26604]: Database connection successful -- 23:03:30.185 INFO [26604]: _SERVER found -- 23:03:30.185 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 23:03:30.185 INFO [26604]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:03:30.185 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0pcblq6dogrquphmc4gagla96gnogh26; _gat_gtag_UA_54829827_2=1 -- 23:03:30.185 INFO [26604]: QUERY_STRING = /auth -- 23:03:30.185 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:03:30.244 INFO [26604]: COREGRADE is starting... -- 23:03:30.244 INFO [26604]: Version from config: 1.0 -- 23:03:30.244 DEBUG [26604]: Connecting to database... -- 23:03:30.244 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:03:30.244 SQL [26604]: pgsql_db_connect() -- 23:03:30.248 DEBUG [26604]: Database connection successful -- 23:03:30.248 INFO [26604]: _SERVER found -- 23:03:30.248 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 23:03:30.248 INFO [26604]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:03:30.248 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0pcblq6dogrquphmc4gagla96gnogh26; _gat_gtag_UA_54829827_2=1 -- 23:03:30.248 INFO [26604]: QUERY_STRING = /member/index -- 23:03:30.248 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:03:30.283 INFO [26604]: COREGRADE is stopping... -- 23:03:30.283 DEBUG [26604]: Closing database connection -- 23:03:30.283 SQL [26604]: pgsql_close() -- 23:03:30.519 INFO [27127]: COREGRADE is starting... -- 23:03:30.519 INFO [27127]: Version from config: 1.0 -- 23:03:30.519 DEBUG [27127]: Connecting to database... -- 23:03:30.519 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:03:30.519 SQL [27127]: pgsql_db_connect() -- 23:03:30.523 DEBUG [27127]: Database connection successful -- 23:03:30.523 INFO [27127]: _SERVER found -- 23:03:30.523 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 23:03:30.523 INFO [27127]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:03:30.523 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0pcblq6dogrquphmc4gagla96gnogh26; _gat_gtag_UA_54829827_2=1 -- 23:03:30.523 INFO [27127]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:03:30.523 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:03:30.535 INFO [27127]: COREGRADE is stopping... -- 23:03:30.535 DEBUG [27127]: Closing database connection -- 23:03:30.535 SQL [27127]: pgsql_close() -- 23:03:30.622 INFO [27127]: COREGRADE is starting... -- 23:03:30.623 INFO [27127]: Version from config: 1.0 -- 23:03:30.623 DEBUG [27127]: Connecting to database... -- 23:03:30.623 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:03:30.623 SQL [27127]: pgsql_db_connect() -- 23:03:30.627 DEBUG [27127]: Database connection successful -- 23:03:30.627 INFO [27127]: _SERVER found -- 23:03:30.627 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 23:03:30.627 INFO [27127]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:03:30.627 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0pcblq6dogrquphmc4gagla96gnogh26; _gat_gtag_UA_54829827_2=1 -- 23:03:30.627 INFO [27127]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:03:30.627 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:03:30.638 INFO [27127]: COREGRADE is stopping... -- 23:03:30.638 DEBUG [27127]: Closing database connection -- 23:03:30.638 SQL [27127]: pgsql_close() -- 23:22:14.947 INFO [27557]: COREGRADE is starting... -- 23:22:14.947 INFO [27557]: Version from config: 1.0 -- 23:22:14.947 DEBUG [27557]: Connecting to database... -- 23:22:14.947 DEBUG [27557]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:22:14.947 SQL [27557]: pgsql_db_connect() -- 23:22:14.952 DEBUG [27557]: Database connection successful -- 23:22:14.952 INFO [27557]: _SERVER found -- 23:22:14.952 INFO [27557]: REMOTE_ADDR = 192.168.1.13 -- 23:22:14.952 INFO [27557]: SERVER_NAME = oameye.works.coregrade.com -- 23:22:14.952 INFO [27557]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420 -- 23:22:14.952 INFO [27557]: QUERY_STRING = /auth -- 23:22:14.952 INFO [27557]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:22:14.988 INFO [27557]: COREGRADE is stopping... -- 23:22:14.988 DEBUG [27557]: Closing database connection -- 23:22:14.988 SQL [27557]: pgsql_close() -- 23:22:15.231 INFO [27557]: COREGRADE is starting... -- 23:22:15.231 INFO [27557]: Version from config: 1.0 -- 23:22:15.231 DEBUG [27557]: Connecting to database... -- 23:22:15.231 DEBUG [27557]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:22:15.231 SQL [27557]: pgsql_db_connect() -- 23:22:15.235 DEBUG [27557]: Database connection successful -- 23:22:15.235 INFO [27557]: _SERVER found -- 23:22:15.235 INFO [27557]: REMOTE_ADDR = 192.168.1.13 -- 23:22:15.235 INFO [27557]: SERVER_NAME = oameye.works.coregrade.com -- 23:22:15.235 INFO [27557]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=451ptkfba5j7aa9p44tjhu5p1d389efs -- 23:22:15.235 INFO [27557]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 23:22:15.235 INFO [27557]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:22:15.246 INFO [27557]: COREGRADE is stopping... -- 23:22:15.247 DEBUG [27557]: Closing database connection -- 23:22:15.247 SQL [27557]: pgsql_close() -- 23:22:15.260 INFO [27557]: COREGRADE is starting... -- 23:22:15.260 INFO [27557]: Version from config: 1.0 -- 23:22:15.260 DEBUG [27557]: Connecting to database... -- 23:22:15.260 DEBUG [27557]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:22:15.260 SQL [27557]: pgsql_db_connect() -- 23:22:15.264 DEBUG [27557]: Database connection successful -- 23:22:15.264 INFO [27557]: _SERVER found -- 23:22:15.264 INFO [27557]: REMOTE_ADDR = 192.168.1.13 -- 23:22:15.264 INFO [27557]: SERVER_NAME = oameye.works.coregrade.com -- 23:22:15.264 INFO [27557]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=451ptkfba5j7aa9p44tjhu5p1d389efs -- 23:22:15.264 INFO [27557]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:22:15.264 INFO [27557]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:22:15.275 INFO [27557]: COREGRADE is stopping... -- 23:22:15.275 DEBUG [27557]: Closing database connection -- 23:22:15.275 SQL [27557]: pgsql_close() -- 23:22:29.244 INFO [25880]: COREGRADE is starting... -- 23:22:29.244 INFO [25880]: Version from config: 1.0 -- 23:22:29.244 DEBUG [25880]: Connecting to database... -- 23:22:29.245 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:22:29.245 SQL [25880]: pgsql_db_connect() -- 23:22:29.249 DEBUG [25880]: Database connection successful -- 23:22:29.249 INFO [25880]: _SERVER found -- 23:22:29.249 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 23:22:29.249 INFO [25880]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:22:29.249 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0pcblq6dogrquphmc4gagla96gnogh26 -- 23:22:29.249 INFO [25880]: QUERY_STRING = /auth -- 23:22:29.249 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:22:29.281 INFO [25880]: COREGRADE is stopping... -- 23:22:29.281 DEBUG [25880]: Closing database connection -- 23:22:29.281 SQL [25880]: pgsql_close() -- 23:22:29.644 INFO [25880]: COREGRADE is starting... -- 23:22:29.644 INFO [25880]: Version from config: 1.0 -- 23:22:29.644 DEBUG [25880]: Connecting to database... -- 23:22:29.644 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:22:29.644 SQL [25880]: pgsql_db_connect() -- 23:22:29.652 INFO [25870]: COREGRADE is starting... -- 23:22:29.652 INFO [25870]: Version from config: 1.0 -- 23:22:29.652 DEBUG [25870]: Connecting to database... -- 23:22:29.652 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:22:29.652 SQL [25870]: pgsql_db_connect() -- 23:22:29.648 DEBUG [25880]: Database connection successful -- 23:22:29.648 INFO [25880]: _SERVER found -- 23:22:29.648 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 23:22:29.648 INFO [25880]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:22:29.648 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=57urk4idjmcm3c8baciakbp1h03abikg -- 23:22:29.648 INFO [25880]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:22:29.648 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:22:29.660 INFO [25880]: COREGRADE is stopping... -- 23:22:29.660 DEBUG [25880]: Closing database connection -- 23:22:29.660 SQL [25880]: pgsql_close() -- 23:22:29.656 DEBUG [25870]: Database connection successful -- 23:22:29.656 INFO [25870]: _SERVER found -- 23:22:29.656 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 23:22:29.656 INFO [25870]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:22:29.656 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=57urk4idjmcm3c8baciakbp1h03abikg -- 23:22:29.656 INFO [25870]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 23:22:29.656 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:22:29.667 INFO [25870]: COREGRADE is stopping... -- 23:22:29.667 DEBUG [25870]: Closing database connection -- 23:22:29.667 SQL [25870]: pgsql_close() -- 23:22:35.386 INFO [25864]: COREGRADE is starting... -- 23:22:35.386 INFO [25864]: Version from config: 1.0 -- 23:22:35.386 DEBUG [25864]: Connecting to database... -- 23:22:35.386 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:22:35.386 SQL [25864]: pgsql_db_connect() -- 23:22:35.390 DEBUG [25864]: Database connection successful -- 23:22:35.390 INFO [25864]: _SERVER found -- 23:22:35.390 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 23:22:35.390 INFO [25864]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:22:35.390 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=57urk4idjmcm3c8baciakbp1h03abikg -- 23:22:35.390 INFO [25864]: QUERY_STRING = /auth -- 23:22:35.390 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:22:35.464 INFO [25864]: COREGRADE is starting... -- 23:22:35.464 INFO [25864]: Version from config: 1.0 -- 23:22:35.464 DEBUG [25864]: Connecting to database... -- 23:22:35.464 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:22:35.464 SQL [25864]: pgsql_db_connect() -- 23:22:35.468 DEBUG [25864]: Database connection successful -- 23:22:35.468 INFO [25864]: _SERVER found -- 23:22:35.468 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 23:22:35.468 INFO [25864]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:22:35.468 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=57urk4idjmcm3c8baciakbp1h03abikg -- 23:22:35.468 INFO [25864]: QUERY_STRING = /member/index -- 23:22:35.468 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:22:35.503 INFO [25864]: COREGRADE is stopping... -- 23:22:35.503 DEBUG [25864]: Closing database connection -- 23:22:35.504 SQL [25864]: pgsql_close() -- 23:22:35.713 INFO [25864]: COREGRADE is starting... -- 23:22:35.713 INFO [25864]: Version from config: 1.0 -- 23:22:35.713 DEBUG [25864]: Connecting to database... -- 23:22:35.713 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:22:35.713 SQL [25864]: pgsql_db_connect() -- 23:22:35.726 INFO [25865]: COREGRADE is starting... -- 23:22:35.726 INFO [25865]: Version from config: 1.0 -- 23:22:35.726 DEBUG [25865]: Connecting to database... -- 23:22:35.726 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:22:35.726 SQL [25865]: pgsql_db_connect() -- 23:22:35.717 DEBUG [25864]: Database connection successful -- 23:22:35.717 INFO [25864]: _SERVER found -- 23:22:35.717 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 23:22:35.717 INFO [25864]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:22:35.717 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=57urk4idjmcm3c8baciakbp1h03abikg -- 23:22:35.717 INFO [25864]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:22:35.717 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:22:35.728 INFO [25864]: COREGRADE is stopping... -- 23:22:35.728 DEBUG [25864]: Closing database connection -- 23:22:35.728 SQL [25864]: pgsql_close() -- 23:22:35.730 DEBUG [25865]: Database connection successful -- 23:22:35.730 INFO [25865]: _SERVER found -- 23:22:35.730 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 23:22:35.730 INFO [25865]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:22:35.730 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=57urk4idjmcm3c8baciakbp1h03abikg -- 23:22:35.730 INFO [25865]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:22:35.730 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:22:35.742 INFO [25865]: COREGRADE is stopping... -- 23:22:35.742 DEBUG [25865]: Closing database connection -- 23:22:35.742 SQL [25865]: pgsql_close() -- 23:22:40.167 INFO [25867]: COREGRADE is starting... -- 23:22:40.168 INFO [25867]: Version from config: 1.0 -- 23:22:40.168 DEBUG [25867]: Connecting to database... -- 23:22:40.168 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:22:40.168 SQL [25867]: pgsql_db_connect() -- 23:22:40.172 DEBUG [25867]: Database connection successful -- 23:22:40.172 INFO [25867]: _SERVER found -- 23:22:40.172 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 23:22:40.172 INFO [25867]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:22:40.172 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=57urk4idjmcm3c8baciakbp1h03abikg -- 23:22:40.172 INFO [25867]: QUERY_STRING = /member/page -- 23:22:40.172 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:22:40.208 INFO [25867]: COREGRADE is stopping... -- 23:22:40.208 DEBUG [25867]: Closing database connection -- 23:22:40.208 SQL [25867]: pgsql_close() -- 23:22:40.427 INFO [25867]: COREGRADE is starting... -- 23:22:40.427 INFO [25867]: Version from config: 1.0 -- 23:22:40.427 DEBUG [25867]: Connecting to database... -- 23:22:40.427 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:22:40.427 SQL [25867]: pgsql_db_connect() -- 23:22:40.431 DEBUG [25867]: Database connection successful -- 23:22:40.431 INFO [25867]: _SERVER found -- 23:22:40.431 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 23:22:40.431 INFO [25867]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:22:40.431 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=57urk4idjmcm3c8baciakbp1h03abikg -- 23:22:40.431 INFO [25867]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:22:40.431 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:22:40.442 INFO [25867]: COREGRADE is stopping... -- 23:22:40.442 DEBUG [25867]: Closing database connection -- 23:22:40.442 SQL [25867]: pgsql_close() -- 23:22:45.127 INFO [25867]: COREGRADE is starting... -- 23:22:45.127 INFO [25867]: Version from config: 1.0 -- 23:22:45.127 DEBUG [25867]: Connecting to database... -- 23:22:45.127 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:22:45.127 SQL [25867]: pgsql_db_connect() -- 23:22:45.131 DEBUG [25867]: Database connection successful -- 23:22:45.131 INFO [25867]: _SERVER found -- 23:22:45.131 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 23:22:45.131 INFO [25867]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:22:45.131 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=57urk4idjmcm3c8baciakbp1h03abikg -- 23:22:45.131 INFO [25867]: QUERY_STRING = /member/viewCardAddAction -- 23:22:45.131 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:22:45.161 INFO [25867]: COREGRADE is stopping... -- 23:22:45.161 DEBUG [25867]: Closing database connection -- 23:22:45.161 SQL [25867]: pgsql_close() -- 23:22:45.977 INFO [25867]: COREGRADE is starting... -- 23:22:45.978 INFO [25867]: Version from config: 1.0 -- 23:22:45.978 DEBUG [25867]: Connecting to database... -- 23:22:45.978 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:22:45.978 SQL [25867]: pgsql_db_connect() -- 23:22:45.982 DEBUG [25867]: Database connection successful -- 23:22:45.982 INFO [25867]: _SERVER found -- 23:22:45.982 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 23:22:45.982 INFO [25867]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:22:45.982 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=57urk4idjmcm3c8baciakbp1h03abikg -- 23:22:45.982 INFO [25867]: QUERY_STRING = /member/viewCardAddAction -- 23:22:45.982 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:22:46.012 INFO [25867]: COREGRADE is stopping... -- 23:22:46.012 DEBUG [25867]: Closing database connection -- 23:22:46.012 SQL [25867]: pgsql_close() -- 23:23:30.692 INFO [25877]: COREGRADE is starting... -- 23:23:30.692 INFO [25877]: Version from config: 1.0 -- 23:23:30.692 DEBUG [25877]: Connecting to database... -- 23:23:30.692 DEBUG [25877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:23:30.692 SQL [25877]: pgsql_db_connect() -- 23:23:30.696 DEBUG [25877]: Database connection successful -- 23:23:30.696 INFO [25877]: _SERVER found -- 23:23:30.696 INFO [25877]: REMOTE_ADDR = 192.168.1.13 -- 23:23:30.696 INFO [25877]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:23:30.696 INFO [25877]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=57urk4idjmcm3c8baciakbp1h03abikg -- 23:23:30.696 INFO [25877]: QUERY_STRING = /auth -- 23:23:30.696 INFO [25877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:23:30.727 INFO [25877]: COREGRADE is stopping... -- 23:23:30.727 DEBUG [25877]: Closing database connection -- 23:23:30.727 SQL [25877]: pgsql_close() -- 23:23:31.762 INFO [25877]: COREGRADE is starting... -- 23:23:31.762 INFO [25877]: Version from config: 1.0 -- 23:23:31.762 DEBUG [25877]: Connecting to database... -- 23:23:31.762 DEBUG [25877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:23:31.762 SQL [25877]: pgsql_db_connect() -- 23:23:31.766 DEBUG [25877]: Database connection successful -- 23:23:31.766 INFO [25877]: _SERVER found -- 23:23:31.766 INFO [25877]: REMOTE_ADDR = 192.168.1.13 -- 23:23:31.766 INFO [25877]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:23:31.766 INFO [25877]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=57urk4idjmcm3c8baciakbp1h03abikg -- 23:23:31.766 INFO [25877]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:23:31.766 INFO [25877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:23:31.777 INFO [25877]: COREGRADE is stopping... -- 23:23:31.777 DEBUG [25877]: Closing database connection -- 23:23:31.777 SQL [25877]: pgsql_close() -- 23:42:41.018 INFO [25879]: COREGRADE is starting... -- 23:42:41.019 INFO [25879]: Version from config: 1.0 -- 23:42:41.019 DEBUG [25879]: Connecting to database... -- 23:42:41.019 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:42:41.019 SQL [25879]: pgsql_db_connect() -- 23:42:41.024 DEBUG [25879]: Database connection successful -- 23:42:41.024 INFO [25879]: _SERVER found -- 23:42:41.024 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 23:42:41.024 INFO [25879]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:42:41.024 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=57urk4idjmcm3c8baciakbp1h03abikg -- 23:42:41.024 INFO [25879]: QUERY_STRING = /auth -- 23:42:41.024 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:42:41.058 INFO [25879]: COREGRADE is stopping... -- 23:42:41.058 DEBUG [25879]: Closing database connection -- 23:42:41.058 SQL [25879]: pgsql_close() -- 23:42:41.777 INFO [25879]: COREGRADE is starting... -- 23:42:41.777 INFO [25879]: Version from config: 1.0 -- 23:42:41.777 DEBUG [25879]: Connecting to database... -- 23:42:41.777 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:42:41.777 SQL [25879]: pgsql_db_connect() -- 23:42:41.782 DEBUG [25879]: Database connection successful -- 23:42:41.782 INFO [25879]: _SERVER found -- 23:42:41.782 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 23:42:41.782 INFO [25879]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:42:41.782 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=7kdm29g42dsaakmhaa8gpheq7qqhnkrl -- 23:42:41.782 INFO [25879]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:42:41.782 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:42:41.793 INFO [25879]: COREGRADE is stopping... -- 23:42:41.793 DEBUG [25879]: Closing database connection -- 23:42:41.793 SQL [25879]: pgsql_close() -- 23:42:47.014 INFO [26604]: COREGRADE is starting... -- 23:42:47.014 INFO [26604]: Version from config: 1.0 -- 23:42:47.014 DEBUG [26604]: Connecting to database... -- 23:42:47.014 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:42:47.014 SQL [26604]: pgsql_db_connect() -- 23:42:47.019 DEBUG [26604]: Database connection successful -- 23:42:47.019 INFO [26604]: _SERVER found -- 23:42:47.019 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 23:42:47.019 INFO [26604]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:42:47.019 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=7kdm29g42dsaakmhaa8gpheq7qqhnkrl -- 23:42:47.019 INFO [26604]: QUERY_STRING = /auth -- 23:42:47.019 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:42:47.085 INFO [26604]: COREGRADE is starting... -- 23:42:47.085 INFO [26604]: Version from config: 1.0 -- 23:42:47.085 DEBUG [26604]: Connecting to database... -- 23:42:47.085 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:42:47.085 SQL [26604]: pgsql_db_connect() -- 23:42:47.090 DEBUG [26604]: Database connection successful -- 23:42:47.090 INFO [26604]: _SERVER found -- 23:42:47.090 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 23:42:47.090 INFO [26604]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:42:47.090 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=7kdm29g42dsaakmhaa8gpheq7qqhnkrl -- 23:42:47.090 INFO [26604]: QUERY_STRING = /member/index -- 23:42:47.090 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:42:47.127 INFO [26604]: COREGRADE is stopping... -- 23:42:47.127 DEBUG [26604]: Closing database connection -- 23:42:47.127 SQL [26604]: pgsql_close() -- 23:42:47.328 INFO [26604]: COREGRADE is starting... -- 23:42:47.328 INFO [26604]: Version from config: 1.0 -- 23:42:47.328 DEBUG [26604]: Connecting to database... -- 23:42:47.328 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:42:47.328 SQL [26604]: pgsql_db_connect() -- 23:42:47.332 DEBUG [26604]: Database connection successful -- 23:42:47.332 INFO [26604]: _SERVER found -- 23:42:47.332 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 23:42:47.332 INFO [26604]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:42:47.332 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=7kdm29g42dsaakmhaa8gpheq7qqhnkrl -- 23:42:47.332 INFO [26604]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:42:47.332 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:42:47.344 INFO [26604]: COREGRADE is stopping... -- 23:42:47.344 DEBUG [26604]: Closing database connection -- 23:42:47.344 SQL [26604]: pgsql_close() -- 23:42:50.672 INFO [27127]: COREGRADE is starting... -- 23:42:50.673 INFO [27127]: Version from config: 1.0 -- 23:42:50.673 DEBUG [27127]: Connecting to database... -- 23:42:50.673 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:42:50.673 SQL [27127]: pgsql_db_connect() -- 23:42:50.677 DEBUG [27127]: Database connection successful -- 23:42:50.677 INFO [27127]: _SERVER found -- 23:42:50.677 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 23:42:50.677 INFO [27127]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:42:50.677 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=7kdm29g42dsaakmhaa8gpheq7qqhnkrl -- 23:42:50.677 INFO [27127]: QUERY_STRING = /member/page -- 23:42:50.677 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:42:50.716 INFO [27127]: COREGRADE is stopping... -- 23:42:50.716 DEBUG [27127]: Closing database connection -- 23:42:50.716 SQL [27127]: pgsql_close() -- 23:42:50.903 INFO [27127]: COREGRADE is starting... -- 23:42:50.903 INFO [27127]: Version from config: 1.0 -- 23:42:50.903 DEBUG [27127]: Connecting to database... -- 23:42:50.903 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:42:50.903 SQL [27127]: pgsql_db_connect() -- 23:42:50.908 DEBUG [27127]: Database connection successful -- 23:42:50.908 INFO [27127]: _SERVER found -- 23:42:50.908 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 23:42:50.908 INFO [27127]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:42:50.908 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=7kdm29g42dsaakmhaa8gpheq7qqhnkrl -- 23:42:50.908 INFO [27127]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:42:50.908 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:42:50.919 INFO [27127]: COREGRADE is stopping... -- 23:42:50.919 DEBUG [27127]: Closing database connection -- 23:42:50.919 SQL [27127]: pgsql_close() -- 23:51:19.388 INFO [27557]: COREGRADE is starting... -- 23:51:19.388 INFO [27557]: Version from config: 1.0 -- 23:51:19.388 DEBUG [27557]: Connecting to database... -- 23:51:19.388 DEBUG [27557]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:51:19.388 SQL [27557]: pgsql_db_connect() -- 23:51:19.392 DEBUG [27557]: Database connection successful -- 23:51:19.392 INFO [27557]: _SERVER found -- 23:51:19.392 INFO [27557]: REMOTE_ADDR = 192.168.1.13 -- 23:51:19.392 INFO [27557]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:51:19.392 INFO [27557]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=7kdm29g42dsaakmhaa8gpheq7qqhnkrl -- 23:51:19.392 INFO [27557]: QUERY_STRING = /auth -- 23:51:19.392 INFO [27557]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:51:19.425 INFO [27557]: COREGRADE is stopping... -- 23:51:19.425 DEBUG [27557]: Closing database connection -- 23:51:19.425 SQL [27557]: pgsql_close() -- 23:51:19.721 INFO [27557]: COREGRADE is starting... -- 23:51:19.721 INFO [27557]: Version from config: 1.0 -- 23:51:19.721 DEBUG [27557]: Connecting to database... -- 23:51:19.721 DEBUG [27557]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:51:19.721 SQL [27557]: pgsql_db_connect() -- 23:51:19.725 DEBUG [27557]: Database connection successful -- 23:51:19.725 INFO [27557]: _SERVER found -- 23:51:19.725 INFO [27557]: REMOTE_ADDR = 192.168.1.13 -- 23:51:19.725 INFO [27557]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:51:19.725 INFO [27557]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o8sfs9rulbvt655m09sl06n50sh0gjgr -- 23:51:19.725 INFO [27557]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 23:51:19.725 INFO [27557]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:51:19.736 INFO [27557]: COREGRADE is stopping... -- 23:51:19.736 DEBUG [27557]: Closing database connection -- 23:51:19.736 SQL [27557]: pgsql_close() -- 23:51:19.739 INFO [25880]: COREGRADE is starting... -- 23:51:19.739 INFO [25880]: Version from config: 1.0 -- 23:51:19.739 DEBUG [25880]: Connecting to database... -- 23:51:19.739 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:51:19.739 SQL [25880]: pgsql_db_connect() -- 23:51:19.743 DEBUG [25880]: Database connection successful -- 23:51:19.743 INFO [25880]: _SERVER found -- 23:51:19.743 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 23:51:19.743 INFO [25880]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:51:19.743 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o8sfs9rulbvt655m09sl06n50sh0gjgr -- 23:51:19.743 INFO [25880]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:51:19.743 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:51:19.754 INFO [25880]: COREGRADE is stopping... -- 23:51:19.754 DEBUG [25880]: Closing database connection -- 23:51:19.754 SQL [25880]: pgsql_close() -- 23:51:21.483 INFO [25880]: COREGRADE is starting... -- 23:51:21.484 INFO [25880]: Version from config: 1.0 -- 23:51:21.484 DEBUG [25880]: Connecting to database... -- 23:51:21.484 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:51:21.484 SQL [25880]: pgsql_db_connect() -- 23:51:21.488 DEBUG [25880]: Database connection successful -- 23:51:21.488 INFO [25880]: _SERVER found -- 23:51:21.488 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 23:51:21.488 INFO [25880]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:51:21.488 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o8sfs9rulbvt655m09sl06n50sh0gjgr -- 23:51:21.488 INFO [25880]: QUERY_STRING = /auth -- 23:51:21.488 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:51:21.660 INFO [25880]: COREGRADE is starting... -- 23:51:21.660 INFO [25880]: Version from config: 1.0 -- 23:51:21.660 DEBUG [25880]: Connecting to database... -- 23:51:21.660 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:51:21.660 SQL [25880]: pgsql_db_connect() -- 23:51:21.664 DEBUG [25880]: Database connection successful -- 23:51:21.664 INFO [25880]: _SERVER found -- 23:51:21.664 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 23:51:21.664 INFO [25880]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:51:21.664 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o8sfs9rulbvt655m09sl06n50sh0gjgr -- 23:51:21.664 INFO [25880]: QUERY_STRING = /member/index -- 23:51:21.664 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:51:21.700 INFO [25880]: COREGRADE is stopping... -- 23:51:21.700 DEBUG [25880]: Closing database connection -- 23:51:21.700 SQL [25880]: pgsql_close() -- 23:51:21.962 INFO [25880]: COREGRADE is starting... -- 23:51:21.962 INFO [25880]: Version from config: 1.0 -- 23:51:21.962 DEBUG [25880]: Connecting to database... -- 23:51:21.962 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:51:21.962 SQL [25880]: pgsql_db_connect() -- 23:51:21.966 DEBUG [25880]: Database connection successful -- 23:51:21.966 INFO [25880]: _SERVER found -- 23:51:21.966 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 23:51:21.966 INFO [25880]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:51:21.966 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o8sfs9rulbvt655m09sl06n50sh0gjgr -- 23:51:21.966 INFO [25880]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:51:21.966 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:51:21.977 INFO [25880]: COREGRADE is stopping... -- 23:51:21.977 DEBUG [25880]: Closing database connection -- 23:51:21.977 SQL [25880]: pgsql_close() -- 23:51:21.984 INFO [27557]: COREGRADE is starting... -- 23:51:21.985 INFO [27557]: Version from config: 1.0 -- 23:51:21.985 DEBUG [27557]: Connecting to database... -- 23:51:21.985 DEBUG [27557]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:51:21.985 SQL [27557]: pgsql_db_connect() -- 23:51:21.989 DEBUG [27557]: Database connection successful -- 23:51:21.989 INFO [27557]: _SERVER found -- 23:51:21.989 INFO [27557]: REMOTE_ADDR = 192.168.1.13 -- 23:51:21.989 INFO [27557]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:51:21.989 INFO [27557]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o8sfs9rulbvt655m09sl06n50sh0gjgr -- 23:51:21.989 INFO [27557]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:51:21.989 INFO [27557]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:51:21.000 INFO [27557]: COREGRADE is stopping... -- 23:51:21.000 DEBUG [27557]: Closing database connection -- 23:51:21.000 SQL [27557]: pgsql_close() -- 23:51:23.371 INFO [27557]: COREGRADE is starting... -- 23:51:23.371 INFO [27557]: Version from config: 1.0 -- 23:51:23.371 DEBUG [27557]: Connecting to database... -- 23:51:23.371 DEBUG [27557]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:51:23.371 SQL [27557]: pgsql_db_connect() -- 23:51:23.375 DEBUG [27557]: Database connection successful -- 23:51:23.375 INFO [27557]: _SERVER found -- 23:51:23.375 INFO [27557]: REMOTE_ADDR = 192.168.1.13 -- 23:51:23.375 INFO [27557]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:51:23.375 INFO [27557]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o8sfs9rulbvt655m09sl06n50sh0gjgr -- 23:51:23.375 INFO [27557]: QUERY_STRING = /member/page -- 23:51:23.375 INFO [27557]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:51:23.411 INFO [27557]: COREGRADE is stopping... -- 23:51:23.411 DEBUG [27557]: Closing database connection -- 23:51:23.411 SQL [27557]: pgsql_close() -- 23:51:23.629 INFO [27557]: COREGRADE is starting... -- 23:51:23.629 INFO [27557]: Version from config: 1.0 -- 23:51:23.629 DEBUG [27557]: Connecting to database... -- 23:51:23.629 DEBUG [27557]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:51:23.629 SQL [27557]: pgsql_db_connect() -- 23:51:23.633 DEBUG [27557]: Database connection successful -- 23:51:23.633 INFO [27557]: _SERVER found -- 23:51:23.633 INFO [27557]: REMOTE_ADDR = 192.168.1.13 -- 23:51:23.633 INFO [27557]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:51:23.633 INFO [27557]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o8sfs9rulbvt655m09sl06n50sh0gjgr -- 23:51:23.633 INFO [27557]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:51:23.633 INFO [27557]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:51:23.644 INFO [27557]: COREGRADE is stopping... -- 23:51:23.644 DEBUG [27557]: Closing database connection -- 23:51:23.644 SQL [27557]: pgsql_close() -- 23:53:54.604 INFO [25870]: COREGRADE is starting... -- 23:53:54.604 INFO [25870]: Version from config: 1.0 -- 23:53:54.604 DEBUG [25870]: Connecting to database... -- 23:53:54.604 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:53:54.604 SQL [25870]: pgsql_db_connect() -- 23:53:54.609 DEBUG [25870]: Database connection successful -- 23:53:54.609 INFO [25870]: _SERVER found -- 23:53:54.609 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 23:53:54.609 INFO [25870]: SERVER_NAME = oameye.works.coregrade.com -- 23:53:54.609 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=451ptkfba5j7aa9p44tjhu5p1d389efs -- 23:53:54.609 INFO [25870]: QUERY_STRING = /auth -- 23:53:54.609 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:53:54.642 INFO [25870]: COREGRADE is stopping... -- 23:53:54.642 DEBUG [25870]: Closing database connection -- 23:53:54.642 SQL [25870]: pgsql_close() -- 23:53:54.823 INFO [25870]: COREGRADE is starting... -- 23:53:54.824 INFO [25870]: Version from config: 1.0 -- 23:53:54.824 DEBUG [25870]: Connecting to database... -- 23:53:54.824 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:53:54.824 SQL [25870]: pgsql_db_connect() -- 23:53:54.836 INFO [25864]: COREGRADE is starting... -- 23:53:54.836 INFO [25864]: Version from config: 1.0 -- 23:53:54.836 DEBUG [25864]: Connecting to database... -- 23:53:54.836 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:53:54.836 SQL [25864]: pgsql_db_connect() -- 23:53:54.828 DEBUG [25870]: Database connection successful -- 23:53:54.828 INFO [25870]: _SERVER found -- 23:53:54.828 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 23:53:54.828 INFO [25870]: SERVER_NAME = oameye.works.coregrade.com -- 23:53:54.828 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5igkeubmdokohtid3vdd22m1gse0pahf -- 23:53:54.828 INFO [25870]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 23:53:54.828 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:53:54.839 INFO [25870]: COREGRADE is stopping... -- 23:53:54.839 DEBUG [25870]: Closing database connection -- 23:53:54.839 SQL [25870]: pgsql_close() -- 23:53:54.840 DEBUG [25864]: Database connection successful -- 23:53:54.840 INFO [25864]: _SERVER found -- 23:53:54.840 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 23:53:54.840 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 23:53:54.840 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5igkeubmdokohtid3vdd22m1gse0pahf -- 23:53:54.840 INFO [25864]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:53:54.840 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:53:54.852 INFO [25864]: COREGRADE is stopping... -- 23:53:54.852 DEBUG [25864]: Closing database connection -- 23:53:54.852 SQL [25864]: pgsql_close() -- 23:53:56.231 INFO [25864]: COREGRADE is starting... -- 23:53:56.232 INFO [25864]: Version from config: 1.0 -- 23:53:56.232 DEBUG [25864]: Connecting to database... -- 23:53:56.232 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:53:56.232 SQL [25864]: pgsql_db_connect() -- 23:53:56.266 INFO [25864]: COREGRADE is starting... -- 23:53:56.266 INFO [25864]: Version from config: 1.0 -- 23:53:56.266 DEBUG [25864]: Connecting to database... -- 23:53:56.266 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:53:56.266 SQL [25864]: pgsql_db_connect() -- 23:53:56.270 DEBUG [25864]: Database connection successful -- 23:53:56.270 INFO [25864]: _SERVER found -- 23:53:56.270 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 23:53:56.270 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 23:53:56.270 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5igkeubmdokohtid3vdd22m1gse0pahf -- 23:53:56.270 INFO [25864]: QUERY_STRING = -- 23:53:56.270 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:53:56.270 INFO [25864]: SystemStatus()09-09-********~************ -- 23:53:56.270 INFO [25864]: long coregrade_api_main(CVars in, CVars &out) -- 23:53:56.270 INFO [25864]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 23:53:56.270 INFO [25864]: account calls -- 23:53:56.270 INFO [25864]: account_calls() -- 23:53:56.270 INFO [25864]: LoginCoreGradeAccount() -- 23:53:56.270 FLOG_MAX [25864]: REQ_STRING(username) -- 23:53:56.270 FLOG_MAX [25864]: REQ_STRING(password) -- 23:53:56.270 FLOG_MAX [25864]: REQ_STRING(sessionid) -- 23:53:56.270 FLOG_MAX [25864]: long load_db_record( CVars &rec, const char * query, ... ) -- 23:53:56.270 SQL [25864]: pgsql_query() -- 23:53:56.270 SQL [25864]: About to run query: -- 23:53:56.270 SQL [25864]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 23:53:56.274 SQL [25864]: Found rows: 1 -- 23:53:56.274 FLOG_MAX [25864]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 23:53:56.274 INFO [25864]: long SessionCheck(long uid, const char *sessionid, int create ) -- 23:53:56.274 SQL [25864]: pgsql_exec() -- 23:53:56.274 SQL [25864]: About to run query: -- 23:53:56.274 SQL [25864]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 23:53:56.275 SQL [25864]: PQcmdTuples: 1 -- 23:53:56.275 SQL [25864]: Affected rows: 1 -- 23:53:56.275 SQL [25864]: pgsql_exec() -- 23:53:56.275 SQL [25864]: About to run query: -- 23:53:56.275 SQL [25864]: DELETE FROM members_session WHERE member_id=5 -- 23:53:56.275 SQL [25864]: PQcmdTuples: 0 -- 23:53:56.275 SQL [25864]: Affected rows: 0 -- 23:53:56.275 SQL [25864]: pgsql_query() -- 23:53:56.275 SQL [25864]: About to run query: -- 23:53:56.275 SQL [25864]: SELECT * FROM members_session WHERE member_id=5 AND session<>'9ECEF0747FE634324F017FB5D619C010' -- 23:53:56.276 SQL [25864]: Found rows: 0 -- 23:53:56.276 SQL [25864]: Found rows: 0 -- 23:53:56.276 FLOG_MAX [25864]: long load_db_record( CVars &rec, const char * query, ... ) -- 23:53:56.276 SQL [25864]: pgsql_query() -- 23:53:56.276 SQL [25864]: About to run query: -- 23:53:56.276 SQL [25864]: SELECT * FROM members_session WHERE member_id=5 AND session='9ECEF0747FE634324F017FB5D619C010' -- 23:53:56.276 SQL [25864]: Found rows: 0 -- 23:53:56.276 SQL [25864]: Found rows: 0 -- 23:53:56.277 FLOG_MAX [25864]: insert_db_record() -- 23:53:56.277 SQL [25864]: pgsql_exec() -- 23:53:56.277 SQL [25864]: About to run query: -- 23:53:56.277 SQL [25864]: INSERT INTO members_session (member_id,session) VALUES ('5','9ECEF0747FE634324F017FB5D619C010') -- 23:53:56.278 SQL [25864]: PQcmdTuples: 1 -- 23:53:56.278 SQL [25864]: Affected rows: 1 -- 23:53:56.278 FLOG_MAX [25864]: SELECT currval('members_session_id_seq') -- 23:53:56.278 SQL [25864]: pgsql_query() -- 23:53:56.278 SQL [25864]: About to run query: -- 23:53:56.278 SQL [25864]: SELECT currval('members_session_id_seq') -- 23:53:56.278 SQL [25864]: Found rows: 1 -- 23:53:56.278 INFO [25864]: CreateDefaultPage() -- 23:53:56.278 FLOG_MAX [25864]: long load_db_record( CVars &rec, const char * query, ... ) -- 23:53:56.278 SQL [25864]: pgsql_query() -- 23:53:56.278 SQL [25864]: About to run query: -- 23:53:56.278 SQL [25864]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 23:53:56.279 SQL [25864]: Found rows: 1 -- 23:53:56.279 FLOG_MAX [25864]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 23:53:56.279 SQL [25864]: pgsql_query() -- 23:53:56.279 SQL [25864]: About to run query: -- 23:53:56.279 SQL [25864]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 23:53:56.279 SQL [25864]: Found rows: 1 -- 23:53:56.279 INFO [25864]: /CreateDefaultPage() -- 23:53:56.279 INFO [25864]: /LoginCoreGradeAccount() -- 23:53:56.279 INFO [25864]: RET: added=2020-02-05 06:47:23.982154 -- 23:53:56.279 INFO [25864]: RET: email=ameye+11@chiefsoft.com -- 23:53:56.279 INFO [25864]: RET: firstname=Olu -- 23:53:56.279 INFO [25864]: RET: id=5 -- 23:53:56.279 INFO [25864]: RET: last_login= -- 23:53:56.279 INFO [25864]: RET: lastname=Amey -- 23:53:56.279 INFO [25864]: RET: loc=192.168.1.13 -- 23:53:56.279 INFO [25864]: RET: member_id=5 -- 23:53:56.279 INFO [25864]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 23:53:56.279 INFO [25864]: RET: phone= -- 23:53:56.279 INFO [25864]: RET: pid= -- 23:53:56.279 INFO [25864]: RET: result=YES I GET TO BACK END -- 23:53:56.279 INFO [25864]: RET: sessionid=9ECEF0747FE634324F017FB5D619C010 -- 23:53:56.279 INFO [25864]: RET: status=1 -- 23:53:56.279 INFO [25864]: RET: stauts=OK -- 23:53:56.279 INFO [25864]: RET: username=ameye+11@chiefsoft.com -- 23:53:56.279 INFO [25864]: RET: verified= -- 23:53:56.281 INFO [25864]: COREGRADE is stopping... -- 23:53:56.281 DEBUG [25864]: Closing database connection -- 23:53:56.281 SQL [25864]: pgsql_close() -- 23:53:56.236 DEBUG [25864]: Database connection successful -- 23:53:56.236 INFO [25864]: _SERVER found -- 23:53:56.236 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 23:53:56.236 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 23:53:56.236 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5igkeubmdokohtid3vdd22m1gse0pahf -- 23:53:56.236 INFO [25864]: QUERY_STRING = /auth -- 23:53:56.236 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:53:56.281 INFO [25864]: COREGRADE is stopping... -- 23:53:56.281 DEBUG [25864]: Closing database connection -- 23:53:56.281 SQL [25864]: pgsql_close() -- 23:53:56.296 INFO [25864]: COREGRADE is starting... -- 23:53:56.296 INFO [25864]: Version from config: 1.0 -- 23:53:56.296 DEBUG [25864]: Connecting to database... -- 23:53:56.296 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:53:56.296 SQL [25864]: pgsql_db_connect() -- 23:53:56.300 DEBUG [25864]: Database connection successful -- 23:53:56.300 INFO [25864]: _SERVER found -- 23:53:56.300 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 23:53:56.300 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 23:53:56.300 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5igkeubmdokohtid3vdd22m1gse0pahf -- 23:53:56.300 INFO [25864]: QUERY_STRING = /member/index -- 23:53:56.300 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:53:56.334 INFO [25864]: COREGRADE is stopping... -- 23:53:56.334 DEBUG [25864]: Closing database connection -- 23:53:56.334 SQL [25864]: pgsql_close() -- 23:53:56.558 INFO [25864]: COREGRADE is starting... -- 23:53:56.559 INFO [25864]: Version from config: 1.0 -- 23:53:56.559 DEBUG [25864]: Connecting to database... -- 23:53:56.559 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:53:56.559 SQL [25864]: pgsql_db_connect() -- 23:53:56.563 DEBUG [25864]: Database connection successful -- 23:53:56.563 INFO [25864]: _SERVER found -- 23:53:56.563 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 23:53:56.563 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 23:53:56.563 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5igkeubmdokohtid3vdd22m1gse0pahf -- 23:53:56.563 INFO [25864]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:53:56.563 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:53:56.574 INFO [25864]: COREGRADE is stopping... -- 23:53:56.574 DEBUG [25864]: Closing database connection -- 23:53:56.574 SQL [25864]: pgsql_close() -- 23:53:56.584 INFO [25864]: COREGRADE is starting... -- 23:53:56.585 INFO [25864]: Version from config: 1.0 -- 23:53:56.585 DEBUG [25864]: Connecting to database... -- 23:53:56.585 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:53:56.585 SQL [25864]: pgsql_db_connect() -- 23:53:56.589 DEBUG [25864]: Database connection successful -- 23:53:56.589 INFO [25864]: _SERVER found -- 23:53:56.589 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 23:53:56.589 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 23:53:56.589 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5igkeubmdokohtid3vdd22m1gse0pahf -- 23:53:56.589 INFO [25864]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:53:56.589 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:53:56.599 INFO [25864]: COREGRADE is stopping... -- 23:53:56.600 DEBUG [25864]: Closing database connection -- 23:53:56.600 SQL [25864]: pgsql_close() -- 23:53:58.559 INFO [25864]: COREGRADE is starting... -- 23:53:58.560 INFO [25864]: Version from config: 1.0 -- 23:53:58.560 DEBUG [25864]: Connecting to database... -- 23:53:58.560 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:53:58.560 SQL [25864]: pgsql_db_connect() -- 23:53:58.564 DEBUG [25864]: Database connection successful -- 23:53:58.564 INFO [25864]: _SERVER found -- 23:53:58.564 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 23:53:58.564 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 23:53:58.564 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5igkeubmdokohtid3vdd22m1gse0pahf -- 23:53:58.564 INFO [25864]: QUERY_STRING = /member/page -- 23:53:58.564 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:53:58.600 INFO [25864]: COREGRADE is stopping... -- 23:53:58.600 DEBUG [25864]: Closing database connection -- 23:53:58.600 SQL [25864]: pgsql_close() -- 23:53:58.871 INFO [25864]: COREGRADE is starting... -- 23:53:58.871 INFO [25864]: Version from config: 1.0 -- 23:53:58.871 DEBUG [25864]: Connecting to database... -- 23:53:58.871 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:53:58.871 SQL [25864]: pgsql_db_connect() -- 23:53:58.875 DEBUG [25864]: Database connection successful -- 23:53:58.875 INFO [25864]: _SERVER found -- 23:53:58.875 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 23:53:58.875 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 23:53:58.875 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5igkeubmdokohtid3vdd22m1gse0pahf -- 23:53:58.875 INFO [25864]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:53:58.875 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:53:58.886 INFO [25864]: COREGRADE is stopping... -- 23:53:58.886 DEBUG [25864]: Closing database connection -- 23:53:58.886 SQL [25864]: pgsql_close() -- 23:54:01.510 INFO [25864]: COREGRADE is starting... -- 23:54:01.511 INFO [25864]: Version from config: 1.0 -- 23:54:01.511 DEBUG [25864]: Connecting to database... -- 23:54:01.511 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:54:01.511 SQL [25864]: pgsql_db_connect() -- 23:54:01.515 DEBUG [25864]: Database connection successful -- 23:54:01.515 INFO [25864]: _SERVER found -- 23:54:01.515 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 23:54:01.515 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 23:54:01.515 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5igkeubmdokohtid3vdd22m1gse0pahf -- 23:54:01.515 INFO [25864]: QUERY_STRING = /member/viewCardAddAction -- 23:54:01.515 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:54:01.545 INFO [25864]: COREGRADE is stopping... -- 23:54:01.545 DEBUG [25864]: Closing database connection -- 23:54:01.545 SQL [25864]: pgsql_close() -- 23:54:03.108 INFO [25864]: COREGRADE is starting... -- 23:54:03.108 INFO [25864]: Version from config: 1.0 -- 23:54:03.108 DEBUG [25864]: Connecting to database... -- 23:54:03.108 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:54:03.108 SQL [25864]: pgsql_db_connect() -- 23:54:03.112 DEBUG [25864]: Database connection successful -- 23:54:03.112 INFO [25864]: _SERVER found -- 23:54:03.112 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 23:54:03.112 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 23:54:03.112 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5igkeubmdokohtid3vdd22m1gse0pahf -- 23:54:03.112 INFO [25864]: QUERY_STRING = /member/viewCardAddAction -- 23:54:03.112 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:54:03.142 INFO [25864]: COREGRADE is stopping... -- 23:54:03.142 DEBUG [25864]: Closing database connection -- 23:54:03.142 SQL [25864]: pgsql_close() -- 23:54:05.233 INFO [25865]: COREGRADE is starting... -- 23:54:05.233 INFO [25865]: Version from config: 1.0 -- 23:54:05.233 DEBUG [25865]: Connecting to database... -- 23:54:05.233 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:54:05.233 SQL [25865]: pgsql_db_connect() -- 23:54:05.237 DEBUG [25865]: Database connection successful -- 23:54:05.237 INFO [25865]: _SERVER found -- 23:54:05.237 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 23:54:05.237 INFO [25865]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:54:05.237 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o8sfs9rulbvt655m09sl06n50sh0gjgr -- 23:54:05.237 INFO [25865]: QUERY_STRING = /member/page -- 23:54:05.237 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:54:05.276 INFO [25865]: COREGRADE is stopping... -- 23:54:05.276 DEBUG [25865]: Closing database connection -- 23:54:05.276 SQL [25865]: pgsql_close() -- 23:54:05.556 INFO [25865]: COREGRADE is starting... -- 23:54:05.557 INFO [25865]: Version from config: 1.0 -- 23:54:05.557 DEBUG [25865]: Connecting to database... -- 23:54:05.557 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:54:05.557 SQL [25865]: pgsql_db_connect() -- 23:54:05.561 DEBUG [25865]: Database connection successful -- 23:54:05.561 INFO [25865]: _SERVER found -- 23:54:05.561 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 23:54:05.561 INFO [25865]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:54:05.561 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o8sfs9rulbvt655m09sl06n50sh0gjgr -- 23:54:05.561 INFO [25865]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:54:05.561 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:54:05.572 INFO [25865]: COREGRADE is stopping... -- 23:54:05.572 DEBUG [25865]: Closing database connection -- 23:54:05.572 SQL [25865]: pgsql_close() -- 23:54:40.988 INFO [25867]: COREGRADE is starting... -- 23:54:40.988 INFO [25867]: Version from config: 1.0 -- 23:54:40.988 DEBUG [25867]: Connecting to database... -- 23:54:40.988 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:54:40.988 SQL [25867]: pgsql_db_connect() -- 23:54:40.993 DEBUG [25867]: Database connection successful -- 23:54:40.993 INFO [25867]: _SERVER found -- 23:54:40.993 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 23:54:40.993 INFO [25867]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:54:40.993 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o8sfs9rulbvt655m09sl06n50sh0gjgr -- 23:54:40.993 INFO [25867]: QUERY_STRING = /member/page -- 23:54:40.993 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:54:41.031 INFO [25867]: COREGRADE is stopping... -- 23:54:41.031 DEBUG [25867]: Closing database connection -- 23:54:41.031 SQL [25867]: pgsql_close() -- 23:54:41.349 INFO [25867]: COREGRADE is starting... -- 23:54:41.349 INFO [25867]: Version from config: 1.0 -- 23:54:41.349 DEBUG [25867]: Connecting to database... -- 23:54:41.349 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:54:41.349 SQL [25867]: pgsql_db_connect() -- 23:54:41.353 DEBUG [25867]: Database connection successful -- 23:54:41.353 INFO [25867]: _SERVER found -- 23:54:41.353 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 23:54:41.353 INFO [25867]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:54:41.353 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o8sfs9rulbvt655m09sl06n50sh0gjgr -- 23:54:41.353 INFO [25867]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:54:41.353 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:54:41.364 INFO [25867]: COREGRADE is stopping... -- 23:54:41.364 DEBUG [25867]: Closing database connection -- 23:54:41.364 SQL [25867]: pgsql_close() -- 23:56:37.650 INFO [25877]: COREGRADE is starting... -- 23:56:37.650 INFO [25877]: Version from config: 1.0 -- 23:56:37.650 DEBUG [25877]: Connecting to database... -- 23:56:37.650 DEBUG [25877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:56:37.650 SQL [25877]: pgsql_db_connect() -- 23:56:37.654 DEBUG [25877]: Database connection successful -- 23:56:37.654 INFO [25877]: _SERVER found -- 23:56:37.654 INFO [25877]: REMOTE_ADDR = 192.168.1.13 -- 23:56:37.654 INFO [25877]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:56:37.654 INFO [25877]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=o8sfs9rulbvt655m09sl06n50sh0gjgr -- 23:56:37.654 INFO [25877]: QUERY_STRING = /member/page -- 23:56:37.654 INFO [25877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:56:37.692 INFO [25877]: COREGRADE is stopping... -- 23:56:37.692 DEBUG [25877]: Closing database connection -- 23:56:37.692 SQL [25877]: pgsql_close() -- 23:56:37.989 INFO [25877]: COREGRADE is starting... -- 23:56:37.989 INFO [25877]: Version from config: 1.0 -- 23:56:37.990 DEBUG [25877]: Connecting to database... -- 23:56:37.990 DEBUG [25877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:56:37.990 SQL [25877]: pgsql_db_connect() -- 23:56:37.993 DEBUG [25877]: Database connection successful -- 23:56:37.993 INFO [25877]: _SERVER found -- 23:56:37.993 INFO [25877]: REMOTE_ADDR = 192.168.1.13 -- 23:56:37.993 INFO [25877]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:56:37.993 INFO [25877]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=16fhpo0sou0vejnd0ktgmaddh7s2v8lp -- 23:56:37.994 INFO [25877]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:56:37.994 INFO [25877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:56:38.004 INFO [25877]: COREGRADE is stopping... -- 23:56:38.005 DEBUG [25877]: Closing database connection -- 23:56:38.005 SQL [25877]: pgsql_close() -- 23:57:38.807 INFO [25879]: COREGRADE is starting... -- 23:57:38.807 INFO [25879]: Version from config: 1.0 -- 23:57:38.807 DEBUG [25879]: Connecting to database... -- 23:57:38.807 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:57:38.807 SQL [25879]: pgsql_db_connect() -- 23:57:38.811 DEBUG [25879]: Database connection successful -- 23:57:38.811 INFO [25879]: _SERVER found -- 23:57:38.811 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 23:57:38.811 INFO [25879]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:57:38.811 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=16fhpo0sou0vejnd0ktgmaddh7s2v8lp -- 23:57:38.811 INFO [25879]: QUERY_STRING = /member/page -- 23:57:38.811 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:57:38.848 INFO [25879]: COREGRADE is stopping... -- 23:57:38.848 DEBUG [25879]: Closing database connection -- 23:57:38.848 SQL [25879]: pgsql_close() -- 23:57:39.095 INFO [25879]: COREGRADE is starting... -- 23:57:39.095 INFO [25879]: Version from config: 1.0 -- 23:57:39.095 DEBUG [25879]: Connecting to database... -- 23:57:39.095 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:57:39.095 SQL [25879]: pgsql_db_connect() -- 23:57:39.099 DEBUG [25879]: Database connection successful -- 23:57:39.099 INFO [25879]: _SERVER found -- 23:57:39.099 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 23:57:39.099 INFO [25879]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:57:39.099 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=16fhpo0sou0vejnd0ktgmaddh7s2v8lp -- 23:57:39.099 INFO [25879]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:57:39.099 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:57:39.110 INFO [25879]: COREGRADE is stopping... -- 23:57:39.110 DEBUG [25879]: Closing database connection -- 23:57:39.110 SQL [25879]: pgsql_close() -- 23:57:47.899 INFO [26604]: COREGRADE is starting... -- 23:57:47.899 INFO [26604]: Version from config: 1.0 -- 23:57:47.899 DEBUG [26604]: Connecting to database... -- 23:57:47.899 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:57:47.899 SQL [26604]: pgsql_db_connect() -- 23:57:47.903 DEBUG [26604]: Database connection successful -- 23:57:47.903 INFO [26604]: _SERVER found -- 23:57:47.903 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 23:57:47.903 INFO [26604]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:57:47.903 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=16fhpo0sou0vejnd0ktgmaddh7s2v8lp -- 23:57:47.903 INFO [26604]: QUERY_STRING = /member/page -- 23:57:47.903 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:57:47.939 INFO [26604]: COREGRADE is stopping... -- 23:57:47.939 DEBUG [26604]: Closing database connection -- 23:57:47.939 SQL [26604]: pgsql_close() -- 23:58:02.306 INFO [27127]: COREGRADE is starting... -- 23:58:02.306 INFO [27127]: Version from config: 1.0 -- 23:58:02.306 DEBUG [27127]: Connecting to database... -- 23:58:02.306 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:58:02.306 SQL [27127]: pgsql_db_connect() -- 23:58:02.310 DEBUG [27127]: Database connection successful -- 23:58:02.310 INFO [27127]: _SERVER found -- 23:58:02.310 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 23:58:02.310 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 23:58:02.310 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5igkeubmdokohtid3vdd22m1gse0pahf -- 23:58:02.310 INFO [27127]: QUERY_STRING = /member/viewCardAddAction -- 23:58:02.310 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:58:02.341 INFO [27127]: COREGRADE is stopping... -- 23:58:02.341 DEBUG [27127]: Closing database connection -- 23:58:02.341 SQL [27127]: pgsql_close() -- 23:58:03.170 INFO [27127]: COREGRADE is starting... -- 23:58:03.170 INFO [27127]: Version from config: 1.0 -- 23:58:03.170 DEBUG [27127]: Connecting to database... -- 23:58:03.170 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:58:03.170 SQL [27127]: pgsql_db_connect() -- 23:58:03.174 DEBUG [27127]: Database connection successful -- 23:58:03.174 INFO [27127]: _SERVER found -- 23:58:03.174 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 23:58:03.174 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 23:58:03.174 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5igkeubmdokohtid3vdd22m1gse0pahf -- 23:58:03.174 INFO [27127]: QUERY_STRING = /member/viewCardAddAction -- 23:58:03.174 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:58:03.204 INFO [27127]: COREGRADE is stopping... -- 23:58:03.204 DEBUG [27127]: Closing database connection -- 23:58:03.204 SQL [27127]: pgsql_close() -- 23:58:08.469 INFO [25880]: COREGRADE is starting... -- 23:58:08.469 INFO [25880]: Version from config: 1.0 -- 23:58:08.469 DEBUG [25880]: Connecting to database... -- 23:58:08.469 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:58:08.469 SQL [25880]: pgsql_db_connect() -- 23:58:08.473 DEBUG [25880]: Database connection successful -- 23:58:08.473 INFO [25880]: _SERVER found -- 23:58:08.473 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 23:58:08.473 INFO [25880]: SERVER_NAME = oameye.works.coregrade.com -- 23:58:08.473 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5igkeubmdokohtid3vdd22m1gse0pahf -- 23:58:08.473 INFO [25880]: QUERY_STRING = /member/viewCardAddAction -- 23:58:08.473 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:58:08.504 INFO [25880]: COREGRADE is stopping... -- 23:58:08.504 DEBUG [25880]: Closing database connection -- 23:58:08.504 SQL [25880]: pgsql_close() -- 00:02:02.109 INFO [27557]: COREGRADE is starting... -- 00:02:02.110 INFO [27557]: Version from config: 1.0 -- 00:02:02.110 DEBUG [27557]: Connecting to database... -- 00:02:02.110 DEBUG [27557]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:02.110 SQL [27557]: pgsql_db_connect() -- 00:02:02.114 DEBUG [27557]: Database connection successful -- 00:02:02.114 INFO [27557]: _SERVER found -- 00:02:02.115 INFO [27557]: REMOTE_ADDR = 192.168.1.13 -- 00:02:02.115 INFO [27557]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:02:02.115 INFO [27557]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=16fhpo0sou0vejnd0ktgmaddh7s2v8lp -- 00:02:02.115 INFO [27557]: QUERY_STRING = /member/page -- 00:02:02.115 INFO [27557]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:02:02.154 INFO [27557]: COREGRADE is stopping... -- 00:02:02.154 DEBUG [27557]: Closing database connection -- 00:02:02.154 SQL [27557]: pgsql_close() -- 00:02:02.363 INFO [27557]: COREGRADE is starting... -- 00:02:02.364 INFO [27557]: Version from config: 1.0 -- 00:02:02.364 DEBUG [27557]: Connecting to database... -- 00:02:02.364 DEBUG [27557]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:02.364 SQL [27557]: pgsql_db_connect() -- 00:02:02.368 DEBUG [27557]: Database connection successful -- 00:02:02.368 INFO [27557]: _SERVER found -- 00:02:02.368 INFO [27557]: REMOTE_ADDR = 192.168.1.13 -- 00:02:02.368 INFO [27557]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:02:02.368 INFO [27557]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=h9v0fnodrsoet5aam56dgia4lglust8o -- 00:02:02.368 INFO [27557]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:02:02.368 INFO [27557]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:02:02.379 INFO [27557]: COREGRADE is stopping... -- 00:02:02.379 DEBUG [27557]: Closing database connection -- 00:02:02.379 SQL [27557]: pgsql_close() -- 00:02:31.917 INFO [25870]: COREGRADE is starting... -- 00:02:31.918 INFO [25870]: Version from config: 1.0 -- 00:02:31.918 DEBUG [25870]: Connecting to database... -- 00:02:31.918 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:31.918 SQL [25870]: pgsql_db_connect() -- 00:02:31.922 DEBUG [25870]: Database connection successful -- 00:02:31.922 INFO [25870]: _SERVER found -- 00:02:31.922 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 00:02:31.922 INFO [25870]: SERVER_NAME = oameye.works.coregrade.com -- 00:02:31.922 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5igkeubmdokohtid3vdd22m1gse0pahf -- 00:02:31.922 INFO [25870]: QUERY_STRING = /auth/logout -- 00:02:31.922 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:02:31.954 INFO [25870]: COREGRADE is stopping... -- 00:02:31.954 DEBUG [25870]: Closing database connection -- 00:02:31.954 SQL [25870]: pgsql_close() -- 00:02:32.205 INFO [25870]: COREGRADE is starting... -- 00:02:32.205 INFO [25870]: Version from config: 1.0 -- 00:02:32.205 DEBUG [25870]: Connecting to database... -- 00:02:32.205 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:32.205 SQL [25870]: pgsql_db_connect() -- 00:02:32.215 INFO [25864]: COREGRADE is starting... -- 00:02:32.215 INFO [25864]: Version from config: 1.0 -- 00:02:32.215 DEBUG [25864]: Connecting to database... -- 00:02:32.216 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:32.216 SQL [25864]: pgsql_db_connect() -- 00:02:32.209 DEBUG [25870]: Database connection successful -- 00:02:32.209 INFO [25870]: _SERVER found -- 00:02:32.209 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 00:02:32.209 INFO [25870]: SERVER_NAME = oameye.works.coregrade.com -- 00:02:32.209 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=4f1m82o4u4ep61drluq05nih4erlitnr -- 00:02:32.209 INFO [25870]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 00:02:32.209 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:02:32.220 INFO [25870]: COREGRADE is stopping... -- 00:02:32.220 DEBUG [25870]: Closing database connection -- 00:02:32.220 SQL [25870]: pgsql_close() -- 00:02:32.219 DEBUG [25864]: Database connection successful -- 00:02:32.219 INFO [25864]: _SERVER found -- 00:02:32.219 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 00:02:32.219 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 00:02:32.219 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=4f1m82o4u4ep61drluq05nih4erlitnr -- 00:02:32.219 INFO [25864]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:02:32.219 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:02:32.231 INFO [25864]: COREGRADE is stopping... -- 00:02:32.231 DEBUG [25864]: Closing database connection -- 00:02:32.231 SQL [25864]: pgsql_close() -- 00:02:44.455 INFO [25865]: COREGRADE is starting... -- 00:02:44.455 INFO [25865]: Version from config: 1.0 -- 00:02:44.455 DEBUG [25865]: Connecting to database... -- 00:02:44.455 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:44.455 SQL [25865]: pgsql_db_connect() -- 00:02:44.459 DEBUG [25865]: Database connection successful -- 00:02:44.459 INFO [25865]: _SERVER found -- 00:02:44.459 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 00:02:44.459 INFO [25865]: SERVER_NAME = oameye.works.coregrade.com -- 00:02:44.459 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=4f1m82o4u4ep61drluq05nih4erlitnr -- 00:02:44.459 INFO [25865]: QUERY_STRING = -- 00:02:44.459 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:02:44.493 INFO [25865]: COREGRADE is stopping... -- 00:02:44.493 DEBUG [25865]: Closing database connection -- 00:02:44.493 SQL [25865]: pgsql_close() -- 00:02:44.821 INFO [25865]: COREGRADE is starting... -- 00:02:44.821 INFO [25865]: Version from config: 1.0 -- 00:02:44.821 DEBUG [25865]: Connecting to database... -- 00:02:44.821 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:44.821 SQL [25865]: pgsql_db_connect() -- 00:02:44.833 INFO [25867]: COREGRADE is starting... -- 00:02:44.833 INFO [25867]: Version from config: 1.0 -- 00:02:44.833 DEBUG [25867]: Connecting to database... -- 00:02:44.834 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:44.834 SQL [25867]: pgsql_db_connect() -- 00:02:44.825 DEBUG [25865]: Database connection successful -- 00:02:44.825 INFO [25865]: _SERVER found -- 00:02:44.825 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 00:02:44.825 INFO [25865]: SERVER_NAME = oameye.works.coregrade.com -- 00:02:44.825 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=4f1m82o4u4ep61drluq05nih4erlitnr -- 00:02:44.825 INFO [25865]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 00:02:44.825 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:02:44.837 INFO [25865]: COREGRADE is stopping... -- 00:02:44.837 DEBUG [25865]: Closing database connection -- 00:02:44.837 SQL [25865]: pgsql_close() -- 00:02:44.837 DEBUG [25867]: Database connection successful -- 00:02:44.837 INFO [25867]: _SERVER found -- 00:02:44.837 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 00:02:44.837 INFO [25867]: SERVER_NAME = oameye.works.coregrade.com -- 00:02:44.837 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=4f1m82o4u4ep61drluq05nih4erlitnr -- 00:02:44.837 INFO [25867]: QUERY_STRING = /assets/img/footer_1.jpg -- 00:02:44.837 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:02:44.849 INFO [25867]: COREGRADE is stopping... -- 00:02:44.849 DEBUG [25867]: Closing database connection -- 00:02:44.849 SQL [25867]: pgsql_close() -- 00:02:51.419 INFO [25877]: COREGRADE is starting... -- 00:02:51.419 INFO [25877]: Version from config: 1.0 -- 00:02:51.419 DEBUG [25877]: Connecting to database... -- 00:02:51.419 DEBUG [25877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:51.419 SQL [25877]: pgsql_db_connect() -- 00:02:51.423 DEBUG [25877]: Database connection successful -- 00:02:51.423 INFO [25877]: _SERVER found -- 00:02:51.423 INFO [25877]: REMOTE_ADDR = 192.168.1.13 -- 00:02:51.423 INFO [25877]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:02:51.423 INFO [25877]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=h9v0fnodrsoet5aam56dgia4lglust8o -- 00:02:51.423 INFO [25877]: QUERY_STRING = /auth -- 00:02:51.423 INFO [25877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:02:51.454 INFO [25877]: COREGRADE is stopping... -- 00:02:51.454 DEBUG [25877]: Closing database connection -- 00:02:51.454 SQL [25877]: pgsql_close() -- 00:02:51.796 INFO [25877]: COREGRADE is starting... -- 00:02:51.796 INFO [25877]: Version from config: 1.0 -- 00:02:51.796 DEBUG [25877]: Connecting to database... -- 00:02:51.796 DEBUG [25877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:51.796 SQL [25877]: pgsql_db_connect() -- 00:02:51.800 DEBUG [25877]: Database connection successful -- 00:02:51.800 INFO [25877]: _SERVER found -- 00:02:51.800 INFO [25877]: REMOTE_ADDR = 192.168.1.13 -- 00:02:51.800 INFO [25877]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:02:51.800 INFO [25877]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=h9v0fnodrsoet5aam56dgia4lglust8o -- 00:02:51.800 INFO [25877]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:02:51.800 INFO [25877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:02:51.811 INFO [25877]: COREGRADE is stopping... -- 00:02:51.811 DEBUG [25877]: Closing database connection -- 00:02:51.811 SQL [25877]: pgsql_close() -- 00:12:34.604 INFO [25879]: COREGRADE is starting... -- 00:12:34.604 INFO [25879]: Version from config: 1.0 -- 00:12:34.604 DEBUG [25879]: Connecting to database... -- 00:12:34.604 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:12:34.604 SQL [25879]: pgsql_db_connect() -- 00:12:34.608 DEBUG [25879]: Database connection successful -- 00:12:34.609 INFO [25879]: _SERVER found -- 00:12:34.609 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 00:12:34.609 INFO [25879]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:12:34.609 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=h9v0fnodrsoet5aam56dgia4lglust8o -- 00:12:34.609 INFO [25879]: QUERY_STRING = /member/page -- 00:12:34.609 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:12:34.647 INFO [25879]: COREGRADE is stopping... -- 00:12:34.647 DEBUG [25879]: Closing database connection -- 00:12:34.647 SQL [25879]: pgsql_close() -- 00:12:34.875 INFO [25879]: COREGRADE is starting... -- 00:12:34.875 INFO [25879]: Version from config: 1.0 -- 00:12:34.875 DEBUG [25879]: Connecting to database... -- 00:12:34.875 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:12:34.875 SQL [25879]: pgsql_db_connect() -- 00:12:34.879 DEBUG [25879]: Database connection successful -- 00:12:34.879 INFO [25879]: _SERVER found -- 00:12:34.879 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 00:12:34.879 INFO [25879]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:12:34.879 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i6teuc2k0joik6u6krq6avqabo8e4tfi -- 00:12:34.879 INFO [25879]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:12:34.880 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:12:34.891 INFO [25879]: COREGRADE is stopping... -- 00:12:34.891 DEBUG [25879]: Closing database connection -- 00:12:34.891 SQL [25879]: pgsql_close() -- 00:12:35.006 INFO [25879]: COREGRADE is starting... -- 00:12:35.007 INFO [25879]: Version from config: 1.0 -- 00:12:35.007 DEBUG [25879]: Connecting to database... -- 00:12:35.007 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:12:35.007 SQL [25879]: pgsql_db_connect() -- 00:12:35.011 DEBUG [25879]: Database connection successful -- 00:12:35.011 INFO [25879]: _SERVER found -- 00:12:35.011 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 00:12:35.011 INFO [25879]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:12:35.011 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i6teuc2k0joik6u6krq6avqabo8e4tfi -- 00:12:35.011 INFO [25879]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:12:35.011 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:12:35.022 INFO [25879]: COREGRADE is stopping... -- 00:12:35.022 DEBUG [25879]: Closing database connection -- 00:12:35.022 SQL [25879]: pgsql_close() -- 00:12:51.191 INFO [26604]: COREGRADE is starting... -- 00:12:51.191 INFO [26604]: Version from config: 1.0 -- 00:12:51.191 DEBUG [26604]: Connecting to database... -- 00:12:51.191 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:12:51.191 SQL [26604]: pgsql_db_connect() -- 00:12:51.195 DEBUG [26604]: Database connection successful -- 00:12:51.195 INFO [26604]: _SERVER found -- 00:12:51.195 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 00:12:51.195 INFO [26604]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:12:51.195 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i6teuc2k0joik6u6krq6avqabo8e4tfi -- 00:12:51.195 INFO [26604]: QUERY_STRING = /member/configure -- 00:12:51.195 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:12:51.231 INFO [26604]: COREGRADE is stopping... -- 00:12:51.231 DEBUG [26604]: Closing database connection -- 00:12:51.231 SQL [26604]: pgsql_close() -- 00:12:51.619 INFO [26604]: COREGRADE is starting... -- 00:12:51.619 INFO [26604]: Version from config: 1.0 -- 00:12:51.619 DEBUG [26604]: Connecting to database... -- 00:12:51.619 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:12:51.619 SQL [26604]: pgsql_db_connect() -- 00:12:51.623 DEBUG [26604]: Database connection successful -- 00:12:51.623 INFO [26604]: _SERVER found -- 00:12:51.623 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 00:12:51.623 INFO [26604]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:12:51.623 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i6teuc2k0joik6u6krq6avqabo8e4tfi -- 00:12:51.623 INFO [26604]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:12:51.623 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:12:51.634 INFO [26604]: COREGRADE is stopping... -- 00:12:51.634 DEBUG [26604]: Closing database connection -- 00:12:51.634 SQL [26604]: pgsql_close() -- 00:12:53.365 INFO [26604]: COREGRADE is starting... -- 00:12:53.365 INFO [26604]: Version from config: 1.0 -- 00:12:53.365 DEBUG [26604]: Connecting to database... -- 00:12:53.365 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:12:53.365 SQL [26604]: pgsql_db_connect() -- 00:12:53.369 DEBUG [26604]: Database connection successful -- 00:12:53.369 INFO [26604]: _SERVER found -- 00:12:53.369 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 00:12:53.369 INFO [26604]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:12:53.369 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i6teuc2k0joik6u6krq6avqabo8e4tfi -- 00:12:53.369 INFO [26604]: QUERY_STRING = /member -- 00:12:53.369 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:12:53.404 INFO [26604]: COREGRADE is stopping... -- 00:12:53.404 DEBUG [26604]: Closing database connection -- 00:12:53.404 SQL [26604]: pgsql_close() -- 00:12:53.884 INFO [26604]: COREGRADE is starting... -- 00:12:53.884 INFO [26604]: Version from config: 1.0 -- 00:12:53.884 DEBUG [26604]: Connecting to database... -- 00:12:53.884 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:12:53.884 SQL [26604]: pgsql_db_connect() -- 00:12:53.889 DEBUG [26604]: Database connection successful -- 00:12:53.889 INFO [26604]: _SERVER found -- 00:12:53.889 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 00:12:53.889 INFO [26604]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:12:53.889 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i6teuc2k0joik6u6krq6avqabo8e4tfi -- 00:12:53.889 INFO [26604]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:12:53.889 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:12:53.900 INFO [26604]: COREGRADE is stopping... -- 00:12:53.900 DEBUG [26604]: Closing database connection -- 00:12:53.900 SQL [26604]: pgsql_close() -- 00:12:55.311 INFO [26604]: COREGRADE is starting... -- 00:12:55.312 INFO [26604]: Version from config: 1.0 -- 00:12:55.312 DEBUG [26604]: Connecting to database... -- 00:12:55.312 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:12:55.312 SQL [26604]: pgsql_db_connect() -- 00:12:55.316 DEBUG [26604]: Database connection successful -- 00:12:55.316 INFO [26604]: _SERVER found -- 00:12:55.316 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 00:12:55.316 INFO [26604]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:12:55.316 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i6teuc2k0joik6u6krq6avqabo8e4tfi -- 00:12:55.316 INFO [26604]: QUERY_STRING = /member/page -- 00:12:55.316 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:12:55.353 INFO [26604]: COREGRADE is stopping... -- 00:12:55.353 DEBUG [26604]: Closing database connection -- 00:12:55.353 SQL [26604]: pgsql_close() -- 00:12:55.547 INFO [26604]: COREGRADE is starting... -- 00:12:55.547 INFO [26604]: Version from config: 1.0 -- 00:12:55.547 DEBUG [26604]: Connecting to database... -- 00:12:55.547 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:12:55.547 SQL [26604]: pgsql_db_connect() -- 00:12:55.551 DEBUG [26604]: Database connection successful -- 00:12:55.551 INFO [26604]: _SERVER found -- 00:12:55.551 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 00:12:55.551 INFO [26604]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:12:55.551 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i6teuc2k0joik6u6krq6avqabo8e4tfi -- 00:12:55.551 INFO [26604]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:12:55.551 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:12:55.562 INFO [26604]: COREGRADE is stopping... -- 00:12:55.562 DEBUG [26604]: Closing database connection -- 00:12:55.562 SQL [26604]: pgsql_close() -- 00:14:00.075 INFO [27127]: COREGRADE is starting... -- 00:14:00.075 INFO [27127]: Version from config: 1.0 -- 00:14:00.075 DEBUG [27127]: Connecting to database... -- 00:14:00.075 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:14:00.075 SQL [27127]: pgsql_db_connect() -- 00:14:00.079 DEBUG [27127]: Database connection successful -- 00:14:00.079 INFO [27127]: _SERVER found -- 00:14:00.079 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 00:14:00.079 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 00:14:00.079 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=4f1m82o4u4ep61drluq05nih4erlitnr -- 00:14:00.079 INFO [27127]: QUERY_STRING = /auth -- 00:14:00.079 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:14:00.111 INFO [27127]: COREGRADE is stopping... -- 00:14:00.111 DEBUG [27127]: Closing database connection -- 00:14:00.111 SQL [27127]: pgsql_close() -- 00:14:00.296 INFO [27127]: COREGRADE is starting... -- 00:14:00.296 INFO [27127]: Version from config: 1.0 -- 00:14:00.296 DEBUG [27127]: Connecting to database... -- 00:14:00.296 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:14:00.296 SQL [27127]: pgsql_db_connect() -- 00:14:00.300 DEBUG [27127]: Database connection successful -- 00:14:00.300 INFO [27127]: _SERVER found -- 00:14:00.300 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 00:14:00.300 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 00:14:00.300 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=e9g9i4f3jcg9lt3hjigi9c87d71a6sk8 -- 00:14:00.300 INFO [27127]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 00:14:00.300 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:14:00.311 INFO [27127]: COREGRADE is stopping... -- 00:14:00.311 DEBUG [27127]: Closing database connection -- 00:14:00.311 SQL [27127]: pgsql_close() -- 00:14:00.758 INFO [27127]: COREGRADE is starting... -- 00:14:00.759 INFO [27127]: Version from config: 1.0 -- 00:14:00.759 DEBUG [27127]: Connecting to database... -- 00:14:00.759 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:14:00.759 SQL [27127]: pgsql_db_connect() -- 00:14:00.763 DEBUG [27127]: Database connection successful -- 00:14:00.763 INFO [27127]: _SERVER found -- 00:14:00.763 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 00:14:00.763 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 00:14:00.763 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=e9g9i4f3jcg9lt3hjigi9c87d71a6sk8 -- 00:14:00.763 INFO [27127]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:14:00.763 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:14:00.774 INFO [27127]: COREGRADE is stopping... -- 00:14:00.774 DEBUG [27127]: Closing database connection -- 00:14:00.774 SQL [27127]: pgsql_close() -- 00:16:38.269 INFO [25880]: COREGRADE is starting... -- 00:16:38.269 INFO [25880]: Version from config: 1.0 -- 00:16:38.269 DEBUG [25880]: Connecting to database... -- 00:16:38.269 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:16:38.269 SQL [25880]: pgsql_db_connect() -- 00:16:38.274 DEBUG [25880]: Database connection successful -- 00:16:38.274 INFO [25880]: _SERVER found -- 00:16:38.274 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 00:16:38.274 INFO [25880]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:16:38.274 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i6teuc2k0joik6u6krq6avqabo8e4tfi -- 00:16:38.274 INFO [25880]: QUERY_STRING = /member/page -- 00:16:38.274 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:16:38.311 INFO [25880]: COREGRADE is stopping... -- 00:16:38.311 DEBUG [25880]: Closing database connection -- 00:16:38.311 SQL [25880]: pgsql_close() -- 00:16:38.587 INFO [25880]: COREGRADE is starting... -- 00:16:38.587 INFO [25880]: Version from config: 1.0 -- 00:16:38.587 DEBUG [25880]: Connecting to database... -- 00:16:38.587 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:16:38.587 SQL [25880]: pgsql_db_connect() -- 00:16:38.591 DEBUG [25880]: Database connection successful -- 00:16:38.591 INFO [25880]: _SERVER found -- 00:16:38.591 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 00:16:38.591 INFO [25880]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:16:38.591 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i6teuc2k0joik6u6krq6avqabo8e4tfi -- 00:16:38.591 INFO [25880]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:16:38.591 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:16:38.602 INFO [25880]: COREGRADE is stopping... -- 00:16:38.602 DEBUG [25880]: Closing database connection -- 00:16:38.602 SQL [25880]: pgsql_close() -- 00:16:42.463 INFO [25880]: COREGRADE is starting... -- 00:16:42.463 INFO [25880]: Version from config: 1.0 -- 00:16:42.463 DEBUG [25880]: Connecting to database... -- 00:16:42.463 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:16:42.463 SQL [25880]: pgsql_db_connect() -- 00:16:42.467 DEBUG [25880]: Database connection successful -- 00:16:42.467 INFO [25880]: _SERVER found -- 00:16:42.467 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 00:16:42.467 INFO [25880]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:16:42.467 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i6teuc2k0joik6u6krq6avqabo8e4tfi -- 00:16:42.467 INFO [25880]: QUERY_STRING = /member/configure -- 00:16:42.467 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:16:42.502 INFO [25880]: COREGRADE is stopping... -- 00:16:42.502 DEBUG [25880]: Closing database connection -- 00:16:42.502 SQL [25880]: pgsql_close() -- 00:16:42.734 INFO [25880]: COREGRADE is starting... -- 00:16:42.735 INFO [25880]: Version from config: 1.0 -- 00:16:42.735 DEBUG [25880]: Connecting to database... -- 00:16:42.735 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:16:42.735 SQL [25880]: pgsql_db_connect() -- 00:16:42.739 DEBUG [25880]: Database connection successful -- 00:16:42.739 INFO [25880]: _SERVER found -- 00:16:42.739 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 00:16:42.739 INFO [25880]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:16:42.739 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i6teuc2k0joik6u6krq6avqabo8e4tfi -- 00:16:42.739 INFO [25880]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:16:42.739 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:16:42.750 INFO [25880]: COREGRADE is stopping... -- 00:16:42.750 DEBUG [25880]: Closing database connection -- 00:16:42.750 SQL [25880]: pgsql_close() -- 00:16:45.689 INFO [25880]: COREGRADE is starting... -- 00:16:45.689 INFO [25880]: Version from config: 1.0 -- 00:16:45.689 DEBUG [25880]: Connecting to database... -- 00:16:45.689 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:16:45.689 SQL [25880]: pgsql_db_connect() -- 00:16:45.693 DEBUG [25880]: Database connection successful -- 00:16:45.693 INFO [25880]: _SERVER found -- 00:16:45.693 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 00:16:45.693 INFO [25880]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:16:45.693 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i6teuc2k0joik6u6krq6avqabo8e4tfi -- 00:16:45.693 INFO [25880]: QUERY_STRING = /member/page -- 00:16:45.693 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:16:45.730 INFO [25880]: COREGRADE is stopping... -- 00:16:45.730 DEBUG [25880]: Closing database connection -- 00:16:45.730 SQL [25880]: pgsql_close() -- 00:16:48.787 INFO [25880]: COREGRADE is starting... -- 00:16:48.787 INFO [25880]: Version from config: 1.0 -- 00:16:48.787 DEBUG [25880]: Connecting to database... -- 00:16:48.787 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:16:48.787 SQL [25880]: pgsql_db_connect() -- 00:16:48.791 DEBUG [25880]: Database connection successful -- 00:16:48.792 INFO [25880]: _SERVER found -- 00:16:48.792 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 00:16:48.792 INFO [25880]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:16:48.792 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i6teuc2k0joik6u6krq6avqabo8e4tfi -- 00:16:48.792 INFO [25880]: QUERY_STRING = /member/configure -- 00:16:48.792 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:16:48.827 INFO [25880]: COREGRADE is stopping... -- 00:16:48.827 DEBUG [25880]: Closing database connection -- 00:16:48.827 SQL [25880]: pgsql_close() -- 00:16:48.979 INFO [25880]: COREGRADE is starting... -- 00:16:48.980 INFO [25880]: Version from config: 1.0 -- 00:16:48.980 DEBUG [25880]: Connecting to database... -- 00:16:48.980 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:16:48.980 SQL [25880]: pgsql_db_connect() -- 00:16:48.984 DEBUG [25880]: Database connection successful -- 00:16:48.984 INFO [25880]: _SERVER found -- 00:16:48.984 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 00:16:48.984 INFO [25880]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:16:48.984 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i6teuc2k0joik6u6krq6avqabo8e4tfi -- 00:16:48.984 INFO [25880]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:16:48.984 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:16:48.995 INFO [25880]: COREGRADE is stopping... -- 00:16:48.995 DEBUG [25880]: Closing database connection -- 00:16:48.995 SQL [25880]: pgsql_close() -- 00:16:52.872 INFO [25880]: COREGRADE is starting... -- 00:16:52.872 INFO [25880]: Version from config: 1.0 -- 00:16:52.872 DEBUG [25880]: Connecting to database... -- 00:16:52.872 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:16:52.872 SQL [25880]: pgsql_db_connect() -- 00:16:52.876 DEBUG [25880]: Database connection successful -- 00:16:52.876 INFO [25880]: _SERVER found -- 00:16:52.876 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 00:16:52.876 INFO [25880]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:16:52.876 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i6teuc2k0joik6u6krq6avqabo8e4tfi -- 00:16:52.876 INFO [25880]: QUERY_STRING = /member/page -- 00:16:52.876 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:16:52.912 INFO [25880]: COREGRADE is stopping... -- 00:16:52.912 DEBUG [25880]: Closing database connection -- 00:16:52.912 SQL [25880]: pgsql_close() -- 00:18:49.344 INFO [27557]: COREGRADE is starting... -- 00:18:49.345 INFO [27557]: Version from config: 1.0 -- 00:18:49.345 DEBUG [27557]: Connecting to database... -- 00:18:49.345 DEBUG [27557]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:18:49.345 SQL [27557]: pgsql_db_connect() -- 00:18:49.349 DEBUG [27557]: Database connection successful -- 00:18:49.349 INFO [27557]: _SERVER found -- 00:18:49.349 INFO [27557]: REMOTE_ADDR = 192.168.1.13 -- 00:18:49.349 INFO [27557]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:18:49.349 INFO [27557]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i6teuc2k0joik6u6krq6avqabo8e4tfi -- 00:18:49.349 INFO [27557]: QUERY_STRING = /member/page -- 00:18:49.349 INFO [27557]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:18:49.386 INFO [27557]: COREGRADE is stopping... -- 00:18:49.386 DEBUG [27557]: Closing database connection -- 00:18:49.386 SQL [27557]: pgsql_close() -- 00:18:49.757 INFO [27557]: COREGRADE is starting... -- 00:18:49.757 INFO [27557]: Version from config: 1.0 -- 00:18:49.757 DEBUG [27557]: Connecting to database... -- 00:18:49.757 DEBUG [27557]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:18:49.757 SQL [27557]: pgsql_db_connect() -- 00:18:49.762 DEBUG [27557]: Database connection successful -- 00:18:49.762 INFO [27557]: _SERVER found -- 00:18:49.762 INFO [27557]: REMOTE_ADDR = 192.168.1.13 -- 00:18:49.762 INFO [27557]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:18:49.762 INFO [27557]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3c5kj8t4qbcpg7a9mh5ejb2uvt9siv54 -- 00:18:49.762 INFO [27557]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:18:49.762 INFO [27557]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:18:49.773 INFO [27557]: COREGRADE is stopping... -- 00:18:49.773 DEBUG [27557]: Closing database connection -- 00:18:49.773 SQL [27557]: pgsql_close() -- 00:18:56.831 INFO [25870]: COREGRADE is starting... -- 00:18:56.831 INFO [25870]: Version from config: 1.0 -- 00:18:56.831 DEBUG [25870]: Connecting to database... -- 00:18:56.831 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:18:56.831 SQL [25870]: pgsql_db_connect() -- 00:18:56.835 DEBUG [25870]: Database connection successful -- 00:18:56.835 INFO [25870]: _SERVER found -- 00:18:56.835 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 00:18:56.835 INFO [25870]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:18:56.835 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3c5kj8t4qbcpg7a9mh5ejb2uvt9siv54 -- 00:18:56.835 INFO [25870]: QUERY_STRING = /member/configure -- 00:18:56.835 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:18:56.872 INFO [25870]: COREGRADE is stopping... -- 00:18:56.872 DEBUG [25870]: Closing database connection -- 00:18:56.872 SQL [25870]: pgsql_close() -- 00:18:57.589 INFO [25870]: COREGRADE is starting... -- 00:18:57.590 INFO [25870]: Version from config: 1.0 -- 00:18:57.590 DEBUG [25870]: Connecting to database... -- 00:18:57.590 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:18:57.590 SQL [25870]: pgsql_db_connect() -- 00:18:57.594 DEBUG [25870]: Database connection successful -- 00:18:57.594 INFO [25870]: _SERVER found -- 00:18:57.594 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 00:18:57.594 INFO [25870]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:18:57.594 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3c5kj8t4qbcpg7a9mh5ejb2uvt9siv54 -- 00:18:57.594 INFO [25870]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:18:57.594 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:18:57.605 INFO [25870]: COREGRADE is stopping... -- 00:18:57.605 DEBUG [25870]: Closing database connection -- 00:18:57.605 SQL [25870]: pgsql_close() -- 00:18:59.750 INFO [25870]: COREGRADE is starting... -- 00:18:59.750 INFO [25870]: Version from config: 1.0 -- 00:18:59.750 DEBUG [25870]: Connecting to database... -- 00:18:59.750 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:18:59.750 SQL [25870]: pgsql_db_connect() -- 00:18:59.754 DEBUG [25870]: Database connection successful -- 00:18:59.754 INFO [25870]: _SERVER found -- 00:18:59.754 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 00:18:59.754 INFO [25870]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:18:59.754 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3c5kj8t4qbcpg7a9mh5ejb2uvt9siv54 -- 00:18:59.754 INFO [25870]: QUERY_STRING = /member -- 00:18:59.754 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:18:59.789 INFO [25870]: COREGRADE is stopping... -- 00:18:59.789 DEBUG [25870]: Closing database connection -- 00:18:59.789 SQL [25870]: pgsql_close() -- 00:18:59.994 INFO [25870]: COREGRADE is starting... -- 00:18:59.994 INFO [25870]: Version from config: 1.0 -- 00:18:59.994 DEBUG [25870]: Connecting to database... -- 00:18:59.994 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:18:59.995 SQL [25870]: pgsql_db_connect() -- 00:18:59.999 DEBUG [25870]: Database connection successful -- 00:18:59.999 INFO [25870]: _SERVER found -- 00:18:59.999 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 00:18:59.999 INFO [25870]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:18:59.999 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3c5kj8t4qbcpg7a9mh5ejb2uvt9siv54 -- 00:18:59.999 INFO [25870]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:18:59.999 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:19:00.010 INFO [25870]: COREGRADE is stopping... -- 00:19:00.010 DEBUG [25870]: Closing database connection -- 00:19:00.010 SQL [25870]: pgsql_close() -- 00:19:09.310 INFO [25864]: COREGRADE is starting... -- 00:19:09.310 INFO [25864]: Version from config: 1.0 -- 00:19:09.310 DEBUG [25864]: Connecting to database... -- 00:19:09.310 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:19:09.310 SQL [25864]: pgsql_db_connect() -- 00:19:09.315 INFO [25865]: COREGRADE is starting... -- 00:19:09.316 INFO [25865]: Version from config: 1.0 -- 00:19:09.316 DEBUG [25865]: Connecting to database... -- 00:19:09.316 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:19:09.316 SQL [25865]: pgsql_db_connect() -- 00:19:09.315 DEBUG [25864]: Database connection successful -- 00:19:09.315 INFO [25864]: _SERVER found -- 00:19:09.315 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 00:19:09.315 INFO [25864]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:19:09.315 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3c5kj8t4qbcpg7a9mh5ejb2uvt9siv54 -- 00:19:09.315 INFO [25864]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 00:19:09.315 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:19:09.328 INFO [25864]: COREGRADE is stopping... -- 00:19:09.328 DEBUG [25864]: Closing database connection -- 00:19:09.328 SQL [25864]: pgsql_close() -- 00:19:09.320 DEBUG [25865]: Database connection successful -- 00:19:09.320 INFO [25865]: _SERVER found -- 00:19:09.320 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 00:19:09.320 INFO [25865]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:19:09.320 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3c5kj8t4qbcpg7a9mh5ejb2uvt9siv54 -- 00:19:09.320 INFO [25865]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 00:19:09.320 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:19:09.332 INFO [25865]: COREGRADE is stopping... -- 00:19:09.332 DEBUG [25865]: Closing database connection -- 00:19:09.332 SQL [25865]: pgsql_close() -- 00:19:14.496 INFO [25867]: COREGRADE is starting... -- 00:19:14.496 INFO [25867]: Version from config: 1.0 -- 00:19:14.496 DEBUG [25867]: Connecting to database... -- 00:19:14.496 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:19:14.496 SQL [25867]: pgsql_db_connect() -- 00:19:14.501 DEBUG [25867]: Database connection successful -- 00:19:14.501 INFO [25867]: _SERVER found -- 00:19:14.501 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 00:19:14.501 INFO [25867]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:19:14.501 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3c5kj8t4qbcpg7a9mh5ejb2uvt9siv54 -- 00:19:14.501 INFO [25867]: QUERY_STRING = /member -- 00:19:14.501 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:19:14.536 INFO [25867]: COREGRADE is stopping... -- 00:19:14.536 DEBUG [25867]: Closing database connection -- 00:19:14.536 SQL [25867]: pgsql_close() -- 00:19:55.728 INFO [25877]: COREGRADE is starting... -- 00:19:55.728 INFO [25877]: Version from config: 1.0 -- 00:19:55.728 DEBUG [25877]: Connecting to database... -- 00:19:55.728 DEBUG [25877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:19:55.728 SQL [25877]: pgsql_db_connect() -- 00:19:55.732 DEBUG [25877]: Database connection successful -- 00:19:55.732 INFO [25877]: _SERVER found -- 00:19:55.732 INFO [25877]: REMOTE_ADDR = 192.168.1.13 -- 00:19:55.732 INFO [25877]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:19:55.732 INFO [25877]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3c5kj8t4qbcpg7a9mh5ejb2uvt9siv54 -- 00:19:55.732 INFO [25877]: QUERY_STRING = /member -- 00:19:55.732 INFO [25877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:19:55.768 INFO [25877]: COREGRADE is stopping... -- 00:19:55.768 DEBUG [25877]: Closing database connection -- 00:19:55.768 SQL [25877]: pgsql_close() -- 00:20:01.404 INFO [25879]: COREGRADE is starting... -- 00:20:01.404 INFO [25879]: Version from config: 1.0 -- 00:20:01.404 DEBUG [25879]: Connecting to database... -- 00:20:01.404 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:20:01.404 SQL [25879]: pgsql_db_connect() -- 00:20:01.408 DEBUG [25879]: Database connection successful -- 00:20:01.408 INFO [25879]: _SERVER found -- 00:20:01.408 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 00:20:01.408 INFO [25879]: SERVER_NAME = oameye.works.coregrade.com -- 00:20:01.408 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=e9g9i4f3jcg9lt3hjigi9c87d71a6sk8 -- 00:20:01.408 INFO [25879]: QUERY_STRING = -- 00:20:01.408 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:20:01.440 INFO [25879]: COREGRADE is stopping... -- 00:20:01.440 DEBUG [25879]: Closing database connection -- 00:20:01.440 SQL [25879]: pgsql_close() -- 00:20:01.648 INFO [25879]: COREGRADE is starting... -- 00:20:01.649 INFO [25879]: Version from config: 1.0 -- 00:20:01.649 DEBUG [25879]: Connecting to database... -- 00:20:01.649 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:20:01.649 SQL [25879]: pgsql_db_connect() -- 00:20:01.655 INFO [26604]: COREGRADE is starting... -- 00:20:01.655 INFO [26604]: Version from config: 1.0 -- 00:20:01.655 DEBUG [26604]: Connecting to database... -- 00:20:01.655 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:20:01.655 SQL [26604]: pgsql_db_connect() -- 00:20:01.653 DEBUG [25879]: Database connection successful -- 00:20:01.653 INFO [25879]: _SERVER found -- 00:20:01.653 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 00:20:01.653 INFO [25879]: SERVER_NAME = oameye.works.coregrade.com -- 00:20:01.653 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=u2itj3lcqktuq3jpe027gll4lbnd18uo -- 00:20:01.653 INFO [25879]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 00:20:01.653 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:20:01.664 INFO [25879]: COREGRADE is stopping... -- 00:20:01.664 DEBUG [25879]: Closing database connection -- 00:20:01.664 SQL [25879]: pgsql_close() -- 00:20:01.659 DEBUG [26604]: Database connection successful -- 00:20:01.659 INFO [26604]: _SERVER found -- 00:20:01.659 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 00:20:01.659 INFO [26604]: SERVER_NAME = oameye.works.coregrade.com -- 00:20:01.659 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=u2itj3lcqktuq3jpe027gll4lbnd18uo -- 00:20:01.659 INFO [26604]: QUERY_STRING = /assets/img/footer_1.jpg -- 00:20:01.659 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:20:01.670 INFO [26604]: COREGRADE is stopping... -- 00:20:01.670 DEBUG [26604]: Closing database connection -- 00:20:01.670 SQL [26604]: pgsql_close() -- 00:20:08.486 INFO [27127]: COREGRADE is starting... -- 00:20:08.487 INFO [27127]: Version from config: 1.0 -- 00:20:08.487 DEBUG [27127]: Connecting to database... -- 00:20:08.487 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:20:08.487 SQL [27127]: pgsql_db_connect() -- 00:20:08.491 DEBUG [27127]: Database connection successful -- 00:20:08.491 INFO [27127]: _SERVER found -- 00:20:08.491 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 00:20:08.491 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 00:20:08.491 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=u2itj3lcqktuq3jpe027gll4lbnd18uo; _gat_gtag_UA_54829827_2=1 -- 00:20:08.491 INFO [27127]: QUERY_STRING = -- 00:20:08.491 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:20:08.528 INFO [27127]: COREGRADE is stopping... -- 00:20:08.528 DEBUG [27127]: Closing database connection -- 00:20:08.528 SQL [27127]: pgsql_close() -- 00:20:09.616 INFO [27127]: COREGRADE is starting... -- 00:20:09.616 INFO [27127]: Version from config: 1.0 -- 00:20:09.616 DEBUG [27127]: Connecting to database... -- 00:20:09.616 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:20:09.616 SQL [27127]: pgsql_db_connect() -- 00:20:09.620 DEBUG [27127]: Database connection successful -- 00:20:09.620 INFO [27127]: _SERVER found -- 00:20:09.620 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 00:20:09.620 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 00:20:09.620 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=u2itj3lcqktuq3jpe027gll4lbnd18uo; _gat_gtag_UA_54829827_2=1 -- 00:20:09.620 INFO [27127]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 00:20:09.620 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:20:09.631 INFO [27127]: COREGRADE is stopping... -- 00:20:09.631 DEBUG [27127]: Closing database connection -- 00:20:09.631 SQL [27127]: pgsql_close() -- 00:20:09.641 INFO [25880]: COREGRADE is starting... -- 00:20:09.641 INFO [25880]: Version from config: 1.0 -- 00:20:09.641 DEBUG [25880]: Connecting to database... -- 00:20:09.641 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:20:09.641 SQL [25880]: pgsql_db_connect() -- 00:20:09.645 DEBUG [25880]: Database connection successful -- 00:20:09.645 INFO [25880]: _SERVER found -- 00:20:09.645 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 00:20:09.645 INFO [25880]: SERVER_NAME = oameye.works.coregrade.com -- 00:20:09.645 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=u2itj3lcqktuq3jpe027gll4lbnd18uo; _gat_gtag_UA_54829827_2=1 -- 00:20:09.645 INFO [25880]: QUERY_STRING = /assets/img/footer_1.jpg -- 00:20:09.645 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:20:09.657 INFO [25880]: COREGRADE is stopping... -- 00:20:09.657 DEBUG [25880]: Closing database connection -- 00:20:09.657 SQL [25880]: pgsql_close() -- 00:21:19.429 INFO [25870]: COREGRADE is starting... -- 00:21:19.429 INFO [25870]: Version from config: 1.0 -- 00:21:19.429 DEBUG [25870]: Connecting to database... -- 00:21:19.429 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:21:19.429 SQL [25870]: pgsql_db_connect() -- 00:21:19.433 DEBUG [25870]: Database connection successful -- 00:21:19.433 INFO [25870]: _SERVER found -- 00:21:19.433 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 00:21:19.433 INFO [25870]: SERVER_NAME = oameye.works.coregrade.com -- 00:21:19.433 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=u2itj3lcqktuq3jpe027gll4lbnd18uo -- 00:21:19.433 INFO [25870]: QUERY_STRING = -- 00:21:19.433 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:21:19.465 INFO [25870]: COREGRADE is stopping... -- 00:21:19.465 DEBUG [25870]: Closing database connection -- 00:21:19.465 SQL [25870]: pgsql_close() -- 00:21:19.693 INFO [25870]: COREGRADE is starting... -- 00:21:19.693 INFO [25870]: Version from config: 1.0 -- 00:21:19.693 DEBUG [25870]: Connecting to database... -- 00:21:19.693 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:21:19.694 SQL [25870]: pgsql_db_connect() -- 00:21:19.699 INFO [25865]: COREGRADE is starting... -- 00:21:19.699 INFO [25865]: Version from config: 1.0 -- 00:21:19.699 DEBUG [25865]: Connecting to database... -- 00:21:19.699 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:21:19.699 SQL [25865]: pgsql_db_connect() -- 00:21:19.697 DEBUG [25870]: Database connection successful -- 00:21:19.697 INFO [25870]: _SERVER found -- 00:21:19.697 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 00:21:19.697 INFO [25870]: SERVER_NAME = oameye.works.coregrade.com -- 00:21:19.697 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=u2itj3lcqktuq3jpe027gll4lbnd18uo -- 00:21:19.697 INFO [25870]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 00:21:19.697 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:21:19.709 INFO [25870]: COREGRADE is stopping... -- 00:21:19.709 DEBUG [25870]: Closing database connection -- 00:21:19.709 SQL [25870]: pgsql_close() -- 00:21:19.703 DEBUG [25865]: Database connection successful -- 00:21:19.703 INFO [25865]: _SERVER found -- 00:21:19.703 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 00:21:19.703 INFO [25865]: SERVER_NAME = oameye.works.coregrade.com -- 00:21:19.703 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=u2itj3lcqktuq3jpe027gll4lbnd18uo -- 00:21:19.703 INFO [25865]: QUERY_STRING = /assets/img/footer_1.jpg -- 00:21:19.703 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:21:19.714 INFO [25865]: COREGRADE is stopping... -- 00:21:19.714 DEBUG [25865]: Closing database connection -- 00:21:19.714 SQL [25865]: pgsql_close() -- 00:23:10.770 INFO [25864]: COREGRADE is starting... -- 00:23:10.770 INFO [25864]: Version from config: 1.0 -- 00:23:10.770 DEBUG [25864]: Connecting to database... -- 00:23:10.770 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:23:10.770 SQL [25864]: pgsql_db_connect() -- 00:23:10.774 DEBUG [25864]: Database connection successful -- 00:23:10.774 INFO [25864]: _SERVER found -- 00:23:10.774 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 00:23:10.774 INFO [25864]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:23:10.774 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3c5kj8t4qbcpg7a9mh5ejb2uvt9siv54 -- 00:23:10.774 INFO [25864]: QUERY_STRING = /member -- 00:23:10.774 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:23:10.810 INFO [25864]: COREGRADE is stopping... -- 00:23:10.810 DEBUG [25864]: Closing database connection -- 00:23:10.810 SQL [25864]: pgsql_close() -- 00:23:11.222 INFO [25864]: COREGRADE is starting... -- 00:23:11.222 INFO [25864]: Version from config: 1.0 -- 00:23:11.222 DEBUG [25864]: Connecting to database... -- 00:23:11.222 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:23:11.222 SQL [25864]: pgsql_db_connect() -- 00:23:11.235 INFO [25867]: COREGRADE is starting... -- 00:23:11.235 INFO [25867]: Version from config: 1.0 -- 00:23:11.235 DEBUG [25867]: Connecting to database... -- 00:23:11.235 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:23:11.235 SQL [25867]: pgsql_db_connect() -- 00:23:11.226 DEBUG [25864]: Database connection successful -- 00:23:11.226 INFO [25864]: _SERVER found -- 00:23:11.226 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 00:23:11.226 INFO [25864]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:23:11.226 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3c5kj8t4qbcpg7a9mh5ejb2uvt9siv54 -- 00:23:11.226 INFO [25864]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 00:23:11.226 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:23:11.237 INFO [25864]: COREGRADE is stopping... -- 00:23:11.237 DEBUG [25864]: Closing database connection -- 00:23:11.237 SQL [25864]: pgsql_close() -- 00:23:11.239 DEBUG [25867]: Database connection successful -- 00:23:11.239 INFO [25867]: _SERVER found -- 00:23:11.239 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 00:23:11.239 INFO [25867]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:23:11.239 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3c5kj8t4qbcpg7a9mh5ejb2uvt9siv54 -- 00:23:11.239 INFO [25867]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 00:23:11.239 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:23:11.250 INFO [25867]: COREGRADE is stopping... -- 00:23:11.250 DEBUG [25867]: Closing database connection -- 00:23:11.250 SQL [25867]: pgsql_close() -- 00:23:11.289 INFO [25867]: COREGRADE is starting... -- 00:23:11.289 INFO [25867]: Version from config: 1.0 -- 00:23:11.289 DEBUG [25867]: Connecting to database... -- 00:23:11.289 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:23:11.289 SQL [25867]: pgsql_db_connect() -- 00:23:11.293 DEBUG [25867]: Database connection successful -- 00:23:11.293 INFO [25867]: _SERVER found -- 00:23:11.293 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 00:23:11.293 INFO [25867]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:23:11.293 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3c5kj8t4qbcpg7a9mh5ejb2uvt9siv54 -- 00:23:11.293 INFO [25867]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:23:11.293 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:23:11.304 INFO [25867]: COREGRADE is stopping... -- 00:23:11.304 DEBUG [25867]: Closing database connection -- 00:23:11.304 SQL [25867]: pgsql_close() -- 00:23:13.414 INFO [25867]: COREGRADE is starting... -- 00:23:13.414 INFO [25867]: Version from config: 1.0 -- 00:23:13.414 DEBUG [25867]: Connecting to database... -- 00:23:13.414 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:23:13.414 SQL [25867]: pgsql_db_connect() -- 00:23:13.418 DEBUG [25867]: Database connection successful -- 00:23:13.418 INFO [25867]: _SERVER found -- 00:23:13.418 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 00:23:13.418 INFO [25867]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:23:13.418 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3c5kj8t4qbcpg7a9mh5ejb2uvt9siv54 -- 00:23:13.418 INFO [25867]: QUERY_STRING = /member -- 00:23:13.418 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:23:13.453 INFO [25867]: COREGRADE is stopping... -- 00:23:13.453 DEBUG [25867]: Closing database connection -- 00:23:13.453 SQL [25867]: pgsql_close() -- 00:23:13.812 INFO [25867]: COREGRADE is starting... -- 00:23:13.812 INFO [25864]: COREGRADE is starting... -- 00:23:13.812 INFO [25867]: Version from config: 1.0 -- 00:23:13.812 DEBUG [25867]: Connecting to database... -- 00:23:13.812 INFO [25864]: Version from config: 1.0 -- 00:23:13.812 DEBUG [25864]: Connecting to database... -- 00:23:13.812 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:23:13.812 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:23:13.812 SQL [25867]: pgsql_db_connect() -- 00:23:13.812 SQL [25864]: pgsql_db_connect() -- 00:23:13.816 DEBUG [25864]: Database connection successful -- 00:23:13.816 INFO [25864]: _SERVER found -- 00:23:13.816 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 00:23:13.816 INFO [25864]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:23:13.816 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3c5kj8t4qbcpg7a9mh5ejb2uvt9siv54 -- 00:23:13.816 INFO [25864]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 00:23:13.816 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:23:13.827 INFO [25864]: COREGRADE is stopping... -- 00:23:13.816 DEBUG [25867]: Database connection successful -- 00:23:13.816 INFO [25867]: _SERVER found -- 00:23:13.816 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 00:23:13.816 INFO [25867]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:23:13.816 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3c5kj8t4qbcpg7a9mh5ejb2uvt9siv54 -- 00:23:13.816 INFO [25867]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 00:23:13.816 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:23:13.827 INFO [25867]: COREGRADE is stopping... -- 00:23:13.827 DEBUG [25864]: Closing database connection -- 00:23:13.827 DEBUG [25867]: Closing database connection -- 00:23:13.827 SQL [25864]: pgsql_close() -- 00:23:13.827 SQL [25867]: pgsql_close() -- 00:23:13.934 INFO [25864]: COREGRADE is starting... -- 00:23:13.935 INFO [25864]: Version from config: 1.0 -- 00:23:13.935 DEBUG [25864]: Connecting to database... -- 00:23:13.935 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:23:13.935 SQL [25864]: pgsql_db_connect() -- 00:23:13.938 DEBUG [25864]: Database connection successful -- 00:23:13.938 INFO [25864]: _SERVER found -- 00:23:13.938 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 00:23:13.938 INFO [25864]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:23:13.938 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3c5kj8t4qbcpg7a9mh5ejb2uvt9siv54 -- 00:23:13.938 INFO [25864]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:23:13.938 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:23:13.949 INFO [25864]: COREGRADE is stopping... -- 00:23:13.949 DEBUG [25864]: Closing database connection -- 00:23:13.949 SQL [25864]: pgsql_close() -- 00:23:33.358 INFO [25877]: COREGRADE is starting... -- 00:23:33.358 INFO [25877]: Version from config: 1.0 -- 00:23:33.358 DEBUG [25877]: Connecting to database... -- 00:23:33.358 DEBUG [25877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:23:33.358 SQL [25877]: pgsql_db_connect() -- 00:23:33.362 DEBUG [25877]: Database connection successful -- 00:23:33.362 INFO [25877]: _SERVER found -- 00:23:33.362 INFO [25877]: REMOTE_ADDR = 192.168.1.13 -- 00:23:33.362 INFO [25877]: SERVER_NAME = oameye.works.coregrade.com -- 00:23:33.362 INFO [25877]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=u2itj3lcqktuq3jpe027gll4lbnd18uo -- 00:23:33.362 INFO [25877]: QUERY_STRING = -- 00:23:33.362 INFO [25877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:23:33.394 INFO [25877]: COREGRADE is stopping... -- 00:23:33.394 DEBUG [25877]: Closing database connection -- 00:23:33.394 SQL [25877]: pgsql_close() -- 00:23:33.617 INFO [25877]: COREGRADE is starting... -- 00:23:33.617 INFO [25877]: Version from config: 1.0 -- 00:23:33.617 DEBUG [25877]: Connecting to database... -- 00:23:33.617 DEBUG [25877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:23:33.617 SQL [25877]: pgsql_db_connect() -- 00:23:33.624 INFO [26604]: COREGRADE is starting... -- 00:23:33.624 INFO [26604]: Version from config: 1.0 -- 00:23:33.624 DEBUG [26604]: Connecting to database... -- 00:23:33.624 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:23:33.624 SQL [26604]: pgsql_db_connect() -- 00:23:33.621 DEBUG [25877]: Database connection successful -- 00:23:33.621 INFO [25877]: _SERVER found -- 00:23:33.621 INFO [25877]: REMOTE_ADDR = 192.168.1.13 -- 00:23:33.621 INFO [25877]: SERVER_NAME = oameye.works.coregrade.com -- 00:23:33.621 INFO [25877]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=u2itj3lcqktuq3jpe027gll4lbnd18uo -- 00:23:33.621 INFO [25877]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 00:23:33.621 INFO [25877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:23:33.632 INFO [25877]: COREGRADE is stopping... -- 00:23:33.632 DEBUG [25877]: Closing database connection -- 00:23:33.632 SQL [25877]: pgsql_close() -- 00:23:33.628 DEBUG [26604]: Database connection successful -- 00:23:33.628 INFO [26604]: _SERVER found -- 00:23:33.628 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 00:23:33.628 INFO [26604]: SERVER_NAME = oameye.works.coregrade.com -- 00:23:33.628 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=u2itj3lcqktuq3jpe027gll4lbnd18uo -- 00:23:33.628 INFO [26604]: QUERY_STRING = /assets/img/footer_1.jpg -- 00:23:33.628 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:23:33.639 INFO [26604]: COREGRADE is stopping... -- 00:23:33.639 DEBUG [26604]: Closing database connection -- 00:23:33.639 SQL [26604]: pgsql_close() -- 00:23:37.406 INFO [26604]: COREGRADE is starting... -- 00:23:37.407 INFO [26604]: Version from config: 1.0 -- 00:23:37.407 DEBUG [26604]: Connecting to database... -- 00:23:37.407 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:23:37.407 SQL [26604]: pgsql_db_connect() -- 00:23:37.411 DEBUG [26604]: Database connection successful -- 00:23:37.411 INFO [26604]: _SERVER found -- 00:23:37.411 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 00:23:37.411 INFO [26604]: SERVER_NAME = oameye.works.coregrade.com -- 00:23:37.411 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=u2itj3lcqktuq3jpe027gll4lbnd18uo; _gat_gtag_UA_54829827_2=1 -- 00:23:37.411 INFO [26604]: QUERY_STRING = /member/viewLogin -- 00:23:37.411 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:23:37.422 INFO [26604]: COREGRADE is stopping... -- 00:23:37.422 DEBUG [26604]: Closing database connection -- 00:23:37.422 SQL [26604]: pgsql_close() -- 00:23:41.116 INFO [26604]: COREGRADE is starting... -- 00:23:41.116 INFO [26604]: Version from config: 1.0 -- 00:23:41.116 DEBUG [26604]: Connecting to database... -- 00:23:41.117 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:23:41.117 SQL [26604]: pgsql_db_connect() -- 00:23:41.121 DEBUG [26604]: Database connection successful -- 00:23:41.121 INFO [26604]: _SERVER found -- 00:23:41.121 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 00:23:41.121 INFO [26604]: SERVER_NAME = oameye.works.coregrade.com -- 00:23:41.121 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=u2itj3lcqktuq3jpe027gll4lbnd18uo; _gat_gtag_UA_54829827_2=1 -- 00:23:41.121 INFO [26604]: QUERY_STRING = /member/viewLogin -- 00:23:41.121 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:23:41.132 INFO [26604]: COREGRADE is stopping... -- 00:23:41.132 DEBUG [26604]: Closing database connection -- 00:23:41.132 SQL [26604]: pgsql_close() -- 00:23:47.909 INFO [25879]: COREGRADE is starting... -- 00:23:47.909 INFO [25879]: Version from config: 1.0 -- 00:23:47.909 DEBUG [25879]: Connecting to database... -- 00:23:47.909 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:23:47.909 SQL [25879]: pgsql_db_connect() -- 00:23:47.913 DEBUG [25879]: Database connection successful -- 00:23:47.913 INFO [25879]: _SERVER found -- 00:23:47.913 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 00:23:47.913 INFO [25879]: SERVER_NAME = oameye.works.coregrade.com -- 00:23:47.913 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=u2itj3lcqktuq3jpe027gll4lbnd18uo; _gat_gtag_UA_54829827_2=1 -- 00:23:47.913 INFO [25879]: QUERY_STRING = /member/viewLogin -- 00:23:47.913 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:23:47.925 INFO [25879]: COREGRADE is stopping... -- 00:23:47.925 DEBUG [25879]: Closing database connection -- 00:23:47.925 SQL [25879]: pgsql_close() -- 00:24:14.810 INFO [27557]: COREGRADE is starting... -- 00:24:14.810 INFO [27557]: Version from config: 1.0 -- 00:24:14.810 DEBUG [27557]: Connecting to database... -- 00:24:14.810 DEBUG [27557]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:24:14.810 SQL [27557]: pgsql_db_connect() -- 00:24:14.814 DEBUG [27557]: Database connection successful -- 00:24:14.814 INFO [27557]: _SERVER found -- 00:24:14.814 INFO [27557]: REMOTE_ADDR = 192.168.1.13 -- 00:24:14.814 INFO [27557]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:24:14.814 INFO [27557]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3c5kj8t4qbcpg7a9mh5ejb2uvt9siv54 -- 00:24:14.814 INFO [27557]: QUERY_STRING = /member -- 00:24:14.814 INFO [27557]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:24:14.850 INFO [27557]: COREGRADE is stopping... -- 00:24:14.850 DEBUG [27557]: Closing database connection -- 00:24:14.850 SQL [27557]: pgsql_close() -- 00:24:15.092 INFO [27557]: COREGRADE is starting... -- 00:24:15.092 INFO [27557]: Version from config: 1.0 -- 00:24:15.092 DEBUG [27557]: Connecting to database... -- 00:24:15.092 DEBUG [27557]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:24:15.092 SQL [27557]: pgsql_db_connect() -- 00:24:15.096 DEBUG [27557]: Database connection successful -- 00:24:15.096 INFO [27557]: _SERVER found -- 00:24:15.096 INFO [27557]: REMOTE_ADDR = 192.168.1.13 -- 00:24:15.096 INFO [27557]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:24:15.096 INFO [27557]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=kk55sfm8qj33vgr855fls1btktti251g -- 00:24:15.096 INFO [27557]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:24:15.096 INFO [27557]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:24:15.107 INFO [27557]: COREGRADE is stopping... -- 00:24:15.107 DEBUG [27557]: Closing database connection -- 00:24:15.107 SQL [27557]: pgsql_close() -- 00:24:29.161 INFO [25880]: COREGRADE is starting... -- 00:24:29.161 INFO [25880]: Version from config: 1.0 -- 00:24:29.161 DEBUG [25880]: Connecting to database... -- 00:24:29.161 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:24:29.161 SQL [25880]: pgsql_db_connect() -- 00:24:29.165 DEBUG [25880]: Database connection successful -- 00:24:29.165 INFO [25880]: _SERVER found -- 00:24:29.165 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 00:24:29.165 INFO [25880]: SERVER_NAME = oameye.works.coregrade.com -- 00:24:29.165 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=u2itj3lcqktuq3jpe027gll4lbnd18uo; _gat_gtag_UA_54829827_2=1 -- 00:24:29.165 INFO [25880]: QUERY_STRING = -- 00:24:29.165 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:24:29.202 INFO [25880]: COREGRADE is stopping... -- 00:24:29.202 DEBUG [25880]: Closing database connection -- 00:24:29.202 SQL [25880]: pgsql_close() -- 00:24:30.041 INFO [25867]: COREGRADE is starting... -- 00:24:30.041 INFO [25867]: Version from config: 1.0 -- 00:24:30.041 DEBUG [25867]: Connecting to database... -- 00:24:30.041 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:24:30.041 SQL [25867]: pgsql_db_connect() -- 00:24:30.046 DEBUG [25867]: Database connection successful -- 00:24:30.046 INFO [25867]: _SERVER found -- 00:24:30.046 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 00:24:30.046 INFO [25867]: SERVER_NAME = oameye.works.coregrade.com -- 00:24:30.046 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=u2itj3lcqktuq3jpe027gll4lbnd18uo; _gat_gtag_UA_54829827_2=1 -- 00:24:30.046 INFO [25867]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 00:24:30.046 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:24:30.057 INFO [25867]: COREGRADE is stopping... -- 00:24:30.057 DEBUG [25867]: Closing database connection -- 00:24:30.057 SQL [25867]: pgsql_close() -- 00:24:30.065 INFO [25870]: COREGRADE is starting... -- 00:24:30.065 INFO [25870]: Version from config: 1.0 -- 00:24:30.065 DEBUG [25870]: Connecting to database... -- 00:24:30.065 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:24:30.065 SQL [25870]: pgsql_db_connect() -- 00:24:30.069 DEBUG [25870]: Database connection successful -- 00:24:30.069 INFO [25870]: _SERVER found -- 00:24:30.069 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 00:24:30.069 INFO [25870]: SERVER_NAME = oameye.works.coregrade.com -- 00:24:30.069 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=u2itj3lcqktuq3jpe027gll4lbnd18uo; _gat_gtag_UA_54829827_2=1 -- 00:24:30.069 INFO [25870]: QUERY_STRING = /assets/img/footer_1.jpg -- 00:24:30.069 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:24:30.080 INFO [25870]: COREGRADE is stopping... -- 00:24:30.080 DEBUG [25870]: Closing database connection -- 00:24:30.080 SQL [25870]: pgsql_close() -- 00:24:32.099 INFO [25870]: COREGRADE is starting... -- 00:24:32.099 INFO [25870]: Version from config: 1.0 -- 00:24:32.099 DEBUG [25870]: Connecting to database... -- 00:24:32.099 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:24:32.099 SQL [25870]: pgsql_db_connect() -- 00:24:32.103 DEBUG [25870]: Database connection successful -- 00:24:32.103 INFO [25870]: _SERVER found -- 00:24:32.103 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 00:24:32.103 INFO [25870]: SERVER_NAME = oameye.works.coregrade.com -- 00:24:32.103 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=u2itj3lcqktuq3jpe027gll4lbnd18uo; _gat_gtag_UA_54829827_2=1 -- 00:24:32.103 INFO [25870]: QUERY_STRING = /member/viewLogin -- 00:24:32.103 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:24:32.115 INFO [25870]: COREGRADE is stopping... -- 00:24:32.115 DEBUG [25870]: Closing database connection -- 00:24:32.115 SQL [25870]: pgsql_close() -- 00:24:33.291 INFO [25870]: COREGRADE is starting... -- 00:24:33.291 INFO [25870]: Version from config: 1.0 -- 00:24:33.291 DEBUG [25870]: Connecting to database... -- 00:24:33.291 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:24:33.291 SQL [25870]: pgsql_db_connect() -- 00:24:33.295 DEBUG [25870]: Database connection successful -- 00:24:33.295 INFO [25870]: _SERVER found -- 00:24:33.295 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 00:24:33.295 INFO [25870]: SERVER_NAME = oameye.works.coregrade.com -- 00:24:33.295 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=u2itj3lcqktuq3jpe027gll4lbnd18uo -- 00:24:33.295 INFO [25870]: QUERY_STRING = /member/viewLogin -- 00:24:33.295 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:24:33.307 INFO [25870]: COREGRADE is stopping... -- 00:24:33.307 DEBUG [25870]: Closing database connection -- 00:24:33.307 SQL [25870]: pgsql_close() -- 00:24:33.828 INFO [25870]: COREGRADE is starting... -- 00:24:33.828 INFO [25870]: Version from config: 1.0 -- 00:24:33.828 DEBUG [25870]: Connecting to database... -- 00:24:33.828 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:24:33.828 SQL [25870]: pgsql_db_connect() -- 00:24:33.833 DEBUG [25870]: Database connection successful -- 00:24:33.833 INFO [25870]: _SERVER found -- 00:24:33.833 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 00:24:33.833 INFO [25870]: SERVER_NAME = oameye.works.coregrade.com -- 00:24:33.833 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=u2itj3lcqktuq3jpe027gll4lbnd18uo -- 00:24:33.833 INFO [25870]: QUERY_STRING = /member/viewLogin -- 00:24:33.833 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:24:33.844 INFO [25870]: COREGRADE is stopping... -- 00:24:33.844 DEBUG [25870]: Closing database connection -- 00:24:33.844 SQL [25870]: pgsql_close() -- 00:24:34.365 INFO [25870]: COREGRADE is starting... -- 00:24:34.365 INFO [25870]: Version from config: 1.0 -- 00:24:34.365 DEBUG [25870]: Connecting to database... -- 00:24:34.365 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:24:34.365 SQL [25870]: pgsql_db_connect() -- 00:24:34.369 DEBUG [25870]: Database connection successful -- 00:24:34.369 INFO [25870]: _SERVER found -- 00:24:34.369 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 00:24:34.369 INFO [25870]: SERVER_NAME = oameye.works.coregrade.com -- 00:24:34.369 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=u2itj3lcqktuq3jpe027gll4lbnd18uo -- 00:24:34.369 INFO [25870]: QUERY_STRING = /member/viewLogin -- 00:24:34.369 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:24:34.381 INFO [25870]: COREGRADE is stopping... -- 00:24:34.381 DEBUG [25870]: Closing database connection -- 00:24:34.381 SQL [25870]: pgsql_close() -- 00:24:34.984 INFO [25870]: COREGRADE is starting... -- 00:24:34.984 INFO [25870]: Version from config: 1.0 -- 00:24:34.984 DEBUG [25870]: Connecting to database... -- 00:24:34.984 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:24:34.984 SQL [25870]: pgsql_db_connect() -- 00:24:34.988 DEBUG [25870]: Database connection successful -- 00:24:34.988 INFO [25870]: _SERVER found -- 00:24:34.988 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 00:24:34.988 INFO [25870]: SERVER_NAME = oameye.works.coregrade.com -- 00:24:34.988 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=u2itj3lcqktuq3jpe027gll4lbnd18uo -- 00:24:34.988 INFO [25870]: QUERY_STRING = /member/viewLogin -- 00:24:34.988 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:24:34.000 INFO [25870]: COREGRADE is stopping... -- 00:24:34.000 DEBUG [25870]: Closing database connection -- 00:24:34.000 SQL [25870]: pgsql_close() -- 00:26:25.346 INFO [26604]: COREGRADE is starting... -- 00:26:25.346 INFO [26604]: Version from config: 1.0 -- 00:26:25.346 DEBUG [26604]: Connecting to database... -- 00:26:25.346 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:26:25.346 SQL [26604]: pgsql_db_connect() -- 00:26:25.350 DEBUG [26604]: Database connection successful -- 00:26:25.350 INFO [26604]: _SERVER found -- 00:26:25.350 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 00:26:25.350 INFO [26604]: SERVER_NAME = oameye.works.coregrade.com -- 00:26:25.350 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=u2itj3lcqktuq3jpe027gll4lbnd18uo -- 00:26:25.350 INFO [26604]: QUERY_STRING = -- 00:26:25.350 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:26:25.387 INFO [26604]: COREGRADE is stopping... -- 00:26:25.387 DEBUG [26604]: Closing database connection -- 00:26:25.387 SQL [26604]: pgsql_close() -- 00:26:25.607 INFO [26604]: COREGRADE is starting... -- 00:26:25.607 INFO [26604]: Version from config: 1.0 -- 00:26:25.607 DEBUG [26604]: Connecting to database... -- 00:26:25.607 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:26:25.607 SQL [26604]: pgsql_db_connect() -- 00:26:25.614 INFO [25879]: COREGRADE is starting... -- 00:26:25.614 INFO [25879]: Version from config: 1.0 -- 00:26:25.614 DEBUG [25879]: Connecting to database... -- 00:26:25.614 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:26:25.614 SQL [25879]: pgsql_db_connect() -- 00:26:25.611 DEBUG [26604]: Database connection successful -- 00:26:25.611 INFO [26604]: _SERVER found -- 00:26:25.611 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 00:26:25.611 INFO [26604]: SERVER_NAME = oameye.works.coregrade.com -- 00:26:25.611 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih -- 00:26:25.611 INFO [26604]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 00:26:25.611 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:26:25.622 INFO [26604]: COREGRADE is stopping... -- 00:26:25.622 DEBUG [26604]: Closing database connection -- 00:26:25.622 SQL [26604]: pgsql_close() -- 00:26:25.618 DEBUG [25879]: Database connection successful -- 00:26:25.618 INFO [25879]: _SERVER found -- 00:26:25.618 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 00:26:25.618 INFO [25879]: SERVER_NAME = oameye.works.coregrade.com -- 00:26:25.618 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih -- 00:26:25.618 INFO [25879]: QUERY_STRING = /assets/img/footer_1.jpg -- 00:26:25.618 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:26:25.630 INFO [25879]: COREGRADE is stopping... -- 00:26:25.630 DEBUG [25879]: Closing database connection -- 00:26:25.630 SQL [25879]: pgsql_close() -- 00:26:27.400 INFO [25879]: COREGRADE is starting... -- 00:26:27.401 INFO [25879]: Version from config: 1.0 -- 00:26:27.401 DEBUG [25879]: Connecting to database... -- 00:26:27.401 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:26:27.401 SQL [25879]: pgsql_db_connect() -- 00:26:27.405 DEBUG [25879]: Database connection successful -- 00:26:27.405 INFO [25879]: _SERVER found -- 00:26:27.405 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 00:26:27.405 INFO [25879]: SERVER_NAME = oameye.works.coregrade.com -- 00:26:27.405 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:26:27.405 INFO [25879]: QUERY_STRING = /welcome/viewLogin -- 00:26:27.405 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:26:27.435 INFO [25879]: COREGRADE is stopping... -- 00:26:27.435 DEBUG [25879]: Closing database connection -- 00:26:27.435 SQL [25879]: pgsql_close() -- 00:26:27.449 INFO [25879]: COREGRADE is starting... -- 00:26:27.449 INFO [25879]: Version from config: 1.0 -- 00:26:27.449 DEBUG [25879]: Connecting to database... -- 00:26:27.449 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:26:27.449 SQL [25879]: pgsql_db_connect() -- 00:26:27.453 DEBUG [25879]: Database connection successful -- 00:26:27.453 INFO [25879]: _SERVER found -- 00:26:27.453 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 00:26:27.453 INFO [25879]: SERVER_NAME = oameye.works.coregrade.com -- 00:26:27.453 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:26:27.453 INFO [25879]: QUERY_STRING = /auth/index -- 00:26:27.453 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:26:27.484 INFO [25879]: COREGRADE is stopping... -- 00:26:27.484 DEBUG [25879]: Closing database connection -- 00:26:27.484 SQL [25879]: pgsql_close() -- 00:26:30.827 INFO [25879]: COREGRADE is starting... -- 00:26:30.828 INFO [25879]: Version from config: 1.0 -- 00:26:30.828 DEBUG [25879]: Connecting to database... -- 00:26:30.828 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:26:30.828 SQL [25879]: pgsql_db_connect() -- 00:26:30.832 DEBUG [25879]: Database connection successful -- 00:26:30.832 INFO [25879]: _SERVER found -- 00:26:30.832 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 00:26:30.832 INFO [25879]: SERVER_NAME = oameye.works.coregrade.com -- 00:26:30.832 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:26:30.832 INFO [25879]: QUERY_STRING = /welcome/viewLogin -- 00:26:30.832 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:26:30.862 INFO [25879]: COREGRADE is stopping... -- 00:26:30.862 DEBUG [25879]: Closing database connection -- 00:26:30.862 SQL [25879]: pgsql_close() -- 00:26:30.890 INFO [25879]: COREGRADE is starting... -- 00:26:30.891 INFO [25879]: Version from config: 1.0 -- 00:26:30.891 DEBUG [25879]: Connecting to database... -- 00:26:30.891 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:26:30.891 SQL [25879]: pgsql_db_connect() -- 00:26:30.895 DEBUG [25879]: Database connection successful -- 00:26:30.895 INFO [25879]: _SERVER found -- 00:26:30.895 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 00:26:30.895 INFO [25879]: SERVER_NAME = oameye.works.coregrade.com -- 00:26:30.895 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:26:30.895 INFO [25879]: QUERY_STRING = /auth/index -- 00:26:30.895 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:26:30.925 INFO [25879]: COREGRADE is stopping... -- 00:26:30.925 DEBUG [25879]: Closing database connection -- 00:26:30.925 SQL [25879]: pgsql_close() -- 00:27:09.211 INFO [27557]: COREGRADE is starting... -- 00:27:09.211 INFO [27557]: Version from config: 1.0 -- 00:27:09.211 DEBUG [27557]: Connecting to database... -- 00:27:09.211 DEBUG [27557]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:09.211 SQL [27557]: pgsql_db_connect() -- 00:27:09.215 DEBUG [27557]: Database connection successful -- 00:27:09.215 INFO [27557]: _SERVER found -- 00:27:09.215 INFO [27557]: REMOTE_ADDR = 192.168.1.13 -- 00:27:09.215 INFO [27557]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:09.215 INFO [27557]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:27:09.215 INFO [27557]: QUERY_STRING = -- 00:27:09.215 INFO [27557]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:09.251 INFO [27557]: COREGRADE is stopping... -- 00:27:09.251 DEBUG [27557]: Closing database connection -- 00:27:09.251 SQL [27557]: pgsql_close() -- 00:27:09.640 INFO [27127]: COREGRADE is starting... -- 00:27:09.640 INFO [27127]: Version from config: 1.0 -- 00:27:09.640 DEBUG [27127]: Connecting to database... -- 00:27:09.640 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:09.640 SQL [27127]: pgsql_db_connect() -- 00:27:09.644 DEBUG [27127]: Database connection successful -- 00:27:09.644 INFO [27127]: _SERVER found -- 00:27:09.644 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 00:27:09.644 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:09.644 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:27:09.644 INFO [27127]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 00:27:09.644 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:09.656 INFO [27127]: COREGRADE is stopping... -- 00:27:09.656 DEBUG [27127]: Closing database connection -- 00:27:09.656 SQL [27127]: pgsql_close() -- 00:27:09.671 INFO [27127]: COREGRADE is starting... -- 00:27:09.671 INFO [27127]: Version from config: 1.0 -- 00:27:09.671 DEBUG [27127]: Connecting to database... -- 00:27:09.671 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:09.671 SQL [27127]: pgsql_db_connect() -- 00:27:09.675 DEBUG [27127]: Database connection successful -- 00:27:09.675 INFO [27127]: _SERVER found -- 00:27:09.675 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 00:27:09.675 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:09.675 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:27:09.675 INFO [27127]: QUERY_STRING = /assets/img/footer_1.jpg -- 00:27:09.675 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:09.686 INFO [27127]: COREGRADE is stopping... -- 00:27:09.686 DEBUG [27127]: Closing database connection -- 00:27:09.686 SQL [27127]: pgsql_close() -- 00:27:12.888 INFO [27127]: COREGRADE is starting... -- 00:27:12.888 INFO [27127]: Version from config: 1.0 -- 00:27:12.888 DEBUG [27127]: Connecting to database... -- 00:27:12.888 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:12.888 SQL [27127]: pgsql_db_connect() -- 00:27:12.892 DEBUG [27127]: Database connection successful -- 00:27:12.892 INFO [27127]: _SERVER found -- 00:27:12.892 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 00:27:12.892 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:12.892 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:27:12.892 INFO [27127]: QUERY_STRING = /welcome/viewLogin -- 00:27:12.892 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:12.922 INFO [27127]: COREGRADE is stopping... -- 00:27:12.922 DEBUG [27127]: Closing database connection -- 00:27:12.922 SQL [27127]: pgsql_close() -- 00:27:12.931 INFO [27127]: COREGRADE is starting... -- 00:27:12.931 INFO [27127]: Version from config: 1.0 -- 00:27:12.931 DEBUG [27127]: Connecting to database... -- 00:27:12.931 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:12.932 SQL [27127]: pgsql_db_connect() -- 00:27:12.936 DEBUG [27127]: Database connection successful -- 00:27:12.936 INFO [27127]: _SERVER found -- 00:27:12.936 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 00:27:12.936 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:12.936 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:27:12.936 INFO [27127]: QUERY_STRING = /auth/index -- 00:27:12.936 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:12.966 INFO [27127]: COREGRADE is stopping... -- 00:27:12.966 DEBUG [27127]: Closing database connection -- 00:27:12.966 SQL [27127]: pgsql_close() -- 00:27:13.987 INFO [27127]: COREGRADE is starting... -- 00:27:13.987 INFO [27127]: Version from config: 1.0 -- 00:27:13.987 DEBUG [27127]: Connecting to database... -- 00:27:13.987 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:13.987 SQL [27127]: pgsql_db_connect() -- 00:27:13.991 DEBUG [27127]: Database connection successful -- 00:27:13.991 INFO [27127]: _SERVER found -- 00:27:13.991 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 00:27:13.991 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:13.991 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:27:13.991 INFO [27127]: QUERY_STRING = /welcome/viewLogin -- 00:27:13.991 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:14.021 INFO [27127]: COREGRADE is stopping... -- 00:27:14.021 DEBUG [27127]: Closing database connection -- 00:27:14.021 SQL [27127]: pgsql_close() -- 00:27:14.050 INFO [27127]: COREGRADE is starting... -- 00:27:14.050 INFO [27127]: Version from config: 1.0 -- 00:27:14.050 DEBUG [27127]: Connecting to database... -- 00:27:14.050 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:14.050 SQL [27127]: pgsql_db_connect() -- 00:27:14.054 DEBUG [27127]: Database connection successful -- 00:27:14.054 INFO [27127]: _SERVER found -- 00:27:14.054 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 00:27:14.054 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:14.054 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:27:14.054 INFO [27127]: QUERY_STRING = /auth/index -- 00:27:14.054 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:14.085 INFO [27127]: COREGRADE is stopping... -- 00:27:14.085 DEBUG [27127]: Closing database connection -- 00:27:14.085 SQL [27127]: pgsql_close() -- 00:27:14.766 INFO [27127]: COREGRADE is starting... -- 00:27:14.766 INFO [27127]: Version from config: 1.0 -- 00:27:14.766 DEBUG [27127]: Connecting to database... -- 00:27:14.766 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:14.766 SQL [27127]: pgsql_db_connect() -- 00:27:14.770 DEBUG [27127]: Database connection successful -- 00:27:14.770 INFO [27127]: _SERVER found -- 00:27:14.770 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 00:27:14.770 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:14.770 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:27:14.770 INFO [27127]: QUERY_STRING = /welcome/viewLogin -- 00:27:14.770 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:14.800 INFO [27127]: COREGRADE is stopping... -- 00:27:14.800 DEBUG [27127]: Closing database connection -- 00:27:14.800 SQL [27127]: pgsql_close() -- 00:27:14.822 INFO [27127]: COREGRADE is starting... -- 00:27:14.822 INFO [27127]: Version from config: 1.0 -- 00:27:14.822 DEBUG [27127]: Connecting to database... -- 00:27:14.822 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:14.822 SQL [27127]: pgsql_db_connect() -- 00:27:14.826 DEBUG [27127]: Database connection successful -- 00:27:14.826 INFO [27127]: _SERVER found -- 00:27:14.826 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 00:27:14.826 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:14.826 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:27:14.826 INFO [27127]: QUERY_STRING = /auth/index -- 00:27:14.826 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:14.857 INFO [27127]: COREGRADE is stopping... -- 00:27:14.857 DEBUG [27127]: Closing database connection -- 00:27:14.857 SQL [27127]: pgsql_close() -- 00:27:15.520 INFO [27127]: COREGRADE is starting... -- 00:27:15.520 INFO [27127]: Version from config: 1.0 -- 00:27:15.520 DEBUG [27127]: Connecting to database... -- 00:27:15.520 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:15.520 SQL [27127]: pgsql_db_connect() -- 00:27:15.524 DEBUG [27127]: Database connection successful -- 00:27:15.524 INFO [27127]: _SERVER found -- 00:27:15.524 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 00:27:15.524 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:15.524 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:27:15.524 INFO [27127]: QUERY_STRING = /welcome/viewLogin -- 00:27:15.524 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:15.554 INFO [27127]: COREGRADE is stopping... -- 00:27:15.554 DEBUG [27127]: Closing database connection -- 00:27:15.554 SQL [27127]: pgsql_close() -- 00:27:15.602 INFO [27127]: COREGRADE is starting... -- 00:27:15.603 INFO [27127]: Version from config: 1.0 -- 00:27:15.603 DEBUG [27127]: Connecting to database... -- 00:27:15.603 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:15.603 SQL [27127]: pgsql_db_connect() -- 00:27:15.606 DEBUG [27127]: Database connection successful -- 00:27:15.606 INFO [27127]: _SERVER found -- 00:27:15.606 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 00:27:15.606 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:15.606 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:27:15.606 INFO [27127]: QUERY_STRING = /auth/index -- 00:27:15.606 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:15.637 INFO [27127]: COREGRADE is stopping... -- 00:27:15.637 DEBUG [27127]: Closing database connection -- 00:27:15.637 SQL [27127]: pgsql_close() -- 00:27:15.867 INFO [27127]: COREGRADE is starting... -- 00:27:15.867 INFO [27127]: Version from config: 1.0 -- 00:27:15.867 DEBUG [27127]: Connecting to database... -- 00:27:15.867 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:15.867 SQL [27127]: pgsql_db_connect() -- 00:27:15.871 DEBUG [27127]: Database connection successful -- 00:27:15.871 INFO [27127]: _SERVER found -- 00:27:15.871 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 00:27:15.871 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:15.871 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:27:15.871 INFO [27127]: QUERY_STRING = /welcome/viewLogin -- 00:27:15.871 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:15.901 INFO [27127]: COREGRADE is stopping... -- 00:27:15.901 DEBUG [27127]: Closing database connection -- 00:27:15.901 SQL [27127]: pgsql_close() -- 00:27:15.913 INFO [27127]: COREGRADE is starting... -- 00:27:15.913 INFO [27127]: Version from config: 1.0 -- 00:27:15.913 DEBUG [27127]: Connecting to database... -- 00:27:15.913 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:15.913 SQL [27127]: pgsql_db_connect() -- 00:27:15.917 DEBUG [27127]: Database connection successful -- 00:27:15.917 INFO [27127]: _SERVER found -- 00:27:15.917 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 00:27:15.917 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:15.917 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:27:15.917 INFO [27127]: QUERY_STRING = /auth/index -- 00:27:15.917 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:15.948 INFO [27127]: COREGRADE is stopping... -- 00:27:15.948 DEBUG [27127]: Closing database connection -- 00:27:15.948 SQL [27127]: pgsql_close() -- 00:27:17.989 INFO [27127]: COREGRADE is starting... -- 00:27:17.989 INFO [27127]: Version from config: 1.0 -- 00:27:17.989 DEBUG [27127]: Connecting to database... -- 00:27:17.989 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:17.989 SQL [27127]: pgsql_db_connect() -- 00:27:17.993 DEBUG [27127]: Database connection successful -- 00:27:17.993 INFO [27127]: _SERVER found -- 00:27:17.993 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 00:27:17.993 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:17.993 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:27:17.993 INFO [27127]: QUERY_STRING = /welcome/viewLogin -- 00:27:17.993 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:18.023 INFO [27127]: COREGRADE is stopping... -- 00:27:18.023 DEBUG [27127]: Closing database connection -- 00:27:18.023 SQL [27127]: pgsql_close() -- 00:27:18.032 INFO [27127]: COREGRADE is starting... -- 00:27:18.032 INFO [27127]: Version from config: 1.0 -- 00:27:18.032 DEBUG [27127]: Connecting to database... -- 00:27:18.032 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:18.032 SQL [27127]: pgsql_db_connect() -- 00:27:18.036 DEBUG [27127]: Database connection successful -- 00:27:18.036 INFO [27127]: _SERVER found -- 00:27:18.036 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 00:27:18.036 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:18.036 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:27:18.036 INFO [27127]: QUERY_STRING = /auth/index -- 00:27:18.036 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:18.067 INFO [27127]: COREGRADE is stopping... -- 00:27:18.067 DEBUG [27127]: Closing database connection -- 00:27:18.067 SQL [27127]: pgsql_close() -- 00:28:12.003 INFO [25864]: COREGRADE is starting... -- 00:28:12.004 INFO [25864]: Version from config: 1.0 -- 00:28:12.004 DEBUG [25864]: Connecting to database... -- 00:28:12.004 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:12.004 SQL [25864]: pgsql_db_connect() -- 00:28:12.008 DEBUG [25864]: Database connection successful -- 00:28:12.008 INFO [25864]: _SERVER found -- 00:28:12.008 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 00:28:12.008 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 00:28:12.008 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih -- 00:28:12.008 INFO [25864]: QUERY_STRING = -- 00:28:12.008 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:28:12.038 INFO [25864]: COREGRADE is stopping... -- 00:28:12.038 DEBUG [25864]: Closing database connection -- 00:28:12.038 SQL [25864]: pgsql_close() -- 00:28:12.058 INFO [25864]: COREGRADE is starting... -- 00:28:12.058 INFO [25864]: Version from config: 1.0 -- 00:28:12.058 DEBUG [25864]: Connecting to database... -- 00:28:12.058 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:12.058 SQL [25864]: pgsql_db_connect() -- 00:28:12.062 DEBUG [25864]: Database connection successful -- 00:28:12.062 INFO [25864]: _SERVER found -- 00:28:12.062 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 00:28:12.062 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 00:28:12.062 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih -- 00:28:12.062 INFO [25864]: QUERY_STRING = /auth/index -- 00:28:12.062 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:28:12.092 INFO [25864]: COREGRADE is stopping... -- 00:28:12.092 DEBUG [25864]: Closing database connection -- 00:28:12.093 SQL [25864]: pgsql_close() -- 00:28:12.309 INFO [25864]: COREGRADE is starting... -- 00:28:12.309 INFO [25864]: Version from config: 1.0 -- 00:28:12.309 DEBUG [25864]: Connecting to database... -- 00:28:12.309 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:12.310 SQL [25864]: pgsql_db_connect() -- 00:28:12.314 DEBUG [25864]: Database connection successful -- 00:28:12.314 INFO [25864]: _SERVER found -- 00:28:12.314 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 00:28:12.314 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 00:28:12.314 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih -- 00:28:12.314 INFO [25864]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 00:28:12.314 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:28:12.325 INFO [25864]: COREGRADE is stopping... -- 00:28:12.325 DEBUG [25864]: Closing database connection -- 00:28:12.325 SQL [25864]: pgsql_close() -- 00:28:12.371 INFO [25864]: COREGRADE is starting... -- 00:28:12.372 INFO [25864]: Version from config: 1.0 -- 00:28:12.372 DEBUG [25864]: Connecting to database... -- 00:28:12.372 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:12.372 SQL [25864]: pgsql_db_connect() -- 00:28:12.376 DEBUG [25864]: Database connection successful -- 00:28:12.376 INFO [25864]: _SERVER found -- 00:28:12.376 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 00:28:12.376 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 00:28:12.376 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih -- 00:28:12.376 INFO [25864]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:28:12.376 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:28:12.387 INFO [25864]: COREGRADE is stopping... -- 00:28:12.387 DEBUG [25864]: Closing database connection -- 00:28:12.387 SQL [25864]: pgsql_close() -- 00:28:16.211 INFO [25864]: COREGRADE is starting... -- 00:28:16.211 INFO [25864]: Version from config: 1.0 -- 00:28:16.211 DEBUG [25864]: Connecting to database... -- 00:28:16.211 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:16.211 SQL [25864]: pgsql_db_connect() -- 00:28:16.215 DEBUG [25864]: Database connection successful -- 00:28:16.215 INFO [25864]: _SERVER found -- 00:28:16.215 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 00:28:16.215 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 00:28:16.215 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih -- 00:28:16.215 INFO [25864]: QUERY_STRING = /auth/logout -- 00:28:16.215 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:28:16.246 INFO [25864]: COREGRADE is stopping... -- 00:28:16.246 DEBUG [25864]: Closing database connection -- 00:28:16.246 SQL [25864]: pgsql_close() -- 00:28:16.423 INFO [25864]: COREGRADE is starting... -- 00:28:16.423 INFO [25864]: Version from config: 1.0 -- 00:28:16.423 DEBUG [25864]: Connecting to database... -- 00:28:16.423 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:16.423 SQL [25864]: pgsql_db_connect() -- 00:28:16.427 DEBUG [25864]: Database connection successful -- 00:28:16.427 INFO [25864]: _SERVER found -- 00:28:16.427 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 00:28:16.427 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 00:28:16.427 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih -- 00:28:16.427 INFO [25864]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:28:16.427 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:28:16.438 INFO [25864]: COREGRADE is stopping... -- 00:28:16.438 DEBUG [25864]: Closing database connection -- 00:28:16.438 SQL [25864]: pgsql_close() -- 00:28:44.015 INFO [25880]: COREGRADE is starting... -- 00:28:44.015 INFO [25880]: Version from config: 1.0 -- 00:28:44.015 DEBUG [25880]: Connecting to database... -- 00:28:44.015 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:44.015 SQL [25880]: pgsql_db_connect() -- 00:28:44.019 DEBUG [25880]: Database connection successful -- 00:28:44.019 INFO [25880]: _SERVER found -- 00:28:44.019 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 00:28:44.019 INFO [25880]: SERVER_NAME = oameye.works.coregrade.com -- 00:28:44.019 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih -- 00:28:44.019 INFO [25880]: QUERY_STRING = /member/page -- 00:28:44.019 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:28:44.057 INFO [25880]: COREGRADE is stopping... -- 00:28:44.057 DEBUG [25880]: Closing database connection -- 00:28:44.057 SQL [25880]: pgsql_close() -- 00:28:48.334 INFO [25880]: COREGRADE is starting... -- 00:28:48.334 INFO [25880]: Version from config: 1.0 -- 00:28:48.334 DEBUG [25880]: Connecting to database... -- 00:28:48.334 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:48.334 SQL [25880]: pgsql_db_connect() -- 00:28:48.338 DEBUG [25880]: Database connection successful -- 00:28:48.338 INFO [25880]: _SERVER found -- 00:28:48.338 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 00:28:48.338 INFO [25880]: SERVER_NAME = oameye.works.coregrade.com -- 00:28:48.338 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih -- 00:28:48.338 INFO [25880]: QUERY_STRING = -- 00:28:48.338 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:28:48.369 INFO [25880]: COREGRADE is stopping... -- 00:28:48.369 DEBUG [25880]: Closing database connection -- 00:28:48.369 SQL [25880]: pgsql_close() -- 00:28:48.555 INFO [25880]: COREGRADE is starting... -- 00:28:48.556 INFO [25880]: Version from config: 1.0 -- 00:28:48.556 DEBUG [25880]: Connecting to database... -- 00:28:48.556 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:48.556 SQL [25880]: pgsql_db_connect() -- 00:28:48.563 INFO [25867]: COREGRADE is starting... -- 00:28:48.563 INFO [25867]: Version from config: 1.0 -- 00:28:48.563 DEBUG [25867]: Connecting to database... -- 00:28:48.563 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:48.563 SQL [25867]: pgsql_db_connect() -- 00:28:48.560 DEBUG [25880]: Database connection successful -- 00:28:48.560 INFO [25880]: _SERVER found -- 00:28:48.560 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 00:28:48.560 INFO [25880]: SERVER_NAME = oameye.works.coregrade.com -- 00:28:48.560 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih -- 00:28:48.560 INFO [25880]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 00:28:48.560 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:28:48.571 INFO [25880]: COREGRADE is stopping... -- 00:28:48.571 DEBUG [25880]: Closing database connection -- 00:28:48.571 SQL [25880]: pgsql_close() -- 00:28:48.568 DEBUG [25867]: Database connection successful -- 00:28:48.568 INFO [25867]: _SERVER found -- 00:28:48.568 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 00:28:48.568 INFO [25867]: SERVER_NAME = oameye.works.coregrade.com -- 00:28:48.568 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih -- 00:28:48.568 INFO [25867]: QUERY_STRING = /assets/img/footer_1.jpg -- 00:28:48.568 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:28:48.580 INFO [25867]: COREGRADE is stopping... -- 00:28:48.580 DEBUG [25867]: Closing database connection -- 00:28:48.580 SQL [25867]: pgsql_close() -- 00:28:50.763 INFO [25867]: COREGRADE is starting... -- 00:28:50.763 INFO [25867]: Version from config: 1.0 -- 00:28:50.763 DEBUG [25867]: Connecting to database... -- 00:28:50.763 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:50.763 SQL [25867]: pgsql_db_connect() -- 00:28:50.767 DEBUG [25867]: Database connection successful -- 00:28:50.767 INFO [25867]: _SERVER found -- 00:28:50.767 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 00:28:50.767 INFO [25867]: SERVER_NAME = oameye.works.coregrade.com -- 00:28:50.767 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:28:50.767 INFO [25867]: QUERY_STRING = /welcome/viewLogin -- 00:28:50.767 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:28:50.798 INFO [25867]: COREGRADE is stopping... -- 00:28:50.798 DEBUG [25867]: Closing database connection -- 00:28:50.798 SQL [25867]: pgsql_close() -- 00:28:50.826 INFO [25867]: COREGRADE is starting... -- 00:28:50.826 INFO [25867]: Version from config: 1.0 -- 00:28:50.826 DEBUG [25867]: Connecting to database... -- 00:28:50.826 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:50.826 SQL [25867]: pgsql_db_connect() -- 00:28:50.830 DEBUG [25867]: Database connection successful -- 00:28:50.830 INFO [25867]: _SERVER found -- 00:28:50.830 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 00:28:50.830 INFO [25867]: SERVER_NAME = oameye.works.coregrade.com -- 00:28:50.830 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:28:50.830 INFO [25867]: QUERY_STRING = /auth/index -- 00:28:50.830 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:28:50.860 INFO [25867]: COREGRADE is stopping... -- 00:28:50.860 DEBUG [25867]: Closing database connection -- 00:28:50.860 SQL [25867]: pgsql_close() -- 00:28:52.438 INFO [25867]: COREGRADE is starting... -- 00:28:52.438 INFO [25867]: Version from config: 1.0 -- 00:28:52.438 DEBUG [25867]: Connecting to database... -- 00:28:52.438 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:52.438 SQL [25867]: pgsql_db_connect() -- 00:28:52.442 DEBUG [25867]: Database connection successful -- 00:28:52.442 INFO [25867]: _SERVER found -- 00:28:52.442 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 00:28:52.442 INFO [25867]: SERVER_NAME = oameye.works.coregrade.com -- 00:28:52.442 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:28:52.442 INFO [25867]: QUERY_STRING = /welcome/viewLogin -- 00:28:52.442 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:28:52.472 INFO [25867]: COREGRADE is stopping... -- 00:28:52.472 DEBUG [25867]: Closing database connection -- 00:28:52.472 SQL [25867]: pgsql_close() -- 00:28:52.486 INFO [25867]: COREGRADE is starting... -- 00:28:52.486 INFO [25867]: Version from config: 1.0 -- 00:28:52.486 DEBUG [25867]: Connecting to database... -- 00:28:52.486 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:52.486 SQL [25867]: pgsql_db_connect() -- 00:28:52.490 DEBUG [25867]: Database connection successful -- 00:28:52.490 INFO [25867]: _SERVER found -- 00:28:52.490 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 00:28:52.490 INFO [25867]: SERVER_NAME = oameye.works.coregrade.com -- 00:28:52.490 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:28:52.490 INFO [25867]: QUERY_STRING = /auth/index -- 00:28:52.490 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:28:52.521 INFO [25867]: COREGRADE is stopping... -- 00:28:52.521 DEBUG [25867]: Closing database connection -- 00:28:52.521 SQL [25867]: pgsql_close() -- 00:29:47.188 INFO [25870]: COREGRADE is starting... -- 00:29:47.188 INFO [25870]: Version from config: 1.0 -- 00:29:47.188 DEBUG [25870]: Connecting to database... -- 00:29:47.188 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:29:47.188 SQL [25870]: pgsql_db_connect() -- 00:29:47.193 DEBUG [25870]: Database connection successful -- 00:29:47.193 INFO [25870]: _SERVER found -- 00:29:47.193 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 00:29:47.193 INFO [25870]: SERVER_NAME = oameye.works.coregrade.com -- 00:29:47.193 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:29:47.193 INFO [25870]: QUERY_STRING = -- 00:29:47.193 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:29:47.224 INFO [25870]: COREGRADE is stopping... -- 00:29:47.224 DEBUG [25870]: Closing database connection -- 00:29:47.224 SQL [25870]: pgsql_close() -- 00:29:47.363 INFO [25870]: COREGRADE is starting... -- 00:29:47.363 INFO [25870]: Version from config: 1.0 -- 00:29:47.363 DEBUG [25870]: Connecting to database... -- 00:29:47.363 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:29:47.363 SQL [25870]: pgsql_db_connect() -- 00:29:47.369 INFO [26604]: COREGRADE is starting... -- 00:29:47.369 INFO [26604]: Version from config: 1.0 -- 00:29:47.369 DEBUG [26604]: Connecting to database... -- 00:29:47.369 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:29:47.369 SQL [26604]: pgsql_db_connect() -- 00:29:47.367 DEBUG [25870]: Database connection successful -- 00:29:47.367 INFO [25870]: _SERVER found -- 00:29:47.367 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 00:29:47.367 INFO [25870]: SERVER_NAME = oameye.works.coregrade.com -- 00:29:47.367 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:29:47.367 INFO [25870]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 00:29:47.367 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:29:47.378 INFO [25870]: COREGRADE is stopping... -- 00:29:47.378 DEBUG [25870]: Closing database connection -- 00:29:47.378 SQL [25870]: pgsql_close() -- 00:29:47.373 DEBUG [26604]: Database connection successful -- 00:29:47.373 INFO [26604]: _SERVER found -- 00:29:47.373 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 00:29:47.373 INFO [26604]: SERVER_NAME = oameye.works.coregrade.com -- 00:29:47.373 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:29:47.373 INFO [26604]: QUERY_STRING = /assets/img/footer_1.jpg -- 00:29:47.373 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:29:47.384 INFO [26604]: COREGRADE is stopping... -- 00:29:47.384 DEBUG [26604]: Closing database connection -- 00:29:47.384 SQL [26604]: pgsql_close() -- 00:29:49.878 INFO [26604]: COREGRADE is starting... -- 00:29:49.878 INFO [26604]: Version from config: 1.0 -- 00:29:49.878 DEBUG [26604]: Connecting to database... -- 00:29:49.878 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:29:49.878 SQL [26604]: pgsql_db_connect() -- 00:29:49.882 DEBUG [26604]: Database connection successful -- 00:29:49.882 INFO [26604]: _SERVER found -- 00:29:49.882 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 00:29:49.882 INFO [26604]: SERVER_NAME = oameye.works.coregrade.com -- 00:29:49.882 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih -- 00:29:49.882 INFO [26604]: QUERY_STRING = /welcome/viewLogin -- 00:29:49.882 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:29:49.912 INFO [26604]: COREGRADE is stopping... -- 00:29:49.912 DEBUG [26604]: Closing database connection -- 00:29:49.912 SQL [26604]: pgsql_close() -- 00:29:49.934 INFO [26604]: COREGRADE is starting... -- 00:29:49.934 INFO [26604]: Version from config: 1.0 -- 00:29:49.934 DEBUG [26604]: Connecting to database... -- 00:29:49.934 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:29:49.934 SQL [26604]: pgsql_db_connect() -- 00:29:49.938 DEBUG [26604]: Database connection successful -- 00:29:49.938 INFO [26604]: _SERVER found -- 00:29:49.938 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 00:29:49.938 INFO [26604]: SERVER_NAME = oameye.works.coregrade.com -- 00:29:49.938 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih -- 00:29:49.938 INFO [26604]: QUERY_STRING = /auth/index -- 00:29:49.938 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:29:49.969 INFO [26604]: COREGRADE is stopping... -- 00:29:49.969 DEBUG [26604]: Closing database connection -- 00:29:49.969 SQL [26604]: pgsql_close() -- 00:29:51.754 INFO [26604]: COREGRADE is starting... -- 00:29:51.754 INFO [26604]: Version from config: 1.0 -- 00:29:51.754 DEBUG [26604]: Connecting to database... -- 00:29:51.754 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:29:51.754 SQL [26604]: pgsql_db_connect() -- 00:29:51.758 DEBUG [26604]: Database connection successful -- 00:29:51.758 INFO [26604]: _SERVER found -- 00:29:51.758 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 00:29:51.758 INFO [26604]: SERVER_NAME = oameye.works.coregrade.com -- 00:29:51.758 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih -- 00:29:51.758 INFO [26604]: QUERY_STRING = /welcome/viewLogin -- 00:29:51.758 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:29:51.788 INFO [26604]: COREGRADE is stopping... -- 00:29:51.788 DEBUG [26604]: Closing database connection -- 00:29:51.788 SQL [26604]: pgsql_close() -- 00:29:51.804 INFO [26604]: COREGRADE is starting... -- 00:29:51.804 INFO [26604]: Version from config: 1.0 -- 00:29:51.804 DEBUG [26604]: Connecting to database... -- 00:29:51.804 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:29:51.804 SQL [26604]: pgsql_db_connect() -- 00:29:51.808 DEBUG [26604]: Database connection successful -- 00:29:51.808 INFO [26604]: _SERVER found -- 00:29:51.808 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 00:29:51.808 INFO [26604]: SERVER_NAME = oameye.works.coregrade.com -- 00:29:51.808 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih -- 00:29:51.808 INFO [26604]: QUERY_STRING = /auth/index -- 00:29:51.808 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:29:51.839 INFO [26604]: COREGRADE is stopping... -- 00:29:51.839 DEBUG [26604]: Closing database connection -- 00:29:51.839 SQL [26604]: pgsql_close() -- 00:29:55.434 INFO [26604]: COREGRADE is starting... -- 00:29:55.434 INFO [26604]: Version from config: 1.0 -- 00:29:55.434 DEBUG [26604]: Connecting to database... -- 00:29:55.434 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:29:55.434 SQL [26604]: pgsql_db_connect() -- 00:29:55.439 DEBUG [26604]: Database connection successful -- 00:29:55.439 INFO [26604]: _SERVER found -- 00:29:55.439 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 00:29:55.439 INFO [26604]: SERVER_NAME = oameye.works.coregrade.com -- 00:29:55.439 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih -- 00:29:55.439 INFO [26604]: QUERY_STRING = -- 00:29:55.439 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:29:55.470 INFO [26604]: COREGRADE is stopping... -- 00:29:55.470 DEBUG [26604]: Closing database connection -- 00:29:55.470 SQL [26604]: pgsql_close() -- 00:29:56.238 INFO [27557]: COREGRADE is starting... -- 00:29:56.239 INFO [27557]: Version from config: 1.0 -- 00:29:56.239 DEBUG [27557]: Connecting to database... -- 00:29:56.239 DEBUG [27557]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:29:56.239 SQL [27557]: pgsql_db_connect() -- 00:29:56.243 DEBUG [27557]: Database connection successful -- 00:29:56.243 INFO [27557]: _SERVER found -- 00:29:56.243 INFO [27557]: REMOTE_ADDR = 192.168.1.13 -- 00:29:56.243 INFO [27557]: SERVER_NAME = oameye.works.coregrade.com -- 00:29:56.243 INFO [27557]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:29:56.243 INFO [27557]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 00:29:56.243 INFO [27557]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:29:56.254 INFO [27557]: COREGRADE is stopping... -- 00:29:56.254 DEBUG [27557]: Closing database connection -- 00:29:56.254 SQL [27557]: pgsql_close() -- 00:29:56.266 INFO [27557]: COREGRADE is starting... -- 00:29:56.266 INFO [27557]: Version from config: 1.0 -- 00:29:56.266 DEBUG [27557]: Connecting to database... -- 00:29:56.266 DEBUG [27557]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:29:56.266 SQL [27557]: pgsql_db_connect() -- 00:29:56.270 DEBUG [27557]: Database connection successful -- 00:29:56.270 INFO [27557]: _SERVER found -- 00:29:56.270 INFO [27557]: REMOTE_ADDR = 192.168.1.13 -- 00:29:56.270 INFO [27557]: SERVER_NAME = oameye.works.coregrade.com -- 00:29:56.270 INFO [27557]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:29:56.270 INFO [27557]: QUERY_STRING = /assets/img/footer_1.jpg -- 00:29:56.270 INFO [27557]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:29:56.281 INFO [27557]: COREGRADE is stopping... -- 00:29:56.281 DEBUG [27557]: Closing database connection -- 00:29:56.281 SQL [27557]: pgsql_close() -- 00:29:59.770 INFO [27557]: COREGRADE is starting... -- 00:29:59.770 INFO [27557]: Version from config: 1.0 -- 00:29:59.770 DEBUG [27557]: Connecting to database... -- 00:29:59.770 DEBUG [27557]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:29:59.770 SQL [27557]: pgsql_db_connect() -- 00:29:59.774 DEBUG [27557]: Database connection successful -- 00:29:59.774 INFO [27557]: _SERVER found -- 00:29:59.774 INFO [27557]: REMOTE_ADDR = 192.168.1.13 -- 00:29:59.774 INFO [27557]: SERVER_NAME = oameye.works.coregrade.com -- 00:29:59.774 INFO [27557]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:29:59.774 INFO [27557]: QUERY_STRING = /welcome/viewLogin -- 00:29:59.774 INFO [27557]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:29:59.804 INFO [27557]: COREGRADE is stopping... -- 00:29:59.804 DEBUG [27557]: Closing database connection -- 00:29:59.804 SQL [27557]: pgsql_close() -- 00:29:59.845 INFO [27557]: COREGRADE is starting... -- 00:29:59.846 INFO [27557]: Version from config: 1.0 -- 00:29:59.846 DEBUG [27557]: Connecting to database... -- 00:29:59.846 DEBUG [27557]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:29:59.846 SQL [27557]: pgsql_db_connect() -- 00:29:59.849 DEBUG [27557]: Database connection successful -- 00:29:59.849 INFO [27557]: _SERVER found -- 00:29:59.849 INFO [27557]: REMOTE_ADDR = 192.168.1.13 -- 00:29:59.849 INFO [27557]: SERVER_NAME = oameye.works.coregrade.com -- 00:29:59.849 INFO [27557]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:29:59.849 INFO [27557]: QUERY_STRING = /auth/index -- 00:29:59.849 INFO [27557]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:29:59.880 INFO [27557]: COREGRADE is stopping... -- 00:29:59.880 DEBUG [27557]: Closing database connection -- 00:29:59.880 SQL [27557]: pgsql_close() -- 00:30:02.267 INFO [27557]: COREGRADE is starting... -- 00:30:02.267 INFO [27557]: Version from config: 1.0 -- 00:30:02.267 DEBUG [27557]: Connecting to database... -- 00:30:02.267 DEBUG [27557]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:30:02.267 SQL [27557]: pgsql_db_connect() -- 00:30:02.271 DEBUG [27557]: Database connection successful -- 00:30:02.271 INFO [27557]: _SERVER found -- 00:30:02.271 INFO [27557]: REMOTE_ADDR = 192.168.1.13 -- 00:30:02.271 INFO [27557]: SERVER_NAME = oameye.works.coregrade.com -- 00:30:02.271 INFO [27557]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:30:02.271 INFO [27557]: QUERY_STRING = /welcome/viewLogin -- 00:30:02.271 INFO [27557]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:30:02.303 INFO [27557]: COREGRADE is stopping... -- 00:30:02.303 DEBUG [27557]: Closing database connection -- 00:30:02.303 SQL [27557]: pgsql_close() -- 00:30:02.313 INFO [27557]: COREGRADE is starting... -- 00:30:02.313 INFO [27557]: Version from config: 1.0 -- 00:30:02.313 DEBUG [27557]: Connecting to database... -- 00:30:02.313 DEBUG [27557]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:30:02.313 SQL [27557]: pgsql_db_connect() -- 00:30:02.318 DEBUG [27557]: Database connection successful -- 00:30:02.318 INFO [27557]: _SERVER found -- 00:30:02.318 INFO [27557]: REMOTE_ADDR = 192.168.1.13 -- 00:30:02.318 INFO [27557]: SERVER_NAME = oameye.works.coregrade.com -- 00:30:02.318 INFO [27557]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:30:02.318 INFO [27557]: QUERY_STRING = /auth/index -- 00:30:02.318 INFO [27557]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:30:02.349 INFO [27557]: COREGRADE is stopping... -- 00:30:02.349 DEBUG [27557]: Closing database connection -- 00:30:02.349 SQL [27557]: pgsql_close() -- 00:30:42.766 INFO [27127]: COREGRADE is starting... -- 00:30:42.766 INFO [27127]: Version from config: 1.0 -- 00:30:42.766 DEBUG [27127]: Connecting to database... -- 00:30:42.766 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:30:42.766 SQL [27127]: pgsql_db_connect() -- 00:30:42.770 DEBUG [27127]: Database connection successful -- 00:30:42.770 INFO [27127]: _SERVER found -- 00:30:42.770 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 00:30:42.770 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 00:30:42.770 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:30:42.770 INFO [27127]: QUERY_STRING = -- 00:30:42.770 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:30:42.802 INFO [27127]: COREGRADE is stopping... -- 00:30:42.802 DEBUG [27127]: Closing database connection -- 00:30:42.802 SQL [27127]: pgsql_close() -- 00:30:42.997 INFO [27127]: COREGRADE is starting... -- 00:30:42.997 INFO [27127]: Version from config: 1.0 -- 00:30:42.997 DEBUG [27127]: Connecting to database... -- 00:30:42.997 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:30:42.997 SQL [27127]: pgsql_db_connect() -- 00:30:43.003 INFO [25864]: COREGRADE is starting... -- 00:30:43.004 INFO [25864]: Version from config: 1.0 -- 00:30:43.004 DEBUG [25864]: Connecting to database... -- 00:30:43.004 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:30:43.004 SQL [25864]: pgsql_db_connect() -- 00:30:43.001 DEBUG [27127]: Database connection successful -- 00:30:43.001 INFO [27127]: _SERVER found -- 00:30:43.001 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 00:30:43.001 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 00:30:43.001 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:30:43.001 INFO [27127]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 00:30:43.001 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:30:43.013 INFO [27127]: COREGRADE is stopping... -- 00:30:43.013 DEBUG [27127]: Closing database connection -- 00:30:43.013 SQL [27127]: pgsql_close() -- 00:30:43.007 DEBUG [25864]: Database connection successful -- 00:30:43.007 INFO [25864]: _SERVER found -- 00:30:43.007 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 00:30:43.008 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 00:30:43.008 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:30:43.008 INFO [25864]: QUERY_STRING = /assets/img/footer_1.jpg -- 00:30:43.008 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:30:43.019 INFO [25864]: COREGRADE is stopping... -- 00:30:43.019 DEBUG [25864]: Closing database connection -- 00:30:43.019 SQL [25864]: pgsql_close() -- 00:30:44.639 INFO [25864]: COREGRADE is starting... -- 00:30:44.640 INFO [25864]: Version from config: 1.0 -- 00:30:44.640 DEBUG [25864]: Connecting to database... -- 00:30:44.640 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:30:44.640 SQL [25864]: pgsql_db_connect() -- 00:30:44.644 DEBUG [25864]: Database connection successful -- 00:30:44.644 INFO [25864]: _SERVER found -- 00:30:44.644 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 00:30:44.644 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 00:30:44.644 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:30:44.644 INFO [25864]: QUERY_STRING = /welcome/viewLogin -- 00:30:44.644 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:30:44.673 INFO [25864]: COREGRADE is stopping... -- 00:30:44.673 DEBUG [25864]: Closing database connection -- 00:30:44.674 SQL [25864]: pgsql_close() -- 00:30:44.690 INFO [25864]: COREGRADE is starting... -- 00:30:44.690 INFO [25864]: Version from config: 1.0 -- 00:30:44.690 DEBUG [25864]: Connecting to database... -- 00:30:44.690 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:30:44.690 SQL [25864]: pgsql_db_connect() -- 00:30:44.694 DEBUG [25864]: Database connection successful -- 00:30:44.694 INFO [25864]: _SERVER found -- 00:30:44.694 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 00:30:44.694 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 00:30:44.694 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:30:44.694 INFO [25864]: QUERY_STRING = /auth/index -- 00:30:44.694 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:30:44.724 INFO [25864]: COREGRADE is stopping... -- 00:30:44.724 DEBUG [25864]: Closing database connection -- 00:30:44.724 SQL [25864]: pgsql_close() -- 00:30:45.465 INFO [25864]: COREGRADE is starting... -- 00:30:45.465 INFO [25864]: Version from config: 1.0 -- 00:30:45.465 DEBUG [25864]: Connecting to database... -- 00:30:45.465 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:30:45.465 SQL [25864]: pgsql_db_connect() -- 00:30:45.469 DEBUG [25864]: Database connection successful -- 00:30:45.469 INFO [25864]: _SERVER found -- 00:30:45.469 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 00:30:45.469 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 00:30:45.469 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:30:45.469 INFO [25864]: QUERY_STRING = /welcome/viewLogin -- 00:30:45.469 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:30:45.498 INFO [25864]: COREGRADE is stopping... -- 00:30:45.499 DEBUG [25864]: Closing database connection -- 00:30:45.499 SQL [25864]: pgsql_close() -- 00:30:45.694 INFO [25864]: COREGRADE is starting... -- 00:30:45.694 INFO [25864]: Version from config: 1.0 -- 00:30:45.694 DEBUG [25864]: Connecting to database... -- 00:30:45.694 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:30:45.694 SQL [25864]: pgsql_db_connect() -- 00:30:45.698 DEBUG [25864]: Database connection successful -- 00:30:45.698 INFO [25864]: _SERVER found -- 00:30:45.698 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 00:30:45.698 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 00:30:45.698 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:30:45.698 INFO [25864]: QUERY_STRING = /auth/index -- 00:30:45.698 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:30:45.729 INFO [25864]: COREGRADE is stopping... -- 00:30:45.729 DEBUG [25864]: Closing database connection -- 00:30:45.729 SQL [25864]: pgsql_close() -- 00:30:48.516 INFO [25864]: COREGRADE is starting... -- 00:30:48.516 INFO [25864]: Version from config: 1.0 -- 00:30:48.516 DEBUG [25864]: Connecting to database... -- 00:30:48.516 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:30:48.516 SQL [25864]: pgsql_db_connect() -- 00:30:48.520 DEBUG [25864]: Database connection successful -- 00:30:48.520 INFO [25864]: _SERVER found -- 00:30:48.520 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 00:30:48.520 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 00:30:48.520 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:30:48.520 INFO [25864]: QUERY_STRING = /welcome/viewLogin -- 00:30:48.520 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:30:48.549 INFO [25864]: COREGRADE is stopping... -- 00:30:48.549 DEBUG [25864]: Closing database connection -- 00:30:48.549 SQL [25864]: pgsql_close() -- 00:30:48.561 INFO [25864]: COREGRADE is starting... -- 00:30:48.561 INFO [25864]: Version from config: 1.0 -- 00:30:48.561 DEBUG [25864]: Connecting to database... -- 00:30:48.561 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:30:48.561 SQL [25864]: pgsql_db_connect() -- 00:30:48.565 DEBUG [25864]: Database connection successful -- 00:30:48.565 INFO [25864]: _SERVER found -- 00:30:48.565 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 00:30:48.565 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 00:30:48.565 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih; _gat_gtag_UA_54829827_2=1 -- 00:30:48.565 INFO [25864]: QUERY_STRING = /auth/index -- 00:30:48.565 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:30:48.596 INFO [25864]: COREGRADE is stopping... -- 00:30:48.596 DEBUG [25864]: Closing database connection -- 00:30:48.596 SQL [25864]: pgsql_close() -- 00:31:44.840 INFO [25880]: COREGRADE is starting... -- 00:31:44.840 INFO [25880]: Version from config: 1.0 -- 00:31:44.840 DEBUG [25880]: Connecting to database... -- 00:31:44.840 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:31:44.840 SQL [25880]: pgsql_db_connect() -- 00:31:44.844 DEBUG [25880]: Database connection successful -- 00:31:44.844 INFO [25880]: _SERVER found -- 00:31:44.844 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 00:31:44.844 INFO [25880]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:31:44.844 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=kk55sfm8qj33vgr855fls1btktti251g -- 00:31:44.844 INFO [25880]: QUERY_STRING = /member -- 00:31:44.844 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:31:44.881 INFO [25880]: COREGRADE is stopping... -- 00:31:44.881 DEBUG [25880]: Closing database connection -- 00:31:44.881 SQL [25880]: pgsql_close() -- 00:31:45.338 INFO [25880]: COREGRADE is starting... -- 00:31:45.339 INFO [25880]: Version from config: 1.0 -- 00:31:45.339 DEBUG [25880]: Connecting to database... -- 00:31:45.339 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:31:45.339 SQL [25880]: pgsql_db_connect() -- 00:31:45.343 DEBUG [25880]: Database connection successful -- 00:31:45.343 INFO [25880]: _SERVER found -- 00:31:45.343 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 00:31:45.343 INFO [25880]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:31:45.343 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=p3uh8nekjk8gt6mgeo8ie61j4e21je0m -- 00:31:45.343 INFO [25880]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:31:45.343 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:31:45.354 INFO [25880]: COREGRADE is stopping... -- 00:31:45.354 DEBUG [25880]: Closing database connection -- 00:31:45.354 SQL [25880]: pgsql_close() -- 00:31:45.364 INFO [25880]: COREGRADE is starting... -- 00:31:45.364 INFO [25880]: Version from config: 1.0 -- 00:31:45.364 DEBUG [25880]: Connecting to database... -- 00:31:45.364 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:31:45.364 SQL [25880]: pgsql_db_connect() -- 00:31:45.368 DEBUG [25880]: Database connection successful -- 00:31:45.368 INFO [25880]: _SERVER found -- 00:31:45.368 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 00:31:45.368 INFO [25880]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:31:45.368 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=p3uh8nekjk8gt6mgeo8ie61j4e21je0m -- 00:31:45.368 INFO [25880]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:31:45.368 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:31:45.379 INFO [25880]: COREGRADE is stopping... -- 00:31:45.379 DEBUG [25880]: Closing database connection -- 00:31:45.379 SQL [25880]: pgsql_close() -- 00:31:51.114 INFO [25867]: COREGRADE is starting... -- 00:31:51.115 INFO [25867]: Version from config: 1.0 -- 00:31:51.115 DEBUG [25867]: Connecting to database... -- 00:31:51.115 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:31:51.115 SQL [25867]: pgsql_db_connect() -- 00:31:51.119 DEBUG [25867]: Database connection successful -- 00:31:51.119 INFO [25867]: _SERVER found -- 00:31:51.119 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 00:31:51.119 INFO [25867]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:31:51.119 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=p3uh8nekjk8gt6mgeo8ie61j4e21je0m -- 00:31:51.119 INFO [25867]: QUERY_STRING = /member/configure -- 00:31:51.119 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:31:51.154 INFO [25867]: COREGRADE is stopping... -- 00:31:51.154 DEBUG [25867]: Closing database connection -- 00:31:51.154 SQL [25867]: pgsql_close() -- 00:31:51.405 INFO [25867]: COREGRADE is starting... -- 00:31:51.406 INFO [25867]: Version from config: 1.0 -- 00:31:51.406 DEBUG [25867]: Connecting to database... -- 00:31:51.406 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:31:51.406 SQL [25867]: pgsql_db_connect() -- 00:31:51.410 DEBUG [25867]: Database connection successful -- 00:31:51.410 INFO [25867]: _SERVER found -- 00:31:51.410 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 00:31:51.410 INFO [25867]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:31:51.410 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=p3uh8nekjk8gt6mgeo8ie61j4e21je0m -- 00:31:51.410 INFO [25867]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:31:51.410 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:31:51.421 INFO [25867]: COREGRADE is stopping... -- 00:31:51.421 DEBUG [25867]: Closing database connection -- 00:31:51.421 SQL [25867]: pgsql_close() -- 00:31:57.360 INFO [25870]: COREGRADE is starting... -- 00:31:57.360 INFO [25870]: Version from config: 1.0 -- 00:31:57.360 DEBUG [25870]: Connecting to database... -- 00:31:57.360 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:31:57.361 SQL [25870]: pgsql_db_connect() -- 00:31:57.365 DEBUG [25870]: Database connection successful -- 00:31:57.365 INFO [25870]: _SERVER found -- 00:31:57.365 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 00:31:57.365 INFO [25870]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:31:57.365 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=p3uh8nekjk8gt6mgeo8ie61j4e21je0m -- 00:31:57.365 INFO [25870]: QUERY_STRING = /member/configure -- 00:31:57.365 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:31:57.400 INFO [25870]: COREGRADE is stopping... -- 00:31:57.400 DEBUG [25870]: Closing database connection -- 00:31:57.400 SQL [25870]: pgsql_close() -- 00:31:57.723 INFO [25870]: COREGRADE is starting... -- 00:31:57.723 INFO [25870]: Version from config: 1.0 -- 00:31:57.723 DEBUG [25870]: Connecting to database... -- 00:31:57.723 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:31:57.724 SQL [25870]: pgsql_db_connect() -- 00:31:57.728 DEBUG [25870]: Database connection successful -- 00:31:57.728 INFO [25870]: _SERVER found -- 00:31:57.728 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 00:31:57.728 INFO [25870]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:31:57.728 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=p3uh8nekjk8gt6mgeo8ie61j4e21je0m -- 00:31:57.728 INFO [25870]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:31:57.728 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:31:57.739 INFO [25870]: COREGRADE is stopping... -- 00:31:57.739 DEBUG [25870]: Closing database connection -- 00:31:57.739 SQL [25870]: pgsql_close() -- 00:31:57.741 INFO [25870]: COREGRADE is starting... -- 00:31:57.742 INFO [25870]: Version from config: 1.0 -- 00:31:57.742 DEBUG [25870]: Connecting to database... -- 00:31:57.742 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:31:57.742 SQL [25870]: pgsql_db_connect() -- 00:31:57.745 DEBUG [25870]: Database connection successful -- 00:31:57.745 INFO [25870]: _SERVER found -- 00:31:57.745 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 00:31:57.746 INFO [25870]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:31:57.746 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=p3uh8nekjk8gt6mgeo8ie61j4e21je0m -- 00:31:57.746 INFO [25870]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:31:57.746 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:31:57.756 INFO [25870]: COREGRADE is stopping... -- 00:31:57.756 DEBUG [25870]: Closing database connection -- 00:31:57.756 SQL [25870]: pgsql_close() -- 00:32:02.447 INFO [25870]: COREGRADE is starting... -- 00:32:02.448 INFO [25870]: Version from config: 1.0 -- 00:32:02.448 DEBUG [25870]: Connecting to database... -- 00:32:02.448 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:32:02.448 SQL [25870]: pgsql_db_connect() -- 00:32:02.452 DEBUG [25870]: Database connection successful -- 00:32:02.452 INFO [25870]: _SERVER found -- 00:32:02.452 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 00:32:02.452 INFO [25870]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:32:02.452 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=p3uh8nekjk8gt6mgeo8ie61j4e21je0m -- 00:32:02.452 INFO [25870]: QUERY_STRING = /member/configure -- 00:32:02.452 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:32:02.487 INFO [25870]: COREGRADE is stopping... -- 00:32:02.487 DEBUG [25870]: Closing database connection -- 00:32:02.487 SQL [25870]: pgsql_close() -- 00:32:02.791 INFO [25870]: COREGRADE is starting... -- 00:32:02.791 INFO [25870]: Version from config: 1.0 -- 00:32:02.791 DEBUG [25870]: Connecting to database... -- 00:32:02.791 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:32:02.791 SQL [25870]: pgsql_db_connect() -- 00:32:02.795 DEBUG [25870]: Database connection successful -- 00:32:02.795 INFO [25870]: _SERVER found -- 00:32:02.795 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 00:32:02.795 INFO [25870]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:32:02.795 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=p3uh8nekjk8gt6mgeo8ie61j4e21je0m -- 00:32:02.795 INFO [25870]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:32:02.795 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:32:02.806 INFO [25870]: COREGRADE is stopping... -- 00:32:02.806 DEBUG [25870]: Closing database connection -- 00:32:02.806 SQL [25870]: pgsql_close() -- 00:32:05.727 INFO [25870]: COREGRADE is starting... -- 00:32:05.727 INFO [25870]: Version from config: 1.0 -- 00:32:05.727 DEBUG [25870]: Connecting to database... -- 00:32:05.727 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:32:05.727 SQL [25870]: pgsql_db_connect() -- 00:32:05.731 DEBUG [25870]: Database connection successful -- 00:32:05.731 INFO [25870]: _SERVER found -- 00:32:05.731 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 00:32:05.731 INFO [25870]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:32:05.731 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=p3uh8nekjk8gt6mgeo8ie61j4e21je0m -- 00:32:05.731 INFO [25870]: QUERY_STRING = /member -- 00:32:05.731 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:32:05.766 INFO [25870]: COREGRADE is stopping... -- 00:32:05.766 DEBUG [25870]: Closing database connection -- 00:32:05.766 SQL [25870]: pgsql_close() -- 00:32:06.014 INFO [25870]: COREGRADE is starting... -- 00:32:06.014 INFO [25870]: Version from config: 1.0 -- 00:32:06.014 DEBUG [25870]: Connecting to database... -- 00:32:06.014 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:32:06.014 SQL [25870]: pgsql_db_connect() -- 00:32:06.018 DEBUG [25870]: Database connection successful -- 00:32:06.018 INFO [25870]: _SERVER found -- 00:32:06.018 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 00:32:06.018 INFO [25870]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:32:06.018 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=p3uh8nekjk8gt6mgeo8ie61j4e21je0m -- 00:32:06.018 INFO [25870]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:32:06.018 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:32:06.029 INFO [25870]: COREGRADE is stopping... -- 00:32:06.029 DEBUG [25870]: Closing database connection -- 00:32:06.029 SQL [25870]: pgsql_close() -- 00:32:07.690 INFO [25870]: COREGRADE is starting... -- 00:32:07.690 INFO [25870]: Version from config: 1.0 -- 00:32:07.690 DEBUG [25870]: Connecting to database... -- 00:32:07.690 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:32:07.690 SQL [25870]: pgsql_db_connect() -- 00:32:07.694 DEBUG [25870]: Database connection successful -- 00:32:07.694 INFO [25870]: _SERVER found -- 00:32:07.694 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 00:32:07.694 INFO [25870]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:32:07.694 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=p3uh8nekjk8gt6mgeo8ie61j4e21je0m -- 00:32:07.694 INFO [25870]: QUERY_STRING = /member/configure -- 00:32:07.694 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:32:07.729 INFO [25870]: COREGRADE is stopping... -- 00:32:07.729 DEBUG [25870]: Closing database connection -- 00:32:07.729 SQL [25870]: pgsql_close() -- 00:32:08.180 INFO [25870]: COREGRADE is starting... -- 00:32:08.181 INFO [25870]: Version from config: 1.0 -- 00:32:08.181 DEBUG [25870]: Connecting to database... -- 00:32:08.181 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:32:08.181 SQL [25870]: pgsql_db_connect() -- 00:32:08.185 DEBUG [25870]: Database connection successful -- 00:32:08.185 INFO [25870]: _SERVER found -- 00:32:08.185 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 00:32:08.185 INFO [25870]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:32:08.185 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=p3uh8nekjk8gt6mgeo8ie61j4e21je0m -- 00:32:08.185 INFO [25870]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:32:08.185 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:32:08.196 INFO [25870]: COREGRADE is stopping... -- 00:32:08.196 DEBUG [25870]: Closing database connection -- 00:32:08.196 SQL [25870]: pgsql_close() -- 00:32:08.198 INFO [26604]: COREGRADE is starting... -- 00:32:08.198 INFO [26604]: Version from config: 1.0 -- 00:32:08.198 DEBUG [26604]: Connecting to database... -- 00:32:08.198 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:32:08.198 SQL [26604]: pgsql_db_connect() -- 00:32:08.202 DEBUG [26604]: Database connection successful -- 00:32:08.202 INFO [26604]: _SERVER found -- 00:32:08.202 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 00:32:08.202 INFO [26604]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:32:08.202 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=p3uh8nekjk8gt6mgeo8ie61j4e21je0m -- 00:32:08.202 INFO [26604]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:32:08.202 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:32:08.213 INFO [26604]: COREGRADE is stopping... -- 00:32:08.213 DEBUG [26604]: Closing database connection -- 00:32:08.213 SQL [26604]: pgsql_close() -- 00:32:10.296 INFO [26604]: COREGRADE is starting... -- 00:32:10.296 INFO [26604]: Version from config: 1.0 -- 00:32:10.296 DEBUG [26604]: Connecting to database... -- 00:32:10.296 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:32:10.296 SQL [26604]: pgsql_db_connect() -- 00:32:10.300 DEBUG [26604]: Database connection successful -- 00:32:10.300 INFO [26604]: _SERVER found -- 00:32:10.300 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 00:32:10.300 INFO [26604]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:32:10.300 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=p3uh8nekjk8gt6mgeo8ie61j4e21je0m -- 00:32:10.300 INFO [26604]: QUERY_STRING = /member -- 00:32:10.300 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:32:10.336 INFO [26604]: COREGRADE is stopping... -- 00:32:10.336 DEBUG [26604]: Closing database connection -- 00:32:10.336 SQL [26604]: pgsql_close() -- 00:32:10.833 INFO [26604]: COREGRADE is starting... -- 00:32:10.833 INFO [26604]: Version from config: 1.0 -- 00:32:10.833 DEBUG [26604]: Connecting to database... -- 00:32:10.833 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:32:10.834 SQL [26604]: pgsql_db_connect() -- 00:32:10.843 INFO [25870]: COREGRADE is starting... -- 00:32:10.843 INFO [25870]: Version from config: 1.0 -- 00:32:10.843 DEBUG [25870]: Connecting to database... -- 00:32:10.843 DEBUG [25870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:32:10.843 SQL [25870]: pgsql_db_connect() -- 00:32:10.838 DEBUG [26604]: Database connection successful -- 00:32:10.838 INFO [26604]: _SERVER found -- 00:32:10.838 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 00:32:10.838 INFO [26604]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:32:10.838 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=p3uh8nekjk8gt6mgeo8ie61j4e21je0m -- 00:32:10.838 INFO [26604]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:32:10.838 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:32:10.849 INFO [26604]: COREGRADE is stopping... -- 00:32:10.849 DEBUG [26604]: Closing database connection -- 00:32:10.849 SQL [26604]: pgsql_close() -- 00:32:10.847 DEBUG [25870]: Database connection successful -- 00:32:10.847 INFO [25870]: _SERVER found -- 00:32:10.847 INFO [25870]: REMOTE_ADDR = 192.168.1.13 -- 00:32:10.847 INFO [25870]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:32:10.847 INFO [25870]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=p3uh8nekjk8gt6mgeo8ie61j4e21je0m -- 00:32:10.847 INFO [25870]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:32:10.847 INFO [25870]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:32:10.858 INFO [25870]: COREGRADE is stopping... -- 00:32:10.858 DEBUG [25870]: Closing database connection -- 00:32:10.858 SQL [25870]: pgsql_close() -- 00:33:23.877 INFO [30682]: COREGRADE is starting... -- 00:33:23.877 INFO [30682]: Version from config: 1.0 -- 00:33:23.877 DEBUG [30682]: Connecting to database... -- 00:33:23.877 DEBUG [30682]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:33:23.878 SQL [30682]: pgsql_db_connect() -- 00:33:23.882 DEBUG [30682]: Database connection successful -- 00:33:23.882 INFO [30682]: _SERVER found -- 00:33:23.882 INFO [30682]: REMOTE_ADDR = 192.168.1.13 -- 00:33:23.882 INFO [30682]: SERVER_NAME = oameye.works.coregrade.com -- 00:33:23.882 INFO [30682]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ioo692hurcilc4bcko6ir20au8gvh4ih -- 00:33:23.882 INFO [30682]: QUERY_STRING = -- 00:33:23.882 INFO [30682]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:33:23.925 INFO [30682]: COREGRADE is stopping... -- 00:33:23.925 DEBUG [30682]: Closing database connection -- 00:33:23.925 SQL [30682]: pgsql_close() -- 00:33:24.366 INFO [30682]: COREGRADE is starting... -- 00:33:24.367 INFO [30682]: Version from config: 1.0 -- 00:33:24.367 DEBUG [30682]: Connecting to database... -- 00:33:24.367 DEBUG [30682]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:33:24.367 SQL [30682]: pgsql_db_connect() -- 00:33:24.373 INFO [25879]: COREGRADE is starting... -- 00:33:24.373 INFO [25879]: Version from config: 1.0 -- 00:33:24.373 DEBUG [25879]: Connecting to database... -- 00:33:24.373 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:33:24.374 SQL [25879]: pgsql_db_connect() -- 00:33:24.371 DEBUG [30682]: Database connection successful -- 00:33:24.371 INFO [30682]: _SERVER found -- 00:33:24.371 INFO [30682]: REMOTE_ADDR = 192.168.1.13 -- 00:33:24.371 INFO [30682]: SERVER_NAME = oameye.works.coregrade.com -- 00:33:24.371 INFO [30682]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=3kp2bqfubetb305rf0ach496j746rn3r -- 00:33:24.371 INFO [30682]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 00:33:24.371 INFO [30682]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:33:24.383 INFO [30682]: COREGRADE is stopping... -- 00:33:24.383 DEBUG [30682]: Closing database connection -- 00:33:24.383 SQL [30682]: pgsql_close() -- 00:33:24.377 DEBUG [25879]: Database connection successful -- 00:33:24.377 INFO [25879]: _SERVER found -- 00:33:24.377 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 00:33:24.377 INFO [25879]: SERVER_NAME = oameye.works.coregrade.com -- 00:33:24.377 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=3kp2bqfubetb305rf0ach496j746rn3r -- 00:33:24.377 INFO [25879]: QUERY_STRING = /assets/img/footer_1.jpg -- 00:33:24.377 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:33:24.389 INFO [25879]: COREGRADE is stopping... -- 00:33:24.389 DEBUG [25879]: Closing database connection -- 00:33:24.389 SQL [25879]: pgsql_close() -- 00:33:27.251 INFO [25879]: COREGRADE is starting... -- 00:33:27.251 INFO [25879]: Version from config: 1.0 -- 00:33:27.251 DEBUG [25879]: Connecting to database... -- 00:33:27.251 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:33:27.251 SQL [25879]: pgsql_db_connect() -- 00:33:27.255 DEBUG [25879]: Database connection successful -- 00:33:27.255 INFO [25879]: _SERVER found -- 00:33:27.255 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 00:33:27.255 INFO [25879]: SERVER_NAME = oameye.works.coregrade.com -- 00:33:27.255 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=3kp2bqfubetb305rf0ach496j746rn3r; _gat_gtag_UA_54829827_2=1 -- 00:33:27.255 INFO [25879]: QUERY_STRING = /welcome/viewLogin -- 00:33:27.255 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:33:27.285 INFO [25879]: COREGRADE is stopping... -- 00:33:27.285 DEBUG [25879]: Closing database connection -- 00:33:27.285 SQL [25879]: pgsql_close() -- 00:33:27.297 INFO [25879]: COREGRADE is starting... -- 00:33:27.298 INFO [25879]: Version from config: 1.0 -- 00:33:27.298 DEBUG [25879]: Connecting to database... -- 00:33:27.298 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:33:27.298 SQL [25879]: pgsql_db_connect() -- 00:33:27.301 DEBUG [25879]: Database connection successful -- 00:33:27.301 INFO [25879]: _SERVER found -- 00:33:27.301 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 00:33:27.301 INFO [25879]: SERVER_NAME = oameye.works.coregrade.com -- 00:33:27.301 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=3kp2bqfubetb305rf0ach496j746rn3r; _gat_gtag_UA_54829827_2=1 -- 00:33:27.301 INFO [25879]: QUERY_STRING = /auth/index -- 00:33:27.301 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:33:27.332 INFO [25879]: COREGRADE is stopping... -- 00:33:27.332 DEBUG [25879]: Closing database connection -- 00:33:27.332 SQL [25879]: pgsql_close() -- 00:33:29.508 INFO [25879]: COREGRADE is starting... -- 00:33:29.508 INFO [25879]: Version from config: 1.0 -- 00:33:29.508 DEBUG [25879]: Connecting to database... -- 00:33:29.508 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:33:29.508 SQL [25879]: pgsql_db_connect() -- 00:33:29.512 DEBUG [25879]: Database connection successful -- 00:33:29.512 INFO [25879]: _SERVER found -- 00:33:29.512 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 00:33:29.512 INFO [25879]: SERVER_NAME = oameye.works.coregrade.com -- 00:33:29.512 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=3kp2bqfubetb305rf0ach496j746rn3r; _gat_gtag_UA_54829827_2=1 -- 00:33:29.512 INFO [25879]: QUERY_STRING = /welcome/viewLogin -- 00:33:29.512 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:33:29.542 INFO [25879]: COREGRADE is stopping... -- 00:33:29.542 DEBUG [25879]: Closing database connection -- 00:33:29.542 SQL [25879]: pgsql_close() -- 00:33:29.555 INFO [25879]: COREGRADE is starting... -- 00:33:29.555 INFO [25879]: Version from config: 1.0 -- 00:33:29.555 DEBUG [25879]: Connecting to database... -- 00:33:29.555 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:33:29.555 SQL [25879]: pgsql_db_connect() -- 00:33:29.559 DEBUG [25879]: Database connection successful -- 00:33:29.559 INFO [25879]: _SERVER found -- 00:33:29.559 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 00:33:29.559 INFO [25879]: SERVER_NAME = oameye.works.coregrade.com -- 00:33:29.559 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=3kp2bqfubetb305rf0ach496j746rn3r; _gat_gtag_UA_54829827_2=1 -- 00:33:29.559 INFO [25879]: QUERY_STRING = /auth/index -- 00:33:29.559 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:33:29.589 INFO [25879]: COREGRADE is stopping... -- 00:33:29.589 DEBUG [25879]: Closing database connection -- 00:33:29.589 SQL [25879]: pgsql_close() -- 00:33:30.578 INFO [25879]: COREGRADE is starting... -- 00:33:30.578 INFO [25879]: Version from config: 1.0 -- 00:33:30.578 DEBUG [25879]: Connecting to database... -- 00:33:30.578 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:33:30.578 SQL [25879]: pgsql_db_connect() -- 00:33:30.582 DEBUG [25879]: Database connection successful -- 00:33:30.582 INFO [25879]: _SERVER found -- 00:33:30.582 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 00:33:30.582 INFO [25879]: SERVER_NAME = oameye.works.coregrade.com -- 00:33:30.582 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=3kp2bqfubetb305rf0ach496j746rn3r; _gat_gtag_UA_54829827_2=1 -- 00:33:30.582 INFO [25879]: QUERY_STRING = /welcome/viewLogin -- 00:33:30.582 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:33:30.612 INFO [25879]: COREGRADE is stopping... -- 00:33:30.612 DEBUG [25879]: Closing database connection -- 00:33:30.612 SQL [25879]: pgsql_close() -- 00:33:30.670 INFO [25879]: COREGRADE is starting... -- 00:33:30.670 INFO [25879]: Version from config: 1.0 -- 00:33:30.670 DEBUG [25879]: Connecting to database... -- 00:33:30.670 DEBUG [25879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:33:30.670 SQL [25879]: pgsql_db_connect() -- 00:33:30.674 DEBUG [25879]: Database connection successful -- 00:33:30.674 INFO [25879]: _SERVER found -- 00:33:30.674 INFO [25879]: REMOTE_ADDR = 192.168.1.13 -- 00:33:30.674 INFO [25879]: SERVER_NAME = oameye.works.coregrade.com -- 00:33:30.674 INFO [25879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=3kp2bqfubetb305rf0ach496j746rn3r; _gat_gtag_UA_54829827_2=1 -- 00:33:30.674 INFO [25879]: QUERY_STRING = /auth/index -- 00:33:30.674 INFO [25879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:33:30.705 INFO [25879]: COREGRADE is stopping... -- 00:33:30.705 DEBUG [25879]: Closing database connection -- 00:33:30.705 SQL [25879]: pgsql_close() -- 00:34:28.353 INFO [25865]: COREGRADE is starting... -- 00:34:28.354 INFO [25865]: Version from config: 1.0 -- 00:34:28.354 DEBUG [25865]: Connecting to database... -- 00:34:28.354 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:28.354 SQL [25865]: pgsql_db_connect() -- 00:34:28.358 DEBUG [25865]: Database connection successful -- 00:34:28.358 INFO [25865]: _SERVER found -- 00:34:28.358 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 00:34:28.358 INFO [25865]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:28.358 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=3kp2bqfubetb305rf0ach496j746rn3r -- 00:34:28.358 INFO [25865]: QUERY_STRING = -- 00:34:28.358 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:28.392 INFO [25865]: COREGRADE is stopping... -- 00:34:28.392 DEBUG [25865]: Closing database connection -- 00:34:28.392 SQL [25865]: pgsql_close() -- 00:34:28.513 INFO [25865]: COREGRADE is starting... -- 00:34:28.513 INFO [25865]: Version from config: 1.0 -- 00:34:28.513 DEBUG [25865]: Connecting to database... -- 00:34:28.513 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:28.513 SQL [25865]: pgsql_db_connect() -- 00:34:28.518 INFO [27557]: COREGRADE is starting... -- 00:34:28.519 INFO [27557]: Version from config: 1.0 -- 00:34:28.519 DEBUG [27557]: Connecting to database... -- 00:34:28.519 DEBUG [27557]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:28.519 SQL [27557]: pgsql_db_connect() -- 00:34:28.517 DEBUG [25865]: Database connection successful -- 00:34:28.517 INFO [25865]: _SERVER found -- 00:34:28.517 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 00:34:28.517 INFO [25865]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:28.517 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=3kp2bqfubetb305rf0ach496j746rn3r -- 00:34:28.517 INFO [25865]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 00:34:28.517 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:28.528 INFO [25865]: COREGRADE is stopping... -- 00:34:28.528 DEBUG [25865]: Closing database connection -- 00:34:28.528 SQL [25865]: pgsql_close() -- 00:34:28.523 DEBUG [27557]: Database connection successful -- 00:34:28.523 INFO [27557]: _SERVER found -- 00:34:28.523 INFO [27557]: REMOTE_ADDR = 192.168.1.13 -- 00:34:28.523 INFO [27557]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:28.523 INFO [27557]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=3kp2bqfubetb305rf0ach496j746rn3r -- 00:34:28.523 INFO [27557]: QUERY_STRING = /assets/img/footer_1.jpg -- 00:34:28.523 INFO [27557]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:28.534 INFO [27557]: COREGRADE is stopping... -- 00:34:28.534 DEBUG [27557]: Closing database connection -- 00:34:28.534 SQL [27557]: pgsql_close() -- 00:34:30.772 INFO [27557]: COREGRADE is starting... -- 00:34:30.772 INFO [27557]: Version from config: 1.0 -- 00:34:30.772 DEBUG [27557]: Connecting to database... -- 00:34:30.772 DEBUG [27557]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:30.772 SQL [27557]: pgsql_db_connect() -- 00:34:30.785 INFO [25865]: COREGRADE is starting... -- 00:34:30.785 INFO [25865]: Version from config: 1.0 -- 00:34:30.785 DEBUG [25865]: Connecting to database... -- 00:34:30.785 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:30.785 SQL [25865]: pgsql_db_connect() -- 00:34:30.776 DEBUG [27557]: Database connection successful -- 00:34:30.776 INFO [27557]: _SERVER found -- 00:34:30.776 INFO [27557]: REMOTE_ADDR = 192.168.1.13 -- 00:34:30.776 INFO [27557]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:30.776 INFO [27557]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=3kp2bqfubetb305rf0ach496j746rn3r; _gat_gtag_UA_54829827_2=1 -- 00:34:30.776 INFO [27557]: QUERY_STRING = /welcome/viewLogin -- 00:34:30.776 INFO [27557]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:30.806 INFO [27557]: COREGRADE is stopping... -- 00:34:30.806 DEBUG [27557]: Closing database connection -- 00:34:30.806 SQL [27557]: pgsql_close() -- 00:34:30.815 INFO [27557]: COREGRADE is starting... -- 00:34:30.816 INFO [27557]: Version from config: 1.0 -- 00:34:30.816 DEBUG [27557]: Connecting to database... -- 00:34:30.816 DEBUG [27557]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:30.816 SQL [27557]: pgsql_db_connect() -- 00:34:30.789 DEBUG [25865]: Database connection successful -- 00:34:30.789 INFO [25865]: _SERVER found -- 00:34:30.789 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 00:34:30.789 INFO [25865]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:30.789 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=3kp2bqfubetb305rf0ach496j746rn3r; _gat_gtag_UA_54829827_2=1 -- 00:34:30.789 INFO [25865]: QUERY_STRING = /auth -- 00:34:30.789 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:30.822 INFO [25865]: COREGRADE is stopping... -- 00:34:30.822 DEBUG [25865]: Closing database connection -- 00:34:30.822 SQL [25865]: pgsql_close() -- 00:34:30.819 DEBUG [27557]: Database connection successful -- 00:34:30.819 INFO [27557]: _SERVER found -- 00:34:30.819 INFO [27557]: REMOTE_ADDR = 192.168.1.13 -- 00:34:30.819 INFO [27557]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:30.819 INFO [27557]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=3kp2bqfubetb305rf0ach496j746rn3r; _gat_gtag_UA_54829827_2=1 -- 00:34:30.819 INFO [27557]: QUERY_STRING = /auth/index -- 00:34:30.819 INFO [27557]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:30.850 INFO [27557]: COREGRADE is stopping... -- 00:34:30.850 DEBUG [27557]: Closing database connection -- 00:34:30.850 SQL [27557]: pgsql_close() -- 00:34:30.968 INFO [25865]: COREGRADE is starting... -- 00:34:30.968 INFO [25865]: Version from config: 1.0 -- 00:34:30.968 DEBUG [25865]: Connecting to database... -- 00:34:30.968 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:30.968 SQL [25865]: pgsql_db_connect() -- 00:34:30.972 DEBUG [25865]: Database connection successful -- 00:34:30.972 INFO [25865]: _SERVER found -- 00:34:30.972 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 00:34:30.972 INFO [25865]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:30.972 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=3kp2bqfubetb305rf0ach496j746rn3r; _gat_gtag_UA_54829827_2=1 -- 00:34:30.972 INFO [25865]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 00:34:30.972 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:30.983 INFO [25865]: COREGRADE is stopping... -- 00:34:30.984 DEBUG [25865]: Closing database connection -- 00:34:30.984 SQL [25865]: pgsql_close() -- 00:34:31.021 INFO [25865]: COREGRADE is starting... -- 00:34:31.021 INFO [25865]: Version from config: 1.0 -- 00:34:31.021 DEBUG [25865]: Connecting to database... -- 00:34:31.021 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:31.021 SQL [25865]: pgsql_db_connect() -- 00:34:31.025 DEBUG [25865]: Database connection successful -- 00:34:31.025 INFO [25865]: _SERVER found -- 00:34:31.025 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 00:34:31.025 INFO [25865]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:31.025 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=3kp2bqfubetb305rf0ach496j746rn3r; _gat_gtag_UA_54829827_2=1 -- 00:34:31.025 INFO [25865]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:34:31.025 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:31.036 INFO [25865]: COREGRADE is stopping... -- 00:34:31.036 DEBUG [25865]: Closing database connection -- 00:34:31.036 SQL [25865]: pgsql_close() -- 00:34:33.605 INFO [25865]: COREGRADE is starting... -- 00:34:33.606 INFO [25865]: Version from config: 1.0 -- 00:34:33.606 DEBUG [25865]: Connecting to database... -- 00:34:33.606 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:33.606 SQL [25865]: pgsql_db_connect() -- 00:34:33.610 DEBUG [25865]: Database connection successful -- 00:34:33.610 INFO [25865]: _SERVER found -- 00:34:33.610 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 00:34:33.610 INFO [25865]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:33.610 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=3kp2bqfubetb305rf0ach496j746rn3r; _gat_gtag_UA_54829827_2=1 -- 00:34:33.610 INFO [25865]: QUERY_STRING = -- 00:34:33.610 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:33.643 INFO [25865]: COREGRADE is stopping... -- 00:34:33.643 DEBUG [25865]: Closing database connection -- 00:34:33.643 SQL [25865]: pgsql_close() -- 00:34:36.841 INFO [25865]: COREGRADE is starting... -- 00:34:36.841 INFO [25865]: Version from config: 1.0 -- 00:34:36.841 DEBUG [25865]: Connecting to database... -- 00:34:36.841 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:36.841 SQL [25865]: pgsql_db_connect() -- 00:34:36.857 INFO [27127]: COREGRADE is starting... -- 00:34:36.857 INFO [27127]: Version from config: 1.0 -- 00:34:36.857 DEBUG [27127]: Connecting to database... -- 00:34:36.857 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:36.857 SQL [27127]: pgsql_db_connect() -- 00:34:36.845 DEBUG [25865]: Database connection successful -- 00:34:36.845 INFO [25865]: _SERVER found -- 00:34:36.845 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 00:34:36.845 INFO [25865]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:36.845 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=3kp2bqfubetb305rf0ach496j746rn3r; _gat_gtag_UA_54829827_2=1 -- 00:34:36.845 INFO [25865]: QUERY_STRING = /welcome/viewLogin -- 00:34:36.845 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:36.878 INFO [25865]: COREGRADE is stopping... -- 00:34:36.878 DEBUG [25865]: Closing database connection -- 00:34:36.878 SQL [25865]: pgsql_close() -- 00:34:36.888 INFO [25865]: COREGRADE is starting... -- 00:34:36.889 INFO [25865]: Version from config: 1.0 -- 00:34:36.889 DEBUG [25865]: Connecting to database... -- 00:34:36.889 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:36.889 SQL [25865]: pgsql_db_connect() -- 00:34:36.861 DEBUG [27127]: Database connection successful -- 00:34:36.861 INFO [27127]: _SERVER found -- 00:34:36.861 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 00:34:36.861 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:36.861 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=3kp2bqfubetb305rf0ach496j746rn3r; _gat_gtag_UA_54829827_2=1 -- 00:34:36.861 INFO [27127]: QUERY_STRING = /auth -- 00:34:36.861 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:36.893 INFO [27127]: COREGRADE is stopping... -- 00:34:36.893 DEBUG [27127]: Closing database connection -- 00:34:36.893 SQL [27127]: pgsql_close() -- 00:34:36.893 DEBUG [25865]: Database connection successful -- 00:34:36.893 INFO [25865]: _SERVER found -- 00:34:36.893 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 00:34:36.893 INFO [25865]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:36.893 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=3kp2bqfubetb305rf0ach496j746rn3r; _gat_gtag_UA_54829827_2=1 -- 00:34:36.893 INFO [25865]: QUERY_STRING = /auth/index -- 00:34:36.893 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:36.926 INFO [25865]: COREGRADE is stopping... -- 00:34:36.926 DEBUG [25865]: Closing database connection -- 00:34:36.926 SQL [25865]: pgsql_close() -- 00:34:37.399 INFO [25865]: COREGRADE is starting... -- 00:34:37.399 INFO [25865]: Version from config: 1.0 -- 00:34:37.399 DEBUG [25865]: Connecting to database... -- 00:34:37.399 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:37.399 SQL [25865]: pgsql_db_connect() -- 00:34:37.403 DEBUG [25865]: Database connection successful -- 00:34:37.403 INFO [25865]: _SERVER found -- 00:34:37.403 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 00:34:37.403 INFO [25865]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:37.403 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=3kp2bqfubetb305rf0ach496j746rn3r; _gat_gtag_UA_54829827_2=1 -- 00:34:37.403 INFO [25865]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 00:34:37.403 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:37.415 INFO [25865]: COREGRADE is stopping... -- 00:34:37.415 DEBUG [25865]: Closing database connection -- 00:34:37.415 SQL [25865]: pgsql_close() -- 00:34:37.416 INFO [27127]: COREGRADE is starting... -- 00:34:37.417 INFO [27127]: Version from config: 1.0 -- 00:34:37.417 DEBUG [27127]: Connecting to database... -- 00:34:37.417 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:37.417 SQL [27127]: pgsql_db_connect() -- 00:34:37.421 DEBUG [27127]: Database connection successful -- 00:34:37.421 INFO [27127]: _SERVER found -- 00:34:37.421 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 00:34:37.421 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:37.421 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=3kp2bqfubetb305rf0ach496j746rn3r; _gat_gtag_UA_54829827_2=1 -- 00:34:37.421 INFO [27127]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:34:37.421 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:37.432 INFO [27127]: COREGRADE is stopping... -- 00:34:37.432 DEBUG [27127]: Closing database connection -- 00:34:37.432 SQL [27127]: pgsql_close() -- 00:34:39.698 INFO [27127]: COREGRADE is starting... -- 00:34:39.699 INFO [27127]: Version from config: 1.0 -- 00:34:39.699 DEBUG [27127]: Connecting to database... -- 00:34:39.699 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:39.699 SQL [27127]: pgsql_db_connect() -- 00:34:39.703 DEBUG [27127]: Database connection successful -- 00:34:39.703 INFO [27127]: _SERVER found -- 00:34:39.703 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 00:34:39.703 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:39.703 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=3kp2bqfubetb305rf0ach496j746rn3r; _gat_gtag_UA_54829827_2=1 -- 00:34:39.703 INFO [27127]: QUERY_STRING = -- 00:34:39.703 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:39.734 INFO [27127]: COREGRADE is stopping... -- 00:34:39.734 DEBUG [27127]: Closing database connection -- 00:34:39.734 SQL [27127]: pgsql_close() -- 00:34:41.913 INFO [27127]: COREGRADE is starting... -- 00:34:41.914 INFO [27127]: Version from config: 1.0 -- 00:34:41.914 DEBUG [27127]: Connecting to database... -- 00:34:41.914 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:41.914 SQL [27127]: pgsql_db_connect() -- 00:34:41.921 INFO [25865]: COREGRADE is starting... -- 00:34:41.921 INFO [25865]: Version from config: 1.0 -- 00:34:41.921 DEBUG [25865]: Connecting to database... -- 00:34:41.921 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:41.921 SQL [25865]: pgsql_db_connect() -- 00:34:41.918 DEBUG [27127]: Database connection successful -- 00:34:41.918 INFO [27127]: _SERVER found -- 00:34:41.918 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 00:34:41.918 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:41.918 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=3kp2bqfubetb305rf0ach496j746rn3r; _gat_gtag_UA_54829827_2=1 -- 00:34:41.918 INFO [27127]: QUERY_STRING = /welcome/viewLogin -- 00:34:41.918 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:41.947 INFO [27127]: COREGRADE is stopping... -- 00:34:41.947 DEBUG [27127]: Closing database connection -- 00:34:41.947 SQL [27127]: pgsql_close() -- 00:34:41.925 DEBUG [25865]: Database connection successful -- 00:34:41.925 INFO [25865]: _SERVER found -- 00:34:41.925 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 00:34:41.925 INFO [25865]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:41.925 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=3kp2bqfubetb305rf0ach496j746rn3r; _gat_gtag_UA_54829827_2=1 -- 00:34:41.925 INFO [25865]: QUERY_STRING = /auth -- 00:34:41.925 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:41.958 INFO [25865]: COREGRADE is stopping... -- 00:34:41.958 DEBUG [25865]: Closing database connection -- 00:34:41.959 SQL [25865]: pgsql_close() -- 00:34:42.001 INFO [25865]: COREGRADE is starting... -- 00:34:42.001 INFO [25865]: Version from config: 1.0 -- 00:34:42.001 DEBUG [25865]: Connecting to database... -- 00:34:42.001 DEBUG [25865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:42.001 SQL [25865]: pgsql_db_connect() -- 00:34:42.005 DEBUG [25865]: Database connection successful -- 00:34:42.005 INFO [25865]: _SERVER found -- 00:34:42.005 INFO [25865]: REMOTE_ADDR = 192.168.1.13 -- 00:34:42.005 INFO [25865]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:42.005 INFO [25865]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=3kp2bqfubetb305rf0ach496j746rn3r; _gat_gtag_UA_54829827_2=1 -- 00:34:42.005 INFO [25865]: QUERY_STRING = /auth/index -- 00:34:42.005 INFO [25865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:42.038 INFO [25865]: COREGRADE is stopping... -- 00:34:42.038 DEBUG [25865]: Closing database connection -- 00:34:42.038 SQL [25865]: pgsql_close() -- 00:34:42.128 INFO [27127]: COREGRADE is starting... -- 00:34:42.129 INFO [27127]: Version from config: 1.0 -- 00:34:42.129 DEBUG [27127]: Connecting to database... -- 00:34:42.129 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:42.129 SQL [27127]: pgsql_db_connect() -- 00:34:42.133 DEBUG [27127]: Database connection successful -- 00:34:42.133 INFO [27127]: _SERVER found -- 00:34:42.133 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 00:34:42.133 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:42.133 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=3kp2bqfubetb305rf0ach496j746rn3r; _gat_gtag_UA_54829827_2=1 -- 00:34:42.133 INFO [27127]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 00:34:42.133 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:42.144 INFO [27127]: COREGRADE is stopping... -- 00:34:42.144 DEBUG [27127]: Closing database connection -- 00:34:42.144 SQL [27127]: pgsql_close() -- 00:34:42.267 INFO [27127]: COREGRADE is starting... -- 00:34:42.267 INFO [27127]: Version from config: 1.0 -- 00:34:42.267 DEBUG [27127]: Connecting to database... -- 00:34:42.267 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:42.267 SQL [27127]: pgsql_db_connect() -- 00:34:42.271 DEBUG [27127]: Database connection successful -- 00:34:42.271 INFO [27127]: _SERVER found -- 00:34:42.271 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 00:34:42.271 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:42.271 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=3kp2bqfubetb305rf0ach496j746rn3r; _gat_gtag_UA_54829827_2=1 -- 00:34:42.271 INFO [27127]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:34:42.271 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:42.282 INFO [27127]: COREGRADE is stopping... -- 00:34:42.282 DEBUG [27127]: Closing database connection -- 00:34:42.282 SQL [27127]: pgsql_close() -- 00:34:47.140 INFO [27127]: COREGRADE is starting... -- 00:34:47.140 INFO [27127]: Version from config: 1.0 -- 00:34:47.140 DEBUG [27127]: Connecting to database... -- 00:34:47.140 DEBUG [27127]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:47.140 SQL [27127]: pgsql_db_connect() -- 00:34:47.144 DEBUG [27127]: Database connection successful -- 00:34:47.144 INFO [27127]: _SERVER found -- 00:34:47.144 INFO [27127]: REMOTE_ADDR = 192.168.1.13 -- 00:34:47.144 INFO [27127]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:47.144 INFO [27127]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=3kp2bqfubetb305rf0ach496j746rn3r; _gat_gtag_UA_54829827_2=1 -- 00:34:47.144 INFO [27127]: QUERY_STRING = -- 00:34:47.144 INFO [27127]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:47.175 INFO [27127]: COREGRADE is stopping... -- 00:34:47.175 DEBUG [27127]: Closing database connection -- 00:34:47.175 SQL [27127]: pgsql_close() -- 00:36:00.647 INFO [25864]: COREGRADE is starting... -- 00:36:00.648 INFO [25864]: Version from config: 1.0 -- 00:36:00.648 DEBUG [25864]: Connecting to database... -- 00:36:00.648 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:36:00.648 SQL [25864]: pgsql_db_connect() -- 00:36:00.652 DEBUG [25864]: Database connection successful -- 00:36:00.652 INFO [25864]: _SERVER found -- 00:36:00.652 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 00:36:00.652 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 00:36:00.652 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=3kp2bqfubetb305rf0ach496j746rn3r -- 00:36:00.652 INFO [25864]: QUERY_STRING = -- 00:36:00.652 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:36:00.683 INFO [25864]: COREGRADE is stopping... -- 00:36:00.683 DEBUG [25864]: Closing database connection -- 00:36:00.683 SQL [25864]: pgsql_close() -- 00:36:00.923 INFO [25864]: COREGRADE is starting... -- 00:36:00.923 INFO [25864]: Version from config: 1.0 -- 00:36:00.923 DEBUG [25864]: Connecting to database... -- 00:36:00.923 DEBUG [25864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:36:00.923 SQL [25864]: pgsql_db_connect() -- 00:36:00.929 INFO [25880]: COREGRADE is starting... -- 00:36:00.929 INFO [25880]: Version from config: 1.0 -- 00:36:00.929 DEBUG [25880]: Connecting to database... -- 00:36:00.929 DEBUG [25880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:36:00.929 SQL [25880]: pgsql_db_connect() -- 00:36:00.927 DEBUG [25864]: Database connection successful -- 00:36:00.927 INFO [25864]: _SERVER found -- 00:36:00.927 INFO [25864]: REMOTE_ADDR = 192.168.1.13 -- 00:36:00.927 INFO [25864]: SERVER_NAME = oameye.works.coregrade.com -- 00:36:00.927 INFO [25864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=3kp2bqfubetb305rf0ach496j746rn3r -- 00:36:00.927 INFO [25864]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 00:36:00.927 INFO [25864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:36:00.938 INFO [25864]: COREGRADE is stopping... -- 00:36:00.938 DEBUG [25864]: Closing database connection -- 00:36:00.938 SQL [25864]: pgsql_close() -- 00:36:00.933 DEBUG [25880]: Database connection successful -- 00:36:00.933 INFO [25880]: _SERVER found -- 00:36:00.933 INFO [25880]: REMOTE_ADDR = 192.168.1.13 -- 00:36:00.933 INFO [25880]: SERVER_NAME = oameye.works.coregrade.com -- 00:36:00.933 INFO [25880]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=3kp2bqfubetb305rf0ach496j746rn3r -- 00:36:00.933 INFO [25880]: QUERY_STRING = /assets/img/footer_1.jpg -- 00:36:00.933 INFO [25880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:36:00.944 INFO [25880]: COREGRADE is stopping... -- 00:36:00.944 DEBUG [25880]: Closing database connection -- 00:36:00.944 SQL [25880]: pgsql_close() -- 00:36:07.715 INFO [25867]: COREGRADE is starting... -- 00:36:07.715 INFO [25867]: Version from config: 1.0 -- 00:36:07.715 DEBUG [25867]: Connecting to database... -- 00:36:07.715 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:36:07.715 SQL [25867]: pgsql_db_connect() -- 00:36:07.720 INFO [26604]: COREGRADE is starting... -- 00:36:07.720 INFO [26604]: Version from config: 1.0 -- 00:36:07.720 DEBUG [26604]: Connecting to database... -- 00:36:07.720 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:36:07.720 SQL [26604]: pgsql_db_connect() -- 00:36:07.719 DEBUG [25867]: Database connection successful -- 00:36:07.719 INFO [25867]: _SERVER found -- 00:36:07.719 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 00:36:07.719 INFO [25867]: SERVER_NAME = oameye.works.coregrade.com -- 00:36:07.719 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=3kp2bqfubetb305rf0ach496j746rn3r; _gat_gtag_UA_54829827_2=1 -- 00:36:07.719 INFO [25867]: QUERY_STRING = /auth -- 00:36:07.719 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:36:07.751 INFO [25867]: COREGRADE is stopping... -- 00:36:07.751 DEBUG [25867]: Closing database connection -- 00:36:07.751 SQL [25867]: pgsql_close() -- 00:36:07.724 DEBUG [26604]: Database connection successful -- 00:36:07.724 INFO [26604]: _SERVER found -- 00:36:07.724 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 00:36:07.724 INFO [26604]: SERVER_NAME = oameye.works.coregrade.com -- 00:36:07.724 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=3kp2bqfubetb305rf0ach496j746rn3r; _gat_gtag_UA_54829827_2=1 -- 00:36:07.724 INFO [26604]: QUERY_STRING = /welcome/viewLogin -- 00:36:07.724 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:36:07.754 INFO [26604]: COREGRADE is stopping... -- 00:36:07.754 DEBUG [26604]: Closing database connection -- 00:36:07.754 SQL [26604]: pgsql_close() -- 00:36:08.064 INFO [26604]: COREGRADE is starting... -- 00:36:08.064 INFO [26604]: Version from config: 1.0 -- 00:36:08.064 DEBUG [26604]: Connecting to database... -- 00:36:08.064 DEBUG [26604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:36:08.064 SQL [26604]: pgsql_db_connect() -- 00:36:08.068 DEBUG [26604]: Database connection successful -- 00:36:08.068 INFO [26604]: _SERVER found -- 00:36:08.068 INFO [26604]: REMOTE_ADDR = 192.168.1.13 -- 00:36:08.068 INFO [26604]: SERVER_NAME = oameye.works.coregrade.com -- 00:36:08.068 INFO [26604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=3kp2bqfubetb305rf0ach496j746rn3r; _gat_gtag_UA_54829827_2=1 -- 00:36:08.068 INFO [26604]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 00:36:08.068 INFO [26604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:36:08.079 INFO [26604]: COREGRADE is stopping... -- 00:36:08.079 DEBUG [26604]: Closing database connection -- 00:36:08.079 SQL [26604]: pgsql_close() -- 00:36:08.093 INFO [25867]: COREGRADE is starting... -- 00:36:08.093 INFO [25867]: Version from config: 1.0 -- 00:36:08.093 DEBUG [25867]: Connecting to database... -- 00:36:08.093 DEBUG [25867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:36:08.094 SQL [25867]: pgsql_db_connect() -- 00:36:08.097 DEBUG [25867]: Database connection successful -- 00:36:08.097 INFO [25867]: _SERVER found -- 00:36:08.097 INFO [25867]: REMOTE_ADDR = 192.168.1.13 -- 00:36:08.097 INFO [25867]: SERVER_NAME = oameye.works.coregrade.com -- 00:36:08.097 INFO [25867]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=3kp2bqfubetb305rf0ach496j746rn3r; _gat_gtag_UA_54829827_2=1 -- 00:36:08.097 INFO [25867]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:36:08.097 INFO [25867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:36:08.108 INFO [25867]: COREGRADE is stopping... -- 00:36:08.108 DEBUG [25867]: Closing database connection -- 00:36:08.108 SQL [25867]: pgsql_close() -- 00:40:32.032 INFO [8949]: COREGRADE is starting... -- 00:40:32.033 INFO [8949]: Version from config: 1.0 -- 00:40:32.033 DEBUG [8949]: Connecting to database... -- 00:40:32.033 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:40:32.033 SQL [8949]: pgsql_db_connect() -- 00:40:32.037 DEBUG [8949]: Database connection successful -- 00:40:32.037 INFO [8949]: _SERVER found -- 00:40:32.037 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 00:40:32.037 INFO [8949]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:40:32.037 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=p3uh8nekjk8gt6mgeo8ie61j4e21je0m -- 00:40:32.037 INFO [8949]: QUERY_STRING = /member -- 00:40:32.037 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:40:32.080 INFO [8949]: COREGRADE is stopping... -- 00:40:32.080 DEBUG [8949]: Closing database connection -- 00:40:32.080 SQL [8949]: pgsql_close() -- 00:40:32.665 INFO [8949]: COREGRADE is starting... -- 00:40:32.665 INFO [8949]: Version from config: 1.0 -- 00:40:32.665 DEBUG [8949]: Connecting to database... -- 00:40:32.665 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:40:32.665 SQL [8949]: pgsql_db_connect() -- 00:40:32.670 DEBUG [8949]: Database connection successful -- 00:40:32.670 INFO [8949]: _SERVER found -- 00:40:32.670 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 00:40:32.670 INFO [8949]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:40:32.670 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tv09roq0n2sdkb9dei2ol3k0giv9n077 -- 00:40:32.670 INFO [8949]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:40:32.670 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:40:32.681 INFO [8949]: COREGRADE is stopping... -- 00:40:32.681 DEBUG [8949]: Closing database connection -- 00:40:32.681 SQL [8949]: pgsql_close() -- 00:40:32.690 INFO [8950]: COREGRADE is starting... -- 00:40:32.690 INFO [8950]: Version from config: 1.0 -- 00:40:32.690 DEBUG [8950]: Connecting to database... -- 00:40:32.690 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:40:32.690 SQL [8950]: pgsql_db_connect() -- 00:40:32.694 DEBUG [8950]: Database connection successful -- 00:40:32.694 INFO [8950]: _SERVER found -- 00:40:32.694 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 00:40:32.694 INFO [8950]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:40:32.694 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tv09roq0n2sdkb9dei2ol3k0giv9n077 -- 00:40:32.694 INFO [8950]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:40:32.694 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:40:32.709 INFO [8950]: COREGRADE is stopping... -- 00:40:32.709 DEBUG [8950]: Closing database connection -- 00:40:32.709 SQL [8950]: pgsql_close() -- 00:40:34.901 INFO [8949]: COREGRADE is starting... -- 00:40:34.901 INFO [8949]: Version from config: 1.0 -- 00:40:34.901 DEBUG [8949]: Connecting to database... -- 00:40:34.901 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:40:34.901 SQL [8949]: pgsql_db_connect() -- 00:40:34.905 DEBUG [8949]: Database connection successful -- 00:40:34.905 INFO [8949]: _SERVER found -- 00:40:34.905 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 00:40:34.905 INFO [8949]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:40:34.905 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tv09roq0n2sdkb9dei2ol3k0giv9n077 -- 00:40:34.905 INFO [8949]: QUERY_STRING = /member/page -- 00:40:34.905 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:40:34.942 INFO [8949]: COREGRADE is stopping... -- 00:40:34.942 DEBUG [8949]: Closing database connection -- 00:40:34.942 SQL [8949]: pgsql_close() -- 00:40:35.151 INFO [8949]: COREGRADE is starting... -- 00:40:35.151 INFO [8949]: Version from config: 1.0 -- 00:40:35.151 DEBUG [8949]: Connecting to database... -- 00:40:35.151 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:40:35.151 SQL [8949]: pgsql_db_connect() -- 00:40:35.155 DEBUG [8949]: Database connection successful -- 00:40:35.155 INFO [8949]: _SERVER found -- 00:40:35.155 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 00:40:35.155 INFO [8949]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:40:35.155 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tv09roq0n2sdkb9dei2ol3k0giv9n077 -- 00:40:35.155 INFO [8949]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:40:35.155 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:40:35.166 INFO [8949]: COREGRADE is stopping... -- 00:40:35.166 DEBUG [8949]: Closing database connection -- 00:40:35.166 SQL [8949]: pgsql_close() -- 00:40:40.406 INFO [8951]: COREGRADE is starting... -- 00:40:40.407 INFO [8951]: Version from config: 1.0 -- 00:40:40.407 DEBUG [8951]: Connecting to database... -- 00:40:40.407 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:40:40.407 SQL [8951]: pgsql_db_connect() -- 00:40:40.411 DEBUG [8951]: Database connection successful -- 00:40:40.411 INFO [8951]: _SERVER found -- 00:40:40.411 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 00:40:40.411 INFO [8951]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:40:40.411 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tv09roq0n2sdkb9dei2ol3k0giv9n077 -- 00:40:40.411 INFO [8951]: QUERY_STRING = /auth/logout -- 00:40:40.411 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:40:40.449 INFO [8951]: COREGRADE is stopping... -- 00:40:40.449 DEBUG [8951]: Closing database connection -- 00:40:40.449 SQL [8951]: pgsql_close() -- 00:40:40.723 INFO [8951]: COREGRADE is starting... -- 00:40:40.723 INFO [8951]: Version from config: 1.0 -- 00:40:40.723 DEBUG [8951]: Connecting to database... -- 00:40:40.723 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:40:40.723 SQL [8951]: pgsql_db_connect() -- 00:40:40.727 DEBUG [8951]: Database connection successful -- 00:40:40.727 INFO [8951]: _SERVER found -- 00:40:40.727 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 00:40:40.727 INFO [8951]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:40:40.727 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tv09roq0n2sdkb9dei2ol3k0giv9n077 -- 00:40:40.727 INFO [8951]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 00:40:40.727 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:40:40.739 INFO [8951]: COREGRADE is stopping... -- 00:40:40.739 DEBUG [8951]: Closing database connection -- 00:40:40.739 SQL [8951]: pgsql_close() -- 00:40:40.751 INFO [8951]: COREGRADE is starting... -- 00:40:40.751 INFO [8951]: Version from config: 1.0 -- 00:40:40.751 DEBUG [8951]: Connecting to database... -- 00:40:40.751 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:40:40.751 SQL [8951]: pgsql_db_connect() -- 00:40:40.754 DEBUG [8951]: Database connection successful -- 00:40:40.754 INFO [8951]: _SERVER found -- 00:40:40.754 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 00:40:40.754 INFO [8951]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:40:40.755 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tv09roq0n2sdkb9dei2ol3k0giv9n077 -- 00:40:40.755 INFO [8951]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:40:40.755 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:40:40.767 INFO [8951]: COREGRADE is stopping... -- 00:40:40.767 DEBUG [8951]: Closing database connection -- 00:40:40.767 SQL [8951]: pgsql_close() -- 00:40:42.899 INFO [8951]: COREGRADE is starting... -- 00:40:42.899 INFO [8951]: Version from config: 1.0 -- 00:40:42.899 DEBUG [8951]: Connecting to database... -- 00:40:42.899 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:40:42.899 SQL [8951]: pgsql_db_connect() -- 00:40:42.903 DEBUG [8951]: Database connection successful -- 00:40:42.903 INFO [8951]: _SERVER found -- 00:40:42.903 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 00:40:42.903 INFO [8951]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:40:42.903 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tv09roq0n2sdkb9dei2ol3k0giv9n077 -- 00:40:42.903 INFO [8951]: QUERY_STRING = /auth -- 00:40:42.903 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:40:42.964 INFO [8951]: COREGRADE is starting... -- 00:40:42.965 INFO [8951]: Version from config: 1.0 -- 00:40:42.965 DEBUG [8951]: Connecting to database... -- 00:40:42.965 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:40:42.965 SQL [8951]: pgsql_db_connect() -- 00:40:42.968 DEBUG [8951]: Database connection successful -- 00:40:42.968 INFO [8951]: _SERVER found -- 00:40:42.968 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 00:40:42.968 INFO [8951]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:40:42.968 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tv09roq0n2sdkb9dei2ol3k0giv9n077 -- 00:40:42.968 INFO [8951]: QUERY_STRING = /member/index -- 00:40:42.968 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:40:43.004 INFO [8951]: COREGRADE is stopping... -- 00:40:43.004 DEBUG [8951]: Closing database connection -- 00:40:43.004 SQL [8951]: pgsql_close() -- 00:40:43.294 INFO [8951]: COREGRADE is starting... -- 00:40:43.294 INFO [8951]: Version from config: 1.0 -- 00:40:43.294 DEBUG [8951]: Connecting to database... -- 00:40:43.294 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:40:43.294 SQL [8951]: pgsql_db_connect() -- 00:40:43.298 DEBUG [8951]: Database connection successful -- 00:40:43.298 INFO [8951]: _SERVER found -- 00:40:43.298 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 00:40:43.298 INFO [8951]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:40:43.298 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tv09roq0n2sdkb9dei2ol3k0giv9n077 -- 00:40:43.298 INFO [8951]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:40:43.298 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:40:43.309 INFO [8951]: COREGRADE is stopping... -- 00:40:43.309 DEBUG [8951]: Closing database connection -- 00:40:43.309 SQL [8951]: pgsql_close() -- 00:40:43.375 INFO [8951]: COREGRADE is starting... -- 00:40:43.376 INFO [8951]: Version from config: 1.0 -- 00:40:43.376 DEBUG [8951]: Connecting to database... -- 00:40:43.376 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:40:43.376 SQL [8951]: pgsql_db_connect() -- 00:40:43.379 DEBUG [8951]: Database connection successful -- 00:40:43.379 INFO [8951]: _SERVER found -- 00:40:43.379 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 00:40:43.379 INFO [8951]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:40:43.379 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tv09roq0n2sdkb9dei2ol3k0giv9n077 -- 00:40:43.379 INFO [8951]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:40:43.379 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:40:43.390 INFO [8951]: COREGRADE is stopping... -- 00:40:43.390 DEBUG [8951]: Closing database connection -- 00:40:43.390 SQL [8951]: pgsql_close() -- 00:40:49.421 INFO [8953]: COREGRADE is starting... -- 00:40:49.421 INFO [8953]: Version from config: 1.0 -- 00:40:49.421 DEBUG [8953]: Connecting to database... -- 00:40:49.421 DEBUG [8953]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:40:49.421 SQL [8953]: pgsql_db_connect() -- 00:40:49.425 DEBUG [8953]: Database connection successful -- 00:40:49.425 INFO [8953]: _SERVER found -- 00:40:49.425 INFO [8953]: REMOTE_ADDR = 192.168.1.13 -- 00:40:49.425 INFO [8953]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:40:49.425 INFO [8953]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tv09roq0n2sdkb9dei2ol3k0giv9n077 -- 00:40:49.425 INFO [8953]: QUERY_STRING = /auth/logout -- 00:40:49.425 INFO [8953]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:40:49.463 INFO [8953]: COREGRADE is stopping... -- 00:40:49.463 DEBUG [8953]: Closing database connection -- 00:40:49.463 SQL [8953]: pgsql_close() -- 00:40:49.673 INFO [8953]: COREGRADE is starting... -- 00:40:49.674 INFO [8953]: Version from config: 1.0 -- 00:40:49.674 DEBUG [8953]: Connecting to database... -- 00:40:49.674 DEBUG [8953]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:40:49.674 SQL [8953]: pgsql_db_connect() -- 00:40:49.678 DEBUG [8953]: Database connection successful -- 00:40:49.678 INFO [8953]: _SERVER found -- 00:40:49.678 INFO [8953]: REMOTE_ADDR = 192.168.1.13 -- 00:40:49.678 INFO [8953]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:40:49.678 INFO [8953]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tv09roq0n2sdkb9dei2ol3k0giv9n077 -- 00:40:49.678 INFO [8953]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 00:40:49.678 INFO [8953]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:40:49.690 INFO [8953]: COREGRADE is stopping... -- 00:40:49.690 DEBUG [8953]: Closing database connection -- 00:40:49.690 SQL [8953]: pgsql_close() -- 00:40:49.696 INFO [8952]: COREGRADE is starting... -- 00:40:49.697 INFO [8952]: Version from config: 1.0 -- 00:40:49.697 DEBUG [8952]: Connecting to database... -- 00:40:49.697 DEBUG [8952]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:40:49.697 SQL [8952]: pgsql_db_connect() -- 00:40:49.701 DEBUG [8952]: Database connection successful -- 00:40:49.701 INFO [8952]: _SERVER found -- 00:40:49.701 INFO [8952]: REMOTE_ADDR = 192.168.1.13 -- 00:40:49.701 INFO [8952]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:40:49.701 INFO [8952]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tv09roq0n2sdkb9dei2ol3k0giv9n077 -- 00:40:49.701 INFO [8952]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:40:49.701 INFO [8952]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:40:49.715 INFO [8952]: COREGRADE is stopping... -- 00:40:49.715 DEBUG [8952]: Closing database connection -- 00:40:49.715 SQL [8952]: pgsql_close() -- 00:40:52.948 INFO [8952]: COREGRADE is starting... -- 00:40:52.948 INFO [8952]: Version from config: 1.0 -- 00:40:52.948 DEBUG [8952]: Connecting to database... -- 00:40:52.948 DEBUG [8952]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:40:52.948 SQL [8952]: pgsql_db_connect() -- 00:40:52.952 DEBUG [8952]: Database connection successful -- 00:40:52.952 INFO [8952]: _SERVER found -- 00:40:52.952 INFO [8952]: REMOTE_ADDR = 192.168.1.13 -- 00:40:52.952 INFO [8952]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:40:52.952 INFO [8952]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tv09roq0n2sdkb9dei2ol3k0giv9n077 -- 00:40:52.952 INFO [8952]: QUERY_STRING = screen=auth/ -- 00:40:52.952 INFO [8952]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:40:52.987 INFO [8952]: COREGRADE is stopping... -- 00:40:52.987 DEBUG [8952]: Closing database connection -- 00:40:52.987 SQL [8952]: pgsql_close() -- 00:40:53.243 INFO [8952]: COREGRADE is starting... -- 00:40:53.243 INFO [8952]: Version from config: 1.0 -- 00:40:53.243 DEBUG [8952]: Connecting to database... -- 00:40:53.243 DEBUG [8952]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:40:53.243 SQL [8952]: pgsql_db_connect() -- 00:40:53.247 DEBUG [8952]: Database connection successful -- 00:40:53.247 INFO [8952]: _SERVER found -- 00:40:53.247 INFO [8952]: REMOTE_ADDR = 192.168.1.13 -- 00:40:53.247 INFO [8952]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:40:53.247 INFO [8952]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tv09roq0n2sdkb9dei2ol3k0giv9n077 -- 00:40:53.247 INFO [8952]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:40:53.247 INFO [8952]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:40:53.258 INFO [8952]: COREGRADE is stopping... -- 00:40:53.258 DEBUG [8952]: Closing database connection -- 00:40:53.258 SQL [8952]: pgsql_close() -- 00:40:57.403 INFO [8952]: COREGRADE is starting... -- 00:40:57.403 INFO [8952]: Version from config: 1.0 -- 00:40:57.403 DEBUG [8952]: Connecting to database... -- 00:40:57.403 DEBUG [8952]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:40:57.403 SQL [8952]: pgsql_db_connect() -- 00:40:57.407 DEBUG [8952]: Database connection successful -- 00:40:57.407 INFO [8952]: _SERVER found -- 00:40:57.407 INFO [8952]: REMOTE_ADDR = 192.168.1.13 -- 00:40:57.407 INFO [8952]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:40:57.407 INFO [8952]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tv09roq0n2sdkb9dei2ol3k0giv9n077 -- 00:40:57.407 INFO [8952]: QUERY_STRING = -- 00:40:57.407 INFO [8952]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:40:57.443 INFO [8952]: COREGRADE is stopping... -- 00:40:57.443 DEBUG [8952]: Closing database connection -- 00:40:57.443 SQL [8952]: pgsql_close() -- 00:41:09.642 INFO [9028]: COREGRADE is starting... -- 00:41:09.643 INFO [9028]: Version from config: 1.0 -- 00:41:09.643 DEBUG [9028]: Connecting to database... -- 00:41:09.643 DEBUG [9028]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:41:09.643 SQL [9028]: pgsql_db_connect() -- 00:41:09.655 INFO [9031]: COREGRADE is starting... -- 00:41:09.655 INFO [9031]: Version from config: 1.0 -- 00:41:09.655 DEBUG [9031]: Connecting to database... -- 00:41:09.655 DEBUG [9031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:41:09.655 SQL [9031]: pgsql_db_connect() -- 00:41:09.647 DEBUG [9028]: Database connection successful -- 00:41:09.647 INFO [9028]: _SERVER found -- 00:41:09.647 INFO [9028]: REMOTE_ADDR = 192.168.1.13 -- 00:41:09.647 INFO [9028]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:41:09.647 INFO [9028]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tv09roq0n2sdkb9dei2ol3k0giv9n077; _gat_gtag_UA_54829827_2=1 -- 00:41:09.647 INFO [9028]: QUERY_STRING = /auth -- 00:41:09.647 INFO [9028]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:41:09.685 INFO [9028]: COREGRADE is stopping... -- 00:41:09.685 DEBUG [9028]: Closing database connection -- 00:41:09.685 SQL [9028]: pgsql_close() -- 00:41:09.659 DEBUG [9031]: Database connection successful -- 00:41:09.659 INFO [9031]: _SERVER found -- 00:41:09.659 INFO [9031]: REMOTE_ADDR = 192.168.1.13 -- 00:41:09.659 INFO [9031]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:41:09.659 INFO [9031]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tv09roq0n2sdkb9dei2ol3k0giv9n077; _gat_gtag_UA_54829827_2=1 -- 00:41:09.659 INFO [9031]: QUERY_STRING = /welcome/viewLogin -- 00:41:09.659 INFO [9031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:41:09.695 INFO [9031]: COREGRADE is stopping... -- 00:41:09.695 DEBUG [9031]: Closing database connection -- 00:41:09.695 SQL [9031]: pgsql_close() -- 00:41:09.987 INFO [9031]: COREGRADE is starting... -- 00:41:09.988 INFO [9031]: Version from config: 1.0 -- 00:41:09.988 DEBUG [9031]: Connecting to database... -- 00:41:09.988 DEBUG [9031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:41:09.988 SQL [9031]: pgsql_db_connect() -- 00:41:09.992 DEBUG [9031]: Database connection successful -- 00:41:09.992 INFO [9031]: _SERVER found -- 00:41:09.992 INFO [9031]: REMOTE_ADDR = 192.168.1.13 -- 00:41:09.992 INFO [9031]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:41:09.992 INFO [9031]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tv09roq0n2sdkb9dei2ol3k0giv9n077; _gat_gtag_UA_54829827_2=1 -- 00:41:09.992 INFO [9031]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:41:09.992 INFO [9031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:41:10.004 INFO [9031]: COREGRADE is stopping... -- 00:41:10.004 DEBUG [9031]: Closing database connection -- 00:41:10.004 SQL [9031]: pgsql_close() -- 00:41:12.438 INFO [9032]: COREGRADE is starting... -- 00:41:12.439 INFO [9032]: Version from config: 1.0 -- 00:41:12.439 DEBUG [9032]: Connecting to database... -- 00:41:12.439 DEBUG [9032]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:41:12.439 SQL [9032]: pgsql_db_connect() -- 00:41:12.443 DEBUG [9032]: Database connection successful -- 00:41:12.443 INFO [9032]: _SERVER found -- 00:41:12.443 INFO [9032]: REMOTE_ADDR = 192.168.1.13 -- 00:41:12.443 INFO [9032]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:41:12.443 INFO [9032]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tv09roq0n2sdkb9dei2ol3k0giv9n077; _gat_gtag_UA_54829827_2=1 -- 00:41:12.443 INFO [9032]: QUERY_STRING = /auth -- 00:41:12.443 INFO [9032]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:41:12.518 INFO [9032]: COREGRADE is starting... -- 00:41:12.518 INFO [9032]: Version from config: 1.0 -- 00:41:12.518 DEBUG [9032]: Connecting to database... -- 00:41:12.518 DEBUG [9032]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:41:12.518 SQL [9032]: pgsql_db_connect() -- 00:41:12.522 DEBUG [9032]: Database connection successful -- 00:41:12.522 INFO [9032]: _SERVER found -- 00:41:12.522 INFO [9032]: REMOTE_ADDR = 192.168.1.13 -- 00:41:12.522 INFO [9032]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:41:12.522 INFO [9032]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tv09roq0n2sdkb9dei2ol3k0giv9n077; _gat_gtag_UA_54829827_2=1 -- 00:41:12.522 INFO [9032]: QUERY_STRING = /member/index -- 00:41:12.522 INFO [9032]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:41:12.561 INFO [9032]: COREGRADE is stopping... -- 00:41:12.561 DEBUG [9032]: Closing database connection -- 00:41:12.561 SQL [9032]: pgsql_close() -- 00:41:13.050 INFO [9032]: COREGRADE is starting... -- 00:41:13.050 INFO [9032]: Version from config: 1.0 -- 00:41:13.050 DEBUG [9032]: Connecting to database... -- 00:41:13.050 DEBUG [9032]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:41:13.050 SQL [9032]: pgsql_db_connect() -- 00:41:13.054 DEBUG [9032]: Database connection successful -- 00:41:13.054 INFO [9032]: _SERVER found -- 00:41:13.054 INFO [9032]: REMOTE_ADDR = 192.168.1.13 -- 00:41:13.054 INFO [9032]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:41:13.054 INFO [9032]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tv09roq0n2sdkb9dei2ol3k0giv9n077; _gat_gtag_UA_54829827_2=1 -- 00:41:13.054 INFO [9032]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:41:13.054 INFO [9032]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:41:13.066 INFO [9032]: COREGRADE is stopping... -- 00:41:13.066 DEBUG [9032]: Closing database connection -- 00:41:13.067 SQL [9032]: pgsql_close() -- 00:41:22.262 INFO [8950]: COREGRADE is starting... -- 00:41:22.263 INFO [8950]: Version from config: 1.0 -- 00:41:22.263 DEBUG [8950]: Connecting to database... -- 00:41:22.263 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:41:22.263 SQL [8950]: pgsql_db_connect() -- 00:41:22.267 DEBUG [8950]: Database connection successful -- 00:41:22.267 INFO [8950]: _SERVER found -- 00:41:22.267 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 00:41:22.267 INFO [8950]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:41:22.267 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tv09roq0n2sdkb9dei2ol3k0giv9n077; _gat_gtag_UA_54829827_2=1 -- 00:41:22.267 INFO [8950]: QUERY_STRING = /member -- 00:41:22.267 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:41:22.306 INFO [8950]: COREGRADE is stopping... -- 00:41:22.306 DEBUG [8950]: Closing database connection -- 00:41:22.306 SQL [8950]: pgsql_close() -- 00:41:22.640 INFO [8950]: COREGRADE is starting... -- 00:41:22.640 INFO [8950]: Version from config: 1.0 -- 00:41:22.640 DEBUG [8950]: Connecting to database... -- 00:41:22.640 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:41:22.640 SQL [8950]: pgsql_db_connect() -- 00:41:22.644 DEBUG [8950]: Database connection successful -- 00:41:22.644 INFO [8950]: _SERVER found -- 00:41:22.644 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 00:41:22.644 INFO [8950]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:41:22.644 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tv09roq0n2sdkb9dei2ol3k0giv9n077; _gat_gtag_UA_54829827_2=1 -- 00:41:22.644 INFO [8950]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:41:22.644 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:41:22.655 INFO [8950]: COREGRADE is stopping... -- 00:41:22.655 DEBUG [8950]: Closing database connection -- 00:41:22.655 SQL [8950]: pgsql_close() -- 00:41:32.656 INFO [8949]: COREGRADE is starting... -- 00:41:32.656 INFO [8949]: Version from config: 1.0 -- 00:41:32.656 DEBUG [8949]: Connecting to database... -- 00:41:32.656 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:41:32.656 SQL [8949]: pgsql_db_connect() -- 00:41:32.660 DEBUG [8949]: Database connection successful -- 00:41:32.660 INFO [8949]: _SERVER found -- 00:41:32.660 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 00:41:32.660 INFO [8949]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:41:32.660 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tv09roq0n2sdkb9dei2ol3k0giv9n077; _gat_gtag_UA_54829827_2=1 -- 00:41:32.660 INFO [8949]: QUERY_STRING = /member/index -- 00:41:32.660 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:41:32.695 INFO [8949]: COREGRADE is stopping... -- 00:41:32.695 DEBUG [8949]: Closing database connection -- 00:41:32.695 SQL [8949]: pgsql_close() -- 00:41:33.001 INFO [8949]: COREGRADE is starting... -- 00:41:33.001 INFO [8949]: Version from config: 1.0 -- 00:41:33.001 DEBUG [8949]: Connecting to database... -- 00:41:33.001 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:41:33.001 SQL [8949]: pgsql_db_connect() -- 00:41:33.005 DEBUG [8949]: Database connection successful -- 00:41:33.006 INFO [8949]: _SERVER found -- 00:41:33.006 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 00:41:33.006 INFO [8949]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:41:33.006 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tv09roq0n2sdkb9dei2ol3k0giv9n077; _gat_gtag_UA_54829827_2=1 -- 00:41:33.006 INFO [8949]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:41:33.006 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:41:33.017 INFO [8949]: COREGRADE is stopping... -- 00:41:33.017 DEBUG [8949]: Closing database connection -- 00:41:33.017 SQL [8949]: pgsql_close() -- 00:41:35.644 INFO [8949]: COREGRADE is starting... -- 00:41:35.644 INFO [8949]: Version from config: 1.0 -- 00:41:35.644 DEBUG [8949]: Connecting to database... -- 00:41:35.644 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:41:35.644 SQL [8949]: pgsql_db_connect() -- 00:41:35.648 DEBUG [8949]: Database connection successful -- 00:41:35.648 INFO [8949]: _SERVER found -- 00:41:35.648 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 00:41:35.648 INFO [8949]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:41:35.648 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tv09roq0n2sdkb9dei2ol3k0giv9n077; _gat_gtag_UA_54829827_2=1 -- 00:41:35.648 INFO [8949]: QUERY_STRING = /auth -- 00:41:35.648 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:41:35.680 INFO [8949]: COREGRADE is stopping... -- 00:41:35.680 DEBUG [8949]: Closing database connection -- 00:41:35.680 SQL [8949]: pgsql_close() -- 00:41:35.831 INFO [8949]: COREGRADE is starting... -- 00:41:35.831 INFO [8949]: Version from config: 1.0 -- 00:41:35.831 DEBUG [8949]: Connecting to database... -- 00:41:35.831 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:41:35.831 SQL [8949]: pgsql_db_connect() -- 00:41:35.835 DEBUG [8949]: Database connection successful -- 00:41:35.835 INFO [8949]: _SERVER found -- 00:41:35.835 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 00:41:35.835 INFO [8949]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:41:35.835 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tv09roq0n2sdkb9dei2ol3k0giv9n077; _gat_gtag_UA_54829827_2=1 -- 00:41:35.835 INFO [8949]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:41:35.835 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:41:35.847 INFO [8949]: COREGRADE is stopping... -- 00:41:35.847 DEBUG [8949]: Closing database connection -- 00:41:35.847 SQL [8949]: pgsql_close() -- 00:41:36.574 INFO [8949]: COREGRADE is starting... -- 00:41:36.574 INFO [8949]: Version from config: 1.0 -- 00:41:36.574 DEBUG [8949]: Connecting to database... -- 00:41:36.574 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:41:36.574 SQL [8949]: pgsql_db_connect() -- 00:41:36.578 DEBUG [8949]: Database connection successful -- 00:41:36.578 INFO [8949]: _SERVER found -- 00:41:36.578 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 00:41:36.578 INFO [8949]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:41:36.578 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tv09roq0n2sdkb9dei2ol3k0giv9n077; _gat_gtag_UA_54829827_2=1 -- 00:41:36.578 INFO [8949]: QUERY_STRING = -- 00:41:36.578 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:41:36.614 INFO [8949]: COREGRADE is stopping... -- 00:41:36.614 DEBUG [8949]: Closing database connection -- 00:41:36.614 SQL [8949]: pgsql_close() -- 00:44:18.681 INFO [8951]: COREGRADE is starting... -- 00:44:18.681 INFO [8951]: Version from config: 1.0 -- 00:44:18.681 DEBUG [8951]: Connecting to database... -- 00:44:18.681 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:44:18.681 SQL [8951]: pgsql_db_connect() -- 00:44:18.685 DEBUG [8951]: Database connection successful -- 00:44:18.685 INFO [8951]: _SERVER found -- 00:44:18.685 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 00:44:18.685 INFO [8951]: SERVER_NAME = oameye.works.coregrade.com -- 00:44:18.685 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=3kp2bqfubetb305rf0ach496j746rn3r -- 00:44:18.685 INFO [8951]: QUERY_STRING = /auth/resetpass -- 00:44:18.685 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:44:18.718 INFO [8951]: COREGRADE is stopping... -- 00:44:18.718 DEBUG [8951]: Closing database connection -- 00:44:18.718 SQL [8951]: pgsql_close() -- 00:44:18.985 INFO [8951]: COREGRADE is starting... -- 00:44:18.985 INFO [8951]: Version from config: 1.0 -- 00:44:18.985 DEBUG [8951]: Connecting to database... -- 00:44:18.985 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:44:18.985 SQL [8951]: pgsql_db_connect() -- 00:44:18.997 INFO [8953]: COREGRADE is starting... -- 00:44:18.997 INFO [8953]: Version from config: 1.0 -- 00:44:18.997 DEBUG [8953]: Connecting to database... -- 00:44:18.997 DEBUG [8953]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:44:18.997 SQL [8953]: pgsql_db_connect() -- 00:44:18.990 DEBUG [8951]: Database connection successful -- 00:44:18.990 INFO [8951]: _SERVER found -- 00:44:18.990 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 00:44:18.990 INFO [8951]: SERVER_NAME = oameye.works.coregrade.com -- 00:44:18.990 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:44:18.990 INFO [8951]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 00:44:18.990 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:44:19.001 INFO [8951]: COREGRADE is stopping... -- 00:44:19.001 DEBUG [8951]: Closing database connection -- 00:44:19.001 SQL [8951]: pgsql_close() -- 00:44:18.001 DEBUG [8953]: Database connection successful -- 00:44:18.001 INFO [8953]: _SERVER found -- 00:44:18.001 INFO [8953]: REMOTE_ADDR = 192.168.1.13 -- 00:44:18.001 INFO [8953]: SERVER_NAME = oameye.works.coregrade.com -- 00:44:18.001 INFO [8953]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:44:18.001 INFO [8953]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:44:18.001 INFO [8953]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:44:19.014 INFO [8953]: COREGRADE is stopping... -- 00:44:19.014 DEBUG [8953]: Closing database connection -- 00:44:19.014 SQL [8953]: pgsql_close() -- 00:44:46.908 INFO [8952]: COREGRADE is starting... -- 00:44:46.908 INFO [8952]: Version from config: 1.0 -- 00:44:46.908 DEBUG [8952]: Connecting to database... -- 00:44:46.908 DEBUG [8952]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:44:46.908 SQL [8952]: pgsql_db_connect() -- 00:44:46.912 DEBUG [8952]: Database connection successful -- 00:44:46.912 INFO [8952]: _SERVER found -- 00:44:46.912 INFO [8952]: REMOTE_ADDR = 192.168.1.13 -- 00:44:46.912 INFO [8952]: SERVER_NAME = oameye.works.coregrade.com -- 00:44:46.912 INFO [8952]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:44:46.912 INFO [8952]: QUERY_STRING = /auth -- 00:44:46.912 INFO [8952]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:44:46.944 INFO [8952]: COREGRADE is stopping... -- 00:44:46.944 DEBUG [8952]: Closing database connection -- 00:44:46.944 SQL [8952]: pgsql_close() -- 00:44:47.109 INFO [8952]: COREGRADE is starting... -- 00:44:47.109 INFO [8952]: Version from config: 1.0 -- 00:44:47.109 DEBUG [8952]: Connecting to database... -- 00:44:47.109 DEBUG [8952]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:44:47.109 SQL [8952]: pgsql_db_connect() -- 00:44:47.113 DEBUG [8952]: Database connection successful -- 00:44:47.113 INFO [8952]: _SERVER found -- 00:44:47.113 INFO [8952]: REMOTE_ADDR = 192.168.1.13 -- 00:44:47.113 INFO [8952]: SERVER_NAME = oameye.works.coregrade.com -- 00:44:47.113 INFO [8952]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:44:47.113 INFO [8952]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 00:44:47.113 INFO [8952]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:44:47.124 INFO [8952]: COREGRADE is stopping... -- 00:44:47.124 DEBUG [8952]: Closing database connection -- 00:44:47.125 SQL [8952]: pgsql_close() -- 00:44:47.126 INFO [9028]: COREGRADE is starting... -- 00:44:47.126 INFO [9028]: Version from config: 1.0 -- 00:44:47.126 DEBUG [9028]: Connecting to database... -- 00:44:47.126 DEBUG [9028]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:44:47.126 SQL [9028]: pgsql_db_connect() -- 00:44:47.130 DEBUG [9028]: Database connection successful -- 00:44:47.130 INFO [9028]: _SERVER found -- 00:44:47.130 INFO [9028]: REMOTE_ADDR = 192.168.1.13 -- 00:44:47.130 INFO [9028]: SERVER_NAME = oameye.works.coregrade.com -- 00:44:47.130 INFO [9028]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:44:47.130 INFO [9028]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:44:47.130 INFO [9028]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:44:47.142 INFO [9028]: COREGRADE is stopping... -- 00:44:47.142 DEBUG [9028]: Closing database connection -- 00:44:47.142 SQL [9028]: pgsql_close() -- 00:44:52.956 INFO [9031]: COREGRADE is starting... -- 00:44:52.957 INFO [9031]: Version from config: 1.0 -- 00:44:52.957 DEBUG [9031]: Connecting to database... -- 00:44:52.957 DEBUG [9031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:44:52.957 SQL [9031]: pgsql_db_connect() -- 00:44:52.961 DEBUG [9031]: Database connection successful -- 00:44:52.961 INFO [9031]: _SERVER found -- 00:44:52.961 INFO [9031]: REMOTE_ADDR = 192.168.1.13 -- 00:44:52.961 INFO [9031]: SERVER_NAME = oameye.works.coregrade.com -- 00:44:52.961 INFO [9031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:44:52.961 INFO [9031]: QUERY_STRING = /auth/resetpass -- 00:44:52.961 INFO [9031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:44:52.995 INFO [9031]: COREGRADE is stopping... -- 00:44:52.995 DEBUG [9031]: Closing database connection -- 00:44:52.995 SQL [9031]: pgsql_close() -- 00:44:53.193 INFO [9031]: COREGRADE is starting... -- 00:44:53.194 INFO [9031]: Version from config: 1.0 -- 00:44:53.194 DEBUG [9031]: Connecting to database... -- 00:44:53.194 DEBUG [9031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:44:53.194 SQL [9031]: pgsql_db_connect() -- 00:44:53.203 INFO [9032]: COREGRADE is starting... -- 00:44:53.203 INFO [9032]: Version from config: 1.0 -- 00:44:53.203 DEBUG [9032]: Connecting to database... -- 00:44:53.203 DEBUG [9032]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:44:53.203 SQL [9032]: pgsql_db_connect() -- 00:44:53.198 DEBUG [9031]: Database connection successful -- 00:44:53.198 INFO [9031]: _SERVER found -- 00:44:53.198 INFO [9031]: REMOTE_ADDR = 192.168.1.13 -- 00:44:53.198 INFO [9031]: SERVER_NAME = oameye.works.coregrade.com -- 00:44:53.198 INFO [9031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:44:53.198 INFO [9031]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 00:44:53.198 INFO [9031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:44:53.209 INFO [9031]: COREGRADE is stopping... -- 00:44:53.209 DEBUG [9031]: Closing database connection -- 00:44:53.209 SQL [9031]: pgsql_close() -- 00:44:53.207 DEBUG [9032]: Database connection successful -- 00:44:53.207 INFO [9032]: _SERVER found -- 00:44:53.207 INFO [9032]: REMOTE_ADDR = 192.168.1.13 -- 00:44:53.207 INFO [9032]: SERVER_NAME = oameye.works.coregrade.com -- 00:44:53.207 INFO [9032]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:44:53.207 INFO [9032]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:44:53.207 INFO [9032]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:44:53.219 INFO [9032]: COREGRADE is stopping... -- 00:44:53.219 DEBUG [9032]: Closing database connection -- 00:44:53.219 SQL [9032]: pgsql_close() -- 00:46:02.210 INFO [8950]: COREGRADE is starting... -- 00:46:02.210 INFO [8950]: Version from config: 1.0 -- 00:46:02.210 DEBUG [8950]: Connecting to database... -- 00:46:02.210 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:02.210 SQL [8950]: pgsql_db_connect() -- 00:46:02.214 DEBUG [8950]: Database connection successful -- 00:46:02.214 INFO [8950]: _SERVER found -- 00:46:02.214 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 00:46:02.214 INFO [8950]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:02.214 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:46:02.214 INFO [8950]: QUERY_STRING = /auth -- 00:46:02.214 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:02.246 INFO [8950]: COREGRADE is stopping... -- 00:46:02.246 DEBUG [8950]: Closing database connection -- 00:46:02.246 SQL [8950]: pgsql_close() -- 00:46:02.408 INFO [8950]: COREGRADE is starting... -- 00:46:02.408 INFO [8950]: Version from config: 1.0 -- 00:46:02.408 DEBUG [8950]: Connecting to database... -- 00:46:02.408 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:02.408 SQL [8950]: pgsql_db_connect() -- 00:46:02.422 INFO [8949]: COREGRADE is starting... -- 00:46:02.422 INFO [8949]: Version from config: 1.0 -- 00:46:02.422 DEBUG [8949]: Connecting to database... -- 00:46:02.423 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:02.423 SQL [8949]: pgsql_db_connect() -- 00:46:02.412 DEBUG [8950]: Database connection successful -- 00:46:02.413 INFO [8950]: _SERVER found -- 00:46:02.413 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 00:46:02.413 INFO [8950]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:02.413 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:46:02.413 INFO [8950]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 00:46:02.413 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:02.424 INFO [8950]: COREGRADE is stopping... -- 00:46:02.424 DEBUG [8950]: Closing database connection -- 00:46:02.424 SQL [8950]: pgsql_close() -- 00:46:02.427 DEBUG [8949]: Database connection successful -- 00:46:02.427 INFO [8949]: _SERVER found -- 00:46:02.427 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 00:46:02.427 INFO [8949]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:02.427 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:46:02.427 INFO [8949]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:46:02.427 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:02.438 INFO [8949]: COREGRADE is stopping... -- 00:46:02.438 DEBUG [8949]: Closing database connection -- 00:46:02.438 SQL [8949]: pgsql_close() -- 00:46:03.527 INFO [8949]: COREGRADE is starting... -- 00:46:03.527 INFO [8949]: Version from config: 1.0 -- 00:46:03.527 DEBUG [8949]: Connecting to database... -- 00:46:03.527 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:03.527 SQL [8949]: pgsql_db_connect() -- 00:46:03.562 INFO [8949]: COREGRADE is starting... -- 00:46:03.562 INFO [8949]: Version from config: 1.0 -- 00:46:03.562 DEBUG [8949]: Connecting to database... -- 00:46:03.562 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:03.562 SQL [8949]: pgsql_db_connect() -- 00:46:03.566 DEBUG [8949]: Database connection successful -- 00:46:03.566 INFO [8949]: _SERVER found -- 00:46:03.566 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 00:46:03.566 INFO [8949]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:03.566 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:46:03.566 INFO [8949]: QUERY_STRING = -- 00:46:03.566 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:03.566 INFO [8949]: SystemStatus()09-09-********~************ -- 00:46:03.566 INFO [8949]: long coregrade_api_main(CVars in, CVars &out) -- 00:46:03.566 INFO [8949]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 00:46:03.566 INFO [8949]: account calls -- 00:46:03.566 INFO [8949]: account_calls() -- 00:46:03.566 INFO [8949]: LoginCoreGradeAccount() -- 00:46:03.566 FLOG_MAX [8949]: REQ_STRING(username) -- 00:46:03.566 FLOG_MAX [8949]: REQ_STRING(password) -- 00:46:03.566 FLOG_MAX [8949]: REQ_STRING(sessionid) -- 00:46:03.566 FLOG_MAX [8949]: long load_db_record( CVars &rec, const char * query, ... ) -- 00:46:03.566 SQL [8949]: pgsql_query() -- 00:46:03.566 SQL [8949]: About to run query: -- 00:46:03.566 SQL [8949]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 00:46:03.570 SQL [8949]: Found rows: 1 -- 00:46:03.570 FLOG_MAX [8949]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 00:46:03.570 INFO [8949]: long SessionCheck(long uid, const char *sessionid, int create ) -- 00:46:03.570 SQL [8949]: pgsql_exec() -- 00:46:03.570 SQL [8949]: About to run query: -- 00:46:03.570 SQL [8949]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 00:46:03.571 SQL [8949]: PQcmdTuples: 1 -- 00:46:03.571 SQL [8949]: Affected rows: 1 -- 00:46:03.571 SQL [8949]: pgsql_exec() -- 00:46:03.571 SQL [8949]: About to run query: -- 00:46:03.571 SQL [8949]: DELETE FROM members_session WHERE member_id=5 -- 00:46:03.571 SQL [8949]: PQcmdTuples: 0 -- 00:46:03.571 SQL [8949]: Affected rows: 0 -- 00:46:03.571 SQL [8949]: pgsql_query() -- 00:46:03.572 SQL [8949]: About to run query: -- 00:46:03.572 SQL [8949]: SELECT * FROM members_session WHERE member_id=5 AND session<>'38C3751925EC39B40DDFE20631B0E25A' -- 00:46:03.572 SQL [8949]: Found rows: 0 -- 00:46:03.572 SQL [8949]: Found rows: 0 -- 00:46:03.572 FLOG_MAX [8949]: long load_db_record( CVars &rec, const char * query, ... ) -- 00:46:03.572 SQL [8949]: pgsql_query() -- 00:46:03.572 SQL [8949]: About to run query: -- 00:46:03.572 SQL [8949]: SELECT * FROM members_session WHERE member_id=5 AND session='38C3751925EC39B40DDFE20631B0E25A' -- 00:46:03.572 SQL [8949]: Found rows: 0 -- 00:46:03.572 SQL [8949]: Found rows: 0 -- 00:46:03.573 FLOG_MAX [8949]: insert_db_record() -- 00:46:03.573 SQL [8949]: pgsql_exec() -- 00:46:03.573 SQL [8949]: About to run query: -- 00:46:03.573 SQL [8949]: INSERT INTO members_session (member_id,session) VALUES ('5','38C3751925EC39B40DDFE20631B0E25A') -- 00:46:03.574 SQL [8949]: PQcmdTuples: 1 -- 00:46:03.574 SQL [8949]: Affected rows: 1 -- 00:46:03.574 FLOG_MAX [8949]: SELECT currval('members_session_id_seq') -- 00:46:03.574 SQL [8949]: pgsql_query() -- 00:46:03.574 SQL [8949]: About to run query: -- 00:46:03.574 SQL [8949]: SELECT currval('members_session_id_seq') -- 00:46:03.574 SQL [8949]: Found rows: 1 -- 00:46:03.574 INFO [8949]: CreateDefaultPage() -- 00:46:03.574 FLOG_MAX [8949]: long load_db_record( CVars &rec, const char * query, ... ) -- 00:46:03.574 SQL [8949]: pgsql_query() -- 00:46:03.574 SQL [8949]: About to run query: -- 00:46:03.574 SQL [8949]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 00:46:03.575 SQL [8949]: Found rows: 1 -- 00:46:03.575 FLOG_MAX [8949]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 00:46:03.575 SQL [8949]: pgsql_query() -- 00:46:03.575 SQL [8949]: About to run query: -- 00:46:03.575 SQL [8949]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 00:46:03.575 SQL [8949]: Found rows: 1 -- 00:46:03.575 INFO [8949]: /CreateDefaultPage() -- 00:46:03.575 INFO [8949]: /LoginCoreGradeAccount() -- 00:46:03.575 INFO [8949]: RET: added=2020-02-05 06:47:23.982154 -- 00:46:03.575 INFO [8949]: RET: email=ameye+11@chiefsoft.com -- 00:46:03.575 INFO [8949]: RET: firstname=Olu -- 00:46:03.575 INFO [8949]: RET: id=5 -- 00:46:03.575 INFO [8949]: RET: last_login= -- 00:46:03.575 INFO [8949]: RET: lastname=Amey -- 00:46:03.575 INFO [8949]: RET: loc=192.168.1.13 -- 00:46:03.575 INFO [8949]: RET: member_id=5 -- 00:46:03.575 INFO [8949]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 00:46:03.575 INFO [8949]: RET: phone= -- 00:46:03.575 INFO [8949]: RET: pid= -- 00:46:03.575 INFO [8949]: RET: result=YES I GET TO BACK END -- 00:46:03.575 INFO [8949]: RET: sessionid=38C3751925EC39B40DDFE20631B0E25A -- 00:46:03.575 INFO [8949]: RET: status=1 -- 00:46:03.575 INFO [8949]: RET: stauts=OK -- 00:46:03.575 INFO [8949]: RET: username=ameye+11@chiefsoft.com -- 00:46:03.575 INFO [8949]: RET: verified= -- 00:46:03.577 INFO [8949]: COREGRADE is stopping... -- 00:46:03.577 DEBUG [8949]: Closing database connection -- 00:46:03.577 SQL [8949]: pgsql_close() -- 00:46:03.531 DEBUG [8949]: Database connection successful -- 00:46:03.531 INFO [8949]: _SERVER found -- 00:46:03.531 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 00:46:03.531 INFO [8949]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:03.531 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:46:03.531 INFO [8949]: QUERY_STRING = /auth -- 00:46:03.531 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:03.577 INFO [8949]: COREGRADE is stopping... -- 00:46:03.577 DEBUG [8949]: Closing database connection -- 00:46:03.577 SQL [8949]: pgsql_close() -- 00:46:03.604 INFO [8949]: COREGRADE is starting... -- 00:46:03.604 INFO [8949]: Version from config: 1.0 -- 00:46:03.604 DEBUG [8949]: Connecting to database... -- 00:46:03.604 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:03.604 SQL [8949]: pgsql_db_connect() -- 00:46:03.608 DEBUG [8949]: Database connection successful -- 00:46:03.608 INFO [8949]: _SERVER found -- 00:46:03.608 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 00:46:03.608 INFO [8949]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:03.608 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:46:03.608 INFO [8949]: QUERY_STRING = /member/index -- 00:46:03.608 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:03.643 INFO [8949]: COREGRADE is stopping... -- 00:46:03.643 DEBUG [8949]: Closing database connection -- 00:46:03.643 SQL [8949]: pgsql_close() -- 00:46:03.910 INFO [8949]: COREGRADE is starting... -- 00:46:03.910 INFO [8949]: Version from config: 1.0 -- 00:46:03.910 DEBUG [8949]: Connecting to database... -- 00:46:03.910 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:03.910 SQL [8949]: pgsql_db_connect() -- 00:46:03.914 DEBUG [8949]: Database connection successful -- 00:46:03.914 INFO [8949]: _SERVER found -- 00:46:03.914 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 00:46:03.914 INFO [8949]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:03.914 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:46:03.914 INFO [8949]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:46:03.914 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:03.925 INFO [8949]: COREGRADE is stopping... -- 00:46:03.925 DEBUG [8949]: Closing database connection -- 00:46:03.925 SQL [8949]: pgsql_close() -- 00:46:03.940 INFO [8949]: COREGRADE is starting... -- 00:46:03.940 INFO [8949]: Version from config: 1.0 -- 00:46:03.940 DEBUG [8949]: Connecting to database... -- 00:46:03.940 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:03.940 SQL [8949]: pgsql_db_connect() -- 00:46:03.944 DEBUG [8949]: Database connection successful -- 00:46:03.944 INFO [8949]: _SERVER found -- 00:46:03.944 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 00:46:03.944 INFO [8949]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:03.944 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:46:03.944 INFO [8949]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:46:03.944 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:03.954 INFO [8949]: COREGRADE is stopping... -- 00:46:03.955 DEBUG [8949]: Closing database connection -- 00:46:03.955 SQL [8949]: pgsql_close() -- 00:46:06.603 INFO [8949]: COREGRADE is starting... -- 00:46:06.604 INFO [8949]: Version from config: 1.0 -- 00:46:06.604 DEBUG [8949]: Connecting to database... -- 00:46:06.604 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:06.604 SQL [8949]: pgsql_db_connect() -- 00:46:06.608 DEBUG [8949]: Database connection successful -- 00:46:06.608 INFO [8949]: _SERVER found -- 00:46:06.608 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 00:46:06.608 INFO [8949]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:06.608 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:46:06.608 INFO [8949]: QUERY_STRING = /member/page -- 00:46:06.608 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:06.644 INFO [8949]: COREGRADE is stopping... -- 00:46:06.644 DEBUG [8949]: Closing database connection -- 00:46:06.644 SQL [8949]: pgsql_close() -- 00:46:06.953 INFO [8949]: COREGRADE is starting... -- 00:46:06.953 INFO [8949]: Version from config: 1.0 -- 00:46:06.953 DEBUG [8949]: Connecting to database... -- 00:46:06.953 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:06.953 SQL [8949]: pgsql_db_connect() -- 00:46:06.957 DEBUG [8949]: Database connection successful -- 00:46:06.957 INFO [8949]: _SERVER found -- 00:46:06.957 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 00:46:06.957 INFO [8949]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:06.957 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:46:06.957 INFO [8949]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:46:06.957 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:06.968 INFO [8949]: COREGRADE is stopping... -- 00:46:06.968 DEBUG [8949]: Closing database connection -- 00:46:06.968 SQL [8949]: pgsql_close() -- 00:46:10.839 INFO [8949]: COREGRADE is starting... -- 00:46:10.840 INFO [8949]: Version from config: 1.0 -- 00:46:10.840 DEBUG [8949]: Connecting to database... -- 00:46:10.840 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:10.840 SQL [8949]: pgsql_db_connect() -- 00:46:10.844 DEBUG [8949]: Database connection successful -- 00:46:10.844 INFO [8949]: _SERVER found -- 00:46:10.844 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 00:46:10.844 INFO [8949]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:10.844 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:46:10.844 INFO [8949]: QUERY_STRING = /member/viewCardAddAction -- 00:46:10.844 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:10.874 INFO [8949]: COREGRADE is stopping... -- 00:46:10.874 DEBUG [8949]: Closing database connection -- 00:46:10.874 SQL [8949]: pgsql_close() -- 00:46:20.750 INFO [8951]: COREGRADE is starting... -- 00:46:20.750 INFO [8951]: Version from config: 1.0 -- 00:46:20.750 DEBUG [8951]: Connecting to database... -- 00:46:20.750 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:20.750 SQL [8951]: pgsql_db_connect() -- 00:46:20.754 DEBUG [8951]: Database connection successful -- 00:46:20.754 INFO [8951]: _SERVER found -- 00:46:20.754 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 00:46:20.754 INFO [8951]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:46:20.754 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=tv09roq0n2sdkb9dei2ol3k0giv9n077 -- 00:46:20.754 INFO [8951]: QUERY_STRING = /auth -- 00:46:20.754 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:20.830 INFO [8951]: COREGRADE is starting... -- 00:46:20.830 INFO [8951]: Version from config: 1.0 -- 00:46:20.830 DEBUG [8951]: Connecting to database... -- 00:46:20.830 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:20.830 SQL [8951]: pgsql_db_connect() -- 00:46:20.834 DEBUG [8951]: Database connection successful -- 00:46:20.834 INFO [8951]: _SERVER found -- 00:46:20.834 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 00:46:20.834 INFO [8951]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:46:20.834 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2f6cqgkhgjtuf7lkr7mua1oah50som3e -- 00:46:20.834 INFO [8951]: QUERY_STRING = /member/index -- 00:46:20.834 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:20.868 INFO [8951]: COREGRADE is stopping... -- 00:46:20.868 DEBUG [8951]: Closing database connection -- 00:46:20.868 SQL [8951]: pgsql_close() -- 00:46:21.596 INFO [8951]: COREGRADE is starting... -- 00:46:21.596 INFO [8951]: Version from config: 1.0 -- 00:46:21.596 DEBUG [8951]: Connecting to database... -- 00:46:21.596 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:21.596 SQL [8951]: pgsql_db_connect() -- 00:46:21.600 DEBUG [8951]: Database connection successful -- 00:46:21.600 INFO [8951]: _SERVER found -- 00:46:21.600 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 00:46:21.600 INFO [8951]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:46:21.600 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2f6cqgkhgjtuf7lkr7mua1oah50som3e -- 00:46:21.600 INFO [8951]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:46:21.600 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:21.611 INFO [8951]: COREGRADE is stopping... -- 00:46:21.611 DEBUG [8951]: Closing database connection -- 00:46:21.611 SQL [8951]: pgsql_close() -- 00:46:21.695 INFO [8951]: COREGRADE is starting... -- 00:46:21.696 INFO [8951]: Version from config: 1.0 -- 00:46:21.696 DEBUG [8951]: Connecting to database... -- 00:46:21.696 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:21.696 SQL [8951]: pgsql_db_connect() -- 00:46:21.700 DEBUG [8951]: Database connection successful -- 00:46:21.700 INFO [8951]: _SERVER found -- 00:46:21.700 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 00:46:21.700 INFO [8951]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:46:21.700 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2f6cqgkhgjtuf7lkr7mua1oah50som3e -- 00:46:21.700 INFO [8951]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:46:21.700 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:21.711 INFO [8951]: COREGRADE is stopping... -- 00:46:21.711 DEBUG [8951]: Closing database connection -- 00:46:21.711 SQL [8951]: pgsql_close() -- 00:46:23.462 INFO [8951]: COREGRADE is starting... -- 00:46:23.463 INFO [8951]: Version from config: 1.0 -- 00:46:23.463 DEBUG [8951]: Connecting to database... -- 00:46:23.463 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:23.463 SQL [8951]: pgsql_db_connect() -- 00:46:23.467 DEBUG [8951]: Database connection successful -- 00:46:23.467 INFO [8951]: _SERVER found -- 00:46:23.467 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 00:46:23.467 INFO [8951]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:46:23.467 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2f6cqgkhgjtuf7lkr7mua1oah50som3e -- 00:46:23.467 INFO [8951]: QUERY_STRING = /member/page -- 00:46:23.467 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:23.502 INFO [8951]: COREGRADE is stopping... -- 00:46:23.502 DEBUG [8951]: Closing database connection -- 00:46:23.502 SQL [8951]: pgsql_close() -- 00:46:23.781 INFO [8951]: COREGRADE is starting... -- 00:46:23.781 INFO [8951]: Version from config: 1.0 -- 00:46:23.781 DEBUG [8951]: Connecting to database... -- 00:46:23.781 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:23.781 SQL [8951]: pgsql_db_connect() -- 00:46:23.785 DEBUG [8951]: Database connection successful -- 00:46:23.785 INFO [8951]: _SERVER found -- 00:46:23.785 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 00:46:23.785 INFO [8951]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:46:23.785 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2f6cqgkhgjtuf7lkr7mua1oah50som3e -- 00:46:23.785 INFO [8951]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:46:23.785 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:23.796 INFO [8951]: COREGRADE is stopping... -- 00:46:23.796 DEBUG [8951]: Closing database connection -- 00:46:23.796 SQL [8951]: pgsql_close() -- 00:46:25.585 INFO [8951]: COREGRADE is starting... -- 00:46:25.585 INFO [8951]: Version from config: 1.0 -- 00:46:25.585 DEBUG [8951]: Connecting to database... -- 00:46:25.585 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:25.585 SQL [8951]: pgsql_db_connect() -- 00:46:25.589 DEBUG [8951]: Database connection successful -- 00:46:25.589 INFO [8951]: _SERVER found -- 00:46:25.589 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 00:46:25.589 INFO [8951]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:46:25.589 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2f6cqgkhgjtuf7lkr7mua1oah50som3e -- 00:46:25.589 INFO [8951]: QUERY_STRING = /member/viewCardAddAction -- 00:46:25.589 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:25.619 INFO [8951]: COREGRADE is stopping... -- 00:46:25.619 DEBUG [8951]: Closing database connection -- 00:46:25.619 SQL [8951]: pgsql_close() -- 00:47:10.734 INFO [8953]: COREGRADE is starting... -- 00:47:10.734 INFO [8953]: Version from config: 1.0 -- 00:47:10.734 DEBUG [8953]: Connecting to database... -- 00:47:10.734 DEBUG [8953]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:10.734 SQL [8953]: pgsql_db_connect() -- 00:47:10.738 DEBUG [8953]: Database connection successful -- 00:47:10.738 INFO [8953]: _SERVER found -- 00:47:10.738 INFO [8953]: REMOTE_ADDR = 192.168.1.13 -- 00:47:10.738 INFO [8953]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:10.738 INFO [8953]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:47:10.738 INFO [8953]: QUERY_STRING = /member/page -- 00:47:10.738 INFO [8953]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:10.779 INFO [8953]: COREGRADE is stopping... -- 00:47:10.779 DEBUG [8953]: Closing database connection -- 00:47:10.779 SQL [8953]: pgsql_close() -- 00:47:11.024 INFO [8953]: COREGRADE is starting... -- 00:47:11.025 INFO [8953]: Version from config: 1.0 -- 00:47:11.025 DEBUG [8953]: Connecting to database... -- 00:47:11.025 DEBUG [8953]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:11.025 SQL [8953]: pgsql_db_connect() -- 00:47:11.029 DEBUG [8953]: Database connection successful -- 00:47:11.029 INFO [8953]: _SERVER found -- 00:47:11.029 INFO [8953]: REMOTE_ADDR = 192.168.1.13 -- 00:47:11.029 INFO [8953]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:11.029 INFO [8953]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:47:11.029 INFO [8953]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:47:11.029 INFO [8953]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:11.040 INFO [8953]: COREGRADE is stopping... -- 00:47:11.040 DEBUG [8953]: Closing database connection -- 00:47:11.040 SQL [8953]: pgsql_close() -- 00:47:26.068 INFO [9028]: COREGRADE is starting... -- 00:47:26.068 INFO [9028]: Version from config: 1.0 -- 00:47:26.068 DEBUG [9028]: Connecting to database... -- 00:47:26.068 DEBUG [9028]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:26.068 SQL [9028]: pgsql_db_connect() -- 00:47:26.072 DEBUG [9028]: Database connection successful -- 00:47:26.072 INFO [9028]: _SERVER found -- 00:47:26.072 INFO [9028]: REMOTE_ADDR = 192.168.1.13 -- 00:47:26.072 INFO [9028]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:26.072 INFO [9028]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:47:26.072 INFO [9028]: QUERY_STRING = /member/configure -- 00:47:26.072 INFO [9028]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:26.111 INFO [9028]: COREGRADE is stopping... -- 00:47:26.111 DEBUG [9028]: Closing database connection -- 00:47:26.111 SQL [9028]: pgsql_close() -- 00:47:26.490 INFO [9028]: COREGRADE is starting... -- 00:47:26.490 INFO [9028]: Version from config: 1.0 -- 00:47:26.490 DEBUG [9028]: Connecting to database... -- 00:47:26.490 DEBUG [9028]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:26.490 SQL [9028]: pgsql_db_connect() -- 00:47:26.494 DEBUG [9028]: Database connection successful -- 00:47:26.494 INFO [9028]: _SERVER found -- 00:47:26.494 INFO [9028]: REMOTE_ADDR = 192.168.1.13 -- 00:47:26.494 INFO [9028]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:26.494 INFO [9028]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:47:26.494 INFO [9028]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:47:26.494 INFO [9028]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:26.505 INFO [9028]: COREGRADE is stopping... -- 00:47:26.505 DEBUG [9028]: Closing database connection -- 00:47:26.505 SQL [9028]: pgsql_close() -- 00:47:48.378 INFO [8952]: COREGRADE is starting... -- 00:47:48.378 INFO [8952]: Version from config: 1.0 -- 00:47:48.378 DEBUG [8952]: Connecting to database... -- 00:47:48.378 DEBUG [8952]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:48.378 SQL [8952]: pgsql_db_connect() -- 00:47:48.382 DEBUG [8952]: Database connection successful -- 00:47:48.382 INFO [8952]: _SERVER found -- 00:47:48.382 INFO [8952]: REMOTE_ADDR = 192.168.1.13 -- 00:47:48.382 INFO [8952]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:48.382 INFO [8952]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:47:48.382 INFO [8952]: QUERY_STRING = /member -- 00:47:48.382 INFO [8952]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:48.418 INFO [8952]: COREGRADE is stopping... -- 00:47:48.418 DEBUG [8952]: Closing database connection -- 00:47:48.418 SQL [8952]: pgsql_close() -- 00:47:49.214 INFO [8952]: COREGRADE is starting... -- 00:47:49.214 INFO [8952]: Version from config: 1.0 -- 00:47:49.214 DEBUG [8952]: Connecting to database... -- 00:47:49.214 DEBUG [8952]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:49.215 SQL [8952]: pgsql_db_connect() -- 00:47:49.219 DEBUG [8952]: Database connection successful -- 00:47:49.219 INFO [8952]: _SERVER found -- 00:47:49.219 INFO [8952]: REMOTE_ADDR = 192.168.1.13 -- 00:47:49.219 INFO [8952]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:49.219 INFO [8952]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:47:49.219 INFO [8952]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:47:49.219 INFO [8952]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:49.230 INFO [8952]: COREGRADE is stopping... -- 00:47:49.230 DEBUG [8952]: Closing database connection -- 00:47:49.230 SQL [8952]: pgsql_close() -- 00:47:49.238 INFO [8952]: COREGRADE is starting... -- 00:47:49.238 INFO [8952]: Version from config: 1.0 -- 00:47:49.238 DEBUG [8952]: Connecting to database... -- 00:47:49.238 DEBUG [8952]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:49.238 SQL [8952]: pgsql_db_connect() -- 00:47:49.242 DEBUG [8952]: Database connection successful -- 00:47:49.242 INFO [8952]: _SERVER found -- 00:47:49.242 INFO [8952]: REMOTE_ADDR = 192.168.1.13 -- 00:47:49.242 INFO [8952]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:49.242 INFO [8952]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:47:49.242 INFO [8952]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:47:49.242 INFO [8952]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:49.253 INFO [8952]: COREGRADE is stopping... -- 00:47:49.253 DEBUG [8952]: Closing database connection -- 00:47:49.253 SQL [8952]: pgsql_close() -- 00:47:49.816 INFO [8952]: COREGRADE is starting... -- 00:47:49.817 INFO [8952]: Version from config: 1.0 -- 00:47:49.817 DEBUG [8952]: Connecting to database... -- 00:47:49.817 DEBUG [8952]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:49.817 SQL [8952]: pgsql_db_connect() -- 00:47:49.821 DEBUG [8952]: Database connection successful -- 00:47:49.821 INFO [8952]: _SERVER found -- 00:47:49.821 INFO [8952]: REMOTE_ADDR = 192.168.1.13 -- 00:47:49.821 INFO [8952]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:49.821 INFO [8952]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:47:49.821 INFO [8952]: QUERY_STRING = /member -- 00:47:49.821 INFO [8952]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:49.855 INFO [8952]: COREGRADE is stopping... -- 00:47:49.856 DEBUG [8952]: Closing database connection -- 00:47:49.856 SQL [8952]: pgsql_close() -- 00:47:50.078 INFO [8952]: COREGRADE is starting... -- 00:47:50.078 INFO [8952]: Version from config: 1.0 -- 00:47:50.078 DEBUG [8952]: Connecting to database... -- 00:47:50.078 DEBUG [8952]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:50.078 SQL [8952]: pgsql_db_connect() -- 00:47:50.086 INFO [9031]: COREGRADE is starting... -- 00:47:50.087 INFO [9031]: Version from config: 1.0 -- 00:47:50.087 DEBUG [9031]: Connecting to database... -- 00:47:50.087 DEBUG [9031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:50.087 SQL [9031]: pgsql_db_connect() -- 00:47:50.082 DEBUG [8952]: Database connection successful -- 00:47:50.082 INFO [8952]: _SERVER found -- 00:47:50.082 INFO [8952]: REMOTE_ADDR = 192.168.1.13 -- 00:47:50.082 INFO [8952]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:50.082 INFO [8952]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:47:50.082 INFO [8952]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:47:50.082 INFO [8952]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:50.094 INFO [8952]: COREGRADE is stopping... -- 00:47:50.094 DEBUG [8952]: Closing database connection -- 00:47:50.094 SQL [8952]: pgsql_close() -- 00:47:50.090 DEBUG [9031]: Database connection successful -- 00:47:50.090 INFO [9031]: _SERVER found -- 00:47:50.090 INFO [9031]: REMOTE_ADDR = 192.168.1.13 -- 00:47:50.090 INFO [9031]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:50.090 INFO [9031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:47:50.090 INFO [9031]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:47:50.090 INFO [9031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:50.102 INFO [9031]: COREGRADE is stopping... -- 00:47:50.102 DEBUG [9031]: Closing database connection -- 00:47:50.102 SQL [9031]: pgsql_close() -- 00:47:50.844 INFO [9031]: COREGRADE is starting... -- 00:47:50.844 INFO [9031]: Version from config: 1.0 -- 00:47:50.844 DEBUG [9031]: Connecting to database... -- 00:47:50.844 DEBUG [9031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:50.844 SQL [9031]: pgsql_db_connect() -- 00:47:50.848 DEBUG [9031]: Database connection successful -- 00:47:50.848 INFO [9031]: _SERVER found -- 00:47:50.848 INFO [9031]: REMOTE_ADDR = 192.168.1.13 -- 00:47:50.848 INFO [9031]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:50.848 INFO [9031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:47:50.848 INFO [9031]: QUERY_STRING = /member/page -- 00:47:50.848 INFO [9031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:50.885 INFO [9031]: COREGRADE is stopping... -- 00:47:50.885 DEBUG [9031]: Closing database connection -- 00:47:50.885 SQL [9031]: pgsql_close() -- 00:47:51.232 INFO [9031]: COREGRADE is starting... -- 00:47:51.232 INFO [9031]: Version from config: 1.0 -- 00:47:51.232 DEBUG [9031]: Connecting to database... -- 00:47:51.232 DEBUG [9031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:51.232 SQL [9031]: pgsql_db_connect() -- 00:47:51.236 DEBUG [9031]: Database connection successful -- 00:47:51.236 INFO [9031]: _SERVER found -- 00:47:51.236 INFO [9031]: REMOTE_ADDR = 192.168.1.13 -- 00:47:51.236 INFO [9031]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:51.236 INFO [9031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:47:51.236 INFO [9031]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:47:51.236 INFO [9031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:51.247 INFO [9031]: COREGRADE is stopping... -- 00:47:51.247 DEBUG [9031]: Closing database connection -- 00:47:51.247 SQL [9031]: pgsql_close() -- 00:47:51.249 INFO [8952]: COREGRADE is starting... -- 00:47:51.249 INFO [8952]: Version from config: 1.0 -- 00:47:51.249 DEBUG [8952]: Connecting to database... -- 00:47:51.249 DEBUG [8952]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:51.249 SQL [8952]: pgsql_db_connect() -- 00:47:51.253 DEBUG [8952]: Database connection successful -- 00:47:51.253 INFO [8952]: _SERVER found -- 00:47:51.253 INFO [8952]: REMOTE_ADDR = 192.168.1.13 -- 00:47:51.253 INFO [8952]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:51.253 INFO [8952]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:47:51.253 INFO [8952]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:47:51.253 INFO [8952]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:51.264 INFO [8952]: COREGRADE is stopping... -- 00:47:51.264 DEBUG [8952]: Closing database connection -- 00:47:51.264 SQL [8952]: pgsql_close() -- 00:48:05.911 INFO [9032]: COREGRADE is starting... -- 00:48:05.911 INFO [9032]: Version from config: 1.0 -- 00:48:05.911 DEBUG [9032]: Connecting to database... -- 00:48:05.911 DEBUG [9032]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:05.911 SQL [9032]: pgsql_db_connect() -- 00:48:05.915 DEBUG [9032]: Database connection successful -- 00:48:05.915 INFO [9032]: _SERVER found -- 00:48:05.915 INFO [9032]: REMOTE_ADDR = 192.168.1.13 -- 00:48:05.915 INFO [9032]: SERVER_NAME = oameye.works.coregrade.com -- 00:48:05.915 INFO [9032]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:48:05.915 INFO [9032]: QUERY_STRING = /member/configure -- 00:48:05.915 INFO [9032]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:48:05.954 INFO [9032]: COREGRADE is stopping... -- 00:48:05.954 DEBUG [9032]: Closing database connection -- 00:48:05.954 SQL [9032]: pgsql_close() -- 00:48:06.347 INFO [9032]: COREGRADE is starting... -- 00:48:06.348 INFO [9032]: Version from config: 1.0 -- 00:48:06.348 DEBUG [9032]: Connecting to database... -- 00:48:06.348 DEBUG [9032]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:06.348 SQL [9032]: pgsql_db_connect() -- 00:48:06.352 DEBUG [9032]: Database connection successful -- 00:48:06.352 INFO [9032]: _SERVER found -- 00:48:06.352 INFO [9032]: REMOTE_ADDR = 192.168.1.13 -- 00:48:06.352 INFO [9032]: SERVER_NAME = oameye.works.coregrade.com -- 00:48:06.352 INFO [9032]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:48:06.352 INFO [9032]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:48:06.352 INFO [9032]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:48:06.363 INFO [9032]: COREGRADE is stopping... -- 00:48:06.363 DEBUG [9032]: Closing database connection -- 00:48:06.363 SQL [9032]: pgsql_close() -- 00:48:06.522 INFO [9032]: COREGRADE is starting... -- 00:48:06.522 INFO [9032]: Version from config: 1.0 -- 00:48:06.522 DEBUG [9032]: Connecting to database... -- 00:48:06.522 DEBUG [9032]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:06.522 SQL [9032]: pgsql_db_connect() -- 00:48:06.526 DEBUG [9032]: Database connection successful -- 00:48:06.526 INFO [9032]: _SERVER found -- 00:48:06.526 INFO [9032]: REMOTE_ADDR = 192.168.1.13 -- 00:48:06.526 INFO [9032]: SERVER_NAME = oameye.works.coregrade.com -- 00:48:06.526 INFO [9032]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:48:06.526 INFO [9032]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:48:06.526 INFO [9032]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:48:06.537 INFO [9032]: COREGRADE is stopping... -- 00:48:06.537 DEBUG [9032]: Closing database connection -- 00:48:06.537 SQL [9032]: pgsql_close() -- 00:54:58.180 INFO [8950]: COREGRADE is starting... -- 00:54:58.180 INFO [8950]: Version from config: 1.0 -- 00:54:58.180 DEBUG [8950]: Connecting to database... -- 00:54:58.180 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:54:58.180 SQL [8950]: pgsql_db_connect() -- 00:54:58.184 DEBUG [8950]: Database connection successful -- 00:54:58.184 INFO [8950]: _SERVER found -- 00:54:58.184 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 00:54:58.184 INFO [8950]: SERVER_NAME = oameye.works.coregrade.com -- 00:54:58.184 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:54:58.184 INFO [8950]: QUERY_STRING = /welcome/viewLogin -- 00:54:58.184 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:54:58.215 INFO [8950]: COREGRADE is stopping... -- 00:54:58.215 DEBUG [8950]: Closing database connection -- 00:54:58.215 SQL [8950]: pgsql_close() -- 00:54:58.269 INFO [8950]: COREGRADE is starting... -- 00:54:58.269 INFO [8950]: Version from config: 1.0 -- 00:54:58.269 DEBUG [8950]: Connecting to database... -- 00:54:58.269 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:54:58.269 SQL [8950]: pgsql_db_connect() -- 00:54:58.273 DEBUG [8950]: Database connection successful -- 00:54:58.273 INFO [8950]: _SERVER found -- 00:54:58.273 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 00:54:58.273 INFO [8950]: SERVER_NAME = oameye.works.coregrade.com -- 00:54:58.273 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:54:58.273 INFO [8950]: QUERY_STRING = /auth/index -- 00:54:58.273 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:54:58.304 INFO [8950]: COREGRADE is stopping... -- 00:54:58.304 DEBUG [8950]: Closing database connection -- 00:54:58.304 SQL [8950]: pgsql_close() -- 00:55:00.590 INFO [8950]: COREGRADE is starting... -- 00:55:00.590 INFO [8950]: Version from config: 1.0 -- 00:55:00.590 DEBUG [8950]: Connecting to database... -- 00:55:00.590 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:55:00.590 SQL [8950]: pgsql_db_connect() -- 00:55:00.594 DEBUG [8950]: Database connection successful -- 00:55:00.594 INFO [8950]: _SERVER found -- 00:55:00.594 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 00:55:00.594 INFO [8950]: SERVER_NAME = oameye.works.coregrade.com -- 00:55:00.594 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:55:00.594 INFO [8950]: QUERY_STRING = /welcome/viewLogin -- 00:55:00.594 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:55:00.624 INFO [8950]: COREGRADE is stopping... -- 00:55:00.624 DEBUG [8950]: Closing database connection -- 00:55:00.624 SQL [8950]: pgsql_close() -- 00:55:00.759 INFO [8950]: COREGRADE is starting... -- 00:55:00.759 INFO [8950]: Version from config: 1.0 -- 00:55:00.759 DEBUG [8950]: Connecting to database... -- 00:55:00.759 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:55:00.759 SQL [8950]: pgsql_db_connect() -- 00:55:00.763 DEBUG [8950]: Database connection successful -- 00:55:00.763 INFO [8950]: _SERVER found -- 00:55:00.763 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 00:55:00.763 INFO [8950]: SERVER_NAME = oameye.works.coregrade.com -- 00:55:00.763 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:55:00.763 INFO [8950]: QUERY_STRING = /auth/index -- 00:55:00.763 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:55:00.794 INFO [8950]: COREGRADE is stopping... -- 00:55:00.794 DEBUG [8950]: Closing database connection -- 00:55:00.794 SQL [8950]: pgsql_close() -- 00:55:03.192 INFO [8950]: COREGRADE is starting... -- 00:55:03.193 INFO [8950]: Version from config: 1.0 -- 00:55:03.193 DEBUG [8950]: Connecting to database... -- 00:55:03.193 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:55:03.193 SQL [8950]: pgsql_db_connect() -- 00:55:03.196 DEBUG [8950]: Database connection successful -- 00:55:03.196 INFO [8950]: _SERVER found -- 00:55:03.196 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 00:55:03.196 INFO [8950]: SERVER_NAME = oameye.works.coregrade.com -- 00:55:03.196 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=tvqluljps0i68q7nfn7hmhh3gu4sd23i -- 00:55:03.196 INFO [8950]: QUERY_STRING = -- 00:55:03.196 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:55:03.232 INFO [8950]: COREGRADE is stopping... -- 00:55:03.232 DEBUG [8950]: Closing database connection -- 00:55:03.232 SQL [8950]: pgsql_close() -- 00:55:03.447 INFO [8950]: COREGRADE is starting... -- 00:55:03.447 INFO [8950]: Version from config: 1.0 -- 00:55:03.447 DEBUG [8950]: Connecting to database... -- 00:55:03.447 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:55:03.447 SQL [8950]: pgsql_db_connect() -- 00:55:03.454 INFO [8949]: COREGRADE is starting... -- 00:55:03.454 INFO [8949]: Version from config: 1.0 -- 00:55:03.454 DEBUG [8949]: Connecting to database... -- 00:55:03.454 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:55:03.454 SQL [8949]: pgsql_db_connect() -- 00:55:03.452 DEBUG [8950]: Database connection successful -- 00:55:03.452 INFO [8950]: _SERVER found -- 00:55:03.452 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 00:55:03.452 INFO [8950]: SERVER_NAME = oameye.works.coregrade.com -- 00:55:03.452 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb -- 00:55:03.452 INFO [8950]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 00:55:03.452 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:55:03.463 INFO [8950]: COREGRADE is stopping... -- 00:55:03.463 DEBUG [8950]: Closing database connection -- 00:55:03.463 SQL [8950]: pgsql_close() -- 00:55:03.458 DEBUG [8949]: Database connection successful -- 00:55:03.458 INFO [8949]: _SERVER found -- 00:55:03.458 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 00:55:03.458 INFO [8949]: SERVER_NAME = oameye.works.coregrade.com -- 00:55:03.458 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb -- 00:55:03.458 INFO [8949]: QUERY_STRING = /assets/img/footer_1.jpg -- 00:55:03.458 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:55:03.470 INFO [8949]: COREGRADE is stopping... -- 00:55:03.470 DEBUG [8949]: Closing database connection -- 00:55:03.470 SQL [8949]: pgsql_close() -- 00:55:05.314 INFO [8949]: COREGRADE is starting... -- 00:55:05.314 INFO [8949]: Version from config: 1.0 -- 00:55:05.314 DEBUG [8949]: Connecting to database... -- 00:55:05.314 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:55:05.314 SQL [8949]: pgsql_db_connect() -- 00:55:05.323 INFO [8950]: COREGRADE is starting... -- 00:55:05.323 INFO [8950]: Version from config: 1.0 -- 00:55:05.323 DEBUG [8950]: Connecting to database... -- 00:55:05.323 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:55:05.323 SQL [8950]: pgsql_db_connect() -- 00:55:05.319 DEBUG [8949]: Database connection successful -- 00:55:05.319 INFO [8949]: _SERVER found -- 00:55:05.319 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 00:55:05.319 INFO [8949]: SERVER_NAME = oameye.works.coregrade.com -- 00:55:05.319 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb; _gat_gtag_UA_54829827_2=1 -- 00:55:05.319 INFO [8949]: QUERY_STRING = /welcome/viewLogin -- 00:55:05.319 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:55:05.348 INFO [8949]: COREGRADE is stopping... -- 00:55:05.348 DEBUG [8949]: Closing database connection -- 00:55:05.348 SQL [8949]: pgsql_close() -- 00:55:05.327 DEBUG [8950]: Database connection successful -- 00:55:05.327 INFO [8950]: _SERVER found -- 00:55:05.327 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 00:55:05.327 INFO [8950]: SERVER_NAME = oameye.works.coregrade.com -- 00:55:05.327 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb; _gat_gtag_UA_54829827_2=1 -- 00:55:05.327 INFO [8950]: QUERY_STRING = /auth -- 00:55:05.327 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:55:05.358 INFO [8950]: COREGRADE is stopping... -- 00:55:05.358 DEBUG [8950]: Closing database connection -- 00:55:05.358 SQL [8950]: pgsql_close() -- 00:55:05.367 INFO [8950]: COREGRADE is starting... -- 00:55:05.368 INFO [8950]: Version from config: 1.0 -- 00:55:05.368 DEBUG [8950]: Connecting to database... -- 00:55:05.368 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:55:05.368 SQL [8950]: pgsql_db_connect() -- 00:55:05.371 DEBUG [8950]: Database connection successful -- 00:55:05.371 INFO [8950]: _SERVER found -- 00:55:05.371 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 00:55:05.371 INFO [8950]: SERVER_NAME = oameye.works.coregrade.com -- 00:55:05.371 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb; _gat_gtag_UA_54829827_2=1 -- 00:55:05.371 INFO [8950]: QUERY_STRING = /auth/index -- 00:55:05.371 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:55:05.402 INFO [8950]: COREGRADE is stopping... -- 00:55:05.402 DEBUG [8950]: Closing database connection -- 00:55:05.402 SQL [8950]: pgsql_close() -- 00:55:05.596 INFO [8950]: COREGRADE is starting... -- 00:55:05.596 INFO [8950]: Version from config: 1.0 -- 00:55:05.596 DEBUG [8950]: Connecting to database... -- 00:55:05.596 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:55:05.596 SQL [8950]: pgsql_db_connect() -- 00:55:05.600 DEBUG [8950]: Database connection successful -- 00:55:05.600 INFO [8950]: _SERVER found -- 00:55:05.600 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 00:55:05.600 INFO [8950]: SERVER_NAME = oameye.works.coregrade.com -- 00:55:05.600 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb; _gat_gtag_UA_54829827_2=1 -- 00:55:05.600 INFO [8950]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 00:55:05.600 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:55:05.611 INFO [8950]: COREGRADE is stopping... -- 00:55:05.611 DEBUG [8950]: Closing database connection -- 00:55:05.611 SQL [8950]: pgsql_close() -- 00:55:05.633 INFO [8950]: COREGRADE is starting... -- 00:55:05.633 INFO [8950]: Version from config: 1.0 -- 00:55:05.633 DEBUG [8950]: Connecting to database... -- 00:55:05.634 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:55:05.634 SQL [8950]: pgsql_db_connect() -- 00:55:05.637 DEBUG [8950]: Database connection successful -- 00:55:05.637 INFO [8950]: _SERVER found -- 00:55:05.637 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 00:55:05.637 INFO [8950]: SERVER_NAME = oameye.works.coregrade.com -- 00:55:05.637 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb; _gat_gtag_UA_54829827_2=1 -- 00:55:05.637 INFO [8950]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:55:05.637 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:55:05.648 INFO [8950]: COREGRADE is stopping... -- 00:55:05.648 DEBUG [8950]: Closing database connection -- 00:55:05.648 SQL [8950]: pgsql_close() -- 00:55:07.482 INFO [8950]: COREGRADE is starting... -- 00:55:07.482 INFO [8950]: Version from config: 1.0 -- 00:55:07.482 DEBUG [8950]: Connecting to database... -- 00:55:07.482 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:55:07.482 SQL [8950]: pgsql_db_connect() -- 00:55:07.517 INFO [8950]: COREGRADE is starting... -- 00:55:07.517 INFO [8950]: Version from config: 1.0 -- 00:55:07.517 DEBUG [8950]: Connecting to database... -- 00:55:07.517 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:55:07.517 SQL [8950]: pgsql_db_connect() -- 00:55:07.521 DEBUG [8950]: Database connection successful -- 00:55:07.521 INFO [8950]: _SERVER found -- 00:55:07.521 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 00:55:07.521 INFO [8950]: SERVER_NAME = oameye.works.coregrade.com -- 00:55:07.521 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb; _gat_gtag_UA_54829827_2=1 -- 00:55:07.521 INFO [8950]: QUERY_STRING = -- 00:55:07.521 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:55:07.521 INFO [8950]: SystemStatus()09-09-********~************ -- 00:55:07.521 INFO [8950]: long coregrade_api_main(CVars in, CVars &out) -- 00:55:07.521 INFO [8950]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 00:55:07.521 INFO [8950]: account calls -- 00:55:07.521 INFO [8950]: account_calls() -- 00:55:07.521 INFO [8950]: LoginCoreGradeAccount() -- 00:55:07.521 FLOG_MAX [8950]: REQ_STRING(username) -- 00:55:07.521 FLOG_MAX [8950]: REQ_STRING(password) -- 00:55:07.521 FLOG_MAX [8950]: REQ_STRING(sessionid) -- 00:55:07.521 FLOG_MAX [8950]: long load_db_record( CVars &rec, const char * query, ... ) -- 00:55:07.521 SQL [8950]: pgsql_query() -- 00:55:07.522 SQL [8950]: About to run query: -- 00:55:07.522 SQL [8950]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 00:55:07.525 SQL [8950]: Found rows: 1 -- 00:55:07.525 FLOG_MAX [8950]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 00:55:07.525 INFO [8950]: long SessionCheck(long uid, const char *sessionid, int create ) -- 00:55:07.525 SQL [8950]: pgsql_exec() -- 00:55:07.525 SQL [8950]: About to run query: -- 00:55:07.525 SQL [8950]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 00:55:07.526 SQL [8950]: PQcmdTuples: 0 -- 00:55:07.526 SQL [8950]: Affected rows: 0 -- 00:55:07.526 SQL [8950]: pgsql_exec() -- 00:55:07.526 SQL [8950]: About to run query: -- 00:55:07.526 SQL [8950]: DELETE FROM members_session WHERE member_id=5 -- 00:55:07.527 SQL [8950]: PQcmdTuples: 1 -- 00:55:07.527 SQL [8950]: Affected rows: 1 -- 00:55:07.527 SQL [8950]: pgsql_query() -- 00:55:07.527 SQL [8950]: About to run query: -- 00:55:07.527 SQL [8950]: SELECT * FROM members_session WHERE member_id=5 AND session<>'B9A215D5D8E07CC5271A5C244DC7B232' -- 00:55:07.527 SQL [8950]: Found rows: 0 -- 00:55:07.527 SQL [8950]: Found rows: 0 -- 00:55:07.527 FLOG_MAX [8950]: long load_db_record( CVars &rec, const char * query, ... ) -- 00:55:07.527 SQL [8950]: pgsql_query() -- 00:55:07.527 SQL [8950]: About to run query: -- 00:55:07.527 SQL [8950]: SELECT * FROM members_session WHERE member_id=5 AND session='B9A215D5D8E07CC5271A5C244DC7B232' -- 00:55:07.528 SQL [8950]: Found rows: 0 -- 00:55:07.528 SQL [8950]: Found rows: 0 -- 00:55:07.528 FLOG_MAX [8950]: insert_db_record() -- 00:55:07.528 SQL [8950]: pgsql_exec() -- 00:55:07.528 SQL [8950]: About to run query: -- 00:55:07.528 SQL [8950]: INSERT INTO members_session (member_id,session) VALUES ('5','B9A215D5D8E07CC5271A5C244DC7B232') -- 00:55:07.529 SQL [8950]: PQcmdTuples: 1 -- 00:55:07.529 SQL [8950]: Affected rows: 1 -- 00:55:07.529 FLOG_MAX [8950]: SELECT currval('members_session_id_seq') -- 00:55:07.529 SQL [8950]: pgsql_query() -- 00:55:07.529 SQL [8950]: About to run query: -- 00:55:07.529 SQL [8950]: SELECT currval('members_session_id_seq') -- 00:55:07.529 SQL [8950]: Found rows: 1 -- 00:55:07.530 INFO [8950]: CreateDefaultPage() -- 00:55:07.530 FLOG_MAX [8950]: long load_db_record( CVars &rec, const char * query, ... ) -- 00:55:07.530 SQL [8950]: pgsql_query() -- 00:55:07.530 SQL [8950]: About to run query: -- 00:55:07.530 SQL [8950]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 00:55:07.530 SQL [8950]: Found rows: 1 -- 00:55:07.530 FLOG_MAX [8950]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 00:55:07.530 SQL [8950]: pgsql_query() -- 00:55:07.530 SQL [8950]: About to run query: -- 00:55:07.530 SQL [8950]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 00:55:07.530 SQL [8950]: Found rows: 1 -- 00:55:07.530 INFO [8950]: /CreateDefaultPage() -- 00:55:07.530 INFO [8950]: /LoginCoreGradeAccount() -- 00:55:07.530 INFO [8950]: RET: added=2020-02-05 06:47:23.982154 -- 00:55:07.530 INFO [8950]: RET: email=ameye+11@chiefsoft.com -- 00:55:07.530 INFO [8950]: RET: firstname=Olu -- 00:55:07.530 INFO [8950]: RET: id=5 -- 00:55:07.530 INFO [8950]: RET: last_login= -- 00:55:07.530 INFO [8950]: RET: lastname=Amey -- 00:55:07.530 INFO [8950]: RET: loc=192.168.1.13 -- 00:55:07.530 INFO [8950]: RET: member_id=5 -- 00:55:07.530 INFO [8950]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 00:55:07.530 INFO [8950]: RET: phone= -- 00:55:07.530 INFO [8950]: RET: pid= -- 00:55:07.530 INFO [8950]: RET: result=YES I GET TO BACK END -- 00:55:07.530 INFO [8950]: RET: sessionid=B9A215D5D8E07CC5271A5C244DC7B232 -- 00:55:07.530 INFO [8950]: RET: status=1 -- 00:55:07.530 INFO [8950]: RET: stauts=OK -- 00:55:07.530 INFO [8950]: RET: username=ameye+11@chiefsoft.com -- 00:55:07.530 INFO [8950]: RET: verified= -- 00:55:07.532 INFO [8950]: COREGRADE is stopping... -- 00:55:07.532 DEBUG [8950]: Closing database connection -- 00:55:07.532 SQL [8950]: pgsql_close() -- 00:55:07.486 DEBUG [8950]: Database connection successful -- 00:55:07.486 INFO [8950]: _SERVER found -- 00:55:07.486 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 00:55:07.486 INFO [8950]: SERVER_NAME = oameye.works.coregrade.com -- 00:55:07.486 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb; _gat_gtag_UA_54829827_2=1 -- 00:55:07.486 INFO [8950]: QUERY_STRING = /auth -- 00:55:07.486 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:55:07.532 INFO [8950]: COREGRADE is stopping... -- 00:55:07.532 DEBUG [8950]: Closing database connection -- 00:55:07.532 SQL [8950]: pgsql_close() -- 00:55:07.544 INFO [8950]: COREGRADE is starting... -- 00:55:07.544 INFO [8950]: Version from config: 1.0 -- 00:55:07.544 DEBUG [8950]: Connecting to database... -- 00:55:07.544 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:55:07.544 SQL [8950]: pgsql_db_connect() -- 00:55:07.548 DEBUG [8950]: Database connection successful -- 00:55:07.548 INFO [8950]: _SERVER found -- 00:55:07.548 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 00:55:07.548 INFO [8950]: SERVER_NAME = oameye.works.coregrade.com -- 00:55:07.548 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb; _gat_gtag_UA_54829827_2=1 -- 00:55:07.548 INFO [8950]: QUERY_STRING = /member/index -- 00:55:07.548 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:55:07.583 INFO [8950]: COREGRADE is stopping... -- 00:55:07.583 DEBUG [8950]: Closing database connection -- 00:55:07.583 SQL [8950]: pgsql_close() -- 00:55:07.946 INFO [8950]: COREGRADE is starting... -- 00:55:07.946 INFO [8950]: Version from config: 1.0 -- 00:55:07.946 DEBUG [8950]: Connecting to database... -- 00:55:07.946 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:55:07.946 SQL [8950]: pgsql_db_connect() -- 00:55:07.950 DEBUG [8950]: Database connection successful -- 00:55:07.950 INFO [8950]: _SERVER found -- 00:55:07.950 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 00:55:07.950 INFO [8950]: SERVER_NAME = oameye.works.coregrade.com -- 00:55:07.950 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb; _gat_gtag_UA_54829827_2=1 -- 00:55:07.950 INFO [8950]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:55:07.950 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:55:07.961 INFO [8950]: COREGRADE is stopping... -- 00:55:07.961 DEBUG [8950]: Closing database connection -- 00:55:07.961 SQL [8950]: pgsql_close() -- 00:55:07.974 INFO [8950]: COREGRADE is starting... -- 00:55:07.974 INFO [8950]: Version from config: 1.0 -- 00:55:07.974 DEBUG [8950]: Connecting to database... -- 00:55:07.974 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:55:07.974 SQL [8950]: pgsql_db_connect() -- 00:55:07.977 DEBUG [8950]: Database connection successful -- 00:55:07.977 INFO [8950]: _SERVER found -- 00:55:07.977 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 00:55:07.977 INFO [8950]: SERVER_NAME = oameye.works.coregrade.com -- 00:55:07.977 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb; _gat_gtag_UA_54829827_2=1 -- 00:55:07.977 INFO [8950]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:55:07.978 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:55:07.989 INFO [8950]: COREGRADE is stopping... -- 00:55:07.989 DEBUG [8950]: Closing database connection -- 00:55:07.989 SQL [8950]: pgsql_close() -- 00:55:17.617 INFO [8951]: COREGRADE is starting... -- 00:55:17.617 INFO [8951]: Version from config: 1.0 -- 00:55:17.617 DEBUG [8951]: Connecting to database... -- 00:55:17.617 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:55:17.617 SQL [8951]: pgsql_db_connect() -- 00:55:17.621 DEBUG [8951]: Database connection successful -- 00:55:17.621 INFO [8951]: _SERVER found -- 00:55:17.621 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 00:55:17.621 INFO [8951]: SERVER_NAME = oameye.works.coregrade.com -- 00:55:17.621 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb; _gat_gtag_UA_54829827_2=1 -- 00:55:17.621 INFO [8951]: QUERY_STRING = /member/configure -- 00:55:17.621 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:55:17.656 INFO [8951]: COREGRADE is stopping... -- 00:55:17.657 DEBUG [8951]: Closing database connection -- 00:55:17.657 SQL [8951]: pgsql_close() -- 00:55:17.881 INFO [8951]: COREGRADE is starting... -- 00:55:17.881 INFO [8951]: Version from config: 1.0 -- 00:55:17.881 DEBUG [8951]: Connecting to database... -- 00:55:17.881 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:55:17.881 SQL [8951]: pgsql_db_connect() -- 00:55:17.885 DEBUG [8951]: Database connection successful -- 00:55:17.885 INFO [8951]: _SERVER found -- 00:55:17.885 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 00:55:17.885 INFO [8951]: SERVER_NAME = oameye.works.coregrade.com -- 00:55:17.885 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb; _gat_gtag_UA_54829827_2=1 -- 00:55:17.885 INFO [8951]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:55:17.885 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:55:17.896 INFO [8951]: COREGRADE is stopping... -- 00:55:17.896 DEBUG [8951]: Closing database connection -- 00:55:17.896 SQL [8951]: pgsql_close() -- 00:55:18.206 INFO [8951]: COREGRADE is starting... -- 00:55:18.207 INFO [8951]: Version from config: 1.0 -- 00:55:18.207 DEBUG [8951]: Connecting to database... -- 00:55:18.207 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:55:18.207 SQL [8951]: pgsql_db_connect() -- 00:55:18.210 DEBUG [8951]: Database connection successful -- 00:55:18.210 INFO [8951]: _SERVER found -- 00:55:18.210 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 00:55:18.210 INFO [8951]: SERVER_NAME = oameye.works.coregrade.com -- 00:55:18.210 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb; _gat_gtag_UA_54829827_2=1 -- 00:55:18.210 INFO [8951]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:55:18.210 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:55:18.222 INFO [8951]: COREGRADE is stopping... -- 00:55:18.222 DEBUG [8951]: Closing database connection -- 00:55:18.222 SQL [8951]: pgsql_close() -- 00:56:47.821 INFO [8953]: COREGRADE is starting... -- 00:56:47.821 INFO [8953]: Version from config: 1.0 -- 00:56:47.821 DEBUG [8953]: Connecting to database... -- 00:56:47.821 DEBUG [8953]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:56:47.821 SQL [8953]: pgsql_db_connect() -- 00:56:47.825 DEBUG [8953]: Database connection successful -- 00:56:47.825 INFO [8953]: _SERVER found -- 00:56:47.825 INFO [8953]: REMOTE_ADDR = 192.168.1.13 -- 00:56:47.825 INFO [8953]: SERVER_NAME = oameye.works.coregrade.com -- 00:56:47.825 INFO [8953]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb -- 00:56:47.825 INFO [8953]: QUERY_STRING = -- 00:56:47.825 INFO [8953]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:56:47.862 INFO [8953]: COREGRADE is stopping... -- 00:56:47.862 DEBUG [8953]: Closing database connection -- 00:56:47.862 SQL [8953]: pgsql_close() -- 00:56:48.393 INFO [8953]: COREGRADE is starting... -- 00:56:48.393 INFO [8953]: Version from config: 1.0 -- 00:56:48.393 DEBUG [8953]: Connecting to database... -- 00:56:48.393 DEBUG [8953]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:56:48.393 SQL [8953]: pgsql_db_connect() -- 00:56:48.397 DEBUG [8953]: Database connection successful -- 00:56:48.397 INFO [8953]: _SERVER found -- 00:56:48.397 INFO [8953]: REMOTE_ADDR = 192.168.1.13 -- 00:56:48.397 INFO [8953]: SERVER_NAME = oameye.works.coregrade.com -- 00:56:48.397 INFO [8953]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb -- 00:56:48.397 INFO [8953]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 00:56:48.397 INFO [8953]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:56:48.409 INFO [8953]: COREGRADE is stopping... -- 00:56:48.409 DEBUG [8953]: Closing database connection -- 00:56:48.409 SQL [8953]: pgsql_close() -- 00:56:48.413 INFO [9028]: COREGRADE is starting... -- 00:56:48.413 INFO [9028]: Version from config: 1.0 -- 00:56:48.413 DEBUG [9028]: Connecting to database... -- 00:56:48.413 DEBUG [9028]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:56:48.413 SQL [9028]: pgsql_db_connect() -- 00:56:48.417 DEBUG [9028]: Database connection successful -- 00:56:48.417 INFO [9028]: _SERVER found -- 00:56:48.417 INFO [9028]: REMOTE_ADDR = 192.168.1.13 -- 00:56:48.417 INFO [9028]: SERVER_NAME = oameye.works.coregrade.com -- 00:56:48.417 INFO [9028]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb -- 00:56:48.417 INFO [9028]: QUERY_STRING = /assets/img/footer_1.jpg -- 00:56:48.417 INFO [9028]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:56:48.428 INFO [9028]: COREGRADE is stopping... -- 00:56:48.428 DEBUG [9028]: Closing database connection -- 00:56:48.428 SQL [9028]: pgsql_close() -- 00:58:33.628 INFO [9031]: COREGRADE is starting... -- 00:58:33.628 INFO [9031]: Version from config: 1.0 -- 00:58:33.628 DEBUG [9031]: Connecting to database... -- 00:58:33.628 DEBUG [9031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:58:33.628 SQL [9031]: pgsql_db_connect() -- 00:58:33.632 DEBUG [9031]: Database connection successful -- 00:58:33.632 INFO [9031]: _SERVER found -- 00:58:33.632 INFO [9031]: REMOTE_ADDR = 192.168.1.13 -- 00:58:33.632 INFO [9031]: SERVER_NAME = oameye.works.coregrade.com -- 00:58:33.632 INFO [9031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb -- 00:58:33.632 INFO [9031]: QUERY_STRING = /welcome/viewLogin -- 00:58:33.632 INFO [9031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:58:33.663 INFO [9031]: COREGRADE is stopping... -- 00:58:33.663 DEBUG [9031]: Closing database connection -- 00:58:33.663 SQL [9031]: pgsql_close() -- 00:58:33.677 INFO [8952]: COREGRADE is starting... -- 00:58:33.678 INFO [8952]: Version from config: 1.0 -- 00:58:33.678 DEBUG [8952]: Connecting to database... -- 00:58:33.678 DEBUG [8952]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:58:33.678 SQL [8952]: pgsql_db_connect() -- 00:58:33.696 INFO [9031]: COREGRADE is starting... -- 00:58:33.697 INFO [9031]: Version from config: 1.0 -- 00:58:33.697 DEBUG [9031]: Connecting to database... -- 00:58:33.697 DEBUG [9031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:58:33.697 SQL [9031]: pgsql_db_connect() -- 00:58:33.681 DEBUG [8952]: Database connection successful -- 00:58:33.681 INFO [8952]: _SERVER found -- 00:58:33.681 INFO [8952]: REMOTE_ADDR = 192.168.1.13 -- 00:58:33.681 INFO [8952]: SERVER_NAME = oameye.works.coregrade.com -- 00:58:33.681 INFO [8952]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb -- 00:58:33.681 INFO [8952]: QUERY_STRING = /auth -- 00:58:33.681 INFO [8952]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:58:33.713 INFO [8952]: COREGRADE is stopping... -- 00:58:33.713 DEBUG [8952]: Closing database connection -- 00:58:33.713 SQL [8952]: pgsql_close() -- 00:58:33.701 DEBUG [9031]: Database connection successful -- 00:58:33.701 INFO [9031]: _SERVER found -- 00:58:33.701 INFO [9031]: REMOTE_ADDR = 192.168.1.13 -- 00:58:33.701 INFO [9031]: SERVER_NAME = oameye.works.coregrade.com -- 00:58:33.701 INFO [9031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb -- 00:58:33.701 INFO [9031]: QUERY_STRING = /auth/index -- 00:58:33.701 INFO [9031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:58:33.733 INFO [9031]: COREGRADE is stopping... -- 00:58:33.733 DEBUG [9031]: Closing database connection -- 00:58:33.733 SQL [9031]: pgsql_close() -- 00:58:34.107 INFO [9031]: COREGRADE is starting... -- 00:58:34.107 INFO [9031]: Version from config: 1.0 -- 00:58:34.107 DEBUG [9031]: Connecting to database... -- 00:58:34.107 DEBUG [9031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:58:34.108 SQL [9031]: pgsql_db_connect() -- 00:58:34.111 DEBUG [9031]: Database connection successful -- 00:58:34.112 INFO [9031]: _SERVER found -- 00:58:34.112 INFO [9031]: REMOTE_ADDR = 192.168.1.13 -- 00:58:34.112 INFO [9031]: SERVER_NAME = oameye.works.coregrade.com -- 00:58:34.112 INFO [9031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb -- 00:58:34.112 INFO [9031]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 00:58:34.112 INFO [9031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:58:34.123 INFO [9031]: COREGRADE is stopping... -- 00:58:34.123 DEBUG [9031]: Closing database connection -- 00:58:34.123 SQL [9031]: pgsql_close() -- 00:58:34.150 INFO [9031]: COREGRADE is starting... -- 00:58:34.150 INFO [9031]: Version from config: 1.0 -- 00:58:34.150 DEBUG [9031]: Connecting to database... -- 00:58:34.150 DEBUG [9031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:58:34.150 SQL [9031]: pgsql_db_connect() -- 00:58:34.154 DEBUG [9031]: Database connection successful -- 00:58:34.154 INFO [9031]: _SERVER found -- 00:58:34.154 INFO [9031]: REMOTE_ADDR = 192.168.1.13 -- 00:58:34.154 INFO [9031]: SERVER_NAME = oameye.works.coregrade.com -- 00:58:34.154 INFO [9031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb -- 00:58:34.154 INFO [9031]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:58:34.154 INFO [9031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:58:34.165 INFO [9031]: COREGRADE is stopping... -- 00:58:34.165 DEBUG [9031]: Closing database connection -- 00:58:34.165 SQL [9031]: pgsql_close() -- 00:59:08.979 INFO [9032]: COREGRADE is starting... -- 00:59:08.979 INFO [9032]: Version from config: 1.0 -- 00:59:08.979 DEBUG [9032]: Connecting to database... -- 00:59:08.979 DEBUG [9032]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:59:08.979 SQL [9032]: pgsql_db_connect() -- 00:59:08.984 DEBUG [9032]: Database connection successful -- 00:59:08.984 INFO [9032]: _SERVER found -- 00:59:08.984 INFO [9032]: REMOTE_ADDR = 192.168.1.13 -- 00:59:08.984 INFO [9032]: SERVER_NAME = oameye.works.coregrade.com -- 00:59:08.984 INFO [9032]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb -- 00:59:08.984 INFO [9032]: QUERY_STRING = /auth/newuser -- 00:59:08.984 INFO [9032]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:59:09.015 INFO [9032]: COREGRADE is stopping... -- 00:59:09.015 DEBUG [9032]: Closing database connection -- 00:59:09.015 SQL [9032]: pgsql_close() -- 00:59:09.220 INFO [9032]: COREGRADE is starting... -- 00:59:09.220 INFO [9032]: Version from config: 1.0 -- 00:59:09.220 DEBUG [9032]: Connecting to database... -- 00:59:09.220 DEBUG [9032]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:59:09.220 SQL [9032]: pgsql_db_connect() -- 00:59:09.224 DEBUG [9032]: Database connection successful -- 00:59:09.224 INFO [9032]: _SERVER found -- 00:59:09.224 INFO [9032]: REMOTE_ADDR = 192.168.1.13 -- 00:59:09.224 INFO [9032]: SERVER_NAME = oameye.works.coregrade.com -- 00:59:09.224 INFO [9032]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb -- 00:59:09.224 INFO [9032]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 00:59:09.224 INFO [9032]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:59:09.235 INFO [9032]: COREGRADE is stopping... -- 00:59:09.235 DEBUG [9032]: Closing database connection -- 00:59:09.235 SQL [9032]: pgsql_close() -- 00:59:09.242 INFO [8949]: COREGRADE is starting... -- 00:59:09.242 INFO [8949]: Version from config: 1.0 -- 00:59:09.242 DEBUG [8949]: Connecting to database... -- 00:59:09.242 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:59:09.242 SQL [8949]: pgsql_db_connect() -- 00:59:09.246 DEBUG [8949]: Database connection successful -- 00:59:09.246 INFO [8949]: _SERVER found -- 00:59:09.246 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 00:59:09.246 INFO [8949]: SERVER_NAME = oameye.works.coregrade.com -- 00:59:09.246 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb -- 00:59:09.246 INFO [8949]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:59:09.246 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:59:09.258 INFO [8949]: COREGRADE is stopping... -- 00:59:09.258 DEBUG [8949]: Closing database connection -- 00:59:09.258 SQL [8949]: pgsql_close() -- 00:59:24.518 INFO [8950]: COREGRADE is starting... -- 00:59:24.519 INFO [8950]: Version from config: 1.0 -- 00:59:24.519 DEBUG [8950]: Connecting to database... -- 00:59:24.519 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:59:24.519 SQL [8950]: pgsql_db_connect() -- 00:59:24.523 DEBUG [8950]: Database connection successful -- 00:59:24.523 INFO [8950]: _SERVER found -- 00:59:24.523 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 00:59:24.523 INFO [8950]: SERVER_NAME = oameye.works.coregrade.com -- 00:59:24.523 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb -- 00:59:24.523 INFO [8950]: QUERY_STRING = /auth -- 00:59:24.523 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:59:24.555 INFO [8950]: COREGRADE is stopping... -- 00:59:24.555 DEBUG [8950]: Closing database connection -- 00:59:24.555 SQL [8950]: pgsql_close() -- 00:59:24.785 INFO [8950]: COREGRADE is starting... -- 00:59:24.785 INFO [8950]: Version from config: 1.0 -- 00:59:24.785 DEBUG [8950]: Connecting to database... -- 00:59:24.785 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:59:24.785 SQL [8950]: pgsql_db_connect() -- 00:59:24.789 DEBUG [8950]: Database connection successful -- 00:59:24.789 INFO [8950]: _SERVER found -- 00:59:24.789 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 00:59:24.789 INFO [8950]: SERVER_NAME = oameye.works.coregrade.com -- 00:59:24.789 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb -- 00:59:24.789 INFO [8950]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 00:59:24.789 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:59:24.800 INFO [8950]: COREGRADE is stopping... -- 00:59:24.800 DEBUG [8950]: Closing database connection -- 00:59:24.800 SQL [8950]: pgsql_close() -- 00:59:24.814 INFO [8950]: COREGRADE is starting... -- 00:59:24.814 INFO [8950]: Version from config: 1.0 -- 00:59:24.814 DEBUG [8950]: Connecting to database... -- 00:59:24.814 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:59:24.814 SQL [8950]: pgsql_db_connect() -- 00:59:24.817 DEBUG [8950]: Database connection successful -- 00:59:24.817 INFO [8950]: _SERVER found -- 00:59:24.817 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 00:59:24.817 INFO [8950]: SERVER_NAME = oameye.works.coregrade.com -- 00:59:24.817 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb -- 00:59:24.817 INFO [8950]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:59:24.817 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:59:24.828 INFO [8950]: COREGRADE is stopping... -- 00:59:24.828 DEBUG [8950]: Closing database connection -- 00:59:24.828 SQL [8950]: pgsql_close() -- 00:59:26.178 INFO [8950]: COREGRADE is starting... -- 00:59:26.178 INFO [8950]: Version from config: 1.0 -- 00:59:26.178 DEBUG [8950]: Connecting to database... -- 00:59:26.178 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:59:26.178 SQL [8950]: pgsql_db_connect() -- 00:59:26.182 DEBUG [8950]: Database connection successful -- 00:59:26.182 INFO [8950]: _SERVER found -- 00:59:26.182 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 00:59:26.182 INFO [8950]: SERVER_NAME = oameye.works.coregrade.com -- 00:59:26.182 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb -- 00:59:26.182 INFO [8950]: QUERY_STRING = /auth/resetpass -- 00:59:26.182 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:59:26.213 INFO [8950]: COREGRADE is stopping... -- 00:59:26.213 DEBUG [8950]: Closing database connection -- 00:59:26.213 SQL [8950]: pgsql_close() -- 00:59:26.432 INFO [8950]: COREGRADE is starting... -- 00:59:26.432 INFO [8950]: Version from config: 1.0 -- 00:59:26.432 DEBUG [8950]: Connecting to database... -- 00:59:26.433 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:59:26.433 SQL [8950]: pgsql_db_connect() -- 00:59:26.437 DEBUG [8950]: Database connection successful -- 00:59:26.437 INFO [8950]: _SERVER found -- 00:59:26.437 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 00:59:26.437 INFO [8950]: SERVER_NAME = oameye.works.coregrade.com -- 00:59:26.437 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb -- 00:59:26.437 INFO [8950]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:59:26.437 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:59:26.448 INFO [8950]: COREGRADE is stopping... -- 00:59:26.448 DEBUG [8950]: Closing database connection -- 00:59:26.448 SQL [8950]: pgsql_close() -- 00:59:37.065 INFO [8951]: COREGRADE is starting... -- 00:59:37.066 INFO [8951]: Version from config: 1.0 -- 00:59:37.066 DEBUG [8951]: Connecting to database... -- 00:59:37.066 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:59:37.066 SQL [8951]: pgsql_db_connect() -- 00:59:37.070 DEBUG [8951]: Database connection successful -- 00:59:37.070 INFO [8951]: _SERVER found -- 00:59:37.070 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 00:59:37.070 INFO [8951]: SERVER_NAME = oameye.works.coregrade.com -- 00:59:37.070 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb -- 00:59:37.070 INFO [8951]: QUERY_STRING = /auth -- 00:59:37.070 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:59:37.102 INFO [8951]: COREGRADE is stopping... -- 00:59:37.102 DEBUG [8951]: Closing database connection -- 00:59:37.102 SQL [8951]: pgsql_close() -- 00:59:37.359 INFO [8951]: COREGRADE is starting... -- 00:59:37.359 INFO [8951]: Version from config: 1.0 -- 00:59:37.359 DEBUG [8951]: Connecting to database... -- 00:59:37.359 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:59:37.359 SQL [8951]: pgsql_db_connect() -- 00:59:37.363 DEBUG [8951]: Database connection successful -- 00:59:37.363 INFO [8951]: _SERVER found -- 00:59:37.363 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 00:59:37.363 INFO [8951]: SERVER_NAME = oameye.works.coregrade.com -- 00:59:37.363 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb -- 00:59:37.363 INFO [8951]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:59:37.363 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:59:37.374 INFO [8951]: COREGRADE is stopping... -- 00:59:37.374 DEBUG [8951]: Closing database connection -- 00:59:37.374 SQL [8951]: pgsql_close() -- 00:59:38.789 INFO [8951]: COREGRADE is starting... -- 00:59:38.790 INFO [8951]: Version from config: 1.0 -- 00:59:38.790 DEBUG [8951]: Connecting to database... -- 00:59:38.790 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:59:38.790 SQL [8951]: pgsql_db_connect() -- 00:59:38.824 INFO [8951]: COREGRADE is starting... -- 00:59:38.824 INFO [8951]: Version from config: 1.0 -- 00:59:38.824 DEBUG [8951]: Connecting to database... -- 00:59:38.824 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:59:38.824 SQL [8951]: pgsql_db_connect() -- 00:59:38.828 DEBUG [8951]: Database connection successful -- 00:59:38.828 INFO [8951]: _SERVER found -- 00:59:38.828 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 00:59:38.828 INFO [8951]: SERVER_NAME = oameye.works.coregrade.com -- 00:59:38.828 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb -- 00:59:38.828 INFO [8951]: QUERY_STRING = -- 00:59:38.828 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:59:38.828 INFO [8951]: SystemStatus()09-09-********~************ -- 00:59:38.828 INFO [8951]: long coregrade_api_main(CVars in, CVars &out) -- 00:59:38.828 INFO [8951]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 00:59:38.828 INFO [8951]: account calls -- 00:59:38.828 INFO [8951]: account_calls() -- 00:59:38.828 INFO [8951]: LoginCoreGradeAccount() -- 00:59:38.828 FLOG_MAX [8951]: REQ_STRING(username) -- 00:59:38.828 FLOG_MAX [8951]: REQ_STRING(password) -- 00:59:38.829 FLOG_MAX [8951]: REQ_STRING(sessionid) -- 00:59:38.829 FLOG_MAX [8951]: long load_db_record( CVars &rec, const char * query, ... ) -- 00:59:38.829 SQL [8951]: pgsql_query() -- 00:59:38.829 SQL [8951]: About to run query: -- 00:59:38.829 SQL [8951]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 00:59:38.832 SQL [8951]: Found rows: 1 -- 00:59:38.832 FLOG_MAX [8951]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 00:59:38.832 INFO [8951]: long SessionCheck(long uid, const char *sessionid, int create ) -- 00:59:38.832 SQL [8951]: pgsql_exec() -- 00:59:38.832 SQL [8951]: About to run query: -- 00:59:38.832 SQL [8951]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 00:59:38.833 SQL [8951]: PQcmdTuples: 0 -- 00:59:38.833 SQL [8951]: Affected rows: 0 -- 00:59:38.833 SQL [8951]: pgsql_exec() -- 00:59:38.833 SQL [8951]: About to run query: -- 00:59:38.833 SQL [8951]: DELETE FROM members_session WHERE member_id=5 -- 00:59:38.834 SQL [8951]: PQcmdTuples: 1 -- 00:59:38.834 SQL [8951]: Affected rows: 1 -- 00:59:38.834 SQL [8951]: pgsql_query() -- 00:59:38.834 SQL [8951]: About to run query: -- 00:59:38.834 SQL [8951]: SELECT * FROM members_session WHERE member_id=5 AND session<>'8ED5FAC5F9C8CEFFA7C73ABF5FC39868' -- 00:59:38.834 SQL [8951]: Found rows: 0 -- 00:59:38.834 SQL [8951]: Found rows: 0 -- 00:59:38.835 FLOG_MAX [8951]: long load_db_record( CVars &rec, const char * query, ... ) -- 00:59:38.835 SQL [8951]: pgsql_query() -- 00:59:38.835 SQL [8951]: About to run query: -- 00:59:38.835 SQL [8951]: SELECT * FROM members_session WHERE member_id=5 AND session='8ED5FAC5F9C8CEFFA7C73ABF5FC39868' -- 00:59:38.835 SQL [8951]: Found rows: 0 -- 00:59:38.835 SQL [8951]: Found rows: 0 -- 00:59:38.835 FLOG_MAX [8951]: insert_db_record() -- 00:59:38.835 SQL [8951]: pgsql_exec() -- 00:59:38.835 SQL [8951]: About to run query: -- 00:59:38.835 SQL [8951]: INSERT INTO members_session (member_id,session) VALUES ('5','8ED5FAC5F9C8CEFFA7C73ABF5FC39868') -- 00:59:38.837 SQL [8951]: PQcmdTuples: 1 -- 00:59:38.837 SQL [8951]: Affected rows: 1 -- 00:59:38.837 FLOG_MAX [8951]: SELECT currval('members_session_id_seq') -- 00:59:38.837 SQL [8951]: pgsql_query() -- 00:59:38.837 SQL [8951]: About to run query: -- 00:59:38.837 SQL [8951]: SELECT currval('members_session_id_seq') -- 00:59:38.837 SQL [8951]: Found rows: 1 -- 00:59:38.837 INFO [8951]: CreateDefaultPage() -- 00:59:38.837 FLOG_MAX [8951]: long load_db_record( CVars &rec, const char * query, ... ) -- 00:59:38.837 SQL [8951]: pgsql_query() -- 00:59:38.837 SQL [8951]: About to run query: -- 00:59:38.837 SQL [8951]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 00:59:38.838 SQL [8951]: Found rows: 1 -- 00:59:38.838 FLOG_MAX [8951]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 00:59:38.838 SQL [8951]: pgsql_query() -- 00:59:38.838 SQL [8951]: About to run query: -- 00:59:38.838 SQL [8951]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 00:59:38.838 SQL [8951]: Found rows: 1 -- 00:59:38.838 INFO [8951]: /CreateDefaultPage() -- 00:59:38.838 INFO [8951]: /LoginCoreGradeAccount() -- 00:59:38.838 INFO [8951]: RET: added=2020-02-05 06:47:23.982154 -- 00:59:38.838 INFO [8951]: RET: email=ameye+11@chiefsoft.com -- 00:59:38.838 INFO [8951]: RET: firstname=Olu -- 00:59:38.838 INFO [8951]: RET: id=5 -- 00:59:38.838 INFO [8951]: RET: last_login= -- 00:59:38.838 INFO [8951]: RET: lastname=Amey -- 00:59:38.838 INFO [8951]: RET: loc=192.168.1.13 -- 00:59:38.838 INFO [8951]: RET: member_id=5 -- 00:59:38.838 INFO [8951]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 00:59:38.838 INFO [8951]: RET: phone= -- 00:59:38.838 INFO [8951]: RET: pid= -- 00:59:38.838 INFO [8951]: RET: result=YES I GET TO BACK END -- 00:59:38.838 INFO [8951]: RET: sessionid=8ED5FAC5F9C8CEFFA7C73ABF5FC39868 -- 00:59:38.838 INFO [8951]: RET: status=1 -- 00:59:38.838 INFO [8951]: RET: stauts=OK -- 00:59:38.838 INFO [8951]: RET: username=ameye+11@chiefsoft.com -- 00:59:38.838 INFO [8951]: RET: verified= -- 00:59:38.840 INFO [8951]: COREGRADE is stopping... -- 00:59:38.840 DEBUG [8951]: Closing database connection -- 00:59:38.840 SQL [8951]: pgsql_close() -- 00:59:38.794 DEBUG [8951]: Database connection successful -- 00:59:38.794 INFO [8951]: _SERVER found -- 00:59:38.794 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 00:59:38.794 INFO [8951]: SERVER_NAME = oameye.works.coregrade.com -- 00:59:38.794 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb -- 00:59:38.794 INFO [8951]: QUERY_STRING = /auth -- 00:59:38.794 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:59:38.840 INFO [8951]: COREGRADE is stopping... -- 00:59:38.840 DEBUG [8951]: Closing database connection -- 00:59:38.840 SQL [8951]: pgsql_close() -- 00:59:38.879 INFO [8951]: COREGRADE is starting... -- 00:59:38.879 INFO [8951]: Version from config: 1.0 -- 00:59:38.879 DEBUG [8951]: Connecting to database... -- 00:59:38.879 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:59:38.879 SQL [8951]: pgsql_db_connect() -- 00:59:38.883 DEBUG [8951]: Database connection successful -- 00:59:38.883 INFO [8951]: _SERVER found -- 00:59:38.883 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 00:59:38.883 INFO [8951]: SERVER_NAME = oameye.works.coregrade.com -- 00:59:38.883 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb -- 00:59:38.883 INFO [8951]: QUERY_STRING = /member/index -- 00:59:38.883 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:59:38.918 INFO [8951]: COREGRADE is stopping... -- 00:59:38.918 DEBUG [8951]: Closing database connection -- 00:59:38.918 SQL [8951]: pgsql_close() -- 00:59:39.240 INFO [8951]: COREGRADE is starting... -- 00:59:39.240 INFO [8951]: Version from config: 1.0 -- 00:59:39.240 DEBUG [8951]: Connecting to database... -- 00:59:39.240 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:59:39.240 SQL [8951]: pgsql_db_connect() -- 00:59:39.244 DEBUG [8951]: Database connection successful -- 00:59:39.244 INFO [8951]: _SERVER found -- 00:59:39.244 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 00:59:39.244 INFO [8951]: SERVER_NAME = oameye.works.coregrade.com -- 00:59:39.244 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb -- 00:59:39.244 INFO [8951]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:59:39.244 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:59:39.255 INFO [8951]: COREGRADE is stopping... -- 00:59:39.255 DEBUG [8951]: Closing database connection -- 00:59:39.255 SQL [8951]: pgsql_close() -- 00:59:39.262 INFO [8951]: COREGRADE is starting... -- 00:59:39.262 INFO [8951]: Version from config: 1.0 -- 00:59:39.262 DEBUG [8951]: Connecting to database... -- 00:59:39.262 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:59:39.262 SQL [8951]: pgsql_db_connect() -- 00:59:39.266 DEBUG [8951]: Database connection successful -- 00:59:39.266 INFO [8951]: _SERVER found -- 00:59:39.266 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 00:59:39.266 INFO [8951]: SERVER_NAME = oameye.works.coregrade.com -- 00:59:39.266 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb -- 00:59:39.266 INFO [8951]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:59:39.266 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:59:39.277 INFO [8951]: COREGRADE is stopping... -- 00:59:39.277 DEBUG [8951]: Closing database connection -- 00:59:39.277 SQL [8951]: pgsql_close() -- 00:59:48.580 INFO [8953]: COREGRADE is starting... -- 00:59:48.581 INFO [8953]: Version from config: 1.0 -- 00:59:48.581 DEBUG [8953]: Connecting to database... -- 00:59:48.581 DEBUG [8953]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:59:48.581 SQL [8953]: pgsql_db_connect() -- 00:59:48.585 DEBUG [8953]: Database connection successful -- 00:59:48.585 INFO [8953]: _SERVER found -- 00:59:48.585 INFO [8953]: REMOTE_ADDR = 192.168.1.13 -- 00:59:48.585 INFO [8953]: SERVER_NAME = oameye.works.coregrade.com -- 00:59:48.585 INFO [8953]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb -- 00:59:48.585 INFO [8953]: QUERY_STRING = /member/mycalendar -- 00:59:48.585 INFO [8953]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:59:48.617 INFO [8953]: COREGRADE is stopping... -- 00:59:48.617 DEBUG [8953]: Closing database connection -- 00:59:48.617 SQL [8953]: pgsql_close() -- 00:59:49.043 INFO [8953]: COREGRADE is starting... -- 00:59:49.043 INFO [8953]: Version from config: 1.0 -- 00:59:49.043 DEBUG [8953]: Connecting to database... -- 00:59:49.043 DEBUG [8953]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:59:49.043 SQL [8953]: pgsql_db_connect() -- 00:59:49.047 DEBUG [8953]: Database connection successful -- 00:59:49.047 INFO [8953]: _SERVER found -- 00:59:49.047 INFO [8953]: REMOTE_ADDR = 192.168.1.13 -- 00:59:49.047 INFO [8953]: SERVER_NAME = oameye.works.coregrade.com -- 00:59:49.047 INFO [8953]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb -- 00:59:49.047 INFO [8953]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:59:49.047 INFO [8953]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:59:49.058 INFO [8953]: COREGRADE is stopping... -- 00:59:49.058 DEBUG [8953]: Closing database connection -- 00:59:49.058 SQL [8953]: pgsql_close() -- 01:00:14.118 INFO [9028]: COREGRADE is starting... -- 01:00:14.118 INFO [9028]: Version from config: 1.0 -- 01:00:14.118 DEBUG [9028]: Connecting to database... -- 01:00:14.118 DEBUG [9028]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:00:14.118 SQL [9028]: pgsql_db_connect() -- 01:00:14.122 DEBUG [9028]: Database connection successful -- 01:00:14.122 INFO [9028]: _SERVER found -- 01:00:14.122 INFO [9028]: REMOTE_ADDR = 192.168.1.13 -- 01:00:14.122 INFO [9028]: SERVER_NAME = oameye.works.coregrade.com -- 01:00:14.122 INFO [9028]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=69j9p1vh892bgndr5o665ig755dndqlb -- 01:00:14.122 INFO [9028]: QUERY_STRING = /member -- 01:00:14.122 INFO [9028]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:00:14.158 INFO [9028]: COREGRADE is stopping... -- 01:00:14.158 DEBUG [9028]: Closing database connection -- 01:00:14.158 SQL [9028]: pgsql_close() -- 01:00:14.486 INFO [9028]: COREGRADE is starting... -- 01:00:14.486 INFO [9028]: Version from config: 1.0 -- 01:00:14.486 DEBUG [9028]: Connecting to database... -- 01:00:14.486 DEBUG [9028]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:00:14.486 SQL [9028]: pgsql_db_connect() -- 01:00:14.490 DEBUG [9028]: Database connection successful -- 01:00:14.490 INFO [9028]: _SERVER found -- 01:00:14.490 INFO [9028]: REMOTE_ADDR = 192.168.1.13 -- 01:00:14.490 INFO [9028]: SERVER_NAME = oameye.works.coregrade.com -- 01:00:14.490 INFO [9028]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=t5qod7k87b9jilp19orh60ujhdkbmb4a -- 01:00:14.490 INFO [9028]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:00:14.490 INFO [9028]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:00:14.502 INFO [9028]: COREGRADE is stopping... -- 01:00:14.502 DEBUG [9028]: Closing database connection -- 01:00:14.502 SQL [9028]: pgsql_close() -- 01:00:17.026 INFO [9028]: COREGRADE is starting... -- 01:00:17.026 INFO [9028]: Version from config: 1.0 -- 01:00:17.026 DEBUG [9028]: Connecting to database... -- 01:00:17.026 DEBUG [9028]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:00:17.026 SQL [9028]: pgsql_db_connect() -- 01:00:17.030 DEBUG [9028]: Database connection successful -- 01:00:17.030 INFO [9028]: _SERVER found -- 01:00:17.030 INFO [9028]: REMOTE_ADDR = 192.168.1.13 -- 01:00:17.030 INFO [9028]: SERVER_NAME = oameye.works.coregrade.com -- 01:00:17.030 INFO [9028]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=t5qod7k87b9jilp19orh60ujhdkbmb4a -- 01:00:17.030 INFO [9028]: QUERY_STRING = /member/page -- 01:00:17.030 INFO [9028]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:00:17.066 INFO [9028]: COREGRADE is stopping... -- 01:00:17.066 DEBUG [9028]: Closing database connection -- 01:00:17.066 SQL [9028]: pgsql_close() -- 01:00:17.474 INFO [9028]: COREGRADE is starting... -- 01:00:17.474 INFO [9028]: Version from config: 1.0 -- 01:00:17.474 DEBUG [9028]: Connecting to database... -- 01:00:17.474 DEBUG [9028]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:00:17.474 SQL [9028]: pgsql_db_connect() -- 01:00:17.478 DEBUG [9028]: Database connection successful -- 01:00:17.478 INFO [9028]: _SERVER found -- 01:00:17.478 INFO [9028]: REMOTE_ADDR = 192.168.1.13 -- 01:00:17.478 INFO [9028]: SERVER_NAME = oameye.works.coregrade.com -- 01:00:17.478 INFO [9028]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=t5qod7k87b9jilp19orh60ujhdkbmb4a -- 01:00:17.478 INFO [9028]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:00:17.478 INFO [9028]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:00:17.489 INFO [9028]: COREGRADE is stopping... -- 01:00:17.489 DEBUG [9028]: Closing database connection -- 01:00:17.489 SQL [9028]: pgsql_close() -- 01:00:19.154 INFO [9028]: COREGRADE is starting... -- 01:00:19.155 INFO [9028]: Version from config: 1.0 -- 01:00:19.155 DEBUG [9028]: Connecting to database... -- 01:00:19.155 DEBUG [9028]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:00:19.155 SQL [9028]: pgsql_db_connect() -- 01:00:19.159 DEBUG [9028]: Database connection successful -- 01:00:19.159 INFO [9028]: _SERVER found -- 01:00:19.159 INFO [9028]: REMOTE_ADDR = 192.168.1.13 -- 01:00:19.159 INFO [9028]: SERVER_NAME = oameye.works.coregrade.com -- 01:00:19.159 INFO [9028]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=t5qod7k87b9jilp19orh60ujhdkbmb4a -- 01:00:19.159 INFO [9028]: QUERY_STRING = /member/viewCardAddAction -- 01:00:19.159 INFO [9028]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:00:19.189 INFO [9028]: COREGRADE is stopping... -- 01:00:19.189 DEBUG [9028]: Closing database connection -- 01:00:19.189 SQL [9028]: pgsql_close() -- 01:00:31.198 INFO [8952]: COREGRADE is starting... -- 01:00:31.198 INFO [8952]: Version from config: 1.0 -- 01:00:31.198 DEBUG [8952]: Connecting to database... -- 01:00:31.198 DEBUG [8952]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:00:31.198 SQL [8952]: pgsql_db_connect() -- 01:00:31.202 DEBUG [8952]: Database connection successful -- 01:00:31.202 INFO [8952]: _SERVER found -- 01:00:31.202 INFO [8952]: REMOTE_ADDR = 192.168.1.13 -- 01:00:31.202 INFO [8952]: SERVER_NAME = oameye.works.coregrade.com -- 01:00:31.202 INFO [8952]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=t5qod7k87b9jilp19orh60ujhdkbmb4a -- 01:00:31.202 INFO [8952]: QUERY_STRING = /member/viewCardAddAction -- 01:00:31.202 INFO [8952]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:00:31.233 INFO [8952]: COREGRADE is stopping... -- 01:00:31.233 DEBUG [8952]: Closing database connection -- 01:00:31.233 SQL [8952]: pgsql_close() -- 01:04:01.593 INFO [9031]: COREGRADE is starting... -- 01:04:01.593 INFO [9031]: Version from config: 1.0 -- 01:04:01.593 DEBUG [9031]: Connecting to database... -- 01:04:01.593 DEBUG [9031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:04:01.593 SQL [9031]: pgsql_db_connect() -- 01:04:01.597 DEBUG [9031]: Database connection successful -- 01:04:01.597 INFO [9031]: _SERVER found -- 01:04:01.597 INFO [9031]: REMOTE_ADDR = 192.168.1.13 -- 01:04:01.597 INFO [9031]: SERVER_NAME = oameye.works.coregrade.com -- 01:04:01.597 INFO [9031]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 01:04:01.597 INFO [9031]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 01:04:01.609 INFO [9031]: COREGRADE is stopping... -- 01:04:01.610 DEBUG [9031]: Closing database connection -- 01:04:01.610 SQL [9031]: pgsql_close() -- 01:06:24.630 INFO [9032]: COREGRADE is starting... -- 01:06:24.630 INFO [9032]: Version from config: 1.0 -- 01:06:24.630 DEBUG [9032]: Connecting to database... -- 01:06:24.630 DEBUG [9032]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:06:24.630 SQL [9032]: pgsql_db_connect() -- 01:06:24.634 DEBUG [9032]: Database connection successful -- 01:06:24.634 INFO [9032]: _SERVER found -- 01:06:24.634 INFO [9032]: REMOTE_ADDR = 192.168.1.13 -- 01:06:24.634 INFO [9032]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:06:24.634 INFO [9032]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2f6cqgkhgjtuf7lkr7mua1oah50som3e -- 01:06:24.634 INFO [9032]: QUERY_STRING = /auth -- 01:06:24.634 INFO [9032]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:06:24.667 INFO [9032]: COREGRADE is stopping... -- 01:06:24.667 DEBUG [9032]: Closing database connection -- 01:06:24.667 SQL [9032]: pgsql_close() -- 01:06:25.473 INFO [9032]: COREGRADE is starting... -- 01:06:25.473 INFO [9032]: Version from config: 1.0 -- 01:06:25.473 DEBUG [9032]: Connecting to database... -- 01:06:25.473 DEBUG [9032]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:06:25.473 SQL [9032]: pgsql_db_connect() -- 01:06:25.477 DEBUG [9032]: Database connection successful -- 01:06:25.477 INFO [9032]: _SERVER found -- 01:06:25.477 INFO [9032]: REMOTE_ADDR = 192.168.1.13 -- 01:06:25.477 INFO [9032]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:06:25.477 INFO [9032]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=bbevhc1ehhuvk8dpah9gumsmv368ih7j -- 01:06:25.477 INFO [9032]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 01:06:25.477 INFO [9032]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:06:25.488 INFO [9032]: COREGRADE is stopping... -- 01:06:25.488 DEBUG [9032]: Closing database connection -- 01:06:25.488 SQL [9032]: pgsql_close() -- 01:06:25.863 INFO [9032]: COREGRADE is starting... -- 01:06:25.863 INFO [9032]: Version from config: 1.0 -- 01:06:25.863 DEBUG [9032]: Connecting to database... -- 01:06:25.863 DEBUG [9032]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:06:25.863 SQL [9032]: pgsql_db_connect() -- 01:06:25.867 DEBUG [9032]: Database connection successful -- 01:06:25.867 INFO [9032]: _SERVER found -- 01:06:25.867 INFO [9032]: REMOTE_ADDR = 192.168.1.13 -- 01:06:25.867 INFO [9032]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:06:25.867 INFO [9032]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=bbevhc1ehhuvk8dpah9gumsmv368ih7j -- 01:06:25.867 INFO [9032]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:06:25.867 INFO [9032]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:06:25.878 INFO [9032]: COREGRADE is stopping... -- 01:06:25.878 DEBUG [9032]: Closing database connection -- 01:06:25.878 SQL [9032]: pgsql_close() -- 01:08:07.259 INFO [8949]: COREGRADE is starting... -- 01:08:07.259 INFO [8949]: Version from config: 1.0 -- 01:08:07.259 DEBUG [8949]: Connecting to database... -- 01:08:07.259 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:07.259 SQL [8949]: pgsql_db_connect() -- 01:08:07.263 DEBUG [8949]: Database connection successful -- 01:08:07.263 INFO [8949]: _SERVER found -- 01:08:07.264 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 01:08:07.264 INFO [8949]: SERVER_NAME = oameye.works.coregrade.com -- 01:08:07.264 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=t5qod7k87b9jilp19orh60ujhdkbmb4a -- 01:08:07.264 INFO [8949]: QUERY_STRING = /auth -- 01:08:07.264 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:08:07.296 INFO [8949]: COREGRADE is stopping... -- 01:08:07.296 DEBUG [8949]: Closing database connection -- 01:08:07.296 SQL [8949]: pgsql_close() -- 01:08:07.751 INFO [8949]: COREGRADE is starting... -- 01:08:07.751 INFO [8949]: Version from config: 1.0 -- 01:08:07.752 DEBUG [8949]: Connecting to database... -- 01:08:07.752 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:07.752 SQL [8949]: pgsql_db_connect() -- 01:08:07.756 DEBUG [8949]: Database connection successful -- 01:08:07.756 INFO [8949]: _SERVER found -- 01:08:07.756 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 01:08:07.756 INFO [8949]: SERVER_NAME = oameye.works.coregrade.com -- 01:08:07.756 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=6olrhqam8brkq2i2iv1guc4jpcfauibn -- 01:08:07.756 INFO [8949]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:08:07.756 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:08:07.767 INFO [8949]: COREGRADE is stopping... -- 01:08:07.767 DEBUG [8949]: Closing database connection -- 01:08:07.767 SQL [8949]: pgsql_close() -- 01:20:17.609 INFO [8950]: COREGRADE is starting... -- 01:20:17.609 INFO [8950]: Version from config: 1.0 -- 01:20:17.609 DEBUG [8950]: Connecting to database... -- 01:20:17.609 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:20:17.609 SQL [8950]: pgsql_db_connect() -- 01:20:17.614 DEBUG [8950]: Database connection successful -- 01:20:17.614 INFO [8950]: _SERVER found -- 01:20:17.614 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 01:20:17.614 INFO [8950]: SERVER_NAME = oameye.works.coregrade.com -- 01:20:17.614 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=6olrhqam8brkq2i2iv1guc4jpcfauibn -- 01:20:17.614 INFO [8950]: QUERY_STRING = /auth -- 01:20:17.614 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:20:17.647 INFO [8950]: COREGRADE is stopping... -- 01:20:17.647 DEBUG [8950]: Closing database connection -- 01:20:17.647 SQL [8950]: pgsql_close() -- 01:20:17.892 INFO [8950]: COREGRADE is starting... -- 01:20:17.892 INFO [8950]: Version from config: 1.0 -- 01:20:17.892 DEBUG [8950]: Connecting to database... -- 01:20:17.892 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:20:17.892 SQL [8950]: pgsql_db_connect() -- 01:20:17.896 DEBUG [8950]: Database connection successful -- 01:20:17.896 INFO [8950]: _SERVER found -- 01:20:17.896 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 01:20:17.896 INFO [8950]: SERVER_NAME = oameye.works.coregrade.com -- 01:20:17.896 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=6229r07lli7nnbt9bf4m4bf9c9i032r2 -- 01:20:17.896 INFO [8950]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 01:20:17.896 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:20:17.907 INFO [8950]: COREGRADE is stopping... -- 01:20:17.907 DEBUG [8950]: Closing database connection -- 01:20:17.907 SQL [8950]: pgsql_close() -- 01:20:18.758 INFO [8950]: COREGRADE is starting... -- 01:20:18.759 INFO [8950]: Version from config: 1.0 -- 01:20:18.759 DEBUG [8950]: Connecting to database... -- 01:20:18.759 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:20:18.759 SQL [8950]: pgsql_db_connect() -- 01:20:18.763 DEBUG [8950]: Database connection successful -- 01:20:18.763 INFO [8950]: _SERVER found -- 01:20:18.763 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 01:20:18.763 INFO [8950]: SERVER_NAME = oameye.works.coregrade.com -- 01:20:18.763 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=6229r07lli7nnbt9bf4m4bf9c9i032r2 -- 01:20:18.763 INFO [8950]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:20:18.763 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:20:18.774 INFO [8950]: COREGRADE is stopping... -- 01:20:18.774 DEBUG [8950]: Closing database connection -- 01:20:18.774 SQL [8950]: pgsql_close() -- 01:21:17.936 INFO [8951]: COREGRADE is starting... -- 01:21:17.937 INFO [8951]: Version from config: 1.0 -- 01:21:17.937 DEBUG [8951]: Connecting to database... -- 01:21:17.937 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:21:17.937 SQL [8951]: pgsql_db_connect() -- 01:21:17.941 DEBUG [8951]: Database connection successful -- 01:21:17.941 INFO [8951]: _SERVER found -- 01:21:17.941 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 01:21:17.941 INFO [8951]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:21:17.941 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=bbevhc1ehhuvk8dpah9gumsmv368ih7j -- 01:21:17.941 INFO [8951]: QUERY_STRING = /auth -- 01:21:17.941 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:21:18.012 INFO [8951]: COREGRADE is starting... -- 01:21:18.012 INFO [8951]: Version from config: 1.0 -- 01:21:18.012 DEBUG [8951]: Connecting to database... -- 01:21:18.012 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:21:18.012 SQL [8951]: pgsql_db_connect() -- 01:21:18.016 DEBUG [8951]: Database connection successful -- 01:21:18.016 INFO [8951]: _SERVER found -- 01:21:18.016 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 01:21:18.016 INFO [8951]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:21:18.016 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=13lmq4pekocld01iub1oaamvpkvrvnrt -- 01:21:18.016 INFO [8951]: QUERY_STRING = /member/index -- 01:21:18.016 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:21:18.051 INFO [8951]: COREGRADE is stopping... -- 01:21:18.051 DEBUG [8951]: Closing database connection -- 01:21:18.051 SQL [8951]: pgsql_close() -- 01:21:18.574 INFO [8951]: COREGRADE is starting... -- 01:21:18.574 INFO [8951]: Version from config: 1.0 -- 01:21:18.574 DEBUG [8951]: Connecting to database... -- 01:21:18.574 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:21:18.574 SQL [8951]: pgsql_db_connect() -- 01:21:18.578 DEBUG [8951]: Database connection successful -- 01:21:18.578 INFO [8951]: _SERVER found -- 01:21:18.578 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 01:21:18.578 INFO [8951]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:21:18.578 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=13lmq4pekocld01iub1oaamvpkvrvnrt -- 01:21:18.578 INFO [8951]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:21:18.578 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:21:18.589 INFO [8951]: COREGRADE is stopping... -- 01:21:18.589 DEBUG [8951]: Closing database connection -- 01:21:18.589 SQL [8951]: pgsql_close() -- 01:21:18.689 INFO [8951]: COREGRADE is starting... -- 01:21:18.689 INFO [8951]: Version from config: 1.0 -- 01:21:18.689 DEBUG [8951]: Connecting to database... -- 01:21:18.689 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:21:18.689 SQL [8951]: pgsql_db_connect() -- 01:21:18.693 DEBUG [8951]: Database connection successful -- 01:21:18.693 INFO [8951]: _SERVER found -- 01:21:18.693 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 01:21:18.693 INFO [8951]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:21:18.693 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=13lmq4pekocld01iub1oaamvpkvrvnrt -- 01:21:18.693 INFO [8951]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:21:18.693 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:21:18.704 INFO [8951]: COREGRADE is stopping... -- 01:21:18.704 DEBUG [8951]: Closing database connection -- 01:21:18.704 SQL [8951]: pgsql_close() -- 01:21:20.147 INFO [8951]: COREGRADE is starting... -- 01:21:20.148 INFO [8951]: Version from config: 1.0 -- 01:21:20.148 DEBUG [8951]: Connecting to database... -- 01:21:20.148 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:21:20.148 SQL [8951]: pgsql_db_connect() -- 01:21:20.152 DEBUG [8951]: Database connection successful -- 01:21:20.152 INFO [8951]: _SERVER found -- 01:21:20.152 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 01:21:20.152 INFO [8951]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:21:20.152 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=13lmq4pekocld01iub1oaamvpkvrvnrt -- 01:21:20.152 INFO [8951]: QUERY_STRING = /member/page -- 01:21:20.152 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:21:20.187 INFO [8951]: COREGRADE is stopping... -- 01:21:20.187 DEBUG [8951]: Closing database connection -- 01:21:20.187 SQL [8951]: pgsql_close() -- 01:21:20.543 INFO [8951]: COREGRADE is starting... -- 01:21:20.543 INFO [8951]: Version from config: 1.0 -- 01:21:20.543 DEBUG [8951]: Connecting to database... -- 01:21:20.543 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:21:20.543 SQL [8951]: pgsql_db_connect() -- 01:21:20.547 DEBUG [8951]: Database connection successful -- 01:21:20.547 INFO [8951]: _SERVER found -- 01:21:20.547 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 01:21:20.547 INFO [8951]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:21:20.547 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=13lmq4pekocld01iub1oaamvpkvrvnrt -- 01:21:20.547 INFO [8951]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:21:20.547 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:21:20.558 INFO [8951]: COREGRADE is stopping... -- 01:21:20.558 DEBUG [8951]: Closing database connection -- 01:21:20.558 SQL [8951]: pgsql_close() -- 01:21:41.939 INFO [9028]: COREGRADE is starting... -- 01:21:41.939 INFO [9028]: Version from config: 1.0 -- 01:21:41.939 DEBUG [9028]: Connecting to database... -- 01:21:41.939 DEBUG [9028]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:21:41.939 SQL [9028]: pgsql_db_connect() -- 01:21:41.944 DEBUG [9028]: Database connection successful -- 01:21:41.944 INFO [9028]: _SERVER found -- 01:21:41.944 INFO [9028]: REMOTE_ADDR = 192.168.1.13 -- 01:21:41.944 INFO [9028]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:21:41.944 INFO [9028]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=13lmq4pekocld01iub1oaamvpkvrvnrt -- 01:21:41.944 INFO [9028]: QUERY_STRING = /member/support@coregrade.com/ -- 01:21:41.944 INFO [9028]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:21:41.950 INFO [9028]: COREGRADE is stopping... -- 01:21:41.950 DEBUG [9028]: Closing database connection -- 01:21:41.950 SQL [9028]: pgsql_close() -- 01:21:44.167 INFO [8952]: COREGRADE is starting... -- 01:21:44.168 INFO [8952]: Version from config: 1.0 -- 01:21:44.168 DEBUG [8952]: Connecting to database... -- 01:21:44.168 DEBUG [8952]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:21:44.168 SQL [8952]: pgsql_db_connect() -- 01:21:44.172 DEBUG [8952]: Database connection successful -- 01:21:44.172 INFO [8952]: _SERVER found -- 01:21:44.172 INFO [8952]: REMOTE_ADDR = 192.168.1.13 -- 01:21:44.172 INFO [8952]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:21:44.172 INFO [8952]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=13lmq4pekocld01iub1oaamvpkvrvnrt -- 01:21:44.172 INFO [8952]: QUERY_STRING = /member/page -- 01:21:44.172 INFO [8952]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:21:44.208 INFO [8952]: COREGRADE is stopping... -- 01:21:44.208 DEBUG [8952]: Closing database connection -- 01:21:44.208 SQL [8952]: pgsql_close() -- 01:22:44.574 INFO [9031]: COREGRADE is starting... -- 01:22:44.574 INFO [9031]: Version from config: 1.0 -- 01:22:44.574 DEBUG [9031]: Connecting to database... -- 01:22:44.574 DEBUG [9031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:22:44.574 SQL [9031]: pgsql_db_connect() -- 01:22:44.578 DEBUG [9031]: Database connection successful -- 01:22:44.578 INFO [9031]: _SERVER found -- 01:22:44.578 INFO [9031]: REMOTE_ADDR = 192.168.1.13 -- 01:22:44.578 INFO [9031]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:22:44.578 INFO [9031]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=13lmq4pekocld01iub1oaamvpkvrvnrt -- 01:22:44.578 INFO [9031]: QUERY_STRING = /member/page -- 01:22:44.578 INFO [9031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:22:44.616 INFO [9031]: COREGRADE is stopping... -- 01:22:44.616 DEBUG [9031]: Closing database connection -- 01:22:44.616 SQL [9031]: pgsql_close() -- 01:22:45.009 INFO [9031]: COREGRADE is starting... -- 01:22:45.009 INFO [9031]: Version from config: 1.0 -- 01:22:45.009 DEBUG [9031]: Connecting to database... -- 01:22:45.009 DEBUG [9031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:22:45.009 SQL [9031]: pgsql_db_connect() -- 01:22:45.021 INFO [9032]: COREGRADE is starting... -- 01:22:45.021 INFO [9032]: Version from config: 1.0 -- 01:22:45.021 DEBUG [9032]: Connecting to database... -- 01:22:45.021 DEBUG [9032]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:22:45.021 SQL [9032]: pgsql_db_connect() -- 01:22:45.013 DEBUG [9031]: Database connection successful -- 01:22:45.013 INFO [9031]: _SERVER found -- 01:22:45.013 INFO [9031]: REMOTE_ADDR = 192.168.1.13 -- 01:22:45.013 INFO [9031]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:22:45.013 INFO [9031]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=13lmq4pekocld01iub1oaamvpkvrvnrt -- 01:22:45.013 INFO [9031]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:22:45.013 INFO [9031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:22:45.025 INFO [9031]: COREGRADE is stopping... -- 01:22:45.025 DEBUG [9031]: Closing database connection -- 01:22:45.025 SQL [9031]: pgsql_close() -- 01:22:45.025 DEBUG [9032]: Database connection successful -- 01:22:45.025 INFO [9032]: _SERVER found -- 01:22:45.025 INFO [9032]: REMOTE_ADDR = 192.168.1.13 -- 01:22:45.025 INFO [9032]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:22:45.025 INFO [9032]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=13lmq4pekocld01iub1oaamvpkvrvnrt -- 01:22:45.025 INFO [9032]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:22:45.025 INFO [9032]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:22:45.036 INFO [9032]: COREGRADE is stopping... -- 01:22:45.036 DEBUG [9032]: Closing database connection -- 01:22:45.036 SQL [9032]: pgsql_close() -- 01:24:47.683 INFO [8949]: COREGRADE is starting... -- 01:24:47.683 INFO [8949]: Version from config: 1.0 -- 01:24:47.683 DEBUG [8949]: Connecting to database... -- 01:24:47.683 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:24:47.683 SQL [8949]: pgsql_db_connect() -- 01:24:47.718 INFO [8949]: COREGRADE is starting... -- 01:24:47.719 INFO [8949]: Version from config: 1.0 -- 01:24:47.719 DEBUG [8949]: Connecting to database... -- 01:24:47.719 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:24:47.719 SQL [8949]: pgsql_db_connect() -- 01:24:47.723 DEBUG [8949]: Database connection successful -- 01:24:47.723 INFO [8949]: _SERVER found -- 01:24:47.723 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 01:24:47.723 INFO [8949]: SERVER_NAME = oameye.works.coregrade.com -- 01:24:47.723 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=6229r07lli7nnbt9bf4m4bf9c9i032r2 -- 01:24:47.723 INFO [8949]: QUERY_STRING = -- 01:24:47.723 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:24:47.723 INFO [8949]: SystemStatus()09-09-********~************ -- 01:24:47.723 INFO [8949]: long coregrade_api_main(CVars in, CVars &out) -- 01:24:47.723 INFO [8949]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 01:24:47.723 INFO [8949]: account calls -- 01:24:47.723 INFO [8949]: account_calls() -- 01:24:47.723 INFO [8949]: LoginCoreGradeAccount() -- 01:24:47.723 FLOG_MAX [8949]: REQ_STRING(username) -- 01:24:47.723 FLOG_MAX [8949]: REQ_STRING(password) -- 01:24:47.723 FLOG_MAX [8949]: REQ_STRING(sessionid) -- 01:24:47.723 FLOG_MAX [8949]: long load_db_record( CVars &rec, const char * query, ... ) -- 01:24:47.723 SQL [8949]: pgsql_query() -- 01:24:47.723 SQL [8949]: About to run query: -- 01:24:47.723 SQL [8949]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 01:24:47.726 SQL [8949]: Found rows: 1 -- 01:24:47.726 FLOG_MAX [8949]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 01:24:47.726 INFO [8949]: long SessionCheck(long uid, const char *sessionid, int create ) -- 01:24:47.726 SQL [8949]: pgsql_exec() -- 01:24:47.726 SQL [8949]: About to run query: -- 01:24:47.726 SQL [8949]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 01:24:47.727 SQL [8949]: PQcmdTuples: 0 -- 01:24:47.727 SQL [8949]: Affected rows: 0 -- 01:24:47.727 SQL [8949]: pgsql_exec() -- 01:24:47.727 SQL [8949]: About to run query: -- 01:24:47.727 SQL [8949]: DELETE FROM members_session WHERE member_id=5 -- 01:24:47.728 SQL [8949]: PQcmdTuples: 1 -- 01:24:47.728 SQL [8949]: Affected rows: 1 -- 01:24:47.728 SQL [8949]: pgsql_query() -- 01:24:47.728 SQL [8949]: About to run query: -- 01:24:47.728 SQL [8949]: SELECT * FROM members_session WHERE member_id=5 AND session<>'1FCDA7F93FD67B8B5331D9F1945EDB46' -- 01:24:47.728 SQL [8949]: Found rows: 0 -- 01:24:47.728 SQL [8949]: Found rows: 0 -- 01:24:47.728 FLOG_MAX [8949]: long load_db_record( CVars &rec, const char * query, ... ) -- 01:24:47.728 SQL [8949]: pgsql_query() -- 01:24:47.728 SQL [8949]: About to run query: -- 01:24:47.728 SQL [8949]: SELECT * FROM members_session WHERE member_id=5 AND session='1FCDA7F93FD67B8B5331D9F1945EDB46' -- 01:24:47.729 SQL [8949]: Found rows: 0 -- 01:24:47.729 SQL [8949]: Found rows: 0 -- 01:24:47.729 FLOG_MAX [8949]: insert_db_record() -- 01:24:47.729 SQL [8949]: pgsql_exec() -- 01:24:47.729 SQL [8949]: About to run query: -- 01:24:47.729 SQL [8949]: INSERT INTO members_session (member_id,session) VALUES ('5','1FCDA7F93FD67B8B5331D9F1945EDB46') -- 01:24:47.730 SQL [8949]: PQcmdTuples: 1 -- 01:24:47.730 SQL [8949]: Affected rows: 1 -- 01:24:47.730 FLOG_MAX [8949]: SELECT currval('members_session_id_seq') -- 01:24:47.730 SQL [8949]: pgsql_query() -- 01:24:47.730 SQL [8949]: About to run query: -- 01:24:47.730 SQL [8949]: SELECT currval('members_session_id_seq') -- 01:24:47.731 SQL [8949]: Found rows: 1 -- 01:24:47.731 INFO [8949]: CreateDefaultPage() -- 01:24:47.731 FLOG_MAX [8949]: long load_db_record( CVars &rec, const char * query, ... ) -- 01:24:47.731 SQL [8949]: pgsql_query() -- 01:24:47.731 SQL [8949]: About to run query: -- 01:24:47.731 SQL [8949]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 01:24:47.731 SQL [8949]: Found rows: 1 -- 01:24:47.731 FLOG_MAX [8949]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 01:24:47.731 SQL [8949]: pgsql_query() -- 01:24:47.731 SQL [8949]: About to run query: -- 01:24:47.731 SQL [8949]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 01:24:47.731 SQL [8949]: Found rows: 1 -- 01:24:47.731 INFO [8949]: /CreateDefaultPage() -- 01:24:47.731 INFO [8949]: /LoginCoreGradeAccount() -- 01:24:47.731 INFO [8949]: RET: added=2020-02-05 06:47:23.982154 -- 01:24:47.731 INFO [8949]: RET: email=ameye+11@chiefsoft.com -- 01:24:47.731 INFO [8949]: RET: firstname=Olu -- 01:24:47.731 INFO [8949]: RET: id=5 -- 01:24:47.731 INFO [8949]: RET: last_login= -- 01:24:47.731 INFO [8949]: RET: lastname=Amey -- 01:24:47.731 INFO [8949]: RET: loc=192.168.1.13 -- 01:24:47.731 INFO [8949]: RET: member_id=5 -- 01:24:47.731 INFO [8949]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 01:24:47.731 INFO [8949]: RET: phone= -- 01:24:47.731 INFO [8949]: RET: pid= -- 01:24:47.731 INFO [8949]: RET: result=YES I GET TO BACK END -- 01:24:47.731 INFO [8949]: RET: sessionid=1FCDA7F93FD67B8B5331D9F1945EDB46 -- 01:24:47.731 INFO [8949]: RET: status=1 -- 01:24:47.731 INFO [8949]: RET: stauts=OK -- 01:24:47.731 INFO [8949]: RET: username=ameye+11@chiefsoft.com -- 01:24:47.731 INFO [8949]: RET: verified= -- 01:24:47.733 INFO [8949]: COREGRADE is stopping... -- 01:24:47.733 DEBUG [8949]: Closing database connection -- 01:24:47.733 SQL [8949]: pgsql_close() -- 01:24:47.687 DEBUG [8949]: Database connection successful -- 01:24:47.687 INFO [8949]: _SERVER found -- 01:24:47.687 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 01:24:47.687 INFO [8949]: SERVER_NAME = oameye.works.coregrade.com -- 01:24:47.687 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=6229r07lli7nnbt9bf4m4bf9c9i032r2 -- 01:24:47.687 INFO [8949]: QUERY_STRING = /auth -- 01:24:47.687 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:24:47.733 INFO [8949]: COREGRADE is stopping... -- 01:24:47.733 DEBUG [8949]: Closing database connection -- 01:24:47.733 SQL [8949]: pgsql_close() -- 01:24:47.766 INFO [8949]: COREGRADE is starting... -- 01:24:47.766 INFO [8949]: Version from config: 1.0 -- 01:24:47.766 DEBUG [8949]: Connecting to database... -- 01:24:47.766 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:24:47.766 SQL [8949]: pgsql_db_connect() -- 01:24:47.770 DEBUG [8949]: Database connection successful -- 01:24:47.770 INFO [8949]: _SERVER found -- 01:24:47.770 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 01:24:47.770 INFO [8949]: SERVER_NAME = oameye.works.coregrade.com -- 01:24:47.770 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=6229r07lli7nnbt9bf4m4bf9c9i032r2 -- 01:24:47.770 INFO [8949]: QUERY_STRING = /member/index -- 01:24:47.770 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:24:47.805 INFO [8949]: COREGRADE is stopping... -- 01:24:47.805 DEBUG [8949]: Closing database connection -- 01:24:47.805 SQL [8949]: pgsql_close() -- 01:24:48.111 INFO [8949]: COREGRADE is starting... -- 01:24:48.112 INFO [8949]: Version from config: 1.0 -- 01:24:48.112 DEBUG [8949]: Connecting to database... -- 01:24:48.112 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:24:48.112 SQL [8949]: pgsql_db_connect() -- 01:24:48.116 DEBUG [8949]: Database connection successful -- 01:24:48.116 INFO [8949]: _SERVER found -- 01:24:48.116 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 01:24:48.116 INFO [8949]: SERVER_NAME = oameye.works.coregrade.com -- 01:24:48.116 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=6229r07lli7nnbt9bf4m4bf9c9i032r2 -- 01:24:48.116 INFO [8949]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:24:48.116 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:24:48.127 INFO [8949]: COREGRADE is stopping... -- 01:24:48.127 DEBUG [8949]: Closing database connection -- 01:24:48.127 SQL [8949]: pgsql_close() -- 01:24:48.145 INFO [8950]: COREGRADE is starting... -- 01:24:48.145 INFO [8950]: Version from config: 1.0 -- 01:24:48.145 DEBUG [8950]: Connecting to database... -- 01:24:48.145 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:24:48.145 SQL [8950]: pgsql_db_connect() -- 01:24:48.149 DEBUG [8950]: Database connection successful -- 01:24:48.149 INFO [8950]: _SERVER found -- 01:24:48.149 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 01:24:48.149 INFO [8950]: SERVER_NAME = oameye.works.coregrade.com -- 01:24:48.149 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=6229r07lli7nnbt9bf4m4bf9c9i032r2 -- 01:24:48.149 INFO [8950]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:24:48.149 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:24:48.161 INFO [8950]: COREGRADE is stopping... -- 01:24:48.161 DEBUG [8950]: Closing database connection -- 01:24:48.161 SQL [8950]: pgsql_close() -- 01:24:49.403 INFO [8950]: COREGRADE is starting... -- 01:24:49.403 INFO [8950]: Version from config: 1.0 -- 01:24:49.403 DEBUG [8950]: Connecting to database... -- 01:24:49.403 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:24:49.403 SQL [8950]: pgsql_db_connect() -- 01:24:49.407 DEBUG [8950]: Database connection successful -- 01:24:49.407 INFO [8950]: _SERVER found -- 01:24:49.407 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 01:24:49.407 INFO [8950]: SERVER_NAME = oameye.works.coregrade.com -- 01:24:49.407 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=6229r07lli7nnbt9bf4m4bf9c9i032r2 -- 01:24:49.407 INFO [8950]: QUERY_STRING = /member/page -- 01:24:49.407 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:24:49.443 INFO [8950]: COREGRADE is stopping... -- 01:24:49.443 DEBUG [8950]: Closing database connection -- 01:24:49.444 SQL [8950]: pgsql_close() -- 01:24:49.621 INFO [8950]: COREGRADE is starting... -- 01:24:49.621 INFO [8950]: Version from config: 1.0 -- 01:24:49.621 DEBUG [8950]: Connecting to database... -- 01:24:49.621 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:24:49.621 SQL [8950]: pgsql_db_connect() -- 01:24:49.625 DEBUG [8950]: Database connection successful -- 01:24:49.625 INFO [8950]: _SERVER found -- 01:24:49.625 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 01:24:49.625 INFO [8950]: SERVER_NAME = oameye.works.coregrade.com -- 01:24:49.625 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=6229r07lli7nnbt9bf4m4bf9c9i032r2 -- 01:24:49.625 INFO [8950]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:24:49.625 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:24:49.636 INFO [8950]: COREGRADE is stopping... -- 01:24:49.636 DEBUG [8950]: Closing database connection -- 01:24:49.636 SQL [8950]: pgsql_close() -- 01:24:50.893 INFO [8950]: COREGRADE is starting... -- 01:24:50.894 INFO [8950]: Version from config: 1.0 -- 01:24:50.894 DEBUG [8950]: Connecting to database... -- 01:24:50.894 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:24:50.894 SQL [8950]: pgsql_db_connect() -- 01:24:50.898 DEBUG [8950]: Database connection successful -- 01:24:50.898 INFO [8950]: _SERVER found -- 01:24:50.898 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 01:24:50.898 INFO [8950]: SERVER_NAME = oameye.works.coregrade.com -- 01:24:50.898 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=6229r07lli7nnbt9bf4m4bf9c9i032r2 -- 01:24:50.898 INFO [8950]: QUERY_STRING = /member/viewCardAddAction -- 01:24:50.898 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:24:50.928 INFO [8950]: COREGRADE is stopping... -- 01:24:50.928 DEBUG [8950]: Closing database connection -- 01:24:50.928 SQL [8950]: pgsql_close() -- 01:24:57.631 INFO [8953]: COREGRADE is starting... -- 01:24:57.631 INFO [8953]: Version from config: 1.0 -- 01:24:57.631 DEBUG [8953]: Connecting to database... -- 01:24:57.631 DEBUG [8953]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:24:57.631 SQL [8953]: pgsql_db_connect() -- 01:24:57.635 DEBUG [8953]: Database connection successful -- 01:24:57.635 INFO [8953]: _SERVER found -- 01:24:57.635 INFO [8953]: REMOTE_ADDR = 192.168.1.13 -- 01:24:57.635 INFO [8953]: SERVER_NAME = oameye.works.coregrade.com -- 01:24:57.635 INFO [8953]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=6229r07lli7nnbt9bf4m4bf9c9i032r2 -- 01:24:57.635 INFO [8953]: QUERY_STRING = /member/page -- 01:24:57.635 INFO [8953]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:24:57.672 INFO [8953]: COREGRADE is stopping... -- 01:24:57.672 DEBUG [8953]: Closing database connection -- 01:24:57.672 SQL [8953]: pgsql_close() -- 01:24:57.894 INFO [8953]: COREGRADE is starting... -- 01:24:57.894 INFO [8953]: Version from config: 1.0 -- 01:24:57.894 DEBUG [8953]: Connecting to database... -- 01:24:57.894 DEBUG [8953]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:24:57.894 SQL [8953]: pgsql_db_connect() -- 01:24:57.898 DEBUG [8953]: Database connection successful -- 01:24:57.898 INFO [8953]: _SERVER found -- 01:24:57.898 INFO [8953]: REMOTE_ADDR = 192.168.1.13 -- 01:24:57.898 INFO [8953]: SERVER_NAME = oameye.works.coregrade.com -- 01:24:57.898 INFO [8953]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=6229r07lli7nnbt9bf4m4bf9c9i032r2 -- 01:24:57.898 INFO [8953]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:24:57.898 INFO [8953]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:24:57.909 INFO [8953]: COREGRADE is stopping... -- 01:24:57.909 DEBUG [8953]: Closing database connection -- 01:24:57.909 SQL [8953]: pgsql_close() -- 01:25:20.619 INFO [8951]: COREGRADE is starting... -- 01:25:20.619 INFO [8951]: Version from config: 1.0 -- 01:25:20.619 DEBUG [8951]: Connecting to database... -- 01:25:20.619 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:25:20.619 SQL [8951]: pgsql_db_connect() -- 01:25:20.624 DEBUG [8951]: Database connection successful -- 01:25:20.624 INFO [8951]: _SERVER found -- 01:25:20.624 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 01:25:20.624 INFO [8951]: SERVER_NAME = oameye.works.coregrade.com -- 01:25:20.624 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=6229r07lli7nnbt9bf4m4bf9c9i032r2 -- 01:25:20.624 INFO [8951]: QUERY_STRING = /member/page -- 01:25:20.624 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:25:20.661 INFO [8951]: COREGRADE is stopping... -- 01:25:20.661 DEBUG [8951]: Closing database connection -- 01:25:20.661 SQL [8951]: pgsql_close() -- 01:25:20.980 INFO [8951]: COREGRADE is starting... -- 01:25:20.981 INFO [8951]: Version from config: 1.0 -- 01:25:20.981 DEBUG [8951]: Connecting to database... -- 01:25:20.981 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:25:20.981 SQL [8951]: pgsql_db_connect() -- 01:25:20.985 DEBUG [8951]: Database connection successful -- 01:25:20.985 INFO [8951]: _SERVER found -- 01:25:20.985 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 01:25:20.985 INFO [8951]: SERVER_NAME = oameye.works.coregrade.com -- 01:25:20.985 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mgjr630c4te7ejakeoa3gem7rhmdjht5 -- 01:25:20.985 INFO [8951]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:25:20.985 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:25:20.996 INFO [8951]: COREGRADE is stopping... -- 01:25:20.996 DEBUG [8951]: Closing database connection -- 01:25:20.996 SQL [8951]: pgsql_close() -- 01:25:22.485 INFO [8951]: COREGRADE is starting... -- 01:25:22.485 INFO [8951]: Version from config: 1.0 -- 01:25:22.485 DEBUG [8951]: Connecting to database... -- 01:25:22.485 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:25:22.485 SQL [8951]: pgsql_db_connect() -- 01:25:22.489 DEBUG [8951]: Database connection successful -- 01:25:22.489 INFO [8951]: _SERVER found -- 01:25:22.489 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 01:25:22.489 INFO [8951]: SERVER_NAME = oameye.works.coregrade.com -- 01:25:22.489 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mgjr630c4te7ejakeoa3gem7rhmdjht5 -- 01:25:22.489 INFO [8951]: QUERY_STRING = /member/viewCardAddAction -- 01:25:22.489 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:25:22.519 INFO [8951]: COREGRADE is stopping... -- 01:25:22.519 DEBUG [8951]: Closing database connection -- 01:25:22.519 SQL [8951]: pgsql_close() -- 01:25:32.298 INFO [9028]: COREGRADE is starting... -- 01:25:32.298 INFO [9028]: Version from config: 1.0 -- 01:25:32.298 DEBUG [9028]: Connecting to database... -- 01:25:32.298 DEBUG [9028]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:25:32.298 SQL [9028]: pgsql_db_connect() -- 01:25:32.302 DEBUG [9028]: Database connection successful -- 01:25:32.302 INFO [9028]: _SERVER found -- 01:25:32.302 INFO [9028]: REMOTE_ADDR = 192.168.1.13 -- 01:25:32.302 INFO [9028]: SERVER_NAME = oameye.works.coregrade.com -- 01:25:32.302 INFO [9028]: QUERY_STRING = /solr/admin/info/system -- 01:25:32.302 INFO [9028]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 01:25:32.314 INFO [9028]: COREGRADE is stopping... -- 01:25:32.314 DEBUG [9028]: Closing database connection -- 01:25:32.314 SQL [9028]: pgsql_close() -- 01:26:04.129 INFO [8952]: COREGRADE is starting... -- 01:26:04.129 INFO [8952]: Version from config: 1.0 -- 01:26:04.129 DEBUG [8952]: Connecting to database... -- 01:26:04.129 DEBUG [8952]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:26:04.129 SQL [8952]: pgsql_db_connect() -- 01:26:04.133 DEBUG [8952]: Database connection successful -- 01:26:04.133 INFO [8952]: _SERVER found -- 01:26:04.133 INFO [8952]: REMOTE_ADDR = 192.168.1.13 -- 01:26:04.133 INFO [8952]: SERVER_NAME = oameye.works.coregrade.com -- 01:26:04.133 INFO [8952]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mgjr630c4te7ejakeoa3gem7rhmdjht5 -- 01:26:04.133 INFO [8952]: QUERY_STRING = /member/configure -- 01:26:04.133 INFO [8952]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:26:04.196 INFO [8952]: COREGRADE is stopping... -- 01:26:04.196 DEBUG [8952]: Closing database connection -- 01:26:04.196 SQL [8952]: pgsql_close() -- 01:26:04.489 INFO [8952]: COREGRADE is starting... -- 01:26:04.490 INFO [8952]: Version from config: 1.0 -- 01:26:04.490 DEBUG [8952]: Connecting to database... -- 01:26:04.490 DEBUG [8952]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:26:04.490 SQL [8952]: pgsql_db_connect() -- 01:26:04.494 DEBUG [8952]: Database connection successful -- 01:26:04.494 INFO [8952]: _SERVER found -- 01:26:04.494 INFO [8952]: REMOTE_ADDR = 192.168.1.13 -- 01:26:04.494 INFO [8952]: SERVER_NAME = oameye.works.coregrade.com -- 01:26:04.494 INFO [8952]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mgjr630c4te7ejakeoa3gem7rhmdjht5 -- 01:26:04.494 INFO [8952]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:26:04.494 INFO [8952]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:26:04.505 INFO [8952]: COREGRADE is stopping... -- 01:26:04.505 DEBUG [8952]: Closing database connection -- 01:26:04.505 SQL [8952]: pgsql_close() -- 01:26:07.174 INFO [8952]: COREGRADE is starting... -- 01:26:07.174 INFO [8952]: Version from config: 1.0 -- 01:26:07.174 DEBUG [8952]: Connecting to database... -- 01:26:07.174 DEBUG [8952]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:26:07.174 SQL [8952]: pgsql_db_connect() -- 01:26:07.178 DEBUG [8952]: Database connection successful -- 01:26:07.178 INFO [8952]: _SERVER found -- 01:26:07.178 INFO [8952]: REMOTE_ADDR = 192.168.1.13 -- 01:26:07.178 INFO [8952]: SERVER_NAME = oameye.works.coregrade.com -- 01:26:07.178 INFO [8952]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mgjr630c4te7ejakeoa3gem7rhmdjht5 -- 01:26:07.178 INFO [8952]: QUERY_STRING = /member/page -- 01:26:07.178 INFO [8952]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:26:07.214 INFO [8952]: COREGRADE is stopping... -- 01:26:07.214 DEBUG [8952]: Closing database connection -- 01:26:07.214 SQL [8952]: pgsql_close() -- 01:26:12.610 INFO [9031]: COREGRADE is starting... -- 01:26:12.611 INFO [9031]: Version from config: 1.0 -- 01:26:12.611 DEBUG [9031]: Connecting to database... -- 01:26:12.611 DEBUG [9031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:26:12.611 SQL [9031]: pgsql_db_connect() -- 01:26:12.615 DEBUG [9031]: Database connection successful -- 01:26:12.615 INFO [9031]: _SERVER found -- 01:26:12.615 INFO [9031]: REMOTE_ADDR = 192.168.1.13 -- 01:26:12.615 INFO [9031]: SERVER_NAME = oameye.works.coregrade.com -- 01:26:12.615 INFO [9031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mgjr630c4te7ejakeoa3gem7rhmdjht5 -- 01:26:12.615 INFO [9031]: QUERY_STRING = /member -- 01:26:12.615 INFO [9031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:26:12.650 INFO [9031]: COREGRADE is stopping... -- 01:26:12.650 DEBUG [9031]: Closing database connection -- 01:26:12.650 SQL [9031]: pgsql_close() -- 01:26:12.912 INFO [9031]: COREGRADE is starting... -- 01:26:12.912 INFO [9031]: Version from config: 1.0 -- 01:26:12.912 DEBUG [9031]: Connecting to database... -- 01:26:12.912 DEBUG [9031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:26:12.912 SQL [9031]: pgsql_db_connect() -- 01:26:12.916 DEBUG [9031]: Database connection successful -- 01:26:12.916 INFO [9031]: _SERVER found -- 01:26:12.916 INFO [9031]: REMOTE_ADDR = 192.168.1.13 -- 01:26:12.916 INFO [9031]: SERVER_NAME = oameye.works.coregrade.com -- 01:26:12.916 INFO [9031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mgjr630c4te7ejakeoa3gem7rhmdjht5 -- 01:26:12.916 INFO [9031]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:26:12.916 INFO [9031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:26:12.927 INFO [9031]: COREGRADE is stopping... -- 01:26:12.927 DEBUG [9031]: Closing database connection -- 01:26:12.927 SQL [9031]: pgsql_close() -- 01:26:14.016 INFO [9031]: COREGRADE is starting... -- 01:26:14.017 INFO [9031]: Version from config: 1.0 -- 01:26:14.017 DEBUG [9031]: Connecting to database... -- 01:26:14.017 DEBUG [9031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:26:14.017 SQL [9031]: pgsql_db_connect() -- 01:26:14.021 DEBUG [9031]: Database connection successful -- 01:26:14.021 INFO [9031]: _SERVER found -- 01:26:14.021 INFO [9031]: REMOTE_ADDR = 192.168.1.13 -- 01:26:14.021 INFO [9031]: SERVER_NAME = oameye.works.coregrade.com -- 01:26:14.021 INFO [9031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mgjr630c4te7ejakeoa3gem7rhmdjht5 -- 01:26:14.021 INFO [9031]: QUERY_STRING = /member/page -- 01:26:14.021 INFO [9031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:26:14.056 INFO [9031]: COREGRADE is stopping... -- 01:26:14.057 DEBUG [9031]: Closing database connection -- 01:26:14.057 SQL [9031]: pgsql_close() -- 01:26:14.282 INFO [9031]: COREGRADE is starting... -- 01:26:14.282 INFO [9031]: Version from config: 1.0 -- 01:26:14.282 DEBUG [9031]: Connecting to database... -- 01:26:14.282 DEBUG [9031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:26:14.282 SQL [9031]: pgsql_db_connect() -- 01:26:14.287 DEBUG [9031]: Database connection successful -- 01:26:14.287 INFO [9031]: _SERVER found -- 01:26:14.287 INFO [9031]: REMOTE_ADDR = 192.168.1.13 -- 01:26:14.287 INFO [9031]: SERVER_NAME = oameye.works.coregrade.com -- 01:26:14.287 INFO [9031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mgjr630c4te7ejakeoa3gem7rhmdjht5 -- 01:26:14.287 INFO [9031]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:26:14.287 INFO [9031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:26:14.298 INFO [9031]: COREGRADE is stopping... -- 01:26:14.298 DEBUG [9031]: Closing database connection -- 01:26:14.298 SQL [9031]: pgsql_close() -- 01:26:20.048 INFO [9032]: COREGRADE is starting... -- 01:26:20.048 INFO [9032]: Version from config: 1.0 -- 01:26:20.048 DEBUG [9032]: Connecting to database... -- 01:26:20.048 DEBUG [9032]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:26:20.048 SQL [9032]: pgsql_db_connect() -- 01:26:20.052 DEBUG [9032]: Database connection successful -- 01:26:20.052 INFO [9032]: _SERVER found -- 01:26:20.052 INFO [9032]: REMOTE_ADDR = 192.168.1.13 -- 01:26:20.052 INFO [9032]: SERVER_NAME = oameye.works.coregrade.com -- 01:26:20.052 INFO [9032]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mgjr630c4te7ejakeoa3gem7rhmdjht5 -- 01:26:20.052 INFO [9032]: QUERY_STRING = /member/configure -- 01:26:20.052 INFO [9032]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:26:20.087 INFO [9032]: COREGRADE is stopping... -- 01:26:20.087 DEBUG [9032]: Closing database connection -- 01:26:20.087 SQL [9032]: pgsql_close() -- 01:26:20.376 INFO [9032]: COREGRADE is starting... -- 01:26:20.376 INFO [9032]: Version from config: 1.0 -- 01:26:20.376 DEBUG [9032]: Connecting to database... -- 01:26:20.376 DEBUG [9032]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:26:20.376 SQL [9032]: pgsql_db_connect() -- 01:26:20.380 DEBUG [9032]: Database connection successful -- 01:26:20.380 INFO [9032]: _SERVER found -- 01:26:20.380 INFO [9032]: REMOTE_ADDR = 192.168.1.13 -- 01:26:20.380 INFO [9032]: SERVER_NAME = oameye.works.coregrade.com -- 01:26:20.380 INFO [9032]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mgjr630c4te7ejakeoa3gem7rhmdjht5 -- 01:26:20.380 INFO [9032]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:26:20.380 INFO [9032]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:26:20.391 INFO [9032]: COREGRADE is stopping... -- 01:26:20.391 DEBUG [9032]: Closing database connection -- 01:26:20.391 SQL [9032]: pgsql_close() -- 01:26:23.254 INFO [9032]: COREGRADE is starting... -- 01:26:23.254 INFO [9032]: Version from config: 1.0 -- 01:26:23.254 DEBUG [9032]: Connecting to database... -- 01:26:23.254 DEBUG [9032]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:26:23.254 SQL [9032]: pgsql_db_connect() -- 01:26:23.258 DEBUG [9032]: Database connection successful -- 01:26:23.258 INFO [9032]: _SERVER found -- 01:26:23.258 INFO [9032]: REMOTE_ADDR = 192.168.1.13 -- 01:26:23.258 INFO [9032]: SERVER_NAME = oameye.works.coregrade.com -- 01:26:23.258 INFO [9032]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mgjr630c4te7ejakeoa3gem7rhmdjht5 -- 01:26:23.258 INFO [9032]: QUERY_STRING = /member/configure -- 01:26:23.258 INFO [9032]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:26:23.292 INFO [9032]: COREGRADE is stopping... -- 01:26:23.292 DEBUG [9032]: Closing database connection -- 01:26:23.292 SQL [9032]: pgsql_close() -- 01:26:23.528 INFO [9032]: COREGRADE is starting... -- 01:26:23.529 INFO [9032]: Version from config: 1.0 -- 01:26:23.529 DEBUG [9032]: Connecting to database... -- 01:26:23.529 DEBUG [9032]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:26:23.529 SQL [9032]: pgsql_db_connect() -- 01:26:23.533 DEBUG [9032]: Database connection successful -- 01:26:23.533 INFO [9032]: _SERVER found -- 01:26:23.533 INFO [9032]: REMOTE_ADDR = 192.168.1.13 -- 01:26:23.533 INFO [9032]: SERVER_NAME = oameye.works.coregrade.com -- 01:26:23.533 INFO [9032]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mgjr630c4te7ejakeoa3gem7rhmdjht5 -- 01:26:23.533 INFO [9032]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:26:23.533 INFO [9032]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:26:23.544 INFO [9032]: COREGRADE is stopping... -- 01:26:23.544 DEBUG [9032]: Closing database connection -- 01:26:23.544 SQL [9032]: pgsql_close() -- 01:26:27.003 INFO [9032]: COREGRADE is starting... -- 01:26:27.004 INFO [9032]: Version from config: 1.0 -- 01:26:27.004 DEBUG [9032]: Connecting to database... -- 01:26:27.004 DEBUG [9032]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:26:27.004 SQL [9032]: pgsql_db_connect() -- 01:26:27.008 DEBUG [9032]: Database connection successful -- 01:26:27.008 INFO [9032]: _SERVER found -- 01:26:27.008 INFO [9032]: REMOTE_ADDR = 192.168.1.13 -- 01:26:27.008 INFO [9032]: SERVER_NAME = oameye.works.coregrade.com -- 01:26:27.008 INFO [9032]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mgjr630c4te7ejakeoa3gem7rhmdjht5 -- 01:26:27.008 INFO [9032]: QUERY_STRING = /member -- 01:26:27.008 INFO [9032]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:26:27.042 INFO [9032]: COREGRADE is stopping... -- 01:26:27.042 DEBUG [9032]: Closing database connection -- 01:26:27.042 SQL [9032]: pgsql_close() -- 01:26:27.268 INFO [9032]: COREGRADE is starting... -- 01:26:27.268 INFO [9032]: Version from config: 1.0 -- 01:26:27.268 DEBUG [9032]: Connecting to database... -- 01:26:27.268 DEBUG [9032]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:26:27.268 SQL [9032]: pgsql_db_connect() -- 01:26:27.272 DEBUG [9032]: Database connection successful -- 01:26:27.272 INFO [9032]: _SERVER found -- 01:26:27.272 INFO [9032]: REMOTE_ADDR = 192.168.1.13 -- 01:26:27.272 INFO [9032]: SERVER_NAME = oameye.works.coregrade.com -- 01:26:27.272 INFO [9032]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mgjr630c4te7ejakeoa3gem7rhmdjht5 -- 01:26:27.272 INFO [9032]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:26:27.272 INFO [9032]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:26:27.283 INFO [9032]: COREGRADE is stopping... -- 01:26:27.283 DEBUG [9032]: Closing database connection -- 01:26:27.283 SQL [9032]: pgsql_close() -- 01:26:29.352 INFO [9032]: COREGRADE is starting... -- 01:26:29.352 INFO [9032]: Version from config: 1.0 -- 01:26:29.352 DEBUG [9032]: Connecting to database... -- 01:26:29.352 DEBUG [9032]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:26:29.352 SQL [9032]: pgsql_db_connect() -- 01:26:29.356 DEBUG [9032]: Database connection successful -- 01:26:29.356 INFO [9032]: _SERVER found -- 01:26:29.356 INFO [9032]: REMOTE_ADDR = 192.168.1.13 -- 01:26:29.356 INFO [9032]: SERVER_NAME = oameye.works.coregrade.com -- 01:26:29.356 INFO [9032]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mgjr630c4te7ejakeoa3gem7rhmdjht5 -- 01:26:29.356 INFO [9032]: QUERY_STRING = /member/page -- 01:26:29.356 INFO [9032]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:26:29.392 INFO [9032]: COREGRADE is stopping... -- 01:26:29.392 DEBUG [9032]: Closing database connection -- 01:26:29.392 SQL [9032]: pgsql_close() -- 01:26:29.633 INFO [9032]: COREGRADE is starting... -- 01:26:29.633 INFO [9032]: Version from config: 1.0 -- 01:26:29.633 DEBUG [9032]: Connecting to database... -- 01:26:29.633 DEBUG [9032]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:26:29.633 SQL [9032]: pgsql_db_connect() -- 01:26:29.637 DEBUG [9032]: Database connection successful -- 01:26:29.637 INFO [9032]: _SERVER found -- 01:26:29.637 INFO [9032]: REMOTE_ADDR = 192.168.1.13 -- 01:26:29.637 INFO [9032]: SERVER_NAME = oameye.works.coregrade.com -- 01:26:29.637 INFO [9032]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mgjr630c4te7ejakeoa3gem7rhmdjht5 -- 01:26:29.637 INFO [9032]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:26:29.637 INFO [9032]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:26:29.648 INFO [9032]: COREGRADE is stopping... -- 01:26:29.648 DEBUG [9032]: Closing database connection -- 01:26:29.648 SQL [9032]: pgsql_close() -- 01:38:44.765 INFO [8949]: COREGRADE is starting... -- 01:38:44.765 INFO [8949]: Version from config: 1.0 -- 01:38:44.765 DEBUG [8949]: Connecting to database... -- 01:38:44.765 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:38:44.765 SQL [8949]: pgsql_db_connect() -- 01:38:44.770 DEBUG [8949]: Database connection successful -- 01:38:44.770 INFO [8949]: _SERVER found -- 01:38:44.770 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 01:38:44.770 INFO [8949]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:38:44.770 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=13lmq4pekocld01iub1oaamvpkvrvnrt -- 01:38:44.770 INFO [8949]: QUERY_STRING = /member/configure -- 01:38:44.770 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:38:44.807 INFO [8949]: COREGRADE is stopping... -- 01:38:44.808 DEBUG [8949]: Closing database connection -- 01:38:44.808 SQL [8949]: pgsql_close() -- 01:38:45.254 INFO [8949]: COREGRADE is starting... -- 01:38:45.254 INFO [8949]: Version from config: 1.0 -- 01:38:45.254 DEBUG [8949]: Connecting to database... -- 01:38:45.254 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:38:45.254 SQL [8949]: pgsql_db_connect() -- 01:38:45.258 DEBUG [8949]: Database connection successful -- 01:38:45.258 INFO [8949]: _SERVER found -- 01:38:45.258 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 01:38:45.258 INFO [8949]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:38:45.258 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=l46mhmeva9qd7g0l28gepgj5sgcg75ji -- 01:38:45.258 INFO [8949]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:38:45.258 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:38:45.269 INFO [8949]: COREGRADE is stopping... -- 01:38:45.269 DEBUG [8949]: Closing database connection -- 01:38:45.269 SQL [8949]: pgsql_close() -- 01:38:45.280 INFO [8950]: COREGRADE is starting... -- 01:38:45.280 INFO [8950]: Version from config: 1.0 -- 01:38:45.280 DEBUG [8950]: Connecting to database... -- 01:38:45.280 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:38:45.280 SQL [8950]: pgsql_db_connect() -- 01:38:45.284 DEBUG [8950]: Database connection successful -- 01:38:45.284 INFO [8950]: _SERVER found -- 01:38:45.284 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 01:38:45.284 INFO [8950]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:38:45.284 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=l46mhmeva9qd7g0l28gepgj5sgcg75ji -- 01:38:45.284 INFO [8950]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:38:45.284 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:38:45.296 INFO [8950]: COREGRADE is stopping... -- 01:38:45.296 DEBUG [8950]: Closing database connection -- 01:38:45.296 SQL [8950]: pgsql_close() -- 01:38:52.905 INFO [8953]: COREGRADE is starting... -- 01:38:52.906 INFO [8953]: Version from config: 1.0 -- 01:38:52.906 DEBUG [8953]: Connecting to database... -- 01:38:52.906 DEBUG [8953]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:38:52.906 SQL [8953]: pgsql_db_connect() -- 01:38:52.910 DEBUG [8953]: Database connection successful -- 01:38:52.910 INFO [8953]: _SERVER found -- 01:38:52.910 INFO [8953]: REMOTE_ADDR = 192.168.1.13 -- 01:38:52.910 INFO [8953]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:38:52.910 INFO [8953]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=l46mhmeva9qd7g0l28gepgj5sgcg75ji -- 01:38:52.910 INFO [8953]: QUERY_STRING = /member/configure -- 01:38:52.910 INFO [8953]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:38:52.946 INFO [8953]: COREGRADE is stopping... -- 01:38:52.946 DEBUG [8953]: Closing database connection -- 01:38:52.946 SQL [8953]: pgsql_close() -- 01:38:53.580 INFO [8953]: COREGRADE is starting... -- 01:38:53.580 INFO [8953]: Version from config: 1.0 -- 01:38:53.580 DEBUG [8953]: Connecting to database... -- 01:38:53.580 DEBUG [8953]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:38:53.580 SQL [8953]: pgsql_db_connect() -- 01:38:53.584 DEBUG [8953]: Database connection successful -- 01:38:53.584 INFO [8953]: _SERVER found -- 01:38:53.584 INFO [8953]: REMOTE_ADDR = 192.168.1.13 -- 01:38:53.584 INFO [8953]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:38:53.584 INFO [8953]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=l46mhmeva9qd7g0l28gepgj5sgcg75ji -- 01:38:53.584 INFO [8953]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:38:53.584 INFO [8953]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:38:53.595 INFO [8953]: COREGRADE is stopping... -- 01:38:53.595 DEBUG [8953]: Closing database connection -- 01:38:53.595 SQL [8953]: pgsql_close() -- 01:38:54.606 INFO [8953]: COREGRADE is starting... -- 01:38:54.606 INFO [8953]: Version from config: 1.0 -- 01:38:54.606 DEBUG [8953]: Connecting to database... -- 01:38:54.606 DEBUG [8953]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:38:54.606 SQL [8953]: pgsql_db_connect() -- 01:38:54.610 DEBUG [8953]: Database connection successful -- 01:38:54.610 INFO [8953]: _SERVER found -- 01:38:54.610 INFO [8953]: REMOTE_ADDR = 192.168.1.13 -- 01:38:54.610 INFO [8953]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:38:54.610 INFO [8953]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=l46mhmeva9qd7g0l28gepgj5sgcg75ji -- 01:38:54.610 INFO [8953]: QUERY_STRING = /member -- 01:38:54.610 INFO [8953]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:38:54.644 INFO [8953]: COREGRADE is stopping... -- 01:38:54.644 DEBUG [8953]: Closing database connection -- 01:38:54.644 SQL [8953]: pgsql_close() -- 01:38:54.934 INFO [8953]: COREGRADE is starting... -- 01:38:54.934 INFO [8953]: Version from config: 1.0 -- 01:38:54.934 DEBUG [8953]: Connecting to database... -- 01:38:54.934 DEBUG [8953]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:38:54.934 SQL [8953]: pgsql_db_connect() -- 01:38:54.938 DEBUG [8953]: Database connection successful -- 01:38:54.938 INFO [8953]: _SERVER found -- 01:38:54.938 INFO [8953]: REMOTE_ADDR = 192.168.1.13 -- 01:38:54.938 INFO [8953]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:38:54.938 INFO [8953]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=l46mhmeva9qd7g0l28gepgj5sgcg75ji -- 01:38:54.938 INFO [8953]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:38:54.938 INFO [8953]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:38:54.949 INFO [8953]: COREGRADE is stopping... -- 01:38:54.949 DEBUG [8953]: Closing database connection -- 01:38:54.949 SQL [8953]: pgsql_close() -- 01:38:55.728 INFO [8953]: COREGRADE is starting... -- 01:38:55.729 INFO [8953]: Version from config: 1.0 -- 01:38:55.729 DEBUG [8953]: Connecting to database... -- 01:38:55.729 DEBUG [8953]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:38:55.729 SQL [8953]: pgsql_db_connect() -- 01:38:55.733 DEBUG [8953]: Database connection successful -- 01:38:55.733 INFO [8953]: _SERVER found -- 01:38:55.733 INFO [8953]: REMOTE_ADDR = 192.168.1.13 -- 01:38:55.733 INFO [8953]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:38:55.733 INFO [8953]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=l46mhmeva9qd7g0l28gepgj5sgcg75ji -- 01:38:55.733 INFO [8953]: QUERY_STRING = /member/page -- 01:38:55.733 INFO [8953]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:38:55.768 INFO [8953]: COREGRADE is stopping... -- 01:38:55.768 DEBUG [8953]: Closing database connection -- 01:38:55.768 SQL [8953]: pgsql_close() -- 01:38:56.113 INFO [8953]: COREGRADE is starting... -- 01:38:56.113 INFO [8953]: Version from config: 1.0 -- 01:38:56.113 DEBUG [8953]: Connecting to database... -- 01:38:56.113 DEBUG [8953]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:38:56.113 SQL [8953]: pgsql_db_connect() -- 01:38:56.117 DEBUG [8953]: Database connection successful -- 01:38:56.117 INFO [8953]: _SERVER found -- 01:38:56.117 INFO [8953]: REMOTE_ADDR = 192.168.1.13 -- 01:38:56.117 INFO [8953]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:38:56.117 INFO [8953]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=l46mhmeva9qd7g0l28gepgj5sgcg75ji -- 01:38:56.117 INFO [8953]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:38:56.117 INFO [8953]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:38:56.128 INFO [8953]: COREGRADE is stopping... -- 01:38:56.128 DEBUG [8953]: Closing database connection -- 01:38:56.128 SQL [8953]: pgsql_close() -- 01:38:59.090 INFO [8953]: COREGRADE is starting... -- 01:38:59.090 INFO [8953]: Version from config: 1.0 -- 01:38:59.090 DEBUG [8953]: Connecting to database... -- 01:38:59.090 DEBUG [8953]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:38:59.090 SQL [8953]: pgsql_db_connect() -- 01:38:59.094 DEBUG [8953]: Database connection successful -- 01:38:59.094 INFO [8953]: _SERVER found -- 01:38:59.094 INFO [8953]: REMOTE_ADDR = 192.168.1.13 -- 01:38:59.094 INFO [8953]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:38:59.094 INFO [8953]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=l46mhmeva9qd7g0l28gepgj5sgcg75ji -- 01:38:59.094 INFO [8953]: QUERY_STRING = /member/configure -- 01:38:59.094 INFO [8953]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:38:59.129 INFO [8953]: COREGRADE is stopping... -- 01:38:59.129 DEBUG [8953]: Closing database connection -- 01:38:59.129 SQL [8953]: pgsql_close() -- 01:38:59.386 INFO [8953]: COREGRADE is starting... -- 01:38:59.386 INFO [8953]: Version from config: 1.0 -- 01:38:59.386 DEBUG [8953]: Connecting to database... -- 01:38:59.386 DEBUG [8953]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:38:59.386 SQL [8953]: pgsql_db_connect() -- 01:38:59.390 DEBUG [8953]: Database connection successful -- 01:38:59.390 INFO [8953]: _SERVER found -- 01:38:59.390 INFO [8953]: REMOTE_ADDR = 192.168.1.13 -- 01:38:59.390 INFO [8953]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:38:59.390 INFO [8953]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=l46mhmeva9qd7g0l28gepgj5sgcg75ji -- 01:38:59.390 INFO [8953]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:38:59.390 INFO [8953]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:38:59.401 INFO [8953]: COREGRADE is stopping... -- 01:38:59.401 DEBUG [8953]: Closing database connection -- 01:38:59.401 SQL [8953]: pgsql_close() -- 01:39:01.587 INFO [8953]: COREGRADE is starting... -- 01:39:01.587 INFO [8953]: Version from config: 1.0 -- 01:39:01.587 DEBUG [8953]: Connecting to database... -- 01:39:01.587 DEBUG [8953]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:39:01.587 SQL [8953]: pgsql_db_connect() -- 01:39:01.591 DEBUG [8953]: Database connection successful -- 01:39:01.591 INFO [8953]: _SERVER found -- 01:39:01.591 INFO [8953]: REMOTE_ADDR = 192.168.1.13 -- 01:39:01.591 INFO [8953]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:39:01.591 INFO [8953]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=l46mhmeva9qd7g0l28gepgj5sgcg75ji -- 01:39:01.591 INFO [8953]: QUERY_STRING = /member -- 01:39:01.591 INFO [8953]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:39:01.625 INFO [8953]: COREGRADE is stopping... -- 01:39:01.625 DEBUG [8953]: Closing database connection -- 01:39:01.625 SQL [8953]: pgsql_close() -- 01:39:01.874 INFO [8953]: COREGRADE is starting... -- 01:39:01.875 INFO [8953]: Version from config: 1.0 -- 01:39:01.875 DEBUG [8953]: Connecting to database... -- 01:39:01.875 DEBUG [8953]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:39:01.875 SQL [8953]: pgsql_db_connect() -- 01:39:01.879 DEBUG [8953]: Database connection successful -- 01:39:01.879 INFO [8953]: _SERVER found -- 01:39:01.879 INFO [8953]: REMOTE_ADDR = 192.168.1.13 -- 01:39:01.879 INFO [8953]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:39:01.879 INFO [8953]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=l46mhmeva9qd7g0l28gepgj5sgcg75ji -- 01:39:01.879 INFO [8953]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:39:01.879 INFO [8953]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:39:01.890 INFO [8953]: COREGRADE is stopping... -- 01:39:01.890 DEBUG [8953]: Closing database connection -- 01:39:01.890 SQL [8953]: pgsql_close() -- 01:39:03.112 INFO [8951]: COREGRADE is starting... -- 01:39:03.113 INFO [8951]: Version from config: 1.0 -- 01:39:03.113 DEBUG [8951]: Connecting to database... -- 01:39:03.113 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:39:03.113 SQL [8951]: pgsql_db_connect() -- 01:39:03.117 DEBUG [8951]: Database connection successful -- 01:39:03.117 INFO [8951]: _SERVER found -- 01:39:03.117 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 01:39:03.117 INFO [8951]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:39:03.117 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=l46mhmeva9qd7g0l28gepgj5sgcg75ji -- 01:39:03.117 INFO [8951]: QUERY_STRING = /member/page -- 01:39:03.117 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:39:03.154 INFO [8951]: COREGRADE is stopping... -- 01:39:03.154 DEBUG [8951]: Closing database connection -- 01:39:03.154 SQL [8951]: pgsql_close() -- 01:39:03.448 INFO [8951]: COREGRADE is starting... -- 01:39:03.448 INFO [8951]: Version from config: 1.0 -- 01:39:03.448 DEBUG [8951]: Connecting to database... -- 01:39:03.448 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:39:03.448 SQL [8951]: pgsql_db_connect() -- 01:39:03.452 DEBUG [8951]: Database connection successful -- 01:39:03.452 INFO [8951]: _SERVER found -- 01:39:03.453 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 01:39:03.453 INFO [8951]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:39:03.453 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=l46mhmeva9qd7g0l28gepgj5sgcg75ji -- 01:39:03.453 INFO [8951]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:39:03.453 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:39:03.464 INFO [8951]: COREGRADE is stopping... -- 01:39:03.464 DEBUG [8951]: Closing database connection -- 01:39:03.464 SQL [8951]: pgsql_close() -- 01:43:03.830 INFO [9028]: COREGRADE is starting... -- 01:43:03.830 INFO [9028]: Version from config: 1.0 -- 01:43:03.830 DEBUG [9028]: Connecting to database... -- 01:43:03.830 DEBUG [9028]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:43:03.830 SQL [9028]: pgsql_db_connect() -- 01:43:03.834 DEBUG [9028]: Database connection successful -- 01:43:03.834 INFO [9028]: _SERVER found -- 01:43:03.834 INFO [9028]: REMOTE_ADDR = 192.168.1.13 -- 01:43:03.834 INFO [9028]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:43:03.834 INFO [9028]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=l46mhmeva9qd7g0l28gepgj5sgcg75ji -- 01:43:03.834 INFO [9028]: QUERY_STRING = /member/page -- 01:43:03.834 INFO [9028]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:43:03.872 INFO [9028]: COREGRADE is stopping... -- 01:43:03.872 DEBUG [9028]: Closing database connection -- 01:43:03.872 SQL [9028]: pgsql_close() -- 01:43:04.417 INFO [9028]: COREGRADE is starting... -- 01:43:04.417 INFO [9028]: Version from config: 1.0 -- 01:43:04.417 DEBUG [9028]: Connecting to database... -- 01:43:04.417 DEBUG [9028]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:43:04.417 SQL [9028]: pgsql_db_connect() -- 01:43:04.421 DEBUG [9028]: Database connection successful -- 01:43:04.421 INFO [9028]: _SERVER found -- 01:43:04.421 INFO [9028]: REMOTE_ADDR = 192.168.1.13 -- 01:43:04.421 INFO [9028]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:43:04.421 INFO [9028]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=l46mhmeva9qd7g0l28gepgj5sgcg75ji -- 01:43:04.421 INFO [9028]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:43:04.421 INFO [9028]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:43:04.432 INFO [9028]: COREGRADE is stopping... -- 01:43:04.432 DEBUG [9028]: Closing database connection -- 01:43:04.432 SQL [9028]: pgsql_close() -- 01:43:28.895 INFO [8952]: COREGRADE is starting... -- 01:43:28.896 INFO [8952]: Version from config: 1.0 -- 01:43:28.896 DEBUG [8952]: Connecting to database... -- 01:43:28.896 DEBUG [8952]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:43:28.896 SQL [8952]: pgsql_db_connect() -- 01:43:28.900 DEBUG [8952]: Database connection successful -- 01:43:28.900 INFO [8952]: _SERVER found -- 01:43:28.900 INFO [8952]: REMOTE_ADDR = 192.168.1.13 -- 01:43:28.900 INFO [8952]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:43:28.900 INFO [8952]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=l46mhmeva9qd7g0l28gepgj5sgcg75ji -- 01:43:28.900 INFO [8952]: QUERY_STRING = /member/configure -- 01:43:28.900 INFO [8952]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:43:28.936 INFO [8952]: COREGRADE is stopping... -- 01:43:28.936 DEBUG [8952]: Closing database connection -- 01:43:28.936 SQL [8952]: pgsql_close() -- 01:43:29.368 INFO [8952]: COREGRADE is starting... -- 01:43:29.369 INFO [8952]: Version from config: 1.0 -- 01:43:29.369 DEBUG [8952]: Connecting to database... -- 01:43:29.369 DEBUG [8952]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:43:29.369 SQL [8952]: pgsql_db_connect() -- 01:43:29.373 DEBUG [8952]: Database connection successful -- 01:43:29.373 INFO [8952]: _SERVER found -- 01:43:29.373 INFO [8952]: REMOTE_ADDR = 192.168.1.13 -- 01:43:29.373 INFO [8952]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:43:29.373 INFO [8952]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=l46mhmeva9qd7g0l28gepgj5sgcg75ji -- 01:43:29.373 INFO [8952]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:43:29.373 INFO [8952]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:43:29.384 INFO [8952]: COREGRADE is stopping... -- 01:43:29.384 DEBUG [8952]: Closing database connection -- 01:43:29.384 SQL [8952]: pgsql_close() -- 01:44:38.495 INFO [9031]: COREGRADE is starting... -- 01:44:38.495 INFO [9031]: Version from config: 1.0 -- 01:44:38.495 DEBUG [9031]: Connecting to database... -- 01:44:38.495 DEBUG [9031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:44:38.495 SQL [9031]: pgsql_db_connect() -- 01:44:38.500 DEBUG [9031]: Database connection successful -- 01:44:38.500 INFO [9031]: _SERVER found -- 01:44:38.500 INFO [9031]: REMOTE_ADDR = 192.168.1.13 -- 01:44:38.500 INFO [9031]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:44:38.500 INFO [9031]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=l46mhmeva9qd7g0l28gepgj5sgcg75ji -- 01:44:38.500 INFO [9031]: QUERY_STRING = /member/configure -- 01:44:38.500 INFO [9031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:44:38.537 INFO [9031]: COREGRADE is stopping... -- 01:44:38.537 DEBUG [9031]: Closing database connection -- 01:44:38.537 SQL [9031]: pgsql_close() -- 01:44:39.265 INFO [9031]: COREGRADE is starting... -- 01:44:39.265 INFO [9031]: Version from config: 1.0 -- 01:44:39.265 DEBUG [9031]: Connecting to database... -- 01:44:39.265 DEBUG [9031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:44:39.265 SQL [9031]: pgsql_db_connect() -- 01:44:39.269 DEBUG [9031]: Database connection successful -- 01:44:39.269 INFO [9031]: _SERVER found -- 01:44:39.269 INFO [9031]: REMOTE_ADDR = 192.168.1.13 -- 01:44:39.269 INFO [9031]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:44:39.269 INFO [9031]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glpsj6u6f7if1cs88fghaikoq1isv907 -- 01:44:39.269 INFO [9031]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:44:39.269 INFO [9031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:44:39.280 INFO [9031]: COREGRADE is stopping... -- 01:44:39.281 DEBUG [9031]: Closing database connection -- 01:44:39.281 SQL [9031]: pgsql_close() -- 01:44:40.186 INFO [8950]: COREGRADE is starting... -- 01:44:40.187 INFO [8950]: Version from config: 1.0 -- 01:44:40.187 DEBUG [8950]: Connecting to database... -- 01:44:40.187 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:44:40.187 SQL [8950]: pgsql_db_connect() -- 01:44:40.191 DEBUG [8950]: Database connection successful -- 01:44:40.191 INFO [8950]: _SERVER found -- 01:44:40.191 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 01:44:40.191 INFO [8950]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:44:40.191 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glpsj6u6f7if1cs88fghaikoq1isv907 -- 01:44:40.191 INFO [8950]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:44:40.191 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:44:40.202 INFO [8950]: COREGRADE is stopping... -- 01:44:40.202 DEBUG [8950]: Closing database connection -- 01:44:40.202 SQL [8950]: pgsql_close() -- 01:44:41.180 INFO [8950]: COREGRADE is starting... -- 01:44:41.181 INFO [8950]: Version from config: 1.0 -- 01:44:41.181 DEBUG [8950]: Connecting to database... -- 01:44:41.181 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:44:41.181 SQL [8950]: pgsql_db_connect() -- 01:44:41.185 DEBUG [8950]: Database connection successful -- 01:44:41.185 INFO [8950]: _SERVER found -- 01:44:41.185 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 01:44:41.185 INFO [8950]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:44:41.185 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glpsj6u6f7if1cs88fghaikoq1isv907 -- 01:44:41.185 INFO [8950]: QUERY_STRING = /member/configure -- 01:44:41.185 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:44:41.220 INFO [8950]: COREGRADE is stopping... -- 01:44:41.220 DEBUG [8950]: Closing database connection -- 01:44:41.220 SQL [8950]: pgsql_close() -- 01:44:41.938 INFO [8950]: COREGRADE is starting... -- 01:44:41.938 INFO [8950]: Version from config: 1.0 -- 01:44:41.938 DEBUG [8950]: Connecting to database... -- 01:44:41.938 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:44:41.938 SQL [8950]: pgsql_db_connect() -- 01:44:41.942 DEBUG [8950]: Database connection successful -- 01:44:41.942 INFO [8950]: _SERVER found -- 01:44:41.942 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 01:44:41.942 INFO [8950]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:44:41.942 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glpsj6u6f7if1cs88fghaikoq1isv907 -- 01:44:41.942 INFO [8950]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:44:41.942 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:44:41.953 INFO [8950]: COREGRADE is stopping... -- 01:44:41.953 DEBUG [8950]: Closing database connection -- 01:44:41.953 SQL [8950]: pgsql_close() -- 01:44:42.397 INFO [9031]: COREGRADE is starting... -- 01:44:42.397 INFO [9031]: Version from config: 1.0 -- 01:44:42.397 DEBUG [9031]: Connecting to database... -- 01:44:42.397 DEBUG [9031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:44:42.397 SQL [9031]: pgsql_db_connect() -- 01:44:42.401 DEBUG [9031]: Database connection successful -- 01:44:42.401 INFO [9031]: _SERVER found -- 01:44:42.401 INFO [9031]: REMOTE_ADDR = 192.168.1.13 -- 01:44:42.401 INFO [9031]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:44:42.401 INFO [9031]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glpsj6u6f7if1cs88fghaikoq1isv907 -- 01:44:42.401 INFO [9031]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:44:42.401 INFO [9031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:44:42.412 INFO [9031]: COREGRADE is stopping... -- 01:44:42.412 DEBUG [9031]: Closing database connection -- 01:44:42.412 SQL [9031]: pgsql_close() -- 01:45:32.790 INFO [8953]: COREGRADE is starting... -- 01:45:32.791 INFO [8953]: Version from config: 1.0 -- 01:45:32.791 DEBUG [8953]: Connecting to database... -- 01:45:32.791 DEBUG [8953]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:45:32.791 SQL [8953]: pgsql_db_connect() -- 01:45:32.795 DEBUG [8953]: Database connection successful -- 01:45:32.795 INFO [8953]: _SERVER found -- 01:45:32.795 INFO [8953]: REMOTE_ADDR = 192.168.1.13 -- 01:45:32.795 INFO [8953]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:45:32.795 INFO [8953]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glpsj6u6f7if1cs88fghaikoq1isv907 -- 01:45:32.795 INFO [8953]: QUERY_STRING = /member -- 01:45:32.795 INFO [8953]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:45:32.830 INFO [8953]: COREGRADE is stopping... -- 01:45:32.830 DEBUG [8953]: Closing database connection -- 01:45:32.830 SQL [8953]: pgsql_close() -- 01:45:33.368 INFO [8953]: COREGRADE is starting... -- 01:45:33.369 INFO [8953]: Version from config: 1.0 -- 01:45:33.369 DEBUG [8953]: Connecting to database... -- 01:45:33.369 DEBUG [8953]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:45:33.369 SQL [8953]: pgsql_db_connect() -- 01:45:33.375 INFO [8951]: COREGRADE is starting... -- 01:45:33.375 INFO [8951]: Version from config: 1.0 -- 01:45:33.375 DEBUG [8951]: Connecting to database... -- 01:45:33.375 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:45:33.375 SQL [8951]: pgsql_db_connect() -- 01:45:33.373 DEBUG [8953]: Database connection successful -- 01:45:33.373 INFO [8953]: _SERVER found -- 01:45:33.373 INFO [8953]: REMOTE_ADDR = 192.168.1.13 -- 01:45:33.373 INFO [8953]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:45:33.373 INFO [8953]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glpsj6u6f7if1cs88fghaikoq1isv907 -- 01:45:33.373 INFO [8953]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:45:33.373 INFO [8953]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:45:33.384 INFO [8953]: COREGRADE is stopping... -- 01:45:33.384 DEBUG [8953]: Closing database connection -- 01:45:33.384 SQL [8953]: pgsql_close() -- 01:45:33.379 DEBUG [8951]: Database connection successful -- 01:45:33.379 INFO [8951]: _SERVER found -- 01:45:33.379 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 01:45:33.379 INFO [8951]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:45:33.379 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glpsj6u6f7if1cs88fghaikoq1isv907 -- 01:45:33.379 INFO [8951]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:45:33.379 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:45:33.390 INFO [8951]: COREGRADE is stopping... -- 01:45:33.390 DEBUG [8951]: Closing database connection -- 01:45:33.390 SQL [8951]: pgsql_close() -- 01:45:34.492 INFO [8951]: COREGRADE is starting... -- 01:45:34.492 INFO [8951]: Version from config: 1.0 -- 01:45:34.492 DEBUG [8951]: Connecting to database... -- 01:45:34.492 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:45:34.492 SQL [8951]: pgsql_db_connect() -- 01:45:34.496 DEBUG [8951]: Database connection successful -- 01:45:34.496 INFO [8951]: _SERVER found -- 01:45:34.496 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 01:45:34.496 INFO [8951]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:45:34.496 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glpsj6u6f7if1cs88fghaikoq1isv907 -- 01:45:34.496 INFO [8951]: QUERY_STRING = /member/page -- 01:45:34.496 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:45:34.532 INFO [8951]: COREGRADE is stopping... -- 01:45:34.532 DEBUG [8951]: Closing database connection -- 01:45:34.532 SQL [8951]: pgsql_close() -- 01:45:34.907 INFO [8951]: COREGRADE is starting... -- 01:45:34.907 INFO [8951]: Version from config: 1.0 -- 01:45:34.907 DEBUG [8951]: Connecting to database... -- 01:45:34.907 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:45:34.907 SQL [8951]: pgsql_db_connect() -- 01:45:34.921 INFO [8953]: COREGRADE is starting... -- 01:45:34.922 INFO [8953]: Version from config: 1.0 -- 01:45:34.922 DEBUG [8953]: Connecting to database... -- 01:45:34.922 DEBUG [8953]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:45:34.922 SQL [8953]: pgsql_db_connect() -- 01:45:34.911 DEBUG [8951]: Database connection successful -- 01:45:34.911 INFO [8951]: _SERVER found -- 01:45:34.911 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 01:45:34.911 INFO [8951]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:45:34.911 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glpsj6u6f7if1cs88fghaikoq1isv907 -- 01:45:34.911 INFO [8951]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:45:34.911 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:45:34.922 INFO [8951]: COREGRADE is stopping... -- 01:45:34.922 DEBUG [8951]: Closing database connection -- 01:45:34.922 SQL [8951]: pgsql_close() -- 01:45:34.926 DEBUG [8953]: Database connection successful -- 01:45:34.926 INFO [8953]: _SERVER found -- 01:45:34.926 INFO [8953]: REMOTE_ADDR = 192.168.1.13 -- 01:45:34.926 INFO [8953]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:45:34.926 INFO [8953]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glpsj6u6f7if1cs88fghaikoq1isv907 -- 01:45:34.926 INFO [8953]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:45:34.926 INFO [8953]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:45:34.937 INFO [8953]: COREGRADE is stopping... -- 01:45:34.937 DEBUG [8953]: Closing database connection -- 01:45:34.937 SQL [8953]: pgsql_close() -- 01:45:46.029 INFO [9028]: COREGRADE is starting... -- 01:45:46.029 INFO [9028]: Version from config: 1.0 -- 01:45:46.029 DEBUG [9028]: Connecting to database... -- 01:45:46.029 DEBUG [9028]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:45:46.029 SQL [9028]: pgsql_db_connect() -- 01:45:46.033 DEBUG [9028]: Database connection successful -- 01:45:46.033 INFO [9028]: _SERVER found -- 01:45:46.033 INFO [9028]: REMOTE_ADDR = 192.168.1.13 -- 01:45:46.033 INFO [9028]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:45:46.033 INFO [9028]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glpsj6u6f7if1cs88fghaikoq1isv907 -- 01:45:46.033 INFO [9028]: QUERY_STRING = /member -- 01:45:46.033 INFO [9028]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:45:46.069 INFO [9028]: COREGRADE is stopping... -- 01:45:46.069 DEBUG [9028]: Closing database connection -- 01:45:46.069 SQL [9028]: pgsql_close() -- 01:45:46.509 INFO [9028]: COREGRADE is starting... -- 01:45:46.509 INFO [9028]: Version from config: 1.0 -- 01:45:46.509 DEBUG [9028]: Connecting to database... -- 01:45:46.509 DEBUG [9028]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:45:46.509 SQL [9028]: pgsql_db_connect() -- 01:45:46.513 DEBUG [9028]: Database connection successful -- 01:45:46.513 INFO [9028]: _SERVER found -- 01:45:46.513 INFO [9028]: REMOTE_ADDR = 192.168.1.13 -- 01:45:46.513 INFO [9028]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:45:46.513 INFO [9028]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glpsj6u6f7if1cs88fghaikoq1isv907 -- 01:45:46.513 INFO [9028]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:45:46.513 INFO [9028]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:45:46.524 INFO [9028]: COREGRADE is stopping... -- 01:45:46.524 DEBUG [9028]: Closing database connection -- 01:45:46.524 SQL [9028]: pgsql_close() -- 01:45:46.533 INFO [9028]: COREGRADE is starting... -- 01:45:46.534 INFO [9028]: Version from config: 1.0 -- 01:45:46.534 DEBUG [9028]: Connecting to database... -- 01:45:46.534 DEBUG [9028]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:45:46.534 SQL [9028]: pgsql_db_connect() -- 01:45:46.537 DEBUG [9028]: Database connection successful -- 01:45:46.537 INFO [9028]: _SERVER found -- 01:45:46.537 INFO [9028]: REMOTE_ADDR = 192.168.1.13 -- 01:45:46.537 INFO [9028]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:45:46.537 INFO [9028]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glpsj6u6f7if1cs88fghaikoq1isv907 -- 01:45:46.537 INFO [9028]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:45:46.537 INFO [9028]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:45:46.548 INFO [9028]: COREGRADE is stopping... -- 01:45:46.548 DEBUG [9028]: Closing database connection -- 01:45:46.548 SQL [9028]: pgsql_close() -- 01:45:47.433 INFO [9028]: COREGRADE is starting... -- 01:45:47.433 INFO [9028]: Version from config: 1.0 -- 01:45:47.433 DEBUG [9028]: Connecting to database... -- 01:45:47.433 DEBUG [9028]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:45:47.433 SQL [9028]: pgsql_db_connect() -- 01:45:47.437 DEBUG [9028]: Database connection successful -- 01:45:47.437 INFO [9028]: _SERVER found -- 01:45:47.437 INFO [9028]: REMOTE_ADDR = 192.168.1.13 -- 01:45:47.437 INFO [9028]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:45:47.437 INFO [9028]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glpsj6u6f7if1cs88fghaikoq1isv907 -- 01:45:47.437 INFO [9028]: QUERY_STRING = /member/page -- 01:45:47.437 INFO [9028]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:45:47.473 INFO [9028]: COREGRADE is stopping... -- 01:45:47.473 DEBUG [9028]: Closing database connection -- 01:45:47.473 SQL [9028]: pgsql_close() -- 01:45:47.929 INFO [9028]: COREGRADE is starting... -- 01:45:47.929 INFO [9028]: Version from config: 1.0 -- 01:45:47.929 DEBUG [9028]: Connecting to database... -- 01:45:47.929 DEBUG [9028]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:45:47.929 SQL [9028]: pgsql_db_connect() -- 01:45:47.933 DEBUG [9028]: Database connection successful -- 01:45:47.933 INFO [9028]: _SERVER found -- 01:45:47.933 INFO [9028]: REMOTE_ADDR = 192.168.1.13 -- 01:45:47.933 INFO [9028]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:45:47.933 INFO [9028]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glpsj6u6f7if1cs88fghaikoq1isv907 -- 01:45:47.933 INFO [9028]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:45:47.933 INFO [9028]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:45:47.944 INFO [9028]: COREGRADE is stopping... -- 01:45:47.944 DEBUG [9028]: Closing database connection -- 01:45:47.944 SQL [9028]: pgsql_close() -- 01:45:47.949 INFO [8952]: COREGRADE is starting... -- 01:45:47.950 INFO [8952]: Version from config: 1.0 -- 01:45:47.950 DEBUG [8952]: Connecting to database... -- 01:45:47.950 DEBUG [8952]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:45:47.950 SQL [8952]: pgsql_db_connect() -- 01:45:47.953 DEBUG [8952]: Database connection successful -- 01:45:47.953 INFO [8952]: _SERVER found -- 01:45:47.953 INFO [8952]: REMOTE_ADDR = 192.168.1.13 -- 01:45:47.953 INFO [8952]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:45:47.953 INFO [8952]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glpsj6u6f7if1cs88fghaikoq1isv907 -- 01:45:47.953 INFO [8952]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:45:47.953 INFO [8952]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:45:47.965 INFO [8952]: COREGRADE is stopping... -- 01:45:47.965 DEBUG [8952]: Closing database connection -- 01:45:47.965 SQL [8952]: pgsql_close() -- 01:45:55.676 INFO [9649]: COREGRADE is starting... -- 01:45:55.677 INFO [9649]: Version from config: 1.0 -- 01:45:55.677 DEBUG [9649]: Connecting to database... -- 01:45:55.677 DEBUG [9649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:45:55.677 SQL [9649]: pgsql_db_connect() -- 01:45:55.681 DEBUG [9649]: Database connection successful -- 01:45:55.681 INFO [9649]: _SERVER found -- 01:45:55.681 INFO [9649]: REMOTE_ADDR = 192.168.1.13 -- 01:45:55.681 INFO [9649]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:45:55.681 INFO [9649]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glpsj6u6f7if1cs88fghaikoq1isv907 -- 01:45:55.681 INFO [9649]: QUERY_STRING = /member -- 01:45:55.681 INFO [9649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:45:55.723 INFO [9649]: COREGRADE is stopping... -- 01:45:55.723 DEBUG [9649]: Closing database connection -- 01:45:55.723 SQL [9649]: pgsql_close() -- 01:45:56.015 INFO [9649]: COREGRADE is starting... -- 01:45:56.016 INFO [9649]: Version from config: 1.0 -- 01:45:56.016 DEBUG [9649]: Connecting to database... -- 01:45:56.016 DEBUG [9649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:45:56.016 SQL [9649]: pgsql_db_connect() -- 01:45:56.020 DEBUG [9649]: Database connection successful -- 01:45:56.020 INFO [9649]: _SERVER found -- 01:45:56.020 INFO [9649]: REMOTE_ADDR = 192.168.1.13 -- 01:45:56.020 INFO [9649]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:45:56.020 INFO [9649]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glpsj6u6f7if1cs88fghaikoq1isv907 -- 01:45:56.020 INFO [9649]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:45:56.020 INFO [9649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:45:56.032 INFO [9649]: COREGRADE is stopping... -- 01:45:56.032 DEBUG [9649]: Closing database connection -- 01:45:56.032 SQL [9649]: pgsql_close() -- 01:45:56.034 INFO [8949]: COREGRADE is starting... -- 01:45:56.035 INFO [8949]: Version from config: 1.0 -- 01:45:56.035 DEBUG [8949]: Connecting to database... -- 01:45:56.035 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:45:56.035 SQL [8949]: pgsql_db_connect() -- 01:45:56.038 DEBUG [8949]: Database connection successful -- 01:45:56.038 INFO [8949]: _SERVER found -- 01:45:56.038 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 01:45:56.038 INFO [8949]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:45:56.038 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glpsj6u6f7if1cs88fghaikoq1isv907 -- 01:45:56.038 INFO [8949]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:45:56.038 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:45:56.050 INFO [8949]: COREGRADE is stopping... -- 01:45:56.050 DEBUG [8949]: Closing database connection -- 01:45:56.050 SQL [8949]: pgsql_close() -- 01:45:56.796 INFO [8949]: COREGRADE is starting... -- 01:45:56.796 INFO [8949]: Version from config: 1.0 -- 01:45:56.796 DEBUG [8949]: Connecting to database... -- 01:45:56.796 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:45:56.796 SQL [8949]: pgsql_db_connect() -- 01:45:56.800 DEBUG [8949]: Database connection successful -- 01:45:56.800 INFO [8949]: _SERVER found -- 01:45:56.800 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 01:45:56.800 INFO [8949]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:45:56.800 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glpsj6u6f7if1cs88fghaikoq1isv907 -- 01:45:56.800 INFO [8949]: QUERY_STRING = /member/page -- 01:45:56.800 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:45:56.836 INFO [8949]: COREGRADE is stopping... -- 01:45:56.836 DEBUG [8949]: Closing database connection -- 01:45:56.836 SQL [8949]: pgsql_close() -- 01:45:57.150 INFO [8949]: COREGRADE is starting... -- 01:45:57.150 INFO [8949]: Version from config: 1.0 -- 01:45:57.150 DEBUG [8949]: Connecting to database... -- 01:45:57.150 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:45:57.150 SQL [8949]: pgsql_db_connect() -- 01:45:57.160 INFO [9649]: COREGRADE is starting... -- 01:45:57.160 INFO [9649]: Version from config: 1.0 -- 01:45:57.160 DEBUG [9649]: Connecting to database... -- 01:45:57.160 DEBUG [9649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:45:57.160 SQL [9649]: pgsql_db_connect() -- 01:45:57.154 DEBUG [8949]: Database connection successful -- 01:45:57.154 INFO [8949]: _SERVER found -- 01:45:57.154 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 01:45:57.154 INFO [8949]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:45:57.154 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glpsj6u6f7if1cs88fghaikoq1isv907 -- 01:45:57.154 INFO [8949]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:45:57.154 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:45:57.165 INFO [8949]: COREGRADE is stopping... -- 01:45:57.165 DEBUG [8949]: Closing database connection -- 01:45:57.165 SQL [8949]: pgsql_close() -- 01:45:57.164 DEBUG [9649]: Database connection successful -- 01:45:57.164 INFO [9649]: _SERVER found -- 01:45:57.164 INFO [9649]: REMOTE_ADDR = 192.168.1.13 -- 01:45:57.164 INFO [9649]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:45:57.164 INFO [9649]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glpsj6u6f7if1cs88fghaikoq1isv907 -- 01:45:57.164 INFO [9649]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:45:57.164 INFO [9649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:45:57.177 INFO [9649]: COREGRADE is stopping... -- 01:45:57.177 DEBUG [9649]: Closing database connection -- 01:45:57.177 SQL [9649]: pgsql_close() -- 01:46:00.320 INFO [9649]: COREGRADE is starting... -- 01:46:00.321 INFO [9649]: Version from config: 1.0 -- 01:46:00.321 DEBUG [9649]: Connecting to database... -- 01:46:00.321 DEBUG [9649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:46:00.321 SQL [9649]: pgsql_db_connect() -- 01:46:00.325 DEBUG [9649]: Database connection successful -- 01:46:00.325 INFO [9649]: _SERVER found -- 01:46:00.325 INFO [9649]: REMOTE_ADDR = 192.168.1.13 -- 01:46:00.325 INFO [9649]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:46:00.325 INFO [9649]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glpsj6u6f7if1cs88fghaikoq1isv907 -- 01:46:00.325 INFO [9649]: QUERY_STRING = /member/configure -- 01:46:00.325 INFO [9649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:46:00.363 INFO [9649]: COREGRADE is stopping... -- 01:46:00.363 DEBUG [9649]: Closing database connection -- 01:46:00.363 SQL [9649]: pgsql_close() -- 01:46:00.752 INFO [9649]: COREGRADE is starting... -- 01:46:00.752 INFO [9649]: Version from config: 1.0 -- 01:46:00.752 DEBUG [9649]: Connecting to database... -- 01:46:00.752 DEBUG [9649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:46:00.752 SQL [9649]: pgsql_db_connect() -- 01:46:00.756 DEBUG [9649]: Database connection successful -- 01:46:00.756 INFO [9649]: _SERVER found -- 01:46:00.756 INFO [9649]: REMOTE_ADDR = 192.168.1.13 -- 01:46:00.756 INFO [9649]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:46:00.756 INFO [9649]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glpsj6u6f7if1cs88fghaikoq1isv907 -- 01:46:00.756 INFO [9649]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:46:00.756 INFO [9649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:46:00.769 INFO [9649]: COREGRADE is stopping... -- 01:46:00.769 DEBUG [9649]: Closing database connection -- 01:46:00.769 SQL [9649]: pgsql_close() -- 01:46:00.773 INFO [9649]: COREGRADE is starting... -- 01:46:00.773 INFO [9649]: Version from config: 1.0 -- 01:46:00.773 DEBUG [9649]: Connecting to database... -- 01:46:00.773 DEBUG [9649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:46:00.773 SQL [9649]: pgsql_db_connect() -- 01:46:00.777 DEBUG [9649]: Database connection successful -- 01:46:00.777 INFO [9649]: _SERVER found -- 01:46:00.777 INFO [9649]: REMOTE_ADDR = 192.168.1.13 -- 01:46:00.777 INFO [9649]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:46:00.777 INFO [9649]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glpsj6u6f7if1cs88fghaikoq1isv907 -- 01:46:00.777 INFO [9649]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:46:00.777 INFO [9649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:46:00.789 INFO [9649]: COREGRADE is stopping... -- 01:46:00.789 DEBUG [9649]: Closing database connection -- 01:46:00.789 SQL [9649]: pgsql_close() -- 01:46:30.098 INFO [8950]: COREGRADE is starting... -- 01:46:30.098 INFO [8950]: Version from config: 1.0 -- 01:46:30.098 DEBUG [8950]: Connecting to database... -- 01:46:30.098 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:46:30.098 SQL [8950]: pgsql_db_connect() -- 01:46:30.102 DEBUG [8950]: Database connection successful -- 01:46:30.102 INFO [8950]: _SERVER found -- 01:46:30.102 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 01:46:30.102 INFO [8950]: SERVER_NAME = oameye.works.coregrade.com -- 01:46:30.102 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mgjr630c4te7ejakeoa3gem7rhmdjht5 -- 01:46:30.102 INFO [8950]: QUERY_STRING = /auth -- 01:46:30.102 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:46:30.134 INFO [8950]: COREGRADE is stopping... -- 01:46:30.134 DEBUG [8950]: Closing database connection -- 01:46:30.134 SQL [8950]: pgsql_close() -- 01:46:30.276 INFO [8950]: COREGRADE is starting... -- 01:46:30.277 INFO [8950]: Version from config: 1.0 -- 01:46:30.277 DEBUG [8950]: Connecting to database... -- 01:46:30.277 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:46:30.277 SQL [8950]: pgsql_db_connect() -- 01:46:30.281 DEBUG [8950]: Database connection successful -- 01:46:30.281 INFO [8950]: _SERVER found -- 01:46:30.281 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 01:46:30.281 INFO [8950]: SERVER_NAME = oameye.works.coregrade.com -- 01:46:30.281 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=o8v36i0u10o0n2mbl6thriauiu7tkbdp -- 01:46:30.281 INFO [8950]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 01:46:30.281 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:46:30.292 INFO [8950]: COREGRADE is stopping... -- 01:46:30.292 DEBUG [8950]: Closing database connection -- 01:46:30.292 SQL [8950]: pgsql_close() -- 01:46:30.297 INFO [9032]: COREGRADE is starting... -- 01:46:30.297 INFO [9032]: Version from config: 1.0 -- 01:46:30.297 DEBUG [9032]: Connecting to database... -- 01:46:30.297 DEBUG [9032]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:46:30.297 SQL [9032]: pgsql_db_connect() -- 01:46:30.301 DEBUG [9032]: Database connection successful -- 01:46:30.301 INFO [9032]: _SERVER found -- 01:46:30.301 INFO [9032]: REMOTE_ADDR = 192.168.1.13 -- 01:46:30.301 INFO [9032]: SERVER_NAME = oameye.works.coregrade.com -- 01:46:30.301 INFO [9032]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=o8v36i0u10o0n2mbl6thriauiu7tkbdp -- 01:46:30.301 INFO [9032]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:46:30.301 INFO [9032]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:46:30.313 INFO [9032]: COREGRADE is stopping... -- 01:46:30.313 DEBUG [9032]: Closing database connection -- 01:46:30.313 SQL [9032]: pgsql_close() -- 01:54:49.527 INFO [9031]: COREGRADE is starting... -- 01:54:49.528 INFO [9031]: Version from config: 1.0 -- 01:54:49.528 DEBUG [9031]: Connecting to database... -- 01:54:49.528 DEBUG [9031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:54:49.528 SQL [9031]: pgsql_db_connect() -- 01:54:49.532 DEBUG [9031]: Database connection successful -- 01:54:49.532 INFO [9031]: _SERVER found -- 01:54:49.532 INFO [9031]: REMOTE_ADDR = 192.168.1.13 -- 01:54:49.532 INFO [9031]: SERVER_NAME = oameye.works.coregrade.com -- 01:54:49.532 INFO [9031]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 01:54:49.532 INFO [9031]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 01:54:49.570 INFO [9031]: COREGRADE is stopping... -- 01:54:49.570 DEBUG [9031]: Closing database connection -- 01:54:49.570 SQL [9031]: pgsql_close() -- 02:06:01.250 INFO [8951]: COREGRADE is starting... -- 02:06:01.251 INFO [8951]: Version from config: 1.0 -- 02:06:01.251 DEBUG [8951]: Connecting to database... -- 02:06:01.251 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:06:01.251 SQL [8951]: pgsql_db_connect() -- 02:06:01.255 DEBUG [8951]: Database connection successful -- 02:06:01.255 INFO [8951]: _SERVER found -- 02:06:01.255 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 02:06:01.255 INFO [8951]: SERVER_NAME = tokslaw.works.coregrade.com -- 02:06:01.255 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=glpsj6u6f7if1cs88fghaikoq1isv907 -- 02:06:01.255 INFO [8951]: QUERY_STRING = /auth -- 02:06:01.255 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:06:01.288 INFO [8951]: COREGRADE is stopping... -- 02:06:01.288 DEBUG [8951]: Closing database connection -- 02:06:01.288 SQL [8951]: pgsql_close() -- 02:06:01.751 INFO [8951]: COREGRADE is starting... -- 02:06:01.751 INFO [8951]: Version from config: 1.0 -- 02:06:01.751 DEBUG [8951]: Connecting to database... -- 02:06:01.751 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:06:01.751 SQL [8951]: pgsql_db_connect() -- 02:06:01.755 DEBUG [8951]: Database connection successful -- 02:06:01.755 INFO [8951]: _SERVER found -- 02:06:01.755 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 02:06:01.755 INFO [8951]: SERVER_NAME = tokslaw.works.coregrade.com -- 02:06:01.755 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5fsend1ca1j6a4j8dtq6mo07mhai1aag -- 02:06:01.755 INFO [8951]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 02:06:01.755 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:06:01.766 INFO [8951]: COREGRADE is stopping... -- 02:06:01.766 DEBUG [8951]: Closing database connection -- 02:06:01.766 SQL [8951]: pgsql_close() -- 02:06:01.768 INFO [8953]: COREGRADE is starting... -- 02:06:01.768 INFO [8953]: Version from config: 1.0 -- 02:06:01.768 DEBUG [8953]: Connecting to database... -- 02:06:01.768 DEBUG [8953]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:06:01.768 SQL [8953]: pgsql_db_connect() -- 02:06:01.772 DEBUG [8953]: Database connection successful -- 02:06:01.772 INFO [8953]: _SERVER found -- 02:06:01.772 INFO [8953]: REMOTE_ADDR = 192.168.1.13 -- 02:06:01.772 INFO [8953]: SERVER_NAME = tokslaw.works.coregrade.com -- 02:06:01.772 INFO [8953]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5fsend1ca1j6a4j8dtq6mo07mhai1aag -- 02:06:01.772 INFO [8953]: QUERY_STRING = /app-assets/data/locales/en.json -- 02:06:01.772 INFO [8953]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:06:01.783 INFO [8953]: COREGRADE is stopping... -- 02:06:01.783 DEBUG [8953]: Closing database connection -- 02:06:01.783 SQL [8953]: pgsql_close() -- 02:29:19.038 INFO [9028]: COREGRADE is starting... -- 02:29:19.039 INFO [9028]: Version from config: 1.0 -- 02:29:19.039 DEBUG [9028]: Connecting to database... -- 02:29:19.039 DEBUG [9028]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:29:19.039 SQL [9028]: pgsql_db_connect() -- 02:29:19.080 INFO [9028]: COREGRADE is starting... -- 02:29:19.080 INFO [9028]: Version from config: 1.0 -- 02:29:19.080 DEBUG [9028]: Connecting to database... -- 02:29:19.080 DEBUG [9028]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:29:19.080 SQL [9028]: pgsql_db_connect() -- 02:29:19.086 DEBUG [9028]: Database connection successful -- 02:29:19.086 INFO [9028]: _SERVER found -- 02:29:19.086 INFO [9028]: REMOTE_ADDR = 192.168.1.13 -- 02:29:19.086 INFO [9028]: SERVER_NAME = oameye.works.coregrade.com -- 02:29:19.086 INFO [9028]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=o8v36i0u10o0n2mbl6thriauiu7tkbdp -- 02:29:19.086 INFO [9028]: QUERY_STRING = -- 02:29:19.086 INFO [9028]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:29:19.086 INFO [9028]: SystemStatus()09-09-********~************ -- 02:29:19.086 INFO [9028]: long coregrade_api_main(CVars in, CVars &out) -- 02:29:19.086 INFO [9028]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 02:29:19.086 INFO [9028]: account calls -- 02:29:19.086 INFO [9028]: account_calls() -- 02:29:19.086 INFO [9028]: LoginCoreGradeAccount() -- 02:29:19.086 FLOG_MAX [9028]: REQ_STRING(username) -- 02:29:19.087 FLOG_MAX [9028]: REQ_STRING(password) -- 02:29:19.087 FLOG_MAX [9028]: REQ_STRING(sessionid) -- 02:29:19.087 FLOG_MAX [9028]: long load_db_record( CVars &rec, const char * query, ... ) -- 02:29:19.087 SQL [9028]: pgsql_query() -- 02:29:19.087 SQL [9028]: About to run query: -- 02:29:19.087 SQL [9028]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 02:29:19.091 SQL [9028]: Found rows: 1 -- 02:29:19.091 FLOG_MAX [9028]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 02:29:19.091 INFO [9028]: long SessionCheck(long uid, const char *sessionid, int create ) -- 02:29:19.091 SQL [9028]: pgsql_exec() -- 02:29:19.091 SQL [9028]: About to run query: -- 02:29:19.091 SQL [9028]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 02:29:19.093 SQL [9028]: PQcmdTuples: 1 -- 02:29:19.093 SQL [9028]: Affected rows: 1 -- 02:29:19.093 SQL [9028]: pgsql_exec() -- 02:29:19.093 SQL [9028]: About to run query: -- 02:29:19.093 SQL [9028]: DELETE FROM members_session WHERE member_id=5 -- 02:29:19.093 SQL [9028]: PQcmdTuples: 0 -- 02:29:19.093 SQL [9028]: Affected rows: 0 -- 02:29:19.093 SQL [9028]: pgsql_query() -- 02:29:19.093 SQL [9028]: About to run query: -- 02:29:19.093 SQL [9028]: SELECT * FROM members_session WHERE member_id=5 AND session<>'83646D217AE1C7863B158C0C2EB6D200' -- 02:29:19.094 SQL [9028]: Found rows: 0 -- 02:29:19.094 SQL [9028]: Found rows: 0 -- 02:29:19.094 FLOG_MAX [9028]: long load_db_record( CVars &rec, const char * query, ... ) -- 02:29:19.094 SQL [9028]: pgsql_query() -- 02:29:19.094 SQL [9028]: About to run query: -- 02:29:19.094 SQL [9028]: SELECT * FROM members_session WHERE member_id=5 AND session='83646D217AE1C7863B158C0C2EB6D200' -- 02:29:19.094 SQL [9028]: Found rows: 0 -- 02:29:19.094 SQL [9028]: Found rows: 0 -- 02:29:19.094 FLOG_MAX [9028]: insert_db_record() -- 02:29:19.094 SQL [9028]: pgsql_exec() -- 02:29:19.094 SQL [9028]: About to run query: -- 02:29:19.094 SQL [9028]: INSERT INTO members_session (member_id,session) VALUES ('5','83646D217AE1C7863B158C0C2EB6D200') -- 02:29:19.096 SQL [9028]: PQcmdTuples: 1 -- 02:29:19.096 SQL [9028]: Affected rows: 1 -- 02:29:19.096 FLOG_MAX [9028]: SELECT currval('members_session_id_seq') -- 02:29:19.096 SQL [9028]: pgsql_query() -- 02:29:19.096 SQL [9028]: About to run query: -- 02:29:19.096 SQL [9028]: SELECT currval('members_session_id_seq') -- 02:29:19.096 SQL [9028]: Found rows: 1 -- 02:29:19.096 INFO [9028]: CreateDefaultPage() -- 02:29:19.096 FLOG_MAX [9028]: long load_db_record( CVars &rec, const char * query, ... ) -- 02:29:19.096 SQL [9028]: pgsql_query() -- 02:29:19.096 SQL [9028]: About to run query: -- 02:29:19.096 SQL [9028]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 02:29:19.097 SQL [9028]: Found rows: 1 -- 02:29:19.097 FLOG_MAX [9028]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 02:29:19.097 SQL [9028]: pgsql_query() -- 02:29:19.097 SQL [9028]: About to run query: -- 02:29:19.097 SQL [9028]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 02:29:19.097 SQL [9028]: Found rows: 1 -- 02:29:19.097 INFO [9028]: /CreateDefaultPage() -- 02:29:19.097 INFO [9028]: /LoginCoreGradeAccount() -- 02:29:19.097 INFO [9028]: RET: added=2020-02-05 06:47:23.982154 -- 02:29:19.097 INFO [9028]: RET: email=ameye+11@chiefsoft.com -- 02:29:19.097 INFO [9028]: RET: firstname=Olu -- 02:29:19.097 INFO [9028]: RET: id=5 -- 02:29:19.097 INFO [9028]: RET: last_login= -- 02:29:19.097 INFO [9028]: RET: lastname=Amey -- 02:29:19.097 INFO [9028]: RET: loc=192.168.1.13 -- 02:29:19.097 INFO [9028]: RET: member_id=5 -- 02:29:19.097 INFO [9028]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 02:29:19.097 INFO [9028]: RET: phone= -- 02:29:19.097 INFO [9028]: RET: pid= -- 02:29:19.097 INFO [9028]: RET: result=YES I GET TO BACK END -- 02:29:19.097 INFO [9028]: RET: sessionid=83646D217AE1C7863B158C0C2EB6D200 -- 02:29:19.097 INFO [9028]: RET: status=1 -- 02:29:19.097 INFO [9028]: RET: stauts=OK -- 02:29:19.097 INFO [9028]: RET: username=ameye+11@chiefsoft.com -- 02:29:19.097 INFO [9028]: RET: verified= -- 02:29:19.099 INFO [9028]: COREGRADE is stopping... -- 02:29:19.099 DEBUG [9028]: Closing database connection -- 02:29:19.099 SQL [9028]: pgsql_close() -- 02:29:19.043 DEBUG [9028]: Database connection successful -- 02:29:19.043 INFO [9028]: _SERVER found -- 02:29:19.043 INFO [9028]: REMOTE_ADDR = 192.168.1.13 -- 02:29:19.043 INFO [9028]: SERVER_NAME = oameye.works.coregrade.com -- 02:29:19.043 INFO [9028]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=o8v36i0u10o0n2mbl6thriauiu7tkbdp -- 02:29:19.043 INFO [9028]: QUERY_STRING = /auth -- 02:29:19.043 INFO [9028]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:29:19.099 INFO [9028]: COREGRADE is stopping... -- 02:29:19.099 DEBUG [9028]: Closing database connection -- 02:29:19.099 SQL [9028]: pgsql_close() -- 02:29:19.132 INFO [9028]: COREGRADE is starting... -- 02:29:19.133 INFO [9028]: Version from config: 1.0 -- 02:29:19.133 DEBUG [9028]: Connecting to database... -- 02:29:19.133 DEBUG [9028]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:29:19.133 SQL [9028]: pgsql_db_connect() -- 02:29:19.137 DEBUG [9028]: Database connection successful -- 02:29:19.137 INFO [9028]: _SERVER found -- 02:29:19.137 INFO [9028]: REMOTE_ADDR = 192.168.1.13 -- 02:29:19.137 INFO [9028]: SERVER_NAME = oameye.works.coregrade.com -- 02:29:19.137 INFO [9028]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=9nenjqe02810es6soce5avhn5r9v9tcc -- 02:29:19.137 INFO [9028]: QUERY_STRING = /member/index -- 02:29:19.137 INFO [9028]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:29:19.172 INFO [9028]: COREGRADE is stopping... -- 02:29:19.172 DEBUG [9028]: Closing database connection -- 02:29:19.172 SQL [9028]: pgsql_close() -- 02:29:19.367 INFO [9028]: COREGRADE is starting... -- 02:29:19.367 INFO [9028]: Version from config: 1.0 -- 02:29:19.367 DEBUG [9028]: Connecting to database... -- 02:29:19.367 DEBUG [9028]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:29:19.367 SQL [9028]: pgsql_db_connect() -- 02:29:19.371 DEBUG [9028]: Database connection successful -- 02:29:19.371 INFO [9028]: _SERVER found -- 02:29:19.371 INFO [9028]: REMOTE_ADDR = 192.168.1.13 -- 02:29:19.371 INFO [9028]: SERVER_NAME = oameye.works.coregrade.com -- 02:29:19.371 INFO [9028]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=9nenjqe02810es6soce5avhn5r9v9tcc -- 02:29:19.371 INFO [9028]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 02:29:19.371 INFO [9028]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:29:19.382 INFO [9028]: COREGRADE is stopping... -- 02:29:19.383 DEBUG [9028]: Closing database connection -- 02:29:19.383 SQL [9028]: pgsql_close() -- 02:29:19.387 INFO [8952]: COREGRADE is starting... -- 02:29:19.387 INFO [8952]: Version from config: 1.0 -- 02:29:19.387 DEBUG [8952]: Connecting to database... -- 02:29:19.387 DEBUG [8952]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:29:19.387 SQL [8952]: pgsql_db_connect() -- 02:29:19.391 DEBUG [8952]: Database connection successful -- 02:29:19.391 INFO [8952]: _SERVER found -- 02:29:19.391 INFO [8952]: REMOTE_ADDR = 192.168.1.13 -- 02:29:19.391 INFO [8952]: SERVER_NAME = oameye.works.coregrade.com -- 02:29:19.391 INFO [8952]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=9nenjqe02810es6soce5avhn5r9v9tcc -- 02:29:19.391 INFO [8952]: QUERY_STRING = /app-assets/data/locales/en.json -- 02:29:19.391 INFO [8952]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:29:19.402 INFO [8952]: COREGRADE is stopping... -- 02:29:19.402 DEBUG [8952]: Closing database connection -- 02:29:19.402 SQL [8952]: pgsql_close() -- 02:29:22.281 INFO [8952]: COREGRADE is starting... -- 02:29:22.281 INFO [8952]: Version from config: 1.0 -- 02:29:22.281 DEBUG [8952]: Connecting to database... -- 02:29:22.281 DEBUG [8952]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:29:22.282 SQL [8952]: pgsql_db_connect() -- 02:29:22.286 DEBUG [8952]: Database connection successful -- 02:29:22.286 INFO [8952]: _SERVER found -- 02:29:22.286 INFO [8952]: REMOTE_ADDR = 192.168.1.13 -- 02:29:22.286 INFO [8952]: SERVER_NAME = oameye.works.coregrade.com -- 02:29:22.286 INFO [8952]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=9nenjqe02810es6soce5avhn5r9v9tcc -- 02:29:22.286 INFO [8952]: QUERY_STRING = /member/page -- 02:29:22.286 INFO [8952]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:29:22.322 INFO [8952]: COREGRADE is stopping... -- 02:29:22.322 DEBUG [8952]: Closing database connection -- 02:29:22.322 SQL [8952]: pgsql_close() -- 02:29:22.547 INFO [8952]: COREGRADE is starting... -- 02:29:22.547 INFO [8952]: Version from config: 1.0 -- 02:29:22.547 DEBUG [8952]: Connecting to database... -- 02:29:22.547 DEBUG [8952]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:29:22.547 SQL [8952]: pgsql_db_connect() -- 02:29:22.551 DEBUG [8952]: Database connection successful -- 02:29:22.551 INFO [8952]: _SERVER found -- 02:29:22.551 INFO [8952]: REMOTE_ADDR = 192.168.1.13 -- 02:29:22.551 INFO [8952]: SERVER_NAME = oameye.works.coregrade.com -- 02:29:22.551 INFO [8952]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=9nenjqe02810es6soce5avhn5r9v9tcc -- 02:29:22.551 INFO [8952]: QUERY_STRING = /app-assets/data/locales/en.json -- 02:29:22.551 INFO [8952]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:29:22.562 INFO [8952]: COREGRADE is stopping... -- 02:29:22.563 DEBUG [8952]: Closing database connection -- 02:29:22.563 SQL [8952]: pgsql_close() -- 02:29:31.057 INFO [8949]: COREGRADE is starting... -- 02:29:31.058 INFO [8949]: Version from config: 1.0 -- 02:29:31.058 DEBUG [8949]: Connecting to database... -- 02:29:31.058 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:29:31.058 SQL [8949]: pgsql_db_connect() -- 02:29:31.062 DEBUG [8949]: Database connection successful -- 02:29:31.062 INFO [8949]: _SERVER found -- 02:29:31.062 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 02:29:31.062 INFO [8949]: SERVER_NAME = oameye.works.coregrade.com -- 02:29:31.062 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=9nenjqe02810es6soce5avhn5r9v9tcc -- 02:29:31.062 INFO [8949]: QUERY_STRING = /member/viewCardAddAction -- 02:29:31.062 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:29:31.094 INFO [8949]: COREGRADE is stopping... -- 02:29:31.094 DEBUG [8949]: Closing database connection -- 02:29:31.094 SQL [8949]: pgsql_close() -- 02:29:33.525 INFO [8949]: COREGRADE is starting... -- 02:29:33.525 INFO [8949]: Version from config: 1.0 -- 02:29:33.525 DEBUG [8949]: Connecting to database... -- 02:29:33.525 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:29:33.525 SQL [8949]: pgsql_db_connect() -- 02:29:33.529 DEBUG [8949]: Database connection successful -- 02:29:33.529 INFO [8949]: _SERVER found -- 02:29:33.529 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 02:29:33.529 INFO [8949]: SERVER_NAME = oameye.works.coregrade.com -- 02:29:33.529 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=9nenjqe02810es6soce5avhn5r9v9tcc -- 02:29:33.529 INFO [8949]: QUERY_STRING = /member/viewCardAddAction -- 02:29:33.529 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:29:33.559 INFO [8949]: COREGRADE is stopping... -- 02:29:33.560 DEBUG [8949]: Closing database connection -- 02:29:33.560 SQL [8949]: pgsql_close() -- 02:29:34.505 INFO [8949]: COREGRADE is starting... -- 02:29:34.505 INFO [8949]: Version from config: 1.0 -- 02:29:34.505 DEBUG [8949]: Connecting to database... -- 02:29:34.505 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:29:34.505 SQL [8949]: pgsql_db_connect() -- 02:29:34.509 DEBUG [8949]: Database connection successful -- 02:29:34.509 INFO [8949]: _SERVER found -- 02:29:34.509 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 02:29:34.509 INFO [8949]: SERVER_NAME = oameye.works.coregrade.com -- 02:29:34.509 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=9nenjqe02810es6soce5avhn5r9v9tcc -- 02:29:34.509 INFO [8949]: QUERY_STRING = /member/viewCardAddAction -- 02:29:34.509 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:29:34.540 INFO [8949]: COREGRADE is stopping... -- 02:29:34.540 DEBUG [8949]: Closing database connection -- 02:29:34.540 SQL [8949]: pgsql_close() -- 02:29:36.877 INFO [8949]: COREGRADE is starting... -- 02:29:36.877 INFO [8949]: Version from config: 1.0 -- 02:29:36.877 DEBUG [8949]: Connecting to database... -- 02:29:36.877 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:29:36.877 SQL [8949]: pgsql_db_connect() -- 02:29:36.881 DEBUG [8949]: Database connection successful -- 02:29:36.881 INFO [8949]: _SERVER found -- 02:29:36.881 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 02:29:36.881 INFO [8949]: SERVER_NAME = oameye.works.coregrade.com -- 02:29:36.881 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=9nenjqe02810es6soce5avhn5r9v9tcc -- 02:29:36.881 INFO [8949]: QUERY_STRING = /member/viewCardAddAction -- 02:29:36.881 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:29:36.911 INFO [8949]: COREGRADE is stopping... -- 02:29:36.911 DEBUG [8949]: Closing database connection -- 02:29:36.911 SQL [8949]: pgsql_close() -- 02:30:21.359 INFO [9649]: COREGRADE is starting... -- 02:30:21.360 INFO [9649]: Version from config: 1.0 -- 02:30:21.360 DEBUG [9649]: Connecting to database... -- 02:30:21.360 DEBUG [9649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:30:21.360 SQL [9649]: pgsql_db_connect() -- 02:30:21.364 DEBUG [9649]: Database connection successful -- 02:30:21.364 INFO [9649]: _SERVER found -- 02:30:21.364 INFO [9649]: REMOTE_ADDR = 192.168.1.13 -- 02:30:21.364 INFO [9649]: SERVER_NAME = oameye.works.coregrade.com -- 02:30:21.364 INFO [9649]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=9nenjqe02810es6soce5avhn5r9v9tcc -- 02:30:21.364 INFO [9649]: QUERY_STRING = /member/viewCardAddAction -- 02:30:21.364 INFO [9649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:30:21.399 INFO [9649]: COREGRADE is stopping... -- 02:30:21.399 DEBUG [9649]: Closing database connection -- 02:30:21.399 SQL [9649]: pgsql_close() -- 02:30:24.216 INFO [9649]: COREGRADE is starting... -- 02:30:24.217 INFO [9649]: Version from config: 1.0 -- 02:30:24.217 DEBUG [9649]: Connecting to database... -- 02:30:24.217 DEBUG [9649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:30:24.217 SQL [9649]: pgsql_db_connect() -- 02:30:24.221 DEBUG [9649]: Database connection successful -- 02:30:24.221 INFO [9649]: _SERVER found -- 02:30:24.221 INFO [9649]: REMOTE_ADDR = 192.168.1.13 -- 02:30:24.221 INFO [9649]: SERVER_NAME = oameye.works.coregrade.com -- 02:30:24.221 INFO [9649]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=9nenjqe02810es6soce5avhn5r9v9tcc -- 02:30:24.221 INFO [9649]: QUERY_STRING = /member/viewCardAddAction -- 02:30:24.221 INFO [9649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:30:24.251 INFO [9649]: COREGRADE is stopping... -- 02:30:24.251 DEBUG [9649]: Closing database connection -- 02:30:24.251 SQL [9649]: pgsql_close() -- 02:30:26.404 INFO [9649]: COREGRADE is starting... -- 02:30:26.405 INFO [9649]: Version from config: 1.0 -- 02:30:26.405 DEBUG [9649]: Connecting to database... -- 02:30:26.405 DEBUG [9649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:30:26.405 SQL [9649]: pgsql_db_connect() -- 02:30:26.409 DEBUG [9649]: Database connection successful -- 02:30:26.409 INFO [9649]: _SERVER found -- 02:30:26.409 INFO [9649]: REMOTE_ADDR = 192.168.1.13 -- 02:30:26.409 INFO [9649]: SERVER_NAME = oameye.works.coregrade.com -- 02:30:26.409 INFO [9649]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=9nenjqe02810es6soce5avhn5r9v9tcc -- 02:30:26.409 INFO [9649]: QUERY_STRING = /member/viewCardAddAction -- 02:30:26.409 INFO [9649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:30:26.439 INFO [9649]: COREGRADE is stopping... -- 02:30:26.439 DEBUG [9649]: Closing database connection -- 02:30:26.439 SQL [9649]: pgsql_close() -- 02:30:27.335 INFO [9649]: COREGRADE is starting... -- 02:30:27.335 INFO [9649]: Version from config: 1.0 -- 02:30:27.335 DEBUG [9649]: Connecting to database... -- 02:30:27.335 DEBUG [9649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:30:27.335 SQL [9649]: pgsql_db_connect() -- 02:30:27.339 DEBUG [9649]: Database connection successful -- 02:30:27.339 INFO [9649]: _SERVER found -- 02:30:27.339 INFO [9649]: REMOTE_ADDR = 192.168.1.13 -- 02:30:27.339 INFO [9649]: SERVER_NAME = oameye.works.coregrade.com -- 02:30:27.339 INFO [9649]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=9nenjqe02810es6soce5avhn5r9v9tcc -- 02:30:27.339 INFO [9649]: QUERY_STRING = /member/viewCardAddAction -- 02:30:27.339 INFO [9649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:30:27.370 INFO [9649]: COREGRADE is stopping... -- 02:30:27.370 DEBUG [9649]: Closing database connection -- 02:30:27.370 SQL [9649]: pgsql_close() -- 02:31:55.312 INFO [8950]: COREGRADE is starting... -- 02:31:55.312 INFO [8950]: Version from config: 1.0 -- 02:31:55.312 DEBUG [8950]: Connecting to database... -- 02:31:55.312 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:31:55.312 SQL [8950]: pgsql_db_connect() -- 02:31:55.348 INFO [8950]: COREGRADE is starting... -- 02:31:55.348 INFO [8950]: Version from config: 1.0 -- 02:31:55.348 DEBUG [8950]: Connecting to database... -- 02:31:55.348 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:31:55.348 SQL [8950]: pgsql_db_connect() -- 02:31:55.352 DEBUG [8950]: Database connection successful -- 02:31:55.352 INFO [8950]: _SERVER found -- 02:31:55.352 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 02:31:55.352 INFO [8950]: SERVER_NAME = oameye.works.coregrade.com -- 02:31:55.353 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=9nenjqe02810es6soce5avhn5r9v9tcc -- 02:31:55.353 INFO [8950]: QUERY_STRING = -- 02:31:55.353 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:31:55.353 INFO [8950]: SystemStatus()09-09-********~************ -- 02:31:55.353 INFO [8950]: long coregrade_api_main(CVars in, CVars &out) -- 02:31:55.353 INFO [8950]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 02:31:55.353 INFO [8950]: account calls -- 02:31:55.353 INFO [8950]: account_calls() -- 02:31:55.353 INFO [8950]: LoginCoreGradeAccount() -- 02:31:55.353 FLOG_MAX [8950]: REQ_STRING(username) -- 02:31:55.353 FLOG_MAX [8950]: REQ_STRING(password) -- 02:31:55.353 FLOG_MAX [8950]: REQ_STRING(sessionid) -- 02:31:55.353 FLOG_MAX [8950]: long load_db_record( CVars &rec, const char * query, ... ) -- 02:31:55.353 SQL [8950]: pgsql_query() -- 02:31:55.353 SQL [8950]: About to run query: -- 02:31:55.353 SQL [8950]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 02:31:55.356 SQL [8950]: Found rows: 1 -- 02:31:55.356 FLOG_MAX [8950]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 02:31:55.356 INFO [8950]: long SessionCheck(long uid, const char *sessionid, int create ) -- 02:31:55.356 SQL [8950]: pgsql_exec() -- 02:31:55.356 SQL [8950]: About to run query: -- 02:31:55.356 SQL [8950]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 02:31:55.357 SQL [8950]: PQcmdTuples: 0 -- 02:31:55.357 SQL [8950]: Affected rows: 0 -- 02:31:55.357 SQL [8950]: pgsql_exec() -- 02:31:55.357 SQL [8950]: About to run query: -- 02:31:55.357 SQL [8950]: DELETE FROM members_session WHERE member_id=5 -- 02:31:55.358 SQL [8950]: PQcmdTuples: 1 -- 02:31:55.358 SQL [8950]: Affected rows: 1 -- 02:31:55.358 SQL [8950]: pgsql_query() -- 02:31:55.358 SQL [8950]: About to run query: -- 02:31:55.358 SQL [8950]: SELECT * FROM members_session WHERE member_id=5 AND session<>'711395C30CA1A3D31DC01F0B7292C91B' -- 02:31:55.358 SQL [8950]: Found rows: 0 -- 02:31:55.358 SQL [8950]: Found rows: 0 -- 02:31:55.358 FLOG_MAX [8950]: long load_db_record( CVars &rec, const char * query, ... ) -- 02:31:55.358 SQL [8950]: pgsql_query() -- 02:31:55.358 SQL [8950]: About to run query: -- 02:31:55.358 SQL [8950]: SELECT * FROM members_session WHERE member_id=5 AND session='711395C30CA1A3D31DC01F0B7292C91B' -- 02:31:55.359 SQL [8950]: Found rows: 0 -- 02:31:55.359 SQL [8950]: Found rows: 0 -- 02:31:55.359 FLOG_MAX [8950]: insert_db_record() -- 02:31:55.359 SQL [8950]: pgsql_exec() -- 02:31:55.359 SQL [8950]: About to run query: -- 02:31:55.359 SQL [8950]: INSERT INTO members_session (member_id,session) VALUES ('5','711395C30CA1A3D31DC01F0B7292C91B') -- 02:31:55.360 SQL [8950]: PQcmdTuples: 1 -- 02:31:55.360 SQL [8950]: Affected rows: 1 -- 02:31:55.360 FLOG_MAX [8950]: SELECT currval('members_session_id_seq') -- 02:31:55.360 SQL [8950]: pgsql_query() -- 02:31:55.360 SQL [8950]: About to run query: -- 02:31:55.360 SQL [8950]: SELECT currval('members_session_id_seq') -- 02:31:55.360 SQL [8950]: Found rows: 1 -- 02:31:55.360 INFO [8950]: CreateDefaultPage() -- 02:31:55.360 FLOG_MAX [8950]: long load_db_record( CVars &rec, const char * query, ... ) -- 02:31:55.360 SQL [8950]: pgsql_query() -- 02:31:55.360 SQL [8950]: About to run query: -- 02:31:55.360 SQL [8950]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 02:31:55.361 SQL [8950]: Found rows: 1 -- 02:31:55.361 FLOG_MAX [8950]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 02:31:55.361 SQL [8950]: pgsql_query() -- 02:31:55.361 SQL [8950]: About to run query: -- 02:31:55.361 SQL [8950]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 02:31:55.361 SQL [8950]: Found rows: 1 -- 02:31:55.361 INFO [8950]: /CreateDefaultPage() -- 02:31:55.361 INFO [8950]: /LoginCoreGradeAccount() -- 02:31:55.361 INFO [8950]: RET: added=2020-02-05 06:47:23.982154 -- 02:31:55.361 INFO [8950]: RET: email=ameye+11@chiefsoft.com -- 02:31:55.361 INFO [8950]: RET: firstname=Olu -- 02:31:55.361 INFO [8950]: RET: id=5 -- 02:31:55.361 INFO [8950]: RET: last_login= -- 02:31:55.361 INFO [8950]: RET: lastname=Amey -- 02:31:55.361 INFO [8950]: RET: loc=192.168.1.13 -- 02:31:55.361 INFO [8950]: RET: member_id=5 -- 02:31:55.361 INFO [8950]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 02:31:55.361 INFO [8950]: RET: phone= -- 02:31:55.361 INFO [8950]: RET: pid= -- 02:31:55.361 INFO [8950]: RET: result=YES I GET TO BACK END -- 02:31:55.361 INFO [8950]: RET: sessionid=711395C30CA1A3D31DC01F0B7292C91B -- 02:31:55.361 INFO [8950]: RET: status=1 -- 02:31:55.361 INFO [8950]: RET: stauts=OK -- 02:31:55.361 INFO [8950]: RET: username=ameye+11@chiefsoft.com -- 02:31:55.361 INFO [8950]: RET: verified= -- 02:31:55.363 INFO [8950]: COREGRADE is stopping... -- 02:31:55.363 DEBUG [8950]: Closing database connection -- 02:31:55.363 SQL [8950]: pgsql_close() -- 02:31:55.316 DEBUG [8950]: Database connection successful -- 02:31:55.316 INFO [8950]: _SERVER found -- 02:31:55.316 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 02:31:55.316 INFO [8950]: SERVER_NAME = oameye.works.coregrade.com -- 02:31:55.316 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=9nenjqe02810es6soce5avhn5r9v9tcc -- 02:31:55.316 INFO [8950]: QUERY_STRING = /auth -- 02:31:55.316 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:31:55.363 INFO [8950]: COREGRADE is stopping... -- 02:31:55.363 DEBUG [8950]: Closing database connection -- 02:31:55.363 SQL [8950]: pgsql_close() -- 02:31:55.386 INFO [8950]: COREGRADE is starting... -- 02:31:55.386 INFO [8950]: Version from config: 1.0 -- 02:31:55.386 DEBUG [8950]: Connecting to database... -- 02:31:55.386 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:31:55.386 SQL [8950]: pgsql_db_connect() -- 02:31:55.390 DEBUG [8950]: Database connection successful -- 02:31:55.390 INFO [8950]: _SERVER found -- 02:31:55.390 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 02:31:55.390 INFO [8950]: SERVER_NAME = oameye.works.coregrade.com -- 02:31:55.390 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=9nenjqe02810es6soce5avhn5r9v9tcc -- 02:31:55.390 INFO [8950]: QUERY_STRING = /member/index -- 02:31:55.390 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:31:55.426 INFO [8950]: COREGRADE is stopping... -- 02:31:55.426 DEBUG [8950]: Closing database connection -- 02:31:55.426 SQL [8950]: pgsql_close() -- 02:31:55.601 INFO [8950]: COREGRADE is starting... -- 02:31:55.602 INFO [8950]: Version from config: 1.0 -- 02:31:55.602 DEBUG [8950]: Connecting to database... -- 02:31:55.602 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:31:55.602 SQL [8950]: pgsql_db_connect() -- 02:31:55.606 DEBUG [8950]: Database connection successful -- 02:31:55.606 INFO [8950]: _SERVER found -- 02:31:55.606 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 02:31:55.606 INFO [8950]: SERVER_NAME = oameye.works.coregrade.com -- 02:31:55.606 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=9nenjqe02810es6soce5avhn5r9v9tcc -- 02:31:55.606 INFO [8950]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 02:31:55.606 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:31:55.617 INFO [8950]: COREGRADE is stopping... -- 02:31:55.617 DEBUG [8950]: Closing database connection -- 02:31:55.617 SQL [8950]: pgsql_close() -- 02:31:55.637 INFO [8950]: COREGRADE is starting... -- 02:31:55.637 INFO [8950]: Version from config: 1.0 -- 02:31:55.637 DEBUG [8950]: Connecting to database... -- 02:31:55.637 DEBUG [8950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:31:55.637 SQL [8950]: pgsql_db_connect() -- 02:31:55.641 DEBUG [8950]: Database connection successful -- 02:31:55.641 INFO [8950]: _SERVER found -- 02:31:55.641 INFO [8950]: REMOTE_ADDR = 192.168.1.13 -- 02:31:55.641 INFO [8950]: SERVER_NAME = oameye.works.coregrade.com -- 02:31:55.641 INFO [8950]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=9nenjqe02810es6soce5avhn5r9v9tcc -- 02:31:55.641 INFO [8950]: QUERY_STRING = /app-assets/data/locales/en.json -- 02:31:55.641 INFO [8950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:31:55.652 INFO [8950]: COREGRADE is stopping... -- 02:31:55.652 DEBUG [8950]: Closing database connection -- 02:31:55.652 SQL [8950]: pgsql_close() -- 02:40:44.310 INFO [9032]: COREGRADE is starting... -- 02:40:44.311 INFO [9032]: Version from config: 1.0 -- 02:40:44.311 DEBUG [9032]: Connecting to database... -- 02:40:44.311 DEBUG [9032]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:40:44.311 SQL [9032]: pgsql_db_connect() -- 02:40:44.315 DEBUG [9032]: Database connection successful -- 02:40:44.315 INFO [9032]: _SERVER found -- 02:40:44.315 INFO [9032]: REMOTE_ADDR = 192.168.1.13 -- 02:40:44.315 INFO [9032]: SERVER_NAME = oameye.works.coregrade.com -- 02:40:44.315 INFO [9032]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 02:40:44.315 INFO [9032]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 02:40:44.353 INFO [9032]: COREGRADE is stopping... -- 02:40:44.353 DEBUG [9032]: Closing database connection -- 02:40:44.353 SQL [9032]: pgsql_close() -- 02:41:39.159 INFO [9031]: COREGRADE is starting... -- 02:41:39.160 INFO [9031]: Version from config: 1.0 -- 02:41:39.160 DEBUG [9031]: Connecting to database... -- 02:41:39.160 DEBUG [9031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:41:39.160 SQL [9031]: pgsql_db_connect() -- 02:41:39.164 DEBUG [9031]: Database connection successful -- 02:41:39.164 INFO [9031]: _SERVER found -- 02:41:39.164 INFO [9031]: REMOTE_ADDR = 192.168.1.13 -- 02:41:39.164 INFO [9031]: SERVER_NAME = oameye.works.coregrade.com -- 02:41:39.164 INFO [9031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=9nenjqe02810es6soce5avhn5r9v9tcc -- 02:41:39.164 INFO [9031]: QUERY_STRING = /member/index -- 02:41:39.164 INFO [9031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:41:39.202 INFO [9031]: COREGRADE is stopping... -- 02:41:39.202 DEBUG [9031]: Closing database connection -- 02:41:39.202 SQL [9031]: pgsql_close() -- 02:41:39.502 INFO [9031]: COREGRADE is starting... -- 02:41:39.502 INFO [9031]: Version from config: 1.0 -- 02:41:39.502 DEBUG [9031]: Connecting to database... -- 02:41:39.502 DEBUG [9031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:41:39.502 SQL [9031]: pgsql_db_connect() -- 02:41:39.506 DEBUG [9031]: Database connection successful -- 02:41:39.506 INFO [9031]: _SERVER found -- 02:41:39.506 INFO [9031]: REMOTE_ADDR = 192.168.1.13 -- 02:41:39.506 INFO [9031]: SERVER_NAME = oameye.works.coregrade.com -- 02:41:39.506 INFO [9031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ml1h79k0grid32pim4dj93gt6m41bv09 -- 02:41:39.506 INFO [9031]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 02:41:39.506 INFO [9031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:41:39.517 INFO [9031]: COREGRADE is stopping... -- 02:41:39.517 DEBUG [9031]: Closing database connection -- 02:41:39.517 SQL [9031]: pgsql_close() -- 02:41:39.534 INFO [9031]: COREGRADE is starting... -- 02:41:39.535 INFO [9031]: Version from config: 1.0 -- 02:41:39.535 DEBUG [9031]: Connecting to database... -- 02:41:39.535 DEBUG [9031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:41:39.535 SQL [9031]: pgsql_db_connect() -- 02:41:39.538 DEBUG [9031]: Database connection successful -- 02:41:39.538 INFO [9031]: _SERVER found -- 02:41:39.538 INFO [9031]: REMOTE_ADDR = 192.168.1.13 -- 02:41:39.538 INFO [9031]: SERVER_NAME = oameye.works.coregrade.com -- 02:41:39.538 INFO [9031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ml1h79k0grid32pim4dj93gt6m41bv09 -- 02:41:39.538 INFO [9031]: QUERY_STRING = /app-assets/data/locales/en.json -- 02:41:39.538 INFO [9031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:41:39.549 INFO [9031]: COREGRADE is stopping... -- 02:41:39.549 DEBUG [9031]: Closing database connection -- 02:41:39.549 SQL [9031]: pgsql_close() -- 02:42:23.458 INFO [8951]: COREGRADE is starting... -- 02:42:23.458 INFO [8951]: Version from config: 1.0 -- 02:42:23.458 DEBUG [8951]: Connecting to database... -- 02:42:23.458 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:42:23.458 SQL [8951]: pgsql_db_connect() -- 02:42:23.462 DEBUG [8951]: Database connection successful -- 02:42:23.462 INFO [8951]: _SERVER found -- 02:42:23.462 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 02:42:23.462 INFO [8951]: SERVER_NAME = oameye.works.coregrade.com -- 02:42:23.462 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ml1h79k0grid32pim4dj93gt6m41bv09 -- 02:42:23.462 INFO [8951]: QUERY_STRING = /member/index -- 02:42:23.462 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:42:23.499 INFO [8951]: COREGRADE is stopping... -- 02:42:23.499 DEBUG [8951]: Closing database connection -- 02:42:23.499 SQL [8951]: pgsql_close() -- 02:42:23.842 INFO [8951]: COREGRADE is starting... -- 02:42:23.843 INFO [8951]: Version from config: 1.0 -- 02:42:23.843 DEBUG [8951]: Connecting to database... -- 02:42:23.843 DEBUG [8951]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:42:23.843 SQL [8951]: pgsql_db_connect() -- 02:42:23.847 DEBUG [8951]: Database connection successful -- 02:42:23.847 INFO [8951]: _SERVER found -- 02:42:23.847 INFO [8951]: REMOTE_ADDR = 192.168.1.13 -- 02:42:23.847 INFO [8951]: SERVER_NAME = oameye.works.coregrade.com -- 02:42:23.847 INFO [8951]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ml1h79k0grid32pim4dj93gt6m41bv09 -- 02:42:23.847 INFO [8951]: QUERY_STRING = /app-assets/data/locales/en.json -- 02:42:23.847 INFO [8951]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:42:23.858 INFO [8951]: COREGRADE is stopping... -- 02:42:23.858 DEBUG [8951]: Closing database connection -- 02:42:23.858 SQL [8951]: pgsql_close() -- 02:43:45.634 INFO [8953]: COREGRADE is starting... -- 02:43:45.634 INFO [8953]: Version from config: 1.0 -- 02:43:45.634 DEBUG [8953]: Connecting to database... -- 02:43:45.634 DEBUG [8953]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:43:45.634 SQL [8953]: pgsql_db_connect() -- 02:43:45.639 DEBUG [8953]: Database connection successful -- 02:43:45.639 INFO [8953]: _SERVER found -- 02:43:45.639 INFO [8953]: REMOTE_ADDR = 192.168.1.13 -- 02:43:45.639 INFO [8953]: SERVER_NAME = oameye.works.coregrade.com -- 02:43:45.639 INFO [8953]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ml1h79k0grid32pim4dj93gt6m41bv09 -- 02:43:45.639 INFO [8953]: QUERY_STRING = /member/index -- 02:43:45.639 INFO [8953]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:43:45.677 INFO [8953]: COREGRADE is stopping... -- 02:43:45.677 DEBUG [8953]: Closing database connection -- 02:43:45.677 SQL [8953]: pgsql_close() -- 02:43:45.879 INFO [8953]: COREGRADE is starting... -- 02:43:45.879 INFO [8953]: Version from config: 1.0 -- 02:43:45.879 DEBUG [8953]: Connecting to database... -- 02:43:45.879 DEBUG [8953]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:43:45.879 SQL [8953]: pgsql_db_connect() -- 02:43:45.883 DEBUG [8953]: Database connection successful -- 02:43:45.883 INFO [8953]: _SERVER found -- 02:43:45.883 INFO [8953]: REMOTE_ADDR = 192.168.1.13 -- 02:43:45.883 INFO [8953]: SERVER_NAME = oameye.works.coregrade.com -- 02:43:45.883 INFO [8953]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ml1h79k0grid32pim4dj93gt6m41bv09 -- 02:43:45.883 INFO [8953]: QUERY_STRING = /app-assets/data/locales/en.json -- 02:43:45.883 INFO [8953]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:43:45.895 INFO [8953]: COREGRADE is stopping... -- 02:43:45.895 DEBUG [8953]: Closing database connection -- 02:43:45.895 SQL [8953]: pgsql_close() -- 02:48:39.390 INFO [8952]: COREGRADE is starting... -- 02:48:39.390 INFO [8952]: Version from config: 1.0 -- 02:48:39.390 DEBUG [8952]: Connecting to database... -- 02:48:39.390 DEBUG [8952]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:39.390 SQL [8952]: pgsql_db_connect() -- 02:48:39.395 DEBUG [8952]: Database connection successful -- 02:48:39.395 INFO [8952]: _SERVER found -- 02:48:39.395 INFO [8952]: REMOTE_ADDR = 192.168.1.13 -- 02:48:39.395 INFO [8952]: SERVER_NAME = oameye.works.coregrade.com -- 02:48:39.395 INFO [8952]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ml1h79k0grid32pim4dj93gt6m41bv09 -- 02:48:39.395 INFO [8952]: QUERY_STRING = /member/configure -- 02:48:39.395 INFO [8952]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:48:39.432 INFO [8952]: COREGRADE is stopping... -- 02:48:39.432 DEBUG [8952]: Closing database connection -- 02:48:39.432 SQL [8952]: pgsql_close() -- 02:48:39.707 INFO [8952]: COREGRADE is starting... -- 02:48:39.707 INFO [8952]: Version from config: 1.0 -- 02:48:39.707 DEBUG [8952]: Connecting to database... -- 02:48:39.707 DEBUG [8952]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:39.707 SQL [8952]: pgsql_db_connect() -- 02:48:39.711 DEBUG [8952]: Database connection successful -- 02:48:39.711 INFO [8952]: _SERVER found -- 02:48:39.711 INFO [8952]: REMOTE_ADDR = 192.168.1.13 -- 02:48:39.711 INFO [8952]: SERVER_NAME = oameye.works.coregrade.com -- 02:48:39.711 INFO [8952]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=aklh4ndurrfr3m7iavjs62ga5bhie822 -- 02:48:39.711 INFO [8952]: QUERY_STRING = /app-assets/data/locales/en.json -- 02:48:39.711 INFO [8952]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:48:39.722 INFO [8952]: COREGRADE is stopping... -- 02:48:39.722 DEBUG [8952]: Closing database connection -- 02:48:39.722 SQL [8952]: pgsql_close() -- 02:49:23.369 INFO [8949]: COREGRADE is starting... -- 02:49:23.370 INFO [8949]: Version from config: 1.0 -- 02:49:23.370 DEBUG [8949]: Connecting to database... -- 02:49:23.370 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:49:23.370 SQL [8949]: pgsql_db_connect() -- 02:49:23.374 DEBUG [8949]: Database connection successful -- 02:49:23.374 INFO [8949]: _SERVER found -- 02:49:23.374 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 02:49:23.374 INFO [8949]: SERVER_NAME = oameye.works.coregrade.com -- 02:49:23.374 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=aklh4ndurrfr3m7iavjs62ga5bhie822 -- 02:49:23.374 INFO [8949]: QUERY_STRING = /auth -- 02:49:23.374 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:49:23.405 INFO [8949]: COREGRADE is stopping... -- 02:49:23.405 DEBUG [8949]: Closing database connection -- 02:49:23.405 SQL [8949]: pgsql_close() -- 02:49:23.523 INFO [8949]: COREGRADE is starting... -- 02:49:23.523 INFO [8949]: Version from config: 1.0 -- 02:49:23.523 DEBUG [8949]: Connecting to database... -- 02:49:23.523 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:49:23.523 SQL [8949]: pgsql_db_connect() -- 02:49:23.528 DEBUG [8949]: Database connection successful -- 02:49:23.528 INFO [8949]: _SERVER found -- 02:49:23.528 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 02:49:23.528 INFO [8949]: SERVER_NAME = oameye.works.coregrade.com -- 02:49:23.528 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=aklh4ndurrfr3m7iavjs62ga5bhie822 -- 02:49:23.528 INFO [8949]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 02:49:23.528 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:49:23.539 INFO [8949]: COREGRADE is stopping... -- 02:49:23.539 DEBUG [8949]: Closing database connection -- 02:49:23.539 SQL [8949]: pgsql_close() -- 02:49:23.772 INFO [8949]: COREGRADE is starting... -- 02:49:23.773 INFO [8949]: Version from config: 1.0 -- 02:49:23.773 DEBUG [8949]: Connecting to database... -- 02:49:23.773 DEBUG [8949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:49:23.773 SQL [8949]: pgsql_db_connect() -- 02:49:23.777 DEBUG [8949]: Database connection successful -- 02:49:23.777 INFO [8949]: _SERVER found -- 02:49:23.777 INFO [8949]: REMOTE_ADDR = 192.168.1.13 -- 02:49:23.777 INFO [8949]: SERVER_NAME = oameye.works.coregrade.com -- 02:49:23.777 INFO [8949]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=aklh4ndurrfr3m7iavjs62ga5bhie822 -- 02:49:23.777 INFO [8949]: QUERY_STRING = /app-assets/data/locales/en.json -- 02:49:23.777 INFO [8949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:49:23.788 INFO [8949]: COREGRADE is stopping... -- 02:49:23.788 DEBUG [8949]: Closing database connection -- 02:49:23.788 SQL [8949]: pgsql_close() -- 02:55:54.420 INFO [20441]: COREGRADE is starting... -- 02:55:54.421 INFO [20441]: Version from config: 1.0 -- 02:55:54.421 DEBUG [20441]: Connecting to database... -- 02:55:54.421 DEBUG [20441]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:55:54.421 SQL [20441]: pgsql_db_connect() -- 02:55:54.425 DEBUG [20441]: Database connection successful -- 02:55:54.425 INFO [20441]: _SERVER found -- 02:55:54.425 INFO [20441]: REMOTE_ADDR = 192.168.1.13 -- 02:55:54.425 INFO [20441]: SERVER_NAME = oameye.works.coregrade.com -- 02:55:54.426 INFO [20441]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=aklh4ndurrfr3m7iavjs62ga5bhie822 -- 02:55:54.426 INFO [20441]: QUERY_STRING = /member/configure -- 02:55:54.426 INFO [20441]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:55:54.470 INFO [20441]: COREGRADE is stopping... -- 02:55:54.470 DEBUG [20441]: Closing database connection -- 02:55:54.470 SQL [20441]: pgsql_close() -- 02:55:54.564 INFO [20441]: COREGRADE is starting... -- 02:55:54.565 INFO [20441]: Version from config: 1.0 -- 02:55:54.565 DEBUG [20441]: Connecting to database... -- 02:55:54.565 DEBUG [20441]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:55:54.565 SQL [20441]: pgsql_db_connect() -- 02:55:54.569 DEBUG [20441]: Database connection successful -- 02:55:54.569 INFO [20441]: _SERVER found -- 02:55:54.569 INFO [20441]: REMOTE_ADDR = 192.168.1.13 -- 02:55:54.569 INFO [20441]: SERVER_NAME = oameye.works.coregrade.com -- 02:55:54.569 INFO [20441]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nscrubnpaqrienrdbbogkegvpuhhorj5 -- 02:55:54.569 INFO [20441]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 02:55:54.569 INFO [20441]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:55:54.581 INFO [20441]: COREGRADE is stopping... -- 02:55:54.581 DEBUG [20441]: Closing database connection -- 02:55:54.581 SQL [20441]: pgsql_close() -- 02:55:54.757 INFO [20441]: COREGRADE is starting... -- 02:55:54.757 INFO [20441]: Version from config: 1.0 -- 02:55:54.757 DEBUG [20441]: Connecting to database... -- 02:55:54.757 DEBUG [20441]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:55:54.757 SQL [20441]: pgsql_db_connect() -- 02:55:54.761 DEBUG [20441]: Database connection successful -- 02:55:54.761 INFO [20441]: _SERVER found -- 02:55:54.761 INFO [20441]: REMOTE_ADDR = 192.168.1.13 -- 02:55:54.761 INFO [20441]: SERVER_NAME = oameye.works.coregrade.com -- 02:55:54.761 INFO [20441]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nscrubnpaqrienrdbbogkegvpuhhorj5 -- 02:55:54.761 INFO [20441]: QUERY_STRING = /app-assets/data/locales/en.json -- 02:55:54.761 INFO [20441]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:55:54.773 INFO [20441]: COREGRADE is stopping... -- 02:55:54.773 DEBUG [20441]: Closing database connection -- 02:55:54.773 SQL [20441]: pgsql_close() -- 02:56:03.949 INFO [20442]: COREGRADE is starting... -- 02:56:03.949 INFO [20442]: Version from config: 1.0 -- 02:56:03.949 DEBUG [20442]: Connecting to database... -- 02:56:03.949 DEBUG [20442]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:56:03.949 SQL [20442]: pgsql_db_connect() -- 02:56:03.953 DEBUG [20442]: Database connection successful -- 02:56:03.953 INFO [20442]: _SERVER found -- 02:56:03.953 INFO [20442]: REMOTE_ADDR = 192.168.1.13 -- 02:56:03.953 INFO [20442]: SERVER_NAME = oameye.works.coregrade.com -- 02:56:03.953 INFO [20442]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nscrubnpaqrienrdbbogkegvpuhhorj5 -- 02:56:03.953 INFO [20442]: QUERY_STRING = /member/myprofile -- 02:56:03.953 INFO [20442]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:56:03.968 INFO [20442]: COREGRADE is stopping... -- 02:56:03.968 DEBUG [20442]: Closing database connection -- 02:56:03.968 SQL [20442]: pgsql_close() -- 02:56:04.061 INFO [20442]: COREGRADE is starting... -- 02:56:04.061 INFO [20442]: Version from config: 1.0 -- 02:56:04.061 DEBUG [20442]: Connecting to database... -- 02:56:04.061 DEBUG [20442]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:56:04.061 SQL [20442]: pgsql_db_connect() -- 02:56:04.065 DEBUG [20442]: Database connection successful -- 02:56:04.065 INFO [20442]: _SERVER found -- 02:56:04.065 INFO [20442]: REMOTE_ADDR = 192.168.1.13 -- 02:56:04.065 INFO [20442]: SERVER_NAME = oameye.works.coregrade.com -- 02:56:04.065 INFO [20442]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nscrubnpaqrienrdbbogkegvpuhhorj5 -- 02:56:04.065 INFO [20442]: QUERY_STRING = /favicon.ico -- 02:56:04.065 INFO [20442]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:56:04.077 INFO [20442]: COREGRADE is stopping... -- 02:56:04.077 DEBUG [20442]: Closing database connection -- 02:56:04.077 SQL [20442]: pgsql_close() -- 02:56:10.138 INFO [20444]: COREGRADE is starting... -- 02:56:10.138 INFO [20444]: Version from config: 1.0 -- 02:56:10.138 DEBUG [20444]: Connecting to database... -- 02:56:10.138 DEBUG [20444]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:56:10.138 SQL [20444]: pgsql_db_connect() -- 02:56:10.142 DEBUG [20444]: Database connection successful -- 02:56:10.142 INFO [20444]: _SERVER found -- 02:56:10.142 INFO [20444]: REMOTE_ADDR = 192.168.1.13 -- 02:56:10.142 INFO [20444]: SERVER_NAME = oameye.works.coregrade.com -- 02:56:10.142 INFO [20444]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nscrubnpaqrienrdbbogkegvpuhhorj5 -- 02:56:10.142 INFO [20444]: QUERY_STRING = /member/configure -- 02:56:10.142 INFO [20444]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:56:10.185 INFO [20444]: COREGRADE is stopping... -- 02:56:10.185 DEBUG [20444]: Closing database connection -- 02:56:10.185 SQL [20444]: pgsql_close() -- 02:57:08.056 INFO [20443]: COREGRADE is starting... -- 02:57:08.056 INFO [20443]: Version from config: 1.0 -- 02:57:08.056 DEBUG [20443]: Connecting to database... -- 02:57:08.056 DEBUG [20443]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:57:08.056 SQL [20443]: pgsql_db_connect() -- 02:57:08.060 DEBUG [20443]: Database connection successful -- 02:57:08.060 INFO [20443]: _SERVER found -- 02:57:08.060 INFO [20443]: REMOTE_ADDR = 192.168.1.13 -- 02:57:08.060 INFO [20443]: SERVER_NAME = oameye.works.coregrade.com -- 02:57:08.060 INFO [20443]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nscrubnpaqrienrdbbogkegvpuhhorj5 -- 02:57:08.060 INFO [20443]: QUERY_STRING = /member/myprofile -- 02:57:08.060 INFO [20443]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:57:08.097 INFO [20443]: COREGRADE is stopping... -- 02:57:08.097 DEBUG [20443]: Closing database connection -- 02:57:08.097 SQL [20443]: pgsql_close() -- 02:57:10.719 INFO [20443]: COREGRADE is starting... -- 02:57:10.719 INFO [20443]: Version from config: 1.0 -- 02:57:10.719 DEBUG [20443]: Connecting to database... -- 02:57:10.719 DEBUG [20443]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:57:10.719 SQL [20443]: pgsql_db_connect() -- 02:57:10.723 DEBUG [20443]: Database connection successful -- 02:57:10.723 INFO [20443]: _SERVER found -- 02:57:10.723 INFO [20443]: REMOTE_ADDR = 192.168.1.13 -- 02:57:10.723 INFO [20443]: SERVER_NAME = oameye.works.coregrade.com -- 02:57:10.723 INFO [20443]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nscrubnpaqrienrdbbogkegvpuhhorj5 -- 02:57:10.723 INFO [20443]: QUERY_STRING = /member/configure -- 02:57:10.723 INFO [20443]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:57:10.763 INFO [20443]: COREGRADE is stopping... -- 02:57:10.763 DEBUG [20443]: Closing database connection -- 02:57:10.763 SQL [20443]: pgsql_close() -- 03:17:11.378 INFO [20614]: COREGRADE is starting... -- 03:17:11.378 INFO [20614]: Version from config: 1.0 -- 03:17:11.378 DEBUG [20614]: Connecting to database... -- 03:17:11.378 DEBUG [20614]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:17:11.378 SQL [20614]: pgsql_db_connect() -- 03:17:11.383 DEBUG [20614]: Database connection successful -- 03:17:11.383 INFO [20614]: _SERVER found -- 03:17:11.383 INFO [20614]: REMOTE_ADDR = 192.168.1.13 -- 03:17:11.383 INFO [20614]: SERVER_NAME = oameye.works.coregrade.com -- 03:17:11.383 INFO [20614]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nscrubnpaqrienrdbbogkegvpuhhorj5 -- 03:17:11.383 INFO [20614]: QUERY_STRING = /auth -- 03:17:11.383 INFO [20614]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 03:17:11.423 INFO [20614]: COREGRADE is stopping... -- 03:17:11.423 DEBUG [20614]: Closing database connection -- 03:17:11.423 SQL [20614]: pgsql_close() -- 03:17:11.574 INFO [20614]: COREGRADE is starting... -- 03:17:11.574 INFO [20614]: Version from config: 1.0 -- 03:17:11.574 DEBUG [20614]: Connecting to database... -- 03:17:11.575 DEBUG [20614]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:17:11.575 SQL [20614]: pgsql_db_connect() -- 03:17:11.578 DEBUG [20614]: Database connection successful -- 03:17:11.578 INFO [20614]: _SERVER found -- 03:17:11.578 INFO [20614]: REMOTE_ADDR = 192.168.1.13 -- 03:17:11.578 INFO [20614]: SERVER_NAME = oameye.works.coregrade.com -- 03:17:11.578 INFO [20614]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=cn9hpempld32bobqdueaopkn6r6m9s6n -- 03:17:11.578 INFO [20614]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 03:17:11.578 INFO [20614]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 03:17:11.590 INFO [20614]: COREGRADE is stopping... -- 03:17:11.590 DEBUG [20614]: Closing database connection -- 03:17:11.590 SQL [20614]: pgsql_close() -- 03:17:11.601 INFO [20615]: COREGRADE is starting... -- 03:17:11.601 INFO [20615]: Version from config: 1.0 -- 03:17:11.601 DEBUG [20615]: Connecting to database... -- 03:17:11.601 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:17:11.601 SQL [20615]: pgsql_db_connect() -- 03:17:11.605 DEBUG [20615]: Database connection successful -- 03:17:11.605 INFO [20615]: _SERVER found -- 03:17:11.605 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 03:17:11.605 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 03:17:11.605 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=cn9hpempld32bobqdueaopkn6r6m9s6n -- 03:17:11.605 INFO [20615]: QUERY_STRING = /app-assets/data/locales/en.json -- 03:17:11.605 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 03:17:11.620 INFO [20615]: COREGRADE is stopping... -- 03:17:11.620 DEBUG [20615]: Closing database connection -- 03:17:11.620 SQL [20615]: pgsql_close() -- 09:24:35.571 INFO [20616]: COREGRADE is starting... -- 09:24:35.571 INFO [20616]: Version from config: 1.0 -- 09:24:35.571 DEBUG [20616]: Connecting to database... -- 09:24:35.571 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:24:35.571 SQL [20616]: pgsql_db_connect() -- 09:24:35.576 DEBUG [20616]: Database connection successful -- 09:24:35.576 INFO [20616]: _SERVER found -- 09:24:35.576 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 09:24:35.576 INFO [20616]: SERVER_NAME = oameye.works.coregrade.com -- 09:24:35.576 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965 -- 09:24:35.576 INFO [20616]: QUERY_STRING = -- 09:24:35.576 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:24:35.627 INFO [20616]: COREGRADE is stopping... -- 09:24:35.627 DEBUG [20616]: Closing database connection -- 09:24:35.628 SQL [20616]: pgsql_close() -- 09:24:35.958 INFO [20616]: COREGRADE is starting... -- 09:24:35.958 INFO [20616]: Version from config: 1.0 -- 09:24:35.958 DEBUG [20616]: Connecting to database... -- 09:24:35.958 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:24:35.958 SQL [20616]: pgsql_db_connect() -- 09:24:35.968 INFO [20618]: COREGRADE is starting... -- 09:24:35.968 INFO [20618]: Version from config: 1.0 -- 09:24:35.968 DEBUG [20618]: Connecting to database... -- 09:24:35.968 DEBUG [20618]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:24:35.968 SQL [20618]: pgsql_db_connect() -- 09:24:35.962 DEBUG [20616]: Database connection successful -- 09:24:35.962 INFO [20616]: _SERVER found -- 09:24:35.962 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 09:24:35.962 INFO [20616]: SERVER_NAME = oameye.works.coregrade.com -- 09:24:35.962 INFO [20616]: HTTP_COOKIE = ci_session=2u3etf1a6tsgju578a15hq3dejat8gon; _ga=GA1.2.38091328.1580686965 -- 09:24:35.962 INFO [20616]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:24:35.962 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:24:35.974 INFO [20616]: COREGRADE is stopping... -- 09:24:35.974 DEBUG [20616]: Closing database connection -- 09:24:35.974 SQL [20616]: pgsql_close() -- 09:24:35.973 DEBUG [20618]: Database connection successful -- 09:24:35.973 INFO [20618]: _SERVER found -- 09:24:35.973 INFO [20618]: REMOTE_ADDR = 192.168.1.13 -- 09:24:35.973 INFO [20618]: SERVER_NAME = oameye.works.coregrade.com -- 09:24:35.973 INFO [20618]: HTTP_COOKIE = ci_session=2u3etf1a6tsgju578a15hq3dejat8gon; _ga=GA1.2.38091328.1580686965 -- 09:24:35.973 INFO [20618]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:24:35.973 INFO [20618]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:24:35.988 INFO [20618]: COREGRADE is stopping... -- 09:24:35.988 DEBUG [20618]: Closing database connection -- 09:24:35.988 SQL [20618]: pgsql_close() -- 09:57:07.317 INFO [20672]: COREGRADE is starting... -- 09:57:07.318 INFO [20672]: Version from config: 1.0 -- 09:57:07.318 DEBUG [20672]: Connecting to database... -- 09:57:07.318 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:57:07.318 SQL [20672]: pgsql_db_connect() -- 09:57:07.366 INFO [20672]: COREGRADE is starting... -- 09:57:07.366 INFO [20672]: Version from config: 1.0 -- 09:57:07.366 DEBUG [20672]: Connecting to database... -- 09:57:07.366 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:57:07.366 SQL [20672]: pgsql_db_connect() -- 09:57:07.371 DEBUG [20672]: Database connection successful -- 09:57:07.371 INFO [20672]: _SERVER found -- 09:57:07.371 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 09:57:07.371 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 09:57:07.371 INFO [20672]: HTTP_COOKIE = ci_session=2u3etf1a6tsgju578a15hq3dejat8gon; _ga=GA1.2.38091328.1580686965 -- 09:57:07.371 INFO [20672]: QUERY_STRING = -- 09:57:07.371 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:57:07.371 INFO [20672]: SystemStatus()09-09-********~************ -- 09:57:07.371 INFO [20672]: long coregrade_api_main(CVars in, CVars &out) -- 09:57:07.371 INFO [20672]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 09:57:07.371 INFO [20672]: account calls -- 09:57:07.371 INFO [20672]: account_calls() -- 09:57:07.371 INFO [20672]: LoginCoreGradeAccount() -- 09:57:07.371 FLOG_MAX [20672]: REQ_STRING(username) -- 09:57:07.371 FLOG_MAX [20672]: REQ_STRING(password) -- 09:57:07.371 FLOG_MAX [20672]: REQ_STRING(sessionid) -- 09:57:07.372 FLOG_MAX [20672]: long load_db_record( CVars &rec, const char * query, ... ) -- 09:57:07.372 SQL [20672]: pgsql_query() -- 09:57:07.372 SQL [20672]: About to run query: -- 09:57:07.372 SQL [20672]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 09:57:07.376 SQL [20672]: Found rows: 1 -- 09:57:07.376 FLOG_MAX [20672]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 09:57:07.376 INFO [20672]: long SessionCheck(long uid, const char *sessionid, int create ) -- 09:57:07.376 SQL [20672]: pgsql_exec() -- 09:57:07.376 SQL [20672]: About to run query: -- 09:57:07.376 SQL [20672]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 09:57:07.377 SQL [20672]: PQcmdTuples: 1 -- 09:57:07.377 SQL [20672]: Affected rows: 1 -- 09:57:07.377 SQL [20672]: pgsql_exec() -- 09:57:07.377 SQL [20672]: About to run query: -- 09:57:07.377 SQL [20672]: DELETE FROM members_session WHERE member_id=5 -- 09:57:07.377 SQL [20672]: PQcmdTuples: 0 -- 09:57:07.377 SQL [20672]: Affected rows: 0 -- 09:57:07.377 SQL [20672]: pgsql_query() -- 09:57:07.377 SQL [20672]: About to run query: -- 09:57:07.377 SQL [20672]: SELECT * FROM members_session WHERE member_id=5 AND session<>'9719C0BCCECDC697548FA8B74973C57B' -- 09:57:07.378 SQL [20672]: Found rows: 0 -- 09:57:07.378 SQL [20672]: Found rows: 0 -- 09:57:07.378 FLOG_MAX [20672]: long load_db_record( CVars &rec, const char * query, ... ) -- 09:57:07.378 SQL [20672]: pgsql_query() -- 09:57:07.378 SQL [20672]: About to run query: -- 09:57:07.378 SQL [20672]: SELECT * FROM members_session WHERE member_id=5 AND session='9719C0BCCECDC697548FA8B74973C57B' -- 09:57:07.379 SQL [20672]: Found rows: 0 -- 09:57:07.379 SQL [20672]: Found rows: 0 -- 09:57:07.379 FLOG_MAX [20672]: insert_db_record() -- 09:57:07.379 SQL [20672]: pgsql_exec() -- 09:57:07.379 SQL [20672]: About to run query: -- 09:57:07.379 SQL [20672]: INSERT INTO members_session (member_id,session) VALUES ('5','9719C0BCCECDC697548FA8B74973C57B') -- 09:57:07.380 SQL [20672]: PQcmdTuples: 1 -- 09:57:07.380 SQL [20672]: Affected rows: 1 -- 09:57:07.380 FLOG_MAX [20672]: SELECT currval('members_session_id_seq') -- 09:57:07.380 SQL [20672]: pgsql_query() -- 09:57:07.380 SQL [20672]: About to run query: -- 09:57:07.380 SQL [20672]: SELECT currval('members_session_id_seq') -- 09:57:07.381 SQL [20672]: Found rows: 1 -- 09:57:07.381 INFO [20672]: CreateDefaultPage() -- 09:57:07.381 FLOG_MAX [20672]: long load_db_record( CVars &rec, const char * query, ... ) -- 09:57:07.381 SQL [20672]: pgsql_query() -- 09:57:07.381 SQL [20672]: About to run query: -- 09:57:07.381 SQL [20672]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 09:57:07.381 SQL [20672]: Found rows: 1 -- 09:57:07.381 FLOG_MAX [20672]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 09:57:07.381 SQL [20672]: pgsql_query() -- 09:57:07.381 SQL [20672]: About to run query: -- 09:57:07.381 SQL [20672]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 09:57:07.382 SQL [20672]: Found rows: 1 -- 09:57:07.382 INFO [20672]: /CreateDefaultPage() -- 09:57:07.382 INFO [20672]: /LoginCoreGradeAccount() -- 09:57:07.382 INFO [20672]: RET: added=2020-02-05 06:47:23.982154 -- 09:57:07.382 INFO [20672]: RET: email=ameye+11@chiefsoft.com -- 09:57:07.382 INFO [20672]: RET: firstname=Olu -- 09:57:07.382 INFO [20672]: RET: id=5 -- 09:57:07.382 INFO [20672]: RET: last_login= -- 09:57:07.382 INFO [20672]: RET: lastname=Amey -- 09:57:07.382 INFO [20672]: RET: loc=192.168.1.13 -- 09:57:07.382 INFO [20672]: RET: member_id=5 -- 09:57:07.382 INFO [20672]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 09:57:07.382 INFO [20672]: RET: phone= -- 09:57:07.382 INFO [20672]: RET: pid= -- 09:57:07.382 INFO [20672]: RET: result=YES I GET TO BACK END -- 09:57:07.382 INFO [20672]: RET: sessionid=9719C0BCCECDC697548FA8B74973C57B -- 09:57:07.382 INFO [20672]: RET: status=1 -- 09:57:07.382 INFO [20672]: RET: stauts=OK -- 09:57:07.382 INFO [20672]: RET: username=ameye+11@chiefsoft.com -- 09:57:07.382 INFO [20672]: RET: verified= -- 09:57:07.384 INFO [20672]: COREGRADE is stopping... -- 09:57:07.384 DEBUG [20672]: Closing database connection -- 09:57:07.384 SQL [20672]: pgsql_close() -- 09:57:07.323 DEBUG [20672]: Database connection successful -- 09:57:07.323 INFO [20672]: _SERVER found -- 09:57:07.323 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 09:57:07.323 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 09:57:07.323 INFO [20672]: HTTP_COOKIE = ci_session=2u3etf1a6tsgju578a15hq3dejat8gon; _ga=GA1.2.38091328.1580686965 -- 09:57:07.323 INFO [20672]: QUERY_STRING = /auth -- 09:57:07.323 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:57:07.384 INFO [20672]: COREGRADE is stopping... -- 09:57:07.384 DEBUG [20672]: Closing database connection -- 09:57:07.384 SQL [20672]: pgsql_close() -- 09:57:07.413 INFO [20672]: COREGRADE is starting... -- 09:57:07.413 INFO [20672]: Version from config: 1.0 -- 09:57:07.413 DEBUG [20672]: Connecting to database... -- 09:57:07.413 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:57:07.413 SQL [20672]: pgsql_db_connect() -- 09:57:07.417 DEBUG [20672]: Database connection successful -- 09:57:07.418 INFO [20672]: _SERVER found -- 09:57:07.418 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 09:57:07.418 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 09:57:07.418 INFO [20672]: HTTP_COOKIE = ci_session=92j1ab5716liqjel3nbpffuigr5jo8cv; _ga=GA1.2.38091328.1580686965 -- 09:57:07.418 INFO [20672]: QUERY_STRING = /member/index -- 09:57:07.418 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:57:07.455 INFO [20672]: COREGRADE is stopping... -- 09:57:07.455 DEBUG [20672]: Closing database connection -- 09:57:07.455 SQL [20672]: pgsql_close() -- 09:57:08.396 INFO [20672]: COREGRADE is starting... -- 09:57:08.396 INFO [20672]: Version from config: 1.0 -- 09:57:08.396 DEBUG [20672]: Connecting to database... -- 09:57:08.396 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:57:08.396 SQL [20672]: pgsql_db_connect() -- 09:57:08.400 DEBUG [20672]: Database connection successful -- 09:57:08.400 INFO [20672]: _SERVER found -- 09:57:08.400 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 09:57:08.400 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 09:57:08.400 INFO [20672]: HTTP_COOKIE = ci_session=92j1ab5716liqjel3nbpffuigr5jo8cv; _ga=GA1.2.38091328.1580686965 -- 09:57:08.400 INFO [20672]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 09:57:08.400 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:57:08.412 INFO [20672]: COREGRADE is stopping... -- 09:57:08.412 DEBUG [20672]: Closing database connection -- 09:57:08.412 SQL [20672]: pgsql_close() -- 09:57:08.415 INFO [20614]: COREGRADE is starting... -- 09:57:08.415 INFO [20614]: Version from config: 1.0 -- 09:57:08.415 DEBUG [20614]: Connecting to database... -- 09:57:08.415 DEBUG [20614]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:57:08.415 SQL [20614]: pgsql_db_connect() -- 09:57:08.419 DEBUG [20614]: Database connection successful -- 09:57:08.419 INFO [20614]: _SERVER found -- 09:57:08.419 INFO [20614]: REMOTE_ADDR = 192.168.1.13 -- 09:57:08.419 INFO [20614]: SERVER_NAME = oameye.works.coregrade.com -- 09:57:08.419 INFO [20614]: HTTP_COOKIE = ci_session=92j1ab5716liqjel3nbpffuigr5jo8cv; _ga=GA1.2.38091328.1580686965 -- 09:57:08.419 INFO [20614]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:57:08.419 INFO [20614]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:57:08.431 INFO [20614]: COREGRADE is stopping... -- 09:57:08.431 DEBUG [20614]: Closing database connection -- 09:57:08.431 SQL [20614]: pgsql_close() -- 09:57:10.396 INFO [20672]: COREGRADE is starting... -- 09:57:10.397 INFO [20672]: Version from config: 1.0 -- 09:57:10.397 DEBUG [20672]: Connecting to database... -- 09:57:10.397 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:57:10.397 SQL [20672]: pgsql_db_connect() -- 09:57:10.401 DEBUG [20672]: Database connection successful -- 09:57:10.401 INFO [20672]: _SERVER found -- 09:57:10.401 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 09:57:10.401 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 09:57:10.401 INFO [20672]: HTTP_COOKIE = ci_session=92j1ab5716liqjel3nbpffuigr5jo8cv; _ga=GA1.2.38091328.1580686965 -- 09:57:10.401 INFO [20672]: QUERY_STRING = /member/page -- 09:57:10.401 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:57:10.439 INFO [20672]: COREGRADE is stopping... -- 09:57:10.439 DEBUG [20672]: Closing database connection -- 09:57:10.439 SQL [20672]: pgsql_close() -- 09:57:10.552 INFO [20672]: COREGRADE is starting... -- 09:57:10.552 INFO [20672]: Version from config: 1.0 -- 09:57:10.552 DEBUG [20672]: Connecting to database... -- 09:57:10.552 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:57:10.552 SQL [20672]: pgsql_db_connect() -- 09:57:10.554 INFO [20614]: COREGRADE is starting... -- 09:57:10.554 INFO [20614]: Version from config: 1.0 -- 09:57:10.554 DEBUG [20614]: Connecting to database... -- 09:57:10.554 DEBUG [20614]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:57:10.554 SQL [20614]: pgsql_db_connect() -- 09:57:10.556 DEBUG [20672]: Database connection successful -- 09:57:10.556 INFO [20672]: _SERVER found -- 09:57:10.556 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 09:57:10.556 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 09:57:10.556 INFO [20672]: HTTP_COOKIE = ci_session=92j1ab5716liqjel3nbpffuigr5jo8cv; _ga=GA1.2.38091328.1580686965 -- 09:57:10.556 INFO [20672]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 09:57:10.556 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:57:10.567 INFO [20672]: COREGRADE is stopping... -- 09:57:10.567 DEBUG [20672]: Closing database connection -- 09:57:10.567 SQL [20672]: pgsql_close() -- 09:57:10.558 DEBUG [20614]: Database connection successful -- 09:57:10.558 INFO [20614]: _SERVER found -- 09:57:10.558 INFO [20614]: REMOTE_ADDR = 192.168.1.13 -- 09:57:10.558 INFO [20614]: SERVER_NAME = oameye.works.coregrade.com -- 09:57:10.558 INFO [20614]: HTTP_COOKIE = ci_session=92j1ab5716liqjel3nbpffuigr5jo8cv; _ga=GA1.2.38091328.1580686965 -- 09:57:10.558 INFO [20614]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:57:10.558 INFO [20614]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:57:10.570 INFO [20614]: COREGRADE is stopping... -- 09:57:10.570 DEBUG [20614]: Closing database connection -- 09:57:10.570 SQL [20614]: pgsql_close() -- 09:57:12.156 INFO [20672]: COREGRADE is starting... -- 09:57:12.157 INFO [20672]: Version from config: 1.0 -- 09:57:12.157 DEBUG [20672]: Connecting to database... -- 09:57:12.157 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:57:12.157 SQL [20672]: pgsql_db_connect() -- 09:57:12.161 DEBUG [20672]: Database connection successful -- 09:57:12.161 INFO [20672]: _SERVER found -- 09:57:12.161 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 09:57:12.161 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 09:57:12.161 INFO [20672]: HTTP_COOKIE = ci_session=92j1ab5716liqjel3nbpffuigr5jo8cv; _ga=GA1.2.38091328.1580686965 -- 09:57:12.161 INFO [20672]: QUERY_STRING = /member/viewCardAddAction -- 09:57:12.161 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:57:12.192 INFO [20672]: COREGRADE is stopping... -- 09:57:12.192 DEBUG [20672]: Closing database connection -- 09:57:12.192 SQL [20672]: pgsql_close() -- 09:57:17.318 INFO [22219]: COREGRADE is starting... -- 09:57:17.319 INFO [22219]: Version from config: 1.0 -- 09:57:17.319 DEBUG [22219]: Connecting to database... -- 09:57:17.319 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:57:17.319 SQL [22219]: pgsql_db_connect() -- 09:57:17.323 DEBUG [22219]: Database connection successful -- 09:57:17.323 INFO [22219]: _SERVER found -- 09:57:17.323 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 09:57:17.323 INFO [22219]: SERVER_NAME = oameye.works.coregrade.com -- 09:57:17.323 INFO [22219]: HTTP_COOKIE = ci_session=92j1ab5716liqjel3nbpffuigr5jo8cv; _ga=GA1.2.38091328.1580686965 -- 09:57:17.323 INFO [22219]: QUERY_STRING = /member/viewCardAddAction -- 09:57:17.323 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:57:17.361 INFO [22219]: COREGRADE is stopping... -- 09:57:17.361 DEBUG [22219]: Closing database connection -- 09:57:17.361 SQL [22219]: pgsql_close() -- 09:57:24.248 INFO [20617]: COREGRADE is starting... -- 09:57:24.249 INFO [20617]: Version from config: 1.0 -- 09:57:24.249 DEBUG [20617]: Connecting to database... -- 09:57:24.249 DEBUG [20617]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:57:24.249 SQL [20617]: pgsql_db_connect() -- 09:57:24.253 DEBUG [20617]: Database connection successful -- 09:57:24.253 INFO [20617]: _SERVER found -- 09:57:24.253 INFO [20617]: REMOTE_ADDR = 192.168.1.13 -- 09:57:24.253 INFO [20617]: SERVER_NAME = oameye.works.coregrade.com -- 09:57:24.253 INFO [20617]: HTTP_COOKIE = ci_session=92j1ab5716liqjel3nbpffuigr5jo8cv; _ga=GA1.2.38091328.1580686965 -- 09:57:24.253 INFO [20617]: QUERY_STRING = /member/configure -- 09:57:24.253 INFO [20617]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:57:24.298 INFO [20617]: COREGRADE is stopping... -- 09:57:24.298 DEBUG [20617]: Closing database connection -- 09:57:24.298 SQL [20617]: pgsql_close() -- 09:57:24.498 INFO [20617]: COREGRADE is starting... -- 09:57:24.498 INFO [20617]: Version from config: 1.0 -- 09:57:24.498 DEBUG [20617]: Connecting to database... -- 09:57:24.498 DEBUG [20617]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:57:24.498 SQL [20617]: pgsql_db_connect() -- 09:57:24.502 DEBUG [20617]: Database connection successful -- 09:57:24.502 INFO [20617]: _SERVER found -- 09:57:24.502 INFO [20617]: REMOTE_ADDR = 192.168.1.13 -- 09:57:24.502 INFO [20617]: SERVER_NAME = oameye.works.coregrade.com -- 09:57:24.502 INFO [20617]: HTTP_COOKIE = ci_session=92j1ab5716liqjel3nbpffuigr5jo8cv; _ga=GA1.2.38091328.1580686965 -- 09:57:24.502 INFO [20617]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 09:57:24.502 INFO [20617]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:57:24.513 INFO [20617]: COREGRADE is stopping... -- 09:57:24.513 DEBUG [20617]: Closing database connection -- 09:57:24.514 SQL [20617]: pgsql_close() -- 09:57:24.520 INFO [20617]: COREGRADE is starting... -- 09:57:24.520 INFO [20617]: Version from config: 1.0 -- 09:57:24.520 DEBUG [20617]: Connecting to database... -- 09:57:24.520 DEBUG [20617]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:57:24.520 SQL [20617]: pgsql_db_connect() -- 09:57:24.524 DEBUG [20617]: Database connection successful -- 09:57:24.524 INFO [20617]: _SERVER found -- 09:57:24.524 INFO [20617]: REMOTE_ADDR = 192.168.1.13 -- 09:57:24.524 INFO [20617]: SERVER_NAME = oameye.works.coregrade.com -- 09:57:24.524 INFO [20617]: HTTP_COOKIE = ci_session=92j1ab5716liqjel3nbpffuigr5jo8cv; _ga=GA1.2.38091328.1580686965 -- 09:57:24.524 INFO [20617]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:57:24.524 INFO [20617]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:57:24.536 INFO [20617]: COREGRADE is stopping... -- 09:57:24.536 DEBUG [20617]: Closing database connection -- 09:57:24.536 SQL [20617]: pgsql_close() -- 09:57:53.894 INFO [20616]: COREGRADE is starting... -- 09:57:53.894 INFO [20616]: Version from config: 1.0 -- 09:57:53.894 DEBUG [20616]: Connecting to database... -- 09:57:53.894 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:57:53.894 SQL [20616]: pgsql_db_connect() -- 09:57:53.898 DEBUG [20616]: Database connection successful -- 09:57:53.898 INFO [20616]: _SERVER found -- 09:57:53.898 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 09:57:53.898 INFO [20616]: SERVER_NAME = oameye.works.coregrade.com -- 09:57:53.898 INFO [20616]: HTTP_COOKIE = ci_session=92j1ab5716liqjel3nbpffuigr5jo8cv; _ga=GA1.2.38091328.1580686965 -- 09:57:53.898 INFO [20616]: QUERY_STRING = /member/mycalendar -- 09:57:53.898 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:57:53.933 INFO [20616]: COREGRADE is stopping... -- 09:57:53.933 DEBUG [20616]: Closing database connection -- 09:57:53.933 SQL [20616]: pgsql_close() -- 09:57:54.081 INFO [20616]: COREGRADE is starting... -- 09:57:54.081 INFO [20616]: Version from config: 1.0 -- 09:57:54.081 DEBUG [20616]: Connecting to database... -- 09:57:54.081 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:57:54.081 SQL [20616]: pgsql_db_connect() -- 09:57:54.085 DEBUG [20616]: Database connection successful -- 09:57:54.085 INFO [20616]: _SERVER found -- 09:57:54.085 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 09:57:54.085 INFO [20616]: SERVER_NAME = oameye.works.coregrade.com -- 09:57:54.085 INFO [20616]: HTTP_COOKIE = ci_session=92j1ab5716liqjel3nbpffuigr5jo8cv; _ga=GA1.2.38091328.1580686965 -- 09:57:54.085 INFO [20616]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 09:57:54.085 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:57:54.097 INFO [20616]: COREGRADE is stopping... -- 09:57:54.097 DEBUG [20616]: Closing database connection -- 09:57:54.097 SQL [20616]: pgsql_close() -- 09:57:54.109 INFO [20618]: COREGRADE is starting... -- 09:57:54.109 INFO [20618]: Version from config: 1.0 -- 09:57:54.109 DEBUG [20618]: Connecting to database... -- 09:57:54.110 DEBUG [20618]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:57:54.110 SQL [20618]: pgsql_db_connect() -- 09:57:54.114 DEBUG [20618]: Database connection successful -- 09:57:54.114 INFO [20618]: _SERVER found -- 09:57:54.114 INFO [20618]: REMOTE_ADDR = 192.168.1.13 -- 09:57:54.114 INFO [20618]: SERVER_NAME = oameye.works.coregrade.com -- 09:57:54.114 INFO [20618]: HTTP_COOKIE = ci_session=92j1ab5716liqjel3nbpffuigr5jo8cv; _ga=GA1.2.38091328.1580686965 -- 09:57:54.114 INFO [20618]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:57:54.114 INFO [20618]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:57:54.126 INFO [20618]: COREGRADE is stopping... -- 09:57:54.126 DEBUG [20618]: Closing database connection -- 09:57:54.126 SQL [20618]: pgsql_close() -- 09:57:59.706 INFO [22349]: COREGRADE is starting... -- 09:57:59.706 INFO [22349]: Version from config: 1.0 -- 09:57:59.706 DEBUG [22349]: Connecting to database... -- 09:57:59.706 DEBUG [22349]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:57:59.706 SQL [22349]: pgsql_db_connect() -- 09:57:59.711 DEBUG [22349]: Database connection successful -- 09:57:59.711 INFO [22349]: _SERVER found -- 09:57:59.711 INFO [22349]: REMOTE_ADDR = 192.168.1.13 -- 09:57:59.711 INFO [22349]: SERVER_NAME = oameye.works.coregrade.com -- 09:57:59.711 INFO [22349]: HTTP_COOKIE = ci_session=92j1ab5716liqjel3nbpffuigr5jo8cv; _ga=GA1.2.38091328.1580686965 -- 09:57:59.711 INFO [22349]: QUERY_STRING = /member/mycalendar -- 09:57:59.711 INFO [22349]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:57:59.750 INFO [22349]: COREGRADE is stopping... -- 09:57:59.750 DEBUG [22349]: Closing database connection -- 09:57:59.750 SQL [22349]: pgsql_close() -- 09:57:59.861 INFO [22349]: COREGRADE is starting... -- 09:57:59.862 INFO [22349]: Version from config: 1.0 -- 09:57:59.862 DEBUG [22349]: Connecting to database... -- 09:57:59.862 DEBUG [22349]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:57:59.862 SQL [22349]: pgsql_db_connect() -- 09:57:59.866 DEBUG [22349]: Database connection successful -- 09:57:59.866 INFO [22349]: _SERVER found -- 09:57:59.866 INFO [22349]: REMOTE_ADDR = 192.168.1.13 -- 09:57:59.866 INFO [22349]: SERVER_NAME = oameye.works.coregrade.com -- 09:57:59.866 INFO [22349]: HTTP_COOKIE = ci_session=92j1ab5716liqjel3nbpffuigr5jo8cv; _ga=GA1.2.38091328.1580686965 -- 09:57:59.866 INFO [22349]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 09:57:59.866 INFO [22349]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:57:59.877 INFO [22349]: COREGRADE is stopping... -- 09:57:59.877 DEBUG [22349]: Closing database connection -- 09:57:59.877 SQL [22349]: pgsql_close() -- 09:57:59.886 INFO [22349]: COREGRADE is starting... -- 09:57:59.887 INFO [22349]: Version from config: 1.0 -- 09:57:59.887 DEBUG [22349]: Connecting to database... -- 09:57:59.887 DEBUG [22349]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:57:59.887 SQL [22349]: pgsql_db_connect() -- 09:57:59.891 DEBUG [22349]: Database connection successful -- 09:57:59.891 INFO [22349]: _SERVER found -- 09:57:59.891 INFO [22349]: REMOTE_ADDR = 192.168.1.13 -- 09:57:59.891 INFO [22349]: SERVER_NAME = oameye.works.coregrade.com -- 09:57:59.891 INFO [22349]: HTTP_COOKIE = ci_session=92j1ab5716liqjel3nbpffuigr5jo8cv; _ga=GA1.2.38091328.1580686965 -- 09:57:59.891 INFO [22349]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:57:59.891 INFO [22349]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:57:59.901 INFO [22349]: COREGRADE is stopping... -- 09:57:59.901 DEBUG [22349]: Closing database connection -- 09:57:59.901 SQL [22349]: pgsql_close() -- 10:01:09.485 INFO [20615]: COREGRADE is starting... -- 10:01:09.485 INFO [20615]: Version from config: 1.0 -- 10:01:09.485 DEBUG [20615]: Connecting to database... -- 10:01:09.485 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:01:09.485 SQL [20615]: pgsql_db_connect() -- 10:01:09.490 DEBUG [20615]: Database connection successful -- 10:01:09.490 INFO [20615]: _SERVER found -- 10:01:09.490 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 10:01:09.490 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 10:01:09.490 INFO [20615]: HTTP_COOKIE = ci_session=92j1ab5716liqjel3nbpffuigr5jo8cv; _ga=GA1.2.38091328.1580686965 -- 10:01:09.490 INFO [20615]: QUERY_STRING = /member/configure -- 10:01:09.490 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:01:09.532 INFO [20615]: COREGRADE is stopping... -- 10:01:09.532 DEBUG [20615]: Closing database connection -- 10:01:09.532 SQL [20615]: pgsql_close() -- 10:01:09.702 INFO [20615]: COREGRADE is starting... -- 10:01:09.702 INFO [20615]: Version from config: 1.0 -- 10:01:09.703 DEBUG [20615]: Connecting to database... -- 10:01:09.703 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:01:09.703 SQL [20615]: pgsql_db_connect() -- 10:01:09.707 DEBUG [20615]: Database connection successful -- 10:01:09.707 INFO [20615]: _SERVER found -- 10:01:09.707 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 10:01:09.707 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 10:01:09.707 INFO [20615]: HTTP_COOKIE = ci_session=92j1ab5716liqjel3nbpffuigr5jo8cv; _ga=GA1.2.38091328.1580686965 -- 10:01:09.707 INFO [20615]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:01:09.707 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:01:09.718 INFO [20615]: COREGRADE is stopping... -- 10:01:09.718 DEBUG [20615]: Closing database connection -- 10:01:09.718 SQL [20615]: pgsql_close() -- 10:01:09.737 INFO [20673]: COREGRADE is starting... -- 10:01:09.737 INFO [20673]: Version from config: 1.0 -- 10:01:09.737 DEBUG [20673]: Connecting to database... -- 10:01:09.737 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:01:09.737 SQL [20673]: pgsql_db_connect() -- 10:01:09.741 DEBUG [20673]: Database connection successful -- 10:01:09.741 INFO [20673]: _SERVER found -- 10:01:09.741 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 10:01:09.741 INFO [20673]: SERVER_NAME = oameye.works.coregrade.com -- 10:01:09.741 INFO [20673]: HTTP_COOKIE = ci_session=92j1ab5716liqjel3nbpffuigr5jo8cv; _ga=GA1.2.38091328.1580686965 -- 10:01:09.741 INFO [20673]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:01:09.741 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:01:09.755 INFO [20673]: COREGRADE is stopping... -- 10:01:09.756 DEBUG [20673]: Closing database connection -- 10:01:09.756 SQL [20673]: pgsql_close() -- 10:07:12.050 INFO [20614]: COREGRADE is starting... -- 10:07:12.050 INFO [20614]: Version from config: 1.0 -- 10:07:12.050 DEBUG [20614]: Connecting to database... -- 10:07:12.050 DEBUG [20614]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:07:12.050 SQL [20614]: pgsql_db_connect() -- 10:07:12.054 DEBUG [20614]: Database connection successful -- 10:07:12.055 INFO [20614]: _SERVER found -- 10:07:12.055 INFO [20614]: REMOTE_ADDR = 192.168.1.13 -- 10:07:12.055 INFO [20614]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:07:12.055 INFO [20614]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361 -- 10:07:12.055 INFO [20614]: QUERY_STRING = /auth -- 10:07:12.055 INFO [20614]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:07:12.366 INFO [20614]: COREGRADE is starting... -- 10:07:12.367 INFO [20614]: Version from config: 1.0 -- 10:07:12.367 DEBUG [20614]: Connecting to database... -- 10:07:12.367 DEBUG [20614]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:07:12.367 SQL [20614]: pgsql_db_connect() -- 10:07:12.371 DEBUG [20614]: Database connection successful -- 10:07:12.371 INFO [20614]: _SERVER found -- 10:07:12.371 INFO [20614]: REMOTE_ADDR = 192.168.1.13 -- 10:07:12.371 INFO [20614]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:07:12.371 INFO [20614]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=rokn3jq2quafdn30792ecq33npsopau0 -- 10:07:12.371 INFO [20614]: QUERY_STRING = /member/index -- 10:07:12.371 INFO [20614]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:07:12.406 INFO [20614]: COREGRADE is stopping... -- 10:07:12.406 DEBUG [20614]: Closing database connection -- 10:07:12.406 SQL [20614]: pgsql_close() -- 10:07:12.852 INFO [20616]: COREGRADE is starting... -- 10:07:12.852 INFO [20616]: Version from config: 1.0 -- 10:07:12.852 DEBUG [20616]: Connecting to database... -- 10:07:12.852 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:07:12.852 SQL [20616]: pgsql_db_connect() -- 10:07:12.856 DEBUG [20616]: Database connection successful -- 10:07:12.856 INFO [20616]: _SERVER found -- 10:07:12.856 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 10:07:12.856 INFO [20616]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:07:12.856 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=rokn3jq2quafdn30792ecq33npsopau0 -- 10:07:12.856 INFO [20616]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:07:12.856 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:07:12.868 INFO [20616]: COREGRADE is stopping... -- 10:07:12.868 DEBUG [20616]: Closing database connection -- 10:07:12.868 SQL [20616]: pgsql_close() -- 10:07:13.017 INFO [20616]: COREGRADE is starting... -- 10:07:13.017 INFO [20616]: Version from config: 1.0 -- 10:07:13.017 DEBUG [20616]: Connecting to database... -- 10:07:13.017 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:07:13.017 SQL [20616]: pgsql_db_connect() -- 10:07:13.021 DEBUG [20616]: Database connection successful -- 10:07:13.021 INFO [20616]: _SERVER found -- 10:07:13.021 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 10:07:13.021 INFO [20616]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:07:13.021 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=rokn3jq2quafdn30792ecq33npsopau0 -- 10:07:13.021 INFO [20616]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:07:13.021 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:07:13.032 INFO [20616]: COREGRADE is stopping... -- 10:07:13.032 DEBUG [20616]: Closing database connection -- 10:07:13.032 SQL [20616]: pgsql_close() -- 10:07:14.847 INFO [20616]: COREGRADE is starting... -- 10:07:14.847 INFO [20616]: Version from config: 1.0 -- 10:07:14.847 DEBUG [20616]: Connecting to database... -- 10:07:14.847 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:07:14.848 SQL [20616]: pgsql_db_connect() -- 10:07:14.851 DEBUG [20616]: Database connection successful -- 10:07:14.852 INFO [20616]: _SERVER found -- 10:07:14.852 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 10:07:14.852 INFO [20616]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:07:14.852 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=rokn3jq2quafdn30792ecq33npsopau0 -- 10:07:14.852 INFO [20616]: QUERY_STRING = /member/page -- 10:07:14.852 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:07:14.888 INFO [20616]: COREGRADE is stopping... -- 10:07:14.888 DEBUG [20616]: Closing database connection -- 10:07:14.888 SQL [20616]: pgsql_close() -- 10:07:15.281 INFO [20616]: COREGRADE is starting... -- 10:07:15.281 INFO [20616]: Version from config: 1.0 -- 10:07:15.281 DEBUG [20616]: Connecting to database... -- 10:07:15.281 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:07:15.281 SQL [20616]: pgsql_db_connect() -- 10:07:15.292 INFO [20614]: COREGRADE is starting... -- 10:07:15.292 INFO [20614]: Version from config: 1.0 -- 10:07:15.292 DEBUG [20614]: Connecting to database... -- 10:07:15.292 DEBUG [20614]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:07:15.292 SQL [20614]: pgsql_db_connect() -- 10:07:15.285 DEBUG [20616]: Database connection successful -- 10:07:15.285 INFO [20616]: _SERVER found -- 10:07:15.285 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 10:07:15.285 INFO [20616]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:07:15.285 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=rokn3jq2quafdn30792ecq33npsopau0 -- 10:07:15.285 INFO [20616]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:07:15.285 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:07:15.296 INFO [20616]: COREGRADE is stopping... -- 10:07:15.296 DEBUG [20616]: Closing database connection -- 10:07:15.296 SQL [20616]: pgsql_close() -- 10:07:15.296 DEBUG [20614]: Database connection successful -- 10:07:15.296 INFO [20614]: _SERVER found -- 10:07:15.296 INFO [20614]: REMOTE_ADDR = 192.168.1.13 -- 10:07:15.296 INFO [20614]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:07:15.296 INFO [20614]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=rokn3jq2quafdn30792ecq33npsopau0 -- 10:07:15.296 INFO [20614]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:07:15.296 INFO [20614]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:07:15.307 INFO [20614]: COREGRADE is stopping... -- 10:07:15.307 DEBUG [20614]: Closing database connection -- 10:07:15.307 SQL [20614]: pgsql_close() -- 10:10:25.069 INFO [20618]: COREGRADE is starting... -- 10:10:25.069 INFO [20618]: Version from config: 1.0 -- 10:10:25.069 DEBUG [20618]: Connecting to database... -- 10:10:25.069 DEBUG [20618]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:10:25.069 SQL [20618]: pgsql_db_connect() -- 10:10:25.073 DEBUG [20618]: Database connection successful -- 10:10:25.073 INFO [20618]: _SERVER found -- 10:10:25.073 INFO [20618]: REMOTE_ADDR = 192.168.1.13 -- 10:10:25.073 INFO [20618]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:10:25.073 INFO [20618]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=rokn3jq2quafdn30792ecq33npsopau0 -- 10:10:25.073 INFO [20618]: QUERY_STRING = /member/page -- 10:10:25.073 INFO [20618]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:10:25.115 INFO [20618]: COREGRADE is stopping... -- 10:10:25.115 DEBUG [20618]: Closing database connection -- 10:10:25.115 SQL [20618]: pgsql_close() -- 10:10:25.914 INFO [20618]: COREGRADE is starting... -- 10:10:25.914 INFO [20618]: Version from config: 1.0 -- 10:10:25.914 DEBUG [20618]: Connecting to database... -- 10:10:25.914 DEBUG [20618]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:10:25.914 SQL [20618]: pgsql_db_connect() -- 10:10:25.920 INFO [22349]: COREGRADE is starting... -- 10:10:25.921 INFO [22349]: Version from config: 1.0 -- 10:10:25.921 DEBUG [22349]: Connecting to database... -- 10:10:25.921 DEBUG [22349]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:10:25.921 SQL [22349]: pgsql_db_connect() -- 10:10:25.918 DEBUG [20618]: Database connection successful -- 10:10:25.918 INFO [20618]: _SERVER found -- 10:10:25.918 INFO [20618]: REMOTE_ADDR = 192.168.1.13 -- 10:10:25.918 INFO [20618]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:10:25.918 INFO [20618]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=rokn3jq2quafdn30792ecq33npsopau0 -- 10:10:25.918 INFO [20618]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:10:25.918 INFO [20618]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:10:25.929 INFO [20618]: COREGRADE is stopping... -- 10:10:25.929 DEBUG [20618]: Closing database connection -- 10:10:25.929 SQL [20618]: pgsql_close() -- 10:10:25.924 DEBUG [22349]: Database connection successful -- 10:10:25.924 INFO [22349]: _SERVER found -- 10:10:25.924 INFO [22349]: REMOTE_ADDR = 192.168.1.13 -- 10:10:25.924 INFO [22349]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:10:25.924 INFO [22349]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=rokn3jq2quafdn30792ecq33npsopau0 -- 10:10:25.924 INFO [22349]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:10:25.924 INFO [22349]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:10:25.936 INFO [22349]: COREGRADE is stopping... -- 10:10:25.936 DEBUG [22349]: Closing database connection -- 10:10:25.936 SQL [22349]: pgsql_close() -- 10:13:27.395 INFO [20615]: COREGRADE is starting... -- 10:13:27.395 INFO [20615]: Version from config: 1.0 -- 10:13:27.395 DEBUG [20615]: Connecting to database... -- 10:13:27.396 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:13:27.396 SQL [20615]: pgsql_db_connect() -- 10:13:27.400 DEBUG [20615]: Database connection successful -- 10:13:27.400 INFO [20615]: _SERVER found -- 10:13:27.400 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 10:13:27.400 INFO [20615]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:13:27.400 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=rokn3jq2quafdn30792ecq33npsopau0 -- 10:13:27.400 INFO [20615]: QUERY_STRING = /member/page -- 10:13:27.400 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:13:27.441 INFO [20615]: COREGRADE is stopping... -- 10:13:27.441 DEBUG [20615]: Closing database connection -- 10:13:27.441 SQL [20615]: pgsql_close() -- 10:13:27.966 INFO [20615]: COREGRADE is starting... -- 10:13:27.967 INFO [20615]: Version from config: 1.0 -- 10:13:27.967 DEBUG [20615]: Connecting to database... -- 10:13:27.967 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:13:27.967 SQL [20615]: pgsql_db_connect() -- 10:13:27.971 DEBUG [20615]: Database connection successful -- 10:13:27.971 INFO [20615]: _SERVER found -- 10:13:27.971 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 10:13:27.971 INFO [20615]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:13:27.971 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3o7t6hvaqns2b8do1nhkqte9pn6g311m -- 10:13:27.971 INFO [20615]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:13:27.971 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:13:27.982 INFO [20615]: COREGRADE is stopping... -- 10:13:27.982 DEBUG [20615]: Closing database connection -- 10:13:27.982 SQL [20615]: pgsql_close() -- 10:13:27.993 INFO [20615]: COREGRADE is starting... -- 10:13:27.993 INFO [20615]: Version from config: 1.0 -- 10:13:27.993 DEBUG [20615]: Connecting to database... -- 10:13:27.993 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:13:27.993 SQL [20615]: pgsql_db_connect() -- 10:13:27.997 DEBUG [20615]: Database connection successful -- 10:13:27.997 INFO [20615]: _SERVER found -- 10:13:27.997 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 10:13:27.997 INFO [20615]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:13:27.997 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3o7t6hvaqns2b8do1nhkqte9pn6g311m -- 10:13:27.997 INFO [20615]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:13:27.997 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:13:28.008 INFO [20615]: COREGRADE is stopping... -- 10:13:28.008 DEBUG [20615]: Closing database connection -- 10:13:28.008 SQL [20615]: pgsql_close() -- 10:20:31.653 INFO [20673]: COREGRADE is starting... -- 10:20:31.653 INFO [20673]: Version from config: 1.0 -- 10:20:31.654 DEBUG [20673]: Connecting to database... -- 10:20:31.654 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:20:31.654 SQL [20673]: pgsql_db_connect() -- 10:20:31.658 DEBUG [20673]: Database connection successful -- 10:20:31.658 INFO [20673]: _SERVER found -- 10:20:31.658 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 10:20:31.658 INFO [20673]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:20:31.658 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3o7t6hvaqns2b8do1nhkqte9pn6g311m -- 10:20:31.658 INFO [20673]: QUERY_STRING = /member/page -- 10:20:31.658 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:20:31.701 INFO [20673]: COREGRADE is stopping... -- 10:20:31.701 DEBUG [20673]: Closing database connection -- 10:20:31.701 SQL [20673]: pgsql_close() -- 10:20:32.242 INFO [20673]: COREGRADE is starting... -- 10:20:32.242 INFO [20673]: Version from config: 1.0 -- 10:20:32.242 DEBUG [20673]: Connecting to database... -- 10:20:32.242 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:20:32.242 SQL [20673]: pgsql_db_connect() -- 10:20:32.246 DEBUG [20673]: Database connection successful -- 10:20:32.246 INFO [20673]: _SERVER found -- 10:20:32.246 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 10:20:32.246 INFO [20673]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:20:32.246 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ek3jbpo8t0pdrpchqjqca9ekm6jpic1d -- 10:20:32.246 INFO [20673]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:20:32.246 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:20:32.258 INFO [20673]: COREGRADE is stopping... -- 10:20:32.258 DEBUG [20673]: Closing database connection -- 10:20:32.258 SQL [20673]: pgsql_close() -- 10:20:32.276 INFO [20673]: COREGRADE is starting... -- 10:20:32.277 INFO [20673]: Version from config: 1.0 -- 10:20:32.277 DEBUG [20673]: Connecting to database... -- 10:20:32.277 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:20:32.277 SQL [20673]: pgsql_db_connect() -- 10:20:32.280 DEBUG [20673]: Database connection successful -- 10:20:32.280 INFO [20673]: _SERVER found -- 10:20:32.280 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 10:20:32.280 INFO [20673]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:20:32.280 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ek3jbpo8t0pdrpchqjqca9ekm6jpic1d -- 10:20:32.280 INFO [20673]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:20:32.280 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:20:32.291 INFO [20673]: COREGRADE is stopping... -- 10:20:32.291 DEBUG [20673]: Closing database connection -- 10:20:32.291 SQL [20673]: pgsql_close() -- 10:21:10.359 INFO [22438]: COREGRADE is starting... -- 10:21:10.360 INFO [22438]: Version from config: 1.0 -- 10:21:10.360 DEBUG [22438]: Connecting to database... -- 10:21:10.360 DEBUG [22438]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:21:10.360 SQL [22438]: pgsql_db_connect() -- 10:21:10.364 DEBUG [22438]: Database connection successful -- 10:21:10.364 INFO [22438]: _SERVER found -- 10:21:10.364 INFO [22438]: REMOTE_ADDR = 192.168.1.13 -- 10:21:10.364 INFO [22438]: SERVER_NAME = oameye.works.coregrade.com -- 10:21:10.364 INFO [22438]: HTTP_COOKIE = ci_session=92j1ab5716liqjel3nbpffuigr5jo8cv; _ga=GA1.2.38091328.1580686965 -- 10:21:10.364 INFO [22438]: QUERY_STRING = /auth -- 10:21:10.364 INFO [22438]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:21:10.402 INFO [22438]: COREGRADE is stopping... -- 10:21:10.402 DEBUG [22438]: Closing database connection -- 10:21:10.402 SQL [22438]: pgsql_close() -- 10:21:10.590 INFO [22438]: COREGRADE is starting... -- 10:21:10.590 INFO [22438]: Version from config: 1.0 -- 10:21:10.590 DEBUG [22438]: Connecting to database... -- 10:21:10.590 DEBUG [22438]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:21:10.590 SQL [22438]: pgsql_db_connect() -- 10:21:10.594 DEBUG [22438]: Database connection successful -- 10:21:10.594 INFO [22438]: _SERVER found -- 10:21:10.594 INFO [22438]: REMOTE_ADDR = 192.168.1.13 -- 10:21:10.594 INFO [22438]: SERVER_NAME = oameye.works.coregrade.com -- 10:21:10.594 INFO [22438]: HTTP_COOKIE = ci_session=go7d3sfpqgoffcfcnfq4r7q1dtqnkpjm; _ga=GA1.2.38091328.1580686965 -- 10:21:10.594 INFO [22438]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:21:10.594 INFO [22438]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:21:10.605 INFO [22438]: COREGRADE is stopping... -- 10:21:10.605 DEBUG [22438]: Closing database connection -- 10:21:10.605 SQL [22438]: pgsql_close() -- 10:21:10.630 INFO [22219]: COREGRADE is starting... -- 10:21:10.630 INFO [22219]: Version from config: 1.0 -- 10:21:10.630 DEBUG [22219]: Connecting to database... -- 10:21:10.630 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:21:10.630 SQL [22219]: pgsql_db_connect() -- 10:21:10.634 DEBUG [22219]: Database connection successful -- 10:21:10.634 INFO [22219]: _SERVER found -- 10:21:10.634 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 10:21:10.634 INFO [22219]: SERVER_NAME = oameye.works.coregrade.com -- 10:21:10.634 INFO [22219]: HTTP_COOKIE = ci_session=go7d3sfpqgoffcfcnfq4r7q1dtqnkpjm; _ga=GA1.2.38091328.1580686965 -- 10:21:10.634 INFO [22219]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:21:10.634 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:21:10.645 INFO [22219]: COREGRADE is stopping... -- 10:21:10.645 DEBUG [22219]: Closing database connection -- 10:21:10.645 SQL [22219]: pgsql_close() -- 10:23:35.121 INFO [20617]: COREGRADE is starting... -- 10:23:35.122 INFO [20617]: Version from config: 1.0 -- 10:23:35.122 DEBUG [20617]: Connecting to database... -- 10:23:35.122 DEBUG [20617]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:23:35.122 SQL [20617]: pgsql_db_connect() -- 10:23:35.126 DEBUG [20617]: Database connection successful -- 10:23:35.126 INFO [20617]: _SERVER found -- 10:23:35.126 INFO [20617]: REMOTE_ADDR = 192.168.1.13 -- 10:23:35.126 INFO [20617]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:23:35.126 INFO [20617]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ek3jbpo8t0pdrpchqjqca9ekm6jpic1d -- 10:23:35.126 INFO [20617]: QUERY_STRING = /member/page -- 10:23:35.126 INFO [20617]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:23:35.163 INFO [20617]: COREGRADE is stopping... -- 10:23:35.163 DEBUG [20617]: Closing database connection -- 10:23:35.163 SQL [20617]: pgsql_close() -- 10:23:35.641 INFO [20617]: COREGRADE is starting... -- 10:23:35.641 INFO [20617]: Version from config: 1.0 -- 10:23:35.641 DEBUG [20617]: Connecting to database... -- 10:23:35.641 DEBUG [20617]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:23:35.641 SQL [20617]: pgsql_db_connect() -- 10:23:35.645 DEBUG [20617]: Database connection successful -- 10:23:35.645 INFO [20617]: _SERVER found -- 10:23:35.645 INFO [20617]: REMOTE_ADDR = 192.168.1.13 -- 10:23:35.645 INFO [20617]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:23:35.645 INFO [20617]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ek3jbpo8t0pdrpchqjqca9ekm6jpic1d -- 10:23:35.645 INFO [20617]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:23:35.645 INFO [20617]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:23:35.656 INFO [20617]: COREGRADE is stopping... -- 10:23:35.656 DEBUG [20617]: Closing database connection -- 10:23:35.656 SQL [20617]: pgsql_close() -- 10:23:35.671 INFO [20672]: COREGRADE is starting... -- 10:23:35.672 INFO [20672]: Version from config: 1.0 -- 10:23:35.672 DEBUG [20672]: Connecting to database... -- 10:23:35.672 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:23:35.672 SQL [20672]: pgsql_db_connect() -- 10:23:35.675 DEBUG [20672]: Database connection successful -- 10:23:35.675 INFO [20672]: _SERVER found -- 10:23:35.675 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 10:23:35.675 INFO [20672]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:23:35.675 INFO [20672]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ek3jbpo8t0pdrpchqjqca9ekm6jpic1d -- 10:23:35.675 INFO [20672]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:23:35.675 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:23:35.687 INFO [20672]: COREGRADE is stopping... -- 10:23:35.687 DEBUG [20672]: Closing database connection -- 10:23:35.687 SQL [20672]: pgsql_close() -- 10:27:53.736 INFO [20616]: COREGRADE is starting... -- 10:27:53.737 INFO [20616]: Version from config: 1.0 -- 10:27:53.737 DEBUG [20616]: Connecting to database... -- 10:27:53.737 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:27:53.737 SQL [20616]: pgsql_db_connect() -- 10:27:53.741 DEBUG [20616]: Database connection successful -- 10:27:53.741 INFO [20616]: _SERVER found -- 10:27:53.741 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 10:27:53.741 INFO [20616]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:27:53.741 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ek3jbpo8t0pdrpchqjqca9ekm6jpic1d -- 10:27:53.741 INFO [20616]: QUERY_STRING = /member/page -- 10:27:53.741 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:27:53.779 INFO [20616]: COREGRADE is stopping... -- 10:27:53.779 DEBUG [20616]: Closing database connection -- 10:27:53.779 SQL [20616]: pgsql_close() -- 10:27:54.346 INFO [20616]: COREGRADE is starting... -- 10:27:54.347 INFO [20616]: Version from config: 1.0 -- 10:27:54.347 DEBUG [20616]: Connecting to database... -- 10:27:54.347 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:27:54.347 SQL [20616]: pgsql_db_connect() -- 10:27:54.351 DEBUG [20616]: Database connection successful -- 10:27:54.351 INFO [20616]: _SERVER found -- 10:27:54.351 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 10:27:54.351 INFO [20616]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:27:54.351 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=rsgfq9dfeptqf886qchq690acfru90jb -- 10:27:54.351 INFO [20616]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:27:54.351 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:27:54.362 INFO [20616]: COREGRADE is stopping... -- 10:27:54.362 DEBUG [20616]: Closing database connection -- 10:27:54.362 SQL [20616]: pgsql_close() -- 10:27:54.550 INFO [20616]: COREGRADE is starting... -- 10:27:54.550 INFO [20616]: Version from config: 1.0 -- 10:27:54.551 DEBUG [20616]: Connecting to database... -- 10:27:54.551 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:27:54.551 SQL [20616]: pgsql_db_connect() -- 10:27:54.555 DEBUG [20616]: Database connection successful -- 10:27:54.555 INFO [20616]: _SERVER found -- 10:27:54.555 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 10:27:54.555 INFO [20616]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:27:54.555 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=rsgfq9dfeptqf886qchq690acfru90jb -- 10:27:54.555 INFO [20616]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:27:54.555 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:27:54.566 INFO [20616]: COREGRADE is stopping... -- 10:27:54.566 DEBUG [20616]: Closing database connection -- 10:27:54.566 SQL [20616]: pgsql_close() -- 10:31:15.831 INFO [20614]: COREGRADE is starting... -- 10:31:15.831 INFO [20614]: Version from config: 1.0 -- 10:31:15.831 DEBUG [20614]: Connecting to database... -- 10:31:15.831 DEBUG [20614]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:31:15.831 SQL [20614]: pgsql_db_connect() -- 10:31:15.835 DEBUG [20614]: Database connection successful -- 10:31:15.835 INFO [20614]: _SERVER found -- 10:31:15.835 INFO [20614]: REMOTE_ADDR = 192.168.1.13 -- 10:31:15.835 INFO [20614]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:31:15.835 INFO [20614]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=rsgfq9dfeptqf886qchq690acfru90jb -- 10:31:15.835 INFO [20614]: QUERY_STRING = /member/page -- 10:31:15.835 INFO [20614]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:31:15.873 INFO [20614]: COREGRADE is stopping... -- 10:31:15.873 DEBUG [20614]: Closing database connection -- 10:31:15.873 SQL [20614]: pgsql_close() -- 10:31:16.465 INFO [20614]: COREGRADE is starting... -- 10:31:16.466 INFO [20614]: Version from config: 1.0 -- 10:31:16.466 DEBUG [20614]: Connecting to database... -- 10:31:16.466 DEBUG [20614]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:31:16.466 SQL [20614]: pgsql_db_connect() -- 10:31:16.479 INFO [20618]: COREGRADE is starting... -- 10:31:16.479 INFO [20618]: Version from config: 1.0 -- 10:31:16.479 DEBUG [20618]: Connecting to database... -- 10:31:16.479 DEBUG [20618]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:31:16.479 SQL [20618]: pgsql_db_connect() -- 10:31:16.470 DEBUG [20614]: Database connection successful -- 10:31:16.470 INFO [20614]: _SERVER found -- 10:31:16.470 INFO [20614]: REMOTE_ADDR = 192.168.1.13 -- 10:31:16.470 INFO [20614]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:31:16.470 INFO [20614]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=rsgfq9dfeptqf886qchq690acfru90jb -- 10:31:16.470 INFO [20614]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:31:16.470 INFO [20614]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:31:16.481 INFO [20614]: COREGRADE is stopping... -- 10:31:16.481 DEBUG [20614]: Closing database connection -- 10:31:16.481 SQL [20614]: pgsql_close() -- 10:31:16.483 DEBUG [20618]: Database connection successful -- 10:31:16.483 INFO [20618]: _SERVER found -- 10:31:16.483 INFO [20618]: REMOTE_ADDR = 192.168.1.13 -- 10:31:16.483 INFO [20618]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:31:16.483 INFO [20618]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=rsgfq9dfeptqf886qchq690acfru90jb -- 10:31:16.483 INFO [20618]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:31:16.483 INFO [20618]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:31:16.496 INFO [20618]: COREGRADE is stopping... -- 10:31:16.496 DEBUG [20618]: Closing database connection -- 10:31:16.496 SQL [20618]: pgsql_close() -- 10:34:29.243 INFO [22349]: COREGRADE is starting... -- 10:34:29.243 INFO [22349]: Version from config: 1.0 -- 10:34:29.243 DEBUG [22349]: Connecting to database... -- 10:34:29.243 DEBUG [22349]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:34:29.243 SQL [22349]: pgsql_db_connect() -- 10:34:29.247 DEBUG [22349]: Database connection successful -- 10:34:29.247 INFO [22349]: _SERVER found -- 10:34:29.247 INFO [22349]: REMOTE_ADDR = 192.168.1.13 -- 10:34:29.247 INFO [22349]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:34:29.247 INFO [22349]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=rsgfq9dfeptqf886qchq690acfru90jb -- 10:34:29.247 INFO [22349]: QUERY_STRING = /member/page -- 10:34:29.247 INFO [22349]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:34:29.285 INFO [22349]: COREGRADE is stopping... -- 10:34:29.285 DEBUG [22349]: Closing database connection -- 10:34:29.285 SQL [22349]: pgsql_close() -- 10:34:29.738 INFO [22349]: COREGRADE is starting... -- 10:34:29.738 INFO [22349]: Version from config: 1.0 -- 10:34:29.738 DEBUG [22349]: Connecting to database... -- 10:34:29.738 DEBUG [22349]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:34:29.738 SQL [22349]: pgsql_db_connect() -- 10:34:29.742 DEBUG [22349]: Database connection successful -- 10:34:29.742 INFO [22349]: _SERVER found -- 10:34:29.742 INFO [22349]: REMOTE_ADDR = 192.168.1.13 -- 10:34:29.742 INFO [22349]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:34:29.742 INFO [22349]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ole2hif5na3jamu8lrsqqmbi7li94k7u -- 10:34:29.742 INFO [22349]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:34:29.742 INFO [22349]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:34:29.753 INFO [22349]: COREGRADE is stopping... -- 10:34:29.754 DEBUG [22349]: Closing database connection -- 10:34:29.754 SQL [22349]: pgsql_close() -- 10:34:29.767 INFO [20615]: COREGRADE is starting... -- 10:34:29.767 INFO [20615]: Version from config: 1.0 -- 10:34:29.767 DEBUG [20615]: Connecting to database... -- 10:34:29.767 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:34:29.767 SQL [20615]: pgsql_db_connect() -- 10:34:29.771 DEBUG [20615]: Database connection successful -- 10:34:29.771 INFO [20615]: _SERVER found -- 10:34:29.771 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 10:34:29.771 INFO [20615]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:34:29.771 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ole2hif5na3jamu8lrsqqmbi7li94k7u -- 10:34:29.771 INFO [20615]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:34:29.771 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:34:29.783 INFO [20615]: COREGRADE is stopping... -- 10:34:29.783 DEBUG [20615]: Closing database connection -- 10:34:29.783 SQL [20615]: pgsql_close() -- 10:34:43.170 INFO [20673]: COREGRADE is starting... -- 10:34:43.171 INFO [20673]: Version from config: 1.0 -- 10:34:43.171 DEBUG [20673]: Connecting to database... -- 10:34:43.171 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:34:43.171 SQL [20673]: pgsql_db_connect() -- 10:34:43.175 DEBUG [20673]: Database connection successful -- 10:34:43.175 INFO [20673]: _SERVER found -- 10:34:43.175 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 10:34:43.175 INFO [20673]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:34:43.175 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ole2hif5na3jamu8lrsqqmbi7li94k7u -- 10:34:43.175 INFO [20673]: QUERY_STRING = /member/index -- 10:34:43.175 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:34:43.213 INFO [20673]: COREGRADE is stopping... -- 10:34:43.213 DEBUG [20673]: Closing database connection -- 10:34:43.213 SQL [20673]: pgsql_close() -- 10:34:43.670 INFO [20673]: COREGRADE is starting... -- 10:34:43.670 INFO [20673]: Version from config: 1.0 -- 10:34:43.670 DEBUG [20673]: Connecting to database... -- 10:34:43.670 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:34:43.670 SQL [20673]: pgsql_db_connect() -- 10:34:43.674 DEBUG [20673]: Database connection successful -- 10:34:43.674 INFO [20673]: _SERVER found -- 10:34:43.674 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 10:34:43.674 INFO [20673]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:34:43.674 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ole2hif5na3jamu8lrsqqmbi7li94k7u -- 10:34:43.674 INFO [20673]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:34:43.674 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:34:43.686 INFO [20673]: COREGRADE is stopping... -- 10:34:43.686 DEBUG [20673]: Closing database connection -- 10:34:43.686 SQL [20673]: pgsql_close() -- 10:35:18.500 INFO [22438]: COREGRADE is starting... -- 10:35:18.500 INFO [22438]: Version from config: 1.0 -- 10:35:18.500 DEBUG [22438]: Connecting to database... -- 10:35:18.500 DEBUG [22438]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:35:18.500 SQL [22438]: pgsql_db_connect() -- 10:35:18.504 DEBUG [22438]: Database connection successful -- 10:35:18.504 INFO [22438]: _SERVER found -- 10:35:18.504 INFO [22438]: REMOTE_ADDR = 192.168.1.13 -- 10:35:18.504 INFO [22438]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:35:18.504 INFO [22438]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ole2hif5na3jamu8lrsqqmbi7li94k7u -- 10:35:18.504 INFO [22438]: QUERY_STRING = /member/index -- 10:35:18.504 INFO [22438]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:35:18.541 INFO [22438]: COREGRADE is stopping... -- 10:35:18.541 DEBUG [22438]: Closing database connection -- 10:35:18.541 SQL [22438]: pgsql_close() -- 10:35:18.873 INFO [22438]: COREGRADE is starting... -- 10:35:18.873 INFO [22438]: Version from config: 1.0 -- 10:35:18.873 DEBUG [22438]: Connecting to database... -- 10:35:18.874 DEBUG [22438]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:35:18.874 SQL [22438]: pgsql_db_connect() -- 10:35:18.877 DEBUG [22438]: Database connection successful -- 10:35:18.877 INFO [22438]: _SERVER found -- 10:35:18.877 INFO [22438]: REMOTE_ADDR = 192.168.1.13 -- 10:35:18.877 INFO [22438]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:35:18.877 INFO [22438]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ole2hif5na3jamu8lrsqqmbi7li94k7u -- 10:35:18.877 INFO [22438]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:35:18.877 INFO [22438]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:35:18.889 INFO [22438]: COREGRADE is stopping... -- 10:35:18.889 DEBUG [22438]: Closing database connection -- 10:35:18.889 SQL [22438]: pgsql_close() -- 10:35:18.896 INFO [22219]: COREGRADE is starting... -- 10:35:18.896 INFO [22219]: Version from config: 1.0 -- 10:35:18.896 DEBUG [22219]: Connecting to database... -- 10:35:18.896 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:35:18.896 SQL [22219]: pgsql_db_connect() -- 10:35:18.900 DEBUG [22219]: Database connection successful -- 10:35:18.900 INFO [22219]: _SERVER found -- 10:35:18.900 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 10:35:18.900 INFO [22219]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:35:18.900 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ole2hif5na3jamu8lrsqqmbi7li94k7u -- 10:35:18.900 INFO [22219]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:35:18.900 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:35:18.911 INFO [22219]: COREGRADE is stopping... -- 10:35:18.911 DEBUG [22219]: Closing database connection -- 10:35:18.911 SQL [22219]: pgsql_close() -- 10:35:20.656 INFO [22219]: COREGRADE is starting... -- 10:35:20.656 INFO [22219]: Version from config: 1.0 -- 10:35:20.656 DEBUG [22219]: Connecting to database... -- 10:35:20.656 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:35:20.656 SQL [22219]: pgsql_db_connect() -- 10:35:20.660 DEBUG [22219]: Database connection successful -- 10:35:20.660 INFO [22219]: _SERVER found -- 10:35:20.660 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 10:35:20.660 INFO [22219]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:35:20.660 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ole2hif5na3jamu8lrsqqmbi7li94k7u -- 10:35:20.660 INFO [22219]: QUERY_STRING = /member -- 10:35:20.660 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:35:20.696 INFO [22219]: COREGRADE is stopping... -- 10:35:20.696 DEBUG [22219]: Closing database connection -- 10:35:20.696 SQL [22219]: pgsql_close() -- 10:35:21.152 INFO [22219]: COREGRADE is starting... -- 10:35:21.152 INFO [22219]: Version from config: 1.0 -- 10:35:21.152 DEBUG [22219]: Connecting to database... -- 10:35:21.152 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:35:21.152 SQL [22219]: pgsql_db_connect() -- 10:35:21.156 DEBUG [22219]: Database connection successful -- 10:35:21.156 INFO [22219]: _SERVER found -- 10:35:21.156 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 10:35:21.156 INFO [22219]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:35:21.156 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ole2hif5na3jamu8lrsqqmbi7li94k7u -- 10:35:21.156 INFO [22219]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:35:21.156 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:35:21.167 INFO [22219]: COREGRADE is stopping... -- 10:35:21.167 DEBUG [22219]: Closing database connection -- 10:35:21.167 SQL [22219]: pgsql_close() -- 10:35:21.189 INFO [22438]: COREGRADE is starting... -- 10:35:21.189 INFO [22438]: Version from config: 1.0 -- 10:35:21.189 DEBUG [22438]: Connecting to database... -- 10:35:21.189 DEBUG [22438]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:35:21.189 SQL [22438]: pgsql_db_connect() -- 10:35:21.193 DEBUG [22438]: Database connection successful -- 10:35:21.193 INFO [22438]: _SERVER found -- 10:35:21.193 INFO [22438]: REMOTE_ADDR = 192.168.1.13 -- 10:35:21.193 INFO [22438]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:35:21.193 INFO [22438]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ole2hif5na3jamu8lrsqqmbi7li94k7u -- 10:35:21.193 INFO [22438]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:35:21.193 INFO [22438]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:35:21.204 INFO [22438]: COREGRADE is stopping... -- 10:35:21.204 DEBUG [22438]: Closing database connection -- 10:35:21.204 SQL [22438]: pgsql_close() -- 10:35:23.209 INFO [22219]: COREGRADE is starting... -- 10:35:23.209 INFO [22219]: Version from config: 1.0 -- 10:35:23.209 DEBUG [22219]: Connecting to database... -- 10:35:23.209 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:35:23.209 SQL [22219]: pgsql_db_connect() -- 10:35:23.213 DEBUG [22219]: Database connection successful -- 10:35:23.213 INFO [22219]: _SERVER found -- 10:35:23.213 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 10:35:23.213 INFO [22219]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:35:23.213 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ole2hif5na3jamu8lrsqqmbi7li94k7u -- 10:35:23.213 INFO [22219]: QUERY_STRING = /member/configure -- 10:35:23.213 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:35:23.248 INFO [22219]: COREGRADE is stopping... -- 10:35:23.248 DEBUG [22219]: Closing database connection -- 10:35:23.248 SQL [22219]: pgsql_close() -- 10:35:23.568 INFO [22219]: COREGRADE is starting... -- 10:35:23.569 INFO [22219]: Version from config: 1.0 -- 10:35:23.569 DEBUG [22219]: Connecting to database... -- 10:35:23.569 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:35:23.569 SQL [22219]: pgsql_db_connect() -- 10:35:23.569 INFO [22438]: COREGRADE is starting... -- 10:35:23.569 INFO [22438]: Version from config: 1.0 -- 10:35:23.569 DEBUG [22438]: Connecting to database... -- 10:35:23.569 DEBUG [22438]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:35:23.569 SQL [22438]: pgsql_db_connect() -- 10:35:23.573 DEBUG [22219]: Database connection successful -- 10:35:23.573 INFO [22219]: _SERVER found -- 10:35:23.573 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 10:35:23.573 INFO [22219]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:35:23.573 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ole2hif5na3jamu8lrsqqmbi7li94k7u -- 10:35:23.573 INFO [22219]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:35:23.573 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:35:23.584 INFO [22219]: COREGRADE is stopping... -- 10:35:23.584 DEBUG [22219]: Closing database connection -- 10:35:23.584 SQL [22219]: pgsql_close() -- 10:35:23.573 DEBUG [22438]: Database connection successful -- 10:35:23.573 INFO [22438]: _SERVER found -- 10:35:23.573 INFO [22438]: REMOTE_ADDR = 192.168.1.13 -- 10:35:23.573 INFO [22438]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:35:23.573 INFO [22438]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ole2hif5na3jamu8lrsqqmbi7li94k7u -- 10:35:23.573 INFO [22438]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:35:23.573 INFO [22438]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:35:23.584 INFO [22438]: COREGRADE is stopping... -- 10:35:23.584 DEBUG [22438]: Closing database connection -- 10:35:23.584 SQL [22438]: pgsql_close() -- 10:35:30.418 INFO [20617]: COREGRADE is starting... -- 10:35:30.418 INFO [20617]: Version from config: 1.0 -- 10:35:30.418 DEBUG [20617]: Connecting to database... -- 10:35:30.418 DEBUG [20617]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:35:30.418 SQL [20617]: pgsql_db_connect() -- 10:35:30.422 DEBUG [20617]: Database connection successful -- 10:35:30.422 INFO [20617]: _SERVER found -- 10:35:30.422 INFO [20617]: REMOTE_ADDR = 192.168.1.13 -- 10:35:30.422 INFO [20617]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:35:30.422 INFO [20617]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ole2hif5na3jamu8lrsqqmbi7li94k7u -- 10:35:30.422 INFO [20617]: QUERY_STRING = /member -- 10:35:30.422 INFO [20617]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:35:30.457 INFO [20617]: COREGRADE is stopping... -- 10:35:30.457 DEBUG [20617]: Closing database connection -- 10:35:30.457 SQL [20617]: pgsql_close() -- 10:35:30.741 INFO [20617]: COREGRADE is starting... -- 10:35:30.741 INFO [20617]: Version from config: 1.0 -- 10:35:30.741 DEBUG [20617]: Connecting to database... -- 10:35:30.741 DEBUG [20617]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:35:30.741 SQL [20617]: pgsql_db_connect() -- 10:35:30.745 DEBUG [20617]: Database connection successful -- 10:35:30.745 INFO [20617]: _SERVER found -- 10:35:30.745 INFO [20617]: REMOTE_ADDR = 192.168.1.13 -- 10:35:30.745 INFO [20617]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:35:30.745 INFO [20617]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ole2hif5na3jamu8lrsqqmbi7li94k7u -- 10:35:30.745 INFO [20617]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:35:30.745 INFO [20617]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:35:30.756 INFO [20617]: COREGRADE is stopping... -- 10:35:30.756 DEBUG [20617]: Closing database connection -- 10:35:30.756 SQL [20617]: pgsql_close() -- 10:35:30.758 INFO [20672]: COREGRADE is starting... -- 10:35:30.759 INFO [20672]: Version from config: 1.0 -- 10:35:30.759 DEBUG [20672]: Connecting to database... -- 10:35:30.759 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:35:30.759 SQL [20672]: pgsql_db_connect() -- 10:35:30.762 DEBUG [20672]: Database connection successful -- 10:35:30.762 INFO [20672]: _SERVER found -- 10:35:30.762 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 10:35:30.762 INFO [20672]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:35:30.762 INFO [20672]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ole2hif5na3jamu8lrsqqmbi7li94k7u -- 10:35:30.762 INFO [20672]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:35:30.762 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:35:30.774 INFO [20672]: COREGRADE is stopping... -- 10:35:30.774 DEBUG [20672]: Closing database connection -- 10:35:30.774 SQL [20672]: pgsql_close() -- 10:35:32.135 INFO [20672]: COREGRADE is starting... -- 10:35:32.135 INFO [20672]: Version from config: 1.0 -- 10:35:32.135 DEBUG [20672]: Connecting to database... -- 10:35:32.135 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:35:32.135 SQL [20672]: pgsql_db_connect() -- 10:35:32.139 DEBUG [20672]: Database connection successful -- 10:35:32.139 INFO [20672]: _SERVER found -- 10:35:32.139 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 10:35:32.139 INFO [20672]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:35:32.139 INFO [20672]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ole2hif5na3jamu8lrsqqmbi7li94k7u -- 10:35:32.139 INFO [20672]: QUERY_STRING = /member/page -- 10:35:32.139 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:35:32.175 INFO [20672]: COREGRADE is stopping... -- 10:35:32.175 DEBUG [20672]: Closing database connection -- 10:35:32.175 SQL [20672]: pgsql_close() -- 10:35:32.569 INFO [20672]: COREGRADE is starting... -- 10:35:32.569 INFO [20672]: Version from config: 1.0 -- 10:35:32.569 DEBUG [20672]: Connecting to database... -- 10:35:32.569 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:35:32.569 SQL [20672]: pgsql_db_connect() -- 10:35:32.573 DEBUG [20672]: Database connection successful -- 10:35:32.573 INFO [20672]: _SERVER found -- 10:35:32.573 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 10:35:32.573 INFO [20672]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:35:32.573 INFO [20672]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ole2hif5na3jamu8lrsqqmbi7li94k7u -- 10:35:32.573 INFO [20672]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:35:32.573 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:35:32.584 INFO [20672]: COREGRADE is stopping... -- 10:35:32.584 DEBUG [20672]: Closing database connection -- 10:35:32.584 SQL [20672]: pgsql_close() -- 10:35:32.642 INFO [20672]: COREGRADE is starting... -- 10:35:32.642 INFO [20672]: Version from config: 1.0 -- 10:35:32.642 DEBUG [20672]: Connecting to database... -- 10:35:32.642 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:35:32.642 SQL [20672]: pgsql_db_connect() -- 10:35:32.646 DEBUG [20672]: Database connection successful -- 10:35:32.646 INFO [20672]: _SERVER found -- 10:35:32.646 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 10:35:32.646 INFO [20672]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:35:32.646 INFO [20672]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ole2hif5na3jamu8lrsqqmbi7li94k7u -- 10:35:32.646 INFO [20672]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:35:32.646 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:35:32.657 INFO [20672]: COREGRADE is stopping... -- 10:35:32.657 DEBUG [20672]: Closing database connection -- 10:35:32.657 SQL [20672]: pgsql_close() -- 10:35:40.205 INFO [20616]: COREGRADE is starting... -- 10:35:40.205 INFO [20616]: Version from config: 1.0 -- 10:35:40.205 DEBUG [20616]: Connecting to database... -- 10:35:40.205 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:35:40.205 SQL [20616]: pgsql_db_connect() -- 10:35:40.209 DEBUG [20616]: Database connection successful -- 10:35:40.209 INFO [20616]: _SERVER found -- 10:35:40.209 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 10:35:40.209 INFO [20616]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:35:40.209 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ole2hif5na3jamu8lrsqqmbi7li94k7u -- 10:35:40.209 INFO [20616]: QUERY_STRING = /member -- 10:35:40.209 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:35:40.244 INFO [20616]: COREGRADE is stopping... -- 10:35:40.244 DEBUG [20616]: Closing database connection -- 10:35:40.244 SQL [20616]: pgsql_close() -- 10:35:40.545 INFO [20616]: COREGRADE is starting... -- 10:35:40.545 INFO [20616]: Version from config: 1.0 -- 10:35:40.545 DEBUG [20616]: Connecting to database... -- 10:35:40.545 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:35:40.545 SQL [20616]: pgsql_db_connect() -- 10:35:40.549 DEBUG [20616]: Database connection successful -- 10:35:40.549 INFO [20616]: _SERVER found -- 10:35:40.549 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 10:35:40.549 INFO [20616]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:35:40.549 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ole2hif5na3jamu8lrsqqmbi7li94k7u -- 10:35:40.549 INFO [20616]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:35:40.549 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:35:40.560 INFO [20616]: COREGRADE is stopping... -- 10:35:40.560 DEBUG [20616]: Closing database connection -- 10:35:40.560 SQL [20616]: pgsql_close() -- 10:35:43.448 INFO [20616]: COREGRADE is starting... -- 10:35:43.448 INFO [20616]: Version from config: 1.0 -- 10:35:43.448 DEBUG [20616]: Connecting to database... -- 10:35:43.448 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:35:43.448 SQL [20616]: pgsql_db_connect() -- 10:35:43.452 DEBUG [20616]: Database connection successful -- 10:35:43.452 INFO [20616]: _SERVER found -- 10:35:43.452 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 10:35:43.452 INFO [20616]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:35:43.452 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ole2hif5na3jamu8lrsqqmbi7li94k7u -- 10:35:43.452 INFO [20616]: QUERY_STRING = /member/page -- 10:35:43.452 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:35:43.488 INFO [20616]: COREGRADE is stopping... -- 10:35:43.488 DEBUG [20616]: Closing database connection -- 10:35:43.488 SQL [20616]: pgsql_close() -- 10:35:43.783 INFO [20616]: COREGRADE is starting... -- 10:35:43.784 INFO [20616]: Version from config: 1.0 -- 10:35:43.784 DEBUG [20616]: Connecting to database... -- 10:35:43.784 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:35:43.784 SQL [20616]: pgsql_db_connect() -- 10:35:43.788 DEBUG [20616]: Database connection successful -- 10:35:43.788 INFO [20616]: _SERVER found -- 10:35:43.788 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 10:35:43.788 INFO [20616]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:35:43.788 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ole2hif5na3jamu8lrsqqmbi7li94k7u -- 10:35:43.788 INFO [20616]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:35:43.788 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:35:43.799 INFO [20616]: COREGRADE is stopping... -- 10:35:43.799 DEBUG [20616]: Closing database connection -- 10:35:43.799 SQL [20616]: pgsql_close() -- 10:35:43.889 INFO [20616]: COREGRADE is starting... -- 10:35:43.890 INFO [20616]: Version from config: 1.0 -- 10:35:43.890 DEBUG [20616]: Connecting to database... -- 10:35:43.890 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:35:43.890 SQL [20616]: pgsql_db_connect() -- 10:35:43.893 DEBUG [20616]: Database connection successful -- 10:35:43.893 INFO [20616]: _SERVER found -- 10:35:43.893 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 10:35:43.893 INFO [20616]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:35:43.893 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ole2hif5na3jamu8lrsqqmbi7li94k7u -- 10:35:43.893 INFO [20616]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:35:43.893 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:35:43.904 INFO [20616]: COREGRADE is stopping... -- 10:35:43.904 DEBUG [20616]: Closing database connection -- 10:35:43.904 SQL [20616]: pgsql_close() -- 10:35:45.680 INFO [20616]: COREGRADE is starting... -- 10:35:45.680 INFO [20616]: Version from config: 1.0 -- 10:35:45.680 DEBUG [20616]: Connecting to database... -- 10:35:45.680 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:35:45.680 SQL [20616]: pgsql_db_connect() -- 10:35:45.684 DEBUG [20616]: Database connection successful -- 10:35:45.684 INFO [20616]: _SERVER found -- 10:35:45.684 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 10:35:45.684 INFO [20616]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:35:45.684 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ole2hif5na3jamu8lrsqqmbi7li94k7u -- 10:35:45.684 INFO [20616]: QUERY_STRING = /member/viewCardAddAction -- 10:35:45.684 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:35:45.714 INFO [20616]: COREGRADE is stopping... -- 10:35:45.714 DEBUG [20616]: Closing database connection -- 10:35:45.714 SQL [20616]: pgsql_close() -- 10:35:58.622 INFO [20614]: COREGRADE is starting... -- 10:35:58.622 INFO [20614]: Version from config: 1.0 -- 10:35:58.622 DEBUG [20614]: Connecting to database... -- 10:35:58.622 DEBUG [20614]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:35:58.622 SQL [20614]: pgsql_db_connect() -- 10:35:58.627 DEBUG [20614]: Database connection successful -- 10:35:58.627 INFO [20614]: _SERVER found -- 10:35:58.627 INFO [20614]: REMOTE_ADDR = 192.168.1.13 -- 10:35:58.627 INFO [20614]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:35:58.627 INFO [20614]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ole2hif5na3jamu8lrsqqmbi7li94k7u -- 10:35:58.627 INFO [20614]: QUERY_STRING = /member/configure -- 10:35:58.627 INFO [20614]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:35:58.663 INFO [20614]: COREGRADE is stopping... -- 10:35:58.663 DEBUG [20614]: Closing database connection -- 10:35:58.663 SQL [20614]: pgsql_close() -- 10:35:59.066 INFO [20614]: COREGRADE is starting... -- 10:35:59.067 INFO [20614]: Version from config: 1.0 -- 10:35:59.067 DEBUG [20614]: Connecting to database... -- 10:35:59.067 DEBUG [20614]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:35:59.067 SQL [20614]: pgsql_db_connect() -- 10:35:59.071 DEBUG [20614]: Database connection successful -- 10:35:59.071 INFO [20614]: _SERVER found -- 10:35:59.071 INFO [20614]: REMOTE_ADDR = 192.168.1.13 -- 10:35:59.071 INFO [20614]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:35:59.071 INFO [20614]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ole2hif5na3jamu8lrsqqmbi7li94k7u -- 10:35:59.071 INFO [20614]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:35:59.071 INFO [20614]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:35:59.082 INFO [20614]: COREGRADE is stopping... -- 10:35:59.082 DEBUG [20614]: Closing database connection -- 10:35:59.082 SQL [20614]: pgsql_close() -- 10:35:59.089 INFO [20618]: COREGRADE is starting... -- 10:35:59.090 INFO [20618]: Version from config: 1.0 -- 10:35:59.090 DEBUG [20618]: Connecting to database... -- 10:35:59.090 DEBUG [20618]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:35:59.090 SQL [20618]: pgsql_db_connect() -- 10:35:59.093 DEBUG [20618]: Database connection successful -- 10:35:59.093 INFO [20618]: _SERVER found -- 10:35:59.093 INFO [20618]: REMOTE_ADDR = 192.168.1.13 -- 10:35:59.093 INFO [20618]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:35:59.093 INFO [20618]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ole2hif5na3jamu8lrsqqmbi7li94k7u -- 10:35:59.093 INFO [20618]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:35:59.093 INFO [20618]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:35:59.105 INFO [20618]: COREGRADE is stopping... -- 10:35:59.105 DEBUG [20618]: Closing database connection -- 10:35:59.105 SQL [20618]: pgsql_close() -- 10:37:48.403 INFO [22349]: COREGRADE is starting... -- 10:37:48.404 INFO [22349]: Version from config: 1.0 -- 10:37:48.404 DEBUG [22349]: Connecting to database... -- 10:37:48.404 DEBUG [22349]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:37:48.404 SQL [22349]: pgsql_db_connect() -- 10:37:48.408 DEBUG [22349]: Database connection successful -- 10:37:48.408 INFO [22349]: _SERVER found -- 10:37:48.408 INFO [22349]: REMOTE_ADDR = 192.168.1.13 -- 10:37:48.408 INFO [22349]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:37:48.408 INFO [22349]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ole2hif5na3jamu8lrsqqmbi7li94k7u -- 10:37:48.408 INFO [22349]: QUERY_STRING = /member/configure -- 10:37:48.408 INFO [22349]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:37:48.443 INFO [22349]: COREGRADE is stopping... -- 10:37:48.444 DEBUG [22349]: Closing database connection -- 10:37:48.444 SQL [22349]: pgsql_close() -- 10:37:48.939 INFO [22349]: COREGRADE is starting... -- 10:37:48.939 INFO [22349]: Version from config: 1.0 -- 10:37:48.939 DEBUG [22349]: Connecting to database... -- 10:37:48.939 DEBUG [22349]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:37:48.939 SQL [22349]: pgsql_db_connect() -- 10:37:48.943 DEBUG [22349]: Database connection successful -- 10:37:48.943 INFO [22349]: _SERVER found -- 10:37:48.943 INFO [22349]: REMOTE_ADDR = 192.168.1.13 -- 10:37:48.943 INFO [22349]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:37:48.943 INFO [22349]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ole2hif5na3jamu8lrsqqmbi7li94k7u -- 10:37:48.943 INFO [22349]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:37:48.943 INFO [22349]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:37:48.954 INFO [22349]: COREGRADE is stopping... -- 10:37:48.954 DEBUG [22349]: Closing database connection -- 10:37:48.954 SQL [22349]: pgsql_close() -- 10:37:48.962 INFO [20615]: COREGRADE is starting... -- 10:37:48.962 INFO [20615]: Version from config: 1.0 -- 10:37:48.962 DEBUG [20615]: Connecting to database... -- 10:37:48.962 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:37:48.962 SQL [20615]: pgsql_db_connect() -- 10:37:48.966 DEBUG [20615]: Database connection successful -- 10:37:48.966 INFO [20615]: _SERVER found -- 10:37:48.966 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 10:37:48.966 INFO [20615]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:37:48.966 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ole2hif5na3jamu8lrsqqmbi7li94k7u -- 10:37:48.966 INFO [20615]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:37:48.966 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:37:48.977 INFO [20615]: COREGRADE is stopping... -- 10:37:48.978 DEBUG [20615]: Closing database connection -- 10:37:48.978 SQL [20615]: pgsql_close() -- 10:37:51.289 INFO [20615]: COREGRADE is starting... -- 10:37:51.290 INFO [20615]: Version from config: 1.0 -- 10:37:51.290 DEBUG [20615]: Connecting to database... -- 10:37:51.290 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:37:51.290 SQL [20615]: pgsql_db_connect() -- 10:37:51.294 DEBUG [20615]: Database connection successful -- 10:37:51.294 INFO [20615]: _SERVER found -- 10:37:51.294 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 10:37:51.294 INFO [20615]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:37:51.294 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ole2hif5na3jamu8lrsqqmbi7li94k7u -- 10:37:51.294 INFO [20615]: QUERY_STRING = /member/configure -- 10:37:51.294 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:37:51.331 INFO [20615]: COREGRADE is stopping... -- 10:37:51.332 DEBUG [20615]: Closing database connection -- 10:37:51.332 SQL [20615]: pgsql_close() -- 10:37:51.627 INFO [20615]: COREGRADE is starting... -- 10:37:51.627 INFO [20615]: Version from config: 1.0 -- 10:37:51.627 DEBUG [20615]: Connecting to database... -- 10:37:51.627 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:37:51.627 SQL [20615]: pgsql_db_connect() -- 10:37:51.641 INFO [22349]: COREGRADE is starting... -- 10:37:51.642 INFO [22349]: Version from config: 1.0 -- 10:37:51.642 DEBUG [22349]: Connecting to database... -- 10:37:51.642 DEBUG [22349]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:37:51.642 SQL [22349]: pgsql_db_connect() -- 10:37:51.631 DEBUG [20615]: Database connection successful -- 10:37:51.631 INFO [20615]: _SERVER found -- 10:37:51.631 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 10:37:51.631 INFO [20615]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:37:51.631 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ole2hif5na3jamu8lrsqqmbi7li94k7u -- 10:37:51.631 INFO [20615]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:37:51.631 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:37:51.642 INFO [20615]: COREGRADE is stopping... -- 10:37:51.642 DEBUG [20615]: Closing database connection -- 10:37:51.642 SQL [20615]: pgsql_close() -- 10:37:51.645 DEBUG [22349]: Database connection successful -- 10:37:51.645 INFO [22349]: _SERVER found -- 10:37:51.645 INFO [22349]: REMOTE_ADDR = 192.168.1.13 -- 10:37:51.645 INFO [22349]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:37:51.645 INFO [22349]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ole2hif5na3jamu8lrsqqmbi7li94k7u -- 10:37:51.645 INFO [22349]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:37:51.645 INFO [22349]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:37:51.656 INFO [22349]: COREGRADE is stopping... -- 10:37:51.656 DEBUG [22349]: Closing database connection -- 10:37:51.656 SQL [22349]: pgsql_close() -- 10:37:58.915 INFO [20673]: COREGRADE is starting... -- 10:37:58.916 INFO [20673]: Version from config: 1.0 -- 10:37:58.916 DEBUG [20673]: Connecting to database... -- 10:37:58.916 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:37:58.916 SQL [20673]: pgsql_db_connect() -- 10:37:58.920 DEBUG [20673]: Database connection successful -- 10:37:58.920 INFO [20673]: _SERVER found -- 10:37:58.920 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 10:37:58.920 INFO [20673]: SERVER_NAME = oameye.works.coregrade.com -- 10:37:58.920 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361 -- 10:37:58.920 INFO [20673]: QUERY_STRING = /member/configure -- 10:37:58.920 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:37:58.951 INFO [20673]: COREGRADE is stopping... -- 10:37:58.952 DEBUG [20673]: Closing database connection -- 10:37:58.952 SQL [20673]: pgsql_close() -- 10:37:58.976 INFO [20673]: COREGRADE is starting... -- 10:37:58.976 INFO [20673]: Version from config: 1.0 -- 10:37:58.976 DEBUG [20673]: Connecting to database... -- 10:37:58.976 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:37:58.977 SQL [20673]: pgsql_db_connect() -- 10:37:58.980 DEBUG [20673]: Database connection successful -- 10:37:58.980 INFO [20673]: _SERVER found -- 10:37:58.980 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 10:37:58.980 INFO [20673]: SERVER_NAME = oameye.works.coregrade.com -- 10:37:58.980 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nlqqait606881dkb2raass8lj73dg1ji -- 10:37:58.980 INFO [20673]: QUERY_STRING = -- 10:37:58.980 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:37:59.017 INFO [20673]: COREGRADE is stopping... -- 10:37:59.017 DEBUG [20673]: Closing database connection -- 10:37:59.017 SQL [20673]: pgsql_close() -- 10:37:59.379 INFO [20673]: COREGRADE is starting... -- 10:37:59.379 INFO [20673]: Version from config: 1.0 -- 10:37:59.379 DEBUG [20673]: Connecting to database... -- 10:37:59.379 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:37:59.379 SQL [20673]: pgsql_db_connect() -- 10:37:59.386 INFO [22438]: COREGRADE is starting... -- 10:37:59.386 INFO [22438]: Version from config: 1.0 -- 10:37:59.386 DEBUG [22438]: Connecting to database... -- 10:37:59.386 DEBUG [22438]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:37:59.386 SQL [22438]: pgsql_db_connect() -- 10:37:59.383 DEBUG [20673]: Database connection successful -- 10:37:59.383 INFO [20673]: _SERVER found -- 10:37:59.383 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 10:37:59.383 INFO [20673]: SERVER_NAME = oameye.works.coregrade.com -- 10:37:59.383 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nlqqait606881dkb2raass8lj73dg1ji -- 10:37:59.383 INFO [20673]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 10:37:59.383 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:37:59.395 INFO [20673]: COREGRADE is stopping... -- 10:37:59.395 DEBUG [20673]: Closing database connection -- 10:37:59.395 SQL [20673]: pgsql_close() -- 10:37:59.390 DEBUG [22438]: Database connection successful -- 10:37:59.390 INFO [22438]: _SERVER found -- 10:37:59.390 INFO [22438]: REMOTE_ADDR = 192.168.1.13 -- 10:37:59.390 INFO [22438]: SERVER_NAME = oameye.works.coregrade.com -- 10:37:59.390 INFO [22438]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nlqqait606881dkb2raass8lj73dg1ji -- 10:37:59.390 INFO [22438]: QUERY_STRING = /assets/img/footer_1.jpg -- 10:37:59.390 INFO [22438]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:37:59.401 INFO [22438]: COREGRADE is stopping... -- 10:37:59.401 DEBUG [22438]: Closing database connection -- 10:37:59.401 SQL [22438]: pgsql_close() -- 10:38:08.614 INFO [22219]: COREGRADE is starting... -- 10:38:08.614 INFO [22219]: Version from config: 1.0 -- 10:38:08.614 DEBUG [22219]: Connecting to database... -- 10:38:08.614 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:38:08.614 SQL [22219]: pgsql_db_connect() -- 10:38:08.618 DEBUG [22219]: Database connection successful -- 10:38:08.618 INFO [22219]: _SERVER found -- 10:38:08.618 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 10:38:08.618 INFO [22219]: SERVER_NAME = oameye.works.coregrade.com -- 10:38:08.618 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nlqqait606881dkb2raass8lj73dg1ji; _gat_gtag_UA_54829827_2=1 -- 10:38:08.618 INFO [22219]: QUERY_STRING = /auth -- 10:38:08.618 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:38:08.649 INFO [22219]: COREGRADE is stopping... -- 10:38:08.649 DEBUG [22219]: Closing database connection -- 10:38:08.649 SQL [22219]: pgsql_close() -- 10:38:09.182 INFO [20617]: COREGRADE is starting... -- 10:38:09.183 INFO [20617]: Version from config: 1.0 -- 10:38:09.183 DEBUG [20617]: Connecting to database... -- 10:38:09.183 DEBUG [20617]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:38:09.183 SQL [20617]: pgsql_db_connect() -- 10:38:09.183 INFO [22219]: COREGRADE is starting... -- 10:38:09.183 INFO [22219]: Version from config: 1.0 -- 10:38:09.183 DEBUG [22219]: Connecting to database... -- 10:38:09.183 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:38:09.183 SQL [22219]: pgsql_db_connect() -- 10:38:09.187 DEBUG [22219]: Database connection successful -- 10:38:09.187 INFO [22219]: _SERVER found -- 10:38:09.187 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 10:38:09.187 INFO [22219]: SERVER_NAME = oameye.works.coregrade.com -- 10:38:09.187 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nlqqait606881dkb2raass8lj73dg1ji; _gat_gtag_UA_54829827_2=1 -- 10:38:09.187 INFO [22219]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:38:09.187 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:38:09.198 INFO [22219]: COREGRADE is stopping... -- 10:38:09.198 DEBUG [22219]: Closing database connection -- 10:38:09.198 SQL [22219]: pgsql_close() -- 10:38:09.187 DEBUG [20617]: Database connection successful -- 10:38:09.187 INFO [20617]: _SERVER found -- 10:38:09.187 INFO [20617]: REMOTE_ADDR = 192.168.1.13 -- 10:38:09.187 INFO [20617]: SERVER_NAME = oameye.works.coregrade.com -- 10:38:09.187 INFO [20617]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nlqqait606881dkb2raass8lj73dg1ji; _gat_gtag_UA_54829827_2=1 -- 10:38:09.187 INFO [20617]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:38:09.187 INFO [20617]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:38:09.198 INFO [20617]: COREGRADE is stopping... -- 10:38:09.198 DEBUG [20617]: Closing database connection -- 10:38:09.198 SQL [20617]: pgsql_close() -- 10:38:11.972 INFO [22219]: COREGRADE is starting... -- 10:38:11.972 INFO [22219]: Version from config: 1.0 -- 10:38:11.972 DEBUG [22219]: Connecting to database... -- 10:38:11.972 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:38:11.972 SQL [22219]: pgsql_db_connect() -- 10:38:12.006 INFO [22219]: COREGRADE is starting... -- 10:38:12.006 INFO [22219]: Version from config: 1.0 -- 10:38:12.006 DEBUG [22219]: Connecting to database... -- 10:38:12.006 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:38:12.006 SQL [22219]: pgsql_db_connect() -- 10:38:12.010 DEBUG [22219]: Database connection successful -- 10:38:12.010 INFO [22219]: _SERVER found -- 10:38:12.010 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 10:38:12.010 INFO [22219]: SERVER_NAME = oameye.works.coregrade.com -- 10:38:12.010 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nlqqait606881dkb2raass8lj73dg1ji; _gat_gtag_UA_54829827_2=1 -- 10:38:12.010 INFO [22219]: QUERY_STRING = -- 10:38:12.010 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:38:12.010 INFO [22219]: SystemStatus()09-09-********~************ -- 10:38:12.010 INFO [22219]: long coregrade_api_main(CVars in, CVars &out) -- 10:38:12.010 INFO [22219]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 10:38:12.010 INFO [22219]: account calls -- 10:38:12.010 INFO [22219]: account_calls() -- 10:38:12.010 INFO [22219]: LoginCoreGradeAccount() -- 10:38:12.010 FLOG_MAX [22219]: REQ_STRING(username) -- 10:38:12.010 FLOG_MAX [22219]: REQ_STRING(password) -- 10:38:12.010 FLOG_MAX [22219]: REQ_STRING(sessionid) -- 10:38:12.010 FLOG_MAX [22219]: long load_db_record( CVars &rec, const char * query, ... ) -- 10:38:12.010 SQL [22219]: pgsql_query() -- 10:38:12.010 SQL [22219]: About to run query: -- 10:38:12.010 SQL [22219]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 10:38:12.014 SQL [22219]: Found rows: 1 -- 10:38:12.014 FLOG_MAX [22219]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=15 -- 10:38:12.014 INFO [22219]: long SessionCheck(long uid, const char *sessionid, int create ) -- 10:38:12.014 SQL [22219]: pgsql_exec() -- 10:38:12.014 SQL [22219]: About to run query: -- 10:38:12.014 SQL [22219]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 10:38:12.015 SQL [22219]: PQcmdTuples: 0 -- 10:38:12.015 SQL [22219]: Affected rows: 0 -- 10:38:12.015 SQL [22219]: pgsql_exec() -- 10:38:12.015 SQL [22219]: About to run query: -- 10:38:12.015 SQL [22219]: DELETE FROM members_session WHERE member_id=7 -- 10:38:12.016 SQL [22219]: PQcmdTuples: 1 -- 10:38:12.016 SQL [22219]: Affected rows: 1 -- 10:38:12.016 SQL [22219]: pgsql_query() -- 10:38:12.016 SQL [22219]: About to run query: -- 10:38:12.016 SQL [22219]: SELECT * FROM members_session WHERE member_id=7 AND session<>'B1B5DDCDEC94F86FD47C976D136335BD' -- 10:38:12.016 SQL [22219]: Found rows: 0 -- 10:38:12.016 SQL [22219]: Found rows: 0 -- 10:38:12.016 FLOG_MAX [22219]: long load_db_record( CVars &rec, const char * query, ... ) -- 10:38:12.016 SQL [22219]: pgsql_query() -- 10:38:12.016 SQL [22219]: About to run query: -- 10:38:12.016 SQL [22219]: SELECT * FROM members_session WHERE member_id=7 AND session='B1B5DDCDEC94F86FD47C976D136335BD' -- 10:38:12.017 SQL [22219]: Found rows: 0 -- 10:38:12.017 SQL [22219]: Found rows: 0 -- 10:38:12.017 FLOG_MAX [22219]: insert_db_record() -- 10:38:12.017 SQL [22219]: pgsql_exec() -- 10:38:12.017 SQL [22219]: About to run query: -- 10:38:12.017 SQL [22219]: INSERT INTO members_session (member_id,session) VALUES ('7','B1B5DDCDEC94F86FD47C976D136335BD') -- 10:38:12.018 SQL [22219]: PQcmdTuples: 1 -- 10:38:12.018 SQL [22219]: Affected rows: 1 -- 10:38:12.018 FLOG_MAX [22219]: SELECT currval('members_session_id_seq') -- 10:38:12.018 SQL [22219]: pgsql_query() -- 10:38:12.018 SQL [22219]: About to run query: -- 10:38:12.018 SQL [22219]: SELECT currval('members_session_id_seq') -- 10:38:12.019 SQL [22219]: Found rows: 1 -- 10:38:12.019 INFO [22219]: CreateDefaultPage() -- 10:38:12.019 FLOG_MAX [22219]: long load_db_record( CVars &rec, const char * query, ... ) -- 10:38:12.019 SQL [22219]: pgsql_query() -- 10:38:12.019 SQL [22219]: About to run query: -- 10:38:12.019 SQL [22219]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 10:38:12.019 SQL [22219]: Found rows: 1 -- 10:38:12.019 FLOG_MAX [22219]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 10:38:12.019 SQL [22219]: pgsql_query() -- 10:38:12.019 SQL [22219]: About to run query: -- 10:38:12.019 SQL [22219]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 10:38:12.019 SQL [22219]: Found rows: 1 -- 10:38:12.019 INFO [22219]: /CreateDefaultPage() -- 10:38:12.019 INFO [22219]: /LoginCoreGradeAccount() -- 10:38:12.019 INFO [22219]: RET: added=2020-02-05 09:42:12.816064 -- 10:38:12.019 INFO [22219]: RET: email=tokslaw@chiefsoft.com -- 10:38:12.019 INFO [22219]: RET: firstname=Tokunbo -- 10:38:12.019 INFO [22219]: RET: id=7 -- 10:38:12.019 INFO [22219]: RET: last_login= -- 10:38:12.019 INFO [22219]: RET: lastname=Lawal -- 10:38:12.019 INFO [22219]: RET: loc=192.168.1.13 -- 10:38:12.019 INFO [22219]: RET: member_id=7 -- 10:38:12.019 INFO [22219]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 10:38:12.019 INFO [22219]: RET: phone= -- 10:38:12.019 INFO [22219]: RET: pid= -- 10:38:12.019 INFO [22219]: RET: result=YES I GET TO BACK END -- 10:38:12.019 INFO [22219]: RET: sessionid=B1B5DDCDEC94F86FD47C976D136335BD -- 10:38:12.019 INFO [22219]: RET: status=1 -- 10:38:12.019 INFO [22219]: RET: stauts=OK -- 10:38:12.019 INFO [22219]: RET: username=tokslaw@chiefsoft.com -- 10:38:12.019 INFO [22219]: RET: verified= -- 10:38:12.021 INFO [22219]: COREGRADE is stopping... -- 10:38:12.021 DEBUG [22219]: Closing database connection -- 10:38:12.021 SQL [22219]: pgsql_close() -- 10:38:11.976 DEBUG [22219]: Database connection successful -- 10:38:11.976 INFO [22219]: _SERVER found -- 10:38:11.976 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 10:38:11.976 INFO [22219]: SERVER_NAME = oameye.works.coregrade.com -- 10:38:11.976 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nlqqait606881dkb2raass8lj73dg1ji; _gat_gtag_UA_54829827_2=1 -- 10:38:11.976 INFO [22219]: QUERY_STRING = /auth -- 10:38:11.976 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:38:12.021 INFO [22219]: COREGRADE is stopping... -- 10:38:12.021 DEBUG [22219]: Closing database connection -- 10:38:12.021 SQL [22219]: pgsql_close() -- 10:38:12.036 INFO [22219]: COREGRADE is starting... -- 10:38:12.037 INFO [22219]: Version from config: 1.0 -- 10:38:12.037 DEBUG [22219]: Connecting to database... -- 10:38:12.037 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:38:12.037 SQL [22219]: pgsql_db_connect() -- 10:38:12.040 DEBUG [22219]: Database connection successful -- 10:38:12.040 INFO [22219]: _SERVER found -- 10:38:12.040 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 10:38:12.040 INFO [22219]: SERVER_NAME = oameye.works.coregrade.com -- 10:38:12.040 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nlqqait606881dkb2raass8lj73dg1ji; _gat_gtag_UA_54829827_2=1 -- 10:38:12.040 INFO [22219]: QUERY_STRING = /member/index -- 10:38:12.040 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:38:12.075 INFO [22219]: COREGRADE is stopping... -- 10:38:12.075 DEBUG [22219]: Closing database connection -- 10:38:12.075 SQL [22219]: pgsql_close() -- 10:38:12.539 INFO [20614]: COREGRADE is starting... -- 10:38:12.540 INFO [20614]: Version from config: 1.0 -- 10:38:12.540 DEBUG [20614]: Connecting to database... -- 10:38:12.540 DEBUG [20614]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:38:12.540 SQL [20614]: pgsql_db_connect() -- 10:38:12.544 DEBUG [20614]: Database connection successful -- 10:38:12.544 INFO [20614]: _SERVER found -- 10:38:12.544 INFO [20614]: REMOTE_ADDR = 192.168.1.13 -- 10:38:12.544 INFO [20614]: SERVER_NAME = oameye.works.coregrade.com -- 10:38:12.544 INFO [20614]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nlqqait606881dkb2raass8lj73dg1ji; _gat_gtag_UA_54829827_2=1 -- 10:38:12.544 INFO [20614]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:38:12.544 INFO [20614]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:38:12.555 INFO [20614]: COREGRADE is stopping... -- 10:38:12.555 DEBUG [20614]: Closing database connection -- 10:38:12.555 SQL [20614]: pgsql_close() -- 10:38:12.764 INFO [20614]: COREGRADE is starting... -- 10:38:12.764 INFO [20614]: Version from config: 1.0 -- 10:38:12.764 DEBUG [20614]: Connecting to database... -- 10:38:12.764 DEBUG [20614]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:38:12.764 SQL [20614]: pgsql_db_connect() -- 10:38:12.768 DEBUG [20614]: Database connection successful -- 10:38:12.768 INFO [20614]: _SERVER found -- 10:38:12.768 INFO [20614]: REMOTE_ADDR = 192.168.1.13 -- 10:38:12.768 INFO [20614]: SERVER_NAME = oameye.works.coregrade.com -- 10:38:12.768 INFO [20614]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nlqqait606881dkb2raass8lj73dg1ji; _gat_gtag_UA_54829827_2=1 -- 10:38:12.768 INFO [20614]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:38:12.768 INFO [20614]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:38:12.779 INFO [20614]: COREGRADE is stopping... -- 10:38:12.779 DEBUG [20614]: Closing database connection -- 10:38:12.779 SQL [20614]: pgsql_close() -- 10:38:14.592 INFO [20614]: COREGRADE is starting... -- 10:38:14.592 INFO [20614]: Version from config: 1.0 -- 10:38:14.592 DEBUG [20614]: Connecting to database... -- 10:38:14.592 DEBUG [20614]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:38:14.592 SQL [20614]: pgsql_db_connect() -- 10:38:14.596 DEBUG [20614]: Database connection successful -- 10:38:14.596 INFO [20614]: _SERVER found -- 10:38:14.596 INFO [20614]: REMOTE_ADDR = 192.168.1.13 -- 10:38:14.596 INFO [20614]: SERVER_NAME = oameye.works.coregrade.com -- 10:38:14.596 INFO [20614]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nlqqait606881dkb2raass8lj73dg1ji; _gat_gtag_UA_54829827_2=1 -- 10:38:14.596 INFO [20614]: QUERY_STRING = /member/page -- 10:38:14.596 INFO [20614]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:38:14.632 INFO [20614]: COREGRADE is stopping... -- 10:38:14.632 DEBUG [20614]: Closing database connection -- 10:38:14.632 SQL [20614]: pgsql_close() -- 10:38:14.865 INFO [20614]: COREGRADE is starting... -- 10:38:14.865 INFO [20614]: Version from config: 1.0 -- 10:38:14.865 DEBUG [20614]: Connecting to database... -- 10:38:14.865 DEBUG [20614]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:38:14.865 SQL [20614]: pgsql_db_connect() -- 10:38:14.870 DEBUG [20614]: Database connection successful -- 10:38:14.870 INFO [20614]: _SERVER found -- 10:38:14.870 INFO [20614]: REMOTE_ADDR = 192.168.1.13 -- 10:38:14.870 INFO [20614]: SERVER_NAME = oameye.works.coregrade.com -- 10:38:14.870 INFO [20614]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nlqqait606881dkb2raass8lj73dg1ji; _gat_gtag_UA_54829827_2=1 -- 10:38:14.870 INFO [20614]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:38:14.870 INFO [20614]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:38:14.881 INFO [20614]: COREGRADE is stopping... -- 10:38:14.881 DEBUG [20614]: Closing database connection -- 10:38:14.881 SQL [20614]: pgsql_close() -- 10:38:14.981 INFO [20614]: COREGRADE is starting... -- 10:38:14.981 INFO [20614]: Version from config: 1.0 -- 10:38:14.981 DEBUG [20614]: Connecting to database... -- 10:38:14.981 DEBUG [20614]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:38:14.981 SQL [20614]: pgsql_db_connect() -- 10:38:14.985 DEBUG [20614]: Database connection successful -- 10:38:14.985 INFO [20614]: _SERVER found -- 10:38:14.985 INFO [20614]: REMOTE_ADDR = 192.168.1.13 -- 10:38:14.985 INFO [20614]: SERVER_NAME = oameye.works.coregrade.com -- 10:38:14.985 INFO [20614]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nlqqait606881dkb2raass8lj73dg1ji; _gat_gtag_UA_54829827_2=1 -- 10:38:14.985 INFO [20614]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:38:14.985 INFO [20614]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:38:14.996 INFO [20614]: COREGRADE is stopping... -- 10:38:14.996 DEBUG [20614]: Closing database connection -- 10:38:14.996 SQL [20614]: pgsql_close() -- 10:38:27.134 INFO [20618]: COREGRADE is starting... -- 10:38:27.134 INFO [20618]: Version from config: 1.0 -- 10:38:27.134 DEBUG [20618]: Connecting to database... -- 10:38:27.134 DEBUG [20618]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:38:27.134 SQL [20618]: pgsql_db_connect() -- 10:38:27.138 DEBUG [20618]: Database connection successful -- 10:38:27.138 INFO [20618]: _SERVER found -- 10:38:27.138 INFO [20618]: REMOTE_ADDR = 192.168.1.13 -- 10:38:27.138 INFO [20618]: SERVER_NAME = oameye.works.coregrade.com -- 10:38:27.138 INFO [20618]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nlqqait606881dkb2raass8lj73dg1ji; _gat_gtag_UA_54829827_2=1 -- 10:38:27.138 INFO [20618]: QUERY_STRING = /member/page -- 10:38:27.138 INFO [20618]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:38:27.177 INFO [20618]: COREGRADE is stopping... -- 10:38:27.177 DEBUG [20618]: Closing database connection -- 10:38:27.177 SQL [20618]: pgsql_close() -- 10:38:27.650 INFO [20618]: COREGRADE is starting... -- 10:38:27.650 INFO [20618]: Version from config: 1.0 -- 10:38:27.650 DEBUG [20618]: Connecting to database... -- 10:38:27.650 DEBUG [20618]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:38:27.650 SQL [20618]: pgsql_db_connect() -- 10:38:27.654 DEBUG [20618]: Database connection successful -- 10:38:27.654 INFO [20618]: _SERVER found -- 10:38:27.654 INFO [20618]: REMOTE_ADDR = 192.168.1.13 -- 10:38:27.654 INFO [20618]: SERVER_NAME = oameye.works.coregrade.com -- 10:38:27.654 INFO [20618]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nlqqait606881dkb2raass8lj73dg1ji; _gat_gtag_UA_54829827_2=1 -- 10:38:27.654 INFO [20618]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:38:27.654 INFO [20618]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:38:27.665 INFO [20618]: COREGRADE is stopping... -- 10:38:27.665 DEBUG [20618]: Closing database connection -- 10:38:27.665 SQL [20618]: pgsql_close() -- 10:38:27.761 INFO [20618]: COREGRADE is starting... -- 10:38:27.762 INFO [20618]: Version from config: 1.0 -- 10:38:27.762 DEBUG [20618]: Connecting to database... -- 10:38:27.762 DEBUG [20618]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:38:27.762 SQL [20618]: pgsql_db_connect() -- 10:38:27.766 DEBUG [20618]: Database connection successful -- 10:38:27.766 INFO [20618]: _SERVER found -- 10:38:27.766 INFO [20618]: REMOTE_ADDR = 192.168.1.13 -- 10:38:27.766 INFO [20618]: SERVER_NAME = oameye.works.coregrade.com -- 10:38:27.766 INFO [20618]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nlqqait606881dkb2raass8lj73dg1ji; _gat_gtag_UA_54829827_2=1 -- 10:38:27.766 INFO [20618]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:38:27.766 INFO [20618]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:38:27.777 INFO [20618]: COREGRADE is stopping... -- 10:38:27.777 DEBUG [20618]: Closing database connection -- 10:38:27.777 SQL [20618]: pgsql_close() -- 11:06:39.432 INFO [20615]: COREGRADE is starting... -- 11:06:39.432 INFO [20615]: Version from config: 1.0 -- 11:06:39.432 DEBUG [20615]: Connecting to database... -- 11:06:39.432 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:06:39.432 SQL [20615]: pgsql_db_connect() -- 11:06:39.437 DEBUG [20615]: Database connection successful -- 11:06:39.437 INFO [20615]: _SERVER found -- 11:06:39.437 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:06:39.437 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:06:39.437 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420 -- 11:06:39.437 INFO [20615]: QUERY_STRING = /auth -- 11:06:39.437 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:06:39.477 INFO [20615]: COREGRADE is stopping... -- 11:06:39.477 DEBUG [20615]: Closing database connection -- 11:06:39.477 SQL [20615]: pgsql_close() -- 11:06:39.902 INFO [20615]: COREGRADE is starting... -- 11:06:39.902 INFO [20615]: Version from config: 1.0 -- 11:06:39.902 DEBUG [20615]: Connecting to database... -- 11:06:39.902 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:06:39.902 SQL [20615]: pgsql_db_connect() -- 11:06:39.907 DEBUG [20615]: Database connection successful -- 11:06:39.907 INFO [20615]: _SERVER found -- 11:06:39.907 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:06:39.907 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:06:39.907 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=1239btorocuuf2v9f5smhe8nqb8jjtuh -- 11:06:39.907 INFO [20615]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:06:39.907 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:06:39.919 INFO [20615]: COREGRADE is stopping... -- 11:06:39.919 DEBUG [20615]: Closing database connection -- 11:06:39.919 SQL [20615]: pgsql_close() -- 11:06:39.939 INFO [20615]: COREGRADE is starting... -- 11:06:39.939 INFO [20615]: Version from config: 1.0 -- 11:06:39.939 DEBUG [20615]: Connecting to database... -- 11:06:39.939 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:06:39.939 SQL [20615]: pgsql_db_connect() -- 11:06:39.943 DEBUG [20615]: Database connection successful -- 11:06:39.943 INFO [20615]: _SERVER found -- 11:06:39.943 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:06:39.943 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:06:39.943 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=1239btorocuuf2v9f5smhe8nqb8jjtuh -- 11:06:39.943 INFO [20615]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:06:39.943 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:06:39.955 INFO [20615]: COREGRADE is stopping... -- 11:06:39.955 DEBUG [20615]: Closing database connection -- 11:06:39.955 SQL [20615]: pgsql_close() -- 11:06:42.251 INFO [20615]: COREGRADE is starting... -- 11:06:42.251 INFO [20615]: Version from config: 1.0 -- 11:06:42.251 DEBUG [20615]: Connecting to database... -- 11:06:42.251 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:06:42.251 SQL [20615]: pgsql_db_connect() -- 11:06:42.290 INFO [20615]: COREGRADE is starting... -- 11:06:42.290 INFO [20615]: Version from config: 1.0 -- 11:06:42.290 DEBUG [20615]: Connecting to database... -- 11:06:42.290 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:06:42.290 SQL [20615]: pgsql_db_connect() -- 11:06:42.295 DEBUG [20615]: Database connection successful -- 11:06:42.295 INFO [20615]: _SERVER found -- 11:06:42.295 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:06:42.295 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:06:42.295 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=1239btorocuuf2v9f5smhe8nqb8jjtuh -- 11:06:42.295 INFO [20615]: QUERY_STRING = -- 11:06:42.295 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:06:42.295 INFO [20615]: SystemStatus()09-09-********~************ -- 11:06:42.295 INFO [20615]: long coregrade_api_main(CVars in, CVars &out) -- 11:06:42.295 INFO [20615]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 11:06:42.295 INFO [20615]: account calls -- 11:06:42.295 INFO [20615]: account_calls() -- 11:06:42.295 INFO [20615]: LoginCoreGradeAccount() -- 11:06:42.295 FLOG_MAX [20615]: REQ_STRING(username) -- 11:06:42.295 FLOG_MAX [20615]: REQ_STRING(password) -- 11:06:42.295 FLOG_MAX [20615]: REQ_STRING(sessionid) -- 11:06:42.295 FLOG_MAX [20615]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:06:42.295 SQL [20615]: pgsql_query() -- 11:06:42.295 SQL [20615]: About to run query: -- 11:06:42.295 SQL [20615]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 11:06:42.299 SQL [20615]: Found rows: 1 -- 11:06:42.299 FLOG_MAX [20615]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 11:06:42.299 INFO [20615]: long SessionCheck(long uid, const char *sessionid, int create ) -- 11:06:42.299 SQL [20615]: pgsql_exec() -- 11:06:42.299 SQL [20615]: About to run query: -- 11:06:42.299 SQL [20615]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 11:06:42.300 SQL [20615]: PQcmdTuples: 1 -- 11:06:42.300 SQL [20615]: Affected rows: 1 -- 11:06:42.300 SQL [20615]: pgsql_exec() -- 11:06:42.300 SQL [20615]: About to run query: -- 11:06:42.300 SQL [20615]: DELETE FROM members_session WHERE member_id=5 -- 11:06:42.301 SQL [20615]: PQcmdTuples: 0 -- 11:06:42.301 SQL [20615]: Affected rows: 0 -- 11:06:42.301 SQL [20615]: pgsql_query() -- 11:06:42.301 SQL [20615]: About to run query: -- 11:06:42.301 SQL [20615]: SELECT * FROM members_session WHERE member_id=5 AND session<>'04CB991511382E44B7BD94F153D03D75' -- 11:06:42.301 SQL [20615]: Found rows: 0 -- 11:06:42.301 SQL [20615]: Found rows: 0 -- 11:06:42.301 FLOG_MAX [20615]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:06:42.301 SQL [20615]: pgsql_query() -- 11:06:42.301 SQL [20615]: About to run query: -- 11:06:42.301 SQL [20615]: SELECT * FROM members_session WHERE member_id=5 AND session='04CB991511382E44B7BD94F153D03D75' -- 11:06:42.302 SQL [20615]: Found rows: 0 -- 11:06:42.302 SQL [20615]: Found rows: 0 -- 11:06:42.302 FLOG_MAX [20615]: insert_db_record() -- 11:06:42.302 SQL [20615]: pgsql_exec() -- 11:06:42.302 SQL [20615]: About to run query: -- 11:06:42.302 SQL [20615]: INSERT INTO members_session (member_id,session) VALUES ('5','04CB991511382E44B7BD94F153D03D75') -- 11:06:42.303 SQL [20615]: PQcmdTuples: 1 -- 11:06:42.303 SQL [20615]: Affected rows: 1 -- 11:06:42.303 FLOG_MAX [20615]: SELECT currval('members_session_id_seq') -- 11:06:42.303 SQL [20615]: pgsql_query() -- 11:06:42.303 SQL [20615]: About to run query: -- 11:06:42.303 SQL [20615]: SELECT currval('members_session_id_seq') -- 11:06:42.304 SQL [20615]: Found rows: 1 -- 11:06:42.304 INFO [20615]: CreateDefaultPage() -- 11:06:42.304 FLOG_MAX [20615]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:06:42.304 SQL [20615]: pgsql_query() -- 11:06:42.304 SQL [20615]: About to run query: -- 11:06:42.304 SQL [20615]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 11:06:42.304 SQL [20615]: Found rows: 1 -- 11:06:42.304 FLOG_MAX [20615]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 11:06:42.304 SQL [20615]: pgsql_query() -- 11:06:42.304 SQL [20615]: About to run query: -- 11:06:42.304 SQL [20615]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 11:06:42.305 SQL [20615]: Found rows: 1 -- 11:06:42.305 INFO [20615]: /CreateDefaultPage() -- 11:06:42.305 INFO [20615]: /LoginCoreGradeAccount() -- 11:06:42.305 INFO [20615]: RET: added=2020-02-05 06:47:23.982154 -- 11:06:42.305 INFO [20615]: RET: email=ameye+11@chiefsoft.com -- 11:06:42.305 INFO [20615]: RET: firstname=Olu -- 11:06:42.305 INFO [20615]: RET: id=5 -- 11:06:42.305 INFO [20615]: RET: last_login= -- 11:06:42.305 INFO [20615]: RET: lastname=Amey -- 11:06:42.305 INFO [20615]: RET: loc=192.168.1.13 -- 11:06:42.305 INFO [20615]: RET: member_id=5 -- 11:06:42.305 INFO [20615]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 11:06:42.305 INFO [20615]: RET: phone= -- 11:06:42.305 INFO [20615]: RET: pid= -- 11:06:42.305 INFO [20615]: RET: result=YES I GET TO BACK END -- 11:06:42.305 INFO [20615]: RET: sessionid=04CB991511382E44B7BD94F153D03D75 -- 11:06:42.305 INFO [20615]: RET: status=1 -- 11:06:42.305 INFO [20615]: RET: stauts=OK -- 11:06:42.305 INFO [20615]: RET: username=ameye+11@chiefsoft.com -- 11:06:42.305 INFO [20615]: RET: verified= -- 11:06:42.306 INFO [20615]: COREGRADE is stopping... -- 11:06:42.306 DEBUG [20615]: Closing database connection -- 11:06:42.306 SQL [20615]: pgsql_close() -- 11:06:42.256 DEBUG [20615]: Database connection successful -- 11:06:42.256 INFO [20615]: _SERVER found -- 11:06:42.256 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:06:42.256 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:06:42.256 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=1239btorocuuf2v9f5smhe8nqb8jjtuh -- 11:06:42.256 INFO [20615]: QUERY_STRING = /auth -- 11:06:42.256 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:06:42.307 INFO [20615]: COREGRADE is stopping... -- 11:06:42.307 DEBUG [20615]: Closing database connection -- 11:06:42.307 SQL [20615]: pgsql_close() -- 11:06:42.317 INFO [20615]: COREGRADE is starting... -- 11:06:42.318 INFO [20615]: Version from config: 1.0 -- 11:06:42.318 DEBUG [20615]: Connecting to database... -- 11:06:42.318 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:06:42.318 SQL [20615]: pgsql_db_connect() -- 11:06:42.322 DEBUG [20615]: Database connection successful -- 11:06:42.322 INFO [20615]: _SERVER found -- 11:06:42.322 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:06:42.322 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:06:42.322 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=1239btorocuuf2v9f5smhe8nqb8jjtuh -- 11:06:42.322 INFO [20615]: QUERY_STRING = /member/index -- 11:06:42.322 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:06:42.359 INFO [20615]: COREGRADE is stopping... -- 11:06:42.359 DEBUG [20615]: Closing database connection -- 11:06:42.359 SQL [20615]: pgsql_close() -- 11:06:42.683 INFO [20615]: COREGRADE is starting... -- 11:06:42.683 INFO [20615]: Version from config: 1.0 -- 11:06:42.683 DEBUG [20615]: Connecting to database... -- 11:06:42.683 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:06:42.683 SQL [20615]: pgsql_db_connect() -- 11:06:42.688 DEBUG [20615]: Database connection successful -- 11:06:42.688 INFO [20615]: _SERVER found -- 11:06:42.688 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:06:42.688 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:06:42.688 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=1239btorocuuf2v9f5smhe8nqb8jjtuh -- 11:06:42.688 INFO [20615]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:06:42.688 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:06:42.699 INFO [20615]: COREGRADE is stopping... -- 11:06:42.699 DEBUG [20615]: Closing database connection -- 11:06:42.699 SQL [20615]: pgsql_close() -- 11:06:42.807 INFO [20615]: COREGRADE is starting... -- 11:06:42.807 INFO [20615]: Version from config: 1.0 -- 11:06:42.807 DEBUG [20615]: Connecting to database... -- 11:06:42.807 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:06:42.807 SQL [20615]: pgsql_db_connect() -- 11:06:42.812 DEBUG [20615]: Database connection successful -- 11:06:42.812 INFO [20615]: _SERVER found -- 11:06:42.812 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:06:42.812 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:06:42.812 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=1239btorocuuf2v9f5smhe8nqb8jjtuh -- 11:06:42.812 INFO [20615]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:06:42.812 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:06:42.823 INFO [20615]: COREGRADE is stopping... -- 11:06:42.823 DEBUG [20615]: Closing database connection -- 11:06:42.823 SQL [20615]: pgsql_close() -- 11:06:44.250 INFO [20615]: COREGRADE is starting... -- 11:06:44.251 INFO [20615]: Version from config: 1.0 -- 11:06:44.251 DEBUG [20615]: Connecting to database... -- 11:06:44.251 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:06:44.251 SQL [20615]: pgsql_db_connect() -- 11:06:44.255 DEBUG [20615]: Database connection successful -- 11:06:44.255 INFO [20615]: _SERVER found -- 11:06:44.255 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:06:44.255 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:06:44.255 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=1239btorocuuf2v9f5smhe8nqb8jjtuh -- 11:06:44.255 INFO [20615]: QUERY_STRING = /member/page -- 11:06:44.255 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:06:44.296 INFO [20615]: COREGRADE is stopping... -- 11:06:44.296 DEBUG [20615]: Closing database connection -- 11:06:44.296 SQL [20615]: pgsql_close() -- 11:06:44.554 INFO [20615]: COREGRADE is starting... -- 11:06:44.555 INFO [20615]: Version from config: 1.0 -- 11:06:44.555 DEBUG [20615]: Connecting to database... -- 11:06:44.555 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:06:44.555 SQL [20615]: pgsql_db_connect() -- 11:06:44.559 DEBUG [20615]: Database connection successful -- 11:06:44.559 INFO [20615]: _SERVER found -- 11:06:44.559 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:06:44.559 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:06:44.559 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=1239btorocuuf2v9f5smhe8nqb8jjtuh -- 11:06:44.559 INFO [20615]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:06:44.559 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:06:44.570 INFO [20615]: COREGRADE is stopping... -- 11:06:44.571 DEBUG [20615]: Closing database connection -- 11:06:44.571 SQL [20615]: pgsql_close() -- 11:06:47.481 INFO [20615]: COREGRADE is starting... -- 11:06:47.482 INFO [20615]: Version from config: 1.0 -- 11:06:47.482 DEBUG [20615]: Connecting to database... -- 11:06:47.482 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:06:47.482 SQL [20615]: pgsql_db_connect() -- 11:06:47.486 DEBUG [20615]: Database connection successful -- 11:06:47.486 INFO [20615]: _SERVER found -- 11:06:47.486 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:06:47.486 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:06:47.486 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=1239btorocuuf2v9f5smhe8nqb8jjtuh -- 11:06:47.486 INFO [20615]: QUERY_STRING = /member -- 11:06:47.486 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:06:47.526 INFO [20615]: COREGRADE is stopping... -- 11:06:47.526 DEBUG [20615]: Closing database connection -- 11:06:47.526 SQL [20615]: pgsql_close() -- 11:06:47.754 INFO [20615]: COREGRADE is starting... -- 11:06:47.754 INFO [20615]: Version from config: 1.0 -- 11:06:47.754 DEBUG [20615]: Connecting to database... -- 11:06:47.754 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:06:47.754 SQL [20615]: pgsql_db_connect() -- 11:06:47.758 DEBUG [20615]: Database connection successful -- 11:06:47.758 INFO [20615]: _SERVER found -- 11:06:47.758 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:06:47.758 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:06:47.758 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=1239btorocuuf2v9f5smhe8nqb8jjtuh -- 11:06:47.758 INFO [20615]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:06:47.758 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:06:47.770 INFO [20615]: COREGRADE is stopping... -- 11:06:47.770 DEBUG [20615]: Closing database connection -- 11:06:47.770 SQL [20615]: pgsql_close() -- 11:06:47.789 INFO [20615]: COREGRADE is starting... -- 11:06:47.789 INFO [20615]: Version from config: 1.0 -- 11:06:47.789 DEBUG [20615]: Connecting to database... -- 11:06:47.789 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:06:47.789 SQL [20615]: pgsql_db_connect() -- 11:06:47.793 DEBUG [20615]: Database connection successful -- 11:06:47.793 INFO [20615]: _SERVER found -- 11:06:47.793 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:06:47.793 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:06:47.793 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=1239btorocuuf2v9f5smhe8nqb8jjtuh -- 11:06:47.793 INFO [20615]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:06:47.793 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:06:47.805 INFO [20615]: COREGRADE is stopping... -- 11:06:47.805 DEBUG [20615]: Closing database connection -- 11:06:47.805 SQL [20615]: pgsql_close() -- 11:11:35.194 INFO [20616]: COREGRADE is starting... -- 11:11:35.195 INFO [20616]: Version from config: 1.0 -- 11:11:35.195 DEBUG [20616]: Connecting to database... -- 11:11:35.195 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:11:35.195 SQL [20616]: pgsql_db_connect() -- 11:11:35.232 INFO [20616]: COREGRADE is starting... -- 11:11:35.232 INFO [20616]: Version from config: 1.0 -- 11:11:35.232 DEBUG [20616]: Connecting to database... -- 11:11:35.232 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:11:35.232 SQL [20616]: pgsql_db_connect() -- 11:11:35.236 DEBUG [20616]: Database connection successful -- 11:11:35.236 INFO [20616]: _SERVER found -- 11:11:35.236 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 11:11:35.236 INFO [20616]: SERVER_NAME = oameye.works.coregrade.com -- 11:11:35.236 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=1239btorocuuf2v9f5smhe8nqb8jjtuh -- 11:11:35.236 INFO [20616]: QUERY_STRING = -- 11:11:35.236 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:11:35.236 INFO [20616]: SystemStatus()09-09-********~************ -- 11:11:35.236 INFO [20616]: long coregrade_api_main(CVars in, CVars &out) -- 11:11:35.236 INFO [20616]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 11:11:35.236 INFO [20616]: account calls -- 11:11:35.236 INFO [20616]: account_calls() -- 11:11:35.236 INFO [20616]: LoginCoreGradeAccount() -- 11:11:35.236 FLOG_MAX [20616]: REQ_STRING(username) -- 11:11:35.236 FLOG_MAX [20616]: REQ_STRING(password) -- 11:11:35.236 FLOG_MAX [20616]: REQ_STRING(sessionid) -- 11:11:35.236 FLOG_MAX [20616]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:11:35.236 SQL [20616]: pgsql_query() -- 11:11:35.236 SQL [20616]: About to run query: -- 11:11:35.236 SQL [20616]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 11:11:35.239 SQL [20616]: Found rows: 1 -- 11:11:35.239 FLOG_MAX [20616]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 11:11:35.239 INFO [20616]: long SessionCheck(long uid, const char *sessionid, int create ) -- 11:11:35.239 SQL [20616]: pgsql_exec() -- 11:11:35.239 SQL [20616]: About to run query: -- 11:11:35.239 SQL [20616]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 11:11:35.240 SQL [20616]: PQcmdTuples: 0 -- 11:11:35.240 SQL [20616]: Affected rows: 0 -- 11:11:35.240 SQL [20616]: pgsql_exec() -- 11:11:35.240 SQL [20616]: About to run query: -- 11:11:35.240 SQL [20616]: DELETE FROM members_session WHERE member_id=5 -- 11:11:35.241 SQL [20616]: PQcmdTuples: 1 -- 11:11:35.241 SQL [20616]: Affected rows: 1 -- 11:11:35.241 SQL [20616]: pgsql_query() -- 11:11:35.241 SQL [20616]: About to run query: -- 11:11:35.241 SQL [20616]: SELECT * FROM members_session WHERE member_id=5 AND session<>'13C5639157429C9AB0CE9827055034C2' -- 11:11:35.242 SQL [20616]: Found rows: 0 -- 11:11:35.242 SQL [20616]: Found rows: 0 -- 11:11:35.242 FLOG_MAX [20616]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:11:35.242 SQL [20616]: pgsql_query() -- 11:11:35.242 SQL [20616]: About to run query: -- 11:11:35.242 SQL [20616]: SELECT * FROM members_session WHERE member_id=5 AND session='13C5639157429C9AB0CE9827055034C2' -- 11:11:35.242 SQL [20616]: Found rows: 0 -- 11:11:35.242 SQL [20616]: Found rows: 0 -- 11:11:35.242 FLOG_MAX [20616]: insert_db_record() -- 11:11:35.242 SQL [20616]: pgsql_exec() -- 11:11:35.242 SQL [20616]: About to run query: -- 11:11:35.242 SQL [20616]: INSERT INTO members_session (member_id,session) VALUES ('5','13C5639157429C9AB0CE9827055034C2') -- 11:11:35.244 SQL [20616]: PQcmdTuples: 1 -- 11:11:35.244 SQL [20616]: Affected rows: 1 -- 11:11:35.244 FLOG_MAX [20616]: SELECT currval('members_session_id_seq') -- 11:11:35.244 SQL [20616]: pgsql_query() -- 11:11:35.244 SQL [20616]: About to run query: -- 11:11:35.244 SQL [20616]: SELECT currval('members_session_id_seq') -- 11:11:35.244 SQL [20616]: Found rows: 1 -- 11:11:35.244 INFO [20616]: CreateDefaultPage() -- 11:11:35.244 FLOG_MAX [20616]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:11:35.244 SQL [20616]: pgsql_query() -- 11:11:35.244 SQL [20616]: About to run query: -- 11:11:35.244 SQL [20616]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 11:11:35.245 SQL [20616]: Found rows: 1 -- 11:11:35.245 FLOG_MAX [20616]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 11:11:35.245 SQL [20616]: pgsql_query() -- 11:11:35.245 SQL [20616]: About to run query: -- 11:11:35.245 SQL [20616]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 11:11:35.245 SQL [20616]: Found rows: 1 -- 11:11:35.245 INFO [20616]: /CreateDefaultPage() -- 11:11:35.245 INFO [20616]: /LoginCoreGradeAccount() -- 11:11:35.245 INFO [20616]: RET: added=2020-02-05 06:47:23.982154 -- 11:11:35.245 INFO [20616]: RET: email=ameye+11@chiefsoft.com -- 11:11:35.245 INFO [20616]: RET: firstname=Olu -- 11:11:35.245 INFO [20616]: RET: id=5 -- 11:11:35.245 INFO [20616]: RET: last_login= -- 11:11:35.245 INFO [20616]: RET: lastname=Amey -- 11:11:35.245 INFO [20616]: RET: loc=192.168.1.13 -- 11:11:35.245 INFO [20616]: RET: member_id=5 -- 11:11:35.245 INFO [20616]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 11:11:35.245 INFO [20616]: RET: phone= -- 11:11:35.245 INFO [20616]: RET: pid= -- 11:11:35.245 INFO [20616]: RET: result=YES I GET TO BACK END -- 11:11:35.245 INFO [20616]: RET: sessionid=13C5639157429C9AB0CE9827055034C2 -- 11:11:35.245 INFO [20616]: RET: status=1 -- 11:11:35.245 INFO [20616]: RET: stauts=OK -- 11:11:35.245 INFO [20616]: RET: username=ameye+11@chiefsoft.com -- 11:11:35.245 INFO [20616]: RET: verified= -- 11:11:35.247 INFO [20616]: COREGRADE is stopping... -- 11:11:35.247 DEBUG [20616]: Closing database connection -- 11:11:35.247 SQL [20616]: pgsql_close() -- 11:11:35.199 DEBUG [20616]: Database connection successful -- 11:11:35.199 INFO [20616]: _SERVER found -- 11:11:35.199 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 11:11:35.199 INFO [20616]: SERVER_NAME = oameye.works.coregrade.com -- 11:11:35.199 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=1239btorocuuf2v9f5smhe8nqb8jjtuh -- 11:11:35.199 INFO [20616]: QUERY_STRING = /auth -- 11:11:35.199 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:11:35.247 INFO [20616]: COREGRADE is stopping... -- 11:11:35.247 DEBUG [20616]: Closing database connection -- 11:11:35.247 SQL [20616]: pgsql_close() -- 11:11:35.281 INFO [20616]: COREGRADE is starting... -- 11:11:35.281 INFO [20616]: Version from config: 1.0 -- 11:11:35.281 DEBUG [20616]: Connecting to database... -- 11:11:35.281 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:11:35.281 SQL [20616]: pgsql_db_connect() -- 11:11:35.285 DEBUG [20616]: Database connection successful -- 11:11:35.285 INFO [20616]: _SERVER found -- 11:11:35.285 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 11:11:35.285 INFO [20616]: SERVER_NAME = oameye.works.coregrade.com -- 11:11:35.285 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=1239btorocuuf2v9f5smhe8nqb8jjtuh -- 11:11:35.285 INFO [20616]: QUERY_STRING = /member/index -- 11:11:35.285 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:11:35.320 INFO [20616]: COREGRADE is stopping... -- 11:11:35.320 DEBUG [20616]: Closing database connection -- 11:11:35.320 SQL [20616]: pgsql_close() -- 11:11:35.493 INFO [20616]: COREGRADE is starting... -- 11:11:35.494 INFO [20616]: Version from config: 1.0 -- 11:11:35.494 DEBUG [20616]: Connecting to database... -- 11:11:35.494 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:11:35.494 SQL [20616]: pgsql_db_connect() -- 11:11:35.498 DEBUG [20616]: Database connection successful -- 11:11:35.498 INFO [20616]: _SERVER found -- 11:11:35.498 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 11:11:35.498 INFO [20616]: SERVER_NAME = oameye.works.coregrade.com -- 11:11:35.498 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=1239btorocuuf2v9f5smhe8nqb8jjtuh -- 11:11:35.498 INFO [20616]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:11:35.498 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:11:35.509 INFO [20616]: COREGRADE is stopping... -- 11:11:35.509 DEBUG [20616]: Closing database connection -- 11:11:35.509 SQL [20616]: pgsql_close() -- 11:11:35.512 INFO [20616]: COREGRADE is starting... -- 11:11:35.512 INFO [20616]: Version from config: 1.0 -- 11:11:35.512 DEBUG [20616]: Connecting to database... -- 11:11:35.512 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:11:35.512 SQL [20616]: pgsql_db_connect() -- 11:11:35.516 DEBUG [20616]: Database connection successful -- 11:11:35.516 INFO [20616]: _SERVER found -- 11:11:35.516 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 11:11:35.516 INFO [20616]: SERVER_NAME = oameye.works.coregrade.com -- 11:11:35.516 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=1239btorocuuf2v9f5smhe8nqb8jjtuh -- 11:11:35.516 INFO [20616]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:11:35.516 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:11:35.527 INFO [20616]: COREGRADE is stopping... -- 11:11:35.527 DEBUG [20616]: Closing database connection -- 11:11:35.527 SQL [20616]: pgsql_close() -- 11:11:37.571 INFO [20616]: COREGRADE is starting... -- 11:11:37.571 INFO [20616]: Version from config: 1.0 -- 11:11:37.571 DEBUG [20616]: Connecting to database... -- 11:11:37.572 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:11:37.572 SQL [20616]: pgsql_db_connect() -- 11:11:37.576 DEBUG [20616]: Database connection successful -- 11:11:37.576 INFO [20616]: _SERVER found -- 11:11:37.576 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 11:11:37.576 INFO [20616]: SERVER_NAME = oameye.works.coregrade.com -- 11:11:37.576 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=1239btorocuuf2v9f5smhe8nqb8jjtuh -- 11:11:37.576 INFO [20616]: QUERY_STRING = /member/page -- 11:11:37.576 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:11:37.611 INFO [20616]: COREGRADE is stopping... -- 11:11:37.611 DEBUG [20616]: Closing database connection -- 11:11:37.611 SQL [20616]: pgsql_close() -- 11:11:37.867 INFO [20616]: COREGRADE is starting... -- 11:11:37.867 INFO [20616]: Version from config: 1.0 -- 11:11:37.867 DEBUG [20616]: Connecting to database... -- 11:11:37.867 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:11:37.867 SQL [20616]: pgsql_db_connect() -- 11:11:37.871 DEBUG [20616]: Database connection successful -- 11:11:37.871 INFO [20616]: _SERVER found -- 11:11:37.871 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 11:11:37.871 INFO [20616]: SERVER_NAME = oameye.works.coregrade.com -- 11:11:37.871 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=1239btorocuuf2v9f5smhe8nqb8jjtuh -- 11:11:37.871 INFO [20616]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:11:37.871 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:11:37.883 INFO [20616]: COREGRADE is stopping... -- 11:11:37.883 DEBUG [20616]: Closing database connection -- 11:11:37.883 SQL [20616]: pgsql_close() -- 11:14:23.246 INFO [20672]: COREGRADE is starting... -- 11:14:23.246 INFO [20672]: Version from config: 1.0 -- 11:14:23.246 DEBUG [20672]: Connecting to database... -- 11:14:23.246 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:14:23.246 SQL [20672]: pgsql_db_connect() -- 11:14:23.250 DEBUG [20672]: Database connection successful -- 11:14:23.250 INFO [20672]: _SERVER found -- 11:14:23.250 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 11:14:23.250 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 11:14:23.250 INFO [20672]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=1239btorocuuf2v9f5smhe8nqb8jjtuh -- 11:14:23.250 INFO [20672]: QUERY_STRING = /member -- 11:14:23.250 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:14:23.287 INFO [20672]: COREGRADE is stopping... -- 11:14:23.287 DEBUG [20672]: Closing database connection -- 11:14:23.287 SQL [20672]: pgsql_close() -- 11:14:23.450 INFO [20672]: COREGRADE is starting... -- 11:14:23.450 INFO [20672]: Version from config: 1.0 -- 11:14:23.450 DEBUG [20672]: Connecting to database... -- 11:14:23.450 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:14:23.451 SQL [20672]: pgsql_db_connect() -- 11:14:23.454 DEBUG [20672]: Database connection successful -- 11:14:23.454 INFO [20672]: _SERVER found -- 11:14:23.454 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 11:14:23.454 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 11:14:23.454 INFO [20672]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0f7m82odvuq7fa0vfqbd7fho1j56drqs -- 11:14:23.454 INFO [20672]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:14:23.454 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:14:23.466 INFO [20672]: COREGRADE is stopping... -- 11:14:23.466 DEBUG [20672]: Closing database connection -- 11:14:23.466 SQL [20672]: pgsql_close() -- 11:14:25.106 INFO [20672]: COREGRADE is starting... -- 11:14:25.106 INFO [20672]: Version from config: 1.0 -- 11:14:25.106 DEBUG [20672]: Connecting to database... -- 11:14:25.106 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:14:25.106 SQL [20672]: pgsql_db_connect() -- 11:14:25.110 DEBUG [20672]: Database connection successful -- 11:14:25.110 INFO [20672]: _SERVER found -- 11:14:25.110 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 11:14:25.110 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 11:14:25.110 INFO [20672]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0f7m82odvuq7fa0vfqbd7fho1j56drqs -- 11:14:25.110 INFO [20672]: QUERY_STRING = /member/configure -- 11:14:25.110 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:14:25.145 INFO [20672]: COREGRADE is stopping... -- 11:14:25.145 DEBUG [20672]: Closing database connection -- 11:14:25.145 SQL [20672]: pgsql_close() -- 11:14:25.304 INFO [20672]: COREGRADE is starting... -- 11:14:25.304 INFO [20672]: Version from config: 1.0 -- 11:14:25.304 DEBUG [20672]: Connecting to database... -- 11:14:25.304 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:14:25.304 SQL [20672]: pgsql_db_connect() -- 11:14:25.308 DEBUG [20672]: Database connection successful -- 11:14:25.308 INFO [20672]: _SERVER found -- 11:14:25.308 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 11:14:25.308 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 11:14:25.308 INFO [20672]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0f7m82odvuq7fa0vfqbd7fho1j56drqs -- 11:14:25.308 INFO [20672]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:14:25.308 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:14:25.319 INFO [20672]: COREGRADE is stopping... -- 11:14:25.319 DEBUG [20672]: Closing database connection -- 11:14:25.319 SQL [20672]: pgsql_close() -- 11:14:27.779 INFO [20672]: COREGRADE is starting... -- 11:14:27.780 INFO [20672]: Version from config: 1.0 -- 11:14:27.780 DEBUG [20672]: Connecting to database... -- 11:14:27.780 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:14:27.780 SQL [20672]: pgsql_db_connect() -- 11:14:27.784 DEBUG [20672]: Database connection successful -- 11:14:27.784 INFO [20672]: _SERVER found -- 11:14:27.784 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 11:14:27.784 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 11:14:27.784 INFO [20672]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0f7m82odvuq7fa0vfqbd7fho1j56drqs -- 11:14:27.784 INFO [20672]: QUERY_STRING = /member -- 11:14:27.784 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:14:27.818 INFO [20672]: COREGRADE is stopping... -- 11:14:27.818 DEBUG [20672]: Closing database connection -- 11:14:27.818 SQL [20672]: pgsql_close() -- 11:14:27.936 INFO [20672]: COREGRADE is starting... -- 11:14:27.936 INFO [20672]: Version from config: 1.0 -- 11:14:27.936 DEBUG [20672]: Connecting to database... -- 11:14:27.936 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:14:27.936 SQL [20672]: pgsql_db_connect() -- 11:14:27.940 DEBUG [20672]: Database connection successful -- 11:14:27.940 INFO [20672]: _SERVER found -- 11:14:27.940 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 11:14:27.940 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 11:14:27.940 INFO [20672]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0f7m82odvuq7fa0vfqbd7fho1j56drqs -- 11:14:27.940 INFO [20672]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:14:27.940 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:14:27.951 INFO [20672]: COREGRADE is stopping... -- 11:14:27.951 DEBUG [20672]: Closing database connection -- 11:14:27.951 SQL [20672]: pgsql_close() -- 11:14:30.117 INFO [20672]: COREGRADE is starting... -- 11:14:30.117 INFO [20672]: Version from config: 1.0 -- 11:14:30.117 DEBUG [20672]: Connecting to database... -- 11:14:30.117 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:14:30.117 SQL [20672]: pgsql_db_connect() -- 11:14:30.121 DEBUG [20672]: Database connection successful -- 11:14:30.121 INFO [20672]: _SERVER found -- 11:14:30.121 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 11:14:30.121 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 11:14:30.121 INFO [20672]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0f7m82odvuq7fa0vfqbd7fho1j56drqs -- 11:14:30.121 INFO [20672]: QUERY_STRING = /member -- 11:14:30.121 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:14:30.155 INFO [20672]: COREGRADE is stopping... -- 11:14:30.155 DEBUG [20672]: Closing database connection -- 11:14:30.155 SQL [20672]: pgsql_close() -- 11:14:30.266 INFO [20672]: COREGRADE is starting... -- 11:14:30.267 INFO [20672]: Version from config: 1.0 -- 11:14:30.267 DEBUG [20672]: Connecting to database... -- 11:14:30.267 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:14:30.267 SQL [20672]: pgsql_db_connect() -- 11:14:30.271 DEBUG [20672]: Database connection successful -- 11:14:30.271 INFO [20672]: _SERVER found -- 11:14:30.271 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 11:14:30.271 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 11:14:30.271 INFO [20672]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0f7m82odvuq7fa0vfqbd7fho1j56drqs -- 11:14:30.271 INFO [20672]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:14:30.271 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:14:30.282 INFO [20672]: COREGRADE is stopping... -- 11:14:30.282 DEBUG [20672]: Closing database connection -- 11:14:30.282 SQL [20672]: pgsql_close() -- 11:14:32.060 INFO [20672]: COREGRADE is starting... -- 11:14:32.060 INFO [20672]: Version from config: 1.0 -- 11:14:32.060 DEBUG [20672]: Connecting to database... -- 11:14:32.060 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:14:32.060 SQL [20672]: pgsql_db_connect() -- 11:14:32.064 DEBUG [20672]: Database connection successful -- 11:14:32.064 INFO [20672]: _SERVER found -- 11:14:32.064 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 11:14:32.064 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 11:14:32.064 INFO [20672]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0f7m82odvuq7fa0vfqbd7fho1j56drqs -- 11:14:32.064 INFO [20672]: QUERY_STRING = /member/page -- 11:14:32.064 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:14:32.100 INFO [20672]: COREGRADE is stopping... -- 11:14:32.100 DEBUG [20672]: Closing database connection -- 11:14:32.100 SQL [20672]: pgsql_close() -- 11:14:32.271 INFO [20672]: COREGRADE is starting... -- 11:14:32.271 INFO [20672]: Version from config: 1.0 -- 11:14:32.271 DEBUG [20672]: Connecting to database... -- 11:14:32.271 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:14:32.271 SQL [20672]: pgsql_db_connect() -- 11:14:32.275 DEBUG [20672]: Database connection successful -- 11:14:32.275 INFO [20672]: _SERVER found -- 11:14:32.275 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 11:14:32.275 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 11:14:32.275 INFO [20672]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0f7m82odvuq7fa0vfqbd7fho1j56drqs -- 11:14:32.275 INFO [20672]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:14:32.275 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:14:32.286 INFO [20672]: COREGRADE is stopping... -- 11:14:32.286 DEBUG [20672]: Closing database connection -- 11:14:32.286 SQL [20672]: pgsql_close() -- 11:14:33.436 INFO [20672]: COREGRADE is starting... -- 11:14:33.437 INFO [20672]: Version from config: 1.0 -- 11:14:33.437 DEBUG [20672]: Connecting to database... -- 11:14:33.437 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:14:33.437 SQL [20672]: pgsql_db_connect() -- 11:14:33.441 DEBUG [20672]: Database connection successful -- 11:14:33.441 INFO [20672]: _SERVER found -- 11:14:33.441 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 11:14:33.441 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 11:14:33.441 INFO [20672]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0f7m82odvuq7fa0vfqbd7fho1j56drqs -- 11:14:33.441 INFO [20672]: QUERY_STRING = /member/viewCardAddAction -- 11:14:33.441 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:14:33.471 INFO [20672]: COREGRADE is stopping... -- 11:14:33.471 DEBUG [20672]: Closing database connection -- 11:14:33.471 SQL [20672]: pgsql_close() -- 11:15:12.739 INFO [20617]: COREGRADE is starting... -- 11:15:12.739 INFO [20617]: Version from config: 1.0 -- 11:15:12.739 DEBUG [20617]: Connecting to database... -- 11:15:12.739 DEBUG [20617]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:15:12.739 SQL [20617]: pgsql_db_connect() -- 11:15:12.744 DEBUG [20617]: Database connection successful -- 11:15:12.744 INFO [20617]: _SERVER found -- 11:15:12.744 INFO [20617]: REMOTE_ADDR = 192.168.1.13 -- 11:15:12.744 INFO [20617]: SERVER_NAME = oameye.works.coregrade.com -- 11:15:12.744 INFO [20617]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0f7m82odvuq7fa0vfqbd7fho1j56drqs -- 11:15:12.744 INFO [20617]: QUERY_STRING = /member -- 11:15:12.744 INFO [20617]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:15:12.779 INFO [20617]: COREGRADE is stopping... -- 11:15:12.779 DEBUG [20617]: Closing database connection -- 11:15:12.779 SQL [20617]: pgsql_close() -- 11:15:12.950 INFO [20617]: COREGRADE is starting... -- 11:15:12.950 INFO [20617]: Version from config: 1.0 -- 11:15:12.950 DEBUG [20617]: Connecting to database... -- 11:15:12.950 DEBUG [20617]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:15:12.950 SQL [20617]: pgsql_db_connect() -- 11:15:12.954 DEBUG [20617]: Database connection successful -- 11:15:12.954 INFO [20617]: _SERVER found -- 11:15:12.954 INFO [20617]: REMOTE_ADDR = 192.168.1.13 -- 11:15:12.954 INFO [20617]: SERVER_NAME = oameye.works.coregrade.com -- 11:15:12.954 INFO [20617]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0f7m82odvuq7fa0vfqbd7fho1j56drqs -- 11:15:12.954 INFO [20617]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:15:12.954 INFO [20617]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:15:12.965 INFO [20617]: COREGRADE is stopping... -- 11:15:12.965 DEBUG [20617]: Closing database connection -- 11:15:12.965 SQL [20617]: pgsql_close() -- 11:15:41.836 INFO [22219]: COREGRADE is starting... -- 11:15:41.836 INFO [22219]: Version from config: 1.0 -- 11:15:41.836 DEBUG [22219]: Connecting to database... -- 11:15:41.836 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:15:41.836 SQL [22219]: pgsql_db_connect() -- 11:15:41.840 DEBUG [22219]: Database connection successful -- 11:15:41.840 INFO [22219]: _SERVER found -- 11:15:41.840 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 11:15:41.840 INFO [22219]: SERVER_NAME = oameye.works.coregrade.com -- 11:15:41.840 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0f7m82odvuq7fa0vfqbd7fho1j56drqs -- 11:15:41.840 INFO [22219]: QUERY_STRING = /member -- 11:15:41.840 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:15:41.875 INFO [22219]: COREGRADE is stopping... -- 11:15:41.875 DEBUG [22219]: Closing database connection -- 11:15:41.875 SQL [22219]: pgsql_close() -- 11:15:42.045 INFO [22219]: COREGRADE is starting... -- 11:15:42.045 INFO [22219]: Version from config: 1.0 -- 11:15:42.045 DEBUG [22219]: Connecting to database... -- 11:15:42.045 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:15:42.045 SQL [22219]: pgsql_db_connect() -- 11:15:42.049 DEBUG [22219]: Database connection successful -- 11:15:42.049 INFO [22219]: _SERVER found -- 11:15:42.049 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 11:15:42.049 INFO [22219]: SERVER_NAME = oameye.works.coregrade.com -- 11:15:42.049 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0f7m82odvuq7fa0vfqbd7fho1j56drqs -- 11:15:42.049 INFO [22219]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:15:42.049 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:15:42.060 INFO [22219]: COREGRADE is stopping... -- 11:15:42.060 DEBUG [22219]: Closing database connection -- 11:15:42.060 SQL [22219]: pgsql_close() -- 11:16:35.514 INFO [20618]: COREGRADE is starting... -- 11:16:35.514 INFO [20618]: Version from config: 1.0 -- 11:16:35.514 DEBUG [20618]: Connecting to database... -- 11:16:35.514 DEBUG [20618]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:16:35.514 SQL [20618]: pgsql_db_connect() -- 11:16:35.518 DEBUG [20618]: Database connection successful -- 11:16:35.518 INFO [20618]: _SERVER found -- 11:16:35.518 INFO [20618]: REMOTE_ADDR = 192.168.1.13 -- 11:16:35.518 INFO [20618]: SERVER_NAME = oameye.works.coregrade.com -- 11:16:35.518 INFO [20618]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0f7m82odvuq7fa0vfqbd7fho1j56drqs -- 11:16:35.518 INFO [20618]: QUERY_STRING = /member -- 11:16:35.518 INFO [20618]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:16:35.557 INFO [20618]: COREGRADE is stopping... -- 11:16:35.557 DEBUG [20618]: Closing database connection -- 11:16:35.557 SQL [20618]: pgsql_close() -- 11:16:35.736 INFO [20618]: COREGRADE is starting... -- 11:16:35.736 INFO [20618]: Version from config: 1.0 -- 11:16:35.736 DEBUG [20618]: Connecting to database... -- 11:16:35.736 DEBUG [20618]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:16:35.736 SQL [20618]: pgsql_db_connect() -- 11:16:35.740 DEBUG [20618]: Database connection successful -- 11:16:35.740 INFO [20618]: _SERVER found -- 11:16:35.740 INFO [20618]: REMOTE_ADDR = 192.168.1.13 -- 11:16:35.740 INFO [20618]: SERVER_NAME = oameye.works.coregrade.com -- 11:16:35.740 INFO [20618]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0f7m82odvuq7fa0vfqbd7fho1j56drqs -- 11:16:35.740 INFO [20618]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:16:35.740 INFO [20618]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:16:35.751 INFO [20618]: COREGRADE is stopping... -- 11:16:35.751 DEBUG [20618]: Closing database connection -- 11:16:35.751 SQL [20618]: pgsql_close() -- 11:18:52.890 INFO [22349]: COREGRADE is starting... -- 11:18:52.890 INFO [22349]: Version from config: 1.0 -- 11:18:52.890 DEBUG [22349]: Connecting to database... -- 11:18:52.890 DEBUG [22349]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:18:52.890 SQL [22349]: pgsql_db_connect() -- 11:18:52.894 DEBUG [22349]: Database connection successful -- 11:18:52.894 INFO [22349]: _SERVER found -- 11:18:52.894 INFO [22349]: REMOTE_ADDR = 192.168.1.13 -- 11:18:52.894 INFO [22349]: SERVER_NAME = oameye.works.coregrade.com -- 11:18:52.894 INFO [22349]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0f7m82odvuq7fa0vfqbd7fho1j56drqs -- 11:18:52.894 INFO [22349]: QUERY_STRING = /member -- 11:18:52.894 INFO [22349]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:18:52.929 INFO [22349]: COREGRADE is stopping... -- 11:18:52.929 DEBUG [22349]: Closing database connection -- 11:18:52.929 SQL [22349]: pgsql_close() -- 11:18:53.077 INFO [22349]: COREGRADE is starting... -- 11:18:53.077 INFO [22349]: Version from config: 1.0 -- 11:18:53.077 DEBUG [22349]: Connecting to database... -- 11:18:53.077 DEBUG [22349]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:18:53.077 SQL [22349]: pgsql_db_connect() -- 11:18:53.081 DEBUG [22349]: Database connection successful -- 11:18:53.081 INFO [22349]: _SERVER found -- 11:18:53.081 INFO [22349]: REMOTE_ADDR = 192.168.1.13 -- 11:18:53.081 INFO [22349]: SERVER_NAME = oameye.works.coregrade.com -- 11:18:53.081 INFO [22349]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0f7m82odvuq7fa0vfqbd7fho1j56drqs -- 11:18:53.081 INFO [22349]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:18:53.081 INFO [22349]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:18:53.092 INFO [22349]: COREGRADE is stopping... -- 11:18:53.092 DEBUG [22349]: Closing database connection -- 11:18:53.092 SQL [22349]: pgsql_close() -- 11:18:57.038 INFO [22349]: COREGRADE is starting... -- 11:18:57.039 INFO [22349]: Version from config: 1.0 -- 11:18:57.039 DEBUG [22349]: Connecting to database... -- 11:18:57.039 DEBUG [22349]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:18:57.039 SQL [22349]: pgsql_db_connect() -- 11:18:57.043 DEBUG [22349]: Database connection successful -- 11:18:57.043 INFO [22349]: _SERVER found -- 11:18:57.043 INFO [22349]: REMOTE_ADDR = 192.168.1.13 -- 11:18:57.043 INFO [22349]: SERVER_NAME = oameye.works.coregrade.com -- 11:18:57.043 INFO [22349]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0f7m82odvuq7fa0vfqbd7fho1j56drqs -- 11:18:57.043 INFO [22349]: QUERY_STRING = /auth/logout -- 11:18:57.043 INFO [22349]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:18:57.073 INFO [22349]: COREGRADE is stopping... -- 11:18:57.073 DEBUG [22349]: Closing database connection -- 11:18:57.073 SQL [22349]: pgsql_close() -- 11:18:57.128 INFO [22349]: COREGRADE is starting... -- 11:18:57.129 INFO [22349]: Version from config: 1.0 -- 11:18:57.129 DEBUG [22349]: Connecting to database... -- 11:18:57.129 DEBUG [22349]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:18:57.129 SQL [22349]: pgsql_db_connect() -- 11:18:57.133 DEBUG [22349]: Database connection successful -- 11:18:57.133 INFO [22349]: _SERVER found -- 11:18:57.133 INFO [22349]: REMOTE_ADDR = 192.168.1.13 -- 11:18:57.133 INFO [22349]: SERVER_NAME = oameye.works.coregrade.com -- 11:18:57.133 INFO [22349]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0f7m82odvuq7fa0vfqbd7fho1j56drqs -- 11:18:57.133 INFO [22349]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:18:57.133 INFO [22349]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:18:57.144 INFO [22349]: COREGRADE is stopping... -- 11:18:57.144 DEBUG [22349]: Closing database connection -- 11:18:57.144 SQL [22349]: pgsql_close() -- 11:18:57.146 INFO [22438]: COREGRADE is starting... -- 11:18:57.146 INFO [22438]: Version from config: 1.0 -- 11:18:57.146 DEBUG [22438]: Connecting to database... -- 11:18:57.146 DEBUG [22438]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:18:57.146 SQL [22438]: pgsql_db_connect() -- 11:18:57.150 DEBUG [22438]: Database connection successful -- 11:18:57.150 INFO [22438]: _SERVER found -- 11:18:57.150 INFO [22438]: REMOTE_ADDR = 192.168.1.13 -- 11:18:57.150 INFO [22438]: SERVER_NAME = oameye.works.coregrade.com -- 11:18:57.150 INFO [22438]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0f7m82odvuq7fa0vfqbd7fho1j56drqs -- 11:18:57.150 INFO [22438]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:18:57.150 INFO [22438]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:18:57.161 INFO [22438]: COREGRADE is stopping... -- 11:18:57.162 DEBUG [22438]: Closing database connection -- 11:18:57.162 SQL [22438]: pgsql_close() -- 11:18:58.439 INFO [22349]: COREGRADE is starting... -- 11:18:58.440 INFO [22349]: Version from config: 1.0 -- 11:18:58.440 DEBUG [22349]: Connecting to database... -- 11:18:58.440 DEBUG [22349]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:18:58.440 SQL [22349]: pgsql_db_connect() -- 11:18:58.474 INFO [22349]: COREGRADE is starting... -- 11:18:58.474 INFO [22349]: Version from config: 1.0 -- 11:18:58.474 DEBUG [22349]: Connecting to database... -- 11:18:58.474 DEBUG [22349]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:18:58.474 SQL [22349]: pgsql_db_connect() -- 11:18:58.478 DEBUG [22349]: Database connection successful -- 11:18:58.478 INFO [22349]: _SERVER found -- 11:18:58.478 INFO [22349]: REMOTE_ADDR = 192.168.1.13 -- 11:18:58.478 INFO [22349]: SERVER_NAME = oameye.works.coregrade.com -- 11:18:58.478 INFO [22349]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0f7m82odvuq7fa0vfqbd7fho1j56drqs -- 11:18:58.478 INFO [22349]: QUERY_STRING = -- 11:18:58.478 INFO [22349]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:18:58.478 INFO [22349]: SystemStatus()09-09-********~************ -- 11:18:58.478 INFO [22349]: long coregrade_api_main(CVars in, CVars &out) -- 11:18:58.478 INFO [22349]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 11:18:58.478 INFO [22349]: account calls -- 11:18:58.478 INFO [22349]: account_calls() -- 11:18:58.478 INFO [22349]: LoginCoreGradeAccount() -- 11:18:58.478 FLOG_MAX [22349]: REQ_STRING(username) -- 11:18:58.478 FLOG_MAX [22349]: REQ_STRING(password) -- 11:18:58.478 FLOG_MAX [22349]: REQ_STRING(sessionid) -- 11:18:58.478 FLOG_MAX [22349]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:18:58.478 SQL [22349]: pgsql_query() -- 11:18:58.478 SQL [22349]: About to run query: -- 11:18:58.478 SQL [22349]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 11:18:58.482 SQL [22349]: Found rows: 1 -- 11:18:58.482 FLOG_MAX [22349]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 11:18:58.482 INFO [22349]: long SessionCheck(long uid, const char *sessionid, int create ) -- 11:18:58.482 SQL [22349]: pgsql_exec() -- 11:18:58.482 SQL [22349]: About to run query: -- 11:18:58.482 SQL [22349]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 11:18:58.482 SQL [22349]: PQcmdTuples: 0 -- 11:18:58.482 SQL [22349]: Affected rows: 0 -- 11:18:58.482 SQL [22349]: pgsql_exec() -- 11:18:58.483 SQL [22349]: About to run query: -- 11:18:58.483 SQL [22349]: DELETE FROM members_session WHERE member_id=5 -- 11:18:58.483 SQL [22349]: PQcmdTuples: 1 -- 11:18:58.483 SQL [22349]: Affected rows: 1 -- 11:18:58.483 SQL [22349]: pgsql_query() -- 11:18:58.483 SQL [22349]: About to run query: -- 11:18:58.483 SQL [22349]: SELECT * FROM members_session WHERE member_id=5 AND session<>'B119B3019DECE634D4D8F4EA51EAD4AF' -- 11:18:58.484 SQL [22349]: Found rows: 0 -- 11:18:58.484 SQL [22349]: Found rows: 0 -- 11:18:58.484 FLOG_MAX [22349]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:18:58.484 SQL [22349]: pgsql_query() -- 11:18:58.484 SQL [22349]: About to run query: -- 11:18:58.484 SQL [22349]: SELECT * FROM members_session WHERE member_id=5 AND session='B119B3019DECE634D4D8F4EA51EAD4AF' -- 11:18:58.484 SQL [22349]: Found rows: 0 -- 11:18:58.484 SQL [22349]: Found rows: 0 -- 11:18:58.484 FLOG_MAX [22349]: insert_db_record() -- 11:18:58.484 SQL [22349]: pgsql_exec() -- 11:18:58.485 SQL [22349]: About to run query: -- 11:18:58.485 SQL [22349]: INSERT INTO members_session (member_id,session) VALUES ('5','B119B3019DECE634D4D8F4EA51EAD4AF') -- 11:18:58.486 SQL [22349]: PQcmdTuples: 1 -- 11:18:58.486 SQL [22349]: Affected rows: 1 -- 11:18:58.486 FLOG_MAX [22349]: SELECT currval('members_session_id_seq') -- 11:18:58.486 SQL [22349]: pgsql_query() -- 11:18:58.486 SQL [22349]: About to run query: -- 11:18:58.486 SQL [22349]: SELECT currval('members_session_id_seq') -- 11:18:58.486 SQL [22349]: Found rows: 1 -- 11:18:58.486 INFO [22349]: CreateDefaultPage() -- 11:18:58.486 FLOG_MAX [22349]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:18:58.486 SQL [22349]: pgsql_query() -- 11:18:58.486 SQL [22349]: About to run query: -- 11:18:58.486 SQL [22349]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 11:18:58.487 SQL [22349]: Found rows: 1 -- 11:18:58.487 FLOG_MAX [22349]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 11:18:58.487 SQL [22349]: pgsql_query() -- 11:18:58.487 SQL [22349]: About to run query: -- 11:18:58.487 SQL [22349]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 11:18:58.487 SQL [22349]: Found rows: 1 -- 11:18:58.487 INFO [22349]: /CreateDefaultPage() -- 11:18:58.487 INFO [22349]: /LoginCoreGradeAccount() -- 11:18:58.487 INFO [22349]: RET: added=2020-02-05 06:47:23.982154 -- 11:18:58.487 INFO [22349]: RET: email=ameye+11@chiefsoft.com -- 11:18:58.487 INFO [22349]: RET: firstname=Olu -- 11:18:58.487 INFO [22349]: RET: id=5 -- 11:18:58.487 INFO [22349]: RET: last_login= -- 11:18:58.487 INFO [22349]: RET: lastname=Amey -- 11:18:58.487 INFO [22349]: RET: loc=192.168.1.13 -- 11:18:58.487 INFO [22349]: RET: member_id=5 -- 11:18:58.487 INFO [22349]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 11:18:58.487 INFO [22349]: RET: phone= -- 11:18:58.487 INFO [22349]: RET: pid= -- 11:18:58.487 INFO [22349]: RET: result=YES I GET TO BACK END -- 11:18:58.487 INFO [22349]: RET: sessionid=B119B3019DECE634D4D8F4EA51EAD4AF -- 11:18:58.487 INFO [22349]: RET: status=1 -- 11:18:58.487 INFO [22349]: RET: stauts=OK -- 11:18:58.487 INFO [22349]: RET: username=ameye+11@chiefsoft.com -- 11:18:58.487 INFO [22349]: RET: verified= -- 11:18:58.489 INFO [22349]: COREGRADE is stopping... -- 11:18:58.489 DEBUG [22349]: Closing database connection -- 11:18:58.489 SQL [22349]: pgsql_close() -- 11:18:58.444 DEBUG [22349]: Database connection successful -- 11:18:58.444 INFO [22349]: _SERVER found -- 11:18:58.444 INFO [22349]: REMOTE_ADDR = 192.168.1.13 -- 11:18:58.444 INFO [22349]: SERVER_NAME = oameye.works.coregrade.com -- 11:18:58.444 INFO [22349]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0f7m82odvuq7fa0vfqbd7fho1j56drqs -- 11:18:58.444 INFO [22349]: QUERY_STRING = /auth -- 11:18:58.444 INFO [22349]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:18:58.489 INFO [22349]: COREGRADE is stopping... -- 11:18:58.489 DEBUG [22349]: Closing database connection -- 11:18:58.489 SQL [22349]: pgsql_close() -- 11:18:58.502 INFO [22349]: COREGRADE is starting... -- 11:18:58.502 INFO [22349]: Version from config: 1.0 -- 11:18:58.502 DEBUG [22349]: Connecting to database... -- 11:18:58.502 DEBUG [22349]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:18:58.502 SQL [22349]: pgsql_db_connect() -- 11:18:58.506 DEBUG [22349]: Database connection successful -- 11:18:58.506 INFO [22349]: _SERVER found -- 11:18:58.506 INFO [22349]: REMOTE_ADDR = 192.168.1.13 -- 11:18:58.506 INFO [22349]: SERVER_NAME = oameye.works.coregrade.com -- 11:18:58.506 INFO [22349]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0f7m82odvuq7fa0vfqbd7fho1j56drqs -- 11:18:58.506 INFO [22349]: QUERY_STRING = /member/index -- 11:18:58.506 INFO [22349]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:18:58.540 INFO [22349]: COREGRADE is stopping... -- 11:18:58.540 DEBUG [22349]: Closing database connection -- 11:18:58.541 SQL [22349]: pgsql_close() -- 11:18:58.743 INFO [22349]: COREGRADE is starting... -- 11:18:58.743 INFO [22349]: Version from config: 1.0 -- 11:18:58.743 DEBUG [22349]: Connecting to database... -- 11:18:58.743 DEBUG [22349]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:18:58.743 SQL [22349]: pgsql_db_connect() -- 11:18:58.747 DEBUG [22349]: Database connection successful -- 11:18:58.747 INFO [22349]: _SERVER found -- 11:18:58.747 INFO [22349]: REMOTE_ADDR = 192.168.1.13 -- 11:18:58.747 INFO [22349]: SERVER_NAME = oameye.works.coregrade.com -- 11:18:58.747 INFO [22349]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0f7m82odvuq7fa0vfqbd7fho1j56drqs -- 11:18:58.747 INFO [22349]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:18:58.747 INFO [22349]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:18:58.758 INFO [22349]: COREGRADE is stopping... -- 11:18:58.758 DEBUG [22349]: Closing database connection -- 11:18:58.758 SQL [22349]: pgsql_close() -- 11:19:07.752 INFO [20673]: COREGRADE is starting... -- 11:19:07.752 INFO [20673]: Version from config: 1.0 -- 11:19:07.752 DEBUG [20673]: Connecting to database... -- 11:19:07.752 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:19:07.752 SQL [20673]: pgsql_db_connect() -- 11:19:07.756 DEBUG [20673]: Database connection successful -- 11:19:07.756 INFO [20673]: _SERVER found -- 11:19:07.756 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 11:19:07.756 INFO [20673]: SERVER_NAME = oameye.works.coregrade.com -- 11:19:07.756 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0f7m82odvuq7fa0vfqbd7fho1j56drqs -- 11:19:07.756 INFO [20673]: QUERY_STRING = /member/page -- 11:19:07.756 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:19:07.794 INFO [20673]: COREGRADE is stopping... -- 11:19:07.794 DEBUG [20673]: Closing database connection -- 11:19:07.794 SQL [20673]: pgsql_close() -- 11:19:07.947 INFO [20673]: COREGRADE is starting... -- 11:19:07.947 INFO [20673]: Version from config: 1.0 -- 11:19:07.947 DEBUG [20673]: Connecting to database... -- 11:19:07.947 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:19:07.947 SQL [20673]: pgsql_db_connect() -- 11:19:07.951 DEBUG [20673]: Database connection successful -- 11:19:07.951 INFO [20673]: _SERVER found -- 11:19:07.951 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 11:19:07.951 INFO [20673]: SERVER_NAME = oameye.works.coregrade.com -- 11:19:07.951 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0f7m82odvuq7fa0vfqbd7fho1j56drqs -- 11:19:07.951 INFO [20673]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:19:07.951 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:19:07.962 INFO [20673]: COREGRADE is stopping... -- 11:19:07.962 DEBUG [20673]: Closing database connection -- 11:19:07.962 SQL [20673]: pgsql_close() -- 11:19:13.430 INFO [20615]: COREGRADE is starting... -- 11:19:13.430 INFO [20615]: Version from config: 1.0 -- 11:19:13.430 DEBUG [20615]: Connecting to database... -- 11:19:13.430 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:19:13.430 SQL [20615]: pgsql_db_connect() -- 11:19:13.434 DEBUG [20615]: Database connection successful -- 11:19:13.434 INFO [20615]: _SERVER found -- 11:19:13.434 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:19:13.434 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:19:13.434 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0f7m82odvuq7fa0vfqbd7fho1j56drqs -- 11:19:13.434 INFO [20615]: QUERY_STRING = /member/configure -- 11:19:13.434 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:19:13.473 INFO [20615]: COREGRADE is stopping... -- 11:19:13.473 DEBUG [20615]: Closing database connection -- 11:19:13.473 SQL [20615]: pgsql_close() -- 11:19:13.631 INFO [20615]: COREGRADE is starting... -- 11:19:13.632 INFO [20615]: Version from config: 1.0 -- 11:19:13.632 DEBUG [20615]: Connecting to database... -- 11:19:13.632 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:19:13.632 SQL [20615]: pgsql_db_connect() -- 11:19:13.636 DEBUG [20615]: Database connection successful -- 11:19:13.636 INFO [20615]: _SERVER found -- 11:19:13.636 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:19:13.636 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:19:13.636 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0f7m82odvuq7fa0vfqbd7fho1j56drqs -- 11:19:13.636 INFO [20615]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:19:13.636 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:19:13.647 INFO [20615]: COREGRADE is stopping... -- 11:19:13.647 DEBUG [20615]: Closing database connection -- 11:19:13.647 SQL [20615]: pgsql_close() -- 11:21:17.421 INFO [20616]: COREGRADE is starting... -- 11:21:17.422 INFO [20616]: Version from config: 1.0 -- 11:21:17.422 DEBUG [20616]: Connecting to database... -- 11:21:17.422 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:21:17.422 SQL [20616]: pgsql_db_connect() -- 11:21:17.426 DEBUG [20616]: Database connection successful -- 11:21:17.426 INFO [20616]: _SERVER found -- 11:21:17.426 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 11:21:17.426 INFO [20616]: SERVER_NAME = oameye.works.coregrade.com -- 11:21:17.426 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0f7m82odvuq7fa0vfqbd7fho1j56drqs -- 11:21:17.426 INFO [20616]: QUERY_STRING = /member/configure -- 11:21:17.426 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:21:17.462 INFO [20616]: COREGRADE is stopping... -- 11:21:17.462 DEBUG [20616]: Closing database connection -- 11:21:17.462 SQL [20616]: pgsql_close() -- 11:21:17.630 INFO [20616]: COREGRADE is starting... -- 11:21:17.630 INFO [20616]: Version from config: 1.0 -- 11:21:17.630 DEBUG [20616]: Connecting to database... -- 11:21:17.630 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:21:17.630 SQL [20616]: pgsql_db_connect() -- 11:21:17.634 DEBUG [20616]: Database connection successful -- 11:21:17.634 INFO [20616]: _SERVER found -- 11:21:17.634 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 11:21:17.634 INFO [20616]: SERVER_NAME = oameye.works.coregrade.com -- 11:21:17.634 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:21:17.634 INFO [20616]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:21:17.634 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:21:17.645 INFO [20616]: COREGRADE is stopping... -- 11:21:17.645 DEBUG [20616]: Closing database connection -- 11:21:17.645 SQL [20616]: pgsql_close() -- 11:21:17.656 INFO [20672]: COREGRADE is starting... -- 11:21:17.657 INFO [20672]: Version from config: 1.0 -- 11:21:17.657 DEBUG [20672]: Connecting to database... -- 11:21:17.657 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:21:17.657 SQL [20672]: pgsql_db_connect() -- 11:21:17.660 DEBUG [20672]: Database connection successful -- 11:21:17.660 INFO [20672]: _SERVER found -- 11:21:17.660 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 11:21:17.660 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 11:21:17.660 INFO [20672]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:21:17.660 INFO [20672]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:21:17.660 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:21:17.672 INFO [20672]: COREGRADE is stopping... -- 11:21:17.672 DEBUG [20672]: Closing database connection -- 11:21:17.672 SQL [20672]: pgsql_close() -- 11:22:15.093 INFO [20617]: COREGRADE is starting... -- 11:22:15.093 INFO [20617]: Version from config: 1.0 -- 11:22:15.093 DEBUG [20617]: Connecting to database... -- 11:22:15.093 DEBUG [20617]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:22:15.093 SQL [20617]: pgsql_db_connect() -- 11:22:15.097 DEBUG [20617]: Database connection successful -- 11:22:15.097 INFO [20617]: _SERVER found -- 11:22:15.097 INFO [20617]: REMOTE_ADDR = 192.168.1.13 -- 11:22:15.097 INFO [20617]: SERVER_NAME = oameye.works.coregrade.com -- 11:22:15.097 INFO [20617]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:22:15.097 INFO [20617]: QUERY_STRING = /member/configure -- 11:22:15.097 INFO [20617]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:22:15.133 INFO [20617]: COREGRADE is stopping... -- 11:22:15.133 DEBUG [20617]: Closing database connection -- 11:22:15.133 SQL [20617]: pgsql_close() -- 11:22:15.242 INFO [20617]: COREGRADE is starting... -- 11:22:15.242 INFO [20617]: Version from config: 1.0 -- 11:22:15.242 DEBUG [20617]: Connecting to database... -- 11:22:15.242 DEBUG [20617]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:22:15.242 SQL [20617]: pgsql_db_connect() -- 11:22:15.246 DEBUG [20617]: Database connection successful -- 11:22:15.246 INFO [20617]: _SERVER found -- 11:22:15.246 INFO [20617]: REMOTE_ADDR = 192.168.1.13 -- 11:22:15.246 INFO [20617]: SERVER_NAME = oameye.works.coregrade.com -- 11:22:15.246 INFO [20617]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:22:15.246 INFO [20617]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:22:15.246 INFO [20617]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:22:15.257 INFO [20617]: COREGRADE is stopping... -- 11:22:15.257 DEBUG [20617]: Closing database connection -- 11:22:15.257 SQL [20617]: pgsql_close() -- 11:22:15.382 INFO [20617]: COREGRADE is starting... -- 11:22:15.383 INFO [20617]: Version from config: 1.0 -- 11:22:15.383 DEBUG [20617]: Connecting to database... -- 11:22:15.383 DEBUG [20617]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:22:15.383 SQL [20617]: pgsql_db_connect() -- 11:22:15.387 DEBUG [20617]: Database connection successful -- 11:22:15.387 INFO [20617]: _SERVER found -- 11:22:15.387 INFO [20617]: REMOTE_ADDR = 192.168.1.13 -- 11:22:15.387 INFO [20617]: SERVER_NAME = oameye.works.coregrade.com -- 11:22:15.387 INFO [20617]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:22:15.387 INFO [20617]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:22:15.387 INFO [20617]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:22:15.398 INFO [20617]: COREGRADE is stopping... -- 11:22:15.398 DEBUG [20617]: Closing database connection -- 11:22:15.398 SQL [20617]: pgsql_close() -- 11:23:07.972 INFO [22219]: COREGRADE is starting... -- 11:23:07.972 INFO [22219]: Version from config: 1.0 -- 11:23:07.972 DEBUG [22219]: Connecting to database... -- 11:23:07.972 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:23:07.972 SQL [22219]: pgsql_db_connect() -- 11:23:07.976 DEBUG [22219]: Database connection successful -- 11:23:07.976 INFO [22219]: _SERVER found -- 11:23:07.976 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 11:23:07.976 INFO [22219]: SERVER_NAME = oameye.works.coregrade.com -- 11:23:07.976 INFO [22219]: QUERY_STRING = /robots.txt -- 11:23:07.976 INFO [22219]: HTTP_X_FORWARDED_FOR = 66.249.64.166 -- 11:23:07.987 INFO [22219]: COREGRADE is stopping... -- 11:23:07.988 DEBUG [22219]: Closing database connection -- 11:23:07.988 SQL [22219]: pgsql_close() -- 11:23:08.140 INFO [22219]: COREGRADE is starting... -- 11:23:08.141 INFO [22219]: Version from config: 1.0 -- 11:23:08.141 DEBUG [22219]: Connecting to database... -- 11:23:08.141 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:23:08.141 SQL [22219]: pgsql_db_connect() -- 11:23:08.145 DEBUG [22219]: Database connection successful -- 11:23:08.145 INFO [22219]: _SERVER found -- 11:23:08.145 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 11:23:08.145 INFO [22219]: SERVER_NAME = oameye.works.coregrade.com -- 11:23:08.145 INFO [22219]: QUERY_STRING = -- 11:23:08.145 INFO [22219]: HTTP_X_FORWARDED_FOR = 66.249.64.160 -- 11:23:08.181 INFO [22219]: COREGRADE is stopping... -- 11:23:08.181 DEBUG [22219]: Closing database connection -- 11:23:08.181 SQL [22219]: pgsql_close() -- 11:23:11.851 INFO [22219]: COREGRADE is starting... -- 11:23:11.851 INFO [22219]: Version from config: 1.0 -- 11:23:11.851 DEBUG [22219]: Connecting to database... -- 11:23:11.851 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:23:11.851 SQL [22219]: pgsql_db_connect() -- 11:23:11.855 DEBUG [22219]: Database connection successful -- 11:23:11.855 INFO [22219]: _SERVER found -- 11:23:11.855 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 11:23:11.855 INFO [22219]: SERVER_NAME = oameye.works.coregrade.com -- 11:23:11.855 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:23:11.855 INFO [22219]: QUERY_STRING = /member/configure -- 11:23:11.855 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:23:11.890 INFO [22219]: COREGRADE is stopping... -- 11:23:11.890 DEBUG [22219]: Closing database connection -- 11:23:11.890 SQL [22219]: pgsql_close() -- 11:23:11.994 INFO [22219]: COREGRADE is starting... -- 11:23:11.994 INFO [22219]: Version from config: 1.0 -- 11:23:11.994 DEBUG [22219]: Connecting to database... -- 11:23:11.994 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:23:11.994 SQL [22219]: pgsql_db_connect() -- 11:23:11.998 DEBUG [22219]: Database connection successful -- 11:23:11.998 INFO [22219]: _SERVER found -- 11:23:11.998 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 11:23:11.998 INFO [22219]: SERVER_NAME = oameye.works.coregrade.com -- 11:23:11.998 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:23:11.998 INFO [22219]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:23:11.998 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:23:12.009 INFO [22219]: COREGRADE is stopping... -- 11:23:12.009 DEBUG [22219]: Closing database connection -- 11:23:12.009 SQL [22219]: pgsql_close() -- 11:23:12.138 INFO [22219]: COREGRADE is starting... -- 11:23:12.139 INFO [22219]: Version from config: 1.0 -- 11:23:12.139 DEBUG [22219]: Connecting to database... -- 11:23:12.139 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:23:12.139 SQL [22219]: pgsql_db_connect() -- 11:23:12.143 DEBUG [22219]: Database connection successful -- 11:23:12.143 INFO [22219]: _SERVER found -- 11:23:12.143 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 11:23:12.143 INFO [22219]: SERVER_NAME = oameye.works.coregrade.com -- 11:23:12.143 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:23:12.143 INFO [22219]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:23:12.143 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:23:12.154 INFO [22219]: COREGRADE is stopping... -- 11:23:12.154 DEBUG [22219]: Closing database connection -- 11:23:12.154 SQL [22219]: pgsql_close() -- 11:23:33.005 INFO [20618]: COREGRADE is starting... -- 11:23:33.006 INFO [20618]: Version from config: 1.0 -- 11:23:33.006 DEBUG [20618]: Connecting to database... -- 11:23:33.006 DEBUG [20618]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:23:33.006 SQL [20618]: pgsql_db_connect() -- 11:23:33.010 DEBUG [20618]: Database connection successful -- 11:23:33.010 INFO [20618]: _SERVER found -- 11:23:33.010 INFO [20618]: REMOTE_ADDR = 192.168.1.13 -- 11:23:33.010 INFO [20618]: SERVER_NAME = oameye.works.coregrade.com -- 11:23:33.010 INFO [20618]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:23:33.010 INFO [20618]: QUERY_STRING = /member/configure -- 11:23:33.010 INFO [20618]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:23:33.049 INFO [20618]: COREGRADE is stopping... -- 11:23:33.049 DEBUG [20618]: Closing database connection -- 11:23:33.049 SQL [20618]: pgsql_close() -- 11:23:33.147 INFO [20618]: COREGRADE is starting... -- 11:23:33.148 INFO [20618]: Version from config: 1.0 -- 11:23:33.148 DEBUG [20618]: Connecting to database... -- 11:23:33.148 DEBUG [20618]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:23:33.148 SQL [20618]: pgsql_db_connect() -- 11:23:33.152 DEBUG [20618]: Database connection successful -- 11:23:33.152 INFO [20618]: _SERVER found -- 11:23:33.152 INFO [20618]: REMOTE_ADDR = 192.168.1.13 -- 11:23:33.152 INFO [20618]: SERVER_NAME = oameye.works.coregrade.com -- 11:23:33.152 INFO [20618]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:23:33.152 INFO [20618]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:23:33.152 INFO [20618]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:23:33.163 INFO [20618]: COREGRADE is stopping... -- 11:23:33.163 DEBUG [20618]: Closing database connection -- 11:23:33.163 SQL [20618]: pgsql_close() -- 11:23:33.266 INFO [20618]: COREGRADE is starting... -- 11:23:33.266 INFO [20618]: Version from config: 1.0 -- 11:23:33.266 DEBUG [20618]: Connecting to database... -- 11:23:33.266 DEBUG [20618]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:23:33.266 SQL [20618]: pgsql_db_connect() -- 11:23:33.270 DEBUG [20618]: Database connection successful -- 11:23:33.270 INFO [20618]: _SERVER found -- 11:23:33.270 INFO [20618]: REMOTE_ADDR = 192.168.1.13 -- 11:23:33.270 INFO [20618]: SERVER_NAME = oameye.works.coregrade.com -- 11:23:33.270 INFO [20618]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:23:33.270 INFO [20618]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:23:33.270 INFO [20618]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:23:33.281 INFO [20618]: COREGRADE is stopping... -- 11:23:33.281 DEBUG [20618]: Closing database connection -- 11:23:33.281 SQL [20618]: pgsql_close() -- 11:23:57.186 INFO [22438]: COREGRADE is starting... -- 11:23:57.187 INFO [22438]: Version from config: 1.0 -- 11:23:57.187 DEBUG [22438]: Connecting to database... -- 11:23:57.187 DEBUG [22438]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:23:57.187 SQL [22438]: pgsql_db_connect() -- 11:23:57.191 DEBUG [22438]: Database connection successful -- 11:23:57.191 INFO [22438]: _SERVER found -- 11:23:57.191 INFO [22438]: REMOTE_ADDR = 192.168.1.13 -- 11:23:57.191 INFO [22438]: SERVER_NAME = oameye.works.coregrade.com -- 11:23:57.191 INFO [22438]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:23:57.191 INFO [22438]: QUERY_STRING = /member/configure -- 11:23:57.191 INFO [22438]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:23:57.226 INFO [22438]: COREGRADE is stopping... -- 11:23:57.226 DEBUG [22438]: Closing database connection -- 11:23:57.226 SQL [22438]: pgsql_close() -- 11:23:57.337 INFO [22438]: COREGRADE is starting... -- 11:23:57.337 INFO [22438]: Version from config: 1.0 -- 11:23:57.337 DEBUG [22438]: Connecting to database... -- 11:23:57.337 DEBUG [22438]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:23:57.337 SQL [22438]: pgsql_db_connect() -- 11:23:57.341 DEBUG [22438]: Database connection successful -- 11:23:57.341 INFO [22438]: _SERVER found -- 11:23:57.341 INFO [22438]: REMOTE_ADDR = 192.168.1.13 -- 11:23:57.341 INFO [22438]: SERVER_NAME = oameye.works.coregrade.com -- 11:23:57.341 INFO [22438]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:23:57.341 INFO [22438]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:23:57.341 INFO [22438]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:23:57.352 INFO [22438]: COREGRADE is stopping... -- 11:23:57.352 DEBUG [22438]: Closing database connection -- 11:23:57.352 SQL [22438]: pgsql_close() -- 11:23:57.459 INFO [22438]: COREGRADE is starting... -- 11:23:57.459 INFO [22438]: Version from config: 1.0 -- 11:23:57.459 DEBUG [22438]: Connecting to database... -- 11:23:57.459 DEBUG [22438]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:23:57.459 SQL [22438]: pgsql_db_connect() -- 11:23:57.463 DEBUG [22438]: Database connection successful -- 11:23:57.463 INFO [22438]: _SERVER found -- 11:23:57.463 INFO [22438]: REMOTE_ADDR = 192.168.1.13 -- 11:23:57.463 INFO [22438]: SERVER_NAME = oameye.works.coregrade.com -- 11:23:57.463 INFO [22438]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:23:57.463 INFO [22438]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:23:57.463 INFO [22438]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:23:57.474 INFO [22438]: COREGRADE is stopping... -- 11:23:57.474 DEBUG [22438]: Closing database connection -- 11:23:57.474 SQL [22438]: pgsql_close() -- 11:25:13.847 INFO [22349]: COREGRADE is starting... -- 11:25:13.847 INFO [22349]: Version from config: 1.0 -- 11:25:13.847 DEBUG [22349]: Connecting to database... -- 11:25:13.847 DEBUG [22349]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:25:13.847 SQL [22349]: pgsql_db_connect() -- 11:25:13.851 DEBUG [22349]: Database connection successful -- 11:25:13.851 INFO [22349]: _SERVER found -- 11:25:13.851 INFO [22349]: REMOTE_ADDR = 192.168.1.13 -- 11:25:13.851 INFO [22349]: SERVER_NAME = oameye.works.coregrade.com -- 11:25:13.851 INFO [22349]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:25:13.851 INFO [22349]: QUERY_STRING = /member/configure -- 11:25:13.851 INFO [22349]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:25:13.886 INFO [22349]: COREGRADE is stopping... -- 11:25:13.887 DEBUG [22349]: Closing database connection -- 11:25:13.887 SQL [22349]: pgsql_close() -- 11:25:14.045 INFO [22349]: COREGRADE is starting... -- 11:25:14.045 INFO [22349]: Version from config: 1.0 -- 11:25:14.045 DEBUG [22349]: Connecting to database... -- 11:25:14.045 DEBUG [22349]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:25:14.045 SQL [22349]: pgsql_db_connect() -- 11:25:14.050 DEBUG [22349]: Database connection successful -- 11:25:14.050 INFO [22349]: _SERVER found -- 11:25:14.050 INFO [22349]: REMOTE_ADDR = 192.168.1.13 -- 11:25:14.050 INFO [22349]: SERVER_NAME = oameye.works.coregrade.com -- 11:25:14.050 INFO [22349]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:25:14.050 INFO [22349]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:25:14.050 INFO [22349]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:25:14.061 INFO [22349]: COREGRADE is stopping... -- 11:25:14.061 DEBUG [22349]: Closing database connection -- 11:25:14.061 SQL [22349]: pgsql_close() -- 11:25:14.183 INFO [22349]: COREGRADE is starting... -- 11:25:14.183 INFO [22349]: Version from config: 1.0 -- 11:25:14.183 DEBUG [22349]: Connecting to database... -- 11:25:14.183 DEBUG [22349]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:25:14.183 SQL [22349]: pgsql_db_connect() -- 11:25:14.187 DEBUG [22349]: Database connection successful -- 11:25:14.187 INFO [22349]: _SERVER found -- 11:25:14.187 INFO [22349]: REMOTE_ADDR = 192.168.1.13 -- 11:25:14.187 INFO [22349]: SERVER_NAME = oameye.works.coregrade.com -- 11:25:14.187 INFO [22349]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:25:14.187 INFO [22349]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:25:14.187 INFO [22349]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:25:14.198 INFO [22349]: COREGRADE is stopping... -- 11:25:14.198 DEBUG [22349]: Closing database connection -- 11:25:14.198 SQL [22349]: pgsql_close() -- 11:25:29.663 INFO [20673]: COREGRADE is starting... -- 11:25:29.663 INFO [20673]: Version from config: 1.0 -- 11:25:29.663 DEBUG [20673]: Connecting to database... -- 11:25:29.663 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:25:29.663 SQL [20673]: pgsql_db_connect() -- 11:25:29.667 DEBUG [20673]: Database connection successful -- 11:25:29.667 INFO [20673]: _SERVER found -- 11:25:29.667 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 11:25:29.667 INFO [20673]: SERVER_NAME = oameye.works.coregrade.com -- 11:25:29.667 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:25:29.667 INFO [20673]: QUERY_STRING = /member -- 11:25:29.667 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:25:29.702 INFO [20673]: COREGRADE is stopping... -- 11:25:29.702 DEBUG [20673]: Closing database connection -- 11:25:29.702 SQL [20673]: pgsql_close() -- 11:25:29.858 INFO [20673]: COREGRADE is starting... -- 11:25:29.858 INFO [20673]: Version from config: 1.0 -- 11:25:29.858 DEBUG [20673]: Connecting to database... -- 11:25:29.858 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:25:29.858 SQL [20673]: pgsql_db_connect() -- 11:25:29.862 DEBUG [20673]: Database connection successful -- 11:25:29.862 INFO [20673]: _SERVER found -- 11:25:29.862 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 11:25:29.862 INFO [20673]: SERVER_NAME = oameye.works.coregrade.com -- 11:25:29.862 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:25:29.862 INFO [20673]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:25:29.862 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:25:29.874 INFO [20673]: COREGRADE is stopping... -- 11:25:29.874 DEBUG [20673]: Closing database connection -- 11:25:29.874 SQL [20673]: pgsql_close() -- 11:25:29.877 INFO [20673]: COREGRADE is starting... -- 11:25:29.877 INFO [20673]: Version from config: 1.0 -- 11:25:29.877 DEBUG [20673]: Connecting to database... -- 11:25:29.877 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:25:29.877 SQL [20673]: pgsql_db_connect() -- 11:25:29.881 DEBUG [20673]: Database connection successful -- 11:25:29.881 INFO [20673]: _SERVER found -- 11:25:29.881 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 11:25:29.881 INFO [20673]: SERVER_NAME = oameye.works.coregrade.com -- 11:25:29.881 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:25:29.881 INFO [20673]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:25:29.881 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:25:29.892 INFO [20673]: COREGRADE is stopping... -- 11:25:29.892 DEBUG [20673]: Closing database connection -- 11:25:29.892 SQL [20673]: pgsql_close() -- 11:25:30.057 INFO [20673]: COREGRADE is starting... -- 11:25:30.058 INFO [20673]: Version from config: 1.0 -- 11:25:30.058 DEBUG [20673]: Connecting to database... -- 11:25:30.058 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:25:30.058 SQL [20673]: pgsql_db_connect() -- 11:25:30.062 DEBUG [20673]: Database connection successful -- 11:25:30.062 INFO [20673]: _SERVER found -- 11:25:30.062 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 11:25:30.062 INFO [20673]: SERVER_NAME = oameye.works.coregrade.com -- 11:25:30.062 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:25:30.062 INFO [20673]: QUERY_STRING = /member/configure -- 11:25:30.062 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:25:30.096 INFO [20673]: COREGRADE is stopping... -- 11:25:30.096 DEBUG [20673]: Closing database connection -- 11:25:30.096 SQL [20673]: pgsql_close() -- 11:25:30.207 INFO [20673]: COREGRADE is starting... -- 11:25:30.207 INFO [20673]: Version from config: 1.0 -- 11:25:30.207 DEBUG [20673]: Connecting to database... -- 11:25:30.207 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:25:30.207 SQL [20673]: pgsql_db_connect() -- 11:25:30.211 DEBUG [20673]: Database connection successful -- 11:25:30.211 INFO [20673]: _SERVER found -- 11:25:30.211 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 11:25:30.211 INFO [20673]: SERVER_NAME = oameye.works.coregrade.com -- 11:25:30.211 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:25:30.211 INFO [20673]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:25:30.211 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:25:30.222 INFO [20673]: COREGRADE is stopping... -- 11:25:30.222 DEBUG [20673]: Closing database connection -- 11:25:30.222 SQL [20673]: pgsql_close() -- 11:25:30.307 INFO [20673]: COREGRADE is starting... -- 11:25:30.307 INFO [20673]: Version from config: 1.0 -- 11:25:30.307 DEBUG [20673]: Connecting to database... -- 11:25:30.307 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:25:30.307 SQL [20673]: pgsql_db_connect() -- 11:25:30.311 DEBUG [20673]: Database connection successful -- 11:25:30.311 INFO [20673]: _SERVER found -- 11:25:30.311 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 11:25:30.311 INFO [20673]: SERVER_NAME = oameye.works.coregrade.com -- 11:25:30.311 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:25:30.311 INFO [20673]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:25:30.311 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:25:30.322 INFO [20673]: COREGRADE is stopping... -- 11:25:30.322 DEBUG [20673]: Closing database connection -- 11:25:30.322 SQL [20673]: pgsql_close() -- 11:25:33.510 INFO [20673]: COREGRADE is starting... -- 11:25:33.511 INFO [20673]: Version from config: 1.0 -- 11:25:33.511 DEBUG [20673]: Connecting to database... -- 11:25:33.511 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:25:33.511 SQL [20673]: pgsql_db_connect() -- 11:25:33.515 DEBUG [20673]: Database connection successful -- 11:25:33.515 INFO [20673]: _SERVER found -- 11:25:33.515 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 11:25:33.515 INFO [20673]: SERVER_NAME = oameye.works.coregrade.com -- 11:25:33.515 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:25:33.515 INFO [20673]: QUERY_STRING = /member -- 11:25:33.515 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:25:33.549 INFO [20673]: COREGRADE is stopping... -- 11:25:33.550 DEBUG [20673]: Closing database connection -- 11:25:33.550 SQL [20673]: pgsql_close() -- 11:25:33.667 INFO [20673]: COREGRADE is starting... -- 11:25:33.667 INFO [20673]: Version from config: 1.0 -- 11:25:33.667 DEBUG [20673]: Connecting to database... -- 11:25:33.668 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:25:33.668 SQL [20673]: pgsql_db_connect() -- 11:25:33.671 DEBUG [20673]: Database connection successful -- 11:25:33.671 INFO [20673]: _SERVER found -- 11:25:33.671 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 11:25:33.671 INFO [20673]: SERVER_NAME = oameye.works.coregrade.com -- 11:25:33.671 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:25:33.671 INFO [20673]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:25:33.671 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:25:33.682 INFO [20673]: COREGRADE is stopping... -- 11:25:33.682 DEBUG [20673]: Closing database connection -- 11:25:33.682 SQL [20673]: pgsql_close() -- 11:25:34.692 INFO [20673]: COREGRADE is starting... -- 11:25:34.693 INFO [20673]: Version from config: 1.0 -- 11:25:34.693 DEBUG [20673]: Connecting to database... -- 11:25:34.693 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:25:34.693 SQL [20673]: pgsql_db_connect() -- 11:25:34.697 DEBUG [20673]: Database connection successful -- 11:25:34.697 INFO [20673]: _SERVER found -- 11:25:34.697 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 11:25:34.697 INFO [20673]: SERVER_NAME = oameye.works.coregrade.com -- 11:25:34.697 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:25:34.697 INFO [20673]: QUERY_STRING = /member/page -- 11:25:34.697 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:25:34.732 INFO [20673]: COREGRADE is stopping... -- 11:25:34.732 DEBUG [20673]: Closing database connection -- 11:25:34.732 SQL [20673]: pgsql_close() -- 11:25:34.892 INFO [20673]: COREGRADE is starting... -- 11:25:34.892 INFO [20673]: Version from config: 1.0 -- 11:25:34.892 DEBUG [20673]: Connecting to database... -- 11:25:34.892 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:25:34.892 SQL [20673]: pgsql_db_connect() -- 11:25:34.896 DEBUG [20673]: Database connection successful -- 11:25:34.896 INFO [20673]: _SERVER found -- 11:25:34.896 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 11:25:34.896 INFO [20673]: SERVER_NAME = oameye.works.coregrade.com -- 11:25:34.896 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:25:34.896 INFO [20673]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:25:34.896 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:25:34.907 INFO [20673]: COREGRADE is stopping... -- 11:25:34.907 DEBUG [20673]: Closing database connection -- 11:25:34.907 SQL [20673]: pgsql_close() -- 11:25:37.320 INFO [20673]: COREGRADE is starting... -- 11:25:37.320 INFO [20673]: Version from config: 1.0 -- 11:25:37.320 DEBUG [20673]: Connecting to database... -- 11:25:37.321 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:25:37.321 SQL [20673]: pgsql_db_connect() -- 11:25:37.325 DEBUG [20673]: Database connection successful -- 11:25:37.325 INFO [20673]: _SERVER found -- 11:25:37.325 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 11:25:37.325 INFO [20673]: SERVER_NAME = oameye.works.coregrade.com -- 11:25:37.325 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:25:37.325 INFO [20673]: QUERY_STRING = /member -- 11:25:37.325 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:25:37.359 INFO [20673]: COREGRADE is stopping... -- 11:25:37.359 DEBUG [20673]: Closing database connection -- 11:25:37.359 SQL [20673]: pgsql_close() -- 11:25:37.482 INFO [20673]: COREGRADE is starting... -- 11:25:37.483 INFO [20673]: Version from config: 1.0 -- 11:25:37.483 DEBUG [20673]: Connecting to database... -- 11:25:37.483 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:25:37.483 SQL [20673]: pgsql_db_connect() -- 11:25:37.487 DEBUG [20673]: Database connection successful -- 11:25:37.487 INFO [20673]: _SERVER found -- 11:25:37.487 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 11:25:37.487 INFO [20673]: SERVER_NAME = oameye.works.coregrade.com -- 11:25:37.487 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:25:37.487 INFO [20673]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:25:37.487 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:25:37.498 INFO [20673]: COREGRADE is stopping... -- 11:25:37.498 DEBUG [20673]: Closing database connection -- 11:25:37.498 SQL [20673]: pgsql_close() -- 11:25:38.347 INFO [20673]: COREGRADE is starting... -- 11:25:38.347 INFO [20673]: Version from config: 1.0 -- 11:25:38.347 DEBUG [20673]: Connecting to database... -- 11:25:38.347 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:25:38.347 SQL [20673]: pgsql_db_connect() -- 11:25:38.351 DEBUG [20673]: Database connection successful -- 11:25:38.351 INFO [20673]: _SERVER found -- 11:25:38.351 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 11:25:38.351 INFO [20673]: SERVER_NAME = oameye.works.coregrade.com -- 11:25:38.351 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:25:38.351 INFO [20673]: QUERY_STRING = /member/page -- 11:25:38.351 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:25:38.387 INFO [20673]: COREGRADE is stopping... -- 11:25:38.387 DEBUG [20673]: Closing database connection -- 11:25:38.387 SQL [20673]: pgsql_close() -- 11:25:38.544 INFO [20673]: COREGRADE is starting... -- 11:25:38.544 INFO [20673]: Version from config: 1.0 -- 11:25:38.544 DEBUG [20673]: Connecting to database... -- 11:25:38.544 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:25:38.544 SQL [20673]: pgsql_db_connect() -- 11:25:38.548 DEBUG [20673]: Database connection successful -- 11:25:38.548 INFO [20673]: _SERVER found -- 11:25:38.548 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 11:25:38.548 INFO [20673]: SERVER_NAME = oameye.works.coregrade.com -- 11:25:38.548 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:25:38.548 INFO [20673]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:25:38.548 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:25:38.560 INFO [20673]: COREGRADE is stopping... -- 11:25:38.560 DEBUG [20673]: Closing database connection -- 11:25:38.560 SQL [20673]: pgsql_close() -- 11:26:13.746 INFO [20615]: COREGRADE is starting... -- 11:26:13.746 INFO [20615]: Version from config: 1.0 -- 11:26:13.746 DEBUG [20615]: Connecting to database... -- 11:26:13.746 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:26:13.746 SQL [20615]: pgsql_db_connect() -- 11:26:13.750 DEBUG [20615]: Database connection successful -- 11:26:13.750 INFO [20615]: _SERVER found -- 11:26:13.750 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:26:13.750 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:26:13.750 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:26:13.750 INFO [20615]: QUERY_STRING = /member -- 11:26:13.750 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:26:13.788 INFO [20615]: COREGRADE is stopping... -- 11:26:13.788 DEBUG [20615]: Closing database connection -- 11:26:13.788 SQL [20615]: pgsql_close() -- 11:26:14.011 INFO [20615]: COREGRADE is starting... -- 11:26:14.011 INFO [20615]: Version from config: 1.0 -- 11:26:14.011 DEBUG [20615]: Connecting to database... -- 11:26:14.011 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:26:14.011 SQL [20615]: pgsql_db_connect() -- 11:26:14.015 DEBUG [20615]: Database connection successful -- 11:26:14.015 INFO [20615]: _SERVER found -- 11:26:14.015 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:26:14.015 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:26:14.015 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:26:14.015 INFO [20615]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:26:14.015 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:26:14.027 INFO [20615]: COREGRADE is stopping... -- 11:26:14.027 DEBUG [20615]: Closing database connection -- 11:26:14.027 SQL [20615]: pgsql_close() -- 11:26:15.448 INFO [20615]: COREGRADE is starting... -- 11:26:15.448 INFO [20615]: Version from config: 1.0 -- 11:26:15.448 DEBUG [20615]: Connecting to database... -- 11:26:15.448 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:26:15.448 SQL [20615]: pgsql_db_connect() -- 11:26:15.452 DEBUG [20615]: Database connection successful -- 11:26:15.452 INFO [20615]: _SERVER found -- 11:26:15.452 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:26:15.452 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:26:15.452 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:26:15.452 INFO [20615]: QUERY_STRING = /member/page -- 11:26:15.452 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:26:15.491 INFO [20615]: COREGRADE is stopping... -- 11:26:15.491 DEBUG [20615]: Closing database connection -- 11:26:15.491 SQL [20615]: pgsql_close() -- 11:26:15.592 INFO [20615]: COREGRADE is starting... -- 11:26:15.592 INFO [20615]: Version from config: 1.0 -- 11:26:15.592 DEBUG [20615]: Connecting to database... -- 11:26:15.592 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:26:15.592 SQL [20615]: pgsql_db_connect() -- 11:26:15.596 DEBUG [20615]: Database connection successful -- 11:26:15.596 INFO [20615]: _SERVER found -- 11:26:15.596 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:26:15.596 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:26:15.596 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:26:15.596 INFO [20615]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:26:15.596 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:26:15.607 INFO [20615]: COREGRADE is stopping... -- 11:26:15.607 DEBUG [20615]: Closing database connection -- 11:26:15.607 SQL [20615]: pgsql_close() -- 11:26:15.715 INFO [20615]: COREGRADE is starting... -- 11:26:15.715 INFO [20615]: Version from config: 1.0 -- 11:26:15.715 DEBUG [20615]: Connecting to database... -- 11:26:15.715 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:26:15.715 SQL [20615]: pgsql_db_connect() -- 11:26:15.720 DEBUG [20615]: Database connection successful -- 11:26:15.720 INFO [20615]: _SERVER found -- 11:26:15.720 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:26:15.720 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:26:15.720 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:26:15.720 INFO [20615]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:26:15.720 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:26:15.731 INFO [20615]: COREGRADE is stopping... -- 11:26:15.731 DEBUG [20615]: Closing database connection -- 11:26:15.731 SQL [20615]: pgsql_close() -- 11:26:17.502 INFO [20615]: COREGRADE is starting... -- 11:26:17.502 INFO [20615]: Version from config: 1.0 -- 11:26:17.502 DEBUG [20615]: Connecting to database... -- 11:26:17.502 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:26:17.502 SQL [20615]: pgsql_db_connect() -- 11:26:17.506 DEBUG [20615]: Database connection successful -- 11:26:17.506 INFO [20615]: _SERVER found -- 11:26:17.506 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:26:17.506 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:26:17.506 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:26:17.506 INFO [20615]: QUERY_STRING = /member -- 11:26:17.506 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:26:17.543 INFO [20615]: COREGRADE is stopping... -- 11:26:17.543 DEBUG [20615]: Closing database connection -- 11:26:17.543 SQL [20615]: pgsql_close() -- 11:26:17.721 INFO [20615]: COREGRADE is starting... -- 11:26:17.721 INFO [20615]: Version from config: 1.0 -- 11:26:17.721 DEBUG [20615]: Connecting to database... -- 11:26:17.721 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:26:17.721 SQL [20615]: pgsql_db_connect() -- 11:26:17.725 DEBUG [20615]: Database connection successful -- 11:26:17.725 INFO [20615]: _SERVER found -- 11:26:17.725 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:26:17.725 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:26:17.725 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:26:17.725 INFO [20615]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:26:17.725 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:26:17.737 INFO [20615]: COREGRADE is stopping... -- 11:26:17.737 DEBUG [20615]: Closing database connection -- 11:26:17.737 SQL [20615]: pgsql_close() -- 11:26:18.917 INFO [20615]: COREGRADE is starting... -- 11:26:18.917 INFO [20615]: Version from config: 1.0 -- 11:26:18.917 DEBUG [20615]: Connecting to database... -- 11:26:18.917 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:26:18.917 SQL [20615]: pgsql_db_connect() -- 11:26:18.922 DEBUG [20615]: Database connection successful -- 11:26:18.922 INFO [20615]: _SERVER found -- 11:26:18.922 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:26:18.922 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:26:18.922 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nj2r0eq8tasddla244k8mvnq4ihiv2l4 -- 11:26:18.922 INFO [20615]: QUERY_STRING = /member/page -- 11:26:18.922 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:26:18.960 INFO [20615]: COREGRADE is stopping... -- 11:26:18.960 DEBUG [20615]: Closing database connection -- 11:26:18.960 SQL [20615]: pgsql_close() -- 11:26:19.103 INFO [20615]: COREGRADE is starting... -- 11:26:19.103 INFO [20615]: Version from config: 1.0 -- 11:26:19.103 DEBUG [20615]: Connecting to database... -- 11:26:19.103 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:26:19.103 SQL [20615]: pgsql_db_connect() -- 11:26:19.107 DEBUG [20615]: Database connection successful -- 11:26:19.107 INFO [20615]: _SERVER found -- 11:26:19.107 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:26:19.107 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:26:19.107 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=k2d90kmqc1031iuljmonu4icjpca61bo -- 11:26:19.107 INFO [20615]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:26:19.107 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:26:19.118 INFO [20615]: COREGRADE is stopping... -- 11:26:19.118 DEBUG [20615]: Closing database connection -- 11:26:19.118 SQL [20615]: pgsql_close() -- 11:26:21.308 INFO [20615]: COREGRADE is starting... -- 11:26:21.308 INFO [20615]: Version from config: 1.0 -- 11:26:21.308 DEBUG [20615]: Connecting to database... -- 11:26:21.308 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:26:21.308 SQL [20615]: pgsql_db_connect() -- 11:26:21.312 DEBUG [20615]: Database connection successful -- 11:26:21.312 INFO [20615]: _SERVER found -- 11:26:21.312 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:26:21.312 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:26:21.312 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=k2d90kmqc1031iuljmonu4icjpca61bo -- 11:26:21.312 INFO [20615]: QUERY_STRING = /member/viewCardAddAction -- 11:26:21.312 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:26:21.345 INFO [20615]: COREGRADE is stopping... -- 11:26:21.345 DEBUG [20615]: Closing database connection -- 11:26:21.345 SQL [20615]: pgsql_close() -- 11:26:22.185 INFO [20615]: COREGRADE is starting... -- 11:26:22.185 INFO [20615]: Version from config: 1.0 -- 11:26:22.185 DEBUG [20615]: Connecting to database... -- 11:26:22.185 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:26:22.185 SQL [20615]: pgsql_db_connect() -- 11:26:22.189 DEBUG [20615]: Database connection successful -- 11:26:22.189 INFO [20615]: _SERVER found -- 11:26:22.189 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:26:22.189 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:26:22.189 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=k2d90kmqc1031iuljmonu4icjpca61bo -- 11:26:22.189 INFO [20615]: QUERY_STRING = /member/viewCardAddAction -- 11:26:22.189 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:26:22.220 INFO [20615]: COREGRADE is stopping... -- 11:26:22.220 DEBUG [20615]: Closing database connection -- 11:26:22.220 SQL [20615]: pgsql_close() -- 11:26:25.205 INFO [20615]: COREGRADE is starting... -- 11:26:25.205 INFO [20615]: Version from config: 1.0 -- 11:26:25.205 DEBUG [20615]: Connecting to database... -- 11:26:25.205 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:26:25.205 SQL [20615]: pgsql_db_connect() -- 11:26:25.209 DEBUG [20615]: Database connection successful -- 11:26:25.209 INFO [20615]: _SERVER found -- 11:26:25.209 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:26:25.209 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:26:25.209 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=k2d90kmqc1031iuljmonu4icjpca61bo -- 11:26:25.209 INFO [20615]: QUERY_STRING = /member/page -- 11:26:25.209 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:26:25.246 INFO [20615]: COREGRADE is stopping... -- 11:26:25.246 DEBUG [20615]: Closing database connection -- 11:26:25.246 SQL [20615]: pgsql_close() -- 11:26:25.422 INFO [20615]: COREGRADE is starting... -- 11:26:25.423 INFO [20615]: Version from config: 1.0 -- 11:26:25.423 DEBUG [20615]: Connecting to database... -- 11:26:25.423 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:26:25.423 SQL [20615]: pgsql_db_connect() -- 11:26:25.427 DEBUG [20615]: Database connection successful -- 11:26:25.427 INFO [20615]: _SERVER found -- 11:26:25.427 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:26:25.427 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:26:25.427 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=k2d90kmqc1031iuljmonu4icjpca61bo -- 11:26:25.427 INFO [20615]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:26:25.427 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:26:25.438 INFO [20615]: COREGRADE is stopping... -- 11:26:25.438 DEBUG [20615]: Closing database connection -- 11:26:25.438 SQL [20615]: pgsql_close() -- 11:26:47.847 INFO [20616]: COREGRADE is starting... -- 11:26:47.848 INFO [20616]: Version from config: 1.0 -- 11:26:47.848 DEBUG [20616]: Connecting to database... -- 11:26:47.848 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:26:47.848 SQL [20616]: pgsql_db_connect() -- 11:26:47.852 DEBUG [20616]: Database connection successful -- 11:26:47.852 INFO [20616]: _SERVER found -- 11:26:47.852 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 11:26:47.852 INFO [20616]: SERVER_NAME = oameye.works.coregrade.com -- 11:26:47.852 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=k2d90kmqc1031iuljmonu4icjpca61bo -- 11:26:47.852 INFO [20616]: QUERY_STRING = /auth -- 11:26:47.852 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:26:47.883 INFO [20616]: COREGRADE is stopping... -- 11:26:47.883 DEBUG [20616]: Closing database connection -- 11:26:47.883 SQL [20616]: pgsql_close() -- 11:26:48.008 INFO [20616]: COREGRADE is starting... -- 11:26:48.008 INFO [20616]: Version from config: 1.0 -- 11:26:48.008 DEBUG [20616]: Connecting to database... -- 11:26:48.008 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:26:48.008 SQL [20616]: pgsql_db_connect() -- 11:26:48.012 DEBUG [20616]: Database connection successful -- 11:26:48.012 INFO [20616]: _SERVER found -- 11:26:48.012 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 11:26:48.012 INFO [20616]: SERVER_NAME = oameye.works.coregrade.com -- 11:26:48.012 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=k2d90kmqc1031iuljmonu4icjpca61bo -- 11:26:48.012 INFO [20616]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:26:48.012 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:26:48.023 INFO [20616]: COREGRADE is stopping... -- 11:26:48.023 DEBUG [20616]: Closing database connection -- 11:26:48.023 SQL [20616]: pgsql_close() -- 11:26:48.710 INFO [20616]: COREGRADE is starting... -- 11:26:48.710 INFO [20616]: Version from config: 1.0 -- 11:26:48.710 DEBUG [20616]: Connecting to database... -- 11:26:48.710 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:26:48.710 SQL [20616]: pgsql_db_connect() -- 11:26:48.714 DEBUG [20616]: Database connection successful -- 11:26:48.714 INFO [20616]: _SERVER found -- 11:26:48.714 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 11:26:48.714 INFO [20616]: SERVER_NAME = oameye.works.coregrade.com -- 11:26:48.714 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=k2d90kmqc1031iuljmonu4icjpca61bo -- 11:26:48.714 INFO [20616]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:26:48.714 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:26:48.725 INFO [20616]: COREGRADE is stopping... -- 11:26:48.725 DEBUG [20616]: Closing database connection -- 11:26:48.725 SQL [20616]: pgsql_close() -- 11:28:53.842 INFO [20672]: COREGRADE is starting... -- 11:28:53.843 INFO [20672]: Version from config: 1.0 -- 11:28:53.843 DEBUG [20672]: Connecting to database... -- 11:28:53.843 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:28:53.843 SQL [20672]: pgsql_db_connect() -- 11:28:53.846 DEBUG [20672]: Database connection successful -- 11:28:53.846 INFO [20672]: _SERVER found -- 11:28:53.846 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 11:28:53.846 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 11:28:53.846 INFO [20672]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=k2d90kmqc1031iuljmonu4icjpca61bo -- 11:28:53.846 INFO [20672]: QUERY_STRING = /member/viewCardAddAction -- 11:28:53.846 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:28:53.878 INFO [20672]: COREGRADE is stopping... -- 11:28:53.878 DEBUG [20672]: Closing database connection -- 11:28:53.878 SQL [20672]: pgsql_close() -- 11:31:10.568 INFO [20617]: COREGRADE is starting... -- 11:31:10.568 INFO [20617]: Version from config: 1.0 -- 11:31:10.568 DEBUG [20617]: Connecting to database... -- 11:31:10.568 DEBUG [20617]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:31:10.568 SQL [20617]: pgsql_db_connect() -- 11:31:10.572 DEBUG [20617]: Database connection successful -- 11:31:10.572 INFO [20617]: _SERVER found -- 11:31:10.572 INFO [20617]: REMOTE_ADDR = 192.168.1.13 -- 11:31:10.572 INFO [20617]: SERVER_NAME = oameye.works.coregrade.com -- 11:31:10.572 INFO [20617]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=k2d90kmqc1031iuljmonu4icjpca61bo -- 11:31:10.572 INFO [20617]: QUERY_STRING = /member/page -- 11:31:10.572 INFO [20617]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:31:10.610 INFO [20617]: COREGRADE is stopping... -- 11:31:10.610 DEBUG [20617]: Closing database connection -- 11:31:10.610 SQL [20617]: pgsql_close() -- 11:31:10.722 INFO [20617]: COREGRADE is starting... -- 11:31:10.722 INFO [20617]: Version from config: 1.0 -- 11:31:10.722 DEBUG [20617]: Connecting to database... -- 11:31:10.722 DEBUG [20617]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:31:10.722 SQL [20617]: pgsql_db_connect() -- 11:31:10.726 DEBUG [20617]: Database connection successful -- 11:31:10.726 INFO [20617]: _SERVER found -- 11:31:10.726 INFO [20617]: REMOTE_ADDR = 192.168.1.13 -- 11:31:10.726 INFO [20617]: SERVER_NAME = oameye.works.coregrade.com -- 11:31:10.726 INFO [20617]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=k2d90kmqc1031iuljmonu4icjpca61bo -- 11:31:10.726 INFO [20617]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:31:10.726 INFO [20617]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:31:10.738 INFO [20617]: COREGRADE is stopping... -- 11:31:10.738 DEBUG [20617]: Closing database connection -- 11:31:10.738 SQL [20617]: pgsql_close() -- 11:31:10.853 INFO [20617]: COREGRADE is starting... -- 11:31:10.854 INFO [20617]: Version from config: 1.0 -- 11:31:10.854 DEBUG [20617]: Connecting to database... -- 11:31:10.854 DEBUG [20617]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:31:10.854 SQL [20617]: pgsql_db_connect() -- 11:31:10.858 DEBUG [20617]: Database connection successful -- 11:31:10.858 INFO [20617]: _SERVER found -- 11:31:10.858 INFO [20617]: REMOTE_ADDR = 192.168.1.13 -- 11:31:10.858 INFO [20617]: SERVER_NAME = oameye.works.coregrade.com -- 11:31:10.858 INFO [20617]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=k2d90kmqc1031iuljmonu4icjpca61bo -- 11:31:10.858 INFO [20617]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:31:10.858 INFO [20617]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:31:10.869 INFO [20617]: COREGRADE is stopping... -- 11:31:10.869 DEBUG [20617]: Closing database connection -- 11:31:10.869 SQL [20617]: pgsql_close() -- 11:31:12.016 INFO [20617]: COREGRADE is starting... -- 11:31:12.017 INFO [20617]: Version from config: 1.0 -- 11:31:12.017 DEBUG [20617]: Connecting to database... -- 11:31:12.017 DEBUG [20617]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:31:12.017 SQL [20617]: pgsql_db_connect() -- 11:31:12.021 DEBUG [20617]: Database connection successful -- 11:31:12.021 INFO [20617]: _SERVER found -- 11:31:12.021 INFO [20617]: REMOTE_ADDR = 192.168.1.13 -- 11:31:12.021 INFO [20617]: SERVER_NAME = oameye.works.coregrade.com -- 11:31:12.021 INFO [20617]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=k2d90kmqc1031iuljmonu4icjpca61bo -- 11:31:12.021 INFO [20617]: QUERY_STRING = /member/viewCardAddAction -- 11:31:12.021 INFO [20617]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:31:12.051 INFO [20617]: COREGRADE is stopping... -- 11:31:12.051 DEBUG [20617]: Closing database connection -- 11:31:12.051 SQL [20617]: pgsql_close() -- 11:31:12.923 INFO [20617]: COREGRADE is starting... -- 11:31:12.924 INFO [20617]: Version from config: 1.0 -- 11:31:12.924 DEBUG [20617]: Connecting to database... -- 11:31:12.924 DEBUG [20617]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:31:12.924 SQL [20617]: pgsql_db_connect() -- 11:31:12.928 DEBUG [20617]: Database connection successful -- 11:31:12.928 INFO [20617]: _SERVER found -- 11:31:12.928 INFO [20617]: REMOTE_ADDR = 192.168.1.13 -- 11:31:12.928 INFO [20617]: SERVER_NAME = oameye.works.coregrade.com -- 11:31:12.928 INFO [20617]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=k2d90kmqc1031iuljmonu4icjpca61bo -- 11:31:12.928 INFO [20617]: QUERY_STRING = /member/viewCardAddAction -- 11:31:12.928 INFO [20617]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:31:12.958 INFO [20617]: COREGRADE is stopping... -- 11:31:12.958 DEBUG [20617]: Closing database connection -- 11:31:12.958 SQL [20617]: pgsql_close() -- 11:31:14.139 INFO [20617]: COREGRADE is starting... -- 11:31:14.139 INFO [20617]: Version from config: 1.0 -- 11:31:14.139 DEBUG [20617]: Connecting to database... -- 11:31:14.139 DEBUG [20617]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:31:14.139 SQL [20617]: pgsql_db_connect() -- 11:31:14.143 DEBUG [20617]: Database connection successful -- 11:31:14.143 INFO [20617]: _SERVER found -- 11:31:14.143 INFO [20617]: REMOTE_ADDR = 192.168.1.13 -- 11:31:14.143 INFO [20617]: SERVER_NAME = oameye.works.coregrade.com -- 11:31:14.143 INFO [20617]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=k2d90kmqc1031iuljmonu4icjpca61bo -- 11:31:14.143 INFO [20617]: QUERY_STRING = /member/viewCardAddAction -- 11:31:14.143 INFO [20617]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:31:14.173 INFO [20617]: COREGRADE is stopping... -- 11:31:14.173 DEBUG [20617]: Closing database connection -- 11:31:14.173 SQL [20617]: pgsql_close() -- 11:31:15.904 INFO [20617]: COREGRADE is starting... -- 11:31:15.904 INFO [20617]: Version from config: 1.0 -- 11:31:15.904 DEBUG [20617]: Connecting to database... -- 11:31:15.904 DEBUG [20617]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:31:15.904 SQL [20617]: pgsql_db_connect() -- 11:31:15.909 DEBUG [20617]: Database connection successful -- 11:31:15.909 INFO [20617]: _SERVER found -- 11:31:15.909 INFO [20617]: REMOTE_ADDR = 192.168.1.13 -- 11:31:15.909 INFO [20617]: SERVER_NAME = oameye.works.coregrade.com -- 11:31:15.909 INFO [20617]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=k2d90kmqc1031iuljmonu4icjpca61bo -- 11:31:15.909 INFO [20617]: QUERY_STRING = /member/viewCardAddAction -- 11:31:15.909 INFO [20617]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:31:15.939 INFO [20617]: COREGRADE is stopping... -- 11:31:15.939 DEBUG [20617]: Closing database connection -- 11:31:15.939 SQL [20617]: pgsql_close() -- 11:31:17.034 INFO [20617]: COREGRADE is starting... -- 11:31:17.035 INFO [20617]: Version from config: 1.0 -- 11:31:17.035 DEBUG [20617]: Connecting to database... -- 11:31:17.035 DEBUG [20617]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:31:17.035 SQL [20617]: pgsql_db_connect() -- 11:31:17.039 DEBUG [20617]: Database connection successful -- 11:31:17.039 INFO [20617]: _SERVER found -- 11:31:17.039 INFO [20617]: REMOTE_ADDR = 192.168.1.13 -- 11:31:17.039 INFO [20617]: SERVER_NAME = oameye.works.coregrade.com -- 11:31:17.039 INFO [20617]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=k2d90kmqc1031iuljmonu4icjpca61bo -- 11:31:17.039 INFO [20617]: QUERY_STRING = /member/viewCardAddAction -- 11:31:17.039 INFO [20617]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:31:17.069 INFO [20617]: COREGRADE is stopping... -- 11:31:17.069 DEBUG [20617]: Closing database connection -- 11:31:17.069 SQL [20617]: pgsql_close() -- 11:31:18.555 INFO [20617]: COREGRADE is starting... -- 11:31:18.556 INFO [20617]: Version from config: 1.0 -- 11:31:18.556 DEBUG [20617]: Connecting to database... -- 11:31:18.556 DEBUG [20617]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:31:18.556 SQL [20617]: pgsql_db_connect() -- 11:31:18.560 DEBUG [20617]: Database connection successful -- 11:31:18.560 INFO [20617]: _SERVER found -- 11:31:18.560 INFO [20617]: REMOTE_ADDR = 192.168.1.13 -- 11:31:18.560 INFO [20617]: SERVER_NAME = oameye.works.coregrade.com -- 11:31:18.560 INFO [20617]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=k2d90kmqc1031iuljmonu4icjpca61bo -- 11:31:18.560 INFO [20617]: QUERY_STRING = /member/viewCardAddAction -- 11:31:18.560 INFO [20617]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:31:18.590 INFO [20617]: COREGRADE is stopping... -- 11:31:18.590 DEBUG [20617]: Closing database connection -- 11:31:18.590 SQL [20617]: pgsql_close() -- 11:36:15.197 INFO [22219]: COREGRADE is starting... -- 11:36:15.197 INFO [22219]: Version from config: 1.0 -- 11:36:15.197 DEBUG [22219]: Connecting to database... -- 11:36:15.197 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:36:15.197 SQL [22219]: pgsql_db_connect() -- 11:36:15.232 INFO [22219]: COREGRADE is starting... -- 11:36:15.232 INFO [22219]: Version from config: 1.0 -- 11:36:15.232 DEBUG [22219]: Connecting to database... -- 11:36:15.232 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:36:15.232 SQL [22219]: pgsql_db_connect() -- 11:36:15.236 DEBUG [22219]: Database connection successful -- 11:36:15.236 INFO [22219]: _SERVER found -- 11:36:15.236 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 11:36:15.236 INFO [22219]: SERVER_NAME = oameye.works.coregrade.com -- 11:36:15.236 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=k2d90kmqc1031iuljmonu4icjpca61bo -- 11:36:15.236 INFO [22219]: QUERY_STRING = -- 11:36:15.236 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:36:15.236 INFO [22219]: SystemStatus()09-09-********~************ -- 11:36:15.236 INFO [22219]: long coregrade_api_main(CVars in, CVars &out) -- 11:36:15.236 INFO [22219]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 11:36:15.236 INFO [22219]: account calls -- 11:36:15.236 INFO [22219]: account_calls() -- 11:36:15.236 INFO [22219]: LoginCoreGradeAccount() -- 11:36:15.236 FLOG_MAX [22219]: REQ_STRING(username) -- 11:36:15.236 FLOG_MAX [22219]: REQ_STRING(password) -- 11:36:15.236 FLOG_MAX [22219]: REQ_STRING(sessionid) -- 11:36:15.237 FLOG_MAX [22219]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:36:15.237 SQL [22219]: pgsql_query() -- 11:36:15.237 SQL [22219]: About to run query: -- 11:36:15.237 SQL [22219]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 11:36:15.240 SQL [22219]: Found rows: 1 -- 11:36:15.240 FLOG_MAX [22219]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 11:36:15.240 INFO [22219]: long SessionCheck(long uid, const char *sessionid, int create ) -- 11:36:15.240 SQL [22219]: pgsql_exec() -- 11:36:15.240 SQL [22219]: About to run query: -- 11:36:15.240 SQL [22219]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 11:36:15.241 SQL [22219]: PQcmdTuples: 0 -- 11:36:15.241 SQL [22219]: Affected rows: 0 -- 11:36:15.241 SQL [22219]: pgsql_exec() -- 11:36:15.241 SQL [22219]: About to run query: -- 11:36:15.241 SQL [22219]: DELETE FROM members_session WHERE member_id=5 -- 11:36:15.242 SQL [22219]: PQcmdTuples: 1 -- 11:36:15.242 SQL [22219]: Affected rows: 1 -- 11:36:15.242 SQL [22219]: pgsql_query() -- 11:36:15.242 SQL [22219]: About to run query: -- 11:36:15.242 SQL [22219]: SELECT * FROM members_session WHERE member_id=5 AND session<>'FB448DE3A0367E2203507945384F31C1' -- 11:36:15.243 SQL [22219]: Found rows: 0 -- 11:36:15.243 SQL [22219]: Found rows: 0 -- 11:36:15.243 FLOG_MAX [22219]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:36:15.243 SQL [22219]: pgsql_query() -- 11:36:15.243 SQL [22219]: About to run query: -- 11:36:15.243 SQL [22219]: SELECT * FROM members_session WHERE member_id=5 AND session='FB448DE3A0367E2203507945384F31C1' -- 11:36:15.244 SQL [22219]: Found rows: 0 -- 11:36:15.244 SQL [22219]: Found rows: 0 -- 11:36:15.244 FLOG_MAX [22219]: insert_db_record() -- 11:36:15.244 SQL [22219]: pgsql_exec() -- 11:36:15.244 SQL [22219]: About to run query: -- 11:36:15.244 SQL [22219]: INSERT INTO members_session (member_id,session) VALUES ('5','FB448DE3A0367E2203507945384F31C1') -- 11:36:15.245 SQL [22219]: PQcmdTuples: 1 -- 11:36:15.245 SQL [22219]: Affected rows: 1 -- 11:36:15.245 FLOG_MAX [22219]: SELECT currval('members_session_id_seq') -- 11:36:15.245 SQL [22219]: pgsql_query() -- 11:36:15.245 SQL [22219]: About to run query: -- 11:36:15.245 SQL [22219]: SELECT currval('members_session_id_seq') -- 11:36:15.246 SQL [22219]: Found rows: 1 -- 11:36:15.246 INFO [22219]: CreateDefaultPage() -- 11:36:15.246 FLOG_MAX [22219]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:36:15.246 SQL [22219]: pgsql_query() -- 11:36:15.246 SQL [22219]: About to run query: -- 11:36:15.246 SQL [22219]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 11:36:15.246 SQL [22219]: Found rows: 1 -- 11:36:15.246 FLOG_MAX [22219]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 11:36:15.246 SQL [22219]: pgsql_query() -- 11:36:15.246 SQL [22219]: About to run query: -- 11:36:15.246 SQL [22219]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 11:36:15.247 SQL [22219]: Found rows: 1 -- 11:36:15.247 INFO [22219]: /CreateDefaultPage() -- 11:36:15.247 INFO [22219]: /LoginCoreGradeAccount() -- 11:36:15.247 INFO [22219]: RET: added=2020-02-05 06:47:23.982154 -- 11:36:15.247 INFO [22219]: RET: email=ameye+11@chiefsoft.com -- 11:36:15.247 INFO [22219]: RET: firstname=Olu -- 11:36:15.247 INFO [22219]: RET: id=5 -- 11:36:15.247 INFO [22219]: RET: last_login= -- 11:36:15.247 INFO [22219]: RET: lastname=Amey -- 11:36:15.247 INFO [22219]: RET: loc=192.168.1.13 -- 11:36:15.247 INFO [22219]: RET: member_id=5 -- 11:36:15.247 INFO [22219]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 11:36:15.247 INFO [22219]: RET: phone= -- 11:36:15.247 INFO [22219]: RET: pid= -- 11:36:15.247 INFO [22219]: RET: result=YES I GET TO BACK END -- 11:36:15.247 INFO [22219]: RET: sessionid=FB448DE3A0367E2203507945384F31C1 -- 11:36:15.247 INFO [22219]: RET: status=1 -- 11:36:15.247 INFO [22219]: RET: stauts=OK -- 11:36:15.247 INFO [22219]: RET: username=ameye+11@chiefsoft.com -- 11:36:15.247 INFO [22219]: RET: verified= -- 11:36:15.248 INFO [22219]: COREGRADE is stopping... -- 11:36:15.248 DEBUG [22219]: Closing database connection -- 11:36:15.248 SQL [22219]: pgsql_close() -- 11:36:15.201 DEBUG [22219]: Database connection successful -- 11:36:15.201 INFO [22219]: _SERVER found -- 11:36:15.201 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 11:36:15.201 INFO [22219]: SERVER_NAME = oameye.works.coregrade.com -- 11:36:15.201 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=k2d90kmqc1031iuljmonu4icjpca61bo -- 11:36:15.201 INFO [22219]: QUERY_STRING = /auth -- 11:36:15.201 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:36:15.249 INFO [22219]: COREGRADE is stopping... -- 11:36:15.249 DEBUG [22219]: Closing database connection -- 11:36:15.249 SQL [22219]: pgsql_close() -- 11:36:15.286 INFO [22219]: COREGRADE is starting... -- 11:36:15.286 INFO [22219]: Version from config: 1.0 -- 11:36:15.286 DEBUG [22219]: Connecting to database... -- 11:36:15.286 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:36:15.286 SQL [22219]: pgsql_db_connect() -- 11:36:15.290 DEBUG [22219]: Database connection successful -- 11:36:15.290 INFO [22219]: _SERVER found -- 11:36:15.290 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 11:36:15.290 INFO [22219]: SERVER_NAME = oameye.works.coregrade.com -- 11:36:15.290 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=07q4pujj5ctoda6dlhcv3coor8prfrkg -- 11:36:15.290 INFO [22219]: QUERY_STRING = /member/index -- 11:36:15.290 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:36:15.325 INFO [22219]: COREGRADE is stopping... -- 11:36:15.325 DEBUG [22219]: Closing database connection -- 11:36:15.325 SQL [22219]: pgsql_close() -- 11:36:15.483 INFO [22219]: COREGRADE is starting... -- 11:36:15.483 INFO [22219]: Version from config: 1.0 -- 11:36:15.483 DEBUG [22219]: Connecting to database... -- 11:36:15.483 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:36:15.483 SQL [22219]: pgsql_db_connect() -- 11:36:15.487 DEBUG [22219]: Database connection successful -- 11:36:15.487 INFO [22219]: _SERVER found -- 11:36:15.487 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 11:36:15.487 INFO [22219]: SERVER_NAME = oameye.works.coregrade.com -- 11:36:15.487 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=07q4pujj5ctoda6dlhcv3coor8prfrkg -- 11:36:15.487 INFO [22219]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:36:15.487 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:36:15.498 INFO [22219]: COREGRADE is stopping... -- 11:36:15.498 DEBUG [22219]: Closing database connection -- 11:36:15.498 SQL [22219]: pgsql_close() -- 11:36:15.502 INFO [22219]: COREGRADE is starting... -- 11:36:15.502 INFO [22219]: Version from config: 1.0 -- 11:36:15.502 DEBUG [22219]: Connecting to database... -- 11:36:15.502 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:36:15.502 SQL [22219]: pgsql_db_connect() -- 11:36:15.506 DEBUG [22219]: Database connection successful -- 11:36:15.506 INFO [22219]: _SERVER found -- 11:36:15.506 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 11:36:15.506 INFO [22219]: SERVER_NAME = oameye.works.coregrade.com -- 11:36:15.506 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=07q4pujj5ctoda6dlhcv3coor8prfrkg -- 11:36:15.506 INFO [22219]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:36:15.506 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:36:15.517 INFO [22219]: COREGRADE is stopping... -- 11:36:15.517 DEBUG [22219]: Closing database connection -- 11:36:15.517 SQL [22219]: pgsql_close() -- 11:36:18.921 INFO [22219]: COREGRADE is starting... -- 11:36:18.921 INFO [22219]: Version from config: 1.0 -- 11:36:18.921 DEBUG [22219]: Connecting to database... -- 11:36:18.921 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:36:18.921 SQL [22219]: pgsql_db_connect() -- 11:36:18.925 DEBUG [22219]: Database connection successful -- 11:36:18.925 INFO [22219]: _SERVER found -- 11:36:18.925 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 11:36:18.925 INFO [22219]: SERVER_NAME = oameye.works.coregrade.com -- 11:36:18.925 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=07q4pujj5ctoda6dlhcv3coor8prfrkg -- 11:36:18.925 INFO [22219]: QUERY_STRING = /member/page -- 11:36:18.925 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:36:18.961 INFO [22219]: COREGRADE is stopping... -- 11:36:18.961 DEBUG [22219]: Closing database connection -- 11:36:18.961 SQL [22219]: pgsql_close() -- 11:36:19.328 INFO [22219]: COREGRADE is starting... -- 11:36:19.329 INFO [22219]: Version from config: 1.0 -- 11:36:19.329 DEBUG [22219]: Connecting to database... -- 11:36:19.329 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:36:19.329 SQL [22219]: pgsql_db_connect() -- 11:36:19.333 DEBUG [22219]: Database connection successful -- 11:36:19.333 INFO [22219]: _SERVER found -- 11:36:19.333 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 11:36:19.333 INFO [22219]: SERVER_NAME = oameye.works.coregrade.com -- 11:36:19.333 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=07q4pujj5ctoda6dlhcv3coor8prfrkg -- 11:36:19.333 INFO [22219]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:36:19.333 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:36:19.344 INFO [22219]: COREGRADE is stopping... -- 11:36:19.344 DEBUG [22219]: Closing database connection -- 11:36:19.344 SQL [22219]: pgsql_close() -- 11:36:21.314 INFO [22219]: COREGRADE is starting... -- 11:36:21.314 INFO [22219]: Version from config: 1.0 -- 11:36:21.314 DEBUG [22219]: Connecting to database... -- 11:36:21.314 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:36:21.314 SQL [22219]: pgsql_db_connect() -- 11:36:21.318 DEBUG [22219]: Database connection successful -- 11:36:21.318 INFO [22219]: _SERVER found -- 11:36:21.318 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 11:36:21.318 INFO [22219]: SERVER_NAME = oameye.works.coregrade.com -- 11:36:21.318 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=07q4pujj5ctoda6dlhcv3coor8prfrkg -- 11:36:21.318 INFO [22219]: QUERY_STRING = /member -- 11:36:21.318 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:36:21.352 INFO [22219]: COREGRADE is stopping... -- 11:36:21.352 DEBUG [22219]: Closing database connection -- 11:36:21.352 SQL [22219]: pgsql_close() -- 11:36:21.544 INFO [22219]: COREGRADE is starting... -- 11:36:21.544 INFO [22219]: Version from config: 1.0 -- 11:36:21.544 DEBUG [22219]: Connecting to database... -- 11:36:21.544 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:36:21.544 SQL [22219]: pgsql_db_connect() -- 11:36:21.548 DEBUG [22219]: Database connection successful -- 11:36:21.548 INFO [22219]: _SERVER found -- 11:36:21.548 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 11:36:21.548 INFO [22219]: SERVER_NAME = oameye.works.coregrade.com -- 11:36:21.548 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=07q4pujj5ctoda6dlhcv3coor8prfrkg -- 11:36:21.548 INFO [22219]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:36:21.548 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:36:21.559 INFO [22219]: COREGRADE is stopping... -- 11:36:21.559 DEBUG [22219]: Closing database connection -- 11:36:21.559 SQL [22219]: pgsql_close() -- 11:36:21.571 INFO [22219]: COREGRADE is starting... -- 11:36:21.571 INFO [22219]: Version from config: 1.0 -- 11:36:21.571 DEBUG [22219]: Connecting to database... -- 11:36:21.572 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:36:21.572 SQL [22219]: pgsql_db_connect() -- 11:36:21.576 DEBUG [22219]: Database connection successful -- 11:36:21.576 INFO [22219]: _SERVER found -- 11:36:21.576 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 11:36:21.576 INFO [22219]: SERVER_NAME = oameye.works.coregrade.com -- 11:36:21.576 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=07q4pujj5ctoda6dlhcv3coor8prfrkg -- 11:36:21.576 INFO [22219]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:36:21.576 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:36:21.587 INFO [22219]: COREGRADE is stopping... -- 11:36:21.587 DEBUG [22219]: Closing database connection -- 11:36:21.587 SQL [22219]: pgsql_close() -- 11:36:22.499 INFO [22219]: COREGRADE is starting... -- 11:36:22.499 INFO [22219]: Version from config: 1.0 -- 11:36:22.499 DEBUG [22219]: Connecting to database... -- 11:36:22.499 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:36:22.499 SQL [22219]: pgsql_db_connect() -- 11:36:22.503 DEBUG [22219]: Database connection successful -- 11:36:22.503 INFO [22219]: _SERVER found -- 11:36:22.503 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 11:36:22.503 INFO [22219]: SERVER_NAME = oameye.works.coregrade.com -- 11:36:22.503 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=07q4pujj5ctoda6dlhcv3coor8prfrkg -- 11:36:22.503 INFO [22219]: QUERY_STRING = /member/page -- 11:36:22.503 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:36:22.539 INFO [22219]: COREGRADE is stopping... -- 11:36:22.539 DEBUG [22219]: Closing database connection -- 11:36:22.539 SQL [22219]: pgsql_close() -- 11:36:22.761 INFO [22219]: COREGRADE is starting... -- 11:36:22.761 INFO [22219]: Version from config: 1.0 -- 11:36:22.761 DEBUG [22219]: Connecting to database... -- 11:36:22.761 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:36:22.761 SQL [22219]: pgsql_db_connect() -- 11:36:22.765 DEBUG [22219]: Database connection successful -- 11:36:22.765 INFO [22219]: _SERVER found -- 11:36:22.765 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 11:36:22.765 INFO [22219]: SERVER_NAME = oameye.works.coregrade.com -- 11:36:22.765 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=07q4pujj5ctoda6dlhcv3coor8prfrkg -- 11:36:22.765 INFO [22219]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:36:22.765 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:36:22.776 INFO [22219]: COREGRADE is stopping... -- 11:36:22.776 DEBUG [22219]: Closing database connection -- 11:36:22.776 SQL [22219]: pgsql_close() -- 11:36:24.987 INFO [22219]: COREGRADE is starting... -- 11:36:24.987 INFO [22219]: Version from config: 1.0 -- 11:36:24.987 DEBUG [22219]: Connecting to database... -- 11:36:24.987 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:36:24.987 SQL [22219]: pgsql_db_connect() -- 11:36:24.991 DEBUG [22219]: Database connection successful -- 11:36:24.991 INFO [22219]: _SERVER found -- 11:36:24.991 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 11:36:24.991 INFO [22219]: SERVER_NAME = oameye.works.coregrade.com -- 11:36:24.991 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=07q4pujj5ctoda6dlhcv3coor8prfrkg -- 11:36:24.991 INFO [22219]: QUERY_STRING = /member/viewCardAddAction -- 11:36:24.991 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:36:25.022 INFO [22219]: COREGRADE is stopping... -- 11:36:25.022 DEBUG [22219]: Closing database connection -- 11:36:25.022 SQL [22219]: pgsql_close() -- 11:37:26.230 INFO [20614]: COREGRADE is starting... -- 11:37:26.231 INFO [20614]: Version from config: 1.0 -- 11:37:26.231 DEBUG [20614]: Connecting to database... -- 11:37:26.231 DEBUG [20614]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:37:26.231 SQL [20614]: pgsql_db_connect() -- 11:37:26.235 DEBUG [20614]: Database connection successful -- 11:37:26.235 INFO [20614]: _SERVER found -- 11:37:26.235 INFO [20614]: REMOTE_ADDR = 192.168.1.13 -- 11:37:26.235 INFO [20614]: SERVER_NAME = oameye.works.coregrade.com -- 11:37:26.235 INFO [20614]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=07q4pujj5ctoda6dlhcv3coor8prfrkg -- 11:37:26.235 INFO [20614]: QUERY_STRING = /member/page -- 11:37:26.235 INFO [20614]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:37:26.273 INFO [20614]: COREGRADE is stopping... -- 11:37:26.273 DEBUG [20614]: Closing database connection -- 11:37:26.273 SQL [20614]: pgsql_close() -- 11:37:26.355 INFO [20614]: COREGRADE is starting... -- 11:37:26.355 INFO [20614]: Version from config: 1.0 -- 11:37:26.355 DEBUG [20614]: Connecting to database... -- 11:37:26.355 DEBUG [20614]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:37:26.355 SQL [20614]: pgsql_db_connect() -- 11:37:26.359 DEBUG [20614]: Database connection successful -- 11:37:26.359 INFO [20614]: _SERVER found -- 11:37:26.359 INFO [20614]: REMOTE_ADDR = 192.168.1.13 -- 11:37:26.359 INFO [20614]: SERVER_NAME = oameye.works.coregrade.com -- 11:37:26.359 INFO [20614]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=07q4pujj5ctoda6dlhcv3coor8prfrkg -- 11:37:26.359 INFO [20614]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:37:26.359 INFO [20614]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:37:26.370 INFO [20614]: COREGRADE is stopping... -- 11:37:26.371 DEBUG [20614]: Closing database connection -- 11:37:26.371 SQL [20614]: pgsql_close() -- 11:37:26.492 INFO [20614]: COREGRADE is starting... -- 11:37:26.492 INFO [20614]: Version from config: 1.0 -- 11:37:26.492 DEBUG [20614]: Connecting to database... -- 11:37:26.492 DEBUG [20614]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:37:26.492 SQL [20614]: pgsql_db_connect() -- 11:37:26.496 DEBUG [20614]: Database connection successful -- 11:37:26.496 INFO [20614]: _SERVER found -- 11:37:26.496 INFO [20614]: REMOTE_ADDR = 192.168.1.13 -- 11:37:26.496 INFO [20614]: SERVER_NAME = oameye.works.coregrade.com -- 11:37:26.496 INFO [20614]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=07q4pujj5ctoda6dlhcv3coor8prfrkg -- 11:37:26.496 INFO [20614]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:37:26.496 INFO [20614]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:37:26.507 INFO [20614]: COREGRADE is stopping... -- 11:37:26.507 DEBUG [20614]: Closing database connection -- 11:37:26.507 SQL [20614]: pgsql_close() -- 11:37:28.205 INFO [20614]: COREGRADE is starting... -- 11:37:28.205 INFO [20614]: Version from config: 1.0 -- 11:37:28.205 DEBUG [20614]: Connecting to database... -- 11:37:28.205 DEBUG [20614]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:37:28.205 SQL [20614]: pgsql_db_connect() -- 11:37:28.209 DEBUG [20614]: Database connection successful -- 11:37:28.209 INFO [20614]: _SERVER found -- 11:37:28.209 INFO [20614]: REMOTE_ADDR = 192.168.1.13 -- 11:37:28.209 INFO [20614]: SERVER_NAME = oameye.works.coregrade.com -- 11:37:28.209 INFO [20614]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=07q4pujj5ctoda6dlhcv3coor8prfrkg -- 11:37:28.209 INFO [20614]: QUERY_STRING = /member/viewCardAddAction -- 11:37:28.209 INFO [20614]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:37:28.240 INFO [20614]: COREGRADE is stopping... -- 11:37:28.240 DEBUG [20614]: Closing database connection -- 11:37:28.240 SQL [20614]: pgsql_close() -- 11:37:57.006 INFO [22438]: COREGRADE is starting... -- 11:37:57.006 INFO [22438]: Version from config: 1.0 -- 11:37:57.006 DEBUG [22438]: Connecting to database... -- 11:37:57.006 DEBUG [22438]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:37:57.006 SQL [22438]: pgsql_db_connect() -- 11:37:57.010 DEBUG [22438]: Database connection successful -- 11:37:57.010 INFO [22438]: _SERVER found -- 11:37:57.010 INFO [22438]: REMOTE_ADDR = 192.168.1.13 -- 11:37:57.010 INFO [22438]: SERVER_NAME = oameye.works.coregrade.com -- 11:37:57.010 INFO [22438]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=07q4pujj5ctoda6dlhcv3coor8prfrkg -- 11:37:57.010 INFO [22438]: QUERY_STRING = /member/page -- 11:37:57.010 INFO [22438]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:37:57.046 INFO [22438]: COREGRADE is stopping... -- 11:37:57.047 DEBUG [22438]: Closing database connection -- 11:37:57.047 SQL [22438]: pgsql_close() -- 11:37:57.202 INFO [22438]: COREGRADE is starting... -- 11:37:57.203 INFO [22438]: Version from config: 1.0 -- 11:37:57.203 DEBUG [22438]: Connecting to database... -- 11:37:57.203 DEBUG [22438]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:37:57.203 SQL [22438]: pgsql_db_connect() -- 11:37:57.207 DEBUG [22438]: Database connection successful -- 11:37:57.207 INFO [22438]: _SERVER found -- 11:37:57.207 INFO [22438]: REMOTE_ADDR = 192.168.1.13 -- 11:37:57.207 INFO [22438]: SERVER_NAME = oameye.works.coregrade.com -- 11:37:57.207 INFO [22438]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=07q4pujj5ctoda6dlhcv3coor8prfrkg -- 11:37:57.207 INFO [22438]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:37:57.207 INFO [22438]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:37:57.218 INFO [22438]: COREGRADE is stopping... -- 11:37:57.218 DEBUG [22438]: Closing database connection -- 11:37:57.218 SQL [22438]: pgsql_close() -- 11:38:00.065 INFO [22438]: COREGRADE is starting... -- 11:38:00.065 INFO [22438]: Version from config: 1.0 -- 11:38:00.065 DEBUG [22438]: Connecting to database... -- 11:38:00.065 DEBUG [22438]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:38:00.065 SQL [22438]: pgsql_db_connect() -- 11:38:00.069 DEBUG [22438]: Database connection successful -- 11:38:00.069 INFO [22438]: _SERVER found -- 11:38:00.069 INFO [22438]: REMOTE_ADDR = 192.168.1.13 -- 11:38:00.069 INFO [22438]: SERVER_NAME = oameye.works.coregrade.com -- 11:38:00.069 INFO [22438]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=07q4pujj5ctoda6dlhcv3coor8prfrkg -- 11:38:00.069 INFO [22438]: QUERY_STRING = /member/viewCardAddAction -- 11:38:00.069 INFO [22438]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:38:00.100 INFO [22438]: COREGRADE is stopping... -- 11:38:00.100 DEBUG [22438]: Closing database connection -- 11:38:00.100 SQL [22438]: pgsql_close() -- 11:38:08.415 INFO [22349]: COREGRADE is starting... -- 11:38:08.416 INFO [22349]: Version from config: 1.0 -- 11:38:08.416 DEBUG [22349]: Connecting to database... -- 11:38:08.416 DEBUG [22349]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:38:08.416 SQL [22349]: pgsql_db_connect() -- 11:38:08.420 DEBUG [22349]: Database connection successful -- 11:38:08.420 INFO [22349]: _SERVER found -- 11:38:08.420 INFO [22349]: REMOTE_ADDR = 192.168.1.13 -- 11:38:08.420 INFO [22349]: SERVER_NAME = oameye.works.coregrade.com -- 11:38:08.420 INFO [22349]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=07q4pujj5ctoda6dlhcv3coor8prfrkg -- 11:38:08.420 INFO [22349]: QUERY_STRING = /member/page -- 11:38:08.420 INFO [22349]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:38:08.455 INFO [22349]: COREGRADE is stopping... -- 11:38:08.455 DEBUG [22349]: Closing database connection -- 11:38:08.455 SQL [22349]: pgsql_close() -- 11:38:08.692 INFO [22349]: COREGRADE is starting... -- 11:38:08.692 INFO [22349]: Version from config: 1.0 -- 11:38:08.692 DEBUG [22349]: Connecting to database... -- 11:38:08.693 DEBUG [22349]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:38:08.693 SQL [22349]: pgsql_db_connect() -- 11:38:08.696 DEBUG [22349]: Database connection successful -- 11:38:08.696 INFO [22349]: _SERVER found -- 11:38:08.696 INFO [22349]: REMOTE_ADDR = 192.168.1.13 -- 11:38:08.696 INFO [22349]: SERVER_NAME = oameye.works.coregrade.com -- 11:38:08.696 INFO [22349]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=07q4pujj5ctoda6dlhcv3coor8prfrkg -- 11:38:08.696 INFO [22349]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:38:08.696 INFO [22349]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:38:08.707 INFO [22349]: COREGRADE is stopping... -- 11:38:08.708 DEBUG [22349]: Closing database connection -- 11:38:08.708 SQL [22349]: pgsql_close() -- 11:38:10.119 INFO [22349]: COREGRADE is starting... -- 11:38:10.119 INFO [22349]: Version from config: 1.0 -- 11:38:10.119 DEBUG [22349]: Connecting to database... -- 11:38:10.119 DEBUG [22349]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:38:10.119 SQL [22349]: pgsql_db_connect() -- 11:38:10.123 DEBUG [22349]: Database connection successful -- 11:38:10.123 INFO [22349]: _SERVER found -- 11:38:10.123 INFO [22349]: REMOTE_ADDR = 192.168.1.13 -- 11:38:10.123 INFO [22349]: SERVER_NAME = oameye.works.coregrade.com -- 11:38:10.123 INFO [22349]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=07q4pujj5ctoda6dlhcv3coor8prfrkg -- 11:38:10.123 INFO [22349]: QUERY_STRING = /member/page -- 11:38:10.123 INFO [22349]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:38:10.159 INFO [22349]: COREGRADE is stopping... -- 11:38:10.159 DEBUG [22349]: Closing database connection -- 11:38:10.159 SQL [22349]: pgsql_close() -- 11:38:10.438 INFO [22349]: COREGRADE is starting... -- 11:38:10.438 INFO [22349]: Version from config: 1.0 -- 11:38:10.438 DEBUG [22349]: Connecting to database... -- 11:38:10.438 DEBUG [22349]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:38:10.438 SQL [22349]: pgsql_db_connect() -- 11:38:10.442 DEBUG [22349]: Database connection successful -- 11:38:10.442 INFO [22349]: _SERVER found -- 11:38:10.442 INFO [22349]: REMOTE_ADDR = 192.168.1.13 -- 11:38:10.442 INFO [22349]: SERVER_NAME = oameye.works.coregrade.com -- 11:38:10.442 INFO [22349]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=07q4pujj5ctoda6dlhcv3coor8prfrkg -- 11:38:10.442 INFO [22349]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:38:10.442 INFO [22349]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:38:10.453 INFO [22349]: COREGRADE is stopping... -- 11:38:10.453 DEBUG [22349]: Closing database connection -- 11:38:10.453 SQL [22349]: pgsql_close() -- 11:39:56.031 INFO [20673]: COREGRADE is starting... -- 11:39:56.031 INFO [20673]: Version from config: 1.0 -- 11:39:56.031 DEBUG [20673]: Connecting to database... -- 11:39:56.031 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:39:56.031 SQL [20673]: pgsql_db_connect() -- 11:39:56.035 DEBUG [20673]: Database connection successful -- 11:39:56.035 INFO [20673]: _SERVER found -- 11:39:56.035 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 11:39:56.035 INFO [20673]: SERVER_NAME = oameye.works.coregrade.com -- 11:39:56.035 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=07q4pujj5ctoda6dlhcv3coor8prfrkg -- 11:39:56.035 INFO [20673]: QUERY_STRING = /member/viewCardAddAction -- 11:39:56.035 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:39:56.069 INFO [20673]: COREGRADE is stopping... -- 11:39:56.069 DEBUG [20673]: Closing database connection -- 11:39:56.069 SQL [20673]: pgsql_close() -- 11:41:15.476 INFO [20615]: COREGRADE is starting... -- 11:41:15.476 INFO [20615]: Version from config: 1.0 -- 11:41:15.476 DEBUG [20615]: Connecting to database... -- 11:41:15.476 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:41:15.476 SQL [20615]: pgsql_db_connect() -- 11:41:15.480 DEBUG [20615]: Database connection successful -- 11:41:15.480 INFO [20615]: _SERVER found -- 11:41:15.480 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:41:15.480 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:41:15.480 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=07q4pujj5ctoda6dlhcv3coor8prfrkg -- 11:41:15.480 INFO [20615]: QUERY_STRING = /member/page -- 11:41:15.480 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:41:15.521 INFO [20615]: COREGRADE is stopping... -- 11:41:15.521 DEBUG [20615]: Closing database connection -- 11:41:15.521 SQL [20615]: pgsql_close() -- 11:41:16.076 INFO [20615]: COREGRADE is starting... -- 11:41:16.076 INFO [20615]: Version from config: 1.0 -- 11:41:16.076 DEBUG [20615]: Connecting to database... -- 11:41:16.076 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:41:16.076 SQL [20615]: pgsql_db_connect() -- 11:41:16.080 DEBUG [20615]: Database connection successful -- 11:41:16.080 INFO [20615]: _SERVER found -- 11:41:16.080 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:41:16.080 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:41:16.080 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=07q4pujj5ctoda6dlhcv3coor8prfrkg -- 11:41:16.080 INFO [20615]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:41:16.080 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:41:16.091 INFO [20615]: COREGRADE is stopping... -- 11:41:16.092 DEBUG [20615]: Closing database connection -- 11:41:16.092 SQL [20615]: pgsql_close() -- 11:41:17.307 INFO [20615]: COREGRADE is starting... -- 11:41:17.307 INFO [20615]: Version from config: 1.0 -- 11:41:17.307 DEBUG [20615]: Connecting to database... -- 11:41:17.307 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:41:17.307 SQL [20615]: pgsql_db_connect() -- 11:41:17.311 DEBUG [20615]: Database connection successful -- 11:41:17.311 INFO [20615]: _SERVER found -- 11:41:17.311 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:41:17.311 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:41:17.311 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=07q4pujj5ctoda6dlhcv3coor8prfrkg -- 11:41:17.311 INFO [20615]: QUERY_STRING = /member/viewCardAddAction -- 11:41:17.311 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:41:17.344 INFO [20615]: COREGRADE is stopping... -- 11:41:17.344 DEBUG [20615]: Closing database connection -- 11:41:17.344 SQL [20615]: pgsql_close() -- 11:41:18.262 INFO [20615]: COREGRADE is starting... -- 11:41:18.262 INFO [20615]: Version from config: 1.0 -- 11:41:18.262 DEBUG [20615]: Connecting to database... -- 11:41:18.262 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:41:18.262 SQL [20615]: pgsql_db_connect() -- 11:41:18.266 DEBUG [20615]: Database connection successful -- 11:41:18.266 INFO [20615]: _SERVER found -- 11:41:18.266 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:41:18.266 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:41:18.266 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=07q4pujj5ctoda6dlhcv3coor8prfrkg -- 11:41:18.266 INFO [20615]: QUERY_STRING = /member/page -- 11:41:18.266 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:41:18.301 INFO [20615]: COREGRADE is stopping... -- 11:41:18.301 DEBUG [20615]: Closing database connection -- 11:41:18.301 SQL [20615]: pgsql_close() -- 11:41:18.499 INFO [20615]: COREGRADE is starting... -- 11:41:18.499 INFO [20615]: Version from config: 1.0 -- 11:41:18.499 DEBUG [20615]: Connecting to database... -- 11:41:18.499 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:41:18.499 SQL [20615]: pgsql_db_connect() -- 11:41:18.503 DEBUG [20615]: Database connection successful -- 11:41:18.503 INFO [20615]: _SERVER found -- 11:41:18.503 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:41:18.503 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:41:18.503 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=4871abq4endmah4o9mlp1vlt6nqivnnj -- 11:41:18.503 INFO [20615]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:41:18.503 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:41:18.514 INFO [20615]: COREGRADE is stopping... -- 11:41:18.514 DEBUG [20615]: Closing database connection -- 11:41:18.514 SQL [20615]: pgsql_close() -- 11:41:19.798 INFO [20615]: COREGRADE is starting... -- 11:41:19.798 INFO [20615]: Version from config: 1.0 -- 11:41:19.798 DEBUG [20615]: Connecting to database... -- 11:41:19.798 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:41:19.798 SQL [20615]: pgsql_db_connect() -- 11:41:19.802 DEBUG [20615]: Database connection successful -- 11:41:19.802 INFO [20615]: _SERVER found -- 11:41:19.802 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:41:19.802 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:41:19.802 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=4871abq4endmah4o9mlp1vlt6nqivnnj -- 11:41:19.802 INFO [20615]: QUERY_STRING = /member/page -- 11:41:19.802 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:41:19.841 INFO [20615]: COREGRADE is stopping... -- 11:41:19.841 DEBUG [20615]: Closing database connection -- 11:41:19.841 SQL [20615]: pgsql_close() -- 11:41:20.085 INFO [20615]: COREGRADE is starting... -- 11:41:20.086 INFO [20615]: Version from config: 1.0 -- 11:41:20.086 DEBUG [20615]: Connecting to database... -- 11:41:20.086 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:41:20.086 SQL [20615]: pgsql_db_connect() -- 11:41:20.090 DEBUG [20615]: Database connection successful -- 11:41:20.090 INFO [20615]: _SERVER found -- 11:41:20.090 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:41:20.090 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:41:20.090 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=4871abq4endmah4o9mlp1vlt6nqivnnj -- 11:41:20.090 INFO [20615]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:41:20.090 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:41:20.101 INFO [20615]: COREGRADE is stopping... -- 11:41:20.101 DEBUG [20615]: Closing database connection -- 11:41:20.101 SQL [20615]: pgsql_close() -- 11:41:27.859 INFO [20616]: COREGRADE is starting... -- 11:41:27.859 INFO [20616]: Version from config: 1.0 -- 11:41:27.859 DEBUG [20616]: Connecting to database... -- 11:41:27.859 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:41:27.859 SQL [20616]: pgsql_db_connect() -- 11:41:27.863 DEBUG [20616]: Database connection successful -- 11:41:27.863 INFO [20616]: _SERVER found -- 11:41:27.863 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 11:41:27.863 INFO [20616]: SERVER_NAME = oameye.works.coregrade.com -- 11:41:27.863 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=4871abq4endmah4o9mlp1vlt6nqivnnj -- 11:41:27.863 INFO [20616]: QUERY_STRING = /member/viewCardAddAction -- 11:41:27.863 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:41:27.895 INFO [20616]: COREGRADE is stopping... -- 11:41:27.895 DEBUG [20616]: Closing database connection -- 11:41:27.895 SQL [20616]: pgsql_close() -- 11:44:40.138 INFO [20672]: COREGRADE is starting... -- 11:44:40.138 INFO [20672]: Version from config: 1.0 -- 11:44:40.138 DEBUG [20672]: Connecting to database... -- 11:44:40.138 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:44:40.138 SQL [20672]: pgsql_db_connect() -- 11:44:40.142 DEBUG [20672]: Database connection successful -- 11:44:40.142 INFO [20672]: _SERVER found -- 11:44:40.142 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 11:44:40.142 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 11:44:40.142 INFO [20672]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=4871abq4endmah4o9mlp1vlt6nqivnnj -- 11:44:40.142 INFO [20672]: QUERY_STRING = /member -- 11:44:40.142 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:44:40.179 INFO [20672]: COREGRADE is stopping... -- 11:44:40.179 DEBUG [20672]: Closing database connection -- 11:44:40.179 SQL [20672]: pgsql_close() -- 11:44:40.463 INFO [20672]: COREGRADE is starting... -- 11:44:40.464 INFO [20672]: Version from config: 1.0 -- 11:44:40.464 DEBUG [20672]: Connecting to database... -- 11:44:40.464 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:44:40.464 SQL [20672]: pgsql_db_connect() -- 11:44:40.468 DEBUG [20672]: Database connection successful -- 11:44:40.468 INFO [20672]: _SERVER found -- 11:44:40.468 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 11:44:40.468 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 11:44:40.468 INFO [20672]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=4871abq4endmah4o9mlp1vlt6nqivnnj -- 11:44:40.468 INFO [20672]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:44:40.468 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:44:40.479 INFO [20672]: COREGRADE is stopping... -- 11:44:40.480 DEBUG [20672]: Closing database connection -- 11:44:40.480 SQL [20672]: pgsql_close() -- 11:44:41.525 INFO [20672]: COREGRADE is starting... -- 11:44:41.525 INFO [20672]: Version from config: 1.0 -- 11:44:41.525 DEBUG [20672]: Connecting to database... -- 11:44:41.525 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:44:41.525 SQL [20672]: pgsql_db_connect() -- 11:44:41.529 DEBUG [20672]: Database connection successful -- 11:44:41.529 INFO [20672]: _SERVER found -- 11:44:41.529 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 11:44:41.529 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 11:44:41.529 INFO [20672]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=4871abq4endmah4o9mlp1vlt6nqivnnj -- 11:44:41.529 INFO [20672]: QUERY_STRING = /member/page -- 11:44:41.529 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:44:41.566 INFO [20672]: COREGRADE is stopping... -- 11:44:41.566 DEBUG [20672]: Closing database connection -- 11:44:41.566 SQL [20672]: pgsql_close() -- 11:44:41.653 INFO [20672]: COREGRADE is starting... -- 11:44:41.653 INFO [20672]: Version from config: 1.0 -- 11:44:41.653 DEBUG [20672]: Connecting to database... -- 11:44:41.653 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:44:41.653 SQL [20672]: pgsql_db_connect() -- 11:44:41.657 DEBUG [20672]: Database connection successful -- 11:44:41.657 INFO [20672]: _SERVER found -- 11:44:41.657 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 11:44:41.657 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 11:44:41.657 INFO [20672]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=4871abq4endmah4o9mlp1vlt6nqivnnj -- 11:44:41.657 INFO [20672]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:44:41.657 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:44:41.668 INFO [20672]: COREGRADE is stopping... -- 11:44:41.669 DEBUG [20672]: Closing database connection -- 11:44:41.669 SQL [20672]: pgsql_close() -- 11:44:41.837 INFO [20672]: COREGRADE is starting... -- 11:44:41.837 INFO [20672]: Version from config: 1.0 -- 11:44:41.837 DEBUG [20672]: Connecting to database... -- 11:44:41.837 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:44:41.837 SQL [20672]: pgsql_db_connect() -- 11:44:41.841 DEBUG [20672]: Database connection successful -- 11:44:41.841 INFO [20672]: _SERVER found -- 11:44:41.841 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 11:44:41.841 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 11:44:41.841 INFO [20672]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=4871abq4endmah4o9mlp1vlt6nqivnnj -- 11:44:41.841 INFO [20672]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:44:41.841 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:44:41.852 INFO [20672]: COREGRADE is stopping... -- 11:44:41.852 DEBUG [20672]: Closing database connection -- 11:44:41.852 SQL [20672]: pgsql_close() -- 11:44:44.561 INFO [20672]: COREGRADE is starting... -- 11:44:44.561 INFO [20672]: Version from config: 1.0 -- 11:44:44.561 DEBUG [20672]: Connecting to database... -- 11:44:44.561 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:44:44.561 SQL [20672]: pgsql_db_connect() -- 11:44:44.565 DEBUG [20672]: Database connection successful -- 11:44:44.565 INFO [20672]: _SERVER found -- 11:44:44.565 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 11:44:44.565 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 11:44:44.565 INFO [20672]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=4871abq4endmah4o9mlp1vlt6nqivnnj -- 11:44:44.565 INFO [20672]: QUERY_STRING = /member -- 11:44:44.565 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:44:44.599 INFO [20672]: COREGRADE is stopping... -- 11:44:44.599 DEBUG [20672]: Closing database connection -- 11:44:44.599 SQL [20672]: pgsql_close() -- 11:44:44.843 INFO [20672]: COREGRADE is starting... -- 11:44:44.843 INFO [20672]: Version from config: 1.0 -- 11:44:44.843 DEBUG [20672]: Connecting to database... -- 11:44:44.843 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:44:44.843 SQL [20672]: pgsql_db_connect() -- 11:44:44.847 DEBUG [20672]: Database connection successful -- 11:44:44.847 INFO [20672]: _SERVER found -- 11:44:44.847 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 11:44:44.847 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 11:44:44.847 INFO [20672]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=4871abq4endmah4o9mlp1vlt6nqivnnj -- 11:44:44.847 INFO [20672]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:44:44.847 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:44:44.858 INFO [20672]: COREGRADE is stopping... -- 11:44:44.858 DEBUG [20672]: Closing database connection -- 11:44:44.858 SQL [20672]: pgsql_close() -- 11:44:46.129 INFO [20672]: COREGRADE is starting... -- 11:44:46.129 INFO [20672]: Version from config: 1.0 -- 11:44:46.129 DEBUG [20672]: Connecting to database... -- 11:44:46.129 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:44:46.129 SQL [20672]: pgsql_db_connect() -- 11:44:46.133 DEBUG [20672]: Database connection successful -- 11:44:46.133 INFO [20672]: _SERVER found -- 11:44:46.133 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 11:44:46.133 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 11:44:46.133 INFO [20672]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=4871abq4endmah4o9mlp1vlt6nqivnnj -- 11:44:46.133 INFO [20672]: QUERY_STRING = /member/page -- 11:44:46.133 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:44:46.169 INFO [20672]: COREGRADE is stopping... -- 11:44:46.169 DEBUG [20672]: Closing database connection -- 11:44:46.170 SQL [20672]: pgsql_close() -- 11:44:46.399 INFO [20672]: COREGRADE is starting... -- 11:44:46.399 INFO [20672]: Version from config: 1.0 -- 11:44:46.399 DEBUG [20672]: Connecting to database... -- 11:44:46.399 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:44:46.399 SQL [20672]: pgsql_db_connect() -- 11:44:46.404 DEBUG [20672]: Database connection successful -- 11:44:46.404 INFO [20672]: _SERVER found -- 11:44:46.404 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 11:44:46.404 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 11:44:46.404 INFO [20672]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=4871abq4endmah4o9mlp1vlt6nqivnnj -- 11:44:46.404 INFO [20672]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:44:46.404 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:44:46.415 INFO [20672]: COREGRADE is stopping... -- 11:44:46.416 DEBUG [20672]: Closing database connection -- 11:44:46.416 SQL [20672]: pgsql_close() -- 11:45:06.115 INFO [20617]: COREGRADE is starting... -- 11:45:06.116 INFO [20617]: Version from config: 1.0 -- 11:45:06.116 DEBUG [20617]: Connecting to database... -- 11:45:06.116 DEBUG [20617]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:45:06.116 SQL [20617]: pgsql_db_connect() -- 11:45:06.120 DEBUG [20617]: Database connection successful -- 11:45:06.120 INFO [20617]: _SERVER found -- 11:45:06.120 INFO [20617]: REMOTE_ADDR = 192.168.1.13 -- 11:45:06.120 INFO [20617]: SERVER_NAME = oameye.works.coregrade.com -- 11:45:06.120 INFO [20617]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=4871abq4endmah4o9mlp1vlt6nqivnnj -- 11:45:06.120 INFO [20617]: QUERY_STRING = /member -- 11:45:06.120 INFO [20617]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:45:06.156 INFO [20617]: COREGRADE is stopping... -- 11:45:06.156 DEBUG [20617]: Closing database connection -- 11:45:06.156 SQL [20617]: pgsql_close() -- 11:45:06.363 INFO [20617]: COREGRADE is starting... -- 11:45:06.363 INFO [20617]: Version from config: 1.0 -- 11:45:06.363 DEBUG [20617]: Connecting to database... -- 11:45:06.363 DEBUG [20617]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:45:06.363 SQL [20617]: pgsql_db_connect() -- 11:45:06.367 DEBUG [20617]: Database connection successful -- 11:45:06.367 INFO [20617]: _SERVER found -- 11:45:06.367 INFO [20617]: REMOTE_ADDR = 192.168.1.13 -- 11:45:06.367 INFO [20617]: SERVER_NAME = oameye.works.coregrade.com -- 11:45:06.367 INFO [20617]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=4871abq4endmah4o9mlp1vlt6nqivnnj -- 11:45:06.367 INFO [20617]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:45:06.367 INFO [20617]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:45:06.378 INFO [20617]: COREGRADE is stopping... -- 11:45:06.378 DEBUG [20617]: Closing database connection -- 11:45:06.378 SQL [20617]: pgsql_close() -- 11:45:06.386 INFO [22219]: COREGRADE is starting... -- 11:45:06.386 INFO [22219]: Version from config: 1.0 -- 11:45:06.386 DEBUG [22219]: Connecting to database... -- 11:45:06.387 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:45:06.387 SQL [22219]: pgsql_db_connect() -- 11:45:06.390 DEBUG [22219]: Database connection successful -- 11:45:06.390 INFO [22219]: _SERVER found -- 11:45:06.390 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 11:45:06.390 INFO [22219]: SERVER_NAME = oameye.works.coregrade.com -- 11:45:06.390 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=4871abq4endmah4o9mlp1vlt6nqivnnj -- 11:45:06.390 INFO [22219]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:45:06.390 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:45:06.402 INFO [22219]: COREGRADE is stopping... -- 11:45:06.402 DEBUG [22219]: Closing database connection -- 11:45:06.402 SQL [22219]: pgsql_close() -- 11:45:07.486 INFO [22219]: COREGRADE is starting... -- 11:45:07.487 INFO [22219]: Version from config: 1.0 -- 11:45:07.487 DEBUG [22219]: Connecting to database... -- 11:45:07.487 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:45:07.487 SQL [22219]: pgsql_db_connect() -- 11:45:07.491 DEBUG [22219]: Database connection successful -- 11:45:07.491 INFO [22219]: _SERVER found -- 11:45:07.491 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 11:45:07.491 INFO [22219]: SERVER_NAME = oameye.works.coregrade.com -- 11:45:07.491 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=4871abq4endmah4o9mlp1vlt6nqivnnj -- 11:45:07.491 INFO [22219]: QUERY_STRING = /member/page -- 11:45:07.491 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:45:07.527 INFO [22219]: COREGRADE is stopping... -- 11:45:07.527 DEBUG [22219]: Closing database connection -- 11:45:07.527 SQL [22219]: pgsql_close() -- 11:45:07.774 INFO [22219]: COREGRADE is starting... -- 11:45:07.774 INFO [22219]: Version from config: 1.0 -- 11:45:07.774 DEBUG [22219]: Connecting to database... -- 11:45:07.774 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:45:07.774 SQL [22219]: pgsql_db_connect() -- 11:45:07.778 DEBUG [22219]: Database connection successful -- 11:45:07.778 INFO [22219]: _SERVER found -- 11:45:07.778 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 11:45:07.778 INFO [22219]: SERVER_NAME = oameye.works.coregrade.com -- 11:45:07.778 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=4871abq4endmah4o9mlp1vlt6nqivnnj -- 11:45:07.778 INFO [22219]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:45:07.778 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:45:07.789 INFO [22219]: COREGRADE is stopping... -- 11:45:07.789 DEBUG [22219]: Closing database connection -- 11:45:07.789 SQL [22219]: pgsql_close() -- 11:45:15.424 INFO [20618]: COREGRADE is starting... -- 11:45:15.425 INFO [20618]: Version from config: 1.0 -- 11:45:15.425 DEBUG [20618]: Connecting to database... -- 11:45:15.425 DEBUG [20618]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:45:15.425 SQL [20618]: pgsql_db_connect() -- 11:45:15.429 DEBUG [20618]: Database connection successful -- 11:45:15.429 INFO [20618]: _SERVER found -- 11:45:15.429 INFO [20618]: REMOTE_ADDR = 192.168.1.13 -- 11:45:15.429 INFO [20618]: SERVER_NAME = oameye.works.coregrade.com -- 11:45:15.429 INFO [20618]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=4871abq4endmah4o9mlp1vlt6nqivnnj -- 11:45:15.429 INFO [20618]: QUERY_STRING = /member -- 11:45:15.429 INFO [20618]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:45:15.467 INFO [20618]: COREGRADE is stopping... -- 11:45:15.467 DEBUG [20618]: Closing database connection -- 11:45:15.467 SQL [20618]: pgsql_close() -- 11:45:15.677 INFO [20618]: COREGRADE is starting... -- 11:45:15.678 INFO [20618]: Version from config: 1.0 -- 11:45:15.678 DEBUG [20618]: Connecting to database... -- 11:45:15.678 DEBUG [20618]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:45:15.678 SQL [20618]: pgsql_db_connect() -- 11:45:15.682 DEBUG [20618]: Database connection successful -- 11:45:15.682 INFO [20618]: _SERVER found -- 11:45:15.682 INFO [20618]: REMOTE_ADDR = 192.168.1.13 -- 11:45:15.682 INFO [20618]: SERVER_NAME = oameye.works.coregrade.com -- 11:45:15.682 INFO [20618]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=4871abq4endmah4o9mlp1vlt6nqivnnj -- 11:45:15.682 INFO [20618]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:45:15.682 INFO [20618]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:45:15.693 INFO [20618]: COREGRADE is stopping... -- 11:45:15.693 DEBUG [20618]: Closing database connection -- 11:45:15.693 SQL [20618]: pgsql_close() -- 11:45:15.703 INFO [20614]: COREGRADE is starting... -- 11:45:15.704 INFO [20614]: Version from config: 1.0 -- 11:45:15.704 DEBUG [20614]: Connecting to database... -- 11:45:15.704 DEBUG [20614]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:45:15.704 SQL [20614]: pgsql_db_connect() -- 11:45:15.707 DEBUG [20614]: Database connection successful -- 11:45:15.707 INFO [20614]: _SERVER found -- 11:45:15.707 INFO [20614]: REMOTE_ADDR = 192.168.1.13 -- 11:45:15.707 INFO [20614]: SERVER_NAME = oameye.works.coregrade.com -- 11:45:15.707 INFO [20614]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=4871abq4endmah4o9mlp1vlt6nqivnnj -- 11:45:15.707 INFO [20614]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:45:15.707 INFO [20614]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:45:15.719 INFO [20614]: COREGRADE is stopping... -- 11:45:15.719 DEBUG [20614]: Closing database connection -- 11:45:15.719 SQL [20614]: pgsql_close() -- 11:45:17.578 INFO [20614]: COREGRADE is starting... -- 11:45:17.578 INFO [20614]: Version from config: 1.0 -- 11:45:17.578 DEBUG [20614]: Connecting to database... -- 11:45:17.578 DEBUG [20614]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:45:17.578 SQL [20614]: pgsql_db_connect() -- 11:45:17.582 DEBUG [20614]: Database connection successful -- 11:45:17.582 INFO [20614]: _SERVER found -- 11:45:17.582 INFO [20614]: REMOTE_ADDR = 192.168.1.13 -- 11:45:17.582 INFO [20614]: SERVER_NAME = oameye.works.coregrade.com -- 11:45:17.582 INFO [20614]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=4871abq4endmah4o9mlp1vlt6nqivnnj -- 11:45:17.582 INFO [20614]: QUERY_STRING = /member/page -- 11:45:17.582 INFO [20614]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:45:17.618 INFO [20614]: COREGRADE is stopping... -- 11:45:17.618 DEBUG [20614]: Closing database connection -- 11:45:17.618 SQL [20614]: pgsql_close() -- 11:45:17.837 INFO [20614]: COREGRADE is starting... -- 11:45:17.837 INFO [20614]: Version from config: 1.0 -- 11:45:17.837 DEBUG [20614]: Connecting to database... -- 11:45:17.837 DEBUG [20614]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:45:17.837 SQL [20614]: pgsql_db_connect() -- 11:45:17.841 DEBUG [20614]: Database connection successful -- 11:45:17.841 INFO [20614]: _SERVER found -- 11:45:17.841 INFO [20614]: REMOTE_ADDR = 192.168.1.13 -- 11:45:17.841 INFO [20614]: SERVER_NAME = oameye.works.coregrade.com -- 11:45:17.841 INFO [20614]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=4871abq4endmah4o9mlp1vlt6nqivnnj -- 11:45:17.841 INFO [20614]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:45:17.841 INFO [20614]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:45:17.852 INFO [20614]: COREGRADE is stopping... -- 11:45:17.852 DEBUG [20614]: Closing database connection -- 11:45:17.852 SQL [20614]: pgsql_close() -- 11:46:58.890 INFO [22438]: COREGRADE is starting... -- 11:46:58.891 INFO [22438]: Version from config: 1.0 -- 11:46:58.891 DEBUG [22438]: Connecting to database... -- 11:46:58.891 DEBUG [22438]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:46:58.891 SQL [22438]: pgsql_db_connect() -- 11:46:58.895 DEBUG [22438]: Database connection successful -- 11:46:58.895 INFO [22438]: _SERVER found -- 11:46:58.895 INFO [22438]: REMOTE_ADDR = 192.168.1.13 -- 11:46:58.895 INFO [22438]: SERVER_NAME = oameye.works.coregrade.com -- 11:46:58.895 INFO [22438]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=4871abq4endmah4o9mlp1vlt6nqivnnj -- 11:46:58.895 INFO [22438]: QUERY_STRING = /member -- 11:46:58.895 INFO [22438]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:46:58.932 INFO [22438]: COREGRADE is stopping... -- 11:46:58.932 DEBUG [22438]: Closing database connection -- 11:46:58.932 SQL [22438]: pgsql_close() -- 11:46:59.186 INFO [22438]: COREGRADE is starting... -- 11:46:59.186 INFO [22438]: Version from config: 1.0 -- 11:46:59.186 DEBUG [22438]: Connecting to database... -- 11:46:59.186 DEBUG [22438]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:46:59.186 SQL [22438]: pgsql_db_connect() -- 11:46:59.191 DEBUG [22438]: Database connection successful -- 11:46:59.191 INFO [22438]: _SERVER found -- 11:46:59.191 INFO [22438]: REMOTE_ADDR = 192.168.1.13 -- 11:46:59.191 INFO [22438]: SERVER_NAME = oameye.works.coregrade.com -- 11:46:59.191 INFO [22438]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:46:59.191 INFO [22438]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:46:59.191 INFO [22438]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:46:59.202 INFO [22438]: COREGRADE is stopping... -- 11:46:59.202 DEBUG [22438]: Closing database connection -- 11:46:59.202 SQL [22438]: pgsql_close() -- 11:46:59.220 INFO [22438]: COREGRADE is starting... -- 11:46:59.220 INFO [22438]: Version from config: 1.0 -- 11:46:59.220 DEBUG [22438]: Connecting to database... -- 11:46:59.220 DEBUG [22438]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:46:59.220 SQL [22438]: pgsql_db_connect() -- 11:46:59.225 DEBUG [22438]: Database connection successful -- 11:46:59.225 INFO [22438]: _SERVER found -- 11:46:59.225 INFO [22438]: REMOTE_ADDR = 192.168.1.13 -- 11:46:59.225 INFO [22438]: SERVER_NAME = oameye.works.coregrade.com -- 11:46:59.225 INFO [22438]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:46:59.225 INFO [22438]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:46:59.225 INFO [22438]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:46:59.236 INFO [22438]: COREGRADE is stopping... -- 11:46:59.236 DEBUG [22438]: Closing database connection -- 11:46:59.236 SQL [22438]: pgsql_close() -- 11:47:00.403 INFO [22438]: COREGRADE is starting... -- 11:47:00.404 INFO [22438]: Version from config: 1.0 -- 11:47:00.404 DEBUG [22438]: Connecting to database... -- 11:47:00.404 DEBUG [22438]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:47:00.404 SQL [22438]: pgsql_db_connect() -- 11:47:00.408 DEBUG [22438]: Database connection successful -- 11:47:00.408 INFO [22438]: _SERVER found -- 11:47:00.408 INFO [22438]: REMOTE_ADDR = 192.168.1.13 -- 11:47:00.408 INFO [22438]: SERVER_NAME = oameye.works.coregrade.com -- 11:47:00.408 INFO [22438]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:47:00.408 INFO [22438]: QUERY_STRING = /member/page -- 11:47:00.408 INFO [22438]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:47:00.445 INFO [22438]: COREGRADE is stopping... -- 11:47:00.445 DEBUG [22438]: Closing database connection -- 11:47:00.445 SQL [22438]: pgsql_close() -- 11:47:00.531 INFO [22438]: COREGRADE is starting... -- 11:47:00.531 INFO [22438]: Version from config: 1.0 -- 11:47:00.531 DEBUG [22438]: Connecting to database... -- 11:47:00.531 DEBUG [22438]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:47:00.531 SQL [22438]: pgsql_db_connect() -- 11:47:00.536 DEBUG [22438]: Database connection successful -- 11:47:00.536 INFO [22438]: _SERVER found -- 11:47:00.536 INFO [22438]: REMOTE_ADDR = 192.168.1.13 -- 11:47:00.536 INFO [22438]: SERVER_NAME = oameye.works.coregrade.com -- 11:47:00.536 INFO [22438]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:47:00.536 INFO [22438]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:47:00.536 INFO [22438]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:47:00.547 INFO [22438]: COREGRADE is stopping... -- 11:47:00.547 DEBUG [22438]: Closing database connection -- 11:47:00.547 SQL [22438]: pgsql_close() -- 11:47:00.690 INFO [22438]: COREGRADE is starting... -- 11:47:00.690 INFO [22438]: Version from config: 1.0 -- 11:47:00.690 DEBUG [22438]: Connecting to database... -- 11:47:00.690 DEBUG [22438]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:47:00.690 SQL [22438]: pgsql_db_connect() -- 11:47:00.695 DEBUG [22438]: Database connection successful -- 11:47:00.695 INFO [22438]: _SERVER found -- 11:47:00.695 INFO [22438]: REMOTE_ADDR = 192.168.1.13 -- 11:47:00.695 INFO [22438]: SERVER_NAME = oameye.works.coregrade.com -- 11:47:00.695 INFO [22438]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:47:00.695 INFO [22438]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:47:00.695 INFO [22438]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:47:00.706 INFO [22438]: COREGRADE is stopping... -- 11:47:00.706 DEBUG [22438]: Closing database connection -- 11:47:00.706 SQL [22438]: pgsql_close() -- 11:47:06.016 INFO [22349]: COREGRADE is starting... -- 11:47:06.016 INFO [22349]: Version from config: 1.0 -- 11:47:06.016 DEBUG [22349]: Connecting to database... -- 11:47:06.016 DEBUG [22349]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:47:06.016 SQL [22349]: pgsql_db_connect() -- 11:47:06.021 DEBUG [22349]: Database connection successful -- 11:47:06.021 INFO [22349]: _SERVER found -- 11:47:06.021 INFO [22349]: REMOTE_ADDR = 192.168.1.13 -- 11:47:06.021 INFO [22349]: SERVER_NAME = oameye.works.coregrade.com -- 11:47:06.021 INFO [22349]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:47:06.021 INFO [22349]: QUERY_STRING = /member -- 11:47:06.021 INFO [22349]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:47:06.057 INFO [22349]: COREGRADE is stopping... -- 11:47:06.057 DEBUG [22349]: Closing database connection -- 11:47:06.057 SQL [22349]: pgsql_close() -- 11:47:06.285 INFO [22349]: COREGRADE is starting... -- 11:47:06.286 INFO [22349]: Version from config: 1.0 -- 11:47:06.286 DEBUG [22349]: Connecting to database... -- 11:47:06.286 DEBUG [22349]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:47:06.286 SQL [22349]: pgsql_db_connect() -- 11:47:06.290 DEBUG [22349]: Database connection successful -- 11:47:06.290 INFO [22349]: _SERVER found -- 11:47:06.290 INFO [22349]: REMOTE_ADDR = 192.168.1.13 -- 11:47:06.290 INFO [22349]: SERVER_NAME = oameye.works.coregrade.com -- 11:47:06.290 INFO [22349]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:47:06.290 INFO [22349]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:47:06.290 INFO [22349]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:47:06.301 INFO [22349]: COREGRADE is stopping... -- 11:47:06.302 DEBUG [22349]: Closing database connection -- 11:47:06.302 SQL [22349]: pgsql_close() -- 11:47:07.277 INFO [22349]: COREGRADE is starting... -- 11:47:07.278 INFO [22349]: Version from config: 1.0 -- 11:47:07.278 DEBUG [22349]: Connecting to database... -- 11:47:07.278 DEBUG [22349]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:47:07.278 SQL [22349]: pgsql_db_connect() -- 11:47:07.282 DEBUG [22349]: Database connection successful -- 11:47:07.282 INFO [22349]: _SERVER found -- 11:47:07.282 INFO [22349]: REMOTE_ADDR = 192.168.1.13 -- 11:47:07.282 INFO [22349]: SERVER_NAME = oameye.works.coregrade.com -- 11:47:07.282 INFO [22349]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:47:07.282 INFO [22349]: QUERY_STRING = /member/page -- 11:47:07.283 INFO [22349]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:47:07.319 INFO [22349]: COREGRADE is stopping... -- 11:47:07.319 DEBUG [22349]: Closing database connection -- 11:47:07.319 SQL [22349]: pgsql_close() -- 11:47:07.548 INFO [22349]: COREGRADE is starting... -- 11:47:07.548 INFO [22349]: Version from config: 1.0 -- 11:47:07.548 DEBUG [22349]: Connecting to database... -- 11:47:07.548 DEBUG [22349]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:47:07.548 SQL [22349]: pgsql_db_connect() -- 11:47:07.553 DEBUG [22349]: Database connection successful -- 11:47:07.553 INFO [22349]: _SERVER found -- 11:47:07.553 INFO [22349]: REMOTE_ADDR = 192.168.1.13 -- 11:47:07.553 INFO [22349]: SERVER_NAME = oameye.works.coregrade.com -- 11:47:07.553 INFO [22349]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:47:07.553 INFO [22349]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:47:07.553 INFO [22349]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:47:07.564 INFO [22349]: COREGRADE is stopping... -- 11:47:07.564 DEBUG [22349]: Closing database connection -- 11:47:07.564 SQL [22349]: pgsql_close() -- 11:47:44.860 INFO [20673]: COREGRADE is starting... -- 11:47:44.861 INFO [20673]: Version from config: 1.0 -- 11:47:44.861 DEBUG [20673]: Connecting to database... -- 11:47:44.861 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:47:44.861 SQL [20673]: pgsql_db_connect() -- 11:47:44.865 DEBUG [20673]: Database connection successful -- 11:47:44.865 INFO [20673]: _SERVER found -- 11:47:44.865 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 11:47:44.865 INFO [20673]: SERVER_NAME = oameye.works.coregrade.com -- 11:47:44.865 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:47:44.865 INFO [20673]: QUERY_STRING = /member -- 11:47:44.865 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:47:44.902 INFO [20673]: COREGRADE is stopping... -- 11:47:44.902 DEBUG [20673]: Closing database connection -- 11:47:44.902 SQL [20673]: pgsql_close() -- 11:47:45.095 INFO [20673]: COREGRADE is starting... -- 11:47:45.096 INFO [20673]: Version from config: 1.0 -- 11:47:45.096 DEBUG [20673]: Connecting to database... -- 11:47:45.096 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:47:45.096 SQL [20673]: pgsql_db_connect() -- 11:47:45.100 DEBUG [20673]: Database connection successful -- 11:47:45.100 INFO [20673]: _SERVER found -- 11:47:45.100 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 11:47:45.100 INFO [20673]: SERVER_NAME = oameye.works.coregrade.com -- 11:47:45.100 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:47:45.100 INFO [20673]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:47:45.100 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:47:45.112 INFO [20673]: COREGRADE is stopping... -- 11:47:45.112 DEBUG [20673]: Closing database connection -- 11:47:45.112 SQL [20673]: pgsql_close() -- 11:47:45.118 INFO [20615]: COREGRADE is starting... -- 11:47:45.118 INFO [20615]: Version from config: 1.0 -- 11:47:45.118 DEBUG [20615]: Connecting to database... -- 11:47:45.118 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:47:45.118 SQL [20615]: pgsql_db_connect() -- 11:47:45.122 DEBUG [20615]: Database connection successful -- 11:47:45.122 INFO [20615]: _SERVER found -- 11:47:45.122 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:47:45.122 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:47:45.122 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:47:45.122 INFO [20615]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:47:45.122 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:47:45.134 INFO [20615]: COREGRADE is stopping... -- 11:47:45.134 DEBUG [20615]: Closing database connection -- 11:47:45.134 SQL [20615]: pgsql_close() -- 11:47:46.083 INFO [20615]: COREGRADE is starting... -- 11:47:46.083 INFO [20615]: Version from config: 1.0 -- 11:47:46.083 DEBUG [20615]: Connecting to database... -- 11:47:46.083 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:47:46.083 SQL [20615]: pgsql_db_connect() -- 11:47:46.088 DEBUG [20615]: Database connection successful -- 11:47:46.088 INFO [20615]: _SERVER found -- 11:47:46.088 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:47:46.088 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:47:46.088 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:47:46.088 INFO [20615]: QUERY_STRING = /member/page -- 11:47:46.088 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:47:46.128 INFO [20615]: COREGRADE is stopping... -- 11:47:46.128 DEBUG [20615]: Closing database connection -- 11:47:46.128 SQL [20615]: pgsql_close() -- 11:47:46.399 INFO [20615]: COREGRADE is starting... -- 11:47:46.400 INFO [20615]: Version from config: 1.0 -- 11:47:46.400 DEBUG [20615]: Connecting to database... -- 11:47:46.400 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:47:46.400 SQL [20615]: pgsql_db_connect() -- 11:47:46.404 DEBUG [20615]: Database connection successful -- 11:47:46.404 INFO [20615]: _SERVER found -- 11:47:46.404 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:47:46.404 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:47:46.404 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:47:46.404 INFO [20615]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:47:46.404 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:47:46.416 INFO [20615]: COREGRADE is stopping... -- 11:47:46.416 DEBUG [20615]: Closing database connection -- 11:47:46.416 SQL [20615]: pgsql_close() -- 11:47:49.033 INFO [20615]: COREGRADE is starting... -- 11:47:49.034 INFO [20615]: Version from config: 1.0 -- 11:47:49.034 DEBUG [20615]: Connecting to database... -- 11:47:49.034 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:47:49.034 SQL [20615]: pgsql_db_connect() -- 11:47:49.038 DEBUG [20615]: Database connection successful -- 11:47:49.038 INFO [20615]: _SERVER found -- 11:47:49.038 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:47:49.038 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:47:49.038 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:47:49.038 INFO [20615]: QUERY_STRING = /member -- 11:47:49.038 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:47:49.077 INFO [20615]: COREGRADE is stopping... -- 11:47:49.077 DEBUG [20615]: Closing database connection -- 11:47:49.077 SQL [20615]: pgsql_close() -- 11:47:49.306 INFO [20615]: COREGRADE is starting... -- 11:47:49.306 INFO [20615]: Version from config: 1.0 -- 11:47:49.306 DEBUG [20615]: Connecting to database... -- 11:47:49.306 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:47:49.306 SQL [20615]: pgsql_db_connect() -- 11:47:49.311 INFO [20673]: COREGRADE is starting... -- 11:47:49.312 INFO [20673]: Version from config: 1.0 -- 11:47:49.312 DEBUG [20673]: Connecting to database... -- 11:47:49.312 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:47:49.312 SQL [20673]: pgsql_db_connect() -- 11:47:49.311 DEBUG [20615]: Database connection successful -- 11:47:49.311 INFO [20615]: _SERVER found -- 11:47:49.311 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:47:49.311 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:47:49.311 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:47:49.311 INFO [20615]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:47:49.311 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:47:49.322 INFO [20615]: COREGRADE is stopping... -- 11:47:49.322 DEBUG [20615]: Closing database connection -- 11:47:49.322 SQL [20615]: pgsql_close() -- 11:47:49.316 DEBUG [20673]: Database connection successful -- 11:47:49.316 INFO [20673]: _SERVER found -- 11:47:49.316 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 11:47:49.316 INFO [20673]: SERVER_NAME = oameye.works.coregrade.com -- 11:47:49.316 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:47:49.316 INFO [20673]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:47:49.316 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:47:49.327 INFO [20673]: COREGRADE is stopping... -- 11:47:49.327 DEBUG [20673]: Closing database connection -- 11:47:49.327 SQL [20673]: pgsql_close() -- 11:47:50.630 INFO [20673]: COREGRADE is starting... -- 11:47:50.631 INFO [20673]: Version from config: 1.0 -- 11:47:50.631 DEBUG [20673]: Connecting to database... -- 11:47:50.631 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:47:50.631 SQL [20673]: pgsql_db_connect() -- 11:47:50.635 DEBUG [20673]: Database connection successful -- 11:47:50.635 INFO [20673]: _SERVER found -- 11:47:50.635 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 11:47:50.635 INFO [20673]: SERVER_NAME = oameye.works.coregrade.com -- 11:47:50.635 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:47:50.635 INFO [20673]: QUERY_STRING = /member/page -- 11:47:50.635 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:47:50.672 INFO [20673]: COREGRADE is stopping... -- 11:47:50.672 DEBUG [20673]: Closing database connection -- 11:47:50.672 SQL [20673]: pgsql_close() -- 11:47:50.886 INFO [20673]: COREGRADE is starting... -- 11:47:50.886 INFO [20673]: Version from config: 1.0 -- 11:47:50.886 DEBUG [20673]: Connecting to database... -- 11:47:50.886 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:47:50.886 SQL [20673]: pgsql_db_connect() -- 11:47:50.891 DEBUG [20673]: Database connection successful -- 11:47:50.891 INFO [20673]: _SERVER found -- 11:47:50.891 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 11:47:50.891 INFO [20673]: SERVER_NAME = oameye.works.coregrade.com -- 11:47:50.891 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:47:50.891 INFO [20673]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:47:50.891 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:47:50.902 INFO [20673]: COREGRADE is stopping... -- 11:47:50.902 DEBUG [20673]: Closing database connection -- 11:47:50.902 SQL [20673]: pgsql_close() -- 11:48:19.147 INFO [20616]: COREGRADE is starting... -- 11:48:19.147 INFO [20616]: Version from config: 1.0 -- 11:48:19.147 DEBUG [20616]: Connecting to database... -- 11:48:19.147 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:48:19.148 SQL [20616]: pgsql_db_connect() -- 11:48:19.152 DEBUG [20616]: Database connection successful -- 11:48:19.152 INFO [20616]: _SERVER found -- 11:48:19.152 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 11:48:19.152 INFO [20616]: SERVER_NAME = oameye.works.coregrade.com -- 11:48:19.152 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:48:19.152 INFO [20616]: QUERY_STRING = /member -- 11:48:19.152 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:48:19.189 INFO [20616]: COREGRADE is stopping... -- 11:48:19.189 DEBUG [20616]: Closing database connection -- 11:48:19.189 SQL [20616]: pgsql_close() -- 11:48:19.406 INFO [20616]: COREGRADE is starting... -- 11:48:19.406 INFO [20616]: Version from config: 1.0 -- 11:48:19.407 DEBUG [20616]: Connecting to database... -- 11:48:19.407 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:48:19.407 SQL [20616]: pgsql_db_connect() -- 11:48:19.411 DEBUG [20616]: Database connection successful -- 11:48:19.411 INFO [20616]: _SERVER found -- 11:48:19.411 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 11:48:19.411 INFO [20616]: SERVER_NAME = oameye.works.coregrade.com -- 11:48:19.411 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:48:19.411 INFO [20616]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:48:19.411 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:48:19.422 INFO [20616]: COREGRADE is stopping... -- 11:48:19.423 DEBUG [20616]: Closing database connection -- 11:48:19.423 SQL [20616]: pgsql_close() -- 11:48:19.427 INFO [20616]: COREGRADE is starting... -- 11:48:19.427 INFO [20616]: Version from config: 1.0 -- 11:48:19.427 DEBUG [20616]: Connecting to database... -- 11:48:19.427 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:48:19.427 SQL [20616]: pgsql_db_connect() -- 11:48:19.431 DEBUG [20616]: Database connection successful -- 11:48:19.431 INFO [20616]: _SERVER found -- 11:48:19.431 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 11:48:19.431 INFO [20616]: SERVER_NAME = oameye.works.coregrade.com -- 11:48:19.431 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:48:19.431 INFO [20616]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:48:19.431 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:48:19.442 INFO [20616]: COREGRADE is stopping... -- 11:48:19.443 DEBUG [20616]: Closing database connection -- 11:48:19.443 SQL [20616]: pgsql_close() -- 11:48:20.752 INFO [20616]: COREGRADE is starting... -- 11:48:20.752 INFO [20616]: Version from config: 1.0 -- 11:48:20.752 DEBUG [20616]: Connecting to database... -- 11:48:20.752 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:48:20.752 SQL [20616]: pgsql_db_connect() -- 11:48:20.757 DEBUG [20616]: Database connection successful -- 11:48:20.757 INFO [20616]: _SERVER found -- 11:48:20.757 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 11:48:20.757 INFO [20616]: SERVER_NAME = oameye.works.coregrade.com -- 11:48:20.757 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:48:20.757 INFO [20616]: QUERY_STRING = /member/page -- 11:48:20.757 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:48:20.794 INFO [20616]: COREGRADE is stopping... -- 11:48:20.794 DEBUG [20616]: Closing database connection -- 11:48:20.794 SQL [20616]: pgsql_close() -- 11:48:21.004 INFO [20616]: COREGRADE is starting... -- 11:48:21.004 INFO [20616]: Version from config: 1.0 -- 11:48:21.004 DEBUG [20616]: Connecting to database... -- 11:48:21.004 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:48:21.004 SQL [20616]: pgsql_db_connect() -- 11:48:21.009 DEBUG [20616]: Database connection successful -- 11:48:21.009 INFO [20616]: _SERVER found -- 11:48:21.009 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 11:48:21.009 INFO [20616]: SERVER_NAME = oameye.works.coregrade.com -- 11:48:21.009 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:48:21.009 INFO [20616]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:48:21.009 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:48:21.020 INFO [20616]: COREGRADE is stopping... -- 11:48:21.020 DEBUG [20616]: Closing database connection -- 11:48:21.020 SQL [20616]: pgsql_close() -- 11:48:25.182 INFO [20616]: COREGRADE is starting... -- 11:48:25.182 INFO [20616]: Version from config: 1.0 -- 11:48:25.182 DEBUG [20616]: Connecting to database... -- 11:48:25.182 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:48:25.182 SQL [20616]: pgsql_db_connect() -- 11:48:25.187 DEBUG [20616]: Database connection successful -- 11:48:25.187 INFO [20616]: _SERVER found -- 11:48:25.187 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 11:48:25.187 INFO [20616]: SERVER_NAME = oameye.works.coregrade.com -- 11:48:25.187 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:48:25.187 INFO [20616]: QUERY_STRING = /member -- 11:48:25.187 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:48:25.223 INFO [20616]: COREGRADE is stopping... -- 11:48:25.223 DEBUG [20616]: Closing database connection -- 11:48:25.223 SQL [20616]: pgsql_close() -- 11:48:25.417 INFO [20616]: COREGRADE is starting... -- 11:48:25.417 INFO [20616]: Version from config: 1.0 -- 11:48:25.417 DEBUG [20616]: Connecting to database... -- 11:48:25.417 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:48:25.417 SQL [20616]: pgsql_db_connect() -- 11:48:25.422 DEBUG [20616]: Database connection successful -- 11:48:25.422 INFO [20616]: _SERVER found -- 11:48:25.422 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 11:48:25.422 INFO [20616]: SERVER_NAME = oameye.works.coregrade.com -- 11:48:25.422 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:48:25.422 INFO [20616]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:48:25.422 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:48:25.433 INFO [20616]: COREGRADE is stopping... -- 11:48:25.433 DEBUG [20616]: Closing database connection -- 11:48:25.433 SQL [20616]: pgsql_close() -- 11:48:25.448 INFO [20672]: COREGRADE is starting... -- 11:48:25.448 INFO [20672]: Version from config: 1.0 -- 11:48:25.448 DEBUG [20672]: Connecting to database... -- 11:48:25.448 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:48:25.448 SQL [20672]: pgsql_db_connect() -- 11:48:25.452 DEBUG [20672]: Database connection successful -- 11:48:25.452 INFO [20672]: _SERVER found -- 11:48:25.452 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 11:48:25.452 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 11:48:25.452 INFO [20672]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:48:25.452 INFO [20672]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:48:25.452 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:48:25.464 INFO [20672]: COREGRADE is stopping... -- 11:48:25.464 DEBUG [20672]: Closing database connection -- 11:48:25.464 SQL [20672]: pgsql_close() -- 11:48:26.494 INFO [20672]: COREGRADE is starting... -- 11:48:26.495 INFO [20672]: Version from config: 1.0 -- 11:48:26.495 DEBUG [20672]: Connecting to database... -- 11:48:26.495 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:48:26.495 SQL [20672]: pgsql_db_connect() -- 11:48:26.499 DEBUG [20672]: Database connection successful -- 11:48:26.499 INFO [20672]: _SERVER found -- 11:48:26.499 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 11:48:26.499 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 11:48:26.499 INFO [20672]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:48:26.499 INFO [20672]: QUERY_STRING = /member/page -- 11:48:26.499 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:48:26.537 INFO [20672]: COREGRADE is stopping... -- 11:48:26.537 DEBUG [20672]: Closing database connection -- 11:48:26.537 SQL [20672]: pgsql_close() -- 11:48:26.743 INFO [20672]: COREGRADE is starting... -- 11:48:26.743 INFO [20672]: Version from config: 1.0 -- 11:48:26.743 DEBUG [20672]: Connecting to database... -- 11:48:26.743 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:48:26.743 SQL [20672]: pgsql_db_connect() -- 11:48:26.748 DEBUG [20672]: Database connection successful -- 11:48:26.748 INFO [20672]: _SERVER found -- 11:48:26.748 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 11:48:26.748 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 11:48:26.748 INFO [20672]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:48:26.748 INFO [20672]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:48:26.748 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:48:26.759 INFO [20672]: COREGRADE is stopping... -- 11:48:26.759 DEBUG [20672]: Closing database connection -- 11:48:26.759 SQL [20672]: pgsql_close() -- 11:48:31.500 INFO [20672]: COREGRADE is starting... -- 11:48:31.500 INFO [20672]: Version from config: 1.0 -- 11:48:31.500 DEBUG [20672]: Connecting to database... -- 11:48:31.500 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:48:31.500 SQL [20672]: pgsql_db_connect() -- 11:48:31.505 DEBUG [20672]: Database connection successful -- 11:48:31.505 INFO [20672]: _SERVER found -- 11:48:31.505 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 11:48:31.505 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 11:48:31.505 INFO [20672]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:48:31.505 INFO [20672]: QUERY_STRING = /member -- 11:48:31.505 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:48:31.541 INFO [20672]: COREGRADE is stopping... -- 11:48:31.541 DEBUG [20672]: Closing database connection -- 11:48:31.541 SQL [20672]: pgsql_close() -- 11:48:31.773 INFO [20672]: COREGRADE is starting... -- 11:48:31.773 INFO [20672]: Version from config: 1.0 -- 11:48:31.773 DEBUG [20672]: Connecting to database... -- 11:48:31.773 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:48:31.773 SQL [20672]: pgsql_db_connect() -- 11:48:31.778 DEBUG [20672]: Database connection successful -- 11:48:31.778 INFO [20672]: _SERVER found -- 11:48:31.778 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 11:48:31.778 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 11:48:31.778 INFO [20672]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:48:31.778 INFO [20672]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:48:31.778 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:48:31.789 INFO [20672]: COREGRADE is stopping... -- 11:48:31.789 DEBUG [20672]: Closing database connection -- 11:48:31.789 SQL [20672]: pgsql_close() -- 11:48:32.745 INFO [20672]: COREGRADE is starting... -- 11:48:32.746 INFO [20672]: Version from config: 1.0 -- 11:48:32.746 DEBUG [20672]: Connecting to database... -- 11:48:32.746 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:48:32.746 SQL [20672]: pgsql_db_connect() -- 11:48:32.750 DEBUG [20672]: Database connection successful -- 11:48:32.750 INFO [20672]: _SERVER found -- 11:48:32.750 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 11:48:32.750 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 11:48:32.750 INFO [20672]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:48:32.750 INFO [20672]: QUERY_STRING = /member/page -- 11:48:32.750 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:48:32.787 INFO [20672]: COREGRADE is stopping... -- 11:48:32.787 DEBUG [20672]: Closing database connection -- 11:48:32.787 SQL [20672]: pgsql_close() -- 11:48:32.954 INFO [20672]: COREGRADE is starting... -- 11:48:32.955 INFO [20672]: Version from config: 1.0 -- 11:48:32.955 DEBUG [20672]: Connecting to database... -- 11:48:32.955 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:48:32.955 SQL [20672]: pgsql_db_connect() -- 11:48:32.959 DEBUG [20672]: Database connection successful -- 11:48:32.959 INFO [20672]: _SERVER found -- 11:48:32.959 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 11:48:32.959 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 11:48:32.959 INFO [20672]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:48:32.959 INFO [20672]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:48:32.959 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:48:32.970 INFO [20672]: COREGRADE is stopping... -- 11:48:32.971 DEBUG [20672]: Closing database connection -- 11:48:32.971 SQL [20672]: pgsql_close() -- 11:49:13.092 INFO [20617]: COREGRADE is starting... -- 11:49:13.092 INFO [20617]: Version from config: 1.0 -- 11:49:13.092 DEBUG [20617]: Connecting to database... -- 11:49:13.092 DEBUG [20617]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:13.092 SQL [20617]: pgsql_db_connect() -- 11:49:13.097 DEBUG [20617]: Database connection successful -- 11:49:13.097 INFO [20617]: _SERVER found -- 11:49:13.097 INFO [20617]: REMOTE_ADDR = 192.168.1.13 -- 11:49:13.097 INFO [20617]: SERVER_NAME = oameye.works.coregrade.com -- 11:49:13.097 INFO [20617]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:49:13.097 INFO [20617]: QUERY_STRING = /member -- 11:49:13.097 INFO [20617]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:49:13.133 INFO [20617]: COREGRADE is stopping... -- 11:49:13.134 DEBUG [20617]: Closing database connection -- 11:49:13.134 SQL [20617]: pgsql_close() -- 11:49:13.322 INFO [20617]: COREGRADE is starting... -- 11:49:13.322 INFO [20617]: Version from config: 1.0 -- 11:49:13.322 DEBUG [20617]: Connecting to database... -- 11:49:13.322 DEBUG [20617]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:13.322 SQL [20617]: pgsql_db_connect() -- 11:49:13.327 DEBUG [20617]: Database connection successful -- 11:49:13.327 INFO [20617]: _SERVER found -- 11:49:13.327 INFO [20617]: REMOTE_ADDR = 192.168.1.13 -- 11:49:13.327 INFO [20617]: SERVER_NAME = oameye.works.coregrade.com -- 11:49:13.327 INFO [20617]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:49:13.327 INFO [20617]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:49:13.327 INFO [20617]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:49:13.338 INFO [20617]: COREGRADE is stopping... -- 11:49:13.338 DEBUG [20617]: Closing database connection -- 11:49:13.338 SQL [20617]: pgsql_close() -- 11:49:13.344 INFO [20617]: COREGRADE is starting... -- 11:49:13.344 INFO [20617]: Version from config: 1.0 -- 11:49:13.344 DEBUG [20617]: Connecting to database... -- 11:49:13.344 DEBUG [20617]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:13.344 SQL [20617]: pgsql_db_connect() -- 11:49:13.349 DEBUG [20617]: Database connection successful -- 11:49:13.349 INFO [20617]: _SERVER found -- 11:49:13.349 INFO [20617]: REMOTE_ADDR = 192.168.1.13 -- 11:49:13.349 INFO [20617]: SERVER_NAME = oameye.works.coregrade.com -- 11:49:13.349 INFO [20617]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:49:13.349 INFO [20617]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:49:13.349 INFO [20617]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:49:13.360 INFO [20617]: COREGRADE is stopping... -- 11:49:13.360 DEBUG [20617]: Closing database connection -- 11:49:13.360 SQL [20617]: pgsql_close() -- 11:49:30.829 INFO [22219]: COREGRADE is starting... -- 11:49:30.829 INFO [22219]: Version from config: 1.0 -- 11:49:30.829 DEBUG [22219]: Connecting to database... -- 11:49:30.830 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:30.830 SQL [22219]: pgsql_db_connect() -- 11:49:30.834 DEBUG [22219]: Database connection successful -- 11:49:30.834 INFO [22219]: _SERVER found -- 11:49:30.834 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 11:49:30.834 INFO [22219]: SERVER_NAME = oameye.works.coregrade.com -- 11:49:30.834 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:49:30.834 INFO [22219]: QUERY_STRING = /member/page -- 11:49:30.834 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:49:30.872 INFO [22219]: COREGRADE is stopping... -- 11:49:30.872 DEBUG [22219]: Closing database connection -- 11:49:30.872 SQL [22219]: pgsql_close() -- 11:49:31.072 INFO [22219]: COREGRADE is starting... -- 11:49:31.072 INFO [22219]: Version from config: 1.0 -- 11:49:31.072 DEBUG [22219]: Connecting to database... -- 11:49:31.072 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:31.072 SQL [22219]: pgsql_db_connect() -- 11:49:31.077 DEBUG [22219]: Database connection successful -- 11:49:31.077 INFO [22219]: _SERVER found -- 11:49:31.077 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 11:49:31.077 INFO [22219]: SERVER_NAME = oameye.works.coregrade.com -- 11:49:31.077 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:49:31.077 INFO [22219]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:49:31.077 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:49:31.088 INFO [22219]: COREGRADE is stopping... -- 11:49:31.088 DEBUG [22219]: Closing database connection -- 11:49:31.088 SQL [22219]: pgsql_close() -- 11:49:40.099 INFO [20618]: COREGRADE is starting... -- 11:49:40.099 INFO [20618]: Version from config: 1.0 -- 11:49:40.099 DEBUG [20618]: Connecting to database... -- 11:49:40.099 DEBUG [20618]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:40.099 SQL [20618]: pgsql_db_connect() -- 11:49:40.104 DEBUG [20618]: Database connection successful -- 11:49:40.104 INFO [20618]: _SERVER found -- 11:49:40.104 INFO [20618]: REMOTE_ADDR = 192.168.1.13 -- 11:49:40.104 INFO [20618]: SERVER_NAME = oameye.works.coregrade.com -- 11:49:40.104 INFO [20618]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:49:40.104 INFO [20618]: QUERY_STRING = /member/viewCardAddAction -- 11:49:40.104 INFO [20618]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:49:40.139 INFO [20618]: COREGRADE is stopping... -- 11:49:40.139 DEBUG [20618]: Closing database connection -- 11:49:40.139 SQL [20618]: pgsql_close() -- 11:49:52.578 INFO [20614]: COREGRADE is starting... -- 11:49:52.578 INFO [20614]: Version from config: 1.0 -- 11:49:52.578 DEBUG [20614]: Connecting to database... -- 11:49:52.578 DEBUG [20614]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:52.578 SQL [20614]: pgsql_db_connect() -- 11:49:52.583 DEBUG [20614]: Database connection successful -- 11:49:52.583 INFO [20614]: _SERVER found -- 11:49:52.583 INFO [20614]: REMOTE_ADDR = 192.168.1.13 -- 11:49:52.583 INFO [20614]: SERVER_NAME = oameye.works.coregrade.com -- 11:49:52.583 INFO [20614]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:49:52.583 INFO [20614]: QUERY_STRING = /member/page -- 11:49:52.583 INFO [20614]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:49:52.620 INFO [20614]: COREGRADE is stopping... -- 11:49:52.620 DEBUG [20614]: Closing database connection -- 11:49:52.620 SQL [20614]: pgsql_close() -- 11:49:52.908 INFO [20614]: COREGRADE is starting... -- 11:49:52.908 INFO [20614]: Version from config: 1.0 -- 11:49:52.908 DEBUG [20614]: Connecting to database... -- 11:49:52.909 DEBUG [20614]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:52.909 SQL [20614]: pgsql_db_connect() -- 11:49:52.913 DEBUG [20614]: Database connection successful -- 11:49:52.913 INFO [20614]: _SERVER found -- 11:49:52.913 INFO [20614]: REMOTE_ADDR = 192.168.1.13 -- 11:49:52.913 INFO [20614]: SERVER_NAME = oameye.works.coregrade.com -- 11:49:52.913 INFO [20614]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:49:52.913 INFO [20614]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:49:52.913 INFO [20614]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:49:52.924 INFO [20614]: COREGRADE is stopping... -- 11:49:52.924 DEBUG [20614]: Closing database connection -- 11:49:52.924 SQL [20614]: pgsql_close() -- 11:49:54.308 INFO [20614]: COREGRADE is starting... -- 11:49:54.309 INFO [20614]: Version from config: 1.0 -- 11:49:54.309 DEBUG [20614]: Connecting to database... -- 11:49:54.309 DEBUG [20614]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:54.309 SQL [20614]: pgsql_db_connect() -- 11:49:54.313 DEBUG [20614]: Database connection successful -- 11:49:54.313 INFO [20614]: _SERVER found -- 11:49:54.313 INFO [20614]: REMOTE_ADDR = 192.168.1.13 -- 11:49:54.313 INFO [20614]: SERVER_NAME = oameye.works.coregrade.com -- 11:49:54.313 INFO [20614]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:49:54.313 INFO [20614]: QUERY_STRING = /member/page -- 11:49:54.313 INFO [20614]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:49:54.350 INFO [20614]: COREGRADE is stopping... -- 11:49:54.350 DEBUG [20614]: Closing database connection -- 11:49:54.350 SQL [20614]: pgsql_close() -- 11:49:54.555 INFO [20614]: COREGRADE is starting... -- 11:49:54.556 INFO [20614]: Version from config: 1.0 -- 11:49:54.556 DEBUG [20614]: Connecting to database... -- 11:49:54.556 DEBUG [20614]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:54.556 SQL [20614]: pgsql_db_connect() -- 11:49:54.560 DEBUG [20614]: Database connection successful -- 11:49:54.560 INFO [20614]: _SERVER found -- 11:49:54.560 INFO [20614]: REMOTE_ADDR = 192.168.1.13 -- 11:49:54.560 INFO [20614]: SERVER_NAME = oameye.works.coregrade.com -- 11:49:54.560 INFO [20614]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:49:54.560 INFO [20614]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:49:54.560 INFO [20614]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:49:54.571 INFO [20614]: COREGRADE is stopping... -- 11:49:54.572 DEBUG [20614]: Closing database connection -- 11:49:54.572 SQL [20614]: pgsql_close() -- 11:51:11.557 INFO [22438]: COREGRADE is starting... -- 11:51:11.558 INFO [22438]: Version from config: 1.0 -- 11:51:11.558 DEBUG [22438]: Connecting to database... -- 11:51:11.558 DEBUG [22438]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:51:11.558 SQL [22438]: pgsql_db_connect() -- 11:51:11.562 DEBUG [22438]: Database connection successful -- 11:51:11.562 INFO [22438]: _SERVER found -- 11:51:11.562 INFO [22438]: REMOTE_ADDR = 192.168.1.13 -- 11:51:11.562 INFO [22438]: SERVER_NAME = oameye.works.coregrade.com -- 11:51:11.562 INFO [22438]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:51:11.562 INFO [22438]: QUERY_STRING = /auth -- 11:51:11.562 INFO [22438]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:51:11.593 INFO [22438]: COREGRADE is stopping... -- 11:51:11.593 DEBUG [22438]: Closing database connection -- 11:51:11.593 SQL [22438]: pgsql_close() -- 11:51:11.714 INFO [22438]: COREGRADE is starting... -- 11:51:11.714 INFO [22438]: Version from config: 1.0 -- 11:51:11.714 DEBUG [22438]: Connecting to database... -- 11:51:11.714 DEBUG [22438]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:51:11.714 SQL [22438]: pgsql_db_connect() -- 11:51:11.721 INFO [22349]: COREGRADE is starting... -- 11:51:11.721 INFO [22349]: Version from config: 1.0 -- 11:51:11.721 DEBUG [22349]: Connecting to database... -- 11:51:11.721 DEBUG [22349]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:51:11.721 SQL [22349]: pgsql_db_connect() -- 11:51:11.718 DEBUG [22438]: Database connection successful -- 11:51:11.718 INFO [22438]: _SERVER found -- 11:51:11.718 INFO [22438]: REMOTE_ADDR = 192.168.1.13 -- 11:51:11.718 INFO [22438]: SERVER_NAME = oameye.works.coregrade.com -- 11:51:11.718 INFO [22438]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:51:11.718 INFO [22438]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:51:11.718 INFO [22438]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:51:11.729 INFO [22438]: COREGRADE is stopping... -- 11:51:11.729 DEBUG [22438]: Closing database connection -- 11:51:11.729 SQL [22438]: pgsql_close() -- 11:51:11.725 DEBUG [22349]: Database connection successful -- 11:51:11.725 INFO [22349]: _SERVER found -- 11:51:11.725 INFO [22349]: REMOTE_ADDR = 192.168.1.13 -- 11:51:11.725 INFO [22349]: SERVER_NAME = oameye.works.coregrade.com -- 11:51:11.725 INFO [22349]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:51:11.725 INFO [22349]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:51:11.725 INFO [22349]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:51:11.736 INFO [22349]: COREGRADE is stopping... -- 11:51:11.736 DEBUG [22349]: Closing database connection -- 11:51:11.736 SQL [22349]: pgsql_close() -- 11:51:43.329 INFO [20615]: COREGRADE is starting... -- 11:51:43.329 INFO [20615]: Version from config: 1.0 -- 11:51:43.329 DEBUG [20615]: Connecting to database... -- 11:51:43.329 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:51:43.329 SQL [20615]: pgsql_db_connect() -- 11:51:43.333 DEBUG [20615]: Database connection successful -- 11:51:43.333 INFO [20615]: _SERVER found -- 11:51:43.333 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:51:43.333 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:51:43.333 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:51:43.333 INFO [20615]: QUERY_STRING = /member -- 11:51:43.333 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:51:43.371 INFO [20615]: COREGRADE is stopping... -- 11:51:43.371 DEBUG [20615]: Closing database connection -- 11:51:43.371 SQL [20615]: pgsql_close() -- 11:51:43.557 INFO [20615]: COREGRADE is starting... -- 11:51:43.557 INFO [20615]: Version from config: 1.0 -- 11:51:43.557 DEBUG [20615]: Connecting to database... -- 11:51:43.557 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:51:43.557 SQL [20615]: pgsql_db_connect() -- 11:51:43.561 DEBUG [20615]: Database connection successful -- 11:51:43.561 INFO [20615]: _SERVER found -- 11:51:43.561 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:51:43.561 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:51:43.561 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:51:43.561 INFO [20615]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:51:43.561 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:51:43.572 INFO [20615]: COREGRADE is stopping... -- 11:51:43.572 DEBUG [20615]: Closing database connection -- 11:51:43.572 SQL [20615]: pgsql_close() -- 11:51:43.580 INFO [20615]: COREGRADE is starting... -- 11:51:43.581 INFO [20615]: Version from config: 1.0 -- 11:51:43.581 DEBUG [20615]: Connecting to database... -- 11:51:43.581 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:51:43.581 SQL [20615]: pgsql_db_connect() -- 11:51:43.585 DEBUG [20615]: Database connection successful -- 11:51:43.585 INFO [20615]: _SERVER found -- 11:51:43.585 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:51:43.585 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:51:43.585 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:51:43.585 INFO [20615]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:51:43.585 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:51:43.596 INFO [20615]: COREGRADE is stopping... -- 11:51:43.596 DEBUG [20615]: Closing database connection -- 11:51:43.596 SQL [20615]: pgsql_close() -- 11:51:44.860 INFO [20615]: COREGRADE is starting... -- 11:51:44.860 INFO [20615]: Version from config: 1.0 -- 11:51:44.860 DEBUG [20615]: Connecting to database... -- 11:51:44.860 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:51:44.860 SQL [20615]: pgsql_db_connect() -- 11:51:44.864 DEBUG [20615]: Database connection successful -- 11:51:44.864 INFO [20615]: _SERVER found -- 11:51:44.864 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:51:44.864 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:51:44.864 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:51:44.864 INFO [20615]: QUERY_STRING = /member/page -- 11:51:44.864 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:51:44.903 INFO [20615]: COREGRADE is stopping... -- 11:51:44.903 DEBUG [20615]: Closing database connection -- 11:51:44.903 SQL [20615]: pgsql_close() -- 11:51:45.189 INFO [20615]: COREGRADE is starting... -- 11:51:45.189 INFO [20615]: Version from config: 1.0 -- 11:51:45.189 DEBUG [20615]: Connecting to database... -- 11:51:45.189 DEBUG [20615]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:51:45.189 SQL [20615]: pgsql_db_connect() -- 11:51:45.193 DEBUG [20615]: Database connection successful -- 11:51:45.193 INFO [20615]: _SERVER found -- 11:51:45.193 INFO [20615]: REMOTE_ADDR = 192.168.1.13 -- 11:51:45.193 INFO [20615]: SERVER_NAME = oameye.works.coregrade.com -- 11:51:45.193 INFO [20615]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:51:45.193 INFO [20615]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:51:45.193 INFO [20615]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:51:45.204 INFO [20615]: COREGRADE is stopping... -- 11:51:45.204 DEBUG [20615]: Closing database connection -- 11:51:45.204 SQL [20615]: pgsql_close() -- 11:51:58.514 INFO [20673]: COREGRADE is starting... -- 11:51:58.515 INFO [20673]: Version from config: 1.0 -- 11:51:58.515 DEBUG [20673]: Connecting to database... -- 11:51:58.515 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:51:58.515 SQL [20673]: pgsql_db_connect() -- 11:51:58.519 DEBUG [20673]: Database connection successful -- 11:51:58.519 INFO [20673]: _SERVER found -- 11:51:58.519 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 11:51:58.519 INFO [20673]: SERVER_NAME = oameye.works.coregrade.com -- 11:51:58.519 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:51:58.519 INFO [20673]: QUERY_STRING = /member -- 11:51:58.519 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:51:58.554 INFO [20673]: COREGRADE is stopping... -- 11:51:58.554 DEBUG [20673]: Closing database connection -- 11:51:58.554 SQL [20673]: pgsql_close() -- 11:51:58.635 INFO [20673]: COREGRADE is starting... -- 11:51:58.636 INFO [20673]: Version from config: 1.0 -- 11:51:58.636 DEBUG [20673]: Connecting to database... -- 11:51:58.636 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:51:58.636 SQL [20673]: pgsql_db_connect() -- 11:51:58.640 DEBUG [20673]: Database connection successful -- 11:51:58.640 INFO [20673]: _SERVER found -- 11:51:58.640 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 11:51:58.640 INFO [20673]: SERVER_NAME = oameye.works.coregrade.com -- 11:51:58.640 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:51:58.640 INFO [20673]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:51:58.640 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:51:58.651 INFO [20673]: COREGRADE is stopping... -- 11:51:58.651 DEBUG [20673]: Closing database connection -- 11:51:58.651 SQL [20673]: pgsql_close() -- 11:51:58.812 INFO [20673]: COREGRADE is starting... -- 11:51:58.812 INFO [20673]: Version from config: 1.0 -- 11:51:58.812 DEBUG [20673]: Connecting to database... -- 11:51:58.812 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:51:58.812 SQL [20673]: pgsql_db_connect() -- 11:51:58.816 DEBUG [20673]: Database connection successful -- 11:51:58.816 INFO [20673]: _SERVER found -- 11:51:58.816 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 11:51:58.816 INFO [20673]: SERVER_NAME = oameye.works.coregrade.com -- 11:51:58.816 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:51:58.816 INFO [20673]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:51:58.816 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:51:58.827 INFO [20673]: COREGRADE is stopping... -- 11:51:58.827 DEBUG [20673]: Closing database connection -- 11:51:58.827 SQL [20673]: pgsql_close() -- 11:51:59.567 INFO [20673]: COREGRADE is starting... -- 11:51:59.568 INFO [20673]: Version from config: 1.0 -- 11:51:59.568 DEBUG [20673]: Connecting to database... -- 11:51:59.568 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:51:59.568 SQL [20673]: pgsql_db_connect() -- 11:51:59.572 DEBUG [20673]: Database connection successful -- 11:51:59.572 INFO [20673]: _SERVER found -- 11:51:59.572 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 11:51:59.572 INFO [20673]: SERVER_NAME = oameye.works.coregrade.com -- 11:51:59.572 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2a0josqj8fcdj51hh85recgrt8b68572 -- 11:51:59.572 INFO [20673]: QUERY_STRING = /member/page -- 11:51:59.572 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:51:59.607 INFO [20673]: COREGRADE is stopping... -- 11:51:59.607 DEBUG [20673]: Closing database connection -- 11:51:59.608 SQL [20673]: pgsql_close() -- 11:51:59.891 INFO [20673]: COREGRADE is starting... -- 11:51:59.891 INFO [20673]: Version from config: 1.0 -- 11:51:59.891 DEBUG [20673]: Connecting to database... -- 11:51:59.891 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:51:59.891 SQL [20673]: pgsql_db_connect() -- 11:51:59.895 DEBUG [20673]: Database connection successful -- 11:51:59.895 INFO [20673]: _SERVER found -- 11:51:59.895 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 11:51:59.895 INFO [20673]: SERVER_NAME = oameye.works.coregrade.com -- 11:51:59.895 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=i8ab6eik6t88snn7prm8gpsv06v4kiul -- 11:51:59.895 INFO [20673]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:51:59.895 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:51:59.906 INFO [20673]: COREGRADE is stopping... -- 11:51:59.906 DEBUG [20673]: Closing database connection -- 11:51:59.906 SQL [20673]: pgsql_close() -- 11:52:03.534 INFO [20673]: COREGRADE is starting... -- 11:52:03.535 INFO [20673]: Version from config: 1.0 -- 11:52:03.535 DEBUG [20673]: Connecting to database... -- 11:52:03.535 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:52:03.535 SQL [20673]: pgsql_db_connect() -- 11:52:03.539 DEBUG [20673]: Database connection successful -- 11:52:03.539 INFO [20673]: _SERVER found -- 11:52:03.539 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 11:52:03.539 INFO [20673]: SERVER_NAME = oameye.works.coregrade.com -- 11:52:03.539 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=i8ab6eik6t88snn7prm8gpsv06v4kiul -- 11:52:03.539 INFO [20673]: QUERY_STRING = /member/viewCardAddAction -- 11:52:03.539 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:52:03.572 INFO [20673]: COREGRADE is stopping... -- 11:52:03.572 DEBUG [20673]: Closing database connection -- 11:52:03.572 SQL [20673]: pgsql_close() -- 11:52:04.591 INFO [20673]: COREGRADE is starting... -- 11:52:04.591 INFO [20673]: Version from config: 1.0 -- 11:52:04.591 DEBUG [20673]: Connecting to database... -- 11:52:04.591 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:52:04.591 SQL [20673]: pgsql_db_connect() -- 11:52:04.595 DEBUG [20673]: Database connection successful -- 11:52:04.595 INFO [20673]: _SERVER found -- 11:52:04.595 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 11:52:04.595 INFO [20673]: SERVER_NAME = oameye.works.coregrade.com -- 11:52:04.595 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=i8ab6eik6t88snn7prm8gpsv06v4kiul -- 11:52:04.595 INFO [20673]: QUERY_STRING = /member/page -- 11:52:04.595 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:52:04.630 INFO [20673]: COREGRADE is stopping... -- 11:52:04.630 DEBUG [20673]: Closing database connection -- 11:52:04.630 SQL [20673]: pgsql_close() -- 11:52:04.845 INFO [20673]: COREGRADE is starting... -- 11:52:04.845 INFO [20673]: Version from config: 1.0 -- 11:52:04.845 DEBUG [20673]: Connecting to database... -- 11:52:04.845 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:52:04.845 SQL [20673]: pgsql_db_connect() -- 11:52:04.849 DEBUG [20673]: Database connection successful -- 11:52:04.849 INFO [20673]: _SERVER found -- 11:52:04.849 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 11:52:04.849 INFO [20673]: SERVER_NAME = oameye.works.coregrade.com -- 11:52:04.849 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=i8ab6eik6t88snn7prm8gpsv06v4kiul -- 11:52:04.849 INFO [20673]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:52:04.849 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:52:04.860 INFO [20673]: COREGRADE is stopping... -- 11:52:04.860 DEBUG [20673]: Closing database connection -- 11:52:04.860 SQL [20673]: pgsql_close() -- 11:52:06.127 INFO [20673]: COREGRADE is starting... -- 11:52:06.127 INFO [20673]: Version from config: 1.0 -- 11:52:06.127 DEBUG [20673]: Connecting to database... -- 11:52:06.127 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:52:06.127 SQL [20673]: pgsql_db_connect() -- 11:52:06.131 DEBUG [20673]: Database connection successful -- 11:52:06.131 INFO [20673]: _SERVER found -- 11:52:06.131 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 11:52:06.131 INFO [20673]: SERVER_NAME = oameye.works.coregrade.com -- 11:52:06.131 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=i8ab6eik6t88snn7prm8gpsv06v4kiul -- 11:52:06.131 INFO [20673]: QUERY_STRING = /member/page -- 11:52:06.131 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:52:06.167 INFO [20673]: COREGRADE is stopping... -- 11:52:06.167 DEBUG [20673]: Closing database connection -- 11:52:06.167 SQL [20673]: pgsql_close() -- 11:52:06.365 INFO [20673]: COREGRADE is starting... -- 11:52:06.365 INFO [20673]: Version from config: 1.0 -- 11:52:06.365 DEBUG [20673]: Connecting to database... -- 11:52:06.365 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:52:06.365 SQL [20673]: pgsql_db_connect() -- 11:52:06.369 DEBUG [20673]: Database connection successful -- 11:52:06.369 INFO [20673]: _SERVER found -- 11:52:06.369 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 11:52:06.369 INFO [20673]: SERVER_NAME = oameye.works.coregrade.com -- 11:52:06.369 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=i8ab6eik6t88snn7prm8gpsv06v4kiul -- 11:52:06.369 INFO [20673]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:52:06.369 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:52:06.380 INFO [20673]: COREGRADE is stopping... -- 11:52:06.380 DEBUG [20673]: Closing database connection -- 11:52:06.380 SQL [20673]: pgsql_close() -- 11:52:09.006 INFO [20673]: COREGRADE is starting... -- 11:52:09.006 INFO [20673]: Version from config: 1.0 -- 11:52:09.006 DEBUG [20673]: Connecting to database... -- 11:52:09.006 DEBUG [20673]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:52:09.006 SQL [20673]: pgsql_db_connect() -- 11:52:09.010 DEBUG [20673]: Database connection successful -- 11:52:09.010 INFO [20673]: _SERVER found -- 11:52:09.010 INFO [20673]: REMOTE_ADDR = 192.168.1.13 -- 11:52:09.010 INFO [20673]: SERVER_NAME = oameye.works.coregrade.com -- 11:52:09.010 INFO [20673]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=i8ab6eik6t88snn7prm8gpsv06v4kiul -- 11:52:09.010 INFO [20673]: QUERY_STRING = /member/viewCardAddAction -- 11:52:09.010 INFO [20673]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:52:09.041 INFO [20673]: COREGRADE is stopping... -- 11:52:09.041 DEBUG [20673]: Closing database connection -- 11:52:09.041 SQL [20673]: pgsql_close() -- 11:53:46.572 INFO [20616]: COREGRADE is starting... -- 11:53:46.572 INFO [20616]: Version from config: 1.0 -- 11:53:46.572 DEBUG [20616]: Connecting to database... -- 11:53:46.572 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:53:46.572 SQL [20616]: pgsql_db_connect() -- 11:53:46.576 DEBUG [20616]: Database connection successful -- 11:53:46.576 INFO [20616]: _SERVER found -- 11:53:46.576 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 11:53:46.576 INFO [20616]: SERVER_NAME = oameye.works.coregrade.com -- 11:53:46.576 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=i8ab6eik6t88snn7prm8gpsv06v4kiul -- 11:53:46.576 INFO [20616]: QUERY_STRING = /member -- 11:53:46.576 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:53:46.612 INFO [20616]: COREGRADE is stopping... -- 11:53:46.612 DEBUG [20616]: Closing database connection -- 11:53:46.612 SQL [20616]: pgsql_close() -- 11:53:46.819 INFO [20616]: COREGRADE is starting... -- 11:53:46.819 INFO [20616]: Version from config: 1.0 -- 11:53:46.819 DEBUG [20616]: Connecting to database... -- 11:53:46.819 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:53:46.819 SQL [20616]: pgsql_db_connect() -- 11:53:46.824 DEBUG [20616]: Database connection successful -- 11:53:46.824 INFO [20616]: _SERVER found -- 11:53:46.824 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 11:53:46.824 INFO [20616]: SERVER_NAME = oameye.works.coregrade.com -- 11:53:46.824 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=i8ab6eik6t88snn7prm8gpsv06v4kiul -- 11:53:46.824 INFO [20616]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:53:46.824 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:53:46.835 INFO [20616]: COREGRADE is stopping... -- 11:53:46.835 DEBUG [20616]: Closing database connection -- 11:53:46.835 SQL [20616]: pgsql_close() -- 11:53:46.854 INFO [20616]: COREGRADE is starting... -- 11:53:46.854 INFO [20616]: Version from config: 1.0 -- 11:53:46.854 DEBUG [20616]: Connecting to database... -- 11:53:46.854 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:53:46.854 SQL [20616]: pgsql_db_connect() -- 11:53:46.858 DEBUG [20616]: Database connection successful -- 11:53:46.858 INFO [20616]: _SERVER found -- 11:53:46.858 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 11:53:46.858 INFO [20616]: SERVER_NAME = oameye.works.coregrade.com -- 11:53:46.858 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=i8ab6eik6t88snn7prm8gpsv06v4kiul -- 11:53:46.858 INFO [20616]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:53:46.858 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:53:46.869 INFO [20616]: COREGRADE is stopping... -- 11:53:46.869 DEBUG [20616]: Closing database connection -- 11:53:46.869 SQL [20616]: pgsql_close() -- 11:53:47.857 INFO [20616]: COREGRADE is starting... -- 11:53:47.857 INFO [20616]: Version from config: 1.0 -- 11:53:47.857 DEBUG [20616]: Connecting to database... -- 11:53:47.857 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:53:47.857 SQL [20616]: pgsql_db_connect() -- 11:53:47.861 DEBUG [20616]: Database connection successful -- 11:53:47.861 INFO [20616]: _SERVER found -- 11:53:47.861 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 11:53:47.861 INFO [20616]: SERVER_NAME = oameye.works.coregrade.com -- 11:53:47.862 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=i8ab6eik6t88snn7prm8gpsv06v4kiul -- 11:53:47.862 INFO [20616]: QUERY_STRING = /member/page -- 11:53:47.862 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:53:47.897 INFO [20616]: COREGRADE is stopping... -- 11:53:47.897 DEBUG [20616]: Closing database connection -- 11:53:47.897 SQL [20616]: pgsql_close() -- 11:53:48.150 INFO [20616]: COREGRADE is starting... -- 11:53:48.150 INFO [20616]: Version from config: 1.0 -- 11:53:48.150 DEBUG [20616]: Connecting to database... -- 11:53:48.150 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:53:48.150 SQL [20616]: pgsql_db_connect() -- 11:53:48.154 DEBUG [20616]: Database connection successful -- 11:53:48.154 INFO [20616]: _SERVER found -- 11:53:48.154 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 11:53:48.154 INFO [20616]: SERVER_NAME = oameye.works.coregrade.com -- 11:53:48.154 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=i8ab6eik6t88snn7prm8gpsv06v4kiul -- 11:53:48.154 INFO [20616]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:53:48.154 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:53:48.165 INFO [20616]: COREGRADE is stopping... -- 11:53:48.165 DEBUG [20616]: Closing database connection -- 11:53:48.165 SQL [20616]: pgsql_close() -- 11:53:52.204 INFO [20616]: COREGRADE is starting... -- 11:53:52.204 INFO [20616]: Version from config: 1.0 -- 11:53:52.204 DEBUG [20616]: Connecting to database... -- 11:53:52.204 DEBUG [20616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:53:52.204 SQL [20616]: pgsql_db_connect() -- 11:53:52.208 DEBUG [20616]: Database connection successful -- 11:53:52.208 INFO [20616]: _SERVER found -- 11:53:52.208 INFO [20616]: REMOTE_ADDR = 192.168.1.13 -- 11:53:52.208 INFO [20616]: SERVER_NAME = oameye.works.coregrade.com -- 11:53:52.208 INFO [20616]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=i8ab6eik6t88snn7prm8gpsv06v4kiul -- 11:53:52.208 INFO [20616]: QUERY_STRING = /member/viewCardAddAction -- 11:53:52.208 INFO [20616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:53:52.238 INFO [20616]: COREGRADE is stopping... -- 11:53:52.239 DEBUG [20616]: Closing database connection -- 11:53:52.239 SQL [20616]: pgsql_close() -- 12:00:13.407 INFO [20672]: COREGRADE is starting... -- 12:00:13.408 INFO [20672]: Version from config: 1.0 -- 12:00:13.408 DEBUG [20672]: Connecting to database... -- 12:00:13.408 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:00:13.408 SQL [20672]: pgsql_db_connect() -- 12:00:13.412 DEBUG [20672]: Database connection successful -- 12:00:13.412 INFO [20672]: _SERVER found -- 12:00:13.412 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 12:00:13.412 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 12:00:13.412 INFO [20672]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=i8ab6eik6t88snn7prm8gpsv06v4kiul -- 12:00:13.412 INFO [20672]: QUERY_STRING = /member -- 12:00:13.412 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:00:13.449 INFO [20672]: COREGRADE is stopping... -- 12:00:13.449 DEBUG [20672]: Closing database connection -- 12:00:13.449 SQL [20672]: pgsql_close() -- 12:00:13.676 INFO [20672]: COREGRADE is starting... -- 12:00:13.677 INFO [20672]: Version from config: 1.0 -- 12:00:13.677 DEBUG [20672]: Connecting to database... -- 12:00:13.677 DEBUG [20672]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:00:13.677 SQL [20672]: pgsql_db_connect() -- 12:00:13.681 DEBUG [20672]: Database connection successful -- 12:00:13.681 INFO [20672]: _SERVER found -- 12:00:13.681 INFO [20672]: REMOTE_ADDR = 192.168.1.13 -- 12:00:13.681 INFO [20672]: SERVER_NAME = oameye.works.coregrade.com -- 12:00:13.681 INFO [20672]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=vddrdv12hg62vl54jr5fr81oiteoocbv -- 12:00:13.681 INFO [20672]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:00:13.681 INFO [20672]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:00:13.692 INFO [20672]: COREGRADE is stopping... -- 12:00:13.692 DEBUG [20672]: Closing database connection -- 12:00:13.692 SQL [20672]: pgsql_close() -- 12:00:13.713 INFO [20617]: COREGRADE is starting... -- 12:00:13.714 INFO [20617]: Version from config: 1.0 -- 12:00:13.714 DEBUG [20617]: Connecting to database... -- 12:00:13.714 DEBUG [20617]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:00:13.714 SQL [20617]: pgsql_db_connect() -- 12:00:13.718 DEBUG [20617]: Database connection successful -- 12:00:13.718 INFO [20617]: _SERVER found -- 12:00:13.718 INFO [20617]: REMOTE_ADDR = 192.168.1.13 -- 12:00:13.718 INFO [20617]: SERVER_NAME = oameye.works.coregrade.com -- 12:00:13.718 INFO [20617]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=vddrdv12hg62vl54jr5fr81oiteoocbv -- 12:00:13.718 INFO [20617]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:00:13.718 INFO [20617]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:00:13.729 INFO [20617]: COREGRADE is stopping... -- 12:00:13.729 DEBUG [20617]: Closing database connection -- 12:00:13.729 SQL [20617]: pgsql_close() -- 12:00:14.902 INFO [20617]: COREGRADE is starting... -- 12:00:14.903 INFO [20617]: Version from config: 1.0 -- 12:00:14.903 DEBUG [20617]: Connecting to database... -- 12:00:14.903 DEBUG [20617]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:00:14.903 SQL [20617]: pgsql_db_connect() -- 12:00:14.907 DEBUG [20617]: Database connection successful -- 12:00:14.907 INFO [20617]: _SERVER found -- 12:00:14.907 INFO [20617]: REMOTE_ADDR = 192.168.1.13 -- 12:00:14.907 INFO [20617]: SERVER_NAME = oameye.works.coregrade.com -- 12:00:14.907 INFO [20617]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=vddrdv12hg62vl54jr5fr81oiteoocbv -- 12:00:14.907 INFO [20617]: QUERY_STRING = /member/page -- 12:00:14.907 INFO [20617]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:00:14.943 INFO [20617]: COREGRADE is stopping... -- 12:00:14.943 DEBUG [20617]: Closing database connection -- 12:00:14.943 SQL [20617]: pgsql_close() -- 12:00:15.148 INFO [20617]: COREGRADE is starting... -- 12:00:15.148 INFO [20617]: Version from config: 1.0 -- 12:00:15.148 DEBUG [20617]: Connecting to database... -- 12:00:15.148 DEBUG [20617]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:00:15.148 SQL [20617]: pgsql_db_connect() -- 12:00:15.152 DEBUG [20617]: Database connection successful -- 12:00:15.152 INFO [20617]: _SERVER found -- 12:00:15.152 INFO [20617]: REMOTE_ADDR = 192.168.1.13 -- 12:00:15.152 INFO [20617]: SERVER_NAME = oameye.works.coregrade.com -- 12:00:15.152 INFO [20617]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=vddrdv12hg62vl54jr5fr81oiteoocbv -- 12:00:15.152 INFO [20617]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:00:15.152 INFO [20617]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:00:15.163 INFO [20617]: COREGRADE is stopping... -- 12:00:15.164 DEBUG [20617]: Closing database connection -- 12:00:15.164 SQL [20617]: pgsql_close() -- 12:00:18.125 INFO [20617]: COREGRADE is starting... -- 12:00:18.126 INFO [20617]: Version from config: 1.0 -- 12:00:18.126 DEBUG [20617]: Connecting to database... -- 12:00:18.126 DEBUG [20617]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:00:18.126 SQL [20617]: pgsql_db_connect() -- 12:00:18.130 DEBUG [20617]: Database connection successful -- 12:00:18.130 INFO [20617]: _SERVER found -- 12:00:18.130 INFO [20617]: REMOTE_ADDR = 192.168.1.13 -- 12:00:18.130 INFO [20617]: SERVER_NAME = oameye.works.coregrade.com -- 12:00:18.130 INFO [20617]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=vddrdv12hg62vl54jr5fr81oiteoocbv -- 12:00:18.130 INFO [20617]: QUERY_STRING = /member/viewCardAddAction -- 12:00:18.130 INFO [20617]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:00:18.160 INFO [20617]: COREGRADE is stopping... -- 12:00:18.160 DEBUG [20617]: Closing database connection -- 12:00:18.160 SQL [20617]: pgsql_close() -- 12:06:18.899 INFO [22219]: COREGRADE is starting... -- 12:06:18.900 INFO [22219]: Version from config: 1.0 -- 12:06:18.900 DEBUG [22219]: Connecting to database... -- 12:06:18.900 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:06:18.900 SQL [22219]: pgsql_db_connect() -- 12:06:18.905 DEBUG [22219]: Database connection successful -- 12:06:18.905 INFO [22219]: _SERVER found -- 12:06:18.905 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 12:06:18.905 INFO [22219]: SERVER_NAME = oameye.works.coregrade.com -- 12:06:18.905 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=vddrdv12hg62vl54jr5fr81oiteoocbv -- 12:06:18.905 INFO [22219]: QUERY_STRING = /member -- 12:06:18.905 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:06:18.941 INFO [22219]: COREGRADE is stopping... -- 12:06:18.941 DEBUG [22219]: Closing database connection -- 12:06:18.941 SQL [22219]: pgsql_close() -- 12:06:19.089 INFO [22219]: COREGRADE is starting... -- 12:06:19.089 INFO [22219]: Version from config: 1.0 -- 12:06:19.089 DEBUG [22219]: Connecting to database... -- 12:06:19.089 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:06:19.089 SQL [22219]: pgsql_db_connect() -- 12:06:19.093 DEBUG [22219]: Database connection successful -- 12:06:19.093 INFO [22219]: _SERVER found -- 12:06:19.093 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 12:06:19.093 INFO [22219]: SERVER_NAME = oameye.works.coregrade.com -- 12:06:19.093 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=o3u2c5gcs1l5d9cre87gui26vm8dd32q -- 12:06:19.093 INFO [22219]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:06:19.093 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:06:19.105 INFO [22219]: COREGRADE is stopping... -- 12:06:19.105 DEBUG [22219]: Closing database connection -- 12:06:19.105 SQL [22219]: pgsql_close() -- 12:06:19.965 INFO [22219]: COREGRADE is starting... -- 12:06:19.966 INFO [22219]: Version from config: 1.0 -- 12:06:19.966 DEBUG [22219]: Connecting to database... -- 12:06:19.966 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:06:19.966 SQL [22219]: pgsql_db_connect() -- 12:06:19.970 DEBUG [22219]: Database connection successful -- 12:06:19.970 INFO [22219]: _SERVER found -- 12:06:19.970 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 12:06:19.970 INFO [22219]: SERVER_NAME = oameye.works.coregrade.com -- 12:06:19.970 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=o3u2c5gcs1l5d9cre87gui26vm8dd32q -- 12:06:19.970 INFO [22219]: QUERY_STRING = /member/page -- 12:06:19.970 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:06:20.005 INFO [22219]: COREGRADE is stopping... -- 12:06:20.005 DEBUG [22219]: Closing database connection -- 12:06:20.005 SQL [22219]: pgsql_close() -- 12:06:20.307 INFO [22219]: COREGRADE is starting... -- 12:06:20.308 INFO [22219]: Version from config: 1.0 -- 12:06:20.308 DEBUG [22219]: Connecting to database... -- 12:06:20.308 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:06:20.308 SQL [22219]: pgsql_db_connect() -- 12:06:20.312 DEBUG [22219]: Database connection successful -- 12:06:20.312 INFO [22219]: _SERVER found -- 12:06:20.312 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 12:06:20.312 INFO [22219]: SERVER_NAME = oameye.works.coregrade.com -- 12:06:20.312 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=o3u2c5gcs1l5d9cre87gui26vm8dd32q -- 12:06:20.312 INFO [22219]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:06:20.312 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:06:20.323 INFO [22219]: COREGRADE is stopping... -- 12:06:20.323 DEBUG [22219]: Closing database connection -- 12:06:20.323 SQL [22219]: pgsql_close() -- 12:06:23.902 INFO [22219]: COREGRADE is starting... -- 12:06:23.903 INFO [22219]: Version from config: 1.0 -- 12:06:23.903 DEBUG [22219]: Connecting to database... -- 12:06:23.903 DEBUG [22219]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:06:23.903 SQL [22219]: pgsql_db_connect() -- 12:06:23.907 DEBUG [22219]: Database connection successful -- 12:06:23.907 INFO [22219]: _SERVER found -- 12:06:23.907 INFO [22219]: REMOTE_ADDR = 192.168.1.13 -- 12:06:23.907 INFO [22219]: SERVER_NAME = oameye.works.coregrade.com -- 12:06:23.907 INFO [22219]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=o3u2c5gcs1l5d9cre87gui26vm8dd32q -- 12:06:23.907 INFO [22219]: QUERY_STRING = /member/viewCardAddAction -- 12:06:23.907 INFO [22219]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:06:23.937 INFO [22219]: COREGRADE is stopping... -- 12:06:23.937 DEBUG [22219]: Closing database connection -- 12:06:23.937 SQL [22219]: pgsql_close() -- 12:11:05.394 INFO [20618]: COREGRADE is starting... -- 12:11:05.395 INFO [20618]: Version from config: 1.0 -- 12:11:05.395 DEBUG [20618]: Connecting to database... -- 12:11:05.395 DEBUG [20618]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:11:05.395 SQL [20618]: pgsql_db_connect() -- 12:11:05.399 DEBUG [20618]: Database connection successful -- 12:11:05.399 INFO [20618]: _SERVER found -- 12:11:05.399 INFO [20618]: REMOTE_ADDR = 192.168.1.13 -- 12:11:05.399 INFO [20618]: SERVER_NAME = oameye.works.coregrade.com -- 12:11:05.399 INFO [20618]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=o3u2c5gcs1l5d9cre87gui26vm8dd32q -- 12:11:05.399 INFO [20618]: QUERY_STRING = /member/viewCardAddAction -- 12:11:05.399 INFO [20618]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:11:05.434 INFO [20618]: COREGRADE is stopping... -- 12:11:05.434 DEBUG [20618]: Closing database connection -- 12:11:05.434 SQL [20618]: pgsql_close() -- 12:11:30.414 INFO [20614]: COREGRADE is starting... -- 12:11:30.414 INFO [20614]: Version from config: 1.0 -- 12:11:30.414 DEBUG [20614]: Connecting to database... -- 12:11:30.414 DEBUG [20614]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:11:30.414 SQL [20614]: pgsql_db_connect() -- 12:11:30.418 DEBUG [20614]: Database connection successful -- 12:11:30.418 INFO [20614]: _SERVER found -- 12:11:30.418 INFO [20614]: REMOTE_ADDR = 192.168.1.13 -- 12:11:30.418 INFO [20614]: SERVER_NAME = oameye.works.coregrade.com -- 12:11:30.418 INFO [20614]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=o3u2c5gcs1l5d9cre87gui26vm8dd32q -- 12:11:30.418 INFO [20614]: QUERY_STRING = /member -- 12:11:30.418 INFO [20614]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:11:30.454 INFO [20614]: COREGRADE is stopping... -- 12:11:30.454 DEBUG [20614]: Closing database connection -- 12:11:30.454 SQL [20614]: pgsql_close() -- 12:11:30.673 INFO [20614]: COREGRADE is starting... -- 12:11:30.674 INFO [20614]: Version from config: 1.0 -- 12:11:30.674 DEBUG [20614]: Connecting to database... -- 12:11:30.674 DEBUG [20614]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:11:30.674 SQL [20614]: pgsql_db_connect() -- 12:11:30.678 DEBUG [20614]: Database connection successful -- 12:11:30.678 INFO [20614]: _SERVER found -- 12:11:30.678 INFO [20614]: REMOTE_ADDR = 192.168.1.13 -- 12:11:30.678 INFO [20614]: SERVER_NAME = oameye.works.coregrade.com -- 12:11:30.678 INFO [20614]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=g7cqfetnr6pc9gd9eq1dctm2v5sirojv -- 12:11:30.678 INFO [20614]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:11:30.678 INFO [20614]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:11:30.689 INFO [20614]: COREGRADE is stopping... -- 12:11:30.689 DEBUG [20614]: Closing database connection -- 12:11:30.689 SQL [20614]: pgsql_close() -- 12:11:31.857 INFO [20614]: COREGRADE is starting... -- 12:11:31.857 INFO [20614]: Version from config: 1.0 -- 12:11:31.857 DEBUG [20614]: Connecting to database... -- 12:11:31.857 DEBUG [20614]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:11:31.857 SQL [20614]: pgsql_db_connect() -- 12:11:31.861 DEBUG [20614]: Database connection successful -- 12:11:31.861 INFO [20614]: _SERVER found -- 12:11:31.861 INFO [20614]: REMOTE_ADDR = 192.168.1.13 -- 12:11:31.861 INFO [20614]: SERVER_NAME = oameye.works.coregrade.com -- 12:11:31.861 INFO [20614]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=g7cqfetnr6pc9gd9eq1dctm2v5sirojv -- 12:11:31.861 INFO [20614]: QUERY_STRING = /member/page -- 12:11:31.861 INFO [20614]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:11:31.897 INFO [20614]: COREGRADE is stopping... -- 12:11:31.897 DEBUG [20614]: Closing database connection -- 12:11:31.897 SQL [20614]: pgsql_close() -- 12:11:32.139 INFO [20614]: COREGRADE is starting... -- 12:11:32.139 INFO [20614]: Version from config: 1.0 -- 12:11:32.139 DEBUG [20614]: Connecting to database... -- 12:11:32.140 DEBUG [20614]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:11:32.140 SQL [20614]: pgsql_db_connect() -- 12:11:32.144 DEBUG [20614]: Database connection successful -- 12:11:32.144 INFO [20614]: _SERVER found -- 12:11:32.144 INFO [20614]: REMOTE_ADDR = 192.168.1.13 -- 12:11:32.144 INFO [20614]: SERVER_NAME = oameye.works.coregrade.com -- 12:11:32.144 INFO [20614]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=g7cqfetnr6pc9gd9eq1dctm2v5sirojv -- 12:11:32.144 INFO [20614]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:11:32.144 INFO [20614]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:11:32.155 INFO [20614]: COREGRADE is stopping... -- 12:11:32.155 DEBUG [20614]: Closing database connection -- 12:11:32.155 SQL [20614]: pgsql_close() -- 12:19:03.081 INFO [1653]: COREGRADE is starting... -- 12:19:03.081 INFO [1653]: Version from config: 1.0 -- 12:19:03.081 DEBUG [1653]: Connecting to database... -- 12:19:03.081 DEBUG [1653]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:19:03.081 SQL [1653]: pgsql_db_connect() -- 12:19:03.086 DEBUG [1653]: Database connection successful -- 12:19:03.086 INFO [1653]: _SERVER found -- 12:19:03.086 INFO [1653]: REMOTE_ADDR = 192.168.1.13 -- 12:19:03.086 INFO [1653]: SERVER_NAME = oameye.works.coregrade.com -- 12:19:03.086 INFO [1653]: QUERY_STRING = -- 12:19:03.086 INFO [1653]: HTTP_X_FORWARDED_FOR = 118.126.89.101 -- 12:19:03.131 INFO [1653]: COREGRADE is stopping... -- 12:19:03.131 DEBUG [1653]: Closing database connection -- 12:19:03.131 SQL [1653]: pgsql_close() -- 12:19:11.355 INFO [1654]: COREGRADE is starting... -- 12:19:11.355 INFO [1654]: Version from config: 1.0 -- 12:19:11.355 DEBUG [1654]: Connecting to database... -- 12:19:11.355 DEBUG [1654]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:19:11.355 SQL [1654]: pgsql_db_connect() -- 12:19:11.359 DEBUG [1654]: Database connection successful -- 12:19:11.359 INFO [1654]: _SERVER found -- 12:19:11.359 INFO [1654]: REMOTE_ADDR = 192.168.1.13 -- 12:19:11.359 INFO [1654]: SERVER_NAME = oameye.works.coregrade.com -- 12:19:11.359 INFO [1654]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=g7cqfetnr6pc9gd9eq1dctm2v5sirojv -- 12:19:11.359 INFO [1654]: QUERY_STRING = /member/page -- 12:19:11.359 INFO [1654]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:19:11.404 INFO [1654]: COREGRADE is stopping... -- 12:19:11.404 DEBUG [1654]: Closing database connection -- 12:19:11.404 SQL [1654]: pgsql_close() -- 12:19:11.629 INFO [1654]: COREGRADE is starting... -- 12:19:11.629 INFO [1654]: Version from config: 1.0 -- 12:19:11.629 DEBUG [1654]: Connecting to database... -- 12:19:11.629 DEBUG [1654]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:19:11.629 SQL [1654]: pgsql_db_connect() -- 12:19:11.633 DEBUG [1654]: Database connection successful -- 12:19:11.633 INFO [1654]: _SERVER found -- 12:19:11.633 INFO [1654]: REMOTE_ADDR = 192.168.1.13 -- 12:19:11.633 INFO [1654]: SERVER_NAME = oameye.works.coregrade.com -- 12:19:11.633 INFO [1654]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nipliua4n990mm3gvlie5n7e2dq3id9k -- 12:19:11.633 INFO [1654]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:19:11.633 INFO [1654]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:19:11.646 INFO [1654]: COREGRADE is stopping... -- 12:19:11.646 DEBUG [1654]: Closing database connection -- 12:19:11.646 SQL [1654]: pgsql_close() -- 12:19:18.274 INFO [1657]: COREGRADE is starting... -- 12:19:18.274 INFO [1657]: Version from config: 1.0 -- 12:19:18.274 DEBUG [1657]: Connecting to database... -- 12:19:18.275 DEBUG [1657]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:19:18.275 SQL [1657]: pgsql_db_connect() -- 12:19:18.279 DEBUG [1657]: Database connection successful -- 12:19:18.279 INFO [1657]: _SERVER found -- 12:19:18.279 INFO [1657]: REMOTE_ADDR = 192.168.1.13 -- 12:19:18.279 INFO [1657]: SERVER_NAME = oameye.works.coregrade.com -- 12:19:18.279 INFO [1657]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nipliua4n990mm3gvlie5n7e2dq3id9k -- 12:19:18.279 INFO [1657]: QUERY_STRING = /member/viewCardAddAction -- 12:19:18.279 INFO [1657]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:19:18.316 INFO [1657]: COREGRADE is stopping... -- 12:19:18.316 DEBUG [1657]: Closing database connection -- 12:19:18.316 SQL [1657]: pgsql_close() -- 12:20:43.934 INFO [1656]: COREGRADE is starting... -- 12:20:43.935 INFO [1656]: Version from config: 1.0 -- 12:20:43.935 DEBUG [1656]: Connecting to database... -- 12:20:43.935 DEBUG [1656]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:20:43.935 SQL [1656]: pgsql_db_connect() -- 12:20:43.940 DEBUG [1656]: Database connection successful -- 12:20:43.940 INFO [1656]: _SERVER found -- 12:20:43.940 INFO [1656]: REMOTE_ADDR = 192.168.1.13 -- 12:20:43.940 INFO [1656]: SERVER_NAME = oameye.works.coregrade.com -- 12:20:43.940 INFO [1656]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nipliua4n990mm3gvlie5n7e2dq3id9k -- 12:20:43.940 INFO [1656]: QUERY_STRING = /member/page -- 12:20:43.940 INFO [1656]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:20:43.984 INFO [1656]: COREGRADE is stopping... -- 12:20:43.984 DEBUG [1656]: Closing database connection -- 12:20:43.984 SQL [1656]: pgsql_close() -- 12:20:44.200 INFO [1656]: COREGRADE is starting... -- 12:20:44.200 INFO [1656]: Version from config: 1.0 -- 12:20:44.200 DEBUG [1656]: Connecting to database... -- 12:20:44.200 DEBUG [1656]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:20:44.200 SQL [1656]: pgsql_db_connect() -- 12:20:44.204 DEBUG [1656]: Database connection successful -- 12:20:44.204 INFO [1656]: _SERVER found -- 12:20:44.204 INFO [1656]: REMOTE_ADDR = 192.168.1.13 -- 12:20:44.204 INFO [1656]: SERVER_NAME = oameye.works.coregrade.com -- 12:20:44.204 INFO [1656]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nipliua4n990mm3gvlie5n7e2dq3id9k -- 12:20:44.204 INFO [1656]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:20:44.204 INFO [1656]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:20:44.217 INFO [1656]: COREGRADE is stopping... -- 12:20:44.217 DEBUG [1656]: Closing database connection -- 12:20:44.217 SQL [1656]: pgsql_close() -- 12:20:46.729 INFO [1656]: COREGRADE is starting... -- 12:20:46.730 INFO [1656]: Version from config: 1.0 -- 12:20:46.730 DEBUG [1656]: Connecting to database... -- 12:20:46.730 DEBUG [1656]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:20:46.730 SQL [1656]: pgsql_db_connect() -- 12:20:46.734 DEBUG [1656]: Database connection successful -- 12:20:46.734 INFO [1656]: _SERVER found -- 12:20:46.734 INFO [1656]: REMOTE_ADDR = 192.168.1.13 -- 12:20:46.734 INFO [1656]: SERVER_NAME = oameye.works.coregrade.com -- 12:20:46.734 INFO [1656]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nipliua4n990mm3gvlie5n7e2dq3id9k -- 12:20:46.734 INFO [1656]: QUERY_STRING = /member -- 12:20:46.734 INFO [1656]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:20:46.773 INFO [1656]: COREGRADE is stopping... -- 12:20:46.773 DEBUG [1656]: Closing database connection -- 12:20:46.773 SQL [1656]: pgsql_close() -- 12:20:46.964 INFO [1656]: COREGRADE is starting... -- 12:20:46.964 INFO [1656]: Version from config: 1.0 -- 12:20:46.964 DEBUG [1656]: Connecting to database... -- 12:20:46.964 DEBUG [1656]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:20:46.964 SQL [1656]: pgsql_db_connect() -- 12:20:46.968 DEBUG [1656]: Database connection successful -- 12:20:46.968 INFO [1656]: _SERVER found -- 12:20:46.968 INFO [1656]: REMOTE_ADDR = 192.168.1.13 -- 12:20:46.968 INFO [1656]: SERVER_NAME = oameye.works.coregrade.com -- 12:20:46.968 INFO [1656]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nipliua4n990mm3gvlie5n7e2dq3id9k -- 12:20:46.968 INFO [1656]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:20:46.968 INFO [1656]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:20:46.980 INFO [1656]: COREGRADE is stopping... -- 12:20:46.980 DEBUG [1656]: Closing database connection -- 12:20:46.981 SQL [1656]: pgsql_close() -- 12:20:48.034 INFO [1656]: COREGRADE is starting... -- 12:20:48.035 INFO [1656]: Version from config: 1.0 -- 12:20:48.035 DEBUG [1656]: Connecting to database... -- 12:20:48.035 DEBUG [1656]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:20:48.035 SQL [1656]: pgsql_db_connect() -- 12:20:48.039 DEBUG [1656]: Database connection successful -- 12:20:48.039 INFO [1656]: _SERVER found -- 12:20:48.039 INFO [1656]: REMOTE_ADDR = 192.168.1.13 -- 12:20:48.039 INFO [1656]: SERVER_NAME = oameye.works.coregrade.com -- 12:20:48.039 INFO [1656]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nipliua4n990mm3gvlie5n7e2dq3id9k -- 12:20:48.039 INFO [1656]: QUERY_STRING = /member/page -- 12:20:48.039 INFO [1656]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:20:48.079 INFO [1656]: COREGRADE is stopping... -- 12:20:48.079 DEBUG [1656]: Closing database connection -- 12:20:48.079 SQL [1656]: pgsql_close() -- 12:20:48.319 INFO [1656]: COREGRADE is starting... -- 12:20:48.319 INFO [1656]: Version from config: 1.0 -- 12:20:48.319 DEBUG [1656]: Connecting to database... -- 12:20:48.319 DEBUG [1656]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:20:48.319 SQL [1656]: pgsql_db_connect() -- 12:20:48.323 DEBUG [1656]: Database connection successful -- 12:20:48.323 INFO [1656]: _SERVER found -- 12:20:48.323 INFO [1656]: REMOTE_ADDR = 192.168.1.13 -- 12:20:48.323 INFO [1656]: SERVER_NAME = oameye.works.coregrade.com -- 12:20:48.323 INFO [1656]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nipliua4n990mm3gvlie5n7e2dq3id9k -- 12:20:48.323 INFO [1656]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:20:48.323 INFO [1656]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:20:48.336 INFO [1656]: COREGRADE is stopping... -- 12:20:48.336 DEBUG [1656]: Closing database connection -- 12:20:48.336 SQL [1656]: pgsql_close() -- 12:20:50.481 INFO [1656]: COREGRADE is starting... -- 12:20:50.481 INFO [1656]: Version from config: 1.0 -- 12:20:50.481 DEBUG [1656]: Connecting to database... -- 12:20:50.481 DEBUG [1656]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:20:50.481 SQL [1656]: pgsql_db_connect() -- 12:20:50.485 DEBUG [1656]: Database connection successful -- 12:20:50.485 INFO [1656]: _SERVER found -- 12:20:50.485 INFO [1656]: REMOTE_ADDR = 192.168.1.13 -- 12:20:50.485 INFO [1656]: SERVER_NAME = oameye.works.coregrade.com -- 12:20:50.485 INFO [1656]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nipliua4n990mm3gvlie5n7e2dq3id9k -- 12:20:50.485 INFO [1656]: QUERY_STRING = /member/viewCardAddAction -- 12:20:50.486 INFO [1656]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:20:50.519 INFO [1656]: COREGRADE is stopping... -- 12:20:50.519 DEBUG [1656]: Closing database connection -- 12:20:50.519 SQL [1656]: pgsql_close() -- 12:21:22.831 INFO [1653]: COREGRADE is starting... -- 12:21:22.832 INFO [1653]: Version from config: 1.0 -- 12:21:22.832 DEBUG [1653]: Connecting to database... -- 12:21:22.832 DEBUG [1653]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:21:22.832 SQL [1653]: pgsql_db_connect() -- 12:21:22.836 DEBUG [1653]: Database connection successful -- 12:21:22.836 INFO [1653]: _SERVER found -- 12:21:22.836 INFO [1653]: REMOTE_ADDR = 192.168.1.13 -- 12:21:22.836 INFO [1653]: SERVER_NAME = oameye.works.coregrade.com -- 12:21:22.836 INFO [1653]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nipliua4n990mm3gvlie5n7e2dq3id9k -- 12:21:22.836 INFO [1653]: QUERY_STRING = /member -- 12:21:22.836 INFO [1653]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:21:22.875 INFO [1653]: COREGRADE is stopping... -- 12:21:22.875 DEBUG [1653]: Closing database connection -- 12:21:22.875 SQL [1653]: pgsql_close() -- 12:21:23.074 INFO [1653]: COREGRADE is starting... -- 12:21:23.075 INFO [1653]: Version from config: 1.0 -- 12:21:23.075 DEBUG [1653]: Connecting to database... -- 12:21:23.075 DEBUG [1653]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:21:23.075 SQL [1653]: pgsql_db_connect() -- 12:21:23.079 DEBUG [1653]: Database connection successful -- 12:21:23.079 INFO [1653]: _SERVER found -- 12:21:23.079 INFO [1653]: REMOTE_ADDR = 192.168.1.13 -- 12:21:23.079 INFO [1653]: SERVER_NAME = oameye.works.coregrade.com -- 12:21:23.079 INFO [1653]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nipliua4n990mm3gvlie5n7e2dq3id9k -- 12:21:23.079 INFO [1653]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:21:23.079 INFO [1653]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:21:23.090 INFO [1653]: COREGRADE is stopping... -- 12:21:23.091 DEBUG [1653]: Closing database connection -- 12:21:23.091 SQL [1653]: pgsql_close() -- 12:21:24.571 INFO [1653]: COREGRADE is starting... -- 12:21:24.571 INFO [1653]: Version from config: 1.0 -- 12:21:24.571 DEBUG [1653]: Connecting to database... -- 12:21:24.571 DEBUG [1653]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:21:24.571 SQL [1653]: pgsql_db_connect() -- 12:21:24.575 DEBUG [1653]: Database connection successful -- 12:21:24.575 INFO [1653]: _SERVER found -- 12:21:24.575 INFO [1653]: REMOTE_ADDR = 192.168.1.13 -- 12:21:24.575 INFO [1653]: SERVER_NAME = oameye.works.coregrade.com -- 12:21:24.575 INFO [1653]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nipliua4n990mm3gvlie5n7e2dq3id9k -- 12:21:24.575 INFO [1653]: QUERY_STRING = /member/page -- 12:21:24.575 INFO [1653]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:21:24.614 INFO [1653]: COREGRADE is stopping... -- 12:21:24.614 DEBUG [1653]: Closing database connection -- 12:21:24.614 SQL [1653]: pgsql_close() -- 12:21:24.810 INFO [1653]: COREGRADE is starting... -- 12:21:24.810 INFO [1653]: Version from config: 1.0 -- 12:21:24.810 DEBUG [1653]: Connecting to database... -- 12:21:24.810 DEBUG [1653]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:21:24.810 SQL [1653]: pgsql_db_connect() -- 12:21:24.814 DEBUG [1653]: Database connection successful -- 12:21:24.814 INFO [1653]: _SERVER found -- 12:21:24.814 INFO [1653]: REMOTE_ADDR = 192.168.1.13 -- 12:21:24.814 INFO [1653]: SERVER_NAME = oameye.works.coregrade.com -- 12:21:24.814 INFO [1653]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nipliua4n990mm3gvlie5n7e2dq3id9k -- 12:21:24.814 INFO [1653]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:21:24.814 INFO [1653]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:21:24.825 INFO [1653]: COREGRADE is stopping... -- 12:21:24.825 DEBUG [1653]: Closing database connection -- 12:21:24.825 SQL [1653]: pgsql_close() -- 12:22:00.847 INFO [1682]: COREGRADE is starting... -- 12:22:00.848 INFO [1682]: Version from config: 1.0 -- 12:22:00.848 DEBUG [1682]: Connecting to database... -- 12:22:00.848 DEBUG [1682]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:22:00.848 SQL [1682]: pgsql_db_connect() -- 12:22:00.852 DEBUG [1682]: Database connection successful -- 12:22:00.852 INFO [1682]: _SERVER found -- 12:22:00.852 INFO [1682]: REMOTE_ADDR = 192.168.1.13 -- 12:22:00.852 INFO [1682]: SERVER_NAME = oameye.works.coregrade.com -- 12:22:00.852 INFO [1682]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nipliua4n990mm3gvlie5n7e2dq3id9k -- 12:22:00.852 INFO [1682]: QUERY_STRING = /member/viewCardAddAction -- 12:22:00.852 INFO [1682]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:22:00.889 INFO [1682]: COREGRADE is stopping... -- 12:22:00.889 DEBUG [1682]: Closing database connection -- 12:22:00.889 SQL [1682]: pgsql_close() -- 12:28:46.911 INFO [1655]: COREGRADE is starting... -- 12:28:46.912 INFO [1655]: Version from config: 1.0 -- 12:28:46.912 DEBUG [1655]: Connecting to database... -- 12:28:46.912 DEBUG [1655]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:28:46.912 SQL [1655]: pgsql_db_connect() -- 12:28:46.917 DEBUG [1655]: Database connection successful -- 12:28:46.917 INFO [1655]: _SERVER found -- 12:28:46.917 INFO [1655]: REMOTE_ADDR = 192.168.1.13 -- 12:28:46.917 INFO [1655]: SERVER_NAME = oameye.works.coregrade.com -- 12:28:46.917 INFO [1655]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=nipliua4n990mm3gvlie5n7e2dq3id9k -- 12:28:46.917 INFO [1655]: QUERY_STRING = /member/page -- 12:28:46.917 INFO [1655]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:28:46.964 INFO [1655]: COREGRADE is stopping... -- 12:28:46.964 DEBUG [1655]: Closing database connection -- 12:28:46.964 SQL [1655]: pgsql_close() -- 12:28:47.220 INFO [1655]: COREGRADE is starting... -- 12:28:47.220 INFO [1655]: Version from config: 1.0 -- 12:28:47.220 DEBUG [1655]: Connecting to database... -- 12:28:47.220 DEBUG [1655]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:28:47.220 SQL [1655]: pgsql_db_connect() -- 12:28:47.224 DEBUG [1655]: Database connection successful -- 12:28:47.224 INFO [1655]: _SERVER found -- 12:28:47.224 INFO [1655]: REMOTE_ADDR = 192.168.1.13 -- 12:28:47.224 INFO [1655]: SERVER_NAME = oameye.works.coregrade.com -- 12:28:47.224 INFO [1655]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=232cfhvddh4rd7nu0009pcs49o6i4l1t -- 12:28:47.224 INFO [1655]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:28:47.224 INFO [1655]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:28:47.237 INFO [1655]: COREGRADE is stopping... -- 12:28:47.237 DEBUG [1655]: Closing database connection -- 12:28:47.237 SQL [1655]: pgsql_close() -- 12:28:50.523 INFO [1655]: COREGRADE is starting... -- 12:28:50.524 INFO [1655]: Version from config: 1.0 -- 12:28:50.524 DEBUG [1655]: Connecting to database... -- 12:28:50.524 DEBUG [1655]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:28:50.524 SQL [1655]: pgsql_db_connect() -- 12:28:50.528 DEBUG [1655]: Database connection successful -- 12:28:50.528 INFO [1655]: _SERVER found -- 12:28:50.528 INFO [1655]: REMOTE_ADDR = 192.168.1.13 -- 12:28:50.528 INFO [1655]: SERVER_NAME = oameye.works.coregrade.com -- 12:28:50.528 INFO [1655]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=232cfhvddh4rd7nu0009pcs49o6i4l1t -- 12:28:50.528 INFO [1655]: QUERY_STRING = /member/viewCardAddAction -- 12:28:50.528 INFO [1655]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:28:50.563 INFO [1655]: COREGRADE is stopping... -- 12:28:50.563 DEBUG [1655]: Closing database connection -- 12:28:50.563 SQL [1655]: pgsql_close() -- 12:28:53.588 INFO [1655]: COREGRADE is starting... -- 12:28:53.588 INFO [1655]: Version from config: 1.0 -- 12:28:53.588 DEBUG [1655]: Connecting to database... -- 12:28:53.588 DEBUG [1655]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:28:53.588 SQL [1655]: pgsql_db_connect() -- 12:28:53.592 DEBUG [1655]: Database connection successful -- 12:28:53.592 INFO [1655]: _SERVER found -- 12:28:53.592 INFO [1655]: REMOTE_ADDR = 192.168.1.13 -- 12:28:53.592 INFO [1655]: SERVER_NAME = oameye.works.coregrade.com -- 12:28:53.592 INFO [1655]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=232cfhvddh4rd7nu0009pcs49o6i4l1t -- 12:28:53.592 INFO [1655]: QUERY_STRING = /member/addNotecard -- 12:28:53.592 INFO [1655]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:28:53.627 INFO [1655]: COREGRADE is stopping... -- 12:28:53.627 DEBUG [1655]: Closing database connection -- 12:28:53.627 SQL [1655]: pgsql_close() -- 12:28:57.297 INFO [1655]: COREGRADE is starting... -- 12:28:57.297 INFO [1655]: Version from config: 1.0 -- 12:28:57.297 DEBUG [1655]: Connecting to database... -- 12:28:57.298 DEBUG [1655]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:28:57.298 SQL [1655]: pgsql_db_connect() -- 12:28:57.302 DEBUG [1655]: Database connection successful -- 12:28:57.302 INFO [1655]: _SERVER found -- 12:28:57.302 INFO [1655]: REMOTE_ADDR = 192.168.1.13 -- 12:28:57.302 INFO [1655]: SERVER_NAME = oameye.works.coregrade.com -- 12:28:57.302 INFO [1655]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=232cfhvddh4rd7nu0009pcs49o6i4l1t -- 12:28:57.302 INFO [1655]: QUERY_STRING = /member/addNotecard -- 12:28:57.302 INFO [1655]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:28:57.337 INFO [1655]: COREGRADE is stopping... -- 12:28:57.337 DEBUG [1655]: Closing database connection -- 12:28:57.337 SQL [1655]: pgsql_close() -- 12:32:32.175 INFO [1657]: COREGRADE is starting... -- 12:32:32.175 INFO [1657]: Version from config: 1.0 -- 12:32:32.175 DEBUG [1657]: Connecting to database... -- 12:32:32.175 DEBUG [1657]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:32:32.175 SQL [1657]: pgsql_db_connect() -- 12:32:32.180 DEBUG [1657]: Database connection successful -- 12:32:32.180 INFO [1657]: _SERVER found -- 12:32:32.180 INFO [1657]: REMOTE_ADDR = 192.168.1.13 -- 12:32:32.180 INFO [1657]: SERVER_NAME = oameye.works.coregrade.com -- 12:32:32.180 INFO [1657]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=232cfhvddh4rd7nu0009pcs49o6i4l1t -- 12:32:32.180 INFO [1657]: QUERY_STRING = /member/addNotecard -- 12:32:32.180 INFO [1657]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:32:32.216 INFO [1657]: COREGRADE is stopping... -- 12:32:32.216 DEBUG [1657]: Closing database connection -- 12:32:32.216 SQL [1657]: pgsql_close() -- 12:35:07.035 INFO [1678]: COREGRADE is starting... -- 12:35:07.036 INFO [1678]: Version from config: 1.0 -- 12:35:07.036 DEBUG [1678]: Connecting to database... -- 12:35:07.036 DEBUG [1678]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:35:07.036 SQL [1678]: pgsql_db_connect() -- 12:35:07.040 DEBUG [1678]: Database connection successful -- 12:35:07.040 INFO [1678]: _SERVER found -- 12:35:07.041 INFO [1678]: REMOTE_ADDR = 192.168.1.13 -- 12:35:07.041 INFO [1678]: SERVER_NAME = oameye.works.coregrade.com -- 12:35:07.041 INFO [1678]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=232cfhvddh4rd7nu0009pcs49o6i4l1t -- 12:35:07.041 INFO [1678]: QUERY_STRING = /member/viewCardAddAction -- 12:35:07.041 INFO [1678]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:35:07.080 INFO [1678]: COREGRADE is stopping... -- 12:35:07.080 DEBUG [1678]: Closing database connection -- 12:35:07.080 SQL [1678]: pgsql_close() -- 12:35:09.803 INFO [1678]: COREGRADE is starting... -- 12:35:09.803 INFO [1678]: Version from config: 1.0 -- 12:35:09.803 DEBUG [1678]: Connecting to database... -- 12:35:09.803 DEBUG [1678]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:35:09.803 SQL [1678]: pgsql_db_connect() -- 12:35:09.807 DEBUG [1678]: Database connection successful -- 12:35:09.807 INFO [1678]: _SERVER found -- 12:35:09.807 INFO [1678]: REMOTE_ADDR = 192.168.1.13 -- 12:35:09.807 INFO [1678]: SERVER_NAME = oameye.works.coregrade.com -- 12:35:09.807 INFO [1678]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=232cfhvddh4rd7nu0009pcs49o6i4l1t -- 12:35:09.807 INFO [1678]: QUERY_STRING = /member/addNotecard -- 12:35:09.807 INFO [1678]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:35:09.842 INFO [1678]: COREGRADE is stopping... -- 12:35:09.842 DEBUG [1678]: Closing database connection -- 12:35:09.842 SQL [1678]: pgsql_close() -- 12:37:29.282 INFO [1656]: COREGRADE is starting... -- 12:37:29.283 INFO [1656]: Version from config: 1.0 -- 12:37:29.283 DEBUG [1656]: Connecting to database... -- 12:37:29.283 DEBUG [1656]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:37:29.283 SQL [1656]: pgsql_db_connect() -- 12:37:29.288 DEBUG [1656]: Database connection successful -- 12:37:29.288 INFO [1656]: _SERVER found -- 12:37:29.288 INFO [1656]: REMOTE_ADDR = 192.168.1.13 -- 12:37:29.288 INFO [1656]: SERVER_NAME = oameye.works.coregrade.com -- 12:37:29.288 INFO [1656]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=232cfhvddh4rd7nu0009pcs49o6i4l1t -- 12:37:29.288 INFO [1656]: QUERY_STRING = /member/viewCardAddAction -- 12:37:29.288 INFO [1656]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:37:29.323 INFO [1656]: COREGRADE is stopping... -- 12:37:29.323 DEBUG [1656]: Closing database connection -- 12:37:29.323 SQL [1656]: pgsql_close() -- 12:37:32.157 INFO [1656]: COREGRADE is starting... -- 12:37:32.157 INFO [1656]: Version from config: 1.0 -- 12:37:32.157 DEBUG [1656]: Connecting to database... -- 12:37:32.158 DEBUG [1656]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:37:32.158 SQL [1656]: pgsql_db_connect() -- 12:37:32.162 DEBUG [1656]: Database connection successful -- 12:37:32.162 INFO [1656]: _SERVER found -- 12:37:32.162 INFO [1656]: REMOTE_ADDR = 192.168.1.13 -- 12:37:32.162 INFO [1656]: SERVER_NAME = oameye.works.coregrade.com -- 12:37:32.162 INFO [1656]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=232cfhvddh4rd7nu0009pcs49o6i4l1t -- 12:37:32.162 INFO [1656]: QUERY_STRING = /member/viewCardAddAction -- 12:37:32.162 INFO [1656]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:37:32.196 INFO [1656]: COREGRADE is stopping... -- 12:37:32.196 DEBUG [1656]: Closing database connection -- 12:37:32.196 SQL [1656]: pgsql_close() -- 12:37:33.088 INFO [1656]: COREGRADE is starting... -- 12:37:33.088 INFO [1656]: Version from config: 1.0 -- 12:37:33.088 DEBUG [1656]: Connecting to database... -- 12:37:33.088 DEBUG [1656]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:37:33.088 SQL [1656]: pgsql_db_connect() -- 12:37:33.092 DEBUG [1656]: Database connection successful -- 12:37:33.092 INFO [1656]: _SERVER found -- 12:37:33.092 INFO [1656]: REMOTE_ADDR = 192.168.1.13 -- 12:37:33.092 INFO [1656]: SERVER_NAME = oameye.works.coregrade.com -- 12:37:33.092 INFO [1656]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=232cfhvddh4rd7nu0009pcs49o6i4l1t -- 12:37:33.092 INFO [1656]: QUERY_STRING = /member/viewCardAddAction -- 12:37:33.092 INFO [1656]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:37:33.126 INFO [1656]: COREGRADE is stopping... -- 12:37:33.126 DEBUG [1656]: Closing database connection -- 12:37:33.126 SQL [1656]: pgsql_close() -- 12:37:36.310 INFO [1656]: COREGRADE is starting... -- 12:37:36.311 INFO [1656]: Version from config: 1.0 -- 12:37:36.311 DEBUG [1656]: Connecting to database... -- 12:37:36.311 DEBUG [1656]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:37:36.311 SQL [1656]: pgsql_db_connect() -- 12:37:36.315 DEBUG [1656]: Database connection successful -- 12:37:36.315 INFO [1656]: _SERVER found -- 12:37:36.315 INFO [1656]: REMOTE_ADDR = 192.168.1.13 -- 12:37:36.315 INFO [1656]: SERVER_NAME = oameye.works.coregrade.com -- 12:37:36.315 INFO [1656]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=232cfhvddh4rd7nu0009pcs49o6i4l1t -- 12:37:36.315 INFO [1656]: QUERY_STRING = /member/viewCardAddAction -- 12:37:36.315 INFO [1656]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:37:36.349 INFO [1656]: COREGRADE is stopping... -- 12:37:36.349 DEBUG [1656]: Closing database connection -- 12:37:36.349 SQL [1656]: pgsql_close() -- 12:37:43.011 INFO [1653]: COREGRADE is starting... -- 12:37:43.011 INFO [1653]: Version from config: 1.0 -- 12:37:43.011 DEBUG [1653]: Connecting to database... -- 12:37:43.011 DEBUG [1653]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:37:43.011 SQL [1653]: pgsql_db_connect() -- 12:37:43.025 INFO [1682]: COREGRADE is starting... -- 12:37:43.025 INFO [1682]: Version from config: 1.0 -- 12:37:43.025 DEBUG [1682]: Connecting to database... -- 12:37:43.025 DEBUG [1682]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:37:43.025 SQL [1682]: pgsql_db_connect() -- 12:37:43.015 DEBUG [1653]: Database connection successful -- 12:37:43.015 INFO [1653]: _SERVER found -- 12:37:43.015 INFO [1653]: REMOTE_ADDR = 192.168.1.13 -- 12:37:43.015 INFO [1653]: SERVER_NAME = oameye.works.coregrade.com -- 12:37:43.015 INFO [1653]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=232cfhvddh4rd7nu0009pcs49o6i4l1t -- 12:37:43.015 INFO [1653]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 12:37:43.015 INFO [1653]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:37:43.027 INFO [1653]: COREGRADE is stopping... -- 12:37:43.027 DEBUG [1653]: Closing database connection -- 12:37:43.027 SQL [1653]: pgsql_close() -- 12:37:43.029 DEBUG [1682]: Database connection successful -- 12:37:43.029 INFO [1682]: _SERVER found -- 12:37:43.029 INFO [1682]: REMOTE_ADDR = 192.168.1.13 -- 12:37:43.029 INFO [1682]: SERVER_NAME = oameye.works.coregrade.com -- 12:37:43.029 INFO [1682]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=232cfhvddh4rd7nu0009pcs49o6i4l1t -- 12:37:43.029 INFO [1682]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 12:37:43.029 INFO [1682]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:37:43.042 INFO [1682]: COREGRADE is stopping... -- 12:37:43.042 DEBUG [1682]: Closing database connection -- 12:37:43.042 SQL [1682]: pgsql_close() -- 12:37:44.631 INFO [1682]: COREGRADE is starting... -- 12:37:44.631 INFO [1682]: Version from config: 1.0 -- 12:37:44.631 DEBUG [1682]: Connecting to database... -- 12:37:44.631 DEBUG [1682]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:37:44.631 SQL [1682]: pgsql_db_connect() -- 12:37:44.635 DEBUG [1682]: Database connection successful -- 12:37:44.635 INFO [1682]: _SERVER found -- 12:37:44.635 INFO [1682]: REMOTE_ADDR = 192.168.1.13 -- 12:37:44.635 INFO [1682]: SERVER_NAME = oameye.works.coregrade.com -- 12:37:44.635 INFO [1682]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=232cfhvddh4rd7nu0009pcs49o6i4l1t -- 12:37:44.635 INFO [1682]: QUERY_STRING = /member/viewCardAddAction -- 12:37:44.635 INFO [1682]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:37:44.670 INFO [1682]: COREGRADE is stopping... -- 12:37:44.670 DEBUG [1682]: Closing database connection -- 12:37:44.670 SQL [1682]: pgsql_close() -- 12:37:49.207 INFO [1682]: COREGRADE is starting... -- 12:37:49.207 INFO [1682]: Version from config: 1.0 -- 12:37:49.207 DEBUG [1682]: Connecting to database... -- 12:37:49.207 DEBUG [1682]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:37:49.207 SQL [1682]: pgsql_db_connect() -- 12:37:49.211 DEBUG [1682]: Database connection successful -- 12:37:49.211 INFO [1682]: _SERVER found -- 12:37:49.211 INFO [1682]: REMOTE_ADDR = 192.168.1.13 -- 12:37:49.211 INFO [1682]: SERVER_NAME = oameye.works.coregrade.com -- 12:37:49.211 INFO [1682]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=232cfhvddh4rd7nu0009pcs49o6i4l1t -- 12:37:49.211 INFO [1682]: QUERY_STRING = /member/viewCardAddAction -- 12:37:49.211 INFO [1682]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:37:49.242 INFO [1682]: COREGRADE is stopping... -- 12:37:49.242 DEBUG [1682]: Closing database connection -- 12:37:49.242 SQL [1682]: pgsql_close() -- 12:37:50.176 INFO [1682]: COREGRADE is starting... -- 12:37:50.177 INFO [1682]: Version from config: 1.0 -- 12:37:50.177 DEBUG [1682]: Connecting to database... -- 12:37:50.177 DEBUG [1682]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:37:50.177 SQL [1682]: pgsql_db_connect() -- 12:37:50.181 DEBUG [1682]: Database connection successful -- 12:37:50.181 INFO [1682]: _SERVER found -- 12:37:50.181 INFO [1682]: REMOTE_ADDR = 192.168.1.13 -- 12:37:50.181 INFO [1682]: SERVER_NAME = oameye.works.coregrade.com -- 12:37:50.181 INFO [1682]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=232cfhvddh4rd7nu0009pcs49o6i4l1t -- 12:37:50.181 INFO [1682]: QUERY_STRING = /member/viewCardAddAction -- 12:37:50.181 INFO [1682]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:37:50.212 INFO [1682]: COREGRADE is stopping... -- 12:37:50.212 DEBUG [1682]: Closing database connection -- 12:37:50.212 SQL [1682]: pgsql_close() -- 12:37:50.764 INFO [1682]: COREGRADE is starting... -- 12:37:50.764 INFO [1682]: Version from config: 1.0 -- 12:37:50.764 DEBUG [1682]: Connecting to database... -- 12:37:50.764 DEBUG [1682]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:37:50.764 SQL [1682]: pgsql_db_connect() -- 12:37:50.768 DEBUG [1682]: Database connection successful -- 12:37:50.768 INFO [1682]: _SERVER found -- 12:37:50.768 INFO [1682]: REMOTE_ADDR = 192.168.1.13 -- 12:37:50.768 INFO [1682]: SERVER_NAME = oameye.works.coregrade.com -- 12:37:50.768 INFO [1682]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=232cfhvddh4rd7nu0009pcs49o6i4l1t -- 12:37:50.768 INFO [1682]: QUERY_STRING = /member/viewCardAddAction -- 12:37:50.768 INFO [1682]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:37:50.799 INFO [1682]: COREGRADE is stopping... -- 12:37:50.799 DEBUG [1682]: Closing database connection -- 12:37:50.799 SQL [1682]: pgsql_close() -- 12:38:12.223 INFO [1654]: COREGRADE is starting... -- 12:38:12.223 INFO [1654]: Version from config: 1.0 -- 12:38:12.223 DEBUG [1654]: Connecting to database... -- 12:38:12.223 DEBUG [1654]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:38:12.223 SQL [1654]: pgsql_db_connect() -- 12:38:12.228 DEBUG [1654]: Database connection successful -- 12:38:12.228 INFO [1654]: _SERVER found -- 12:38:12.228 INFO [1654]: REMOTE_ADDR = 192.168.1.13 -- 12:38:12.228 INFO [1654]: SERVER_NAME = oameye.works.coregrade.com -- 12:38:12.228 INFO [1654]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=232cfhvddh4rd7nu0009pcs49o6i4l1t -- 12:38:12.228 INFO [1654]: QUERY_STRING = /member/viewCardAddAction -- 12:38:12.228 INFO [1654]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:38:12.263 INFO [1654]: COREGRADE is stopping... -- 12:38:12.263 DEBUG [1654]: Closing database connection -- 12:38:12.263 SQL [1654]: pgsql_close() -- 12:38:45.946 INFO [1655]: COREGRADE is starting... -- 12:38:45.946 INFO [1655]: Version from config: 1.0 -- 12:38:45.946 DEBUG [1655]: Connecting to database... -- 12:38:45.946 DEBUG [1655]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:38:45.946 SQL [1655]: pgsql_db_connect() -- 12:38:45.950 DEBUG [1655]: Database connection successful -- 12:38:45.950 INFO [1655]: _SERVER found -- 12:38:45.950 INFO [1655]: REMOTE_ADDR = 192.168.1.13 -- 12:38:45.950 INFO [1655]: SERVER_NAME = oameye.works.coregrade.com -- 12:38:45.950 INFO [1655]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=232cfhvddh4rd7nu0009pcs49o6i4l1t -- 12:38:45.950 INFO [1655]: QUERY_STRING = /member/configure -- 12:38:45.950 INFO [1655]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:38:45.992 INFO [1655]: COREGRADE is stopping... -- 12:38:45.992 DEBUG [1655]: Closing database connection -- 12:38:45.992 SQL [1655]: pgsql_close() -- 12:38:46.096 INFO [1655]: COREGRADE is starting... -- 12:38:46.097 INFO [1655]: Version from config: 1.0 -- 12:38:46.097 DEBUG [1655]: Connecting to database... -- 12:38:46.097 DEBUG [1655]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:38:46.097 SQL [1655]: pgsql_db_connect() -- 12:38:46.101 DEBUG [1655]: Database connection successful -- 12:38:46.101 INFO [1655]: _SERVER found -- 12:38:46.101 INFO [1655]: REMOTE_ADDR = 192.168.1.13 -- 12:38:46.101 INFO [1655]: SERVER_NAME = oameye.works.coregrade.com -- 12:38:46.101 INFO [1655]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=37jcd08r5mqu9qsm11gn28atldj2c2nb -- 12:38:46.101 INFO [1655]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:38:46.101 INFO [1655]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:38:46.113 INFO [1655]: COREGRADE is stopping... -- 12:38:46.114 DEBUG [1655]: Closing database connection -- 12:38:46.114 SQL [1655]: pgsql_close() -- 12:38:46.239 INFO [1655]: COREGRADE is starting... -- 12:38:46.239 INFO [1655]: Version from config: 1.0 -- 12:38:46.239 DEBUG [1655]: Connecting to database... -- 12:38:46.239 DEBUG [1655]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:38:46.239 SQL [1655]: pgsql_db_connect() -- 12:38:46.243 DEBUG [1655]: Database connection successful -- 12:38:46.243 INFO [1655]: _SERVER found -- 12:38:46.243 INFO [1655]: REMOTE_ADDR = 192.168.1.13 -- 12:38:46.243 INFO [1655]: SERVER_NAME = oameye.works.coregrade.com -- 12:38:46.243 INFO [1655]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=37jcd08r5mqu9qsm11gn28atldj2c2nb -- 12:38:46.243 INFO [1655]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:38:46.243 INFO [1655]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:38:46.256 INFO [1655]: COREGRADE is stopping... -- 12:38:46.256 DEBUG [1655]: Closing database connection -- 12:38:46.256 SQL [1655]: pgsql_close() -- 12:40:47.852 INFO [12147]: COREGRADE is starting... -- 12:40:47.853 INFO [12147]: Version from config: 1.0 -- 12:40:47.853 DEBUG [12147]: Connecting to database... -- 12:40:47.853 DEBUG [12147]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:40:47.853 SQL [12147]: pgsql_db_connect() -- 12:40:47.895 INFO [12147]: COREGRADE is starting... -- 12:40:47.896 INFO [12147]: Version from config: 1.0 -- 12:40:47.896 DEBUG [12147]: Connecting to database... -- 12:40:47.896 DEBUG [12147]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:40:47.896 SQL [12147]: pgsql_db_connect() -- 12:40:47.900 DEBUG [12147]: Database connection successful -- 12:40:47.900 INFO [12147]: _SERVER found -- 12:40:47.900 INFO [12147]: REMOTE_ADDR = 192.168.1.13 -- 12:40:47.900 INFO [12147]: SERVER_NAME = oameye.works.coregrade.com -- 12:40:47.900 INFO [12147]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=37jcd08r5mqu9qsm11gn28atldj2c2nb -- 12:40:47.900 INFO [12147]: QUERY_STRING = -- 12:40:47.900 INFO [12147]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:40:47.900 INFO [12147]: SystemStatus()09-09-********~************ -- 12:40:47.900 INFO [12147]: long coregrade_api_main(CVars in, CVars &out) -- 12:40:47.900 INFO [12147]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 12:40:47.900 INFO [12147]: account calls -- 12:40:47.900 INFO [12147]: account_calls() -- 12:40:47.900 INFO [12147]: LoginCoreGradeAccount() -- 12:40:47.900 FLOG_MAX [12147]: REQ_STRING(username) -- 12:40:47.900 FLOG_MAX [12147]: REQ_STRING(password) -- 12:40:47.900 FLOG_MAX [12147]: REQ_STRING(sessionid) -- 12:40:47.900 FLOG_MAX [12147]: long load_db_record( CVars &rec, const char * query, ... ) -- 12:40:47.900 SQL [12147]: pgsql_query() -- 12:40:47.900 SQL [12147]: About to run query: -- 12:40:47.900 SQL [12147]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 12:40:47.903 SQL [12147]: Found rows: 1 -- 12:40:47.903 FLOG_MAX [12147]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 12:40:47.903 INFO [12147]: long SessionCheck(long uid, const char *sessionid, int create ) -- 12:40:47.903 SQL [12147]: pgsql_exec() -- 12:40:47.904 SQL [12147]: About to run query: -- 12:40:47.904 SQL [12147]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 12:40:47.905 SQL [12147]: PQcmdTuples: 1 -- 12:40:47.905 SQL [12147]: Affected rows: 1 -- 12:40:47.905 SQL [12147]: pgsql_exec() -- 12:40:47.905 SQL [12147]: About to run query: -- 12:40:47.905 SQL [12147]: DELETE FROM members_session WHERE member_id=5 -- 12:40:47.905 SQL [12147]: PQcmdTuples: 0 -- 12:40:47.905 SQL [12147]: Affected rows: 0 -- 12:40:47.905 SQL [12147]: pgsql_query() -- 12:40:47.905 SQL [12147]: About to run query: -- 12:40:47.905 SQL [12147]: SELECT * FROM members_session WHERE member_id=5 AND session<>'C56F05B94BD0F9D1CD3DFB832D8DF4CF' -- 12:40:47.906 SQL [12147]: Found rows: 0 -- 12:40:47.906 SQL [12147]: Found rows: 0 -- 12:40:47.906 FLOG_MAX [12147]: long load_db_record( CVars &rec, const char * query, ... ) -- 12:40:47.906 SQL [12147]: pgsql_query() -- 12:40:47.906 SQL [12147]: About to run query: -- 12:40:47.906 SQL [12147]: SELECT * FROM members_session WHERE member_id=5 AND session='C56F05B94BD0F9D1CD3DFB832D8DF4CF' -- 12:40:47.906 SQL [12147]: Found rows: 0 -- 12:40:47.906 SQL [12147]: Found rows: 0 -- 12:40:47.907 FLOG_MAX [12147]: insert_db_record() -- 12:40:47.907 SQL [12147]: pgsql_exec() -- 12:40:47.907 SQL [12147]: About to run query: -- 12:40:47.907 SQL [12147]: INSERT INTO members_session (member_id,session) VALUES ('5','C56F05B94BD0F9D1CD3DFB832D8DF4CF') -- 12:40:47.908 SQL [12147]: PQcmdTuples: 1 -- 12:40:47.908 SQL [12147]: Affected rows: 1 -- 12:40:47.908 FLOG_MAX [12147]: SELECT currval('members_session_id_seq') -- 12:40:47.908 SQL [12147]: pgsql_query() -- 12:40:47.908 SQL [12147]: About to run query: -- 12:40:47.908 SQL [12147]: SELECT currval('members_session_id_seq') -- 12:40:47.908 SQL [12147]: Found rows: 1 -- 12:40:47.908 INFO [12147]: CreateDefaultPage() -- 12:40:47.908 FLOG_MAX [12147]: long load_db_record( CVars &rec, const char * query, ... ) -- 12:40:47.908 SQL [12147]: pgsql_query() -- 12:40:47.908 SQL [12147]: About to run query: -- 12:40:47.908 SQL [12147]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 12:40:47.909 SQL [12147]: Found rows: 1 -- 12:40:47.909 FLOG_MAX [12147]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 12:40:47.909 SQL [12147]: pgsql_query() -- 12:40:47.909 SQL [12147]: About to run query: -- 12:40:47.909 SQL [12147]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 12:40:47.909 SQL [12147]: Found rows: 1 -- 12:40:47.909 INFO [12147]: /CreateDefaultPage() -- 12:40:47.909 INFO [12147]: /LoginCoreGradeAccount() -- 12:40:47.909 INFO [12147]: RET: added=2020-02-05 06:47:23.982154 -- 12:40:47.909 INFO [12147]: RET: email=ameye+11@chiefsoft.com -- 12:40:47.909 INFO [12147]: RET: firstname=Olu -- 12:40:47.909 INFO [12147]: RET: id=5 -- 12:40:47.909 INFO [12147]: RET: last_login= -- 12:40:47.909 INFO [12147]: RET: lastname=Amey -- 12:40:47.909 INFO [12147]: RET: loc=192.168.1.13 -- 12:40:47.909 INFO [12147]: RET: member_id=5 -- 12:40:47.909 INFO [12147]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 12:40:47.909 INFO [12147]: RET: phone= -- 12:40:47.909 INFO [12147]: RET: pid= -- 12:40:47.909 INFO [12147]: RET: result=YES I GET TO BACK END -- 12:40:47.909 INFO [12147]: RET: sessionid=C56F05B94BD0F9D1CD3DFB832D8DF4CF -- 12:40:47.909 INFO [12147]: RET: status=1 -- 12:40:47.909 INFO [12147]: RET: stauts=OK -- 12:40:47.909 INFO [12147]: RET: username=ameye+11@chiefsoft.com -- 12:40:47.909 INFO [12147]: RET: verified= -- 12:40:47.911 INFO [12147]: COREGRADE is stopping... -- 12:40:47.911 DEBUG [12147]: Closing database connection -- 12:40:47.911 SQL [12147]: pgsql_close() -- 12:40:47.858 DEBUG [12147]: Database connection successful -- 12:40:47.858 INFO [12147]: _SERVER found -- 12:40:47.858 INFO [12147]: REMOTE_ADDR = 192.168.1.13 -- 12:40:47.858 INFO [12147]: SERVER_NAME = oameye.works.coregrade.com -- 12:40:47.858 INFO [12147]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=37jcd08r5mqu9qsm11gn28atldj2c2nb -- 12:40:47.858 INFO [12147]: QUERY_STRING = /auth -- 12:40:47.858 INFO [12147]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:40:47.911 INFO [12147]: COREGRADE is stopping... -- 12:40:47.911 DEBUG [12147]: Closing database connection -- 12:40:47.911 SQL [12147]: pgsql_close() -- 12:40:47.934 INFO [12147]: COREGRADE is starting... -- 12:40:47.934 INFO [12147]: Version from config: 1.0 -- 12:40:47.934 DEBUG [12147]: Connecting to database... -- 12:40:47.934 DEBUG [12147]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:40:47.934 SQL [12147]: pgsql_db_connect() -- 12:40:47.938 DEBUG [12147]: Database connection successful -- 12:40:47.938 INFO [12147]: _SERVER found -- 12:40:47.938 INFO [12147]: REMOTE_ADDR = 192.168.1.13 -- 12:40:47.938 INFO [12147]: SERVER_NAME = oameye.works.coregrade.com -- 12:40:47.938 INFO [12147]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=37jcd08r5mqu9qsm11gn28atldj2c2nb -- 12:40:47.938 INFO [12147]: QUERY_STRING = /member/index -- 12:40:47.938 INFO [12147]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:40:47.977 INFO [12147]: COREGRADE is stopping... -- 12:40:47.977 DEBUG [12147]: Closing database connection -- 12:40:47.977 SQL [12147]: pgsql_close() -- 12:40:48.171 INFO [12147]: COREGRADE is starting... -- 12:40:48.171 INFO [12147]: Version from config: 1.0 -- 12:40:48.171 DEBUG [12147]: Connecting to database... -- 12:40:48.171 DEBUG [12147]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:40:48.171 SQL [12147]: pgsql_db_connect() -- 12:40:48.175 DEBUG [12147]: Database connection successful -- 12:40:48.175 INFO [12147]: _SERVER found -- 12:40:48.175 INFO [12147]: REMOTE_ADDR = 192.168.1.13 -- 12:40:48.175 INFO [12147]: SERVER_NAME = oameye.works.coregrade.com -- 12:40:48.175 INFO [12147]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=37jcd08r5mqu9qsm11gn28atldj2c2nb -- 12:40:48.175 INFO [12147]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:40:48.175 INFO [12147]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:40:48.188 INFO [12147]: COREGRADE is stopping... -- 12:40:48.188 DEBUG [12147]: Closing database connection -- 12:40:48.188 SQL [12147]: pgsql_close() -- 12:40:48.198 INFO [12147]: COREGRADE is starting... -- 12:40:48.198 INFO [12147]: Version from config: 1.0 -- 12:40:48.198 DEBUG [12147]: Connecting to database... -- 12:40:48.198 DEBUG [12147]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:40:48.198 SQL [12147]: pgsql_db_connect() -- 12:40:48.202 DEBUG [12147]: Database connection successful -- 12:40:48.202 INFO [12147]: _SERVER found -- 12:40:48.202 INFO [12147]: REMOTE_ADDR = 192.168.1.13 -- 12:40:48.202 INFO [12147]: SERVER_NAME = oameye.works.coregrade.com -- 12:40:48.202 INFO [12147]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=37jcd08r5mqu9qsm11gn28atldj2c2nb -- 12:40:48.202 INFO [12147]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:40:48.202 INFO [12147]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:40:48.214 INFO [12147]: COREGRADE is stopping... -- 12:40:48.214 DEBUG [12147]: Closing database connection -- 12:40:48.214 SQL [12147]: pgsql_close() -- 12:40:51.719 INFO [12147]: COREGRADE is starting... -- 12:40:51.719 INFO [12147]: Version from config: 1.0 -- 12:40:51.719 DEBUG [12147]: Connecting to database... -- 12:40:51.719 DEBUG [12147]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:40:51.719 SQL [12147]: pgsql_db_connect() -- 12:40:51.723 DEBUG [12147]: Database connection successful -- 12:40:51.723 INFO [12147]: _SERVER found -- 12:40:51.723 INFO [12147]: REMOTE_ADDR = 192.168.1.13 -- 12:40:51.723 INFO [12147]: SERVER_NAME = oameye.works.coregrade.com -- 12:40:51.723 INFO [12147]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=37jcd08r5mqu9qsm11gn28atldj2c2nb -- 12:40:51.723 INFO [12147]: QUERY_STRING = /member/index -- 12:40:51.723 INFO [12147]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:40:51.762 INFO [12147]: COREGRADE is stopping... -- 12:40:51.762 DEBUG [12147]: Closing database connection -- 12:40:51.762 SQL [12147]: pgsql_close() -- 12:42:05.906 INFO [12148]: COREGRADE is starting... -- 12:42:05.906 INFO [12148]: Version from config: 1.0 -- 12:42:05.906 DEBUG [12148]: Connecting to database... -- 12:42:05.906 DEBUG [12148]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:42:05.906 SQL [12148]: pgsql_db_connect() -- 12:42:05.911 DEBUG [12148]: Database connection successful -- 12:42:05.911 INFO [12148]: _SERVER found -- 12:42:05.911 INFO [12148]: REMOTE_ADDR = 192.168.1.13 -- 12:42:05.911 INFO [12148]: SERVER_NAME = oameye.works.coregrade.com -- 12:42:05.911 INFO [12148]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=37jcd08r5mqu9qsm11gn28atldj2c2nb -- 12:42:05.911 INFO [12148]: QUERY_STRING = /member/index -- 12:42:05.911 INFO [12148]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:42:05.954 INFO [12148]: COREGRADE is stopping... -- 12:42:05.954 DEBUG [12148]: Closing database connection -- 12:42:05.954 SQL [12148]: pgsql_close() -- 12:42:06.135 INFO [12148]: COREGRADE is starting... -- 12:42:06.135 INFO [12148]: Version from config: 1.0 -- 12:42:06.135 DEBUG [12148]: Connecting to database... -- 12:42:06.135 DEBUG [12148]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:42:06.135 SQL [12148]: pgsql_db_connect() -- 12:42:06.139 DEBUG [12148]: Database connection successful -- 12:42:06.139 INFO [12148]: _SERVER found -- 12:42:06.139 INFO [12148]: REMOTE_ADDR = 192.168.1.13 -- 12:42:06.139 INFO [12148]: SERVER_NAME = oameye.works.coregrade.com -- 12:42:06.139 INFO [12148]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=37jcd08r5mqu9qsm11gn28atldj2c2nb -- 12:42:06.139 INFO [12148]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:42:06.139 INFO [12148]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:42:06.151 INFO [12148]: COREGRADE is stopping... -- 12:42:06.151 DEBUG [12148]: Closing database connection -- 12:42:06.151 SQL [12148]: pgsql_close() -- 12:42:06.183 INFO [12148]: COREGRADE is starting... -- 12:42:06.183 INFO [12148]: Version from config: 1.0 -- 12:42:06.183 DEBUG [12148]: Connecting to database... -- 12:42:06.183 DEBUG [12148]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:42:06.183 SQL [12148]: pgsql_db_connect() -- 12:42:06.187 DEBUG [12148]: Database connection successful -- 12:42:06.187 INFO [12148]: _SERVER found -- 12:42:06.187 INFO [12148]: REMOTE_ADDR = 192.168.1.13 -- 12:42:06.187 INFO [12148]: SERVER_NAME = oameye.works.coregrade.com -- 12:42:06.187 INFO [12148]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=37jcd08r5mqu9qsm11gn28atldj2c2nb -- 12:42:06.187 INFO [12148]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:42:06.187 INFO [12148]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:42:06.199 INFO [12148]: COREGRADE is stopping... -- 12:42:06.199 DEBUG [12148]: Closing database connection -- 12:42:06.199 SQL [12148]: pgsql_close() -- 12:42:07.026 INFO [12148]: COREGRADE is starting... -- 12:42:07.026 INFO [12148]: Version from config: 1.0 -- 12:42:07.026 DEBUG [12148]: Connecting to database... -- 12:42:07.026 DEBUG [12148]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:42:07.026 SQL [12148]: pgsql_db_connect() -- 12:42:07.030 DEBUG [12148]: Database connection successful -- 12:42:07.030 INFO [12148]: _SERVER found -- 12:42:07.030 INFO [12148]: REMOTE_ADDR = 192.168.1.13 -- 12:42:07.030 INFO [12148]: SERVER_NAME = oameye.works.coregrade.com -- 12:42:07.030 INFO [12148]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=37jcd08r5mqu9qsm11gn28atldj2c2nb -- 12:42:07.030 INFO [12148]: QUERY_STRING = /member/mycalendar -- 12:42:07.030 INFO [12148]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:42:07.067 INFO [12148]: COREGRADE is stopping... -- 12:42:07.067 DEBUG [12148]: Closing database connection -- 12:42:07.067 SQL [12148]: pgsql_close() -- 12:42:07.323 INFO [12148]: COREGRADE is starting... -- 12:42:07.323 INFO [12148]: Version from config: 1.0 -- 12:42:07.323 DEBUG [12148]: Connecting to database... -- 12:42:07.323 DEBUG [12148]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:42:07.323 SQL [12148]: pgsql_db_connect() -- 12:42:07.327 DEBUG [12148]: Database connection successful -- 12:42:07.327 INFO [12148]: _SERVER found -- 12:42:07.327 INFO [12148]: REMOTE_ADDR = 192.168.1.13 -- 12:42:07.327 INFO [12148]: SERVER_NAME = oameye.works.coregrade.com -- 12:42:07.327 INFO [12148]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=37jcd08r5mqu9qsm11gn28atldj2c2nb -- 12:42:07.327 INFO [12148]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:42:07.327 INFO [12148]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:42:07.339 INFO [12148]: COREGRADE is stopping... -- 12:42:07.339 DEBUG [12148]: Closing database connection -- 12:42:07.339 SQL [12148]: pgsql_close() -- 12:43:09.945 INFO [12150]: COREGRADE is starting... -- 12:43:09.945 INFO [12150]: Version from config: 1.0 -- 12:43:09.945 DEBUG [12150]: Connecting to database... -- 12:43:09.945 DEBUG [12150]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:43:09.945 SQL [12150]: pgsql_db_connect() -- 12:43:09.950 DEBUG [12150]: Database connection successful -- 12:43:09.950 INFO [12150]: _SERVER found -- 12:43:09.950 INFO [12150]: REMOTE_ADDR = 192.168.1.13 -- 12:43:09.950 INFO [12150]: SERVER_NAME = oameye.works.coregrade.com -- 12:43:09.950 INFO [12150]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=37jcd08r5mqu9qsm11gn28atldj2c2nb -- 12:43:09.950 INFO [12150]: QUERY_STRING = /member/configure -- 12:43:09.950 INFO [12150]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:43:09.992 INFO [12150]: COREGRADE is stopping... -- 12:43:09.992 DEBUG [12150]: Closing database connection -- 12:43:09.993 SQL [12150]: pgsql_close() -- 12:46:50.905 INFO [12149]: COREGRADE is starting... -- 12:46:50.905 INFO [12149]: Version from config: 1.0 -- 12:46:50.905 DEBUG [12149]: Connecting to database... -- 12:46:50.905 DEBUG [12149]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:46:50.905 SQL [12149]: pgsql_db_connect() -- 12:46:50.910 DEBUG [12149]: Database connection successful -- 12:46:50.910 INFO [12149]: _SERVER found -- 12:46:50.910 INFO [12149]: REMOTE_ADDR = 192.168.1.13 -- 12:46:50.910 INFO [12149]: SERVER_NAME = oameye.works.coregrade.com -- 12:46:50.910 INFO [12149]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=37jcd08r5mqu9qsm11gn28atldj2c2nb -- 12:46:50.910 INFO [12149]: QUERY_STRING = /member/configure -- 12:46:50.910 INFO [12149]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:46:50.954 INFO [12149]: COREGRADE is stopping... -- 12:46:50.954 DEBUG [12149]: Closing database connection -- 12:46:50.954 SQL [12149]: pgsql_close() -- 12:46:51.047 INFO [12149]: COREGRADE is starting... -- 12:46:51.048 INFO [12149]: Version from config: 1.0 -- 12:46:51.048 DEBUG [12149]: Connecting to database... -- 12:46:51.048 DEBUG [12149]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:46:51.048 SQL [12149]: pgsql_db_connect() -- 12:46:51.052 DEBUG [12149]: Database connection successful -- 12:46:51.052 INFO [12149]: _SERVER found -- 12:46:51.052 INFO [12149]: REMOTE_ADDR = 192.168.1.13 -- 12:46:51.052 INFO [12149]: SERVER_NAME = oameye.works.coregrade.com -- 12:46:51.052 INFO [12149]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=q7kbj8jkr9h3s9es328ndcjltmikdv6f -- 12:46:51.052 INFO [12149]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:46:51.052 INFO [12149]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:46:51.063 INFO [12149]: COREGRADE is stopping... -- 12:46:51.063 DEBUG [12149]: Closing database connection -- 12:46:51.063 SQL [12149]: pgsql_close() -- 12:46:51.355 INFO [12149]: COREGRADE is starting... -- 12:46:51.355 INFO [12149]: Version from config: 1.0 -- 12:46:51.355 DEBUG [12149]: Connecting to database... -- 12:46:51.355 DEBUG [12149]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:46:51.355 SQL [12149]: pgsql_db_connect() -- 12:46:51.359 DEBUG [12149]: Database connection successful -- 12:46:51.359 INFO [12149]: _SERVER found -- 12:46:51.359 INFO [12149]: REMOTE_ADDR = 192.168.1.13 -- 12:46:51.359 INFO [12149]: SERVER_NAME = oameye.works.coregrade.com -- 12:46:51.359 INFO [12149]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=q7kbj8jkr9h3s9es328ndcjltmikdv6f -- 12:46:51.359 INFO [12149]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:46:51.359 INFO [12149]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:46:51.370 INFO [12149]: COREGRADE is stopping... -- 12:46:51.370 DEBUG [12149]: Closing database connection -- 12:46:51.370 SQL [12149]: pgsql_close() -- 12:47:05.731 INFO [12151]: COREGRADE is starting... -- 12:47:05.732 INFO [12151]: Version from config: 1.0 -- 12:47:05.732 DEBUG [12151]: Connecting to database... -- 12:47:05.732 DEBUG [12151]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:47:05.732 SQL [12151]: pgsql_db_connect() -- 12:47:05.736 DEBUG [12151]: Database connection successful -- 12:47:05.736 INFO [12151]: _SERVER found -- 12:47:05.736 INFO [12151]: REMOTE_ADDR = 192.168.1.13 -- 12:47:05.736 INFO [12151]: SERVER_NAME = oameye.works.coregrade.com -- 12:47:05.736 INFO [12151]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=q7kbj8jkr9h3s9es328ndcjltmikdv6f -- 12:47:05.736 INFO [12151]: QUERY_STRING = /member/mycalendar -- 12:47:05.736 INFO [12151]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:47:05.776 INFO [12151]: COREGRADE is stopping... -- 12:47:05.776 DEBUG [12151]: Closing database connection -- 12:47:05.776 SQL [12151]: pgsql_close() -- 12:47:06.057 INFO [12151]: COREGRADE is starting... -- 12:47:06.058 INFO [12151]: Version from config: 1.0 -- 12:47:06.058 DEBUG [12151]: Connecting to database... -- 12:47:06.058 DEBUG [12151]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:47:06.058 SQL [12151]: pgsql_db_connect() -- 12:47:06.062 DEBUG [12151]: Database connection successful -- 12:47:06.062 INFO [12151]: _SERVER found -- 12:47:06.062 INFO [12151]: REMOTE_ADDR = 192.168.1.13 -- 12:47:06.062 INFO [12151]: SERVER_NAME = oameye.works.coregrade.com -- 12:47:06.062 INFO [12151]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=q7kbj8jkr9h3s9es328ndcjltmikdv6f -- 12:47:06.062 INFO [12151]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:47:06.062 INFO [12151]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:47:06.074 INFO [12151]: COREGRADE is stopping... -- 12:47:06.074 DEBUG [12151]: Closing database connection -- 12:47:06.074 SQL [12151]: pgsql_close() -- 12:47:06.098 INFO [12151]: COREGRADE is starting... -- 12:47:06.098 INFO [12151]: Version from config: 1.0 -- 12:47:06.098 DEBUG [12151]: Connecting to database... -- 12:47:06.098 DEBUG [12151]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:47:06.098 SQL [12151]: pgsql_db_connect() -- 12:47:06.102 DEBUG [12151]: Database connection successful -- 12:47:06.102 INFO [12151]: _SERVER found -- 12:47:06.102 INFO [12151]: REMOTE_ADDR = 192.168.1.13 -- 12:47:06.102 INFO [12151]: SERVER_NAME = oameye.works.coregrade.com -- 12:47:06.102 INFO [12151]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=q7kbj8jkr9h3s9es328ndcjltmikdv6f -- 12:47:06.102 INFO [12151]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:47:06.102 INFO [12151]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:47:06.114 INFO [12151]: COREGRADE is stopping... -- 12:47:06.114 DEBUG [12151]: Closing database connection -- 12:47:06.114 SQL [12151]: pgsql_close() -- 12:47:38.426 INFO [12170]: COREGRADE is starting... -- 12:47:38.426 INFO [12170]: Version from config: 1.0 -- 12:47:38.426 DEBUG [12170]: Connecting to database... -- 12:47:38.426 DEBUG [12170]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:47:38.426 SQL [12170]: pgsql_db_connect() -- 12:47:38.432 INFO [12147]: COREGRADE is starting... -- 12:47:38.432 INFO [12147]: Version from config: 1.0 -- 12:47:38.432 DEBUG [12147]: Connecting to database... -- 12:47:38.432 DEBUG [12147]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:47:38.432 SQL [12147]: pgsql_db_connect() -- 12:47:38.430 DEBUG [12170]: Database connection successful -- 12:47:38.430 INFO [12170]: _SERVER found -- 12:47:38.430 INFO [12170]: REMOTE_ADDR = 192.168.1.13 -- 12:47:38.430 INFO [12170]: SERVER_NAME = oameye.works.coregrade.com -- 12:47:38.430 INFO [12170]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=q7kbj8jkr9h3s9es328ndcjltmikdv6f -- 12:47:38.430 INFO [12170]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 12:47:38.430 INFO [12170]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:47:38.445 INFO [12170]: COREGRADE is stopping... -- 12:47:38.445 DEBUG [12170]: Closing database connection -- 12:47:38.445 SQL [12170]: pgsql_close() -- 12:47:38.436 DEBUG [12147]: Database connection successful -- 12:47:38.436 INFO [12147]: _SERVER found -- 12:47:38.436 INFO [12147]: REMOTE_ADDR = 192.168.1.13 -- 12:47:38.436 INFO [12147]: SERVER_NAME = oameye.works.coregrade.com -- 12:47:38.436 INFO [12147]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=q7kbj8jkr9h3s9es328ndcjltmikdv6f -- 12:47:38.436 INFO [12147]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 12:47:38.436 INFO [12147]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:47:38.449 INFO [12147]: COREGRADE is stopping... -- 12:47:38.449 DEBUG [12147]: Closing database connection -- 12:47:38.449 SQL [12147]: pgsql_close() -- 12:47:42.961 INFO [12147]: COREGRADE is starting... -- 12:47:42.962 INFO [12147]: Version from config: 1.0 -- 12:47:42.962 DEBUG [12147]: Connecting to database... -- 12:47:42.962 DEBUG [12147]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:47:42.962 SQL [12147]: pgsql_db_connect() -- 12:47:42.966 DEBUG [12147]: Database connection successful -- 12:47:42.966 INFO [12147]: _SERVER found -- 12:47:42.966 INFO [12147]: REMOTE_ADDR = 192.168.1.13 -- 12:47:42.966 INFO [12147]: SERVER_NAME = oameye.works.coregrade.com -- 12:47:42.966 INFO [12147]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=q7kbj8jkr9h3s9es328ndcjltmikdv6f -- 12:47:42.966 INFO [12147]: QUERY_STRING = /member/configure -- 12:47:42.966 INFO [12147]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:47:43.006 INFO [12147]: COREGRADE is stopping... -- 12:47:43.006 DEBUG [12147]: Closing database connection -- 12:47:43.006 SQL [12147]: pgsql_close() -- 12:47:43.211 INFO [12147]: COREGRADE is starting... -- 12:47:43.211 INFO [12147]: Version from config: 1.0 -- 12:47:43.211 DEBUG [12147]: Connecting to database... -- 12:47:43.211 DEBUG [12147]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:47:43.211 SQL [12147]: pgsql_db_connect() -- 12:47:43.215 DEBUG [12147]: Database connection successful -- 12:47:43.215 INFO [12147]: _SERVER found -- 12:47:43.215 INFO [12147]: REMOTE_ADDR = 192.168.1.13 -- 12:47:43.215 INFO [12147]: SERVER_NAME = oameye.works.coregrade.com -- 12:47:43.215 INFO [12147]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=q7kbj8jkr9h3s9es328ndcjltmikdv6f -- 12:47:43.215 INFO [12147]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:47:43.215 INFO [12147]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:47:43.227 INFO [12147]: COREGRADE is stopping... -- 12:47:43.227 DEBUG [12147]: Closing database connection -- 12:47:43.227 SQL [12147]: pgsql_close() -- 12:47:43.523 INFO [12147]: COREGRADE is starting... -- 12:47:43.523 INFO [12147]: Version from config: 1.0 -- 12:47:43.523 DEBUG [12147]: Connecting to database... -- 12:47:43.523 DEBUG [12147]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:47:43.523 SQL [12147]: pgsql_db_connect() -- 12:47:43.527 DEBUG [12147]: Database connection successful -- 12:47:43.527 INFO [12147]: _SERVER found -- 12:47:43.527 INFO [12147]: REMOTE_ADDR = 192.168.1.13 -- 12:47:43.527 INFO [12147]: SERVER_NAME = oameye.works.coregrade.com -- 12:47:43.527 INFO [12147]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=q7kbj8jkr9h3s9es328ndcjltmikdv6f -- 12:47:43.527 INFO [12147]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:47:43.527 INFO [12147]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:47:43.538 INFO [12147]: COREGRADE is stopping... -- 12:47:43.538 DEBUG [12147]: Closing database connection -- 12:47:43.538 SQL [12147]: pgsql_close() -- 12:47:43.647 INFO [12147]: COREGRADE is starting... -- 12:47:43.648 INFO [12147]: Version from config: 1.0 -- 12:47:43.648 DEBUG [12147]: Connecting to database... -- 12:47:43.648 DEBUG [12147]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:47:43.648 SQL [12147]: pgsql_db_connect() -- 12:47:43.652 DEBUG [12147]: Database connection successful -- 12:47:43.652 INFO [12147]: _SERVER found -- 12:47:43.652 INFO [12147]: REMOTE_ADDR = 192.168.1.13 -- 12:47:43.652 INFO [12147]: SERVER_NAME = oameye.works.coregrade.com -- 12:47:43.652 INFO [12147]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=q7kbj8jkr9h3s9es328ndcjltmikdv6f -- 12:47:43.652 INFO [12147]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 12:47:43.652 INFO [12147]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:47:43.663 INFO [12147]: COREGRADE is stopping... -- 12:47:43.663 DEBUG [12147]: Closing database connection -- 12:47:43.663 SQL [12147]: pgsql_close() -- 12:47:43.675 INFO [12148]: COREGRADE is starting... -- 12:47:43.676 INFO [12148]: Version from config: 1.0 -- 12:47:43.676 DEBUG [12148]: Connecting to database... -- 12:47:43.676 DEBUG [12148]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:47:43.676 SQL [12148]: pgsql_db_connect() -- 12:47:43.679 DEBUG [12148]: Database connection successful -- 12:47:43.679 INFO [12148]: _SERVER found -- 12:47:43.679 INFO [12148]: REMOTE_ADDR = 192.168.1.13 -- 12:47:43.679 INFO [12148]: SERVER_NAME = oameye.works.coregrade.com -- 12:47:43.679 INFO [12148]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=q7kbj8jkr9h3s9es328ndcjltmikdv6f -- 12:47:43.679 INFO [12148]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 12:47:43.679 INFO [12148]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:47:43.692 INFO [12148]: COREGRADE is stopping... -- 12:47:43.692 DEBUG [12148]: Closing database connection -- 12:47:43.692 SQL [12148]: pgsql_close() -- 12:47:44.832 INFO [12148]: COREGRADE is starting... -- 12:47:44.832 INFO [12148]: Version from config: 1.0 -- 12:47:44.832 DEBUG [12148]: Connecting to database... -- 12:47:44.833 DEBUG [12148]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:47:44.833 SQL [12148]: pgsql_db_connect() -- 12:47:44.837 DEBUG [12148]: Database connection successful -- 12:47:44.837 INFO [12148]: _SERVER found -- 12:47:44.837 INFO [12148]: REMOTE_ADDR = 192.168.1.13 -- 12:47:44.837 INFO [12148]: SERVER_NAME = oameye.works.coregrade.com -- 12:47:44.837 INFO [12148]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=q7kbj8jkr9h3s9es328ndcjltmikdv6f -- 12:47:44.837 INFO [12148]: QUERY_STRING = /member/configure -- 12:47:44.837 INFO [12148]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:47:44.876 INFO [12148]: COREGRADE is stopping... -- 12:47:44.876 DEBUG [12148]: Closing database connection -- 12:47:44.876 SQL [12148]: pgsql_close() -- 12:47:45.046 INFO [12148]: COREGRADE is starting... -- 12:47:45.047 INFO [12148]: Version from config: 1.0 -- 12:47:45.047 DEBUG [12148]: Connecting to database... -- 12:47:45.047 DEBUG [12148]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:47:45.047 SQL [12148]: pgsql_db_connect() -- 12:47:45.051 DEBUG [12148]: Database connection successful -- 12:47:45.051 INFO [12148]: _SERVER found -- 12:47:45.051 INFO [12148]: REMOTE_ADDR = 192.168.1.13 -- 12:47:45.051 INFO [12148]: SERVER_NAME = oameye.works.coregrade.com -- 12:47:45.051 INFO [12148]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=q7kbj8jkr9h3s9es328ndcjltmikdv6f -- 12:47:45.051 INFO [12148]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:47:45.051 INFO [12148]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:47:45.063 INFO [12148]: COREGRADE is stopping... -- 12:47:45.063 DEBUG [12148]: Closing database connection -- 12:47:45.063 SQL [12148]: pgsql_close() -- 12:47:45.366 INFO [12148]: COREGRADE is starting... -- 12:47:45.367 INFO [12148]: Version from config: 1.0 -- 12:47:45.367 DEBUG [12148]: Connecting to database... -- 12:47:45.367 DEBUG [12148]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:47:45.367 SQL [12148]: pgsql_db_connect() -- 12:47:45.371 DEBUG [12148]: Database connection successful -- 12:47:45.371 INFO [12148]: _SERVER found -- 12:47:45.371 INFO [12148]: REMOTE_ADDR = 192.168.1.13 -- 12:47:45.371 INFO [12148]: SERVER_NAME = oameye.works.coregrade.com -- 12:47:45.371 INFO [12148]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=q7kbj8jkr9h3s9es328ndcjltmikdv6f -- 12:47:45.371 INFO [12148]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:47:45.371 INFO [12148]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:47:45.383 INFO [12148]: COREGRADE is stopping... -- 12:47:45.383 DEBUG [12148]: Closing database connection -- 12:47:45.383 SQL [12148]: pgsql_close() -- 12:47:45.621 INFO [12148]: COREGRADE is starting... -- 12:47:45.621 INFO [12147]: COREGRADE is starting... -- 12:47:45.621 INFO [12148]: Version from config: 1.0 -- 12:47:45.621 DEBUG [12148]: Connecting to database... -- 12:47:45.621 DEBUG [12148]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:47:45.621 SQL [12148]: pgsql_db_connect() -- 12:47:45.622 INFO [12147]: Version from config: 1.0 -- 12:47:45.622 DEBUG [12147]: Connecting to database... -- 12:47:45.622 DEBUG [12147]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:47:45.622 SQL [12147]: pgsql_db_connect() -- 12:47:45.627 DEBUG [12147]: Database connection successful -- 12:47:45.627 INFO [12147]: _SERVER found -- 12:47:45.627 INFO [12147]: REMOTE_ADDR = 192.168.1.13 -- 12:47:45.627 INFO [12147]: SERVER_NAME = oameye.works.coregrade.com -- 12:47:45.627 INFO [12147]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=q7kbj8jkr9h3s9es328ndcjltmikdv6f -- 12:47:45.627 INFO [12147]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 12:47:45.627 INFO [12147]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:47:45.638 INFO [12147]: COREGRADE is stopping... -- 12:47:45.638 DEBUG [12147]: Closing database connection -- 12:47:45.638 SQL [12147]: pgsql_close() -- 12:47:45.627 DEBUG [12148]: Database connection successful -- 12:47:45.627 INFO [12148]: _SERVER found -- 12:47:45.627 INFO [12148]: REMOTE_ADDR = 192.168.1.13 -- 12:47:45.627 INFO [12148]: SERVER_NAME = oameye.works.coregrade.com -- 12:47:45.627 INFO [12148]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=q7kbj8jkr9h3s9es328ndcjltmikdv6f -- 12:47:45.627 INFO [12148]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 12:47:45.627 INFO [12148]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:47:45.639 INFO [12148]: COREGRADE is stopping... -- 12:47:45.639 DEBUG [12148]: Closing database connection -- 12:47:45.639 SQL [12148]: pgsql_close() -- 12:48:00.580 INFO [12150]: COREGRADE is starting... -- 12:48:00.580 INFO [12150]: Version from config: 1.0 -- 12:48:00.580 DEBUG [12150]: Connecting to database... -- 12:48:00.580 DEBUG [12150]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:48:00.580 SQL [12150]: pgsql_db_connect() -- 12:48:00.584 DEBUG [12150]: Database connection successful -- 12:48:00.584 INFO [12150]: _SERVER found -- 12:48:00.584 INFO [12150]: REMOTE_ADDR = 192.168.1.13 -- 12:48:00.584 INFO [12150]: SERVER_NAME = oameye.works.coregrade.com -- 12:48:00.584 INFO [12150]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=q7kbj8jkr9h3s9es328ndcjltmikdv6f -- 12:48:00.584 INFO [12150]: QUERY_STRING = /member/mycalendar -- 12:48:00.584 INFO [12150]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:48:00.620 INFO [12150]: COREGRADE is stopping... -- 12:48:00.621 DEBUG [12150]: Closing database connection -- 12:48:00.621 SQL [12150]: pgsql_close() -- 12:48:00.998 INFO [12150]: COREGRADE is starting... -- 12:48:00.998 INFO [12150]: Version from config: 1.0 -- 12:48:00.998 DEBUG [12150]: Connecting to database... -- 12:48:00.998 DEBUG [12150]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:48:00.998 SQL [12150]: pgsql_db_connect() -- 12:48:01.002 DEBUG [12150]: Database connection successful -- 12:48:01.002 INFO [12150]: _SERVER found -- 12:48:01.002 INFO [12150]: REMOTE_ADDR = 192.168.1.13 -- 12:48:01.002 INFO [12150]: SERVER_NAME = oameye.works.coregrade.com -- 12:48:01.002 INFO [12150]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=q7kbj8jkr9h3s9es328ndcjltmikdv6f -- 12:48:01.002 INFO [12150]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:48:01.002 INFO [12150]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:48:01.015 INFO [12150]: COREGRADE is stopping... -- 12:48:01.015 DEBUG [12150]: Closing database connection -- 12:48:01.015 SQL [12150]: pgsql_close() -- 12:48:01.140 INFO [12150]: COREGRADE is starting... -- 12:48:01.140 INFO [12150]: Version from config: 1.0 -- 12:48:01.140 DEBUG [12150]: Connecting to database... -- 12:48:01.140 DEBUG [12150]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:48:01.140 SQL [12150]: pgsql_db_connect() -- 12:48:01.144 DEBUG [12150]: Database connection successful -- 12:48:01.144 INFO [12150]: _SERVER found -- 12:48:01.144 INFO [12150]: REMOTE_ADDR = 192.168.1.13 -- 12:48:01.144 INFO [12150]: SERVER_NAME = oameye.works.coregrade.com -- 12:48:01.144 INFO [12150]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=q7kbj8jkr9h3s9es328ndcjltmikdv6f -- 12:48:01.144 INFO [12150]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:48:01.144 INFO [12150]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:48:01.156 INFO [12150]: COREGRADE is stopping... -- 12:48:01.156 DEBUG [12150]: Closing database connection -- 12:48:01.156 SQL [12150]: pgsql_close() -- 12:48:01.253 INFO [12150]: COREGRADE is starting... -- 12:48:01.253 INFO [12150]: Version from config: 1.0 -- 12:48:01.253 DEBUG [12150]: Connecting to database... -- 12:48:01.253 DEBUG [12150]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:48:01.253 SQL [12150]: pgsql_db_connect() -- 12:48:01.260 INFO [12149]: COREGRADE is starting... -- 12:48:01.260 INFO [12149]: Version from config: 1.0 -- 12:48:01.260 DEBUG [12149]: Connecting to database... -- 12:48:01.260 DEBUG [12149]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:48:01.260 SQL [12149]: pgsql_db_connect() -- 12:48:01.257 DEBUG [12150]: Database connection successful -- 12:48:01.257 INFO [12150]: _SERVER found -- 12:48:01.257 INFO [12150]: REMOTE_ADDR = 192.168.1.13 -- 12:48:01.257 INFO [12150]: SERVER_NAME = oameye.works.coregrade.com -- 12:48:01.257 INFO [12150]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=q7kbj8jkr9h3s9es328ndcjltmikdv6f -- 12:48:01.257 INFO [12150]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 12:48:01.257 INFO [12150]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:48:01.269 INFO [12150]: COREGRADE is stopping... -- 12:48:01.269 DEBUG [12150]: Closing database connection -- 12:48:01.269 SQL [12150]: pgsql_close() -- 12:48:01.264 DEBUG [12149]: Database connection successful -- 12:48:01.264 INFO [12149]: _SERVER found -- 12:48:01.264 INFO [12149]: REMOTE_ADDR = 192.168.1.13 -- 12:48:01.264 INFO [12149]: SERVER_NAME = oameye.works.coregrade.com -- 12:48:01.264 INFO [12149]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=q7kbj8jkr9h3s9es328ndcjltmikdv6f -- 12:48:01.264 INFO [12149]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 12:48:01.264 INFO [12149]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:48:01.275 INFO [12149]: COREGRADE is stopping... -- 12:48:01.275 DEBUG [12149]: Closing database connection -- 12:48:01.275 SQL [12149]: pgsql_close() -- 12:49:31.165 INFO [12151]: COREGRADE is starting... -- 12:49:31.165 INFO [12151]: Version from config: 1.0 -- 12:49:31.165 DEBUG [12151]: Connecting to database... -- 12:49:31.165 DEBUG [12151]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:31.165 SQL [12151]: pgsql_db_connect() -- 12:49:31.169 DEBUG [12151]: Database connection successful -- 12:49:31.169 INFO [12151]: _SERVER found -- 12:49:31.169 INFO [12151]: REMOTE_ADDR = 192.168.1.13 -- 12:49:31.169 INFO [12151]: SERVER_NAME = oameye.works.coregrade.com -- 12:49:31.169 INFO [12151]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=q7kbj8jkr9h3s9es328ndcjltmikdv6f -- 12:49:31.169 INFO [12151]: QUERY_STRING = /member/mycalendar -- 12:49:31.169 INFO [12151]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:49:31.206 INFO [12151]: COREGRADE is stopping... -- 12:49:31.206 DEBUG [12151]: Closing database connection -- 12:49:31.206 SQL [12151]: pgsql_close() -- 12:49:31.521 INFO [12151]: COREGRADE is starting... -- 12:49:31.522 INFO [12151]: Version from config: 1.0 -- 12:49:31.522 DEBUG [12151]: Connecting to database... -- 12:49:31.522 DEBUG [12151]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:31.522 SQL [12151]: pgsql_db_connect() -- 12:49:31.526 DEBUG [12151]: Database connection successful -- 12:49:31.526 INFO [12151]: _SERVER found -- 12:49:31.526 INFO [12151]: REMOTE_ADDR = 192.168.1.13 -- 12:49:31.526 INFO [12151]: SERVER_NAME = oameye.works.coregrade.com -- 12:49:31.526 INFO [12151]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=q7kbj8jkr9h3s9es328ndcjltmikdv6f -- 12:49:31.526 INFO [12151]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:49:31.526 INFO [12151]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:49:31.538 INFO [12151]: COREGRADE is stopping... -- 12:49:31.538 DEBUG [12151]: Closing database connection -- 12:49:31.538 SQL [12151]: pgsql_close() -- 12:49:31.674 INFO [12151]: COREGRADE is starting... -- 12:49:31.675 INFO [12151]: Version from config: 1.0 -- 12:49:31.675 DEBUG [12151]: Connecting to database... -- 12:49:31.675 DEBUG [12151]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:31.675 SQL [12151]: pgsql_db_connect() -- 12:49:31.679 DEBUG [12151]: Database connection successful -- 12:49:31.679 INFO [12151]: _SERVER found -- 12:49:31.679 INFO [12151]: REMOTE_ADDR = 192.168.1.13 -- 12:49:31.679 INFO [12151]: SERVER_NAME = oameye.works.coregrade.com -- 12:49:31.679 INFO [12151]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=q7kbj8jkr9h3s9es328ndcjltmikdv6f -- 12:49:31.679 INFO [12151]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:49:31.679 INFO [12151]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:49:31.691 INFO [12151]: COREGRADE is stopping... -- 12:49:31.691 DEBUG [12151]: Closing database connection -- 12:49:31.691 SQL [12151]: pgsql_close() -- 12:49:31.739 INFO [12151]: COREGRADE is starting... -- 12:49:31.739 INFO [12151]: Version from config: 1.0 -- 12:49:31.739 DEBUG [12151]: Connecting to database... -- 12:49:31.739 DEBUG [12151]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:31.740 SQL [12151]: pgsql_db_connect() -- 12:49:31.748 INFO [12216]: COREGRADE is starting... -- 12:49:31.748 INFO [12216]: Version from config: 1.0 -- 12:49:31.748 DEBUG [12216]: Connecting to database... -- 12:49:31.748 DEBUG [12216]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:31.748 SQL [12216]: pgsql_db_connect() -- 12:49:31.743 DEBUG [12151]: Database connection successful -- 12:49:31.743 INFO [12151]: _SERVER found -- 12:49:31.743 INFO [12151]: REMOTE_ADDR = 192.168.1.13 -- 12:49:31.743 INFO [12151]: SERVER_NAME = oameye.works.coregrade.com -- 12:49:31.743 INFO [12151]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=q7kbj8jkr9h3s9es328ndcjltmikdv6f -- 12:49:31.743 INFO [12151]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 12:49:31.743 INFO [12151]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:49:31.756 INFO [12151]: COREGRADE is stopping... -- 12:49:31.756 DEBUG [12151]: Closing database connection -- 12:49:31.756 SQL [12151]: pgsql_close() -- 12:49:31.752 DEBUG [12216]: Database connection successful -- 12:49:31.752 INFO [12216]: _SERVER found -- 12:49:31.752 INFO [12216]: REMOTE_ADDR = 192.168.1.13 -- 12:49:31.752 INFO [12216]: SERVER_NAME = oameye.works.coregrade.com -- 12:49:31.752 INFO [12216]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=q7kbj8jkr9h3s9es328ndcjltmikdv6f -- 12:49:31.752 INFO [12216]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 12:49:31.752 INFO [12216]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:49:31.766 INFO [12216]: COREGRADE is stopping... -- 12:49:31.766 DEBUG [12216]: Closing database connection -- 12:49:31.766 SQL [12216]: pgsql_close() -- 12:49:34.271 INFO [12216]: COREGRADE is starting... -- 12:49:34.272 INFO [12216]: Version from config: 1.0 -- 12:49:34.272 DEBUG [12216]: Connecting to database... -- 12:49:34.272 DEBUG [12216]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:34.272 SQL [12216]: pgsql_db_connect() -- 12:49:34.276 DEBUG [12216]: Database connection successful -- 12:49:34.276 INFO [12216]: _SERVER found -- 12:49:34.276 INFO [12216]: REMOTE_ADDR = 192.168.1.13 -- 12:49:34.276 INFO [12216]: SERVER_NAME = oameye.works.coregrade.com -- 12:49:34.276 INFO [12216]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=q7kbj8jkr9h3s9es328ndcjltmikdv6f -- 12:49:34.276 INFO [12216]: QUERY_STRING = /member/mycalendar -- 12:49:34.276 INFO [12216]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:49:34.314 INFO [12216]: COREGRADE is stopping... -- 12:49:34.314 DEBUG [12216]: Closing database connection -- 12:49:34.314 SQL [12216]: pgsql_close() -- 12:49:34.816 INFO [12216]: COREGRADE is starting... -- 12:49:34.816 INFO [12151]: COREGRADE is starting... -- 12:49:34.816 INFO [12216]: Version from config: 1.0 -- 12:49:34.816 DEBUG [12216]: Connecting to database... -- 12:49:34.816 INFO [12151]: Version from config: 1.0 -- 12:49:34.816 DEBUG [12151]: Connecting to database... -- 12:49:34.816 DEBUG [12151]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:34.816 DEBUG [12216]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:34.816 SQL [12151]: pgsql_db_connect() -- 12:49:34.816 SQL [12216]: pgsql_db_connect() -- 12:49:34.820 DEBUG [12216]: Database connection successful -- 12:49:34.820 INFO [12216]: _SERVER found -- 12:49:34.820 INFO [12216]: REMOTE_ADDR = 192.168.1.13 -- 12:49:34.820 INFO [12216]: SERVER_NAME = oameye.works.coregrade.com -- 12:49:34.820 INFO [12216]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=q7kbj8jkr9h3s9es328ndcjltmikdv6f -- 12:49:34.820 INFO [12216]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:49:34.820 INFO [12216]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:49:34.831 INFO [12216]: COREGRADE is stopping... -- 12:49:34.831 DEBUG [12216]: Closing database connection -- 12:49:34.831 SQL [12216]: pgsql_close() -- 12:49:34.820 DEBUG [12151]: Database connection successful -- 12:49:34.820 INFO [12151]: _SERVER found -- 12:49:34.820 INFO [12151]: REMOTE_ADDR = 192.168.1.13 -- 12:49:34.820 INFO [12151]: SERVER_NAME = oameye.works.coregrade.com -- 12:49:34.820 INFO [12151]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=q7kbj8jkr9h3s9es328ndcjltmikdv6f -- 12:49:34.820 INFO [12151]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 12:49:34.820 INFO [12151]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:49:34.833 INFO [12151]: COREGRADE is stopping... -- 12:49:34.833 DEBUG [12151]: Closing database connection -- 12:49:34.833 SQL [12151]: pgsql_close() -- 12:49:34.851 INFO [12151]: COREGRADE is starting... -- 12:49:34.851 INFO [12151]: Version from config: 1.0 -- 12:49:34.851 DEBUG [12151]: Connecting to database... -- 12:49:34.851 DEBUG [12151]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:34.851 SQL [12151]: pgsql_db_connect() -- 12:49:34.855 DEBUG [12151]: Database connection successful -- 12:49:34.855 INFO [12151]: _SERVER found -- 12:49:34.855 INFO [12151]: REMOTE_ADDR = 192.168.1.13 -- 12:49:34.855 INFO [12151]: SERVER_NAME = oameye.works.coregrade.com -- 12:49:34.855 INFO [12151]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=q7kbj8jkr9h3s9es328ndcjltmikdv6f -- 12:49:34.855 INFO [12151]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 12:49:34.855 INFO [12151]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:49:34.867 INFO [12151]: COREGRADE is stopping... -- 12:49:34.867 DEBUG [12151]: Closing database connection -- 12:49:34.867 SQL [12151]: pgsql_close() -- 13:03:02.383 INFO [12223]: COREGRADE is starting... -- 13:03:02.384 INFO [12223]: Version from config: 1.0 -- 13:03:02.384 DEBUG [12223]: Connecting to database... -- 13:03:02.384 DEBUG [12223]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:03:02.384 SQL [12223]: pgsql_db_connect() -- 13:03:02.389 DEBUG [12223]: Database connection successful -- 13:03:02.389 INFO [12223]: _SERVER found -- 13:03:02.389 INFO [12223]: REMOTE_ADDR = 192.168.1.13 -- 13:03:02.389 INFO [12223]: SERVER_NAME = oameye.works.coregrade.com -- 13:03:02.389 INFO [12223]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=q7kbj8jkr9h3s9es328ndcjltmikdv6f -- 13:03:02.389 INFO [12223]: QUERY_STRING = /member/mycalendar -- 13:03:02.389 INFO [12223]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:03:02.430 INFO [12223]: COREGRADE is stopping... -- 13:03:02.431 DEBUG [12223]: Closing database connection -- 13:03:02.431 SQL [12223]: pgsql_close() -- 13:04:13.022 INFO [12170]: COREGRADE is starting... -- 13:04:13.023 INFO [12170]: Version from config: 1.0 -- 13:04:13.023 DEBUG [12170]: Connecting to database... -- 13:04:13.023 DEBUG [12170]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:04:13.023 SQL [12170]: pgsql_db_connect() -- 13:04:13.027 DEBUG [12170]: Database connection successful -- 13:04:13.027 INFO [12170]: _SERVER found -- 13:04:13.027 INFO [12170]: REMOTE_ADDR = 192.168.1.13 -- 13:04:13.027 INFO [12170]: SERVER_NAME = oameye.works.coregrade.com -- 13:04:13.027 INFO [12170]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=pquile0fet6ds6fedsclogfvd4ounbsj -- 13:04:13.027 INFO [12170]: QUERY_STRING = /member/mycalendar -- 13:04:13.027 INFO [12170]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:04:13.067 INFO [12170]: COREGRADE is stopping... -- 13:04:13.067 DEBUG [12170]: Closing database connection -- 13:04:13.067 SQL [12170]: pgsql_close() -- 13:04:13.451 INFO [12170]: COREGRADE is starting... -- 13:04:13.452 INFO [12170]: Version from config: 1.0 -- 13:04:13.452 DEBUG [12170]: Connecting to database... -- 13:04:13.452 DEBUG [12170]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:04:13.452 SQL [12170]: pgsql_db_connect() -- 13:04:13.456 DEBUG [12170]: Database connection successful -- 13:04:13.456 INFO [12170]: _SERVER found -- 13:04:13.456 INFO [12170]: REMOTE_ADDR = 192.168.1.13 -- 13:04:13.456 INFO [12170]: SERVER_NAME = oameye.works.coregrade.com -- 13:04:13.456 INFO [12170]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=pquile0fet6ds6fedsclogfvd4ounbsj -- 13:04:13.456 INFO [12170]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 13:04:13.456 INFO [12170]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:04:13.467 INFO [12170]: COREGRADE is stopping... -- 13:04:13.467 DEBUG [12170]: Closing database connection -- 13:04:13.467 SQL [12170]: pgsql_close() -- 13:04:13.600 INFO [12170]: COREGRADE is starting... -- 13:04:13.600 INFO [12170]: Version from config: 1.0 -- 13:04:13.600 DEBUG [12170]: Connecting to database... -- 13:04:13.600 DEBUG [12170]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:04:13.600 SQL [12170]: pgsql_db_connect() -- 13:04:13.604 DEBUG [12170]: Database connection successful -- 13:04:13.604 INFO [12170]: _SERVER found -- 13:04:13.604 INFO [12170]: REMOTE_ADDR = 192.168.1.13 -- 13:04:13.604 INFO [12170]: SERVER_NAME = oameye.works.coregrade.com -- 13:04:13.604 INFO [12170]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=pquile0fet6ds6fedsclogfvd4ounbsj -- 13:04:13.604 INFO [12170]: QUERY_STRING = /app-assets/data/locales/en.json -- 13:04:13.604 INFO [12170]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:04:13.616 INFO [12170]: COREGRADE is stopping... -- 13:04:13.616 DEBUG [12170]: Closing database connection -- 13:04:13.616 SQL [12170]: pgsql_close() -- 13:04:13.750 INFO [12170]: COREGRADE is starting... -- 13:04:13.750 INFO [12170]: Version from config: 1.0 -- 13:04:13.750 DEBUG [12170]: Connecting to database... -- 13:04:13.751 DEBUG [12170]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:04:13.751 SQL [12170]: pgsql_db_connect() -- 13:04:13.757 INFO [12147]: COREGRADE is starting... -- 13:04:13.757 INFO [12147]: Version from config: 1.0 -- 13:04:13.757 DEBUG [12147]: Connecting to database... -- 13:04:13.757 DEBUG [12147]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:04:13.757 SQL [12147]: pgsql_db_connect() -- 13:04:13.754 DEBUG [12170]: Database connection successful -- 13:04:13.754 INFO [12170]: _SERVER found -- 13:04:13.754 INFO [12170]: REMOTE_ADDR = 192.168.1.13 -- 13:04:13.754 INFO [12170]: SERVER_NAME = oameye.works.coregrade.com -- 13:04:13.754 INFO [12170]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=pquile0fet6ds6fedsclogfvd4ounbsj -- 13:04:13.754 INFO [12170]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 13:04:13.754 INFO [12170]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:04:13.766 INFO [12170]: COREGRADE is stopping... -- 13:04:13.766 DEBUG [12170]: Closing database connection -- 13:04:13.766 SQL [12170]: pgsql_close() -- 13:04:13.761 DEBUG [12147]: Database connection successful -- 13:04:13.761 INFO [12147]: _SERVER found -- 13:04:13.761 INFO [12147]: REMOTE_ADDR = 192.168.1.13 -- 13:04:13.761 INFO [12147]: SERVER_NAME = oameye.works.coregrade.com -- 13:04:13.761 INFO [12147]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=pquile0fet6ds6fedsclogfvd4ounbsj -- 13:04:13.761 INFO [12147]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 13:04:13.761 INFO [12147]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:04:13.773 INFO [12147]: COREGRADE is stopping... -- 13:04:13.773 DEBUG [12147]: Closing database connection -- 13:04:13.773 SQL [12147]: pgsql_close() -- 13:04:18.488 INFO [12147]: COREGRADE is starting... -- 13:04:18.488 INFO [12147]: Version from config: 1.0 -- 13:04:18.488 DEBUG [12147]: Connecting to database... -- 13:04:18.488 DEBUG [12147]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:04:18.488 SQL [12147]: pgsql_db_connect() -- 13:04:18.492 DEBUG [12147]: Database connection successful -- 13:04:18.492 INFO [12147]: _SERVER found -- 13:04:18.492 INFO [12147]: REMOTE_ADDR = 192.168.1.13 -- 13:04:18.492 INFO [12147]: SERVER_NAME = oameye.works.coregrade.com -- 13:04:18.492 INFO [12147]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=pquile0fet6ds6fedsclogfvd4ounbsj -- 13:04:18.492 INFO [12147]: QUERY_STRING = /member/mycalendar -- 13:04:18.492 INFO [12147]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:04:18.525 INFO [12147]: COREGRADE is stopping... -- 13:04:18.525 DEBUG [12147]: Closing database connection -- 13:04:18.525 SQL [12147]: pgsql_close() -- 13:04:18.989 INFO [12147]: COREGRADE is starting... -- 13:04:18.990 INFO [12147]: Version from config: 1.0 -- 13:04:18.990 DEBUG [12147]: Connecting to database... -- 13:04:18.990 DEBUG [12147]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:04:18.990 SQL [12147]: pgsql_db_connect() -- 13:04:18.994 DEBUG [12147]: Database connection successful -- 13:04:18.994 INFO [12147]: _SERVER found -- 13:04:18.994 INFO [12147]: REMOTE_ADDR = 192.168.1.13 -- 13:04:18.994 INFO [12147]: SERVER_NAME = oameye.works.coregrade.com -- 13:04:18.994 INFO [12147]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=pquile0fet6ds6fedsclogfvd4ounbsj -- 13:04:18.994 INFO [12147]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 13:04:18.994 INFO [12147]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:04:19.005 INFO [12147]: COREGRADE is stopping... -- 13:04:19.005 DEBUG [12147]: Closing database connection -- 13:04:19.005 SQL [12147]: pgsql_close() -- 13:04:19.025 INFO [12148]: COREGRADE is starting... -- 13:04:19.025 INFO [12148]: Version from config: 1.0 -- 13:04:19.025 DEBUG [12148]: Connecting to database... -- 13:04:19.025 DEBUG [12148]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:04:19.025 SQL [12148]: pgsql_db_connect() -- 13:04:19.030 INFO [12150]: COREGRADE is starting... -- 13:04:19.031 INFO [12150]: Version from config: 1.0 -- 13:04:19.031 DEBUG [12150]: Connecting to database... -- 13:04:19.031 DEBUG [12150]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:04:19.031 SQL [12150]: pgsql_db_connect() -- 13:04:19.029 DEBUG [12148]: Database connection successful -- 13:04:19.029 INFO [12148]: _SERVER found -- 13:04:19.029 INFO [12148]: REMOTE_ADDR = 192.168.1.13 -- 13:04:19.029 INFO [12148]: SERVER_NAME = oameye.works.coregrade.com -- 13:04:19.029 INFO [12148]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=pquile0fet6ds6fedsclogfvd4ounbsj -- 13:04:19.029 INFO [12148]: QUERY_STRING = /app-assets/data/locales/en.json -- 13:04:19.029 INFO [12148]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:04:19.042 INFO [12148]: COREGRADE is stopping... -- 13:04:19.042 DEBUG [12148]: Closing database connection -- 13:04:19.042 SQL [12148]: pgsql_close() -- 13:04:19.034 DEBUG [12150]: Database connection successful -- 13:04:19.034 INFO [12150]: _SERVER found -- 13:04:19.034 INFO [12150]: REMOTE_ADDR = 192.168.1.13 -- 13:04:19.034 INFO [12150]: SERVER_NAME = oameye.works.coregrade.com -- 13:04:19.034 INFO [12150]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=pquile0fet6ds6fedsclogfvd4ounbsj -- 13:04:19.034 INFO [12150]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 13:04:19.034 INFO [12150]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:04:19.047 INFO [12150]: COREGRADE is stopping... -- 13:04:19.047 DEBUG [12150]: Closing database connection -- 13:04:19.047 SQL [12150]: pgsql_close() -- 13:04:19.838 INFO [12150]: COREGRADE is starting... -- 13:04:19.839 INFO [12150]: Version from config: 1.0 -- 13:04:19.839 DEBUG [12150]: Connecting to database... -- 13:04:19.839 DEBUG [12150]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:04:19.839 SQL [12150]: pgsql_db_connect() -- 13:04:19.843 DEBUG [12150]: Database connection successful -- 13:04:19.843 INFO [12150]: _SERVER found -- 13:04:19.843 INFO [12150]: REMOTE_ADDR = 192.168.1.13 -- 13:04:19.843 INFO [12150]: SERVER_NAME = oameye.works.coregrade.com -- 13:04:19.843 INFO [12150]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=pquile0fet6ds6fedsclogfvd4ounbsj -- 13:04:19.843 INFO [12150]: QUERY_STRING = /member/mycalendar -- 13:04:19.843 INFO [12150]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:04:19.879 INFO [12150]: COREGRADE is stopping... -- 13:04:19.879 DEBUG [12150]: Closing database connection -- 13:04:19.879 SQL [12150]: pgsql_close() -- 13:04:20.207 INFO [12150]: COREGRADE is starting... -- 13:04:20.207 INFO [12150]: Version from config: 1.0 -- 13:04:20.207 DEBUG [12150]: Connecting to database... -- 13:04:20.207 DEBUG [12150]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:04:20.207 SQL [12150]: pgsql_db_connect() -- 13:04:20.211 DEBUG [12150]: Database connection successful -- 13:04:20.211 INFO [12150]: _SERVER found -- 13:04:20.211 INFO [12150]: REMOTE_ADDR = 192.168.1.13 -- 13:04:20.211 INFO [12150]: SERVER_NAME = oameye.works.coregrade.com -- 13:04:20.211 INFO [12150]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=pquile0fet6ds6fedsclogfvd4ounbsj -- 13:04:20.211 INFO [12150]: QUERY_STRING = /app-assets/data/locales/en.json -- 13:04:20.211 INFO [12150]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:04:20.223 INFO [12150]: COREGRADE is stopping... -- 13:04:20.223 DEBUG [12150]: Closing database connection -- 13:04:20.224 SQL [12150]: pgsql_close() -- 13:04:20.324 INFO [12150]: COREGRADE is starting... -- 13:04:20.325 INFO [12150]: Version from config: 1.0 -- 13:04:20.325 DEBUG [12150]: Connecting to database... -- 13:04:20.325 DEBUG [12150]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:04:20.325 SQL [12150]: pgsql_db_connect() -- 13:04:20.330 INFO [12148]: COREGRADE is starting... -- 13:04:20.330 INFO [12148]: Version from config: 1.0 -- 13:04:20.330 DEBUG [12148]: Connecting to database... -- 13:04:20.330 DEBUG [12148]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:04:20.330 SQL [12148]: pgsql_db_connect() -- 13:04:20.329 DEBUG [12150]: Database connection successful -- 13:04:20.329 INFO [12150]: _SERVER found -- 13:04:20.329 INFO [12150]: REMOTE_ADDR = 192.168.1.13 -- 13:04:20.329 INFO [12150]: SERVER_NAME = oameye.works.coregrade.com -- 13:04:20.329 INFO [12150]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=pquile0fet6ds6fedsclogfvd4ounbsj -- 13:04:20.329 INFO [12150]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 13:04:20.329 INFO [12150]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:04:20.341 INFO [12150]: COREGRADE is stopping... -- 13:04:20.341 DEBUG [12150]: Closing database connection -- 13:04:20.341 SQL [12150]: pgsql_close() -- 13:04:20.334 DEBUG [12148]: Database connection successful -- 13:04:20.334 INFO [12148]: _SERVER found -- 13:04:20.334 INFO [12148]: REMOTE_ADDR = 192.168.1.13 -- 13:04:20.334 INFO [12148]: SERVER_NAME = oameye.works.coregrade.com -- 13:04:20.334 INFO [12148]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=pquile0fet6ds6fedsclogfvd4ounbsj -- 13:04:20.334 INFO [12148]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 13:04:20.334 INFO [12148]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:04:20.346 INFO [12148]: COREGRADE is stopping... -- 13:04:20.347 DEBUG [12148]: Closing database connection -- 13:04:20.347 SQL [12148]: pgsql_close() -- 13:04:57.057 INFO [12149]: COREGRADE is starting... -- 13:04:57.058 INFO [12149]: Version from config: 1.0 -- 13:04:57.058 DEBUG [12149]: Connecting to database... -- 13:04:57.058 DEBUG [12149]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:04:57.058 SQL [12149]: pgsql_db_connect() -- 13:04:57.062 DEBUG [12149]: Database connection successful -- 13:04:57.062 INFO [12149]: _SERVER found -- 13:04:57.062 INFO [12149]: REMOTE_ADDR = 192.168.1.13 -- 13:04:57.062 INFO [12149]: SERVER_NAME = oameye.works.coregrade.com -- 13:04:57.062 INFO [12149]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=pquile0fet6ds6fedsclogfvd4ounbsj -- 13:04:57.062 INFO [12149]: QUERY_STRING = /member/mycalendar -- 13:04:57.062 INFO [12149]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:04:57.097 INFO [12149]: COREGRADE is stopping... -- 13:04:57.097 DEBUG [12149]: Closing database connection -- 13:04:57.097 SQL [12149]: pgsql_close() -- 13:04:57.435 INFO [12149]: COREGRADE is starting... -- 13:04:57.436 INFO [12149]: Version from config: 1.0 -- 13:04:57.436 DEBUG [12149]: Connecting to database... -- 13:04:57.436 DEBUG [12149]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:04:57.436 SQL [12149]: pgsql_db_connect() -- 13:04:57.440 DEBUG [12149]: Database connection successful -- 13:04:57.440 INFO [12149]: _SERVER found -- 13:04:57.440 INFO [12149]: REMOTE_ADDR = 192.168.1.13 -- 13:04:57.440 INFO [12149]: SERVER_NAME = oameye.works.coregrade.com -- 13:04:57.440 INFO [12149]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=pquile0fet6ds6fedsclogfvd4ounbsj -- 13:04:57.440 INFO [12149]: QUERY_STRING = /app-assets/data/locales/en.json -- 13:04:57.440 INFO [12149]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:04:57.451 INFO [12149]: COREGRADE is stopping... -- 13:04:57.451 DEBUG [12149]: Closing database connection -- 13:04:57.451 SQL [12149]: pgsql_close() -- 13:04:57.532 INFO [12149]: COREGRADE is starting... -- 13:04:57.532 INFO [12149]: Version from config: 1.0 -- 13:04:57.532 DEBUG [12149]: Connecting to database... -- 13:04:57.533 DEBUG [12149]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:04:57.533 SQL [12149]: pgsql_db_connect() -- 13:04:57.539 INFO [12216]: COREGRADE is starting... -- 13:04:57.539 INFO [12216]: Version from config: 1.0 -- 13:04:57.539 DEBUG [12216]: Connecting to database... -- 13:04:57.539 DEBUG [12216]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:04:57.539 SQL [12216]: pgsql_db_connect() -- 13:04:57.536 DEBUG [12149]: Database connection successful -- 13:04:57.536 INFO [12149]: _SERVER found -- 13:04:57.536 INFO [12149]: REMOTE_ADDR = 192.168.1.13 -- 13:04:57.536 INFO [12149]: SERVER_NAME = oameye.works.coregrade.com -- 13:04:57.536 INFO [12149]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=pquile0fet6ds6fedsclogfvd4ounbsj -- 13:04:57.536 INFO [12149]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 13:04:57.536 INFO [12149]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:04:57.547 INFO [12149]: COREGRADE is stopping... -- 13:04:57.547 DEBUG [12149]: Closing database connection -- 13:04:57.548 SQL [12149]: pgsql_close() -- 13:04:57.543 DEBUG [12216]: Database connection successful -- 13:04:57.543 INFO [12216]: _SERVER found -- 13:04:57.543 INFO [12216]: REMOTE_ADDR = 192.168.1.13 -- 13:04:57.543 INFO [12216]: SERVER_NAME = oameye.works.coregrade.com -- 13:04:57.543 INFO [12216]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=pquile0fet6ds6fedsclogfvd4ounbsj -- 13:04:57.543 INFO [12216]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 13:04:57.543 INFO [12216]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:04:57.555 INFO [12216]: COREGRADE is stopping... -- 13:04:57.555 DEBUG [12216]: Closing database connection -- 13:04:57.555 SQL [12216]: pgsql_close() -- 13:24:39.387 INFO [12151]: COREGRADE is starting... -- 13:24:39.387 INFO [12151]: Version from config: 1.0 -- 13:24:39.387 DEBUG [12151]: Connecting to database... -- 13:24:39.387 DEBUG [12151]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:24:39.387 SQL [12151]: pgsql_db_connect() -- 13:24:39.391 DEBUG [12151]: Database connection successful -- 13:24:39.391 INFO [12151]: _SERVER found -- 13:24:39.392 INFO [12151]: REMOTE_ADDR = 192.168.1.13 -- 13:24:39.392 INFO [12151]: SERVER_NAME = oameye.works.coregrade.com -- 13:24:39.392 INFO [12151]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=pquile0fet6ds6fedsclogfvd4ounbsj -- 13:24:39.392 INFO [12151]: QUERY_STRING = /member -- 13:24:39.392 INFO [12151]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:24:39.435 INFO [12151]: COREGRADE is stopping... -- 13:24:39.435 DEBUG [12151]: Closing database connection -- 13:24:39.435 SQL [12151]: pgsql_close() -- 13:24:39.730 INFO [12151]: COREGRADE is starting... -- 13:24:39.731 INFO [12151]: Version from config: 1.0 -- 13:24:39.731 DEBUG [12151]: Connecting to database... -- 13:24:39.731 DEBUG [12151]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:24:39.731 SQL [12151]: pgsql_db_connect() -- 13:24:39.735 DEBUG [12151]: Database connection successful -- 13:24:39.735 INFO [12151]: _SERVER found -- 13:24:39.735 INFO [12151]: REMOTE_ADDR = 192.168.1.13 -- 13:24:39.735 INFO [12151]: SERVER_NAME = oameye.works.coregrade.com -- 13:24:39.735 INFO [12151]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=jmvlv4neq7dglpmgkmlttd7vr4cs282h -- 13:24:39.735 INFO [12151]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 13:24:39.735 INFO [12151]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:24:39.747 INFO [12151]: COREGRADE is stopping... -- 13:24:39.747 DEBUG [12151]: Closing database connection -- 13:24:39.747 SQL [12151]: pgsql_close() -- 13:24:39.769 INFO [12151]: COREGRADE is starting... -- 13:24:39.769 INFO [12151]: Version from config: 1.0 -- 13:24:39.769 DEBUG [12151]: Connecting to database... -- 13:24:39.769 DEBUG [12151]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:24:39.769 SQL [12151]: pgsql_db_connect() -- 13:24:39.773 DEBUG [12151]: Database connection successful -- 13:24:39.773 INFO [12151]: _SERVER found -- 13:24:39.773 INFO [12151]: REMOTE_ADDR = 192.168.1.13 -- 13:24:39.773 INFO [12151]: SERVER_NAME = oameye.works.coregrade.com -- 13:24:39.773 INFO [12151]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=jmvlv4neq7dglpmgkmlttd7vr4cs282h -- 13:24:39.773 INFO [12151]: QUERY_STRING = /app-assets/data/locales/en.json -- 13:24:39.773 INFO [12151]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:24:39.785 INFO [12151]: COREGRADE is stopping... -- 13:24:39.785 DEBUG [12151]: Closing database connection -- 13:24:39.785 SQL [12151]: pgsql_close() -- 13:24:42.945 INFO [12151]: COREGRADE is starting... -- 13:24:42.946 INFO [12151]: Version from config: 1.0 -- 13:24:42.946 DEBUG [12151]: Connecting to database... -- 13:24:42.946 DEBUG [12151]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:24:42.946 SQL [12151]: pgsql_db_connect() -- 13:24:42.950 DEBUG [12151]: Database connection successful -- 13:24:42.950 INFO [12151]: _SERVER found -- 13:24:42.950 INFO [12151]: REMOTE_ADDR = 192.168.1.13 -- 13:24:42.950 INFO [12151]: SERVER_NAME = oameye.works.coregrade.com -- 13:24:42.950 INFO [12151]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=jmvlv4neq7dglpmgkmlttd7vr4cs282h -- 13:24:42.950 INFO [12151]: QUERY_STRING = /member/configure -- 13:24:42.950 INFO [12151]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:24:42.989 INFO [12151]: COREGRADE is stopping... -- 13:24:42.989 DEBUG [12151]: Closing database connection -- 13:24:42.989 SQL [12151]: pgsql_close() -- 13:24:43.304 INFO [12151]: COREGRADE is starting... -- 13:24:43.305 INFO [12151]: Version from config: 1.0 -- 13:24:43.305 DEBUG [12151]: Connecting to database... -- 13:24:43.305 DEBUG [12151]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:24:43.305 SQL [12151]: pgsql_db_connect() -- 13:24:43.309 DEBUG [12151]: Database connection successful -- 13:24:43.309 INFO [12151]: _SERVER found -- 13:24:43.309 INFO [12151]: REMOTE_ADDR = 192.168.1.13 -- 13:24:43.309 INFO [12151]: SERVER_NAME = oameye.works.coregrade.com -- 13:24:43.309 INFO [12151]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=jmvlv4neq7dglpmgkmlttd7vr4cs282h -- 13:24:43.309 INFO [12151]: QUERY_STRING = /app-assets/data/locales/en.json -- 13:24:43.309 INFO [12151]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:24:43.321 INFO [12151]: COREGRADE is stopping... -- 13:24:43.321 DEBUG [12151]: Closing database connection -- 13:24:43.321 SQL [12151]: pgsql_close() -- 13:25:13.575 INFO [12223]: COREGRADE is starting... -- 13:25:13.575 INFO [12223]: Version from config: 1.0 -- 13:25:13.575 DEBUG [12223]: Connecting to database... -- 13:25:13.575 DEBUG [12223]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:25:13.575 SQL [12223]: pgsql_db_connect() -- 13:25:13.579 DEBUG [12223]: Database connection successful -- 13:25:13.579 INFO [12223]: _SERVER found -- 13:25:13.579 INFO [12223]: REMOTE_ADDR = 192.168.1.13 -- 13:25:13.579 INFO [12223]: SERVER_NAME = oameye.works.coregrade.com -- 13:25:13.579 INFO [12223]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=jmvlv4neq7dglpmgkmlttd7vr4cs282h -- 13:25:13.579 INFO [12223]: QUERY_STRING = /member -- 13:25:13.579 INFO [12223]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:25:13.620 INFO [12223]: COREGRADE is stopping... -- 13:25:13.620 DEBUG [12223]: Closing database connection -- 13:25:13.620 SQL [12223]: pgsql_close() -- 13:25:13.806 INFO [12223]: COREGRADE is starting... -- 13:25:13.807 INFO [12223]: Version from config: 1.0 -- 13:25:13.807 DEBUG [12223]: Connecting to database... -- 13:25:13.807 DEBUG [12223]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:25:13.807 SQL [12223]: pgsql_db_connect() -- 13:25:13.811 DEBUG [12223]: Database connection successful -- 13:25:13.811 INFO [12223]: _SERVER found -- 13:25:13.811 INFO [12223]: REMOTE_ADDR = 192.168.1.13 -- 13:25:13.811 INFO [12223]: SERVER_NAME = oameye.works.coregrade.com -- 13:25:13.811 INFO [12223]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=jmvlv4neq7dglpmgkmlttd7vr4cs282h -- 13:25:13.811 INFO [12223]: QUERY_STRING = /app-assets/data/locales/en.json -- 13:25:13.811 INFO [12223]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:25:13.823 INFO [12223]: COREGRADE is stopping... -- 13:25:13.823 DEBUG [12223]: Closing database connection -- 13:25:13.823 SQL [12223]: pgsql_close() -- 13:25:25.419 INFO [12345]: COREGRADE is starting... -- 13:25:25.420 INFO [12345]: Version from config: 1.0 -- 13:25:25.420 DEBUG [12345]: Connecting to database... -- 13:25:25.420 DEBUG [12345]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:25:25.420 SQL [12345]: pgsql_db_connect() -- 13:25:25.424 DEBUG [12345]: Database connection successful -- 13:25:25.424 INFO [12345]: _SERVER found -- 13:25:25.424 INFO [12345]: REMOTE_ADDR = 192.168.1.13 -- 13:25:25.424 INFO [12345]: SERVER_NAME = oameye.works.coregrade.com -- 13:25:25.424 INFO [12345]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=jmvlv4neq7dglpmgkmlttd7vr4cs282h -- 13:25:25.424 INFO [12345]: QUERY_STRING = /member/page -- 13:25:25.424 INFO [12345]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:25:25.468 INFO [12345]: COREGRADE is stopping... -- 13:25:25.468 DEBUG [12345]: Closing database connection -- 13:25:25.468 SQL [12345]: pgsql_close() -- 13:25:25.774 INFO [12345]: COREGRADE is starting... -- 13:25:25.774 INFO [12345]: Version from config: 1.0 -- 13:25:25.774 DEBUG [12345]: Connecting to database... -- 13:25:25.774 DEBUG [12345]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:25:25.774 SQL [12345]: pgsql_db_connect() -- 13:25:25.778 DEBUG [12345]: Database connection successful -- 13:25:25.778 INFO [12345]: _SERVER found -- 13:25:25.778 INFO [12345]: REMOTE_ADDR = 192.168.1.13 -- 13:25:25.778 INFO [12345]: SERVER_NAME = oameye.works.coregrade.com -- 13:25:25.778 INFO [12345]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=jmvlv4neq7dglpmgkmlttd7vr4cs282h -- 13:25:25.778 INFO [12345]: QUERY_STRING = /app-assets/data/locales/en.json -- 13:25:25.778 INFO [12345]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:25:25.791 INFO [12345]: COREGRADE is stopping... -- 13:25:25.791 DEBUG [12345]: Closing database connection -- 13:25:25.791 SQL [12345]: pgsql_close() -- 13:25:42.909 INFO [12170]: COREGRADE is starting... -- 13:25:42.909 INFO [12170]: Version from config: 1.0 -- 13:25:42.909 DEBUG [12170]: Connecting to database... -- 13:25:42.909 DEBUG [12170]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:25:42.909 SQL [12170]: pgsql_db_connect() -- 13:25:42.913 DEBUG [12170]: Database connection successful -- 13:25:42.913 INFO [12170]: _SERVER found -- 13:25:42.913 INFO [12170]: REMOTE_ADDR = 192.168.1.13 -- 13:25:42.913 INFO [12170]: SERVER_NAME = oameye.works.coregrade.com -- 13:25:42.913 INFO [12170]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=jmvlv4neq7dglpmgkmlttd7vr4cs282h -- 13:25:42.913 INFO [12170]: QUERY_STRING = /member -- 13:25:42.913 INFO [12170]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:25:42.949 INFO [12170]: COREGRADE is stopping... -- 13:25:42.949 DEBUG [12170]: Closing database connection -- 13:25:42.949 SQL [12170]: pgsql_close() -- 13:25:43.173 INFO [12170]: COREGRADE is starting... -- 13:25:43.174 INFO [12170]: Version from config: 1.0 -- 13:25:43.174 DEBUG [12170]: Connecting to database... -- 13:25:43.174 DEBUG [12170]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:25:43.174 SQL [12170]: pgsql_db_connect() -- 13:25:43.178 DEBUG [12170]: Database connection successful -- 13:25:43.178 INFO [12170]: _SERVER found -- 13:25:43.178 INFO [12170]: REMOTE_ADDR = 192.168.1.13 -- 13:25:43.178 INFO [12170]: SERVER_NAME = oameye.works.coregrade.com -- 13:25:43.178 INFO [12170]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=jmvlv4neq7dglpmgkmlttd7vr4cs282h -- 13:25:43.178 INFO [12170]: QUERY_STRING = /app-assets/data/locales/en.json -- 13:25:43.178 INFO [12170]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:25:43.189 INFO [12170]: COREGRADE is stopping... -- 13:25:43.189 DEBUG [12170]: Closing database connection -- 13:25:43.189 SQL [12170]: pgsql_close() -- 13:25:44.588 INFO [12170]: COREGRADE is starting... -- 13:25:44.588 INFO [12170]: Version from config: 1.0 -- 13:25:44.589 DEBUG [12170]: Connecting to database... -- 13:25:44.589 DEBUG [12170]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:25:44.589 SQL [12170]: pgsql_db_connect() -- 13:25:44.593 DEBUG [12170]: Database connection successful -- 13:25:44.593 INFO [12170]: _SERVER found -- 13:25:44.593 INFO [12170]: REMOTE_ADDR = 192.168.1.13 -- 13:25:44.593 INFO [12170]: SERVER_NAME = oameye.works.coregrade.com -- 13:25:44.593 INFO [12170]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=jmvlv4neq7dglpmgkmlttd7vr4cs282h -- 13:25:44.593 INFO [12170]: QUERY_STRING = /member/page -- 13:25:44.593 INFO [12170]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:25:44.629 INFO [12170]: COREGRADE is stopping... -- 13:25:44.629 DEBUG [12170]: Closing database connection -- 13:25:44.629 SQL [12170]: pgsql_close() -- 13:25:44.870 INFO [12170]: COREGRADE is starting... -- 13:25:44.871 INFO [12170]: Version from config: 1.0 -- 13:25:44.871 DEBUG [12170]: Connecting to database... -- 13:25:44.871 DEBUG [12170]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:25:44.871 SQL [12170]: pgsql_db_connect() -- 13:25:44.875 DEBUG [12170]: Database connection successful -- 13:25:44.875 INFO [12170]: _SERVER found -- 13:25:44.875 INFO [12170]: REMOTE_ADDR = 192.168.1.13 -- 13:25:44.875 INFO [12170]: SERVER_NAME = oameye.works.coregrade.com -- 13:25:44.875 INFO [12170]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=jmvlv4neq7dglpmgkmlttd7vr4cs282h -- 13:25:44.875 INFO [12170]: QUERY_STRING = /app-assets/data/locales/en.json -- 13:25:44.875 INFO [12170]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:25:44.886 INFO [12170]: COREGRADE is stopping... -- 13:25:44.886 DEBUG [12170]: Closing database connection -- 13:25:44.886 SQL [12170]: pgsql_close() -- 13:25:52.529 INFO [12147]: COREGRADE is starting... -- 13:25:52.530 INFO [12147]: Version from config: 1.0 -- 13:25:52.530 DEBUG [12147]: Connecting to database... -- 13:25:52.530 DEBUG [12147]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:25:52.530 SQL [12147]: pgsql_db_connect() -- 13:25:52.534 DEBUG [12147]: Database connection successful -- 13:25:52.534 INFO [12147]: _SERVER found -- 13:25:52.534 INFO [12147]: REMOTE_ADDR = 192.168.1.13 -- 13:25:52.534 INFO [12147]: SERVER_NAME = oameye.works.coregrade.com -- 13:25:52.534 INFO [12147]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=jmvlv4neq7dglpmgkmlttd7vr4cs282h -- 13:25:52.534 INFO [12147]: QUERY_STRING = /member/viewCardAddAction -- 13:25:52.534 INFO [12147]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:25:52.565 INFO [12147]: COREGRADE is stopping... -- 13:25:52.565 DEBUG [12147]: Closing database connection -- 13:25:52.565 SQL [12147]: pgsql_close() -- 13:25:54.940 INFO [12147]: COREGRADE is starting... -- 13:25:54.940 INFO [12147]: Version from config: 1.0 -- 13:25:54.940 DEBUG [12147]: Connecting to database... -- 13:25:54.941 DEBUG [12147]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:25:54.941 SQL [12147]: pgsql_db_connect() -- 13:25:54.945 DEBUG [12147]: Database connection successful -- 13:25:54.945 INFO [12147]: _SERVER found -- 13:25:54.945 INFO [12147]: REMOTE_ADDR = 192.168.1.13 -- 13:25:54.945 INFO [12147]: SERVER_NAME = oameye.works.coregrade.com -- 13:25:54.945 INFO [12147]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=jmvlv4neq7dglpmgkmlttd7vr4cs282h -- 13:25:54.945 INFO [12147]: QUERY_STRING = /member/addNotecard -- 13:25:54.945 INFO [12147]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:25:54.974 INFO [12147]: COREGRADE is stopping... -- 13:25:54.975 DEBUG [12147]: Closing database connection -- 13:25:54.975 SQL [12147]: pgsql_close() -- 13:26:03.628 INFO [12150]: COREGRADE is starting... -- 13:26:03.628 INFO [12150]: Version from config: 1.0 -- 13:26:03.628 DEBUG [12150]: Connecting to database... -- 13:26:03.628 DEBUG [12150]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:26:03.628 SQL [12150]: pgsql_db_connect() -- 13:26:03.632 DEBUG [12150]: Database connection successful -- 13:26:03.632 INFO [12150]: _SERVER found -- 13:26:03.632 INFO [12150]: REMOTE_ADDR = 192.168.1.13 -- 13:26:03.632 INFO [12150]: SERVER_NAME = oameye.works.coregrade.com -- 13:26:03.632 INFO [12150]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=jmvlv4neq7dglpmgkmlttd7vr4cs282h -- 13:26:03.632 INFO [12150]: QUERY_STRING = /member/viewCardAddAction -- 13:26:03.632 INFO [12150]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:26:03.666 INFO [12150]: COREGRADE is stopping... -- 13:26:03.666 DEBUG [12150]: Closing database connection -- 13:26:03.667 SQL [12150]: pgsql_close() -- 13:26:04.366 INFO [12150]: COREGRADE is starting... -- 13:26:04.367 INFO [12150]: Version from config: 1.0 -- 13:26:04.367 DEBUG [12150]: Connecting to database... -- 13:26:04.367 DEBUG [12150]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:26:04.367 SQL [12150]: pgsql_db_connect() -- 13:26:04.371 DEBUG [12150]: Database connection successful -- 13:26:04.371 INFO [12150]: _SERVER found -- 13:26:04.371 INFO [12150]: REMOTE_ADDR = 192.168.1.13 -- 13:26:04.371 INFO [12150]: SERVER_NAME = oameye.works.coregrade.com -- 13:26:04.371 INFO [12150]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=jmvlv4neq7dglpmgkmlttd7vr4cs282h -- 13:26:04.371 INFO [12150]: QUERY_STRING = /member/viewCardAddAction -- 13:26:04.371 INFO [12150]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:26:04.404 INFO [12150]: COREGRADE is stopping... -- 13:26:04.404 DEBUG [12150]: Closing database connection -- 13:26:04.404 SQL [12150]: pgsql_close() -- 13:26:04.905 INFO [12150]: COREGRADE is starting... -- 13:26:04.905 INFO [12150]: Version from config: 1.0 -- 13:26:04.905 DEBUG [12150]: Connecting to database... -- 13:26:04.905 DEBUG [12150]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:26:04.905 SQL [12150]: pgsql_db_connect() -- 13:26:04.910 DEBUG [12150]: Database connection successful -- 13:26:04.910 INFO [12150]: _SERVER found -- 13:26:04.910 INFO [12150]: REMOTE_ADDR = 192.168.1.13 -- 13:26:04.910 INFO [12150]: SERVER_NAME = oameye.works.coregrade.com -- 13:26:04.910 INFO [12150]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=jmvlv4neq7dglpmgkmlttd7vr4cs282h -- 13:26:04.910 INFO [12150]: QUERY_STRING = /member/viewCardAddAction -- 13:26:04.910 INFO [12150]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:26:04.943 INFO [12150]: COREGRADE is stopping... -- 13:26:04.943 DEBUG [12150]: Closing database connection -- 13:26:04.943 SQL [12150]: pgsql_close() -- 13:26:08.302 INFO [12150]: COREGRADE is starting... -- 13:26:08.302 INFO [12150]: Version from config: 1.0 -- 13:26:08.302 DEBUG [12150]: Connecting to database... -- 13:26:08.302 DEBUG [12150]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:26:08.302 SQL [12150]: pgsql_db_connect() -- 13:26:08.307 DEBUG [12150]: Database connection successful -- 13:26:08.307 INFO [12150]: _SERVER found -- 13:26:08.307 INFO [12150]: REMOTE_ADDR = 192.168.1.13 -- 13:26:08.307 INFO [12150]: SERVER_NAME = oameye.works.coregrade.com -- 13:26:08.307 INFO [12150]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=jmvlv4neq7dglpmgkmlttd7vr4cs282h -- 13:26:08.307 INFO [12150]: QUERY_STRING = /member/viewCardAddAction -- 13:26:08.307 INFO [12150]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:26:08.341 INFO [12150]: COREGRADE is stopping... -- 13:26:08.341 DEBUG [12150]: Closing database connection -- 13:26:08.341 SQL [12150]: pgsql_close() -- 13:26:09.120 INFO [12150]: COREGRADE is starting... -- 13:26:09.121 INFO [12150]: Version from config: 1.0 -- 13:26:09.121 DEBUG [12150]: Connecting to database... -- 13:26:09.121 DEBUG [12150]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:26:09.121 SQL [12150]: pgsql_db_connect() -- 13:26:09.125 DEBUG [12150]: Database connection successful -- 13:26:09.125 INFO [12150]: _SERVER found -- 13:26:09.125 INFO [12150]: REMOTE_ADDR = 192.168.1.13 -- 13:26:09.125 INFO [12150]: SERVER_NAME = oameye.works.coregrade.com -- 13:26:09.125 INFO [12150]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=jmvlv4neq7dglpmgkmlttd7vr4cs282h -- 13:26:09.125 INFO [12150]: QUERY_STRING = /member/viewCardAddAction -- 13:26:09.125 INFO [12150]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:26:09.158 INFO [12150]: COREGRADE is stopping... -- 13:26:09.159 DEBUG [12150]: Closing database connection -- 13:26:09.159 SQL [12150]: pgsql_close() -- 13:26:16.710 INFO [12148]: COREGRADE is starting... -- 13:26:16.710 INFO [12148]: Version from config: 1.0 -- 13:26:16.710 DEBUG [12148]: Connecting to database... -- 13:26:16.710 DEBUG [12148]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:26:16.710 SQL [12148]: pgsql_db_connect() -- 13:26:16.714 DEBUG [12148]: Database connection successful -- 13:26:16.714 INFO [12148]: _SERVER found -- 13:26:16.714 INFO [12148]: REMOTE_ADDR = 192.168.1.13 -- 13:26:16.714 INFO [12148]: SERVER_NAME = oameye.works.coregrade.com -- 13:26:16.714 INFO [12148]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=jmvlv4neq7dglpmgkmlttd7vr4cs282h -- 13:26:16.714 INFO [12148]: QUERY_STRING = /member -- 13:26:16.714 INFO [12148]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:26:16.754 INFO [12148]: COREGRADE is stopping... -- 13:26:16.754 DEBUG [12148]: Closing database connection -- 13:26:16.754 SQL [12148]: pgsql_close() -- 13:26:16.951 INFO [12148]: COREGRADE is starting... -- 13:26:16.952 INFO [12148]: Version from config: 1.0 -- 13:26:16.952 DEBUG [12148]: Connecting to database... -- 13:26:16.952 DEBUG [12148]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:26:16.952 SQL [12148]: pgsql_db_connect() -- 13:26:16.956 DEBUG [12148]: Database connection successful -- 13:26:16.956 INFO [12148]: _SERVER found -- 13:26:16.956 INFO [12148]: REMOTE_ADDR = 192.168.1.13 -- 13:26:16.956 INFO [12148]: SERVER_NAME = oameye.works.coregrade.com -- 13:26:16.956 INFO [12148]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=jmvlv4neq7dglpmgkmlttd7vr4cs282h -- 13:26:16.956 INFO [12148]: QUERY_STRING = /app-assets/data/locales/en.json -- 13:26:16.956 INFO [12148]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:26:16.968 INFO [12148]: COREGRADE is stopping... -- 13:26:16.968 DEBUG [12148]: Closing database connection -- 13:26:16.968 SQL [12148]: pgsql_close() -- 13:26:18.407 INFO [12148]: COREGRADE is starting... -- 13:26:18.407 INFO [12148]: Version from config: 1.0 -- 13:26:18.407 DEBUG [12148]: Connecting to database... -- 13:26:18.407 DEBUG [12148]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:26:18.407 SQL [12148]: pgsql_db_connect() -- 13:26:18.411 DEBUG [12148]: Database connection successful -- 13:26:18.411 INFO [12148]: _SERVER found -- 13:26:18.411 INFO [12148]: REMOTE_ADDR = 192.168.1.13 -- 13:26:18.411 INFO [12148]: SERVER_NAME = oameye.works.coregrade.com -- 13:26:18.411 INFO [12148]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=jmvlv4neq7dglpmgkmlttd7vr4cs282h -- 13:26:18.411 INFO [12148]: QUERY_STRING = /member/page -- 13:26:18.411 INFO [12148]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:26:18.451 INFO [12148]: COREGRADE is stopping... -- 13:26:18.451 DEBUG [12148]: Closing database connection -- 13:26:18.451 SQL [12148]: pgsql_close() -- 13:26:18.657 INFO [12148]: COREGRADE is starting... -- 13:26:18.657 INFO [12148]: Version from config: 1.0 -- 13:26:18.657 DEBUG [12148]: Connecting to database... -- 13:26:18.657 DEBUG [12148]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:26:18.657 SQL [12148]: pgsql_db_connect() -- 13:26:18.661 DEBUG [12148]: Database connection successful -- 13:26:18.661 INFO [12148]: _SERVER found -- 13:26:18.661 INFO [12148]: REMOTE_ADDR = 192.168.1.13 -- 13:26:18.661 INFO [12148]: SERVER_NAME = oameye.works.coregrade.com -- 13:26:18.661 INFO [12148]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=jmvlv4neq7dglpmgkmlttd7vr4cs282h -- 13:26:18.661 INFO [12148]: QUERY_STRING = /app-assets/data/locales/en.json -- 13:26:18.661 INFO [12148]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:26:18.673 INFO [12148]: COREGRADE is stopping... -- 13:26:18.673 DEBUG [12148]: Closing database connection -- 13:26:18.673 SQL [12148]: pgsql_close() -- 13:26:29.323 INFO [12149]: COREGRADE is starting... -- 13:26:29.323 INFO [12149]: Version from config: 1.0 -- 13:26:29.323 DEBUG [12149]: Connecting to database... -- 13:26:29.323 DEBUG [12149]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:26:29.323 SQL [12149]: pgsql_db_connect() -- 13:26:29.327 DEBUG [12149]: Database connection successful -- 13:26:29.327 INFO [12149]: _SERVER found -- 13:26:29.327 INFO [12149]: REMOTE_ADDR = 192.168.1.13 -- 13:26:29.327 INFO [12149]: SERVER_NAME = oameye.works.coregrade.com -- 13:26:29.327 INFO [12149]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=jmvlv4neq7dglpmgkmlttd7vr4cs282h -- 13:26:29.327 INFO [12149]: QUERY_STRING = /member/mycalendar -- 13:26:29.327 INFO [12149]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:26:29.360 INFO [12149]: COREGRADE is stopping... -- 13:26:29.360 DEBUG [12149]: Closing database connection -- 13:26:29.360 SQL [12149]: pgsql_close() -- 13:26:29.579 INFO [12149]: COREGRADE is starting... -- 13:26:29.580 INFO [12149]: Version from config: 1.0 -- 13:26:29.580 DEBUG [12149]: Connecting to database... -- 13:26:29.580 DEBUG [12149]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:26:29.580 SQL [12149]: pgsql_db_connect() -- 13:26:29.584 DEBUG [12149]: Database connection successful -- 13:26:29.584 INFO [12149]: _SERVER found -- 13:26:29.584 INFO [12149]: REMOTE_ADDR = 192.168.1.13 -- 13:26:29.584 INFO [12149]: SERVER_NAME = oameye.works.coregrade.com -- 13:26:29.584 INFO [12149]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=jmvlv4neq7dglpmgkmlttd7vr4cs282h -- 13:26:29.584 INFO [12149]: QUERY_STRING = /app-assets/data/locales/en.json -- 13:26:29.584 INFO [12149]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:26:29.595 INFO [12149]: COREGRADE is stopping... -- 13:26:29.595 DEBUG [12149]: Closing database connection -- 13:26:29.595 SQL [12149]: pgsql_close() -- 13:26:36.068 INFO [12216]: COREGRADE is starting... -- 13:26:36.068 INFO [12216]: Version from config: 1.0 -- 13:26:36.068 DEBUG [12216]: Connecting to database... -- 13:26:36.068 DEBUG [12216]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:26:36.068 SQL [12216]: pgsql_db_connect() -- 13:26:36.072 DEBUG [12216]: Database connection successful -- 13:26:36.072 INFO [12216]: _SERVER found -- 13:26:36.072 INFO [12216]: REMOTE_ADDR = 192.168.1.13 -- 13:26:36.072 INFO [12216]: SERVER_NAME = oameye.works.coregrade.com -- 13:26:36.072 INFO [12216]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=jmvlv4neq7dglpmgkmlttd7vr4cs282h -- 13:26:36.072 INFO [12216]: QUERY_STRING = /member/mycalendar -- 13:26:36.072 INFO [12216]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:26:36.105 INFO [12216]: COREGRADE is stopping... -- 13:26:36.105 DEBUG [12216]: Closing database connection -- 13:26:36.105 SQL [12216]: pgsql_close() -- 13:27:27.259 INFO [12151]: COREGRADE is starting... -- 13:27:27.259 INFO [12151]: Version from config: 1.0 -- 13:27:27.259 DEBUG [12151]: Connecting to database... -- 13:27:27.259 DEBUG [12151]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:27:27.259 SQL [12151]: pgsql_db_connect() -- 13:27:27.263 DEBUG [12151]: Database connection successful -- 13:27:27.263 INFO [12151]: _SERVER found -- 13:27:27.263 INFO [12151]: REMOTE_ADDR = 192.168.1.13 -- 13:27:27.263 INFO [12151]: SERVER_NAME = oameye.works.coregrade.com -- 13:27:27.263 INFO [12151]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=jmvlv4neq7dglpmgkmlttd7vr4cs282h -- 13:27:27.263 INFO [12151]: QUERY_STRING = /member/myprofile -- 13:27:27.263 INFO [12151]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:27:27.298 INFO [12151]: COREGRADE is stopping... -- 13:27:27.298 DEBUG [12151]: Closing database connection -- 13:27:27.298 SQL [12151]: pgsql_close() -- 13:27:30.092 INFO [12151]: COREGRADE is starting... -- 13:27:30.092 INFO [12151]: Version from config: 1.0 -- 13:27:30.092 DEBUG [12151]: Connecting to database... -- 13:27:30.092 DEBUG [12151]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:27:30.092 SQL [12151]: pgsql_db_connect() -- 13:27:30.096 DEBUG [12151]: Database connection successful -- 13:27:30.096 INFO [12151]: _SERVER found -- 13:27:30.096 INFO [12151]: REMOTE_ADDR = 192.168.1.13 -- 13:27:30.096 INFO [12151]: SERVER_NAME = oameye.works.coregrade.com -- 13:27:30.096 INFO [12151]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=jmvlv4neq7dglpmgkmlttd7vr4cs282h -- 13:27:30.096 INFO [12151]: QUERY_STRING = /member/mycalendar -- 13:27:30.096 INFO [12151]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:27:30.133 INFO [12151]: COREGRADE is stopping... -- 13:27:30.133 DEBUG [12151]: Closing database connection -- 13:27:30.133 SQL [12151]: pgsql_close() -- 13:27:30.326 INFO [12151]: COREGRADE is starting... -- 13:27:30.327 INFO [12151]: Version from config: 1.0 -- 13:27:30.327 DEBUG [12151]: Connecting to database... -- 13:27:30.327 DEBUG [12151]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:27:30.327 SQL [12151]: pgsql_db_connect() -- 13:27:30.331 DEBUG [12151]: Database connection successful -- 13:27:30.331 INFO [12151]: _SERVER found -- 13:27:30.331 INFO [12151]: REMOTE_ADDR = 192.168.1.13 -- 13:27:30.331 INFO [12151]: SERVER_NAME = oameye.works.coregrade.com -- 13:27:30.331 INFO [12151]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=jmvlv4neq7dglpmgkmlttd7vr4cs282h -- 13:27:30.331 INFO [12151]: QUERY_STRING = /app-assets/data/locales/en.json -- 13:27:30.331 INFO [12151]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:27:30.343 INFO [12151]: COREGRADE is stopping... -- 13:27:30.343 DEBUG [12151]: Closing database connection -- 13:27:30.343 SQL [12151]: pgsql_close() -- 13:30:25.212 INFO [12223]: COREGRADE is starting... -- 13:30:25.212 INFO [12223]: Version from config: 1.0 -- 13:30:25.213 DEBUG [12223]: Connecting to database... -- 13:30:25.213 DEBUG [12223]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:30:25.213 SQL [12223]: pgsql_db_connect() -- 13:30:25.217 DEBUG [12223]: Database connection successful -- 13:30:25.217 INFO [12223]: _SERVER found -- 13:30:25.217 INFO [12223]: REMOTE_ADDR = 192.168.1.13 -- 13:30:25.217 INFO [12223]: SERVER_NAME = oameye.works.coregrade.com -- 13:30:25.217 INFO [12223]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=jmvlv4neq7dglpmgkmlttd7vr4cs282h -- 13:30:25.217 INFO [12223]: QUERY_STRING = /member/mycalendar -- 13:30:25.217 INFO [12223]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:30:25.255 INFO [12223]: COREGRADE is stopping... -- 13:30:25.255 DEBUG [12223]: Closing database connection -- 13:30:25.255 SQL [12223]: pgsql_close() -- 13:30:25.473 INFO [12223]: COREGRADE is starting... -- 13:30:25.473 INFO [12223]: Version from config: 1.0 -- 13:30:25.473 DEBUG [12223]: Connecting to database... -- 13:30:25.473 DEBUG [12223]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:30:25.473 SQL [12223]: pgsql_db_connect() -- 13:30:25.477 DEBUG [12223]: Database connection successful -- 13:30:25.477 INFO [12223]: _SERVER found -- 13:30:25.477 INFO [12223]: REMOTE_ADDR = 192.168.1.13 -- 13:30:25.477 INFO [12223]: SERVER_NAME = oameye.works.coregrade.com -- 13:30:25.477 INFO [12223]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=i5o6ksjrp3cdqg2799rac7jqnakoa0dj -- 13:30:25.477 INFO [12223]: QUERY_STRING = /app-assets/data/locales/en.json -- 13:30:25.477 INFO [12223]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:30:25.490 INFO [12223]: COREGRADE is stopping... -- 13:30:25.490 DEBUG [12223]: Closing database connection -- 13:30:25.490 SQL [12223]: pgsql_close() -- 13:30:31.862 INFO [12170]: COREGRADE is starting... -- 13:30:31.863 INFO [12170]: Version from config: 1.0 -- 13:30:31.863 DEBUG [12170]: Connecting to database... -- 13:30:31.863 DEBUG [12170]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:30:31.863 SQL [12170]: pgsql_db_connect() -- 13:30:31.867 DEBUG [12170]: Database connection successful -- 13:30:31.867 INFO [12170]: _SERVER found -- 13:30:31.867 INFO [12170]: REMOTE_ADDR = 192.168.1.13 -- 13:30:31.867 INFO [12170]: SERVER_NAME = oameye.works.coregrade.com -- 13:30:31.867 INFO [12170]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=i5o6ksjrp3cdqg2799rac7jqnakoa0dj -- 13:30:31.867 INFO [12170]: QUERY_STRING = /member/myprofile -- 13:30:31.867 INFO [12170]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:30:31.900 INFO [12170]: COREGRADE is stopping... -- 13:30:31.900 DEBUG [12170]: Closing database connection -- 13:30:31.900 SQL [12170]: pgsql_close() -- 13:30:32.058 INFO [12170]: COREGRADE is starting... -- 13:30:32.058 INFO [12170]: Version from config: 1.0 -- 13:30:32.058 DEBUG [12170]: Connecting to database... -- 13:30:32.058 DEBUG [12170]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:30:32.058 SQL [12170]: pgsql_db_connect() -- 13:30:32.062 DEBUG [12170]: Database connection successful -- 13:30:32.062 INFO [12170]: _SERVER found -- 13:30:32.062 INFO [12170]: REMOTE_ADDR = 192.168.1.13 -- 13:30:32.062 INFO [12170]: SERVER_NAME = oameye.works.coregrade.com -- 13:30:32.062 INFO [12170]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=i5o6ksjrp3cdqg2799rac7jqnakoa0dj -- 13:30:32.062 INFO [12170]: QUERY_STRING = /app-assets/data/locales/en.json -- 13:30:32.062 INFO [12170]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:30:32.073 INFO [12170]: COREGRADE is stopping... -- 13:30:32.073 DEBUG [12170]: Closing database connection -- 13:30:32.073 SQL [12170]: pgsql_close() -- 13:34:54.083 INFO [22937]: COREGRADE is starting... -- 13:34:54.083 INFO [22937]: Version from config: 1.0 -- 13:34:54.083 DEBUG [22937]: Connecting to database... -- 13:34:54.083 DEBUG [22937]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:34:54.083 SQL [22937]: pgsql_db_connect() -- 13:34:54.088 DEBUG [22937]: Database connection successful -- 13:34:54.088 INFO [22937]: _SERVER found -- 13:34:54.088 INFO [22937]: REMOTE_ADDR = 192.168.1.13 -- 13:34:54.088 INFO [22937]: SERVER_NAME = oameye.works.coregrade.com -- 13:34:54.088 INFO [22937]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=i5o6ksjrp3cdqg2799rac7jqnakoa0dj -- 13:34:54.088 INFO [22937]: QUERY_STRING = /member/myprofile -- 13:34:54.088 INFO [22937]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:34:54.129 INFO [22937]: COREGRADE is stopping... -- 13:34:54.129 DEBUG [22937]: Closing database connection -- 13:34:54.129 SQL [22937]: pgsql_close() -- 13:34:54.172 INFO [22937]: COREGRADE is starting... -- 13:34:54.172 INFO [22937]: Version from config: 1.0 -- 13:34:54.172 DEBUG [22937]: Connecting to database... -- 13:34:54.172 DEBUG [22937]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:34:54.172 SQL [22937]: pgsql_db_connect() -- 13:34:54.176 DEBUG [22937]: Database connection successful -- 13:34:54.176 INFO [22937]: _SERVER found -- 13:34:54.176 INFO [22937]: REMOTE_ADDR = 192.168.1.13 -- 13:34:54.176 INFO [22937]: SERVER_NAME = oameye.works.coregrade.com -- 13:34:54.176 INFO [22937]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=i5o6ksjrp3cdqg2799rac7jqnakoa0dj -- 13:34:54.176 INFO [22937]: QUERY_STRING = /app-assets/images/portrait/small/avatar-s-12.jpg -- 13:34:54.176 INFO [22937]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:34:54.188 INFO [22937]: COREGRADE is stopping... -- 13:34:54.188 DEBUG [22937]: Closing database connection -- 13:34:54.188 SQL [22937]: pgsql_close() -- 13:34:54.234 INFO [22937]: COREGRADE is starting... -- 13:34:54.235 INFO [22937]: Version from config: 1.0 -- 13:34:54.235 DEBUG [22937]: Connecting to database... -- 13:34:54.235 DEBUG [22937]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:34:54.235 SQL [22937]: pgsql_db_connect() -- 13:34:54.239 DEBUG [22937]: Database connection successful -- 13:34:54.239 INFO [22937]: _SERVER found -- 13:34:54.239 INFO [22937]: REMOTE_ADDR = 192.168.1.13 -- 13:34:54.239 INFO [22937]: SERVER_NAME = oameye.works.coregrade.com -- 13:34:54.239 INFO [22937]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=i5o6ksjrp3cdqg2799rac7jqnakoa0dj -- 13:34:54.239 INFO [22937]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 13:34:54.239 INFO [22937]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:34:54.251 INFO [22937]: COREGRADE is stopping... -- 13:34:54.251 DEBUG [22937]: Closing database connection -- 13:34:54.251 SQL [22937]: pgsql_close() -- 13:34:54.568 INFO [22937]: COREGRADE is starting... -- 13:34:54.569 INFO [22937]: Version from config: 1.0 -- 13:34:54.569 DEBUG [22937]: Connecting to database... -- 13:34:54.569 DEBUG [22937]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:34:54.569 SQL [22937]: pgsql_db_connect() -- 13:34:54.573 DEBUG [22937]: Database connection successful -- 13:34:54.573 INFO [22937]: _SERVER found -- 13:34:54.573 INFO [22937]: REMOTE_ADDR = 192.168.1.13 -- 13:34:54.573 INFO [22937]: SERVER_NAME = oameye.works.coregrade.com -- 13:34:54.573 INFO [22937]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=i5o6ksjrp3cdqg2799rac7jqnakoa0dj -- 13:34:54.573 INFO [22937]: QUERY_STRING = /app-assets/data/locales/en.json -- 13:34:54.573 INFO [22937]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:34:54.585 INFO [22937]: COREGRADE is stopping... -- 13:34:54.585 DEBUG [22937]: Closing database connection -- 13:34:54.585 SQL [22937]: pgsql_close() -- 13:35:02.840 INFO [22938]: COREGRADE is starting... -- 13:35:02.840 INFO [22938]: Version from config: 1.0 -- 13:35:02.840 DEBUG [22938]: Connecting to database... -- 13:35:02.840 DEBUG [22938]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:35:02.840 SQL [22938]: pgsql_db_connect() -- 13:35:02.844 DEBUG [22938]: Database connection successful -- 13:35:02.844 INFO [22938]: _SERVER found -- 13:35:02.844 INFO [22938]: REMOTE_ADDR = 192.168.1.13 -- 13:35:02.844 INFO [22938]: SERVER_NAME = oameye.works.coregrade.com -- 13:35:02.844 INFO [22938]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=i5o6ksjrp3cdqg2799rac7jqnakoa0dj -- 13:35:02.844 INFO [22938]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 13:35:02.844 INFO [22938]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:35:02.859 INFO [22938]: COREGRADE is stopping... -- 13:35:02.859 DEBUG [22938]: Closing database connection -- 13:35:02.859 SQL [22938]: pgsql_close() -- 13:36:16.866 INFO [22939]: COREGRADE is starting... -- 13:36:16.866 INFO [22939]: Version from config: 1.0 -- 13:36:16.866 DEBUG [22939]: Connecting to database... -- 13:36:16.866 DEBUG [22939]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:36:16.866 SQL [22939]: pgsql_db_connect() -- 13:36:16.871 DEBUG [22939]: Database connection successful -- 13:36:16.871 INFO [22939]: _SERVER found -- 13:36:16.871 INFO [22939]: REMOTE_ADDR = 192.168.1.13 -- 13:36:16.871 INFO [22939]: SERVER_NAME = oameye.works.coregrade.com -- 13:36:16.871 INFO [22939]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=i5o6ksjrp3cdqg2799rac7jqnakoa0dj -- 13:36:16.871 INFO [22939]: QUERY_STRING = /member/myprofile -- 13:36:16.871 INFO [22939]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:36:16.912 INFO [22939]: COREGRADE is stopping... -- 13:36:16.913 DEBUG [22939]: Closing database connection -- 13:36:16.913 SQL [22939]: pgsql_close() -- 13:36:16.963 INFO [22939]: COREGRADE is starting... -- 13:36:16.964 INFO [22939]: Version from config: 1.0 -- 13:36:16.964 DEBUG [22939]: Connecting to database... -- 13:36:16.964 DEBUG [22939]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:36:16.964 SQL [22939]: pgsql_db_connect() -- 13:36:16.968 DEBUG [22939]: Database connection successful -- 13:36:16.968 INFO [22939]: _SERVER found -- 13:36:16.968 INFO [22939]: REMOTE_ADDR = 192.168.1.13 -- 13:36:16.968 INFO [22939]: SERVER_NAME = oameye.works.coregrade.com -- 13:36:16.968 INFO [22939]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=245bc78up15nikjsmuj5a1acti7dcmvt -- 13:36:16.968 INFO [22939]: QUERY_STRING = /app-assets/images/portrait/small/avatar-s-12.jpg -- 13:36:16.968 INFO [22939]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:36:16.979 INFO [22939]: COREGRADE is stopping... -- 13:36:16.979 DEBUG [22939]: Closing database connection -- 13:36:16.979 SQL [22939]: pgsql_close() -- 13:36:17.226 INFO [22939]: COREGRADE is starting... -- 13:36:17.226 INFO [22939]: Version from config: 1.0 -- 13:36:17.226 DEBUG [22939]: Connecting to database... -- 13:36:17.226 DEBUG [22939]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:36:17.226 SQL [22939]: pgsql_db_connect() -- 13:36:17.230 DEBUG [22939]: Database connection successful -- 13:36:17.230 INFO [22939]: _SERVER found -- 13:36:17.230 INFO [22939]: REMOTE_ADDR = 192.168.1.13 -- 13:36:17.230 INFO [22939]: SERVER_NAME = oameye.works.coregrade.com -- 13:36:17.230 INFO [22939]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=245bc78up15nikjsmuj5a1acti7dcmvt -- 13:36:17.230 INFO [22939]: QUERY_STRING = /app-assets/data/locales/en.json -- 13:36:17.230 INFO [22939]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:36:17.241 INFO [22939]: COREGRADE is stopping... -- 13:36:17.241 DEBUG [22939]: Closing database connection -- 13:36:17.241 SQL [22939]: pgsql_close() -- 13:36:51.822 INFO [22940]: COREGRADE is starting... -- 13:36:51.822 INFO [22940]: Version from config: 1.0 -- 13:36:51.822 DEBUG [22940]: Connecting to database... -- 13:36:51.822 DEBUG [22940]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:36:51.822 SQL [22940]: pgsql_db_connect() -- 13:36:51.826 DEBUG [22940]: Database connection successful -- 13:36:51.826 INFO [22940]: _SERVER found -- 13:36:51.826 INFO [22940]: REMOTE_ADDR = 192.168.1.13 -- 13:36:51.826 INFO [22940]: SERVER_NAME = oameye.works.coregrade.com -- 13:36:51.826 INFO [22940]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=245bc78up15nikjsmuj5a1acti7dcmvt -- 13:36:51.826 INFO [22940]: QUERY_STRING = /member/myprofile -- 13:36:51.826 INFO [22940]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:36:51.867 INFO [22940]: COREGRADE is stopping... -- 13:36:51.867 DEBUG [22940]: Closing database connection -- 13:36:51.867 SQL [22940]: pgsql_close() -- 13:36:52.095 INFO [22940]: COREGRADE is starting... -- 13:36:52.095 INFO [22940]: Version from config: 1.0 -- 13:36:52.095 DEBUG [22940]: Connecting to database... -- 13:36:52.095 DEBUG [22940]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:36:52.095 SQL [22940]: pgsql_db_connect() -- 13:36:52.099 DEBUG [22940]: Database connection successful -- 13:36:52.099 INFO [22940]: _SERVER found -- 13:36:52.099 INFO [22940]: REMOTE_ADDR = 192.168.1.13 -- 13:36:52.099 INFO [22940]: SERVER_NAME = oameye.works.coregrade.com -- 13:36:52.099 INFO [22940]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=245bc78up15nikjsmuj5a1acti7dcmvt -- 13:36:52.099 INFO [22940]: QUERY_STRING = /app-assets/data/locales/en.json -- 13:36:52.099 INFO [22940]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:36:52.110 INFO [22940]: COREGRADE is stopping... -- 13:36:52.110 DEBUG [22940]: Closing database connection -- 13:36:52.110 SQL [22940]: pgsql_close() -- 13:38:46.649 INFO [22941]: COREGRADE is starting... -- 13:38:46.650 INFO [22941]: Version from config: 1.0 -- 13:38:46.650 DEBUG [22941]: Connecting to database... -- 13:38:46.650 DEBUG [22941]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:38:46.650 SQL [22941]: pgsql_db_connect() -- 13:38:46.654 DEBUG [22941]: Database connection successful -- 13:38:46.654 INFO [22941]: _SERVER found -- 13:38:46.654 INFO [22941]: REMOTE_ADDR = 192.168.1.13 -- 13:38:46.654 INFO [22941]: SERVER_NAME = oameye.works.coregrade.com -- 13:38:46.654 INFO [22941]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=245bc78up15nikjsmuj5a1acti7dcmvt -- 13:38:46.654 INFO [22941]: QUERY_STRING = /member -- 13:38:46.654 INFO [22941]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:38:46.696 INFO [22941]: COREGRADE is stopping... -- 13:38:46.696 DEBUG [22941]: Closing database connection -- 13:38:46.696 SQL [22941]: pgsql_close() -- 13:38:46.926 INFO [22941]: COREGRADE is starting... -- 13:38:46.926 INFO [22941]: Version from config: 1.0 -- 13:38:46.926 DEBUG [22941]: Connecting to database... -- 13:38:46.926 DEBUG [22941]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:38:46.926 SQL [22941]: pgsql_db_connect() -- 13:38:46.930 DEBUG [22941]: Database connection successful -- 13:38:46.930 INFO [22941]: _SERVER found -- 13:38:46.930 INFO [22941]: REMOTE_ADDR = 192.168.1.13 -- 13:38:46.930 INFO [22941]: SERVER_NAME = oameye.works.coregrade.com -- 13:38:46.930 INFO [22941]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=245bc78up15nikjsmuj5a1acti7dcmvt -- 13:38:46.930 INFO [22941]: QUERY_STRING = /app-assets/data/locales/en.json -- 13:38:46.930 INFO [22941]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:38:46.942 INFO [22941]: COREGRADE is stopping... -- 13:38:46.942 DEBUG [22941]: Closing database connection -- 13:38:46.942 SQL [22941]: pgsql_close() -- 13:38:48.157 INFO [22941]: COREGRADE is starting... -- 13:38:48.158 INFO [22941]: Version from config: 1.0 -- 13:38:48.158 DEBUG [22941]: Connecting to database... -- 13:38:48.158 DEBUG [22941]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:38:48.158 SQL [22941]: pgsql_db_connect() -- 13:38:48.162 DEBUG [22941]: Database connection successful -- 13:38:48.162 INFO [22941]: _SERVER found -- 13:38:48.162 INFO [22941]: REMOTE_ADDR = 192.168.1.13 -- 13:38:48.162 INFO [22941]: SERVER_NAME = oameye.works.coregrade.com -- 13:38:48.162 INFO [22941]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=245bc78up15nikjsmuj5a1acti7dcmvt -- 13:38:48.162 INFO [22941]: QUERY_STRING = /member/page -- 13:38:48.162 INFO [22941]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:38:48.202 INFO [22941]: COREGRADE is stopping... -- 13:38:48.202 DEBUG [22941]: Closing database connection -- 13:38:48.202 SQL [22941]: pgsql_close() -- 13:38:48.394 INFO [22941]: COREGRADE is starting... -- 13:38:48.394 INFO [22941]: Version from config: 1.0 -- 13:38:48.394 DEBUG [22941]: Connecting to database... -- 13:38:48.394 DEBUG [22941]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:38:48.394 SQL [22941]: pgsql_db_connect() -- 13:38:48.398 DEBUG [22941]: Database connection successful -- 13:38:48.398 INFO [22941]: _SERVER found -- 13:38:48.398 INFO [22941]: REMOTE_ADDR = 192.168.1.13 -- 13:38:48.398 INFO [22941]: SERVER_NAME = oameye.works.coregrade.com -- 13:38:48.398 INFO [22941]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=245bc78up15nikjsmuj5a1acti7dcmvt -- 13:38:48.398 INFO [22941]: QUERY_STRING = /app-assets/data/locales/en.json -- 13:38:48.398 INFO [22941]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:38:48.411 INFO [22941]: COREGRADE is stopping... -- 13:38:48.411 DEBUG [22941]: Closing database connection -- 13:38:48.411 SQL [22941]: pgsql_close() -- 13:38:50.424 INFO [22941]: COREGRADE is starting... -- 13:38:50.424 INFO [22941]: Version from config: 1.0 -- 13:38:50.424 DEBUG [22941]: Connecting to database... -- 13:38:50.424 DEBUG [22941]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:38:50.424 SQL [22941]: pgsql_db_connect() -- 13:38:50.429 DEBUG [22941]: Database connection successful -- 13:38:50.429 INFO [22941]: _SERVER found -- 13:38:50.429 INFO [22941]: REMOTE_ADDR = 192.168.1.13 -- 13:38:50.429 INFO [22941]: SERVER_NAME = oameye.works.coregrade.com -- 13:38:50.429 INFO [22941]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=245bc78up15nikjsmuj5a1acti7dcmvt -- 13:38:50.429 INFO [22941]: QUERY_STRING = /member -- 13:38:50.429 INFO [22941]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:38:50.468 INFO [22941]: COREGRADE is stopping... -- 13:38:50.468 DEBUG [22941]: Closing database connection -- 13:38:50.468 SQL [22941]: pgsql_close() -- 13:38:50.623 INFO [22941]: COREGRADE is starting... -- 13:38:50.623 INFO [22941]: Version from config: 1.0 -- 13:38:50.624 DEBUG [22941]: Connecting to database... -- 13:38:50.624 DEBUG [22941]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:38:50.624 SQL [22941]: pgsql_db_connect() -- 13:38:50.628 DEBUG [22941]: Database connection successful -- 13:38:50.628 INFO [22941]: _SERVER found -- 13:38:50.628 INFO [22941]: REMOTE_ADDR = 192.168.1.13 -- 13:38:50.628 INFO [22941]: SERVER_NAME = oameye.works.coregrade.com -- 13:38:50.628 INFO [22941]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=245bc78up15nikjsmuj5a1acti7dcmvt -- 13:38:50.628 INFO [22941]: QUERY_STRING = /app-assets/data/locales/en.json -- 13:38:50.628 INFO [22941]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:38:50.640 INFO [22941]: COREGRADE is stopping... -- 13:38:50.640 DEBUG [22941]: Closing database connection -- 13:38:50.640 SQL [22941]: pgsql_close() -- 13:38:51.570 INFO [22941]: COREGRADE is starting... -- 13:38:51.571 INFO [22941]: Version from config: 1.0 -- 13:38:51.571 DEBUG [22941]: Connecting to database... -- 13:38:51.571 DEBUG [22941]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:38:51.571 SQL [22941]: pgsql_db_connect() -- 13:38:51.575 DEBUG [22941]: Database connection successful -- 13:38:51.575 INFO [22941]: _SERVER found -- 13:38:51.575 INFO [22941]: REMOTE_ADDR = 192.168.1.13 -- 13:38:51.575 INFO [22941]: SERVER_NAME = oameye.works.coregrade.com -- 13:38:51.575 INFO [22941]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=245bc78up15nikjsmuj5a1acti7dcmvt -- 13:38:51.575 INFO [22941]: QUERY_STRING = /member/configure -- 13:38:51.575 INFO [22941]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:38:51.614 INFO [22941]: COREGRADE is stopping... -- 13:38:51.615 DEBUG [22941]: Closing database connection -- 13:38:51.615 SQL [22941]: pgsql_close() -- 13:38:51.846 INFO [22941]: COREGRADE is starting... -- 13:38:51.846 INFO [22941]: Version from config: 1.0 -- 13:38:51.846 DEBUG [22941]: Connecting to database... -- 13:38:51.846 DEBUG [22941]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:38:51.847 SQL [22941]: pgsql_db_connect() -- 13:38:51.851 DEBUG [22941]: Database connection successful -- 13:38:51.851 INFO [22941]: _SERVER found -- 13:38:51.851 INFO [22941]: REMOTE_ADDR = 192.168.1.13 -- 13:38:51.851 INFO [22941]: SERVER_NAME = oameye.works.coregrade.com -- 13:38:51.851 INFO [22941]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=245bc78up15nikjsmuj5a1acti7dcmvt -- 13:38:51.851 INFO [22941]: QUERY_STRING = /app-assets/data/locales/en.json -- 13:38:51.851 INFO [22941]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:38:51.863 INFO [22941]: COREGRADE is stopping... -- 13:38:51.863 DEBUG [22941]: Closing database connection -- 13:38:51.863 SQL [22941]: pgsql_close() -- 13:53:27.097 INFO [31291]: COREGRADE is starting... -- 13:53:27.098 INFO [31291]: Version from config: 1.0 -- 13:53:27.098 DEBUG [31291]: Connecting to database... -- 13:53:27.098 DEBUG [31291]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:53:27.098 SQL [31291]: pgsql_db_connect() -- 13:53:27.142 INFO [31291]: COREGRADE is starting... -- 13:53:27.143 INFO [31291]: Version from config: 1.0 -- 13:53:27.143 DEBUG [31291]: Connecting to database... -- 13:53:27.143 DEBUG [31291]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:53:27.143 SQL [31291]: pgsql_db_connect() -- 13:53:27.147 DEBUG [31291]: Database connection successful -- 13:53:27.147 INFO [31291]: _SERVER found -- 13:53:27.147 INFO [31291]: REMOTE_ADDR = 192.168.1.13 -- 13:53:27.147 INFO [31291]: SERVER_NAME = oameye.works.coregrade.com -- 13:53:27.147 INFO [31291]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=245bc78up15nikjsmuj5a1acti7dcmvt -- 13:53:27.147 INFO [31291]: QUERY_STRING = -- 13:53:27.147 INFO [31291]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:53:27.147 INFO [31291]: SystemStatus()09-09-********~************ -- 13:53:27.147 INFO [31291]: long coregrade_api_main(CVars in, CVars &out) -- 13:53:27.147 INFO [31291]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 13:53:27.147 INFO [31291]: account calls -- 13:53:27.147 INFO [31291]: account_calls() -- 13:53:27.147 INFO [31291]: LoginCoreGradeAccount() -- 13:53:27.147 FLOG_MAX [31291]: REQ_STRING(username) -- 13:53:27.147 FLOG_MAX [31291]: REQ_STRING(password) -- 13:53:27.147 FLOG_MAX [31291]: REQ_STRING(sessionid) -- 13:53:27.147 FLOG_MAX [31291]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:53:27.147 SQL [31291]: pgsql_query() -- 13:53:27.147 SQL [31291]: About to run query: -- 13:53:27.147 SQL [31291]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 13:53:27.151 SQL [31291]: Found rows: 1 -- 13:53:27.151 FLOG_MAX [31291]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 13:53:27.151 INFO [31291]: long SessionCheck(long uid, const char *sessionid, int create ) -- 13:53:27.151 SQL [31291]: pgsql_exec() -- 13:53:27.151 SQL [31291]: About to run query: -- 13:53:27.151 SQL [31291]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 13:53:27.152 SQL [31291]: PQcmdTuples: 1 -- 13:53:27.152 SQL [31291]: Affected rows: 1 -- 13:53:27.152 SQL [31291]: pgsql_exec() -- 13:53:27.152 SQL [31291]: About to run query: -- 13:53:27.152 SQL [31291]: DELETE FROM members_session WHERE member_id=5 -- 13:53:27.153 SQL [31291]: PQcmdTuples: 0 -- 13:53:27.153 SQL [31291]: Affected rows: 0 -- 13:53:27.153 SQL [31291]: pgsql_query() -- 13:53:27.153 SQL [31291]: About to run query: -- 13:53:27.153 SQL [31291]: SELECT * FROM members_session WHERE member_id=5 AND session<>'9F338EFB05D7E5CE96C4B83F23E6149F' -- 13:53:27.153 SQL [31291]: Found rows: 0 -- 13:53:27.153 SQL [31291]: Found rows: 0 -- 13:53:27.153 FLOG_MAX [31291]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:53:27.153 SQL [31291]: pgsql_query() -- 13:53:27.153 SQL [31291]: About to run query: -- 13:53:27.153 SQL [31291]: SELECT * FROM members_session WHERE member_id=5 AND session='9F338EFB05D7E5CE96C4B83F23E6149F' -- 13:53:27.154 SQL [31291]: Found rows: 0 -- 13:53:27.154 SQL [31291]: Found rows: 0 -- 13:53:27.154 FLOG_MAX [31291]: insert_db_record() -- 13:53:27.154 SQL [31291]: pgsql_exec() -- 13:53:27.154 SQL [31291]: About to run query: -- 13:53:27.154 SQL [31291]: INSERT INTO members_session (member_id,session) VALUES ('5','9F338EFB05D7E5CE96C4B83F23E6149F') -- 13:53:27.155 SQL [31291]: PQcmdTuples: 1 -- 13:53:27.155 SQL [31291]: Affected rows: 1 -- 13:53:27.155 FLOG_MAX [31291]: SELECT currval('members_session_id_seq') -- 13:53:27.155 SQL [31291]: pgsql_query() -- 13:53:27.155 SQL [31291]: About to run query: -- 13:53:27.155 SQL [31291]: SELECT currval('members_session_id_seq') -- 13:53:27.156 SQL [31291]: Found rows: 1 -- 13:53:27.156 INFO [31291]: CreateDefaultPage() -- 13:53:27.156 FLOG_MAX [31291]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:53:27.156 SQL [31291]: pgsql_query() -- 13:53:27.156 SQL [31291]: About to run query: -- 13:53:27.156 SQL [31291]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 13:53:27.156 SQL [31291]: Found rows: 1 -- 13:53:27.156 FLOG_MAX [31291]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 13:53:27.156 SQL [31291]: pgsql_query() -- 13:53:27.156 SQL [31291]: About to run query: -- 13:53:27.156 SQL [31291]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 13:53:27.157 SQL [31291]: Found rows: 1 -- 13:53:27.157 INFO [31291]: /CreateDefaultPage() -- 13:53:27.157 INFO [31291]: /LoginCoreGradeAccount() -- 13:53:27.157 INFO [31291]: RET: added=2020-02-05 06:47:23.982154 -- 13:53:27.157 INFO [31291]: RET: email=ameye+11@chiefsoft.com -- 13:53:27.157 INFO [31291]: RET: firstname=Olu -- 13:53:27.157 INFO [31291]: RET: id=5 -- 13:53:27.157 INFO [31291]: RET: last_login= -- 13:53:27.157 INFO [31291]: RET: lastname=Amey -- 13:53:27.157 INFO [31291]: RET: loc=192.168.1.13 -- 13:53:27.157 INFO [31291]: RET: member_id=5 -- 13:53:27.157 INFO [31291]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 13:53:27.157 INFO [31291]: RET: phone= -- 13:53:27.157 INFO [31291]: RET: pid= -- 13:53:27.157 INFO [31291]: RET: result=YES I GET TO BACK END -- 13:53:27.157 INFO [31291]: RET: sessionid=9F338EFB05D7E5CE96C4B83F23E6149F -- 13:53:27.157 INFO [31291]: RET: status=1 -- 13:53:27.157 INFO [31291]: RET: stauts=OK -- 13:53:27.157 INFO [31291]: RET: username=ameye+11@chiefsoft.com -- 13:53:27.157 INFO [31291]: RET: verified= -- 13:53:27.159 INFO [31291]: COREGRADE is stopping... -- 13:53:27.159 DEBUG [31291]: Closing database connection -- 13:53:27.159 SQL [31291]: pgsql_close() -- 13:53:27.103 DEBUG [31291]: Database connection successful -- 13:53:27.103 INFO [31291]: _SERVER found -- 13:53:27.103 INFO [31291]: REMOTE_ADDR = 192.168.1.13 -- 13:53:27.103 INFO [31291]: SERVER_NAME = oameye.works.coregrade.com -- 13:53:27.103 INFO [31291]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=245bc78up15nikjsmuj5a1acti7dcmvt -- 13:53:27.103 INFO [31291]: QUERY_STRING = /auth -- 13:53:27.103 INFO [31291]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:53:27.159 INFO [31291]: COREGRADE is stopping... -- 13:53:27.159 DEBUG [31291]: Closing database connection -- 13:53:27.159 SQL [31291]: pgsql_close() -- 13:53:27.182 INFO [31291]: COREGRADE is starting... -- 13:53:27.182 INFO [31291]: Version from config: 1.0 -- 13:53:27.182 DEBUG [31291]: Connecting to database... -- 13:53:27.182 DEBUG [31291]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:53:27.182 SQL [31291]: pgsql_db_connect() -- 13:53:27.186 DEBUG [31291]: Database connection successful -- 13:53:27.186 INFO [31291]: _SERVER found -- 13:53:27.186 INFO [31291]: REMOTE_ADDR = 192.168.1.13 -- 13:53:27.186 INFO [31291]: SERVER_NAME = oameye.works.coregrade.com -- 13:53:27.186 INFO [31291]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ah9quctpvgc6f2f5ocl4qidvr2f4iuij -- 13:53:27.186 INFO [31291]: QUERY_STRING = /member/index -- 13:53:27.186 INFO [31291]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:53:27.226 INFO [31291]: COREGRADE is stopping... -- 13:53:27.227 DEBUG [31291]: Closing database connection -- 13:53:27.227 SQL [31291]: pgsql_close() -- 13:53:27.466 INFO [31291]: COREGRADE is starting... -- 13:53:27.466 INFO [31291]: Version from config: 1.0 -- 13:53:27.466 DEBUG [31291]: Connecting to database... -- 13:53:27.466 DEBUG [31291]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:53:27.466 SQL [31291]: pgsql_db_connect() -- 13:53:27.470 DEBUG [31291]: Database connection successful -- 13:53:27.470 INFO [31291]: _SERVER found -- 13:53:27.470 INFO [31291]: REMOTE_ADDR = 192.168.1.13 -- 13:53:27.470 INFO [31291]: SERVER_NAME = oameye.works.coregrade.com -- 13:53:27.470 INFO [31291]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ah9quctpvgc6f2f5ocl4qidvr2f4iuij -- 13:53:27.470 INFO [31291]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 13:53:27.470 INFO [31291]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:53:27.483 INFO [31291]: COREGRADE is stopping... -- 13:53:27.483 DEBUG [31291]: Closing database connection -- 13:53:27.483 SQL [31291]: pgsql_close() -- 13:53:27.511 INFO [31291]: COREGRADE is starting... -- 13:53:27.511 INFO [31291]: Version from config: 1.0 -- 13:53:27.511 DEBUG [31291]: Connecting to database... -- 13:53:27.511 DEBUG [31291]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:53:27.511 SQL [31291]: pgsql_db_connect() -- 13:53:27.515 DEBUG [31291]: Database connection successful -- 13:53:27.515 INFO [31291]: _SERVER found -- 13:53:27.515 INFO [31291]: REMOTE_ADDR = 192.168.1.13 -- 13:53:27.515 INFO [31291]: SERVER_NAME = oameye.works.coregrade.com -- 13:53:27.515 INFO [31291]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ah9quctpvgc6f2f5ocl4qidvr2f4iuij -- 13:53:27.515 INFO [31291]: QUERY_STRING = /app-assets/data/locales/en.json -- 13:53:27.515 INFO [31291]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:53:27.527 INFO [31291]: COREGRADE is stopping... -- 13:53:27.527 DEBUG [31291]: Closing database connection -- 13:53:27.527 SQL [31291]: pgsql_close() -- 14:00:53.081 INFO [31292]: COREGRADE is starting... -- 14:00:53.081 INFO [31292]: Version from config: 1.0 -- 14:00:53.081 DEBUG [31292]: Connecting to database... -- 14:00:53.081 DEBUG [31292]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:00:53.081 SQL [31292]: pgsql_db_connect() -- 14:00:53.086 DEBUG [31292]: Database connection successful -- 14:00:53.086 INFO [31292]: _SERVER found -- 14:00:53.086 INFO [31292]: REMOTE_ADDR = 192.168.1.13 -- 14:00:53.086 INFO [31292]: SERVER_NAME = oameye.works.coregrade.com -- 14:00:53.086 INFO [31292]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ah9quctpvgc6f2f5ocl4qidvr2f4iuij -- 14:00:53.086 INFO [31292]: QUERY_STRING = /member/index -- 14:00:53.086 INFO [31292]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:00:53.132 INFO [31292]: COREGRADE is stopping... -- 14:00:53.132 DEBUG [31292]: Closing database connection -- 14:00:53.132 SQL [31292]: pgsql_close() -- 14:00:53.393 INFO [31292]: COREGRADE is starting... -- 14:00:53.394 INFO [31292]: Version from config: 1.0 -- 14:00:53.394 DEBUG [31292]: Connecting to database... -- 14:00:53.394 DEBUG [31292]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:00:53.394 SQL [31292]: pgsql_db_connect() -- 14:00:53.398 DEBUG [31292]: Database connection successful -- 14:00:53.398 INFO [31292]: _SERVER found -- 14:00:53.398 INFO [31292]: REMOTE_ADDR = 192.168.1.13 -- 14:00:53.398 INFO [31292]: SERVER_NAME = oameye.works.coregrade.com -- 14:00:53.398 INFO [31292]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d1504ea9f63efje8lju73dh56ghps08m -- 14:00:53.398 INFO [31292]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:00:53.398 INFO [31292]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:00:53.410 INFO [31292]: COREGRADE is stopping... -- 14:00:53.410 DEBUG [31292]: Closing database connection -- 14:00:53.410 SQL [31292]: pgsql_close() -- 14:01:39.736 INFO [31293]: COREGRADE is starting... -- 14:01:39.737 INFO [31293]: Version from config: 1.0 -- 14:01:39.737 DEBUG [31293]: Connecting to database... -- 14:01:39.737 DEBUG [31293]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:01:39.737 SQL [31293]: pgsql_db_connect() -- 14:01:39.741 DEBUG [31293]: Database connection successful -- 14:01:39.741 INFO [31293]: _SERVER found -- 14:01:39.741 INFO [31293]: REMOTE_ADDR = 192.168.1.13 -- 14:01:39.741 INFO [31293]: SERVER_NAME = oameye.works.coregrade.com -- 14:01:39.741 INFO [31293]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d1504ea9f63efje8lju73dh56ghps08m -- 14:01:39.741 INFO [31293]: QUERY_STRING = /member/index -- 14:01:39.741 INFO [31293]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:01:39.786 INFO [31293]: COREGRADE is stopping... -- 14:01:39.786 DEBUG [31293]: Closing database connection -- 14:01:39.786 SQL [31293]: pgsql_close() -- 14:01:39.975 INFO [31293]: COREGRADE is starting... -- 14:01:39.975 INFO [31293]: Version from config: 1.0 -- 14:01:39.975 DEBUG [31293]: Connecting to database... -- 14:01:39.975 DEBUG [31293]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:01:39.975 SQL [31293]: pgsql_db_connect() -- 14:01:39.979 DEBUG [31293]: Database connection successful -- 14:01:39.979 INFO [31293]: _SERVER found -- 14:01:39.979 INFO [31293]: REMOTE_ADDR = 192.168.1.13 -- 14:01:39.979 INFO [31293]: SERVER_NAME = oameye.works.coregrade.com -- 14:01:39.979 INFO [31293]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d1504ea9f63efje8lju73dh56ghps08m -- 14:01:39.979 INFO [31293]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:01:39.979 INFO [31293]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:01:39.991 INFO [31293]: COREGRADE is stopping... -- 14:01:39.991 DEBUG [31293]: Closing database connection -- 14:01:39.991 SQL [31293]: pgsql_close() -- 14:02:24.760 INFO [31294]: COREGRADE is starting... -- 14:02:24.761 INFO [31294]: Version from config: 1.0 -- 14:02:24.761 DEBUG [31294]: Connecting to database... -- 14:02:24.761 DEBUG [31294]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:02:24.761 SQL [31294]: pgsql_db_connect() -- 14:02:24.765 DEBUG [31294]: Database connection successful -- 14:02:24.765 INFO [31294]: _SERVER found -- 14:02:24.765 INFO [31294]: REMOTE_ADDR = 192.168.1.13 -- 14:02:24.765 INFO [31294]: SERVER_NAME = oameye.works.coregrade.com -- 14:02:24.765 INFO [31294]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d1504ea9f63efje8lju73dh56ghps08m -- 14:02:24.765 INFO [31294]: QUERY_STRING = /member/index -- 14:02:24.765 INFO [31294]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:02:24.810 INFO [31294]: COREGRADE is stopping... -- 14:02:24.810 DEBUG [31294]: Closing database connection -- 14:02:24.810 SQL [31294]: pgsql_close() -- 14:02:25.014 INFO [31294]: COREGRADE is starting... -- 14:02:25.014 INFO [31294]: Version from config: 1.0 -- 14:02:25.014 DEBUG [31294]: Connecting to database... -- 14:02:25.014 DEBUG [31294]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:02:25.014 SQL [31294]: pgsql_db_connect() -- 14:02:25.018 DEBUG [31294]: Database connection successful -- 14:02:25.018 INFO [31294]: _SERVER found -- 14:02:25.018 INFO [31294]: REMOTE_ADDR = 192.168.1.13 -- 14:02:25.018 INFO [31294]: SERVER_NAME = oameye.works.coregrade.com -- 14:02:25.018 INFO [31294]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d1504ea9f63efje8lju73dh56ghps08m -- 14:02:25.018 INFO [31294]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:02:25.018 INFO [31294]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:02:25.031 INFO [31294]: COREGRADE is stopping... -- 14:02:25.031 DEBUG [31294]: Closing database connection -- 14:02:25.031 SQL [31294]: pgsql_close() -- 14:02:25.058 INFO [31294]: COREGRADE is starting... -- 14:02:25.059 INFO [31294]: Version from config: 1.0 -- 14:02:25.059 DEBUG [31294]: Connecting to database... -- 14:02:25.059 DEBUG [31294]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:02:25.059 SQL [31294]: pgsql_db_connect() -- 14:02:25.063 DEBUG [31294]: Database connection successful -- 14:02:25.063 INFO [31294]: _SERVER found -- 14:02:25.063 INFO [31294]: REMOTE_ADDR = 192.168.1.13 -- 14:02:25.063 INFO [31294]: SERVER_NAME = oameye.works.coregrade.com -- 14:02:25.063 INFO [31294]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d1504ea9f63efje8lju73dh56ghps08m -- 14:02:25.063 INFO [31294]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:02:25.063 INFO [31294]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:02:25.074 INFO [31294]: COREGRADE is stopping... -- 14:02:25.074 DEBUG [31294]: Closing database connection -- 14:02:25.074 SQL [31294]: pgsql_close() -- 14:02:57.663 INFO [31295]: COREGRADE is starting... -- 14:02:57.664 INFO [31295]: Version from config: 1.0 -- 14:02:57.664 DEBUG [31295]: Connecting to database... -- 14:02:57.664 DEBUG [31295]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:02:57.664 SQL [31295]: pgsql_db_connect() -- 14:02:57.668 DEBUG [31295]: Database connection successful -- 14:02:57.668 INFO [31295]: _SERVER found -- 14:02:57.668 INFO [31295]: REMOTE_ADDR = 192.168.1.13 -- 14:02:57.668 INFO [31295]: SERVER_NAME = oameye.works.coregrade.com -- 14:02:57.668 INFO [31295]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d1504ea9f63efje8lju73dh56ghps08m -- 14:02:57.668 INFO [31295]: QUERY_STRING = /member/index -- 14:02:57.668 INFO [31295]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:02:57.712 INFO [31295]: COREGRADE is stopping... -- 14:02:57.712 DEBUG [31295]: Closing database connection -- 14:02:57.712 SQL [31295]: pgsql_close() -- 14:02:57.960 INFO [31295]: COREGRADE is starting... -- 14:02:57.960 INFO [31295]: Version from config: 1.0 -- 14:02:57.960 DEBUG [31295]: Connecting to database... -- 14:02:57.960 DEBUG [31295]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:02:57.960 SQL [31295]: pgsql_db_connect() -- 14:02:57.964 DEBUG [31295]: Database connection successful -- 14:02:57.964 INFO [31295]: _SERVER found -- 14:02:57.964 INFO [31295]: REMOTE_ADDR = 192.168.1.13 -- 14:02:57.964 INFO [31295]: SERVER_NAME = oameye.works.coregrade.com -- 14:02:57.964 INFO [31295]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d1504ea9f63efje8lju73dh56ghps08m -- 14:02:57.964 INFO [31295]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:02:57.964 INFO [31295]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:02:57.977 INFO [31295]: COREGRADE is stopping... -- 14:02:57.977 DEBUG [31295]: Closing database connection -- 14:02:57.977 SQL [31295]: pgsql_close() -- 14:03:59.034 INFO [31353]: COREGRADE is starting... -- 14:03:59.035 INFO [31353]: Version from config: 1.0 -- 14:03:59.035 DEBUG [31353]: Connecting to database... -- 14:03:59.035 DEBUG [31353]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:03:59.035 SQL [31353]: pgsql_db_connect() -- 14:03:59.039 DEBUG [31353]: Database connection successful -- 14:03:59.039 INFO [31353]: _SERVER found -- 14:03:59.039 INFO [31353]: REMOTE_ADDR = 192.168.1.13 -- 14:03:59.039 INFO [31353]: SERVER_NAME = oameye.works.coregrade.com -- 14:03:59.039 INFO [31353]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d1504ea9f63efje8lju73dh56ghps08m -- 14:03:59.039 INFO [31353]: QUERY_STRING = /member/index -- 14:03:59.039 INFO [31353]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:03:59.083 INFO [31353]: COREGRADE is stopping... -- 14:03:59.083 DEBUG [31353]: Closing database connection -- 14:03:59.083 SQL [31353]: pgsql_close() -- 14:03:59.321 INFO [31353]: COREGRADE is starting... -- 14:03:59.321 INFO [31353]: Version from config: 1.0 -- 14:03:59.321 DEBUG [31353]: Connecting to database... -- 14:03:59.321 DEBUG [31353]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:03:59.321 SQL [31353]: pgsql_db_connect() -- 14:03:59.325 DEBUG [31353]: Database connection successful -- 14:03:59.325 INFO [31353]: _SERVER found -- 14:03:59.325 INFO [31353]: REMOTE_ADDR = 192.168.1.13 -- 14:03:59.325 INFO [31353]: SERVER_NAME = oameye.works.coregrade.com -- 14:03:59.325 INFO [31353]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d1504ea9f63efje8lju73dh56ghps08m -- 14:03:59.325 INFO [31353]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:03:59.325 INFO [31353]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:03:59.338 INFO [31353]: COREGRADE is stopping... -- 14:03:59.338 DEBUG [31353]: Closing database connection -- 14:03:59.338 SQL [31353]: pgsql_close() -- 14:04:26.136 INFO [31291]: COREGRADE is starting... -- 14:04:26.137 INFO [31291]: Version from config: 1.0 -- 14:04:26.137 DEBUG [31291]: Connecting to database... -- 14:04:26.137 DEBUG [31291]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:04:26.137 SQL [31291]: pgsql_db_connect() -- 14:04:26.141 DEBUG [31291]: Database connection successful -- 14:04:26.141 INFO [31291]: _SERVER found -- 14:04:26.141 INFO [31291]: REMOTE_ADDR = 192.168.1.13 -- 14:04:26.141 INFO [31291]: SERVER_NAME = oameye.works.coregrade.com -- 14:04:26.141 INFO [31291]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d1504ea9f63efje8lju73dh56ghps08m -- 14:04:26.141 INFO [31291]: QUERY_STRING = /member/index -- 14:04:26.141 INFO [31291]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:04:26.183 INFO [31291]: COREGRADE is stopping... -- 14:04:26.183 DEBUG [31291]: Closing database connection -- 14:04:26.183 SQL [31291]: pgsql_close() -- 14:04:26.643 INFO [31294]: COREGRADE is starting... -- 14:04:26.644 INFO [31294]: Version from config: 1.0 -- 14:04:26.644 DEBUG [31294]: Connecting to database... -- 14:04:26.644 DEBUG [31294]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:04:26.644 SQL [31294]: pgsql_db_connect() -- 14:04:26.648 DEBUG [31294]: Database connection successful -- 14:04:26.648 INFO [31294]: _SERVER found -- 14:04:26.648 INFO [31294]: REMOTE_ADDR = 192.168.1.13 -- 14:04:26.648 INFO [31294]: SERVER_NAME = oameye.works.coregrade.com -- 14:04:26.648 INFO [31294]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d1504ea9f63efje8lju73dh56ghps08m -- 14:04:26.648 INFO [31294]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:04:26.648 INFO [31294]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:04:26.660 INFO [31294]: COREGRADE is stopping... -- 14:04:26.660 DEBUG [31294]: Closing database connection -- 14:04:26.660 SQL [31294]: pgsql_close() -- 14:04:26.974 INFO [31291]: COREGRADE is starting... -- 14:04:26.974 INFO [31291]: Version from config: 1.0 -- 14:04:26.974 DEBUG [31291]: Connecting to database... -- 14:04:26.974 DEBUG [31291]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:04:26.975 SQL [31291]: pgsql_db_connect() -- 14:04:26.979 DEBUG [31291]: Database connection successful -- 14:04:26.979 INFO [31291]: _SERVER found -- 14:04:26.979 INFO [31291]: REMOTE_ADDR = 192.168.1.13 -- 14:04:26.979 INFO [31291]: SERVER_NAME = oameye.works.coregrade.com -- 14:04:26.979 INFO [31291]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d1504ea9f63efje8lju73dh56ghps08m -- 14:04:26.979 INFO [31291]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:04:26.979 INFO [31291]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:04:26.991 INFO [31291]: COREGRADE is stopping... -- 14:04:26.991 DEBUG [31291]: Closing database connection -- 14:04:26.991 SQL [31291]: pgsql_close() -- 14:06:26.652 INFO [31447]: COREGRADE is starting... -- 14:06:26.653 INFO [31447]: Version from config: 1.0 -- 14:06:26.653 DEBUG [31447]: Connecting to database... -- 14:06:26.653 DEBUG [31447]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:06:26.653 SQL [31447]: pgsql_db_connect() -- 14:06:26.657 DEBUG [31447]: Database connection successful -- 14:06:26.657 INFO [31447]: _SERVER found -- 14:06:26.657 INFO [31447]: REMOTE_ADDR = 192.168.1.13 -- 14:06:26.657 INFO [31447]: SERVER_NAME = oameye.works.coregrade.com -- 14:06:26.657 INFO [31447]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=d1504ea9f63efje8lju73dh56ghps08m -- 14:06:26.657 INFO [31447]: QUERY_STRING = /member/mycalendar -- 14:06:26.657 INFO [31447]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:06:26.700 INFO [31447]: COREGRADE is stopping... -- 14:06:26.700 DEBUG [31447]: Closing database connection -- 14:06:26.700 SQL [31447]: pgsql_close() -- 14:06:27.011 INFO [31447]: COREGRADE is starting... -- 14:06:27.012 INFO [31447]: Version from config: 1.0 -- 14:06:27.012 DEBUG [31447]: Connecting to database... -- 14:06:27.012 DEBUG [31447]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:06:27.012 SQL [31447]: pgsql_db_connect() -- 14:06:27.016 DEBUG [31447]: Database connection successful -- 14:06:27.016 INFO [31447]: _SERVER found -- 14:06:27.016 INFO [31447]: REMOTE_ADDR = 192.168.1.13 -- 14:06:27.016 INFO [31447]: SERVER_NAME = oameye.works.coregrade.com -- 14:06:27.016 INFO [31447]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=np9rdk3sqft2d9mgsjapdeejgf8p67a7 -- 14:06:27.016 INFO [31447]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:06:27.016 INFO [31447]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:06:27.028 INFO [31447]: COREGRADE is stopping... -- 14:06:27.028 DEBUG [31447]: Closing database connection -- 14:06:27.028 SQL [31447]: pgsql_close() -- 14:06:27.069 INFO [31447]: COREGRADE is starting... -- 14:06:27.069 INFO [31447]: Version from config: 1.0 -- 14:06:27.069 DEBUG [31447]: Connecting to database... -- 14:06:27.069 DEBUG [31447]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:06:27.069 SQL [31447]: pgsql_db_connect() -- 14:06:27.073 DEBUG [31447]: Database connection successful -- 14:06:27.073 INFO [31447]: _SERVER found -- 14:06:27.073 INFO [31447]: REMOTE_ADDR = 192.168.1.13 -- 14:06:27.073 INFO [31447]: SERVER_NAME = oameye.works.coregrade.com -- 14:06:27.073 INFO [31447]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=np9rdk3sqft2d9mgsjapdeejgf8p67a7 -- 14:06:27.073 INFO [31447]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:06:27.073 INFO [31447]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:06:27.086 INFO [31447]: COREGRADE is stopping... -- 14:06:27.086 DEBUG [31447]: Closing database connection -- 14:06:27.086 SQL [31447]: pgsql_close() -- 14:07:42.567 INFO [31448]: COREGRADE is starting... -- 14:07:42.567 INFO [31448]: Version from config: 1.0 -- 14:07:42.567 DEBUG [31448]: Connecting to database... -- 14:07:42.567 DEBUG [31448]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:07:42.567 SQL [31448]: pgsql_db_connect() -- 14:07:42.571 DEBUG [31448]: Database connection successful -- 14:07:42.571 INFO [31448]: _SERVER found -- 14:07:42.571 INFO [31448]: REMOTE_ADDR = 192.168.1.13 -- 14:07:42.571 INFO [31448]: SERVER_NAME = oameye.works.coregrade.com -- 14:07:42.571 INFO [31448]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=np9rdk3sqft2d9mgsjapdeejgf8p67a7 -- 14:07:42.571 INFO [31448]: QUERY_STRING = /member/mycalendar -- 14:07:42.571 INFO [31448]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:07:42.612 INFO [31448]: COREGRADE is stopping... -- 14:07:42.612 DEBUG [31448]: Closing database connection -- 14:07:42.612 SQL [31448]: pgsql_close() -- 14:07:42.806 INFO [31448]: COREGRADE is starting... -- 14:07:42.806 INFO [31448]: Version from config: 1.0 -- 14:07:42.806 DEBUG [31448]: Connecting to database... -- 14:07:42.806 DEBUG [31448]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:07:42.806 SQL [31448]: pgsql_db_connect() -- 14:07:42.810 DEBUG [31448]: Database connection successful -- 14:07:42.810 INFO [31448]: _SERVER found -- 14:07:42.810 INFO [31448]: REMOTE_ADDR = 192.168.1.13 -- 14:07:42.810 INFO [31448]: SERVER_NAME = oameye.works.coregrade.com -- 14:07:42.810 INFO [31448]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=np9rdk3sqft2d9mgsjapdeejgf8p67a7 -- 14:07:42.810 INFO [31448]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:07:42.810 INFO [31448]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:07:42.822 INFO [31448]: COREGRADE is stopping... -- 14:07:42.822 DEBUG [31448]: Closing database connection -- 14:07:42.822 SQL [31448]: pgsql_close() -- 14:07:42.838 INFO [31448]: COREGRADE is starting... -- 14:07:42.839 INFO [31448]: Version from config: 1.0 -- 14:07:42.839 DEBUG [31448]: Connecting to database... -- 14:07:42.839 DEBUG [31448]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:07:42.839 SQL [31448]: pgsql_db_connect() -- 14:07:42.842 DEBUG [31448]: Database connection successful -- 14:07:42.842 INFO [31448]: _SERVER found -- 14:07:42.843 INFO [31448]: REMOTE_ADDR = 192.168.1.13 -- 14:07:42.843 INFO [31448]: SERVER_NAME = oameye.works.coregrade.com -- 14:07:42.843 INFO [31448]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=np9rdk3sqft2d9mgsjapdeejgf8p67a7 -- 14:07:42.843 INFO [31448]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:07:42.843 INFO [31448]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:07:42.855 INFO [31448]: COREGRADE is stopping... -- 14:07:42.855 DEBUG [31448]: Closing database connection -- 14:07:42.855 SQL [31448]: pgsql_close() -- 14:07:53.890 INFO [31449]: COREGRADE is starting... -- 14:07:53.890 INFO [31449]: Version from config: 1.0 -- 14:07:53.890 DEBUG [31449]: Connecting to database... -- 14:07:53.890 DEBUG [31449]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:07:53.890 SQL [31449]: pgsql_db_connect() -- 14:07:53.894 DEBUG [31449]: Database connection successful -- 14:07:53.894 INFO [31449]: _SERVER found -- 14:07:53.894 INFO [31449]: REMOTE_ADDR = 192.168.1.13 -- 14:07:53.894 INFO [31449]: SERVER_NAME = oameye.works.coregrade.com -- 14:07:53.894 INFO [31449]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=np9rdk3sqft2d9mgsjapdeejgf8p67a7 -- 14:07:53.894 INFO [31449]: QUERY_STRING = /member/mycalendar -- 14:07:53.894 INFO [31449]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:07:53.934 INFO [31449]: COREGRADE is stopping... -- 14:07:53.934 DEBUG [31449]: Closing database connection -- 14:07:53.934 SQL [31449]: pgsql_close() -- 14:07:54.122 INFO [31449]: COREGRADE is starting... -- 14:07:54.122 INFO [31449]: Version from config: 1.0 -- 14:07:54.122 DEBUG [31449]: Connecting to database... -- 14:07:54.122 DEBUG [31449]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:07:54.122 SQL [31449]: pgsql_db_connect() -- 14:07:54.126 DEBUG [31449]: Database connection successful -- 14:07:54.126 INFO [31449]: _SERVER found -- 14:07:54.126 INFO [31449]: REMOTE_ADDR = 192.168.1.13 -- 14:07:54.126 INFO [31449]: SERVER_NAME = oameye.works.coregrade.com -- 14:07:54.126 INFO [31449]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=np9rdk3sqft2d9mgsjapdeejgf8p67a7 -- 14:07:54.126 INFO [31449]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:07:54.126 INFO [31449]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:07:54.138 INFO [31449]: COREGRADE is stopping... -- 14:07:54.138 DEBUG [31449]: Closing database connection -- 14:07:54.138 SQL [31449]: pgsql_close() -- 14:07:54.183 INFO [31449]: COREGRADE is starting... -- 14:07:54.183 INFO [31449]: Version from config: 1.0 -- 14:07:54.183 DEBUG [31449]: Connecting to database... -- 14:07:54.183 DEBUG [31449]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:07:54.183 SQL [31449]: pgsql_db_connect() -- 14:07:54.187 DEBUG [31449]: Database connection successful -- 14:07:54.187 INFO [31449]: _SERVER found -- 14:07:54.187 INFO [31449]: REMOTE_ADDR = 192.168.1.13 -- 14:07:54.187 INFO [31449]: SERVER_NAME = oameye.works.coregrade.com -- 14:07:54.187 INFO [31449]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=np9rdk3sqft2d9mgsjapdeejgf8p67a7 -- 14:07:54.187 INFO [31449]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:07:54.187 INFO [31449]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:07:54.200 INFO [31449]: COREGRADE is stopping... -- 14:07:54.200 DEBUG [31449]: Closing database connection -- 14:07:54.200 SQL [31449]: pgsql_close() -- 14:08:41.862 INFO [31450]: COREGRADE is starting... -- 14:08:41.862 INFO [31450]: Version from config: 1.0 -- 14:08:41.862 DEBUG [31450]: Connecting to database... -- 14:08:41.862 DEBUG [31450]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:08:41.862 SQL [31450]: pgsql_db_connect() -- 14:08:41.866 DEBUG [31450]: Database connection successful -- 14:08:41.866 INFO [31450]: _SERVER found -- 14:08:41.866 INFO [31450]: REMOTE_ADDR = 192.168.1.13 -- 14:08:41.866 INFO [31450]: SERVER_NAME = oameye.works.coregrade.com -- 14:08:41.866 INFO [31450]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=np9rdk3sqft2d9mgsjapdeejgf8p67a7 -- 14:08:41.866 INFO [31450]: QUERY_STRING = /member/mycalendar -- 14:08:41.866 INFO [31450]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:08:41.907 INFO [31450]: COREGRADE is stopping... -- 14:08:41.907 DEBUG [31450]: Closing database connection -- 14:08:41.907 SQL [31450]: pgsql_close() -- 14:08:42.135 INFO [31450]: COREGRADE is starting... -- 14:08:42.136 INFO [31450]: Version from config: 1.0 -- 14:08:42.136 DEBUG [31450]: Connecting to database... -- 14:08:42.136 DEBUG [31450]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:08:42.136 SQL [31450]: pgsql_db_connect() -- 14:08:42.140 DEBUG [31450]: Database connection successful -- 14:08:42.140 INFO [31450]: _SERVER found -- 14:08:42.140 INFO [31450]: REMOTE_ADDR = 192.168.1.13 -- 14:08:42.140 INFO [31450]: SERVER_NAME = oameye.works.coregrade.com -- 14:08:42.140 INFO [31450]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=np9rdk3sqft2d9mgsjapdeejgf8p67a7 -- 14:08:42.140 INFO [31450]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:08:42.140 INFO [31450]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:08:42.152 INFO [31450]: COREGRADE is stopping... -- 14:08:42.152 DEBUG [31450]: Closing database connection -- 14:08:42.152 SQL [31450]: pgsql_close() -- 14:08:42.178 INFO [31450]: COREGRADE is starting... -- 14:08:42.178 INFO [31450]: Version from config: 1.0 -- 14:08:42.178 DEBUG [31450]: Connecting to database... -- 14:08:42.178 DEBUG [31450]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:08:42.178 SQL [31450]: pgsql_db_connect() -- 14:08:42.182 DEBUG [31450]: Database connection successful -- 14:08:42.182 INFO [31450]: _SERVER found -- 14:08:42.182 INFO [31450]: REMOTE_ADDR = 192.168.1.13 -- 14:08:42.182 INFO [31450]: SERVER_NAME = oameye.works.coregrade.com -- 14:08:42.182 INFO [31450]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=np9rdk3sqft2d9mgsjapdeejgf8p67a7 -- 14:08:42.182 INFO [31450]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:08:42.182 INFO [31450]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:08:42.194 INFO [31450]: COREGRADE is stopping... -- 14:08:42.194 DEBUG [31450]: Closing database connection -- 14:08:42.194 SQL [31450]: pgsql_close() -- 14:09:05.006 INFO [31293]: COREGRADE is starting... -- 14:09:05.006 INFO [31293]: Version from config: 1.0 -- 14:09:05.006 DEBUG [31293]: Connecting to database... -- 14:09:05.006 DEBUG [31293]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:09:05.006 SQL [31293]: pgsql_db_connect() -- 14:09:05.010 DEBUG [31293]: Database connection successful -- 14:09:05.010 INFO [31293]: _SERVER found -- 14:09:05.010 INFO [31293]: REMOTE_ADDR = 192.168.1.13 -- 14:09:05.010 INFO [31293]: SERVER_NAME = oameye.works.coregrade.com -- 14:09:05.010 INFO [31293]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=np9rdk3sqft2d9mgsjapdeejgf8p67a7 -- 14:09:05.010 INFO [31293]: QUERY_STRING = /member/mycalendar -- 14:09:05.010 INFO [31293]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:09:05.047 INFO [31293]: COREGRADE is stopping... -- 14:09:05.047 DEBUG [31293]: Closing database connection -- 14:09:05.047 SQL [31293]: pgsql_close() -- 14:09:05.306 INFO [31293]: COREGRADE is starting... -- 14:09:05.307 INFO [31293]: Version from config: 1.0 -- 14:09:05.307 DEBUG [31293]: Connecting to database... -- 14:09:05.307 DEBUG [31293]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:09:05.307 SQL [31293]: pgsql_db_connect() -- 14:09:05.311 DEBUG [31293]: Database connection successful -- 14:09:05.311 INFO [31293]: _SERVER found -- 14:09:05.311 INFO [31293]: REMOTE_ADDR = 192.168.1.13 -- 14:09:05.311 INFO [31293]: SERVER_NAME = oameye.works.coregrade.com -- 14:09:05.311 INFO [31293]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=np9rdk3sqft2d9mgsjapdeejgf8p67a7 -- 14:09:05.311 INFO [31293]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:09:05.311 INFO [31293]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:09:05.322 INFO [31293]: COREGRADE is stopping... -- 14:09:05.323 DEBUG [31293]: Closing database connection -- 14:09:05.323 SQL [31293]: pgsql_close() -- 14:09:05.374 INFO [31293]: COREGRADE is starting... -- 14:09:05.374 INFO [31293]: Version from config: 1.0 -- 14:09:05.374 DEBUG [31293]: Connecting to database... -- 14:09:05.374 DEBUG [31293]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:09:05.374 SQL [31293]: pgsql_db_connect() -- 14:09:05.378 DEBUG [31293]: Database connection successful -- 14:09:05.378 INFO [31293]: _SERVER found -- 14:09:05.378 INFO [31293]: REMOTE_ADDR = 192.168.1.13 -- 14:09:05.378 INFO [31293]: SERVER_NAME = oameye.works.coregrade.com -- 14:09:05.378 INFO [31293]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=np9rdk3sqft2d9mgsjapdeejgf8p67a7 -- 14:09:05.378 INFO [31293]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:09:05.378 INFO [31293]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:09:05.390 INFO [31293]: COREGRADE is stopping... -- 14:09:05.390 DEBUG [31293]: Closing database connection -- 14:09:05.390 SQL [31293]: pgsql_close() -- 14:10:30.385 INFO [31295]: COREGRADE is starting... -- 14:10:30.386 INFO [31295]: Version from config: 1.0 -- 14:10:30.386 DEBUG [31295]: Connecting to database... -- 14:10:30.386 DEBUG [31295]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:30.386 SQL [31295]: pgsql_db_connect() -- 14:10:30.390 DEBUG [31295]: Database connection successful -- 14:10:30.390 INFO [31295]: _SERVER found -- 14:10:30.390 INFO [31295]: REMOTE_ADDR = 192.168.1.13 -- 14:10:30.390 INFO [31295]: SERVER_NAME = oameye.works.coregrade.com -- 14:10:30.390 INFO [31295]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=np9rdk3sqft2d9mgsjapdeejgf8p67a7 -- 14:10:30.390 INFO [31295]: QUERY_STRING = /member/mycalendar -- 14:10:30.390 INFO [31295]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:10:30.429 INFO [31295]: COREGRADE is stopping... -- 14:10:30.429 DEBUG [31295]: Closing database connection -- 14:10:30.429 SQL [31295]: pgsql_close() -- 14:10:30.639 INFO [31295]: COREGRADE is starting... -- 14:10:30.639 INFO [31295]: Version from config: 1.0 -- 14:10:30.639 DEBUG [31295]: Connecting to database... -- 14:10:30.640 DEBUG [31295]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:30.640 SQL [31295]: pgsql_db_connect() -- 14:10:30.644 DEBUG [31295]: Database connection successful -- 14:10:30.644 INFO [31295]: _SERVER found -- 14:10:30.644 INFO [31295]: REMOTE_ADDR = 192.168.1.13 -- 14:10:30.644 INFO [31295]: SERVER_NAME = oameye.works.coregrade.com -- 14:10:30.644 INFO [31295]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=np9rdk3sqft2d9mgsjapdeejgf8p67a7 -- 14:10:30.644 INFO [31295]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:10:30.644 INFO [31295]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:10:30.656 INFO [31295]: COREGRADE is stopping... -- 14:10:30.656 DEBUG [31295]: Closing database connection -- 14:10:30.656 SQL [31295]: pgsql_close() -- 14:10:30.681 INFO [31295]: COREGRADE is starting... -- 14:10:30.682 INFO [31295]: Version from config: 1.0 -- 14:10:30.682 DEBUG [31295]: Connecting to database... -- 14:10:30.682 DEBUG [31295]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:30.682 SQL [31295]: pgsql_db_connect() -- 14:10:30.686 DEBUG [31295]: Database connection successful -- 14:10:30.686 INFO [31295]: _SERVER found -- 14:10:30.686 INFO [31295]: REMOTE_ADDR = 192.168.1.13 -- 14:10:30.686 INFO [31295]: SERVER_NAME = oameye.works.coregrade.com -- 14:10:30.686 INFO [31295]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=np9rdk3sqft2d9mgsjapdeejgf8p67a7 -- 14:10:30.686 INFO [31295]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:10:30.686 INFO [31295]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:10:30.698 INFO [31295]: COREGRADE is stopping... -- 14:10:30.698 DEBUG [31295]: Closing database connection -- 14:10:30.698 SQL [31295]: pgsql_close() -- 14:11:18.187 INFO [31294]: COREGRADE is starting... -- 14:11:18.187 INFO [31294]: Version from config: 1.0 -- 14:11:18.187 DEBUG [31294]: Connecting to database... -- 14:11:18.187 DEBUG [31294]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:11:18.187 SQL [31294]: pgsql_db_connect() -- 14:11:18.191 DEBUG [31294]: Database connection successful -- 14:11:18.191 INFO [31294]: _SERVER found -- 14:11:18.191 INFO [31294]: REMOTE_ADDR = 192.168.1.13 -- 14:11:18.192 INFO [31294]: SERVER_NAME = oameye.works.coregrade.com -- 14:11:18.192 INFO [31294]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=np9rdk3sqft2d9mgsjapdeejgf8p67a7 -- 14:11:18.192 INFO [31294]: QUERY_STRING = /member/mycalendar -- 14:11:18.192 INFO [31294]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:11:18.230 INFO [31294]: COREGRADE is stopping... -- 14:11:18.230 DEBUG [31294]: Closing database connection -- 14:11:18.230 SQL [31294]: pgsql_close() -- 14:11:18.444 INFO [31294]: COREGRADE is starting... -- 14:11:18.445 INFO [31294]: Version from config: 1.0 -- 14:11:18.445 DEBUG [31294]: Connecting to database... -- 14:11:18.445 DEBUG [31294]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:11:18.445 SQL [31294]: pgsql_db_connect() -- 14:11:18.449 DEBUG [31294]: Database connection successful -- 14:11:18.449 INFO [31294]: _SERVER found -- 14:11:18.449 INFO [31294]: REMOTE_ADDR = 192.168.1.13 -- 14:11:18.449 INFO [31294]: SERVER_NAME = oameye.works.coregrade.com -- 14:11:18.449 INFO [31294]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=np9rdk3sqft2d9mgsjapdeejgf8p67a7 -- 14:11:18.449 INFO [31294]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:11:18.449 INFO [31294]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:11:18.462 INFO [31294]: COREGRADE is stopping... -- 14:11:18.462 DEBUG [31294]: Closing database connection -- 14:11:18.462 SQL [31294]: pgsql_close() -- 14:11:18.485 INFO [31294]: COREGRADE is starting... -- 14:11:18.485 INFO [31294]: Version from config: 1.0 -- 14:11:18.485 DEBUG [31294]: Connecting to database... -- 14:11:18.485 DEBUG [31294]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:11:18.485 SQL [31294]: pgsql_db_connect() -- 14:11:18.489 DEBUG [31294]: Database connection successful -- 14:11:18.489 INFO [31294]: _SERVER found -- 14:11:18.489 INFO [31294]: REMOTE_ADDR = 192.168.1.13 -- 14:11:18.489 INFO [31294]: SERVER_NAME = oameye.works.coregrade.com -- 14:11:18.489 INFO [31294]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=np9rdk3sqft2d9mgsjapdeejgf8p67a7 -- 14:11:18.489 INFO [31294]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:11:18.489 INFO [31294]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:11:18.501 INFO [31294]: COREGRADE is stopping... -- 14:11:18.501 DEBUG [31294]: Closing database connection -- 14:11:18.501 SQL [31294]: pgsql_close() -- 14:11:59.408 INFO [31292]: COREGRADE is starting... -- 14:11:59.409 INFO [31292]: Version from config: 1.0 -- 14:11:59.409 DEBUG [31292]: Connecting to database... -- 14:11:59.409 DEBUG [31292]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:11:59.409 SQL [31292]: pgsql_db_connect() -- 14:11:59.414 DEBUG [31292]: Database connection successful -- 14:11:59.414 INFO [31292]: _SERVER found -- 14:11:59.414 INFO [31292]: REMOTE_ADDR = 192.168.1.13 -- 14:11:59.414 INFO [31292]: SERVER_NAME = oameye.works.coregrade.com -- 14:11:59.414 INFO [31292]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=np9rdk3sqft2d9mgsjapdeejgf8p67a7 -- 14:11:59.414 INFO [31292]: QUERY_STRING = /member -- 14:11:59.414 INFO [31292]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:11:59.455 INFO [31292]: COREGRADE is stopping... -- 14:11:59.455 DEBUG [31292]: Closing database connection -- 14:11:59.455 SQL [31292]: pgsql_close() -- 14:11:59.677 INFO [31292]: COREGRADE is starting... -- 14:11:59.677 INFO [31292]: Version from config: 1.0 -- 14:11:59.677 DEBUG [31292]: Connecting to database... -- 14:11:59.677 DEBUG [31292]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:11:59.677 SQL [31292]: pgsql_db_connect() -- 14:11:59.682 DEBUG [31292]: Database connection successful -- 14:11:59.682 INFO [31292]: _SERVER found -- 14:11:59.682 INFO [31292]: REMOTE_ADDR = 192.168.1.13 -- 14:11:59.682 INFO [31292]: SERVER_NAME = oameye.works.coregrade.com -- 14:11:59.682 INFO [31292]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ti3hjok4gmd6t24upbrslbuop0sdm7fd -- 14:11:59.682 INFO [31292]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:11:59.682 INFO [31292]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:11:59.694 INFO [31292]: COREGRADE is stopping... -- 14:11:59.694 DEBUG [31292]: Closing database connection -- 14:11:59.694 SQL [31292]: pgsql_close() -- 14:11:59.736 INFO [31292]: COREGRADE is starting... -- 14:11:59.736 INFO [31292]: Version from config: 1.0 -- 14:11:59.736 DEBUG [31292]: Connecting to database... -- 14:11:59.736 DEBUG [31292]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:11:59.736 SQL [31292]: pgsql_db_connect() -- 14:11:59.740 DEBUG [31292]: Database connection successful -- 14:11:59.740 INFO [31292]: _SERVER found -- 14:11:59.740 INFO [31292]: REMOTE_ADDR = 192.168.1.13 -- 14:11:59.740 INFO [31292]: SERVER_NAME = oameye.works.coregrade.com -- 14:11:59.740 INFO [31292]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ti3hjok4gmd6t24upbrslbuop0sdm7fd -- 14:11:59.740 INFO [31292]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:11:59.740 INFO [31292]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:11:59.752 INFO [31292]: COREGRADE is stopping... -- 14:11:59.752 DEBUG [31292]: Closing database connection -- 14:11:59.752 SQL [31292]: pgsql_close() -- 14:14:20.212 INFO [31353]: COREGRADE is starting... -- 14:14:20.213 INFO [31353]: Version from config: 1.0 -- 14:14:20.213 DEBUG [31353]: Connecting to database... -- 14:14:20.213 DEBUG [31353]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:14:20.213 SQL [31353]: pgsql_db_connect() -- 14:14:20.217 DEBUG [31353]: Database connection successful -- 14:14:20.217 INFO [31353]: _SERVER found -- 14:14:20.217 INFO [31353]: REMOTE_ADDR = 192.168.1.13 -- 14:14:20.217 INFO [31353]: SERVER_NAME = oameye.works.coregrade.com -- 14:14:20.217 INFO [31353]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ti3hjok4gmd6t24upbrslbuop0sdm7fd -- 14:14:20.217 INFO [31353]: QUERY_STRING = /member/page -- 14:14:20.217 INFO [31353]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:14:20.259 INFO [31353]: COREGRADE is stopping... -- 14:14:20.259 DEBUG [31353]: Closing database connection -- 14:14:20.259 SQL [31353]: pgsql_close() -- 14:14:20.403 INFO [31353]: COREGRADE is starting... -- 14:14:20.404 INFO [31353]: Version from config: 1.0 -- 14:14:20.404 DEBUG [31353]: Connecting to database... -- 14:14:20.404 DEBUG [31353]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:14:20.404 SQL [31353]: pgsql_db_connect() -- 14:14:20.408 DEBUG [31353]: Database connection successful -- 14:14:20.408 INFO [31353]: _SERVER found -- 14:14:20.408 INFO [31353]: REMOTE_ADDR = 192.168.1.13 -- 14:14:20.408 INFO [31353]: SERVER_NAME = oameye.works.coregrade.com -- 14:14:20.408 INFO [31353]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ti3hjok4gmd6t24upbrslbuop0sdm7fd -- 14:14:20.408 INFO [31353]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:14:20.408 INFO [31353]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:14:20.419 INFO [31353]: COREGRADE is stopping... -- 14:14:20.419 DEBUG [31353]: Closing database connection -- 14:14:20.419 SQL [31353]: pgsql_close() -- 14:14:20.559 INFO [31353]: COREGRADE is starting... -- 14:14:20.559 INFO [31353]: Version from config: 1.0 -- 14:14:20.559 DEBUG [31353]: Connecting to database... -- 14:14:20.559 DEBUG [31353]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:14:20.559 SQL [31353]: pgsql_db_connect() -- 14:14:20.564 DEBUG [31353]: Database connection successful -- 14:14:20.564 INFO [31353]: _SERVER found -- 14:14:20.564 INFO [31353]: REMOTE_ADDR = 192.168.1.13 -- 14:14:20.564 INFO [31353]: SERVER_NAME = oameye.works.coregrade.com -- 14:14:20.564 INFO [31353]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ti3hjok4gmd6t24upbrslbuop0sdm7fd -- 14:14:20.564 INFO [31353]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:14:20.564 INFO [31353]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:14:20.575 INFO [31353]: COREGRADE is stopping... -- 14:14:20.575 DEBUG [31353]: Closing database connection -- 14:14:20.575 SQL [31353]: pgsql_close() -- 14:14:23.385 INFO [31353]: COREGRADE is starting... -- 14:14:23.385 INFO [31353]: Version from config: 1.0 -- 14:14:23.385 DEBUG [31353]: Connecting to database... -- 14:14:23.385 DEBUG [31353]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:14:23.385 SQL [31353]: pgsql_db_connect() -- 14:14:23.389 DEBUG [31353]: Database connection successful -- 14:14:23.389 INFO [31353]: _SERVER found -- 14:14:23.389 INFO [31353]: REMOTE_ADDR = 192.168.1.13 -- 14:14:23.389 INFO [31353]: SERVER_NAME = oameye.works.coregrade.com -- 14:14:23.389 INFO [31353]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ti3hjok4gmd6t24upbrslbuop0sdm7fd -- 14:14:23.389 INFO [31353]: QUERY_STRING = /member/viewCardAddAction -- 14:14:23.389 INFO [31353]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:14:23.420 INFO [31353]: COREGRADE is stopping... -- 14:14:23.420 DEBUG [31353]: Closing database connection -- 14:14:23.420 SQL [31353]: pgsql_close() -- 14:14:24.574 INFO [31353]: COREGRADE is starting... -- 14:14:24.574 INFO [31353]: Version from config: 1.0 -- 14:14:24.574 DEBUG [31353]: Connecting to database... -- 14:14:24.575 DEBUG [31353]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:14:24.575 SQL [31353]: pgsql_db_connect() -- 14:14:24.579 DEBUG [31353]: Database connection successful -- 14:14:24.579 INFO [31353]: _SERVER found -- 14:14:24.579 INFO [31353]: REMOTE_ADDR = 192.168.1.13 -- 14:14:24.579 INFO [31353]: SERVER_NAME = oameye.works.coregrade.com -- 14:14:24.579 INFO [31353]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ti3hjok4gmd6t24upbrslbuop0sdm7fd -- 14:14:24.579 INFO [31353]: QUERY_STRING = /member/viewCardAddAction -- 14:14:24.579 INFO [31353]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:14:24.610 INFO [31353]: COREGRADE is stopping... -- 14:14:24.610 DEBUG [31353]: Closing database connection -- 14:14:24.610 SQL [31353]: pgsql_close() -- 14:14:38.283 INFO [31291]: COREGRADE is starting... -- 14:14:38.283 INFO [31291]: Version from config: 1.0 -- 14:14:38.283 DEBUG [31291]: Connecting to database... -- 14:14:38.283 DEBUG [31291]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:14:38.283 SQL [31291]: pgsql_db_connect() -- 14:14:38.287 DEBUG [31291]: Database connection successful -- 14:14:38.287 INFO [31291]: _SERVER found -- 14:14:38.287 INFO [31291]: REMOTE_ADDR = 192.168.1.13 -- 14:14:38.287 INFO [31291]: SERVER_NAME = oameye.works.coregrade.com -- 14:14:38.288 INFO [31291]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=ti3hjok4gmd6t24upbrslbuop0sdm7fd -- 14:14:38.288 INFO [31291]: QUERY_STRING = /member/viewCardAddAction -- 14:14:38.288 INFO [31291]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:14:38.322 INFO [31291]: COREGRADE is stopping... -- 14:14:38.322 DEBUG [31291]: Closing database connection -- 14:14:38.322 SQL [31291]: pgsql_close() -- 14:43:35.065 INFO [7522]: COREGRADE is starting... -- 14:43:35.068 INFO [7522]: Version from config: 1.0 -- 14:43:35.068 DEBUG [7522]: Connecting to database... -- 14:43:35.068 DEBUG [7522]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:43:35.068 SQL [7522]: pgsql_db_connect() -- 14:43:35.072 DEBUG [7522]: Database connection successful -- 14:43:35.072 INFO [7522]: _SERVER found -- 14:43:35.072 INFO [7522]: REMOTE_ADDR = 192.168.1.13 -- 14:43:35.072 INFO [7522]: SERVER_NAME = oameye.works.coregrade.com -- 14:43:35.072 INFO [7522]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361 -- 14:43:35.072 INFO [7522]: QUERY_STRING = /auth -- 14:43:35.072 INFO [7522]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:43:35.113 INFO [7522]: COREGRADE is stopping... -- 14:43:35.113 DEBUG [7522]: Closing database connection -- 14:43:35.113 SQL [7522]: pgsql_close() -- 14:43:40.586 INFO [7523]: COREGRADE is starting... -- 14:43:40.587 INFO [7523]: Version from config: 1.0 -- 14:43:40.587 DEBUG [7523]: Connecting to database... -- 14:43:40.587 DEBUG [7523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:43:40.587 SQL [7523]: pgsql_db_connect() -- 14:43:40.591 DEBUG [7523]: Database connection successful -- 14:43:40.591 INFO [7523]: _SERVER found -- 14:43:40.591 INFO [7523]: REMOTE_ADDR = 192.168.1.13 -- 14:43:40.591 INFO [7523]: SERVER_NAME = oameye.works.coregrade.com -- 14:43:40.591 INFO [7523]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=brcpqeg44kt930aptoeg20ag2l4p3u3f -- 14:43:40.591 INFO [7523]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:43:40.591 INFO [7523]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:43:40.605 INFO [7523]: COREGRADE is stopping... -- 14:43:40.605 DEBUG [7523]: Closing database connection -- 14:43:40.605 SQL [7523]: pgsql_close() -- 14:43:40.624 INFO [7523]: COREGRADE is starting... -- 14:43:40.624 INFO [7523]: Version from config: 1.0 -- 14:43:40.624 DEBUG [7523]: Connecting to database... -- 14:43:40.625 DEBUG [7523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:43:40.625 SQL [7523]: pgsql_db_connect() -- 14:43:40.628 DEBUG [7523]: Database connection successful -- 14:43:40.628 INFO [7523]: _SERVER found -- 14:43:40.628 INFO [7523]: REMOTE_ADDR = 192.168.1.13 -- 14:43:40.628 INFO [7523]: SERVER_NAME = oameye.works.coregrade.com -- 14:43:40.628 INFO [7523]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=brcpqeg44kt930aptoeg20ag2l4p3u3f -- 14:43:40.628 INFO [7523]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:43:40.628 INFO [7523]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:43:40.641 INFO [7523]: COREGRADE is stopping... -- 14:43:40.641 DEBUG [7523]: Closing database connection -- 14:43:40.641 SQL [7523]: pgsql_close() -- 14:52:12.162 INFO [7524]: COREGRADE is starting... -- 14:52:12.162 INFO [7524]: Version from config: 1.0 -- 14:52:12.162 DEBUG [7524]: Connecting to database... -- 14:52:12.163 DEBUG [7524]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:52:12.163 SQL [7524]: pgsql_db_connect() -- 14:52:12.167 DEBUG [7524]: Database connection successful -- 14:52:12.167 INFO [7524]: _SERVER found -- 14:52:12.167 INFO [7524]: REMOTE_ADDR = 192.168.1.13 -- 14:52:12.167 INFO [7524]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:52:12.167 INFO [7524]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361 -- 14:52:12.167 INFO [7524]: QUERY_STRING = -- 14:52:12.167 INFO [7524]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:52:12.213 INFO [7524]: COREGRADE is stopping... -- 14:52:12.213 DEBUG [7524]: Closing database connection -- 14:52:12.213 SQL [7524]: pgsql_close() -- 14:52:19.600 INFO [7525]: COREGRADE is starting... -- 14:52:19.600 INFO [7525]: Version from config: 1.0 -- 14:52:19.600 DEBUG [7525]: Connecting to database... -- 14:52:19.600 DEBUG [7525]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:52:19.601 SQL [7525]: pgsql_db_connect() -- 14:52:19.605 DEBUG [7525]: Database connection successful -- 14:52:19.605 INFO [7525]: _SERVER found -- 14:52:19.605 INFO [7525]: REMOTE_ADDR = 192.168.1.13 -- 14:52:19.605 INFO [7525]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:52:19.605 INFO [7525]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=j4b9enle6dh3shsk2soegmpkjn2bmqkq; _gat_gtag_UA_54829827_2=1 -- 14:52:19.605 INFO [7525]: QUERY_STRING = /auth -- 14:52:19.605 INFO [7525]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:52:19.643 INFO [7525]: COREGRADE is stopping... -- 14:52:19.643 DEBUG [7525]: Closing database connection -- 14:52:19.643 SQL [7525]: pgsql_close() -- 14:52:20.010 INFO [7525]: COREGRADE is starting... -- 14:52:20.011 INFO [7525]: Version from config: 1.0 -- 14:52:20.011 DEBUG [7525]: Connecting to database... -- 14:52:20.011 DEBUG [7525]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:52:20.011 SQL [7525]: pgsql_db_connect() -- 14:52:20.015 DEBUG [7525]: Database connection successful -- 14:52:20.016 INFO [7525]: _SERVER found -- 14:52:20.016 INFO [7525]: REMOTE_ADDR = 192.168.1.13 -- 14:52:20.016 INFO [7525]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:52:20.016 INFO [7525]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=j4b9enle6dh3shsk2soegmpkjn2bmqkq; _gat_gtag_UA_54829827_2=1 -- 14:52:20.016 INFO [7525]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:52:20.016 INFO [7525]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:52:20.028 INFO [7525]: COREGRADE is stopping... -- 14:52:20.028 DEBUG [7525]: Closing database connection -- 14:52:20.028 SQL [7525]: pgsql_close() -- 14:52:20.038 INFO [7525]: COREGRADE is starting... -- 14:52:20.039 INFO [7525]: Version from config: 1.0 -- 14:52:20.039 DEBUG [7525]: Connecting to database... -- 14:52:20.039 DEBUG [7525]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:52:20.039 SQL [7525]: pgsql_db_connect() -- 14:52:20.043 DEBUG [7525]: Database connection successful -- 14:52:20.043 INFO [7525]: _SERVER found -- 14:52:20.043 INFO [7525]: REMOTE_ADDR = 192.168.1.13 -- 14:52:20.043 INFO [7525]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:52:20.043 INFO [7525]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=j4b9enle6dh3shsk2soegmpkjn2bmqkq; _gat_gtag_UA_54829827_2=1 -- 14:52:20.043 INFO [7525]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:52:20.043 INFO [7525]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:52:20.055 INFO [7525]: COREGRADE is stopping... -- 14:52:20.055 DEBUG [7525]: Closing database connection -- 14:52:20.055 SQL [7525]: pgsql_close() -- 14:52:21.910 INFO [7525]: COREGRADE is starting... -- 14:52:21.910 INFO [7525]: Version from config: 1.0 -- 14:52:21.910 DEBUG [7525]: Connecting to database... -- 14:52:21.910 DEBUG [7525]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:52:21.910 SQL [7525]: pgsql_db_connect() -- 14:52:21.914 DEBUG [7525]: Database connection successful -- 14:52:21.914 INFO [7525]: _SERVER found -- 14:52:21.914 INFO [7525]: REMOTE_ADDR = 192.168.1.13 -- 14:52:21.914 INFO [7525]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:52:21.914 INFO [7525]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=j4b9enle6dh3shsk2soegmpkjn2bmqkq; _gat_gtag_UA_54829827_2=1 -- 14:52:21.914 INFO [7525]: QUERY_STRING = /auth -- 14:52:21.914 INFO [7525]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:52:22.582 INFO [7525]: COREGRADE is starting... -- 14:52:22.582 INFO [7525]: Version from config: 1.0 -- 14:52:22.582 DEBUG [7525]: Connecting to database... -- 14:52:22.582 DEBUG [7525]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:52:22.582 SQL [7525]: pgsql_db_connect() -- 14:52:22.586 DEBUG [7525]: Database connection successful -- 14:52:22.586 INFO [7525]: _SERVER found -- 14:52:22.586 INFO [7525]: REMOTE_ADDR = 192.168.1.13 -- 14:52:22.586 INFO [7525]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:52:22.586 INFO [7525]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=j4b9enle6dh3shsk2soegmpkjn2bmqkq; _gat_gtag_UA_54829827_2=1 -- 14:52:22.586 INFO [7525]: QUERY_STRING = /member/index -- 14:52:22.586 INFO [7525]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:52:22.622 INFO [7525]: COREGRADE is stopping... -- 14:52:22.622 DEBUG [7525]: Closing database connection -- 14:52:22.622 SQL [7525]: pgsql_close() -- 14:52:23.124 INFO [7522]: COREGRADE is starting... -- 14:52:23.125 INFO [7522]: Version from config: 1.0 -- 14:52:23.125 DEBUG [7522]: Connecting to database... -- 14:52:23.125 DEBUG [7522]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:52:23.125 SQL [7522]: pgsql_db_connect() -- 14:52:23.129 DEBUG [7522]: Database connection successful -- 14:52:23.129 INFO [7522]: _SERVER found -- 14:52:23.129 INFO [7522]: REMOTE_ADDR = 192.168.1.13 -- 14:52:23.129 INFO [7522]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:52:23.129 INFO [7522]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=j4b9enle6dh3shsk2soegmpkjn2bmqkq; _gat_gtag_UA_54829827_2=1 -- 14:52:23.129 INFO [7522]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:52:23.129 INFO [7522]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:52:23.141 INFO [7522]: COREGRADE is stopping... -- 14:52:23.141 DEBUG [7522]: Closing database connection -- 14:52:23.141 SQL [7522]: pgsql_close() -- 14:52:23.292 INFO [7522]: COREGRADE is starting... -- 14:52:23.293 INFO [7522]: Version from config: 1.0 -- 14:52:23.293 DEBUG [7522]: Connecting to database... -- 14:52:23.293 DEBUG [7522]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:52:23.293 SQL [7522]: pgsql_db_connect() -- 14:52:23.297 DEBUG [7522]: Database connection successful -- 14:52:23.297 INFO [7522]: _SERVER found -- 14:52:23.297 INFO [7522]: REMOTE_ADDR = 192.168.1.13 -- 14:52:23.297 INFO [7522]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:52:23.297 INFO [7522]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=j4b9enle6dh3shsk2soegmpkjn2bmqkq; _gat_gtag_UA_54829827_2=1 -- 14:52:23.297 INFO [7522]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:52:23.297 INFO [7522]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:52:23.309 INFO [7522]: COREGRADE is stopping... -- 14:52:23.309 DEBUG [7522]: Closing database connection -- 14:52:23.309 SQL [7522]: pgsql_close() -- 14:52:24.737 INFO [7522]: COREGRADE is starting... -- 14:52:24.738 INFO [7522]: Version from config: 1.0 -- 14:52:24.738 DEBUG [7522]: Connecting to database... -- 14:52:24.738 DEBUG [7522]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:52:24.738 SQL [7522]: pgsql_db_connect() -- 14:52:24.742 DEBUG [7522]: Database connection successful -- 14:52:24.742 INFO [7522]: _SERVER found -- 14:52:24.742 INFO [7522]: REMOTE_ADDR = 192.168.1.13 -- 14:52:24.742 INFO [7522]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:52:24.742 INFO [7522]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=j4b9enle6dh3shsk2soegmpkjn2bmqkq; _gat_gtag_UA_54829827_2=1 -- 14:52:24.742 INFO [7522]: QUERY_STRING = /member/page -- 14:52:24.742 INFO [7522]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:52:24.783 INFO [7522]: COREGRADE is stopping... -- 14:52:24.783 DEBUG [7522]: Closing database connection -- 14:52:24.783 SQL [7522]: pgsql_close() -- 14:52:25.130 INFO [7522]: COREGRADE is starting... -- 14:52:25.130 INFO [7522]: Version from config: 1.0 -- 14:52:25.130 DEBUG [7522]: Connecting to database... -- 14:52:25.130 DEBUG [7522]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:52:25.130 SQL [7522]: pgsql_db_connect() -- 14:52:25.134 DEBUG [7522]: Database connection successful -- 14:52:25.134 INFO [7522]: _SERVER found -- 14:52:25.134 INFO [7522]: REMOTE_ADDR = 192.168.1.13 -- 14:52:25.134 INFO [7522]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:52:25.134 INFO [7522]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=j4b9enle6dh3shsk2soegmpkjn2bmqkq; _gat_gtag_UA_54829827_2=1 -- 14:52:25.134 INFO [7522]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:52:25.134 INFO [7522]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:52:25.145 INFO [7522]: COREGRADE is stopping... -- 14:52:25.146 DEBUG [7522]: Closing database connection -- 14:52:25.146 SQL [7522]: pgsql_close() -- 14:52:25.227 INFO [7522]: COREGRADE is starting... -- 14:52:25.227 INFO [7522]: Version from config: 1.0 -- 14:52:25.227 DEBUG [7522]: Connecting to database... -- 14:52:25.227 DEBUG [7522]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:52:25.227 SQL [7522]: pgsql_db_connect() -- 14:52:25.231 DEBUG [7522]: Database connection successful -- 14:52:25.231 INFO [7522]: _SERVER found -- 14:52:25.231 INFO [7522]: REMOTE_ADDR = 192.168.1.13 -- 14:52:25.231 INFO [7522]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:52:25.231 INFO [7522]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=j4b9enle6dh3shsk2soegmpkjn2bmqkq; _gat_gtag_UA_54829827_2=1 -- 14:52:25.231 INFO [7522]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:52:25.231 INFO [7522]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:52:25.242 INFO [7522]: COREGRADE is stopping... -- 14:52:25.242 DEBUG [7522]: Closing database connection -- 14:52:25.242 SQL [7522]: pgsql_close() -- 14:52:53.881 INFO [7684]: COREGRADE is starting... -- 14:52:53.882 INFO [7684]: Version from config: 1.0 -- 14:52:53.882 DEBUG [7684]: Connecting to database... -- 14:52:53.882 DEBUG [7684]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:52:53.882 SQL [7684]: pgsql_db_connect() -- 14:52:53.886 DEBUG [7684]: Database connection successful -- 14:52:53.886 INFO [7684]: _SERVER found -- 14:52:53.886 INFO [7684]: REMOTE_ADDR = 192.168.1.13 -- 14:52:53.886 INFO [7684]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:52:53.886 INFO [7684]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=j4b9enle6dh3shsk2soegmpkjn2bmqkq; _gat_gtag_UA_54829827_2=1 -- 14:52:53.886 INFO [7684]: QUERY_STRING = /member/page -- 14:52:53.886 INFO [7684]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:52:53.931 INFO [7684]: COREGRADE is stopping... -- 14:52:53.931 DEBUG [7684]: Closing database connection -- 14:52:53.931 SQL [7684]: pgsql_close() -- 14:52:54.527 INFO [7684]: COREGRADE is starting... -- 14:52:54.528 INFO [7684]: Version from config: 1.0 -- 14:52:54.528 DEBUG [7684]: Connecting to database... -- 14:52:54.528 DEBUG [7684]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:52:54.528 SQL [7684]: pgsql_db_connect() -- 14:52:54.532 DEBUG [7684]: Database connection successful -- 14:52:54.532 INFO [7684]: _SERVER found -- 14:52:54.532 INFO [7684]: REMOTE_ADDR = 192.168.1.13 -- 14:52:54.532 INFO [7684]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:52:54.532 INFO [7684]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=j4b9enle6dh3shsk2soegmpkjn2bmqkq; _gat_gtag_UA_54829827_2=1 -- 14:52:54.532 INFO [7684]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:52:54.532 INFO [7684]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:52:54.543 INFO [7684]: COREGRADE is stopping... -- 14:52:54.543 DEBUG [7684]: Closing database connection -- 14:52:54.543 SQL [7684]: pgsql_close() -- 14:52:54.712 INFO [7684]: COREGRADE is starting... -- 14:52:54.712 INFO [7684]: Version from config: 1.0 -- 14:52:54.712 DEBUG [7684]: Connecting to database... -- 14:52:54.712 DEBUG [7684]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:52:54.712 SQL [7684]: pgsql_db_connect() -- 14:52:54.716 DEBUG [7684]: Database connection successful -- 14:52:54.716 INFO [7684]: _SERVER found -- 14:52:54.716 INFO [7684]: REMOTE_ADDR = 192.168.1.13 -- 14:52:54.716 INFO [7684]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:52:54.716 INFO [7684]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=j4b9enle6dh3shsk2soegmpkjn2bmqkq; _gat_gtag_UA_54829827_2=1 -- 14:52:54.716 INFO [7684]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:52:54.716 INFO [7684]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:52:54.727 INFO [7684]: COREGRADE is stopping... -- 14:52:54.727 DEBUG [7684]: Closing database connection -- 14:52:54.727 SQL [7684]: pgsql_close() -- 14:53:19.051 INFO [7692]: COREGRADE is starting... -- 14:53:19.051 INFO [7692]: Version from config: 1.0 -- 14:53:19.051 DEBUG [7692]: Connecting to database... -- 14:53:19.051 DEBUG [7692]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:53:19.051 SQL [7692]: pgsql_db_connect() -- 14:53:19.055 DEBUG [7692]: Database connection successful -- 14:53:19.056 INFO [7692]: _SERVER found -- 14:53:19.056 INFO [7692]: REMOTE_ADDR = 192.168.1.13 -- 14:53:19.056 INFO [7692]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:53:19.056 INFO [7692]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=j4b9enle6dh3shsk2soegmpkjn2bmqkq -- 14:53:19.056 INFO [7692]: QUERY_STRING = /member/configure -- 14:53:19.056 INFO [7692]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:53:19.100 INFO [7692]: COREGRADE is stopping... -- 14:53:19.100 DEBUG [7692]: Closing database connection -- 14:53:19.100 SQL [7692]: pgsql_close() -- 14:53:19.569 INFO [7692]: COREGRADE is starting... -- 14:53:19.569 INFO [7692]: Version from config: 1.0 -- 14:53:19.569 DEBUG [7692]: Connecting to database... -- 14:53:19.569 DEBUG [7692]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:53:19.569 SQL [7692]: pgsql_db_connect() -- 14:53:19.573 DEBUG [7692]: Database connection successful -- 14:53:19.573 INFO [7692]: _SERVER found -- 14:53:19.573 INFO [7692]: REMOTE_ADDR = 192.168.1.13 -- 14:53:19.573 INFO [7692]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:53:19.573 INFO [7692]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=j4b9enle6dh3shsk2soegmpkjn2bmqkq -- 14:53:19.573 INFO [7692]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:53:19.573 INFO [7692]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:53:19.585 INFO [7692]: COREGRADE is stopping... -- 14:53:19.585 DEBUG [7692]: Closing database connection -- 14:53:19.585 SQL [7692]: pgsql_close() -- 14:53:19.595 INFO [7692]: COREGRADE is starting... -- 14:53:19.596 INFO [7692]: Version from config: 1.0 -- 14:53:19.596 DEBUG [7692]: Connecting to database... -- 14:53:19.596 DEBUG [7692]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:53:19.596 SQL [7692]: pgsql_db_connect() -- 14:53:19.599 DEBUG [7692]: Database connection successful -- 14:53:19.599 INFO [7692]: _SERVER found -- 14:53:19.599 INFO [7692]: REMOTE_ADDR = 192.168.1.13 -- 14:53:19.599 INFO [7692]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:53:19.600 INFO [7692]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=j4b9enle6dh3shsk2soegmpkjn2bmqkq -- 14:53:19.600 INFO [7692]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:53:19.600 INFO [7692]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:53:19.611 INFO [7692]: COREGRADE is stopping... -- 14:53:19.611 DEBUG [7692]: Closing database connection -- 14:53:19.611 SQL [7692]: pgsql_close() -- 14:53:21.857 INFO [7692]: COREGRADE is starting... -- 14:53:21.857 INFO [7692]: Version from config: 1.0 -- 14:53:21.857 DEBUG [7692]: Connecting to database... -- 14:53:21.857 DEBUG [7692]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:53:21.857 SQL [7692]: pgsql_db_connect() -- 14:53:21.861 DEBUG [7692]: Database connection successful -- 14:53:21.861 INFO [7692]: _SERVER found -- 14:53:21.861 INFO [7692]: REMOTE_ADDR = 192.168.1.13 -- 14:53:21.861 INFO [7692]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:53:21.861 INFO [7692]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=j4b9enle6dh3shsk2soegmpkjn2bmqkq -- 14:53:21.861 INFO [7692]: QUERY_STRING = /member/page -- 14:53:21.861 INFO [7692]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:53:21.901 INFO [7692]: COREGRADE is stopping... -- 14:53:21.901 DEBUG [7692]: Closing database connection -- 14:53:21.901 SQL [7692]: pgsql_close() -- 14:54:57.615 INFO [7693]: COREGRADE is starting... -- 14:54:57.615 INFO [7693]: Version from config: 1.0 -- 14:54:57.615 DEBUG [7693]: Connecting to database... -- 14:54:57.615 DEBUG [7693]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:54:57.616 SQL [7693]: pgsql_db_connect() -- 14:54:57.620 DEBUG [7693]: Database connection successful -- 14:54:57.620 INFO [7693]: _SERVER found -- 14:54:57.620 INFO [7693]: REMOTE_ADDR = 192.168.1.13 -- 14:54:57.620 INFO [7693]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:54:57.620 INFO [7693]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=j4b9enle6dh3shsk2soegmpkjn2bmqkq -- 14:54:57.620 INFO [7693]: QUERY_STRING = /member/page -- 14:54:57.620 INFO [7693]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:54:57.665 INFO [7693]: COREGRADE is stopping... -- 14:54:57.665 DEBUG [7693]: Closing database connection -- 14:54:57.665 SQL [7693]: pgsql_close() -- 14:54:58.251 INFO [7693]: COREGRADE is starting... -- 14:54:58.252 INFO [7693]: Version from config: 1.0 -- 14:54:58.252 DEBUG [7693]: Connecting to database... -- 14:54:58.252 DEBUG [7693]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:54:58.252 SQL [7693]: pgsql_db_connect() -- 14:54:58.256 DEBUG [7693]: Database connection successful -- 14:54:58.256 INFO [7693]: _SERVER found -- 14:54:58.256 INFO [7693]: REMOTE_ADDR = 192.168.1.13 -- 14:54:58.256 INFO [7693]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:54:58.256 INFO [7693]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=j4b9enle6dh3shsk2soegmpkjn2bmqkq -- 14:54:58.256 INFO [7693]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:54:58.256 INFO [7693]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:54:58.267 INFO [7693]: COREGRADE is stopping... -- 14:54:58.267 DEBUG [7693]: Closing database connection -- 14:54:58.267 SQL [7693]: pgsql_close() -- 14:54:58.361 INFO [7693]: COREGRADE is starting... -- 14:54:58.362 INFO [7693]: Version from config: 1.0 -- 14:54:58.362 DEBUG [7693]: Connecting to database... -- 14:54:58.362 DEBUG [7693]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:54:58.362 SQL [7693]: pgsql_db_connect() -- 14:54:58.366 DEBUG [7693]: Database connection successful -- 14:54:58.366 INFO [7693]: _SERVER found -- 14:54:58.366 INFO [7693]: REMOTE_ADDR = 192.168.1.13 -- 14:54:58.366 INFO [7693]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:54:58.366 INFO [7693]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=j4b9enle6dh3shsk2soegmpkjn2bmqkq -- 14:54:58.366 INFO [7693]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:54:58.366 INFO [7693]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:54:58.377 INFO [7693]: COREGRADE is stopping... -- 14:54:58.377 DEBUG [7693]: Closing database connection -- 14:54:58.377 SQL [7693]: pgsql_close() -- 14:56:02.501 INFO [7694]: COREGRADE is starting... -- 14:56:02.502 INFO [7694]: Version from config: 1.0 -- 14:56:02.502 DEBUG [7694]: Connecting to database... -- 14:56:02.502 DEBUG [7694]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:56:02.502 SQL [7694]: pgsql_db_connect() -- 14:56:02.506 DEBUG [7694]: Database connection successful -- 14:56:02.506 INFO [7694]: _SERVER found -- 14:56:02.506 INFO [7694]: REMOTE_ADDR = 192.168.1.13 -- 14:56:02.506 INFO [7694]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:56:02.506 INFO [7694]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=j4b9enle6dh3shsk2soegmpkjn2bmqkq -- 14:56:02.506 INFO [7694]: QUERY_STRING = /member/page -- 14:56:02.506 INFO [7694]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:56:02.550 INFO [7694]: COREGRADE is stopping... -- 14:56:02.550 DEBUG [7694]: Closing database connection -- 14:56:02.550 SQL [7694]: pgsql_close() -- 14:56:02.886 INFO [7694]: COREGRADE is starting... -- 14:56:02.886 INFO [7694]: Version from config: 1.0 -- 14:56:02.886 DEBUG [7694]: Connecting to database... -- 14:56:02.886 DEBUG [7694]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:56:02.886 SQL [7694]: pgsql_db_connect() -- 14:56:02.890 DEBUG [7694]: Database connection successful -- 14:56:02.890 INFO [7694]: _SERVER found -- 14:56:02.890 INFO [7694]: REMOTE_ADDR = 192.168.1.13 -- 14:56:02.890 INFO [7694]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:56:02.890 INFO [7694]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=j4b9enle6dh3shsk2soegmpkjn2bmqkq -- 14:56:02.890 INFO [7694]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:56:02.890 INFO [7694]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:56:02.902 INFO [7694]: COREGRADE is stopping... -- 14:56:02.902 DEBUG [7694]: Closing database connection -- 14:56:02.902 SQL [7694]: pgsql_close() -- 14:56:02.995 INFO [7694]: COREGRADE is starting... -- 14:56:02.995 INFO [7694]: Version from config: 1.0 -- 14:56:02.995 DEBUG [7694]: Connecting to database... -- 14:56:02.995 DEBUG [7694]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:56:02.996 SQL [7694]: pgsql_db_connect() -- 14:56:02.999 DEBUG [7694]: Database connection successful -- 14:56:02.999 INFO [7694]: _SERVER found -- 14:56:02.999 INFO [7694]: REMOTE_ADDR = 192.168.1.13 -- 14:56:02.999 INFO [7694]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:56:02.999 INFO [7694]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=j4b9enle6dh3shsk2soegmpkjn2bmqkq -- 14:56:02.999 INFO [7694]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:56:02.999 INFO [7694]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:56:03.010 INFO [7694]: COREGRADE is stopping... -- 14:56:03.010 DEBUG [7694]: Closing database connection -- 14:56:03.010 SQL [7694]: pgsql_close() -- 14:57:00.507 INFO [7523]: COREGRADE is starting... -- 14:57:00.507 INFO [7523]: Version from config: 1.0 -- 14:57:00.507 DEBUG [7523]: Connecting to database... -- 14:57:00.507 DEBUG [7523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:57:00.507 SQL [7523]: pgsql_db_connect() -- 14:57:00.511 DEBUG [7523]: Database connection successful -- 14:57:00.511 INFO [7523]: _SERVER found -- 14:57:00.511 INFO [7523]: REMOTE_ADDR = 192.168.1.13 -- 14:57:00.511 INFO [7523]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:57:00.511 INFO [7523]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=j4b9enle6dh3shsk2soegmpkjn2bmqkq -- 14:57:00.511 INFO [7523]: QUERY_STRING = /member/page -- 14:57:00.511 INFO [7523]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:57:00.556 INFO [7523]: COREGRADE is stopping... -- 14:57:00.556 DEBUG [7523]: Closing database connection -- 14:57:00.556 SQL [7523]: pgsql_close() -- 14:57:00.904 INFO [7523]: COREGRADE is starting... -- 14:57:00.905 INFO [7523]: Version from config: 1.0 -- 14:57:00.905 DEBUG [7523]: Connecting to database... -- 14:57:00.905 DEBUG [7523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:57:00.905 SQL [7523]: pgsql_db_connect() -- 14:57:00.909 DEBUG [7523]: Database connection successful -- 14:57:00.909 INFO [7523]: _SERVER found -- 14:57:00.909 INFO [7523]: REMOTE_ADDR = 192.168.1.13 -- 14:57:00.909 INFO [7523]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:57:00.909 INFO [7523]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=j4b9enle6dh3shsk2soegmpkjn2bmqkq -- 14:57:00.909 INFO [7523]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:57:00.909 INFO [7523]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:57:00.920 INFO [7523]: COREGRADE is stopping... -- 14:57:00.920 DEBUG [7523]: Closing database connection -- 14:57:00.920 SQL [7523]: pgsql_close() -- 14:57:01.019 INFO [7523]: COREGRADE is starting... -- 14:57:01.019 INFO [7523]: Version from config: 1.0 -- 14:57:01.019 DEBUG [7523]: Connecting to database... -- 14:57:01.019 DEBUG [7523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:57:01.019 SQL [7523]: pgsql_db_connect() -- 14:57:01.023 DEBUG [7523]: Database connection successful -- 14:57:01.023 INFO [7523]: _SERVER found -- 14:57:01.023 INFO [7523]: REMOTE_ADDR = 192.168.1.13 -- 14:57:01.023 INFO [7523]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:57:01.023 INFO [7523]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=j4b9enle6dh3shsk2soegmpkjn2bmqkq -- 14:57:01.023 INFO [7523]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:57:01.023 INFO [7523]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:57:01.034 INFO [7523]: COREGRADE is stopping... -- 14:57:01.034 DEBUG [7523]: Closing database connection -- 14:57:01.034 SQL [7523]: pgsql_close() -- 14:57:31.978 INFO [7525]: COREGRADE is starting... -- 14:57:31.978 INFO [7525]: Version from config: 1.0 -- 14:57:31.978 DEBUG [7525]: Connecting to database... -- 14:57:31.978 DEBUG [7525]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:57:31.979 SQL [7525]: pgsql_db_connect() -- 14:57:31.983 DEBUG [7525]: Database connection successful -- 14:57:31.983 INFO [7525]: _SERVER found -- 14:57:31.983 INFO [7525]: REMOTE_ADDR = 192.168.1.13 -- 14:57:31.983 INFO [7525]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:57:31.983 INFO [7525]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=j4b9enle6dh3shsk2soegmpkjn2bmqkq -- 14:57:31.983 INFO [7525]: QUERY_STRING = /member -- 14:57:31.983 INFO [7525]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:57:32.020 INFO [7525]: COREGRADE is stopping... -- 14:57:32.020 DEBUG [7525]: Closing database connection -- 14:57:32.020 SQL [7525]: pgsql_close() -- 14:57:32.483 INFO [7525]: COREGRADE is starting... -- 14:57:32.483 INFO [7525]: Version from config: 1.0 -- 14:57:32.483 DEBUG [7525]: Connecting to database... -- 14:57:32.483 DEBUG [7525]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:57:32.484 SQL [7525]: pgsql_db_connect() -- 14:57:32.488 DEBUG [7525]: Database connection successful -- 14:57:32.488 INFO [7525]: _SERVER found -- 14:57:32.488 INFO [7525]: REMOTE_ADDR = 192.168.1.13 -- 14:57:32.488 INFO [7525]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:57:32.488 INFO [7525]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 14:57:32.488 INFO [7525]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:57:32.488 INFO [7525]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:57:32.499 INFO [7525]: COREGRADE is stopping... -- 14:57:32.499 DEBUG [7525]: Closing database connection -- 14:57:32.499 SQL [7525]: pgsql_close() -- 14:57:32.514 INFO [7526]: COREGRADE is starting... -- 14:57:32.515 INFO [7526]: Version from config: 1.0 -- 14:57:32.515 DEBUG [7526]: Connecting to database... -- 14:57:32.515 DEBUG [7526]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:57:32.515 SQL [7526]: pgsql_db_connect() -- 14:57:32.519 DEBUG [7526]: Database connection successful -- 14:57:32.519 INFO [7526]: _SERVER found -- 14:57:32.519 INFO [7526]: REMOTE_ADDR = 192.168.1.13 -- 14:57:32.519 INFO [7526]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:57:32.519 INFO [7526]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 14:57:32.519 INFO [7526]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:57:32.519 INFO [7526]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:57:32.533 INFO [7526]: COREGRADE is stopping... -- 14:57:32.533 DEBUG [7526]: Closing database connection -- 14:57:32.533 SQL [7526]: pgsql_close() -- 14:57:33.768 INFO [7526]: COREGRADE is starting... -- 14:57:33.768 INFO [7526]: Version from config: 1.0 -- 14:57:33.768 DEBUG [7526]: Connecting to database... -- 14:57:33.768 DEBUG [7526]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:57:33.768 SQL [7526]: pgsql_db_connect() -- 14:57:33.772 DEBUG [7526]: Database connection successful -- 14:57:33.772 INFO [7526]: _SERVER found -- 14:57:33.772 INFO [7526]: REMOTE_ADDR = 192.168.1.13 -- 14:57:33.772 INFO [7526]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:57:33.772 INFO [7526]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 14:57:33.772 INFO [7526]: QUERY_STRING = /member/page -- 14:57:33.772 INFO [7526]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:57:33.814 INFO [7526]: COREGRADE is stopping... -- 14:57:33.814 DEBUG [7526]: Closing database connection -- 14:57:33.814 SQL [7526]: pgsql_close() -- 14:57:34.101 INFO [7526]: COREGRADE is starting... -- 14:57:34.101 INFO [7526]: Version from config: 1.0 -- 14:57:34.101 DEBUG [7526]: Connecting to database... -- 14:57:34.101 DEBUG [7526]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:57:34.102 SQL [7526]: pgsql_db_connect() -- 14:57:34.106 DEBUG [7526]: Database connection successful -- 14:57:34.106 INFO [7526]: _SERVER found -- 14:57:34.106 INFO [7526]: REMOTE_ADDR = 192.168.1.13 -- 14:57:34.106 INFO [7526]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:57:34.106 INFO [7526]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 14:57:34.106 INFO [7526]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:57:34.106 INFO [7526]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:57:34.117 INFO [7526]: COREGRADE is stopping... -- 14:57:34.117 DEBUG [7526]: Closing database connection -- 14:57:34.117 SQL [7526]: pgsql_close() -- 14:57:34.215 INFO [7525]: COREGRADE is starting... -- 14:57:34.215 INFO [7525]: Version from config: 1.0 -- 14:57:34.215 DEBUG [7525]: Connecting to database... -- 14:57:34.215 DEBUG [7525]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:57:34.216 SQL [7525]: pgsql_db_connect() -- 14:57:34.219 DEBUG [7525]: Database connection successful -- 14:57:34.219 INFO [7525]: _SERVER found -- 14:57:34.219 INFO [7525]: REMOTE_ADDR = 192.168.1.13 -- 14:57:34.219 INFO [7525]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:57:34.219 INFO [7525]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 14:57:34.219 INFO [7525]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:57:34.219 INFO [7525]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:57:34.230 INFO [7525]: COREGRADE is stopping... -- 14:57:34.230 DEBUG [7525]: Closing database connection -- 14:57:34.230 SQL [7525]: pgsql_close() -- 14:57:35.420 INFO [7525]: COREGRADE is starting... -- 14:57:35.421 INFO [7525]: Version from config: 1.0 -- 14:57:35.421 DEBUG [7525]: Connecting to database... -- 14:57:35.421 DEBUG [7525]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:57:35.421 SQL [7525]: pgsql_db_connect() -- 14:57:35.425 DEBUG [7525]: Database connection successful -- 14:57:35.425 INFO [7525]: _SERVER found -- 14:57:35.425 INFO [7525]: REMOTE_ADDR = 192.168.1.13 -- 14:57:35.425 INFO [7525]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:57:35.425 INFO [7525]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 14:57:35.425 INFO [7525]: QUERY_STRING = /member -- 14:57:35.425 INFO [7525]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:57:35.461 INFO [7525]: COREGRADE is stopping... -- 14:57:35.461 DEBUG [7525]: Closing database connection -- 14:57:35.461 SQL [7525]: pgsql_close() -- 14:57:35.724 INFO [7525]: COREGRADE is starting... -- 14:57:35.724 INFO [7525]: Version from config: 1.0 -- 14:57:35.724 DEBUG [7525]: Connecting to database... -- 14:57:35.725 DEBUG [7525]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:57:35.725 SQL [7525]: pgsql_db_connect() -- 14:57:35.738 INFO [7526]: COREGRADE is starting... -- 14:57:35.739 INFO [7526]: Version from config: 1.0 -- 14:57:35.739 DEBUG [7526]: Connecting to database... -- 14:57:35.739 DEBUG [7526]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:57:35.739 SQL [7526]: pgsql_db_connect() -- 14:57:35.728 DEBUG [7525]: Database connection successful -- 14:57:35.729 INFO [7525]: _SERVER found -- 14:57:35.729 INFO [7525]: REMOTE_ADDR = 192.168.1.13 -- 14:57:35.729 INFO [7525]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:57:35.729 INFO [7525]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 14:57:35.729 INFO [7525]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:57:35.729 INFO [7525]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:57:35.740 INFO [7525]: COREGRADE is stopping... -- 14:57:35.740 DEBUG [7525]: Closing database connection -- 14:57:35.740 SQL [7525]: pgsql_close() -- 14:57:35.743 DEBUG [7526]: Database connection successful -- 14:57:35.743 INFO [7526]: _SERVER found -- 14:57:35.743 INFO [7526]: REMOTE_ADDR = 192.168.1.13 -- 14:57:35.743 INFO [7526]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:57:35.743 INFO [7526]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 14:57:35.743 INFO [7526]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:57:35.743 INFO [7526]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:57:35.754 INFO [7526]: COREGRADE is stopping... -- 14:57:35.754 DEBUG [7526]: Closing database connection -- 14:57:35.754 SQL [7526]: pgsql_close() -- 14:58:15.568 INFO [7524]: COREGRADE is starting... -- 14:58:15.568 INFO [7524]: Version from config: 1.0 -- 14:58:15.568 DEBUG [7524]: Connecting to database... -- 14:58:15.568 DEBUG [7524]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:58:15.568 SQL [7524]: pgsql_db_connect() -- 14:58:15.572 DEBUG [7524]: Database connection successful -- 14:58:15.572 INFO [7524]: _SERVER found -- 14:58:15.572 INFO [7524]: REMOTE_ADDR = 192.168.1.13 -- 14:58:15.572 INFO [7524]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:58:15.572 INFO [7524]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 14:58:15.572 INFO [7524]: QUERY_STRING = /member/page -- 14:58:15.572 INFO [7524]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:58:15.614 INFO [7524]: COREGRADE is stopping... -- 14:58:15.614 DEBUG [7524]: Closing database connection -- 14:58:15.614 SQL [7524]: pgsql_close() -- 14:58:15.973 INFO [7524]: COREGRADE is starting... -- 14:58:15.973 INFO [7524]: Version from config: 1.0 -- 14:58:15.973 DEBUG [7524]: Connecting to database... -- 14:58:15.973 DEBUG [7524]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:58:15.973 SQL [7524]: pgsql_db_connect() -- 14:58:15.977 DEBUG [7524]: Database connection successful -- 14:58:15.977 INFO [7524]: _SERVER found -- 14:58:15.977 INFO [7524]: REMOTE_ADDR = 192.168.1.13 -- 14:58:15.977 INFO [7524]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:58:15.977 INFO [7524]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 14:58:15.977 INFO [7524]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:58:15.977 INFO [7524]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:58:15.989 INFO [7524]: COREGRADE is stopping... -- 14:58:15.989 DEBUG [7524]: Closing database connection -- 14:58:15.989 SQL [7524]: pgsql_close() -- 14:58:16.111 INFO [7524]: COREGRADE is starting... -- 14:58:16.111 INFO [7524]: Version from config: 1.0 -- 14:58:16.111 DEBUG [7524]: Connecting to database... -- 14:58:16.111 DEBUG [7524]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:58:16.111 SQL [7524]: pgsql_db_connect() -- 14:58:16.115 DEBUG [7524]: Database connection successful -- 14:58:16.115 INFO [7524]: _SERVER found -- 14:58:16.115 INFO [7524]: REMOTE_ADDR = 192.168.1.13 -- 14:58:16.115 INFO [7524]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:58:16.115 INFO [7524]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 14:58:16.115 INFO [7524]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:58:16.115 INFO [7524]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:58:16.127 INFO [7524]: COREGRADE is stopping... -- 14:58:16.127 DEBUG [7524]: Closing database connection -- 14:58:16.127 SQL [7524]: pgsql_close() -- 14:58:22.203 INFO [7637]: COREGRADE is starting... -- 14:58:22.203 INFO [7637]: Version from config: 1.0 -- 14:58:22.203 DEBUG [7637]: Connecting to database... -- 14:58:22.203 DEBUG [7637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:58:22.203 SQL [7637]: pgsql_db_connect() -- 14:58:22.207 DEBUG [7637]: Database connection successful -- 14:58:22.207 INFO [7637]: _SERVER found -- 14:58:22.207 INFO [7637]: REMOTE_ADDR = 192.168.1.13 -- 14:58:22.207 INFO [7637]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:58:22.207 INFO [7637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 14:58:22.207 INFO [7637]: QUERY_STRING = /member/configure -- 14:58:22.207 INFO [7637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:58:22.251 INFO [7637]: COREGRADE is stopping... -- 14:58:22.251 DEBUG [7637]: Closing database connection -- 14:58:22.251 SQL [7637]: pgsql_close() -- 14:58:22.599 INFO [7637]: COREGRADE is starting... -- 14:58:22.599 INFO [7637]: Version from config: 1.0 -- 14:58:22.599 DEBUG [7637]: Connecting to database... -- 14:58:22.599 DEBUG [7637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:58:22.599 SQL [7637]: pgsql_db_connect() -- 14:58:22.603 DEBUG [7637]: Database connection successful -- 14:58:22.603 INFO [7637]: _SERVER found -- 14:58:22.603 INFO [7637]: REMOTE_ADDR = 192.168.1.13 -- 14:58:22.603 INFO [7637]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:58:22.603 INFO [7637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 14:58:22.603 INFO [7637]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:58:22.603 INFO [7637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:58:22.615 INFO [7637]: COREGRADE is stopping... -- 14:58:22.616 DEBUG [7637]: Closing database connection -- 14:58:22.616 SQL [7637]: pgsql_close() -- 14:58:22.622 INFO [7522]: COREGRADE is starting... -- 14:58:22.622 INFO [7522]: Version from config: 1.0 -- 14:58:22.622 DEBUG [7522]: Connecting to database... -- 14:58:22.622 DEBUG [7522]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:58:22.622 SQL [7522]: pgsql_db_connect() -- 14:58:22.626 DEBUG [7522]: Database connection successful -- 14:58:22.626 INFO [7522]: _SERVER found -- 14:58:22.626 INFO [7522]: REMOTE_ADDR = 192.168.1.13 -- 14:58:22.626 INFO [7522]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:58:22.626 INFO [7522]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 14:58:22.626 INFO [7522]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:58:22.626 INFO [7522]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:58:22.638 INFO [7522]: COREGRADE is stopping... -- 14:58:22.638 DEBUG [7522]: Closing database connection -- 14:58:22.638 SQL [7522]: pgsql_close() -- 14:58:59.165 INFO [7684]: COREGRADE is starting... -- 14:58:59.165 INFO [7684]: Version from config: 1.0 -- 14:58:59.165 DEBUG [7684]: Connecting to database... -- 14:58:59.165 DEBUG [7684]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:58:59.165 SQL [7684]: pgsql_db_connect() -- 14:58:59.169 DEBUG [7684]: Database connection successful -- 14:58:59.169 INFO [7684]: _SERVER found -- 14:58:59.169 INFO [7684]: REMOTE_ADDR = 192.168.1.13 -- 14:58:59.169 INFO [7684]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:58:59.169 INFO [7684]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 14:58:59.169 INFO [7684]: QUERY_STRING = /member/configure -- 14:58:59.169 INFO [7684]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:58:59.207 INFO [7684]: COREGRADE is stopping... -- 14:58:59.207 DEBUG [7684]: Closing database connection -- 14:58:59.207 SQL [7684]: pgsql_close() -- 14:58:59.797 INFO [7684]: COREGRADE is starting... -- 14:58:59.798 INFO [7684]: Version from config: 1.0 -- 14:58:59.798 DEBUG [7684]: Connecting to database... -- 14:58:59.798 DEBUG [7684]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:58:59.798 SQL [7684]: pgsql_db_connect() -- 14:58:59.802 DEBUG [7684]: Database connection successful -- 14:58:59.802 INFO [7684]: _SERVER found -- 14:58:59.802 INFO [7684]: REMOTE_ADDR = 192.168.1.13 -- 14:58:59.802 INFO [7684]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:58:59.802 INFO [7684]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 14:58:59.802 INFO [7684]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:58:59.802 INFO [7684]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:58:59.813 INFO [7684]: COREGRADE is stopping... -- 14:58:59.813 DEBUG [7684]: Closing database connection -- 14:58:59.813 SQL [7684]: pgsql_close() -- 14:58:59.844 INFO [7684]: COREGRADE is starting... -- 14:58:59.845 INFO [7684]: Version from config: 1.0 -- 14:58:59.845 DEBUG [7684]: Connecting to database... -- 14:58:59.845 DEBUG [7684]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:58:59.845 SQL [7684]: pgsql_db_connect() -- 14:58:59.849 DEBUG [7684]: Database connection successful -- 14:58:59.849 INFO [7684]: _SERVER found -- 14:58:59.849 INFO [7684]: REMOTE_ADDR = 192.168.1.13 -- 14:58:59.849 INFO [7684]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:58:59.849 INFO [7684]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 14:58:59.849 INFO [7684]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:58:59.849 INFO [7684]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:58:59.859 INFO [7684]: COREGRADE is stopping... -- 14:58:59.860 DEBUG [7684]: Closing database connection -- 14:58:59.860 SQL [7684]: pgsql_close() -- 14:59:02.907 INFO [7684]: COREGRADE is starting... -- 14:59:02.908 INFO [7684]: Version from config: 1.0 -- 14:59:02.908 DEBUG [7684]: Connecting to database... -- 14:59:02.908 DEBUG [7684]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:59:02.908 SQL [7684]: pgsql_db_connect() -- 14:59:02.912 DEBUG [7684]: Database connection successful -- 14:59:02.912 INFO [7684]: _SERVER found -- 14:59:02.912 INFO [7684]: REMOTE_ADDR = 192.168.1.13 -- 14:59:02.912 INFO [7684]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:59:02.912 INFO [7684]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 14:59:02.912 INFO [7684]: QUERY_STRING = /member/mycalendar -- 14:59:02.912 INFO [7684]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:59:02.944 INFO [7684]: COREGRADE is stopping... -- 14:59:02.944 DEBUG [7684]: Closing database connection -- 14:59:02.944 SQL [7684]: pgsql_close() -- 14:59:03.299 INFO [7684]: COREGRADE is starting... -- 14:59:03.299 INFO [7684]: Version from config: 1.0 -- 14:59:03.299 DEBUG [7684]: Connecting to database... -- 14:59:03.299 DEBUG [7684]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:59:03.299 SQL [7684]: pgsql_db_connect() -- 14:59:03.303 DEBUG [7684]: Database connection successful -- 14:59:03.303 INFO [7684]: _SERVER found -- 14:59:03.303 INFO [7684]: REMOTE_ADDR = 192.168.1.13 -- 14:59:03.303 INFO [7684]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:59:03.303 INFO [7684]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 14:59:03.303 INFO [7684]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:59:03.303 INFO [7684]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:59:03.314 INFO [7684]: COREGRADE is stopping... -- 14:59:03.314 DEBUG [7684]: Closing database connection -- 14:59:03.314 SQL [7684]: pgsql_close() -- 14:59:03.323 INFO [7684]: COREGRADE is starting... -- 14:59:03.323 INFO [7684]: Version from config: 1.0 -- 14:59:03.323 DEBUG [7684]: Connecting to database... -- 14:59:03.323 DEBUG [7684]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:59:03.323 SQL [7684]: pgsql_db_connect() -- 14:59:03.327 DEBUG [7684]: Database connection successful -- 14:59:03.327 INFO [7684]: _SERVER found -- 14:59:03.327 INFO [7684]: REMOTE_ADDR = 192.168.1.13 -- 14:59:03.327 INFO [7684]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:59:03.327 INFO [7684]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 14:59:03.327 INFO [7684]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:59:03.327 INFO [7684]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:59:03.338 INFO [7684]: COREGRADE is stopping... -- 14:59:03.339 DEBUG [7684]: Closing database connection -- 14:59:03.339 SQL [7684]: pgsql_close() -- 14:59:09.427 INFO [7692]: COREGRADE is starting... -- 14:59:09.428 INFO [7692]: Version from config: 1.0 -- 14:59:09.428 DEBUG [7692]: Connecting to database... -- 14:59:09.428 DEBUG [7692]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:59:09.428 SQL [7692]: pgsql_db_connect() -- 14:59:09.432 DEBUG [7692]: Database connection successful -- 14:59:09.432 INFO [7692]: _SERVER found -- 14:59:09.432 INFO [7692]: REMOTE_ADDR = 192.168.1.13 -- 14:59:09.432 INFO [7692]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:59:09.432 INFO [7692]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 14:59:09.432 INFO [7692]: QUERY_STRING = /member/myprofile -- 14:59:09.432 INFO [7692]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:59:09.466 INFO [7692]: COREGRADE is stopping... -- 14:59:09.466 DEBUG [7692]: Closing database connection -- 14:59:09.466 SQL [7692]: pgsql_close() -- 14:59:10.073 INFO [7692]: COREGRADE is starting... -- 14:59:10.074 INFO [7692]: Version from config: 1.0 -- 14:59:10.074 DEBUG [7692]: Connecting to database... -- 14:59:10.074 DEBUG [7692]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:59:10.074 SQL [7692]: pgsql_db_connect() -- 14:59:10.078 DEBUG [7692]: Database connection successful -- 14:59:10.078 INFO [7692]: _SERVER found -- 14:59:10.078 INFO [7692]: REMOTE_ADDR = 192.168.1.13 -- 14:59:10.078 INFO [7692]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:59:10.078 INFO [7692]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 14:59:10.078 INFO [7692]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:59:10.078 INFO [7692]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:59:10.089 INFO [7692]: COREGRADE is stopping... -- 14:59:10.089 DEBUG [7692]: Closing database connection -- 14:59:10.089 SQL [7692]: pgsql_close() -- 14:59:10.127 INFO [7692]: COREGRADE is starting... -- 14:59:10.127 INFO [7692]: Version from config: 1.0 -- 14:59:10.127 DEBUG [7692]: Connecting to database... -- 14:59:10.127 DEBUG [7692]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:59:10.127 SQL [7692]: pgsql_db_connect() -- 14:59:10.131 DEBUG [7692]: Database connection successful -- 14:59:10.131 INFO [7692]: _SERVER found -- 14:59:10.131 INFO [7692]: REMOTE_ADDR = 192.168.1.13 -- 14:59:10.131 INFO [7692]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:59:10.131 INFO [7692]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 14:59:10.131 INFO [7692]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:59:10.131 INFO [7692]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:59:10.142 INFO [7692]: COREGRADE is stopping... -- 14:59:10.142 DEBUG [7692]: Closing database connection -- 14:59:10.142 SQL [7692]: pgsql_close() -- 14:59:17.840 INFO [7693]: COREGRADE is starting... -- 14:59:17.840 INFO [7693]: Version from config: 1.0 -- 14:59:17.840 DEBUG [7693]: Connecting to database... -- 14:59:17.840 DEBUG [7693]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:59:17.840 SQL [7693]: pgsql_db_connect() -- 14:59:17.844 DEBUG [7693]: Database connection successful -- 14:59:17.844 INFO [7693]: _SERVER found -- 14:59:17.844 INFO [7693]: REMOTE_ADDR = 192.168.1.13 -- 14:59:17.844 INFO [7693]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:59:17.844 INFO [7693]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 14:59:17.844 INFO [7693]: QUERY_STRING = /member/configure -- 14:59:17.844 INFO [7693]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:59:17.881 INFO [7693]: COREGRADE is stopping... -- 14:59:17.881 DEBUG [7693]: Closing database connection -- 14:59:17.881 SQL [7693]: pgsql_close() -- 14:59:18.310 INFO [7693]: COREGRADE is starting... -- 14:59:18.310 INFO [7693]: Version from config: 1.0 -- 14:59:18.310 DEBUG [7693]: Connecting to database... -- 14:59:18.310 DEBUG [7693]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:59:18.310 SQL [7693]: pgsql_db_connect() -- 14:59:18.314 DEBUG [7693]: Database connection successful -- 14:59:18.314 INFO [7693]: _SERVER found -- 14:59:18.314 INFO [7693]: REMOTE_ADDR = 192.168.1.13 -- 14:59:18.314 INFO [7693]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:59:18.314 INFO [7693]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 14:59:18.314 INFO [7693]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:59:18.314 INFO [7693]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:59:18.325 INFO [7693]: COREGRADE is stopping... -- 14:59:18.325 DEBUG [7693]: Closing database connection -- 14:59:18.325 SQL [7693]: pgsql_close() -- 14:59:18.336 INFO [7693]: COREGRADE is starting... -- 14:59:18.337 INFO [7693]: Version from config: 1.0 -- 14:59:18.337 DEBUG [7693]: Connecting to database... -- 14:59:18.337 DEBUG [7693]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:59:18.337 SQL [7693]: pgsql_db_connect() -- 14:59:18.340 DEBUG [7693]: Database connection successful -- 14:59:18.340 INFO [7693]: _SERVER found -- 14:59:18.340 INFO [7693]: REMOTE_ADDR = 192.168.1.13 -- 14:59:18.340 INFO [7693]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:59:18.340 INFO [7693]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 14:59:18.340 INFO [7693]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:59:18.340 INFO [7693]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:59:18.351 INFO [7693]: COREGRADE is stopping... -- 14:59:18.351 DEBUG [7693]: Closing database connection -- 14:59:18.351 SQL [7693]: pgsql_close() -- 14:59:40.709 INFO [7694]: COREGRADE is starting... -- 14:59:40.709 INFO [7694]: Version from config: 1.0 -- 14:59:40.709 DEBUG [7694]: Connecting to database... -- 14:59:40.709 DEBUG [7694]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:59:40.709 SQL [7694]: pgsql_db_connect() -- 14:59:40.713 DEBUG [7694]: Database connection successful -- 14:59:40.713 INFO [7694]: _SERVER found -- 14:59:40.713 INFO [7694]: REMOTE_ADDR = 192.168.1.13 -- 14:59:40.713 INFO [7694]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:59:40.713 INFO [7694]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 14:59:40.713 INFO [7694]: QUERY_STRING = /auth/logout -- 14:59:40.713 INFO [7694]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:59:40.745 INFO [7694]: COREGRADE is stopping... -- 14:59:40.745 DEBUG [7694]: Closing database connection -- 14:59:40.745 SQL [7694]: pgsql_close() -- 14:59:41.103 INFO [7694]: COREGRADE is starting... -- 14:59:41.103 INFO [7694]: Version from config: 1.0 -- 14:59:41.103 DEBUG [7694]: Connecting to database... -- 14:59:41.103 DEBUG [7694]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:59:41.104 SQL [7694]: pgsql_db_connect() -- 14:59:41.107 DEBUG [7694]: Database connection successful -- 14:59:41.107 INFO [7694]: _SERVER found -- 14:59:41.107 INFO [7694]: REMOTE_ADDR = 192.168.1.13 -- 14:59:41.107 INFO [7694]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:59:41.107 INFO [7694]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 14:59:41.107 INFO [7694]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:59:41.107 INFO [7694]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:59:41.119 INFO [7694]: COREGRADE is stopping... -- 14:59:41.119 DEBUG [7694]: Closing database connection -- 14:59:41.119 SQL [7694]: pgsql_close() -- 14:59:41.119 INFO [7523]: COREGRADE is starting... -- 14:59:41.119 INFO [7523]: Version from config: 1.0 -- 14:59:41.119 DEBUG [7523]: Connecting to database... -- 14:59:41.119 DEBUG [7523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:59:41.119 SQL [7523]: pgsql_db_connect() -- 14:59:41.123 DEBUG [7523]: Database connection successful -- 14:59:41.123 INFO [7523]: _SERVER found -- 14:59:41.123 INFO [7523]: REMOTE_ADDR = 192.168.1.13 -- 14:59:41.123 INFO [7523]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:59:41.123 INFO [7523]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 14:59:41.123 INFO [7523]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:59:41.123 INFO [7523]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:59:41.134 INFO [7523]: COREGRADE is stopping... -- 14:59:41.135 DEBUG [7523]: Closing database connection -- 14:59:41.135 SQL [7523]: pgsql_close() -- 14:59:43.657 INFO [7523]: COREGRADE is starting... -- 14:59:43.657 INFO [7523]: Version from config: 1.0 -- 14:59:43.657 DEBUG [7523]: Connecting to database... -- 14:59:43.657 DEBUG [7523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:59:43.657 SQL [7523]: pgsql_db_connect() -- 14:59:43.661 DEBUG [7523]: Database connection successful -- 14:59:43.661 INFO [7523]: _SERVER found -- 14:59:43.661 INFO [7523]: REMOTE_ADDR = 192.168.1.13 -- 14:59:43.661 INFO [7523]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:59:43.661 INFO [7523]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 14:59:43.661 INFO [7523]: QUERY_STRING = /auth -- 14:59:43.661 INFO [7523]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:59:43.772 INFO [7523]: COREGRADE is starting... -- 14:59:43.773 INFO [7523]: Version from config: 1.0 -- 14:59:43.773 DEBUG [7523]: Connecting to database... -- 14:59:43.773 DEBUG [7523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:59:43.773 SQL [7523]: pgsql_db_connect() -- 14:59:43.776 DEBUG [7523]: Database connection successful -- 14:59:43.776 INFO [7523]: _SERVER found -- 14:59:43.776 INFO [7523]: REMOTE_ADDR = 192.168.1.13 -- 14:59:43.776 INFO [7523]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:59:43.776 INFO [7523]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 14:59:43.776 INFO [7523]: QUERY_STRING = /member/index -- 14:59:43.776 INFO [7523]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:59:43.812 INFO [7523]: COREGRADE is stopping... -- 14:59:43.812 DEBUG [7523]: Closing database connection -- 14:59:43.812 SQL [7523]: pgsql_close() -- 14:59:44.197 INFO [7523]: COREGRADE is starting... -- 14:59:44.197 INFO [7523]: Version from config: 1.0 -- 14:59:44.197 DEBUG [7523]: Connecting to database... -- 14:59:44.197 DEBUG [7523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:59:44.197 SQL [7523]: pgsql_db_connect() -- 14:59:44.201 DEBUG [7523]: Database connection successful -- 14:59:44.201 INFO [7523]: _SERVER found -- 14:59:44.201 INFO [7523]: REMOTE_ADDR = 192.168.1.13 -- 14:59:44.201 INFO [7523]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:59:44.201 INFO [7523]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 14:59:44.201 INFO [7523]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:59:44.201 INFO [7523]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:59:44.212 INFO [7523]: COREGRADE is stopping... -- 14:59:44.212 DEBUG [7523]: Closing database connection -- 14:59:44.212 SQL [7523]: pgsql_close() -- 14:59:44.220 INFO [7523]: COREGRADE is starting... -- 14:59:44.220 INFO [7523]: Version from config: 1.0 -- 14:59:44.220 DEBUG [7523]: Connecting to database... -- 14:59:44.220 DEBUG [7523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:59:44.221 SQL [7523]: pgsql_db_connect() -- 14:59:44.224 DEBUG [7523]: Database connection successful -- 14:59:44.224 INFO [7523]: _SERVER found -- 14:59:44.224 INFO [7523]: REMOTE_ADDR = 192.168.1.13 -- 14:59:44.224 INFO [7523]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:59:44.224 INFO [7523]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 14:59:44.224 INFO [7523]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:59:44.224 INFO [7523]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:59:44.235 INFO [7523]: COREGRADE is stopping... -- 14:59:44.235 DEBUG [7523]: Closing database connection -- 14:59:44.235 SQL [7523]: pgsql_close() -- 14:59:45.502 INFO [7523]: COREGRADE is starting... -- 14:59:45.502 INFO [7523]: Version from config: 1.0 -- 14:59:45.502 DEBUG [7523]: Connecting to database... -- 14:59:45.502 DEBUG [7523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:59:45.502 SQL [7523]: pgsql_db_connect() -- 14:59:45.506 DEBUG [7523]: Database connection successful -- 14:59:45.506 INFO [7523]: _SERVER found -- 14:59:45.506 INFO [7523]: REMOTE_ADDR = 192.168.1.13 -- 14:59:45.506 INFO [7523]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:59:45.506 INFO [7523]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 14:59:45.506 INFO [7523]: QUERY_STRING = /member/page -- 14:59:45.506 INFO [7523]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:59:45.543 INFO [7523]: COREGRADE is stopping... -- 14:59:45.543 DEBUG [7523]: Closing database connection -- 14:59:45.543 SQL [7523]: pgsql_close() -- 14:59:45.701 INFO [7523]: COREGRADE is starting... -- 14:59:45.702 INFO [7523]: Version from config: 1.0 -- 14:59:45.702 DEBUG [7523]: Connecting to database... -- 14:59:45.702 DEBUG [7523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:59:45.702 SQL [7523]: pgsql_db_connect() -- 14:59:45.706 DEBUG [7523]: Database connection successful -- 14:59:45.706 INFO [7523]: _SERVER found -- 14:59:45.706 INFO [7523]: REMOTE_ADDR = 192.168.1.13 -- 14:59:45.706 INFO [7523]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:59:45.706 INFO [7523]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 14:59:45.706 INFO [7523]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:59:45.706 INFO [7523]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:59:45.717 INFO [7523]: COREGRADE is stopping... -- 14:59:45.717 DEBUG [7523]: Closing database connection -- 14:59:45.717 SQL [7523]: pgsql_close() -- 14:59:45.786 INFO [7523]: COREGRADE is starting... -- 14:59:45.786 INFO [7523]: Version from config: 1.0 -- 14:59:45.786 DEBUG [7523]: Connecting to database... -- 14:59:45.786 DEBUG [7523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:59:45.786 SQL [7523]: pgsql_db_connect() -- 14:59:45.790 DEBUG [7523]: Database connection successful -- 14:59:45.790 INFO [7523]: _SERVER found -- 14:59:45.790 INFO [7523]: REMOTE_ADDR = 192.168.1.13 -- 14:59:45.790 INFO [7523]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:59:45.790 INFO [7523]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 14:59:45.790 INFO [7523]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:59:45.790 INFO [7523]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:59:45.801 INFO [7523]: COREGRADE is stopping... -- 14:59:45.801 DEBUG [7523]: Closing database connection -- 14:59:45.801 SQL [7523]: pgsql_close() -- 15:00:14.630 INFO [7525]: COREGRADE is starting... -- 15:00:14.630 INFO [7525]: Version from config: 1.0 -- 15:00:14.630 DEBUG [7525]: Connecting to database... -- 15:00:14.630 DEBUG [7525]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:00:14.630 SQL [7525]: pgsql_db_connect() -- 15:00:14.634 DEBUG [7525]: Database connection successful -- 15:00:14.634 INFO [7525]: _SERVER found -- 15:00:14.634 INFO [7525]: REMOTE_ADDR = 192.168.1.13 -- 15:00:14.634 INFO [7525]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:00:14.634 INFO [7525]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 15:00:14.634 INFO [7525]: QUERY_STRING = /member/configure -- 15:00:14.634 INFO [7525]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:00:14.672 INFO [7525]: COREGRADE is stopping... -- 15:00:14.672 DEBUG [7525]: Closing database connection -- 15:00:14.672 SQL [7525]: pgsql_close() -- 15:00:15.186 INFO [7525]: COREGRADE is starting... -- 15:00:15.186 INFO [7525]: Version from config: 1.0 -- 15:00:15.186 DEBUG [7525]: Connecting to database... -- 15:00:15.186 DEBUG [7525]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:00:15.186 SQL [7525]: pgsql_db_connect() -- 15:00:15.190 DEBUG [7525]: Database connection successful -- 15:00:15.190 INFO [7525]: _SERVER found -- 15:00:15.190 INFO [7525]: REMOTE_ADDR = 192.168.1.13 -- 15:00:15.190 INFO [7525]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:00:15.190 INFO [7525]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 15:00:15.190 INFO [7525]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:00:15.190 INFO [7525]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:00:15.201 INFO [7525]: COREGRADE is stopping... -- 15:00:15.202 DEBUG [7525]: Closing database connection -- 15:00:15.202 SQL [7525]: pgsql_close() -- 15:00:15.216 INFO [7526]: COREGRADE is starting... -- 15:00:15.216 INFO [7526]: Version from config: 1.0 -- 15:00:15.216 DEBUG [7526]: Connecting to database... -- 15:00:15.216 DEBUG [7526]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:00:15.216 SQL [7526]: pgsql_db_connect() -- 15:00:15.220 DEBUG [7526]: Database connection successful -- 15:00:15.220 INFO [7526]: _SERVER found -- 15:00:15.220 INFO [7526]: REMOTE_ADDR = 192.168.1.13 -- 15:00:15.220 INFO [7526]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:00:15.220 INFO [7526]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 15:00:15.220 INFO [7526]: QUERY_STRING = /app-assets/data/locales/en.json -- 15:00:15.220 INFO [7526]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:00:15.232 INFO [7526]: COREGRADE is stopping... -- 15:00:15.232 DEBUG [7526]: Closing database connection -- 15:00:15.232 SQL [7526]: pgsql_close() -- 15:00:20.961 INFO [7524]: COREGRADE is starting... -- 15:00:20.961 INFO [7524]: Version from config: 1.0 -- 15:00:20.961 DEBUG [7524]: Connecting to database... -- 15:00:20.961 DEBUG [7524]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:00:20.961 SQL [7524]: pgsql_db_connect() -- 15:00:20.965 DEBUG [7524]: Database connection successful -- 15:00:20.965 INFO [7524]: _SERVER found -- 15:00:20.965 INFO [7524]: REMOTE_ADDR = 192.168.1.13 -- 15:00:20.965 INFO [7524]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:00:20.965 INFO [7524]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 15:00:20.965 INFO [7524]: QUERY_STRING = /member -- 15:00:20.965 INFO [7524]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:00:21.005 INFO [7524]: COREGRADE is stopping... -- 15:00:21.005 DEBUG [7524]: Closing database connection -- 15:00:21.005 SQL [7524]: pgsql_close() -- 15:00:21.333 INFO [7524]: COREGRADE is starting... -- 15:00:21.333 INFO [7524]: Version from config: 1.0 -- 15:00:21.333 DEBUG [7524]: Connecting to database... -- 15:00:21.333 DEBUG [7524]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:00:21.333 SQL [7524]: pgsql_db_connect() -- 15:00:21.337 DEBUG [7524]: Database connection successful -- 15:00:21.337 INFO [7524]: _SERVER found -- 15:00:21.337 INFO [7524]: REMOTE_ADDR = 192.168.1.13 -- 15:00:21.337 INFO [7524]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:00:21.337 INFO [7524]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 15:00:21.337 INFO [7524]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:00:21.337 INFO [7524]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:00:21.350 INFO [7524]: COREGRADE is stopping... -- 15:00:21.350 DEBUG [7524]: Closing database connection -- 15:00:21.350 SQL [7524]: pgsql_close() -- 15:00:21.351 INFO [7637]: COREGRADE is starting... -- 15:00:21.351 INFO [7637]: Version from config: 1.0 -- 15:00:21.351 DEBUG [7637]: Connecting to database... -- 15:00:21.351 DEBUG [7637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:00:21.351 SQL [7637]: pgsql_db_connect() -- 15:00:21.355 DEBUG [7637]: Database connection successful -- 15:00:21.355 INFO [7637]: _SERVER found -- 15:00:21.355 INFO [7637]: REMOTE_ADDR = 192.168.1.13 -- 15:00:21.355 INFO [7637]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:00:21.355 INFO [7637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 15:00:21.355 INFO [7637]: QUERY_STRING = /app-assets/data/locales/en.json -- 15:00:21.355 INFO [7637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:00:21.367 INFO [7637]: COREGRADE is stopping... -- 15:00:21.367 DEBUG [7637]: Closing database connection -- 15:00:21.367 SQL [7637]: pgsql_close() -- 15:00:22.317 INFO [7637]: COREGRADE is starting... -- 15:00:22.317 INFO [7637]: Version from config: 1.0 -- 15:00:22.317 DEBUG [7637]: Connecting to database... -- 15:00:22.317 DEBUG [7637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:00:22.317 SQL [7637]: pgsql_db_connect() -- 15:00:22.321 DEBUG [7637]: Database connection successful -- 15:00:22.321 INFO [7637]: _SERVER found -- 15:00:22.321 INFO [7637]: REMOTE_ADDR = 192.168.1.13 -- 15:00:22.321 INFO [7637]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:00:22.321 INFO [7637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 15:00:22.321 INFO [7637]: QUERY_STRING = /member/page -- 15:00:22.321 INFO [7637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:00:22.362 INFO [7637]: COREGRADE is stopping... -- 15:00:22.362 DEBUG [7637]: Closing database connection -- 15:00:22.362 SQL [7637]: pgsql_close() -- 15:00:22.663 INFO [7637]: COREGRADE is starting... -- 15:00:22.664 INFO [7637]: Version from config: 1.0 -- 15:00:22.664 DEBUG [7637]: Connecting to database... -- 15:00:22.664 DEBUG [7637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:00:22.664 SQL [7637]: pgsql_db_connect() -- 15:00:22.668 DEBUG [7637]: Database connection successful -- 15:00:22.668 INFO [7637]: _SERVER found -- 15:00:22.668 INFO [7637]: REMOTE_ADDR = 192.168.1.13 -- 15:00:22.668 INFO [7637]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:00:22.668 INFO [7637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 15:00:22.668 INFO [7637]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:00:22.668 INFO [7637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:00:22.680 INFO [7637]: COREGRADE is stopping... -- 15:00:22.680 DEBUG [7637]: Closing database connection -- 15:00:22.680 SQL [7637]: pgsql_close() -- 15:00:22.826 INFO [7637]: COREGRADE is starting... -- 15:00:22.827 INFO [7637]: Version from config: 1.0 -- 15:00:22.827 DEBUG [7637]: Connecting to database... -- 15:00:22.827 DEBUG [7637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:00:22.827 SQL [7637]: pgsql_db_connect() -- 15:00:22.830 DEBUG [7637]: Database connection successful -- 15:00:22.830 INFO [7637]: _SERVER found -- 15:00:22.830 INFO [7637]: REMOTE_ADDR = 192.168.1.13 -- 15:00:22.830 INFO [7637]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:00:22.830 INFO [7637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 15:00:22.830 INFO [7637]: QUERY_STRING = /app-assets/data/locales/en.json -- 15:00:22.830 INFO [7637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:00:22.843 INFO [7637]: COREGRADE is stopping... -- 15:00:22.843 DEBUG [7637]: Closing database connection -- 15:00:22.843 SQL [7637]: pgsql_close() -- 15:00:24.961 INFO [7637]: COREGRADE is starting... -- 15:00:24.961 INFO [7637]: Version from config: 1.0 -- 15:00:24.961 DEBUG [7637]: Connecting to database... -- 15:00:24.961 DEBUG [7637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:00:24.961 SQL [7637]: pgsql_db_connect() -- 15:00:24.965 DEBUG [7637]: Database connection successful -- 15:00:24.965 INFO [7637]: _SERVER found -- 15:00:24.965 INFO [7637]: REMOTE_ADDR = 192.168.1.13 -- 15:00:24.965 INFO [7637]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:00:24.965 INFO [7637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 15:00:24.965 INFO [7637]: QUERY_STRING = /member/viewCardAddAction -- 15:00:24.965 INFO [7637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:00:24.999 INFO [7637]: COREGRADE is stopping... -- 15:00:24.999 DEBUG [7637]: Closing database connection -- 15:00:24.999 SQL [7637]: pgsql_close() -- 15:00:27.213 INFO [7637]: COREGRADE is starting... -- 15:00:27.213 INFO [7637]: Version from config: 1.0 -- 15:00:27.213 DEBUG [7637]: Connecting to database... -- 15:00:27.213 DEBUG [7637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:00:27.213 SQL [7637]: pgsql_db_connect() -- 15:00:27.217 DEBUG [7637]: Database connection successful -- 15:00:27.217 INFO [7637]: _SERVER found -- 15:00:27.217 INFO [7637]: REMOTE_ADDR = 192.168.1.13 -- 15:00:27.217 INFO [7637]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:00:27.217 INFO [7637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 15:00:27.217 INFO [7637]: QUERY_STRING = /member/addNotecard -- 15:00:27.217 INFO [7637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:00:27.230 INFO [7637]: COREGRADE is stopping... -- 15:00:27.230 DEBUG [7637]: Closing database connection -- 15:00:27.230 SQL [7637]: pgsql_close() -- 15:02:10.611 INFO [7522]: COREGRADE is starting... -- 15:02:10.612 INFO [7522]: Version from config: 1.0 -- 15:02:10.612 DEBUG [7522]: Connecting to database... -- 15:02:10.612 DEBUG [7522]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:02:10.612 SQL [7522]: pgsql_db_connect() -- 15:02:10.616 DEBUG [7522]: Database connection successful -- 15:02:10.616 INFO [7522]: _SERVER found -- 15:02:10.616 INFO [7522]: REMOTE_ADDR = 192.168.1.13 -- 15:02:10.616 INFO [7522]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:02:10.616 INFO [7522]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 15:02:10.616 INFO [7522]: QUERY_STRING = /member/myprofile -- 15:02:10.616 INFO [7522]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:02:10.652 INFO [7522]: COREGRADE is stopping... -- 15:02:10.652 DEBUG [7522]: Closing database connection -- 15:02:10.652 SQL [7522]: pgsql_close() -- 15:02:11.260 INFO [7522]: COREGRADE is starting... -- 15:02:11.260 INFO [7522]: Version from config: 1.0 -- 15:02:11.260 DEBUG [7522]: Connecting to database... -- 15:02:11.260 DEBUG [7522]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:02:11.260 SQL [7522]: pgsql_db_connect() -- 15:02:11.265 DEBUG [7522]: Database connection successful -- 15:02:11.265 INFO [7522]: _SERVER found -- 15:02:11.265 INFO [7522]: REMOTE_ADDR = 192.168.1.13 -- 15:02:11.265 INFO [7522]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:02:11.265 INFO [7522]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 15:02:11.265 INFO [7522]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:02:11.265 INFO [7522]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:02:11.276 INFO [7522]: COREGRADE is stopping... -- 15:02:11.276 DEBUG [7522]: Closing database connection -- 15:02:11.276 SQL [7522]: pgsql_close() -- 15:02:11.279 INFO [7684]: COREGRADE is starting... -- 15:02:11.279 INFO [7684]: Version from config: 1.0 -- 15:02:11.279 DEBUG [7684]: Connecting to database... -- 15:02:11.279 DEBUG [7684]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:02:11.279 SQL [7684]: pgsql_db_connect() -- 15:02:11.283 DEBUG [7684]: Database connection successful -- 15:02:11.283 INFO [7684]: _SERVER found -- 15:02:11.283 INFO [7684]: REMOTE_ADDR = 192.168.1.13 -- 15:02:11.283 INFO [7684]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:02:11.283 INFO [7684]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 15:02:11.283 INFO [7684]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 15:02:11.283 INFO [7684]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:02:11.294 INFO [7684]: COREGRADE is stopping... -- 15:02:11.294 DEBUG [7684]: Closing database connection -- 15:02:11.294 SQL [7684]: pgsql_close() -- 15:02:11.464 INFO [7684]: COREGRADE is starting... -- 15:02:11.464 INFO [7684]: Version from config: 1.0 -- 15:02:11.464 DEBUG [7684]: Connecting to database... -- 15:02:11.464 DEBUG [7684]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:02:11.465 SQL [7684]: pgsql_db_connect() -- 15:02:11.468 DEBUG [7684]: Database connection successful -- 15:02:11.468 INFO [7684]: _SERVER found -- 15:02:11.468 INFO [7684]: REMOTE_ADDR = 192.168.1.13 -- 15:02:11.468 INFO [7684]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:02:11.468 INFO [7684]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 15:02:11.468 INFO [7684]: QUERY_STRING = /app-assets/data/locales/en.json -- 15:02:11.468 INFO [7684]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:02:11.479 INFO [7684]: COREGRADE is stopping... -- 15:02:11.480 DEBUG [7684]: Closing database connection -- 15:02:11.480 SQL [7684]: pgsql_close() -- 15:02:50.685 INFO [7692]: COREGRADE is starting... -- 15:02:50.686 INFO [7692]: Version from config: 1.0 -- 15:02:50.686 DEBUG [7692]: Connecting to database... -- 15:02:50.686 DEBUG [7692]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:02:50.686 SQL [7692]: pgsql_db_connect() -- 15:02:50.690 DEBUG [7692]: Database connection successful -- 15:02:50.690 INFO [7692]: _SERVER found -- 15:02:50.690 INFO [7692]: REMOTE_ADDR = 192.168.1.13 -- 15:02:50.690 INFO [7692]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:02:50.690 INFO [7692]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=i7q7cseqqgsovlsie0mmdmelvfoq54nf -- 15:02:50.690 INFO [7692]: QUERY_STRING = /member/mycalendar -- 15:02:50.690 INFO [7692]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:02:50.724 INFO [7692]: COREGRADE is stopping... -- 15:02:50.724 DEBUG [7692]: Closing database connection -- 15:02:50.724 SQL [7692]: pgsql_close() -- 15:02:51.363 INFO [7692]: COREGRADE is starting... -- 15:02:51.363 INFO [7692]: Version from config: 1.0 -- 15:02:51.363 DEBUG [7692]: Connecting to database... -- 15:02:51.363 DEBUG [7692]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:02:51.363 SQL [7692]: pgsql_db_connect() -- 15:02:51.373 INFO [7693]: COREGRADE is starting... -- 15:02:51.373 INFO [7693]: Version from config: 1.0 -- 15:02:51.373 DEBUG [7693]: Connecting to database... -- 15:02:51.373 DEBUG [7693]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:02:51.373 SQL [7693]: pgsql_db_connect() -- 15:02:51.367 DEBUG [7692]: Database connection successful -- 15:02:51.367 INFO [7692]: _SERVER found -- 15:02:51.367 INFO [7692]: REMOTE_ADDR = 192.168.1.13 -- 15:02:51.367 INFO [7692]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:02:51.367 INFO [7692]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=aij42j99tbpau9dkij7mj6fcgvvb2uo8 -- 15:02:51.367 INFO [7692]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:02:51.367 INFO [7692]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:02:51.378 INFO [7692]: COREGRADE is stopping... -- 15:02:51.378 DEBUG [7692]: Closing database connection -- 15:02:51.378 SQL [7692]: pgsql_close() -- 15:02:51.377 DEBUG [7693]: Database connection successful -- 15:02:51.377 INFO [7693]: _SERVER found -- 15:02:51.377 INFO [7693]: REMOTE_ADDR = 192.168.1.13 -- 15:02:51.377 INFO [7693]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:02:51.377 INFO [7693]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=aij42j99tbpau9dkij7mj6fcgvvb2uo8 -- 15:02:51.377 INFO [7693]: QUERY_STRING = /app-assets/data/locales/en.json -- 15:02:51.377 INFO [7693]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:02:51.389 INFO [7693]: COREGRADE is stopping... -- 15:02:51.389 DEBUG [7693]: Closing database connection -- 15:02:51.389 SQL [7693]: pgsql_close() -- 15:08:35.236 INFO [7694]: COREGRADE is starting... -- 15:08:35.236 INFO [7694]: Version from config: 1.0 -- 15:08:35.236 DEBUG [7694]: Connecting to database... -- 15:08:35.237 DEBUG [7694]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:08:35.237 SQL [7694]: pgsql_db_connect() -- 15:08:35.241 DEBUG [7694]: Database connection successful -- 15:08:35.241 INFO [7694]: _SERVER found -- 15:08:35.241 INFO [7694]: REMOTE_ADDR = 192.168.1.13 -- 15:08:35.241 INFO [7694]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:08:35.241 INFO [7694]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=aij42j99tbpau9dkij7mj6fcgvvb2uo8 -- 15:08:35.241 INFO [7694]: QUERY_STRING = /member/mycalendar -- 15:08:35.241 INFO [7694]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:08:35.277 INFO [7694]: COREGRADE is stopping... -- 15:08:35.277 DEBUG [7694]: Closing database connection -- 15:08:35.277 SQL [7694]: pgsql_close() -- 15:08:35.768 INFO [7694]: COREGRADE is starting... -- 15:08:35.769 INFO [7694]: Version from config: 1.0 -- 15:08:35.769 DEBUG [7694]: Connecting to database... -- 15:08:35.769 DEBUG [7694]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:08:35.769 SQL [7694]: pgsql_db_connect() -- 15:08:35.773 DEBUG [7694]: Database connection successful -- 15:08:35.773 INFO [7694]: _SERVER found -- 15:08:35.773 INFO [7694]: REMOTE_ADDR = 192.168.1.13 -- 15:08:35.773 INFO [7694]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:08:35.773 INFO [7694]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0jbqbbiknsbnjebl8tbmh0j1fra6vu8f -- 15:08:35.773 INFO [7694]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:08:35.773 INFO [7694]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:08:35.784 INFO [7694]: COREGRADE is stopping... -- 15:08:35.784 DEBUG [7694]: Closing database connection -- 15:08:35.784 SQL [7694]: pgsql_close() -- 15:08:35.806 INFO [7694]: COREGRADE is starting... -- 15:08:35.806 INFO [7694]: Version from config: 1.0 -- 15:08:35.806 DEBUG [7694]: Connecting to database... -- 15:08:35.806 DEBUG [7694]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:08:35.806 SQL [7694]: pgsql_db_connect() -- 15:08:35.810 DEBUG [7694]: Database connection successful -- 15:08:35.810 INFO [7694]: _SERVER found -- 15:08:35.810 INFO [7694]: REMOTE_ADDR = 192.168.1.13 -- 15:08:35.810 INFO [7694]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:08:35.810 INFO [7694]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0jbqbbiknsbnjebl8tbmh0j1fra6vu8f -- 15:08:35.810 INFO [7694]: QUERY_STRING = /app-assets/data/locales/en.json -- 15:08:35.810 INFO [7694]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:08:35.821 INFO [7694]: COREGRADE is stopping... -- 15:08:35.821 DEBUG [7694]: Closing database connection -- 15:08:35.821 SQL [7694]: pgsql_close() -- 15:08:36.418 INFO [7694]: COREGRADE is starting... -- 15:08:36.418 INFO [7694]: Version from config: 1.0 -- 15:08:36.418 DEBUG [7694]: Connecting to database... -- 15:08:36.418 DEBUG [7694]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:08:36.418 SQL [7694]: pgsql_db_connect() -- 15:08:36.422 DEBUG [7694]: Database connection successful -- 15:08:36.422 INFO [7694]: _SERVER found -- 15:08:36.422 INFO [7694]: REMOTE_ADDR = 192.168.1.13 -- 15:08:36.422 INFO [7694]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:08:36.422 INFO [7694]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0jbqbbiknsbnjebl8tbmh0j1fra6vu8f -- 15:08:36.422 INFO [7694]: QUERY_STRING = /member -- 15:08:36.422 INFO [7694]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:08:36.458 INFO [7694]: COREGRADE is stopping... -- 15:08:36.458 DEBUG [7694]: Closing database connection -- 15:08:36.458 SQL [7694]: pgsql_close() -- 15:08:36.787 INFO [7694]: COREGRADE is starting... -- 15:08:36.788 INFO [7694]: Version from config: 1.0 -- 15:08:36.788 DEBUG [7694]: Connecting to database... -- 15:08:36.788 DEBUG [7694]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:08:36.788 SQL [7694]: pgsql_db_connect() -- 15:08:36.792 DEBUG [7694]: Database connection successful -- 15:08:36.792 INFO [7694]: _SERVER found -- 15:08:36.792 INFO [7694]: REMOTE_ADDR = 192.168.1.13 -- 15:08:36.792 INFO [7694]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:08:36.792 INFO [7694]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0jbqbbiknsbnjebl8tbmh0j1fra6vu8f -- 15:08:36.792 INFO [7694]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:08:36.792 INFO [7694]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:08:36.803 INFO [7694]: COREGRADE is stopping... -- 15:08:36.803 DEBUG [7694]: Closing database connection -- 15:08:36.803 SQL [7694]: pgsql_close() -- 15:08:36.805 INFO [7523]: COREGRADE is starting... -- 15:08:36.805 INFO [7523]: Version from config: 1.0 -- 15:08:36.805 DEBUG [7523]: Connecting to database... -- 15:08:36.805 DEBUG [7523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:08:36.805 SQL [7523]: pgsql_db_connect() -- 15:08:36.809 DEBUG [7523]: Database connection successful -- 15:08:36.809 INFO [7523]: _SERVER found -- 15:08:36.809 INFO [7523]: REMOTE_ADDR = 192.168.1.13 -- 15:08:36.809 INFO [7523]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:08:36.809 INFO [7523]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0jbqbbiknsbnjebl8tbmh0j1fra6vu8f -- 15:08:36.809 INFO [7523]: QUERY_STRING = /app-assets/data/locales/en.json -- 15:08:36.809 INFO [7523]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:08:36.821 INFO [7523]: COREGRADE is stopping... -- 15:08:36.821 DEBUG [7523]: Closing database connection -- 15:08:36.821 SQL [7523]: pgsql_close() -- 15:08:37.865 INFO [7523]: COREGRADE is starting... -- 15:08:37.865 INFO [7523]: Version from config: 1.0 -- 15:08:37.865 DEBUG [7523]: Connecting to database... -- 15:08:37.865 DEBUG [7523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:08:37.865 SQL [7523]: pgsql_db_connect() -- 15:08:37.869 DEBUG [7523]: Database connection successful -- 15:08:37.869 INFO [7523]: _SERVER found -- 15:08:37.869 INFO [7523]: REMOTE_ADDR = 192.168.1.13 -- 15:08:37.869 INFO [7523]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:08:37.869 INFO [7523]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0jbqbbiknsbnjebl8tbmh0j1fra6vu8f -- 15:08:37.869 INFO [7523]: QUERY_STRING = /member/page -- 15:08:37.869 INFO [7523]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:08:37.907 INFO [7523]: COREGRADE is stopping... -- 15:08:37.907 DEBUG [7523]: Closing database connection -- 15:08:37.907 SQL [7523]: pgsql_close() -- 15:08:38.144 INFO [7523]: COREGRADE is starting... -- 15:08:38.144 INFO [7523]: Version from config: 1.0 -- 15:08:38.144 DEBUG [7523]: Connecting to database... -- 15:08:38.144 DEBUG [7523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:08:38.144 SQL [7523]: pgsql_db_connect() -- 15:08:38.148 DEBUG [7523]: Database connection successful -- 15:08:38.148 INFO [7523]: _SERVER found -- 15:08:38.148 INFO [7523]: REMOTE_ADDR = 192.168.1.13 -- 15:08:38.148 INFO [7523]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:08:38.148 INFO [7523]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0jbqbbiknsbnjebl8tbmh0j1fra6vu8f -- 15:08:38.148 INFO [7523]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:08:38.148 INFO [7523]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:08:38.159 INFO [7523]: COREGRADE is stopping... -- 15:08:38.159 DEBUG [7523]: Closing database connection -- 15:08:38.159 SQL [7523]: pgsql_close() -- 15:08:38.331 INFO [7523]: COREGRADE is starting... -- 15:08:38.331 INFO [7523]: Version from config: 1.0 -- 15:08:38.331 DEBUG [7523]: Connecting to database... -- 15:08:38.331 DEBUG [7523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:08:38.331 SQL [7523]: pgsql_db_connect() -- 15:08:38.335 DEBUG [7523]: Database connection successful -- 15:08:38.335 INFO [7523]: _SERVER found -- 15:08:38.335 INFO [7523]: REMOTE_ADDR = 192.168.1.13 -- 15:08:38.335 INFO [7523]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:08:38.335 INFO [7523]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0jbqbbiknsbnjebl8tbmh0j1fra6vu8f -- 15:08:38.335 INFO [7523]: QUERY_STRING = /app-assets/data/locales/en.json -- 15:08:38.335 INFO [7523]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:08:38.346 INFO [7523]: COREGRADE is stopping... -- 15:08:38.346 DEBUG [7523]: Closing database connection -- 15:08:38.346 SQL [7523]: pgsql_close() -- 16:18:54.669 INFO [7525]: COREGRADE is starting... -- 16:18:54.670 INFO [7525]: Version from config: 1.0 -- 16:18:54.670 DEBUG [7525]: Connecting to database... -- 16:18:54.670 DEBUG [7525]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:18:54.670 SQL [7525]: pgsql_db_connect() -- 16:18:54.675 DEBUG [7525]: Database connection successful -- 16:18:54.675 INFO [7525]: _SERVER found -- 16:18:54.675 INFO [7525]: REMOTE_ADDR = 192.168.1.13 -- 16:18:54.675 INFO [7525]: SERVER_NAME = oameye.works.coregrade.com -- 16:18:54.675 INFO [7525]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420 -- 16:18:54.675 INFO [7525]: QUERY_STRING = /auth -- 16:18:54.675 INFO [7525]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:18:54.710 INFO [7525]: COREGRADE is stopping... -- 16:18:54.710 DEBUG [7525]: Closing database connection -- 16:18:54.710 SQL [7525]: pgsql_close() -- 16:18:54.931 INFO [7525]: COREGRADE is starting... -- 16:18:54.931 INFO [7525]: Version from config: 1.0 -- 16:18:54.931 DEBUG [7525]: Connecting to database... -- 16:18:54.931 DEBUG [7525]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:18:54.931 SQL [7525]: pgsql_db_connect() -- 16:18:54.935 DEBUG [7525]: Database connection successful -- 16:18:54.935 INFO [7525]: _SERVER found -- 16:18:54.935 INFO [7525]: REMOTE_ADDR = 192.168.1.13 -- 16:18:54.935 INFO [7525]: SERVER_NAME = oameye.works.coregrade.com -- 16:18:54.935 INFO [7525]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0inrnv9qntatepmq08k0us48or4mkh3n -- 16:18:54.935 INFO [7525]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:18:54.935 INFO [7525]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:18:54.946 INFO [7525]: COREGRADE is stopping... -- 16:18:54.946 DEBUG [7525]: Closing database connection -- 16:18:54.946 SQL [7525]: pgsql_close() -- 16:18:54.973 INFO [7525]: COREGRADE is starting... -- 16:18:54.974 INFO [7525]: Version from config: 1.0 -- 16:18:54.974 DEBUG [7525]: Connecting to database... -- 16:18:54.974 DEBUG [7525]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:18:54.974 SQL [7525]: pgsql_db_connect() -- 16:18:54.977 DEBUG [7525]: Database connection successful -- 16:18:54.977 INFO [7525]: _SERVER found -- 16:18:54.977 INFO [7525]: REMOTE_ADDR = 192.168.1.13 -- 16:18:54.977 INFO [7525]: SERVER_NAME = oameye.works.coregrade.com -- 16:18:54.977 INFO [7525]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0inrnv9qntatepmq08k0us48or4mkh3n -- 16:18:54.977 INFO [7525]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:18:54.977 INFO [7525]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:18:54.988 INFO [7525]: COREGRADE is stopping... -- 16:18:54.988 DEBUG [7525]: Closing database connection -- 16:18:54.988 SQL [7525]: pgsql_close() -- 16:23:28.472 INFO [7526]: COREGRADE is starting... -- 16:23:28.472 INFO [7526]: Version from config: 1.0 -- 16:23:28.472 DEBUG [7526]: Connecting to database... -- 16:23:28.472 DEBUG [7526]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:28.472 SQL [7526]: pgsql_db_connect() -- 16:23:28.510 INFO [7526]: COREGRADE is starting... -- 16:23:28.510 INFO [7526]: Version from config: 1.0 -- 16:23:28.510 DEBUG [7526]: Connecting to database... -- 16:23:28.511 DEBUG [7526]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:28.511 SQL [7526]: pgsql_db_connect() -- 16:23:28.515 DEBUG [7526]: Database connection successful -- 16:23:28.515 INFO [7526]: _SERVER found -- 16:23:28.515 INFO [7526]: REMOTE_ADDR = 192.168.1.13 -- 16:23:28.515 INFO [7526]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:28.515 INFO [7526]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0inrnv9qntatepmq08k0us48or4mkh3n -- 16:23:28.515 INFO [7526]: QUERY_STRING = -- 16:23:28.515 INFO [7526]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:28.515 INFO [7526]: SystemStatus()09-09-********~************ -- 16:23:28.515 INFO [7526]: long coregrade_api_main(CVars in, CVars &out) -- 16:23:28.515 INFO [7526]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 16:23:28.515 INFO [7526]: account calls -- 16:23:28.515 INFO [7526]: account_calls() -- 16:23:28.515 INFO [7526]: LoginCoreGradeAccount() -- 16:23:28.515 FLOG_MAX [7526]: REQ_STRING(username) -- 16:23:28.515 FLOG_MAX [7526]: REQ_STRING(password) -- 16:23:28.515 FLOG_MAX [7526]: REQ_STRING(sessionid) -- 16:23:28.515 FLOG_MAX [7526]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:23:28.515 SQL [7526]: pgsql_query() -- 16:23:28.515 SQL [7526]: About to run query: -- 16:23:28.515 SQL [7526]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 16:23:28.519 SQL [7526]: Found rows: 1 -- 16:23:28.519 FLOG_MAX [7526]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 16:23:28.519 INFO [7526]: long SessionCheck(long uid, const char *sessionid, int create ) -- 16:23:28.519 SQL [7526]: pgsql_exec() -- 16:23:28.519 SQL [7526]: About to run query: -- 16:23:28.519 SQL [7526]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 16:23:28.521 SQL [7526]: PQcmdTuples: 1 -- 16:23:28.521 SQL [7526]: Affected rows: 1 -- 16:23:28.521 SQL [7526]: pgsql_exec() -- 16:23:28.521 SQL [7526]: About to run query: -- 16:23:28.521 SQL [7526]: DELETE FROM members_session WHERE member_id=5 -- 16:23:28.521 SQL [7526]: PQcmdTuples: 0 -- 16:23:28.521 SQL [7526]: Affected rows: 0 -- 16:23:28.521 SQL [7526]: pgsql_query() -- 16:23:28.521 SQL [7526]: About to run query: -- 16:23:28.521 SQL [7526]: SELECT * FROM members_session WHERE member_id=5 AND session<>'0A6E56605B3937FF8C1222654C8E08DC' -- 16:23:28.522 SQL [7526]: Found rows: 0 -- 16:23:28.522 SQL [7526]: Found rows: 0 -- 16:23:28.522 FLOG_MAX [7526]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:23:28.522 SQL [7526]: pgsql_query() -- 16:23:28.522 SQL [7526]: About to run query: -- 16:23:28.522 SQL [7526]: SELECT * FROM members_session WHERE member_id=5 AND session='0A6E56605B3937FF8C1222654C8E08DC' -- 16:23:28.522 SQL [7526]: Found rows: 0 -- 16:23:28.523 SQL [7526]: Found rows: 0 -- 16:23:28.523 FLOG_MAX [7526]: insert_db_record() -- 16:23:28.523 SQL [7526]: pgsql_exec() -- 16:23:28.523 SQL [7526]: About to run query: -- 16:23:28.523 SQL [7526]: INSERT INTO members_session (member_id,session) VALUES ('5','0A6E56605B3937FF8C1222654C8E08DC') -- 16:23:28.524 SQL [7526]: PQcmdTuples: 1 -- 16:23:28.524 SQL [7526]: Affected rows: 1 -- 16:23:28.524 FLOG_MAX [7526]: SELECT currval('members_session_id_seq') -- 16:23:28.524 SQL [7526]: pgsql_query() -- 16:23:28.525 SQL [7526]: About to run query: -- 16:23:28.525 SQL [7526]: SELECT currval('members_session_id_seq') -- 16:23:28.525 SQL [7526]: Found rows: 1 -- 16:23:28.525 INFO [7526]: CreateDefaultPage() -- 16:23:28.525 FLOG_MAX [7526]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:23:28.525 SQL [7526]: pgsql_query() -- 16:23:28.525 SQL [7526]: About to run query: -- 16:23:28.525 SQL [7526]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 16:23:28.525 SQL [7526]: Found rows: 1 -- 16:23:28.525 FLOG_MAX [7526]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 16:23:28.525 SQL [7526]: pgsql_query() -- 16:23:28.525 SQL [7526]: About to run query: -- 16:23:28.525 SQL [7526]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 16:23:28.526 SQL [7526]: Found rows: 1 -- 16:23:28.526 INFO [7526]: /CreateDefaultPage() -- 16:23:28.526 INFO [7526]: /LoginCoreGradeAccount() -- 16:23:28.526 INFO [7526]: RET: added=2020-02-05 06:47:23.982154 -- 16:23:28.526 INFO [7526]: RET: email=ameye+11@chiefsoft.com -- 16:23:28.526 INFO [7526]: RET: firstname=Olu -- 16:23:28.526 INFO [7526]: RET: id=5 -- 16:23:28.526 INFO [7526]: RET: last_login= -- 16:23:28.526 INFO [7526]: RET: lastname=Amey -- 16:23:28.526 INFO [7526]: RET: loc=192.168.1.13 -- 16:23:28.526 INFO [7526]: RET: member_id=5 -- 16:23:28.526 INFO [7526]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 16:23:28.526 INFO [7526]: RET: phone= -- 16:23:28.526 INFO [7526]: RET: pid= -- 16:23:28.526 INFO [7526]: RET: result=YES I GET TO BACK END -- 16:23:28.526 INFO [7526]: RET: sessionid=0A6E56605B3937FF8C1222654C8E08DC -- 16:23:28.526 INFO [7526]: RET: status=1 -- 16:23:28.526 INFO [7526]: RET: stauts=OK -- 16:23:28.526 INFO [7526]: RET: username=ameye+11@chiefsoft.com -- 16:23:28.526 INFO [7526]: RET: verified= -- 16:23:28.527 INFO [7526]: COREGRADE is stopping... -- 16:23:28.527 DEBUG [7526]: Closing database connection -- 16:23:28.527 SQL [7526]: pgsql_close() -- 16:23:28.477 DEBUG [7526]: Database connection successful -- 16:23:28.477 INFO [7526]: _SERVER found -- 16:23:28.477 INFO [7526]: REMOTE_ADDR = 192.168.1.13 -- 16:23:28.477 INFO [7526]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:28.477 INFO [7526]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0inrnv9qntatepmq08k0us48or4mkh3n -- 16:23:28.477 INFO [7526]: QUERY_STRING = /auth -- 16:23:28.477 INFO [7526]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:28.528 INFO [7526]: COREGRADE is stopping... -- 16:23:28.528 DEBUG [7526]: Closing database connection -- 16:23:28.528 SQL [7526]: pgsql_close() -- 16:23:28.552 INFO [7526]: COREGRADE is starting... -- 16:23:28.552 INFO [7526]: Version from config: 1.0 -- 16:23:28.552 DEBUG [7526]: Connecting to database... -- 16:23:28.552 DEBUG [7526]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:28.552 SQL [7526]: pgsql_db_connect() -- 16:23:28.556 DEBUG [7526]: Database connection successful -- 16:23:28.556 INFO [7526]: _SERVER found -- 16:23:28.556 INFO [7526]: REMOTE_ADDR = 192.168.1.13 -- 16:23:28.556 INFO [7526]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:28.556 INFO [7526]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0inrnv9qntatepmq08k0us48or4mkh3n -- 16:23:28.556 INFO [7526]: QUERY_STRING = /member/index -- 16:23:28.556 INFO [7526]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:28.592 INFO [7526]: COREGRADE is stopping... -- 16:23:28.592 DEBUG [7526]: Closing database connection -- 16:23:28.592 SQL [7526]: pgsql_close() -- 16:23:28.900 INFO [7526]: COREGRADE is starting... -- 16:23:28.901 INFO [7526]: Version from config: 1.0 -- 16:23:28.901 DEBUG [7526]: Connecting to database... -- 16:23:28.901 DEBUG [7526]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:28.901 SQL [7526]: pgsql_db_connect() -- 16:23:28.905 DEBUG [7526]: Database connection successful -- 16:23:28.905 INFO [7526]: _SERVER found -- 16:23:28.905 INFO [7526]: REMOTE_ADDR = 192.168.1.13 -- 16:23:28.905 INFO [7526]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:28.905 INFO [7526]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0inrnv9qntatepmq08k0us48or4mkh3n -- 16:23:28.905 INFO [7526]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:23:28.905 INFO [7526]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:28.916 INFO [7526]: COREGRADE is stopping... -- 16:23:28.916 DEBUG [7526]: Closing database connection -- 16:23:28.916 SQL [7526]: pgsql_close() -- 16:23:28.939 INFO [7526]: COREGRADE is starting... -- 16:23:28.939 INFO [7526]: Version from config: 1.0 -- 16:23:28.939 DEBUG [7526]: Connecting to database... -- 16:23:28.939 DEBUG [7526]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:28.939 SQL [7526]: pgsql_db_connect() -- 16:23:28.943 DEBUG [7526]: Database connection successful -- 16:23:28.943 INFO [7526]: _SERVER found -- 16:23:28.943 INFO [7526]: REMOTE_ADDR = 192.168.1.13 -- 16:23:28.943 INFO [7526]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:28.943 INFO [7526]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0inrnv9qntatepmq08k0us48or4mkh3n -- 16:23:28.943 INFO [7526]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:23:28.943 INFO [7526]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:28.954 INFO [7526]: COREGRADE is stopping... -- 16:23:28.954 DEBUG [7526]: Closing database connection -- 16:23:28.954 SQL [7526]: pgsql_close() -- 16:23:30.471 INFO [7526]: COREGRADE is starting... -- 16:23:30.471 INFO [7526]: Version from config: 1.0 -- 16:23:30.471 DEBUG [7526]: Connecting to database... -- 16:23:30.471 DEBUG [7526]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:30.471 SQL [7526]: pgsql_db_connect() -- 16:23:30.476 DEBUG [7526]: Database connection successful -- 16:23:30.476 INFO [7526]: _SERVER found -- 16:23:30.476 INFO [7526]: REMOTE_ADDR = 192.168.1.13 -- 16:23:30.476 INFO [7526]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:30.476 INFO [7526]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0inrnv9qntatepmq08k0us48or4mkh3n -- 16:23:30.476 INFO [7526]: QUERY_STRING = /member/page -- 16:23:30.476 INFO [7526]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:30.511 INFO [7526]: COREGRADE is stopping... -- 16:23:30.511 DEBUG [7526]: Closing database connection -- 16:23:30.511 SQL [7526]: pgsql_close() -- 16:23:30.577 INFO [7524]: COREGRADE is starting... -- 16:23:30.577 INFO [7524]: Version from config: 1.0 -- 16:23:30.577 DEBUG [7524]: Connecting to database... -- 16:23:30.577 DEBUG [7524]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:30.577 SQL [7524]: pgsql_db_connect() -- 16:23:30.582 DEBUG [7524]: Database connection successful -- 16:23:30.582 INFO [7524]: _SERVER found -- 16:23:30.582 INFO [7524]: REMOTE_ADDR = 192.168.1.13 -- 16:23:30.582 INFO [7524]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:30.582 INFO [7524]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0inrnv9qntatepmq08k0us48or4mkh3n -- 16:23:30.582 INFO [7524]: QUERY_STRING = /favicon.ico -- 16:23:30.582 INFO [7524]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:30.595 INFO [7524]: COREGRADE is stopping... -- 16:23:30.595 DEBUG [7524]: Closing database connection -- 16:23:30.595 SQL [7524]: pgsql_close() -- 16:24:43.300 INFO [7637]: COREGRADE is starting... -- 16:24:43.300 INFO [7637]: Version from config: 1.0 -- 16:24:43.300 DEBUG [7637]: Connecting to database... -- 16:24:43.300 DEBUG [7637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:24:43.300 SQL [7637]: pgsql_db_connect() -- 16:24:43.307 DEBUG [7637]: Database connection successful -- 16:24:43.307 INFO [7637]: _SERVER found -- 16:24:43.307 INFO [7637]: REMOTE_ADDR = 192.168.1.13 -- 16:24:43.307 INFO [7637]: SERVER_NAME = oameye.works.coregrade.com -- 16:24:43.307 INFO [7637]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=0inrnv9qntatepmq08k0us48or4mkh3n -- 16:24:43.307 INFO [7637]: QUERY_STRING = /member/page -- 16:24:43.307 INFO [7637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:24:43.351 INFO [7637]: COREGRADE is stopping... -- 16:24:43.351 DEBUG [7637]: Closing database connection -- 16:24:43.351 SQL [7637]: pgsql_close() -- 16:24:43.517 INFO [7637]: COREGRADE is starting... -- 16:24:43.517 INFO [7637]: Version from config: 1.0 -- 16:24:43.517 DEBUG [7637]: Connecting to database... -- 16:24:43.518 DEBUG [7637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:24:43.518 SQL [7637]: pgsql_db_connect() -- 16:24:43.522 DEBUG [7637]: Database connection successful -- 16:24:43.522 INFO [7637]: _SERVER found -- 16:24:43.522 INFO [7637]: REMOTE_ADDR = 192.168.1.13 -- 16:24:43.522 INFO [7637]: SERVER_NAME = oameye.works.coregrade.com -- 16:24:43.522 INFO [7637]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mg2svb6civh2k7jecg693k5eu6eji3q3 -- 16:24:43.522 INFO [7637]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:24:43.522 INFO [7637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:24:43.533 INFO [7637]: COREGRADE is stopping... -- 16:24:43.533 DEBUG [7637]: Closing database connection -- 16:24:43.533 SQL [7637]: pgsql_close() -- 16:24:43.718 INFO [7637]: COREGRADE is starting... -- 16:24:43.719 INFO [7637]: Version from config: 1.0 -- 16:24:43.719 DEBUG [7637]: Connecting to database... -- 16:24:43.719 DEBUG [7637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:24:43.719 SQL [7637]: pgsql_db_connect() -- 16:24:43.723 DEBUG [7637]: Database connection successful -- 16:24:43.723 INFO [7637]: _SERVER found -- 16:24:43.723 INFO [7637]: REMOTE_ADDR = 192.168.1.13 -- 16:24:43.723 INFO [7637]: SERVER_NAME = oameye.works.coregrade.com -- 16:24:43.723 INFO [7637]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mg2svb6civh2k7jecg693k5eu6eji3q3 -- 16:24:43.723 INFO [7637]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:24:43.723 INFO [7637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:24:43.734 INFO [7637]: COREGRADE is stopping... -- 16:24:43.734 DEBUG [7637]: Closing database connection -- 16:24:43.734 SQL [7637]: pgsql_close() -- 16:24:46.662 INFO [7637]: COREGRADE is starting... -- 16:24:46.663 INFO [7637]: Version from config: 1.0 -- 16:24:46.663 DEBUG [7637]: Connecting to database... -- 16:24:46.663 DEBUG [7637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:24:46.663 SQL [7637]: pgsql_db_connect() -- 16:24:46.667 DEBUG [7637]: Database connection successful -- 16:24:46.667 INFO [7637]: _SERVER found -- 16:24:46.667 INFO [7637]: REMOTE_ADDR = 192.168.1.13 -- 16:24:46.667 INFO [7637]: SERVER_NAME = oameye.works.coregrade.com -- 16:24:46.667 INFO [7637]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mg2svb6civh2k7jecg693k5eu6eji3q3 -- 16:24:46.667 INFO [7637]: QUERY_STRING = /member -- 16:24:46.667 INFO [7637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:24:46.702 INFO [7637]: COREGRADE is stopping... -- 16:24:46.702 DEBUG [7637]: Closing database connection -- 16:24:46.702 SQL [7637]: pgsql_close() -- 16:24:46.906 INFO [7637]: COREGRADE is starting... -- 16:24:46.906 INFO [7637]: Version from config: 1.0 -- 16:24:46.906 DEBUG [7637]: Connecting to database... -- 16:24:46.906 DEBUG [7637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:24:46.906 SQL [7637]: pgsql_db_connect() -- 16:24:46.910 DEBUG [7637]: Database connection successful -- 16:24:46.910 INFO [7637]: _SERVER found -- 16:24:46.910 INFO [7637]: REMOTE_ADDR = 192.168.1.13 -- 16:24:46.910 INFO [7637]: SERVER_NAME = oameye.works.coregrade.com -- 16:24:46.910 INFO [7637]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mg2svb6civh2k7jecg693k5eu6eji3q3 -- 16:24:46.910 INFO [7637]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:24:46.910 INFO [7637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:24:46.922 INFO [7637]: COREGRADE is stopping... -- 16:24:46.922 DEBUG [7637]: Closing database connection -- 16:24:46.922 SQL [7637]: pgsql_close() -- 16:24:46.923 INFO [7522]: COREGRADE is starting... -- 16:24:46.923 INFO [7522]: Version from config: 1.0 -- 16:24:46.923 DEBUG [7522]: Connecting to database... -- 16:24:46.923 DEBUG [7522]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:24:46.923 SQL [7522]: pgsql_db_connect() -- 16:24:46.927 DEBUG [7522]: Database connection successful -- 16:24:46.927 INFO [7522]: _SERVER found -- 16:24:46.927 INFO [7522]: REMOTE_ADDR = 192.168.1.13 -- 16:24:46.927 INFO [7522]: SERVER_NAME = oameye.works.coregrade.com -- 16:24:46.927 INFO [7522]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mg2svb6civh2k7jecg693k5eu6eji3q3 -- 16:24:46.927 INFO [7522]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:24:46.927 INFO [7522]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:24:46.939 INFO [7522]: COREGRADE is stopping... -- 16:24:46.939 DEBUG [7522]: Closing database connection -- 16:24:46.939 SQL [7522]: pgsql_close() -- 16:24:47.893 INFO [7522]: COREGRADE is starting... -- 16:24:47.893 INFO [7522]: Version from config: 1.0 -- 16:24:47.893 DEBUG [7522]: Connecting to database... -- 16:24:47.893 DEBUG [7522]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:24:47.893 SQL [7522]: pgsql_db_connect() -- 16:24:47.897 DEBUG [7522]: Database connection successful -- 16:24:47.897 INFO [7522]: _SERVER found -- 16:24:47.897 INFO [7522]: REMOTE_ADDR = 192.168.1.13 -- 16:24:47.897 INFO [7522]: SERVER_NAME = oameye.works.coregrade.com -- 16:24:47.897 INFO [7522]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mg2svb6civh2k7jecg693k5eu6eji3q3 -- 16:24:47.897 INFO [7522]: QUERY_STRING = /member/page -- 16:24:47.897 INFO [7522]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:24:47.936 INFO [7522]: COREGRADE is stopping... -- 16:24:47.936 DEBUG [7522]: Closing database connection -- 16:24:47.936 SQL [7522]: pgsql_close() -- 16:24:48.023 INFO [7522]: COREGRADE is starting... -- 16:24:48.024 INFO [7522]: Version from config: 1.0 -- 16:24:48.024 DEBUG [7522]: Connecting to database... -- 16:24:48.024 DEBUG [7522]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:24:48.024 SQL [7522]: pgsql_db_connect() -- 16:24:48.028 DEBUG [7522]: Database connection successful -- 16:24:48.028 INFO [7522]: _SERVER found -- 16:24:48.028 INFO [7522]: REMOTE_ADDR = 192.168.1.13 -- 16:24:48.028 INFO [7522]: SERVER_NAME = oameye.works.coregrade.com -- 16:24:48.028 INFO [7522]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mg2svb6civh2k7jecg693k5eu6eji3q3 -- 16:24:48.028 INFO [7522]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:24:48.028 INFO [7522]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:24:48.039 INFO [7522]: COREGRADE is stopping... -- 16:24:48.039 DEBUG [7522]: Closing database connection -- 16:24:48.039 SQL [7522]: pgsql_close() -- 16:24:48.119 INFO [7522]: COREGRADE is starting... -- 16:24:48.120 INFO [7522]: Version from config: 1.0 -- 16:24:48.120 DEBUG [7522]: Connecting to database... -- 16:24:48.120 DEBUG [7522]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:24:48.120 SQL [7522]: pgsql_db_connect() -- 16:24:48.124 DEBUG [7522]: Database connection successful -- 16:24:48.124 INFO [7522]: _SERVER found -- 16:24:48.124 INFO [7522]: REMOTE_ADDR = 192.168.1.13 -- 16:24:48.124 INFO [7522]: SERVER_NAME = oameye.works.coregrade.com -- 16:24:48.124 INFO [7522]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mg2svb6civh2k7jecg693k5eu6eji3q3 -- 16:24:48.124 INFO [7522]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:24:48.124 INFO [7522]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:24:48.135 INFO [7522]: COREGRADE is stopping... -- 16:24:48.135 DEBUG [7522]: Closing database connection -- 16:24:48.135 SQL [7522]: pgsql_close() -- 16:25:22.114 INFO [7684]: COREGRADE is starting... -- 16:25:22.115 INFO [7684]: Version from config: 1.0 -- 16:25:22.115 DEBUG [7684]: Connecting to database... -- 16:25:22.115 DEBUG [7684]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:22.115 SQL [7684]: pgsql_db_connect() -- 16:25:22.119 DEBUG [7684]: Database connection successful -- 16:25:22.119 INFO [7684]: _SERVER found -- 16:25:22.119 INFO [7684]: REMOTE_ADDR = 192.168.1.13 -- 16:25:22.119 INFO [7684]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:25:22.119 INFO [7684]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=0jbqbbiknsbnjebl8tbmh0j1fra6vu8f -- 16:25:22.119 INFO [7684]: QUERY_STRING = /member -- 16:25:22.119 INFO [7684]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:22.157 INFO [7684]: COREGRADE is stopping... -- 16:25:22.157 DEBUG [7684]: Closing database connection -- 16:25:22.157 SQL [7684]: pgsql_close() -- 16:25:22.827 INFO [7684]: COREGRADE is starting... -- 16:25:22.827 INFO [7684]: Version from config: 1.0 -- 16:25:22.827 DEBUG [7684]: Connecting to database... -- 16:25:22.827 DEBUG [7684]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:22.827 SQL [7684]: pgsql_db_connect() -- 16:25:22.832 DEBUG [7684]: Database connection successful -- 16:25:22.832 INFO [7684]: _SERVER found -- 16:25:22.832 INFO [7684]: REMOTE_ADDR = 192.168.1.13 -- 16:25:22.832 INFO [7684]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:25:22.832 INFO [7684]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:25:22.832 INFO [7684]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:25:22.832 INFO [7684]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:22.843 INFO [7684]: COREGRADE is stopping... -- 16:25:22.843 DEBUG [7684]: Closing database connection -- 16:25:22.843 SQL [7684]: pgsql_close() -- 16:25:25.365 INFO [7684]: COREGRADE is starting... -- 16:25:25.365 INFO [7684]: Version from config: 1.0 -- 16:25:25.365 DEBUG [7684]: Connecting to database... -- 16:25:25.365 DEBUG [7684]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:25.365 SQL [7684]: pgsql_db_connect() -- 16:25:25.369 DEBUG [7684]: Database connection successful -- 16:25:25.369 INFO [7684]: _SERVER found -- 16:25:25.369 INFO [7684]: REMOTE_ADDR = 192.168.1.13 -- 16:25:25.369 INFO [7684]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:25:25.369 INFO [7684]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:25:25.369 INFO [7684]: QUERY_STRING = /member/page -- 16:25:25.369 INFO [7684]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:25.406 INFO [7684]: COREGRADE is stopping... -- 16:25:25.406 DEBUG [7684]: Closing database connection -- 16:25:25.406 SQL [7684]: pgsql_close() -- 16:25:25.740 INFO [7684]: COREGRADE is starting... -- 16:25:25.741 INFO [7684]: Version from config: 1.0 -- 16:25:25.741 DEBUG [7684]: Connecting to database... -- 16:25:25.741 DEBUG [7684]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:25.741 SQL [7684]: pgsql_db_connect() -- 16:25:25.745 DEBUG [7684]: Database connection successful -- 16:25:25.745 INFO [7684]: _SERVER found -- 16:25:25.745 INFO [7684]: REMOTE_ADDR = 192.168.1.13 -- 16:25:25.745 INFO [7684]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:25:25.745 INFO [7684]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:25:25.745 INFO [7684]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:25:25.745 INFO [7684]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:25.756 INFO [7684]: COREGRADE is stopping... -- 16:25:25.756 DEBUG [7684]: Closing database connection -- 16:25:25.756 SQL [7684]: pgsql_close() -- 16:25:25.758 INFO [7692]: COREGRADE is starting... -- 16:25:25.759 INFO [7692]: Version from config: 1.0 -- 16:25:25.759 DEBUG [7692]: Connecting to database... -- 16:25:25.759 DEBUG [7692]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:25.759 SQL [7692]: pgsql_db_connect() -- 16:25:25.763 DEBUG [7692]: Database connection successful -- 16:25:25.763 INFO [7692]: _SERVER found -- 16:25:25.763 INFO [7692]: REMOTE_ADDR = 192.168.1.13 -- 16:25:25.763 INFO [7692]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:25:25.763 INFO [7692]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:25:25.763 INFO [7692]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:25:25.763 INFO [7692]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:25.774 INFO [7692]: COREGRADE is stopping... -- 16:25:25.775 DEBUG [7692]: Closing database connection -- 16:25:25.775 SQL [7692]: pgsql_close() -- 16:25:30.913 INFO [7693]: COREGRADE is starting... -- 16:25:30.913 INFO [7693]: Version from config: 1.0 -- 16:25:30.913 DEBUG [7693]: Connecting to database... -- 16:25:30.913 DEBUG [7693]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:30.913 SQL [7693]: pgsql_db_connect() -- 16:25:30.917 DEBUG [7693]: Database connection successful -- 16:25:30.917 INFO [7693]: _SERVER found -- 16:25:30.917 INFO [7693]: REMOTE_ADDR = 192.168.1.13 -- 16:25:30.917 INFO [7693]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:25:30.917 INFO [7693]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:25:30.917 INFO [7693]: QUERY_STRING = /member/viewCardAddAction -- 16:25:30.917 INFO [7693]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:30.949 INFO [7693]: COREGRADE is stopping... -- 16:25:30.949 DEBUG [7693]: Closing database connection -- 16:25:30.949 SQL [7693]: pgsql_close() -- 16:25:37.553 INFO [7694]: COREGRADE is starting... -- 16:25:37.553 INFO [7694]: Version from config: 1.0 -- 16:25:37.553 DEBUG [7694]: Connecting to database... -- 16:25:37.553 DEBUG [7694]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:37.553 SQL [7694]: pgsql_db_connect() -- 16:25:37.557 DEBUG [7694]: Database connection successful -- 16:25:37.557 INFO [7694]: _SERVER found -- 16:25:37.557 INFO [7694]: REMOTE_ADDR = 192.168.1.13 -- 16:25:37.557 INFO [7694]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:25:37.557 INFO [7694]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:25:37.557 INFO [7694]: QUERY_STRING = /member/addNotecard -- 16:25:37.557 INFO [7694]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:37.570 INFO [7694]: COREGRADE is stopping... -- 16:25:37.570 DEBUG [7694]: Closing database connection -- 16:25:37.570 SQL [7694]: pgsql_close() -- 16:25:38.707 INFO [7694]: COREGRADE is starting... -- 16:25:38.708 INFO [7694]: Version from config: 1.0 -- 16:25:38.708 DEBUG [7694]: Connecting to database... -- 16:25:38.708 DEBUG [7694]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:38.708 SQL [7694]: pgsql_db_connect() -- 16:25:38.712 DEBUG [7694]: Database connection successful -- 16:25:38.712 INFO [7694]: _SERVER found -- 16:25:38.712 INFO [7694]: REMOTE_ADDR = 192.168.1.13 -- 16:25:38.712 INFO [7694]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:25:38.712 INFO [7694]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:25:38.712 INFO [7694]: QUERY_STRING = /member/configure -- 16:25:38.712 INFO [7694]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:38.749 INFO [7694]: COREGRADE is stopping... -- 16:25:38.749 DEBUG [7694]: Closing database connection -- 16:25:38.749 SQL [7694]: pgsql_close() -- 16:25:39.110 INFO [7694]: COREGRADE is starting... -- 16:25:39.110 INFO [7694]: Version from config: 1.0 -- 16:25:39.110 DEBUG [7694]: Connecting to database... -- 16:25:39.110 DEBUG [7694]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:39.110 SQL [7694]: pgsql_db_connect() -- 16:25:39.120 INFO [7523]: COREGRADE is starting... -- 16:25:39.120 INFO [7523]: Version from config: 1.0 -- 16:25:39.120 DEBUG [7523]: Connecting to database... -- 16:25:39.120 DEBUG [7523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:39.120 SQL [7523]: pgsql_db_connect() -- 16:25:39.114 DEBUG [7694]: Database connection successful -- 16:25:39.114 INFO [7694]: _SERVER found -- 16:25:39.114 INFO [7694]: REMOTE_ADDR = 192.168.1.13 -- 16:25:39.114 INFO [7694]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:25:39.114 INFO [7694]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:25:39.114 INFO [7694]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:25:39.114 INFO [7694]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:39.125 INFO [7694]: COREGRADE is stopping... -- 16:25:39.125 DEBUG [7694]: Closing database connection -- 16:25:39.125 SQL [7694]: pgsql_close() -- 16:25:39.124 DEBUG [7523]: Database connection successful -- 16:25:39.124 INFO [7523]: _SERVER found -- 16:25:39.124 INFO [7523]: REMOTE_ADDR = 192.168.1.13 -- 16:25:39.124 INFO [7523]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:25:39.124 INFO [7523]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:25:39.124 INFO [7523]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:25:39.124 INFO [7523]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:39.136 INFO [7523]: COREGRADE is stopping... -- 16:25:39.136 DEBUG [7523]: Closing database connection -- 16:25:39.136 SQL [7523]: pgsql_close() -- 16:25:41.674 INFO [7523]: COREGRADE is starting... -- 16:25:41.674 INFO [7523]: Version from config: 1.0 -- 16:25:41.674 DEBUG [7523]: Connecting to database... -- 16:25:41.674 DEBUG [7523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:41.674 SQL [7523]: pgsql_db_connect() -- 16:25:41.678 DEBUG [7523]: Database connection successful -- 16:25:41.678 INFO [7523]: _SERVER found -- 16:25:41.678 INFO [7523]: REMOTE_ADDR = 192.168.1.13 -- 16:25:41.678 INFO [7523]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:25:41.678 INFO [7523]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:25:41.678 INFO [7523]: QUERY_STRING = /member/configure -- 16:25:41.678 INFO [7523]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:41.715 INFO [7523]: COREGRADE is stopping... -- 16:25:41.715 DEBUG [7523]: Closing database connection -- 16:25:41.715 SQL [7523]: pgsql_close() -- 16:25:41.884 INFO [7523]: COREGRADE is starting... -- 16:25:41.884 INFO [7523]: Version from config: 1.0 -- 16:25:41.884 DEBUG [7523]: Connecting to database... -- 16:25:41.884 DEBUG [7523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:41.884 SQL [7523]: pgsql_db_connect() -- 16:25:41.899 INFO [7694]: COREGRADE is starting... -- 16:25:41.899 INFO [7694]: Version from config: 1.0 -- 16:25:41.899 DEBUG [7694]: Connecting to database... -- 16:25:41.899 DEBUG [7694]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:41.888 DEBUG [7523]: Database connection successful -- 16:25:41.888 INFO [7523]: _SERVER found -- 16:25:41.888 INFO [7523]: REMOTE_ADDR = 192.168.1.13 -- 16:25:41.888 INFO [7523]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:25:41.888 INFO [7523]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:25:41.888 INFO [7523]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:25:41.888 INFO [7523]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:41.899 INFO [7523]: COREGRADE is stopping... -- 16:25:41.899 SQL [7694]: pgsql_db_connect() -- 16:25:41.899 DEBUG [7523]: Closing database connection -- 16:25:41.899 SQL [7523]: pgsql_close() -- 16:25:41.903 DEBUG [7694]: Database connection successful -- 16:25:41.903 INFO [7694]: _SERVER found -- 16:25:41.903 INFO [7694]: REMOTE_ADDR = 192.168.1.13 -- 16:25:41.903 INFO [7694]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:25:41.903 INFO [7694]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:25:41.903 INFO [7694]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:25:41.903 INFO [7694]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:41.914 INFO [7694]: COREGRADE is stopping... -- 16:25:41.915 DEBUG [7694]: Closing database connection -- 16:25:41.915 SQL [7694]: pgsql_close() -- 16:25:45.738 INFO [7694]: COREGRADE is starting... -- 16:25:45.738 INFO [7694]: Version from config: 1.0 -- 16:25:45.738 DEBUG [7694]: Connecting to database... -- 16:25:45.738 DEBUG [7694]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:45.738 SQL [7694]: pgsql_db_connect() -- 16:25:45.742 DEBUG [7694]: Database connection successful -- 16:25:45.742 INFO [7694]: _SERVER found -- 16:25:45.742 INFO [7694]: REMOTE_ADDR = 192.168.1.13 -- 16:25:45.742 INFO [7694]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:25:45.742 INFO [7694]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:25:45.742 INFO [7694]: QUERY_STRING = /member -- 16:25:45.742 INFO [7694]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:45.778 INFO [7694]: COREGRADE is stopping... -- 16:25:45.778 DEBUG [7694]: Closing database connection -- 16:25:45.778 SQL [7694]: pgsql_close() -- 16:25:45.960 INFO [7694]: COREGRADE is starting... -- 16:25:45.961 INFO [7694]: Version from config: 1.0 -- 16:25:45.961 DEBUG [7694]: Connecting to database... -- 16:25:45.961 DEBUG [7694]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:45.961 SQL [7694]: pgsql_db_connect() -- 16:25:45.971 INFO [7523]: COREGRADE is starting... -- 16:25:45.972 INFO [7523]: Version from config: 1.0 -- 16:25:45.972 DEBUG [7523]: Connecting to database... -- 16:25:45.972 DEBUG [7523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:45.972 SQL [7523]: pgsql_db_connect() -- 16:25:45.965 DEBUG [7694]: Database connection successful -- 16:25:45.965 INFO [7694]: _SERVER found -- 16:25:45.965 INFO [7694]: REMOTE_ADDR = 192.168.1.13 -- 16:25:45.965 INFO [7694]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:25:45.965 INFO [7694]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:25:45.965 INFO [7694]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:25:45.965 INFO [7694]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:45.976 INFO [7694]: COREGRADE is stopping... -- 16:25:45.976 DEBUG [7694]: Closing database connection -- 16:25:45.976 SQL [7694]: pgsql_close() -- 16:25:45.976 DEBUG [7523]: Database connection successful -- 16:25:45.976 INFO [7523]: _SERVER found -- 16:25:45.976 INFO [7523]: REMOTE_ADDR = 192.168.1.13 -- 16:25:45.976 INFO [7523]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:25:45.976 INFO [7523]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:25:45.976 INFO [7523]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:25:45.976 INFO [7523]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:45.987 INFO [7523]: COREGRADE is stopping... -- 16:25:45.987 DEBUG [7523]: Closing database connection -- 16:25:45.987 SQL [7523]: pgsql_close() -- 16:25:48.721 INFO [7525]: COREGRADE is starting... -- 16:25:48.721 INFO [7525]: Version from config: 1.0 -- 16:25:48.721 DEBUG [7525]: Connecting to database... -- 16:25:48.721 DEBUG [7525]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:48.721 SQL [7525]: pgsql_db_connect() -- 16:25:48.725 DEBUG [7525]: Database connection successful -- 16:25:48.725 INFO [7525]: _SERVER found -- 16:25:48.725 INFO [7525]: REMOTE_ADDR = 192.168.1.13 -- 16:25:48.725 INFO [7525]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:25:48.725 INFO [7525]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:25:48.725 INFO [7525]: QUERY_STRING = /member/page -- 16:25:48.725 INFO [7525]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:48.763 INFO [7525]: COREGRADE is stopping... -- 16:25:48.763 DEBUG [7525]: Closing database connection -- 16:25:48.763 SQL [7525]: pgsql_close() -- 16:25:48.889 INFO [7525]: COREGRADE is starting... -- 16:25:48.889 INFO [7525]: Version from config: 1.0 -- 16:25:48.889 DEBUG [7525]: Connecting to database... -- 16:25:48.889 DEBUG [7525]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:48.889 SQL [7525]: pgsql_db_connect() -- 16:25:48.893 DEBUG [7525]: Database connection successful -- 16:25:48.893 INFO [7525]: _SERVER found -- 16:25:48.893 INFO [7525]: REMOTE_ADDR = 192.168.1.13 -- 16:25:48.893 INFO [7525]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:25:48.893 INFO [7525]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:25:48.893 INFO [7525]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:25:48.893 INFO [7525]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:48.904 INFO [7525]: COREGRADE is stopping... -- 16:25:48.904 DEBUG [7525]: Closing database connection -- 16:25:48.904 SQL [7525]: pgsql_close() -- 16:25:48.963 INFO [7525]: COREGRADE is starting... -- 16:25:48.964 INFO [7525]: Version from config: 1.0 -- 16:25:48.964 DEBUG [7525]: Connecting to database... -- 16:25:48.964 DEBUG [7525]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:48.964 SQL [7525]: pgsql_db_connect() -- 16:25:48.968 DEBUG [7525]: Database connection successful -- 16:25:48.968 INFO [7525]: _SERVER found -- 16:25:48.968 INFO [7525]: REMOTE_ADDR = 192.168.1.13 -- 16:25:48.968 INFO [7525]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:25:48.968 INFO [7525]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:25:48.968 INFO [7525]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:25:48.968 INFO [7525]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:48.978 INFO [7525]: COREGRADE is stopping... -- 16:25:48.979 DEBUG [7525]: Closing database connection -- 16:25:48.979 SQL [7525]: pgsql_close() -- 16:25:53.023 INFO [7525]: COREGRADE is starting... -- 16:25:53.024 INFO [7525]: Version from config: 1.0 -- 16:25:53.024 DEBUG [7525]: Connecting to database... -- 16:25:53.024 DEBUG [7525]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:53.024 SQL [7525]: pgsql_db_connect() -- 16:25:53.028 DEBUG [7525]: Database connection successful -- 16:25:53.028 INFO [7525]: _SERVER found -- 16:25:53.028 INFO [7525]: REMOTE_ADDR = 192.168.1.13 -- 16:25:53.028 INFO [7525]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:25:53.028 INFO [7525]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:25:53.028 INFO [7525]: QUERY_STRING = /member/configure -- 16:25:53.028 INFO [7525]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:53.064 INFO [7525]: COREGRADE is stopping... -- 16:25:53.064 DEBUG [7525]: Closing database connection -- 16:25:53.064 SQL [7525]: pgsql_close() -- 16:25:53.235 INFO [7525]: COREGRADE is starting... -- 16:25:53.235 INFO [7525]: Version from config: 1.0 -- 16:25:53.235 DEBUG [7525]: Connecting to database... -- 16:25:53.235 DEBUG [7525]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:53.235 SQL [7525]: pgsql_db_connect() -- 16:25:53.239 DEBUG [7525]: Database connection successful -- 16:25:53.239 INFO [7525]: _SERVER found -- 16:25:53.239 INFO [7525]: REMOTE_ADDR = 192.168.1.13 -- 16:25:53.239 INFO [7525]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:25:53.239 INFO [7525]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:25:53.239 INFO [7525]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:25:53.239 INFO [7525]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:53.250 INFO [7525]: COREGRADE is stopping... -- 16:25:53.250 DEBUG [7525]: Closing database connection -- 16:25:53.250 SQL [7525]: pgsql_close() -- 16:25:53.280 INFO [7525]: COREGRADE is starting... -- 16:25:53.281 INFO [7525]: Version from config: 1.0 -- 16:25:53.281 DEBUG [7525]: Connecting to database... -- 16:25:53.281 DEBUG [7525]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:53.281 SQL [7525]: pgsql_db_connect() -- 16:25:53.285 DEBUG [7525]: Database connection successful -- 16:25:53.285 INFO [7525]: _SERVER found -- 16:25:53.285 INFO [7525]: REMOTE_ADDR = 192.168.1.13 -- 16:25:53.285 INFO [7525]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:25:53.285 INFO [7525]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:25:53.285 INFO [7525]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:25:53.285 INFO [7525]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:53.295 INFO [7525]: COREGRADE is stopping... -- 16:25:53.296 DEBUG [7525]: Closing database connection -- 16:25:53.296 SQL [7525]: pgsql_close() -- 16:25:56.901 INFO [7526]: COREGRADE is starting... -- 16:25:56.902 INFO [7526]: Version from config: 1.0 -- 16:25:56.902 DEBUG [7526]: Connecting to database... -- 16:25:56.902 DEBUG [7526]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:56.902 SQL [7526]: pgsql_db_connect() -- 16:25:56.906 DEBUG [7526]: Database connection successful -- 16:25:56.906 INFO [7526]: _SERVER found -- 16:25:56.906 INFO [7526]: REMOTE_ADDR = 192.168.1.13 -- 16:25:56.906 INFO [7526]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:25:56.906 INFO [7526]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:25:56.906 INFO [7526]: QUERY_STRING = /member -- 16:25:56.906 INFO [7526]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:56.942 INFO [7526]: COREGRADE is stopping... -- 16:25:56.942 DEBUG [7526]: Closing database connection -- 16:25:56.942 SQL [7526]: pgsql_close() -- 16:25:57.133 INFO [7526]: COREGRADE is starting... -- 16:25:57.134 INFO [7526]: Version from config: 1.0 -- 16:25:57.134 DEBUG [7526]: Connecting to database... -- 16:25:57.134 DEBUG [7526]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:57.134 SQL [7526]: pgsql_db_connect() -- 16:25:57.138 DEBUG [7526]: Database connection successful -- 16:25:57.138 INFO [7526]: _SERVER found -- 16:25:57.138 INFO [7526]: REMOTE_ADDR = 192.168.1.13 -- 16:25:57.138 INFO [7526]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:25:57.138 INFO [7526]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:25:57.138 INFO [7526]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:25:57.138 INFO [7526]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:57.149 INFO [7526]: COREGRADE is stopping... -- 16:25:57.149 DEBUG [7526]: Closing database connection -- 16:25:57.149 SQL [7526]: pgsql_close() -- 16:25:57.151 INFO [7524]: COREGRADE is starting... -- 16:25:57.151 INFO [7524]: Version from config: 1.0 -- 16:25:57.151 DEBUG [7524]: Connecting to database... -- 16:25:57.151 DEBUG [7524]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:57.151 SQL [7524]: pgsql_db_connect() -- 16:25:57.155 DEBUG [7524]: Database connection successful -- 16:25:57.155 INFO [7524]: _SERVER found -- 16:25:57.155 INFO [7524]: REMOTE_ADDR = 192.168.1.13 -- 16:25:57.155 INFO [7524]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:25:57.155 INFO [7524]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:25:57.155 INFO [7524]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:25:57.155 INFO [7524]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:57.167 INFO [7524]: COREGRADE is stopping... -- 16:25:57.167 DEBUG [7524]: Closing database connection -- 16:25:57.167 SQL [7524]: pgsql_close() -- 16:25:58.748 INFO [7524]: COREGRADE is starting... -- 16:25:58.748 INFO [7524]: Version from config: 1.0 -- 16:25:58.748 DEBUG [7524]: Connecting to database... -- 16:25:58.749 DEBUG [7524]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:58.749 SQL [7524]: pgsql_db_connect() -- 16:25:58.753 DEBUG [7524]: Database connection successful -- 16:25:58.753 INFO [7524]: _SERVER found -- 16:25:58.753 INFO [7524]: REMOTE_ADDR = 192.168.1.13 -- 16:25:58.753 INFO [7524]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:25:58.753 INFO [7524]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:25:58.753 INFO [7524]: QUERY_STRING = /member/page -- 16:25:58.753 INFO [7524]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:58.793 INFO [7524]: COREGRADE is stopping... -- 16:25:58.793 DEBUG [7524]: Closing database connection -- 16:25:58.793 SQL [7524]: pgsql_close() -- 16:25:58.945 INFO [7524]: COREGRADE is starting... -- 16:25:58.945 INFO [7524]: Version from config: 1.0 -- 16:25:58.945 DEBUG [7524]: Connecting to database... -- 16:25:58.945 DEBUG [7524]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:58.945 SQL [7524]: pgsql_db_connect() -- 16:25:58.949 DEBUG [7524]: Database connection successful -- 16:25:58.949 INFO [7524]: _SERVER found -- 16:25:58.949 INFO [7524]: REMOTE_ADDR = 192.168.1.13 -- 16:25:58.949 INFO [7524]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:25:58.949 INFO [7524]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:25:58.949 INFO [7524]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:25:58.949 INFO [7524]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:58.960 INFO [7524]: COREGRADE is stopping... -- 16:25:58.960 DEBUG [7524]: Closing database connection -- 16:25:58.960 SQL [7524]: pgsql_close() -- 16:25:59.016 INFO [7524]: COREGRADE is starting... -- 16:25:59.017 INFO [7524]: Version from config: 1.0 -- 16:25:59.017 DEBUG [7524]: Connecting to database... -- 16:25:59.017 DEBUG [7524]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:59.017 SQL [7524]: pgsql_db_connect() -- 16:25:59.021 DEBUG [7524]: Database connection successful -- 16:25:59.021 INFO [7524]: _SERVER found -- 16:25:59.021 INFO [7524]: REMOTE_ADDR = 192.168.1.13 -- 16:25:59.021 INFO [7524]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:25:59.021 INFO [7524]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:25:59.021 INFO [7524]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:25:59.021 INFO [7524]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:59.032 INFO [7524]: COREGRADE is stopping... -- 16:25:59.032 DEBUG [7524]: Closing database connection -- 16:25:59.032 SQL [7524]: pgsql_close() -- 16:26:00.343 INFO [7524]: COREGRADE is starting... -- 16:26:00.343 INFO [7524]: Version from config: 1.0 -- 16:26:00.343 DEBUG [7524]: Connecting to database... -- 16:26:00.343 DEBUG [7524]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:00.343 SQL [7524]: pgsql_db_connect() -- 16:26:00.347 DEBUG [7524]: Database connection successful -- 16:26:00.347 INFO [7524]: _SERVER found -- 16:26:00.347 INFO [7524]: REMOTE_ADDR = 192.168.1.13 -- 16:26:00.347 INFO [7524]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:26:00.347 INFO [7524]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:26:00.347 INFO [7524]: QUERY_STRING = /member/configure -- 16:26:00.347 INFO [7524]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:00.384 INFO [7524]: COREGRADE is stopping... -- 16:26:00.384 DEBUG [7524]: Closing database connection -- 16:26:00.384 SQL [7524]: pgsql_close() -- 16:26:00.555 INFO [7524]: COREGRADE is starting... -- 16:26:00.555 INFO [7524]: Version from config: 1.0 -- 16:26:00.555 DEBUG [7524]: Connecting to database... -- 16:26:00.555 DEBUG [7524]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:00.555 SQL [7524]: pgsql_db_connect() -- 16:26:00.562 INFO [7526]: COREGRADE is starting... -- 16:26:00.562 INFO [7526]: Version from config: 1.0 -- 16:26:00.562 DEBUG [7526]: Connecting to database... -- 16:26:00.562 DEBUG [7526]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:00.562 SQL [7526]: pgsql_db_connect() -- 16:26:00.559 DEBUG [7524]: Database connection successful -- 16:26:00.559 INFO [7524]: _SERVER found -- 16:26:00.559 INFO [7524]: REMOTE_ADDR = 192.168.1.13 -- 16:26:00.559 INFO [7524]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:26:00.559 INFO [7524]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:26:00.559 INFO [7524]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:26:00.559 INFO [7524]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:00.570 INFO [7524]: COREGRADE is stopping... -- 16:26:00.570 DEBUG [7524]: Closing database connection -- 16:26:00.570 SQL [7524]: pgsql_close() -- 16:26:00.566 DEBUG [7526]: Database connection successful -- 16:26:00.566 INFO [7526]: _SERVER found -- 16:26:00.566 INFO [7526]: REMOTE_ADDR = 192.168.1.13 -- 16:26:00.566 INFO [7526]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:26:00.566 INFO [7526]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:26:00.566 INFO [7526]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:26:00.566 INFO [7526]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:00.577 INFO [7526]: COREGRADE is stopping... -- 16:26:00.577 DEBUG [7526]: Closing database connection -- 16:26:00.577 SQL [7526]: pgsql_close() -- 16:26:11.158 INFO [7637]: COREGRADE is starting... -- 16:26:11.159 INFO [7637]: Version from config: 1.0 -- 16:26:11.159 DEBUG [7637]: Connecting to database... -- 16:26:11.159 DEBUG [7637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:11.159 SQL [7637]: pgsql_db_connect() -- 16:26:11.163 DEBUG [7637]: Database connection successful -- 16:26:11.163 INFO [7637]: _SERVER found -- 16:26:11.163 INFO [7637]: REMOTE_ADDR = 192.168.1.13 -- 16:26:11.163 INFO [7637]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:26:11.163 INFO [7637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:26:11.163 INFO [7637]: QUERY_STRING = /member -- 16:26:11.163 INFO [7637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:11.199 INFO [7637]: COREGRADE is stopping... -- 16:26:11.199 DEBUG [7637]: Closing database connection -- 16:26:11.199 SQL [7637]: pgsql_close() -- 16:26:11.460 INFO [7637]: COREGRADE is starting... -- 16:26:11.460 INFO [7637]: Version from config: 1.0 -- 16:26:11.460 DEBUG [7637]: Connecting to database... -- 16:26:11.460 DEBUG [7637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:11.460 SQL [7637]: pgsql_db_connect() -- 16:26:11.464 DEBUG [7637]: Database connection successful -- 16:26:11.464 INFO [7637]: _SERVER found -- 16:26:11.464 INFO [7637]: REMOTE_ADDR = 192.168.1.13 -- 16:26:11.464 INFO [7637]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:26:11.464 INFO [7637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:26:11.464 INFO [7637]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:26:11.464 INFO [7637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:11.475 INFO [7637]: COREGRADE is stopping... -- 16:26:11.476 DEBUG [7637]: Closing database connection -- 16:26:11.476 SQL [7637]: pgsql_close() -- 16:26:11.482 INFO [7522]: COREGRADE is starting... -- 16:26:11.482 INFO [7522]: Version from config: 1.0 -- 16:26:11.482 DEBUG [7522]: Connecting to database... -- 16:26:11.482 DEBUG [7522]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:11.482 SQL [7522]: pgsql_db_connect() -- 16:26:11.486 DEBUG [7522]: Database connection successful -- 16:26:11.486 INFO [7522]: _SERVER found -- 16:26:11.486 INFO [7522]: REMOTE_ADDR = 192.168.1.13 -- 16:26:11.486 INFO [7522]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:26:11.486 INFO [7522]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:26:11.486 INFO [7522]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:26:11.486 INFO [7522]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:11.497 INFO [7522]: COREGRADE is stopping... -- 16:26:11.497 DEBUG [7522]: Closing database connection -- 16:26:11.497 SQL [7522]: pgsql_close() -- 16:26:12.288 INFO [7522]: COREGRADE is starting... -- 16:26:12.289 INFO [7522]: Version from config: 1.0 -- 16:26:12.289 DEBUG [7522]: Connecting to database... -- 16:26:12.289 DEBUG [7522]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:12.289 SQL [7522]: pgsql_db_connect() -- 16:26:12.293 DEBUG [7522]: Database connection successful -- 16:26:12.293 INFO [7522]: _SERVER found -- 16:26:12.293 INFO [7522]: REMOTE_ADDR = 192.168.1.13 -- 16:26:12.293 INFO [7522]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:26:12.293 INFO [7522]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:26:12.293 INFO [7522]: QUERY_STRING = /member/page -- 16:26:12.293 INFO [7522]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:12.330 INFO [7522]: COREGRADE is stopping... -- 16:26:12.330 DEBUG [7522]: Closing database connection -- 16:26:12.330 SQL [7522]: pgsql_close() -- 16:26:12.535 INFO [7522]: COREGRADE is starting... -- 16:26:12.536 INFO [7522]: Version from config: 1.0 -- 16:26:12.536 DEBUG [7522]: Connecting to database... -- 16:26:12.536 DEBUG [7522]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:12.536 SQL [7522]: pgsql_db_connect() -- 16:26:12.540 DEBUG [7522]: Database connection successful -- 16:26:12.540 INFO [7522]: _SERVER found -- 16:26:12.540 INFO [7522]: REMOTE_ADDR = 192.168.1.13 -- 16:26:12.540 INFO [7522]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:26:12.540 INFO [7522]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:26:12.540 INFO [7522]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:26:12.540 INFO [7522]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:12.551 INFO [7522]: COREGRADE is stopping... -- 16:26:12.551 DEBUG [7522]: Closing database connection -- 16:26:12.551 SQL [7522]: pgsql_close() -- 16:26:12.610 INFO [7522]: COREGRADE is starting... -- 16:26:12.610 INFO [7522]: Version from config: 1.0 -- 16:26:12.610 DEBUG [7522]: Connecting to database... -- 16:26:12.610 DEBUG [7522]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:12.610 SQL [7522]: pgsql_db_connect() -- 16:26:12.614 DEBUG [7522]: Database connection successful -- 16:26:12.614 INFO [7522]: _SERVER found -- 16:26:12.614 INFO [7522]: REMOTE_ADDR = 192.168.1.13 -- 16:26:12.614 INFO [7522]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:26:12.614 INFO [7522]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:26:12.614 INFO [7522]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:26:12.614 INFO [7522]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:12.625 INFO [7522]: COREGRADE is stopping... -- 16:26:12.625 DEBUG [7522]: Closing database connection -- 16:26:12.626 SQL [7522]: pgsql_close() -- 16:26:15.030 INFO [7522]: COREGRADE is starting... -- 16:26:15.030 INFO [7522]: Version from config: 1.0 -- 16:26:15.030 DEBUG [7522]: Connecting to database... -- 16:26:15.030 DEBUG [7522]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:15.030 SQL [7522]: pgsql_db_connect() -- 16:26:15.035 DEBUG [7522]: Database connection successful -- 16:26:15.035 INFO [7522]: _SERVER found -- 16:26:15.035 INFO [7522]: REMOTE_ADDR = 192.168.1.13 -- 16:26:15.035 INFO [7522]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:26:15.035 INFO [7522]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:26:15.035 INFO [7522]: QUERY_STRING = /member/viewCardAddAction -- 16:26:15.035 INFO [7522]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:15.066 INFO [7522]: COREGRADE is stopping... -- 16:26:15.066 DEBUG [7522]: Closing database connection -- 16:26:15.066 SQL [7522]: pgsql_close() -- 16:26:19.019 INFO [7684]: COREGRADE is starting... -- 16:26:19.019 INFO [7684]: Version from config: 1.0 -- 16:26:19.019 DEBUG [7684]: Connecting to database... -- 16:26:19.019 DEBUG [7684]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:19.019 SQL [7684]: pgsql_db_connect() -- 16:26:19.024 DEBUG [7684]: Database connection successful -- 16:26:19.024 INFO [7684]: _SERVER found -- 16:26:19.024 INFO [7684]: REMOTE_ADDR = 192.168.1.13 -- 16:26:19.024 INFO [7684]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:26:19.024 INFO [7684]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:26:19.024 INFO [7684]: QUERY_STRING = /member/addNotecard -- 16:26:19.024 INFO [7684]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:19.035 INFO [7684]: COREGRADE is stopping... -- 16:26:19.035 DEBUG [7684]: Closing database connection -- 16:26:19.035 SQL [7684]: pgsql_close() -- 16:26:20.140 INFO [7684]: COREGRADE is starting... -- 16:26:20.140 INFO [7684]: Version from config: 1.0 -- 16:26:20.141 DEBUG [7684]: Connecting to database... -- 16:26:20.141 DEBUG [7684]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:20.141 SQL [7684]: pgsql_db_connect() -- 16:26:20.145 DEBUG [7684]: Database connection successful -- 16:26:20.145 INFO [7684]: _SERVER found -- 16:26:20.145 INFO [7684]: REMOTE_ADDR = 192.168.1.13 -- 16:26:20.145 INFO [7684]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:26:20.145 INFO [7684]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:26:20.145 INFO [7684]: QUERY_STRING = /member/configure -- 16:26:20.145 INFO [7684]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:20.181 INFO [7684]: COREGRADE is stopping... -- 16:26:20.181 DEBUG [7684]: Closing database connection -- 16:26:20.181 SQL [7684]: pgsql_close() -- 16:26:20.354 INFO [7684]: COREGRADE is starting... -- 16:26:20.354 INFO [7684]: Version from config: 1.0 -- 16:26:20.354 DEBUG [7684]: Connecting to database... -- 16:26:20.354 DEBUG [7684]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:20.354 SQL [7684]: pgsql_db_connect() -- 16:26:20.358 DEBUG [7684]: Database connection successful -- 16:26:20.358 INFO [7684]: _SERVER found -- 16:26:20.358 INFO [7684]: REMOTE_ADDR = 192.168.1.13 -- 16:26:20.358 INFO [7684]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:26:20.358 INFO [7684]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:26:20.358 INFO [7684]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:26:20.358 INFO [7684]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:20.369 INFO [7684]: COREGRADE is stopping... -- 16:26:20.369 DEBUG [7684]: Closing database connection -- 16:26:20.369 SQL [7684]: pgsql_close() -- 16:26:20.372 INFO [7692]: COREGRADE is starting... -- 16:26:20.372 INFO [7692]: Version from config: 1.0 -- 16:26:20.372 DEBUG [7692]: Connecting to database... -- 16:26:20.372 DEBUG [7692]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:20.372 SQL [7692]: pgsql_db_connect() -- 16:26:20.376 DEBUG [7692]: Database connection successful -- 16:26:20.376 INFO [7692]: _SERVER found -- 16:26:20.376 INFO [7692]: REMOTE_ADDR = 192.168.1.13 -- 16:26:20.376 INFO [7692]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:26:20.376 INFO [7692]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:26:20.376 INFO [7692]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:26:20.376 INFO [7692]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:20.387 INFO [7692]: COREGRADE is stopping... -- 16:26:20.387 DEBUG [7692]: Closing database connection -- 16:26:20.387 SQL [7692]: pgsql_close() -- 16:26:27.879 INFO [7693]: COREGRADE is starting... -- 16:26:27.879 INFO [7693]: Version from config: 1.0 -- 16:26:27.879 DEBUG [7693]: Connecting to database... -- 16:26:27.879 DEBUG [7693]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:27.879 SQL [7693]: pgsql_db_connect() -- 16:26:27.884 DEBUG [7693]: Database connection successful -- 16:26:27.884 INFO [7693]: _SERVER found -- 16:26:27.884 INFO [7693]: REMOTE_ADDR = 192.168.1.13 -- 16:26:27.884 INFO [7693]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:26:27.884 INFO [7693]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:26:27.884 INFO [7693]: QUERY_STRING = /member -- 16:26:27.884 INFO [7693]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:27.921 INFO [7693]: COREGRADE is stopping... -- 16:26:27.921 DEBUG [7693]: Closing database connection -- 16:26:27.921 SQL [7693]: pgsql_close() -- 16:26:28.101 INFO [7693]: COREGRADE is starting... -- 16:26:28.101 INFO [7693]: Version from config: 1.0 -- 16:26:28.101 DEBUG [7693]: Connecting to database... -- 16:26:28.101 DEBUG [7693]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:28.102 SQL [7693]: pgsql_db_connect() -- 16:26:28.106 DEBUG [7693]: Database connection successful -- 16:26:28.106 INFO [7693]: _SERVER found -- 16:26:28.106 INFO [7693]: REMOTE_ADDR = 192.168.1.13 -- 16:26:28.106 INFO [7693]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:26:28.106 INFO [7693]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:26:28.106 INFO [7693]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:26:28.106 INFO [7693]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:28.117 INFO [7693]: COREGRADE is stopping... -- 16:26:28.117 DEBUG [7693]: Closing database connection -- 16:26:28.117 SQL [7693]: pgsql_close() -- 16:26:28.118 INFO [7694]: COREGRADE is starting... -- 16:26:28.118 INFO [7694]: Version from config: 1.0 -- 16:26:28.118 DEBUG [7694]: Connecting to database... -- 16:26:28.118 DEBUG [7694]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:28.118 SQL [7694]: pgsql_db_connect() -- 16:26:28.122 DEBUG [7694]: Database connection successful -- 16:26:28.122 INFO [7694]: _SERVER found -- 16:26:28.122 INFO [7694]: REMOTE_ADDR = 192.168.1.13 -- 16:26:28.122 INFO [7694]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:26:28.122 INFO [7694]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:26:28.122 INFO [7694]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:26:28.122 INFO [7694]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:28.133 INFO [7694]: COREGRADE is stopping... -- 16:26:28.133 DEBUG [7694]: Closing database connection -- 16:26:28.133 SQL [7694]: pgsql_close() -- 16:26:33.071 INFO [7694]: COREGRADE is starting... -- 16:26:33.071 INFO [7694]: Version from config: 1.0 -- 16:26:33.071 DEBUG [7694]: Connecting to database... -- 16:26:33.071 DEBUG [7694]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:33.071 SQL [7694]: pgsql_db_connect() -- 16:26:33.075 DEBUG [7694]: Database connection successful -- 16:26:33.076 INFO [7694]: _SERVER found -- 16:26:33.076 INFO [7694]: REMOTE_ADDR = 192.168.1.13 -- 16:26:33.076 INFO [7694]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:26:33.076 INFO [7694]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:26:33.076 INFO [7694]: QUERY_STRING = /member/configure -- 16:26:33.076 INFO [7694]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:33.112 INFO [7694]: COREGRADE is stopping... -- 16:26:33.112 DEBUG [7694]: Closing database connection -- 16:26:33.112 SQL [7694]: pgsql_close() -- 16:26:33.279 INFO [7694]: COREGRADE is starting... -- 16:26:33.279 INFO [7694]: Version from config: 1.0 -- 16:26:33.279 DEBUG [7694]: Connecting to database... -- 16:26:33.279 DEBUG [7694]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:33.279 SQL [7694]: pgsql_db_connect() -- 16:26:33.284 DEBUG [7694]: Database connection successful -- 16:26:33.284 INFO [7694]: _SERVER found -- 16:26:33.284 INFO [7694]: REMOTE_ADDR = 192.168.1.13 -- 16:26:33.284 INFO [7694]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:26:33.284 INFO [7694]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:26:33.284 INFO [7694]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:26:33.284 INFO [7694]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:33.295 INFO [7694]: COREGRADE is stopping... -- 16:26:33.295 DEBUG [7694]: Closing database connection -- 16:26:33.295 SQL [7694]: pgsql_close() -- 16:26:33.305 INFO [7694]: COREGRADE is starting... -- 16:26:33.305 INFO [7694]: Version from config: 1.0 -- 16:26:33.305 DEBUG [7694]: Connecting to database... -- 16:26:33.306 DEBUG [7694]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:33.306 SQL [7694]: pgsql_db_connect() -- 16:26:33.309 DEBUG [7694]: Database connection successful -- 16:26:33.309 INFO [7694]: _SERVER found -- 16:26:33.309 INFO [7694]: REMOTE_ADDR = 192.168.1.13 -- 16:26:33.309 INFO [7694]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:26:33.309 INFO [7694]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:26:33.309 INFO [7694]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:26:33.309 INFO [7694]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:33.320 INFO [7694]: COREGRADE is stopping... -- 16:26:33.320 DEBUG [7694]: Closing database connection -- 16:26:33.320 SQL [7694]: pgsql_close() -- 16:26:38.010 INFO [7523]: COREGRADE is starting... -- 16:26:38.011 INFO [7523]: Version from config: 1.0 -- 16:26:38.011 DEBUG [7523]: Connecting to database... -- 16:26:38.011 DEBUG [7523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:38.011 SQL [7523]: pgsql_db_connect() -- 16:26:38.015 DEBUG [7523]: Database connection successful -- 16:26:38.015 INFO [7523]: _SERVER found -- 16:26:38.015 INFO [7523]: REMOTE_ADDR = 192.168.1.13 -- 16:26:38.015 INFO [7523]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:26:38.015 INFO [7523]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:26:38.015 INFO [7523]: QUERY_STRING = /member/configure -- 16:26:38.015 INFO [7523]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:38.052 INFO [7523]: COREGRADE is stopping... -- 16:26:38.052 DEBUG [7523]: Closing database connection -- 16:26:38.052 SQL [7523]: pgsql_close() -- 16:26:38.224 INFO [7523]: COREGRADE is starting... -- 16:26:38.224 INFO [7523]: Version from config: 1.0 -- 16:26:38.224 DEBUG [7523]: Connecting to database... -- 16:26:38.224 DEBUG [7523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:38.224 SQL [7523]: pgsql_db_connect() -- 16:26:38.228 DEBUG [7523]: Database connection successful -- 16:26:38.228 INFO [7523]: _SERVER found -- 16:26:38.228 INFO [7523]: REMOTE_ADDR = 192.168.1.13 -- 16:26:38.228 INFO [7523]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:26:38.228 INFO [7523]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:26:38.228 INFO [7523]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:26:38.228 INFO [7523]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:38.240 INFO [7523]: COREGRADE is stopping... -- 16:26:38.240 DEBUG [7523]: Closing database connection -- 16:26:38.240 SQL [7523]: pgsql_close() -- 16:26:38.242 INFO [7525]: COREGRADE is starting... -- 16:26:38.243 INFO [7525]: Version from config: 1.0 -- 16:26:38.243 DEBUG [7525]: Connecting to database... -- 16:26:38.243 DEBUG [7525]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:38.243 SQL [7525]: pgsql_db_connect() -- 16:26:38.247 DEBUG [7525]: Database connection successful -- 16:26:38.247 INFO [7525]: _SERVER found -- 16:26:38.247 INFO [7525]: REMOTE_ADDR = 192.168.1.13 -- 16:26:38.247 INFO [7525]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:26:38.247 INFO [7525]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:26:38.247 INFO [7525]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:26:38.247 INFO [7525]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:38.258 INFO [7525]: COREGRADE is stopping... -- 16:26:38.258 DEBUG [7525]: Closing database connection -- 16:26:38.258 SQL [7525]: pgsql_close() -- 16:26:52.500 INFO [7524]: COREGRADE is starting... -- 16:26:52.501 INFO [7524]: Version from config: 1.0 -- 16:26:52.501 DEBUG [7524]: Connecting to database... -- 16:26:52.501 DEBUG [7524]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:52.501 SQL [7524]: pgsql_db_connect() -- 16:26:52.505 DEBUG [7524]: Database connection successful -- 16:26:52.505 INFO [7524]: _SERVER found -- 16:26:52.505 INFO [7524]: REMOTE_ADDR = 192.168.1.13 -- 16:26:52.505 INFO [7524]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:26:52.505 INFO [7524]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:26:52.505 INFO [7524]: QUERY_STRING = /member/configure -- 16:26:52.505 INFO [7524]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:52.543 INFO [7524]: COREGRADE is stopping... -- 16:26:52.543 DEBUG [7524]: Closing database connection -- 16:26:52.543 SQL [7524]: pgsql_close() -- 16:26:52.812 INFO [7524]: COREGRADE is starting... -- 16:26:52.812 INFO [7524]: Version from config: 1.0 -- 16:26:52.812 DEBUG [7524]: Connecting to database... -- 16:26:52.812 DEBUG [7524]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:52.812 SQL [7524]: pgsql_db_connect() -- 16:26:52.816 DEBUG [7524]: Database connection successful -- 16:26:52.816 INFO [7524]: _SERVER found -- 16:26:52.816 INFO [7524]: REMOTE_ADDR = 192.168.1.13 -- 16:26:52.816 INFO [7524]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:26:52.816 INFO [7524]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:26:52.816 INFO [7524]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:26:52.816 INFO [7524]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:52.827 INFO [7524]: COREGRADE is stopping... -- 16:26:52.827 DEBUG [7524]: Closing database connection -- 16:26:52.827 SQL [7524]: pgsql_close() -- 16:26:52.834 INFO [7526]: COREGRADE is starting... -- 16:26:52.835 INFO [7526]: Version from config: 1.0 -- 16:26:52.835 DEBUG [7526]: Connecting to database... -- 16:26:52.835 DEBUG [7526]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:52.835 SQL [7526]: pgsql_db_connect() -- 16:26:52.839 DEBUG [7526]: Database connection successful -- 16:26:52.839 INFO [7526]: _SERVER found -- 16:26:52.839 INFO [7526]: REMOTE_ADDR = 192.168.1.13 -- 16:26:52.839 INFO [7526]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:26:52.839 INFO [7526]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:26:52.839 INFO [7526]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:26:52.839 INFO [7526]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:52.851 INFO [7526]: COREGRADE is stopping... -- 16:26:52.851 DEBUG [7526]: Closing database connection -- 16:26:52.851 SQL [7526]: pgsql_close() -- 16:27:07.543 INFO [7637]: COREGRADE is starting... -- 16:27:07.543 INFO [7637]: Version from config: 1.0 -- 16:27:07.543 DEBUG [7637]: Connecting to database... -- 16:27:07.543 DEBUG [7637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:27:07.543 SQL [7637]: pgsql_db_connect() -- 16:27:07.548 DEBUG [7637]: Database connection successful -- 16:27:07.548 INFO [7637]: _SERVER found -- 16:27:07.548 INFO [7637]: REMOTE_ADDR = 192.168.1.13 -- 16:27:07.548 INFO [7637]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:27:07.548 INFO [7637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:27:07.548 INFO [7637]: QUERY_STRING = /member/configure -- 16:27:07.548 INFO [7637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:27:07.584 INFO [7637]: COREGRADE is stopping... -- 16:27:07.584 DEBUG [7637]: Closing database connection -- 16:27:07.584 SQL [7637]: pgsql_close() -- 16:27:07.917 INFO [7637]: COREGRADE is starting... -- 16:27:07.917 INFO [7637]: Version from config: 1.0 -- 16:27:07.918 DEBUG [7637]: Connecting to database... -- 16:27:07.918 DEBUG [7637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:27:07.918 SQL [7637]: pgsql_db_connect() -- 16:27:07.922 DEBUG [7637]: Database connection successful -- 16:27:07.922 INFO [7637]: _SERVER found -- 16:27:07.922 INFO [7637]: REMOTE_ADDR = 192.168.1.13 -- 16:27:07.922 INFO [7637]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:27:07.922 INFO [7637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:27:07.922 INFO [7637]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:27:07.922 INFO [7637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:27:07.933 INFO [7637]: COREGRADE is stopping... -- 16:27:07.933 DEBUG [7637]: Closing database connection -- 16:27:07.933 SQL [7637]: pgsql_close() -- 16:27:07.945 INFO [7637]: COREGRADE is starting... -- 16:27:07.945 INFO [7637]: Version from config: 1.0 -- 16:27:07.945 DEBUG [7637]: Connecting to database... -- 16:27:07.945 DEBUG [7637]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:27:07.946 SQL [7637]: pgsql_db_connect() -- 16:27:07.950 DEBUG [7637]: Database connection successful -- 16:27:07.950 INFO [7637]: _SERVER found -- 16:27:07.950 INFO [7637]: REMOTE_ADDR = 192.168.1.13 -- 16:27:07.950 INFO [7637]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:27:07.950 INFO [7637]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:27:07.950 INFO [7637]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:27:07.950 INFO [7637]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:27:07.961 INFO [7637]: COREGRADE is stopping... -- 16:27:07.961 DEBUG [7637]: Closing database connection -- 16:27:07.961 SQL [7637]: pgsql_close() -- 16:27:15.071 INFO [7522]: COREGRADE is starting... -- 16:27:15.071 INFO [7522]: Version from config: 1.0 -- 16:27:15.071 DEBUG [7522]: Connecting to database... -- 16:27:15.071 DEBUG [7522]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:27:15.071 SQL [7522]: pgsql_db_connect() -- 16:27:15.076 DEBUG [7522]: Database connection successful -- 16:27:15.076 INFO [7522]: _SERVER found -- 16:27:15.076 INFO [7522]: REMOTE_ADDR = 192.168.1.13 -- 16:27:15.076 INFO [7522]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:27:15.076 INFO [7522]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:27:15.076 INFO [7522]: QUERY_STRING = /member -- 16:27:15.076 INFO [7522]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:27:15.112 INFO [7522]: COREGRADE is stopping... -- 16:27:15.112 DEBUG [7522]: Closing database connection -- 16:27:15.112 SQL [7522]: pgsql_close() -- 16:27:15.349 INFO [7522]: COREGRADE is starting... -- 16:27:15.349 INFO [7522]: Version from config: 1.0 -- 16:27:15.350 DEBUG [7522]: Connecting to database... -- 16:27:15.350 DEBUG [7522]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:27:15.350 SQL [7522]: pgsql_db_connect() -- 16:27:15.354 DEBUG [7522]: Database connection successful -- 16:27:15.354 INFO [7522]: _SERVER found -- 16:27:15.354 INFO [7522]: REMOTE_ADDR = 192.168.1.13 -- 16:27:15.354 INFO [7522]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:27:15.354 INFO [7522]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:27:15.354 INFO [7522]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:27:15.354 INFO [7522]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:27:15.365 INFO [7522]: COREGRADE is stopping... -- 16:27:15.365 DEBUG [7522]: Closing database connection -- 16:27:15.365 SQL [7522]: pgsql_close() -- 16:27:15.371 INFO [7684]: COREGRADE is starting... -- 16:27:15.371 INFO [7684]: Version from config: 1.0 -- 16:27:15.371 DEBUG [7684]: Connecting to database... -- 16:27:15.371 DEBUG [7684]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:27:15.371 SQL [7684]: pgsql_db_connect() -- 16:27:15.375 DEBUG [7684]: Database connection successful -- 16:27:15.375 INFO [7684]: _SERVER found -- 16:27:15.375 INFO [7684]: REMOTE_ADDR = 192.168.1.13 -- 16:27:15.375 INFO [7684]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:27:15.375 INFO [7684]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:27:15.375 INFO [7684]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:27:15.375 INFO [7684]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:27:15.386 INFO [7684]: COREGRADE is stopping... -- 16:27:15.386 DEBUG [7684]: Closing database connection -- 16:27:15.386 SQL [7684]: pgsql_close() -- 16:28:21.838 INFO [18686]: COREGRADE is starting... -- 16:28:21.838 INFO [18686]: Version from config: 1.0 -- 16:28:21.838 DEBUG [18686]: Connecting to database... -- 16:28:21.838 DEBUG [18686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:28:21.838 SQL [18686]: pgsql_db_connect() -- 16:28:21.842 DEBUG [18686]: Database connection successful -- 16:28:21.842 INFO [18686]: _SERVER found -- 16:28:21.842 INFO [18686]: REMOTE_ADDR = 192.168.1.13 -- 16:28:21.842 INFO [18686]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:28:21.842 INFO [18686]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:28:21.842 INFO [18686]: QUERY_STRING = /member/page -- 16:28:21.842 INFO [18686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:28:21.887 INFO [18686]: COREGRADE is stopping... -- 16:28:21.887 DEBUG [18686]: Closing database connection -- 16:28:21.887 SQL [18686]: pgsql_close() -- 16:28:22.093 INFO [18686]: COREGRADE is starting... -- 16:28:22.094 INFO [18686]: Version from config: 1.0 -- 16:28:22.094 DEBUG [18686]: Connecting to database... -- 16:28:22.094 DEBUG [18686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:28:22.094 SQL [18686]: pgsql_db_connect() -- 16:28:22.098 DEBUG [18686]: Database connection successful -- 16:28:22.098 INFO [18686]: _SERVER found -- 16:28:22.098 INFO [18686]: REMOTE_ADDR = 192.168.1.13 -- 16:28:22.098 INFO [18686]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:28:22.098 INFO [18686]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:28:22.098 INFO [18686]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:28:22.098 INFO [18686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:28:22.110 INFO [18686]: COREGRADE is stopping... -- 16:28:22.110 DEBUG [18686]: Closing database connection -- 16:28:22.110 SQL [18686]: pgsql_close() -- 16:28:22.171 INFO [18686]: COREGRADE is starting... -- 16:28:22.171 INFO [18686]: Version from config: 1.0 -- 16:28:22.171 DEBUG [18686]: Connecting to database... -- 16:28:22.172 DEBUG [18686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:28:22.172 SQL [18686]: pgsql_db_connect() -- 16:28:22.175 DEBUG [18686]: Database connection successful -- 16:28:22.175 INFO [18686]: _SERVER found -- 16:28:22.175 INFO [18686]: REMOTE_ADDR = 192.168.1.13 -- 16:28:22.175 INFO [18686]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:28:22.175 INFO [18686]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:28:22.175 INFO [18686]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:28:22.175 INFO [18686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:28:22.187 INFO [18686]: COREGRADE is stopping... -- 16:28:22.187 DEBUG [18686]: Closing database connection -- 16:28:22.187 SQL [18686]: pgsql_close() -- 16:28:34.759 INFO [18687]: COREGRADE is starting... -- 16:28:34.760 INFO [18687]: Version from config: 1.0 -- 16:28:34.760 DEBUG [18687]: Connecting to database... -- 16:28:34.760 DEBUG [18687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:28:34.760 SQL [18687]: pgsql_db_connect() -- 16:28:34.764 DEBUG [18687]: Database connection successful -- 16:28:34.764 INFO [18687]: _SERVER found -- 16:28:34.764 INFO [18687]: REMOTE_ADDR = 192.168.1.13 -- 16:28:34.764 INFO [18687]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:28:34.764 INFO [18687]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:28:34.764 INFO [18687]: QUERY_STRING = /member/viewCardAddAction -- 16:28:34.764 INFO [18687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:28:34.801 INFO [18687]: COREGRADE is stopping... -- 16:28:34.801 DEBUG [18687]: Closing database connection -- 16:28:34.801 SQL [18687]: pgsql_close() -- 16:28:43.157 INFO [18688]: COREGRADE is starting... -- 16:28:43.157 INFO [18688]: Version from config: 1.0 -- 16:28:43.157 DEBUG [18688]: Connecting to database... -- 16:28:43.157 DEBUG [18688]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:28:43.157 SQL [18688]: pgsql_db_connect() -- 16:28:43.161 DEBUG [18688]: Database connection successful -- 16:28:43.161 INFO [18688]: _SERVER found -- 16:28:43.161 INFO [18688]: REMOTE_ADDR = 192.168.1.13 -- 16:28:43.161 INFO [18688]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:28:43.161 INFO [18688]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:28:43.161 INFO [18688]: QUERY_STRING = /member/addNotecard -- 16:28:43.161 INFO [18688]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:28:43.176 INFO [18688]: COREGRADE is stopping... -- 16:28:43.176 DEBUG [18688]: Closing database connection -- 16:28:43.176 SQL [18688]: pgsql_close() -- 16:28:44.381 INFO [18688]: COREGRADE is starting... -- 16:28:44.381 INFO [18688]: Version from config: 1.0 -- 16:28:44.381 DEBUG [18688]: Connecting to database... -- 16:28:44.381 DEBUG [18688]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:28:44.381 SQL [18688]: pgsql_db_connect() -- 16:28:44.385 DEBUG [18688]: Database connection successful -- 16:28:44.385 INFO [18688]: _SERVER found -- 16:28:44.385 INFO [18688]: REMOTE_ADDR = 192.168.1.13 -- 16:28:44.385 INFO [18688]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:28:44.385 INFO [18688]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:28:44.385 INFO [18688]: QUERY_STRING = /member/viewCardAddAction -- 16:28:44.385 INFO [18688]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:28:44.419 INFO [18688]: COREGRADE is stopping... -- 16:28:44.419 DEBUG [18688]: Closing database connection -- 16:28:44.419 SQL [18688]: pgsql_close() -- 16:29:39.397 INFO [18689]: COREGRADE is starting... -- 16:29:39.397 INFO [18689]: Version from config: 1.0 -- 16:29:39.397 DEBUG [18689]: Connecting to database... -- 16:29:39.397 DEBUG [18689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:29:39.397 SQL [18689]: pgsql_db_connect() -- 16:29:39.401 DEBUG [18689]: Database connection successful -- 16:29:39.401 INFO [18689]: _SERVER found -- 16:29:39.401 INFO [18689]: REMOTE_ADDR = 192.168.1.13 -- 16:29:39.401 INFO [18689]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:29:39.401 INFO [18689]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:29:39.401 INFO [18689]: QUERY_STRING = /member -- 16:29:39.401 INFO [18689]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:29:39.445 INFO [18689]: COREGRADE is stopping... -- 16:29:39.445 DEBUG [18689]: Closing database connection -- 16:29:39.445 SQL [18689]: pgsql_close() -- 16:29:39.677 INFO [18689]: COREGRADE is starting... -- 16:29:39.677 INFO [18689]: Version from config: 1.0 -- 16:29:39.677 DEBUG [18689]: Connecting to database... -- 16:29:39.677 DEBUG [18689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:29:39.677 SQL [18689]: pgsql_db_connect() -- 16:29:39.681 DEBUG [18689]: Database connection successful -- 16:29:39.681 INFO [18689]: _SERVER found -- 16:29:39.681 INFO [18689]: REMOTE_ADDR = 192.168.1.13 -- 16:29:39.681 INFO [18689]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:29:39.681 INFO [18689]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:29:39.681 INFO [18689]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:29:39.681 INFO [18689]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:29:39.693 INFO [18689]: COREGRADE is stopping... -- 16:29:39.693 DEBUG [18689]: Closing database connection -- 16:29:39.693 SQL [18689]: pgsql_close() -- 16:29:39.756 INFO [18689]: COREGRADE is starting... -- 16:29:39.756 INFO [18689]: Version from config: 1.0 -- 16:29:39.756 DEBUG [18689]: Connecting to database... -- 16:29:39.756 DEBUG [18689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:29:39.757 SQL [18689]: pgsql_db_connect() -- 16:29:39.760 DEBUG [18689]: Database connection successful -- 16:29:39.760 INFO [18689]: _SERVER found -- 16:29:39.760 INFO [18689]: REMOTE_ADDR = 192.168.1.13 -- 16:29:39.760 INFO [18689]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:29:39.760 INFO [18689]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:29:39.760 INFO [18689]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:29:39.760 INFO [18689]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:29:39.773 INFO [18689]: COREGRADE is stopping... -- 16:29:39.773 DEBUG [18689]: Closing database connection -- 16:29:39.773 SQL [18689]: pgsql_close() -- 16:29:50.697 INFO [18690]: COREGRADE is starting... -- 16:29:50.697 INFO [18690]: Version from config: 1.0 -- 16:29:50.697 DEBUG [18690]: Connecting to database... -- 16:29:50.697 DEBUG [18690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:29:50.697 SQL [18690]: pgsql_db_connect() -- 16:29:50.702 DEBUG [18690]: Database connection successful -- 16:29:50.702 INFO [18690]: _SERVER found -- 16:29:50.702 INFO [18690]: REMOTE_ADDR = 192.168.1.13 -- 16:29:50.702 INFO [18690]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:29:50.702 INFO [18690]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:29:50.702 INFO [18690]: QUERY_STRING = /member/page -- 16:29:50.702 INFO [18690]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:29:50.746 INFO [18690]: COREGRADE is stopping... -- 16:29:50.746 DEBUG [18690]: Closing database connection -- 16:29:50.746 SQL [18690]: pgsql_close() -- 16:29:51.019 INFO [18690]: COREGRADE is starting... -- 16:29:51.019 INFO [18690]: Version from config: 1.0 -- 16:29:51.019 DEBUG [18690]: Connecting to database... -- 16:29:51.019 DEBUG [18690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:29:51.019 SQL [18690]: pgsql_db_connect() -- 16:29:51.023 DEBUG [18690]: Database connection successful -- 16:29:51.023 INFO [18690]: _SERVER found -- 16:29:51.023 INFO [18690]: REMOTE_ADDR = 192.168.1.13 -- 16:29:51.023 INFO [18690]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:29:51.023 INFO [18690]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:29:51.023 INFO [18690]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:29:51.023 INFO [18690]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:29:51.035 INFO [18690]: COREGRADE is stopping... -- 16:29:51.035 DEBUG [18690]: Closing database connection -- 16:29:51.035 SQL [18690]: pgsql_close() -- 16:29:51.064 INFO [18690]: COREGRADE is starting... -- 16:29:51.064 INFO [18690]: Version from config: 1.0 -- 16:29:51.064 DEBUG [18690]: Connecting to database... -- 16:29:51.064 DEBUG [18690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:29:51.064 SQL [18690]: pgsql_db_connect() -- 16:29:51.068 DEBUG [18690]: Database connection successful -- 16:29:51.068 INFO [18690]: _SERVER found -- 16:29:51.068 INFO [18690]: REMOTE_ADDR = 192.168.1.13 -- 16:29:51.068 INFO [18690]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:29:51.068 INFO [18690]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:29:51.068 INFO [18690]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:29:51.068 INFO [18690]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:29:51.080 INFO [18690]: COREGRADE is stopping... -- 16:29:51.080 DEBUG [18690]: Closing database connection -- 16:29:51.080 SQL [18690]: pgsql_close() -- 16:29:52.984 INFO [18690]: COREGRADE is starting... -- 16:29:52.984 INFO [18690]: Version from config: 1.0 -- 16:29:52.984 DEBUG [18690]: Connecting to database... -- 16:29:52.984 DEBUG [18690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:29:52.984 SQL [18690]: pgsql_db_connect() -- 16:29:52.988 DEBUG [18690]: Database connection successful -- 16:29:52.988 INFO [18690]: _SERVER found -- 16:29:52.988 INFO [18690]: REMOTE_ADDR = 192.168.1.13 -- 16:29:52.988 INFO [18690]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:29:52.988 INFO [18690]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:29:52.988 INFO [18690]: QUERY_STRING = /member/configure -- 16:29:52.988 INFO [18690]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:29:53.027 INFO [18690]: COREGRADE is stopping... -- 16:29:53.027 DEBUG [18690]: Closing database connection -- 16:29:53.027 SQL [18690]: pgsql_close() -- 16:29:53.208 INFO [18690]: COREGRADE is starting... -- 16:29:53.208 INFO [18690]: Version from config: 1.0 -- 16:29:53.208 DEBUG [18690]: Connecting to database... -- 16:29:53.208 DEBUG [18690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:29:53.208 SQL [18690]: pgsql_db_connect() -- 16:29:53.212 DEBUG [18690]: Database connection successful -- 16:29:53.212 INFO [18690]: _SERVER found -- 16:29:53.212 INFO [18690]: REMOTE_ADDR = 192.168.1.13 -- 16:29:53.212 INFO [18690]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:29:53.212 INFO [18690]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:29:53.212 INFO [18690]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:29:53.212 INFO [18690]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:29:53.224 INFO [18690]: COREGRADE is stopping... -- 16:29:53.224 DEBUG [18690]: Closing database connection -- 16:29:53.224 SQL [18690]: pgsql_close() -- 16:29:53.227 INFO [18697]: COREGRADE is starting... -- 16:29:53.228 INFO [18697]: Version from config: 1.0 -- 16:29:53.228 DEBUG [18697]: Connecting to database... -- 16:29:53.228 DEBUG [18697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:29:53.228 SQL [18697]: pgsql_db_connect() -- 16:29:53.232 DEBUG [18697]: Database connection successful -- 16:29:53.232 INFO [18697]: _SERVER found -- 16:29:53.232 INFO [18697]: REMOTE_ADDR = 192.168.1.13 -- 16:29:53.232 INFO [18697]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:29:53.232 INFO [18697]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:29:53.232 INFO [18697]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:29:53.232 INFO [18697]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:29:53.246 INFO [18697]: COREGRADE is stopping... -- 16:29:53.246 DEBUG [18697]: Closing database connection -- 16:29:53.246 SQL [18697]: pgsql_close() -- 16:29:55.938 INFO [18697]: COREGRADE is starting... -- 16:29:55.939 INFO [18697]: Version from config: 1.0 -- 16:29:55.939 DEBUG [18697]: Connecting to database... -- 16:29:55.939 DEBUG [18697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:29:55.939 SQL [18697]: pgsql_db_connect() -- 16:29:55.943 DEBUG [18697]: Database connection successful -- 16:29:55.943 INFO [18697]: _SERVER found -- 16:29:55.943 INFO [18697]: REMOTE_ADDR = 192.168.1.13 -- 16:29:55.943 INFO [18697]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:29:55.943 INFO [18697]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:29:55.943 INFO [18697]: QUERY_STRING = /member -- 16:29:55.943 INFO [18697]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:29:55.984 INFO [18697]: COREGRADE is stopping... -- 16:29:55.985 DEBUG [18697]: Closing database connection -- 16:29:55.985 SQL [18697]: pgsql_close() -- 16:29:56.161 INFO [18697]: COREGRADE is starting... -- 16:29:56.161 INFO [18697]: Version from config: 1.0 -- 16:29:56.161 DEBUG [18697]: Connecting to database... -- 16:29:56.161 DEBUG [18697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:29:56.161 SQL [18697]: pgsql_db_connect() -- 16:29:56.166 DEBUG [18697]: Database connection successful -- 16:29:56.166 INFO [18697]: _SERVER found -- 16:29:56.166 INFO [18697]: REMOTE_ADDR = 192.168.1.13 -- 16:29:56.166 INFO [18697]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:29:56.166 INFO [18697]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:29:56.166 INFO [18697]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:29:56.166 INFO [18697]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:29:56.177 INFO [18697]: COREGRADE is stopping... -- 16:29:56.177 DEBUG [18697]: Closing database connection -- 16:29:56.177 SQL [18697]: pgsql_close() -- 16:29:56.179 INFO [18697]: COREGRADE is starting... -- 16:29:56.180 INFO [18697]: Version from config: 1.0 -- 16:29:56.180 DEBUG [18697]: Connecting to database... -- 16:29:56.180 DEBUG [18697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:29:56.180 SQL [18697]: pgsql_db_connect() -- 16:29:56.183 DEBUG [18697]: Database connection successful -- 16:29:56.183 INFO [18697]: _SERVER found -- 16:29:56.183 INFO [18697]: REMOTE_ADDR = 192.168.1.13 -- 16:29:56.183 INFO [18697]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:29:56.183 INFO [18697]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:29:56.183 INFO [18697]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:29:56.183 INFO [18697]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:29:56.194 INFO [18697]: COREGRADE is stopping... -- 16:29:56.194 DEBUG [18697]: Closing database connection -- 16:29:56.194 SQL [18697]: pgsql_close() -- 16:29:57.446 INFO [18697]: COREGRADE is starting... -- 16:29:57.446 INFO [18697]: Version from config: 1.0 -- 16:29:57.446 DEBUG [18697]: Connecting to database... -- 16:29:57.446 DEBUG [18697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:29:57.446 SQL [18697]: pgsql_db_connect() -- 16:29:57.451 DEBUG [18697]: Database connection successful -- 16:29:57.451 INFO [18697]: _SERVER found -- 16:29:57.451 INFO [18697]: REMOTE_ADDR = 192.168.1.13 -- 16:29:57.451 INFO [18697]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:29:57.451 INFO [18697]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:29:57.451 INFO [18697]: QUERY_STRING = /member/page -- 16:29:57.451 INFO [18697]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:29:57.488 INFO [18697]: COREGRADE is stopping... -- 16:29:57.488 DEBUG [18697]: Closing database connection -- 16:29:57.488 SQL [18697]: pgsql_close() -- 16:29:57.627 INFO [18697]: COREGRADE is starting... -- 16:29:57.627 INFO [18697]: Version from config: 1.0 -- 16:29:57.627 DEBUG [18697]: Connecting to database... -- 16:29:57.627 DEBUG [18697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:29:57.627 SQL [18697]: pgsql_db_connect() -- 16:29:57.631 DEBUG [18697]: Database connection successful -- 16:29:57.631 INFO [18697]: _SERVER found -- 16:29:57.631 INFO [18697]: REMOTE_ADDR = 192.168.1.13 -- 16:29:57.631 INFO [18697]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:29:57.631 INFO [18697]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:29:57.631 INFO [18697]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:29:57.631 INFO [18697]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:29:57.642 INFO [18697]: COREGRADE is stopping... -- 16:29:57.642 DEBUG [18697]: Closing database connection -- 16:29:57.642 SQL [18697]: pgsql_close() -- 16:29:57.684 INFO [18697]: COREGRADE is starting... -- 16:29:57.684 INFO [18697]: Version from config: 1.0 -- 16:29:57.684 DEBUG [18697]: Connecting to database... -- 16:29:57.684 DEBUG [18697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:29:57.684 SQL [18697]: pgsql_db_connect() -- 16:29:57.688 DEBUG [18697]: Database connection successful -- 16:29:57.688 INFO [18697]: _SERVER found -- 16:29:57.688 INFO [18697]: REMOTE_ADDR = 192.168.1.13 -- 16:29:57.688 INFO [18697]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:29:57.688 INFO [18697]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:29:57.688 INFO [18697]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:29:57.688 INFO [18697]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:29:57.699 INFO [18697]: COREGRADE is stopping... -- 16:29:57.699 DEBUG [18697]: Closing database connection -- 16:29:57.699 SQL [18697]: pgsql_close() -- 16:34:18.958 INFO [18686]: COREGRADE is starting... -- 16:34:18.958 INFO [18686]: Version from config: 1.0 -- 16:34:18.958 DEBUG [18686]: Connecting to database... -- 16:34:18.958 DEBUG [18686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:34:18.958 SQL [18686]: pgsql_db_connect() -- 16:34:18.963 DEBUG [18686]: Database connection successful -- 16:34:18.963 INFO [18686]: _SERVER found -- 16:34:18.963 INFO [18686]: REMOTE_ADDR = 192.168.1.13 -- 16:34:18.963 INFO [18686]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:34:18.963 INFO [18686]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9uor32vlh675j65d0o84clmr2br5kdbj -- 16:34:18.963 INFO [18686]: QUERY_STRING = /member/page -- 16:34:18.963 INFO [18686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:34:19.008 INFO [18686]: COREGRADE is stopping... -- 16:34:19.009 DEBUG [18686]: Closing database connection -- 16:34:19.009 SQL [18686]: pgsql_close() -- 16:34:19.226 INFO [18686]: COREGRADE is starting... -- 16:34:19.226 INFO [18686]: Version from config: 1.0 -- 16:34:19.226 DEBUG [18686]: Connecting to database... -- 16:34:19.226 DEBUG [18686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:34:19.226 SQL [18686]: pgsql_db_connect() -- 16:34:19.230 DEBUG [18686]: Database connection successful -- 16:34:19.230 INFO [18686]: _SERVER found -- 16:34:19.230 INFO [18686]: REMOTE_ADDR = 192.168.1.13 -- 16:34:19.230 INFO [18686]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:34:19.230 INFO [18686]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:34:19.230 INFO [18686]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:34:19.230 INFO [18686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:34:19.242 INFO [18686]: COREGRADE is stopping... -- 16:34:19.242 DEBUG [18686]: Closing database connection -- 16:34:19.242 SQL [18686]: pgsql_close() -- 16:34:19.320 INFO [18686]: COREGRADE is starting... -- 16:34:19.320 INFO [18686]: Version from config: 1.0 -- 16:34:19.320 DEBUG [18686]: Connecting to database... -- 16:34:19.320 DEBUG [18686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:34:19.320 SQL [18686]: pgsql_db_connect() -- 16:34:19.324 DEBUG [18686]: Database connection successful -- 16:34:19.324 INFO [18686]: _SERVER found -- 16:34:19.324 INFO [18686]: REMOTE_ADDR = 192.168.1.13 -- 16:34:19.324 INFO [18686]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:34:19.324 INFO [18686]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:34:19.324 INFO [18686]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:34:19.324 INFO [18686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:34:19.335 INFO [18686]: COREGRADE is stopping... -- 16:34:19.335 DEBUG [18686]: Closing database connection -- 16:34:19.335 SQL [18686]: pgsql_close() -- 16:34:25.876 INFO [18687]: COREGRADE is starting... -- 16:34:25.877 INFO [18687]: Version from config: 1.0 -- 16:34:25.877 DEBUG [18687]: Connecting to database... -- 16:34:25.877 DEBUG [18687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:34:25.877 SQL [18687]: pgsql_db_connect() -- 16:34:25.881 DEBUG [18687]: Database connection successful -- 16:34:25.881 INFO [18687]: _SERVER found -- 16:34:25.881 INFO [18687]: REMOTE_ADDR = 192.168.1.13 -- 16:34:25.881 INFO [18687]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:34:25.881 INFO [18687]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:34:25.881 INFO [18687]: QUERY_STRING = /member/configure -- 16:34:25.881 INFO [18687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:34:25.922 INFO [18687]: COREGRADE is stopping... -- 16:34:25.922 DEBUG [18687]: Closing database connection -- 16:34:25.922 SQL [18687]: pgsql_close() -- 16:34:26.114 INFO [18687]: COREGRADE is starting... -- 16:34:26.114 INFO [18687]: Version from config: 1.0 -- 16:34:26.114 DEBUG [18687]: Connecting to database... -- 16:34:26.114 DEBUG [18687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:34:26.114 SQL [18687]: pgsql_db_connect() -- 16:34:26.118 DEBUG [18687]: Database connection successful -- 16:34:26.118 INFO [18687]: _SERVER found -- 16:34:26.118 INFO [18687]: REMOTE_ADDR = 192.168.1.13 -- 16:34:26.118 INFO [18687]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:34:26.118 INFO [18687]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:34:26.118 INFO [18687]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:34:26.118 INFO [18687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:34:26.130 INFO [18687]: COREGRADE is stopping... -- 16:34:26.130 DEBUG [18687]: Closing database connection -- 16:34:26.130 SQL [18687]: pgsql_close() -- 16:34:26.130 INFO [18688]: COREGRADE is starting... -- 16:34:26.131 INFO [18688]: Version from config: 1.0 -- 16:34:26.131 DEBUG [18688]: Connecting to database... -- 16:34:26.131 DEBUG [18688]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:34:26.131 SQL [18688]: pgsql_db_connect() -- 16:34:26.134 DEBUG [18688]: Database connection successful -- 16:34:26.134 INFO [18688]: _SERVER found -- 16:34:26.134 INFO [18688]: REMOTE_ADDR = 192.168.1.13 -- 16:34:26.134 INFO [18688]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:34:26.134 INFO [18688]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:34:26.134 INFO [18688]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:34:26.134 INFO [18688]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:34:26.146 INFO [18688]: COREGRADE is stopping... -- 16:34:26.146 DEBUG [18688]: Closing database connection -- 16:34:26.146 SQL [18688]: pgsql_close() -- 16:34:39.274 INFO [18689]: COREGRADE is starting... -- 16:34:39.275 INFO [18689]: Version from config: 1.0 -- 16:34:39.275 DEBUG [18689]: Connecting to database... -- 16:34:39.275 DEBUG [18689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:34:39.275 SQL [18689]: pgsql_db_connect() -- 16:34:39.279 DEBUG [18689]: Database connection successful -- 16:34:39.279 INFO [18689]: _SERVER found -- 16:34:39.279 INFO [18689]: REMOTE_ADDR = 192.168.1.13 -- 16:34:39.279 INFO [18689]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:34:39.279 INFO [18689]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:34:39.279 INFO [18689]: QUERY_STRING = /member/configure -- 16:34:39.279 INFO [18689]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:34:39.319 INFO [18689]: COREGRADE is stopping... -- 16:34:39.320 DEBUG [18689]: Closing database connection -- 16:34:39.320 SQL [18689]: pgsql_close() -- 16:34:39.646 INFO [18689]: COREGRADE is starting... -- 16:34:39.647 INFO [18689]: Version from config: 1.0 -- 16:34:39.647 DEBUG [18689]: Connecting to database... -- 16:34:39.647 DEBUG [18689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:34:39.647 SQL [18689]: pgsql_db_connect() -- 16:34:39.656 INFO [18719]: COREGRADE is starting... -- 16:34:39.657 INFO [18719]: Version from config: 1.0 -- 16:34:39.657 DEBUG [18719]: Connecting to database... -- 16:34:39.657 DEBUG [18719]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:34:39.657 SQL [18719]: pgsql_db_connect() -- 16:34:39.650 DEBUG [18689]: Database connection successful -- 16:34:39.650 INFO [18689]: _SERVER found -- 16:34:39.650 INFO [18689]: REMOTE_ADDR = 192.168.1.13 -- 16:34:39.650 INFO [18689]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:34:39.650 INFO [18689]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:34:39.650 INFO [18689]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:34:39.650 INFO [18689]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:34:39.662 INFO [18689]: COREGRADE is stopping... -- 16:34:39.662 DEBUG [18689]: Closing database connection -- 16:34:39.662 SQL [18689]: pgsql_close() -- 16:34:39.661 DEBUG [18719]: Database connection successful -- 16:34:39.661 INFO [18719]: _SERVER found -- 16:34:39.661 INFO [18719]: REMOTE_ADDR = 192.168.1.13 -- 16:34:39.661 INFO [18719]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:34:39.661 INFO [18719]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:34:39.661 INFO [18719]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:34:39.661 INFO [18719]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:34:39.675 INFO [18719]: COREGRADE is stopping... -- 16:34:39.675 DEBUG [18719]: Closing database connection -- 16:34:39.675 SQL [18719]: pgsql_close() -- 16:34:53.402 INFO [18690]: COREGRADE is starting... -- 16:34:53.402 INFO [18690]: Version from config: 1.0 -- 16:34:53.402 DEBUG [18690]: Connecting to database... -- 16:34:53.402 DEBUG [18690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:34:53.402 SQL [18690]: pgsql_db_connect() -- 16:34:53.406 DEBUG [18690]: Database connection successful -- 16:34:53.406 INFO [18690]: _SERVER found -- 16:34:53.406 INFO [18690]: REMOTE_ADDR = 192.168.1.13 -- 16:34:53.406 INFO [18690]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:34:53.406 INFO [18690]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:34:53.406 INFO [18690]: QUERY_STRING = /member -- 16:34:53.406 INFO [18690]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:34:53.443 INFO [18690]: COREGRADE is stopping... -- 16:34:53.443 DEBUG [18690]: Closing database connection -- 16:34:53.443 SQL [18690]: pgsql_close() -- 16:34:53.700 INFO [18690]: COREGRADE is starting... -- 16:34:53.700 INFO [18690]: Version from config: 1.0 -- 16:34:53.700 DEBUG [18690]: Connecting to database... -- 16:34:53.700 DEBUG [18690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:34:53.700 SQL [18690]: pgsql_db_connect() -- 16:34:53.704 DEBUG [18690]: Database connection successful -- 16:34:53.704 INFO [18690]: _SERVER found -- 16:34:53.704 INFO [18690]: REMOTE_ADDR = 192.168.1.13 -- 16:34:53.704 INFO [18690]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:34:53.704 INFO [18690]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:34:53.704 INFO [18690]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:34:53.704 INFO [18690]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:34:53.715 INFO [18690]: COREGRADE is stopping... -- 16:34:53.715 DEBUG [18690]: Closing database connection -- 16:34:53.715 SQL [18690]: pgsql_close() -- 16:34:53.718 INFO [18697]: COREGRADE is starting... -- 16:34:53.718 INFO [18697]: Version from config: 1.0 -- 16:34:53.718 DEBUG [18697]: Connecting to database... -- 16:34:53.719 DEBUG [18697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:34:53.719 SQL [18697]: pgsql_db_connect() -- 16:34:53.722 DEBUG [18697]: Database connection successful -- 16:34:53.722 INFO [18697]: _SERVER found -- 16:34:53.722 INFO [18697]: REMOTE_ADDR = 192.168.1.13 -- 16:34:53.722 INFO [18697]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:34:53.722 INFO [18697]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:34:53.722 INFO [18697]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:34:53.722 INFO [18697]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:34:53.734 INFO [18697]: COREGRADE is stopping... -- 16:34:53.734 DEBUG [18697]: Closing database connection -- 16:34:53.734 SQL [18697]: pgsql_close() -- 16:35:03.680 INFO [18686]: COREGRADE is starting... -- 16:35:03.681 INFO [18686]: Version from config: 1.0 -- 16:35:03.681 DEBUG [18686]: Connecting to database... -- 16:35:03.681 DEBUG [18686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:35:03.681 SQL [18686]: pgsql_db_connect() -- 16:35:03.685 DEBUG [18686]: Database connection successful -- 16:35:03.685 INFO [18686]: _SERVER found -- 16:35:03.685 INFO [18686]: REMOTE_ADDR = 192.168.1.13 -- 16:35:03.685 INFO [18686]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:35:03.685 INFO [18686]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:35:03.685 INFO [18686]: QUERY_STRING = /member/page -- 16:35:03.685 INFO [18686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:35:03.725 INFO [18686]: COREGRADE is stopping... -- 16:35:03.725 DEBUG [18686]: Closing database connection -- 16:35:03.725 SQL [18686]: pgsql_close() -- 16:35:03.936 INFO [18686]: COREGRADE is starting... -- 16:35:03.936 INFO [18686]: Version from config: 1.0 -- 16:35:03.936 DEBUG [18686]: Connecting to database... -- 16:35:03.936 DEBUG [18686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:35:03.936 SQL [18686]: pgsql_db_connect() -- 16:35:03.940 DEBUG [18686]: Database connection successful -- 16:35:03.940 INFO [18686]: _SERVER found -- 16:35:03.940 INFO [18686]: REMOTE_ADDR = 192.168.1.13 -- 16:35:03.940 INFO [18686]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:35:03.940 INFO [18686]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:35:03.940 INFO [18686]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:35:03.940 INFO [18686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:35:03.952 INFO [18686]: COREGRADE is stopping... -- 16:35:03.952 DEBUG [18686]: Closing database connection -- 16:35:03.952 SQL [18686]: pgsql_close() -- 16:35:04.011 INFO [18686]: COREGRADE is starting... -- 16:35:04.011 INFO [18686]: Version from config: 1.0 -- 16:35:04.011 DEBUG [18686]: Connecting to database... -- 16:35:04.011 DEBUG [18686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:35:04.011 SQL [18686]: pgsql_db_connect() -- 16:35:04.015 DEBUG [18686]: Database connection successful -- 16:35:04.015 INFO [18686]: _SERVER found -- 16:35:04.015 INFO [18686]: REMOTE_ADDR = 192.168.1.13 -- 16:35:04.015 INFO [18686]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:35:04.015 INFO [18686]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:35:04.015 INFO [18686]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:35:04.015 INFO [18686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:35:04.026 INFO [18686]: COREGRADE is stopping... -- 16:35:04.026 DEBUG [18686]: Closing database connection -- 16:35:04.026 SQL [18686]: pgsql_close() -- 16:35:08.515 INFO [18687]: COREGRADE is starting... -- 16:35:08.515 INFO [18687]: Version from config: 1.0 -- 16:35:08.515 DEBUG [18687]: Connecting to database... -- 16:35:08.515 DEBUG [18687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:35:08.515 SQL [18687]: pgsql_db_connect() -- 16:35:08.519 DEBUG [18687]: Database connection successful -- 16:35:08.519 INFO [18687]: _SERVER found -- 16:35:08.519 INFO [18687]: REMOTE_ADDR = 192.168.1.13 -- 16:35:08.519 INFO [18687]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:35:08.519 INFO [18687]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:35:08.519 INFO [18687]: QUERY_STRING = /member -- 16:35:08.519 INFO [18687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:35:08.555 INFO [18687]: COREGRADE is stopping... -- 16:35:08.555 DEBUG [18687]: Closing database connection -- 16:35:08.555 SQL [18687]: pgsql_close() -- 16:35:08.922 INFO [18687]: COREGRADE is starting... -- 16:35:08.922 INFO [18687]: Version from config: 1.0 -- 16:35:08.922 DEBUG [18687]: Connecting to database... -- 16:35:08.922 DEBUG [18687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:35:08.922 SQL [18687]: pgsql_db_connect() -- 16:35:08.926 DEBUG [18687]: Database connection successful -- 16:35:08.926 INFO [18687]: _SERVER found -- 16:35:08.926 INFO [18687]: REMOTE_ADDR = 192.168.1.13 -- 16:35:08.926 INFO [18687]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:35:08.926 INFO [18687]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:35:08.926 INFO [18687]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:35:08.926 INFO [18687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:35:08.937 INFO [18687]: COREGRADE is stopping... -- 16:35:08.937 DEBUG [18687]: Closing database connection -- 16:35:08.937 SQL [18687]: pgsql_close() -- 16:35:08.946 INFO [18686]: COREGRADE is starting... -- 16:35:08.946 INFO [18686]: Version from config: 1.0 -- 16:35:08.946 DEBUG [18686]: Connecting to database... -- 16:35:08.946 DEBUG [18686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:35:08.946 SQL [18686]: pgsql_db_connect() -- 16:35:08.950 DEBUG [18686]: Database connection successful -- 16:35:08.950 INFO [18686]: _SERVER found -- 16:35:08.950 INFO [18686]: REMOTE_ADDR = 192.168.1.13 -- 16:35:08.950 INFO [18686]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:35:08.950 INFO [18686]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:35:08.950 INFO [18686]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:35:08.950 INFO [18686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:35:08.962 INFO [18686]: COREGRADE is stopping... -- 16:35:08.962 DEBUG [18686]: Closing database connection -- 16:35:08.962 SQL [18686]: pgsql_close() -- 16:35:09.216 INFO [18686]: COREGRADE is starting... -- 16:35:09.217 INFO [18686]: Version from config: 1.0 -- 16:35:09.217 DEBUG [18686]: Connecting to database... -- 16:35:09.217 DEBUG [18686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:35:09.217 SQL [18686]: pgsql_db_connect() -- 16:35:09.221 DEBUG [18686]: Database connection successful -- 16:35:09.221 INFO [18686]: _SERVER found -- 16:35:09.221 INFO [18686]: REMOTE_ADDR = 192.168.1.13 -- 16:35:09.221 INFO [18686]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:35:09.221 INFO [18686]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:35:09.221 INFO [18686]: QUERY_STRING = /member/configure -- 16:35:09.221 INFO [18686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:35:09.260 INFO [18686]: COREGRADE is stopping... -- 16:35:09.260 DEBUG [18686]: Closing database connection -- 16:35:09.260 SQL [18686]: pgsql_close() -- 16:35:09.463 INFO [18686]: COREGRADE is starting... -- 16:35:09.463 INFO [18686]: Version from config: 1.0 -- 16:35:09.463 DEBUG [18686]: Connecting to database... -- 16:35:09.463 DEBUG [18686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:35:09.463 SQL [18686]: pgsql_db_connect() -- 16:35:09.478 INFO [18687]: COREGRADE is starting... -- 16:35:09.478 INFO [18687]: Version from config: 1.0 -- 16:35:09.478 DEBUG [18687]: Connecting to database... -- 16:35:09.478 DEBUG [18687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:35:09.478 SQL [18687]: pgsql_db_connect() -- 16:35:09.467 DEBUG [18686]: Database connection successful -- 16:35:09.467 INFO [18686]: _SERVER found -- 16:35:09.467 INFO [18686]: REMOTE_ADDR = 192.168.1.13 -- 16:35:09.467 INFO [18686]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:35:09.467 INFO [18686]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:35:09.467 INFO [18686]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:35:09.467 INFO [18686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:35:09.479 INFO [18686]: COREGRADE is stopping... -- 16:35:09.479 DEBUG [18686]: Closing database connection -- 16:35:09.479 SQL [18686]: pgsql_close() -- 16:35:09.482 DEBUG [18687]: Database connection successful -- 16:35:09.482 INFO [18687]: _SERVER found -- 16:35:09.482 INFO [18687]: REMOTE_ADDR = 192.168.1.13 -- 16:35:09.482 INFO [18687]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:35:09.482 INFO [18687]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:35:09.482 INFO [18687]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:35:09.482 INFO [18687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:35:09.493 INFO [18687]: COREGRADE is stopping... -- 16:35:09.493 DEBUG [18687]: Closing database connection -- 16:35:09.493 SQL [18687]: pgsql_close() -- 16:36:08.212 INFO [18688]: COREGRADE is starting... -- 16:36:08.212 INFO [18688]: Version from config: 1.0 -- 16:36:08.212 DEBUG [18688]: Connecting to database... -- 16:36:08.212 DEBUG [18688]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:36:08.213 SQL [18688]: pgsql_db_connect() -- 16:36:08.217 DEBUG [18688]: Database connection successful -- 16:36:08.217 INFO [18688]: _SERVER found -- 16:36:08.217 INFO [18688]: REMOTE_ADDR = 192.168.1.13 -- 16:36:08.217 INFO [18688]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:36:08.217 INFO [18688]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:36:08.217 INFO [18688]: QUERY_STRING = /member -- 16:36:08.217 INFO [18688]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:36:08.254 INFO [18688]: COREGRADE is stopping... -- 16:36:08.254 DEBUG [18688]: Closing database connection -- 16:36:08.254 SQL [18688]: pgsql_close() -- 16:36:08.521 INFO [18688]: COREGRADE is starting... -- 16:36:08.521 INFO [18688]: Version from config: 1.0 -- 16:36:08.521 DEBUG [18688]: Connecting to database... -- 16:36:08.521 DEBUG [18688]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:36:08.521 SQL [18688]: pgsql_db_connect() -- 16:36:08.525 DEBUG [18688]: Database connection successful -- 16:36:08.525 INFO [18688]: _SERVER found -- 16:36:08.525 INFO [18688]: REMOTE_ADDR = 192.168.1.13 -- 16:36:08.525 INFO [18688]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:36:08.525 INFO [18688]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:36:08.525 INFO [18688]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:36:08.525 INFO [18688]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:36:08.536 INFO [18688]: COREGRADE is stopping... -- 16:36:08.536 DEBUG [18688]: Closing database connection -- 16:36:08.536 SQL [18688]: pgsql_close() -- 16:36:08.540 INFO [18689]: COREGRADE is starting... -- 16:36:08.540 INFO [18689]: Version from config: 1.0 -- 16:36:08.540 DEBUG [18689]: Connecting to database... -- 16:36:08.540 DEBUG [18689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:36:08.540 SQL [18689]: pgsql_db_connect() -- 16:36:08.544 DEBUG [18689]: Database connection successful -- 16:36:08.544 INFO [18689]: _SERVER found -- 16:36:08.544 INFO [18689]: REMOTE_ADDR = 192.168.1.13 -- 16:36:08.544 INFO [18689]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:36:08.544 INFO [18689]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:36:08.544 INFO [18689]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:36:08.544 INFO [18689]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:36:08.555 INFO [18689]: COREGRADE is stopping... -- 16:36:08.555 DEBUG [18689]: Closing database connection -- 16:36:08.555 SQL [18689]: pgsql_close() -- 16:36:16.414 INFO [18719]: COREGRADE is starting... -- 16:36:16.414 INFO [18719]: Version from config: 1.0 -- 16:36:16.414 DEBUG [18719]: Connecting to database... -- 16:36:16.414 DEBUG [18719]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:36:16.414 SQL [18719]: pgsql_db_connect() -- 16:36:16.419 DEBUG [18719]: Database connection successful -- 16:36:16.419 INFO [18719]: _SERVER found -- 16:36:16.419 INFO [18719]: REMOTE_ADDR = 192.168.1.13 -- 16:36:16.419 INFO [18719]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:36:16.419 INFO [18719]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:36:16.419 INFO [18719]: QUERY_STRING = /auth -- 16:36:16.419 INFO [18719]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:36:16.455 INFO [18719]: COREGRADE is stopping... -- 16:36:16.455 DEBUG [18719]: Closing database connection -- 16:36:16.455 SQL [18719]: pgsql_close() -- 16:36:16.642 INFO [18719]: COREGRADE is starting... -- 16:36:16.642 INFO [18719]: Version from config: 1.0 -- 16:36:16.642 DEBUG [18719]: Connecting to database... -- 16:36:16.642 DEBUG [18719]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:36:16.642 SQL [18719]: pgsql_db_connect() -- 16:36:16.649 INFO [18690]: COREGRADE is starting... -- 16:36:16.649 INFO [18690]: Version from config: 1.0 -- 16:36:16.649 DEBUG [18690]: Connecting to database... -- 16:36:16.650 DEBUG [18690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:36:16.650 SQL [18690]: pgsql_db_connect() -- 16:36:16.646 DEBUG [18719]: Database connection successful -- 16:36:16.646 INFO [18719]: _SERVER found -- 16:36:16.646 INFO [18719]: REMOTE_ADDR = 192.168.1.13 -- 16:36:16.646 INFO [18719]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:36:16.646 INFO [18719]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:36:16.646 INFO [18719]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:36:16.646 INFO [18719]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:36:16.657 INFO [18719]: COREGRADE is stopping... -- 16:36:16.657 DEBUG [18719]: Closing database connection -- 16:36:16.657 SQL [18719]: pgsql_close() -- 16:36:16.653 DEBUG [18690]: Database connection successful -- 16:36:16.653 INFO [18690]: _SERVER found -- 16:36:16.653 INFO [18690]: REMOTE_ADDR = 192.168.1.13 -- 16:36:16.653 INFO [18690]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:36:16.653 INFO [18690]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:36:16.653 INFO [18690]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:36:16.653 INFO [18690]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:36:16.665 INFO [18690]: COREGRADE is stopping... -- 16:36:16.665 DEBUG [18690]: Closing database connection -- 16:36:16.665 SQL [18690]: pgsql_close() -- 16:36:19.706 INFO [18719]: COREGRADE is starting... -- 16:36:19.706 INFO [18719]: Version from config: 1.0 -- 16:36:19.706 DEBUG [18719]: Connecting to database... -- 16:36:19.706 DEBUG [18719]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:36:19.706 SQL [18719]: pgsql_db_connect() -- 16:36:19.710 DEBUG [18719]: Database connection successful -- 16:36:19.710 INFO [18719]: _SERVER found -- 16:36:19.710 INFO [18719]: REMOTE_ADDR = 192.168.1.13 -- 16:36:19.710 INFO [18719]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:36:19.710 INFO [18719]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:36:19.710 INFO [18719]: QUERY_STRING = /auth -- 16:36:19.710 INFO [18719]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:36:19.768 INFO [18719]: COREGRADE is starting... -- 16:36:19.768 INFO [18719]: Version from config: 1.0 -- 16:36:19.768 DEBUG [18719]: Connecting to database... -- 16:36:19.768 DEBUG [18719]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:36:19.768 SQL [18719]: pgsql_db_connect() -- 16:36:19.772 DEBUG [18719]: Database connection successful -- 16:36:19.772 INFO [18719]: _SERVER found -- 16:36:19.772 INFO [18719]: REMOTE_ADDR = 192.168.1.13 -- 16:36:19.772 INFO [18719]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:36:19.772 INFO [18719]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:36:19.772 INFO [18719]: QUERY_STRING = /member/index -- 16:36:19.772 INFO [18719]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:36:19.809 INFO [18719]: COREGRADE is stopping... -- 16:36:19.809 DEBUG [18719]: Closing database connection -- 16:36:19.809 SQL [18719]: pgsql_close() -- 16:36:19.994 INFO [18719]: COREGRADE is starting... -- 16:36:19.994 INFO [18719]: Version from config: 1.0 -- 16:36:19.994 DEBUG [18719]: Connecting to database... -- 16:36:19.994 DEBUG [18719]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:36:19.994 SQL [18719]: pgsql_db_connect() -- 16:36:19.998 DEBUG [18719]: Database connection successful -- 16:36:19.998 INFO [18719]: _SERVER found -- 16:36:19.998 INFO [18719]: REMOTE_ADDR = 192.168.1.13 -- 16:36:19.998 INFO [18719]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:36:19.998 INFO [18719]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:36:19.998 INFO [18719]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:36:19.998 INFO [18719]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:36:20.009 INFO [18719]: COREGRADE is stopping... -- 16:36:20.009 DEBUG [18719]: Closing database connection -- 16:36:20.009 SQL [18719]: pgsql_close() -- 16:36:20.014 INFO [18697]: COREGRADE is starting... -- 16:36:20.014 INFO [18697]: Version from config: 1.0 -- 16:36:20.014 DEBUG [18697]: Connecting to database... -- 16:36:20.014 DEBUG [18697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:36:20.014 SQL [18697]: pgsql_db_connect() -- 16:36:20.018 DEBUG [18697]: Database connection successful -- 16:36:20.018 INFO [18697]: _SERVER found -- 16:36:20.018 INFO [18697]: REMOTE_ADDR = 192.168.1.13 -- 16:36:20.018 INFO [18697]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:36:20.018 INFO [18697]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:36:20.018 INFO [18697]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:36:20.018 INFO [18697]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:36:20.029 INFO [18697]: COREGRADE is stopping... -- 16:36:20.030 DEBUG [18697]: Closing database connection -- 16:36:20.030 SQL [18697]: pgsql_close() -- 16:37:33.029 INFO [18686]: COREGRADE is starting... -- 16:37:33.029 INFO [18686]: Version from config: 1.0 -- 16:37:33.029 DEBUG [18686]: Connecting to database... -- 16:37:33.029 DEBUG [18686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:37:33.029 SQL [18686]: pgsql_db_connect() -- 16:37:33.033 DEBUG [18686]: Database connection successful -- 16:37:33.033 INFO [18686]: _SERVER found -- 16:37:33.033 INFO [18686]: REMOTE_ADDR = 192.168.1.13 -- 16:37:33.033 INFO [18686]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:37:33.033 INFO [18686]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:37:33.033 INFO [18686]: QUERY_STRING = /auth/logout -- 16:37:33.033 INFO [18686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:37:33.065 INFO [18686]: COREGRADE is stopping... -- 16:37:33.066 DEBUG [18686]: Closing database connection -- 16:37:33.066 SQL [18686]: pgsql_close() -- 16:37:33.337 INFO [18686]: COREGRADE is starting... -- 16:37:33.337 INFO [18686]: Version from config: 1.0 -- 16:37:33.337 DEBUG [18686]: Connecting to database... -- 16:37:33.337 DEBUG [18686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:37:33.337 SQL [18686]: pgsql_db_connect() -- 16:37:33.344 INFO [18687]: COREGRADE is starting... -- 16:37:33.344 INFO [18687]: Version from config: 1.0 -- 16:37:33.344 DEBUG [18687]: Connecting to database... -- 16:37:33.344 DEBUG [18687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:37:33.344 SQL [18687]: pgsql_db_connect() -- 16:37:33.341 DEBUG [18686]: Database connection successful -- 16:37:33.341 INFO [18686]: _SERVER found -- 16:37:33.341 INFO [18686]: REMOTE_ADDR = 192.168.1.13 -- 16:37:33.341 INFO [18686]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:37:33.341 INFO [18686]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:37:33.341 INFO [18686]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:37:33.341 INFO [18686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:37:33.352 INFO [18686]: COREGRADE is stopping... -- 16:37:33.352 DEBUG [18686]: Closing database connection -- 16:37:33.352 SQL [18686]: pgsql_close() -- 16:37:33.348 DEBUG [18687]: Database connection successful -- 16:37:33.348 INFO [18687]: _SERVER found -- 16:37:33.348 INFO [18687]: REMOTE_ADDR = 192.168.1.13 -- 16:37:33.348 INFO [18687]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:37:33.348 INFO [18687]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:37:33.348 INFO [18687]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:37:33.348 INFO [18687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:37:33.359 INFO [18687]: COREGRADE is stopping... -- 16:37:33.359 DEBUG [18687]: Closing database connection -- 16:37:33.359 SQL [18687]: pgsql_close() -- 16:37:34.917 INFO [18687]: COREGRADE is starting... -- 16:37:34.917 INFO [18687]: Version from config: 1.0 -- 16:37:34.917 DEBUG [18687]: Connecting to database... -- 16:37:34.917 DEBUG [18687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:37:34.917 SQL [18687]: pgsql_db_connect() -- 16:37:34.921 DEBUG [18687]: Database connection successful -- 16:37:34.921 INFO [18687]: _SERVER found -- 16:37:34.921 INFO [18687]: REMOTE_ADDR = 192.168.1.13 -- 16:37:34.921 INFO [18687]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:37:34.921 INFO [18687]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:37:34.921 INFO [18687]: QUERY_STRING = /auth -- 16:37:34.921 INFO [18687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:37:35.025 INFO [18687]: COREGRADE is starting... -- 16:37:35.026 INFO [18687]: Version from config: 1.0 -- 16:37:35.026 DEBUG [18687]: Connecting to database... -- 16:37:35.026 DEBUG [18687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:37:35.026 SQL [18687]: pgsql_db_connect() -- 16:37:35.030 DEBUG [18687]: Database connection successful -- 16:37:35.030 INFO [18687]: _SERVER found -- 16:37:35.030 INFO [18687]: REMOTE_ADDR = 192.168.1.13 -- 16:37:35.030 INFO [18687]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:37:35.030 INFO [18687]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:37:35.030 INFO [18687]: QUERY_STRING = /member/index -- 16:37:35.030 INFO [18687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:37:35.066 INFO [18687]: COREGRADE is stopping... -- 16:37:35.066 DEBUG [18687]: Closing database connection -- 16:37:35.066 SQL [18687]: pgsql_close() -- 16:37:35.329 INFO [18687]: COREGRADE is starting... -- 16:37:35.329 INFO [18687]: Version from config: 1.0 -- 16:37:35.329 DEBUG [18687]: Connecting to database... -- 16:37:35.329 DEBUG [18687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:37:35.329 SQL [18687]: pgsql_db_connect() -- 16:37:35.333 DEBUG [18687]: Database connection successful -- 16:37:35.333 INFO [18687]: _SERVER found -- 16:37:35.333 INFO [18687]: REMOTE_ADDR = 192.168.1.13 -- 16:37:35.333 INFO [18687]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:37:35.333 INFO [18687]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:37:35.333 INFO [18687]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:37:35.333 INFO [18687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:37:35.344 INFO [18687]: COREGRADE is stopping... -- 16:37:35.344 DEBUG [18687]: Closing database connection -- 16:37:35.344 SQL [18687]: pgsql_close() -- 16:37:35.347 INFO [18686]: COREGRADE is starting... -- 16:37:35.347 INFO [18686]: Version from config: 1.0 -- 16:37:35.347 DEBUG [18686]: Connecting to database... -- 16:37:35.347 DEBUG [18686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:37:35.347 SQL [18686]: pgsql_db_connect() -- 16:37:35.351 DEBUG [18686]: Database connection successful -- 16:37:35.351 INFO [18686]: _SERVER found -- 16:37:35.351 INFO [18686]: REMOTE_ADDR = 192.168.1.13 -- 16:37:35.351 INFO [18686]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:37:35.351 INFO [18686]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:37:35.351 INFO [18686]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:37:35.351 INFO [18686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:37:35.362 INFO [18686]: COREGRADE is stopping... -- 16:37:35.362 DEBUG [18686]: Closing database connection -- 16:37:35.362 SQL [18686]: pgsql_close() -- 16:37:38.296 INFO [18686]: COREGRADE is starting... -- 16:37:38.297 INFO [18686]: Version from config: 1.0 -- 16:37:38.297 DEBUG [18686]: Connecting to database... -- 16:37:38.297 DEBUG [18686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:37:38.297 SQL [18686]: pgsql_db_connect() -- 16:37:38.301 DEBUG [18686]: Database connection successful -- 16:37:38.301 INFO [18686]: _SERVER found -- 16:37:38.301 INFO [18686]: REMOTE_ADDR = 192.168.1.13 -- 16:37:38.301 INFO [18686]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:37:38.301 INFO [18686]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:37:38.301 INFO [18686]: QUERY_STRING = /auth/logout -- 16:37:38.301 INFO [18686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:37:38.332 INFO [18686]: COREGRADE is stopping... -- 16:37:38.332 DEBUG [18686]: Closing database connection -- 16:37:38.332 SQL [18686]: pgsql_close() -- 16:37:38.627 INFO [18686]: COREGRADE is starting... -- 16:37:38.627 INFO [18686]: Version from config: 1.0 -- 16:37:38.627 DEBUG [18686]: Connecting to database... -- 16:37:38.627 DEBUG [18686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:37:38.627 SQL [18686]: pgsql_db_connect() -- 16:37:38.636 INFO [18687]: COREGRADE is starting... -- 16:37:38.636 INFO [18687]: Version from config: 1.0 -- 16:37:38.636 DEBUG [18687]: Connecting to database... -- 16:37:38.636 DEBUG [18687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:37:38.636 SQL [18687]: pgsql_db_connect() -- 16:37:38.631 DEBUG [18686]: Database connection successful -- 16:37:38.631 INFO [18686]: _SERVER found -- 16:37:38.631 INFO [18686]: REMOTE_ADDR = 192.168.1.13 -- 16:37:38.631 INFO [18686]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:37:38.631 INFO [18686]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:37:38.631 INFO [18686]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:37:38.631 INFO [18686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:37:38.642 INFO [18686]: COREGRADE is stopping... -- 16:37:38.642 DEBUG [18686]: Closing database connection -- 16:37:38.642 SQL [18686]: pgsql_close() -- 16:37:38.640 DEBUG [18687]: Database connection successful -- 16:37:38.640 INFO [18687]: _SERVER found -- 16:37:38.640 INFO [18687]: REMOTE_ADDR = 192.168.1.13 -- 16:37:38.640 INFO [18687]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:37:38.640 INFO [18687]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:37:38.640 INFO [18687]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:37:38.640 INFO [18687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:37:38.651 INFO [18687]: COREGRADE is stopping... -- 16:37:38.651 DEBUG [18687]: Closing database connection -- 16:37:38.651 SQL [18687]: pgsql_close() -- 16:37:43.935 INFO [18688]: COREGRADE is starting... -- 16:37:43.935 INFO [18688]: Version from config: 1.0 -- 16:37:43.935 DEBUG [18688]: Connecting to database... -- 16:37:43.935 DEBUG [18688]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:37:43.935 SQL [18688]: pgsql_db_connect() -- 16:37:43.939 DEBUG [18688]: Database connection successful -- 16:37:43.939 INFO [18688]: _SERVER found -- 16:37:43.939 INFO [18688]: REMOTE_ADDR = 192.168.1.13 -- 16:37:43.939 INFO [18688]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:37:43.939 INFO [18688]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:37:43.939 INFO [18688]: QUERY_STRING = /auth -- 16:37:43.939 INFO [18688]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:37:43.971 INFO [18688]: COREGRADE is stopping... -- 16:37:43.971 DEBUG [18688]: Closing database connection -- 16:37:43.971 SQL [18688]: pgsql_close() -- 16:37:44.110 INFO [18688]: COREGRADE is starting... -- 16:37:44.111 INFO [18688]: Version from config: 1.0 -- 16:37:44.111 DEBUG [18688]: Connecting to database... -- 16:37:44.111 DEBUG [18688]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:37:44.111 SQL [18688]: pgsql_db_connect() -- 16:37:44.115 DEBUG [18688]: Database connection successful -- 16:37:44.115 INFO [18688]: _SERVER found -- 16:37:44.115 INFO [18688]: REMOTE_ADDR = 192.168.1.13 -- 16:37:44.115 INFO [18688]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:37:44.115 INFO [18688]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:37:44.115 INFO [18688]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:37:44.115 INFO [18688]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:37:44.126 INFO [18688]: COREGRADE is stopping... -- 16:37:44.126 DEBUG [18688]: Closing database connection -- 16:37:44.126 SQL [18688]: pgsql_close() -- 16:37:46.133 INFO [18688]: COREGRADE is starting... -- 16:37:46.134 INFO [18688]: Version from config: 1.0 -- 16:37:46.134 DEBUG [18688]: Connecting to database... -- 16:37:46.134 DEBUG [18688]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:37:46.134 SQL [18688]: pgsql_db_connect() -- 16:37:46.138 DEBUG [18688]: Database connection successful -- 16:37:46.138 INFO [18688]: _SERVER found -- 16:37:46.138 INFO [18688]: REMOTE_ADDR = 192.168.1.13 -- 16:37:46.138 INFO [18688]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:37:46.138 INFO [18688]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:37:46.138 INFO [18688]: QUERY_STRING = /auth/newuser -- 16:37:46.138 INFO [18688]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:37:46.168 INFO [18688]: COREGRADE is stopping... -- 16:37:46.169 DEBUG [18688]: Closing database connection -- 16:37:46.169 SQL [18688]: pgsql_close() -- 16:37:46.420 INFO [18688]: COREGRADE is starting... -- 16:37:46.420 INFO [18688]: Version from config: 1.0 -- 16:37:46.420 DEBUG [18688]: Connecting to database... -- 16:37:46.420 DEBUG [18688]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:37:46.420 SQL [18688]: pgsql_db_connect() -- 16:37:46.424 DEBUG [18688]: Database connection successful -- 16:37:46.424 INFO [18688]: _SERVER found -- 16:37:46.424 INFO [18688]: REMOTE_ADDR = 192.168.1.13 -- 16:37:46.424 INFO [18688]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:37:46.424 INFO [18688]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:37:46.424 INFO [18688]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:37:46.424 INFO [18688]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:37:46.435 INFO [18688]: COREGRADE is stopping... -- 16:37:46.435 DEBUG [18688]: Closing database connection -- 16:37:46.435 SQL [18688]: pgsql_close() -- 16:44:27.015 INFO [18689]: COREGRADE is starting... -- 16:44:27.015 INFO [18689]: Version from config: 1.0 -- 16:44:27.015 DEBUG [18689]: Connecting to database... -- 16:44:27.015 DEBUG [18689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:44:27.016 SQL [18689]: pgsql_db_connect() -- 16:44:27.020 DEBUG [18689]: Database connection successful -- 16:44:27.020 INFO [18689]: _SERVER found -- 16:44:27.020 INFO [18689]: REMOTE_ADDR = 192.168.1.13 -- 16:44:27.020 INFO [18689]: SERVER_NAME = oameye.works.coregrade.com -- 16:44:27.020 INFO [18689]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=mg2svb6civh2k7jecg693k5eu6eji3q3 -- 16:44:27.020 INFO [18689]: QUERY_STRING = /auth -- 16:44:27.020 INFO [18689]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:44:27.055 INFO [18689]: COREGRADE is stopping... -- 16:44:27.055 DEBUG [18689]: Closing database connection -- 16:44:27.055 SQL [18689]: pgsql_close() -- 16:44:27.192 INFO [18689]: COREGRADE is starting... -- 16:44:27.192 INFO [18689]: Version from config: 1.0 -- 16:44:27.192 DEBUG [18689]: Connecting to database... -- 16:44:27.192 DEBUG [18689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:44:27.192 SQL [18689]: pgsql_db_connect() -- 16:44:27.196 DEBUG [18689]: Database connection successful -- 16:44:27.196 INFO [18689]: _SERVER found -- 16:44:27.196 INFO [18689]: REMOTE_ADDR = 192.168.1.13 -- 16:44:27.196 INFO [18689]: SERVER_NAME = oameye.works.coregrade.com -- 16:44:27.196 INFO [18689]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=u8qv515ua6obsbq5n87i44vodbfvu93q -- 16:44:27.196 INFO [18689]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:44:27.196 INFO [18689]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:44:27.208 INFO [18689]: COREGRADE is stopping... -- 16:44:27.208 DEBUG [18689]: Closing database connection -- 16:44:27.208 SQL [18689]: pgsql_close() -- 16:44:27.683 INFO [18689]: COREGRADE is starting... -- 16:44:27.684 INFO [18689]: Version from config: 1.0 -- 16:44:27.684 DEBUG [18689]: Connecting to database... -- 16:44:27.684 DEBUG [18689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:44:27.684 SQL [18689]: pgsql_db_connect() -- 16:44:27.688 DEBUG [18689]: Database connection successful -- 16:44:27.688 INFO [18689]: _SERVER found -- 16:44:27.688 INFO [18689]: REMOTE_ADDR = 192.168.1.13 -- 16:44:27.688 INFO [18689]: SERVER_NAME = oameye.works.coregrade.com -- 16:44:27.688 INFO [18689]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=u8qv515ua6obsbq5n87i44vodbfvu93q -- 16:44:27.688 INFO [18689]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:44:27.688 INFO [18689]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:44:27.699 INFO [18689]: COREGRADE is stopping... -- 16:44:27.699 DEBUG [18689]: Closing database connection -- 16:44:27.699 SQL [18689]: pgsql_close() -- 16:48:01.214 INFO [18800]: COREGRADE is starting... -- 16:48:01.214 INFO [18800]: Version from config: 1.0 -- 16:48:01.215 DEBUG [18800]: Connecting to database... -- 16:48:01.215 DEBUG [18800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:48:01.215 SQL [18800]: pgsql_db_connect() -- 16:48:01.219 DEBUG [18800]: Database connection successful -- 16:48:01.219 INFO [18800]: _SERVER found -- 16:48:01.219 INFO [18800]: REMOTE_ADDR = 192.168.1.13 -- 16:48:01.219 INFO [18800]: SERVER_NAME = oameye.works.coregrade.com -- 16:48:01.219 INFO [18800]: QUERY_STRING = /solr/admin/info/system -- 16:48:01.219 INFO [18800]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 16:48:01.234 INFO [18800]: COREGRADE is stopping... -- 16:48:01.234 DEBUG [18800]: Closing database connection -- 16:48:01.234 SQL [18800]: pgsql_close() -- 16:50:37.033 INFO [18690]: COREGRADE is starting... -- 16:50:37.033 INFO [18690]: Version from config: 1.0 -- 16:50:37.033 DEBUG [18690]: Connecting to database... -- 16:50:37.033 DEBUG [18690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:50:37.033 SQL [18690]: pgsql_db_connect() -- 16:50:37.071 INFO [18690]: COREGRADE is starting... -- 16:50:37.071 INFO [18690]: Version from config: 1.0 -- 16:50:37.071 DEBUG [18690]: Connecting to database... -- 16:50:37.071 DEBUG [18690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:50:37.071 SQL [18690]: pgsql_db_connect() -- 16:50:37.075 DEBUG [18690]: Database connection successful -- 16:50:37.075 INFO [18690]: _SERVER found -- 16:50:37.075 INFO [18690]: REMOTE_ADDR = 192.168.1.13 -- 16:50:37.075 INFO [18690]: SERVER_NAME = oameye.works.coregrade.com -- 16:50:37.075 INFO [18690]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361 -- 16:50:37.075 INFO [18690]: QUERY_STRING = -- 16:50:37.075 INFO [18690]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:50:37.075 INFO [18690]: SystemStatus()09-09-********~************ -- 16:50:37.075 INFO [18690]: long coregrade_api_main(CVars in, CVars &out) -- 16:50:37.075 INFO [18690]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 16:50:37.075 INFO [18690]: account calls -- 16:50:37.075 INFO [18690]: account_calls() -- 16:50:37.075 INFO [18690]: LoginCoreGradeAccount() -- 16:50:37.075 FLOG_MAX [18690]: REQ_STRING(username) -- 16:50:37.075 FLOG_MAX [18690]: REQ_STRING(password) -- 16:50:37.075 FLOG_MAX [18690]: REQ_STRING(sessionid) -- 16:50:37.075 FLOG_MAX [18690]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:50:37.076 SQL [18690]: pgsql_query() -- 16:50:37.076 SQL [18690]: About to run query: -- 16:50:37.076 SQL [18690]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 16:50:37.079 SQL [18690]: Found rows: 1 -- 16:50:37.079 FLOG_MAX [18690]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=15 -- 16:50:37.079 INFO [18690]: long SessionCheck(long uid, const char *sessionid, int create ) -- 16:50:37.079 SQL [18690]: pgsql_exec() -- 16:50:37.079 SQL [18690]: About to run query: -- 16:50:37.079 SQL [18690]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 16:50:37.080 SQL [18690]: PQcmdTuples: 0 -- 16:50:37.080 SQL [18690]: Affected rows: 0 -- 16:50:37.080 SQL [18690]: pgsql_exec() -- 16:50:37.080 SQL [18690]: About to run query: -- 16:50:37.080 SQL [18690]: DELETE FROM members_session WHERE member_id=7 -- 16:50:37.106 SQL [18690]: PQcmdTuples: 1 -- 16:50:37.106 SQL [18690]: Affected rows: 1 -- 16:50:37.106 SQL [18690]: pgsql_query() -- 16:50:37.106 SQL [18690]: About to run query: -- 16:50:37.106 SQL [18690]: SELECT * FROM members_session WHERE member_id=7 AND session<>'CDFD5F9EC7F50C42349C7125C3D11184' -- 16:50:37.107 SQL [18690]: Found rows: 0 -- 16:50:37.107 SQL [18690]: Found rows: 0 -- 16:50:37.107 FLOG_MAX [18690]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:50:37.107 SQL [18690]: pgsql_query() -- 16:50:37.107 SQL [18690]: About to run query: -- 16:50:37.107 SQL [18690]: SELECT * FROM members_session WHERE member_id=7 AND session='CDFD5F9EC7F50C42349C7125C3D11184' -- 16:50:37.108 SQL [18690]: Found rows: 0 -- 16:50:37.108 SQL [18690]: Found rows: 0 -- 16:50:37.108 FLOG_MAX [18690]: insert_db_record() -- 16:50:37.108 SQL [18690]: pgsql_exec() -- 16:50:37.108 SQL [18690]: About to run query: -- 16:50:37.108 SQL [18690]: INSERT INTO members_session (member_id,session) VALUES ('7','CDFD5F9EC7F50C42349C7125C3D11184') -- 16:50:37.109 SQL [18690]: PQcmdTuples: 1 -- 16:50:37.109 SQL [18690]: Affected rows: 1 -- 16:50:37.109 FLOG_MAX [18690]: SELECT currval('members_session_id_seq') -- 16:50:37.109 SQL [18690]: pgsql_query() -- 16:50:37.109 SQL [18690]: About to run query: -- 16:50:37.109 SQL [18690]: SELECT currval('members_session_id_seq') -- 16:50:37.110 SQL [18690]: Found rows: 1 -- 16:50:37.110 INFO [18690]: CreateDefaultPage() -- 16:50:37.110 FLOG_MAX [18690]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:50:37.110 SQL [18690]: pgsql_query() -- 16:50:37.110 SQL [18690]: About to run query: -- 16:50:37.110 SQL [18690]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 16:50:37.110 SQL [18690]: Found rows: 1 -- 16:50:37.110 FLOG_MAX [18690]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 16:50:37.110 SQL [18690]: pgsql_query() -- 16:50:37.110 SQL [18690]: About to run query: -- 16:50:37.110 SQL [18690]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 16:50:37.111 SQL [18690]: Found rows: 1 -- 16:50:37.111 INFO [18690]: /CreateDefaultPage() -- 16:50:37.111 INFO [18690]: /LoginCoreGradeAccount() -- 16:50:37.111 INFO [18690]: RET: added=2020-02-05 09:42:12.816064 -- 16:50:37.111 INFO [18690]: RET: email=tokslaw@chiefsoft.com -- 16:50:37.111 INFO [18690]: RET: firstname=Tokunbo -- 16:50:37.111 INFO [18690]: RET: id=7 -- 16:50:37.111 INFO [18690]: RET: last_login= -- 16:50:37.111 INFO [18690]: RET: lastname=Lawal -- 16:50:37.111 INFO [18690]: RET: loc=192.168.1.13 -- 16:50:37.111 INFO [18690]: RET: member_id=7 -- 16:50:37.111 INFO [18690]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 16:50:37.111 INFO [18690]: RET: phone= -- 16:50:37.111 INFO [18690]: RET: pid= -- 16:50:37.111 INFO [18690]: RET: result=YES I GET TO BACK END -- 16:50:37.111 INFO [18690]: RET: sessionid=CDFD5F9EC7F50C42349C7125C3D11184 -- 16:50:37.111 INFO [18690]: RET: status=1 -- 16:50:37.111 INFO [18690]: RET: stauts=OK -- 16:50:37.111 INFO [18690]: RET: username=tokslaw@chiefsoft.com -- 16:50:37.111 INFO [18690]: RET: verified= -- 16:50:37.112 INFO [18690]: COREGRADE is stopping... -- 16:50:37.112 DEBUG [18690]: Closing database connection -- 16:50:37.112 SQL [18690]: pgsql_close() -- 16:50:37.038 DEBUG [18690]: Database connection successful -- 16:50:37.038 INFO [18690]: _SERVER found -- 16:50:37.038 INFO [18690]: REMOTE_ADDR = 192.168.1.13 -- 16:50:37.038 INFO [18690]: SERVER_NAME = oameye.works.coregrade.com -- 16:50:37.038 INFO [18690]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361 -- 16:50:37.038 INFO [18690]: QUERY_STRING = /auth -- 16:50:37.038 INFO [18690]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:50:37.113 INFO [18690]: COREGRADE is stopping... -- 16:50:37.113 DEBUG [18690]: Closing database connection -- 16:50:37.113 SQL [18690]: pgsql_close() -- 16:50:37.150 INFO [18690]: COREGRADE is starting... -- 16:50:37.150 INFO [18690]: Version from config: 1.0 -- 16:50:37.150 DEBUG [18690]: Connecting to database... -- 16:50:37.150 DEBUG [18690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:50:37.150 SQL [18690]: pgsql_db_connect() -- 16:50:37.154 DEBUG [18690]: Database connection successful -- 16:50:37.154 INFO [18690]: _SERVER found -- 16:50:37.154 INFO [18690]: REMOTE_ADDR = 192.168.1.13 -- 16:50:37.154 INFO [18690]: SERVER_NAME = oameye.works.coregrade.com -- 16:50:37.154 INFO [18690]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=mqa5b5860kfiivs9rpf62ln18drpofdc -- 16:50:37.154 INFO [18690]: QUERY_STRING = /member/index -- 16:50:37.154 INFO [18690]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:50:37.191 INFO [18690]: COREGRADE is stopping... -- 16:50:37.191 DEBUG [18690]: Closing database connection -- 16:50:37.191 SQL [18690]: pgsql_close() -- 16:50:37.845 INFO [18690]: COREGRADE is starting... -- 16:50:37.845 INFO [18690]: Version from config: 1.0 -- 16:50:37.845 DEBUG [18690]: Connecting to database... -- 16:50:37.845 DEBUG [18690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:50:37.845 SQL [18690]: pgsql_db_connect() -- 16:50:37.849 DEBUG [18690]: Database connection successful -- 16:50:37.849 INFO [18690]: _SERVER found -- 16:50:37.849 INFO [18690]: REMOTE_ADDR = 192.168.1.13 -- 16:50:37.849 INFO [18690]: SERVER_NAME = oameye.works.coregrade.com -- 16:50:37.849 INFO [18690]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=mqa5b5860kfiivs9rpf62ln18drpofdc -- 16:50:37.849 INFO [18690]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:50:37.849 INFO [18690]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:50:37.860 INFO [18690]: COREGRADE is stopping... -- 16:50:37.860 DEBUG [18690]: Closing database connection -- 16:50:37.860 SQL [18690]: pgsql_close() -- 16:50:37.893 INFO [18690]: COREGRADE is starting... -- 16:50:37.893 INFO [18690]: Version from config: 1.0 -- 16:50:37.893 DEBUG [18690]: Connecting to database... -- 16:50:37.893 DEBUG [18690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:50:37.893 SQL [18690]: pgsql_db_connect() -- 16:50:37.897 DEBUG [18690]: Database connection successful -- 16:50:37.897 INFO [18690]: _SERVER found -- 16:50:37.897 INFO [18690]: REMOTE_ADDR = 192.168.1.13 -- 16:50:37.897 INFO [18690]: SERVER_NAME = oameye.works.coregrade.com -- 16:50:37.897 INFO [18690]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=mqa5b5860kfiivs9rpf62ln18drpofdc -- 16:50:37.897 INFO [18690]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:50:37.897 INFO [18690]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:50:37.908 INFO [18690]: COREGRADE is stopping... -- 16:50:37.908 DEBUG [18690]: Closing database connection -- 16:50:37.908 SQL [18690]: pgsql_close() -- 16:53:15.527 INFO [18719]: COREGRADE is starting... -- 16:53:15.527 INFO [18719]: Version from config: 1.0 -- 16:53:15.527 DEBUG [18719]: Connecting to database... -- 16:53:15.527 DEBUG [18719]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:53:15.527 SQL [18719]: pgsql_db_connect() -- 16:53:15.532 DEBUG [18719]: Database connection successful -- 16:53:15.532 INFO [18719]: _SERVER found -- 16:53:15.532 INFO [18719]: REMOTE_ADDR = 192.168.1.13 -- 16:53:15.532 INFO [18719]: SERVER_NAME = oameye.works.coregrade.com -- 16:53:15.532 INFO [18719]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=u8qv515ua6obsbq5n87i44vodbfvu93q -- 16:53:15.532 INFO [18719]: QUERY_STRING = /auth/logout -- 16:53:15.532 INFO [18719]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:53:15.566 INFO [18719]: COREGRADE is stopping... -- 16:53:15.566 DEBUG [18719]: Closing database connection -- 16:53:15.566 SQL [18719]: pgsql_close() -- 16:53:15.695 INFO [18719]: COREGRADE is starting... -- 16:53:15.696 INFO [18719]: Version from config: 1.0 -- 16:53:15.696 DEBUG [18719]: Connecting to database... -- 16:53:15.696 DEBUG [18719]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:53:15.696 SQL [18719]: pgsql_db_connect() -- 16:53:15.700 DEBUG [18719]: Database connection successful -- 16:53:15.700 INFO [18719]: _SERVER found -- 16:53:15.700 INFO [18719]: REMOTE_ADDR = 192.168.1.13 -- 16:53:15.700 INFO [18719]: SERVER_NAME = oameye.works.coregrade.com -- 16:53:15.700 INFO [18719]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2ip71r9aufsong7ia2ai5jglrqev2gq7 -- 16:53:15.700 INFO [18719]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:53:15.700 INFO [18719]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:53:15.711 INFO [18719]: COREGRADE is stopping... -- 16:53:15.711 DEBUG [18719]: Closing database connection -- 16:53:15.711 SQL [18719]: pgsql_close() -- 16:53:15.714 INFO [18697]: COREGRADE is starting... -- 16:53:15.714 INFO [18697]: Version from config: 1.0 -- 16:53:15.714 DEBUG [18697]: Connecting to database... -- 16:53:15.714 DEBUG [18697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:53:15.714 SQL [18697]: pgsql_db_connect() -- 16:53:15.718 DEBUG [18697]: Database connection successful -- 16:53:15.718 INFO [18697]: _SERVER found -- 16:53:15.718 INFO [18697]: REMOTE_ADDR = 192.168.1.13 -- 16:53:15.718 INFO [18697]: SERVER_NAME = oameye.works.coregrade.com -- 16:53:15.718 INFO [18697]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2ip71r9aufsong7ia2ai5jglrqev2gq7 -- 16:53:15.718 INFO [18697]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:53:15.718 INFO [18697]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:53:15.730 INFO [18697]: COREGRADE is stopping... -- 16:53:15.730 DEBUG [18697]: Closing database connection -- 16:53:15.730 SQL [18697]: pgsql_close() -- 16:53:17.236 INFO [18719]: COREGRADE is starting... -- 16:53:17.237 INFO [18719]: Version from config: 1.0 -- 16:53:17.237 DEBUG [18719]: Connecting to database... -- 16:53:17.237 DEBUG [18719]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:53:17.237 SQL [18719]: pgsql_db_connect() -- 16:53:17.271 INFO [18719]: COREGRADE is starting... -- 16:53:17.272 INFO [18719]: Version from config: 1.0 -- 16:53:17.272 DEBUG [18719]: Connecting to database... -- 16:53:17.272 DEBUG [18719]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:53:17.272 SQL [18719]: pgsql_db_connect() -- 16:53:17.276 DEBUG [18719]: Database connection successful -- 16:53:17.276 INFO [18719]: _SERVER found -- 16:53:17.276 INFO [18719]: REMOTE_ADDR = 192.168.1.13 -- 16:53:17.276 INFO [18719]: SERVER_NAME = oameye.works.coregrade.com -- 16:53:17.276 INFO [18719]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2ip71r9aufsong7ia2ai5jglrqev2gq7 -- 16:53:17.276 INFO [18719]: QUERY_STRING = -- 16:53:17.276 INFO [18719]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:53:17.276 INFO [18719]: SystemStatus()09-09-********~************ -- 16:53:17.276 INFO [18719]: long coregrade_api_main(CVars in, CVars &out) -- 16:53:17.276 INFO [18719]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 16:53:17.276 INFO [18719]: account calls -- 16:53:17.276 INFO [18719]: account_calls() -- 16:53:17.276 INFO [18719]: LoginCoreGradeAccount() -- 16:53:17.276 FLOG_MAX [18719]: REQ_STRING(username) -- 16:53:17.276 FLOG_MAX [18719]: REQ_STRING(password) -- 16:53:17.276 FLOG_MAX [18719]: REQ_STRING(sessionid) -- 16:53:17.276 FLOG_MAX [18719]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:53:17.276 SQL [18719]: pgsql_query() -- 16:53:17.276 SQL [18719]: About to run query: -- 16:53:17.276 SQL [18719]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 16:53:17.279 SQL [18719]: Found rows: 1 -- 16:53:17.279 FLOG_MAX [18719]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 16:53:17.279 INFO [18719]: long SessionCheck(long uid, const char *sessionid, int create ) -- 16:53:17.279 SQL [18719]: pgsql_exec() -- 16:53:17.279 SQL [18719]: About to run query: -- 16:53:17.279 SQL [18719]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 16:53:17.280 SQL [18719]: PQcmdTuples: 0 -- 16:53:17.280 SQL [18719]: Affected rows: 0 -- 16:53:17.280 SQL [18719]: pgsql_exec() -- 16:53:17.280 SQL [18719]: About to run query: -- 16:53:17.280 SQL [18719]: DELETE FROM members_session WHERE member_id=5 -- 16:53:17.281 SQL [18719]: PQcmdTuples: 1 -- 16:53:17.281 SQL [18719]: Affected rows: 1 -- 16:53:17.281 SQL [18719]: pgsql_query() -- 16:53:17.281 SQL [18719]: About to run query: -- 16:53:17.281 SQL [18719]: SELECT * FROM members_session WHERE member_id=5 AND session<>'02F1D91BFDB2D1F9090D3E80A424DD56' -- 16:53:17.281 SQL [18719]: Found rows: 0 -- 16:53:17.281 SQL [18719]: Found rows: 0 -- 16:53:17.281 FLOG_MAX [18719]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:53:17.282 SQL [18719]: pgsql_query() -- 16:53:17.282 SQL [18719]: About to run query: -- 16:53:17.282 SQL [18719]: SELECT * FROM members_session WHERE member_id=5 AND session='02F1D91BFDB2D1F9090D3E80A424DD56' -- 16:53:17.282 SQL [18719]: Found rows: 0 -- 16:53:17.282 SQL [18719]: Found rows: 0 -- 16:53:17.282 FLOG_MAX [18719]: insert_db_record() -- 16:53:17.282 SQL [18719]: pgsql_exec() -- 16:53:17.282 SQL [18719]: About to run query: -- 16:53:17.282 SQL [18719]: INSERT INTO members_session (member_id,session) VALUES ('5','02F1D91BFDB2D1F9090D3E80A424DD56') -- 16:53:17.283 SQL [18719]: PQcmdTuples: 1 -- 16:53:17.283 SQL [18719]: Affected rows: 1 -- 16:53:17.283 FLOG_MAX [18719]: SELECT currval('members_session_id_seq') -- 16:53:17.283 SQL [18719]: pgsql_query() -- 16:53:17.284 SQL [18719]: About to run query: -- 16:53:17.284 SQL [18719]: SELECT currval('members_session_id_seq') -- 16:53:17.284 SQL [18719]: Found rows: 1 -- 16:53:17.284 INFO [18719]: CreateDefaultPage() -- 16:53:17.284 FLOG_MAX [18719]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:53:17.284 SQL [18719]: pgsql_query() -- 16:53:17.284 SQL [18719]: About to run query: -- 16:53:17.284 SQL [18719]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 16:53:17.284 SQL [18719]: Found rows: 1 -- 16:53:17.284 FLOG_MAX [18719]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 16:53:17.284 SQL [18719]: pgsql_query() -- 16:53:17.284 SQL [18719]: About to run query: -- 16:53:17.284 SQL [18719]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 16:53:17.285 SQL [18719]: Found rows: 1 -- 16:53:17.285 INFO [18719]: /CreateDefaultPage() -- 16:53:17.285 INFO [18719]: /LoginCoreGradeAccount() -- 16:53:17.285 INFO [18719]: RET: added=2020-02-05 06:47:23.982154 -- 16:53:17.285 INFO [18719]: RET: email=ameye+11@chiefsoft.com -- 16:53:17.285 INFO [18719]: RET: firstname=Olu -- 16:53:17.285 INFO [18719]: RET: id=5 -- 16:53:17.285 INFO [18719]: RET: last_login= -- 16:53:17.285 INFO [18719]: RET: lastname=Amey -- 16:53:17.285 INFO [18719]: RET: loc=192.168.1.13 -- 16:53:17.285 INFO [18719]: RET: member_id=5 -- 16:53:17.285 INFO [18719]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 16:53:17.285 INFO [18719]: RET: phone= -- 16:53:17.285 INFO [18719]: RET: pid= -- 16:53:17.285 INFO [18719]: RET: result=YES I GET TO BACK END -- 16:53:17.285 INFO [18719]: RET: sessionid=02F1D91BFDB2D1F9090D3E80A424DD56 -- 16:53:17.285 INFO [18719]: RET: status=1 -- 16:53:17.285 INFO [18719]: RET: stauts=OK -- 16:53:17.285 INFO [18719]: RET: username=ameye+11@chiefsoft.com -- 16:53:17.285 INFO [18719]: RET: verified= -- 16:53:17.286 INFO [18719]: COREGRADE is stopping... -- 16:53:17.286 DEBUG [18719]: Closing database connection -- 16:53:17.286 SQL [18719]: pgsql_close() -- 16:53:17.241 DEBUG [18719]: Database connection successful -- 16:53:17.241 INFO [18719]: _SERVER found -- 16:53:17.241 INFO [18719]: REMOTE_ADDR = 192.168.1.13 -- 16:53:17.241 INFO [18719]: SERVER_NAME = oameye.works.coregrade.com -- 16:53:17.241 INFO [18719]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2ip71r9aufsong7ia2ai5jglrqev2gq7 -- 16:53:17.241 INFO [18719]: QUERY_STRING = /auth -- 16:53:17.241 INFO [18719]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:53:17.287 INFO [18719]: COREGRADE is stopping... -- 16:53:17.287 DEBUG [18719]: Closing database connection -- 16:53:17.287 SQL [18719]: pgsql_close() -- 16:53:17.310 INFO [18719]: COREGRADE is starting... -- 16:53:17.310 INFO [18719]: Version from config: 1.0 -- 16:53:17.310 DEBUG [18719]: Connecting to database... -- 16:53:17.310 DEBUG [18719]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:53:17.310 SQL [18719]: pgsql_db_connect() -- 16:53:17.314 DEBUG [18719]: Database connection successful -- 16:53:17.314 INFO [18719]: _SERVER found -- 16:53:17.314 INFO [18719]: REMOTE_ADDR = 192.168.1.13 -- 16:53:17.314 INFO [18719]: SERVER_NAME = oameye.works.coregrade.com -- 16:53:17.314 INFO [18719]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2ip71r9aufsong7ia2ai5jglrqev2gq7 -- 16:53:17.314 INFO [18719]: QUERY_STRING = /member/index -- 16:53:17.314 INFO [18719]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:53:17.350 INFO [18719]: COREGRADE is stopping... -- 16:53:17.350 DEBUG [18719]: Closing database connection -- 16:53:17.350 SQL [18719]: pgsql_close() -- 16:53:17.534 INFO [18719]: COREGRADE is starting... -- 16:53:17.534 INFO [18719]: Version from config: 1.0 -- 16:53:17.534 DEBUG [18719]: Connecting to database... -- 16:53:17.534 DEBUG [18719]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:53:17.534 SQL [18719]: pgsql_db_connect() -- 16:53:17.538 DEBUG [18719]: Database connection successful -- 16:53:17.538 INFO [18719]: _SERVER found -- 16:53:17.538 INFO [18719]: REMOTE_ADDR = 192.168.1.13 -- 16:53:17.538 INFO [18719]: SERVER_NAME = oameye.works.coregrade.com -- 16:53:17.538 INFO [18719]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2ip71r9aufsong7ia2ai5jglrqev2gq7 -- 16:53:17.538 INFO [18719]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:53:17.538 INFO [18719]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:53:17.550 INFO [18719]: COREGRADE is stopping... -- 16:53:17.550 DEBUG [18719]: Closing database connection -- 16:53:17.550 SQL [18719]: pgsql_close() -- 16:53:17.572 INFO [18719]: COREGRADE is starting... -- 16:53:17.572 INFO [18719]: Version from config: 1.0 -- 16:53:17.572 DEBUG [18719]: Connecting to database... -- 16:53:17.572 DEBUG [18719]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:53:17.572 SQL [18719]: pgsql_db_connect() -- 16:53:17.576 DEBUG [18719]: Database connection successful -- 16:53:17.576 INFO [18719]: _SERVER found -- 16:53:17.576 INFO [18719]: REMOTE_ADDR = 192.168.1.13 -- 16:53:17.576 INFO [18719]: SERVER_NAME = oameye.works.coregrade.com -- 16:53:17.576 INFO [18719]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2ip71r9aufsong7ia2ai5jglrqev2gq7 -- 16:53:17.576 INFO [18719]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:53:17.576 INFO [18719]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:53:17.587 INFO [18719]: COREGRADE is stopping... -- 16:53:17.587 DEBUG [18719]: Closing database connection -- 16:53:17.587 SQL [18719]: pgsql_close() -- 16:53:18.937 INFO [18719]: COREGRADE is starting... -- 16:53:18.937 INFO [18719]: Version from config: 1.0 -- 16:53:18.937 DEBUG [18719]: Connecting to database... -- 16:53:18.937 DEBUG [18719]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:53:18.937 SQL [18719]: pgsql_db_connect() -- 16:53:18.941 DEBUG [18719]: Database connection successful -- 16:53:18.941 INFO [18719]: _SERVER found -- 16:53:18.941 INFO [18719]: REMOTE_ADDR = 192.168.1.13 -- 16:53:18.941 INFO [18719]: SERVER_NAME = oameye.works.coregrade.com -- 16:53:18.941 INFO [18719]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2ip71r9aufsong7ia2ai5jglrqev2gq7 -- 16:53:18.941 INFO [18719]: QUERY_STRING = /member/page -- 16:53:18.941 INFO [18719]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:53:18.979 INFO [18719]: COREGRADE is stopping... -- 16:53:18.979 DEBUG [18719]: Closing database connection -- 16:53:18.979 SQL [18719]: pgsql_close() -- 16:53:19.172 INFO [18719]: COREGRADE is starting... -- 16:53:19.172 INFO [18719]: Version from config: 1.0 -- 16:53:19.172 DEBUG [18719]: Connecting to database... -- 16:53:19.172 DEBUG [18719]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:53:19.172 SQL [18719]: pgsql_db_connect() -- 16:53:19.176 DEBUG [18719]: Database connection successful -- 16:53:19.176 INFO [18719]: _SERVER found -- 16:53:19.176 INFO [18719]: REMOTE_ADDR = 192.168.1.13 -- 16:53:19.176 INFO [18719]: SERVER_NAME = oameye.works.coregrade.com -- 16:53:19.176 INFO [18719]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2ip71r9aufsong7ia2ai5jglrqev2gq7 -- 16:53:19.176 INFO [18719]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:53:19.176 INFO [18719]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:53:19.187 INFO [18719]: COREGRADE is stopping... -- 16:53:19.187 DEBUG [18719]: Closing database connection -- 16:53:19.187 SQL [18719]: pgsql_close() -- 16:53:21.914 INFO [18719]: COREGRADE is starting... -- 16:53:21.915 INFO [18719]: Version from config: 1.0 -- 16:53:21.915 DEBUG [18719]: Connecting to database... -- 16:53:21.915 DEBUG [18719]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:53:21.915 SQL [18719]: pgsql_db_connect() -- 16:53:21.919 DEBUG [18719]: Database connection successful -- 16:53:21.919 INFO [18719]: _SERVER found -- 16:53:21.919 INFO [18719]: REMOTE_ADDR = 192.168.1.13 -- 16:53:21.919 INFO [18719]: SERVER_NAME = oameye.works.coregrade.com -- 16:53:21.919 INFO [18719]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2ip71r9aufsong7ia2ai5jglrqev2gq7 -- 16:53:21.919 INFO [18719]: QUERY_STRING = /member -- 16:53:21.919 INFO [18719]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:53:21.954 INFO [18719]: COREGRADE is stopping... -- 16:53:21.954 DEBUG [18719]: Closing database connection -- 16:53:21.954 SQL [18719]: pgsql_close() -- 16:53:22.085 INFO [18719]: COREGRADE is starting... -- 16:53:22.085 INFO [18719]: Version from config: 1.0 -- 16:53:22.085 DEBUG [18719]: Connecting to database... -- 16:53:22.085 DEBUG [18719]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:53:22.085 SQL [18719]: pgsql_db_connect() -- 16:53:22.089 DEBUG [18719]: Database connection successful -- 16:53:22.089 INFO [18719]: _SERVER found -- 16:53:22.089 INFO [18719]: REMOTE_ADDR = 192.168.1.13 -- 16:53:22.089 INFO [18719]: SERVER_NAME = oameye.works.coregrade.com -- 16:53:22.089 INFO [18719]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2ip71r9aufsong7ia2ai5jglrqev2gq7 -- 16:53:22.089 INFO [18719]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:53:22.089 INFO [18719]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:53:22.100 INFO [18719]: COREGRADE is stopping... -- 16:53:22.100 DEBUG [18719]: Closing database connection -- 16:53:22.100 SQL [18719]: pgsql_close() -- 16:53:22.178 INFO [18719]: COREGRADE is starting... -- 16:53:22.178 INFO [18719]: Version from config: 1.0 -- 16:53:22.178 DEBUG [18719]: Connecting to database... -- 16:53:22.178 DEBUG [18719]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:53:22.178 SQL [18719]: pgsql_db_connect() -- 16:53:22.182 DEBUG [18719]: Database connection successful -- 16:53:22.182 INFO [18719]: _SERVER found -- 16:53:22.182 INFO [18719]: REMOTE_ADDR = 192.168.1.13 -- 16:53:22.182 INFO [18719]: SERVER_NAME = oameye.works.coregrade.com -- 16:53:22.182 INFO [18719]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2ip71r9aufsong7ia2ai5jglrqev2gq7 -- 16:53:22.182 INFO [18719]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:53:22.182 INFO [18719]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:53:22.193 INFO [18719]: COREGRADE is stopping... -- 16:53:22.193 DEBUG [18719]: Closing database connection -- 16:53:22.193 SQL [18719]: pgsql_close() -- 16:53:22.940 INFO [18719]: COREGRADE is starting... -- 16:53:22.940 INFO [18719]: Version from config: 1.0 -- 16:53:22.940 DEBUG [18719]: Connecting to database... -- 16:53:22.940 DEBUG [18719]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:53:22.940 SQL [18719]: pgsql_db_connect() -- 16:53:22.944 DEBUG [18719]: Database connection successful -- 16:53:22.944 INFO [18719]: _SERVER found -- 16:53:22.944 INFO [18719]: REMOTE_ADDR = 192.168.1.13 -- 16:53:22.944 INFO [18719]: SERVER_NAME = oameye.works.coregrade.com -- 16:53:22.944 INFO [18719]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2ip71r9aufsong7ia2ai5jglrqev2gq7 -- 16:53:22.944 INFO [18719]: QUERY_STRING = /member/page -- 16:53:22.944 INFO [18719]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:53:22.981 INFO [18719]: COREGRADE is stopping... -- 16:53:22.982 DEBUG [18719]: Closing database connection -- 16:53:22.982 SQL [18719]: pgsql_close() -- 16:53:23.087 INFO [18719]: COREGRADE is starting... -- 16:53:23.088 INFO [18719]: Version from config: 1.0 -- 16:53:23.088 DEBUG [18719]: Connecting to database... -- 16:53:23.088 DEBUG [18719]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:53:23.088 SQL [18719]: pgsql_db_connect() -- 16:53:23.092 DEBUG [18719]: Database connection successful -- 16:53:23.092 INFO [18719]: _SERVER found -- 16:53:23.092 INFO [18719]: REMOTE_ADDR = 192.168.1.13 -- 16:53:23.092 INFO [18719]: SERVER_NAME = oameye.works.coregrade.com -- 16:53:23.092 INFO [18719]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2ip71r9aufsong7ia2ai5jglrqev2gq7 -- 16:53:23.092 INFO [18719]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:53:23.092 INFO [18719]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:53:23.103 INFO [18719]: COREGRADE is stopping... -- 16:53:23.103 DEBUG [18719]: Closing database connection -- 16:53:23.103 SQL [18719]: pgsql_close() -- 16:53:23.158 INFO [18719]: COREGRADE is starting... -- 16:53:23.158 INFO [18719]: Version from config: 1.0 -- 16:53:23.158 DEBUG [18719]: Connecting to database... -- 16:53:23.158 DEBUG [18719]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:53:23.158 SQL [18719]: pgsql_db_connect() -- 16:53:23.162 DEBUG [18719]: Database connection successful -- 16:53:23.162 INFO [18719]: _SERVER found -- 16:53:23.162 INFO [18719]: REMOTE_ADDR = 192.168.1.13 -- 16:53:23.162 INFO [18719]: SERVER_NAME = oameye.works.coregrade.com -- 16:53:23.162 INFO [18719]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2ip71r9aufsong7ia2ai5jglrqev2gq7 -- 16:53:23.162 INFO [18719]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:53:23.162 INFO [18719]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:53:23.173 INFO [18719]: COREGRADE is stopping... -- 16:53:23.173 DEBUG [18719]: Closing database connection -- 16:53:23.173 SQL [18719]: pgsql_close() -- 16:53:25.994 INFO [18719]: COREGRADE is starting... -- 16:53:25.994 INFO [18719]: Version from config: 1.0 -- 16:53:25.994 DEBUG [18719]: Connecting to database... -- 16:53:25.994 DEBUG [18719]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:53:25.994 SQL [18719]: pgsql_db_connect() -- 16:53:25.998 DEBUG [18719]: Database connection successful -- 16:53:25.998 INFO [18719]: _SERVER found -- 16:53:25.998 INFO [18719]: REMOTE_ADDR = 192.168.1.13 -- 16:53:25.998 INFO [18719]: SERVER_NAME = oameye.works.coregrade.com -- 16:53:25.998 INFO [18719]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2ip71r9aufsong7ia2ai5jglrqev2gq7 -- 16:53:25.998 INFO [18719]: QUERY_STRING = /member/viewCardAddAction -- 16:53:25.998 INFO [18719]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:53:26.029 INFO [18719]: COREGRADE is stopping... -- 16:53:26.029 DEBUG [18719]: Closing database connection -- 16:53:26.029 SQL [18719]: pgsql_close() -- 16:53:28.412 INFO [18719]: COREGRADE is starting... -- 16:53:28.412 INFO [18719]: Version from config: 1.0 -- 16:53:28.412 DEBUG [18719]: Connecting to database... -- 16:53:28.412 DEBUG [18719]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:53:28.412 SQL [18719]: pgsql_db_connect() -- 16:53:28.416 DEBUG [18719]: Database connection successful -- 16:53:28.416 INFO [18719]: _SERVER found -- 16:53:28.416 INFO [18719]: REMOTE_ADDR = 192.168.1.13 -- 16:53:28.416 INFO [18719]: SERVER_NAME = oameye.works.coregrade.com -- 16:53:28.416 INFO [18719]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2ip71r9aufsong7ia2ai5jglrqev2gq7 -- 16:53:28.416 INFO [18719]: QUERY_STRING = /member/addNotecard -- 16:53:28.416 INFO [18719]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:53:28.447 INFO [18719]: COREGRADE is stopping... -- 16:53:28.447 DEBUG [18719]: Closing database connection -- 16:53:28.447 SQL [18719]: pgsql_close() -- 16:54:20.572 INFO [18687]: COREGRADE is starting... -- 16:54:20.572 INFO [18687]: Version from config: 1.0 -- 16:54:20.572 DEBUG [18687]: Connecting to database... -- 16:54:20.572 DEBUG [18687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:54:20.572 SQL [18687]: pgsql_db_connect() -- 16:54:20.577 DEBUG [18687]: Database connection successful -- 16:54:20.577 INFO [18687]: _SERVER found -- 16:54:20.577 INFO [18687]: REMOTE_ADDR = 192.168.1.13 -- 16:54:20.577 INFO [18687]: SERVER_NAME = oameye.works.coregrade.com -- 16:54:20.577 INFO [18687]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2ip71r9aufsong7ia2ai5jglrqev2gq7 -- 16:54:20.577 INFO [18687]: QUERY_STRING = /auth -- 16:54:20.577 INFO [18687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:54:20.610 INFO [18687]: COREGRADE is stopping... -- 16:54:20.610 DEBUG [18687]: Closing database connection -- 16:54:20.610 SQL [18687]: pgsql_close() -- 16:54:20.737 INFO [18687]: COREGRADE is starting... -- 16:54:20.737 INFO [18687]: Version from config: 1.0 -- 16:54:20.737 DEBUG [18687]: Connecting to database... -- 16:54:20.737 DEBUG [18687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:54:20.738 SQL [18687]: pgsql_db_connect() -- 16:54:20.741 DEBUG [18687]: Database connection successful -- 16:54:20.741 INFO [18687]: _SERVER found -- 16:54:20.741 INFO [18687]: REMOTE_ADDR = 192.168.1.13 -- 16:54:20.741 INFO [18687]: SERVER_NAME = oameye.works.coregrade.com -- 16:54:20.741 INFO [18687]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2ip71r9aufsong7ia2ai5jglrqev2gq7 -- 16:54:20.741 INFO [18687]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:54:20.741 INFO [18687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:54:20.753 INFO [18687]: COREGRADE is stopping... -- 16:54:20.753 DEBUG [18687]: Closing database connection -- 16:54:20.753 SQL [18687]: pgsql_close() -- 16:54:21.681 INFO [18687]: COREGRADE is starting... -- 16:54:21.682 INFO [18687]: Version from config: 1.0 -- 16:54:21.682 DEBUG [18687]: Connecting to database... -- 16:54:21.682 DEBUG [18687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:54:21.682 SQL [18687]: pgsql_db_connect() -- 16:54:21.686 DEBUG [18687]: Database connection successful -- 16:54:21.686 INFO [18687]: _SERVER found -- 16:54:21.686 INFO [18687]: REMOTE_ADDR = 192.168.1.13 -- 16:54:21.686 INFO [18687]: SERVER_NAME = oameye.works.coregrade.com -- 16:54:21.686 INFO [18687]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2ip71r9aufsong7ia2ai5jglrqev2gq7 -- 16:54:21.686 INFO [18687]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:54:21.686 INFO [18687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:54:21.697 INFO [18687]: COREGRADE is stopping... -- 16:54:21.697 DEBUG [18687]: Closing database connection -- 16:54:21.697 SQL [18687]: pgsql_close() -- 16:55:50.884 INFO [18686]: COREGRADE is starting... -- 16:55:50.884 INFO [18686]: Version from config: 1.0 -- 16:55:50.884 DEBUG [18686]: Connecting to database... -- 16:55:50.884 DEBUG [18686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:55:50.884 SQL [18686]: pgsql_db_connect() -- 16:55:50.888 DEBUG [18686]: Database connection successful -- 16:55:50.888 INFO [18686]: _SERVER found -- 16:55:50.888 INFO [18686]: REMOTE_ADDR = 192.168.1.13 -- 16:55:50.888 INFO [18686]: SERVER_NAME = oameye.works.coregrade.com -- 16:55:50.888 INFO [18686]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2ip71r9aufsong7ia2ai5jglrqev2gq7 -- 16:55:50.888 INFO [18686]: QUERY_STRING = /member/addNotecard -- 16:55:50.888 INFO [18686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:55:50.921 INFO [18686]: COREGRADE is stopping... -- 16:55:50.921 DEBUG [18686]: Closing database connection -- 16:55:50.921 SQL [18686]: pgsql_close() -- 16:55:53.235 INFO [18686]: COREGRADE is starting... -- 16:55:53.235 INFO [18686]: Version from config: 1.0 -- 16:55:53.235 DEBUG [18686]: Connecting to database... -- 16:55:53.235 DEBUG [18686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:55:53.235 SQL [18686]: pgsql_db_connect() -- 16:55:53.239 DEBUG [18686]: Database connection successful -- 16:55:53.239 INFO [18686]: _SERVER found -- 16:55:53.239 INFO [18686]: REMOTE_ADDR = 192.168.1.13 -- 16:55:53.239 INFO [18686]: SERVER_NAME = oameye.works.coregrade.com -- 16:55:53.239 INFO [18686]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2ip71r9aufsong7ia2ai5jglrqev2gq7 -- 16:55:53.239 INFO [18686]: QUERY_STRING = /member/addNotecard -- 16:55:53.239 INFO [18686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:55:53.269 INFO [18686]: COREGRADE is stopping... -- 16:55:53.269 DEBUG [18686]: Closing database connection -- 16:55:53.269 SQL [18686]: pgsql_close() -- 16:56:33.377 INFO [18688]: COREGRADE is starting... -- 16:56:33.377 INFO [18688]: Version from config: 1.0 -- 16:56:33.377 DEBUG [18688]: Connecting to database... -- 16:56:33.377 DEBUG [18688]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:33.377 SQL [18688]: pgsql_db_connect() -- 16:56:33.381 DEBUG [18688]: Database connection successful -- 16:56:33.381 INFO [18688]: _SERVER found -- 16:56:33.381 INFO [18688]: REMOTE_ADDR = 192.168.1.13 -- 16:56:33.381 INFO [18688]: SERVER_NAME = oameye.works.coregrade.com -- 16:56:33.381 INFO [18688]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2ip71r9aufsong7ia2ai5jglrqev2gq7 -- 16:56:33.381 INFO [18688]: QUERY_STRING = /member/addNotecard -- 16:56:33.381 INFO [18688]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:56:33.414 INFO [18688]: COREGRADE is stopping... -- 16:56:33.414 DEBUG [18688]: Closing database connection -- 16:56:33.414 SQL [18688]: pgsql_close() -- 16:56:36.255 INFO [18688]: COREGRADE is starting... -- 16:56:36.255 INFO [18688]: Version from config: 1.0 -- 16:56:36.255 DEBUG [18688]: Connecting to database... -- 16:56:36.255 DEBUG [18688]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:36.255 SQL [18688]: pgsql_db_connect() -- 16:56:36.259 DEBUG [18688]: Database connection successful -- 16:56:36.259 INFO [18688]: _SERVER found -- 16:56:36.259 INFO [18688]: REMOTE_ADDR = 192.168.1.13 -- 16:56:36.259 INFO [18688]: SERVER_NAME = oameye.works.coregrade.com -- 16:56:36.259 INFO [18688]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2ip71r9aufsong7ia2ai5jglrqev2gq7 -- 16:56:36.259 INFO [18688]: QUERY_STRING = /member/addNotecard -- 16:56:36.259 INFO [18688]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:56:36.289 INFO [18688]: COREGRADE is stopping... -- 16:56:36.289 DEBUG [18688]: Closing database connection -- 16:56:36.289 SQL [18688]: pgsql_close() -- 16:56:37.535 INFO [18688]: COREGRADE is starting... -- 16:56:37.535 INFO [18688]: Version from config: 1.0 -- 16:56:37.535 DEBUG [18688]: Connecting to database... -- 16:56:37.535 DEBUG [18688]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:37.535 SQL [18688]: pgsql_db_connect() -- 16:56:37.539 DEBUG [18688]: Database connection successful -- 16:56:37.539 INFO [18688]: _SERVER found -- 16:56:37.539 INFO [18688]: REMOTE_ADDR = 192.168.1.13 -- 16:56:37.539 INFO [18688]: SERVER_NAME = oameye.works.coregrade.com -- 16:56:37.539 INFO [18688]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2ip71r9aufsong7ia2ai5jglrqev2gq7 -- 16:56:37.539 INFO [18688]: QUERY_STRING = /member/page -- 16:56:37.539 INFO [18688]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:56:37.577 INFO [18688]: COREGRADE is stopping... -- 16:56:37.577 DEBUG [18688]: Closing database connection -- 16:56:37.577 SQL [18688]: pgsql_close() -- 16:56:37.673 INFO [18688]: COREGRADE is starting... -- 16:56:37.673 INFO [18688]: Version from config: 1.0 -- 16:56:37.673 DEBUG [18688]: Connecting to database... -- 16:56:37.673 DEBUG [18688]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:37.673 SQL [18688]: pgsql_db_connect() -- 16:56:37.677 DEBUG [18688]: Database connection successful -- 16:56:37.677 INFO [18688]: _SERVER found -- 16:56:37.677 INFO [18688]: REMOTE_ADDR = 192.168.1.13 -- 16:56:37.677 INFO [18688]: SERVER_NAME = oameye.works.coregrade.com -- 16:56:37.677 INFO [18688]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2ip71r9aufsong7ia2ai5jglrqev2gq7 -- 16:56:37.677 INFO [18688]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:56:37.677 INFO [18688]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:56:37.688 INFO [18688]: COREGRADE is stopping... -- 16:56:37.688 DEBUG [18688]: Closing database connection -- 16:56:37.688 SQL [18688]: pgsql_close() -- 16:56:37.780 INFO [18688]: COREGRADE is starting... -- 16:56:37.780 INFO [18688]: Version from config: 1.0 -- 16:56:37.780 DEBUG [18688]: Connecting to database... -- 16:56:37.780 DEBUG [18688]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:37.780 SQL [18688]: pgsql_db_connect() -- 16:56:37.784 DEBUG [18688]: Database connection successful -- 16:56:37.784 INFO [18688]: _SERVER found -- 16:56:37.784 INFO [18688]: REMOTE_ADDR = 192.168.1.13 -- 16:56:37.784 INFO [18688]: SERVER_NAME = oameye.works.coregrade.com -- 16:56:37.784 INFO [18688]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2ip71r9aufsong7ia2ai5jglrqev2gq7 -- 16:56:37.784 INFO [18688]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:56:37.784 INFO [18688]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:56:37.795 INFO [18688]: COREGRADE is stopping... -- 16:56:37.795 DEBUG [18688]: Closing database connection -- 16:56:37.795 SQL [18688]: pgsql_close() -- 16:56:40.398 INFO [18688]: COREGRADE is starting... -- 16:56:40.398 INFO [18688]: Version from config: 1.0 -- 16:56:40.398 DEBUG [18688]: Connecting to database... -- 16:56:40.398 DEBUG [18688]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:40.398 SQL [18688]: pgsql_db_connect() -- 16:56:40.402 DEBUG [18688]: Database connection successful -- 16:56:40.402 INFO [18688]: _SERVER found -- 16:56:40.402 INFO [18688]: REMOTE_ADDR = 192.168.1.13 -- 16:56:40.402 INFO [18688]: SERVER_NAME = oameye.works.coregrade.com -- 16:56:40.402 INFO [18688]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2ip71r9aufsong7ia2ai5jglrqev2gq7 -- 16:56:40.402 INFO [18688]: QUERY_STRING = /member/viewCardAddAction -- 16:56:40.402 INFO [18688]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:56:40.433 INFO [18688]: COREGRADE is stopping... -- 16:56:40.433 DEBUG [18688]: Closing database connection -- 16:56:40.433 SQL [18688]: pgsql_close() -- 16:56:42.904 INFO [18688]: COREGRADE is starting... -- 16:56:42.905 INFO [18688]: Version from config: 1.0 -- 16:56:42.905 DEBUG [18688]: Connecting to database... -- 16:56:42.905 DEBUG [18688]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:42.905 SQL [18688]: pgsql_db_connect() -- 16:56:42.909 DEBUG [18688]: Database connection successful -- 16:56:42.909 INFO [18688]: _SERVER found -- 16:56:42.909 INFO [18688]: REMOTE_ADDR = 192.168.1.13 -- 16:56:42.909 INFO [18688]: SERVER_NAME = oameye.works.coregrade.com -- 16:56:42.909 INFO [18688]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2ip71r9aufsong7ia2ai5jglrqev2gq7 -- 16:56:42.909 INFO [18688]: QUERY_STRING = /member/addNotecard -- 16:56:42.909 INFO [18688]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:56:42.939 INFO [18688]: COREGRADE is stopping... -- 16:56:42.939 DEBUG [18688]: Closing database connection -- 16:56:42.939 SQL [18688]: pgsql_close() -- 16:57:37.295 INFO [18800]: COREGRADE is starting... -- 16:57:37.295 INFO [18800]: Version from config: 1.0 -- 16:57:37.295 DEBUG [18800]: Connecting to database... -- 16:57:37.295 DEBUG [18800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:37.295 SQL [18800]: pgsql_db_connect() -- 16:57:37.299 DEBUG [18800]: Database connection successful -- 16:57:37.299 INFO [18800]: _SERVER found -- 16:57:37.299 INFO [18800]: REMOTE_ADDR = 192.168.1.13 -- 16:57:37.299 INFO [18800]: SERVER_NAME = oameye.works.coregrade.com -- 16:57:37.299 INFO [18800]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=mqa5b5860kfiivs9rpf62ln18drpofdc -- 16:57:37.299 INFO [18800]: QUERY_STRING = /member/page -- 16:57:37.299 INFO [18800]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:37.344 INFO [18800]: COREGRADE is stopping... -- 16:57:37.344 DEBUG [18800]: Closing database connection -- 16:57:37.344 SQL [18800]: pgsql_close() -- 16:57:37.797 INFO [18800]: COREGRADE is starting... -- 16:57:37.797 INFO [18800]: Version from config: 1.0 -- 16:57:37.797 DEBUG [18800]: Connecting to database... -- 16:57:37.797 DEBUG [18800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:37.797 SQL [18800]: pgsql_db_connect() -- 16:57:37.801 DEBUG [18800]: Database connection successful -- 16:57:37.801 INFO [18800]: _SERVER found -- 16:57:37.801 INFO [18800]: REMOTE_ADDR = 192.168.1.13 -- 16:57:37.801 INFO [18800]: SERVER_NAME = oameye.works.coregrade.com -- 16:57:37.801 INFO [18800]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vpfc5tpg9ef7bd0kvn7qiohqbd4uu17s -- 16:57:37.801 INFO [18800]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:57:37.801 INFO [18800]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:37.813 INFO [18800]: COREGRADE is stopping... -- 16:57:37.813 DEBUG [18800]: Closing database connection -- 16:57:37.813 SQL [18800]: pgsql_close() -- 16:57:38.025 INFO [18800]: COREGRADE is starting... -- 16:57:38.026 INFO [18800]: Version from config: 1.0 -- 16:57:38.026 DEBUG [18800]: Connecting to database... -- 16:57:38.026 DEBUG [18800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:38.026 SQL [18800]: pgsql_db_connect() -- 16:57:38.030 DEBUG [18800]: Database connection successful -- 16:57:38.030 INFO [18800]: _SERVER found -- 16:57:38.030 INFO [18800]: REMOTE_ADDR = 192.168.1.13 -- 16:57:38.030 INFO [18800]: SERVER_NAME = oameye.works.coregrade.com -- 16:57:38.030 INFO [18800]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vpfc5tpg9ef7bd0kvn7qiohqbd4uu17s -- 16:57:38.030 INFO [18800]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:57:38.030 INFO [18800]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:38.041 INFO [18800]: COREGRADE is stopping... -- 16:57:38.041 DEBUG [18800]: Closing database connection -- 16:57:38.041 SQL [18800]: pgsql_close() -- 16:57:43.605 INFO [18690]: COREGRADE is starting... -- 16:57:43.606 INFO [18690]: Version from config: 1.0 -- 16:57:43.606 DEBUG [18690]: Connecting to database... -- 16:57:43.606 DEBUG [18690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:43.606 SQL [18690]: pgsql_db_connect() -- 16:57:43.610 DEBUG [18690]: Database connection successful -- 16:57:43.610 INFO [18690]: _SERVER found -- 16:57:43.610 INFO [18690]: REMOTE_ADDR = 192.168.1.13 -- 16:57:43.610 INFO [18690]: SERVER_NAME = oameye.works.coregrade.com -- 16:57:43.610 INFO [18690]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vpfc5tpg9ef7bd0kvn7qiohqbd4uu17s -- 16:57:43.610 INFO [18690]: QUERY_STRING = /member/page -- 16:57:43.610 INFO [18690]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:43.648 INFO [18690]: COREGRADE is stopping... -- 16:57:43.648 DEBUG [18690]: Closing database connection -- 16:57:43.648 SQL [18690]: pgsql_close() -- 16:57:43.876 INFO [18690]: COREGRADE is starting... -- 16:57:43.876 INFO [18690]: Version from config: 1.0 -- 16:57:43.876 DEBUG [18690]: Connecting to database... -- 16:57:43.876 DEBUG [18690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:43.877 SQL [18690]: pgsql_db_connect() -- 16:57:43.881 DEBUG [18690]: Database connection successful -- 16:57:43.881 INFO [18690]: _SERVER found -- 16:57:43.881 INFO [18690]: REMOTE_ADDR = 192.168.1.13 -- 16:57:43.881 INFO [18690]: SERVER_NAME = oameye.works.coregrade.com -- 16:57:43.881 INFO [18690]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vpfc5tpg9ef7bd0kvn7qiohqbd4uu17s -- 16:57:43.881 INFO [18690]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:57:43.881 INFO [18690]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:43.892 INFO [18690]: COREGRADE is stopping... -- 16:57:43.892 DEBUG [18690]: Closing database connection -- 16:57:43.892 SQL [18690]: pgsql_close() -- 16:57:44.097 INFO [18690]: COREGRADE is starting... -- 16:57:44.097 INFO [18690]: Version from config: 1.0 -- 16:57:44.097 DEBUG [18690]: Connecting to database... -- 16:57:44.097 DEBUG [18690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:44.097 SQL [18690]: pgsql_db_connect() -- 16:57:44.101 DEBUG [18690]: Database connection successful -- 16:57:44.101 INFO [18690]: _SERVER found -- 16:57:44.101 INFO [18690]: REMOTE_ADDR = 192.168.1.13 -- 16:57:44.101 INFO [18690]: SERVER_NAME = oameye.works.coregrade.com -- 16:57:44.101 INFO [18690]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vpfc5tpg9ef7bd0kvn7qiohqbd4uu17s -- 16:57:44.101 INFO [18690]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:57:44.101 INFO [18690]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:44.112 INFO [18690]: COREGRADE is stopping... -- 16:57:44.112 DEBUG [18690]: Closing database connection -- 16:57:44.113 SQL [18690]: pgsql_close() -- 16:58:00.124 INFO [18697]: COREGRADE is starting... -- 16:58:00.124 INFO [18697]: Version from config: 1.0 -- 16:58:00.124 DEBUG [18697]: Connecting to database... -- 16:58:00.124 DEBUG [18697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:00.124 SQL [18697]: pgsql_db_connect() -- 16:58:00.128 DEBUG [18697]: Database connection successful -- 16:58:00.128 INFO [18697]: _SERVER found -- 16:58:00.128 INFO [18697]: REMOTE_ADDR = 192.168.1.13 -- 16:58:00.128 INFO [18697]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:58:00.128 INFO [18697]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=ug85k0oulj9s37mjrnjj6rmjnshr7al2 -- 16:58:00.128 INFO [18697]: QUERY_STRING = -- 16:58:00.128 INFO [18697]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:58:00.167 INFO [18697]: COREGRADE is stopping... -- 16:58:00.167 DEBUG [18697]: Closing database connection -- 16:58:00.167 SQL [18697]: pgsql_close() -- 16:58:03.673 INFO [18697]: COREGRADE is starting... -- 16:58:03.673 INFO [18697]: Version from config: 1.0 -- 16:58:03.673 DEBUG [18697]: Connecting to database... -- 16:58:03.673 DEBUG [18697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:03.673 SQL [18697]: pgsql_db_connect() -- 16:58:03.706 INFO [18719]: COREGRADE is starting... -- 16:58:03.707 INFO [18719]: Version from config: 1.0 -- 16:58:03.707 DEBUG [18719]: Connecting to database... -- 16:58:03.707 DEBUG [18719]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:03.707 SQL [18719]: pgsql_db_connect() -- 16:58:03.677 DEBUG [18697]: Database connection successful -- 16:58:03.677 INFO [18697]: _SERVER found -- 16:58:03.677 INFO [18697]: REMOTE_ADDR = 192.168.1.13 -- 16:58:03.677 INFO [18697]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:58:03.677 INFO [18697]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=6ie3r1enegku9sl1ms444q4pame717i8; _gat_gtag_UA_54829827_2=1 -- 16:58:03.677 INFO [18697]: QUERY_STRING = /welcome/viewLogin -- 16:58:03.677 INFO [18697]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:58:03.707 INFO [18697]: COREGRADE is stopping... -- 16:58:03.707 DEBUG [18697]: Closing database connection -- 16:58:03.707 SQL [18697]: pgsql_close() -- 16:58:03.720 INFO [18697]: COREGRADE is starting... -- 16:58:03.720 INFO [18697]: Version from config: 1.0 -- 16:58:03.720 DEBUG [18697]: Connecting to database... -- 16:58:03.720 DEBUG [18697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:03.720 SQL [18697]: pgsql_db_connect() -- 16:58:03.711 DEBUG [18719]: Database connection successful -- 16:58:03.711 INFO [18719]: _SERVER found -- 16:58:03.711 INFO [18719]: REMOTE_ADDR = 192.168.1.13 -- 16:58:03.711 INFO [18719]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:58:03.711 INFO [18719]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=6ie3r1enegku9sl1ms444q4pame717i8; _gat_gtag_UA_54829827_2=1 -- 16:58:03.711 INFO [18719]: QUERY_STRING = /auth -- 16:58:03.711 INFO [18719]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:58:03.743 INFO [18719]: COREGRADE is stopping... -- 16:58:03.743 DEBUG [18719]: Closing database connection -- 16:58:03.743 SQL [18719]: pgsql_close() -- 16:58:03.724 DEBUG [18697]: Database connection successful -- 16:58:03.724 INFO [18697]: _SERVER found -- 16:58:03.724 INFO [18697]: REMOTE_ADDR = 192.168.1.13 -- 16:58:03.724 INFO [18697]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:58:03.724 INFO [18697]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=6ie3r1enegku9sl1ms444q4pame717i8; _gat_gtag_UA_54829827_2=1 -- 16:58:03.724 INFO [18697]: QUERY_STRING = /auth/index -- 16:58:03.724 INFO [18697]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:58:03.755 INFO [18697]: COREGRADE is stopping... -- 16:58:03.755 DEBUG [18697]: Closing database connection -- 16:58:03.755 SQL [18697]: pgsql_close() -- 16:58:03.979 INFO [18719]: COREGRADE is starting... -- 16:58:03.980 INFO [18719]: Version from config: 1.0 -- 16:58:03.980 DEBUG [18719]: Connecting to database... -- 16:58:03.980 DEBUG [18719]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:03.980 SQL [18719]: pgsql_db_connect() -- 16:58:03.984 DEBUG [18719]: Database connection successful -- 16:58:03.984 INFO [18719]: _SERVER found -- 16:58:03.984 INFO [18719]: REMOTE_ADDR = 192.168.1.13 -- 16:58:03.984 INFO [18719]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:58:03.984 INFO [18719]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=6ie3r1enegku9sl1ms444q4pame717i8; _gat_gtag_UA_54829827_2=1 -- 16:58:03.984 INFO [18719]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:58:03.984 INFO [18719]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:58:03.995 INFO [18719]: COREGRADE is stopping... -- 16:58:03.995 DEBUG [18719]: Closing database connection -- 16:58:03.995 SQL [18719]: pgsql_close() -- 16:58:04.015 INFO [18719]: COREGRADE is starting... -- 16:58:04.016 INFO [18719]: Version from config: 1.0 -- 16:58:04.016 DEBUG [18719]: Connecting to database... -- 16:58:04.016 DEBUG [18719]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:04.016 SQL [18719]: pgsql_db_connect() -- 16:58:04.020 DEBUG [18719]: Database connection successful -- 16:58:04.020 INFO [18719]: _SERVER found -- 16:58:04.020 INFO [18719]: REMOTE_ADDR = 192.168.1.13 -- 16:58:04.020 INFO [18719]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:58:04.020 INFO [18719]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=6ie3r1enegku9sl1ms444q4pame717i8; _gat_gtag_UA_54829827_2=1 -- 16:58:04.020 INFO [18719]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:58:04.020 INFO [18719]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:58:04.030 INFO [18719]: COREGRADE is stopping... -- 16:58:04.031 DEBUG [18719]: Closing database connection -- 16:58:04.031 SQL [18719]: pgsql_close() -- 16:58:06.593 INFO [18719]: COREGRADE is starting... -- 16:58:06.594 INFO [18719]: Version from config: 1.0 -- 16:58:06.594 DEBUG [18719]: Connecting to database... -- 16:58:06.594 DEBUG [18719]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:06.594 SQL [18719]: pgsql_db_connect() -- 16:58:06.598 DEBUG [18719]: Database connection successful -- 16:58:06.598 INFO [18719]: _SERVER found -- 16:58:06.598 INFO [18719]: REMOTE_ADDR = 192.168.1.13 -- 16:58:06.598 INFO [18719]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:58:06.598 INFO [18719]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=6ie3r1enegku9sl1ms444q4pame717i8; _gat_gtag_UA_54829827_2=1 -- 16:58:06.598 INFO [18719]: QUERY_STRING = /auth -- 16:58:06.598 INFO [18719]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:58:06.920 INFO [18719]: COREGRADE is starting... -- 16:58:06.921 INFO [18719]: Version from config: 1.0 -- 16:58:06.921 DEBUG [18719]: Connecting to database... -- 16:58:06.921 DEBUG [18719]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:06.921 SQL [18719]: pgsql_db_connect() -- 16:58:06.925 DEBUG [18719]: Database connection successful -- 16:58:06.925 INFO [18719]: _SERVER found -- 16:58:06.925 INFO [18719]: REMOTE_ADDR = 192.168.1.13 -- 16:58:06.925 INFO [18719]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:58:06.925 INFO [18719]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=6ie3r1enegku9sl1ms444q4pame717i8; _gat_gtag_UA_54829827_2=1 -- 16:58:06.925 INFO [18719]: QUERY_STRING = /member/index -- 16:58:06.925 INFO [18719]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:58:06.961 INFO [18719]: COREGRADE is stopping... -- 16:58:06.961 DEBUG [18719]: Closing database connection -- 16:58:06.961 SQL [18719]: pgsql_close() -- 16:58:07.419 INFO [18719]: COREGRADE is starting... -- 16:58:07.419 INFO [18719]: Version from config: 1.0 -- 16:58:07.419 DEBUG [18719]: Connecting to database... -- 16:58:07.419 DEBUG [18719]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:07.419 SQL [18719]: pgsql_db_connect() -- 16:58:07.423 DEBUG [18719]: Database connection successful -- 16:58:07.423 INFO [18719]: _SERVER found -- 16:58:07.423 INFO [18719]: REMOTE_ADDR = 192.168.1.13 -- 16:58:07.423 INFO [18719]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:58:07.423 INFO [18719]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=6ie3r1enegku9sl1ms444q4pame717i8; _gat_gtag_UA_54829827_2=1 -- 16:58:07.423 INFO [18719]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:58:07.423 INFO [18719]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:58:07.434 INFO [18719]: COREGRADE is stopping... -- 16:58:07.434 DEBUG [18719]: Closing database connection -- 16:58:07.434 SQL [18719]: pgsql_close() -- 16:58:07.450 INFO [18719]: COREGRADE is starting... -- 16:58:07.450 INFO [18719]: Version from config: 1.0 -- 16:58:07.450 DEBUG [18719]: Connecting to database... -- 16:58:07.450 DEBUG [18719]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:07.450 SQL [18719]: pgsql_db_connect() -- 16:58:07.454 DEBUG [18719]: Database connection successful -- 16:58:07.454 INFO [18719]: _SERVER found -- 16:58:07.454 INFO [18719]: REMOTE_ADDR = 192.168.1.13 -- 16:58:07.454 INFO [18719]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:58:07.454 INFO [18719]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=6ie3r1enegku9sl1ms444q4pame717i8; _gat_gtag_UA_54829827_2=1 -- 16:58:07.454 INFO [18719]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:58:07.454 INFO [18719]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:58:07.465 INFO [18719]: COREGRADE is stopping... -- 16:58:07.465 DEBUG [18719]: Closing database connection -- 16:58:07.465 SQL [18719]: pgsql_close() -- 16:58:15.249 INFO [18687]: COREGRADE is starting... -- 16:58:15.249 INFO [18687]: Version from config: 1.0 -- 16:58:15.249 DEBUG [18687]: Connecting to database... -- 16:58:15.249 DEBUG [18687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:15.249 SQL [18687]: pgsql_db_connect() -- 16:58:15.253 DEBUG [18687]: Database connection successful -- 16:58:15.254 INFO [18687]: _SERVER found -- 16:58:15.254 INFO [18687]: REMOTE_ADDR = 192.168.1.13 -- 16:58:15.254 INFO [18687]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:58:15.254 INFO [18687]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=6ie3r1enegku9sl1ms444q4pame717i8; _gat_gtag_UA_54829827_2=1 -- 16:58:15.254 INFO [18687]: QUERY_STRING = /member/configure -- 16:58:15.254 INFO [18687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:58:15.291 INFO [18687]: COREGRADE is stopping... -- 16:58:15.291 DEBUG [18687]: Closing database connection -- 16:58:15.291 SQL [18687]: pgsql_close() -- 16:58:15.623 INFO [18687]: COREGRADE is starting... -- 16:58:15.624 INFO [18687]: Version from config: 1.0 -- 16:58:15.624 DEBUG [18687]: Connecting to database... -- 16:58:15.624 DEBUG [18687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:15.624 SQL [18687]: pgsql_db_connect() -- 16:58:15.628 DEBUG [18687]: Database connection successful -- 16:58:15.628 INFO [18687]: _SERVER found -- 16:58:15.628 INFO [18687]: REMOTE_ADDR = 192.168.1.13 -- 16:58:15.628 INFO [18687]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:58:15.628 INFO [18687]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=6ie3r1enegku9sl1ms444q4pame717i8; _gat_gtag_UA_54829827_2=1 -- 16:58:15.628 INFO [18687]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:58:15.628 INFO [18687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:58:15.639 INFO [18687]: COREGRADE is stopping... -- 16:58:15.639 DEBUG [18687]: Closing database connection -- 16:58:15.639 SQL [18687]: pgsql_close() -- 16:59:55.875 INFO [18686]: COREGRADE is starting... -- 16:59:55.876 INFO [18686]: Version from config: 1.0 -- 16:59:55.876 DEBUG [18686]: Connecting to database... -- 16:59:55.876 DEBUG [18686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:59:55.876 SQL [18686]: pgsql_db_connect() -- 16:59:55.880 DEBUG [18686]: Database connection successful -- 16:59:55.880 INFO [18686]: _SERVER found -- 16:59:55.880 INFO [18686]: REMOTE_ADDR = 192.168.1.13 -- 16:59:55.880 INFO [18686]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:59:55.880 INFO [18686]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=6ie3r1enegku9sl1ms444q4pame717i8 -- 16:59:55.880 INFO [18686]: QUERY_STRING = /member -- 16:59:55.880 INFO [18686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:59:55.917 INFO [18686]: COREGRADE is stopping... -- 16:59:55.917 DEBUG [18686]: Closing database connection -- 16:59:55.917 SQL [18686]: pgsql_close() -- 16:59:56.109 INFO [18686]: COREGRADE is starting... -- 16:59:56.109 INFO [18686]: Version from config: 1.0 -- 16:59:56.109 DEBUG [18686]: Connecting to database... -- 16:59:56.109 DEBUG [18686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:59:56.109 SQL [18686]: pgsql_db_connect() -- 16:59:56.113 DEBUG [18686]: Database connection successful -- 16:59:56.113 INFO [18686]: _SERVER found -- 16:59:56.113 INFO [18686]: REMOTE_ADDR = 192.168.1.13 -- 16:59:56.113 INFO [18686]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:59:56.113 INFO [18686]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=6ie3r1enegku9sl1ms444q4pame717i8 -- 16:59:56.113 INFO [18686]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:59:56.113 INFO [18686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:59:56.124 INFO [18686]: COREGRADE is stopping... -- 16:59:56.124 DEBUG [18686]: Closing database connection -- 16:59:56.124 SQL [18686]: pgsql_close() -- 17:00:19.251 INFO [18689]: COREGRADE is starting... -- 17:00:19.251 INFO [18689]: Version from config: 1.0 -- 17:00:19.251 DEBUG [18689]: Connecting to database... -- 17:00:19.251 DEBUG [18689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:19.251 SQL [18689]: pgsql_db_connect() -- 17:00:19.255 DEBUG [18689]: Database connection successful -- 17:00:19.255 INFO [18689]: _SERVER found -- 17:00:19.255 INFO [18689]: REMOTE_ADDR = 192.168.1.13 -- 17:00:19.255 INFO [18689]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:00:19.255 INFO [18689]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=6ie3r1enegku9sl1ms444q4pame717i8 -- 17:00:19.255 INFO [18689]: QUERY_STRING = screen=auth/ -- 17:00:19.255 INFO [18689]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:00:19.288 INFO [18689]: COREGRADE is stopping... -- 17:00:19.288 DEBUG [18689]: Closing database connection -- 17:00:19.288 SQL [18689]: pgsql_close() -- 17:00:19.494 INFO [18689]: COREGRADE is starting... -- 17:00:19.494 INFO [18689]: Version from config: 1.0 -- 17:00:19.494 DEBUG [18689]: Connecting to database... -- 17:00:19.494 DEBUG [18689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:19.494 SQL [18689]: pgsql_db_connect() -- 17:00:19.498 DEBUG [18689]: Database connection successful -- 17:00:19.498 INFO [18689]: _SERVER found -- 17:00:19.498 INFO [18689]: REMOTE_ADDR = 192.168.1.13 -- 17:00:19.498 INFO [18689]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:00:19.498 INFO [18689]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=6ie3r1enegku9sl1ms444q4pame717i8 -- 17:00:19.498 INFO [18689]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:00:19.498 INFO [18689]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:00:19.509 INFO [18689]: COREGRADE is stopping... -- 17:00:19.509 DEBUG [18689]: Closing database connection -- 17:00:19.509 SQL [18689]: pgsql_close() -- 17:00:22.522 INFO [18689]: COREGRADE is starting... -- 17:00:22.522 INFO [18689]: Version from config: 1.0 -- 17:00:22.522 DEBUG [18689]: Connecting to database... -- 17:00:22.522 DEBUG [18689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:22.522 SQL [18689]: pgsql_db_connect() -- 17:00:22.526 DEBUG [18689]: Database connection successful -- 17:00:22.526 INFO [18689]: _SERVER found -- 17:00:22.526 INFO [18689]: REMOTE_ADDR = 192.168.1.13 -- 17:00:22.526 INFO [18689]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:00:22.526 INFO [18689]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=6ie3r1enegku9sl1ms444q4pame717i8 -- 17:00:22.526 INFO [18689]: QUERY_STRING = /auth -- 17:00:22.526 INFO [18689]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:00:22.583 INFO [18689]: COREGRADE is starting... -- 17:00:22.583 INFO [18689]: Version from config: 1.0 -- 17:00:22.583 DEBUG [18689]: Connecting to database... -- 17:00:22.583 DEBUG [18689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:22.583 SQL [18689]: pgsql_db_connect() -- 17:00:22.587 DEBUG [18689]: Database connection successful -- 17:00:22.587 INFO [18689]: _SERVER found -- 17:00:22.587 INFO [18689]: REMOTE_ADDR = 192.168.1.13 -- 17:00:22.587 INFO [18689]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:00:22.587 INFO [18689]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=6ie3r1enegku9sl1ms444q4pame717i8 -- 17:00:22.587 INFO [18689]: QUERY_STRING = /member/index -- 17:00:22.587 INFO [18689]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:00:22.623 INFO [18689]: COREGRADE is stopping... -- 17:00:22.623 DEBUG [18689]: Closing database connection -- 17:00:22.623 SQL [18689]: pgsql_close() -- 17:00:22.814 INFO [18689]: COREGRADE is starting... -- 17:00:22.814 INFO [18689]: Version from config: 1.0 -- 17:00:22.814 DEBUG [18689]: Connecting to database... -- 17:00:22.814 DEBUG [18689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:22.814 SQL [18689]: pgsql_db_connect() -- 17:00:22.818 DEBUG [18689]: Database connection successful -- 17:00:22.818 INFO [18689]: _SERVER found -- 17:00:22.818 INFO [18689]: REMOTE_ADDR = 192.168.1.13 -- 17:00:22.818 INFO [18689]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:00:22.818 INFO [18689]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=6ie3r1enegku9sl1ms444q4pame717i8 -- 17:00:22.818 INFO [18689]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:00:22.818 INFO [18689]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:00:22.829 INFO [18689]: COREGRADE is stopping... -- 17:00:22.829 DEBUG [18689]: Closing database connection -- 17:00:22.829 SQL [18689]: pgsql_close() -- 17:21:28.346 INFO [18688]: COREGRADE is starting... -- 17:21:28.347 INFO [18688]: Version from config: 1.0 -- 17:21:28.347 DEBUG [18688]: Connecting to database... -- 17:21:28.347 DEBUG [18688]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:21:28.347 SQL [18688]: pgsql_db_connect() -- 17:21:28.352 DEBUG [18688]: Database connection successful -- 17:21:28.352 INFO [18688]: _SERVER found -- 17:21:28.352 INFO [18688]: REMOTE_ADDR = 192.168.1.13 -- 17:21:28.352 INFO [18688]: SERVER_NAME = oameye.works.coregrade.com -- 17:21:28.352 INFO [18688]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 17:21:28.352 INFO [18688]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 17:21:28.392 INFO [18688]: COREGRADE is stopping... -- 17:21:28.392 DEBUG [18688]: Closing database connection -- 17:21:28.392 SQL [18688]: pgsql_close() -- 17:22:43.464 INFO [18800]: COREGRADE is starting... -- 17:22:43.464 INFO [18800]: Version from config: 1.0 -- 17:22:43.464 DEBUG [18800]: Connecting to database... -- 17:22:43.464 DEBUG [18800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:22:43.464 SQL [18800]: pgsql_db_connect() -- 17:22:43.468 DEBUG [18800]: Database connection successful -- 17:22:43.468 INFO [18800]: _SERVER found -- 17:22:43.468 INFO [18800]: REMOTE_ADDR = 192.168.1.13 -- 17:22:43.468 INFO [18800]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:22:43.468 INFO [18800]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=6ie3r1enegku9sl1ms444q4pame717i8 -- 17:22:43.468 INFO [18800]: QUERY_STRING = -- 17:22:43.468 INFO [18800]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:22:43.507 INFO [18800]: COREGRADE is stopping... -- 17:22:43.507 DEBUG [18800]: Closing database connection -- 17:22:43.507 SQL [18800]: pgsql_close() -- 17:24:01.410 INFO [18690]: COREGRADE is starting... -- 17:24:01.411 INFO [18690]: Version from config: 1.0 -- 17:24:01.411 DEBUG [18690]: Connecting to database... -- 17:24:01.411 DEBUG [18690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:24:01.411 SQL [18690]: pgsql_db_connect() -- 17:24:01.415 DEBUG [18690]: Database connection successful -- 17:24:01.415 INFO [18690]: _SERVER found -- 17:24:01.415 INFO [18690]: REMOTE_ADDR = 192.168.1.13 -- 17:24:01.415 INFO [18690]: SERVER_NAME = oameye.works.coregrade.com -- 17:24:01.415 INFO [18690]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 17:24:01.415 INFO [18690]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 17:24:01.452 INFO [18690]: COREGRADE is stopping... -- 17:24:01.452 DEBUG [18690]: Closing database connection -- 17:24:01.452 SQL [18690]: pgsql_close() -- 17:24:02.648 INFO [18690]: COREGRADE is starting... -- 17:24:02.649 INFO [18690]: Version from config: 1.0 -- 17:24:02.649 DEBUG [18690]: Connecting to database... -- 17:24:02.649 DEBUG [18690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:24:02.649 SQL [18690]: pgsql_db_connect() -- 17:24:02.653 DEBUG [18690]: Database connection successful -- 17:24:02.653 INFO [18690]: _SERVER found -- 17:24:02.653 INFO [18690]: REMOTE_ADDR = 192.168.1.13 -- 17:24:02.653 INFO [18690]: SERVER_NAME = oameye.works.coregrade.com -- 17:24:02.653 INFO [18690]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 17:24:02.653 INFO [18690]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 17:24:02.684 INFO [18690]: COREGRADE is stopping... -- 17:24:02.684 DEBUG [18690]: Closing database connection -- 17:24:02.684 SQL [18690]: pgsql_close() -- 17:25:52.017 INFO [18697]: COREGRADE is starting... -- 17:25:52.018 INFO [18697]: Version from config: 1.0 -- 17:25:52.018 DEBUG [18697]: Connecting to database... -- 17:25:52.018 DEBUG [18697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:25:52.018 SQL [18697]: pgsql_db_connect() -- 17:25:52.022 DEBUG [18697]: Database connection successful -- 17:25:52.022 INFO [18697]: _SERVER found -- 17:25:52.022 INFO [18697]: REMOTE_ADDR = 192.168.1.13 -- 17:25:52.022 INFO [18697]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:25:52.022 INFO [18697]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=bgp4v13uib8h5cdp9imjbc3264j10hmj -- 17:25:52.022 INFO [18697]: QUERY_STRING = /member -- 17:25:52.022 INFO [18697]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:25:52.060 INFO [18697]: COREGRADE is stopping... -- 17:25:52.060 DEBUG [18697]: Closing database connection -- 17:25:52.060 SQL [18697]: pgsql_close() -- 17:25:52.639 INFO [18687]: COREGRADE is starting... -- 17:25:52.639 INFO [18687]: Version from config: 1.0 -- 17:25:52.639 DEBUG [18687]: Connecting to database... -- 17:25:52.639 DEBUG [18687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:25:52.639 SQL [18687]: pgsql_db_connect() -- 17:25:52.643 DEBUG [18687]: Database connection successful -- 17:25:52.643 INFO [18687]: _SERVER found -- 17:25:52.643 INFO [18687]: REMOTE_ADDR = 192.168.1.13 -- 17:25:52.643 INFO [18687]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:25:52.643 INFO [18687]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=bgp4v13uib8h5cdp9imjbc3264j10hmj -- 17:25:52.643 INFO [18687]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:25:52.643 INFO [18687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:25:52.655 INFO [18687]: COREGRADE is stopping... -- 17:25:52.655 DEBUG [18687]: Closing database connection -- 17:25:52.655 SQL [18687]: pgsql_close() -- 17:25:52.725 INFO [18687]: COREGRADE is starting... -- 17:25:52.726 INFO [18687]: Version from config: 1.0 -- 17:25:52.726 DEBUG [18687]: Connecting to database... -- 17:25:52.726 DEBUG [18687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:25:52.726 SQL [18687]: pgsql_db_connect() -- 17:25:52.730 DEBUG [18687]: Database connection successful -- 17:25:52.730 INFO [18687]: _SERVER found -- 17:25:52.730 INFO [18687]: REMOTE_ADDR = 192.168.1.13 -- 17:25:52.730 INFO [18687]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:25:52.730 INFO [18687]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=bgp4v13uib8h5cdp9imjbc3264j10hmj -- 17:25:52.730 INFO [18687]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:25:52.730 INFO [18687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:25:52.741 INFO [18687]: COREGRADE is stopping... -- 17:25:52.741 DEBUG [18687]: Closing database connection -- 17:25:52.741 SQL [18687]: pgsql_close() -- 17:26:40.284 INFO [18800]: COREGRADE is starting... -- 17:26:40.284 INFO [18800]: Version from config: 1.0 -- 17:26:40.284 DEBUG [18800]: Connecting to database... -- 17:26:40.284 DEBUG [18800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:26:40.284 SQL [18800]: pgsql_db_connect() -- 17:26:40.288 DEBUG [18800]: Database connection successful -- 17:26:40.288 INFO [18800]: _SERVER found -- 17:26:40.288 INFO [18800]: REMOTE_ADDR = 192.168.1.13 -- 17:26:40.288 INFO [18800]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:26:40.288 INFO [18800]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=bgp4v13uib8h5cdp9imjbc3264j10hmj -- 17:26:40.288 INFO [18800]: QUERY_STRING = /member -- 17:26:40.288 INFO [18800]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:26:40.325 INFO [18800]: COREGRADE is stopping... -- 17:26:40.325 DEBUG [18800]: Closing database connection -- 17:26:40.325 SQL [18800]: pgsql_close() -- 17:26:40.580 INFO [18800]: COREGRADE is starting... -- 17:26:40.580 INFO [18800]: Version from config: 1.0 -- 17:26:40.580 DEBUG [18800]: Connecting to database... -- 17:26:40.580 DEBUG [18800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:26:40.580 SQL [18800]: pgsql_db_connect() -- 17:26:40.584 DEBUG [18800]: Database connection successful -- 17:26:40.584 INFO [18800]: _SERVER found -- 17:26:40.584 INFO [18800]: REMOTE_ADDR = 192.168.1.13 -- 17:26:40.584 INFO [18800]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:26:40.584 INFO [18800]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=bgp4v13uib8h5cdp9imjbc3264j10hmj -- 17:26:40.584 INFO [18800]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:26:40.584 INFO [18800]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:26:40.595 INFO [18800]: COREGRADE is stopping... -- 17:26:40.595 DEBUG [18800]: Closing database connection -- 17:26:40.595 SQL [18800]: pgsql_close() -- 17:26:46.421 INFO [18690]: COREGRADE is starting... -- 17:26:46.421 INFO [18690]: Version from config: 1.0 -- 17:26:46.421 DEBUG [18690]: Connecting to database... -- 17:26:46.421 DEBUG [18690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:26:46.421 SQL [18690]: pgsql_db_connect() -- 17:26:46.425 DEBUG [18690]: Database connection successful -- 17:26:46.425 INFO [18690]: _SERVER found -- 17:26:46.425 INFO [18690]: REMOTE_ADDR = 192.168.1.13 -- 17:26:46.425 INFO [18690]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:26:46.425 INFO [18690]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=bgp4v13uib8h5cdp9imjbc3264j10hmj -- 17:26:46.425 INFO [18690]: QUERY_STRING = -- 17:26:46.425 INFO [18690]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:26:46.457 INFO [18690]: COREGRADE is stopping... -- 17:26:46.457 DEBUG [18690]: Closing database connection -- 17:26:46.457 SQL [18690]: pgsql_close() -- 17:27:21.187 INFO [19230]: COREGRADE is starting... -- 17:27:21.187 INFO [19230]: Version from config: 1.0 -- 17:27:21.187 DEBUG [19230]: Connecting to database... -- 17:27:21.187 DEBUG [19230]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:21.188 SQL [19230]: pgsql_db_connect() -- 17:27:21.192 DEBUG [19230]: Database connection successful -- 17:27:21.192 INFO [19230]: _SERVER found -- 17:27:21.192 INFO [19230]: REMOTE_ADDR = 192.168.1.13 -- 17:27:21.192 INFO [19230]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:27:21.192 INFO [19230]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=bgp4v13uib8h5cdp9imjbc3264j10hmj; _gat_gtag_UA_54829827_2=1 -- 17:27:21.192 INFO [19230]: QUERY_STRING = -- 17:27:21.192 INFO [19230]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:27:21.235 INFO [19230]: COREGRADE is stopping... -- 17:27:21.235 DEBUG [19230]: Closing database connection -- 17:27:21.235 SQL [19230]: pgsql_close() -- 17:35:47.094 INFO [21849]: COREGRADE is starting... -- 17:35:47.094 INFO [21849]: Version from config: 1.0 -- 17:35:47.094 DEBUG [21849]: Connecting to database... -- 17:35:47.094 DEBUG [21849]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:35:47.094 SQL [21849]: pgsql_db_connect() -- 17:35:47.136 INFO [21849]: COREGRADE is starting... -- 17:35:47.136 INFO [21849]: Version from config: 1.0 -- 17:35:47.136 DEBUG [21849]: Connecting to database... -- 17:35:47.136 DEBUG [21849]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:35:47.136 SQL [21849]: pgsql_db_connect() -- 17:35:47.140 DEBUG [21849]: Database connection successful -- 17:35:47.140 INFO [21849]: _SERVER found -- 17:35:47.140 INFO [21849]: REMOTE_ADDR = 192.168.1.13 -- 17:35:47.140 INFO [21849]: SERVER_NAME = oameye.works.coregrade.com -- 17:35:47.140 INFO [21849]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2ip71r9aufsong7ia2ai5jglrqev2gq7 -- 17:35:47.140 INFO [21849]: QUERY_STRING = -- 17:35:47.140 INFO [21849]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:35:47.140 INFO [21849]: SystemStatus()09-09-********~************ -- 17:35:47.140 INFO [21849]: long coregrade_api_main(CVars in, CVars &out) -- 17:35:47.140 INFO [21849]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 17:35:47.140 INFO [21849]: account calls -- 17:35:47.140 INFO [21849]: account_calls() -- 17:35:47.140 INFO [21849]: LoginCoreGradeAccount() -- 17:35:47.140 FLOG_MAX [21849]: REQ_STRING(username) -- 17:35:47.141 FLOG_MAX [21849]: REQ_STRING(password) -- 17:35:47.141 FLOG_MAX [21849]: REQ_STRING(sessionid) -- 17:35:47.141 FLOG_MAX [21849]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:35:47.141 SQL [21849]: pgsql_query() -- 17:35:47.141 SQL [21849]: About to run query: -- 17:35:47.141 SQL [21849]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 17:35:47.144 SQL [21849]: Found rows: 1 -- 17:35:47.144 FLOG_MAX [21849]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 17:35:47.144 INFO [21849]: long SessionCheck(long uid, const char *sessionid, int create ) -- 17:35:47.144 SQL [21849]: pgsql_exec() -- 17:35:47.144 SQL [21849]: About to run query: -- 17:35:47.144 SQL [21849]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 17:35:47.145 SQL [21849]: PQcmdTuples: 1 -- 17:35:47.145 SQL [21849]: Affected rows: 1 -- 17:35:47.145 SQL [21849]: pgsql_exec() -- 17:35:47.145 SQL [21849]: About to run query: -- 17:35:47.145 SQL [21849]: DELETE FROM members_session WHERE member_id=5 -- 17:35:47.146 SQL [21849]: PQcmdTuples: 0 -- 17:35:47.146 SQL [21849]: Affected rows: 0 -- 17:35:47.146 SQL [21849]: pgsql_query() -- 17:35:47.146 SQL [21849]: About to run query: -- 17:35:47.146 SQL [21849]: SELECT * FROM members_session WHERE member_id=5 AND session<>'A15FD7957C69BA087B2EF17452492420' -- 17:35:47.146 SQL [21849]: Found rows: 0 -- 17:35:47.146 SQL [21849]: Found rows: 0 -- 17:35:47.146 FLOG_MAX [21849]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:35:47.146 SQL [21849]: pgsql_query() -- 17:35:47.147 SQL [21849]: About to run query: -- 17:35:47.147 SQL [21849]: SELECT * FROM members_session WHERE member_id=5 AND session='A15FD7957C69BA087B2EF17452492420' -- 17:35:47.147 SQL [21849]: Found rows: 0 -- 17:35:47.147 SQL [21849]: Found rows: 0 -- 17:35:47.147 FLOG_MAX [21849]: insert_db_record() -- 17:35:47.147 SQL [21849]: pgsql_exec() -- 17:35:47.147 SQL [21849]: About to run query: -- 17:35:47.147 SQL [21849]: INSERT INTO members_session (member_id,session) VALUES ('5','A15FD7957C69BA087B2EF17452492420') -- 17:35:47.148 SQL [21849]: PQcmdTuples: 1 -- 17:35:47.148 SQL [21849]: Affected rows: 1 -- 17:35:47.148 FLOG_MAX [21849]: SELECT currval('members_session_id_seq') -- 17:35:47.148 SQL [21849]: pgsql_query() -- 17:35:47.148 SQL [21849]: About to run query: -- 17:35:47.148 SQL [21849]: SELECT currval('members_session_id_seq') -- 17:35:47.149 SQL [21849]: Found rows: 1 -- 17:35:47.149 INFO [21849]: CreateDefaultPage() -- 17:35:47.149 FLOG_MAX [21849]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:35:47.149 SQL [21849]: pgsql_query() -- 17:35:47.149 SQL [21849]: About to run query: -- 17:35:47.149 SQL [21849]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 17:35:47.149 SQL [21849]: Found rows: 1 -- 17:35:47.149 FLOG_MAX [21849]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 17:35:47.149 SQL [21849]: pgsql_query() -- 17:35:47.149 SQL [21849]: About to run query: -- 17:35:47.149 SQL [21849]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 17:35:47.150 SQL [21849]: Found rows: 1 -- 17:35:47.150 INFO [21849]: /CreateDefaultPage() -- 17:35:47.150 INFO [21849]: /LoginCoreGradeAccount() -- 17:35:47.150 INFO [21849]: RET: added=2020-02-05 06:47:23.982154 -- 17:35:47.150 INFO [21849]: RET: email=ameye+11@chiefsoft.com -- 17:35:47.150 INFO [21849]: RET: firstname=Olu -- 17:35:47.150 INFO [21849]: RET: id=5 -- 17:35:47.150 INFO [21849]: RET: last_login= -- 17:35:47.150 INFO [21849]: RET: lastname=Amey -- 17:35:47.150 INFO [21849]: RET: loc=192.168.1.13 -- 17:35:47.150 INFO [21849]: RET: member_id=5 -- 17:35:47.150 INFO [21849]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 17:35:47.150 INFO [21849]: RET: phone= -- 17:35:47.150 INFO [21849]: RET: pid= -- 17:35:47.150 INFO [21849]: RET: result=YES I GET TO BACK END -- 17:35:47.150 INFO [21849]: RET: sessionid=A15FD7957C69BA087B2EF17452492420 -- 17:35:47.150 INFO [21849]: RET: status=1 -- 17:35:47.150 INFO [21849]: RET: stauts=OK -- 17:35:47.150 INFO [21849]: RET: username=ameye+11@chiefsoft.com -- 17:35:47.150 INFO [21849]: RET: verified= -- 17:35:47.151 INFO [21849]: COREGRADE is stopping... -- 17:35:47.151 DEBUG [21849]: Closing database connection -- 17:35:47.152 SQL [21849]: pgsql_close() -- 17:35:47.099 DEBUG [21849]: Database connection successful -- 17:35:47.099 INFO [21849]: _SERVER found -- 17:35:47.099 INFO [21849]: REMOTE_ADDR = 192.168.1.13 -- 17:35:47.099 INFO [21849]: SERVER_NAME = oameye.works.coregrade.com -- 17:35:47.099 INFO [21849]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=2ip71r9aufsong7ia2ai5jglrqev2gq7 -- 17:35:47.099 INFO [21849]: QUERY_STRING = /auth -- 17:35:47.099 INFO [21849]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:35:47.152 INFO [21849]: COREGRADE is stopping... -- 17:35:47.152 DEBUG [21849]: Closing database connection -- 17:35:47.152 SQL [21849]: pgsql_close() -- 17:35:47.174 INFO [21849]: COREGRADE is starting... -- 17:35:47.174 INFO [21849]: Version from config: 1.0 -- 17:35:47.174 DEBUG [21849]: Connecting to database... -- 17:35:47.174 DEBUG [21849]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:35:47.174 SQL [21849]: pgsql_db_connect() -- 17:35:47.178 DEBUG [21849]: Database connection successful -- 17:35:47.178 INFO [21849]: _SERVER found -- 17:35:47.178 INFO [21849]: REMOTE_ADDR = 192.168.1.13 -- 17:35:47.178 INFO [21849]: SERVER_NAME = oameye.works.coregrade.com -- 17:35:47.178 INFO [21849]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:35:47.178 INFO [21849]: QUERY_STRING = /member/index -- 17:35:47.178 INFO [21849]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:35:47.215 INFO [21849]: COREGRADE is stopping... -- 17:35:47.215 DEBUG [21849]: Closing database connection -- 17:35:47.215 SQL [21849]: pgsql_close() -- 17:35:47.473 INFO [21849]: COREGRADE is starting... -- 17:35:47.473 INFO [21849]: Version from config: 1.0 -- 17:35:47.473 DEBUG [21849]: Connecting to database... -- 17:35:47.473 DEBUG [21849]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:35:47.473 SQL [21849]: pgsql_db_connect() -- 17:35:47.477 DEBUG [21849]: Database connection successful -- 17:35:47.477 INFO [21849]: _SERVER found -- 17:35:47.477 INFO [21849]: REMOTE_ADDR = 192.168.1.13 -- 17:35:47.477 INFO [21849]: SERVER_NAME = oameye.works.coregrade.com -- 17:35:47.477 INFO [21849]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:35:47.477 INFO [21849]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:35:47.477 INFO [21849]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:35:47.488 INFO [21849]: COREGRADE is stopping... -- 17:35:47.488 DEBUG [21849]: Closing database connection -- 17:35:47.488 SQL [21849]: pgsql_close() -- 17:35:47.517 INFO [21849]: COREGRADE is starting... -- 17:35:47.517 INFO [21849]: Version from config: 1.0 -- 17:35:47.517 DEBUG [21849]: Connecting to database... -- 17:35:47.517 DEBUG [21849]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:35:47.517 SQL [21849]: pgsql_db_connect() -- 17:35:47.521 DEBUG [21849]: Database connection successful -- 17:35:47.521 INFO [21849]: _SERVER found -- 17:35:47.521 INFO [21849]: REMOTE_ADDR = 192.168.1.13 -- 17:35:47.521 INFO [21849]: SERVER_NAME = oameye.works.coregrade.com -- 17:35:47.521 INFO [21849]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:35:47.521 INFO [21849]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:35:47.521 INFO [21849]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:35:47.532 INFO [21849]: COREGRADE is stopping... -- 17:35:47.532 DEBUG [21849]: Closing database connection -- 17:35:47.532 SQL [21849]: pgsql_close() -- 17:35:50.024 INFO [21849]: COREGRADE is starting... -- 17:35:50.024 INFO [21849]: Version from config: 1.0 -- 17:35:50.024 DEBUG [21849]: Connecting to database... -- 17:35:50.024 DEBUG [21849]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:35:50.024 SQL [21849]: pgsql_db_connect() -- 17:35:50.028 DEBUG [21849]: Database connection successful -- 17:35:50.028 INFO [21849]: _SERVER found -- 17:35:50.028 INFO [21849]: REMOTE_ADDR = 192.168.1.13 -- 17:35:50.028 INFO [21849]: SERVER_NAME = oameye.works.coregrade.com -- 17:35:50.028 INFO [21849]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:35:50.028 INFO [21849]: QUERY_STRING = /member/page -- 17:35:50.028 INFO [21849]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:35:50.066 INFO [21849]: COREGRADE is stopping... -- 17:35:50.066 DEBUG [21849]: Closing database connection -- 17:35:50.066 SQL [21849]: pgsql_close() -- 17:35:50.224 INFO [21849]: COREGRADE is starting... -- 17:35:50.225 INFO [21849]: Version from config: 1.0 -- 17:35:50.225 DEBUG [21849]: Connecting to database... -- 17:35:50.225 DEBUG [21849]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:35:50.225 SQL [21849]: pgsql_db_connect() -- 17:35:50.229 DEBUG [21849]: Database connection successful -- 17:35:50.229 INFO [21849]: _SERVER found -- 17:35:50.229 INFO [21849]: REMOTE_ADDR = 192.168.1.13 -- 17:35:50.229 INFO [21849]: SERVER_NAME = oameye.works.coregrade.com -- 17:35:50.229 INFO [21849]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:35:50.229 INFO [21849]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:35:50.229 INFO [21849]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:35:50.240 INFO [21849]: COREGRADE is stopping... -- 17:35:50.240 DEBUG [21849]: Closing database connection -- 17:35:50.240 SQL [21849]: pgsql_close() -- 17:35:50.339 INFO [21849]: COREGRADE is starting... -- 17:35:50.339 INFO [21849]: Version from config: 1.0 -- 17:35:50.339 DEBUG [21849]: Connecting to database... -- 17:35:50.339 DEBUG [21849]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:35:50.339 SQL [21849]: pgsql_db_connect() -- 17:35:50.343 DEBUG [21849]: Database connection successful -- 17:35:50.343 INFO [21849]: _SERVER found -- 17:35:50.343 INFO [21849]: REMOTE_ADDR = 192.168.1.13 -- 17:35:50.343 INFO [21849]: SERVER_NAME = oameye.works.coregrade.com -- 17:35:50.343 INFO [21849]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:35:50.343 INFO [21849]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:35:50.343 INFO [21849]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:35:50.354 INFO [21849]: COREGRADE is stopping... -- 17:35:50.354 DEBUG [21849]: Closing database connection -- 17:35:50.354 SQL [21849]: pgsql_close() -- 17:35:53.291 INFO [21849]: COREGRADE is starting... -- 17:35:53.291 INFO [21849]: Version from config: 1.0 -- 17:35:53.291 DEBUG [21849]: Connecting to database... -- 17:35:53.291 DEBUG [21849]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:35:53.291 SQL [21849]: pgsql_db_connect() -- 17:35:53.295 DEBUG [21849]: Database connection successful -- 17:35:53.295 INFO [21849]: _SERVER found -- 17:35:53.295 INFO [21849]: REMOTE_ADDR = 192.168.1.13 -- 17:35:53.295 INFO [21849]: SERVER_NAME = oameye.works.coregrade.com -- 17:35:53.295 INFO [21849]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:35:53.295 INFO [21849]: QUERY_STRING = /member/viewCardAddAction -- 17:35:53.295 INFO [21849]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:35:53.325 INFO [21849]: COREGRADE is stopping... -- 17:35:53.325 DEBUG [21849]: Closing database connection -- 17:35:53.325 SQL [21849]: pgsql_close() -- 17:36:11.449 INFO [21850]: COREGRADE is starting... -- 17:36:11.450 INFO [21850]: Version from config: 1.0 -- 17:36:11.450 DEBUG [21850]: Connecting to database... -- 17:36:11.450 DEBUG [21850]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:11.450 SQL [21850]: pgsql_db_connect() -- 17:36:11.491 INFO [21850]: COREGRADE is starting... -- 17:36:11.492 INFO [21850]: Version from config: 1.0 -- 17:36:11.492 DEBUG [21850]: Connecting to database... -- 17:36:11.492 DEBUG [21850]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:11.492 SQL [21850]: pgsql_db_connect() -- 17:36:11.495 DEBUG [21850]: Database connection successful -- 17:36:11.495 INFO [21850]: _SERVER found -- 17:36:11.495 INFO [21850]: REMOTE_ADDR = 192.168.1.13 -- 17:36:11.495 INFO [21850]: SERVER_NAME = oameye.works.coregrade.com -- 17:36:11.495 INFO [21850]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:36:11.495 INFO [21850]: QUERY_STRING = -- 17:36:11.495 INFO [21850]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:11.496 INFO [21850]: SystemStatus()09-09-********~************ -- 17:36:11.496 INFO [21850]: long coregrade_api_main(CVars in, CVars &out) -- 17:36:11.496 INFO [21850]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 17:36:11.496 INFO [21850]: account calls -- 17:36:11.496 INFO [21850]: account_calls() -- 17:36:11.496 INFO [21850]: /account_calls() -- 17:36:11.496 INFO [21850]: RET: result=YES I GET TO BACK END -- 17:36:11.496 INFO [21850]: COREGRADE is stopping... -- 17:36:11.496 DEBUG [21850]: Closing database connection -- 17:36:11.496 SQL [21850]: pgsql_close() -- 17:36:11.454 DEBUG [21850]: Database connection successful -- 17:36:11.454 INFO [21850]: _SERVER found -- 17:36:11.454 INFO [21850]: REMOTE_ADDR = 192.168.1.13 -- 17:36:11.454 INFO [21850]: SERVER_NAME = oameye.works.coregrade.com -- 17:36:11.454 INFO [21850]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:36:11.454 INFO [21850]: QUERY_STRING = /member/addNotecard -- 17:36:11.454 INFO [21850]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:11.496 INFO [21850]: COREGRADE is stopping... -- 17:36:11.496 DEBUG [21850]: Closing database connection -- 17:36:11.496 SQL [21850]: pgsql_close() -- 17:37:32.393 INFO [22049]: COREGRADE is starting... -- 17:37:32.394 INFO [22049]: Version from config: 1.0 -- 17:37:32.394 DEBUG [22049]: Connecting to database... -- 17:37:32.394 DEBUG [22049]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:32.394 SQL [22049]: pgsql_db_connect() -- 17:37:32.439 INFO [22049]: COREGRADE is starting... -- 17:37:32.440 INFO [22049]: Version from config: 1.0 -- 17:37:32.440 DEBUG [22049]: Connecting to database... -- 17:37:32.440 DEBUG [22049]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:32.440 SQL [22049]: pgsql_db_connect() -- 17:37:32.444 DEBUG [22049]: Database connection successful -- 17:37:32.444 INFO [22049]: _SERVER found -- 17:37:32.444 INFO [22049]: REMOTE_ADDR = 192.168.1.13 -- 17:37:32.444 INFO [22049]: SERVER_NAME = oameye.works.coregrade.com -- 17:37:32.444 INFO [22049]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:37:32.444 INFO [22049]: QUERY_STRING = -- 17:37:32.444 INFO [22049]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:37:32.444 INFO [22049]: SystemStatus()09-09-********~************ -- 17:37:32.444 INFO [22049]: long coregrade_api_main(CVars in, CVars &out) -- 17:37:32.444 INFO [22049]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 17:37:32.444 INFO [22049]: account calls -- 17:37:32.444 INFO [22049]: account_calls() -- 17:37:32.444 INFO [22049]: AddPageCard() -- 17:37:32.444 FLOG_MAX [22049]: REQ_STRING(title) -- 17:37:32.444 FLOG_MAX [22049]: REQ_STRING(item_type) -- 17:37:32.445 FLOG_MAX [22049]: REQ_STRING(sessionid) -- 17:37:32.445 FLOG_MAX [22049]: Error in parameter 'sessionid', len= 4 <= 1 <= 40 -- 17:37:32.445 FLOG_MAX [22049]: Bad parameter exception: 'sessionid' -- 17:37:32.445 INFO [22049]: /AddPageCard() -- 17:37:32.445 INFO [22049]: RET: result=YES I GET TO BACK END -- 17:37:32.445 INFO [22049]: RET: status=Invalid session ID -- 17:37:32.445 INFO [22049]: COREGRADE is stopping... -- 17:37:32.445 DEBUG [22049]: Closing database connection -- 17:37:32.445 SQL [22049]: pgsql_close() -- 17:37:32.400 DEBUG [22049]: Database connection successful -- 17:37:32.400 INFO [22049]: _SERVER found -- 17:37:32.400 INFO [22049]: REMOTE_ADDR = 192.168.1.13 -- 17:37:32.400 INFO [22049]: SERVER_NAME = oameye.works.coregrade.com -- 17:37:32.400 INFO [22049]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:37:32.400 INFO [22049]: QUERY_STRING = /member/addNotecard -- 17:37:32.400 INFO [22049]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:37:32.445 INFO [22049]: COREGRADE is stopping... -- 17:37:32.445 DEBUG [22049]: Closing database connection -- 17:37:32.445 SQL [22049]: pgsql_close() -- 17:37:38.593 INFO [22050]: COREGRADE is starting... -- 17:37:38.593 INFO [22050]: Version from config: 1.0 -- 17:37:38.593 DEBUG [22050]: Connecting to database... -- 17:37:38.593 DEBUG [22050]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:38.593 SQL [22050]: pgsql_db_connect() -- 17:37:38.598 DEBUG [22050]: Database connection successful -- 17:37:38.598 INFO [22050]: _SERVER found -- 17:37:38.598 INFO [22050]: REMOTE_ADDR = 192.168.1.13 -- 17:37:38.598 INFO [22050]: SERVER_NAME = oameye.works.coregrade.com -- 17:37:38.598 INFO [22050]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:37:38.598 INFO [22050]: QUERY_STRING = /auth/logout -- 17:37:38.598 INFO [22050]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:37:38.637 INFO [22050]: COREGRADE is stopping... -- 17:37:38.637 DEBUG [22050]: Closing database connection -- 17:37:38.637 SQL [22050]: pgsql_close() -- 17:37:38.825 INFO [22050]: COREGRADE is starting... -- 17:37:38.825 INFO [22050]: Version from config: 1.0 -- 17:37:38.825 DEBUG [22050]: Connecting to database... -- 17:37:38.825 DEBUG [22050]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:38.825 SQL [22050]: pgsql_db_connect() -- 17:37:38.830 DEBUG [22050]: Database connection successful -- 17:37:38.830 INFO [22050]: _SERVER found -- 17:37:38.830 INFO [22050]: REMOTE_ADDR = 192.168.1.13 -- 17:37:38.830 INFO [22050]: SERVER_NAME = oameye.works.coregrade.com -- 17:37:38.830 INFO [22050]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:37:38.830 INFO [22050]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:37:38.830 INFO [22050]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:37:38.842 INFO [22050]: COREGRADE is stopping... -- 17:37:38.842 DEBUG [22050]: Closing database connection -- 17:37:38.842 SQL [22050]: pgsql_close() -- 17:37:38.844 INFO [22048]: COREGRADE is starting... -- 17:37:38.844 INFO [22048]: Version from config: 1.0 -- 17:37:38.844 DEBUG [22048]: Connecting to database... -- 17:37:38.844 DEBUG [22048]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:38.844 SQL [22048]: pgsql_db_connect() -- 17:37:38.848 DEBUG [22048]: Database connection successful -- 17:37:38.848 INFO [22048]: _SERVER found -- 17:37:38.848 INFO [22048]: REMOTE_ADDR = 192.168.1.13 -- 17:37:38.848 INFO [22048]: SERVER_NAME = oameye.works.coregrade.com -- 17:37:38.848 INFO [22048]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:37:38.848 INFO [22048]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:37:38.848 INFO [22048]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:37:38.863 INFO [22048]: COREGRADE is stopping... -- 17:37:38.863 DEBUG [22048]: Closing database connection -- 17:37:38.863 SQL [22048]: pgsql_close() -- 17:37:40.415 INFO [22048]: COREGRADE is starting... -- 17:37:40.415 INFO [22048]: Version from config: 1.0 -- 17:37:40.415 DEBUG [22048]: Connecting to database... -- 17:37:40.415 DEBUG [22048]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:40.415 SQL [22048]: pgsql_db_connect() -- 17:37:40.456 INFO [22048]: COREGRADE is starting... -- 17:37:40.457 INFO [22048]: Version from config: 1.0 -- 17:37:40.457 DEBUG [22048]: Connecting to database... -- 17:37:40.457 DEBUG [22048]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:40.457 SQL [22048]: pgsql_db_connect() -- 17:37:40.461 DEBUG [22048]: Database connection successful -- 17:37:40.461 INFO [22048]: _SERVER found -- 17:37:40.461 INFO [22048]: REMOTE_ADDR = 192.168.1.13 -- 17:37:40.461 INFO [22048]: SERVER_NAME = oameye.works.coregrade.com -- 17:37:40.461 INFO [22048]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:37:40.461 INFO [22048]: QUERY_STRING = -- 17:37:40.461 INFO [22048]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:37:40.461 INFO [22048]: SystemStatus()09-09-********~************ -- 17:37:40.461 INFO [22048]: long coregrade_api_main(CVars in, CVars &out) -- 17:37:40.461 INFO [22048]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 17:37:40.461 INFO [22048]: account calls -- 17:37:40.461 INFO [22048]: account_calls() -- 17:37:40.461 INFO [22048]: LoginCoreGradeAccount() -- 17:37:40.461 FLOG_MAX [22048]: REQ_STRING(username) -- 17:37:40.461 FLOG_MAX [22048]: REQ_STRING(password) -- 17:37:40.461 FLOG_MAX [22048]: REQ_STRING(sessionid) -- 17:37:40.461 FLOG_MAX [22048]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:37:40.461 SQL [22048]: pgsql_query() -- 17:37:40.461 SQL [22048]: About to run query: -- 17:37:40.461 SQL [22048]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 17:37:40.465 SQL [22048]: Found rows: 1 -- 17:37:40.465 FLOG_MAX [22048]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 17:37:40.465 INFO [22048]: long SessionCheck(long uid, const char *sessionid, int create ) -- 17:37:40.465 SQL [22048]: pgsql_exec() -- 17:37:40.465 SQL [22048]: About to run query: -- 17:37:40.465 SQL [22048]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 17:37:40.466 SQL [22048]: PQcmdTuples: 0 -- 17:37:40.466 SQL [22048]: Affected rows: 0 -- 17:37:40.466 SQL [22048]: pgsql_exec() -- 17:37:40.466 SQL [22048]: About to run query: -- 17:37:40.466 SQL [22048]: DELETE FROM members_session WHERE member_id=5 -- 17:37:40.467 SQL [22048]: PQcmdTuples: 1 -- 17:37:40.467 SQL [22048]: Affected rows: 1 -- 17:37:40.467 SQL [22048]: pgsql_query() -- 17:37:40.467 SQL [22048]: About to run query: -- 17:37:40.467 SQL [22048]: SELECT * FROM members_session WHERE member_id=5 AND session<>'D936A69EE0F85C1C8B6334443EE38351' -- 17:37:40.468 SQL [22048]: Found rows: 0 -- 17:37:40.468 SQL [22048]: Found rows: 0 -- 17:37:40.468 FLOG_MAX [22048]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:37:40.468 SQL [22048]: pgsql_query() -- 17:37:40.468 SQL [22048]: About to run query: -- 17:37:40.468 SQL [22048]: SELECT * FROM members_session WHERE member_id=5 AND session='D936A69EE0F85C1C8B6334443EE38351' -- 17:37:40.468 SQL [22048]: Found rows: 0 -- 17:37:40.468 SQL [22048]: Found rows: 0 -- 17:37:40.468 FLOG_MAX [22048]: insert_db_record() -- 17:37:40.468 SQL [22048]: pgsql_exec() -- 17:37:40.468 SQL [22048]: About to run query: -- 17:37:40.468 SQL [22048]: INSERT INTO members_session (member_id,session) VALUES ('5','D936A69EE0F85C1C8B6334443EE38351') -- 17:37:40.470 SQL [22048]: PQcmdTuples: 1 -- 17:37:40.470 SQL [22048]: Affected rows: 1 -- 17:37:40.470 FLOG_MAX [22048]: SELECT currval('members_session_id_seq') -- 17:37:40.470 SQL [22048]: pgsql_query() -- 17:37:40.470 SQL [22048]: About to run query: -- 17:37:40.470 SQL [22048]: SELECT currval('members_session_id_seq') -- 17:37:40.470 SQL [22048]: Found rows: 1 -- 17:37:40.470 INFO [22048]: CreateDefaultPage() -- 17:37:40.470 FLOG_MAX [22048]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:37:40.470 SQL [22048]: pgsql_query() -- 17:37:40.470 SQL [22048]: About to run query: -- 17:37:40.470 SQL [22048]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 17:37:40.471 SQL [22048]: Found rows: 1 -- 17:37:40.471 FLOG_MAX [22048]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 17:37:40.471 SQL [22048]: pgsql_query() -- 17:37:40.471 SQL [22048]: About to run query: -- 17:37:40.471 SQL [22048]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 17:37:40.471 SQL [22048]: Found rows: 1 -- 17:37:40.471 INFO [22048]: /CreateDefaultPage() -- 17:37:40.471 INFO [22048]: /LoginCoreGradeAccount() -- 17:37:40.471 INFO [22048]: RET: added=2020-02-05 06:47:23.982154 -- 17:37:40.471 INFO [22048]: RET: email=ameye+11@chiefsoft.com -- 17:37:40.471 INFO [22048]: RET: firstname=Olu -- 17:37:40.471 INFO [22048]: RET: id=5 -- 17:37:40.471 INFO [22048]: RET: last_login= -- 17:37:40.471 INFO [22048]: RET: lastname=Amey -- 17:37:40.471 INFO [22048]: RET: loc=192.168.1.13 -- 17:37:40.471 INFO [22048]: RET: member_id=5 -- 17:37:40.471 INFO [22048]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 17:37:40.471 INFO [22048]: RET: phone= -- 17:37:40.471 INFO [22048]: RET: pid= -- 17:37:40.471 INFO [22048]: RET: result=YES I GET TO BACK END -- 17:37:40.471 INFO [22048]: RET: sessionid=D936A69EE0F85C1C8B6334443EE38351 -- 17:37:40.471 INFO [22048]: RET: status=1 -- 17:37:40.471 INFO [22048]: RET: stauts=OK -- 17:37:40.471 INFO [22048]: RET: username=ameye+11@chiefsoft.com -- 17:37:40.471 INFO [22048]: RET: verified= -- 17:37:40.473 INFO [22048]: COREGRADE is stopping... -- 17:37:40.473 DEBUG [22048]: Closing database connection -- 17:37:40.473 SQL [22048]: pgsql_close() -- 17:37:40.420 DEBUG [22048]: Database connection successful -- 17:37:40.420 INFO [22048]: _SERVER found -- 17:37:40.420 INFO [22048]: REMOTE_ADDR = 192.168.1.13 -- 17:37:40.420 INFO [22048]: SERVER_NAME = oameye.works.coregrade.com -- 17:37:40.420 INFO [22048]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:37:40.420 INFO [22048]: QUERY_STRING = /auth -- 17:37:40.420 INFO [22048]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:37:40.474 INFO [22048]: COREGRADE is stopping... -- 17:37:40.474 DEBUG [22048]: Closing database connection -- 17:37:40.474 SQL [22048]: pgsql_close() -- 17:37:40.492 INFO [22048]: COREGRADE is starting... -- 17:37:40.492 INFO [22048]: Version from config: 1.0 -- 17:37:40.492 DEBUG [22048]: Connecting to database... -- 17:37:40.492 DEBUG [22048]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:40.492 SQL [22048]: pgsql_db_connect() -- 17:37:40.497 DEBUG [22048]: Database connection successful -- 17:37:40.497 INFO [22048]: _SERVER found -- 17:37:40.497 INFO [22048]: REMOTE_ADDR = 192.168.1.13 -- 17:37:40.497 INFO [22048]: SERVER_NAME = oameye.works.coregrade.com -- 17:37:40.497 INFO [22048]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:37:40.497 INFO [22048]: QUERY_STRING = /member/index -- 17:37:40.497 INFO [22048]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:37:40.534 INFO [22048]: COREGRADE is stopping... -- 17:37:40.535 DEBUG [22048]: Closing database connection -- 17:37:40.535 SQL [22048]: pgsql_close() -- 17:37:40.842 INFO [22048]: COREGRADE is starting... -- 17:37:40.842 INFO [22048]: Version from config: 1.0 -- 17:37:40.842 DEBUG [22048]: Connecting to database... -- 17:37:40.842 DEBUG [22048]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:40.842 SQL [22048]: pgsql_db_connect() -- 17:37:40.846 DEBUG [22048]: Database connection successful -- 17:37:40.846 INFO [22048]: _SERVER found -- 17:37:40.846 INFO [22048]: REMOTE_ADDR = 192.168.1.13 -- 17:37:40.846 INFO [22048]: SERVER_NAME = oameye.works.coregrade.com -- 17:37:40.846 INFO [22048]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:37:40.846 INFO [22048]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:37:40.846 INFO [22048]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:37:40.858 INFO [22048]: COREGRADE is stopping... -- 17:37:40.858 DEBUG [22048]: Closing database connection -- 17:37:40.858 SQL [22048]: pgsql_close() -- 17:37:40.879 INFO [22048]: COREGRADE is starting... -- 17:37:40.879 INFO [22048]: Version from config: 1.0 -- 17:37:40.879 DEBUG [22048]: Connecting to database... -- 17:37:40.879 DEBUG [22048]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:40.879 SQL [22048]: pgsql_db_connect() -- 17:37:40.884 DEBUG [22048]: Database connection successful -- 17:37:40.884 INFO [22048]: _SERVER found -- 17:37:40.884 INFO [22048]: REMOTE_ADDR = 192.168.1.13 -- 17:37:40.884 INFO [22048]: SERVER_NAME = oameye.works.coregrade.com -- 17:37:40.884 INFO [22048]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:37:40.884 INFO [22048]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:37:40.884 INFO [22048]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:37:40.895 INFO [22048]: COREGRADE is stopping... -- 17:37:40.895 DEBUG [22048]: Closing database connection -- 17:37:40.895 SQL [22048]: pgsql_close() -- 17:38:27.928 INFO [22051]: COREGRADE is starting... -- 17:38:27.928 INFO [22051]: Version from config: 1.0 -- 17:38:27.928 DEBUG [22051]: Connecting to database... -- 17:38:27.928 DEBUG [22051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:27.928 SQL [22051]: pgsql_db_connect() -- 17:38:27.933 DEBUG [22051]: Database connection successful -- 17:38:27.933 INFO [22051]: _SERVER found -- 17:38:27.933 INFO [22051]: REMOTE_ADDR = 192.168.1.13 -- 17:38:27.933 INFO [22051]: SERVER_NAME = oameye.works.coregrade.com -- 17:38:27.933 INFO [22051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:38:27.933 INFO [22051]: QUERY_STRING = /member/page -- 17:38:27.933 INFO [22051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:38:27.982 INFO [22051]: COREGRADE is stopping... -- 17:38:27.982 DEBUG [22051]: Closing database connection -- 17:38:27.982 SQL [22051]: pgsql_close() -- 17:38:28.115 INFO [22051]: COREGRADE is starting... -- 17:38:28.115 INFO [22051]: Version from config: 1.0 -- 17:38:28.115 DEBUG [22051]: Connecting to database... -- 17:38:28.115 DEBUG [22051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:28.115 SQL [22051]: pgsql_db_connect() -- 17:38:28.119 DEBUG [22051]: Database connection successful -- 17:38:28.119 INFO [22051]: _SERVER found -- 17:38:28.119 INFO [22051]: REMOTE_ADDR = 192.168.1.13 -- 17:38:28.119 INFO [22051]: SERVER_NAME = oameye.works.coregrade.com -- 17:38:28.119 INFO [22051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:38:28.119 INFO [22051]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:38:28.120 INFO [22051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:38:28.132 INFO [22051]: COREGRADE is stopping... -- 17:38:28.132 DEBUG [22051]: Closing database connection -- 17:38:28.132 SQL [22051]: pgsql_close() -- 17:38:28.257 INFO [22051]: COREGRADE is starting... -- 17:38:28.257 INFO [22051]: Version from config: 1.0 -- 17:38:28.257 DEBUG [22051]: Connecting to database... -- 17:38:28.257 DEBUG [22051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:28.258 SQL [22051]: pgsql_db_connect() -- 17:38:28.262 DEBUG [22051]: Database connection successful -- 17:38:28.262 INFO [22051]: _SERVER found -- 17:38:28.262 INFO [22051]: REMOTE_ADDR = 192.168.1.13 -- 17:38:28.262 INFO [22051]: SERVER_NAME = oameye.works.coregrade.com -- 17:38:28.262 INFO [22051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:38:28.262 INFO [22051]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:38:28.262 INFO [22051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:38:28.274 INFO [22051]: COREGRADE is stopping... -- 17:38:28.274 DEBUG [22051]: Closing database connection -- 17:38:28.274 SQL [22051]: pgsql_close() -- 17:38:32.901 INFO [22051]: COREGRADE is starting... -- 17:38:32.901 INFO [22051]: Version from config: 1.0 -- 17:38:32.901 DEBUG [22051]: Connecting to database... -- 17:38:32.901 DEBUG [22051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:32.901 SQL [22051]: pgsql_db_connect() -- 17:38:32.907 DEBUG [22051]: Database connection successful -- 17:38:32.907 INFO [22051]: _SERVER found -- 17:38:32.907 INFO [22051]: REMOTE_ADDR = 192.168.1.13 -- 17:38:32.907 INFO [22051]: SERVER_NAME = oameye.works.coregrade.com -- 17:38:32.907 INFO [22051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:38:32.907 INFO [22051]: QUERY_STRING = /member/viewCardAddAction -- 17:38:32.907 INFO [22051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:38:32.941 INFO [22051]: COREGRADE is stopping... -- 17:38:32.941 DEBUG [22051]: Closing database connection -- 17:38:32.941 SQL [22051]: pgsql_close() -- 17:38:49.872 INFO [22052]: COREGRADE is starting... -- 17:38:49.872 INFO [22052]: Version from config: 1.0 -- 17:38:49.872 DEBUG [22052]: Connecting to database... -- 17:38:49.872 DEBUG [22052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:49.872 SQL [22052]: pgsql_db_connect() -- 17:38:49.916 INFO [22052]: COREGRADE is starting... -- 17:38:49.916 INFO [22052]: Version from config: 1.0 -- 17:38:49.916 DEBUG [22052]: Connecting to database... -- 17:38:49.916 DEBUG [22052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:49.916 SQL [22052]: pgsql_db_connect() -- 17:38:49.921 DEBUG [22052]: Database connection successful -- 17:38:49.921 INFO [22052]: _SERVER found -- 17:38:49.921 INFO [22052]: REMOTE_ADDR = 192.168.1.13 -- 17:38:49.921 INFO [22052]: SERVER_NAME = oameye.works.coregrade.com -- 17:38:49.921 INFO [22052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:38:49.921 INFO [22052]: QUERY_STRING = -- 17:38:49.921 INFO [22052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:38:49.921 INFO [22052]: SystemStatus()09-09-********~************ -- 17:38:49.921 INFO [22052]: long coregrade_api_main(CVars in, CVars &out) -- 17:38:49.921 INFO [22052]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 17:38:49.921 INFO [22052]: account calls -- 17:38:49.921 INFO [22052]: account_calls() -- 17:38:49.921 INFO [22052]: AddPageCard() -- 17:38:49.921 FLOG_MAX [22052]: REQ_STRING(title) -- 17:38:49.921 FLOG_MAX [22052]: REQ_STRING(item_type) -- 17:38:49.921 FLOG_MAX [22052]: REQ_STRING(sessionid) -- 17:38:49.921 FLOG_MAX [22052]: REQ_STRING(detail) -- 17:38:49.921 FLOG_MAX [22052]: Bad parameter exception: 'page_id' -- 17:38:49.921 INFO [22052]: /AddPageCard() -- 17:38:49.921 INFO [22052]: RET: result=YES I GET TO BACK END -- 17:38:49.921 INFO [22052]: RET: status=Invalid session ID -- 17:38:49.922 INFO [22052]: COREGRADE is stopping... -- 17:38:49.922 DEBUG [22052]: Closing database connection -- 17:38:49.922 SQL [22052]: pgsql_close() -- 17:38:49.877 DEBUG [22052]: Database connection successful -- 17:38:49.877 INFO [22052]: _SERVER found -- 17:38:49.877 INFO [22052]: REMOTE_ADDR = 192.168.1.13 -- 17:38:49.877 INFO [22052]: SERVER_NAME = oameye.works.coregrade.com -- 17:38:49.877 INFO [22052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:38:49.877 INFO [22052]: QUERY_STRING = /member/addNotecard -- 17:38:49.877 INFO [22052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:38:49.922 INFO [22052]: COREGRADE is stopping... -- 17:38:49.922 DEBUG [22052]: Closing database connection -- 17:38:49.922 SQL [22052]: pgsql_close() -- 17:40:05.574 INFO [22101]: COREGRADE is starting... -- 17:40:05.575 INFO [22101]: Version from config: 1.0 -- 17:40:05.575 DEBUG [22101]: Connecting to database... -- 17:40:05.575 DEBUG [22101]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:40:05.575 SQL [22101]: pgsql_db_connect() -- 17:40:05.580 DEBUG [22101]: Database connection successful -- 17:40:05.580 INFO [22101]: _SERVER found -- 17:40:05.580 INFO [22101]: REMOTE_ADDR = 192.168.1.13 -- 17:40:05.580 INFO [22101]: SERVER_NAME = oameye.works.coregrade.com -- 17:40:05.580 INFO [22101]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:40:05.580 INFO [22101]: QUERY_STRING = /member -- 17:40:05.580 INFO [22101]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:40:05.625 INFO [22101]: COREGRADE is stopping... -- 17:40:05.625 DEBUG [22101]: Closing database connection -- 17:40:05.625 SQL [22101]: pgsql_close() -- 17:40:05.877 INFO [22101]: COREGRADE is starting... -- 17:40:05.877 INFO [22101]: Version from config: 1.0 -- 17:40:05.877 DEBUG [22101]: Connecting to database... -- 17:40:05.877 DEBUG [22101]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:40:05.877 SQL [22101]: pgsql_db_connect() -- 17:40:05.882 DEBUG [22101]: Database connection successful -- 17:40:05.882 INFO [22101]: _SERVER found -- 17:40:05.882 INFO [22101]: REMOTE_ADDR = 192.168.1.13 -- 17:40:05.882 INFO [22101]: SERVER_NAME = oameye.works.coregrade.com -- 17:40:05.882 INFO [22101]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:40:05.882 INFO [22101]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:40:05.882 INFO [22101]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:40:05.895 INFO [22101]: COREGRADE is stopping... -- 17:40:05.895 DEBUG [22101]: Closing database connection -- 17:40:05.895 SQL [22101]: pgsql_close() -- 17:40:05.905 INFO [22101]: COREGRADE is starting... -- 17:40:05.905 INFO [22101]: Version from config: 1.0 -- 17:40:05.905 DEBUG [22101]: Connecting to database... -- 17:40:05.905 DEBUG [22101]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:40:05.905 SQL [22101]: pgsql_db_connect() -- 17:40:05.909 DEBUG [22101]: Database connection successful -- 17:40:05.909 INFO [22101]: _SERVER found -- 17:40:05.909 INFO [22101]: REMOTE_ADDR = 192.168.1.13 -- 17:40:05.909 INFO [22101]: SERVER_NAME = oameye.works.coregrade.com -- 17:40:05.909 INFO [22101]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:40:05.909 INFO [22101]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:40:05.909 INFO [22101]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:40:05.921 INFO [22101]: COREGRADE is stopping... -- 17:40:05.921 DEBUG [22101]: Closing database connection -- 17:40:05.921 SQL [22101]: pgsql_close() -- 17:40:07.176 INFO [22101]: COREGRADE is starting... -- 17:40:07.176 INFO [22101]: Version from config: 1.0 -- 17:40:07.176 DEBUG [22101]: Connecting to database... -- 17:40:07.176 DEBUG [22101]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:40:07.176 SQL [22101]: pgsql_db_connect() -- 17:40:07.181 DEBUG [22101]: Database connection successful -- 17:40:07.181 INFO [22101]: _SERVER found -- 17:40:07.181 INFO [22101]: REMOTE_ADDR = 192.168.1.13 -- 17:40:07.181 INFO [22101]: SERVER_NAME = oameye.works.coregrade.com -- 17:40:07.181 INFO [22101]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:40:07.181 INFO [22101]: QUERY_STRING = /member/page -- 17:40:07.181 INFO [22101]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:40:07.223 INFO [22101]: COREGRADE is stopping... -- 17:40:07.223 DEBUG [22101]: Closing database connection -- 17:40:07.223 SQL [22101]: pgsql_close() -- 17:40:07.352 INFO [22101]: COREGRADE is starting... -- 17:40:07.352 INFO [22101]: Version from config: 1.0 -- 17:40:07.352 DEBUG [22101]: Connecting to database... -- 17:40:07.352 DEBUG [22101]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:40:07.352 SQL [22101]: pgsql_db_connect() -- 17:40:07.356 DEBUG [22101]: Database connection successful -- 17:40:07.356 INFO [22101]: _SERVER found -- 17:40:07.356 INFO [22101]: REMOTE_ADDR = 192.168.1.13 -- 17:40:07.356 INFO [22101]: SERVER_NAME = oameye.works.coregrade.com -- 17:40:07.356 INFO [22101]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:40:07.356 INFO [22101]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:40:07.356 INFO [22101]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:40:07.368 INFO [22101]: COREGRADE is stopping... -- 17:40:07.369 DEBUG [22101]: Closing database connection -- 17:40:07.369 SQL [22101]: pgsql_close() -- 17:40:07.449 INFO [22101]: COREGRADE is starting... -- 17:40:07.450 INFO [22101]: Version from config: 1.0 -- 17:40:07.450 DEBUG [22101]: Connecting to database... -- 17:40:07.450 DEBUG [22101]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:40:07.450 SQL [22101]: pgsql_db_connect() -- 17:40:07.454 DEBUG [22101]: Database connection successful -- 17:40:07.454 INFO [22101]: _SERVER found -- 17:40:07.454 INFO [22101]: REMOTE_ADDR = 192.168.1.13 -- 17:40:07.454 INFO [22101]: SERVER_NAME = oameye.works.coregrade.com -- 17:40:07.454 INFO [22101]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:40:07.454 INFO [22101]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:40:07.454 INFO [22101]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:40:07.466 INFO [22101]: COREGRADE is stopping... -- 17:40:07.466 DEBUG [22101]: Closing database connection -- 17:40:07.466 SQL [22101]: pgsql_close() -- 17:40:12.382 INFO [22101]: COREGRADE is starting... -- 17:40:12.382 INFO [22101]: Version from config: 1.0 -- 17:40:12.382 DEBUG [22101]: Connecting to database... -- 17:40:12.382 DEBUG [22101]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:40:12.382 SQL [22101]: pgsql_db_connect() -- 17:40:12.387 DEBUG [22101]: Database connection successful -- 17:40:12.387 INFO [22101]: _SERVER found -- 17:40:12.387 INFO [22101]: REMOTE_ADDR = 192.168.1.13 -- 17:40:12.387 INFO [22101]: SERVER_NAME = oameye.works.coregrade.com -- 17:40:12.387 INFO [22101]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:40:12.387 INFO [22101]: QUERY_STRING = /member/viewCardAddAction -- 17:40:12.387 INFO [22101]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:40:12.422 INFO [22101]: COREGRADE is stopping... -- 17:40:12.422 DEBUG [22101]: Closing database connection -- 17:40:12.422 SQL [22101]: pgsql_close() -- 17:42:22.680 INFO [22049]: COREGRADE is starting... -- 17:42:22.680 INFO [22049]: Version from config: 1.0 -- 17:42:22.680 DEBUG [22049]: Connecting to database... -- 17:42:22.680 DEBUG [22049]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:42:22.680 SQL [22049]: pgsql_db_connect() -- 17:42:22.685 DEBUG [22049]: Database connection successful -- 17:42:22.685 INFO [22049]: _SERVER found -- 17:42:22.685 INFO [22049]: REMOTE_ADDR = 192.168.1.13 -- 17:42:22.685 INFO [22049]: SERVER_NAME = oameye.works.coregrade.com -- 17:42:22.685 INFO [22049]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:42:22.685 INFO [22049]: QUERY_STRING = /member/viewCardAddAction -- 17:42:22.685 INFO [22049]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:42:22.723 INFO [22049]: COREGRADE is stopping... -- 17:42:22.723 DEBUG [22049]: Closing database connection -- 17:42:22.723 SQL [22049]: pgsql_close() -- 17:42:23.601 INFO [22049]: COREGRADE is starting... -- 17:42:23.601 INFO [22049]: Version from config: 1.0 -- 17:42:23.601 DEBUG [22049]: Connecting to database... -- 17:42:23.601 DEBUG [22049]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:42:23.601 SQL [22049]: pgsql_db_connect() -- 17:42:23.606 DEBUG [22049]: Database connection successful -- 17:42:23.606 INFO [22049]: _SERVER found -- 17:42:23.606 INFO [22049]: REMOTE_ADDR = 192.168.1.13 -- 17:42:23.606 INFO [22049]: SERVER_NAME = oameye.works.coregrade.com -- 17:42:23.606 INFO [22049]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:42:23.606 INFO [22049]: QUERY_STRING = /member/viewCardAddAction -- 17:42:23.606 INFO [22049]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:42:23.641 INFO [22049]: COREGRADE is stopping... -- 17:42:23.641 DEBUG [22049]: Closing database connection -- 17:42:23.642 SQL [22049]: pgsql_close() -- 17:42:24.598 INFO [22049]: COREGRADE is starting... -- 17:42:24.598 INFO [22049]: Version from config: 1.0 -- 17:42:24.598 DEBUG [22049]: Connecting to database... -- 17:42:24.598 DEBUG [22049]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:42:24.598 SQL [22049]: pgsql_db_connect() -- 17:42:24.603 DEBUG [22049]: Database connection successful -- 17:42:24.603 INFO [22049]: _SERVER found -- 17:42:24.603 INFO [22049]: REMOTE_ADDR = 192.168.1.13 -- 17:42:24.603 INFO [22049]: SERVER_NAME = oameye.works.coregrade.com -- 17:42:24.603 INFO [22049]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:42:24.603 INFO [22049]: QUERY_STRING = /member/viewCardAddAction -- 17:42:24.603 INFO [22049]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:42:24.639 INFO [22049]: COREGRADE is stopping... -- 17:42:24.639 DEBUG [22049]: Closing database connection -- 17:42:24.639 SQL [22049]: pgsql_close() -- 17:44:28.979 INFO [22106]: COREGRADE is starting... -- 17:44:28.979 INFO [22106]: Version from config: 1.0 -- 17:44:28.979 DEBUG [22106]: Connecting to database... -- 17:44:28.979 DEBUG [22106]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:44:28.979 SQL [22106]: pgsql_db_connect() -- 17:44:28.983 DEBUG [22106]: Database connection successful -- 17:44:28.983 INFO [22106]: _SERVER found -- 17:44:28.983 INFO [22106]: REMOTE_ADDR = 192.168.1.13 -- 17:44:28.983 INFO [22106]: SERVER_NAME = oameye.works.coregrade.com -- 17:44:28.983 INFO [22106]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:44:28.983 INFO [22106]: QUERY_STRING = /member/viewCardAddAction -- 17:44:28.983 INFO [22106]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:44:29.022 INFO [22106]: COREGRADE is stopping... -- 17:44:29.022 DEBUG [22106]: Closing database connection -- 17:44:29.022 SQL [22106]: pgsql_close() -- 17:44:29.817 INFO [22106]: COREGRADE is starting... -- 17:44:29.817 INFO [22106]: Version from config: 1.0 -- 17:44:29.817 DEBUG [22106]: Connecting to database... -- 17:44:29.817 DEBUG [22106]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:44:29.817 SQL [22106]: pgsql_db_connect() -- 17:44:29.821 DEBUG [22106]: Database connection successful -- 17:44:29.821 INFO [22106]: _SERVER found -- 17:44:29.821 INFO [22106]: REMOTE_ADDR = 192.168.1.13 -- 17:44:29.821 INFO [22106]: SERVER_NAME = oameye.works.coregrade.com -- 17:44:29.821 INFO [22106]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:44:29.821 INFO [22106]: QUERY_STRING = /member/viewCardAddAction -- 17:44:29.821 INFO [22106]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:44:29.856 INFO [22106]: COREGRADE is stopping... -- 17:44:29.856 DEBUG [22106]: Closing database connection -- 17:44:29.856 SQL [22106]: pgsql_close() -- 17:44:30.456 INFO [22106]: COREGRADE is starting... -- 17:44:30.457 INFO [22106]: Version from config: 1.0 -- 17:44:30.457 DEBUG [22106]: Connecting to database... -- 17:44:30.457 DEBUG [22106]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:44:30.457 SQL [22106]: pgsql_db_connect() -- 17:44:30.461 DEBUG [22106]: Database connection successful -- 17:44:30.461 INFO [22106]: _SERVER found -- 17:44:30.461 INFO [22106]: REMOTE_ADDR = 192.168.1.13 -- 17:44:30.461 INFO [22106]: SERVER_NAME = oameye.works.coregrade.com -- 17:44:30.461 INFO [22106]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:44:30.461 INFO [22106]: QUERY_STRING = /member/viewCardAddAction -- 17:44:30.461 INFO [22106]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:44:30.496 INFO [22106]: COREGRADE is stopping... -- 17:44:30.496 DEBUG [22106]: Closing database connection -- 17:44:30.496 SQL [22106]: pgsql_close() -- 17:44:32.154 INFO [22106]: COREGRADE is starting... -- 17:44:32.154 INFO [22106]: Version from config: 1.0 -- 17:44:32.154 DEBUG [22106]: Connecting to database... -- 17:44:32.154 DEBUG [22106]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:44:32.155 SQL [22106]: pgsql_db_connect() -- 17:44:32.159 DEBUG [22106]: Database connection successful -- 17:44:32.159 INFO [22106]: _SERVER found -- 17:44:32.159 INFO [22106]: REMOTE_ADDR = 192.168.1.13 -- 17:44:32.159 INFO [22106]: SERVER_NAME = oameye.works.coregrade.com -- 17:44:32.159 INFO [22106]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=okga53gs12fetfsgc6j1d2c1e9lbinls -- 17:44:32.159 INFO [22106]: QUERY_STRING = /member -- 17:44:32.159 INFO [22106]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:44:32.198 INFO [22106]: COREGRADE is stopping... -- 17:44:32.198 DEBUG [22106]: Closing database connection -- 17:44:32.198 SQL [22106]: pgsql_close() -- 17:44:32.408 INFO [22106]: COREGRADE is starting... -- 17:44:32.408 INFO [22106]: Version from config: 1.0 -- 17:44:32.408 DEBUG [22106]: Connecting to database... -- 17:44:32.408 DEBUG [22106]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:44:32.408 SQL [22106]: pgsql_db_connect() -- 17:44:32.413 DEBUG [22106]: Database connection successful -- 17:44:32.413 INFO [22106]: _SERVER found -- 17:44:32.413 INFO [22106]: REMOTE_ADDR = 192.168.1.13 -- 17:44:32.413 INFO [22106]: SERVER_NAME = oameye.works.coregrade.com -- 17:44:32.413 INFO [22106]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=pkguur709d50fdemol4qh3e358uuac8h -- 17:44:32.413 INFO [22106]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:44:32.413 INFO [22106]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:44:32.424 INFO [22106]: COREGRADE is stopping... -- 17:44:32.424 DEBUG [22106]: Closing database connection -- 17:44:32.424 SQL [22106]: pgsql_close() -- 17:44:32.431 INFO [22050]: COREGRADE is starting... -- 17:44:32.431 INFO [22050]: Version from config: 1.0 -- 17:44:32.431 DEBUG [22050]: Connecting to database... -- 17:44:32.431 DEBUG [22050]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:44:32.431 SQL [22050]: pgsql_db_connect() -- 17:44:32.435 DEBUG [22050]: Database connection successful -- 17:44:32.435 INFO [22050]: _SERVER found -- 17:44:32.435 INFO [22050]: REMOTE_ADDR = 192.168.1.13 -- 17:44:32.435 INFO [22050]: SERVER_NAME = oameye.works.coregrade.com -- 17:44:32.435 INFO [22050]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=pkguur709d50fdemol4qh3e358uuac8h -- 17:44:32.435 INFO [22050]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:44:32.435 INFO [22050]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:44:32.448 INFO [22050]: COREGRADE is stopping... -- 17:44:32.448 DEBUG [22050]: Closing database connection -- 17:44:32.448 SQL [22050]: pgsql_close() -- 17:44:33.809 INFO [22050]: COREGRADE is starting... -- 17:44:33.809 INFO [22050]: Version from config: 1.0 -- 17:44:33.809 DEBUG [22050]: Connecting to database... -- 17:44:33.809 DEBUG [22050]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:44:33.809 SQL [22050]: pgsql_db_connect() -- 17:44:33.813 DEBUG [22050]: Database connection successful -- 17:44:33.813 INFO [22050]: _SERVER found -- 17:44:33.813 INFO [22050]: REMOTE_ADDR = 192.168.1.13 -- 17:44:33.813 INFO [22050]: SERVER_NAME = oameye.works.coregrade.com -- 17:44:33.813 INFO [22050]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=pkguur709d50fdemol4qh3e358uuac8h -- 17:44:33.813 INFO [22050]: QUERY_STRING = /member/page -- 17:44:33.813 INFO [22050]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:44:33.855 INFO [22050]: COREGRADE is stopping... -- 17:44:33.855 DEBUG [22050]: Closing database connection -- 17:44:33.855 SQL [22050]: pgsql_close() -- 17:44:33.994 INFO [22050]: COREGRADE is starting... -- 17:44:33.994 INFO [22050]: Version from config: 1.0 -- 17:44:33.994 DEBUG [22050]: Connecting to database... -- 17:44:33.994 DEBUG [22050]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:44:33.994 SQL [22050]: pgsql_db_connect() -- 17:44:33.998 DEBUG [22050]: Database connection successful -- 17:44:33.998 INFO [22050]: _SERVER found -- 17:44:33.998 INFO [22050]: REMOTE_ADDR = 192.168.1.13 -- 17:44:33.998 INFO [22050]: SERVER_NAME = oameye.works.coregrade.com -- 17:44:33.998 INFO [22050]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=pkguur709d50fdemol4qh3e358uuac8h -- 17:44:33.998 INFO [22050]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:44:33.998 INFO [22050]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:44:34.009 INFO [22050]: COREGRADE is stopping... -- 17:44:34.010 DEBUG [22050]: Closing database connection -- 17:44:34.010 SQL [22050]: pgsql_close() -- 17:44:34.119 INFO [22050]: COREGRADE is starting... -- 17:44:34.119 INFO [22050]: Version from config: 1.0 -- 17:44:34.119 DEBUG [22050]: Connecting to database... -- 17:44:34.119 DEBUG [22050]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:44:34.119 SQL [22050]: pgsql_db_connect() -- 17:44:34.123 DEBUG [22050]: Database connection successful -- 17:44:34.123 INFO [22050]: _SERVER found -- 17:44:34.123 INFO [22050]: REMOTE_ADDR = 192.168.1.13 -- 17:44:34.123 INFO [22050]: SERVER_NAME = oameye.works.coregrade.com -- 17:44:34.123 INFO [22050]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=pkguur709d50fdemol4qh3e358uuac8h -- 17:44:34.123 INFO [22050]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:44:34.123 INFO [22050]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:44:34.134 INFO [22050]: COREGRADE is stopping... -- 17:44:34.134 DEBUG [22050]: Closing database connection -- 17:44:34.134 SQL [22050]: pgsql_close() -- 17:44:36.849 INFO [22050]: COREGRADE is starting... -- 17:44:36.849 INFO [22050]: Version from config: 1.0 -- 17:44:36.849 DEBUG [22050]: Connecting to database... -- 17:44:36.849 DEBUG [22050]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:44:36.849 SQL [22050]: pgsql_db_connect() -- 17:44:36.853 DEBUG [22050]: Database connection successful -- 17:44:36.853 INFO [22050]: _SERVER found -- 17:44:36.853 INFO [22050]: REMOTE_ADDR = 192.168.1.13 -- 17:44:36.853 INFO [22050]: SERVER_NAME = oameye.works.coregrade.com -- 17:44:36.853 INFO [22050]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=pkguur709d50fdemol4qh3e358uuac8h -- 17:44:36.853 INFO [22050]: QUERY_STRING = /member/viewCardAddAction -- 17:44:36.853 INFO [22050]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:44:36.884 INFO [22050]: COREGRADE is stopping... -- 17:44:36.884 DEBUG [22050]: Closing database connection -- 17:44:36.884 SQL [22050]: pgsql_close() -- 17:48:11.078 INFO [22048]: COREGRADE is starting... -- 17:48:11.078 INFO [22048]: Version from config: 1.0 -- 17:48:11.078 DEBUG [22048]: Connecting to database... -- 17:48:11.078 DEBUG [22048]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:48:11.078 SQL [22048]: pgsql_db_connect() -- 17:48:11.083 INFO [22051]: COREGRADE is starting... -- 17:48:11.083 INFO [22051]: Version from config: 1.0 -- 17:48:11.083 DEBUG [22051]: Connecting to database... -- 17:48:11.083 DEBUG [22051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:48:11.083 SQL [22051]: pgsql_db_connect() -- 17:48:11.082 DEBUG [22048]: Database connection successful -- 17:48:11.082 INFO [22048]: _SERVER found -- 17:48:11.082 INFO [22048]: REMOTE_ADDR = 192.168.1.13 -- 17:48:11.082 INFO [22048]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:48:11.082 INFO [22048]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=bgp4v13uib8h5cdp9imjbc3264j10hmj -- 17:48:11.082 INFO [22048]: QUERY_STRING = /auth -- 17:48:11.082 INFO [22048]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:48:11.116 INFO [22048]: COREGRADE is stopping... -- 17:48:11.116 DEBUG [22048]: Closing database connection -- 17:48:11.116 SQL [22048]: pgsql_close() -- 17:48:11.087 DEBUG [22051]: Database connection successful -- 17:48:11.087 INFO [22051]: _SERVER found -- 17:48:11.087 INFO [22051]: REMOTE_ADDR = 192.168.1.13 -- 17:48:11.087 INFO [22051]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:48:11.087 INFO [22051]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=bgp4v13uib8h5cdp9imjbc3264j10hmj -- 17:48:11.087 INFO [22051]: QUERY_STRING = /welcome/viewLogin -- 17:48:11.087 INFO [22051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:48:11.121 INFO [22051]: COREGRADE is stopping... -- 17:48:11.121 DEBUG [22051]: Closing database connection -- 17:48:11.121 SQL [22051]: pgsql_close() -- 17:48:11.300 INFO [22051]: COREGRADE is starting... -- 17:48:11.301 INFO [22051]: Version from config: 1.0 -- 17:48:11.301 DEBUG [22051]: Connecting to database... -- 17:48:11.301 DEBUG [22051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:48:11.301 SQL [22051]: pgsql_db_connect() -- 17:48:11.305 DEBUG [22051]: Database connection successful -- 17:48:11.305 INFO [22051]: _SERVER found -- 17:48:11.305 INFO [22051]: REMOTE_ADDR = 192.168.1.13 -- 17:48:11.305 INFO [22051]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:48:11.305 INFO [22051]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=bgp4v13uib8h5cdp9imjbc3264j10hmj -- 17:48:11.305 INFO [22051]: QUERY_STRING = /auth/index -- 17:48:11.305 INFO [22051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:48:11.336 INFO [22051]: COREGRADE is stopping... -- 17:48:11.336 DEBUG [22051]: Closing database connection -- 17:48:11.336 SQL [22051]: pgsql_close() -- 17:48:11.493 INFO [22051]: COREGRADE is starting... -- 17:48:11.493 INFO [22051]: Version from config: 1.0 -- 17:48:11.493 DEBUG [22051]: Connecting to database... -- 17:48:11.493 DEBUG [22051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:48:11.493 SQL [22051]: pgsql_db_connect() -- 17:48:11.497 DEBUG [22051]: Database connection successful -- 17:48:11.497 INFO [22051]: _SERVER found -- 17:48:11.497 INFO [22051]: REMOTE_ADDR = 192.168.1.13 -- 17:48:11.497 INFO [22051]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:48:11.497 INFO [22051]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=bgp4v13uib8h5cdp9imjbc3264j10hmj -- 17:48:11.497 INFO [22051]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:48:11.497 INFO [22051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:48:11.508 INFO [22051]: COREGRADE is stopping... -- 17:48:11.508 DEBUG [22051]: Closing database connection -- 17:48:11.508 SQL [22051]: pgsql_close() -- 17:48:11.515 INFO [22052]: COREGRADE is starting... -- 17:48:11.515 INFO [22052]: Version from config: 1.0 -- 17:48:11.515 DEBUG [22052]: Connecting to database... -- 17:48:11.515 DEBUG [22052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:48:11.515 SQL [22052]: pgsql_db_connect() -- 17:48:11.519 DEBUG [22052]: Database connection successful -- 17:48:11.519 INFO [22052]: _SERVER found -- 17:48:11.519 INFO [22052]: REMOTE_ADDR = 192.168.1.13 -- 17:48:11.519 INFO [22052]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:48:11.519 INFO [22052]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=bgp4v13uib8h5cdp9imjbc3264j10hmj -- 17:48:11.519 INFO [22052]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:48:11.519 INFO [22052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:48:11.532 INFO [22052]: COREGRADE is stopping... -- 17:48:11.532 DEBUG [22052]: Closing database connection -- 17:48:11.532 SQL [22052]: pgsql_close() -- 17:48:12.728 INFO [22052]: COREGRADE is starting... -- 17:48:12.728 INFO [22052]: Version from config: 1.0 -- 17:48:12.728 DEBUG [22052]: Connecting to database... -- 17:48:12.728 DEBUG [22052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:48:12.728 SQL [22052]: pgsql_db_connect() -- 17:48:12.732 DEBUG [22052]: Database connection successful -- 17:48:12.732 INFO [22052]: _SERVER found -- 17:48:12.732 INFO [22052]: REMOTE_ADDR = 192.168.1.13 -- 17:48:12.732 INFO [22052]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:48:12.732 INFO [22052]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=bgp4v13uib8h5cdp9imjbc3264j10hmj -- 17:48:12.732 INFO [22052]: QUERY_STRING = /auth -- 17:48:12.732 INFO [22052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:48:12.819 INFO [22051]: COREGRADE is starting... -- 17:48:12.819 INFO [22051]: Version from config: 1.0 -- 17:48:12.819 DEBUG [22051]: Connecting to database... -- 17:48:12.819 DEBUG [22051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:48:12.819 SQL [22051]: pgsql_db_connect() -- 17:48:12.823 DEBUG [22051]: Database connection successful -- 17:48:12.823 INFO [22051]: _SERVER found -- 17:48:12.823 INFO [22051]: REMOTE_ADDR = 192.168.1.13 -- 17:48:12.823 INFO [22051]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:48:12.823 INFO [22051]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2dcfd30fa8jot4vf1gf5h8c1dfbgi60b -- 17:48:12.823 INFO [22051]: QUERY_STRING = /member/index -- 17:48:12.823 INFO [22051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:48:12.860 INFO [22051]: COREGRADE is stopping... -- 17:48:12.860 DEBUG [22051]: Closing database connection -- 17:48:12.860 SQL [22051]: pgsql_close() -- 17:48:13.225 INFO [22051]: COREGRADE is starting... -- 17:48:13.225 INFO [22051]: Version from config: 1.0 -- 17:48:13.225 DEBUG [22051]: Connecting to database... -- 17:48:13.225 DEBUG [22051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:48:13.225 SQL [22051]: pgsql_db_connect() -- 17:48:13.230 DEBUG [22051]: Database connection successful -- 17:48:13.230 INFO [22051]: _SERVER found -- 17:48:13.230 INFO [22051]: REMOTE_ADDR = 192.168.1.13 -- 17:48:13.230 INFO [22051]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:48:13.230 INFO [22051]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2dcfd30fa8jot4vf1gf5h8c1dfbgi60b -- 17:48:13.230 INFO [22051]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:48:13.230 INFO [22051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:48:13.241 INFO [22051]: COREGRADE is stopping... -- 17:48:13.241 DEBUG [22051]: Closing database connection -- 17:48:13.241 SQL [22051]: pgsql_close() -- 17:48:13.255 INFO [22052]: COREGRADE is starting... -- 17:48:13.255 INFO [22052]: Version from config: 1.0 -- 17:48:13.255 DEBUG [22052]: Connecting to database... -- 17:48:13.255 DEBUG [22052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:48:13.255 SQL [22052]: pgsql_db_connect() -- 17:48:13.259 DEBUG [22052]: Database connection successful -- 17:48:13.259 INFO [22052]: _SERVER found -- 17:48:13.259 INFO [22052]: REMOTE_ADDR = 192.168.1.13 -- 17:48:13.259 INFO [22052]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:48:13.259 INFO [22052]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2dcfd30fa8jot4vf1gf5h8c1dfbgi60b -- 17:48:13.259 INFO [22052]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:48:13.259 INFO [22052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:48:13.270 INFO [22052]: COREGRADE is stopping... -- 17:48:13.270 DEBUG [22052]: Closing database connection -- 17:48:13.270 SQL [22052]: pgsql_close() -- 18:12:01.278 INFO [22101]: COREGRADE is starting... -- 18:12:01.278 INFO [22101]: Version from config: 1.0 -- 18:12:01.278 DEBUG [22101]: Connecting to database... -- 18:12:01.278 DEBUG [22101]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:12:01.278 SQL [22101]: pgsql_db_connect() -- 18:12:01.283 DEBUG [22101]: Database connection successful -- 18:12:01.283 INFO [22101]: _SERVER found -- 18:12:01.283 INFO [22101]: REMOTE_ADDR = 192.168.1.13 -- 18:12:01.283 INFO [22101]: SERVER_NAME = oameye.works.coregrade.com -- 18:12:01.283 INFO [22101]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=pkguur709d50fdemol4qh3e358uuac8h -- 18:12:01.283 INFO [22101]: QUERY_STRING = /member/viewCardAddAction -- 18:12:01.283 INFO [22101]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:12:01.317 INFO [22101]: COREGRADE is stopping... -- 18:12:01.317 DEBUG [22101]: Closing database connection -- 18:12:01.317 SQL [22101]: pgsql_close() -- 18:12:43.455 INFO [22049]: COREGRADE is starting... -- 18:12:43.456 INFO [22049]: Version from config: 1.0 -- 18:12:43.456 DEBUG [22049]: Connecting to database... -- 18:12:43.456 DEBUG [22049]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:12:43.456 SQL [22049]: pgsql_db_connect() -- 18:12:43.460 DEBUG [22049]: Database connection successful -- 18:12:43.460 INFO [22049]: _SERVER found -- 18:12:43.460 INFO [22049]: REMOTE_ADDR = 192.168.1.13 -- 18:12:43.460 INFO [22049]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:12:43.460 INFO [22049]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2dcfd30fa8jot4vf1gf5h8c1dfbgi60b -- 18:12:43.460 INFO [22049]: QUERY_STRING = /auth -- 18:12:43.460 INFO [22049]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:12:43.496 INFO [22049]: COREGRADE is stopping... -- 18:12:43.496 DEBUG [22049]: Closing database connection -- 18:12:43.496 SQL [22049]: pgsql_close() -- 18:12:43.749 INFO [22049]: COREGRADE is starting... -- 18:12:43.750 INFO [22049]: Version from config: 1.0 -- 18:12:43.750 DEBUG [22049]: Connecting to database... -- 18:12:43.750 DEBUG [22049]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:12:43.750 SQL [22049]: pgsql_db_connect() -- 18:12:43.754 DEBUG [22049]: Database connection successful -- 18:12:43.754 INFO [22049]: _SERVER found -- 18:12:43.754 INFO [22049]: REMOTE_ADDR = 192.168.1.13 -- 18:12:43.754 INFO [22049]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:12:43.754 INFO [22049]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=fr4n8suf1c7ootdcufhdrouavus2qhsi -- 18:12:43.754 INFO [22049]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:12:43.754 INFO [22049]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:12:43.765 INFO [22049]: COREGRADE is stopping... -- 18:12:43.765 DEBUG [22049]: Closing database connection -- 18:12:43.765 SQL [22049]: pgsql_close() -- 18:12:54.297 INFO [22106]: COREGRADE is starting... -- 18:12:54.297 INFO [22106]: Version from config: 1.0 -- 18:12:54.297 DEBUG [22106]: Connecting to database... -- 18:12:54.297 DEBUG [22106]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:12:54.297 SQL [22106]: pgsql_db_connect() -- 18:12:54.309 INFO [22050]: COREGRADE is starting... -- 18:12:54.309 INFO [22050]: Version from config: 1.0 -- 18:12:54.309 DEBUG [22050]: Connecting to database... -- 18:12:54.309 DEBUG [22050]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:12:54.309 SQL [22050]: pgsql_db_connect() -- 18:12:54.302 DEBUG [22106]: Database connection successful -- 18:12:54.302 INFO [22106]: _SERVER found -- 18:12:54.302 INFO [22106]: REMOTE_ADDR = 192.168.1.13 -- 18:12:54.302 INFO [22106]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:12:54.302 INFO [22106]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=fr4n8suf1c7ootdcufhdrouavus2qhsi -- 18:12:54.302 INFO [22106]: QUERY_STRING = /auth -- 18:12:54.302 INFO [22106]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:12:54.335 INFO [22106]: COREGRADE is stopping... -- 18:12:54.335 DEBUG [22106]: Closing database connection -- 18:12:54.335 SQL [22106]: pgsql_close() -- 18:12:54.313 DEBUG [22050]: Database connection successful -- 18:12:54.313 INFO [22050]: _SERVER found -- 18:12:54.313 INFO [22050]: REMOTE_ADDR = 192.168.1.13 -- 18:12:54.313 INFO [22050]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:12:54.313 INFO [22050]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=fr4n8suf1c7ootdcufhdrouavus2qhsi -- 18:12:54.313 INFO [22050]: QUERY_STRING = /welcome/viewLogin -- 18:12:54.313 INFO [22050]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:12:54.344 INFO [22050]: COREGRADE is stopping... -- 18:12:54.344 DEBUG [22050]: Closing database connection -- 18:12:54.344 SQL [22050]: pgsql_close() -- 18:12:54.481 INFO [22050]: COREGRADE is starting... -- 18:12:54.481 INFO [22050]: Version from config: 1.0 -- 18:12:54.481 DEBUG [22050]: Connecting to database... -- 18:12:54.481 DEBUG [22050]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:12:54.481 SQL [22050]: pgsql_db_connect() -- 18:12:54.485 DEBUG [22050]: Database connection successful -- 18:12:54.485 INFO [22050]: _SERVER found -- 18:12:54.485 INFO [22050]: REMOTE_ADDR = 192.168.1.13 -- 18:12:54.485 INFO [22050]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:12:54.485 INFO [22050]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=fr4n8suf1c7ootdcufhdrouavus2qhsi -- 18:12:54.485 INFO [22050]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:12:54.485 INFO [22050]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:12:54.496 INFO [22050]: COREGRADE is stopping... -- 18:12:54.496 DEBUG [22050]: Closing database connection -- 18:12:54.496 SQL [22050]: pgsql_close() -- 18:12:54.560 INFO [22050]: COREGRADE is starting... -- 18:12:54.561 INFO [22050]: Version from config: 1.0 -- 18:12:54.561 DEBUG [22050]: Connecting to database... -- 18:12:54.561 DEBUG [22050]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:12:54.561 SQL [22050]: pgsql_db_connect() -- 18:12:54.565 DEBUG [22050]: Database connection successful -- 18:12:54.565 INFO [22050]: _SERVER found -- 18:12:54.565 INFO [22050]: REMOTE_ADDR = 192.168.1.13 -- 18:12:54.565 INFO [22050]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:12:54.565 INFO [22050]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=fr4n8suf1c7ootdcufhdrouavus2qhsi -- 18:12:54.565 INFO [22050]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:12:54.565 INFO [22050]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:12:54.576 INFO [22050]: COREGRADE is stopping... -- 18:12:54.576 DEBUG [22050]: Closing database connection -- 18:12:54.576 SQL [22050]: pgsql_close() -- 18:12:56.147 INFO [22050]: COREGRADE is starting... -- 18:12:56.147 INFO [22050]: Version from config: 1.0 -- 18:12:56.147 DEBUG [22050]: Connecting to database... -- 18:12:56.147 DEBUG [22050]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:12:56.147 SQL [22050]: pgsql_db_connect() -- 18:12:56.151 DEBUG [22050]: Database connection successful -- 18:12:56.151 INFO [22050]: _SERVER found -- 18:12:56.151 INFO [22050]: REMOTE_ADDR = 192.168.1.13 -- 18:12:56.151 INFO [22050]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:12:56.151 INFO [22050]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=fr4n8suf1c7ootdcufhdrouavus2qhsi -- 18:12:56.151 INFO [22050]: QUERY_STRING = /auth -- 18:12:56.151 INFO [22050]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:12:56.358 INFO [22050]: COREGRADE is starting... -- 18:12:56.359 INFO [22050]: Version from config: 1.0 -- 18:12:56.359 DEBUG [22050]: Connecting to database... -- 18:12:56.359 DEBUG [22050]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:12:56.359 SQL [22050]: pgsql_db_connect() -- 18:12:56.363 DEBUG [22050]: Database connection successful -- 18:12:56.363 INFO [22050]: _SERVER found -- 18:12:56.363 INFO [22050]: REMOTE_ADDR = 192.168.1.13 -- 18:12:56.363 INFO [22050]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:12:56.363 INFO [22050]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=fr4n8suf1c7ootdcufhdrouavus2qhsi -- 18:12:56.363 INFO [22050]: QUERY_STRING = /member/index -- 18:12:56.363 INFO [22050]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:12:56.399 INFO [22050]: COREGRADE is stopping... -- 18:12:56.399 DEBUG [22050]: Closing database connection -- 18:12:56.399 SQL [22050]: pgsql_close() -- 18:12:56.582 INFO [22050]: COREGRADE is starting... -- 18:12:56.582 INFO [22050]: Version from config: 1.0 -- 18:12:56.582 DEBUG [22050]: Connecting to database... -- 18:12:56.582 DEBUG [22050]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:12:56.582 SQL [22050]: pgsql_db_connect() -- 18:12:56.586 DEBUG [22050]: Database connection successful -- 18:12:56.586 INFO [22050]: _SERVER found -- 18:12:56.586 INFO [22050]: REMOTE_ADDR = 192.168.1.13 -- 18:12:56.586 INFO [22050]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:12:56.586 INFO [22050]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=fr4n8suf1c7ootdcufhdrouavus2qhsi -- 18:12:56.586 INFO [22050]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:12:56.586 INFO [22050]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:12:56.597 INFO [22050]: COREGRADE is stopping... -- 18:12:56.597 DEBUG [22050]: Closing database connection -- 18:12:56.597 SQL [22050]: pgsql_close() -- 18:12:56.600 INFO [22106]: COREGRADE is starting... -- 18:12:56.601 INFO [22106]: Version from config: 1.0 -- 18:12:56.601 DEBUG [22106]: Connecting to database... -- 18:12:56.601 DEBUG [22106]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:12:56.601 SQL [22106]: pgsql_db_connect() -- 18:12:56.604 DEBUG [22106]: Database connection successful -- 18:12:56.604 INFO [22106]: _SERVER found -- 18:12:56.604 INFO [22106]: REMOTE_ADDR = 192.168.1.13 -- 18:12:56.604 INFO [22106]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:12:56.604 INFO [22106]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=fr4n8suf1c7ootdcufhdrouavus2qhsi -- 18:12:56.604 INFO [22106]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:12:56.604 INFO [22106]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:12:56.615 INFO [22106]: COREGRADE is stopping... -- 18:12:56.615 DEBUG [22106]: Closing database connection -- 18:12:56.615 SQL [22106]: pgsql_close() -- 18:18:01.778 INFO [22203]: COREGRADE is starting... -- 18:18:01.778 INFO [22203]: Version from config: 1.0 -- 18:18:01.778 DEBUG [22203]: Connecting to database... -- 18:18:01.778 DEBUG [22203]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:18:01.778 SQL [22203]: pgsql_db_connect() -- 18:18:01.783 DEBUG [22203]: Database connection successful -- 18:18:01.783 INFO [22203]: _SERVER found -- 18:18:01.783 INFO [22203]: REMOTE_ADDR = 192.168.1.13 -- 18:18:01.783 INFO [22203]: SERVER_NAME = oameye.works.coregrade.com -- 18:18:01.783 INFO [22203]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=pkguur709d50fdemol4qh3e358uuac8h -- 18:18:01.783 INFO [22203]: QUERY_STRING = /member/page -- 18:18:01.783 INFO [22203]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:18:01.830 INFO [22203]: COREGRADE is stopping... -- 18:18:01.830 DEBUG [22203]: Closing database connection -- 18:18:01.830 SQL [22203]: pgsql_close() -- 18:19:09.808 INFO [22048]: COREGRADE is starting... -- 18:19:09.808 INFO [22048]: Version from config: 1.0 -- 18:19:09.808 DEBUG [22048]: Connecting to database... -- 18:19:09.808 DEBUG [22048]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:19:09.808 SQL [22048]: pgsql_db_connect() -- 18:19:09.813 DEBUG [22048]: Database connection successful -- 18:19:09.813 INFO [22048]: _SERVER found -- 18:19:09.813 INFO [22048]: REMOTE_ADDR = 192.168.1.13 -- 18:19:09.813 INFO [22048]: SERVER_NAME = oameye.works.coregrade.com -- 18:19:09.813 INFO [22048]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=cpqqreq00t76ddp99q5d7aleusksdh95 -- 18:19:09.813 INFO [22048]: QUERY_STRING = /member -- 18:19:09.813 INFO [22048]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:19:09.849 INFO [22048]: COREGRADE is stopping... -- 18:19:09.850 DEBUG [22048]: Closing database connection -- 18:19:09.850 SQL [22048]: pgsql_close() -- 18:19:10.061 INFO [22048]: COREGRADE is starting... -- 18:19:10.061 INFO [22048]: Version from config: 1.0 -- 18:19:10.061 DEBUG [22048]: Connecting to database... -- 18:19:10.061 DEBUG [22048]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:19:10.061 SQL [22048]: pgsql_db_connect() -- 18:19:10.065 DEBUG [22048]: Database connection successful -- 18:19:10.065 INFO [22048]: _SERVER found -- 18:19:10.065 INFO [22048]: REMOTE_ADDR = 192.168.1.13 -- 18:19:10.065 INFO [22048]: SERVER_NAME = oameye.works.coregrade.com -- 18:19:10.065 INFO [22048]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=cpqqreq00t76ddp99q5d7aleusksdh95 -- 18:19:10.065 INFO [22048]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:19:10.065 INFO [22048]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:19:10.076 INFO [22048]: COREGRADE is stopping... -- 18:19:10.076 DEBUG [22048]: Closing database connection -- 18:19:10.076 SQL [22048]: pgsql_close() -- 18:19:10.103 INFO [22048]: COREGRADE is starting... -- 18:19:10.104 INFO [22048]: Version from config: 1.0 -- 18:19:10.104 DEBUG [22048]: Connecting to database... -- 18:19:10.104 DEBUG [22048]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:19:10.104 SQL [22048]: pgsql_db_connect() -- 18:19:10.108 DEBUG [22048]: Database connection successful -- 18:19:10.108 INFO [22048]: _SERVER found -- 18:19:10.108 INFO [22048]: REMOTE_ADDR = 192.168.1.13 -- 18:19:10.108 INFO [22048]: SERVER_NAME = oameye.works.coregrade.com -- 18:19:10.108 INFO [22048]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=cpqqreq00t76ddp99q5d7aleusksdh95 -- 18:19:10.108 INFO [22048]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:19:10.108 INFO [22048]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:19:10.119 INFO [22048]: COREGRADE is stopping... -- 18:19:10.119 DEBUG [22048]: Closing database connection -- 18:19:10.119 SQL [22048]: pgsql_close() -- 18:19:11.055 INFO [22048]: COREGRADE is starting... -- 18:19:11.055 INFO [22048]: Version from config: 1.0 -- 18:19:11.055 DEBUG [22048]: Connecting to database... -- 18:19:11.055 DEBUG [22048]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:19:11.055 SQL [22048]: pgsql_db_connect() -- 18:19:11.061 DEBUG [22048]: Database connection successful -- 18:19:11.061 INFO [22048]: _SERVER found -- 18:19:11.061 INFO [22048]: REMOTE_ADDR = 192.168.1.13 -- 18:19:11.061 INFO [22048]: SERVER_NAME = oameye.works.coregrade.com -- 18:19:11.061 INFO [22048]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=cpqqreq00t76ddp99q5d7aleusksdh95 -- 18:19:11.061 INFO [22048]: QUERY_STRING = /member/page -- 18:19:11.061 INFO [22048]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:19:11.098 INFO [22048]: COREGRADE is stopping... -- 18:19:11.098 DEBUG [22048]: Closing database connection -- 18:19:11.098 SQL [22048]: pgsql_close() -- 18:19:11.217 INFO [22048]: COREGRADE is starting... -- 18:19:11.218 INFO [22048]: Version from config: 1.0 -- 18:19:11.218 DEBUG [22048]: Connecting to database... -- 18:19:11.218 DEBUG [22048]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:19:11.218 SQL [22048]: pgsql_db_connect() -- 18:19:11.222 DEBUG [22048]: Database connection successful -- 18:19:11.222 INFO [22048]: _SERVER found -- 18:19:11.222 INFO [22048]: REMOTE_ADDR = 192.168.1.13 -- 18:19:11.222 INFO [22048]: SERVER_NAME = oameye.works.coregrade.com -- 18:19:11.222 INFO [22048]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=cpqqreq00t76ddp99q5d7aleusksdh95 -- 18:19:11.222 INFO [22048]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:19:11.222 INFO [22048]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:19:11.233 INFO [22048]: COREGRADE is stopping... -- 18:19:11.233 DEBUG [22048]: Closing database connection -- 18:19:11.233 SQL [22048]: pgsql_close() -- 18:19:11.311 INFO [22048]: COREGRADE is starting... -- 18:19:11.311 INFO [22048]: Version from config: 1.0 -- 18:19:11.311 DEBUG [22048]: Connecting to database... -- 18:19:11.311 DEBUG [22048]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:19:11.311 SQL [22048]: pgsql_db_connect() -- 18:19:11.315 DEBUG [22048]: Database connection successful -- 18:19:11.315 INFO [22048]: _SERVER found -- 18:19:11.315 INFO [22048]: REMOTE_ADDR = 192.168.1.13 -- 18:19:11.315 INFO [22048]: SERVER_NAME = oameye.works.coregrade.com -- 18:19:11.315 INFO [22048]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=cpqqreq00t76ddp99q5d7aleusksdh95 -- 18:19:11.315 INFO [22048]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:19:11.315 INFO [22048]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:19:11.326 INFO [22048]: COREGRADE is stopping... -- 18:19:11.326 DEBUG [22048]: Closing database connection -- 18:19:11.326 SQL [22048]: pgsql_close() -- 18:19:15.512 INFO [22048]: COREGRADE is starting... -- 18:19:15.513 INFO [22048]: Version from config: 1.0 -- 18:19:15.513 DEBUG [22048]: Connecting to database... -- 18:19:15.513 DEBUG [22048]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:19:15.513 SQL [22048]: pgsql_db_connect() -- 18:19:15.517 DEBUG [22048]: Database connection successful -- 18:19:15.517 INFO [22048]: _SERVER found -- 18:19:15.517 INFO [22048]: REMOTE_ADDR = 192.168.1.13 -- 18:19:15.517 INFO [22048]: SERVER_NAME = oameye.works.coregrade.com -- 18:19:15.517 INFO [22048]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=cpqqreq00t76ddp99q5d7aleusksdh95 -- 18:19:15.517 INFO [22048]: QUERY_STRING = /member/viewCardAddAction -- 18:19:15.517 INFO [22048]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:19:15.548 INFO [22048]: COREGRADE is stopping... -- 18:19:15.548 DEBUG [22048]: Closing database connection -- 18:19:15.548 SQL [22048]: pgsql_close() -- 18:19:24.488 INFO [22051]: COREGRADE is starting... -- 18:19:24.488 INFO [22051]: Version from config: 1.0 -- 18:19:24.488 DEBUG [22051]: Connecting to database... -- 18:19:24.488 DEBUG [22051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:19:24.488 SQL [22051]: pgsql_db_connect() -- 18:19:24.525 INFO [22051]: COREGRADE is starting... -- 18:19:24.525 INFO [22051]: Version from config: 1.0 -- 18:19:24.525 DEBUG [22051]: Connecting to database... -- 18:19:24.525 DEBUG [22051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:19:24.525 SQL [22051]: pgsql_db_connect() -- 18:19:24.529 DEBUG [22051]: Database connection successful -- 18:19:24.529 INFO [22051]: _SERVER found -- 18:19:24.529 INFO [22051]: REMOTE_ADDR = 192.168.1.13 -- 18:19:24.529 INFO [22051]: SERVER_NAME = oameye.works.coregrade.com -- 18:19:24.529 INFO [22051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=cpqqreq00t76ddp99q5d7aleusksdh95 -- 18:19:24.529 INFO [22051]: QUERY_STRING = -- 18:19:24.529 INFO [22051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:19:24.529 INFO [22051]: SystemStatus()09-09-********~************ -- 18:19:24.529 INFO [22051]: long coregrade_api_main(CVars in, CVars &out) -- 18:19:24.529 INFO [22051]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 18:19:24.529 INFO [22051]: account calls -- 18:19:24.529 INFO [22051]: account_calls() -- 18:19:24.529 INFO [22051]: AddPageCard() -- 18:19:24.529 FLOG_MAX [22051]: REQ_STRING(title) -- 18:19:24.529 FLOG_MAX [22051]: REQ_STRING(item_type) -- 18:19:24.529 FLOG_MAX [22051]: REQ_STRING(sessionid) -- 18:19:24.529 FLOG_MAX [22051]: REQ_STRING(detail) -- 18:19:24.529 FLOG_MAX [22051]: Bad parameter exception: 'page_id' -- 18:19:24.529 INFO [22051]: /AddPageCard() -- 18:19:24.529 INFO [22051]: RET: result=YES I GET TO BACK END -- 18:19:24.529 INFO [22051]: RET: status=Invalid session ID -- 18:19:24.530 INFO [22051]: COREGRADE is stopping... -- 18:19:24.530 DEBUG [22051]: Closing database connection -- 18:19:24.530 SQL [22051]: pgsql_close() -- 18:19:24.492 DEBUG [22051]: Database connection successful -- 18:19:24.492 INFO [22051]: _SERVER found -- 18:19:24.492 INFO [22051]: REMOTE_ADDR = 192.168.1.13 -- 18:19:24.492 INFO [22051]: SERVER_NAME = oameye.works.coregrade.com -- 18:19:24.492 INFO [22051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=cpqqreq00t76ddp99q5d7aleusksdh95 -- 18:19:24.492 INFO [22051]: QUERY_STRING = /member/addNotecard -- 18:19:24.492 INFO [22051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:19:24.530 INFO [22051]: COREGRADE is stopping... -- 18:19:24.530 DEBUG [22051]: Closing database connection -- 18:19:24.530 SQL [22051]: pgsql_close() -- 18:20:21.282 INFO [22052]: COREGRADE is starting... -- 18:20:21.282 INFO [22052]: Version from config: 1.0 -- 18:20:21.282 DEBUG [22052]: Connecting to database... -- 18:20:21.282 DEBUG [22052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:20:21.282 SQL [22052]: pgsql_db_connect() -- 18:20:21.286 DEBUG [22052]: Database connection successful -- 18:20:21.286 INFO [22052]: _SERVER found -- 18:20:21.286 INFO [22052]: REMOTE_ADDR = 192.168.1.13 -- 18:20:21.286 INFO [22052]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:20:21.286 INFO [22052]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=fr4n8suf1c7ootdcufhdrouavus2qhsi -- 18:20:21.286 INFO [22052]: QUERY_STRING = /auth/logout -- 18:20:21.286 INFO [22052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:20:21.319 INFO [22052]: COREGRADE is stopping... -- 18:20:21.319 DEBUG [22052]: Closing database connection -- 18:20:21.319 SQL [22052]: pgsql_close() -- 18:20:21.390 INFO [22101]: COREGRADE is starting... -- 18:20:21.390 INFO [22101]: Version from config: 1.0 -- 18:20:21.390 DEBUG [22101]: Connecting to database... -- 18:20:21.390 DEBUG [22101]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:20:21.391 SQL [22101]: pgsql_db_connect() -- 18:20:21.426 INFO [22101]: COREGRADE is starting... -- 18:20:21.426 INFO [22101]: Version from config: 1.0 -- 18:20:21.426 DEBUG [22101]: Connecting to database... -- 18:20:21.426 DEBUG [22101]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:20:21.426 SQL [22101]: pgsql_db_connect() -- 18:20:21.430 DEBUG [22101]: Database connection successful -- 18:20:21.430 INFO [22101]: _SERVER found -- 18:20:21.430 INFO [22101]: REMOTE_ADDR = 192.168.1.13 -- 18:20:21.430 INFO [22101]: SERVER_NAME = oameye.works.coregrade.com -- 18:20:21.430 INFO [22101]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=cpqqreq00t76ddp99q5d7aleusksdh95 -- 18:20:21.430 INFO [22101]: QUERY_STRING = -- 18:20:21.430 INFO [22101]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:20:21.430 INFO [22101]: SystemStatus()09-09-********~************ -- 18:20:21.430 INFO [22101]: long coregrade_api_main(CVars in, CVars &out) -- 18:20:21.430 INFO [22101]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 18:20:21.430 INFO [22101]: account calls -- 18:20:21.430 INFO [22101]: account_calls() -- 18:20:21.430 INFO [22101]: AddPageCard() -- 18:20:21.430 FLOG_MAX [22101]: REQ_STRING(title) -- 18:20:21.430 FLOG_MAX [22101]: REQ_STRING(item_type) -- 18:20:21.430 FLOG_MAX [22101]: REQ_STRING(sessionid) -- 18:20:21.430 FLOG_MAX [22101]: REQ_STRING(detail) -- 18:20:21.430 FLOG_MAX [22101]: Bad parameter exception: 'page_id' -- 18:20:21.430 INFO [22101]: /AddPageCard() -- 18:20:21.430 INFO [22101]: RET: result=YES I GET TO BACK END -- 18:20:21.430 INFO [22101]: RET: status=Invalid session ID -- 18:20:21.431 INFO [22101]: COREGRADE is stopping... -- 18:20:21.431 DEBUG [22101]: Closing database connection -- 18:20:21.431 SQL [22101]: pgsql_close() -- 18:20:21.394 DEBUG [22101]: Database connection successful -- 18:20:21.394 INFO [22101]: _SERVER found -- 18:20:21.394 INFO [22101]: REMOTE_ADDR = 192.168.1.13 -- 18:20:21.394 INFO [22101]: SERVER_NAME = oameye.works.coregrade.com -- 18:20:21.394 INFO [22101]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=cpqqreq00t76ddp99q5d7aleusksdh95 -- 18:20:21.394 INFO [22101]: QUERY_STRING = /member/addNotecard -- 18:20:21.394 INFO [22101]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:20:21.431 INFO [22101]: COREGRADE is stopping... -- 18:20:21.431 DEBUG [22101]: Closing database connection -- 18:20:21.431 SQL [22101]: pgsql_close() -- 18:20:21.551 INFO [22052]: COREGRADE is starting... -- 18:20:21.552 INFO [22052]: Version from config: 1.0 -- 18:20:21.552 DEBUG [22052]: Connecting to database... -- 18:20:21.552 DEBUG [22052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:20:21.552 SQL [22052]: pgsql_db_connect() -- 18:20:21.556 DEBUG [22052]: Database connection successful -- 18:20:21.556 INFO [22052]: _SERVER found -- 18:20:21.556 INFO [22052]: REMOTE_ADDR = 192.168.1.13 -- 18:20:21.556 INFO [22052]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:20:21.556 INFO [22052]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=36ecih36lhl4b2uqagds277re6bc634f -- 18:20:21.556 INFO [22052]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:20:21.556 INFO [22052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:20:21.567 INFO [22052]: COREGRADE is stopping... -- 18:20:21.567 DEBUG [22052]: Closing database connection -- 18:20:21.567 SQL [22052]: pgsql_close() -- 18:20:21.568 INFO [22049]: COREGRADE is starting... -- 18:20:21.568 INFO [22049]: Version from config: 1.0 -- 18:20:21.568 DEBUG [22049]: Connecting to database... -- 18:20:21.568 DEBUG [22049]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:20:21.568 SQL [22049]: pgsql_db_connect() -- 18:20:21.572 DEBUG [22049]: Database connection successful -- 18:20:21.572 INFO [22049]: _SERVER found -- 18:20:21.572 INFO [22049]: REMOTE_ADDR = 192.168.1.13 -- 18:20:21.572 INFO [22049]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:20:21.572 INFO [22049]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=36ecih36lhl4b2uqagds277re6bc634f -- 18:20:21.572 INFO [22049]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:20:21.572 INFO [22049]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:20:21.584 INFO [22049]: COREGRADE is stopping... -- 18:20:21.584 DEBUG [22049]: Closing database connection -- 18:20:21.584 SQL [22049]: pgsql_close() -- 18:20:22.921 INFO [22049]: COREGRADE is starting... -- 18:20:22.921 INFO [22049]: Version from config: 1.0 -- 18:20:22.921 DEBUG [22049]: Connecting to database... -- 18:20:22.921 DEBUG [22049]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:20:22.921 SQL [22049]: pgsql_db_connect() -- 18:20:22.925 DEBUG [22049]: Database connection successful -- 18:20:22.925 INFO [22049]: _SERVER found -- 18:20:22.925 INFO [22049]: REMOTE_ADDR = 192.168.1.13 -- 18:20:22.925 INFO [22049]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:20:22.925 INFO [22049]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=36ecih36lhl4b2uqagds277re6bc634f -- 18:20:22.925 INFO [22049]: QUERY_STRING = /auth -- 18:20:22.925 INFO [22049]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:20:23.123 INFO [22049]: COREGRADE is starting... -- 18:20:23.124 INFO [22049]: Version from config: 1.0 -- 18:20:23.124 DEBUG [22049]: Connecting to database... -- 18:20:23.124 DEBUG [22049]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:20:23.124 SQL [22049]: pgsql_db_connect() -- 18:20:23.128 DEBUG [22049]: Database connection successful -- 18:20:23.128 INFO [22049]: _SERVER found -- 18:20:23.128 INFO [22049]: REMOTE_ADDR = 192.168.1.13 -- 18:20:23.128 INFO [22049]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:20:23.128 INFO [22049]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=36ecih36lhl4b2uqagds277re6bc634f -- 18:20:23.128 INFO [22049]: QUERY_STRING = /member/index -- 18:20:23.128 INFO [22049]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:20:23.167 INFO [22049]: COREGRADE is stopping... -- 18:20:23.167 DEBUG [22049]: Closing database connection -- 18:20:23.167 SQL [22049]: pgsql_close() -- 18:20:23.363 INFO [22049]: COREGRADE is starting... -- 18:20:23.364 INFO [22049]: Version from config: 1.0 -- 18:20:23.364 DEBUG [22049]: Connecting to database... -- 18:20:23.364 DEBUG [22049]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:20:23.364 SQL [22049]: pgsql_db_connect() -- 18:20:23.368 DEBUG [22049]: Database connection successful -- 18:20:23.368 INFO [22049]: _SERVER found -- 18:20:23.368 INFO [22049]: REMOTE_ADDR = 192.168.1.13 -- 18:20:23.368 INFO [22049]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:20:23.368 INFO [22049]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=36ecih36lhl4b2uqagds277re6bc634f -- 18:20:23.368 INFO [22049]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:20:23.368 INFO [22049]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:20:23.379 INFO [22049]: COREGRADE is stopping... -- 18:20:23.379 DEBUG [22049]: Closing database connection -- 18:20:23.379 SQL [22049]: pgsql_close() -- 18:20:23.448 INFO [22049]: COREGRADE is starting... -- 18:20:23.448 INFO [22049]: Version from config: 1.0 -- 18:20:23.448 DEBUG [22049]: Connecting to database... -- 18:20:23.448 DEBUG [22049]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:20:23.448 SQL [22049]: pgsql_db_connect() -- 18:20:23.453 DEBUG [22049]: Database connection successful -- 18:20:23.453 INFO [22049]: _SERVER found -- 18:20:23.453 INFO [22049]: REMOTE_ADDR = 192.168.1.13 -- 18:20:23.453 INFO [22049]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:20:23.453 INFO [22049]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=36ecih36lhl4b2uqagds277re6bc634f -- 18:20:23.453 INFO [22049]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:20:23.453 INFO [22049]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:20:23.464 INFO [22049]: COREGRADE is stopping... -- 18:20:23.464 DEBUG [22049]: Closing database connection -- 18:20:23.464 SQL [22049]: pgsql_close() -- 18:20:40.841 INFO [22050]: COREGRADE is starting... -- 18:20:40.841 INFO [22050]: Version from config: 1.0 -- 18:20:40.841 DEBUG [22050]: Connecting to database... -- 18:20:40.841 DEBUG [22050]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:20:40.841 SQL [22050]: pgsql_db_connect() -- 18:20:40.876 INFO [22050]: COREGRADE is starting... -- 18:20:40.877 INFO [22050]: Version from config: 1.0 -- 18:20:40.877 DEBUG [22050]: Connecting to database... -- 18:20:40.877 DEBUG [22050]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:20:40.877 SQL [22050]: pgsql_db_connect() -- 18:20:40.881 DEBUG [22050]: Database connection successful -- 18:20:40.881 INFO [22050]: _SERVER found -- 18:20:40.881 INFO [22050]: REMOTE_ADDR = 192.168.1.13 -- 18:20:40.881 INFO [22050]: SERVER_NAME = oameye.works.coregrade.com -- 18:20:40.881 INFO [22050]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=cpqqreq00t76ddp99q5d7aleusksdh95 -- 18:20:40.881 INFO [22050]: QUERY_STRING = -- 18:20:40.881 INFO [22050]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:20:40.881 INFO [22050]: SystemStatus()09-09-********~************ -- 18:20:40.881 INFO [22050]: long coregrade_api_main(CVars in, CVars &out) -- 18:20:40.881 INFO [22050]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 18:20:40.881 INFO [22050]: account calls -- 18:20:40.881 INFO [22050]: account_calls() -- 18:20:40.881 INFO [22050]: AddPageCard() -- 18:20:40.881 FLOG_MAX [22050]: REQ_STRING(title) -- 18:20:40.881 FLOG_MAX [22050]: REQ_STRING(item_type) -- 18:20:40.881 FLOG_MAX [22050]: REQ_STRING(sessionid) -- 18:20:40.881 FLOG_MAX [22050]: REQ_STRING(detail) -- 18:20:40.881 FLOG_MAX [22050]: Bad parameter exception: 'page_id' -- 18:20:40.881 INFO [22050]: /AddPageCard() -- 18:20:40.881 INFO [22050]: RET: result=YES I GET TO BACK END -- 18:20:40.881 INFO [22050]: RET: status=Invalid session ID -- 18:20:40.881 INFO [22050]: COREGRADE is stopping... -- 18:20:40.881 DEBUG [22050]: Closing database connection -- 18:20:40.881 SQL [22050]: pgsql_close() -- 18:20:40.845 DEBUG [22050]: Database connection successful -- 18:20:40.845 INFO [22050]: _SERVER found -- 18:20:40.845 INFO [22050]: REMOTE_ADDR = 192.168.1.13 -- 18:20:40.845 INFO [22050]: SERVER_NAME = oameye.works.coregrade.com -- 18:20:40.845 INFO [22050]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=cpqqreq00t76ddp99q5d7aleusksdh95 -- 18:20:40.845 INFO [22050]: QUERY_STRING = /member/addNotecard -- 18:20:40.845 INFO [22050]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:20:40.881 INFO [22050]: COREGRADE is stopping... -- 18:20:40.882 DEBUG [22050]: Closing database connection -- 18:20:40.882 SQL [22050]: pgsql_close() -- 18:21:23.452 INFO [22106]: COREGRADE is starting... -- 18:21:23.453 INFO [22106]: Version from config: 1.0 -- 18:21:23.453 DEBUG [22106]: Connecting to database... -- 18:21:23.453 DEBUG [22106]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:21:23.453 SQL [22106]: pgsql_db_connect() -- 18:21:23.457 DEBUG [22106]: Database connection successful -- 18:21:23.457 INFO [22106]: _SERVER found -- 18:21:23.457 INFO [22106]: REMOTE_ADDR = 192.168.1.13 -- 18:21:23.457 INFO [22106]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:21:23.457 INFO [22106]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=36ecih36lhl4b2uqagds277re6bc634f -- 18:21:23.457 INFO [22106]: QUERY_STRING = /auth/logout -- 18:21:23.457 INFO [22106]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:21:23.489 INFO [22106]: COREGRADE is stopping... -- 18:21:23.489 DEBUG [22106]: Closing database connection -- 18:21:23.489 SQL [22106]: pgsql_close() -- 18:21:23.698 INFO [22106]: COREGRADE is starting... -- 18:21:23.699 INFO [22106]: Version from config: 1.0 -- 18:21:23.699 DEBUG [22106]: Connecting to database... -- 18:21:23.699 DEBUG [22106]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:21:23.699 SQL [22106]: pgsql_db_connect() -- 18:21:23.703 DEBUG [22106]: Database connection successful -- 18:21:23.703 INFO [22106]: _SERVER found -- 18:21:23.703 INFO [22106]: REMOTE_ADDR = 192.168.1.13 -- 18:21:23.703 INFO [22106]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:21:23.703 INFO [22106]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=36ecih36lhl4b2uqagds277re6bc634f -- 18:21:23.703 INFO [22106]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:21:23.703 INFO [22106]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:21:23.714 INFO [22106]: COREGRADE is stopping... -- 18:21:23.714 DEBUG [22106]: Closing database connection -- 18:21:23.714 SQL [22106]: pgsql_close() -- 18:21:24.894 INFO [22106]: COREGRADE is starting... -- 18:21:24.894 INFO [22106]: Version from config: 1.0 -- 18:21:24.894 DEBUG [22106]: Connecting to database... -- 18:21:24.894 DEBUG [22106]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:21:24.894 SQL [22106]: pgsql_db_connect() -- 18:21:24.898 DEBUG [22106]: Database connection successful -- 18:21:24.898 INFO [22106]: _SERVER found -- 18:21:24.898 INFO [22106]: REMOTE_ADDR = 192.168.1.13 -- 18:21:24.898 INFO [22106]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:21:24.898 INFO [22106]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=36ecih36lhl4b2uqagds277re6bc634f -- 18:21:24.898 INFO [22106]: QUERY_STRING = /auth -- 18:21:24.898 INFO [22106]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:21:25.039 INFO [22106]: COREGRADE is starting... -- 18:21:25.039 INFO [22106]: Version from config: 1.0 -- 18:21:25.039 DEBUG [22106]: Connecting to database... -- 18:21:25.039 DEBUG [22106]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:21:25.039 SQL [22106]: pgsql_db_connect() -- 18:21:25.043 DEBUG [22106]: Database connection successful -- 18:21:25.043 INFO [22106]: _SERVER found -- 18:21:25.043 INFO [22106]: REMOTE_ADDR = 192.168.1.13 -- 18:21:25.043 INFO [22106]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:21:25.043 INFO [22106]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=36ecih36lhl4b2uqagds277re6bc634f -- 18:21:25.043 INFO [22106]: QUERY_STRING = /member/index -- 18:21:25.043 INFO [22106]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:21:25.083 INFO [22106]: COREGRADE is stopping... -- 18:21:25.083 DEBUG [22106]: Closing database connection -- 18:21:25.083 SQL [22106]: pgsql_close() -- 18:21:25.379 INFO [22106]: COREGRADE is starting... -- 18:21:25.379 INFO [22106]: Version from config: 1.0 -- 18:21:25.379 DEBUG [22106]: Connecting to database... -- 18:21:25.379 DEBUG [22106]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:21:25.379 SQL [22106]: pgsql_db_connect() -- 18:21:25.383 DEBUG [22106]: Database connection successful -- 18:21:25.383 INFO [22106]: _SERVER found -- 18:21:25.383 INFO [22106]: REMOTE_ADDR = 192.168.1.13 -- 18:21:25.383 INFO [22106]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:21:25.383 INFO [22106]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=36ecih36lhl4b2uqagds277re6bc634f -- 18:21:25.383 INFO [22106]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:21:25.383 INFO [22106]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:21:25.394 INFO [22106]: COREGRADE is stopping... -- 18:21:25.394 DEBUG [22106]: Closing database connection -- 18:21:25.394 SQL [22106]: pgsql_close() -- 18:23:01.739 INFO [22203]: COREGRADE is starting... -- 18:23:01.739 INFO [22203]: Version from config: 1.0 -- 18:23:01.739 DEBUG [22203]: Connecting to database... -- 18:23:01.739 DEBUG [22203]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:23:01.739 SQL [22203]: pgsql_db_connect() -- 18:23:01.743 DEBUG [22203]: Database connection successful -- 18:23:01.743 INFO [22203]: _SERVER found -- 18:23:01.744 INFO [22203]: REMOTE_ADDR = 192.168.1.13 -- 18:23:01.744 INFO [22203]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:23:01.744 INFO [22203]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=36ecih36lhl4b2uqagds277re6bc634f -- 18:23:01.744 INFO [22203]: QUERY_STRING = /auth/logout -- 18:23:01.744 INFO [22203]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:23:01.780 INFO [22203]: COREGRADE is stopping... -- 18:23:01.780 DEBUG [22203]: Closing database connection -- 18:23:01.780 SQL [22203]: pgsql_close() -- 18:23:01.981 INFO [22203]: COREGRADE is starting... -- 18:23:01.981 INFO [22203]: Version from config: 1.0 -- 18:23:01.981 DEBUG [22203]: Connecting to database... -- 18:23:01.981 DEBUG [22203]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:23:01.981 SQL [22203]: pgsql_db_connect() -- 18:23:01.985 DEBUG [22203]: Database connection successful -- 18:23:01.985 INFO [22203]: _SERVER found -- 18:23:01.985 INFO [22203]: REMOTE_ADDR = 192.168.1.13 -- 18:23:01.985 INFO [22203]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:23:01.985 INFO [22203]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=36ecih36lhl4b2uqagds277re6bc634f -- 18:23:01.985 INFO [22203]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:23:01.985 INFO [22203]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:23:01.997 INFO [22203]: COREGRADE is stopping... -- 18:23:01.997 DEBUG [22203]: Closing database connection -- 18:23:01.997 SQL [22203]: pgsql_close() -- 18:23:03.265 INFO [22203]: COREGRADE is starting... -- 18:23:03.266 INFO [22203]: Version from config: 1.0 -- 18:23:03.266 DEBUG [22203]: Connecting to database... -- 18:23:03.266 DEBUG [22203]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:23:03.266 SQL [22203]: pgsql_db_connect() -- 18:23:03.270 DEBUG [22203]: Database connection successful -- 18:23:03.270 INFO [22203]: _SERVER found -- 18:23:03.270 INFO [22203]: REMOTE_ADDR = 192.168.1.13 -- 18:23:03.270 INFO [22203]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:23:03.270 INFO [22203]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=36ecih36lhl4b2uqagds277re6bc634f -- 18:23:03.270 INFO [22203]: QUERY_STRING = /auth -- 18:23:03.270 INFO [22203]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:23:03.384 INFO [22203]: COREGRADE is starting... -- 18:23:03.384 INFO [22203]: Version from config: 1.0 -- 18:23:03.384 DEBUG [22203]: Connecting to database... -- 18:23:03.384 DEBUG [22203]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:23:03.384 SQL [22203]: pgsql_db_connect() -- 18:23:03.388 DEBUG [22203]: Database connection successful -- 18:23:03.388 INFO [22203]: _SERVER found -- 18:23:03.388 INFO [22203]: REMOTE_ADDR = 192.168.1.13 -- 18:23:03.388 INFO [22203]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:23:03.388 INFO [22203]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=36ecih36lhl4b2uqagds277re6bc634f -- 18:23:03.388 INFO [22203]: QUERY_STRING = /member/index -- 18:23:03.388 INFO [22203]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:23:03.427 INFO [22203]: COREGRADE is stopping... -- 18:23:03.427 DEBUG [22203]: Closing database connection -- 18:23:03.427 SQL [22203]: pgsql_close() -- 18:23:03.612 INFO [22203]: COREGRADE is starting... -- 18:23:03.612 INFO [22203]: Version from config: 1.0 -- 18:23:03.612 DEBUG [22203]: Connecting to database... -- 18:23:03.612 DEBUG [22203]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:23:03.612 SQL [22203]: pgsql_db_connect() -- 18:23:03.616 DEBUG [22203]: Database connection successful -- 18:23:03.616 INFO [22203]: _SERVER found -- 18:23:03.616 INFO [22203]: REMOTE_ADDR = 192.168.1.13 -- 18:23:03.616 INFO [22203]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:23:03.616 INFO [22203]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=36ecih36lhl4b2uqagds277re6bc634f -- 18:23:03.616 INFO [22203]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:23:03.616 INFO [22203]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:23:03.627 INFO [22203]: COREGRADE is stopping... -- 18:23:03.627 DEBUG [22203]: Closing database connection -- 18:23:03.627 SQL [22203]: pgsql_close() -- 18:24:46.008 INFO [22048]: COREGRADE is starting... -- 18:24:46.009 INFO [22048]: Version from config: 1.0 -- 18:24:46.009 DEBUG [22048]: Connecting to database... -- 18:24:46.009 DEBUG [22048]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:24:46.009 SQL [22048]: pgsql_db_connect() -- 18:24:46.013 DEBUG [22048]: Database connection successful -- 18:24:46.013 INFO [22048]: _SERVER found -- 18:24:46.013 INFO [22048]: REMOTE_ADDR = 192.168.1.13 -- 18:24:46.013 INFO [22048]: SERVER_NAME = oameye.works.coregrade.com -- 18:24:46.013 INFO [22048]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=cpqqreq00t76ddp99q5d7aleusksdh95 -- 18:24:46.013 INFO [22048]: QUERY_STRING = /member/viewCardAddAction -- 18:24:46.013 INFO [22048]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:24:46.044 INFO [22048]: COREGRADE is stopping... -- 18:24:46.044 DEBUG [22048]: Closing database connection -- 18:24:46.044 SQL [22048]: pgsql_close() -- 18:24:50.408 INFO [22048]: COREGRADE is starting... -- 18:24:50.409 INFO [22048]: Version from config: 1.0 -- 18:24:50.409 DEBUG [22048]: Connecting to database... -- 18:24:50.409 DEBUG [22048]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:24:50.409 SQL [22048]: pgsql_db_connect() -- 18:24:50.413 DEBUG [22048]: Database connection successful -- 18:24:50.413 INFO [22048]: _SERVER found -- 18:24:50.413 INFO [22048]: REMOTE_ADDR = 192.168.1.13 -- 18:24:50.413 INFO [22048]: SERVER_NAME = oameye.works.coregrade.com -- 18:24:50.413 INFO [22048]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=cpqqreq00t76ddp99q5d7aleusksdh95 -- 18:24:50.413 INFO [22048]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 18:24:50.413 INFO [22048]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:24:50.424 INFO [22048]: COREGRADE is stopping... -- 18:24:50.424 DEBUG [22048]: Closing database connection -- 18:24:50.424 SQL [22048]: pgsql_close() -- 18:24:50.433 INFO [22051]: COREGRADE is starting... -- 18:24:50.433 INFO [22051]: Version from config: 1.0 -- 18:24:50.433 DEBUG [22051]: Connecting to database... -- 18:24:50.433 DEBUG [22051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:24:50.433 SQL [22051]: pgsql_db_connect() -- 18:24:50.437 DEBUG [22051]: Database connection successful -- 18:24:50.437 INFO [22051]: _SERVER found -- 18:24:50.437 INFO [22051]: REMOTE_ADDR = 192.168.1.13 -- 18:24:50.437 INFO [22051]: SERVER_NAME = oameye.works.coregrade.com -- 18:24:50.437 INFO [22051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=cpqqreq00t76ddp99q5d7aleusksdh95 -- 18:24:50.437 INFO [22051]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 18:24:50.437 INFO [22051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:24:50.448 INFO [22051]: COREGRADE is stopping... -- 18:24:50.448 DEBUG [22051]: Closing database connection -- 18:24:50.449 SQL [22051]: pgsql_close() -- 18:25:02.908 INFO [22101]: COREGRADE is starting... -- 18:25:02.908 INFO [22101]: Version from config: 1.0 -- 18:25:02.908 DEBUG [22101]: Connecting to database... -- 18:25:02.908 DEBUG [22101]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:25:02.908 SQL [22101]: pgsql_db_connect() -- 18:25:02.912 DEBUG [22101]: Database connection successful -- 18:25:02.912 INFO [22101]: _SERVER found -- 18:25:02.912 INFO [22101]: REMOTE_ADDR = 192.168.1.13 -- 18:25:02.912 INFO [22101]: SERVER_NAME = oameye.works.coregrade.com -- 18:25:02.912 INFO [22101]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=cpqqreq00t76ddp99q5d7aleusksdh95 -- 18:25:02.912 INFO [22101]: QUERY_STRING = /member -- 18:25:02.912 INFO [22101]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:25:02.949 INFO [22101]: COREGRADE is stopping... -- 18:25:02.949 DEBUG [22101]: Closing database connection -- 18:25:02.949 SQL [22101]: pgsql_close() -- 18:25:03.085 INFO [22101]: COREGRADE is starting... -- 18:25:03.085 INFO [22101]: Version from config: 1.0 -- 18:25:03.085 DEBUG [22101]: Connecting to database... -- 18:25:03.085 DEBUG [22101]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:25:03.085 SQL [22101]: pgsql_db_connect() -- 18:25:03.089 DEBUG [22101]: Database connection successful -- 18:25:03.089 INFO [22101]: _SERVER found -- 18:25:03.089 INFO [22101]: REMOTE_ADDR = 192.168.1.13 -- 18:25:03.089 INFO [22101]: SERVER_NAME = oameye.works.coregrade.com -- 18:25:03.089 INFO [22101]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=umbkdfuo5pfu22p55fqhlcrg6tggo88t -- 18:25:03.089 INFO [22101]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:25:03.089 INFO [22101]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:25:03.100 INFO [22101]: COREGRADE is stopping... -- 18:25:03.100 DEBUG [22101]: Closing database connection -- 18:25:03.100 SQL [22101]: pgsql_close() -- 18:25:03.303 INFO [22101]: COREGRADE is starting... -- 18:25:03.304 INFO [22101]: Version from config: 1.0 -- 18:25:03.304 DEBUG [22101]: Connecting to database... -- 18:25:03.304 DEBUG [22101]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:25:03.304 SQL [22101]: pgsql_db_connect() -- 18:25:03.310 INFO [22052]: COREGRADE is starting... -- 18:25:03.310 INFO [22052]: Version from config: 1.0 -- 18:25:03.310 DEBUG [22052]: Connecting to database... -- 18:25:03.310 DEBUG [22052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:25:03.310 SQL [22052]: pgsql_db_connect() -- 18:25:03.308 DEBUG [22101]: Database connection successful -- 18:25:03.308 INFO [22101]: _SERVER found -- 18:25:03.308 INFO [22101]: REMOTE_ADDR = 192.168.1.13 -- 18:25:03.308 INFO [22101]: SERVER_NAME = oameye.works.coregrade.com -- 18:25:03.308 INFO [22101]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=umbkdfuo5pfu22p55fqhlcrg6tggo88t -- 18:25:03.308 INFO [22101]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 18:25:03.308 INFO [22101]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:25:03.319 INFO [22101]: COREGRADE is stopping... -- 18:25:03.319 DEBUG [22101]: Closing database connection -- 18:25:03.319 SQL [22101]: pgsql_close() -- 18:25:03.314 DEBUG [22052]: Database connection successful -- 18:25:03.314 INFO [22052]: _SERVER found -- 18:25:03.314 INFO [22052]: REMOTE_ADDR = 192.168.1.13 -- 18:25:03.314 INFO [22052]: SERVER_NAME = oameye.works.coregrade.com -- 18:25:03.314 INFO [22052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=umbkdfuo5pfu22p55fqhlcrg6tggo88t -- 18:25:03.314 INFO [22052]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 18:25:03.314 INFO [22052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:25:03.326 INFO [22052]: COREGRADE is stopping... -- 18:25:03.326 DEBUG [22052]: Closing database connection -- 18:25:03.326 SQL [22052]: pgsql_close() -- 18:25:03.389 INFO [22052]: COREGRADE is starting... -- 18:25:03.390 INFO [22052]: Version from config: 1.0 -- 18:25:03.390 DEBUG [22052]: Connecting to database... -- 18:25:03.390 DEBUG [22052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:25:03.390 SQL [22052]: pgsql_db_connect() -- 18:25:03.394 DEBUG [22052]: Database connection successful -- 18:25:03.394 INFO [22052]: _SERVER found -- 18:25:03.394 INFO [22052]: REMOTE_ADDR = 192.168.1.13 -- 18:25:03.394 INFO [22052]: SERVER_NAME = oameye.works.coregrade.com -- 18:25:03.394 INFO [22052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=umbkdfuo5pfu22p55fqhlcrg6tggo88t -- 18:25:03.394 INFO [22052]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:25:03.394 INFO [22052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:25:03.405 INFO [22052]: COREGRADE is stopping... -- 18:25:03.405 DEBUG [22052]: Closing database connection -- 18:25:03.405 SQL [22052]: pgsql_close() -- 18:25:04.632 INFO [22052]: COREGRADE is starting... -- 18:25:04.632 INFO [22052]: Version from config: 1.0 -- 18:25:04.632 DEBUG [22052]: Connecting to database... -- 18:25:04.632 DEBUG [22052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:25:04.632 SQL [22052]: pgsql_db_connect() -- 18:25:04.636 DEBUG [22052]: Database connection successful -- 18:25:04.636 INFO [22052]: _SERVER found -- 18:25:04.636 INFO [22052]: REMOTE_ADDR = 192.168.1.13 -- 18:25:04.636 INFO [22052]: SERVER_NAME = oameye.works.coregrade.com -- 18:25:04.636 INFO [22052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=umbkdfuo5pfu22p55fqhlcrg6tggo88t -- 18:25:04.636 INFO [22052]: QUERY_STRING = /member/page -- 18:25:04.636 INFO [22052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:25:04.677 INFO [22052]: COREGRADE is stopping... -- 18:25:04.677 DEBUG [22052]: Closing database connection -- 18:25:04.677 SQL [22052]: pgsql_close() -- 18:25:05.092 INFO [22052]: COREGRADE is starting... -- 18:25:05.092 INFO [22052]: Version from config: 1.0 -- 18:25:05.092 DEBUG [22052]: Connecting to database... -- 18:25:05.093 DEBUG [22052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:25:05.093 SQL [22052]: pgsql_db_connect() -- 18:25:05.097 DEBUG [22052]: Database connection successful -- 18:25:05.097 INFO [22052]: _SERVER found -- 18:25:05.097 INFO [22052]: REMOTE_ADDR = 192.168.1.13 -- 18:25:05.097 INFO [22052]: SERVER_NAME = oameye.works.coregrade.com -- 18:25:05.097 INFO [22052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=umbkdfuo5pfu22p55fqhlcrg6tggo88t -- 18:25:05.097 INFO [22052]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:25:05.097 INFO [22052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:25:05.108 INFO [22052]: COREGRADE is stopping... -- 18:25:05.108 DEBUG [22052]: Closing database connection -- 18:25:05.108 SQL [22052]: pgsql_close() -- 18:25:05.601 INFO [22052]: COREGRADE is starting... -- 18:25:05.602 INFO [22052]: Version from config: 1.0 -- 18:25:05.602 DEBUG [22052]: Connecting to database... -- 18:25:05.602 DEBUG [22052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:25:05.602 SQL [22052]: pgsql_db_connect() -- 18:25:05.606 DEBUG [22052]: Database connection successful -- 18:25:05.606 INFO [22052]: _SERVER found -- 18:25:05.606 INFO [22052]: REMOTE_ADDR = 192.168.1.13 -- 18:25:05.606 INFO [22052]: SERVER_NAME = oameye.works.coregrade.com -- 18:25:05.606 INFO [22052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=umbkdfuo5pfu22p55fqhlcrg6tggo88t -- 18:25:05.606 INFO [22052]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:25:05.606 INFO [22052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:25:05.617 INFO [22052]: COREGRADE is stopping... -- 18:25:05.617 DEBUG [22052]: Closing database connection -- 18:25:05.617 SQL [22052]: pgsql_close() -- 18:25:05.786 INFO [22101]: COREGRADE is starting... -- 18:25:05.786 INFO [22052]: COREGRADE is starting... -- 18:25:05.786 INFO [22052]: Version from config: 1.0 -- 18:25:05.786 DEBUG [22052]: Connecting to database... -- 18:25:05.786 INFO [22101]: Version from config: 1.0 -- 18:25:05.786 DEBUG [22101]: Connecting to database... -- 18:25:05.786 DEBUG [22052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:25:05.786 DEBUG [22101]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:25:05.786 SQL [22052]: pgsql_db_connect() -- 18:25:05.786 SQL [22101]: pgsql_db_connect() -- 18:25:05.790 DEBUG [22101]: Database connection successful -- 18:25:05.790 INFO [22101]: _SERVER found -- 18:25:05.790 INFO [22101]: REMOTE_ADDR = 192.168.1.13 -- 18:25:05.790 INFO [22101]: SERVER_NAME = oameye.works.coregrade.com -- 18:25:05.790 INFO [22101]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=umbkdfuo5pfu22p55fqhlcrg6tggo88t -- 18:25:05.790 INFO [22101]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 18:25:05.790 INFO [22101]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:25:05.801 INFO [22101]: COREGRADE is stopping... -- 18:25:05.790 DEBUG [22052]: Database connection successful -- 18:25:05.790 INFO [22052]: _SERVER found -- 18:25:05.790 INFO [22052]: REMOTE_ADDR = 192.168.1.13 -- 18:25:05.790 INFO [22052]: SERVER_NAME = oameye.works.coregrade.com -- 18:25:05.790 INFO [22052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=umbkdfuo5pfu22p55fqhlcrg6tggo88t -- 18:25:05.790 INFO [22052]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 18:25:05.790 INFO [22052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:25:05.801 INFO [22052]: COREGRADE is stopping... -- 18:25:05.802 DEBUG [22052]: Closing database connection -- 18:25:05.802 DEBUG [22101]: Closing database connection -- 18:25:05.802 SQL [22052]: pgsql_close() -- 18:25:05.802 SQL [22101]: pgsql_close() -- 18:28:12.116 INFO [22049]: COREGRADE is starting... -- 18:28:12.117 INFO [22049]: Version from config: 1.0 -- 18:28:12.117 DEBUG [22049]: Connecting to database... -- 18:28:12.117 DEBUG [22049]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:28:12.117 SQL [22049]: pgsql_db_connect() -- 18:28:12.121 DEBUG [22049]: Database connection successful -- 18:28:12.121 INFO [22049]: _SERVER found -- 18:28:12.121 INFO [22049]: REMOTE_ADDR = 192.168.1.13 -- 18:28:12.121 INFO [22049]: SERVER_NAME = oameye.works.coregrade.com -- 18:28:12.121 INFO [22049]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=umbkdfuo5pfu22p55fqhlcrg6tggo88t -- 18:28:12.121 INFO [22049]: QUERY_STRING = /member -- 18:28:12.121 INFO [22049]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:28:12.158 INFO [22049]: COREGRADE is stopping... -- 18:28:12.158 DEBUG [22049]: Closing database connection -- 18:28:12.158 SQL [22049]: pgsql_close() -- 18:28:12.493 INFO [22049]: COREGRADE is starting... -- 18:28:12.493 INFO [22049]: Version from config: 1.0 -- 18:28:12.493 DEBUG [22049]: Connecting to database... -- 18:28:12.493 DEBUG [22049]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:28:12.493 SQL [22049]: pgsql_db_connect() -- 18:28:12.497 DEBUG [22049]: Database connection successful -- 18:28:12.497 INFO [22049]: _SERVER found -- 18:28:12.497 INFO [22049]: REMOTE_ADDR = 192.168.1.13 -- 18:28:12.497 INFO [22049]: SERVER_NAME = oameye.works.coregrade.com -- 18:28:12.497 INFO [22049]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=umbkdfuo5pfu22p55fqhlcrg6tggo88t -- 18:28:12.497 INFO [22049]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 18:28:12.497 INFO [22049]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:28:12.509 INFO [22049]: COREGRADE is stopping... -- 18:28:12.509 DEBUG [22049]: Closing database connection -- 18:28:12.509 SQL [22049]: pgsql_close() -- 18:28:12.513 INFO [22050]: COREGRADE is starting... -- 18:28:12.513 INFO [22050]: Version from config: 1.0 -- 18:28:12.513 DEBUG [22050]: Connecting to database... -- 18:28:12.513 DEBUG [22050]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:28:12.513 SQL [22050]: pgsql_db_connect() -- 18:28:12.543 INFO [22049]: COREGRADE is starting... -- 18:28:12.544 INFO [22049]: Version from config: 1.0 -- 18:28:12.544 DEBUG [22049]: Connecting to database... -- 18:28:12.544 DEBUG [22049]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:28:12.544 SQL [22049]: pgsql_db_connect() -- 18:28:12.518 DEBUG [22050]: Database connection successful -- 18:28:12.518 INFO [22050]: _SERVER found -- 18:28:12.518 INFO [22050]: REMOTE_ADDR = 192.168.1.13 -- 18:28:12.518 INFO [22050]: SERVER_NAME = oameye.works.coregrade.com -- 18:28:12.518 INFO [22050]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=umbkdfuo5pfu22p55fqhlcrg6tggo88t -- 18:28:12.518 INFO [22050]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 18:28:12.518 INFO [22050]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:28:12.547 INFO [22050]: COREGRADE is stopping... -- 18:28:12.547 DEBUG [22050]: Closing database connection -- 18:28:12.548 SQL [22050]: pgsql_close() -- 18:28:12.548 DEBUG [22049]: Database connection successful -- 18:28:12.548 INFO [22049]: _SERVER found -- 18:28:12.548 INFO [22049]: REMOTE_ADDR = 192.168.1.13 -- 18:28:12.548 INFO [22049]: SERVER_NAME = oameye.works.coregrade.com -- 18:28:12.548 INFO [22049]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=umbkdfuo5pfu22p55fqhlcrg6tggo88t -- 18:28:12.548 INFO [22049]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:28:12.548 INFO [22049]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:28:12.570 INFO [22049]: COREGRADE is stopping... -- 18:28:12.570 DEBUG [22049]: Closing database connection -- 18:28:12.570 SQL [22049]: pgsql_close() -- 18:28:12.731 INFO [22049]: COREGRADE is starting... -- 18:28:12.731 INFO [22049]: Version from config: 1.0 -- 18:28:12.731 DEBUG [22049]: Connecting to database... -- 18:28:12.731 DEBUG [22049]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:28:12.731 SQL [22049]: pgsql_db_connect() -- 18:28:12.735 DEBUG [22049]: Database connection successful -- 18:28:12.735 INFO [22049]: _SERVER found -- 18:28:12.735 INFO [22049]: REMOTE_ADDR = 192.168.1.13 -- 18:28:12.735 INFO [22049]: SERVER_NAME = oameye.works.coregrade.com -- 18:28:12.735 INFO [22049]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=umbkdfuo5pfu22p55fqhlcrg6tggo88t -- 18:28:12.735 INFO [22049]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:28:12.735 INFO [22049]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:28:12.746 INFO [22049]: COREGRADE is stopping... -- 18:28:12.746 DEBUG [22049]: Closing database connection -- 18:28:12.746 SQL [22049]: pgsql_close() -- 18:28:17.715 INFO [22049]: COREGRADE is starting... -- 18:28:17.715 INFO [22049]: Version from config: 1.0 -- 18:28:17.715 DEBUG [22049]: Connecting to database... -- 18:28:17.716 DEBUG [22049]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:28:17.716 SQL [22049]: pgsql_db_connect() -- 18:28:17.720 DEBUG [22049]: Database connection successful -- 18:28:17.720 INFO [22049]: _SERVER found -- 18:28:17.720 INFO [22049]: REMOTE_ADDR = 192.168.1.13 -- 18:28:17.720 INFO [22049]: SERVER_NAME = oameye.works.coregrade.com -- 18:28:17.720 INFO [22049]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=umbkdfuo5pfu22p55fqhlcrg6tggo88t -- 18:28:17.720 INFO [22049]: QUERY_STRING = /member/page -- 18:28:17.720 INFO [22049]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:28:17.760 INFO [22049]: COREGRADE is stopping... -- 18:28:17.760 DEBUG [22049]: Closing database connection -- 18:28:17.760 SQL [22049]: pgsql_close() -- 18:28:17.911 INFO [22049]: COREGRADE is starting... -- 18:28:17.912 INFO [22049]: Version from config: 1.0 -- 18:28:17.912 DEBUG [22049]: Connecting to database... -- 18:28:17.912 DEBUG [22049]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:28:17.912 SQL [22049]: pgsql_db_connect() -- 18:28:17.916 DEBUG [22049]: Database connection successful -- 18:28:17.916 INFO [22049]: _SERVER found -- 18:28:17.916 INFO [22049]: REMOTE_ADDR = 192.168.1.13 -- 18:28:17.916 INFO [22049]: SERVER_NAME = oameye.works.coregrade.com -- 18:28:17.916 INFO [22049]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=umbkdfuo5pfu22p55fqhlcrg6tggo88t -- 18:28:17.916 INFO [22049]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:28:17.916 INFO [22049]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:28:17.927 INFO [22049]: COREGRADE is stopping... -- 18:28:17.927 DEBUG [22049]: Closing database connection -- 18:28:17.927 SQL [22049]: pgsql_close() -- 18:28:18.137 INFO [22049]: COREGRADE is starting... -- 18:28:18.137 INFO [22049]: Version from config: 1.0 -- 18:28:18.137 DEBUG [22049]: Connecting to database... -- 18:28:18.137 DEBUG [22049]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:28:18.137 SQL [22049]: pgsql_db_connect() -- 18:28:18.147 INFO [22106]: COREGRADE is starting... -- 18:28:18.147 INFO [22106]: Version from config: 1.0 -- 18:28:18.147 DEBUG [22106]: Connecting to database... -- 18:28:18.147 DEBUG [22106]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:28:18.147 SQL [22106]: pgsql_db_connect() -- 18:28:18.141 DEBUG [22049]: Database connection successful -- 18:28:18.141 INFO [22049]: _SERVER found -- 18:28:18.141 INFO [22049]: REMOTE_ADDR = 192.168.1.13 -- 18:28:18.141 INFO [22049]: SERVER_NAME = oameye.works.coregrade.com -- 18:28:18.141 INFO [22049]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=umbkdfuo5pfu22p55fqhlcrg6tggo88t -- 18:28:18.141 INFO [22049]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 18:28:18.141 INFO [22049]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:28:18.152 INFO [22049]: COREGRADE is stopping... -- 18:28:18.152 DEBUG [22049]: Closing database connection -- 18:28:18.152 SQL [22049]: pgsql_close() -- 18:28:18.151 DEBUG [22106]: Database connection successful -- 18:28:18.151 INFO [22106]: _SERVER found -- 18:28:18.151 INFO [22106]: REMOTE_ADDR = 192.168.1.13 -- 18:28:18.151 INFO [22106]: SERVER_NAME = oameye.works.coregrade.com -- 18:28:18.151 INFO [22106]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=umbkdfuo5pfu22p55fqhlcrg6tggo88t -- 18:28:18.151 INFO [22106]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 18:28:18.151 INFO [22106]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:28:18.163 INFO [22106]: COREGRADE is stopping... -- 18:28:18.163 DEBUG [22106]: Closing database connection -- 18:28:18.163 SQL [22106]: pgsql_close() -- 18:28:18.233 INFO [22106]: COREGRADE is starting... -- 18:28:18.233 INFO [22106]: Version from config: 1.0 -- 18:28:18.233 DEBUG [22106]: Connecting to database... -- 18:28:18.233 DEBUG [22106]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:28:18.233 SQL [22106]: pgsql_db_connect() -- 18:28:18.237 DEBUG [22106]: Database connection successful -- 18:28:18.237 INFO [22106]: _SERVER found -- 18:28:18.237 INFO [22106]: REMOTE_ADDR = 192.168.1.13 -- 18:28:18.237 INFO [22106]: SERVER_NAME = oameye.works.coregrade.com -- 18:28:18.237 INFO [22106]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=umbkdfuo5pfu22p55fqhlcrg6tggo88t -- 18:28:18.237 INFO [22106]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:28:18.237 INFO [22106]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:28:18.248 INFO [22106]: COREGRADE is stopping... -- 18:28:18.248 DEBUG [22106]: Closing database connection -- 18:28:18.248 SQL [22106]: pgsql_close() -- 19:13:02.921 INFO [22203]: COREGRADE is starting... -- 19:13:02.921 INFO [22203]: Version from config: 1.0 -- 19:13:02.921 DEBUG [22203]: Connecting to database... -- 19:13:02.921 DEBUG [22203]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:13:02.922 SQL [22203]: pgsql_db_connect() -- 19:13:02.926 DEBUG [22203]: Database connection successful -- 19:13:02.926 INFO [22203]: _SERVER found -- 19:13:02.926 INFO [22203]: REMOTE_ADDR = 192.168.1.13 -- 19:13:02.926 INFO [22203]: SERVER_NAME = oameye.works.coregrade.com -- 19:13:02.926 INFO [22203]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=umbkdfuo5pfu22p55fqhlcrg6tggo88t -- 19:13:02.926 INFO [22203]: QUERY_STRING = /member/page -- 19:13:02.926 INFO [22203]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:13:02.971 INFO [22203]: COREGRADE is stopping... -- 19:13:02.971 DEBUG [22203]: Closing database connection -- 19:13:02.971 SQL [22203]: pgsql_close() -- 19:13:03.170 INFO [22203]: COREGRADE is starting... -- 19:13:03.171 INFO [22203]: Version from config: 1.0 -- 19:13:03.171 DEBUG [22203]: Connecting to database... -- 19:13:03.171 DEBUG [22203]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:13:03.171 SQL [22203]: pgsql_db_connect() -- 19:13:03.175 DEBUG [22203]: Database connection successful -- 19:13:03.175 INFO [22203]: _SERVER found -- 19:13:03.175 INFO [22203]: REMOTE_ADDR = 192.168.1.13 -- 19:13:03.175 INFO [22203]: SERVER_NAME = oameye.works.coregrade.com -- 19:13:03.175 INFO [22203]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:13:03.175 INFO [22203]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:13:03.175 INFO [22203]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:13:03.186 INFO [22203]: COREGRADE is stopping... -- 19:13:03.186 DEBUG [22203]: Closing database connection -- 19:13:03.186 SQL [22203]: pgsql_close() -- 19:13:03.452 INFO [22203]: COREGRADE is starting... -- 19:13:03.452 INFO [22203]: Version from config: 1.0 -- 19:13:03.452 DEBUG [22203]: Connecting to database... -- 19:13:03.452 DEBUG [22203]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:13:03.452 SQL [22203]: pgsql_db_connect() -- 19:13:03.462 INFO [22048]: COREGRADE is starting... -- 19:13:03.462 INFO [22048]: Version from config: 1.0 -- 19:13:03.462 DEBUG [22048]: Connecting to database... -- 19:13:03.462 DEBUG [22048]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:13:03.462 SQL [22048]: pgsql_db_connect() -- 19:13:03.457 DEBUG [22203]: Database connection successful -- 19:13:03.457 INFO [22203]: _SERVER found -- 19:13:03.457 INFO [22203]: REMOTE_ADDR = 192.168.1.13 -- 19:13:03.457 INFO [22203]: SERVER_NAME = oameye.works.coregrade.com -- 19:13:03.457 INFO [22203]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:13:03.457 INFO [22203]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 19:13:03.457 INFO [22203]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:13:03.468 INFO [22203]: COREGRADE is stopping... -- 19:13:03.468 DEBUG [22203]: Closing database connection -- 19:13:03.468 SQL [22203]: pgsql_close() -- 19:13:03.466 DEBUG [22048]: Database connection successful -- 19:13:03.466 INFO [22048]: _SERVER found -- 19:13:03.466 INFO [22048]: REMOTE_ADDR = 192.168.1.13 -- 19:13:03.466 INFO [22048]: SERVER_NAME = oameye.works.coregrade.com -- 19:13:03.466 INFO [22048]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:13:03.466 INFO [22048]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 19:13:03.466 INFO [22048]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:13:03.479 INFO [22048]: COREGRADE is stopping... -- 19:13:03.480 DEBUG [22048]: Closing database connection -- 19:13:03.480 SQL [22048]: pgsql_close() -- 19:13:03.579 INFO [22048]: COREGRADE is starting... -- 19:13:03.580 INFO [22048]: Version from config: 1.0 -- 19:13:03.580 DEBUG [22048]: Connecting to database... -- 19:13:03.580 DEBUG [22048]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:13:03.580 SQL [22048]: pgsql_db_connect() -- 19:13:03.584 DEBUG [22048]: Database connection successful -- 19:13:03.584 INFO [22048]: _SERVER found -- 19:13:03.584 INFO [22048]: REMOTE_ADDR = 192.168.1.13 -- 19:13:03.584 INFO [22048]: SERVER_NAME = oameye.works.coregrade.com -- 19:13:03.584 INFO [22048]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:13:03.584 INFO [22048]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:13:03.584 INFO [22048]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:13:03.595 INFO [22048]: COREGRADE is stopping... -- 19:13:03.595 DEBUG [22048]: Closing database connection -- 19:13:03.595 SQL [22048]: pgsql_close() -- 19:13:55.421 INFO [22051]: COREGRADE is starting... -- 19:13:55.422 INFO [22051]: Version from config: 1.0 -- 19:13:55.422 DEBUG [22051]: Connecting to database... -- 19:13:55.422 DEBUG [22051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:13:55.422 SQL [22051]: pgsql_db_connect() -- 19:13:55.426 DEBUG [22051]: Database connection successful -- 19:13:55.426 INFO [22051]: _SERVER found -- 19:13:55.426 INFO [22051]: REMOTE_ADDR = 192.168.1.13 -- 19:13:55.426 INFO [22051]: SERVER_NAME = oameye.works.coregrade.com -- 19:13:55.426 INFO [22051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:13:55.426 INFO [22051]: QUERY_STRING = /member/page -- 19:13:55.426 INFO [22051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:13:55.466 INFO [22051]: COREGRADE is stopping... -- 19:13:55.466 DEBUG [22051]: Closing database connection -- 19:13:55.466 SQL [22051]: pgsql_close() -- 19:13:55.606 INFO [22051]: COREGRADE is starting... -- 19:13:55.606 INFO [22051]: Version from config: 1.0 -- 19:13:55.606 DEBUG [22051]: Connecting to database... -- 19:13:55.606 DEBUG [22051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:13:55.606 SQL [22051]: pgsql_db_connect() -- 19:13:55.610 DEBUG [22051]: Database connection successful -- 19:13:55.610 INFO [22051]: _SERVER found -- 19:13:55.610 INFO [22051]: REMOTE_ADDR = 192.168.1.13 -- 19:13:55.610 INFO [22051]: SERVER_NAME = oameye.works.coregrade.com -- 19:13:55.610 INFO [22051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:13:55.610 INFO [22051]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:13:55.610 INFO [22051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:13:55.621 INFO [22051]: COREGRADE is stopping... -- 19:13:55.621 DEBUG [22051]: Closing database connection -- 19:13:55.621 SQL [22051]: pgsql_close() -- 19:13:55.787 INFO [22051]: COREGRADE is starting... -- 19:13:55.788 INFO [22051]: Version from config: 1.0 -- 19:13:55.788 DEBUG [22051]: Connecting to database... -- 19:13:55.788 DEBUG [22051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:13:55.788 SQL [22051]: pgsql_db_connect() -- 19:13:55.792 DEBUG [22051]: Database connection successful -- 19:13:55.792 INFO [22051]: _SERVER found -- 19:13:55.792 INFO [22051]: REMOTE_ADDR = 192.168.1.13 -- 19:13:55.792 INFO [22051]: SERVER_NAME = oameye.works.coregrade.com -- 19:13:55.792 INFO [22051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:13:55.792 INFO [22051]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:13:55.792 INFO [22051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:13:55.803 INFO [22051]: COREGRADE is stopping... -- 19:13:55.803 DEBUG [22051]: Closing database connection -- 19:13:55.803 SQL [22051]: pgsql_close() -- 19:14:01.046 INFO [22052]: COREGRADE is starting... -- 19:14:01.046 INFO [22052]: Version from config: 1.0 -- 19:14:01.046 DEBUG [22052]: Connecting to database... -- 19:14:01.046 DEBUG [22052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:14:01.046 SQL [22052]: pgsql_db_connect() -- 19:14:01.052 INFO [22050]: COREGRADE is starting... -- 19:14:01.052 INFO [22050]: Version from config: 1.0 -- 19:14:01.052 DEBUG [22050]: Connecting to database... -- 19:14:01.052 DEBUG [22050]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:14:01.052 SQL [22050]: pgsql_db_connect() -- 19:14:01.050 DEBUG [22052]: Database connection successful -- 19:14:01.050 INFO [22052]: _SERVER found -- 19:14:01.050 INFO [22052]: REMOTE_ADDR = 192.168.1.13 -- 19:14:01.050 INFO [22052]: SERVER_NAME = oameye.works.coregrade.com -- 19:14:01.050 INFO [22052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:14:01.050 INFO [22052]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 19:14:01.050 INFO [22052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:14:01.063 INFO [22052]: COREGRADE is stopping... -- 19:14:01.063 DEBUG [22052]: Closing database connection -- 19:14:01.063 SQL [22052]: pgsql_close() -- 19:14:01.056 DEBUG [22050]: Database connection successful -- 19:14:01.056 INFO [22050]: _SERVER found -- 19:14:01.056 INFO [22050]: REMOTE_ADDR = 192.168.1.13 -- 19:14:01.056 INFO [22050]: SERVER_NAME = oameye.works.coregrade.com -- 19:14:01.056 INFO [22050]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:14:01.056 INFO [22050]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 19:14:01.056 INFO [22050]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:14:01.068 INFO [22050]: COREGRADE is stopping... -- 19:14:01.068 DEBUG [22050]: Closing database connection -- 19:14:01.068 SQL [22050]: pgsql_close() -- 19:14:12.110 INFO [22049]: COREGRADE is starting... -- 19:14:12.110 INFO [22049]: Version from config: 1.0 -- 19:14:12.110 DEBUG [22049]: Connecting to database... -- 19:14:12.110 DEBUG [22049]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:14:12.110 SQL [22049]: pgsql_db_connect() -- 19:14:12.114 DEBUG [22049]: Database connection successful -- 19:14:12.114 INFO [22049]: _SERVER found -- 19:14:12.114 INFO [22049]: REMOTE_ADDR = 192.168.1.13 -- 19:14:12.114 INFO [22049]: SERVER_NAME = oameye.works.coregrade.com -- 19:14:12.114 INFO [22049]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:14:12.114 INFO [22049]: QUERY_STRING = /member/viewCardAddAction -- 19:14:12.114 INFO [22049]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:14:12.145 INFO [22049]: COREGRADE is stopping... -- 19:14:12.145 DEBUG [22049]: Closing database connection -- 19:14:12.145 SQL [22049]: pgsql_close() -- 19:14:39.829 INFO [22106]: COREGRADE is starting... -- 19:14:39.830 INFO [22106]: Version from config: 1.0 -- 19:14:39.830 DEBUG [22106]: Connecting to database... -- 19:14:39.830 DEBUG [22106]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:14:39.830 SQL [22106]: pgsql_db_connect() -- 19:14:39.865 INFO [22106]: COREGRADE is starting... -- 19:14:39.866 INFO [22106]: Version from config: 1.0 -- 19:14:39.866 DEBUG [22106]: Connecting to database... -- 19:14:39.866 DEBUG [22106]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:14:39.866 SQL [22106]: pgsql_db_connect() -- 19:14:39.870 DEBUG [22106]: Database connection successful -- 19:14:39.870 INFO [22106]: _SERVER found -- 19:14:39.870 INFO [22106]: REMOTE_ADDR = 192.168.1.13 -- 19:14:39.870 INFO [22106]: SERVER_NAME = oameye.works.coregrade.com -- 19:14:39.870 INFO [22106]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:14:39.870 INFO [22106]: QUERY_STRING = -- 19:14:39.870 INFO [22106]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:14:39.870 INFO [22106]: SystemStatus()09-09-********~************ -- 19:14:39.870 INFO [22106]: long coregrade_api_main(CVars in, CVars &out) -- 19:14:39.870 INFO [22106]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 19:14:39.870 INFO [22106]: account calls -- 19:14:39.870 INFO [22106]: account_calls() -- 19:14:39.870 INFO [22106]: AddPageCard() -- 19:14:39.870 FLOG_MAX [22106]: REQ_STRING(title) -- 19:14:39.870 FLOG_MAX [22106]: REQ_STRING(item_type) -- 19:14:39.870 FLOG_MAX [22106]: REQ_STRING(sessionid) -- 19:14:39.870 FLOG_MAX [22106]: REQ_STRING(detail) -- 19:14:39.870 FLOG_MAX [22106]: Bad parameter exception: 'page_id' -- 19:14:39.870 INFO [22106]: /AddPageCard() -- 19:14:39.870 INFO [22106]: RET: result=YES I GET TO BACK END -- 19:14:39.870 INFO [22106]: RET: status=Invalid session ID -- 19:14:39.871 INFO [22106]: COREGRADE is stopping... -- 19:14:39.871 DEBUG [22106]: Closing database connection -- 19:14:39.871 SQL [22106]: pgsql_close() -- 19:14:39.834 DEBUG [22106]: Database connection successful -- 19:14:39.834 INFO [22106]: _SERVER found -- 19:14:39.834 INFO [22106]: REMOTE_ADDR = 192.168.1.13 -- 19:14:39.834 INFO [22106]: SERVER_NAME = oameye.works.coregrade.com -- 19:14:39.834 INFO [22106]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:14:39.834 INFO [22106]: QUERY_STRING = /member/addNotecard -- 19:14:39.834 INFO [22106]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:14:39.871 INFO [22106]: COREGRADE is stopping... -- 19:14:39.871 DEBUG [22106]: Closing database connection -- 19:14:39.871 SQL [22106]: pgsql_close() -- 19:16:06.806 INFO [22048]: COREGRADE is starting... -- 19:16:06.806 INFO [22048]: Version from config: 1.0 -- 19:16:06.806 DEBUG [22048]: Connecting to database... -- 19:16:06.806 DEBUG [22048]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:16:06.806 SQL [22048]: pgsql_db_connect() -- 19:16:06.810 DEBUG [22048]: Database connection successful -- 19:16:06.810 INFO [22048]: _SERVER found -- 19:16:06.810 INFO [22048]: REMOTE_ADDR = 192.168.1.13 -- 19:16:06.810 INFO [22048]: SERVER_NAME = oameye.works.coregrade.com -- 19:16:06.810 INFO [22048]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:16:06.810 INFO [22048]: QUERY_STRING = /member/viewCardAddAction -- 19:16:06.810 INFO [22048]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:16:06.841 INFO [22048]: COREGRADE is stopping... -- 19:16:06.841 DEBUG [22048]: Closing database connection -- 19:16:06.841 SQL [22048]: pgsql_close() -- 19:16:38.041 INFO [22203]: COREGRADE is starting... -- 19:16:38.042 INFO [22203]: Version from config: 1.0 -- 19:16:38.042 DEBUG [22203]: Connecting to database... -- 19:16:38.042 DEBUG [22203]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:16:38.042 SQL [22203]: pgsql_db_connect() -- 19:16:38.077 INFO [22203]: COREGRADE is starting... -- 19:16:38.077 INFO [22203]: Version from config: 1.0 -- 19:16:38.077 DEBUG [22203]: Connecting to database... -- 19:16:38.077 DEBUG [22203]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:16:38.077 SQL [22203]: pgsql_db_connect() -- 19:16:38.081 DEBUG [22203]: Database connection successful -- 19:16:38.081 INFO [22203]: _SERVER found -- 19:16:38.081 INFO [22203]: REMOTE_ADDR = 192.168.1.13 -- 19:16:38.081 INFO [22203]: SERVER_NAME = oameye.works.coregrade.com -- 19:16:38.081 INFO [22203]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:16:38.081 INFO [22203]: QUERY_STRING = -- 19:16:38.081 INFO [22203]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:16:38.081 INFO [22203]: SystemStatus()09-09-********~************ -- 19:16:38.081 INFO [22203]: long coregrade_api_main(CVars in, CVars &out) -- 19:16:38.081 INFO [22203]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 19:16:38.081 INFO [22203]: account calls -- 19:16:38.081 INFO [22203]: account_calls() -- 19:16:38.081 INFO [22203]: AddPageCard() -- 19:16:38.081 FLOG_MAX [22203]: REQ_STRING(title) -- 19:16:38.082 FLOG_MAX [22203]: REQ_STRING(item_type) -- 19:16:38.082 FLOG_MAX [22203]: REQ_STRING(sessionid) -- 19:16:38.082 FLOG_MAX [22203]: REQ_STRING(detail) -- 19:16:38.082 FLOG_MAX [22203]: Bad parameter exception: 'page_id' -- 19:16:38.082 INFO [22203]: /AddPageCard() -- 19:16:38.082 INFO [22203]: RET: result=YES I GET TO BACK END -- 19:16:38.082 INFO [22203]: RET: status=Invalid session ID -- 19:16:38.082 INFO [22203]: COREGRADE is stopping... -- 19:16:38.082 DEBUG [22203]: Closing database connection -- 19:16:38.082 SQL [22203]: pgsql_close() -- 19:16:38.046 DEBUG [22203]: Database connection successful -- 19:16:38.046 INFO [22203]: _SERVER found -- 19:16:38.046 INFO [22203]: REMOTE_ADDR = 192.168.1.13 -- 19:16:38.046 INFO [22203]: SERVER_NAME = oameye.works.coregrade.com -- 19:16:38.046 INFO [22203]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:16:38.046 INFO [22203]: QUERY_STRING = /member/addNotecard -- 19:16:38.046 INFO [22203]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:16:38.082 INFO [22203]: COREGRADE is stopping... -- 19:16:38.082 DEBUG [22203]: Closing database connection -- 19:16:38.083 SQL [22203]: pgsql_close() -- 19:17:06.861 INFO [22051]: COREGRADE is starting... -- 19:17:06.861 INFO [22051]: Version from config: 1.0 -- 19:17:06.861 DEBUG [22051]: Connecting to database... -- 19:17:06.861 DEBUG [22051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:17:06.861 SQL [22051]: pgsql_db_connect() -- 19:17:06.865 DEBUG [22051]: Database connection successful -- 19:17:06.865 INFO [22051]: _SERVER found -- 19:17:06.865 INFO [22051]: REMOTE_ADDR = 192.168.1.13 -- 19:17:06.865 INFO [22051]: SERVER_NAME = oameye.works.coregrade.com -- 19:17:06.865 INFO [22051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:17:06.865 INFO [22051]: QUERY_STRING = /member/viewCardAddAction -- 19:17:06.865 INFO [22051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:17:06.897 INFO [22051]: COREGRADE is stopping... -- 19:17:06.897 DEBUG [22051]: Closing database connection -- 19:17:06.897 SQL [22051]: pgsql_close() -- 19:17:08.279 INFO [22051]: COREGRADE is starting... -- 19:17:08.279 INFO [22051]: Version from config: 1.0 -- 19:17:08.279 DEBUG [22051]: Connecting to database... -- 19:17:08.279 DEBUG [22051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:17:08.280 SQL [22051]: pgsql_db_connect() -- 19:17:08.284 DEBUG [22051]: Database connection successful -- 19:17:08.284 INFO [22051]: _SERVER found -- 19:17:08.284 INFO [22051]: REMOTE_ADDR = 192.168.1.13 -- 19:17:08.284 INFO [22051]: SERVER_NAME = oameye.works.coregrade.com -- 19:17:08.284 INFO [22051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:17:08.284 INFO [22051]: QUERY_STRING = /member/viewCardAddAction -- 19:17:08.284 INFO [22051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:17:08.314 INFO [22051]: COREGRADE is stopping... -- 19:17:08.314 DEBUG [22051]: Closing database connection -- 19:17:08.315 SQL [22051]: pgsql_close() -- 19:17:27.814 INFO [22101]: COREGRADE is starting... -- 19:17:27.814 INFO [22101]: Version from config: 1.0 -- 19:17:27.814 DEBUG [22101]: Connecting to database... -- 19:17:27.814 DEBUG [22101]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:17:27.814 SQL [22101]: pgsql_db_connect() -- 19:17:27.818 DEBUG [22101]: Database connection successful -- 19:17:27.818 INFO [22101]: _SERVER found -- 19:17:27.818 INFO [22101]: REMOTE_ADDR = 192.168.1.13 -- 19:17:27.818 INFO [22101]: SERVER_NAME = oameye.works.coregrade.com -- 19:17:27.818 INFO [22101]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:17:27.818 INFO [22101]: QUERY_STRING = /member -- 19:17:27.818 INFO [22101]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:17:27.855 INFO [22101]: COREGRADE is stopping... -- 19:17:27.855 DEBUG [22101]: Closing database connection -- 19:17:27.855 SQL [22101]: pgsql_close() -- 19:17:27.961 INFO [22101]: COREGRADE is starting... -- 19:17:27.962 INFO [22101]: Version from config: 1.0 -- 19:17:27.962 DEBUG [22101]: Connecting to database... -- 19:17:27.962 DEBUG [22101]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:17:27.962 SQL [22101]: pgsql_db_connect() -- 19:17:27.966 DEBUG [22101]: Database connection successful -- 19:17:27.966 INFO [22101]: _SERVER found -- 19:17:27.966 INFO [22101]: REMOTE_ADDR = 192.168.1.13 -- 19:17:27.966 INFO [22101]: SERVER_NAME = oameye.works.coregrade.com -- 19:17:27.966 INFO [22101]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:17:27.966 INFO [22101]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:17:27.966 INFO [22101]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:17:27.977 INFO [22101]: COREGRADE is stopping... -- 19:17:27.977 DEBUG [22101]: Closing database connection -- 19:17:27.977 SQL [22101]: pgsql_close() -- 19:17:28.118 INFO [22101]: COREGRADE is starting... -- 19:17:28.118 INFO [22101]: Version from config: 1.0 -- 19:17:28.118 DEBUG [22101]: Connecting to database... -- 19:17:28.118 DEBUG [22101]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:17:28.118 SQL [22101]: pgsql_db_connect() -- 19:17:28.122 DEBUG [22101]: Database connection successful -- 19:17:28.122 INFO [22101]: _SERVER found -- 19:17:28.122 INFO [22101]: REMOTE_ADDR = 192.168.1.13 -- 19:17:28.122 INFO [22101]: SERVER_NAME = oameye.works.coregrade.com -- 19:17:28.122 INFO [22101]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:17:28.122 INFO [22101]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:17:28.122 INFO [22101]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:17:28.133 INFO [22101]: COREGRADE is stopping... -- 19:17:28.133 DEBUG [22101]: Closing database connection -- 19:17:28.133 SQL [22101]: pgsql_close() -- 19:17:29.026 INFO [22101]: COREGRADE is starting... -- 19:17:29.027 INFO [22101]: Version from config: 1.0 -- 19:17:29.027 DEBUG [22101]: Connecting to database... -- 19:17:29.027 DEBUG [22101]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:17:29.027 SQL [22101]: pgsql_db_connect() -- 19:17:29.031 DEBUG [22101]: Database connection successful -- 19:17:29.031 INFO [22101]: _SERVER found -- 19:17:29.031 INFO [22101]: REMOTE_ADDR = 192.168.1.13 -- 19:17:29.031 INFO [22101]: SERVER_NAME = oameye.works.coregrade.com -- 19:17:29.031 INFO [22101]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:17:29.031 INFO [22101]: QUERY_STRING = /member/page -- 19:17:29.031 INFO [22101]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:17:29.068 INFO [22101]: COREGRADE is stopping... -- 19:17:29.068 DEBUG [22101]: Closing database connection -- 19:17:29.068 SQL [22101]: pgsql_close() -- 19:17:29.169 INFO [22101]: COREGRADE is starting... -- 19:17:29.169 INFO [22101]: Version from config: 1.0 -- 19:17:29.169 DEBUG [22101]: Connecting to database... -- 19:17:29.169 DEBUG [22101]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:17:29.169 SQL [22101]: pgsql_db_connect() -- 19:17:29.173 DEBUG [22101]: Database connection successful -- 19:17:29.173 INFO [22101]: _SERVER found -- 19:17:29.173 INFO [22101]: REMOTE_ADDR = 192.168.1.13 -- 19:17:29.173 INFO [22101]: SERVER_NAME = oameye.works.coregrade.com -- 19:17:29.173 INFO [22101]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:17:29.173 INFO [22101]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:17:29.173 INFO [22101]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:17:29.184 INFO [22101]: COREGRADE is stopping... -- 19:17:29.185 DEBUG [22101]: Closing database connection -- 19:17:29.185 SQL [22101]: pgsql_close() -- 19:17:29.270 INFO [22101]: COREGRADE is starting... -- 19:17:29.271 INFO [22101]: Version from config: 1.0 -- 19:17:29.271 DEBUG [22101]: Connecting to database... -- 19:17:29.271 DEBUG [22101]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:17:29.271 SQL [22101]: pgsql_db_connect() -- 19:17:29.275 DEBUG [22101]: Database connection successful -- 19:17:29.275 INFO [22101]: _SERVER found -- 19:17:29.275 INFO [22101]: REMOTE_ADDR = 192.168.1.13 -- 19:17:29.275 INFO [22101]: SERVER_NAME = oameye.works.coregrade.com -- 19:17:29.275 INFO [22101]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:17:29.275 INFO [22101]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:17:29.275 INFO [22101]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:17:29.286 INFO [22101]: COREGRADE is stopping... -- 19:17:29.286 DEBUG [22101]: Closing database connection -- 19:17:29.286 SQL [22101]: pgsql_close() -- 19:17:31.624 INFO [22101]: COREGRADE is starting... -- 19:17:31.624 INFO [22101]: Version from config: 1.0 -- 19:17:31.624 DEBUG [22101]: Connecting to database... -- 19:17:31.624 DEBUG [22101]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:17:31.624 SQL [22101]: pgsql_db_connect() -- 19:17:31.628 DEBUG [22101]: Database connection successful -- 19:17:31.628 INFO [22101]: _SERVER found -- 19:17:31.628 INFO [22101]: REMOTE_ADDR = 192.168.1.13 -- 19:17:31.628 INFO [22101]: SERVER_NAME = oameye.works.coregrade.com -- 19:17:31.628 INFO [22101]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:17:31.628 INFO [22101]: QUERY_STRING = /member/viewCardAddAction -- 19:17:31.628 INFO [22101]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:17:31.659 INFO [22101]: COREGRADE is stopping... -- 19:17:31.659 DEBUG [22101]: Closing database connection -- 19:17:31.659 SQL [22101]: pgsql_close() -- 19:17:42.295 INFO [22052]: COREGRADE is starting... -- 19:17:42.296 INFO [22052]: Version from config: 1.0 -- 19:17:42.296 DEBUG [22052]: Connecting to database... -- 19:17:42.296 DEBUG [22052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:17:42.296 SQL [22052]: pgsql_db_connect() -- 19:17:42.330 INFO [22052]: COREGRADE is starting... -- 19:17:42.331 INFO [22052]: Version from config: 1.0 -- 19:17:42.331 DEBUG [22052]: Connecting to database... -- 19:17:42.331 DEBUG [22052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:17:42.331 SQL [22052]: pgsql_db_connect() -- 19:17:42.335 DEBUG [22052]: Database connection successful -- 19:17:42.335 INFO [22052]: _SERVER found -- 19:17:42.335 INFO [22052]: REMOTE_ADDR = 192.168.1.13 -- 19:17:42.335 INFO [22052]: SERVER_NAME = oameye.works.coregrade.com -- 19:17:42.335 INFO [22052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:17:42.335 INFO [22052]: QUERY_STRING = -- 19:17:42.335 INFO [22052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:17:42.335 INFO [22052]: SystemStatus()09-09-********~************ -- 19:17:42.335 INFO [22052]: long coregrade_api_main(CVars in, CVars &out) -- 19:17:42.335 INFO [22052]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 19:17:42.335 INFO [22052]: account calls -- 19:17:42.335 INFO [22052]: account_calls() -- 19:17:42.335 INFO [22052]: AddPageCard() -- 19:17:42.335 FLOG_MAX [22052]: REQ_STRING(title) -- 19:17:42.335 FLOG_MAX [22052]: REQ_STRING(item_type) -- 19:17:42.335 FLOG_MAX [22052]: REQ_STRING(sessionid) -- 19:17:42.335 FLOG_MAX [22052]: REQ_STRING(detail) -- 19:17:42.335 FLOG_MAX [22052]: Bad parameter exception: 'page_id' -- 19:17:42.335 INFO [22052]: /AddPageCard() -- 19:17:42.335 INFO [22052]: RET: result=YES I GET TO BACK END -- 19:17:42.335 INFO [22052]: RET: status=Invalid session ID -- 19:17:42.335 INFO [22052]: COREGRADE is stopping... -- 19:17:42.335 DEBUG [22052]: Closing database connection -- 19:17:42.335 SQL [22052]: pgsql_close() -- 19:17:42.300 DEBUG [22052]: Database connection successful -- 19:17:42.300 INFO [22052]: _SERVER found -- 19:17:42.300 INFO [22052]: REMOTE_ADDR = 192.168.1.13 -- 19:17:42.300 INFO [22052]: SERVER_NAME = oameye.works.coregrade.com -- 19:17:42.300 INFO [22052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:17:42.300 INFO [22052]: QUERY_STRING = /member/addNotecard -- 19:17:42.300 INFO [22052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:17:42.336 INFO [22052]: COREGRADE is stopping... -- 19:17:42.336 DEBUG [22052]: Closing database connection -- 19:17:42.336 SQL [22052]: pgsql_close() -- 19:18:14.964 INFO [22050]: COREGRADE is starting... -- 19:18:14.964 INFO [22050]: Version from config: 1.0 -- 19:18:14.964 DEBUG [22050]: Connecting to database... -- 19:18:14.964 DEBUG [22050]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:18:14.964 SQL [22050]: pgsql_db_connect() -- 19:18:14.968 DEBUG [22050]: Database connection successful -- 19:18:14.968 INFO [22050]: _SERVER found -- 19:18:14.968 INFO [22050]: REMOTE_ADDR = 192.168.1.13 -- 19:18:14.968 INFO [22050]: SERVER_NAME = oameye.works.coregrade.com -- 19:18:14.968 INFO [22050]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:18:14.968 INFO [22050]: QUERY_STRING = /member/viewCardAddAction -- 19:18:14.968 INFO [22050]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:18:15.001 INFO [22050]: COREGRADE is stopping... -- 19:18:15.001 DEBUG [22050]: Closing database connection -- 19:18:15.001 SQL [22050]: pgsql_close() -- 19:18:15.585 INFO [22050]: COREGRADE is starting... -- 19:18:15.585 INFO [22050]: Version from config: 1.0 -- 19:18:15.585 DEBUG [22050]: Connecting to database... -- 19:18:15.585 DEBUG [22050]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:18:15.585 SQL [22050]: pgsql_db_connect() -- 19:18:15.589 DEBUG [22050]: Database connection successful -- 19:18:15.589 INFO [22050]: _SERVER found -- 19:18:15.589 INFO [22050]: REMOTE_ADDR = 192.168.1.13 -- 19:18:15.590 INFO [22050]: SERVER_NAME = oameye.works.coregrade.com -- 19:18:15.590 INFO [22050]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:18:15.590 INFO [22050]: QUERY_STRING = /member/viewCardAddAction -- 19:18:15.590 INFO [22050]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:18:15.620 INFO [22050]: COREGRADE is stopping... -- 19:18:15.620 DEBUG [22050]: Closing database connection -- 19:18:15.620 SQL [22050]: pgsql_close() -- 19:18:26.413 INFO [22049]: COREGRADE is starting... -- 19:18:26.414 INFO [22049]: Version from config: 1.0 -- 19:18:26.414 DEBUG [22049]: Connecting to database... -- 19:18:26.414 DEBUG [22049]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:18:26.414 SQL [22049]: pgsql_db_connect() -- 19:18:26.449 INFO [22049]: COREGRADE is starting... -- 19:18:26.449 INFO [22049]: Version from config: 1.0 -- 19:18:26.449 DEBUG [22049]: Connecting to database... -- 19:18:26.449 DEBUG [22049]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:18:26.449 SQL [22049]: pgsql_db_connect() -- 19:18:26.453 DEBUG [22049]: Database connection successful -- 19:18:26.453 INFO [22049]: _SERVER found -- 19:18:26.453 INFO [22049]: REMOTE_ADDR = 192.168.1.13 -- 19:18:26.453 INFO [22049]: SERVER_NAME = oameye.works.coregrade.com -- 19:18:26.453 INFO [22049]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:18:26.453 INFO [22049]: QUERY_STRING = -- 19:18:26.453 INFO [22049]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:18:26.453 INFO [22049]: SystemStatus()09-09-********~************ -- 19:18:26.453 INFO [22049]: long coregrade_api_main(CVars in, CVars &out) -- 19:18:26.453 INFO [22049]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 19:18:26.453 INFO [22049]: account calls -- 19:18:26.453 INFO [22049]: account_calls() -- 19:18:26.453 INFO [22049]: AddPageCard() -- 19:18:26.453 FLOG_MAX [22049]: REQ_STRING(title) -- 19:18:26.453 FLOG_MAX [22049]: REQ_STRING(item_type) -- 19:18:26.453 FLOG_MAX [22049]: REQ_STRING(sessionid) -- 19:18:26.453 FLOG_MAX [22049]: REQ_STRING(detail) -- 19:18:26.454 FLOG_MAX [22049]: Bad parameter exception: 'page_id' -- 19:18:26.454 INFO [22049]: /AddPageCard() -- 19:18:26.454 INFO [22049]: RET: result=YES I GET TO BACK END -- 19:18:26.454 INFO [22049]: RET: status=Invalid session ID -- 19:18:26.454 INFO [22049]: COREGRADE is stopping... -- 19:18:26.454 DEBUG [22049]: Closing database connection -- 19:18:26.454 SQL [22049]: pgsql_close() -- 19:18:26.418 DEBUG [22049]: Database connection successful -- 19:18:26.418 INFO [22049]: _SERVER found -- 19:18:26.418 INFO [22049]: REMOTE_ADDR = 192.168.1.13 -- 19:18:26.418 INFO [22049]: SERVER_NAME = oameye.works.coregrade.com -- 19:18:26.418 INFO [22049]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:18:26.418 INFO [22049]: QUERY_STRING = /member/addNotecard -- 19:18:26.418 INFO [22049]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:18:26.454 INFO [22049]: COREGRADE is stopping... -- 19:18:26.454 DEBUG [22049]: Closing database connection -- 19:18:26.454 SQL [22049]: pgsql_close() -- 19:18:32.540 INFO [22106]: COREGRADE is starting... -- 19:18:32.540 INFO [22106]: Version from config: 1.0 -- 19:18:32.540 DEBUG [22106]: Connecting to database... -- 19:18:32.540 DEBUG [22106]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:18:32.540 SQL [22106]: pgsql_db_connect() -- 19:18:32.545 INFO [22048]: COREGRADE is starting... -- 19:18:32.545 INFO [22048]: Version from config: 1.0 -- 19:18:32.545 DEBUG [22048]: Connecting to database... -- 19:18:32.545 DEBUG [22048]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:18:32.545 SQL [22048]: pgsql_db_connect() -- 19:18:32.544 DEBUG [22106]: Database connection successful -- 19:18:32.544 INFO [22106]: _SERVER found -- 19:18:32.544 INFO [22106]: REMOTE_ADDR = 192.168.1.13 -- 19:18:32.544 INFO [22106]: SERVER_NAME = oameye.works.coregrade.com -- 19:18:32.544 INFO [22106]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:18:32.544 INFO [22106]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 19:18:32.544 INFO [22106]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:18:32.556 INFO [22106]: COREGRADE is stopping... -- 19:18:32.556 DEBUG [22106]: Closing database connection -- 19:18:32.556 SQL [22106]: pgsql_close() -- 19:18:32.549 DEBUG [22048]: Database connection successful -- 19:18:32.549 INFO [22048]: _SERVER found -- 19:18:32.549 INFO [22048]: REMOTE_ADDR = 192.168.1.13 -- 19:18:32.549 INFO [22048]: SERVER_NAME = oameye.works.coregrade.com -- 19:18:32.549 INFO [22048]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:18:32.549 INFO [22048]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 19:18:32.549 INFO [22048]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:18:32.560 INFO [22048]: COREGRADE is stopping... -- 19:18:32.561 DEBUG [22048]: Closing database connection -- 19:18:32.561 SQL [22048]: pgsql_close() -- 19:20:09.892 INFO [22203]: COREGRADE is starting... -- 19:20:09.892 INFO [22203]: Version from config: 1.0 -- 19:20:09.892 DEBUG [22203]: Connecting to database... -- 19:20:09.892 DEBUG [22203]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:09.892 SQL [22203]: pgsql_db_connect() -- 19:20:09.928 INFO [22203]: COREGRADE is starting... -- 19:20:09.928 INFO [22203]: Version from config: 1.0 -- 19:20:09.928 DEBUG [22203]: Connecting to database... -- 19:20:09.928 DEBUG [22203]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:09.928 SQL [22203]: pgsql_db_connect() -- 19:20:09.932 DEBUG [22203]: Database connection successful -- 19:20:09.932 INFO [22203]: _SERVER found -- 19:20:09.932 INFO [22203]: REMOTE_ADDR = 192.168.1.13 -- 19:20:09.932 INFO [22203]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:09.932 INFO [22203]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:20:09.932 INFO [22203]: QUERY_STRING = -- 19:20:09.932 INFO [22203]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:09.932 INFO [22203]: SystemStatus()09-09-********~************ -- 19:20:09.932 INFO [22203]: long coregrade_api_main(CVars in, CVars &out) -- 19:20:09.932 INFO [22203]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 19:20:09.932 INFO [22203]: account calls -- 19:20:09.932 INFO [22203]: account_calls() -- 19:20:09.932 INFO [22203]: AddPageCard() -- 19:20:09.932 FLOG_MAX [22203]: REQ_STRING(title) -- 19:20:09.932 FLOG_MAX [22203]: REQ_STRING(item_type) -- 19:20:09.932 FLOG_MAX [22203]: REQ_STRING(sessionid) -- 19:20:09.932 FLOG_MAX [22203]: REQ_STRING(detail) -- 19:20:09.932 FLOG_MAX [22203]: insert_db_record() -- 19:20:09.932 SQL [22203]: pgsql_exec() -- 19:20:09.933 SQL [22203]: About to run query: -- 19:20:09.933 SQL [22203]: INSERT INTO members_page_item (detail,member_id,page_id,title) VALUES ('ADJSAAJSSAKJSA LSA A HAAKJDA UDLKJSAD KJ DHD','5','7','ajasjkd aa lkja LKJDASD SAD JKJSA DSA') -- 19:20:09.934 SQL [22203]: Affected rows: ERROR -- 19:20:09.934 FLOG_MAX [22203]: SELECT currval('members_page_item_id_seq') -- 19:20:09.935 SQL [22203]: pgsql_query() -- 19:20:09.935 SQL [22203]: About to run query: -- 19:20:09.935 SQL [22203]: SELECT currval('members_page_item_id_seq') -- 19:20:09.935 SQL [22203]: Found rows: 1 -- 19:20:09.935 INFO [22203]: /AddPageCard() -- 19:20:09.935 INFO [22203]: RET: result=YES I GET TO BACK END -- 19:20:09.935 INFO [22203]: COREGRADE is stopping... -- 19:20:09.935 DEBUG [22203]: Closing database connection -- 19:20:09.935 SQL [22203]: pgsql_close() -- 19:20:09.896 DEBUG [22203]: Database connection successful -- 19:20:09.896 INFO [22203]: _SERVER found -- 19:20:09.896 INFO [22203]: REMOTE_ADDR = 192.168.1.13 -- 19:20:09.896 INFO [22203]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:09.896 INFO [22203]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:20:09.896 INFO [22203]: QUERY_STRING = /member/addNotecard -- 19:20:09.896 INFO [22203]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:09.935 INFO [22203]: COREGRADE is stopping... -- 19:20:09.936 DEBUG [22203]: Closing database connection -- 19:20:09.936 SQL [22203]: pgsql_close() -- 19:22:13.966 INFO [22914]: COREGRADE is starting... -- 19:22:13.966 INFO [22914]: Version from config: 1.0 -- 19:22:13.966 DEBUG [22914]: Connecting to database... -- 19:22:13.966 DEBUG [22914]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:22:13.966 SQL [22914]: pgsql_db_connect() -- 19:22:14.008 INFO [22914]: COREGRADE is starting... -- 19:22:14.008 INFO [22914]: Version from config: 1.0 -- 19:22:14.008 DEBUG [22914]: Connecting to database... -- 19:22:14.008 DEBUG [22914]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:22:14.008 SQL [22914]: pgsql_db_connect() -- 19:22:14.012 DEBUG [22914]: Database connection successful -- 19:22:14.012 INFO [22914]: _SERVER found -- 19:22:14.012 INFO [22914]: REMOTE_ADDR = 192.168.1.13 -- 19:22:14.012 INFO [22914]: SERVER_NAME = oameye.works.coregrade.com -- 19:22:14.012 INFO [22914]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:22:14.012 INFO [22914]: QUERY_STRING = -- 19:22:14.012 INFO [22914]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:22:14.012 INFO [22914]: SystemStatus()09-09-********~************ -- 19:22:14.012 INFO [22914]: long coregrade_api_main(CVars in, CVars &out) -- 19:22:14.012 INFO [22914]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 19:22:14.012 INFO [22914]: account calls -- 19:22:14.012 INFO [22914]: account_calls() -- 19:22:14.012 INFO [22914]: AddPageCard() -- 19:22:14.012 FLOG_MAX [22914]: REQ_STRING(title) -- 19:22:14.012 FLOG_MAX [22914]: REQ_STRING(item_type) -- 19:22:14.012 FLOG_MAX [22914]: REQ_STRING(sessionid) -- 19:22:14.012 FLOG_MAX [22914]: REQ_STRING(detail) -- 19:22:14.013 FLOG_MAX [22914]: insert_db_record() -- 19:22:14.013 SQL [22914]: pgsql_exec() -- 19:22:14.013 SQL [22914]: About to run query: -- 19:22:14.013 SQL [22914]: INSERT INTO members_page_item (detail,item_type,member_id,page_id,title) VALUES ('ADJSAAJSSAKJSA LSA A HAAKJDA UDLKJSAD KJ DHD','NOTECARD','5','7','ajasjkd aa lkja LKJDASD SAD JKJSA DSA') -- 19:22:14.017 SQL [22914]: PQcmdTuples: 1 -- 19:22:14.017 SQL [22914]: Affected rows: 1 -- 19:22:14.017 FLOG_MAX [22914]: SELECT currval('members_page_item_id_seq') -- 19:22:14.017 SQL [22914]: pgsql_query() -- 19:22:14.017 SQL [22914]: About to run query: -- 19:22:14.017 SQL [22914]: SELECT currval('members_page_item_id_seq') -- 19:22:14.018 SQL [22914]: Found rows: 1 -- 19:22:14.018 INFO [22914]: /AddPageCard() -- 19:22:14.018 INFO [22914]: RET: result=YES I GET TO BACK END -- 19:22:14.018 INFO [22914]: COREGRADE is stopping... -- 19:22:14.018 DEBUG [22914]: Closing database connection -- 19:22:14.018 SQL [22914]: pgsql_close() -- 19:22:13.971 DEBUG [22914]: Database connection successful -- 19:22:13.971 INFO [22914]: _SERVER found -- 19:22:13.971 INFO [22914]: REMOTE_ADDR = 192.168.1.13 -- 19:22:13.971 INFO [22914]: SERVER_NAME = oameye.works.coregrade.com -- 19:22:13.971 INFO [22914]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:22:13.971 INFO [22914]: QUERY_STRING = /member/addNotecard -- 19:22:13.971 INFO [22914]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:22:14.019 INFO [22914]: COREGRADE is stopping... -- 19:22:14.019 DEBUG [22914]: Closing database connection -- 19:22:14.019 SQL [22914]: pgsql_close() -- 19:22:41.412 INFO [22915]: COREGRADE is starting... -- 19:22:41.412 INFO [22915]: Version from config: 1.0 -- 19:22:41.412 DEBUG [22915]: Connecting to database... -- 19:22:41.412 DEBUG [22915]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:22:41.412 SQL [22915]: pgsql_db_connect() -- 19:22:41.454 INFO [22915]: COREGRADE is starting... -- 19:22:41.454 INFO [22915]: Version from config: 1.0 -- 19:22:41.454 DEBUG [22915]: Connecting to database... -- 19:22:41.454 DEBUG [22915]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:22:41.454 SQL [22915]: pgsql_db_connect() -- 19:22:41.458 DEBUG [22915]: Database connection successful -- 19:22:41.458 INFO [22915]: _SERVER found -- 19:22:41.458 INFO [22915]: REMOTE_ADDR = 192.168.1.13 -- 19:22:41.458 INFO [22915]: SERVER_NAME = oameye.works.coregrade.com -- 19:22:41.458 INFO [22915]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:22:41.458 INFO [22915]: QUERY_STRING = -- 19:22:41.458 INFO [22915]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:22:41.458 INFO [22915]: SystemStatus()09-09-********~************ -- 19:22:41.458 INFO [22915]: long coregrade_api_main(CVars in, CVars &out) -- 19:22:41.458 INFO [22915]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 19:22:41.458 INFO [22915]: account calls -- 19:22:41.458 INFO [22915]: account_calls() -- 19:22:41.458 INFO [22915]: AddPageCard() -- 19:22:41.458 FLOG_MAX [22915]: REQ_STRING(title) -- 19:22:41.459 FLOG_MAX [22915]: REQ_STRING(item_type) -- 19:22:41.459 FLOG_MAX [22915]: REQ_STRING(sessionid) -- 19:22:41.459 FLOG_MAX [22915]: REQ_STRING(detail) -- 19:22:41.459 FLOG_MAX [22915]: insert_db_record() -- 19:22:41.459 SQL [22915]: pgsql_exec() -- 19:22:41.459 SQL [22915]: About to run query: -- 19:22:41.459 SQL [22915]: INSERT INTO members_page_item (detail,item_type,member_id,page_id,title) VALUES ('ADJSAAJSSAKJSA LSA A HAAKJDA UDLKJSAD KJ DHD','NOTECARD','5','7','ajasjkd aa lkja LKJDASD SAD JKJSA DSA') -- 19:22:41.464 SQL [22915]: PQcmdTuples: 1 -- 19:22:41.464 SQL [22915]: Affected rows: 1 -- 19:22:41.464 FLOG_MAX [22915]: SELECT currval('members_page_item_id_seq') -- 19:22:41.464 SQL [22915]: pgsql_query() -- 19:22:41.464 SQL [22915]: About to run query: -- 19:22:41.464 SQL [22915]: SELECT currval('members_page_item_id_seq') -- 19:22:41.464 SQL [22915]: Found rows: 1 -- 19:22:41.464 INFO [22915]: /AddPageCard() -- 19:22:41.464 INFO [22915]: RET: result=YES I GET TO BACK END -- 19:22:41.464 INFO [22915]: COREGRADE is stopping... -- 19:22:41.464 DEBUG [22915]: Closing database connection -- 19:22:41.464 SQL [22915]: pgsql_close() -- 19:22:41.417 DEBUG [22915]: Database connection successful -- 19:22:41.417 INFO [22915]: _SERVER found -- 19:22:41.417 INFO [22915]: REMOTE_ADDR = 192.168.1.13 -- 19:22:41.417 INFO [22915]: SERVER_NAME = oameye.works.coregrade.com -- 19:22:41.417 INFO [22915]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:22:41.417 INFO [22915]: QUERY_STRING = /member/addNotecard -- 19:22:41.417 INFO [22915]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:22:41.465 INFO [22915]: COREGRADE is stopping... -- 19:22:41.465 DEBUG [22915]: Closing database connection -- 19:22:41.465 SQL [22915]: pgsql_close() -- 19:22:44.074 INFO [22915]: COREGRADE is starting... -- 19:22:44.075 INFO [22915]: Version from config: 1.0 -- 19:22:44.075 DEBUG [22915]: Connecting to database... -- 19:22:44.075 DEBUG [22915]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:22:44.075 SQL [22915]: pgsql_db_connect() -- 19:22:44.113 INFO [22915]: COREGRADE is starting... -- 19:22:44.113 INFO [22915]: Version from config: 1.0 -- 19:22:44.113 DEBUG [22915]: Connecting to database... -- 19:22:44.113 DEBUG [22915]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:22:44.114 SQL [22915]: pgsql_db_connect() -- 19:22:44.117 DEBUG [22915]: Database connection successful -- 19:22:44.117 INFO [22915]: _SERVER found -- 19:22:44.117 INFO [22915]: REMOTE_ADDR = 192.168.1.13 -- 19:22:44.117 INFO [22915]: SERVER_NAME = oameye.works.coregrade.com -- 19:22:44.117 INFO [22915]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:22:44.117 INFO [22915]: QUERY_STRING = -- 19:22:44.117 INFO [22915]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:22:44.117 INFO [22915]: SystemStatus()09-09-********~************ -- 19:22:44.117 INFO [22915]: long coregrade_api_main(CVars in, CVars &out) -- 19:22:44.117 INFO [22915]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 19:22:44.117 INFO [22915]: account calls -- 19:22:44.117 INFO [22915]: account_calls() -- 19:22:44.118 INFO [22915]: AddPageCard() -- 19:22:44.118 FLOG_MAX [22915]: REQ_STRING(title) -- 19:22:44.118 FLOG_MAX [22915]: REQ_STRING(item_type) -- 19:22:44.118 FLOG_MAX [22915]: REQ_STRING(sessionid) -- 19:22:44.118 FLOG_MAX [22915]: REQ_STRING(detail) -- 19:22:44.118 FLOG_MAX [22915]: insert_db_record() -- 19:22:44.118 SQL [22915]: pgsql_exec() -- 19:22:44.118 SQL [22915]: About to run query: -- 19:22:44.118 SQL [22915]: INSERT INTO members_page_item (detail,item_type,member_id,page_id,title) VALUES ('ADJSAAJSSAKJSA LSA A HAAKJDA UDLKJSAD KJ DHD','NOTECARD','5','7','ajasjkd aa lkja LKJDASD SAD JKJSA DSA') -- 19:22:44.122 SQL [22915]: PQcmdTuples: 1 -- 19:22:44.122 SQL [22915]: Affected rows: 1 -- 19:22:44.122 FLOG_MAX [22915]: SELECT currval('members_page_item_id_seq') -- 19:22:44.122 SQL [22915]: pgsql_query() -- 19:22:44.122 SQL [22915]: About to run query: -- 19:22:44.122 SQL [22915]: SELECT currval('members_page_item_id_seq') -- 19:22:44.123 SQL [22915]: Found rows: 1 -- 19:22:44.123 INFO [22915]: /AddPageCard() -- 19:22:44.123 INFO [22915]: RET: result=YES I GET TO BACK END -- 19:22:44.123 INFO [22915]: COREGRADE is stopping... -- 19:22:44.123 DEBUG [22915]: Closing database connection -- 19:22:44.123 SQL [22915]: pgsql_close() -- 19:22:44.079 DEBUG [22915]: Database connection successful -- 19:22:44.079 INFO [22915]: _SERVER found -- 19:22:44.079 INFO [22915]: REMOTE_ADDR = 192.168.1.13 -- 19:22:44.079 INFO [22915]: SERVER_NAME = oameye.works.coregrade.com -- 19:22:44.079 INFO [22915]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:22:44.079 INFO [22915]: QUERY_STRING = /member/addNotecard -- 19:22:44.079 INFO [22915]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:22:44.123 INFO [22915]: COREGRADE is stopping... -- 19:22:44.123 DEBUG [22915]: Closing database connection -- 19:22:44.123 SQL [22915]: pgsql_close() -- 19:22:52.763 INFO [22916]: COREGRADE is starting... -- 19:22:52.763 INFO [22916]: Version from config: 1.0 -- 19:22:52.763 DEBUG [22916]: Connecting to database... -- 19:22:52.763 DEBUG [22916]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:22:52.763 SQL [22916]: pgsql_db_connect() -- 19:22:52.804 INFO [22916]: COREGRADE is starting... -- 19:22:52.804 INFO [22916]: Version from config: 1.0 -- 19:22:52.804 DEBUG [22916]: Connecting to database... -- 19:22:52.804 DEBUG [22916]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:22:52.804 SQL [22916]: pgsql_db_connect() -- 19:22:52.808 DEBUG [22916]: Database connection successful -- 19:22:52.808 INFO [22916]: _SERVER found -- 19:22:52.808 INFO [22916]: REMOTE_ADDR = 192.168.1.13 -- 19:22:52.808 INFO [22916]: SERVER_NAME = oameye.works.coregrade.com -- 19:22:52.808 INFO [22916]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:22:52.808 INFO [22916]: QUERY_STRING = -- 19:22:52.808 INFO [22916]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:22:52.808 INFO [22916]: SystemStatus()09-09-********~************ -- 19:22:52.808 INFO [22916]: long coregrade_api_main(CVars in, CVars &out) -- 19:22:52.808 INFO [22916]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 19:22:52.808 INFO [22916]: account calls -- 19:22:52.808 INFO [22916]: account_calls() -- 19:22:52.808 INFO [22916]: AddPageCard() -- 19:22:52.808 FLOG_MAX [22916]: REQ_STRING(title) -- 19:22:52.808 FLOG_MAX [22916]: REQ_STRING(item_type) -- 19:22:52.808 FLOG_MAX [22916]: REQ_STRING(sessionid) -- 19:22:52.808 FLOG_MAX [22916]: REQ_STRING(detail) -- 19:22:52.808 FLOG_MAX [22916]: insert_db_record() -- 19:22:52.808 SQL [22916]: pgsql_exec() -- 19:22:52.808 SQL [22916]: About to run query: -- 19:22:52.808 SQL [22916]: INSERT INTO members_page_item (detail,item_type,member_id,page_id,title) VALUES ('ADJSAAJSSAKJSA LSA A HAAKJDA UDLKJSAD KJ DHD','NOTECARD','5','7','This is the test') -- 19:22:52.813 SQL [22916]: PQcmdTuples: 1 -- 19:22:52.813 SQL [22916]: Affected rows: 1 -- 19:22:52.813 FLOG_MAX [22916]: SELECT currval('members_page_item_id_seq') -- 19:22:52.813 SQL [22916]: pgsql_query() -- 19:22:52.813 SQL [22916]: About to run query: -- 19:22:52.813 SQL [22916]: SELECT currval('members_page_item_id_seq') -- 19:22:52.814 SQL [22916]: Found rows: 1 -- 19:22:52.814 INFO [22916]: /AddPageCard() -- 19:22:52.814 INFO [22916]: RET: result=YES I GET TO BACK END -- 19:22:52.814 INFO [22916]: COREGRADE is stopping... -- 19:22:52.814 DEBUG [22916]: Closing database connection -- 19:22:52.814 SQL [22916]: pgsql_close() -- 19:22:52.767 DEBUG [22916]: Database connection successful -- 19:22:52.767 INFO [22916]: _SERVER found -- 19:22:52.767 INFO [22916]: REMOTE_ADDR = 192.168.1.13 -- 19:22:52.767 INFO [22916]: SERVER_NAME = oameye.works.coregrade.com -- 19:22:52.767 INFO [22916]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:22:52.767 INFO [22916]: QUERY_STRING = /member/addNotecard -- 19:22:52.767 INFO [22916]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:22:52.815 INFO [22916]: COREGRADE is stopping... -- 19:22:52.815 DEBUG [22916]: Closing database connection -- 19:22:52.815 SQL [22916]: pgsql_close() -- 19:23:04.477 INFO [22918]: COREGRADE is starting... -- 19:23:04.477 INFO [22918]: Version from config: 1.0 -- 19:23:04.477 DEBUG [22918]: Connecting to database... -- 19:23:04.477 DEBUG [22918]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:23:04.477 SQL [22918]: pgsql_db_connect() -- 19:23:04.518 INFO [22918]: COREGRADE is starting... -- 19:23:04.519 INFO [22918]: Version from config: 1.0 -- 19:23:04.519 DEBUG [22918]: Connecting to database... -- 19:23:04.519 DEBUG [22918]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:23:04.519 SQL [22918]: pgsql_db_connect() -- 19:23:04.523 DEBUG [22918]: Database connection successful -- 19:23:04.523 INFO [22918]: _SERVER found -- 19:23:04.523 INFO [22918]: REMOTE_ADDR = 192.168.1.13 -- 19:23:04.523 INFO [22918]: SERVER_NAME = oameye.works.coregrade.com -- 19:23:04.523 INFO [22918]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:23:04.523 INFO [22918]: QUERY_STRING = -- 19:23:04.523 INFO [22918]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:23:04.523 INFO [22918]: SystemStatus()09-09-********~************ -- 19:23:04.523 INFO [22918]: long coregrade_api_main(CVars in, CVars &out) -- 19:23:04.523 INFO [22918]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 19:23:04.523 INFO [22918]: account calls -- 19:23:04.523 INFO [22918]: account_calls() -- 19:23:04.523 INFO [22918]: AddPageCard() -- 19:23:04.523 FLOG_MAX [22918]: REQ_STRING(title) -- 19:23:04.523 FLOG_MAX [22918]: REQ_STRING(item_type) -- 19:23:04.523 FLOG_MAX [22918]: REQ_STRING(sessionid) -- 19:23:04.523 FLOG_MAX [22918]: REQ_STRING(detail) -- 19:23:04.523 FLOG_MAX [22918]: insert_db_record() -- 19:23:04.523 SQL [22918]: pgsql_exec() -- 19:23:04.523 SQL [22918]: About to run query: -- 19:23:04.523 SQL [22918]: INSERT INTO members_page_item (detail,item_type,member_id,page_id,title) VALUES ('ADJSAAJSSAKJSA LSA A HAAKJDA UDLKJSAD KJ DHD','NOTECARD','5','7','Yes more test for me') -- 19:23:04.527 SQL [22918]: PQcmdTuples: 1 -- 19:23:04.528 SQL [22918]: Affected rows: 1 -- 19:23:04.528 FLOG_MAX [22918]: SELECT currval('members_page_item_id_seq') -- 19:23:04.528 SQL [22918]: pgsql_query() -- 19:23:04.528 SQL [22918]: About to run query: -- 19:23:04.528 SQL [22918]: SELECT currval('members_page_item_id_seq') -- 19:23:04.528 SQL [22918]: Found rows: 1 -- 19:23:04.528 INFO [22918]: /AddPageCard() -- 19:23:04.528 INFO [22918]: RET: result=YES I GET TO BACK END -- 19:23:04.528 INFO [22918]: COREGRADE is stopping... -- 19:23:04.528 DEBUG [22918]: Closing database connection -- 19:23:04.528 SQL [22918]: pgsql_close() -- 19:23:04.481 DEBUG [22918]: Database connection successful -- 19:23:04.481 INFO [22918]: _SERVER found -- 19:23:04.481 INFO [22918]: REMOTE_ADDR = 192.168.1.13 -- 19:23:04.481 INFO [22918]: SERVER_NAME = oameye.works.coregrade.com -- 19:23:04.481 INFO [22918]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:23:04.481 INFO [22918]: QUERY_STRING = /member/addNotecard -- 19:23:04.481 INFO [22918]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:23:04.529 INFO [22918]: COREGRADE is stopping... -- 19:23:04.529 DEBUG [22918]: Closing database connection -- 19:23:04.529 SQL [22918]: pgsql_close() -- 19:24:39.038 INFO [22917]: COREGRADE is starting... -- 19:24:39.038 INFO [22917]: Version from config: 1.0 -- 19:24:39.038 DEBUG [22917]: Connecting to database... -- 19:24:39.038 DEBUG [22917]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:24:39.038 SQL [22917]: pgsql_db_connect() -- 19:24:39.080 INFO [22917]: COREGRADE is starting... -- 19:24:39.081 INFO [22917]: Version from config: 1.0 -- 19:24:39.081 DEBUG [22917]: Connecting to database... -- 19:24:39.081 DEBUG [22917]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:24:39.081 SQL [22917]: pgsql_db_connect() -- 19:24:39.085 DEBUG [22917]: Database connection successful -- 19:24:39.085 INFO [22917]: _SERVER found -- 19:24:39.085 INFO [22917]: REMOTE_ADDR = 192.168.1.13 -- 19:24:39.085 INFO [22917]: SERVER_NAME = oameye.works.coregrade.com -- 19:24:39.085 INFO [22917]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:24:39.085 INFO [22917]: QUERY_STRING = -- 19:24:39.085 INFO [22917]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:24:39.085 INFO [22917]: SystemStatus()09-09-********~************ -- 19:24:39.085 INFO [22917]: long coregrade_api_main(CVars in, CVars &out) -- 19:24:39.085 INFO [22917]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 19:24:39.085 INFO [22917]: account calls -- 19:24:39.085 INFO [22917]: account_calls() -- 19:24:39.085 INFO [22917]: LoginCoreGradeAccount() -- 19:24:39.085 FLOG_MAX [22917]: REQ_STRING(username) -- 19:24:39.085 FLOG_MAX [22917]: REQ_STRING(password) -- 19:24:39.085 FLOG_MAX [22917]: REQ_STRING(sessionid) -- 19:24:39.085 FLOG_MAX [22917]: long load_db_record( CVars &rec, const char * query, ... ) -- 19:24:39.085 SQL [22917]: pgsql_query() -- 19:24:39.085 SQL [22917]: About to run query: -- 19:24:39.085 SQL [22917]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 19:24:39.088 SQL [22917]: Found rows: 1 -- 19:24:39.088 FLOG_MAX [22917]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 19:24:39.088 INFO [22917]: long SessionCheck(long uid, const char *sessionid, int create ) -- 19:24:39.088 SQL [22917]: pgsql_exec() -- 19:24:39.089 SQL [22917]: About to run query: -- 19:24:39.089 SQL [22917]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 19:24:39.090 SQL [22917]: PQcmdTuples: 1 -- 19:24:39.090 SQL [22917]: Affected rows: 1 -- 19:24:39.090 SQL [22917]: pgsql_exec() -- 19:24:39.090 SQL [22917]: About to run query: -- 19:24:39.090 SQL [22917]: DELETE FROM members_session WHERE member_id=5 -- 19:24:39.090 SQL [22917]: PQcmdTuples: 0 -- 19:24:39.090 SQL [22917]: Affected rows: 0 -- 19:24:39.090 SQL [22917]: pgsql_query() -- 19:24:39.090 SQL [22917]: About to run query: -- 19:24:39.090 SQL [22917]: SELECT * FROM members_session WHERE member_id=5 AND session<>'A707BDB0ADD7B7FE43AD969B2374632B' -- 19:24:39.091 SQL [22917]: Found rows: 0 -- 19:24:39.091 SQL [22917]: Found rows: 0 -- 19:24:39.091 FLOG_MAX [22917]: long load_db_record( CVars &rec, const char * query, ... ) -- 19:24:39.091 SQL [22917]: pgsql_query() -- 19:24:39.091 SQL [22917]: About to run query: -- 19:24:39.091 SQL [22917]: SELECT * FROM members_session WHERE member_id=5 AND session='A707BDB0ADD7B7FE43AD969B2374632B' -- 19:24:39.091 SQL [22917]: Found rows: 0 -- 19:24:39.091 SQL [22917]: Found rows: 0 -- 19:24:39.092 FLOG_MAX [22917]: insert_db_record() -- 19:24:39.092 SQL [22917]: pgsql_exec() -- 19:24:39.092 SQL [22917]: About to run query: -- 19:24:39.092 SQL [22917]: INSERT INTO members_session (member_id,session) VALUES ('5','A707BDB0ADD7B7FE43AD969B2374632B') -- 19:24:39.093 SQL [22917]: PQcmdTuples: 1 -- 19:24:39.093 SQL [22917]: Affected rows: 1 -- 19:24:39.093 FLOG_MAX [22917]: SELECT currval('members_session_id_seq') -- 19:24:39.093 SQL [22917]: pgsql_query() -- 19:24:39.093 SQL [22917]: About to run query: -- 19:24:39.093 SQL [22917]: SELECT currval('members_session_id_seq') -- 19:24:39.093 SQL [22917]: Found rows: 1 -- 19:24:39.093 INFO [22917]: CreateDefaultPage() -- 19:24:39.093 FLOG_MAX [22917]: long load_db_record( CVars &rec, const char * query, ... ) -- 19:24:39.093 SQL [22917]: pgsql_query() -- 19:24:39.093 SQL [22917]: About to run query: -- 19:24:39.093 SQL [22917]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 19:24:39.094 SQL [22917]: Found rows: 1 -- 19:24:39.094 FLOG_MAX [22917]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 19:24:39.094 SQL [22917]: pgsql_query() -- 19:24:39.094 SQL [22917]: About to run query: -- 19:24:39.094 SQL [22917]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 19:24:39.094 SQL [22917]: Found rows: 1 -- 19:24:39.094 INFO [22917]: /CreateDefaultPage() -- 19:24:39.094 INFO [22917]: /LoginCoreGradeAccount() -- 19:24:39.094 INFO [22917]: RET: added=2020-02-05 06:47:23.982154 -- 19:24:39.094 INFO [22917]: RET: email=ameye+11@chiefsoft.com -- 19:24:39.094 INFO [22917]: RET: firstname=Olu -- 19:24:39.094 INFO [22917]: RET: id=5 -- 19:24:39.094 INFO [22917]: RET: last_login= -- 19:24:39.094 INFO [22917]: RET: lastname=Amey -- 19:24:39.094 INFO [22917]: RET: loc=192.168.1.13 -- 19:24:39.094 INFO [22917]: RET: member_id=5 -- 19:24:39.094 INFO [22917]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 19:24:39.094 INFO [22917]: RET: phone= -- 19:24:39.094 INFO [22917]: RET: pid= -- 19:24:39.094 INFO [22917]: RET: result=YES I GET TO BACK END -- 19:24:39.094 INFO [22917]: RET: sessionid=A707BDB0ADD7B7FE43AD969B2374632B -- 19:24:39.094 INFO [22917]: RET: status=1 -- 19:24:39.094 INFO [22917]: RET: stauts=OK -- 19:24:39.094 INFO [22917]: RET: username=ameye+11@chiefsoft.com -- 19:24:39.094 INFO [22917]: RET: verified= -- 19:24:39.096 INFO [22917]: COREGRADE is stopping... -- 19:24:39.096 DEBUG [22917]: Closing database connection -- 19:24:39.096 SQL [22917]: pgsql_close() -- 19:24:39.043 DEBUG [22917]: Database connection successful -- 19:24:39.043 INFO [22917]: _SERVER found -- 19:24:39.043 INFO [22917]: REMOTE_ADDR = 192.168.1.13 -- 19:24:39.043 INFO [22917]: SERVER_NAME = oameye.works.coregrade.com -- 19:24:39.043 INFO [22917]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=46bs8jf4lbr12jovu2lhttnbp5ufpsog -- 19:24:39.043 INFO [22917]: QUERY_STRING = /auth -- 19:24:39.043 INFO [22917]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:24:39.097 INFO [22917]: COREGRADE is stopping... -- 19:24:39.097 DEBUG [22917]: Closing database connection -- 19:24:39.097 SQL [22917]: pgsql_close() -- 19:24:39.118 INFO [22917]: COREGRADE is starting... -- 19:24:39.119 INFO [22917]: Version from config: 1.0 -- 19:24:39.119 DEBUG [22917]: Connecting to database... -- 19:24:39.119 DEBUG [22917]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:24:39.119 SQL [22917]: pgsql_db_connect() -- 19:24:39.123 DEBUG [22917]: Database connection successful -- 19:24:39.123 INFO [22917]: _SERVER found -- 19:24:39.123 INFO [22917]: REMOTE_ADDR = 192.168.1.13 -- 19:24:39.123 INFO [22917]: SERVER_NAME = oameye.works.coregrade.com -- 19:24:39.123 INFO [22917]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5851ckh5en2vbp46aocfkt210cl0kr3u -- 19:24:39.123 INFO [22917]: QUERY_STRING = /member/index -- 19:24:39.123 INFO [22917]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:24:39.160 INFO [22917]: COREGRADE is stopping... -- 19:24:39.160 DEBUG [22917]: Closing database connection -- 19:24:39.160 SQL [22917]: pgsql_close() -- 19:24:39.392 INFO [22917]: COREGRADE is starting... -- 19:24:39.392 INFO [22917]: Version from config: 1.0 -- 19:24:39.392 DEBUG [22917]: Connecting to database... -- 19:24:39.392 DEBUG [22917]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:24:39.392 SQL [22917]: pgsql_db_connect() -- 19:24:39.396 DEBUG [22917]: Database connection successful -- 19:24:39.396 INFO [22917]: _SERVER found -- 19:24:39.396 INFO [22917]: REMOTE_ADDR = 192.168.1.13 -- 19:24:39.396 INFO [22917]: SERVER_NAME = oameye.works.coregrade.com -- 19:24:39.396 INFO [22917]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5851ckh5en2vbp46aocfkt210cl0kr3u -- 19:24:39.396 INFO [22917]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:24:39.396 INFO [22917]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:24:39.407 INFO [22917]: COREGRADE is stopping... -- 19:24:39.407 DEBUG [22917]: Closing database connection -- 19:24:39.407 SQL [22917]: pgsql_close() -- 19:24:39.415 INFO [22917]: COREGRADE is starting... -- 19:24:39.415 INFO [22917]: Version from config: 1.0 -- 19:24:39.415 DEBUG [22917]: Connecting to database... -- 19:24:39.415 DEBUG [22917]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:24:39.415 SQL [22917]: pgsql_db_connect() -- 19:24:39.419 DEBUG [22917]: Database connection successful -- 19:24:39.419 INFO [22917]: _SERVER found -- 19:24:39.419 INFO [22917]: REMOTE_ADDR = 192.168.1.13 -- 19:24:39.419 INFO [22917]: SERVER_NAME = oameye.works.coregrade.com -- 19:24:39.419 INFO [22917]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5851ckh5en2vbp46aocfkt210cl0kr3u -- 19:24:39.419 INFO [22917]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:24:39.419 INFO [22917]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:24:39.430 INFO [22917]: COREGRADE is stopping... -- 19:24:39.430 DEBUG [22917]: Closing database connection -- 19:24:39.430 SQL [22917]: pgsql_close() -- 19:24:40.940 INFO [22917]: COREGRADE is starting... -- 19:24:40.940 INFO [22917]: Version from config: 1.0 -- 19:24:40.940 DEBUG [22917]: Connecting to database... -- 19:24:40.940 DEBUG [22917]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:24:40.940 SQL [22917]: pgsql_db_connect() -- 19:24:40.944 DEBUG [22917]: Database connection successful -- 19:24:40.944 INFO [22917]: _SERVER found -- 19:24:40.944 INFO [22917]: REMOTE_ADDR = 192.168.1.13 -- 19:24:40.944 INFO [22917]: SERVER_NAME = oameye.works.coregrade.com -- 19:24:40.944 INFO [22917]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5851ckh5en2vbp46aocfkt210cl0kr3u -- 19:24:40.944 INFO [22917]: QUERY_STRING = /member/page -- 19:24:40.944 INFO [22917]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:24:40.982 INFO [22917]: COREGRADE is stopping... -- 19:24:40.982 DEBUG [22917]: Closing database connection -- 19:24:40.982 SQL [22917]: pgsql_close() -- 19:24:41.194 INFO [22917]: COREGRADE is starting... -- 19:24:41.194 INFO [22917]: Version from config: 1.0 -- 19:24:41.194 DEBUG [22917]: Connecting to database... -- 19:24:41.194 DEBUG [22917]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:24:41.194 SQL [22917]: pgsql_db_connect() -- 19:24:41.198 DEBUG [22917]: Database connection successful -- 19:24:41.198 INFO [22917]: _SERVER found -- 19:24:41.198 INFO [22917]: REMOTE_ADDR = 192.168.1.13 -- 19:24:41.198 INFO [22917]: SERVER_NAME = oameye.works.coregrade.com -- 19:24:41.198 INFO [22917]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5851ckh5en2vbp46aocfkt210cl0kr3u -- 19:24:41.198 INFO [22917]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:24:41.198 INFO [22917]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:24:41.209 INFO [22917]: COREGRADE is stopping... -- 19:24:41.209 DEBUG [22917]: Closing database connection -- 19:24:41.209 SQL [22917]: pgsql_close() -- 19:27:35.654 INFO [22973]: COREGRADE is starting... -- 19:27:35.655 INFO [22973]: Version from config: 1.0 -- 19:27:35.655 DEBUG [22973]: Connecting to database... -- 19:27:35.655 DEBUG [22973]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:35.655 SQL [22973]: pgsql_db_connect() -- 19:27:35.659 DEBUG [22973]: Database connection successful -- 19:27:35.659 INFO [22973]: _SERVER found -- 19:27:35.659 INFO [22973]: REMOTE_ADDR = 192.168.1.13 -- 19:27:35.659 INFO [22973]: SERVER_NAME = oameye.works.coregrade.com -- 19:27:35.659 INFO [22973]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5851ckh5en2vbp46aocfkt210cl0kr3u -- 19:27:35.659 INFO [22973]: QUERY_STRING = /member -- 19:27:35.659 INFO [22973]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:27:35.703 INFO [22973]: COREGRADE is stopping... -- 19:27:35.703 DEBUG [22973]: Closing database connection -- 19:27:35.703 SQL [22973]: pgsql_close() -- 19:27:35.905 INFO [22973]: COREGRADE is starting... -- 19:27:35.905 INFO [22973]: Version from config: 1.0 -- 19:27:35.905 DEBUG [22973]: Connecting to database... -- 19:27:35.905 DEBUG [22973]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:35.905 SQL [22973]: pgsql_db_connect() -- 19:27:35.909 DEBUG [22973]: Database connection successful -- 19:27:35.909 INFO [22973]: _SERVER found -- 19:27:35.909 INFO [22973]: REMOTE_ADDR = 192.168.1.13 -- 19:27:35.909 INFO [22973]: SERVER_NAME = oameye.works.coregrade.com -- 19:27:35.909 INFO [22973]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5851ckh5en2vbp46aocfkt210cl0kr3u -- 19:27:35.909 INFO [22973]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:27:35.909 INFO [22973]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:27:35.922 INFO [22973]: COREGRADE is stopping... -- 19:27:35.922 DEBUG [22973]: Closing database connection -- 19:27:35.922 SQL [22973]: pgsql_close() -- 19:27:37.904 INFO [22973]: COREGRADE is starting... -- 19:27:37.905 INFO [22973]: Version from config: 1.0 -- 19:27:37.905 DEBUG [22973]: Connecting to database... -- 19:27:37.905 DEBUG [22973]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:37.905 SQL [22973]: pgsql_db_connect() -- 19:27:37.909 DEBUG [22973]: Database connection successful -- 19:27:37.909 INFO [22973]: _SERVER found -- 19:27:37.909 INFO [22973]: REMOTE_ADDR = 192.168.1.13 -- 19:27:37.909 INFO [22973]: SERVER_NAME = oameye.works.coregrade.com -- 19:27:37.909 INFO [22973]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5851ckh5en2vbp46aocfkt210cl0kr3u -- 19:27:37.909 INFO [22973]: QUERY_STRING = /member/page -- 19:27:37.909 INFO [22973]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:27:37.951 INFO [22973]: COREGRADE is stopping... -- 19:27:37.951 DEBUG [22973]: Closing database connection -- 19:27:37.951 SQL [22973]: pgsql_close() -- 19:27:38.249 INFO [22973]: COREGRADE is starting... -- 19:27:38.249 INFO [22973]: Version from config: 1.0 -- 19:27:38.249 DEBUG [22973]: Connecting to database... -- 19:27:38.249 DEBUG [22973]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:38.249 SQL [22973]: pgsql_db_connect() -- 19:27:38.253 DEBUG [22973]: Database connection successful -- 19:27:38.253 INFO [22973]: _SERVER found -- 19:27:38.253 INFO [22973]: REMOTE_ADDR = 192.168.1.13 -- 19:27:38.253 INFO [22973]: SERVER_NAME = oameye.works.coregrade.com -- 19:27:38.253 INFO [22973]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5851ckh5en2vbp46aocfkt210cl0kr3u -- 19:27:38.253 INFO [22973]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:27:38.253 INFO [22973]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:27:38.265 INFO [22973]: COREGRADE is stopping... -- 19:27:38.265 DEBUG [22973]: Closing database connection -- 19:27:38.265 SQL [22973]: pgsql_close() -- 19:28:09.366 INFO [22914]: COREGRADE is starting... -- 19:28:09.366 INFO [22914]: Version from config: 1.0 -- 19:28:09.366 DEBUG [22914]: Connecting to database... -- 19:28:09.366 DEBUG [22914]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:28:09.366 SQL [22914]: pgsql_db_connect() -- 19:28:09.370 DEBUG [22914]: Database connection successful -- 19:28:09.370 INFO [22914]: _SERVER found -- 19:28:09.370 INFO [22914]: REMOTE_ADDR = 192.168.1.13 -- 19:28:09.370 INFO [22914]: SERVER_NAME = oameye.works.coregrade.com -- 19:28:09.370 INFO [22914]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5851ckh5en2vbp46aocfkt210cl0kr3u -- 19:28:09.370 INFO [22914]: QUERY_STRING = /member/page -- 19:28:09.370 INFO [22914]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:28:09.412 INFO [22914]: COREGRADE is stopping... -- 19:28:09.412 DEBUG [22914]: Closing database connection -- 19:28:09.412 SQL [22914]: pgsql_close() -- 19:28:09.646 INFO [22914]: COREGRADE is starting... -- 19:28:09.646 INFO [22914]: Version from config: 1.0 -- 19:28:09.646 DEBUG [22914]: Connecting to database... -- 19:28:09.646 DEBUG [22914]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:28:09.646 SQL [22914]: pgsql_db_connect() -- 19:28:09.650 DEBUG [22914]: Database connection successful -- 19:28:09.650 INFO [22914]: _SERVER found -- 19:28:09.650 INFO [22914]: REMOTE_ADDR = 192.168.1.13 -- 19:28:09.650 INFO [22914]: SERVER_NAME = oameye.works.coregrade.com -- 19:28:09.650 INFO [22914]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5851ckh5en2vbp46aocfkt210cl0kr3u -- 19:28:09.650 INFO [22914]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:28:09.650 INFO [22914]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:28:09.662 INFO [22914]: COREGRADE is stopping... -- 19:28:09.662 DEBUG [22914]: Closing database connection -- 19:28:09.662 SQL [22914]: pgsql_close() -- 19:29:11.631 INFO [22915]: COREGRADE is starting... -- 19:29:11.631 INFO [22915]: Version from config: 1.0 -- 19:29:11.631 DEBUG [22915]: Connecting to database... -- 19:29:11.631 DEBUG [22915]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:11.631 SQL [22915]: pgsql_db_connect() -- 19:29:11.635 DEBUG [22915]: Database connection successful -- 19:29:11.635 INFO [22915]: _SERVER found -- 19:29:11.635 INFO [22915]: REMOTE_ADDR = 192.168.1.13 -- 19:29:11.635 INFO [22915]: SERVER_NAME = oameye.works.coregrade.com -- 19:29:11.635 INFO [22915]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5851ckh5en2vbp46aocfkt210cl0kr3u -- 19:29:11.635 INFO [22915]: QUERY_STRING = /member/page -- 19:29:11.635 INFO [22915]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:29:11.674 INFO [22915]: COREGRADE is stopping... -- 19:29:11.674 DEBUG [22915]: Closing database connection -- 19:29:11.674 SQL [22915]: pgsql_close() -- 19:29:11.939 INFO [22915]: COREGRADE is starting... -- 19:29:11.939 INFO [22915]: Version from config: 1.0 -- 19:29:11.939 DEBUG [22915]: Connecting to database... -- 19:29:11.939 DEBUG [22915]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:11.939 SQL [22915]: pgsql_db_connect() -- 19:29:11.943 DEBUG [22915]: Database connection successful -- 19:29:11.943 INFO [22915]: _SERVER found -- 19:29:11.943 INFO [22915]: REMOTE_ADDR = 192.168.1.13 -- 19:29:11.943 INFO [22915]: SERVER_NAME = oameye.works.coregrade.com -- 19:29:11.943 INFO [22915]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5851ckh5en2vbp46aocfkt210cl0kr3u -- 19:29:11.943 INFO [22915]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:29:11.943 INFO [22915]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:29:11.954 INFO [22915]: COREGRADE is stopping... -- 19:29:11.954 DEBUG [22915]: Closing database connection -- 19:29:11.954 SQL [22915]: pgsql_close() -- 19:29:42.717 INFO [22918]: COREGRADE is starting... -- 19:29:42.717 INFO [22918]: Version from config: 1.0 -- 19:29:42.717 DEBUG [22918]: Connecting to database... -- 19:29:42.717 DEBUG [22918]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:42.717 SQL [22918]: pgsql_db_connect() -- 19:29:42.721 DEBUG [22918]: Database connection successful -- 19:29:42.721 INFO [22918]: _SERVER found -- 19:29:42.721 INFO [22918]: REMOTE_ADDR = 192.168.1.13 -- 19:29:42.721 INFO [22918]: SERVER_NAME = oameye.works.coregrade.com -- 19:29:42.721 INFO [22918]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=5851ckh5en2vbp46aocfkt210cl0kr3u -- 19:29:42.721 INFO [22918]: QUERY_STRING = /member -- 19:29:42.721 INFO [22918]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:29:42.762 INFO [22918]: COREGRADE is stopping... -- 19:29:42.762 DEBUG [22918]: Closing database connection -- 19:29:42.762 SQL [22918]: pgsql_close() -- 19:29:42.977 INFO [22918]: COREGRADE is starting... -- 19:29:42.978 INFO [22918]: Version from config: 1.0 -- 19:29:42.978 DEBUG [22918]: Connecting to database... -- 19:29:42.978 DEBUG [22918]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:42.978 SQL [22918]: pgsql_db_connect() -- 19:29:42.982 DEBUG [22918]: Database connection successful -- 19:29:42.982 INFO [22918]: _SERVER found -- 19:29:42.982 INFO [22918]: REMOTE_ADDR = 192.168.1.13 -- 19:29:42.982 INFO [22918]: SERVER_NAME = oameye.works.coregrade.com -- 19:29:42.982 INFO [22918]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=60b7q4d46ebao7ft6sm83kke4pl95aef -- 19:29:42.982 INFO [22918]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:29:42.982 INFO [22918]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:29:42.993 INFO [22918]: COREGRADE is stopping... -- 19:29:42.993 DEBUG [22918]: Closing database connection -- 19:29:42.993 SQL [22918]: pgsql_close() -- 19:29:50.160 INFO [22917]: COREGRADE is starting... -- 19:29:50.160 INFO [22917]: Version from config: 1.0 -- 19:29:50.160 DEBUG [22917]: Connecting to database... -- 19:29:50.160 DEBUG [22917]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:50.160 SQL [22917]: pgsql_db_connect() -- 19:29:50.164 DEBUG [22917]: Database connection successful -- 19:29:50.164 INFO [22917]: _SERVER found -- 19:29:50.164 INFO [22917]: REMOTE_ADDR = 192.168.1.13 -- 19:29:50.164 INFO [22917]: SERVER_NAME = oameye.works.coregrade.com -- 19:29:50.164 INFO [22917]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=60b7q4d46ebao7ft6sm83kke4pl95aef -- 19:29:50.164 INFO [22917]: QUERY_STRING = /member -- 19:29:50.164 INFO [22917]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:29:50.201 INFO [22917]: COREGRADE is stopping... -- 19:29:50.201 DEBUG [22917]: Closing database connection -- 19:29:50.201 SQL [22917]: pgsql_close() -- 19:30:55.895 INFO [22973]: COREGRADE is starting... -- 19:30:55.895 INFO [22973]: Version from config: 1.0 -- 19:30:55.895 DEBUG [22973]: Connecting to database... -- 19:30:55.895 DEBUG [22973]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:30:55.895 SQL [22973]: pgsql_db_connect() -- 19:30:55.899 DEBUG [22973]: Database connection successful -- 19:30:55.899 INFO [22973]: _SERVER found -- 19:30:55.900 INFO [22973]: REMOTE_ADDR = 192.168.1.13 -- 19:30:55.900 INFO [22973]: SERVER_NAME = oameye.works.coregrade.com -- 19:30:55.900 INFO [22973]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=60b7q4d46ebao7ft6sm83kke4pl95aef -- 19:30:55.900 INFO [22973]: QUERY_STRING = /member/page -- 19:30:55.900 INFO [22973]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:30:55.942 INFO [22973]: COREGRADE is stopping... -- 19:30:55.942 DEBUG [22973]: Closing database connection -- 19:30:55.942 SQL [22973]: pgsql_close() -- 19:30:56.146 INFO [22973]: COREGRADE is starting... -- 19:30:56.147 INFO [22973]: Version from config: 1.0 -- 19:30:56.147 DEBUG [22973]: Connecting to database... -- 19:30:56.147 DEBUG [22973]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:30:56.147 SQL [22973]: pgsql_db_connect() -- 19:30:56.151 DEBUG [22973]: Database connection successful -- 19:30:56.151 INFO [22973]: _SERVER found -- 19:30:56.151 INFO [22973]: REMOTE_ADDR = 192.168.1.13 -- 19:30:56.151 INFO [22973]: SERVER_NAME = oameye.works.coregrade.com -- 19:30:56.151 INFO [22973]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=60b7q4d46ebao7ft6sm83kke4pl95aef -- 19:30:56.151 INFO [22973]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:30:56.151 INFO [22973]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:30:56.163 INFO [22973]: COREGRADE is stopping... -- 19:30:56.163 DEBUG [22973]: Closing database connection -- 19:30:56.163 SQL [22973]: pgsql_close() -- 19:30:58.100 INFO [22973]: COREGRADE is starting... -- 19:30:58.101 INFO [22973]: Version from config: 1.0 -- 19:30:58.101 DEBUG [22973]: Connecting to database... -- 19:30:58.101 DEBUG [22973]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:30:58.101 SQL [22973]: pgsql_db_connect() -- 19:30:58.105 DEBUG [22973]: Database connection successful -- 19:30:58.105 INFO [22973]: _SERVER found -- 19:30:58.105 INFO [22973]: REMOTE_ADDR = 192.168.1.13 -- 19:30:58.105 INFO [22973]: SERVER_NAME = oameye.works.coregrade.com -- 19:30:58.105 INFO [22973]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=60b7q4d46ebao7ft6sm83kke4pl95aef -- 19:30:58.105 INFO [22973]: QUERY_STRING = /member/page -- 19:30:58.105 INFO [22973]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:30:58.145 INFO [22973]: COREGRADE is stopping... -- 19:30:58.145 DEBUG [22973]: Closing database connection -- 19:30:58.145 SQL [22973]: pgsql_close() -- 19:30:58.314 INFO [22973]: COREGRADE is starting... -- 19:30:58.314 INFO [22973]: Version from config: 1.0 -- 19:30:58.314 DEBUG [22973]: Connecting to database... -- 19:30:58.314 DEBUG [22973]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:30:58.314 SQL [22973]: pgsql_db_connect() -- 19:30:58.318 DEBUG [22973]: Database connection successful -- 19:30:58.318 INFO [22973]: _SERVER found -- 19:30:58.318 INFO [22973]: REMOTE_ADDR = 192.168.1.13 -- 19:30:58.318 INFO [22973]: SERVER_NAME = oameye.works.coregrade.com -- 19:30:58.318 INFO [22973]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=60b7q4d46ebao7ft6sm83kke4pl95aef -- 19:30:58.318 INFO [22973]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:30:58.318 INFO [22973]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:30:58.330 INFO [22973]: COREGRADE is stopping... -- 19:30:58.330 DEBUG [22973]: Closing database connection -- 19:30:58.330 SQL [22973]: pgsql_close() -- 19:31:40.308 INFO [22914]: COREGRADE is starting... -- 19:31:40.309 INFO [22914]: Version from config: 1.0 -- 19:31:40.309 DEBUG [22914]: Connecting to database... -- 19:31:40.309 DEBUG [22914]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:31:40.309 SQL [22914]: pgsql_db_connect() -- 19:31:40.313 DEBUG [22914]: Database connection successful -- 19:31:40.313 INFO [22914]: _SERVER found -- 19:31:40.313 INFO [22914]: REMOTE_ADDR = 192.168.1.13 -- 19:31:40.313 INFO [22914]: SERVER_NAME = oameye.works.coregrade.com -- 19:31:40.313 INFO [22914]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=60b7q4d46ebao7ft6sm83kke4pl95aef -- 19:31:40.313 INFO [22914]: QUERY_STRING = /member/page -- 19:31:40.313 INFO [22914]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:31:40.357 INFO [22914]: COREGRADE is stopping... -- 19:31:40.357 DEBUG [22914]: Closing database connection -- 19:31:40.357 SQL [22914]: pgsql_close() -- 19:31:40.592 INFO [22914]: COREGRADE is starting... -- 19:31:40.592 INFO [22914]: Version from config: 1.0 -- 19:31:40.592 DEBUG [22914]: Connecting to database... -- 19:31:40.592 DEBUG [22914]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:31:40.592 SQL [22914]: pgsql_db_connect() -- 19:31:40.597 DEBUG [22914]: Database connection successful -- 19:31:40.597 INFO [22914]: _SERVER found -- 19:31:40.597 INFO [22914]: REMOTE_ADDR = 192.168.1.13 -- 19:31:40.597 INFO [22914]: SERVER_NAME = oameye.works.coregrade.com -- 19:31:40.597 INFO [22914]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=60b7q4d46ebao7ft6sm83kke4pl95aef -- 19:31:40.597 INFO [22914]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:31:40.597 INFO [22914]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:31:40.608 INFO [22914]: COREGRADE is stopping... -- 19:31:40.608 DEBUG [22914]: Closing database connection -- 19:31:40.608 SQL [22914]: pgsql_close() -- 19:32:14.770 INFO [23032]: COREGRADE is starting... -- 19:32:14.771 INFO [23032]: Version from config: 1.0 -- 19:32:14.771 DEBUG [23032]: Connecting to database... -- 19:32:14.771 DEBUG [23032]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:32:14.771 SQL [23032]: pgsql_db_connect() -- 19:32:14.776 DEBUG [23032]: Database connection successful -- 19:32:14.776 INFO [23032]: _SERVER found -- 19:32:14.776 INFO [23032]: REMOTE_ADDR = 192.168.1.13 -- 19:32:14.776 INFO [23032]: SERVER_NAME = oameye.works.coregrade.com -- 19:32:14.776 INFO [23032]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=60b7q4d46ebao7ft6sm83kke4pl95aef -- 19:32:14.776 INFO [23032]: QUERY_STRING = /member/page -- 19:32:14.776 INFO [23032]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:32:14.823 INFO [23032]: COREGRADE is stopping... -- 19:32:14.823 DEBUG [23032]: Closing database connection -- 19:32:14.823 SQL [23032]: pgsql_close() -- 19:32:15.087 INFO [23032]: COREGRADE is starting... -- 19:32:15.087 INFO [23032]: Version from config: 1.0 -- 19:32:15.087 DEBUG [23032]: Connecting to database... -- 19:32:15.087 DEBUG [23032]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:32:15.087 SQL [23032]: pgsql_db_connect() -- 19:32:15.092 DEBUG [23032]: Database connection successful -- 19:32:15.092 INFO [23032]: _SERVER found -- 19:32:15.092 INFO [23032]: REMOTE_ADDR = 192.168.1.13 -- 19:32:15.092 INFO [23032]: SERVER_NAME = oameye.works.coregrade.com -- 19:32:15.092 INFO [23032]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=60b7q4d46ebao7ft6sm83kke4pl95aef -- 19:32:15.092 INFO [23032]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:32:15.092 INFO [23032]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:32:15.105 INFO [23032]: COREGRADE is stopping... -- 19:32:15.105 DEBUG [23032]: Closing database connection -- 19:32:15.105 SQL [23032]: pgsql_close() -- 19:32:56.709 INFO [22916]: COREGRADE is starting... -- 19:32:56.709 INFO [22916]: Version from config: 1.0 -- 19:32:56.710 DEBUG [22916]: Connecting to database... -- 19:32:56.710 DEBUG [22916]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:32:56.710 SQL [22916]: pgsql_db_connect() -- 19:32:56.714 DEBUG [22916]: Database connection successful -- 19:32:56.714 INFO [22916]: _SERVER found -- 19:32:56.714 INFO [22916]: REMOTE_ADDR = 192.168.1.13 -- 19:32:56.714 INFO [22916]: SERVER_NAME = oameye.works.coregrade.com -- 19:32:56.714 INFO [22916]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=60b7q4d46ebao7ft6sm83kke4pl95aef -- 19:32:56.714 INFO [22916]: QUERY_STRING = /member/page -- 19:32:56.714 INFO [22916]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:32:56.759 INFO [22916]: COREGRADE is stopping... -- 19:32:56.759 DEBUG [22916]: Closing database connection -- 19:32:56.759 SQL [22916]: pgsql_close() -- 19:32:56.965 INFO [22916]: COREGRADE is starting... -- 19:32:56.966 INFO [22916]: Version from config: 1.0 -- 19:32:56.966 DEBUG [22916]: Connecting to database... -- 19:32:56.966 DEBUG [22916]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:32:56.966 SQL [22916]: pgsql_db_connect() -- 19:32:56.970 DEBUG [22916]: Database connection successful -- 19:32:56.970 INFO [22916]: _SERVER found -- 19:32:56.970 INFO [22916]: REMOTE_ADDR = 192.168.1.13 -- 19:32:56.970 INFO [22916]: SERVER_NAME = oameye.works.coregrade.com -- 19:32:56.970 INFO [22916]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=60b7q4d46ebao7ft6sm83kke4pl95aef -- 19:32:56.970 INFO [22916]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:32:56.970 INFO [22916]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:32:56.983 INFO [22916]: COREGRADE is stopping... -- 19:32:56.983 DEBUG [22916]: Closing database connection -- 19:32:56.983 SQL [22916]: pgsql_close() -- 19:33:22.394 INFO [22917]: COREGRADE is starting... -- 19:33:22.395 INFO [22917]: Version from config: 1.0 -- 19:33:22.395 DEBUG [22917]: Connecting to database... -- 19:33:22.395 DEBUG [22917]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:33:22.395 SQL [22917]: pgsql_db_connect() -- 19:33:22.400 DEBUG [22917]: Database connection successful -- 19:33:22.400 INFO [22917]: _SERVER found -- 19:33:22.400 INFO [22917]: REMOTE_ADDR = 192.168.1.13 -- 19:33:22.400 INFO [22917]: SERVER_NAME = oameye.works.coregrade.com -- 19:33:22.400 INFO [22917]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=60b7q4d46ebao7ft6sm83kke4pl95aef -- 19:33:22.400 INFO [22917]: QUERY_STRING = /member/page -- 19:33:22.400 INFO [22917]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:33:22.440 INFO [22917]: COREGRADE is stopping... -- 19:33:22.440 DEBUG [22917]: Closing database connection -- 19:33:22.440 SQL [22917]: pgsql_close() -- 19:33:22.747 INFO [22917]: COREGRADE is starting... -- 19:33:22.747 INFO [22917]: Version from config: 1.0 -- 19:33:22.747 DEBUG [22917]: Connecting to database... -- 19:33:22.747 DEBUG [22917]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:33:22.747 SQL [22917]: pgsql_db_connect() -- 19:33:22.752 DEBUG [22917]: Database connection successful -- 19:33:22.752 INFO [22917]: _SERVER found -- 19:33:22.752 INFO [22917]: REMOTE_ADDR = 192.168.1.13 -- 19:33:22.752 INFO [22917]: SERVER_NAME = oameye.works.coregrade.com -- 19:33:22.752 INFO [22917]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=60b7q4d46ebao7ft6sm83kke4pl95aef -- 19:33:22.752 INFO [22917]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:33:22.752 INFO [22917]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:33:22.763 INFO [22917]: COREGRADE is stopping... -- 19:33:22.763 DEBUG [22917]: Closing database connection -- 19:33:22.763 SQL [22917]: pgsql_close() -- 19:34:15.831 INFO [22914]: COREGRADE is starting... -- 19:34:15.831 INFO [22914]: Version from config: 1.0 -- 19:34:15.831 DEBUG [22914]: Connecting to database... -- 19:34:15.831 DEBUG [22914]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:34:15.831 SQL [22914]: pgsql_db_connect() -- 19:34:15.836 DEBUG [22914]: Database connection successful -- 19:34:15.836 INFO [22914]: _SERVER found -- 19:34:15.836 INFO [22914]: REMOTE_ADDR = 192.168.1.13 -- 19:34:15.836 INFO [22914]: SERVER_NAME = oameye.works.coregrade.com -- 19:34:15.836 INFO [22914]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=60b7q4d46ebao7ft6sm83kke4pl95aef -- 19:34:15.836 INFO [22914]: QUERY_STRING = /member/page -- 19:34:15.836 INFO [22914]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:34:15.875 INFO [22914]: COREGRADE is stopping... -- 19:34:15.875 DEBUG [22914]: Closing database connection -- 19:34:15.875 SQL [22914]: pgsql_close() -- 19:34:16.057 INFO [22914]: COREGRADE is starting... -- 19:34:16.057 INFO [22914]: Version from config: 1.0 -- 19:34:16.057 DEBUG [22914]: Connecting to database... -- 19:34:16.057 DEBUG [22914]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:34:16.057 SQL [22914]: pgsql_db_connect() -- 19:34:16.062 DEBUG [22914]: Database connection successful -- 19:34:16.062 INFO [22914]: _SERVER found -- 19:34:16.062 INFO [22914]: REMOTE_ADDR = 192.168.1.13 -- 19:34:16.062 INFO [22914]: SERVER_NAME = oameye.works.coregrade.com -- 19:34:16.062 INFO [22914]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=60b7q4d46ebao7ft6sm83kke4pl95aef -- 19:34:16.062 INFO [22914]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:34:16.062 INFO [22914]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:34:16.073 INFO [22914]: COREGRADE is stopping... -- 19:34:16.073 DEBUG [22914]: Closing database connection -- 19:34:16.073 SQL [22914]: pgsql_close() -- 19:34:39.356 INFO [23032]: COREGRADE is starting... -- 19:34:39.357 INFO [23032]: Version from config: 1.0 -- 19:34:39.357 DEBUG [23032]: Connecting to database... -- 19:34:39.357 DEBUG [23032]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:34:39.357 SQL [23032]: pgsql_db_connect() -- 19:34:39.361 DEBUG [23032]: Database connection successful -- 19:34:39.361 INFO [23032]: _SERVER found -- 19:34:39.361 INFO [23032]: REMOTE_ADDR = 192.168.1.13 -- 19:34:39.361 INFO [23032]: SERVER_NAME = oameye.works.coregrade.com -- 19:34:39.361 INFO [23032]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=60b7q4d46ebao7ft6sm83kke4pl95aef -- 19:34:39.361 INFO [23032]: QUERY_STRING = /member/page -- 19:34:39.361 INFO [23032]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:34:39.405 INFO [23032]: COREGRADE is stopping... -- 19:34:39.405 DEBUG [23032]: Closing database connection -- 19:34:39.405 SQL [23032]: pgsql_close() -- 19:34:39.643 INFO [23032]: COREGRADE is starting... -- 19:34:39.644 INFO [23032]: Version from config: 1.0 -- 19:34:39.644 DEBUG [23032]: Connecting to database... -- 19:34:39.644 DEBUG [23032]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:34:39.644 SQL [23032]: pgsql_db_connect() -- 19:34:39.648 DEBUG [23032]: Database connection successful -- 19:34:39.648 INFO [23032]: _SERVER found -- 19:34:39.648 INFO [23032]: REMOTE_ADDR = 192.168.1.13 -- 19:34:39.648 INFO [23032]: SERVER_NAME = oameye.works.coregrade.com -- 19:34:39.648 INFO [23032]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=60b7q4d46ebao7ft6sm83kke4pl95aef -- 19:34:39.648 INFO [23032]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:34:39.648 INFO [23032]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:34:39.661 INFO [23032]: COREGRADE is stopping... -- 19:34:39.661 DEBUG [23032]: Closing database connection -- 19:34:39.661 SQL [23032]: pgsql_close() -- 19:36:00.489 INFO [22916]: COREGRADE is starting... -- 19:36:00.490 INFO [22916]: Version from config: 1.0 -- 19:36:00.490 DEBUG [22916]: Connecting to database... -- 19:36:00.490 DEBUG [22916]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:36:00.490 SQL [22916]: pgsql_db_connect() -- 19:36:00.494 DEBUG [22916]: Database connection successful -- 19:36:00.494 INFO [22916]: _SERVER found -- 19:36:00.494 INFO [22916]: REMOTE_ADDR = 192.168.1.13 -- 19:36:00.494 INFO [22916]: SERVER_NAME = oameye.works.coregrade.com -- 19:36:00.494 INFO [22916]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=60b7q4d46ebao7ft6sm83kke4pl95aef -- 19:36:00.494 INFO [22916]: QUERY_STRING = /member/page -- 19:36:00.494 INFO [22916]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:36:00.536 INFO [22916]: COREGRADE is stopping... -- 19:36:00.536 DEBUG [22916]: Closing database connection -- 19:36:00.536 SQL [22916]: pgsql_close() -- 19:36:00.734 INFO [22916]: COREGRADE is starting... -- 19:36:00.734 INFO [22916]: Version from config: 1.0 -- 19:36:00.735 DEBUG [22916]: Connecting to database... -- 19:36:00.735 DEBUG [22916]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:36:00.735 SQL [22916]: pgsql_db_connect() -- 19:36:00.739 DEBUG [22916]: Database connection successful -- 19:36:00.739 INFO [22916]: _SERVER found -- 19:36:00.739 INFO [22916]: REMOTE_ADDR = 192.168.1.13 -- 19:36:00.739 INFO [22916]: SERVER_NAME = oameye.works.coregrade.com -- 19:36:00.739 INFO [22916]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=32ff1nkialqo6trr0d238i2k8bsjegcr -- 19:36:00.739 INFO [22916]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:36:00.739 INFO [22916]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:36:00.750 INFO [22916]: COREGRADE is stopping... -- 19:36:00.750 DEBUG [22916]: Closing database connection -- 19:36:00.750 SQL [22916]: pgsql_close() -- 19:36:29.240 INFO [22917]: COREGRADE is starting... -- 19:36:29.240 INFO [22917]: Version from config: 1.0 -- 19:36:29.240 DEBUG [22917]: Connecting to database... -- 19:36:29.240 DEBUG [22917]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:36:29.240 SQL [22917]: pgsql_db_connect() -- 19:36:29.244 DEBUG [22917]: Database connection successful -- 19:36:29.244 INFO [22917]: _SERVER found -- 19:36:29.244 INFO [22917]: REMOTE_ADDR = 192.168.1.13 -- 19:36:29.244 INFO [22917]: SERVER_NAME = oameye.works.coregrade.com -- 19:36:29.244 INFO [22917]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=32ff1nkialqo6trr0d238i2k8bsjegcr -- 19:36:29.244 INFO [22917]: QUERY_STRING = /member/page -- 19:36:29.244 INFO [22917]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:36:29.283 INFO [22917]: COREGRADE is stopping... -- 19:36:29.283 DEBUG [22917]: Closing database connection -- 19:36:29.283 SQL [22917]: pgsql_close() -- 19:36:29.526 INFO [22917]: COREGRADE is starting... -- 19:36:29.526 INFO [22917]: Version from config: 1.0 -- 19:36:29.526 DEBUG [22917]: Connecting to database... -- 19:36:29.526 DEBUG [22917]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:36:29.526 SQL [22917]: pgsql_db_connect() -- 19:36:29.530 DEBUG [22917]: Database connection successful -- 19:36:29.530 INFO [22917]: _SERVER found -- 19:36:29.530 INFO [22917]: REMOTE_ADDR = 192.168.1.13 -- 19:36:29.530 INFO [22917]: SERVER_NAME = oameye.works.coregrade.com -- 19:36:29.530 INFO [22917]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=32ff1nkialqo6trr0d238i2k8bsjegcr -- 19:36:29.530 INFO [22917]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:36:29.530 INFO [22917]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:36:29.542 INFO [22917]: COREGRADE is stopping... -- 19:36:29.542 DEBUG [22917]: Closing database connection -- 19:36:29.542 SQL [22917]: pgsql_close() -- 19:36:37.797 INFO [22915]: COREGRADE is starting... -- 19:36:37.797 INFO [22915]: Version from config: 1.0 -- 19:36:37.797 DEBUG [22915]: Connecting to database... -- 19:36:37.797 DEBUG [22915]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:36:37.797 SQL [22915]: pgsql_db_connect() -- 19:36:37.802 DEBUG [22915]: Database connection successful -- 19:36:37.802 INFO [22915]: _SERVER found -- 19:36:37.802 INFO [22915]: REMOTE_ADDR = 192.168.1.13 -- 19:36:37.802 INFO [22915]: SERVER_NAME = oameye.works.coregrade.com -- 19:36:37.802 INFO [22915]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=32ff1nkialqo6trr0d238i2k8bsjegcr -- 19:36:37.802 INFO [22915]: QUERY_STRING = /auth -- 19:36:37.802 INFO [22915]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:36:37.834 INFO [22915]: COREGRADE is stopping... -- 19:36:37.834 DEBUG [22915]: Closing database connection -- 19:36:37.834 SQL [22915]: pgsql_close() -- 19:36:37.906 INFO [22915]: COREGRADE is starting... -- 19:36:37.906 INFO [22915]: Version from config: 1.0 -- 19:36:37.906 DEBUG [22915]: Connecting to database... -- 19:36:37.906 DEBUG [22915]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:36:37.906 SQL [22915]: pgsql_db_connect() -- 19:36:37.910 DEBUG [22915]: Database connection successful -- 19:36:37.910 INFO [22915]: _SERVER found -- 19:36:37.910 INFO [22915]: REMOTE_ADDR = 192.168.1.13 -- 19:36:37.910 INFO [22915]: SERVER_NAME = oameye.works.coregrade.com -- 19:36:37.910 INFO [22915]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=32ff1nkialqo6trr0d238i2k8bsjegcr -- 19:36:37.910 INFO [22915]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 19:36:37.910 INFO [22915]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:36:37.921 INFO [22915]: COREGRADE is stopping... -- 19:36:37.921 DEBUG [22915]: Closing database connection -- 19:36:37.921 SQL [22915]: pgsql_close() -- 19:36:38.669 INFO [22915]: COREGRADE is starting... -- 19:36:38.669 INFO [22915]: Version from config: 1.0 -- 19:36:38.669 DEBUG [22915]: Connecting to database... -- 19:36:38.669 DEBUG [22915]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:36:38.669 SQL [22915]: pgsql_db_connect() -- 19:36:38.673 DEBUG [22915]: Database connection successful -- 19:36:38.673 INFO [22915]: _SERVER found -- 19:36:38.673 INFO [22915]: REMOTE_ADDR = 192.168.1.13 -- 19:36:38.673 INFO [22915]: SERVER_NAME = oameye.works.coregrade.com -- 19:36:38.673 INFO [22915]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=32ff1nkialqo6trr0d238i2k8bsjegcr -- 19:36:38.673 INFO [22915]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:36:38.673 INFO [22915]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:36:38.684 INFO [22915]: COREGRADE is stopping... -- 19:36:38.684 DEBUG [22915]: Closing database connection -- 19:36:38.684 SQL [22915]: pgsql_close() -- 19:36:57.823 INFO [22914]: COREGRADE is starting... -- 19:36:57.823 INFO [22914]: Version from config: 1.0 -- 19:36:57.823 DEBUG [22914]: Connecting to database... -- 19:36:57.823 DEBUG [22914]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:36:57.823 SQL [22914]: pgsql_db_connect() -- 19:36:57.827 DEBUG [22914]: Database connection successful -- 19:36:57.827 INFO [22914]: _SERVER found -- 19:36:57.827 INFO [22914]: REMOTE_ADDR = 192.168.1.13 -- 19:36:57.827 INFO [22914]: SERVER_NAME = oameye.works.coregrade.com -- 19:36:57.827 INFO [22914]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=32ff1nkialqo6trr0d238i2k8bsjegcr -- 19:36:57.827 INFO [22914]: QUERY_STRING = /member/page -- 19:36:57.827 INFO [22914]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:36:57.865 INFO [22914]: COREGRADE is stopping... -- 19:36:57.865 DEBUG [22914]: Closing database connection -- 19:36:57.865 SQL [22914]: pgsql_close() -- 19:36:58.167 INFO [22914]: COREGRADE is starting... -- 19:36:58.168 INFO [22914]: Version from config: 1.0 -- 19:36:58.168 DEBUG [22914]: Connecting to database... -- 19:36:58.168 DEBUG [22914]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:36:58.168 SQL [22914]: pgsql_db_connect() -- 19:36:58.172 DEBUG [22914]: Database connection successful -- 19:36:58.172 INFO [22914]: _SERVER found -- 19:36:58.172 INFO [22914]: REMOTE_ADDR = 192.168.1.13 -- 19:36:58.172 INFO [22914]: SERVER_NAME = oameye.works.coregrade.com -- 19:36:58.172 INFO [22914]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=32ff1nkialqo6trr0d238i2k8bsjegcr -- 19:36:58.172 INFO [22914]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:36:58.172 INFO [22914]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:36:58.183 INFO [22914]: COREGRADE is stopping... -- 19:36:58.183 DEBUG [22914]: Closing database connection -- 19:36:58.183 SQL [22914]: pgsql_close() -- 19:37:17.971 INFO [22918]: COREGRADE is starting... -- 19:37:17.971 INFO [22918]: Version from config: 1.0 -- 19:37:17.971 DEBUG [22918]: Connecting to database... -- 19:37:17.971 DEBUG [22918]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:37:17.971 SQL [22918]: pgsql_db_connect() -- 19:37:17.975 DEBUG [22918]: Database connection successful -- 19:37:17.975 INFO [22918]: _SERVER found -- 19:37:17.975 INFO [22918]: REMOTE_ADDR = 192.168.1.13 -- 19:37:17.975 INFO [22918]: SERVER_NAME = oameye.works.coregrade.com -- 19:37:17.975 INFO [22918]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=32ff1nkialqo6trr0d238i2k8bsjegcr -- 19:37:17.975 INFO [22918]: QUERY_STRING = /member/page -- 19:37:17.975 INFO [22918]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:37:18.013 INFO [22918]: COREGRADE is stopping... -- 19:37:18.013 DEBUG [22918]: Closing database connection -- 19:37:18.013 SQL [22918]: pgsql_close() -- 19:37:18.251 INFO [22918]: COREGRADE is starting... -- 19:37:18.251 INFO [22918]: Version from config: 1.0 -- 19:37:18.251 DEBUG [22918]: Connecting to database... -- 19:37:18.251 DEBUG [22918]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:37:18.251 SQL [22918]: pgsql_db_connect() -- 19:37:18.255 DEBUG [22918]: Database connection successful -- 19:37:18.255 INFO [22918]: _SERVER found -- 19:37:18.255 INFO [22918]: REMOTE_ADDR = 192.168.1.13 -- 19:37:18.255 INFO [22918]: SERVER_NAME = oameye.works.coregrade.com -- 19:37:18.255 INFO [22918]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=32ff1nkialqo6trr0d238i2k8bsjegcr -- 19:37:18.255 INFO [22918]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:37:18.255 INFO [22918]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:37:18.266 INFO [22918]: COREGRADE is stopping... -- 19:37:18.266 DEBUG [22918]: Closing database connection -- 19:37:18.266 SQL [22918]: pgsql_close() -- 19:37:21.624 INFO [22916]: COREGRADE is starting... -- 19:37:21.624 INFO [22916]: Version from config: 1.0 -- 19:37:21.624 DEBUG [22916]: Connecting to database... -- 19:37:21.624 DEBUG [22916]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:37:21.625 SQL [22916]: pgsql_db_connect() -- 19:37:21.629 DEBUG [22916]: Database connection successful -- 19:37:21.629 INFO [22916]: _SERVER found -- 19:37:21.629 INFO [22916]: REMOTE_ADDR = 192.168.1.13 -- 19:37:21.629 INFO [22916]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:37:21.629 INFO [22916]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=36ecih36lhl4b2uqagds277re6bc634f -- 19:37:21.629 INFO [22916]: QUERY_STRING = /member -- 19:37:21.629 INFO [22916]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:37:21.669 INFO [22916]: COREGRADE is stopping... -- 19:37:21.669 DEBUG [22916]: Closing database connection -- 19:37:21.669 SQL [22916]: pgsql_close() -- 19:37:21.965 INFO [22916]: COREGRADE is starting... -- 19:37:21.965 INFO [22916]: Version from config: 1.0 -- 19:37:21.965 DEBUG [22916]: Connecting to database... -- 19:37:21.965 DEBUG [22916]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:37:21.965 SQL [22916]: pgsql_db_connect() -- 19:37:21.969 DEBUG [22916]: Database connection successful -- 19:37:21.969 INFO [22916]: _SERVER found -- 19:37:21.969 INFO [22916]: REMOTE_ADDR = 192.168.1.13 -- 19:37:21.969 INFO [22916]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:37:21.969 INFO [22916]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=v4ghm0u5mme40kqrmki1dibo39co9u53 -- 19:37:21.969 INFO [22916]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:37:21.969 INFO [22916]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:37:21.980 INFO [22916]: COREGRADE is stopping... -- 19:37:21.980 DEBUG [22916]: Closing database connection -- 19:37:21.980 SQL [22916]: pgsql_close() -- 19:37:23.510 INFO [22916]: COREGRADE is starting... -- 19:37:23.510 INFO [22916]: Version from config: 1.0 -- 19:37:23.510 DEBUG [22916]: Connecting to database... -- 19:37:23.510 DEBUG [22916]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:37:23.510 SQL [22916]: pgsql_db_connect() -- 19:37:23.514 DEBUG [22916]: Database connection successful -- 19:37:23.514 INFO [22916]: _SERVER found -- 19:37:23.514 INFO [22916]: REMOTE_ADDR = 192.168.1.13 -- 19:37:23.514 INFO [22916]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:37:23.514 INFO [22916]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=v4ghm0u5mme40kqrmki1dibo39co9u53 -- 19:37:23.514 INFO [22916]: QUERY_STRING = /member/page -- 19:37:23.514 INFO [22916]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:37:23.554 INFO [22916]: COREGRADE is stopping... -- 19:37:23.554 DEBUG [22916]: Closing database connection -- 19:37:23.554 SQL [22916]: pgsql_close() -- 19:37:23.744 INFO [22916]: COREGRADE is starting... -- 19:37:23.744 INFO [22916]: Version from config: 1.0 -- 19:37:23.744 DEBUG [22916]: Connecting to database... -- 19:37:23.744 DEBUG [22916]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:37:23.744 SQL [22916]: pgsql_db_connect() -- 19:37:23.749 DEBUG [22916]: Database connection successful -- 19:37:23.749 INFO [22916]: _SERVER found -- 19:37:23.749 INFO [22916]: REMOTE_ADDR = 192.168.1.13 -- 19:37:23.749 INFO [22916]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:37:23.749 INFO [22916]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=v4ghm0u5mme40kqrmki1dibo39co9u53 -- 19:37:23.749 INFO [22916]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:37:23.749 INFO [22916]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:37:23.760 INFO [22916]: COREGRADE is stopping... -- 19:37:23.760 DEBUG [22916]: Closing database connection -- 19:37:23.760 SQL [22916]: pgsql_close() -- 19:37:25.496 INFO [22916]: COREGRADE is starting... -- 19:37:25.496 INFO [22916]: Version from config: 1.0 -- 19:37:25.496 DEBUG [22916]: Connecting to database... -- 19:37:25.496 DEBUG [22916]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:37:25.496 SQL [22916]: pgsql_db_connect() -- 19:37:25.500 DEBUG [22916]: Database connection successful -- 19:37:25.500 INFO [22916]: _SERVER found -- 19:37:25.500 INFO [22916]: REMOTE_ADDR = 192.168.1.13 -- 19:37:25.500 INFO [22916]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:37:25.500 INFO [22916]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=v4ghm0u5mme40kqrmki1dibo39co9u53 -- 19:37:25.500 INFO [22916]: QUERY_STRING = /member/configure -- 19:37:25.500 INFO [22916]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:37:25.539 INFO [22916]: COREGRADE is stopping... -- 19:37:25.539 DEBUG [22916]: Closing database connection -- 19:37:25.539 SQL [22916]: pgsql_close() -- 19:37:25.752 INFO [22916]: COREGRADE is starting... -- 19:37:25.753 INFO [22916]: Version from config: 1.0 -- 19:37:25.753 DEBUG [22916]: Connecting to database... -- 19:37:25.753 DEBUG [22916]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:37:25.753 SQL [22916]: pgsql_db_connect() -- 19:37:25.757 DEBUG [22916]: Database connection successful -- 19:37:25.757 INFO [22916]: _SERVER found -- 19:37:25.757 INFO [22916]: REMOTE_ADDR = 192.168.1.13 -- 19:37:25.757 INFO [22916]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:37:25.757 INFO [22916]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=v4ghm0u5mme40kqrmki1dibo39co9u53 -- 19:37:25.757 INFO [22916]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:37:25.757 INFO [22916]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:37:25.768 INFO [22916]: COREGRADE is stopping... -- 19:37:25.768 DEBUG [22916]: Closing database connection -- 19:37:25.768 SQL [22916]: pgsql_close() -- 19:37:28.063 INFO [22916]: COREGRADE is starting... -- 19:37:28.064 INFO [22916]: Version from config: 1.0 -- 19:37:28.064 DEBUG [22916]: Connecting to database... -- 19:37:28.064 DEBUG [22916]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:37:28.064 SQL [22916]: pgsql_db_connect() -- 19:37:28.068 DEBUG [22916]: Database connection successful -- 19:37:28.068 INFO [22916]: _SERVER found -- 19:37:28.068 INFO [22916]: REMOTE_ADDR = 192.168.1.13 -- 19:37:28.068 INFO [22916]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:37:28.068 INFO [22916]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=v4ghm0u5mme40kqrmki1dibo39co9u53 -- 19:37:28.068 INFO [22916]: QUERY_STRING = /member -- 19:37:28.068 INFO [22916]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:37:28.106 INFO [22916]: COREGRADE is stopping... -- 19:37:28.106 DEBUG [22916]: Closing database connection -- 19:37:28.106 SQL [22916]: pgsql_close() -- 19:37:28.277 INFO [22916]: COREGRADE is starting... -- 19:37:28.277 INFO [22916]: Version from config: 1.0 -- 19:37:28.277 DEBUG [22916]: Connecting to database... -- 19:37:28.277 DEBUG [22916]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:37:28.277 SQL [22916]: pgsql_db_connect() -- 19:37:28.281 DEBUG [22916]: Database connection successful -- 19:37:28.281 INFO [22916]: _SERVER found -- 19:37:28.281 INFO [22916]: REMOTE_ADDR = 192.168.1.13 -- 19:37:28.281 INFO [22916]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:37:28.281 INFO [22916]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=v4ghm0u5mme40kqrmki1dibo39co9u53 -- 19:37:28.281 INFO [22916]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:37:28.281 INFO [22916]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:37:28.292 INFO [22916]: COREGRADE is stopping... -- 19:37:28.292 DEBUG [22916]: Closing database connection -- 19:37:28.292 SQL [22916]: pgsql_close() -- 19:37:29.670 INFO [22916]: COREGRADE is starting... -- 19:37:29.670 INFO [22916]: Version from config: 1.0 -- 19:37:29.670 DEBUG [22916]: Connecting to database... -- 19:37:29.670 DEBUG [22916]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:37:29.670 SQL [22916]: pgsql_db_connect() -- 19:37:29.674 DEBUG [22916]: Database connection successful -- 19:37:29.674 INFO [22916]: _SERVER found -- 19:37:29.674 INFO [22916]: REMOTE_ADDR = 192.168.1.13 -- 19:37:29.674 INFO [22916]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:37:29.674 INFO [22916]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=v4ghm0u5mme40kqrmki1dibo39co9u53 -- 19:37:29.674 INFO [22916]: QUERY_STRING = /member/page -- 19:37:29.674 INFO [22916]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:37:29.715 INFO [22916]: COREGRADE is stopping... -- 19:37:29.715 DEBUG [22916]: Closing database connection -- 19:37:29.715 SQL [22916]: pgsql_close() -- 19:37:29.944 INFO [22916]: COREGRADE is starting... -- 19:37:29.944 INFO [22916]: Version from config: 1.0 -- 19:37:29.944 DEBUG [22916]: Connecting to database... -- 19:37:29.944 DEBUG [22916]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:37:29.944 SQL [22916]: pgsql_db_connect() -- 19:37:29.948 DEBUG [22916]: Database connection successful -- 19:37:29.948 INFO [22916]: _SERVER found -- 19:37:29.948 INFO [22916]: REMOTE_ADDR = 192.168.1.13 -- 19:37:29.948 INFO [22916]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:37:29.948 INFO [22916]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=v4ghm0u5mme40kqrmki1dibo39co9u53 -- 19:37:29.948 INFO [22916]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:37:29.948 INFO [22916]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:37:29.959 INFO [22916]: COREGRADE is stopping... -- 19:37:29.959 DEBUG [22916]: Closing database connection -- 19:37:29.959 SQL [22916]: pgsql_close() -- 19:37:30.742 INFO [22916]: COREGRADE is starting... -- 19:37:30.743 INFO [22916]: Version from config: 1.0 -- 19:37:30.743 DEBUG [22916]: Connecting to database... -- 19:37:30.743 DEBUG [22916]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:37:30.743 SQL [22916]: pgsql_db_connect() -- 19:37:30.747 DEBUG [22916]: Database connection successful -- 19:37:30.747 INFO [22916]: _SERVER found -- 19:37:30.747 INFO [22916]: REMOTE_ADDR = 192.168.1.13 -- 19:37:30.747 INFO [22916]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:37:30.747 INFO [22916]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=v4ghm0u5mme40kqrmki1dibo39co9u53 -- 19:37:30.747 INFO [22916]: QUERY_STRING = /member/configure -- 19:37:30.747 INFO [22916]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:37:30.786 INFO [22916]: COREGRADE is stopping... -- 19:37:30.786 DEBUG [22916]: Closing database connection -- 19:37:30.786 SQL [22916]: pgsql_close() -- 19:37:31.041 INFO [22916]: COREGRADE is starting... -- 19:37:31.041 INFO [22916]: Version from config: 1.0 -- 19:37:31.041 DEBUG [22916]: Connecting to database... -- 19:37:31.041 DEBUG [22916]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:37:31.041 SQL [22916]: pgsql_db_connect() -- 19:37:31.045 DEBUG [22916]: Database connection successful -- 19:37:31.045 INFO [22916]: _SERVER found -- 19:37:31.045 INFO [22916]: REMOTE_ADDR = 192.168.1.13 -- 19:37:31.045 INFO [22916]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:37:31.045 INFO [22916]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=v4ghm0u5mme40kqrmki1dibo39co9u53 -- 19:37:31.045 INFO [22916]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:37:31.045 INFO [22916]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:37:31.056 INFO [22916]: COREGRADE is stopping... -- 19:37:31.056 DEBUG [22916]: Closing database connection -- 19:37:31.056 SQL [22916]: pgsql_close() -- 19:37:34.687 INFO [22916]: COREGRADE is starting... -- 19:37:34.688 INFO [22916]: Version from config: 1.0 -- 19:37:34.688 DEBUG [22916]: Connecting to database... -- 19:37:34.688 DEBUG [22916]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:37:34.688 SQL [22916]: pgsql_db_connect() -- 19:37:34.692 DEBUG [22916]: Database connection successful -- 19:37:34.692 INFO [22916]: _SERVER found -- 19:37:34.692 INFO [22916]: REMOTE_ADDR = 192.168.1.13 -- 19:37:34.692 INFO [22916]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:37:34.692 INFO [22916]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=v4ghm0u5mme40kqrmki1dibo39co9u53 -- 19:37:34.692 INFO [22916]: QUERY_STRING = /member -- 19:37:34.692 INFO [22916]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:37:34.731 INFO [22916]: COREGRADE is stopping... -- 19:37:34.731 DEBUG [22916]: Closing database connection -- 19:37:34.731 SQL [22916]: pgsql_close() -- 19:37:35.039 INFO [22916]: COREGRADE is starting... -- 19:37:35.039 INFO [22916]: Version from config: 1.0 -- 19:37:35.039 DEBUG [22916]: Connecting to database... -- 19:37:35.039 DEBUG [22916]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:37:35.039 SQL [22916]: pgsql_db_connect() -- 19:37:35.043 DEBUG [22916]: Database connection successful -- 19:37:35.043 INFO [22916]: _SERVER found -- 19:37:35.043 INFO [22916]: REMOTE_ADDR = 192.168.1.13 -- 19:37:35.043 INFO [22916]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:37:35.043 INFO [22916]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=v4ghm0u5mme40kqrmki1dibo39co9u53 -- 19:37:35.043 INFO [22916]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:37:35.043 INFO [22916]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:37:35.054 INFO [22916]: COREGRADE is stopping... -- 19:37:35.054 DEBUG [22916]: Closing database connection -- 19:37:35.055 SQL [22916]: pgsql_close() -- 19:37:36.092 INFO [22916]: COREGRADE is starting... -- 19:37:36.092 INFO [22916]: Version from config: 1.0 -- 19:37:36.092 DEBUG [22916]: Connecting to database... -- 19:37:36.092 DEBUG [22916]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:37:36.092 SQL [22916]: pgsql_db_connect() -- 19:37:36.096 DEBUG [22916]: Database connection successful -- 19:37:36.096 INFO [22916]: _SERVER found -- 19:37:36.096 INFO [22916]: REMOTE_ADDR = 192.168.1.13 -- 19:37:36.096 INFO [22916]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:37:36.096 INFO [22916]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=v4ghm0u5mme40kqrmki1dibo39co9u53 -- 19:37:36.096 INFO [22916]: QUERY_STRING = /member/page -- 19:37:36.096 INFO [22916]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:37:36.136 INFO [22916]: COREGRADE is stopping... -- 19:37:36.136 DEBUG [22916]: Closing database connection -- 19:37:36.136 SQL [22916]: pgsql_close() -- 19:37:36.619 INFO [22916]: COREGRADE is starting... -- 19:37:36.620 INFO [22916]: Version from config: 1.0 -- 19:37:36.620 DEBUG [22916]: Connecting to database... -- 19:37:36.620 DEBUG [22916]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:37:36.620 SQL [22916]: pgsql_db_connect() -- 19:37:36.624 DEBUG [22916]: Database connection successful -- 19:37:36.624 INFO [22916]: _SERVER found -- 19:37:36.624 INFO [22916]: REMOTE_ADDR = 192.168.1.13 -- 19:37:36.624 INFO [22916]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:37:36.624 INFO [22916]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=v4ghm0u5mme40kqrmki1dibo39co9u53 -- 19:37:36.624 INFO [22916]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:37:36.624 INFO [22916]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:37:36.635 INFO [22916]: COREGRADE is stopping... -- 19:37:36.635 DEBUG [22916]: Closing database connection -- 19:37:36.635 SQL [22916]: pgsql_close() -- 19:37:40.624 INFO [22916]: COREGRADE is starting... -- 19:37:40.624 INFO [22916]: Version from config: 1.0 -- 19:37:40.624 DEBUG [22916]: Connecting to database... -- 19:37:40.624 DEBUG [22916]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:37:40.624 SQL [22916]: pgsql_db_connect() -- 19:37:40.628 DEBUG [22916]: Database connection successful -- 19:37:40.628 INFO [22916]: _SERVER found -- 19:37:40.628 INFO [22916]: REMOTE_ADDR = 192.168.1.13 -- 19:37:40.628 INFO [22916]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:37:40.628 INFO [22916]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=v4ghm0u5mme40kqrmki1dibo39co9u53 -- 19:37:40.628 INFO [22916]: QUERY_STRING = /member/viewCardAddAction -- 19:37:40.628 INFO [22916]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:37:40.658 INFO [22916]: COREGRADE is stopping... -- 19:37:40.658 DEBUG [22916]: Closing database connection -- 19:37:40.658 SQL [22916]: pgsql_close() -- 19:37:50.505 INFO [22973]: COREGRADE is starting... -- 19:37:50.505 INFO [22973]: Version from config: 1.0 -- 19:37:50.505 DEBUG [22973]: Connecting to database... -- 19:37:50.505 DEBUG [22973]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:37:50.505 SQL [22973]: pgsql_db_connect() -- 19:37:50.509 DEBUG [22973]: Database connection successful -- 19:37:50.509 INFO [22973]: _SERVER found -- 19:37:50.509 INFO [22973]: REMOTE_ADDR = 192.168.1.13 -- 19:37:50.509 INFO [22973]: SERVER_NAME = oameye.works.coregrade.com -- 19:37:50.509 INFO [22973]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361 -- 19:37:50.509 INFO [22973]: QUERY_STRING = /member/page -- 19:37:50.509 INFO [22973]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:37:50.543 INFO [22973]: COREGRADE is stopping... -- 19:37:50.543 DEBUG [22973]: Closing database connection -- 19:37:50.543 SQL [22973]: pgsql_close() -- 19:37:50.561 INFO [22973]: COREGRADE is starting... -- 19:37:50.561 INFO [22973]: Version from config: 1.0 -- 19:37:50.561 DEBUG [22973]: Connecting to database... -- 19:37:50.561 DEBUG [22973]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:37:50.561 SQL [22973]: pgsql_db_connect() -- 19:37:50.565 DEBUG [22973]: Database connection successful -- 19:37:50.565 INFO [22973]: _SERVER found -- 19:37:50.565 INFO [22973]: REMOTE_ADDR = 192.168.1.13 -- 19:37:50.565 INFO [22973]: SERVER_NAME = oameye.works.coregrade.com -- 19:37:50.565 INFO [22973]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc -- 19:37:50.565 INFO [22973]: QUERY_STRING = -- 19:37:50.565 INFO [22973]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:37:50.605 INFO [22973]: COREGRADE is stopping... -- 19:37:50.605 DEBUG [22973]: Closing database connection -- 19:37:50.605 SQL [22973]: pgsql_close() -- 19:37:50.924 INFO [22973]: COREGRADE is starting... -- 19:37:50.925 INFO [22973]: Version from config: 1.0 -- 19:37:50.925 DEBUG [22973]: Connecting to database... -- 19:37:50.925 DEBUG [22973]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:37:50.925 SQL [22973]: pgsql_db_connect() -- 19:37:50.936 INFO [22917]: COREGRADE is starting... -- 19:37:50.936 INFO [22917]: Version from config: 1.0 -- 19:37:50.936 DEBUG [22917]: Connecting to database... -- 19:37:50.936 DEBUG [22917]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:37:50.936 SQL [22917]: pgsql_db_connect() -- 19:37:50.929 DEBUG [22973]: Database connection successful -- 19:37:50.929 INFO [22973]: _SERVER found -- 19:37:50.929 INFO [22973]: REMOTE_ADDR = 192.168.1.13 -- 19:37:50.929 INFO [22973]: SERVER_NAME = oameye.works.coregrade.com -- 19:37:50.929 INFO [22973]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc -- 19:37:50.929 INFO [22973]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 19:37:50.929 INFO [22973]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:37:50.940 INFO [22973]: COREGRADE is stopping... -- 19:37:50.940 DEBUG [22973]: Closing database connection -- 19:37:50.940 SQL [22973]: pgsql_close() -- 19:37:50.940 DEBUG [22917]: Database connection successful -- 19:37:50.940 INFO [22917]: _SERVER found -- 19:37:50.940 INFO [22917]: REMOTE_ADDR = 192.168.1.13 -- 19:37:50.940 INFO [22917]: SERVER_NAME = oameye.works.coregrade.com -- 19:37:50.940 INFO [22917]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc -- 19:37:50.940 INFO [22917]: QUERY_STRING = /assets/img/footer_1.jpg -- 19:37:50.940 INFO [22917]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:37:50.951 INFO [22917]: COREGRADE is stopping... -- 19:37:50.951 DEBUG [22917]: Closing database connection -- 19:37:50.951 SQL [22917]: pgsql_close() -- 19:37:58.216 INFO [22915]: COREGRADE is starting... -- 19:37:58.217 INFO [22915]: Version from config: 1.0 -- 19:37:58.217 DEBUG [22915]: Connecting to database... -- 19:37:58.217 DEBUG [22915]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:37:58.217 SQL [22915]: pgsql_db_connect() -- 19:37:58.221 DEBUG [22915]: Database connection successful -- 19:37:58.221 INFO [22915]: _SERVER found -- 19:37:58.221 INFO [22915]: REMOTE_ADDR = 192.168.1.13 -- 19:37:58.221 INFO [22915]: SERVER_NAME = oameye.works.coregrade.com -- 19:37:58.221 INFO [22915]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc; _gat_gtag_UA_54829827_2=1 -- 19:37:58.221 INFO [22915]: QUERY_STRING = /auth -- 19:37:58.221 INFO [22915]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:37:58.251 INFO [22915]: COREGRADE is stopping... -- 19:37:58.251 DEBUG [22915]: Closing database connection -- 19:37:58.251 SQL [22915]: pgsql_close() -- 19:37:58.532 INFO [22915]: COREGRADE is starting... -- 19:37:58.533 INFO [22915]: Version from config: 1.0 -- 19:37:58.533 DEBUG [22915]: Connecting to database... -- 19:37:58.533 DEBUG [22915]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:37:58.533 SQL [22915]: pgsql_db_connect() -- 19:37:58.537 DEBUG [22915]: Database connection successful -- 19:37:58.537 INFO [22915]: _SERVER found -- 19:37:58.537 INFO [22915]: REMOTE_ADDR = 192.168.1.13 -- 19:37:58.537 INFO [22915]: SERVER_NAME = oameye.works.coregrade.com -- 19:37:58.537 INFO [22915]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc; _gat_gtag_UA_54829827_2=1 -- 19:37:58.537 INFO [22915]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 19:37:58.537 INFO [22915]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:37:58.548 INFO [22915]: COREGRADE is stopping... -- 19:37:58.548 DEBUG [22915]: Closing database connection -- 19:37:58.548 SQL [22915]: pgsql_close() -- 19:37:58.569 INFO [22915]: COREGRADE is starting... -- 19:37:58.569 INFO [22915]: Version from config: 1.0 -- 19:37:58.569 DEBUG [22915]: Connecting to database... -- 19:37:58.569 DEBUG [22915]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:37:58.569 SQL [22915]: pgsql_db_connect() -- 19:37:58.573 DEBUG [22915]: Database connection successful -- 19:37:58.573 INFO [22915]: _SERVER found -- 19:37:58.573 INFO [22915]: REMOTE_ADDR = 192.168.1.13 -- 19:37:58.573 INFO [22915]: SERVER_NAME = oameye.works.coregrade.com -- 19:37:58.573 INFO [22915]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc; _gat_gtag_UA_54829827_2=1 -- 19:37:58.573 INFO [22915]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:37:58.573 INFO [22915]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:37:58.584 INFO [22915]: COREGRADE is stopping... -- 19:37:58.584 DEBUG [22915]: Closing database connection -- 19:37:58.584 SQL [22915]: pgsql_close() -- 19:37:59.741 INFO [22915]: COREGRADE is starting... -- 19:37:59.741 INFO [22915]: Version from config: 1.0 -- 19:37:59.741 DEBUG [22915]: Connecting to database... -- 19:37:59.741 DEBUG [22915]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:37:59.741 SQL [22915]: pgsql_db_connect() -- 19:37:59.775 INFO [22915]: COREGRADE is starting... -- 19:37:59.775 INFO [22915]: Version from config: 1.0 -- 19:37:59.775 DEBUG [22915]: Connecting to database... -- 19:37:59.776 DEBUG [22915]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:37:59.776 SQL [22915]: pgsql_db_connect() -- 19:37:59.779 DEBUG [22915]: Database connection successful -- 19:37:59.779 INFO [22915]: _SERVER found -- 19:37:59.779 INFO [22915]: REMOTE_ADDR = 192.168.1.13 -- 19:37:59.779 INFO [22915]: SERVER_NAME = oameye.works.coregrade.com -- 19:37:59.779 INFO [22915]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc; _gat_gtag_UA_54829827_2=1 -- 19:37:59.779 INFO [22915]: QUERY_STRING = -- 19:37:59.779 INFO [22915]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:37:59.779 INFO [22915]: SystemStatus()09-09-********~************ -- 19:37:59.779 INFO [22915]: long coregrade_api_main(CVars in, CVars &out) -- 19:37:59.780 INFO [22915]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 19:37:59.780 INFO [22915]: account calls -- 19:37:59.780 INFO [22915]: account_calls() -- 19:37:59.780 INFO [22915]: LoginCoreGradeAccount() -- 19:37:59.780 FLOG_MAX [22915]: REQ_STRING(username) -- 19:37:59.780 FLOG_MAX [22915]: REQ_STRING(password) -- 19:37:59.780 FLOG_MAX [22915]: REQ_STRING(sessionid) -- 19:37:59.780 FLOG_MAX [22915]: long load_db_record( CVars &rec, const char * query, ... ) -- 19:37:59.780 SQL [22915]: pgsql_query() -- 19:37:59.780 SQL [22915]: About to run query: -- 19:37:59.780 SQL [22915]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 19:37:59.783 SQL [22915]: Found rows: 1 -- 19:37:59.783 FLOG_MAX [22915]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=15 -- 19:37:59.783 INFO [22915]: long SessionCheck(long uid, const char *sessionid, int create ) -- 19:37:59.783 SQL [22915]: pgsql_exec() -- 19:37:59.783 SQL [22915]: About to run query: -- 19:37:59.783 SQL [22915]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 19:37:59.784 SQL [22915]: PQcmdTuples: 1 -- 19:37:59.784 SQL [22915]: Affected rows: 1 -- 19:37:59.784 SQL [22915]: pgsql_exec() -- 19:37:59.784 SQL [22915]: About to run query: -- 19:37:59.784 SQL [22915]: DELETE FROM members_session WHERE member_id=7 -- 19:37:59.785 SQL [22915]: PQcmdTuples: 0 -- 19:37:59.785 SQL [22915]: Affected rows: 0 -- 19:37:59.785 SQL [22915]: pgsql_query() -- 19:37:59.785 SQL [22915]: About to run query: -- 19:37:59.785 SQL [22915]: SELECT * FROM members_session WHERE member_id=7 AND session<>'282819CB0E24E88247B6664105E3D465' -- 19:37:59.785 SQL [22915]: Found rows: 0 -- 19:37:59.785 SQL [22915]: Found rows: 0 -- 19:37:59.785 FLOG_MAX [22915]: long load_db_record( CVars &rec, const char * query, ... ) -- 19:37:59.785 SQL [22915]: pgsql_query() -- 19:37:59.786 SQL [22915]: About to run query: -- 19:37:59.786 SQL [22915]: SELECT * FROM members_session WHERE member_id=7 AND session='282819CB0E24E88247B6664105E3D465' -- 19:37:59.786 SQL [22915]: Found rows: 0 -- 19:37:59.786 SQL [22915]: Found rows: 0 -- 19:37:59.786 FLOG_MAX [22915]: insert_db_record() -- 19:37:59.786 SQL [22915]: pgsql_exec() -- 19:37:59.786 SQL [22915]: About to run query: -- 19:37:59.786 SQL [22915]: INSERT INTO members_session (member_id,session) VALUES ('7','282819CB0E24E88247B6664105E3D465') -- 19:37:59.787 SQL [22915]: PQcmdTuples: 1 -- 19:37:59.787 SQL [22915]: Affected rows: 1 -- 19:37:59.788 FLOG_MAX [22915]: SELECT currval('members_session_id_seq') -- 19:37:59.788 SQL [22915]: pgsql_query() -- 19:37:59.788 SQL [22915]: About to run query: -- 19:37:59.788 SQL [22915]: SELECT currval('members_session_id_seq') -- 19:37:59.788 SQL [22915]: Found rows: 1 -- 19:37:59.788 INFO [22915]: CreateDefaultPage() -- 19:37:59.788 FLOG_MAX [22915]: long load_db_record( CVars &rec, const char * query, ... ) -- 19:37:59.788 SQL [22915]: pgsql_query() -- 19:37:59.788 SQL [22915]: About to run query: -- 19:37:59.788 SQL [22915]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 19:37:59.788 SQL [22915]: Found rows: 1 -- 19:37:59.788 FLOG_MAX [22915]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 19:37:59.788 SQL [22915]: pgsql_query() -- 19:37:59.788 SQL [22915]: About to run query: -- 19:37:59.788 SQL [22915]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 19:37:59.789 SQL [22915]: Found rows: 1 -- 19:37:59.789 INFO [22915]: /CreateDefaultPage() -- 19:37:59.789 INFO [22915]: /LoginCoreGradeAccount() -- 19:37:59.789 INFO [22915]: RET: added=2020-02-05 09:42:12.816064 -- 19:37:59.789 INFO [22915]: RET: email=tokslaw@chiefsoft.com -- 19:37:59.789 INFO [22915]: RET: firstname=Tokunbo -- 19:37:59.789 INFO [22915]: RET: id=7 -- 19:37:59.789 INFO [22915]: RET: last_login= -- 19:37:59.789 INFO [22915]: RET: lastname=Lawal -- 19:37:59.789 INFO [22915]: RET: loc=192.168.1.13 -- 19:37:59.789 INFO [22915]: RET: member_id=7 -- 19:37:59.789 INFO [22915]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 19:37:59.789 INFO [22915]: RET: phone= -- 19:37:59.789 INFO [22915]: RET: pid= -- 19:37:59.789 INFO [22915]: RET: result=YES I GET TO BACK END -- 19:37:59.789 INFO [22915]: RET: sessionid=282819CB0E24E88247B6664105E3D465 -- 19:37:59.789 INFO [22915]: RET: status=1 -- 19:37:59.789 INFO [22915]: RET: stauts=OK -- 19:37:59.789 INFO [22915]: RET: username=tokslaw@chiefsoft.com -- 19:37:59.789 INFO [22915]: RET: verified= -- 19:37:59.790 INFO [22915]: COREGRADE is stopping... -- 19:37:59.790 DEBUG [22915]: Closing database connection -- 19:37:59.790 SQL [22915]: pgsql_close() -- 19:37:59.745 DEBUG [22915]: Database connection successful -- 19:37:59.745 INFO [22915]: _SERVER found -- 19:37:59.745 INFO [22915]: REMOTE_ADDR = 192.168.1.13 -- 19:37:59.745 INFO [22915]: SERVER_NAME = oameye.works.coregrade.com -- 19:37:59.745 INFO [22915]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc; _gat_gtag_UA_54829827_2=1 -- 19:37:59.745 INFO [22915]: QUERY_STRING = /auth -- 19:37:59.745 INFO [22915]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:37:59.791 INFO [22915]: COREGRADE is stopping... -- 19:37:59.791 DEBUG [22915]: Closing database connection -- 19:37:59.791 SQL [22915]: pgsql_close() -- 19:37:59.945 INFO [22915]: COREGRADE is starting... -- 19:37:59.945 INFO [22915]: Version from config: 1.0 -- 19:37:59.945 DEBUG [22915]: Connecting to database... -- 19:37:59.945 DEBUG [22915]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:37:59.945 SQL [22915]: pgsql_db_connect() -- 19:37:59.949 DEBUG [22915]: Database connection successful -- 19:37:59.949 INFO [22915]: _SERVER found -- 19:37:59.949 INFO [22915]: REMOTE_ADDR = 192.168.1.13 -- 19:37:59.949 INFO [22915]: SERVER_NAME = oameye.works.coregrade.com -- 19:37:59.949 INFO [22915]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc; _gat_gtag_UA_54829827_2=1 -- 19:37:59.949 INFO [22915]: QUERY_STRING = /member/index -- 19:37:59.949 INFO [22915]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:37:59.985 INFO [22915]: COREGRADE is stopping... -- 19:37:59.985 DEBUG [22915]: Closing database connection -- 19:37:59.985 SQL [22915]: pgsql_close() -- 19:38:00.249 INFO [22915]: COREGRADE is starting... -- 19:38:00.250 INFO [22915]: Version from config: 1.0 -- 19:38:00.250 DEBUG [22915]: Connecting to database... -- 19:38:00.250 DEBUG [22915]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:38:00.250 SQL [22915]: pgsql_db_connect() -- 19:38:00.254 DEBUG [22915]: Database connection successful -- 19:38:00.254 INFO [22915]: _SERVER found -- 19:38:00.254 INFO [22915]: REMOTE_ADDR = 192.168.1.13 -- 19:38:00.254 INFO [22915]: SERVER_NAME = oameye.works.coregrade.com -- 19:38:00.254 INFO [22915]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc; _gat_gtag_UA_54829827_2=1 -- 19:38:00.254 INFO [22915]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:38:00.254 INFO [22915]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:38:00.265 INFO [22915]: COREGRADE is stopping... -- 19:38:00.265 DEBUG [22915]: Closing database connection -- 19:38:00.265 SQL [22915]: pgsql_close() -- 19:38:00.351 INFO [22915]: COREGRADE is starting... -- 19:38:00.351 INFO [22915]: Version from config: 1.0 -- 19:38:00.351 DEBUG [22915]: Connecting to database... -- 19:38:00.352 DEBUG [22915]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:38:00.352 SQL [22915]: pgsql_db_connect() -- 19:38:00.356 DEBUG [22915]: Database connection successful -- 19:38:00.356 INFO [22915]: _SERVER found -- 19:38:00.356 INFO [22915]: REMOTE_ADDR = 192.168.1.13 -- 19:38:00.356 INFO [22915]: SERVER_NAME = oameye.works.coregrade.com -- 19:38:00.356 INFO [22915]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc; _gat_gtag_UA_54829827_2=1 -- 19:38:00.356 INFO [22915]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:38:00.356 INFO [22915]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:38:00.366 INFO [22915]: COREGRADE is stopping... -- 19:38:00.367 DEBUG [22915]: Closing database connection -- 19:38:00.367 SQL [22915]: pgsql_close() -- 19:38:13.014 INFO [22914]: COREGRADE is starting... -- 19:38:13.014 INFO [22914]: Version from config: 1.0 -- 19:38:13.014 DEBUG [22914]: Connecting to database... -- 19:38:13.014 DEBUG [22914]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:38:13.014 SQL [22914]: pgsql_db_connect() -- 19:38:13.018 DEBUG [22914]: Database connection successful -- 19:38:13.018 INFO [22914]: _SERVER found -- 19:38:13.018 INFO [22914]: REMOTE_ADDR = 192.168.1.13 -- 19:38:13.018 INFO [22914]: SERVER_NAME = oameye.works.coregrade.com -- 19:38:13.018 INFO [22914]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc; _gat_gtag_UA_54829827_2=1 -- 19:38:13.018 INFO [22914]: QUERY_STRING = /member/page -- 19:38:13.018 INFO [22914]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:38:13.056 INFO [22914]: COREGRADE is stopping... -- 19:38:13.056 DEBUG [22914]: Closing database connection -- 19:38:13.056 SQL [22914]: pgsql_close() -- 19:38:13.465 INFO [22914]: COREGRADE is starting... -- 19:38:13.465 INFO [22914]: Version from config: 1.0 -- 19:38:13.465 DEBUG [22914]: Connecting to database... -- 19:38:13.465 DEBUG [22914]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:38:13.465 SQL [22914]: pgsql_db_connect() -- 19:38:13.469 DEBUG [22914]: Database connection successful -- 19:38:13.469 INFO [22914]: _SERVER found -- 19:38:13.469 INFO [22914]: REMOTE_ADDR = 192.168.1.13 -- 19:38:13.469 INFO [22914]: SERVER_NAME = oameye.works.coregrade.com -- 19:38:13.469 INFO [22914]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc; _gat_gtag_UA_54829827_2=1 -- 19:38:13.469 INFO [22914]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:38:13.469 INFO [22914]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:38:13.480 INFO [22914]: COREGRADE is stopping... -- 19:38:13.480 DEBUG [22914]: Closing database connection -- 19:38:13.480 SQL [22914]: pgsql_close() -- 19:38:13.517 INFO [22914]: COREGRADE is starting... -- 19:38:13.517 INFO [22914]: Version from config: 1.0 -- 19:38:13.517 DEBUG [22914]: Connecting to database... -- 19:38:13.517 DEBUG [22914]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:38:13.517 SQL [22914]: pgsql_db_connect() -- 19:38:13.521 DEBUG [22914]: Database connection successful -- 19:38:13.521 INFO [22914]: _SERVER found -- 19:38:13.521 INFO [22914]: REMOTE_ADDR = 192.168.1.13 -- 19:38:13.521 INFO [22914]: SERVER_NAME = oameye.works.coregrade.com -- 19:38:13.521 INFO [22914]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc; _gat_gtag_UA_54829827_2=1 -- 19:38:13.521 INFO [22914]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:38:13.521 INFO [22914]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:38:13.532 INFO [22914]: COREGRADE is stopping... -- 19:38:13.532 DEBUG [22914]: Closing database connection -- 19:38:13.532 SQL [22914]: pgsql_close() -- 19:38:18.641 INFO [23114]: COREGRADE is starting... -- 19:38:18.641 INFO [23114]: Version from config: 1.0 -- 19:38:18.641 DEBUG [23114]: Connecting to database... -- 19:38:18.641 DEBUG [23114]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:38:18.641 SQL [23114]: pgsql_db_connect() -- 19:38:18.645 DEBUG [23114]: Database connection successful -- 19:38:18.645 INFO [23114]: _SERVER found -- 19:38:18.645 INFO [23114]: REMOTE_ADDR = 192.168.1.13 -- 19:38:18.645 INFO [23114]: SERVER_NAME = oameye.works.coregrade.com -- 19:38:18.645 INFO [23114]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc; _gat_gtag_UA_54829827_2=1 -- 19:38:18.645 INFO [23114]: QUERY_STRING = /member/viewCardAddAction -- 19:38:18.645 INFO [23114]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:38:18.682 INFO [23114]: COREGRADE is stopping... -- 19:38:18.682 DEBUG [23114]: Closing database connection -- 19:38:18.682 SQL [23114]: pgsql_close() -- 19:38:32.569 INFO [22918]: COREGRADE is starting... -- 19:38:32.569 INFO [22918]: Version from config: 1.0 -- 19:38:32.569 DEBUG [22918]: Connecting to database... -- 19:38:32.569 DEBUG [22918]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:38:32.569 SQL [22918]: pgsql_db_connect() -- 19:38:32.573 DEBUG [22918]: Database connection successful -- 19:38:32.573 INFO [22918]: _SERVER found -- 19:38:32.573 INFO [22918]: REMOTE_ADDR = 192.168.1.13 -- 19:38:32.573 INFO [22918]: SERVER_NAME = oameye.works.coregrade.com -- 19:38:32.573 INFO [22918]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc; _gat_gtag_UA_54829827_2=1 -- 19:38:32.573 INFO [22918]: QUERY_STRING = /member -- 19:38:32.573 INFO [22918]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:38:32.611 INFO [22918]: COREGRADE is stopping... -- 19:38:32.611 DEBUG [22918]: Closing database connection -- 19:38:32.611 SQL [22918]: pgsql_close() -- 19:38:32.901 INFO [22918]: COREGRADE is starting... -- 19:38:32.901 INFO [22918]: Version from config: 1.0 -- 19:38:32.901 DEBUG [22918]: Connecting to database... -- 19:38:32.901 DEBUG [22918]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:38:32.901 SQL [22918]: pgsql_db_connect() -- 19:38:32.905 DEBUG [22918]: Database connection successful -- 19:38:32.905 INFO [22918]: _SERVER found -- 19:38:32.905 INFO [22918]: REMOTE_ADDR = 192.168.1.13 -- 19:38:32.905 INFO [22918]: SERVER_NAME = oameye.works.coregrade.com -- 19:38:32.905 INFO [22918]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc; _gat_gtag_UA_54829827_2=1 -- 19:38:32.905 INFO [22918]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:38:32.905 INFO [22918]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:38:32.916 INFO [22918]: COREGRADE is stopping... -- 19:38:32.916 DEBUG [22918]: Closing database connection -- 19:38:32.916 SQL [22918]: pgsql_close() -- 19:38:32.922 INFO [23032]: COREGRADE is starting... -- 19:38:32.923 INFO [23032]: Version from config: 1.0 -- 19:38:32.923 DEBUG [23032]: Connecting to database... -- 19:38:32.923 DEBUG [23032]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:38:32.923 SQL [23032]: pgsql_db_connect() -- 19:38:32.926 DEBUG [23032]: Database connection successful -- 19:38:32.926 INFO [23032]: _SERVER found -- 19:38:32.926 INFO [23032]: REMOTE_ADDR = 192.168.1.13 -- 19:38:32.926 INFO [23032]: SERVER_NAME = oameye.works.coregrade.com -- 19:38:32.926 INFO [23032]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc; _gat_gtag_UA_54829827_2=1 -- 19:38:32.926 INFO [23032]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:38:32.926 INFO [23032]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:38:32.939 INFO [23032]: COREGRADE is stopping... -- 19:38:32.939 DEBUG [23032]: Closing database connection -- 19:38:32.939 SQL [23032]: pgsql_close() -- 19:40:09.995 INFO [22916]: COREGRADE is starting... -- 19:40:09.995 INFO [22916]: Version from config: 1.0 -- 19:40:09.995 DEBUG [22916]: Connecting to database... -- 19:40:09.995 DEBUG [22916]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:40:09.995 SQL [22916]: pgsql_db_connect() -- 19:40:09.000 DEBUG [22916]: Database connection successful -- 19:40:09.000 INFO [22916]: _SERVER found -- 19:40:09.000 INFO [22916]: REMOTE_ADDR = 192.168.1.13 -- 19:40:09.000 INFO [22916]: SERVER_NAME = oameye.works.coregrade.com -- 19:40:09.000 INFO [22916]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc -- 19:40:09.000 INFO [22916]: QUERY_STRING = /member -- 19:40:09.000 INFO [22916]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:40:10.037 INFO [22916]: COREGRADE is stopping... -- 19:40:10.037 DEBUG [22916]: Closing database connection -- 19:40:10.037 SQL [22916]: pgsql_close() -- 19:40:10.392 INFO [22916]: COREGRADE is starting... -- 19:40:10.392 INFO [22916]: Version from config: 1.0 -- 19:40:10.392 DEBUG [22916]: Connecting to database... -- 19:40:10.393 DEBUG [22916]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:40:10.393 SQL [22916]: pgsql_db_connect() -- 19:40:10.397 DEBUG [22916]: Database connection successful -- 19:40:10.397 INFO [22916]: _SERVER found -- 19:40:10.397 INFO [22916]: REMOTE_ADDR = 192.168.1.13 -- 19:40:10.397 INFO [22916]: SERVER_NAME = oameye.works.coregrade.com -- 19:40:10.397 INFO [22916]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc -- 19:40:10.397 INFO [22916]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:40:10.397 INFO [22916]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:40:10.407 INFO [22916]: COREGRADE is stopping... -- 19:40:10.408 DEBUG [22916]: Closing database connection -- 19:40:10.408 SQL [22916]: pgsql_close() -- 19:40:10.463 INFO [22916]: COREGRADE is starting... -- 19:40:10.464 INFO [22916]: Version from config: 1.0 -- 19:40:10.464 DEBUG [22916]: Connecting to database... -- 19:40:10.464 DEBUG [22916]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:40:10.464 SQL [22916]: pgsql_db_connect() -- 19:40:10.467 DEBUG [22916]: Database connection successful -- 19:40:10.467 INFO [22916]: _SERVER found -- 19:40:10.467 INFO [22916]: REMOTE_ADDR = 192.168.1.13 -- 19:40:10.467 INFO [22916]: SERVER_NAME = oameye.works.coregrade.com -- 19:40:10.467 INFO [22916]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc -- 19:40:10.467 INFO [22916]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:40:10.467 INFO [22916]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:40:10.478 INFO [22916]: COREGRADE is stopping... -- 19:40:10.478 DEBUG [22916]: Closing database connection -- 19:40:10.478 SQL [22916]: pgsql_close() -- 19:40:11.407 INFO [22916]: COREGRADE is starting... -- 19:40:11.407 INFO [22916]: Version from config: 1.0 -- 19:40:11.407 DEBUG [22916]: Connecting to database... -- 19:40:11.408 DEBUG [22916]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:40:11.408 SQL [22916]: pgsql_db_connect() -- 19:40:11.412 DEBUG [22916]: Database connection successful -- 19:40:11.412 INFO [22916]: _SERVER found -- 19:40:11.412 INFO [22916]: REMOTE_ADDR = 192.168.1.13 -- 19:40:11.412 INFO [22916]: SERVER_NAME = oameye.works.coregrade.com -- 19:40:11.412 INFO [22916]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc -- 19:40:11.412 INFO [22916]: QUERY_STRING = /member/configure -- 19:40:11.412 INFO [22916]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:40:11.447 INFO [22916]: COREGRADE is stopping... -- 19:40:11.447 DEBUG [22916]: Closing database connection -- 19:40:11.447 SQL [22916]: pgsql_close() -- 19:40:11.638 INFO [22916]: COREGRADE is starting... -- 19:40:11.638 INFO [22916]: Version from config: 1.0 -- 19:40:11.638 DEBUG [22916]: Connecting to database... -- 19:40:11.638 DEBUG [22916]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:40:11.638 SQL [22916]: pgsql_db_connect() -- 19:40:11.642 DEBUG [22916]: Database connection successful -- 19:40:11.642 INFO [22916]: _SERVER found -- 19:40:11.642 INFO [22916]: REMOTE_ADDR = 192.168.1.13 -- 19:40:11.642 INFO [22916]: SERVER_NAME = oameye.works.coregrade.com -- 19:40:11.642 INFO [22916]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc -- 19:40:11.642 INFO [22916]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:40:11.642 INFO [22916]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:40:11.653 INFO [22916]: COREGRADE is stopping... -- 19:40:11.653 DEBUG [22916]: Closing database connection -- 19:40:11.653 SQL [22916]: pgsql_close() -- 19:40:11.659 INFO [22916]: COREGRADE is starting... -- 19:40:11.659 INFO [22916]: Version from config: 1.0 -- 19:40:11.659 DEBUG [22916]: Connecting to database... -- 19:40:11.659 DEBUG [22916]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:40:11.659 SQL [22916]: pgsql_db_connect() -- 19:40:11.663 DEBUG [22916]: Database connection successful -- 19:40:11.663 INFO [22916]: _SERVER found -- 19:40:11.663 INFO [22916]: REMOTE_ADDR = 192.168.1.13 -- 19:40:11.663 INFO [22916]: SERVER_NAME = oameye.works.coregrade.com -- 19:40:11.663 INFO [22916]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc -- 19:40:11.663 INFO [22916]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:40:11.663 INFO [22916]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:40:11.674 INFO [22916]: COREGRADE is stopping... -- 19:40:11.674 DEBUG [22916]: Closing database connection -- 19:40:11.674 SQL [22916]: pgsql_close() -- 19:40:58.683 INFO [25884]: COREGRADE is starting... -- 19:40:58.683 INFO [25884]: Version from config: 1.0 -- 19:40:58.683 DEBUG [25884]: Connecting to database... -- 19:40:58.683 DEBUG [25884]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:40:58.683 SQL [25884]: pgsql_db_connect() -- 19:40:58.688 DEBUG [25884]: Database connection successful -- 19:40:58.688 INFO [25884]: _SERVER found -- 19:40:58.688 INFO [25884]: REMOTE_ADDR = 192.168.1.13 -- 19:40:58.688 INFO [25884]: SERVER_NAME = oameye.works.coregrade.com -- 19:40:58.688 INFO [25884]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc -- 19:40:58.688 INFO [25884]: QUERY_STRING = /member -- 19:40:58.688 INFO [25884]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:40:58.732 INFO [25884]: COREGRADE is stopping... -- 19:40:58.732 DEBUG [25884]: Closing database connection -- 19:40:58.732 SQL [25884]: pgsql_close() -- 19:40:59.048 INFO [25884]: COREGRADE is starting... -- 19:40:59.048 INFO [25884]: Version from config: 1.0 -- 19:40:59.048 DEBUG [25884]: Connecting to database... -- 19:40:59.048 DEBUG [25884]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:40:59.048 SQL [25884]: pgsql_db_connect() -- 19:40:59.052 DEBUG [25884]: Database connection successful -- 19:40:59.052 INFO [25884]: _SERVER found -- 19:40:59.052 INFO [25884]: REMOTE_ADDR = 192.168.1.13 -- 19:40:59.052 INFO [25884]: SERVER_NAME = oameye.works.coregrade.com -- 19:40:59.052 INFO [25884]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc -- 19:40:59.052 INFO [25884]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:40:59.052 INFO [25884]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:40:59.064 INFO [25884]: COREGRADE is stopping... -- 19:40:59.064 DEBUG [25884]: Closing database connection -- 19:40:59.064 SQL [25884]: pgsql_close() -- 19:40:59.096 INFO [25884]: COREGRADE is starting... -- 19:40:59.096 INFO [25884]: Version from config: 1.0 -- 19:40:59.096 DEBUG [25884]: Connecting to database... -- 19:40:59.096 DEBUG [25884]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:40:59.096 SQL [25884]: pgsql_db_connect() -- 19:40:59.100 DEBUG [25884]: Database connection successful -- 19:40:59.100 INFO [25884]: _SERVER found -- 19:40:59.100 INFO [25884]: REMOTE_ADDR = 192.168.1.13 -- 19:40:59.100 INFO [25884]: SERVER_NAME = oameye.works.coregrade.com -- 19:40:59.100 INFO [25884]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc -- 19:40:59.100 INFO [25884]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:40:59.100 INFO [25884]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:40:59.112 INFO [25884]: COREGRADE is stopping... -- 19:40:59.112 DEBUG [25884]: Closing database connection -- 19:40:59.112 SQL [25884]: pgsql_close() -- 19:41:02.226 INFO [25884]: COREGRADE is starting... -- 19:41:02.226 INFO [25884]: Version from config: 1.0 -- 19:41:02.226 DEBUG [25884]: Connecting to database... -- 19:41:02.226 DEBUG [25884]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:41:02.226 SQL [25884]: pgsql_db_connect() -- 19:41:02.230 DEBUG [25884]: Database connection successful -- 19:41:02.230 INFO [25884]: _SERVER found -- 19:41:02.230 INFO [25884]: REMOTE_ADDR = 192.168.1.13 -- 19:41:02.230 INFO [25884]: SERVER_NAME = oameye.works.coregrade.com -- 19:41:02.230 INFO [25884]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc -- 19:41:02.230 INFO [25884]: QUERY_STRING = /member/page -- 19:41:02.230 INFO [25884]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:41:02.271 INFO [25884]: COREGRADE is stopping... -- 19:41:02.271 DEBUG [25884]: Closing database connection -- 19:41:02.271 SQL [25884]: pgsql_close() -- 19:41:02.395 INFO [25884]: COREGRADE is starting... -- 19:41:02.395 INFO [25884]: Version from config: 1.0 -- 19:41:02.395 DEBUG [25884]: Connecting to database... -- 19:41:02.395 DEBUG [25884]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:41:02.395 SQL [25884]: pgsql_db_connect() -- 19:41:02.399 DEBUG [25884]: Database connection successful -- 19:41:02.399 INFO [25884]: _SERVER found -- 19:41:02.399 INFO [25884]: REMOTE_ADDR = 192.168.1.13 -- 19:41:02.399 INFO [25884]: SERVER_NAME = oameye.works.coregrade.com -- 19:41:02.399 INFO [25884]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc -- 19:41:02.399 INFO [25884]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:41:02.399 INFO [25884]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:41:02.411 INFO [25884]: COREGRADE is stopping... -- 19:41:02.411 DEBUG [25884]: Closing database connection -- 19:41:02.411 SQL [25884]: pgsql_close() -- 19:41:02.469 INFO [25884]: COREGRADE is starting... -- 19:41:02.469 INFO [25884]: Version from config: 1.0 -- 19:41:02.469 DEBUG [25884]: Connecting to database... -- 19:41:02.469 DEBUG [25884]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:41:02.469 SQL [25884]: pgsql_db_connect() -- 19:41:02.473 DEBUG [25884]: Database connection successful -- 19:41:02.473 INFO [25884]: _SERVER found -- 19:41:02.473 INFO [25884]: REMOTE_ADDR = 192.168.1.13 -- 19:41:02.473 INFO [25884]: SERVER_NAME = oameye.works.coregrade.com -- 19:41:02.473 INFO [25884]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc -- 19:41:02.473 INFO [25884]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:41:02.473 INFO [25884]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:41:02.485 INFO [25884]: COREGRADE is stopping... -- 19:41:02.485 DEBUG [25884]: Closing database connection -- 19:41:02.485 SQL [25884]: pgsql_close() -- 19:41:04.592 INFO [25884]: COREGRADE is starting... -- 19:41:04.593 INFO [25884]: Version from config: 1.0 -- 19:41:04.593 DEBUG [25884]: Connecting to database... -- 19:41:04.593 DEBUG [25884]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:41:04.593 SQL [25884]: pgsql_db_connect() -- 19:41:04.597 DEBUG [25884]: Database connection successful -- 19:41:04.597 INFO [25884]: _SERVER found -- 19:41:04.597 INFO [25884]: REMOTE_ADDR = 192.168.1.13 -- 19:41:04.597 INFO [25884]: SERVER_NAME = oameye.works.coregrade.com -- 19:41:04.597 INFO [25884]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc -- 19:41:04.597 INFO [25884]: QUERY_STRING = /member/viewCardAddAction -- 19:41:04.597 INFO [25884]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:41:04.630 INFO [25884]: COREGRADE is stopping... -- 19:41:04.630 DEBUG [25884]: Closing database connection -- 19:41:04.630 SQL [25884]: pgsql_close() -- 19:41:42.315 INFO [25885]: COREGRADE is starting... -- 19:41:42.315 INFO [25885]: Version from config: 1.0 -- 19:41:42.315 DEBUG [25885]: Connecting to database... -- 19:41:42.315 DEBUG [25885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:41:42.315 SQL [25885]: pgsql_db_connect() -- 19:41:42.358 INFO [25885]: COREGRADE is starting... -- 19:41:42.358 INFO [25885]: Version from config: 1.0 -- 19:41:42.358 DEBUG [25885]: Connecting to database... -- 19:41:42.358 DEBUG [25885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:41:42.358 SQL [25885]: pgsql_db_connect() -- 19:41:42.362 DEBUG [25885]: Database connection successful -- 19:41:42.362 INFO [25885]: _SERVER found -- 19:41:42.363 INFO [25885]: REMOTE_ADDR = 192.168.1.13 -- 19:41:42.363 INFO [25885]: SERVER_NAME = oameye.works.coregrade.com -- 19:41:42.363 INFO [25885]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc -- 19:41:42.363 INFO [25885]: QUERY_STRING = -- 19:41:42.363 INFO [25885]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:41:42.363 INFO [25885]: SystemStatus()09-09-********~************ -- 19:41:42.363 INFO [25885]: long coregrade_api_main(CVars in, CVars &out) -- 19:41:42.363 INFO [25885]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 19:41:42.363 INFO [25885]: account calls -- 19:41:42.363 INFO [25885]: account_calls() -- 19:41:42.363 INFO [25885]: AddPageCard() -- 19:41:42.363 FLOG_MAX [25885]: REQ_STRING(title) -- 19:41:42.363 FLOG_MAX [25885]: REQ_STRING(item_type) -- 19:41:42.363 FLOG_MAX [25885]: REQ_STRING(sessionid) -- 19:41:42.363 FLOG_MAX [25885]: REQ_STRING(detail) -- 19:41:42.363 FLOG_MAX [25885]: insert_db_record() -- 19:41:42.363 SQL [25885]: pgsql_exec() -- 19:41:42.363 SQL [25885]: About to run query: -- 19:41:42.363 SQL [25885]: INSERT INTO members_page_item (detail,item_type,member_id,page_id,title) VALUES ('Look through multiple video sources for better understanding','NOTECARD','7','5','FIND SAMPLE VIDEO ONLINE') -- 19:41:42.367 SQL [25885]: PQcmdTuples: 1 -- 19:41:42.367 SQL [25885]: Affected rows: 1 -- 19:41:42.367 FLOG_MAX [25885]: SELECT currval('members_page_item_id_seq') -- 19:41:42.367 SQL [25885]: pgsql_query() -- 19:41:42.367 SQL [25885]: About to run query: -- 19:41:42.367 SQL [25885]: SELECT currval('members_page_item_id_seq') -- 19:41:42.368 SQL [25885]: Found rows: 1 -- 19:41:42.368 INFO [25885]: /AddPageCard() -- 19:41:42.368 INFO [25885]: RET: result=YES I GET TO BACK END -- 19:41:42.368 INFO [25885]: COREGRADE is stopping... -- 19:41:42.368 DEBUG [25885]: Closing database connection -- 19:41:42.368 SQL [25885]: pgsql_close() -- 19:41:42.319 DEBUG [25885]: Database connection successful -- 19:41:42.319 INFO [25885]: _SERVER found -- 19:41:42.319 INFO [25885]: REMOTE_ADDR = 192.168.1.13 -- 19:41:42.319 INFO [25885]: SERVER_NAME = oameye.works.coregrade.com -- 19:41:42.319 INFO [25885]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc -- 19:41:42.319 INFO [25885]: QUERY_STRING = /member/addNotecard -- 19:41:42.319 INFO [25885]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:41:42.369 INFO [25885]: COREGRADE is stopping... -- 19:41:42.369 DEBUG [25885]: Closing database connection -- 19:41:42.369 SQL [25885]: pgsql_close() -- 19:41:45.609 INFO [25885]: COREGRADE is starting... -- 19:41:45.609 INFO [25885]: Version from config: 1.0 -- 19:41:45.609 DEBUG [25885]: Connecting to database... -- 19:41:45.609 DEBUG [25885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:41:45.609 SQL [25885]: pgsql_db_connect() -- 19:41:45.648 INFO [25885]: COREGRADE is starting... -- 19:41:45.648 INFO [25885]: Version from config: 1.0 -- 19:41:45.648 DEBUG [25885]: Connecting to database... -- 19:41:45.648 DEBUG [25885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:41:45.648 SQL [25885]: pgsql_db_connect() -- 19:41:45.652 DEBUG [25885]: Database connection successful -- 19:41:45.652 INFO [25885]: _SERVER found -- 19:41:45.652 INFO [25885]: REMOTE_ADDR = 192.168.1.13 -- 19:41:45.652 INFO [25885]: SERVER_NAME = oameye.works.coregrade.com -- 19:41:45.652 INFO [25885]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc -- 19:41:45.652 INFO [25885]: QUERY_STRING = -- 19:41:45.652 INFO [25885]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:41:45.652 INFO [25885]: SystemStatus()09-09-********~************ -- 19:41:45.652 INFO [25885]: long coregrade_api_main(CVars in, CVars &out) -- 19:41:45.652 INFO [25885]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 19:41:45.652 INFO [25885]: account calls -- 19:41:45.652 INFO [25885]: account_calls() -- 19:41:45.652 INFO [25885]: AddPageCard() -- 19:41:45.652 FLOG_MAX [25885]: REQ_STRING(title) -- 19:41:45.652 FLOG_MAX [25885]: REQ_STRING(item_type) -- 19:41:45.652 FLOG_MAX [25885]: REQ_STRING(sessionid) -- 19:41:45.652 FLOG_MAX [25885]: REQ_STRING(detail) -- 19:41:45.652 FLOG_MAX [25885]: insert_db_record() -- 19:41:45.652 SQL [25885]: pgsql_exec() -- 19:41:45.652 SQL [25885]: About to run query: -- 19:41:45.652 SQL [25885]: INSERT INTO members_page_item (detail,item_type,member_id,page_id,title) VALUES ('Look through multiple video sources for better understanding','NOTECARD','7','5','FIND SAMPLE VIDEO ONLINE') -- 19:41:45.656 SQL [25885]: PQcmdTuples: 1 -- 19:41:45.657 SQL [25885]: Affected rows: 1 -- 19:41:45.657 FLOG_MAX [25885]: SELECT currval('members_page_item_id_seq') -- 19:41:45.657 SQL [25885]: pgsql_query() -- 19:41:45.657 SQL [25885]: About to run query: -- 19:41:45.657 SQL [25885]: SELECT currval('members_page_item_id_seq') -- 19:41:45.657 SQL [25885]: Found rows: 1 -- 19:41:45.657 INFO [25885]: /AddPageCard() -- 19:41:45.657 INFO [25885]: RET: result=YES I GET TO BACK END -- 19:41:45.657 INFO [25885]: COREGRADE is stopping... -- 19:41:45.657 DEBUG [25885]: Closing database connection -- 19:41:45.657 SQL [25885]: pgsql_close() -- 19:41:45.613 DEBUG [25885]: Database connection successful -- 19:41:45.613 INFO [25885]: _SERVER found -- 19:41:45.613 INFO [25885]: REMOTE_ADDR = 192.168.1.13 -- 19:41:45.613 INFO [25885]: SERVER_NAME = oameye.works.coregrade.com -- 19:41:45.613 INFO [25885]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc -- 19:41:45.613 INFO [25885]: QUERY_STRING = /member/addNotecard -- 19:41:45.613 INFO [25885]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:41:45.658 INFO [25885]: COREGRADE is stopping... -- 19:41:45.658 DEBUG [25885]: Closing database connection -- 19:41:45.658 SQL [25885]: pgsql_close() -- 19:41:51.020 INFO [25883]: COREGRADE is starting... -- 19:41:51.021 INFO [25883]: Version from config: 1.0 -- 19:41:51.021 DEBUG [25883]: Connecting to database... -- 19:41:51.021 DEBUG [25883]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:41:51.021 SQL [25883]: pgsql_db_connect() -- 19:41:51.025 DEBUG [25883]: Database connection successful -- 19:41:51.025 INFO [25883]: _SERVER found -- 19:41:51.025 INFO [25883]: REMOTE_ADDR = 192.168.1.13 -- 19:41:51.025 INFO [25883]: SERVER_NAME = oameye.works.coregrade.com -- 19:41:51.025 INFO [25883]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc -- 19:41:51.025 INFO [25883]: QUERY_STRING = /member -- 19:41:51.025 INFO [25883]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:41:51.069 INFO [25883]: COREGRADE is stopping... -- 19:41:51.069 DEBUG [25883]: Closing database connection -- 19:41:51.069 SQL [25883]: pgsql_close() -- 19:41:51.396 INFO [25883]: COREGRADE is starting... -- 19:41:51.396 INFO [25883]: Version from config: 1.0 -- 19:41:51.396 DEBUG [25883]: Connecting to database... -- 19:41:51.396 DEBUG [25883]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:41:51.396 SQL [25883]: pgsql_db_connect() -- 19:41:51.405 INFO [25886]: COREGRADE is starting... -- 19:41:51.405 INFO [25886]: Version from config: 1.0 -- 19:41:51.405 DEBUG [25886]: Connecting to database... -- 19:41:51.405 DEBUG [25886]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:41:51.405 SQL [25886]: pgsql_db_connect() -- 19:41:51.400 DEBUG [25883]: Database connection successful -- 19:41:51.400 INFO [25883]: _SERVER found -- 19:41:51.400 INFO [25883]: REMOTE_ADDR = 192.168.1.13 -- 19:41:51.400 INFO [25883]: SERVER_NAME = oameye.works.coregrade.com -- 19:41:51.400 INFO [25883]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc -- 19:41:51.400 INFO [25883]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:41:51.400 INFO [25883]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:41:51.412 INFO [25883]: COREGRADE is stopping... -- 19:41:51.413 DEBUG [25883]: Closing database connection -- 19:41:51.413 SQL [25883]: pgsql_close() -- 19:41:51.409 DEBUG [25886]: Database connection successful -- 19:41:51.409 INFO [25886]: _SERVER found -- 19:41:51.409 INFO [25886]: REMOTE_ADDR = 192.168.1.13 -- 19:41:51.409 INFO [25886]: SERVER_NAME = oameye.works.coregrade.com -- 19:41:51.409 INFO [25886]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc -- 19:41:51.409 INFO [25886]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:41:51.409 INFO [25886]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:41:51.424 INFO [25886]: COREGRADE is stopping... -- 19:41:51.424 DEBUG [25886]: Closing database connection -- 19:41:51.424 SQL [25886]: pgsql_close() -- 19:41:52.790 INFO [25886]: COREGRADE is starting... -- 19:41:52.791 INFO [25886]: Version from config: 1.0 -- 19:41:52.791 DEBUG [25886]: Connecting to database... -- 19:41:52.791 DEBUG [25886]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:41:52.791 SQL [25886]: pgsql_db_connect() -- 19:41:52.795 DEBUG [25886]: Database connection successful -- 19:41:52.795 INFO [25886]: _SERVER found -- 19:41:52.795 INFO [25886]: REMOTE_ADDR = 192.168.1.13 -- 19:41:52.795 INFO [25886]: SERVER_NAME = oameye.works.coregrade.com -- 19:41:52.795 INFO [25886]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc -- 19:41:52.795 INFO [25886]: QUERY_STRING = /member/page -- 19:41:52.795 INFO [25886]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:41:52.838 INFO [25886]: COREGRADE is stopping... -- 19:41:52.838 DEBUG [25886]: Closing database connection -- 19:41:52.838 SQL [25886]: pgsql_close() -- 19:41:53.104 INFO [25886]: COREGRADE is starting... -- 19:41:53.105 INFO [25886]: Version from config: 1.0 -- 19:41:53.105 DEBUG [25886]: Connecting to database... -- 19:41:53.105 DEBUG [25886]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:41:53.105 SQL [25886]: pgsql_db_connect() -- 19:41:53.109 DEBUG [25886]: Database connection successful -- 19:41:53.109 INFO [25886]: _SERVER found -- 19:41:53.109 INFO [25886]: REMOTE_ADDR = 192.168.1.13 -- 19:41:53.109 INFO [25886]: SERVER_NAME = oameye.works.coregrade.com -- 19:41:53.109 INFO [25886]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc -- 19:41:53.109 INFO [25886]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:41:53.109 INFO [25886]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:41:53.120 INFO [25886]: COREGRADE is stopping... -- 19:41:53.120 DEBUG [25886]: Closing database connection -- 19:41:53.120 SQL [25886]: pgsql_close() -- 19:41:53.169 INFO [25886]: COREGRADE is starting... -- 19:41:53.169 INFO [25886]: Version from config: 1.0 -- 19:41:53.169 DEBUG [25886]: Connecting to database... -- 19:41:53.169 DEBUG [25886]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:41:53.169 SQL [25886]: pgsql_db_connect() -- 19:41:53.174 DEBUG [25886]: Database connection successful -- 19:41:53.174 INFO [25886]: _SERVER found -- 19:41:53.174 INFO [25886]: REMOTE_ADDR = 192.168.1.13 -- 19:41:53.174 INFO [25886]: SERVER_NAME = oameye.works.coregrade.com -- 19:41:53.174 INFO [25886]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc -- 19:41:53.174 INFO [25886]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:41:53.174 INFO [25886]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:41:53.185 INFO [25886]: COREGRADE is stopping... -- 19:41:53.185 DEBUG [25886]: Closing database connection -- 19:41:53.185 SQL [25886]: pgsql_close() -- 19:44:15.955 INFO [3895]: COREGRADE is starting... -- 19:44:15.955 INFO [3895]: Version from config: 1.0 -- 19:44:15.955 DEBUG [3895]: Connecting to database... -- 19:44:15.955 DEBUG [3895]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:44:15.956 SQL [3895]: pgsql_db_connect() -- 19:44:15.960 DEBUG [3895]: Database connection successful -- 19:44:15.960 INFO [3895]: _SERVER found -- 19:44:15.960 INFO [3895]: REMOTE_ADDR = 192.168.1.13 -- 19:44:15.960 INFO [3895]: SERVER_NAME = oameye.works.coregrade.com -- 19:44:15.960 INFO [3895]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=r3usct8iinbn5pkpvs1qki9rsjq3gckc -- 19:44:15.960 INFO [3895]: QUERY_STRING = /member -- 19:44:15.960 INFO [3895]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:44:16.005 INFO [3895]: COREGRADE is stopping... -- 19:44:16.005 DEBUG [3895]: Closing database connection -- 19:44:16.005 SQL [3895]: pgsql_close() -- 19:44:16.273 INFO [3895]: COREGRADE is starting... -- 19:44:16.273 INFO [3895]: Version from config: 1.0 -- 19:44:16.273 DEBUG [3895]: Connecting to database... -- 19:44:16.273 DEBUG [3895]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:44:16.273 SQL [3895]: pgsql_db_connect() -- 19:44:16.277 DEBUG [3895]: Database connection successful -- 19:44:16.277 INFO [3895]: _SERVER found -- 19:44:16.277 INFO [3895]: REMOTE_ADDR = 192.168.1.13 -- 19:44:16.277 INFO [3895]: SERVER_NAME = oameye.works.coregrade.com -- 19:44:16.277 INFO [3895]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=89mcgbs6qa8r8v40jde003k1q92cesu7 -- 19:44:16.277 INFO [3895]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:44:16.277 INFO [3895]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:44:16.289 INFO [3895]: COREGRADE is stopping... -- 19:44:16.289 DEBUG [3895]: Closing database connection -- 19:44:16.289 SQL [3895]: pgsql_close() -- 19:44:16.294 INFO [3896]: COREGRADE is starting... -- 19:44:16.294 INFO [3896]: Version from config: 1.0 -- 19:44:16.294 DEBUG [3896]: Connecting to database... -- 19:44:16.294 DEBUG [3896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:44:16.294 SQL [3896]: pgsql_db_connect() -- 19:44:16.298 DEBUG [3896]: Database connection successful -- 19:44:16.298 INFO [3896]: _SERVER found -- 19:44:16.298 INFO [3896]: REMOTE_ADDR = 192.168.1.13 -- 19:44:16.298 INFO [3896]: SERVER_NAME = oameye.works.coregrade.com -- 19:44:16.298 INFO [3896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=89mcgbs6qa8r8v40jde003k1q92cesu7 -- 19:44:16.298 INFO [3896]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:44:16.298 INFO [3896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:44:16.312 INFO [3896]: COREGRADE is stopping... -- 19:44:16.312 DEBUG [3896]: Closing database connection -- 19:44:16.312 SQL [3896]: pgsql_close() -- 19:44:17.067 INFO [3896]: COREGRADE is starting... -- 19:44:17.067 INFO [3896]: Version from config: 1.0 -- 19:44:17.067 DEBUG [3896]: Connecting to database... -- 19:44:17.067 DEBUG [3896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:44:17.067 SQL [3896]: pgsql_db_connect() -- 19:44:17.071 DEBUG [3896]: Database connection successful -- 19:44:17.071 INFO [3896]: _SERVER found -- 19:44:17.071 INFO [3896]: REMOTE_ADDR = 192.168.1.13 -- 19:44:17.071 INFO [3896]: SERVER_NAME = oameye.works.coregrade.com -- 19:44:17.071 INFO [3896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=89mcgbs6qa8r8v40jde003k1q92cesu7 -- 19:44:17.071 INFO [3896]: QUERY_STRING = /member/page -- 19:44:17.071 INFO [3896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:44:17.114 INFO [3896]: COREGRADE is stopping... -- 19:44:17.114 DEBUG [3896]: Closing database connection -- 19:44:17.114 SQL [3896]: pgsql_close() -- 19:44:17.340 INFO [3896]: COREGRADE is starting... -- 19:44:17.340 INFO [3896]: Version from config: 1.0 -- 19:44:17.340 DEBUG [3896]: Connecting to database... -- 19:44:17.340 DEBUG [3896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:44:17.340 SQL [3896]: pgsql_db_connect() -- 19:44:17.344 DEBUG [3896]: Database connection successful -- 19:44:17.344 INFO [3896]: _SERVER found -- 19:44:17.344 INFO [3896]: REMOTE_ADDR = 192.168.1.13 -- 19:44:17.344 INFO [3896]: SERVER_NAME = oameye.works.coregrade.com -- 19:44:17.344 INFO [3896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=89mcgbs6qa8r8v40jde003k1q92cesu7 -- 19:44:17.344 INFO [3896]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:44:17.344 INFO [3896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:44:17.355 INFO [3896]: COREGRADE is stopping... -- 19:44:17.355 DEBUG [3896]: Closing database connection -- 19:44:17.355 SQL [3896]: pgsql_close() -- 19:44:17.410 INFO [3896]: COREGRADE is starting... -- 19:44:17.410 INFO [3896]: Version from config: 1.0 -- 19:44:17.410 DEBUG [3896]: Connecting to database... -- 19:44:17.410 DEBUG [3896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:44:17.410 SQL [3896]: pgsql_db_connect() -- 19:44:17.414 DEBUG [3896]: Database connection successful -- 19:44:17.414 INFO [3896]: _SERVER found -- 19:44:17.414 INFO [3896]: REMOTE_ADDR = 192.168.1.13 -- 19:44:17.414 INFO [3896]: SERVER_NAME = oameye.works.coregrade.com -- 19:44:17.414 INFO [3896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=89mcgbs6qa8r8v40jde003k1q92cesu7 -- 19:44:17.414 INFO [3896]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:44:17.414 INFO [3896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:44:17.425 INFO [3896]: COREGRADE is stopping... -- 19:44:17.425 DEBUG [3896]: Closing database connection -- 19:44:17.425 SQL [3896]: pgsql_close() -- 19:46:11.138 INFO [3897]: COREGRADE is starting... -- 19:46:11.138 INFO [3897]: Version from config: 1.0 -- 19:46:11.138 DEBUG [3897]: Connecting to database... -- 19:46:11.138 DEBUG [3897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:46:11.138 SQL [3897]: pgsql_db_connect() -- 19:46:11.142 DEBUG [3897]: Database connection successful -- 19:46:11.142 INFO [3897]: _SERVER found -- 19:46:11.142 INFO [3897]: REMOTE_ADDR = 192.168.1.13 -- 19:46:11.142 INFO [3897]: SERVER_NAME = oameye.works.coregrade.com -- 19:46:11.142 INFO [3897]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=32ff1nkialqo6trr0d238i2k8bsjegcr -- 19:46:11.142 INFO [3897]: QUERY_STRING = /member -- 19:46:11.142 INFO [3897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:46:11.187 INFO [3897]: COREGRADE is stopping... -- 19:46:11.187 DEBUG [3897]: Closing database connection -- 19:46:11.187 SQL [3897]: pgsql_close() -- 19:46:11.443 INFO [3897]: COREGRADE is starting... -- 19:46:11.443 INFO [3897]: Version from config: 1.0 -- 19:46:11.443 DEBUG [3897]: Connecting to database... -- 19:46:11.443 DEBUG [3897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:46:11.444 SQL [3897]: pgsql_db_connect() -- 19:46:11.448 DEBUG [3897]: Database connection successful -- 19:46:11.448 INFO [3897]: _SERVER found -- 19:46:11.448 INFO [3897]: REMOTE_ADDR = 192.168.1.13 -- 19:46:11.448 INFO [3897]: SERVER_NAME = oameye.works.coregrade.com -- 19:46:11.448 INFO [3897]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=lg5pdpnqd6l74pf9uu9bhnfhjgakkg2u -- 19:46:11.448 INFO [3897]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:46:11.448 INFO [3897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:46:11.460 INFO [3897]: COREGRADE is stopping... -- 19:46:11.460 DEBUG [3897]: Closing database connection -- 19:46:11.460 SQL [3897]: pgsql_close() -- 19:46:13.714 INFO [3897]: COREGRADE is starting... -- 19:46:13.715 INFO [3897]: Version from config: 1.0 -- 19:46:13.715 DEBUG [3897]: Connecting to database... -- 19:46:13.715 DEBUG [3897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:46:13.715 SQL [3897]: pgsql_db_connect() -- 19:46:13.719 DEBUG [3897]: Database connection successful -- 19:46:13.719 INFO [3897]: _SERVER found -- 19:46:13.719 INFO [3897]: REMOTE_ADDR = 192.168.1.13 -- 19:46:13.719 INFO [3897]: SERVER_NAME = oameye.works.coregrade.com -- 19:46:13.719 INFO [3897]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=lg5pdpnqd6l74pf9uu9bhnfhjgakkg2u -- 19:46:13.719 INFO [3897]: QUERY_STRING = /member/page -- 19:46:13.719 INFO [3897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:46:13.760 INFO [3897]: COREGRADE is stopping... -- 19:46:13.760 DEBUG [3897]: Closing database connection -- 19:46:13.760 SQL [3897]: pgsql_close() -- 19:46:13.962 INFO [3897]: COREGRADE is starting... -- 19:46:13.963 INFO [3897]: Version from config: 1.0 -- 19:46:13.963 DEBUG [3897]: Connecting to database... -- 19:46:13.963 DEBUG [3897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:46:13.963 SQL [3897]: pgsql_db_connect() -- 19:46:13.967 DEBUG [3897]: Database connection successful -- 19:46:13.967 INFO [3897]: _SERVER found -- 19:46:13.967 INFO [3897]: REMOTE_ADDR = 192.168.1.13 -- 19:46:13.967 INFO [3897]: SERVER_NAME = oameye.works.coregrade.com -- 19:46:13.967 INFO [3897]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=lg5pdpnqd6l74pf9uu9bhnfhjgakkg2u -- 19:46:13.967 INFO [3897]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:46:13.967 INFO [3897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:46:13.978 INFO [3897]: COREGRADE is stopping... -- 19:46:13.979 DEBUG [3897]: Closing database connection -- 19:46:13.979 SQL [3897]: pgsql_close() -- 19:47:42.546 INFO [3898]: COREGRADE is starting... -- 19:47:42.546 INFO [3898]: Version from config: 1.0 -- 19:47:42.546 DEBUG [3898]: Connecting to database... -- 19:47:42.546 DEBUG [3898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:42.546 SQL [3898]: pgsql_db_connect() -- 19:47:42.550 DEBUG [3898]: Database connection successful -- 19:47:42.550 INFO [3898]: _SERVER found -- 19:47:42.550 INFO [3898]: REMOTE_ADDR = 192.168.1.13 -- 19:47:42.550 INFO [3898]: SERVER_NAME = oameye.works.coregrade.com -- 19:47:42.550 INFO [3898]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=89mcgbs6qa8r8v40jde003k1q92cesu7 -- 19:47:42.550 INFO [3898]: QUERY_STRING = /member -- 19:47:42.550 INFO [3898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:47:42.595 INFO [3898]: COREGRADE is stopping... -- 19:47:42.595 DEBUG [3898]: Closing database connection -- 19:47:42.595 SQL [3898]: pgsql_close() -- 19:47:42.864 INFO [3898]: COREGRADE is starting... -- 19:47:42.864 INFO [3898]: Version from config: 1.0 -- 19:47:42.864 DEBUG [3898]: Connecting to database... -- 19:47:42.864 DEBUG [3898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:42.864 SQL [3898]: pgsql_db_connect() -- 19:47:42.868 DEBUG [3898]: Database connection successful -- 19:47:42.868 INFO [3898]: _SERVER found -- 19:47:42.868 INFO [3898]: REMOTE_ADDR = 192.168.1.13 -- 19:47:42.868 INFO [3898]: SERVER_NAME = oameye.works.coregrade.com -- 19:47:42.868 INFO [3898]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=89mcgbs6qa8r8v40jde003k1q92cesu7 -- 19:47:42.868 INFO [3898]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:47:42.868 INFO [3898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:47:42.881 INFO [3898]: COREGRADE is stopping... -- 19:47:42.881 DEBUG [3898]: Closing database connection -- 19:47:42.881 SQL [3898]: pgsql_close() -- 19:47:42.888 INFO [3899]: COREGRADE is starting... -- 19:47:42.889 INFO [3899]: Version from config: 1.0 -- 19:47:42.889 DEBUG [3899]: Connecting to database... -- 19:47:42.889 DEBUG [3899]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:42.889 SQL [3899]: pgsql_db_connect() -- 19:47:42.893 DEBUG [3899]: Database connection successful -- 19:47:42.893 INFO [3899]: _SERVER found -- 19:47:42.893 INFO [3899]: REMOTE_ADDR = 192.168.1.13 -- 19:47:42.893 INFO [3899]: SERVER_NAME = oameye.works.coregrade.com -- 19:47:42.893 INFO [3899]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=89mcgbs6qa8r8v40jde003k1q92cesu7 -- 19:47:42.893 INFO [3899]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:47:42.893 INFO [3899]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:47:42.907 INFO [3899]: COREGRADE is stopping... -- 19:47:42.907 DEBUG [3899]: Closing database connection -- 19:47:42.907 SQL [3899]: pgsql_close() -- 19:47:44.867 INFO [3899]: COREGRADE is starting... -- 19:47:44.867 INFO [3899]: Version from config: 1.0 -- 19:47:44.867 DEBUG [3899]: Connecting to database... -- 19:47:44.867 DEBUG [3899]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:44.867 SQL [3899]: pgsql_db_connect() -- 19:47:44.871 DEBUG [3899]: Database connection successful -- 19:47:44.871 INFO [3899]: _SERVER found -- 19:47:44.871 INFO [3899]: REMOTE_ADDR = 192.168.1.13 -- 19:47:44.871 INFO [3899]: SERVER_NAME = oameye.works.coregrade.com -- 19:47:44.871 INFO [3899]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=89mcgbs6qa8r8v40jde003k1q92cesu7 -- 19:47:44.871 INFO [3899]: QUERY_STRING = /auth/logout -- 19:47:44.871 INFO [3899]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:47:44.907 INFO [3899]: COREGRADE is stopping... -- 19:47:44.907 DEBUG [3899]: Closing database connection -- 19:47:44.907 SQL [3899]: pgsql_close() -- 19:47:45.071 INFO [3899]: COREGRADE is starting... -- 19:47:45.071 INFO [3899]: Version from config: 1.0 -- 19:47:45.071 DEBUG [3899]: Connecting to database... -- 19:47:45.071 DEBUG [3899]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:45.071 SQL [3899]: pgsql_db_connect() -- 19:47:45.074 INFO [3898]: COREGRADE is starting... -- 19:47:45.075 INFO [3898]: Version from config: 1.0 -- 19:47:45.075 DEBUG [3898]: Connecting to database... -- 19:47:45.075 DEBUG [3898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:45.075 SQL [3898]: pgsql_db_connect() -- 19:47:45.075 DEBUG [3899]: Database connection successful -- 19:47:45.075 INFO [3899]: _SERVER found -- 19:47:45.075 INFO [3899]: REMOTE_ADDR = 192.168.1.13 -- 19:47:45.075 INFO [3899]: SERVER_NAME = oameye.works.coregrade.com -- 19:47:45.075 INFO [3899]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=89mcgbs6qa8r8v40jde003k1q92cesu7 -- 19:47:45.075 INFO [3899]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 19:47:45.075 INFO [3899]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:47:45.086 INFO [3899]: COREGRADE is stopping... -- 19:47:45.086 DEBUG [3899]: Closing database connection -- 19:47:45.086 SQL [3899]: pgsql_close() -- 19:47:45.078 DEBUG [3898]: Database connection successful -- 19:47:45.078 INFO [3898]: _SERVER found -- 19:47:45.078 INFO [3898]: REMOTE_ADDR = 192.168.1.13 -- 19:47:45.078 INFO [3898]: SERVER_NAME = oameye.works.coregrade.com -- 19:47:45.078 INFO [3898]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=89mcgbs6qa8r8v40jde003k1q92cesu7 -- 19:47:45.078 INFO [3898]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:47:45.078 INFO [3898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:47:45.090 INFO [3898]: COREGRADE is stopping... -- 19:47:45.090 DEBUG [3898]: Closing database connection -- 19:47:45.090 SQL [3898]: pgsql_close() -- 19:47:46.686 INFO [3898]: COREGRADE is starting... -- 19:47:46.686 INFO [3898]: Version from config: 1.0 -- 19:47:46.686 DEBUG [3898]: Connecting to database... -- 19:47:46.686 DEBUG [3898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:46.686 SQL [3898]: pgsql_db_connect() -- 19:47:46.724 INFO [3898]: COREGRADE is starting... -- 19:47:46.725 INFO [3898]: Version from config: 1.0 -- 19:47:46.725 DEBUG [3898]: Connecting to database... -- 19:47:46.725 DEBUG [3898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:46.725 SQL [3898]: pgsql_db_connect() -- 19:47:46.729 DEBUG [3898]: Database connection successful -- 19:47:46.729 INFO [3898]: _SERVER found -- 19:47:46.729 INFO [3898]: REMOTE_ADDR = 192.168.1.13 -- 19:47:46.729 INFO [3898]: SERVER_NAME = oameye.works.coregrade.com -- 19:47:46.729 INFO [3898]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=89mcgbs6qa8r8v40jde003k1q92cesu7 -- 19:47:46.729 INFO [3898]: QUERY_STRING = -- 19:47:46.729 INFO [3898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:47:46.729 INFO [3898]: SystemStatus()09-09-********~************ -- 19:47:46.729 INFO [3898]: long coregrade_api_main(CVars in, CVars &out) -- 19:47:46.729 INFO [3898]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 19:47:46.729 INFO [3898]: account calls -- 19:47:46.729 INFO [3898]: account_calls() -- 19:47:46.729 INFO [3898]: LoginCoreGradeAccount() -- 19:47:46.729 FLOG_MAX [3898]: REQ_STRING(username) -- 19:47:46.729 FLOG_MAX [3898]: REQ_STRING(password) -- 19:47:46.729 FLOG_MAX [3898]: REQ_STRING(sessionid) -- 19:47:46.729 FLOG_MAX [3898]: long load_db_record( CVars &rec, const char * query, ... ) -- 19:47:46.729 SQL [3898]: pgsql_query() -- 19:47:46.729 SQL [3898]: About to run query: -- 19:47:46.729 SQL [3898]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 19:47:46.732 SQL [3898]: Found rows: 1 -- 19:47:46.732 FLOG_MAX [3898]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=15 -- 19:47:46.732 INFO [3898]: long SessionCheck(long uid, const char *sessionid, int create ) -- 19:47:46.732 SQL [3898]: pgsql_exec() -- 19:47:46.732 SQL [3898]: About to run query: -- 19:47:46.732 SQL [3898]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 19:47:46.733 SQL [3898]: PQcmdTuples: 0 -- 19:47:46.733 SQL [3898]: Affected rows: 0 -- 19:47:46.733 SQL [3898]: pgsql_exec() -- 19:47:46.733 SQL [3898]: About to run query: -- 19:47:46.733 SQL [3898]: DELETE FROM members_session WHERE member_id=7 -- 19:47:46.734 SQL [3898]: PQcmdTuples: 1 -- 19:47:46.734 SQL [3898]: Affected rows: 1 -- 19:47:46.734 SQL [3898]: pgsql_query() -- 19:47:46.734 SQL [3898]: About to run query: -- 19:47:46.734 SQL [3898]: SELECT * FROM members_session WHERE member_id=7 AND session<>'11F9705439E37258082897F3940B2A47' -- 19:47:46.735 SQL [3898]: Found rows: 0 -- 19:47:46.735 SQL [3898]: Found rows: 0 -- 19:47:46.735 FLOG_MAX [3898]: long load_db_record( CVars &rec, const char * query, ... ) -- 19:47:46.735 SQL [3898]: pgsql_query() -- 19:47:46.735 SQL [3898]: About to run query: -- 19:47:46.735 SQL [3898]: SELECT * FROM members_session WHERE member_id=7 AND session='11F9705439E37258082897F3940B2A47' -- 19:47:46.735 SQL [3898]: Found rows: 0 -- 19:47:46.735 SQL [3898]: Found rows: 0 -- 19:47:46.735 FLOG_MAX [3898]: insert_db_record() -- 19:47:46.735 SQL [3898]: pgsql_exec() -- 19:47:46.735 SQL [3898]: About to run query: -- 19:47:46.735 SQL [3898]: INSERT INTO members_session (member_id,session) VALUES ('7','11F9705439E37258082897F3940B2A47') -- 19:47:46.737 SQL [3898]: PQcmdTuples: 1 -- 19:47:46.737 SQL [3898]: Affected rows: 1 -- 19:47:46.737 FLOG_MAX [3898]: SELECT currval('members_session_id_seq') -- 19:47:46.737 SQL [3898]: pgsql_query() -- 19:47:46.737 SQL [3898]: About to run query: -- 19:47:46.737 SQL [3898]: SELECT currval('members_session_id_seq') -- 19:47:46.737 SQL [3898]: Found rows: 1 -- 19:47:46.737 INFO [3898]: CreateDefaultPage() -- 19:47:46.737 FLOG_MAX [3898]: long load_db_record( CVars &rec, const char * query, ... ) -- 19:47:46.737 SQL [3898]: pgsql_query() -- 19:47:46.737 SQL [3898]: About to run query: -- 19:47:46.737 SQL [3898]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 19:47:46.738 SQL [3898]: Found rows: 1 -- 19:47:46.738 FLOG_MAX [3898]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 19:47:46.738 SQL [3898]: pgsql_query() -- 19:47:46.738 SQL [3898]: About to run query: -- 19:47:46.738 SQL [3898]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 19:47:46.738 SQL [3898]: Found rows: 1 -- 19:47:46.738 INFO [3898]: /CreateDefaultPage() -- 19:47:46.738 INFO [3898]: /LoginCoreGradeAccount() -- 19:47:46.738 INFO [3898]: RET: added=2020-02-05 09:42:12.816064 -- 19:47:46.738 INFO [3898]: RET: email=tokslaw@chiefsoft.com -- 19:47:46.738 INFO [3898]: RET: firstname=Tokunbo -- 19:47:46.738 INFO [3898]: RET: id=7 -- 19:47:46.738 INFO [3898]: RET: last_login= -- 19:47:46.738 INFO [3898]: RET: lastname=Lawal -- 19:47:46.738 INFO [3898]: RET: loc=192.168.1.13 -- 19:47:46.738 INFO [3898]: RET: member_id=7 -- 19:47:46.738 INFO [3898]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 19:47:46.738 INFO [3898]: RET: phone= -- 19:47:46.738 INFO [3898]: RET: pid= -- 19:47:46.738 INFO [3898]: RET: result=YES I GET TO BACK END -- 19:47:46.738 INFO [3898]: RET: sessionid=11F9705439E37258082897F3940B2A47 -- 19:47:46.738 INFO [3898]: RET: status=1 -- 19:47:46.738 INFO [3898]: RET: stauts=OK -- 19:47:46.738 INFO [3898]: RET: username=tokslaw@chiefsoft.com -- 19:47:46.738 INFO [3898]: RET: verified= -- 19:47:46.740 INFO [3898]: COREGRADE is stopping... -- 19:47:46.740 DEBUG [3898]: Closing database connection -- 19:47:46.740 SQL [3898]: pgsql_close() -- 19:47:46.691 DEBUG [3898]: Database connection successful -- 19:47:46.691 INFO [3898]: _SERVER found -- 19:47:46.691 INFO [3898]: REMOTE_ADDR = 192.168.1.13 -- 19:47:46.691 INFO [3898]: SERVER_NAME = oameye.works.coregrade.com -- 19:47:46.691 INFO [3898]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=89mcgbs6qa8r8v40jde003k1q92cesu7 -- 19:47:46.691 INFO [3898]: QUERY_STRING = /auth -- 19:47:46.691 INFO [3898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:47:46.740 INFO [3898]: COREGRADE is stopping... -- 19:47:46.740 DEBUG [3898]: Closing database connection -- 19:47:46.740 SQL [3898]: pgsql_close() -- 19:47:46.749 INFO [3898]: COREGRADE is starting... -- 19:47:46.750 INFO [3898]: Version from config: 1.0 -- 19:47:46.750 DEBUG [3898]: Connecting to database... -- 19:47:46.750 DEBUG [3898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:46.750 SQL [3898]: pgsql_db_connect() -- 19:47:46.753 DEBUG [3898]: Database connection successful -- 19:47:46.753 INFO [3898]: _SERVER found -- 19:47:46.753 INFO [3898]: REMOTE_ADDR = 192.168.1.13 -- 19:47:46.753 INFO [3898]: SERVER_NAME = oameye.works.coregrade.com -- 19:47:46.753 INFO [3898]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=89mcgbs6qa8r8v40jde003k1q92cesu7 -- 19:47:46.753 INFO [3898]: QUERY_STRING = /member/index -- 19:47:46.753 INFO [3898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:47:46.789 INFO [3898]: COREGRADE is stopping... -- 19:47:46.790 DEBUG [3898]: Closing database connection -- 19:47:46.790 SQL [3898]: pgsql_close() -- 19:47:46.961 INFO [3898]: COREGRADE is starting... -- 19:47:46.961 INFO [3898]: Version from config: 1.0 -- 19:47:46.961 DEBUG [3898]: Connecting to database... -- 19:47:46.961 DEBUG [3898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:46.961 SQL [3898]: pgsql_db_connect() -- 19:47:46.975 INFO [3899]: COREGRADE is starting... -- 19:47:46.975 INFO [3899]: Version from config: 1.0 -- 19:47:46.975 DEBUG [3899]: Connecting to database... -- 19:47:46.975 DEBUG [3899]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:46.976 SQL [3899]: pgsql_db_connect() -- 19:47:46.965 DEBUG [3898]: Database connection successful -- 19:47:46.965 INFO [3898]: _SERVER found -- 19:47:46.965 INFO [3898]: REMOTE_ADDR = 192.168.1.13 -- 19:47:46.965 INFO [3898]: SERVER_NAME = oameye.works.coregrade.com -- 19:47:46.965 INFO [3898]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=89mcgbs6qa8r8v40jde003k1q92cesu7 -- 19:47:46.965 INFO [3898]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:47:46.965 INFO [3898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:47:46.976 INFO [3898]: COREGRADE is stopping... -- 19:47:46.976 DEBUG [3898]: Closing database connection -- 19:47:46.976 SQL [3898]: pgsql_close() -- 19:47:46.979 DEBUG [3899]: Database connection successful -- 19:47:46.979 INFO [3899]: _SERVER found -- 19:47:46.979 INFO [3899]: REMOTE_ADDR = 192.168.1.13 -- 19:47:46.979 INFO [3899]: SERVER_NAME = oameye.works.coregrade.com -- 19:47:46.979 INFO [3899]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=89mcgbs6qa8r8v40jde003k1q92cesu7 -- 19:47:46.979 INFO [3899]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:47:46.979 INFO [3899]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:47:46.991 INFO [3899]: COREGRADE is stopping... -- 19:47:46.991 DEBUG [3899]: Closing database connection -- 19:47:46.991 SQL [3899]: pgsql_close() -- 19:47:50.939 INFO [3899]: COREGRADE is starting... -- 19:47:50.939 INFO [3899]: Version from config: 1.0 -- 19:47:50.939 DEBUG [3899]: Connecting to database... -- 19:47:50.939 DEBUG [3899]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:50.939 SQL [3899]: pgsql_db_connect() -- 19:47:50.943 DEBUG [3899]: Database connection successful -- 19:47:50.943 INFO [3899]: _SERVER found -- 19:47:50.943 INFO [3899]: REMOTE_ADDR = 192.168.1.13 -- 19:47:50.943 INFO [3899]: SERVER_NAME = oameye.works.coregrade.com -- 19:47:50.943 INFO [3899]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=89mcgbs6qa8r8v40jde003k1q92cesu7 -- 19:47:50.943 INFO [3899]: QUERY_STRING = /member/page -- 19:47:50.943 INFO [3899]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:47:50.981 INFO [3899]: COREGRADE is stopping... -- 19:47:50.981 DEBUG [3899]: Closing database connection -- 19:47:50.981 SQL [3899]: pgsql_close() -- 19:47:51.185 INFO [3899]: COREGRADE is starting... -- 19:47:51.186 INFO [3899]: Version from config: 1.0 -- 19:47:51.186 DEBUG [3899]: Connecting to database... -- 19:47:51.186 DEBUG [3899]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:51.186 SQL [3899]: pgsql_db_connect() -- 19:47:51.190 DEBUG [3899]: Database connection successful -- 19:47:51.190 INFO [3899]: _SERVER found -- 19:47:51.190 INFO [3899]: REMOTE_ADDR = 192.168.1.13 -- 19:47:51.190 INFO [3899]: SERVER_NAME = oameye.works.coregrade.com -- 19:47:51.190 INFO [3899]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=89mcgbs6qa8r8v40jde003k1q92cesu7 -- 19:47:51.190 INFO [3899]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:47:51.190 INFO [3899]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:47:51.201 INFO [3899]: COREGRADE is stopping... -- 19:47:51.201 DEBUG [3899]: Closing database connection -- 19:47:51.201 SQL [3899]: pgsql_close() -- 19:47:57.803 INFO [3912]: COREGRADE is starting... -- 19:47:57.804 INFO [3912]: Version from config: 1.0 -- 19:47:57.804 DEBUG [3912]: Connecting to database... -- 19:47:57.804 DEBUG [3912]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:57.804 SQL [3912]: pgsql_db_connect() -- 19:47:57.808 DEBUG [3912]: Database connection successful -- 19:47:57.808 INFO [3912]: _SERVER found -- 19:47:57.808 INFO [3912]: REMOTE_ADDR = 192.168.1.13 -- 19:47:57.808 INFO [3912]: SERVER_NAME = oameye.works.coregrade.com -- 19:47:57.808 INFO [3912]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=89mcgbs6qa8r8v40jde003k1q92cesu7 -- 19:47:57.808 INFO [3912]: QUERY_STRING = /member/configure -- 19:47:57.808 INFO [3912]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:47:57.852 INFO [3912]: COREGRADE is stopping... -- 19:47:57.852 DEBUG [3912]: Closing database connection -- 19:47:57.852 SQL [3912]: pgsql_close() -- 19:47:58.021 INFO [3912]: COREGRADE is starting... -- 19:47:58.021 INFO [3912]: Version from config: 1.0 -- 19:47:58.021 DEBUG [3912]: Connecting to database... -- 19:47:58.021 DEBUG [3912]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:58.021 SQL [3912]: pgsql_db_connect() -- 19:47:58.025 DEBUG [3912]: Database connection successful -- 19:47:58.025 INFO [3912]: _SERVER found -- 19:47:58.025 INFO [3912]: REMOTE_ADDR = 192.168.1.13 -- 19:47:58.025 INFO [3912]: SERVER_NAME = oameye.works.coregrade.com -- 19:47:58.025 INFO [3912]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=89mcgbs6qa8r8v40jde003k1q92cesu7 -- 19:47:58.025 INFO [3912]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:47:58.025 INFO [3912]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:47:58.037 INFO [3912]: COREGRADE is stopping... -- 19:47:58.037 DEBUG [3912]: Closing database connection -- 19:47:58.037 SQL [3912]: pgsql_close() -- 19:48:08.134 INFO [3917]: COREGRADE is starting... -- 19:48:08.135 INFO [3917]: Version from config: 1.0 -- 19:48:08.135 DEBUG [3917]: Connecting to database... -- 19:48:08.135 DEBUG [3917]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:48:08.135 SQL [3917]: pgsql_db_connect() -- 19:48:08.139 DEBUG [3917]: Database connection successful -- 19:48:08.139 INFO [3917]: _SERVER found -- 19:48:08.139 INFO [3917]: REMOTE_ADDR = 192.168.1.13 -- 19:48:08.139 INFO [3917]: SERVER_NAME = oameye.works.coregrade.com -- 19:48:08.139 INFO [3917]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=89mcgbs6qa8r8v40jde003k1q92cesu7 -- 19:48:08.139 INFO [3917]: QUERY_STRING = /member -- 19:48:08.139 INFO [3917]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:48:08.182 INFO [3917]: COREGRADE is stopping... -- 19:48:08.182 DEBUG [3917]: Closing database connection -- 19:48:08.182 SQL [3917]: pgsql_close() -- 19:48:08.525 INFO [3917]: COREGRADE is starting... -- 19:48:08.525 INFO [3917]: Version from config: 1.0 -- 19:48:08.525 DEBUG [3917]: Connecting to database... -- 19:48:08.525 DEBUG [3917]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:48:08.525 SQL [3917]: pgsql_db_connect() -- 19:48:08.529 DEBUG [3917]: Database connection successful -- 19:48:08.529 INFO [3917]: _SERVER found -- 19:48:08.529 INFO [3917]: REMOTE_ADDR = 192.168.1.13 -- 19:48:08.529 INFO [3917]: SERVER_NAME = oameye.works.coregrade.com -- 19:48:08.529 INFO [3917]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=89mcgbs6qa8r8v40jde003k1q92cesu7 -- 19:48:08.529 INFO [3917]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:48:08.529 INFO [3917]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:48:08.541 INFO [3917]: COREGRADE is stopping... -- 19:48:08.541 DEBUG [3917]: Closing database connection -- 19:48:08.541 SQL [3917]: pgsql_close() -- 19:48:17.751 INFO [3918]: COREGRADE is starting... -- 19:48:17.751 INFO [3918]: Version from config: 1.0 -- 19:48:17.751 DEBUG [3918]: Connecting to database... -- 19:48:17.751 DEBUG [3918]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:48:17.751 SQL [3918]: pgsql_db_connect() -- 19:48:17.756 DEBUG [3918]: Database connection successful -- 19:48:17.756 INFO [3918]: _SERVER found -- 19:48:17.756 INFO [3918]: REMOTE_ADDR = 192.168.1.13 -- 19:48:17.756 INFO [3918]: SERVER_NAME = oameye.works.coregrade.com -- 19:48:17.756 INFO [3918]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=89mcgbs6qa8r8v40jde003k1q92cesu7 -- 19:48:17.756 INFO [3918]: QUERY_STRING = /member/page -- 19:48:17.756 INFO [3918]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:48:17.800 INFO [3918]: COREGRADE is stopping... -- 19:48:17.800 DEBUG [3918]: Closing database connection -- 19:48:17.800 SQL [3918]: pgsql_close() -- 19:48:18.112 INFO [3918]: COREGRADE is starting... -- 19:48:18.112 INFO [3918]: Version from config: 1.0 -- 19:48:18.112 DEBUG [3918]: Connecting to database... -- 19:48:18.112 DEBUG [3918]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:48:18.112 SQL [3918]: pgsql_db_connect() -- 19:48:18.116 DEBUG [3918]: Database connection successful -- 19:48:18.116 INFO [3918]: _SERVER found -- 19:48:18.116 INFO [3918]: REMOTE_ADDR = 192.168.1.13 -- 19:48:18.116 INFO [3918]: SERVER_NAME = oameye.works.coregrade.com -- 19:48:18.116 INFO [3918]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=89mcgbs6qa8r8v40jde003k1q92cesu7 -- 19:48:18.116 INFO [3918]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:48:18.116 INFO [3918]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:48:18.128 INFO [3918]: COREGRADE is stopping... -- 19:48:18.128 DEBUG [3918]: Closing database connection -- 19:48:18.128 SQL [3918]: pgsql_close() -- 19:48:27.854 INFO [3895]: COREGRADE is starting... -- 19:48:27.855 INFO [3895]: Version from config: 1.0 -- 19:48:27.855 DEBUG [3895]: Connecting to database... -- 19:48:27.855 DEBUG [3895]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:48:27.855 SQL [3895]: pgsql_db_connect() -- 19:48:27.859 DEBUG [3895]: Database connection successful -- 19:48:27.859 INFO [3895]: _SERVER found -- 19:48:27.859 INFO [3895]: REMOTE_ADDR = 192.168.1.13 -- 19:48:27.859 INFO [3895]: SERVER_NAME = oameye.works.coregrade.com -- 19:48:27.859 INFO [3895]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=89mcgbs6qa8r8v40jde003k1q92cesu7 -- 19:48:27.859 INFO [3895]: QUERY_STRING = /member -- 19:48:27.859 INFO [3895]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:48:27.900 INFO [3895]: COREGRADE is stopping... -- 19:48:27.900 DEBUG [3895]: Closing database connection -- 19:48:27.900 SQL [3895]: pgsql_close() -- 19:48:28.087 INFO [3895]: COREGRADE is starting... -- 19:48:28.087 INFO [3895]: Version from config: 1.0 -- 19:48:28.087 DEBUG [3895]: Connecting to database... -- 19:48:28.087 DEBUG [3895]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:48:28.087 SQL [3895]: pgsql_db_connect() -- 19:48:28.091 DEBUG [3895]: Database connection successful -- 19:48:28.091 INFO [3895]: _SERVER found -- 19:48:28.091 INFO [3895]: REMOTE_ADDR = 192.168.1.13 -- 19:48:28.091 INFO [3895]: SERVER_NAME = oameye.works.coregrade.com -- 19:48:28.091 INFO [3895]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=89mcgbs6qa8r8v40jde003k1q92cesu7 -- 19:48:28.091 INFO [3895]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:48:28.091 INFO [3895]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:48:28.102 INFO [3895]: COREGRADE is stopping... -- 19:48:28.102 DEBUG [3895]: Closing database connection -- 19:48:28.102 SQL [3895]: pgsql_close() -- 19:48:30.085 INFO [3895]: COREGRADE is starting... -- 19:48:30.086 INFO [3895]: Version from config: 1.0 -- 19:48:30.086 DEBUG [3895]: Connecting to database... -- 19:48:30.086 DEBUG [3895]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:48:30.086 SQL [3895]: pgsql_db_connect() -- 19:48:30.090 DEBUG [3895]: Database connection successful -- 19:48:30.090 INFO [3895]: _SERVER found -- 19:48:30.090 INFO [3895]: REMOTE_ADDR = 192.168.1.13 -- 19:48:30.090 INFO [3895]: SERVER_NAME = oameye.works.coregrade.com -- 19:48:30.090 INFO [3895]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=89mcgbs6qa8r8v40jde003k1q92cesu7 -- 19:48:30.090 INFO [3895]: QUERY_STRING = /member/page -- 19:48:30.090 INFO [3895]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:48:30.127 INFO [3895]: COREGRADE is stopping... -- 19:48:30.127 DEBUG [3895]: Closing database connection -- 19:48:30.127 SQL [3895]: pgsql_close() -- 19:48:30.311 INFO [3895]: COREGRADE is starting... -- 19:48:30.312 INFO [3895]: Version from config: 1.0 -- 19:48:30.312 DEBUG [3895]: Connecting to database... -- 19:48:30.312 DEBUG [3895]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:48:30.312 SQL [3895]: pgsql_db_connect() -- 19:48:30.316 DEBUG [3895]: Database connection successful -- 19:48:30.316 INFO [3895]: _SERVER found -- 19:48:30.316 INFO [3895]: REMOTE_ADDR = 192.168.1.13 -- 19:48:30.316 INFO [3895]: SERVER_NAME = oameye.works.coregrade.com -- 19:48:30.316 INFO [3895]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=89mcgbs6qa8r8v40jde003k1q92cesu7 -- 19:48:30.316 INFO [3895]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:48:30.316 INFO [3895]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:48:30.327 INFO [3895]: COREGRADE is stopping... -- 19:48:30.327 DEBUG [3895]: Closing database connection -- 19:48:30.327 SQL [3895]: pgsql_close() -- 19:48:32.771 INFO [3895]: COREGRADE is starting... -- 19:48:32.771 INFO [3895]: Version from config: 1.0 -- 19:48:32.771 DEBUG [3895]: Connecting to database... -- 19:48:32.771 DEBUG [3895]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:48:32.771 SQL [3895]: pgsql_db_connect() -- 19:48:32.775 DEBUG [3895]: Database connection successful -- 19:48:32.775 INFO [3895]: _SERVER found -- 19:48:32.775 INFO [3895]: REMOTE_ADDR = 192.168.1.13 -- 19:48:32.775 INFO [3895]: SERVER_NAME = oameye.works.coregrade.com -- 19:48:32.775 INFO [3895]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=89mcgbs6qa8r8v40jde003k1q92cesu7 -- 19:48:32.775 INFO [3895]: QUERY_STRING = /member/configure -- 19:48:32.775 INFO [3895]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:48:32.811 INFO [3895]: COREGRADE is stopping... -- 19:48:32.811 DEBUG [3895]: Closing database connection -- 19:48:32.811 SQL [3895]: pgsql_close() -- 19:48:33.104 INFO [3895]: COREGRADE is starting... -- 19:48:33.104 INFO [3895]: Version from config: 1.0 -- 19:48:33.104 DEBUG [3895]: Connecting to database... -- 19:48:33.104 DEBUG [3895]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:48:33.104 SQL [3895]: pgsql_db_connect() -- 19:48:33.108 DEBUG [3895]: Database connection successful -- 19:48:33.108 INFO [3895]: _SERVER found -- 19:48:33.108 INFO [3895]: REMOTE_ADDR = 192.168.1.13 -- 19:48:33.108 INFO [3895]: SERVER_NAME = oameye.works.coregrade.com -- 19:48:33.108 INFO [3895]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=89mcgbs6qa8r8v40jde003k1q92cesu7 -- 19:48:33.108 INFO [3895]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:48:33.108 INFO [3895]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:48:33.119 INFO [3895]: COREGRADE is stopping... -- 19:48:33.119 DEBUG [3895]: Closing database connection -- 19:48:33.119 SQL [3895]: pgsql_close() -- 19:48:39.388 INFO [3896]: COREGRADE is starting... -- 19:48:39.389 INFO [3896]: Version from config: 1.0 -- 19:48:39.389 DEBUG [3896]: Connecting to database... -- 19:48:39.389 DEBUG [3896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:48:39.389 SQL [3896]: pgsql_db_connect() -- 19:48:39.393 DEBUG [3896]: Database connection successful -- 19:48:39.393 INFO [3896]: _SERVER found -- 19:48:39.393 INFO [3896]: REMOTE_ADDR = 192.168.1.13 -- 19:48:39.393 INFO [3896]: SERVER_NAME = oameye.works.coregrade.com -- 19:48:39.393 INFO [3896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=89mcgbs6qa8r8v40jde003k1q92cesu7 -- 19:48:39.393 INFO [3896]: QUERY_STRING = /member -- 19:48:39.393 INFO [3896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:48:39.429 INFO [3896]: COREGRADE is stopping... -- 19:48:39.429 DEBUG [3896]: Closing database connection -- 19:48:39.429 SQL [3896]: pgsql_close() -- 19:48:39.614 INFO [3896]: COREGRADE is starting... -- 19:48:39.615 INFO [3896]: Version from config: 1.0 -- 19:48:39.615 DEBUG [3896]: Connecting to database... -- 19:48:39.615 DEBUG [3896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:48:39.615 SQL [3896]: pgsql_db_connect() -- 19:48:39.619 DEBUG [3896]: Database connection successful -- 19:48:39.619 INFO [3896]: _SERVER found -- 19:48:39.619 INFO [3896]: REMOTE_ADDR = 192.168.1.13 -- 19:48:39.619 INFO [3896]: SERVER_NAME = oameye.works.coregrade.com -- 19:48:39.619 INFO [3896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=89mcgbs6qa8r8v40jde003k1q92cesu7 -- 19:48:39.619 INFO [3896]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:48:39.619 INFO [3896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:48:39.630 INFO [3896]: COREGRADE is stopping... -- 19:48:39.630 DEBUG [3896]: Closing database connection -- 19:48:39.630 SQL [3896]: pgsql_close() -- 19:48:40.498 INFO [3896]: COREGRADE is starting... -- 19:48:40.498 INFO [3896]: Version from config: 1.0 -- 19:48:40.498 DEBUG [3896]: Connecting to database... -- 19:48:40.498 DEBUG [3896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:48:40.498 SQL [3896]: pgsql_db_connect() -- 19:48:40.502 DEBUG [3896]: Database connection successful -- 19:48:40.502 INFO [3896]: _SERVER found -- 19:48:40.502 INFO [3896]: REMOTE_ADDR = 192.168.1.13 -- 19:48:40.502 INFO [3896]: SERVER_NAME = oameye.works.coregrade.com -- 19:48:40.502 INFO [3896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=89mcgbs6qa8r8v40jde003k1q92cesu7 -- 19:48:40.502 INFO [3896]: QUERY_STRING = /member/page -- 19:48:40.502 INFO [3896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:48:40.539 INFO [3896]: COREGRADE is stopping... -- 19:48:40.539 DEBUG [3896]: Closing database connection -- 19:48:40.539 SQL [3896]: pgsql_close() -- 19:48:40.814 INFO [3896]: COREGRADE is starting... -- 19:48:40.815 INFO [3896]: Version from config: 1.0 -- 19:48:40.815 DEBUG [3896]: Connecting to database... -- 19:48:40.815 DEBUG [3896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:48:40.815 SQL [3896]: pgsql_db_connect() -- 19:48:40.819 DEBUG [3896]: Database connection successful -- 19:48:40.819 INFO [3896]: _SERVER found -- 19:48:40.819 INFO [3896]: REMOTE_ADDR = 192.168.1.13 -- 19:48:40.819 INFO [3896]: SERVER_NAME = oameye.works.coregrade.com -- 19:48:40.819 INFO [3896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=89mcgbs6qa8r8v40jde003k1q92cesu7 -- 19:48:40.819 INFO [3896]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:48:40.819 INFO [3896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:48:40.829 INFO [3896]: COREGRADE is stopping... -- 19:48:40.830 DEBUG [3896]: Closing database connection -- 19:48:40.830 SQL [3896]: pgsql_close() -- 19:48:58.622 INFO [3897]: COREGRADE is starting... -- 19:48:58.622 INFO [3897]: Version from config: 1.0 -- 19:48:58.622 DEBUG [3897]: Connecting to database... -- 19:48:58.622 DEBUG [3897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:48:58.622 SQL [3897]: pgsql_db_connect() -- 19:48:58.626 DEBUG [3897]: Database connection successful -- 19:48:58.626 INFO [3897]: _SERVER found -- 19:48:58.626 INFO [3897]: REMOTE_ADDR = 192.168.1.13 -- 19:48:58.626 INFO [3897]: SERVER_NAME = oameye.works.coregrade.com -- 19:48:58.626 INFO [3897]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=89mcgbs6qa8r8v40jde003k1q92cesu7 -- 19:48:58.626 INFO [3897]: QUERY_STRING = /member/configure -- 19:48:58.626 INFO [3897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:48:58.666 INFO [3897]: COREGRADE is stopping... -- 19:48:58.666 DEBUG [3897]: Closing database connection -- 19:48:58.666 SQL [3897]: pgsql_close() -- 19:48:58.933 INFO [3897]: COREGRADE is starting... -- 19:48:58.933 INFO [3897]: Version from config: 1.0 -- 19:48:58.933 DEBUG [3897]: Connecting to database... -- 19:48:58.933 DEBUG [3897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:48:58.933 SQL [3897]: pgsql_db_connect() -- 19:48:58.937 DEBUG [3897]: Database connection successful -- 19:48:58.937 INFO [3897]: _SERVER found -- 19:48:58.937 INFO [3897]: REMOTE_ADDR = 192.168.1.13 -- 19:48:58.937 INFO [3897]: SERVER_NAME = oameye.works.coregrade.com -- 19:48:58.937 INFO [3897]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=89mcgbs6qa8r8v40jde003k1q92cesu7 -- 19:48:58.937 INFO [3897]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:48:58.937 INFO [3897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:48:58.948 INFO [3897]: COREGRADE is stopping... -- 19:48:58.948 DEBUG [3897]: Closing database connection -- 19:48:58.948 SQL [3897]: pgsql_close() -- 19:49:36.198 INFO [3898]: COREGRADE is starting... -- 19:49:36.198 INFO [3898]: Version from config: 1.0 -- 19:49:36.198 DEBUG [3898]: Connecting to database... -- 19:49:36.198 DEBUG [3898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:49:36.198 SQL [3898]: pgsql_db_connect() -- 19:49:36.202 DEBUG [3898]: Database connection successful -- 19:49:36.202 INFO [3898]: _SERVER found -- 19:49:36.202 INFO [3898]: REMOTE_ADDR = 192.168.1.13 -- 19:49:36.202 INFO [3898]: SERVER_NAME = oameye.works.coregrade.com -- 19:49:36.202 INFO [3898]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=89mcgbs6qa8r8v40jde003k1q92cesu7 -- 19:49:36.202 INFO [3898]: QUERY_STRING = /member -- 19:49:36.202 INFO [3898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:49:36.239 INFO [3898]: COREGRADE is stopping... -- 19:49:36.239 DEBUG [3898]: Closing database connection -- 19:49:36.239 SQL [3898]: pgsql_close() -- 19:49:36.513 INFO [3898]: COREGRADE is starting... -- 19:49:36.513 INFO [3898]: Version from config: 1.0 -- 19:49:36.513 DEBUG [3898]: Connecting to database... -- 19:49:36.513 DEBUG [3898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:49:36.513 SQL [3898]: pgsql_db_connect() -- 19:49:36.517 DEBUG [3898]: Database connection successful -- 19:49:36.517 INFO [3898]: _SERVER found -- 19:49:36.517 INFO [3898]: REMOTE_ADDR = 192.168.1.13 -- 19:49:36.517 INFO [3898]: SERVER_NAME = oameye.works.coregrade.com -- 19:49:36.517 INFO [3898]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9v3o00e8lrpoa59nn1v2s55fm5tkg6h3 -- 19:49:36.517 INFO [3898]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:49:36.517 INFO [3898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:49:36.528 INFO [3898]: COREGRADE is stopping... -- 19:49:36.528 DEBUG [3898]: Closing database connection -- 19:49:36.528 SQL [3898]: pgsql_close() -- 19:49:37.235 INFO [3898]: COREGRADE is starting... -- 19:49:37.235 INFO [3898]: Version from config: 1.0 -- 19:49:37.235 DEBUG [3898]: Connecting to database... -- 19:49:37.235 DEBUG [3898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:49:37.235 SQL [3898]: pgsql_db_connect() -- 19:49:37.240 DEBUG [3898]: Database connection successful -- 19:49:37.240 INFO [3898]: _SERVER found -- 19:49:37.240 INFO [3898]: REMOTE_ADDR = 192.168.1.13 -- 19:49:37.240 INFO [3898]: SERVER_NAME = oameye.works.coregrade.com -- 19:49:37.240 INFO [3898]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9v3o00e8lrpoa59nn1v2s55fm5tkg6h3 -- 19:49:37.240 INFO [3898]: QUERY_STRING = /member/page -- 19:49:37.240 INFO [3898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:49:37.277 INFO [3898]: COREGRADE is stopping... -- 19:49:37.277 DEBUG [3898]: Closing database connection -- 19:49:37.277 SQL [3898]: pgsql_close() -- 19:49:37.474 INFO [3898]: COREGRADE is starting... -- 19:49:37.474 INFO [3898]: Version from config: 1.0 -- 19:49:37.474 DEBUG [3898]: Connecting to database... -- 19:49:37.474 DEBUG [3898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:49:37.474 SQL [3898]: pgsql_db_connect() -- 19:49:37.478 DEBUG [3898]: Database connection successful -- 19:49:37.478 INFO [3898]: _SERVER found -- 19:49:37.478 INFO [3898]: REMOTE_ADDR = 192.168.1.13 -- 19:49:37.478 INFO [3898]: SERVER_NAME = oameye.works.coregrade.com -- 19:49:37.478 INFO [3898]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9v3o00e8lrpoa59nn1v2s55fm5tkg6h3 -- 19:49:37.478 INFO [3898]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:49:37.478 INFO [3898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:49:37.489 INFO [3898]: COREGRADE is stopping... -- 19:49:37.489 DEBUG [3898]: Closing database connection -- 19:49:37.489 SQL [3898]: pgsql_close() -- 19:50:47.364 INFO [3899]: COREGRADE is starting... -- 19:50:47.365 INFO [3899]: Version from config: 1.0 -- 19:50:47.365 DEBUG [3899]: Connecting to database... -- 19:50:47.365 DEBUG [3899]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:50:47.365 SQL [3899]: pgsql_db_connect() -- 19:50:47.369 DEBUG [3899]: Database connection successful -- 19:50:47.369 INFO [3899]: _SERVER found -- 19:50:47.369 INFO [3899]: REMOTE_ADDR = 192.168.1.13 -- 19:50:47.369 INFO [3899]: SERVER_NAME = oameye.works.coregrade.com -- 19:50:47.369 INFO [3899]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9v3o00e8lrpoa59nn1v2s55fm5tkg6h3 -- 19:50:47.369 INFO [3899]: QUERY_STRING = /member -- 19:50:47.369 INFO [3899]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:50:47.407 INFO [3899]: COREGRADE is stopping... -- 19:50:47.407 DEBUG [3899]: Closing database connection -- 19:50:47.407 SQL [3899]: pgsql_close() -- 19:50:47.684 INFO [3899]: COREGRADE is starting... -- 19:50:47.684 INFO [3899]: Version from config: 1.0 -- 19:50:47.684 DEBUG [3899]: Connecting to database... -- 19:50:47.684 DEBUG [3899]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:50:47.684 SQL [3899]: pgsql_db_connect() -- 19:50:47.689 DEBUG [3899]: Database connection successful -- 19:50:47.689 INFO [3899]: _SERVER found -- 19:50:47.689 INFO [3899]: REMOTE_ADDR = 192.168.1.13 -- 19:50:47.689 INFO [3899]: SERVER_NAME = oameye.works.coregrade.com -- 19:50:47.689 INFO [3899]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9v3o00e8lrpoa59nn1v2s55fm5tkg6h3 -- 19:50:47.689 INFO [3899]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:50:47.689 INFO [3899]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:50:47.700 INFO [3899]: COREGRADE is stopping... -- 19:50:47.700 DEBUG [3899]: Closing database connection -- 19:50:47.700 SQL [3899]: pgsql_close() -- 19:50:49.909 INFO [3899]: COREGRADE is starting... -- 19:50:49.910 INFO [3899]: Version from config: 1.0 -- 19:50:49.910 DEBUG [3899]: Connecting to database... -- 19:50:49.910 DEBUG [3899]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:50:49.910 SQL [3899]: pgsql_db_connect() -- 19:50:49.914 DEBUG [3899]: Database connection successful -- 19:50:49.914 INFO [3899]: _SERVER found -- 19:50:49.914 INFO [3899]: REMOTE_ADDR = 192.168.1.13 -- 19:50:49.914 INFO [3899]: SERVER_NAME = oameye.works.coregrade.com -- 19:50:49.914 INFO [3899]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9v3o00e8lrpoa59nn1v2s55fm5tkg6h3 -- 19:50:49.914 INFO [3899]: QUERY_STRING = /member/page -- 19:50:49.914 INFO [3899]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:50:49.952 INFO [3899]: COREGRADE is stopping... -- 19:50:49.952 DEBUG [3899]: Closing database connection -- 19:50:49.952 SQL [3899]: pgsql_close() -- 19:50:50.139 INFO [3899]: COREGRADE is starting... -- 19:50:50.139 INFO [3899]: Version from config: 1.0 -- 19:50:50.139 DEBUG [3899]: Connecting to database... -- 19:50:50.139 DEBUG [3899]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:50:50.139 SQL [3899]: pgsql_db_connect() -- 19:50:50.144 DEBUG [3899]: Database connection successful -- 19:50:50.144 INFO [3899]: _SERVER found -- 19:50:50.144 INFO [3899]: REMOTE_ADDR = 192.168.1.13 -- 19:50:50.144 INFO [3899]: SERVER_NAME = oameye.works.coregrade.com -- 19:50:50.144 INFO [3899]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9v3o00e8lrpoa59nn1v2s55fm5tkg6h3 -- 19:50:50.144 INFO [3899]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:50:50.144 INFO [3899]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:50:50.155 INFO [3899]: COREGRADE is stopping... -- 19:50:50.155 DEBUG [3899]: Closing database connection -- 19:50:50.155 SQL [3899]: pgsql_close() -- 19:50:52.146 INFO [3899]: COREGRADE is starting... -- 19:50:52.146 INFO [3899]: Version from config: 1.0 -- 19:50:52.147 DEBUG [3899]: Connecting to database... -- 19:50:52.147 DEBUG [3899]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:50:52.147 SQL [3899]: pgsql_db_connect() -- 19:50:52.152 DEBUG [3899]: Database connection successful -- 19:50:52.152 INFO [3899]: _SERVER found -- 19:50:52.152 INFO [3899]: REMOTE_ADDR = 192.168.1.13 -- 19:50:52.152 INFO [3899]: SERVER_NAME = oameye.works.coregrade.com -- 19:50:52.152 INFO [3899]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9v3o00e8lrpoa59nn1v2s55fm5tkg6h3 -- 19:50:52.152 INFO [3899]: QUERY_STRING = /member/configure -- 19:50:52.152 INFO [3899]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:50:52.188 INFO [3899]: COREGRADE is stopping... -- 19:50:52.189 DEBUG [3899]: Closing database connection -- 19:50:52.189 SQL [3899]: pgsql_close() -- 19:50:52.456 INFO [3899]: COREGRADE is starting... -- 19:50:52.456 INFO [3899]: Version from config: 1.0 -- 19:50:52.456 DEBUG [3899]: Connecting to database... -- 19:50:52.456 DEBUG [3899]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:50:52.456 SQL [3899]: pgsql_db_connect() -- 19:50:52.460 DEBUG [3899]: Database connection successful -- 19:50:52.460 INFO [3899]: _SERVER found -- 19:50:52.460 INFO [3899]: REMOTE_ADDR = 192.168.1.13 -- 19:50:52.460 INFO [3899]: SERVER_NAME = oameye.works.coregrade.com -- 19:50:52.460 INFO [3899]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9v3o00e8lrpoa59nn1v2s55fm5tkg6h3 -- 19:50:52.460 INFO [3899]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:50:52.461 INFO [3899]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:50:52.472 INFO [3899]: COREGRADE is stopping... -- 19:50:52.472 DEBUG [3899]: Closing database connection -- 19:50:52.472 SQL [3899]: pgsql_close() -- 19:51:43.798 INFO [3912]: COREGRADE is starting... -- 19:51:43.799 INFO [3912]: Version from config: 1.0 -- 19:51:43.799 DEBUG [3912]: Connecting to database... -- 19:51:43.799 DEBUG [3912]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:51:43.799 SQL [3912]: pgsql_db_connect() -- 19:51:43.803 DEBUG [3912]: Database connection successful -- 19:51:43.803 INFO [3912]: _SERVER found -- 19:51:43.803 INFO [3912]: REMOTE_ADDR = 192.168.1.13 -- 19:51:43.803 INFO [3912]: SERVER_NAME = oameye.works.coregrade.com -- 19:51:43.803 INFO [3912]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=lg5pdpnqd6l74pf9uu9bhnfhjgakkg2u -- 19:51:43.803 INFO [3912]: QUERY_STRING = /member/mycalendar -- 19:51:43.803 INFO [3912]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:51:43.841 INFO [3912]: COREGRADE is stopping... -- 19:51:43.841 DEBUG [3912]: Closing database connection -- 19:51:43.841 SQL [3912]: pgsql_close() -- 19:51:44.061 INFO [3912]: COREGRADE is starting... -- 19:51:44.061 INFO [3912]: Version from config: 1.0 -- 19:51:44.061 DEBUG [3912]: Connecting to database... -- 19:51:44.061 DEBUG [3912]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:51:44.061 SQL [3912]: pgsql_db_connect() -- 19:51:44.065 DEBUG [3912]: Database connection successful -- 19:51:44.065 INFO [3912]: _SERVER found -- 19:51:44.065 INFO [3912]: REMOTE_ADDR = 192.168.1.13 -- 19:51:44.065 INFO [3912]: SERVER_NAME = oameye.works.coregrade.com -- 19:51:44.065 INFO [3912]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=33s6niss2n804vrt8ptagp33gs1sg1fa -- 19:51:44.065 INFO [3912]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:51:44.065 INFO [3912]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:51:44.078 INFO [3912]: COREGRADE is stopping... -- 19:51:44.078 DEBUG [3912]: Closing database connection -- 19:51:44.078 SQL [3912]: pgsql_close() -- 19:51:44.669 INFO [3912]: COREGRADE is starting... -- 19:51:44.669 INFO [3912]: Version from config: 1.0 -- 19:51:44.669 DEBUG [3912]: Connecting to database... -- 19:51:44.669 DEBUG [3912]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:51:44.669 SQL [3912]: pgsql_db_connect() -- 19:51:44.674 DEBUG [3912]: Database connection successful -- 19:51:44.674 INFO [3912]: _SERVER found -- 19:51:44.674 INFO [3912]: REMOTE_ADDR = 192.168.1.13 -- 19:51:44.674 INFO [3912]: SERVER_NAME = oameye.works.coregrade.com -- 19:51:44.674 INFO [3912]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=33s6niss2n804vrt8ptagp33gs1sg1fa -- 19:51:44.674 INFO [3912]: QUERY_STRING = /member/configure -- 19:51:44.674 INFO [3912]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:51:44.713 INFO [3912]: COREGRADE is stopping... -- 19:51:44.713 DEBUG [3912]: Closing database connection -- 19:51:44.713 SQL [3912]: pgsql_close() -- 19:51:44.901 INFO [3912]: COREGRADE is starting... -- 19:51:44.902 INFO [3912]: Version from config: 1.0 -- 19:51:44.902 DEBUG [3912]: Connecting to database... -- 19:51:44.902 DEBUG [3912]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:51:44.902 SQL [3912]: pgsql_db_connect() -- 19:51:44.906 DEBUG [3912]: Database connection successful -- 19:51:44.906 INFO [3912]: _SERVER found -- 19:51:44.906 INFO [3912]: REMOTE_ADDR = 192.168.1.13 -- 19:51:44.906 INFO [3912]: SERVER_NAME = oameye.works.coregrade.com -- 19:51:44.906 INFO [3912]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=33s6niss2n804vrt8ptagp33gs1sg1fa -- 19:51:44.906 INFO [3912]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:51:44.906 INFO [3912]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:51:44.918 INFO [3912]: COREGRADE is stopping... -- 19:51:44.918 DEBUG [3912]: Closing database connection -- 19:51:44.918 SQL [3912]: pgsql_close() -- 19:55:13.540 INFO [3917]: COREGRADE is starting... -- 19:55:13.541 INFO [3917]: Version from config: 1.0 -- 19:55:13.541 DEBUG [3917]: Connecting to database... -- 19:55:13.541 DEBUG [3917]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:13.541 SQL [3917]: pgsql_db_connect() -- 19:55:13.545 DEBUG [3917]: Database connection successful -- 19:55:13.545 INFO [3917]: _SERVER found -- 19:55:13.545 INFO [3917]: REMOTE_ADDR = 192.168.1.13 -- 19:55:13.545 INFO [3917]: SERVER_NAME = oameye.works.coregrade.com -- 19:55:13.545 INFO [3917]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9v3o00e8lrpoa59nn1v2s55fm5tkg6h3 -- 19:55:13.545 INFO [3917]: QUERY_STRING = /member -- 19:55:13.545 INFO [3917]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:55:13.586 INFO [3917]: COREGRADE is stopping... -- 19:55:13.586 DEBUG [3917]: Closing database connection -- 19:55:13.586 SQL [3917]: pgsql_close() -- 19:55:13.881 INFO [3917]: COREGRADE is starting... -- 19:55:13.882 INFO [3917]: Version from config: 1.0 -- 19:55:13.882 DEBUG [3917]: Connecting to database... -- 19:55:13.882 DEBUG [3917]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:13.882 SQL [3917]: pgsql_db_connect() -- 19:55:13.886 DEBUG [3917]: Database connection successful -- 19:55:13.886 INFO [3917]: _SERVER found -- 19:55:13.886 INFO [3917]: REMOTE_ADDR = 192.168.1.13 -- 19:55:13.886 INFO [3917]: SERVER_NAME = oameye.works.coregrade.com -- 19:55:13.886 INFO [3917]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=4u7rgkii93oganene5ke38ed20at12q9 -- 19:55:13.886 INFO [3917]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:55:13.886 INFO [3917]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:55:13.897 INFO [3917]: COREGRADE is stopping... -- 19:55:13.897 DEBUG [3917]: Closing database connection -- 19:55:13.897 SQL [3917]: pgsql_close() -- 19:55:16.466 INFO [3917]: COREGRADE is starting... -- 19:55:16.466 INFO [3917]: Version from config: 1.0 -- 19:55:16.466 DEBUG [3917]: Connecting to database... -- 19:55:16.466 DEBUG [3917]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:16.466 SQL [3917]: pgsql_db_connect() -- 19:55:16.470 DEBUG [3917]: Database connection successful -- 19:55:16.470 INFO [3917]: _SERVER found -- 19:55:16.470 INFO [3917]: REMOTE_ADDR = 192.168.1.13 -- 19:55:16.470 INFO [3917]: SERVER_NAME = oameye.works.coregrade.com -- 19:55:16.470 INFO [3917]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=4u7rgkii93oganene5ke38ed20at12q9 -- 19:55:16.470 INFO [3917]: QUERY_STRING = /member/myprofile -- 19:55:16.470 INFO [3917]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:55:16.501 INFO [3917]: COREGRADE is stopping... -- 19:55:16.501 DEBUG [3917]: Closing database connection -- 19:55:16.501 SQL [3917]: pgsql_close() -- 19:55:16.640 INFO [3917]: COREGRADE is starting... -- 19:55:16.641 INFO [3917]: Version from config: 1.0 -- 19:55:16.641 DEBUG [3917]: Connecting to database... -- 19:55:16.641 DEBUG [3917]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:16.641 SQL [3917]: pgsql_db_connect() -- 19:55:16.645 DEBUG [3917]: Database connection successful -- 19:55:16.645 INFO [3917]: _SERVER found -- 19:55:16.645 INFO [3917]: REMOTE_ADDR = 192.168.1.13 -- 19:55:16.645 INFO [3917]: SERVER_NAME = oameye.works.coregrade.com -- 19:55:16.645 INFO [3917]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=4u7rgkii93oganene5ke38ed20at12q9 -- 19:55:16.645 INFO [3917]: QUERY_STRING = /favicon.ico -- 19:55:16.645 INFO [3917]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:55:16.656 INFO [3917]: COREGRADE is stopping... -- 19:55:16.656 DEBUG [3917]: Closing database connection -- 19:55:16.656 SQL [3917]: pgsql_close() -- 19:55:25.613 INFO [3918]: COREGRADE is starting... -- 19:55:25.613 INFO [3918]: Version from config: 1.0 -- 19:55:25.613 DEBUG [3918]: Connecting to database... -- 19:55:25.613 DEBUG [3918]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:25.613 SQL [3918]: pgsql_db_connect() -- 19:55:25.617 DEBUG [3918]: Database connection successful -- 19:55:25.617 INFO [3918]: _SERVER found -- 19:55:25.617 INFO [3918]: REMOTE_ADDR = 192.168.1.13 -- 19:55:25.617 INFO [3918]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:55:25.617 INFO [3918]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=v4ghm0u5mme40kqrmki1dibo39co9u53 -- 19:55:25.617 INFO [3918]: QUERY_STRING = /member/myprofile -- 19:55:25.617 INFO [3918]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:55:25.652 INFO [3918]: COREGRADE is stopping... -- 19:55:25.652 DEBUG [3918]: Closing database connection -- 19:55:25.652 SQL [3918]: pgsql_close() -- 19:55:25.918 INFO [3918]: COREGRADE is starting... -- 19:55:25.918 INFO [3918]: Version from config: 1.0 -- 19:55:25.918 DEBUG [3918]: Connecting to database... -- 19:55:25.918 DEBUG [3918]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:25.918 SQL [3918]: pgsql_db_connect() -- 19:55:25.922 DEBUG [3918]: Database connection successful -- 19:55:25.922 INFO [3918]: _SERVER found -- 19:55:25.922 INFO [3918]: REMOTE_ADDR = 192.168.1.13 -- 19:55:25.922 INFO [3918]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:55:25.922 INFO [3918]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:55:25.922 INFO [3918]: QUERY_STRING = /favicon.ico -- 19:55:25.922 INFO [3918]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:55:25.933 INFO [3918]: COREGRADE is stopping... -- 19:55:25.933 DEBUG [3918]: Closing database connection -- 19:55:25.934 SQL [3918]: pgsql_close() -- 19:55:33.143 INFO [3895]: COREGRADE is starting... -- 19:55:33.143 INFO [3895]: Version from config: 1.0 -- 19:55:33.144 DEBUG [3895]: Connecting to database... -- 19:55:33.144 DEBUG [3895]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:33.144 SQL [3895]: pgsql_db_connect() -- 19:55:33.148 DEBUG [3895]: Database connection successful -- 19:55:33.148 INFO [3895]: _SERVER found -- 19:55:33.148 INFO [3895]: REMOTE_ADDR = 192.168.1.13 -- 19:55:33.148 INFO [3895]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:55:33.148 INFO [3895]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:55:33.148 INFO [3895]: QUERY_STRING = /auth -- 19:55:33.148 INFO [3895]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:55:33.180 INFO [3895]: COREGRADE is stopping... -- 19:55:33.180 DEBUG [3895]: Closing database connection -- 19:55:33.180 SQL [3895]: pgsql_close() -- 19:55:33.399 INFO [3895]: COREGRADE is starting... -- 19:55:33.399 INFO [3895]: Version from config: 1.0 -- 19:55:33.399 DEBUG [3895]: Connecting to database... -- 19:55:33.399 DEBUG [3895]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:33.399 SQL [3895]: pgsql_db_connect() -- 19:55:33.403 DEBUG [3895]: Database connection successful -- 19:55:33.403 INFO [3895]: _SERVER found -- 19:55:33.403 INFO [3895]: REMOTE_ADDR = 192.168.1.13 -- 19:55:33.403 INFO [3895]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:55:33.403 INFO [3895]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:55:33.403 INFO [3895]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:55:33.403 INFO [3895]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:55:33.414 INFO [3895]: COREGRADE is stopping... -- 19:55:33.414 DEBUG [3895]: Closing database connection -- 19:55:33.414 SQL [3895]: pgsql_close() -- 19:55:35.191 INFO [3895]: COREGRADE is starting... -- 19:55:35.191 INFO [3895]: Version from config: 1.0 -- 19:55:35.191 DEBUG [3895]: Connecting to database... -- 19:55:35.191 DEBUG [3895]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:35.191 SQL [3895]: pgsql_db_connect() -- 19:55:35.195 DEBUG [3895]: Database connection successful -- 19:55:35.195 INFO [3895]: _SERVER found -- 19:55:35.195 INFO [3895]: REMOTE_ADDR = 192.168.1.13 -- 19:55:35.195 INFO [3895]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:55:35.195 INFO [3895]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:55:35.195 INFO [3895]: QUERY_STRING = /auth -- 19:55:35.195 INFO [3895]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:55:35.384 INFO [3895]: COREGRADE is starting... -- 19:55:35.384 INFO [3895]: Version from config: 1.0 -- 19:55:35.384 DEBUG [3895]: Connecting to database... -- 19:55:35.384 DEBUG [3895]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:35.384 SQL [3895]: pgsql_db_connect() -- 19:55:35.389 DEBUG [3895]: Database connection successful -- 19:55:35.389 INFO [3895]: _SERVER found -- 19:55:35.389 INFO [3895]: REMOTE_ADDR = 192.168.1.13 -- 19:55:35.389 INFO [3895]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:55:35.389 INFO [3895]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:55:35.389 INFO [3895]: QUERY_STRING = /member/index -- 19:55:35.389 INFO [3895]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:55:35.428 INFO [3895]: COREGRADE is stopping... -- 19:55:35.428 DEBUG [3895]: Closing database connection -- 19:55:35.428 SQL [3895]: pgsql_close() -- 19:55:35.722 INFO [3895]: COREGRADE is starting... -- 19:55:35.723 INFO [3895]: Version from config: 1.0 -- 19:55:35.723 DEBUG [3895]: Connecting to database... -- 19:55:35.723 DEBUG [3895]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:35.723 SQL [3895]: pgsql_db_connect() -- 19:55:35.727 DEBUG [3895]: Database connection successful -- 19:55:35.727 INFO [3895]: _SERVER found -- 19:55:35.727 INFO [3895]: REMOTE_ADDR = 192.168.1.13 -- 19:55:35.727 INFO [3895]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:55:35.727 INFO [3895]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:55:35.727 INFO [3895]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:55:35.727 INFO [3895]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:55:35.738 INFO [3895]: COREGRADE is stopping... -- 19:55:35.738 DEBUG [3895]: Closing database connection -- 19:55:35.738 SQL [3895]: pgsql_close() -- 19:55:40.709 INFO [3895]: COREGRADE is starting... -- 19:55:40.709 INFO [3895]: Version from config: 1.0 -- 19:55:40.709 DEBUG [3895]: Connecting to database... -- 19:55:40.709 DEBUG [3895]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:40.709 SQL [3895]: pgsql_db_connect() -- 19:55:40.713 DEBUG [3895]: Database connection successful -- 19:55:40.713 INFO [3895]: _SERVER found -- 19:55:40.713 INFO [3895]: REMOTE_ADDR = 192.168.1.13 -- 19:55:40.713 INFO [3895]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:55:40.713 INFO [3895]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:55:40.713 INFO [3895]: QUERY_STRING = /member/configure -- 19:55:40.713 INFO [3895]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:55:40.753 INFO [3895]: COREGRADE is stopping... -- 19:55:40.753 DEBUG [3895]: Closing database connection -- 19:55:40.753 SQL [3895]: pgsql_close() -- 19:55:41.073 INFO [3895]: COREGRADE is starting... -- 19:55:41.073 INFO [3895]: Version from config: 1.0 -- 19:55:41.073 DEBUG [3895]: Connecting to database... -- 19:55:41.073 DEBUG [3895]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:41.073 SQL [3895]: pgsql_db_connect() -- 19:55:41.077 DEBUG [3895]: Database connection successful -- 19:55:41.077 INFO [3895]: _SERVER found -- 19:55:41.077 INFO [3895]: REMOTE_ADDR = 192.168.1.13 -- 19:55:41.077 INFO [3895]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:55:41.077 INFO [3895]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:55:41.077 INFO [3895]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:55:41.077 INFO [3895]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:55:41.088 INFO [3895]: COREGRADE is stopping... -- 19:55:41.088 DEBUG [3895]: Closing database connection -- 19:55:41.088 SQL [3895]: pgsql_close() -- 19:55:53.151 INFO [3896]: COREGRADE is starting... -- 19:55:53.151 INFO [3896]: Version from config: 1.0 -- 19:55:53.151 DEBUG [3896]: Connecting to database... -- 19:55:53.151 DEBUG [3896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:53.151 SQL [3896]: pgsql_db_connect() -- 19:55:53.155 DEBUG [3896]: Database connection successful -- 19:55:53.155 INFO [3896]: _SERVER found -- 19:55:53.155 INFO [3896]: REMOTE_ADDR = 192.168.1.13 -- 19:55:53.155 INFO [3896]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:55:53.155 INFO [3896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:55:53.155 INFO [3896]: QUERY_STRING = /member/addcard -- 19:55:53.155 INFO [3896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:55:53.196 INFO [3896]: COREGRADE is stopping... -- 19:55:53.196 DEBUG [3896]: Closing database connection -- 19:55:53.196 SQL [3896]: pgsql_close() -- 19:55:53.607 INFO [3896]: COREGRADE is starting... -- 19:55:53.608 INFO [3896]: Version from config: 1.0 -- 19:55:53.608 DEBUG [3896]: Connecting to database... -- 19:55:53.608 DEBUG [3896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:53.608 SQL [3896]: pgsql_db_connect() -- 19:55:53.612 DEBUG [3896]: Database connection successful -- 19:55:53.612 INFO [3896]: _SERVER found -- 19:55:53.612 INFO [3896]: REMOTE_ADDR = 192.168.1.13 -- 19:55:53.612 INFO [3896]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:55:53.612 INFO [3896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:55:53.612 INFO [3896]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:55:53.612 INFO [3896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:55:53.623 INFO [3896]: COREGRADE is stopping... -- 19:55:53.623 DEBUG [3896]: Closing database connection -- 19:55:53.623 SQL [3896]: pgsql_close() -- 19:55:57.371 INFO [3896]: COREGRADE is starting... -- 19:55:57.371 INFO [3896]: Version from config: 1.0 -- 19:55:57.371 DEBUG [3896]: Connecting to database... -- 19:55:57.371 DEBUG [3896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:57.371 SQL [3896]: pgsql_db_connect() -- 19:55:57.375 DEBUG [3896]: Database connection successful -- 19:55:57.375 INFO [3896]: _SERVER found -- 19:55:57.375 INFO [3896]: REMOTE_ADDR = 192.168.1.13 -- 19:55:57.375 INFO [3896]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:55:57.375 INFO [3896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:55:57.375 INFO [3896]: QUERY_STRING = /member/mycalendar -- 19:55:57.375 INFO [3896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:55:57.411 INFO [3896]: COREGRADE is stopping... -- 19:55:57.411 DEBUG [3896]: Closing database connection -- 19:55:57.411 SQL [3896]: pgsql_close() -- 19:55:57.673 INFO [3896]: COREGRADE is starting... -- 19:55:57.673 INFO [3896]: Version from config: 1.0 -- 19:55:57.673 DEBUG [3896]: Connecting to database... -- 19:55:57.673 DEBUG [3896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:57.673 SQL [3896]: pgsql_db_connect() -- 19:55:57.677 DEBUG [3896]: Database connection successful -- 19:55:57.677 INFO [3896]: _SERVER found -- 19:55:57.677 INFO [3896]: REMOTE_ADDR = 192.168.1.13 -- 19:55:57.677 INFO [3896]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:55:57.677 INFO [3896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:55:57.677 INFO [3896]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:55:57.677 INFO [3896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:55:57.688 INFO [3896]: COREGRADE is stopping... -- 19:55:57.688 DEBUG [3896]: Closing database connection -- 19:55:57.688 SQL [3896]: pgsql_close() -- 19:56:01.133 INFO [3896]: COREGRADE is starting... -- 19:56:01.133 INFO [3896]: Version from config: 1.0 -- 19:56:01.133 DEBUG [3896]: Connecting to database... -- 19:56:01.133 DEBUG [3896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:01.133 SQL [3896]: pgsql_db_connect() -- 19:56:01.137 DEBUG [3896]: Database connection successful -- 19:56:01.137 INFO [3896]: _SERVER found -- 19:56:01.137 INFO [3896]: REMOTE_ADDR = 192.168.1.13 -- 19:56:01.137 INFO [3896]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:56:01.137 INFO [3896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:56:01.137 INFO [3896]: QUERY_STRING = /member -- 19:56:01.137 INFO [3896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:01.176 INFO [3896]: COREGRADE is stopping... -- 19:56:01.177 DEBUG [3896]: Closing database connection -- 19:56:01.177 SQL [3896]: pgsql_close() -- 19:56:01.419 INFO [3896]: COREGRADE is starting... -- 19:56:01.420 INFO [3896]: Version from config: 1.0 -- 19:56:01.420 DEBUG [3896]: Connecting to database... -- 19:56:01.420 DEBUG [3896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:01.420 SQL [3896]: pgsql_db_connect() -- 19:56:01.424 DEBUG [3896]: Database connection successful -- 19:56:01.424 INFO [3896]: _SERVER found -- 19:56:01.424 INFO [3896]: REMOTE_ADDR = 192.168.1.13 -- 19:56:01.424 INFO [3896]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:56:01.424 INFO [3896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:56:01.424 INFO [3896]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:56:01.424 INFO [3896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:01.435 INFO [3896]: COREGRADE is stopping... -- 19:56:01.435 DEBUG [3896]: Closing database connection -- 19:56:01.435 SQL [3896]: pgsql_close() -- 19:56:02.634 INFO [3896]: COREGRADE is starting... -- 19:56:02.634 INFO [3896]: Version from config: 1.0 -- 19:56:02.634 DEBUG [3896]: Connecting to database... -- 19:56:02.635 DEBUG [3896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:02.635 SQL [3896]: pgsql_db_connect() -- 19:56:02.639 DEBUG [3896]: Database connection successful -- 19:56:02.639 INFO [3896]: _SERVER found -- 19:56:02.639 INFO [3896]: REMOTE_ADDR = 192.168.1.13 -- 19:56:02.639 INFO [3896]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:56:02.639 INFO [3896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:56:02.639 INFO [3896]: QUERY_STRING = /member/page -- 19:56:02.639 INFO [3896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:02.680 INFO [3896]: COREGRADE is stopping... -- 19:56:02.680 DEBUG [3896]: Closing database connection -- 19:56:02.680 SQL [3896]: pgsql_close() -- 19:56:02.959 INFO [3896]: COREGRADE is starting... -- 19:56:02.959 INFO [3896]: Version from config: 1.0 -- 19:56:02.959 DEBUG [3896]: Connecting to database... -- 19:56:02.959 DEBUG [3896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:02.959 SQL [3896]: pgsql_db_connect() -- 19:56:02.963 DEBUG [3896]: Database connection successful -- 19:56:02.963 INFO [3896]: _SERVER found -- 19:56:02.963 INFO [3896]: REMOTE_ADDR = 192.168.1.13 -- 19:56:02.963 INFO [3896]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:56:02.963 INFO [3896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:56:02.963 INFO [3896]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:56:02.963 INFO [3896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:02.974 INFO [3896]: COREGRADE is stopping... -- 19:56:02.974 DEBUG [3896]: Closing database connection -- 19:56:02.974 SQL [3896]: pgsql_close() -- 19:56:14.815 INFO [3897]: COREGRADE is starting... -- 19:56:14.815 INFO [3897]: Version from config: 1.0 -- 19:56:14.815 DEBUG [3897]: Connecting to database... -- 19:56:14.815 DEBUG [3897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:14.815 SQL [3897]: pgsql_db_connect() -- 19:56:14.819 DEBUG [3897]: Database connection successful -- 19:56:14.819 INFO [3897]: _SERVER found -- 19:56:14.819 INFO [3897]: REMOTE_ADDR = 192.168.1.13 -- 19:56:14.819 INFO [3897]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:56:14.819 INFO [3897]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:56:14.819 INFO [3897]: QUERY_STRING = /member/configure -- 19:56:14.819 INFO [3897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:14.859 INFO [3897]: COREGRADE is stopping... -- 19:56:14.860 DEBUG [3897]: Closing database connection -- 19:56:14.860 SQL [3897]: pgsql_close() -- 19:56:15.130 INFO [3897]: COREGRADE is starting... -- 19:56:15.130 INFO [3897]: Version from config: 1.0 -- 19:56:15.130 DEBUG [3897]: Connecting to database... -- 19:56:15.130 DEBUG [3897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:15.130 SQL [3897]: pgsql_db_connect() -- 19:56:15.134 DEBUG [3897]: Database connection successful -- 19:56:15.134 INFO [3897]: _SERVER found -- 19:56:15.134 INFO [3897]: REMOTE_ADDR = 192.168.1.13 -- 19:56:15.134 INFO [3897]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:56:15.134 INFO [3897]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:56:15.134 INFO [3897]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:56:15.134 INFO [3897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:15.145 INFO [3897]: COREGRADE is stopping... -- 19:56:15.145 DEBUG [3897]: Closing database connection -- 19:56:15.145 SQL [3897]: pgsql_close() -- 19:56:19.213 INFO [3897]: COREGRADE is starting... -- 19:56:19.213 INFO [3897]: Version from config: 1.0 -- 19:56:19.213 DEBUG [3897]: Connecting to database... -- 19:56:19.213 DEBUG [3897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:19.213 SQL [3897]: pgsql_db_connect() -- 19:56:19.217 DEBUG [3897]: Database connection successful -- 19:56:19.217 INFO [3897]: _SERVER found -- 19:56:19.217 INFO [3897]: REMOTE_ADDR = 192.168.1.13 -- 19:56:19.217 INFO [3897]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:56:19.217 INFO [3897]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:56:19.217 INFO [3897]: QUERY_STRING = /member/page -- 19:56:19.217 INFO [3897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:19.258 INFO [3897]: COREGRADE is stopping... -- 19:56:19.258 DEBUG [3897]: Closing database connection -- 19:56:19.258 SQL [3897]: pgsql_close() -- 19:56:19.476 INFO [3897]: COREGRADE is starting... -- 19:56:19.477 INFO [3897]: Version from config: 1.0 -- 19:56:19.477 DEBUG [3897]: Connecting to database... -- 19:56:19.477 DEBUG [3897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:19.477 SQL [3897]: pgsql_db_connect() -- 19:56:19.481 DEBUG [3897]: Database connection successful -- 19:56:19.481 INFO [3897]: _SERVER found -- 19:56:19.481 INFO [3897]: REMOTE_ADDR = 192.168.1.13 -- 19:56:19.481 INFO [3897]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:56:19.481 INFO [3897]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:56:19.481 INFO [3897]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:56:19.481 INFO [3897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:19.492 INFO [3897]: COREGRADE is stopping... -- 19:56:19.492 DEBUG [3897]: Closing database connection -- 19:56:19.492 SQL [3897]: pgsql_close() -- 19:56:20.620 INFO [3897]: COREGRADE is starting... -- 19:56:20.620 INFO [3897]: Version from config: 1.0 -- 19:56:20.620 DEBUG [3897]: Connecting to database... -- 19:56:20.620 DEBUG [3897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:20.620 SQL [3897]: pgsql_db_connect() -- 19:56:20.624 DEBUG [3897]: Database connection successful -- 19:56:20.624 INFO [3897]: _SERVER found -- 19:56:20.624 INFO [3897]: REMOTE_ADDR = 192.168.1.13 -- 19:56:20.624 INFO [3897]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:56:20.624 INFO [3897]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:56:20.624 INFO [3897]: QUERY_STRING = /member/configure -- 19:56:20.624 INFO [3897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:20.664 INFO [3897]: COREGRADE is stopping... -- 19:56:20.664 DEBUG [3897]: Closing database connection -- 19:56:20.664 SQL [3897]: pgsql_close() -- 19:56:20.995 INFO [3897]: COREGRADE is starting... -- 19:56:20.995 INFO [3897]: Version from config: 1.0 -- 19:56:20.995 DEBUG [3897]: Connecting to database... -- 19:56:20.995 DEBUG [3897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:20.995 SQL [3897]: pgsql_db_connect() -- 19:56:20.999 DEBUG [3897]: Database connection successful -- 19:56:20.000 INFO [3897]: _SERVER found -- 19:56:20.000 INFO [3897]: REMOTE_ADDR = 192.168.1.13 -- 19:56:20.000 INFO [3897]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:56:20.000 INFO [3897]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:56:20.000 INFO [3897]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:56:20.000 INFO [3897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:21.011 INFO [3897]: COREGRADE is stopping... -- 19:56:21.011 DEBUG [3897]: Closing database connection -- 19:56:21.011 SQL [3897]: pgsql_close() -- 19:56:22.531 INFO [3897]: COREGRADE is starting... -- 19:56:22.531 INFO [3897]: Version from config: 1.0 -- 19:56:22.531 DEBUG [3897]: Connecting to database... -- 19:56:22.531 DEBUG [3897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:22.531 SQL [3897]: pgsql_db_connect() -- 19:56:22.535 DEBUG [3897]: Database connection successful -- 19:56:22.535 INFO [3897]: _SERVER found -- 19:56:22.535 INFO [3897]: REMOTE_ADDR = 192.168.1.13 -- 19:56:22.535 INFO [3897]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:56:22.535 INFO [3897]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:56:22.535 INFO [3897]: QUERY_STRING = /member/page -- 19:56:22.535 INFO [3897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:22.576 INFO [3897]: COREGRADE is stopping... -- 19:56:22.576 DEBUG [3897]: Closing database connection -- 19:56:22.576 SQL [3897]: pgsql_close() -- 19:56:23.730 INFO [3897]: COREGRADE is starting... -- 19:56:23.730 INFO [3897]: Version from config: 1.0 -- 19:56:23.730 DEBUG [3897]: Connecting to database... -- 19:56:23.730 DEBUG [3897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:23.730 SQL [3897]: pgsql_db_connect() -- 19:56:23.734 DEBUG [3897]: Database connection successful -- 19:56:23.734 INFO [3897]: _SERVER found -- 19:56:23.734 INFO [3897]: REMOTE_ADDR = 192.168.1.13 -- 19:56:23.734 INFO [3897]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:56:23.734 INFO [3897]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:56:23.734 INFO [3897]: QUERY_STRING = /member/configure -- 19:56:23.734 INFO [3897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:23.773 INFO [3897]: COREGRADE is stopping... -- 19:56:23.773 DEBUG [3897]: Closing database connection -- 19:56:23.773 SQL [3897]: pgsql_close() -- 19:56:24.021 INFO [3897]: COREGRADE is starting... -- 19:56:24.021 INFO [3897]: Version from config: 1.0 -- 19:56:24.021 DEBUG [3897]: Connecting to database... -- 19:56:24.021 DEBUG [3897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:24.021 SQL [3897]: pgsql_db_connect() -- 19:56:24.025 DEBUG [3897]: Database connection successful -- 19:56:24.025 INFO [3897]: _SERVER found -- 19:56:24.025 INFO [3897]: REMOTE_ADDR = 192.168.1.13 -- 19:56:24.025 INFO [3897]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:56:24.025 INFO [3897]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:56:24.025 INFO [3897]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:56:24.025 INFO [3897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:24.036 INFO [3897]: COREGRADE is stopping... -- 19:56:24.036 DEBUG [3897]: Closing database connection -- 19:56:24.036 SQL [3897]: pgsql_close() -- 19:56:25.415 INFO [3897]: COREGRADE is starting... -- 19:56:25.415 INFO [3897]: Version from config: 1.0 -- 19:56:25.415 DEBUG [3897]: Connecting to database... -- 19:56:25.415 DEBUG [3897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:25.415 SQL [3897]: pgsql_db_connect() -- 19:56:25.419 DEBUG [3897]: Database connection successful -- 19:56:25.419 INFO [3897]: _SERVER found -- 19:56:25.419 INFO [3897]: REMOTE_ADDR = 192.168.1.13 -- 19:56:25.419 INFO [3897]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:56:25.419 INFO [3897]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:56:25.419 INFO [3897]: QUERY_STRING = /member/page -- 19:56:25.419 INFO [3897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:25.461 INFO [3897]: COREGRADE is stopping... -- 19:56:25.461 DEBUG [3897]: Closing database connection -- 19:56:25.461 SQL [3897]: pgsql_close() -- 19:56:26.396 INFO [3898]: COREGRADE is starting... -- 19:56:26.396 INFO [3898]: Version from config: 1.0 -- 19:56:26.396 DEBUG [3898]: Connecting to database... -- 19:56:26.396 DEBUG [3898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:26.396 SQL [3898]: pgsql_db_connect() -- 19:56:26.400 DEBUG [3898]: Database connection successful -- 19:56:26.400 INFO [3898]: _SERVER found -- 19:56:26.400 INFO [3898]: REMOTE_ADDR = 192.168.1.13 -- 19:56:26.400 INFO [3898]: SERVER_NAME = oameye.works.coregrade.com -- 19:56:26.400 INFO [3898]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=33s6niss2n804vrt8ptagp33gs1sg1fa -- 19:56:26.400 INFO [3898]: QUERY_STRING = /member/mycalendar -- 19:56:26.400 INFO [3898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:26.435 INFO [3898]: COREGRADE is stopping... -- 19:56:26.435 DEBUG [3898]: Closing database connection -- 19:56:26.435 SQL [3898]: pgsql_close() -- 19:56:26.574 INFO [3898]: COREGRADE is starting... -- 19:56:26.574 INFO [3898]: Version from config: 1.0 -- 19:56:26.574 DEBUG [3898]: Connecting to database... -- 19:56:26.575 DEBUG [3898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:26.575 SQL [3898]: pgsql_db_connect() -- 19:56:26.579 DEBUG [3898]: Database connection successful -- 19:56:26.579 INFO [3898]: _SERVER found -- 19:56:26.579 INFO [3898]: REMOTE_ADDR = 192.168.1.13 -- 19:56:26.579 INFO [3898]: SERVER_NAME = oameye.works.coregrade.com -- 19:56:26.579 INFO [3898]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=33s6niss2n804vrt8ptagp33gs1sg1fa -- 19:56:26.579 INFO [3898]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:56:26.579 INFO [3898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:26.590 INFO [3898]: COREGRADE is stopping... -- 19:56:26.590 DEBUG [3898]: Closing database connection -- 19:56:26.590 SQL [3898]: pgsql_close() -- 19:56:26.741 INFO [3898]: COREGRADE is starting... -- 19:56:26.741 INFO [3898]: Version from config: 1.0 -- 19:56:26.741 DEBUG [3898]: Connecting to database... -- 19:56:26.741 DEBUG [3898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:26.741 SQL [3898]: pgsql_db_connect() -- 19:56:26.750 INFO [3897]: COREGRADE is starting... -- 19:56:26.751 INFO [3897]: Version from config: 1.0 -- 19:56:26.751 DEBUG [3897]: Connecting to database... -- 19:56:26.751 DEBUG [3897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:26.751 SQL [3897]: pgsql_db_connect() -- 19:56:26.745 DEBUG [3898]: Database connection successful -- 19:56:26.745 INFO [3898]: _SERVER found -- 19:56:26.745 INFO [3898]: REMOTE_ADDR = 192.168.1.13 -- 19:56:26.745 INFO [3898]: SERVER_NAME = oameye.works.coregrade.com -- 19:56:26.745 INFO [3898]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=33s6niss2n804vrt8ptagp33gs1sg1fa -- 19:56:26.745 INFO [3898]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:56:26.745 INFO [3898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:26.756 INFO [3898]: COREGRADE is stopping... -- 19:56:26.756 DEBUG [3898]: Closing database connection -- 19:56:26.756 SQL [3898]: pgsql_close() -- 19:56:26.754 DEBUG [3897]: Database connection successful -- 19:56:26.755 INFO [3897]: _SERVER found -- 19:56:26.755 INFO [3897]: REMOTE_ADDR = 192.168.1.13 -- 19:56:26.755 INFO [3897]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:56:26.755 INFO [3897]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:56:26.755 INFO [3897]: QUERY_STRING = /member/configure -- 19:56:26.755 INFO [3897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:26.794 INFO [3897]: COREGRADE is stopping... -- 19:56:26.794 DEBUG [3897]: Closing database connection -- 19:56:26.794 SQL [3897]: pgsql_close() -- 19:56:26.977 INFO [3897]: COREGRADE is starting... -- 19:56:26.978 INFO [3897]: Version from config: 1.0 -- 19:56:26.978 DEBUG [3897]: Connecting to database... -- 19:56:26.978 DEBUG [3897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:26.978 SQL [3897]: pgsql_db_connect() -- 19:56:26.982 DEBUG [3897]: Database connection successful -- 19:56:26.982 INFO [3897]: _SERVER found -- 19:56:26.982 INFO [3897]: REMOTE_ADDR = 192.168.1.13 -- 19:56:26.982 INFO [3897]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:56:26.982 INFO [3897]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:56:26.982 INFO [3897]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:56:26.982 INFO [3897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:26.993 INFO [3897]: COREGRADE is stopping... -- 19:56:26.993 DEBUG [3897]: Closing database connection -- 19:56:26.993 SQL [3897]: pgsql_close() -- 19:56:27.336 INFO [3898]: COREGRADE is starting... -- 19:56:27.337 INFO [3898]: Version from config: 1.0 -- 19:56:27.337 DEBUG [3898]: Connecting to database... -- 19:56:27.337 DEBUG [3898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:27.337 SQL [3898]: pgsql_db_connect() -- 19:56:27.341 DEBUG [3898]: Database connection successful -- 19:56:27.341 INFO [3898]: _SERVER found -- 19:56:27.341 INFO [3898]: REMOTE_ADDR = 192.168.1.13 -- 19:56:27.341 INFO [3898]: SERVER_NAME = oameye.works.coregrade.com -- 19:56:27.341 INFO [3898]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=33s6niss2n804vrt8ptagp33gs1sg1fa -- 19:56:27.341 INFO [3898]: QUERY_STRING = /member/configure -- 19:56:27.341 INFO [3898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:27.376 INFO [3898]: COREGRADE is stopping... -- 19:56:27.376 DEBUG [3898]: Closing database connection -- 19:56:27.376 SQL [3898]: pgsql_close() -- 19:56:27.477 INFO [3898]: COREGRADE is starting... -- 19:56:27.477 INFO [3898]: Version from config: 1.0 -- 19:56:27.477 DEBUG [3898]: Connecting to database... -- 19:56:27.478 DEBUG [3898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:27.478 SQL [3898]: pgsql_db_connect() -- 19:56:27.481 DEBUG [3898]: Database connection successful -- 19:56:27.481 INFO [3898]: _SERVER found -- 19:56:27.481 INFO [3898]: REMOTE_ADDR = 192.168.1.13 -- 19:56:27.481 INFO [3898]: SERVER_NAME = oameye.works.coregrade.com -- 19:56:27.481 INFO [3898]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=33s6niss2n804vrt8ptagp33gs1sg1fa -- 19:56:27.481 INFO [3898]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:56:27.481 INFO [3898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:27.493 INFO [3898]: COREGRADE is stopping... -- 19:56:27.493 DEBUG [3898]: Closing database connection -- 19:56:27.493 SQL [3898]: pgsql_close() -- 19:56:27.632 INFO [3898]: COREGRADE is starting... -- 19:56:27.632 INFO [3898]: Version from config: 1.0 -- 19:56:27.632 DEBUG [3898]: Connecting to database... -- 19:56:27.632 DEBUG [3898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:27.632 SQL [3898]: pgsql_db_connect() -- 19:56:27.636 DEBUG [3898]: Database connection successful -- 19:56:27.636 INFO [3898]: _SERVER found -- 19:56:27.636 INFO [3898]: REMOTE_ADDR = 192.168.1.13 -- 19:56:27.636 INFO [3898]: SERVER_NAME = oameye.works.coregrade.com -- 19:56:27.636 INFO [3898]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=33s6niss2n804vrt8ptagp33gs1sg1fa -- 19:56:27.636 INFO [3898]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:56:27.636 INFO [3898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:27.647 INFO [3898]: COREGRADE is stopping... -- 19:56:27.647 DEBUG [3898]: Closing database connection -- 19:56:27.647 SQL [3898]: pgsql_close() -- 19:56:29.524 INFO [3897]: COREGRADE is starting... -- 19:56:29.524 INFO [3897]: Version from config: 1.0 -- 19:56:29.524 DEBUG [3897]: Connecting to database... -- 19:56:29.524 DEBUG [3897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:29.524 SQL [3897]: pgsql_db_connect() -- 19:56:29.528 DEBUG [3897]: Database connection successful -- 19:56:29.528 INFO [3897]: _SERVER found -- 19:56:29.528 INFO [3897]: REMOTE_ADDR = 192.168.1.13 -- 19:56:29.528 INFO [3897]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:56:29.528 INFO [3897]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:56:29.528 INFO [3897]: QUERY_STRING = /member/page -- 19:56:29.528 INFO [3897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:29.569 INFO [3897]: COREGRADE is stopping... -- 19:56:29.569 DEBUG [3897]: Closing database connection -- 19:56:29.569 SQL [3897]: pgsql_close() -- 19:56:30.191 INFO [3898]: COREGRADE is starting... -- 19:56:30.191 INFO [3898]: Version from config: 1.0 -- 19:56:30.191 DEBUG [3898]: Connecting to database... -- 19:56:30.191 DEBUG [3898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:30.191 SQL [3898]: pgsql_db_connect() -- 19:56:30.196 DEBUG [3898]: Database connection successful -- 19:56:30.196 INFO [3898]: _SERVER found -- 19:56:30.196 INFO [3898]: REMOTE_ADDR = 192.168.1.13 -- 19:56:30.196 INFO [3898]: SERVER_NAME = oameye.works.coregrade.com -- 19:56:30.196 INFO [3898]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=33s6niss2n804vrt8ptagp33gs1sg1fa -- 19:56:30.196 INFO [3898]: QUERY_STRING = /member/page -- 19:56:30.196 INFO [3898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:30.233 INFO [3898]: COREGRADE is stopping... -- 19:56:30.233 DEBUG [3898]: Closing database connection -- 19:56:30.233 SQL [3898]: pgsql_close() -- 19:56:30.463 INFO [3898]: COREGRADE is starting... -- 19:56:30.463 INFO [3898]: Version from config: 1.0 -- 19:56:30.463 DEBUG [3898]: Connecting to database... -- 19:56:30.463 DEBUG [3898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:30.463 SQL [3898]: pgsql_db_connect() -- 19:56:30.467 DEBUG [3898]: Database connection successful -- 19:56:30.467 INFO [3898]: _SERVER found -- 19:56:30.467 INFO [3898]: REMOTE_ADDR = 192.168.1.13 -- 19:56:30.467 INFO [3898]: SERVER_NAME = oameye.works.coregrade.com -- 19:56:30.467 INFO [3898]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=33s6niss2n804vrt8ptagp33gs1sg1fa -- 19:56:30.467 INFO [3898]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:56:30.467 INFO [3898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:30.478 INFO [3898]: COREGRADE is stopping... -- 19:56:30.478 DEBUG [3898]: Closing database connection -- 19:56:30.478 SQL [3898]: pgsql_close() -- 19:56:31.680 INFO [3897]: COREGRADE is starting... -- 19:56:31.680 INFO [3897]: Version from config: 1.0 -- 19:56:31.680 DEBUG [3897]: Connecting to database... -- 19:56:31.681 DEBUG [3897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:31.681 SQL [3897]: pgsql_db_connect() -- 19:56:31.685 DEBUG [3897]: Database connection successful -- 19:56:31.685 INFO [3897]: _SERVER found -- 19:56:31.685 INFO [3897]: REMOTE_ADDR = 192.168.1.13 -- 19:56:31.685 INFO [3897]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:56:31.685 INFO [3897]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:56:31.685 INFO [3897]: QUERY_STRING = /member/configure -- 19:56:31.685 INFO [3897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:31.724 INFO [3897]: COREGRADE is stopping... -- 19:56:31.724 DEBUG [3897]: Closing database connection -- 19:56:31.724 SQL [3897]: pgsql_close() -- 19:56:31.908 INFO [3897]: COREGRADE is starting... -- 19:56:31.908 INFO [3897]: Version from config: 1.0 -- 19:56:31.908 DEBUG [3897]: Connecting to database... -- 19:56:31.908 DEBUG [3897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:31.908 SQL [3897]: pgsql_db_connect() -- 19:56:31.912 DEBUG [3897]: Database connection successful -- 19:56:31.912 INFO [3897]: _SERVER found -- 19:56:31.912 INFO [3897]: REMOTE_ADDR = 192.168.1.13 -- 19:56:31.912 INFO [3897]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:56:31.912 INFO [3897]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:56:31.912 INFO [3897]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:56:31.912 INFO [3897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:31.923 INFO [3897]: COREGRADE is stopping... -- 19:56:31.923 DEBUG [3897]: Closing database connection -- 19:56:31.923 SQL [3897]: pgsql_close() -- 19:56:45.075 INFO [3899]: COREGRADE is starting... -- 19:56:45.075 INFO [3899]: Version from config: 1.0 -- 19:56:45.075 DEBUG [3899]: Connecting to database... -- 19:56:45.075 DEBUG [3899]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:45.075 SQL [3899]: pgsql_db_connect() -- 19:56:45.079 DEBUG [3899]: Database connection successful -- 19:56:45.079 INFO [3899]: _SERVER found -- 19:56:45.079 INFO [3899]: REMOTE_ADDR = 192.168.1.13 -- 19:56:45.079 INFO [3899]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:56:45.079 INFO [3899]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:56:45.079 INFO [3899]: QUERY_STRING = /member -- 19:56:45.079 INFO [3899]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:45.120 INFO [3899]: COREGRADE is stopping... -- 19:56:45.120 DEBUG [3899]: Closing database connection -- 19:56:45.120 SQL [3899]: pgsql_close() -- 19:56:45.395 INFO [3899]: COREGRADE is starting... -- 19:56:45.396 INFO [3899]: Version from config: 1.0 -- 19:56:45.396 DEBUG [3899]: Connecting to database... -- 19:56:45.396 DEBUG [3899]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:45.396 SQL [3899]: pgsql_db_connect() -- 19:56:45.400 DEBUG [3899]: Database connection successful -- 19:56:45.400 INFO [3899]: _SERVER found -- 19:56:45.400 INFO [3899]: REMOTE_ADDR = 192.168.1.13 -- 19:56:45.400 INFO [3899]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:56:45.400 INFO [3899]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:56:45.400 INFO [3899]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:56:45.400 INFO [3899]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:45.411 INFO [3899]: COREGRADE is stopping... -- 19:56:45.411 DEBUG [3899]: Closing database connection -- 19:56:45.411 SQL [3899]: pgsql_close() -- 19:57:37.080 INFO [3912]: COREGRADE is starting... -- 19:57:37.081 INFO [3912]: Version from config: 1.0 -- 19:57:37.081 DEBUG [3912]: Connecting to database... -- 19:57:37.081 DEBUG [3912]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:57:37.081 SQL [3912]: pgsql_db_connect() -- 19:57:37.085 DEBUG [3912]: Database connection successful -- 19:57:37.085 INFO [3912]: _SERVER found -- 19:57:37.085 INFO [3912]: REMOTE_ADDR = 192.168.1.13 -- 19:57:37.085 INFO [3912]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:57:37.085 INFO [3912]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:57:37.085 INFO [3912]: QUERY_STRING = /member/configure -- 19:57:37.085 INFO [3912]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:57:37.128 INFO [3912]: COREGRADE is stopping... -- 19:57:37.128 DEBUG [3912]: Closing database connection -- 19:57:37.128 SQL [3912]: pgsql_close() -- 19:57:37.469 INFO [3912]: COREGRADE is starting... -- 19:57:37.469 INFO [3912]: Version from config: 1.0 -- 19:57:37.469 DEBUG [3912]: Connecting to database... -- 19:57:37.469 DEBUG [3912]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:57:37.469 SQL [3912]: pgsql_db_connect() -- 19:57:37.473 DEBUG [3912]: Database connection successful -- 19:57:37.473 INFO [3912]: _SERVER found -- 19:57:37.473 INFO [3912]: REMOTE_ADDR = 192.168.1.13 -- 19:57:37.473 INFO [3912]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:57:37.473 INFO [3912]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:57:37.473 INFO [3912]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:57:37.473 INFO [3912]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:57:37.484 INFO [3912]: COREGRADE is stopping... -- 19:57:37.484 DEBUG [3912]: Closing database connection -- 19:57:37.484 SQL [3912]: pgsql_close() -- 19:57:41.784 INFO [3912]: COREGRADE is starting... -- 19:57:41.784 INFO [3912]: Version from config: 1.0 -- 19:57:41.784 DEBUG [3912]: Connecting to database... -- 19:57:41.784 DEBUG [3912]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:57:41.784 SQL [3912]: pgsql_db_connect() -- 19:57:41.788 DEBUG [3912]: Database connection successful -- 19:57:41.788 INFO [3912]: _SERVER found -- 19:57:41.788 INFO [3912]: REMOTE_ADDR = 192.168.1.13 -- 19:57:41.788 INFO [3912]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:57:41.788 INFO [3912]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:57:41.788 INFO [3912]: QUERY_STRING = /member/page -- 19:57:41.788 INFO [3912]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:57:41.829 INFO [3912]: COREGRADE is stopping... -- 19:57:41.829 DEBUG [3912]: Closing database connection -- 19:57:41.829 SQL [3912]: pgsql_close() -- 19:57:42.007 INFO [3912]: COREGRADE is starting... -- 19:57:42.007 INFO [3912]: Version from config: 1.0 -- 19:57:42.007 DEBUG [3912]: Connecting to database... -- 19:57:42.007 DEBUG [3912]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:57:42.007 SQL [3912]: pgsql_db_connect() -- 19:57:42.011 DEBUG [3912]: Database connection successful -- 19:57:42.011 INFO [3912]: _SERVER found -- 19:57:42.011 INFO [3912]: REMOTE_ADDR = 192.168.1.13 -- 19:57:42.011 INFO [3912]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:57:42.011 INFO [3912]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:57:42.011 INFO [3912]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:57:42.011 INFO [3912]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:57:42.022 INFO [3912]: COREGRADE is stopping... -- 19:57:42.022 DEBUG [3912]: Closing database connection -- 19:57:42.022 SQL [3912]: pgsql_close() -- 19:58:44.608 INFO [3917]: COREGRADE is starting... -- 19:58:44.608 INFO [3917]: Version from config: 1.0 -- 19:58:44.608 DEBUG [3917]: Connecting to database... -- 19:58:44.608 DEBUG [3917]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:44.608 SQL [3917]: pgsql_db_connect() -- 19:58:44.612 DEBUG [3917]: Database connection successful -- 19:58:44.612 INFO [3917]: _SERVER found -- 19:58:44.612 INFO [3917]: REMOTE_ADDR = 192.168.1.13 -- 19:58:44.612 INFO [3917]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:58:44.612 INFO [3917]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 19:58:44.612 INFO [3917]: QUERY_STRING = /member/viewCardAddAction -- 19:58:44.612 INFO [3917]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:44.644 INFO [3917]: COREGRADE is stopping... -- 19:58:44.644 DEBUG [3917]: Closing database connection -- 19:58:44.644 SQL [3917]: pgsql_close() -- 20:04:56.832 INFO [3918]: COREGRADE is starting... -- 20:04:56.833 INFO [3918]: Version from config: 1.0 -- 20:04:56.833 DEBUG [3918]: Connecting to database... -- 20:04:56.833 DEBUG [3918]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:04:56.833 SQL [3918]: pgsql_db_connect() -- 20:04:56.838 DEBUG [3918]: Database connection successful -- 20:04:56.838 INFO [3918]: _SERVER found -- 20:04:56.838 INFO [3918]: REMOTE_ADDR = 192.168.1.13 -- 20:04:56.838 INFO [3918]: SERVER_NAME = tokslaw.works.coregrade.com -- 20:04:56.838 INFO [3918]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=9ripg5ns4b3e2lvgejgi77uji3ag5c70 -- 20:04:56.838 INFO [3918]: QUERY_STRING = /auth/logout -- 20:04:56.838 INFO [3918]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:04:56.870 INFO [3918]: COREGRADE is stopping... -- 20:04:56.871 DEBUG [3918]: Closing database connection -- 20:04:56.871 SQL [3918]: pgsql_close() -- 20:04:57.226 INFO [3918]: COREGRADE is starting... -- 20:04:57.227 INFO [3918]: Version from config: 1.0 -- 20:04:57.227 DEBUG [3918]: Connecting to database... -- 20:04:57.227 DEBUG [3918]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:04:57.227 SQL [3918]: pgsql_db_connect() -- 20:04:57.231 DEBUG [3918]: Database connection successful -- 20:04:57.231 INFO [3918]: _SERVER found -- 20:04:57.231 INFO [3918]: REMOTE_ADDR = 192.168.1.13 -- 20:04:57.231 INFO [3918]: SERVER_NAME = tokslaw.works.coregrade.com -- 20:04:57.231 INFO [3918]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jgp2bgh2cqf9rmfj0v1b6t26i5pp09gf -- 20:04:57.231 INFO [3918]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:04:57.231 INFO [3918]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:04:57.242 INFO [3918]: COREGRADE is stopping... -- 20:04:57.242 DEBUG [3918]: Closing database connection -- 20:04:57.242 SQL [3918]: pgsql_close() -- 20:04:58.507 INFO [3918]: COREGRADE is starting... -- 20:04:58.508 INFO [3918]: Version from config: 1.0 -- 20:04:58.508 DEBUG [3918]: Connecting to database... -- 20:04:58.508 DEBUG [3918]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:04:58.508 SQL [3918]: pgsql_db_connect() -- 20:04:58.512 DEBUG [3918]: Database connection successful -- 20:04:58.512 INFO [3918]: _SERVER found -- 20:04:58.512 INFO [3918]: REMOTE_ADDR = 192.168.1.13 -- 20:04:58.512 INFO [3918]: SERVER_NAME = tokslaw.works.coregrade.com -- 20:04:58.512 INFO [3918]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jgp2bgh2cqf9rmfj0v1b6t26i5pp09gf -- 20:04:58.512 INFO [3918]: QUERY_STRING = /auth -- 20:04:58.512 INFO [3918]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:04:58.632 INFO [3918]: COREGRADE is starting... -- 20:04:58.632 INFO [3918]: Version from config: 1.0 -- 20:04:58.632 DEBUG [3918]: Connecting to database... -- 20:04:58.632 DEBUG [3918]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:04:58.632 SQL [3918]: pgsql_db_connect() -- 20:04:58.636 DEBUG [3918]: Database connection successful -- 20:04:58.636 INFO [3918]: _SERVER found -- 20:04:58.636 INFO [3918]: REMOTE_ADDR = 192.168.1.13 -- 20:04:58.636 INFO [3918]: SERVER_NAME = tokslaw.works.coregrade.com -- 20:04:58.636 INFO [3918]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jgp2bgh2cqf9rmfj0v1b6t26i5pp09gf -- 20:04:58.636 INFO [3918]: QUERY_STRING = /member/index -- 20:04:58.636 INFO [3918]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:04:58.676 INFO [3918]: COREGRADE is stopping... -- 20:04:58.676 DEBUG [3918]: Closing database connection -- 20:04:58.676 SQL [3918]: pgsql_close() -- 20:04:59.023 INFO [3918]: COREGRADE is starting... -- 20:04:59.023 INFO [3918]: Version from config: 1.0 -- 20:04:59.023 DEBUG [3918]: Connecting to database... -- 20:04:59.023 DEBUG [3918]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:04:59.023 SQL [3918]: pgsql_db_connect() -- 20:04:59.027 DEBUG [3918]: Database connection successful -- 20:04:59.027 INFO [3918]: _SERVER found -- 20:04:59.027 INFO [3918]: REMOTE_ADDR = 192.168.1.13 -- 20:04:59.027 INFO [3918]: SERVER_NAME = tokslaw.works.coregrade.com -- 20:04:59.027 INFO [3918]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jgp2bgh2cqf9rmfj0v1b6t26i5pp09gf -- 20:04:59.027 INFO [3918]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:04:59.027 INFO [3918]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:04:59.038 INFO [3918]: COREGRADE is stopping... -- 20:04:59.038 DEBUG [3918]: Closing database connection -- 20:04:59.038 SQL [3918]: pgsql_close() -- 20:06:24.252 INFO [3895]: COREGRADE is starting... -- 20:06:24.252 INFO [3895]: Version from config: 1.0 -- 20:06:24.252 DEBUG [3895]: Connecting to database... -- 20:06:24.252 DEBUG [3895]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:06:24.253 SQL [3895]: pgsql_db_connect() -- 20:06:24.257 DEBUG [3895]: Database connection successful -- 20:06:24.257 INFO [3895]: _SERVER found -- 20:06:24.257 INFO [3895]: REMOTE_ADDR = 192.168.1.13 -- 20:06:24.257 INFO [3895]: SERVER_NAME = tokslaw.works.coregrade.com -- 20:06:24.257 INFO [3895]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jgp2bgh2cqf9rmfj0v1b6t26i5pp09gf -- 20:06:24.257 INFO [3895]: QUERY_STRING = /member/page -- 20:06:24.257 INFO [3895]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:06:24.299 INFO [3895]: COREGRADE is stopping... -- 20:06:24.299 DEBUG [3895]: Closing database connection -- 20:06:24.299 SQL [3895]: pgsql_close() -- 20:06:24.590 INFO [3895]: COREGRADE is starting... -- 20:06:24.590 INFO [3895]: Version from config: 1.0 -- 20:06:24.590 DEBUG [3895]: Connecting to database... -- 20:06:24.590 DEBUG [3895]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:06:24.591 SQL [3895]: pgsql_db_connect() -- 20:06:24.595 DEBUG [3895]: Database connection successful -- 20:06:24.595 INFO [3895]: _SERVER found -- 20:06:24.595 INFO [3895]: REMOTE_ADDR = 192.168.1.13 -- 20:06:24.595 INFO [3895]: SERVER_NAME = tokslaw.works.coregrade.com -- 20:06:24.595 INFO [3895]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jgp2bgh2cqf9rmfj0v1b6t26i5pp09gf -- 20:06:24.595 INFO [3895]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:06:24.595 INFO [3895]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:06:24.606 INFO [3895]: COREGRADE is stopping... -- 20:06:24.606 DEBUG [3895]: Closing database connection -- 20:06:24.606 SQL [3895]: pgsql_close() -- 20:06:26.803 INFO [3895]: COREGRADE is starting... -- 20:06:26.803 INFO [3895]: Version from config: 1.0 -- 20:06:26.803 DEBUG [3895]: Connecting to database... -- 20:06:26.803 DEBUG [3895]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:06:26.803 SQL [3895]: pgsql_db_connect() -- 20:06:26.808 DEBUG [3895]: Database connection successful -- 20:06:26.808 INFO [3895]: _SERVER found -- 20:06:26.808 INFO [3895]: REMOTE_ADDR = 192.168.1.13 -- 20:06:26.808 INFO [3895]: SERVER_NAME = tokslaw.works.coregrade.com -- 20:06:26.808 INFO [3895]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jgp2bgh2cqf9rmfj0v1b6t26i5pp09gf -- 20:06:26.808 INFO [3895]: QUERY_STRING = /member/viewCardAddAction -- 20:06:26.808 INFO [3895]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:06:26.838 INFO [3895]: COREGRADE is stopping... -- 20:06:26.838 DEBUG [3895]: Closing database connection -- 20:06:26.838 SQL [3895]: pgsql_close() -- 20:06:42.266 INFO [3896]: COREGRADE is starting... -- 20:06:42.266 INFO [3896]: Version from config: 1.0 -- 20:06:42.266 DEBUG [3896]: Connecting to database... -- 20:06:42.266 DEBUG [3896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:06:42.266 SQL [3896]: pgsql_db_connect() -- 20:06:42.270 DEBUG [3896]: Database connection successful -- 20:06:42.270 INFO [3896]: _SERVER found -- 20:06:42.270 INFO [3896]: REMOTE_ADDR = 192.168.1.13 -- 20:06:42.270 INFO [3896]: SERVER_NAME = tokslaw.works.coregrade.com -- 20:06:42.270 INFO [3896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jgp2bgh2cqf9rmfj0v1b6t26i5pp09gf -- 20:06:42.270 INFO [3896]: QUERY_STRING = /member -- 20:06:42.270 INFO [3896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:06:42.310 INFO [3896]: COREGRADE is stopping... -- 20:06:42.310 DEBUG [3896]: Closing database connection -- 20:06:42.310 SQL [3896]: pgsql_close() -- 20:06:42.552 INFO [3896]: COREGRADE is starting... -- 20:06:42.552 INFO [3896]: Version from config: 1.0 -- 20:06:42.552 DEBUG [3896]: Connecting to database... -- 20:06:42.552 DEBUG [3896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:06:42.552 SQL [3896]: pgsql_db_connect() -- 20:06:42.556 DEBUG [3896]: Database connection successful -- 20:06:42.556 INFO [3896]: _SERVER found -- 20:06:42.556 INFO [3896]: REMOTE_ADDR = 192.168.1.13 -- 20:06:42.556 INFO [3896]: SERVER_NAME = tokslaw.works.coregrade.com -- 20:06:42.556 INFO [3896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jgp2bgh2cqf9rmfj0v1b6t26i5pp09gf -- 20:06:42.556 INFO [3896]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:06:42.556 INFO [3896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:06:42.581 INFO [3896]: COREGRADE is stopping... -- 20:06:42.581 DEBUG [3896]: Closing database connection -- 20:06:42.581 SQL [3896]: pgsql_close() -- 20:06:45.127 INFO [3896]: COREGRADE is starting... -- 20:06:45.128 INFO [3896]: Version from config: 1.0 -- 20:06:45.128 DEBUG [3896]: Connecting to database... -- 20:06:45.128 DEBUG [3896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:06:45.128 SQL [3896]: pgsql_db_connect() -- 20:06:45.132 DEBUG [3896]: Database connection successful -- 20:06:45.132 INFO [3896]: _SERVER found -- 20:06:45.132 INFO [3896]: REMOTE_ADDR = 192.168.1.13 -- 20:06:45.132 INFO [3896]: SERVER_NAME = tokslaw.works.coregrade.com -- 20:06:45.132 INFO [3896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jgp2bgh2cqf9rmfj0v1b6t26i5pp09gf -- 20:06:45.132 INFO [3896]: QUERY_STRING = /member/page -- 20:06:45.132 INFO [3896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:06:45.172 INFO [3896]: COREGRADE is stopping... -- 20:06:45.173 DEBUG [3896]: Closing database connection -- 20:06:45.173 SQL [3896]: pgsql_close() -- 20:06:45.686 INFO [3896]: COREGRADE is starting... -- 20:06:45.686 INFO [3896]: Version from config: 1.0 -- 20:06:45.686 DEBUG [3896]: Connecting to database... -- 20:06:45.686 DEBUG [3896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:06:45.686 SQL [3896]: pgsql_db_connect() -- 20:06:45.690 DEBUG [3896]: Database connection successful -- 20:06:45.690 INFO [3896]: _SERVER found -- 20:06:45.690 INFO [3896]: REMOTE_ADDR = 192.168.1.13 -- 20:06:45.690 INFO [3896]: SERVER_NAME = tokslaw.works.coregrade.com -- 20:06:45.690 INFO [3896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jgp2bgh2cqf9rmfj0v1b6t26i5pp09gf -- 20:06:45.690 INFO [3896]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:06:45.690 INFO [3896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:06:45.701 INFO [3896]: COREGRADE is stopping... -- 20:06:45.701 DEBUG [3896]: Closing database connection -- 20:06:45.701 SQL [3896]: pgsql_close() -- 20:06:50.627 INFO [3896]: COREGRADE is starting... -- 20:06:50.627 INFO [3896]: Version from config: 1.0 -- 20:06:50.627 DEBUG [3896]: Connecting to database... -- 20:06:50.627 DEBUG [3896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:06:50.627 SQL [3896]: pgsql_db_connect() -- 20:06:50.631 DEBUG [3896]: Database connection successful -- 20:06:50.631 INFO [3896]: _SERVER found -- 20:06:50.631 INFO [3896]: REMOTE_ADDR = 192.168.1.13 -- 20:06:50.631 INFO [3896]: SERVER_NAME = tokslaw.works.coregrade.com -- 20:06:50.631 INFO [3896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jgp2bgh2cqf9rmfj0v1b6t26i5pp09gf -- 20:06:50.631 INFO [3896]: QUERY_STRING = /member -- 20:06:50.631 INFO [3896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:06:50.671 INFO [3896]: COREGRADE is stopping... -- 20:06:50.671 DEBUG [3896]: Closing database connection -- 20:06:50.671 SQL [3896]: pgsql_close() -- 20:06:50.996 INFO [3896]: COREGRADE is starting... -- 20:06:50.996 INFO [3896]: Version from config: 1.0 -- 20:06:50.996 DEBUG [3896]: Connecting to database... -- 20:06:50.996 DEBUG [3896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:06:50.996 SQL [3896]: pgsql_db_connect() -- 20:06:51.000 DEBUG [3896]: Database connection successful -- 20:06:51.000 INFO [3896]: _SERVER found -- 20:06:51.000 INFO [3896]: REMOTE_ADDR = 192.168.1.13 -- 20:06:51.000 INFO [3896]: SERVER_NAME = tokslaw.works.coregrade.com -- 20:06:51.000 INFO [3896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jgp2bgh2cqf9rmfj0v1b6t26i5pp09gf -- 20:06:51.000 INFO [3896]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:06:51.000 INFO [3896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:06:51.011 INFO [3896]: COREGRADE is stopping... -- 20:06:51.011 DEBUG [3896]: Closing database connection -- 20:06:51.011 SQL [3896]: pgsql_close() -- 20:06:51.626 INFO [3896]: COREGRADE is starting... -- 20:06:51.626 INFO [3896]: Version from config: 1.0 -- 20:06:51.626 DEBUG [3896]: Connecting to database... -- 20:06:51.626 DEBUG [3896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:06:51.626 SQL [3896]: pgsql_db_connect() -- 20:06:51.630 DEBUG [3896]: Database connection successful -- 20:06:51.630 INFO [3896]: _SERVER found -- 20:06:51.630 INFO [3896]: REMOTE_ADDR = 192.168.1.13 -- 20:06:51.630 INFO [3896]: SERVER_NAME = tokslaw.works.coregrade.com -- 20:06:51.630 INFO [3896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jgp2bgh2cqf9rmfj0v1b6t26i5pp09gf -- 20:06:51.630 INFO [3896]: QUERY_STRING = /member/page -- 20:06:51.630 INFO [3896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:06:51.671 INFO [3896]: COREGRADE is stopping... -- 20:06:51.671 DEBUG [3896]: Closing database connection -- 20:06:51.671 SQL [3896]: pgsql_close() -- 20:06:52.145 INFO [3896]: COREGRADE is starting... -- 20:06:52.145 INFO [3896]: Version from config: 1.0 -- 20:06:52.145 DEBUG [3896]: Connecting to database... -- 20:06:52.145 DEBUG [3896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:06:52.145 SQL [3896]: pgsql_db_connect() -- 20:06:52.149 DEBUG [3896]: Database connection successful -- 20:06:52.149 INFO [3896]: _SERVER found -- 20:06:52.149 INFO [3896]: REMOTE_ADDR = 192.168.1.13 -- 20:06:52.149 INFO [3896]: SERVER_NAME = tokslaw.works.coregrade.com -- 20:06:52.149 INFO [3896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jgp2bgh2cqf9rmfj0v1b6t26i5pp09gf -- 20:06:52.149 INFO [3896]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:06:52.149 INFO [3896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:06:52.160 INFO [3896]: COREGRADE is stopping... -- 20:06:52.160 DEBUG [3896]: Closing database connection -- 20:06:52.160 SQL [3896]: pgsql_close() -- 20:21:12.009 INFO [3898]: COREGRADE is starting... -- 20:21:12.010 INFO [3898]: Version from config: 1.0 -- 20:21:12.010 DEBUG [3898]: Connecting to database... -- 20:21:12.010 DEBUG [3898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:21:12.010 SQL [3898]: pgsql_db_connect() -- 20:21:12.014 DEBUG [3898]: Database connection successful -- 20:21:12.014 INFO [3898]: _SERVER found -- 20:21:12.014 INFO [3898]: REMOTE_ADDR = 192.168.1.13 -- 20:21:12.014 INFO [3898]: SERVER_NAME = oameye.works.coregrade.com -- 20:21:12.014 INFO [3898]: QUERY_STRING = /solr/admin/info/system -- 20:21:12.014 INFO [3898]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 20:21:12.027 INFO [3898]: COREGRADE is stopping... -- 20:21:12.027 DEBUG [3898]: Closing database connection -- 20:21:12.027 SQL [3898]: pgsql_close() -- 20:23:58.790 INFO [3897]: COREGRADE is starting... -- 20:23:58.790 INFO [3897]: Version from config: 1.0 -- 20:23:58.790 DEBUG [3897]: Connecting to database... -- 20:23:58.791 DEBUG [3897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:23:58.791 SQL [3897]: pgsql_db_connect() -- 20:23:58.795 DEBUG [3897]: Database connection successful -- 20:23:58.795 INFO [3897]: _SERVER found -- 20:23:58.795 INFO [3897]: REMOTE_ADDR = 192.168.1.13 -- 20:23:58.795 INFO [3897]: SERVER_NAME = oameye.works.coregrade.com -- 20:23:58.795 INFO [3897]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 20:23:58.795 INFO [3897]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 20:23:58.833 INFO [3897]: COREGRADE is stopping... -- 20:23:58.833 DEBUG [3897]: Closing database connection -- 20:23:58.833 SQL [3897]: pgsql_close() -- 20:23:59.332 INFO [3899]: COREGRADE is starting... -- 20:23:59.332 INFO [3899]: Version from config: 1.0 -- 20:23:59.332 DEBUG [3899]: Connecting to database... -- 20:23:59.332 DEBUG [3899]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:23:59.332 SQL [3899]: pgsql_db_connect() -- 20:23:59.336 DEBUG [3899]: Database connection successful -- 20:23:59.336 INFO [3899]: _SERVER found -- 20:23:59.336 INFO [3899]: REMOTE_ADDR = 192.168.1.13 -- 20:23:59.336 INFO [3899]: SERVER_NAME = oameye.works.coregrade.com -- 20:23:59.336 INFO [3899]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 20:23:59.336 INFO [3899]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 20:23:59.373 INFO [3899]: COREGRADE is stopping... -- 20:23:59.373 DEBUG [3899]: Closing database connection -- 20:23:59.373 SQL [3899]: pgsql_close() -- 20:25:22.845 INFO [3912]: COREGRADE is starting... -- 20:25:22.845 INFO [3912]: Version from config: 1.0 -- 20:25:22.845 DEBUG [3912]: Connecting to database... -- 20:25:22.845 DEBUG [3912]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:25:22.845 SQL [3912]: pgsql_db_connect() -- 20:25:22.849 DEBUG [3912]: Database connection successful -- 20:25:22.849 INFO [3912]: _SERVER found -- 20:25:22.849 INFO [3912]: REMOTE_ADDR = 192.168.1.13 -- 20:25:22.849 INFO [3912]: SERVER_NAME = oameye.works.coregrade.com -- 20:25:22.849 INFO [3912]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 20:25:22.849 INFO [3912]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 20:25:22.888 INFO [3912]: COREGRADE is stopping... -- 20:25:22.888 DEBUG [3912]: Closing database connection -- 20:25:22.888 SQL [3912]: pgsql_close() -- 23:13:48.523 INFO [3917]: COREGRADE is starting... -- 23:13:48.523 INFO [3917]: Version from config: 1.0 -- 23:13:48.523 DEBUG [3917]: Connecting to database... -- 23:13:48.523 DEBUG [3917]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:13:48.523 SQL [3917]: pgsql_db_connect() -- 23:13:48.528 DEBUG [3917]: Database connection successful -- 23:13:48.528 INFO [3917]: _SERVER found -- 23:13:48.528 INFO [3917]: REMOTE_ADDR = 192.168.1.13 -- 23:13:48.528 INFO [3917]: SERVER_NAME = oameye.works.coregrade.com -- 23:13:48.528 INFO [3917]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420 -- 23:13:48.528 INFO [3917]: QUERY_STRING = /auth -- 23:13:48.528 INFO [3917]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:13:48.565 INFO [3917]: COREGRADE is stopping... -- 23:13:48.565 DEBUG [3917]: Closing database connection -- 23:13:48.565 SQL [3917]: pgsql_close() -- 23:13:53.076 INFO [3917]: COREGRADE is starting... -- 23:13:53.076 INFO [3917]: Version from config: 1.0 -- 23:13:53.076 DEBUG [3917]: Connecting to database... -- 23:13:53.076 DEBUG [3917]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:13:53.076 SQL [3917]: pgsql_db_connect() -- 23:13:53.080 DEBUG [3917]: Database connection successful -- 23:13:53.080 INFO [3917]: _SERVER found -- 23:13:53.080 INFO [3917]: REMOTE_ADDR = 192.168.1.13 -- 23:13:53.080 INFO [3917]: SERVER_NAME = oameye.works.coregrade.com -- 23:13:53.080 INFO [3917]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=246ti4igpuhsnjrug8m2duo84up17enn -- 23:13:53.080 INFO [3917]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 23:13:53.080 INFO [3917]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:13:53.092 INFO [3917]: COREGRADE is stopping... -- 23:13:53.092 DEBUG [3917]: Closing database connection -- 23:13:53.092 SQL [3917]: pgsql_close() -- 23:14:30.988 INFO [3918]: COREGRADE is starting... -- 23:14:30.988 INFO [3918]: Version from config: 1.0 -- 23:14:30.988 DEBUG [3918]: Connecting to database... -- 23:14:30.988 DEBUG [3918]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:14:30.989 SQL [3918]: pgsql_db_connect() -- 23:14:30.993 DEBUG [3918]: Database connection successful -- 23:14:30.993 INFO [3918]: _SERVER found -- 23:14:30.993 INFO [3918]: REMOTE_ADDR = 192.168.1.13 -- 23:14:30.993 INFO [3918]: SERVER_NAME = oameye.works.coregrade.com -- 23:14:30.993 INFO [3918]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=246ti4igpuhsnjrug8m2duo84up17enn -- 23:14:30.993 INFO [3918]: QUERY_STRING = /auth -- 23:14:30.993 INFO [3918]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:14:31.026 INFO [3918]: COREGRADE is stopping... -- 23:14:31.026 DEBUG [3918]: Closing database connection -- 23:14:31.026 SQL [3918]: pgsql_close() -- 23:14:31.098 INFO [3918]: COREGRADE is starting... -- 23:14:31.098 INFO [3918]: Version from config: 1.0 -- 23:14:31.098 DEBUG [3918]: Connecting to database... -- 23:14:31.099 DEBUG [3918]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:14:31.099 SQL [3918]: pgsql_db_connect() -- 23:14:31.109 INFO [3895]: COREGRADE is starting... -- 23:14:31.109 INFO [3895]: Version from config: 1.0 -- 23:14:31.109 DEBUG [3895]: Connecting to database... -- 23:14:31.109 DEBUG [3895]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:14:31.109 SQL [3895]: pgsql_db_connect() -- 23:14:31.102 DEBUG [3918]: Database connection successful -- 23:14:31.102 INFO [3918]: _SERVER found -- 23:14:31.102 INFO [3918]: REMOTE_ADDR = 192.168.1.13 -- 23:14:31.102 INFO [3918]: SERVER_NAME = oameye.works.coregrade.com -- 23:14:31.102 INFO [3918]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=246ti4igpuhsnjrug8m2duo84up17enn -- 23:14:31.102 INFO [3918]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 23:14:31.102 INFO [3918]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:14:31.114 INFO [3918]: COREGRADE is stopping... -- 23:14:31.114 DEBUG [3918]: Closing database connection -- 23:14:31.114 SQL [3918]: pgsql_close() -- 23:14:31.113 DEBUG [3895]: Database connection successful -- 23:14:31.113 INFO [3895]: _SERVER found -- 23:14:31.113 INFO [3895]: REMOTE_ADDR = 192.168.1.13 -- 23:14:31.113 INFO [3895]: SERVER_NAME = oameye.works.coregrade.com -- 23:14:31.113 INFO [3895]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.870822586.1581103420; ci_session=246ti4igpuhsnjrug8m2duo84up17enn -- 23:14:31.113 INFO [3895]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:14:31.113 INFO [3895]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:14:31.125 INFO [3895]: COREGRADE is stopping... -- 23:14:31.125 DEBUG [3895]: Closing database connection -- 23:14:31.125 SQL [3895]: pgsql_close() -- 23:21:19.753 INFO [3896]: COREGRADE is starting... -- 23:21:19.753 INFO [3896]: Version from config: 1.0 -- 23:21:19.753 DEBUG [3896]: Connecting to database... -- 23:21:19.753 DEBUG [3896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:21:19.753 SQL [3896]: pgsql_db_connect() -- 23:21:19.758 DEBUG [3896]: Database connection successful -- 23:21:19.758 INFO [3896]: _SERVER found -- 23:21:19.758 INFO [3896]: REMOTE_ADDR = 192.168.1.13 -- 23:21:19.758 INFO [3896]: SERVER_NAME = oameye.works.coregrade.com -- 23:21:19.758 INFO [3896]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 23:21:19.758 INFO [3896]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 23:21:19.770 INFO [3896]: COREGRADE is stopping... -- 23:21:19.770 DEBUG [3896]: Closing database connection -- 23:21:19.770 SQL [3896]: pgsql_close() -- 00:01:31.798 INFO [3898]: COREGRADE is starting... -- 00:01:31.798 INFO [3898]: Version from config: 1.0 -- 00:01:31.798 DEBUG [3898]: Connecting to database... -- 00:01:31.798 DEBUG [3898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:01:31.798 SQL [3898]: pgsql_db_connect() -- 00:01:31.803 DEBUG [3898]: Database connection successful -- 00:01:31.803 INFO [3898]: _SERVER found -- 00:01:31.803 INFO [3898]: REMOTE_ADDR = 192.168.1.13 -- 00:01:31.803 INFO [3898]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:01:31.803 INFO [3898]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361 -- 00:01:31.803 INFO [3898]: QUERY_STRING = /auth -- 00:01:31.803 INFO [3898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:01:31.837 INFO [3898]: COREGRADE is stopping... -- 00:01:31.837 DEBUG [3898]: Closing database connection -- 00:01:31.837 SQL [3898]: pgsql_close() -- 00:01:32.356 INFO [3898]: COREGRADE is starting... -- 00:01:32.356 INFO [3898]: Version from config: 1.0 -- 00:01:32.356 DEBUG [3898]: Connecting to database... -- 00:01:32.356 DEBUG [3898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:01:32.356 SQL [3898]: pgsql_db_connect() -- 00:01:32.358 INFO [3897]: COREGRADE is starting... -- 00:01:32.359 INFO [3897]: Version from config: 1.0 -- 00:01:32.359 DEBUG [3897]: Connecting to database... -- 00:01:32.359 DEBUG [3897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:01:32.359 SQL [3897]: pgsql_db_connect() -- 00:01:32.360 DEBUG [3898]: Database connection successful -- 00:01:32.360 INFO [3898]: _SERVER found -- 00:01:32.360 INFO [3898]: REMOTE_ADDR = 192.168.1.13 -- 00:01:32.360 INFO [3898]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:01:32.360 INFO [3898]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vt9urgpcb1a007hu7aj2b44ldt97umsg -- 00:01:32.360 INFO [3898]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:01:32.360 INFO [3898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:01:32.372 INFO [3898]: COREGRADE is stopping... -- 00:01:32.372 DEBUG [3898]: Closing database connection -- 00:01:32.372 SQL [3898]: pgsql_close() -- 00:01:32.363 DEBUG [3897]: Database connection successful -- 00:01:32.363 INFO [3897]: _SERVER found -- 00:01:32.363 INFO [3897]: REMOTE_ADDR = 192.168.1.13 -- 00:01:32.363 INFO [3897]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:01:32.363 INFO [3897]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vt9urgpcb1a007hu7aj2b44ldt97umsg -- 00:01:32.363 INFO [3897]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 00:01:32.363 INFO [3897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:01:32.374 INFO [3897]: COREGRADE is stopping... -- 00:01:32.374 DEBUG [3897]: Closing database connection -- 00:01:32.374 SQL [3897]: pgsql_close() -- 00:02:10.572 INFO [3899]: COREGRADE is starting... -- 00:02:10.572 INFO [3899]: Version from config: 1.0 -- 00:02:10.572 DEBUG [3899]: Connecting to database... -- 00:02:10.572 DEBUG [3899]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:10.572 SQL [3899]: pgsql_db_connect() -- 00:02:10.576 DEBUG [3899]: Database connection successful -- 00:02:10.576 INFO [3899]: _SERVER found -- 00:02:10.576 INFO [3899]: REMOTE_ADDR = 192.168.1.13 -- 00:02:10.576 INFO [3899]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:02:10.576 INFO [3899]: HTTP_COOKIE = _ga=GA1.2.1284960188.1579479911 -- 00:02:10.576 INFO [3899]: QUERY_STRING = -- 00:02:10.576 INFO [3899]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:02:10.609 INFO [3899]: COREGRADE is stopping... -- 00:02:10.609 DEBUG [3899]: Closing database connection -- 00:02:10.609 SQL [3899]: pgsql_close() -- 00:02:11.418 INFO [3918]: COREGRADE is starting... -- 00:02:11.418 INFO [3918]: Version from config: 1.0 -- 00:02:11.418 DEBUG [3918]: Connecting to database... -- 00:02:11.418 DEBUG [3918]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:11.418 SQL [3918]: pgsql_db_connect() -- 00:02:11.422 DEBUG [3918]: Database connection successful -- 00:02:11.422 INFO [3918]: _SERVER found -- 00:02:11.422 INFO [3918]: REMOTE_ADDR = 192.168.1.13 -- 00:02:11.422 INFO [3918]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:02:11.422 INFO [3918]: HTTP_COOKIE = _ga=GA1.2.1284960188.1579479911; ci_session=l0qtig6286mv2k67e8riqgd1uae6qps2; _gid=GA1.2.610649397.1581224532; _gat_gtag_UA_54829827_2=1 -- 00:02:11.422 INFO [3918]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 00:02:11.422 INFO [3918]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:02:11.434 INFO [3918]: COREGRADE is stopping... -- 00:02:11.434 DEBUG [3918]: Closing database connection -- 00:02:11.434 SQL [3918]: pgsql_close() -- 00:02:11.467 INFO [3912]: COREGRADE is starting... -- 00:02:11.468 INFO [3912]: Version from config: 1.0 -- 00:02:11.468 DEBUG [3912]: Connecting to database... -- 00:02:11.468 DEBUG [3912]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:11.468 SQL [3912]: pgsql_db_connect() -- 00:02:11.472 DEBUG [3912]: Database connection successful -- 00:02:11.472 INFO [3912]: _SERVER found -- 00:02:11.472 INFO [3912]: REMOTE_ADDR = 192.168.1.13 -- 00:02:11.472 INFO [3912]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:02:11.472 INFO [3912]: HTTP_COOKIE = _ga=GA1.2.1284960188.1579479911; ci_session=l0qtig6286mv2k67e8riqgd1uae6qps2; _gid=GA1.2.610649397.1581224532; _gat_gtag_UA_54829827_2=1 -- 00:02:11.472 INFO [3912]: QUERY_STRING = /assets/img/footer_1.jpg -- 00:02:11.472 INFO [3912]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:02:11.484 INFO [3912]: COREGRADE is stopping... -- 00:02:11.484 DEBUG [3912]: Closing database connection -- 00:02:11.484 SQL [3912]: pgsql_close() -- 00:02:17.006 INFO [3895]: COREGRADE is starting... -- 00:02:17.006 INFO [3895]: Version from config: 1.0 -- 00:02:17.006 DEBUG [3895]: Connecting to database... -- 00:02:17.006 DEBUG [3895]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:17.006 SQL [3895]: pgsql_db_connect() -- 00:02:17.010 DEBUG [3895]: Database connection successful -- 00:02:17.010 INFO [3895]: _SERVER found -- 00:02:17.010 INFO [3895]: REMOTE_ADDR = 192.168.1.13 -- 00:02:17.010 INFO [3895]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:02:17.010 INFO [3895]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vt9urgpcb1a007hu7aj2b44ldt97umsg -- 00:02:17.010 INFO [3895]: QUERY_STRING = /auth -- 00:02:17.010 INFO [3895]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:02:17.087 INFO [3895]: COREGRADE is starting... -- 00:02:17.087 INFO [3895]: Version from config: 1.0 -- 00:02:17.087 DEBUG [3895]: Connecting to database... -- 00:02:17.087 DEBUG [3895]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:17.087 SQL [3895]: pgsql_db_connect() -- 00:02:17.091 DEBUG [3895]: Database connection successful -- 00:02:17.091 INFO [3895]: _SERVER found -- 00:02:17.091 INFO [3895]: REMOTE_ADDR = 192.168.1.13 -- 00:02:17.091 INFO [3895]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:02:17.091 INFO [3895]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vt9urgpcb1a007hu7aj2b44ldt97umsg -- 00:02:17.091 INFO [3895]: QUERY_STRING = /member/index -- 00:02:17.091 INFO [3895]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:02:17.130 INFO [3895]: COREGRADE is stopping... -- 00:02:17.130 DEBUG [3895]: Closing database connection -- 00:02:17.130 SQL [3895]: pgsql_close() -- 00:02:17.669 INFO [5277]: COREGRADE is starting... -- 00:02:17.669 INFO [5277]: Version from config: 1.0 -- 00:02:17.669 DEBUG [5277]: Connecting to database... -- 00:02:17.669 DEBUG [5277]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:17.669 SQL [5277]: pgsql_db_connect() -- 00:02:17.673 DEBUG [5277]: Database connection successful -- 00:02:17.673 INFO [5277]: _SERVER found -- 00:02:17.673 INFO [5277]: REMOTE_ADDR = 192.168.1.13 -- 00:02:17.673 INFO [5277]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:02:17.673 INFO [5277]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vt9urgpcb1a007hu7aj2b44ldt97umsg -- 00:02:17.673 INFO [5277]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:02:17.673 INFO [5277]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:02:17.689 INFO [5277]: COREGRADE is stopping... -- 00:02:17.689 DEBUG [5277]: Closing database connection -- 00:02:17.689 SQL [5277]: pgsql_close() -- 00:02:17.883 INFO [5277]: COREGRADE is starting... -- 00:02:17.883 INFO [5277]: Version from config: 1.0 -- 00:02:17.883 DEBUG [5277]: Connecting to database... -- 00:02:17.883 DEBUG [5277]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:17.883 SQL [5277]: pgsql_db_connect() -- 00:02:17.887 DEBUG [5277]: Database connection successful -- 00:02:17.887 INFO [5277]: _SERVER found -- 00:02:17.887 INFO [5277]: REMOTE_ADDR = 192.168.1.13 -- 00:02:17.887 INFO [5277]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:02:17.887 INFO [5277]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vt9urgpcb1a007hu7aj2b44ldt97umsg -- 00:02:17.887 INFO [5277]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:02:17.887 INFO [5277]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:02:17.899 INFO [5277]: COREGRADE is stopping... -- 00:02:17.899 DEBUG [5277]: Closing database connection -- 00:02:17.899 SQL [5277]: pgsql_close() -- 00:02:42.131 INFO [3917]: COREGRADE is starting... -- 00:02:42.131 INFO [3917]: Version from config: 1.0 -- 00:02:42.131 DEBUG [3917]: Connecting to database... -- 00:02:42.131 DEBUG [3917]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:42.131 SQL [3917]: pgsql_db_connect() -- 00:02:42.136 DEBUG [3917]: Database connection successful -- 00:02:42.136 INFO [3917]: _SERVER found -- 00:02:42.136 INFO [3917]: REMOTE_ADDR = 192.168.1.13 -- 00:02:42.136 INFO [3917]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:02:42.136 INFO [3917]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vt9urgpcb1a007hu7aj2b44ldt97umsg -- 00:02:42.136 INFO [3917]: QUERY_STRING = /member/page -- 00:02:42.136 INFO [3917]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:02:42.180 INFO [3917]: COREGRADE is stopping... -- 00:02:42.180 DEBUG [3917]: Closing database connection -- 00:02:42.180 SQL [3917]: pgsql_close() -- 00:02:42.774 INFO [3917]: COREGRADE is starting... -- 00:02:42.774 INFO [3917]: Version from config: 1.0 -- 00:02:42.774 DEBUG [3917]: Connecting to database... -- 00:02:42.774 DEBUG [3917]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:42.775 SQL [3917]: pgsql_db_connect() -- 00:02:42.779 DEBUG [3917]: Database connection successful -- 00:02:42.779 INFO [3917]: _SERVER found -- 00:02:42.779 INFO [3917]: REMOTE_ADDR = 192.168.1.13 -- 00:02:42.779 INFO [3917]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:02:42.779 INFO [3917]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vt9urgpcb1a007hu7aj2b44ldt97umsg -- 00:02:42.779 INFO [3917]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:02:42.779 INFO [3917]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:02:42.790 INFO [3917]: COREGRADE is stopping... -- 00:02:42.790 DEBUG [3917]: Closing database connection -- 00:02:42.790 SQL [3917]: pgsql_close() -- 00:02:43.135 INFO [3917]: COREGRADE is starting... -- 00:02:43.136 INFO [3917]: Version from config: 1.0 -- 00:02:43.136 DEBUG [3917]: Connecting to database... -- 00:02:43.136 DEBUG [3917]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:43.136 SQL [3917]: pgsql_db_connect() -- 00:02:43.140 DEBUG [3917]: Database connection successful -- 00:02:43.140 INFO [3917]: _SERVER found -- 00:02:43.140 INFO [3917]: REMOTE_ADDR = 192.168.1.13 -- 00:02:43.140 INFO [3917]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:02:43.140 INFO [3917]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vt9urgpcb1a007hu7aj2b44ldt97umsg -- 00:02:43.140 INFO [3917]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:02:43.140 INFO [3917]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:02:43.151 INFO [3917]: COREGRADE is stopping... -- 00:02:43.151 DEBUG [3917]: Closing database connection -- 00:02:43.151 SQL [3917]: pgsql_close() -- 00:06:23.579 INFO [5284]: COREGRADE is starting... -- 00:06:23.579 INFO [5284]: Version from config: 1.0 -- 00:06:23.579 DEBUG [5284]: Connecting to database... -- 00:06:23.579 DEBUG [5284]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:06:23.579 SQL [5284]: pgsql_db_connect() -- 00:06:23.583 DEBUG [5284]: Database connection successful -- 00:06:23.583 INFO [5284]: _SERVER found -- 00:06:23.583 INFO [5284]: REMOTE_ADDR = 192.168.1.13 -- 00:06:23.583 INFO [5284]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:06:23.583 INFO [5284]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vt9urgpcb1a007hu7aj2b44ldt97umsg -- 00:06:23.583 INFO [5284]: QUERY_STRING = /member/page -- 00:06:23.583 INFO [5284]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:06:23.632 INFO [5284]: COREGRADE is stopping... -- 00:06:23.633 DEBUG [5284]: Closing database connection -- 00:06:23.633 SQL [5284]: pgsql_close() -- 00:06:24.118 INFO [5284]: COREGRADE is starting... -- 00:06:24.119 INFO [5284]: Version from config: 1.0 -- 00:06:24.119 DEBUG [5284]: Connecting to database... -- 00:06:24.119 DEBUG [5284]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:06:24.119 SQL [5284]: pgsql_db_connect() -- 00:06:24.123 DEBUG [5284]: Database connection successful -- 00:06:24.123 INFO [5284]: _SERVER found -- 00:06:24.123 INFO [5284]: REMOTE_ADDR = 192.168.1.13 -- 00:06:24.123 INFO [5284]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:06:24.123 INFO [5284]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vt9urgpcb1a007hu7aj2b44ldt97umsg -- 00:06:24.123 INFO [5284]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:06:24.123 INFO [5284]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:06:24.134 INFO [5284]: COREGRADE is stopping... -- 00:06:24.134 DEBUG [5284]: Closing database connection -- 00:06:24.134 SQL [5284]: pgsql_close() -- 00:06:24.406 INFO [5284]: COREGRADE is starting... -- 00:06:24.406 INFO [5284]: Version from config: 1.0 -- 00:06:24.406 DEBUG [5284]: Connecting to database... -- 00:06:24.406 DEBUG [5284]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:06:24.406 SQL [5284]: pgsql_db_connect() -- 00:06:24.410 DEBUG [5284]: Database connection successful -- 00:06:24.410 INFO [5284]: _SERVER found -- 00:06:24.410 INFO [5284]: REMOTE_ADDR = 192.168.1.13 -- 00:06:24.410 INFO [5284]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:06:24.410 INFO [5284]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vt9urgpcb1a007hu7aj2b44ldt97umsg -- 00:06:24.410 INFO [5284]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:06:24.410 INFO [5284]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:06:24.421 INFO [5284]: COREGRADE is stopping... -- 00:06:24.421 DEBUG [5284]: Closing database connection -- 00:06:24.421 SQL [5284]: pgsql_close() -- 00:08:46.753 INFO [5287]: COREGRADE is starting... -- 00:08:46.753 INFO [5287]: Version from config: 1.0 -- 00:08:46.753 DEBUG [5287]: Connecting to database... -- 00:08:46.754 DEBUG [5287]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:46.754 SQL [5287]: pgsql_db_connect() -- 00:08:46.758 DEBUG [5287]: Database connection successful -- 00:08:46.758 INFO [5287]: _SERVER found -- 00:08:46.758 INFO [5287]: REMOTE_ADDR = 192.168.1.13 -- 00:08:46.758 INFO [5287]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:08:46.758 INFO [5287]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vt9urgpcb1a007hu7aj2b44ldt97umsg -- 00:08:46.758 INFO [5287]: QUERY_STRING = /member/page -- 00:08:46.758 INFO [5287]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:08:46.809 INFO [5287]: COREGRADE is stopping... -- 00:08:46.809 DEBUG [5287]: Closing database connection -- 00:08:46.809 SQL [5287]: pgsql_close() -- 00:08:47.490 INFO [5287]: COREGRADE is starting... -- 00:08:47.491 INFO [5287]: Version from config: 1.0 -- 00:08:47.491 DEBUG [5287]: Connecting to database... -- 00:08:47.491 DEBUG [5287]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:47.491 SQL [5287]: pgsql_db_connect() -- 00:08:47.495 DEBUG [5287]: Database connection successful -- 00:08:47.495 INFO [5287]: _SERVER found -- 00:08:47.495 INFO [5287]: REMOTE_ADDR = 192.168.1.13 -- 00:08:47.495 INFO [5287]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:08:47.495 INFO [5287]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jremgvfv72gv7bm140l0tokbj1v9dsre -- 00:08:47.495 INFO [5287]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:08:47.495 INFO [5287]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:08:47.506 INFO [5287]: COREGRADE is stopping... -- 00:08:47.506 DEBUG [5287]: Closing database connection -- 00:08:47.506 SQL [5287]: pgsql_close() -- 00:08:47.723 INFO [5287]: COREGRADE is starting... -- 00:08:47.724 INFO [5287]: Version from config: 1.0 -- 00:08:47.724 DEBUG [5287]: Connecting to database... -- 00:08:47.724 DEBUG [5287]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:47.724 SQL [5287]: pgsql_db_connect() -- 00:08:47.728 DEBUG [5287]: Database connection successful -- 00:08:47.728 INFO [5287]: _SERVER found -- 00:08:47.728 INFO [5287]: REMOTE_ADDR = 192.168.1.13 -- 00:08:47.728 INFO [5287]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:08:47.728 INFO [5287]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jremgvfv72gv7bm140l0tokbj1v9dsre -- 00:08:47.728 INFO [5287]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:08:47.728 INFO [5287]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:08:47.739 INFO [5287]: COREGRADE is stopping... -- 00:08:47.739 DEBUG [5287]: Closing database connection -- 00:08:47.739 SQL [5287]: pgsql_close() -- 00:09:42.336 INFO [5288]: COREGRADE is starting... -- 00:09:42.336 INFO [5288]: Version from config: 1.0 -- 00:09:42.336 DEBUG [5288]: Connecting to database... -- 00:09:42.336 DEBUG [5288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:09:42.336 SQL [5288]: pgsql_db_connect() -- 00:09:42.341 DEBUG [5288]: Database connection successful -- 00:09:42.341 INFO [5288]: _SERVER found -- 00:09:42.341 INFO [5288]: REMOTE_ADDR = 192.168.1.13 -- 00:09:42.341 INFO [5288]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:09:42.341 INFO [5288]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jremgvfv72gv7bm140l0tokbj1v9dsre -- 00:09:42.341 INFO [5288]: QUERY_STRING = /auth/logout -- 00:09:42.341 INFO [5288]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:09:42.379 INFO [5288]: COREGRADE is stopping... -- 00:09:42.379 DEBUG [5288]: Closing database connection -- 00:09:42.379 SQL [5288]: pgsql_close() -- 00:09:43.158 INFO [5288]: COREGRADE is starting... -- 00:09:43.159 INFO [5288]: Version from config: 1.0 -- 00:09:43.159 DEBUG [5288]: Connecting to database... -- 00:09:43.159 DEBUG [5288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:09:43.159 SQL [5288]: pgsql_db_connect() -- 00:09:43.163 DEBUG [5288]: Database connection successful -- 00:09:43.163 INFO [5288]: _SERVER found -- 00:09:43.163 INFO [5288]: REMOTE_ADDR = 192.168.1.13 -- 00:09:43.163 INFO [5288]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:09:43.163 INFO [5288]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jremgvfv72gv7bm140l0tokbj1v9dsre -- 00:09:43.163 INFO [5288]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 00:09:43.163 INFO [5288]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:09:43.175 INFO [5288]: COREGRADE is stopping... -- 00:09:43.175 DEBUG [5288]: Closing database connection -- 00:09:43.175 SQL [5288]: pgsql_close() -- 00:09:43.186 INFO [5288]: COREGRADE is starting... -- 00:09:43.187 INFO [5288]: Version from config: 1.0 -- 00:09:43.187 DEBUG [5288]: Connecting to database... -- 00:09:43.187 DEBUG [5288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:09:43.187 SQL [5288]: pgsql_db_connect() -- 00:09:43.191 DEBUG [5288]: Database connection successful -- 00:09:43.191 INFO [5288]: _SERVER found -- 00:09:43.191 INFO [5288]: REMOTE_ADDR = 192.168.1.13 -- 00:09:43.191 INFO [5288]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:09:43.191 INFO [5288]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jremgvfv72gv7bm140l0tokbj1v9dsre -- 00:09:43.191 INFO [5288]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:09:43.191 INFO [5288]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:09:43.203 INFO [5288]: COREGRADE is stopping... -- 00:09:43.203 DEBUG [5288]: Closing database connection -- 00:09:43.203 SQL [5288]: pgsql_close() -- 00:09:44.747 INFO [5288]: COREGRADE is starting... -- 00:09:44.748 INFO [5288]: Version from config: 1.0 -- 00:09:44.748 DEBUG [5288]: Connecting to database... -- 00:09:44.748 DEBUG [5288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:09:44.748 SQL [5288]: pgsql_db_connect() -- 00:09:44.752 DEBUG [5288]: Database connection successful -- 00:09:44.752 INFO [5288]: _SERVER found -- 00:09:44.752 INFO [5288]: REMOTE_ADDR = 192.168.1.13 -- 00:09:44.752 INFO [5288]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:09:44.752 INFO [5288]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jremgvfv72gv7bm140l0tokbj1v9dsre -- 00:09:44.752 INFO [5288]: QUERY_STRING = /auth -- 00:09:44.752 INFO [5288]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:09:44.819 INFO [5288]: COREGRADE is starting... -- 00:09:44.819 INFO [5288]: Version from config: 1.0 -- 00:09:44.819 DEBUG [5288]: Connecting to database... -- 00:09:44.819 DEBUG [5288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:09:44.819 SQL [5288]: pgsql_db_connect() -- 00:09:44.823 DEBUG [5288]: Database connection successful -- 00:09:44.823 INFO [5288]: _SERVER found -- 00:09:44.823 INFO [5288]: REMOTE_ADDR = 192.168.1.13 -- 00:09:44.823 INFO [5288]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:09:44.823 INFO [5288]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jremgvfv72gv7bm140l0tokbj1v9dsre -- 00:09:44.823 INFO [5288]: QUERY_STRING = /member/index -- 00:09:44.823 INFO [5288]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:09:44.863 INFO [5288]: COREGRADE is stopping... -- 00:09:44.863 DEBUG [5288]: Closing database connection -- 00:09:44.863 SQL [5288]: pgsql_close() -- 00:09:45.524 INFO [5288]: COREGRADE is starting... -- 00:09:45.524 INFO [5288]: Version from config: 1.0 -- 00:09:45.524 DEBUG [5288]: Connecting to database... -- 00:09:45.524 DEBUG [5288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:09:45.524 SQL [5288]: pgsql_db_connect() -- 00:09:45.528 DEBUG [5288]: Database connection successful -- 00:09:45.528 INFO [5288]: _SERVER found -- 00:09:45.528 INFO [5288]: REMOTE_ADDR = 192.168.1.13 -- 00:09:45.528 INFO [5288]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:09:45.528 INFO [5288]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jremgvfv72gv7bm140l0tokbj1v9dsre -- 00:09:45.528 INFO [5288]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:09:45.528 INFO [5288]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:09:45.539 INFO [5288]: COREGRADE is stopping... -- 00:09:45.539 DEBUG [5288]: Closing database connection -- 00:09:45.539 SQL [5288]: pgsql_close() -- 00:09:45.614 INFO [5288]: COREGRADE is starting... -- 00:09:45.614 INFO [5288]: Version from config: 1.0 -- 00:09:45.614 DEBUG [5288]: Connecting to database... -- 00:09:45.614 DEBUG [5288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:09:45.615 SQL [5288]: pgsql_db_connect() -- 00:09:45.618 DEBUG [5288]: Database connection successful -- 00:09:45.618 INFO [5288]: _SERVER found -- 00:09:45.618 INFO [5288]: REMOTE_ADDR = 192.168.1.13 -- 00:09:45.618 INFO [5288]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:09:45.618 INFO [5288]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jremgvfv72gv7bm140l0tokbj1v9dsre -- 00:09:45.618 INFO [5288]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:09:45.618 INFO [5288]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:09:45.629 INFO [5288]: COREGRADE is stopping... -- 00:09:45.629 DEBUG [5288]: Closing database connection -- 00:09:45.629 SQL [5288]: pgsql_close() -- 00:11:59.477 INFO [3912]: COREGRADE is starting... -- 00:11:59.477 INFO [3912]: Version from config: 1.0 -- 00:11:59.477 DEBUG [3912]: Connecting to database... -- 00:11:59.477 DEBUG [3912]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:11:59.477 SQL [3912]: pgsql_db_connect() -- 00:11:59.481 DEBUG [3912]: Database connection successful -- 00:11:59.481 INFO [3912]: _SERVER found -- 00:11:59.481 INFO [3912]: REMOTE_ADDR = 192.168.1.13 -- 00:11:59.481 INFO [3912]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:11:59.481 INFO [3912]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jremgvfv72gv7bm140l0tokbj1v9dsre -- 00:11:59.481 INFO [3912]: QUERY_STRING = /auth -- 00:11:59.481 INFO [3912]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:11:59.588 INFO [3912]: COREGRADE is starting... -- 00:11:59.588 INFO [3912]: Version from config: 1.0 -- 00:11:59.588 DEBUG [3912]: Connecting to database... -- 00:11:59.588 DEBUG [3912]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:11:59.589 SQL [3912]: pgsql_db_connect() -- 00:11:59.593 DEBUG [3912]: Database connection successful -- 00:11:59.593 INFO [3912]: _SERVER found -- 00:11:59.593 INFO [3912]: REMOTE_ADDR = 192.168.1.13 -- 00:11:59.593 INFO [3912]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:11:59.593 INFO [3912]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jremgvfv72gv7bm140l0tokbj1v9dsre -- 00:11:59.593 INFO [3912]: QUERY_STRING = /member/index -- 00:11:59.593 INFO [3912]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:11:59.632 INFO [3912]: COREGRADE is stopping... -- 00:11:59.632 DEBUG [3912]: Closing database connection -- 00:11:59.632 SQL [3912]: pgsql_close() -- 00:12:00.500 INFO [3912]: COREGRADE is starting... -- 00:12:00.500 INFO [3912]: Version from config: 1.0 -- 00:12:00.500 DEBUG [3912]: Connecting to database... -- 00:12:00.500 DEBUG [3912]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:12:00.500 SQL [3912]: pgsql_db_connect() -- 00:12:00.505 DEBUG [3912]: Database connection successful -- 00:12:00.505 INFO [3912]: _SERVER found -- 00:12:00.505 INFO [3912]: REMOTE_ADDR = 192.168.1.13 -- 00:12:00.505 INFO [3912]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:12:00.505 INFO [3912]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jremgvfv72gv7bm140l0tokbj1v9dsre -- 00:12:00.505 INFO [3912]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:12:00.505 INFO [3912]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:12:00.516 INFO [3912]: COREGRADE is stopping... -- 00:12:00.516 DEBUG [3912]: Closing database connection -- 00:12:00.516 SQL [3912]: pgsql_close() -- 00:12:00.614 INFO [3912]: COREGRADE is starting... -- 00:12:00.614 INFO [3912]: Version from config: 1.0 -- 00:12:00.614 DEBUG [3912]: Connecting to database... -- 00:12:00.614 DEBUG [3912]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:12:00.614 SQL [3912]: pgsql_db_connect() -- 00:12:00.618 DEBUG [3912]: Database connection successful -- 00:12:00.618 INFO [3912]: _SERVER found -- 00:12:00.618 INFO [3912]: REMOTE_ADDR = 192.168.1.13 -- 00:12:00.618 INFO [3912]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:12:00.618 INFO [3912]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jremgvfv72gv7bm140l0tokbj1v9dsre -- 00:12:00.618 INFO [3912]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:12:00.618 INFO [3912]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:12:00.629 INFO [3912]: COREGRADE is stopping... -- 00:12:00.629 DEBUG [3912]: Closing database connection -- 00:12:00.629 SQL [3912]: pgsql_close() -- 00:12:06.988 INFO [3896]: COREGRADE is starting... -- 00:12:06.988 INFO [3896]: Version from config: 1.0 -- 00:12:06.988 DEBUG [3896]: Connecting to database... -- 00:12:06.988 DEBUG [3896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:12:06.988 SQL [3896]: pgsql_db_connect() -- 00:12:06.992 DEBUG [3896]: Database connection successful -- 00:12:06.992 INFO [3896]: _SERVER found -- 00:12:06.992 INFO [3896]: REMOTE_ADDR = 192.168.1.13 -- 00:12:06.992 INFO [3896]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:12:06.992 INFO [3896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jremgvfv72gv7bm140l0tokbj1v9dsre -- 00:12:06.992 INFO [3896]: QUERY_STRING = /member/page -- 00:12:06.992 INFO [3896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:12:07.036 INFO [3896]: COREGRADE is stopping... -- 00:12:07.036 DEBUG [3896]: Closing database connection -- 00:12:07.036 SQL [3896]: pgsql_close() -- 00:12:07.495 INFO [3896]: COREGRADE is starting... -- 00:12:07.495 INFO [3896]: Version from config: 1.0 -- 00:12:07.495 DEBUG [3896]: Connecting to database... -- 00:12:07.495 DEBUG [3896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:12:07.495 SQL [3896]: pgsql_db_connect() -- 00:12:07.499 DEBUG [3896]: Database connection successful -- 00:12:07.499 INFO [3896]: _SERVER found -- 00:12:07.499 INFO [3896]: REMOTE_ADDR = 192.168.1.13 -- 00:12:07.499 INFO [3896]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:12:07.499 INFO [3896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jremgvfv72gv7bm140l0tokbj1v9dsre -- 00:12:07.499 INFO [3896]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:12:07.499 INFO [3896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:12:07.510 INFO [3896]: COREGRADE is stopping... -- 00:12:07.510 DEBUG [3896]: Closing database connection -- 00:12:07.510 SQL [3896]: pgsql_close() -- 00:12:07.749 INFO [3896]: COREGRADE is starting... -- 00:12:07.750 INFO [3896]: Version from config: 1.0 -- 00:12:07.750 DEBUG [3896]: Connecting to database... -- 00:12:07.750 DEBUG [3896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:12:07.750 SQL [3896]: pgsql_db_connect() -- 00:12:07.754 DEBUG [3896]: Database connection successful -- 00:12:07.754 INFO [3896]: _SERVER found -- 00:12:07.754 INFO [3896]: REMOTE_ADDR = 192.168.1.13 -- 00:12:07.754 INFO [3896]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:12:07.754 INFO [3896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jremgvfv72gv7bm140l0tokbj1v9dsre -- 00:12:07.754 INFO [3896]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:12:07.754 INFO [3896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:12:07.764 INFO [3896]: COREGRADE is stopping... -- 00:12:07.765 DEBUG [3896]: Closing database connection -- 00:12:07.765 SQL [3896]: pgsql_close() -- 00:14:14.761 INFO [3895]: COREGRADE is starting... -- 00:14:14.762 INFO [3895]: Version from config: 1.0 -- 00:14:14.762 DEBUG [3895]: Connecting to database... -- 00:14:14.762 DEBUG [3895]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:14:14.762 SQL [3895]: pgsql_db_connect() -- 00:14:14.766 DEBUG [3895]: Database connection successful -- 00:14:14.766 INFO [3895]: _SERVER found -- 00:14:14.766 INFO [3895]: REMOTE_ADDR = 192.168.1.13 -- 00:14:14.766 INFO [3895]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:14:14.766 INFO [3895]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jremgvfv72gv7bm140l0tokbj1v9dsre -- 00:14:14.766 INFO [3895]: QUERY_STRING = /member/configure -- 00:14:14.766 INFO [3895]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:14:14.807 INFO [3895]: COREGRADE is stopping... -- 00:14:14.807 DEBUG [3895]: Closing database connection -- 00:14:14.807 SQL [3895]: pgsql_close() -- 00:14:15.304 INFO [3895]: COREGRADE is starting... -- 00:14:15.304 INFO [3895]: Version from config: 1.0 -- 00:14:15.304 DEBUG [3895]: Connecting to database... -- 00:14:15.304 DEBUG [3895]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:14:15.304 SQL [3895]: pgsql_db_connect() -- 00:14:15.308 DEBUG [3895]: Database connection successful -- 00:14:15.308 INFO [3895]: _SERVER found -- 00:14:15.308 INFO [3895]: REMOTE_ADDR = 192.168.1.13 -- 00:14:15.308 INFO [3895]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:14:15.308 INFO [3895]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=a98bp6vueaf9neqjof54chu6gs9lfeb2 -- 00:14:15.308 INFO [3895]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:14:15.308 INFO [3895]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:14:15.319 INFO [3895]: COREGRADE is stopping... -- 00:14:15.319 DEBUG [3895]: Closing database connection -- 00:14:15.319 SQL [3895]: pgsql_close() -- 00:14:15.396 INFO [3895]: COREGRADE is starting... -- 00:14:15.397 INFO [3895]: Version from config: 1.0 -- 00:14:15.397 DEBUG [3895]: Connecting to database... -- 00:14:15.397 DEBUG [3895]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:14:15.397 SQL [3895]: pgsql_db_connect() -- 00:14:15.401 DEBUG [3895]: Database connection successful -- 00:14:15.401 INFO [3895]: _SERVER found -- 00:14:15.401 INFO [3895]: REMOTE_ADDR = 192.168.1.13 -- 00:14:15.401 INFO [3895]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:14:15.401 INFO [3895]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=a98bp6vueaf9neqjof54chu6gs9lfeb2 -- 00:14:15.401 INFO [3895]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:14:15.401 INFO [3895]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:14:15.412 INFO [3895]: COREGRADE is stopping... -- 00:14:15.412 DEBUG [3895]: Closing database connection -- 00:14:15.412 SQL [3895]: pgsql_close() -- 00:15:32.168 INFO [3898]: COREGRADE is starting... -- 00:15:32.168 INFO [3898]: Version from config: 1.0 -- 00:15:32.168 DEBUG [3898]: Connecting to database... -- 00:15:32.168 DEBUG [3898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:15:32.168 SQL [3898]: pgsql_db_connect() -- 00:15:32.173 DEBUG [3898]: Database connection successful -- 00:15:32.173 INFO [3898]: _SERVER found -- 00:15:32.173 INFO [3898]: REMOTE_ADDR = 192.168.1.13 -- 00:15:32.173 INFO [3898]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:15:32.173 INFO [3898]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=a98bp6vueaf9neqjof54chu6gs9lfeb2 -- 00:15:32.173 INFO [3898]: QUERY_STRING = /member -- 00:15:32.173 INFO [3898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:15:32.213 INFO [3898]: COREGRADE is stopping... -- 00:15:32.213 DEBUG [3898]: Closing database connection -- 00:15:32.213 SQL [3898]: pgsql_close() -- 00:15:33.007 INFO [3898]: COREGRADE is starting... -- 00:15:33.008 INFO [3898]: Version from config: 1.0 -- 00:15:33.008 DEBUG [3898]: Connecting to database... -- 00:15:33.008 DEBUG [3898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:15:33.008 SQL [3898]: pgsql_db_connect() -- 00:15:33.012 DEBUG [3898]: Database connection successful -- 00:15:33.012 INFO [3898]: _SERVER found -- 00:15:33.012 INFO [3898]: REMOTE_ADDR = 192.168.1.13 -- 00:15:33.012 INFO [3898]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:15:33.012 INFO [3898]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=a98bp6vueaf9neqjof54chu6gs9lfeb2 -- 00:15:33.012 INFO [3898]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:15:33.012 INFO [3898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:15:33.023 INFO [3898]: COREGRADE is stopping... -- 00:15:33.023 DEBUG [3898]: Closing database connection -- 00:15:33.023 SQL [3898]: pgsql_close() -- 00:15:33.029 INFO [3897]: COREGRADE is starting... -- 00:15:33.029 INFO [3897]: Version from config: 1.0 -- 00:15:33.029 DEBUG [3897]: Connecting to database... -- 00:15:33.030 DEBUG [3897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:15:33.030 SQL [3897]: pgsql_db_connect() -- 00:15:33.033 DEBUG [3897]: Database connection successful -- 00:15:33.033 INFO [3897]: _SERVER found -- 00:15:33.034 INFO [3897]: REMOTE_ADDR = 192.168.1.13 -- 00:15:33.034 INFO [3897]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:15:33.034 INFO [3897]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=a98bp6vueaf9neqjof54chu6gs9lfeb2 -- 00:15:33.034 INFO [3897]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:15:33.034 INFO [3897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:15:33.045 INFO [3897]: COREGRADE is stopping... -- 00:15:33.045 DEBUG [3897]: Closing database connection -- 00:15:33.045 SQL [3897]: pgsql_close() -- 00:15:38.534 INFO [5277]: COREGRADE is starting... -- 00:15:38.534 INFO [5277]: Version from config: 1.0 -- 00:15:38.534 DEBUG [5277]: Connecting to database... -- 00:15:38.534 DEBUG [5277]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:15:38.534 SQL [5277]: pgsql_db_connect() -- 00:15:38.538 DEBUG [5277]: Database connection successful -- 00:15:38.538 INFO [5277]: _SERVER found -- 00:15:38.538 INFO [5277]: REMOTE_ADDR = 192.168.1.13 -- 00:15:38.538 INFO [5277]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:15:38.538 INFO [5277]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=a98bp6vueaf9neqjof54chu6gs9lfeb2 -- 00:15:38.538 INFO [5277]: QUERY_STRING = /member/page -- 00:15:38.538 INFO [5277]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:15:38.585 INFO [5277]: COREGRADE is stopping... -- 00:15:38.585 DEBUG [5277]: Closing database connection -- 00:15:38.585 SQL [5277]: pgsql_close() -- 00:15:39.014 INFO [5277]: COREGRADE is starting... -- 00:15:39.014 INFO [5277]: Version from config: 1.0 -- 00:15:39.014 DEBUG [5277]: Connecting to database... -- 00:15:39.014 DEBUG [5277]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:15:39.014 SQL [5277]: pgsql_db_connect() -- 00:15:39.018 DEBUG [5277]: Database connection successful -- 00:15:39.018 INFO [5277]: _SERVER found -- 00:15:39.018 INFO [5277]: REMOTE_ADDR = 192.168.1.13 -- 00:15:39.018 INFO [5277]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:15:39.018 INFO [5277]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=a98bp6vueaf9neqjof54chu6gs9lfeb2 -- 00:15:39.018 INFO [5277]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:15:39.018 INFO [5277]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:15:39.029 INFO [5277]: COREGRADE is stopping... -- 00:15:39.029 DEBUG [5277]: Closing database connection -- 00:15:39.029 SQL [5277]: pgsql_close() -- 00:15:39.225 INFO [5277]: COREGRADE is starting... -- 00:15:39.225 INFO [5277]: Version from config: 1.0 -- 00:15:39.225 DEBUG [5277]: Connecting to database... -- 00:15:39.225 DEBUG [5277]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:15:39.225 SQL [5277]: pgsql_db_connect() -- 00:15:39.229 DEBUG [5277]: Database connection successful -- 00:15:39.229 INFO [5277]: _SERVER found -- 00:15:39.229 INFO [5277]: REMOTE_ADDR = 192.168.1.13 -- 00:15:39.229 INFO [5277]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:15:39.229 INFO [5277]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=a98bp6vueaf9neqjof54chu6gs9lfeb2 -- 00:15:39.229 INFO [5277]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:15:39.229 INFO [5277]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:15:39.240 INFO [5277]: COREGRADE is stopping... -- 00:15:39.240 DEBUG [5277]: Closing database connection -- 00:15:39.240 SQL [5277]: pgsql_close() -- 00:15:41.335 INFO [5277]: COREGRADE is starting... -- 00:15:41.336 INFO [5277]: Version from config: 1.0 -- 00:15:41.336 DEBUG [5277]: Connecting to database... -- 00:15:41.336 DEBUG [5277]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:15:41.336 SQL [5277]: pgsql_db_connect() -- 00:15:41.340 DEBUG [5277]: Database connection successful -- 00:15:41.340 INFO [5277]: _SERVER found -- 00:15:41.340 INFO [5277]: REMOTE_ADDR = 192.168.1.13 -- 00:15:41.340 INFO [5277]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:15:41.340 INFO [5277]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=a98bp6vueaf9neqjof54chu6gs9lfeb2 -- 00:15:41.340 INFO [5277]: QUERY_STRING = /member/configure -- 00:15:41.340 INFO [5277]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:15:41.379 INFO [5277]: COREGRADE is stopping... -- 00:15:41.379 DEBUG [5277]: Closing database connection -- 00:15:41.379 SQL [5277]: pgsql_close() -- 00:15:41.817 INFO [5277]: COREGRADE is starting... -- 00:15:41.817 INFO [5277]: Version from config: 1.0 -- 00:15:41.817 DEBUG [5277]: Connecting to database... -- 00:15:41.817 DEBUG [5277]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:15:41.817 SQL [5277]: pgsql_db_connect() -- 00:15:41.821 DEBUG [5277]: Database connection successful -- 00:15:41.821 INFO [5277]: _SERVER found -- 00:15:41.821 INFO [5277]: REMOTE_ADDR = 192.168.1.13 -- 00:15:41.821 INFO [5277]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:15:41.821 INFO [5277]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=a98bp6vueaf9neqjof54chu6gs9lfeb2 -- 00:15:41.821 INFO [5277]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:15:41.821 INFO [5277]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:15:41.832 INFO [5277]: COREGRADE is stopping... -- 00:15:41.832 DEBUG [5277]: Closing database connection -- 00:15:41.832 SQL [5277]: pgsql_close() -- 00:15:41.835 INFO [3917]: COREGRADE is starting... -- 00:15:41.835 INFO [3917]: Version from config: 1.0 -- 00:15:41.835 DEBUG [3917]: Connecting to database... -- 00:15:41.835 DEBUG [3917]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:15:41.835 SQL [3917]: pgsql_db_connect() -- 00:15:41.839 DEBUG [3917]: Database connection successful -- 00:15:41.839 INFO [3917]: _SERVER found -- 00:15:41.839 INFO [3917]: REMOTE_ADDR = 192.168.1.13 -- 00:15:41.839 INFO [3917]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:15:41.839 INFO [3917]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=a98bp6vueaf9neqjof54chu6gs9lfeb2 -- 00:15:41.839 INFO [3917]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:15:41.839 INFO [3917]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:15:41.850 INFO [3917]: COREGRADE is stopping... -- 00:15:41.850 DEBUG [3917]: Closing database connection -- 00:15:41.850 SQL [3917]: pgsql_close() -- 00:15:47.955 INFO [5284]: COREGRADE is starting... -- 00:15:47.955 INFO [5284]: Version from config: 1.0 -- 00:15:47.955 DEBUG [5284]: Connecting to database... -- 00:15:47.955 DEBUG [5284]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:15:47.955 SQL [5284]: pgsql_db_connect() -- 00:15:47.959 DEBUG [5284]: Database connection successful -- 00:15:47.959 INFO [5284]: _SERVER found -- 00:15:47.959 INFO [5284]: REMOTE_ADDR = 192.168.1.13 -- 00:15:47.959 INFO [5284]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:15:47.959 INFO [5284]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=a98bp6vueaf9neqjof54chu6gs9lfeb2 -- 00:15:47.959 INFO [5284]: QUERY_STRING = /member/page -- 00:15:47.959 INFO [5284]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:15:48.000 INFO [5284]: COREGRADE is stopping... -- 00:15:48.000 DEBUG [5284]: Closing database connection -- 00:15:48.000 SQL [5284]: pgsql_close() -- 00:15:59.092 INFO [5287]: COREGRADE is starting... -- 00:15:59.092 INFO [5287]: Version from config: 1.0 -- 00:15:59.092 DEBUG [5287]: Connecting to database... -- 00:15:59.092 DEBUG [5287]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:15:59.093 SQL [5287]: pgsql_db_connect() -- 00:15:59.097 DEBUG [5287]: Database connection successful -- 00:15:59.097 INFO [5287]: _SERVER found -- 00:15:59.097 INFO [5287]: REMOTE_ADDR = 192.168.1.13 -- 00:15:59.097 INFO [5287]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:15:59.097 INFO [5287]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=a98bp6vueaf9neqjof54chu6gs9lfeb2 -- 00:15:59.097 INFO [5287]: QUERY_STRING = /member/configure -- 00:15:59.097 INFO [5287]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:15:59.137 INFO [5287]: COREGRADE is stopping... -- 00:15:59.137 DEBUG [5287]: Closing database connection -- 00:15:59.137 SQL [5287]: pgsql_close() -- 00:16:00.389 INFO [5287]: COREGRADE is starting... -- 00:16:00.389 INFO [5287]: Version from config: 1.0 -- 00:16:00.389 DEBUG [5287]: Connecting to database... -- 00:16:00.389 DEBUG [5287]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:16:00.389 SQL [5287]: pgsql_db_connect() -- 00:16:00.396 INFO [5288]: COREGRADE is starting... -- 00:16:00.396 INFO [5288]: Version from config: 1.0 -- 00:16:00.396 DEBUG [5288]: Connecting to database... -- 00:16:00.396 DEBUG [5288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:16:00.396 SQL [5288]: pgsql_db_connect() -- 00:16:00.393 DEBUG [5287]: Database connection successful -- 00:16:00.393 INFO [5287]: _SERVER found -- 00:16:00.393 INFO [5287]: REMOTE_ADDR = 192.168.1.13 -- 00:16:00.393 INFO [5287]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:16:00.393 INFO [5287]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=a98bp6vueaf9neqjof54chu6gs9lfeb2 -- 00:16:00.393 INFO [5287]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:16:00.393 INFO [5287]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:16:00.405 INFO [5287]: COREGRADE is stopping... -- 00:16:00.405 DEBUG [5287]: Closing database connection -- 00:16:00.405 SQL [5287]: pgsql_close() -- 00:16:00.400 DEBUG [5288]: Database connection successful -- 00:16:00.400 INFO [5288]: _SERVER found -- 00:16:00.400 INFO [5288]: REMOTE_ADDR = 192.168.1.13 -- 00:16:00.400 INFO [5288]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:16:00.400 INFO [5288]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=a98bp6vueaf9neqjof54chu6gs9lfeb2 -- 00:16:00.400 INFO [5288]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:16:00.400 INFO [5288]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:16:00.412 INFO [5288]: COREGRADE is stopping... -- 00:16:00.412 DEBUG [5288]: Closing database connection -- 00:16:00.412 SQL [5288]: pgsql_close() -- 00:16:02.782 INFO [5288]: COREGRADE is starting... -- 00:16:02.783 INFO [5288]: Version from config: 1.0 -- 00:16:02.783 DEBUG [5288]: Connecting to database... -- 00:16:02.783 DEBUG [5288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:16:02.783 SQL [5288]: pgsql_db_connect() -- 00:16:02.787 DEBUG [5288]: Database connection successful -- 00:16:02.787 INFO [5288]: _SERVER found -- 00:16:02.787 INFO [5288]: REMOTE_ADDR = 192.168.1.13 -- 00:16:02.787 INFO [5288]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:16:02.787 INFO [5288]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=a98bp6vueaf9neqjof54chu6gs9lfeb2 -- 00:16:02.787 INFO [5288]: QUERY_STRING = /member -- 00:16:02.787 INFO [5288]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:16:02.826 INFO [5288]: COREGRADE is stopping... -- 00:16:02.826 DEBUG [5288]: Closing database connection -- 00:16:02.826 SQL [5288]: pgsql_close() -- 00:16:03.289 INFO [5287]: COREGRADE is starting... -- 00:16:03.289 INFO [5288]: COREGRADE is starting... -- 00:16:03.289 INFO [5287]: Version from config: 1.0 -- 00:16:03.289 DEBUG [5287]: Connecting to database... -- 00:16:03.289 INFO [5288]: Version from config: 1.0 -- 00:16:03.289 DEBUG [5288]: Connecting to database... -- 00:16:03.289 DEBUG [5287]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:16:03.289 DEBUG [5288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:16:03.289 SQL [5287]: pgsql_db_connect() -- 00:16:03.289 SQL [5288]: pgsql_db_connect() -- 00:16:03.293 DEBUG [5288]: Database connection successful -- 00:16:03.293 INFO [5288]: _SERVER found -- 00:16:03.293 INFO [5288]: REMOTE_ADDR = 192.168.1.13 -- 00:16:03.293 INFO [5288]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:16:03.293 INFO [5288]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=a98bp6vueaf9neqjof54chu6gs9lfeb2 -- 00:16:03.293 INFO [5288]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:16:03.293 INFO [5288]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:16:03.304 INFO [5288]: COREGRADE is stopping... -- 00:16:03.293 DEBUG [5287]: Database connection successful -- 00:16:03.293 INFO [5287]: _SERVER found -- 00:16:03.293 INFO [5287]: REMOTE_ADDR = 192.168.1.13 -- 00:16:03.293 INFO [5287]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:16:03.293 INFO [5287]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=a98bp6vueaf9neqjof54chu6gs9lfeb2 -- 00:16:03.293 INFO [5287]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:16:03.293 INFO [5287]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:16:03.304 INFO [5287]: COREGRADE is stopping... -- 00:16:03.304 DEBUG [5288]: Closing database connection -- 00:16:03.304 DEBUG [5287]: Closing database connection -- 00:16:03.304 SQL [5288]: pgsql_close() -- 00:16:03.304 SQL [5287]: pgsql_close() -- 00:16:04.623 INFO [5288]: COREGRADE is starting... -- 00:16:04.623 INFO [5288]: Version from config: 1.0 -- 00:16:04.623 DEBUG [5288]: Connecting to database... -- 00:16:04.623 DEBUG [5288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:16:04.623 SQL [5288]: pgsql_db_connect() -- 00:16:04.627 DEBUG [5288]: Database connection successful -- 00:16:04.627 INFO [5288]: _SERVER found -- 00:16:04.627 INFO [5288]: REMOTE_ADDR = 192.168.1.13 -- 00:16:04.627 INFO [5288]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:16:04.627 INFO [5288]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=a98bp6vueaf9neqjof54chu6gs9lfeb2 -- 00:16:04.627 INFO [5288]: QUERY_STRING = /member/page -- 00:16:04.627 INFO [5288]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:16:04.669 INFO [5288]: COREGRADE is stopping... -- 00:16:04.669 DEBUG [5288]: Closing database connection -- 00:16:04.669 SQL [5288]: pgsql_close() -- 00:16:05.129 INFO [5288]: COREGRADE is starting... -- 00:16:05.129 INFO [5288]: Version from config: 1.0 -- 00:16:05.129 DEBUG [5288]: Connecting to database... -- 00:16:05.129 DEBUG [5288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:16:05.129 SQL [5288]: pgsql_db_connect() -- 00:16:05.133 DEBUG [5288]: Database connection successful -- 00:16:05.133 INFO [5288]: _SERVER found -- 00:16:05.133 INFO [5288]: REMOTE_ADDR = 192.168.1.13 -- 00:16:05.133 INFO [5288]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:16:05.133 INFO [5288]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=a98bp6vueaf9neqjof54chu6gs9lfeb2 -- 00:16:05.133 INFO [5288]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:16:05.133 INFO [5288]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:16:05.145 INFO [5288]: COREGRADE is stopping... -- 00:16:05.145 DEBUG [5288]: Closing database connection -- 00:16:05.145 SQL [5288]: pgsql_close() -- 00:16:05.229 INFO [5288]: COREGRADE is starting... -- 00:16:05.229 INFO [5288]: Version from config: 1.0 -- 00:16:05.229 DEBUG [5288]: Connecting to database... -- 00:16:05.229 DEBUG [5288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:16:05.229 SQL [5288]: pgsql_db_connect() -- 00:16:05.233 DEBUG [5288]: Database connection successful -- 00:16:05.233 INFO [5288]: _SERVER found -- 00:16:05.233 INFO [5288]: REMOTE_ADDR = 192.168.1.13 -- 00:16:05.233 INFO [5288]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:16:05.233 INFO [5288]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=a98bp6vueaf9neqjof54chu6gs9lfeb2 -- 00:16:05.233 INFO [5288]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:16:05.233 INFO [5288]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:16:05.244 INFO [5288]: COREGRADE is stopping... -- 00:16:05.244 DEBUG [5288]: Closing database connection -- 00:16:05.244 SQL [5288]: pgsql_close() -- 00:16:22.387 INFO [3912]: COREGRADE is starting... -- 00:16:22.387 INFO [3912]: Version from config: 1.0 -- 00:16:22.387 DEBUG [3912]: Connecting to database... -- 00:16:22.387 DEBUG [3912]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:16:22.387 SQL [3912]: pgsql_db_connect() -- 00:16:22.391 DEBUG [3912]: Database connection successful -- 00:16:22.391 INFO [3912]: _SERVER found -- 00:16:22.391 INFO [3912]: REMOTE_ADDR = 192.168.1.13 -- 00:16:22.391 INFO [3912]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:16:22.391 INFO [3912]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=a98bp6vueaf9neqjof54chu6gs9lfeb2 -- 00:16:22.391 INFO [3912]: QUERY_STRING = /member -- 00:16:22.391 INFO [3912]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:16:22.430 INFO [3912]: COREGRADE is stopping... -- 00:16:22.431 DEBUG [3912]: Closing database connection -- 00:16:22.431 SQL [3912]: pgsql_close() -- 00:16:23.068 INFO [3912]: COREGRADE is starting... -- 00:16:23.068 INFO [3912]: Version from config: 1.0 -- 00:16:23.068 DEBUG [3912]: Connecting to database... -- 00:16:23.068 DEBUG [3912]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:16:23.068 SQL [3912]: pgsql_db_connect() -- 00:16:23.072 DEBUG [3912]: Database connection successful -- 00:16:23.072 INFO [3912]: _SERVER found -- 00:16:23.072 INFO [3912]: REMOTE_ADDR = 192.168.1.13 -- 00:16:23.072 INFO [3912]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:16:23.072 INFO [3912]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=a98bp6vueaf9neqjof54chu6gs9lfeb2 -- 00:16:23.072 INFO [3912]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:16:23.072 INFO [3912]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:16:23.083 INFO [3912]: COREGRADE is stopping... -- 00:16:23.083 DEBUG [3912]: Closing database connection -- 00:16:23.083 SQL [3912]: pgsql_close() -- 00:16:23.089 INFO [3896]: COREGRADE is starting... -- 00:16:23.090 INFO [3896]: Version from config: 1.0 -- 00:16:23.090 DEBUG [3896]: Connecting to database... -- 00:16:23.090 DEBUG [3896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:16:23.090 SQL [3896]: pgsql_db_connect() -- 00:16:23.093 DEBUG [3896]: Database connection successful -- 00:16:23.093 INFO [3896]: _SERVER found -- 00:16:23.093 INFO [3896]: REMOTE_ADDR = 192.168.1.13 -- 00:16:23.093 INFO [3896]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:16:23.093 INFO [3896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=a98bp6vueaf9neqjof54chu6gs9lfeb2 -- 00:16:23.093 INFO [3896]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:16:23.093 INFO [3896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:16:23.105 INFO [3896]: COREGRADE is stopping... -- 00:16:23.105 DEBUG [3896]: Closing database connection -- 00:16:23.105 SQL [3896]: pgsql_close() -- 00:16:24.561 INFO [3896]: COREGRADE is starting... -- 00:16:24.562 INFO [3896]: Version from config: 1.0 -- 00:16:24.562 DEBUG [3896]: Connecting to database... -- 00:16:24.562 DEBUG [3896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:16:24.562 SQL [3896]: pgsql_db_connect() -- 00:16:24.566 DEBUG [3896]: Database connection successful -- 00:16:24.566 INFO [3896]: _SERVER found -- 00:16:24.566 INFO [3896]: REMOTE_ADDR = 192.168.1.13 -- 00:16:24.566 INFO [3896]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:16:24.566 INFO [3896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=a98bp6vueaf9neqjof54chu6gs9lfeb2 -- 00:16:24.566 INFO [3896]: QUERY_STRING = /member/page -- 00:16:24.566 INFO [3896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:16:24.607 INFO [3896]: COREGRADE is stopping... -- 00:16:24.607 DEBUG [3896]: Closing database connection -- 00:16:24.607 SQL [3896]: pgsql_close() -- 00:16:24.849 INFO [3896]: COREGRADE is starting... -- 00:16:24.850 INFO [3896]: Version from config: 1.0 -- 00:16:24.850 DEBUG [3896]: Connecting to database... -- 00:16:24.850 DEBUG [3896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:16:24.850 SQL [3896]: pgsql_db_connect() -- 00:16:24.854 DEBUG [3896]: Database connection successful -- 00:16:24.854 INFO [3896]: _SERVER found -- 00:16:24.854 INFO [3896]: REMOTE_ADDR = 192.168.1.13 -- 00:16:24.854 INFO [3896]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:16:24.854 INFO [3896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=a98bp6vueaf9neqjof54chu6gs9lfeb2 -- 00:16:24.854 INFO [3896]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:16:24.854 INFO [3896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:16:24.865 INFO [3896]: COREGRADE is stopping... -- 00:16:24.865 DEBUG [3896]: Closing database connection -- 00:16:24.865 SQL [3896]: pgsql_close() -- 00:16:24.975 INFO [3896]: COREGRADE is starting... -- 00:16:24.976 INFO [3896]: Version from config: 1.0 -- 00:16:24.976 DEBUG [3896]: Connecting to database... -- 00:16:24.976 DEBUG [3896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:16:24.976 SQL [3896]: pgsql_db_connect() -- 00:16:24.980 DEBUG [3896]: Database connection successful -- 00:16:24.980 INFO [3896]: _SERVER found -- 00:16:24.980 INFO [3896]: REMOTE_ADDR = 192.168.1.13 -- 00:16:24.980 INFO [3896]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:16:24.980 INFO [3896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=a98bp6vueaf9neqjof54chu6gs9lfeb2 -- 00:16:24.980 INFO [3896]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:16:24.980 INFO [3896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:16:24.990 INFO [3896]: COREGRADE is stopping... -- 00:16:24.991 DEBUG [3896]: Closing database connection -- 00:16:24.991 SQL [3896]: pgsql_close() -- 00:19:35.986 INFO [3895]: COREGRADE is starting... -- 00:19:35.987 INFO [3895]: Version from config: 1.0 -- 00:19:35.987 DEBUG [3895]: Connecting to database... -- 00:19:35.987 DEBUG [3895]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:19:35.987 SQL [3895]: pgsql_db_connect() -- 00:19:35.991 DEBUG [3895]: Database connection successful -- 00:19:35.991 INFO [3895]: _SERVER found -- 00:19:35.991 INFO [3895]: REMOTE_ADDR = 192.168.1.13 -- 00:19:35.991 INFO [3895]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:19:35.991 INFO [3895]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=a98bp6vueaf9neqjof54chu6gs9lfeb2 -- 00:19:35.991 INFO [3895]: QUERY_STRING = /member -- 00:19:35.991 INFO [3895]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:19:36.033 INFO [3895]: COREGRADE is stopping... -- 00:19:36.033 DEBUG [3895]: Closing database connection -- 00:19:36.033 SQL [3895]: pgsql_close() -- 00:19:39.221 INFO [3895]: COREGRADE is starting... -- 00:19:39.221 INFO [3895]: Version from config: 1.0 -- 00:19:39.221 DEBUG [3895]: Connecting to database... -- 00:19:39.221 DEBUG [3895]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:19:39.222 SQL [3895]: pgsql_db_connect() -- 00:19:39.226 DEBUG [3895]: Database connection successful -- 00:19:39.226 INFO [3895]: _SERVER found -- 00:19:39.226 INFO [3895]: REMOTE_ADDR = 192.168.1.13 -- 00:19:39.226 INFO [3895]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:19:39.226 INFO [3895]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k93qep9okafdb784djbuckpleigsajui -- 00:19:39.226 INFO [3895]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:19:39.226 INFO [3895]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:19:39.237 INFO [3895]: COREGRADE is stopping... -- 00:19:39.237 DEBUG [3895]: Closing database connection -- 00:19:39.237 SQL [3895]: pgsql_close() -- 00:19:42.698 INFO [3895]: COREGRADE is starting... -- 00:19:42.699 INFO [3895]: Version from config: 1.0 -- 00:19:42.699 DEBUG [3895]: Connecting to database... -- 00:19:42.699 DEBUG [3895]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:19:42.699 SQL [3895]: pgsql_db_connect() -- 00:19:42.703 DEBUG [3895]: Database connection successful -- 00:19:42.703 INFO [3895]: _SERVER found -- 00:19:42.703 INFO [3895]: REMOTE_ADDR = 192.168.1.13 -- 00:19:42.703 INFO [3895]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:19:42.703 INFO [3895]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k93qep9okafdb784djbuckpleigsajui -- 00:19:42.703 INFO [3895]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:19:42.703 INFO [3895]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:19:42.714 INFO [3895]: COREGRADE is stopping... -- 00:19:42.714 DEBUG [3895]: Closing database connection -- 00:19:42.714 SQL [3895]: pgsql_close() -- 00:20:05.465 INFO [3898]: COREGRADE is starting... -- 00:20:05.465 INFO [3898]: Version from config: 1.0 -- 00:20:05.465 DEBUG [3898]: Connecting to database... -- 00:20:05.465 DEBUG [3898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:20:05.465 SQL [3898]: pgsql_db_connect() -- 00:20:05.469 DEBUG [3898]: Database connection successful -- 00:20:05.469 INFO [3898]: _SERVER found -- 00:20:05.469 INFO [3898]: REMOTE_ADDR = 192.168.1.13 -- 00:20:05.469 INFO [3898]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:20:05.469 INFO [3898]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k93qep9okafdb784djbuckpleigsajui -- 00:20:05.469 INFO [3898]: QUERY_STRING = /member/page -- 00:20:05.469 INFO [3898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:20:05.512 INFO [3898]: COREGRADE is stopping... -- 00:20:05.512 DEBUG [3898]: Closing database connection -- 00:20:05.512 SQL [3898]: pgsql_close() -- 00:20:06.621 INFO [3898]: COREGRADE is starting... -- 00:20:06.621 INFO [3898]: Version from config: 1.0 -- 00:20:06.621 DEBUG [3898]: Connecting to database... -- 00:20:06.621 DEBUG [3898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:20:06.622 SQL [3898]: pgsql_db_connect() -- 00:20:06.626 DEBUG [3898]: Database connection successful -- 00:20:06.626 INFO [3898]: _SERVER found -- 00:20:06.626 INFO [3898]: REMOTE_ADDR = 192.168.1.13 -- 00:20:06.626 INFO [3898]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:20:06.626 INFO [3898]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k93qep9okafdb784djbuckpleigsajui -- 00:20:06.626 INFO [3898]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:20:06.626 INFO [3898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:20:06.637 INFO [3898]: COREGRADE is stopping... -- 00:20:06.637 DEBUG [3898]: Closing database connection -- 00:20:06.637 SQL [3898]: pgsql_close() -- 00:20:06.861 INFO [3898]: COREGRADE is starting... -- 00:20:06.861 INFO [3898]: Version from config: 1.0 -- 00:20:06.861 DEBUG [3898]: Connecting to database... -- 00:20:06.861 DEBUG [3898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:20:06.861 SQL [3898]: pgsql_db_connect() -- 00:20:06.865 DEBUG [3898]: Database connection successful -- 00:20:06.865 INFO [3898]: _SERVER found -- 00:20:06.865 INFO [3898]: REMOTE_ADDR = 192.168.1.13 -- 00:20:06.865 INFO [3898]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:20:06.865 INFO [3898]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k93qep9okafdb784djbuckpleigsajui -- 00:20:06.865 INFO [3898]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:20:06.865 INFO [3898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:20:06.876 INFO [3898]: COREGRADE is stopping... -- 00:20:06.876 DEBUG [3898]: Closing database connection -- 00:20:06.876 SQL [3898]: pgsql_close() -- 00:20:11.766 INFO [3898]: COREGRADE is starting... -- 00:20:11.766 INFO [3898]: Version from config: 1.0 -- 00:20:11.766 DEBUG [3898]: Connecting to database... -- 00:20:11.766 DEBUG [3898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:20:11.766 SQL [3898]: pgsql_db_connect() -- 00:20:11.770 DEBUG [3898]: Database connection successful -- 00:20:11.770 INFO [3898]: _SERVER found -- 00:20:11.770 INFO [3898]: REMOTE_ADDR = 192.168.1.13 -- 00:20:11.770 INFO [3898]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:20:11.770 INFO [3898]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k93qep9okafdb784djbuckpleigsajui -- 00:20:11.770 INFO [3898]: QUERY_STRING = /member -- 00:20:11.770 INFO [3898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:20:11.809 INFO [3898]: COREGRADE is stopping... -- 00:20:11.809 DEBUG [3898]: Closing database connection -- 00:20:11.809 SQL [3898]: pgsql_close() -- 00:20:12.345 INFO [3898]: COREGRADE is starting... -- 00:20:12.345 INFO [3898]: Version from config: 1.0 -- 00:20:12.345 DEBUG [3898]: Connecting to database... -- 00:20:12.345 DEBUG [3898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:20:12.345 SQL [3898]: pgsql_db_connect() -- 00:20:12.349 DEBUG [3898]: Database connection successful -- 00:20:12.349 INFO [3898]: _SERVER found -- 00:20:12.349 INFO [3898]: REMOTE_ADDR = 192.168.1.13 -- 00:20:12.349 INFO [3898]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:20:12.349 INFO [3898]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k93qep9okafdb784djbuckpleigsajui -- 00:20:12.349 INFO [3898]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:20:12.349 INFO [3898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:20:12.360 INFO [3898]: COREGRADE is stopping... -- 00:20:12.360 DEBUG [3898]: Closing database connection -- 00:20:12.360 SQL [3898]: pgsql_close() -- 00:20:12.400 INFO [3898]: COREGRADE is starting... -- 00:20:12.400 INFO [3898]: Version from config: 1.0 -- 00:20:12.400 DEBUG [3898]: Connecting to database... -- 00:20:12.400 DEBUG [3898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:20:12.400 SQL [3898]: pgsql_db_connect() -- 00:20:12.404 DEBUG [3898]: Database connection successful -- 00:20:12.404 INFO [3898]: _SERVER found -- 00:20:12.404 INFO [3898]: REMOTE_ADDR = 192.168.1.13 -- 00:20:12.404 INFO [3898]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:20:12.404 INFO [3898]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k93qep9okafdb784djbuckpleigsajui -- 00:20:12.404 INFO [3898]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:20:12.404 INFO [3898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:20:12.415 INFO [3898]: COREGRADE is stopping... -- 00:20:12.415 DEBUG [3898]: Closing database connection -- 00:20:12.415 SQL [3898]: pgsql_close() -- 00:20:13.844 INFO [3898]: COREGRADE is starting... -- 00:20:13.844 INFO [3898]: Version from config: 1.0 -- 00:20:13.844 DEBUG [3898]: Connecting to database... -- 00:20:13.844 DEBUG [3898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:20:13.844 SQL [3898]: pgsql_db_connect() -- 00:20:13.848 DEBUG [3898]: Database connection successful -- 00:20:13.848 INFO [3898]: _SERVER found -- 00:20:13.848 INFO [3898]: REMOTE_ADDR = 192.168.1.13 -- 00:20:13.848 INFO [3898]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:20:13.848 INFO [3898]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k93qep9okafdb784djbuckpleigsajui -- 00:20:13.848 INFO [3898]: QUERY_STRING = /member/page -- 00:20:13.848 INFO [3898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:20:13.889 INFO [3898]: COREGRADE is stopping... -- 00:20:13.889 DEBUG [3898]: Closing database connection -- 00:20:13.889 SQL [3898]: pgsql_close() -- 00:20:14.366 INFO [3898]: COREGRADE is starting... -- 00:20:14.366 INFO [3898]: Version from config: 1.0 -- 00:20:14.366 DEBUG [3898]: Connecting to database... -- 00:20:14.366 DEBUG [3898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:20:14.366 SQL [3898]: pgsql_db_connect() -- 00:20:14.370 DEBUG [3898]: Database connection successful -- 00:20:14.370 INFO [3898]: _SERVER found -- 00:20:14.370 INFO [3898]: REMOTE_ADDR = 192.168.1.13 -- 00:20:14.370 INFO [3898]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:20:14.370 INFO [3898]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k93qep9okafdb784djbuckpleigsajui -- 00:20:14.370 INFO [3898]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:20:14.370 INFO [3898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:20:14.381 INFO [3898]: COREGRADE is stopping... -- 00:20:14.381 DEBUG [3898]: Closing database connection -- 00:20:14.381 SQL [3898]: pgsql_close() -- 00:20:14.684 INFO [3898]: COREGRADE is starting... -- 00:20:14.684 INFO [3898]: Version from config: 1.0 -- 00:20:14.684 DEBUG [3898]: Connecting to database... -- 00:20:14.684 DEBUG [3898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:20:14.684 SQL [3898]: pgsql_db_connect() -- 00:20:14.688 DEBUG [3898]: Database connection successful -- 00:20:14.688 INFO [3898]: _SERVER found -- 00:20:14.688 INFO [3898]: REMOTE_ADDR = 192.168.1.13 -- 00:20:14.688 INFO [3898]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:20:14.688 INFO [3898]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k93qep9okafdb784djbuckpleigsajui -- 00:20:14.688 INFO [3898]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:20:14.688 INFO [3898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:20:14.699 INFO [3898]: COREGRADE is stopping... -- 00:20:14.699 DEBUG [3898]: Closing database connection -- 00:20:14.699 SQL [3898]: pgsql_close() -- 00:20:19.822 INFO [3897]: COREGRADE is starting... -- 00:20:19.822 INFO [3897]: Version from config: 1.0 -- 00:20:19.822 DEBUG [3897]: Connecting to database... -- 00:20:19.822 DEBUG [3897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:20:19.822 SQL [3897]: pgsql_db_connect() -- 00:20:19.826 DEBUG [3897]: Database connection successful -- 00:20:19.826 INFO [3897]: _SERVER found -- 00:20:19.826 INFO [3897]: REMOTE_ADDR = 192.168.1.13 -- 00:20:19.826 INFO [3897]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:20:19.826 INFO [3897]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k93qep9okafdb784djbuckpleigsajui -- 00:20:19.826 INFO [3897]: QUERY_STRING = /member/configure -- 00:20:19.826 INFO [3897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:20:19.867 INFO [3897]: COREGRADE is stopping... -- 00:20:19.867 DEBUG [3897]: Closing database connection -- 00:20:19.867 SQL [3897]: pgsql_close() -- 00:20:20.381 INFO [3897]: COREGRADE is starting... -- 00:20:20.382 INFO [3897]: Version from config: 1.0 -- 00:20:20.382 DEBUG [3897]: Connecting to database... -- 00:20:20.382 DEBUG [3897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:20:20.382 SQL [3897]: pgsql_db_connect() -- 00:20:20.386 DEBUG [3897]: Database connection successful -- 00:20:20.386 INFO [3897]: _SERVER found -- 00:20:20.386 INFO [3897]: REMOTE_ADDR = 192.168.1.13 -- 00:20:20.386 INFO [3897]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:20:20.386 INFO [3897]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k93qep9okafdb784djbuckpleigsajui -- 00:20:20.386 INFO [3897]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:20:20.386 INFO [3897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:20:20.397 INFO [3897]: COREGRADE is stopping... -- 00:20:20.397 DEBUG [3897]: Closing database connection -- 00:20:20.397 SQL [3897]: pgsql_close() -- 00:20:20.538 INFO [3897]: COREGRADE is starting... -- 00:20:20.539 INFO [3897]: Version from config: 1.0 -- 00:20:20.539 DEBUG [3897]: Connecting to database... -- 00:20:20.539 DEBUG [3897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:20:20.539 SQL [3897]: pgsql_db_connect() -- 00:20:20.543 DEBUG [3897]: Database connection successful -- 00:20:20.543 INFO [3897]: _SERVER found -- 00:20:20.543 INFO [3897]: REMOTE_ADDR = 192.168.1.13 -- 00:20:20.543 INFO [3897]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:20:20.543 INFO [3897]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k93qep9okafdb784djbuckpleigsajui -- 00:20:20.543 INFO [3897]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:20:20.543 INFO [3897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:20:20.554 INFO [3897]: COREGRADE is stopping... -- 00:20:20.554 DEBUG [3897]: Closing database connection -- 00:20:20.554 SQL [3897]: pgsql_close() -- 00:20:24.840 INFO [3897]: COREGRADE is starting... -- 00:20:24.841 INFO [3897]: Version from config: 1.0 -- 00:20:24.841 DEBUG [3897]: Connecting to database... -- 00:20:24.841 DEBUG [3897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:20:24.841 SQL [3897]: pgsql_db_connect() -- 00:20:24.845 DEBUG [3897]: Database connection successful -- 00:20:24.845 INFO [3897]: _SERVER found -- 00:20:24.845 INFO [3897]: REMOTE_ADDR = 192.168.1.13 -- 00:20:24.845 INFO [3897]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:20:24.845 INFO [3897]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k93qep9okafdb784djbuckpleigsajui -- 00:20:24.845 INFO [3897]: QUERY_STRING = /member/page -- 00:20:24.845 INFO [3897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:20:24.887 INFO [3897]: COREGRADE is stopping... -- 00:20:24.887 DEBUG [3897]: Closing database connection -- 00:20:24.887 SQL [3897]: pgsql_close() -- 00:20:25.327 INFO [3897]: COREGRADE is starting... -- 00:20:25.328 INFO [3897]: Version from config: 1.0 -- 00:20:25.328 DEBUG [3897]: Connecting to database... -- 00:20:25.328 DEBUG [3897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:20:25.328 SQL [3897]: pgsql_db_connect() -- 00:20:25.332 DEBUG [3897]: Database connection successful -- 00:20:25.332 INFO [3897]: _SERVER found -- 00:20:25.332 INFO [3897]: REMOTE_ADDR = 192.168.1.13 -- 00:20:25.332 INFO [3897]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:20:25.332 INFO [3897]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k93qep9okafdb784djbuckpleigsajui -- 00:20:25.332 INFO [3897]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:20:25.332 INFO [3897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:20:25.343 INFO [3897]: COREGRADE is stopping... -- 00:20:25.343 DEBUG [3897]: Closing database connection -- 00:20:25.343 SQL [3897]: pgsql_close() -- 00:34:15.793 INFO [3917]: COREGRADE is starting... -- 00:34:15.793 INFO [3917]: Version from config: 1.0 -- 00:34:15.794 DEBUG [3917]: Connecting to database... -- 00:34:15.794 DEBUG [3917]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:15.794 SQL [3917]: pgsql_db_connect() -- 00:34:15.798 DEBUG [3917]: Database connection successful -- 00:34:15.798 INFO [3917]: _SERVER found -- 00:34:15.798 INFO [3917]: REMOTE_ADDR = 192.168.1.13 -- 00:34:15.798 INFO [3917]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:34:15.798 INFO [3917]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=k93qep9okafdb784djbuckpleigsajui -- 00:34:15.798 INFO [3917]: QUERY_STRING = /member/configure -- 00:34:15.798 INFO [3917]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:15.845 INFO [3917]: COREGRADE is stopping... -- 00:34:15.845 DEBUG [3917]: Closing database connection -- 00:34:15.845 SQL [3917]: pgsql_close() -- 00:34:16.501 INFO [3917]: COREGRADE is starting... -- 00:34:16.501 INFO [3917]: Version from config: 1.0 -- 00:34:16.501 DEBUG [3917]: Connecting to database... -- 00:34:16.501 DEBUG [3917]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:16.501 SQL [3917]: pgsql_db_connect() -- 00:34:16.506 DEBUG [3917]: Database connection successful -- 00:34:16.506 INFO [3917]: _SERVER found -- 00:34:16.506 INFO [3917]: REMOTE_ADDR = 192.168.1.13 -- 00:34:16.506 INFO [3917]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:34:16.506 INFO [3917]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=qphvgbuktlsrri1b6br115bbms6sn4br -- 00:34:16.506 INFO [3917]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:34:16.506 INFO [3917]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:16.517 INFO [3917]: COREGRADE is stopping... -- 00:34:16.517 DEBUG [3917]: Closing database connection -- 00:34:16.517 SQL [3917]: pgsql_close() -- 00:34:16.586 INFO [3917]: COREGRADE is starting... -- 00:34:16.586 INFO [3917]: Version from config: 1.0 -- 00:34:16.586 DEBUG [3917]: Connecting to database... -- 00:34:16.586 DEBUG [3917]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:16.586 SQL [3917]: pgsql_db_connect() -- 00:34:16.591 DEBUG [3917]: Database connection successful -- 00:34:16.591 INFO [3917]: _SERVER found -- 00:34:16.591 INFO [3917]: REMOTE_ADDR = 192.168.1.13 -- 00:34:16.591 INFO [3917]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:34:16.591 INFO [3917]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=qphvgbuktlsrri1b6br115bbms6sn4br -- 00:34:16.591 INFO [3917]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:34:16.591 INFO [3917]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:16.602 INFO [3917]: COREGRADE is stopping... -- 00:34:16.602 DEBUG [3917]: Closing database connection -- 00:34:16.602 SQL [3917]: pgsql_close() -- 00:35:19.457 INFO [5277]: COREGRADE is starting... -- 00:35:19.457 INFO [5277]: Version from config: 1.0 -- 00:35:19.457 DEBUG [5277]: Connecting to database... -- 00:35:19.457 DEBUG [5277]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:19.457 SQL [5277]: pgsql_db_connect() -- 00:35:19.461 DEBUG [5277]: Database connection successful -- 00:35:19.461 INFO [5277]: _SERVER found -- 00:35:19.461 INFO [5277]: REMOTE_ADDR = 192.168.1.13 -- 00:35:19.461 INFO [5277]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:35:19.461 INFO [5277]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=qphvgbuktlsrri1b6br115bbms6sn4br -- 00:35:19.461 INFO [5277]: QUERY_STRING = /member -- 00:35:19.461 INFO [5277]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:19.504 INFO [5277]: COREGRADE is stopping... -- 00:35:19.504 DEBUG [5277]: Closing database connection -- 00:35:19.504 SQL [5277]: pgsql_close() -- 00:35:20.072 INFO [5277]: COREGRADE is starting... -- 00:35:20.072 INFO [5277]: Version from config: 1.0 -- 00:35:20.072 DEBUG [5277]: Connecting to database... -- 00:35:20.072 DEBUG [5277]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:20.072 SQL [5277]: pgsql_db_connect() -- 00:35:20.077 DEBUG [5277]: Database connection successful -- 00:35:20.077 INFO [5277]: _SERVER found -- 00:35:20.077 INFO [5277]: REMOTE_ADDR = 192.168.1.13 -- 00:35:20.077 INFO [5277]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:35:20.077 INFO [5277]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=qphvgbuktlsrri1b6br115bbms6sn4br -- 00:35:20.077 INFO [5277]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:35:20.077 INFO [5277]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:20.088 INFO [5277]: COREGRADE is stopping... -- 00:35:20.088 DEBUG [5277]: Closing database connection -- 00:35:20.088 SQL [5277]: pgsql_close() -- 00:35:20.139 INFO [5277]: COREGRADE is starting... -- 00:35:20.140 INFO [5277]: Version from config: 1.0 -- 00:35:20.140 DEBUG [5277]: Connecting to database... -- 00:35:20.140 DEBUG [5277]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:20.140 SQL [5277]: pgsql_db_connect() -- 00:35:20.144 DEBUG [5277]: Database connection successful -- 00:35:20.144 INFO [5277]: _SERVER found -- 00:35:20.144 INFO [5277]: REMOTE_ADDR = 192.168.1.13 -- 00:35:20.144 INFO [5277]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:35:20.144 INFO [5277]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=qphvgbuktlsrri1b6br115bbms6sn4br -- 00:35:20.144 INFO [5277]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:35:20.144 INFO [5277]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:20.155 INFO [5277]: COREGRADE is stopping... -- 00:35:20.155 DEBUG [5277]: Closing database connection -- 00:35:20.155 SQL [5277]: pgsql_close() -- 00:35:22.482 INFO [5277]: COREGRADE is starting... -- 00:35:22.482 INFO [5277]: Version from config: 1.0 -- 00:35:22.482 DEBUG [5277]: Connecting to database... -- 00:35:22.482 DEBUG [5277]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:22.482 SQL [5277]: pgsql_db_connect() -- 00:35:22.487 DEBUG [5277]: Database connection successful -- 00:35:22.487 INFO [5277]: _SERVER found -- 00:35:22.487 INFO [5277]: REMOTE_ADDR = 192.168.1.13 -- 00:35:22.487 INFO [5277]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:35:22.487 INFO [5277]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=qphvgbuktlsrri1b6br115bbms6sn4br -- 00:35:22.487 INFO [5277]: QUERY_STRING = /member/configure -- 00:35:22.487 INFO [5277]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:22.527 INFO [5277]: COREGRADE is stopping... -- 00:35:22.527 DEBUG [5277]: Closing database connection -- 00:35:22.527 SQL [5277]: pgsql_close() -- 00:35:23.254 INFO [5277]: COREGRADE is starting... -- 00:35:23.254 INFO [5277]: Version from config: 1.0 -- 00:35:23.254 DEBUG [5277]: Connecting to database... -- 00:35:23.254 DEBUG [5277]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:23.254 SQL [5277]: pgsql_db_connect() -- 00:35:23.264 INFO [5284]: COREGRADE is starting... -- 00:35:23.265 INFO [5284]: Version from config: 1.0 -- 00:35:23.265 DEBUG [5284]: Connecting to database... -- 00:35:23.265 DEBUG [5284]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:23.265 SQL [5284]: pgsql_db_connect() -- 00:35:23.258 DEBUG [5277]: Database connection successful -- 00:35:23.258 INFO [5277]: _SERVER found -- 00:35:23.258 INFO [5277]: REMOTE_ADDR = 192.168.1.13 -- 00:35:23.258 INFO [5277]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:35:23.258 INFO [5277]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=qphvgbuktlsrri1b6br115bbms6sn4br -- 00:35:23.258 INFO [5277]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:35:23.258 INFO [5277]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:23.270 INFO [5277]: COREGRADE is stopping... -- 00:35:23.270 DEBUG [5277]: Closing database connection -- 00:35:23.270 SQL [5277]: pgsql_close() -- 00:35:23.269 DEBUG [5284]: Database connection successful -- 00:35:23.269 INFO [5284]: _SERVER found -- 00:35:23.269 INFO [5284]: REMOTE_ADDR = 192.168.1.13 -- 00:35:23.269 INFO [5284]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:35:23.269 INFO [5284]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=qphvgbuktlsrri1b6br115bbms6sn4br -- 00:35:23.269 INFO [5284]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:35:23.269 INFO [5284]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:23.281 INFO [5284]: COREGRADE is stopping... -- 00:35:23.281 DEBUG [5284]: Closing database connection -- 00:35:23.281 SQL [5284]: pgsql_close() -- 00:35:27.252 INFO [5284]: COREGRADE is starting... -- 00:35:27.252 INFO [5284]: Version from config: 1.0 -- 00:35:27.252 DEBUG [5284]: Connecting to database... -- 00:35:27.252 DEBUG [5284]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:27.252 SQL [5284]: pgsql_db_connect() -- 00:35:27.257 DEBUG [5284]: Database connection successful -- 00:35:27.257 INFO [5284]: _SERVER found -- 00:35:27.257 INFO [5284]: REMOTE_ADDR = 192.168.1.13 -- 00:35:27.257 INFO [5284]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:35:27.257 INFO [5284]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=qphvgbuktlsrri1b6br115bbms6sn4br -- 00:35:27.257 INFO [5284]: QUERY_STRING = /member/configure -- 00:35:27.257 INFO [5284]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:27.297 INFO [5284]: COREGRADE is stopping... -- 00:35:27.297 DEBUG [5284]: Closing database connection -- 00:35:27.297 SQL [5284]: pgsql_close() -- 00:35:27.991 INFO [5284]: COREGRADE is starting... -- 00:35:27.991 INFO [5284]: Version from config: 1.0 -- 00:35:27.991 DEBUG [5284]: Connecting to database... -- 00:35:27.991 DEBUG [5284]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:27.991 SQL [5284]: pgsql_db_connect() -- 00:35:27.996 DEBUG [5284]: Database connection successful -- 00:35:27.996 INFO [5284]: _SERVER found -- 00:35:27.996 INFO [5284]: REMOTE_ADDR = 192.168.1.13 -- 00:35:27.996 INFO [5284]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:35:27.996 INFO [5284]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=qphvgbuktlsrri1b6br115bbms6sn4br -- 00:35:27.996 INFO [5284]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:35:27.996 INFO [5284]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:28.007 INFO [5284]: COREGRADE is stopping... -- 00:35:28.007 DEBUG [5284]: Closing database connection -- 00:35:28.007 SQL [5284]: pgsql_close() -- 00:35:30.075 INFO [5284]: COREGRADE is starting... -- 00:35:30.075 INFO [5284]: Version from config: 1.0 -- 00:35:30.075 DEBUG [5284]: Connecting to database... -- 00:35:30.075 DEBUG [5284]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:30.075 SQL [5284]: pgsql_db_connect() -- 00:35:30.081 INFO [5287]: COREGRADE is starting... -- 00:35:30.081 INFO [5287]: Version from config: 1.0 -- 00:35:30.081 DEBUG [5287]: Connecting to database... -- 00:35:30.081 DEBUG [5287]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:30.081 SQL [5287]: pgsql_db_connect() -- 00:35:30.079 DEBUG [5284]: Database connection successful -- 00:35:30.079 INFO [5284]: _SERVER found -- 00:35:30.079 INFO [5284]: REMOTE_ADDR = 192.168.1.13 -- 00:35:30.079 INFO [5284]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:35:30.079 INFO [5284]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=qphvgbuktlsrri1b6br115bbms6sn4br -- 00:35:30.079 INFO [5284]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:35:30.079 INFO [5284]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:30.091 INFO [5284]: COREGRADE is stopping... -- 00:35:30.091 DEBUG [5284]: Closing database connection -- 00:35:30.091 SQL [5284]: pgsql_close() -- 00:35:30.086 DEBUG [5287]: Database connection successful -- 00:35:30.086 INFO [5287]: _SERVER found -- 00:35:30.086 INFO [5287]: REMOTE_ADDR = 192.168.1.13 -- 00:35:30.086 INFO [5287]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:35:30.086 INFO [5287]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=qphvgbuktlsrri1b6br115bbms6sn4br -- 00:35:30.086 INFO [5287]: QUERY_STRING = /member -- 00:35:30.086 INFO [5287]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:30.127 INFO [5287]: COREGRADE is stopping... -- 00:35:30.127 DEBUG [5287]: Closing database connection -- 00:35:30.127 SQL [5287]: pgsql_close() -- 00:35:31.643 INFO [5287]: COREGRADE is starting... -- 00:35:31.643 INFO [5287]: Version from config: 1.0 -- 00:35:31.643 DEBUG [5287]: Connecting to database... -- 00:35:31.644 DEBUG [5287]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:31.644 SQL [5287]: pgsql_db_connect() -- 00:35:31.648 DEBUG [5287]: Database connection successful -- 00:35:31.648 INFO [5287]: _SERVER found -- 00:35:31.648 INFO [5287]: REMOTE_ADDR = 192.168.1.13 -- 00:35:31.648 INFO [5287]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:35:31.648 INFO [5287]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=qphvgbuktlsrri1b6br115bbms6sn4br -- 00:35:31.648 INFO [5287]: QUERY_STRING = /member -- 00:35:31.648 INFO [5287]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:31.688 INFO [5287]: COREGRADE is stopping... -- 00:35:31.688 DEBUG [5287]: Closing database connection -- 00:35:31.688 SQL [5287]: pgsql_close() -- 00:35:34.622 INFO [5288]: COREGRADE is starting... -- 00:35:34.622 INFO [5288]: Version from config: 1.0 -- 00:35:34.622 DEBUG [5288]: Connecting to database... -- 00:35:34.622 DEBUG [5288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:34.622 SQL [5288]: pgsql_db_connect() -- 00:35:34.627 DEBUG [5288]: Database connection successful -- 00:35:34.627 INFO [5288]: _SERVER found -- 00:35:34.627 INFO [5288]: REMOTE_ADDR = 192.168.1.13 -- 00:35:34.627 INFO [5288]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:35:34.627 INFO [5288]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=qphvgbuktlsrri1b6br115bbms6sn4br -- 00:35:34.627 INFO [5288]: QUERY_STRING = /member -- 00:35:34.627 INFO [5288]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:34.669 INFO [5288]: COREGRADE is stopping... -- 00:35:34.669 DEBUG [5288]: Closing database connection -- 00:35:34.669 SQL [5288]: pgsql_close() -- 00:35:35.204 INFO [5288]: COREGRADE is starting... -- 00:35:35.204 INFO [5288]: Version from config: 1.0 -- 00:35:35.204 DEBUG [5288]: Connecting to database... -- 00:35:35.204 DEBUG [5288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:35.204 SQL [5288]: pgsql_db_connect() -- 00:35:35.208 DEBUG [5288]: Database connection successful -- 00:35:35.208 INFO [5288]: _SERVER found -- 00:35:35.208 INFO [5288]: REMOTE_ADDR = 192.168.1.13 -- 00:35:35.208 INFO [5288]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:35:35.208 INFO [5288]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=qphvgbuktlsrri1b6br115bbms6sn4br -- 00:35:35.208 INFO [5288]: QUERY_STRING = /member -- 00:35:35.208 INFO [5288]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:35.248 INFO [5288]: COREGRADE is stopping... -- 00:35:35.248 DEBUG [5288]: Closing database connection -- 00:35:35.248 SQL [5288]: pgsql_close() -- 00:35:38.527 INFO [5288]: COREGRADE is starting... -- 00:35:38.528 INFO [5288]: Version from config: 1.0 -- 00:35:38.528 DEBUG [5288]: Connecting to database... -- 00:35:38.528 DEBUG [5288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:38.528 SQL [5288]: pgsql_db_connect() -- 00:35:38.532 DEBUG [5288]: Database connection successful -- 00:35:38.532 INFO [5288]: _SERVER found -- 00:35:38.532 INFO [5288]: REMOTE_ADDR = 192.168.1.13 -- 00:35:38.532 INFO [5288]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:35:38.532 INFO [5288]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=qphvgbuktlsrri1b6br115bbms6sn4br -- 00:35:38.532 INFO [5288]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:35:38.532 INFO [5288]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:38.544 INFO [5288]: COREGRADE is stopping... -- 00:35:38.544 DEBUG [5288]: Closing database connection -- 00:35:38.544 SQL [5288]: pgsql_close() -- 00:35:40.473 INFO [5288]: COREGRADE is starting... -- 00:35:40.474 INFO [5288]: Version from config: 1.0 -- 00:35:40.474 DEBUG [5288]: Connecting to database... -- 00:35:40.474 DEBUG [5288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:40.474 SQL [5288]: pgsql_db_connect() -- 00:35:40.478 DEBUG [5288]: Database connection successful -- 00:35:40.478 INFO [5288]: _SERVER found -- 00:35:40.478 INFO [5288]: REMOTE_ADDR = 192.168.1.13 -- 00:35:40.478 INFO [5288]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:35:40.478 INFO [5288]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=qphvgbuktlsrri1b6br115bbms6sn4br -- 00:35:40.478 INFO [5288]: QUERY_STRING = /member/page -- 00:35:40.478 INFO [5288]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:40.520 INFO [5288]: COREGRADE is stopping... -- 00:35:40.520 DEBUG [5288]: Closing database connection -- 00:35:40.520 SQL [5288]: pgsql_close() -- 00:35:42.374 INFO [5288]: COREGRADE is starting... -- 00:35:42.375 INFO [5288]: Version from config: 1.0 -- 00:35:42.375 DEBUG [5288]: Connecting to database... -- 00:35:42.375 DEBUG [5288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:42.375 SQL [5288]: pgsql_db_connect() -- 00:35:42.379 DEBUG [5288]: Database connection successful -- 00:35:42.379 INFO [5288]: _SERVER found -- 00:35:42.379 INFO [5288]: REMOTE_ADDR = 192.168.1.13 -- 00:35:42.379 INFO [5288]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:35:42.379 INFO [5288]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=qphvgbuktlsrri1b6br115bbms6sn4br -- 00:35:42.379 INFO [5288]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:35:42.379 INFO [5288]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:42.390 INFO [5288]: COREGRADE is stopping... -- 00:35:42.390 DEBUG [5288]: Closing database connection -- 00:35:42.390 SQL [5288]: pgsql_close() -- 00:35:45.771 INFO [5288]: COREGRADE is starting... -- 00:35:45.772 INFO [5288]: Version from config: 1.0 -- 00:35:45.772 DEBUG [5288]: Connecting to database... -- 00:35:45.772 DEBUG [5288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:45.772 SQL [5288]: pgsql_db_connect() -- 00:35:45.776 DEBUG [5288]: Database connection successful -- 00:35:45.776 INFO [5288]: _SERVER found -- 00:35:45.776 INFO [5288]: REMOTE_ADDR = 192.168.1.13 -- 00:35:45.776 INFO [5288]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:35:45.776 INFO [5288]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=qphvgbuktlsrri1b6br115bbms6sn4br -- 00:35:45.776 INFO [5288]: QUERY_STRING = /member -- 00:35:45.776 INFO [5288]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:45.816 INFO [5288]: COREGRADE is stopping... -- 00:35:45.816 DEBUG [5288]: Closing database connection -- 00:35:45.816 SQL [5288]: pgsql_close() -- 00:35:46.446 INFO [5288]: COREGRADE is starting... -- 00:35:46.447 INFO [5288]: Version from config: 1.0 -- 00:35:46.447 DEBUG [5288]: Connecting to database... -- 00:35:46.447 DEBUG [5288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:46.447 SQL [5288]: pgsql_db_connect() -- 00:35:46.451 DEBUG [5288]: Database connection successful -- 00:35:46.451 INFO [5288]: _SERVER found -- 00:35:46.451 INFO [5288]: REMOTE_ADDR = 192.168.1.13 -- 00:35:46.451 INFO [5288]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:35:46.451 INFO [5288]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=qphvgbuktlsrri1b6br115bbms6sn4br -- 00:35:46.451 INFO [5288]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:35:46.451 INFO [5288]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:46.462 INFO [5288]: COREGRADE is stopping... -- 00:35:46.462 DEBUG [5288]: Closing database connection -- 00:35:46.462 SQL [5288]: pgsql_close() -- 00:35:47.768 INFO [5288]: COREGRADE is starting... -- 00:35:47.768 INFO [5288]: Version from config: 1.0 -- 00:35:47.769 DEBUG [5288]: Connecting to database... -- 00:35:47.769 DEBUG [5288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:47.769 SQL [5288]: pgsql_db_connect() -- 00:35:47.773 DEBUG [5288]: Database connection successful -- 00:35:47.773 INFO [5288]: _SERVER found -- 00:35:47.773 INFO [5288]: REMOTE_ADDR = 192.168.1.13 -- 00:35:47.773 INFO [5288]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:35:47.773 INFO [5288]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=qphvgbuktlsrri1b6br115bbms6sn4br -- 00:35:47.773 INFO [5288]: QUERY_STRING = /member/page -- 00:35:47.773 INFO [5288]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:47.814 INFO [5288]: COREGRADE is stopping... -- 00:35:47.814 DEBUG [5288]: Closing database connection -- 00:35:47.814 SQL [5288]: pgsql_close() -- 00:35:48.466 INFO [5288]: COREGRADE is starting... -- 00:35:48.466 INFO [5288]: Version from config: 1.0 -- 00:35:48.466 DEBUG [5288]: Connecting to database... -- 00:35:48.466 DEBUG [5288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:48.466 SQL [5288]: pgsql_db_connect() -- 00:35:48.470 DEBUG [5288]: Database connection successful -- 00:35:48.470 INFO [5288]: _SERVER found -- 00:35:48.470 INFO [5288]: REMOTE_ADDR = 192.168.1.13 -- 00:35:48.470 INFO [5288]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:35:48.470 INFO [5288]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=qphvgbuktlsrri1b6br115bbms6sn4br -- 00:35:48.470 INFO [5288]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:35:48.470 INFO [5288]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:48.482 INFO [5288]: COREGRADE is stopping... -- 00:35:48.482 DEBUG [5288]: Closing database connection -- 00:35:48.482 SQL [5288]: pgsql_close() -- 00:35:56.560 INFO [3912]: COREGRADE is starting... -- 00:35:56.560 INFO [3912]: Version from config: 1.0 -- 00:35:56.560 DEBUG [3912]: Connecting to database... -- 00:35:56.560 DEBUG [3912]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:56.560 SQL [3912]: pgsql_db_connect() -- 00:35:56.565 DEBUG [3912]: Database connection successful -- 00:35:56.565 INFO [3912]: _SERVER found -- 00:35:56.565 INFO [3912]: REMOTE_ADDR = 192.168.1.13 -- 00:35:56.565 INFO [3912]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:35:56.565 INFO [3912]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=qphvgbuktlsrri1b6br115bbms6sn4br -- 00:35:56.565 INFO [3912]: QUERY_STRING = /member -- 00:35:56.565 INFO [3912]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:56.606 INFO [3912]: COREGRADE is stopping... -- 00:35:56.606 DEBUG [3912]: Closing database connection -- 00:35:56.606 SQL [3912]: pgsql_close() -- 00:35:57.571 INFO [3912]: COREGRADE is starting... -- 00:35:57.571 INFO [3912]: Version from config: 1.0 -- 00:35:57.571 DEBUG [3912]: Connecting to database... -- 00:35:57.571 DEBUG [3912]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:57.571 SQL [3912]: pgsql_db_connect() -- 00:35:57.576 DEBUG [3912]: Database connection successful -- 00:35:57.576 INFO [3912]: _SERVER found -- 00:35:57.576 INFO [3912]: REMOTE_ADDR = 192.168.1.13 -- 00:35:57.576 INFO [3912]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:35:57.576 INFO [3912]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=qphvgbuktlsrri1b6br115bbms6sn4br -- 00:35:57.576 INFO [3912]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:35:57.576 INFO [3912]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:57.587 INFO [3912]: COREGRADE is stopping... -- 00:35:57.587 DEBUG [3912]: Closing database connection -- 00:35:57.587 SQL [3912]: pgsql_close() -- 00:35:59.409 INFO [3912]: COREGRADE is starting... -- 00:35:59.409 INFO [3912]: Version from config: 1.0 -- 00:35:59.409 DEBUG [3912]: Connecting to database... -- 00:35:59.409 DEBUG [3912]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:59.409 SQL [3912]: pgsql_db_connect() -- 00:35:59.413 DEBUG [3912]: Database connection successful -- 00:35:59.413 INFO [3912]: _SERVER found -- 00:35:59.413 INFO [3912]: REMOTE_ADDR = 192.168.1.13 -- 00:35:59.413 INFO [3912]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:35:59.413 INFO [3912]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=qphvgbuktlsrri1b6br115bbms6sn4br -- 00:35:59.413 INFO [3912]: QUERY_STRING = /member/page -- 00:35:59.413 INFO [3912]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:59.455 INFO [3912]: COREGRADE is stopping... -- 00:35:59.455 DEBUG [3912]: Closing database connection -- 00:35:59.455 SQL [3912]: pgsql_close() -- 00:36:00.027 INFO [3912]: COREGRADE is starting... -- 00:36:00.027 INFO [3912]: Version from config: 1.0 -- 00:36:00.027 DEBUG [3912]: Connecting to database... -- 00:36:00.027 DEBUG [3912]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:36:00.027 SQL [3912]: pgsql_db_connect() -- 00:36:00.032 DEBUG [3912]: Database connection successful -- 00:36:00.032 INFO [3912]: _SERVER found -- 00:36:00.032 INFO [3912]: REMOTE_ADDR = 192.168.1.13 -- 00:36:00.032 INFO [3912]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:36:00.032 INFO [3912]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=qphvgbuktlsrri1b6br115bbms6sn4br -- 00:36:00.032 INFO [3912]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:36:00.032 INFO [3912]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:36:00.043 INFO [3912]: COREGRADE is stopping... -- 00:36:00.043 DEBUG [3912]: Closing database connection -- 00:36:00.044 SQL [3912]: pgsql_close() -- 00:43:29.230 INFO [3896]: COREGRADE is starting... -- 00:43:29.230 INFO [3896]: Version from config: 1.0 -- 00:43:29.230 DEBUG [3896]: Connecting to database... -- 00:43:29.230 DEBUG [3896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:43:29.230 SQL [3896]: pgsql_db_connect() -- 00:43:29.234 DEBUG [3896]: Database connection successful -- 00:43:29.234 INFO [3896]: _SERVER found -- 00:43:29.234 INFO [3896]: REMOTE_ADDR = 192.168.1.13 -- 00:43:29.234 INFO [3896]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:43:29.234 INFO [3896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=qphvgbuktlsrri1b6br115bbms6sn4br -- 00:43:29.234 INFO [3896]: QUERY_STRING = /member/page -- 00:43:29.234 INFO [3896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:43:29.278 INFO [3896]: COREGRADE is stopping... -- 00:43:29.278 DEBUG [3896]: Closing database connection -- 00:43:29.278 SQL [3896]: pgsql_close() -- 00:43:29.991 INFO [3896]: COREGRADE is starting... -- 00:43:29.991 INFO [3896]: Version from config: 1.0 -- 00:43:29.991 DEBUG [3896]: Connecting to database... -- 00:43:29.991 DEBUG [3896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:43:29.991 SQL [3896]: pgsql_db_connect() -- 00:43:29.995 DEBUG [3896]: Database connection successful -- 00:43:29.995 INFO [3896]: _SERVER found -- 00:43:29.995 INFO [3896]: REMOTE_ADDR = 192.168.1.13 -- 00:43:29.995 INFO [3896]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:43:29.995 INFO [3896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2rc7evbl5jf6em4lp160afqr6u0blotc -- 00:43:29.995 INFO [3896]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:43:29.995 INFO [3896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:43:30.006 INFO [3896]: COREGRADE is stopping... -- 00:43:30.006 DEBUG [3896]: Closing database connection -- 00:43:30.006 SQL [3896]: pgsql_close() -- 00:43:30.143 INFO [3896]: COREGRADE is starting... -- 00:43:30.143 INFO [3896]: Version from config: 1.0 -- 00:43:30.143 DEBUG [3896]: Connecting to database... -- 00:43:30.143 DEBUG [3896]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:43:30.143 SQL [3896]: pgsql_db_connect() -- 00:43:30.147 DEBUG [3896]: Database connection successful -- 00:43:30.147 INFO [3896]: _SERVER found -- 00:43:30.147 INFO [3896]: REMOTE_ADDR = 192.168.1.13 -- 00:43:30.147 INFO [3896]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:43:30.147 INFO [3896]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2rc7evbl5jf6em4lp160afqr6u0blotc -- 00:43:30.147 INFO [3896]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:43:30.147 INFO [3896]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:43:30.158 INFO [3896]: COREGRADE is stopping... -- 00:43:30.158 DEBUG [3896]: Closing database connection -- 00:43:30.158 SQL [3896]: pgsql_close() -- 00:59:59.657 INFO [3895]: COREGRADE is starting... -- 00:59:59.658 INFO [3895]: Version from config: 1.0 -- 00:59:59.658 DEBUG [3895]: Connecting to database... -- 00:59:59.658 DEBUG [3895]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:59:59.658 SQL [3895]: pgsql_db_connect() -- 00:59:59.662 DEBUG [3895]: Database connection successful -- 00:59:59.662 INFO [3895]: _SERVER found -- 00:59:59.662 INFO [3895]: REMOTE_ADDR = 192.168.1.13 -- 00:59:59.662 INFO [3895]: SERVER_NAME = oameye.works.coregrade.com -- 00:59:59.662 INFO [3895]: QUERY_STRING = -- 00:59:59.662 INFO [3895]: HTTP_X_FORWARDED_FOR = 38.68.36.214 -- 00:59:59.701 INFO [3895]: COREGRADE is stopping... -- 00:59:59.701 DEBUG [3895]: Closing database connection -- 00:59:59.701 SQL [3895]: pgsql_close() -- 03:16:01.468 INFO [3898]: COREGRADE is starting... -- 03:16:01.468 INFO [3898]: Version from config: 1.0 -- 03:16:01.468 DEBUG [3898]: Connecting to database... -- 03:16:01.468 DEBUG [3898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:16:01.468 SQL [3898]: pgsql_db_connect() -- 03:16:01.473 DEBUG [3898]: Database connection successful -- 03:16:01.473 INFO [3898]: _SERVER found -- 03:16:01.473 INFO [3898]: REMOTE_ADDR = 192.168.1.13 -- 03:16:01.473 INFO [3898]: SERVER_NAME = tokslaw.works.coregrade.com -- 03:16:01.473 INFO [3898]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361 -- 03:16:01.473 INFO [3898]: QUERY_STRING = /auth -- 03:16:01.473 INFO [3898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 03:16:01.508 INFO [3898]: COREGRADE is stopping... -- 03:16:01.508 DEBUG [3898]: Closing database connection -- 03:16:01.508 SQL [3898]: pgsql_close() -- 03:16:03.022 INFO [3898]: COREGRADE is starting... -- 03:16:03.022 INFO [3898]: Version from config: 1.0 -- 03:16:03.022 DEBUG [3898]: Connecting to database... -- 03:16:03.022 DEBUG [3898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:16:03.022 SQL [3898]: pgsql_db_connect() -- 03:16:03.026 DEBUG [3898]: Database connection successful -- 03:16:03.026 INFO [3898]: _SERVER found -- 03:16:03.026 INFO [3898]: REMOTE_ADDR = 192.168.1.13 -- 03:16:03.026 INFO [3898]: SERVER_NAME = tokslaw.works.coregrade.com -- 03:16:03.026 INFO [3898]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=m3r23ffigkffthi7u7efs2lbq2tq1avs -- 03:16:03.026 INFO [3898]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 03:16:03.026 INFO [3898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 03:16:03.038 INFO [3898]: COREGRADE is stopping... -- 03:16:03.038 DEBUG [3898]: Closing database connection -- 03:16:03.038 SQL [3898]: pgsql_close() -- 03:16:03.711 INFO [3898]: COREGRADE is starting... -- 03:16:03.711 INFO [3898]: Version from config: 1.0 -- 03:16:03.711 DEBUG [3898]: Connecting to database... -- 03:16:03.711 DEBUG [3898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:16:03.711 SQL [3898]: pgsql_db_connect() -- 03:16:03.715 DEBUG [3898]: Database connection successful -- 03:16:03.715 INFO [3898]: _SERVER found -- 03:16:03.715 INFO [3898]: REMOTE_ADDR = 192.168.1.13 -- 03:16:03.715 INFO [3898]: SERVER_NAME = tokslaw.works.coregrade.com -- 03:16:03.715 INFO [3898]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=m3r23ffigkffthi7u7efs2lbq2tq1avs -- 03:16:03.715 INFO [3898]: QUERY_STRING = /app-assets/data/locales/en.json -- 03:16:03.715 INFO [3898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 03:16:03.727 INFO [3898]: COREGRADE is stopping... -- 03:16:03.727 DEBUG [3898]: Closing database connection -- 03:16:03.727 SQL [3898]: pgsql_close() -- 03:23:30.389 INFO [6381]: COREGRADE is starting... -- 03:23:30.389 INFO [6381]: Version from config: 1.0 -- 03:23:30.389 DEBUG [6381]: Connecting to database... -- 03:23:30.389 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:23:30.389 SQL [6381]: pgsql_db_connect() -- 03:23:30.395 DEBUG [6381]: Database connection successful -- 03:23:30.395 INFO [6381]: _SERVER found -- 03:23:30.395 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 03:23:30.395 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 03:23:30.395 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=m3r23ffigkffthi7u7efs2lbq2tq1avs -- 03:23:30.395 INFO [6381]: QUERY_STRING = /auth -- 03:23:30.395 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 03:23:30.434 INFO [6381]: COREGRADE is stopping... -- 03:23:30.434 DEBUG [6381]: Closing database connection -- 03:23:30.434 SQL [6381]: pgsql_close() -- 03:23:31.801 INFO [6381]: COREGRADE is starting... -- 03:23:31.801 INFO [6381]: Version from config: 1.0 -- 03:23:31.801 DEBUG [6381]: Connecting to database... -- 03:23:31.801 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:23:31.801 SQL [6381]: pgsql_db_connect() -- 03:23:31.805 DEBUG [6381]: Database connection successful -- 03:23:31.805 INFO [6381]: _SERVER found -- 03:23:31.805 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 03:23:31.805 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 03:23:31.805 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=30ob2ikfqr0a2l1b9umsqgmo5etgl097 -- 03:23:31.805 INFO [6381]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 03:23:31.805 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 03:23:31.817 INFO [6381]: COREGRADE is stopping... -- 03:23:31.817 DEBUG [6381]: Closing database connection -- 03:23:31.817 SQL [6381]: pgsql_close() -- 03:23:31.819 INFO [6382]: COREGRADE is starting... -- 03:23:31.820 INFO [6382]: Version from config: 1.0 -- 03:23:31.820 DEBUG [6382]: Connecting to database... -- 03:23:31.820 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:23:31.820 SQL [6382]: pgsql_db_connect() -- 03:23:31.824 DEBUG [6382]: Database connection successful -- 03:23:31.824 INFO [6382]: _SERVER found -- 03:23:31.824 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 03:23:31.824 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 03:23:31.824 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=30ob2ikfqr0a2l1b9umsqgmo5etgl097 -- 03:23:31.824 INFO [6382]: QUERY_STRING = /app-assets/data/locales/en.json -- 03:23:31.824 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 03:23:31.838 INFO [6382]: COREGRADE is stopping... -- 03:23:31.838 DEBUG [6382]: Closing database connection -- 03:23:31.838 SQL [6382]: pgsql_close() -- 04:42:47.017 INFO [6383]: COREGRADE is starting... -- 04:42:47.017 INFO [6383]: Version from config: 1.0 -- 04:42:47.017 DEBUG [6383]: Connecting to database... -- 04:42:47.017 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:42:47.017 SQL [6383]: pgsql_db_connect() -- 04:42:47.065 INFO [6383]: COREGRADE is starting... -- 04:42:47.065 INFO [6383]: Version from config: 1.0 -- 04:42:47.065 DEBUG [6383]: Connecting to database... -- 04:42:47.065 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:42:47.065 SQL [6383]: pgsql_db_connect() -- 04:42:47.070 DEBUG [6383]: Database connection successful -- 04:42:47.070 INFO [6383]: _SERVER found -- 04:42:47.070 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 04:42:47.070 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 04:42:47.070 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 04:42:47.070 INFO [6383]: QUERY_STRING = -- 04:42:47.070 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 04:42:47.070 INFO [6383]: SystemStatus()09-09-********~************ -- 04:42:47.070 INFO [6383]: long coregrade_api_main(CVars in, CVars &out) -- 04:42:47.070 INFO [6383]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 04:42:47.070 INFO [6383]: account calls -- 04:42:47.070 INFO [6383]: account_calls() -- 04:42:47.070 INFO [6383]: LoginCoreGradeAccount() -- 04:42:47.070 FLOG_MAX [6383]: REQ_STRING(username) -- 04:42:47.070 FLOG_MAX [6383]: REQ_STRING(password) -- 04:42:47.071 FLOG_MAX [6383]: REQ_STRING(sessionid) -- 04:42:47.071 FLOG_MAX [6383]: long load_db_record( CVars &rec, const char * query, ... ) -- 04:42:47.071 SQL [6383]: pgsql_query() -- 04:42:47.071 SQL [6383]: About to run query: -- 04:42:47.071 SQL [6383]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 04:42:47.074 SQL [6383]: Found rows: 1 -- 04:42:47.074 FLOG_MAX [6383]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 04:42:47.074 INFO [6383]: long SessionCheck(long uid, const char *sessionid, int create ) -- 04:42:47.075 SQL [6383]: pgsql_exec() -- 04:42:47.075 SQL [6383]: About to run query: -- 04:42:47.075 SQL [6383]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 04:42:47.076 SQL [6383]: PQcmdTuples: 1 -- 04:42:47.076 SQL [6383]: Affected rows: 1 -- 04:42:47.076 SQL [6383]: pgsql_exec() -- 04:42:47.076 SQL [6383]: About to run query: -- 04:42:47.076 SQL [6383]: DELETE FROM members_session WHERE member_id=5 -- 04:42:47.076 SQL [6383]: PQcmdTuples: 0 -- 04:42:47.076 SQL [6383]: Affected rows: 0 -- 04:42:47.076 SQL [6383]: pgsql_query() -- 04:42:47.076 SQL [6383]: About to run query: -- 04:42:47.076 SQL [6383]: SELECT * FROM members_session WHERE member_id=5 AND session<>'33280159DBFE1719E040B55C56FDAB5B' -- 04:42:47.077 SQL [6383]: Found rows: 0 -- 04:42:47.077 SQL [6383]: Found rows: 0 -- 04:42:47.077 FLOG_MAX [6383]: long load_db_record( CVars &rec, const char * query, ... ) -- 04:42:47.077 SQL [6383]: pgsql_query() -- 04:42:47.077 SQL [6383]: About to run query: -- 04:42:47.077 SQL [6383]: SELECT * FROM members_session WHERE member_id=5 AND session='33280159DBFE1719E040B55C56FDAB5B' -- 04:42:47.077 SQL [6383]: Found rows: 0 -- 04:42:47.078 SQL [6383]: Found rows: 0 -- 04:42:47.078 FLOG_MAX [6383]: insert_db_record() -- 04:42:47.078 SQL [6383]: pgsql_exec() -- 04:42:47.078 SQL [6383]: About to run query: -- 04:42:47.078 SQL [6383]: INSERT INTO members_session (member_id,session) VALUES ('5','33280159DBFE1719E040B55C56FDAB5B') -- 04:42:47.079 SQL [6383]: PQcmdTuples: 1 -- 04:42:47.079 SQL [6383]: Affected rows: 1 -- 04:42:47.079 FLOG_MAX [6383]: SELECT currval('members_session_id_seq') -- 04:42:47.079 SQL [6383]: pgsql_query() -- 04:42:47.079 SQL [6383]: About to run query: -- 04:42:47.079 SQL [6383]: SELECT currval('members_session_id_seq') -- 04:42:47.079 SQL [6383]: Found rows: 1 -- 04:42:47.079 INFO [6383]: CreateDefaultPage() -- 04:42:47.079 FLOG_MAX [6383]: long load_db_record( CVars &rec, const char * query, ... ) -- 04:42:47.079 SQL [6383]: pgsql_query() -- 04:42:47.080 SQL [6383]: About to run query: -- 04:42:47.080 SQL [6383]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 04:42:47.080 SQL [6383]: Found rows: 1 -- 04:42:47.080 FLOG_MAX [6383]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 04:42:47.080 SQL [6383]: pgsql_query() -- 04:42:47.080 SQL [6383]: About to run query: -- 04:42:47.080 SQL [6383]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 04:42:47.080 SQL [6383]: Found rows: 1 -- 04:42:47.080 INFO [6383]: /CreateDefaultPage() -- 04:42:47.080 INFO [6383]: /LoginCoreGradeAccount() -- 04:42:47.080 INFO [6383]: RET: added=2020-02-05 06:47:23.982154 -- 04:42:47.080 INFO [6383]: RET: email=ameye+11@chiefsoft.com -- 04:42:47.080 INFO [6383]: RET: firstname=Olu -- 04:42:47.080 INFO [6383]: RET: id=5 -- 04:42:47.080 INFO [6383]: RET: last_login= -- 04:42:47.080 INFO [6383]: RET: lastname=Amey -- 04:42:47.080 INFO [6383]: RET: loc=192.168.1.13 -- 04:42:47.080 INFO [6383]: RET: member_id=5 -- 04:42:47.080 INFO [6383]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 04:42:47.080 INFO [6383]: RET: phone= -- 04:42:47.080 INFO [6383]: RET: pid= -- 04:42:47.080 INFO [6383]: RET: result=YES I GET TO BACK END -- 04:42:47.080 INFO [6383]: RET: sessionid=33280159DBFE1719E040B55C56FDAB5B -- 04:42:47.080 INFO [6383]: RET: status=1 -- 04:42:47.080 INFO [6383]: RET: stauts=OK -- 04:42:47.080 INFO [6383]: RET: username=ameye+11@chiefsoft.com -- 04:42:47.080 INFO [6383]: RET: verified= -- 04:42:47.082 INFO [6383]: COREGRADE is stopping... -- 04:42:47.082 DEBUG [6383]: Closing database connection -- 04:42:47.082 SQL [6383]: pgsql_close() -- 04:42:47.022 DEBUG [6383]: Database connection successful -- 04:42:47.022 INFO [6383]: _SERVER found -- 04:42:47.022 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 04:42:47.022 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 04:42:47.022 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 04:42:47.022 INFO [6383]: QUERY_STRING = /auth -- 04:42:47.022 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 04:42:47.082 INFO [6383]: COREGRADE is stopping... -- 04:42:47.082 DEBUG [6383]: Closing database connection -- 04:42:47.082 SQL [6383]: pgsql_close() -- 04:42:47.107 INFO [6383]: COREGRADE is starting... -- 04:42:47.107 INFO [6383]: Version from config: 1.0 -- 04:42:47.107 DEBUG [6383]: Connecting to database... -- 04:42:47.107 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:42:47.107 SQL [6383]: pgsql_db_connect() -- 04:42:47.111 DEBUG [6383]: Database connection successful -- 04:42:47.111 INFO [6383]: _SERVER found -- 04:42:47.111 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 04:42:47.111 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 04:42:47.111 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=fs5b5m0ku1hnbtskphm83ebonhvlg0o8 -- 04:42:47.111 INFO [6383]: QUERY_STRING = /member/index -- 04:42:47.111 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 04:42:47.149 INFO [6383]: COREGRADE is stopping... -- 04:42:47.149 DEBUG [6383]: Closing database connection -- 04:42:47.149 SQL [6383]: pgsql_close() -- 04:42:47.358 INFO [6383]: COREGRADE is starting... -- 04:42:47.359 INFO [6383]: Version from config: 1.0 -- 04:42:47.359 DEBUG [6383]: Connecting to database... -- 04:42:47.359 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:42:47.359 SQL [6383]: pgsql_db_connect() -- 04:42:47.363 DEBUG [6383]: Database connection successful -- 04:42:47.363 INFO [6383]: _SERVER found -- 04:42:47.363 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 04:42:47.363 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 04:42:47.363 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=fs5b5m0ku1hnbtskphm83ebonhvlg0o8 -- 04:42:47.363 INFO [6383]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 04:42:47.363 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 04:42:47.374 INFO [6383]: COREGRADE is stopping... -- 04:42:47.374 DEBUG [6383]: Closing database connection -- 04:42:47.374 SQL [6383]: pgsql_close() -- 04:42:47.393 INFO [6383]: COREGRADE is starting... -- 04:42:47.393 INFO [6383]: Version from config: 1.0 -- 04:42:47.393 DEBUG [6383]: Connecting to database... -- 04:42:47.393 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:42:47.393 SQL [6383]: pgsql_db_connect() -- 04:42:47.397 DEBUG [6383]: Database connection successful -- 04:42:47.397 INFO [6383]: _SERVER found -- 04:42:47.397 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 04:42:47.397 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 04:42:47.397 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=fs5b5m0ku1hnbtskphm83ebonhvlg0o8 -- 04:42:47.397 INFO [6383]: QUERY_STRING = /app-assets/data/locales/en.json -- 04:42:47.397 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 04:42:47.408 INFO [6383]: COREGRADE is stopping... -- 04:42:47.408 DEBUG [6383]: Closing database connection -- 04:42:47.408 SQL [6383]: pgsql_close() -- 04:51:49.725 INFO [6384]: COREGRADE is starting... -- 04:51:49.725 INFO [6384]: Version from config: 1.0 -- 04:51:49.725 DEBUG [6384]: Connecting to database... -- 04:51:49.725 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:51:49.725 SQL [6384]: pgsql_db_connect() -- 04:51:49.730 DEBUG [6384]: Database connection successful -- 04:51:49.730 INFO [6384]: _SERVER found -- 04:51:49.730 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 04:51:49.730 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 04:51:49.730 INFO [6384]: QUERY_STRING = -- 04:51:49.730 INFO [6384]: HTTP_X_FORWARDED_FOR = 39.98.62.28 -- 04:51:49.776 INFO [6384]: COREGRADE is stopping... -- 04:51:49.776 DEBUG [6384]: Closing database connection -- 04:51:49.776 SQL [6384]: pgsql_close() -- 05:26:19.648 INFO [6385]: COREGRADE is starting... -- 05:26:19.648 INFO [6385]: Version from config: 1.0 -- 05:26:19.648 DEBUG [6385]: Connecting to database... -- 05:26:19.648 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:26:19.648 SQL [6385]: pgsql_db_connect() -- 05:26:19.696 INFO [6385]: COREGRADE is starting... -- 05:26:19.696 INFO [6385]: Version from config: 1.0 -- 05:26:19.696 DEBUG [6385]: Connecting to database... -- 05:26:19.696 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:26:19.696 SQL [6385]: pgsql_db_connect() -- 05:26:19.701 DEBUG [6385]: Database connection successful -- 05:26:19.701 INFO [6385]: _SERVER found -- 05:26:19.701 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 05:26:19.701 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 05:26:19.701 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965 -- 05:26:19.701 INFO [6385]: QUERY_STRING = -- 05:26:19.701 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:26:19.701 INFO [6385]: SystemStatus()09-09-********~************ -- 05:26:19.701 INFO [6385]: long coregrade_api_main(CVars in, CVars &out) -- 05:26:19.701 INFO [6385]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 05:26:19.701 INFO [6385]: account calls -- 05:26:19.701 INFO [6385]: account_calls() -- 05:26:19.701 INFO [6385]: LoginCoreGradeAccount() -- 05:26:19.701 FLOG_MAX [6385]: REQ_STRING(username) -- 05:26:19.701 FLOG_MAX [6385]: REQ_STRING(password) -- 05:26:19.701 FLOG_MAX [6385]: REQ_STRING(sessionid) -- 05:26:19.701 FLOG_MAX [6385]: long load_db_record( CVars &rec, const char * query, ... ) -- 05:26:19.701 SQL [6385]: pgsql_query() -- 05:26:19.701 SQL [6385]: About to run query: -- 05:26:19.701 SQL [6385]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 05:26:19.705 SQL [6385]: Found rows: 1 -- 05:26:19.705 FLOG_MAX [6385]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 05:26:19.705 INFO [6385]: long SessionCheck(long uid, const char *sessionid, int create ) -- 05:26:19.705 SQL [6385]: pgsql_exec() -- 05:26:19.705 SQL [6385]: About to run query: -- 05:26:19.705 SQL [6385]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 05:26:19.707 SQL [6385]: PQcmdTuples: 1 -- 05:26:19.707 SQL [6385]: Affected rows: 1 -- 05:26:19.707 SQL [6385]: pgsql_exec() -- 05:26:19.707 SQL [6385]: About to run query: -- 05:26:19.707 SQL [6385]: DELETE FROM members_session WHERE member_id=5 -- 05:26:19.707 SQL [6385]: PQcmdTuples: 0 -- 05:26:19.707 SQL [6385]: Affected rows: 0 -- 05:26:19.707 SQL [6385]: pgsql_query() -- 05:26:19.707 SQL [6385]: About to run query: -- 05:26:19.707 SQL [6385]: SELECT * FROM members_session WHERE member_id=5 AND session<>'26470B0F2D94551786AA0E98A3965DDD' -- 05:26:19.707 SQL [6385]: Found rows: 0 -- 05:26:19.707 SQL [6385]: Found rows: 0 -- 05:26:19.707 FLOG_MAX [6385]: long load_db_record( CVars &rec, const char * query, ... ) -- 05:26:19.707 SQL [6385]: pgsql_query() -- 05:26:19.707 SQL [6385]: About to run query: -- 05:26:19.707 SQL [6385]: SELECT * FROM members_session WHERE member_id=5 AND session='26470B0F2D94551786AA0E98A3965DDD' -- 05:26:19.708 SQL [6385]: Found rows: 0 -- 05:26:19.708 SQL [6385]: Found rows: 0 -- 05:26:19.708 FLOG_MAX [6385]: insert_db_record() -- 05:26:19.708 SQL [6385]: pgsql_exec() -- 05:26:19.708 SQL [6385]: About to run query: -- 05:26:19.708 SQL [6385]: INSERT INTO members_session (member_id,session) VALUES ('5','26470B0F2D94551786AA0E98A3965DDD') -- 05:26:19.710 SQL [6385]: PQcmdTuples: 1 -- 05:26:19.710 SQL [6385]: Affected rows: 1 -- 05:26:19.710 FLOG_MAX [6385]: SELECT currval('members_session_id_seq') -- 05:26:19.710 SQL [6385]: pgsql_query() -- 05:26:19.710 SQL [6385]: About to run query: -- 05:26:19.710 SQL [6385]: SELECT currval('members_session_id_seq') -- 05:26:19.710 SQL [6385]: Found rows: 1 -- 05:26:19.710 INFO [6385]: CreateDefaultPage() -- 05:26:19.710 FLOG_MAX [6385]: long load_db_record( CVars &rec, const char * query, ... ) -- 05:26:19.710 SQL [6385]: pgsql_query() -- 05:26:19.710 SQL [6385]: About to run query: -- 05:26:19.710 SQL [6385]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 05:26:19.710 SQL [6385]: Found rows: 1 -- 05:26:19.710 FLOG_MAX [6385]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 05:26:19.710 SQL [6385]: pgsql_query() -- 05:26:19.710 SQL [6385]: About to run query: -- 05:26:19.710 SQL [6385]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 05:26:19.711 SQL [6385]: Found rows: 1 -- 05:26:19.711 INFO [6385]: /CreateDefaultPage() -- 05:26:19.711 INFO [6385]: /LoginCoreGradeAccount() -- 05:26:19.711 INFO [6385]: RET: added=2020-02-05 06:47:23.982154 -- 05:26:19.711 INFO [6385]: RET: email=ameye+11@chiefsoft.com -- 05:26:19.711 INFO [6385]: RET: firstname=Olu -- 05:26:19.711 INFO [6385]: RET: id=5 -- 05:26:19.711 INFO [6385]: RET: last_login= -- 05:26:19.711 INFO [6385]: RET: lastname=Amey -- 05:26:19.711 INFO [6385]: RET: loc=192.168.1.13 -- 05:26:19.711 INFO [6385]: RET: member_id=5 -- 05:26:19.711 INFO [6385]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 05:26:19.711 INFO [6385]: RET: phone= -- 05:26:19.711 INFO [6385]: RET: pid= -- 05:26:19.711 INFO [6385]: RET: result=YES I GET TO BACK END -- 05:26:19.711 INFO [6385]: RET: sessionid=26470B0F2D94551786AA0E98A3965DDD -- 05:26:19.711 INFO [6385]: RET: status=1 -- 05:26:19.711 INFO [6385]: RET: stauts=OK -- 05:26:19.711 INFO [6385]: RET: username=ameye+11@chiefsoft.com -- 05:26:19.711 INFO [6385]: RET: verified= -- 05:26:19.712 INFO [6385]: COREGRADE is stopping... -- 05:26:19.713 DEBUG [6385]: Closing database connection -- 05:26:19.713 SQL [6385]: pgsql_close() -- 05:26:19.653 DEBUG [6385]: Database connection successful -- 05:26:19.653 INFO [6385]: _SERVER found -- 05:26:19.653 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 05:26:19.653 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 05:26:19.653 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965 -- 05:26:19.653 INFO [6385]: QUERY_STRING = /auth -- 05:26:19.653 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:26:19.713 INFO [6385]: COREGRADE is stopping... -- 05:26:19.713 DEBUG [6385]: Closing database connection -- 05:26:19.713 SQL [6385]: pgsql_close() -- 05:26:19.748 INFO [6385]: COREGRADE is starting... -- 05:26:19.748 INFO [6385]: Version from config: 1.0 -- 05:26:19.748 DEBUG [6385]: Connecting to database... -- 05:26:19.748 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:26:19.748 SQL [6385]: pgsql_db_connect() -- 05:26:19.752 DEBUG [6385]: Database connection successful -- 05:26:19.752 INFO [6385]: _SERVER found -- 05:26:19.752 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 05:26:19.752 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 05:26:19.752 INFO [6385]: HTTP_COOKIE = ci_session=hmf80thkljtdauc6fegqnofgcedtlqdh; _ga=GA1.2.38091328.1580686965 -- 05:26:19.752 INFO [6385]: QUERY_STRING = /member/index -- 05:26:19.752 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:26:19.789 INFO [6385]: COREGRADE is stopping... -- 05:26:19.789 DEBUG [6385]: Closing database connection -- 05:26:19.789 SQL [6385]: pgsql_close() -- 05:26:19.896 INFO [6385]: COREGRADE is starting... -- 05:26:19.897 INFO [6385]: Version from config: 1.0 -- 05:26:19.897 DEBUG [6385]: Connecting to database... -- 05:26:19.897 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:26:19.897 SQL [6385]: pgsql_db_connect() -- 05:26:19.901 DEBUG [6385]: Database connection successful -- 05:26:19.901 INFO [6385]: _SERVER found -- 05:26:19.901 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 05:26:19.901 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 05:26:19.901 INFO [6385]: HTTP_COOKIE = ci_session=hmf80thkljtdauc6fegqnofgcedtlqdh; _ga=GA1.2.38091328.1580686965 -- 05:26:19.901 INFO [6385]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 05:26:19.901 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:26:19.912 INFO [6385]: COREGRADE is stopping... -- 05:26:19.912 DEBUG [6385]: Closing database connection -- 05:26:19.912 SQL [6385]: pgsql_close() -- 05:26:20.024 INFO [6385]: COREGRADE is starting... -- 05:26:20.025 INFO [6385]: Version from config: 1.0 -- 05:26:20.025 DEBUG [6385]: Connecting to database... -- 05:26:20.025 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:26:20.025 SQL [6385]: pgsql_db_connect() -- 05:26:20.029 DEBUG [6385]: Database connection successful -- 05:26:20.029 INFO [6385]: _SERVER found -- 05:26:20.029 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 05:26:20.029 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 05:26:20.029 INFO [6385]: HTTP_COOKIE = ci_session=hmf80thkljtdauc6fegqnofgcedtlqdh; _ga=GA1.2.38091328.1580686965 -- 05:26:20.029 INFO [6385]: QUERY_STRING = /app-assets/data/locales/en.json -- 05:26:20.029 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:26:20.040 INFO [6385]: COREGRADE is stopping... -- 05:26:20.040 DEBUG [6385]: Closing database connection -- 05:26:20.040 SQL [6385]: pgsql_close() -- 05:44:18.619 INFO [6405]: COREGRADE is starting... -- 05:44:18.619 INFO [6405]: Version from config: 1.0 -- 05:44:18.619 DEBUG [6405]: Connecting to database... -- 05:44:18.619 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:44:18.619 SQL [6405]: pgsql_db_connect() -- 05:44:18.624 DEBUG [6405]: Database connection successful -- 05:44:18.624 INFO [6405]: _SERVER found -- 05:44:18.624 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 05:44:18.624 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 05:44:18.624 INFO [6405]: HTTP_COOKIE = ci_session=hmf80thkljtdauc6fegqnofgcedtlqdh; _ga=GA1.2.38091328.1580686965 -- 05:44:18.624 INFO [6405]: QUERY_STRING = -- 05:44:18.624 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:44:18.671 INFO [6405]: COREGRADE is stopping... -- 05:44:18.671 DEBUG [6405]: Closing database connection -- 05:44:18.671 SQL [6405]: pgsql_close() -- 05:44:18.774 INFO [6405]: COREGRADE is starting... -- 05:44:18.774 INFO [6405]: Version from config: 1.0 -- 05:44:18.774 DEBUG [6405]: Connecting to database... -- 05:44:18.774 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:44:18.774 SQL [6405]: pgsql_db_connect() -- 05:44:18.778 DEBUG [6405]: Database connection successful -- 05:44:18.778 INFO [6405]: _SERVER found -- 05:44:18.778 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 05:44:18.778 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 05:44:18.778 INFO [6405]: HTTP_COOKIE = ci_session=nqhvplhrhkhat937j4hablkpth3s039r; _ga=GA1.2.38091328.1580686965 -- 05:44:18.778 INFO [6405]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 05:44:18.778 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:44:18.790 INFO [6405]: COREGRADE is stopping... -- 05:44:18.790 DEBUG [6405]: Closing database connection -- 05:44:18.790 SQL [6405]: pgsql_close() -- 05:44:18.805 INFO [6409]: COREGRADE is starting... -- 05:44:18.805 INFO [6409]: Version from config: 1.0 -- 05:44:18.805 DEBUG [6409]: Connecting to database... -- 05:44:18.805 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:44:18.805 SQL [6409]: pgsql_db_connect() -- 05:44:18.809 DEBUG [6409]: Database connection successful -- 05:44:18.809 INFO [6409]: _SERVER found -- 05:44:18.809 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 05:44:18.809 INFO [6409]: SERVER_NAME = oameye.works.coregrade.com -- 05:44:18.809 INFO [6409]: HTTP_COOKIE = ci_session=nqhvplhrhkhat937j4hablkpth3s039r; _ga=GA1.2.38091328.1580686965 -- 05:44:18.809 INFO [6409]: QUERY_STRING = /assets/img/footer_1.jpg -- 05:44:18.809 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:44:18.825 INFO [6409]: COREGRADE is stopping... -- 05:44:18.825 DEBUG [6409]: Closing database connection -- 05:44:18.825 SQL [6409]: pgsql_close() -- 05:44:21.178 INFO [6381]: COREGRADE is starting... -- 05:44:21.178 INFO [6381]: Version from config: 1.0 -- 05:44:21.178 DEBUG [6381]: Connecting to database... -- 05:44:21.178 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:44:21.178 SQL [6381]: pgsql_db_connect() -- 05:44:21.182 DEBUG [6381]: Database connection successful -- 05:44:21.182 INFO [6381]: _SERVER found -- 05:44:21.182 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 05:44:21.182 INFO [6381]: SERVER_NAME = oameye.works.coregrade.com -- 05:44:21.182 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1235802041.1581245059; ci_session=nqhvplhrhkhat937j4hablkpth3s039r -- 05:44:21.182 INFO [6381]: QUERY_STRING = /auth -- 05:44:21.182 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:44:21.216 INFO [6381]: COREGRADE is stopping... -- 05:44:21.216 DEBUG [6381]: Closing database connection -- 05:44:21.216 SQL [6381]: pgsql_close() -- 05:44:21.336 INFO [6381]: COREGRADE is starting... -- 05:44:21.336 INFO [6381]: Version from config: 1.0 -- 05:44:21.336 DEBUG [6381]: Connecting to database... -- 05:44:21.336 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:44:21.336 SQL [6381]: pgsql_db_connect() -- 05:44:21.340 DEBUG [6381]: Database connection successful -- 05:44:21.340 INFO [6381]: _SERVER found -- 05:44:21.340 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 05:44:21.340 INFO [6381]: SERVER_NAME = oameye.works.coregrade.com -- 05:44:21.340 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1235802041.1581245059; ci_session=nqhvplhrhkhat937j4hablkpth3s039r -- 05:44:21.340 INFO [6381]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 05:44:21.340 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:44:21.351 INFO [6381]: COREGRADE is stopping... -- 05:44:21.351 DEBUG [6381]: Closing database connection -- 05:44:21.351 SQL [6381]: pgsql_close() -- 05:44:21.361 INFO [6381]: COREGRADE is starting... -- 05:44:21.362 INFO [6381]: Version from config: 1.0 -- 05:44:21.362 DEBUG [6381]: Connecting to database... -- 05:44:21.362 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:44:21.362 SQL [6381]: pgsql_db_connect() -- 05:44:21.365 DEBUG [6381]: Database connection successful -- 05:44:21.365 INFO [6381]: _SERVER found -- 05:44:21.365 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 05:44:21.365 INFO [6381]: SERVER_NAME = oameye.works.coregrade.com -- 05:44:21.365 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1235802041.1581245059; ci_session=nqhvplhrhkhat937j4hablkpth3s039r -- 05:44:21.365 INFO [6381]: QUERY_STRING = /app-assets/data/locales/en.json -- 05:44:21.365 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:44:21.376 INFO [6381]: COREGRADE is stopping... -- 05:44:21.376 DEBUG [6381]: Closing database connection -- 05:44:21.376 SQL [6381]: pgsql_close() -- 05:44:23.770 INFO [6381]: COREGRADE is starting... -- 05:44:23.770 INFO [6381]: Version from config: 1.0 -- 05:44:23.770 DEBUG [6381]: Connecting to database... -- 05:44:23.770 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:44:23.770 SQL [6381]: pgsql_db_connect() -- 05:44:23.806 INFO [6381]: COREGRADE is starting... -- 05:44:23.806 INFO [6381]: Version from config: 1.0 -- 05:44:23.806 DEBUG [6381]: Connecting to database... -- 05:44:23.806 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:44:23.806 SQL [6381]: pgsql_db_connect() -- 05:44:23.810 DEBUG [6381]: Database connection successful -- 05:44:23.810 INFO [6381]: _SERVER found -- 05:44:23.810 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 05:44:23.810 INFO [6381]: SERVER_NAME = oameye.works.coregrade.com -- 05:44:23.810 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1235802041.1581245059; ci_session=nqhvplhrhkhat937j4hablkpth3s039r -- 05:44:23.810 INFO [6381]: QUERY_STRING = -- 05:44:23.810 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:44:23.810 INFO [6381]: SystemStatus()09-09-********~************ -- 05:44:23.810 INFO [6381]: long coregrade_api_main(CVars in, CVars &out) -- 05:44:23.810 INFO [6381]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 05:44:23.810 INFO [6381]: account calls -- 05:44:23.810 INFO [6381]: account_calls() -- 05:44:23.810 INFO [6381]: LoginCoreGradeAccount() -- 05:44:23.810 FLOG_MAX [6381]: REQ_STRING(username) -- 05:44:23.810 FLOG_MAX [6381]: REQ_STRING(password) -- 05:44:23.810 FLOG_MAX [6381]: REQ_STRING(sessionid) -- 05:44:23.810 FLOG_MAX [6381]: long load_db_record( CVars &rec, const char * query, ... ) -- 05:44:23.810 SQL [6381]: pgsql_query() -- 05:44:23.810 SQL [6381]: About to run query: -- 05:44:23.810 SQL [6381]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 05:44:23.814 SQL [6381]: Found rows: 1 -- 05:44:23.814 FLOG_MAX [6381]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 05:44:23.814 INFO [6381]: long SessionCheck(long uid, const char *sessionid, int create ) -- 05:44:23.814 SQL [6381]: pgsql_exec() -- 05:44:23.814 SQL [6381]: About to run query: -- 05:44:23.814 SQL [6381]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 05:44:23.814 SQL [6381]: PQcmdTuples: 0 -- 05:44:23.814 SQL [6381]: Affected rows: 0 -- 05:44:23.814 SQL [6381]: pgsql_exec() -- 05:44:23.815 SQL [6381]: About to run query: -- 05:44:23.815 SQL [6381]: DELETE FROM members_session WHERE member_id=5 -- 05:44:23.815 SQL [6381]: PQcmdTuples: 1 -- 05:44:23.815 SQL [6381]: Affected rows: 1 -- 05:44:23.815 SQL [6381]: pgsql_query() -- 05:44:23.815 SQL [6381]: About to run query: -- 05:44:23.815 SQL [6381]: SELECT * FROM members_session WHERE member_id=5 AND session<>'3791EAC72C85073D13C2DB413799BC1D' -- 05:44:23.816 SQL [6381]: Found rows: 0 -- 05:44:23.816 SQL [6381]: Found rows: 0 -- 05:44:23.816 FLOG_MAX [6381]: long load_db_record( CVars &rec, const char * query, ... ) -- 05:44:23.816 SQL [6381]: pgsql_query() -- 05:44:23.816 SQL [6381]: About to run query: -- 05:44:23.816 SQL [6381]: SELECT * FROM members_session WHERE member_id=5 AND session='3791EAC72C85073D13C2DB413799BC1D' -- 05:44:23.816 SQL [6381]: Found rows: 0 -- 05:44:23.816 SQL [6381]: Found rows: 0 -- 05:44:23.816 FLOG_MAX [6381]: insert_db_record() -- 05:44:23.816 SQL [6381]: pgsql_exec() -- 05:44:23.816 SQL [6381]: About to run query: -- 05:44:23.816 SQL [6381]: INSERT INTO members_session (member_id,session) VALUES ('5','3791EAC72C85073D13C2DB413799BC1D') -- 05:44:23.818 SQL [6381]: PQcmdTuples: 1 -- 05:44:23.818 SQL [6381]: Affected rows: 1 -- 05:44:23.818 FLOG_MAX [6381]: SELECT currval('members_session_id_seq') -- 05:44:23.818 SQL [6381]: pgsql_query() -- 05:44:23.818 SQL [6381]: About to run query: -- 05:44:23.818 SQL [6381]: SELECT currval('members_session_id_seq') -- 05:44:23.818 SQL [6381]: Found rows: 1 -- 05:44:23.818 INFO [6381]: CreateDefaultPage() -- 05:44:23.818 FLOG_MAX [6381]: long load_db_record( CVars &rec, const char * query, ... ) -- 05:44:23.818 SQL [6381]: pgsql_query() -- 05:44:23.818 SQL [6381]: About to run query: -- 05:44:23.818 SQL [6381]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 05:44:23.819 SQL [6381]: Found rows: 1 -- 05:44:23.819 FLOG_MAX [6381]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 05:44:23.819 SQL [6381]: pgsql_query() -- 05:44:23.819 SQL [6381]: About to run query: -- 05:44:23.819 SQL [6381]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 05:44:23.819 SQL [6381]: Found rows: 1 -- 05:44:23.819 INFO [6381]: /CreateDefaultPage() -- 05:44:23.819 INFO [6381]: /LoginCoreGradeAccount() -- 05:44:23.819 INFO [6381]: RET: added=2020-02-05 06:47:23.982154 -- 05:44:23.819 INFO [6381]: RET: email=ameye+11@chiefsoft.com -- 05:44:23.819 INFO [6381]: RET: firstname=Olu -- 05:44:23.819 INFO [6381]: RET: id=5 -- 05:44:23.819 INFO [6381]: RET: last_login= -- 05:44:23.819 INFO [6381]: RET: lastname=Amey -- 05:44:23.819 INFO [6381]: RET: loc=192.168.1.13 -- 05:44:23.819 INFO [6381]: RET: member_id=5 -- 05:44:23.819 INFO [6381]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 05:44:23.819 INFO [6381]: RET: phone= -- 05:44:23.819 INFO [6381]: RET: pid= -- 05:44:23.819 INFO [6381]: RET: result=YES I GET TO BACK END -- 05:44:23.819 INFO [6381]: RET: sessionid=3791EAC72C85073D13C2DB413799BC1D -- 05:44:23.819 INFO [6381]: RET: status=1 -- 05:44:23.819 INFO [6381]: RET: stauts=OK -- 05:44:23.819 INFO [6381]: RET: username=ameye+11@chiefsoft.com -- 05:44:23.819 INFO [6381]: RET: verified= -- 05:44:23.821 INFO [6381]: COREGRADE is stopping... -- 05:44:23.821 DEBUG [6381]: Closing database connection -- 05:44:23.821 SQL [6381]: pgsql_close() -- 05:44:23.775 DEBUG [6381]: Database connection successful -- 05:44:23.775 INFO [6381]: _SERVER found -- 05:44:23.775 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 05:44:23.775 INFO [6381]: SERVER_NAME = oameye.works.coregrade.com -- 05:44:23.775 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1235802041.1581245059; ci_session=nqhvplhrhkhat937j4hablkpth3s039r -- 05:44:23.775 INFO [6381]: QUERY_STRING = /auth -- 05:44:23.775 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:44:23.821 INFO [6381]: COREGRADE is stopping... -- 05:44:23.821 DEBUG [6381]: Closing database connection -- 05:44:23.821 SQL [6381]: pgsql_close() -- 05:44:23.836 INFO [6381]: COREGRADE is starting... -- 05:44:23.837 INFO [6381]: Version from config: 1.0 -- 05:44:23.837 DEBUG [6381]: Connecting to database... -- 05:44:23.837 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:44:23.837 SQL [6381]: pgsql_db_connect() -- 05:44:23.840 DEBUG [6381]: Database connection successful -- 05:44:23.840 INFO [6381]: _SERVER found -- 05:44:23.840 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 05:44:23.840 INFO [6381]: SERVER_NAME = oameye.works.coregrade.com -- 05:44:23.840 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1235802041.1581245059; ci_session=nqhvplhrhkhat937j4hablkpth3s039r -- 05:44:23.840 INFO [6381]: QUERY_STRING = /member/index -- 05:44:23.840 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:44:23.877 INFO [6381]: COREGRADE is stopping... -- 05:44:23.877 DEBUG [6381]: Closing database connection -- 05:44:23.877 SQL [6381]: pgsql_close() -- 05:44:23.930 INFO [6381]: COREGRADE is starting... -- 05:44:23.930 INFO [6381]: Version from config: 1.0 -- 05:44:23.930 DEBUG [6381]: Connecting to database... -- 05:44:23.930 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:44:23.930 SQL [6381]: pgsql_db_connect() -- 05:44:23.934 DEBUG [6381]: Database connection successful -- 05:44:23.934 INFO [6381]: _SERVER found -- 05:44:23.934 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 05:44:23.934 INFO [6381]: SERVER_NAME = oameye.works.coregrade.com -- 05:44:23.934 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1235802041.1581245059; ci_session=nqhvplhrhkhat937j4hablkpth3s039r -- 05:44:23.934 INFO [6381]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 05:44:23.934 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:44:23.945 INFO [6381]: COREGRADE is stopping... -- 05:44:23.945 DEBUG [6381]: Closing database connection -- 05:44:23.945 SQL [6381]: pgsql_close() -- 05:44:24.008 INFO [6381]: COREGRADE is starting... -- 05:44:24.009 INFO [6381]: Version from config: 1.0 -- 05:44:24.009 DEBUG [6381]: Connecting to database... -- 05:44:24.009 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:44:24.009 SQL [6381]: pgsql_db_connect() -- 05:44:24.012 DEBUG [6381]: Database connection successful -- 05:44:24.012 INFO [6381]: _SERVER found -- 05:44:24.012 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 05:44:24.012 INFO [6381]: SERVER_NAME = oameye.works.coregrade.com -- 05:44:24.012 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1235802041.1581245059; ci_session=nqhvplhrhkhat937j4hablkpth3s039r -- 05:44:24.012 INFO [6381]: QUERY_STRING = /app-assets/data/locales/en.json -- 05:44:24.012 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:44:24.024 INFO [6381]: COREGRADE is stopping... -- 05:44:24.024 DEBUG [6381]: Closing database connection -- 05:44:24.024 SQL [6381]: pgsql_close() -- 05:44:25.897 INFO [6381]: COREGRADE is starting... -- 05:44:25.897 INFO [6381]: Version from config: 1.0 -- 05:44:25.897 DEBUG [6381]: Connecting to database... -- 05:44:25.897 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:44:25.897 SQL [6381]: pgsql_db_connect() -- 05:44:25.901 DEBUG [6381]: Database connection successful -- 05:44:25.901 INFO [6381]: _SERVER found -- 05:44:25.901 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 05:44:25.901 INFO [6381]: SERVER_NAME = oameye.works.coregrade.com -- 05:44:25.901 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1235802041.1581245059; ci_session=nqhvplhrhkhat937j4hablkpth3s039r -- 05:44:25.901 INFO [6381]: QUERY_STRING = /member/page -- 05:44:25.901 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:44:25.939 INFO [6381]: COREGRADE is stopping... -- 05:44:25.940 DEBUG [6381]: Closing database connection -- 05:44:25.940 SQL [6381]: pgsql_close() -- 05:44:25.001 INFO [6381]: COREGRADE is starting... -- 05:44:26.001 INFO [6381]: Version from config: 1.0 -- 05:44:26.001 DEBUG [6381]: Connecting to database... -- 05:44:26.001 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:44:26.001 SQL [6381]: pgsql_db_connect() -- 05:44:26.014 INFO [6382]: COREGRADE is starting... -- 05:44:26.014 INFO [6382]: Version from config: 1.0 -- 05:44:26.014 DEBUG [6382]: Connecting to database... -- 05:44:26.014 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:44:26.014 SQL [6382]: pgsql_db_connect() -- 05:44:26.005 DEBUG [6381]: Database connection successful -- 05:44:26.005 INFO [6381]: _SERVER found -- 05:44:26.005 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 05:44:26.005 INFO [6381]: SERVER_NAME = oameye.works.coregrade.com -- 05:44:26.005 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1235802041.1581245059; ci_session=nqhvplhrhkhat937j4hablkpth3s039r -- 05:44:26.005 INFO [6381]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 05:44:26.005 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:44:26.016 INFO [6381]: COREGRADE is stopping... -- 05:44:26.016 DEBUG [6381]: Closing database connection -- 05:44:26.016 SQL [6381]: pgsql_close() -- 05:44:26.018 DEBUG [6382]: Database connection successful -- 05:44:26.018 INFO [6382]: _SERVER found -- 05:44:26.018 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 05:44:26.018 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 05:44:26.018 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1235802041.1581245059; ci_session=nqhvplhrhkhat937j4hablkpth3s039r -- 05:44:26.018 INFO [6382]: QUERY_STRING = /app-assets/data/locales/en.json -- 05:44:26.018 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:44:26.031 INFO [6382]: COREGRADE is stopping... -- 05:44:26.031 DEBUG [6382]: Closing database connection -- 05:44:26.031 SQL [6382]: pgsql_close() -- 05:44:34.553 INFO [6383]: COREGRADE is starting... -- 05:44:34.553 INFO [6383]: Version from config: 1.0 -- 05:44:34.553 DEBUG [6383]: Connecting to database... -- 05:44:34.553 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:44:34.553 SQL [6383]: pgsql_db_connect() -- 05:44:34.557 DEBUG [6383]: Database connection successful -- 05:44:34.557 INFO [6383]: _SERVER found -- 05:44:34.557 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 05:44:34.557 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 05:44:34.557 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1235802041.1581245059; ci_session=nqhvplhrhkhat937j4hablkpth3s039r -- 05:44:34.557 INFO [6383]: QUERY_STRING = /member/viewCardAddAction -- 05:44:34.557 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:44:34.589 INFO [6383]: COREGRADE is stopping... -- 05:44:34.589 DEBUG [6383]: Closing database connection -- 05:44:34.589 SQL [6383]: pgsql_close() -- 06:11:47.416 INFO [6384]: COREGRADE is starting... -- 06:11:47.417 INFO [6384]: Version from config: 1.0 -- 06:11:47.417 DEBUG [6384]: Connecting to database... -- 06:11:47.417 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:11:47.417 SQL [6384]: pgsql_db_connect() -- 06:11:47.422 DEBUG [6384]: Database connection successful -- 06:11:47.422 INFO [6384]: _SERVER found -- 06:11:47.422 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 06:11:47.422 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 06:11:47.422 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361 -- 06:11:47.422 INFO [6384]: QUERY_STRING = /auth -- 06:11:47.422 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:11:48.023 INFO [6384]: COREGRADE is starting... -- 06:11:48.023 INFO [6384]: Version from config: 1.0 -- 06:11:48.023 DEBUG [6384]: Connecting to database... -- 06:11:48.023 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:11:48.023 SQL [6384]: pgsql_db_connect() -- 06:11:48.027 DEBUG [6384]: Database connection successful -- 06:11:48.027 INFO [6384]: _SERVER found -- 06:11:48.027 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 06:11:48.027 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 06:11:48.027 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=4h9riv8lqle3r0t47nf6o4fq2cekqepo -- 06:11:48.027 INFO [6384]: QUERY_STRING = /member/index -- 06:11:48.027 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:11:48.067 INFO [6384]: COREGRADE is stopping... -- 06:11:48.067 DEBUG [6384]: Closing database connection -- 06:11:48.067 SQL [6384]: pgsql_close() -- 06:11:52.517 INFO [6384]: COREGRADE is starting... -- 06:11:52.517 INFO [6384]: Version from config: 1.0 -- 06:11:52.517 DEBUG [6384]: Connecting to database... -- 06:11:52.517 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:11:52.517 SQL [6384]: pgsql_db_connect() -- 06:11:52.521 DEBUG [6384]: Database connection successful -- 06:11:52.521 INFO [6384]: _SERVER found -- 06:11:52.521 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 06:11:52.521 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 06:11:52.521 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=4h9riv8lqle3r0t47nf6o4fq2cekqepo -- 06:11:52.521 INFO [6384]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 06:11:52.521 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:11:52.532 INFO [6384]: COREGRADE is stopping... -- 06:11:52.532 DEBUG [6384]: Closing database connection -- 06:11:52.532 SQL [6384]: pgsql_close() -- 06:11:52.617 INFO [6384]: COREGRADE is starting... -- 06:11:52.617 INFO [6384]: Version from config: 1.0 -- 06:11:52.617 DEBUG [6384]: Connecting to database... -- 06:11:52.617 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:11:52.617 SQL [6384]: pgsql_db_connect() -- 06:11:52.621 DEBUG [6384]: Database connection successful -- 06:11:52.621 INFO [6384]: _SERVER found -- 06:11:52.621 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 06:11:52.621 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 06:11:52.621 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=4h9riv8lqle3r0t47nf6o4fq2cekqepo -- 06:11:52.621 INFO [6384]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:11:52.621 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:11:52.632 INFO [6384]: COREGRADE is stopping... -- 06:11:52.632 DEBUG [6384]: Closing database connection -- 06:11:52.632 SQL [6384]: pgsql_close() -- 06:11:54.945 INFO [6384]: COREGRADE is starting... -- 06:11:54.945 INFO [6384]: Version from config: 1.0 -- 06:11:54.945 DEBUG [6384]: Connecting to database... -- 06:11:54.945 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:11:54.945 SQL [6384]: pgsql_db_connect() -- 06:11:54.949 DEBUG [6384]: Database connection successful -- 06:11:54.949 INFO [6384]: _SERVER found -- 06:11:54.949 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 06:11:54.949 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 06:11:54.949 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=4h9riv8lqle3r0t47nf6o4fq2cekqepo -- 06:11:54.949 INFO [6384]: QUERY_STRING = /member/page -- 06:11:54.949 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:11:54.990 INFO [6384]: COREGRADE is stopping... -- 06:11:54.990 DEBUG [6384]: Closing database connection -- 06:11:54.990 SQL [6384]: pgsql_close() -- 06:11:55.790 INFO [6384]: COREGRADE is starting... -- 06:11:55.790 INFO [6384]: Version from config: 1.0 -- 06:11:55.790 DEBUG [6384]: Connecting to database... -- 06:11:55.791 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:11:55.791 SQL [6384]: pgsql_db_connect() -- 06:11:55.795 DEBUG [6384]: Database connection successful -- 06:11:55.795 INFO [6384]: _SERVER found -- 06:11:55.795 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 06:11:55.795 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 06:11:55.795 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=4h9riv8lqle3r0t47nf6o4fq2cekqepo -- 06:11:55.795 INFO [6384]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:11:55.795 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:11:55.806 INFO [6384]: COREGRADE is stopping... -- 06:11:55.806 DEBUG [6384]: Closing database connection -- 06:11:55.806 SQL [6384]: pgsql_close() -- 06:12:57.783 INFO [6381]: COREGRADE is starting... -- 06:12:57.783 INFO [6381]: Version from config: 1.0 -- 06:12:57.783 DEBUG [6381]: Connecting to database... -- 06:12:57.783 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:12:57.783 SQL [6381]: pgsql_db_connect() -- 06:12:57.787 DEBUG [6381]: Database connection successful -- 06:12:57.787 INFO [6381]: _SERVER found -- 06:12:57.787 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 06:12:57.787 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 06:12:57.787 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=4h9riv8lqle3r0t47nf6o4fq2cekqepo -- 06:12:57.787 INFO [6381]: QUERY_STRING = /member/viewCardAddAction -- 06:12:57.787 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:12:57.819 INFO [6381]: COREGRADE is stopping... -- 06:12:57.819 DEBUG [6381]: Closing database connection -- 06:12:57.819 SQL [6381]: pgsql_close() -- 06:13:00.060 INFO [6381]: COREGRADE is starting... -- 06:13:00.060 INFO [6381]: Version from config: 1.0 -- 06:13:00.060 DEBUG [6381]: Connecting to database... -- 06:13:00.060 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:13:00.060 SQL [6381]: pgsql_db_connect() -- 06:13:00.064 DEBUG [6381]: Database connection successful -- 06:13:00.064 INFO [6381]: _SERVER found -- 06:13:00.064 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 06:13:00.064 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 06:13:00.064 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=4h9riv8lqle3r0t47nf6o4fq2cekqepo -- 06:13:00.064 INFO [6381]: QUERY_STRING = /member/viewCardAddAction -- 06:13:00.064 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:13:00.094 INFO [6381]: COREGRADE is stopping... -- 06:13:00.094 DEBUG [6381]: Closing database connection -- 06:13:00.095 SQL [6381]: pgsql_close() -- 06:13:01.917 INFO [6381]: COREGRADE is starting... -- 06:13:01.917 INFO [6381]: Version from config: 1.0 -- 06:13:01.917 DEBUG [6381]: Connecting to database... -- 06:13:01.918 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:13:01.918 SQL [6381]: pgsql_db_connect() -- 06:13:01.922 DEBUG [6381]: Database connection successful -- 06:13:01.922 INFO [6381]: _SERVER found -- 06:13:01.922 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 06:13:01.922 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 06:13:01.922 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=4h9riv8lqle3r0t47nf6o4fq2cekqepo -- 06:13:01.922 INFO [6381]: QUERY_STRING = /member/viewCardAddAction -- 06:13:01.922 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:13:01.952 INFO [6381]: COREGRADE is stopping... -- 06:13:01.952 DEBUG [6381]: Closing database connection -- 06:13:01.952 SQL [6381]: pgsql_close() -- 06:20:04.559 INFO [6382]: COREGRADE is starting... -- 06:20:04.559 INFO [6382]: Version from config: 1.0 -- 06:20:04.559 DEBUG [6382]: Connecting to database... -- 06:20:04.559 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:20:04.559 SQL [6382]: pgsql_db_connect() -- 06:20:04.563 DEBUG [6382]: Database connection successful -- 06:20:04.563 INFO [6382]: _SERVER found -- 06:20:04.563 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 06:20:04.563 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 06:20:04.563 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=4h9riv8lqle3r0t47nf6o4fq2cekqepo -- 06:20:04.563 INFO [6382]: QUERY_STRING = /member/page -- 06:20:04.563 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:20:04.611 INFO [6382]: COREGRADE is stopping... -- 06:20:04.611 DEBUG [6382]: Closing database connection -- 06:20:04.611 SQL [6382]: pgsql_close() -- 06:20:05.648 INFO [6382]: COREGRADE is starting... -- 06:20:05.648 INFO [6382]: Version from config: 1.0 -- 06:20:05.648 DEBUG [6382]: Connecting to database... -- 06:20:05.648 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:20:05.648 SQL [6382]: pgsql_db_connect() -- 06:20:05.652 DEBUG [6382]: Database connection successful -- 06:20:05.652 INFO [6382]: _SERVER found -- 06:20:05.652 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 06:20:05.652 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 06:20:05.652 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=6u32uadcd391nslflhjfnj2lm8gatvj3 -- 06:20:05.652 INFO [6382]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 06:20:05.652 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:20:05.663 INFO [6382]: COREGRADE is stopping... -- 06:20:05.663 DEBUG [6382]: Closing database connection -- 06:20:05.663 SQL [6382]: pgsql_close() -- 06:20:06.132 INFO [6382]: COREGRADE is starting... -- 06:20:06.132 INFO [6382]: Version from config: 1.0 -- 06:20:06.132 DEBUG [6382]: Connecting to database... -- 06:20:06.132 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:20:06.132 SQL [6382]: pgsql_db_connect() -- 06:20:06.136 DEBUG [6382]: Database connection successful -- 06:20:06.136 INFO [6382]: _SERVER found -- 06:20:06.136 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 06:20:06.136 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 06:20:06.136 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=6u32uadcd391nslflhjfnj2lm8gatvj3 -- 06:20:06.136 INFO [6382]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:20:06.136 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:20:06.148 INFO [6382]: COREGRADE is stopping... -- 06:20:06.148 DEBUG [6382]: Closing database connection -- 06:20:06.148 SQL [6382]: pgsql_close() -- 06:20:28.720 INFO [6383]: COREGRADE is starting... -- 06:20:28.720 INFO [6383]: Version from config: 1.0 -- 06:20:28.721 DEBUG [6383]: Connecting to database... -- 06:20:28.721 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:20:28.721 SQL [6383]: pgsql_db_connect() -- 06:20:28.724 DEBUG [6383]: Database connection successful -- 06:20:28.724 INFO [6383]: _SERVER found -- 06:20:28.724 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 06:20:28.724 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 06:20:28.724 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=6u32uadcd391nslflhjfnj2lm8gatvj3 -- 06:20:28.724 INFO [6383]: QUERY_STRING = /auth -- 06:20:28.724 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:20:28.757 INFO [6383]: COREGRADE is stopping... -- 06:20:28.757 DEBUG [6383]: Closing database connection -- 06:20:28.757 SQL [6383]: pgsql_close() -- 06:20:30.155 INFO [6383]: COREGRADE is starting... -- 06:20:30.155 INFO [6383]: Version from config: 1.0 -- 06:20:30.155 DEBUG [6383]: Connecting to database... -- 06:20:30.155 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:20:30.156 SQL [6383]: pgsql_db_connect() -- 06:20:30.159 DEBUG [6383]: Database connection successful -- 06:20:30.159 INFO [6383]: _SERVER found -- 06:20:30.160 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 06:20:30.160 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 06:20:30.160 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=6u32uadcd391nslflhjfnj2lm8gatvj3 -- 06:20:30.160 INFO [6383]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 06:20:30.160 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:20:30.171 INFO [6383]: COREGRADE is stopping... -- 06:20:30.171 DEBUG [6383]: Closing database connection -- 06:20:30.171 SQL [6383]: pgsql_close() -- 06:20:30.819 INFO [6383]: COREGRADE is starting... -- 06:20:30.820 INFO [6383]: Version from config: 1.0 -- 06:20:30.820 DEBUG [6383]: Connecting to database... -- 06:20:30.820 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:20:30.820 SQL [6383]: pgsql_db_connect() -- 06:20:30.824 DEBUG [6383]: Database connection successful -- 06:20:30.824 INFO [6383]: _SERVER found -- 06:20:30.824 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 06:20:30.824 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 06:20:30.824 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=6u32uadcd391nslflhjfnj2lm8gatvj3 -- 06:20:30.824 INFO [6383]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:20:30.824 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:20:30.835 INFO [6383]: COREGRADE is stopping... -- 06:20:30.835 DEBUG [6383]: Closing database connection -- 06:20:30.835 SQL [6383]: pgsql_close() -- 06:20:35.510 INFO [6383]: COREGRADE is starting... -- 06:20:35.510 INFO [6383]: Version from config: 1.0 -- 06:20:35.510 DEBUG [6383]: Connecting to database... -- 06:20:35.510 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:20:35.510 SQL [6383]: pgsql_db_connect() -- 06:20:35.514 DEBUG [6383]: Database connection successful -- 06:20:35.514 INFO [6383]: _SERVER found -- 06:20:35.514 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 06:20:35.514 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 06:20:35.514 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=6u32uadcd391nslflhjfnj2lm8gatvj3 -- 06:20:35.514 INFO [6383]: QUERY_STRING = /auth -- 06:20:35.514 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:20:35.545 INFO [6383]: COREGRADE is stopping... -- 06:20:35.545 DEBUG [6383]: Closing database connection -- 06:20:35.545 SQL [6383]: pgsql_close() -- 06:20:36.356 INFO [6383]: COREGRADE is starting... -- 06:20:36.356 INFO [6383]: Version from config: 1.0 -- 06:20:36.356 DEBUG [6383]: Connecting to database... -- 06:20:36.356 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:20:36.356 SQL [6383]: pgsql_db_connect() -- 06:20:36.360 DEBUG [6383]: Database connection successful -- 06:20:36.360 INFO [6383]: _SERVER found -- 06:20:36.360 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 06:20:36.360 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 06:20:36.360 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=6u32uadcd391nslflhjfnj2lm8gatvj3 -- 06:20:36.360 INFO [6383]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 06:20:36.360 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:20:36.371 INFO [6383]: COREGRADE is stopping... -- 06:20:36.371 DEBUG [6383]: Closing database connection -- 06:20:36.371 SQL [6383]: pgsql_close() -- 06:20:36.831 INFO [6383]: COREGRADE is starting... -- 06:20:36.831 INFO [6383]: Version from config: 1.0 -- 06:20:36.831 DEBUG [6383]: Connecting to database... -- 06:20:36.831 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:20:36.831 SQL [6383]: pgsql_db_connect() -- 06:20:36.835 DEBUG [6383]: Database connection successful -- 06:20:36.835 INFO [6383]: _SERVER found -- 06:20:36.835 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 06:20:36.835 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 06:20:36.835 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=6u32uadcd391nslflhjfnj2lm8gatvj3 -- 06:20:36.835 INFO [6383]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:20:36.835 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:20:36.846 INFO [6383]: COREGRADE is stopping... -- 06:20:36.846 DEBUG [6383]: Closing database connection -- 06:20:36.846 SQL [6383]: pgsql_close() -- 07:13:33.427 INFO [7159]: COREGRADE is starting... -- 07:13:33.427 INFO [7159]: Version from config: 1.0 -- 07:13:33.428 DEBUG [7159]: Connecting to database... -- 07:13:33.428 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:33.428 SQL [7159]: pgsql_db_connect() -- 07:13:33.433 DEBUG [7159]: Database connection successful -- 07:13:33.433 INFO [7159]: _SERVER found -- 07:13:33.433 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 07:13:33.433 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:33.433 INFO [7159]: HTTP_COOKIE = ci_session=nqhvplhrhkhat937j4hablkpth3s039r; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 07:13:33.433 INFO [7159]: QUERY_STRING = /member -- 07:13:33.433 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:33.485 INFO [7159]: COREGRADE is stopping... -- 07:13:33.485 DEBUG [7159]: Closing database connection -- 07:13:33.485 SQL [7159]: pgsql_close() -- 07:13:33.611 INFO [7159]: COREGRADE is starting... -- 07:13:33.611 INFO [7159]: Version from config: 1.0 -- 07:13:33.611 DEBUG [7159]: Connecting to database... -- 07:13:33.611 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:33.611 SQL [7159]: pgsql_db_connect() -- 07:13:33.616 DEBUG [7159]: Database connection successful -- 07:13:33.616 INFO [7159]: _SERVER found -- 07:13:33.616 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 07:13:33.616 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:33.616 INFO [7159]: HTTP_COOKIE = ci_session=qsflp7q7osafg9ni9amn9qne7p54qorb; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 07:13:33.616 INFO [7159]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 07:13:33.616 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:33.627 INFO [7159]: COREGRADE is stopping... -- 07:13:33.628 DEBUG [7159]: Closing database connection -- 07:13:33.628 SQL [7159]: pgsql_close() -- 07:13:33.639 INFO [7159]: COREGRADE is starting... -- 07:13:33.639 INFO [7159]: Version from config: 1.0 -- 07:13:33.639 DEBUG [7159]: Connecting to database... -- 07:13:33.639 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:33.639 SQL [7159]: pgsql_db_connect() -- 07:13:33.644 DEBUG [7159]: Database connection successful -- 07:13:33.644 INFO [7159]: _SERVER found -- 07:13:33.644 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 07:13:33.644 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:33.644 INFO [7159]: HTTP_COOKIE = ci_session=qsflp7q7osafg9ni9amn9qne7p54qorb; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 07:13:33.644 INFO [7159]: QUERY_STRING = /app-assets/data/locales/en.json -- 07:13:33.644 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:33.655 INFO [7159]: COREGRADE is stopping... -- 07:13:33.655 DEBUG [7159]: Closing database connection -- 07:13:33.655 SQL [7159]: pgsql_close() -- 07:13:37.211 INFO [7159]: COREGRADE is starting... -- 07:13:37.211 INFO [7159]: Version from config: 1.0 -- 07:13:37.211 DEBUG [7159]: Connecting to database... -- 07:13:37.211 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:37.211 SQL [7159]: pgsql_db_connect() -- 07:13:37.216 DEBUG [7159]: Database connection successful -- 07:13:37.216 INFO [7159]: _SERVER found -- 07:13:37.216 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 07:13:37.216 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:37.216 INFO [7159]: HTTP_COOKIE = ci_session=qsflp7q7osafg9ni9amn9qne7p54qorb; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 07:13:37.216 INFO [7159]: QUERY_STRING = /member/page -- 07:13:37.216 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:37.256 INFO [7159]: COREGRADE is stopping... -- 07:13:37.256 DEBUG [7159]: Closing database connection -- 07:13:37.256 SQL [7159]: pgsql_close() -- 07:13:37.341 INFO [7159]: COREGRADE is starting... -- 07:13:37.342 INFO [7159]: Version from config: 1.0 -- 07:13:37.342 DEBUG [7159]: Connecting to database... -- 07:13:37.342 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:37.342 SQL [7159]: pgsql_db_connect() -- 07:13:37.346 DEBUG [7159]: Database connection successful -- 07:13:37.346 INFO [7159]: _SERVER found -- 07:13:37.346 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 07:13:37.346 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:37.346 INFO [7159]: HTTP_COOKIE = ci_session=qsflp7q7osafg9ni9amn9qne7p54qorb; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 07:13:37.346 INFO [7159]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 07:13:37.346 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:37.357 INFO [7159]: COREGRADE is stopping... -- 07:13:37.357 DEBUG [7159]: Closing database connection -- 07:13:37.357 SQL [7159]: pgsql_close() -- 07:13:37.365 INFO [7160]: COREGRADE is starting... -- 07:13:37.366 INFO [7160]: Version from config: 1.0 -- 07:13:37.366 DEBUG [7160]: Connecting to database... -- 07:13:37.366 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:37.366 SQL [7160]: pgsql_db_connect() -- 07:13:37.370 DEBUG [7160]: Database connection successful -- 07:13:37.370 INFO [7160]: _SERVER found -- 07:13:37.370 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 07:13:37.370 INFO [7160]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:37.370 INFO [7160]: HTTP_COOKIE = ci_session=qsflp7q7osafg9ni9amn9qne7p54qorb; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 07:13:37.370 INFO [7160]: QUERY_STRING = /app-assets/data/locales/en.json -- 07:13:37.370 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:37.386 INFO [7160]: COREGRADE is stopping... -- 07:13:37.386 DEBUG [7160]: Closing database connection -- 07:13:37.386 SQL [7160]: pgsql_close() -- 07:19:42.774 INFO [6405]: COREGRADE is starting... -- 07:19:42.774 INFO [6405]: Version from config: 1.0 -- 07:19:42.774 DEBUG [6405]: Connecting to database... -- 07:19:42.774 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:19:42.774 SQL [6405]: pgsql_db_connect() -- 07:19:42.779 DEBUG [6405]: Database connection successful -- 07:19:42.779 INFO [6405]: _SERVER found -- 07:19:42.779 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 07:19:42.779 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 07:19:42.779 INFO [6405]: HTTP_COOKIE = ci_session=qsflp7q7osafg9ni9amn9qne7p54qorb; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 07:19:42.779 INFO [6405]: QUERY_STRING = /member -- 07:19:42.779 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:19:42.820 INFO [6405]: COREGRADE is stopping... -- 07:19:42.820 DEBUG [6405]: Closing database connection -- 07:19:42.820 SQL [6405]: pgsql_close() -- 07:19:42.936 INFO [6405]: COREGRADE is starting... -- 07:19:42.936 INFO [6405]: Version from config: 1.0 -- 07:19:42.936 DEBUG [6405]: Connecting to database... -- 07:19:42.936 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:19:42.936 SQL [6405]: pgsql_db_connect() -- 07:19:42.940 DEBUG [6405]: Database connection successful -- 07:19:42.940 INFO [6405]: _SERVER found -- 07:19:42.940 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 07:19:42.940 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 07:19:42.940 INFO [6405]: HTTP_COOKIE = ci_session=t6mfuj681utrohekmneovgcks7blcpcb; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 07:19:42.940 INFO [6405]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 07:19:42.940 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:19:42.951 INFO [6405]: COREGRADE is stopping... -- 07:19:42.951 DEBUG [6405]: Closing database connection -- 07:19:42.951 SQL [6405]: pgsql_close() -- 07:19:42.963 INFO [6405]: COREGRADE is starting... -- 07:19:42.963 INFO [6405]: Version from config: 1.0 -- 07:19:42.963 DEBUG [6405]: Connecting to database... -- 07:19:42.963 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:19:42.963 SQL [6405]: pgsql_db_connect() -- 07:19:42.967 DEBUG [6405]: Database connection successful -- 07:19:42.967 INFO [6405]: _SERVER found -- 07:19:42.967 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 07:19:42.967 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 07:19:42.967 INFO [6405]: HTTP_COOKIE = ci_session=t6mfuj681utrohekmneovgcks7blcpcb; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 07:19:42.967 INFO [6405]: QUERY_STRING = /app-assets/data/locales/en.json -- 07:19:42.967 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:19:42.978 INFO [6405]: COREGRADE is stopping... -- 07:19:42.978 DEBUG [6405]: Closing database connection -- 07:19:42.978 SQL [6405]: pgsql_close() -- 07:19:45.431 INFO [6405]: COREGRADE is starting... -- 07:19:45.431 INFO [6405]: Version from config: 1.0 -- 07:19:45.431 DEBUG [6405]: Connecting to database... -- 07:19:45.431 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:19:45.431 SQL [6405]: pgsql_db_connect() -- 07:19:45.435 DEBUG [6405]: Database connection successful -- 07:19:45.435 INFO [6405]: _SERVER found -- 07:19:45.435 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 07:19:45.435 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 07:19:45.435 INFO [6405]: HTTP_COOKIE = ci_session=t6mfuj681utrohekmneovgcks7blcpcb; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 07:19:45.435 INFO [6405]: QUERY_STRING = /member/configure -- 07:19:45.435 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:19:45.471 INFO [6405]: COREGRADE is stopping... -- 07:19:45.471 DEBUG [6405]: Closing database connection -- 07:19:45.471 SQL [6405]: pgsql_close() -- 07:19:45.542 INFO [6405]: COREGRADE is starting... -- 07:19:45.543 INFO [6405]: Version from config: 1.0 -- 07:19:45.543 DEBUG [6405]: Connecting to database... -- 07:19:45.543 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:19:45.543 SQL [6405]: pgsql_db_connect() -- 07:19:45.554 INFO [6409]: COREGRADE is starting... -- 07:19:45.554 INFO [6409]: Version from config: 1.0 -- 07:19:45.554 DEBUG [6409]: Connecting to database... -- 07:19:45.554 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:19:45.554 SQL [6409]: pgsql_db_connect() -- 07:19:45.547 DEBUG [6405]: Database connection successful -- 07:19:45.547 INFO [6405]: _SERVER found -- 07:19:45.547 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 07:19:45.547 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 07:19:45.547 INFO [6405]: HTTP_COOKIE = ci_session=t6mfuj681utrohekmneovgcks7blcpcb; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 07:19:45.547 INFO [6405]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 07:19:45.547 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:19:45.558 INFO [6405]: COREGRADE is stopping... -- 07:19:45.558 DEBUG [6405]: Closing database connection -- 07:19:45.558 SQL [6405]: pgsql_close() -- 07:19:45.558 DEBUG [6409]: Database connection successful -- 07:19:45.558 INFO [6409]: _SERVER found -- 07:19:45.558 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 07:19:45.558 INFO [6409]: SERVER_NAME = oameye.works.coregrade.com -- 07:19:45.558 INFO [6409]: HTTP_COOKIE = ci_session=t6mfuj681utrohekmneovgcks7blcpcb; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 07:19:45.558 INFO [6409]: QUERY_STRING = /app-assets/data/locales/en.json -- 07:19:45.558 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:19:45.571 INFO [6409]: COREGRADE is stopping... -- 07:19:45.571 DEBUG [6409]: Closing database connection -- 07:19:45.571 SQL [6409]: pgsql_close() -- 07:19:48.089 INFO [6409]: COREGRADE is starting... -- 07:19:48.090 INFO [6409]: Version from config: 1.0 -- 07:19:48.090 DEBUG [6409]: Connecting to database... -- 07:19:48.090 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:19:48.090 SQL [6409]: pgsql_db_connect() -- 07:19:48.094 DEBUG [6409]: Database connection successful -- 07:19:48.094 INFO [6409]: _SERVER found -- 07:19:48.094 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 07:19:48.094 INFO [6409]: SERVER_NAME = oameye.works.coregrade.com -- 07:19:48.094 INFO [6409]: HTTP_COOKIE = ci_session=t6mfuj681utrohekmneovgcks7blcpcb; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 07:19:48.094 INFO [6409]: QUERY_STRING = /member/page -- 07:19:48.094 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:19:48.136 INFO [6409]: COREGRADE is stopping... -- 07:19:48.136 DEBUG [6409]: Closing database connection -- 07:19:48.136 SQL [6409]: pgsql_close() -- 07:19:48.213 INFO [6409]: COREGRADE is starting... -- 07:19:48.214 INFO [6409]: Version from config: 1.0 -- 07:19:48.214 DEBUG [6409]: Connecting to database... -- 07:19:48.214 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:19:48.214 SQL [6409]: pgsql_db_connect() -- 07:19:48.219 INFO [6405]: COREGRADE is starting... -- 07:19:48.219 INFO [6405]: Version from config: 1.0 -- 07:19:48.219 DEBUG [6405]: Connecting to database... -- 07:19:48.219 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:19:48.219 SQL [6405]: pgsql_db_connect() -- 07:19:48.218 DEBUG [6409]: Database connection successful -- 07:19:48.218 INFO [6409]: _SERVER found -- 07:19:48.218 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 07:19:48.218 INFO [6409]: SERVER_NAME = oameye.works.coregrade.com -- 07:19:48.218 INFO [6409]: HTTP_COOKIE = ci_session=t6mfuj681utrohekmneovgcks7blcpcb; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 07:19:48.218 INFO [6409]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 07:19:48.218 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:19:48.229 INFO [6409]: COREGRADE is stopping... -- 07:19:48.229 DEBUG [6409]: Closing database connection -- 07:19:48.229 SQL [6409]: pgsql_close() -- 07:19:48.223 DEBUG [6405]: Database connection successful -- 07:19:48.223 INFO [6405]: _SERVER found -- 07:19:48.223 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 07:19:48.223 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 07:19:48.223 INFO [6405]: HTTP_COOKIE = ci_session=t6mfuj681utrohekmneovgcks7blcpcb; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 07:19:48.223 INFO [6405]: QUERY_STRING = /app-assets/data/locales/en.json -- 07:19:48.223 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:19:48.234 INFO [6405]: COREGRADE is stopping... -- 07:19:48.234 DEBUG [6405]: Closing database connection -- 07:19:48.234 SQL [6405]: pgsql_close() -- 07:19:54.335 INFO [6385]: COREGRADE is starting... -- 07:19:54.335 INFO [6385]: Version from config: 1.0 -- 07:19:54.335 DEBUG [6385]: Connecting to database... -- 07:19:54.335 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:19:54.335 SQL [6385]: pgsql_db_connect() -- 07:19:54.346 INFO [7017]: COREGRADE is starting... -- 07:19:54.346 INFO [7017]: Version from config: 1.0 -- 07:19:54.346 DEBUG [7017]: Connecting to database... -- 07:19:54.346 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:19:54.346 SQL [7017]: pgsql_db_connect() -- 07:19:54.350 DEBUG [7017]: Database connection successful -- 07:19:54.350 INFO [7017]: _SERVER found -- 07:19:54.350 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 07:19:54.350 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 07:19:54.350 INFO [7017]: HTTP_COOKIE = ci_session=t6mfuj681utrohekmneovgcks7blcpcb; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 07:19:54.350 INFO [7017]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 07:19:54.350 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:19:54.365 INFO [7017]: COREGRADE is stopping... -- 07:19:54.365 DEBUG [7017]: Closing database connection -- 07:19:54.365 SQL [7017]: pgsql_close() -- 07:19:54.339 DEBUG [6385]: Database connection successful -- 07:19:54.339 INFO [6385]: _SERVER found -- 07:19:54.339 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 07:19:54.339 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 07:19:54.339 INFO [6385]: HTTP_COOKIE = ci_session=t6mfuj681utrohekmneovgcks7blcpcb; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 07:19:54.339 INFO [6385]: QUERY_STRING = /member/configure -- 07:19:54.339 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:19:54.377 INFO [6385]: COREGRADE is stopping... -- 07:19:54.377 DEBUG [6385]: Closing database connection -- 07:19:54.377 SQL [6385]: pgsql_close() -- 07:19:54.485 INFO [6385]: COREGRADE is starting... -- 07:19:54.485 INFO [6385]: Version from config: 1.0 -- 07:19:54.485 DEBUG [6385]: Connecting to database... -- 07:19:54.485 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:19:54.485 SQL [6385]: pgsql_db_connect() -- 07:19:54.489 DEBUG [6385]: Database connection successful -- 07:19:54.489 INFO [6385]: _SERVER found -- 07:19:54.489 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 07:19:54.489 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 07:19:54.489 INFO [6385]: HTTP_COOKIE = ci_session=t6mfuj681utrohekmneovgcks7blcpcb; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 07:19:54.489 INFO [6385]: QUERY_STRING = /app-assets/data/locales/en.json -- 07:19:54.489 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:19:54.500 INFO [6385]: COREGRADE is stopping... -- 07:19:54.500 DEBUG [6385]: Closing database connection -- 07:19:54.500 SQL [6385]: pgsql_close() -- 07:20:07.944 INFO [6384]: COREGRADE is starting... -- 07:20:07.945 INFO [6384]: Version from config: 1.0 -- 07:20:07.945 DEBUG [6384]: Connecting to database... -- 07:20:07.945 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:20:07.945 SQL [6384]: pgsql_db_connect() -- 07:20:07.963 INFO [6381]: COREGRADE is starting... -- 07:20:07.963 INFO [6381]: Version from config: 1.0 -- 07:20:07.963 DEBUG [6381]: Connecting to database... -- 07:20:07.963 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:20:07.963 SQL [6381]: pgsql_db_connect() -- 07:20:07.967 DEBUG [6381]: Database connection successful -- 07:20:07.967 INFO [6381]: _SERVER found -- 07:20:07.967 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 07:20:07.967 INFO [6381]: SERVER_NAME = oameye.works.coregrade.com -- 07:20:07.967 INFO [6381]: HTTP_COOKIE = ci_session=t6mfuj681utrohekmneovgcks7blcpcb; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 07:20:07.967 INFO [6381]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 07:20:07.967 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:20:07.979 INFO [6381]: COREGRADE is stopping... -- 07:20:07.979 DEBUG [6381]: Closing database connection -- 07:20:07.979 SQL [6381]: pgsql_close() -- 07:20:07.949 DEBUG [6384]: Database connection successful -- 07:20:07.949 INFO [6384]: _SERVER found -- 07:20:07.949 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 07:20:07.949 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 07:20:07.949 INFO [6384]: HTTP_COOKIE = ci_session=t6mfuj681utrohekmneovgcks7blcpcb; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 07:20:07.949 INFO [6384]: QUERY_STRING = /member/page -- 07:20:07.949 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:20:07.987 INFO [6384]: COREGRADE is stopping... -- 07:20:07.987 DEBUG [6384]: Closing database connection -- 07:20:07.987 SQL [6384]: pgsql_close() -- 07:20:08.084 INFO [6384]: COREGRADE is starting... -- 07:20:08.085 INFO [6384]: Version from config: 1.0 -- 07:20:08.085 DEBUG [6384]: Connecting to database... -- 07:20:08.085 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:20:08.085 SQL [6384]: pgsql_db_connect() -- 07:20:08.089 DEBUG [6384]: Database connection successful -- 07:20:08.089 INFO [6384]: _SERVER found -- 07:20:08.089 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 07:20:08.089 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 07:20:08.089 INFO [6384]: HTTP_COOKIE = ci_session=t6mfuj681utrohekmneovgcks7blcpcb; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 07:20:08.089 INFO [6384]: QUERY_STRING = /app-assets/data/locales/en.json -- 07:20:08.089 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:20:08.100 INFO [6384]: COREGRADE is stopping... -- 07:20:08.100 DEBUG [6384]: Closing database connection -- 07:20:08.100 SQL [6384]: pgsql_close() -- 07:20:10.217 INFO [6384]: COREGRADE is starting... -- 07:20:10.218 INFO [6384]: Version from config: 1.0 -- 07:20:10.218 DEBUG [6384]: Connecting to database... -- 07:20:10.218 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:20:10.218 SQL [6384]: pgsql_db_connect() -- 07:20:10.222 DEBUG [6384]: Database connection successful -- 07:20:10.222 INFO [6384]: _SERVER found -- 07:20:10.222 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 07:20:10.222 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 07:20:10.222 INFO [6384]: HTTP_COOKIE = ci_session=t6mfuj681utrohekmneovgcks7blcpcb; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 07:20:10.222 INFO [6384]: QUERY_STRING = /member/configure -- 07:20:10.222 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:20:10.257 INFO [6384]: COREGRADE is stopping... -- 07:20:10.257 DEBUG [6384]: Closing database connection -- 07:20:10.257 SQL [6384]: pgsql_close() -- 07:22:47.509 INFO [6382]: COREGRADE is starting... -- 07:22:47.509 INFO [6382]: Version from config: 1.0 -- 07:22:47.509 DEBUG [6382]: Connecting to database... -- 07:22:47.509 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:22:47.509 SQL [6382]: pgsql_db_connect() -- 07:22:47.513 DEBUG [6382]: Database connection successful -- 07:22:47.513 INFO [6382]: _SERVER found -- 07:22:47.513 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 07:22:47.513 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 07:22:47.513 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 07:22:47.513 INFO [6382]: QUERY_STRING = /auth -- 07:22:47.513 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:22:47.549 INFO [6382]: COREGRADE is stopping... -- 07:22:47.549 DEBUG [6382]: Closing database connection -- 07:22:47.549 SQL [6382]: pgsql_close() -- 07:22:47.695 INFO [6382]: COREGRADE is starting... -- 07:22:47.695 INFO [6382]: Version from config: 1.0 -- 07:22:47.695 DEBUG [6382]: Connecting to database... -- 07:22:47.695 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:22:47.695 SQL [6382]: pgsql_db_connect() -- 07:22:47.699 DEBUG [6382]: Database connection successful -- 07:22:47.699 INFO [6382]: _SERVER found -- 07:22:47.699 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 07:22:47.699 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 07:22:47.699 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=jp7qlalpshjgfg1afr3e2iumociuk91b -- 07:22:47.699 INFO [6382]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 07:22:47.699 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:22:47.711 INFO [6382]: COREGRADE is stopping... -- 07:22:47.711 DEBUG [6382]: Closing database connection -- 07:22:47.711 SQL [6382]: pgsql_close() -- 07:22:48.639 INFO [6382]: COREGRADE is starting... -- 07:22:48.639 INFO [6382]: Version from config: 1.0 -- 07:22:48.639 DEBUG [6382]: Connecting to database... -- 07:22:48.639 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:22:48.639 SQL [6382]: pgsql_db_connect() -- 07:22:48.644 DEBUG [6382]: Database connection successful -- 07:22:48.644 INFO [6382]: _SERVER found -- 07:22:48.644 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 07:22:48.644 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 07:22:48.644 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=jp7qlalpshjgfg1afr3e2iumociuk91b -- 07:22:48.644 INFO [6382]: QUERY_STRING = /app-assets/data/locales/en.json -- 07:22:48.644 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:22:48.655 INFO [6382]: COREGRADE is stopping... -- 07:22:48.655 DEBUG [6382]: Closing database connection -- 07:22:48.655 SQL [6382]: pgsql_close() -- 08:06:22.389 INFO [6383]: COREGRADE is starting... -- 08:06:22.389 INFO [6383]: Version from config: 1.0 -- 08:06:22.389 DEBUG [6383]: Connecting to database... -- 08:06:22.389 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:06:22.389 SQL [6383]: pgsql_db_connect() -- 08:06:22.415 INFO [7159]: COREGRADE is starting... -- 08:06:22.415 INFO [7159]: Version from config: 1.0 -- 08:06:22.415 DEBUG [7159]: Connecting to database... -- 08:06:22.415 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:06:22.415 SQL [7159]: pgsql_db_connect() -- 08:06:22.394 DEBUG [6383]: Database connection successful -- 08:06:22.394 INFO [6383]: _SERVER found -- 08:06:22.394 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 08:06:22.394 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 08:06:22.394 INFO [6383]: HTTP_COOKIE = ci_session=t6mfuj681utrohekmneovgcks7blcpcb; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 08:06:22.394 INFO [6383]: QUERY_STRING = /auth -- 08:06:22.394 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:06:22.432 INFO [6383]: COREGRADE is stopping... -- 08:06:22.432 DEBUG [6383]: Closing database connection -- 08:06:22.432 SQL [6383]: pgsql_close() -- 08:06:22.420 DEBUG [7159]: Database connection successful -- 08:06:22.420 INFO [7159]: _SERVER found -- 08:06:22.420 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 08:06:22.420 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 08:06:22.420 INFO [7159]: HTTP_COOKIE = ci_session=t6mfuj681utrohekmneovgcks7blcpcb; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 08:06:22.420 INFO [7159]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 08:06:22.420 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:06:22.433 INFO [7159]: COREGRADE is stopping... -- 08:06:22.433 DEBUG [7159]: Closing database connection -- 08:06:22.433 SQL [7159]: pgsql_close() -- 08:06:22.651 INFO [6383]: COREGRADE is starting... -- 08:06:22.651 INFO [6383]: Version from config: 1.0 -- 08:06:22.651 DEBUG [6383]: Connecting to database... -- 08:06:22.652 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:06:22.652 SQL [6383]: pgsql_db_connect() -- 08:06:22.656 DEBUG [6383]: Database connection successful -- 08:06:22.656 INFO [6383]: _SERVER found -- 08:06:22.656 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 08:06:22.656 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 08:06:22.656 INFO [6383]: HTTP_COOKIE = ci_session=kgnloff0sptk1not3tjd2ctqjc327vdl; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 08:06:22.656 INFO [6383]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:06:22.656 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:06:22.667 INFO [6383]: COREGRADE is stopping... -- 08:06:22.667 DEBUG [6383]: Closing database connection -- 08:06:22.667 SQL [6383]: pgsql_close() -- 10:00:30.698 INFO [7160]: COREGRADE is starting... -- 10:00:30.698 INFO [7160]: Version from config: 1.0 -- 10:00:30.698 DEBUG [7160]: Connecting to database... -- 10:00:30.698 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:00:30.698 SQL [7160]: pgsql_db_connect() -- 10:00:30.722 INFO [6405]: COREGRADE is starting... -- 10:00:30.722 INFO [6405]: Version from config: 1.0 -- 10:00:30.722 DEBUG [6405]: Connecting to database... -- 10:00:30.722 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:00:30.722 SQL [6405]: pgsql_db_connect() -- 10:00:30.727 DEBUG [6405]: Database connection successful -- 10:00:30.727 INFO [6405]: _SERVER found -- 10:00:30.727 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 10:00:30.727 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 10:00:30.727 INFO [6405]: HTTP_COOKIE = ci_session=kgnloff0sptk1not3tjd2ctqjc327vdl; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 10:00:30.727 INFO [6405]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:00:30.727 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:00:30.740 INFO [6405]: COREGRADE is stopping... -- 10:00:30.740 DEBUG [6405]: Closing database connection -- 10:00:30.740 SQL [6405]: pgsql_close() -- 10:00:30.703 DEBUG [7160]: Database connection successful -- 10:00:30.703 INFO [7160]: _SERVER found -- 10:00:30.703 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 10:00:30.703 INFO [7160]: SERVER_NAME = oameye.works.coregrade.com -- 10:00:30.703 INFO [7160]: HTTP_COOKIE = ci_session=kgnloff0sptk1not3tjd2ctqjc327vdl; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 10:00:30.703 INFO [7160]: QUERY_STRING = /auth -- 10:00:30.703 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:00:30.746 INFO [7160]: COREGRADE is stopping... -- 10:00:30.746 DEBUG [7160]: Closing database connection -- 10:00:30.746 SQL [7160]: pgsql_close() -- 10:00:30.941 INFO [7160]: COREGRADE is starting... -- 10:00:30.942 INFO [7160]: Version from config: 1.0 -- 10:00:30.942 DEBUG [7160]: Connecting to database... -- 10:00:30.942 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:00:30.942 SQL [7160]: pgsql_db_connect() -- 10:00:30.946 DEBUG [7160]: Database connection successful -- 10:00:30.946 INFO [7160]: _SERVER found -- 10:00:30.946 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 10:00:30.946 INFO [7160]: SERVER_NAME = oameye.works.coregrade.com -- 10:00:30.946 INFO [7160]: HTTP_COOKIE = ci_session=a3ulmb6itg83692rjf4lbm9089kbdiqs; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 10:00:30.946 INFO [7160]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:00:30.946 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:00:30.957 INFO [7160]: COREGRADE is stopping... -- 10:00:30.957 DEBUG [7160]: Closing database connection -- 10:00:30.957 SQL [7160]: pgsql_close() -- 15:02:42.996 INFO [6409]: COREGRADE is starting... -- 15:02:42.997 INFO [6409]: Version from config: 1.0 -- 15:02:42.997 DEBUG [6409]: Connecting to database... -- 15:02:42.997 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:02:42.997 SQL [6409]: pgsql_db_connect() -- 15:02:43.040 INFO [6409]: COREGRADE is starting... -- 15:02:43.040 INFO [6409]: Version from config: 1.0 -- 15:02:43.040 DEBUG [6409]: Connecting to database... -- 15:02:43.040 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:02:43.040 SQL [6409]: pgsql_db_connect() -- 15:02:43.044 DEBUG [6409]: Database connection successful -- 15:02:43.044 INFO [6409]: _SERVER found -- 15:02:43.044 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 15:02:43.044 INFO [6409]: SERVER_NAME = oameye.works.coregrade.com -- 15:02:43.044 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 15:02:43.044 INFO [6409]: QUERY_STRING = -- 15:02:43.044 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:02:43.044 INFO [6409]: SystemStatus()09-09-********~************ -- 15:02:43.044 INFO [6409]: long coregrade_api_main(CVars in, CVars &out) -- 15:02:43.044 INFO [6409]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 15:02:43.044 INFO [6409]: account calls -- 15:02:43.044 INFO [6409]: account_calls() -- 15:02:43.044 INFO [6409]: LoginCoreGradeAccount() -- 15:02:43.044 FLOG_MAX [6409]: REQ_STRING(username) -- 15:02:43.044 FLOG_MAX [6409]: REQ_STRING(password) -- 15:02:43.044 FLOG_MAX [6409]: REQ_STRING(sessionid) -- 15:02:43.044 FLOG_MAX [6409]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:02:43.045 SQL [6409]: pgsql_query() -- 15:02:43.045 SQL [6409]: About to run query: -- 15:02:43.045 SQL [6409]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 15:02:43.048 SQL [6409]: Found rows: 1 -- 15:02:43.048 FLOG_MAX [6409]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 15:02:43.048 INFO [6409]: long SessionCheck(long uid, const char *sessionid, int create ) -- 15:02:43.048 SQL [6409]: pgsql_exec() -- 15:02:43.048 SQL [6409]: About to run query: -- 15:02:43.048 SQL [6409]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 15:02:43.050 SQL [6409]: PQcmdTuples: 1 -- 15:02:43.050 SQL [6409]: Affected rows: 1 -- 15:02:43.050 SQL [6409]: pgsql_exec() -- 15:02:43.050 SQL [6409]: About to run query: -- 15:02:43.050 SQL [6409]: DELETE FROM members_session WHERE member_id=5 -- 15:02:43.050 SQL [6409]: PQcmdTuples: 0 -- 15:02:43.050 SQL [6409]: Affected rows: 0 -- 15:02:43.050 SQL [6409]: pgsql_query() -- 15:02:43.050 SQL [6409]: About to run query: -- 15:02:43.050 SQL [6409]: SELECT * FROM members_session WHERE member_id=5 AND session<>'87BF18F345614FA4FF3DD4E84523DB1D' -- 15:02:43.051 SQL [6409]: Found rows: 0 -- 15:02:43.051 SQL [6409]: Found rows: 0 -- 15:02:43.051 FLOG_MAX [6409]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:02:43.051 SQL [6409]: pgsql_query() -- 15:02:43.051 SQL [6409]: About to run query: -- 15:02:43.051 SQL [6409]: SELECT * FROM members_session WHERE member_id=5 AND session='87BF18F345614FA4FF3DD4E84523DB1D' -- 15:02:43.051 SQL [6409]: Found rows: 0 -- 15:02:43.051 SQL [6409]: Found rows: 0 -- 15:02:43.051 FLOG_MAX [6409]: insert_db_record() -- 15:02:43.051 SQL [6409]: pgsql_exec() -- 15:02:43.051 SQL [6409]: About to run query: -- 15:02:43.051 SQL [6409]: INSERT INTO members_session (member_id,session) VALUES ('5','87BF18F345614FA4FF3DD4E84523DB1D') -- 15:02:43.053 SQL [6409]: PQcmdTuples: 1 -- 15:02:43.053 SQL [6409]: Affected rows: 1 -- 15:02:43.053 FLOG_MAX [6409]: SELECT currval('members_session_id_seq') -- 15:02:43.053 SQL [6409]: pgsql_query() -- 15:02:43.053 SQL [6409]: About to run query: -- 15:02:43.053 SQL [6409]: SELECT currval('members_session_id_seq') -- 15:02:43.053 SQL [6409]: Found rows: 1 -- 15:02:43.053 INFO [6409]: CreateDefaultPage() -- 15:02:43.053 FLOG_MAX [6409]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:02:43.053 SQL [6409]: pgsql_query() -- 15:02:43.054 SQL [6409]: About to run query: -- 15:02:43.054 SQL [6409]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 15:02:43.054 SQL [6409]: Found rows: 1 -- 15:02:43.054 FLOG_MAX [6409]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 15:02:43.054 SQL [6409]: pgsql_query() -- 15:02:43.054 SQL [6409]: About to run query: -- 15:02:43.054 SQL [6409]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 15:02:43.054 SQL [6409]: Found rows: 1 -- 15:02:43.054 INFO [6409]: /CreateDefaultPage() -- 15:02:43.054 INFO [6409]: /LoginCoreGradeAccount() -- 15:02:43.054 INFO [6409]: RET: added=2020-02-05 06:47:23.982154 -- 15:02:43.054 INFO [6409]: RET: email=ameye+11@chiefsoft.com -- 15:02:43.054 INFO [6409]: RET: firstname=Olu -- 15:02:43.054 INFO [6409]: RET: id=5 -- 15:02:43.054 INFO [6409]: RET: last_login= -- 15:02:43.054 INFO [6409]: RET: lastname=Amey -- 15:02:43.054 INFO [6409]: RET: loc=192.168.1.13 -- 15:02:43.054 INFO [6409]: RET: member_id=5 -- 15:02:43.054 INFO [6409]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 15:02:43.054 INFO [6409]: RET: phone= -- 15:02:43.054 INFO [6409]: RET: pid= -- 15:02:43.054 INFO [6409]: RET: result=YES I GET TO BACK END -- 15:02:43.054 INFO [6409]: RET: sessionid=87BF18F345614FA4FF3DD4E84523DB1D -- 15:02:43.054 INFO [6409]: RET: status=1 -- 15:02:43.054 INFO [6409]: RET: stauts=OK -- 15:02:43.054 INFO [6409]: RET: username=ameye+11@chiefsoft.com -- 15:02:43.054 INFO [6409]: RET: verified= -- 15:02:43.056 INFO [6409]: COREGRADE is stopping... -- 15:02:43.056 DEBUG [6409]: Closing database connection -- 15:02:43.056 SQL [6409]: pgsql_close() -- 15:02:43.002 DEBUG [6409]: Database connection successful -- 15:02:43.002 INFO [6409]: _SERVER found -- 15:02:43.002 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 15:02:43.002 INFO [6409]: SERVER_NAME = oameye.works.coregrade.com -- 15:02:43.002 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 15:02:43.002 INFO [6409]: QUERY_STRING = /auth -- 15:02:43.002 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:02:43.056 INFO [6409]: COREGRADE is stopping... -- 15:02:43.056 DEBUG [6409]: Closing database connection -- 15:02:43.056 SQL [6409]: pgsql_close() -- 15:02:43.091 INFO [6409]: COREGRADE is starting... -- 15:02:43.091 INFO [6409]: Version from config: 1.0 -- 15:02:43.091 DEBUG [6409]: Connecting to database... -- 15:02:43.091 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:02:43.091 SQL [6409]: pgsql_db_connect() -- 15:02:43.095 DEBUG [6409]: Database connection successful -- 15:02:43.095 INFO [6409]: _SERVER found -- 15:02:43.095 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 15:02:43.095 INFO [6409]: SERVER_NAME = oameye.works.coregrade.com -- 15:02:43.095 INFO [6409]: HTTP_COOKIE = ci_session=rvpqtlscfkk25gsket85b7flao10t9mf; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 15:02:43.095 INFO [6409]: QUERY_STRING = /member/index -- 15:02:43.095 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:02:43.132 INFO [6409]: COREGRADE is stopping... -- 15:02:43.132 DEBUG [6409]: Closing database connection -- 15:02:43.132 SQL [6409]: pgsql_close() -- 15:02:43.247 INFO [6409]: COREGRADE is starting... -- 15:02:43.247 INFO [6409]: Version from config: 1.0 -- 15:02:43.247 DEBUG [6409]: Connecting to database... -- 15:02:43.247 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:02:43.247 SQL [6409]: pgsql_db_connect() -- 15:02:43.251 DEBUG [6409]: Database connection successful -- 15:02:43.251 INFO [6409]: _SERVER found -- 15:02:43.251 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 15:02:43.251 INFO [6409]: SERVER_NAME = oameye.works.coregrade.com -- 15:02:43.251 INFO [6409]: HTTP_COOKIE = ci_session=rvpqtlscfkk25gsket85b7flao10t9mf; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 15:02:43.251 INFO [6409]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:02:43.251 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:02:43.262 INFO [6409]: COREGRADE is stopping... -- 15:02:43.262 DEBUG [6409]: Closing database connection -- 15:02:43.262 SQL [6409]: pgsql_close() -- 15:02:43.271 INFO [6409]: COREGRADE is starting... -- 15:02:43.271 INFO [6409]: Version from config: 1.0 -- 15:02:43.271 DEBUG [6409]: Connecting to database... -- 15:02:43.271 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:02:43.271 SQL [6409]: pgsql_db_connect() -- 15:02:43.275 DEBUG [6409]: Database connection successful -- 15:02:43.275 INFO [6409]: _SERVER found -- 15:02:43.275 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 15:02:43.275 INFO [6409]: SERVER_NAME = oameye.works.coregrade.com -- 15:02:43.275 INFO [6409]: HTTP_COOKIE = ci_session=rvpqtlscfkk25gsket85b7flao10t9mf; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 15:02:43.275 INFO [6409]: QUERY_STRING = /app-assets/data/locales/en.json -- 15:02:43.275 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:02:43.286 INFO [6409]: COREGRADE is stopping... -- 15:02:43.286 DEBUG [6409]: Closing database connection -- 15:02:43.286 SQL [6409]: pgsql_close() -- 15:02:45.311 INFO [6409]: COREGRADE is starting... -- 15:02:45.311 INFO [6409]: Version from config: 1.0 -- 15:02:45.311 DEBUG [6409]: Connecting to database... -- 15:02:45.311 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:02:45.311 SQL [6409]: pgsql_db_connect() -- 15:02:45.315 DEBUG [6409]: Database connection successful -- 15:02:45.315 INFO [6409]: _SERVER found -- 15:02:45.315 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 15:02:45.315 INFO [6409]: SERVER_NAME = oameye.works.coregrade.com -- 15:02:45.315 INFO [6409]: HTTP_COOKIE = ci_session=rvpqtlscfkk25gsket85b7flao10t9mf; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 15:02:45.315 INFO [6409]: QUERY_STRING = /member/page -- 15:02:45.315 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:02:45.356 INFO [6409]: COREGRADE is stopping... -- 15:02:45.356 DEBUG [6409]: Closing database connection -- 15:02:45.356 SQL [6409]: pgsql_close() -- 15:02:45.425 INFO [6409]: COREGRADE is starting... -- 15:02:45.426 INFO [6409]: Version from config: 1.0 -- 15:02:45.426 DEBUG [6409]: Connecting to database... -- 15:02:45.426 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:02:45.426 SQL [6409]: pgsql_db_connect() -- 15:02:45.441 INFO [7017]: COREGRADE is starting... -- 15:02:45.441 INFO [7017]: Version from config: 1.0 -- 15:02:45.441 DEBUG [7017]: Connecting to database... -- 15:02:45.441 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:02:45.441 SQL [7017]: pgsql_db_connect() -- 15:02:45.429 DEBUG [6409]: Database connection successful -- 15:02:45.429 INFO [6409]: _SERVER found -- 15:02:45.429 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 15:02:45.429 INFO [6409]: SERVER_NAME = oameye.works.coregrade.com -- 15:02:45.429 INFO [6409]: HTTP_COOKIE = ci_session=rvpqtlscfkk25gsket85b7flao10t9mf; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 15:02:45.429 INFO [6409]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:02:45.429 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:02:45.441 INFO [6409]: COREGRADE is stopping... -- 15:02:45.441 DEBUG [6409]: Closing database connection -- 15:02:45.441 SQL [6409]: pgsql_close() -- 15:02:45.445 DEBUG [7017]: Database connection successful -- 15:02:45.445 INFO [7017]: _SERVER found -- 15:02:45.445 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 15:02:45.445 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 15:02:45.445 INFO [7017]: HTTP_COOKIE = ci_session=rvpqtlscfkk25gsket85b7flao10t9mf; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 15:02:45.445 INFO [7017]: QUERY_STRING = /app-assets/data/locales/en.json -- 15:02:45.445 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:02:45.458 INFO [7017]: COREGRADE is stopping... -- 15:02:45.458 DEBUG [7017]: Closing database connection -- 15:02:45.458 SQL [7017]: pgsql_close() -- 15:04:10.408 INFO [6385]: COREGRADE is starting... -- 15:04:10.408 INFO [6385]: Version from config: 1.0 -- 15:04:10.408 DEBUG [6385]: Connecting to database... -- 15:04:10.408 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:04:10.408 SQL [6385]: pgsql_db_connect() -- 15:04:10.412 DEBUG [6385]: Database connection successful -- 15:04:10.412 INFO [6385]: _SERVER found -- 15:04:10.412 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 15:04:10.412 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 15:04:10.412 INFO [6385]: HTTP_COOKIE = ci_session=rvpqtlscfkk25gsket85b7flao10t9mf; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 15:04:10.412 INFO [6385]: QUERY_STRING = /auth/logout -- 15:04:10.412 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:04:10.446 INFO [6385]: COREGRADE is stopping... -- 15:04:10.446 DEBUG [6385]: Closing database connection -- 15:04:10.446 SQL [6385]: pgsql_close() -- 15:04:10.516 INFO [6385]: COREGRADE is starting... -- 15:04:10.516 INFO [6385]: Version from config: 1.0 -- 15:04:10.516 DEBUG [6385]: Connecting to database... -- 15:04:10.516 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:04:10.516 SQL [6385]: pgsql_db_connect() -- 15:04:10.520 DEBUG [6385]: Database connection successful -- 15:04:10.520 INFO [6385]: _SERVER found -- 15:04:10.520 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 15:04:10.520 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 15:04:10.520 INFO [6385]: HTTP_COOKIE = ci_session=rvpqtlscfkk25gsket85b7flao10t9mf; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 15:04:10.520 INFO [6385]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:04:10.520 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:04:10.531 INFO [6385]: COREGRADE is stopping... -- 15:04:10.531 DEBUG [6385]: Closing database connection -- 15:04:10.531 SQL [6385]: pgsql_close() -- 15:04:10.543 INFO [6381]: COREGRADE is starting... -- 15:04:10.543 INFO [6381]: Version from config: 1.0 -- 15:04:10.543 DEBUG [6381]: Connecting to database... -- 15:04:10.543 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:04:10.543 SQL [6381]: pgsql_db_connect() -- 15:04:10.547 DEBUG [6381]: Database connection successful -- 15:04:10.547 INFO [6381]: _SERVER found -- 15:04:10.547 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 15:04:10.547 INFO [6381]: SERVER_NAME = oameye.works.coregrade.com -- 15:04:10.547 INFO [6381]: HTTP_COOKIE = ci_session=rvpqtlscfkk25gsket85b7flao10t9mf; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 15:04:10.547 INFO [6381]: QUERY_STRING = /app-assets/data/locales/en.json -- 15:04:10.547 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:04:10.559 INFO [6381]: COREGRADE is stopping... -- 15:04:10.559 DEBUG [6381]: Closing database connection -- 15:04:10.559 SQL [6381]: pgsql_close() -- 15:04:22.229 INFO [6384]: COREGRADE is starting... -- 15:04:22.229 INFO [6384]: Version from config: 1.0 -- 15:04:22.229 DEBUG [6384]: Connecting to database... -- 15:04:22.229 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:04:22.229 SQL [6384]: pgsql_db_connect() -- 15:04:22.255 INFO [6382]: COREGRADE is starting... -- 15:04:22.256 INFO [6382]: Version from config: 1.0 -- 15:04:22.256 DEBUG [6382]: Connecting to database... -- 15:04:22.256 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:04:22.256 SQL [6382]: pgsql_db_connect() -- 15:04:22.264 INFO [7159]: COREGRADE is starting... -- 15:04:22.264 INFO [7159]: Version from config: 1.0 -- 15:04:22.264 DEBUG [7159]: Connecting to database... -- 15:04:22.264 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:04:22.264 SQL [7159]: pgsql_db_connect() -- 15:04:22.233 DEBUG [6384]: Database connection successful -- 15:04:22.233 INFO [6384]: _SERVER found -- 15:04:22.233 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 15:04:22.233 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 15:04:22.233 INFO [6384]: HTTP_COOKIE = ci_session=rvpqtlscfkk25gsket85b7flao10t9mf; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 15:04:22.233 INFO [6384]: QUERY_STRING = -- 15:04:22.233 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:04:22.268 INFO [6384]: COREGRADE is stopping... -- 15:04:22.268 DEBUG [6384]: Closing database connection -- 15:04:22.268 SQL [6384]: pgsql_close() -- 15:04:22.262 DEBUG [6382]: Database connection successful -- 15:04:22.262 INFO [6382]: _SERVER found -- 15:04:22.262 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 15:04:22.262 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 15:04:22.262 INFO [6382]: HTTP_COOKIE = ci_session=rvpqtlscfkk25gsket85b7flao10t9mf; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 15:04:22.262 INFO [6382]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 15:04:22.262 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:04:22.278 INFO [6382]: COREGRADE is stopping... -- 15:04:22.278 DEBUG [6382]: Closing database connection -- 15:04:22.278 SQL [6382]: pgsql_close() -- 15:04:22.270 DEBUG [7159]: Database connection successful -- 15:04:22.270 INFO [7159]: _SERVER found -- 15:04:22.270 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 15:04:22.270 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 15:04:22.270 INFO [7159]: HTTP_COOKIE = ci_session=rvpqtlscfkk25gsket85b7flao10t9mf; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 15:04:22.270 INFO [7159]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:04:22.270 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:04:22.283 INFO [7159]: COREGRADE is stopping... -- 15:04:22.283 DEBUG [7159]: Closing database connection -- 15:04:22.283 SQL [7159]: pgsql_close() -- 15:04:22.320 INFO [7159]: COREGRADE is starting... -- 15:04:22.320 INFO [7159]: Version from config: 1.0 -- 15:04:22.320 DEBUG [7159]: Connecting to database... -- 15:04:22.320 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:04:22.320 SQL [7159]: pgsql_db_connect() -- 15:04:22.324 DEBUG [7159]: Database connection successful -- 15:04:22.324 INFO [7159]: _SERVER found -- 15:04:22.324 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 15:04:22.324 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 15:04:22.324 INFO [7159]: HTTP_COOKIE = ci_session=rvpqtlscfkk25gsket85b7flao10t9mf; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 15:04:22.324 INFO [7159]: QUERY_STRING = -- 15:04:22.324 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:04:22.361 INFO [7159]: COREGRADE is stopping... -- 15:04:22.361 DEBUG [7159]: Closing database connection -- 15:04:22.361 SQL [7159]: pgsql_close() -- 15:04:22.432 INFO [6382]: COREGRADE is starting... -- 15:04:22.433 INFO [6382]: Version from config: 1.0 -- 15:04:22.433 DEBUG [6382]: Connecting to database... -- 15:04:22.433 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:04:22.433 SQL [6382]: pgsql_db_connect() -- 15:04:22.433 INFO [7159]: COREGRADE is starting... -- 15:04:22.434 INFO [7159]: Version from config: 1.0 -- 15:04:22.434 DEBUG [7159]: Connecting to database... -- 15:04:22.434 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:04:22.434 SQL [7159]: pgsql_db_connect() -- 15:04:22.437 DEBUG [6382]: Database connection successful -- 15:04:22.437 INFO [6382]: _SERVER found -- 15:04:22.437 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 15:04:22.437 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 15:04:22.437 INFO [6382]: HTTP_COOKIE = ci_session=rvpqtlscfkk25gsket85b7flao10t9mf; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 15:04:22.437 INFO [6382]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 15:04:22.437 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:04:22.448 INFO [6382]: COREGRADE is stopping... -- 15:04:22.448 DEBUG [6382]: Closing database connection -- 15:04:22.448 SQL [6382]: pgsql_close() -- 15:04:22.437 DEBUG [7159]: Database connection successful -- 15:04:22.437 INFO [7159]: _SERVER found -- 15:04:22.437 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 15:04:22.437 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 15:04:22.437 INFO [7159]: HTTP_COOKIE = ci_session=rvpqtlscfkk25gsket85b7flao10t9mf; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1235802041.1581245059 -- 15:04:22.437 INFO [7159]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:04:22.437 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:04:22.448 INFO [7159]: COREGRADE is stopping... -- 15:04:22.448 DEBUG [7159]: Closing database connection -- 15:04:22.448 SQL [7159]: pgsql_close() -- 15:26:05.869 INFO [6383]: COREGRADE is starting... -- 15:26:05.870 INFO [6383]: Version from config: 1.0 -- 15:26:05.870 DEBUG [6383]: Connecting to database... -- 15:26:05.870 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:26:05.870 SQL [6383]: pgsql_db_connect() -- 15:26:05.875 DEBUG [6383]: Database connection successful -- 15:26:05.875 INFO [6383]: _SERVER found -- 15:26:05.875 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 15:26:05.875 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:26:05.875 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361 -- 15:26:05.875 INFO [6383]: QUERY_STRING = /auth -- 15:26:05.875 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:26:05.910 INFO [6383]: COREGRADE is stopping... -- 15:26:05.910 DEBUG [6383]: Closing database connection -- 15:26:05.910 SQL [6383]: pgsql_close() -- 15:26:06.385 INFO [7160]: COREGRADE is starting... -- 15:26:06.386 INFO [7160]: Version from config: 1.0 -- 15:26:06.386 DEBUG [7160]: Connecting to database... -- 15:26:06.386 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:26:06.386 SQL [7160]: pgsql_db_connect() -- 15:26:06.390 DEBUG [7160]: Database connection successful -- 15:26:06.390 INFO [7160]: _SERVER found -- 15:26:06.390 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 15:26:06.390 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:26:06.390 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=l061p7o73kec7ppg3926nip87b4veiu7 -- 15:26:06.390 INFO [7160]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:26:06.390 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:26:06.403 INFO [7160]: COREGRADE is stopping... -- 15:26:06.403 DEBUG [7160]: Closing database connection -- 15:26:06.403 SQL [7160]: pgsql_close() -- 15:26:06.419 INFO [7160]: COREGRADE is starting... -- 15:26:06.419 INFO [7160]: Version from config: 1.0 -- 15:26:06.419 DEBUG [7160]: Connecting to database... -- 15:26:06.419 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:26:06.419 SQL [7160]: pgsql_db_connect() -- 15:26:06.424 DEBUG [7160]: Database connection successful -- 15:26:06.424 INFO [7160]: _SERVER found -- 15:26:06.424 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 15:26:06.424 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:26:06.424 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=l061p7o73kec7ppg3926nip87b4veiu7 -- 15:26:06.424 INFO [7160]: QUERY_STRING = /app-assets/data/locales/en.json -- 15:26:06.424 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:26:06.435 INFO [7160]: COREGRADE is stopping... -- 15:26:06.435 DEBUG [7160]: Closing database connection -- 15:26:06.435 SQL [7160]: pgsql_close() -- 16:09:50.566 INFO [6409]: COREGRADE is starting... -- 16:09:50.566 INFO [6409]: Version from config: 1.0 -- 16:09:50.566 DEBUG [6409]: Connecting to database... -- 16:09:50.566 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:09:50.566 SQL [6409]: pgsql_db_connect() -- 16:09:50.609 INFO [6409]: COREGRADE is starting... -- 16:09:50.609 INFO [6409]: Version from config: 1.0 -- 16:09:50.609 DEBUG [6409]: Connecting to database... -- 16:09:50.609 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:09:50.609 SQL [6409]: pgsql_db_connect() -- 16:09:50.613 DEBUG [6409]: Database connection successful -- 16:09:50.613 INFO [6409]: _SERVER found -- 16:09:50.613 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 16:09:50.613 INFO [6409]: SERVER_NAME = oameye.works.coregrade.com -- 16:09:50.613 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 16:09:50.613 INFO [6409]: QUERY_STRING = -- 16:09:50.613 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:09:50.613 INFO [6409]: SystemStatus()09-09-********~************ -- 16:09:50.613 INFO [6409]: long coregrade_api_main(CVars in, CVars &out) -- 16:09:50.613 INFO [6409]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 16:09:50.613 INFO [6409]: account calls -- 16:09:50.613 INFO [6409]: account_calls() -- 16:09:50.613 INFO [6409]: LoginCoreGradeAccount() -- 16:09:50.613 FLOG_MAX [6409]: REQ_STRING(username) -- 16:09:50.613 FLOG_MAX [6409]: REQ_STRING(password) -- 16:09:50.613 FLOG_MAX [6409]: REQ_STRING(sessionid) -- 16:09:50.613 FLOG_MAX [6409]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:09:50.613 SQL [6409]: pgsql_query() -- 16:09:50.613 SQL [6409]: About to run query: -- 16:09:50.613 SQL [6409]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 16:09:50.617 SQL [6409]: Found rows: 1 -- 16:09:50.617 FLOG_MAX [6409]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 16:09:50.617 INFO [6409]: long SessionCheck(long uid, const char *sessionid, int create ) -- 16:09:50.617 SQL [6409]: pgsql_exec() -- 16:09:50.617 SQL [6409]: About to run query: -- 16:09:50.617 SQL [6409]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 16:09:50.618 SQL [6409]: PQcmdTuples: 1 -- 16:09:50.618 SQL [6409]: Affected rows: 1 -- 16:09:50.618 SQL [6409]: pgsql_exec() -- 16:09:50.618 SQL [6409]: About to run query: -- 16:09:50.618 SQL [6409]: DELETE FROM members_session WHERE member_id=5 -- 16:09:50.619 SQL [6409]: PQcmdTuples: 0 -- 16:09:50.619 SQL [6409]: Affected rows: 0 -- 16:09:50.619 SQL [6409]: pgsql_query() -- 16:09:50.619 SQL [6409]: About to run query: -- 16:09:50.619 SQL [6409]: SELECT * FROM members_session WHERE member_id=5 AND session<>'5CB79F0F29C984F3E736FA726F9E41E0' -- 16:09:50.619 SQL [6409]: Found rows: 0 -- 16:09:50.619 SQL [6409]: Found rows: 0 -- 16:09:50.619 FLOG_MAX [6409]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:09:50.619 SQL [6409]: pgsql_query() -- 16:09:50.619 SQL [6409]: About to run query: -- 16:09:50.619 SQL [6409]: SELECT * FROM members_session WHERE member_id=5 AND session='5CB79F0F29C984F3E736FA726F9E41E0' -- 16:09:50.620 SQL [6409]: Found rows: 0 -- 16:09:50.620 SQL [6409]: Found rows: 0 -- 16:09:50.620 FLOG_MAX [6409]: insert_db_record() -- 16:09:50.620 SQL [6409]: pgsql_exec() -- 16:09:50.620 SQL [6409]: About to run query: -- 16:09:50.620 SQL [6409]: INSERT INTO members_session (member_id,session) VALUES ('5','5CB79F0F29C984F3E736FA726F9E41E0') -- 16:09:50.621 SQL [6409]: PQcmdTuples: 1 -- 16:09:50.621 SQL [6409]: Affected rows: 1 -- 16:09:50.621 FLOG_MAX [6409]: SELECT currval('members_session_id_seq') -- 16:09:50.621 SQL [6409]: pgsql_query() -- 16:09:50.621 SQL [6409]: About to run query: -- 16:09:50.621 SQL [6409]: SELECT currval('members_session_id_seq') -- 16:09:50.622 SQL [6409]: Found rows: 1 -- 16:09:50.622 INFO [6409]: CreateDefaultPage() -- 16:09:50.622 FLOG_MAX [6409]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:09:50.622 SQL [6409]: pgsql_query() -- 16:09:50.622 SQL [6409]: About to run query: -- 16:09:50.622 SQL [6409]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 16:09:50.622 SQL [6409]: Found rows: 1 -- 16:09:50.622 FLOG_MAX [6409]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 16:09:50.622 SQL [6409]: pgsql_query() -- 16:09:50.622 SQL [6409]: About to run query: -- 16:09:50.622 SQL [6409]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 16:09:50.623 SQL [6409]: Found rows: 1 -- 16:09:50.623 INFO [6409]: /CreateDefaultPage() -- 16:09:50.623 INFO [6409]: /LoginCoreGradeAccount() -- 16:09:50.623 INFO [6409]: RET: added=2020-02-05 06:47:23.982154 -- 16:09:50.623 INFO [6409]: RET: email=ameye+11@chiefsoft.com -- 16:09:50.623 INFO [6409]: RET: firstname=Olu -- 16:09:50.623 INFO [6409]: RET: id=5 -- 16:09:50.623 INFO [6409]: RET: last_login= -- 16:09:50.623 INFO [6409]: RET: lastname=Amey -- 16:09:50.623 INFO [6409]: RET: loc=192.168.1.13 -- 16:09:50.623 INFO [6409]: RET: member_id=5 -- 16:09:50.623 INFO [6409]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 16:09:50.623 INFO [6409]: RET: phone= -- 16:09:50.623 INFO [6409]: RET: pid= -- 16:09:50.623 INFO [6409]: RET: result=YES I GET TO BACK END -- 16:09:50.623 INFO [6409]: RET: sessionid=5CB79F0F29C984F3E736FA726F9E41E0 -- 16:09:50.623 INFO [6409]: RET: status=1 -- 16:09:50.623 INFO [6409]: RET: stauts=OK -- 16:09:50.623 INFO [6409]: RET: username=ameye+11@chiefsoft.com -- 16:09:50.623 INFO [6409]: RET: verified= -- 16:09:50.624 INFO [6409]: COREGRADE is stopping... -- 16:09:50.624 DEBUG [6409]: Closing database connection -- 16:09:50.624 SQL [6409]: pgsql_close() -- 16:09:50.571 DEBUG [6409]: Database connection successful -- 16:09:50.571 INFO [6409]: _SERVER found -- 16:09:50.571 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 16:09:50.571 INFO [6409]: SERVER_NAME = oameye.works.coregrade.com -- 16:09:50.571 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 16:09:50.571 INFO [6409]: QUERY_STRING = /auth -- 16:09:50.571 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:09:50.624 INFO [6409]: COREGRADE is stopping... -- 16:09:50.624 DEBUG [6409]: Closing database connection -- 16:09:50.624 SQL [6409]: pgsql_close() -- 16:09:50.642 INFO [6409]: COREGRADE is starting... -- 16:09:50.642 INFO [6409]: Version from config: 1.0 -- 16:09:50.642 DEBUG [6409]: Connecting to database... -- 16:09:50.642 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:09:50.642 SQL [6409]: pgsql_db_connect() -- 16:09:50.646 DEBUG [6409]: Database connection successful -- 16:09:50.646 INFO [6409]: _SERVER found -- 16:09:50.646 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 16:09:50.646 INFO [6409]: SERVER_NAME = oameye.works.coregrade.com -- 16:09:50.646 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=un9gtp2mhu3hn0s1rlkg87q4gi9k7g61 -- 16:09:50.646 INFO [6409]: QUERY_STRING = /member/index -- 16:09:50.646 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:09:50.683 INFO [6409]: COREGRADE is stopping... -- 16:09:50.683 DEBUG [6409]: Closing database connection -- 16:09:50.683 SQL [6409]: pgsql_close() -- 16:09:51.249 INFO [6409]: COREGRADE is starting... -- 16:09:51.249 INFO [6409]: Version from config: 1.0 -- 16:09:51.249 DEBUG [6409]: Connecting to database... -- 16:09:51.249 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:09:51.249 SQL [6409]: pgsql_db_connect() -- 16:09:51.253 DEBUG [6409]: Database connection successful -- 16:09:51.253 INFO [6409]: _SERVER found -- 16:09:51.253 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 16:09:51.253 INFO [6409]: SERVER_NAME = oameye.works.coregrade.com -- 16:09:51.253 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=un9gtp2mhu3hn0s1rlkg87q4gi9k7g61 -- 16:09:51.253 INFO [6409]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:09:51.253 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:09:51.265 INFO [6409]: COREGRADE is stopping... -- 16:09:51.265 DEBUG [6409]: Closing database connection -- 16:09:51.265 SQL [6409]: pgsql_close() -- 16:09:51.303 INFO [6409]: COREGRADE is starting... -- 16:09:51.303 INFO [6409]: Version from config: 1.0 -- 16:09:51.303 DEBUG [6409]: Connecting to database... -- 16:09:51.303 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:09:51.303 SQL [6409]: pgsql_db_connect() -- 16:09:51.307 DEBUG [6409]: Database connection successful -- 16:09:51.307 INFO [6409]: _SERVER found -- 16:09:51.307 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 16:09:51.307 INFO [6409]: SERVER_NAME = oameye.works.coregrade.com -- 16:09:51.307 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=un9gtp2mhu3hn0s1rlkg87q4gi9k7g61 -- 16:09:51.307 INFO [6409]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:09:51.307 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:09:51.318 INFO [6409]: COREGRADE is stopping... -- 16:09:51.318 DEBUG [6409]: Closing database connection -- 16:09:51.318 SQL [6409]: pgsql_close() -- 16:09:53.027 INFO [6409]: COREGRADE is starting... -- 16:09:53.028 INFO [6409]: Version from config: 1.0 -- 16:09:53.028 DEBUG [6409]: Connecting to database... -- 16:09:53.028 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:09:53.028 SQL [6409]: pgsql_db_connect() -- 16:09:53.032 DEBUG [6409]: Database connection successful -- 16:09:53.032 INFO [6409]: _SERVER found -- 16:09:53.032 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 16:09:53.032 INFO [6409]: SERVER_NAME = oameye.works.coregrade.com -- 16:09:53.032 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=un9gtp2mhu3hn0s1rlkg87q4gi9k7g61 -- 16:09:53.032 INFO [6409]: QUERY_STRING = /member/page -- 16:09:53.032 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:09:53.069 INFO [6409]: COREGRADE is stopping... -- 16:09:53.070 DEBUG [6409]: Closing database connection -- 16:09:53.070 SQL [6409]: pgsql_close() -- 16:09:53.196 INFO [6409]: COREGRADE is starting... -- 16:09:53.196 INFO [6409]: Version from config: 1.0 -- 16:09:53.196 DEBUG [6409]: Connecting to database... -- 16:09:53.196 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:09:53.196 SQL [6409]: pgsql_db_connect() -- 16:09:53.200 DEBUG [6409]: Database connection successful -- 16:09:53.200 INFO [6409]: _SERVER found -- 16:09:53.200 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 16:09:53.200 INFO [6409]: SERVER_NAME = oameye.works.coregrade.com -- 16:09:53.200 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=un9gtp2mhu3hn0s1rlkg87q4gi9k7g61 -- 16:09:53.200 INFO [6409]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:09:53.200 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:09:53.211 INFO [6409]: COREGRADE is stopping... -- 16:09:53.211 DEBUG [6409]: Closing database connection -- 16:09:53.211 SQL [6409]: pgsql_close() -- 16:09:53.354 INFO [6409]: COREGRADE is starting... -- 16:09:53.354 INFO [6409]: Version from config: 1.0 -- 16:09:53.354 DEBUG [6409]: Connecting to database... -- 16:09:53.354 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:09:53.354 SQL [6409]: pgsql_db_connect() -- 16:09:53.358 DEBUG [6409]: Database connection successful -- 16:09:53.358 INFO [6409]: _SERVER found -- 16:09:53.358 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 16:09:53.358 INFO [6409]: SERVER_NAME = oameye.works.coregrade.com -- 16:09:53.358 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=un9gtp2mhu3hn0s1rlkg87q4gi9k7g61 -- 16:09:53.358 INFO [6409]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:09:53.358 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:09:53.369 INFO [6409]: COREGRADE is stopping... -- 16:09:53.369 DEBUG [6409]: Closing database connection -- 16:09:53.369 SQL [6409]: pgsql_close() -- 16:10:34.604 INFO [7017]: COREGRADE is starting... -- 16:10:34.604 INFO [7017]: Version from config: 1.0 -- 16:10:34.604 DEBUG [7017]: Connecting to database... -- 16:10:34.604 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:10:34.604 SQL [7017]: pgsql_db_connect() -- 16:10:34.609 DEBUG [7017]: Database connection successful -- 16:10:34.609 INFO [7017]: _SERVER found -- 16:10:34.609 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 16:10:34.609 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 16:10:34.609 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=un9gtp2mhu3hn0s1rlkg87q4gi9k7g61 -- 16:10:34.609 INFO [7017]: QUERY_STRING = /member/viewCardAddAction -- 16:10:34.609 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:10:34.644 INFO [7017]: COREGRADE is stopping... -- 16:10:34.644 DEBUG [7017]: Closing database connection -- 16:10:34.644 SQL [7017]: pgsql_close() -- 16:10:35.786 INFO [7017]: COREGRADE is starting... -- 16:10:35.786 INFO [7017]: Version from config: 1.0 -- 16:10:35.786 DEBUG [7017]: Connecting to database... -- 16:10:35.786 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:10:35.786 SQL [7017]: pgsql_db_connect() -- 16:10:35.790 DEBUG [7017]: Database connection successful -- 16:10:35.790 INFO [7017]: _SERVER found -- 16:10:35.790 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 16:10:35.790 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 16:10:35.790 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=un9gtp2mhu3hn0s1rlkg87q4gi9k7g61 -- 16:10:35.790 INFO [7017]: QUERY_STRING = /member/viewCardAddAction -- 16:10:35.790 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:10:35.821 INFO [7017]: COREGRADE is stopping... -- 16:10:35.821 DEBUG [7017]: Closing database connection -- 16:10:35.821 SQL [7017]: pgsql_close() -- 16:10:39.464 INFO [7017]: COREGRADE is starting... -- 16:10:39.464 INFO [7017]: Version from config: 1.0 -- 16:10:39.464 DEBUG [7017]: Connecting to database... -- 16:10:39.464 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:10:39.464 SQL [7017]: pgsql_db_connect() -- 16:10:39.469 DEBUG [7017]: Database connection successful -- 16:10:39.469 INFO [7017]: _SERVER found -- 16:10:39.469 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 16:10:39.469 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 16:10:39.469 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=un9gtp2mhu3hn0s1rlkg87q4gi9k7g61 -- 16:10:39.469 INFO [7017]: QUERY_STRING = /member/viewCardAddAction -- 16:10:39.469 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:10:39.499 INFO [7017]: COREGRADE is stopping... -- 16:10:39.499 DEBUG [7017]: Closing database connection -- 16:10:39.499 SQL [7017]: pgsql_close() -- 16:12:42.251 INFO [6385]: COREGRADE is starting... -- 16:12:42.251 INFO [6385]: Version from config: 1.0 -- 16:12:42.251 DEBUG [6385]: Connecting to database... -- 16:12:42.251 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:12:42.251 SQL [6385]: pgsql_db_connect() -- 16:12:42.255 DEBUG [6385]: Database connection successful -- 16:12:42.255 INFO [6385]: _SERVER found -- 16:12:42.255 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 16:12:42.255 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 16:12:42.255 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=un9gtp2mhu3hn0s1rlkg87q4gi9k7g61 -- 16:12:42.255 INFO [6385]: QUERY_STRING = /member/viewCardAddAction -- 16:12:42.255 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:12:42.288 INFO [6385]: COREGRADE is stopping... -- 16:12:42.288 DEBUG [6385]: Closing database connection -- 16:12:42.288 SQL [6385]: pgsql_close() -- 16:15:08.589 INFO [6381]: COREGRADE is starting... -- 16:15:08.589 INFO [6381]: Version from config: 1.0 -- 16:15:08.589 DEBUG [6381]: Connecting to database... -- 16:15:08.589 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:15:08.589 SQL [6381]: pgsql_db_connect() -- 16:15:08.593 DEBUG [6381]: Database connection successful -- 16:15:08.593 INFO [6381]: _SERVER found -- 16:15:08.593 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 16:15:08.593 INFO [6381]: SERVER_NAME = oameye.works.coregrade.com -- 16:15:08.593 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=un9gtp2mhu3hn0s1rlkg87q4gi9k7g61 -- 16:15:08.593 INFO [6381]: QUERY_STRING = /member/viewCardAddAction -- 16:15:08.593 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:15:08.626 INFO [6381]: COREGRADE is stopping... -- 16:15:08.626 DEBUG [6381]: Closing database connection -- 16:15:08.626 SQL [6381]: pgsql_close() -- 16:15:23.951 INFO [6384]: COREGRADE is starting... -- 16:15:23.951 INFO [6384]: Version from config: 1.0 -- 16:15:23.951 DEBUG [6384]: Connecting to database... -- 16:15:23.951 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:15:23.951 SQL [6384]: pgsql_db_connect() -- 16:15:23.955 DEBUG [6384]: Database connection successful -- 16:15:23.955 INFO [6384]: _SERVER found -- 16:15:23.955 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 16:15:23.955 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 16:15:23.955 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=un9gtp2mhu3hn0s1rlkg87q4gi9k7g61 -- 16:15:23.955 INFO [6384]: QUERY_STRING = /member/viewCardAddAction -- 16:15:23.955 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:15:23.988 INFO [6384]: COREGRADE is stopping... -- 16:15:23.988 DEBUG [6384]: Closing database connection -- 16:15:23.988 SQL [6384]: pgsql_close() -- 16:17:19.256 INFO [6382]: COREGRADE is starting... -- 16:17:19.256 INFO [6382]: Version from config: 1.0 -- 16:17:19.256 DEBUG [6382]: Connecting to database... -- 16:17:19.256 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:19.256 SQL [6382]: pgsql_db_connect() -- 16:17:19.260 DEBUG [6382]: Database connection successful -- 16:17:19.260 INFO [6382]: _SERVER found -- 16:17:19.260 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 16:17:19.260 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:19.260 INFO [6382]: QUERY_STRING = /robots.txt -- 16:17:19.260 INFO [6382]: HTTP_X_FORWARDED_FOR = 66.249.66.195 -- 16:17:19.273 INFO [6382]: COREGRADE is stopping... -- 16:17:19.273 DEBUG [6382]: Closing database connection -- 16:17:19.273 SQL [6382]: pgsql_close() -- 16:17:19.369 INFO [7159]: COREGRADE is starting... -- 16:17:19.369 INFO [7159]: Version from config: 1.0 -- 16:17:19.369 DEBUG [7159]: Connecting to database... -- 16:17:19.369 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:19.369 SQL [7159]: pgsql_db_connect() -- 16:17:19.373 DEBUG [7159]: Database connection successful -- 16:17:19.373 INFO [7159]: _SERVER found -- 16:17:19.373 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 16:17:19.373 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:19.373 INFO [7159]: QUERY_STRING = /welcome/viewLogin -- 16:17:19.373 INFO [7159]: HTTP_X_FORWARDED_FOR = 66.249.66.192 -- 16:17:19.405 INFO [7159]: COREGRADE is stopping... -- 16:17:19.405 DEBUG [7159]: Closing database connection -- 16:17:19.405 SQL [7159]: pgsql_close() -- 16:17:20.307 INFO [6382]: COREGRADE is starting... -- 16:17:20.307 INFO [6382]: Version from config: 1.0 -- 16:17:20.307 DEBUG [6382]: Connecting to database... -- 16:17:20.307 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:20.307 SQL [6382]: pgsql_db_connect() -- 16:17:20.311 DEBUG [6382]: Database connection successful -- 16:17:20.311 INFO [6382]: _SERVER found -- 16:17:20.311 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 16:17:20.311 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:20.311 INFO [6382]: HTTP_COOKIE = ci_session=ft2i4eeldruhjpr0pc1pdievsmvh6283 -- 16:17:20.311 INFO [6382]: QUERY_STRING = /auth/index -- 16:17:20.311 INFO [6382]: HTTP_X_FORWARDED_FOR = 66.249.66.195 -- 16:17:20.346 INFO [6382]: COREGRADE is stopping... -- 16:17:20.346 DEBUG [6382]: Closing database connection -- 16:17:20.346 SQL [6382]: pgsql_close() -- 16:17:28.520 INFO [7159]: COREGRADE is starting... -- 16:17:28.520 INFO [7159]: Version from config: 1.0 -- 16:17:28.520 DEBUG [7159]: Connecting to database... -- 16:17:28.520 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:28.520 SQL [7159]: pgsql_db_connect() -- 16:17:28.524 DEBUG [7159]: Database connection successful -- 16:17:28.524 INFO [7159]: _SERVER found -- 16:17:28.524 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 16:17:28.524 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:28.524 INFO [7159]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:17:28.524 INFO [7159]: HTTP_X_FORWARDED_FOR = 66.249.66.192 -- 16:17:28.535 INFO [7159]: COREGRADE is stopping... -- 16:17:28.535 DEBUG [7159]: Closing database connection -- 16:17:28.535 SQL [7159]: pgsql_close() -- 16:17:29.002 INFO [7159]: COREGRADE is starting... -- 16:17:29.003 INFO [7159]: Version from config: 1.0 -- 16:17:29.003 DEBUG [7159]: Connecting to database... -- 16:17:29.003 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:29.003 SQL [7159]: pgsql_db_connect() -- 16:17:29.007 DEBUG [7159]: Database connection successful -- 16:17:29.007 INFO [7159]: _SERVER found -- 16:17:29.007 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 16:17:29.007 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:29.007 INFO [7159]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:17:29.007 INFO [7159]: HTTP_X_FORWARDED_FOR = 66.249.66.192 -- 16:17:29.018 INFO [7159]: COREGRADE is stopping... -- 16:17:29.018 DEBUG [7159]: Closing database connection -- 16:17:29.018 SQL [7159]: pgsql_close() -- 16:20:36.038 INFO [6405]: COREGRADE is starting... -- 16:20:36.039 INFO [6405]: Version from config: 1.0 -- 16:20:36.039 DEBUG [6405]: Connecting to database... -- 16:20:36.039 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:20:36.039 SQL [6405]: pgsql_db_connect() -- 16:20:36.043 DEBUG [6405]: Database connection successful -- 16:20:36.043 INFO [6405]: _SERVER found -- 16:20:36.043 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 16:20:36.043 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 16:20:36.043 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=un9gtp2mhu3hn0s1rlkg87q4gi9k7g61 -- 16:20:36.043 INFO [6405]: QUERY_STRING = /member -- 16:20:36.043 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:20:36.082 INFO [6405]: COREGRADE is stopping... -- 16:20:36.082 DEBUG [6405]: Closing database connection -- 16:20:36.082 SQL [6405]: pgsql_close() -- 16:20:36.384 INFO [6405]: COREGRADE is starting... -- 16:20:36.385 INFO [6405]: Version from config: 1.0 -- 16:20:36.385 DEBUG [6405]: Connecting to database... -- 16:20:36.385 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:20:36.385 SQL [6405]: pgsql_db_connect() -- 16:20:36.389 DEBUG [6405]: Database connection successful -- 16:20:36.389 INFO [6405]: _SERVER found -- 16:20:36.389 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 16:20:36.389 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 16:20:36.389 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=6n7nrno40heuel9lkb7r8jlm7a94an8k -- 16:20:36.389 INFO [6405]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:20:36.389 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:20:36.400 INFO [6405]: COREGRADE is stopping... -- 16:20:36.400 DEBUG [6405]: Closing database connection -- 16:20:36.400 SQL [6405]: pgsql_close() -- 16:20:36.420 INFO [6405]: COREGRADE is starting... -- 16:20:36.420 INFO [6405]: Version from config: 1.0 -- 16:20:36.420 DEBUG [6405]: Connecting to database... -- 16:20:36.420 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:20:36.420 SQL [6405]: pgsql_db_connect() -- 16:20:36.424 DEBUG [6405]: Database connection successful -- 16:20:36.424 INFO [6405]: _SERVER found -- 16:20:36.424 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 16:20:36.424 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 16:20:36.424 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=6n7nrno40heuel9lkb7r8jlm7a94an8k -- 16:20:36.424 INFO [6405]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:20:36.424 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:20:36.435 INFO [6405]: COREGRADE is stopping... -- 16:20:36.435 DEBUG [6405]: Closing database connection -- 16:20:36.435 SQL [6405]: pgsql_close() -- 16:20:37.451 INFO [6405]: COREGRADE is starting... -- 16:20:37.451 INFO [6405]: Version from config: 1.0 -- 16:20:37.451 DEBUG [6405]: Connecting to database... -- 16:20:37.451 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:20:37.451 SQL [6405]: pgsql_db_connect() -- 16:20:37.455 DEBUG [6405]: Database connection successful -- 16:20:37.455 INFO [6405]: _SERVER found -- 16:20:37.455 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 16:20:37.455 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 16:20:37.455 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=6n7nrno40heuel9lkb7r8jlm7a94an8k -- 16:20:37.455 INFO [6405]: QUERY_STRING = /member/page -- 16:20:37.455 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:20:37.493 INFO [6405]: COREGRADE is stopping... -- 16:20:37.493 DEBUG [6405]: Closing database connection -- 16:20:37.493 SQL [6405]: pgsql_close() -- 16:20:37.705 INFO [6405]: COREGRADE is starting... -- 16:20:37.705 INFO [6405]: Version from config: 1.0 -- 16:20:37.705 DEBUG [6405]: Connecting to database... -- 16:20:37.705 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:20:37.705 SQL [6405]: pgsql_db_connect() -- 16:20:37.709 DEBUG [6405]: Database connection successful -- 16:20:37.709 INFO [6405]: _SERVER found -- 16:20:37.709 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 16:20:37.709 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 16:20:37.709 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=6n7nrno40heuel9lkb7r8jlm7a94an8k -- 16:20:37.709 INFO [6405]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:20:37.709 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:20:37.720 INFO [6405]: COREGRADE is stopping... -- 16:20:37.720 DEBUG [6405]: Closing database connection -- 16:20:37.720 SQL [6405]: pgsql_close() -- 16:20:37.879 INFO [6405]: COREGRADE is starting... -- 16:20:37.879 INFO [6405]: Version from config: 1.0 -- 16:20:37.879 DEBUG [6405]: Connecting to database... -- 16:20:37.879 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:20:37.879 SQL [6405]: pgsql_db_connect() -- 16:20:37.883 DEBUG [6405]: Database connection successful -- 16:20:37.883 INFO [6405]: _SERVER found -- 16:20:37.883 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 16:20:37.883 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 16:20:37.883 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=6n7nrno40heuel9lkb7r8jlm7a94an8k -- 16:20:37.883 INFO [6405]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:20:37.883 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:20:37.894 INFO [6405]: COREGRADE is stopping... -- 16:20:37.894 DEBUG [6405]: Closing database connection -- 16:20:37.894 SQL [6405]: pgsql_close() -- 16:21:44.281 INFO [6383]: COREGRADE is starting... -- 16:21:44.281 INFO [6383]: Version from config: 1.0 -- 16:21:44.281 DEBUG [6383]: Connecting to database... -- 16:21:44.281 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:21:44.281 SQL [6383]: pgsql_db_connect() -- 16:21:44.285 DEBUG [6383]: Database connection successful -- 16:21:44.285 INFO [6383]: _SERVER found -- 16:21:44.285 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 16:21:44.285 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 16:21:44.285 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=6n7nrno40heuel9lkb7r8jlm7a94an8k -- 16:21:44.285 INFO [6383]: QUERY_STRING = /member -- 16:21:44.285 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:21:44.323 INFO [6383]: COREGRADE is stopping... -- 16:21:44.323 DEBUG [6383]: Closing database connection -- 16:21:44.323 SQL [6383]: pgsql_close() -- 16:21:44.601 INFO [6383]: COREGRADE is starting... -- 16:21:44.601 INFO [6383]: Version from config: 1.0 -- 16:21:44.601 DEBUG [6383]: Connecting to database... -- 16:21:44.601 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:21:44.601 SQL [6383]: pgsql_db_connect() -- 16:21:44.605 DEBUG [6383]: Database connection successful -- 16:21:44.605 INFO [6383]: _SERVER found -- 16:21:44.605 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 16:21:44.605 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 16:21:44.605 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=6n7nrno40heuel9lkb7r8jlm7a94an8k -- 16:21:44.605 INFO [6383]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:21:44.605 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:21:44.616 INFO [6383]: COREGRADE is stopping... -- 16:21:44.616 DEBUG [6383]: Closing database connection -- 16:21:44.616 SQL [6383]: pgsql_close() -- 16:21:44.633 INFO [6383]: COREGRADE is starting... -- 16:21:44.634 INFO [6383]: Version from config: 1.0 -- 16:21:44.634 DEBUG [6383]: Connecting to database... -- 16:21:44.634 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:21:44.634 SQL [6383]: pgsql_db_connect() -- 16:21:44.638 DEBUG [6383]: Database connection successful -- 16:21:44.638 INFO [6383]: _SERVER found -- 16:21:44.638 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 16:21:44.638 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 16:21:44.638 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=6n7nrno40heuel9lkb7r8jlm7a94an8k -- 16:21:44.638 INFO [6383]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:21:44.638 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:21:44.649 INFO [6383]: COREGRADE is stopping... -- 16:21:44.649 DEBUG [6383]: Closing database connection -- 16:21:44.649 SQL [6383]: pgsql_close() -- 16:21:45.932 INFO [6383]: COREGRADE is starting... -- 16:21:45.932 INFO [6383]: Version from config: 1.0 -- 16:21:45.932 DEBUG [6383]: Connecting to database... -- 16:21:45.932 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:21:45.932 SQL [6383]: pgsql_db_connect() -- 16:21:45.936 DEBUG [6383]: Database connection successful -- 16:21:45.936 INFO [6383]: _SERVER found -- 16:21:45.936 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 16:21:45.936 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 16:21:45.936 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=6n7nrno40heuel9lkb7r8jlm7a94an8k -- 16:21:45.936 INFO [6383]: QUERY_STRING = /member/page -- 16:21:45.936 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:21:45.973 INFO [6383]: COREGRADE is stopping... -- 16:21:45.973 DEBUG [6383]: Closing database connection -- 16:21:45.973 SQL [6383]: pgsql_close() -- 16:21:46.164 INFO [6383]: COREGRADE is starting... -- 16:21:46.164 INFO [6383]: Version from config: 1.0 -- 16:21:46.164 DEBUG [6383]: Connecting to database... -- 16:21:46.164 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:21:46.164 SQL [6383]: pgsql_db_connect() -- 16:21:46.168 DEBUG [6383]: Database connection successful -- 16:21:46.168 INFO [6383]: _SERVER found -- 16:21:46.168 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 16:21:46.168 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 16:21:46.168 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=6n7nrno40heuel9lkb7r8jlm7a94an8k -- 16:21:46.168 INFO [6383]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:21:46.168 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:21:46.179 INFO [6383]: COREGRADE is stopping... -- 16:21:46.179 DEBUG [6383]: Closing database connection -- 16:21:46.179 SQL [6383]: pgsql_close() -- 16:21:46.334 INFO [6383]: COREGRADE is starting... -- 16:21:46.334 INFO [6383]: Version from config: 1.0 -- 16:21:46.334 DEBUG [6383]: Connecting to database... -- 16:21:46.334 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:21:46.334 SQL [6383]: pgsql_db_connect() -- 16:21:46.338 DEBUG [6383]: Database connection successful -- 16:21:46.338 INFO [6383]: _SERVER found -- 16:21:46.338 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 16:21:46.338 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 16:21:46.338 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=6n7nrno40heuel9lkb7r8jlm7a94an8k -- 16:21:46.338 INFO [6383]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:21:46.338 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:21:46.349 INFO [6383]: COREGRADE is stopping... -- 16:21:46.349 DEBUG [6383]: Closing database connection -- 16:21:46.349 SQL [6383]: pgsql_close() -- 16:23:28.239 INFO [7160]: COREGRADE is starting... -- 16:23:28.239 INFO [7160]: Version from config: 1.0 -- 16:23:28.239 DEBUG [7160]: Connecting to database... -- 16:23:28.239 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:28.239 SQL [7160]: pgsql_db_connect() -- 16:23:28.243 DEBUG [7160]: Database connection successful -- 16:23:28.243 INFO [7160]: _SERVER found -- 16:23:28.243 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 16:23:28.243 INFO [7160]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:28.243 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=6n7nrno40heuel9lkb7r8jlm7a94an8k -- 16:23:28.243 INFO [7160]: QUERY_STRING = /member/page -- 16:23:28.243 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:28.285 INFO [7160]: COREGRADE is stopping... -- 16:23:28.285 DEBUG [7160]: Closing database connection -- 16:23:28.285 SQL [7160]: pgsql_close() -- 16:23:28.433 INFO [7160]: COREGRADE is starting... -- 16:23:28.433 INFO [7160]: Version from config: 1.0 -- 16:23:28.433 DEBUG [7160]: Connecting to database... -- 16:23:28.433 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:28.433 SQL [7160]: pgsql_db_connect() -- 16:23:28.437 DEBUG [7160]: Database connection successful -- 16:23:28.437 INFO [7160]: _SERVER found -- 16:23:28.437 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 16:23:28.437 INFO [7160]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:28.437 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=6n7nrno40heuel9lkb7r8jlm7a94an8k -- 16:23:28.437 INFO [7160]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:23:28.437 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:28.448 INFO [7160]: COREGRADE is stopping... -- 16:23:28.449 DEBUG [7160]: Closing database connection -- 16:23:28.449 SQL [7160]: pgsql_close() -- 16:23:28.641 INFO [7160]: COREGRADE is starting... -- 16:23:28.641 INFO [7160]: Version from config: 1.0 -- 16:23:28.641 DEBUG [7160]: Connecting to database... -- 16:23:28.641 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:28.641 SQL [7160]: pgsql_db_connect() -- 16:23:28.645 DEBUG [7160]: Database connection successful -- 16:23:28.645 INFO [7160]: _SERVER found -- 16:23:28.645 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 16:23:28.645 INFO [7160]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:28.645 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=6n7nrno40heuel9lkb7r8jlm7a94an8k -- 16:23:28.645 INFO [7160]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:23:28.645 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:28.657 INFO [7160]: COREGRADE is stopping... -- 16:23:28.657 DEBUG [7160]: Closing database connection -- 16:23:28.657 SQL [7160]: pgsql_close() -- 16:24:38.317 INFO [7017]: COREGRADE is starting... -- 16:24:38.317 INFO [7017]: Version from config: 1.0 -- 16:24:38.317 DEBUG [7017]: Connecting to database... -- 16:24:38.317 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:24:38.317 SQL [7017]: pgsql_db_connect() -- 16:24:38.321 DEBUG [7017]: Database connection successful -- 16:24:38.321 INFO [7017]: _SERVER found -- 16:24:38.321 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 16:24:38.321 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 16:24:38.321 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=6n7nrno40heuel9lkb7r8jlm7a94an8k -- 16:24:38.321 INFO [7017]: QUERY_STRING = /member/page -- 16:24:38.321 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:24:38.362 INFO [7017]: COREGRADE is stopping... -- 16:24:38.362 DEBUG [7017]: Closing database connection -- 16:24:38.362 SQL [7017]: pgsql_close() -- 16:24:38.514 INFO [7017]: COREGRADE is starting... -- 16:24:38.515 INFO [7017]: Version from config: 1.0 -- 16:24:38.515 DEBUG [7017]: Connecting to database... -- 16:24:38.515 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:24:38.515 SQL [7017]: pgsql_db_connect() -- 16:24:38.519 DEBUG [7017]: Database connection successful -- 16:24:38.519 INFO [7017]: _SERVER found -- 16:24:38.519 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 16:24:38.519 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 16:24:38.519 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=6n7nrno40heuel9lkb7r8jlm7a94an8k -- 16:24:38.519 INFO [7017]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:24:38.519 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:24:38.530 INFO [7017]: COREGRADE is stopping... -- 16:24:38.530 DEBUG [7017]: Closing database connection -- 16:24:38.530 SQL [7017]: pgsql_close() -- 16:24:38.732 INFO [7017]: COREGRADE is starting... -- 16:24:38.732 INFO [7017]: Version from config: 1.0 -- 16:24:38.732 DEBUG [7017]: Connecting to database... -- 16:24:38.732 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:24:38.732 SQL [7017]: pgsql_db_connect() -- 16:24:38.736 DEBUG [7017]: Database connection successful -- 16:24:38.736 INFO [7017]: _SERVER found -- 16:24:38.736 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 16:24:38.736 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 16:24:38.736 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=6n7nrno40heuel9lkb7r8jlm7a94an8k -- 16:24:38.736 INFO [7017]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:24:38.736 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:24:38.747 INFO [7017]: COREGRADE is stopping... -- 16:24:38.747 DEBUG [7017]: Closing database connection -- 16:24:38.747 SQL [7017]: pgsql_close() -- 16:25:15.305 INFO [6385]: COREGRADE is starting... -- 16:25:15.305 INFO [6385]: Version from config: 1.0 -- 16:25:15.305 DEBUG [6385]: Connecting to database... -- 16:25:15.305 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:15.305 SQL [6385]: pgsql_db_connect() -- 16:25:15.309 DEBUG [6385]: Database connection successful -- 16:25:15.309 INFO [6385]: _SERVER found -- 16:25:15.309 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 16:25:15.309 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 16:25:15.309 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=6n7nrno40heuel9lkb7r8jlm7a94an8k -- 16:25:15.309 INFO [6385]: QUERY_STRING = /member/page -- 16:25:15.309 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:15.348 INFO [6385]: COREGRADE is stopping... -- 16:25:15.348 DEBUG [6385]: Closing database connection -- 16:25:15.348 SQL [6385]: pgsql_close() -- 16:25:15.529 INFO [6385]: COREGRADE is starting... -- 16:25:15.529 INFO [6385]: Version from config: 1.0 -- 16:25:15.529 DEBUG [6385]: Connecting to database... -- 16:25:15.529 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:15.529 SQL [6385]: pgsql_db_connect() -- 16:25:15.533 DEBUG [6385]: Database connection successful -- 16:25:15.533 INFO [6385]: _SERVER found -- 16:25:15.533 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 16:25:15.533 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 16:25:15.533 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=6n7nrno40heuel9lkb7r8jlm7a94an8k -- 16:25:15.533 INFO [6385]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:25:15.533 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:15.544 INFO [6385]: COREGRADE is stopping... -- 16:25:15.544 DEBUG [6385]: Closing database connection -- 16:25:15.544 SQL [6385]: pgsql_close() -- 16:25:15.777 INFO [6385]: COREGRADE is starting... -- 16:25:15.777 INFO [6385]: Version from config: 1.0 -- 16:25:15.777 DEBUG [6385]: Connecting to database... -- 16:25:15.777 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:15.777 SQL [6385]: pgsql_db_connect() -- 16:25:15.781 DEBUG [6385]: Database connection successful -- 16:25:15.781 INFO [6385]: _SERVER found -- 16:25:15.781 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 16:25:15.781 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 16:25:15.781 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=6n7nrno40heuel9lkb7r8jlm7a94an8k -- 16:25:15.781 INFO [6385]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:25:15.781 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:15.792 INFO [6385]: COREGRADE is stopping... -- 16:25:15.792 DEBUG [6385]: Closing database connection -- 16:25:15.792 SQL [6385]: pgsql_close() -- 16:25:57.858 INFO [6384]: COREGRADE is starting... -- 16:25:57.859 INFO [6384]: Version from config: 1.0 -- 16:25:57.859 DEBUG [6384]: Connecting to database... -- 16:25:57.859 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:57.859 SQL [6384]: pgsql_db_connect() -- 16:25:57.863 DEBUG [6384]: Database connection successful -- 16:25:57.863 INFO [6384]: _SERVER found -- 16:25:57.863 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 16:25:57.863 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 16:25:57.863 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=6n7nrno40heuel9lkb7r8jlm7a94an8k -- 16:25:57.863 INFO [6384]: QUERY_STRING = /member/page -- 16:25:57.863 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:57.901 INFO [6384]: COREGRADE is stopping... -- 16:25:57.901 DEBUG [6384]: Closing database connection -- 16:25:57.901 SQL [6384]: pgsql_close() -- 16:25:58.078 INFO [6384]: COREGRADE is starting... -- 16:25:58.079 INFO [6384]: Version from config: 1.0 -- 16:25:58.079 DEBUG [6384]: Connecting to database... -- 16:25:58.079 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:58.079 SQL [6384]: pgsql_db_connect() -- 16:25:58.083 DEBUG [6384]: Database connection successful -- 16:25:58.083 INFO [6384]: _SERVER found -- 16:25:58.083 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 16:25:58.083 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 16:25:58.083 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=u1bn4vima4d1653v2nlv5atn5hd932eo -- 16:25:58.083 INFO [6384]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:25:58.083 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:58.094 INFO [6384]: COREGRADE is stopping... -- 16:25:58.094 DEBUG [6384]: Closing database connection -- 16:25:58.094 SQL [6384]: pgsql_close() -- 16:25:58.310 INFO [6384]: COREGRADE is starting... -- 16:25:58.310 INFO [6384]: Version from config: 1.0 -- 16:25:58.310 DEBUG [6384]: Connecting to database... -- 16:25:58.310 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:58.310 SQL [6384]: pgsql_db_connect() -- 16:25:58.314 DEBUG [6384]: Database connection successful -- 16:25:58.314 INFO [6384]: _SERVER found -- 16:25:58.314 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 16:25:58.314 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 16:25:58.314 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=u1bn4vima4d1653v2nlv5atn5hd932eo -- 16:25:58.314 INFO [6384]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:25:58.314 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:58.325 INFO [6384]: COREGRADE is stopping... -- 16:25:58.325 DEBUG [6384]: Closing database connection -- 16:25:58.325 SQL [6384]: pgsql_close() -- 16:26:51.616 INFO [6382]: COREGRADE is starting... -- 16:26:51.616 INFO [6382]: Version from config: 1.0 -- 16:26:51.616 DEBUG [6382]: Connecting to database... -- 16:26:51.616 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:51.616 SQL [6382]: pgsql_db_connect() -- 16:26:51.620 DEBUG [6382]: Database connection successful -- 16:26:51.620 INFO [6382]: _SERVER found -- 16:26:51.620 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 16:26:51.620 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 16:26:51.620 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=u1bn4vima4d1653v2nlv5atn5hd932eo -- 16:26:51.620 INFO [6382]: QUERY_STRING = /member/page -- 16:26:51.620 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:51.662 INFO [6382]: COREGRADE is stopping... -- 16:26:51.662 DEBUG [6382]: Closing database connection -- 16:26:51.662 SQL [6382]: pgsql_close() -- 16:26:51.840 INFO [6382]: COREGRADE is starting... -- 16:26:51.841 INFO [6382]: Version from config: 1.0 -- 16:26:51.841 DEBUG [6382]: Connecting to database... -- 16:26:51.841 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:51.841 SQL [6382]: pgsql_db_connect() -- 16:26:51.845 DEBUG [6382]: Database connection successful -- 16:26:51.845 INFO [6382]: _SERVER found -- 16:26:51.845 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 16:26:51.845 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 16:26:51.845 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=u1bn4vima4d1653v2nlv5atn5hd932eo -- 16:26:51.845 INFO [6382]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:26:51.845 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:51.856 INFO [6382]: COREGRADE is stopping... -- 16:26:51.856 DEBUG [6382]: Closing database connection -- 16:26:51.856 SQL [6382]: pgsql_close() -- 16:26:52.065 INFO [6382]: COREGRADE is starting... -- 16:26:52.065 INFO [6382]: Version from config: 1.0 -- 16:26:52.065 DEBUG [6382]: Connecting to database... -- 16:26:52.065 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:52.065 SQL [6382]: pgsql_db_connect() -- 16:26:52.069 DEBUG [6382]: Database connection successful -- 16:26:52.069 INFO [6382]: _SERVER found -- 16:26:52.069 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 16:26:52.069 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 16:26:52.069 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=u1bn4vima4d1653v2nlv5atn5hd932eo -- 16:26:52.069 INFO [6382]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:26:52.069 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:52.080 INFO [6382]: COREGRADE is stopping... -- 16:26:52.080 DEBUG [6382]: Closing database connection -- 16:26:52.080 SQL [6382]: pgsql_close() -- 16:27:35.994 INFO [7159]: COREGRADE is starting... -- 16:27:35.994 INFO [7159]: Version from config: 1.0 -- 16:27:35.994 DEBUG [7159]: Connecting to database... -- 16:27:35.994 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:27:35.994 SQL [7159]: pgsql_db_connect() -- 16:27:35.999 DEBUG [7159]: Database connection successful -- 16:27:35.999 INFO [7159]: _SERVER found -- 16:27:35.999 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 16:27:35.999 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 16:27:35.999 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=u1bn4vima4d1653v2nlv5atn5hd932eo -- 16:27:35.999 INFO [7159]: QUERY_STRING = /member/page -- 16:27:35.999 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:27:36.037 INFO [7159]: COREGRADE is stopping... -- 16:27:36.037 DEBUG [7159]: Closing database connection -- 16:27:36.037 SQL [7159]: pgsql_close() -- 16:27:36.230 INFO [7159]: COREGRADE is starting... -- 16:27:36.230 INFO [7159]: Version from config: 1.0 -- 16:27:36.230 DEBUG [7159]: Connecting to database... -- 16:27:36.230 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:27:36.230 SQL [7159]: pgsql_db_connect() -- 16:27:36.234 DEBUG [7159]: Database connection successful -- 16:27:36.234 INFO [7159]: _SERVER found -- 16:27:36.234 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 16:27:36.234 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 16:27:36.234 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=u1bn4vima4d1653v2nlv5atn5hd932eo -- 16:27:36.234 INFO [7159]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:27:36.234 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:27:36.245 INFO [7159]: COREGRADE is stopping... -- 16:27:36.245 DEBUG [7159]: Closing database connection -- 16:27:36.245 SQL [7159]: pgsql_close() -- 16:27:36.457 INFO [7159]: COREGRADE is starting... -- 16:27:36.457 INFO [7159]: Version from config: 1.0 -- 16:27:36.457 DEBUG [7159]: Connecting to database... -- 16:27:36.457 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:27:36.457 SQL [7159]: pgsql_db_connect() -- 16:27:36.461 DEBUG [7159]: Database connection successful -- 16:27:36.461 INFO [7159]: _SERVER found -- 16:27:36.461 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 16:27:36.461 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 16:27:36.461 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=u1bn4vima4d1653v2nlv5atn5hd932eo -- 16:27:36.461 INFO [7159]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:27:36.461 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:27:36.472 INFO [7159]: COREGRADE is stopping... -- 16:27:36.472 DEBUG [7159]: Closing database connection -- 16:27:36.472 SQL [7159]: pgsql_close() -- 16:28:27.361 INFO [6383]: COREGRADE is starting... -- 16:28:27.361 INFO [6383]: Version from config: 1.0 -- 16:28:27.361 DEBUG [6383]: Connecting to database... -- 16:28:27.361 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:28:27.361 SQL [6383]: pgsql_db_connect() -- 16:28:27.365 DEBUG [6383]: Database connection successful -- 16:28:27.365 INFO [6383]: _SERVER found -- 16:28:27.365 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 16:28:27.365 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 16:28:27.365 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=u1bn4vima4d1653v2nlv5atn5hd932eo -- 16:28:27.365 INFO [6383]: QUERY_STRING = /member/page -- 16:28:27.365 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:28:27.405 INFO [6383]: COREGRADE is stopping... -- 16:28:27.405 DEBUG [6383]: Closing database connection -- 16:28:27.405 SQL [6383]: pgsql_close() -- 16:28:27.595 INFO [6383]: COREGRADE is starting... -- 16:28:27.595 INFO [6383]: Version from config: 1.0 -- 16:28:27.595 DEBUG [6383]: Connecting to database... -- 16:28:27.595 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:28:27.595 SQL [6383]: pgsql_db_connect() -- 16:28:27.599 DEBUG [6383]: Database connection successful -- 16:28:27.599 INFO [6383]: _SERVER found -- 16:28:27.599 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 16:28:27.599 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 16:28:27.599 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=u1bn4vima4d1653v2nlv5atn5hd932eo -- 16:28:27.599 INFO [6383]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:28:27.599 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:28:27.611 INFO [6383]: COREGRADE is stopping... -- 16:28:27.611 DEBUG [6383]: Closing database connection -- 16:28:27.611 SQL [6383]: pgsql_close() -- 16:28:27.840 INFO [6383]: COREGRADE is starting... -- 16:28:27.840 INFO [6383]: Version from config: 1.0 -- 16:28:27.840 DEBUG [6383]: Connecting to database... -- 16:28:27.840 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:28:27.840 SQL [6383]: pgsql_db_connect() -- 16:28:27.844 DEBUG [6383]: Database connection successful -- 16:28:27.844 INFO [6383]: _SERVER found -- 16:28:27.844 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 16:28:27.844 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 16:28:27.844 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=u1bn4vima4d1653v2nlv5atn5hd932eo -- 16:28:27.844 INFO [6383]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:28:27.844 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:28:27.855 INFO [6383]: COREGRADE is stopping... -- 16:28:27.855 DEBUG [6383]: Closing database connection -- 16:28:27.855 SQL [6383]: pgsql_close() -- 16:28:45.878 INFO [6409]: COREGRADE is starting... -- 16:28:45.879 INFO [6409]: Version from config: 1.0 -- 16:28:45.879 DEBUG [6409]: Connecting to database... -- 16:28:45.879 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:28:45.879 SQL [6409]: pgsql_db_connect() -- 16:28:45.883 DEBUG [6409]: Database connection successful -- 16:28:45.883 INFO [6409]: _SERVER found -- 16:28:45.883 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 16:28:45.883 INFO [6409]: SERVER_NAME = oameye.works.coregrade.com -- 16:28:45.883 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=u1bn4vima4d1653v2nlv5atn5hd932eo -- 16:28:45.883 INFO [6409]: QUERY_STRING = /member/viewCardAddAction -- 16:28:45.883 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:28:45.914 INFO [6409]: COREGRADE is stopping... -- 16:28:45.914 DEBUG [6409]: Closing database connection -- 16:28:45.914 SQL [6409]: pgsql_close() -- 16:34:25.326 INFO [7017]: COREGRADE is starting... -- 16:34:25.326 INFO [7017]: Version from config: 1.0 -- 16:34:25.326 DEBUG [7017]: Connecting to database... -- 16:34:25.326 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:34:25.326 SQL [7017]: pgsql_db_connect() -- 16:34:25.330 DEBUG [7017]: Database connection successful -- 16:34:25.330 INFO [7017]: _SERVER found -- 16:34:25.330 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 16:34:25.330 INFO [7017]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:34:25.330 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=l061p7o73kec7ppg3926nip87b4veiu7 -- 16:34:25.330 INFO [7017]: QUERY_STRING = /auth -- 16:34:25.330 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:34:25.400 INFO [7017]: COREGRADE is starting... -- 16:34:25.400 INFO [7017]: Version from config: 1.0 -- 16:34:25.400 DEBUG [7017]: Connecting to database... -- 16:34:25.401 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:34:25.401 SQL [7017]: pgsql_db_connect() -- 16:34:25.404 DEBUG [7017]: Database connection successful -- 16:34:25.404 INFO [7017]: _SERVER found -- 16:34:25.404 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 16:34:25.404 INFO [7017]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:34:25.404 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3r12bgpuirq91q5nsepq0ouht5255e49 -- 16:34:25.404 INFO [7017]: QUERY_STRING = /member/index -- 16:34:25.404 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:34:25.444 INFO [7017]: COREGRADE is stopping... -- 16:34:25.444 DEBUG [7017]: Closing database connection -- 16:34:25.444 SQL [7017]: pgsql_close() -- 16:34:25.986 INFO [6384]: COREGRADE is starting... -- 16:34:25.986 INFO [6384]: Version from config: 1.0 -- 16:34:25.986 DEBUG [6384]: Connecting to database... -- 16:34:25.986 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:34:25.986 SQL [6384]: pgsql_db_connect() -- 16:34:25.990 DEBUG [6384]: Database connection successful -- 16:34:25.990 INFO [6384]: _SERVER found -- 16:34:25.990 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 16:34:25.990 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:34:25.990 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3r12bgpuirq91q5nsepq0ouht5255e49 -- 16:34:25.990 INFO [6384]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:34:25.990 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:34:26.001 INFO [6384]: COREGRADE is stopping... -- 16:34:26.001 DEBUG [6384]: Closing database connection -- 16:34:26.002 SQL [6384]: pgsql_close() -- 16:34:26.034 INFO [6384]: COREGRADE is starting... -- 16:34:26.034 INFO [6384]: Version from config: 1.0 -- 16:34:26.034 DEBUG [6384]: Connecting to database... -- 16:34:26.034 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:34:26.034 SQL [6384]: pgsql_db_connect() -- 16:34:26.038 DEBUG [6384]: Database connection successful -- 16:34:26.038 INFO [6384]: _SERVER found -- 16:34:26.038 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 16:34:26.038 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:34:26.038 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3r12bgpuirq91q5nsepq0ouht5255e49 -- 16:34:26.038 INFO [6384]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:34:26.038 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:34:26.049 INFO [6384]: COREGRADE is stopping... -- 16:34:26.049 DEBUG [6384]: Closing database connection -- 16:34:26.049 SQL [6384]: pgsql_close() -- 16:34:30.058 INFO [6384]: COREGRADE is starting... -- 16:34:30.058 INFO [6384]: Version from config: 1.0 -- 16:34:30.058 DEBUG [6384]: Connecting to database... -- 16:34:30.058 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:34:30.058 SQL [6384]: pgsql_db_connect() -- 16:34:30.062 DEBUG [6384]: Database connection successful -- 16:34:30.062 INFO [6384]: _SERVER found -- 16:34:30.062 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 16:34:30.062 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:34:30.062 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3r12bgpuirq91q5nsepq0ouht5255e49 -- 16:34:30.062 INFO [6384]: QUERY_STRING = /member/page -- 16:34:30.062 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:34:30.103 INFO [6384]: COREGRADE is stopping... -- 16:34:30.103 DEBUG [6384]: Closing database connection -- 16:34:30.103 SQL [6384]: pgsql_close() -- 16:34:30.269 INFO [6384]: COREGRADE is starting... -- 16:34:30.269 INFO [6384]: Version from config: 1.0 -- 16:34:30.269 DEBUG [6384]: Connecting to database... -- 16:34:30.269 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:34:30.269 SQL [6384]: pgsql_db_connect() -- 16:34:30.273 DEBUG [6384]: Database connection successful -- 16:34:30.273 INFO [6384]: _SERVER found -- 16:34:30.273 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 16:34:30.273 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:34:30.273 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3r12bgpuirq91q5nsepq0ouht5255e49 -- 16:34:30.273 INFO [6384]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:34:30.273 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:34:30.284 INFO [6384]: COREGRADE is stopping... -- 16:34:30.284 DEBUG [6384]: Closing database connection -- 16:34:30.284 SQL [6384]: pgsql_close() -- 16:34:30.357 INFO [6384]: COREGRADE is starting... -- 16:34:30.357 INFO [6384]: Version from config: 1.0 -- 16:34:30.357 DEBUG [6384]: Connecting to database... -- 16:34:30.357 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:34:30.357 SQL [6384]: pgsql_db_connect() -- 16:34:30.361 DEBUG [6384]: Database connection successful -- 16:34:30.361 INFO [6384]: _SERVER found -- 16:34:30.361 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 16:34:30.361 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:34:30.361 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3r12bgpuirq91q5nsepq0ouht5255e49 -- 16:34:30.361 INFO [6384]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:34:30.361 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:34:30.372 INFO [6384]: COREGRADE is stopping... -- 16:34:30.372 DEBUG [6384]: Closing database connection -- 16:34:30.372 SQL [6384]: pgsql_close() -- 16:34:33.174 INFO [6384]: COREGRADE is starting... -- 16:34:33.174 INFO [6384]: Version from config: 1.0 -- 16:34:33.174 DEBUG [6384]: Connecting to database... -- 16:34:33.174 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:34:33.174 SQL [6384]: pgsql_db_connect() -- 16:34:33.179 DEBUG [6384]: Database connection successful -- 16:34:33.179 INFO [6384]: _SERVER found -- 16:34:33.179 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 16:34:33.179 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:34:33.179 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3r12bgpuirq91q5nsepq0ouht5255e49 -- 16:34:33.179 INFO [6384]: QUERY_STRING = /member/page -- 16:34:33.179 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:34:33.219 INFO [6384]: COREGRADE is stopping... -- 16:34:33.219 DEBUG [6384]: Closing database connection -- 16:34:33.219 SQL [6384]: pgsql_close() -- 16:34:33.387 INFO [6384]: COREGRADE is starting... -- 16:34:33.387 INFO [6384]: Version from config: 1.0 -- 16:34:33.387 DEBUG [6384]: Connecting to database... -- 16:34:33.387 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:34:33.387 SQL [6384]: pgsql_db_connect() -- 16:34:33.391 DEBUG [6384]: Database connection successful -- 16:34:33.391 INFO [6384]: _SERVER found -- 16:34:33.391 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 16:34:33.391 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:34:33.391 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3r12bgpuirq91q5nsepq0ouht5255e49 -- 16:34:33.391 INFO [6384]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:34:33.391 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:34:33.402 INFO [6384]: COREGRADE is stopping... -- 16:34:33.402 DEBUG [6384]: Closing database connection -- 16:34:33.402 SQL [6384]: pgsql_close() -- 16:34:33.468 INFO [6384]: COREGRADE is starting... -- 16:34:33.469 INFO [6384]: Version from config: 1.0 -- 16:34:33.469 DEBUG [6384]: Connecting to database... -- 16:34:33.469 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:34:33.469 SQL [6384]: pgsql_db_connect() -- 16:34:33.472 DEBUG [6384]: Database connection successful -- 16:34:33.473 INFO [6384]: _SERVER found -- 16:34:33.473 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 16:34:33.473 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:34:33.473 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3r12bgpuirq91q5nsepq0ouht5255e49 -- 16:34:33.473 INFO [6384]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:34:33.473 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:34:33.484 INFO [6384]: COREGRADE is stopping... -- 16:34:33.484 DEBUG [6384]: Closing database connection -- 16:34:33.484 SQL [6384]: pgsql_close() -- 16:34:37.775 INFO [6384]: COREGRADE is starting... -- 16:34:37.775 INFO [6384]: Version from config: 1.0 -- 16:34:37.775 DEBUG [6384]: Connecting to database... -- 16:34:37.775 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:34:37.775 SQL [6384]: pgsql_db_connect() -- 16:34:37.779 DEBUG [6384]: Database connection successful -- 16:34:37.779 INFO [6384]: _SERVER found -- 16:34:37.779 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 16:34:37.779 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:34:37.779 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3r12bgpuirq91q5nsepq0ouht5255e49 -- 16:34:37.779 INFO [6384]: QUERY_STRING = /member -- 16:34:37.779 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:34:37.818 INFO [6384]: COREGRADE is stopping... -- 16:34:37.818 DEBUG [6384]: Closing database connection -- 16:34:37.818 SQL [6384]: pgsql_close() -- 16:34:38.014 INFO [6384]: COREGRADE is starting... -- 16:34:38.014 INFO [6384]: Version from config: 1.0 -- 16:34:38.014 DEBUG [6384]: Connecting to database... -- 16:34:38.014 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:34:38.014 SQL [6384]: pgsql_db_connect() -- 16:34:38.018 DEBUG [6384]: Database connection successful -- 16:34:38.018 INFO [6384]: _SERVER found -- 16:34:38.018 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 16:34:38.018 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:34:38.018 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3r12bgpuirq91q5nsepq0ouht5255e49 -- 16:34:38.018 INFO [6384]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:34:38.018 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:34:38.029 INFO [6384]: COREGRADE is stopping... -- 16:34:38.029 DEBUG [6384]: Closing database connection -- 16:34:38.029 SQL [6384]: pgsql_close() -- 16:34:38.033 INFO [6382]: COREGRADE is starting... -- 16:34:38.034 INFO [6382]: Version from config: 1.0 -- 16:34:38.034 DEBUG [6382]: Connecting to database... -- 16:34:38.034 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:34:38.034 SQL [6382]: pgsql_db_connect() -- 16:34:38.037 DEBUG [6382]: Database connection successful -- 16:34:38.037 INFO [6382]: _SERVER found -- 16:34:38.038 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 16:34:38.038 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:34:38.038 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3r12bgpuirq91q5nsepq0ouht5255e49 -- 16:34:38.038 INFO [6382]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:34:38.038 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:34:38.049 INFO [6382]: COREGRADE is stopping... -- 16:34:38.049 DEBUG [6382]: Closing database connection -- 16:34:38.049 SQL [6382]: pgsql_close() -- 16:34:39.049 INFO [6382]: COREGRADE is starting... -- 16:34:39.049 INFO [6382]: Version from config: 1.0 -- 16:34:39.049 DEBUG [6382]: Connecting to database... -- 16:34:39.049 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:34:39.049 SQL [6382]: pgsql_db_connect() -- 16:34:39.053 DEBUG [6382]: Database connection successful -- 16:34:39.053 INFO [6382]: _SERVER found -- 16:34:39.053 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 16:34:39.053 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:34:39.053 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3r12bgpuirq91q5nsepq0ouht5255e49 -- 16:34:39.053 INFO [6382]: QUERY_STRING = /member/page -- 16:34:39.053 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:34:39.097 INFO [6382]: COREGRADE is stopping... -- 16:34:39.097 DEBUG [6382]: Closing database connection -- 16:34:39.097 SQL [6382]: pgsql_close() -- 16:34:39.312 INFO [6382]: COREGRADE is starting... -- 16:34:39.312 INFO [6382]: Version from config: 1.0 -- 16:34:39.313 DEBUG [6382]: Connecting to database... -- 16:34:39.313 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:34:39.313 SQL [6382]: pgsql_db_connect() -- 16:34:39.316 DEBUG [6382]: Database connection successful -- 16:34:39.316 INFO [6382]: _SERVER found -- 16:34:39.316 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 16:34:39.316 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:34:39.316 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3r12bgpuirq91q5nsepq0ouht5255e49 -- 16:34:39.316 INFO [6382]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:34:39.316 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:34:39.328 INFO [6382]: COREGRADE is stopping... -- 16:34:39.328 DEBUG [6382]: Closing database connection -- 16:34:39.328 SQL [6382]: pgsql_close() -- 16:36:17.678 INFO [7159]: COREGRADE is starting... -- 16:36:17.678 INFO [7159]: Version from config: 1.0 -- 16:36:17.678 DEBUG [7159]: Connecting to database... -- 16:36:17.679 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:36:17.679 SQL [7159]: pgsql_db_connect() -- 16:36:17.683 DEBUG [7159]: Database connection successful -- 16:36:17.683 INFO [7159]: _SERVER found -- 16:36:17.683 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 16:36:17.683 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 16:36:17.683 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=u1bn4vima4d1653v2nlv5atn5hd932eo -- 16:36:17.683 INFO [7159]: QUERY_STRING = /member/page -- 16:36:17.683 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:36:17.723 INFO [7159]: COREGRADE is stopping... -- 16:36:17.723 DEBUG [7159]: Closing database connection -- 16:36:17.723 SQL [7159]: pgsql_close() -- 16:36:17.921 INFO [7159]: COREGRADE is starting... -- 16:36:17.921 INFO [7159]: Version from config: 1.0 -- 16:36:17.921 DEBUG [7159]: Connecting to database... -- 16:36:17.921 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:36:17.921 SQL [7159]: pgsql_db_connect() -- 16:36:17.925 DEBUG [7159]: Database connection successful -- 16:36:17.925 INFO [7159]: _SERVER found -- 16:36:17.925 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 16:36:17.925 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 16:36:17.925 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vlhn0sqavsc2uac8dbfjnhbta2kpfsfg -- 16:36:17.925 INFO [7159]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:36:17.925 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:36:17.936 INFO [7159]: COREGRADE is stopping... -- 16:36:17.936 DEBUG [7159]: Closing database connection -- 16:36:17.936 SQL [7159]: pgsql_close() -- 16:36:18.366 INFO [7159]: COREGRADE is starting... -- 16:36:18.366 INFO [7159]: Version from config: 1.0 -- 16:36:18.366 DEBUG [7159]: Connecting to database... -- 16:36:18.366 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:36:18.366 SQL [7159]: pgsql_db_connect() -- 16:36:18.370 DEBUG [7159]: Database connection successful -- 16:36:18.370 INFO [7159]: _SERVER found -- 16:36:18.370 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 16:36:18.370 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 16:36:18.370 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vlhn0sqavsc2uac8dbfjnhbta2kpfsfg -- 16:36:18.370 INFO [7159]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:36:18.370 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:36:18.381 INFO [7159]: COREGRADE is stopping... -- 16:36:18.381 DEBUG [7159]: Closing database connection -- 16:36:18.381 SQL [7159]: pgsql_close() -- 16:37:13.218 INFO [7160]: COREGRADE is starting... -- 16:37:13.219 INFO [7160]: Version from config: 1.0 -- 16:37:13.219 DEBUG [7160]: Connecting to database... -- 16:37:13.219 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:37:13.219 SQL [7160]: pgsql_db_connect() -- 16:37:13.223 DEBUG [7160]: Database connection successful -- 16:37:13.223 INFO [7160]: _SERVER found -- 16:37:13.223 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 16:37:13.223 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:37:13.223 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3r12bgpuirq91q5nsepq0ouht5255e49 -- 16:37:13.223 INFO [7160]: QUERY_STRING = /member -- 16:37:13.223 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:37:13.266 INFO [7160]: COREGRADE is stopping... -- 16:37:13.266 DEBUG [7160]: Closing database connection -- 16:37:13.266 SQL [7160]: pgsql_close() -- 16:37:13.577 INFO [7160]: COREGRADE is starting... -- 16:37:13.577 INFO [7160]: Version from config: 1.0 -- 16:37:13.577 DEBUG [7160]: Connecting to database... -- 16:37:13.577 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:37:13.577 SQL [7160]: pgsql_db_connect() -- 16:37:13.582 DEBUG [7160]: Database connection successful -- 16:37:13.582 INFO [7160]: _SERVER found -- 16:37:13.582 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 16:37:13.582 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:37:13.582 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3r12bgpuirq91q5nsepq0ouht5255e49 -- 16:37:13.582 INFO [7160]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:37:13.582 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:37:13.593 INFO [7160]: COREGRADE is stopping... -- 16:37:13.593 DEBUG [7160]: Closing database connection -- 16:37:13.593 SQL [7160]: pgsql_close() -- 16:37:15.027 INFO [7160]: COREGRADE is starting... -- 16:37:15.027 INFO [7160]: Version from config: 1.0 -- 16:37:15.027 DEBUG [7160]: Connecting to database... -- 16:37:15.027 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:37:15.027 SQL [7160]: pgsql_db_connect() -- 16:37:15.031 DEBUG [7160]: Database connection successful -- 16:37:15.031 INFO [7160]: _SERVER found -- 16:37:15.031 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 16:37:15.031 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:37:15.031 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3r12bgpuirq91q5nsepq0ouht5255e49 -- 16:37:15.031 INFO [7160]: QUERY_STRING = /member/page -- 16:37:15.031 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:37:15.074 INFO [7160]: COREGRADE is stopping... -- 16:37:15.074 DEBUG [7160]: Closing database connection -- 16:37:15.074 SQL [7160]: pgsql_close() -- 16:37:15.303 INFO [7160]: COREGRADE is starting... -- 16:37:15.303 INFO [7160]: Version from config: 1.0 -- 16:37:15.303 DEBUG [7160]: Connecting to database... -- 16:37:15.303 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:37:15.303 SQL [7160]: pgsql_db_connect() -- 16:37:15.307 DEBUG [7160]: Database connection successful -- 16:37:15.307 INFO [7160]: _SERVER found -- 16:37:15.307 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 16:37:15.307 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:37:15.307 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3r12bgpuirq91q5nsepq0ouht5255e49 -- 16:37:15.307 INFO [7160]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:37:15.307 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:37:15.318 INFO [7160]: COREGRADE is stopping... -- 16:37:15.318 DEBUG [7160]: Closing database connection -- 16:37:15.318 SQL [7160]: pgsql_close() -- 16:37:36.402 INFO [6383]: COREGRADE is starting... -- 16:37:36.402 INFO [6383]: Version from config: 1.0 -- 16:37:36.402 DEBUG [6383]: Connecting to database... -- 16:37:36.402 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:37:36.402 SQL [6383]: pgsql_db_connect() -- 16:37:36.406 DEBUG [6383]: Database connection successful -- 16:37:36.406 INFO [6383]: _SERVER found -- 16:37:36.406 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 16:37:36.406 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:37:36.406 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3r12bgpuirq91q5nsepq0ouht5255e49 -- 16:37:36.406 INFO [6383]: QUERY_STRING = /member/viewCardAddAction -- 16:37:36.406 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:37:36.437 INFO [6383]: COREGRADE is stopping... -- 16:37:36.437 DEBUG [6383]: Closing database connection -- 16:37:36.437 SQL [6383]: pgsql_close() -- 16:47:16.761 INFO [6409]: COREGRADE is starting... -- 16:47:16.761 INFO [6409]: Version from config: 1.0 -- 16:47:16.761 DEBUG [6409]: Connecting to database... -- 16:47:16.761 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:47:16.761 SQL [6409]: pgsql_db_connect() -- 16:47:16.766 DEBUG [6409]: Database connection successful -- 16:47:16.766 INFO [6409]: _SERVER found -- 16:47:16.766 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 16:47:16.766 INFO [6409]: SERVER_NAME = oameye.works.coregrade.com -- 16:47:16.766 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vlhn0sqavsc2uac8dbfjnhbta2kpfsfg -- 16:47:16.766 INFO [6409]: QUERY_STRING = /member/configure -- 16:47:16.766 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:47:16.806 INFO [6409]: COREGRADE is stopping... -- 16:47:16.806 DEBUG [6409]: Closing database connection -- 16:47:16.806 SQL [6409]: pgsql_close() -- 16:47:17.010 INFO [6409]: COREGRADE is starting... -- 16:47:17.010 INFO [6409]: Version from config: 1.0 -- 16:47:17.010 DEBUG [6409]: Connecting to database... -- 16:47:17.010 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:47:17.010 SQL [6409]: pgsql_db_connect() -- 16:47:17.014 DEBUG [6409]: Database connection successful -- 16:47:17.014 INFO [6409]: _SERVER found -- 16:47:17.014 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 16:47:17.014 INFO [6409]: SERVER_NAME = oameye.works.coregrade.com -- 16:47:17.014 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=bpm9194ta72t2ugsscfti5cuatrfqbga -- 16:47:17.014 INFO [6409]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:47:17.014 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:47:17.025 INFO [6409]: COREGRADE is stopping... -- 16:47:17.025 DEBUG [6409]: Closing database connection -- 16:47:17.025 SQL [6409]: pgsql_close() -- 16:47:17.295 INFO [6409]: COREGRADE is starting... -- 16:47:17.295 INFO [6409]: Version from config: 1.0 -- 16:47:17.295 DEBUG [6409]: Connecting to database... -- 16:47:17.295 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:47:17.295 SQL [6409]: pgsql_db_connect() -- 16:47:17.299 DEBUG [6409]: Database connection successful -- 16:47:17.299 INFO [6409]: _SERVER found -- 16:47:17.299 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 16:47:17.299 INFO [6409]: SERVER_NAME = oameye.works.coregrade.com -- 16:47:17.299 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=bpm9194ta72t2ugsscfti5cuatrfqbga -- 16:47:17.299 INFO [6409]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:47:17.299 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:47:17.310 INFO [6409]: COREGRADE is stopping... -- 16:47:17.310 DEBUG [6409]: Closing database connection -- 16:47:17.310 SQL [6409]: pgsql_close() -- 16:47:21.430 INFO [6409]: COREGRADE is starting... -- 16:47:21.430 INFO [6409]: Version from config: 1.0 -- 16:47:21.430 DEBUG [6409]: Connecting to database... -- 16:47:21.430 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:47:21.430 SQL [6409]: pgsql_db_connect() -- 16:47:21.434 DEBUG [6409]: Database connection successful -- 16:47:21.434 INFO [6409]: _SERVER found -- 16:47:21.434 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 16:47:21.434 INFO [6409]: SERVER_NAME = oameye.works.coregrade.com -- 16:47:21.434 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=bpm9194ta72t2ugsscfti5cuatrfqbga -- 16:47:21.434 INFO [6409]: QUERY_STRING = /member/viewSharePage -- 16:47:21.434 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:47:21.446 INFO [6409]: COREGRADE is stopping... -- 16:47:21.446 DEBUG [6409]: Closing database connection -- 16:47:21.446 SQL [6409]: pgsql_close() -- 16:49:16.427 INFO [7017]: COREGRADE is starting... -- 16:49:16.427 INFO [7017]: Version from config: 1.0 -- 16:49:16.427 DEBUG [7017]: Connecting to database... -- 16:49:16.427 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:49:16.427 SQL [7017]: pgsql_db_connect() -- 16:49:16.432 DEBUG [7017]: Database connection successful -- 16:49:16.432 INFO [7017]: _SERVER found -- 16:49:16.432 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 16:49:16.432 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 16:49:16.432 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=bpm9194ta72t2ugsscfti5cuatrfqbga -- 16:49:16.432 INFO [7017]: QUERY_STRING = /member/viewSharePage -- 16:49:16.432 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:49:16.463 INFO [7017]: COREGRADE is stopping... -- 16:49:16.464 DEBUG [7017]: Closing database connection -- 16:49:16.464 SQL [7017]: pgsql_close() -- 16:49:18.843 INFO [7017]: COREGRADE is starting... -- 16:49:18.843 INFO [7017]: Version from config: 1.0 -- 16:49:18.843 DEBUG [7017]: Connecting to database... -- 16:49:18.843 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:49:18.843 SQL [7017]: pgsql_db_connect() -- 16:49:18.847 DEBUG [7017]: Database connection successful -- 16:49:18.847 INFO [7017]: _SERVER found -- 16:49:18.847 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 16:49:18.847 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 16:49:18.847 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=bpm9194ta72t2ugsscfti5cuatrfqbga -- 16:49:18.847 INFO [7017]: QUERY_STRING = /member/viewSharePage -- 16:49:18.847 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:49:18.877 INFO [7017]: COREGRADE is stopping... -- 16:49:18.877 DEBUG [7017]: Closing database connection -- 16:49:18.877 SQL [7017]: pgsql_close() -- 16:51:18.621 INFO [6385]: COREGRADE is starting... -- 16:51:18.621 INFO [6385]: Version from config: 1.0 -- 16:51:18.621 DEBUG [6385]: Connecting to database... -- 16:51:18.621 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:18.621 SQL [6385]: pgsql_db_connect() -- 16:51:18.625 DEBUG [6385]: Database connection successful -- 16:51:18.625 INFO [6385]: _SERVER found -- 16:51:18.625 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 16:51:18.625 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:51:18.625 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=3r12bgpuirq91q5nsepq0ouht5255e49 -- 16:51:18.625 INFO [6385]: QUERY_STRING = -- 16:51:18.625 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:51:18.664 INFO [6385]: COREGRADE is stopping... -- 16:51:18.664 DEBUG [6385]: Closing database connection -- 16:51:18.664 SQL [6385]: pgsql_close() -- 16:51:19.021 INFO [6385]: COREGRADE is starting... -- 16:51:19.022 INFO [6385]: Version from config: 1.0 -- 16:51:19.022 DEBUG [6385]: Connecting to database... -- 16:51:19.022 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:19.022 SQL [6385]: pgsql_db_connect() -- 16:51:19.034 INFO [6381]: COREGRADE is starting... -- 16:51:19.034 INFO [6381]: Version from config: 1.0 -- 16:51:19.034 DEBUG [6381]: Connecting to database... -- 16:51:19.034 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:19.034 SQL [6381]: pgsql_db_connect() -- 16:51:19.026 DEBUG [6385]: Database connection successful -- 16:51:19.026 INFO [6385]: _SERVER found -- 16:51:19.026 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 16:51:19.026 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:51:19.026 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=s2k0mlt6n053mhc6085kj7gp9h8d3rr9 -- 16:51:19.026 INFO [6385]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 16:51:19.026 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:51:19.037 INFO [6385]: COREGRADE is stopping... -- 16:51:19.037 DEBUG [6385]: Closing database connection -- 16:51:19.037 SQL [6385]: pgsql_close() -- 16:51:19.038 DEBUG [6381]: Database connection successful -- 16:51:19.038 INFO [6381]: _SERVER found -- 16:51:19.038 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 16:51:19.038 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:51:19.039 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=s2k0mlt6n053mhc6085kj7gp9h8d3rr9 -- 16:51:19.039 INFO [6381]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:51:19.039 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:51:19.050 INFO [6381]: COREGRADE is stopping... -- 16:51:19.050 DEBUG [6381]: Closing database connection -- 16:51:19.050 SQL [6381]: pgsql_close() -- 16:51:22.974 INFO [6381]: COREGRADE is starting... -- 16:51:22.975 INFO [6381]: Version from config: 1.0 -- 16:51:22.975 DEBUG [6381]: Connecting to database... -- 16:51:22.975 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:22.975 SQL [6381]: pgsql_db_connect() -- 16:51:22.979 DEBUG [6381]: Database connection successful -- 16:51:22.979 INFO [6381]: _SERVER found -- 16:51:22.979 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 16:51:22.979 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:51:22.979 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=s2k0mlt6n053mhc6085kj7gp9h8d3rr9; _gat_gtag_UA_54829827_2=1 -- 16:51:22.979 INFO [6381]: QUERY_STRING = /auth -- 16:51:22.979 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:51:23.010 INFO [6381]: COREGRADE is stopping... -- 16:51:23.010 DEBUG [6381]: Closing database connection -- 16:51:23.010 SQL [6381]: pgsql_close() -- 16:51:23.714 INFO [6381]: COREGRADE is starting... -- 16:51:23.715 INFO [6381]: Version from config: 1.0 -- 16:51:23.715 DEBUG [6381]: Connecting to database... -- 16:51:23.715 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:23.715 SQL [6381]: pgsql_db_connect() -- 16:51:23.719 DEBUG [6381]: Database connection successful -- 16:51:23.719 INFO [6381]: _SERVER found -- 16:51:23.719 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 16:51:23.719 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:51:23.719 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=s2k0mlt6n053mhc6085kj7gp9h8d3rr9; _gat_gtag_UA_54829827_2=1 -- 16:51:23.719 INFO [6381]: QUERY_STRING = /auth -- 16:51:23.719 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:51:23.749 INFO [6381]: COREGRADE is stopping... -- 16:51:23.749 DEBUG [6381]: Closing database connection -- 16:51:23.749 SQL [6381]: pgsql_close() -- 16:51:23.935 INFO [6381]: COREGRADE is starting... -- 16:51:23.936 INFO [6381]: Version from config: 1.0 -- 16:51:23.936 DEBUG [6381]: Connecting to database... -- 16:51:23.936 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:23.936 SQL [6381]: pgsql_db_connect() -- 16:51:23.940 DEBUG [6381]: Database connection successful -- 16:51:23.940 INFO [6381]: _SERVER found -- 16:51:23.940 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 16:51:23.940 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:51:23.940 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=s2k0mlt6n053mhc6085kj7gp9h8d3rr9; _gat_gtag_UA_54829827_2=1 -- 16:51:23.940 INFO [6381]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:51:23.940 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:51:23.951 INFO [6381]: COREGRADE is stopping... -- 16:51:23.951 DEBUG [6381]: Closing database connection -- 16:51:23.951 SQL [6381]: pgsql_close() -- 16:51:23.954 INFO [6381]: COREGRADE is starting... -- 16:51:23.954 INFO [6381]: Version from config: 1.0 -- 16:51:23.954 DEBUG [6381]: Connecting to database... -- 16:51:23.954 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:23.955 SQL [6381]: pgsql_db_connect() -- 16:51:23.958 DEBUG [6381]: Database connection successful -- 16:51:23.958 INFO [6381]: _SERVER found -- 16:51:23.958 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 16:51:23.958 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:51:23.958 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=s2k0mlt6n053mhc6085kj7gp9h8d3rr9; _gat_gtag_UA_54829827_2=1 -- 16:51:23.958 INFO [6381]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:51:23.958 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:51:23.969 INFO [6381]: COREGRADE is stopping... -- 16:51:23.969 DEBUG [6381]: Closing database connection -- 16:51:23.969 SQL [6381]: pgsql_close() -- 16:51:25.394 INFO [6381]: COREGRADE is starting... -- 16:51:25.394 INFO [6381]: Version from config: 1.0 -- 16:51:25.394 DEBUG [6381]: Connecting to database... -- 16:51:25.394 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:25.395 SQL [6381]: pgsql_db_connect() -- 16:51:25.399 DEBUG [6381]: Database connection successful -- 16:51:25.399 INFO [6381]: _SERVER found -- 16:51:25.399 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 16:51:25.399 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:51:25.399 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=s2k0mlt6n053mhc6085kj7gp9h8d3rr9; _gat_gtag_UA_54829827_2=1 -- 16:51:25.399 INFO [6381]: QUERY_STRING = /auth -- 16:51:25.399 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:51:25.455 INFO [6381]: COREGRADE is starting... -- 16:51:25.456 INFO [6381]: Version from config: 1.0 -- 16:51:25.456 DEBUG [6381]: Connecting to database... -- 16:51:25.456 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:25.456 SQL [6381]: pgsql_db_connect() -- 16:51:25.460 DEBUG [6381]: Database connection successful -- 16:51:25.460 INFO [6381]: _SERVER found -- 16:51:25.460 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 16:51:25.460 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:51:25.460 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=s2k0mlt6n053mhc6085kj7gp9h8d3rr9; _gat_gtag_UA_54829827_2=1 -- 16:51:25.460 INFO [6381]: QUERY_STRING = /member/index -- 16:51:25.460 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:51:25.498 INFO [6381]: COREGRADE is stopping... -- 16:51:25.498 DEBUG [6381]: Closing database connection -- 16:51:25.499 SQL [6381]: pgsql_close() -- 16:51:25.731 INFO [6381]: COREGRADE is starting... -- 16:51:25.732 INFO [6381]: Version from config: 1.0 -- 16:51:25.732 DEBUG [6381]: Connecting to database... -- 16:51:25.732 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:25.732 SQL [6381]: pgsql_db_connect() -- 16:51:25.736 DEBUG [6381]: Database connection successful -- 16:51:25.736 INFO [6381]: _SERVER found -- 16:51:25.736 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 16:51:25.736 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:51:25.736 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=s2k0mlt6n053mhc6085kj7gp9h8d3rr9; _gat_gtag_UA_54829827_2=1 -- 16:51:25.736 INFO [6381]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:51:25.736 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:51:25.747 INFO [6381]: COREGRADE is stopping... -- 16:51:25.747 DEBUG [6381]: Closing database connection -- 16:51:25.747 SQL [6381]: pgsql_close() -- 16:51:25.754 INFO [6381]: COREGRADE is starting... -- 16:51:25.754 INFO [6381]: Version from config: 1.0 -- 16:51:25.754 DEBUG [6381]: Connecting to database... -- 16:51:25.754 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:25.754 SQL [6381]: pgsql_db_connect() -- 16:51:25.758 DEBUG [6381]: Database connection successful -- 16:51:25.758 INFO [6381]: _SERVER found -- 16:51:25.758 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 16:51:25.758 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:51:25.758 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=s2k0mlt6n053mhc6085kj7gp9h8d3rr9; _gat_gtag_UA_54829827_2=1 -- 16:51:25.758 INFO [6381]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:51:25.758 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:51:25.769 INFO [6381]: COREGRADE is stopping... -- 16:51:25.769 DEBUG [6381]: Closing database connection -- 16:51:25.769 SQL [6381]: pgsql_close() -- 16:51:27.646 INFO [6381]: COREGRADE is starting... -- 16:51:27.646 INFO [6381]: Version from config: 1.0 -- 16:51:27.646 DEBUG [6381]: Connecting to database... -- 16:51:27.646 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:27.646 SQL [6381]: pgsql_db_connect() -- 16:51:27.650 DEBUG [6381]: Database connection successful -- 16:51:27.650 INFO [6381]: _SERVER found -- 16:51:27.650 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 16:51:27.650 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:51:27.650 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=s2k0mlt6n053mhc6085kj7gp9h8d3rr9; _gat_gtag_UA_54829827_2=1 -- 16:51:27.650 INFO [6381]: QUERY_STRING = /member/page -- 16:51:27.650 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:51:27.690 INFO [6381]: COREGRADE is stopping... -- 16:51:27.690 DEBUG [6381]: Closing database connection -- 16:51:27.690 SQL [6381]: pgsql_close() -- 16:51:27.941 INFO [6381]: COREGRADE is starting... -- 16:51:27.942 INFO [6381]: Version from config: 1.0 -- 16:51:27.942 DEBUG [6381]: Connecting to database... -- 16:51:27.942 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:27.942 SQL [6381]: pgsql_db_connect() -- 16:51:27.946 DEBUG [6381]: Database connection successful -- 16:51:27.946 INFO [6381]: _SERVER found -- 16:51:27.946 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 16:51:27.946 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:51:27.946 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=s2k0mlt6n053mhc6085kj7gp9h8d3rr9; _gat_gtag_UA_54829827_2=1 -- 16:51:27.946 INFO [6381]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:51:27.946 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:51:27.957 INFO [6381]: COREGRADE is stopping... -- 16:51:27.957 DEBUG [6381]: Closing database connection -- 16:51:27.957 SQL [6381]: pgsql_close() -- 16:51:30.668 INFO [6381]: COREGRADE is starting... -- 16:51:30.669 INFO [6381]: Version from config: 1.0 -- 16:51:30.669 DEBUG [6381]: Connecting to database... -- 16:51:30.669 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:30.669 SQL [6381]: pgsql_db_connect() -- 16:51:30.673 DEBUG [6381]: Database connection successful -- 16:51:30.673 INFO [6381]: _SERVER found -- 16:51:30.673 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 16:51:30.673 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:51:30.673 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=s2k0mlt6n053mhc6085kj7gp9h8d3rr9; _gat_gtag_UA_54829827_2=1 -- 16:51:30.673 INFO [6381]: QUERY_STRING = /member/configure -- 16:51:30.673 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:51:30.712 INFO [6381]: COREGRADE is stopping... -- 16:51:30.712 DEBUG [6381]: Closing database connection -- 16:51:30.712 SQL [6381]: pgsql_close() -- 16:51:30.951 INFO [6381]: COREGRADE is starting... -- 16:51:30.951 INFO [6381]: Version from config: 1.0 -- 16:51:30.951 DEBUG [6381]: Connecting to database... -- 16:51:30.951 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:30.951 SQL [6381]: pgsql_db_connect() -- 16:51:30.955 DEBUG [6381]: Database connection successful -- 16:51:30.955 INFO [6381]: _SERVER found -- 16:51:30.955 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 16:51:30.955 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:51:30.955 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=s2k0mlt6n053mhc6085kj7gp9h8d3rr9; _gat_gtag_UA_54829827_2=1 -- 16:51:30.955 INFO [6381]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:51:30.955 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:51:30.966 INFO [6381]: COREGRADE is stopping... -- 16:51:30.967 DEBUG [6381]: Closing database connection -- 16:51:30.967 SQL [6381]: pgsql_close() -- 16:51:37.337 INFO [6384]: COREGRADE is starting... -- 16:51:37.337 INFO [6384]: Version from config: 1.0 -- 16:51:37.337 DEBUG [6384]: Connecting to database... -- 16:51:37.337 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:37.337 SQL [6384]: pgsql_db_connect() -- 16:51:37.341 DEBUG [6384]: Database connection successful -- 16:51:37.341 INFO [6384]: _SERVER found -- 16:51:37.341 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 16:51:37.341 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:51:37.341 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=s2k0mlt6n053mhc6085kj7gp9h8d3rr9; _gat_gtag_UA_54829827_2=1 -- 16:51:37.341 INFO [6384]: QUERY_STRING = /member/viewSharePage -- 16:51:37.341 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:51:37.372 INFO [6384]: COREGRADE is stopping... -- 16:51:37.372 DEBUG [6384]: Closing database connection -- 16:51:37.372 SQL [6384]: pgsql_close() -- 16:56:06.886 INFO [6382]: COREGRADE is starting... -- 16:56:06.887 INFO [6382]: Version from config: 1.0 -- 16:56:06.887 DEBUG [6382]: Connecting to database... -- 16:56:06.887 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:06.887 SQL [6382]: pgsql_db_connect() -- 16:56:06.891 DEBUG [6382]: Database connection successful -- 16:56:06.891 INFO [6382]: _SERVER found -- 16:56:06.891 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 16:56:06.891 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 16:56:06.891 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=bpm9194ta72t2ugsscfti5cuatrfqbga -- 16:56:06.891 INFO [6382]: QUERY_STRING = /member/configure -- 16:56:06.891 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:56:06.932 INFO [6382]: COREGRADE is stopping... -- 16:56:06.933 DEBUG [6382]: Closing database connection -- 16:56:06.933 SQL [6382]: pgsql_close() -- 16:56:07.165 INFO [6382]: COREGRADE is starting... -- 16:56:07.165 INFO [6382]: Version from config: 1.0 -- 16:56:07.165 DEBUG [6382]: Connecting to database... -- 16:56:07.165 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:07.165 SQL [6382]: pgsql_db_connect() -- 16:56:07.169 DEBUG [6382]: Database connection successful -- 16:56:07.169 INFO [6382]: _SERVER found -- 16:56:07.169 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 16:56:07.169 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 16:56:07.169 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=4h2l41epe9njvt80pgefa4ut5qev5kkg -- 16:56:07.169 INFO [6382]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:56:07.169 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:56:07.180 INFO [6382]: COREGRADE is stopping... -- 16:56:07.180 DEBUG [6382]: Closing database connection -- 16:56:07.180 SQL [6382]: pgsql_close() -- 16:56:07.386 INFO [6382]: COREGRADE is starting... -- 16:56:07.387 INFO [6382]: Version from config: 1.0 -- 16:56:07.387 DEBUG [6382]: Connecting to database... -- 16:56:07.387 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:07.387 SQL [6382]: pgsql_db_connect() -- 16:56:07.390 DEBUG [6382]: Database connection successful -- 16:56:07.390 INFO [6382]: _SERVER found -- 16:56:07.390 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 16:56:07.390 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 16:56:07.390 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=4h2l41epe9njvt80pgefa4ut5qev5kkg -- 16:56:07.390 INFO [6382]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:56:07.390 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:56:07.402 INFO [6382]: COREGRADE is stopping... -- 16:56:07.402 DEBUG [6382]: Closing database connection -- 16:56:07.402 SQL [6382]: pgsql_close() -- 16:56:10.489 INFO [7159]: COREGRADE is starting... -- 16:56:10.489 INFO [7159]: Version from config: 1.0 -- 16:56:10.489 DEBUG [7159]: Connecting to database... -- 16:56:10.489 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:10.489 SQL [7159]: pgsql_db_connect() -- 16:56:10.493 DEBUG [7159]: Database connection successful -- 16:56:10.493 INFO [7159]: _SERVER found -- 16:56:10.493 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 16:56:10.493 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 16:56:10.493 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=4h2l41epe9njvt80pgefa4ut5qev5kkg -- 16:56:10.493 INFO [7159]: QUERY_STRING = /member/deletePageAction -- 16:56:10.493 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:56:10.525 INFO [7159]: COREGRADE is stopping... -- 16:56:10.525 DEBUG [7159]: Closing database connection -- 16:56:10.525 SQL [7159]: pgsql_close() -- 16:56:12.956 INFO [7159]: COREGRADE is starting... -- 16:56:12.956 INFO [7159]: Version from config: 1.0 -- 16:56:12.956 DEBUG [7159]: Connecting to database... -- 16:56:12.956 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:12.956 SQL [7159]: pgsql_db_connect() -- 16:56:12.960 DEBUG [7159]: Database connection successful -- 16:56:12.960 INFO [7159]: _SERVER found -- 16:56:12.960 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 16:56:12.960 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 16:56:12.960 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=4h2l41epe9njvt80pgefa4ut5qev5kkg -- 16:56:12.960 INFO [7159]: QUERY_STRING = /member/deletePageAction -- 16:56:12.960 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:56:12.990 INFO [7159]: COREGRADE is stopping... -- 16:56:12.990 DEBUG [7159]: Closing database connection -- 16:56:12.990 SQL [7159]: pgsql_close() -- 16:56:14.959 INFO [7159]: COREGRADE is starting... -- 16:56:14.959 INFO [7159]: Version from config: 1.0 -- 16:56:14.959 DEBUG [7159]: Connecting to database... -- 16:56:14.959 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:14.959 SQL [7159]: pgsql_db_connect() -- 16:56:14.964 DEBUG [7159]: Database connection successful -- 16:56:14.964 INFO [7159]: _SERVER found -- 16:56:14.964 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 16:56:14.964 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 16:56:14.964 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=4h2l41epe9njvt80pgefa4ut5qev5kkg -- 16:56:14.964 INFO [7159]: QUERY_STRING = /member/deletePageAction -- 16:56:14.964 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:56:14.994 INFO [7159]: COREGRADE is stopping... -- 16:56:14.994 DEBUG [7159]: Closing database connection -- 16:56:14.994 SQL [7159]: pgsql_close() -- 16:57:16.784 INFO [6405]: COREGRADE is starting... -- 16:57:16.784 INFO [6405]: Version from config: 1.0 -- 16:57:16.784 DEBUG [6405]: Connecting to database... -- 16:57:16.784 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:16.784 SQL [6405]: pgsql_db_connect() -- 16:57:16.788 DEBUG [6405]: Database connection successful -- 16:57:16.788 INFO [6405]: _SERVER found -- 16:57:16.788 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 16:57:16.788 INFO [6405]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:57:16.788 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=s2k0mlt6n053mhc6085kj7gp9h8d3rr9 -- 16:57:16.788 INFO [6405]: QUERY_STRING = /member -- 16:57:16.788 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:16.830 INFO [6405]: COREGRADE is stopping... -- 16:57:16.830 DEBUG [6405]: Closing database connection -- 16:57:16.830 SQL [6405]: pgsql_close() -- 16:57:17.145 INFO [6405]: COREGRADE is starting... -- 16:57:17.146 INFO [6405]: Version from config: 1.0 -- 16:57:17.146 DEBUG [6405]: Connecting to database... -- 16:57:17.146 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:17.146 SQL [6405]: pgsql_db_connect() -- 16:57:17.150 DEBUG [6405]: Database connection successful -- 16:57:17.150 INFO [6405]: _SERVER found -- 16:57:17.150 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 16:57:17.150 INFO [6405]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:57:17.150 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nbdq070c565j93l9va6snj2p8o7m3knn -- 16:57:17.150 INFO [6405]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:57:17.150 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:17.161 INFO [6405]: COREGRADE is stopping... -- 16:57:17.161 DEBUG [6405]: Closing database connection -- 16:57:17.161 SQL [6405]: pgsql_close() -- 16:57:18.565 INFO [6405]: COREGRADE is starting... -- 16:57:18.565 INFO [6405]: Version from config: 1.0 -- 16:57:18.565 DEBUG [6405]: Connecting to database... -- 16:57:18.565 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:18.565 SQL [6405]: pgsql_db_connect() -- 16:57:18.569 DEBUG [6405]: Database connection successful -- 16:57:18.569 INFO [6405]: _SERVER found -- 16:57:18.569 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 16:57:18.569 INFO [6405]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:57:18.569 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nbdq070c565j93l9va6snj2p8o7m3knn -- 16:57:18.569 INFO [6405]: QUERY_STRING = /member/page -- 16:57:18.569 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:18.610 INFO [6405]: COREGRADE is stopping... -- 16:57:18.610 DEBUG [6405]: Closing database connection -- 16:57:18.610 SQL [6405]: pgsql_close() -- 16:57:18.831 INFO [6405]: COREGRADE is starting... -- 16:57:18.831 INFO [6405]: Version from config: 1.0 -- 16:57:18.831 DEBUG [6405]: Connecting to database... -- 16:57:18.831 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:18.831 SQL [6405]: pgsql_db_connect() -- 16:57:18.835 DEBUG [6405]: Database connection successful -- 16:57:18.835 INFO [6405]: _SERVER found -- 16:57:18.835 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 16:57:18.835 INFO [6405]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:57:18.835 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nbdq070c565j93l9va6snj2p8o7m3knn -- 16:57:18.835 INFO [6405]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:57:18.835 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:18.846 INFO [6405]: COREGRADE is stopping... -- 16:57:18.846 DEBUG [6405]: Closing database connection -- 16:57:18.846 SQL [6405]: pgsql_close() -- 16:57:30.384 INFO [7160]: COREGRADE is starting... -- 16:57:30.384 INFO [7160]: Version from config: 1.0 -- 16:57:30.384 DEBUG [7160]: Connecting to database... -- 16:57:30.384 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:30.384 SQL [7160]: pgsql_db_connect() -- 16:57:30.388 DEBUG [7160]: Database connection successful -- 16:57:30.388 INFO [7160]: _SERVER found -- 16:57:30.388 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 16:57:30.388 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:57:30.388 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nbdq070c565j93l9va6snj2p8o7m3knn -- 16:57:30.388 INFO [7160]: QUERY_STRING = /member/configure -- 16:57:30.388 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:30.431 INFO [7160]: COREGRADE is stopping... -- 16:57:30.431 DEBUG [7160]: Closing database connection -- 16:57:30.431 SQL [7160]: pgsql_close() -- 16:57:30.727 INFO [7160]: COREGRADE is starting... -- 16:57:30.728 INFO [7160]: Version from config: 1.0 -- 16:57:30.728 DEBUG [7160]: Connecting to database... -- 16:57:30.728 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:30.728 SQL [7160]: pgsql_db_connect() -- 16:57:30.732 DEBUG [7160]: Database connection successful -- 16:57:30.732 INFO [7160]: _SERVER found -- 16:57:30.732 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 16:57:30.732 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:57:30.732 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nbdq070c565j93l9va6snj2p8o7m3knn -- 16:57:30.732 INFO [7160]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:57:30.732 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:30.743 INFO [7160]: COREGRADE is stopping... -- 16:57:30.743 DEBUG [7160]: Closing database connection -- 16:57:30.743 SQL [7160]: pgsql_close() -- 16:57:34.217 INFO [7160]: COREGRADE is starting... -- 16:57:34.218 INFO [7160]: Version from config: 1.0 -- 16:57:34.218 DEBUG [7160]: Connecting to database... -- 16:57:34.218 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:34.218 SQL [7160]: pgsql_db_connect() -- 16:57:34.222 DEBUG [7160]: Database connection successful -- 16:57:34.222 INFO [7160]: _SERVER found -- 16:57:34.222 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 16:57:34.222 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:57:34.222 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nbdq070c565j93l9va6snj2p8o7m3knn -- 16:57:34.222 INFO [7160]: QUERY_STRING = /member -- 16:57:34.222 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:34.263 INFO [7160]: COREGRADE is stopping... -- 16:57:34.263 DEBUG [7160]: Closing database connection -- 16:57:34.263 SQL [7160]: pgsql_close() -- 16:57:34.489 INFO [7160]: COREGRADE is starting... -- 16:57:34.489 INFO [7160]: Version from config: 1.0 -- 16:57:34.489 DEBUG [7160]: Connecting to database... -- 16:57:34.490 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:34.490 SQL [7160]: pgsql_db_connect() -- 16:57:34.493 DEBUG [7160]: Database connection successful -- 16:57:34.493 INFO [7160]: _SERVER found -- 16:57:34.494 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 16:57:34.494 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:57:34.494 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nbdq070c565j93l9va6snj2p8o7m3knn -- 16:57:34.494 INFO [7160]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:57:34.494 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:34.505 INFO [7160]: COREGRADE is stopping... -- 16:57:34.505 DEBUG [7160]: Closing database connection -- 16:57:34.505 SQL [7160]: pgsql_close() -- 16:57:36.420 INFO [7160]: COREGRADE is starting... -- 16:57:36.421 INFO [7160]: Version from config: 1.0 -- 16:57:36.421 DEBUG [7160]: Connecting to database... -- 16:57:36.421 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:36.421 SQL [7160]: pgsql_db_connect() -- 16:57:36.425 DEBUG [7160]: Database connection successful -- 16:57:36.425 INFO [7160]: _SERVER found -- 16:57:36.425 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 16:57:36.425 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:57:36.425 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nbdq070c565j93l9va6snj2p8o7m3knn -- 16:57:36.425 INFO [7160]: QUERY_STRING = /member/mycalendar -- 16:57:36.425 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:36.463 INFO [7160]: COREGRADE is stopping... -- 16:57:36.463 DEBUG [7160]: Closing database connection -- 16:57:36.463 SQL [7160]: pgsql_close() -- 16:57:36.679 INFO [7160]: COREGRADE is starting... -- 16:57:36.680 INFO [7160]: Version from config: 1.0 -- 16:57:36.680 DEBUG [7160]: Connecting to database... -- 16:57:36.680 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:36.680 SQL [7160]: pgsql_db_connect() -- 16:57:36.684 DEBUG [7160]: Database connection successful -- 16:57:36.684 INFO [7160]: _SERVER found -- 16:57:36.684 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 16:57:36.684 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:57:36.684 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nbdq070c565j93l9va6snj2p8o7m3knn -- 16:57:36.684 INFO [7160]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:57:36.684 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:36.695 INFO [7160]: COREGRADE is stopping... -- 16:57:36.695 DEBUG [7160]: Closing database connection -- 16:57:36.695 SQL [7160]: pgsql_close() -- 16:57:38.378 INFO [7160]: COREGRADE is starting... -- 16:57:38.378 INFO [7160]: Version from config: 1.0 -- 16:57:38.378 DEBUG [7160]: Connecting to database... -- 16:57:38.378 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:38.378 SQL [7160]: pgsql_db_connect() -- 16:57:38.382 DEBUG [7160]: Database connection successful -- 16:57:38.382 INFO [7160]: _SERVER found -- 16:57:38.382 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 16:57:38.382 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:57:38.382 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nbdq070c565j93l9va6snj2p8o7m3knn -- 16:57:38.382 INFO [7160]: QUERY_STRING = /member/mycalendar -- 16:57:38.382 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:38.421 INFO [7160]: COREGRADE is stopping... -- 16:57:38.421 DEBUG [7160]: Closing database connection -- 16:57:38.421 SQL [7160]: pgsql_close() -- 16:57:38.627 INFO [7160]: COREGRADE is starting... -- 16:57:38.627 INFO [7160]: Version from config: 1.0 -- 16:57:38.627 DEBUG [7160]: Connecting to database... -- 16:57:38.627 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:38.627 SQL [7160]: pgsql_db_connect() -- 16:57:38.631 DEBUG [7160]: Database connection successful -- 16:57:38.631 INFO [7160]: _SERVER found -- 16:57:38.631 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 16:57:38.631 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:57:38.631 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nbdq070c565j93l9va6snj2p8o7m3knn -- 16:57:38.631 INFO [7160]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:57:38.631 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:38.642 INFO [7160]: COREGRADE is stopping... -- 16:57:38.642 DEBUG [7160]: Closing database connection -- 16:57:38.642 SQL [7160]: pgsql_close() -- 16:57:39.473 INFO [7160]: COREGRADE is starting... -- 16:57:39.473 INFO [7160]: Version from config: 1.0 -- 16:57:39.473 DEBUG [7160]: Connecting to database... -- 16:57:39.473 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:39.473 SQL [7160]: pgsql_db_connect() -- 16:57:39.477 DEBUG [7160]: Database connection successful -- 16:57:39.477 INFO [7160]: _SERVER found -- 16:57:39.477 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 16:57:39.477 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:57:39.477 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nbdq070c565j93l9va6snj2p8o7m3knn -- 16:57:39.477 INFO [7160]: QUERY_STRING = /member/configure -- 16:57:39.477 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:39.519 INFO [7160]: COREGRADE is stopping... -- 16:57:39.519 DEBUG [7160]: Closing database connection -- 16:57:39.519 SQL [7160]: pgsql_close() -- 16:57:39.739 INFO [7160]: COREGRADE is starting... -- 16:57:39.739 INFO [7160]: Version from config: 1.0 -- 16:57:39.739 DEBUG [7160]: Connecting to database... -- 16:57:39.739 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:39.739 SQL [7160]: pgsql_db_connect() -- 16:57:39.743 DEBUG [7160]: Database connection successful -- 16:57:39.743 INFO [7160]: _SERVER found -- 16:57:39.743 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 16:57:39.743 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:57:39.743 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nbdq070c565j93l9va6snj2p8o7m3knn -- 16:57:39.743 INFO [7160]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:57:39.743 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:39.754 INFO [7160]: COREGRADE is stopping... -- 16:57:39.754 DEBUG [7160]: Closing database connection -- 16:57:39.754 SQL [7160]: pgsql_close() -- 16:57:39.951 INFO [7160]: COREGRADE is starting... -- 16:57:39.951 INFO [7160]: Version from config: 1.0 -- 16:57:39.951 DEBUG [7160]: Connecting to database... -- 16:57:39.951 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:39.951 SQL [7160]: pgsql_db_connect() -- 16:57:39.955 DEBUG [7160]: Database connection successful -- 16:57:39.955 INFO [7160]: _SERVER found -- 16:57:39.955 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 16:57:39.955 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:57:39.955 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nbdq070c565j93l9va6snj2p8o7m3knn -- 16:57:39.955 INFO [7160]: QUERY_STRING = /member/mycalendar -- 16:57:39.955 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:39.994 INFO [7160]: COREGRADE is stopping... -- 16:57:39.994 DEBUG [7160]: Closing database connection -- 16:57:39.994 SQL [7160]: pgsql_close() -- 16:57:40.203 INFO [7160]: COREGRADE is starting... -- 16:57:40.204 INFO [7160]: Version from config: 1.0 -- 16:57:40.204 DEBUG [7160]: Connecting to database... -- 16:57:40.204 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:40.204 SQL [7160]: pgsql_db_connect() -- 16:57:40.208 DEBUG [7160]: Database connection successful -- 16:57:40.208 INFO [7160]: _SERVER found -- 16:57:40.208 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 16:57:40.208 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:57:40.208 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nbdq070c565j93l9va6snj2p8o7m3knn -- 16:57:40.208 INFO [7160]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:57:40.208 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:40.219 INFO [7160]: COREGRADE is stopping... -- 16:57:40.219 DEBUG [7160]: Closing database connection -- 16:57:40.219 SQL [7160]: pgsql_close() -- 16:57:41.302 INFO [7160]: COREGRADE is starting... -- 16:57:41.303 INFO [7160]: Version from config: 1.0 -- 16:57:41.303 DEBUG [7160]: Connecting to database... -- 16:57:41.303 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:41.303 SQL [7160]: pgsql_db_connect() -- 16:57:41.307 DEBUG [7160]: Database connection successful -- 16:57:41.307 INFO [7160]: _SERVER found -- 16:57:41.307 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 16:57:41.307 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:57:41.307 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nbdq070c565j93l9va6snj2p8o7m3knn -- 16:57:41.307 INFO [7160]: QUERY_STRING = /member/configure -- 16:57:41.307 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:41.348 INFO [7160]: COREGRADE is stopping... -- 16:57:41.348 DEBUG [7160]: Closing database connection -- 16:57:41.348 SQL [7160]: pgsql_close() -- 16:57:41.578 INFO [7160]: COREGRADE is starting... -- 16:57:41.579 INFO [7160]: Version from config: 1.0 -- 16:57:41.579 DEBUG [7160]: Connecting to database... -- 16:57:41.579 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:41.579 SQL [7160]: pgsql_db_connect() -- 16:57:41.583 DEBUG [7160]: Database connection successful -- 16:57:41.583 INFO [7160]: _SERVER found -- 16:57:41.583 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 16:57:41.583 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:57:41.583 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nbdq070c565j93l9va6snj2p8o7m3knn -- 16:57:41.583 INFO [7160]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:57:41.583 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:41.594 INFO [7160]: COREGRADE is stopping... -- 16:57:41.594 DEBUG [7160]: Closing database connection -- 16:57:41.594 SQL [7160]: pgsql_close() -- 16:57:44.780 INFO [7160]: COREGRADE is starting... -- 16:57:44.780 INFO [7160]: Version from config: 1.0 -- 16:57:44.780 DEBUG [7160]: Connecting to database... -- 16:57:44.780 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:44.780 SQL [7160]: pgsql_db_connect() -- 16:57:44.784 DEBUG [7160]: Database connection successful -- 16:57:44.784 INFO [7160]: _SERVER found -- 16:57:44.784 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 16:57:44.784 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:57:44.784 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nbdq070c565j93l9va6snj2p8o7m3knn -- 16:57:44.784 INFO [7160]: QUERY_STRING = /member/viewSharePage -- 16:57:44.784 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:44.816 INFO [7160]: COREGRADE is stopping... -- 16:57:44.817 DEBUG [7160]: Closing database connection -- 16:57:44.817 SQL [7160]: pgsql_close() -- 16:57:46.914 INFO [7160]: COREGRADE is starting... -- 16:57:46.915 INFO [7160]: Version from config: 1.0 -- 16:57:46.915 DEBUG [7160]: Connecting to database... -- 16:57:46.915 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:46.915 SQL [7160]: pgsql_db_connect() -- 16:57:46.919 DEBUG [7160]: Database connection successful -- 16:57:46.919 INFO [7160]: _SERVER found -- 16:57:46.919 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 16:57:46.919 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:57:46.919 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nbdq070c565j93l9va6snj2p8o7m3knn -- 16:57:46.919 INFO [7160]: QUERY_STRING = /member/deletePageAction -- 16:57:46.919 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:46.949 INFO [7160]: COREGRADE is stopping... -- 16:57:46.949 DEBUG [7160]: Closing database connection -- 16:57:46.949 SQL [7160]: pgsql_close() -- 16:58:21.462 INFO [6383]: COREGRADE is starting... -- 16:58:21.462 INFO [6383]: Version from config: 1.0 -- 16:58:21.462 DEBUG [6383]: Connecting to database... -- 16:58:21.462 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:21.462 SQL [6383]: pgsql_db_connect() -- 16:58:21.466 DEBUG [6383]: Database connection successful -- 16:58:21.466 INFO [6383]: _SERVER found -- 16:58:21.466 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 16:58:21.466 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:58:21.466 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nbdq070c565j93l9va6snj2p8o7m3knn -- 16:58:21.466 INFO [6383]: QUERY_STRING = /member -- 16:58:21.466 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:58:21.506 INFO [6383]: COREGRADE is stopping... -- 16:58:21.506 DEBUG [6383]: Closing database connection -- 16:58:21.506 SQL [6383]: pgsql_close() -- 16:58:21.814 INFO [6383]: COREGRADE is starting... -- 16:58:21.814 INFO [6383]: Version from config: 1.0 -- 16:58:21.814 DEBUG [6383]: Connecting to database... -- 16:58:21.814 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:21.814 SQL [6383]: pgsql_db_connect() -- 16:58:21.818 DEBUG [6383]: Database connection successful -- 16:58:21.818 INFO [6383]: _SERVER found -- 16:58:21.818 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 16:58:21.818 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:58:21.818 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nbdq070c565j93l9va6snj2p8o7m3knn -- 16:58:21.818 INFO [6383]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:58:21.818 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:58:21.830 INFO [6383]: COREGRADE is stopping... -- 16:58:21.830 DEBUG [6383]: Closing database connection -- 16:58:21.830 SQL [6383]: pgsql_close() -- 16:58:23.028 INFO [6383]: COREGRADE is starting... -- 16:58:23.029 INFO [6383]: Version from config: 1.0 -- 16:58:23.029 DEBUG [6383]: Connecting to database... -- 16:58:23.029 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:23.029 SQL [6383]: pgsql_db_connect() -- 16:58:23.033 DEBUG [6383]: Database connection successful -- 16:58:23.033 INFO [6383]: _SERVER found -- 16:58:23.033 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 16:58:23.033 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:58:23.033 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nbdq070c565j93l9va6snj2p8o7m3knn -- 16:58:23.033 INFO [6383]: QUERY_STRING = /member/page -- 16:58:23.033 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:58:23.073 INFO [6383]: COREGRADE is stopping... -- 16:58:23.073 DEBUG [6383]: Closing database connection -- 16:58:23.073 SQL [6383]: pgsql_close() -- 16:58:23.291 INFO [6383]: COREGRADE is starting... -- 16:58:23.291 INFO [6383]: Version from config: 1.0 -- 16:58:23.291 DEBUG [6383]: Connecting to database... -- 16:58:23.291 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:23.291 SQL [6383]: pgsql_db_connect() -- 16:58:23.295 DEBUG [6383]: Database connection successful -- 16:58:23.295 INFO [6383]: _SERVER found -- 16:58:23.295 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 16:58:23.295 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:58:23.295 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nbdq070c565j93l9va6snj2p8o7m3knn -- 16:58:23.295 INFO [6383]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:58:23.295 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:58:23.306 INFO [6383]: COREGRADE is stopping... -- 16:58:23.306 DEBUG [6383]: Closing database connection -- 16:58:23.306 SQL [6383]: pgsql_close() -- 17:00:04.221 INFO [6409]: COREGRADE is starting... -- 17:00:04.221 INFO [6409]: Version from config: 1.0 -- 17:00:04.221 DEBUG [6409]: Connecting to database... -- 17:00:04.221 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:04.221 SQL [6409]: pgsql_db_connect() -- 17:00:04.225 DEBUG [6409]: Database connection successful -- 17:00:04.225 INFO [6409]: _SERVER found -- 17:00:04.225 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 17:00:04.225 INFO [6409]: SERVER_NAME = oameye.works.coregrade.com -- 17:00:04.225 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=4h2l41epe9njvt80pgefa4ut5qev5kkg -- 17:00:04.226 INFO [6409]: QUERY_STRING = /member -- 17:00:04.226 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:00:04.262 INFO [6409]: COREGRADE is stopping... -- 17:00:04.262 DEBUG [6409]: Closing database connection -- 17:00:04.262 SQL [6409]: pgsql_close() -- 17:00:04.559 INFO [6409]: COREGRADE is starting... -- 17:00:04.559 INFO [6409]: Version from config: 1.0 -- 17:00:04.559 DEBUG [6409]: Connecting to database... -- 17:00:04.559 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:04.559 SQL [6409]: pgsql_db_connect() -- 17:00:04.563 DEBUG [6409]: Database connection successful -- 17:00:04.563 INFO [6409]: _SERVER found -- 17:00:04.563 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 17:00:04.563 INFO [6409]: SERVER_NAME = oameye.works.coregrade.com -- 17:00:04.563 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=4h2l41epe9njvt80pgefa4ut5qev5kkg -- 17:00:04.563 INFO [6409]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:00:04.563 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:00:04.575 INFO [6409]: COREGRADE is stopping... -- 17:00:04.575 DEBUG [6409]: Closing database connection -- 17:00:04.575 SQL [6409]: pgsql_close() -- 17:00:04.591 INFO [7017]: COREGRADE is starting... -- 17:00:04.591 INFO [7017]: Version from config: 1.0 -- 17:00:04.591 DEBUG [7017]: Connecting to database... -- 17:00:04.591 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:04.591 SQL [7017]: pgsql_db_connect() -- 17:00:04.595 DEBUG [7017]: Database connection successful -- 17:00:04.595 INFO [7017]: _SERVER found -- 17:00:04.595 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 17:00:04.595 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 17:00:04.595 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=4h2l41epe9njvt80pgefa4ut5qev5kkg -- 17:00:04.595 INFO [7017]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:00:04.595 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:00:04.607 INFO [7017]: COREGRADE is stopping... -- 17:00:04.607 DEBUG [7017]: Closing database connection -- 17:00:04.607 SQL [7017]: pgsql_close() -- 17:00:06.357 INFO [7017]: COREGRADE is starting... -- 17:00:06.357 INFO [7017]: Version from config: 1.0 -- 17:00:06.357 DEBUG [7017]: Connecting to database... -- 17:00:06.357 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:06.357 SQL [7017]: pgsql_db_connect() -- 17:00:06.361 DEBUG [7017]: Database connection successful -- 17:00:06.361 INFO [7017]: _SERVER found -- 17:00:06.361 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 17:00:06.361 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 17:00:06.361 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=4h2l41epe9njvt80pgefa4ut5qev5kkg -- 17:00:06.361 INFO [7017]: QUERY_STRING = /member/page -- 17:00:06.361 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:00:06.400 INFO [7017]: COREGRADE is stopping... -- 17:00:06.400 DEBUG [7017]: Closing database connection -- 17:00:06.400 SQL [7017]: pgsql_close() -- 17:00:06.565 INFO [7017]: COREGRADE is starting... -- 17:00:06.565 INFO [7017]: Version from config: 1.0 -- 17:00:06.565 DEBUG [7017]: Connecting to database... -- 17:00:06.565 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:06.565 SQL [7017]: pgsql_db_connect() -- 17:00:06.569 DEBUG [7017]: Database connection successful -- 17:00:06.569 INFO [7017]: _SERVER found -- 17:00:06.569 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 17:00:06.569 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 17:00:06.569 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=4h2l41epe9njvt80pgefa4ut5qev5kkg -- 17:00:06.569 INFO [7017]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:00:06.569 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:00:06.580 INFO [7017]: COREGRADE is stopping... -- 17:00:06.580 DEBUG [7017]: Closing database connection -- 17:00:06.580 SQL [7017]: pgsql_close() -- 17:00:06.718 INFO [7017]: COREGRADE is starting... -- 17:00:06.718 INFO [7017]: Version from config: 1.0 -- 17:00:06.718 DEBUG [7017]: Connecting to database... -- 17:00:06.718 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:06.718 SQL [7017]: pgsql_db_connect() -- 17:00:06.722 DEBUG [7017]: Database connection successful -- 17:00:06.722 INFO [7017]: _SERVER found -- 17:00:06.722 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 17:00:06.722 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 17:00:06.722 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=4h2l41epe9njvt80pgefa4ut5qev5kkg -- 17:00:06.722 INFO [7017]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:00:06.722 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:00:06.733 INFO [7017]: COREGRADE is stopping... -- 17:00:06.733 DEBUG [7017]: Closing database connection -- 17:00:06.733 SQL [7017]: pgsql_close() -- 17:00:10.769 INFO [7017]: COREGRADE is starting... -- 17:00:10.769 INFO [7017]: Version from config: 1.0 -- 17:00:10.769 DEBUG [7017]: Connecting to database... -- 17:00:10.769 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:10.769 SQL [7017]: pgsql_db_connect() -- 17:00:10.773 DEBUG [7017]: Database connection successful -- 17:00:10.773 INFO [7017]: _SERVER found -- 17:00:10.773 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 17:00:10.773 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 17:00:10.773 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=4h2l41epe9njvt80pgefa4ut5qev5kkg -- 17:00:10.773 INFO [7017]: QUERY_STRING = /member/configure -- 17:00:10.773 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:00:10.808 INFO [7017]: COREGRADE is stopping... -- 17:00:10.809 DEBUG [7017]: Closing database connection -- 17:00:10.809 SQL [7017]: pgsql_close() -- 17:00:11.013 INFO [7017]: COREGRADE is starting... -- 17:00:11.013 INFO [7017]: Version from config: 1.0 -- 17:00:11.013 DEBUG [7017]: Connecting to database... -- 17:00:11.013 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:11.013 SQL [7017]: pgsql_db_connect() -- 17:00:11.017 DEBUG [7017]: Database connection successful -- 17:00:11.017 INFO [7017]: _SERVER found -- 17:00:11.017 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 17:00:11.017 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 17:00:11.017 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=4h2l41epe9njvt80pgefa4ut5qev5kkg -- 17:00:11.017 INFO [7017]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:00:11.017 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:00:11.028 INFO [7017]: COREGRADE is stopping... -- 17:00:11.028 DEBUG [7017]: Closing database connection -- 17:00:11.028 SQL [7017]: pgsql_close() -- 17:00:11.154 INFO [7017]: COREGRADE is starting... -- 17:00:11.155 INFO [7017]: Version from config: 1.0 -- 17:00:11.155 DEBUG [7017]: Connecting to database... -- 17:00:11.155 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:11.155 SQL [7017]: pgsql_db_connect() -- 17:00:11.159 DEBUG [7017]: Database connection successful -- 17:00:11.159 INFO [7017]: _SERVER found -- 17:00:11.159 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 17:00:11.159 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 17:00:11.159 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=4h2l41epe9njvt80pgefa4ut5qev5kkg -- 17:00:11.159 INFO [7017]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:00:11.159 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:00:11.170 INFO [7017]: COREGRADE is stopping... -- 17:00:11.170 DEBUG [7017]: Closing database connection -- 17:00:11.170 SQL [7017]: pgsql_close() -- 17:00:13.472 INFO [7017]: COREGRADE is starting... -- 17:00:13.472 INFO [7017]: Version from config: 1.0 -- 17:00:13.472 DEBUG [7017]: Connecting to database... -- 17:00:13.472 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:13.472 SQL [7017]: pgsql_db_connect() -- 17:00:13.476 DEBUG [7017]: Database connection successful -- 17:00:13.476 INFO [7017]: _SERVER found -- 17:00:13.476 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 17:00:13.476 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 17:00:13.476 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=4h2l41epe9njvt80pgefa4ut5qev5kkg -- 17:00:13.477 INFO [7017]: QUERY_STRING = /member/viewSharePage -- 17:00:13.477 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:00:13.507 INFO [7017]: COREGRADE is stopping... -- 17:00:13.507 DEBUG [7017]: Closing database connection -- 17:00:13.507 SQL [7017]: pgsql_close() -- 17:00:45.207 INFO [6385]: COREGRADE is starting... -- 17:00:45.208 INFO [6385]: Version from config: 1.0 -- 17:00:45.208 DEBUG [6385]: Connecting to database... -- 17:00:45.208 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:45.208 SQL [6385]: pgsql_db_connect() -- 17:00:45.212 DEBUG [6385]: Database connection successful -- 17:00:45.212 INFO [6385]: _SERVER found -- 17:00:45.212 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 17:00:45.212 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 17:00:45.212 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=4h2l41epe9njvt80pgefa4ut5qev5kkg -- 17:00:45.212 INFO [6385]: QUERY_STRING = /member/viewSharePage -- 17:00:45.212 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:00:45.243 INFO [6385]: COREGRADE is stopping... -- 17:00:45.243 DEBUG [6385]: Closing database connection -- 17:00:45.243 SQL [6385]: pgsql_close() -- 17:02:01.763 INFO [6381]: COREGRADE is starting... -- 17:02:01.764 INFO [6381]: Version from config: 1.0 -- 17:02:01.764 DEBUG [6381]: Connecting to database... -- 17:02:01.764 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:02:01.764 SQL [6381]: pgsql_db_connect() -- 17:02:01.768 DEBUG [6381]: Database connection successful -- 17:02:01.768 INFO [6381]: _SERVER found -- 17:02:01.768 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 17:02:01.768 INFO [6381]: SERVER_NAME = oameye.works.coregrade.com -- 17:02:01.768 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=4h2l41epe9njvt80pgefa4ut5qev5kkg -- 17:02:01.768 INFO [6381]: QUERY_STRING = /member/viewSharePage -- 17:02:01.768 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:02:01.800 INFO [6381]: COREGRADE is stopping... -- 17:02:01.800 DEBUG [6381]: Closing database connection -- 17:02:01.800 SQL [6381]: pgsql_close() -- 17:06:02.682 INFO [6384]: COREGRADE is starting... -- 17:06:02.682 INFO [6384]: Version from config: 1.0 -- 17:06:02.682 DEBUG [6384]: Connecting to database... -- 17:06:02.682 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:02.682 SQL [6384]: pgsql_db_connect() -- 17:06:02.686 DEBUG [6384]: Database connection successful -- 17:06:02.686 INFO [6384]: _SERVER found -- 17:06:02.686 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 17:06:02.686 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:02.686 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=4h2l41epe9njvt80pgefa4ut5qev5kkg -- 17:06:02.686 INFO [6384]: QUERY_STRING = /member/configure -- 17:06:02.686 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:06:02.725 INFO [6384]: COREGRADE is stopping... -- 17:06:02.725 DEBUG [6384]: Closing database connection -- 17:06:02.725 SQL [6384]: pgsql_close() -- 17:06:02.887 INFO [6384]: COREGRADE is starting... -- 17:06:02.888 INFO [6384]: Version from config: 1.0 -- 17:06:02.888 DEBUG [6384]: Connecting to database... -- 17:06:02.888 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:02.888 SQL [6384]: pgsql_db_connect() -- 17:06:02.892 DEBUG [6384]: Database connection successful -- 17:06:02.892 INFO [6384]: _SERVER found -- 17:06:02.892 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 17:06:02.892 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:02.892 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=pidbvb38alpq6b2sbugreud8pg5sonvt -- 17:06:02.892 INFO [6384]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:06:02.892 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:06:02.903 INFO [6384]: COREGRADE is stopping... -- 17:06:02.903 DEBUG [6384]: Closing database connection -- 17:06:02.903 SQL [6384]: pgsql_close() -- 17:06:03.106 INFO [6384]: COREGRADE is starting... -- 17:06:03.106 INFO [6384]: Version from config: 1.0 -- 17:06:03.106 DEBUG [6384]: Connecting to database... -- 17:06:03.106 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:03.106 SQL [6384]: pgsql_db_connect() -- 17:06:03.110 DEBUG [6384]: Database connection successful -- 17:06:03.110 INFO [6384]: _SERVER found -- 17:06:03.110 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 17:06:03.110 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:03.110 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=pidbvb38alpq6b2sbugreud8pg5sonvt -- 17:06:03.110 INFO [6384]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:06:03.110 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:06:03.121 INFO [6384]: COREGRADE is stopping... -- 17:06:03.121 DEBUG [6384]: Closing database connection -- 17:06:03.121 SQL [6384]: pgsql_close() -- 17:06:16.304 INFO [7159]: COREGRADE is starting... -- 17:06:16.305 INFO [7159]: Version from config: 1.0 -- 17:06:16.305 DEBUG [7159]: Connecting to database... -- 17:06:16.305 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:16.305 SQL [7159]: pgsql_db_connect() -- 17:06:16.309 DEBUG [7159]: Database connection successful -- 17:06:16.309 INFO [7159]: _SERVER found -- 17:06:16.309 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 17:06:16.309 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:16.309 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=pidbvb38alpq6b2sbugreud8pg5sonvt -- 17:06:16.309 INFO [7159]: QUERY_STRING = /member/configure -- 17:06:16.309 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:06:16.345 INFO [7159]: COREGRADE is stopping... -- 17:06:16.346 DEBUG [7159]: Closing database connection -- 17:06:16.346 SQL [7159]: pgsql_close() -- 17:06:16.897 INFO [7160]: COREGRADE is starting... -- 17:06:16.897 INFO [7160]: Version from config: 1.0 -- 17:06:16.897 DEBUG [7160]: Connecting to database... -- 17:06:16.897 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:16.897 SQL [7160]: pgsql_db_connect() -- 17:06:16.902 DEBUG [7160]: Database connection successful -- 17:06:16.902 INFO [7160]: _SERVER found -- 17:06:16.902 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 17:06:16.902 INFO [7160]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:16.902 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=pidbvb38alpq6b2sbugreud8pg5sonvt -- 17:06:16.902 INFO [7160]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:06:16.902 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:06:16.913 INFO [7160]: COREGRADE is stopping... -- 17:06:16.913 DEBUG [7160]: Closing database connection -- 17:06:16.913 SQL [7160]: pgsql_close() -- 17:06:17.444 INFO [6383]: COREGRADE is starting... -- 17:06:17.445 INFO [6383]: Version from config: 1.0 -- 17:06:17.445 DEBUG [6383]: Connecting to database... -- 17:06:17.445 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:17.445 SQL [6383]: pgsql_db_connect() -- 17:06:17.449 DEBUG [6383]: Database connection successful -- 17:06:17.449 INFO [6383]: _SERVER found -- 17:06:17.449 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 17:06:17.449 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:17.449 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=pidbvb38alpq6b2sbugreud8pg5sonvt -- 17:06:17.449 INFO [6383]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:06:17.449 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:06:17.460 INFO [6383]: COREGRADE is stopping... -- 17:06:17.460 DEBUG [6383]: Closing database connection -- 17:06:17.460 SQL [6383]: pgsql_close() -- 17:07:53.331 INFO [6409]: COREGRADE is starting... -- 17:07:53.331 INFO [6409]: Version from config: 1.0 -- 17:07:53.331 DEBUG [6409]: Connecting to database... -- 17:07:53.331 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:53.331 SQL [6409]: pgsql_db_connect() -- 17:07:53.335 DEBUG [6409]: Database connection successful -- 17:07:53.335 INFO [6409]: _SERVER found -- 17:07:53.335 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 17:07:53.335 INFO [6409]: SERVER_NAME = oameye.works.coregrade.com -- 17:07:53.335 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=pidbvb38alpq6b2sbugreud8pg5sonvt -- 17:07:53.335 INFO [6409]: QUERY_STRING = /member/configure -- 17:07:53.335 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:07:53.372 INFO [6409]: COREGRADE is stopping... -- 17:07:53.372 DEBUG [6409]: Closing database connection -- 17:07:53.372 SQL [6409]: pgsql_close() -- 17:07:53.547 INFO [6409]: COREGRADE is starting... -- 17:07:53.547 INFO [6409]: Version from config: 1.0 -- 17:07:53.547 DEBUG [6409]: Connecting to database... -- 17:07:53.547 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:53.547 SQL [6409]: pgsql_db_connect() -- 17:07:53.551 DEBUG [6409]: Database connection successful -- 17:07:53.551 INFO [6409]: _SERVER found -- 17:07:53.551 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 17:07:53.551 INFO [6409]: SERVER_NAME = oameye.works.coregrade.com -- 17:07:53.551 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=pidbvb38alpq6b2sbugreud8pg5sonvt -- 17:07:53.551 INFO [6409]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:07:53.551 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:07:53.562 INFO [6409]: COREGRADE is stopping... -- 17:07:53.562 DEBUG [6409]: Closing database connection -- 17:07:53.562 SQL [6409]: pgsql_close() -- 17:07:53.946 INFO [6409]: COREGRADE is starting... -- 17:07:53.946 INFO [6409]: Version from config: 1.0 -- 17:07:53.946 DEBUG [6409]: Connecting to database... -- 17:07:53.946 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:53.946 SQL [6409]: pgsql_db_connect() -- 17:07:53.950 DEBUG [6409]: Database connection successful -- 17:07:53.950 INFO [6409]: _SERVER found -- 17:07:53.950 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 17:07:53.950 INFO [6409]: SERVER_NAME = oameye.works.coregrade.com -- 17:07:53.950 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=pidbvb38alpq6b2sbugreud8pg5sonvt -- 17:07:53.950 INFO [6409]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:07:53.950 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:07:53.961 INFO [6409]: COREGRADE is stopping... -- 17:07:53.961 DEBUG [6409]: Closing database connection -- 17:07:53.961 SQL [6409]: pgsql_close() -- 17:08:36.108 INFO [6385]: COREGRADE is starting... -- 17:08:36.109 INFO [6385]: Version from config: 1.0 -- 17:08:36.109 DEBUG [6385]: Connecting to database... -- 17:08:36.109 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:08:36.109 SQL [6385]: pgsql_db_connect() -- 17:08:36.113 DEBUG [6385]: Database connection successful -- 17:08:36.113 INFO [6385]: _SERVER found -- 17:08:36.113 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 17:08:36.113 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 17:08:36.113 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=pidbvb38alpq6b2sbugreud8pg5sonvt -- 17:08:36.113 INFO [6385]: QUERY_STRING = /member/configure -- 17:08:36.113 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:08:36.149 INFO [6385]: COREGRADE is stopping... -- 17:08:36.149 DEBUG [6385]: Closing database connection -- 17:08:36.149 SQL [6385]: pgsql_close() -- 17:08:36.302 INFO [6385]: COREGRADE is starting... -- 17:08:36.302 INFO [6385]: Version from config: 1.0 -- 17:08:36.302 DEBUG [6385]: Connecting to database... -- 17:08:36.302 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:08:36.302 SQL [6385]: pgsql_db_connect() -- 17:08:36.306 DEBUG [6385]: Database connection successful -- 17:08:36.306 INFO [6385]: _SERVER found -- 17:08:36.306 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 17:08:36.306 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 17:08:36.306 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=pidbvb38alpq6b2sbugreud8pg5sonvt -- 17:08:36.306 INFO [6385]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:08:36.306 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:08:36.317 INFO [6385]: COREGRADE is stopping... -- 17:08:36.317 DEBUG [6385]: Closing database connection -- 17:08:36.317 SQL [6385]: pgsql_close() -- 17:08:36.540 INFO [6385]: COREGRADE is starting... -- 17:08:36.540 INFO [6385]: Version from config: 1.0 -- 17:08:36.540 DEBUG [6385]: Connecting to database... -- 17:08:36.540 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:08:36.540 SQL [6385]: pgsql_db_connect() -- 17:08:36.544 DEBUG [6385]: Database connection successful -- 17:08:36.544 INFO [6385]: _SERVER found -- 17:08:36.544 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 17:08:36.544 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 17:08:36.544 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=pidbvb38alpq6b2sbugreud8pg5sonvt -- 17:08:36.544 INFO [6385]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:08:36.544 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:08:36.555 INFO [6385]: COREGRADE is stopping... -- 17:08:36.555 DEBUG [6385]: Closing database connection -- 17:08:36.555 SQL [6385]: pgsql_close() -- 17:08:40.257 INFO [6385]: COREGRADE is starting... -- 17:08:40.257 INFO [6385]: Version from config: 1.0 -- 17:08:40.257 DEBUG [6385]: Connecting to database... -- 17:08:40.257 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:08:40.257 SQL [6385]: pgsql_db_connect() -- 17:08:40.261 DEBUG [6385]: Database connection successful -- 17:08:40.261 INFO [6385]: _SERVER found -- 17:08:40.261 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 17:08:40.261 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 17:08:40.261 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=pidbvb38alpq6b2sbugreud8pg5sonvt -- 17:08:40.261 INFO [6385]: QUERY_STRING = /member/deletePageAction -- 17:08:40.261 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:08:40.292 INFO [6385]: COREGRADE is stopping... -- 17:08:40.292 DEBUG [6385]: Closing database connection -- 17:08:40.292 SQL [6385]: pgsql_close() -- 17:30:39.926 INFO [6384]: COREGRADE is starting... -- 17:30:39.926 INFO [6384]: Version from config: 1.0 -- 17:30:39.926 DEBUG [6384]: Connecting to database... -- 17:30:39.926 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:30:39.926 SQL [6384]: pgsql_db_connect() -- 17:30:39.931 DEBUG [6384]: Database connection successful -- 17:30:39.931 INFO [6384]: _SERVER found -- 17:30:39.931 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 17:30:39.931 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 17:30:39.931 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=pidbvb38alpq6b2sbugreud8pg5sonvt -- 17:30:39.931 INFO [6384]: QUERY_STRING = /member -- 17:30:39.931 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:30:39.970 INFO [6384]: COREGRADE is stopping... -- 17:30:39.971 DEBUG [6384]: Closing database connection -- 17:30:39.971 SQL [6384]: pgsql_close() -- 17:30:40.327 INFO [6384]: COREGRADE is starting... -- 17:30:40.327 INFO [6384]: Version from config: 1.0 -- 17:30:40.327 DEBUG [6384]: Connecting to database... -- 17:30:40.327 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:30:40.327 SQL [6384]: pgsql_db_connect() -- 17:30:40.331 DEBUG [6384]: Database connection successful -- 17:30:40.331 INFO [6384]: _SERVER found -- 17:30:40.331 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 17:30:40.331 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 17:30:40.331 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=gk1iaakvoi4vgca88cnid01qnauvjd50 -- 17:30:40.331 INFO [6384]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:30:40.331 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:30:40.342 INFO [6384]: COREGRADE is stopping... -- 17:30:40.342 DEBUG [6384]: Closing database connection -- 17:30:40.342 SQL [6384]: pgsql_close() -- 17:30:40.383 INFO [6384]: COREGRADE is starting... -- 17:30:40.383 INFO [6384]: Version from config: 1.0 -- 17:30:40.383 DEBUG [6384]: Connecting to database... -- 17:30:40.383 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:30:40.383 SQL [6384]: pgsql_db_connect() -- 17:30:40.387 DEBUG [6384]: Database connection successful -- 17:30:40.387 INFO [6384]: _SERVER found -- 17:30:40.387 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 17:30:40.387 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 17:30:40.387 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=gk1iaakvoi4vgca88cnid01qnauvjd50 -- 17:30:40.387 INFO [6384]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:30:40.387 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:30:40.398 INFO [6384]: COREGRADE is stopping... -- 17:30:40.398 DEBUG [6384]: Closing database connection -- 17:30:40.398 SQL [6384]: pgsql_close() -- 17:30:48.761 INFO [6382]: COREGRADE is starting... -- 17:30:48.761 INFO [6382]: Version from config: 1.0 -- 17:30:48.761 DEBUG [6382]: Connecting to database... -- 17:30:48.762 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:30:48.762 SQL [6382]: pgsql_db_connect() -- 17:30:48.766 DEBUG [6382]: Database connection successful -- 17:30:48.766 INFO [6382]: _SERVER found -- 17:30:48.766 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 17:30:48.766 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 17:30:48.766 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=gk1iaakvoi4vgca88cnid01qnauvjd50 -- 17:30:48.766 INFO [6382]: QUERY_STRING = /member/page -- 17:30:48.766 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:30:48.808 INFO [6382]: COREGRADE is stopping... -- 17:30:48.808 DEBUG [6382]: Closing database connection -- 17:30:48.808 SQL [6382]: pgsql_close() -- 17:30:48.956 INFO [6382]: COREGRADE is starting... -- 17:30:48.957 INFO [6382]: Version from config: 1.0 -- 17:30:48.957 DEBUG [6382]: Connecting to database... -- 17:30:48.957 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:30:48.957 SQL [6382]: pgsql_db_connect() -- 17:30:48.961 DEBUG [6382]: Database connection successful -- 17:30:48.961 INFO [6382]: _SERVER found -- 17:30:48.961 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 17:30:48.961 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 17:30:48.961 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=gk1iaakvoi4vgca88cnid01qnauvjd50 -- 17:30:48.961 INFO [6382]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:30:48.961 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:30:48.972 INFO [6382]: COREGRADE is stopping... -- 17:30:48.972 DEBUG [6382]: Closing database connection -- 17:30:48.972 SQL [6382]: pgsql_close() -- 17:30:49.128 INFO [6382]: COREGRADE is starting... -- 17:30:49.128 INFO [6382]: Version from config: 1.0 -- 17:30:49.128 DEBUG [6382]: Connecting to database... -- 17:30:49.128 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:30:49.128 SQL [6382]: pgsql_db_connect() -- 17:30:49.132 DEBUG [6382]: Database connection successful -- 17:30:49.132 INFO [6382]: _SERVER found -- 17:30:49.132 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 17:30:49.132 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 17:30:49.132 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=gk1iaakvoi4vgca88cnid01qnauvjd50 -- 17:30:49.132 INFO [6382]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:30:49.132 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:30:49.143 INFO [6382]: COREGRADE is stopping... -- 17:30:49.143 DEBUG [6382]: Closing database connection -- 17:30:49.143 SQL [6382]: pgsql_close() -- 17:30:53.661 INFO [6382]: COREGRADE is starting... -- 17:30:53.661 INFO [6382]: Version from config: 1.0 -- 17:30:53.661 DEBUG [6382]: Connecting to database... -- 17:30:53.661 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:30:53.661 SQL [6382]: pgsql_db_connect() -- 17:30:53.665 DEBUG [6382]: Database connection successful -- 17:30:53.665 INFO [6382]: _SERVER found -- 17:30:53.665 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 17:30:53.665 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 17:30:53.665 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=gk1iaakvoi4vgca88cnid01qnauvjd50 -- 17:30:53.665 INFO [6382]: QUERY_STRING = /member/configure -- 17:30:53.665 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:30:53.705 INFO [6382]: COREGRADE is stopping... -- 17:30:53.705 DEBUG [6382]: Closing database connection -- 17:30:53.705 SQL [6382]: pgsql_close() -- 17:30:53.876 INFO [6382]: COREGRADE is starting... -- 17:30:53.876 INFO [6382]: Version from config: 1.0 -- 17:30:53.876 DEBUG [6382]: Connecting to database... -- 17:30:53.876 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:30:53.876 SQL [6382]: pgsql_db_connect() -- 17:30:53.880 DEBUG [6382]: Database connection successful -- 17:30:53.880 INFO [6382]: _SERVER found -- 17:30:53.880 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 17:30:53.880 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 17:30:53.880 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=gk1iaakvoi4vgca88cnid01qnauvjd50 -- 17:30:53.880 INFO [6382]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:30:53.880 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:30:53.891 INFO [6382]: COREGRADE is stopping... -- 17:30:53.891 DEBUG [6382]: Closing database connection -- 17:30:53.891 SQL [6382]: pgsql_close() -- 17:30:54.100 INFO [6382]: COREGRADE is starting... -- 17:30:54.101 INFO [6382]: Version from config: 1.0 -- 17:30:54.101 DEBUG [6382]: Connecting to database... -- 17:30:54.101 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:30:54.101 SQL [6382]: pgsql_db_connect() -- 17:30:54.105 DEBUG [6382]: Database connection successful -- 17:30:54.105 INFO [6382]: _SERVER found -- 17:30:54.105 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 17:30:54.105 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 17:30:54.105 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=gk1iaakvoi4vgca88cnid01qnauvjd50 -- 17:30:54.105 INFO [6382]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:30:54.105 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:30:54.116 INFO [6382]: COREGRADE is stopping... -- 17:30:54.116 DEBUG [6382]: Closing database connection -- 17:30:54.116 SQL [6382]: pgsql_close() -- 17:30:59.501 INFO [6405]: COREGRADE is starting... -- 17:30:59.501 INFO [6405]: Version from config: 1.0 -- 17:30:59.501 DEBUG [6405]: Connecting to database... -- 17:30:59.501 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:30:59.501 SQL [6405]: pgsql_db_connect() -- 17:30:59.505 DEBUG [6405]: Database connection successful -- 17:30:59.505 INFO [6405]: _SERVER found -- 17:30:59.505 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 17:30:59.505 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 17:30:59.505 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=gk1iaakvoi4vgca88cnid01qnauvjd50 -- 17:30:59.505 INFO [6405]: QUERY_STRING = /member/deletePageAction -- 17:30:59.505 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:30:59.536 INFO [6405]: COREGRADE is stopping... -- 17:30:59.536 DEBUG [6405]: Closing database connection -- 17:30:59.536 SQL [6405]: pgsql_close() -- 17:31:06.790 INFO [7159]: COREGRADE is starting... -- 17:31:06.790 INFO [7159]: Version from config: 1.0 -- 17:31:06.790 DEBUG [7159]: Connecting to database... -- 17:31:06.790 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:06.790 SQL [7159]: pgsql_db_connect() -- 17:31:06.794 DEBUG [7159]: Database connection successful -- 17:31:06.794 INFO [7159]: _SERVER found -- 17:31:06.794 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 17:31:06.794 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 17:31:06.794 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=gk1iaakvoi4vgca88cnid01qnauvjd50 -- 17:31:06.794 INFO [7159]: QUERY_STRING = /member/configure -- 17:31:06.794 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:31:06.831 INFO [7159]: COREGRADE is stopping... -- 17:31:06.831 DEBUG [7159]: Closing database connection -- 17:31:06.831 SQL [7159]: pgsql_close() -- 17:31:07.099 INFO [7159]: COREGRADE is starting... -- 17:31:07.100 INFO [7159]: Version from config: 1.0 -- 17:31:07.100 DEBUG [7159]: Connecting to database... -- 17:31:07.100 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:07.100 SQL [7159]: pgsql_db_connect() -- 17:31:07.104 DEBUG [7159]: Database connection successful -- 17:31:07.104 INFO [7159]: _SERVER found -- 17:31:07.104 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 17:31:07.104 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 17:31:07.104 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=gk1iaakvoi4vgca88cnid01qnauvjd50 -- 17:31:07.104 INFO [7159]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:31:07.104 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:31:07.115 INFO [7159]: COREGRADE is stopping... -- 17:31:07.115 DEBUG [7159]: Closing database connection -- 17:31:07.115 SQL [7159]: pgsql_close() -- 17:31:07.570 INFO [7159]: COREGRADE is starting... -- 17:31:07.570 INFO [7159]: Version from config: 1.0 -- 17:31:07.570 DEBUG [7159]: Connecting to database... -- 17:31:07.570 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:07.570 SQL [7159]: pgsql_db_connect() -- 17:31:07.574 DEBUG [7159]: Database connection successful -- 17:31:07.574 INFO [7159]: _SERVER found -- 17:31:07.574 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 17:31:07.574 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 17:31:07.574 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=gk1iaakvoi4vgca88cnid01qnauvjd50 -- 17:31:07.574 INFO [7159]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:31:07.574 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:31:07.586 INFO [7159]: COREGRADE is stopping... -- 17:31:07.586 DEBUG [7159]: Closing database connection -- 17:31:07.586 SQL [7159]: pgsql_close() -- 17:31:28.358 INFO [7160]: COREGRADE is starting... -- 17:31:28.359 INFO [7160]: Version from config: 1.0 -- 17:31:28.359 DEBUG [7160]: Connecting to database... -- 17:31:28.359 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:28.359 SQL [7160]: pgsql_db_connect() -- 17:31:28.363 DEBUG [7160]: Database connection successful -- 17:31:28.363 INFO [7160]: _SERVER found -- 17:31:28.363 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 17:31:28.363 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:31:28.363 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=nbdq070c565j93l9va6snj2p8o7m3knn -- 17:31:28.363 INFO [7160]: QUERY_STRING = /member/configure -- 17:31:28.363 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:31:28.404 INFO [7160]: COREGRADE is stopping... -- 17:31:28.405 DEBUG [7160]: Closing database connection -- 17:31:28.405 SQL [7160]: pgsql_close() -- 17:31:28.701 INFO [7160]: COREGRADE is starting... -- 17:31:28.701 INFO [7160]: Version from config: 1.0 -- 17:31:28.701 DEBUG [7160]: Connecting to database... -- 17:31:28.701 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:28.701 SQL [7160]: pgsql_db_connect() -- 17:31:28.705 DEBUG [7160]: Database connection successful -- 17:31:28.705 INFO [7160]: _SERVER found -- 17:31:28.705 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 17:31:28.705 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:31:28.705 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5b01pdn85bvpphv63b6gmsjgl6nfp9ar -- 17:31:28.705 INFO [7160]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:31:28.705 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:31:28.716 INFO [7160]: COREGRADE is stopping... -- 17:31:28.716 DEBUG [7160]: Closing database connection -- 17:31:28.716 SQL [7160]: pgsql_close() -- 17:31:28.940 INFO [7160]: COREGRADE is starting... -- 17:31:28.941 INFO [7160]: Version from config: 1.0 -- 17:31:28.941 DEBUG [7160]: Connecting to database... -- 17:31:28.941 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:28.941 SQL [7160]: pgsql_db_connect() -- 17:31:28.945 DEBUG [7160]: Database connection successful -- 17:31:28.945 INFO [7160]: _SERVER found -- 17:31:28.945 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 17:31:28.945 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:31:28.945 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5b01pdn85bvpphv63b6gmsjgl6nfp9ar -- 17:31:28.945 INFO [7160]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:31:28.945 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:31:28.956 INFO [7160]: COREGRADE is stopping... -- 17:31:28.956 DEBUG [7160]: Closing database connection -- 17:31:28.956 SQL [7160]: pgsql_close() -- 17:31:40.123 INFO [6383]: COREGRADE is starting... -- 17:31:40.123 INFO [6383]: Version from config: 1.0 -- 17:31:40.123 DEBUG [6383]: Connecting to database... -- 17:31:40.123 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:40.123 SQL [6383]: pgsql_db_connect() -- 17:31:40.127 DEBUG [6383]: Database connection successful -- 17:31:40.127 INFO [6383]: _SERVER found -- 17:31:40.127 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 17:31:40.127 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:31:40.127 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5b01pdn85bvpphv63b6gmsjgl6nfp9ar -- 17:31:40.127 INFO [6383]: QUERY_STRING = /member/deletePageAction -- 17:31:40.127 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:31:40.158 INFO [6383]: COREGRADE is stopping... -- 17:31:40.158 DEBUG [6383]: Closing database connection -- 17:31:40.158 SQL [6383]: pgsql_close() -- 17:32:07.809 INFO [6409]: COREGRADE is starting... -- 17:32:07.809 INFO [6409]: Version from config: 1.0 -- 17:32:07.809 DEBUG [6409]: Connecting to database... -- 17:32:07.810 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:32:07.810 SQL [6409]: pgsql_db_connect() -- 17:32:07.813 DEBUG [6409]: Database connection successful -- 17:32:07.813 INFO [6409]: _SERVER found -- 17:32:07.813 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 17:32:07.813 INFO [6409]: SERVER_NAME = oameye.works.coregrade.com -- 17:32:07.813 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=gk1iaakvoi4vgca88cnid01qnauvjd50 -- 17:32:07.813 INFO [6409]: QUERY_STRING = /member/deletePageAction -- 17:32:07.813 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:32:07.845 INFO [6409]: COREGRADE is stopping... -- 17:32:07.845 DEBUG [6409]: Closing database connection -- 17:32:07.845 SQL [6409]: pgsql_close() -- 17:33:09.346 INFO [7017]: COREGRADE is starting... -- 17:33:09.346 INFO [7017]: Version from config: 1.0 -- 17:33:09.346 DEBUG [7017]: Connecting to database... -- 17:33:09.346 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:09.346 SQL [7017]: pgsql_db_connect() -- 17:33:09.350 DEBUG [7017]: Database connection successful -- 17:33:09.350 INFO [7017]: _SERVER found -- 17:33:09.350 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 17:33:09.350 INFO [7017]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:33:09.350 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5b01pdn85bvpphv63b6gmsjgl6nfp9ar -- 17:33:09.350 INFO [7017]: QUERY_STRING = /member -- 17:33:09.350 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:33:09.390 INFO [7017]: COREGRADE is stopping... -- 17:33:09.390 DEBUG [7017]: Closing database connection -- 17:33:09.390 SQL [7017]: pgsql_close() -- 17:33:09.736 INFO [7017]: COREGRADE is starting... -- 17:33:09.736 INFO [7017]: Version from config: 1.0 -- 17:33:09.736 DEBUG [7017]: Connecting to database... -- 17:33:09.736 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:09.736 SQL [7017]: pgsql_db_connect() -- 17:33:09.740 DEBUG [7017]: Database connection successful -- 17:33:09.740 INFO [7017]: _SERVER found -- 17:33:09.740 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 17:33:09.740 INFO [7017]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:33:09.740 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5b01pdn85bvpphv63b6gmsjgl6nfp9ar -- 17:33:09.740 INFO [7017]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:33:09.740 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:33:09.751 INFO [7017]: COREGRADE is stopping... -- 17:33:09.751 DEBUG [7017]: Closing database connection -- 17:33:09.751 SQL [7017]: pgsql_close() -- 17:33:09.764 INFO [6381]: COREGRADE is starting... -- 17:33:09.764 INFO [6381]: Version from config: 1.0 -- 17:33:09.764 DEBUG [6381]: Connecting to database... -- 17:33:09.764 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:09.764 SQL [6381]: pgsql_db_connect() -- 17:33:09.768 DEBUG [6381]: Database connection successful -- 17:33:09.768 INFO [6381]: _SERVER found -- 17:33:09.768 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 17:33:09.768 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:33:09.768 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5b01pdn85bvpphv63b6gmsjgl6nfp9ar -- 17:33:09.768 INFO [6381]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:33:09.768 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:33:09.780 INFO [6381]: COREGRADE is stopping... -- 17:33:09.780 DEBUG [6381]: Closing database connection -- 17:33:09.780 SQL [6381]: pgsql_close() -- 17:33:11.765 INFO [6381]: COREGRADE is starting... -- 17:33:11.765 INFO [6381]: Version from config: 1.0 -- 17:33:11.765 DEBUG [6381]: Connecting to database... -- 17:33:11.765 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:11.766 SQL [6381]: pgsql_db_connect() -- 17:33:11.770 DEBUG [6381]: Database connection successful -- 17:33:11.770 INFO [6381]: _SERVER found -- 17:33:11.770 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 17:33:11.770 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:33:11.770 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5b01pdn85bvpphv63b6gmsjgl6nfp9ar -- 17:33:11.770 INFO [6381]: QUERY_STRING = /member/page -- 17:33:11.770 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:33:11.811 INFO [6381]: COREGRADE is stopping... -- 17:33:11.811 DEBUG [6381]: Closing database connection -- 17:33:11.811 SQL [6381]: pgsql_close() -- 17:33:11.975 INFO [6381]: COREGRADE is starting... -- 17:33:11.975 INFO [6381]: Version from config: 1.0 -- 17:33:11.975 DEBUG [6381]: Connecting to database... -- 17:33:11.975 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:11.975 SQL [6381]: pgsql_db_connect() -- 17:33:11.979 DEBUG [6381]: Database connection successful -- 17:33:11.979 INFO [6381]: _SERVER found -- 17:33:11.979 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 17:33:11.979 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:33:11.979 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5b01pdn85bvpphv63b6gmsjgl6nfp9ar -- 17:33:11.979 INFO [6381]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:33:11.979 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:33:11.990 INFO [6381]: COREGRADE is stopping... -- 17:33:11.990 DEBUG [6381]: Closing database connection -- 17:33:11.990 SQL [6381]: pgsql_close() -- 17:33:12.055 INFO [6381]: COREGRADE is starting... -- 17:33:12.055 INFO [6381]: Version from config: 1.0 -- 17:33:12.055 DEBUG [6381]: Connecting to database... -- 17:33:12.055 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:12.055 SQL [6381]: pgsql_db_connect() -- 17:33:12.059 DEBUG [6381]: Database connection successful -- 17:33:12.059 INFO [6381]: _SERVER found -- 17:33:12.059 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 17:33:12.059 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:33:12.059 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5b01pdn85bvpphv63b6gmsjgl6nfp9ar -- 17:33:12.059 INFO [6381]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:33:12.059 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:33:12.070 INFO [6381]: COREGRADE is stopping... -- 17:33:12.070 DEBUG [6381]: Closing database connection -- 17:33:12.070 SQL [6381]: pgsql_close() -- 17:33:48.874 INFO [6385]: COREGRADE is starting... -- 17:33:48.875 INFO [6385]: Version from config: 1.0 -- 17:33:48.875 DEBUG [6385]: Connecting to database... -- 17:33:48.875 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:48.875 SQL [6385]: pgsql_db_connect() -- 17:33:48.879 DEBUG [6385]: Database connection successful -- 17:33:48.879 INFO [6385]: _SERVER found -- 17:33:48.879 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 17:33:48.879 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:33:48.879 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5b01pdn85bvpphv63b6gmsjgl6nfp9ar -- 17:33:48.879 INFO [6385]: QUERY_STRING = /member/configure -- 17:33:48.879 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:33:48.919 INFO [6385]: COREGRADE is stopping... -- 17:33:48.919 DEBUG [6385]: Closing database connection -- 17:33:48.919 SQL [6385]: pgsql_close() -- 17:33:49.167 INFO [6385]: COREGRADE is starting... -- 17:33:49.167 INFO [6385]: Version from config: 1.0 -- 17:33:49.167 DEBUG [6385]: Connecting to database... -- 17:33:49.167 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:49.167 SQL [6385]: pgsql_db_connect() -- 17:33:49.171 DEBUG [6385]: Database connection successful -- 17:33:49.171 INFO [6385]: _SERVER found -- 17:33:49.171 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 17:33:49.171 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:33:49.171 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5b01pdn85bvpphv63b6gmsjgl6nfp9ar -- 17:33:49.171 INFO [6385]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:33:49.171 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:33:49.182 INFO [6385]: COREGRADE is stopping... -- 17:33:49.182 DEBUG [6385]: Closing database connection -- 17:33:49.182 SQL [6385]: pgsql_close() -- 17:33:49.280 INFO [6385]: COREGRADE is starting... -- 17:33:49.281 INFO [6385]: Version from config: 1.0 -- 17:33:49.281 DEBUG [6385]: Connecting to database... -- 17:33:49.281 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:49.281 SQL [6385]: pgsql_db_connect() -- 17:33:49.285 DEBUG [6385]: Database connection successful -- 17:33:49.285 INFO [6385]: _SERVER found -- 17:33:49.285 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 17:33:49.285 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:33:49.285 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5b01pdn85bvpphv63b6gmsjgl6nfp9ar -- 17:33:49.285 INFO [6385]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:33:49.285 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:33:49.296 INFO [6385]: COREGRADE is stopping... -- 17:33:49.296 DEBUG [6385]: Closing database connection -- 17:33:49.296 SQL [6385]: pgsql_close() -- 17:33:53.527 INFO [6385]: COREGRADE is starting... -- 17:33:53.527 INFO [6385]: Version from config: 1.0 -- 17:33:53.527 DEBUG [6385]: Connecting to database... -- 17:33:53.527 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:53.527 SQL [6385]: pgsql_db_connect() -- 17:33:53.531 DEBUG [6385]: Database connection successful -- 17:33:53.531 INFO [6385]: _SERVER found -- 17:33:53.531 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 17:33:53.531 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:33:53.531 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5b01pdn85bvpphv63b6gmsjgl6nfp9ar -- 17:33:53.531 INFO [6385]: QUERY_STRING = /member/deletePageAction -- 17:33:53.531 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:33:53.561 INFO [6385]: COREGRADE is stopping... -- 17:33:53.561 DEBUG [6385]: Closing database connection -- 17:33:53.561 SQL [6385]: pgsql_close() -- 17:36:06.375 INFO [6384]: COREGRADE is starting... -- 17:36:06.375 INFO [6384]: Version from config: 1.0 -- 17:36:06.375 DEBUG [6384]: Connecting to database... -- 17:36:06.375 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:06.375 SQL [6384]: pgsql_db_connect() -- 17:36:06.379 DEBUG [6384]: Database connection successful -- 17:36:06.379 INFO [6384]: _SERVER found -- 17:36:06.379 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 17:36:06.379 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:36:06.379 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5b01pdn85bvpphv63b6gmsjgl6nfp9ar -- 17:36:06.379 INFO [6384]: QUERY_STRING = /member -- 17:36:06.379 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:06.420 INFO [6384]: COREGRADE is stopping... -- 17:36:06.420 DEBUG [6384]: Closing database connection -- 17:36:06.420 SQL [6384]: pgsql_close() -- 17:36:06.700 INFO [6384]: COREGRADE is starting... -- 17:36:06.701 INFO [6384]: Version from config: 1.0 -- 17:36:06.701 DEBUG [6384]: Connecting to database... -- 17:36:06.701 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:06.701 SQL [6384]: pgsql_db_connect() -- 17:36:06.705 DEBUG [6384]: Database connection successful -- 17:36:06.705 INFO [6384]: _SERVER found -- 17:36:06.705 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 17:36:06.705 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:36:06.705 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5b01pdn85bvpphv63b6gmsjgl6nfp9ar -- 17:36:06.705 INFO [6384]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:36:06.705 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:06.716 INFO [6384]: COREGRADE is stopping... -- 17:36:06.716 DEBUG [6384]: Closing database connection -- 17:36:06.716 SQL [6384]: pgsql_close() -- 17:36:06.725 INFO [6382]: COREGRADE is starting... -- 17:36:06.726 INFO [6382]: Version from config: 1.0 -- 17:36:06.726 DEBUG [6382]: Connecting to database... -- 17:36:06.726 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:06.726 SQL [6382]: pgsql_db_connect() -- 17:36:06.729 DEBUG [6382]: Database connection successful -- 17:36:06.729 INFO [6382]: _SERVER found -- 17:36:06.729 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 17:36:06.729 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:36:06.729 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5b01pdn85bvpphv63b6gmsjgl6nfp9ar -- 17:36:06.729 INFO [6382]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:36:06.729 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:06.741 INFO [6382]: COREGRADE is stopping... -- 17:36:06.741 DEBUG [6382]: Closing database connection -- 17:36:06.741 SQL [6382]: pgsql_close() -- 17:36:08.099 INFO [6382]: COREGRADE is starting... -- 17:36:08.099 INFO [6382]: Version from config: 1.0 -- 17:36:08.099 DEBUG [6382]: Connecting to database... -- 17:36:08.099 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:08.099 SQL [6382]: pgsql_db_connect() -- 17:36:08.103 DEBUG [6382]: Database connection successful -- 17:36:08.103 INFO [6382]: _SERVER found -- 17:36:08.103 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 17:36:08.103 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:36:08.103 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5b01pdn85bvpphv63b6gmsjgl6nfp9ar -- 17:36:08.103 INFO [6382]: QUERY_STRING = /member/page -- 17:36:08.103 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:08.147 INFO [6382]: COREGRADE is stopping... -- 17:36:08.147 DEBUG [6382]: Closing database connection -- 17:36:08.147 SQL [6382]: pgsql_close() -- 17:36:08.332 INFO [6382]: COREGRADE is starting... -- 17:36:08.332 INFO [6382]: Version from config: 1.0 -- 17:36:08.332 DEBUG [6382]: Connecting to database... -- 17:36:08.332 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:08.332 SQL [6382]: pgsql_db_connect() -- 17:36:08.336 DEBUG [6382]: Database connection successful -- 17:36:08.336 INFO [6382]: _SERVER found -- 17:36:08.336 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 17:36:08.336 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:36:08.336 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5b01pdn85bvpphv63b6gmsjgl6nfp9ar -- 17:36:08.336 INFO [6382]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:36:08.336 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:08.348 INFO [6382]: COREGRADE is stopping... -- 17:36:08.348 DEBUG [6382]: Closing database connection -- 17:36:08.348 SQL [6382]: pgsql_close() -- 17:36:08.409 INFO [6382]: COREGRADE is starting... -- 17:36:08.410 INFO [6382]: Version from config: 1.0 -- 17:36:08.410 DEBUG [6382]: Connecting to database... -- 17:36:08.410 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:08.410 SQL [6382]: pgsql_db_connect() -- 17:36:08.414 DEBUG [6382]: Database connection successful -- 17:36:08.414 INFO [6382]: _SERVER found -- 17:36:08.414 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 17:36:08.414 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:36:08.414 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5b01pdn85bvpphv63b6gmsjgl6nfp9ar -- 17:36:08.414 INFO [6382]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:36:08.414 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:08.425 INFO [6382]: COREGRADE is stopping... -- 17:36:08.425 DEBUG [6382]: Closing database connection -- 17:36:08.425 SQL [6382]: pgsql_close() -- 17:36:15.636 INFO [6405]: COREGRADE is starting... -- 17:36:15.636 INFO [6405]: Version from config: 1.0 -- 17:36:15.636 DEBUG [6405]: Connecting to database... -- 17:36:15.636 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:15.636 SQL [6405]: pgsql_db_connect() -- 17:36:15.640 DEBUG [6405]: Database connection successful -- 17:36:15.640 INFO [6405]: _SERVER found -- 17:36:15.640 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 17:36:15.640 INFO [6405]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:36:15.640 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5b01pdn85bvpphv63b6gmsjgl6nfp9ar -- 17:36:15.640 INFO [6405]: QUERY_STRING = /member/configure -- 17:36:15.640 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:15.681 INFO [6405]: COREGRADE is stopping... -- 17:36:15.681 DEBUG [6405]: Closing database connection -- 17:36:15.681 SQL [6405]: pgsql_close() -- 17:36:15.854 INFO [6405]: COREGRADE is starting... -- 17:36:15.854 INFO [6405]: Version from config: 1.0 -- 17:36:15.854 DEBUG [6405]: Connecting to database... -- 17:36:15.854 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:15.854 SQL [6405]: pgsql_db_connect() -- 17:36:15.859 DEBUG [6405]: Database connection successful -- 17:36:15.859 INFO [6405]: _SERVER found -- 17:36:15.859 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 17:36:15.859 INFO [6405]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:36:15.859 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5b01pdn85bvpphv63b6gmsjgl6nfp9ar -- 17:36:15.859 INFO [6405]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:36:15.859 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:15.870 INFO [6405]: COREGRADE is stopping... -- 17:36:15.870 DEBUG [6405]: Closing database connection -- 17:36:15.870 SQL [6405]: pgsql_close() -- 17:36:15.940 INFO [6405]: COREGRADE is starting... -- 17:36:15.941 INFO [6405]: Version from config: 1.0 -- 17:36:15.941 DEBUG [6405]: Connecting to database... -- 17:36:15.941 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:15.941 SQL [6405]: pgsql_db_connect() -- 17:36:15.945 DEBUG [6405]: Database connection successful -- 17:36:15.945 INFO [6405]: _SERVER found -- 17:36:15.945 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 17:36:15.945 INFO [6405]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:36:15.945 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5b01pdn85bvpphv63b6gmsjgl6nfp9ar -- 17:36:15.945 INFO [6405]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:36:15.945 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:15.955 INFO [6405]: COREGRADE is stopping... -- 17:36:15.956 DEBUG [6405]: Closing database connection -- 17:36:15.956 SQL [6405]: pgsql_close() -- 17:36:19.313 INFO [6405]: COREGRADE is starting... -- 17:36:19.313 INFO [6405]: Version from config: 1.0 -- 17:36:19.313 DEBUG [6405]: Connecting to database... -- 17:36:19.313 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:19.313 SQL [6405]: pgsql_db_connect() -- 17:36:19.318 DEBUG [6405]: Database connection successful -- 17:36:19.318 INFO [6405]: _SERVER found -- 17:36:19.318 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 17:36:19.318 INFO [6405]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:36:19.318 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5b01pdn85bvpphv63b6gmsjgl6nfp9ar -- 17:36:19.318 INFO [6405]: QUERY_STRING = /member/page -- 17:36:19.318 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:19.358 INFO [6405]: COREGRADE is stopping... -- 17:36:19.358 DEBUG [6405]: Closing database connection -- 17:36:19.358 SQL [6405]: pgsql_close() -- 17:36:19.529 INFO [6405]: COREGRADE is starting... -- 17:36:19.529 INFO [6405]: Version from config: 1.0 -- 17:36:19.529 DEBUG [6405]: Connecting to database... -- 17:36:19.529 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:19.529 SQL [6405]: pgsql_db_connect() -- 17:36:19.533 DEBUG [6405]: Database connection successful -- 17:36:19.533 INFO [6405]: _SERVER found -- 17:36:19.533 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 17:36:19.533 INFO [6405]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:36:19.533 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5b01pdn85bvpphv63b6gmsjgl6nfp9ar -- 17:36:19.533 INFO [6405]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:36:19.533 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:19.544 INFO [6405]: COREGRADE is stopping... -- 17:36:19.544 DEBUG [6405]: Closing database connection -- 17:36:19.544 SQL [6405]: pgsql_close() -- 17:36:19.607 INFO [6405]: COREGRADE is starting... -- 17:36:19.607 INFO [6405]: Version from config: 1.0 -- 17:36:19.607 DEBUG [6405]: Connecting to database... -- 17:36:19.607 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:19.607 SQL [6405]: pgsql_db_connect() -- 17:36:19.611 DEBUG [6405]: Database connection successful -- 17:36:19.611 INFO [6405]: _SERVER found -- 17:36:19.611 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 17:36:19.611 INFO [6405]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:36:19.611 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5b01pdn85bvpphv63b6gmsjgl6nfp9ar -- 17:36:19.611 INFO [6405]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:36:19.611 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:19.622 INFO [6405]: COREGRADE is stopping... -- 17:36:19.622 DEBUG [6405]: Closing database connection -- 17:36:19.622 SQL [6405]: pgsql_close() -- 17:36:22.406 INFO [6405]: COREGRADE is starting... -- 17:36:22.406 INFO [6405]: Version from config: 1.0 -- 17:36:22.406 DEBUG [6405]: Connecting to database... -- 17:36:22.406 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:22.406 SQL [6405]: pgsql_db_connect() -- 17:36:22.410 DEBUG [6405]: Database connection successful -- 17:36:22.410 INFO [6405]: _SERVER found -- 17:36:22.410 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 17:36:22.410 INFO [6405]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:36:22.410 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5b01pdn85bvpphv63b6gmsjgl6nfp9ar -- 17:36:22.410 INFO [6405]: QUERY_STRING = /member -- 17:36:22.410 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:22.448 INFO [6405]: COREGRADE is stopping... -- 17:36:22.448 DEBUG [6405]: Closing database connection -- 17:36:22.448 SQL [6405]: pgsql_close() -- 17:36:22.670 INFO [6405]: COREGRADE is starting... -- 17:36:22.670 INFO [6405]: Version from config: 1.0 -- 17:36:22.670 DEBUG [6405]: Connecting to database... -- 17:36:22.670 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:22.670 SQL [6405]: pgsql_db_connect() -- 17:36:22.674 DEBUG [6405]: Database connection successful -- 17:36:22.674 INFO [6405]: _SERVER found -- 17:36:22.674 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 17:36:22.674 INFO [6405]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:36:22.674 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5b01pdn85bvpphv63b6gmsjgl6nfp9ar -- 17:36:22.674 INFO [6405]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:36:22.674 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:22.685 INFO [6405]: COREGRADE is stopping... -- 17:36:22.685 DEBUG [6405]: Closing database connection -- 17:36:22.685 SQL [6405]: pgsql_close() -- 17:36:22.688 INFO [7159]: COREGRADE is starting... -- 17:36:22.688 INFO [7159]: Version from config: 1.0 -- 17:36:22.688 DEBUG [7159]: Connecting to database... -- 17:36:22.688 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:22.688 SQL [7159]: pgsql_db_connect() -- 17:36:22.692 DEBUG [7159]: Database connection successful -- 17:36:22.692 INFO [7159]: _SERVER found -- 17:36:22.692 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 17:36:22.692 INFO [7159]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:36:22.692 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5b01pdn85bvpphv63b6gmsjgl6nfp9ar -- 17:36:22.692 INFO [7159]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:36:22.692 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:22.704 INFO [7159]: COREGRADE is stopping... -- 17:36:22.704 DEBUG [7159]: Closing database connection -- 17:36:22.704 SQL [7159]: pgsql_close() -- 17:36:24.585 INFO [7159]: COREGRADE is starting... -- 17:36:24.585 INFO [7159]: Version from config: 1.0 -- 17:36:24.585 DEBUG [7159]: Connecting to database... -- 17:36:24.585 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:24.585 SQL [7159]: pgsql_db_connect() -- 17:36:24.590 DEBUG [7159]: Database connection successful -- 17:36:24.590 INFO [7159]: _SERVER found -- 17:36:24.590 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 17:36:24.590 INFO [7159]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:36:24.590 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5b01pdn85bvpphv63b6gmsjgl6nfp9ar -- 17:36:24.590 INFO [7159]: QUERY_STRING = /member/page -- 17:36:24.590 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:24.631 INFO [7159]: COREGRADE is stopping... -- 17:36:24.631 DEBUG [7159]: Closing database connection -- 17:36:24.631 SQL [7159]: pgsql_close() -- 17:36:24.819 INFO [7159]: COREGRADE is starting... -- 17:36:24.819 INFO [7159]: Version from config: 1.0 -- 17:36:24.819 DEBUG [7159]: Connecting to database... -- 17:36:24.819 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:24.819 SQL [7159]: pgsql_db_connect() -- 17:36:24.823 DEBUG [7159]: Database connection successful -- 17:36:24.823 INFO [7159]: _SERVER found -- 17:36:24.823 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 17:36:24.823 INFO [7159]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:36:24.823 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5b01pdn85bvpphv63b6gmsjgl6nfp9ar -- 17:36:24.823 INFO [7159]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:36:24.823 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:24.834 INFO [7159]: COREGRADE is stopping... -- 17:36:24.834 DEBUG [7159]: Closing database connection -- 17:36:24.834 SQL [7159]: pgsql_close() -- 17:36:24.898 INFO [7159]: COREGRADE is starting... -- 17:36:24.898 INFO [7159]: Version from config: 1.0 -- 17:36:24.898 DEBUG [7159]: Connecting to database... -- 17:36:24.898 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:24.898 SQL [7159]: pgsql_db_connect() -- 17:36:24.902 DEBUG [7159]: Database connection successful -- 17:36:24.902 INFO [7159]: _SERVER found -- 17:36:24.902 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 17:36:24.902 INFO [7159]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:36:24.902 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5b01pdn85bvpphv63b6gmsjgl6nfp9ar -- 17:36:24.902 INFO [7159]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:36:24.902 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:24.913 INFO [7159]: COREGRADE is stopping... -- 17:36:24.913 DEBUG [7159]: Closing database connection -- 17:36:24.913 SQL [7159]: pgsql_close() -- 17:36:29.739 INFO [7159]: COREGRADE is starting... -- 17:36:29.739 INFO [7159]: Version from config: 1.0 -- 17:36:29.740 DEBUG [7159]: Connecting to database... -- 17:36:29.740 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:29.740 SQL [7159]: pgsql_db_connect() -- 17:36:29.744 DEBUG [7159]: Database connection successful -- 17:36:29.744 INFO [7159]: _SERVER found -- 17:36:29.744 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 17:36:29.744 INFO [7159]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:36:29.744 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5b01pdn85bvpphv63b6gmsjgl6nfp9ar -- 17:36:29.744 INFO [7159]: QUERY_STRING = /member/page -- 17:36:29.744 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:29.785 INFO [7159]: COREGRADE is stopping... -- 17:36:29.785 DEBUG [7159]: Closing database connection -- 17:36:29.785 SQL [7159]: pgsql_close() -- 17:36:29.953 INFO [7159]: COREGRADE is starting... -- 17:36:29.954 INFO [7159]: Version from config: 1.0 -- 17:36:29.954 DEBUG [7159]: Connecting to database... -- 17:36:29.954 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:29.954 SQL [7159]: pgsql_db_connect() -- 17:36:29.958 DEBUG [7159]: Database connection successful -- 17:36:29.958 INFO [7159]: _SERVER found -- 17:36:29.958 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 17:36:29.958 INFO [7159]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:36:29.958 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:36:29.958 INFO [7159]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:36:29.958 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:29.969 INFO [7159]: COREGRADE is stopping... -- 17:36:29.969 DEBUG [7159]: Closing database connection -- 17:36:29.969 SQL [7159]: pgsql_close() -- 17:36:30.037 INFO [7159]: COREGRADE is starting... -- 17:36:30.038 INFO [7159]: Version from config: 1.0 -- 17:36:30.038 DEBUG [7159]: Connecting to database... -- 17:36:30.038 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:30.038 SQL [7159]: pgsql_db_connect() -- 17:36:30.042 DEBUG [7159]: Database connection successful -- 17:36:30.042 INFO [7159]: _SERVER found -- 17:36:30.042 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 17:36:30.042 INFO [7159]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:36:30.042 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:36:30.042 INFO [7159]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:36:30.042 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:30.053 INFO [7159]: COREGRADE is stopping... -- 17:36:30.053 DEBUG [7159]: Closing database connection -- 17:36:30.053 SQL [7159]: pgsql_close() -- 17:36:35.300 INFO [6383]: COREGRADE is starting... -- 17:36:35.301 INFO [6383]: Version from config: 1.0 -- 17:36:35.301 DEBUG [6383]: Connecting to database... -- 17:36:35.301 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:35.301 SQL [6383]: pgsql_db_connect() -- 17:36:35.305 DEBUG [6383]: Database connection successful -- 17:36:35.305 INFO [6383]: _SERVER found -- 17:36:35.305 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 17:36:35.305 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:36:35.305 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:36:35.305 INFO [6383]: QUERY_STRING = /member/viewCardAddAction -- 17:36:35.305 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:35.336 INFO [6383]: COREGRADE is stopping... -- 17:36:35.336 DEBUG [6383]: Closing database connection -- 17:36:35.336 SQL [6383]: pgsql_close() -- 17:38:09.585 INFO [6409]: COREGRADE is starting... -- 17:38:09.585 INFO [6409]: Version from config: 1.0 -- 17:38:09.585 DEBUG [6409]: Connecting to database... -- 17:38:09.585 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:09.585 SQL [6409]: pgsql_db_connect() -- 17:38:09.589 DEBUG [6409]: Database connection successful -- 17:38:09.589 INFO [6409]: _SERVER found -- 17:38:09.589 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 17:38:09.589 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:38:09.589 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:38:09.589 INFO [6409]: QUERY_STRING = /member/configure -- 17:38:09.589 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:38:09.630 INFO [6409]: COREGRADE is stopping... -- 17:38:09.630 DEBUG [6409]: Closing database connection -- 17:38:09.630 SQL [6409]: pgsql_close() -- 17:38:09.890 INFO [6409]: COREGRADE is starting... -- 17:38:09.890 INFO [6409]: Version from config: 1.0 -- 17:38:09.890 DEBUG [6409]: Connecting to database... -- 17:38:09.890 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:09.890 SQL [6409]: pgsql_db_connect() -- 17:38:09.894 DEBUG [6409]: Database connection successful -- 17:38:09.894 INFO [6409]: _SERVER found -- 17:38:09.894 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 17:38:09.894 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:38:09.894 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:38:09.894 INFO [6409]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:38:09.894 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:38:09.905 INFO [6409]: COREGRADE is stopping... -- 17:38:09.906 DEBUG [6409]: Closing database connection -- 17:38:09.906 SQL [6409]: pgsql_close() -- 17:38:09.989 INFO [6409]: COREGRADE is starting... -- 17:38:09.989 INFO [6409]: Version from config: 1.0 -- 17:38:09.989 DEBUG [6409]: Connecting to database... -- 17:38:09.989 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:09.989 SQL [6409]: pgsql_db_connect() -- 17:38:09.993 DEBUG [6409]: Database connection successful -- 17:38:09.993 INFO [6409]: _SERVER found -- 17:38:09.993 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 17:38:09.993 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:38:09.993 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:38:09.993 INFO [6409]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:38:09.993 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:38:10.004 INFO [6409]: COREGRADE is stopping... -- 17:38:10.004 DEBUG [6409]: Closing database connection -- 17:38:10.004 SQL [6409]: pgsql_close() -- 17:38:31.518 INFO [7017]: COREGRADE is starting... -- 17:38:31.518 INFO [7017]: Version from config: 1.0 -- 17:38:31.518 DEBUG [7017]: Connecting to database... -- 17:38:31.518 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:31.518 SQL [7017]: pgsql_db_connect() -- 17:38:31.522 DEBUG [7017]: Database connection successful -- 17:38:31.522 INFO [7017]: _SERVER found -- 17:38:31.522 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 17:38:31.522 INFO [7017]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:38:31.522 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:38:31.522 INFO [7017]: QUERY_STRING = /member -- 17:38:31.522 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:38:31.562 INFO [7017]: COREGRADE is stopping... -- 17:38:31.562 DEBUG [7017]: Closing database connection -- 17:38:31.562 SQL [7017]: pgsql_close() -- 17:38:31.855 INFO [7017]: COREGRADE is starting... -- 17:38:31.855 INFO [7017]: Version from config: 1.0 -- 17:38:31.855 DEBUG [7017]: Connecting to database... -- 17:38:31.855 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:31.855 SQL [7017]: pgsql_db_connect() -- 17:38:31.859 DEBUG [7017]: Database connection successful -- 17:38:31.859 INFO [7017]: _SERVER found -- 17:38:31.859 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 17:38:31.859 INFO [7017]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:38:31.859 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:38:31.859 INFO [7017]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:38:31.859 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:38:31.871 INFO [7017]: COREGRADE is stopping... -- 17:38:31.871 DEBUG [7017]: Closing database connection -- 17:38:31.871 SQL [7017]: pgsql_close() -- 17:38:31.879 INFO [6381]: COREGRADE is starting... -- 17:38:31.879 INFO [6381]: Version from config: 1.0 -- 17:38:31.879 DEBUG [6381]: Connecting to database... -- 17:38:31.879 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:31.879 SQL [6381]: pgsql_db_connect() -- 17:38:31.883 DEBUG [6381]: Database connection successful -- 17:38:31.883 INFO [6381]: _SERVER found -- 17:38:31.883 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 17:38:31.883 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:38:31.883 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:38:31.883 INFO [6381]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:38:31.883 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:38:31.894 INFO [6381]: COREGRADE is stopping... -- 17:38:31.894 DEBUG [6381]: Closing database connection -- 17:38:31.894 SQL [6381]: pgsql_close() -- 17:38:38.918 INFO [6385]: COREGRADE is starting... -- 17:38:38.918 INFO [6385]: Version from config: 1.0 -- 17:38:38.918 DEBUG [6385]: Connecting to database... -- 17:38:38.918 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:38.918 SQL [6385]: pgsql_db_connect() -- 17:38:38.923 DEBUG [6385]: Database connection successful -- 17:38:38.923 INFO [6385]: _SERVER found -- 17:38:38.923 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 17:38:38.923 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:38:38.923 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:38:38.923 INFO [6385]: QUERY_STRING = /member/page -- 17:38:38.923 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:38:38.965 INFO [6385]: COREGRADE is stopping... -- 17:38:38.965 DEBUG [6385]: Closing database connection -- 17:38:38.965 SQL [6385]: pgsql_close() -- 17:38:39.143 INFO [6385]: COREGRADE is starting... -- 17:38:39.144 INFO [6385]: Version from config: 1.0 -- 17:38:39.144 DEBUG [6385]: Connecting to database... -- 17:38:39.144 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:39.144 SQL [6385]: pgsql_db_connect() -- 17:38:39.148 DEBUG [6385]: Database connection successful -- 17:38:39.148 INFO [6385]: _SERVER found -- 17:38:39.148 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 17:38:39.148 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:38:39.148 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:38:39.148 INFO [6385]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:38:39.148 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:38:39.159 INFO [6385]: COREGRADE is stopping... -- 17:38:39.159 DEBUG [6385]: Closing database connection -- 17:38:39.159 SQL [6385]: pgsql_close() -- 17:38:39.238 INFO [6385]: COREGRADE is starting... -- 17:38:39.238 INFO [6385]: Version from config: 1.0 -- 17:38:39.238 DEBUG [6385]: Connecting to database... -- 17:38:39.239 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:39.239 SQL [6385]: pgsql_db_connect() -- 17:38:39.242 DEBUG [6385]: Database connection successful -- 17:38:39.242 INFO [6385]: _SERVER found -- 17:38:39.242 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 17:38:39.242 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:38:39.242 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:38:39.242 INFO [6385]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:38:39.242 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:38:39.253 INFO [6385]: COREGRADE is stopping... -- 17:38:39.253 DEBUG [6385]: Closing database connection -- 17:38:39.253 SQL [6385]: pgsql_close() -- 17:38:47.648 INFO [6384]: COREGRADE is starting... -- 17:38:47.648 INFO [6384]: Version from config: 1.0 -- 17:38:47.648 DEBUG [6384]: Connecting to database... -- 17:38:47.648 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:47.648 SQL [6384]: pgsql_db_connect() -- 17:38:47.652 DEBUG [6384]: Database connection successful -- 17:38:47.652 INFO [6384]: _SERVER found -- 17:38:47.652 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 17:38:47.652 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:38:47.652 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:38:47.652 INFO [6384]: QUERY_STRING = /member/page -- 17:38:47.652 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:38:47.693 INFO [6384]: COREGRADE is stopping... -- 17:38:47.693 DEBUG [6384]: Closing database connection -- 17:38:47.693 SQL [6384]: pgsql_close() -- 17:38:47.848 INFO [6384]: COREGRADE is starting... -- 17:38:47.848 INFO [6384]: Version from config: 1.0 -- 17:38:47.848 DEBUG [6384]: Connecting to database... -- 17:38:47.848 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:47.848 SQL [6384]: pgsql_db_connect() -- 17:38:47.852 DEBUG [6384]: Database connection successful -- 17:38:47.852 INFO [6384]: _SERVER found -- 17:38:47.852 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 17:38:47.852 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:38:47.852 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:38:47.852 INFO [6384]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:38:47.852 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:38:47.863 INFO [6384]: COREGRADE is stopping... -- 17:38:47.863 DEBUG [6384]: Closing database connection -- 17:38:47.863 SQL [6384]: pgsql_close() -- 17:38:47.932 INFO [6384]: COREGRADE is starting... -- 17:38:47.933 INFO [6384]: Version from config: 1.0 -- 17:38:47.933 DEBUG [6384]: Connecting to database... -- 17:38:47.933 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:47.933 SQL [6384]: pgsql_db_connect() -- 17:38:47.937 DEBUG [6384]: Database connection successful -- 17:38:47.937 INFO [6384]: _SERVER found -- 17:38:47.937 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 17:38:47.937 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:38:47.937 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:38:47.937 INFO [6384]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:38:47.937 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:38:47.948 INFO [6384]: COREGRADE is stopping... -- 17:38:47.948 DEBUG [6384]: Closing database connection -- 17:38:47.948 SQL [6384]: pgsql_close() -- 17:38:55.127 INFO [6405]: COREGRADE is starting... -- 17:38:55.127 INFO [6405]: Version from config: 1.0 -- 17:38:55.127 DEBUG [6405]: Connecting to database... -- 17:38:55.127 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:55.127 SQL [6405]: pgsql_db_connect() -- 17:38:55.131 DEBUG [6405]: Database connection successful -- 17:38:55.131 INFO [6405]: _SERVER found -- 17:38:55.131 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 17:38:55.131 INFO [6405]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:38:55.131 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:38:55.131 INFO [6405]: QUERY_STRING = /member -- 17:38:55.131 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:38:55.171 INFO [6405]: COREGRADE is stopping... -- 17:38:55.171 DEBUG [6405]: Closing database connection -- 17:38:55.171 SQL [6405]: pgsql_close() -- 17:38:55.383 INFO [6405]: COREGRADE is starting... -- 17:38:55.383 INFO [6405]: Version from config: 1.0 -- 17:38:55.383 DEBUG [6405]: Connecting to database... -- 17:38:55.383 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:55.383 SQL [6405]: pgsql_db_connect() -- 17:38:55.387 DEBUG [6405]: Database connection successful -- 17:38:55.387 INFO [6405]: _SERVER found -- 17:38:55.387 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 17:38:55.387 INFO [6405]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:38:55.387 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:38:55.387 INFO [6405]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:38:55.387 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:38:55.398 INFO [6405]: COREGRADE is stopping... -- 17:38:55.398 DEBUG [6405]: Closing database connection -- 17:38:55.398 SQL [6405]: pgsql_close() -- 17:38:55.402 INFO [7160]: COREGRADE is starting... -- 17:38:55.403 INFO [7160]: Version from config: 1.0 -- 17:38:55.403 DEBUG [7160]: Connecting to database... -- 17:38:55.403 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:55.403 SQL [7160]: pgsql_db_connect() -- 17:38:55.406 DEBUG [7160]: Database connection successful -- 17:38:55.406 INFO [7160]: _SERVER found -- 17:38:55.406 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 17:38:55.406 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:38:55.406 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:38:55.406 INFO [7160]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:38:55.406 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:38:55.418 INFO [7160]: COREGRADE is stopping... -- 17:38:55.418 DEBUG [7160]: Closing database connection -- 17:38:55.418 SQL [7160]: pgsql_close() -- 17:38:56.787 INFO [7160]: COREGRADE is starting... -- 17:38:56.787 INFO [7160]: Version from config: 1.0 -- 17:38:56.787 DEBUG [7160]: Connecting to database... -- 17:38:56.787 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:56.787 SQL [7160]: pgsql_db_connect() -- 17:38:56.791 DEBUG [7160]: Database connection successful -- 17:38:56.791 INFO [7160]: _SERVER found -- 17:38:56.791 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 17:38:56.791 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:38:56.791 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:38:56.791 INFO [7160]: QUERY_STRING = /member/page -- 17:38:56.791 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:38:56.835 INFO [7160]: COREGRADE is stopping... -- 17:38:56.835 DEBUG [7160]: Closing database connection -- 17:38:56.835 SQL [7160]: pgsql_close() -- 17:38:57.006 INFO [7160]: COREGRADE is starting... -- 17:38:57.006 INFO [7160]: Version from config: 1.0 -- 17:38:57.006 DEBUG [7160]: Connecting to database... -- 17:38:57.007 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:57.007 SQL [7160]: pgsql_db_connect() -- 17:38:57.011 DEBUG [7160]: Database connection successful -- 17:38:57.011 INFO [7160]: _SERVER found -- 17:38:57.011 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 17:38:57.011 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:38:57.011 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:38:57.011 INFO [7160]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:38:57.011 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:38:57.022 INFO [7160]: COREGRADE is stopping... -- 17:38:57.022 DEBUG [7160]: Closing database connection -- 17:38:57.022 SQL [7160]: pgsql_close() -- 17:38:57.084 INFO [7160]: COREGRADE is starting... -- 17:38:57.084 INFO [7160]: Version from config: 1.0 -- 17:38:57.084 DEBUG [7160]: Connecting to database... -- 17:38:57.084 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:57.084 SQL [7160]: pgsql_db_connect() -- 17:38:57.088 DEBUG [7160]: Database connection successful -- 17:38:57.088 INFO [7160]: _SERVER found -- 17:38:57.088 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 17:38:57.088 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:38:57.088 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:38:57.088 INFO [7160]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:38:57.088 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:38:57.099 INFO [7160]: COREGRADE is stopping... -- 17:38:57.099 DEBUG [7160]: Closing database connection -- 17:38:57.099 SQL [7160]: pgsql_close() -- 17:39:01.733 INFO [7160]: COREGRADE is starting... -- 17:39:01.733 INFO [7160]: Version from config: 1.0 -- 17:39:01.733 DEBUG [7160]: Connecting to database... -- 17:39:01.733 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:39:01.733 SQL [7160]: pgsql_db_connect() -- 17:39:01.737 DEBUG [7160]: Database connection successful -- 17:39:01.737 INFO [7160]: _SERVER found -- 17:39:01.737 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 17:39:01.737 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:39:01.737 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:39:01.737 INFO [7160]: QUERY_STRING = /member/viewCardAddAction -- 17:39:01.737 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:39:01.770 INFO [7160]: COREGRADE is stopping... -- 17:39:01.770 DEBUG [7160]: Closing database connection -- 17:39:01.770 SQL [7160]: pgsql_close() -- 17:39:04.104 INFO [7160]: COREGRADE is starting... -- 17:39:04.104 INFO [7160]: Version from config: 1.0 -- 17:39:04.104 DEBUG [7160]: Connecting to database... -- 17:39:04.105 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:39:04.105 SQL [7160]: pgsql_db_connect() -- 17:39:04.109 DEBUG [7160]: Database connection successful -- 17:39:04.109 INFO [7160]: _SERVER found -- 17:39:04.109 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 17:39:04.109 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:39:04.109 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:39:04.109 INFO [7160]: QUERY_STRING = /member -- 17:39:04.109 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:39:04.148 INFO [7160]: COREGRADE is stopping... -- 17:39:04.148 DEBUG [7160]: Closing database connection -- 17:39:04.148 SQL [7160]: pgsql_close() -- 17:39:04.353 INFO [7160]: COREGRADE is starting... -- 17:39:04.353 INFO [7160]: Version from config: 1.0 -- 17:39:04.353 DEBUG [7160]: Connecting to database... -- 17:39:04.353 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:39:04.353 SQL [7160]: pgsql_db_connect() -- 17:39:04.357 DEBUG [7160]: Database connection successful -- 17:39:04.357 INFO [7160]: _SERVER found -- 17:39:04.357 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 17:39:04.357 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:39:04.357 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:39:04.357 INFO [7160]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:39:04.357 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:39:04.368 INFO [7160]: COREGRADE is stopping... -- 17:39:04.368 DEBUG [7160]: Closing database connection -- 17:39:04.368 SQL [7160]: pgsql_close() -- 17:39:04.372 INFO [7159]: COREGRADE is starting... -- 17:39:04.372 INFO [7159]: Version from config: 1.0 -- 17:39:04.372 DEBUG [7159]: Connecting to database... -- 17:39:04.372 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:39:04.372 SQL [7159]: pgsql_db_connect() -- 17:39:04.375 DEBUG [7159]: Database connection successful -- 17:39:04.375 INFO [7159]: _SERVER found -- 17:39:04.375 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 17:39:04.375 INFO [7159]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:39:04.375 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:39:04.375 INFO [7159]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:39:04.375 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:39:04.387 INFO [7159]: COREGRADE is stopping... -- 17:39:04.387 DEBUG [7159]: Closing database connection -- 17:39:04.387 SQL [7159]: pgsql_close() -- 17:39:05.757 INFO [7159]: COREGRADE is starting... -- 17:39:05.757 INFO [7159]: Version from config: 1.0 -- 17:39:05.757 DEBUG [7159]: Connecting to database... -- 17:39:05.757 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:39:05.757 SQL [7159]: pgsql_db_connect() -- 17:39:05.761 DEBUG [7159]: Database connection successful -- 17:39:05.761 INFO [7159]: _SERVER found -- 17:39:05.761 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 17:39:05.761 INFO [7159]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:39:05.761 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:39:05.761 INFO [7159]: QUERY_STRING = /member -- 17:39:05.761 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:39:05.800 INFO [7159]: COREGRADE is stopping... -- 17:39:05.801 DEBUG [7159]: Closing database connection -- 17:39:05.801 SQL [7159]: pgsql_close() -- 17:39:06.060 INFO [7159]: COREGRADE is starting... -- 17:39:06.061 INFO [7159]: Version from config: 1.0 -- 17:39:06.061 DEBUG [7159]: Connecting to database... -- 17:39:06.061 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:39:06.061 SQL [7159]: pgsql_db_connect() -- 17:39:06.065 DEBUG [7159]: Database connection successful -- 17:39:06.065 INFO [7159]: _SERVER found -- 17:39:06.065 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 17:39:06.065 INFO [7159]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:39:06.065 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:39:06.065 INFO [7159]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:39:06.065 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:39:06.076 INFO [7159]: COREGRADE is stopping... -- 17:39:06.076 DEBUG [7159]: Closing database connection -- 17:39:06.076 SQL [7159]: pgsql_close() -- 17:39:11.727 INFO [6383]: COREGRADE is starting... -- 17:39:11.728 INFO [6383]: Version from config: 1.0 -- 17:39:11.728 DEBUG [6383]: Connecting to database... -- 17:39:11.728 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:39:11.728 SQL [6383]: pgsql_db_connect() -- 17:39:11.732 DEBUG [6383]: Database connection successful -- 17:39:11.732 INFO [6383]: _SERVER found -- 17:39:11.732 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 17:39:11.732 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:39:11.732 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:39:11.732 INFO [6383]: QUERY_STRING = /member/page -- 17:39:11.732 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:39:11.773 INFO [6383]: COREGRADE is stopping... -- 17:39:11.773 DEBUG [6383]: Closing database connection -- 17:39:11.773 SQL [6383]: pgsql_close() -- 17:39:11.997 INFO [6383]: COREGRADE is starting... -- 17:39:11.997 INFO [6383]: Version from config: 1.0 -- 17:39:11.997 DEBUG [6383]: Connecting to database... -- 17:39:11.997 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:39:11.997 SQL [6383]: pgsql_db_connect() -- 17:39:12.002 DEBUG [6383]: Database connection successful -- 17:39:12.002 INFO [6383]: _SERVER found -- 17:39:12.002 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 17:39:12.002 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:39:12.002 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:39:12.002 INFO [6383]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:39:12.002 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:39:12.013 INFO [6383]: COREGRADE is stopping... -- 17:39:12.013 DEBUG [6383]: Closing database connection -- 17:39:12.013 SQL [6383]: pgsql_close() -- 17:39:15.972 INFO [6383]: COREGRADE is starting... -- 17:39:15.972 INFO [6383]: Version from config: 1.0 -- 17:39:15.972 DEBUG [6383]: Connecting to database... -- 17:39:15.972 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:39:15.972 SQL [6383]: pgsql_db_connect() -- 17:39:15.976 DEBUG [6383]: Database connection successful -- 17:39:15.976 INFO [6383]: _SERVER found -- 17:39:15.976 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 17:39:15.976 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:39:15.976 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:39:15.976 INFO [6383]: QUERY_STRING = /member/configure -- 17:39:15.976 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:39:16.015 INFO [6383]: COREGRADE is stopping... -- 17:39:16.015 DEBUG [6383]: Closing database connection -- 17:39:16.015 SQL [6383]: pgsql_close() -- 17:39:16.253 INFO [6383]: COREGRADE is starting... -- 17:39:16.253 INFO [6383]: Version from config: 1.0 -- 17:39:16.253 DEBUG [6383]: Connecting to database... -- 17:39:16.253 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:39:16.253 SQL [6383]: pgsql_db_connect() -- 17:39:16.257 DEBUG [6383]: Database connection successful -- 17:39:16.257 INFO [6383]: _SERVER found -- 17:39:16.257 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 17:39:16.257 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:39:16.257 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:39:16.257 INFO [6383]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:39:16.257 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:39:16.268 INFO [6383]: COREGRADE is stopping... -- 17:39:16.269 DEBUG [6383]: Closing database connection -- 17:39:16.269 SQL [6383]: pgsql_close() -- 17:39:29.221 INFO [6409]: COREGRADE is starting... -- 17:39:29.221 INFO [6409]: Version from config: 1.0 -- 17:39:29.221 DEBUG [6409]: Connecting to database... -- 17:39:29.221 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:39:29.222 SQL [6409]: pgsql_db_connect() -- 17:39:29.226 DEBUG [6409]: Database connection successful -- 17:39:29.226 INFO [6409]: _SERVER found -- 17:39:29.226 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 17:39:29.226 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:39:29.226 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:39:29.226 INFO [6409]: QUERY_STRING = /member/deletePageAction -- 17:39:29.226 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:39:29.259 INFO [6409]: COREGRADE is stopping... -- 17:39:29.259 DEBUG [6409]: Closing database connection -- 17:39:29.259 SQL [6409]: pgsql_close() -- 17:39:32.167 INFO [6409]: COREGRADE is starting... -- 17:39:32.167 INFO [6409]: Version from config: 1.0 -- 17:39:32.167 DEBUG [6409]: Connecting to database... -- 17:39:32.167 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:39:32.168 SQL [6409]: pgsql_db_connect() -- 17:39:32.172 DEBUG [6409]: Database connection successful -- 17:39:32.172 INFO [6409]: _SERVER found -- 17:39:32.172 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 17:39:32.172 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:39:32.172 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:39:32.172 INFO [6409]: QUERY_STRING = /member -- 17:39:32.172 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:39:32.210 INFO [6409]: COREGRADE is stopping... -- 17:39:32.210 DEBUG [6409]: Closing database connection -- 17:39:32.210 SQL [6409]: pgsql_close() -- 17:39:32.531 INFO [6409]: COREGRADE is starting... -- 17:39:32.531 INFO [6409]: Version from config: 1.0 -- 17:39:32.531 DEBUG [6409]: Connecting to database... -- 17:39:32.531 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:39:32.531 SQL [6409]: pgsql_db_connect() -- 17:39:32.535 DEBUG [6409]: Database connection successful -- 17:39:32.535 INFO [6409]: _SERVER found -- 17:39:32.535 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 17:39:32.535 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:39:32.535 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:39:32.535 INFO [6409]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:39:32.535 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:39:32.546 INFO [6409]: COREGRADE is stopping... -- 17:39:32.546 DEBUG [6409]: Closing database connection -- 17:39:32.546 SQL [6409]: pgsql_close() -- 17:39:33.531 INFO [6409]: COREGRADE is starting... -- 17:39:33.531 INFO [6409]: Version from config: 1.0 -- 17:39:33.531 DEBUG [6409]: Connecting to database... -- 17:39:33.531 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:39:33.531 SQL [6409]: pgsql_db_connect() -- 17:39:33.535 DEBUG [6409]: Database connection successful -- 17:39:33.535 INFO [6409]: _SERVER found -- 17:39:33.535 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 17:39:33.535 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:39:33.535 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:39:33.535 INFO [6409]: QUERY_STRING = /member/page -- 17:39:33.535 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:39:33.576 INFO [6409]: COREGRADE is stopping... -- 17:39:33.576 DEBUG [6409]: Closing database connection -- 17:39:33.576 SQL [6409]: pgsql_close() -- 17:39:33.783 INFO [6409]: COREGRADE is starting... -- 17:39:33.783 INFO [6409]: Version from config: 1.0 -- 17:39:33.783 DEBUG [6409]: Connecting to database... -- 17:39:33.783 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:39:33.783 SQL [6409]: pgsql_db_connect() -- 17:39:33.787 DEBUG [6409]: Database connection successful -- 17:39:33.787 INFO [6409]: _SERVER found -- 17:39:33.787 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 17:39:33.787 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:39:33.787 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:39:33.787 INFO [6409]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:39:33.787 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:39:33.798 INFO [6409]: COREGRADE is stopping... -- 17:39:33.798 DEBUG [6409]: Closing database connection -- 17:39:33.798 SQL [6409]: pgsql_close() -- 17:39:35.131 INFO [6409]: COREGRADE is starting... -- 17:39:35.131 INFO [6409]: Version from config: 1.0 -- 17:39:35.131 DEBUG [6409]: Connecting to database... -- 17:39:35.131 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:39:35.131 SQL [6409]: pgsql_db_connect() -- 17:39:35.135 DEBUG [6409]: Database connection successful -- 17:39:35.135 INFO [6409]: _SERVER found -- 17:39:35.135 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 17:39:35.135 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:39:35.135 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:39:35.135 INFO [6409]: QUERY_STRING = /member -- 17:39:35.135 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:39:35.174 INFO [6409]: COREGRADE is stopping... -- 17:39:35.174 DEBUG [6409]: Closing database connection -- 17:39:35.174 SQL [6409]: pgsql_close() -- 17:39:35.400 INFO [6409]: COREGRADE is starting... -- 17:39:35.400 INFO [6409]: Version from config: 1.0 -- 17:39:35.400 DEBUG [6409]: Connecting to database... -- 17:39:35.400 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:39:35.400 SQL [6409]: pgsql_db_connect() -- 17:39:35.404 DEBUG [6409]: Database connection successful -- 17:39:35.404 INFO [6409]: _SERVER found -- 17:39:35.404 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 17:39:35.404 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:39:35.404 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:39:35.404 INFO [6409]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:39:35.404 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:39:35.415 INFO [6409]: COREGRADE is stopping... -- 17:39:35.415 DEBUG [6409]: Closing database connection -- 17:39:35.415 SQL [6409]: pgsql_close() -- 17:39:41.040 INFO [7017]: COREGRADE is starting... -- 17:39:41.040 INFO [7017]: Version from config: 1.0 -- 17:39:41.040 DEBUG [7017]: Connecting to database... -- 17:39:41.040 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:39:41.040 SQL [7017]: pgsql_db_connect() -- 17:39:41.045 DEBUG [7017]: Database connection successful -- 17:39:41.045 INFO [7017]: _SERVER found -- 17:39:41.045 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 17:39:41.045 INFO [7017]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:39:41.045 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:39:41.045 INFO [7017]: QUERY_STRING = /member/page -- 17:39:41.045 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:39:41.085 INFO [7017]: COREGRADE is stopping... -- 17:39:41.085 DEBUG [7017]: Closing database connection -- 17:39:41.085 SQL [7017]: pgsql_close() -- 17:39:41.305 INFO [7017]: COREGRADE is starting... -- 17:39:41.305 INFO [7017]: Version from config: 1.0 -- 17:39:41.305 DEBUG [7017]: Connecting to database... -- 17:39:41.305 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:39:41.305 SQL [7017]: pgsql_db_connect() -- 17:39:41.309 DEBUG [7017]: Database connection successful -- 17:39:41.309 INFO [7017]: _SERVER found -- 17:39:41.309 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 17:39:41.309 INFO [7017]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:39:41.309 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:39:41.309 INFO [7017]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:39:41.309 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:39:41.321 INFO [7017]: COREGRADE is stopping... -- 17:39:41.321 DEBUG [7017]: Closing database connection -- 17:39:41.321 SQL [7017]: pgsql_close() -- 17:39:47.494 INFO [6381]: COREGRADE is starting... -- 17:39:47.494 INFO [6381]: Version from config: 1.0 -- 17:39:47.494 DEBUG [6381]: Connecting to database... -- 17:39:47.494 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:39:47.494 SQL [6381]: pgsql_db_connect() -- 17:39:47.498 DEBUG [6381]: Database connection successful -- 17:39:47.498 INFO [6381]: _SERVER found -- 17:39:47.498 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 17:39:47.498 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:39:47.498 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:39:47.498 INFO [6381]: QUERY_STRING = /member/configure -- 17:39:47.498 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:39:47.537 INFO [6381]: COREGRADE is stopping... -- 17:39:47.537 DEBUG [6381]: Closing database connection -- 17:39:47.537 SQL [6381]: pgsql_close() -- 17:39:47.762 INFO [6381]: COREGRADE is starting... -- 17:39:47.762 INFO [6381]: Version from config: 1.0 -- 17:39:47.762 DEBUG [6381]: Connecting to database... -- 17:39:47.762 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:39:47.762 SQL [6381]: pgsql_db_connect() -- 17:39:47.766 DEBUG [6381]: Database connection successful -- 17:39:47.766 INFO [6381]: _SERVER found -- 17:39:47.766 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 17:39:47.766 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:39:47.766 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:39:47.766 INFO [6381]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:39:47.766 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:39:47.777 INFO [6381]: COREGRADE is stopping... -- 17:39:47.777 DEBUG [6381]: Closing database connection -- 17:39:47.777 SQL [6381]: pgsql_close() -- 17:39:52.351 INFO [6381]: COREGRADE is starting... -- 17:39:52.351 INFO [6381]: Version from config: 1.0 -- 17:39:52.351 DEBUG [6381]: Connecting to database... -- 17:39:52.351 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:39:52.351 SQL [6381]: pgsql_db_connect() -- 17:39:52.355 DEBUG [6381]: Database connection successful -- 17:39:52.355 INFO [6381]: _SERVER found -- 17:39:52.355 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 17:39:52.355 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:39:52.355 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:39:52.355 INFO [6381]: QUERY_STRING = /member/deletePageAction -- 17:39:52.355 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:39:52.388 INFO [6381]: COREGRADE is stopping... -- 17:39:52.388 DEBUG [6381]: Closing database connection -- 17:39:52.388 SQL [6381]: pgsql_close() -- 17:44:21.242 INFO [6385]: COREGRADE is starting... -- 17:44:21.243 INFO [6385]: Version from config: 1.0 -- 17:44:21.243 DEBUG [6385]: Connecting to database... -- 17:44:21.243 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:44:21.243 SQL [6385]: pgsql_db_connect() -- 17:44:21.248 DEBUG [6385]: Database connection successful -- 17:44:21.248 INFO [6385]: _SERVER found -- 17:44:21.248 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 17:44:21.248 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 17:44:21.248 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=gk1iaakvoi4vgca88cnid01qnauvjd50 -- 17:44:21.248 INFO [6385]: QUERY_STRING = /member/configure -- 17:44:21.248 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:44:21.299 INFO [6385]: COREGRADE is stopping... -- 17:44:21.299 DEBUG [6385]: Closing database connection -- 17:44:21.299 SQL [6385]: pgsql_close() -- 17:44:21.492 INFO [6385]: COREGRADE is starting... -- 17:44:21.492 INFO [6385]: Version from config: 1.0 -- 17:44:21.492 DEBUG [6385]: Connecting to database... -- 17:44:21.492 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:44:21.492 SQL [6385]: pgsql_db_connect() -- 17:44:21.497 DEBUG [6385]: Database connection successful -- 17:44:21.497 INFO [6385]: _SERVER found -- 17:44:21.497 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 17:44:21.497 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 17:44:21.497 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kohnn57nd9aleb147mf83253o2ssb4mg -- 17:44:21.497 INFO [6385]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:44:21.497 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:44:21.508 INFO [6385]: COREGRADE is stopping... -- 17:44:21.508 DEBUG [6385]: Closing database connection -- 17:44:21.508 SQL [6385]: pgsql_close() -- 17:44:21.702 INFO [6385]: COREGRADE is starting... -- 17:44:21.702 INFO [6385]: Version from config: 1.0 -- 17:44:21.702 DEBUG [6385]: Connecting to database... -- 17:44:21.702 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:44:21.702 SQL [6385]: pgsql_db_connect() -- 17:44:21.706 DEBUG [6385]: Database connection successful -- 17:44:21.706 INFO [6385]: _SERVER found -- 17:44:21.706 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 17:44:21.706 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 17:44:21.706 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kohnn57nd9aleb147mf83253o2ssb4mg -- 17:44:21.706 INFO [6385]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:44:21.706 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:44:21.717 INFO [6385]: COREGRADE is stopping... -- 17:44:21.717 DEBUG [6385]: Closing database connection -- 17:44:21.717 SQL [6385]: pgsql_close() -- 17:44:21.847 INFO [6385]: COREGRADE is starting... -- 17:44:21.847 INFO [6385]: Version from config: 1.0 -- 17:44:21.847 DEBUG [6385]: Connecting to database... -- 17:44:21.847 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:44:21.848 SQL [6385]: pgsql_db_connect() -- 17:44:21.851 DEBUG [6385]: Database connection successful -- 17:44:21.851 INFO [6385]: _SERVER found -- 17:44:21.851 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 17:44:21.851 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 17:44:21.851 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kohnn57nd9aleb147mf83253o2ssb4mg -- 17:44:21.851 INFO [6385]: QUERY_STRING = /member/configure -- 17:44:21.851 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:44:21.887 INFO [6385]: COREGRADE is stopping... -- 17:44:21.887 DEBUG [6385]: Closing database connection -- 17:44:21.887 SQL [6385]: pgsql_close() -- 17:44:22.154 INFO [6385]: COREGRADE is starting... -- 17:44:22.154 INFO [6385]: Version from config: 1.0 -- 17:44:22.154 DEBUG [6385]: Connecting to database... -- 17:44:22.154 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:44:22.154 SQL [6385]: pgsql_db_connect() -- 17:44:22.158 DEBUG [6385]: Database connection successful -- 17:44:22.158 INFO [6385]: _SERVER found -- 17:44:22.158 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 17:44:22.158 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 17:44:22.158 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kohnn57nd9aleb147mf83253o2ssb4mg -- 17:44:22.158 INFO [6385]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:44:22.158 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:44:22.169 INFO [6385]: COREGRADE is stopping... -- 17:44:22.170 DEBUG [6385]: Closing database connection -- 17:44:22.170 SQL [6385]: pgsql_close() -- 17:44:22.189 INFO [6382]: COREGRADE is starting... -- 17:44:22.189 INFO [6382]: Version from config: 1.0 -- 17:44:22.189 DEBUG [6382]: Connecting to database... -- 17:44:22.189 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:44:22.189 SQL [6382]: pgsql_db_connect() -- 17:44:22.193 DEBUG [6382]: Database connection successful -- 17:44:22.193 INFO [6382]: _SERVER found -- 17:44:22.193 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 17:44:22.193 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 17:44:22.193 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kohnn57nd9aleb147mf83253o2ssb4mg -- 17:44:22.193 INFO [6382]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:44:22.193 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:44:22.205 INFO [6382]: COREGRADE is stopping... -- 17:44:22.205 DEBUG [6382]: Closing database connection -- 17:44:22.205 SQL [6382]: pgsql_close() -- 17:45:03.111 INFO [6384]: COREGRADE is starting... -- 17:45:03.111 INFO [6384]: Version from config: 1.0 -- 17:45:03.111 DEBUG [6384]: Connecting to database... -- 17:45:03.111 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:03.111 SQL [6384]: pgsql_db_connect() -- 17:45:03.115 DEBUG [6384]: Database connection successful -- 17:45:03.115 INFO [6384]: _SERVER found -- 17:45:03.115 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 17:45:03.115 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:45:03.115 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=5vklkq62p23ffs04v5q1483154s295mi -- 17:45:03.115 INFO [6384]: QUERY_STRING = /member -- 17:45:03.115 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:03.156 INFO [6384]: COREGRADE is stopping... -- 17:45:03.156 DEBUG [6384]: Closing database connection -- 17:45:03.156 SQL [6384]: pgsql_close() -- 17:45:03.491 INFO [6384]: COREGRADE is starting... -- 17:45:03.492 INFO [6384]: Version from config: 1.0 -- 17:45:03.492 DEBUG [6384]: Connecting to database... -- 17:45:03.492 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:03.492 SQL [6384]: pgsql_db_connect() -- 17:45:03.496 DEBUG [6384]: Database connection successful -- 17:45:03.496 INFO [6384]: _SERVER found -- 17:45:03.496 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 17:45:03.496 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:45:03.496 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:45:03.496 INFO [6384]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:45:03.496 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:03.507 INFO [6384]: COREGRADE is stopping... -- 17:45:03.507 DEBUG [6384]: Closing database connection -- 17:45:03.507 SQL [6384]: pgsql_close() -- 17:45:05.377 INFO [6384]: COREGRADE is starting... -- 17:45:05.377 INFO [6384]: Version from config: 1.0 -- 17:45:05.377 DEBUG [6384]: Connecting to database... -- 17:45:05.377 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:05.377 SQL [6384]: pgsql_db_connect() -- 17:45:05.381 DEBUG [6384]: Database connection successful -- 17:45:05.381 INFO [6384]: _SERVER found -- 17:45:05.381 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 17:45:05.381 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:45:05.381 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:45:05.381 INFO [6384]: QUERY_STRING = /member/page -- 17:45:05.381 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:05.421 INFO [6384]: COREGRADE is stopping... -- 17:45:05.422 DEBUG [6384]: Closing database connection -- 17:45:05.422 SQL [6384]: pgsql_close() -- 17:45:05.650 INFO [6384]: COREGRADE is starting... -- 17:45:05.650 INFO [6384]: Version from config: 1.0 -- 17:45:05.650 DEBUG [6384]: Connecting to database... -- 17:45:05.651 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:05.651 SQL [6384]: pgsql_db_connect() -- 17:45:05.655 DEBUG [6384]: Database connection successful -- 17:45:05.655 INFO [6384]: _SERVER found -- 17:45:05.655 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 17:45:05.655 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:45:05.655 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:45:05.655 INFO [6384]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:45:05.655 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:05.666 INFO [6384]: COREGRADE is stopping... -- 17:45:05.666 DEBUG [6384]: Closing database connection -- 17:45:05.666 SQL [6384]: pgsql_close() -- 17:45:08.539 INFO [6384]: COREGRADE is starting... -- 17:45:08.539 INFO [6384]: Version from config: 1.0 -- 17:45:08.539 DEBUG [6384]: Connecting to database... -- 17:45:08.540 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:08.540 SQL [6384]: pgsql_db_connect() -- 17:45:08.544 DEBUG [6384]: Database connection successful -- 17:45:08.544 INFO [6384]: _SERVER found -- 17:45:08.544 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 17:45:08.544 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:45:08.544 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:45:08.544 INFO [6384]: QUERY_STRING = /member/configure -- 17:45:08.544 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:08.583 INFO [6384]: COREGRADE is stopping... -- 17:45:08.583 DEBUG [6384]: Closing database connection -- 17:45:08.583 SQL [6384]: pgsql_close() -- 17:45:08.816 INFO [6384]: COREGRADE is starting... -- 17:45:08.816 INFO [6384]: Version from config: 1.0 -- 17:45:08.816 DEBUG [6384]: Connecting to database... -- 17:45:08.816 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:08.816 SQL [6384]: pgsql_db_connect() -- 17:45:08.820 DEBUG [6384]: Database connection successful -- 17:45:08.820 INFO [6384]: _SERVER found -- 17:45:08.820 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 17:45:08.820 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:45:08.820 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:45:08.820 INFO [6384]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:45:08.820 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:08.831 INFO [6384]: COREGRADE is stopping... -- 17:45:08.831 DEBUG [6384]: Closing database connection -- 17:45:08.831 SQL [6384]: pgsql_close() -- 17:45:11.923 INFO [6384]: COREGRADE is starting... -- 17:45:11.923 INFO [6384]: Version from config: 1.0 -- 17:45:11.923 DEBUG [6384]: Connecting to database... -- 17:45:11.923 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:11.923 SQL [6384]: pgsql_db_connect() -- 17:45:11.927 DEBUG [6384]: Database connection successful -- 17:45:11.927 INFO [6384]: _SERVER found -- 17:45:11.927 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 17:45:11.927 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:45:11.927 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:45:11.927 INFO [6384]: QUERY_STRING = /member/viewSharePage -- 17:45:11.927 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:11.957 INFO [6384]: COREGRADE is stopping... -- 17:45:11.957 DEBUG [6384]: Closing database connection -- 17:45:11.957 SQL [6384]: pgsql_close() -- 17:45:13.159 INFO [6384]: COREGRADE is starting... -- 17:45:13.159 INFO [6384]: Version from config: 1.0 -- 17:45:13.159 DEBUG [6384]: Connecting to database... -- 17:45:13.159 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:13.159 SQL [6384]: pgsql_db_connect() -- 17:45:13.163 DEBUG [6384]: Database connection successful -- 17:45:13.163 INFO [6384]: _SERVER found -- 17:45:13.163 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 17:45:13.163 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:45:13.163 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:45:13.163 INFO [6384]: QUERY_STRING = /member/viewSharePage -- 17:45:13.163 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:13.194 INFO [6384]: COREGRADE is stopping... -- 17:45:13.194 DEBUG [6384]: Closing database connection -- 17:45:13.194 SQL [6384]: pgsql_close() -- 17:45:13.711 INFO [6384]: COREGRADE is starting... -- 17:45:13.711 INFO [6384]: Version from config: 1.0 -- 17:45:13.711 DEBUG [6384]: Connecting to database... -- 17:45:13.711 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:13.711 SQL [6384]: pgsql_db_connect() -- 17:45:13.715 DEBUG [6384]: Database connection successful -- 17:45:13.715 INFO [6384]: _SERVER found -- 17:45:13.715 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 17:45:13.715 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:45:13.715 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:45:13.715 INFO [6384]: QUERY_STRING = /member/viewSharePage -- 17:45:13.715 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:13.745 INFO [6384]: COREGRADE is stopping... -- 17:45:13.745 DEBUG [6384]: Closing database connection -- 17:45:13.745 SQL [6384]: pgsql_close() -- 17:45:14.142 INFO [6384]: COREGRADE is starting... -- 17:45:14.142 INFO [6384]: Version from config: 1.0 -- 17:45:14.142 DEBUG [6384]: Connecting to database... -- 17:45:14.142 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:14.142 SQL [6384]: pgsql_db_connect() -- 17:45:14.146 DEBUG [6384]: Database connection successful -- 17:45:14.146 INFO [6384]: _SERVER found -- 17:45:14.146 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 17:45:14.146 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:45:14.146 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:45:14.146 INFO [6384]: QUERY_STRING = /member/viewSharePage -- 17:45:14.146 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:14.177 INFO [6384]: COREGRADE is stopping... -- 17:45:14.177 DEBUG [6384]: Closing database connection -- 17:45:14.177 SQL [6384]: pgsql_close() -- 17:45:31.400 INFO [6405]: COREGRADE is starting... -- 17:45:31.401 INFO [6405]: Version from config: 1.0 -- 17:45:31.401 DEBUG [6405]: Connecting to database... -- 17:45:31.401 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:31.401 SQL [6405]: pgsql_db_connect() -- 17:45:31.405 DEBUG [6405]: Database connection successful -- 17:45:31.405 INFO [6405]: _SERVER found -- 17:45:31.405 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 17:45:31.405 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 17:45:31.405 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kohnn57nd9aleb147mf83253o2ssb4mg -- 17:45:31.405 INFO [6405]: QUERY_STRING = /member -- 17:45:31.405 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:31.441 INFO [6405]: COREGRADE is stopping... -- 17:45:31.441 DEBUG [6405]: Closing database connection -- 17:45:31.441 SQL [6405]: pgsql_close() -- 17:45:31.694 INFO [6405]: COREGRADE is starting... -- 17:45:31.695 INFO [6405]: Version from config: 1.0 -- 17:45:31.695 DEBUG [6405]: Connecting to database... -- 17:45:31.695 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:31.695 SQL [6405]: pgsql_db_connect() -- 17:45:31.699 DEBUG [6405]: Database connection successful -- 17:45:31.699 INFO [6405]: _SERVER found -- 17:45:31.699 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 17:45:31.699 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 17:45:31.699 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kohnn57nd9aleb147mf83253o2ssb4mg -- 17:45:31.699 INFO [6405]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:45:31.699 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:31.710 INFO [6405]: COREGRADE is stopping... -- 17:45:31.710 DEBUG [6405]: Closing database connection -- 17:45:31.710 SQL [6405]: pgsql_close() -- 17:45:31.738 INFO [6405]: COREGRADE is starting... -- 17:45:31.738 INFO [6405]: Version from config: 1.0 -- 17:45:31.738 DEBUG [6405]: Connecting to database... -- 17:45:31.738 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:31.738 SQL [6405]: pgsql_db_connect() -- 17:45:31.742 DEBUG [6405]: Database connection successful -- 17:45:31.742 INFO [6405]: _SERVER found -- 17:45:31.742 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 17:45:31.742 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 17:45:31.742 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kohnn57nd9aleb147mf83253o2ssb4mg -- 17:45:31.742 INFO [6405]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:45:31.742 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:31.753 INFO [6405]: COREGRADE is stopping... -- 17:45:31.753 DEBUG [6405]: Closing database connection -- 17:45:31.753 SQL [6405]: pgsql_close() -- 17:45:34.494 INFO [6405]: COREGRADE is starting... -- 17:45:34.494 INFO [6405]: Version from config: 1.0 -- 17:45:34.494 DEBUG [6405]: Connecting to database... -- 17:45:34.495 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:34.495 SQL [6405]: pgsql_db_connect() -- 17:45:34.499 DEBUG [6405]: Database connection successful -- 17:45:34.499 INFO [6405]: _SERVER found -- 17:45:34.499 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 17:45:34.499 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 17:45:34.499 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kohnn57nd9aleb147mf83253o2ssb4mg -- 17:45:34.499 INFO [6405]: QUERY_STRING = /member/page -- 17:45:34.499 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:34.536 INFO [6405]: COREGRADE is stopping... -- 17:45:34.536 DEBUG [6405]: Closing database connection -- 17:45:34.536 SQL [6405]: pgsql_close() -- 17:45:34.713 INFO [6405]: COREGRADE is starting... -- 17:45:34.713 INFO [6405]: Version from config: 1.0 -- 17:45:34.713 DEBUG [6405]: Connecting to database... -- 17:45:34.713 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:34.713 SQL [6405]: pgsql_db_connect() -- 17:45:34.717 DEBUG [6405]: Database connection successful -- 17:45:34.717 INFO [6405]: _SERVER found -- 17:45:34.717 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 17:45:34.717 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 17:45:34.717 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kohnn57nd9aleb147mf83253o2ssb4mg -- 17:45:34.717 INFO [6405]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:45:34.717 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:34.728 INFO [6405]: COREGRADE is stopping... -- 17:45:34.728 DEBUG [6405]: Closing database connection -- 17:45:34.728 SQL [6405]: pgsql_close() -- 17:45:34.752 INFO [7160]: COREGRADE is starting... -- 17:45:34.753 INFO [7160]: Version from config: 1.0 -- 17:45:34.753 DEBUG [7160]: Connecting to database... -- 17:45:34.753 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:34.753 SQL [7160]: pgsql_db_connect() -- 17:45:34.757 DEBUG [7160]: Database connection successful -- 17:45:34.757 INFO [7160]: _SERVER found -- 17:45:34.757 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 17:45:34.757 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:45:34.757 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:45:34.757 INFO [7160]: QUERY_STRING = /member/deletePageAction -- 17:45:34.757 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:34.793 INFO [7160]: COREGRADE is stopping... -- 17:45:34.793 DEBUG [7160]: Closing database connection -- 17:45:34.793 SQL [7160]: pgsql_close() -- 17:45:34.853 INFO [6405]: COREGRADE is starting... -- 17:45:34.853 INFO [6405]: Version from config: 1.0 -- 17:45:34.853 DEBUG [6405]: Connecting to database... -- 17:45:34.853 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:34.853 SQL [6405]: pgsql_db_connect() -- 17:45:34.857 DEBUG [6405]: Database connection successful -- 17:45:34.857 INFO [6405]: _SERVER found -- 17:45:34.857 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 17:45:34.857 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 17:45:34.857 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kohnn57nd9aleb147mf83253o2ssb4mg -- 17:45:34.857 INFO [6405]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:45:34.857 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:34.869 INFO [6405]: COREGRADE is stopping... -- 17:45:34.869 DEBUG [6405]: Closing database connection -- 17:45:34.869 SQL [6405]: pgsql_close() -- 17:45:37.002 INFO [7160]: COREGRADE is starting... -- 17:45:37.002 INFO [7160]: Version from config: 1.0 -- 17:45:37.002 DEBUG [7160]: Connecting to database... -- 17:45:37.002 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:37.002 SQL [7160]: pgsql_db_connect() -- 17:45:37.006 DEBUG [7160]: Database connection successful -- 17:45:37.006 INFO [7160]: _SERVER found -- 17:45:37.006 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 17:45:37.006 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:45:37.006 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:45:37.006 INFO [7160]: QUERY_STRING = /member -- 17:45:37.006 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:37.046 INFO [7160]: COREGRADE is stopping... -- 17:45:37.046 DEBUG [7160]: Closing database connection -- 17:45:37.046 SQL [7160]: pgsql_close() -- 17:45:37.371 INFO [7160]: COREGRADE is starting... -- 17:45:37.372 INFO [7160]: Version from config: 1.0 -- 17:45:37.372 DEBUG [7160]: Connecting to database... -- 17:45:37.372 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:37.372 SQL [7160]: pgsql_db_connect() -- 17:45:37.376 DEBUG [7160]: Database connection successful -- 17:45:37.376 INFO [7160]: _SERVER found -- 17:45:37.376 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 17:45:37.376 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:45:37.376 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:45:37.376 INFO [7160]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:45:37.376 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:37.387 INFO [7160]: COREGRADE is stopping... -- 17:45:37.387 DEBUG [7160]: Closing database connection -- 17:45:37.387 SQL [7160]: pgsql_close() -- 17:45:44.526 INFO [7159]: COREGRADE is starting... -- 17:45:44.526 INFO [7159]: Version from config: 1.0 -- 17:45:44.526 DEBUG [7159]: Connecting to database... -- 17:45:44.526 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:44.526 SQL [7159]: pgsql_db_connect() -- 17:45:44.530 DEBUG [7159]: Database connection successful -- 17:45:44.530 INFO [7159]: _SERVER found -- 17:45:44.530 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 17:45:44.530 INFO [7159]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:45:44.530 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:45:44.530 INFO [7159]: QUERY_STRING = /member -- 17:45:44.530 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:44.570 INFO [7159]: COREGRADE is stopping... -- 17:45:44.570 DEBUG [7159]: Closing database connection -- 17:45:44.570 SQL [7159]: pgsql_close() -- 17:45:44.797 INFO [7159]: COREGRADE is starting... -- 17:45:44.797 INFO [7159]: Version from config: 1.0 -- 17:45:44.797 DEBUG [7159]: Connecting to database... -- 17:45:44.797 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:44.797 SQL [7159]: pgsql_db_connect() -- 17:45:44.801 DEBUG [7159]: Database connection successful -- 17:45:44.801 INFO [7159]: _SERVER found -- 17:45:44.801 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 17:45:44.801 INFO [7159]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:45:44.801 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:45:44.801 INFO [7159]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:45:44.801 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:44.812 INFO [7159]: COREGRADE is stopping... -- 17:45:44.812 DEBUG [7159]: Closing database connection -- 17:45:44.812 SQL [7159]: pgsql_close() -- 17:45:47.356 INFO [6383]: COREGRADE is starting... -- 17:45:47.357 INFO [6383]: Version from config: 1.0 -- 17:45:47.357 DEBUG [6383]: Connecting to database... -- 17:45:47.357 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:47.357 SQL [6383]: pgsql_db_connect() -- 17:45:47.361 DEBUG [6383]: Database connection successful -- 17:45:47.361 INFO [6383]: _SERVER found -- 17:45:47.361 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 17:45:47.361 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 17:45:47.361 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kohnn57nd9aleb147mf83253o2ssb4mg -- 17:45:47.361 INFO [6383]: QUERY_STRING = /member -- 17:45:47.361 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:47.397 INFO [6383]: COREGRADE is stopping... -- 17:45:47.397 DEBUG [6383]: Closing database connection -- 17:45:47.397 SQL [6383]: pgsql_close() -- 17:45:47.656 INFO [6383]: COREGRADE is starting... -- 17:45:47.656 INFO [6383]: Version from config: 1.0 -- 17:45:47.656 DEBUG [6383]: Connecting to database... -- 17:45:47.656 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:47.656 SQL [6383]: pgsql_db_connect() -- 17:45:47.660 DEBUG [6383]: Database connection successful -- 17:45:47.660 INFO [6383]: _SERVER found -- 17:45:47.660 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 17:45:47.660 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 17:45:47.660 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kohnn57nd9aleb147mf83253o2ssb4mg -- 17:45:47.660 INFO [6383]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:45:47.660 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:47.671 INFO [6383]: COREGRADE is stopping... -- 17:45:47.671 DEBUG [6383]: Closing database connection -- 17:45:47.671 SQL [6383]: pgsql_close() -- 17:45:47.697 INFO [6383]: COREGRADE is starting... -- 17:45:47.697 INFO [6383]: Version from config: 1.0 -- 17:45:47.697 DEBUG [6383]: Connecting to database... -- 17:45:47.697 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:47.697 SQL [6383]: pgsql_db_connect() -- 17:45:47.701 DEBUG [6383]: Database connection successful -- 17:45:47.701 INFO [6383]: _SERVER found -- 17:45:47.701 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 17:45:47.701 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 17:45:47.701 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kohnn57nd9aleb147mf83253o2ssb4mg -- 17:45:47.701 INFO [6383]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:45:47.701 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:47.712 INFO [6383]: COREGRADE is stopping... -- 17:45:47.712 DEBUG [6383]: Closing database connection -- 17:45:47.712 SQL [6383]: pgsql_close() -- 17:45:47.938 INFO [7159]: COREGRADE is starting... -- 17:45:47.939 INFO [7159]: Version from config: 1.0 -- 17:45:47.939 DEBUG [7159]: Connecting to database... -- 17:45:47.939 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:47.939 SQL [7159]: pgsql_db_connect() -- 17:45:47.943 DEBUG [7159]: Database connection successful -- 17:45:47.943 INFO [7159]: _SERVER found -- 17:45:47.943 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 17:45:47.943 INFO [7159]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:45:47.943 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:45:47.943 INFO [7159]: QUERY_STRING = /member/configure -- 17:45:47.943 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:47.982 INFO [7159]: COREGRADE is stopping... -- 17:45:47.982 DEBUG [7159]: Closing database connection -- 17:45:47.982 SQL [7159]: pgsql_close() -- 17:45:48.206 INFO [7159]: COREGRADE is starting... -- 17:45:48.207 INFO [7159]: Version from config: 1.0 -- 17:45:48.207 DEBUG [7159]: Connecting to database... -- 17:45:48.207 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:48.207 SQL [7159]: pgsql_db_connect() -- 17:45:48.211 DEBUG [7159]: Database connection successful -- 17:45:48.211 INFO [7159]: _SERVER found -- 17:45:48.211 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 17:45:48.211 INFO [7159]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:45:48.211 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:45:48.211 INFO [7159]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:45:48.211 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:48.222 INFO [7159]: COREGRADE is stopping... -- 17:45:48.222 DEBUG [7159]: Closing database connection -- 17:45:48.222 SQL [7159]: pgsql_close() -- 17:45:55.377 INFO [6409]: COREGRADE is starting... -- 17:45:55.377 INFO [6409]: Version from config: 1.0 -- 17:45:55.377 DEBUG [6409]: Connecting to database... -- 17:45:55.377 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:55.377 SQL [6409]: pgsql_db_connect() -- 17:45:55.381 DEBUG [6409]: Database connection successful -- 17:45:55.381 INFO [6409]: _SERVER found -- 17:45:55.381 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 17:45:55.381 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:45:55.381 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:45:55.381 INFO [6409]: QUERY_STRING = /member -- 17:45:55.381 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:55.421 INFO [6409]: COREGRADE is stopping... -- 17:45:55.421 DEBUG [6409]: Closing database connection -- 17:45:55.421 SQL [6409]: pgsql_close() -- 17:45:55.655 INFO [6409]: COREGRADE is starting... -- 17:45:55.656 INFO [6409]: Version from config: 1.0 -- 17:45:55.656 DEBUG [6409]: Connecting to database... -- 17:45:55.656 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:55.656 SQL [6409]: pgsql_db_connect() -- 17:45:55.660 DEBUG [6409]: Database connection successful -- 17:45:55.660 INFO [6409]: _SERVER found -- 17:45:55.660 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 17:45:55.660 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:45:55.660 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:45:55.660 INFO [6409]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:45:55.660 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:55.671 INFO [6409]: COREGRADE is stopping... -- 17:45:55.671 DEBUG [6409]: Closing database connection -- 17:45:55.671 SQL [6409]: pgsql_close() -- 17:45:57.082 INFO [7017]: COREGRADE is starting... -- 17:45:57.082 INFO [7017]: Version from config: 1.0 -- 17:45:57.082 DEBUG [7017]: Connecting to database... -- 17:45:57.082 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:57.082 SQL [7017]: pgsql_db_connect() -- 17:45:57.117 INFO [7017]: COREGRADE is starting... -- 17:45:57.117 INFO [7017]: Version from config: 1.0 -- 17:45:57.118 DEBUG [7017]: Connecting to database... -- 17:45:57.118 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:57.118 SQL [7017]: pgsql_db_connect() -- 17:45:57.121 DEBUG [7017]: Database connection successful -- 17:45:57.121 INFO [7017]: _SERVER found -- 17:45:57.121 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 17:45:57.121 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 17:45:57.121 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kohnn57nd9aleb147mf83253o2ssb4mg -- 17:45:57.121 INFO [7017]: QUERY_STRING = -- 17:45:57.121 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:57.121 INFO [7017]: SystemStatus()09-09-********~************ -- 17:45:57.121 INFO [7017]: long coregrade_api_main(CVars in, CVars &out) -- 17:45:57.121 INFO [7017]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 17:45:57.121 INFO [7017]: account calls -- 17:45:57.121 INFO [7017]: account_calls() -- 17:45:57.121 INFO [7017]: LoginCoreGradeAccount() -- 17:45:57.121 FLOG_MAX [7017]: REQ_STRING(username) -- 17:45:57.122 FLOG_MAX [7017]: REQ_STRING(password) -- 17:45:57.122 FLOG_MAX [7017]: REQ_STRING(sessionid) -- 17:45:57.122 FLOG_MAX [7017]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:45:57.122 SQL [7017]: pgsql_query() -- 17:45:57.122 SQL [7017]: About to run query: -- 17:45:57.122 SQL [7017]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 17:45:57.125 SQL [7017]: Found rows: 1 -- 17:45:57.125 FLOG_MAX [7017]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 17:45:57.125 INFO [7017]: long SessionCheck(long uid, const char *sessionid, int create ) -- 17:45:57.125 SQL [7017]: pgsql_exec() -- 17:45:57.125 SQL [7017]: About to run query: -- 17:45:57.125 SQL [7017]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 17:45:57.126 SQL [7017]: PQcmdTuples: 1 -- 17:45:57.126 SQL [7017]: Affected rows: 1 -- 17:45:57.126 SQL [7017]: pgsql_exec() -- 17:45:57.126 SQL [7017]: About to run query: -- 17:45:57.126 SQL [7017]: DELETE FROM members_session WHERE member_id=5 -- 17:45:57.127 SQL [7017]: PQcmdTuples: 0 -- 17:45:57.127 SQL [7017]: Affected rows: 0 -- 17:45:57.127 SQL [7017]: pgsql_query() -- 17:45:57.127 SQL [7017]: About to run query: -- 17:45:57.127 SQL [7017]: SELECT * FROM members_session WHERE member_id=5 AND session<>'B92118C17B9F4462576C0AD3A6D190EB' -- 17:45:57.127 SQL [7017]: Found rows: 0 -- 17:45:57.127 SQL [7017]: Found rows: 0 -- 17:45:57.127 FLOG_MAX [7017]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:45:57.127 SQL [7017]: pgsql_query() -- 17:45:57.127 SQL [7017]: About to run query: -- 17:45:57.127 SQL [7017]: SELECT * FROM members_session WHERE member_id=5 AND session='B92118C17B9F4462576C0AD3A6D190EB' -- 17:45:57.128 SQL [7017]: Found rows: 0 -- 17:45:57.128 SQL [7017]: Found rows: 0 -- 17:45:57.128 FLOG_MAX [7017]: insert_db_record() -- 17:45:57.128 SQL [7017]: pgsql_exec() -- 17:45:57.128 SQL [7017]: About to run query: -- 17:45:57.128 SQL [7017]: INSERT INTO members_session (member_id,session) VALUES ('5','B92118C17B9F4462576C0AD3A6D190EB') -- 17:45:57.130 SQL [7017]: PQcmdTuples: 1 -- 17:45:57.130 SQL [7017]: Affected rows: 1 -- 17:45:57.130 FLOG_MAX [7017]: SELECT currval('members_session_id_seq') -- 17:45:57.130 SQL [7017]: pgsql_query() -- 17:45:57.130 SQL [7017]: About to run query: -- 17:45:57.130 SQL [7017]: SELECT currval('members_session_id_seq') -- 17:45:57.130 SQL [7017]: Found rows: 1 -- 17:45:57.130 INFO [7017]: CreateDefaultPage() -- 17:45:57.130 FLOG_MAX [7017]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:45:57.130 SQL [7017]: pgsql_query() -- 17:45:57.130 SQL [7017]: About to run query: -- 17:45:57.130 SQL [7017]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 17:45:57.131 SQL [7017]: Found rows: 1 -- 17:45:57.131 FLOG_MAX [7017]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 17:45:57.131 SQL [7017]: pgsql_query() -- 17:45:57.131 SQL [7017]: About to run query: -- 17:45:57.131 SQL [7017]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 17:45:57.131 SQL [7017]: Found rows: 1 -- 17:45:57.131 INFO [7017]: /CreateDefaultPage() -- 17:45:57.131 INFO [7017]: /LoginCoreGradeAccount() -- 17:45:57.131 INFO [7017]: RET: added=2020-02-05 06:47:23.982154 -- 17:45:57.131 INFO [7017]: RET: email=ameye+11@chiefsoft.com -- 17:45:57.131 INFO [7017]: RET: firstname=Olu -- 17:45:57.131 INFO [7017]: RET: id=5 -- 17:45:57.131 INFO [7017]: RET: last_login= -- 17:45:57.131 INFO [7017]: RET: lastname=Amey -- 17:45:57.131 INFO [7017]: RET: loc=192.168.1.13 -- 17:45:57.131 INFO [7017]: RET: member_id=5 -- 17:45:57.131 INFO [7017]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 17:45:57.131 INFO [7017]: RET: phone= -- 17:45:57.131 INFO [7017]: RET: pid= -- 17:45:57.131 INFO [7017]: RET: result=YES I GET TO BACK END -- 17:45:57.131 INFO [7017]: RET: sessionid=B92118C17B9F4462576C0AD3A6D190EB -- 17:45:57.131 INFO [7017]: RET: status=1 -- 17:45:57.131 INFO [7017]: RET: stauts=OK -- 17:45:57.131 INFO [7017]: RET: username=ameye+11@chiefsoft.com -- 17:45:57.131 INFO [7017]: RET: verified= -- 17:45:57.133 INFO [7017]: COREGRADE is stopping... -- 17:45:57.133 DEBUG [7017]: Closing database connection -- 17:45:57.133 SQL [7017]: pgsql_close() -- 17:45:57.086 DEBUG [7017]: Database connection successful -- 17:45:57.086 INFO [7017]: _SERVER found -- 17:45:57.086 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 17:45:57.086 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 17:45:57.086 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kohnn57nd9aleb147mf83253o2ssb4mg -- 17:45:57.086 INFO [7017]: QUERY_STRING = /auth -- 17:45:57.086 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:57.133 INFO [7017]: COREGRADE is stopping... -- 17:45:57.133 DEBUG [7017]: Closing database connection -- 17:45:57.133 SQL [7017]: pgsql_close() -- 17:45:57.159 INFO [7017]: COREGRADE is starting... -- 17:45:57.159 INFO [7017]: Version from config: 1.0 -- 17:45:57.159 DEBUG [7017]: Connecting to database... -- 17:45:57.159 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:57.159 SQL [7017]: pgsql_db_connect() -- 17:45:57.163 DEBUG [7017]: Database connection successful -- 17:45:57.163 INFO [7017]: _SERVER found -- 17:45:57.163 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 17:45:57.163 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 17:45:57.163 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kohnn57nd9aleb147mf83253o2ssb4mg -- 17:45:57.163 INFO [7017]: QUERY_STRING = /member/index -- 17:45:57.163 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:57.198 INFO [7017]: COREGRADE is stopping... -- 17:45:57.198 DEBUG [7017]: Closing database connection -- 17:45:57.198 SQL [7017]: pgsql_close() -- 17:45:57.436 INFO [7017]: COREGRADE is starting... -- 17:45:57.437 INFO [7017]: Version from config: 1.0 -- 17:45:57.437 DEBUG [7017]: Connecting to database... -- 17:45:57.437 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:57.437 SQL [7017]: pgsql_db_connect() -- 17:45:57.441 DEBUG [7017]: Database connection successful -- 17:45:57.441 INFO [7017]: _SERVER found -- 17:45:57.441 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 17:45:57.441 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 17:45:57.441 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kohnn57nd9aleb147mf83253o2ssb4mg -- 17:45:57.441 INFO [7017]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:45:57.441 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:57.453 INFO [7017]: COREGRADE is stopping... -- 17:45:57.453 DEBUG [7017]: Closing database connection -- 17:45:57.453 SQL [7017]: pgsql_close() -- 17:45:57.493 INFO [6381]: COREGRADE is starting... -- 17:45:57.493 INFO [6381]: Version from config: 1.0 -- 17:45:57.493 DEBUG [6381]: Connecting to database... -- 17:45:57.493 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:57.493 SQL [6381]: pgsql_db_connect() -- 17:45:57.497 DEBUG [6381]: Database connection successful -- 17:45:57.497 INFO [6381]: _SERVER found -- 17:45:57.497 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 17:45:57.497 INFO [6381]: SERVER_NAME = oameye.works.coregrade.com -- 17:45:57.497 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kohnn57nd9aleb147mf83253o2ssb4mg -- 17:45:57.497 INFO [6381]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:45:57.497 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:57.509 INFO [6381]: COREGRADE is stopping... -- 17:45:57.509 DEBUG [6381]: Closing database connection -- 17:45:57.509 SQL [6381]: pgsql_close() -- 17:46:01.108 INFO [6385]: COREGRADE is starting... -- 17:46:01.109 INFO [6385]: Version from config: 1.0 -- 17:46:01.109 DEBUG [6385]: Connecting to database... -- 17:46:01.109 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:01.109 SQL [6385]: pgsql_db_connect() -- 17:46:01.113 DEBUG [6385]: Database connection successful -- 17:46:01.113 INFO [6385]: _SERVER found -- 17:46:01.113 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 17:46:01.113 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:46:01.113 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:46:01.113 INFO [6385]: QUERY_STRING = /member -- 17:46:01.113 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:01.152 INFO [6385]: COREGRADE is stopping... -- 17:46:01.152 DEBUG [6385]: Closing database connection -- 17:46:01.152 SQL [6385]: pgsql_close() -- 17:46:01.382 INFO [6385]: COREGRADE is starting... -- 17:46:01.382 INFO [6385]: Version from config: 1.0 -- 17:46:01.382 DEBUG [6385]: Connecting to database... -- 17:46:01.382 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:01.382 SQL [6385]: pgsql_db_connect() -- 17:46:01.386 DEBUG [6385]: Database connection successful -- 17:46:01.386 INFO [6385]: _SERVER found -- 17:46:01.386 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 17:46:01.386 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:46:01.386 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:46:01.386 INFO [6385]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:46:01.386 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:01.398 INFO [6385]: COREGRADE is stopping... -- 17:46:01.398 DEBUG [6385]: Closing database connection -- 17:46:01.398 SQL [6385]: pgsql_close() -- 17:46:01.968 INFO [6385]: COREGRADE is starting... -- 17:46:01.969 INFO [6385]: Version from config: 1.0 -- 17:46:01.969 DEBUG [6385]: Connecting to database... -- 17:46:01.969 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:01.969 SQL [6385]: pgsql_db_connect() -- 17:46:01.973 DEBUG [6385]: Database connection successful -- 17:46:01.973 INFO [6385]: _SERVER found -- 17:46:01.973 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 17:46:01.973 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:46:01.973 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:46:01.973 INFO [6385]: QUERY_STRING = /member -- 17:46:01.973 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:02.011 INFO [6385]: COREGRADE is stopping... -- 17:46:02.011 DEBUG [6385]: Closing database connection -- 17:46:02.011 SQL [6385]: pgsql_close() -- 17:46:02.251 INFO [6385]: COREGRADE is starting... -- 17:46:02.251 INFO [6385]: Version from config: 1.0 -- 17:46:02.251 DEBUG [6385]: Connecting to database... -- 17:46:02.251 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:02.251 SQL [6385]: pgsql_db_connect() -- 17:46:02.255 DEBUG [6385]: Database connection successful -- 17:46:02.255 INFO [6385]: _SERVER found -- 17:46:02.255 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 17:46:02.255 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:46:02.255 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:46:02.255 INFO [6385]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:46:02.255 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:02.267 INFO [6385]: COREGRADE is stopping... -- 17:46:02.267 DEBUG [6385]: Closing database connection -- 17:46:02.267 SQL [6385]: pgsql_close() -- 17:46:02.388 INFO [6385]: COREGRADE is starting... -- 17:46:02.388 INFO [6385]: Version from config: 1.0 -- 17:46:02.388 DEBUG [6385]: Connecting to database... -- 17:46:02.388 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:02.388 SQL [6385]: pgsql_db_connect() -- 17:46:02.392 DEBUG [6385]: Database connection successful -- 17:46:02.392 INFO [6385]: _SERVER found -- 17:46:02.392 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 17:46:02.392 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:46:02.392 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:46:02.392 INFO [6385]: QUERY_STRING = /member -- 17:46:02.392 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:02.431 INFO [6385]: COREGRADE is stopping... -- 17:46:02.431 DEBUG [6385]: Closing database connection -- 17:46:02.431 SQL [6385]: pgsql_close() -- 17:46:02.624 INFO [6385]: COREGRADE is starting... -- 17:46:02.624 INFO [6385]: Version from config: 1.0 -- 17:46:02.624 DEBUG [6385]: Connecting to database... -- 17:46:02.624 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:02.624 SQL [6385]: pgsql_db_connect() -- 17:46:02.628 DEBUG [6385]: Database connection successful -- 17:46:02.628 INFO [6385]: _SERVER found -- 17:46:02.628 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 17:46:02.628 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:46:02.628 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:46:02.628 INFO [6385]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:46:02.628 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:02.639 INFO [6385]: COREGRADE is stopping... -- 17:46:02.639 DEBUG [6385]: Closing database connection -- 17:46:02.639 SQL [6385]: pgsql_close() -- 17:46:02.813 INFO [6385]: COREGRADE is starting... -- 17:46:02.813 INFO [6385]: Version from config: 1.0 -- 17:46:02.813 DEBUG [6385]: Connecting to database... -- 17:46:02.813 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:02.813 SQL [6385]: pgsql_db_connect() -- 17:46:02.817 DEBUG [6385]: Database connection successful -- 17:46:02.817 INFO [6385]: _SERVER found -- 17:46:02.817 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 17:46:02.817 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:46:02.817 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:46:02.817 INFO [6385]: QUERY_STRING = /member -- 17:46:02.817 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:02.856 INFO [6385]: COREGRADE is stopping... -- 17:46:02.856 DEBUG [6385]: Closing database connection -- 17:46:02.856 SQL [6385]: pgsql_close() -- 17:46:03.065 INFO [6385]: COREGRADE is starting... -- 17:46:03.065 INFO [6385]: Version from config: 1.0 -- 17:46:03.065 DEBUG [6385]: Connecting to database... -- 17:46:03.065 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:03.065 SQL [6385]: pgsql_db_connect() -- 17:46:03.069 DEBUG [6385]: Database connection successful -- 17:46:03.069 INFO [6385]: _SERVER found -- 17:46:03.069 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 17:46:03.069 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:46:03.069 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:46:03.069 INFO [6385]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:46:03.069 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:03.080 INFO [6385]: COREGRADE is stopping... -- 17:46:03.080 DEBUG [6385]: Closing database connection -- 17:46:03.080 SQL [6385]: pgsql_close() -- 17:46:03.215 INFO [6385]: COREGRADE is starting... -- 17:46:03.215 INFO [6385]: Version from config: 1.0 -- 17:46:03.215 DEBUG [6385]: Connecting to database... -- 17:46:03.215 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:03.215 SQL [6385]: pgsql_db_connect() -- 17:46:03.219 DEBUG [6385]: Database connection successful -- 17:46:03.219 INFO [6385]: _SERVER found -- 17:46:03.219 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 17:46:03.219 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:46:03.219 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:46:03.219 INFO [6385]: QUERY_STRING = /member -- 17:46:03.219 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:03.258 INFO [6385]: COREGRADE is stopping... -- 17:46:03.258 DEBUG [6385]: Closing database connection -- 17:46:03.258 SQL [6385]: pgsql_close() -- 17:46:03.475 INFO [6385]: COREGRADE is starting... -- 17:46:03.475 INFO [6385]: Version from config: 1.0 -- 17:46:03.475 DEBUG [6385]: Connecting to database... -- 17:46:03.475 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:03.475 SQL [6385]: pgsql_db_connect() -- 17:46:03.479 DEBUG [6385]: Database connection successful -- 17:46:03.479 INFO [6385]: _SERVER found -- 17:46:03.479 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 17:46:03.479 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:46:03.479 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:46:03.479 INFO [6385]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:46:03.479 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:03.490 INFO [6385]: COREGRADE is stopping... -- 17:46:03.490 DEBUG [6385]: Closing database connection -- 17:46:03.490 SQL [6385]: pgsql_close() -- 17:46:03.625 INFO [6385]: COREGRADE is starting... -- 17:46:03.625 INFO [6385]: Version from config: 1.0 -- 17:46:03.625 DEBUG [6385]: Connecting to database... -- 17:46:03.625 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:03.625 SQL [6385]: pgsql_db_connect() -- 17:46:03.629 DEBUG [6385]: Database connection successful -- 17:46:03.629 INFO [6385]: _SERVER found -- 17:46:03.629 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 17:46:03.629 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:46:03.629 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:46:03.629 INFO [6385]: QUERY_STRING = /member -- 17:46:03.629 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:03.667 INFO [6385]: COREGRADE is stopping... -- 17:46:03.667 DEBUG [6385]: Closing database connection -- 17:46:03.667 SQL [6385]: pgsql_close() -- 17:46:03.857 INFO [6385]: COREGRADE is starting... -- 17:46:03.857 INFO [6385]: Version from config: 1.0 -- 17:46:03.857 DEBUG [6385]: Connecting to database... -- 17:46:03.857 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:03.857 SQL [6385]: pgsql_db_connect() -- 17:46:03.861 DEBUG [6385]: Database connection successful -- 17:46:03.861 INFO [6385]: _SERVER found -- 17:46:03.861 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 17:46:03.861 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:46:03.861 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:46:03.861 INFO [6385]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:46:03.861 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:03.873 INFO [6385]: COREGRADE is stopping... -- 17:46:03.873 DEBUG [6385]: Closing database connection -- 17:46:03.873 SQL [6385]: pgsql_close() -- 17:46:03.939 INFO [6385]: COREGRADE is starting... -- 17:46:03.939 INFO [6385]: Version from config: 1.0 -- 17:46:03.939 DEBUG [6385]: Connecting to database... -- 17:46:03.939 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:03.939 SQL [6385]: pgsql_db_connect() -- 17:46:03.943 DEBUG [6385]: Database connection successful -- 17:46:03.943 INFO [6385]: _SERVER found -- 17:46:03.943 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 17:46:03.943 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:46:03.943 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:46:03.943 INFO [6385]: QUERY_STRING = /member -- 17:46:03.943 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:03.982 INFO [6385]: COREGRADE is stopping... -- 17:46:03.982 DEBUG [6385]: Closing database connection -- 17:46:03.982 SQL [6385]: pgsql_close() -- 17:46:04.226 INFO [6385]: COREGRADE is starting... -- 17:46:04.226 INFO [6385]: Version from config: 1.0 -- 17:46:04.226 DEBUG [6385]: Connecting to database... -- 17:46:04.226 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:04.226 SQL [6385]: pgsql_db_connect() -- 17:46:04.230 DEBUG [6385]: Database connection successful -- 17:46:04.230 INFO [6385]: _SERVER found -- 17:46:04.230 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 17:46:04.230 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:46:04.230 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:46:04.230 INFO [6385]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:46:04.230 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:04.242 INFO [6385]: COREGRADE is stopping... -- 17:46:04.242 DEBUG [6385]: Closing database connection -- 17:46:04.242 SQL [6385]: pgsql_close() -- 17:46:04.400 INFO [6385]: COREGRADE is starting... -- 17:46:04.400 INFO [6385]: Version from config: 1.0 -- 17:46:04.400 DEBUG [6385]: Connecting to database... -- 17:46:04.400 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:04.400 SQL [6385]: pgsql_db_connect() -- 17:46:04.404 DEBUG [6385]: Database connection successful -- 17:46:04.404 INFO [6385]: _SERVER found -- 17:46:04.404 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 17:46:04.404 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:46:04.404 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:46:04.404 INFO [6385]: QUERY_STRING = /member -- 17:46:04.404 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:04.442 INFO [6385]: COREGRADE is stopping... -- 17:46:04.442 DEBUG [6385]: Closing database connection -- 17:46:04.442 SQL [6385]: pgsql_close() -- 17:46:04.630 INFO [6385]: COREGRADE is starting... -- 17:46:04.630 INFO [6385]: Version from config: 1.0 -- 17:46:04.630 DEBUG [6385]: Connecting to database... -- 17:46:04.630 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:04.630 SQL [6385]: pgsql_db_connect() -- 17:46:04.634 DEBUG [6385]: Database connection successful -- 17:46:04.634 INFO [6385]: _SERVER found -- 17:46:04.634 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 17:46:04.634 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:46:04.634 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:46:04.634 INFO [6385]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:46:04.634 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:04.646 INFO [6385]: COREGRADE is stopping... -- 17:46:04.646 DEBUG [6385]: Closing database connection -- 17:46:04.646 SQL [6385]: pgsql_close() -- 17:46:06.540 INFO [6385]: COREGRADE is starting... -- 17:46:06.540 INFO [6385]: Version from config: 1.0 -- 17:46:06.540 DEBUG [6385]: Connecting to database... -- 17:46:06.540 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:06.540 SQL [6385]: pgsql_db_connect() -- 17:46:06.544 DEBUG [6385]: Database connection successful -- 17:46:06.544 INFO [6385]: _SERVER found -- 17:46:06.544 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 17:46:06.544 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:46:06.544 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:46:06.544 INFO [6385]: QUERY_STRING = /auth/logout -- 17:46:06.544 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:06.575 INFO [6385]: COREGRADE is stopping... -- 17:46:06.575 DEBUG [6385]: Closing database connection -- 17:46:06.575 SQL [6385]: pgsql_close() -- 17:46:06.715 INFO [6385]: COREGRADE is starting... -- 17:46:06.715 INFO [6385]: Version from config: 1.0 -- 17:46:06.715 DEBUG [6385]: Connecting to database... -- 17:46:06.715 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:06.715 SQL [6385]: pgsql_db_connect() -- 17:46:06.722 INFO [6382]: COREGRADE is starting... -- 17:46:06.722 INFO [6382]: Version from config: 1.0 -- 17:46:06.722 DEBUG [6382]: Connecting to database... -- 17:46:06.722 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:06.722 SQL [6382]: pgsql_db_connect() -- 17:46:06.719 DEBUG [6385]: Database connection successful -- 17:46:06.719 INFO [6385]: _SERVER found -- 17:46:06.719 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 17:46:06.719 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:46:06.719 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:46:06.719 INFO [6385]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:46:06.719 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:06.730 INFO [6385]: COREGRADE is stopping... -- 17:46:06.730 DEBUG [6385]: Closing database connection -- 17:46:06.730 SQL [6385]: pgsql_close() -- 17:46:06.726 DEBUG [6382]: Database connection successful -- 17:46:06.726 INFO [6382]: _SERVER found -- 17:46:06.726 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 17:46:06.726 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:46:06.726 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:46:06.726 INFO [6382]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:46:06.726 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:06.737 INFO [6382]: COREGRADE is stopping... -- 17:46:06.737 DEBUG [6382]: Closing database connection -- 17:46:06.737 SQL [6382]: pgsql_close() -- 17:46:08.660 INFO [6382]: COREGRADE is starting... -- 17:46:08.661 INFO [6382]: Version from config: 1.0 -- 17:46:08.661 DEBUG [6382]: Connecting to database... -- 17:46:08.661 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:08.661 SQL [6382]: pgsql_db_connect() -- 17:46:08.665 DEBUG [6382]: Database connection successful -- 17:46:08.665 INFO [6382]: _SERVER found -- 17:46:08.665 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 17:46:08.665 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:46:08.665 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:46:08.665 INFO [6382]: QUERY_STRING = /auth -- 17:46:08.665 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:08.724 INFO [6382]: COREGRADE is starting... -- 17:46:08.724 INFO [6382]: Version from config: 1.0 -- 17:46:08.724 DEBUG [6382]: Connecting to database... -- 17:46:08.724 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:08.724 SQL [6382]: pgsql_db_connect() -- 17:46:08.728 DEBUG [6382]: Database connection successful -- 17:46:08.728 INFO [6382]: _SERVER found -- 17:46:08.728 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 17:46:08.728 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:46:08.728 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:46:08.728 INFO [6382]: QUERY_STRING = /member/index -- 17:46:08.728 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:08.767 INFO [6382]: COREGRADE is stopping... -- 17:46:08.767 DEBUG [6382]: Closing database connection -- 17:46:08.767 SQL [6382]: pgsql_close() -- 17:46:08.981 INFO [6382]: COREGRADE is starting... -- 17:46:08.981 INFO [6382]: Version from config: 1.0 -- 17:46:08.981 DEBUG [6382]: Connecting to database... -- 17:46:08.981 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:08.981 SQL [6382]: pgsql_db_connect() -- 17:46:08.986 DEBUG [6382]: Database connection successful -- 17:46:08.986 INFO [6382]: _SERVER found -- 17:46:08.986 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 17:46:08.986 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:46:08.986 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:46:08.986 INFO [6382]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:46:08.986 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:08.998 INFO [6382]: COREGRADE is stopping... -- 17:46:08.998 DEBUG [6382]: Closing database connection -- 17:46:08.998 SQL [6382]: pgsql_close() -- 17:46:16.971 INFO [6384]: COREGRADE is starting... -- 17:46:16.971 INFO [6384]: Version from config: 1.0 -- 17:46:16.971 DEBUG [6384]: Connecting to database... -- 17:46:16.971 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:16.971 SQL [6384]: pgsql_db_connect() -- 17:46:16.976 DEBUG [6384]: Database connection successful -- 17:46:16.976 INFO [6384]: _SERVER found -- 17:46:16.976 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 17:46:16.976 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 17:46:16.976 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kohnn57nd9aleb147mf83253o2ssb4mg -- 17:46:16.976 INFO [6384]: QUERY_STRING = /member -- 17:46:16.976 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:17.014 INFO [6384]: COREGRADE is stopping... -- 17:46:17.014 DEBUG [6384]: Closing database connection -- 17:46:17.014 SQL [6384]: pgsql_close() -- 17:46:17.252 INFO [6384]: COREGRADE is starting... -- 17:46:17.252 INFO [6384]: Version from config: 1.0 -- 17:46:17.252 DEBUG [6384]: Connecting to database... -- 17:46:17.252 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:17.252 SQL [6384]: pgsql_db_connect() -- 17:46:17.257 DEBUG [6384]: Database connection successful -- 17:46:17.257 INFO [6384]: _SERVER found -- 17:46:17.257 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 17:46:17.257 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 17:46:17.257 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kohnn57nd9aleb147mf83253o2ssb4mg -- 17:46:17.257 INFO [6384]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:46:17.257 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:17.268 INFO [6384]: COREGRADE is stopping... -- 17:46:17.268 DEBUG [6384]: Closing database connection -- 17:46:17.268 SQL [6384]: pgsql_close() -- 17:46:17.277 INFO [6405]: COREGRADE is starting... -- 17:46:17.278 INFO [6405]: Version from config: 1.0 -- 17:46:17.278 DEBUG [6405]: Connecting to database... -- 17:46:17.278 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:17.278 SQL [6405]: pgsql_db_connect() -- 17:46:17.282 DEBUG [6405]: Database connection successful -- 17:46:17.282 INFO [6405]: _SERVER found -- 17:46:17.282 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 17:46:17.282 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 17:46:17.282 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kohnn57nd9aleb147mf83253o2ssb4mg -- 17:46:17.282 INFO [6405]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:46:17.282 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:17.294 INFO [6405]: COREGRADE is stopping... -- 17:46:17.294 DEBUG [6405]: Closing database connection -- 17:46:17.294 SQL [6405]: pgsql_close() -- 17:46:18.917 INFO [6405]: COREGRADE is starting... -- 17:46:18.918 INFO [6405]: Version from config: 1.0 -- 17:46:18.918 DEBUG [6405]: Connecting to database... -- 17:46:18.918 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:18.918 SQL [6405]: pgsql_db_connect() -- 17:46:18.922 DEBUG [6405]: Database connection successful -- 17:46:18.922 INFO [6405]: _SERVER found -- 17:46:18.922 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 17:46:18.922 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 17:46:18.922 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kohnn57nd9aleb147mf83253o2ssb4mg -- 17:46:18.922 INFO [6405]: QUERY_STRING = /member -- 17:46:18.922 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:18.959 INFO [6405]: COREGRADE is stopping... -- 17:46:18.959 DEBUG [6405]: Closing database connection -- 17:46:18.959 SQL [6405]: pgsql_close() -- 17:46:19.199 INFO [6405]: COREGRADE is starting... -- 17:46:19.200 INFO [6405]: Version from config: 1.0 -- 17:46:19.200 DEBUG [6405]: Connecting to database... -- 17:46:19.200 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:19.200 SQL [6405]: pgsql_db_connect() -- 17:46:19.204 DEBUG [6405]: Database connection successful -- 17:46:19.204 INFO [6405]: _SERVER found -- 17:46:19.204 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 17:46:19.204 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 17:46:19.204 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kohnn57nd9aleb147mf83253o2ssb4mg -- 17:46:19.204 INFO [6405]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:46:19.204 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:19.216 INFO [6405]: COREGRADE is stopping... -- 17:46:19.216 DEBUG [6405]: Closing database connection -- 17:46:19.216 SQL [6405]: pgsql_close() -- 17:46:19.221 INFO [6384]: COREGRADE is starting... -- 17:46:19.221 INFO [6384]: Version from config: 1.0 -- 17:46:19.221 DEBUG [6384]: Connecting to database... -- 17:46:19.221 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:19.221 SQL [6384]: pgsql_db_connect() -- 17:46:19.226 DEBUG [6384]: Database connection successful -- 17:46:19.226 INFO [6384]: _SERVER found -- 17:46:19.226 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 17:46:19.226 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 17:46:19.226 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kohnn57nd9aleb147mf83253o2ssb4mg -- 17:46:19.226 INFO [6384]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:46:19.226 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:19.237 INFO [6384]: COREGRADE is stopping... -- 17:46:19.237 DEBUG [6384]: Closing database connection -- 17:46:19.237 SQL [6384]: pgsql_close() -- 17:46:23.015 INFO [7160]: COREGRADE is starting... -- 17:46:23.015 INFO [7160]: Version from config: 1.0 -- 17:46:23.015 DEBUG [7160]: Connecting to database... -- 17:46:23.015 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:23.015 SQL [7160]: pgsql_db_connect() -- 17:46:23.020 DEBUG [7160]: Database connection successful -- 17:46:23.020 INFO [7160]: _SERVER found -- 17:46:23.020 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 17:46:23.020 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:46:23.020 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:46:23.020 INFO [7160]: QUERY_STRING = /member/configure -- 17:46:23.020 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:23.064 INFO [7160]: COREGRADE is stopping... -- 17:46:23.064 DEBUG [7160]: Closing database connection -- 17:46:23.064 SQL [7160]: pgsql_close() -- 17:46:23.298 INFO [7160]: COREGRADE is starting... -- 17:46:23.298 INFO [7160]: Version from config: 1.0 -- 17:46:23.298 DEBUG [7160]: Connecting to database... -- 17:46:23.298 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:23.298 SQL [7160]: pgsql_db_connect() -- 17:46:23.302 DEBUG [7160]: Database connection successful -- 17:46:23.302 INFO [7160]: _SERVER found -- 17:46:23.302 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 17:46:23.302 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:46:23.302 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:46:23.302 INFO [7160]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:46:23.303 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:23.314 INFO [7160]: COREGRADE is stopping... -- 17:46:23.314 DEBUG [7160]: Closing database connection -- 17:46:23.314 SQL [7160]: pgsql_close() -- 17:48:20.250 INFO [6383]: COREGRADE is starting... -- 17:48:20.250 INFO [6383]: Version from config: 1.0 -- 17:48:20.250 DEBUG [6383]: Connecting to database... -- 17:48:20.250 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:48:20.250 SQL [6383]: pgsql_db_connect() -- 17:48:20.255 DEBUG [6383]: Database connection successful -- 17:48:20.255 INFO [6383]: _SERVER found -- 17:48:20.255 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 17:48:20.255 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 17:48:20.255 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kohnn57nd9aleb147mf83253o2ssb4mg -- 17:48:20.255 INFO [6383]: QUERY_STRING = /member/page -- 17:48:20.255 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:48:20.297 INFO [6383]: COREGRADE is stopping... -- 17:48:20.297 DEBUG [6383]: Closing database connection -- 17:48:20.297 SQL [6383]: pgsql_close() -- 17:48:20.465 INFO [6383]: COREGRADE is starting... -- 17:48:20.465 INFO [6383]: Version from config: 1.0 -- 17:48:20.465 DEBUG [6383]: Connecting to database... -- 17:48:20.465 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:48:20.465 SQL [6383]: pgsql_db_connect() -- 17:48:20.470 DEBUG [6383]: Database connection successful -- 17:48:20.470 INFO [6383]: _SERVER found -- 17:48:20.470 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 17:48:20.470 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 17:48:20.470 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kohnn57nd9aleb147mf83253o2ssb4mg -- 17:48:20.470 INFO [6383]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:48:20.470 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:48:20.481 INFO [6383]: COREGRADE is stopping... -- 17:48:20.481 DEBUG [6383]: Closing database connection -- 17:48:20.481 SQL [6383]: pgsql_close() -- 17:48:20.670 INFO [6383]: COREGRADE is starting... -- 17:48:20.670 INFO [6383]: Version from config: 1.0 -- 17:48:20.670 DEBUG [6383]: Connecting to database... -- 17:48:20.670 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:48:20.670 SQL [6383]: pgsql_db_connect() -- 17:48:20.675 DEBUG [6383]: Database connection successful -- 17:48:20.675 INFO [6383]: _SERVER found -- 17:48:20.675 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 17:48:20.675 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 17:48:20.675 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kohnn57nd9aleb147mf83253o2ssb4mg -- 17:48:20.675 INFO [6383]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:48:20.675 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:48:20.686 INFO [6383]: COREGRADE is stopping... -- 17:48:20.686 DEBUG [6383]: Closing database connection -- 17:48:20.687 SQL [6383]: pgsql_close() -- 17:48:23.180 INFO [6383]: COREGRADE is starting... -- 17:48:23.181 INFO [6383]: Version from config: 1.0 -- 17:48:23.181 DEBUG [6383]: Connecting to database... -- 17:48:23.181 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:48:23.181 SQL [6383]: pgsql_db_connect() -- 17:48:23.185 DEBUG [6383]: Database connection successful -- 17:48:23.185 INFO [6383]: _SERVER found -- 17:48:23.185 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 17:48:23.185 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 17:48:23.185 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kohnn57nd9aleb147mf83253o2ssb4mg -- 17:48:23.185 INFO [6383]: QUERY_STRING = /member/configure -- 17:48:23.185 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:48:23.222 INFO [6383]: COREGRADE is stopping... -- 17:48:23.222 DEBUG [6383]: Closing database connection -- 17:48:23.222 SQL [6383]: pgsql_close() -- 17:48:23.403 INFO [6383]: COREGRADE is starting... -- 17:48:23.403 INFO [6383]: Version from config: 1.0 -- 17:48:23.403 DEBUG [6383]: Connecting to database... -- 17:48:23.403 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:48:23.403 SQL [6383]: pgsql_db_connect() -- 17:48:23.408 DEBUG [6383]: Database connection successful -- 17:48:23.408 INFO [6383]: _SERVER found -- 17:48:23.408 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 17:48:23.408 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 17:48:23.408 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kohnn57nd9aleb147mf83253o2ssb4mg -- 17:48:23.408 INFO [6383]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:48:23.408 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:48:23.419 INFO [6383]: COREGRADE is stopping... -- 17:48:23.419 DEBUG [6383]: Closing database connection -- 17:48:23.419 SQL [6383]: pgsql_close() -- 17:48:23.601 INFO [6383]: COREGRADE is starting... -- 17:48:23.602 INFO [6383]: Version from config: 1.0 -- 17:48:23.602 DEBUG [6383]: Connecting to database... -- 17:48:23.602 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:48:23.602 SQL [6383]: pgsql_db_connect() -- 17:48:23.606 DEBUG [6383]: Database connection successful -- 17:48:23.606 INFO [6383]: _SERVER found -- 17:48:23.606 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 17:48:23.606 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 17:48:23.606 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kohnn57nd9aleb147mf83253o2ssb4mg -- 17:48:23.606 INFO [6383]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:48:23.606 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:48:23.618 INFO [6383]: COREGRADE is stopping... -- 17:48:23.618 DEBUG [6383]: Closing database connection -- 17:48:23.618 SQL [6383]: pgsql_close() -- 17:48:38.759 INFO [7159]: COREGRADE is starting... -- 17:48:38.759 INFO [7159]: Version from config: 1.0 -- 17:48:38.759 DEBUG [7159]: Connecting to database... -- 17:48:38.759 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:48:38.759 SQL [7159]: pgsql_db_connect() -- 17:48:38.764 DEBUG [7159]: Database connection successful -- 17:48:38.764 INFO [7159]: _SERVER found -- 17:48:38.764 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 17:48:38.764 INFO [7159]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:48:38.764 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:48:38.764 INFO [7159]: QUERY_STRING = /member -- 17:48:38.764 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:48:38.805 INFO [7159]: COREGRADE is stopping... -- 17:48:38.805 DEBUG [7159]: Closing database connection -- 17:48:38.805 SQL [7159]: pgsql_close() -- 17:48:39.116 INFO [7159]: COREGRADE is starting... -- 17:48:39.116 INFO [7159]: Version from config: 1.0 -- 17:48:39.116 DEBUG [7159]: Connecting to database... -- 17:48:39.116 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:48:39.116 SQL [7159]: pgsql_db_connect() -- 17:48:39.120 DEBUG [7159]: Database connection successful -- 17:48:39.120 INFO [7159]: _SERVER found -- 17:48:39.120 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 17:48:39.120 INFO [7159]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:48:39.120 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:48:39.120 INFO [7159]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:48:39.120 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:48:39.132 INFO [7159]: COREGRADE is stopping... -- 17:48:39.132 DEBUG [7159]: Closing database connection -- 17:48:39.132 SQL [7159]: pgsql_close() -- 17:51:13.637 INFO [6409]: COREGRADE is starting... -- 17:51:13.638 INFO [6409]: Version from config: 1.0 -- 17:51:13.638 DEBUG [6409]: Connecting to database... -- 17:51:13.638 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:51:13.638 SQL [6409]: pgsql_db_connect() -- 17:51:13.642 DEBUG [6409]: Database connection successful -- 17:51:13.642 INFO [6409]: _SERVER found -- 17:51:13.642 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 17:51:13.642 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:51:13.642 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=gef698i9agkbtc712b9c7uvolj72dhfk -- 17:51:13.642 INFO [6409]: QUERY_STRING = /member/page -- 17:51:13.642 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:51:13.684 INFO [6409]: COREGRADE is stopping... -- 17:51:13.684 DEBUG [6409]: Closing database connection -- 17:51:13.684 SQL [6409]: pgsql_close() -- 17:51:14.025 INFO [6409]: COREGRADE is starting... -- 17:51:14.025 INFO [6409]: Version from config: 1.0 -- 17:51:14.025 DEBUG [6409]: Connecting to database... -- 17:51:14.025 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:51:14.026 SQL [6409]: pgsql_db_connect() -- 17:51:14.030 DEBUG [6409]: Database connection successful -- 17:51:14.030 INFO [6409]: _SERVER found -- 17:51:14.030 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 17:51:14.030 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:51:14.030 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=lkgovurih6l7io5k8tqvvpq6jbmnuoma -- 17:51:14.030 INFO [6409]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:51:14.030 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:51:14.041 INFO [6409]: COREGRADE is stopping... -- 17:51:14.041 DEBUG [6409]: Closing database connection -- 17:51:14.041 SQL [6409]: pgsql_close() -- 17:51:31.656 INFO [7017]: COREGRADE is starting... -- 17:51:31.656 INFO [7017]: Version from config: 1.0 -- 17:51:31.656 DEBUG [7017]: Connecting to database... -- 17:51:31.657 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:51:31.657 SQL [7017]: pgsql_db_connect() -- 17:51:31.661 DEBUG [7017]: Database connection successful -- 17:51:31.661 INFO [7017]: _SERVER found -- 17:51:31.661 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 17:51:31.661 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 17:51:31.661 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kohnn57nd9aleb147mf83253o2ssb4mg -- 17:51:31.661 INFO [7017]: QUERY_STRING = /member/viewSharePage -- 17:51:31.661 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:51:31.694 INFO [7017]: COREGRADE is stopping... -- 17:51:31.694 DEBUG [7017]: Closing database connection -- 17:51:31.694 SQL [7017]: pgsql_close() -- 17:51:32.925 INFO [6381]: COREGRADE is starting... -- 17:51:32.926 INFO [6381]: Version from config: 1.0 -- 17:51:32.926 DEBUG [6381]: Connecting to database... -- 17:51:32.926 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:51:32.926 SQL [6381]: pgsql_db_connect() -- 17:51:32.930 DEBUG [6381]: Database connection successful -- 17:51:32.930 INFO [6381]: _SERVER found -- 17:51:32.930 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 17:51:32.930 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:51:32.930 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=lkgovurih6l7io5k8tqvvpq6jbmnuoma -- 17:51:32.930 INFO [6381]: QUERY_STRING = /member/configure -- 17:51:32.930 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:51:32.969 INFO [6381]: COREGRADE is stopping... -- 17:51:32.969 DEBUG [6381]: Closing database connection -- 17:51:32.969 SQL [6381]: pgsql_close() -- 17:51:33.312 INFO [6381]: COREGRADE is starting... -- 17:51:33.312 INFO [6381]: Version from config: 1.0 -- 17:51:33.312 DEBUG [6381]: Connecting to database... -- 17:51:33.312 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:51:33.312 SQL [6381]: pgsql_db_connect() -- 17:51:33.316 DEBUG [6381]: Database connection successful -- 17:51:33.316 INFO [6381]: _SERVER found -- 17:51:33.316 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 17:51:33.316 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:51:33.316 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=lkgovurih6l7io5k8tqvvpq6jbmnuoma -- 17:51:33.316 INFO [6381]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:51:33.316 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:51:33.327 INFO [6381]: COREGRADE is stopping... -- 17:51:33.327 DEBUG [6381]: Closing database connection -- 17:51:33.327 SQL [6381]: pgsql_close() -- 17:51:33.962 INFO [7017]: COREGRADE is starting... -- 17:51:33.962 INFO [7017]: Version from config: 1.0 -- 17:51:33.962 DEBUG [7017]: Connecting to database... -- 17:51:33.962 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:51:33.962 SQL [7017]: pgsql_db_connect() -- 17:51:33.966 DEBUG [7017]: Database connection successful -- 17:51:33.966 INFO [7017]: _SERVER found -- 17:51:33.966 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 17:51:33.966 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 17:51:33.966 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kohnn57nd9aleb147mf83253o2ssb4mg -- 17:51:33.966 INFO [7017]: QUERY_STRING = /member/viewSharePage -- 17:51:33.966 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:51:33.999 INFO [7017]: COREGRADE is stopping... -- 17:51:33.999 DEBUG [7017]: Closing database connection -- 17:51:33.999 SQL [7017]: pgsql_close() -- 17:51:36.105 INFO [7017]: COREGRADE is starting... -- 17:51:36.106 INFO [7017]: Version from config: 1.0 -- 17:51:36.106 DEBUG [7017]: Connecting to database... -- 17:51:36.106 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:51:36.106 SQL [7017]: pgsql_db_connect() -- 17:51:36.110 DEBUG [7017]: Database connection successful -- 17:51:36.110 INFO [7017]: _SERVER found -- 17:51:36.110 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 17:51:36.110 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 17:51:36.110 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kohnn57nd9aleb147mf83253o2ssb4mg -- 17:51:36.110 INFO [7017]: QUERY_STRING = /member/viewSharePage -- 17:51:36.110 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:51:36.142 INFO [7017]: COREGRADE is stopping... -- 17:51:36.142 DEBUG [7017]: Closing database connection -- 17:51:36.142 SQL [7017]: pgsql_close() -- 17:52:48.972 INFO [6385]: COREGRADE is starting... -- 17:52:48.972 INFO [6385]: Version from config: 1.0 -- 17:52:48.972 DEBUG [6385]: Connecting to database... -- 17:52:48.972 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:52:48.972 SQL [6385]: pgsql_db_connect() -- 17:52:48.976 DEBUG [6385]: Database connection successful -- 17:52:48.976 INFO [6385]: _SERVER found -- 17:52:48.976 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 17:52:48.976 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:52:48.976 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=lkgovurih6l7io5k8tqvvpq6jbmnuoma -- 17:52:48.976 INFO [6385]: QUERY_STRING = /member/myprofile -- 17:52:48.976 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:52:49.007 INFO [6385]: COREGRADE is stopping... -- 17:52:49.007 DEBUG [6385]: Closing database connection -- 17:52:49.007 SQL [6385]: pgsql_close() -- 17:52:49.203 INFO [6385]: COREGRADE is starting... -- 17:52:49.203 INFO [6385]: Version from config: 1.0 -- 17:52:49.203 DEBUG [6385]: Connecting to database... -- 17:52:49.203 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:52:49.203 SQL [6385]: pgsql_db_connect() -- 17:52:49.207 DEBUG [6385]: Database connection successful -- 17:52:49.207 INFO [6385]: _SERVER found -- 17:52:49.207 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 17:52:49.207 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:52:49.207 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=lkgovurih6l7io5k8tqvvpq6jbmnuoma -- 17:52:49.207 INFO [6385]: QUERY_STRING = /favicon.ico -- 17:52:49.207 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:52:49.218 INFO [6385]: COREGRADE is stopping... -- 17:52:49.218 DEBUG [6385]: Closing database connection -- 17:52:49.218 SQL [6385]: pgsql_close() -- 17:52:54.621 INFO [6382]: COREGRADE is starting... -- 17:52:54.621 INFO [6382]: Version from config: 1.0 -- 17:52:54.621 DEBUG [6382]: Connecting to database... -- 17:52:54.621 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:52:54.621 SQL [6382]: pgsql_db_connect() -- 17:52:54.625 DEBUG [6382]: Database connection successful -- 17:52:54.625 INFO [6382]: _SERVER found -- 17:52:54.625 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 17:52:54.625 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:52:54.625 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=lkgovurih6l7io5k8tqvvpq6jbmnuoma -- 17:52:54.625 INFO [6382]: QUERY_STRING = /member/myprofile -- 17:52:54.625 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:52:54.659 INFO [6382]: COREGRADE is stopping... -- 17:52:54.659 DEBUG [6382]: Closing database connection -- 17:52:54.659 SQL [6382]: pgsql_close() -- 17:52:55.691 INFO [6382]: COREGRADE is starting... -- 17:52:55.691 INFO [6382]: Version from config: 1.0 -- 17:52:55.691 DEBUG [6382]: Connecting to database... -- 17:52:55.691 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:52:55.691 SQL [6382]: pgsql_db_connect() -- 17:52:55.695 DEBUG [6382]: Database connection successful -- 17:52:55.695 INFO [6382]: _SERVER found -- 17:52:55.695 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 17:52:55.695 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:52:55.695 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=lkgovurih6l7io5k8tqvvpq6jbmnuoma -- 17:52:55.695 INFO [6382]: QUERY_STRING = /member/myprofile -- 17:52:55.695 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:52:55.725 INFO [6382]: COREGRADE is stopping... -- 17:52:55.725 DEBUG [6382]: Closing database connection -- 17:52:55.725 SQL [6382]: pgsql_close() -- 17:52:58.191 INFO [6382]: COREGRADE is starting... -- 17:52:58.191 INFO [6382]: Version from config: 1.0 -- 17:52:58.191 DEBUG [6382]: Connecting to database... -- 17:52:58.191 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:52:58.191 SQL [6382]: pgsql_db_connect() -- 17:52:58.195 DEBUG [6382]: Database connection successful -- 17:52:58.195 INFO [6382]: _SERVER found -- 17:52:58.195 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 17:52:58.195 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:52:58.195 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=lkgovurih6l7io5k8tqvvpq6jbmnuoma -- 17:52:58.195 INFO [6382]: QUERY_STRING = /member/configure -- 17:52:58.195 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:52:58.235 INFO [6382]: COREGRADE is stopping... -- 17:52:58.235 DEBUG [6382]: Closing database connection -- 17:52:58.235 SQL [6382]: pgsql_close() -- 17:53:01.300 INFO [6382]: COREGRADE is starting... -- 17:53:01.300 INFO [6382]: Version from config: 1.0 -- 17:53:01.300 DEBUG [6382]: Connecting to database... -- 17:53:01.300 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:53:01.300 SQL [6382]: pgsql_db_connect() -- 17:53:01.305 DEBUG [6382]: Database connection successful -- 17:53:01.305 INFO [6382]: _SERVER found -- 17:53:01.305 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 17:53:01.305 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:53:01.305 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=lkgovurih6l7io5k8tqvvpq6jbmnuoma -- 17:53:01.305 INFO [6382]: QUERY_STRING = /member/myprofile -- 17:53:01.305 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:53:01.337 INFO [6382]: COREGRADE is stopping... -- 17:53:01.337 DEBUG [6382]: Closing database connection -- 17:53:01.337 SQL [6382]: pgsql_close() -- 17:54:24.964 INFO [6405]: COREGRADE is starting... -- 17:54:24.964 INFO [6405]: Version from config: 1.0 -- 17:54:24.964 DEBUG [6405]: Connecting to database... -- 17:54:24.964 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:54:24.964 SQL [6405]: pgsql_db_connect() -- 17:54:24.968 DEBUG [6405]: Database connection successful -- 17:54:24.968 INFO [6405]: _SERVER found -- 17:54:24.968 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 17:54:24.968 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 17:54:24.968 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kohnn57nd9aleb147mf83253o2ssb4mg -- 17:54:24.968 INFO [6405]: QUERY_STRING = /member/configure -- 17:54:24.968 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:54:25.006 INFO [6405]: COREGRADE is stopping... -- 17:54:25.006 DEBUG [6405]: Closing database connection -- 17:54:25.006 SQL [6405]: pgsql_close() -- 17:54:25.189 INFO [6405]: COREGRADE is starting... -- 17:54:25.189 INFO [6405]: Version from config: 1.0 -- 17:54:25.189 DEBUG [6405]: Connecting to database... -- 17:54:25.189 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:54:25.190 SQL [6405]: pgsql_db_connect() -- 17:54:25.193 DEBUG [6405]: Database connection successful -- 17:54:25.193 INFO [6405]: _SERVER found -- 17:54:25.193 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 17:54:25.193 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 17:54:25.193 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=23386jhnm7ue1o5jtpdjs2v2kdf2ska5 -- 17:54:25.193 INFO [6405]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:54:25.193 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:54:25.205 INFO [6405]: COREGRADE is stopping... -- 17:54:25.205 DEBUG [6405]: Closing database connection -- 17:54:25.205 SQL [6405]: pgsql_close() -- 17:54:25.428 INFO [6405]: COREGRADE is starting... -- 17:54:25.428 INFO [6405]: Version from config: 1.0 -- 17:54:25.428 DEBUG [6405]: Connecting to database... -- 17:54:25.428 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:54:25.428 SQL [6405]: pgsql_db_connect() -- 17:54:25.432 DEBUG [6405]: Database connection successful -- 17:54:25.432 INFO [6405]: _SERVER found -- 17:54:25.432 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 17:54:25.432 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 17:54:25.432 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=23386jhnm7ue1o5jtpdjs2v2kdf2ska5 -- 17:54:25.432 INFO [6405]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:54:25.432 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:54:25.443 INFO [6405]: COREGRADE is stopping... -- 17:54:25.443 DEBUG [6405]: Closing database connection -- 17:54:25.443 SQL [6405]: pgsql_close() -- 17:54:27.598 INFO [6405]: COREGRADE is starting... -- 17:54:27.598 INFO [6405]: Version from config: 1.0 -- 17:54:27.598 DEBUG [6405]: Connecting to database... -- 17:54:27.598 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:54:27.598 SQL [6405]: pgsql_db_connect() -- 17:54:27.602 DEBUG [6405]: Database connection successful -- 17:54:27.602 INFO [6405]: _SERVER found -- 17:54:27.602 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 17:54:27.602 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 17:54:27.602 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=23386jhnm7ue1o5jtpdjs2v2kdf2ska5 -- 17:54:27.602 INFO [6405]: QUERY_STRING = /member/viewSharePage -- 17:54:27.602 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:54:27.635 INFO [6405]: COREGRADE is stopping... -- 17:54:27.635 DEBUG [6405]: Closing database connection -- 17:54:27.635 SQL [6405]: pgsql_close() -- 18:05:37.346 INFO [6384]: COREGRADE is starting... -- 18:05:37.346 INFO [6384]: Version from config: 1.0 -- 18:05:37.346 DEBUG [6384]: Connecting to database... -- 18:05:37.346 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:05:37.346 SQL [6384]: pgsql_db_connect() -- 18:05:37.351 DEBUG [6384]: Database connection successful -- 18:05:37.351 INFO [6384]: _SERVER found -- 18:05:37.351 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 18:05:37.351 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:05:37.351 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=lkgovurih6l7io5k8tqvvpq6jbmnuoma -- 18:05:37.351 INFO [6384]: QUERY_STRING = /member/myprofile -- 18:05:37.351 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:05:37.386 INFO [6384]: COREGRADE is stopping... -- 18:05:37.386 DEBUG [6384]: Closing database connection -- 18:05:37.386 SQL [6384]: pgsql_close() -- 18:05:40.387 INFO [6384]: COREGRADE is starting... -- 18:05:40.387 INFO [6384]: Version from config: 1.0 -- 18:05:40.387 DEBUG [6384]: Connecting to database... -- 18:05:40.387 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:05:40.387 SQL [6384]: pgsql_db_connect() -- 18:05:40.392 DEBUG [6384]: Database connection successful -- 18:05:40.392 INFO [6384]: _SERVER found -- 18:05:40.392 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 18:05:40.392 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:05:40.392 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:05:40.392 INFO [6384]: QUERY_STRING = screen=member/ -- 18:05:40.392 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:05:40.433 INFO [6384]: COREGRADE is stopping... -- 18:05:40.433 DEBUG [6384]: Closing database connection -- 18:05:40.433 SQL [6384]: pgsql_close() -- 18:05:40.727 INFO [6384]: COREGRADE is starting... -- 18:05:40.727 INFO [6384]: Version from config: 1.0 -- 18:05:40.727 DEBUG [6384]: Connecting to database... -- 18:05:40.727 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:05:40.727 SQL [6384]: pgsql_db_connect() -- 18:05:40.732 DEBUG [6384]: Database connection successful -- 18:05:40.732 INFO [6384]: _SERVER found -- 18:05:40.732 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 18:05:40.732 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:05:40.732 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:05:40.732 INFO [6384]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:05:40.732 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:05:40.743 INFO [6384]: COREGRADE is stopping... -- 18:05:40.743 DEBUG [6384]: Closing database connection -- 18:05:40.743 SQL [6384]: pgsql_close() -- 18:05:40.761 INFO [6384]: COREGRADE is starting... -- 18:05:40.761 INFO [6384]: Version from config: 1.0 -- 18:05:40.761 DEBUG [6384]: Connecting to database... -- 18:05:40.761 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:05:40.761 SQL [6384]: pgsql_db_connect() -- 18:05:40.765 DEBUG [6384]: Database connection successful -- 18:05:40.765 INFO [6384]: _SERVER found -- 18:05:40.765 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 18:05:40.765 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:05:40.765 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:05:40.765 INFO [6384]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:05:40.765 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:05:40.776 INFO [6384]: COREGRADE is stopping... -- 18:05:40.777 DEBUG [6384]: Closing database connection -- 18:05:40.777 SQL [6384]: pgsql_close() -- 18:05:44.775 INFO [6384]: COREGRADE is starting... -- 18:05:44.775 INFO [6384]: Version from config: 1.0 -- 18:05:44.775 DEBUG [6384]: Connecting to database... -- 18:05:44.775 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:05:44.775 SQL [6384]: pgsql_db_connect() -- 18:05:44.780 DEBUG [6384]: Database connection successful -- 18:05:44.780 INFO [6384]: _SERVER found -- 18:05:44.780 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 18:05:44.780 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:05:44.780 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:05:44.780 INFO [6384]: QUERY_STRING = /member -- 18:05:44.780 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:05:44.820 INFO [6384]: COREGRADE is stopping... -- 18:05:44.820 DEBUG [6384]: Closing database connection -- 18:05:44.820 SQL [6384]: pgsql_close() -- 18:05:45.030 INFO [6384]: COREGRADE is starting... -- 18:05:45.030 INFO [6384]: Version from config: 1.0 -- 18:05:45.030 DEBUG [6384]: Connecting to database... -- 18:05:45.030 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:05:45.030 SQL [6384]: pgsql_db_connect() -- 18:05:45.035 DEBUG [6384]: Database connection successful -- 18:05:45.035 INFO [6384]: _SERVER found -- 18:05:45.035 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 18:05:45.035 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:05:45.035 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:05:45.035 INFO [6384]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:05:45.035 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:05:45.046 INFO [6384]: COREGRADE is stopping... -- 18:05:45.046 DEBUG [6384]: Closing database connection -- 18:05:45.046 SQL [6384]: pgsql_close() -- 18:05:45.049 INFO [7160]: COREGRADE is starting... -- 18:05:45.049 INFO [7160]: Version from config: 1.0 -- 18:05:45.049 DEBUG [7160]: Connecting to database... -- 18:05:45.049 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:05:45.049 SQL [7160]: pgsql_db_connect() -- 18:05:45.053 DEBUG [7160]: Database connection successful -- 18:05:45.053 INFO [7160]: _SERVER found -- 18:05:45.053 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 18:05:45.053 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:05:45.053 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:05:45.053 INFO [7160]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:05:45.053 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:05:45.066 INFO [7160]: COREGRADE is stopping... -- 18:05:45.066 DEBUG [7160]: Closing database connection -- 18:05:45.066 SQL [7160]: pgsql_close() -- 18:05:51.365 INFO [6383]: COREGRADE is starting... -- 18:05:51.365 INFO [6383]: Version from config: 1.0 -- 18:05:51.365 DEBUG [6383]: Connecting to database... -- 18:05:51.365 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:05:51.365 SQL [6383]: pgsql_db_connect() -- 18:05:51.370 DEBUG [6383]: Database connection successful -- 18:05:51.370 INFO [6383]: _SERVER found -- 18:05:51.370 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 18:05:51.370 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:05:51.370 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:05:51.370 INFO [6383]: QUERY_STRING = /member/configure -- 18:05:51.370 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:05:51.411 INFO [6383]: COREGRADE is stopping... -- 18:05:51.411 DEBUG [6383]: Closing database connection -- 18:05:51.411 SQL [6383]: pgsql_close() -- 18:05:51.582 INFO [6383]: COREGRADE is starting... -- 18:05:51.583 INFO [6383]: Version from config: 1.0 -- 18:05:51.583 DEBUG [6383]: Connecting to database... -- 18:05:51.583 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:05:51.583 SQL [6383]: pgsql_db_connect() -- 18:05:51.587 DEBUG [6383]: Database connection successful -- 18:05:51.587 INFO [6383]: _SERVER found -- 18:05:51.587 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 18:05:51.587 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:05:51.587 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:05:51.587 INFO [6383]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:05:51.587 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:05:51.598 INFO [6383]: COREGRADE is stopping... -- 18:05:51.598 DEBUG [6383]: Closing database connection -- 18:05:51.598 SQL [6383]: pgsql_close() -- 18:05:51.673 INFO [6383]: COREGRADE is starting... -- 18:05:51.673 INFO [6383]: Version from config: 1.0 -- 18:05:51.673 DEBUG [6383]: Connecting to database... -- 18:05:51.673 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:05:51.673 SQL [6383]: pgsql_db_connect() -- 18:05:51.678 DEBUG [6383]: Database connection successful -- 18:05:51.678 INFO [6383]: _SERVER found -- 18:05:51.678 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 18:05:51.678 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:05:51.678 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:05:51.678 INFO [6383]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:05:51.678 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:05:51.689 INFO [6383]: COREGRADE is stopping... -- 18:05:51.689 DEBUG [6383]: Closing database connection -- 18:05:51.689 SQL [6383]: pgsql_close() -- 18:05:54.253 INFO [6383]: COREGRADE is starting... -- 18:05:54.254 INFO [6383]: Version from config: 1.0 -- 18:05:54.254 DEBUG [6383]: Connecting to database... -- 18:05:54.254 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:05:54.254 SQL [6383]: pgsql_db_connect() -- 18:05:54.258 DEBUG [6383]: Database connection successful -- 18:05:54.258 INFO [6383]: _SERVER found -- 18:05:54.258 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 18:05:54.258 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:05:54.258 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:05:54.258 INFO [6383]: QUERY_STRING = /member/configure -- 18:05:54.258 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:05:54.298 INFO [6383]: COREGRADE is stopping... -- 18:05:54.298 DEBUG [6383]: Closing database connection -- 18:05:54.298 SQL [6383]: pgsql_close() -- 18:05:54.459 INFO [6383]: COREGRADE is starting... -- 18:05:54.459 INFO [6383]: Version from config: 1.0 -- 18:05:54.459 DEBUG [6383]: Connecting to database... -- 18:05:54.459 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:05:54.459 SQL [6383]: pgsql_db_connect() -- 18:05:54.464 DEBUG [6383]: Database connection successful -- 18:05:54.464 INFO [6383]: _SERVER found -- 18:05:54.464 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 18:05:54.464 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:05:54.464 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:05:54.464 INFO [6383]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:05:54.464 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:05:54.475 INFO [6383]: COREGRADE is stopping... -- 18:05:54.475 DEBUG [6383]: Closing database connection -- 18:05:54.475 SQL [6383]: pgsql_close() -- 18:05:54.546 INFO [6383]: COREGRADE is starting... -- 18:05:54.546 INFO [6383]: Version from config: 1.0 -- 18:05:54.546 DEBUG [6383]: Connecting to database... -- 18:05:54.546 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:05:54.546 SQL [6383]: pgsql_db_connect() -- 18:05:54.551 DEBUG [6383]: Database connection successful -- 18:05:54.551 INFO [6383]: _SERVER found -- 18:05:54.551 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 18:05:54.551 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:05:54.551 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:05:54.551 INFO [6383]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:05:54.551 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:05:54.562 INFO [6383]: COREGRADE is stopping... -- 18:05:54.562 DEBUG [6383]: Closing database connection -- 18:05:54.562 SQL [6383]: pgsql_close() -- 18:05:58.530 INFO [7159]: COREGRADE is starting... -- 18:05:58.531 INFO [7159]: Version from config: 1.0 -- 18:05:58.531 DEBUG [7159]: Connecting to database... -- 18:05:58.531 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:05:58.531 SQL [7159]: pgsql_db_connect() -- 18:05:58.535 DEBUG [7159]: Database connection successful -- 18:05:58.535 INFO [7159]: _SERVER found -- 18:05:58.535 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 18:05:58.535 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 18:05:58.535 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=23386jhnm7ue1o5jtpdjs2v2kdf2ska5 -- 18:05:58.535 INFO [7159]: QUERY_STRING = /member/viewSharePage -- 18:05:58.535 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:05:58.571 INFO [7159]: COREGRADE is stopping... -- 18:05:58.571 DEBUG [7159]: Closing database connection -- 18:05:58.571 SQL [7159]: pgsql_close() -- 18:05:59.852 INFO [6409]: COREGRADE is starting... -- 18:05:59.852 INFO [6409]: Version from config: 1.0 -- 18:05:59.852 DEBUG [6409]: Connecting to database... -- 18:05:59.852 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:05:59.852 SQL [6409]: pgsql_db_connect() -- 18:05:59.857 DEBUG [6409]: Database connection successful -- 18:05:59.857 INFO [6409]: _SERVER found -- 18:05:59.857 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 18:05:59.857 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:05:59.857 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:05:59.857 INFO [6409]: QUERY_STRING = /member -- 18:05:59.857 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:05:59.898 INFO [6409]: COREGRADE is stopping... -- 18:05:59.898 DEBUG [6409]: Closing database connection -- 18:05:59.898 SQL [6409]: pgsql_close() -- 18:06:00.107 INFO [6409]: COREGRADE is starting... -- 18:06:00.107 INFO [6409]: Version from config: 1.0 -- 18:06:00.107 DEBUG [6409]: Connecting to database... -- 18:06:00.107 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:00.107 SQL [6409]: pgsql_db_connect() -- 18:06:00.112 DEBUG [6409]: Database connection successful -- 18:06:00.112 INFO [6409]: _SERVER found -- 18:06:00.112 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 18:06:00.112 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:06:00.112 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:06:00.112 INFO [6409]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:06:00.112 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:06:00.123 INFO [6409]: COREGRADE is stopping... -- 18:06:00.123 DEBUG [6409]: Closing database connection -- 18:06:00.123 SQL [6409]: pgsql_close() -- 18:06:00.124 INFO [6381]: COREGRADE is starting... -- 18:06:00.124 INFO [6381]: Version from config: 1.0 -- 18:06:00.124 DEBUG [6381]: Connecting to database... -- 18:06:00.124 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:00.125 SQL [6381]: pgsql_db_connect() -- 18:06:00.129 DEBUG [6381]: Database connection successful -- 18:06:00.129 INFO [6381]: _SERVER found -- 18:06:00.129 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 18:06:00.129 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:06:00.129 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:06:00.129 INFO [6381]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:06:00.129 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:06:00.141 INFO [6381]: COREGRADE is stopping... -- 18:06:00.141 DEBUG [6381]: Closing database connection -- 18:06:00.141 SQL [6381]: pgsql_close() -- 18:06:00.872 INFO [6381]: COREGRADE is starting... -- 18:06:00.872 INFO [6381]: Version from config: 1.0 -- 18:06:00.872 DEBUG [6381]: Connecting to database... -- 18:06:00.872 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:00.872 SQL [6381]: pgsql_db_connect() -- 18:06:00.876 DEBUG [6381]: Database connection successful -- 18:06:00.876 INFO [6381]: _SERVER found -- 18:06:00.877 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 18:06:00.877 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:06:00.877 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:06:00.877 INFO [6381]: QUERY_STRING = /member/page -- 18:06:00.877 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:06:00.919 INFO [6381]: COREGRADE is stopping... -- 18:06:00.919 DEBUG [6381]: Closing database connection -- 18:06:00.919 SQL [6381]: pgsql_close() -- 18:06:01.153 INFO [6381]: COREGRADE is starting... -- 18:06:01.153 INFO [6381]: Version from config: 1.0 -- 18:06:01.153 DEBUG [6381]: Connecting to database... -- 18:06:01.153 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:01.153 SQL [6381]: pgsql_db_connect() -- 18:06:01.158 DEBUG [6381]: Database connection successful -- 18:06:01.158 INFO [6381]: _SERVER found -- 18:06:01.158 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 18:06:01.158 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:06:01.158 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:06:01.158 INFO [6381]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:06:01.158 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:06:01.169 INFO [6381]: COREGRADE is stopping... -- 18:06:01.169 DEBUG [6381]: Closing database connection -- 18:06:01.169 SQL [6381]: pgsql_close() -- 18:06:22.814 INFO [7017]: COREGRADE is starting... -- 18:06:22.814 INFO [7017]: Version from config: 1.0 -- 18:06:22.814 DEBUG [7017]: Connecting to database... -- 18:06:22.814 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:22.814 SQL [7017]: pgsql_db_connect() -- 18:06:22.819 DEBUG [7017]: Database connection successful -- 18:06:22.819 INFO [7017]: _SERVER found -- 18:06:22.819 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 18:06:22.819 INFO [7017]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:06:22.819 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:06:22.819 INFO [7017]: QUERY_STRING = /member/configure -- 18:06:22.819 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:06:22.860 INFO [7017]: COREGRADE is stopping... -- 18:06:22.860 DEBUG [7017]: Closing database connection -- 18:06:22.860 SQL [7017]: pgsql_close() -- 18:06:23.214 INFO [7017]: COREGRADE is starting... -- 18:06:23.214 INFO [7017]: Version from config: 1.0 -- 18:06:23.214 DEBUG [7017]: Connecting to database... -- 18:06:23.214 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:23.214 SQL [7017]: pgsql_db_connect() -- 18:06:23.219 DEBUG [7017]: Database connection successful -- 18:06:23.219 INFO [7017]: _SERVER found -- 18:06:23.219 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 18:06:23.219 INFO [7017]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:06:23.219 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:06:23.219 INFO [7017]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:06:23.219 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:06:23.230 INFO [7017]: COREGRADE is stopping... -- 18:06:23.230 DEBUG [7017]: Closing database connection -- 18:06:23.230 SQL [7017]: pgsql_close() -- 18:06:31.978 INFO [6385]: COREGRADE is starting... -- 18:06:31.978 INFO [6385]: Version from config: 1.0 -- 18:06:31.978 DEBUG [6385]: Connecting to database... -- 18:06:31.978 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:31.978 SQL [6385]: pgsql_db_connect() -- 18:06:31.983 DEBUG [6385]: Database connection successful -- 18:06:31.983 INFO [6385]: _SERVER found -- 18:06:31.983 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 18:06:31.983 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 18:06:31.983 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=23386jhnm7ue1o5jtpdjs2v2kdf2ska5 -- 18:06:31.983 INFO [6385]: QUERY_STRING = /member/viewSharePage -- 18:06:31.983 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:06:32.018 INFO [6385]: COREGRADE is stopping... -- 18:06:32.018 DEBUG [6385]: Closing database connection -- 18:06:32.018 SQL [6385]: pgsql_close() -- 18:06:34.474 INFO [6382]: COREGRADE is starting... -- 18:06:34.474 INFO [6382]: Version from config: 1.0 -- 18:06:34.474 DEBUG [6382]: Connecting to database... -- 18:06:34.474 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:34.474 SQL [6382]: pgsql_db_connect() -- 18:06:34.479 DEBUG [6382]: Database connection successful -- 18:06:34.479 INFO [6382]: _SERVER found -- 18:06:34.479 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 18:06:34.479 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:06:34.479 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:06:34.479 INFO [6382]: QUERY_STRING = /member/configure -- 18:06:34.479 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:06:34.521 INFO [6382]: COREGRADE is stopping... -- 18:06:34.521 DEBUG [6382]: Closing database connection -- 18:06:34.521 SQL [6382]: pgsql_close() -- 18:06:34.804 INFO [6382]: COREGRADE is starting... -- 18:06:34.804 INFO [6382]: Version from config: 1.0 -- 18:06:34.804 DEBUG [6382]: Connecting to database... -- 18:06:34.804 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:34.804 SQL [6382]: pgsql_db_connect() -- 18:06:34.809 DEBUG [6382]: Database connection successful -- 18:06:34.809 INFO [6382]: _SERVER found -- 18:06:34.809 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 18:06:34.809 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:06:34.809 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:06:34.809 INFO [6382]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:06:34.809 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:06:34.820 INFO [6382]: COREGRADE is stopping... -- 18:06:34.820 DEBUG [6382]: Closing database connection -- 18:06:34.820 SQL [6382]: pgsql_close() -- 18:06:36.365 INFO [6382]: COREGRADE is starting... -- 18:06:36.365 INFO [6382]: Version from config: 1.0 -- 18:06:36.365 DEBUG [6382]: Connecting to database... -- 18:06:36.365 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:36.365 SQL [6382]: pgsql_db_connect() -- 18:06:36.370 DEBUG [6382]: Database connection successful -- 18:06:36.370 INFO [6382]: _SERVER found -- 18:06:36.370 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 18:06:36.370 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:06:36.370 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:06:36.370 INFO [6382]: QUERY_STRING = /member -- 18:06:36.370 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:06:36.413 INFO [6382]: COREGRADE is stopping... -- 18:06:36.413 DEBUG [6382]: Closing database connection -- 18:06:36.413 SQL [6382]: pgsql_close() -- 18:06:36.632 INFO [6382]: COREGRADE is starting... -- 18:06:36.633 INFO [6382]: Version from config: 1.0 -- 18:06:36.633 DEBUG [6382]: Connecting to database... -- 18:06:36.633 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:36.633 SQL [6382]: pgsql_db_connect() -- 18:06:36.637 DEBUG [6382]: Database connection successful -- 18:06:36.637 INFO [6382]: _SERVER found -- 18:06:36.637 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 18:06:36.637 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:06:36.637 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:06:36.637 INFO [6382]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:06:36.637 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:06:36.649 INFO [6382]: COREGRADE is stopping... -- 18:06:36.649 DEBUG [6382]: Closing database connection -- 18:06:36.649 SQL [6382]: pgsql_close() -- 18:06:37.875 INFO [6382]: COREGRADE is starting... -- 18:06:37.876 INFO [6382]: Version from config: 1.0 -- 18:06:37.876 DEBUG [6382]: Connecting to database... -- 18:06:37.876 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:37.876 SQL [6382]: pgsql_db_connect() -- 18:06:37.880 DEBUG [6382]: Database connection successful -- 18:06:37.880 INFO [6382]: _SERVER found -- 18:06:37.880 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 18:06:37.880 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:06:37.880 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:06:37.880 INFO [6382]: QUERY_STRING = /member/page -- 18:06:37.880 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:06:37.925 INFO [6382]: COREGRADE is stopping... -- 18:06:37.925 DEBUG [6382]: Closing database connection -- 18:06:37.925 SQL [6382]: pgsql_close() -- 18:06:38.153 INFO [6382]: COREGRADE is starting... -- 18:06:38.153 INFO [6382]: Version from config: 1.0 -- 18:06:38.153 DEBUG [6382]: Connecting to database... -- 18:06:38.153 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:38.153 SQL [6382]: pgsql_db_connect() -- 18:06:38.158 DEBUG [6382]: Database connection successful -- 18:06:38.158 INFO [6382]: _SERVER found -- 18:06:38.158 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 18:06:38.158 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:06:38.158 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:06:38.158 INFO [6382]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:06:38.158 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:06:38.169 INFO [6382]: COREGRADE is stopping... -- 18:06:38.169 DEBUG [6382]: Closing database connection -- 18:06:38.169 SQL [6382]: pgsql_close() -- 18:06:42.801 INFO [6382]: COREGRADE is starting... -- 18:06:42.802 INFO [6382]: Version from config: 1.0 -- 18:06:42.802 DEBUG [6382]: Connecting to database... -- 18:06:42.802 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:42.802 SQL [6382]: pgsql_db_connect() -- 18:06:42.807 DEBUG [6382]: Database connection successful -- 18:06:42.807 INFO [6382]: _SERVER found -- 18:06:42.807 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 18:06:42.807 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:06:42.807 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:06:42.807 INFO [6382]: QUERY_STRING = /member/configure -- 18:06:42.807 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:06:42.850 INFO [6382]: COREGRADE is stopping... -- 18:06:42.850 DEBUG [6382]: Closing database connection -- 18:06:42.850 SQL [6382]: pgsql_close() -- 18:06:43.077 INFO [6382]: COREGRADE is starting... -- 18:06:43.077 INFO [6382]: Version from config: 1.0 -- 18:06:43.077 DEBUG [6382]: Connecting to database... -- 18:06:43.077 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:43.077 SQL [6382]: pgsql_db_connect() -- 18:06:43.082 DEBUG [6382]: Database connection successful -- 18:06:43.082 INFO [6382]: _SERVER found -- 18:06:43.082 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 18:06:43.082 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:06:43.082 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:06:43.082 INFO [6382]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:06:43.082 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:06:43.093 INFO [6382]: COREGRADE is stopping... -- 18:06:43.093 DEBUG [6382]: Closing database connection -- 18:06:43.093 SQL [6382]: pgsql_close() -- 18:06:47.363 INFO [6382]: COREGRADE is starting... -- 18:06:47.363 INFO [6382]: Version from config: 1.0 -- 18:06:47.363 DEBUG [6382]: Connecting to database... -- 18:06:47.363 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:47.363 SQL [6382]: pgsql_db_connect() -- 18:06:47.368 DEBUG [6382]: Database connection successful -- 18:06:47.368 INFO [6382]: _SERVER found -- 18:06:47.368 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 18:06:47.368 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:06:47.368 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:06:47.368 INFO [6382]: QUERY_STRING = /member/configure -- 18:06:47.368 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:06:47.411 INFO [6382]: COREGRADE is stopping... -- 18:06:47.412 DEBUG [6382]: Closing database connection -- 18:06:47.412 SQL [6382]: pgsql_close() -- 18:06:47.629 INFO [6382]: COREGRADE is starting... -- 18:06:47.629 INFO [6382]: Version from config: 1.0 -- 18:06:47.629 DEBUG [6382]: Connecting to database... -- 18:06:47.629 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:47.629 SQL [6382]: pgsql_db_connect() -- 18:06:47.634 DEBUG [6382]: Database connection successful -- 18:06:47.634 INFO [6382]: _SERVER found -- 18:06:47.634 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 18:06:47.634 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:06:47.634 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:06:47.634 INFO [6382]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:06:47.634 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:06:47.645 INFO [6382]: COREGRADE is stopping... -- 18:06:47.645 DEBUG [6382]: Closing database connection -- 18:06:47.645 SQL [6382]: pgsql_close() -- 18:06:51.188 INFO [6382]: COREGRADE is starting... -- 18:06:51.188 INFO [6382]: Version from config: 1.0 -- 18:06:51.188 DEBUG [6382]: Connecting to database... -- 18:06:51.188 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:51.188 SQL [6382]: pgsql_db_connect() -- 18:06:51.193 DEBUG [6382]: Database connection successful -- 18:06:51.193 INFO [6382]: _SERVER found -- 18:06:51.193 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 18:06:51.193 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:06:51.193 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:06:51.193 INFO [6382]: QUERY_STRING = /member/configure -- 18:06:51.193 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:06:51.236 INFO [6382]: COREGRADE is stopping... -- 18:06:51.236 DEBUG [6382]: Closing database connection -- 18:06:51.236 SQL [6382]: pgsql_close() -- 18:06:51.425 INFO [6382]: COREGRADE is starting... -- 18:06:51.425 INFO [6382]: Version from config: 1.0 -- 18:06:51.425 DEBUG [6382]: Connecting to database... -- 18:06:51.425 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:51.425 SQL [6382]: pgsql_db_connect() -- 18:06:51.430 DEBUG [6382]: Database connection successful -- 18:06:51.430 INFO [6382]: _SERVER found -- 18:06:51.430 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 18:06:51.430 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:06:51.430 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:06:51.430 INFO [6382]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:06:51.430 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:06:51.441 INFO [6382]: COREGRADE is stopping... -- 18:06:51.441 DEBUG [6382]: Closing database connection -- 18:06:51.441 SQL [6382]: pgsql_close() -- 18:06:55.998 INFO [6382]: COREGRADE is starting... -- 18:06:55.998 INFO [6382]: Version from config: 1.0 -- 18:06:55.998 DEBUG [6382]: Connecting to database... -- 18:06:55.998 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:55.998 SQL [6382]: pgsql_db_connect() -- 18:06:56.003 DEBUG [6382]: Database connection successful -- 18:06:56.003 INFO [6382]: _SERVER found -- 18:06:56.003 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 18:06:56.003 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:06:56.003 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:06:56.003 INFO [6382]: QUERY_STRING = /member/configure -- 18:06:56.003 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:06:56.047 INFO [6382]: COREGRADE is stopping... -- 18:06:56.047 DEBUG [6382]: Closing database connection -- 18:06:56.047 SQL [6382]: pgsql_close() -- 18:06:56.278 INFO [6382]: COREGRADE is starting... -- 18:06:56.278 INFO [6382]: Version from config: 1.0 -- 18:06:56.278 DEBUG [6382]: Connecting to database... -- 18:06:56.278 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:56.278 SQL [6382]: pgsql_db_connect() -- 18:06:56.283 DEBUG [6382]: Database connection successful -- 18:06:56.283 INFO [6382]: _SERVER found -- 18:06:56.283 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 18:06:56.283 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:06:56.283 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:06:56.283 INFO [6382]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:06:56.283 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:06:56.294 INFO [6382]: COREGRADE is stopping... -- 18:06:56.294 DEBUG [6382]: Closing database connection -- 18:06:56.294 SQL [6382]: pgsql_close() -- 18:06:57.472 INFO [6382]: COREGRADE is starting... -- 18:06:57.472 INFO [6382]: Version from config: 1.0 -- 18:06:57.472 DEBUG [6382]: Connecting to database... -- 18:06:57.472 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:57.472 SQL [6382]: pgsql_db_connect() -- 18:06:57.477 DEBUG [6382]: Database connection successful -- 18:06:57.477 INFO [6382]: _SERVER found -- 18:06:57.477 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 18:06:57.477 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:06:57.477 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:06:57.477 INFO [6382]: QUERY_STRING = /member -- 18:06:57.477 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:06:57.520 INFO [6382]: COREGRADE is stopping... -- 18:06:57.520 DEBUG [6382]: Closing database connection -- 18:06:57.520 SQL [6382]: pgsql_close() -- 18:06:57.760 INFO [6382]: COREGRADE is starting... -- 18:06:57.760 INFO [6382]: Version from config: 1.0 -- 18:06:57.760 DEBUG [6382]: Connecting to database... -- 18:06:57.760 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:57.760 SQL [6382]: pgsql_db_connect() -- 18:06:57.765 DEBUG [6382]: Database connection successful -- 18:06:57.765 INFO [6382]: _SERVER found -- 18:06:57.765 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 18:06:57.765 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:06:57.765 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:06:57.765 INFO [6382]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:06:57.765 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:06:57.776 INFO [6382]: COREGRADE is stopping... -- 18:06:57.776 DEBUG [6382]: Closing database connection -- 18:06:57.776 SQL [6382]: pgsql_close() -- 18:07:02.870 INFO [6405]: COREGRADE is starting... -- 18:07:02.871 INFO [6405]: Version from config: 1.0 -- 18:07:02.871 DEBUG [6405]: Connecting to database... -- 18:07:02.871 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:02.871 SQL [6405]: pgsql_db_connect() -- 18:07:02.875 DEBUG [6405]: Database connection successful -- 18:07:02.875 INFO [6405]: _SERVER found -- 18:07:02.875 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 18:07:02.875 INFO [6405]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:07:02.875 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:07:02.875 INFO [6405]: QUERY_STRING = /member/page -- 18:07:02.875 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:07:02.918 INFO [6405]: COREGRADE is stopping... -- 18:07:02.918 DEBUG [6405]: Closing database connection -- 18:07:02.918 SQL [6405]: pgsql_close() -- 18:07:03.151 INFO [6405]: COREGRADE is starting... -- 18:07:03.151 INFO [6405]: Version from config: 1.0 -- 18:07:03.151 DEBUG [6405]: Connecting to database... -- 18:07:03.151 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:03.151 SQL [6405]: pgsql_db_connect() -- 18:07:03.156 DEBUG [6405]: Database connection successful -- 18:07:03.156 INFO [6405]: _SERVER found -- 18:07:03.156 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 18:07:03.156 INFO [6405]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:07:03.156 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:07:03.156 INFO [6405]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:07:03.156 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:07:03.167 INFO [6405]: COREGRADE is stopping... -- 18:07:03.167 DEBUG [6405]: Closing database connection -- 18:07:03.167 SQL [6405]: pgsql_close() -- 18:07:10.810 INFO [6384]: COREGRADE is starting... -- 18:07:10.810 INFO [6384]: Version from config: 1.0 -- 18:07:10.810 DEBUG [6384]: Connecting to database... -- 18:07:10.810 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:10.810 SQL [6384]: pgsql_db_connect() -- 18:07:10.815 DEBUG [6384]: Database connection successful -- 18:07:10.815 INFO [6384]: _SERVER found -- 18:07:10.815 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 18:07:10.815 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:07:10.815 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:07:10.815 INFO [6384]: QUERY_STRING = /member/configure -- 18:07:10.815 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:07:10.856 INFO [6384]: COREGRADE is stopping... -- 18:07:10.856 DEBUG [6384]: Closing database connection -- 18:07:10.856 SQL [6384]: pgsql_close() -- 18:07:11.089 INFO [6384]: COREGRADE is starting... -- 18:07:11.089 INFO [6384]: Version from config: 1.0 -- 18:07:11.089 DEBUG [6384]: Connecting to database... -- 18:07:11.089 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:11.089 SQL [6384]: pgsql_db_connect() -- 18:07:11.094 DEBUG [6384]: Database connection successful -- 18:07:11.094 INFO [6384]: _SERVER found -- 18:07:11.094 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 18:07:11.094 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:07:11.094 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:07:11.094 INFO [6384]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:07:11.094 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:07:11.105 INFO [6384]: COREGRADE is stopping... -- 18:07:11.105 DEBUG [6384]: Closing database connection -- 18:07:11.105 SQL [6384]: pgsql_close() -- 18:07:14.307 INFO [6384]: COREGRADE is starting... -- 18:07:14.308 INFO [6384]: Version from config: 1.0 -- 18:07:14.308 DEBUG [6384]: Connecting to database... -- 18:07:14.308 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:14.308 SQL [6384]: pgsql_db_connect() -- 18:07:14.312 DEBUG [6384]: Database connection successful -- 18:07:14.312 INFO [6384]: _SERVER found -- 18:07:14.312 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 18:07:14.312 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:07:14.312 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:07:14.312 INFO [6384]: QUERY_STRING = /member -- 18:07:14.312 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:07:14.352 INFO [6384]: COREGRADE is stopping... -- 18:07:14.352 DEBUG [6384]: Closing database connection -- 18:07:14.352 SQL [6384]: pgsql_close() -- 18:07:14.570 INFO [6384]: COREGRADE is starting... -- 18:07:14.570 INFO [6384]: Version from config: 1.0 -- 18:07:14.570 DEBUG [6384]: Connecting to database... -- 18:07:14.570 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:14.570 SQL [6384]: pgsql_db_connect() -- 18:07:14.575 DEBUG [6384]: Database connection successful -- 18:07:14.575 INFO [6384]: _SERVER found -- 18:07:14.575 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 18:07:14.575 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:07:14.575 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:07:14.575 INFO [6384]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:07:14.575 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:07:14.586 INFO [6384]: COREGRADE is stopping... -- 18:07:14.586 DEBUG [6384]: Closing database connection -- 18:07:14.586 SQL [6384]: pgsql_close() -- 18:07:15.988 INFO [6384]: COREGRADE is starting... -- 18:07:15.988 INFO [6384]: Version from config: 1.0 -- 18:07:15.988 DEBUG [6384]: Connecting to database... -- 18:07:15.988 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:15.988 SQL [6384]: pgsql_db_connect() -- 18:07:15.993 DEBUG [6384]: Database connection successful -- 18:07:15.993 INFO [6384]: _SERVER found -- 18:07:15.993 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 18:07:15.993 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:07:15.993 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:07:15.993 INFO [6384]: QUERY_STRING = /member/page -- 18:07:15.993 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:07:16.035 INFO [6384]: COREGRADE is stopping... -- 18:07:16.035 DEBUG [6384]: Closing database connection -- 18:07:16.035 SQL [6384]: pgsql_close() -- 18:07:16.257 INFO [6384]: COREGRADE is starting... -- 18:07:16.257 INFO [6384]: Version from config: 1.0 -- 18:07:16.257 DEBUG [6384]: Connecting to database... -- 18:07:16.257 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:16.257 SQL [6384]: pgsql_db_connect() -- 18:07:16.262 DEBUG [6384]: Database connection successful -- 18:07:16.262 INFO [6384]: _SERVER found -- 18:07:16.262 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 18:07:16.262 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:07:16.262 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:07:16.262 INFO [6384]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:07:16.262 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:07:16.273 INFO [6384]: COREGRADE is stopping... -- 18:07:16.273 DEBUG [6384]: Closing database connection -- 18:07:16.273 SQL [6384]: pgsql_close() -- 18:07:48.208 INFO [7160]: COREGRADE is starting... -- 18:07:48.208 INFO [7160]: Version from config: 1.0 -- 18:07:48.208 DEBUG [7160]: Connecting to database... -- 18:07:48.209 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:48.209 SQL [7160]: pgsql_db_connect() -- 18:07:48.213 DEBUG [7160]: Database connection successful -- 18:07:48.213 INFO [7160]: _SERVER found -- 18:07:48.213 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 18:07:48.213 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:07:48.213 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:07:48.213 INFO [7160]: QUERY_STRING = /member/viewCardAddAction -- 18:07:48.213 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:07:48.248 INFO [7160]: COREGRADE is stopping... -- 18:07:48.248 DEBUG [7160]: Closing database connection -- 18:07:48.248 SQL [7160]: pgsql_close() -- 18:07:54.499 INFO [6383]: COREGRADE is starting... -- 18:07:54.499 INFO [6383]: Version from config: 1.0 -- 18:07:54.499 DEBUG [6383]: Connecting to database... -- 18:07:54.499 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:54.499 SQL [6383]: pgsql_db_connect() -- 18:07:54.504 DEBUG [6383]: Database connection successful -- 18:07:54.504 INFO [6383]: _SERVER found -- 18:07:54.504 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 18:07:54.504 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:07:54.504 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:07:54.504 INFO [6383]: QUERY_STRING = /member/viewCardAddAction -- 18:07:54.504 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:07:54.537 INFO [6383]: COREGRADE is stopping... -- 18:07:54.537 DEBUG [6383]: Closing database connection -- 18:07:54.537 SQL [6383]: pgsql_close() -- 18:07:56.580 INFO [6383]: COREGRADE is starting... -- 18:07:56.580 INFO [6383]: Version from config: 1.0 -- 18:07:56.580 DEBUG [6383]: Connecting to database... -- 18:07:56.580 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:56.580 SQL [6383]: pgsql_db_connect() -- 18:07:56.585 DEBUG [6383]: Database connection successful -- 18:07:56.585 INFO [6383]: _SERVER found -- 18:07:56.585 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 18:07:56.585 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:07:56.585 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:07:56.585 INFO [6383]: QUERY_STRING = /member/viewCardAddAction -- 18:07:56.585 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:07:56.616 INFO [6383]: COREGRADE is stopping... -- 18:07:56.616 DEBUG [6383]: Closing database connection -- 18:07:56.616 SQL [6383]: pgsql_close() -- 18:07:57.563 INFO [6383]: COREGRADE is starting... -- 18:07:57.563 INFO [6383]: Version from config: 1.0 -- 18:07:57.564 DEBUG [6383]: Connecting to database... -- 18:07:57.564 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:57.564 SQL [6383]: pgsql_db_connect() -- 18:07:57.568 DEBUG [6383]: Database connection successful -- 18:07:57.568 INFO [6383]: _SERVER found -- 18:07:57.568 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 18:07:57.568 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:07:57.568 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:07:57.568 INFO [6383]: QUERY_STRING = /member/viewCardAddAction -- 18:07:57.568 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:07:57.599 INFO [6383]: COREGRADE is stopping... -- 18:07:57.600 DEBUG [6383]: Closing database connection -- 18:07:57.600 SQL [6383]: pgsql_close() -- 18:07:59.110 INFO [6383]: COREGRADE is starting... -- 18:07:59.111 INFO [6383]: Version from config: 1.0 -- 18:07:59.111 DEBUG [6383]: Connecting to database... -- 18:07:59.111 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:59.111 SQL [6383]: pgsql_db_connect() -- 18:07:59.115 DEBUG [6383]: Database connection successful -- 18:07:59.115 INFO [6383]: _SERVER found -- 18:07:59.115 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 18:07:59.115 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:07:59.115 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:07:59.115 INFO [6383]: QUERY_STRING = /member/viewCardAddAction -- 18:07:59.115 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:07:59.147 INFO [6383]: COREGRADE is stopping... -- 18:07:59.147 DEBUG [6383]: Closing database connection -- 18:07:59.147 SQL [6383]: pgsql_close() -- 18:08:02.295 INFO [6383]: COREGRADE is starting... -- 18:08:02.295 INFO [6383]: Version from config: 1.0 -- 18:08:02.295 DEBUG [6383]: Connecting to database... -- 18:08:02.295 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:02.295 SQL [6383]: pgsql_db_connect() -- 18:08:02.300 DEBUG [6383]: Database connection successful -- 18:08:02.300 INFO [6383]: _SERVER found -- 18:08:02.300 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 18:08:02.300 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:08:02.300 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:08:02.300 INFO [6383]: QUERY_STRING = /member/viewCardAddAction -- 18:08:02.300 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:02.331 INFO [6383]: COREGRADE is stopping... -- 18:08:02.331 DEBUG [6383]: Closing database connection -- 18:08:02.331 SQL [6383]: pgsql_close() -- 18:08:03.954 INFO [6383]: COREGRADE is starting... -- 18:08:03.954 INFO [6383]: Version from config: 1.0 -- 18:08:03.954 DEBUG [6383]: Connecting to database... -- 18:08:03.954 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:03.954 SQL [6383]: pgsql_db_connect() -- 18:08:03.959 DEBUG [6383]: Database connection successful -- 18:08:03.959 INFO [6383]: _SERVER found -- 18:08:03.959 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 18:08:03.959 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:08:03.959 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:08:03.959 INFO [6383]: QUERY_STRING = /member/viewCardAddAction -- 18:08:03.959 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:03.990 INFO [6383]: COREGRADE is stopping... -- 18:08:03.990 DEBUG [6383]: Closing database connection -- 18:08:03.990 SQL [6383]: pgsql_close() -- 18:08:05.490 INFO [6383]: COREGRADE is starting... -- 18:08:05.490 INFO [6383]: Version from config: 1.0 -- 18:08:05.490 DEBUG [6383]: Connecting to database... -- 18:08:05.490 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:05.490 SQL [6383]: pgsql_db_connect() -- 18:08:05.495 DEBUG [6383]: Database connection successful -- 18:08:05.495 INFO [6383]: _SERVER found -- 18:08:05.495 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 18:08:05.495 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:08:05.495 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:08:05.495 INFO [6383]: QUERY_STRING = /member/viewCardAddAction -- 18:08:05.495 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:05.527 INFO [6383]: COREGRADE is stopping... -- 18:08:05.527 DEBUG [6383]: Closing database connection -- 18:08:05.527 SQL [6383]: pgsql_close() -- 18:08:11.282 INFO [7159]: COREGRADE is starting... -- 18:08:11.283 INFO [7159]: Version from config: 1.0 -- 18:08:11.283 DEBUG [7159]: Connecting to database... -- 18:08:11.283 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:11.283 SQL [7159]: pgsql_db_connect() -- 18:08:11.288 DEBUG [7159]: Database connection successful -- 18:08:11.288 INFO [7159]: _SERVER found -- 18:08:11.288 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 18:08:11.288 INFO [7159]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:08:11.288 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:08:11.288 INFO [7159]: QUERY_STRING = /member/configure -- 18:08:11.288 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:11.330 INFO [7159]: COREGRADE is stopping... -- 18:08:11.330 DEBUG [7159]: Closing database connection -- 18:08:11.330 SQL [7159]: pgsql_close() -- 18:08:11.564 INFO [7159]: COREGRADE is starting... -- 18:08:11.564 INFO [7159]: Version from config: 1.0 -- 18:08:11.564 DEBUG [7159]: Connecting to database... -- 18:08:11.564 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:11.564 SQL [7159]: pgsql_db_connect() -- 18:08:11.569 DEBUG [7159]: Database connection successful -- 18:08:11.569 INFO [7159]: _SERVER found -- 18:08:11.569 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 18:08:11.569 INFO [7159]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:08:11.569 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:08:11.569 INFO [7159]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:08:11.569 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:11.580 INFO [7159]: COREGRADE is stopping... -- 18:08:11.580 DEBUG [7159]: Closing database connection -- 18:08:11.580 SQL [7159]: pgsql_close() -- 18:08:35.634 INFO [6409]: COREGRADE is starting... -- 18:08:35.634 INFO [6409]: Version from config: 1.0 -- 18:08:35.634 DEBUG [6409]: Connecting to database... -- 18:08:35.634 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:35.634 SQL [6409]: pgsql_db_connect() -- 18:08:35.639 DEBUG [6409]: Database connection successful -- 18:08:35.639 INFO [6409]: _SERVER found -- 18:08:35.639 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 18:08:35.639 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:08:35.639 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:08:35.639 INFO [6409]: QUERY_STRING = /member -- 18:08:35.639 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:35.679 INFO [6409]: COREGRADE is stopping... -- 18:08:35.679 DEBUG [6409]: Closing database connection -- 18:08:35.679 SQL [6409]: pgsql_close() -- 18:08:35.998 INFO [6409]: COREGRADE is starting... -- 18:08:35.998 INFO [6409]: Version from config: 1.0 -- 18:08:35.998 DEBUG [6409]: Connecting to database... -- 18:08:35.998 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:35.998 SQL [6409]: pgsql_db_connect() -- 18:08:36.003 DEBUG [6409]: Database connection successful -- 18:08:36.003 INFO [6409]: _SERVER found -- 18:08:36.003 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 18:08:36.003 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:08:36.003 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:08:36.003 INFO [6409]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:08:36.003 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:36.014 INFO [6409]: COREGRADE is stopping... -- 18:08:36.015 DEBUG [6409]: Closing database connection -- 18:08:36.015 SQL [6409]: pgsql_close() -- 18:08:40.339 INFO [6409]: COREGRADE is starting... -- 18:08:40.339 INFO [6409]: Version from config: 1.0 -- 18:08:40.339 DEBUG [6409]: Connecting to database... -- 18:08:40.339 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:40.339 SQL [6409]: pgsql_db_connect() -- 18:08:40.344 DEBUG [6409]: Database connection successful -- 18:08:40.344 INFO [6409]: _SERVER found -- 18:08:40.344 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 18:08:40.344 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:08:40.344 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:08:40.344 INFO [6409]: QUERY_STRING = /member/configure -- 18:08:40.344 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:40.384 INFO [6409]: COREGRADE is stopping... -- 18:08:40.384 DEBUG [6409]: Closing database connection -- 18:08:40.384 SQL [6409]: pgsql_close() -- 18:08:40.598 INFO [6409]: COREGRADE is starting... -- 18:08:40.599 INFO [6409]: Version from config: 1.0 -- 18:08:40.599 DEBUG [6409]: Connecting to database... -- 18:08:40.599 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:40.599 SQL [6409]: pgsql_db_connect() -- 18:08:40.603 DEBUG [6409]: Database connection successful -- 18:08:40.603 INFO [6409]: _SERVER found -- 18:08:40.603 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 18:08:40.603 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:08:40.603 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:08:40.603 INFO [6409]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:08:40.603 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:40.614 INFO [6409]: COREGRADE is stopping... -- 18:08:40.614 DEBUG [6409]: Closing database connection -- 18:08:40.615 SQL [6409]: pgsql_close() -- 18:08:42.824 INFO [6409]: COREGRADE is starting... -- 18:08:42.824 INFO [6409]: Version from config: 1.0 -- 18:08:42.824 DEBUG [6409]: Connecting to database... -- 18:08:42.824 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:42.824 SQL [6409]: pgsql_db_connect() -- 18:08:42.829 DEBUG [6409]: Database connection successful -- 18:08:42.829 INFO [6409]: _SERVER found -- 18:08:42.829 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 18:08:42.829 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:08:42.829 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:08:42.829 INFO [6409]: QUERY_STRING = /member/mycalendar -- 18:08:42.829 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:42.867 INFO [6409]: COREGRADE is stopping... -- 18:08:42.867 DEBUG [6409]: Closing database connection -- 18:08:42.867 SQL [6409]: pgsql_close() -- 18:08:43.091 INFO [6409]: COREGRADE is starting... -- 18:08:43.091 INFO [6409]: Version from config: 1.0 -- 18:08:43.091 DEBUG [6409]: Connecting to database... -- 18:08:43.091 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:43.091 SQL [6409]: pgsql_db_connect() -- 18:08:43.096 DEBUG [6409]: Database connection successful -- 18:08:43.096 INFO [6409]: _SERVER found -- 18:08:43.096 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 18:08:43.096 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:08:43.096 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:08:43.096 INFO [6409]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:08:43.096 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:43.107 INFO [6409]: COREGRADE is stopping... -- 18:08:43.107 DEBUG [6409]: Closing database connection -- 18:08:43.107 SQL [6409]: pgsql_close() -- 18:08:49.230 INFO [6381]: COREGRADE is starting... -- 18:08:49.230 INFO [6381]: Version from config: 1.0 -- 18:08:49.230 DEBUG [6381]: Connecting to database... -- 18:08:49.230 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:49.230 SQL [6381]: pgsql_db_connect() -- 18:08:49.235 DEBUG [6381]: Database connection successful -- 18:08:49.235 INFO [6381]: _SERVER found -- 18:08:49.235 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 18:08:49.235 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:08:49.235 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:08:49.235 INFO [6381]: QUERY_STRING = /member -- 18:08:49.235 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:49.275 INFO [6381]: COREGRADE is stopping... -- 18:08:49.275 DEBUG [6381]: Closing database connection -- 18:08:49.275 SQL [6381]: pgsql_close() -- 18:08:49.502 INFO [6381]: COREGRADE is starting... -- 18:08:49.502 INFO [6381]: Version from config: 1.0 -- 18:08:49.502 DEBUG [6381]: Connecting to database... -- 18:08:49.502 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:49.502 SQL [6381]: pgsql_db_connect() -- 18:08:49.507 DEBUG [6381]: Database connection successful -- 18:08:49.507 INFO [6381]: _SERVER found -- 18:08:49.507 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 18:08:49.507 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:08:49.507 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:08:49.507 INFO [6381]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:08:49.507 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:49.518 INFO [6381]: COREGRADE is stopping... -- 18:08:49.518 DEBUG [6381]: Closing database connection -- 18:08:49.518 SQL [6381]: pgsql_close() -- 18:08:53.069 INFO [6381]: COREGRADE is starting... -- 18:08:53.069 INFO [6381]: Version from config: 1.0 -- 18:08:53.069 DEBUG [6381]: Connecting to database... -- 18:08:53.069 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:53.069 SQL [6381]: pgsql_db_connect() -- 18:08:53.074 DEBUG [6381]: Database connection successful -- 18:08:53.074 INFO [6381]: _SERVER found -- 18:08:53.074 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 18:08:53.074 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:08:53.074 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:08:53.074 INFO [6381]: QUERY_STRING = /member/page -- 18:08:53.074 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:53.116 INFO [6381]: COREGRADE is stopping... -- 18:08:53.116 DEBUG [6381]: Closing database connection -- 18:08:53.116 SQL [6381]: pgsql_close() -- 18:08:53.338 INFO [6381]: COREGRADE is starting... -- 18:08:53.338 INFO [6381]: Version from config: 1.0 -- 18:08:53.338 DEBUG [6381]: Connecting to database... -- 18:08:53.338 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:53.338 SQL [6381]: pgsql_db_connect() -- 18:08:53.343 DEBUG [6381]: Database connection successful -- 18:08:53.343 INFO [6381]: _SERVER found -- 18:08:53.343 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 18:08:53.343 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:08:53.343 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:08:53.343 INFO [6381]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:08:53.343 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:53.354 INFO [6381]: COREGRADE is stopping... -- 18:08:53.354 DEBUG [6381]: Closing database connection -- 18:08:53.354 SQL [6381]: pgsql_close() -- 18:09:38.531 INFO [7017]: COREGRADE is starting... -- 18:09:38.531 INFO [7017]: Version from config: 1.0 -- 18:09:38.531 DEBUG [7017]: Connecting to database... -- 18:09:38.531 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:09:38.531 SQL [7017]: pgsql_db_connect() -- 18:09:38.535 DEBUG [7017]: Database connection successful -- 18:09:38.535 INFO [7017]: _SERVER found -- 18:09:38.535 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 18:09:38.535 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 18:09:38.535 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=23386jhnm7ue1o5jtpdjs2v2kdf2ska5 -- 18:09:38.535 INFO [7017]: QUERY_STRING = /member/viewSharePage -- 18:09:38.535 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:09:38.569 INFO [7017]: COREGRADE is stopping... -- 18:09:38.569 DEBUG [7017]: Closing database connection -- 18:09:38.569 SQL [7017]: pgsql_close() -- 18:10:28.504 INFO [6385]: COREGRADE is starting... -- 18:10:28.504 INFO [6385]: Version from config: 1.0 -- 18:10:28.504 DEBUG [6385]: Connecting to database... -- 18:10:28.504 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:10:28.504 SQL [6385]: pgsql_db_connect() -- 18:10:28.508 DEBUG [6385]: Database connection successful -- 18:10:28.508 INFO [6385]: _SERVER found -- 18:10:28.508 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 18:10:28.508 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 18:10:28.508 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=23386jhnm7ue1o5jtpdjs2v2kdf2ska5 -- 18:10:28.508 INFO [6385]: QUERY_STRING = /member/viewSharePage -- 18:10:28.508 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:10:28.543 INFO [6385]: COREGRADE is stopping... -- 18:10:28.543 DEBUG [6385]: Closing database connection -- 18:10:28.543 SQL [6385]: pgsql_close() -- 18:11:28.653 INFO [6382]: COREGRADE is starting... -- 18:11:28.653 INFO [6382]: Version from config: 1.0 -- 18:11:28.653 DEBUG [6382]: Connecting to database... -- 18:11:28.653 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:11:28.653 SQL [6382]: pgsql_db_connect() -- 18:11:28.657 DEBUG [6382]: Database connection successful -- 18:11:28.657 INFO [6382]: _SERVER found -- 18:11:28.657 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 18:11:28.657 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 18:11:28.657 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=23386jhnm7ue1o5jtpdjs2v2kdf2ska5 -- 18:11:28.657 INFO [6382]: QUERY_STRING = /member/page -- 18:11:28.657 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:11:28.699 INFO [6382]: COREGRADE is stopping... -- 18:11:28.699 DEBUG [6382]: Closing database connection -- 18:11:28.699 SQL [6382]: pgsql_close() -- 18:11:28.898 INFO [6382]: COREGRADE is starting... -- 18:11:28.899 INFO [6382]: Version from config: 1.0 -- 18:11:28.899 DEBUG [6382]: Connecting to database... -- 18:11:28.899 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:11:28.899 SQL [6382]: pgsql_db_connect() -- 18:11:28.903 DEBUG [6382]: Database connection successful -- 18:11:28.903 INFO [6382]: _SERVER found -- 18:11:28.903 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 18:11:28.903 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 18:11:28.903 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=7902csmhiba36nt22v75uibheqgqkk98 -- 18:11:28.903 INFO [6382]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:11:28.903 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:11:28.914 INFO [6382]: COREGRADE is stopping... -- 18:11:28.914 DEBUG [6382]: Closing database connection -- 18:11:28.914 SQL [6382]: pgsql_close() -- 18:11:29.251 INFO [6382]: COREGRADE is starting... -- 18:11:29.252 INFO [6382]: Version from config: 1.0 -- 18:11:29.252 DEBUG [6382]: Connecting to database... -- 18:11:29.252 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:11:29.252 SQL [6382]: pgsql_db_connect() -- 18:11:29.256 DEBUG [6382]: Database connection successful -- 18:11:29.256 INFO [6382]: _SERVER found -- 18:11:29.256 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 18:11:29.256 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 18:11:29.256 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=7902csmhiba36nt22v75uibheqgqkk98 -- 18:11:29.256 INFO [6382]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:11:29.256 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:11:29.267 INFO [6382]: COREGRADE is stopping... -- 18:11:29.267 DEBUG [6382]: Closing database connection -- 18:11:29.267 SQL [6382]: pgsql_close() -- 18:11:33.241 INFO [6382]: COREGRADE is starting... -- 18:11:33.241 INFO [6382]: Version from config: 1.0 -- 18:11:33.241 DEBUG [6382]: Connecting to database... -- 18:11:33.241 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:11:33.241 SQL [6382]: pgsql_db_connect() -- 18:11:33.245 DEBUG [6382]: Database connection successful -- 18:11:33.245 INFO [6382]: _SERVER found -- 18:11:33.245 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 18:11:33.245 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 18:11:33.245 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=7902csmhiba36nt22v75uibheqgqkk98 -- 18:11:33.245 INFO [6382]: QUERY_STRING = /member/configure -- 18:11:33.245 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:11:33.284 INFO [6382]: COREGRADE is stopping... -- 18:11:33.284 DEBUG [6382]: Closing database connection -- 18:11:33.284 SQL [6382]: pgsql_close() -- 18:11:33.509 INFO [6382]: COREGRADE is starting... -- 18:11:33.510 INFO [6382]: Version from config: 1.0 -- 18:11:33.510 DEBUG [6382]: Connecting to database... -- 18:11:33.510 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:11:33.510 SQL [6382]: pgsql_db_connect() -- 18:11:33.514 DEBUG [6382]: Database connection successful -- 18:11:33.514 INFO [6382]: _SERVER found -- 18:11:33.514 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 18:11:33.514 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 18:11:33.514 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=7902csmhiba36nt22v75uibheqgqkk98 -- 18:11:33.514 INFO [6382]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:11:33.514 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:11:33.525 INFO [6382]: COREGRADE is stopping... -- 18:11:33.525 DEBUG [6382]: Closing database connection -- 18:11:33.525 SQL [6382]: pgsql_close() -- 18:11:33.730 INFO [6382]: COREGRADE is starting... -- 18:11:33.731 INFO [6382]: Version from config: 1.0 -- 18:11:33.731 DEBUG [6382]: Connecting to database... -- 18:11:33.731 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:11:33.731 SQL [6382]: pgsql_db_connect() -- 18:11:33.735 DEBUG [6382]: Database connection successful -- 18:11:33.735 INFO [6382]: _SERVER found -- 18:11:33.735 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 18:11:33.735 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 18:11:33.735 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=7902csmhiba36nt22v75uibheqgqkk98 -- 18:11:33.735 INFO [6382]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:11:33.735 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:11:33.746 INFO [6382]: COREGRADE is stopping... -- 18:11:33.746 DEBUG [6382]: Closing database connection -- 18:11:33.746 SQL [6382]: pgsql_close() -- 18:11:36.458 INFO [6382]: COREGRADE is starting... -- 18:11:36.458 INFO [6382]: Version from config: 1.0 -- 18:11:36.458 DEBUG [6382]: Connecting to database... -- 18:11:36.458 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:11:36.458 SQL [6382]: pgsql_db_connect() -- 18:11:36.462 DEBUG [6382]: Database connection successful -- 18:11:36.462 INFO [6382]: _SERVER found -- 18:11:36.462 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 18:11:36.462 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 18:11:36.462 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=7902csmhiba36nt22v75uibheqgqkk98 -- 18:11:36.462 INFO [6382]: QUERY_STRING = /member/viewSharePage -- 18:11:36.462 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:11:36.499 INFO [6382]: COREGRADE is stopping... -- 18:11:36.499 DEBUG [6382]: Closing database connection -- 18:11:36.499 SQL [6382]: pgsql_close() -- 18:12:16.555 INFO [6405]: COREGRADE is starting... -- 18:12:16.555 INFO [6405]: Version from config: 1.0 -- 18:12:16.555 DEBUG [6405]: Connecting to database... -- 18:12:16.555 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:12:16.555 SQL [6405]: pgsql_db_connect() -- 18:12:16.559 DEBUG [6405]: Database connection successful -- 18:12:16.559 INFO [6405]: _SERVER found -- 18:12:16.559 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 18:12:16.559 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 18:12:16.559 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=7902csmhiba36nt22v75uibheqgqkk98 -- 18:12:16.559 INFO [6405]: QUERY_STRING = /member/viewSharePage -- 18:12:16.559 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:12:16.594 INFO [6405]: COREGRADE is stopping... -- 18:12:16.594 DEBUG [6405]: Closing database connection -- 18:12:16.594 SQL [6405]: pgsql_close() -- 18:12:17.282 INFO [6405]: COREGRADE is starting... -- 18:12:17.282 INFO [6405]: Version from config: 1.0 -- 18:12:17.282 DEBUG [6405]: Connecting to database... -- 18:12:17.282 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:12:17.282 SQL [6405]: pgsql_db_connect() -- 18:12:17.286 DEBUG [6405]: Database connection successful -- 18:12:17.286 INFO [6405]: _SERVER found -- 18:12:17.286 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 18:12:17.286 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 18:12:17.286 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=7902csmhiba36nt22v75uibheqgqkk98 -- 18:12:17.286 INFO [6405]: QUERY_STRING = /member/viewSharePage -- 18:12:17.286 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:12:17.320 INFO [6405]: COREGRADE is stopping... -- 18:12:17.320 DEBUG [6405]: Closing database connection -- 18:12:17.320 SQL [6405]: pgsql_close() -- 18:12:18.165 INFO [6405]: COREGRADE is starting... -- 18:12:18.165 INFO [6405]: Version from config: 1.0 -- 18:12:18.165 DEBUG [6405]: Connecting to database... -- 18:12:18.165 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:12:18.165 SQL [6405]: pgsql_db_connect() -- 18:12:18.169 DEBUG [6405]: Database connection successful -- 18:12:18.169 INFO [6405]: _SERVER found -- 18:12:18.169 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 18:12:18.169 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 18:12:18.169 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=7902csmhiba36nt22v75uibheqgqkk98 -- 18:12:18.169 INFO [6405]: QUERY_STRING = /member/viewSharePage -- 18:12:18.169 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:12:18.203 INFO [6405]: COREGRADE is stopping... -- 18:12:18.203 DEBUG [6405]: Closing database connection -- 18:12:18.203 SQL [6405]: pgsql_close() -- 18:12:50.187 INFO [6384]: COREGRADE is starting... -- 18:12:50.187 INFO [6384]: Version from config: 1.0 -- 18:12:50.187 DEBUG [6384]: Connecting to database... -- 18:12:50.187 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:12:50.187 SQL [6384]: pgsql_db_connect() -- 18:12:50.191 DEBUG [6384]: Database connection successful -- 18:12:50.191 INFO [6384]: _SERVER found -- 18:12:50.191 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 18:12:50.191 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 18:12:50.191 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=7902csmhiba36nt22v75uibheqgqkk98 -- 18:12:50.191 INFO [6384]: QUERY_STRING = /member/viewSharePage -- 18:12:50.191 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:12:50.226 INFO [6384]: COREGRADE is stopping... -- 18:12:50.226 DEBUG [6384]: Closing database connection -- 18:12:50.226 SQL [6384]: pgsql_close() -- 18:12:50.832 INFO [6384]: COREGRADE is starting... -- 18:12:50.832 INFO [6384]: Version from config: 1.0 -- 18:12:50.832 DEBUG [6384]: Connecting to database... -- 18:12:50.832 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:12:50.832 SQL [6384]: pgsql_db_connect() -- 18:12:50.836 DEBUG [6384]: Database connection successful -- 18:12:50.836 INFO [6384]: _SERVER found -- 18:12:50.836 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 18:12:50.836 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 18:12:50.836 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=7902csmhiba36nt22v75uibheqgqkk98 -- 18:12:50.836 INFO [6384]: QUERY_STRING = /member/viewSharePage -- 18:12:50.836 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:12:50.870 INFO [6384]: COREGRADE is stopping... -- 18:12:50.870 DEBUG [6384]: Closing database connection -- 18:12:50.870 SQL [6384]: pgsql_close() -- 18:13:52.757 INFO [7160]: COREGRADE is starting... -- 18:13:52.757 INFO [7160]: Version from config: 1.0 -- 18:13:52.757 DEBUG [7160]: Connecting to database... -- 18:13:52.757 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:13:52.757 SQL [7160]: pgsql_db_connect() -- 18:13:52.762 DEBUG [7160]: Database connection successful -- 18:13:52.762 INFO [7160]: _SERVER found -- 18:13:52.762 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 18:13:52.762 INFO [7160]: SERVER_NAME = oameye.works.coregrade.com -- 18:13:52.762 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=7902csmhiba36nt22v75uibheqgqkk98 -- 18:13:52.762 INFO [7160]: QUERY_STRING = /member/viewSharePage -- 18:13:52.762 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:13:52.797 INFO [7160]: COREGRADE is stopping... -- 18:13:52.797 DEBUG [7160]: Closing database connection -- 18:13:52.797 SQL [7160]: pgsql_close() -- 18:14:16.158 INFO [6383]: COREGRADE is starting... -- 18:14:16.158 INFO [6383]: Version from config: 1.0 -- 18:14:16.158 DEBUG [6383]: Connecting to database... -- 18:14:16.158 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:14:16.158 SQL [6383]: pgsql_db_connect() -- 18:14:16.163 DEBUG [6383]: Database connection successful -- 18:14:16.163 INFO [6383]: _SERVER found -- 18:14:16.163 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 18:14:16.163 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 18:14:16.163 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=7902csmhiba36nt22v75uibheqgqkk98 -- 18:14:16.163 INFO [6383]: QUERY_STRING = /member/viewSharePage -- 18:14:16.163 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:14:16.198 INFO [6383]: COREGRADE is stopping... -- 18:14:16.198 DEBUG [6383]: Closing database connection -- 18:14:16.198 SQL [6383]: pgsql_close() -- 18:14:17.104 INFO [6383]: COREGRADE is starting... -- 18:14:17.105 INFO [6383]: Version from config: 1.0 -- 18:14:17.105 DEBUG [6383]: Connecting to database... -- 18:14:17.105 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:14:17.105 SQL [6383]: pgsql_db_connect() -- 18:14:17.109 DEBUG [6383]: Database connection successful -- 18:14:17.109 INFO [6383]: _SERVER found -- 18:14:17.109 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 18:14:17.109 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 18:14:17.109 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=7902csmhiba36nt22v75uibheqgqkk98 -- 18:14:17.109 INFO [6383]: QUERY_STRING = /member/viewSharePage -- 18:14:17.109 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:14:17.143 INFO [6383]: COREGRADE is stopping... -- 18:14:17.143 DEBUG [6383]: Closing database connection -- 18:14:17.143 SQL [6383]: pgsql_close() -- 18:14:17.755 INFO [6383]: COREGRADE is starting... -- 18:14:17.755 INFO [6383]: Version from config: 1.0 -- 18:14:17.755 DEBUG [6383]: Connecting to database... -- 18:14:17.755 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:14:17.755 SQL [6383]: pgsql_db_connect() -- 18:14:17.759 DEBUG [6383]: Database connection successful -- 18:14:17.759 INFO [6383]: _SERVER found -- 18:14:17.759 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 18:14:17.759 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 18:14:17.760 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=7902csmhiba36nt22v75uibheqgqkk98 -- 18:14:17.760 INFO [6383]: QUERY_STRING = /member/viewSharePage -- 18:14:17.760 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:14:17.793 INFO [6383]: COREGRADE is stopping... -- 18:14:17.793 DEBUG [6383]: Closing database connection -- 18:14:17.793 SQL [6383]: pgsql_close() -- 18:15:00.082 INFO [7159]: COREGRADE is starting... -- 18:15:00.082 INFO [7159]: Version from config: 1.0 -- 18:15:00.082 DEBUG [7159]: Connecting to database... -- 18:15:00.083 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:15:00.083 SQL [7159]: pgsql_db_connect() -- 18:15:00.087 DEBUG [7159]: Database connection successful -- 18:15:00.087 INFO [7159]: _SERVER found -- 18:15:00.087 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 18:15:00.087 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 18:15:00.087 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=7902csmhiba36nt22v75uibheqgqkk98 -- 18:15:00.087 INFO [7159]: QUERY_STRING = /member/configure -- 18:15:00.087 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:15:00.123 INFO [7159]: COREGRADE is stopping... -- 18:15:00.123 DEBUG [7159]: Closing database connection -- 18:15:00.123 SQL [7159]: pgsql_close() -- 18:15:00.273 INFO [7159]: COREGRADE is starting... -- 18:15:00.273 INFO [7159]: Version from config: 1.0 -- 18:15:00.273 DEBUG [7159]: Connecting to database... -- 18:15:00.273 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:15:00.273 SQL [7159]: pgsql_db_connect() -- 18:15:00.277 DEBUG [7159]: Database connection successful -- 18:15:00.277 INFO [7159]: _SERVER found -- 18:15:00.277 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 18:15:00.277 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 18:15:00.277 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=7902csmhiba36nt22v75uibheqgqkk98 -- 18:15:00.277 INFO [7159]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:15:00.277 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:15:00.288 INFO [7159]: COREGRADE is stopping... -- 18:15:00.288 DEBUG [7159]: Closing database connection -- 18:15:00.288 SQL [7159]: pgsql_close() -- 18:15:00.494 INFO [7159]: COREGRADE is starting... -- 18:15:00.494 INFO [7159]: Version from config: 1.0 -- 18:15:00.494 DEBUG [7159]: Connecting to database... -- 18:15:00.494 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:15:00.494 SQL [7159]: pgsql_db_connect() -- 18:15:00.498 DEBUG [7159]: Database connection successful -- 18:15:00.498 INFO [7159]: _SERVER found -- 18:15:00.498 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 18:15:00.498 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 18:15:00.498 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=7902csmhiba36nt22v75uibheqgqkk98 -- 18:15:00.498 INFO [7159]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:15:00.498 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:15:00.510 INFO [7159]: COREGRADE is stopping... -- 18:15:00.510 DEBUG [7159]: Closing database connection -- 18:15:00.510 SQL [7159]: pgsql_close() -- 18:15:03.914 INFO [6409]: COREGRADE is starting... -- 18:15:03.914 INFO [6409]: Version from config: 1.0 -- 18:15:03.914 DEBUG [6409]: Connecting to database... -- 18:15:03.914 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:15:03.914 SQL [6409]: pgsql_db_connect() -- 18:15:03.918 DEBUG [6409]: Database connection successful -- 18:15:03.918 INFO [6409]: _SERVER found -- 18:15:03.918 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 18:15:03.918 INFO [6409]: SERVER_NAME = oameye.works.coregrade.com -- 18:15:03.918 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=7902csmhiba36nt22v75uibheqgqkk98 -- 18:15:03.918 INFO [6409]: QUERY_STRING = /member/viewSharePage -- 18:15:03.918 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:15:03.952 INFO [6409]: COREGRADE is stopping... -- 18:15:03.952 DEBUG [6409]: Closing database connection -- 18:15:03.952 SQL [6409]: pgsql_close() -- 18:15:16.824 INFO [6381]: COREGRADE is starting... -- 18:15:16.824 INFO [6381]: Version from config: 1.0 -- 18:15:16.824 DEBUG [6381]: Connecting to database... -- 18:15:16.824 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:15:16.824 SQL [6381]: pgsql_db_connect() -- 18:15:16.828 DEBUG [6381]: Database connection successful -- 18:15:16.828 INFO [6381]: _SERVER found -- 18:15:16.829 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 18:15:16.829 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:15:16.829 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=g1r891jfss0jeugv8tn6o9or7hk5kdb0 -- 18:15:16.829 INFO [6381]: QUERY_STRING = /member/configure -- 18:15:16.829 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:15:16.869 INFO [6381]: COREGRADE is stopping... -- 18:15:16.869 DEBUG [6381]: Closing database connection -- 18:15:16.869 SQL [6381]: pgsql_close() -- 18:15:17.149 INFO [6381]: COREGRADE is starting... -- 18:15:17.150 INFO [6381]: Version from config: 1.0 -- 18:15:17.150 DEBUG [6381]: Connecting to database... -- 18:15:17.150 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:15:17.150 SQL [6381]: pgsql_db_connect() -- 18:15:17.154 DEBUG [6381]: Database connection successful -- 18:15:17.154 INFO [6381]: _SERVER found -- 18:15:17.154 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 18:15:17.154 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:15:17.154 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=8hp2k5pe50qrdl67o7lnu7fdmrvudam5 -- 18:15:17.154 INFO [6381]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:15:17.154 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:15:17.165 INFO [6381]: COREGRADE is stopping... -- 18:15:17.165 DEBUG [6381]: Closing database connection -- 18:15:17.165 SQL [6381]: pgsql_close() -- 18:15:17.359 INFO [6381]: COREGRADE is starting... -- 18:15:17.359 INFO [6381]: Version from config: 1.0 -- 18:15:17.359 DEBUG [6381]: Connecting to database... -- 18:15:17.359 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:15:17.359 SQL [6381]: pgsql_db_connect() -- 18:15:17.363 DEBUG [6381]: Database connection successful -- 18:15:17.363 INFO [6381]: _SERVER found -- 18:15:17.363 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 18:15:17.363 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:15:17.363 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=8hp2k5pe50qrdl67o7lnu7fdmrvudam5 -- 18:15:17.363 INFO [6381]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:15:17.363 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:15:17.374 INFO [6381]: COREGRADE is stopping... -- 18:15:17.374 DEBUG [6381]: Closing database connection -- 18:15:17.374 SQL [6381]: pgsql_close() -- 18:15:22.335 INFO [6381]: COREGRADE is starting... -- 18:15:22.336 INFO [6381]: Version from config: 1.0 -- 18:15:22.336 DEBUG [6381]: Connecting to database... -- 18:15:22.336 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:15:22.336 SQL [6381]: pgsql_db_connect() -- 18:15:22.340 DEBUG [6381]: Database connection successful -- 18:15:22.340 INFO [6381]: _SERVER found -- 18:15:22.340 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 18:15:22.340 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:15:22.340 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=8hp2k5pe50qrdl67o7lnu7fdmrvudam5 -- 18:15:22.340 INFO [6381]: QUERY_STRING = /member/configure -- 18:15:22.340 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:15:22.379 INFO [6381]: COREGRADE is stopping... -- 18:15:22.379 DEBUG [6381]: Closing database connection -- 18:15:22.379 SQL [6381]: pgsql_close() -- 18:15:22.578 INFO [6381]: COREGRADE is starting... -- 18:15:22.578 INFO [6381]: Version from config: 1.0 -- 18:15:22.578 DEBUG [6381]: Connecting to database... -- 18:15:22.578 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:15:22.578 SQL [6381]: pgsql_db_connect() -- 18:15:22.582 DEBUG [6381]: Database connection successful -- 18:15:22.582 INFO [6381]: _SERVER found -- 18:15:22.582 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 18:15:22.582 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:15:22.582 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=8hp2k5pe50qrdl67o7lnu7fdmrvudam5 -- 18:15:22.582 INFO [6381]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:15:22.582 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:15:22.593 INFO [6381]: COREGRADE is stopping... -- 18:15:22.593 DEBUG [6381]: Closing database connection -- 18:15:22.593 SQL [6381]: pgsql_close() -- 18:15:22.705 INFO [6381]: COREGRADE is starting... -- 18:15:22.705 INFO [6381]: Version from config: 1.0 -- 18:15:22.705 DEBUG [6381]: Connecting to database... -- 18:15:22.705 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:15:22.705 SQL [6381]: pgsql_db_connect() -- 18:15:22.709 DEBUG [6381]: Database connection successful -- 18:15:22.709 INFO [6381]: _SERVER found -- 18:15:22.709 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 18:15:22.709 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:15:22.709 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=8hp2k5pe50qrdl67o7lnu7fdmrvudam5 -- 18:15:22.709 INFO [6381]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:15:22.709 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:15:22.720 INFO [6381]: COREGRADE is stopping... -- 18:15:22.720 DEBUG [6381]: Closing database connection -- 18:15:22.720 SQL [6381]: pgsql_close() -- 18:15:29.623 INFO [7017]: COREGRADE is starting... -- 18:15:29.623 INFO [7017]: Version from config: 1.0 -- 18:15:29.623 DEBUG [7017]: Connecting to database... -- 18:15:29.623 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:15:29.623 SQL [7017]: pgsql_db_connect() -- 18:15:29.627 DEBUG [7017]: Database connection successful -- 18:15:29.627 INFO [7017]: _SERVER found -- 18:15:29.627 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 18:15:29.627 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 18:15:29.627 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=7902csmhiba36nt22v75uibheqgqkk98 -- 18:15:29.627 INFO [7017]: QUERY_STRING = /member/viewSharePage -- 18:15:29.627 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:15:29.662 INFO [7017]: COREGRADE is stopping... -- 18:15:29.662 DEBUG [7017]: Closing database connection -- 18:15:29.662 SQL [7017]: pgsql_close() -- 18:15:33.731 INFO [6385]: COREGRADE is starting... -- 18:15:33.731 INFO [6385]: Version from config: 1.0 -- 18:15:33.731 DEBUG [6385]: Connecting to database... -- 18:15:33.731 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:15:33.731 SQL [6385]: pgsql_db_connect() -- 18:15:33.735 DEBUG [6385]: Database connection successful -- 18:15:33.735 INFO [6385]: _SERVER found -- 18:15:33.735 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 18:15:33.735 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:15:33.735 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=8hp2k5pe50qrdl67o7lnu7fdmrvudam5 -- 18:15:33.735 INFO [6385]: QUERY_STRING = /member/configure -- 18:15:33.735 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:15:33.775 INFO [6385]: COREGRADE is stopping... -- 18:15:33.775 DEBUG [6385]: Closing database connection -- 18:15:33.775 SQL [6385]: pgsql_close() -- 18:15:34.077 INFO [6385]: COREGRADE is starting... -- 18:15:34.077 INFO [6385]: Version from config: 1.0 -- 18:15:34.077 DEBUG [6385]: Connecting to database... -- 18:15:34.077 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:15:34.077 SQL [6385]: pgsql_db_connect() -- 18:15:34.081 DEBUG [6385]: Database connection successful -- 18:15:34.081 INFO [6385]: _SERVER found -- 18:15:34.081 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 18:15:34.081 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:15:34.081 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=8hp2k5pe50qrdl67o7lnu7fdmrvudam5 -- 18:15:34.081 INFO [6385]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:15:34.081 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:15:34.092 INFO [6385]: COREGRADE is stopping... -- 18:15:34.093 DEBUG [6385]: Closing database connection -- 18:15:34.093 SQL [6385]: pgsql_close() -- 18:15:34.205 INFO [6385]: COREGRADE is starting... -- 18:15:34.206 INFO [6385]: Version from config: 1.0 -- 18:15:34.206 DEBUG [6385]: Connecting to database... -- 18:15:34.206 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:15:34.206 SQL [6385]: pgsql_db_connect() -- 18:15:34.210 DEBUG [6385]: Database connection successful -- 18:15:34.210 INFO [6385]: _SERVER found -- 18:15:34.210 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 18:15:34.210 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:15:34.210 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=8hp2k5pe50qrdl67o7lnu7fdmrvudam5 -- 18:15:34.210 INFO [6385]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:15:34.210 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:15:34.221 INFO [6385]: COREGRADE is stopping... -- 18:15:34.221 DEBUG [6385]: Closing database connection -- 18:15:34.221 SQL [6385]: pgsql_close() -- 18:15:36.123 INFO [6385]: COREGRADE is starting... -- 18:15:36.123 INFO [6385]: Version from config: 1.0 -- 18:15:36.123 DEBUG [6385]: Connecting to database... -- 18:15:36.123 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:15:36.123 SQL [6385]: pgsql_db_connect() -- 18:15:36.127 DEBUG [6385]: Database connection successful -- 18:15:36.127 INFO [6385]: _SERVER found -- 18:15:36.127 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 18:15:36.127 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:15:36.127 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=8hp2k5pe50qrdl67o7lnu7fdmrvudam5 -- 18:15:36.127 INFO [6385]: QUERY_STRING = /member -- 18:15:36.127 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:15:36.166 INFO [6385]: COREGRADE is stopping... -- 18:15:36.166 DEBUG [6385]: Closing database connection -- 18:15:36.166 SQL [6385]: pgsql_close() -- 18:15:36.421 INFO [6385]: COREGRADE is starting... -- 18:15:36.421 INFO [6385]: Version from config: 1.0 -- 18:15:36.421 DEBUG [6385]: Connecting to database... -- 18:15:36.421 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:15:36.421 SQL [6385]: pgsql_db_connect() -- 18:15:36.425 DEBUG [6385]: Database connection successful -- 18:15:36.425 INFO [6385]: _SERVER found -- 18:15:36.425 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 18:15:36.425 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:15:36.425 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=8hp2k5pe50qrdl67o7lnu7fdmrvudam5 -- 18:15:36.425 INFO [6385]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:15:36.425 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:15:36.436 INFO [6385]: COREGRADE is stopping... -- 18:15:36.436 DEBUG [6385]: Closing database connection -- 18:15:36.436 SQL [6385]: pgsql_close() -- 18:15:36.441 INFO [6382]: COREGRADE is starting... -- 18:15:36.441 INFO [6382]: Version from config: 1.0 -- 18:15:36.441 DEBUG [6382]: Connecting to database... -- 18:15:36.441 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:15:36.441 SQL [6382]: pgsql_db_connect() -- 18:15:36.445 DEBUG [6382]: Database connection successful -- 18:15:36.445 INFO [6382]: _SERVER found -- 18:15:36.445 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 18:15:36.445 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:15:36.445 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=8hp2k5pe50qrdl67o7lnu7fdmrvudam5 -- 18:15:36.445 INFO [6382]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:15:36.445 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:15:36.456 INFO [6382]: COREGRADE is stopping... -- 18:15:36.456 DEBUG [6382]: Closing database connection -- 18:15:36.456 SQL [6382]: pgsql_close() -- 18:16:08.766 INFO [6405]: COREGRADE is starting... -- 18:16:08.766 INFO [6405]: Version from config: 1.0 -- 18:16:08.766 DEBUG [6405]: Connecting to database... -- 18:16:08.766 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:08.766 SQL [6405]: pgsql_db_connect() -- 18:16:08.770 DEBUG [6405]: Database connection successful -- 18:16:08.770 INFO [6405]: _SERVER found -- 18:16:08.770 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 18:16:08.770 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 18:16:08.770 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=7902csmhiba36nt22v75uibheqgqkk98 -- 18:16:08.770 INFO [6405]: QUERY_STRING = /member/configure -- 18:16:08.770 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:16:08.807 INFO [6405]: COREGRADE is stopping... -- 18:16:08.807 DEBUG [6405]: Closing database connection -- 18:16:08.807 SQL [6405]: pgsql_close() -- 18:16:08.996 INFO [6405]: COREGRADE is starting... -- 18:16:08.997 INFO [6405]: Version from config: 1.0 -- 18:16:08.997 DEBUG [6405]: Connecting to database... -- 18:16:08.997 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:08.997 SQL [6405]: pgsql_db_connect() -- 18:16:09.001 DEBUG [6405]: Database connection successful -- 18:16:09.001 INFO [6405]: _SERVER found -- 18:16:09.001 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 18:16:09.001 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 18:16:09.001 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=7902csmhiba36nt22v75uibheqgqkk98 -- 18:16:09.001 INFO [6405]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:16:09.001 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:16:09.012 INFO [6405]: COREGRADE is stopping... -- 18:16:09.012 DEBUG [6405]: Closing database connection -- 18:16:09.012 SQL [6405]: pgsql_close() -- 18:16:09.190 INFO [6405]: COREGRADE is starting... -- 18:16:09.190 INFO [6405]: Version from config: 1.0 -- 18:16:09.190 DEBUG [6405]: Connecting to database... -- 18:16:09.190 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:09.190 SQL [6405]: pgsql_db_connect() -- 18:16:09.194 DEBUG [6405]: Database connection successful -- 18:16:09.194 INFO [6405]: _SERVER found -- 18:16:09.194 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 18:16:09.194 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 18:16:09.194 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=7902csmhiba36nt22v75uibheqgqkk98 -- 18:16:09.194 INFO [6405]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:16:09.194 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:16:09.205 INFO [6405]: COREGRADE is stopping... -- 18:16:09.205 DEBUG [6405]: Closing database connection -- 18:16:09.205 SQL [6405]: pgsql_close() -- 18:16:11.654 INFO [6405]: COREGRADE is starting... -- 18:16:11.654 INFO [6405]: Version from config: 1.0 -- 18:16:11.654 DEBUG [6405]: Connecting to database... -- 18:16:11.654 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:11.654 SQL [6405]: pgsql_db_connect() -- 18:16:11.658 DEBUG [6405]: Database connection successful -- 18:16:11.658 INFO [6405]: _SERVER found -- 18:16:11.658 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 18:16:11.658 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 18:16:11.658 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=7902csmhiba36nt22v75uibheqgqkk98 -- 18:16:11.658 INFO [6405]: QUERY_STRING = /member/viewSharePage -- 18:16:11.658 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:16:11.692 INFO [6405]: COREGRADE is stopping... -- 18:16:11.692 DEBUG [6405]: Closing database connection -- 18:16:11.692 SQL [6405]: pgsql_close() -- 18:16:35.188 INFO [7160]: COREGRADE is starting... -- 18:16:35.188 INFO [7160]: Version from config: 1.0 -- 18:16:35.188 DEBUG [7160]: Connecting to database... -- 18:16:35.188 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:35.188 SQL [7160]: pgsql_db_connect() -- 18:16:35.192 DEBUG [7160]: Database connection successful -- 18:16:35.192 INFO [7160]: _SERVER found -- 18:16:35.192 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 18:16:35.192 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:16:35.192 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=8hp2k5pe50qrdl67o7lnu7fdmrvudam5 -- 18:16:35.192 INFO [7160]: QUERY_STRING = /member/page -- 18:16:35.192 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:16:35.237 INFO [7160]: COREGRADE is stopping... -- 18:16:35.237 DEBUG [7160]: Closing database connection -- 18:16:35.237 SQL [7160]: pgsql_close() -- 18:16:35.549 INFO [7160]: COREGRADE is starting... -- 18:16:35.549 INFO [7160]: Version from config: 1.0 -- 18:16:35.549 DEBUG [7160]: Connecting to database... -- 18:16:35.549 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:35.549 SQL [7160]: pgsql_db_connect() -- 18:16:35.553 DEBUG [7160]: Database connection successful -- 18:16:35.553 INFO [7160]: _SERVER found -- 18:16:35.553 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 18:16:35.553 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:16:35.553 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=8hp2k5pe50qrdl67o7lnu7fdmrvudam5 -- 18:16:35.553 INFO [7160]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:16:35.553 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:16:35.564 INFO [7160]: COREGRADE is stopping... -- 18:16:35.564 DEBUG [7160]: Closing database connection -- 18:16:35.564 SQL [7160]: pgsql_close() -- 18:16:35.667 INFO [7160]: COREGRADE is starting... -- 18:16:35.667 INFO [7160]: Version from config: 1.0 -- 18:16:35.667 DEBUG [7160]: Connecting to database... -- 18:16:35.667 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:35.667 SQL [7160]: pgsql_db_connect() -- 18:16:35.671 DEBUG [7160]: Database connection successful -- 18:16:35.671 INFO [7160]: _SERVER found -- 18:16:35.671 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 18:16:35.671 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:16:35.671 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=8hp2k5pe50qrdl67o7lnu7fdmrvudam5 -- 18:16:35.671 INFO [7160]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:16:35.671 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:16:35.682 INFO [7160]: COREGRADE is stopping... -- 18:16:35.682 DEBUG [7160]: Closing database connection -- 18:16:35.682 SQL [7160]: pgsql_close() -- 18:16:47.009 INFO [6383]: COREGRADE is starting... -- 18:16:47.010 INFO [6383]: Version from config: 1.0 -- 18:16:47.010 DEBUG [6383]: Connecting to database... -- 18:16:47.010 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:47.010 SQL [6383]: pgsql_db_connect() -- 18:16:47.014 DEBUG [6383]: Database connection successful -- 18:16:47.014 INFO [6383]: _SERVER found -- 18:16:47.014 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 18:16:47.014 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 18:16:47.014 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=7902csmhiba36nt22v75uibheqgqkk98 -- 18:16:47.014 INFO [6383]: QUERY_STRING = /member/viewSharePage -- 18:16:47.014 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:16:47.048 INFO [6383]: COREGRADE is stopping... -- 18:16:47.048 DEBUG [6383]: Closing database connection -- 18:16:47.048 SQL [6383]: pgsql_close() -- 18:17:08.322 INFO [7159]: COREGRADE is starting... -- 18:17:08.322 INFO [7159]: Version from config: 1.0 -- 18:17:08.322 DEBUG [7159]: Connecting to database... -- 18:17:08.322 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:08.322 SQL [7159]: pgsql_db_connect() -- 18:17:08.326 DEBUG [7159]: Database connection successful -- 18:17:08.326 INFO [7159]: _SERVER found -- 18:17:08.326 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 18:17:08.326 INFO [7159]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:17:08.326 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=8hp2k5pe50qrdl67o7lnu7fdmrvudam5 -- 18:17:08.326 INFO [7159]: QUERY_STRING = /member/viewCardAddAction -- 18:17:08.326 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:17:08.358 INFO [7159]: COREGRADE is stopping... -- 18:17:08.358 DEBUG [7159]: Closing database connection -- 18:17:08.358 SQL [7159]: pgsql_close() -- 18:17:14.581 INFO [6409]: COREGRADE is starting... -- 18:17:14.581 INFO [6409]: Version from config: 1.0 -- 18:17:14.581 DEBUG [6409]: Connecting to database... -- 18:17:14.582 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:14.582 SQL [6409]: pgsql_db_connect() -- 18:17:14.586 DEBUG [6409]: Database connection successful -- 18:17:14.586 INFO [6409]: _SERVER found -- 18:17:14.586 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 18:17:14.586 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:17:14.586 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=8hp2k5pe50qrdl67o7lnu7fdmrvudam5 -- 18:17:14.586 INFO [6409]: QUERY_STRING = /member/configure -- 18:17:14.586 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:17:14.626 INFO [6409]: COREGRADE is stopping... -- 18:17:14.626 DEBUG [6409]: Closing database connection -- 18:17:14.626 SQL [6409]: pgsql_close() -- 18:17:14.940 INFO [6409]: COREGRADE is starting... -- 18:17:14.940 INFO [6409]: Version from config: 1.0 -- 18:17:14.940 DEBUG [6409]: Connecting to database... -- 18:17:14.940 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:14.940 SQL [6409]: pgsql_db_connect() -- 18:17:14.944 DEBUG [6409]: Database connection successful -- 18:17:14.944 INFO [6409]: _SERVER found -- 18:17:14.944 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 18:17:14.944 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:17:14.944 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=8hp2k5pe50qrdl67o7lnu7fdmrvudam5 -- 18:17:14.944 INFO [6409]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:17:14.944 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:17:14.955 INFO [6409]: COREGRADE is stopping... -- 18:17:14.955 DEBUG [6409]: Closing database connection -- 18:17:14.955 SQL [6409]: pgsql_close() -- 18:17:15.067 INFO [6409]: COREGRADE is starting... -- 18:17:15.067 INFO [6409]: Version from config: 1.0 -- 18:17:15.067 DEBUG [6409]: Connecting to database... -- 18:17:15.067 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:15.067 SQL [6409]: pgsql_db_connect() -- 18:17:15.071 DEBUG [6409]: Database connection successful -- 18:17:15.071 INFO [6409]: _SERVER found -- 18:17:15.071 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 18:17:15.071 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:17:15.071 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=8hp2k5pe50qrdl67o7lnu7fdmrvudam5 -- 18:17:15.071 INFO [6409]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:17:15.071 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:17:15.082 INFO [6409]: COREGRADE is stopping... -- 18:17:15.082 DEBUG [6409]: Closing database connection -- 18:17:15.082 SQL [6409]: pgsql_close() -- 18:17:16.998 INFO [6409]: COREGRADE is starting... -- 18:17:16.998 INFO [6409]: Version from config: 1.0 -- 18:17:16.998 DEBUG [6409]: Connecting to database... -- 18:17:16.998 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:16.998 SQL [6409]: pgsql_db_connect() -- 18:17:17.002 DEBUG [6409]: Database connection successful -- 18:17:17.002 INFO [6409]: _SERVER found -- 18:17:17.002 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 18:17:17.002 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:17:17.002 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=8hp2k5pe50qrdl67o7lnu7fdmrvudam5 -- 18:17:17.002 INFO [6409]: QUERY_STRING = /member -- 18:17:17.002 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:17:17.041 INFO [6409]: COREGRADE is stopping... -- 18:17:17.041 DEBUG [6409]: Closing database connection -- 18:17:17.041 SQL [6409]: pgsql_close() -- 18:17:17.287 INFO [6409]: COREGRADE is starting... -- 18:17:17.288 INFO [6409]: Version from config: 1.0 -- 18:17:17.288 DEBUG [6409]: Connecting to database... -- 18:17:17.288 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:17.288 SQL [6409]: pgsql_db_connect() -- 18:17:17.292 DEBUG [6409]: Database connection successful -- 18:17:17.292 INFO [6409]: _SERVER found -- 18:17:17.292 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 18:17:17.292 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:17:17.292 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=8hp2k5pe50qrdl67o7lnu7fdmrvudam5 -- 18:17:17.292 INFO [6409]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:17:17.292 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:17:17.303 INFO [6409]: COREGRADE is stopping... -- 18:17:17.303 DEBUG [6409]: Closing database connection -- 18:17:17.303 SQL [6409]: pgsql_close() -- 18:17:17.309 INFO [6381]: COREGRADE is starting... -- 18:17:17.310 INFO [6381]: Version from config: 1.0 -- 18:17:17.310 DEBUG [6381]: Connecting to database... -- 18:17:17.310 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:17.310 SQL [6381]: pgsql_db_connect() -- 18:17:17.313 DEBUG [6381]: Database connection successful -- 18:17:17.313 INFO [6381]: _SERVER found -- 18:17:17.313 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 18:17:17.313 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:17:17.313 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=8hp2k5pe50qrdl67o7lnu7fdmrvudam5 -- 18:17:17.313 INFO [6381]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:17:17.313 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:17:17.325 INFO [6381]: COREGRADE is stopping... -- 18:17:17.325 DEBUG [6381]: Closing database connection -- 18:17:17.325 SQL [6381]: pgsql_close() -- 18:17:18.297 INFO [6381]: COREGRADE is starting... -- 18:17:18.297 INFO [6381]: Version from config: 1.0 -- 18:17:18.297 DEBUG [6381]: Connecting to database... -- 18:17:18.297 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:18.297 SQL [6381]: pgsql_db_connect() -- 18:17:18.301 DEBUG [6381]: Database connection successful -- 18:17:18.301 INFO [6381]: _SERVER found -- 18:17:18.301 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 18:17:18.301 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:17:18.301 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=8hp2k5pe50qrdl67o7lnu7fdmrvudam5 -- 18:17:18.301 INFO [6381]: QUERY_STRING = /member/page -- 18:17:18.301 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:17:18.342 INFO [6381]: COREGRADE is stopping... -- 18:17:18.342 DEBUG [6381]: Closing database connection -- 18:17:18.342 SQL [6381]: pgsql_close() -- 18:17:18.538 INFO [6381]: COREGRADE is starting... -- 18:17:18.538 INFO [6381]: Version from config: 1.0 -- 18:17:18.538 DEBUG [6381]: Connecting to database... -- 18:17:18.538 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:18.539 SQL [6381]: pgsql_db_connect() -- 18:17:18.543 DEBUG [6381]: Database connection successful -- 18:17:18.543 INFO [6381]: _SERVER found -- 18:17:18.543 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 18:17:18.543 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:17:18.543 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=8hp2k5pe50qrdl67o7lnu7fdmrvudam5 -- 18:17:18.543 INFO [6381]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:17:18.543 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:17:18.554 INFO [6381]: COREGRADE is stopping... -- 18:17:18.554 DEBUG [6381]: Closing database connection -- 18:17:18.554 SQL [6381]: pgsql_close() -- 18:17:18.636 INFO [6381]: COREGRADE is starting... -- 18:17:18.637 INFO [6381]: Version from config: 1.0 -- 18:17:18.637 DEBUG [6381]: Connecting to database... -- 18:17:18.637 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:18.637 SQL [6381]: pgsql_db_connect() -- 18:17:18.641 DEBUG [6381]: Database connection successful -- 18:17:18.641 INFO [6381]: _SERVER found -- 18:17:18.641 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 18:17:18.641 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:17:18.641 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=8hp2k5pe50qrdl67o7lnu7fdmrvudam5 -- 18:17:18.641 INFO [6381]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:17:18.641 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:17:18.652 INFO [6381]: COREGRADE is stopping... -- 18:17:18.652 DEBUG [6381]: Closing database connection -- 18:17:18.652 SQL [6381]: pgsql_close() -- 18:18:41.481 INFO [7017]: COREGRADE is starting... -- 18:18:41.481 INFO [7017]: Version from config: 1.0 -- 18:18:41.481 DEBUG [7017]: Connecting to database... -- 18:18:41.481 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:18:41.481 SQL [7017]: pgsql_db_connect() -- 18:18:41.486 DEBUG [7017]: Database connection successful -- 18:18:41.486 INFO [7017]: _SERVER found -- 18:18:41.486 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 18:18:41.486 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 18:18:41.486 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=7902csmhiba36nt22v75uibheqgqkk98 -- 18:18:41.486 INFO [7017]: QUERY_STRING = /member/viewSharePage -- 18:18:41.486 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:18:41.521 INFO [7017]: COREGRADE is stopping... -- 18:18:41.521 DEBUG [7017]: Closing database connection -- 18:18:41.521 SQL [7017]: pgsql_close() -- 18:19:20.379 INFO [6385]: COREGRADE is starting... -- 18:19:20.380 INFO [6385]: Version from config: 1.0 -- 18:19:20.380 DEBUG [6385]: Connecting to database... -- 18:19:20.380 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:19:20.380 SQL [6385]: pgsql_db_connect() -- 18:19:20.385 DEBUG [6385]: Database connection successful -- 18:19:20.385 INFO [6385]: _SERVER found -- 18:19:20.385 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 18:19:20.385 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 18:19:20.385 INFO [6385]: QUERY_STRING = -- 18:19:20.385 INFO [6385]: HTTP_X_FORWARDED_FOR = 23.111.103.100 -- 18:19:20.417 INFO [6385]: COREGRADE is stopping... -- 18:19:20.417 DEBUG [6385]: Closing database connection -- 18:19:20.417 SQL [6385]: pgsql_close() -- 18:20:29.727 INFO [6382]: COREGRADE is starting... -- 18:20:29.727 INFO [6382]: Version from config: 1.0 -- 18:20:29.727 DEBUG [6382]: Connecting to database... -- 18:20:29.727 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:20:29.727 SQL [6382]: pgsql_db_connect() -- 18:20:29.732 DEBUG [6382]: Database connection successful -- 18:20:29.732 INFO [6382]: _SERVER found -- 18:20:29.732 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 18:20:29.732 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:20:29.732 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=8hp2k5pe50qrdl67o7lnu7fdmrvudam5 -- 18:20:29.732 INFO [6382]: QUERY_STRING = /member/viewCardAddAction -- 18:20:29.732 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:20:29.768 INFO [6382]: COREGRADE is stopping... -- 18:20:29.768 DEBUG [6382]: Closing database connection -- 18:20:29.768 SQL [6382]: pgsql_close() -- 18:20:32.564 INFO [6382]: COREGRADE is starting... -- 18:20:32.564 INFO [6382]: Version from config: 1.0 -- 18:20:32.564 DEBUG [6382]: Connecting to database... -- 18:20:32.564 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:20:32.564 SQL [6382]: pgsql_db_connect() -- 18:20:32.568 DEBUG [6382]: Database connection successful -- 18:20:32.568 INFO [6382]: _SERVER found -- 18:20:32.568 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 18:20:32.568 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:20:32.568 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=8hp2k5pe50qrdl67o7lnu7fdmrvudam5 -- 18:20:32.568 INFO [6382]: QUERY_STRING = /member/viewCardAddAction -- 18:20:32.568 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:20:32.600 INFO [6382]: COREGRADE is stopping... -- 18:20:32.600 DEBUG [6382]: Closing database connection -- 18:20:32.600 SQL [6382]: pgsql_close() -- 18:21:05.416 INFO [6384]: COREGRADE is starting... -- 18:21:05.416 INFO [6384]: Version from config: 1.0 -- 18:21:05.416 DEBUG [6384]: Connecting to database... -- 18:21:05.416 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:21:05.416 SQL [6384]: pgsql_db_connect() -- 18:21:05.421 DEBUG [6384]: Database connection successful -- 18:21:05.421 INFO [6384]: _SERVER found -- 18:21:05.421 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 18:21:05.421 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 18:21:05.421 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=7902csmhiba36nt22v75uibheqgqkk98 -- 18:21:05.421 INFO [6384]: QUERY_STRING = /member/viewSharePage -- 18:21:05.421 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:21:05.457 INFO [6384]: COREGRADE is stopping... -- 18:21:05.457 DEBUG [6384]: Closing database connection -- 18:21:05.457 SQL [6384]: pgsql_close() -- 18:21:41.334 INFO [6405]: COREGRADE is starting... -- 18:21:41.334 INFO [6405]: Version from config: 1.0 -- 18:21:41.334 DEBUG [6405]: Connecting to database... -- 18:21:41.334 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:21:41.334 SQL [6405]: pgsql_db_connect() -- 18:21:41.339 DEBUG [6405]: Database connection successful -- 18:21:41.339 INFO [6405]: _SERVER found -- 18:21:41.339 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 18:21:41.339 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 18:21:41.339 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=7902csmhiba36nt22v75uibheqgqkk98 -- 18:21:41.339 INFO [6405]: QUERY_STRING = /member/viewSharePage -- 18:21:41.339 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:21:41.375 INFO [6405]: COREGRADE is stopping... -- 18:21:41.375 DEBUG [6405]: Closing database connection -- 18:21:41.375 SQL [6405]: pgsql_close() -- 18:21:42.569 INFO [6405]: COREGRADE is starting... -- 18:21:42.569 INFO [6405]: Version from config: 1.0 -- 18:21:42.569 DEBUG [6405]: Connecting to database... -- 18:21:42.569 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:21:42.569 SQL [6405]: pgsql_db_connect() -- 18:21:42.574 DEBUG [6405]: Database connection successful -- 18:21:42.574 INFO [6405]: _SERVER found -- 18:21:42.574 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 18:21:42.574 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 18:21:42.574 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=7902csmhiba36nt22v75uibheqgqkk98 -- 18:21:42.574 INFO [6405]: QUERY_STRING = /member/viewSharePage -- 18:21:42.574 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:21:42.608 INFO [6405]: COREGRADE is stopping... -- 18:21:42.608 DEBUG [6405]: Closing database connection -- 18:21:42.608 SQL [6405]: pgsql_close() -- 18:21:47.510 INFO [6405]: COREGRADE is starting... -- 18:21:47.510 INFO [6405]: Version from config: 1.0 -- 18:21:47.510 DEBUG [6405]: Connecting to database... -- 18:21:47.510 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:21:47.510 SQL [6405]: pgsql_db_connect() -- 18:21:47.515 DEBUG [6405]: Database connection successful -- 18:21:47.515 INFO [6405]: _SERVER found -- 18:21:47.515 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 18:21:47.515 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 18:21:47.515 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=7902csmhiba36nt22v75uibheqgqkk98 -- 18:21:47.515 INFO [6405]: QUERY_STRING = /member/configure -- 18:21:47.515 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:21:47.552 INFO [6405]: COREGRADE is stopping... -- 18:21:47.552 DEBUG [6405]: Closing database connection -- 18:21:47.552 SQL [6405]: pgsql_close() -- 18:21:47.753 INFO [6405]: COREGRADE is starting... -- 18:21:47.753 INFO [6405]: Version from config: 1.0 -- 18:21:47.753 DEBUG [6405]: Connecting to database... -- 18:21:47.753 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:21:47.753 SQL [6405]: pgsql_db_connect() -- 18:21:47.758 DEBUG [6405]: Database connection successful -- 18:21:47.758 INFO [6405]: _SERVER found -- 18:21:47.758 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 18:21:47.758 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 18:21:47.758 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=tprujt42vi6jq8ep762485en3jrfe9vs -- 18:21:47.758 INFO [6405]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:21:47.758 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:21:47.769 INFO [6405]: COREGRADE is stopping... -- 18:21:47.769 DEBUG [6405]: Closing database connection -- 18:21:47.769 SQL [6405]: pgsql_close() -- 18:21:47.980 INFO [6405]: COREGRADE is starting... -- 18:21:47.980 INFO [6405]: Version from config: 1.0 -- 18:21:47.980 DEBUG [6405]: Connecting to database... -- 18:21:47.980 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:21:47.980 SQL [6405]: pgsql_db_connect() -- 18:21:47.985 DEBUG [6405]: Database connection successful -- 18:21:47.985 INFO [6405]: _SERVER found -- 18:21:47.985 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 18:21:47.985 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 18:21:47.985 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=tprujt42vi6jq8ep762485en3jrfe9vs -- 18:21:47.985 INFO [6405]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:21:47.985 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:21:47.996 INFO [6405]: COREGRADE is stopping... -- 18:21:47.996 DEBUG [6405]: Closing database connection -- 18:21:47.996 SQL [6405]: pgsql_close() -- 18:21:50.825 INFO [6405]: COREGRADE is starting... -- 18:21:50.825 INFO [6405]: Version from config: 1.0 -- 18:21:50.825 DEBUG [6405]: Connecting to database... -- 18:21:50.825 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:21:50.825 SQL [6405]: pgsql_db_connect() -- 18:21:50.830 DEBUG [6405]: Database connection successful -- 18:21:50.830 INFO [6405]: _SERVER found -- 18:21:50.830 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 18:21:50.830 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 18:21:50.830 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=tprujt42vi6jq8ep762485en3jrfe9vs -- 18:21:50.830 INFO [6405]: QUERY_STRING = /member/viewSharePage -- 18:21:50.830 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:21:50.864 INFO [6405]: COREGRADE is stopping... -- 18:21:50.864 DEBUG [6405]: Closing database connection -- 18:21:50.864 SQL [6405]: pgsql_close() -- 18:22:26.876 INFO [7160]: COREGRADE is starting... -- 18:22:26.876 INFO [7160]: Version from config: 1.0 -- 18:22:26.876 DEBUG [7160]: Connecting to database... -- 18:22:26.876 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:22:26.877 SQL [7160]: pgsql_db_connect() -- 18:22:26.881 DEBUG [7160]: Database connection successful -- 18:22:26.881 INFO [7160]: _SERVER found -- 18:22:26.881 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 18:22:26.881 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:22:26.881 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=8hp2k5pe50qrdl67o7lnu7fdmrvudam5 -- 18:22:26.881 INFO [7160]: QUERY_STRING = /member -- 18:22:26.881 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:22:26.925 INFO [7160]: COREGRADE is stopping... -- 18:22:26.925 DEBUG [7160]: Closing database connection -- 18:22:26.925 SQL [7160]: pgsql_close() -- 18:22:27.354 INFO [7160]: COREGRADE is starting... -- 18:22:27.354 INFO [7160]: Version from config: 1.0 -- 18:22:27.354 DEBUG [7160]: Connecting to database... -- 18:22:27.355 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:22:27.355 SQL [7160]: pgsql_db_connect() -- 18:22:27.359 DEBUG [7160]: Database connection successful -- 18:22:27.359 INFO [7160]: _SERVER found -- 18:22:27.359 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 18:22:27.359 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:22:27.359 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:22:27.359 INFO [7160]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:22:27.359 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:22:27.370 INFO [7160]: COREGRADE is stopping... -- 18:22:27.370 DEBUG [7160]: Closing database connection -- 18:22:27.370 SQL [7160]: pgsql_close() -- 18:22:27.399 INFO [6383]: COREGRADE is starting... -- 18:22:27.400 INFO [6383]: Version from config: 1.0 -- 18:22:27.400 DEBUG [6383]: Connecting to database... -- 18:22:27.400 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:22:27.400 SQL [6383]: pgsql_db_connect() -- 18:22:27.404 DEBUG [6383]: Database connection successful -- 18:22:27.404 INFO [6383]: _SERVER found -- 18:22:27.404 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 18:22:27.404 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:22:27.404 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:22:27.404 INFO [6383]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:22:27.404 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:22:27.415 INFO [6383]: COREGRADE is stopping... -- 18:22:27.415 DEBUG [6383]: Closing database connection -- 18:22:27.415 SQL [6383]: pgsql_close() -- 18:22:27.986 INFO [6383]: COREGRADE is starting... -- 18:22:27.987 INFO [6383]: Version from config: 1.0 -- 18:22:27.987 DEBUG [6383]: Connecting to database... -- 18:22:27.987 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:22:27.987 SQL [6383]: pgsql_db_connect() -- 18:22:27.991 DEBUG [6383]: Database connection successful -- 18:22:27.991 INFO [6383]: _SERVER found -- 18:22:27.991 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 18:22:27.991 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:22:27.991 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:22:27.991 INFO [6383]: QUERY_STRING = /member/configure -- 18:22:27.991 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:22:28.031 INFO [6383]: COREGRADE is stopping... -- 18:22:28.031 DEBUG [6383]: Closing database connection -- 18:22:28.031 SQL [6383]: pgsql_close() -- 18:22:28.265 INFO [6383]: COREGRADE is starting... -- 18:22:28.265 INFO [6383]: Version from config: 1.0 -- 18:22:28.265 DEBUG [6383]: Connecting to database... -- 18:22:28.265 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:22:28.265 SQL [6383]: pgsql_db_connect() -- 18:22:28.269 DEBUG [6383]: Database connection successful -- 18:22:28.269 INFO [6383]: _SERVER found -- 18:22:28.269 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 18:22:28.269 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:22:28.269 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:22:28.269 INFO [6383]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:22:28.269 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:22:28.280 INFO [6383]: COREGRADE is stopping... -- 18:22:28.281 DEBUG [6383]: Closing database connection -- 18:22:28.281 SQL [6383]: pgsql_close() -- 18:22:28.381 INFO [6383]: COREGRADE is starting... -- 18:22:28.381 INFO [6383]: Version from config: 1.0 -- 18:22:28.381 DEBUG [6383]: Connecting to database... -- 18:22:28.381 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:22:28.381 SQL [6383]: pgsql_db_connect() -- 18:22:28.385 DEBUG [6383]: Database connection successful -- 18:22:28.385 INFO [6383]: _SERVER found -- 18:22:28.385 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 18:22:28.385 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:22:28.385 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:22:28.385 INFO [6383]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:22:28.385 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:22:28.397 INFO [6383]: COREGRADE is stopping... -- 18:22:28.397 DEBUG [6383]: Closing database connection -- 18:22:28.397 SQL [6383]: pgsql_close() -- 18:22:32.144 INFO [6383]: COREGRADE is starting... -- 18:22:32.144 INFO [6383]: Version from config: 1.0 -- 18:22:32.144 DEBUG [6383]: Connecting to database... -- 18:22:32.144 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:22:32.144 SQL [6383]: pgsql_db_connect() -- 18:22:32.148 DEBUG [6383]: Database connection successful -- 18:22:32.148 INFO [6383]: _SERVER found -- 18:22:32.148 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 18:22:32.148 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:22:32.148 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:22:32.148 INFO [6383]: QUERY_STRING = /member/viewSharePage -- 18:22:32.148 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:22:32.181 INFO [6383]: COREGRADE is stopping... -- 18:22:32.182 DEBUG [6383]: Closing database connection -- 18:22:32.182 SQL [6383]: pgsql_close() -- 18:23:23.749 INFO [7159]: COREGRADE is starting... -- 18:23:23.749 INFO [7159]: Version from config: 1.0 -- 18:23:23.749 DEBUG [7159]: Connecting to database... -- 18:23:23.749 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:23:23.749 SQL [7159]: pgsql_db_connect() -- 18:23:23.753 DEBUG [7159]: Database connection successful -- 18:23:23.753 INFO [7159]: _SERVER found -- 18:23:23.753 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 18:23:23.753 INFO [7159]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:23:23.753 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:23:23.753 INFO [7159]: QUERY_STRING = /member/page -- 18:23:23.753 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:23:23.795 INFO [7159]: COREGRADE is stopping... -- 18:23:23.795 DEBUG [7159]: Closing database connection -- 18:23:23.795 SQL [7159]: pgsql_close() -- 18:23:24.095 INFO [7159]: COREGRADE is starting... -- 18:23:24.095 INFO [7159]: Version from config: 1.0 -- 18:23:24.095 DEBUG [7159]: Connecting to database... -- 18:23:24.095 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:23:24.095 SQL [7159]: pgsql_db_connect() -- 18:23:24.099 DEBUG [7159]: Database connection successful -- 18:23:24.099 INFO [7159]: _SERVER found -- 18:23:24.099 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 18:23:24.099 INFO [7159]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:23:24.099 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:23:24.099 INFO [7159]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:23:24.099 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:23:24.111 INFO [7159]: COREGRADE is stopping... -- 18:23:24.111 DEBUG [7159]: Closing database connection -- 18:23:24.111 SQL [7159]: pgsql_close() -- 18:23:24.233 INFO [7159]: COREGRADE is starting... -- 18:23:24.234 INFO [7159]: Version from config: 1.0 -- 18:23:24.234 DEBUG [7159]: Connecting to database... -- 18:23:24.234 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:23:24.234 SQL [7159]: pgsql_db_connect() -- 18:23:24.238 DEBUG [7159]: Database connection successful -- 18:23:24.238 INFO [7159]: _SERVER found -- 18:23:24.238 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 18:23:24.238 INFO [7159]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:23:24.238 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:23:24.238 INFO [7159]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:23:24.238 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:23:24.249 INFO [7159]: COREGRADE is stopping... -- 18:23:24.249 DEBUG [7159]: Closing database connection -- 18:23:24.249 SQL [7159]: pgsql_close() -- 18:23:41.895 INFO [6409]: COREGRADE is starting... -- 18:23:41.895 INFO [6409]: Version from config: 1.0 -- 18:23:41.895 DEBUG [6409]: Connecting to database... -- 18:23:41.895 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:23:41.895 SQL [6409]: pgsql_db_connect() -- 18:23:41.899 DEBUG [6409]: Database connection successful -- 18:23:41.899 INFO [6409]: _SERVER found -- 18:23:41.899 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 18:23:41.899 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:23:41.899 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:23:41.899 INFO [6409]: QUERY_STRING = /member -- 18:23:41.899 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:23:41.940 INFO [6409]: COREGRADE is stopping... -- 18:23:41.940 DEBUG [6409]: Closing database connection -- 18:23:41.940 SQL [6409]: pgsql_close() -- 18:23:42.296 INFO [6409]: COREGRADE is starting... -- 18:23:42.296 INFO [6409]: Version from config: 1.0 -- 18:23:42.296 DEBUG [6409]: Connecting to database... -- 18:23:42.296 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:23:42.296 SQL [6409]: pgsql_db_connect() -- 18:23:42.300 DEBUG [6409]: Database connection successful -- 18:23:42.300 INFO [6409]: _SERVER found -- 18:23:42.300 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 18:23:42.300 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:23:42.300 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:23:42.300 INFO [6409]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:23:42.300 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:23:42.311 INFO [6409]: COREGRADE is stopping... -- 18:23:42.311 DEBUG [6409]: Closing database connection -- 18:23:42.311 SQL [6409]: pgsql_close() -- 18:23:42.319 INFO [6381]: COREGRADE is starting... -- 18:23:42.319 INFO [6381]: Version from config: 1.0 -- 18:23:42.319 DEBUG [6381]: Connecting to database... -- 18:23:42.319 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:23:42.319 SQL [6381]: pgsql_db_connect() -- 18:23:42.323 DEBUG [6381]: Database connection successful -- 18:23:42.323 INFO [6381]: _SERVER found -- 18:23:42.323 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 18:23:42.323 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:23:42.323 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:23:42.323 INFO [6381]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:23:42.323 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:23:42.335 INFO [6381]: COREGRADE is stopping... -- 18:23:42.335 DEBUG [6381]: Closing database connection -- 18:23:42.335 SQL [6381]: pgsql_close() -- 18:23:43.953 INFO [6381]: COREGRADE is starting... -- 18:23:43.953 INFO [6381]: Version from config: 1.0 -- 18:23:43.953 DEBUG [6381]: Connecting to database... -- 18:23:43.953 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:23:43.953 SQL [6381]: pgsql_db_connect() -- 18:23:43.957 DEBUG [6381]: Database connection successful -- 18:23:43.957 INFO [6381]: _SERVER found -- 18:23:43.957 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 18:23:43.957 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:23:43.957 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:23:43.957 INFO [6381]: QUERY_STRING = /member/page -- 18:23:43.957 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:23:43.998 INFO [6381]: COREGRADE is stopping... -- 18:23:43.998 DEBUG [6381]: Closing database connection -- 18:23:43.998 SQL [6381]: pgsql_close() -- 18:23:44.204 INFO [6381]: COREGRADE is starting... -- 18:23:44.205 INFO [6381]: Version from config: 1.0 -- 18:23:44.205 DEBUG [6381]: Connecting to database... -- 18:23:44.205 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:23:44.205 SQL [6381]: pgsql_db_connect() -- 18:23:44.209 DEBUG [6381]: Database connection successful -- 18:23:44.209 INFO [6381]: _SERVER found -- 18:23:44.209 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 18:23:44.209 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:23:44.209 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:23:44.209 INFO [6381]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:23:44.209 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:23:44.220 INFO [6381]: COREGRADE is stopping... -- 18:23:44.220 DEBUG [6381]: Closing database connection -- 18:23:44.220 SQL [6381]: pgsql_close() -- 18:23:44.320 INFO [6381]: COREGRADE is starting... -- 18:23:44.320 INFO [6381]: Version from config: 1.0 -- 18:23:44.320 DEBUG [6381]: Connecting to database... -- 18:23:44.320 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:23:44.320 SQL [6381]: pgsql_db_connect() -- 18:23:44.324 DEBUG [6381]: Database connection successful -- 18:23:44.324 INFO [6381]: _SERVER found -- 18:23:44.324 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 18:23:44.324 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:23:44.324 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:23:44.324 INFO [6381]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:23:44.324 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:23:44.335 INFO [6381]: COREGRADE is stopping... -- 18:23:44.335 DEBUG [6381]: Closing database connection -- 18:23:44.335 SQL [6381]: pgsql_close() -- 18:23:49.464 INFO [7017]: COREGRADE is starting... -- 18:23:49.465 INFO [7017]: Version from config: 1.0 -- 18:23:49.465 DEBUG [7017]: Connecting to database... -- 18:23:49.465 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:23:49.465 SQL [7017]: pgsql_db_connect() -- 18:23:49.469 DEBUG [7017]: Database connection successful -- 18:23:49.469 INFO [7017]: _SERVER found -- 18:23:49.469 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 18:23:49.469 INFO [7017]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:23:49.469 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:23:49.469 INFO [7017]: QUERY_STRING = /member/configure -- 18:23:49.469 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:23:49.509 INFO [7017]: COREGRADE is stopping... -- 18:23:49.509 DEBUG [7017]: Closing database connection -- 18:23:49.509 SQL [7017]: pgsql_close() -- 18:23:49.729 INFO [7017]: COREGRADE is starting... -- 18:23:49.729 INFO [7017]: Version from config: 1.0 -- 18:23:49.729 DEBUG [7017]: Connecting to database... -- 18:23:49.729 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:23:49.729 SQL [7017]: pgsql_db_connect() -- 18:23:49.733 DEBUG [7017]: Database connection successful -- 18:23:49.733 INFO [7017]: _SERVER found -- 18:23:49.733 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 18:23:49.733 INFO [7017]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:23:49.733 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:23:49.733 INFO [7017]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:23:49.733 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:23:49.744 INFO [7017]: COREGRADE is stopping... -- 18:23:49.744 DEBUG [7017]: Closing database connection -- 18:23:49.744 SQL [7017]: pgsql_close() -- 18:23:49.856 INFO [7017]: COREGRADE is starting... -- 18:23:49.856 INFO [7017]: Version from config: 1.0 -- 18:23:49.856 DEBUG [7017]: Connecting to database... -- 18:23:49.856 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:23:49.856 SQL [7017]: pgsql_db_connect() -- 18:23:49.860 DEBUG [7017]: Database connection successful -- 18:23:49.860 INFO [7017]: _SERVER found -- 18:23:49.860 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 18:23:49.860 INFO [7017]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:23:49.860 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:23:49.860 INFO [7017]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:23:49.860 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:23:49.871 INFO [7017]: COREGRADE is stopping... -- 18:23:49.871 DEBUG [7017]: Closing database connection -- 18:23:49.871 SQL [7017]: pgsql_close() -- 18:23:53.030 INFO [7017]: COREGRADE is starting... -- 18:23:53.031 INFO [7017]: Version from config: 1.0 -- 18:23:53.031 DEBUG [7017]: Connecting to database... -- 18:23:53.031 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:23:53.031 SQL [7017]: pgsql_db_connect() -- 18:23:53.035 DEBUG [7017]: Database connection successful -- 18:23:53.035 INFO [7017]: _SERVER found -- 18:23:53.035 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 18:23:53.035 INFO [7017]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:23:53.035 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:23:53.035 INFO [7017]: QUERY_STRING = /member/viewSharePage -- 18:23:53.035 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:23:53.068 INFO [7017]: COREGRADE is stopping... -- 18:23:53.068 DEBUG [7017]: Closing database connection -- 18:23:53.068 SQL [7017]: pgsql_close() -- 18:24:30.787 INFO [6385]: COREGRADE is starting... -- 18:24:30.787 INFO [6385]: Version from config: 1.0 -- 18:24:30.787 DEBUG [6385]: Connecting to database... -- 18:24:30.787 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:24:30.787 SQL [6385]: pgsql_db_connect() -- 18:24:30.791 DEBUG [6385]: Database connection successful -- 18:24:30.791 INFO [6385]: _SERVER found -- 18:24:30.791 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 18:24:30.791 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 18:24:30.791 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361 -- 18:24:30.791 INFO [6385]: QUERY_STRING = /shared/somethinghereSSSAAAWWWW -- 18:24:30.791 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:24:30.803 INFO [6385]: COREGRADE is stopping... -- 18:24:30.803 DEBUG [6385]: Closing database connection -- 18:24:30.803 SQL [6385]: pgsql_close() -- 18:24:31.133 INFO [6385]: COREGRADE is starting... -- 18:24:31.133 INFO [6385]: Version from config: 1.0 -- 18:24:31.133 DEBUG [6385]: Connecting to database... -- 18:24:31.133 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:24:31.133 SQL [6385]: pgsql_db_connect() -- 18:24:31.137 DEBUG [6385]: Database connection successful -- 18:24:31.137 INFO [6385]: _SERVER found -- 18:24:31.137 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 18:24:31.137 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 18:24:31.137 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361 -- 18:24:31.137 INFO [6385]: QUERY_STRING = /favicon.ico -- 18:24:31.137 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:24:31.148 INFO [6385]: COREGRADE is stopping... -- 18:24:31.148 DEBUG [6385]: Closing database connection -- 18:24:31.148 SQL [6385]: pgsql_close() -- 18:25:26.335 INFO [6382]: COREGRADE is starting... -- 18:25:26.335 INFO [6382]: Version from config: 1.0 -- 18:25:26.335 DEBUG [6382]: Connecting to database... -- 18:25:26.335 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:25:26.335 SQL [6382]: pgsql_db_connect() -- 18:25:26.340 DEBUG [6382]: Database connection successful -- 18:25:26.340 INFO [6382]: _SERVER found -- 18:25:26.340 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 18:25:26.340 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:25:26.340 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:25:26.340 INFO [6382]: QUERY_STRING = /member -- 18:25:26.340 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:25:26.380 INFO [6382]: COREGRADE is stopping... -- 18:25:26.380 DEBUG [6382]: Closing database connection -- 18:25:26.380 SQL [6382]: pgsql_close() -- 18:25:26.806 INFO [6382]: COREGRADE is starting... -- 18:25:26.806 INFO [6382]: Version from config: 1.0 -- 18:25:26.806 DEBUG [6382]: Connecting to database... -- 18:25:26.806 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:25:26.806 SQL [6382]: pgsql_db_connect() -- 18:25:26.810 DEBUG [6382]: Database connection successful -- 18:25:26.810 INFO [6382]: _SERVER found -- 18:25:26.810 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 18:25:26.810 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:25:26.810 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:25:26.810 INFO [6382]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:25:26.810 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:25:26.821 INFO [6382]: COREGRADE is stopping... -- 18:25:26.821 DEBUG [6382]: Closing database connection -- 18:25:26.821 SQL [6382]: pgsql_close() -- 18:25:26.836 INFO [6384]: COREGRADE is starting... -- 18:25:26.836 INFO [6384]: Version from config: 1.0 -- 18:25:26.836 DEBUG [6384]: Connecting to database... -- 18:25:26.836 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:25:26.836 SQL [6384]: pgsql_db_connect() -- 18:25:26.840 DEBUG [6384]: Database connection successful -- 18:25:26.840 INFO [6384]: _SERVER found -- 18:25:26.840 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 18:25:26.840 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:25:26.840 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:25:26.840 INFO [6384]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:25:26.840 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:25:26.852 INFO [6384]: COREGRADE is stopping... -- 18:25:26.852 DEBUG [6384]: Closing database connection -- 18:25:26.852 SQL [6384]: pgsql_close() -- 18:25:30.803 INFO [6384]: COREGRADE is starting... -- 18:25:30.803 INFO [6384]: Version from config: 1.0 -- 18:25:30.803 DEBUG [6384]: Connecting to database... -- 18:25:30.803 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:25:30.803 SQL [6384]: pgsql_db_connect() -- 18:25:30.807 DEBUG [6384]: Database connection successful -- 18:25:30.807 INFO [6384]: _SERVER found -- 18:25:30.807 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 18:25:30.807 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:25:30.807 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:25:30.807 INFO [6384]: QUERY_STRING = /member/page -- 18:25:30.807 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:25:30.848 INFO [6384]: COREGRADE is stopping... -- 18:25:30.848 DEBUG [6384]: Closing database connection -- 18:25:30.848 SQL [6384]: pgsql_close() -- 18:25:31.061 INFO [6384]: COREGRADE is starting... -- 18:25:31.061 INFO [6384]: Version from config: 1.0 -- 18:25:31.061 DEBUG [6384]: Connecting to database... -- 18:25:31.061 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:25:31.061 SQL [6384]: pgsql_db_connect() -- 18:25:31.065 DEBUG [6384]: Database connection successful -- 18:25:31.065 INFO [6384]: _SERVER found -- 18:25:31.065 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 18:25:31.065 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:25:31.065 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:25:31.065 INFO [6384]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:25:31.065 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:25:31.076 INFO [6384]: COREGRADE is stopping... -- 18:25:31.076 DEBUG [6384]: Closing database connection -- 18:25:31.076 SQL [6384]: pgsql_close() -- 18:25:31.170 INFO [6384]: COREGRADE is starting... -- 18:25:31.170 INFO [6384]: Version from config: 1.0 -- 18:25:31.170 DEBUG [6384]: Connecting to database... -- 18:25:31.170 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:25:31.170 SQL [6384]: pgsql_db_connect() -- 18:25:31.174 DEBUG [6384]: Database connection successful -- 18:25:31.174 INFO [6384]: _SERVER found -- 18:25:31.174 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 18:25:31.174 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:25:31.174 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:25:31.174 INFO [6384]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:25:31.174 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:25:31.185 INFO [6384]: COREGRADE is stopping... -- 18:25:31.185 DEBUG [6384]: Closing database connection -- 18:25:31.185 SQL [6384]: pgsql_close() -- 18:25:43.256 INFO [6405]: COREGRADE is starting... -- 18:25:43.257 INFO [6405]: Version from config: 1.0 -- 18:25:43.257 DEBUG [6405]: Connecting to database... -- 18:25:43.257 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:25:43.257 SQL [6405]: pgsql_db_connect() -- 18:25:43.261 DEBUG [6405]: Database connection successful -- 18:25:43.261 INFO [6405]: _SERVER found -- 18:25:43.261 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 18:25:43.261 INFO [6405]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:25:43.261 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:25:43.261 INFO [6405]: QUERY_STRING = /member -- 18:25:43.261 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:25:43.301 INFO [6405]: COREGRADE is stopping... -- 18:25:43.301 DEBUG [6405]: Closing database connection -- 18:25:43.301 SQL [6405]: pgsql_close() -- 18:25:43.653 INFO [6405]: COREGRADE is starting... -- 18:25:43.653 INFO [6405]: Version from config: 1.0 -- 18:25:43.653 DEBUG [6405]: Connecting to database... -- 18:25:43.653 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:25:43.653 SQL [6405]: pgsql_db_connect() -- 18:25:43.657 DEBUG [6405]: Database connection successful -- 18:25:43.657 INFO [6405]: _SERVER found -- 18:25:43.657 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 18:25:43.657 INFO [6405]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:25:43.657 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:25:43.657 INFO [6405]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:25:43.658 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:25:43.669 INFO [6405]: COREGRADE is stopping... -- 18:25:43.669 DEBUG [6405]: Closing database connection -- 18:25:43.669 SQL [6405]: pgsql_close() -- 18:25:43.672 INFO [6405]: COREGRADE is starting... -- 18:25:43.672 INFO [6405]: Version from config: 1.0 -- 18:25:43.672 DEBUG [6405]: Connecting to database... -- 18:25:43.672 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:25:43.672 SQL [6405]: pgsql_db_connect() -- 18:25:43.676 DEBUG [6405]: Database connection successful -- 18:25:43.676 INFO [6405]: _SERVER found -- 18:25:43.676 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 18:25:43.676 INFO [6405]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:25:43.676 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:25:43.676 INFO [6405]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:25:43.676 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:25:43.687 INFO [6405]: COREGRADE is stopping... -- 18:25:43.687 DEBUG [6405]: Closing database connection -- 18:25:43.687 SQL [6405]: pgsql_close() -- 18:25:45.302 INFO [6405]: COREGRADE is starting... -- 18:25:45.302 INFO [6405]: Version from config: 1.0 -- 18:25:45.302 DEBUG [6405]: Connecting to database... -- 18:25:45.302 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:25:45.302 SQL [6405]: pgsql_db_connect() -- 18:25:45.307 DEBUG [6405]: Database connection successful -- 18:25:45.307 INFO [6405]: _SERVER found -- 18:25:45.307 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 18:25:45.307 INFO [6405]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:25:45.307 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:25:45.307 INFO [6405]: QUERY_STRING = /member/page -- 18:25:45.307 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:25:45.347 INFO [6405]: COREGRADE is stopping... -- 18:25:45.347 DEBUG [6405]: Closing database connection -- 18:25:45.347 SQL [6405]: pgsql_close() -- 18:25:45.559 INFO [6405]: COREGRADE is starting... -- 18:25:45.559 INFO [6405]: Version from config: 1.0 -- 18:25:45.559 DEBUG [6405]: Connecting to database... -- 18:25:45.559 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:25:45.559 SQL [6405]: pgsql_db_connect() -- 18:25:45.564 DEBUG [6405]: Database connection successful -- 18:25:45.564 INFO [6405]: _SERVER found -- 18:25:45.564 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 18:25:45.564 INFO [6405]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:25:45.564 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:25:45.564 INFO [6405]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:25:45.564 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:25:45.575 INFO [6405]: COREGRADE is stopping... -- 18:25:45.575 DEBUG [6405]: Closing database connection -- 18:25:45.575 SQL [6405]: pgsql_close() -- 18:25:45.687 INFO [6405]: COREGRADE is starting... -- 18:25:45.687 INFO [6405]: Version from config: 1.0 -- 18:25:45.687 DEBUG [6405]: Connecting to database... -- 18:25:45.687 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:25:45.687 SQL [6405]: pgsql_db_connect() -- 18:25:45.691 DEBUG [6405]: Database connection successful -- 18:25:45.691 INFO [6405]: _SERVER found -- 18:25:45.691 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 18:25:45.691 INFO [6405]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:25:45.691 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:25:45.691 INFO [6405]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:25:45.691 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:25:45.702 INFO [6405]: COREGRADE is stopping... -- 18:25:45.702 DEBUG [6405]: Closing database connection -- 18:25:45.702 SQL [6405]: pgsql_close() -- 18:25:54.574 INFO [7160]: COREGRADE is starting... -- 18:25:54.574 INFO [7160]: Version from config: 1.0 -- 18:25:54.574 DEBUG [7160]: Connecting to database... -- 18:25:54.574 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:25:54.574 SQL [7160]: pgsql_db_connect() -- 18:25:54.578 DEBUG [7160]: Database connection successful -- 18:25:54.578 INFO [7160]: _SERVER found -- 18:25:54.578 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 18:25:54.578 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:25:54.578 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:25:54.578 INFO [7160]: QUERY_STRING = /member/configure -- 18:25:54.578 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:25:54.621 INFO [7160]: COREGRADE is stopping... -- 18:25:54.621 DEBUG [7160]: Closing database connection -- 18:25:54.621 SQL [7160]: pgsql_close() -- 18:25:54.827 INFO [7160]: COREGRADE is starting... -- 18:25:54.827 INFO [7160]: Version from config: 1.0 -- 18:25:54.827 DEBUG [7160]: Connecting to database... -- 18:25:54.827 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:25:54.827 SQL [7160]: pgsql_db_connect() -- 18:25:54.831 DEBUG [7160]: Database connection successful -- 18:25:54.831 INFO [7160]: _SERVER found -- 18:25:54.831 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 18:25:54.831 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:25:54.831 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:25:54.831 INFO [7160]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:25:54.831 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:25:54.842 INFO [7160]: COREGRADE is stopping... -- 18:25:54.842 DEBUG [7160]: Closing database connection -- 18:25:54.842 SQL [7160]: pgsql_close() -- 18:25:54.948 INFO [7160]: COREGRADE is starting... -- 18:25:54.948 INFO [7160]: Version from config: 1.0 -- 18:25:54.948 DEBUG [7160]: Connecting to database... -- 18:25:54.948 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:25:54.948 SQL [7160]: pgsql_db_connect() -- 18:25:54.952 DEBUG [7160]: Database connection successful -- 18:25:54.952 INFO [7160]: _SERVER found -- 18:25:54.952 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 18:25:54.952 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:25:54.952 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:25:54.952 INFO [7160]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:25:54.952 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:25:54.963 INFO [7160]: COREGRADE is stopping... -- 18:25:54.963 DEBUG [7160]: Closing database connection -- 18:25:54.963 SQL [7160]: pgsql_close() -- 18:26:09.644 INFO [6383]: COREGRADE is starting... -- 18:26:09.644 INFO [6383]: Version from config: 1.0 -- 18:26:09.644 DEBUG [6383]: Connecting to database... -- 18:26:09.644 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:26:09.644 SQL [6383]: pgsql_db_connect() -- 18:26:09.649 DEBUG [6383]: Database connection successful -- 18:26:09.649 INFO [6383]: _SERVER found -- 18:26:09.649 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 18:26:09.649 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:26:09.649 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:26:09.649 INFO [6383]: QUERY_STRING = /member/deletePageAction -- 18:26:09.649 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:26:09.682 INFO [6383]: COREGRADE is stopping... -- 18:26:09.682 DEBUG [6383]: Closing database connection -- 18:26:09.682 SQL [6383]: pgsql_close() -- 18:26:11.945 INFO [6383]: COREGRADE is starting... -- 18:26:11.946 INFO [6383]: Version from config: 1.0 -- 18:26:11.946 DEBUG [6383]: Connecting to database... -- 18:26:11.946 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:26:11.946 SQL [6383]: pgsql_db_connect() -- 18:26:11.950 DEBUG [6383]: Database connection successful -- 18:26:11.950 INFO [6383]: _SERVER found -- 18:26:11.950 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 18:26:11.950 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:26:11.950 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:26:11.950 INFO [6383]: QUERY_STRING = /member -- 18:26:11.950 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:26:11.989 INFO [6383]: COREGRADE is stopping... -- 18:26:11.989 DEBUG [6383]: Closing database connection -- 18:26:11.989 SQL [6383]: pgsql_close() -- 18:26:12.251 INFO [6383]: COREGRADE is starting... -- 18:26:12.252 INFO [6383]: Version from config: 1.0 -- 18:26:12.252 DEBUG [6383]: Connecting to database... -- 18:26:12.252 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:26:12.252 SQL [6383]: pgsql_db_connect() -- 18:26:12.256 DEBUG [6383]: Database connection successful -- 18:26:12.256 INFO [6383]: _SERVER found -- 18:26:12.256 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 18:26:12.256 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:26:12.256 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:26:12.256 INFO [6383]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:26:12.256 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:26:12.267 INFO [6383]: COREGRADE is stopping... -- 18:26:12.267 DEBUG [6383]: Closing database connection -- 18:26:12.267 SQL [6383]: pgsql_close() -- 18:26:12.274 INFO [7159]: COREGRADE is starting... -- 18:26:12.275 INFO [7159]: Version from config: 1.0 -- 18:26:12.275 DEBUG [7159]: Connecting to database... -- 18:26:12.275 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:26:12.275 SQL [7159]: pgsql_db_connect() -- 18:26:12.278 DEBUG [7159]: Database connection successful -- 18:26:12.278 INFO [7159]: _SERVER found -- 18:26:12.278 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 18:26:12.278 INFO [7159]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:26:12.278 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:26:12.278 INFO [7159]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:26:12.278 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:26:12.290 INFO [7159]: COREGRADE is stopping... -- 18:26:12.290 DEBUG [7159]: Closing database connection -- 18:26:12.290 SQL [7159]: pgsql_close() -- 18:27:50.221 INFO [6409]: COREGRADE is starting... -- 18:27:50.221 INFO [6409]: Version from config: 1.0 -- 18:27:50.221 DEBUG [6409]: Connecting to database... -- 18:27:50.221 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:50.222 SQL [6409]: pgsql_db_connect() -- 18:27:50.226 DEBUG [6409]: Database connection successful -- 18:27:50.226 INFO [6409]: _SERVER found -- 18:27:50.226 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 18:27:50.226 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:27:50.226 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=2l5t0dn033b4cu4je9076aj6agng9trj -- 18:27:50.226 INFO [6409]: QUERY_STRING = /member/page -- 18:27:50.226 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:27:50.267 INFO [6409]: COREGRADE is stopping... -- 18:27:50.267 DEBUG [6409]: Closing database connection -- 18:27:50.267 SQL [6409]: pgsql_close() -- 18:27:50.597 INFO [6409]: COREGRADE is starting... -- 18:27:50.597 INFO [6409]: Version from config: 1.0 -- 18:27:50.597 DEBUG [6409]: Connecting to database... -- 18:27:50.597 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:50.597 SQL [6409]: pgsql_db_connect() -- 18:27:50.601 DEBUG [6409]: Database connection successful -- 18:27:50.601 INFO [6409]: _SERVER found -- 18:27:50.601 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 18:27:50.601 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:27:50.601 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jj84r056s2p76hftr4ilg2e7mlei4tpd -- 18:27:50.601 INFO [6409]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:27:50.601 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:27:50.613 INFO [6409]: COREGRADE is stopping... -- 18:27:50.613 DEBUG [6409]: Closing database connection -- 18:27:50.613 SQL [6409]: pgsql_close() -- 18:27:50.717 INFO [6409]: COREGRADE is starting... -- 18:27:50.717 INFO [6409]: Version from config: 1.0 -- 18:27:50.717 DEBUG [6409]: Connecting to database... -- 18:27:50.717 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:50.717 SQL [6409]: pgsql_db_connect() -- 18:27:50.721 DEBUG [6409]: Database connection successful -- 18:27:50.721 INFO [6409]: _SERVER found -- 18:27:50.721 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 18:27:50.721 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:27:50.721 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jj84r056s2p76hftr4ilg2e7mlei4tpd -- 18:27:50.721 INFO [6409]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:27:50.721 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:27:50.732 INFO [6409]: COREGRADE is stopping... -- 18:27:50.732 DEBUG [6409]: Closing database connection -- 18:27:50.732 SQL [6409]: pgsql_close() -- 18:27:53.642 INFO [6409]: COREGRADE is starting... -- 18:27:53.642 INFO [6409]: Version from config: 1.0 -- 18:27:53.642 DEBUG [6409]: Connecting to database... -- 18:27:53.642 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:53.642 SQL [6409]: pgsql_db_connect() -- 18:27:53.646 DEBUG [6409]: Database connection successful -- 18:27:53.646 INFO [6409]: _SERVER found -- 18:27:53.646 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 18:27:53.646 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:27:53.646 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jj84r056s2p76hftr4ilg2e7mlei4tpd -- 18:27:53.646 INFO [6409]: QUERY_STRING = /member/configure -- 18:27:53.646 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:27:53.685 INFO [6409]: COREGRADE is stopping... -- 18:27:53.685 DEBUG [6409]: Closing database connection -- 18:27:53.685 SQL [6409]: pgsql_close() -- 18:27:53.907 INFO [6409]: COREGRADE is starting... -- 18:27:53.907 INFO [6409]: Version from config: 1.0 -- 18:27:53.907 DEBUG [6409]: Connecting to database... -- 18:27:53.907 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:53.907 SQL [6409]: pgsql_db_connect() -- 18:27:53.911 DEBUG [6409]: Database connection successful -- 18:27:53.911 INFO [6409]: _SERVER found -- 18:27:53.911 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 18:27:53.911 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:27:53.911 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jj84r056s2p76hftr4ilg2e7mlei4tpd -- 18:27:53.911 INFO [6409]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:27:53.911 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:27:53.922 INFO [6409]: COREGRADE is stopping... -- 18:27:53.922 DEBUG [6409]: Closing database connection -- 18:27:53.922 SQL [6409]: pgsql_close() -- 18:27:54.026 INFO [6409]: COREGRADE is starting... -- 18:27:54.026 INFO [6409]: Version from config: 1.0 -- 18:27:54.026 DEBUG [6409]: Connecting to database... -- 18:27:54.027 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:54.027 SQL [6409]: pgsql_db_connect() -- 18:27:54.030 DEBUG [6409]: Database connection successful -- 18:27:54.030 INFO [6409]: _SERVER found -- 18:27:54.030 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 18:27:54.030 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:27:54.030 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jj84r056s2p76hftr4ilg2e7mlei4tpd -- 18:27:54.030 INFO [6409]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:27:54.030 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:27:54.042 INFO [6409]: COREGRADE is stopping... -- 18:27:54.042 DEBUG [6409]: Closing database connection -- 18:27:54.042 SQL [6409]: pgsql_close() -- 18:27:56.347 INFO [6409]: COREGRADE is starting... -- 18:27:56.347 INFO [6409]: Version from config: 1.0 -- 18:27:56.347 DEBUG [6409]: Connecting to database... -- 18:27:56.347 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:56.347 SQL [6409]: pgsql_db_connect() -- 18:27:56.352 DEBUG [6409]: Database connection successful -- 18:27:56.352 INFO [6409]: _SERVER found -- 18:27:56.352 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 18:27:56.352 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:27:56.352 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jj84r056s2p76hftr4ilg2e7mlei4tpd -- 18:27:56.352 INFO [6409]: QUERY_STRING = /member/viewSharePage -- 18:27:56.352 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:27:56.385 INFO [6409]: COREGRADE is stopping... -- 18:27:56.385 DEBUG [6409]: Closing database connection -- 18:27:56.385 SQL [6409]: pgsql_close() -- 18:35:06.620 INFO [6381]: COREGRADE is starting... -- 18:35:06.620 INFO [6381]: Version from config: 1.0 -- 18:35:06.620 DEBUG [6381]: Connecting to database... -- 18:35:06.620 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:35:06.620 SQL [6381]: pgsql_db_connect() -- 18:35:06.624 DEBUG [6381]: Database connection successful -- 18:35:06.624 INFO [6381]: _SERVER found -- 18:35:06.624 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 18:35:06.624 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:35:06.624 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=jj84r056s2p76hftr4ilg2e7mlei4tpd -- 18:35:06.624 INFO [6381]: QUERY_STRING = /member/configure -- 18:35:06.624 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:35:06.666 INFO [6381]: COREGRADE is stopping... -- 18:35:06.666 DEBUG [6381]: Closing database connection -- 18:35:06.666 SQL [6381]: pgsql_close() -- 18:35:06.995 INFO [6381]: COREGRADE is starting... -- 18:35:06.995 INFO [6381]: Version from config: 1.0 -- 18:35:06.995 DEBUG [6381]: Connecting to database... -- 18:35:06.995 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:35:06.995 SQL [6381]: pgsql_db_connect() -- 18:35:06.999 DEBUG [6381]: Database connection successful -- 18:35:06.999 INFO [6381]: _SERVER found -- 18:35:06.999 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 18:35:06.999 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:35:06.999 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vl8uk84pasjhih5n3tknnsc6t463qa2c -- 18:35:06.999 INFO [6381]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:35:06.999 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:35:07.011 INFO [6381]: COREGRADE is stopping... -- 18:35:07.011 DEBUG [6381]: Closing database connection -- 18:35:07.011 SQL [6381]: pgsql_close() -- 18:35:07.132 INFO [6381]: COREGRADE is starting... -- 18:35:07.132 INFO [6381]: Version from config: 1.0 -- 18:35:07.132 DEBUG [6381]: Connecting to database... -- 18:35:07.132 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:35:07.132 SQL [6381]: pgsql_db_connect() -- 18:35:07.136 DEBUG [6381]: Database connection successful -- 18:35:07.136 INFO [6381]: _SERVER found -- 18:35:07.136 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 18:35:07.136 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:35:07.136 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vl8uk84pasjhih5n3tknnsc6t463qa2c -- 18:35:07.136 INFO [6381]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:35:07.136 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:35:07.147 INFO [6381]: COREGRADE is stopping... -- 18:35:07.147 DEBUG [6381]: Closing database connection -- 18:35:07.147 SQL [6381]: pgsql_close() -- 18:35:34.599 INFO [7017]: COREGRADE is starting... -- 18:35:34.599 INFO [7017]: Version from config: 1.0 -- 18:35:34.599 DEBUG [7017]: Connecting to database... -- 18:35:34.599 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:35:34.599 SQL [7017]: pgsql_db_connect() -- 18:35:34.603 DEBUG [7017]: Database connection successful -- 18:35:34.603 INFO [7017]: _SERVER found -- 18:35:34.603 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 18:35:34.603 INFO [7017]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:35:34.603 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vl8uk84pasjhih5n3tknnsc6t463qa2c -- 18:35:34.603 INFO [7017]: QUERY_STRING = /member -- 18:35:34.603 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:35:34.644 INFO [7017]: COREGRADE is stopping... -- 18:35:34.644 DEBUG [7017]: Closing database connection -- 18:35:34.644 SQL [7017]: pgsql_close() -- 18:35:35.026 INFO [7017]: COREGRADE is starting... -- 18:35:35.026 INFO [7017]: Version from config: 1.0 -- 18:35:35.026 DEBUG [7017]: Connecting to database... -- 18:35:35.026 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:35:35.026 SQL [7017]: pgsql_db_connect() -- 18:35:35.030 DEBUG [7017]: Database connection successful -- 18:35:35.030 INFO [7017]: _SERVER found -- 18:35:35.030 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 18:35:35.030 INFO [7017]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:35:35.030 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vl8uk84pasjhih5n3tknnsc6t463qa2c -- 18:35:35.030 INFO [7017]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:35:35.030 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:35:35.041 INFO [7017]: COREGRADE is stopping... -- 18:35:35.042 DEBUG [7017]: Closing database connection -- 18:35:35.042 SQL [7017]: pgsql_close() -- 18:35:35.049 INFO [6385]: COREGRADE is starting... -- 18:35:35.049 INFO [6385]: Version from config: 1.0 -- 18:35:35.049 DEBUG [6385]: Connecting to database... -- 18:35:35.050 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:35:35.050 SQL [6385]: pgsql_db_connect() -- 18:35:35.053 DEBUG [6385]: Database connection successful -- 18:35:35.053 INFO [6385]: _SERVER found -- 18:35:35.053 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 18:35:35.053 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:35:35.053 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vl8uk84pasjhih5n3tknnsc6t463qa2c -- 18:35:35.053 INFO [6385]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:35:35.053 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:35:35.065 INFO [6385]: COREGRADE is stopping... -- 18:35:35.065 DEBUG [6385]: Closing database connection -- 18:35:35.065 SQL [6385]: pgsql_close() -- 18:35:36.846 INFO [6385]: COREGRADE is starting... -- 18:35:36.846 INFO [6385]: Version from config: 1.0 -- 18:35:36.846 DEBUG [6385]: Connecting to database... -- 18:35:36.846 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:35:36.846 SQL [6385]: pgsql_db_connect() -- 18:35:36.850 DEBUG [6385]: Database connection successful -- 18:35:36.850 INFO [6385]: _SERVER found -- 18:35:36.850 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 18:35:36.850 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:35:36.850 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vl8uk84pasjhih5n3tknnsc6t463qa2c -- 18:35:36.850 INFO [6385]: QUERY_STRING = /member/page -- 18:35:36.850 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:35:36.892 INFO [6385]: COREGRADE is stopping... -- 18:35:36.892 DEBUG [6385]: Closing database connection -- 18:35:36.892 SQL [6385]: pgsql_close() -- 18:35:37.089 INFO [6385]: COREGRADE is starting... -- 18:35:37.089 INFO [6385]: Version from config: 1.0 -- 18:35:37.089 DEBUG [6385]: Connecting to database... -- 18:35:37.089 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:35:37.089 SQL [6385]: pgsql_db_connect() -- 18:35:37.093 DEBUG [6385]: Database connection successful -- 18:35:37.093 INFO [6385]: _SERVER found -- 18:35:37.093 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 18:35:37.093 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:35:37.093 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vl8uk84pasjhih5n3tknnsc6t463qa2c -- 18:35:37.093 INFO [6385]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:35:37.093 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:35:37.104 INFO [6385]: COREGRADE is stopping... -- 18:35:37.104 DEBUG [6385]: Closing database connection -- 18:35:37.104 SQL [6385]: pgsql_close() -- 18:35:37.186 INFO [6385]: COREGRADE is starting... -- 18:35:37.186 INFO [6385]: Version from config: 1.0 -- 18:35:37.186 DEBUG [6385]: Connecting to database... -- 18:35:37.186 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:35:37.187 SQL [6385]: pgsql_db_connect() -- 18:35:37.190 DEBUG [6385]: Database connection successful -- 18:35:37.190 INFO [6385]: _SERVER found -- 18:35:37.190 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 18:35:37.190 INFO [6385]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:35:37.190 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vl8uk84pasjhih5n3tknnsc6t463qa2c -- 18:35:37.190 INFO [6385]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:35:37.190 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:35:37.201 INFO [6385]: COREGRADE is stopping... -- 18:35:37.201 DEBUG [6385]: Closing database connection -- 18:35:37.201 SQL [6385]: pgsql_close() -- 18:36:15.481 INFO [6382]: COREGRADE is starting... -- 18:36:15.481 INFO [6382]: Version from config: 1.0 -- 18:36:15.481 DEBUG [6382]: Connecting to database... -- 18:36:15.481 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:36:15.481 SQL [6382]: pgsql_db_connect() -- 18:36:15.485 DEBUG [6382]: Database connection successful -- 18:36:15.485 INFO [6382]: _SERVER found -- 18:36:15.485 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 18:36:15.485 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:36:15.485 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vl8uk84pasjhih5n3tknnsc6t463qa2c -- 18:36:15.485 INFO [6382]: QUERY_STRING = /member -- 18:36:15.485 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:36:15.528 INFO [6382]: COREGRADE is stopping... -- 18:36:15.528 DEBUG [6382]: Closing database connection -- 18:36:15.528 SQL [6382]: pgsql_close() -- 18:36:15.891 INFO [6382]: COREGRADE is starting... -- 18:36:15.892 INFO [6382]: Version from config: 1.0 -- 18:36:15.892 DEBUG [6382]: Connecting to database... -- 18:36:15.892 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:36:15.892 SQL [6382]: pgsql_db_connect() -- 18:36:15.896 DEBUG [6382]: Database connection successful -- 18:36:15.896 INFO [6382]: _SERVER found -- 18:36:15.896 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 18:36:15.896 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:36:15.896 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vl8uk84pasjhih5n3tknnsc6t463qa2c -- 18:36:15.896 INFO [6382]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:36:15.896 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:36:15.907 INFO [6382]: COREGRADE is stopping... -- 18:36:15.907 DEBUG [6382]: Closing database connection -- 18:36:15.907 SQL [6382]: pgsql_close() -- 18:36:15.910 INFO [6382]: COREGRADE is starting... -- 18:36:15.910 INFO [6382]: Version from config: 1.0 -- 18:36:15.910 DEBUG [6382]: Connecting to database... -- 18:36:15.910 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:36:15.910 SQL [6382]: pgsql_db_connect() -- 18:36:15.914 DEBUG [6382]: Database connection successful -- 18:36:15.914 INFO [6382]: _SERVER found -- 18:36:15.914 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 18:36:15.914 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:36:15.914 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vl8uk84pasjhih5n3tknnsc6t463qa2c -- 18:36:15.914 INFO [6382]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:36:15.914 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:36:15.925 INFO [6382]: COREGRADE is stopping... -- 18:36:15.925 DEBUG [6382]: Closing database connection -- 18:36:15.925 SQL [6382]: pgsql_close() -- 18:37:13.696 INFO [6384]: COREGRADE is starting... -- 18:37:13.696 INFO [6384]: Version from config: 1.0 -- 18:37:13.696 DEBUG [6384]: Connecting to database... -- 18:37:13.696 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:37:13.696 SQL [6384]: pgsql_db_connect() -- 18:37:13.700 DEBUG [6384]: Database connection successful -- 18:37:13.700 INFO [6384]: _SERVER found -- 18:37:13.700 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 18:37:13.700 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:37:13.700 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vl8uk84pasjhih5n3tknnsc6t463qa2c -- 18:37:13.700 INFO [6384]: QUERY_STRING = /member/page -- 18:37:13.700 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:37:13.742 INFO [6384]: COREGRADE is stopping... -- 18:37:13.742 DEBUG [6384]: Closing database connection -- 18:37:13.742 SQL [6384]: pgsql_close() -- 18:37:14.066 INFO [6384]: COREGRADE is starting... -- 18:37:14.066 INFO [6384]: Version from config: 1.0 -- 18:37:14.066 DEBUG [6384]: Connecting to database... -- 18:37:14.066 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:37:14.066 SQL [6384]: pgsql_db_connect() -- 18:37:14.070 DEBUG [6384]: Database connection successful -- 18:37:14.070 INFO [6384]: _SERVER found -- 18:37:14.070 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 18:37:14.070 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:37:14.070 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vl8uk84pasjhih5n3tknnsc6t463qa2c -- 18:37:14.070 INFO [6384]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:37:14.070 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:37:14.081 INFO [6384]: COREGRADE is stopping... -- 18:37:14.081 DEBUG [6384]: Closing database connection -- 18:37:14.081 SQL [6384]: pgsql_close() -- 18:37:14.190 INFO [6384]: COREGRADE is starting... -- 18:37:14.191 INFO [6384]: Version from config: 1.0 -- 18:37:14.191 DEBUG [6384]: Connecting to database... -- 18:37:14.191 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:37:14.191 SQL [6384]: pgsql_db_connect() -- 18:37:14.195 DEBUG [6384]: Database connection successful -- 18:37:14.195 INFO [6384]: _SERVER found -- 18:37:14.195 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 18:37:14.195 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:37:14.195 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vl8uk84pasjhih5n3tknnsc6t463qa2c -- 18:37:14.195 INFO [6384]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:37:14.195 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:37:14.206 INFO [6384]: COREGRADE is stopping... -- 18:37:14.206 DEBUG [6384]: Closing database connection -- 18:37:14.206 SQL [6384]: pgsql_close() -- 18:38:51.309 INFO [6405]: COREGRADE is starting... -- 18:38:51.310 INFO [6405]: Version from config: 1.0 -- 18:38:51.310 DEBUG [6405]: Connecting to database... -- 18:38:51.310 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:38:51.310 SQL [6405]: pgsql_db_connect() -- 18:38:51.314 DEBUG [6405]: Database connection successful -- 18:38:51.314 INFO [6405]: _SERVER found -- 18:38:51.314 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 18:38:51.314 INFO [6405]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:38:51.314 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vl8uk84pasjhih5n3tknnsc6t463qa2c -- 18:38:51.314 INFO [6405]: QUERY_STRING = /member -- 18:38:51.314 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:38:51.354 INFO [6405]: COREGRADE is stopping... -- 18:38:51.354 DEBUG [6405]: Closing database connection -- 18:38:51.354 SQL [6405]: pgsql_close() -- 18:38:51.740 INFO [6405]: COREGRADE is starting... -- 18:38:51.740 INFO [6405]: Version from config: 1.0 -- 18:38:51.740 DEBUG [6405]: Connecting to database... -- 18:38:51.740 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:38:51.740 SQL [6405]: pgsql_db_connect() -- 18:38:51.744 DEBUG [6405]: Database connection successful -- 18:38:51.744 INFO [6405]: _SERVER found -- 18:38:51.744 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 18:38:51.744 INFO [6405]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:38:51.744 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vl8uk84pasjhih5n3tknnsc6t463qa2c -- 18:38:51.744 INFO [6405]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:38:51.744 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:38:51.755 INFO [6405]: COREGRADE is stopping... -- 18:38:51.755 DEBUG [6405]: Closing database connection -- 18:38:51.755 SQL [6405]: pgsql_close() -- 18:38:51.759 INFO [6405]: COREGRADE is starting... -- 18:38:51.759 INFO [6405]: Version from config: 1.0 -- 18:38:51.759 DEBUG [6405]: Connecting to database... -- 18:38:51.759 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:38:51.759 SQL [6405]: pgsql_db_connect() -- 18:38:51.763 DEBUG [6405]: Database connection successful -- 18:38:51.763 INFO [6405]: _SERVER found -- 18:38:51.763 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 18:38:51.763 INFO [6405]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:38:51.763 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vl8uk84pasjhih5n3tknnsc6t463qa2c -- 18:38:51.763 INFO [6405]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:38:51.763 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:38:51.774 INFO [6405]: COREGRADE is stopping... -- 18:38:51.774 DEBUG [6405]: Closing database connection -- 18:38:51.774 SQL [6405]: pgsql_close() -- 18:39:01.177 INFO [7160]: COREGRADE is starting... -- 18:39:01.178 INFO [7160]: Version from config: 1.0 -- 18:39:01.178 DEBUG [7160]: Connecting to database... -- 18:39:01.178 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:01.178 SQL [7160]: pgsql_db_connect() -- 18:39:01.182 DEBUG [7160]: Database connection successful -- 18:39:01.182 INFO [7160]: _SERVER found -- 18:39:01.182 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 18:39:01.182 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:39:01.182 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vl8uk84pasjhih5n3tknnsc6t463qa2c -- 18:39:01.182 INFO [7160]: QUERY_STRING = /member/page -- 18:39:01.182 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:39:01.226 INFO [7160]: COREGRADE is stopping... -- 18:39:01.226 DEBUG [7160]: Closing database connection -- 18:39:01.226 SQL [7160]: pgsql_close() -- 18:39:01.460 INFO [7160]: COREGRADE is starting... -- 18:39:01.460 INFO [7160]: Version from config: 1.0 -- 18:39:01.460 DEBUG [7160]: Connecting to database... -- 18:39:01.460 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:01.460 SQL [7160]: pgsql_db_connect() -- 18:39:01.464 DEBUG [7160]: Database connection successful -- 18:39:01.464 INFO [7160]: _SERVER found -- 18:39:01.464 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 18:39:01.464 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:39:01.464 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vl8uk84pasjhih5n3tknnsc6t463qa2c -- 18:39:01.464 INFO [7160]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:39:01.464 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:39:01.475 INFO [7160]: COREGRADE is stopping... -- 18:39:01.475 DEBUG [7160]: Closing database connection -- 18:39:01.475 SQL [7160]: pgsql_close() -- 18:39:01.584 INFO [7160]: COREGRADE is starting... -- 18:39:01.584 INFO [7160]: Version from config: 1.0 -- 18:39:01.584 DEBUG [7160]: Connecting to database... -- 18:39:01.584 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:01.584 SQL [7160]: pgsql_db_connect() -- 18:39:01.588 DEBUG [7160]: Database connection successful -- 18:39:01.588 INFO [7160]: _SERVER found -- 18:39:01.588 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 18:39:01.588 INFO [7160]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:39:01.588 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vl8uk84pasjhih5n3tknnsc6t463qa2c -- 18:39:01.588 INFO [7160]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:39:01.588 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:39:01.599 INFO [7160]: COREGRADE is stopping... -- 18:39:01.599 DEBUG [7160]: Closing database connection -- 18:39:01.599 SQL [7160]: pgsql_close() -- 18:44:08.040 INFO [6383]: COREGRADE is starting... -- 18:44:08.041 INFO [6383]: Version from config: 1.0 -- 18:44:08.041 DEBUG [6383]: Connecting to database... -- 18:44:08.041 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:44:08.041 SQL [6383]: pgsql_db_connect() -- 18:44:08.045 DEBUG [6383]: Database connection successful -- 18:44:08.045 INFO [6383]: _SERVER found -- 18:44:08.045 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 18:44:08.045 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:44:08.045 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=vl8uk84pasjhih5n3tknnsc6t463qa2c -- 18:44:08.045 INFO [6383]: QUERY_STRING = /member/configure -- 18:44:08.045 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:44:08.086 INFO [6383]: COREGRADE is stopping... -- 18:44:08.086 DEBUG [6383]: Closing database connection -- 18:44:08.086 SQL [6383]: pgsql_close() -- 18:44:08.435 INFO [6383]: COREGRADE is starting... -- 18:44:08.435 INFO [6383]: Version from config: 1.0 -- 18:44:08.435 DEBUG [6383]: Connecting to database... -- 18:44:08.435 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:44:08.435 SQL [6383]: pgsql_db_connect() -- 18:44:08.440 DEBUG [6383]: Database connection successful -- 18:44:08.440 INFO [6383]: _SERVER found -- 18:44:08.440 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 18:44:08.440 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:44:08.440 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=eihliq9qe4emiddp2ocukni5ujp08pj6 -- 18:44:08.440 INFO [6383]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:44:08.440 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:44:08.451 INFO [6383]: COREGRADE is stopping... -- 18:44:08.451 DEBUG [6383]: Closing database connection -- 18:44:08.451 SQL [6383]: pgsql_close() -- 18:44:08.670 INFO [6383]: COREGRADE is starting... -- 18:44:08.670 INFO [6383]: Version from config: 1.0 -- 18:44:08.670 DEBUG [6383]: Connecting to database... -- 18:44:08.670 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:44:08.670 SQL [6383]: pgsql_db_connect() -- 18:44:08.674 DEBUG [6383]: Database connection successful -- 18:44:08.674 INFO [6383]: _SERVER found -- 18:44:08.674 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 18:44:08.674 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:44:08.674 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=eihliq9qe4emiddp2ocukni5ujp08pj6 -- 18:44:08.674 INFO [6383]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:44:08.674 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:44:08.686 INFO [6383]: COREGRADE is stopping... -- 18:44:08.686 DEBUG [6383]: Closing database connection -- 18:44:08.686 SQL [6383]: pgsql_close() -- 18:44:11.998 INFO [6383]: COREGRADE is starting... -- 18:44:11.998 INFO [6383]: Version from config: 1.0 -- 18:44:11.998 DEBUG [6383]: Connecting to database... -- 18:44:11.998 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:44:11.998 SQL [6383]: pgsql_db_connect() -- 18:44:12.002 DEBUG [6383]: Database connection successful -- 18:44:12.002 INFO [6383]: _SERVER found -- 18:44:12.002 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 18:44:12.002 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:44:12.002 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=eihliq9qe4emiddp2ocukni5ujp08pj6 -- 18:44:12.002 INFO [6383]: QUERY_STRING = /member/viewSharePage -- 18:44:12.002 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:44:12.035 INFO [6383]: COREGRADE is stopping... -- 18:44:12.035 DEBUG [6383]: Closing database connection -- 18:44:12.035 SQL [6383]: pgsql_close() -- 18:44:16.551 INFO [6383]: COREGRADE is starting... -- 18:44:16.551 INFO [6383]: Version from config: 1.0 -- 18:44:16.551 DEBUG [6383]: Connecting to database... -- 18:44:16.551 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:44:16.551 SQL [6383]: pgsql_db_connect() -- 18:44:16.558 INFO [7159]: COREGRADE is starting... -- 18:44:16.559 INFO [7159]: Version from config: 1.0 -- 18:44:16.559 DEBUG [7159]: Connecting to database... -- 18:44:16.559 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:44:16.559 SQL [7159]: pgsql_db_connect() -- 18:44:16.557 DEBUG [6383]: Database connection successful -- 18:44:16.557 INFO [6383]: _SERVER found -- 18:44:16.557 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 18:44:16.557 INFO [6383]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:44:16.557 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=eihliq9qe4emiddp2ocukni5ujp08pj6 -- 18:44:16.557 INFO [6383]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 18:44:16.557 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:44:16.568 INFO [6383]: COREGRADE is stopping... -- 18:44:16.568 DEBUG [6383]: Closing database connection -- 18:44:16.568 SQL [6383]: pgsql_close() -- 18:44:16.563 DEBUG [7159]: Database connection successful -- 18:44:16.563 INFO [7159]: _SERVER found -- 18:44:16.563 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 18:44:16.563 INFO [7159]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:44:16.563 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=eihliq9qe4emiddp2ocukni5ujp08pj6 -- 18:44:16.563 INFO [7159]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 18:44:16.563 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:44:16.575 INFO [7159]: COREGRADE is stopping... -- 18:44:16.575 DEBUG [7159]: Closing database connection -- 18:44:16.575 SQL [7159]: pgsql_close() -- 18:45:29.651 INFO [6409]: COREGRADE is starting... -- 18:45:29.651 INFO [6409]: Version from config: 1.0 -- 18:45:29.651 DEBUG [6409]: Connecting to database... -- 18:45:29.651 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:45:29.651 SQL [6409]: pgsql_db_connect() -- 18:45:29.656 DEBUG [6409]: Database connection successful -- 18:45:29.656 INFO [6409]: _SERVER found -- 18:45:29.656 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 18:45:29.656 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:45:29.656 INFO [6409]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=eihliq9qe4emiddp2ocukni5ujp08pj6 -- 18:45:29.656 INFO [6409]: QUERY_STRING = /member/myprofile -- 18:45:29.656 INFO [6409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:45:29.687 INFO [6409]: COREGRADE is stopping... -- 18:45:29.687 DEBUG [6409]: Closing database connection -- 18:45:29.687 SQL [6409]: pgsql_close() -- 18:45:38.822 INFO [6381]: COREGRADE is starting... -- 18:45:38.822 INFO [6381]: Version from config: 1.0 -- 18:45:38.822 DEBUG [6381]: Connecting to database... -- 18:45:38.822 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:45:38.822 SQL [6381]: pgsql_db_connect() -- 18:45:38.826 DEBUG [6381]: Database connection successful -- 18:45:38.826 INFO [6381]: _SERVER found -- 18:45:38.826 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 18:45:38.826 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:45:38.826 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=eihliq9qe4emiddp2ocukni5ujp08pj6 -- 18:45:38.826 INFO [6381]: QUERY_STRING = /member/myprofile -- 18:45:38.826 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:45:38.857 INFO [6381]: COREGRADE is stopping... -- 18:45:38.857 DEBUG [6381]: Closing database connection -- 18:45:38.857 SQL [6381]: pgsql_close() -- 18:45:54.507 INFO [7017]: COREGRADE is starting... -- 18:45:54.507 INFO [7017]: Version from config: 1.0 -- 18:45:54.507 DEBUG [7017]: Connecting to database... -- 18:45:54.507 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:45:54.507 SQL [7017]: pgsql_db_connect() -- 18:45:54.511 DEBUG [7017]: Database connection successful -- 18:45:54.511 INFO [7017]: _SERVER found -- 18:45:54.511 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 18:45:54.511 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 18:45:54.511 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=tprujt42vi6jq8ep762485en3jrfe9vs -- 18:45:54.511 INFO [7017]: QUERY_STRING = /member/myprofile -- 18:45:54.511 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:45:54.544 INFO [7017]: COREGRADE is stopping... -- 18:45:54.544 DEBUG [7017]: Closing database connection -- 18:45:54.544 SQL [7017]: pgsql_close() -- 18:45:54.663 INFO [7017]: COREGRADE is starting... -- 18:45:54.664 INFO [7017]: Version from config: 1.0 -- 18:45:54.664 DEBUG [7017]: Connecting to database... -- 18:45:54.664 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:45:54.664 SQL [7017]: pgsql_db_connect() -- 18:45:54.668 DEBUG [7017]: Database connection successful -- 18:45:54.668 INFO [7017]: _SERVER found -- 18:45:54.668 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 18:45:54.668 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 18:45:54.668 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=ad3s47n15cj55o7n9rbq3n83r051il7u -- 18:45:54.668 INFO [7017]: QUERY_STRING = /favicon.ico -- 18:45:54.668 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:45:54.679 INFO [7017]: COREGRADE is stopping... -- 18:45:54.679 DEBUG [7017]: Closing database connection -- 18:45:54.679 SQL [7017]: pgsql_close() -- 18:47:36.047 INFO [6385]: COREGRADE is starting... -- 18:47:36.047 INFO [6385]: Version from config: 1.0 -- 18:47:36.047 DEBUG [6385]: Connecting to database... -- 18:47:36.047 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:36.047 SQL [6385]: pgsql_db_connect() -- 18:47:36.051 DEBUG [6385]: Database connection successful -- 18:47:36.051 INFO [6385]: _SERVER found -- 18:47:36.051 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 18:47:36.051 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 18:47:36.051 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=ad3s47n15cj55o7n9rbq3n83r051il7u -- 18:47:36.051 INFO [6385]: QUERY_STRING = /member/myprofile -- 18:47:36.051 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:47:36.087 INFO [6385]: COREGRADE is stopping... -- 18:47:36.087 DEBUG [6385]: Closing database connection -- 18:47:36.087 SQL [6385]: pgsql_close() -- 18:47:36.387 INFO [6385]: COREGRADE is starting... -- 18:47:36.387 INFO [6385]: Version from config: 1.0 -- 18:47:36.387 DEBUG [6385]: Connecting to database... -- 18:47:36.387 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:36.387 SQL [6385]: pgsql_db_connect() -- 18:47:36.391 DEBUG [6385]: Database connection successful -- 18:47:36.391 INFO [6385]: _SERVER found -- 18:47:36.391 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 18:47:36.391 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 18:47:36.391 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=ad3s47n15cj55o7n9rbq3n83r051il7u -- 18:47:36.391 INFO [6385]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:47:36.391 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:47:36.403 INFO [6385]: COREGRADE is stopping... -- 18:47:36.403 DEBUG [6385]: Closing database connection -- 18:47:36.403 SQL [6385]: pgsql_close() -- 18:47:36.604 INFO [6385]: COREGRADE is starting... -- 18:47:36.604 INFO [6385]: Version from config: 1.0 -- 18:47:36.604 DEBUG [6385]: Connecting to database... -- 18:47:36.604 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:36.604 SQL [6385]: pgsql_db_connect() -- 18:47:36.608 DEBUG [6385]: Database connection successful -- 18:47:36.608 INFO [6385]: _SERVER found -- 18:47:36.608 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 18:47:36.608 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 18:47:36.608 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=ad3s47n15cj55o7n9rbq3n83r051il7u -- 18:47:36.608 INFO [6385]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:47:36.608 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:47:36.619 INFO [6385]: COREGRADE is stopping... -- 18:47:36.619 DEBUG [6385]: Closing database connection -- 18:47:36.619 SQL [6385]: pgsql_close() -- 18:47:57.378 INFO [6382]: COREGRADE is starting... -- 18:47:57.378 INFO [6382]: Version from config: 1.0 -- 18:47:57.378 DEBUG [6382]: Connecting to database... -- 18:47:57.378 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:57.378 SQL [6382]: pgsql_db_connect() -- 18:47:57.382 DEBUG [6382]: Database connection successful -- 18:47:57.382 INFO [6382]: _SERVER found -- 18:47:57.382 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 18:47:57.382 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 18:47:57.382 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=ad3s47n15cj55o7n9rbq3n83r051il7u -- 18:47:57.382 INFO [6382]: QUERY_STRING = /member/configure -- 18:47:57.382 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:47:57.422 INFO [6382]: COREGRADE is stopping... -- 18:47:57.422 DEBUG [6382]: Closing database connection -- 18:47:57.422 SQL [6382]: pgsql_close() -- 18:47:57.586 INFO [6382]: COREGRADE is starting... -- 18:47:57.586 INFO [6382]: Version from config: 1.0 -- 18:47:57.586 DEBUG [6382]: Connecting to database... -- 18:47:57.586 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:57.586 SQL [6382]: pgsql_db_connect() -- 18:47:57.590 DEBUG [6382]: Database connection successful -- 18:47:57.590 INFO [6382]: _SERVER found -- 18:47:57.590 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 18:47:57.590 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 18:47:57.590 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=ad3s47n15cj55o7n9rbq3n83r051il7u -- 18:47:57.590 INFO [6382]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:47:57.590 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:47:57.601 INFO [6382]: COREGRADE is stopping... -- 18:47:57.602 DEBUG [6382]: Closing database connection -- 18:47:57.602 SQL [6382]: pgsql_close() -- 18:47:57.786 INFO [6382]: COREGRADE is starting... -- 18:47:57.787 INFO [6382]: Version from config: 1.0 -- 18:47:57.787 DEBUG [6382]: Connecting to database... -- 18:47:57.787 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:57.787 SQL [6382]: pgsql_db_connect() -- 18:47:57.791 DEBUG [6382]: Database connection successful -- 18:47:57.791 INFO [6382]: _SERVER found -- 18:47:57.791 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 18:47:57.791 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 18:47:57.791 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=ad3s47n15cj55o7n9rbq3n83r051il7u -- 18:47:57.791 INFO [6382]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:47:57.791 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:47:57.802 INFO [6382]: COREGRADE is stopping... -- 18:47:57.802 DEBUG [6382]: Closing database connection -- 18:47:57.802 SQL [6382]: pgsql_close() -- 18:47:59.769 INFO [6382]: COREGRADE is starting... -- 18:47:59.770 INFO [6382]: Version from config: 1.0 -- 18:47:59.770 DEBUG [6382]: Connecting to database... -- 18:47:59.770 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:59.770 SQL [6382]: pgsql_db_connect() -- 18:47:59.774 DEBUG [6382]: Database connection successful -- 18:47:59.774 INFO [6382]: _SERVER found -- 18:47:59.774 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 18:47:59.774 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 18:47:59.774 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=ad3s47n15cj55o7n9rbq3n83r051il7u -- 18:47:59.774 INFO [6382]: QUERY_STRING = /member/viewSharePage -- 18:47:59.774 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:47:59.810 INFO [6382]: COREGRADE is stopping... -- 18:47:59.810 DEBUG [6382]: Closing database connection -- 18:47:59.810 SQL [6382]: pgsql_close() -- 18:51:43.840 INFO [6384]: COREGRADE is starting... -- 18:51:43.840 INFO [6384]: Version from config: 1.0 -- 18:51:43.840 DEBUG [6384]: Connecting to database... -- 18:51:43.840 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:43.840 SQL [6384]: pgsql_db_connect() -- 18:51:43.844 DEBUG [6384]: Database connection successful -- 18:51:43.844 INFO [6384]: _SERVER found -- 18:51:43.844 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 18:51:43.844 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:43.844 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=ad3s47n15cj55o7n9rbq3n83r051il7u -- 18:51:43.844 INFO [6384]: QUERY_STRING = /auth/logout -- 18:51:43.844 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:43.878 INFO [6384]: COREGRADE is stopping... -- 18:51:43.878 DEBUG [6384]: Closing database connection -- 18:51:43.878 SQL [6384]: pgsql_close() -- 18:51:44.102 INFO [6405]: COREGRADE is starting... -- 18:51:44.102 INFO [6405]: Version from config: 1.0 -- 18:51:44.102 DEBUG [6405]: Connecting to database... -- 18:51:44.102 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:44.102 SQL [6405]: pgsql_db_connect() -- 18:51:44.106 DEBUG [6405]: Database connection successful -- 18:51:44.106 INFO [6405]: _SERVER found -- 18:51:44.106 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 18:51:44.106 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:44.106 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=krdi9g4h43a6o4lha583piv05qb2b8ph -- 18:51:44.106 INFO [6405]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:51:44.106 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:44.118 INFO [6405]: COREGRADE is stopping... -- 18:51:44.118 DEBUG [6405]: Closing database connection -- 18:51:44.118 SQL [6405]: pgsql_close() -- 18:51:44.120 INFO [6384]: COREGRADE is starting... -- 18:51:44.121 INFO [6384]: Version from config: 1.0 -- 18:51:44.121 DEBUG [6384]: Connecting to database... -- 18:51:44.121 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:44.121 SQL [6384]: pgsql_db_connect() -- 18:51:44.125 DEBUG [6384]: Database connection successful -- 18:51:44.125 INFO [6384]: _SERVER found -- 18:51:44.125 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 18:51:44.125 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:44.125 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=krdi9g4h43a6o4lha583piv05qb2b8ph -- 18:51:44.125 INFO [6384]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:51:44.125 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:44.136 INFO [6384]: COREGRADE is stopping... -- 18:51:44.136 DEBUG [6384]: Closing database connection -- 18:51:44.136 SQL [6384]: pgsql_close() -- 18:51:49.052 INFO [6405]: COREGRADE is starting... -- 18:51:49.052 INFO [6405]: Version from config: 1.0 -- 18:51:49.052 DEBUG [6405]: Connecting to database... -- 18:51:49.052 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:49.052 SQL [6405]: pgsql_db_connect() -- 18:51:49.056 DEBUG [6405]: Database connection successful -- 18:51:49.056 INFO [6405]: _SERVER found -- 18:51:49.056 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 18:51:49.056 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:49.056 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=krdi9g4h43a6o4lha583piv05qb2b8ph -- 18:51:49.056 INFO [6405]: QUERY_STRING = -- 18:51:49.056 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:49.088 INFO [6405]: COREGRADE is stopping... -- 18:51:49.088 DEBUG [6405]: Closing database connection -- 18:51:49.088 SQL [6405]: pgsql_close() -- 18:51:49.512 INFO [6405]: COREGRADE is starting... -- 18:51:49.512 INFO [6405]: Version from config: 1.0 -- 18:51:49.512 DEBUG [6405]: Connecting to database... -- 18:51:49.512 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:49.512 SQL [6405]: pgsql_db_connect() -- 18:51:49.516 DEBUG [6405]: Database connection successful -- 18:51:49.516 INFO [6405]: _SERVER found -- 18:51:49.516 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 18:51:49.516 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:49.516 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=krdi9g4h43a6o4lha583piv05qb2b8ph -- 18:51:49.516 INFO [6405]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:51:49.516 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:49.527 INFO [6405]: COREGRADE is stopping... -- 18:51:49.527 DEBUG [6405]: Closing database connection -- 18:51:49.527 SQL [6405]: pgsql_close() -- 18:51:49.574 INFO [7160]: COREGRADE is starting... -- 18:51:49.574 INFO [7160]: Version from config: 1.0 -- 18:51:49.574 DEBUG [7160]: Connecting to database... -- 18:51:49.574 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:49.574 SQL [7160]: pgsql_db_connect() -- 18:51:49.578 DEBUG [7160]: Database connection successful -- 18:51:49.578 INFO [7160]: _SERVER found -- 18:51:49.578 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 18:51:49.578 INFO [7160]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:49.578 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=krdi9g4h43a6o4lha583piv05qb2b8ph -- 18:51:49.578 INFO [7160]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:51:49.578 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:49.590 INFO [7160]: COREGRADE is stopping... -- 18:51:49.590 DEBUG [7160]: Closing database connection -- 18:51:49.590 SQL [7160]: pgsql_close() -- 18:53:05.159 INFO [6383]: COREGRADE is starting... -- 18:53:05.159 INFO [6383]: Version from config: 1.0 -- 18:53:05.159 DEBUG [6383]: Connecting to database... -- 18:53:05.159 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:53:05.159 SQL [6383]: pgsql_db_connect() -- 18:53:05.164 INFO [7159]: COREGRADE is starting... -- 18:53:05.165 INFO [7159]: Version from config: 1.0 -- 18:53:05.165 DEBUG [7159]: Connecting to database... -- 18:53:05.165 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:53:05.165 SQL [7159]: pgsql_db_connect() -- 18:53:05.163 DEBUG [6383]: Database connection successful -- 18:53:05.163 INFO [6383]: _SERVER found -- 18:53:05.163 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 18:53:05.163 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 18:53:05.163 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=krdi9g4h43a6o4lha583piv05qb2b8ph; _gid=GA1.2.188861350.1581292310 -- 18:53:05.163 INFO [6383]: QUERY_STRING = /auth -- 18:53:05.163 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:53:05.195 INFO [6383]: COREGRADE is stopping... -- 18:53:05.196 DEBUG [6383]: Closing database connection -- 18:53:05.196 SQL [6383]: pgsql_close() -- 18:53:05.168 DEBUG [7159]: Database connection successful -- 18:53:05.168 INFO [7159]: _SERVER found -- 18:53:05.168 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 18:53:05.168 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 18:53:05.168 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=krdi9g4h43a6o4lha583piv05qb2b8ph; _gid=GA1.2.188861350.1581292310 -- 18:53:05.169 INFO [7159]: QUERY_STRING = /welcome/viewLogin -- 18:53:05.169 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:53:05.199 INFO [7159]: COREGRADE is stopping... -- 18:53:05.199 DEBUG [7159]: Closing database connection -- 18:53:05.199 SQL [7159]: pgsql_close() -- 18:53:05.229 INFO [7159]: COREGRADE is starting... -- 18:53:05.230 INFO [7159]: Version from config: 1.0 -- 18:53:05.230 DEBUG [7159]: Connecting to database... -- 18:53:05.230 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:53:05.230 SQL [7159]: pgsql_db_connect() -- 18:53:05.234 DEBUG [7159]: Database connection successful -- 18:53:05.234 INFO [7159]: _SERVER found -- 18:53:05.234 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 18:53:05.234 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 18:53:05.234 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=krdi9g4h43a6o4lha583piv05qb2b8ph; _gid=GA1.2.188861350.1581292310 -- 18:53:05.234 INFO [7159]: QUERY_STRING = /auth/index -- 18:53:05.234 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:53:05.264 INFO [7159]: COREGRADE is stopping... -- 18:53:05.264 DEBUG [7159]: Closing database connection -- 18:53:05.264 SQL [7159]: pgsql_close() -- 18:53:05.401 INFO [6383]: COREGRADE is starting... -- 18:53:05.402 INFO [6383]: Version from config: 1.0 -- 18:53:05.402 DEBUG [6383]: Connecting to database... -- 18:53:05.402 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:53:05.402 SQL [6383]: pgsql_db_connect() -- 18:53:05.406 DEBUG [6383]: Database connection successful -- 18:53:05.406 INFO [6383]: _SERVER found -- 18:53:05.406 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 18:53:05.406 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 18:53:05.406 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=krdi9g4h43a6o4lha583piv05qb2b8ph; _gid=GA1.2.188861350.1581292310 -- 18:53:05.406 INFO [6383]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:53:05.406 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:53:05.417 INFO [6383]: COREGRADE is stopping... -- 18:53:05.417 DEBUG [6383]: Closing database connection -- 18:53:05.417 SQL [6383]: pgsql_close() -- 18:53:05.431 INFO [7159]: COREGRADE is starting... -- 18:53:05.431 INFO [7159]: Version from config: 1.0 -- 18:53:05.431 DEBUG [7159]: Connecting to database... -- 18:53:05.431 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:53:05.431 SQL [7159]: pgsql_db_connect() -- 18:53:05.435 DEBUG [7159]: Database connection successful -- 18:53:05.435 INFO [7159]: _SERVER found -- 18:53:05.435 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 18:53:05.435 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 18:53:05.435 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=krdi9g4h43a6o4lha583piv05qb2b8ph; _gid=GA1.2.188861350.1581292310 -- 18:53:05.435 INFO [7159]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:53:05.435 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:53:05.446 INFO [7159]: COREGRADE is stopping... -- 18:53:05.446 DEBUG [7159]: Closing database connection -- 18:53:05.446 SQL [7159]: pgsql_close() -- 19:07:04.382 INFO [6409]: COREGRADE is starting... -- 19:07:04.382 INFO [6409]: Version from config: 1.0 -- 19:07:04.382 DEBUG [6409]: Connecting to database... -- 19:07:04.382 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:04.382 SQL [6409]: pgsql_db_connect() -- 19:07:04.387 DEBUG [6409]: Database connection successful -- 19:07:04.387 INFO [6409]: _SERVER found -- 19:07:04.387 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 19:07:04.387 INFO [6409]: SERVER_NAME = oameye.works.coregrade.com -- 19:07:04.387 INFO [6409]: QUERY_STRING = -- 19:07:04.387 INFO [6409]: HTTP_X_FORWARDED_FOR = 51.159.20.212 -- 19:07:04.425 INFO [6409]: COREGRADE is stopping... -- 19:07:04.425 DEBUG [6409]: Closing database connection -- 19:07:04.425 SQL [6409]: pgsql_close() -- 19:07:05.026 INFO [6381]: COREGRADE is starting... -- 19:07:05.026 INFO [6381]: Version from config: 1.0 -- 19:07:05.026 DEBUG [6381]: Connecting to database... -- 19:07:05.026 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:05.026 SQL [6381]: pgsql_db_connect() -- 19:07:05.030 DEBUG [6381]: Database connection successful -- 19:07:05.030 INFO [6381]: _SERVER found -- 19:07:05.030 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 19:07:05.030 INFO [6381]: SERVER_NAME = oameye.works.coregrade.com -- 19:07:05.030 INFO [6381]: QUERY_STRING = -- 19:07:05.030 INFO [6381]: HTTP_X_FORWARDED_FOR = 51.159.20.212 -- 19:07:05.067 INFO [6381]: COREGRADE is stopping... -- 19:07:05.067 DEBUG [6381]: Closing database connection -- 19:07:05.067 SQL [6381]: pgsql_close() -- 19:07:05.468 INFO [6381]: COREGRADE is starting... -- 19:07:05.468 INFO [6381]: Version from config: 1.0 -- 19:07:05.468 DEBUG [6381]: Connecting to database... -- 19:07:05.468 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:05.468 SQL [6381]: pgsql_db_connect() -- 19:07:05.473 DEBUG [6381]: Database connection successful -- 19:07:05.473 INFO [6381]: _SERVER found -- 19:07:05.473 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 19:07:05.473 INFO [6381]: SERVER_NAME = oameye.works.coregrade.com -- 19:07:05.473 INFO [6381]: QUERY_STRING = -- 19:07:05.473 INFO [6381]: HTTP_X_FORWARDED_FOR = 51.159.20.212 -- 19:07:05.503 INFO [6381]: COREGRADE is stopping... -- 19:07:05.503 DEBUG [6381]: Closing database connection -- 19:07:05.503 SQL [6381]: pgsql_close() -- 19:24:15.912 INFO [7017]: COREGRADE is starting... -- 19:24:15.912 INFO [7017]: Version from config: 1.0 -- 19:24:15.912 DEBUG [7017]: Connecting to database... -- 19:24:15.912 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:24:15.912 SQL [7017]: pgsql_db_connect() -- 19:24:15.917 DEBUG [7017]: Database connection successful -- 19:24:15.917 INFO [7017]: _SERVER found -- 19:24:15.917 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 19:24:15.917 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 19:24:15.917 INFO [7017]: QUERY_STRING = /solr/admin/info/system -- 19:24:15.917 INFO [7017]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 19:24:15.930 INFO [7017]: COREGRADE is stopping... -- 19:24:15.930 DEBUG [7017]: Closing database connection -- 19:24:15.930 SQL [7017]: pgsql_close() -- 19:36:37.926 INFO [6385]: COREGRADE is starting... -- 19:36:37.927 INFO [6385]: Version from config: 1.0 -- 19:36:37.927 DEBUG [6385]: Connecting to database... -- 19:36:37.927 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:36:37.927 SQL [6385]: pgsql_db_connect() -- 19:36:37.931 DEBUG [6385]: Database connection successful -- 19:36:37.931 INFO [6385]: _SERVER found -- 19:36:37.931 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 19:36:37.931 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 19:36:37.931 INFO [6385]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 19:36:37.931 INFO [6385]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 19:36:37.966 INFO [6385]: COREGRADE is stopping... -- 19:36:37.966 DEBUG [6385]: Closing database connection -- 19:36:37.966 SQL [6385]: pgsql_close() -- 19:36:38.232 INFO [6385]: COREGRADE is starting... -- 19:36:38.232 INFO [6385]: Version from config: 1.0 -- 19:36:38.232 DEBUG [6385]: Connecting to database... -- 19:36:38.232 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:36:38.232 SQL [6385]: pgsql_db_connect() -- 19:36:38.236 DEBUG [6385]: Database connection successful -- 19:36:38.236 INFO [6385]: _SERVER found -- 19:36:38.236 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 19:36:38.236 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 19:36:38.236 INFO [6385]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 19:36:38.236 INFO [6385]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 19:36:38.267 INFO [6385]: COREGRADE is stopping... -- 19:36:38.267 DEBUG [6385]: Closing database connection -- 19:36:38.267 SQL [6385]: pgsql_close() -- 19:45:30.314 INFO [6382]: COREGRADE is starting... -- 19:45:30.314 INFO [6382]: Version from config: 1.0 -- 19:45:30.314 DEBUG [6382]: Connecting to database... -- 19:45:30.314 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:45:30.314 SQL [6382]: pgsql_db_connect() -- 19:45:30.319 DEBUG [6382]: Database connection successful -- 19:45:30.319 INFO [6382]: _SERVER found -- 19:45:30.319 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 19:45:30.319 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 19:45:30.319 INFO [6382]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 19:45:30.319 INFO [6382]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 19:45:30.360 INFO [6382]: COREGRADE is stopping... -- 19:45:30.360 DEBUG [6382]: Closing database connection -- 19:45:30.360 SQL [6382]: pgsql_close() -- 21:06:50.192 INFO [6384]: COREGRADE is starting... -- 21:06:50.193 INFO [6384]: Version from config: 1.0 -- 21:06:50.193 DEBUG [6384]: Connecting to database... -- 21:06:50.193 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:06:50.193 SQL [6384]: pgsql_db_connect() -- 21:06:50.198 DEBUG [6384]: Database connection successful -- 21:06:50.198 INFO [6384]: _SERVER found -- 21:06:50.198 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 21:06:50.198 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 21:06:50.198 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310 -- 21:06:50.198 INFO [6384]: QUERY_STRING = /auth -- 21:06:50.198 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:06:50.236 INFO [6384]: COREGRADE is stopping... -- 21:06:50.236 DEBUG [6384]: Closing database connection -- 21:06:50.236 SQL [6384]: pgsql_close() -- 21:06:50.395 INFO [6384]: COREGRADE is starting... -- 21:06:50.396 INFO [6384]: Version from config: 1.0 -- 21:06:50.396 DEBUG [6384]: Connecting to database... -- 21:06:50.396 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:06:50.396 SQL [6384]: pgsql_db_connect() -- 21:06:50.400 DEBUG [6384]: Database connection successful -- 21:06:50.400 INFO [6384]: _SERVER found -- 21:06:50.400 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 21:06:50.400 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 21:06:50.400 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1icfga0hd5hjv3gd2c0jm56cvqeitnig -- 21:06:50.400 INFO [6384]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:06:50.400 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:06:50.411 INFO [6384]: COREGRADE is stopping... -- 21:06:50.411 DEBUG [6384]: Closing database connection -- 21:06:50.411 SQL [6384]: pgsql_close() -- 21:06:50.415 INFO [6405]: COREGRADE is starting... -- 21:06:50.416 INFO [6405]: Version from config: 1.0 -- 21:06:50.416 DEBUG [6405]: Connecting to database... -- 21:06:50.416 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:06:50.416 SQL [6405]: pgsql_db_connect() -- 21:06:50.420 DEBUG [6405]: Database connection successful -- 21:06:50.420 INFO [6405]: _SERVER found -- 21:06:50.420 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 21:06:50.420 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 21:06:50.420 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1icfga0hd5hjv3gd2c0jm56cvqeitnig -- 21:06:50.420 INFO [6405]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:06:50.420 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:06:50.433 INFO [6405]: COREGRADE is stopping... -- 21:06:50.433 DEBUG [6405]: Closing database connection -- 21:06:50.433 SQL [6405]: pgsql_close() -- 21:06:53.962 INFO [6405]: COREGRADE is starting... -- 21:06:53.962 INFO [6405]: Version from config: 1.0 -- 21:06:53.962 DEBUG [6405]: Connecting to database... -- 21:06:53.962 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:06:53.962 SQL [6405]: pgsql_db_connect() -- 21:06:53.999 INFO [6405]: COREGRADE is starting... -- 21:06:53.999 INFO [6405]: Version from config: 1.0 -- 21:06:53.999 DEBUG [6405]: Connecting to database... -- 21:06:53.999 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:06:53.999 SQL [6405]: pgsql_db_connect() -- 21:06:54.003 DEBUG [6405]: Database connection successful -- 21:06:54.003 INFO [6405]: _SERVER found -- 21:06:54.003 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 21:06:54.003 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 21:06:54.003 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1icfga0hd5hjv3gd2c0jm56cvqeitnig -- 21:06:54.003 INFO [6405]: QUERY_STRING = -- 21:06:54.003 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:06:54.003 INFO [6405]: SystemStatus()09-09-********~************ -- 21:06:54.003 INFO [6405]: long coregrade_api_main(CVars in, CVars &out) -- 21:06:54.003 INFO [6405]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 21:06:54.003 INFO [6405]: account calls -- 21:06:54.003 INFO [6405]: account_calls() -- 21:06:54.003 INFO [6405]: LoginCoreGradeAccount() -- 21:06:54.003 FLOG_MAX [6405]: REQ_STRING(username) -- 21:06:54.004 FLOG_MAX [6405]: REQ_STRING(password) -- 21:06:54.004 FLOG_MAX [6405]: REQ_STRING(sessionid) -- 21:06:54.004 FLOG_MAX [6405]: long load_db_record( CVars &rec, const char * query, ... ) -- 21:06:54.004 SQL [6405]: pgsql_query() -- 21:06:54.004 SQL [6405]: About to run query: -- 21:06:54.004 SQL [6405]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 21:06:54.007 SQL [6405]: Found rows: 1 -- 21:06:54.007 FLOG_MAX [6405]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 21:06:54.007 INFO [6405]: long SessionCheck(long uid, const char *sessionid, int create ) -- 21:06:54.007 SQL [6405]: pgsql_exec() -- 21:06:54.007 SQL [6405]: About to run query: -- 21:06:54.007 SQL [6405]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 21:06:54.009 SQL [6405]: PQcmdTuples: 1 -- 21:06:54.009 SQL [6405]: Affected rows: 1 -- 21:06:54.009 SQL [6405]: pgsql_exec() -- 21:06:54.009 SQL [6405]: About to run query: -- 21:06:54.009 SQL [6405]: DELETE FROM members_session WHERE member_id=5 -- 21:06:54.009 SQL [6405]: PQcmdTuples: 0 -- 21:06:54.009 SQL [6405]: Affected rows: 0 -- 21:06:54.009 SQL [6405]: pgsql_query() -- 21:06:54.009 SQL [6405]: About to run query: -- 21:06:54.009 SQL [6405]: SELECT * FROM members_session WHERE member_id=5 AND session<>'9013D26198955E9B2A323868E64B8E6B' -- 21:06:54.010 SQL [6405]: Found rows: 0 -- 21:06:54.010 SQL [6405]: Found rows: 0 -- 21:06:54.010 FLOG_MAX [6405]: long load_db_record( CVars &rec, const char * query, ... ) -- 21:06:54.010 SQL [6405]: pgsql_query() -- 21:06:54.010 SQL [6405]: About to run query: -- 21:06:54.010 SQL [6405]: SELECT * FROM members_session WHERE member_id=5 AND session='9013D26198955E9B2A323868E64B8E6B' -- 21:06:54.011 SQL [6405]: Found rows: 0 -- 21:06:54.011 SQL [6405]: Found rows: 0 -- 21:06:54.011 FLOG_MAX [6405]: insert_db_record() -- 21:06:54.011 SQL [6405]: pgsql_exec() -- 21:06:54.011 SQL [6405]: About to run query: -- 21:06:54.011 SQL [6405]: INSERT INTO members_session (member_id,session) VALUES ('5','9013D26198955E9B2A323868E64B8E6B') -- 21:06:54.012 SQL [6405]: PQcmdTuples: 1 -- 21:06:54.012 SQL [6405]: Affected rows: 1 -- 21:06:54.012 FLOG_MAX [6405]: SELECT currval('members_session_id_seq') -- 21:06:54.012 SQL [6405]: pgsql_query() -- 21:06:54.012 SQL [6405]: About to run query: -- 21:06:54.012 SQL [6405]: SELECT currval('members_session_id_seq') -- 21:06:54.013 SQL [6405]: Found rows: 1 -- 21:06:54.013 INFO [6405]: CreateDefaultPage() -- 21:06:54.013 FLOG_MAX [6405]: long load_db_record( CVars &rec, const char * query, ... ) -- 21:06:54.013 SQL [6405]: pgsql_query() -- 21:06:54.013 SQL [6405]: About to run query: -- 21:06:54.013 SQL [6405]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 21:06:54.013 SQL [6405]: Found rows: 1 -- 21:06:54.013 FLOG_MAX [6405]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 21:06:54.013 SQL [6405]: pgsql_query() -- 21:06:54.013 SQL [6405]: About to run query: -- 21:06:54.013 SQL [6405]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 21:06:54.014 SQL [6405]: Found rows: 1 -- 21:06:54.014 INFO [6405]: /CreateDefaultPage() -- 21:06:54.014 INFO [6405]: /LoginCoreGradeAccount() -- 21:06:54.014 INFO [6405]: RET: added=2020-02-05 06:47:23.982154 -- 21:06:54.014 INFO [6405]: RET: email=ameye+11@chiefsoft.com -- 21:06:54.014 INFO [6405]: RET: firstname=Olu -- 21:06:54.014 INFO [6405]: RET: id=5 -- 21:06:54.014 INFO [6405]: RET: last_login= -- 21:06:54.014 INFO [6405]: RET: lastname=Amey -- 21:06:54.014 INFO [6405]: RET: loc=192.168.1.13 -- 21:06:54.014 INFO [6405]: RET: member_id=5 -- 21:06:54.014 INFO [6405]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 21:06:54.014 INFO [6405]: RET: phone= -- 21:06:54.014 INFO [6405]: RET: pid= -- 21:06:54.014 INFO [6405]: RET: result=YES I GET TO BACK END -- 21:06:54.014 INFO [6405]: RET: sessionid=9013D26198955E9B2A323868E64B8E6B -- 21:06:54.014 INFO [6405]: RET: status=1 -- 21:06:54.014 INFO [6405]: RET: stauts=OK -- 21:06:54.014 INFO [6405]: RET: username=ameye+11@chiefsoft.com -- 21:06:54.014 INFO [6405]: RET: verified= -- 21:06:54.015 INFO [6405]: COREGRADE is stopping... -- 21:06:54.015 DEBUG [6405]: Closing database connection -- 21:06:54.015 SQL [6405]: pgsql_close() -- 21:06:53.967 DEBUG [6405]: Database connection successful -- 21:06:53.967 INFO [6405]: _SERVER found -- 21:06:53.967 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 21:06:53.967 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 21:06:53.967 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1icfga0hd5hjv3gd2c0jm56cvqeitnig -- 21:06:53.967 INFO [6405]: QUERY_STRING = /auth -- 21:06:53.967 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:06:54.016 INFO [6405]: COREGRADE is stopping... -- 21:06:54.016 DEBUG [6405]: Closing database connection -- 21:06:54.016 SQL [6405]: pgsql_close() -- 21:06:54.032 INFO [6405]: COREGRADE is starting... -- 21:06:54.032 INFO [6405]: Version from config: 1.0 -- 21:06:54.032 DEBUG [6405]: Connecting to database... -- 21:06:54.032 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:06:54.032 SQL [6405]: pgsql_db_connect() -- 21:06:54.036 DEBUG [6405]: Database connection successful -- 21:06:54.036 INFO [6405]: _SERVER found -- 21:06:54.036 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 21:06:54.036 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 21:06:54.036 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1icfga0hd5hjv3gd2c0jm56cvqeitnig -- 21:06:54.036 INFO [6405]: QUERY_STRING = /member/index -- 21:06:54.036 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:06:54.073 INFO [6405]: COREGRADE is stopping... -- 21:06:54.073 DEBUG [6405]: Closing database connection -- 21:06:54.073 SQL [6405]: pgsql_close() -- 21:06:54.252 INFO [6405]: COREGRADE is starting... -- 21:06:54.252 INFO [6405]: Version from config: 1.0 -- 21:06:54.252 DEBUG [6405]: Connecting to database... -- 21:06:54.252 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:06:54.252 SQL [6405]: pgsql_db_connect() -- 21:06:54.257 DEBUG [6405]: Database connection successful -- 21:06:54.257 INFO [6405]: _SERVER found -- 21:06:54.257 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 21:06:54.257 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 21:06:54.257 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1icfga0hd5hjv3gd2c0jm56cvqeitnig -- 21:06:54.257 INFO [6405]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:06:54.257 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:06:54.268 INFO [6405]: COREGRADE is stopping... -- 21:06:54.268 DEBUG [6405]: Closing database connection -- 21:06:54.268 SQL [6405]: pgsql_close() -- 21:06:54.410 INFO [6405]: COREGRADE is starting... -- 21:06:54.410 INFO [6405]: Version from config: 1.0 -- 21:06:54.410 DEBUG [6405]: Connecting to database... -- 21:06:54.411 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:06:54.411 SQL [6405]: pgsql_db_connect() -- 21:06:54.415 DEBUG [6405]: Database connection successful -- 21:06:54.415 INFO [6405]: _SERVER found -- 21:06:54.415 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 21:06:54.415 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 21:06:54.415 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1icfga0hd5hjv3gd2c0jm56cvqeitnig -- 21:06:54.415 INFO [6405]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:06:54.415 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:06:54.426 INFO [6405]: COREGRADE is stopping... -- 21:06:54.426 DEBUG [6405]: Closing database connection -- 21:06:54.426 SQL [6405]: pgsql_close() -- 21:06:59.713 INFO [7160]: COREGRADE is starting... -- 21:06:59.713 INFO [7160]: Version from config: 1.0 -- 21:06:59.713 DEBUG [7160]: Connecting to database... -- 21:06:59.714 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:06:59.714 SQL [7160]: pgsql_db_connect() -- 21:06:59.718 DEBUG [7160]: Database connection successful -- 21:06:59.718 INFO [7160]: _SERVER found -- 21:06:59.718 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 21:06:59.718 INFO [7160]: SERVER_NAME = oameye.works.coregrade.com -- 21:06:59.718 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1icfga0hd5hjv3gd2c0jm56cvqeitnig -- 21:06:59.718 INFO [7160]: QUERY_STRING = /auth/logout -- 21:06:59.718 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:06:59.754 INFO [7160]: COREGRADE is stopping... -- 21:06:59.754 DEBUG [7160]: Closing database connection -- 21:06:59.754 SQL [7160]: pgsql_close() -- 21:06:59.870 INFO [7160]: COREGRADE is starting... -- 21:06:59.870 INFO [7160]: Version from config: 1.0 -- 21:06:59.870 DEBUG [7160]: Connecting to database... -- 21:06:59.870 DEBUG [7160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:06:59.870 SQL [7160]: pgsql_db_connect() -- 21:06:59.875 DEBUG [7160]: Database connection successful -- 21:06:59.875 INFO [7160]: _SERVER found -- 21:06:59.875 INFO [7160]: REMOTE_ADDR = 192.168.1.13 -- 21:06:59.875 INFO [7160]: SERVER_NAME = oameye.works.coregrade.com -- 21:06:59.875 INFO [7160]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1icfga0hd5hjv3gd2c0jm56cvqeitnig -- 21:06:59.875 INFO [7160]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:06:59.875 INFO [7160]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:06:59.886 INFO [7160]: COREGRADE is stopping... -- 21:06:59.886 DEBUG [7160]: Closing database connection -- 21:06:59.886 SQL [7160]: pgsql_close() -- 21:08:45.092 INFO [6383]: COREGRADE is starting... -- 21:08:45.093 INFO [6383]: Version from config: 1.0 -- 21:08:45.093 DEBUG [6383]: Connecting to database... -- 21:08:45.093 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:08:45.093 SQL [6383]: pgsql_db_connect() -- 21:08:45.097 DEBUG [6383]: Database connection successful -- 21:08:45.097 INFO [6383]: _SERVER found -- 21:08:45.097 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 21:08:45.097 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 21:08:45.097 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1icfga0hd5hjv3gd2c0jm56cvqeitnig -- 21:08:45.097 INFO [6383]: QUERY_STRING = /auth -- 21:08:45.097 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:08:45.129 INFO [6383]: COREGRADE is stopping... -- 21:08:45.129 DEBUG [6383]: Closing database connection -- 21:08:45.129 SQL [6383]: pgsql_close() -- 21:08:45.258 INFO [6383]: COREGRADE is starting... -- 21:08:45.259 INFO [6383]: Version from config: 1.0 -- 21:08:45.259 DEBUG [6383]: Connecting to database... -- 21:08:45.259 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:08:45.259 SQL [6383]: pgsql_db_connect() -- 21:08:45.263 DEBUG [6383]: Database connection successful -- 21:08:45.263 INFO [6383]: _SERVER found -- 21:08:45.263 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 21:08:45.263 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 21:08:45.263 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1icfga0hd5hjv3gd2c0jm56cvqeitnig -- 21:08:45.263 INFO [6383]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:08:45.263 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:08:45.274 INFO [6383]: COREGRADE is stopping... -- 21:08:45.274 DEBUG [6383]: Closing database connection -- 21:08:45.274 SQL [6383]: pgsql_close() -- 21:08:45.279 INFO [7159]: COREGRADE is starting... -- 21:08:45.280 INFO [7159]: Version from config: 1.0 -- 21:08:45.280 DEBUG [7159]: Connecting to database... -- 21:08:45.280 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:08:45.280 SQL [7159]: pgsql_db_connect() -- 21:08:45.283 DEBUG [7159]: Database connection successful -- 21:08:45.283 INFO [7159]: _SERVER found -- 21:08:45.283 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 21:08:45.283 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 21:08:45.283 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1icfga0hd5hjv3gd2c0jm56cvqeitnig -- 21:08:45.283 INFO [7159]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:08:45.283 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:08:45.295 INFO [7159]: COREGRADE is stopping... -- 21:08:45.295 DEBUG [7159]: Closing database connection -- 21:08:45.295 SQL [7159]: pgsql_close() -- 21:52:53.828 INFO [6409]: COREGRADE is starting... -- 21:52:53.828 INFO [6409]: Version from config: 1.0 -- 21:52:53.828 DEBUG [6409]: Connecting to database... -- 21:52:53.828 DEBUG [6409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:52:53.828 SQL [6409]: pgsql_db_connect() -- 21:52:53.833 INFO [6381]: COREGRADE is starting... -- 21:52:53.834 INFO [6381]: Version from config: 1.0 -- 21:52:53.834 DEBUG [6381]: Connecting to database... -- 21:52:53.834 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:52:53.834 SQL [6381]: pgsql_db_connect() -- 21:52:53.834 DEBUG [6409]: Database connection successful -- 21:52:53.834 INFO [6409]: _SERVER found -- 21:52:53.834 INFO [6409]: REMOTE_ADDR = 192.168.1.13 -- 21:52:53.834 INFO [6409]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:52:53.834 INFO [6409]: QUERY_STRING = -- 21:52:53.834 INFO [6409]: HTTP_X_FORWARDED_FOR = 76.209.103.227, 66.249.88.5 -- 21:52:53.871 INFO [6409]: COREGRADE is stopping... -- 21:52:53.871 DEBUG [6409]: Closing database connection -- 21:52:53.871 SQL [6409]: pgsql_close() -- 21:52:53.839 DEBUG [6381]: Database connection successful -- 21:52:53.839 INFO [6381]: _SERVER found -- 21:52:53.839 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 21:52:53.839 INFO [6381]: SERVER_NAME = oameye.works.coregrade.com -- 21:52:53.839 INFO [6381]: QUERY_STRING = -- 21:52:53.839 INFO [6381]: HTTP_X_FORWARDED_FOR = 76.209.103.227, 66.249.88.28 -- 21:52:53.873 INFO [6381]: COREGRADE is stopping... -- 21:52:53.873 DEBUG [6381]: Closing database connection -- 21:52:53.873 SQL [6381]: pgsql_close() -- 21:53:13.198 INFO [6382]: COREGRADE is starting... -- 21:53:13.198 INFO [6382]: Version from config: 1.0 -- 21:53:13.198 DEBUG [6382]: Connecting to database... -- 21:53:13.198 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:53:13.198 SQL [6382]: pgsql_db_connect() -- 21:53:13.202 DEBUG [6382]: Database connection successful -- 21:53:13.202 INFO [6382]: _SERVER found -- 21:53:13.202 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 21:53:13.202 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:53:13.202 INFO [6382]: QUERY_STRING = -- 21:53:13.202 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:53:13.236 INFO [6382]: COREGRADE is stopping... -- 21:53:13.236 DEBUG [6382]: Closing database connection -- 21:53:13.236 SQL [6382]: pgsql_close() -- 21:53:13.999 INFO [6384]: COREGRADE is starting... -- 21:53:13.999 INFO [6384]: Version from config: 1.0 -- 21:53:13.999 DEBUG [6384]: Connecting to database... -- 21:53:13.999 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:53:13.999 SQL [6384]: pgsql_db_connect() -- 21:53:14.015 INFO [6382]: COREGRADE is starting... -- 21:53:14.015 INFO [6382]: Version from config: 1.0 -- 21:53:14.015 DEBUG [6382]: Connecting to database... -- 21:53:14.015 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:53:14.015 SQL [6382]: pgsql_db_connect() -- 21:53:14.003 DEBUG [6384]: Database connection successful -- 21:53:14.003 INFO [6384]: _SERVER found -- 21:53:14.003 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 21:53:14.003 INFO [6384]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:53:14.003 INFO [6384]: HTTP_COOKIE = ci_session=o8ftiel5fuuvubp8701a6hpdqv552bl5 -- 21:53:14.003 INFO [6384]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 21:53:14.003 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:53:14.015 INFO [6384]: COREGRADE is stopping... -- 21:53:14.015 DEBUG [6384]: Closing database connection -- 21:53:14.015 SQL [6384]: pgsql_close() -- 21:53:14.019 DEBUG [6382]: Database connection successful -- 21:53:14.019 INFO [6382]: _SERVER found -- 21:53:14.019 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 21:53:14.019 INFO [6382]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:53:14.019 INFO [6382]: HTTP_COOKIE = ci_session=o8ftiel5fuuvubp8701a6hpdqv552bl5 -- 21:53:14.019 INFO [6382]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:53:14.019 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:53:14.030 INFO [6382]: COREGRADE is stopping... -- 21:53:14.030 DEBUG [6382]: Closing database connection -- 21:53:14.030 SQL [6382]: pgsql_close() -- 22:14:26.824 INFO [6381]: COREGRADE is starting... -- 22:14:26.825 INFO [6381]: Version from config: 1.0 -- 22:14:26.825 DEBUG [6381]: Connecting to database... -- 22:14:26.825 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:14:26.825 SQL [6381]: pgsql_db_connect() -- 22:14:26.833 INFO [7017]: COREGRADE is starting... -- 22:14:26.833 INFO [7017]: Version from config: 1.0 -- 22:14:26.833 DEBUG [7017]: Connecting to database... -- 22:14:26.833 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:14:26.833 SQL [7017]: pgsql_db_connect() -- 22:14:26.831 DEBUG [6381]: Database connection successful -- 22:14:26.831 INFO [6381]: _SERVER found -- 22:14:26.831 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 22:14:26.831 INFO [6381]: SERVER_NAME = tokslaw.works.coregrade.com -- 22:14:26.831 INFO [6381]: HTTP_COOKIE = ci_session=o8ftiel5fuuvubp8701a6hpdqv552bl5; _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1254892195.1581303194 -- 22:14:26.831 INFO [6381]: QUERY_STRING = /auth -- 22:14:26.831 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:14:26.867 INFO [6381]: COREGRADE is stopping... -- 22:14:26.867 DEBUG [6381]: Closing database connection -- 22:14:26.867 SQL [6381]: pgsql_close() -- 22:14:26.837 DEBUG [7017]: Database connection successful -- 22:14:26.837 INFO [7017]: _SERVER found -- 22:14:26.837 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 22:14:26.837 INFO [7017]: SERVER_NAME = tokslaw.works.coregrade.com -- 22:14:26.837 INFO [7017]: HTTP_COOKIE = ci_session=o8ftiel5fuuvubp8701a6hpdqv552bl5; _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1254892195.1581303194 -- 22:14:26.837 INFO [7017]: QUERY_STRING = /welcome/viewLogin -- 22:14:26.837 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:14:26.869 INFO [7017]: COREGRADE is stopping... -- 22:14:26.869 DEBUG [7017]: Closing database connection -- 22:14:26.869 SQL [7017]: pgsql_close() -- 22:14:26.890 INFO [7017]: COREGRADE is starting... -- 22:14:26.890 INFO [7017]: Version from config: 1.0 -- 22:14:26.890 DEBUG [7017]: Connecting to database... -- 22:14:26.890 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:14:26.890 SQL [7017]: pgsql_db_connect() -- 22:14:26.894 DEBUG [7017]: Database connection successful -- 22:14:26.894 INFO [7017]: _SERVER found -- 22:14:26.894 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 22:14:26.894 INFO [7017]: SERVER_NAME = tokslaw.works.coregrade.com -- 22:14:26.894 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1254892195.1581303194; ci_session=o8ftiel5fuuvubp8701a6hpdqv552bl5 -- 22:14:26.894 INFO [7017]: QUERY_STRING = /auth/index -- 22:14:26.894 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:14:26.924 INFO [7017]: COREGRADE is stopping... -- 22:14:26.925 DEBUG [7017]: Closing database connection -- 22:14:26.925 SQL [7017]: pgsql_close() -- 22:14:27.178 INFO [7017]: COREGRADE is starting... -- 22:14:27.178 INFO [7017]: Version from config: 1.0 -- 22:14:27.178 DEBUG [7017]: Connecting to database... -- 22:14:27.178 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:14:27.178 SQL [7017]: pgsql_db_connect() -- 22:14:27.182 DEBUG [7017]: Database connection successful -- 22:14:27.182 INFO [7017]: _SERVER found -- 22:14:27.182 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 22:14:27.182 INFO [7017]: SERVER_NAME = tokslaw.works.coregrade.com -- 22:14:27.182 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1254892195.1581303194; ci_session=o8ftiel5fuuvubp8701a6hpdqv552bl5 -- 22:14:27.182 INFO [7017]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:14:27.182 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:14:27.193 INFO [7017]: COREGRADE is stopping... -- 22:14:27.193 DEBUG [7017]: Closing database connection -- 22:14:27.193 SQL [7017]: pgsql_close() -- 22:14:27.503 INFO [7159]: COREGRADE is starting... -- 22:14:27.503 INFO [7159]: Version from config: 1.0 -- 22:14:27.503 DEBUG [7159]: Connecting to database... -- 22:14:27.503 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:14:27.503 SQL [7159]: pgsql_db_connect() -- 22:14:27.507 DEBUG [7159]: Database connection successful -- 22:14:27.507 INFO [7159]: _SERVER found -- 22:14:27.507 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 22:14:27.507 INFO [7159]: SERVER_NAME = tokslaw.works.coregrade.com -- 22:14:27.507 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1254892195.1581303194; ci_session=o8ftiel5fuuvubp8701a6hpdqv552bl5 -- 22:14:27.507 INFO [7159]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:14:27.507 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:14:27.519 INFO [7159]: COREGRADE is stopping... -- 22:14:27.519 DEBUG [7159]: Closing database connection -- 22:14:27.519 SQL [7159]: pgsql_close() -- 02:35:35.955 INFO [6383]: COREGRADE is starting... -- 02:35:35.955 INFO [6383]: Version from config: 1.0 -- 02:35:35.955 DEBUG [6383]: Connecting to database... -- 02:35:35.956 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:35:35.956 SQL [6383]: pgsql_db_connect() -- 02:35:35.998 INFO [6383]: COREGRADE is starting... -- 02:35:35.998 INFO [6383]: Version from config: 1.0 -- 02:35:35.998 DEBUG [6383]: Connecting to database... -- 02:35:35.998 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:35:35.998 SQL [6383]: pgsql_db_connect() -- 02:35:36.003 DEBUG [6383]: Database connection successful -- 02:35:36.003 INFO [6383]: _SERVER found -- 02:35:36.003 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 02:35:36.003 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 02:35:36.003 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310 -- 02:35:36.003 INFO [6383]: QUERY_STRING = -- 02:35:36.003 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:35:36.003 INFO [6383]: SystemStatus()09-09-********~************ -- 02:35:36.003 INFO [6383]: long coregrade_api_main(CVars in, CVars &out) -- 02:35:36.003 INFO [6383]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 02:35:36.003 INFO [6383]: account calls -- 02:35:36.003 INFO [6383]: account_calls() -- 02:35:36.003 INFO [6383]: LoginCoreGradeAccount() -- 02:35:36.003 FLOG_MAX [6383]: REQ_STRING(username) -- 02:35:36.003 FLOG_MAX [6383]: REQ_STRING(password) -- 02:35:36.003 FLOG_MAX [6383]: REQ_STRING(sessionid) -- 02:35:36.003 FLOG_MAX [6383]: long load_db_record( CVars &rec, const char * query, ... ) -- 02:35:36.003 SQL [6383]: pgsql_query() -- 02:35:36.003 SQL [6383]: About to run query: -- 02:35:36.003 SQL [6383]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 02:35:36.007 SQL [6383]: Found rows: 1 -- 02:35:36.007 FLOG_MAX [6383]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 02:35:36.007 INFO [6383]: long SessionCheck(long uid, const char *sessionid, int create ) -- 02:35:36.007 SQL [6383]: pgsql_exec() -- 02:35:36.007 SQL [6383]: About to run query: -- 02:35:36.007 SQL [6383]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 02:35:36.008 SQL [6383]: PQcmdTuples: 1 -- 02:35:36.008 SQL [6383]: Affected rows: 1 -- 02:35:36.008 SQL [6383]: pgsql_exec() -- 02:35:36.008 SQL [6383]: About to run query: -- 02:35:36.008 SQL [6383]: DELETE FROM members_session WHERE member_id=5 -- 02:35:36.008 SQL [6383]: PQcmdTuples: 0 -- 02:35:36.008 SQL [6383]: Affected rows: 0 -- 02:35:36.009 SQL [6383]: pgsql_query() -- 02:35:36.009 SQL [6383]: About to run query: -- 02:35:36.009 SQL [6383]: SELECT * FROM members_session WHERE member_id=5 AND session<>'B43B7483E3FB75E8366F7B2377F176A9' -- 02:35:36.009 SQL [6383]: Found rows: 0 -- 02:35:36.009 SQL [6383]: Found rows: 0 -- 02:35:36.009 FLOG_MAX [6383]: long load_db_record( CVars &rec, const char * query, ... ) -- 02:35:36.009 SQL [6383]: pgsql_query() -- 02:35:36.009 SQL [6383]: About to run query: -- 02:35:36.009 SQL [6383]: SELECT * FROM members_session WHERE member_id=5 AND session='B43B7483E3FB75E8366F7B2377F176A9' -- 02:35:36.010 SQL [6383]: Found rows: 0 -- 02:35:36.010 SQL [6383]: Found rows: 0 -- 02:35:36.010 FLOG_MAX [6383]: insert_db_record() -- 02:35:36.010 SQL [6383]: pgsql_exec() -- 02:35:36.010 SQL [6383]: About to run query: -- 02:35:36.010 SQL [6383]: INSERT INTO members_session (member_id,session) VALUES ('5','B43B7483E3FB75E8366F7B2377F176A9') -- 02:35:36.011 SQL [6383]: PQcmdTuples: 1 -- 02:35:36.011 SQL [6383]: Affected rows: 1 -- 02:35:36.012 FLOG_MAX [6383]: SELECT currval('members_session_id_seq') -- 02:35:36.012 SQL [6383]: pgsql_query() -- 02:35:36.012 SQL [6383]: About to run query: -- 02:35:36.012 SQL [6383]: SELECT currval('members_session_id_seq') -- 02:35:36.012 SQL [6383]: Found rows: 1 -- 02:35:36.012 INFO [6383]: CreateDefaultPage() -- 02:35:36.012 FLOG_MAX [6383]: long load_db_record( CVars &rec, const char * query, ... ) -- 02:35:36.012 SQL [6383]: pgsql_query() -- 02:35:36.012 SQL [6383]: About to run query: -- 02:35:36.012 SQL [6383]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 02:35:36.012 SQL [6383]: Found rows: 1 -- 02:35:36.012 FLOG_MAX [6383]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 02:35:36.012 SQL [6383]: pgsql_query() -- 02:35:36.012 SQL [6383]: About to run query: -- 02:35:36.012 SQL [6383]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 02:35:36.013 SQL [6383]: Found rows: 1 -- 02:35:36.013 INFO [6383]: /CreateDefaultPage() -- 02:35:36.013 INFO [6383]: /LoginCoreGradeAccount() -- 02:35:36.013 INFO [6383]: RET: added=2020-02-05 06:47:23.982154 -- 02:35:36.013 INFO [6383]: RET: email=ameye+11@chiefsoft.com -- 02:35:36.013 INFO [6383]: RET: firstname=Olu -- 02:35:36.013 INFO [6383]: RET: id=5 -- 02:35:36.013 INFO [6383]: RET: last_login= -- 02:35:36.013 INFO [6383]: RET: lastname=Amey -- 02:35:36.013 INFO [6383]: RET: loc=192.168.1.13 -- 02:35:36.013 INFO [6383]: RET: member_id=5 -- 02:35:36.013 INFO [6383]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 02:35:36.013 INFO [6383]: RET: phone= -- 02:35:36.013 INFO [6383]: RET: pid= -- 02:35:36.013 INFO [6383]: RET: result=YES I GET TO BACK END -- 02:35:36.013 INFO [6383]: RET: sessionid=B43B7483E3FB75E8366F7B2377F176A9 -- 02:35:36.013 INFO [6383]: RET: status=1 -- 02:35:36.013 INFO [6383]: RET: stauts=OK -- 02:35:36.013 INFO [6383]: RET: username=ameye+11@chiefsoft.com -- 02:35:36.013 INFO [6383]: RET: verified= -- 02:35:36.014 INFO [6383]: COREGRADE is stopping... -- 02:35:36.014 DEBUG [6383]: Closing database connection -- 02:35:36.014 SQL [6383]: pgsql_close() -- 02:35:35.961 DEBUG [6383]: Database connection successful -- 02:35:35.961 INFO [6383]: _SERVER found -- 02:35:35.961 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 02:35:35.961 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 02:35:35.961 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310 -- 02:35:35.961 INFO [6383]: QUERY_STRING = /auth -- 02:35:35.961 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:35:36.015 INFO [6383]: COREGRADE is stopping... -- 02:35:36.015 DEBUG [6383]: Closing database connection -- 02:35:36.015 SQL [6383]: pgsql_close() -- 02:35:36.036 INFO [6383]: COREGRADE is starting... -- 02:35:36.036 INFO [6383]: Version from config: 1.0 -- 02:35:36.036 DEBUG [6383]: Connecting to database... -- 02:35:36.036 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:35:36.036 SQL [6383]: pgsql_db_connect() -- 02:35:36.040 DEBUG [6383]: Database connection successful -- 02:35:36.040 INFO [6383]: _SERVER found -- 02:35:36.040 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 02:35:36.040 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 02:35:36.040 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=kt2ut1e6vevo5aod4hb5sfmtc0ni9r5q -- 02:35:36.040 INFO [6383]: QUERY_STRING = /member/index -- 02:35:36.040 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:35:36.076 INFO [6383]: COREGRADE is stopping... -- 02:35:36.076 DEBUG [6383]: Closing database connection -- 02:35:36.076 SQL [6383]: pgsql_close() -- 02:35:36.471 INFO [6383]: COREGRADE is starting... -- 02:35:36.472 INFO [6383]: Version from config: 1.0 -- 02:35:36.472 DEBUG [6383]: Connecting to database... -- 02:35:36.472 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:35:36.472 SQL [6383]: pgsql_db_connect() -- 02:35:36.476 DEBUG [6383]: Database connection successful -- 02:35:36.476 INFO [6383]: _SERVER found -- 02:35:36.476 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 02:35:36.476 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 02:35:36.476 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=kt2ut1e6vevo5aod4hb5sfmtc0ni9r5q -- 02:35:36.476 INFO [6383]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 02:35:36.476 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:35:36.487 INFO [6383]: COREGRADE is stopping... -- 02:35:36.487 DEBUG [6383]: Closing database connection -- 02:35:36.487 SQL [6383]: pgsql_close() -- 02:35:36.511 INFO [6383]: COREGRADE is starting... -- 02:35:36.511 INFO [6383]: Version from config: 1.0 -- 02:35:36.511 DEBUG [6383]: Connecting to database... -- 02:35:36.511 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:35:36.511 SQL [6383]: pgsql_db_connect() -- 02:35:36.516 DEBUG [6383]: Database connection successful -- 02:35:36.516 INFO [6383]: _SERVER found -- 02:35:36.516 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 02:35:36.516 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 02:35:36.516 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=kt2ut1e6vevo5aod4hb5sfmtc0ni9r5q -- 02:35:36.516 INFO [6383]: QUERY_STRING = /app-assets/data/locales/en.json -- 02:35:36.516 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:35:36.527 INFO [6383]: COREGRADE is stopping... -- 02:35:36.527 DEBUG [6383]: Closing database connection -- 02:35:36.527 SQL [6383]: pgsql_close() -- 02:35:40.367 INFO [6383]: COREGRADE is starting... -- 02:35:40.367 INFO [6383]: Version from config: 1.0 -- 02:35:40.367 DEBUG [6383]: Connecting to database... -- 02:35:40.367 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:35:40.367 SQL [6383]: pgsql_db_connect() -- 02:35:40.371 DEBUG [6383]: Database connection successful -- 02:35:40.371 INFO [6383]: _SERVER found -- 02:35:40.371 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 02:35:40.371 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 02:35:40.371 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=kt2ut1e6vevo5aod4hb5sfmtc0ni9r5q -- 02:35:40.371 INFO [6383]: QUERY_STRING = /member/page -- 02:35:40.371 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:35:40.409 INFO [6383]: COREGRADE is stopping... -- 02:35:40.409 DEBUG [6383]: Closing database connection -- 02:35:40.409 SQL [6383]: pgsql_close() -- 02:35:40.664 INFO [6383]: COREGRADE is starting... -- 02:35:40.665 INFO [6383]: Version from config: 1.0 -- 02:35:40.665 DEBUG [6383]: Connecting to database... -- 02:35:40.665 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:35:40.665 SQL [6383]: pgsql_db_connect() -- 02:35:40.669 DEBUG [6383]: Database connection successful -- 02:35:40.669 INFO [6383]: _SERVER found -- 02:35:40.669 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 02:35:40.669 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 02:35:40.669 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=kt2ut1e6vevo5aod4hb5sfmtc0ni9r5q -- 02:35:40.669 INFO [6383]: QUERY_STRING = /app-assets/data/locales/en.json -- 02:35:40.669 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:35:40.680 INFO [6383]: COREGRADE is stopping... -- 02:35:40.680 DEBUG [6383]: Closing database connection -- 02:35:40.680 SQL [6383]: pgsql_close() -- 02:37:33.986 INFO [6384]: COREGRADE is starting... -- 02:37:33.987 INFO [6384]: Version from config: 1.0 -- 02:37:33.987 DEBUG [6384]: Connecting to database... -- 02:37:33.987 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:37:33.987 SQL [6384]: pgsql_db_connect() -- 02:37:33.991 DEBUG [6384]: Database connection successful -- 02:37:33.991 INFO [6384]: _SERVER found -- 02:37:33.991 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 02:37:33.991 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 02:37:33.991 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=kt2ut1e6vevo5aod4hb5sfmtc0ni9r5q -- 02:37:33.991 INFO [6384]: QUERY_STRING = /member -- 02:37:33.991 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:37:34.029 INFO [6384]: COREGRADE is stopping... -- 02:37:34.029 DEBUG [6384]: Closing database connection -- 02:37:34.029 SQL [6384]: pgsql_close() -- 02:37:34.242 INFO [6384]: COREGRADE is starting... -- 02:37:34.242 INFO [6384]: Version from config: 1.0 -- 02:37:34.242 DEBUG [6384]: Connecting to database... -- 02:37:34.242 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:37:34.242 SQL [6384]: pgsql_db_connect() -- 02:37:34.246 DEBUG [6384]: Database connection successful -- 02:37:34.246 INFO [6384]: _SERVER found -- 02:37:34.246 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 02:37:34.246 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 02:37:34.246 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=kt2ut1e6vevo5aod4hb5sfmtc0ni9r5q -- 02:37:34.246 INFO [6384]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 02:37:34.246 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:37:34.257 INFO [6384]: COREGRADE is stopping... -- 02:37:34.257 DEBUG [6384]: Closing database connection -- 02:37:34.257 SQL [6384]: pgsql_close() -- 02:37:34.266 INFO [6382]: COREGRADE is starting... -- 02:37:34.266 INFO [6382]: Version from config: 1.0 -- 02:37:34.266 DEBUG [6382]: Connecting to database... -- 02:37:34.266 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:37:34.266 SQL [6382]: pgsql_db_connect() -- 02:37:34.270 DEBUG [6382]: Database connection successful -- 02:37:34.270 INFO [6382]: _SERVER found -- 02:37:34.270 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 02:37:34.270 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 02:37:34.270 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=kt2ut1e6vevo5aod4hb5sfmtc0ni9r5q -- 02:37:34.270 INFO [6382]: QUERY_STRING = /app-assets/data/locales/en.json -- 02:37:34.270 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:37:34.283 INFO [6382]: COREGRADE is stopping... -- 02:37:34.283 DEBUG [6382]: Closing database connection -- 02:37:34.283 SQL [6382]: pgsql_close() -- 03:51:02.385 INFO [13593]: COREGRADE is starting... -- 03:51:02.385 INFO [13593]: Version from config: 1.0 -- 03:51:02.385 DEBUG [13593]: Connecting to database... -- 03:51:02.385 DEBUG [13593]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:51:02.385 SQL [13593]: pgsql_db_connect() -- 03:51:02.395 INFO [6385]: COREGRADE is starting... -- 03:51:02.395 INFO [6385]: Version from config: 1.0 -- 03:51:02.395 DEBUG [6385]: Connecting to database... -- 03:51:02.395 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:51:02.395 SQL [6385]: pgsql_db_connect() -- 03:51:02.399 DEBUG [6385]: Database connection successful -- 03:51:02.399 INFO [6385]: _SERVER found -- 03:51:02.399 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 03:51:02.399 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 03:51:02.399 INFO [6385]: QUERY_STRING = -- 03:51:02.399 INFO [6385]: HTTP_X_FORWARDED_FOR = 124.156.55.202 -- 03:51:02.433 INFO [6385]: COREGRADE is stopping... -- 03:51:02.433 DEBUG [6385]: Closing database connection -- 03:51:02.433 SQL [6385]: pgsql_close() -- 03:51:02.390 DEBUG [13593]: Database connection successful -- 03:51:02.390 INFO [13593]: _SERVER found -- 03:51:02.390 INFO [13593]: REMOTE_ADDR = 192.168.1.13 -- 03:51:02.390 INFO [13593]: SERVER_NAME = oameye.works.coregrade.com -- 03:51:02.390 INFO [13593]: QUERY_STRING = -- 03:51:02.390 INFO [13593]: HTTP_X_FORWARDED_FOR = 124.156.55.202 -- 03:51:02.438 INFO [13593]: COREGRADE is stopping... -- 03:51:02.438 DEBUG [13593]: Closing database connection -- 03:51:02.438 SQL [13593]: pgsql_close() -- 03:56:14.143 INFO [6381]: COREGRADE is starting... -- 03:56:14.144 INFO [6381]: Version from config: 1.0 -- 03:56:14.144 DEBUG [6381]: Connecting to database... -- 03:56:14.144 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:56:14.144 SQL [6381]: pgsql_db_connect() -- 03:56:14.148 DEBUG [6381]: Database connection successful -- 03:56:14.148 INFO [6381]: _SERVER found -- 03:56:14.148 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 03:56:14.148 INFO [6381]: SERVER_NAME = oameye.works.coregrade.com -- 03:56:14.148 INFO [6381]: QUERY_STRING = -- 03:56:14.148 INFO [6381]: HTTP_X_FORWARDED_FOR = 128.14.134.134 -- 03:56:14.181 INFO [6381]: COREGRADE is stopping... -- 03:56:14.181 DEBUG [6381]: Closing database connection -- 03:56:14.181 SQL [6381]: pgsql_close() -- 06:36:18.010 INFO [6405]: COREGRADE is starting... -- 06:36:18.011 INFO [6405]: Version from config: 1.0 -- 06:36:18.011 DEBUG [6405]: Connecting to database... -- 06:36:18.011 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:36:18.011 SQL [6405]: pgsql_db_connect() -- 06:36:18.015 DEBUG [6405]: Database connection successful -- 06:36:18.015 INFO [6405]: _SERVER found -- 06:36:18.015 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 06:36:18.015 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 06:36:18.015 INFO [6405]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 06:36:18.015 INFO [6405]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 06:36:18.029 INFO [6405]: COREGRADE is stopping... -- 06:36:18.030 DEBUG [6405]: Closing database connection -- 06:36:18.030 SQL [6405]: pgsql_close() -- 07:18:54.410 INFO [13483]: COREGRADE is starting... -- 07:18:54.410 INFO [13483]: Version from config: 1.0 -- 07:18:54.410 DEBUG [13483]: Connecting to database... -- 07:18:54.410 DEBUG [13483]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:18:54.410 SQL [13483]: pgsql_db_connect() -- 07:18:54.416 DEBUG [13483]: Database connection successful -- 07:18:54.416 INFO [13483]: _SERVER found -- 07:18:54.416 INFO [13483]: REMOTE_ADDR = 192.168.1.13 -- 07:18:54.416 INFO [13483]: SERVER_NAME = oameye.works.coregrade.com -- 07:18:54.416 INFO [13483]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310 -- 07:18:54.416 INFO [13483]: QUERY_STRING = /auth -- 07:18:54.416 INFO [13483]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:18:54.459 INFO [13483]: COREGRADE is stopping... -- 07:18:54.459 DEBUG [13483]: Closing database connection -- 07:18:54.459 SQL [13483]: pgsql_close() -- 07:18:54.618 INFO [13483]: COREGRADE is starting... -- 07:18:54.618 INFO [13483]: Version from config: 1.0 -- 07:18:54.618 DEBUG [13483]: Connecting to database... -- 07:18:54.618 DEBUG [13483]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:18:54.618 SQL [13483]: pgsql_db_connect() -- 07:18:54.623 DEBUG [13483]: Database connection successful -- 07:18:54.623 INFO [13483]: _SERVER found -- 07:18:54.623 INFO [13483]: REMOTE_ADDR = 192.168.1.13 -- 07:18:54.623 INFO [13483]: SERVER_NAME = oameye.works.coregrade.com -- 07:18:54.623 INFO [13483]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=6t3vdhmjbjf1sqkn83cla6bn8u4c7su5 -- 07:18:54.623 INFO [13483]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 07:18:54.623 INFO [13483]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:18:54.634 INFO [13483]: COREGRADE is stopping... -- 07:18:54.635 DEBUG [13483]: Closing database connection -- 07:18:54.635 SQL [13483]: pgsql_close() -- 07:18:54.636 INFO [7159]: COREGRADE is starting... -- 07:18:54.636 INFO [7159]: Version from config: 1.0 -- 07:18:54.636 DEBUG [7159]: Connecting to database... -- 07:18:54.636 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:18:54.636 SQL [7159]: pgsql_db_connect() -- 07:18:54.640 DEBUG [7159]: Database connection successful -- 07:18:54.640 INFO [7159]: _SERVER found -- 07:18:54.640 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 07:18:54.640 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 07:18:54.640 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=6t3vdhmjbjf1sqkn83cla6bn8u4c7su5 -- 07:18:54.640 INFO [7159]: QUERY_STRING = /app-assets/data/locales/en.json -- 07:18:54.640 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:18:54.653 INFO [7159]: COREGRADE is stopping... -- 07:18:54.653 DEBUG [7159]: Closing database connection -- 07:18:54.653 SQL [7159]: pgsql_close() -- 07:34:00.635 INFO [7017]: COREGRADE is starting... -- 07:34:00.635 INFO [7017]: Version from config: 1.0 -- 07:34:00.635 DEBUG [7017]: Connecting to database... -- 07:34:00.635 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:34:00.636 SQL [7017]: pgsql_db_connect() -- 07:34:00.640 DEBUG [7017]: Database connection successful -- 07:34:00.640 INFO [7017]: _SERVER found -- 07:34:00.640 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 07:34:00.640 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 07:34:00.640 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=6t3vdhmjbjf1sqkn83cla6bn8u4c7su5 -- 07:34:00.640 INFO [7017]: QUERY_STRING = /auth -- 07:34:00.640 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:34:00.677 INFO [7017]: COREGRADE is stopping... -- 07:34:00.677 DEBUG [7017]: Closing database connection -- 07:34:00.677 SQL [7017]: pgsql_close() -- 07:34:00.822 INFO [6383]: COREGRADE is starting... -- 07:34:00.822 INFO [6383]: Version from config: 1.0 -- 07:34:00.822 DEBUG [6383]: Connecting to database... -- 07:34:00.822 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:34:00.822 SQL [6383]: pgsql_db_connect() -- 07:34:00.826 DEBUG [6383]: Database connection successful -- 07:34:00.826 INFO [6383]: _SERVER found -- 07:34:00.826 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 07:34:00.826 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 07:34:00.826 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=a57g2bc6111km3hhkehfhn9p8i2u3cin -- 07:34:00.826 INFO [6383]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 07:34:00.826 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:34:00.838 INFO [6383]: COREGRADE is stopping... -- 07:34:00.838 DEBUG [6383]: Closing database connection -- 07:34:00.838 SQL [6383]: pgsql_close() -- 07:34:00.893 INFO [6383]: COREGRADE is starting... -- 07:34:00.893 INFO [6383]: Version from config: 1.0 -- 07:34:00.893 DEBUG [6383]: Connecting to database... -- 07:34:00.893 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:34:00.893 SQL [6383]: pgsql_db_connect() -- 07:34:00.897 DEBUG [6383]: Database connection successful -- 07:34:00.897 INFO [6383]: _SERVER found -- 07:34:00.897 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 07:34:00.897 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 07:34:00.897 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=a57g2bc6111km3hhkehfhn9p8i2u3cin -- 07:34:00.897 INFO [6383]: QUERY_STRING = /app-assets/data/locales/en.json -- 07:34:00.897 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:34:00.908 INFO [6383]: COREGRADE is stopping... -- 07:34:00.908 DEBUG [6383]: Closing database connection -- 07:34:00.908 SQL [6383]: pgsql_close() -- 08:37:31.393 INFO [6384]: COREGRADE is starting... -- 08:37:31.394 INFO [6384]: Version from config: 1.0 -- 08:37:31.394 DEBUG [6384]: Connecting to database... -- 08:37:31.394 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:31.394 SQL [6384]: pgsql_db_connect() -- 08:37:31.398 DEBUG [6384]: Database connection successful -- 08:37:31.398 INFO [6384]: _SERVER found -- 08:37:31.398 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 08:37:31.398 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:31.398 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911 -- 08:37:31.398 INFO [6384]: QUERY_STRING = -- 08:37:31.398 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:31.435 INFO [6384]: COREGRADE is stopping... -- 08:37:31.435 DEBUG [6384]: Closing database connection -- 08:37:31.435 SQL [6384]: pgsql_close() -- 08:37:31.771 INFO [6384]: COREGRADE is starting... -- 08:37:31.771 INFO [6384]: Version from config: 1.0 -- 08:37:31.771 DEBUG [6384]: Connecting to database... -- 08:37:31.771 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:31.771 SQL [6384]: pgsql_db_connect() -- 08:37:31.780 INFO [6382]: COREGRADE is starting... -- 08:37:31.780 INFO [6382]: Version from config: 1.0 -- 08:37:31.780 DEBUG [6382]: Connecting to database... -- 08:37:31.780 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:31.780 SQL [6382]: pgsql_db_connect() -- 08:37:31.776 DEBUG [6384]: Database connection successful -- 08:37:31.776 INFO [6384]: _SERVER found -- 08:37:31.776 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 08:37:31.776 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:31.776 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=6o8p6a6bclc6ofgi7sopiivv7caii1bl; _gid=GA1.2.548527475.1581341852; _gat_gtag_UA_54829827_2=1 -- 08:37:31.776 INFO [6384]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 08:37:31.776 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:31.788 INFO [6384]: COREGRADE is stopping... -- 08:37:31.788 DEBUG [6384]: Closing database connection -- 08:37:31.788 SQL [6384]: pgsql_close() -- 08:37:31.785 DEBUG [6382]: Database connection successful -- 08:37:31.785 INFO [6382]: _SERVER found -- 08:37:31.785 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 08:37:31.785 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:31.785 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=6o8p6a6bclc6ofgi7sopiivv7caii1bl; _gid=GA1.2.548527475.1581341852; _gat_gtag_UA_54829827_2=1 -- 08:37:31.785 INFO [6382]: QUERY_STRING = /assets/img/footer_1.jpg -- 08:37:31.785 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:31.798 INFO [6382]: COREGRADE is stopping... -- 08:37:31.798 DEBUG [6382]: Closing database connection -- 08:37:31.798 SQL [6382]: pgsql_close() -- 08:37:35.106 INFO [6382]: COREGRADE is starting... -- 08:37:35.107 INFO [6382]: Version from config: 1.0 -- 08:37:35.107 DEBUG [6382]: Connecting to database... -- 08:37:35.107 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:35.107 SQL [6382]: pgsql_db_connect() -- 08:37:35.108 INFO [6384]: COREGRADE is starting... -- 08:37:35.108 INFO [6384]: Version from config: 1.0 -- 08:37:35.108 DEBUG [6384]: Connecting to database... -- 08:37:35.108 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:35.108 SQL [6384]: pgsql_db_connect() -- 08:37:35.112 DEBUG [6384]: Database connection successful -- 08:37:35.112 INFO [6384]: _SERVER found -- 08:37:35.112 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 08:37:35.112 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:35.112 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=6o8p6a6bclc6ofgi7sopiivv7caii1bl; _gid=GA1.2.548527475.1581341852; _gat_gtag_UA_54829827_2=1 -- 08:37:35.112 INFO [6384]: QUERY_STRING = /auth -- 08:37:35.112 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:35.143 INFO [6384]: COREGRADE is stopping... -- 08:37:35.143 DEBUG [6384]: Closing database connection -- 08:37:35.143 SQL [6384]: pgsql_close() -- 08:37:35.111 DEBUG [6382]: Database connection successful -- 08:37:35.111 INFO [6382]: _SERVER found -- 08:37:35.111 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 08:37:35.111 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:35.111 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=6o8p6a6bclc6ofgi7sopiivv7caii1bl; _gid=GA1.2.548527475.1581341852; _gat_gtag_UA_54829827_2=1 -- 08:37:35.111 INFO [6382]: QUERY_STRING = /welcome/viewLogin -- 08:37:35.111 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:35.145 INFO [6382]: COREGRADE is stopping... -- 08:37:35.145 DEBUG [6382]: Closing database connection -- 08:37:35.145 SQL [6382]: pgsql_close() -- 08:37:35.433 INFO [6382]: COREGRADE is starting... -- 08:37:35.433 INFO [6382]: Version from config: 1.0 -- 08:37:35.433 DEBUG [6382]: Connecting to database... -- 08:37:35.433 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:35.433 SQL [6382]: pgsql_db_connect() -- 08:37:35.438 DEBUG [6382]: Database connection successful -- 08:37:35.438 INFO [6382]: _SERVER found -- 08:37:35.438 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 08:37:35.438 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:35.438 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=6o8p6a6bclc6ofgi7sopiivv7caii1bl; _gid=GA1.2.548527475.1581341852; _gat_gtag_UA_54829827_2=1 -- 08:37:35.438 INFO [6382]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 08:37:35.438 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:35.449 INFO [6382]: COREGRADE is stopping... -- 08:37:35.449 DEBUG [6382]: Closing database connection -- 08:37:35.449 SQL [6382]: pgsql_close() -- 08:37:35.452 INFO [6382]: COREGRADE is starting... -- 08:37:35.452 INFO [6382]: Version from config: 1.0 -- 08:37:35.452 DEBUG [6382]: Connecting to database... -- 08:37:35.452 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:35.452 SQL [6382]: pgsql_db_connect() -- 08:37:35.456 DEBUG [6382]: Database connection successful -- 08:37:35.456 INFO [6382]: _SERVER found -- 08:37:35.456 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 08:37:35.456 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:35.456 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=6o8p6a6bclc6ofgi7sopiivv7caii1bl; _gid=GA1.2.548527475.1581341852; _gat_gtag_UA_54829827_2=1 -- 08:37:35.456 INFO [6382]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:37:35.456 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:35.467 INFO [6382]: COREGRADE is stopping... -- 08:37:35.467 DEBUG [6382]: Closing database connection -- 08:37:35.467 SQL [6382]: pgsql_close() -- 08:37:56.439 INFO [13593]: COREGRADE is starting... -- 08:37:56.440 INFO [13593]: Version from config: 1.0 -- 08:37:56.440 DEBUG [13593]: Connecting to database... -- 08:37:56.440 DEBUG [13593]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:56.440 SQL [13593]: pgsql_db_connect() -- 08:37:56.477 INFO [13593]: COREGRADE is starting... -- 08:37:56.477 INFO [13593]: Version from config: 1.0 -- 08:37:56.477 DEBUG [13593]: Connecting to database... -- 08:37:56.477 DEBUG [13593]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:56.477 SQL [13593]: pgsql_db_connect() -- 08:37:56.481 DEBUG [13593]: Database connection successful -- 08:37:56.481 INFO [13593]: _SERVER found -- 08:37:56.481 INFO [13593]: REMOTE_ADDR = 192.168.1.13 -- 08:37:56.481 INFO [13593]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:56.481 INFO [13593]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=6o8p6a6bclc6ofgi7sopiivv7caii1bl; _gid=GA1.2.548527475.1581341852; _gat_gtag_UA_54829827_2=1 -- 08:37:56.481 INFO [13593]: QUERY_STRING = -- 08:37:56.481 INFO [13593]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:56.481 INFO [13593]: SystemStatus()09-09-********~************ -- 08:37:56.481 INFO [13593]: long coregrade_api_main(CVars in, CVars &out) -- 08:37:56.481 INFO [13593]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 08:37:56.481 INFO [13593]: account calls -- 08:37:56.481 INFO [13593]: account_calls() -- 08:37:56.481 INFO [13593]: LoginCoreGradeAccount() -- 08:37:56.481 FLOG_MAX [13593]: REQ_STRING(username) -- 08:37:56.481 FLOG_MAX [13593]: REQ_STRING(password) -- 08:37:56.481 FLOG_MAX [13593]: REQ_STRING(sessionid) -- 08:37:56.481 FLOG_MAX [13593]: long load_db_record( CVars &rec, const char * query, ... ) -- 08:37:56.481 SQL [13593]: pgsql_query() -- 08:37:56.481 SQL [13593]: About to run query: -- 08:37:56.481 SQL [13593]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 08:37:56.485 SQL [13593]: Found rows: 1 -- 08:37:56.485 FLOG_MAX [13593]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 08:37:56.485 INFO [13593]: long SessionCheck(long uid, const char *sessionid, int create ) -- 08:37:56.485 SQL [13593]: pgsql_exec() -- 08:37:56.485 SQL [13593]: About to run query: -- 08:37:56.485 SQL [13593]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 08:37:56.487 SQL [13593]: PQcmdTuples: 1 -- 08:37:56.487 SQL [13593]: Affected rows: 1 -- 08:37:56.487 SQL [13593]: pgsql_exec() -- 08:37:56.487 SQL [13593]: About to run query: -- 08:37:56.487 SQL [13593]: DELETE FROM members_session WHERE member_id=5 -- 08:37:56.487 SQL [13593]: PQcmdTuples: 0 -- 08:37:56.487 SQL [13593]: Affected rows: 0 -- 08:37:56.487 SQL [13593]: pgsql_query() -- 08:37:56.487 SQL [13593]: About to run query: -- 08:37:56.487 SQL [13593]: SELECT * FROM members_session WHERE member_id=5 AND session<>'2F1EAFA17E806268E4B5A937B08E0E38' -- 08:37:56.488 SQL [13593]: Found rows: 0 -- 08:37:56.488 SQL [13593]: Found rows: 0 -- 08:37:56.488 FLOG_MAX [13593]: long load_db_record( CVars &rec, const char * query, ... ) -- 08:37:56.488 SQL [13593]: pgsql_query() -- 08:37:56.488 SQL [13593]: About to run query: -- 08:37:56.488 SQL [13593]: SELECT * FROM members_session WHERE member_id=5 AND session='2F1EAFA17E806268E4B5A937B08E0E38' -- 08:37:56.488 SQL [13593]: Found rows: 0 -- 08:37:56.488 SQL [13593]: Found rows: 0 -- 08:37:56.488 FLOG_MAX [13593]: insert_db_record() -- 08:37:56.488 SQL [13593]: pgsql_exec() -- 08:37:56.488 SQL [13593]: About to run query: -- 08:37:56.488 SQL [13593]: INSERT INTO members_session (member_id,session) VALUES ('5','2F1EAFA17E806268E4B5A937B08E0E38') -- 08:37:56.490 SQL [13593]: PQcmdTuples: 1 -- 08:37:56.490 SQL [13593]: Affected rows: 1 -- 08:37:56.490 FLOG_MAX [13593]: SELECT currval('members_session_id_seq') -- 08:37:56.490 SQL [13593]: pgsql_query() -- 08:37:56.490 SQL [13593]: About to run query: -- 08:37:56.490 SQL [13593]: SELECT currval('members_session_id_seq') -- 08:37:56.490 SQL [13593]: Found rows: 1 -- 08:37:56.490 INFO [13593]: CreateDefaultPage() -- 08:37:56.490 FLOG_MAX [13593]: long load_db_record( CVars &rec, const char * query, ... ) -- 08:37:56.490 SQL [13593]: pgsql_query() -- 08:37:56.490 SQL [13593]: About to run query: -- 08:37:56.490 SQL [13593]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 08:37:56.491 SQL [13593]: Found rows: 1 -- 08:37:56.491 FLOG_MAX [13593]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 08:37:56.491 SQL [13593]: pgsql_query() -- 08:37:56.491 SQL [13593]: About to run query: -- 08:37:56.491 SQL [13593]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 08:37:56.491 SQL [13593]: Found rows: 1 -- 08:37:56.491 INFO [13593]: /CreateDefaultPage() -- 08:37:56.491 INFO [13593]: /LoginCoreGradeAccount() -- 08:37:56.491 INFO [13593]: RET: added=2020-02-05 06:47:23.982154 -- 08:37:56.491 INFO [13593]: RET: email=ameye+11@chiefsoft.com -- 08:37:56.491 INFO [13593]: RET: firstname=Olu -- 08:37:56.491 INFO [13593]: RET: id=5 -- 08:37:56.491 INFO [13593]: RET: last_login= -- 08:37:56.491 INFO [13593]: RET: lastname=Amey -- 08:37:56.491 INFO [13593]: RET: loc=192.168.1.13 -- 08:37:56.491 INFO [13593]: RET: member_id=5 -- 08:37:56.491 INFO [13593]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 08:37:56.491 INFO [13593]: RET: phone= -- 08:37:56.491 INFO [13593]: RET: pid= -- 08:37:56.491 INFO [13593]: RET: result=YES I GET TO BACK END -- 08:37:56.491 INFO [13593]: RET: sessionid=2F1EAFA17E806268E4B5A937B08E0E38 -- 08:37:56.491 INFO [13593]: RET: status=1 -- 08:37:56.491 INFO [13593]: RET: stauts=OK -- 08:37:56.491 INFO [13593]: RET: username=ameye+11@chiefsoft.com -- 08:37:56.491 INFO [13593]: RET: verified= -- 08:37:56.493 INFO [13593]: COREGRADE is stopping... -- 08:37:56.493 DEBUG [13593]: Closing database connection -- 08:37:56.493 SQL [13593]: pgsql_close() -- 08:37:56.444 DEBUG [13593]: Database connection successful -- 08:37:56.444 INFO [13593]: _SERVER found -- 08:37:56.444 INFO [13593]: REMOTE_ADDR = 192.168.1.13 -- 08:37:56.444 INFO [13593]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:56.444 INFO [13593]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=6o8p6a6bclc6ofgi7sopiivv7caii1bl; _gid=GA1.2.548527475.1581341852; _gat_gtag_UA_54829827_2=1 -- 08:37:56.444 INFO [13593]: QUERY_STRING = /auth -- 08:37:56.444 INFO [13593]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:56.493 INFO [13593]: COREGRADE is stopping... -- 08:37:56.493 DEBUG [13593]: Closing database connection -- 08:37:56.493 SQL [13593]: pgsql_close() -- 08:37:56.510 INFO [13593]: COREGRADE is starting... -- 08:37:56.510 INFO [13593]: Version from config: 1.0 -- 08:37:56.510 DEBUG [13593]: Connecting to database... -- 08:37:56.510 DEBUG [13593]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:56.510 SQL [13593]: pgsql_db_connect() -- 08:37:56.514 DEBUG [13593]: Database connection successful -- 08:37:56.514 INFO [13593]: _SERVER found -- 08:37:56.514 INFO [13593]: REMOTE_ADDR = 192.168.1.13 -- 08:37:56.514 INFO [13593]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:56.514 INFO [13593]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=6o8p6a6bclc6ofgi7sopiivv7caii1bl; _gid=GA1.2.548527475.1581341852; _gat_gtag_UA_54829827_2=1 -- 08:37:56.514 INFO [13593]: QUERY_STRING = /member/index -- 08:37:56.514 INFO [13593]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:56.550 INFO [13593]: COREGRADE is stopping... -- 08:37:56.550 DEBUG [13593]: Closing database connection -- 08:37:56.550 SQL [13593]: pgsql_close() -- 08:37:56.734 INFO [6405]: COREGRADE is starting... -- 08:37:56.734 INFO [6405]: Version from config: 1.0 -- 08:37:56.734 DEBUG [6405]: Connecting to database... -- 08:37:56.735 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:56.735 SQL [6405]: pgsql_db_connect() -- 08:37:56.739 DEBUG [6405]: Database connection successful -- 08:37:56.739 INFO [6405]: _SERVER found -- 08:37:56.739 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 08:37:56.739 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:56.739 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=6o8p6a6bclc6ofgi7sopiivv7caii1bl; _gid=GA1.2.548527475.1581341852; _gat_gtag_UA_54829827_2=1 -- 08:37:56.739 INFO [6405]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 08:37:56.739 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:56.751 INFO [6405]: COREGRADE is stopping... -- 08:37:56.751 DEBUG [6405]: Closing database connection -- 08:37:56.751 SQL [6405]: pgsql_close() -- 08:37:57.004 INFO [13593]: COREGRADE is starting... -- 08:37:57.005 INFO [13593]: Version from config: 1.0 -- 08:37:57.005 DEBUG [13593]: Connecting to database... -- 08:37:57.005 DEBUG [13593]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:57.005 SQL [13593]: pgsql_db_connect() -- 08:37:57.009 DEBUG [13593]: Database connection successful -- 08:37:57.009 INFO [13593]: _SERVER found -- 08:37:57.009 INFO [13593]: REMOTE_ADDR = 192.168.1.13 -- 08:37:57.009 INFO [13593]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:57.009 INFO [13593]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=6o8p6a6bclc6ofgi7sopiivv7caii1bl; _gid=GA1.2.548527475.1581341852; _gat_gtag_UA_54829827_2=1 -- 08:37:57.009 INFO [13593]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:37:57.009 INFO [13593]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:57.020 INFO [13593]: COREGRADE is stopping... -- 08:37:57.020 DEBUG [13593]: Closing database connection -- 08:37:57.020 SQL [13593]: pgsql_close() -- 08:37:58.229 INFO [13593]: COREGRADE is starting... -- 08:37:58.229 INFO [13593]: Version from config: 1.0 -- 08:37:58.229 DEBUG [13593]: Connecting to database... -- 08:37:58.229 DEBUG [13593]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:58.229 SQL [13593]: pgsql_db_connect() -- 08:37:58.233 DEBUG [13593]: Database connection successful -- 08:37:58.233 INFO [13593]: _SERVER found -- 08:37:58.233 INFO [13593]: REMOTE_ADDR = 192.168.1.13 -- 08:37:58.233 INFO [13593]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:58.233 INFO [13593]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=6o8p6a6bclc6ofgi7sopiivv7caii1bl; _gid=GA1.2.548527475.1581341852; _gat_gtag_UA_54829827_2=1 -- 08:37:58.234 INFO [13593]: QUERY_STRING = /member/page -- 08:37:58.234 INFO [13593]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:58.271 INFO [13593]: COREGRADE is stopping... -- 08:37:58.271 DEBUG [13593]: Closing database connection -- 08:37:58.271 SQL [13593]: pgsql_close() -- 08:37:58.354 INFO [13593]: COREGRADE is starting... -- 08:37:58.354 INFO [13593]: Version from config: 1.0 -- 08:37:58.354 DEBUG [13593]: Connecting to database... -- 08:37:58.354 DEBUG [13593]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:58.354 SQL [13593]: pgsql_db_connect() -- 08:37:58.358 DEBUG [13593]: Database connection successful -- 08:37:58.358 INFO [13593]: _SERVER found -- 08:37:58.358 INFO [13593]: REMOTE_ADDR = 192.168.1.13 -- 08:37:58.358 INFO [13593]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:58.358 INFO [13593]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=6o8p6a6bclc6ofgi7sopiivv7caii1bl; _gid=GA1.2.548527475.1581341852; _gat_gtag_UA_54829827_2=1 -- 08:37:58.358 INFO [13593]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 08:37:58.358 INFO [13593]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:58.369 INFO [13593]: COREGRADE is stopping... -- 08:37:58.369 DEBUG [13593]: Closing database connection -- 08:37:58.369 SQL [13593]: pgsql_close() -- 08:37:58.423 INFO [13593]: COREGRADE is starting... -- 08:37:58.423 INFO [13593]: Version from config: 1.0 -- 08:37:58.423 DEBUG [13593]: Connecting to database... -- 08:37:58.423 DEBUG [13593]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:58.423 SQL [13593]: pgsql_db_connect() -- 08:37:58.427 DEBUG [13593]: Database connection successful -- 08:37:58.427 INFO [13593]: _SERVER found -- 08:37:58.427 INFO [13593]: REMOTE_ADDR = 192.168.1.13 -- 08:37:58.427 INFO [13593]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:58.427 INFO [13593]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=6o8p6a6bclc6ofgi7sopiivv7caii1bl; _gid=GA1.2.548527475.1581341852; _gat_gtag_UA_54829827_2=1 -- 08:37:58.427 INFO [13593]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:37:58.427 INFO [13593]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:58.438 INFO [13593]: COREGRADE is stopping... -- 08:37:58.438 DEBUG [13593]: Closing database connection -- 08:37:58.438 SQL [13593]: pgsql_close() -- 08:38:16.197 INFO [7017]: COREGRADE is starting... -- 08:38:16.198 INFO [7017]: Version from config: 1.0 -- 08:38:16.198 DEBUG [7017]: Connecting to database... -- 08:38:16.198 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:38:16.198 SQL [7017]: pgsql_db_connect() -- 08:38:16.202 DEBUG [7017]: Database connection successful -- 08:38:16.202 INFO [7017]: _SERVER found -- 08:38:16.202 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 08:38:16.202 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 08:38:16.202 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=6o8p6a6bclc6ofgi7sopiivv7caii1bl; _gid=GA1.2.548527475.1581341852; _gat_gtag_UA_54829827_2=1 -- 08:38:16.202 INFO [7017]: QUERY_STRING = /member/viewCardAddAction -- 08:38:16.202 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:38:16.234 INFO [7017]: COREGRADE is stopping... -- 08:38:16.234 DEBUG [7017]: Closing database connection -- 08:38:16.234 SQL [7017]: pgsql_close() -- 08:38:59.417 INFO [6383]: COREGRADE is starting... -- 08:38:59.417 INFO [6383]: Version from config: 1.0 -- 08:38:59.417 DEBUG [6383]: Connecting to database... -- 08:38:59.417 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:38:59.417 SQL [6383]: pgsql_db_connect() -- 08:38:59.421 DEBUG [6383]: Database connection successful -- 08:38:59.421 INFO [6383]: _SERVER found -- 08:38:59.421 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 08:38:59.421 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 08:38:59.421 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=6o8p6a6bclc6ofgi7sopiivv7caii1bl; _gid=GA1.2.548527475.1581341852 -- 08:38:59.421 INFO [6383]: QUERY_STRING = /member/viewCardAddAction -- 08:38:59.421 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:38:59.453 INFO [6383]: COREGRADE is stopping... -- 08:38:59.453 DEBUG [6383]: Closing database connection -- 08:38:59.453 SQL [6383]: pgsql_close() -- 09:01:27.722 INFO [6384]: COREGRADE is starting... -- 09:01:27.722 INFO [6384]: Version from config: 1.0 -- 09:01:27.722 DEBUG [6384]: Connecting to database... -- 09:01:27.722 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:01:27.722 SQL [6384]: pgsql_db_connect() -- 09:01:27.727 DEBUG [6384]: Database connection successful -- 09:01:27.727 INFO [6384]: _SERVER found -- 09:01:27.727 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 09:01:27.727 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 09:01:27.727 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=6o8p6a6bclc6ofgi7sopiivv7caii1bl; _gid=GA1.2.548527475.1581341852 -- 09:01:27.727 INFO [6384]: QUERY_STRING = /member -- 09:01:27.727 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:01:27.766 INFO [6384]: COREGRADE is stopping... -- 09:01:27.766 DEBUG [6384]: Closing database connection -- 09:01:27.766 SQL [6384]: pgsql_close() -- 09:01:27.930 INFO [6384]: COREGRADE is starting... -- 09:01:27.930 INFO [6384]: Version from config: 1.0 -- 09:01:27.930 DEBUG [6384]: Connecting to database... -- 09:01:27.930 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:01:27.930 SQL [6384]: pgsql_db_connect() -- 09:01:27.934 DEBUG [6384]: Database connection successful -- 09:01:27.934 INFO [6384]: _SERVER found -- 09:01:27.934 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 09:01:27.934 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 09:01:27.934 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.548527475.1581341852; ci_session=0io6ms95ga4nlhtg0gh3bdl8k7joff5p -- 09:01:27.934 INFO [6384]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 09:01:27.934 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:01:27.945 INFO [6384]: COREGRADE is stopping... -- 09:01:27.945 DEBUG [6384]: Closing database connection -- 09:01:27.945 SQL [6384]: pgsql_close() -- 09:01:27.974 INFO [6385]: COREGRADE is starting... -- 09:01:27.974 INFO [6385]: Version from config: 1.0 -- 09:01:27.974 DEBUG [6385]: Connecting to database... -- 09:01:27.974 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:01:27.974 SQL [6385]: pgsql_db_connect() -- 09:01:27.978 DEBUG [6385]: Database connection successful -- 09:01:27.978 INFO [6385]: _SERVER found -- 09:01:27.978 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 09:01:27.978 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 09:01:27.978 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.548527475.1581341852; ci_session=0io6ms95ga4nlhtg0gh3bdl8k7joff5p -- 09:01:27.978 INFO [6385]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:01:27.978 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:01:27.990 INFO [6385]: COREGRADE is stopping... -- 09:01:27.990 DEBUG [6385]: Closing database connection -- 09:01:27.990 SQL [6385]: pgsql_close() -- 09:13:51.672 INFO [6382]: COREGRADE is starting... -- 09:13:51.672 INFO [6382]: Version from config: 1.0 -- 09:13:51.672 DEBUG [6382]: Connecting to database... -- 09:13:51.672 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:13:51.672 SQL [6382]: pgsql_db_connect() -- 09:13:51.676 DEBUG [6382]: Database connection successful -- 09:13:51.677 INFO [6382]: _SERVER found -- 09:13:51.677 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 09:13:51.677 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 09:13:51.677 INFO [6382]: QUERY_STRING = /TP/public/index.php -- 09:13:51.677 INFO [6382]: HTTP_X_FORWARDED_FOR = 117.62.54.94 -- 09:13:51.690 INFO [6382]: COREGRADE is stopping... -- 09:13:51.690 DEBUG [6382]: Closing database connection -- 09:13:51.690 SQL [6382]: pgsql_close() -- 09:13:56.853 INFO [6381]: COREGRADE is starting... -- 09:13:56.853 INFO [6381]: Version from config: 1.0 -- 09:13:56.853 DEBUG [6381]: Connecting to database... -- 09:13:56.853 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:13:56.853 SQL [6381]: pgsql_db_connect() -- 09:13:56.857 DEBUG [6381]: Database connection successful -- 09:13:56.857 INFO [6381]: _SERVER found -- 09:13:56.857 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 09:13:56.857 INFO [6381]: SERVER_NAME = oameye.works.coregrade.com -- 09:13:56.857 INFO [6381]: QUERY_STRING = /TP/index.php -- 09:13:56.857 INFO [6381]: HTTP_X_FORWARDED_FOR = 117.62.54.94 -- 09:13:56.869 INFO [6381]: COREGRADE is stopping... -- 09:13:56.869 DEBUG [6381]: Closing database connection -- 09:13:56.869 SQL [6381]: pgsql_close() -- 09:14:03.002 INFO [7159]: COREGRADE is starting... -- 09:14:03.002 INFO [7159]: Version from config: 1.0 -- 09:14:03.002 DEBUG [7159]: Connecting to database... -- 09:14:03.002 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:14:03.002 SQL [7159]: pgsql_db_connect() -- 09:14:03.007 DEBUG [7159]: Database connection successful -- 09:14:03.007 INFO [7159]: _SERVER found -- 09:14:03.007 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 09:14:03.007 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 09:14:03.007 INFO [7159]: QUERY_STRING = -- 09:14:03.007 INFO [7159]: HTTP_X_FORWARDED_FOR = 117.62.54.94 -- 09:14:03.040 INFO [7159]: COREGRADE is stopping... -- 09:14:03.040 DEBUG [7159]: Closing database connection -- 09:14:03.040 SQL [7159]: pgsql_close() -- 09:16:33.729 INFO [13483]: COREGRADE is starting... -- 09:16:33.730 INFO [13483]: Version from config: 1.0 -- 09:16:33.730 DEBUG [13483]: Connecting to database... -- 09:16:33.730 DEBUG [13483]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:16:33.730 SQL [13483]: pgsql_db_connect() -- 09:16:33.734 DEBUG [13483]: Database connection successful -- 09:16:33.734 INFO [13483]: _SERVER found -- 09:16:33.734 INFO [13483]: REMOTE_ADDR = 192.168.1.13 -- 09:16:33.734 INFO [13483]: SERVER_NAME = oameye.works.coregrade.com -- 09:16:33.734 INFO [13483]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=a57g2bc6111km3hhkehfhn9p8i2u3cin -- 09:16:33.734 INFO [13483]: QUERY_STRING = /auth -- 09:16:33.734 INFO [13483]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:16:33.768 INFO [13483]: COREGRADE is stopping... -- 09:16:33.768 DEBUG [13483]: Closing database connection -- 09:16:33.768 SQL [13483]: pgsql_close() -- 09:16:33.918 INFO [13483]: COREGRADE is starting... -- 09:16:33.918 INFO [13483]: Version from config: 1.0 -- 09:16:33.918 DEBUG [13483]: Connecting to database... -- 09:16:33.918 DEBUG [13483]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:16:33.918 SQL [13483]: pgsql_db_connect() -- 09:16:33.926 INFO [6405]: COREGRADE is starting... -- 09:16:33.926 INFO [6405]: Version from config: 1.0 -- 09:16:33.926 DEBUG [6405]: Connecting to database... -- 09:16:33.926 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:16:33.926 SQL [6405]: pgsql_db_connect() -- 09:16:33.922 DEBUG [13483]: Database connection successful -- 09:16:33.922 INFO [13483]: _SERVER found -- 09:16:33.922 INFO [13483]: REMOTE_ADDR = 192.168.1.13 -- 09:16:33.922 INFO [13483]: SERVER_NAME = oameye.works.coregrade.com -- 09:16:33.922 INFO [13483]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7kbtbh4k1rgh46ab376mjoc4j0imqkf4 -- 09:16:33.922 INFO [13483]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 09:16:33.922 INFO [13483]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:16:33.933 INFO [13483]: COREGRADE is stopping... -- 09:16:33.933 DEBUG [13483]: Closing database connection -- 09:16:33.933 SQL [13483]: pgsql_close() -- 09:16:33.930 DEBUG [6405]: Database connection successful -- 09:16:33.930 INFO [6405]: _SERVER found -- 09:16:33.930 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 09:16:33.930 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 09:16:33.930 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7kbtbh4k1rgh46ab376mjoc4j0imqkf4 -- 09:16:33.930 INFO [6405]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:16:33.930 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:16:33.942 INFO [6405]: COREGRADE is stopping... -- 09:16:33.942 DEBUG [6405]: Closing database connection -- 09:16:33.942 SQL [6405]: pgsql_close() -- 09:16:37.668 INFO [6405]: COREGRADE is starting... -- 09:16:37.668 INFO [6405]: Version from config: 1.0 -- 09:16:37.668 DEBUG [6405]: Connecting to database... -- 09:16:37.668 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:16:37.668 SQL [6405]: pgsql_db_connect() -- 09:16:37.672 DEBUG [6405]: Database connection successful -- 09:16:37.672 INFO [6405]: _SERVER found -- 09:16:37.672 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 09:16:37.672 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 09:16:37.672 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7kbtbh4k1rgh46ab376mjoc4j0imqkf4 -- 09:16:37.672 INFO [6405]: QUERY_STRING = -- 09:16:37.672 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:16:37.703 INFO [6405]: COREGRADE is stopping... -- 09:16:37.703 DEBUG [6405]: Closing database connection -- 09:16:37.703 SQL [6405]: pgsql_close() -- 09:16:37.862 INFO [6405]: COREGRADE is starting... -- 09:16:37.862 INFO [6405]: Version from config: 1.0 -- 09:16:37.862 DEBUG [6405]: Connecting to database... -- 09:16:37.862 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:16:37.863 SQL [6405]: pgsql_db_connect() -- 09:16:37.867 INFO [13483]: COREGRADE is starting... -- 09:16:37.867 INFO [13483]: Version from config: 1.0 -- 09:16:37.867 DEBUG [13483]: Connecting to database... -- 09:16:37.867 DEBUG [13483]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:16:37.867 SQL [13483]: pgsql_db_connect() -- 09:16:37.867 DEBUG [6405]: Database connection successful -- 09:16:37.867 INFO [6405]: _SERVER found -- 09:16:37.867 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 09:16:37.867 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 09:16:37.867 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7kbtbh4k1rgh46ab376mjoc4j0imqkf4 -- 09:16:37.867 INFO [6405]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:16:37.867 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:16:37.878 INFO [6405]: COREGRADE is stopping... -- 09:16:37.878 DEBUG [6405]: Closing database connection -- 09:16:37.878 SQL [6405]: pgsql_close() -- 09:16:37.871 DEBUG [13483]: Database connection successful -- 09:16:37.871 INFO [13483]: _SERVER found -- 09:16:37.871 INFO [13483]: REMOTE_ADDR = 192.168.1.13 -- 09:16:37.871 INFO [13483]: SERVER_NAME = oameye.works.coregrade.com -- 09:16:37.871 INFO [13483]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7kbtbh4k1rgh46ab376mjoc4j0imqkf4 -- 09:16:37.871 INFO [13483]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:16:37.871 INFO [13483]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:16:37.882 INFO [13483]: COREGRADE is stopping... -- 09:16:37.882 DEBUG [13483]: Closing database connection -- 09:16:37.882 SQL [13483]: pgsql_close() -- 09:16:58.735 INFO [13593]: COREGRADE is starting... -- 09:16:58.735 INFO [13593]: Version from config: 1.0 -- 09:16:58.735 DEBUG [13593]: Connecting to database... -- 09:16:58.735 DEBUG [13593]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:16:58.735 SQL [13593]: pgsql_db_connect() -- 09:16:58.739 DEBUG [13593]: Database connection successful -- 09:16:58.739 INFO [13593]: _SERVER found -- 09:16:58.739 INFO [13593]: REMOTE_ADDR = 192.168.1.13 -- 09:16:58.739 INFO [13593]: SERVER_NAME = oameye.works.coregrade.com -- 09:16:58.739 INFO [13593]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7kbtbh4k1rgh46ab376mjoc4j0imqkf4; _gat_gtag_UA_54829827_2=1 -- 09:16:58.739 INFO [13593]: QUERY_STRING = -- 09:16:58.739 INFO [13593]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:16:58.771 INFO [13593]: COREGRADE is stopping... -- 09:16:58.771 DEBUG [13593]: Closing database connection -- 09:16:58.771 SQL [13593]: pgsql_close() -- 09:16:59.021 INFO [13593]: COREGRADE is starting... -- 09:16:59.022 INFO [13593]: Version from config: 1.0 -- 09:16:59.022 DEBUG [13593]: Connecting to database... -- 09:16:59.022 DEBUG [13593]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:16:59.022 SQL [13593]: pgsql_db_connect() -- 09:16:59.029 INFO [7017]: COREGRADE is starting... -- 09:16:59.030 INFO [7017]: Version from config: 1.0 -- 09:16:59.030 DEBUG [7017]: Connecting to database... -- 09:16:59.030 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:16:59.030 SQL [7017]: pgsql_db_connect() -- 09:16:59.026 DEBUG [13593]: Database connection successful -- 09:16:59.026 INFO [13593]: _SERVER found -- 09:16:59.026 INFO [13593]: REMOTE_ADDR = 192.168.1.13 -- 09:16:59.026 INFO [13593]: SERVER_NAME = oameye.works.coregrade.com -- 09:16:59.026 INFO [13593]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7kbtbh4k1rgh46ab376mjoc4j0imqkf4; _gat_gtag_UA_54829827_2=1 -- 09:16:59.026 INFO [13593]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:16:59.026 INFO [13593]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:16:59.037 INFO [13593]: COREGRADE is stopping... -- 09:16:59.037 DEBUG [13593]: Closing database connection -- 09:16:59.037 SQL [13593]: pgsql_close() -- 09:16:59.034 DEBUG [7017]: Database connection successful -- 09:16:59.034 INFO [7017]: _SERVER found -- 09:16:59.034 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 09:16:59.034 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 09:16:59.034 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7kbtbh4k1rgh46ab376mjoc4j0imqkf4; _gat_gtag_UA_54829827_2=1 -- 09:16:59.034 INFO [7017]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:16:59.034 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:16:59.045 INFO [7017]: COREGRADE is stopping... -- 09:16:59.045 DEBUG [7017]: Closing database connection -- 09:16:59.046 SQL [7017]: pgsql_close() -- 09:17:03.104 INFO [7017]: COREGRADE is starting... -- 09:17:03.104 INFO [7017]: Version from config: 1.0 -- 09:17:03.104 DEBUG [7017]: Connecting to database... -- 09:17:03.104 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:17:03.104 SQL [7017]: pgsql_db_connect() -- 09:17:03.109 DEBUG [7017]: Database connection successful -- 09:17:03.109 INFO [7017]: _SERVER found -- 09:17:03.109 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 09:17:03.109 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 09:17:03.109 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7kbtbh4k1rgh46ab376mjoc4j0imqkf4; _gat_gtag_UA_54829827_2=1 -- 09:17:03.109 INFO [7017]: QUERY_STRING = -- 09:17:03.109 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:17:03.145 INFO [7017]: COREGRADE is stopping... -- 09:17:03.145 DEBUG [7017]: Closing database connection -- 09:17:03.146 SQL [7017]: pgsql_close() -- 09:17:05.822 INFO [7017]: COREGRADE is starting... -- 09:17:05.822 INFO [7017]: Version from config: 1.0 -- 09:17:05.822 DEBUG [7017]: Connecting to database... -- 09:17:05.822 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:17:05.822 SQL [7017]: pgsql_db_connect() -- 09:17:05.826 DEBUG [7017]: Database connection successful -- 09:17:05.826 INFO [7017]: _SERVER found -- 09:17:05.826 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 09:17:05.826 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 09:17:05.826 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7kbtbh4k1rgh46ab376mjoc4j0imqkf4; _gat_gtag_UA_54829827_2=1 -- 09:17:05.826 INFO [7017]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 09:17:05.826 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:17:05.837 INFO [7017]: COREGRADE is stopping... -- 09:17:05.837 DEBUG [7017]: Closing database connection -- 09:17:05.837 SQL [7017]: pgsql_close() -- 09:18:59.527 INFO [6383]: COREGRADE is starting... -- 09:18:59.527 INFO [6383]: Version from config: 1.0 -- 09:18:59.527 DEBUG [6383]: Connecting to database... -- 09:18:59.527 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:18:59.527 SQL [6383]: pgsql_db_connect() -- 09:18:59.532 DEBUG [6383]: Database connection successful -- 09:18:59.532 INFO [6383]: _SERVER found -- 09:18:59.532 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 09:18:59.532 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 09:18:59.532 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7kbtbh4k1rgh46ab376mjoc4j0imqkf4 -- 09:18:59.532 INFO [6383]: QUERY_STRING = -- 09:18:59.532 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:18:59.571 INFO [6383]: COREGRADE is stopping... -- 09:18:59.571 DEBUG [6383]: Closing database connection -- 09:18:59.571 SQL [6383]: pgsql_close() -- 09:18:59.722 INFO [6383]: COREGRADE is starting... -- 09:18:59.722 INFO [6383]: Version from config: 1.0 -- 09:18:59.722 DEBUG [6383]: Connecting to database... -- 09:18:59.722 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:18:59.722 SQL [6383]: pgsql_db_connect() -- 09:18:59.731 INFO [6384]: COREGRADE is starting... -- 09:18:59.731 INFO [6384]: Version from config: 1.0 -- 09:18:59.731 DEBUG [6384]: Connecting to database... -- 09:18:59.731 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:18:59.731 SQL [6384]: pgsql_db_connect() -- 09:18:59.727 DEBUG [6383]: Database connection successful -- 09:18:59.727 INFO [6383]: _SERVER found -- 09:18:59.727 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 09:18:59.727 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 09:18:59.727 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7kbtbh4k1rgh46ab376mjoc4j0imqkf4 -- 09:18:59.727 INFO [6383]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:18:59.727 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:18:59.738 INFO [6383]: COREGRADE is stopping... -- 09:18:59.738 DEBUG [6383]: Closing database connection -- 09:18:59.738 SQL [6383]: pgsql_close() -- 09:18:59.735 DEBUG [6384]: Database connection successful -- 09:18:59.735 INFO [6384]: _SERVER found -- 09:18:59.735 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 09:18:59.735 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 09:18:59.735 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7kbtbh4k1rgh46ab376mjoc4j0imqkf4 -- 09:18:59.735 INFO [6384]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:18:59.735 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:18:59.747 INFO [6384]: COREGRADE is stopping... -- 09:18:59.747 DEBUG [6384]: Closing database connection -- 09:18:59.747 SQL [6384]: pgsql_close() -- 09:18:59.929 INFO [6384]: COREGRADE is starting... -- 09:18:59.929 INFO [6384]: Version from config: 1.0 -- 09:18:59.929 DEBUG [6384]: Connecting to database... -- 09:18:59.929 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:18:59.929 SQL [6384]: pgsql_db_connect() -- 09:18:59.933 DEBUG [6384]: Database connection successful -- 09:18:59.933 INFO [6384]: _SERVER found -- 09:18:59.933 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 09:18:59.933 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 09:18:59.933 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7kbtbh4k1rgh46ab376mjoc4j0imqkf4 -- 09:18:59.933 INFO [6384]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 09:18:59.933 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:18:59.944 INFO [6384]: COREGRADE is stopping... -- 09:18:59.945 DEBUG [6384]: Closing database connection -- 09:18:59.945 SQL [6384]: pgsql_close() -- 09:19:47.808 INFO [6385]: COREGRADE is starting... -- 09:19:47.808 INFO [6385]: Version from config: 1.0 -- 09:19:47.808 DEBUG [6385]: Connecting to database... -- 09:19:47.808 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:19:47.808 SQL [6385]: pgsql_db_connect() -- 09:19:47.813 DEBUG [6385]: Database connection successful -- 09:19:47.813 INFO [6385]: _SERVER found -- 09:19:47.813 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 09:19:47.813 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 09:19:47.813 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7kbtbh4k1rgh46ab376mjoc4j0imqkf4; _gat_gtag_UA_54829827_2=1 -- 09:19:47.813 INFO [6385]: QUERY_STRING = -- 09:19:47.813 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:19:47.846 INFO [6385]: COREGRADE is stopping... -- 09:19:47.846 DEBUG [6385]: Closing database connection -- 09:19:47.846 SQL [6385]: pgsql_close() -- 09:19:48.055 INFO [6385]: COREGRADE is starting... -- 09:19:48.055 INFO [6385]: Version from config: 1.0 -- 09:19:48.055 DEBUG [6385]: Connecting to database... -- 09:19:48.055 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:19:48.055 SQL [6385]: pgsql_db_connect() -- 09:19:48.061 INFO [6382]: COREGRADE is starting... -- 09:19:48.061 INFO [6382]: Version from config: 1.0 -- 09:19:48.061 DEBUG [6382]: Connecting to database... -- 09:19:48.061 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:19:48.061 SQL [6382]: pgsql_db_connect() -- 09:19:48.059 DEBUG [6385]: Database connection successful -- 09:19:48.059 INFO [6385]: _SERVER found -- 09:19:48.059 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 09:19:48.059 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 09:19:48.059 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7kbtbh4k1rgh46ab376mjoc4j0imqkf4; _gat_gtag_UA_54829827_2=1 -- 09:19:48.059 INFO [6385]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:19:48.059 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:19:48.071 INFO [6385]: COREGRADE is stopping... -- 09:19:48.071 DEBUG [6385]: Closing database connection -- 09:19:48.071 SQL [6385]: pgsql_close() -- 09:19:48.065 DEBUG [6382]: Database connection successful -- 09:19:48.065 INFO [6382]: _SERVER found -- 09:19:48.065 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 09:19:48.065 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 09:19:48.065 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7kbtbh4k1rgh46ab376mjoc4j0imqkf4; _gat_gtag_UA_54829827_2=1 -- 09:19:48.065 INFO [6382]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:19:48.065 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:19:48.077 INFO [6382]: COREGRADE is stopping... -- 09:19:48.078 DEBUG [6382]: Closing database connection -- 09:19:48.078 SQL [6382]: pgsql_close() -- 09:19:48.127 INFO [6382]: COREGRADE is starting... -- 09:19:48.127 INFO [6382]: Version from config: 1.0 -- 09:19:48.127 DEBUG [6382]: Connecting to database... -- 09:19:48.127 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:19:48.127 SQL [6382]: pgsql_db_connect() -- 09:19:48.132 DEBUG [6382]: Database connection successful -- 09:19:48.132 INFO [6382]: _SERVER found -- 09:19:48.132 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 09:19:48.132 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 09:19:48.132 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7kbtbh4k1rgh46ab376mjoc4j0imqkf4; _gat_gtag_UA_54829827_2=1 -- 09:19:48.132 INFO [6382]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 09:19:48.132 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:19:48.143 INFO [6382]: COREGRADE is stopping... -- 09:19:48.143 DEBUG [6382]: Closing database connection -- 09:19:48.143 SQL [6382]: pgsql_close() -- 09:20:35.435 INFO [6381]: COREGRADE is starting... -- 09:20:35.436 INFO [6381]: Version from config: 1.0 -- 09:20:35.436 DEBUG [6381]: Connecting to database... -- 09:20:35.436 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:20:35.436 SQL [6381]: pgsql_db_connect() -- 09:20:35.440 DEBUG [6381]: Database connection successful -- 09:20:35.440 INFO [6381]: _SERVER found -- 09:20:35.440 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 09:20:35.440 INFO [6381]: SERVER_NAME = oameye.works.coregrade.com -- 09:20:35.440 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7kbtbh4k1rgh46ab376mjoc4j0imqkf4 -- 09:20:35.440 INFO [6381]: QUERY_STRING = -- 09:20:35.440 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:20:35.472 INFO [6381]: COREGRADE is stopping... -- 09:20:35.472 DEBUG [6381]: Closing database connection -- 09:20:35.472 SQL [6381]: pgsql_close() -- 09:20:35.636 INFO [6381]: COREGRADE is starting... -- 09:20:35.637 INFO [6381]: Version from config: 1.0 -- 09:20:35.637 DEBUG [6381]: Connecting to database... -- 09:20:35.637 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:20:35.637 SQL [6381]: pgsql_db_connect() -- 09:20:35.643 INFO [7159]: COREGRADE is starting... -- 09:20:35.643 INFO [7159]: Version from config: 1.0 -- 09:20:35.643 DEBUG [7159]: Connecting to database... -- 09:20:35.643 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:20:35.643 SQL [7159]: pgsql_db_connect() -- 09:20:35.641 DEBUG [6381]: Database connection successful -- 09:20:35.641 INFO [6381]: _SERVER found -- 09:20:35.641 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 09:20:35.641 INFO [6381]: SERVER_NAME = oameye.works.coregrade.com -- 09:20:35.641 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7kbtbh4k1rgh46ab376mjoc4j0imqkf4 -- 09:20:35.641 INFO [6381]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:20:35.641 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:20:35.652 INFO [6381]: COREGRADE is stopping... -- 09:20:35.652 DEBUG [6381]: Closing database connection -- 09:20:35.652 SQL [6381]: pgsql_close() -- 09:20:35.647 DEBUG [7159]: Database connection successful -- 09:20:35.647 INFO [7159]: _SERVER found -- 09:20:35.647 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 09:20:35.647 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 09:20:35.647 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7kbtbh4k1rgh46ab376mjoc4j0imqkf4 -- 09:20:35.647 INFO [7159]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:20:35.647 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:20:35.658 INFO [7159]: COREGRADE is stopping... -- 09:20:35.658 DEBUG [7159]: Closing database connection -- 09:20:35.658 SQL [7159]: pgsql_close() -- 09:20:35.749 INFO [7159]: COREGRADE is starting... -- 09:20:35.749 INFO [7159]: Version from config: 1.0 -- 09:20:35.749 DEBUG [7159]: Connecting to database... -- 09:20:35.749 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:20:35.749 SQL [7159]: pgsql_db_connect() -- 09:20:35.753 DEBUG [7159]: Database connection successful -- 09:20:35.753 INFO [7159]: _SERVER found -- 09:20:35.753 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 09:20:35.753 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 09:20:35.753 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7kbtbh4k1rgh46ab376mjoc4j0imqkf4 -- 09:20:35.753 INFO [7159]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 09:20:35.753 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:20:35.764 INFO [7159]: COREGRADE is stopping... -- 09:20:35.764 DEBUG [7159]: Closing database connection -- 09:20:35.764 SQL [7159]: pgsql_close() -- 09:21:03.279 INFO [6405]: COREGRADE is starting... -- 09:21:03.279 INFO [6405]: Version from config: 1.0 -- 09:21:03.279 DEBUG [6405]: Connecting to database... -- 09:21:03.279 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:21:03.279 SQL [6405]: pgsql_db_connect() -- 09:21:03.283 DEBUG [6405]: Database connection successful -- 09:21:03.283 INFO [6405]: _SERVER found -- 09:21:03.283 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 09:21:03.283 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 09:21:03.283 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7kbtbh4k1rgh46ab376mjoc4j0imqkf4; _gat_gtag_UA_54829827_2=1 -- 09:21:03.283 INFO [6405]: QUERY_STRING = -- 09:21:03.283 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:21:03.315 INFO [6405]: COREGRADE is stopping... -- 09:21:03.315 DEBUG [6405]: Closing database connection -- 09:21:03.316 SQL [6405]: pgsql_close() -- 09:21:03.565 INFO [6405]: COREGRADE is starting... -- 09:21:03.565 INFO [6405]: Version from config: 1.0 -- 09:21:03.565 DEBUG [6405]: Connecting to database... -- 09:21:03.565 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:21:03.565 SQL [6405]: pgsql_db_connect() -- 09:21:03.572 INFO [13483]: COREGRADE is starting... -- 09:21:03.572 INFO [13483]: Version from config: 1.0 -- 09:21:03.572 DEBUG [13483]: Connecting to database... -- 09:21:03.573 DEBUG [13483]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:21:03.573 SQL [13483]: pgsql_db_connect() -- 09:21:03.569 DEBUG [6405]: Database connection successful -- 09:21:03.569 INFO [6405]: _SERVER found -- 09:21:03.569 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 09:21:03.569 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 09:21:03.569 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7kbtbh4k1rgh46ab376mjoc4j0imqkf4; _gat_gtag_UA_54829827_2=1 -- 09:21:03.569 INFO [6405]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:21:03.569 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:21:03.581 INFO [6405]: COREGRADE is stopping... -- 09:21:03.581 DEBUG [6405]: Closing database connection -- 09:21:03.581 SQL [6405]: pgsql_close() -- 09:21:03.576 DEBUG [13483]: Database connection successful -- 09:21:03.576 INFO [13483]: _SERVER found -- 09:21:03.576 INFO [13483]: REMOTE_ADDR = 192.168.1.13 -- 09:21:03.576 INFO [13483]: SERVER_NAME = oameye.works.coregrade.com -- 09:21:03.576 INFO [13483]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7kbtbh4k1rgh46ab376mjoc4j0imqkf4; _gat_gtag_UA_54829827_2=1 -- 09:21:03.576 INFO [13483]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:21:03.576 INFO [13483]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:21:03.588 INFO [13483]: COREGRADE is stopping... -- 09:21:03.588 DEBUG [13483]: Closing database connection -- 09:21:03.588 SQL [13483]: pgsql_close() -- 09:21:03.676 INFO [13483]: COREGRADE is starting... -- 09:21:03.676 INFO [13483]: Version from config: 1.0 -- 09:21:03.676 DEBUG [13483]: Connecting to database... -- 09:21:03.676 DEBUG [13483]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:21:03.676 SQL [13483]: pgsql_db_connect() -- 09:21:03.680 DEBUG [13483]: Database connection successful -- 09:21:03.680 INFO [13483]: _SERVER found -- 09:21:03.680 INFO [13483]: REMOTE_ADDR = 192.168.1.13 -- 09:21:03.680 INFO [13483]: SERVER_NAME = oameye.works.coregrade.com -- 09:21:03.680 INFO [13483]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7kbtbh4k1rgh46ab376mjoc4j0imqkf4; _gat_gtag_UA_54829827_2=1 -- 09:21:03.680 INFO [13483]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 09:21:03.680 INFO [13483]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:21:03.691 INFO [13483]: COREGRADE is stopping... -- 09:21:03.691 DEBUG [13483]: Closing database connection -- 09:21:03.691 SQL [13483]: pgsql_close() -- 09:21:16.403 INFO [13593]: COREGRADE is starting... -- 09:21:16.403 INFO [13593]: Version from config: 1.0 -- 09:21:16.403 DEBUG [13593]: Connecting to database... -- 09:21:16.403 DEBUG [13593]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:21:16.403 SQL [13593]: pgsql_db_connect() -- 09:21:16.407 DEBUG [13593]: Database connection successful -- 09:21:16.407 INFO [13593]: _SERVER found -- 09:21:16.407 INFO [13593]: REMOTE_ADDR = 192.168.1.13 -- 09:21:16.407 INFO [13593]: SERVER_NAME = oameye.works.coregrade.com -- 09:21:16.407 INFO [13593]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7kbtbh4k1rgh46ab376mjoc4j0imqkf4; _gat_gtag_UA_54829827_2=1 -- 09:21:16.407 INFO [13593]: QUERY_STRING = -- 09:21:16.407 INFO [13593]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:21:16.438 INFO [13593]: COREGRADE is stopping... -- 09:21:16.438 DEBUG [13593]: Closing database connection -- 09:21:16.438 SQL [13593]: pgsql_close() -- 09:21:17.024 INFO [13593]: COREGRADE is starting... -- 09:21:17.024 INFO [13593]: Version from config: 1.0 -- 09:21:17.024 DEBUG [13593]: Connecting to database... -- 09:21:17.024 DEBUG [13593]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:21:17.024 SQL [13593]: pgsql_db_connect() -- 09:21:17.028 DEBUG [13593]: Database connection successful -- 09:21:17.028 INFO [13593]: _SERVER found -- 09:21:17.028 INFO [13593]: REMOTE_ADDR = 192.168.1.13 -- 09:21:17.028 INFO [13593]: SERVER_NAME = oameye.works.coregrade.com -- 09:21:17.028 INFO [13593]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7kbtbh4k1rgh46ab376mjoc4j0imqkf4; _gat_gtag_UA_54829827_2=1 -- 09:21:17.028 INFO [13593]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 09:21:17.028 INFO [13593]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:21:17.039 INFO [13593]: COREGRADE is stopping... -- 09:21:17.039 DEBUG [13593]: Closing database connection -- 09:21:17.039 SQL [13593]: pgsql_close() -- 09:21:17.129 INFO [7017]: COREGRADE is starting... -- 09:21:17.129 INFO [7017]: Version from config: 1.0 -- 09:21:17.129 DEBUG [7017]: Connecting to database... -- 09:21:17.129 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:21:17.129 SQL [7017]: pgsql_db_connect() -- 09:21:17.133 DEBUG [7017]: Database connection successful -- 09:21:17.133 INFO [7017]: _SERVER found -- 09:21:17.133 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 09:21:17.133 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 09:21:17.133 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7kbtbh4k1rgh46ab376mjoc4j0imqkf4; _gat_gtag_UA_54829827_2=1 -- 09:21:17.133 INFO [7017]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:21:17.133 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:21:17.144 INFO [7017]: COREGRADE is stopping... -- 09:21:17.144 DEBUG [7017]: Closing database connection -- 09:21:17.144 SQL [7017]: pgsql_close() -- 09:21:17.161 INFO [6383]: COREGRADE is starting... -- 09:21:17.161 INFO [6383]: Version from config: 1.0 -- 09:21:17.161 DEBUG [6383]: Connecting to database... -- 09:21:17.161 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:21:17.161 SQL [6383]: pgsql_db_connect() -- 09:21:17.165 DEBUG [6383]: Database connection successful -- 09:21:17.165 INFO [6383]: _SERVER found -- 09:21:17.165 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 09:21:17.165 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 09:21:17.165 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7kbtbh4k1rgh46ab376mjoc4j0imqkf4; _gat_gtag_UA_54829827_2=1 -- 09:21:17.165 INFO [6383]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:21:17.165 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:21:17.177 INFO [6383]: COREGRADE is stopping... -- 09:21:17.177 DEBUG [6383]: Closing database connection -- 09:21:17.177 SQL [6383]: pgsql_close() -- 09:23:30.891 INFO [6384]: COREGRADE is starting... -- 09:23:30.892 INFO [6384]: Version from config: 1.0 -- 09:23:30.892 DEBUG [6384]: Connecting to database... -- 09:23:30.892 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:23:30.892 SQL [6384]: pgsql_db_connect() -- 09:23:30.896 DEBUG [6384]: Database connection successful -- 09:23:30.896 INFO [6384]: _SERVER found -- 09:23:30.896 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 09:23:30.896 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 09:23:30.896 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7kbtbh4k1rgh46ab376mjoc4j0imqkf4 -- 09:23:30.896 INFO [6384]: QUERY_STRING = -- 09:23:30.896 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:23:30.928 INFO [6384]: COREGRADE is stopping... -- 09:23:30.928 DEBUG [6384]: Closing database connection -- 09:23:30.928 SQL [6384]: pgsql_close() -- 09:23:31.317 INFO [6382]: COREGRADE is starting... -- 09:23:31.317 INFO [6382]: Version from config: 1.0 -- 09:23:31.317 DEBUG [6382]: Connecting to database... -- 09:23:31.317 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:23:31.317 SQL [6382]: pgsql_db_connect() -- 09:23:31.321 DEBUG [6382]: Database connection successful -- 09:23:31.321 INFO [6382]: _SERVER found -- 09:23:31.321 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 09:23:31.321 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 09:23:31.321 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=pjiogocm0d40uf1ddbpv1eq2su0edm58 -- 09:23:31.321 INFO [6382]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 09:23:31.321 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:23:31.333 INFO [6382]: COREGRADE is stopping... -- 09:23:31.333 DEBUG [6382]: Closing database connection -- 09:23:31.333 SQL [6382]: pgsql_close() -- 09:23:31.395 INFO [6381]: COREGRADE is starting... -- 09:23:31.395 INFO [6381]: Version from config: 1.0 -- 09:23:31.395 DEBUG [6381]: Connecting to database... -- 09:23:31.395 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:23:31.395 SQL [6381]: pgsql_db_connect() -- 09:23:31.399 DEBUG [6381]: Database connection successful -- 09:23:31.399 INFO [6381]: _SERVER found -- 09:23:31.399 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 09:23:31.399 INFO [6381]: SERVER_NAME = oameye.works.coregrade.com -- 09:23:31.399 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=pjiogocm0d40uf1ddbpv1eq2su0edm58 -- 09:23:31.399 INFO [6381]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:23:31.399 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:23:31.411 INFO [6381]: COREGRADE is stopping... -- 09:23:31.411 DEBUG [6381]: Closing database connection -- 09:23:31.411 SQL [6381]: pgsql_close() -- 09:23:31.416 INFO [6381]: COREGRADE is starting... -- 09:23:31.416 INFO [6381]: Version from config: 1.0 -- 09:23:31.416 DEBUG [6381]: Connecting to database... -- 09:23:31.416 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:23:31.416 SQL [6381]: pgsql_db_connect() -- 09:23:31.420 DEBUG [6381]: Database connection successful -- 09:23:31.420 INFO [6381]: _SERVER found -- 09:23:31.420 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 09:23:31.420 INFO [6381]: SERVER_NAME = oameye.works.coregrade.com -- 09:23:31.420 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=pjiogocm0d40uf1ddbpv1eq2su0edm58 -- 09:23:31.420 INFO [6381]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:23:31.420 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:23:31.431 INFO [6381]: COREGRADE is stopping... -- 09:23:31.431 DEBUG [6381]: Closing database connection -- 09:23:31.431 SQL [6381]: pgsql_close() -- 09:23:56.212 INFO [7159]: COREGRADE is starting... -- 09:23:56.212 INFO [7159]: Version from config: 1.0 -- 09:23:56.212 DEBUG [7159]: Connecting to database... -- 09:23:56.212 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:23:56.212 SQL [7159]: pgsql_db_connect() -- 09:23:56.217 DEBUG [7159]: Database connection successful -- 09:23:56.217 INFO [7159]: _SERVER found -- 09:23:56.217 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 09:23:56.217 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 09:23:56.217 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=pjiogocm0d40uf1ddbpv1eq2su0edm58; _gat_gtag_UA_54829827_2=1 -- 09:23:56.217 INFO [7159]: QUERY_STRING = -- 09:23:56.217 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:23:56.248 INFO [7159]: COREGRADE is stopping... -- 09:23:56.248 DEBUG [7159]: Closing database connection -- 09:23:56.248 SQL [7159]: pgsql_close() -- 09:23:56.609 INFO [7159]: COREGRADE is starting... -- 09:23:56.610 INFO [7159]: Version from config: 1.0 -- 09:23:56.610 DEBUG [7159]: Connecting to database... -- 09:23:56.610 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:23:56.610 SQL [7159]: pgsql_db_connect() -- 09:23:56.614 DEBUG [7159]: Database connection successful -- 09:23:56.614 INFO [7159]: _SERVER found -- 09:23:56.614 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 09:23:56.614 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 09:23:56.614 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=pjiogocm0d40uf1ddbpv1eq2su0edm58; _gat_gtag_UA_54829827_2=1 -- 09:23:56.614 INFO [7159]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 09:23:56.614 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:23:56.625 INFO [7159]: COREGRADE is stopping... -- 09:23:56.625 DEBUG [7159]: Closing database connection -- 09:23:56.625 SQL [7159]: pgsql_close() -- 09:23:56.714 INFO [6405]: COREGRADE is starting... -- 09:23:56.714 INFO [6405]: Version from config: 1.0 -- 09:23:56.714 DEBUG [6405]: Connecting to database... -- 09:23:56.714 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:23:56.714 SQL [6405]: pgsql_db_connect() -- 09:23:56.723 INFO [7159]: COREGRADE is starting... -- 09:23:56.724 INFO [7159]: Version from config: 1.0 -- 09:23:56.724 DEBUG [7159]: Connecting to database... -- 09:23:56.724 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:23:56.724 SQL [7159]: pgsql_db_connect() -- 09:23:56.718 DEBUG [6405]: Database connection successful -- 09:23:56.718 INFO [6405]: _SERVER found -- 09:23:56.718 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 09:23:56.718 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 09:23:56.718 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=pjiogocm0d40uf1ddbpv1eq2su0edm58; _gat_gtag_UA_54829827_2=1 -- 09:23:56.718 INFO [6405]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:23:56.718 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:23:56.730 INFO [6405]: COREGRADE is stopping... -- 09:23:56.730 DEBUG [6405]: Closing database connection -- 09:23:56.730 SQL [6405]: pgsql_close() -- 09:23:56.727 DEBUG [7159]: Database connection successful -- 09:23:56.727 INFO [7159]: _SERVER found -- 09:23:56.727 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 09:23:56.727 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 09:23:56.727 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=pjiogocm0d40uf1ddbpv1eq2su0edm58; _gat_gtag_UA_54829827_2=1 -- 09:23:56.727 INFO [7159]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:23:56.727 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:23:56.739 INFO [7159]: COREGRADE is stopping... -- 09:23:56.739 DEBUG [7159]: Closing database connection -- 09:23:56.739 SQL [7159]: pgsql_close() -- 09:24:53.357 INFO [6383]: COREGRADE is starting... -- 09:24:53.357 INFO [6383]: Version from config: 1.0 -- 09:24:53.357 DEBUG [6383]: Connecting to database... -- 09:24:53.357 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:24:53.357 SQL [6383]: pgsql_db_connect() -- 09:24:53.361 DEBUG [6383]: Database connection successful -- 09:24:53.361 INFO [6383]: _SERVER found -- 09:24:53.361 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 09:24:53.361 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 09:24:53.361 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=pjiogocm0d40uf1ddbpv1eq2su0edm58 -- 09:24:53.361 INFO [6383]: QUERY_STRING = -- 09:24:53.361 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:24:53.394 INFO [6383]: COREGRADE is stopping... -- 09:24:53.394 DEBUG [6383]: Closing database connection -- 09:24:53.394 SQL [6383]: pgsql_close() -- 09:24:53.878 INFO [6384]: COREGRADE is starting... -- 09:24:53.878 INFO [6384]: Version from config: 1.0 -- 09:24:53.878 DEBUG [6384]: Connecting to database... -- 09:24:53.878 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:24:53.878 SQL [6384]: pgsql_db_connect() -- 09:24:53.889 INFO [6385]: COREGRADE is starting... -- 09:24:53.889 INFO [6385]: Version from config: 1.0 -- 09:24:53.890 DEBUG [6385]: Connecting to database... -- 09:24:53.890 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:24:53.890 SQL [6385]: pgsql_db_connect() -- 09:24:53.882 DEBUG [6384]: Database connection successful -- 09:24:53.882 INFO [6384]: _SERVER found -- 09:24:53.882 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 09:24:53.882 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 09:24:53.882 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=pjiogocm0d40uf1ddbpv1eq2su0edm58 -- 09:24:53.882 INFO [6384]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 09:24:53.882 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:24:53.894 INFO [6384]: COREGRADE is stopping... -- 09:24:53.894 DEBUG [6384]: Closing database connection -- 09:24:53.894 SQL [6384]: pgsql_close() -- 09:24:53.901 INFO [6384]: COREGRADE is starting... -- 09:24:53.901 INFO [6384]: Version from config: 1.0 -- 09:24:53.901 DEBUG [6384]: Connecting to database... -- 09:24:53.901 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:24:53.901 SQL [6384]: pgsql_db_connect() -- 09:24:53.894 DEBUG [6385]: Database connection successful -- 09:24:53.894 INFO [6385]: _SERVER found -- 09:24:53.894 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 09:24:53.894 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 09:24:53.894 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=pjiogocm0d40uf1ddbpv1eq2su0edm58 -- 09:24:53.894 INFO [6385]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:24:53.894 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:24:53.905 INFO [6385]: COREGRADE is stopping... -- 09:24:53.905 DEBUG [6385]: Closing database connection -- 09:24:53.905 SQL [6385]: pgsql_close() -- 09:24:53.905 DEBUG [6384]: Database connection successful -- 09:24:53.905 INFO [6384]: _SERVER found -- 09:24:53.905 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 09:24:53.905 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 09:24:53.905 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=pjiogocm0d40uf1ddbpv1eq2su0edm58 -- 09:24:53.905 INFO [6384]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:24:53.905 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:24:53.916 INFO [6384]: COREGRADE is stopping... -- 09:24:53.916 DEBUG [6384]: Closing database connection -- 09:24:53.916 SQL [6384]: pgsql_close() -- 09:25:44.824 INFO [6381]: COREGRADE is starting... -- 09:25:44.825 INFO [6381]: Version from config: 1.0 -- 09:25:44.825 DEBUG [6381]: Connecting to database... -- 09:25:44.825 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:25:44.825 SQL [6381]: pgsql_db_connect() -- 09:25:44.829 DEBUG [6381]: Database connection successful -- 09:25:44.829 INFO [6381]: _SERVER found -- 09:25:44.829 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 09:25:44.829 INFO [6381]: SERVER_NAME = oameye.works.coregrade.com -- 09:25:44.829 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=pjiogocm0d40uf1ddbpv1eq2su0edm58; _gat_gtag_UA_54829827_2=1 -- 09:25:44.829 INFO [6381]: QUERY_STRING = -- 09:25:44.829 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:25:44.860 INFO [6381]: COREGRADE is stopping... -- 09:25:44.860 DEBUG [6381]: Closing database connection -- 09:25:44.860 SQL [6381]: pgsql_close() -- 09:25:45.216 INFO [7017]: COREGRADE is starting... -- 09:25:45.216 INFO [7017]: Version from config: 1.0 -- 09:25:45.216 DEBUG [7017]: Connecting to database... -- 09:25:45.216 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:25:45.216 SQL [7017]: pgsql_db_connect() -- 09:25:45.220 DEBUG [7017]: Database connection successful -- 09:25:45.220 INFO [7017]: _SERVER found -- 09:25:45.220 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 09:25:45.220 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 09:25:45.220 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=pjiogocm0d40uf1ddbpv1eq2su0edm58; _gat_gtag_UA_54829827_2=1 -- 09:25:45.220 INFO [7017]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 09:25:45.220 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:25:45.232 INFO [7017]: COREGRADE is stopping... -- 09:25:45.232 DEBUG [7017]: Closing database connection -- 09:25:45.232 SQL [7017]: pgsql_close() -- 09:25:45.311 INFO [13483]: COREGRADE is starting... -- 09:25:45.311 INFO [13483]: Version from config: 1.0 -- 09:25:45.311 DEBUG [13483]: Connecting to database... -- 09:25:45.311 DEBUG [13483]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:25:45.311 SQL [13483]: pgsql_db_connect() -- 09:25:45.324 INFO [7017]: COREGRADE is starting... -- 09:25:45.324 INFO [7017]: Version from config: 1.0 -- 09:25:45.324 DEBUG [7017]: Connecting to database... -- 09:25:45.324 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:25:45.324 SQL [7017]: pgsql_db_connect() -- 09:25:45.315 DEBUG [13483]: Database connection successful -- 09:25:45.315 INFO [13483]: _SERVER found -- 09:25:45.315 INFO [13483]: REMOTE_ADDR = 192.168.1.13 -- 09:25:45.315 INFO [13483]: SERVER_NAME = oameye.works.coregrade.com -- 09:25:45.315 INFO [13483]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=pjiogocm0d40uf1ddbpv1eq2su0edm58; _gat_gtag_UA_54829827_2=1 -- 09:25:45.315 INFO [13483]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:25:45.315 INFO [13483]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:25:45.326 INFO [13483]: COREGRADE is stopping... -- 09:25:45.327 DEBUG [13483]: Closing database connection -- 09:25:45.327 SQL [13483]: pgsql_close() -- 09:25:45.328 DEBUG [7017]: Database connection successful -- 09:25:45.328 INFO [7017]: _SERVER found -- 09:25:45.328 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 09:25:45.328 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 09:25:45.328 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=pjiogocm0d40uf1ddbpv1eq2su0edm58; _gat_gtag_UA_54829827_2=1 -- 09:25:45.328 INFO [7017]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:25:45.328 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:25:45.339 INFO [7017]: COREGRADE is stopping... -- 09:25:45.339 DEBUG [7017]: Closing database connection -- 09:25:45.339 SQL [7017]: pgsql_close() -- 09:27:06.692 INFO [7159]: COREGRADE is starting... -- 09:27:06.692 INFO [7159]: Version from config: 1.0 -- 09:27:06.692 DEBUG [7159]: Connecting to database... -- 09:27:06.692 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:27:06.692 SQL [7159]: pgsql_db_connect() -- 09:27:06.696 DEBUG [7159]: Database connection successful -- 09:27:06.696 INFO [7159]: _SERVER found -- 09:27:06.696 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 09:27:06.696 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 09:27:06.696 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=pjiogocm0d40uf1ddbpv1eq2su0edm58 -- 09:27:06.696 INFO [7159]: QUERY_STRING = -- 09:27:06.696 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:27:06.728 INFO [7159]: COREGRADE is stopping... -- 09:27:06.728 DEBUG [7159]: Closing database connection -- 09:27:06.728 SQL [7159]: pgsql_close() -- 09:27:06.991 INFO [7159]: COREGRADE is starting... -- 09:27:06.991 INFO [7159]: Version from config: 1.0 -- 09:27:06.991 DEBUG [7159]: Connecting to database... -- 09:27:06.991 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:27:06.991 SQL [7159]: pgsql_db_connect() -- 09:27:06.000 INFO [13593]: COREGRADE is starting... -- 09:27:06.000 INFO [13593]: Version from config: 1.0 -- 09:27:07.000 DEBUG [13593]: Connecting to database... -- 09:27:07.000 DEBUG [13593]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:27:07.000 SQL [13593]: pgsql_db_connect() -- 09:27:06.995 DEBUG [7159]: Database connection successful -- 09:27:06.995 INFO [7159]: _SERVER found -- 09:27:06.995 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 09:27:06.995 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 09:27:06.996 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=pjiogocm0d40uf1ddbpv1eq2su0edm58 -- 09:27:06.996 INFO [7159]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:27:06.996 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:27:07.007 INFO [7159]: COREGRADE is stopping... -- 09:27:07.007 DEBUG [7159]: Closing database connection -- 09:27:07.007 SQL [7159]: pgsql_close() -- 09:27:07.004 DEBUG [13593]: Database connection successful -- 09:27:07.004 INFO [13593]: _SERVER found -- 09:27:07.004 INFO [13593]: REMOTE_ADDR = 192.168.1.13 -- 09:27:07.004 INFO [13593]: SERVER_NAME = oameye.works.coregrade.com -- 09:27:07.004 INFO [13593]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=pjiogocm0d40uf1ddbpv1eq2su0edm58 -- 09:27:07.004 INFO [13593]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:27:07.004 INFO [13593]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:27:07.016 INFO [13593]: COREGRADE is stopping... -- 09:27:07.016 DEBUG [13593]: Closing database connection -- 09:27:07.016 SQL [13593]: pgsql_close() -- 09:27:07.106 INFO [13593]: COREGRADE is starting... -- 09:27:07.106 INFO [13593]: Version from config: 1.0 -- 09:27:07.106 DEBUG [13593]: Connecting to database... -- 09:27:07.106 DEBUG [13593]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:27:07.106 SQL [13593]: pgsql_db_connect() -- 09:27:07.110 DEBUG [13593]: Database connection successful -- 09:27:07.110 INFO [13593]: _SERVER found -- 09:27:07.110 INFO [13593]: REMOTE_ADDR = 192.168.1.13 -- 09:27:07.110 INFO [13593]: SERVER_NAME = oameye.works.coregrade.com -- 09:27:07.110 INFO [13593]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=pjiogocm0d40uf1ddbpv1eq2su0edm58 -- 09:27:07.110 INFO [13593]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 09:27:07.110 INFO [13593]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:27:07.121 INFO [13593]: COREGRADE is stopping... -- 09:27:07.121 DEBUG [13593]: Closing database connection -- 09:27:07.121 SQL [13593]: pgsql_close() -- 09:28:36.319 INFO [6383]: COREGRADE is starting... -- 09:28:36.319 INFO [6383]: Version from config: 1.0 -- 09:28:36.319 DEBUG [6383]: Connecting to database... -- 09:28:36.319 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:28:36.319 SQL [6383]: pgsql_db_connect() -- 09:28:36.323 DEBUG [6383]: Database connection successful -- 09:28:36.323 INFO [6383]: _SERVER found -- 09:28:36.323 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 09:28:36.323 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 09:28:36.323 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=pjiogocm0d40uf1ddbpv1eq2su0edm58 -- 09:28:36.323 INFO [6383]: QUERY_STRING = -- 09:28:36.323 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:28:36.355 INFO [6383]: COREGRADE is stopping... -- 09:28:36.355 DEBUG [6383]: Closing database connection -- 09:28:36.355 SQL [6383]: pgsql_close() -- 09:28:36.531 INFO [6383]: COREGRADE is starting... -- 09:28:36.531 INFO [6383]: Version from config: 1.0 -- 09:28:36.531 DEBUG [6383]: Connecting to database... -- 09:28:36.531 DEBUG [6383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:28:36.531 SQL [6383]: pgsql_db_connect() -- 09:28:36.543 INFO [6382]: COREGRADE is starting... -- 09:28:36.543 INFO [6382]: Version from config: 1.0 -- 09:28:36.543 DEBUG [6382]: Connecting to database... -- 09:28:36.543 DEBUG [6382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:28:36.543 SQL [6382]: pgsql_db_connect() -- 09:28:36.535 DEBUG [6383]: Database connection successful -- 09:28:36.535 INFO [6383]: _SERVER found -- 09:28:36.535 INFO [6383]: REMOTE_ADDR = 192.168.1.13 -- 09:28:36.535 INFO [6383]: SERVER_NAME = oameye.works.coregrade.com -- 09:28:36.535 INFO [6383]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=3s6vleb95meam4t8f2i57shdcll5r2rl -- 09:28:36.535 INFO [6383]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:28:36.535 INFO [6383]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:28:36.546 INFO [6383]: COREGRADE is stopping... -- 09:28:36.546 DEBUG [6383]: Closing database connection -- 09:28:36.546 SQL [6383]: pgsql_close() -- 09:28:36.547 DEBUG [6382]: Database connection successful -- 09:28:36.547 INFO [6382]: _SERVER found -- 09:28:36.547 INFO [6382]: REMOTE_ADDR = 192.168.1.13 -- 09:28:36.547 INFO [6382]: SERVER_NAME = oameye.works.coregrade.com -- 09:28:36.547 INFO [6382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=3s6vleb95meam4t8f2i57shdcll5r2rl -- 09:28:36.547 INFO [6382]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:28:36.547 INFO [6382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:28:36.559 INFO [6382]: COREGRADE is stopping... -- 09:28:36.559 DEBUG [6382]: Closing database connection -- 09:28:36.559 SQL [6382]: pgsql_close() -- 09:30:24.937 INFO [6385]: COREGRADE is starting... -- 09:30:24.938 INFO [6385]: Version from config: 1.0 -- 09:30:24.938 DEBUG [6385]: Connecting to database... -- 09:30:24.938 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:30:24.938 SQL [6385]: pgsql_db_connect() -- 09:30:24.942 DEBUG [6385]: Database connection successful -- 09:30:24.942 INFO [6385]: _SERVER found -- 09:30:24.942 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 09:30:24.942 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 09:30:24.942 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=3s6vleb95meam4t8f2i57shdcll5r2rl -- 09:30:24.942 INFO [6385]: QUERY_STRING = -- 09:30:24.942 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:30:24.975 INFO [6385]: COREGRADE is stopping... -- 09:30:24.975 DEBUG [6385]: Closing database connection -- 09:30:24.976 SQL [6385]: pgsql_close() -- 09:30:25.121 INFO [6385]: COREGRADE is starting... -- 09:30:25.121 INFO [6385]: Version from config: 1.0 -- 09:30:25.121 DEBUG [6385]: Connecting to database... -- 09:30:25.121 DEBUG [6385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:30:25.121 SQL [6385]: pgsql_db_connect() -- 09:30:25.129 INFO [6384]: COREGRADE is starting... -- 09:30:25.130 INFO [6384]: Version from config: 1.0 -- 09:30:25.130 DEBUG [6384]: Connecting to database... -- 09:30:25.130 DEBUG [6384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:30:25.130 SQL [6384]: pgsql_db_connect() -- 09:30:25.126 DEBUG [6385]: Database connection successful -- 09:30:25.126 INFO [6385]: _SERVER found -- 09:30:25.126 INFO [6385]: REMOTE_ADDR = 192.168.1.13 -- 09:30:25.126 INFO [6385]: SERVER_NAME = oameye.works.coregrade.com -- 09:30:25.126 INFO [6385]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=3s6vleb95meam4t8f2i57shdcll5r2rl -- 09:30:25.126 INFO [6385]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:30:25.126 INFO [6385]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:30:25.137 INFO [6385]: COREGRADE is stopping... -- 09:30:25.137 DEBUG [6385]: Closing database connection -- 09:30:25.137 SQL [6385]: pgsql_close() -- 09:30:25.134 DEBUG [6384]: Database connection successful -- 09:30:25.134 INFO [6384]: _SERVER found -- 09:30:25.134 INFO [6384]: REMOTE_ADDR = 192.168.1.13 -- 09:30:25.134 INFO [6384]: SERVER_NAME = oameye.works.coregrade.com -- 09:30:25.134 INFO [6384]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=3s6vleb95meam4t8f2i57shdcll5r2rl -- 09:30:25.134 INFO [6384]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:30:25.134 INFO [6384]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:30:25.146 INFO [6384]: COREGRADE is stopping... -- 09:30:25.146 DEBUG [6384]: Closing database connection -- 09:30:25.146 SQL [6384]: pgsql_close() -- 09:30:51.721 INFO [6381]: COREGRADE is starting... -- 09:30:51.721 INFO [6381]: Version from config: 1.0 -- 09:30:51.721 DEBUG [6381]: Connecting to database... -- 09:30:51.721 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:30:51.721 SQL [6381]: pgsql_db_connect() -- 09:30:51.726 DEBUG [6381]: Database connection successful -- 09:30:51.726 INFO [6381]: _SERVER found -- 09:30:51.726 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 09:30:51.726 INFO [6381]: SERVER_NAME = oameye.works.coregrade.com -- 09:30:51.726 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=3s6vleb95meam4t8f2i57shdcll5r2rl; _gat_gtag_UA_54829827_2=1 -- 09:30:51.726 INFO [6381]: QUERY_STRING = -- 09:30:51.726 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:30:51.760 INFO [6381]: COREGRADE is stopping... -- 09:30:51.760 DEBUG [6381]: Closing database connection -- 09:30:51.760 SQL [6381]: pgsql_close() -- 09:30:51.886 INFO [6381]: COREGRADE is starting... -- 09:30:51.886 INFO [6381]: Version from config: 1.0 -- 09:30:51.886 DEBUG [6381]: Connecting to database... -- 09:30:51.887 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:30:51.887 SQL [6381]: pgsql_db_connect() -- 09:30:51.894 INFO [6405]: COREGRADE is starting... -- 09:30:51.894 INFO [6405]: Version from config: 1.0 -- 09:30:51.894 DEBUG [6405]: Connecting to database... -- 09:30:51.894 DEBUG [6405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:30:51.894 SQL [6405]: pgsql_db_connect() -- 09:30:51.891 DEBUG [6381]: Database connection successful -- 09:30:51.891 INFO [6381]: _SERVER found -- 09:30:51.891 INFO [6381]: REMOTE_ADDR = 192.168.1.13 -- 09:30:51.891 INFO [6381]: SERVER_NAME = oameye.works.coregrade.com -- 09:30:51.891 INFO [6381]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=3s6vleb95meam4t8f2i57shdcll5r2rl; _gat_gtag_UA_54829827_2=1 -- 09:30:51.891 INFO [6381]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:30:51.891 INFO [6381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:30:51.903 INFO [6381]: COREGRADE is stopping... -- 09:30:51.903 DEBUG [6381]: Closing database connection -- 09:30:51.903 SQL [6381]: pgsql_close() -- 09:30:51.899 DEBUG [6405]: Database connection successful -- 09:30:51.899 INFO [6405]: _SERVER found -- 09:30:51.899 INFO [6405]: REMOTE_ADDR = 192.168.1.13 -- 09:30:51.899 INFO [6405]: SERVER_NAME = oameye.works.coregrade.com -- 09:30:51.899 INFO [6405]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=3s6vleb95meam4t8f2i57shdcll5r2rl; _gat_gtag_UA_54829827_2=1 -- 09:30:51.899 INFO [6405]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:30:51.899 INFO [6405]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:30:51.910 INFO [6405]: COREGRADE is stopping... -- 09:30:51.910 DEBUG [6405]: Closing database connection -- 09:30:51.910 SQL [6405]: pgsql_close() -- 09:31:17.740 INFO [13483]: COREGRADE is starting... -- 09:31:17.740 INFO [13483]: Version from config: 1.0 -- 09:31:17.740 DEBUG [13483]: Connecting to database... -- 09:31:17.740 DEBUG [13483]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:31:17.740 SQL [13483]: pgsql_db_connect() -- 09:31:17.744 DEBUG [13483]: Database connection successful -- 09:31:17.744 INFO [13483]: _SERVER found -- 09:31:17.744 INFO [13483]: REMOTE_ADDR = 192.168.1.13 -- 09:31:17.744 INFO [13483]: SERVER_NAME = oameye.works.coregrade.com -- 09:31:17.744 INFO [13483]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=3s6vleb95meam4t8f2i57shdcll5r2rl; _gat_gtag_UA_54829827_2=1 -- 09:31:17.744 INFO [13483]: QUERY_STRING = -- 09:31:17.744 INFO [13483]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:31:17.783 INFO [13483]: COREGRADE is stopping... -- 09:31:17.783 DEBUG [13483]: Closing database connection -- 09:31:17.783 SQL [13483]: pgsql_close() -- 09:31:17.937 INFO [13483]: COREGRADE is starting... -- 09:31:17.937 INFO [13483]: Version from config: 1.0 -- 09:31:17.937 DEBUG [13483]: Connecting to database... -- 09:31:17.937 DEBUG [13483]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:31:17.937 SQL [13483]: pgsql_db_connect() -- 09:31:17.951 INFO [7017]: COREGRADE is starting... -- 09:31:17.951 INFO [7017]: Version from config: 1.0 -- 09:31:17.951 DEBUG [7017]: Connecting to database... -- 09:31:17.951 DEBUG [7017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:31:17.951 SQL [7017]: pgsql_db_connect() -- 09:31:17.941 DEBUG [13483]: Database connection successful -- 09:31:17.941 INFO [13483]: _SERVER found -- 09:31:17.941 INFO [13483]: REMOTE_ADDR = 192.168.1.13 -- 09:31:17.941 INFO [13483]: SERVER_NAME = oameye.works.coregrade.com -- 09:31:17.941 INFO [13483]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=3s6vleb95meam4t8f2i57shdcll5r2rl; _gat_gtag_UA_54829827_2=1 -- 09:31:17.941 INFO [13483]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:31:17.941 INFO [13483]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:31:17.953 INFO [13483]: COREGRADE is stopping... -- 09:31:17.953 DEBUG [13483]: Closing database connection -- 09:31:17.953 SQL [13483]: pgsql_close() -- 09:31:17.956 DEBUG [7017]: Database connection successful -- 09:31:17.956 INFO [7017]: _SERVER found -- 09:31:17.956 INFO [7017]: REMOTE_ADDR = 192.168.1.13 -- 09:31:17.956 INFO [7017]: SERVER_NAME = oameye.works.coregrade.com -- 09:31:17.956 INFO [7017]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=3s6vleb95meam4t8f2i57shdcll5r2rl; _gat_gtag_UA_54829827_2=1 -- 09:31:17.956 INFO [7017]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:31:17.956 INFO [7017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:31:17.968 INFO [7017]: COREGRADE is stopping... -- 09:31:17.968 DEBUG [7017]: Closing database connection -- 09:31:17.968 SQL [7017]: pgsql_close() -- 09:31:37.249 INFO [7159]: COREGRADE is starting... -- 09:31:37.250 INFO [7159]: Version from config: 1.0 -- 09:31:37.250 DEBUG [7159]: Connecting to database... -- 09:31:37.250 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:31:37.250 SQL [7159]: pgsql_db_connect() -- 09:31:37.254 DEBUG [7159]: Database connection successful -- 09:31:37.254 INFO [7159]: _SERVER found -- 09:31:37.254 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 09:31:37.254 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 09:31:37.254 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=3s6vleb95meam4t8f2i57shdcll5r2rl -- 09:31:37.254 INFO [7159]: QUERY_STRING = -- 09:31:37.254 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:31:37.287 INFO [7159]: COREGRADE is stopping... -- 09:31:37.287 DEBUG [7159]: Closing database connection -- 09:31:37.287 SQL [7159]: pgsql_close() -- 09:31:37.417 INFO [7159]: COREGRADE is starting... -- 09:31:37.418 INFO [7159]: Version from config: 1.0 -- 09:31:37.418 DEBUG [7159]: Connecting to database... -- 09:31:37.418 DEBUG [7159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:31:37.418 SQL [7159]: pgsql_db_connect() -- 09:31:37.424 INFO [13593]: COREGRADE is starting... -- 09:31:37.424 INFO [13593]: Version from config: 1.0 -- 09:31:37.424 DEBUG [13593]: Connecting to database... -- 09:31:37.424 DEBUG [13593]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:31:37.424 SQL [13593]: pgsql_db_connect() -- 09:31:37.422 DEBUG [7159]: Database connection successful -- 09:31:37.422 INFO [7159]: _SERVER found -- 09:31:37.422 INFO [7159]: REMOTE_ADDR = 192.168.1.13 -- 09:31:37.422 INFO [7159]: SERVER_NAME = oameye.works.coregrade.com -- 09:31:37.422 INFO [7159]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=3s6vleb95meam4t8f2i57shdcll5r2rl -- 09:31:37.422 INFO [7159]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:31:37.422 INFO [7159]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:31:37.434 INFO [7159]: COREGRADE is stopping... -- 09:31:37.434 DEBUG [7159]: Closing database connection -- 09:31:37.434 SQL [7159]: pgsql_close() -- 09:31:37.428 DEBUG [13593]: Database connection successful -- 09:31:37.428 INFO [13593]: _SERVER found -- 09:31:37.428 INFO [13593]: REMOTE_ADDR = 192.168.1.13 -- 09:31:37.428 INFO [13593]: SERVER_NAME = oameye.works.coregrade.com -- 09:31:37.428 INFO [13593]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=3s6vleb95meam4t8f2i57shdcll5r2rl -- 09:31:37.428 INFO [13593]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:31:37.428 INFO [13593]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:31:37.440 INFO [13593]: COREGRADE is stopping... -- 09:31:37.440 DEBUG [13593]: Closing database connection -- 09:31:37.440 SQL [13593]: pgsql_close() -- 09:34:36.376 INFO [25228]: COREGRADE is starting... -- 09:34:36.377 INFO [25228]: Version from config: 1.0 -- 09:34:36.377 DEBUG [25228]: Connecting to database... -- 09:34:36.377 DEBUG [25228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:34:36.377 SQL [25228]: pgsql_db_connect() -- 09:34:36.381 DEBUG [25228]: Database connection successful -- 09:34:36.381 INFO [25228]: _SERVER found -- 09:34:36.381 INFO [25228]: REMOTE_ADDR = 192.168.1.13 -- 09:34:36.381 INFO [25228]: SERVER_NAME = oameye.works.coregrade.com -- 09:34:36.381 INFO [25228]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=3s6vleb95meam4t8f2i57shdcll5r2rl -- 09:34:36.381 INFO [25228]: QUERY_STRING = email= -- 09:34:36.381 INFO [25228]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:34:36.425 INFO [25228]: COREGRADE is stopping... -- 09:34:36.425 DEBUG [25228]: Closing database connection -- 09:34:36.425 SQL [25228]: pgsql_close() -- 09:34:36.568 INFO [25228]: COREGRADE is starting... -- 09:34:36.568 INFO [25228]: Version from config: 1.0 -- 09:34:36.568 DEBUG [25228]: Connecting to database... -- 09:34:36.568 DEBUG [25228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:34:36.568 SQL [25228]: pgsql_db_connect() -- 09:34:36.579 INFO [25229]: COREGRADE is starting... -- 09:34:36.580 INFO [25229]: Version from config: 1.0 -- 09:34:36.580 DEBUG [25229]: Connecting to database... -- 09:34:36.580 DEBUG [25229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:34:36.580 SQL [25229]: pgsql_db_connect() -- 09:34:36.572 DEBUG [25228]: Database connection successful -- 09:34:36.572 INFO [25228]: _SERVER found -- 09:34:36.572 INFO [25228]: REMOTE_ADDR = 192.168.1.13 -- 09:34:36.572 INFO [25228]: SERVER_NAME = oameye.works.coregrade.com -- 09:34:36.572 INFO [25228]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1ifqr06ijfk3rglofa46jvi61ievp18h -- 09:34:36.572 INFO [25228]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:34:36.572 INFO [25228]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:34:36.584 INFO [25228]: COREGRADE is stopping... -- 09:34:36.584 DEBUG [25228]: Closing database connection -- 09:34:36.584 SQL [25228]: pgsql_close() -- 09:34:36.584 DEBUG [25229]: Database connection successful -- 09:34:36.584 INFO [25229]: _SERVER found -- 09:34:36.584 INFO [25229]: REMOTE_ADDR = 192.168.1.13 -- 09:34:36.584 INFO [25229]: SERVER_NAME = oameye.works.coregrade.com -- 09:34:36.584 INFO [25229]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1ifqr06ijfk3rglofa46jvi61ievp18h -- 09:34:36.584 INFO [25229]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:34:36.584 INFO [25229]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:34:36.598 INFO [25229]: COREGRADE is stopping... -- 09:34:36.598 DEBUG [25229]: Closing database connection -- 09:34:36.598 SQL [25229]: pgsql_close() -- 09:34:38.405 INFO [25229]: COREGRADE is starting... -- 09:34:38.405 INFO [25229]: Version from config: 1.0 -- 09:34:38.405 DEBUG [25229]: Connecting to database... -- 09:34:38.405 DEBUG [25229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:34:38.405 SQL [25229]: pgsql_db_connect() -- 09:34:38.406 INFO [25228]: COREGRADE is starting... -- 09:34:38.406 INFO [25228]: Version from config: 1.0 -- 09:34:38.406 DEBUG [25228]: Connecting to database... -- 09:34:38.406 DEBUG [25228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:34:38.406 SQL [25228]: pgsql_db_connect() -- 09:34:38.409 DEBUG [25228]: Database connection successful -- 09:34:38.410 INFO [25228]: _SERVER found -- 09:34:38.410 INFO [25228]: REMOTE_ADDR = 192.168.1.13 -- 09:34:38.410 INFO [25228]: SERVER_NAME = oameye.works.coregrade.com -- 09:34:38.410 INFO [25228]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1ifqr06ijfk3rglofa46jvi61ievp18h; _gat_gtag_UA_54829827_2=1 -- 09:34:38.410 INFO [25228]: QUERY_STRING = /auth -- 09:34:38.410 INFO [25228]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:34:38.444 INFO [25228]: COREGRADE is stopping... -- 09:34:38.444 DEBUG [25228]: Closing database connection -- 09:34:38.444 SQL [25228]: pgsql_close() -- 09:34:38.409 DEBUG [25229]: Database connection successful -- 09:34:38.409 INFO [25229]: _SERVER found -- 09:34:38.409 INFO [25229]: REMOTE_ADDR = 192.168.1.13 -- 09:34:38.409 INFO [25229]: SERVER_NAME = oameye.works.coregrade.com -- 09:34:38.409 INFO [25229]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1ifqr06ijfk3rglofa46jvi61ievp18h; _gat_gtag_UA_54829827_2=1 -- 09:34:38.409 INFO [25229]: QUERY_STRING = /welcome/viewLogin -- 09:34:38.409 INFO [25229]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:34:38.446 INFO [25229]: COREGRADE is stopping... -- 09:34:38.446 DEBUG [25229]: Closing database connection -- 09:34:38.446 SQL [25229]: pgsql_close() -- 09:34:38.623 INFO [25228]: COREGRADE is starting... -- 09:34:38.624 INFO [25228]: Version from config: 1.0 -- 09:34:38.624 DEBUG [25228]: Connecting to database... -- 09:34:38.624 DEBUG [25228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:34:38.624 SQL [25228]: pgsql_db_connect() -- 09:34:38.628 DEBUG [25228]: Database connection successful -- 09:34:38.628 INFO [25228]: _SERVER found -- 09:34:38.628 INFO [25228]: REMOTE_ADDR = 192.168.1.13 -- 09:34:38.628 INFO [25228]: SERVER_NAME = oameye.works.coregrade.com -- 09:34:38.628 INFO [25228]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1ifqr06ijfk3rglofa46jvi61ievp18h; _gat_gtag_UA_54829827_2=1 -- 09:34:38.628 INFO [25228]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 09:34:38.628 INFO [25228]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:34:38.640 INFO [25228]: COREGRADE is stopping... -- 09:34:38.640 DEBUG [25228]: Closing database connection -- 09:34:38.640 SQL [25228]: pgsql_close() -- 09:34:38.693 INFO [25230]: COREGRADE is starting... -- 09:34:38.693 INFO [25230]: Version from config: 1.0 -- 09:34:38.693 DEBUG [25230]: Connecting to database... -- 09:34:38.693 DEBUG [25230]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:34:38.693 SQL [25230]: pgsql_db_connect() -- 09:34:38.697 DEBUG [25230]: Database connection successful -- 09:34:38.697 INFO [25230]: _SERVER found -- 09:34:38.697 INFO [25230]: REMOTE_ADDR = 192.168.1.13 -- 09:34:38.697 INFO [25230]: SERVER_NAME = oameye.works.coregrade.com -- 09:34:38.697 INFO [25230]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1ifqr06ijfk3rglofa46jvi61ievp18h; _gat_gtag_UA_54829827_2=1 -- 09:34:38.697 INFO [25230]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:34:38.697 INFO [25230]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:34:38.712 INFO [25230]: COREGRADE is stopping... -- 09:34:38.712 DEBUG [25230]: Closing database connection -- 09:34:38.712 SQL [25230]: pgsql_close() -- 09:34:59.141 INFO [25231]: COREGRADE is starting... -- 09:34:59.141 INFO [25231]: Version from config: 1.0 -- 09:34:59.141 DEBUG [25231]: Connecting to database... -- 09:34:59.141 DEBUG [25231]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:34:59.141 SQL [25231]: pgsql_db_connect() -- 09:34:59.146 DEBUG [25231]: Database connection successful -- 09:34:59.146 INFO [25231]: _SERVER found -- 09:34:59.146 INFO [25231]: REMOTE_ADDR = 192.168.1.13 -- 09:34:59.146 INFO [25231]: SERVER_NAME = oameye.works.coregrade.com -- 09:34:59.146 INFO [25231]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1ifqr06ijfk3rglofa46jvi61ievp18h; _gat_gtag_UA_54829827_2=1 -- 09:34:59.146 INFO [25231]: QUERY_STRING = -- 09:34:59.146 INFO [25231]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:34:59.188 INFO [25231]: COREGRADE is stopping... -- 09:34:59.188 DEBUG [25231]: Closing database connection -- 09:34:59.188 SQL [25231]: pgsql_close() -- 09:34:59.336 INFO [25231]: COREGRADE is starting... -- 09:34:59.337 INFO [25231]: Version from config: 1.0 -- 09:34:59.337 DEBUG [25231]: Connecting to database... -- 09:34:59.337 DEBUG [25231]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:34:59.337 SQL [25231]: pgsql_db_connect() -- 09:34:59.349 INFO [25232]: COREGRADE is starting... -- 09:34:59.349 INFO [25232]: Version from config: 1.0 -- 09:34:59.349 DEBUG [25232]: Connecting to database... -- 09:34:59.349 DEBUG [25232]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:34:59.349 SQL [25232]: pgsql_db_connect() -- 09:34:59.341 DEBUG [25231]: Database connection successful -- 09:34:59.341 INFO [25231]: _SERVER found -- 09:34:59.341 INFO [25231]: REMOTE_ADDR = 192.168.1.13 -- 09:34:59.341 INFO [25231]: SERVER_NAME = oameye.works.coregrade.com -- 09:34:59.341 INFO [25231]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1ifqr06ijfk3rglofa46jvi61ievp18h; _gat_gtag_UA_54829827_2=1 -- 09:34:59.341 INFO [25231]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:34:59.341 INFO [25231]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:34:59.353 INFO [25231]: COREGRADE is stopping... -- 09:34:59.353 DEBUG [25231]: Closing database connection -- 09:34:59.353 SQL [25231]: pgsql_close() -- 09:34:59.353 DEBUG [25232]: Database connection successful -- 09:34:59.353 INFO [25232]: _SERVER found -- 09:34:59.353 INFO [25232]: REMOTE_ADDR = 192.168.1.13 -- 09:34:59.353 INFO [25232]: SERVER_NAME = oameye.works.coregrade.com -- 09:34:59.353 INFO [25232]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1ifqr06ijfk3rglofa46jvi61ievp18h; _gat_gtag_UA_54829827_2=1 -- 09:34:59.353 INFO [25232]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:34:59.353 INFO [25232]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:34:59.368 INFO [25232]: COREGRADE is stopping... -- 09:34:59.368 DEBUG [25232]: Closing database connection -- 09:34:59.368 SQL [25232]: pgsql_close() -- 09:35:12.459 INFO [25238]: COREGRADE is starting... -- 09:35:12.459 INFO [25238]: Version from config: 1.0 -- 09:35:12.459 DEBUG [25238]: Connecting to database... -- 09:35:12.459 DEBUG [25238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:35:12.459 SQL [25238]: pgsql_db_connect() -- 09:35:12.463 DEBUG [25238]: Database connection successful -- 09:35:12.463 INFO [25238]: _SERVER found -- 09:35:12.463 INFO [25238]: REMOTE_ADDR = 192.168.1.13 -- 09:35:12.463 INFO [25238]: SERVER_NAME = oameye.works.coregrade.com -- 09:35:12.463 INFO [25238]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1ifqr06ijfk3rglofa46jvi61ievp18h; _gat_gtag_UA_54829827_2=1 -- 09:35:12.463 INFO [25238]: QUERY_STRING = -- 09:35:12.463 INFO [25238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:35:12.506 INFO [25238]: COREGRADE is stopping... -- 09:35:12.506 DEBUG [25238]: Closing database connection -- 09:35:12.506 SQL [25238]: pgsql_close() -- 09:35:13.059 INFO [25238]: COREGRADE is starting... -- 09:35:13.060 INFO [25238]: Version from config: 1.0 -- 09:35:13.060 DEBUG [25238]: Connecting to database... -- 09:35:13.060 DEBUG [25238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:35:13.060 SQL [25238]: pgsql_db_connect() -- 09:35:13.064 DEBUG [25238]: Database connection successful -- 09:35:13.064 INFO [25238]: _SERVER found -- 09:35:13.064 INFO [25238]: REMOTE_ADDR = 192.168.1.13 -- 09:35:13.064 INFO [25238]: SERVER_NAME = oameye.works.coregrade.com -- 09:35:13.064 INFO [25238]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1ifqr06ijfk3rglofa46jvi61ievp18h; _gat_gtag_UA_54829827_2=1 -- 09:35:13.064 INFO [25238]: QUERY_STRING = /favicon.ico -- 09:35:13.064 INFO [25238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:35:13.076 INFO [25238]: COREGRADE is stopping... -- 09:35:13.076 DEBUG [25238]: Closing database connection -- 09:35:13.076 SQL [25238]: pgsql_close() -- 09:36:42.740 INFO [25239]: COREGRADE is starting... -- 09:36:42.741 INFO [25239]: Version from config: 1.0 -- 09:36:42.741 DEBUG [25239]: Connecting to database... -- 09:36:42.741 DEBUG [25239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:36:42.741 SQL [25239]: pgsql_db_connect() -- 09:36:42.745 DEBUG [25239]: Database connection successful -- 09:36:42.745 INFO [25239]: _SERVER found -- 09:36:42.745 INFO [25239]: REMOTE_ADDR = 192.168.1.13 -- 09:36:42.745 INFO [25239]: SERVER_NAME = oameye.works.coregrade.com -- 09:36:42.745 INFO [25239]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1ifqr06ijfk3rglofa46jvi61ievp18h -- 09:36:42.745 INFO [25239]: QUERY_STRING = -- 09:36:42.745 INFO [25239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:36:42.788 INFO [25239]: COREGRADE is stopping... -- 09:36:42.788 DEBUG [25239]: Closing database connection -- 09:36:42.788 SQL [25239]: pgsql_close() -- 09:36:43.002 INFO [25239]: COREGRADE is starting... -- 09:36:43.002 INFO [25239]: Version from config: 1.0 -- 09:36:43.002 DEBUG [25239]: Connecting to database... -- 09:36:43.002 DEBUG [25239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:36:43.002 SQL [25239]: pgsql_db_connect() -- 09:36:43.010 INFO [25240]: COREGRADE is starting... -- 09:36:43.011 INFO [25240]: Version from config: 1.0 -- 09:36:43.011 DEBUG [25240]: Connecting to database... -- 09:36:43.011 DEBUG [25240]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:36:43.011 SQL [25240]: pgsql_db_connect() -- 09:36:43.006 DEBUG [25239]: Database connection successful -- 09:36:43.006 INFO [25239]: _SERVER found -- 09:36:43.006 INFO [25239]: REMOTE_ADDR = 192.168.1.13 -- 09:36:43.006 INFO [25239]: SERVER_NAME = oameye.works.coregrade.com -- 09:36:43.006 INFO [25239]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1ifqr06ijfk3rglofa46jvi61ievp18h; _gat_gtag_UA_54829827_2=1 -- 09:36:43.006 INFO [25239]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:36:43.006 INFO [25239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:36:43.018 INFO [25239]: COREGRADE is stopping... -- 09:36:43.018 DEBUG [25239]: Closing database connection -- 09:36:43.018 SQL [25239]: pgsql_close() -- 09:36:43.015 DEBUG [25240]: Database connection successful -- 09:36:43.015 INFO [25240]: _SERVER found -- 09:36:43.015 INFO [25240]: REMOTE_ADDR = 192.168.1.13 -- 09:36:43.015 INFO [25240]: SERVER_NAME = oameye.works.coregrade.com -- 09:36:43.015 INFO [25240]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1ifqr06ijfk3rglofa46jvi61ievp18h; _gat_gtag_UA_54829827_2=1 -- 09:36:43.015 INFO [25240]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:36:43.015 INFO [25240]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:36:43.029 INFO [25240]: COREGRADE is stopping... -- 09:36:43.029 DEBUG [25240]: Closing database connection -- 09:36:43.029 SQL [25240]: pgsql_close() -- 09:37:38.227 INFO [25229]: COREGRADE is starting... -- 09:37:38.227 INFO [25229]: Version from config: 1.0 -- 09:37:38.227 DEBUG [25229]: Connecting to database... -- 09:37:38.227 DEBUG [25229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:37:38.227 SQL [25229]: pgsql_db_connect() -- 09:37:38.232 DEBUG [25229]: Database connection successful -- 09:37:38.232 INFO [25229]: _SERVER found -- 09:37:38.232 INFO [25229]: REMOTE_ADDR = 192.168.1.13 -- 09:37:38.232 INFO [25229]: SERVER_NAME = oameye.works.coregrade.com -- 09:37:38.232 INFO [25229]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1ifqr06ijfk3rglofa46jvi61ievp18h; _gat_gtag_UA_54829827_2=1 -- 09:37:38.232 INFO [25229]: QUERY_STRING = -- 09:37:38.232 INFO [25229]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:37:38.271 INFO [25229]: COREGRADE is stopping... -- 09:37:38.271 DEBUG [25229]: Closing database connection -- 09:37:38.271 SQL [25229]: pgsql_close() -- 09:37:38.434 INFO [25229]: COREGRADE is starting... -- 09:37:38.434 INFO [25229]: Version from config: 1.0 -- 09:37:38.434 DEBUG [25229]: Connecting to database... -- 09:37:38.434 DEBUG [25229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:37:38.434 SQL [25229]: pgsql_db_connect() -- 09:37:38.441 INFO [25228]: COREGRADE is starting... -- 09:37:38.441 INFO [25228]: Version from config: 1.0 -- 09:37:38.441 DEBUG [25228]: Connecting to database... -- 09:37:38.441 DEBUG [25228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:37:38.441 SQL [25228]: pgsql_db_connect() -- 09:37:38.438 DEBUG [25229]: Database connection successful -- 09:37:38.438 INFO [25229]: _SERVER found -- 09:37:38.438 INFO [25229]: REMOTE_ADDR = 192.168.1.13 -- 09:37:38.438 INFO [25229]: SERVER_NAME = oameye.works.coregrade.com -- 09:37:38.438 INFO [25229]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1ifqr06ijfk3rglofa46jvi61ievp18h; _gat_gtag_UA_54829827_2=1 -- 09:37:38.438 INFO [25229]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:37:38.438 INFO [25229]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:37:38.450 INFO [25229]: COREGRADE is stopping... -- 09:37:38.450 DEBUG [25229]: Closing database connection -- 09:37:38.450 SQL [25229]: pgsql_close() -- 09:37:38.446 DEBUG [25228]: Database connection successful -- 09:37:38.446 INFO [25228]: _SERVER found -- 09:37:38.446 INFO [25228]: REMOTE_ADDR = 192.168.1.13 -- 09:37:38.446 INFO [25228]: SERVER_NAME = oameye.works.coregrade.com -- 09:37:38.446 INFO [25228]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1ifqr06ijfk3rglofa46jvi61ievp18h; _gat_gtag_UA_54829827_2=1 -- 09:37:38.446 INFO [25228]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:37:38.446 INFO [25228]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:37:38.458 INFO [25228]: COREGRADE is stopping... -- 09:37:38.458 DEBUG [25228]: Closing database connection -- 09:37:38.458 SQL [25228]: pgsql_close() -- 09:38:18.635 INFO [25230]: COREGRADE is starting... -- 09:38:18.635 INFO [25230]: Version from config: 1.0 -- 09:38:18.635 DEBUG [25230]: Connecting to database... -- 09:38:18.635 DEBUG [25230]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:38:18.635 SQL [25230]: pgsql_db_connect() -- 09:38:18.640 DEBUG [25230]: Database connection successful -- 09:38:18.640 INFO [25230]: _SERVER found -- 09:38:18.640 INFO [25230]: REMOTE_ADDR = 192.168.1.13 -- 09:38:18.640 INFO [25230]: SERVER_NAME = oameye.works.coregrade.com -- 09:38:18.640 INFO [25230]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1ifqr06ijfk3rglofa46jvi61ievp18h -- 09:38:18.640 INFO [25230]: QUERY_STRING = -- 09:38:18.640 INFO [25230]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:38:18.683 INFO [25230]: COREGRADE is stopping... -- 09:38:18.684 DEBUG [25230]: Closing database connection -- 09:38:18.684 SQL [25230]: pgsql_close() -- 09:38:18.837 INFO [25230]: COREGRADE is starting... -- 09:38:18.837 INFO [25230]: Version from config: 1.0 -- 09:38:18.837 DEBUG [25230]: Connecting to database... -- 09:38:18.837 DEBUG [25230]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:38:18.837 SQL [25230]: pgsql_db_connect() -- 09:38:18.846 INFO [25231]: COREGRADE is starting... -- 09:38:18.847 INFO [25231]: Version from config: 1.0 -- 09:38:18.847 DEBUG [25231]: Connecting to database... -- 09:38:18.847 DEBUG [25231]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:38:18.847 SQL [25231]: pgsql_db_connect() -- 09:38:18.841 DEBUG [25230]: Database connection successful -- 09:38:18.841 INFO [25230]: _SERVER found -- 09:38:18.841 INFO [25230]: REMOTE_ADDR = 192.168.1.13 -- 09:38:18.841 INFO [25230]: SERVER_NAME = oameye.works.coregrade.com -- 09:38:18.841 INFO [25230]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1ifqr06ijfk3rglofa46jvi61ievp18h -- 09:38:18.841 INFO [25230]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:38:18.841 INFO [25230]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:38:18.853 INFO [25230]: COREGRADE is stopping... -- 09:38:18.853 DEBUG [25230]: Closing database connection -- 09:38:18.853 SQL [25230]: pgsql_close() -- 09:38:18.851 DEBUG [25231]: Database connection successful -- 09:38:18.851 INFO [25231]: _SERVER found -- 09:38:18.851 INFO [25231]: REMOTE_ADDR = 192.168.1.13 -- 09:38:18.851 INFO [25231]: SERVER_NAME = oameye.works.coregrade.com -- 09:38:18.851 INFO [25231]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1ifqr06ijfk3rglofa46jvi61ievp18h -- 09:38:18.851 INFO [25231]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:38:18.851 INFO [25231]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:38:18.864 INFO [25231]: COREGRADE is stopping... -- 09:38:18.864 DEBUG [25231]: Closing database connection -- 09:38:18.864 SQL [25231]: pgsql_close() -- 09:47:02.492 INFO [25232]: COREGRADE is starting... -- 09:47:02.493 INFO [25232]: Version from config: 1.0 -- 09:47:02.493 DEBUG [25232]: Connecting to database... -- 09:47:02.493 DEBUG [25232]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:47:02.493 SQL [25232]: pgsql_db_connect() -- 09:47:02.497 DEBUG [25232]: Database connection successful -- 09:47:02.497 INFO [25232]: _SERVER found -- 09:47:02.497 INFO [25232]: REMOTE_ADDR = 192.168.1.13 -- 09:47:02.497 INFO [25232]: SERVER_NAME = oameye.works.coregrade.com -- 09:47:02.497 INFO [25232]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1ifqr06ijfk3rglofa46jvi61ievp18h -- 09:47:02.497 INFO [25232]: QUERY_STRING = -- 09:47:02.497 INFO [25232]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:47:02.542 INFO [25232]: COREGRADE is stopping... -- 09:47:02.542 DEBUG [25232]: Closing database connection -- 09:47:02.542 SQL [25232]: pgsql_close() -- 09:47:02.822 INFO [25232]: COREGRADE is starting... -- 09:47:02.822 INFO [25232]: Version from config: 1.0 -- 09:47:02.822 DEBUG [25232]: Connecting to database... -- 09:47:02.822 DEBUG [25232]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:47:02.822 SQL [25232]: pgsql_db_connect() -- 09:47:02.826 DEBUG [25232]: Database connection successful -- 09:47:02.826 INFO [25232]: _SERVER found -- 09:47:02.826 INFO [25232]: REMOTE_ADDR = 192.168.1.13 -- 09:47:02.826 INFO [25232]: SERVER_NAME = oameye.works.coregrade.com -- 09:47:02.826 INFO [25232]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qp804po1mq017shugvtscftrg994psic -- 09:47:02.826 INFO [25232]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:47:02.826 INFO [25232]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:47:02.838 INFO [25232]: COREGRADE is stopping... -- 09:47:02.838 DEBUG [25232]: Closing database connection -- 09:47:02.838 SQL [25232]: pgsql_close() -- 09:47:02.847 INFO [25238]: COREGRADE is starting... -- 09:47:02.847 INFO [25238]: Version from config: 1.0 -- 09:47:02.847 DEBUG [25238]: Connecting to database... -- 09:47:02.847 DEBUG [25238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:47:02.847 SQL [25238]: pgsql_db_connect() -- 09:47:02.851 DEBUG [25238]: Database connection successful -- 09:47:02.851 INFO [25238]: _SERVER found -- 09:47:02.851 INFO [25238]: REMOTE_ADDR = 192.168.1.13 -- 09:47:02.851 INFO [25238]: SERVER_NAME = oameye.works.coregrade.com -- 09:47:02.851 INFO [25238]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qp804po1mq017shugvtscftrg994psic -- 09:47:02.851 INFO [25238]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:47:02.851 INFO [25238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:47:02.863 INFO [25238]: COREGRADE is stopping... -- 09:47:02.863 DEBUG [25238]: Closing database connection -- 09:47:02.863 SQL [25238]: pgsql_close() -- 09:48:09.797 INFO [25239]: COREGRADE is starting... -- 09:48:09.797 INFO [25239]: Version from config: 1.0 -- 09:48:09.797 DEBUG [25239]: Connecting to database... -- 09:48:09.797 DEBUG [25239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:48:09.797 SQL [25239]: pgsql_db_connect() -- 09:48:09.801 DEBUG [25239]: Database connection successful -- 09:48:09.801 INFO [25239]: _SERVER found -- 09:48:09.801 INFO [25239]: REMOTE_ADDR = 192.168.1.13 -- 09:48:09.801 INFO [25239]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:48:09.801 INFO [25239]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361 -- 09:48:09.801 INFO [25239]: QUERY_STRING = -- 09:48:09.801 INFO [25239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:48:09.837 INFO [25239]: COREGRADE is stopping... -- 09:48:09.837 DEBUG [25239]: Closing database connection -- 09:48:09.837 SQL [25239]: pgsql_close() -- 09:48:10.285 INFO [25239]: COREGRADE is starting... -- 09:48:10.285 INFO [25239]: Version from config: 1.0 -- 09:48:10.285 DEBUG [25239]: Connecting to database... -- 09:48:10.285 DEBUG [25239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:48:10.285 SQL [25239]: pgsql_db_connect() -- 09:48:10.289 DEBUG [25239]: Database connection successful -- 09:48:10.289 INFO [25239]: _SERVER found -- 09:48:10.289 INFO [25239]: REMOTE_ADDR = 192.168.1.13 -- 09:48:10.289 INFO [25239]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:48:10.289 INFO [25239]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=94qrgt52fkivrdg6r7cqkcq8jk4ppo5e -- 09:48:10.289 INFO [25239]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:48:10.289 INFO [25239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:48:10.301 INFO [25239]: COREGRADE is stopping... -- 09:48:10.301 DEBUG [25239]: Closing database connection -- 09:48:10.301 SQL [25239]: pgsql_close() -- 09:48:10.314 INFO [25239]: COREGRADE is starting... -- 09:48:10.314 INFO [25239]: Version from config: 1.0 -- 09:48:10.314 DEBUG [25239]: Connecting to database... -- 09:48:10.314 DEBUG [25239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:48:10.314 SQL [25239]: pgsql_db_connect() -- 09:48:10.318 DEBUG [25239]: Database connection successful -- 09:48:10.318 INFO [25239]: _SERVER found -- 09:48:10.318 INFO [25239]: REMOTE_ADDR = 192.168.1.13 -- 09:48:10.318 INFO [25239]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:48:10.318 INFO [25239]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.74515239.1581010361; ci_session=94qrgt52fkivrdg6r7cqkcq8jk4ppo5e -- 09:48:10.318 INFO [25239]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:48:10.318 INFO [25239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:48:10.330 INFO [25239]: COREGRADE is stopping... -- 09:48:10.330 DEBUG [25239]: Closing database connection -- 09:48:10.330 SQL [25239]: pgsql_close() -- 10:49:52.554 INFO [25240]: COREGRADE is starting... -- 10:49:52.555 INFO [25240]: Version from config: 1.0 -- 10:49:52.555 DEBUG [25240]: Connecting to database... -- 10:49:52.555 DEBUG [25240]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:52.555 SQL [25240]: pgsql_db_connect() -- 10:49:52.560 DEBUG [25240]: Database connection successful -- 10:49:52.560 INFO [25240]: _SERVER found -- 10:49:52.560 INFO [25240]: REMOTE_ADDR = 192.168.1.13 -- 10:49:52.560 INFO [25240]: SERVER_NAME = oameye.works.coregrade.com -- 10:49:52.560 INFO [25240]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1254892195.1581303194 -- 10:49:52.560 INFO [25240]: QUERY_STRING = -- 10:49:52.560 INFO [25240]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:49:52.609 INFO [25240]: COREGRADE is stopping... -- 10:49:52.609 DEBUG [25240]: Closing database connection -- 10:49:52.609 SQL [25240]: pgsql_close() -- 10:49:53.096 INFO [25240]: COREGRADE is starting... -- 10:49:53.097 INFO [25240]: Version from config: 1.0 -- 10:49:53.097 DEBUG [25240]: Connecting to database... -- 10:49:53.097 DEBUG [25240]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:53.097 SQL [25240]: pgsql_db_connect() -- 10:49:53.101 DEBUG [25240]: Database connection successful -- 10:49:53.101 INFO [25240]: _SERVER found -- 10:49:53.101 INFO [25240]: REMOTE_ADDR = 192.168.1.13 -- 10:49:53.101 INFO [25240]: SERVER_NAME = oameye.works.coregrade.com -- 10:49:53.101 INFO [25240]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1254892195.1581303194; ci_session=8c8omq4loitkhjosdv3upmmekk6t71pf -- 10:49:53.101 INFO [25240]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 10:49:53.101 INFO [25240]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:49:53.112 INFO [25240]: COREGRADE is stopping... -- 10:49:53.112 DEBUG [25240]: Closing database connection -- 10:49:53.112 SQL [25240]: pgsql_close() -- 10:49:53.136 INFO [25240]: COREGRADE is starting... -- 10:49:53.136 INFO [25240]: Version from config: 1.0 -- 10:49:53.136 DEBUG [25240]: Connecting to database... -- 10:49:53.136 DEBUG [25240]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:53.136 SQL [25240]: pgsql_db_connect() -- 10:49:53.140 DEBUG [25240]: Database connection successful -- 10:49:53.140 INFO [25240]: _SERVER found -- 10:49:53.140 INFO [25240]: REMOTE_ADDR = 192.168.1.13 -- 10:49:53.140 INFO [25240]: SERVER_NAME = oameye.works.coregrade.com -- 10:49:53.140 INFO [25240]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1254892195.1581303194; ci_session=8c8omq4loitkhjosdv3upmmekk6t71pf -- 10:49:53.140 INFO [25240]: QUERY_STRING = /assets/img/footer_1.jpg -- 10:49:53.140 INFO [25240]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:49:53.151 INFO [25240]: COREGRADE is stopping... -- 10:49:53.151 DEBUG [25240]: Closing database connection -- 10:49:53.151 SQL [25240]: pgsql_close() -- 11:41:28.257 INFO [25232]: COREGRADE is starting... -- 11:41:28.257 INFO [25232]: Version from config: 1.0 -- 11:41:28.257 DEBUG [25232]: Connecting to database... -- 11:41:28.257 DEBUG [25232]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:41:28.257 SQL [25232]: pgsql_db_connect() -- 11:41:28.261 DEBUG [25232]: Database connection successful -- 11:41:28.261 INFO [25232]: _SERVER found -- 11:41:28.261 INFO [25232]: REMOTE_ADDR = 192.168.1.13 -- 11:41:28.261 INFO [25232]: SERVER_NAME = oameye.works.coregrade.com -- 11:41:28.261 INFO [25232]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.548527475.1581341852 -- 11:41:28.261 INFO [25232]: QUERY_STRING = /auth -- 11:41:28.261 INFO [25232]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:41:28.297 INFO [25232]: COREGRADE is stopping... -- 11:41:28.297 DEBUG [25232]: Closing database connection -- 11:41:28.297 SQL [25232]: pgsql_close() -- 11:41:28.456 INFO [25232]: COREGRADE is starting... -- 11:41:28.457 INFO [25232]: Version from config: 1.0 -- 11:41:28.457 DEBUG [25232]: Connecting to database... -- 11:41:28.457 DEBUG [25232]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:41:28.457 SQL [25232]: pgsql_db_connect() -- 11:41:28.461 DEBUG [25232]: Database connection successful -- 11:41:28.461 INFO [25232]: _SERVER found -- 11:41:28.461 INFO [25232]: REMOTE_ADDR = 192.168.1.13 -- 11:41:28.461 INFO [25232]: SERVER_NAME = oameye.works.coregrade.com -- 11:41:28.461 INFO [25232]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.548527475.1581341852; ci_session=j1afno7qqbit1e3h9b9ea1ubs3f2ma2h -- 11:41:28.461 INFO [25232]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:41:28.461 INFO [25232]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:41:28.472 INFO [25232]: COREGRADE is stopping... -- 11:41:28.472 DEBUG [25232]: Closing database connection -- 11:41:28.472 SQL [25232]: pgsql_close() -- 11:41:28.478 INFO [25238]: COREGRADE is starting... -- 11:41:28.479 INFO [25238]: Version from config: 1.0 -- 11:41:28.479 DEBUG [25238]: Connecting to database... -- 11:41:28.479 DEBUG [25238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:41:28.479 SQL [25238]: pgsql_db_connect() -- 11:41:28.482 DEBUG [25238]: Database connection successful -- 11:41:28.483 INFO [25238]: _SERVER found -- 11:41:28.483 INFO [25238]: REMOTE_ADDR = 192.168.1.13 -- 11:41:28.483 INFO [25238]: SERVER_NAME = oameye.works.coregrade.com -- 11:41:28.483 INFO [25238]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.548527475.1581341852; ci_session=j1afno7qqbit1e3h9b9ea1ubs3f2ma2h -- 11:41:28.483 INFO [25238]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:41:28.483 INFO [25238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:41:28.495 INFO [25238]: COREGRADE is stopping... -- 11:41:28.495 DEBUG [25238]: Closing database connection -- 11:41:28.495 SQL [25238]: pgsql_close() -- 12:44:31.739 INFO [25232]: COREGRADE is starting... -- 12:44:31.739 INFO [25232]: Version from config: 1.0 -- 12:44:31.739 DEBUG [25232]: Connecting to database... -- 12:44:31.739 DEBUG [25232]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:44:31.739 SQL [25232]: pgsql_db_connect() -- 12:44:31.744 DEBUG [25232]: Database connection successful -- 12:44:31.744 INFO [25232]: _SERVER found -- 12:44:31.744 INFO [25232]: REMOTE_ADDR = 192.168.1.13 -- 12:44:31.744 INFO [25232]: SERVER_NAME = oameye.works.coregrade.com -- 12:44:31.744 INFO [25232]: QUERY_STRING = -- 12:44:31.744 INFO [25232]: HTTP_X_FORWARDED_FOR = 37.49.230.69 -- 12:44:31.782 INFO [25232]: COREGRADE is stopping... -- 12:44:31.782 DEBUG [25232]: Closing database connection -- 12:44:31.782 SQL [25232]: pgsql_close() -- 14:00:25.244 INFO [25238]: COREGRADE is starting... -- 14:00:25.244 INFO [25238]: Version from config: 1.0 -- 14:00:25.244 DEBUG [25238]: Connecting to database... -- 14:00:25.244 DEBUG [25238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:00:25.244 SQL [25238]: pgsql_db_connect() -- 14:00:25.250 DEBUG [25238]: Database connection successful -- 14:00:25.250 INFO [25238]: _SERVER found -- 14:00:25.250 INFO [25238]: REMOTE_ADDR = 192.168.1.13 -- 14:00:25.250 INFO [25238]: SERVER_NAME = oameye.works.coregrade.com -- 14:00:25.250 INFO [25238]: QUERY_STRING = -- 14:00:25.250 INFO [25238]: HTTP_X_FORWARDED_FOR = 198.143.155.138 -- 14:00:25.292 INFO [25238]: COREGRADE is stopping... -- 14:00:25.292 DEBUG [25238]: Closing database connection -- 14:00:25.292 SQL [25238]: pgsql_close() -- 14:25:17.255 INFO [26031]: COREGRADE is starting... -- 14:25:17.255 INFO [26031]: Version from config: 1.0 -- 14:25:17.255 DEBUG [26031]: Connecting to database... -- 14:25:17.255 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:17.255 SQL [26031]: pgsql_db_connect() -- 14:25:17.260 DEBUG [26031]: Database connection successful -- 14:25:17.260 INFO [26031]: _SERVER found -- 14:25:17.260 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 14:25:17.260 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 14:25:17.260 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310 -- 14:25:17.260 INFO [26031]: QUERY_STRING = /auth -- 14:25:17.260 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:25:17.303 INFO [26031]: COREGRADE is stopping... -- 14:25:17.303 DEBUG [26031]: Closing database connection -- 14:25:17.303 SQL [26031]: pgsql_close() -- 14:25:17.560 INFO [26031]: COREGRADE is starting... -- 14:25:17.561 INFO [26031]: Version from config: 1.0 -- 14:25:17.561 DEBUG [26031]: Connecting to database... -- 14:25:17.561 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:17.561 SQL [26031]: pgsql_db_connect() -- 14:25:17.565 DEBUG [26031]: Database connection successful -- 14:25:17.565 INFO [26031]: _SERVER found -- 14:25:17.565 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 14:25:17.565 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 14:25:17.565 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=6ngi31eg90sec133c0kdg3dneg6ihi3q -- 14:25:17.565 INFO [26031]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:25:17.565 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:25:17.577 INFO [26031]: COREGRADE is stopping... -- 14:25:17.577 DEBUG [26031]: Closing database connection -- 14:25:17.577 SQL [26031]: pgsql_close() -- 14:25:17.605 INFO [26032]: COREGRADE is starting... -- 14:25:17.605 INFO [26032]: Version from config: 1.0 -- 14:25:17.605 DEBUG [26032]: Connecting to database... -- 14:25:17.605 DEBUG [26032]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:17.605 SQL [26032]: pgsql_db_connect() -- 14:25:17.609 DEBUG [26032]: Database connection successful -- 14:25:17.609 INFO [26032]: _SERVER found -- 14:25:17.609 INFO [26032]: REMOTE_ADDR = 192.168.1.13 -- 14:25:17.609 INFO [26032]: SERVER_NAME = oameye.works.coregrade.com -- 14:25:17.609 INFO [26032]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=6ngi31eg90sec133c0kdg3dneg6ihi3q -- 14:25:17.609 INFO [26032]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:25:17.609 INFO [26032]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:25:17.624 INFO [26032]: COREGRADE is stopping... -- 14:25:17.624 DEBUG [26032]: Closing database connection -- 14:25:17.624 SQL [26032]: pgsql_close() -- 14:25:19.246 INFO [26031]: COREGRADE is starting... -- 14:25:19.246 INFO [26031]: Version from config: 1.0 -- 14:25:19.246 DEBUG [26031]: Connecting to database... -- 14:25:19.246 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:19.247 SQL [26031]: pgsql_db_connect() -- 14:25:19.286 INFO [26031]: COREGRADE is starting... -- 14:25:19.287 INFO [26031]: Version from config: 1.0 -- 14:25:19.287 DEBUG [26031]: Connecting to database... -- 14:25:19.287 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:19.287 SQL [26031]: pgsql_db_connect() -- 14:25:19.290 DEBUG [26031]: Database connection successful -- 14:25:19.290 INFO [26031]: _SERVER found -- 14:25:19.290 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 14:25:19.290 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 14:25:19.290 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=6ngi31eg90sec133c0kdg3dneg6ihi3q -- 14:25:19.290 INFO [26031]: QUERY_STRING = -- 14:25:19.290 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:25:19.290 INFO [26031]: SystemStatus()09-09-********~************ -- 14:25:19.290 INFO [26031]: long coregrade_api_main(CVars in, CVars &out) -- 14:25:19.291 INFO [26031]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 14:25:19.291 INFO [26031]: account calls -- 14:25:19.291 INFO [26031]: account_calls() -- 14:25:19.291 INFO [26031]: LoginCoreGradeAccount() -- 14:25:19.291 FLOG_MAX [26031]: REQ_STRING(username) -- 14:25:19.291 FLOG_MAX [26031]: REQ_STRING(password) -- 14:25:19.291 FLOG_MAX [26031]: REQ_STRING(sessionid) -- 14:25:19.291 FLOG_MAX [26031]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:25:19.291 SQL [26031]: pgsql_query() -- 14:25:19.291 SQL [26031]: About to run query: -- 14:25:19.291 SQL [26031]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 14:25:19.294 SQL [26031]: Found rows: 1 -- 14:25:19.294 FLOG_MAX [26031]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 14:25:19.294 INFO [26031]: long SessionCheck(long uid, const char *sessionid, int create ) -- 14:25:19.294 SQL [26031]: pgsql_exec() -- 14:25:19.294 SQL [26031]: About to run query: -- 14:25:19.294 SQL [26031]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 14:25:19.296 SQL [26031]: PQcmdTuples: 1 -- 14:25:19.296 SQL [26031]: Affected rows: 1 -- 14:25:19.296 SQL [26031]: pgsql_exec() -- 14:25:19.296 SQL [26031]: About to run query: -- 14:25:19.296 SQL [26031]: DELETE FROM members_session WHERE member_id=5 -- 14:25:19.296 SQL [26031]: PQcmdTuples: 0 -- 14:25:19.296 SQL [26031]: Affected rows: 0 -- 14:25:19.296 SQL [26031]: pgsql_query() -- 14:25:19.296 SQL [26031]: About to run query: -- 14:25:19.296 SQL [26031]: SELECT * FROM members_session WHERE member_id=5 AND session<>'D18650059E0ECDD74D446C9C7E814E79' -- 14:25:19.297 SQL [26031]: Found rows: 0 -- 14:25:19.297 SQL [26031]: Found rows: 0 -- 14:25:19.297 FLOG_MAX [26031]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:25:19.297 SQL [26031]: pgsql_query() -- 14:25:19.297 SQL [26031]: About to run query: -- 14:25:19.297 SQL [26031]: SELECT * FROM members_session WHERE member_id=5 AND session='D18650059E0ECDD74D446C9C7E814E79' -- 14:25:19.297 SQL [26031]: Found rows: 0 -- 14:25:19.297 SQL [26031]: Found rows: 0 -- 14:25:19.297 FLOG_MAX [26031]: insert_db_record() -- 14:25:19.297 SQL [26031]: pgsql_exec() -- 14:25:19.297 SQL [26031]: About to run query: -- 14:25:19.297 SQL [26031]: INSERT INTO members_session (member_id,session) VALUES ('5','D18650059E0ECDD74D446C9C7E814E79') -- 14:25:19.299 SQL [26031]: PQcmdTuples: 1 -- 14:25:19.299 SQL [26031]: Affected rows: 1 -- 14:25:19.299 FLOG_MAX [26031]: SELECT currval('members_session_id_seq') -- 14:25:19.299 SQL [26031]: pgsql_query() -- 14:25:19.299 SQL [26031]: About to run query: -- 14:25:19.299 SQL [26031]: SELECT currval('members_session_id_seq') -- 14:25:19.299 SQL [26031]: Found rows: 1 -- 14:25:19.299 INFO [26031]: CreateDefaultPage() -- 14:25:19.299 FLOG_MAX [26031]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:25:19.299 SQL [26031]: pgsql_query() -- 14:25:19.299 SQL [26031]: About to run query: -- 14:25:19.299 SQL [26031]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 14:25:19.300 SQL [26031]: Found rows: 1 -- 14:25:19.300 FLOG_MAX [26031]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 14:25:19.300 SQL [26031]: pgsql_query() -- 14:25:19.300 SQL [26031]: About to run query: -- 14:25:19.300 SQL [26031]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 14:25:19.300 SQL [26031]: Found rows: 1 -- 14:25:19.300 INFO [26031]: /CreateDefaultPage() -- 14:25:19.300 INFO [26031]: /LoginCoreGradeAccount() -- 14:25:19.300 INFO [26031]: RET: added=2020-02-05 06:47:23.982154 -- 14:25:19.300 INFO [26031]: RET: email=ameye+11@chiefsoft.com -- 14:25:19.300 INFO [26031]: RET: firstname=Olu -- 14:25:19.300 INFO [26031]: RET: id=5 -- 14:25:19.300 INFO [26031]: RET: last_login= -- 14:25:19.300 INFO [26031]: RET: lastname=Amey -- 14:25:19.300 INFO [26031]: RET: loc=192.168.1.13 -- 14:25:19.300 INFO [26031]: RET: member_id=5 -- 14:25:19.300 INFO [26031]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 14:25:19.300 INFO [26031]: RET: phone= -- 14:25:19.300 INFO [26031]: RET: pid= -- 14:25:19.300 INFO [26031]: RET: result=YES I GET TO BACK END -- 14:25:19.300 INFO [26031]: RET: sessionid=D18650059E0ECDD74D446C9C7E814E79 -- 14:25:19.300 INFO [26031]: RET: status=1 -- 14:25:19.300 INFO [26031]: RET: stauts=OK -- 14:25:19.300 INFO [26031]: RET: username=ameye+11@chiefsoft.com -- 14:25:19.300 INFO [26031]: RET: verified= -- 14:25:19.302 INFO [26031]: COREGRADE is stopping... -- 14:25:19.302 DEBUG [26031]: Closing database connection -- 14:25:19.302 SQL [26031]: pgsql_close() -- 14:25:19.251 DEBUG [26031]: Database connection successful -- 14:25:19.251 INFO [26031]: _SERVER found -- 14:25:19.251 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 14:25:19.251 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 14:25:19.251 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=6ngi31eg90sec133c0kdg3dneg6ihi3q -- 14:25:19.251 INFO [26031]: QUERY_STRING = /auth -- 14:25:19.251 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:25:19.302 INFO [26031]: COREGRADE is stopping... -- 14:25:19.302 DEBUG [26031]: Closing database connection -- 14:25:19.302 SQL [26031]: pgsql_close() -- 14:25:19.336 INFO [26031]: COREGRADE is starting... -- 14:25:19.336 INFO [26031]: Version from config: 1.0 -- 14:25:19.336 DEBUG [26031]: Connecting to database... -- 14:25:19.336 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:19.336 SQL [26031]: pgsql_db_connect() -- 14:25:19.340 DEBUG [26031]: Database connection successful -- 14:25:19.340 INFO [26031]: _SERVER found -- 14:25:19.340 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 14:25:19.340 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 14:25:19.340 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=6ngi31eg90sec133c0kdg3dneg6ihi3q -- 14:25:19.340 INFO [26031]: QUERY_STRING = /member/index -- 14:25:19.340 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:25:19.376 INFO [26031]: COREGRADE is stopping... -- 14:25:19.376 DEBUG [26031]: Closing database connection -- 14:25:19.376 SQL [26031]: pgsql_close() -- 14:25:19.844 INFO [26031]: COREGRADE is starting... -- 14:25:19.844 INFO [26031]: Version from config: 1.0 -- 14:25:19.844 DEBUG [26031]: Connecting to database... -- 14:25:19.844 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:19.844 SQL [26031]: pgsql_db_connect() -- 14:25:19.848 DEBUG [26031]: Database connection successful -- 14:25:19.848 INFO [26031]: _SERVER found -- 14:25:19.848 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 14:25:19.848 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 14:25:19.848 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=6ngi31eg90sec133c0kdg3dneg6ihi3q -- 14:25:19.848 INFO [26031]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:25:19.848 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:25:19.859 INFO [26031]: COREGRADE is stopping... -- 14:25:19.859 DEBUG [26031]: Closing database connection -- 14:25:19.859 SQL [26031]: pgsql_close() -- 14:25:20.113 INFO [26031]: COREGRADE is starting... -- 14:25:20.113 INFO [26031]: Version from config: 1.0 -- 14:25:20.113 DEBUG [26031]: Connecting to database... -- 14:25:20.113 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:20.113 SQL [26031]: pgsql_db_connect() -- 14:25:20.117 DEBUG [26031]: Database connection successful -- 14:25:20.117 INFO [26031]: _SERVER found -- 14:25:20.117 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 14:25:20.117 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 14:25:20.117 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=6ngi31eg90sec133c0kdg3dneg6ihi3q -- 14:25:20.117 INFO [26031]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:25:20.117 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:25:20.128 INFO [26031]: COREGRADE is stopping... -- 14:25:20.128 DEBUG [26031]: Closing database connection -- 14:25:20.128 SQL [26031]: pgsql_close() -- 14:25:20.748 INFO [26031]: COREGRADE is starting... -- 14:25:20.749 INFO [26031]: Version from config: 1.0 -- 14:25:20.749 DEBUG [26031]: Connecting to database... -- 14:25:20.749 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:20.749 SQL [26031]: pgsql_db_connect() -- 14:25:20.753 DEBUG [26031]: Database connection successful -- 14:25:20.753 INFO [26031]: _SERVER found -- 14:25:20.753 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 14:25:20.753 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 14:25:20.753 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=6ngi31eg90sec133c0kdg3dneg6ihi3q -- 14:25:20.753 INFO [26031]: QUERY_STRING = /member/page -- 14:25:20.753 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:25:20.791 INFO [26031]: COREGRADE is stopping... -- 14:25:20.791 DEBUG [26031]: Closing database connection -- 14:25:20.791 SQL [26031]: pgsql_close() -- 14:25:20.940 INFO [26031]: COREGRADE is starting... -- 14:25:20.940 INFO [26031]: Version from config: 1.0 -- 14:25:20.940 DEBUG [26031]: Connecting to database... -- 14:25:20.940 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:20.940 SQL [26031]: pgsql_db_connect() -- 14:25:20.944 DEBUG [26031]: Database connection successful -- 14:25:20.944 INFO [26031]: _SERVER found -- 14:25:20.944 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 14:25:20.944 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 14:25:20.944 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=6ngi31eg90sec133c0kdg3dneg6ihi3q -- 14:25:20.944 INFO [26031]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:25:20.944 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:25:20.955 INFO [26031]: COREGRADE is stopping... -- 14:25:20.955 DEBUG [26031]: Closing database connection -- 14:25:20.955 SQL [26031]: pgsql_close() -- 14:25:21.114 INFO [26031]: COREGRADE is starting... -- 14:25:21.115 INFO [26031]: Version from config: 1.0 -- 14:25:21.115 DEBUG [26031]: Connecting to database... -- 14:25:21.115 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:21.115 SQL [26031]: pgsql_db_connect() -- 14:25:21.119 DEBUG [26031]: Database connection successful -- 14:25:21.119 INFO [26031]: _SERVER found -- 14:25:21.119 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 14:25:21.119 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 14:25:21.119 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=6ngi31eg90sec133c0kdg3dneg6ihi3q -- 14:25:21.119 INFO [26031]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:25:21.119 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:25:21.130 INFO [26031]: COREGRADE is stopping... -- 14:25:21.130 DEBUG [26031]: Closing database connection -- 14:25:21.130 SQL [26031]: pgsql_close() -- 14:25:25.417 INFO [26031]: COREGRADE is starting... -- 14:25:25.418 INFO [26031]: Version from config: 1.0 -- 14:25:25.418 DEBUG [26031]: Connecting to database... -- 14:25:25.418 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:25.418 SQL [26031]: pgsql_db_connect() -- 14:25:25.422 DEBUG [26031]: Database connection successful -- 14:25:25.422 INFO [26031]: _SERVER found -- 14:25:25.422 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 14:25:25.422 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 14:25:25.422 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=6ngi31eg90sec133c0kdg3dneg6ihi3q -- 14:25:25.422 INFO [26031]: QUERY_STRING = /member/viewCardAddAction -- 14:25:25.422 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:25:25.452 INFO [26031]: COREGRADE is stopping... -- 14:25:25.452 DEBUG [26031]: Closing database connection -- 14:25:25.452 SQL [26031]: pgsql_close() -- 14:25:28.428 INFO [26031]: COREGRADE is starting... -- 14:25:28.429 INFO [26031]: Version from config: 1.0 -- 14:25:28.429 DEBUG [26031]: Connecting to database... -- 14:25:28.429 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:28.429 SQL [26031]: pgsql_db_connect() -- 14:25:28.433 DEBUG [26031]: Database connection successful -- 14:25:28.433 INFO [26031]: _SERVER found -- 14:25:28.433 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 14:25:28.433 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 14:25:28.433 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=6ngi31eg90sec133c0kdg3dneg6ihi3q -- 14:25:28.433 INFO [26031]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 14:25:28.433 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:25:28.444 INFO [26031]: COREGRADE is stopping... -- 14:25:28.444 DEBUG [26031]: Closing database connection -- 14:25:28.444 SQL [26031]: pgsql_close() -- 14:25:28.455 INFO [26031]: COREGRADE is starting... -- 14:25:28.456 INFO [26031]: Version from config: 1.0 -- 14:25:28.456 DEBUG [26031]: Connecting to database... -- 14:25:28.456 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:28.456 SQL [26031]: pgsql_db_connect() -- 14:25:28.459 DEBUG [26031]: Database connection successful -- 14:25:28.459 INFO [26031]: _SERVER found -- 14:25:28.459 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 14:25:28.459 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 14:25:28.459 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=6ngi31eg90sec133c0kdg3dneg6ihi3q -- 14:25:28.459 INFO [26031]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 14:25:28.459 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:25:28.470 INFO [26031]: COREGRADE is stopping... -- 14:25:28.470 DEBUG [26031]: Closing database connection -- 14:25:28.470 SQL [26031]: pgsql_close() -- 14:26:02.856 INFO [25228]: COREGRADE is starting... -- 14:26:02.856 INFO [25228]: Version from config: 1.0 -- 14:26:02.856 DEBUG [25228]: Connecting to database... -- 14:26:02.856 DEBUG [25228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:26:02.856 SQL [25228]: pgsql_db_connect() -- 14:26:02.860 DEBUG [25228]: Database connection successful -- 14:26:02.860 INFO [25228]: _SERVER found -- 14:26:02.860 INFO [25228]: REMOTE_ADDR = 192.168.1.13 -- 14:26:02.860 INFO [25228]: SERVER_NAME = oameye.works.coregrade.com -- 14:26:02.860 INFO [25228]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=6ngi31eg90sec133c0kdg3dneg6ihi3q -- 14:26:02.860 INFO [25228]: QUERY_STRING = /member/viewCardAddAction -- 14:26:02.860 INFO [25228]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:26:02.896 INFO [25228]: COREGRADE is stopping... -- 14:26:02.896 DEBUG [25228]: Closing database connection -- 14:26:02.896 SQL [25228]: pgsql_close() -- 14:28:06.393 INFO [25240]: COREGRADE is starting... -- 14:28:06.393 INFO [25240]: Version from config: 1.0 -- 14:28:06.393 DEBUG [25240]: Connecting to database... -- 14:28:06.393 DEBUG [25240]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:28:06.393 SQL [25240]: pgsql_db_connect() -- 14:28:06.397 DEBUG [25240]: Database connection successful -- 14:28:06.397 INFO [25240]: _SERVER found -- 14:28:06.397 INFO [25240]: REMOTE_ADDR = 192.168.1.13 -- 14:28:06.397 INFO [25240]: SERVER_NAME = oameye.works.coregrade.com -- 14:28:06.397 INFO [25240]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=6ngi31eg90sec133c0kdg3dneg6ihi3q -- 14:28:06.397 INFO [25240]: QUERY_STRING = /member/viewCardAddAction -- 14:28:06.397 INFO [25240]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:28:06.431 INFO [25240]: COREGRADE is stopping... -- 14:28:06.431 DEBUG [25240]: Closing database connection -- 14:28:06.431 SQL [25240]: pgsql_close() -- 14:28:08.012 INFO [25240]: COREGRADE is starting... -- 14:28:08.013 INFO [25240]: Version from config: 1.0 -- 14:28:08.013 DEBUG [25240]: Connecting to database... -- 14:28:08.013 DEBUG [25240]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:28:08.013 SQL [25240]: pgsql_db_connect() -- 14:28:08.017 DEBUG [25240]: Database connection successful -- 14:28:08.017 INFO [25240]: _SERVER found -- 14:28:08.017 INFO [25240]: REMOTE_ADDR = 192.168.1.13 -- 14:28:08.017 INFO [25240]: SERVER_NAME = oameye.works.coregrade.com -- 14:28:08.017 INFO [25240]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=6ngi31eg90sec133c0kdg3dneg6ihi3q -- 14:28:08.017 INFO [25240]: QUERY_STRING = /member/viewCardAddAction -- 14:28:08.017 INFO [25240]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:28:08.049 INFO [25240]: COREGRADE is stopping... -- 14:28:08.049 DEBUG [25240]: Closing database connection -- 14:28:08.049 SQL [25240]: pgsql_close() -- 14:28:51.812 INFO [25232]: COREGRADE is starting... -- 14:28:51.812 INFO [25232]: Version from config: 1.0 -- 14:28:51.812 DEBUG [25232]: Connecting to database... -- 14:28:51.812 DEBUG [25232]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:28:51.812 SQL [25232]: pgsql_db_connect() -- 14:28:51.817 DEBUG [25232]: Database connection successful -- 14:28:51.817 INFO [25232]: _SERVER found -- 14:28:51.817 INFO [25232]: REMOTE_ADDR = 192.168.1.13 -- 14:28:51.817 INFO [25232]: SERVER_NAME = oameye.works.coregrade.com -- 14:28:51.817 INFO [25232]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=6ngi31eg90sec133c0kdg3dneg6ihi3q -- 14:28:51.817 INFO [25232]: QUERY_STRING = /member/page -- 14:28:51.817 INFO [25232]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:28:51.858 INFO [25232]: COREGRADE is stopping... -- 14:28:51.858 DEBUG [25232]: Closing database connection -- 14:28:51.858 SQL [25232]: pgsql_close() -- 14:28:52.015 INFO [25232]: COREGRADE is starting... -- 14:28:52.015 INFO [25232]: Version from config: 1.0 -- 14:28:52.015 DEBUG [25232]: Connecting to database... -- 14:28:52.015 DEBUG [25232]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:28:52.015 SQL [25232]: pgsql_db_connect() -- 14:28:52.020 DEBUG [25232]: Database connection successful -- 14:28:52.020 INFO [25232]: _SERVER found -- 14:28:52.020 INFO [25232]: REMOTE_ADDR = 192.168.1.13 -- 14:28:52.020 INFO [25232]: SERVER_NAME = oameye.works.coregrade.com -- 14:28:52.020 INFO [25232]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=6ngi31eg90sec133c0kdg3dneg6ihi3q -- 14:28:52.020 INFO [25232]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:28:52.020 INFO [25232]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:28:52.031 INFO [25232]: COREGRADE is stopping... -- 14:28:52.031 DEBUG [25232]: Closing database connection -- 14:28:52.031 SQL [25232]: pgsql_close() -- 14:28:52.323 INFO [25232]: COREGRADE is starting... -- 14:28:52.323 INFO [25232]: Version from config: 1.0 -- 14:28:52.323 DEBUG [25232]: Connecting to database... -- 14:28:52.323 DEBUG [25232]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:28:52.324 SQL [25232]: pgsql_db_connect() -- 14:28:52.328 DEBUG [25232]: Database connection successful -- 14:28:52.328 INFO [25232]: _SERVER found -- 14:28:52.328 INFO [25232]: REMOTE_ADDR = 192.168.1.13 -- 14:28:52.328 INFO [25232]: SERVER_NAME = oameye.works.coregrade.com -- 14:28:52.328 INFO [25232]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=6ngi31eg90sec133c0kdg3dneg6ihi3q -- 14:28:52.328 INFO [25232]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 14:28:52.328 INFO [25232]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:28:52.339 INFO [25232]: COREGRADE is stopping... -- 14:28:52.339 DEBUG [25232]: Closing database connection -- 14:28:52.339 SQL [25232]: pgsql_close() -- 14:28:52.353 INFO [25238]: COREGRADE is starting... -- 14:28:52.353 INFO [25238]: Version from config: 1.0 -- 14:28:52.353 DEBUG [25238]: Connecting to database... -- 14:28:52.353 DEBUG [25238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:28:52.353 SQL [25238]: pgsql_db_connect() -- 14:28:52.358 DEBUG [25238]: Database connection successful -- 14:28:52.358 INFO [25238]: _SERVER found -- 14:28:52.358 INFO [25238]: REMOTE_ADDR = 192.168.1.13 -- 14:28:52.358 INFO [25238]: SERVER_NAME = oameye.works.coregrade.com -- 14:28:52.358 INFO [25238]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=6ngi31eg90sec133c0kdg3dneg6ihi3q -- 14:28:52.358 INFO [25238]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 14:28:52.358 INFO [25238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:28:52.371 INFO [25238]: COREGRADE is stopping... -- 14:28:52.371 DEBUG [25238]: Closing database connection -- 14:28:52.371 SQL [25238]: pgsql_close() -- 14:28:52.436 INFO [25238]: COREGRADE is starting... -- 14:28:52.436 INFO [25238]: Version from config: 1.0 -- 14:28:52.436 DEBUG [25238]: Connecting to database... -- 14:28:52.436 DEBUG [25238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:28:52.436 SQL [25238]: pgsql_db_connect() -- 14:28:52.440 DEBUG [25238]: Database connection successful -- 14:28:52.440 INFO [25238]: _SERVER found -- 14:28:52.440 INFO [25238]: REMOTE_ADDR = 192.168.1.13 -- 14:28:52.440 INFO [25238]: SERVER_NAME = oameye.works.coregrade.com -- 14:28:52.440 INFO [25238]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=6ngi31eg90sec133c0kdg3dneg6ihi3q -- 14:28:52.440 INFO [25238]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:28:52.440 INFO [25238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:28:52.452 INFO [25238]: COREGRADE is stopping... -- 14:28:52.452 DEBUG [25238]: Closing database connection -- 14:28:52.452 SQL [25238]: pgsql_close() -- 14:28:55.642 INFO [25232]: COREGRADE is starting... -- 14:28:55.642 INFO [25232]: Version from config: 1.0 -- 14:28:55.642 DEBUG [25232]: Connecting to database... -- 14:28:55.642 DEBUG [25232]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:28:55.642 SQL [25232]: pgsql_db_connect() -- 14:28:55.647 DEBUG [25232]: Database connection successful -- 14:28:55.647 INFO [25232]: _SERVER found -- 14:28:55.647 INFO [25232]: REMOTE_ADDR = 192.168.1.13 -- 14:28:55.647 INFO [25232]: SERVER_NAME = oameye.works.coregrade.com -- 14:28:55.647 INFO [25232]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=6ngi31eg90sec133c0kdg3dneg6ihi3q -- 14:28:55.647 INFO [25232]: QUERY_STRING = /member/viewCardAddAction -- 14:28:55.647 INFO [25232]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:28:55.679 INFO [25232]: COREGRADE is stopping... -- 14:28:55.679 DEBUG [25232]: Closing database connection -- 14:28:55.679 SQL [25232]: pgsql_close() -- 14:43:55.720 INFO [4728]: COREGRADE is starting... -- 14:43:55.720 INFO [4728]: Version from config: 1.0 -- 14:43:55.720 DEBUG [4728]: Connecting to database... -- 14:43:55.720 DEBUG [4728]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:43:55.720 SQL [4728]: pgsql_db_connect() -- 14:43:55.725 DEBUG [4728]: Database connection successful -- 14:43:55.725 INFO [4728]: _SERVER found -- 14:43:55.725 INFO [4728]: REMOTE_ADDR = 192.168.1.13 -- 14:43:55.725 INFO [4728]: SERVER_NAME = oameye.works.coregrade.com -- 14:43:55.725 INFO [4728]: QUERY_STRING = -- 14:43:55.725 INFO [4728]: HTTP_X_FORWARDED_FOR = 38.145.96.157 -- 14:43:55.773 INFO [4728]: COREGRADE is stopping... -- 14:43:55.773 DEBUG [4728]: Closing database connection -- 14:43:55.773 SQL [4728]: pgsql_close() -- 14:45:24.899 INFO [4729]: COREGRADE is starting... -- 14:45:24.900 INFO [4729]: Version from config: 1.0 -- 14:45:24.900 DEBUG [4729]: Connecting to database... -- 14:45:24.900 DEBUG [4729]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:45:24.900 SQL [4729]: pgsql_db_connect() -- 14:45:24.904 DEBUG [4729]: Database connection successful -- 14:45:24.904 INFO [4729]: _SERVER found -- 14:45:24.904 INFO [4729]: REMOTE_ADDR = 192.168.1.13 -- 14:45:24.904 INFO [4729]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:45:24.904 INFO [4729]: QUERY_STRING = -- 14:45:24.904 INFO [4729]: HTTP_X_FORWARDED_FOR = 181.214.181.37 -- 14:45:24.947 INFO [4729]: COREGRADE is stopping... -- 14:45:24.948 DEBUG [4729]: Closing database connection -- 14:45:24.948 SQL [4729]: pgsql_close() -- 15:38:30.812 INFO [4730]: COREGRADE is starting... -- 15:38:30.813 INFO [4730]: Version from config: 1.0 -- 15:38:30.813 DEBUG [4730]: Connecting to database... -- 15:38:30.813 DEBUG [4730]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:38:30.813 SQL [4730]: pgsql_db_connect() -- 15:38:30.818 DEBUG [4730]: Database connection successful -- 15:38:30.818 INFO [4730]: _SERVER found -- 15:38:30.818 INFO [4730]: REMOTE_ADDR = 192.168.1.13 -- 15:38:30.818 INFO [4730]: SERVER_NAME = oameye.works.coregrade.com -- 15:38:30.818 INFO [4730]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=6ngi31eg90sec133c0kdg3dneg6ihi3q -- 15:38:30.818 INFO [4730]: QUERY_STRING = /auth -- 15:38:30.818 INFO [4730]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:38:30.862 INFO [4730]: COREGRADE is stopping... -- 15:38:30.862 DEBUG [4730]: Closing database connection -- 15:38:30.862 SQL [4730]: pgsql_close() -- 15:38:31.036 INFO [4730]: COREGRADE is starting... -- 15:38:31.037 INFO [4730]: Version from config: 1.0 -- 15:38:31.037 DEBUG [4730]: Connecting to database... -- 15:38:31.037 DEBUG [4730]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:38:31.037 SQL [4730]: pgsql_db_connect() -- 15:38:31.041 DEBUG [4730]: Database connection successful -- 15:38:31.041 INFO [4730]: _SERVER found -- 15:38:31.041 INFO [4730]: REMOTE_ADDR = 192.168.1.13 -- 15:38:31.041 INFO [4730]: SERVER_NAME = oameye.works.coregrade.com -- 15:38:31.041 INFO [4730]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=jsj177vskcasjcg9n8on1e7q7poiceo4 -- 15:38:31.041 INFO [4730]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:38:31.041 INFO [4730]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:38:31.053 INFO [4730]: COREGRADE is stopping... -- 15:38:31.053 DEBUG [4730]: Closing database connection -- 15:38:31.053 SQL [4730]: pgsql_close() -- 15:38:31.062 INFO [4730]: COREGRADE is starting... -- 15:38:31.063 INFO [4730]: Version from config: 1.0 -- 15:38:31.063 DEBUG [4730]: Connecting to database... -- 15:38:31.063 DEBUG [4730]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:38:31.063 SQL [4730]: pgsql_db_connect() -- 15:38:31.067 DEBUG [4730]: Database connection successful -- 15:38:31.067 INFO [4730]: _SERVER found -- 15:38:31.067 INFO [4730]: REMOTE_ADDR = 192.168.1.13 -- 15:38:31.067 INFO [4730]: SERVER_NAME = oameye.works.coregrade.com -- 15:38:31.067 INFO [4730]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=jsj177vskcasjcg9n8on1e7q7poiceo4 -- 15:38:31.067 INFO [4730]: QUERY_STRING = /app-assets/data/locales/en.json -- 15:38:31.067 INFO [4730]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:38:31.079 INFO [4730]: COREGRADE is stopping... -- 15:38:31.079 DEBUG [4730]: Closing database connection -- 15:38:31.079 SQL [4730]: pgsql_close() -- 15:38:35.226 INFO [4730]: COREGRADE is starting... -- 15:38:35.226 INFO [4730]: Version from config: 1.0 -- 15:38:35.226 DEBUG [4730]: Connecting to database... -- 15:38:35.226 DEBUG [4730]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:38:35.226 SQL [4730]: pgsql_db_connect() -- 15:38:35.231 DEBUG [4730]: Database connection successful -- 15:38:35.231 INFO [4730]: _SERVER found -- 15:38:35.231 INFO [4730]: REMOTE_ADDR = 192.168.1.13 -- 15:38:35.231 INFO [4730]: SERVER_NAME = oameye.works.coregrade.com -- 15:38:35.231 INFO [4730]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=jsj177vskcasjcg9n8on1e7q7poiceo4 -- 15:38:35.231 INFO [4730]: QUERY_STRING = -- 15:38:35.231 INFO [4730]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:38:35.273 INFO [4730]: COREGRADE is stopping... -- 15:38:35.273 DEBUG [4730]: Closing database connection -- 15:38:35.273 SQL [4730]: pgsql_close() -- 15:38:35.501 INFO [4730]: COREGRADE is starting... -- 15:38:35.501 INFO [4730]: Version from config: 1.0 -- 15:38:35.501 DEBUG [4730]: Connecting to database... -- 15:38:35.501 DEBUG [4730]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:38:35.501 SQL [4730]: pgsql_db_connect() -- 15:38:35.511 INFO [4732]: COREGRADE is starting... -- 15:38:35.512 INFO [4732]: Version from config: 1.0 -- 15:38:35.512 DEBUG [4732]: Connecting to database... -- 15:38:35.512 DEBUG [4732]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:38:35.512 SQL [4732]: pgsql_db_connect() -- 15:38:35.505 DEBUG [4730]: Database connection successful -- 15:38:35.505 INFO [4730]: _SERVER found -- 15:38:35.505 INFO [4730]: REMOTE_ADDR = 192.168.1.13 -- 15:38:35.505 INFO [4730]: SERVER_NAME = oameye.works.coregrade.com -- 15:38:35.505 INFO [4730]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=jsj177vskcasjcg9n8on1e7q7poiceo4 -- 15:38:35.505 INFO [4730]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 15:38:35.505 INFO [4730]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:38:35.517 INFO [4730]: COREGRADE is stopping... -- 15:38:35.517 DEBUG [4730]: Closing database connection -- 15:38:35.517 SQL [4730]: pgsql_close() -- 15:38:35.516 DEBUG [4732]: Database connection successful -- 15:38:35.516 INFO [4732]: _SERVER found -- 15:38:35.516 INFO [4732]: REMOTE_ADDR = 192.168.1.13 -- 15:38:35.516 INFO [4732]: SERVER_NAME = oameye.works.coregrade.com -- 15:38:35.516 INFO [4732]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=jsj177vskcasjcg9n8on1e7q7poiceo4 -- 15:38:35.516 INFO [4732]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:38:35.516 INFO [4732]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:38:35.530 INFO [4732]: COREGRADE is stopping... -- 15:38:35.530 DEBUG [4732]: Closing database connection -- 15:38:35.530 SQL [4732]: pgsql_close() -- 15:41:52.799 INFO [4775]: COREGRADE is starting... -- 15:41:52.799 INFO [4775]: Version from config: 1.0 -- 15:41:52.799 DEBUG [4775]: Connecting to database... -- 15:41:52.799 DEBUG [4775]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:41:52.799 SQL [4775]: pgsql_db_connect() -- 15:41:52.803 DEBUG [4775]: Database connection successful -- 15:41:52.803 INFO [4775]: _SERVER found -- 15:41:52.803 INFO [4775]: REMOTE_ADDR = 192.168.1.13 -- 15:41:52.803 INFO [4775]: SERVER_NAME = oameye.works.coregrade.com -- 15:41:52.803 INFO [4775]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=jsj177vskcasjcg9n8on1e7q7poiceo4 -- 15:41:52.803 INFO [4775]: QUERY_STRING = -- 15:41:52.803 INFO [4775]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:41:52.848 INFO [4775]: COREGRADE is stopping... -- 15:41:52.849 DEBUG [4775]: Closing database connection -- 15:41:52.849 SQL [4775]: pgsql_close() -- 15:41:53.108 INFO [4775]: COREGRADE is starting... -- 15:41:53.109 INFO [4775]: Version from config: 1.0 -- 15:41:53.109 DEBUG [4775]: Connecting to database... -- 15:41:53.109 DEBUG [4775]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:41:53.109 SQL [4775]: pgsql_db_connect() -- 15:41:53.117 INFO [4728]: COREGRADE is starting... -- 15:41:53.117 INFO [4728]: Version from config: 1.0 -- 15:41:53.117 DEBUG [4728]: Connecting to database... -- 15:41:53.117 DEBUG [4728]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:41:53.117 SQL [4728]: pgsql_db_connect() -- 15:41:53.113 DEBUG [4775]: Database connection successful -- 15:41:53.113 INFO [4775]: _SERVER found -- 15:41:53.113 INFO [4775]: REMOTE_ADDR = 192.168.1.13 -- 15:41:53.113 INFO [4775]: SERVER_NAME = oameye.works.coregrade.com -- 15:41:53.113 INFO [4775]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=jsj177vskcasjcg9n8on1e7q7poiceo4 -- 15:41:53.113 INFO [4775]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 15:41:53.113 INFO [4775]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:41:53.126 INFO [4775]: COREGRADE is stopping... -- 15:41:53.126 DEBUG [4775]: Closing database connection -- 15:41:53.126 SQL [4775]: pgsql_close() -- 15:41:53.121 DEBUG [4728]: Database connection successful -- 15:41:53.121 INFO [4728]: _SERVER found -- 15:41:53.121 INFO [4728]: REMOTE_ADDR = 192.168.1.13 -- 15:41:53.121 INFO [4728]: SERVER_NAME = oameye.works.coregrade.com -- 15:41:53.121 INFO [4728]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=jsj177vskcasjcg9n8on1e7q7poiceo4 -- 15:41:53.121 INFO [4728]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:41:53.121 INFO [4728]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:41:53.134 INFO [4728]: COREGRADE is stopping... -- 15:41:53.134 DEBUG [4728]: Closing database connection -- 15:41:53.134 SQL [4728]: pgsql_close() -- 15:45:08.403 INFO [4729]: COREGRADE is starting... -- 15:45:08.403 INFO [4729]: Version from config: 1.0 -- 15:45:08.403 DEBUG [4729]: Connecting to database... -- 15:45:08.403 DEBUG [4729]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:45:08.403 SQL [4729]: pgsql_db_connect() -- 15:45:08.408 DEBUG [4729]: Database connection successful -- 15:45:08.408 INFO [4729]: _SERVER found -- 15:45:08.408 INFO [4729]: REMOTE_ADDR = 192.168.1.13 -- 15:45:08.408 INFO [4729]: SERVER_NAME = oameye.works.coregrade.com -- 15:45:08.408 INFO [4729]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=jsj177vskcasjcg9n8on1e7q7poiceo4 -- 15:45:08.408 INFO [4729]: QUERY_STRING = -- 15:45:08.408 INFO [4729]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:45:08.446 INFO [4729]: COREGRADE is stopping... -- 15:45:08.446 DEBUG [4729]: Closing database connection -- 15:45:08.446 SQL [4729]: pgsql_close() -- 15:45:08.685 INFO [4729]: COREGRADE is starting... -- 15:45:08.686 INFO [4729]: Version from config: 1.0 -- 15:45:08.686 DEBUG [4729]: Connecting to database... -- 15:45:08.686 DEBUG [4729]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:45:08.686 SQL [4729]: pgsql_db_connect() -- 15:45:08.701 INFO [4731]: COREGRADE is starting... -- 15:45:08.701 INFO [4731]: Version from config: 1.0 -- 15:45:08.701 DEBUG [4731]: Connecting to database... -- 15:45:08.701 DEBUG [4731]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:45:08.701 SQL [4731]: pgsql_db_connect() -- 15:45:08.690 DEBUG [4729]: Database connection successful -- 15:45:08.690 INFO [4729]: _SERVER found -- 15:45:08.690 INFO [4729]: REMOTE_ADDR = 192.168.1.13 -- 15:45:08.690 INFO [4729]: SERVER_NAME = oameye.works.coregrade.com -- 15:45:08.690 INFO [4729]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ujrnrokkr5uttjc63f8tp7u1nehiqeq6 -- 15:45:08.690 INFO [4729]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 15:45:08.690 INFO [4729]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:45:08.703 INFO [4729]: COREGRADE is stopping... -- 15:45:08.703 DEBUG [4729]: Closing database connection -- 15:45:08.703 SQL [4729]: pgsql_close() -- 15:45:08.706 DEBUG [4731]: Database connection successful -- 15:45:08.706 INFO [4731]: _SERVER found -- 15:45:08.706 INFO [4731]: REMOTE_ADDR = 192.168.1.13 -- 15:45:08.706 INFO [4731]: SERVER_NAME = oameye.works.coregrade.com -- 15:45:08.706 INFO [4731]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ujrnrokkr5uttjc63f8tp7u1nehiqeq6 -- 15:45:08.706 INFO [4731]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:45:08.706 INFO [4731]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:45:08.719 INFO [4731]: COREGRADE is stopping... -- 15:45:08.719 DEBUG [4731]: Closing database connection -- 15:45:08.719 SQL [4731]: pgsql_close() -- 15:57:59.845 INFO [5022]: COREGRADE is starting... -- 15:57:59.845 INFO [5022]: Version from config: 1.0 -- 15:57:59.845 DEBUG [5022]: Connecting to database... -- 15:57:59.845 DEBUG [5022]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:59.845 SQL [5022]: pgsql_db_connect() -- 15:57:59.850 DEBUG [5022]: Database connection successful -- 15:57:59.850 INFO [5022]: _SERVER found -- 15:57:59.850 INFO [5022]: REMOTE_ADDR = 192.168.1.13 -- 15:57:59.850 INFO [5022]: SERVER_NAME = oameye.works.coregrade.com -- 15:57:59.850 INFO [5022]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ujrnrokkr5uttjc63f8tp7u1nehiqeq6 -- 15:57:59.850 INFO [5022]: QUERY_STRING = -- 15:57:59.850 INFO [5022]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:57:59.897 INFO [5022]: COREGRADE is stopping... -- 15:57:59.897 DEBUG [5022]: Closing database connection -- 15:57:59.897 SQL [5022]: pgsql_close() -- 15:58:00.052 INFO [5022]: COREGRADE is starting... -- 15:58:00.053 INFO [5022]: Version from config: 1.0 -- 15:58:00.053 DEBUG [5022]: Connecting to database... -- 15:58:00.053 DEBUG [5022]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:00.053 SQL [5022]: pgsql_db_connect() -- 15:58:00.060 INFO [4730]: COREGRADE is starting... -- 15:58:00.060 INFO [4730]: Version from config: 1.0 -- 15:58:00.060 DEBUG [4730]: Connecting to database... -- 15:58:00.060 DEBUG [4730]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:00.060 SQL [4730]: pgsql_db_connect() -- 15:58:00.057 DEBUG [5022]: Database connection successful -- 15:58:00.057 INFO [5022]: _SERVER found -- 15:58:00.057 INFO [5022]: REMOTE_ADDR = 192.168.1.13 -- 15:58:00.057 INFO [5022]: SERVER_NAME = oameye.works.coregrade.com -- 15:58:00.057 INFO [5022]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=9jg8m0okcp3obtuc7r6u7ml4fr475l48 -- 15:58:00.057 INFO [5022]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 15:58:00.057 INFO [5022]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:58:00.071 INFO [5022]: COREGRADE is stopping... -- 15:58:00.071 DEBUG [5022]: Closing database connection -- 15:58:00.071 SQL [5022]: pgsql_close() -- 15:58:00.065 DEBUG [4730]: Database connection successful -- 15:58:00.065 INFO [4730]: _SERVER found -- 15:58:00.065 INFO [4730]: REMOTE_ADDR = 192.168.1.13 -- 15:58:00.065 INFO [4730]: SERVER_NAME = oameye.works.coregrade.com -- 15:58:00.065 INFO [4730]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=9jg8m0okcp3obtuc7r6u7ml4fr475l48 -- 15:58:00.065 INFO [4730]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:58:00.065 INFO [4730]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:58:00.078 INFO [4730]: COREGRADE is stopping... -- 15:58:00.078 DEBUG [4730]: Closing database connection -- 15:58:00.078 SQL [4730]: pgsql_close() -- 16:04:12.494 INFO [4732]: COREGRADE is starting... -- 16:04:12.494 INFO [4732]: Version from config: 1.0 -- 16:04:12.494 DEBUG [4732]: Connecting to database... -- 16:04:12.494 DEBUG [4732]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:04:12.494 SQL [4732]: pgsql_db_connect() -- 16:04:12.499 DEBUG [4732]: Database connection successful -- 16:04:12.499 INFO [4732]: _SERVER found -- 16:04:12.499 INFO [4732]: REMOTE_ADDR = 192.168.1.13 -- 16:04:12.499 INFO [4732]: SERVER_NAME = oameye.works.coregrade.com -- 16:04:12.499 INFO [4732]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=9jg8m0okcp3obtuc7r6u7ml4fr475l48 -- 16:04:12.499 INFO [4732]: QUERY_STRING = -- 16:04:12.499 INFO [4732]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:04:12.543 INFO [4732]: COREGRADE is stopping... -- 16:04:12.543 DEBUG [4732]: Closing database connection -- 16:04:12.543 SQL [4732]: pgsql_close() -- 16:04:12.779 INFO [4732]: COREGRADE is starting... -- 16:04:12.779 INFO [4732]: Version from config: 1.0 -- 16:04:12.779 DEBUG [4732]: Connecting to database... -- 16:04:12.779 DEBUG [4732]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:04:12.779 SQL [4732]: pgsql_db_connect() -- 16:04:12.785 INFO [4775]: COREGRADE is starting... -- 16:04:12.785 INFO [4775]: Version from config: 1.0 -- 16:04:12.786 DEBUG [4775]: Connecting to database... -- 16:04:12.786 DEBUG [4775]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:04:12.786 SQL [4775]: pgsql_db_connect() -- 16:04:12.784 DEBUG [4732]: Database connection successful -- 16:04:12.784 INFO [4732]: _SERVER found -- 16:04:12.784 INFO [4732]: REMOTE_ADDR = 192.168.1.13 -- 16:04:12.784 INFO [4732]: SERVER_NAME = oameye.works.coregrade.com -- 16:04:12.784 INFO [4732]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=t3srajtgd45doqmv3568ll4m08frnf60 -- 16:04:12.784 INFO [4732]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 16:04:12.784 INFO [4732]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:04:12.795 INFO [4732]: COREGRADE is stopping... -- 16:04:12.795 DEBUG [4732]: Closing database connection -- 16:04:12.795 SQL [4732]: pgsql_close() -- 16:04:12.790 DEBUG [4775]: Database connection successful -- 16:04:12.790 INFO [4775]: _SERVER found -- 16:04:12.790 INFO [4775]: REMOTE_ADDR = 192.168.1.13 -- 16:04:12.790 INFO [4775]: SERVER_NAME = oameye.works.coregrade.com -- 16:04:12.790 INFO [4775]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=t3srajtgd45doqmv3568ll4m08frnf60 -- 16:04:12.790 INFO [4775]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:04:12.790 INFO [4775]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:04:12.802 INFO [4775]: COREGRADE is stopping... -- 16:04:12.802 DEBUG [4775]: Closing database connection -- 16:04:12.802 SQL [4775]: pgsql_close() -- 16:04:50.099 INFO [4728]: COREGRADE is starting... -- 16:04:50.099 INFO [4728]: Version from config: 1.0 -- 16:04:50.099 DEBUG [4728]: Connecting to database... -- 16:04:50.099 DEBUG [4728]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:04:50.099 SQL [4728]: pgsql_db_connect() -- 16:04:50.103 DEBUG [4728]: Database connection successful -- 16:04:50.103 INFO [4728]: _SERVER found -- 16:04:50.103 INFO [4728]: REMOTE_ADDR = 192.168.1.13 -- 16:04:50.103 INFO [4728]: SERVER_NAME = oameye.works.coregrade.com -- 16:04:50.103 INFO [4728]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=t3srajtgd45doqmv3568ll4m08frnf60; _gat_gtag_UA_54829827_2=1 -- 16:04:50.103 INFO [4728]: QUERY_STRING = -- 16:04:50.103 INFO [4728]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:04:50.138 INFO [4728]: COREGRADE is stopping... -- 16:04:50.138 DEBUG [4728]: Closing database connection -- 16:04:50.138 SQL [4728]: pgsql_close() -- 16:04:50.341 INFO [4728]: COREGRADE is starting... -- 16:04:50.341 INFO [4728]: Version from config: 1.0 -- 16:04:50.341 DEBUG [4728]: Connecting to database... -- 16:04:50.341 DEBUG [4728]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:04:50.341 SQL [4728]: pgsql_db_connect() -- 16:04:50.347 INFO [4729]: COREGRADE is starting... -- 16:04:50.347 INFO [4729]: Version from config: 1.0 -- 16:04:50.347 DEBUG [4729]: Connecting to database... -- 16:04:50.347 DEBUG [4729]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:04:50.347 SQL [4729]: pgsql_db_connect() -- 16:04:50.345 DEBUG [4728]: Database connection successful -- 16:04:50.345 INFO [4728]: _SERVER found -- 16:04:50.345 INFO [4728]: REMOTE_ADDR = 192.168.1.13 -- 16:04:50.345 INFO [4728]: SERVER_NAME = oameye.works.coregrade.com -- 16:04:50.345 INFO [4728]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=t3srajtgd45doqmv3568ll4m08frnf60; _gat_gtag_UA_54829827_2=1 -- 16:04:50.345 INFO [4728]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 16:04:50.345 INFO [4728]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:04:50.357 INFO [4728]: COREGRADE is stopping... -- 16:04:50.357 DEBUG [4728]: Closing database connection -- 16:04:50.357 SQL [4728]: pgsql_close() -- 16:04:50.351 DEBUG [4729]: Database connection successful -- 16:04:50.351 INFO [4729]: _SERVER found -- 16:04:50.351 INFO [4729]: REMOTE_ADDR = 192.168.1.13 -- 16:04:50.351 INFO [4729]: SERVER_NAME = oameye.works.coregrade.com -- 16:04:50.351 INFO [4729]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=t3srajtgd45doqmv3568ll4m08frnf60; _gat_gtag_UA_54829827_2=1 -- 16:04:50.351 INFO [4729]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:04:50.351 INFO [4729]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:04:50.363 INFO [4729]: COREGRADE is stopping... -- 16:04:50.363 DEBUG [4729]: Closing database connection -- 16:04:50.363 SQL [4729]: pgsql_close() -- 16:05:52.704 INFO [4731]: COREGRADE is starting... -- 16:05:52.704 INFO [4731]: Version from config: 1.0 -- 16:05:52.704 DEBUG [4731]: Connecting to database... -- 16:05:52.704 DEBUG [4731]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:05:52.704 SQL [4731]: pgsql_db_connect() -- 16:05:52.708 DEBUG [4731]: Database connection successful -- 16:05:52.708 INFO [4731]: _SERVER found -- 16:05:52.708 INFO [4731]: REMOTE_ADDR = 192.168.1.13 -- 16:05:52.708 INFO [4731]: SERVER_NAME = oameye.works.coregrade.com -- 16:05:52.708 INFO [4731]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=t3srajtgd45doqmv3568ll4m08frnf60 -- 16:05:52.708 INFO [4731]: QUERY_STRING = -- 16:05:52.708 INFO [4731]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:05:52.743 INFO [4731]: COREGRADE is stopping... -- 16:05:52.743 DEBUG [4731]: Closing database connection -- 16:05:52.743 SQL [4731]: pgsql_close() -- 16:05:52.871 INFO [4731]: COREGRADE is starting... -- 16:05:52.871 INFO [4731]: Version from config: 1.0 -- 16:05:52.871 DEBUG [4731]: Connecting to database... -- 16:05:52.871 DEBUG [4731]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:05:52.871 SQL [4731]: pgsql_db_connect() -- 16:05:52.878 INFO [5022]: COREGRADE is starting... -- 16:05:52.878 INFO [5022]: Version from config: 1.0 -- 16:05:52.878 DEBUG [5022]: Connecting to database... -- 16:05:52.878 DEBUG [5022]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:05:52.878 SQL [5022]: pgsql_db_connect() -- 16:05:52.875 DEBUG [4731]: Database connection successful -- 16:05:52.875 INFO [4731]: _SERVER found -- 16:05:52.875 INFO [4731]: REMOTE_ADDR = 192.168.1.13 -- 16:05:52.875 INFO [4731]: SERVER_NAME = oameye.works.coregrade.com -- 16:05:52.875 INFO [4731]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=t3srajtgd45doqmv3568ll4m08frnf60 -- 16:05:52.875 INFO [4731]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 16:05:52.875 INFO [4731]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:05:52.886 INFO [4731]: COREGRADE is stopping... -- 16:05:52.886 DEBUG [4731]: Closing database connection -- 16:05:52.886 SQL [4731]: pgsql_close() -- 16:05:52.882 DEBUG [5022]: Database connection successful -- 16:05:52.882 INFO [5022]: _SERVER found -- 16:05:52.882 INFO [5022]: REMOTE_ADDR = 192.168.1.13 -- 16:05:52.882 INFO [5022]: SERVER_NAME = oameye.works.coregrade.com -- 16:05:52.882 INFO [5022]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=t3srajtgd45doqmv3568ll4m08frnf60 -- 16:05:52.882 INFO [5022]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:05:52.882 INFO [5022]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:05:52.894 INFO [5022]: COREGRADE is stopping... -- 16:05:52.894 DEBUG [5022]: Closing database connection -- 16:05:52.894 SQL [5022]: pgsql_close() -- 16:05:55.313 INFO [5022]: COREGRADE is starting... -- 16:05:55.313 INFO [5022]: Version from config: 1.0 -- 16:05:55.313 DEBUG [5022]: Connecting to database... -- 16:05:55.313 DEBUG [5022]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:05:55.313 SQL [5022]: pgsql_db_connect() -- 16:05:55.317 DEBUG [5022]: Database connection successful -- 16:05:55.317 INFO [5022]: _SERVER found -- 16:05:55.317 INFO [5022]: REMOTE_ADDR = 192.168.1.13 -- 16:05:55.317 INFO [5022]: SERVER_NAME = oameye.works.coregrade.com -- 16:05:55.317 INFO [5022]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=t3srajtgd45doqmv3568ll4m08frnf60; _gat_gtag_UA_54829827_2=1 -- 16:05:55.317 INFO [5022]: QUERY_STRING = /welcome/viewLogin -- 16:05:55.317 INFO [5022]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:05:55.351 INFO [5022]: COREGRADE is stopping... -- 16:05:55.351 DEBUG [5022]: Closing database connection -- 16:05:55.351 SQL [5022]: pgsql_close() -- 16:05:55.399 INFO [5022]: COREGRADE is starting... -- 16:05:55.399 INFO [5022]: Version from config: 1.0 -- 16:05:55.399 DEBUG [5022]: Connecting to database... -- 16:05:55.399 DEBUG [5022]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:05:55.399 SQL [5022]: pgsql_db_connect() -- 16:05:55.403 DEBUG [5022]: Database connection successful -- 16:05:55.403 INFO [5022]: _SERVER found -- 16:05:55.403 INFO [5022]: REMOTE_ADDR = 192.168.1.13 -- 16:05:55.403 INFO [5022]: SERVER_NAME = oameye.works.coregrade.com -- 16:05:55.403 INFO [5022]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=t3srajtgd45doqmv3568ll4m08frnf60; _gat_gtag_UA_54829827_2=1 -- 16:05:55.403 INFO [5022]: QUERY_STRING = /auth/index -- 16:05:55.403 INFO [5022]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:05:55.437 INFO [5022]: COREGRADE is stopping... -- 16:05:55.438 DEBUG [5022]: Closing database connection -- 16:05:55.438 SQL [5022]: pgsql_close() -- 16:05:59.664 INFO [5022]: COREGRADE is starting... -- 16:05:59.664 INFO [5022]: Version from config: 1.0 -- 16:05:59.664 DEBUG [5022]: Connecting to database... -- 16:05:59.664 DEBUG [5022]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:05:59.664 SQL [5022]: pgsql_db_connect() -- 16:05:59.668 DEBUG [5022]: Database connection successful -- 16:05:59.668 INFO [5022]: _SERVER found -- 16:05:59.668 INFO [5022]: REMOTE_ADDR = 192.168.1.13 -- 16:05:59.668 INFO [5022]: SERVER_NAME = oameye.works.coregrade.com -- 16:05:59.668 INFO [5022]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=t3srajtgd45doqmv3568ll4m08frnf60; _gat_gtag_UA_54829827_2=1 -- 16:05:59.668 INFO [5022]: QUERY_STRING = /welcome/viewLogin -- 16:05:59.668 INFO [5022]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:05:59.702 INFO [5022]: COREGRADE is stopping... -- 16:05:59.702 DEBUG [5022]: Closing database connection -- 16:05:59.702 SQL [5022]: pgsql_close() -- 16:05:59.731 INFO [5022]: COREGRADE is starting... -- 16:05:59.731 INFO [5022]: Version from config: 1.0 -- 16:05:59.731 DEBUG [5022]: Connecting to database... -- 16:05:59.731 DEBUG [5022]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:05:59.731 SQL [5022]: pgsql_db_connect() -- 16:05:59.735 DEBUG [5022]: Database connection successful -- 16:05:59.735 INFO [5022]: _SERVER found -- 16:05:59.735 INFO [5022]: REMOTE_ADDR = 192.168.1.13 -- 16:05:59.735 INFO [5022]: SERVER_NAME = oameye.works.coregrade.com -- 16:05:59.735 INFO [5022]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=t3srajtgd45doqmv3568ll4m08frnf60; _gat_gtag_UA_54829827_2=1 -- 16:05:59.735 INFO [5022]: QUERY_STRING = /auth/index -- 16:05:59.735 INFO [5022]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:05:59.770 INFO [5022]: COREGRADE is stopping... -- 16:05:59.770 DEBUG [5022]: Closing database connection -- 16:05:59.770 SQL [5022]: pgsql_close() -- 16:06:48.504 INFO [4730]: COREGRADE is starting... -- 16:06:48.504 INFO [4730]: Version from config: 1.0 -- 16:06:48.504 DEBUG [4730]: Connecting to database... -- 16:06:48.504 DEBUG [4730]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:06:48.504 SQL [4730]: pgsql_db_connect() -- 16:06:48.508 DEBUG [4730]: Database connection successful -- 16:06:48.508 INFO [4730]: _SERVER found -- 16:06:48.508 INFO [4730]: REMOTE_ADDR = 192.168.1.13 -- 16:06:48.508 INFO [4730]: SERVER_NAME = oameye.works.coregrade.com -- 16:06:48.508 INFO [4730]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=t3srajtgd45doqmv3568ll4m08frnf60; _gat_gtag_UA_54829827_2=1 -- 16:06:48.508 INFO [4730]: QUERY_STRING = -- 16:06:48.508 INFO [4730]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:06:48.540 INFO [4730]: COREGRADE is stopping... -- 16:06:48.540 DEBUG [4730]: Closing database connection -- 16:06:48.540 SQL [4730]: pgsql_close() -- 16:06:48.732 INFO [4730]: COREGRADE is starting... -- 16:06:48.733 INFO [4730]: Version from config: 1.0 -- 16:06:48.733 DEBUG [4730]: Connecting to database... -- 16:06:48.733 DEBUG [4730]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:06:48.733 SQL [4730]: pgsql_db_connect() -- 16:06:48.739 INFO [4732]: COREGRADE is starting... -- 16:06:48.739 INFO [4732]: Version from config: 1.0 -- 16:06:48.739 DEBUG [4732]: Connecting to database... -- 16:06:48.739 DEBUG [4732]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:06:48.739 SQL [4732]: pgsql_db_connect() -- 16:06:48.737 DEBUG [4730]: Database connection successful -- 16:06:48.737 INFO [4730]: _SERVER found -- 16:06:48.737 INFO [4730]: REMOTE_ADDR = 192.168.1.13 -- 16:06:48.737 INFO [4730]: SERVER_NAME = oameye.works.coregrade.com -- 16:06:48.737 INFO [4730]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=t3srajtgd45doqmv3568ll4m08frnf60; _gat_gtag_UA_54829827_2=1 -- 16:06:48.737 INFO [4730]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 16:06:48.737 INFO [4730]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:06:48.748 INFO [4730]: COREGRADE is stopping... -- 16:06:48.748 DEBUG [4730]: Closing database connection -- 16:06:48.748 SQL [4730]: pgsql_close() -- 16:06:48.743 DEBUG [4732]: Database connection successful -- 16:06:48.743 INFO [4732]: _SERVER found -- 16:06:48.743 INFO [4732]: REMOTE_ADDR = 192.168.1.13 -- 16:06:48.743 INFO [4732]: SERVER_NAME = oameye.works.coregrade.com -- 16:06:48.743 INFO [4732]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=t3srajtgd45doqmv3568ll4m08frnf60; _gat_gtag_UA_54829827_2=1 -- 16:06:48.743 INFO [4732]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:06:48.743 INFO [4732]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:06:48.754 INFO [4732]: COREGRADE is stopping... -- 16:06:48.754 DEBUG [4732]: Closing database connection -- 16:06:48.754 SQL [4732]: pgsql_close() -- 16:06:51.413 INFO [4732]: COREGRADE is starting... -- 16:06:51.413 INFO [4732]: Version from config: 1.0 -- 16:06:51.413 DEBUG [4732]: Connecting to database... -- 16:06:51.413 DEBUG [4732]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:06:51.413 SQL [4732]: pgsql_db_connect() -- 16:06:51.419 INFO [4730]: COREGRADE is starting... -- 16:06:51.419 INFO [4730]: Version from config: 1.0 -- 16:06:51.419 DEBUG [4730]: Connecting to database... -- 16:06:51.419 DEBUG [4730]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:06:51.419 SQL [4730]: pgsql_db_connect() -- 16:06:51.417 DEBUG [4732]: Database connection successful -- 16:06:51.417 INFO [4732]: _SERVER found -- 16:06:51.417 INFO [4732]: REMOTE_ADDR = 192.168.1.13 -- 16:06:51.417 INFO [4732]: SERVER_NAME = oameye.works.coregrade.com -- 16:06:51.417 INFO [4732]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=t3srajtgd45doqmv3568ll4m08frnf60; _gat_gtag_UA_54829827_2=1 -- 16:06:51.417 INFO [4732]: QUERY_STRING = /welcome/viewLogin -- 16:06:51.417 INFO [4732]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:06:51.447 INFO [4732]: COREGRADE is stopping... -- 16:06:51.447 DEBUG [4732]: Closing database connection -- 16:06:51.447 SQL [4732]: pgsql_close() -- 16:06:51.423 DEBUG [4730]: Database connection successful -- 16:06:51.423 INFO [4730]: _SERVER found -- 16:06:51.423 INFO [4730]: REMOTE_ADDR = 192.168.1.13 -- 16:06:51.423 INFO [4730]: SERVER_NAME = oameye.works.coregrade.com -- 16:06:51.423 INFO [4730]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=t3srajtgd45doqmv3568ll4m08frnf60; _gat_gtag_UA_54829827_2=1 -- 16:06:51.423 INFO [4730]: QUERY_STRING = /auth -- 16:06:51.423 INFO [4730]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:06:51.454 INFO [4730]: COREGRADE is stopping... -- 16:06:51.454 DEBUG [4730]: Closing database connection -- 16:06:51.454 SQL [4730]: pgsql_close() -- 16:06:51.466 INFO [4730]: COREGRADE is starting... -- 16:06:51.466 INFO [4730]: Version from config: 1.0 -- 16:06:51.466 DEBUG [4730]: Connecting to database... -- 16:06:51.466 DEBUG [4730]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:06:51.467 SQL [4730]: pgsql_db_connect() -- 16:06:51.470 DEBUG [4730]: Database connection successful -- 16:06:51.470 INFO [4730]: _SERVER found -- 16:06:51.470 INFO [4730]: REMOTE_ADDR = 192.168.1.13 -- 16:06:51.470 INFO [4730]: SERVER_NAME = oameye.works.coregrade.com -- 16:06:51.470 INFO [4730]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=t3srajtgd45doqmv3568ll4m08frnf60; _gat_gtag_UA_54829827_2=1 -- 16:06:51.470 INFO [4730]: QUERY_STRING = /auth/index -- 16:06:51.470 INFO [4730]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:06:51.501 INFO [4730]: COREGRADE is stopping... -- 16:06:51.501 DEBUG [4730]: Closing database connection -- 16:06:51.501 SQL [4730]: pgsql_close() -- 16:06:51.711 INFO [4730]: COREGRADE is starting... -- 16:06:51.711 INFO [4730]: Version from config: 1.0 -- 16:06:51.711 DEBUG [4730]: Connecting to database... -- 16:06:51.711 DEBUG [4730]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:06:51.711 SQL [4730]: pgsql_db_connect() -- 16:06:51.715 DEBUG [4730]: Database connection successful -- 16:06:51.715 INFO [4730]: _SERVER found -- 16:06:51.715 INFO [4730]: REMOTE_ADDR = 192.168.1.13 -- 16:06:51.715 INFO [4730]: SERVER_NAME = oameye.works.coregrade.com -- 16:06:51.715 INFO [4730]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=t3srajtgd45doqmv3568ll4m08frnf60; _gat_gtag_UA_54829827_2=1 -- 16:06:51.715 INFO [4730]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:06:51.715 INFO [4730]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:06:51.726 INFO [4730]: COREGRADE is stopping... -- 16:06:51.726 DEBUG [4730]: Closing database connection -- 16:06:51.726 SQL [4730]: pgsql_close() -- 16:06:51.765 INFO [4730]: COREGRADE is starting... -- 16:06:51.765 INFO [4730]: Version from config: 1.0 -- 16:06:51.765 DEBUG [4730]: Connecting to database... -- 16:06:51.765 DEBUG [4730]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:06:51.765 SQL [4730]: pgsql_db_connect() -- 16:06:51.769 DEBUG [4730]: Database connection successful -- 16:06:51.769 INFO [4730]: _SERVER found -- 16:06:51.769 INFO [4730]: REMOTE_ADDR = 192.168.1.13 -- 16:06:51.769 INFO [4730]: SERVER_NAME = oameye.works.coregrade.com -- 16:06:51.769 INFO [4730]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=t3srajtgd45doqmv3568ll4m08frnf60; _gat_gtag_UA_54829827_2=1 -- 16:06:51.769 INFO [4730]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:06:51.769 INFO [4730]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:06:51.780 INFO [4730]: COREGRADE is stopping... -- 16:06:51.780 DEBUG [4730]: Closing database connection -- 16:06:51.780 SQL [4730]: pgsql_close() -- 16:06:53.949 INFO [4730]: COREGRADE is starting... -- 16:06:53.949 INFO [4730]: Version from config: 1.0 -- 16:06:53.949 DEBUG [4730]: Connecting to database... -- 16:06:53.949 DEBUG [4730]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:06:53.949 SQL [4730]: pgsql_db_connect() -- 16:06:53.953 DEBUG [4730]: Database connection successful -- 16:06:53.953 INFO [4730]: _SERVER found -- 16:06:53.953 INFO [4730]: REMOTE_ADDR = 192.168.1.13 -- 16:06:53.953 INFO [4730]: SERVER_NAME = oameye.works.coregrade.com -- 16:06:53.953 INFO [4730]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=t3srajtgd45doqmv3568ll4m08frnf60 -- 16:06:53.953 INFO [4730]: QUERY_STRING = /auth/newuser -- 16:06:53.953 INFO [4730]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:06:53.984 INFO [4730]: COREGRADE is stopping... -- 16:06:53.984 DEBUG [4730]: Closing database connection -- 16:06:53.984 SQL [4730]: pgsql_close() -- 16:06:54.149 INFO [4730]: COREGRADE is starting... -- 16:06:54.149 INFO [4730]: Version from config: 1.0 -- 16:06:54.149 DEBUG [4730]: Connecting to database... -- 16:06:54.149 DEBUG [4730]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:06:54.149 SQL [4730]: pgsql_db_connect() -- 16:06:54.153 DEBUG [4730]: Database connection successful -- 16:06:54.153 INFO [4730]: _SERVER found -- 16:06:54.153 INFO [4730]: REMOTE_ADDR = 192.168.1.13 -- 16:06:54.153 INFO [4730]: SERVER_NAME = oameye.works.coregrade.com -- 16:06:54.153 INFO [4730]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=t3srajtgd45doqmv3568ll4m08frnf60 -- 16:06:54.153 INFO [4730]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:06:54.153 INFO [4730]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:06:54.164 INFO [4730]: COREGRADE is stopping... -- 16:06:54.164 DEBUG [4730]: Closing database connection -- 16:06:54.164 SQL [4730]: pgsql_close() -- 16:07:25.569 INFO [4775]: COREGRADE is starting... -- 16:07:25.569 INFO [4775]: Version from config: 1.0 -- 16:07:25.569 DEBUG [4775]: Connecting to database... -- 16:07:25.569 DEBUG [4775]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:07:25.569 SQL [4775]: pgsql_db_connect() -- 16:07:25.573 DEBUG [4775]: Database connection successful -- 16:07:25.573 INFO [4775]: _SERVER found -- 16:07:25.573 INFO [4775]: REMOTE_ADDR = 192.168.1.13 -- 16:07:25.573 INFO [4775]: SERVER_NAME = oameye.works.coregrade.com -- 16:07:25.573 INFO [4775]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=t3srajtgd45doqmv3568ll4m08frnf60 -- 16:07:25.573 INFO [4775]: QUERY_STRING = -- 16:07:25.573 INFO [4775]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:07:25.608 INFO [4775]: COREGRADE is stopping... -- 16:07:25.608 DEBUG [4775]: Closing database connection -- 16:07:25.608 SQL [4775]: pgsql_close() -- 16:07:25.916 INFO [4775]: COREGRADE is starting... -- 16:07:25.916 INFO [4775]: Version from config: 1.0 -- 16:07:25.916 DEBUG [4775]: Connecting to database... -- 16:07:25.916 DEBUG [4775]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:07:25.916 SQL [4775]: pgsql_db_connect() -- 16:07:25.923 INFO [4728]: COREGRADE is starting... -- 16:07:25.924 INFO [4728]: Version from config: 1.0 -- 16:07:25.924 DEBUG [4728]: Connecting to database... -- 16:07:25.924 DEBUG [4728]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:07:25.924 SQL [4728]: pgsql_db_connect() -- 16:07:25.920 DEBUG [4775]: Database connection successful -- 16:07:25.920 INFO [4775]: _SERVER found -- 16:07:25.920 INFO [4775]: REMOTE_ADDR = 192.168.1.13 -- 16:07:25.920 INFO [4775]: SERVER_NAME = oameye.works.coregrade.com -- 16:07:25.920 INFO [4775]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=t3srajtgd45doqmv3568ll4m08frnf60 -- 16:07:25.920 INFO [4775]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 16:07:25.920 INFO [4775]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:07:25.932 INFO [4775]: COREGRADE is stopping... -- 16:07:25.932 DEBUG [4775]: Closing database connection -- 16:07:25.932 SQL [4775]: pgsql_close() -- 16:07:25.927 DEBUG [4728]: Database connection successful -- 16:07:25.927 INFO [4728]: _SERVER found -- 16:07:25.927 INFO [4728]: REMOTE_ADDR = 192.168.1.13 -- 16:07:25.927 INFO [4728]: SERVER_NAME = oameye.works.coregrade.com -- 16:07:25.927 INFO [4728]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=t3srajtgd45doqmv3568ll4m08frnf60 -- 16:07:25.927 INFO [4728]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:07:25.927 INFO [4728]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:07:25.939 INFO [4728]: COREGRADE is stopping... -- 16:07:25.939 DEBUG [4728]: Closing database connection -- 16:07:25.939 SQL [4728]: pgsql_close() -- 16:11:00.312 INFO [4729]: COREGRADE is starting... -- 16:11:00.312 INFO [4729]: Version from config: 1.0 -- 16:11:00.312 DEBUG [4729]: Connecting to database... -- 16:11:00.312 DEBUG [4729]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:00.312 SQL [4729]: pgsql_db_connect() -- 16:11:00.317 DEBUG [4729]: Database connection successful -- 16:11:00.317 INFO [4729]: _SERVER found -- 16:11:00.317 INFO [4729]: REMOTE_ADDR = 192.168.1.13 -- 16:11:00.317 INFO [4729]: SERVER_NAME = oameye.works.coregrade.com -- 16:11:00.317 INFO [4729]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=t3srajtgd45doqmv3568ll4m08frnf60 -- 16:11:00.317 INFO [4729]: QUERY_STRING = email= -- 16:11:00.317 INFO [4729]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:11:00.352 INFO [4729]: COREGRADE is stopping... -- 16:11:00.352 DEBUG [4729]: Closing database connection -- 16:11:00.352 SQL [4729]: pgsql_close() -- 16:11:00.501 INFO [4729]: COREGRADE is starting... -- 16:11:00.501 INFO [4729]: Version from config: 1.0 -- 16:11:00.501 DEBUG [4729]: Connecting to database... -- 16:11:00.501 DEBUG [4729]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:00.501 SQL [4729]: pgsql_db_connect() -- 16:11:00.508 INFO [4731]: COREGRADE is starting... -- 16:11:00.508 INFO [4731]: Version from config: 1.0 -- 16:11:00.508 DEBUG [4731]: Connecting to database... -- 16:11:00.508 DEBUG [4731]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:00.508 SQL [4731]: pgsql_db_connect() -- 16:11:00.505 DEBUG [4729]: Database connection successful -- 16:11:00.505 INFO [4729]: _SERVER found -- 16:11:00.505 INFO [4729]: REMOTE_ADDR = 192.168.1.13 -- 16:11:00.505 INFO [4729]: SERVER_NAME = oameye.works.coregrade.com -- 16:11:00.505 INFO [4729]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=pv3en129pejbp20q4t0iu7g36gvhimgi -- 16:11:00.505 INFO [4729]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 16:11:00.505 INFO [4729]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:11:00.517 INFO [4729]: COREGRADE is stopping... -- 16:11:00.517 DEBUG [4729]: Closing database connection -- 16:11:00.517 SQL [4729]: pgsql_close() -- 16:11:00.512 DEBUG [4731]: Database connection successful -- 16:11:00.512 INFO [4731]: _SERVER found -- 16:11:00.512 INFO [4731]: REMOTE_ADDR = 192.168.1.13 -- 16:11:00.512 INFO [4731]: SERVER_NAME = oameye.works.coregrade.com -- 16:11:00.512 INFO [4731]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=pv3en129pejbp20q4t0iu7g36gvhimgi -- 16:11:00.512 INFO [4731]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:11:00.512 INFO [4731]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:11:00.524 INFO [4731]: COREGRADE is stopping... -- 16:11:00.524 DEBUG [4731]: Closing database connection -- 16:11:00.524 SQL [4731]: pgsql_close() -- 16:45:17.872 INFO [5022]: COREGRADE is starting... -- 16:45:17.872 INFO [5022]: Version from config: 1.0 -- 16:45:17.872 DEBUG [5022]: Connecting to database... -- 16:45:17.872 DEBUG [5022]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:45:17.872 SQL [5022]: pgsql_db_connect() -- 16:45:17.876 DEBUG [5022]: Database connection successful -- 16:45:17.876 INFO [5022]: _SERVER found -- 16:45:17.876 INFO [5022]: REMOTE_ADDR = 192.168.1.13 -- 16:45:17.876 INFO [5022]: SERVER_NAME = oameye.works.coregrade.com -- 16:45:17.876 INFO [5022]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=pv3en129pejbp20q4t0iu7g36gvhimgi -- 16:45:17.876 INFO [5022]: QUERY_STRING = email= -- 16:45:17.876 INFO [5022]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:45:17.914 INFO [5022]: COREGRADE is stopping... -- 16:45:17.914 DEBUG [5022]: Closing database connection -- 16:45:17.914 SQL [5022]: pgsql_close() -- 16:45:18.208 INFO [5022]: COREGRADE is starting... -- 16:45:18.208 INFO [5022]: Version from config: 1.0 -- 16:45:18.208 DEBUG [5022]: Connecting to database... -- 16:45:18.208 DEBUG [5022]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:45:18.208 SQL [5022]: pgsql_db_connect() -- 16:45:18.215 INFO [4732]: COREGRADE is starting... -- 16:45:18.216 INFO [4732]: Version from config: 1.0 -- 16:45:18.216 DEBUG [4732]: Connecting to database... -- 16:45:18.216 DEBUG [4732]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:45:18.216 SQL [4732]: pgsql_db_connect() -- 16:45:18.212 DEBUG [5022]: Database connection successful -- 16:45:18.212 INFO [5022]: _SERVER found -- 16:45:18.212 INFO [5022]: REMOTE_ADDR = 192.168.1.13 -- 16:45:18.212 INFO [5022]: SERVER_NAME = oameye.works.coregrade.com -- 16:45:18.212 INFO [5022]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=bpg94pmk6fqu49uvrs5f5id5bfr2stks -- 16:45:18.212 INFO [5022]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 16:45:18.212 INFO [5022]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:45:18.225 INFO [5022]: COREGRADE is stopping... -- 16:45:18.226 DEBUG [5022]: Closing database connection -- 16:45:18.226 SQL [5022]: pgsql_close() -- 16:45:18.220 DEBUG [4732]: Database connection successful -- 16:45:18.220 INFO [4732]: _SERVER found -- 16:45:18.220 INFO [4732]: REMOTE_ADDR = 192.168.1.13 -- 16:45:18.220 INFO [4732]: SERVER_NAME = oameye.works.coregrade.com -- 16:45:18.220 INFO [4732]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=bpg94pmk6fqu49uvrs5f5id5bfr2stks -- 16:45:18.220 INFO [4732]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:45:18.220 INFO [4732]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:45:18.232 INFO [4732]: COREGRADE is stopping... -- 16:45:18.232 DEBUG [4732]: Closing database connection -- 16:45:18.232 SQL [4732]: pgsql_close() -- 16:45:23.624 INFO [4730]: COREGRADE is starting... -- 16:45:23.624 INFO [4730]: Version from config: 1.0 -- 16:45:23.624 DEBUG [4730]: Connecting to database... -- 16:45:23.624 DEBUG [4730]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:45:23.624 SQL [4730]: pgsql_db_connect() -- 16:45:23.628 DEBUG [4730]: Database connection successful -- 16:45:23.628 INFO [4730]: _SERVER found -- 16:45:23.628 INFO [4730]: REMOTE_ADDR = 192.168.1.13 -- 16:45:23.628 INFO [4730]: SERVER_NAME = oameye.works.coregrade.com -- 16:45:23.628 INFO [4730]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=bpg94pmk6fqu49uvrs5f5id5bfr2stks; _gat_gtag_UA_54829827_2=1 -- 16:45:23.628 INFO [4730]: QUERY_STRING = /auth/newuser -- 16:45:23.628 INFO [4730]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:45:23.661 INFO [4730]: COREGRADE is stopping... -- 16:45:23.661 DEBUG [4730]: Closing database connection -- 16:45:23.661 SQL [4730]: pgsql_close() -- 16:45:23.850 INFO [4730]: COREGRADE is starting... -- 16:45:23.851 INFO [4730]: Version from config: 1.0 -- 16:45:23.851 DEBUG [4730]: Connecting to database... -- 16:45:23.851 DEBUG [4730]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:45:23.851 SQL [4730]: pgsql_db_connect() -- 16:45:23.855 DEBUG [4730]: Database connection successful -- 16:45:23.855 INFO [4730]: _SERVER found -- 16:45:23.855 INFO [4730]: REMOTE_ADDR = 192.168.1.13 -- 16:45:23.855 INFO [4730]: SERVER_NAME = oameye.works.coregrade.com -- 16:45:23.855 INFO [4730]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=bpg94pmk6fqu49uvrs5f5id5bfr2stks; _gat_gtag_UA_54829827_2=1 -- 16:45:23.855 INFO [4730]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:45:23.855 INFO [4730]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:45:23.866 INFO [4730]: COREGRADE is stopping... -- 16:45:23.866 DEBUG [4730]: Closing database connection -- 16:45:23.866 SQL [4730]: pgsql_close() -- 16:53:10.909 INFO [4775]: COREGRADE is starting... -- 16:53:10.909 INFO [4775]: Version from config: 1.0 -- 16:53:10.909 DEBUG [4775]: Connecting to database... -- 16:53:10.909 DEBUG [4775]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:53:10.909 SQL [4775]: pgsql_db_connect() -- 16:53:10.914 DEBUG [4775]: Database connection successful -- 16:53:10.914 INFO [4775]: _SERVER found -- 16:53:10.914 INFO [4775]: REMOTE_ADDR = 192.168.1.13 -- 16:53:10.914 INFO [4775]: SERVER_NAME = oameye.works.coregrade.com -- 16:53:10.914 INFO [4775]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=bpg94pmk6fqu49uvrs5f5id5bfr2stks -- 16:53:10.914 INFO [4775]: QUERY_STRING = /auth -- 16:53:10.914 INFO [4775]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:53:10.949 INFO [4775]: COREGRADE is stopping... -- 16:53:10.949 DEBUG [4775]: Closing database connection -- 16:53:10.949 SQL [4775]: pgsql_close() -- 16:53:11.222 INFO [4775]: COREGRADE is starting... -- 16:53:11.222 INFO [4775]: Version from config: 1.0 -- 16:53:11.222 DEBUG [4775]: Connecting to database... -- 16:53:11.222 DEBUG [4775]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:53:11.222 SQL [4775]: pgsql_db_connect() -- 16:53:11.226 DEBUG [4775]: Database connection successful -- 16:53:11.226 INFO [4775]: _SERVER found -- 16:53:11.226 INFO [4775]: REMOTE_ADDR = 192.168.1.13 -- 16:53:11.226 INFO [4775]: SERVER_NAME = oameye.works.coregrade.com -- 16:53:11.226 INFO [4775]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=l7hp6h0fj6u1rc5q7m1s48lklb2b6s7e -- 16:53:11.226 INFO [4775]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:53:11.226 INFO [4775]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:53:11.239 INFO [4775]: COREGRADE is stopping... -- 16:53:11.239 DEBUG [4775]: Closing database connection -- 16:53:11.239 SQL [4775]: pgsql_close() -- 16:53:12.101 INFO [4775]: COREGRADE is starting... -- 16:53:12.101 INFO [4775]: Version from config: 1.0 -- 16:53:12.101 DEBUG [4775]: Connecting to database... -- 16:53:12.101 DEBUG [4775]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:53:12.101 SQL [4775]: pgsql_db_connect() -- 16:53:12.139 INFO [4775]: COREGRADE is starting... -- 16:53:12.139 INFO [4775]: Version from config: 1.0 -- 16:53:12.139 DEBUG [4775]: Connecting to database... -- 16:53:12.139 DEBUG [4775]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:53:12.139 SQL [4775]: pgsql_db_connect() -- 16:53:12.143 DEBUG [4775]: Database connection successful -- 16:53:12.143 INFO [4775]: _SERVER found -- 16:53:12.143 INFO [4775]: REMOTE_ADDR = 192.168.1.13 -- 16:53:12.143 INFO [4775]: SERVER_NAME = oameye.works.coregrade.com -- 16:53:12.143 INFO [4775]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=l7hp6h0fj6u1rc5q7m1s48lklb2b6s7e -- 16:53:12.143 INFO [4775]: QUERY_STRING = -- 16:53:12.143 INFO [4775]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:53:12.143 INFO [4775]: SystemStatus()09-09-********~************ -- 16:53:12.143 INFO [4775]: long coregrade_api_main(CVars in, CVars &out) -- 16:53:12.143 INFO [4775]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 16:53:12.143 INFO [4775]: account calls -- 16:53:12.143 INFO [4775]: account_calls() -- 16:53:12.143 INFO [4775]: LoginCoreGradeAccount() -- 16:53:12.143 FLOG_MAX [4775]: REQ_STRING(username) -- 16:53:12.143 FLOG_MAX [4775]: REQ_STRING(password) -- 16:53:12.143 FLOG_MAX [4775]: REQ_STRING(sessionid) -- 16:53:12.143 FLOG_MAX [4775]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:53:12.143 SQL [4775]: pgsql_query() -- 16:53:12.143 SQL [4775]: About to run query: -- 16:53:12.143 SQL [4775]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 16:53:12.147 SQL [4775]: Found rows: 1 -- 16:53:12.147 FLOG_MAX [4775]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 16:53:12.147 INFO [4775]: long SessionCheck(long uid, const char *sessionid, int create ) -- 16:53:12.147 SQL [4775]: pgsql_exec() -- 16:53:12.147 SQL [4775]: About to run query: -- 16:53:12.147 SQL [4775]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 16:53:12.148 SQL [4775]: PQcmdTuples: 1 -- 16:53:12.148 SQL [4775]: Affected rows: 1 -- 16:53:12.148 SQL [4775]: pgsql_exec() -- 16:53:12.148 SQL [4775]: About to run query: -- 16:53:12.148 SQL [4775]: DELETE FROM members_session WHERE member_id=5 -- 16:53:12.148 SQL [4775]: PQcmdTuples: 0 -- 16:53:12.148 SQL [4775]: Affected rows: 0 -- 16:53:12.149 SQL [4775]: pgsql_query() -- 16:53:12.149 SQL [4775]: About to run query: -- 16:53:12.149 SQL [4775]: SELECT * FROM members_session WHERE member_id=5 AND session<>'B5D6C23F3E62FB9A59480B044B9E1F69' -- 16:53:12.149 SQL [4775]: Found rows: 0 -- 16:53:12.149 SQL [4775]: Found rows: 0 -- 16:53:12.149 FLOG_MAX [4775]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:53:12.149 SQL [4775]: pgsql_query() -- 16:53:12.149 SQL [4775]: About to run query: -- 16:53:12.149 SQL [4775]: SELECT * FROM members_session WHERE member_id=5 AND session='B5D6C23F3E62FB9A59480B044B9E1F69' -- 16:53:12.150 SQL [4775]: Found rows: 0 -- 16:53:12.150 SQL [4775]: Found rows: 0 -- 16:53:12.150 FLOG_MAX [4775]: insert_db_record() -- 16:53:12.150 SQL [4775]: pgsql_exec() -- 16:53:12.150 SQL [4775]: About to run query: -- 16:53:12.150 SQL [4775]: INSERT INTO members_session (member_id,session) VALUES ('5','B5D6C23F3E62FB9A59480B044B9E1F69') -- 16:53:12.151 SQL [4775]: PQcmdTuples: 1 -- 16:53:12.151 SQL [4775]: Affected rows: 1 -- 16:53:12.151 FLOG_MAX [4775]: SELECT currval('members_session_id_seq') -- 16:53:12.151 SQL [4775]: pgsql_query() -- 16:53:12.151 SQL [4775]: About to run query: -- 16:53:12.151 SQL [4775]: SELECT currval('members_session_id_seq') -- 16:53:12.152 SQL [4775]: Found rows: 1 -- 16:53:12.152 INFO [4775]: CreateDefaultPage() -- 16:53:12.152 FLOG_MAX [4775]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:53:12.152 SQL [4775]: pgsql_query() -- 16:53:12.152 SQL [4775]: About to run query: -- 16:53:12.152 SQL [4775]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 16:53:12.152 SQL [4775]: Found rows: 1 -- 16:53:12.152 FLOG_MAX [4775]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 16:53:12.152 SQL [4775]: pgsql_query() -- 16:53:12.152 SQL [4775]: About to run query: -- 16:53:12.152 SQL [4775]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 16:53:12.152 SQL [4775]: Found rows: 1 -- 16:53:12.152 INFO [4775]: /CreateDefaultPage() -- 16:53:12.152 INFO [4775]: /LoginCoreGradeAccount() -- 16:53:12.152 INFO [4775]: RET: added=2020-02-05 06:47:23.982154 -- 16:53:12.152 INFO [4775]: RET: email=ameye+11@chiefsoft.com -- 16:53:12.152 INFO [4775]: RET: firstname=Olu -- 16:53:12.152 INFO [4775]: RET: id=5 -- 16:53:12.152 INFO [4775]: RET: last_login= -- 16:53:12.152 INFO [4775]: RET: lastname=Amey -- 16:53:12.152 INFO [4775]: RET: loc=192.168.1.13 -- 16:53:12.152 INFO [4775]: RET: member_id=5 -- 16:53:12.152 INFO [4775]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 16:53:12.152 INFO [4775]: RET: phone= -- 16:53:12.152 INFO [4775]: RET: pid= -- 16:53:12.152 INFO [4775]: RET: result=YES I GET TO BACK END -- 16:53:12.153 INFO [4775]: RET: sessionid=B5D6C23F3E62FB9A59480B044B9E1F69 -- 16:53:12.153 INFO [4775]: RET: status=1 -- 16:53:12.153 INFO [4775]: RET: stauts=OK -- 16:53:12.153 INFO [4775]: RET: username=ameye+11@chiefsoft.com -- 16:53:12.153 INFO [4775]: RET: verified= -- 16:53:12.154 INFO [4775]: COREGRADE is stopping... -- 16:53:12.154 DEBUG [4775]: Closing database connection -- 16:53:12.154 SQL [4775]: pgsql_close() -- 16:53:12.105 DEBUG [4775]: Database connection successful -- 16:53:12.105 INFO [4775]: _SERVER found -- 16:53:12.105 INFO [4775]: REMOTE_ADDR = 192.168.1.13 -- 16:53:12.105 INFO [4775]: SERVER_NAME = oameye.works.coregrade.com -- 16:53:12.105 INFO [4775]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=l7hp6h0fj6u1rc5q7m1s48lklb2b6s7e -- 16:53:12.105 INFO [4775]: QUERY_STRING = /auth -- 16:53:12.105 INFO [4775]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:53:12.154 INFO [4775]: COREGRADE is stopping... -- 16:53:12.154 DEBUG [4775]: Closing database connection -- 16:53:12.154 SQL [4775]: pgsql_close() -- 16:53:12.190 INFO [4775]: COREGRADE is starting... -- 16:53:12.190 INFO [4775]: Version from config: 1.0 -- 16:53:12.190 DEBUG [4775]: Connecting to database... -- 16:53:12.190 DEBUG [4775]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:53:12.190 SQL [4775]: pgsql_db_connect() -- 16:53:12.194 DEBUG [4775]: Database connection successful -- 16:53:12.194 INFO [4775]: _SERVER found -- 16:53:12.194 INFO [4775]: REMOTE_ADDR = 192.168.1.13 -- 16:53:12.194 INFO [4775]: SERVER_NAME = oameye.works.coregrade.com -- 16:53:12.194 INFO [4775]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=l7hp6h0fj6u1rc5q7m1s48lklb2b6s7e -- 16:53:12.194 INFO [4775]: QUERY_STRING = /member/index -- 16:53:12.194 INFO [4775]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:53:12.232 INFO [4775]: COREGRADE is stopping... -- 16:53:12.232 DEBUG [4775]: Closing database connection -- 16:53:12.232 SQL [4775]: pgsql_close() -- 16:53:12.558 INFO [4775]: COREGRADE is starting... -- 16:53:12.558 INFO [4775]: Version from config: 1.0 -- 16:53:12.558 DEBUG [4775]: Connecting to database... -- 16:53:12.558 DEBUG [4775]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:53:12.558 SQL [4775]: pgsql_db_connect() -- 16:53:12.562 DEBUG [4775]: Database connection successful -- 16:53:12.562 INFO [4775]: _SERVER found -- 16:53:12.562 INFO [4775]: REMOTE_ADDR = 192.168.1.13 -- 16:53:12.562 INFO [4775]: SERVER_NAME = oameye.works.coregrade.com -- 16:53:12.562 INFO [4775]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=l7hp6h0fj6u1rc5q7m1s48lklb2b6s7e -- 16:53:12.562 INFO [4775]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:53:12.562 INFO [4775]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:53:12.574 INFO [4775]: COREGRADE is stopping... -- 16:53:12.574 DEBUG [4775]: Closing database connection -- 16:53:12.574 SQL [4775]: pgsql_close() -- 16:53:12.639 INFO [4775]: COREGRADE is starting... -- 16:53:12.639 INFO [4775]: Version from config: 1.0 -- 16:53:12.639 DEBUG [4775]: Connecting to database... -- 16:53:12.639 DEBUG [4775]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:53:12.639 SQL [4775]: pgsql_db_connect() -- 16:53:12.643 DEBUG [4775]: Database connection successful -- 16:53:12.643 INFO [4775]: _SERVER found -- 16:53:12.643 INFO [4775]: REMOTE_ADDR = 192.168.1.13 -- 16:53:12.643 INFO [4775]: SERVER_NAME = oameye.works.coregrade.com -- 16:53:12.643 INFO [4775]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=l7hp6h0fj6u1rc5q7m1s48lklb2b6s7e -- 16:53:12.643 INFO [4775]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:53:12.643 INFO [4775]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:53:12.654 INFO [4775]: COREGRADE is stopping... -- 16:53:12.654 DEBUG [4775]: Closing database connection -- 16:53:12.654 SQL [4775]: pgsql_close() -- 16:53:15.523 INFO [4775]: COREGRADE is starting... -- 16:53:15.523 INFO [4775]: Version from config: 1.0 -- 16:53:15.523 DEBUG [4775]: Connecting to database... -- 16:53:15.523 DEBUG [4775]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:53:15.523 SQL [4775]: pgsql_db_connect() -- 16:53:15.528 DEBUG [4775]: Database connection successful -- 16:53:15.528 INFO [4775]: _SERVER found -- 16:53:15.528 INFO [4775]: REMOTE_ADDR = 192.168.1.13 -- 16:53:15.528 INFO [4775]: SERVER_NAME = oameye.works.coregrade.com -- 16:53:15.528 INFO [4775]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=l7hp6h0fj6u1rc5q7m1s48lklb2b6s7e -- 16:53:15.528 INFO [4775]: QUERY_STRING = /auth/logout -- 16:53:15.528 INFO [4775]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:53:15.559 INFO [4775]: COREGRADE is stopping... -- 16:53:15.559 DEBUG [4775]: Closing database connection -- 16:53:15.559 SQL [4775]: pgsql_close() -- 16:53:15.815 INFO [4775]: COREGRADE is starting... -- 16:53:15.816 INFO [4775]: Version from config: 1.0 -- 16:53:15.816 DEBUG [4775]: Connecting to database... -- 16:53:15.816 DEBUG [4775]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:53:15.816 SQL [4775]: pgsql_db_connect() -- 16:53:15.820 DEBUG [4775]: Database connection successful -- 16:53:15.820 INFO [4775]: _SERVER found -- 16:53:15.820 INFO [4775]: REMOTE_ADDR = 192.168.1.13 -- 16:53:15.820 INFO [4775]: SERVER_NAME = oameye.works.coregrade.com -- 16:53:15.820 INFO [4775]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=l7hp6h0fj6u1rc5q7m1s48lklb2b6s7e -- 16:53:15.820 INFO [4775]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:53:15.820 INFO [4775]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:53:15.831 INFO [4775]: COREGRADE is stopping... -- 16:53:15.831 DEBUG [4775]: Closing database connection -- 16:53:15.831 SQL [4775]: pgsql_close() -- 16:53:17.831 INFO [4775]: COREGRADE is starting... -- 16:53:17.831 INFO [4775]: Version from config: 1.0 -- 16:53:17.831 DEBUG [4775]: Connecting to database... -- 16:53:17.831 DEBUG [4775]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:53:17.831 SQL [4775]: pgsql_db_connect() -- 16:53:17.835 DEBUG [4775]: Database connection successful -- 16:53:17.835 INFO [4775]: _SERVER found -- 16:53:17.835 INFO [4775]: REMOTE_ADDR = 192.168.1.13 -- 16:53:17.835 INFO [4775]: SERVER_NAME = oameye.works.coregrade.com -- 16:53:17.835 INFO [4775]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=l7hp6h0fj6u1rc5q7m1s48lklb2b6s7e -- 16:53:17.835 INFO [4775]: QUERY_STRING = /auth/resetpass -- 16:53:17.835 INFO [4775]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:53:17.866 INFO [4775]: COREGRADE is stopping... -- 16:53:17.866 DEBUG [4775]: Closing database connection -- 16:53:17.866 SQL [4775]: pgsql_close() -- 16:53:17.995 INFO [4775]: COREGRADE is starting... -- 16:53:17.995 INFO [4775]: Version from config: 1.0 -- 16:53:17.995 DEBUG [4775]: Connecting to database... -- 16:53:17.995 DEBUG [4775]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:53:17.995 SQL [4775]: pgsql_db_connect() -- 16:53:17.999 DEBUG [4775]: Database connection successful -- 16:53:17.999 INFO [4775]: _SERVER found -- 16:53:17.999 INFO [4775]: REMOTE_ADDR = 192.168.1.13 -- 16:53:17.999 INFO [4775]: SERVER_NAME = oameye.works.coregrade.com -- 16:53:17.999 INFO [4775]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=l7hp6h0fj6u1rc5q7m1s48lklb2b6s7e -- 16:53:17.999 INFO [4775]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:53:17.999 INFO [4775]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:53:18.010 INFO [4775]: COREGRADE is stopping... -- 16:53:18.010 DEBUG [4775]: Closing database connection -- 16:53:18.010 SQL [4775]: pgsql_close() -- 17:00:27.045 INFO [15803]: COREGRADE is starting... -- 17:00:27.046 INFO [15803]: Version from config: 1.0 -- 17:00:27.046 DEBUG [15803]: Connecting to database... -- 17:00:27.046 DEBUG [15803]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:27.046 SQL [15803]: pgsql_db_connect() -- 17:00:27.051 DEBUG [15803]: Database connection successful -- 17:00:27.051 INFO [15803]: _SERVER found -- 17:00:27.051 INFO [15803]: REMOTE_ADDR = 192.168.1.13 -- 17:00:27.051 INFO [15803]: SERVER_NAME = oameye.works.coregrade.com -- 17:00:27.051 INFO [15803]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=l7hp6h0fj6u1rc5q7m1s48lklb2b6s7e -- 17:00:27.051 INFO [15803]: QUERY_STRING = /auth/resetpass -- 17:00:27.051 INFO [15803]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:00:27.090 INFO [15803]: COREGRADE is stopping... -- 17:00:27.090 DEBUG [15803]: Closing database connection -- 17:00:27.090 SQL [15803]: pgsql_close() -- 17:00:27.312 INFO [15803]: COREGRADE is starting... -- 17:00:27.312 INFO [15803]: Version from config: 1.0 -- 17:00:27.312 DEBUG [15803]: Connecting to database... -- 17:00:27.312 DEBUG [15803]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:27.312 SQL [15803]: pgsql_db_connect() -- 17:00:27.316 DEBUG [15803]: Database connection successful -- 17:00:27.316 INFO [15803]: _SERVER found -- 17:00:27.316 INFO [15803]: REMOTE_ADDR = 192.168.1.13 -- 17:00:27.316 INFO [15803]: SERVER_NAME = oameye.works.coregrade.com -- 17:00:27.316 INFO [15803]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=unpci5ebg0n341bekml5ra33b4l9t1u6 -- 17:00:27.316 INFO [15803]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:00:27.316 INFO [15803]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:00:27.328 INFO [15803]: COREGRADE is stopping... -- 17:00:27.328 DEBUG [15803]: Closing database connection -- 17:00:27.328 SQL [15803]: pgsql_close() -- 17:02:12.247 INFO [15805]: COREGRADE is starting... -- 17:02:12.247 INFO [15805]: Version from config: 1.0 -- 17:02:12.247 DEBUG [15805]: Connecting to database... -- 17:02:12.247 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:02:12.247 SQL [15805]: pgsql_db_connect() -- 17:02:12.251 DEBUG [15805]: Database connection successful -- 17:02:12.251 INFO [15805]: _SERVER found -- 17:02:12.251 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 17:02:12.251 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 17:02:12.251 INFO [15805]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=unpci5ebg0n341bekml5ra33b4l9t1u6 -- 17:02:12.251 INFO [15805]: QUERY_STRING = /auth/resetpass -- 17:02:12.251 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:02:12.290 INFO [15805]: COREGRADE is stopping... -- 17:02:12.290 DEBUG [15805]: Closing database connection -- 17:02:12.290 SQL [15805]: pgsql_close() -- 17:02:12.398 INFO [15805]: COREGRADE is starting... -- 17:02:12.398 INFO [15805]: Version from config: 1.0 -- 17:02:12.398 DEBUG [15805]: Connecting to database... -- 17:02:12.398 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:02:12.398 SQL [15805]: pgsql_db_connect() -- 17:02:12.402 DEBUG [15805]: Database connection successful -- 17:02:12.402 INFO [15805]: _SERVER found -- 17:02:12.402 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 17:02:12.402 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 17:02:12.402 INFO [15805]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=unpci5ebg0n341bekml5ra33b4l9t1u6 -- 17:02:12.402 INFO [15805]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:02:12.402 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:02:12.415 INFO [15805]: COREGRADE is stopping... -- 17:02:12.415 DEBUG [15805]: Closing database connection -- 17:02:12.415 SQL [15805]: pgsql_close() -- 17:02:40.389 INFO [15807]: COREGRADE is starting... -- 17:02:40.389 INFO [15807]: Version from config: 1.0 -- 17:02:40.389 DEBUG [15807]: Connecting to database... -- 17:02:40.389 DEBUG [15807]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:02:40.389 SQL [15807]: pgsql_db_connect() -- 17:02:40.393 DEBUG [15807]: Database connection successful -- 17:02:40.393 INFO [15807]: _SERVER found -- 17:02:40.393 INFO [15807]: REMOTE_ADDR = 192.168.1.13 -- 17:02:40.393 INFO [15807]: SERVER_NAME = oameye.works.coregrade.com -- 17:02:40.393 INFO [15807]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=unpci5ebg0n341bekml5ra33b4l9t1u6 -- 17:02:40.393 INFO [15807]: QUERY_STRING = /auth/resetpass -- 17:02:40.393 INFO [15807]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:02:40.431 INFO [15807]: COREGRADE is stopping... -- 17:02:40.431 DEBUG [15807]: Closing database connection -- 17:02:40.431 SQL [15807]: pgsql_close() -- 17:02:40.559 INFO [15807]: COREGRADE is starting... -- 17:02:40.560 INFO [15807]: Version from config: 1.0 -- 17:02:40.560 DEBUG [15807]: Connecting to database... -- 17:02:40.560 DEBUG [15807]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:02:40.560 SQL [15807]: pgsql_db_connect() -- 17:02:40.564 DEBUG [15807]: Database connection successful -- 17:02:40.564 INFO [15807]: _SERVER found -- 17:02:40.564 INFO [15807]: REMOTE_ADDR = 192.168.1.13 -- 17:02:40.564 INFO [15807]: SERVER_NAME = oameye.works.coregrade.com -- 17:02:40.564 INFO [15807]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=unpci5ebg0n341bekml5ra33b4l9t1u6 -- 17:02:40.564 INFO [15807]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:02:40.564 INFO [15807]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:02:40.576 INFO [15807]: COREGRADE is stopping... -- 17:02:40.576 DEBUG [15807]: Closing database connection -- 17:02:40.576 SQL [15807]: pgsql_close() -- 17:06:33.351 INFO [15839]: COREGRADE is starting... -- 17:06:33.351 INFO [15839]: Version from config: 1.0 -- 17:06:33.351 DEBUG [15839]: Connecting to database... -- 17:06:33.351 DEBUG [15839]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:33.351 SQL [15839]: pgsql_db_connect() -- 17:06:33.356 DEBUG [15839]: Database connection successful -- 17:06:33.356 INFO [15839]: _SERVER found -- 17:06:33.356 INFO [15839]: REMOTE_ADDR = 192.168.1.13 -- 17:06:33.356 INFO [15839]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:33.356 INFO [15839]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=unpci5ebg0n341bekml5ra33b4l9t1u6 -- 17:06:33.356 INFO [15839]: QUERY_STRING = /auth/resetpass -- 17:06:33.356 INFO [15839]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:06:33.395 INFO [15839]: COREGRADE is stopping... -- 17:06:33.395 DEBUG [15839]: Closing database connection -- 17:06:33.395 SQL [15839]: pgsql_close() -- 17:06:33.504 INFO [15839]: COREGRADE is starting... -- 17:06:33.504 INFO [15839]: Version from config: 1.0 -- 17:06:33.504 DEBUG [15839]: Connecting to database... -- 17:06:33.504 DEBUG [15839]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:33.504 SQL [15839]: pgsql_db_connect() -- 17:06:33.508 DEBUG [15839]: Database connection successful -- 17:06:33.508 INFO [15839]: _SERVER found -- 17:06:33.508 INFO [15839]: REMOTE_ADDR = 192.168.1.13 -- 17:06:33.508 INFO [15839]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:33.508 INFO [15839]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1mikpqe9pvb2h7hesf3sciibf885ua5t -- 17:06:33.508 INFO [15839]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:06:33.508 INFO [15839]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:06:33.521 INFO [15839]: COREGRADE is stopping... -- 17:06:33.521 DEBUG [15839]: Closing database connection -- 17:06:33.521 SQL [15839]: pgsql_close() -- 17:08:26.617 INFO [15804]: COREGRADE is starting... -- 17:08:26.617 INFO [15804]: Version from config: 1.0 -- 17:08:26.617 DEBUG [15804]: Connecting to database... -- 17:08:26.617 DEBUG [15804]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:08:26.617 SQL [15804]: pgsql_db_connect() -- 17:08:26.622 DEBUG [15804]: Database connection successful -- 17:08:26.622 INFO [15804]: _SERVER found -- 17:08:26.622 INFO [15804]: REMOTE_ADDR = 192.168.1.13 -- 17:08:26.622 INFO [15804]: SERVER_NAME = oameye.works.coregrade.com -- 17:08:26.622 INFO [15804]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1mikpqe9pvb2h7hesf3sciibf885ua5t -- 17:08:26.622 INFO [15804]: QUERY_STRING = /auth/resetpass -- 17:08:26.622 INFO [15804]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:08:26.663 INFO [15804]: COREGRADE is stopping... -- 17:08:26.663 DEBUG [15804]: Closing database connection -- 17:08:26.663 SQL [15804]: pgsql_close() -- 17:08:26.827 INFO [15804]: COREGRADE is starting... -- 17:08:26.827 INFO [15804]: Version from config: 1.0 -- 17:08:26.827 DEBUG [15804]: Connecting to database... -- 17:08:26.827 DEBUG [15804]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:08:26.827 SQL [15804]: pgsql_db_connect() -- 17:08:26.832 DEBUG [15804]: Database connection successful -- 17:08:26.832 INFO [15804]: _SERVER found -- 17:08:26.832 INFO [15804]: REMOTE_ADDR = 192.168.1.13 -- 17:08:26.832 INFO [15804]: SERVER_NAME = oameye.works.coregrade.com -- 17:08:26.832 INFO [15804]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1mikpqe9pvb2h7hesf3sciibf885ua5t -- 17:08:26.832 INFO [15804]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:08:26.832 INFO [15804]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:08:26.844 INFO [15804]: COREGRADE is stopping... -- 17:08:26.845 DEBUG [15804]: Closing database connection -- 17:08:26.845 SQL [15804]: pgsql_close() -- 17:08:26.853 INFO [15803]: COREGRADE is starting... -- 17:08:26.853 INFO [15803]: Version from config: 1.0 -- 17:08:26.853 DEBUG [15803]: Connecting to database... -- 17:08:26.853 DEBUG [15803]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:08:26.853 SQL [15803]: pgsql_db_connect() -- 17:08:26.857 DEBUG [15803]: Database connection successful -- 17:08:26.857 INFO [15803]: _SERVER found -- 17:08:26.857 INFO [15803]: REMOTE_ADDR = 192.168.1.13 -- 17:08:26.857 INFO [15803]: SERVER_NAME = oameye.works.coregrade.com -- 17:08:26.857 INFO [15803]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1mikpqe9pvb2h7hesf3sciibf885ua5t -- 17:08:26.857 INFO [15803]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:08:26.857 INFO [15803]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:08:26.871 INFO [15803]: COREGRADE is stopping... -- 17:08:26.871 DEBUG [15803]: Closing database connection -- 17:08:26.871 SQL [15803]: pgsql_close() -- 17:08:30.090 INFO [15803]: COREGRADE is starting... -- 17:08:30.091 INFO [15803]: Version from config: 1.0 -- 17:08:30.091 DEBUG [15803]: Connecting to database... -- 17:08:30.091 DEBUG [15803]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:08:30.091 SQL [15803]: pgsql_db_connect() -- 17:08:30.095 DEBUG [15803]: Database connection successful -- 17:08:30.095 INFO [15803]: _SERVER found -- 17:08:30.095 INFO [15803]: REMOTE_ADDR = 192.168.1.13 -- 17:08:30.095 INFO [15803]: SERVER_NAME = oameye.works.coregrade.com -- 17:08:30.095 INFO [15803]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1mikpqe9pvb2h7hesf3sciibf885ua5t -- 17:08:30.095 INFO [15803]: QUERY_STRING = /auth -- 17:08:30.095 INFO [15803]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:08:30.132 INFO [15803]: COREGRADE is stopping... -- 17:08:30.132 DEBUG [15803]: Closing database connection -- 17:08:30.132 SQL [15803]: pgsql_close() -- 17:08:30.335 INFO [15803]: COREGRADE is starting... -- 17:08:30.335 INFO [15803]: Version from config: 1.0 -- 17:08:30.335 DEBUG [15803]: Connecting to database... -- 17:08:30.335 DEBUG [15803]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:08:30.335 SQL [15803]: pgsql_db_connect() -- 17:08:30.339 DEBUG [15803]: Database connection successful -- 17:08:30.340 INFO [15803]: _SERVER found -- 17:08:30.340 INFO [15803]: REMOTE_ADDR = 192.168.1.13 -- 17:08:30.340 INFO [15803]: SERVER_NAME = oameye.works.coregrade.com -- 17:08:30.340 INFO [15803]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1mikpqe9pvb2h7hesf3sciibf885ua5t -- 17:08:30.340 INFO [15803]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:08:30.340 INFO [15803]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:08:30.352 INFO [15803]: COREGRADE is stopping... -- 17:08:30.352 DEBUG [15803]: Closing database connection -- 17:08:30.352 SQL [15803]: pgsql_close() -- 17:08:32.839 INFO [15803]: COREGRADE is starting... -- 17:08:32.839 INFO [15803]: Version from config: 1.0 -- 17:08:32.839 DEBUG [15803]: Connecting to database... -- 17:08:32.839 DEBUG [15803]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:08:32.839 SQL [15803]: pgsql_db_connect() -- 17:08:32.880 INFO [15803]: COREGRADE is starting... -- 17:08:32.880 INFO [15803]: Version from config: 1.0 -- 17:08:32.880 DEBUG [15803]: Connecting to database... -- 17:08:32.880 DEBUG [15803]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:08:32.880 SQL [15803]: pgsql_db_connect() -- 17:08:32.885 DEBUG [15803]: Database connection successful -- 17:08:32.885 INFO [15803]: _SERVER found -- 17:08:32.885 INFO [15803]: REMOTE_ADDR = 192.168.1.13 -- 17:08:32.885 INFO [15803]: SERVER_NAME = oameye.works.coregrade.com -- 17:08:32.885 INFO [15803]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1mikpqe9pvb2h7hesf3sciibf885ua5t -- 17:08:32.885 INFO [15803]: QUERY_STRING = -- 17:08:32.885 INFO [15803]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:08:32.885 INFO [15803]: SystemStatus()09-09-********~************ -- 17:08:32.885 INFO [15803]: long coregrade_api_main(CVars in, CVars &out) -- 17:08:32.885 INFO [15803]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 17:08:32.885 INFO [15803]: account calls -- 17:08:32.885 INFO [15803]: account_calls() -- 17:08:32.885 INFO [15803]: LoginCoreGradeAccount() -- 17:08:32.885 FLOG_MAX [15803]: REQ_STRING(username) -- 17:08:32.885 FLOG_MAX [15803]: REQ_STRING(password) -- 17:08:32.885 FLOG_MAX [15803]: REQ_STRING(sessionid) -- 17:08:32.885 FLOG_MAX [15803]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:08:32.885 SQL [15803]: pgsql_query() -- 17:08:32.885 SQL [15803]: About to run query: -- 17:08:32.885 SQL [15803]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 17:08:32.889 SQL [15803]: Found rows: 1 -- 17:08:32.889 FLOG_MAX [15803]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 17:08:32.889 INFO [15803]: long SessionCheck(long uid, const char *sessionid, int create ) -- 17:08:32.889 SQL [15803]: pgsql_exec() -- 17:08:32.889 SQL [15803]: About to run query: -- 17:08:32.889 SQL [15803]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 17:08:32.889 SQL [15803]: PQcmdTuples: 0 -- 17:08:32.890 SQL [15803]: Affected rows: 0 -- 17:08:32.890 SQL [15803]: pgsql_exec() -- 17:08:32.890 SQL [15803]: About to run query: -- 17:08:32.890 SQL [15803]: DELETE FROM members_session WHERE member_id=5 -- 17:08:32.890 SQL [15803]: PQcmdTuples: 1 -- 17:08:32.890 SQL [15803]: Affected rows: 1 -- 17:08:32.890 SQL [15803]: pgsql_query() -- 17:08:32.890 SQL [15803]: About to run query: -- 17:08:32.890 SQL [15803]: SELECT * FROM members_session WHERE member_id=5 AND session<>'4F6A42096A9715C11FD8A1FC26C482EC' -- 17:08:32.891 SQL [15803]: Found rows: 0 -- 17:08:32.891 SQL [15803]: Found rows: 0 -- 17:08:32.891 FLOG_MAX [15803]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:08:32.891 SQL [15803]: pgsql_query() -- 17:08:32.891 SQL [15803]: About to run query: -- 17:08:32.891 SQL [15803]: SELECT * FROM members_session WHERE member_id=5 AND session='4F6A42096A9715C11FD8A1FC26C482EC' -- 17:08:32.891 SQL [15803]: Found rows: 0 -- 17:08:32.891 SQL [15803]: Found rows: 0 -- 17:08:32.891 FLOG_MAX [15803]: insert_db_record() -- 17:08:32.891 SQL [15803]: pgsql_exec() -- 17:08:32.892 SQL [15803]: About to run query: -- 17:08:32.892 SQL [15803]: INSERT INTO members_session (member_id,session) VALUES ('5','4F6A42096A9715C11FD8A1FC26C482EC') -- 17:08:32.893 SQL [15803]: PQcmdTuples: 1 -- 17:08:32.893 SQL [15803]: Affected rows: 1 -- 17:08:32.893 FLOG_MAX [15803]: SELECT currval('members_session_id_seq') -- 17:08:32.893 SQL [15803]: pgsql_query() -- 17:08:32.893 SQL [15803]: About to run query: -- 17:08:32.893 SQL [15803]: SELECT currval('members_session_id_seq') -- 17:08:32.894 SQL [15803]: Found rows: 1 -- 17:08:32.894 INFO [15803]: CreateDefaultPage() -- 17:08:32.894 FLOG_MAX [15803]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:08:32.894 SQL [15803]: pgsql_query() -- 17:08:32.894 SQL [15803]: About to run query: -- 17:08:32.894 SQL [15803]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 17:08:32.894 SQL [15803]: Found rows: 1 -- 17:08:32.894 FLOG_MAX [15803]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 17:08:32.894 SQL [15803]: pgsql_query() -- 17:08:32.894 SQL [15803]: About to run query: -- 17:08:32.894 SQL [15803]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 17:08:32.895 SQL [15803]: Found rows: 1 -- 17:08:32.895 INFO [15803]: /CreateDefaultPage() -- 17:08:32.895 INFO [15803]: /LoginCoreGradeAccount() -- 17:08:32.895 INFO [15803]: RET: added=2020-02-05 06:47:23.982154 -- 17:08:32.895 INFO [15803]: RET: email=ameye+11@chiefsoft.com -- 17:08:32.895 INFO [15803]: RET: firstname=Olu -- 17:08:32.895 INFO [15803]: RET: id=5 -- 17:08:32.895 INFO [15803]: RET: last_login= -- 17:08:32.895 INFO [15803]: RET: lastname=Amey -- 17:08:32.895 INFO [15803]: RET: loc=192.168.1.13 -- 17:08:32.895 INFO [15803]: RET: member_id=5 -- 17:08:32.895 INFO [15803]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 17:08:32.895 INFO [15803]: RET: phone= -- 17:08:32.895 INFO [15803]: RET: pid= -- 17:08:32.895 INFO [15803]: RET: result=YES I GET TO BACK END -- 17:08:32.895 INFO [15803]: RET: sessionid=4F6A42096A9715C11FD8A1FC26C482EC -- 17:08:32.895 INFO [15803]: RET: status=1 -- 17:08:32.895 INFO [15803]: RET: stauts=OK -- 17:08:32.895 INFO [15803]: RET: username=ameye+11@chiefsoft.com -- 17:08:32.895 INFO [15803]: RET: verified= -- 17:08:32.896 INFO [15803]: COREGRADE is stopping... -- 17:08:32.896 DEBUG [15803]: Closing database connection -- 17:08:32.896 SQL [15803]: pgsql_close() -- 17:08:32.844 DEBUG [15803]: Database connection successful -- 17:08:32.844 INFO [15803]: _SERVER found -- 17:08:32.844 INFO [15803]: REMOTE_ADDR = 192.168.1.13 -- 17:08:32.844 INFO [15803]: SERVER_NAME = oameye.works.coregrade.com -- 17:08:32.844 INFO [15803]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1mikpqe9pvb2h7hesf3sciibf885ua5t -- 17:08:32.844 INFO [15803]: QUERY_STRING = /auth -- 17:08:32.844 INFO [15803]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:08:32.897 INFO [15803]: COREGRADE is stopping... -- 17:08:32.897 DEBUG [15803]: Closing database connection -- 17:08:32.897 SQL [15803]: pgsql_close() -- 17:08:32.924 INFO [15803]: COREGRADE is starting... -- 17:08:32.924 INFO [15803]: Version from config: 1.0 -- 17:08:32.924 DEBUG [15803]: Connecting to database... -- 17:08:32.924 DEBUG [15803]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:08:32.924 SQL [15803]: pgsql_db_connect() -- 17:08:32.929 DEBUG [15803]: Database connection successful -- 17:08:32.929 INFO [15803]: _SERVER found -- 17:08:32.929 INFO [15803]: REMOTE_ADDR = 192.168.1.13 -- 17:08:32.929 INFO [15803]: SERVER_NAME = oameye.works.coregrade.com -- 17:08:32.929 INFO [15803]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1mikpqe9pvb2h7hesf3sciibf885ua5t -- 17:08:32.929 INFO [15803]: QUERY_STRING = /member/index -- 17:08:32.929 INFO [15803]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:08:32.966 INFO [15803]: COREGRADE is stopping... -- 17:08:32.966 DEBUG [15803]: Closing database connection -- 17:08:32.966 SQL [15803]: pgsql_close() -- 17:08:33.252 INFO [15803]: COREGRADE is starting... -- 17:08:33.252 INFO [15803]: Version from config: 1.0 -- 17:08:33.252 DEBUG [15803]: Connecting to database... -- 17:08:33.252 DEBUG [15803]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:08:33.252 SQL [15803]: pgsql_db_connect() -- 17:08:33.256 DEBUG [15803]: Database connection successful -- 17:08:33.256 INFO [15803]: _SERVER found -- 17:08:33.256 INFO [15803]: REMOTE_ADDR = 192.168.1.13 -- 17:08:33.256 INFO [15803]: SERVER_NAME = oameye.works.coregrade.com -- 17:08:33.256 INFO [15803]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1mikpqe9pvb2h7hesf3sciibf885ua5t -- 17:08:33.256 INFO [15803]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:08:33.256 INFO [15803]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:08:33.268 INFO [15803]: COREGRADE is stopping... -- 17:08:33.268 DEBUG [15803]: Closing database connection -- 17:08:33.268 SQL [15803]: pgsql_close() -- 17:08:33.290 INFO [15803]: COREGRADE is starting... -- 17:08:33.291 INFO [15803]: Version from config: 1.0 -- 17:08:33.291 DEBUG [15803]: Connecting to database... -- 17:08:33.291 DEBUG [15803]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:08:33.291 SQL [15803]: pgsql_db_connect() -- 17:08:33.295 DEBUG [15803]: Database connection successful -- 17:08:33.295 INFO [15803]: _SERVER found -- 17:08:33.295 INFO [15803]: REMOTE_ADDR = 192.168.1.13 -- 17:08:33.295 INFO [15803]: SERVER_NAME = oameye.works.coregrade.com -- 17:08:33.295 INFO [15803]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1mikpqe9pvb2h7hesf3sciibf885ua5t -- 17:08:33.295 INFO [15803]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:08:33.295 INFO [15803]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:08:33.306 INFO [15803]: COREGRADE is stopping... -- 17:08:33.306 DEBUG [15803]: Closing database connection -- 17:08:33.306 SQL [15803]: pgsql_close() -- 17:08:52.435 INFO [15806]: COREGRADE is starting... -- 17:08:52.435 INFO [15806]: Version from config: 1.0 -- 17:08:52.435 DEBUG [15806]: Connecting to database... -- 17:08:52.435 DEBUG [15806]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:08:52.435 SQL [15806]: pgsql_db_connect() -- 17:08:52.440 DEBUG [15806]: Database connection successful -- 17:08:52.440 INFO [15806]: _SERVER found -- 17:08:52.440 INFO [15806]: REMOTE_ADDR = 192.168.1.13 -- 17:08:52.440 INFO [15806]: SERVER_NAME = oameye.works.coregrade.com -- 17:08:52.440 INFO [15806]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1mikpqe9pvb2h7hesf3sciibf885ua5t -- 17:08:52.440 INFO [15806]: QUERY_STRING = /auth -- 17:08:52.440 INFO [15806]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:08:52.480 INFO [15806]: COREGRADE is stopping... -- 17:08:52.480 DEBUG [15806]: Closing database connection -- 17:08:52.480 SQL [15806]: pgsql_close() -- 17:08:52.844 INFO [15806]: COREGRADE is starting... -- 17:08:52.845 INFO [15806]: Version from config: 1.0 -- 17:08:52.845 DEBUG [15806]: Connecting to database... -- 17:08:52.845 DEBUG [15806]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:08:52.845 SQL [15806]: pgsql_db_connect() -- 17:08:52.849 DEBUG [15806]: Database connection successful -- 17:08:52.849 INFO [15806]: _SERVER found -- 17:08:52.849 INFO [15806]: REMOTE_ADDR = 192.168.1.13 -- 17:08:52.849 INFO [15806]: SERVER_NAME = oameye.works.coregrade.com -- 17:08:52.849 INFO [15806]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1mikpqe9pvb2h7hesf3sciibf885ua5t -- 17:08:52.849 INFO [15806]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:08:52.849 INFO [15806]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:08:52.862 INFO [15806]: COREGRADE is stopping... -- 17:08:52.862 DEBUG [15806]: Closing database connection -- 17:08:52.862 SQL [15806]: pgsql_close() -- 17:08:52.965 INFO [15806]: COREGRADE is starting... -- 17:08:52.965 INFO [15806]: Version from config: 1.0 -- 17:08:52.965 DEBUG [15806]: Connecting to database... -- 17:08:52.966 DEBUG [15806]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:08:52.966 SQL [15806]: pgsql_db_connect() -- 17:08:52.970 DEBUG [15806]: Database connection successful -- 17:08:52.970 INFO [15806]: _SERVER found -- 17:08:52.970 INFO [15806]: REMOTE_ADDR = 192.168.1.13 -- 17:08:52.970 INFO [15806]: SERVER_NAME = oameye.works.coregrade.com -- 17:08:52.970 INFO [15806]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1mikpqe9pvb2h7hesf3sciibf885ua5t -- 17:08:52.970 INFO [15806]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 17:08:52.970 INFO [15806]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:08:52.983 INFO [15806]: COREGRADE is stopping... -- 17:08:52.983 DEBUG [15806]: Closing database connection -- 17:08:52.983 SQL [15806]: pgsql_close() -- 17:08:53.627 INFO [15806]: COREGRADE is starting... -- 17:08:53.627 INFO [15806]: Version from config: 1.0 -- 17:08:53.627 DEBUG [15806]: Connecting to database... -- 17:08:53.627 DEBUG [15806]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:08:53.627 SQL [15806]: pgsql_db_connect() -- 17:08:53.632 DEBUG [15806]: Database connection successful -- 17:08:53.632 INFO [15806]: _SERVER found -- 17:08:53.632 INFO [15806]: REMOTE_ADDR = 192.168.1.13 -- 17:08:53.632 INFO [15806]: SERVER_NAME = oameye.works.coregrade.com -- 17:08:53.632 INFO [15806]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1mikpqe9pvb2h7hesf3sciibf885ua5t -- 17:08:53.632 INFO [15806]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:08:53.632 INFO [15806]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:08:53.645 INFO [15806]: COREGRADE is stopping... -- 17:08:53.645 DEBUG [15806]: Closing database connection -- 17:08:53.645 SQL [15806]: pgsql_close() -- 17:19:31.265 INFO [15805]: COREGRADE is starting... -- 17:19:31.265 INFO [15805]: Version from config: 1.0 -- 17:19:31.265 DEBUG [15805]: Connecting to database... -- 17:19:31.265 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:19:31.265 SQL [15805]: pgsql_db_connect() -- 17:19:31.270 DEBUG [15805]: Database connection successful -- 17:19:31.270 INFO [15805]: _SERVER found -- 17:19:31.270 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 17:19:31.270 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 17:19:31.270 INFO [15805]: QUERY_STRING = -- 17:19:31.270 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:19:31.315 INFO [15805]: COREGRADE is stopping... -- 17:19:31.315 DEBUG [15805]: Closing database connection -- 17:19:31.315 SQL [15805]: pgsql_close() -- 17:19:32.058 INFO [15837]: COREGRADE is starting... -- 17:19:32.058 INFO [15837]: Version from config: 1.0 -- 17:19:32.058 DEBUG [15837]: Connecting to database... -- 17:19:32.058 DEBUG [15837]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:19:32.058 SQL [15837]: pgsql_db_connect() -- 17:19:32.063 DEBUG [15837]: Database connection successful -- 17:19:32.063 INFO [15837]: _SERVER found -- 17:19:32.063 INFO [15837]: REMOTE_ADDR = 192.168.1.13 -- 17:19:32.063 INFO [15837]: SERVER_NAME = oameye.works.coregrade.com -- 17:19:32.063 INFO [15837]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge -- 17:19:32.063 INFO [15837]: QUERY_STRING = /assets/img/footer_1.jpg -- 17:19:32.063 INFO [15837]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:19:32.077 INFO [15837]: COREGRADE is stopping... -- 17:19:32.077 DEBUG [15837]: Closing database connection -- 17:19:32.077 SQL [15837]: pgsql_close() -- 17:19:32.103 INFO [15837]: COREGRADE is starting... -- 17:19:32.103 INFO [15837]: Version from config: 1.0 -- 17:19:32.103 DEBUG [15837]: Connecting to database... -- 17:19:32.103 DEBUG [15837]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:19:32.103 SQL [15837]: pgsql_db_connect() -- 17:19:32.107 DEBUG [15837]: Database connection successful -- 17:19:32.107 INFO [15837]: _SERVER found -- 17:19:32.107 INFO [15837]: REMOTE_ADDR = 192.168.1.13 -- 17:19:32.107 INFO [15837]: SERVER_NAME = oameye.works.coregrade.com -- 17:19:32.107 INFO [15837]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge -- 17:19:32.107 INFO [15837]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 17:19:32.107 INFO [15837]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:19:32.119 INFO [15837]: COREGRADE is stopping... -- 17:19:32.119 DEBUG [15837]: Closing database connection -- 17:19:32.119 SQL [15837]: pgsql_close() -- 17:19:41.304 INFO [15839]: COREGRADE is starting... -- 17:19:41.304 INFO [15839]: Version from config: 1.0 -- 17:19:41.304 DEBUG [15839]: Connecting to database... -- 17:19:41.304 DEBUG [15839]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:19:41.304 SQL [15839]: pgsql_db_connect() -- 17:19:41.308 DEBUG [15839]: Database connection successful -- 17:19:41.308 INFO [15839]: _SERVER found -- 17:19:41.308 INFO [15839]: REMOTE_ADDR = 192.168.1.13 -- 17:19:41.308 INFO [15839]: SERVER_NAME = oameye.works.coregrade.com -- 17:19:41.308 INFO [15839]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _ga=GA1.2.1639397498.1581373171; _gid=GA1.2.1636001442.1581373171; _gat_gtag_UA_54829827_2=1 -- 17:19:41.308 INFO [15839]: QUERY_STRING = -- 17:19:41.308 INFO [15839]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:19:41.349 INFO [15839]: COREGRADE is stopping... -- 17:19:41.349 DEBUG [15839]: Closing database connection -- 17:19:41.349 SQL [15839]: pgsql_close() -- 17:19:41.843 INFO [15839]: COREGRADE is starting... -- 17:19:41.843 INFO [15839]: Version from config: 1.0 -- 17:19:41.843 DEBUG [15839]: Connecting to database... -- 17:19:41.843 DEBUG [15839]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:19:41.843 SQL [15839]: pgsql_db_connect() -- 17:19:41.847 DEBUG [15839]: Database connection successful -- 17:19:41.847 INFO [15839]: _SERVER found -- 17:19:41.847 INFO [15839]: REMOTE_ADDR = 192.168.1.13 -- 17:19:41.847 INFO [15839]: SERVER_NAME = oameye.works.coregrade.com -- 17:19:41.847 INFO [15839]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _ga=GA1.2.1639397498.1581373171; _gid=GA1.2.1636001442.1581373171; _gat_gtag_UA_54829827_2=1 -- 17:19:41.847 INFO [15839]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 17:19:41.847 INFO [15839]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:19:41.859 INFO [15839]: COREGRADE is stopping... -- 17:19:41.859 DEBUG [15839]: Closing database connection -- 17:19:41.859 SQL [15839]: pgsql_close() -- 17:19:41.933 INFO [15839]: COREGRADE is starting... -- 17:19:41.933 INFO [15839]: Version from config: 1.0 -- 17:19:41.933 DEBUG [15839]: Connecting to database... -- 17:19:41.933 DEBUG [15839]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:19:41.933 SQL [15839]: pgsql_db_connect() -- 17:19:41.937 DEBUG [15839]: Database connection successful -- 17:19:41.937 INFO [15839]: _SERVER found -- 17:19:41.937 INFO [15839]: REMOTE_ADDR = 192.168.1.13 -- 17:19:41.937 INFO [15839]: SERVER_NAME = oameye.works.coregrade.com -- 17:19:41.937 INFO [15839]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _ga=GA1.2.1639397498.1581373171; _gid=GA1.2.1636001442.1581373171; _gat_gtag_UA_54829827_2=1 -- 17:19:41.937 INFO [15839]: QUERY_STRING = /assets/img/footer_1.jpg -- 17:19:41.937 INFO [15839]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:19:41.948 INFO [15839]: COREGRADE is stopping... -- 17:19:41.948 DEBUG [15839]: Closing database connection -- 17:19:41.948 SQL [15839]: pgsql_close() -- 17:20:06.774 INFO [15806]: COREGRADE is starting... -- 17:20:06.774 INFO [15806]: Version from config: 1.0 -- 17:20:06.774 DEBUG [15806]: Connecting to database... -- 17:20:06.774 DEBUG [15806]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:06.774 SQL [15806]: pgsql_db_connect() -- 17:20:06.782 INFO [15959]: COREGRADE is starting... -- 17:20:06.782 INFO [15959]: Version from config: 1.0 -- 17:20:06.782 DEBUG [15959]: Connecting to database... -- 17:20:06.782 DEBUG [15959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:06.782 SQL [15959]: pgsql_db_connect() -- 17:20:06.778 DEBUG [15806]: Database connection successful -- 17:20:06.778 INFO [15806]: _SERVER found -- 17:20:06.778 INFO [15806]: REMOTE_ADDR = 192.168.1.13 -- 17:20:06.778 INFO [15806]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:06.778 INFO [15806]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _ga=GA1.2.1639397498.1581373171; _gid=GA1.2.1636001442.1581373171; _gat_gtag_UA_54829827_2=1 -- 17:20:06.778 INFO [15806]: QUERY_STRING = /welcome/viewLogin -- 17:20:06.778 INFO [15806]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:20:06.813 INFO [15806]: COREGRADE is stopping... -- 17:20:06.813 DEBUG [15806]: Closing database connection -- 17:20:06.813 SQL [15806]: pgsql_close() -- 17:20:06.786 DEBUG [15959]: Database connection successful -- 17:20:06.786 INFO [15959]: _SERVER found -- 17:20:06.786 INFO [15959]: REMOTE_ADDR = 192.168.1.13 -- 17:20:06.786 INFO [15959]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:06.786 INFO [15959]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _ga=GA1.2.1639397498.1581373171; _gid=GA1.2.1636001442.1581373171; _gat_gtag_UA_54829827_2=1 -- 17:20:06.786 INFO [15959]: QUERY_STRING = /auth/newuser -- 17:20:06.786 INFO [15959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:20:06.825 INFO [15959]: COREGRADE is stopping... -- 17:20:06.825 DEBUG [15959]: Closing database connection -- 17:20:06.825 SQL [15959]: pgsql_close() -- 17:20:06.842 INFO [15959]: COREGRADE is starting... -- 17:20:06.842 INFO [15959]: Version from config: 1.0 -- 17:20:06.842 DEBUG [15959]: Connecting to database... -- 17:20:06.842 DEBUG [15959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:06.842 SQL [15959]: pgsql_db_connect() -- 17:20:06.846 DEBUG [15959]: Database connection successful -- 17:20:06.846 INFO [15959]: _SERVER found -- 17:20:06.846 INFO [15959]: REMOTE_ADDR = 192.168.1.13 -- 17:20:06.846 INFO [15959]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:06.846 INFO [15959]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _ga=GA1.2.1639397498.1581373171; _gid=GA1.2.1636001442.1581373171; _gat_gtag_UA_54829827_2=1 -- 17:20:06.846 INFO [15959]: QUERY_STRING = /auth/index -- 17:20:06.846 INFO [15959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:20:06.881 INFO [15959]: COREGRADE is stopping... -- 17:20:06.881 DEBUG [15959]: Closing database connection -- 17:20:06.881 SQL [15959]: pgsql_close() -- 17:20:07.107 INFO [15806]: COREGRADE is starting... -- 17:20:07.107 INFO [15806]: Version from config: 1.0 -- 17:20:07.107 DEBUG [15806]: Connecting to database... -- 17:20:07.107 DEBUG [15806]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:07.107 SQL [15806]: pgsql_db_connect() -- 17:20:07.111 DEBUG [15806]: Database connection successful -- 17:20:07.111 INFO [15806]: _SERVER found -- 17:20:07.111 INFO [15806]: REMOTE_ADDR = 192.168.1.13 -- 17:20:07.111 INFO [15806]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:07.111 INFO [15806]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _ga=GA1.2.1639397498.1581373171; _gid=GA1.2.1636001442.1581373171; _gat_gtag_UA_54829827_2=1 -- 17:20:07.111 INFO [15806]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:20:07.111 INFO [15806]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:20:07.123 INFO [15806]: COREGRADE is stopping... -- 17:20:07.123 DEBUG [15806]: Closing database connection -- 17:20:07.123 SQL [15806]: pgsql_close() -- 17:20:07.512 INFO [15807]: COREGRADE is starting... -- 17:20:07.512 INFO [15807]: Version from config: 1.0 -- 17:20:07.512 DEBUG [15807]: Connecting to database... -- 17:20:07.512 DEBUG [15807]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:07.512 SQL [15807]: pgsql_db_connect() -- 17:20:07.516 DEBUG [15807]: Database connection successful -- 17:20:07.516 INFO [15807]: _SERVER found -- 17:20:07.516 INFO [15807]: REMOTE_ADDR = 192.168.1.13 -- 17:20:07.516 INFO [15807]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:07.516 INFO [15807]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _ga=GA1.2.1639397498.1581373171; _gid=GA1.2.1636001442.1581373171; _gat_gtag_UA_54829827_2=1 -- 17:20:07.516 INFO [15807]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:20:07.516 INFO [15807]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:20:07.529 INFO [15807]: COREGRADE is stopping... -- 17:20:07.529 DEBUG [15807]: Closing database connection -- 17:20:07.529 SQL [15807]: pgsql_close() -- 17:20:10.636 INFO [15807]: COREGRADE is starting... -- 17:20:10.636 INFO [15807]: Version from config: 1.0 -- 17:20:10.636 DEBUG [15807]: Connecting to database... -- 17:20:10.636 DEBUG [15807]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:10.636 SQL [15807]: pgsql_db_connect() -- 17:20:10.640 DEBUG [15807]: Database connection successful -- 17:20:10.640 INFO [15807]: _SERVER found -- 17:20:10.640 INFO [15807]: REMOTE_ADDR = 192.168.1.13 -- 17:20:10.640 INFO [15807]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:10.640 INFO [15807]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _ga=GA1.2.1639397498.1581373171; _gid=GA1.2.1636001442.1581373171; _gat_gtag_UA_54829827_2=1 -- 17:20:10.640 INFO [15807]: QUERY_STRING = -- 17:20:10.640 INFO [15807]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:20:10.680 INFO [15807]: COREGRADE is stopping... -- 17:20:10.680 DEBUG [15807]: Closing database connection -- 17:20:10.680 SQL [15807]: pgsql_close() -- 17:20:10.867 INFO [15805]: COREGRADE is starting... -- 17:20:10.867 INFO [15805]: Version from config: 1.0 -- 17:20:10.867 DEBUG [15805]: Connecting to database... -- 17:20:10.867 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:10.867 SQL [15805]: pgsql_db_connect() -- 17:20:10.871 DEBUG [15805]: Database connection successful -- 17:20:10.871 INFO [15805]: _SERVER found -- 17:20:10.871 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 17:20:10.871 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:10.871 INFO [15805]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _ga=GA1.2.1639397498.1581373171; _gid=GA1.2.1636001442.1581373171; _gat_gtag_UA_54829827_2=1 -- 17:20:10.871 INFO [15805]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 17:20:10.871 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:20:10.882 INFO [15805]: COREGRADE is stopping... -- 17:20:10.882 DEBUG [15805]: Closing database connection -- 17:20:10.882 SQL [15805]: pgsql_close() -- 17:20:10.972 INFO [15805]: COREGRADE is starting... -- 17:20:10.972 INFO [15805]: Version from config: 1.0 -- 17:20:10.972 DEBUG [15805]: Connecting to database... -- 17:20:10.972 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:10.972 SQL [15805]: pgsql_db_connect() -- 17:20:10.976 DEBUG [15805]: Database connection successful -- 17:20:10.976 INFO [15805]: _SERVER found -- 17:20:10.976 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 17:20:10.976 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:10.976 INFO [15805]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _ga=GA1.2.1639397498.1581373171; _gid=GA1.2.1636001442.1581373171; _gat_gtag_UA_54829827_2=1 -- 17:20:10.976 INFO [15805]: QUERY_STRING = /assets/img/footer_1.jpg -- 17:20:10.976 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:20:10.987 INFO [15805]: COREGRADE is stopping... -- 17:20:10.987 DEBUG [15805]: Closing database connection -- 17:20:10.987 SQL [15805]: pgsql_close() -- 17:20:12.993 INFO [15805]: COREGRADE is starting... -- 17:20:12.993 INFO [15805]: Version from config: 1.0 -- 17:20:12.993 DEBUG [15805]: Connecting to database... -- 17:20:12.993 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:12.993 SQL [15805]: pgsql_db_connect() -- 17:20:12.997 DEBUG [15805]: Database connection successful -- 17:20:12.997 INFO [15805]: _SERVER found -- 17:20:12.997 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 17:20:12.997 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:12.997 INFO [15805]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _ga=GA1.2.1639397498.1581373171; _gid=GA1.2.1636001442.1581373171; _gat_gtag_UA_54829827_2=1 -- 17:20:12.997 INFO [15805]: QUERY_STRING = /auth/newuser -- 17:20:12.997 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:20:13.028 INFO [15805]: COREGRADE is stopping... -- 17:20:13.028 DEBUG [15805]: Closing database connection -- 17:20:13.028 SQL [15805]: pgsql_close() -- 17:20:13.306 INFO [15805]: COREGRADE is starting... -- 17:20:13.306 INFO [15805]: Version from config: 1.0 -- 17:20:13.306 DEBUG [15805]: Connecting to database... -- 17:20:13.306 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:13.306 SQL [15805]: pgsql_db_connect() -- 17:20:13.310 DEBUG [15805]: Database connection successful -- 17:20:13.310 INFO [15805]: _SERVER found -- 17:20:13.310 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 17:20:13.310 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:13.310 INFO [15805]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _ga=GA1.2.1639397498.1581373171; _gid=GA1.2.1636001442.1581373171; _gat_gtag_UA_54829827_2=1 -- 17:20:13.310 INFO [15805]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:20:13.310 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:20:13.321 INFO [15805]: COREGRADE is stopping... -- 17:20:13.321 DEBUG [15805]: Closing database connection -- 17:20:13.321 SQL [15805]: pgsql_close() -- 17:20:13.375 INFO [15805]: COREGRADE is starting... -- 17:20:13.375 INFO [15805]: Version from config: 1.0 -- 17:20:13.375 DEBUG [15805]: Connecting to database... -- 17:20:13.375 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:13.375 SQL [15805]: pgsql_db_connect() -- 17:20:13.379 DEBUG [15805]: Database connection successful -- 17:20:13.379 INFO [15805]: _SERVER found -- 17:20:13.379 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 17:20:13.379 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:13.379 INFO [15805]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _ga=GA1.2.1639397498.1581373171; _gid=GA1.2.1636001442.1581373171; _gat_gtag_UA_54829827_2=1 -- 17:20:13.379 INFO [15805]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:20:13.379 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:20:13.390 INFO [15805]: COREGRADE is stopping... -- 17:20:13.390 DEBUG [15805]: Closing database connection -- 17:20:13.390 SQL [15805]: pgsql_close() -- 17:20:17.851 INFO [15805]: COREGRADE is starting... -- 17:20:17.852 INFO [15805]: Version from config: 1.0 -- 17:20:17.852 DEBUG [15805]: Connecting to database... -- 17:20:17.852 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:17.852 SQL [15805]: pgsql_db_connect() -- 17:20:17.856 DEBUG [15805]: Database connection successful -- 17:20:17.856 INFO [15805]: _SERVER found -- 17:20:17.856 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 17:20:17.856 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:17.856 INFO [15805]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _ga=GA1.2.1639397498.1581373171; _gid=GA1.2.1636001442.1581373171; _gat_gtag_UA_54829827_2=1 -- 17:20:17.856 INFO [15805]: QUERY_STRING = -- 17:20:17.856 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:20:17.887 INFO [15805]: COREGRADE is stopping... -- 17:20:17.887 DEBUG [15805]: Closing database connection -- 17:20:17.887 SQL [15805]: pgsql_close() -- 17:20:18.205 INFO [15987]: COREGRADE is starting... -- 17:20:18.206 INFO [15987]: Version from config: 1.0 -- 17:20:18.206 DEBUG [15987]: Connecting to database... -- 17:20:18.206 DEBUG [15987]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:18.206 SQL [15987]: pgsql_db_connect() -- 17:20:18.210 DEBUG [15987]: Database connection successful -- 17:20:18.210 INFO [15987]: _SERVER found -- 17:20:18.210 INFO [15987]: REMOTE_ADDR = 192.168.1.13 -- 17:20:18.210 INFO [15987]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:18.210 INFO [15987]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _ga=GA1.2.1639397498.1581373171; _gid=GA1.2.1636001442.1581373171; _gat_gtag_UA_54829827_2=1 -- 17:20:18.210 INFO [15987]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 17:20:18.210 INFO [15987]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:20:18.224 INFO [15987]: COREGRADE is stopping... -- 17:20:18.224 DEBUG [15987]: Closing database connection -- 17:20:18.224 SQL [15987]: pgsql_close() -- 17:20:18.258 INFO [15987]: COREGRADE is starting... -- 17:20:18.258 INFO [15987]: Version from config: 1.0 -- 17:20:18.258 DEBUG [15987]: Connecting to database... -- 17:20:18.258 DEBUG [15987]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:18.258 SQL [15987]: pgsql_db_connect() -- 17:20:18.262 DEBUG [15987]: Database connection successful -- 17:20:18.262 INFO [15987]: _SERVER found -- 17:20:18.262 INFO [15987]: REMOTE_ADDR = 192.168.1.13 -- 17:20:18.262 INFO [15987]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:18.262 INFO [15987]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _ga=GA1.2.1639397498.1581373171; _gid=GA1.2.1636001442.1581373171; _gat_gtag_UA_54829827_2=1 -- 17:20:18.262 INFO [15987]: QUERY_STRING = /assets/img/footer_1.jpg -- 17:20:18.262 INFO [15987]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:20:18.274 INFO [15987]: COREGRADE is stopping... -- 17:20:18.274 DEBUG [15987]: Closing database connection -- 17:20:18.274 SQL [15987]: pgsql_close() -- 17:20:24.175 INFO [15840]: COREGRADE is starting... -- 17:20:24.176 INFO [15840]: Version from config: 1.0 -- 17:20:24.176 DEBUG [15840]: Connecting to database... -- 17:20:24.176 DEBUG [15840]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:24.176 SQL [15840]: pgsql_db_connect() -- 17:20:24.180 DEBUG [15840]: Database connection successful -- 17:20:24.180 INFO [15840]: _SERVER found -- 17:20:24.180 INFO [15840]: REMOTE_ADDR = 192.168.1.13 -- 17:20:24.180 INFO [15840]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:24.180 INFO [15840]: QUERY_STRING = /favicon.ico -- 17:20:24.180 INFO [15840]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:20:24.194 INFO [15840]: COREGRADE is stopping... -- 17:20:24.194 DEBUG [15840]: Closing database connection -- 17:20:24.194 SQL [15840]: pgsql_close() -- 17:20:52.195 INFO [15959]: COREGRADE is starting... -- 17:20:52.195 INFO [15959]: Version from config: 1.0 -- 17:20:52.195 DEBUG [15959]: Connecting to database... -- 17:20:52.195 DEBUG [15959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:52.195 SQL [15959]: pgsql_db_connect() -- 17:20:52.209 INFO [15837]: COREGRADE is starting... -- 17:20:52.209 INFO [15837]: Version from config: 1.0 -- 17:20:52.209 DEBUG [15837]: Connecting to database... -- 17:20:52.209 DEBUG [15837]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:52.209 SQL [15837]: pgsql_db_connect() -- 17:20:52.199 DEBUG [15959]: Database connection successful -- 17:20:52.199 INFO [15959]: _SERVER found -- 17:20:52.199 INFO [15959]: REMOTE_ADDR = 192.168.1.13 -- 17:20:52.199 INFO [15959]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:52.199 INFO [15959]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _ga=GA1.2.1639397498.1581373171; _gid=GA1.2.1636001442.1581373171 -- 17:20:52.199 INFO [15959]: QUERY_STRING = /welcome/viewLogin -- 17:20:52.199 INFO [15959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:20:52.232 INFO [15959]: COREGRADE is stopping... -- 17:20:52.232 DEBUG [15959]: Closing database connection -- 17:20:52.232 SQL [15959]: pgsql_close() -- 17:20:52.213 DEBUG [15837]: Database connection successful -- 17:20:52.213 INFO [15837]: _SERVER found -- 17:20:52.213 INFO [15837]: REMOTE_ADDR = 192.168.1.13 -- 17:20:52.213 INFO [15837]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:52.213 INFO [15837]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _ga=GA1.2.1639397498.1581373171; _gid=GA1.2.1636001442.1581373171 -- 17:20:52.213 INFO [15837]: QUERY_STRING = /auth -- 17:20:52.213 INFO [15837]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:20:52.249 INFO [15837]: COREGRADE is stopping... -- 17:20:52.249 DEBUG [15837]: Closing database connection -- 17:20:52.249 SQL [15837]: pgsql_close() -- 17:20:52.251 INFO [15959]: COREGRADE is starting... -- 17:20:52.251 INFO [15959]: Version from config: 1.0 -- 17:20:52.251 DEBUG [15959]: Connecting to database... -- 17:20:52.251 DEBUG [15959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:52.251 SQL [15959]: pgsql_db_connect() -- 17:20:52.255 DEBUG [15959]: Database connection successful -- 17:20:52.255 INFO [15959]: _SERVER found -- 17:20:52.255 INFO [15959]: REMOTE_ADDR = 192.168.1.13 -- 17:20:52.255 INFO [15959]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:52.255 INFO [15959]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _ga=GA1.2.1639397498.1581373171; _gid=GA1.2.1636001442.1581373171 -- 17:20:52.255 INFO [15959]: QUERY_STRING = /auth/index -- 17:20:52.255 INFO [15959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:20:52.286 INFO [15959]: COREGRADE is stopping... -- 17:20:52.286 DEBUG [15959]: Closing database connection -- 17:20:52.286 SQL [15959]: pgsql_close() -- 17:20:52.521 INFO [15959]: COREGRADE is starting... -- 17:20:52.521 INFO [15959]: Version from config: 1.0 -- 17:20:52.521 DEBUG [15959]: Connecting to database... -- 17:20:52.521 DEBUG [15959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:52.521 SQL [15959]: pgsql_db_connect() -- 17:20:52.525 DEBUG [15959]: Database connection successful -- 17:20:52.525 INFO [15959]: _SERVER found -- 17:20:52.525 INFO [15959]: REMOTE_ADDR = 192.168.1.13 -- 17:20:52.525 INFO [15959]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:52.525 INFO [15959]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _ga=GA1.2.1639397498.1581373171; _gid=GA1.2.1636001442.1581373171 -- 17:20:52.525 INFO [15959]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:20:52.525 INFO [15959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:20:52.536 INFO [15959]: COREGRADE is stopping... -- 17:20:52.536 DEBUG [15959]: Closing database connection -- 17:20:52.536 SQL [15959]: pgsql_close() -- 17:20:52.580 INFO [15959]: COREGRADE is starting... -- 17:20:52.580 INFO [15959]: Version from config: 1.0 -- 17:20:52.580 DEBUG [15959]: Connecting to database... -- 17:20:52.580 DEBUG [15959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:52.580 SQL [15959]: pgsql_db_connect() -- 17:20:52.584 DEBUG [15959]: Database connection successful -- 17:20:52.584 INFO [15959]: _SERVER found -- 17:20:52.584 INFO [15959]: REMOTE_ADDR = 192.168.1.13 -- 17:20:52.584 INFO [15959]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:52.584 INFO [15959]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _ga=GA1.2.1639397498.1581373171; _gid=GA1.2.1636001442.1581373171 -- 17:20:52.584 INFO [15959]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:20:52.584 INFO [15959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:20:52.595 INFO [15959]: COREGRADE is stopping... -- 17:20:52.595 DEBUG [15959]: Closing database connection -- 17:20:52.595 SQL [15959]: pgsql_close() -- 17:21:10.532 INFO [15804]: COREGRADE is starting... -- 17:21:10.532 INFO [15804]: Version from config: 1.0 -- 17:21:10.532 DEBUG [15804]: Connecting to database... -- 17:21:10.532 DEBUG [15804]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:21:10.532 SQL [15804]: pgsql_db_connect() -- 17:21:10.572 INFO [15804]: COREGRADE is starting... -- 17:21:10.572 INFO [15804]: Version from config: 1.0 -- 17:21:10.572 DEBUG [15804]: Connecting to database... -- 17:21:10.572 DEBUG [15804]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:21:10.572 SQL [15804]: pgsql_db_connect() -- 17:21:10.576 DEBUG [15804]: Database connection successful -- 17:21:10.576 INFO [15804]: _SERVER found -- 17:21:10.576 INFO [15804]: REMOTE_ADDR = 192.168.1.13 -- 17:21:10.576 INFO [15804]: SERVER_NAME = oameye.works.coregrade.com -- 17:21:10.576 INFO [15804]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _ga=GA1.2.1639397498.1581373171; _gid=GA1.2.1636001442.1581373171 -- 17:21:10.576 INFO [15804]: QUERY_STRING = -- 17:21:10.576 INFO [15804]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:21:10.576 INFO [15804]: SystemStatus()09-09-********~************ -- 17:21:10.576 INFO [15804]: long coregrade_api_main(CVars in, CVars &out) -- 17:21:10.576 INFO [15804]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 17:21:10.576 INFO [15804]: account calls -- 17:21:10.576 INFO [15804]: account_calls() -- 17:21:10.576 INFO [15804]: LoginCoreGradeAccount() -- 17:21:10.576 FLOG_MAX [15804]: REQ_STRING(username) -- 17:21:10.576 FLOG_MAX [15804]: REQ_STRING(password) -- 17:21:10.576 FLOG_MAX [15804]: REQ_STRING(sessionid) -- 17:21:10.576 FLOG_MAX [15804]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:21:10.576 SQL [15804]: pgsql_query() -- 17:21:10.576 SQL [15804]: About to run query: -- 17:21:10.576 SQL [15804]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw') AND password= md5('tokslaw001!') -- 17:21:10.579 SQL [15804]: Found rows: 0 -- 17:21:10.579 SQL [15804]: Found rows: 0 -- 17:21:10.579 INFO [15804]: long SessionCheck(long uid, const char *sessionid, int create ) -- 17:21:10.579 INFO [15804]: /LoginCoreGradeAccount() -- 17:21:10.579 INFO [15804]: RET: member_id= -- 17:21:10.580 INFO [15804]: RET: result=YES I GET TO BACK END -- 17:21:10.580 INFO [15804]: RET: sessionid= -- 17:21:10.580 INFO [15804]: RET: status=Session check failed -- 17:21:10.581 INFO [15804]: COREGRADE is stopping... -- 17:21:10.581 DEBUG [15804]: Closing database connection -- 17:21:10.581 SQL [15804]: pgsql_close() -- 17:21:10.537 DEBUG [15804]: Database connection successful -- 17:21:10.537 INFO [15804]: _SERVER found -- 17:21:10.537 INFO [15804]: REMOTE_ADDR = 192.168.1.13 -- 17:21:10.537 INFO [15804]: SERVER_NAME = oameye.works.coregrade.com -- 17:21:10.537 INFO [15804]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _ga=GA1.2.1639397498.1581373171; _gid=GA1.2.1636001442.1581373171 -- 17:21:10.537 INFO [15804]: QUERY_STRING = /auth -- 17:21:10.537 INFO [15804]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:21:10.581 INFO [15804]: COREGRADE is stopping... -- 17:21:10.581 DEBUG [15804]: Closing database connection -- 17:21:10.581 SQL [15804]: pgsql_close() -- 17:21:10.821 INFO [15804]: COREGRADE is starting... -- 17:21:10.822 INFO [15804]: Version from config: 1.0 -- 17:21:10.822 DEBUG [15804]: Connecting to database... -- 17:21:10.822 DEBUG [15804]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:21:10.822 SQL [15804]: pgsql_db_connect() -- 17:21:10.825 DEBUG [15804]: Database connection successful -- 17:21:10.825 INFO [15804]: _SERVER found -- 17:21:10.825 INFO [15804]: REMOTE_ADDR = 192.168.1.13 -- 17:21:10.825 INFO [15804]: SERVER_NAME = oameye.works.coregrade.com -- 17:21:10.825 INFO [15804]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _ga=GA1.2.1639397498.1581373171; _gid=GA1.2.1636001442.1581373171 -- 17:21:10.825 INFO [15804]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:21:10.825 INFO [15804]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:21:10.837 INFO [15804]: COREGRADE is stopping... -- 17:21:10.837 DEBUG [15804]: Closing database connection -- 17:21:10.837 SQL [15804]: pgsql_close() -- 17:21:10.872 INFO [15804]: COREGRADE is starting... -- 17:21:10.872 INFO [15804]: Version from config: 1.0 -- 17:21:10.872 DEBUG [15804]: Connecting to database... -- 17:21:10.872 DEBUG [15804]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:21:10.872 SQL [15804]: pgsql_db_connect() -- 17:21:10.876 DEBUG [15804]: Database connection successful -- 17:21:10.876 INFO [15804]: _SERVER found -- 17:21:10.876 INFO [15804]: REMOTE_ADDR = 192.168.1.13 -- 17:21:10.876 INFO [15804]: SERVER_NAME = oameye.works.coregrade.com -- 17:21:10.876 INFO [15804]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _ga=GA1.2.1639397498.1581373171; _gid=GA1.2.1636001442.1581373171 -- 17:21:10.876 INFO [15804]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:21:10.876 INFO [15804]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:21:10.887 INFO [15804]: COREGRADE is stopping... -- 17:21:10.887 DEBUG [15804]: Closing database connection -- 17:21:10.887 SQL [15804]: pgsql_close() -- 17:21:36.082 INFO [15803]: COREGRADE is starting... -- 17:21:36.082 INFO [15803]: Version from config: 1.0 -- 17:21:36.082 DEBUG [15803]: Connecting to database... -- 17:21:36.082 DEBUG [15803]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:21:36.082 SQL [15803]: pgsql_db_connect() -- 17:21:36.118 INFO [15803]: COREGRADE is starting... -- 17:21:36.118 INFO [15803]: Version from config: 1.0 -- 17:21:36.118 DEBUG [15803]: Connecting to database... -- 17:21:36.119 DEBUG [15803]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:21:36.119 SQL [15803]: pgsql_db_connect() -- 17:21:36.123 DEBUG [15803]: Database connection successful -- 17:21:36.123 INFO [15803]: _SERVER found -- 17:21:36.123 INFO [15803]: REMOTE_ADDR = 192.168.1.13 -- 17:21:36.123 INFO [15803]: SERVER_NAME = oameye.works.coregrade.com -- 17:21:36.123 INFO [15803]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _ga=GA1.2.1639397498.1581373171; _gid=GA1.2.1636001442.1581373171 -- 17:21:36.123 INFO [15803]: QUERY_STRING = -- 17:21:36.123 INFO [15803]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:21:36.123 INFO [15803]: SystemStatus()09-09-********~************ -- 17:21:36.123 INFO [15803]: long coregrade_api_main(CVars in, CVars &out) -- 17:21:36.123 INFO [15803]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 17:21:36.123 INFO [15803]: account calls -- 17:21:36.123 INFO [15803]: account_calls() -- 17:21:36.123 INFO [15803]: LoginCoreGradeAccount() -- 17:21:36.123 FLOG_MAX [15803]: REQ_STRING(username) -- 17:21:36.123 FLOG_MAX [15803]: REQ_STRING(password) -- 17:21:36.123 FLOG_MAX [15803]: REQ_STRING(sessionid) -- 17:21:36.123 FLOG_MAX [15803]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:21:36.123 SQL [15803]: pgsql_query() -- 17:21:36.123 SQL [15803]: About to run query: -- 17:21:36.123 SQL [15803]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw') AND password= md5('tokslaw001') -- 17:21:36.126 SQL [15803]: Found rows: 0 -- 17:21:36.126 SQL [15803]: Found rows: 0 -- 17:21:36.126 INFO [15803]: long SessionCheck(long uid, const char *sessionid, int create ) -- 17:21:36.126 INFO [15803]: /LoginCoreGradeAccount() -- 17:21:36.126 INFO [15803]: RET: member_id= -- 17:21:36.126 INFO [15803]: RET: result=YES I GET TO BACK END -- 17:21:36.126 INFO [15803]: RET: sessionid= -- 17:21:36.126 INFO [15803]: RET: status=Session check failed -- 17:21:36.127 INFO [15803]: COREGRADE is stopping... -- 17:21:36.127 DEBUG [15803]: Closing database connection -- 17:21:36.127 SQL [15803]: pgsql_close() -- 17:21:36.087 DEBUG [15803]: Database connection successful -- 17:21:36.087 INFO [15803]: _SERVER found -- 17:21:36.087 INFO [15803]: REMOTE_ADDR = 192.168.1.13 -- 17:21:36.087 INFO [15803]: SERVER_NAME = oameye.works.coregrade.com -- 17:21:36.087 INFO [15803]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _ga=GA1.2.1639397498.1581373171; _gid=GA1.2.1636001442.1581373171 -- 17:21:36.087 INFO [15803]: QUERY_STRING = /auth -- 17:21:36.087 INFO [15803]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:21:36.128 INFO [15803]: COREGRADE is stopping... -- 17:21:36.128 DEBUG [15803]: Closing database connection -- 17:21:36.128 SQL [15803]: pgsql_close() -- 17:21:36.326 INFO [15803]: COREGRADE is starting... -- 17:21:36.326 INFO [15803]: Version from config: 1.0 -- 17:21:36.326 DEBUG [15803]: Connecting to database... -- 17:21:36.326 DEBUG [15803]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:21:36.326 SQL [15803]: pgsql_db_connect() -- 17:21:36.330 DEBUG [15803]: Database connection successful -- 17:21:36.330 INFO [15803]: _SERVER found -- 17:21:36.330 INFO [15803]: REMOTE_ADDR = 192.168.1.13 -- 17:21:36.330 INFO [15803]: SERVER_NAME = oameye.works.coregrade.com -- 17:21:36.330 INFO [15803]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:21:36.330 INFO [15803]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:21:36.330 INFO [15803]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:21:36.341 INFO [15803]: COREGRADE is stopping... -- 17:21:36.341 DEBUG [15803]: Closing database connection -- 17:21:36.341 SQL [15803]: pgsql_close() -- 17:21:36.381 INFO [15803]: COREGRADE is starting... -- 17:21:36.382 INFO [15803]: Version from config: 1.0 -- 17:21:36.382 DEBUG [15803]: Connecting to database... -- 17:21:36.382 DEBUG [15803]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:21:36.382 SQL [15803]: pgsql_db_connect() -- 17:21:36.385 DEBUG [15803]: Database connection successful -- 17:21:36.385 INFO [15803]: _SERVER found -- 17:21:36.385 INFO [15803]: REMOTE_ADDR = 192.168.1.13 -- 17:21:36.385 INFO [15803]: SERVER_NAME = oameye.works.coregrade.com -- 17:21:36.385 INFO [15803]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:21:36.385 INFO [15803]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:21:36.385 INFO [15803]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:21:36.396 INFO [15803]: COREGRADE is stopping... -- 17:21:36.396 DEBUG [15803]: Closing database connection -- 17:21:36.397 SQL [15803]: pgsql_close() -- 17:21:59.071 INFO [15805]: COREGRADE is starting... -- 17:21:59.072 INFO [15805]: Version from config: 1.0 -- 17:21:59.072 DEBUG [15805]: Connecting to database... -- 17:21:59.072 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:21:59.072 SQL [15805]: pgsql_db_connect() -- 17:21:59.076 DEBUG [15805]: Database connection successful -- 17:21:59.076 INFO [15805]: _SERVER found -- 17:21:59.076 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 17:21:59.076 INFO [15805]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:21:59.076 INFO [15805]: HTTP_COOKIE = _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:21:59.076 INFO [15805]: QUERY_STRING = -- 17:21:59.076 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:21:59.109 INFO [15805]: COREGRADE is stopping... -- 17:21:59.109 DEBUG [15805]: Closing database connection -- 17:21:59.109 SQL [15805]: pgsql_close() -- 17:21:59.698 INFO [15839]: COREGRADE is starting... -- 17:21:59.698 INFO [15839]: Version from config: 1.0 -- 17:21:59.698 DEBUG [15839]: Connecting to database... -- 17:21:59.698 DEBUG [15839]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:21:59.698 SQL [15839]: pgsql_db_connect() -- 17:21:59.698 INFO [15986]: COREGRADE is starting... -- 17:21:59.699 INFO [15986]: Version from config: 1.0 -- 17:21:59.699 DEBUG [15986]: Connecting to database... -- 17:21:59.699 DEBUG [15986]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:21:59.699 SQL [15986]: pgsql_db_connect() -- 17:21:59.702 DEBUG [15839]: Database connection successful -- 17:21:59.702 INFO [15839]: _SERVER found -- 17:21:59.702 INFO [15839]: REMOTE_ADDR = 192.168.1.13 -- 17:21:59.702 INFO [15839]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:21:59.702 INFO [15839]: HTTP_COOKIE = _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171; ci_session=kaioa8pr72rmkudsesn02fe3d4jbgu7c -- 17:21:59.702 INFO [15839]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 17:21:59.702 INFO [15839]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:21:59.714 INFO [15839]: COREGRADE is stopping... -- 17:21:59.714 DEBUG [15839]: Closing database connection -- 17:21:59.714 SQL [15839]: pgsql_close() -- 17:21:59.703 DEBUG [15986]: Database connection successful -- 17:21:59.703 INFO [15986]: _SERVER found -- 17:21:59.703 INFO [15986]: REMOTE_ADDR = 192.168.1.13 -- 17:21:59.703 INFO [15986]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:21:59.703 INFO [15986]: HTTP_COOKIE = _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171; ci_session=kaioa8pr72rmkudsesn02fe3d4jbgu7c -- 17:21:59.703 INFO [15986]: QUERY_STRING = /assets/img/footer_1.jpg -- 17:21:59.703 INFO [15986]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:21:59.717 INFO [15986]: COREGRADE is stopping... -- 17:21:59.717 DEBUG [15986]: Closing database connection -- 17:21:59.717 SQL [15986]: pgsql_close() -- 17:22:12.648 INFO [15959]: COREGRADE is starting... -- 17:22:12.648 INFO [15959]: Version from config: 1.0 -- 17:22:12.648 DEBUG [15959]: Connecting to database... -- 17:22:12.648 DEBUG [15959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:22:12.648 SQL [15959]: pgsql_db_connect() -- 17:22:12.664 INFO [15804]: COREGRADE is starting... -- 17:22:12.664 INFO [15804]: Version from config: 1.0 -- 17:22:12.664 DEBUG [15804]: Connecting to database... -- 17:22:12.664 DEBUG [15804]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:22:12.664 SQL [15804]: pgsql_db_connect() -- 17:22:12.652 DEBUG [15959]: Database connection successful -- 17:22:12.652 INFO [15959]: _SERVER found -- 17:22:12.652 INFO [15959]: REMOTE_ADDR = 192.168.1.13 -- 17:22:12.652 INFO [15959]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:22:12.652 INFO [15959]: HTTP_COOKIE = _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171; ci_session=kaioa8pr72rmkudsesn02fe3d4jbgu7c -- 17:22:12.652 INFO [15959]: QUERY_STRING = /auth -- 17:22:12.652 INFO [15959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:22:12.684 INFO [15959]: COREGRADE is stopping... -- 17:22:12.684 DEBUG [15959]: Closing database connection -- 17:22:12.684 SQL [15959]: pgsql_close() -- 17:22:12.668 DEBUG [15804]: Database connection successful -- 17:22:12.668 INFO [15804]: _SERVER found -- 17:22:12.668 INFO [15804]: REMOTE_ADDR = 192.168.1.13 -- 17:22:12.668 INFO [15804]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:22:12.668 INFO [15804]: HTTP_COOKIE = _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171; ci_session=kaioa8pr72rmkudsesn02fe3d4jbgu7c -- 17:22:12.668 INFO [15804]: QUERY_STRING = /welcome/viewLogin -- 17:22:12.668 INFO [15804]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:22:12.699 INFO [15804]: COREGRADE is stopping... -- 17:22:12.699 DEBUG [15804]: Closing database connection -- 17:22:12.699 SQL [15804]: pgsql_close() -- 17:22:12.952 INFO [15803]: COREGRADE is starting... -- 17:22:12.952 INFO [15803]: Version from config: 1.0 -- 17:22:12.952 DEBUG [15803]: Connecting to database... -- 17:22:12.952 DEBUG [15803]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:22:12.952 SQL [15803]: pgsql_db_connect() -- 17:22:12.956 DEBUG [15803]: Database connection successful -- 17:22:12.956 INFO [15803]: _SERVER found -- 17:22:12.956 INFO [15803]: REMOTE_ADDR = 192.168.1.13 -- 17:22:12.956 INFO [15803]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:22:12.956 INFO [15803]: HTTP_COOKIE = _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171; ci_session=kaioa8pr72rmkudsesn02fe3d4jbgu7c -- 17:22:12.956 INFO [15803]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:22:12.956 INFO [15803]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:22:12.968 INFO [15803]: COREGRADE is stopping... -- 17:22:12.968 DEBUG [15803]: Closing database connection -- 17:22:12.968 SQL [15803]: pgsql_close() -- 17:22:13.289 INFO [15987]: COREGRADE is starting... -- 17:22:13.289 INFO [15987]: Version from config: 1.0 -- 17:22:13.289 DEBUG [15987]: Connecting to database... -- 17:22:13.289 DEBUG [15987]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:22:13.289 SQL [15987]: pgsql_db_connect() -- 17:22:13.293 DEBUG [15987]: Database connection successful -- 17:22:13.293 INFO [15987]: _SERVER found -- 17:22:13.293 INFO [15987]: REMOTE_ADDR = 192.168.1.13 -- 17:22:13.293 INFO [15987]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:22:13.293 INFO [15987]: HTTP_COOKIE = _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171; ci_session=kaioa8pr72rmkudsesn02fe3d4jbgu7c -- 17:22:13.293 INFO [15987]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:22:13.293 INFO [15987]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:22:13.305 INFO [15987]: COREGRADE is stopping... -- 17:22:13.305 DEBUG [15987]: Closing database connection -- 17:22:13.305 SQL [15987]: pgsql_close() -- 17:22:50.698 INFO [15984]: COREGRADE is starting... -- 17:22:50.698 INFO [15984]: Version from config: 1.0 -- 17:22:50.698 DEBUG [15984]: Connecting to database... -- 17:22:50.698 DEBUG [15984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:22:50.698 SQL [15984]: pgsql_db_connect() -- 17:22:50.702 DEBUG [15984]: Database connection successful -- 17:22:50.702 INFO [15984]: _SERVER found -- 17:22:50.702 INFO [15984]: REMOTE_ADDR = 192.168.1.13 -- 17:22:50.702 INFO [15984]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:22:50.702 INFO [15984]: HTTP_COOKIE = _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171; ci_session=kaioa8pr72rmkudsesn02fe3d4jbgu7c -- 17:22:50.702 INFO [15984]: QUERY_STRING = /auth -- 17:22:50.702 INFO [15984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:22:50.777 INFO [15984]: COREGRADE is starting... -- 17:22:50.777 INFO [15984]: Version from config: 1.0 -- 17:22:50.777 DEBUG [15984]: Connecting to database... -- 17:22:50.777 DEBUG [15984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:22:50.777 SQL [15984]: pgsql_db_connect() -- 17:22:50.781 DEBUG [15984]: Database connection successful -- 17:22:50.781 INFO [15984]: _SERVER found -- 17:22:50.781 INFO [15984]: REMOTE_ADDR = 192.168.1.13 -- 17:22:50.781 INFO [15984]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:22:50.781 INFO [15984]: HTTP_COOKIE = _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171; ci_session=kaioa8pr72rmkudsesn02fe3d4jbgu7c -- 17:22:50.781 INFO [15984]: QUERY_STRING = /member/index -- 17:22:50.781 INFO [15984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:22:50.821 INFO [15984]: COREGRADE is stopping... -- 17:22:50.821 DEBUG [15984]: Closing database connection -- 17:22:50.821 SQL [15984]: pgsql_close() -- 17:22:51.029 INFO [15984]: COREGRADE is starting... -- 17:22:51.029 INFO [15984]: Version from config: 1.0 -- 17:22:51.029 DEBUG [15984]: Connecting to database... -- 17:22:51.029 DEBUG [15984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:22:51.029 SQL [15984]: pgsql_db_connect() -- 17:22:51.033 DEBUG [15984]: Database connection successful -- 17:22:51.033 INFO [15984]: _SERVER found -- 17:22:51.033 INFO [15984]: REMOTE_ADDR = 192.168.1.13 -- 17:22:51.033 INFO [15984]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:22:51.033 INFO [15984]: HTTP_COOKIE = _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171; ci_session=kaioa8pr72rmkudsesn02fe3d4jbgu7c -- 17:22:51.033 INFO [15984]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:22:51.033 INFO [15984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:22:51.045 INFO [15984]: COREGRADE is stopping... -- 17:22:51.045 DEBUG [15984]: Closing database connection -- 17:22:51.045 SQL [15984]: pgsql_close() -- 17:22:51.522 INFO [15839]: COREGRADE is starting... -- 17:22:51.522 INFO [15839]: Version from config: 1.0 -- 17:22:51.522 DEBUG [15839]: Connecting to database... -- 17:22:51.522 DEBUG [15839]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:22:51.522 SQL [15839]: pgsql_db_connect() -- 17:22:51.526 DEBUG [15839]: Database connection successful -- 17:22:51.526 INFO [15839]: _SERVER found -- 17:22:51.526 INFO [15839]: REMOTE_ADDR = 192.168.1.13 -- 17:22:51.526 INFO [15839]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:22:51.526 INFO [15839]: HTTP_COOKIE = _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171; ci_session=kaioa8pr72rmkudsesn02fe3d4jbgu7c -- 17:22:51.526 INFO [15839]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:22:51.526 INFO [15839]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:22:51.537 INFO [15839]: COREGRADE is stopping... -- 17:22:51.537 DEBUG [15839]: Closing database connection -- 17:22:51.537 SQL [15839]: pgsql_close() -- 17:22:53.973 INFO [15839]: COREGRADE is starting... -- 17:22:53.973 INFO [15839]: Version from config: 1.0 -- 17:22:53.973 DEBUG [15839]: Connecting to database... -- 17:22:53.973 DEBUG [15839]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:22:53.973 SQL [15839]: pgsql_db_connect() -- 17:22:53.977 DEBUG [15839]: Database connection successful -- 17:22:53.977 INFO [15839]: _SERVER found -- 17:22:53.977 INFO [15839]: REMOTE_ADDR = 192.168.1.13 -- 17:22:53.977 INFO [15839]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:22:53.977 INFO [15839]: HTTP_COOKIE = _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171; ci_session=kaioa8pr72rmkudsesn02fe3d4jbgu7c -- 17:22:53.977 INFO [15839]: QUERY_STRING = /member/page -- 17:22:53.977 INFO [15839]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:22:54.019 INFO [15839]: COREGRADE is stopping... -- 17:22:54.019 DEBUG [15839]: Closing database connection -- 17:22:54.019 SQL [15839]: pgsql_close() -- 17:22:54.305 INFO [15839]: COREGRADE is starting... -- 17:22:54.305 INFO [15839]: Version from config: 1.0 -- 17:22:54.305 DEBUG [15839]: Connecting to database... -- 17:22:54.305 DEBUG [15839]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:22:54.305 SQL [15839]: pgsql_db_connect() -- 17:22:54.309 DEBUG [15839]: Database connection successful -- 17:22:54.309 INFO [15839]: _SERVER found -- 17:22:54.309 INFO [15839]: REMOTE_ADDR = 192.168.1.13 -- 17:22:54.309 INFO [15839]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:22:54.309 INFO [15839]: HTTP_COOKIE = _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171; ci_session=kaioa8pr72rmkudsesn02fe3d4jbgu7c -- 17:22:54.309 INFO [15839]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:22:54.309 INFO [15839]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:22:54.320 INFO [15839]: COREGRADE is stopping... -- 17:22:54.320 DEBUG [15839]: Closing database connection -- 17:22:54.320 SQL [15839]: pgsql_close() -- 17:22:54.674 INFO [15839]: COREGRADE is starting... -- 17:22:54.675 INFO [15839]: Version from config: 1.0 -- 17:22:54.675 DEBUG [15839]: Connecting to database... -- 17:22:54.675 DEBUG [15839]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:22:54.675 SQL [15839]: pgsql_db_connect() -- 17:22:54.679 DEBUG [15839]: Database connection successful -- 17:22:54.679 INFO [15839]: _SERVER found -- 17:22:54.679 INFO [15839]: REMOTE_ADDR = 192.168.1.13 -- 17:22:54.679 INFO [15839]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:22:54.679 INFO [15839]: HTTP_COOKIE = _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171; ci_session=kaioa8pr72rmkudsesn02fe3d4jbgu7c -- 17:22:54.679 INFO [15839]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:22:54.679 INFO [15839]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:22:54.690 INFO [15839]: COREGRADE is stopping... -- 17:22:54.690 DEBUG [15839]: Closing database connection -- 17:22:54.690 SQL [15839]: pgsql_close() -- 17:22:57.284 INFO [15839]: COREGRADE is starting... -- 17:22:57.284 INFO [15839]: Version from config: 1.0 -- 17:22:57.284 DEBUG [15839]: Connecting to database... -- 17:22:57.284 DEBUG [15839]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:22:57.284 SQL [15839]: pgsql_db_connect() -- 17:22:57.288 DEBUG [15839]: Database connection successful -- 17:22:57.288 INFO [15839]: _SERVER found -- 17:22:57.288 INFO [15839]: REMOTE_ADDR = 192.168.1.13 -- 17:22:57.288 INFO [15839]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:22:57.288 INFO [15839]: HTTP_COOKIE = _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171; ci_session=kaioa8pr72rmkudsesn02fe3d4jbgu7c -- 17:22:57.288 INFO [15839]: QUERY_STRING = /member/viewCardAddAction -- 17:22:57.288 INFO [15839]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:22:57.319 INFO [15839]: COREGRADE is stopping... -- 17:22:57.319 DEBUG [15839]: Closing database connection -- 17:22:57.319 SQL [15839]: pgsql_close() -- 17:22:57.324 INFO [15986]: COREGRADE is starting... -- 17:22:57.324 INFO [15986]: Version from config: 1.0 -- 17:22:57.324 DEBUG [15986]: Connecting to database... -- 17:22:57.324 DEBUG [15986]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:22:57.324 SQL [15986]: pgsql_db_connect() -- 17:22:57.328 DEBUG [15986]: Database connection successful -- 17:22:57.328 INFO [15986]: _SERVER found -- 17:22:57.328 INFO [15986]: REMOTE_ADDR = 192.168.1.13 -- 17:22:57.328 INFO [15986]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:22:57.328 INFO [15986]: QUERY_STRING = /favicon.ico -- 17:22:57.328 INFO [15986]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:22:57.340 INFO [15986]: COREGRADE is stopping... -- 17:22:57.340 DEBUG [15986]: Closing database connection -- 17:22:57.340 SQL [15986]: pgsql_close() -- 17:23:15.864 INFO [15805]: COREGRADE is starting... -- 17:23:15.865 INFO [15805]: Version from config: 1.0 -- 17:23:15.865 DEBUG [15805]: Connecting to database... -- 17:23:15.865 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:23:15.865 SQL [15805]: pgsql_db_connect() -- 17:23:15.869 DEBUG [15805]: Database connection successful -- 17:23:15.869 INFO [15805]: _SERVER found -- 17:23:15.869 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 17:23:15.869 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 17:23:15.869 INFO [15805]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:23:15.869 INFO [15805]: QUERY_STRING = /member/page -- 17:23:15.869 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:23:15.902 INFO [15805]: COREGRADE is stopping... -- 17:23:15.902 DEBUG [15805]: Closing database connection -- 17:23:15.902 SQL [15805]: pgsql_close() -- 17:23:15.939 INFO [15805]: COREGRADE is starting... -- 17:23:15.939 INFO [15805]: Version from config: 1.0 -- 17:23:15.939 DEBUG [15805]: Connecting to database... -- 17:23:15.939 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:23:15.939 SQL [15805]: pgsql_db_connect() -- 17:23:15.943 DEBUG [15805]: Database connection successful -- 17:23:15.943 INFO [15805]: _SERVER found -- 17:23:15.943 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 17:23:15.943 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 17:23:15.943 INFO [15805]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:23:15.943 INFO [15805]: QUERY_STRING = -- 17:23:15.943 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:23:15.975 INFO [15805]: COREGRADE is stopping... -- 17:23:15.975 DEBUG [15805]: Closing database connection -- 17:23:15.975 SQL [15805]: pgsql_close() -- 17:23:16.196 INFO [15805]: COREGRADE is starting... -- 17:23:16.196 INFO [15805]: Version from config: 1.0 -- 17:23:16.196 DEBUG [15805]: Connecting to database... -- 17:23:16.196 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:23:16.196 SQL [15805]: pgsql_db_connect() -- 17:23:16.201 DEBUG [15805]: Database connection successful -- 17:23:16.201 INFO [15805]: _SERVER found -- 17:23:16.201 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 17:23:16.201 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 17:23:16.201 INFO [15805]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:23:16.201 INFO [15805]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 17:23:16.201 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:23:16.212 INFO [15805]: COREGRADE is stopping... -- 17:23:16.212 DEBUG [15805]: Closing database connection -- 17:23:16.212 SQL [15805]: pgsql_close() -- 17:23:16.241 INFO [15805]: COREGRADE is starting... -- 17:23:16.242 INFO [15805]: Version from config: 1.0 -- 17:23:16.242 DEBUG [15805]: Connecting to database... -- 17:23:16.242 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:23:16.242 SQL [15805]: pgsql_db_connect() -- 17:23:16.246 DEBUG [15805]: Database connection successful -- 17:23:16.246 INFO [15805]: _SERVER found -- 17:23:16.246 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 17:23:16.246 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 17:23:16.246 INFO [15805]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:23:16.246 INFO [15805]: QUERY_STRING = /assets/img/footer_1.jpg -- 17:23:16.246 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:23:16.257 INFO [15805]: COREGRADE is stopping... -- 17:23:16.257 DEBUG [15805]: Closing database connection -- 17:23:16.257 SQL [15805]: pgsql_close() -- 17:23:19.493 INFO [15805]: COREGRADE is starting... -- 17:23:19.493 INFO [15805]: Version from config: 1.0 -- 17:23:19.493 DEBUG [15805]: Connecting to database... -- 17:23:19.493 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:23:19.493 SQL [15805]: pgsql_db_connect() -- 17:23:19.513 INFO [15959]: COREGRADE is starting... -- 17:23:19.513 INFO [15959]: Version from config: 1.0 -- 17:23:19.513 DEBUG [15959]: Connecting to database... -- 17:23:19.513 DEBUG [15959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:23:19.513 SQL [15959]: pgsql_db_connect() -- 17:23:19.498 DEBUG [15805]: Database connection successful -- 17:23:19.498 INFO [15805]: _SERVER found -- 17:23:19.498 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 17:23:19.498 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 17:23:19.498 INFO [15805]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:23:19.498 INFO [15805]: QUERY_STRING = /welcome/viewLogin -- 17:23:19.498 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:23:19.528 INFO [15805]: COREGRADE is stopping... -- 17:23:19.528 DEBUG [15805]: Closing database connection -- 17:23:19.528 SQL [15805]: pgsql_close() -- 17:23:19.542 INFO [15805]: COREGRADE is starting... -- 17:23:19.542 INFO [15805]: Version from config: 1.0 -- 17:23:19.542 DEBUG [15805]: Connecting to database... -- 17:23:19.542 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:23:19.542 SQL [15805]: pgsql_db_connect() -- 17:23:19.517 DEBUG [15959]: Database connection successful -- 17:23:19.517 INFO [15959]: _SERVER found -- 17:23:19.517 INFO [15959]: REMOTE_ADDR = 192.168.1.13 -- 17:23:19.517 INFO [15959]: SERVER_NAME = oameye.works.coregrade.com -- 17:23:19.517 INFO [15959]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:23:19.517 INFO [15959]: QUERY_STRING = /auth -- 17:23:19.517 INFO [15959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:23:19.550 INFO [15959]: COREGRADE is stopping... -- 17:23:19.550 DEBUG [15959]: Closing database connection -- 17:23:19.550 SQL [15959]: pgsql_close() -- 17:23:19.546 DEBUG [15805]: Database connection successful -- 17:23:19.546 INFO [15805]: _SERVER found -- 17:23:19.546 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 17:23:19.546 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 17:23:19.546 INFO [15805]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:23:19.546 INFO [15805]: QUERY_STRING = /auth/index -- 17:23:19.546 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:23:19.578 INFO [15805]: COREGRADE is stopping... -- 17:23:19.578 DEBUG [15805]: Closing database connection -- 17:23:19.578 SQL [15805]: pgsql_close() -- 17:23:19.728 INFO [15805]: COREGRADE is starting... -- 17:23:19.729 INFO [15805]: Version from config: 1.0 -- 17:23:19.729 DEBUG [15805]: Connecting to database... -- 17:23:19.729 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:23:19.729 SQL [15805]: pgsql_db_connect() -- 17:23:19.733 DEBUG [15805]: Database connection successful -- 17:23:19.733 INFO [15805]: _SERVER found -- 17:23:19.733 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 17:23:19.733 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 17:23:19.733 INFO [15805]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:23:19.733 INFO [15805]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:23:19.733 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:23:19.744 INFO [15805]: COREGRADE is stopping... -- 17:23:19.744 DEBUG [15805]: Closing database connection -- 17:23:19.744 SQL [15805]: pgsql_close() -- 17:23:19.866 INFO [15805]: COREGRADE is starting... -- 17:23:19.867 INFO [15805]: Version from config: 1.0 -- 17:23:19.867 DEBUG [15805]: Connecting to database... -- 17:23:19.867 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:23:19.867 SQL [15805]: pgsql_db_connect() -- 17:23:19.871 DEBUG [15805]: Database connection successful -- 17:23:19.871 INFO [15805]: _SERVER found -- 17:23:19.871 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 17:23:19.871 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 17:23:19.871 INFO [15805]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:23:19.871 INFO [15805]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:23:19.871 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:23:19.882 INFO [15805]: COREGRADE is stopping... -- 17:23:19.882 DEBUG [15805]: Closing database connection -- 17:23:19.882 SQL [15805]: pgsql_close() -- 17:23:33.459 INFO [16022]: COREGRADE is starting... -- 17:23:33.459 INFO [16022]: Version from config: 1.0 -- 17:23:33.459 DEBUG [16022]: Connecting to database... -- 17:23:33.459 DEBUG [16022]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:23:33.459 SQL [16022]: pgsql_db_connect() -- 17:23:33.502 INFO [16022]: COREGRADE is starting... -- 17:23:33.502 INFO [16022]: Version from config: 1.0 -- 17:23:33.502 DEBUG [16022]: Connecting to database... -- 17:23:33.502 DEBUG [16022]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:23:33.502 SQL [16022]: pgsql_db_connect() -- 17:23:33.506 DEBUG [16022]: Database connection successful -- 17:23:33.506 INFO [16022]: _SERVER found -- 17:23:33.506 INFO [16022]: REMOTE_ADDR = 192.168.1.13 -- 17:23:33.506 INFO [16022]: SERVER_NAME = oameye.works.coregrade.com -- 17:23:33.506 INFO [16022]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:23:33.506 INFO [16022]: QUERY_STRING = -- 17:23:33.506 INFO [16022]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:23:33.506 INFO [16022]: SystemStatus()09-09-********~************ -- 17:23:33.506 INFO [16022]: long coregrade_api_main(CVars in, CVars &out) -- 17:23:33.506 INFO [16022]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 17:23:33.506 INFO [16022]: account calls -- 17:23:33.506 INFO [16022]: account_calls() -- 17:23:33.506 INFO [16022]: LoginCoreGradeAccount() -- 17:23:33.506 FLOG_MAX [16022]: REQ_STRING(username) -- 17:23:33.506 FLOG_MAX [16022]: REQ_STRING(password) -- 17:23:33.506 FLOG_MAX [16022]: REQ_STRING(sessionid) -- 17:23:33.506 FLOG_MAX [16022]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:23:33.506 SQL [16022]: pgsql_query() -- 17:23:33.506 SQL [16022]: About to run query: -- 17:23:33.506 SQL [16022]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11') AND password= md5('may12002') -- 17:23:33.509 SQL [16022]: Found rows: 0 -- 17:23:33.509 SQL [16022]: Found rows: 0 -- 17:23:33.509 INFO [16022]: long SessionCheck(long uid, const char *sessionid, int create ) -- 17:23:33.509 INFO [16022]: /LoginCoreGradeAccount() -- 17:23:33.509 INFO [16022]: RET: member_id= -- 17:23:33.509 INFO [16022]: RET: result=YES I GET TO BACK END -- 17:23:33.509 INFO [16022]: RET: sessionid= -- 17:23:33.509 INFO [16022]: RET: status=Session check failed -- 17:23:33.511 INFO [16022]: COREGRADE is stopping... -- 17:23:33.511 DEBUG [16022]: Closing database connection -- 17:23:33.511 SQL [16022]: pgsql_close() -- 17:23:33.464 DEBUG [16022]: Database connection successful -- 17:23:33.464 INFO [16022]: _SERVER found -- 17:23:33.464 INFO [16022]: REMOTE_ADDR = 192.168.1.13 -- 17:23:33.464 INFO [16022]: SERVER_NAME = oameye.works.coregrade.com -- 17:23:33.464 INFO [16022]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:23:33.464 INFO [16022]: QUERY_STRING = /auth -- 17:23:33.464 INFO [16022]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:23:33.511 INFO [16022]: COREGRADE is stopping... -- 17:23:33.511 DEBUG [16022]: Closing database connection -- 17:23:33.511 SQL [16022]: pgsql_close() -- 17:23:33.782 INFO [16022]: COREGRADE is starting... -- 17:23:33.783 INFO [16022]: Version from config: 1.0 -- 17:23:33.783 DEBUG [16022]: Connecting to database... -- 17:23:33.783 DEBUG [16022]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:23:33.783 SQL [16022]: pgsql_db_connect() -- 17:23:33.787 DEBUG [16022]: Database connection successful -- 17:23:33.787 INFO [16022]: _SERVER found -- 17:23:33.787 INFO [16022]: REMOTE_ADDR = 192.168.1.13 -- 17:23:33.787 INFO [16022]: SERVER_NAME = oameye.works.coregrade.com -- 17:23:33.787 INFO [16022]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:23:33.787 INFO [16022]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:23:33.787 INFO [16022]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:23:33.798 INFO [16022]: COREGRADE is stopping... -- 17:23:33.798 DEBUG [16022]: Closing database connection -- 17:23:33.798 SQL [16022]: pgsql_close() -- 17:23:33.831 INFO [16022]: COREGRADE is starting... -- 17:23:33.831 INFO [16022]: Version from config: 1.0 -- 17:23:33.831 DEBUG [16022]: Connecting to database... -- 17:23:33.831 DEBUG [16022]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:23:33.831 SQL [16022]: pgsql_db_connect() -- 17:23:33.835 DEBUG [16022]: Database connection successful -- 17:23:33.835 INFO [16022]: _SERVER found -- 17:23:33.835 INFO [16022]: REMOTE_ADDR = 192.168.1.13 -- 17:23:33.835 INFO [16022]: SERVER_NAME = oameye.works.coregrade.com -- 17:23:33.835 INFO [16022]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:23:33.835 INFO [16022]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:23:33.835 INFO [16022]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:23:33.846 INFO [16022]: COREGRADE is stopping... -- 17:23:33.846 DEBUG [16022]: Closing database connection -- 17:23:33.846 SQL [16022]: pgsql_close() -- 17:23:49.524 INFO [15803]: COREGRADE is starting... -- 17:23:49.524 INFO [15803]: Version from config: 1.0 -- 17:23:49.524 DEBUG [15803]: Connecting to database... -- 17:23:49.524 DEBUG [15803]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:23:49.524 SQL [15803]: pgsql_db_connect() -- 17:23:49.561 INFO [15803]: COREGRADE is starting... -- 17:23:49.561 INFO [15803]: Version from config: 1.0 -- 17:23:49.561 DEBUG [15803]: Connecting to database... -- 17:23:49.561 DEBUG [15803]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:23:49.561 SQL [15803]: pgsql_db_connect() -- 17:23:49.565 DEBUG [15803]: Database connection successful -- 17:23:49.565 INFO [15803]: _SERVER found -- 17:23:49.565 INFO [15803]: REMOTE_ADDR = 192.168.1.13 -- 17:23:49.565 INFO [15803]: SERVER_NAME = oameye.works.coregrade.com -- 17:23:49.565 INFO [15803]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:23:49.565 INFO [15803]: QUERY_STRING = -- 17:23:49.565 INFO [15803]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:23:49.565 INFO [15803]: SystemStatus()09-09-********~************ -- 17:23:49.565 INFO [15803]: long coregrade_api_main(CVars in, CVars &out) -- 17:23:49.565 INFO [15803]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 17:23:49.565 INFO [15803]: account calls -- 17:23:49.565 INFO [15803]: account_calls() -- 17:23:49.565 INFO [15803]: LoginCoreGradeAccount() -- 17:23:49.565 FLOG_MAX [15803]: REQ_STRING(username) -- 17:23:49.565 FLOG_MAX [15803]: REQ_STRING(password) -- 17:23:49.565 FLOG_MAX [15803]: REQ_STRING(sessionid) -- 17:23:49.565 FLOG_MAX [15803]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:23:49.566 SQL [15803]: pgsql_query() -- 17:23:49.566 SQL [15803]: About to run query: -- 17:23:49.566 SQL [15803]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 17:23:49.569 SQL [15803]: Found rows: 1 -- 17:23:49.569 FLOG_MAX [15803]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 17:23:49.569 INFO [15803]: long SessionCheck(long uid, const char *sessionid, int create ) -- 17:23:49.569 SQL [15803]: pgsql_exec() -- 17:23:49.569 SQL [15803]: About to run query: -- 17:23:49.569 SQL [15803]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 17:23:49.570 SQL [15803]: PQcmdTuples: 0 -- 17:23:49.570 SQL [15803]: Affected rows: 0 -- 17:23:49.570 SQL [15803]: pgsql_exec() -- 17:23:49.570 SQL [15803]: About to run query: -- 17:23:49.570 SQL [15803]: DELETE FROM members_session WHERE member_id=5 -- 17:23:49.571 SQL [15803]: PQcmdTuples: 1 -- 17:23:49.571 SQL [15803]: Affected rows: 1 -- 17:23:49.571 SQL [15803]: pgsql_query() -- 17:23:49.571 SQL [15803]: About to run query: -- 17:23:49.571 SQL [15803]: SELECT * FROM members_session WHERE member_id=5 AND session<>'0F84DF1F6D57313A1F029AB3C130D318' -- 17:23:49.571 SQL [15803]: Found rows: 0 -- 17:23:49.571 SQL [15803]: Found rows: 0 -- 17:23:49.571 FLOG_MAX [15803]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:23:49.571 SQL [15803]: pgsql_query() -- 17:23:49.571 SQL [15803]: About to run query: -- 17:23:49.571 SQL [15803]: SELECT * FROM members_session WHERE member_id=5 AND session='0F84DF1F6D57313A1F029AB3C130D318' -- 17:23:49.572 SQL [15803]: Found rows: 0 -- 17:23:49.572 SQL [15803]: Found rows: 0 -- 17:23:49.572 FLOG_MAX [15803]: insert_db_record() -- 17:23:49.572 SQL [15803]: pgsql_exec() -- 17:23:49.572 SQL [15803]: About to run query: -- 17:23:49.572 SQL [15803]: INSERT INTO members_session (member_id,session) VALUES ('5','0F84DF1F6D57313A1F029AB3C130D318') -- 17:23:49.573 SQL [15803]: PQcmdTuples: 1 -- 17:23:49.573 SQL [15803]: Affected rows: 1 -- 17:23:49.573 FLOG_MAX [15803]: SELECT currval('members_session_id_seq') -- 17:23:49.573 SQL [15803]: pgsql_query() -- 17:23:49.573 SQL [15803]: About to run query: -- 17:23:49.573 SQL [15803]: SELECT currval('members_session_id_seq') -- 17:23:49.573 SQL [15803]: Found rows: 1 -- 17:23:49.574 INFO [15803]: CreateDefaultPage() -- 17:23:49.574 FLOG_MAX [15803]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:23:49.574 SQL [15803]: pgsql_query() -- 17:23:49.574 SQL [15803]: About to run query: -- 17:23:49.574 SQL [15803]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 17:23:49.574 SQL [15803]: Found rows: 1 -- 17:23:49.574 FLOG_MAX [15803]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 17:23:49.574 SQL [15803]: pgsql_query() -- 17:23:49.574 SQL [15803]: About to run query: -- 17:23:49.574 SQL [15803]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 17:23:49.574 SQL [15803]: Found rows: 1 -- 17:23:49.574 INFO [15803]: /CreateDefaultPage() -- 17:23:49.574 INFO [15803]: /LoginCoreGradeAccount() -- 17:23:49.574 INFO [15803]: RET: added=2020-02-05 06:47:23.982154 -- 17:23:49.574 INFO [15803]: RET: email=ameye+11@chiefsoft.com -- 17:23:49.574 INFO [15803]: RET: firstname=Olu -- 17:23:49.574 INFO [15803]: RET: id=5 -- 17:23:49.574 INFO [15803]: RET: last_login= -- 17:23:49.574 INFO [15803]: RET: lastname=Amey -- 17:23:49.574 INFO [15803]: RET: loc=192.168.1.13 -- 17:23:49.574 INFO [15803]: RET: member_id=5 -- 17:23:49.574 INFO [15803]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 17:23:49.574 INFO [15803]: RET: phone= -- 17:23:49.574 INFO [15803]: RET: pid= -- 17:23:49.574 INFO [15803]: RET: result=YES I GET TO BACK END -- 17:23:49.574 INFO [15803]: RET: sessionid=0F84DF1F6D57313A1F029AB3C130D318 -- 17:23:49.574 INFO [15803]: RET: status=1 -- 17:23:49.574 INFO [15803]: RET: stauts=OK -- 17:23:49.574 INFO [15803]: RET: username=ameye+11@chiefsoft.com -- 17:23:49.574 INFO [15803]: RET: verified= -- 17:23:49.576 INFO [15803]: COREGRADE is stopping... -- 17:23:49.576 DEBUG [15803]: Closing database connection -- 17:23:49.576 SQL [15803]: pgsql_close() -- 17:23:49.529 DEBUG [15803]: Database connection successful -- 17:23:49.529 INFO [15803]: _SERVER found -- 17:23:49.529 INFO [15803]: REMOTE_ADDR = 192.168.1.13 -- 17:23:49.529 INFO [15803]: SERVER_NAME = oameye.works.coregrade.com -- 17:23:49.529 INFO [15803]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:23:49.529 INFO [15803]: QUERY_STRING = /auth -- 17:23:49.529 INFO [15803]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:23:49.576 INFO [15803]: COREGRADE is stopping... -- 17:23:49.576 DEBUG [15803]: Closing database connection -- 17:23:49.576 SQL [15803]: pgsql_close() -- 17:23:49.654 INFO [15987]: COREGRADE is starting... -- 17:23:49.654 INFO [15987]: Version from config: 1.0 -- 17:23:49.654 DEBUG [15987]: Connecting to database... -- 17:23:49.654 DEBUG [15987]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:23:49.654 SQL [15987]: pgsql_db_connect() -- 17:23:49.658 DEBUG [15987]: Database connection successful -- 17:23:49.658 INFO [15987]: _SERVER found -- 17:23:49.658 INFO [15987]: REMOTE_ADDR = 192.168.1.13 -- 17:23:49.658 INFO [15987]: SERVER_NAME = oameye.works.coregrade.com -- 17:23:49.658 INFO [15987]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:23:49.658 INFO [15987]: QUERY_STRING = /member/index -- 17:23:49.658 INFO [15987]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:23:49.700 INFO [15987]: COREGRADE is stopping... -- 17:23:49.700 DEBUG [15987]: Closing database connection -- 17:23:49.700 SQL [15987]: pgsql_close() -- 17:23:49.994 INFO [15839]: COREGRADE is starting... -- 17:23:49.994 INFO [15839]: Version from config: 1.0 -- 17:23:49.994 DEBUG [15839]: Connecting to database... -- 17:23:49.994 DEBUG [15839]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:23:49.994 SQL [15839]: pgsql_db_connect() -- 17:23:49.999 DEBUG [15839]: Database connection successful -- 17:23:49.999 INFO [15839]: _SERVER found -- 17:23:49.999 INFO [15839]: REMOTE_ADDR = 192.168.1.13 -- 17:23:49.999 INFO [15839]: SERVER_NAME = oameye.works.coregrade.com -- 17:23:49.999 INFO [15839]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:23:49.999 INFO [15839]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:23:49.999 INFO [15839]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:23:50.011 INFO [15839]: COREGRADE is stopping... -- 17:23:50.011 DEBUG [15839]: Closing database connection -- 17:23:50.011 SQL [15839]: pgsql_close() -- 17:23:50.396 INFO [15987]: COREGRADE is starting... -- 17:23:50.397 INFO [15987]: Version from config: 1.0 -- 17:23:50.397 DEBUG [15987]: Connecting to database... -- 17:23:50.397 DEBUG [15987]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:23:50.397 SQL [15987]: pgsql_db_connect() -- 17:23:50.401 DEBUG [15987]: Database connection successful -- 17:23:50.401 INFO [15987]: _SERVER found -- 17:23:50.401 INFO [15987]: REMOTE_ADDR = 192.168.1.13 -- 17:23:50.401 INFO [15987]: SERVER_NAME = oameye.works.coregrade.com -- 17:23:50.401 INFO [15987]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:23:50.401 INFO [15987]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:23:50.401 INFO [15987]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:23:50.412 INFO [15987]: COREGRADE is stopping... -- 17:23:50.412 DEBUG [15987]: Closing database connection -- 17:23:50.412 SQL [15987]: pgsql_close() -- 17:23:52.039 INFO [15987]: COREGRADE is starting... -- 17:23:52.039 INFO [15987]: Version from config: 1.0 -- 17:23:52.039 DEBUG [15987]: Connecting to database... -- 17:23:52.039 DEBUG [15987]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:23:52.039 SQL [15987]: pgsql_db_connect() -- 17:23:52.044 DEBUG [15987]: Database connection successful -- 17:23:52.044 INFO [15987]: _SERVER found -- 17:23:52.044 INFO [15987]: REMOTE_ADDR = 192.168.1.13 -- 17:23:52.044 INFO [15987]: SERVER_NAME = oameye.works.coregrade.com -- 17:23:52.044 INFO [15987]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:23:52.044 INFO [15987]: QUERY_STRING = /member/page -- 17:23:52.044 INFO [15987]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:23:52.086 INFO [15987]: COREGRADE is stopping... -- 17:23:52.086 DEBUG [15987]: Closing database connection -- 17:23:52.086 SQL [15987]: pgsql_close() -- 17:23:52.440 INFO [15987]: COREGRADE is starting... -- 17:23:52.440 INFO [15987]: Version from config: 1.0 -- 17:23:52.440 DEBUG [15987]: Connecting to database... -- 17:23:52.440 DEBUG [15987]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:23:52.440 SQL [15987]: pgsql_db_connect() -- 17:23:52.445 DEBUG [15987]: Database connection successful -- 17:23:52.445 INFO [15987]: _SERVER found -- 17:23:52.445 INFO [15987]: REMOTE_ADDR = 192.168.1.13 -- 17:23:52.445 INFO [15987]: SERVER_NAME = oameye.works.coregrade.com -- 17:23:52.445 INFO [15987]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:23:52.445 INFO [15987]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:23:52.445 INFO [15987]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:23:52.456 INFO [15987]: COREGRADE is stopping... -- 17:23:52.456 DEBUG [15987]: Closing database connection -- 17:23:52.456 SQL [15987]: pgsql_close() -- 17:23:52.628 INFO [15987]: COREGRADE is starting... -- 17:23:52.629 INFO [15987]: Version from config: 1.0 -- 17:23:52.629 DEBUG [15987]: Connecting to database... -- 17:23:52.629 DEBUG [15987]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:23:52.629 SQL [15987]: pgsql_db_connect() -- 17:23:52.633 DEBUG [15987]: Database connection successful -- 17:23:52.633 INFO [15987]: _SERVER found -- 17:23:52.633 INFO [15987]: REMOTE_ADDR = 192.168.1.13 -- 17:23:52.633 INFO [15987]: SERVER_NAME = oameye.works.coregrade.com -- 17:23:52.633 INFO [15987]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:23:52.633 INFO [15987]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:23:52.633 INFO [15987]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:23:52.644 INFO [15987]: COREGRADE is stopping... -- 17:23:52.644 DEBUG [15987]: Closing database connection -- 17:23:52.644 SQL [15987]: pgsql_close() -- 17:23:56.182 INFO [15987]: COREGRADE is starting... -- 17:23:56.182 INFO [15987]: Version from config: 1.0 -- 17:23:56.182 DEBUG [15987]: Connecting to database... -- 17:23:56.182 DEBUG [15987]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:23:56.182 SQL [15987]: pgsql_db_connect() -- 17:23:56.187 DEBUG [15987]: Database connection successful -- 17:23:56.187 INFO [15987]: _SERVER found -- 17:23:56.187 INFO [15987]: REMOTE_ADDR = 192.168.1.13 -- 17:23:56.187 INFO [15987]: SERVER_NAME = oameye.works.coregrade.com -- 17:23:56.187 INFO [15987]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:23:56.187 INFO [15987]: QUERY_STRING = /member/viewCardAddAction -- 17:23:56.187 INFO [15987]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:23:56.221 INFO [15987]: COREGRADE is stopping... -- 17:23:56.221 DEBUG [15987]: Closing database connection -- 17:23:56.221 SQL [15987]: pgsql_close() -- 17:23:56.258 INFO [15987]: COREGRADE is starting... -- 17:23:56.258 INFO [15987]: Version from config: 1.0 -- 17:23:56.258 DEBUG [15987]: Connecting to database... -- 17:23:56.258 DEBUG [15987]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:23:56.258 SQL [15987]: pgsql_db_connect() -- 17:23:56.262 DEBUG [15987]: Database connection successful -- 17:23:56.262 INFO [15987]: _SERVER found -- 17:23:56.262 INFO [15987]: REMOTE_ADDR = 192.168.1.13 -- 17:23:56.262 INFO [15987]: SERVER_NAME = oameye.works.coregrade.com -- 17:23:56.262 INFO [15987]: QUERY_STRING = /favicon.ico -- 17:23:56.262 INFO [15987]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:23:56.274 INFO [15987]: COREGRADE is stopping... -- 17:23:56.274 DEBUG [15987]: Closing database connection -- 17:23:56.274 SQL [15987]: pgsql_close() -- 17:24:19.256 INFO [15986]: COREGRADE is starting... -- 17:24:19.256 INFO [15986]: Version from config: 1.0 -- 17:24:19.256 DEBUG [15986]: Connecting to database... -- 17:24:19.256 DEBUG [15986]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:24:19.256 SQL [15986]: pgsql_db_connect() -- 17:24:19.261 DEBUG [15986]: Database connection successful -- 17:24:19.261 INFO [15986]: _SERVER found -- 17:24:19.261 INFO [15986]: REMOTE_ADDR = 192.168.1.13 -- 17:24:19.261 INFO [15986]: SERVER_NAME = oameye.works.coregrade.com -- 17:24:19.261 INFO [15986]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:24:19.261 INFO [15986]: QUERY_STRING = /member/configure -- 17:24:19.261 INFO [15986]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:24:19.304 INFO [15986]: COREGRADE is stopping... -- 17:24:19.304 DEBUG [15986]: Closing database connection -- 17:24:19.304 SQL [15986]: pgsql_close() -- 17:24:19.559 INFO [15986]: COREGRADE is starting... -- 17:24:19.559 INFO [15986]: Version from config: 1.0 -- 17:24:19.559 DEBUG [15986]: Connecting to database... -- 17:24:19.559 DEBUG [15986]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:24:19.559 SQL [15986]: pgsql_db_connect() -- 17:24:19.563 DEBUG [15986]: Database connection successful -- 17:24:19.563 INFO [15986]: _SERVER found -- 17:24:19.563 INFO [15986]: REMOTE_ADDR = 192.168.1.13 -- 17:24:19.563 INFO [15986]: SERVER_NAME = oameye.works.coregrade.com -- 17:24:19.563 INFO [15986]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:24:19.563 INFO [15986]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:24:19.563 INFO [15986]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:24:19.575 INFO [15986]: COREGRADE is stopping... -- 17:24:19.575 DEBUG [15986]: Closing database connection -- 17:24:19.575 SQL [15986]: pgsql_close() -- 17:24:19.697 INFO [15986]: COREGRADE is starting... -- 17:24:19.697 INFO [15986]: Version from config: 1.0 -- 17:24:19.697 DEBUG [15986]: Connecting to database... -- 17:24:19.697 DEBUG [15986]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:24:19.697 SQL [15986]: pgsql_db_connect() -- 17:24:19.702 DEBUG [15986]: Database connection successful -- 17:24:19.702 INFO [15986]: _SERVER found -- 17:24:19.702 INFO [15986]: REMOTE_ADDR = 192.168.1.13 -- 17:24:19.702 INFO [15986]: SERVER_NAME = oameye.works.coregrade.com -- 17:24:19.702 INFO [15986]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:24:19.702 INFO [15986]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:24:19.702 INFO [15986]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:24:19.713 INFO [15986]: COREGRADE is stopping... -- 17:24:19.713 DEBUG [15986]: Closing database connection -- 17:24:19.713 SQL [15986]: pgsql_close() -- 17:24:19.860 INFO [15986]: COREGRADE is starting... -- 17:24:19.860 INFO [15986]: Version from config: 1.0 -- 17:24:19.860 DEBUG [15986]: Connecting to database... -- 17:24:19.860 DEBUG [15986]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:24:19.860 SQL [15986]: pgsql_db_connect() -- 17:24:19.864 DEBUG [15986]: Database connection successful -- 17:24:19.864 INFO [15986]: _SERVER found -- 17:24:19.864 INFO [15986]: REMOTE_ADDR = 192.168.1.13 -- 17:24:19.864 INFO [15986]: SERVER_NAME = oameye.works.coregrade.com -- 17:24:19.864 INFO [15986]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:24:19.864 INFO [15986]: QUERY_STRING = /member/configure -- 17:24:19.864 INFO [15986]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:24:19.901 INFO [15986]: COREGRADE is stopping... -- 17:24:19.902 DEBUG [15986]: Closing database connection -- 17:24:19.902 SQL [15986]: pgsql_close() -- 17:24:20.219 INFO [15986]: COREGRADE is starting... -- 17:24:20.220 INFO [15986]: Version from config: 1.0 -- 17:24:20.220 DEBUG [15986]: Connecting to database... -- 17:24:20.220 DEBUG [15986]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:24:20.220 SQL [15986]: pgsql_db_connect() -- 17:24:20.224 DEBUG [15986]: Database connection successful -- 17:24:20.224 INFO [15986]: _SERVER found -- 17:24:20.224 INFO [15986]: REMOTE_ADDR = 192.168.1.13 -- 17:24:20.224 INFO [15986]: SERVER_NAME = oameye.works.coregrade.com -- 17:24:20.224 INFO [15986]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:24:20.224 INFO [15986]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:24:20.224 INFO [15986]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:24:20.236 INFO [15986]: COREGRADE is stopping... -- 17:24:20.236 DEBUG [15986]: Closing database connection -- 17:24:20.236 SQL [15986]: pgsql_close() -- 17:24:20.535 INFO [15986]: COREGRADE is starting... -- 17:24:20.535 INFO [15986]: Version from config: 1.0 -- 17:24:20.535 DEBUG [15986]: Connecting to database... -- 17:24:20.535 DEBUG [15986]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:24:20.535 SQL [15986]: pgsql_db_connect() -- 17:24:20.540 DEBUG [15986]: Database connection successful -- 17:24:20.540 INFO [15986]: _SERVER found -- 17:24:20.540 INFO [15986]: REMOTE_ADDR = 192.168.1.13 -- 17:24:20.540 INFO [15986]: SERVER_NAME = oameye.works.coregrade.com -- 17:24:20.540 INFO [15986]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:24:20.540 INFO [15986]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:24:20.540 INFO [15986]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:24:20.551 INFO [15986]: COREGRADE is stopping... -- 17:24:20.551 DEBUG [15986]: Closing database connection -- 17:24:20.551 SQL [15986]: pgsql_close() -- 17:24:24.111 INFO [15986]: COREGRADE is starting... -- 17:24:24.111 INFO [15986]: Version from config: 1.0 -- 17:24:24.111 DEBUG [15986]: Connecting to database... -- 17:24:24.111 DEBUG [15986]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:24:24.111 SQL [15986]: pgsql_db_connect() -- 17:24:24.115 DEBUG [15986]: Database connection successful -- 17:24:24.115 INFO [15986]: _SERVER found -- 17:24:24.115 INFO [15986]: REMOTE_ADDR = 192.168.1.13 -- 17:24:24.115 INFO [15986]: SERVER_NAME = oameye.works.coregrade.com -- 17:24:24.115 INFO [15986]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:24:24.115 INFO [15986]: QUERY_STRING = /member/viewSharePage -- 17:24:24.115 INFO [15986]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:24:24.150 INFO [15986]: COREGRADE is stopping... -- 17:24:24.150 DEBUG [15986]: Closing database connection -- 17:24:24.150 SQL [15986]: pgsql_close() -- 17:24:24.159 INFO [15804]: COREGRADE is starting... -- 17:24:24.159 INFO [15804]: Version from config: 1.0 -- 17:24:24.159 DEBUG [15804]: Connecting to database... -- 17:24:24.159 DEBUG [15804]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:24:24.159 SQL [15804]: pgsql_db_connect() -- 17:24:24.163 DEBUG [15804]: Database connection successful -- 17:24:24.163 INFO [15804]: _SERVER found -- 17:24:24.163 INFO [15804]: REMOTE_ADDR = 192.168.1.13 -- 17:24:24.163 INFO [15804]: SERVER_NAME = oameye.works.coregrade.com -- 17:24:24.163 INFO [15804]: QUERY_STRING = /favicon.ico -- 17:24:24.163 INFO [15804]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:24:24.175 INFO [15804]: COREGRADE is stopping... -- 17:24:24.175 DEBUG [15804]: Closing database connection -- 17:24:24.175 SQL [15804]: pgsql_close() -- 17:24:25.801 INFO [15804]: COREGRADE is starting... -- 17:24:25.802 INFO [15804]: Version from config: 1.0 -- 17:24:25.802 DEBUG [15804]: Connecting to database... -- 17:24:25.802 DEBUG [15804]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:24:25.802 SQL [15804]: pgsql_db_connect() -- 17:24:25.806 DEBUG [15804]: Database connection successful -- 17:24:25.806 INFO [15804]: _SERVER found -- 17:24:25.806 INFO [15804]: REMOTE_ADDR = 192.168.1.13 -- 17:24:25.806 INFO [15804]: SERVER_NAME = oameye.works.coregrade.com -- 17:24:25.806 INFO [15804]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:24:25.806 INFO [15804]: QUERY_STRING = /member/page -- 17:24:25.806 INFO [15804]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:24:25.846 INFO [15804]: COREGRADE is stopping... -- 17:24:25.846 DEBUG [15804]: Closing database connection -- 17:24:25.846 SQL [15804]: pgsql_close() -- 17:24:26.111 INFO [15804]: COREGRADE is starting... -- 17:24:26.112 INFO [15804]: Version from config: 1.0 -- 17:24:26.112 DEBUG [15804]: Connecting to database... -- 17:24:26.112 DEBUG [15804]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:24:26.112 SQL [15804]: pgsql_db_connect() -- 17:24:26.116 DEBUG [15804]: Database connection successful -- 17:24:26.116 INFO [15804]: _SERVER found -- 17:24:26.116 INFO [15804]: REMOTE_ADDR = 192.168.1.13 -- 17:24:26.116 INFO [15804]: SERVER_NAME = oameye.works.coregrade.com -- 17:24:26.116 INFO [15804]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:24:26.116 INFO [15804]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:24:26.116 INFO [15804]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:24:26.127 INFO [15804]: COREGRADE is stopping... -- 17:24:26.127 DEBUG [15804]: Closing database connection -- 17:24:26.127 SQL [15804]: pgsql_close() -- 17:24:26.595 INFO [15804]: COREGRADE is starting... -- 17:24:26.596 INFO [15804]: Version from config: 1.0 -- 17:24:26.596 DEBUG [15804]: Connecting to database... -- 17:24:26.596 DEBUG [15804]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:24:26.596 SQL [15804]: pgsql_db_connect() -- 17:24:26.600 DEBUG [15804]: Database connection successful -- 17:24:26.600 INFO [15804]: _SERVER found -- 17:24:26.600 INFO [15804]: REMOTE_ADDR = 192.168.1.13 -- 17:24:26.600 INFO [15804]: SERVER_NAME = oameye.works.coregrade.com -- 17:24:26.600 INFO [15804]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:24:26.600 INFO [15804]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:24:26.600 INFO [15804]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:24:26.611 INFO [15804]: COREGRADE is stopping... -- 17:24:26.611 DEBUG [15804]: Closing database connection -- 17:24:26.612 SQL [15804]: pgsql_close() -- 17:24:29.356 INFO [15804]: COREGRADE is starting... -- 17:24:29.357 INFO [15804]: Version from config: 1.0 -- 17:24:29.357 DEBUG [15804]: Connecting to database... -- 17:24:29.357 DEBUG [15804]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:24:29.357 SQL [15804]: pgsql_db_connect() -- 17:24:29.361 DEBUG [15804]: Database connection successful -- 17:24:29.361 INFO [15804]: _SERVER found -- 17:24:29.361 INFO [15804]: REMOTE_ADDR = 192.168.1.13 -- 17:24:29.361 INFO [15804]: SERVER_NAME = oameye.works.coregrade.com -- 17:24:29.361 INFO [15804]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:24:29.361 INFO [15804]: QUERY_STRING = /member/mycalendar -- 17:24:29.361 INFO [15804]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:24:29.395 INFO [15804]: COREGRADE is stopping... -- 17:24:29.395 DEBUG [15804]: Closing database connection -- 17:24:29.395 SQL [15804]: pgsql_close() -- 17:24:29.670 INFO [15804]: COREGRADE is starting... -- 17:24:29.670 INFO [15804]: Version from config: 1.0 -- 17:24:29.670 DEBUG [15804]: Connecting to database... -- 17:24:29.670 DEBUG [15804]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:24:29.670 SQL [15804]: pgsql_db_connect() -- 17:24:29.675 DEBUG [15804]: Database connection successful -- 17:24:29.675 INFO [15804]: _SERVER found -- 17:24:29.675 INFO [15804]: REMOTE_ADDR = 192.168.1.13 -- 17:24:29.675 INFO [15804]: SERVER_NAME = oameye.works.coregrade.com -- 17:24:29.675 INFO [15804]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:24:29.675 INFO [15804]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:24:29.675 INFO [15804]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:24:29.686 INFO [15804]: COREGRADE is stopping... -- 17:24:29.686 DEBUG [15804]: Closing database connection -- 17:24:29.686 SQL [15804]: pgsql_close() -- 17:24:29.902 INFO [15804]: COREGRADE is starting... -- 17:24:29.902 INFO [15804]: Version from config: 1.0 -- 17:24:29.902 DEBUG [15804]: Connecting to database... -- 17:24:29.902 DEBUG [15804]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:24:29.902 SQL [15804]: pgsql_db_connect() -- 17:24:29.906 DEBUG [15804]: Database connection successful -- 17:24:29.906 INFO [15804]: _SERVER found -- 17:24:29.906 INFO [15804]: REMOTE_ADDR = 192.168.1.13 -- 17:24:29.906 INFO [15804]: SERVER_NAME = oameye.works.coregrade.com -- 17:24:29.906 INFO [15804]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:24:29.906 INFO [15804]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:24:29.906 INFO [15804]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:24:29.918 INFO [15804]: COREGRADE is stopping... -- 17:24:29.918 DEBUG [15804]: Closing database connection -- 17:24:29.918 SQL [15804]: pgsql_close() -- 17:24:30.813 INFO [15804]: COREGRADE is starting... -- 17:24:30.813 INFO [15804]: Version from config: 1.0 -- 17:24:30.813 DEBUG [15804]: Connecting to database... -- 17:24:30.813 DEBUG [15804]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:24:30.813 SQL [15804]: pgsql_db_connect() -- 17:24:30.818 DEBUG [15804]: Database connection successful -- 17:24:30.818 INFO [15804]: _SERVER found -- 17:24:30.818 INFO [15804]: REMOTE_ADDR = 192.168.1.13 -- 17:24:30.818 INFO [15804]: SERVER_NAME = oameye.works.coregrade.com -- 17:24:30.818 INFO [15804]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:24:30.818 INFO [15804]: QUERY_STRING = /member/configure -- 17:24:30.818 INFO [15804]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:24:30.855 INFO [15804]: COREGRADE is stopping... -- 17:24:30.855 DEBUG [15804]: Closing database connection -- 17:24:30.855 SQL [15804]: pgsql_close() -- 17:24:31.194 INFO [15804]: COREGRADE is starting... -- 17:24:31.195 INFO [15804]: Version from config: 1.0 -- 17:24:31.195 DEBUG [15804]: Connecting to database... -- 17:24:31.195 DEBUG [15804]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:24:31.195 SQL [15804]: pgsql_db_connect() -- 17:24:31.199 DEBUG [15804]: Database connection successful -- 17:24:31.199 INFO [15804]: _SERVER found -- 17:24:31.199 INFO [15804]: REMOTE_ADDR = 192.168.1.13 -- 17:24:31.199 INFO [15804]: SERVER_NAME = oameye.works.coregrade.com -- 17:24:31.199 INFO [15804]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:24:31.199 INFO [15804]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:24:31.199 INFO [15804]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:24:31.210 INFO [15804]: COREGRADE is stopping... -- 17:24:31.210 DEBUG [15804]: Closing database connection -- 17:24:31.210 SQL [15804]: pgsql_close() -- 17:24:31.564 INFO [15804]: COREGRADE is starting... -- 17:24:31.564 INFO [15804]: Version from config: 1.0 -- 17:24:31.564 DEBUG [15804]: Connecting to database... -- 17:24:31.565 DEBUG [15804]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:24:31.565 SQL [15804]: pgsql_db_connect() -- 17:24:31.569 DEBUG [15804]: Database connection successful -- 17:24:31.569 INFO [15804]: _SERVER found -- 17:24:31.569 INFO [15804]: REMOTE_ADDR = 192.168.1.13 -- 17:24:31.569 INFO [15804]: SERVER_NAME = oameye.works.coregrade.com -- 17:24:31.569 INFO [15804]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:24:31.569 INFO [15804]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:24:31.569 INFO [15804]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:24:31.580 INFO [15804]: COREGRADE is stopping... -- 17:24:31.580 DEBUG [15804]: Closing database connection -- 17:24:31.580 SQL [15804]: pgsql_close() -- 17:25:40.626 INFO [15959]: COREGRADE is starting... -- 17:25:40.626 INFO [15959]: Version from config: 1.0 -- 17:25:40.626 DEBUG [15959]: Connecting to database... -- 17:25:40.626 DEBUG [15959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:25:40.626 SQL [15959]: pgsql_db_connect() -- 17:25:40.630 DEBUG [15959]: Database connection successful -- 17:25:40.630 INFO [15959]: _SERVER found -- 17:25:40.630 INFO [15959]: REMOTE_ADDR = 192.168.1.13 -- 17:25:40.630 INFO [15959]: SERVER_NAME = oameye.works.coregrade.com -- 17:25:40.630 INFO [15959]: HTTP_COOKIE = ci_session=mbuvdc198bek9i7bda1bsfku9r5tabge; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:25:40.630 INFO [15959]: QUERY_STRING = /member -- 17:25:40.630 INFO [15959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:25:40.670 INFO [15959]: COREGRADE is stopping... -- 17:25:40.670 DEBUG [15959]: Closing database connection -- 17:25:40.670 SQL [15959]: pgsql_close() -- 17:25:40.968 INFO [15959]: COREGRADE is starting... -- 17:25:40.969 INFO [15959]: Version from config: 1.0 -- 17:25:40.969 DEBUG [15959]: Connecting to database... -- 17:25:40.969 DEBUG [15959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:25:40.969 SQL [15959]: pgsql_db_connect() -- 17:25:40.973 DEBUG [15959]: Database connection successful -- 17:25:40.973 INFO [15959]: _SERVER found -- 17:25:40.973 INFO [15959]: REMOTE_ADDR = 192.168.1.13 -- 17:25:40.973 INFO [15959]: SERVER_NAME = oameye.works.coregrade.com -- 17:25:40.973 INFO [15959]: HTTP_COOKIE = ci_session=tandbja9tgu9e81npem32u1b2n8o90vd; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:25:40.973 INFO [15959]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:25:40.973 INFO [15959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:25:40.984 INFO [15959]: COREGRADE is stopping... -- 17:25:40.984 DEBUG [15959]: Closing database connection -- 17:25:40.984 SQL [15959]: pgsql_close() -- 17:25:41.085 INFO [15959]: COREGRADE is starting... -- 17:25:41.085 INFO [15959]: Version from config: 1.0 -- 17:25:41.085 DEBUG [15959]: Connecting to database... -- 17:25:41.085 DEBUG [15959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:25:41.085 SQL [15959]: pgsql_db_connect() -- 17:25:41.089 DEBUG [15959]: Database connection successful -- 17:25:41.089 INFO [15959]: _SERVER found -- 17:25:41.089 INFO [15959]: REMOTE_ADDR = 192.168.1.13 -- 17:25:41.089 INFO [15959]: SERVER_NAME = oameye.works.coregrade.com -- 17:25:41.089 INFO [15959]: HTTP_COOKIE = ci_session=tandbja9tgu9e81npem32u1b2n8o90vd; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:25:41.089 INFO [15959]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:25:41.089 INFO [15959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:25:41.101 INFO [15959]: COREGRADE is stopping... -- 17:25:41.101 DEBUG [15959]: Closing database connection -- 17:25:41.101 SQL [15959]: pgsql_close() -- 17:25:42.331 INFO [15959]: COREGRADE is starting... -- 17:25:42.331 INFO [15959]: Version from config: 1.0 -- 17:25:42.331 DEBUG [15959]: Connecting to database... -- 17:25:42.331 DEBUG [15959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:25:42.331 SQL [15959]: pgsql_db_connect() -- 17:25:42.336 DEBUG [15959]: Database connection successful -- 17:25:42.336 INFO [15959]: _SERVER found -- 17:25:42.336 INFO [15959]: REMOTE_ADDR = 192.168.1.13 -- 17:25:42.336 INFO [15959]: SERVER_NAME = oameye.works.coregrade.com -- 17:25:42.336 INFO [15959]: HTTP_COOKIE = ci_session=tandbja9tgu9e81npem32u1b2n8o90vd; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:25:42.336 INFO [15959]: QUERY_STRING = /member/page -- 17:25:42.336 INFO [15959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:25:42.375 INFO [15959]: COREGRADE is stopping... -- 17:25:42.375 DEBUG [15959]: Closing database connection -- 17:25:42.375 SQL [15959]: pgsql_close() -- 17:25:42.671 INFO [15959]: COREGRADE is starting... -- 17:25:42.672 INFO [15959]: Version from config: 1.0 -- 17:25:42.672 DEBUG [15959]: Connecting to database... -- 17:25:42.672 DEBUG [15959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:25:42.672 SQL [15959]: pgsql_db_connect() -- 17:25:42.676 DEBUG [15959]: Database connection successful -- 17:25:42.676 INFO [15959]: _SERVER found -- 17:25:42.676 INFO [15959]: REMOTE_ADDR = 192.168.1.13 -- 17:25:42.676 INFO [15959]: SERVER_NAME = oameye.works.coregrade.com -- 17:25:42.676 INFO [15959]: HTTP_COOKIE = ci_session=tandbja9tgu9e81npem32u1b2n8o90vd; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:25:42.676 INFO [15959]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:25:42.676 INFO [15959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:25:42.687 INFO [15959]: COREGRADE is stopping... -- 17:25:42.688 DEBUG [15959]: Closing database connection -- 17:25:42.688 SQL [15959]: pgsql_close() -- 17:25:42.864 INFO [15959]: COREGRADE is starting... -- 17:25:42.864 INFO [15959]: Version from config: 1.0 -- 17:25:42.864 DEBUG [15959]: Connecting to database... -- 17:25:42.864 DEBUG [15959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:25:42.864 SQL [15959]: pgsql_db_connect() -- 17:25:42.868 DEBUG [15959]: Database connection successful -- 17:25:42.868 INFO [15959]: _SERVER found -- 17:25:42.868 INFO [15959]: REMOTE_ADDR = 192.168.1.13 -- 17:25:42.868 INFO [15959]: SERVER_NAME = oameye.works.coregrade.com -- 17:25:42.868 INFO [15959]: HTTP_COOKIE = ci_session=tandbja9tgu9e81npem32u1b2n8o90vd; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:25:42.868 INFO [15959]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:25:42.868 INFO [15959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:25:42.880 INFO [15959]: COREGRADE is stopping... -- 17:25:42.880 DEBUG [15959]: Closing database connection -- 17:25:42.880 SQL [15959]: pgsql_close() -- 17:25:45.147 INFO [15959]: COREGRADE is starting... -- 17:25:45.147 INFO [15959]: Version from config: 1.0 -- 17:25:45.147 DEBUG [15959]: Connecting to database... -- 17:25:45.147 DEBUG [15959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:25:45.147 SQL [15959]: pgsql_db_connect() -- 17:25:45.151 DEBUG [15959]: Database connection successful -- 17:25:45.151 INFO [15959]: _SERVER found -- 17:25:45.151 INFO [15959]: REMOTE_ADDR = 192.168.1.13 -- 17:25:45.151 INFO [15959]: SERVER_NAME = oameye.works.coregrade.com -- 17:25:45.151 INFO [15959]: HTTP_COOKIE = ci_session=tandbja9tgu9e81npem32u1b2n8o90vd; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:25:45.151 INFO [15959]: QUERY_STRING = /member/viewCardAddAction -- 17:25:45.151 INFO [15959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:25:45.182 INFO [15959]: COREGRADE is stopping... -- 17:25:45.182 DEBUG [15959]: Closing database connection -- 17:25:45.182 SQL [15959]: pgsql_close() -- 17:25:45.217 INFO [15959]: COREGRADE is starting... -- 17:25:45.217 INFO [15959]: Version from config: 1.0 -- 17:25:45.217 DEBUG [15959]: Connecting to database... -- 17:25:45.217 DEBUG [15959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:25:45.217 SQL [15959]: pgsql_db_connect() -- 17:25:45.221 DEBUG [15959]: Database connection successful -- 17:25:45.221 INFO [15959]: _SERVER found -- 17:25:45.221 INFO [15959]: REMOTE_ADDR = 192.168.1.13 -- 17:25:45.221 INFO [15959]: SERVER_NAME = oameye.works.coregrade.com -- 17:25:45.221 INFO [15959]: QUERY_STRING = /favicon.ico -- 17:25:45.221 INFO [15959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:25:45.233 INFO [15959]: COREGRADE is stopping... -- 17:25:45.233 DEBUG [15959]: Closing database connection -- 17:25:45.233 SQL [15959]: pgsql_close() -- 17:27:06.028 INFO [15805]: COREGRADE is starting... -- 17:27:06.028 INFO [15805]: Version from config: 1.0 -- 17:27:06.028 DEBUG [15805]: Connecting to database... -- 17:27:06.028 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:06.028 SQL [15805]: pgsql_db_connect() -- 17:27:06.032 DEBUG [15805]: Database connection successful -- 17:27:06.032 INFO [15805]: _SERVER found -- 17:27:06.032 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 17:27:06.032 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 17:27:06.032 INFO [15805]: HTTP_COOKIE = ci_session=tandbja9tgu9e81npem32u1b2n8o90vd; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:27:06.032 INFO [15805]: QUERY_STRING = /member/configure -- 17:27:06.032 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:27:06.070 INFO [15805]: COREGRADE is stopping... -- 17:27:06.070 DEBUG [15805]: Closing database connection -- 17:27:06.070 SQL [15805]: pgsql_close() -- 17:27:06.342 INFO [15805]: COREGRADE is starting... -- 17:27:06.343 INFO [15805]: Version from config: 1.0 -- 17:27:06.343 DEBUG [15805]: Connecting to database... -- 17:27:06.343 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:06.343 SQL [15805]: pgsql_db_connect() -- 17:27:06.347 DEBUG [15805]: Database connection successful -- 17:27:06.347 INFO [15805]: _SERVER found -- 17:27:06.347 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 17:27:06.347 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 17:27:06.347 INFO [15805]: HTTP_COOKIE = ci_session=tandbja9tgu9e81npem32u1b2n8o90vd; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:27:06.347 INFO [15805]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:27:06.347 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:27:06.358 INFO [15805]: COREGRADE is stopping... -- 17:27:06.358 DEBUG [15805]: Closing database connection -- 17:27:06.358 SQL [15805]: pgsql_close() -- 17:27:06.519 INFO [15805]: COREGRADE is starting... -- 17:27:06.519 INFO [15805]: Version from config: 1.0 -- 17:27:06.519 DEBUG [15805]: Connecting to database... -- 17:27:06.519 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:06.519 SQL [15805]: pgsql_db_connect() -- 17:27:06.523 DEBUG [15805]: Database connection successful -- 17:27:06.523 INFO [15805]: _SERVER found -- 17:27:06.523 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 17:27:06.523 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 17:27:06.523 INFO [15805]: HTTP_COOKIE = ci_session=tandbja9tgu9e81npem32u1b2n8o90vd; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:27:06.523 INFO [15805]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:27:06.523 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:27:06.534 INFO [15805]: COREGRADE is stopping... -- 17:27:06.534 DEBUG [15805]: Closing database connection -- 17:27:06.534 SQL [15805]: pgsql_close() -- 17:27:08.927 INFO [15805]: COREGRADE is starting... -- 17:27:08.927 INFO [15805]: Version from config: 1.0 -- 17:27:08.927 DEBUG [15805]: Connecting to database... -- 17:27:08.927 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:08.927 SQL [15805]: pgsql_db_connect() -- 17:27:08.931 DEBUG [15805]: Database connection successful -- 17:27:08.931 INFO [15805]: _SERVER found -- 17:27:08.931 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 17:27:08.931 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 17:27:08.931 INFO [15805]: HTTP_COOKIE = ci_session=tandbja9tgu9e81npem32u1b2n8o90vd; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 17:27:08.931 INFO [15805]: QUERY_STRING = /member/viewSharePage -- 17:27:08.931 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:27:08.965 INFO [15805]: COREGRADE is stopping... -- 17:27:08.965 DEBUG [15805]: Closing database connection -- 17:27:08.965 SQL [15805]: pgsql_close() -- 17:27:09.007 INFO [15805]: COREGRADE is starting... -- 17:27:09.007 INFO [15805]: Version from config: 1.0 -- 17:27:09.007 DEBUG [15805]: Connecting to database... -- 17:27:09.007 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:09.007 SQL [15805]: pgsql_db_connect() -- 17:27:09.011 DEBUG [15805]: Database connection successful -- 17:27:09.011 INFO [15805]: _SERVER found -- 17:27:09.011 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 17:27:09.011 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 17:27:09.011 INFO [15805]: QUERY_STRING = /favicon.ico -- 17:27:09.011 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:27:09.022 INFO [15805]: COREGRADE is stopping... -- 17:27:09.022 DEBUG [15805]: Closing database connection -- 17:27:09.022 SQL [15805]: pgsql_close() -- 18:43:13.049 INFO [16022]: COREGRADE is starting... -- 18:43:13.049 INFO [16022]: Version from config: 1.0 -- 18:43:13.049 DEBUG [16022]: Connecting to database... -- 18:43:13.049 DEBUG [16022]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:43:13.049 SQL [16022]: pgsql_db_connect() -- 18:43:13.054 DEBUG [16022]: Database connection successful -- 18:43:13.054 INFO [16022]: _SERVER found -- 18:43:13.054 INFO [16022]: REMOTE_ADDR = 192.168.1.13 -- 18:43:13.054 INFO [16022]: SERVER_NAME = oameye.works.coregrade.com -- 18:43:13.054 INFO [16022]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1mikpqe9pvb2h7hesf3sciibf885ua5t -- 18:43:13.054 INFO [16022]: QUERY_STRING = /member/page -- 18:43:13.054 INFO [16022]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:43:13.099 INFO [16022]: COREGRADE is stopping... -- 18:43:13.099 DEBUG [16022]: Closing database connection -- 18:43:13.099 SQL [16022]: pgsql_close() -- 18:43:13.223 INFO [16022]: COREGRADE is starting... -- 18:43:13.224 INFO [16022]: Version from config: 1.0 -- 18:43:13.224 DEBUG [16022]: Connecting to database... -- 18:43:13.224 DEBUG [16022]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:43:13.224 SQL [16022]: pgsql_db_connect() -- 18:43:13.228 DEBUG [16022]: Database connection successful -- 18:43:13.228 INFO [16022]: _SERVER found -- 18:43:13.228 INFO [16022]: REMOTE_ADDR = 192.168.1.13 -- 18:43:13.228 INFO [16022]: SERVER_NAME = oameye.works.coregrade.com -- 18:43:13.228 INFO [16022]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=orp45vsnr0ve30kc209eri767quoem8m -- 18:43:13.228 INFO [16022]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:43:13.228 INFO [16022]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:43:13.239 INFO [16022]: COREGRADE is stopping... -- 18:43:13.239 DEBUG [16022]: Closing database connection -- 18:43:13.239 SQL [16022]: pgsql_close() -- 18:43:13.427 INFO [16022]: COREGRADE is starting... -- 18:43:13.428 INFO [16022]: Version from config: 1.0 -- 18:43:13.428 DEBUG [16022]: Connecting to database... -- 18:43:13.428 DEBUG [16022]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:43:13.428 SQL [16022]: pgsql_db_connect() -- 18:43:13.432 DEBUG [16022]: Database connection successful -- 18:43:13.432 INFO [16022]: _SERVER found -- 18:43:13.432 INFO [16022]: REMOTE_ADDR = 192.168.1.13 -- 18:43:13.432 INFO [16022]: SERVER_NAME = oameye.works.coregrade.com -- 18:43:13.432 INFO [16022]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=orp45vsnr0ve30kc209eri767quoem8m -- 18:43:13.432 INFO [16022]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:43:13.432 INFO [16022]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:43:13.443 INFO [16022]: COREGRADE is stopping... -- 18:43:13.443 DEBUG [16022]: Closing database connection -- 18:43:13.443 SQL [16022]: pgsql_close() -- 18:43:17.037 INFO [16022]: COREGRADE is starting... -- 18:43:17.037 INFO [16022]: Version from config: 1.0 -- 18:43:17.037 DEBUG [16022]: Connecting to database... -- 18:43:17.037 DEBUG [16022]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:43:17.037 SQL [16022]: pgsql_db_connect() -- 18:43:17.041 DEBUG [16022]: Database connection successful -- 18:43:17.041 INFO [16022]: _SERVER found -- 18:43:17.041 INFO [16022]: REMOTE_ADDR = 192.168.1.13 -- 18:43:17.041 INFO [16022]: SERVER_NAME = oameye.works.coregrade.com -- 18:43:17.041 INFO [16022]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=orp45vsnr0ve30kc209eri767quoem8m -- 18:43:17.041 INFO [16022]: QUERY_STRING = /member/viewCardAddAction -- 18:43:17.041 INFO [16022]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:43:17.072 INFO [16022]: COREGRADE is stopping... -- 18:43:17.072 DEBUG [16022]: Closing database connection -- 18:43:17.072 SQL [16022]: pgsql_close() -- 18:58:18.198 INFO [15840]: COREGRADE is starting... -- 18:58:18.198 INFO [15840]: Version from config: 1.0 -- 18:58:18.198 DEBUG [15840]: Connecting to database... -- 18:58:18.198 DEBUG [15840]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:58:18.198 SQL [15840]: pgsql_db_connect() -- 18:58:18.203 DEBUG [15840]: Database connection successful -- 18:58:18.203 INFO [15840]: _SERVER found -- 18:58:18.203 INFO [15840]: REMOTE_ADDR = 192.168.1.13 -- 18:58:18.203 INFO [15840]: SERVER_NAME = oameye.works.coregrade.com -- 18:58:18.203 INFO [15840]: QUERY_STRING = -- 18:58:18.203 INFO [15840]: HTTP_X_FORWARDED_FOR = 45.143.221.47 -- 18:58:18.247 INFO [15840]: COREGRADE is stopping... -- 18:58:18.247 DEBUG [15840]: Closing database connection -- 18:58:18.247 SQL [15840]: pgsql_close() -- 19:58:18.485 INFO [15984]: COREGRADE is starting... -- 19:58:18.485 INFO [15984]: Version from config: 1.0 -- 19:58:18.485 DEBUG [15984]: Connecting to database... -- 19:58:18.485 DEBUG [15984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:18.485 SQL [15984]: pgsql_db_connect() -- 19:58:18.491 DEBUG [15984]: Database connection successful -- 19:58:18.491 INFO [15984]: _SERVER found -- 19:58:18.491 INFO [15984]: REMOTE_ADDR = 192.168.1.13 -- 19:58:18.491 INFO [15984]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:18.491 INFO [15984]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965 -- 19:58:18.491 INFO [15984]: QUERY_STRING = -- 19:58:18.491 INFO [15984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:18.536 INFO [15984]: COREGRADE is stopping... -- 19:58:18.536 DEBUG [15984]: Closing database connection -- 19:58:18.536 SQL [15984]: pgsql_close() -- 19:58:18.754 INFO [15984]: COREGRADE is starting... -- 19:58:18.755 INFO [15984]: Version from config: 1.0 -- 19:58:18.755 DEBUG [15984]: Connecting to database... -- 19:58:18.755 DEBUG [15984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:18.755 SQL [15984]: pgsql_db_connect() -- 19:58:18.762 INFO [15803]: COREGRADE is starting... -- 19:58:18.762 INFO [15803]: Version from config: 1.0 -- 19:58:18.762 DEBUG [15803]: Connecting to database... -- 19:58:18.762 DEBUG [15803]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:18.762 SQL [15803]: pgsql_db_connect() -- 19:58:18.759 DEBUG [15984]: Database connection successful -- 19:58:18.759 INFO [15984]: _SERVER found -- 19:58:18.759 INFO [15984]: REMOTE_ADDR = 192.168.1.13 -- 19:58:18.759 INFO [15984]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:18.759 INFO [15984]: HTTP_COOKIE = ci_session=phkit8eunqt7os1i4slf6utoum50sknv; _ga=GA1.2.38091328.1580686965 -- 19:58:18.759 INFO [15984]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 19:58:18.759 INFO [15984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:18.770 INFO [15984]: COREGRADE is stopping... -- 19:58:18.770 DEBUG [15984]: Closing database connection -- 19:58:18.770 SQL [15984]: pgsql_close() -- 19:58:18.766 DEBUG [15803]: Database connection successful -- 19:58:18.766 INFO [15803]: _SERVER found -- 19:58:18.766 INFO [15803]: REMOTE_ADDR = 192.168.1.13 -- 19:58:18.766 INFO [15803]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:18.766 INFO [15803]: HTTP_COOKIE = ci_session=phkit8eunqt7os1i4slf6utoum50sknv; _ga=GA1.2.38091328.1580686965 -- 19:58:18.766 INFO [15803]: QUERY_STRING = /assets/img/footer_1.jpg -- 19:58:18.766 INFO [15803]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:18.778 INFO [15803]: COREGRADE is stopping... -- 19:58:18.778 DEBUG [15803]: Closing database connection -- 19:58:18.778 SQL [15803]: pgsql_close() -- 19:58:26.074 INFO [15839]: COREGRADE is starting... -- 19:58:26.074 INFO [15839]: Version from config: 1.0 -- 19:58:26.074 DEBUG [15839]: Connecting to database... -- 19:58:26.074 DEBUG [15839]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:26.074 SQL [15839]: pgsql_db_connect() -- 19:58:26.101 INFO [15987]: COREGRADE is starting... -- 19:58:26.102 INFO [15987]: Version from config: 1.0 -- 19:58:26.102 DEBUG [15987]: Connecting to database... -- 19:58:26.102 DEBUG [15987]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:26.102 SQL [15987]: pgsql_db_connect() -- 19:58:26.079 DEBUG [15839]: Database connection successful -- 19:58:26.079 INFO [15839]: _SERVER found -- 19:58:26.079 INFO [15839]: REMOTE_ADDR = 192.168.1.13 -- 19:58:26.079 INFO [15839]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:26.079 INFO [15839]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1245814096.1581382701; ci_session=phkit8eunqt7os1i4slf6utoum50sknv -- 19:58:26.079 INFO [15839]: QUERY_STRING = -- 19:58:26.079 INFO [15839]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:26.113 INFO [15839]: COREGRADE is stopping... -- 19:58:26.113 DEBUG [15839]: Closing database connection -- 19:58:26.113 SQL [15839]: pgsql_close() -- 19:58:26.106 DEBUG [15987]: Database connection successful -- 19:58:26.106 INFO [15987]: _SERVER found -- 19:58:26.106 INFO [15987]: REMOTE_ADDR = 192.168.1.13 -- 19:58:26.106 INFO [15987]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:26.106 INFO [15987]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1245814096.1581382701; ci_session=phkit8eunqt7os1i4slf6utoum50sknv -- 19:58:26.106 INFO [15987]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 19:58:26.106 INFO [15987]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:26.119 INFO [15987]: COREGRADE is stopping... -- 19:58:26.119 DEBUG [15987]: Closing database connection -- 19:58:26.119 SQL [15987]: pgsql_close() -- 19:58:26.125 INFO [15839]: COREGRADE is starting... -- 19:58:26.125 INFO [15839]: Version from config: 1.0 -- 19:58:26.125 DEBUG [15839]: Connecting to database... -- 19:58:26.125 DEBUG [15839]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:26.125 SQL [15839]: pgsql_db_connect() -- 19:58:26.129 DEBUG [15839]: Database connection successful -- 19:58:26.129 INFO [15839]: _SERVER found -- 19:58:26.129 INFO [15839]: REMOTE_ADDR = 192.168.1.13 -- 19:58:26.129 INFO [15839]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:26.129 INFO [15839]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1245814096.1581382701; ci_session=phkit8eunqt7os1i4slf6utoum50sknv -- 19:58:26.129 INFO [15839]: QUERY_STRING = /assets/img/footer_1.jpg -- 19:58:26.129 INFO [15839]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:26.140 INFO [15839]: COREGRADE is stopping... -- 19:58:26.140 DEBUG [15839]: Closing database connection -- 19:58:26.140 SQL [15839]: pgsql_close() -- 20:21:14.644 INFO [15986]: COREGRADE is starting... -- 20:21:14.644 INFO [15986]: Version from config: 1.0 -- 20:21:14.644 DEBUG [15986]: Connecting to database... -- 20:21:14.644 DEBUG [15986]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:21:14.644 SQL [15986]: pgsql_db_connect() -- 20:21:14.649 DEBUG [15986]: Database connection successful -- 20:21:14.649 INFO [15986]: _SERVER found -- 20:21:14.649 INFO [15986]: REMOTE_ADDR = 192.168.1.13 -- 20:21:14.649 INFO [15986]: SERVER_NAME = oameye.works.coregrade.com -- 20:21:14.649 INFO [15986]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=orp45vsnr0ve30kc209eri767quoem8m -- 20:21:14.649 INFO [15986]: QUERY_STRING = -- 20:21:14.649 INFO [15986]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:21:14.688 INFO [15986]: COREGRADE is stopping... -- 20:21:14.688 DEBUG [15986]: Closing database connection -- 20:21:14.688 SQL [15986]: pgsql_close() -- 20:21:14.861 INFO [15986]: COREGRADE is starting... -- 20:21:14.861 INFO [15986]: Version from config: 1.0 -- 20:21:14.861 DEBUG [15986]: Connecting to database... -- 20:21:14.861 DEBUG [15986]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:21:14.861 SQL [15986]: pgsql_db_connect() -- 20:21:14.868 INFO [15804]: COREGRADE is starting... -- 20:21:14.868 INFO [15804]: Version from config: 1.0 -- 20:21:14.868 DEBUG [15804]: Connecting to database... -- 20:21:14.868 DEBUG [15804]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:21:14.869 SQL [15804]: pgsql_db_connect() -- 20:21:14.865 DEBUG [15986]: Database connection successful -- 20:21:14.865 INFO [15986]: _SERVER found -- 20:21:14.865 INFO [15986]: REMOTE_ADDR = 192.168.1.13 -- 20:21:14.865 INFO [15986]: SERVER_NAME = oameye.works.coregrade.com -- 20:21:14.865 INFO [15986]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rih3qbdlf3655t3j0s5s54b7dvr3ngab -- 20:21:14.865 INFO [15986]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 20:21:14.865 INFO [15986]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:21:14.877 INFO [15986]: COREGRADE is stopping... -- 20:21:14.877 DEBUG [15986]: Closing database connection -- 20:21:14.877 SQL [15986]: pgsql_close() -- 20:21:14.873 DEBUG [15804]: Database connection successful -- 20:21:14.873 INFO [15804]: _SERVER found -- 20:21:14.873 INFO [15804]: REMOTE_ADDR = 192.168.1.13 -- 20:21:14.873 INFO [15804]: SERVER_NAME = oameye.works.coregrade.com -- 20:21:14.873 INFO [15804]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rih3qbdlf3655t3j0s5s54b7dvr3ngab -- 20:21:14.873 INFO [15804]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:21:14.873 INFO [15804]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:21:14.885 INFO [15804]: COREGRADE is stopping... -- 20:21:14.885 DEBUG [15804]: Closing database connection -- 20:21:14.885 SQL [15804]: pgsql_close() -- 20:22:20.342 INFO [15959]: COREGRADE is starting... -- 20:22:20.342 INFO [15959]: Version from config: 1.0 -- 20:22:20.342 DEBUG [15959]: Connecting to database... -- 20:22:20.342 DEBUG [15959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:22:20.342 SQL [15959]: pgsql_db_connect() -- 20:22:20.347 DEBUG [15959]: Database connection successful -- 20:22:20.347 INFO [15959]: _SERVER found -- 20:22:20.347 INFO [15959]: REMOTE_ADDR = 192.168.1.13 -- 20:22:20.347 INFO [15959]: SERVER_NAME = oameye.works.coregrade.com -- 20:22:20.347 INFO [15959]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rih3qbdlf3655t3j0s5s54b7dvr3ngab -- 20:22:20.347 INFO [15959]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 20:22:20.347 INFO [15959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:22:20.359 INFO [15959]: COREGRADE is stopping... -- 20:22:20.359 DEBUG [15959]: Closing database connection -- 20:22:20.359 SQL [15959]: pgsql_close() -- 20:25:33.429 INFO [15805]: COREGRADE is starting... -- 20:25:33.429 INFO [15805]: Version from config: 1.0 -- 20:25:33.429 DEBUG [15805]: Connecting to database... -- 20:25:33.429 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:25:33.429 SQL [15805]: pgsql_db_connect() -- 20:25:33.434 DEBUG [15805]: Database connection successful -- 20:25:33.434 INFO [15805]: _SERVER found -- 20:25:33.434 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 20:25:33.434 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 20:25:33.434 INFO [15805]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rih3qbdlf3655t3j0s5s54b7dvr3ngab -- 20:25:33.434 INFO [15805]: QUERY_STRING = -- 20:25:33.434 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:25:33.468 INFO [15805]: COREGRADE is stopping... -- 20:25:33.468 DEBUG [15805]: Closing database connection -- 20:25:33.468 SQL [15805]: pgsql_close() -- 20:25:33.537 INFO [15805]: COREGRADE is starting... -- 20:25:33.538 INFO [15805]: Version from config: 1.0 -- 20:25:33.538 DEBUG [15805]: Connecting to database... -- 20:25:33.538 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:25:33.538 SQL [15805]: pgsql_db_connect() -- 20:25:33.546 INFO [16022]: COREGRADE is starting... -- 20:25:33.546 INFO [16022]: Version from config: 1.0 -- 20:25:33.546 DEBUG [16022]: Connecting to database... -- 20:25:33.546 DEBUG [16022]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:25:33.546 SQL [16022]: pgsql_db_connect() -- 20:25:33.542 DEBUG [15805]: Database connection successful -- 20:25:33.542 INFO [15805]: _SERVER found -- 20:25:33.542 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 20:25:33.542 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 20:25:33.542 INFO [15805]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rih3qbdlf3655t3j0s5s54b7dvr3ngab -- 20:25:33.542 INFO [15805]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 20:25:33.542 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:25:33.553 INFO [15805]: COREGRADE is stopping... -- 20:25:33.553 DEBUG [15805]: Closing database connection -- 20:25:33.553 SQL [15805]: pgsql_close() -- 20:25:33.550 DEBUG [16022]: Database connection successful -- 20:25:33.550 INFO [16022]: _SERVER found -- 20:25:33.550 INFO [16022]: REMOTE_ADDR = 192.168.1.13 -- 20:25:33.550 INFO [16022]: SERVER_NAME = oameye.works.coregrade.com -- 20:25:33.550 INFO [16022]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rih3qbdlf3655t3j0s5s54b7dvr3ngab -- 20:25:33.550 INFO [16022]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:25:33.550 INFO [16022]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:25:33.562 INFO [16022]: COREGRADE is stopping... -- 20:25:33.562 DEBUG [16022]: Closing database connection -- 20:25:33.562 SQL [16022]: pgsql_close() -- 20:25:33.732 INFO [16022]: COREGRADE is starting... -- 20:25:33.732 INFO [16022]: Version from config: 1.0 -- 20:25:33.732 DEBUG [16022]: Connecting to database... -- 20:25:33.733 DEBUG [16022]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:25:33.733 SQL [16022]: pgsql_db_connect() -- 20:25:33.737 DEBUG [16022]: Database connection successful -- 20:25:33.737 INFO [16022]: _SERVER found -- 20:25:33.737 INFO [16022]: REMOTE_ADDR = 192.168.1.13 -- 20:25:33.737 INFO [16022]: SERVER_NAME = oameye.works.coregrade.com -- 20:25:33.737 INFO [16022]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rih3qbdlf3655t3j0s5s54b7dvr3ngab -- 20:25:33.737 INFO [16022]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 20:25:33.737 INFO [16022]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:25:33.748 INFO [16022]: COREGRADE is stopping... -- 20:25:33.748 DEBUG [16022]: Closing database connection -- 20:25:33.748 SQL [16022]: pgsql_close() -- 20:25:38.195 INFO [16022]: COREGRADE is starting... -- 20:25:38.195 INFO [16022]: Version from config: 1.0 -- 20:25:38.195 DEBUG [16022]: Connecting to database... -- 20:25:38.195 DEBUG [16022]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:25:38.195 SQL [16022]: pgsql_db_connect() -- 20:25:38.199 DEBUG [16022]: Database connection successful -- 20:25:38.199 INFO [16022]: _SERVER found -- 20:25:38.199 INFO [16022]: REMOTE_ADDR = 192.168.1.13 -- 20:25:38.199 INFO [16022]: SERVER_NAME = oameye.works.coregrade.com -- 20:25:38.199 INFO [16022]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rih3qbdlf3655t3j0s5s54b7dvr3ngab; _gat_gtag_UA_54829827_2=1 -- 20:25:38.199 INFO [16022]: QUERY_STRING = -- 20:25:38.199 INFO [16022]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:25:38.238 INFO [16022]: COREGRADE is stopping... -- 20:25:38.239 DEBUG [16022]: Closing database connection -- 20:25:38.239 SQL [16022]: pgsql_close() -- 20:25:38.442 INFO [16022]: COREGRADE is starting... -- 20:25:38.442 INFO [16022]: Version from config: 1.0 -- 20:25:38.442 DEBUG [16022]: Connecting to database... -- 20:25:38.442 DEBUG [16022]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:25:38.442 SQL [16022]: pgsql_db_connect() -- 20:25:38.446 INFO [15805]: COREGRADE is starting... -- 20:25:38.446 INFO [15805]: Version from config: 1.0 -- 20:25:38.446 DEBUG [15805]: Connecting to database... -- 20:25:38.446 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:25:38.446 SQL [15805]: pgsql_db_connect() -- 20:25:38.446 DEBUG [16022]: Database connection successful -- 20:25:38.446 INFO [16022]: _SERVER found -- 20:25:38.446 INFO [16022]: REMOTE_ADDR = 192.168.1.13 -- 20:25:38.446 INFO [16022]: SERVER_NAME = oameye.works.coregrade.com -- 20:25:38.446 INFO [16022]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rih3qbdlf3655t3j0s5s54b7dvr3ngab; _gat_gtag_UA_54829827_2=1 -- 20:25:38.446 INFO [16022]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 20:25:38.446 INFO [16022]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:25:38.457 INFO [16022]: COREGRADE is stopping... -- 20:25:38.457 DEBUG [16022]: Closing database connection -- 20:25:38.457 SQL [16022]: pgsql_close() -- 20:25:38.450 DEBUG [15805]: Database connection successful -- 20:25:38.450 INFO [15805]: _SERVER found -- 20:25:38.450 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 20:25:38.450 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 20:25:38.450 INFO [15805]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rih3qbdlf3655t3j0s5s54b7dvr3ngab; _gat_gtag_UA_54829827_2=1 -- 20:25:38.450 INFO [15805]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:25:38.450 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:25:38.461 INFO [15805]: COREGRADE is stopping... -- 20:25:38.461 DEBUG [15805]: Closing database connection -- 20:25:38.461 SQL [15805]: pgsql_close() -- 20:25:39.015 INFO [15805]: COREGRADE is starting... -- 20:25:39.015 INFO [15805]: Version from config: 1.0 -- 20:25:39.015 DEBUG [15805]: Connecting to database... -- 20:25:39.015 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:25:39.015 SQL [15805]: pgsql_db_connect() -- 20:25:39.019 DEBUG [15805]: Database connection successful -- 20:25:39.019 INFO [15805]: _SERVER found -- 20:25:39.019 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 20:25:39.019 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 20:25:39.019 INFO [15805]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rih3qbdlf3655t3j0s5s54b7dvr3ngab; _gat_gtag_UA_54829827_2=1 -- 20:25:39.019 INFO [15805]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 20:25:39.019 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:25:39.030 INFO [15805]: COREGRADE is stopping... -- 20:25:39.030 DEBUG [15805]: Closing database connection -- 20:25:39.030 SQL [15805]: pgsql_close() -- 20:25:58.722 INFO [15840]: COREGRADE is starting... -- 20:25:58.723 INFO [15840]: Version from config: 1.0 -- 20:25:58.723 DEBUG [15840]: Connecting to database... -- 20:25:58.723 DEBUG [15840]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:25:58.723 SQL [15840]: pgsql_db_connect() -- 20:25:58.727 DEBUG [15840]: Database connection successful -- 20:25:58.727 INFO [15840]: _SERVER found -- 20:25:58.727 INFO [15840]: REMOTE_ADDR = 192.168.1.13 -- 20:25:58.727 INFO [15840]: SERVER_NAME = oameye.works.coregrade.com -- 20:25:58.727 INFO [15840]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rih3qbdlf3655t3j0s5s54b7dvr3ngab; _gat_gtag_UA_54829827_2=1 -- 20:25:58.727 INFO [15840]: QUERY_STRING = -- 20:25:58.727 INFO [15840]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:25:58.759 INFO [15840]: COREGRADE is stopping... -- 20:25:58.759 DEBUG [15840]: Closing database connection -- 20:25:58.759 SQL [15840]: pgsql_close() -- 20:25:59.298 INFO [15984]: COREGRADE is starting... -- 20:25:59.299 INFO [15984]: Version from config: 1.0 -- 20:25:59.299 DEBUG [15984]: Connecting to database... -- 20:25:59.299 DEBUG [15984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:25:59.299 SQL [15984]: pgsql_db_connect() -- 20:25:59.303 INFO [15803]: COREGRADE is starting... -- 20:25:59.303 INFO [15803]: Version from config: 1.0 -- 20:25:59.303 DEBUG [15803]: Connecting to database... -- 20:25:59.303 DEBUG [15803]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:25:59.303 SQL [15803]: pgsql_db_connect() -- 20:25:59.303 DEBUG [15984]: Database connection successful -- 20:25:59.303 INFO [15984]: _SERVER found -- 20:25:59.303 INFO [15984]: REMOTE_ADDR = 192.168.1.13 -- 20:25:59.303 INFO [15984]: SERVER_NAME = oameye.works.coregrade.com -- 20:25:59.303 INFO [15984]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rih3qbdlf3655t3j0s5s54b7dvr3ngab; _gat_gtag_UA_54829827_2=1 -- 20:25:59.303 INFO [15984]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 20:25:59.303 INFO [15984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:25:59.315 INFO [15984]: COREGRADE is stopping... -- 20:25:59.315 DEBUG [15984]: Closing database connection -- 20:25:59.315 SQL [15984]: pgsql_close() -- 20:25:59.307 DEBUG [15803]: Database connection successful -- 20:25:59.307 INFO [15803]: _SERVER found -- 20:25:59.307 INFO [15803]: REMOTE_ADDR = 192.168.1.13 -- 20:25:59.307 INFO [15803]: SERVER_NAME = oameye.works.coregrade.com -- 20:25:59.307 INFO [15803]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rih3qbdlf3655t3j0s5s54b7dvr3ngab; _gat_gtag_UA_54829827_2=1 -- 20:25:59.307 INFO [15803]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:25:59.307 INFO [15803]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:25:59.318 INFO [15803]: COREGRADE is stopping... -- 20:25:59.318 DEBUG [15803]: Closing database connection -- 20:25:59.318 SQL [15803]: pgsql_close() -- 20:25:59.439 INFO [15803]: COREGRADE is starting... -- 20:25:59.439 INFO [15803]: Version from config: 1.0 -- 20:25:59.439 DEBUG [15803]: Connecting to database... -- 20:25:59.439 DEBUG [15803]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:25:59.439 SQL [15803]: pgsql_db_connect() -- 20:25:59.443 DEBUG [15803]: Database connection successful -- 20:25:59.443 INFO [15803]: _SERVER found -- 20:25:59.443 INFO [15803]: REMOTE_ADDR = 192.168.1.13 -- 20:25:59.443 INFO [15803]: SERVER_NAME = oameye.works.coregrade.com -- 20:25:59.443 INFO [15803]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rih3qbdlf3655t3j0s5s54b7dvr3ngab; _gat_gtag_UA_54829827_2=1 -- 20:25:59.443 INFO [15803]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 20:25:59.443 INFO [15803]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:25:59.454 INFO [15803]: COREGRADE is stopping... -- 20:25:59.454 DEBUG [15803]: Closing database connection -- 20:25:59.454 SQL [15803]: pgsql_close() -- 20:27:08.549 INFO [15987]: COREGRADE is starting... -- 20:27:08.550 INFO [15987]: Version from config: 1.0 -- 20:27:08.550 DEBUG [15987]: Connecting to database... -- 20:27:08.550 DEBUG [15987]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:08.550 SQL [15987]: pgsql_db_connect() -- 20:27:08.554 DEBUG [15987]: Database connection successful -- 20:27:08.554 INFO [15987]: _SERVER found -- 20:27:08.554 INFO [15987]: REMOTE_ADDR = 192.168.1.13 -- 20:27:08.554 INFO [15987]: SERVER_NAME = oameye.works.coregrade.com -- 20:27:08.554 INFO [15987]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rih3qbdlf3655t3j0s5s54b7dvr3ngab -- 20:27:08.554 INFO [15987]: QUERY_STRING = -- 20:27:08.554 INFO [15987]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:27:08.594 INFO [15987]: COREGRADE is stopping... -- 20:27:08.594 DEBUG [15987]: Closing database connection -- 20:27:08.594 SQL [15987]: pgsql_close() -- 20:27:08.982 INFO [15986]: COREGRADE is starting... -- 20:27:08.982 INFO [15986]: Version from config: 1.0 -- 20:27:08.982 DEBUG [15986]: Connecting to database... -- 20:27:08.982 DEBUG [15986]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:08.982 SQL [15986]: pgsql_db_connect() -- 20:27:08.986 DEBUG [15986]: Database connection successful -- 20:27:08.986 INFO [15986]: _SERVER found -- 20:27:08.986 INFO [15986]: REMOTE_ADDR = 192.168.1.13 -- 20:27:08.986 INFO [15986]: SERVER_NAME = oameye.works.coregrade.com -- 20:27:08.986 INFO [15986]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=09s363q3lqpqbraa9js3mp1qrnr8fn34 -- 20:27:08.986 INFO [15986]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 20:27:08.986 INFO [15986]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:27:08.998 INFO [15986]: COREGRADE is stopping... -- 20:27:08.998 DEBUG [15986]: Closing database connection -- 20:27:08.998 SQL [15986]: pgsql_close() -- 20:27:09.002 INFO [15959]: COREGRADE is starting... -- 20:27:09.003 INFO [15959]: Version from config: 1.0 -- 20:27:09.003 DEBUG [15959]: Connecting to database... -- 20:27:09.003 DEBUG [15959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:09.003 SQL [15959]: pgsql_db_connect() -- 20:27:09.007 DEBUG [15959]: Database connection successful -- 20:27:09.007 INFO [15959]: _SERVER found -- 20:27:09.007 INFO [15959]: REMOTE_ADDR = 192.168.1.13 -- 20:27:09.007 INFO [15959]: SERVER_NAME = oameye.works.coregrade.com -- 20:27:09.007 INFO [15959]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=09s363q3lqpqbraa9js3mp1qrnr8fn34 -- 20:27:09.007 INFO [15959]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:27:09.007 INFO [15959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:27:09.018 INFO [15959]: COREGRADE is stopping... -- 20:27:09.018 DEBUG [15959]: Closing database connection -- 20:27:09.018 SQL [15959]: pgsql_close() -- 20:27:09.056 INFO [15804]: COREGRADE is starting... -- 20:27:09.056 INFO [15804]: Version from config: 1.0 -- 20:27:09.056 DEBUG [15804]: Connecting to database... -- 20:27:09.056 DEBUG [15804]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:09.056 SQL [15804]: pgsql_db_connect() -- 20:27:09.060 DEBUG [15804]: Database connection successful -- 20:27:09.060 INFO [15804]: _SERVER found -- 20:27:09.060 INFO [15804]: REMOTE_ADDR = 192.168.1.13 -- 20:27:09.060 INFO [15804]: SERVER_NAME = oameye.works.coregrade.com -- 20:27:09.060 INFO [15804]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=09s363q3lqpqbraa9js3mp1qrnr8fn34 -- 20:27:09.060 INFO [15804]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 20:27:09.060 INFO [15804]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:27:09.072 INFO [15804]: COREGRADE is stopping... -- 20:27:09.072 DEBUG [15804]: Closing database connection -- 20:27:09.072 SQL [15804]: pgsql_close() -- 20:27:24.840 INFO [16022]: COREGRADE is starting... -- 20:27:24.840 INFO [16022]: Version from config: 1.0 -- 20:27:24.840 DEBUG [16022]: Connecting to database... -- 20:27:24.840 DEBUG [16022]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:24.840 SQL [16022]: pgsql_db_connect() -- 20:27:24.846 INFO [15805]: COREGRADE is starting... -- 20:27:24.846 INFO [15805]: Version from config: 1.0 -- 20:27:24.846 DEBUG [15805]: Connecting to database... -- 20:27:24.846 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:24.846 SQL [15805]: pgsql_db_connect() -- 20:27:24.845 DEBUG [16022]: Database connection successful -- 20:27:24.845 INFO [16022]: _SERVER found -- 20:27:24.845 INFO [16022]: REMOTE_ADDR = 192.168.1.13 -- 20:27:24.845 INFO [16022]: SERVER_NAME = oameye.works.coregrade.com -- 20:27:24.845 INFO [16022]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=09s363q3lqpqbraa9js3mp1qrnr8fn34; _gat_gtag_UA_54829827_2=1 -- 20:27:24.845 INFO [16022]: QUERY_STRING = /auth -- 20:27:24.845 INFO [16022]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:27:24.876 INFO [16022]: COREGRADE is stopping... -- 20:27:24.877 DEBUG [16022]: Closing database connection -- 20:27:24.877 SQL [16022]: pgsql_close() -- 20:27:24.850 DEBUG [15805]: Database connection successful -- 20:27:24.850 INFO [15805]: _SERVER found -- 20:27:24.850 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 20:27:24.850 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 20:27:24.850 INFO [15805]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=09s363q3lqpqbraa9js3mp1qrnr8fn34; _gat_gtag_UA_54829827_2=1 -- 20:27:24.850 INFO [15805]: QUERY_STRING = /welcome/viewLogin -- 20:27:24.850 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:27:24.881 INFO [15805]: COREGRADE is stopping... -- 20:27:24.882 DEBUG [15805]: Closing database connection -- 20:27:24.882 SQL [15805]: pgsql_close() -- 20:27:24.918 INFO [15805]: COREGRADE is starting... -- 20:27:24.918 INFO [15805]: Version from config: 1.0 -- 20:27:24.918 DEBUG [15805]: Connecting to database... -- 20:27:24.918 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:24.918 SQL [15805]: pgsql_db_connect() -- 20:27:24.922 DEBUG [15805]: Database connection successful -- 20:27:24.922 INFO [15805]: _SERVER found -- 20:27:24.922 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 20:27:24.922 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 20:27:24.922 INFO [15805]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=09s363q3lqpqbraa9js3mp1qrnr8fn34; _gat_gtag_UA_54829827_2=1 -- 20:27:24.922 INFO [15805]: QUERY_STRING = /auth/index -- 20:27:24.922 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:27:24.953 INFO [15805]: COREGRADE is stopping... -- 20:27:24.953 DEBUG [15805]: Closing database connection -- 20:27:24.953 SQL [15805]: pgsql_close() -- 20:27:25.111 INFO [15805]: COREGRADE is starting... -- 20:27:25.112 INFO [15805]: Version from config: 1.0 -- 20:27:25.112 DEBUG [15805]: Connecting to database... -- 20:27:25.112 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:25.112 SQL [15805]: pgsql_db_connect() -- 20:27:25.116 DEBUG [15805]: Database connection successful -- 20:27:25.116 INFO [15805]: _SERVER found -- 20:27:25.116 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 20:27:25.116 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 20:27:25.116 INFO [15805]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=09s363q3lqpqbraa9js3mp1qrnr8fn34; _gat_gtag_UA_54829827_2=1 -- 20:27:25.116 INFO [15805]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 20:27:25.116 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:27:25.127 INFO [15805]: COREGRADE is stopping... -- 20:27:25.127 DEBUG [15805]: Closing database connection -- 20:27:25.127 SQL [15805]: pgsql_close() -- 20:27:25.213 INFO [15805]: COREGRADE is starting... -- 20:27:25.213 INFO [15805]: Version from config: 1.0 -- 20:27:25.213 DEBUG [15805]: Connecting to database... -- 20:27:25.213 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:25.213 SQL [15805]: pgsql_db_connect() -- 20:27:25.217 DEBUG [15805]: Database connection successful -- 20:27:25.217 INFO [15805]: _SERVER found -- 20:27:25.217 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 20:27:25.217 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 20:27:25.217 INFO [15805]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=09s363q3lqpqbraa9js3mp1qrnr8fn34; _gat_gtag_UA_54829827_2=1 -- 20:27:25.217 INFO [15805]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 20:27:25.217 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:27:25.228 INFO [15805]: COREGRADE is stopping... -- 20:27:25.228 DEBUG [15805]: Closing database connection -- 20:27:25.228 SQL [15805]: pgsql_close() -- 20:27:25.238 INFO [15805]: COREGRADE is starting... -- 20:27:25.239 INFO [15805]: Version from config: 1.0 -- 20:27:25.239 DEBUG [15805]: Connecting to database... -- 20:27:25.239 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:25.239 SQL [15805]: pgsql_db_connect() -- 20:27:25.243 DEBUG [15805]: Database connection successful -- 20:27:25.243 INFO [15805]: _SERVER found -- 20:27:25.243 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 20:27:25.243 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 20:27:25.243 INFO [15805]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=09s363q3lqpqbraa9js3mp1qrnr8fn34; _gat_gtag_UA_54829827_2=1 -- 20:27:25.243 INFO [15805]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:27:25.243 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:27:25.254 INFO [15805]: COREGRADE is stopping... -- 20:27:25.254 DEBUG [15805]: Closing database connection -- 20:27:25.254 SQL [15805]: pgsql_close() -- 20:27:26.964 INFO [15805]: COREGRADE is starting... -- 20:27:26.964 INFO [15805]: Version from config: 1.0 -- 20:27:26.964 DEBUG [15805]: Connecting to database... -- 20:27:26.964 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:26.964 SQL [15805]: pgsql_db_connect() -- 20:27:26.998 INFO [15805]: COREGRADE is starting... -- 20:27:26.999 INFO [15805]: Version from config: 1.0 -- 20:27:26.999 DEBUG [15805]: Connecting to database... -- 20:27:26.999 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:26.999 SQL [15805]: pgsql_db_connect() -- 20:27:27.003 DEBUG [15805]: Database connection successful -- 20:27:27.003 INFO [15805]: _SERVER found -- 20:27:27.003 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 20:27:27.003 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 20:27:27.003 INFO [15805]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=09s363q3lqpqbraa9js3mp1qrnr8fn34; _gat_gtag_UA_54829827_2=1 -- 20:27:27.003 INFO [15805]: QUERY_STRING = -- 20:27:27.003 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:27:27.003 INFO [15805]: SystemStatus()09-09-********~************ -- 20:27:27.003 INFO [15805]: long coregrade_api_main(CVars in, CVars &out) -- 20:27:27.003 INFO [15805]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 20:27:27.003 INFO [15805]: account calls -- 20:27:27.003 INFO [15805]: account_calls() -- 20:27:27.003 INFO [15805]: LoginCoreGradeAccount() -- 20:27:27.003 FLOG_MAX [15805]: REQ_STRING(username) -- 20:27:27.003 FLOG_MAX [15805]: REQ_STRING(password) -- 20:27:27.003 FLOG_MAX [15805]: REQ_STRING(sessionid) -- 20:27:27.003 FLOG_MAX [15805]: long load_db_record( CVars &rec, const char * query, ... ) -- 20:27:27.003 SQL [15805]: pgsql_query() -- 20:27:27.003 SQL [15805]: About to run query: -- 20:27:27.003 SQL [15805]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 20:27:27.006 SQL [15805]: Found rows: 1 -- 20:27:27.006 FLOG_MAX [15805]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 20:27:27.006 INFO [15805]: long SessionCheck(long uid, const char *sessionid, int create ) -- 20:27:27.006 SQL [15805]: pgsql_exec() -- 20:27:27.006 SQL [15805]: About to run query: -- 20:27:27.006 SQL [15805]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 20:27:27.008 SQL [15805]: PQcmdTuples: 1 -- 20:27:27.008 SQL [15805]: Affected rows: 1 -- 20:27:27.008 SQL [15805]: pgsql_exec() -- 20:27:27.008 SQL [15805]: About to run query: -- 20:27:27.008 SQL [15805]: DELETE FROM members_session WHERE member_id=5 -- 20:27:27.008 SQL [15805]: PQcmdTuples: 0 -- 20:27:27.008 SQL [15805]: Affected rows: 0 -- 20:27:27.008 SQL [15805]: pgsql_query() -- 20:27:27.008 SQL [15805]: About to run query: -- 20:27:27.008 SQL [15805]: SELECT * FROM members_session WHERE member_id=5 AND session<>'6AD2577613A93528ACF3C4C5602B2FB0' -- 20:27:27.009 SQL [15805]: Found rows: 0 -- 20:27:27.009 SQL [15805]: Found rows: 0 -- 20:27:27.009 FLOG_MAX [15805]: long load_db_record( CVars &rec, const char * query, ... ) -- 20:27:27.009 SQL [15805]: pgsql_query() -- 20:27:27.009 SQL [15805]: About to run query: -- 20:27:27.009 SQL [15805]: SELECT * FROM members_session WHERE member_id=5 AND session='6AD2577613A93528ACF3C4C5602B2FB0' -- 20:27:27.009 SQL [15805]: Found rows: 0 -- 20:27:27.009 SQL [15805]: Found rows: 0 -- 20:27:27.009 FLOG_MAX [15805]: insert_db_record() -- 20:27:27.009 SQL [15805]: pgsql_exec() -- 20:27:27.009 SQL [15805]: About to run query: -- 20:27:27.009 SQL [15805]: INSERT INTO members_session (member_id,session) VALUES ('5','6AD2577613A93528ACF3C4C5602B2FB0') -- 20:27:27.011 SQL [15805]: PQcmdTuples: 1 -- 20:27:27.011 SQL [15805]: Affected rows: 1 -- 20:27:27.011 FLOG_MAX [15805]: SELECT currval('members_session_id_seq') -- 20:27:27.011 SQL [15805]: pgsql_query() -- 20:27:27.011 SQL [15805]: About to run query: -- 20:27:27.011 SQL [15805]: SELECT currval('members_session_id_seq') -- 20:27:27.011 SQL [15805]: Found rows: 1 -- 20:27:27.011 INFO [15805]: CreateDefaultPage() -- 20:27:27.011 FLOG_MAX [15805]: long load_db_record( CVars &rec, const char * query, ... ) -- 20:27:27.011 SQL [15805]: pgsql_query() -- 20:27:27.011 SQL [15805]: About to run query: -- 20:27:27.011 SQL [15805]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 20:27:27.012 SQL [15805]: Found rows: 1 -- 20:27:27.012 FLOG_MAX [15805]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 20:27:27.012 SQL [15805]: pgsql_query() -- 20:27:27.012 SQL [15805]: About to run query: -- 20:27:27.012 SQL [15805]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 20:27:27.012 SQL [15805]: Found rows: 1 -- 20:27:27.012 INFO [15805]: /CreateDefaultPage() -- 20:27:27.012 INFO [15805]: /LoginCoreGradeAccount() -- 20:27:27.012 INFO [15805]: RET: added=2020-02-05 06:47:23.982154 -- 20:27:27.012 INFO [15805]: RET: email=ameye+11@chiefsoft.com -- 20:27:27.012 INFO [15805]: RET: firstname=Olu -- 20:27:27.012 INFO [15805]: RET: id=5 -- 20:27:27.012 INFO [15805]: RET: last_login= -- 20:27:27.012 INFO [15805]: RET: lastname=Amey -- 20:27:27.012 INFO [15805]: RET: loc=192.168.1.13 -- 20:27:27.012 INFO [15805]: RET: member_id=5 -- 20:27:27.012 INFO [15805]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 20:27:27.012 INFO [15805]: RET: phone= -- 20:27:27.012 INFO [15805]: RET: pid= -- 20:27:27.012 INFO [15805]: RET: result=YES I GET TO BACK END -- 20:27:27.012 INFO [15805]: RET: sessionid=6AD2577613A93528ACF3C4C5602B2FB0 -- 20:27:27.012 INFO [15805]: RET: status=1 -- 20:27:27.012 INFO [15805]: RET: stauts=OK -- 20:27:27.012 INFO [15805]: RET: username=ameye+11@chiefsoft.com -- 20:27:27.012 INFO [15805]: RET: verified= -- 20:27:27.014 INFO [15805]: COREGRADE is stopping... -- 20:27:27.014 DEBUG [15805]: Closing database connection -- 20:27:27.014 SQL [15805]: pgsql_close() -- 20:27:26.968 DEBUG [15805]: Database connection successful -- 20:27:26.968 INFO [15805]: _SERVER found -- 20:27:26.968 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 20:27:26.968 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 20:27:26.968 INFO [15805]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=09s363q3lqpqbraa9js3mp1qrnr8fn34; _gat_gtag_UA_54829827_2=1 -- 20:27:26.968 INFO [15805]: QUERY_STRING = /auth -- 20:27:26.968 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:27:27.014 INFO [15805]: COREGRADE is stopping... -- 20:27:27.014 DEBUG [15805]: Closing database connection -- 20:27:27.014 SQL [15805]: pgsql_close() -- 20:27:27.030 INFO [15805]: COREGRADE is starting... -- 20:27:27.030 INFO [15805]: Version from config: 1.0 -- 20:27:27.030 DEBUG [15805]: Connecting to database... -- 20:27:27.030 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:27.030 SQL [15805]: pgsql_db_connect() -- 20:27:27.034 DEBUG [15805]: Database connection successful -- 20:27:27.034 INFO [15805]: _SERVER found -- 20:27:27.034 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 20:27:27.034 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 20:27:27.034 INFO [15805]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=09s363q3lqpqbraa9js3mp1qrnr8fn34; _gat_gtag_UA_54829827_2=1 -- 20:27:27.034 INFO [15805]: QUERY_STRING = /member/index -- 20:27:27.034 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:27:27.070 INFO [15805]: COREGRADE is stopping... -- 20:27:27.070 DEBUG [15805]: Closing database connection -- 20:27:27.070 SQL [15805]: pgsql_close() -- 20:27:27.473 INFO [15805]: COREGRADE is starting... -- 20:27:27.473 INFO [15805]: Version from config: 1.0 -- 20:27:27.473 DEBUG [15805]: Connecting to database... -- 20:27:27.473 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:27.473 SQL [15805]: pgsql_db_connect() -- 20:27:27.488 INFO [16022]: COREGRADE is starting... -- 20:27:27.488 INFO [16022]: Version from config: 1.0 -- 20:27:27.488 DEBUG [16022]: Connecting to database... -- 20:27:27.488 DEBUG [16022]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:27.488 SQL [16022]: pgsql_db_connect() -- 20:27:27.477 DEBUG [15805]: Database connection successful -- 20:27:27.477 INFO [15805]: _SERVER found -- 20:27:27.477 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 20:27:27.477 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 20:27:27.477 INFO [15805]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=09s363q3lqpqbraa9js3mp1qrnr8fn34; _gat_gtag_UA_54829827_2=1 -- 20:27:27.477 INFO [15805]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:27:27.477 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:27:27.489 INFO [15805]: COREGRADE is stopping... -- 20:27:27.489 DEBUG [15805]: Closing database connection -- 20:27:27.489 SQL [15805]: pgsql_close() -- 20:27:27.502 INFO [15805]: COREGRADE is starting... -- 20:27:27.502 INFO [15805]: Version from config: 1.0 -- 20:27:27.502 DEBUG [15805]: Connecting to database... -- 20:27:27.502 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:27.502 SQL [15805]: pgsql_db_connect() -- 20:27:27.492 DEBUG [16022]: Database connection successful -- 20:27:27.492 INFO [16022]: _SERVER found -- 20:27:27.492 INFO [16022]: REMOTE_ADDR = 192.168.1.13 -- 20:27:27.492 INFO [16022]: SERVER_NAME = oameye.works.coregrade.com -- 20:27:27.492 INFO [16022]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=09s363q3lqpqbraa9js3mp1qrnr8fn34; _gat_gtag_UA_54829827_2=1 -- 20:27:27.492 INFO [16022]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 20:27:27.492 INFO [16022]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:27:27.503 INFO [16022]: COREGRADE is stopping... -- 20:27:27.503 DEBUG [16022]: Closing database connection -- 20:27:27.503 SQL [16022]: pgsql_close() -- 20:27:27.506 DEBUG [15805]: Database connection successful -- 20:27:27.506 INFO [15805]: _SERVER found -- 20:27:27.506 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 20:27:27.506 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 20:27:27.506 INFO [15805]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=09s363q3lqpqbraa9js3mp1qrnr8fn34; _gat_gtag_UA_54829827_2=1 -- 20:27:27.506 INFO [15805]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 20:27:27.506 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:27:27.517 INFO [15805]: COREGRADE is stopping... -- 20:27:27.517 DEBUG [15805]: Closing database connection -- 20:27:27.517 SQL [15805]: pgsql_close() -- 20:27:27.682 INFO [15805]: COREGRADE is starting... -- 20:27:27.682 INFO [15805]: Version from config: 1.0 -- 20:27:27.682 DEBUG [15805]: Connecting to database... -- 20:27:27.682 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:27.682 SQL [15805]: pgsql_db_connect() -- 20:27:27.686 DEBUG [15805]: Database connection successful -- 20:27:27.686 INFO [15805]: _SERVER found -- 20:27:27.686 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 20:27:27.686 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 20:27:27.686 INFO [15805]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=09s363q3lqpqbraa9js3mp1qrnr8fn34; _gat_gtag_UA_54829827_2=1 -- 20:27:27.686 INFO [15805]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:27:27.686 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:27:27.698 INFO [15805]: COREGRADE is stopping... -- 20:27:27.698 DEBUG [15805]: Closing database connection -- 20:27:27.698 SQL [15805]: pgsql_close() -- 20:28:22.801 INFO [15984]: COREGRADE is starting... -- 20:28:22.802 INFO [15984]: Version from config: 1.0 -- 20:28:22.802 DEBUG [15984]: Connecting to database... -- 20:28:22.802 DEBUG [15984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:28:22.802 SQL [15984]: pgsql_db_connect() -- 20:28:22.806 DEBUG [15984]: Database connection successful -- 20:28:22.806 INFO [15984]: _SERVER found -- 20:28:22.806 INFO [15984]: REMOTE_ADDR = 192.168.1.13 -- 20:28:22.806 INFO [15984]: SERVER_NAME = oameye.works.coregrade.com -- 20:28:22.806 INFO [15984]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=09s363q3lqpqbraa9js3mp1qrnr8fn34 -- 20:28:22.806 INFO [15984]: QUERY_STRING = /auth/logout -- 20:28:22.806 INFO [15984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:28:22.839 INFO [15984]: COREGRADE is stopping... -- 20:28:22.839 DEBUG [15984]: Closing database connection -- 20:28:22.839 SQL [15984]: pgsql_close() -- 20:28:23.175 INFO [15984]: COREGRADE is starting... -- 20:28:23.175 INFO [15984]: Version from config: 1.0 -- 20:28:23.175 DEBUG [15984]: Connecting to database... -- 20:28:23.175 DEBUG [15984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:28:23.175 SQL [15984]: pgsql_db_connect() -- 20:28:23.182 INFO [15840]: COREGRADE is starting... -- 20:28:23.183 INFO [15840]: Version from config: 1.0 -- 20:28:23.183 DEBUG [15840]: Connecting to database... -- 20:28:23.183 DEBUG [15840]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:28:23.183 SQL [15840]: pgsql_db_connect() -- 20:28:23.179 DEBUG [15984]: Database connection successful -- 20:28:23.179 INFO [15984]: _SERVER found -- 20:28:23.179 INFO [15984]: REMOTE_ADDR = 192.168.1.13 -- 20:28:23.179 INFO [15984]: SERVER_NAME = oameye.works.coregrade.com -- 20:28:23.179 INFO [15984]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=09s363q3lqpqbraa9js3mp1qrnr8fn34 -- 20:28:23.179 INFO [15984]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:28:23.179 INFO [15984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:28:23.191 INFO [15984]: COREGRADE is stopping... -- 20:28:23.191 DEBUG [15984]: Closing database connection -- 20:28:23.191 SQL [15984]: pgsql_close() -- 20:28:23.186 DEBUG [15840]: Database connection successful -- 20:28:23.186 INFO [15840]: _SERVER found -- 20:28:23.186 INFO [15840]: REMOTE_ADDR = 192.168.1.13 -- 20:28:23.186 INFO [15840]: SERVER_NAME = oameye.works.coregrade.com -- 20:28:23.186 INFO [15840]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=09s363q3lqpqbraa9js3mp1qrnr8fn34 -- 20:28:23.186 INFO [15840]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 20:28:23.186 INFO [15840]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:28:23.198 INFO [15840]: COREGRADE is stopping... -- 20:28:23.198 DEBUG [15840]: Closing database connection -- 20:28:23.198 SQL [15840]: pgsql_close() -- 20:28:27.799 INFO [15840]: COREGRADE is starting... -- 20:28:27.799 INFO [15840]: Version from config: 1.0 -- 20:28:27.799 DEBUG [15840]: Connecting to database... -- 20:28:27.799 DEBUG [15840]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:28:27.799 SQL [15840]: pgsql_db_connect() -- 20:28:27.803 DEBUG [15840]: Database connection successful -- 20:28:27.803 INFO [15840]: _SERVER found -- 20:28:27.803 INFO [15840]: REMOTE_ADDR = 192.168.1.13 -- 20:28:27.803 INFO [15840]: SERVER_NAME = oameye.works.coregrade.com -- 20:28:27.803 INFO [15840]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=09s363q3lqpqbraa9js3mp1qrnr8fn34 -- 20:28:27.803 INFO [15840]: QUERY_STRING = -- 20:28:27.803 INFO [15840]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:28:27.835 INFO [15840]: COREGRADE is stopping... -- 20:28:27.835 DEBUG [15840]: Closing database connection -- 20:28:27.835 SQL [15840]: pgsql_close() -- 20:28:28.041 INFO [15840]: COREGRADE is starting... -- 20:28:28.041 INFO [15840]: Version from config: 1.0 -- 20:28:28.041 DEBUG [15840]: Connecting to database... -- 20:28:28.041 DEBUG [15840]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:28:28.041 SQL [15840]: pgsql_db_connect() -- 20:28:28.047 INFO [15984]: COREGRADE is starting... -- 20:28:28.048 INFO [15984]: Version from config: 1.0 -- 20:28:28.048 DEBUG [15984]: Connecting to database... -- 20:28:28.048 DEBUG [15984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:28:28.048 SQL [15984]: pgsql_db_connect() -- 20:28:28.045 DEBUG [15840]: Database connection successful -- 20:28:28.045 INFO [15840]: _SERVER found -- 20:28:28.045 INFO [15840]: REMOTE_ADDR = 192.168.1.13 -- 20:28:28.045 INFO [15840]: SERVER_NAME = oameye.works.coregrade.com -- 20:28:28.045 INFO [15840]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=09s363q3lqpqbraa9js3mp1qrnr8fn34 -- 20:28:28.045 INFO [15840]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 20:28:28.045 INFO [15840]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:28:28.056 INFO [15840]: COREGRADE is stopping... -- 20:28:28.056 DEBUG [15840]: Closing database connection -- 20:28:28.056 SQL [15840]: pgsql_close() -- 20:28:28.052 DEBUG [15984]: Database connection successful -- 20:28:28.052 INFO [15984]: _SERVER found -- 20:28:28.052 INFO [15984]: REMOTE_ADDR = 192.168.1.13 -- 20:28:28.052 INFO [15984]: SERVER_NAME = oameye.works.coregrade.com -- 20:28:28.052 INFO [15984]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=09s363q3lqpqbraa9js3mp1qrnr8fn34 -- 20:28:28.052 INFO [15984]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:28:28.052 INFO [15984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:28:28.063 INFO [15984]: COREGRADE is stopping... -- 20:28:28.063 DEBUG [15984]: Closing database connection -- 20:28:28.063 SQL [15984]: pgsql_close() -- 20:28:28.187 INFO [15984]: COREGRADE is starting... -- 20:28:28.188 INFO [15984]: Version from config: 1.0 -- 20:28:28.188 DEBUG [15984]: Connecting to database... -- 20:28:28.188 DEBUG [15984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:28:28.188 SQL [15984]: pgsql_db_connect() -- 20:28:28.192 DEBUG [15984]: Database connection successful -- 20:28:28.192 INFO [15984]: _SERVER found -- 20:28:28.192 INFO [15984]: REMOTE_ADDR = 192.168.1.13 -- 20:28:28.192 INFO [15984]: SERVER_NAME = oameye.works.coregrade.com -- 20:28:28.192 INFO [15984]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=09s363q3lqpqbraa9js3mp1qrnr8fn34 -- 20:28:28.192 INFO [15984]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 20:28:28.192 INFO [15984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:28:28.203 INFO [15984]: COREGRADE is stopping... -- 20:28:28.203 DEBUG [15984]: Closing database connection -- 20:28:28.203 SQL [15984]: pgsql_close() -- 20:30:16.560 INFO [15803]: COREGRADE is starting... -- 20:30:16.560 INFO [15803]: Version from config: 1.0 -- 20:30:16.560 DEBUG [15803]: Connecting to database... -- 20:30:16.560 DEBUG [15803]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:30:16.560 SQL [15803]: pgsql_db_connect() -- 20:30:16.565 DEBUG [15803]: Database connection successful -- 20:30:16.565 INFO [15803]: _SERVER found -- 20:30:16.565 INFO [15803]: REMOTE_ADDR = 192.168.1.13 -- 20:30:16.565 INFO [15803]: SERVER_NAME = oameye.works.coregrade.com -- 20:30:16.565 INFO [15803]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=09s363q3lqpqbraa9js3mp1qrnr8fn34 -- 20:30:16.565 INFO [15803]: QUERY_STRING = -- 20:30:16.565 INFO [15803]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:30:16.603 INFO [15803]: COREGRADE is stopping... -- 20:30:16.603 DEBUG [15803]: Closing database connection -- 20:30:16.603 SQL [15803]: pgsql_close() -- 20:30:16.917 INFO [15803]: COREGRADE is starting... -- 20:30:16.917 INFO [15803]: Version from config: 1.0 -- 20:30:16.917 DEBUG [15803]: Connecting to database... -- 20:30:16.917 DEBUG [15803]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:30:16.917 SQL [15803]: pgsql_db_connect() -- 20:30:16.921 DEBUG [15803]: Database connection successful -- 20:30:16.921 INFO [15803]: _SERVER found -- 20:30:16.921 INFO [15803]: REMOTE_ADDR = 192.168.1.13 -- 20:30:16.921 INFO [15803]: SERVER_NAME = oameye.works.coregrade.com -- 20:30:16.921 INFO [15803]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=09s363q3lqpqbraa9js3mp1qrnr8fn34 -- 20:30:16.921 INFO [15803]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 20:30:16.921 INFO [15803]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:30:16.933 INFO [15803]: COREGRADE is stopping... -- 20:30:16.933 DEBUG [15803]: Closing database connection -- 20:30:16.933 SQL [15803]: pgsql_close() -- 20:30:16.934 INFO [15839]: COREGRADE is starting... -- 20:30:16.934 INFO [15839]: Version from config: 1.0 -- 20:30:16.934 DEBUG [15839]: Connecting to database... -- 20:30:16.934 DEBUG [15839]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:30:16.934 SQL [15839]: pgsql_db_connect() -- 20:30:16.938 DEBUG [15839]: Database connection successful -- 20:30:16.938 INFO [15839]: _SERVER found -- 20:30:16.938 INFO [15839]: REMOTE_ADDR = 192.168.1.13 -- 20:30:16.938 INFO [15839]: SERVER_NAME = oameye.works.coregrade.com -- 20:30:16.938 INFO [15839]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=09s363q3lqpqbraa9js3mp1qrnr8fn34 -- 20:30:16.938 INFO [15839]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:30:16.938 INFO [15839]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:30:16.950 INFO [15839]: COREGRADE is stopping... -- 20:30:16.950 DEBUG [15839]: Closing database connection -- 20:30:16.950 SQL [15839]: pgsql_close() -- 20:30:17.011 INFO [15839]: COREGRADE is starting... -- 20:30:17.011 INFO [15839]: Version from config: 1.0 -- 20:30:17.011 DEBUG [15839]: Connecting to database... -- 20:30:17.011 DEBUG [15839]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:30:17.011 SQL [15839]: pgsql_db_connect() -- 20:30:17.015 DEBUG [15839]: Database connection successful -- 20:30:17.015 INFO [15839]: _SERVER found -- 20:30:17.015 INFO [15839]: REMOTE_ADDR = 192.168.1.13 -- 20:30:17.015 INFO [15839]: SERVER_NAME = oameye.works.coregrade.com -- 20:30:17.015 INFO [15839]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=09s363q3lqpqbraa9js3mp1qrnr8fn34 -- 20:30:17.015 INFO [15839]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 20:30:17.015 INFO [15839]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:30:17.026 INFO [15839]: COREGRADE is stopping... -- 20:30:17.026 DEBUG [15839]: Closing database connection -- 20:30:17.026 SQL [15839]: pgsql_close() -- 20:31:56.493 INFO [15987]: COREGRADE is starting... -- 20:31:56.494 INFO [15987]: Version from config: 1.0 -- 20:31:56.494 DEBUG [15987]: Connecting to database... -- 20:31:56.494 DEBUG [15987]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:31:56.494 SQL [15987]: pgsql_db_connect() -- 20:31:56.498 DEBUG [15987]: Database connection successful -- 20:31:56.498 INFO [15987]: _SERVER found -- 20:31:56.498 INFO [15987]: REMOTE_ADDR = 192.168.1.13 -- 20:31:56.498 INFO [15987]: SERVER_NAME = oameye.works.coregrade.com -- 20:31:56.498 INFO [15987]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=09s363q3lqpqbraa9js3mp1qrnr8fn34 -- 20:31:56.498 INFO [15987]: QUERY_STRING = -- 20:31:56.498 INFO [15987]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:31:56.532 INFO [15987]: COREGRADE is stopping... -- 20:31:56.532 DEBUG [15987]: Closing database connection -- 20:31:56.532 SQL [15987]: pgsql_close() -- 20:31:56.951 INFO [15986]: COREGRADE is starting... -- 20:31:56.951 INFO [15986]: Version from config: 1.0 -- 20:31:56.951 DEBUG [15986]: Connecting to database... -- 20:31:56.951 DEBUG [15986]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:31:56.951 SQL [15986]: pgsql_db_connect() -- 20:31:56.955 DEBUG [15986]: Database connection successful -- 20:31:56.955 INFO [15986]: _SERVER found -- 20:31:56.955 INFO [15986]: REMOTE_ADDR = 192.168.1.13 -- 20:31:56.955 INFO [15986]: SERVER_NAME = oameye.works.coregrade.com -- 20:31:56.955 INFO [15986]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=09s363q3lqpqbraa9js3mp1qrnr8fn34 -- 20:31:56.955 INFO [15986]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 20:31:56.955 INFO [15986]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:31:56.967 INFO [15986]: COREGRADE is stopping... -- 20:31:56.967 DEBUG [15986]: Closing database connection -- 20:31:56.967 SQL [15986]: pgsql_close() -- 20:31:56.967 INFO [15959]: COREGRADE is starting... -- 20:31:56.968 INFO [15959]: Version from config: 1.0 -- 20:31:56.968 DEBUG [15959]: Connecting to database... -- 20:31:56.968 DEBUG [15959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:31:56.968 SQL [15959]: pgsql_db_connect() -- 20:31:56.972 DEBUG [15959]: Database connection successful -- 20:31:56.972 INFO [15959]: _SERVER found -- 20:31:56.972 INFO [15959]: REMOTE_ADDR = 192.168.1.13 -- 20:31:56.972 INFO [15959]: SERVER_NAME = oameye.works.coregrade.com -- 20:31:56.972 INFO [15959]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=09s363q3lqpqbraa9js3mp1qrnr8fn34 -- 20:31:56.972 INFO [15959]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 20:31:56.972 INFO [15959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:31:56.983 INFO [15959]: COREGRADE is stopping... -- 20:31:56.983 DEBUG [15959]: Closing database connection -- 20:31:56.983 SQL [15959]: pgsql_close() -- 20:31:56.989 INFO [15959]: COREGRADE is starting... -- 20:31:56.989 INFO [15959]: Version from config: 1.0 -- 20:31:56.989 DEBUG [15959]: Connecting to database... -- 20:31:56.989 DEBUG [15959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:31:56.989 SQL [15959]: pgsql_db_connect() -- 20:31:56.993 DEBUG [15959]: Database connection successful -- 20:31:56.993 INFO [15959]: _SERVER found -- 20:31:56.993 INFO [15959]: REMOTE_ADDR = 192.168.1.13 -- 20:31:56.993 INFO [15959]: SERVER_NAME = oameye.works.coregrade.com -- 20:31:56.993 INFO [15959]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=09s363q3lqpqbraa9js3mp1qrnr8fn34 -- 20:31:56.993 INFO [15959]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:31:56.993 INFO [15959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:31:57.004 INFO [15959]: COREGRADE is stopping... -- 20:31:57.004 DEBUG [15959]: Closing database connection -- 20:31:57.004 SQL [15959]: pgsql_close() -- 20:32:15.591 INFO [16022]: COREGRADE is starting... -- 20:32:15.591 INFO [16022]: Version from config: 1.0 -- 20:32:15.591 DEBUG [16022]: Connecting to database... -- 20:32:15.591 DEBUG [16022]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:32:15.591 SQL [16022]: pgsql_db_connect() -- 20:32:15.596 DEBUG [16022]: Database connection successful -- 20:32:15.596 INFO [16022]: _SERVER found -- 20:32:15.596 INFO [16022]: REMOTE_ADDR = 192.168.1.13 -- 20:32:15.596 INFO [16022]: SERVER_NAME = oameye.works.coregrade.com -- 20:32:15.596 INFO [16022]: HTTP_COOKIE = _ga=GA1.2.684836352.1578775335 -- 20:32:15.596 INFO [16022]: QUERY_STRING = -- 20:32:15.596 INFO [16022]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:32:15.628 INFO [16022]: COREGRADE is stopping... -- 20:32:15.628 DEBUG [16022]: Closing database connection -- 20:32:15.628 SQL [16022]: pgsql_close() -- 20:32:16.073 INFO [15803]: COREGRADE is starting... -- 20:32:16.073 INFO [15803]: Version from config: 1.0 -- 20:32:16.073 DEBUG [15803]: Connecting to database... -- 20:32:16.073 DEBUG [15803]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:32:16.073 SQL [15803]: pgsql_db_connect() -- 20:32:16.077 DEBUG [15803]: Database connection successful -- 20:32:16.077 INFO [15803]: _SERVER found -- 20:32:16.077 INFO [15803]: REMOTE_ADDR = 192.168.1.13 -- 20:32:16.077 INFO [15803]: SERVER_NAME = oameye.works.coregrade.com -- 20:32:16.077 INFO [15803]: HTTP_COOKIE = _ga=GA1.2.684836352.1578775335; ci_session=ihe6v909ucn1chb9gs34sfs2r98o8d38 -- 20:32:16.077 INFO [15803]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 20:32:16.077 INFO [15803]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:32:16.089 INFO [15803]: COREGRADE is stopping... -- 20:32:16.089 DEBUG [15803]: Closing database connection -- 20:32:16.089 SQL [15803]: pgsql_close() -- 20:32:16.128 INFO [15803]: COREGRADE is starting... -- 20:32:16.128 INFO [15803]: Version from config: 1.0 -- 20:32:16.128 DEBUG [15803]: Connecting to database... -- 20:32:16.128 DEBUG [15803]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:32:16.128 SQL [15803]: pgsql_db_connect() -- 20:32:16.132 DEBUG [15803]: Database connection successful -- 20:32:16.132 INFO [15803]: _SERVER found -- 20:32:16.132 INFO [15803]: REMOTE_ADDR = 192.168.1.13 -- 20:32:16.132 INFO [15803]: SERVER_NAME = oameye.works.coregrade.com -- 20:32:16.132 INFO [15803]: HTTP_COOKIE = _ga=GA1.2.684836352.1578775335; ci_session=ihe6v909ucn1chb9gs34sfs2r98o8d38 -- 20:32:16.132 INFO [15803]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:32:16.132 INFO [15803]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:32:16.143 INFO [15803]: COREGRADE is stopping... -- 20:32:16.143 DEBUG [15803]: Closing database connection -- 20:32:16.143 SQL [15803]: pgsql_close() -- 20:32:40.771 INFO [15839]: COREGRADE is starting... -- 20:32:40.771 INFO [15839]: Version from config: 1.0 -- 20:32:40.771 DEBUG [15839]: Connecting to database... -- 20:32:40.771 DEBUG [15839]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:32:40.771 SQL [15839]: pgsql_db_connect() -- 20:32:40.775 DEBUG [15839]: Database connection successful -- 20:32:40.775 INFO [15839]: _SERVER found -- 20:32:40.775 INFO [15839]: REMOTE_ADDR = 192.168.1.13 -- 20:32:40.775 INFO [15839]: SERVER_NAME = oameye.works.coregrade.com -- 20:32:40.775 INFO [15839]: HTTP_COOKIE = _ga=GA1.2.684836352.1578775335; ci_session=ihe6v909ucn1chb9gs34sfs2r98o8d38; _gid=GA1.2.1919505012.1581384735; _gat_gtag_UA_54829827_2=1 -- 20:32:40.775 INFO [15839]: QUERY_STRING = /auth/newuser -- 20:32:40.775 INFO [15839]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:32:40.807 INFO [15839]: COREGRADE is stopping... -- 20:32:40.807 DEBUG [15839]: Closing database connection -- 20:32:40.807 SQL [15839]: pgsql_close() -- 20:32:41.066 INFO [15986]: COREGRADE is starting... -- 20:32:41.066 INFO [15986]: Version from config: 1.0 -- 20:32:41.066 DEBUG [15986]: Connecting to database... -- 20:32:41.066 DEBUG [15986]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:32:41.066 SQL [15986]: pgsql_db_connect() -- 20:32:41.070 DEBUG [15986]: Database connection successful -- 20:32:41.070 INFO [15986]: _SERVER found -- 20:32:41.070 INFO [15986]: REMOTE_ADDR = 192.168.1.13 -- 20:32:41.070 INFO [15986]: SERVER_NAME = oameye.works.coregrade.com -- 20:32:41.070 INFO [15986]: HTTP_COOKIE = _ga=GA1.2.684836352.1578775335; ci_session=ihe6v909ucn1chb9gs34sfs2r98o8d38; _gid=GA1.2.1919505012.1581384735; _gat_gtag_UA_54829827_2=1 -- 20:32:41.070 INFO [15986]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 20:32:41.070 INFO [15986]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:32:41.081 INFO [15986]: COREGRADE is stopping... -- 20:32:41.081 DEBUG [15986]: Closing database connection -- 20:32:41.081 SQL [15986]: pgsql_close() -- 20:32:41.253 INFO [15987]: COREGRADE is starting... -- 20:32:41.254 INFO [15987]: Version from config: 1.0 -- 20:32:41.254 DEBUG [15987]: Connecting to database... -- 20:32:41.254 DEBUG [15987]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:32:41.254 SQL [15987]: pgsql_db_connect() -- 20:32:41.258 DEBUG [15987]: Database connection successful -- 20:32:41.258 INFO [15987]: _SERVER found -- 20:32:41.258 INFO [15987]: REMOTE_ADDR = 192.168.1.13 -- 20:32:41.258 INFO [15987]: SERVER_NAME = oameye.works.coregrade.com -- 20:32:41.258 INFO [15987]: HTTP_COOKIE = _ga=GA1.2.684836352.1578775335; ci_session=ihe6v909ucn1chb9gs34sfs2r98o8d38; _gid=GA1.2.1919505012.1581384735; _gat_gtag_UA_54829827_2=1 -- 20:32:41.258 INFO [15987]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 20:32:41.258 INFO [15987]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:32:41.269 INFO [15987]: COREGRADE is stopping... -- 20:32:41.269 DEBUG [15987]: Closing database connection -- 20:32:41.269 SQL [15987]: pgsql_close() -- 20:32:41.271 INFO [15986]: COREGRADE is starting... -- 20:32:41.272 INFO [15986]: Version from config: 1.0 -- 20:32:41.272 DEBUG [15986]: Connecting to database... -- 20:32:41.272 DEBUG [15986]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:32:41.272 SQL [15986]: pgsql_db_connect() -- 20:32:41.275 DEBUG [15986]: Database connection successful -- 20:32:41.275 INFO [15986]: _SERVER found -- 20:32:41.275 INFO [15986]: REMOTE_ADDR = 192.168.1.13 -- 20:32:41.275 INFO [15986]: SERVER_NAME = oameye.works.coregrade.com -- 20:32:41.275 INFO [15986]: HTTP_COOKIE = _ga=GA1.2.684836352.1578775335; ci_session=ihe6v909ucn1chb9gs34sfs2r98o8d38; _gid=GA1.2.1919505012.1581384735; _gat_gtag_UA_54829827_2=1 -- 20:32:41.275 INFO [15986]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:32:41.275 INFO [15986]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:32:41.286 INFO [15986]: COREGRADE is stopping... -- 20:32:41.286 DEBUG [15986]: Closing database connection -- 20:32:41.286 SQL [15986]: pgsql_close() -- 20:36:17.451 INFO [15984]: COREGRADE is starting... -- 20:36:17.451 INFO [15984]: Version from config: 1.0 -- 20:36:17.451 DEBUG [15984]: Connecting to database... -- 20:36:17.451 DEBUG [15984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:36:17.451 SQL [15984]: pgsql_db_connect() -- 20:36:17.456 DEBUG [15984]: Database connection successful -- 20:36:17.456 INFO [15984]: _SERVER found -- 20:36:17.456 INFO [15984]: REMOTE_ADDR = 192.168.1.13 -- 20:36:17.456 INFO [15984]: SERVER_NAME = oameye.works.coregrade.com -- 20:36:17.456 INFO [15984]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=09s363q3lqpqbraa9js3mp1qrnr8fn34 -- 20:36:17.456 INFO [15984]: QUERY_STRING = -- 20:36:17.456 INFO [15984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:36:17.491 INFO [15984]: COREGRADE is stopping... -- 20:36:17.491 DEBUG [15984]: Closing database connection -- 20:36:17.491 SQL [15984]: pgsql_close() -- 20:36:17.883 INFO [15984]: COREGRADE is starting... -- 20:36:17.883 INFO [15984]: Version from config: 1.0 -- 20:36:17.883 DEBUG [15984]: Connecting to database... -- 20:36:17.883 DEBUG [15984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:36:17.883 SQL [15984]: pgsql_db_connect() -- 20:36:17.899 INFO [15840]: COREGRADE is starting... -- 20:36:17.888 DEBUG [15984]: Database connection successful -- 20:36:17.888 INFO [15984]: _SERVER found -- 20:36:17.888 INFO [15984]: REMOTE_ADDR = 192.168.1.13 -- 20:36:17.888 INFO [15984]: SERVER_NAME = oameye.works.coregrade.com -- 20:36:17.888 INFO [15984]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=bi7hhfodlco7for2jhovfvoc62h8kuud -- 20:36:17.888 INFO [15984]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 20:36:17.888 INFO [15984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:36:17.899 INFO [15984]: COREGRADE is stopping... -- 20:36:17.899 DEBUG [15984]: Closing database connection -- 20:36:17.899 SQL [15984]: pgsql_close() -- 20:36:17.900 INFO [15840]: Version from config: 1.0 -- 20:36:17.900 DEBUG [15840]: Connecting to database... -- 20:36:17.900 DEBUG [15840]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:36:17.900 SQL [15840]: pgsql_db_connect() -- 20:36:17.904 DEBUG [15840]: Database connection successful -- 20:36:17.904 INFO [15840]: _SERVER found -- 20:36:17.904 INFO [15840]: REMOTE_ADDR = 192.168.1.13 -- 20:36:17.904 INFO [15840]: SERVER_NAME = oameye.works.coregrade.com -- 20:36:17.904 INFO [15840]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=bi7hhfodlco7for2jhovfvoc62h8kuud -- 20:36:17.904 INFO [15840]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:36:17.904 INFO [15840]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:36:17.916 INFO [15840]: COREGRADE is stopping... -- 20:36:17.916 DEBUG [15840]: Closing database connection -- 20:36:17.916 SQL [15840]: pgsql_close() -- 20:36:17.986 INFO [15840]: COREGRADE is starting... -- 20:36:17.987 INFO [15840]: Version from config: 1.0 -- 20:36:17.987 DEBUG [15840]: Connecting to database... -- 20:36:17.987 DEBUG [15840]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:36:17.987 SQL [15840]: pgsql_db_connect() -- 20:36:17.991 DEBUG [15840]: Database connection successful -- 20:36:17.991 INFO [15840]: _SERVER found -- 20:36:17.991 INFO [15840]: REMOTE_ADDR = 192.168.1.13 -- 20:36:17.991 INFO [15840]: SERVER_NAME = oameye.works.coregrade.com -- 20:36:17.991 INFO [15840]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=bi7hhfodlco7for2jhovfvoc62h8kuud -- 20:36:17.991 INFO [15840]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 20:36:17.991 INFO [15840]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:36:18.002 INFO [15840]: COREGRADE is stopping... -- 20:36:18.002 DEBUG [15840]: Closing database connection -- 20:36:18.002 SQL [15840]: pgsql_close() -- 20:36:24.748 INFO [15805]: COREGRADE is starting... -- 20:36:24.748 INFO [15805]: Version from config: 1.0 -- 20:36:24.748 DEBUG [15805]: Connecting to database... -- 20:36:24.748 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:36:24.748 SQL [15805]: pgsql_db_connect() -- 20:36:24.752 DEBUG [15805]: Database connection successful -- 20:36:24.752 INFO [15805]: _SERVER found -- 20:36:24.752 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 20:36:24.752 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 20:36:24.752 INFO [15805]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=bi7hhfodlco7for2jhovfvoc62h8kuud; _gat_gtag_UA_54829827_2=1 -- 20:36:24.752 INFO [15805]: QUERY_STRING = /auth/newuser -- 20:36:24.752 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:36:24.786 INFO [15805]: COREGRADE is stopping... -- 20:36:24.786 DEBUG [15805]: Closing database connection -- 20:36:24.786 SQL [15805]: pgsql_close() -- 20:36:24.000 INFO [15805]: COREGRADE is starting... -- 20:36:24.000 INFO [15805]: Version from config: 1.0 -- 20:36:24.000 DEBUG [15805]: Connecting to database... -- 20:36:24.000 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:36:24.000 SQL [15805]: pgsql_db_connect() -- 20:36:25.004 DEBUG [15805]: Database connection successful -- 20:36:25.004 INFO [15805]: _SERVER found -- 20:36:25.004 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 20:36:25.004 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 20:36:25.004 INFO [15805]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=bi7hhfodlco7for2jhovfvoc62h8kuud; _gat_gtag_UA_54829827_2=1 -- 20:36:25.004 INFO [15805]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 20:36:25.004 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:36:25.016 INFO [15805]: COREGRADE is stopping... -- 20:36:25.016 DEBUG [15805]: Closing database connection -- 20:36:25.016 SQL [15805]: pgsql_close() -- 20:36:25.088 INFO [15805]: COREGRADE is starting... -- 20:36:25.088 INFO [15805]: Version from config: 1.0 -- 20:36:25.088 DEBUG [15805]: Connecting to database... -- 20:36:25.088 DEBUG [15805]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:36:25.088 SQL [15805]: pgsql_db_connect() -- 20:36:25.096 INFO [15803]: COREGRADE is starting... -- 20:36:25.096 INFO [15803]: Version from config: 1.0 -- 20:36:25.096 DEBUG [15803]: Connecting to database... -- 20:36:25.096 DEBUG [15803]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:36:25.096 SQL [15803]: pgsql_db_connect() -- 20:36:25.092 DEBUG [15805]: Database connection successful -- 20:36:25.092 INFO [15805]: _SERVER found -- 20:36:25.092 INFO [15805]: REMOTE_ADDR = 192.168.1.13 -- 20:36:25.092 INFO [15805]: SERVER_NAME = oameye.works.coregrade.com -- 20:36:25.092 INFO [15805]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=bi7hhfodlco7for2jhovfvoc62h8kuud; _gat_gtag_UA_54829827_2=1 -- 20:36:25.092 INFO [15805]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 20:36:25.092 INFO [15805]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:36:25.104 INFO [15805]: COREGRADE is stopping... -- 20:36:25.104 DEBUG [15805]: Closing database connection -- 20:36:25.104 SQL [15805]: pgsql_close() -- 20:36:25.101 DEBUG [15803]: Database connection successful -- 20:36:25.101 INFO [15803]: _SERVER found -- 20:36:25.101 INFO [15803]: REMOTE_ADDR = 192.168.1.13 -- 20:36:25.101 INFO [15803]: SERVER_NAME = oameye.works.coregrade.com -- 20:36:25.101 INFO [15803]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=bi7hhfodlco7for2jhovfvoc62h8kuud; _gat_gtag_UA_54829827_2=1 -- 20:36:25.101 INFO [15803]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:36:25.101 INFO [15803]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:36:25.112 INFO [15803]: COREGRADE is stopping... -- 20:36:25.112 DEBUG [15803]: Closing database connection -- 20:36:25.112 SQL [15803]: pgsql_close() -- 20:36:28.772 INFO [15803]: COREGRADE is starting... -- 20:36:28.772 INFO [15803]: Version from config: 1.0 -- 20:36:28.773 DEBUG [15803]: Connecting to database... -- 20:36:28.773 DEBUG [15803]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:36:28.773 SQL [15803]: pgsql_db_connect() -- 20:36:28.777 DEBUG [15803]: Database connection successful -- 20:36:28.777 INFO [15803]: _SERVER found -- 20:36:28.777 INFO [15803]: REMOTE_ADDR = 192.168.1.13 -- 20:36:28.777 INFO [15803]: SERVER_NAME = oameye.works.coregrade.com -- 20:36:28.777 INFO [15803]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=bi7hhfodlco7for2jhovfvoc62h8kuud; _gat_gtag_UA_54829827_2=1 -- 20:36:28.777 INFO [15803]: QUERY_STRING = -- 20:36:28.777 INFO [15803]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:36:28.809 INFO [15803]: COREGRADE is stopping... -- 20:36:28.809 DEBUG [15803]: Closing database connection -- 20:36:28.809 SQL [15803]: pgsql_close() -- 20:36:29.050 INFO [15803]: COREGRADE is starting... -- 20:36:29.050 INFO [15803]: Version from config: 1.0 -- 20:36:29.050 DEBUG [15803]: Connecting to database... -- 20:36:29.050 DEBUG [15803]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:36:29.050 SQL [15803]: pgsql_db_connect() -- 20:36:29.055 DEBUG [15803]: Database connection successful -- 20:36:29.055 INFO [15803]: _SERVER found -- 20:36:29.055 INFO [15803]: REMOTE_ADDR = 192.168.1.13 -- 20:36:29.055 INFO [15803]: SERVER_NAME = oameye.works.coregrade.com -- 20:36:29.055 INFO [15803]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=bi7hhfodlco7for2jhovfvoc62h8kuud; _gat_gtag_UA_54829827_2=1 -- 20:36:29.055 INFO [15803]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 20:36:29.055 INFO [15803]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:36:29.066 INFO [15803]: COREGRADE is stopping... -- 20:36:29.066 DEBUG [15803]: Closing database connection -- 20:36:29.066 SQL [15803]: pgsql_close() -- 20:38:35.220 INFO [16022]: COREGRADE is starting... -- 20:38:35.220 INFO [16022]: Version from config: 1.0 -- 20:38:35.220 DEBUG [16022]: Connecting to database... -- 20:38:35.220 DEBUG [16022]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:38:35.220 SQL [16022]: pgsql_db_connect() -- 20:38:35.225 DEBUG [16022]: Database connection successful -- 20:38:35.225 INFO [16022]: _SERVER found -- 20:38:35.225 INFO [16022]: REMOTE_ADDR = 192.168.1.13 -- 20:38:35.225 INFO [16022]: SERVER_NAME = oameye.works.coregrade.com -- 20:38:35.225 INFO [16022]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=bi7hhfodlco7for2jhovfvoc62h8kuud -- 20:38:35.225 INFO [16022]: QUERY_STRING = /auth -- 20:38:35.225 INFO [16022]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:38:35.259 INFO [16022]: COREGRADE is stopping... -- 20:38:35.259 DEBUG [16022]: Closing database connection -- 20:38:35.259 SQL [16022]: pgsql_close() -- 20:38:35.610 INFO [16022]: COREGRADE is starting... -- 20:38:35.611 INFO [16022]: Version from config: 1.0 -- 20:38:35.611 DEBUG [16022]: Connecting to database... -- 20:38:35.611 DEBUG [16022]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:38:35.611 SQL [16022]: pgsql_db_connect() -- 20:38:35.615 DEBUG [16022]: Database connection successful -- 20:38:35.615 INFO [16022]: _SERVER found -- 20:38:35.615 INFO [16022]: REMOTE_ADDR = 192.168.1.13 -- 20:38:35.615 INFO [16022]: SERVER_NAME = oameye.works.coregrade.com -- 20:38:35.615 INFO [16022]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=bi7hhfodlco7for2jhovfvoc62h8kuud -- 20:38:35.615 INFO [16022]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 20:38:35.615 INFO [16022]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:38:35.626 INFO [16022]: COREGRADE is stopping... -- 20:38:35.626 DEBUG [16022]: Closing database connection -- 20:38:35.626 SQL [16022]: pgsql_close() -- 20:38:35.808 INFO [16022]: COREGRADE is starting... -- 20:38:35.809 INFO [16022]: Version from config: 1.0 -- 20:38:35.809 DEBUG [16022]: Connecting to database... -- 20:38:35.809 DEBUG [16022]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:38:35.809 SQL [16022]: pgsql_db_connect() -- 20:38:35.813 DEBUG [16022]: Database connection successful -- 20:38:35.813 INFO [16022]: _SERVER found -- 20:38:35.813 INFO [16022]: REMOTE_ADDR = 192.168.1.13 -- 20:38:35.813 INFO [16022]: SERVER_NAME = oameye.works.coregrade.com -- 20:38:35.813 INFO [16022]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=bi7hhfodlco7for2jhovfvoc62h8kuud -- 20:38:35.813 INFO [16022]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:38:35.813 INFO [16022]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:38:35.824 INFO [16022]: COREGRADE is stopping... -- 20:38:35.824 DEBUG [16022]: Closing database connection -- 20:38:35.824 SQL [16022]: pgsql_close() -- 20:38:38.742 INFO [16022]: COREGRADE is starting... -- 20:38:38.742 INFO [16022]: Version from config: 1.0 -- 20:38:38.742 DEBUG [16022]: Connecting to database... -- 20:38:38.742 DEBUG [16022]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:38:38.742 SQL [16022]: pgsql_db_connect() -- 20:38:38.747 DEBUG [16022]: Database connection successful -- 20:38:38.747 INFO [16022]: _SERVER found -- 20:38:38.747 INFO [16022]: REMOTE_ADDR = 192.168.1.13 -- 20:38:38.747 INFO [16022]: SERVER_NAME = oameye.works.coregrade.com -- 20:38:38.747 INFO [16022]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=bi7hhfodlco7for2jhovfvoc62h8kuud -- 20:38:38.747 INFO [16022]: QUERY_STRING = -- 20:38:38.747 INFO [16022]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:38:38.779 INFO [16022]: COREGRADE is stopping... -- 20:38:38.779 DEBUG [16022]: Closing database connection -- 20:38:38.779 SQL [16022]: pgsql_close() -- 20:38:39.018 INFO [15839]: COREGRADE is starting... -- 20:38:39.018 INFO [15839]: Version from config: 1.0 -- 20:38:39.018 DEBUG [15839]: Connecting to database... -- 20:38:39.018 DEBUG [15839]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:38:39.018 SQL [15839]: pgsql_db_connect() -- 20:38:39.019 INFO [16022]: COREGRADE is starting... -- 20:38:39.019 INFO [16022]: Version from config: 1.0 -- 20:38:39.019 DEBUG [16022]: Connecting to database... -- 20:38:39.019 DEBUG [16022]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:38:39.019 SQL [16022]: pgsql_db_connect() -- 20:38:39.023 DEBUG [16022]: Database connection successful -- 20:38:39.023 INFO [16022]: _SERVER found -- 20:38:39.023 INFO [16022]: REMOTE_ADDR = 192.168.1.13 -- 20:38:39.023 INFO [16022]: SERVER_NAME = oameye.works.coregrade.com -- 20:38:39.023 INFO [16022]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=bi7hhfodlco7for2jhovfvoc62h8kuud -- 20:38:39.023 INFO [16022]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:38:39.023 INFO [16022]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:38:39.034 INFO [16022]: COREGRADE is stopping... -- 20:38:39.034 DEBUG [16022]: Closing database connection -- 20:38:39.034 SQL [16022]: pgsql_close() -- 20:38:39.023 DEBUG [15839]: Database connection successful -- 20:38:39.023 INFO [15839]: _SERVER found -- 20:38:39.023 INFO [15839]: REMOTE_ADDR = 192.168.1.13 -- 20:38:39.023 INFO [15839]: SERVER_NAME = oameye.works.coregrade.com -- 20:38:39.023 INFO [15839]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=bi7hhfodlco7for2jhovfvoc62h8kuud -- 20:38:39.023 INFO [15839]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 20:38:39.023 INFO [15839]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:38:39.035 INFO [15839]: COREGRADE is stopping... -- 20:38:39.035 DEBUG [15839]: Closing database connection -- 20:38:39.035 SQL [15839]: pgsql_close() -- 20:38:39.075 INFO [15839]: COREGRADE is starting... -- 20:38:39.076 INFO [15839]: Version from config: 1.0 -- 20:38:39.076 DEBUG [15839]: Connecting to database... -- 20:38:39.076 DEBUG [15839]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:38:39.076 SQL [15839]: pgsql_db_connect() -- 20:38:39.080 DEBUG [15839]: Database connection successful -- 20:38:39.080 INFO [15839]: _SERVER found -- 20:38:39.080 INFO [15839]: REMOTE_ADDR = 192.168.1.13 -- 20:38:39.080 INFO [15839]: SERVER_NAME = oameye.works.coregrade.com -- 20:38:39.080 INFO [15839]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=bi7hhfodlco7for2jhovfvoc62h8kuud -- 20:38:39.080 INFO [15839]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 20:38:39.080 INFO [15839]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:38:39.091 INFO [15839]: COREGRADE is stopping... -- 20:38:39.091 DEBUG [15839]: Closing database connection -- 20:38:39.091 SQL [15839]: pgsql_close() -- 20:52:29.263 INFO [27559]: COREGRADE is starting... -- 20:52:29.263 INFO [27559]: Version from config: 1.0 -- 20:52:29.263 DEBUG [27559]: Connecting to database... -- 20:52:29.263 DEBUG [27559]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:52:29.263 SQL [27559]: pgsql_db_connect() -- 20:52:29.268 DEBUG [27559]: Database connection successful -- 20:52:29.268 INFO [27559]: _SERVER found -- 20:52:29.268 INFO [27559]: REMOTE_ADDR = 192.168.1.13 -- 20:52:29.268 INFO [27559]: SERVER_NAME = oameye.works.coregrade.com -- 20:52:29.268 INFO [27559]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=bi7hhfodlco7for2jhovfvoc62h8kuud -- 20:52:29.268 INFO [27559]: QUERY_STRING = -- 20:52:29.268 INFO [27559]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:52:29.315 INFO [27559]: COREGRADE is stopping... -- 20:52:29.315 DEBUG [27559]: Closing database connection -- 20:52:29.315 SQL [27559]: pgsql_close() -- 20:52:29.485 INFO [27559]: COREGRADE is starting... -- 20:52:29.485 INFO [27559]: Version from config: 1.0 -- 20:52:29.485 DEBUG [27559]: Connecting to database... -- 20:52:29.485 DEBUG [27559]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:52:29.485 SQL [27559]: pgsql_db_connect() -- 20:52:29.494 INFO [27560]: COREGRADE is starting... -- 20:52:29.494 INFO [27560]: Version from config: 1.0 -- 20:52:29.494 DEBUG [27560]: Connecting to database... -- 20:52:29.494 DEBUG [27560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:52:29.494 SQL [27560]: pgsql_db_connect() -- 20:52:29.489 DEBUG [27559]: Database connection successful -- 20:52:29.489 INFO [27559]: _SERVER found -- 20:52:29.489 INFO [27559]: REMOTE_ADDR = 192.168.1.13 -- 20:52:29.489 INFO [27559]: SERVER_NAME = oameye.works.coregrade.com -- 20:52:29.489 INFO [27559]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=avcm89tbu2j5urs9g95c3b91id1p3a22 -- 20:52:29.489 INFO [27559]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 20:52:29.489 INFO [27559]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:52:29.502 INFO [27559]: COREGRADE is stopping... -- 20:52:29.502 DEBUG [27559]: Closing database connection -- 20:52:29.502 SQL [27559]: pgsql_close() -- 20:52:29.499 DEBUG [27560]: Database connection successful -- 20:52:29.499 INFO [27560]: _SERVER found -- 20:52:29.499 INFO [27560]: REMOTE_ADDR = 192.168.1.13 -- 20:52:29.499 INFO [27560]: SERVER_NAME = oameye.works.coregrade.com -- 20:52:29.499 INFO [27560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=avcm89tbu2j5urs9g95c3b91id1p3a22 -- 20:52:29.499 INFO [27560]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:52:29.499 INFO [27560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:52:29.513 INFO [27560]: COREGRADE is stopping... -- 20:52:29.513 DEBUG [27560]: Closing database connection -- 20:52:29.513 SQL [27560]: pgsql_close() -- 20:52:29.560 INFO [27560]: COREGRADE is starting... -- 20:52:29.560 INFO [27560]: Version from config: 1.0 -- 20:52:29.560 DEBUG [27560]: Connecting to database... -- 20:52:29.560 DEBUG [27560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:52:29.560 SQL [27560]: pgsql_db_connect() -- 20:52:29.564 DEBUG [27560]: Database connection successful -- 20:52:29.564 INFO [27560]: _SERVER found -- 20:52:29.564 INFO [27560]: REMOTE_ADDR = 192.168.1.13 -- 20:52:29.564 INFO [27560]: SERVER_NAME = oameye.works.coregrade.com -- 20:52:29.564 INFO [27560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=avcm89tbu2j5urs9g95c3b91id1p3a22 -- 20:52:29.564 INFO [27560]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 20:52:29.564 INFO [27560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:52:29.577 INFO [27560]: COREGRADE is stopping... -- 20:52:29.577 DEBUG [27560]: Closing database connection -- 20:52:29.577 SQL [27560]: pgsql_close() -- 20:52:43.546 INFO [27561]: COREGRADE is starting... -- 20:52:43.547 INFO [27561]: Version from config: 1.0 -- 20:52:43.547 DEBUG [27561]: Connecting to database... -- 20:52:43.547 DEBUG [27561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:52:43.547 SQL [27561]: pgsql_db_connect() -- 20:52:43.551 DEBUG [27561]: Database connection successful -- 20:52:43.551 INFO [27561]: _SERVER found -- 20:52:43.551 INFO [27561]: REMOTE_ADDR = 192.168.1.13 -- 20:52:43.551 INFO [27561]: SERVER_NAME = oameye.works.coregrade.com -- 20:52:43.551 INFO [27561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=avcm89tbu2j5urs9g95c3b91id1p3a22; _gat_gtag_UA_54829827_2=1 -- 20:52:43.551 INFO [27561]: QUERY_STRING = /home/howitworks -- 20:52:43.551 INFO [27561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:52:43.565 INFO [27561]: COREGRADE is stopping... -- 20:52:43.565 DEBUG [27561]: Closing database connection -- 20:52:43.565 SQL [27561]: pgsql_close() -- 20:52:43.658 INFO [27561]: COREGRADE is starting... -- 20:52:43.658 INFO [27561]: Version from config: 1.0 -- 20:52:43.658 DEBUG [27561]: Connecting to database... -- 20:52:43.659 DEBUG [27561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:52:43.659 SQL [27561]: pgsql_db_connect() -- 20:52:43.662 DEBUG [27561]: Database connection successful -- 20:52:43.662 INFO [27561]: _SERVER found -- 20:52:43.662 INFO [27561]: REMOTE_ADDR = 192.168.1.13 -- 20:52:43.662 INFO [27561]: SERVER_NAME = oameye.works.coregrade.com -- 20:52:43.662 INFO [27561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=avcm89tbu2j5urs9g95c3b91id1p3a22; _gat_gtag_UA_54829827_2=1 -- 20:52:43.662 INFO [27561]: QUERY_STRING = /favicon.ico -- 20:52:43.662 INFO [27561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:52:43.674 INFO [27561]: COREGRADE is stopping... -- 20:52:43.674 DEBUG [27561]: Closing database connection -- 20:52:43.674 SQL [27561]: pgsql_close() -- 20:52:45.634 INFO [27561]: COREGRADE is starting... -- 20:52:45.635 INFO [27561]: Version from config: 1.0 -- 20:52:45.635 DEBUG [27561]: Connecting to database... -- 20:52:45.635 DEBUG [27561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:52:45.635 SQL [27561]: pgsql_db_connect() -- 20:52:45.639 DEBUG [27561]: Database connection successful -- 20:52:45.639 INFO [27561]: _SERVER found -- 20:52:45.639 INFO [27561]: REMOTE_ADDR = 192.168.1.13 -- 20:52:45.639 INFO [27561]: SERVER_NAME = oameye.works.coregrade.com -- 20:52:45.639 INFO [27561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=avcm89tbu2j5urs9g95c3b91id1p3a22; _gat_gtag_UA_54829827_2=1 -- 20:52:45.639 INFO [27561]: QUERY_STRING = -- 20:52:45.639 INFO [27561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:52:45.679 INFO [27561]: COREGRADE is stopping... -- 20:52:45.679 DEBUG [27561]: Closing database connection -- 20:52:45.679 SQL [27561]: pgsql_close() -- 20:52:45.956 INFO [27561]: COREGRADE is starting... -- 20:52:45.956 INFO [27561]: Version from config: 1.0 -- 20:52:45.956 DEBUG [27561]: Connecting to database... -- 20:52:45.956 DEBUG [27561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:52:45.956 SQL [27561]: pgsql_db_connect() -- 20:52:45.960 DEBUG [27561]: Database connection successful -- 20:52:45.960 INFO [27561]: _SERVER found -- 20:52:45.960 INFO [27561]: REMOTE_ADDR = 192.168.1.13 -- 20:52:45.960 INFO [27561]: SERVER_NAME = oameye.works.coregrade.com -- 20:52:45.960 INFO [27561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=avcm89tbu2j5urs9g95c3b91id1p3a22; _gat_gtag_UA_54829827_2=1 -- 20:52:45.960 INFO [27561]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 20:52:45.960 INFO [27561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:52:45.972 INFO [27561]: COREGRADE is stopping... -- 20:52:45.972 DEBUG [27561]: Closing database connection -- 20:52:45.972 SQL [27561]: pgsql_close() -- 20:53:42.307 INFO [27562]: COREGRADE is starting... -- 20:53:42.307 INFO [27562]: Version from config: 1.0 -- 20:53:42.307 DEBUG [27562]: Connecting to database... -- 20:53:42.307 DEBUG [27562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:53:42.307 SQL [27562]: pgsql_db_connect() -- 20:53:42.311 DEBUG [27562]: Database connection successful -- 20:53:42.311 INFO [27562]: _SERVER found -- 20:53:42.311 INFO [27562]: REMOTE_ADDR = 192.168.1.13 -- 20:53:42.311 INFO [27562]: SERVER_NAME = oameye.works.coregrade.com -- 20:53:42.311 INFO [27562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=avcm89tbu2j5urs9g95c3b91id1p3a22 -- 20:53:42.311 INFO [27562]: QUERY_STRING = -- 20:53:42.311 INFO [27562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:53:42.355 INFO [27562]: COREGRADE is stopping... -- 20:53:42.355 DEBUG [27562]: Closing database connection -- 20:53:42.355 SQL [27562]: pgsql_close() -- 20:53:42.592 INFO [27562]: COREGRADE is starting... -- 20:53:42.593 INFO [27562]: Version from config: 1.0 -- 20:53:42.593 DEBUG [27562]: Connecting to database... -- 20:53:42.593 DEBUG [27562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:53:42.593 SQL [27562]: pgsql_db_connect() -- 20:53:42.600 INFO [27563]: COREGRADE is starting... -- 20:53:42.601 INFO [27563]: Version from config: 1.0 -- 20:53:42.601 DEBUG [27563]: Connecting to database... -- 20:53:42.601 DEBUG [27563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:53:42.601 SQL [27563]: pgsql_db_connect() -- 20:53:42.597 DEBUG [27562]: Database connection successful -- 20:53:42.597 INFO [27562]: _SERVER found -- 20:53:42.597 INFO [27562]: REMOTE_ADDR = 192.168.1.13 -- 20:53:42.597 INFO [27562]: SERVER_NAME = oameye.works.coregrade.com -- 20:53:42.597 INFO [27562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=avcm89tbu2j5urs9g95c3b91id1p3a22 -- 20:53:42.597 INFO [27562]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 20:53:42.597 INFO [27562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:53:42.609 INFO [27562]: COREGRADE is stopping... -- 20:53:42.609 DEBUG [27562]: Closing database connection -- 20:53:42.609 SQL [27562]: pgsql_close() -- 20:53:42.605 DEBUG [27563]: Database connection successful -- 20:53:42.605 INFO [27563]: _SERVER found -- 20:53:42.605 INFO [27563]: REMOTE_ADDR = 192.168.1.13 -- 20:53:42.605 INFO [27563]: SERVER_NAME = oameye.works.coregrade.com -- 20:53:42.605 INFO [27563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=avcm89tbu2j5urs9g95c3b91id1p3a22 -- 20:53:42.605 INFO [27563]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:53:42.605 INFO [27563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:53:42.619 INFO [27563]: COREGRADE is stopping... -- 20:53:42.619 DEBUG [27563]: Closing database connection -- 20:53:42.619 SQL [27563]: pgsql_close() -- 20:53:42.657 INFO [27563]: COREGRADE is starting... -- 20:53:42.658 INFO [27563]: Version from config: 1.0 -- 20:53:42.658 DEBUG [27563]: Connecting to database... -- 20:53:42.658 DEBUG [27563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:53:42.658 SQL [27563]: pgsql_db_connect() -- 20:53:42.662 DEBUG [27563]: Database connection successful -- 20:53:42.662 INFO [27563]: _SERVER found -- 20:53:42.662 INFO [27563]: REMOTE_ADDR = 192.168.1.13 -- 20:53:42.662 INFO [27563]: SERVER_NAME = oameye.works.coregrade.com -- 20:53:42.662 INFO [27563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=avcm89tbu2j5urs9g95c3b91id1p3a22 -- 20:53:42.662 INFO [27563]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 20:53:42.662 INFO [27563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:53:42.674 INFO [27563]: COREGRADE is stopping... -- 20:53:42.674 DEBUG [27563]: Closing database connection -- 20:53:42.674 SQL [27563]: pgsql_close() -- 20:57:57.694 INFO [5607]: COREGRADE is starting... -- 20:57:57.695 INFO [5607]: Version from config: 1.0 -- 20:57:57.695 DEBUG [5607]: Connecting to database... -- 20:57:57.695 DEBUG [5607]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:57:57.695 SQL [5607]: pgsql_db_connect() -- 20:57:57.699 DEBUG [5607]: Database connection successful -- 20:57:57.699 INFO [5607]: _SERVER found -- 20:57:57.699 INFO [5607]: REMOTE_ADDR = 192.168.1.13 -- 20:57:57.699 INFO [5607]: SERVER_NAME = oameye.works.coregrade.com -- 20:57:57.699 INFO [5607]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=avcm89tbu2j5urs9g95c3b91id1p3a22 -- 20:57:57.699 INFO [5607]: QUERY_STRING = /home/howitworks -- 20:57:57.699 INFO [5607]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:57:57.714 INFO [5607]: COREGRADE is stopping... -- 20:57:57.714 DEBUG [5607]: Closing database connection -- 20:57:57.714 SQL [5607]: pgsql_close() -- 20:58:50.086 INFO [5608]: COREGRADE is starting... -- 20:58:50.087 INFO [5608]: Version from config: 1.0 -- 20:58:50.087 DEBUG [5608]: Connecting to database... -- 20:58:50.087 DEBUG [5608]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:58:50.087 SQL [5608]: pgsql_db_connect() -- 20:58:50.091 DEBUG [5608]: Database connection successful -- 20:58:50.091 INFO [5608]: _SERVER found -- 20:58:50.091 INFO [5608]: REMOTE_ADDR = 192.168.1.13 -- 20:58:50.091 INFO [5608]: SERVER_NAME = oameye.works.coregrade.com -- 20:58:50.091 INFO [5608]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=avcm89tbu2j5urs9g95c3b91id1p3a22 -- 20:58:50.091 INFO [5608]: QUERY_STRING = -- 20:58:50.091 INFO [5608]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:58:50.136 INFO [5608]: COREGRADE is stopping... -- 20:58:50.136 DEBUG [5608]: Closing database connection -- 20:58:50.136 SQL [5608]: pgsql_close() -- 20:58:50.457 INFO [5608]: COREGRADE is starting... -- 20:58:50.457 INFO [5608]: Version from config: 1.0 -- 20:58:50.457 DEBUG [5608]: Connecting to database... -- 20:58:50.457 DEBUG [5608]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:58:50.457 SQL [5608]: pgsql_db_connect() -- 20:58:50.461 DEBUG [5608]: Database connection successful -- 20:58:50.461 INFO [5608]: _SERVER found -- 20:58:50.461 INFO [5608]: REMOTE_ADDR = 192.168.1.13 -- 20:58:50.461 INFO [5608]: SERVER_NAME = oameye.works.coregrade.com -- 20:58:50.461 INFO [5608]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rssl439705f4hit9ovut2slr0c8mm9ll -- 20:58:50.461 INFO [5608]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 20:58:50.461 INFO [5608]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:58:50.473 INFO [5608]: COREGRADE is stopping... -- 20:58:50.473 DEBUG [5608]: Closing database connection -- 20:58:50.473 SQL [5608]: pgsql_close() -- 20:58:53.998 INFO [5608]: COREGRADE is starting... -- 20:58:53.999 INFO [5608]: Version from config: 1.0 -- 20:58:53.999 DEBUG [5608]: Connecting to database... -- 20:58:53.999 DEBUG [5608]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:58:53.999 SQL [5608]: pgsql_db_connect() -- 20:58:54.003 DEBUG [5608]: Database connection successful -- 20:58:54.003 INFO [5608]: _SERVER found -- 20:58:54.003 INFO [5608]: REMOTE_ADDR = 192.168.1.13 -- 20:58:54.003 INFO [5608]: SERVER_NAME = oameye.works.coregrade.com -- 20:58:54.003 INFO [5608]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rssl439705f4hit9ovut2slr0c8mm9ll; _gat_gtag_UA_54829827_2=1 -- 20:58:54.003 INFO [5608]: QUERY_STRING = /home/security -- 20:58:54.003 INFO [5608]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:58:54.015 INFO [5608]: COREGRADE is stopping... -- 20:58:54.015 DEBUG [5608]: Closing database connection -- 20:58:54.015 SQL [5608]: pgsql_close() -- 20:59:08.121 INFO [5609]: COREGRADE is starting... -- 20:59:08.122 INFO [5609]: Version from config: 1.0 -- 20:59:08.122 DEBUG [5609]: Connecting to database... -- 20:59:08.122 DEBUG [5609]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:59:08.122 SQL [5609]: pgsql_db_connect() -- 20:59:08.126 DEBUG [5609]: Database connection successful -- 20:59:08.126 INFO [5609]: _SERVER found -- 20:59:08.126 INFO [5609]: REMOTE_ADDR = 192.168.1.13 -- 20:59:08.126 INFO [5609]: SERVER_NAME = oameye.works.coregrade.com -- 20:59:08.126 INFO [5609]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rssl439705f4hit9ovut2slr0c8mm9ll; _gat_gtag_UA_54829827_2=1 -- 20:59:08.126 INFO [5609]: QUERY_STRING = -- 20:59:08.126 INFO [5609]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:59:08.169 INFO [5609]: COREGRADE is stopping... -- 20:59:08.170 DEBUG [5609]: Closing database connection -- 20:59:08.170 SQL [5609]: pgsql_close() -- 20:59:08.457 INFO [5609]: COREGRADE is starting... -- 20:59:08.458 INFO [5609]: Version from config: 1.0 -- 20:59:08.458 DEBUG [5609]: Connecting to database... -- 20:59:08.458 DEBUG [5609]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:59:08.458 SQL [5609]: pgsql_db_connect() -- 20:59:08.462 DEBUG [5609]: Database connection successful -- 20:59:08.462 INFO [5609]: _SERVER found -- 20:59:08.462 INFO [5609]: REMOTE_ADDR = 192.168.1.13 -- 20:59:08.462 INFO [5609]: SERVER_NAME = oameye.works.coregrade.com -- 20:59:08.462 INFO [5609]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rssl439705f4hit9ovut2slr0c8mm9ll; _gat_gtag_UA_54829827_2=1 -- 20:59:08.462 INFO [5609]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 20:59:08.462 INFO [5609]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:59:08.474 INFO [5609]: COREGRADE is stopping... -- 20:59:08.474 DEBUG [5609]: Closing database connection -- 20:59:08.474 SQL [5609]: pgsql_close() -- 20:59:10.335 INFO [5609]: COREGRADE is starting... -- 20:59:10.335 INFO [5609]: Version from config: 1.0 -- 20:59:10.335 DEBUG [5609]: Connecting to database... -- 20:59:10.335 DEBUG [5609]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:59:10.335 SQL [5609]: pgsql_db_connect() -- 20:59:10.339 DEBUG [5609]: Database connection successful -- 20:59:10.339 INFO [5609]: _SERVER found -- 20:59:10.339 INFO [5609]: REMOTE_ADDR = 192.168.1.13 -- 20:59:10.339 INFO [5609]: SERVER_NAME = oameye.works.coregrade.com -- 20:59:10.339 INFO [5609]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rssl439705f4hit9ovut2slr0c8mm9ll; _gat_gtag_UA_54829827_2=1 -- 20:59:10.339 INFO [5609]: QUERY_STRING = /home/privacy -- 20:59:10.339 INFO [5609]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:59:10.351 INFO [5609]: COREGRADE is stopping... -- 20:59:10.351 DEBUG [5609]: Closing database connection -- 20:59:10.351 SQL [5609]: pgsql_close() -- 20:59:41.755 INFO [5611]: COREGRADE is starting... -- 20:59:41.755 INFO [5611]: Version from config: 1.0 -- 20:59:41.755 DEBUG [5611]: Connecting to database... -- 20:59:41.755 DEBUG [5611]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:59:41.755 SQL [5611]: pgsql_db_connect() -- 20:59:41.759 DEBUG [5611]: Database connection successful -- 20:59:41.759 INFO [5611]: _SERVER found -- 20:59:41.759 INFO [5611]: REMOTE_ADDR = 192.168.1.13 -- 20:59:41.759 INFO [5611]: SERVER_NAME = oameye.works.coregrade.com -- 20:59:41.759 INFO [5611]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rssl439705f4hit9ovut2slr0c8mm9ll; _gat_gtag_UA_54829827_2=1 -- 20:59:41.759 INFO [5611]: QUERY_STRING = /home/privacy -- 20:59:41.759 INFO [5611]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:59:41.795 INFO [5611]: COREGRADE is stopping... -- 20:59:41.795 DEBUG [5611]: Closing database connection -- 20:59:41.795 SQL [5611]: pgsql_close() -- 20:59:44.137 INFO [5611]: COREGRADE is starting... -- 20:59:44.138 INFO [5611]: Version from config: 1.0 -- 20:59:44.138 DEBUG [5611]: Connecting to database... -- 20:59:44.138 DEBUG [5611]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:59:44.138 SQL [5611]: pgsql_db_connect() -- 20:59:44.142 DEBUG [5611]: Database connection successful -- 20:59:44.142 INFO [5611]: _SERVER found -- 20:59:44.142 INFO [5611]: REMOTE_ADDR = 192.168.1.13 -- 20:59:44.142 INFO [5611]: SERVER_NAME = oameye.works.coregrade.com -- 20:59:44.142 INFO [5611]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rssl439705f4hit9ovut2slr0c8mm9ll; _gat_gtag_UA_54829827_2=1 -- 20:59:44.142 INFO [5611]: QUERY_STRING = -- 20:59:44.142 INFO [5611]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:59:44.179 INFO [5611]: COREGRADE is stopping... -- 20:59:44.179 DEBUG [5611]: Closing database connection -- 20:59:44.179 SQL [5611]: pgsql_close() -- 20:59:44.485 INFO [5611]: COREGRADE is starting... -- 20:59:44.486 INFO [5611]: Version from config: 1.0 -- 20:59:44.486 DEBUG [5611]: Connecting to database... -- 20:59:44.486 DEBUG [5611]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:59:44.486 SQL [5611]: pgsql_db_connect() -- 20:59:44.490 DEBUG [5611]: Database connection successful -- 20:59:44.490 INFO [5611]: _SERVER found -- 20:59:44.490 INFO [5611]: REMOTE_ADDR = 192.168.1.13 -- 20:59:44.490 INFO [5611]: SERVER_NAME = oameye.works.coregrade.com -- 20:59:44.490 INFO [5611]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rssl439705f4hit9ovut2slr0c8mm9ll; _gat_gtag_UA_54829827_2=1 -- 20:59:44.490 INFO [5611]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 20:59:44.490 INFO [5611]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:59:44.501 INFO [5611]: COREGRADE is stopping... -- 20:59:44.501 DEBUG [5611]: Closing database connection -- 20:59:44.501 SQL [5611]: pgsql_close() -- 20:59:46.597 INFO [5611]: COREGRADE is starting... -- 20:59:46.597 INFO [5611]: Version from config: 1.0 -- 20:59:46.597 DEBUG [5611]: Connecting to database... -- 20:59:46.597 DEBUG [5611]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:59:46.597 SQL [5611]: pgsql_db_connect() -- 20:59:46.601 DEBUG [5611]: Database connection successful -- 20:59:46.601 INFO [5611]: _SERVER found -- 20:59:46.601 INFO [5611]: REMOTE_ADDR = 192.168.1.13 -- 20:59:46.601 INFO [5611]: SERVER_NAME = oameye.works.coregrade.com -- 20:59:46.601 INFO [5611]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rssl439705f4hit9ovut2slr0c8mm9ll; _gat_gtag_UA_54829827_2=1 -- 20:59:46.601 INFO [5611]: QUERY_STRING = /home/terms -- 20:59:46.601 INFO [5611]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:59:46.613 INFO [5611]: COREGRADE is stopping... -- 20:59:46.613 DEBUG [5611]: Closing database connection -- 20:59:46.613 SQL [5611]: pgsql_close() -- 21:00:18.117 INFO [5610]: COREGRADE is starting... -- 21:00:18.117 INFO [5610]: Version from config: 1.0 -- 21:00:18.117 DEBUG [5610]: Connecting to database... -- 21:00:18.117 DEBUG [5610]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:18.117 SQL [5610]: pgsql_db_connect() -- 21:00:18.122 DEBUG [5610]: Database connection successful -- 21:00:18.122 INFO [5610]: _SERVER found -- 21:00:18.122 INFO [5610]: REMOTE_ADDR = 192.168.1.13 -- 21:00:18.122 INFO [5610]: SERVER_NAME = oameye.works.coregrade.com -- 21:00:18.122 INFO [5610]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rssl439705f4hit9ovut2slr0c8mm9ll -- 21:00:18.122 INFO [5610]: QUERY_STRING = /home/terms -- 21:00:18.122 INFO [5610]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:00:18.159 INFO [5610]: COREGRADE is stopping... -- 21:00:18.159 DEBUG [5610]: Closing database connection -- 21:00:18.159 SQL [5610]: pgsql_close() -- 21:00:19.230 INFO [5610]: COREGRADE is starting... -- 21:00:19.231 INFO [5610]: Version from config: 1.0 -- 21:00:19.231 DEBUG [5610]: Connecting to database... -- 21:00:19.231 DEBUG [5610]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:19.231 SQL [5610]: pgsql_db_connect() -- 21:00:19.235 DEBUG [5610]: Database connection successful -- 21:00:19.235 INFO [5610]: _SERVER found -- 21:00:19.235 INFO [5610]: REMOTE_ADDR = 192.168.1.13 -- 21:00:19.235 INFO [5610]: SERVER_NAME = oameye.works.coregrade.com -- 21:00:19.235 INFO [5610]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rssl439705f4hit9ovut2slr0c8mm9ll -- 21:00:19.235 INFO [5610]: QUERY_STRING = -- 21:00:19.235 INFO [5610]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:00:19.272 INFO [5610]: COREGRADE is stopping... -- 21:00:19.272 DEBUG [5610]: Closing database connection -- 21:00:19.272 SQL [5610]: pgsql_close() -- 21:00:19.523 INFO [5610]: COREGRADE is starting... -- 21:00:19.524 INFO [5610]: Version from config: 1.0 -- 21:00:19.524 DEBUG [5610]: Connecting to database... -- 21:00:19.524 DEBUG [5610]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:19.524 SQL [5610]: pgsql_db_connect() -- 21:00:19.528 DEBUG [5610]: Database connection successful -- 21:00:19.528 INFO [5610]: _SERVER found -- 21:00:19.528 INFO [5610]: REMOTE_ADDR = 192.168.1.13 -- 21:00:19.528 INFO [5610]: SERVER_NAME = oameye.works.coregrade.com -- 21:00:19.528 INFO [5610]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rssl439705f4hit9ovut2slr0c8mm9ll -- 21:00:19.528 INFO [5610]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 21:00:19.528 INFO [5610]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:00:19.539 INFO [5610]: COREGRADE is stopping... -- 21:00:19.539 DEBUG [5610]: Closing database connection -- 21:00:19.540 SQL [5610]: pgsql_close() -- 21:00:24.703 INFO [5619]: COREGRADE is starting... -- 21:00:24.703 INFO [5619]: Version from config: 1.0 -- 21:00:24.703 DEBUG [5619]: Connecting to database... -- 21:00:24.703 DEBUG [5619]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:24.703 SQL [5619]: pgsql_db_connect() -- 21:00:24.708 DEBUG [5619]: Database connection successful -- 21:00:24.708 INFO [5619]: _SERVER found -- 21:00:24.708 INFO [5619]: REMOTE_ADDR = 192.168.1.13 -- 21:00:24.708 INFO [5619]: SERVER_NAME = oameye.works.coregrade.com -- 21:00:24.708 INFO [5619]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rssl439705f4hit9ovut2slr0c8mm9ll; _gat_gtag_UA_54829827_2=1 -- 21:00:24.708 INFO [5619]: QUERY_STRING = /home/contatus -- 21:00:24.708 INFO [5619]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:00:24.722 INFO [5619]: COREGRADE is stopping... -- 21:00:24.722 DEBUG [5619]: Closing database connection -- 21:00:24.722 SQL [5619]: pgsql_close() -- 21:00:57.765 INFO [5607]: COREGRADE is starting... -- 21:00:57.765 INFO [5607]: Version from config: 1.0 -- 21:00:57.765 DEBUG [5607]: Connecting to database... -- 21:00:57.765 DEBUG [5607]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:57.765 SQL [5607]: pgsql_db_connect() -- 21:00:57.769 DEBUG [5607]: Database connection successful -- 21:00:57.769 INFO [5607]: _SERVER found -- 21:00:57.769 INFO [5607]: REMOTE_ADDR = 192.168.1.13 -- 21:00:57.769 INFO [5607]: SERVER_NAME = oameye.works.coregrade.com -- 21:00:57.769 INFO [5607]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rssl439705f4hit9ovut2slr0c8mm9ll; _gat_gtag_UA_54829827_2=1 -- 21:00:57.769 INFO [5607]: QUERY_STRING = /member/page -- 21:00:57.769 INFO [5607]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:00:57.814 INFO [5607]: COREGRADE is stopping... -- 21:00:57.814 DEBUG [5607]: Closing database connection -- 21:00:57.814 SQL [5607]: pgsql_close() -- 21:00:57.958 INFO [5607]: COREGRADE is starting... -- 21:00:57.959 INFO [5607]: Version from config: 1.0 -- 21:00:57.959 DEBUG [5607]: Connecting to database... -- 21:00:57.959 DEBUG [5607]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:57.959 SQL [5607]: pgsql_db_connect() -- 21:00:57.963 DEBUG [5607]: Database connection successful -- 21:00:57.963 INFO [5607]: _SERVER found -- 21:00:57.963 INFO [5607]: REMOTE_ADDR = 192.168.1.13 -- 21:00:57.963 INFO [5607]: SERVER_NAME = oameye.works.coregrade.com -- 21:00:57.963 INFO [5607]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rssl439705f4hit9ovut2slr0c8mm9ll; _gat_gtag_UA_54829827_2=1 -- 21:00:57.963 INFO [5607]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:00:57.963 INFO [5607]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:00:57.974 INFO [5607]: COREGRADE is stopping... -- 21:00:57.974 DEBUG [5607]: Closing database connection -- 21:00:57.974 SQL [5607]: pgsql_close() -- 21:00:58.277 INFO [5607]: COREGRADE is starting... -- 21:00:58.277 INFO [5607]: Version from config: 1.0 -- 21:00:58.277 DEBUG [5607]: Connecting to database... -- 21:00:58.277 DEBUG [5607]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:58.277 SQL [5607]: pgsql_db_connect() -- 21:00:58.281 DEBUG [5607]: Database connection successful -- 21:00:58.281 INFO [5607]: _SERVER found -- 21:00:58.281 INFO [5607]: REMOTE_ADDR = 192.168.1.13 -- 21:00:58.281 INFO [5607]: SERVER_NAME = oameye.works.coregrade.com -- 21:00:58.281 INFO [5607]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rssl439705f4hit9ovut2slr0c8mm9ll; _gat_gtag_UA_54829827_2=1 -- 21:00:58.281 INFO [5607]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:00:58.281 INFO [5607]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:00:58.292 INFO [5607]: COREGRADE is stopping... -- 21:00:58.292 DEBUG [5607]: Closing database connection -- 21:00:58.292 SQL [5607]: pgsql_close() -- 21:01:05.376 INFO [5609]: COREGRADE is starting... -- 21:01:05.376 INFO [5609]: Version from config: 1.0 -- 21:01:05.376 DEBUG [5609]: Connecting to database... -- 21:01:05.376 DEBUG [5609]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:01:05.376 SQL [5609]: pgsql_db_connect() -- 21:01:05.381 DEBUG [5609]: Database connection successful -- 21:01:05.381 INFO [5609]: _SERVER found -- 21:01:05.381 INFO [5609]: REMOTE_ADDR = 192.168.1.13 -- 21:01:05.381 INFO [5609]: SERVER_NAME = oameye.works.coregrade.com -- 21:01:05.381 INFO [5609]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rssl439705f4hit9ovut2slr0c8mm9ll; _gat_gtag_UA_54829827_2=1 -- 21:01:05.381 INFO [5609]: QUERY_STRING = /auth/logout -- 21:01:05.381 INFO [5609]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:01:05.416 INFO [5609]: COREGRADE is stopping... -- 21:01:05.416 DEBUG [5609]: Closing database connection -- 21:01:05.416 SQL [5609]: pgsql_close() -- 21:01:05.585 INFO [5609]: COREGRADE is starting... -- 21:01:05.585 INFO [5609]: Version from config: 1.0 -- 21:01:05.585 DEBUG [5609]: Connecting to database... -- 21:01:05.585 DEBUG [5609]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:01:05.585 SQL [5609]: pgsql_db_connect() -- 21:01:05.593 INFO [5611]: COREGRADE is starting... -- 21:01:05.593 INFO [5611]: Version from config: 1.0 -- 21:01:05.593 DEBUG [5611]: Connecting to database... -- 21:01:05.593 DEBUG [5611]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:01:05.593 SQL [5611]: pgsql_db_connect() -- 21:01:05.589 DEBUG [5609]: Database connection successful -- 21:01:05.589 INFO [5609]: _SERVER found -- 21:01:05.589 INFO [5609]: REMOTE_ADDR = 192.168.1.13 -- 21:01:05.589 INFO [5609]: SERVER_NAME = oameye.works.coregrade.com -- 21:01:05.589 INFO [5609]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rssl439705f4hit9ovut2slr0c8mm9ll; _gat_gtag_UA_54829827_2=1 -- 21:01:05.589 INFO [5609]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:01:05.589 INFO [5609]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:01:05.602 INFO [5609]: COREGRADE is stopping... -- 21:01:05.602 DEBUG [5609]: Closing database connection -- 21:01:05.602 SQL [5609]: pgsql_close() -- 21:01:05.597 DEBUG [5611]: Database connection successful -- 21:01:05.597 INFO [5611]: _SERVER found -- 21:01:05.597 INFO [5611]: REMOTE_ADDR = 192.168.1.13 -- 21:01:05.597 INFO [5611]: SERVER_NAME = oameye.works.coregrade.com -- 21:01:05.597 INFO [5611]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rssl439705f4hit9ovut2slr0c8mm9ll; _gat_gtag_UA_54829827_2=1 -- 21:01:05.597 INFO [5611]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:01:05.597 INFO [5611]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:01:05.609 INFO [5611]: COREGRADE is stopping... -- 21:01:05.609 DEBUG [5611]: Closing database connection -- 21:01:05.609 SQL [5611]: pgsql_close() -- 21:01:09.237 INFO [5611]: COREGRADE is starting... -- 21:01:09.238 INFO [5611]: Version from config: 1.0 -- 21:01:09.238 DEBUG [5611]: Connecting to database... -- 21:01:09.238 DEBUG [5611]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:01:09.238 SQL [5611]: pgsql_db_connect() -- 21:01:09.242 DEBUG [5611]: Database connection successful -- 21:01:09.242 INFO [5611]: _SERVER found -- 21:01:09.242 INFO [5611]: REMOTE_ADDR = 192.168.1.13 -- 21:01:09.242 INFO [5611]: SERVER_NAME = oameye.works.coregrade.com -- 21:01:09.242 INFO [5611]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rssl439705f4hit9ovut2slr0c8mm9ll; _gat_gtag_UA_54829827_2=1 -- 21:01:09.242 INFO [5611]: QUERY_STRING = -- 21:01:09.242 INFO [5611]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:01:09.273 INFO [5611]: COREGRADE is stopping... -- 21:01:09.273 DEBUG [5611]: Closing database connection -- 21:01:09.273 SQL [5611]: pgsql_close() -- 21:01:09.468 INFO [5611]: COREGRADE is starting... -- 21:01:09.468 INFO [5611]: Version from config: 1.0 -- 21:01:09.468 DEBUG [5611]: Connecting to database... -- 21:01:09.468 DEBUG [5611]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:01:09.468 SQL [5611]: pgsql_db_connect() -- 21:01:09.473 INFO [5609]: COREGRADE is starting... -- 21:01:09.473 INFO [5609]: Version from config: 1.0 -- 21:01:09.473 DEBUG [5609]: Connecting to database... -- 21:01:09.473 DEBUG [5609]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:01:09.473 SQL [5609]: pgsql_db_connect() -- 21:01:09.472 DEBUG [5611]: Database connection successful -- 21:01:09.472 INFO [5611]: _SERVER found -- 21:01:09.472 INFO [5611]: REMOTE_ADDR = 192.168.1.13 -- 21:01:09.472 INFO [5611]: SERVER_NAME = oameye.works.coregrade.com -- 21:01:09.472 INFO [5611]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rssl439705f4hit9ovut2slr0c8mm9ll; _gat_gtag_UA_54829827_2=1 -- 21:01:09.472 INFO [5611]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 21:01:09.472 INFO [5611]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:01:09.483 INFO [5611]: COREGRADE is stopping... -- 21:01:09.483 DEBUG [5611]: Closing database connection -- 21:01:09.483 SQL [5611]: pgsql_close() -- 21:01:09.477 DEBUG [5609]: Database connection successful -- 21:01:09.477 INFO [5609]: _SERVER found -- 21:01:09.477 INFO [5609]: REMOTE_ADDR = 192.168.1.13 -- 21:01:09.477 INFO [5609]: SERVER_NAME = oameye.works.coregrade.com -- 21:01:09.477 INFO [5609]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rssl439705f4hit9ovut2slr0c8mm9ll; _gat_gtag_UA_54829827_2=1 -- 21:01:09.477 INFO [5609]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:01:09.477 INFO [5609]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:01:09.489 INFO [5609]: COREGRADE is stopping... -- 21:01:09.489 DEBUG [5609]: Closing database connection -- 21:01:09.489 SQL [5609]: pgsql_close() -- 21:03:08.062 INFO [5654]: COREGRADE is starting... -- 21:03:08.063 INFO [5654]: Version from config: 1.0 -- 21:03:08.063 DEBUG [5654]: Connecting to database... -- 21:03:08.063 DEBUG [5654]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:03:08.063 SQL [5654]: pgsql_db_connect() -- 21:03:08.067 DEBUG [5654]: Database connection successful -- 21:03:08.067 INFO [5654]: _SERVER found -- 21:03:08.067 INFO [5654]: REMOTE_ADDR = 192.168.1.13 -- 21:03:08.067 INFO [5654]: SERVER_NAME = oameye.works.coregrade.com -- 21:03:08.067 INFO [5654]: HTTP_COOKIE = _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 21:03:08.067 INFO [5654]: QUERY_STRING = /auth -- 21:03:08.067 INFO [5654]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:03:08.107 INFO [5654]: COREGRADE is stopping... -- 21:03:08.107 DEBUG [5654]: Closing database connection -- 21:03:08.107 SQL [5654]: pgsql_close() -- 21:03:09.523 INFO [5654]: COREGRADE is starting... -- 21:03:09.523 INFO [5654]: Version from config: 1.0 -- 21:03:09.523 DEBUG [5654]: Connecting to database... -- 21:03:09.523 DEBUG [5654]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:03:09.523 SQL [5654]: pgsql_db_connect() -- 21:03:09.529 INFO [5610]: COREGRADE is starting... -- 21:03:09.529 INFO [5610]: Version from config: 1.0 -- 21:03:09.529 DEBUG [5610]: Connecting to database... -- 21:03:09.529 DEBUG [5610]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:03:09.529 SQL [5610]: pgsql_db_connect() -- 21:03:09.527 DEBUG [5654]: Database connection successful -- 21:03:09.527 INFO [5654]: _SERVER found -- 21:03:09.527 INFO [5654]: REMOTE_ADDR = 192.168.1.13 -- 21:03:09.527 INFO [5654]: SERVER_NAME = oameye.works.coregrade.com -- 21:03:09.527 INFO [5654]: HTTP_COOKIE = ci_session=cn569p2lakg6g56542cqu9g26bsbul9k; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 21:03:09.527 INFO [5654]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:03:09.527 INFO [5654]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:03:09.540 INFO [5654]: COREGRADE is stopping... -- 21:03:09.540 DEBUG [5654]: Closing database connection -- 21:03:09.540 SQL [5654]: pgsql_close() -- 21:03:09.533 DEBUG [5610]: Database connection successful -- 21:03:09.533 INFO [5610]: _SERVER found -- 21:03:09.533 INFO [5610]: REMOTE_ADDR = 192.168.1.13 -- 21:03:09.533 INFO [5610]: SERVER_NAME = oameye.works.coregrade.com -- 21:03:09.533 INFO [5610]: HTTP_COOKIE = ci_session=cn569p2lakg6g56542cqu9g26bsbul9k; _gid=GA1.2.1636001442.1581373171; _ga=GA1.2.1639397498.1581373171 -- 21:03:09.533 INFO [5610]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:03:09.533 INFO [5610]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:03:09.545 INFO [5610]: COREGRADE is stopping... -- 21:03:09.545 DEBUG [5610]: Closing database connection -- 21:03:09.545 SQL [5610]: pgsql_close() -- 21:07:52.947 INFO [24389]: COREGRADE is starting... -- 21:07:52.947 INFO [24389]: Version from config: 1.0 -- 21:07:52.947 DEBUG [24389]: Connecting to database... -- 21:07:52.947 DEBUG [24389]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:52.947 SQL [24389]: pgsql_db_connect() -- 21:07:52.952 DEBUG [24389]: Database connection successful -- 21:07:52.952 INFO [24389]: _SERVER found -- 21:07:52.952 INFO [24389]: REMOTE_ADDR = 192.168.1.13 -- 21:07:52.952 INFO [24389]: SERVER_NAME = oameye.works.coregrade.com -- 21:07:52.952 INFO [24389]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=rssl439705f4hit9ovut2slr0c8mm9ll -- 21:07:52.952 INFO [24389]: QUERY_STRING = /home/contatus -- 21:07:52.952 INFO [24389]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:07:52.990 INFO [24389]: COREGRADE is stopping... -- 21:07:52.990 DEBUG [24389]: Closing database connection -- 21:07:52.990 SQL [24389]: pgsql_close() -- 21:07:56.980 INFO [24389]: COREGRADE is starting... -- 21:07:56.980 INFO [24389]: Version from config: 1.0 -- 21:07:56.980 DEBUG [24389]: Connecting to database... -- 21:07:56.980 DEBUG [24389]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:56.980 SQL [24389]: pgsql_db_connect() -- 21:07:56.984 DEBUG [24389]: Database connection successful -- 21:07:56.984 INFO [24389]: _SERVER found -- 21:07:56.984 INFO [24389]: REMOTE_ADDR = 192.168.1.13 -- 21:07:56.984 INFO [24389]: SERVER_NAME = oameye.works.coregrade.com -- 21:07:56.984 INFO [24389]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u3qmgs8op69r5rqueapq3uromu43u30e -- 21:07:56.984 INFO [24389]: QUERY_STRING = -- 21:07:56.984 INFO [24389]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:07:57.022 INFO [24389]: COREGRADE is stopping... -- 21:07:57.022 DEBUG [24389]: Closing database connection -- 21:07:57.022 SQL [24389]: pgsql_close() -- 21:07:57.226 INFO [24389]: COREGRADE is starting... -- 21:07:57.226 INFO [24389]: Version from config: 1.0 -- 21:07:57.226 DEBUG [24389]: Connecting to database... -- 21:07:57.226 DEBUG [24389]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:57.226 SQL [24389]: pgsql_db_connect() -- 21:07:57.241 INFO [24390]: COREGRADE is starting... -- 21:07:57.241 INFO [24390]: Version from config: 1.0 -- 21:07:57.241 DEBUG [24390]: Connecting to database... -- 21:07:57.241 DEBUG [24390]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:57.241 SQL [24390]: pgsql_db_connect() -- 21:07:57.230 DEBUG [24389]: Database connection successful -- 21:07:57.230 INFO [24389]: _SERVER found -- 21:07:57.230 INFO [24389]: REMOTE_ADDR = 192.168.1.13 -- 21:07:57.230 INFO [24389]: SERVER_NAME = oameye.works.coregrade.com -- 21:07:57.230 INFO [24389]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u3qmgs8op69r5rqueapq3uromu43u30e -- 21:07:57.231 INFO [24389]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 21:07:57.231 INFO [24389]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:07:57.242 INFO [24389]: COREGRADE is stopping... -- 21:07:57.242 DEBUG [24389]: Closing database connection -- 21:07:57.242 SQL [24389]: pgsql_close() -- 21:07:57.246 DEBUG [24390]: Database connection successful -- 21:07:57.246 INFO [24390]: _SERVER found -- 21:07:57.246 INFO [24390]: REMOTE_ADDR = 192.168.1.13 -- 21:07:57.246 INFO [24390]: SERVER_NAME = oameye.works.coregrade.com -- 21:07:57.246 INFO [24390]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u3qmgs8op69r5rqueapq3uromu43u30e -- 21:07:57.246 INFO [24390]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:07:57.246 INFO [24390]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:07:57.260 INFO [24390]: COREGRADE is stopping... -- 21:07:57.260 DEBUG [24390]: Closing database connection -- 21:07:57.260 SQL [24390]: pgsql_close() -- 21:07:57.288 INFO [24390]: COREGRADE is starting... -- 21:07:57.289 INFO [24390]: Version from config: 1.0 -- 21:07:57.289 DEBUG [24390]: Connecting to database... -- 21:07:57.289 DEBUG [24390]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:57.289 SQL [24390]: pgsql_db_connect() -- 21:07:57.292 DEBUG [24390]: Database connection successful -- 21:07:57.292 INFO [24390]: _SERVER found -- 21:07:57.292 INFO [24390]: REMOTE_ADDR = 192.168.1.13 -- 21:07:57.292 INFO [24390]: SERVER_NAME = oameye.works.coregrade.com -- 21:07:57.292 INFO [24390]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u3qmgs8op69r5rqueapq3uromu43u30e -- 21:07:57.292 INFO [24390]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 21:07:57.292 INFO [24390]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:07:57.305 INFO [24390]: COREGRADE is stopping... -- 21:07:57.305 DEBUG [24390]: Closing database connection -- 21:07:57.305 SQL [24390]: pgsql_close() -- 21:08:17.237 INFO [24392]: COREGRADE is starting... -- 21:08:17.238 INFO [24392]: Version from config: 1.0 -- 21:08:17.238 DEBUG [24392]: Connecting to database... -- 21:08:17.238 DEBUG [24392]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:08:17.238 SQL [24392]: pgsql_db_connect() -- 21:08:17.242 DEBUG [24392]: Database connection successful -- 21:08:17.242 INFO [24392]: _SERVER found -- 21:08:17.242 INFO [24392]: REMOTE_ADDR = 192.168.1.13 -- 21:08:17.242 INFO [24392]: SERVER_NAME = oameye.works.coregrade.com -- 21:08:17.242 INFO [24392]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u3qmgs8op69r5rqueapq3uromu43u30e; _gat_gtag_UA_54829827_2=1 -- 21:08:17.242 INFO [24392]: QUERY_STRING = -- 21:08:17.242 INFO [24392]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:08:17.285 INFO [24392]: COREGRADE is stopping... -- 21:08:17.285 DEBUG [24392]: Closing database connection -- 21:08:17.285 SQL [24392]: pgsql_close() -- 21:08:17.767 INFO [24392]: COREGRADE is starting... -- 21:08:17.767 INFO [24392]: Version from config: 1.0 -- 21:08:17.767 DEBUG [24392]: Connecting to database... -- 21:08:17.767 DEBUG [24392]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:08:17.767 SQL [24392]: pgsql_db_connect() -- 21:08:17.771 DEBUG [24392]: Database connection successful -- 21:08:17.771 INFO [24392]: _SERVER found -- 21:08:17.771 INFO [24392]: REMOTE_ADDR = 192.168.1.13 -- 21:08:17.771 INFO [24392]: SERVER_NAME = oameye.works.coregrade.com -- 21:08:17.771 INFO [24392]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u3qmgs8op69r5rqueapq3uromu43u30e; _gat_gtag_UA_54829827_2=1 -- 21:08:17.771 INFO [24392]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 21:08:17.771 INFO [24392]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:08:17.784 INFO [24392]: COREGRADE is stopping... -- 21:08:17.784 DEBUG [24392]: Closing database connection -- 21:08:17.784 SQL [24392]: pgsql_close() -- 21:08:31.213 INFO [24391]: COREGRADE is starting... -- 21:08:31.214 INFO [24391]: Version from config: 1.0 -- 21:08:31.214 DEBUG [24391]: Connecting to database... -- 21:08:31.214 DEBUG [24391]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:08:31.214 SQL [24391]: pgsql_db_connect() -- 21:08:31.218 DEBUG [24391]: Database connection successful -- 21:08:31.218 INFO [24391]: _SERVER found -- 21:08:31.218 INFO [24391]: REMOTE_ADDR = 192.168.1.13 -- 21:08:31.218 INFO [24391]: SERVER_NAME = oameye.works.coregrade.com -- 21:08:31.218 INFO [24391]: QUERY_STRING = -- 21:08:31.218 INFO [24391]: HTTP_X_FORWARDED_FOR = 52.45.249.117 -- 21:08:31.261 INFO [24391]: COREGRADE is stopping... -- 21:08:31.261 DEBUG [24391]: Closing database connection -- 21:08:31.261 SQL [24391]: pgsql_close() -- 21:38:09.699 INFO [24393]: COREGRADE is starting... -- 21:38:09.700 INFO [24393]: Version from config: 1.0 -- 21:38:09.700 DEBUG [24393]: Connecting to database... -- 21:38:09.700 DEBUG [24393]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:38:09.700 SQL [24393]: pgsql_db_connect() -- 21:38:09.704 DEBUG [24393]: Database connection successful -- 21:38:09.704 INFO [24393]: _SERVER found -- 21:38:09.704 INFO [24393]: REMOTE_ADDR = 192.168.1.13 -- 21:38:09.704 INFO [24393]: SERVER_NAME = oameye.works.coregrade.com -- 21:38:09.704 INFO [24393]: QUERY_STRING = /robots.txt -- 21:38:09.704 INFO [24393]: HTTP_X_FORWARDED_FOR = 66.249.65.134 -- 21:38:09.721 INFO [24393]: COREGRADE is stopping... -- 21:38:09.721 DEBUG [24393]: Closing database connection -- 21:38:09.721 SQL [24393]: pgsql_close() -- 21:38:09.767 INFO [24393]: COREGRADE is starting... -- 21:38:09.768 INFO [24393]: Version from config: 1.0 -- 21:38:09.768 DEBUG [24393]: Connecting to database... -- 21:38:09.768 DEBUG [24393]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:38:09.768 SQL [24393]: pgsql_db_connect() -- 21:38:09.772 DEBUG [24393]: Database connection successful -- 21:38:09.772 INFO [24393]: _SERVER found -- 21:38:09.772 INFO [24393]: REMOTE_ADDR = 192.168.1.13 -- 21:38:09.772 INFO [24393]: SERVER_NAME = oameye.works.coregrade.com -- 21:38:09.772 INFO [24393]: QUERY_STRING = /auth/index -- 21:38:09.772 INFO [24393]: HTTP_X_FORWARDED_FOR = 66.249.65.134 -- 21:38:09.811 INFO [24393]: COREGRADE is stopping... -- 21:38:09.811 DEBUG [24393]: Closing database connection -- 21:38:09.811 SQL [24393]: pgsql_close() -- 21:38:49.038 INFO [24404]: COREGRADE is starting... -- 21:38:49.038 INFO [24404]: Version from config: 1.0 -- 21:38:49.038 DEBUG [24404]: Connecting to database... -- 21:38:49.038 DEBUG [24404]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:38:49.039 SQL [24404]: pgsql_db_connect() -- 21:38:49.043 DEBUG [24404]: Database connection successful -- 21:38:49.043 INFO [24404]: _SERVER found -- 21:38:49.043 INFO [24404]: REMOTE_ADDR = 192.168.1.13 -- 21:38:49.043 INFO [24404]: SERVER_NAME = oameye.works.coregrade.com -- 21:38:49.043 INFO [24404]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:38:49.043 INFO [24404]: HTTP_X_FORWARDED_FOR = 66.249.65.134 -- 21:38:49.058 INFO [24404]: COREGRADE is stopping... -- 21:38:49.058 DEBUG [24404]: Closing database connection -- 21:38:49.058 SQL [24404]: pgsql_close() -- 21:55:57.751 INFO [24411]: COREGRADE is starting... -- 21:55:57.751 INFO [24411]: Version from config: 1.0 -- 21:55:57.751 DEBUG [24411]: Connecting to database... -- 21:55:57.751 DEBUG [24411]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:55:57.751 SQL [24411]: pgsql_db_connect() -- 21:55:57.793 INFO [24389]: COREGRADE is starting... -- 21:55:57.793 INFO [24389]: Version from config: 1.0 -- 21:55:57.793 DEBUG [24389]: Connecting to database... -- 21:55:57.793 DEBUG [24389]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:55:57.793 SQL [24389]: pgsql_db_connect() -- 21:55:57.756 DEBUG [24411]: Database connection successful -- 21:55:57.756 INFO [24411]: _SERVER found -- 21:55:57.756 INFO [24411]: REMOTE_ADDR = 192.168.1.13 -- 21:55:57.756 INFO [24411]: SERVER_NAME = oameye.works.coregrade.com -- 21:55:57.756 INFO [24411]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; ci_session=phkit8eunqt7os1i4slf6utoum50sknv -- 21:55:57.756 INFO [24411]: QUERY_STRING = -- 21:55:57.756 INFO [24411]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:55:57.807 INFO [24411]: COREGRADE is stopping... -- 21:55:57.807 DEBUG [24411]: Closing database connection -- 21:55:57.807 SQL [24411]: pgsql_close() -- 21:55:57.797 DEBUG [24389]: Database connection successful -- 21:55:57.797 INFO [24389]: _SERVER found -- 21:55:57.797 INFO [24389]: REMOTE_ADDR = 192.168.1.13 -- 21:55:57.797 INFO [24389]: SERVER_NAME = oameye.works.coregrade.com -- 21:55:57.797 INFO [24389]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; ci_session=phkit8eunqt7os1i4slf6utoum50sknv -- 21:55:57.797 INFO [24389]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 21:55:57.797 INFO [24389]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:55:57.811 INFO [24389]: COREGRADE is stopping... -- 21:55:57.811 DEBUG [24389]: Closing database connection -- 21:55:57.811 SQL [24389]: pgsql_close() -- 21:55:57.816 INFO [24390]: COREGRADE is starting... -- 21:55:57.816 INFO [24390]: Version from config: 1.0 -- 21:55:57.816 DEBUG [24390]: Connecting to database... -- 21:55:57.816 DEBUG [24390]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:55:57.816 SQL [24390]: pgsql_db_connect() -- 21:55:57.821 DEBUG [24390]: Database connection successful -- 21:55:57.821 INFO [24390]: _SERVER found -- 21:55:57.821 INFO [24390]: REMOTE_ADDR = 192.168.1.13 -- 21:55:57.821 INFO [24390]: SERVER_NAME = oameye.works.coregrade.com -- 21:55:57.821 INFO [24390]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; ci_session=phkit8eunqt7os1i4slf6utoum50sknv -- 21:55:57.821 INFO [24390]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:55:57.821 INFO [24390]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:55:57.834 INFO [24390]: COREGRADE is stopping... -- 21:55:57.834 DEBUG [24390]: Closing database connection -- 21:55:57.834 SQL [24390]: pgsql_close() -- 21:55:57.888 INFO [24390]: COREGRADE is starting... -- 21:55:57.889 INFO [24390]: Version from config: 1.0 -- 21:55:57.889 DEBUG [24390]: Connecting to database... -- 21:55:57.889 DEBUG [24390]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:55:57.889 SQL [24390]: pgsql_db_connect() -- 21:55:57.894 INFO [24389]: COREGRADE is starting... -- 21:55:57.894 INFO [24389]: Version from config: 1.0 -- 21:55:57.894 DEBUG [24389]: Connecting to database... -- 21:55:57.894 DEBUG [24389]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:55:57.894 SQL [24389]: pgsql_db_connect() -- 21:55:57.893 DEBUG [24390]: Database connection successful -- 21:55:57.893 INFO [24390]: _SERVER found -- 21:55:57.893 INFO [24390]: REMOTE_ADDR = 192.168.1.13 -- 21:55:57.893 INFO [24390]: SERVER_NAME = oameye.works.coregrade.com -- 21:55:57.893 INFO [24390]: HTTP_COOKIE = ci_session=57igda4rp8qjq276ad243b76vn5ur3qp; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701 -- 21:55:57.893 INFO [24390]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 21:55:57.893 INFO [24390]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:55:57.905 INFO [24390]: COREGRADE is stopping... -- 21:55:57.905 DEBUG [24390]: Closing database connection -- 21:55:57.905 SQL [24390]: pgsql_close() -- 21:55:57.899 DEBUG [24389]: Database connection successful -- 21:55:57.899 INFO [24389]: _SERVER found -- 21:55:57.899 INFO [24389]: REMOTE_ADDR = 192.168.1.13 -- 21:55:57.899 INFO [24389]: SERVER_NAME = oameye.works.coregrade.com -- 21:55:57.899 INFO [24389]: HTTP_COOKIE = ci_session=57igda4rp8qjq276ad243b76vn5ur3qp; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701 -- 21:55:57.899 INFO [24389]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:55:57.899 INFO [24389]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:55:57.910 INFO [24389]: COREGRADE is stopping... -- 21:55:57.910 DEBUG [24389]: Closing database connection -- 21:55:57.910 SQL [24389]: pgsql_close() -- 22:05:29.246 INFO [24392]: COREGRADE is starting... -- 22:05:29.247 INFO [24392]: Version from config: 1.0 -- 22:05:29.247 DEBUG [24392]: Connecting to database... -- 22:05:29.247 DEBUG [24392]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:05:29.247 SQL [24392]: pgsql_db_connect() -- 22:05:29.251 DEBUG [24392]: Database connection successful -- 22:05:29.251 INFO [24392]: _SERVER found -- 22:05:29.251 INFO [24392]: REMOTE_ADDR = 192.168.1.13 -- 22:05:29.251 INFO [24392]: SERVER_NAME = oameye.works.coregrade.com -- 22:05:29.251 INFO [24392]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u3qmgs8op69r5rqueapq3uromu43u30e -- 22:05:29.251 INFO [24392]: QUERY_STRING = -- 22:05:29.251 INFO [24392]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:05:29.289 INFO [24392]: COREGRADE is stopping... -- 22:05:29.289 DEBUG [24392]: Closing database connection -- 22:05:29.289 SQL [24392]: pgsql_close() -- 22:05:29.470 INFO [24392]: COREGRADE is starting... -- 22:05:29.470 INFO [24392]: Version from config: 1.0 -- 22:05:29.470 DEBUG [24392]: Connecting to database... -- 22:05:29.470 DEBUG [24392]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:05:29.470 SQL [24392]: pgsql_db_connect() -- 22:05:29.477 INFO [24391]: COREGRADE is starting... -- 22:05:29.478 INFO [24391]: Version from config: 1.0 -- 22:05:29.478 DEBUG [24391]: Connecting to database... -- 22:05:29.478 DEBUG [24391]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:05:29.478 SQL [24391]: pgsql_db_connect() -- 22:05:29.474 DEBUG [24392]: Database connection successful -- 22:05:29.474 INFO [24392]: _SERVER found -- 22:05:29.474 INFO [24392]: REMOTE_ADDR = 192.168.1.13 -- 22:05:29.474 INFO [24392]: SERVER_NAME = oameye.works.coregrade.com -- 22:05:29.474 INFO [24392]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=lpm01lknjdokio0o10dir7fr0jgs1mc1 -- 22:05:29.474 INFO [24392]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 22:05:29.474 INFO [24392]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:05:29.487 INFO [24392]: COREGRADE is stopping... -- 22:05:29.487 DEBUG [24392]: Closing database connection -- 22:05:29.487 SQL [24392]: pgsql_close() -- 22:05:29.482 DEBUG [24391]: Database connection successful -- 22:05:29.482 INFO [24391]: _SERVER found -- 22:05:29.482 INFO [24391]: REMOTE_ADDR = 192.168.1.13 -- 22:05:29.482 INFO [24391]: SERVER_NAME = oameye.works.coregrade.com -- 22:05:29.482 INFO [24391]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=lpm01lknjdokio0o10dir7fr0jgs1mc1 -- 22:05:29.482 INFO [24391]: QUERY_STRING = /assets/img/footer_1.jpg -- 22:05:29.482 INFO [24391]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:05:29.495 INFO [24391]: COREGRADE is stopping... -- 22:05:29.495 DEBUG [24391]: Closing database connection -- 22:05:29.495 SQL [24391]: pgsql_close() -- 22:05:45.881 INFO [24393]: COREGRADE is starting... -- 22:05:45.882 INFO [24393]: Version from config: 1.0 -- 22:05:45.882 DEBUG [24393]: Connecting to database... -- 22:05:45.882 DEBUG [24393]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:05:45.882 SQL [24393]: pgsql_db_connect() -- 22:05:45.898 INFO [24404]: COREGRADE is starting... -- 22:05:45.899 INFO [24404]: Version from config: 1.0 -- 22:05:45.899 DEBUG [24404]: Connecting to database... -- 22:05:45.899 DEBUG [24404]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:05:45.899 SQL [24404]: pgsql_db_connect() -- 22:05:45.886 DEBUG [24393]: Database connection successful -- 22:05:45.886 INFO [24393]: _SERVER found -- 22:05:45.886 INFO [24393]: REMOTE_ADDR = 192.168.1.13 -- 22:05:45.886 INFO [24393]: SERVER_NAME = oameye.works.coregrade.com -- 22:05:45.886 INFO [24393]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=lpm01lknjdokio0o10dir7fr0jgs1mc1; _gat_gtag_UA_54829827_2=1 -- 22:05:45.886 INFO [24393]: QUERY_STRING = /auth -- 22:05:45.886 INFO [24393]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:05:45.918 INFO [24393]: COREGRADE is stopping... -- 22:05:45.918 DEBUG [24393]: Closing database connection -- 22:05:45.918 SQL [24393]: pgsql_close() -- 22:05:45.903 DEBUG [24404]: Database connection successful -- 22:05:45.903 INFO [24404]: _SERVER found -- 22:05:45.903 INFO [24404]: REMOTE_ADDR = 192.168.1.13 -- 22:05:45.903 INFO [24404]: SERVER_NAME = oameye.works.coregrade.com -- 22:05:45.903 INFO [24404]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=lpm01lknjdokio0o10dir7fr0jgs1mc1; _gat_gtag_UA_54829827_2=1 -- 22:05:45.903 INFO [24404]: QUERY_STRING = /welcome/viewLogin -- 22:05:45.903 INFO [24404]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:05:45.938 INFO [24404]: COREGRADE is stopping... -- 22:05:45.938 DEBUG [24404]: Closing database connection -- 22:05:45.938 SQL [24404]: pgsql_close() -- 22:05:46.217 INFO [24404]: COREGRADE is starting... -- 22:05:46.217 INFO [24404]: Version from config: 1.0 -- 22:05:46.217 DEBUG [24404]: Connecting to database... -- 22:05:46.217 DEBUG [24404]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:05:46.217 SQL [24404]: pgsql_db_connect() -- 22:05:46.221 DEBUG [24404]: Database connection successful -- 22:05:46.221 INFO [24404]: _SERVER found -- 22:05:46.221 INFO [24404]: REMOTE_ADDR = 192.168.1.13 -- 22:05:46.221 INFO [24404]: SERVER_NAME = oameye.works.coregrade.com -- 22:05:46.221 INFO [24404]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=lpm01lknjdokio0o10dir7fr0jgs1mc1; _gat_gtag_UA_54829827_2=1 -- 22:05:46.221 INFO [24404]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:05:46.221 INFO [24404]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:05:46.233 INFO [24404]: COREGRADE is stopping... -- 22:05:46.233 DEBUG [24404]: Closing database connection -- 22:05:46.233 SQL [24404]: pgsql_close() -- 22:05:46.246 INFO [24404]: COREGRADE is starting... -- 22:05:46.246 INFO [24404]: Version from config: 1.0 -- 22:05:46.246 DEBUG [24404]: Connecting to database... -- 22:05:46.247 DEBUG [24404]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:05:46.247 SQL [24404]: pgsql_db_connect() -- 22:05:46.250 DEBUG [24404]: Database connection successful -- 22:05:46.250 INFO [24404]: _SERVER found -- 22:05:46.250 INFO [24404]: REMOTE_ADDR = 192.168.1.13 -- 22:05:46.250 INFO [24404]: SERVER_NAME = oameye.works.coregrade.com -- 22:05:46.250 INFO [24404]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=lpm01lknjdokio0o10dir7fr0jgs1mc1; _gat_gtag_UA_54829827_2=1 -- 22:05:46.250 INFO [24404]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:05:46.250 INFO [24404]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:05:46.261 INFO [24404]: COREGRADE is stopping... -- 22:05:46.261 DEBUG [24404]: Closing database connection -- 22:05:46.261 SQL [24404]: pgsql_close() -- 22:06:06.161 INFO [24626]: COREGRADE is starting... -- 22:06:06.161 INFO [24626]: Version from config: 1.0 -- 22:06:06.161 DEBUG [24626]: Connecting to database... -- 22:06:06.161 DEBUG [24626]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:06:06.161 SQL [24626]: pgsql_db_connect() -- 22:06:06.203 INFO [24626]: COREGRADE is starting... -- 22:06:06.203 INFO [24626]: Version from config: 1.0 -- 22:06:06.203 DEBUG [24626]: Connecting to database... -- 22:06:06.203 DEBUG [24626]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:06:06.203 SQL [24626]: pgsql_db_connect() -- 22:06:06.207 DEBUG [24626]: Database connection successful -- 22:06:06.207 INFO [24626]: _SERVER found -- 22:06:06.207 INFO [24626]: REMOTE_ADDR = 192.168.1.13 -- 22:06:06.207 INFO [24626]: SERVER_NAME = oameye.works.coregrade.com -- 22:06:06.207 INFO [24626]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=lpm01lknjdokio0o10dir7fr0jgs1mc1; _gat_gtag_UA_54829827_2=1 -- 22:06:06.207 INFO [24626]: QUERY_STRING = -- 22:06:06.207 INFO [24626]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:06:06.207 INFO [24626]: SystemStatus()09-09-********~************ -- 22:06:06.207 INFO [24626]: long coregrade_api_main(CVars in, CVars &out) -- 22:06:06.207 INFO [24626]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 22:06:06.207 INFO [24626]: account calls -- 22:06:06.207 INFO [24626]: account_calls() -- 22:06:06.207 INFO [24626]: LoginCoreGradeAccount() -- 22:06:06.207 FLOG_MAX [24626]: REQ_STRING(username) -- 22:06:06.207 FLOG_MAX [24626]: REQ_STRING(password) -- 22:06:06.207 FLOG_MAX [24626]: REQ_STRING(sessionid) -- 22:06:06.207 FLOG_MAX [24626]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:06:06.207 SQL [24626]: pgsql_query() -- 22:06:06.207 SQL [24626]: About to run query: -- 22:06:06.207 SQL [24626]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 22:06:06.211 SQL [24626]: Found rows: 1 -- 22:06:06.211 FLOG_MAX [24626]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 22:06:06.211 INFO [24626]: long SessionCheck(long uid, const char *sessionid, int create ) -- 22:06:06.211 SQL [24626]: pgsql_exec() -- 22:06:06.211 SQL [24626]: About to run query: -- 22:06:06.211 SQL [24626]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 22:06:06.212 SQL [24626]: PQcmdTuples: 1 -- 22:06:06.212 SQL [24626]: Affected rows: 1 -- 22:06:06.212 SQL [24626]: pgsql_exec() -- 22:06:06.212 SQL [24626]: About to run query: -- 22:06:06.213 SQL [24626]: DELETE FROM members_session WHERE member_id=5 -- 22:06:06.213 SQL [24626]: PQcmdTuples: 0 -- 22:06:06.213 SQL [24626]: Affected rows: 0 -- 22:06:06.213 SQL [24626]: pgsql_query() -- 22:06:06.213 SQL [24626]: About to run query: -- 22:06:06.213 SQL [24626]: SELECT * FROM members_session WHERE member_id=5 AND session<>'105455107FF243592787C1E094C0B8F9' -- 22:06:06.214 SQL [24626]: Found rows: 0 -- 22:06:06.214 SQL [24626]: Found rows: 0 -- 22:06:06.214 FLOG_MAX [24626]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:06:06.214 SQL [24626]: pgsql_query() -- 22:06:06.214 SQL [24626]: About to run query: -- 22:06:06.214 SQL [24626]: SELECT * FROM members_session WHERE member_id=5 AND session='105455107FF243592787C1E094C0B8F9' -- 22:06:06.214 SQL [24626]: Found rows: 0 -- 22:06:06.214 SQL [24626]: Found rows: 0 -- 22:06:06.214 FLOG_MAX [24626]: insert_db_record() -- 22:06:06.214 SQL [24626]: pgsql_exec() -- 22:06:06.214 SQL [24626]: About to run query: -- 22:06:06.214 SQL [24626]: INSERT INTO members_session (member_id,session) VALUES ('5','105455107FF243592787C1E094C0B8F9') -- 22:06:06.216 SQL [24626]: PQcmdTuples: 1 -- 22:06:06.216 SQL [24626]: Affected rows: 1 -- 22:06:06.216 FLOG_MAX [24626]: SELECT currval('members_session_id_seq') -- 22:06:06.216 SQL [24626]: pgsql_query() -- 22:06:06.216 SQL [24626]: About to run query: -- 22:06:06.216 SQL [24626]: SELECT currval('members_session_id_seq') -- 22:06:06.216 SQL [24626]: Found rows: 1 -- 22:06:06.216 INFO [24626]: CreateDefaultPage() -- 22:06:06.216 FLOG_MAX [24626]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:06:06.216 SQL [24626]: pgsql_query() -- 22:06:06.216 SQL [24626]: About to run query: -- 22:06:06.216 SQL [24626]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 22:06:06.216 SQL [24626]: Found rows: 1 -- 22:06:06.216 FLOG_MAX [24626]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 22:06:06.216 SQL [24626]: pgsql_query() -- 22:06:06.216 SQL [24626]: About to run query: -- 22:06:06.216 SQL [24626]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 22:06:06.217 SQL [24626]: Found rows: 1 -- 22:06:06.217 INFO [24626]: /CreateDefaultPage() -- 22:06:06.217 INFO [24626]: /LoginCoreGradeAccount() -- 22:06:06.217 INFO [24626]: RET: added=2020-02-05 06:47:23.982154 -- 22:06:06.217 INFO [24626]: RET: email=ameye+11@chiefsoft.com -- 22:06:06.217 INFO [24626]: RET: firstname=Olu -- 22:06:06.217 INFO [24626]: RET: id=5 -- 22:06:06.217 INFO [24626]: RET: last_login= -- 22:06:06.217 INFO [24626]: RET: lastname=Amey -- 22:06:06.217 INFO [24626]: RET: loc=192.168.1.13 -- 22:06:06.217 INFO [24626]: RET: member_id=5 -- 22:06:06.217 INFO [24626]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 22:06:06.217 INFO [24626]: RET: phone= -- 22:06:06.217 INFO [24626]: RET: pid= -- 22:06:06.217 INFO [24626]: RET: result=YES I GET TO BACK END -- 22:06:06.217 INFO [24626]: RET: sessionid=105455107FF243592787C1E094C0B8F9 -- 22:06:06.217 INFO [24626]: RET: status=1 -- 22:06:06.217 INFO [24626]: RET: stauts=OK -- 22:06:06.217 INFO [24626]: RET: username=ameye+11@chiefsoft.com -- 22:06:06.217 INFO [24626]: RET: verified= -- 22:06:06.219 INFO [24626]: COREGRADE is stopping... -- 22:06:06.219 DEBUG [24626]: Closing database connection -- 22:06:06.219 SQL [24626]: pgsql_close() -- 22:06:06.165 DEBUG [24626]: Database connection successful -- 22:06:06.165 INFO [24626]: _SERVER found -- 22:06:06.165 INFO [24626]: REMOTE_ADDR = 192.168.1.13 -- 22:06:06.165 INFO [24626]: SERVER_NAME = oameye.works.coregrade.com -- 22:06:06.165 INFO [24626]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=lpm01lknjdokio0o10dir7fr0jgs1mc1; _gat_gtag_UA_54829827_2=1 -- 22:06:06.165 INFO [24626]: QUERY_STRING = /auth -- 22:06:06.165 INFO [24626]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:06:06.219 INFO [24626]: COREGRADE is stopping... -- 22:06:06.219 DEBUG [24626]: Closing database connection -- 22:06:06.219 SQL [24626]: pgsql_close() -- 22:06:06.242 INFO [24626]: COREGRADE is starting... -- 22:06:06.242 INFO [24626]: Version from config: 1.0 -- 22:06:06.242 DEBUG [24626]: Connecting to database... -- 22:06:06.242 DEBUG [24626]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:06:06.242 SQL [24626]: pgsql_db_connect() -- 22:06:06.246 DEBUG [24626]: Database connection successful -- 22:06:06.246 INFO [24626]: _SERVER found -- 22:06:06.246 INFO [24626]: REMOTE_ADDR = 192.168.1.13 -- 22:06:06.246 INFO [24626]: SERVER_NAME = oameye.works.coregrade.com -- 22:06:06.246 INFO [24626]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=lpm01lknjdokio0o10dir7fr0jgs1mc1; _gat_gtag_UA_54829827_2=1 -- 22:06:06.246 INFO [24626]: QUERY_STRING = /member/index -- 22:06:06.246 INFO [24626]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:06:06.287 INFO [24626]: COREGRADE is stopping... -- 22:06:06.287 DEBUG [24626]: Closing database connection -- 22:06:06.287 SQL [24626]: pgsql_close() -- 22:06:06.624 INFO [24626]: COREGRADE is starting... -- 22:06:06.625 INFO [24626]: Version from config: 1.0 -- 22:06:06.625 DEBUG [24626]: Connecting to database... -- 22:06:06.625 DEBUG [24626]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:06:06.625 SQL [24626]: pgsql_db_connect() -- 22:06:06.629 DEBUG [24626]: Database connection successful -- 22:06:06.629 INFO [24626]: _SERVER found -- 22:06:06.629 INFO [24626]: REMOTE_ADDR = 192.168.1.13 -- 22:06:06.629 INFO [24626]: SERVER_NAME = oameye.works.coregrade.com -- 22:06:06.629 INFO [24626]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=lpm01lknjdokio0o10dir7fr0jgs1mc1; _gat_gtag_UA_54829827_2=1 -- 22:06:06.629 INFO [24626]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:06:06.629 INFO [24626]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:06:06.640 INFO [24626]: COREGRADE is stopping... -- 22:06:06.640 DEBUG [24626]: Closing database connection -- 22:06:06.640 SQL [24626]: pgsql_close() -- 22:06:06.684 INFO [24626]: COREGRADE is starting... -- 22:06:06.684 INFO [24626]: Version from config: 1.0 -- 22:06:06.684 DEBUG [24626]: Connecting to database... -- 22:06:06.684 DEBUG [24626]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:06:06.684 SQL [24626]: pgsql_db_connect() -- 22:06:06.688 DEBUG [24626]: Database connection successful -- 22:06:06.688 INFO [24626]: _SERVER found -- 22:06:06.688 INFO [24626]: REMOTE_ADDR = 192.168.1.13 -- 22:06:06.688 INFO [24626]: SERVER_NAME = oameye.works.coregrade.com -- 22:06:06.688 INFO [24626]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=lpm01lknjdokio0o10dir7fr0jgs1mc1; _gat_gtag_UA_54829827_2=1 -- 22:06:06.688 INFO [24626]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:06:06.688 INFO [24626]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:06:06.699 INFO [24626]: COREGRADE is stopping... -- 22:06:06.699 DEBUG [24626]: Closing database connection -- 22:06:06.699 SQL [24626]: pgsql_close() -- 22:06:09.790 INFO [24626]: COREGRADE is starting... -- 22:06:09.790 INFO [24626]: Version from config: 1.0 -- 22:06:09.790 DEBUG [24626]: Connecting to database... -- 22:06:09.790 DEBUG [24626]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:06:09.790 SQL [24626]: pgsql_db_connect() -- 22:06:09.794 DEBUG [24626]: Database connection successful -- 22:06:09.794 INFO [24626]: _SERVER found -- 22:06:09.794 INFO [24626]: REMOTE_ADDR = 192.168.1.13 -- 22:06:09.794 INFO [24626]: SERVER_NAME = oameye.works.coregrade.com -- 22:06:09.794 INFO [24626]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=lpm01lknjdokio0o10dir7fr0jgs1mc1; _gat_gtag_UA_54829827_2=1 -- 22:06:09.794 INFO [24626]: QUERY_STRING = /member/page -- 22:06:09.794 INFO [24626]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:06:09.833 INFO [24626]: COREGRADE is stopping... -- 22:06:09.833 DEBUG [24626]: Closing database connection -- 22:06:09.833 SQL [24626]: pgsql_close() -- 22:06:10.009 INFO [24626]: COREGRADE is starting... -- 22:06:10.009 INFO [24626]: Version from config: 1.0 -- 22:06:10.009 DEBUG [24626]: Connecting to database... -- 22:06:10.009 DEBUG [24626]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:06:10.009 SQL [24626]: pgsql_db_connect() -- 22:06:10.013 DEBUG [24626]: Database connection successful -- 22:06:10.013 INFO [24626]: _SERVER found -- 22:06:10.013 INFO [24626]: REMOTE_ADDR = 192.168.1.13 -- 22:06:10.013 INFO [24626]: SERVER_NAME = oameye.works.coregrade.com -- 22:06:10.013 INFO [24626]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=lpm01lknjdokio0o10dir7fr0jgs1mc1; _gat_gtag_UA_54829827_2=1 -- 22:06:10.013 INFO [24626]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:06:10.013 INFO [24626]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:06:10.024 INFO [24626]: COREGRADE is stopping... -- 22:06:10.024 DEBUG [24626]: Closing database connection -- 22:06:10.024 SQL [24626]: pgsql_close() -- 22:06:10.255 INFO [24626]: COREGRADE is starting... -- 22:06:10.256 INFO [24626]: Version from config: 1.0 -- 22:06:10.256 DEBUG [24626]: Connecting to database... -- 22:06:10.256 DEBUG [24626]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:06:10.256 SQL [24626]: pgsql_db_connect() -- 22:06:10.260 DEBUG [24626]: Database connection successful -- 22:06:10.260 INFO [24626]: _SERVER found -- 22:06:10.260 INFO [24626]: REMOTE_ADDR = 192.168.1.13 -- 22:06:10.260 INFO [24626]: SERVER_NAME = oameye.works.coregrade.com -- 22:06:10.260 INFO [24626]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=lpm01lknjdokio0o10dir7fr0jgs1mc1; _gat_gtag_UA_54829827_2=1 -- 22:06:10.260 INFO [24626]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:06:10.260 INFO [24626]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:06:10.271 INFO [24626]: COREGRADE is stopping... -- 22:06:10.271 DEBUG [24626]: Closing database connection -- 22:06:10.271 SQL [24626]: pgsql_close() -- 22:06:19.906 INFO [24411]: COREGRADE is starting... -- 22:06:19.906 INFO [24411]: Version from config: 1.0 -- 22:06:19.906 DEBUG [24411]: Connecting to database... -- 22:06:19.906 DEBUG [24411]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:06:19.906 SQL [24411]: pgsql_db_connect() -- 22:06:19.910 DEBUG [24411]: Database connection successful -- 22:06:19.910 INFO [24411]: _SERVER found -- 22:06:19.910 INFO [24411]: REMOTE_ADDR = 192.168.1.13 -- 22:06:19.910 INFO [24411]: SERVER_NAME = oameye.works.coregrade.com -- 22:06:19.910 INFO [24411]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=lpm01lknjdokio0o10dir7fr0jgs1mc1; _gat_gtag_UA_54829827_2=1 -- 22:06:19.910 INFO [24411]: QUERY_STRING = /member/viewCardAddAction -- 22:06:19.910 INFO [24411]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:06:19.945 INFO [24411]: COREGRADE is stopping... -- 22:06:19.945 DEBUG [24411]: Closing database connection -- 22:06:19.945 SQL [24411]: pgsql_close() -- 23:03:05.174 INFO [24390]: COREGRADE is starting... -- 23:03:05.174 INFO [24390]: Version from config: 1.0 -- 23:03:05.174 DEBUG [24390]: Connecting to database... -- 23:03:05.174 DEBUG [24390]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:03:05.174 SQL [24390]: pgsql_db_connect() -- 23:03:05.179 DEBUG [24390]: Database connection successful -- 23:03:05.179 INFO [24390]: _SERVER found -- 23:03:05.179 INFO [24390]: REMOTE_ADDR = 192.168.1.13 -- 23:03:05.179 INFO [24390]: SERVER_NAME = oameye.works.coregrade.com -- 23:03:05.179 INFO [24390]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=lpm01lknjdokio0o10dir7fr0jgs1mc1 -- 23:03:05.179 INFO [24390]: QUERY_STRING = -- 23:03:05.179 INFO [24390]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:03:05.224 INFO [24390]: COREGRADE is stopping... -- 23:03:05.224 DEBUG [24390]: Closing database connection -- 23:03:05.224 SQL [24390]: pgsql_close() -- 23:03:05.374 INFO [24390]: COREGRADE is starting... -- 23:03:05.374 INFO [24389]: COREGRADE is starting... -- 23:03:05.374 INFO [24390]: Version from config: 1.0 -- 23:03:05.374 DEBUG [24390]: Connecting to database... -- 23:03:05.374 DEBUG [24390]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:03:05.374 SQL [24390]: pgsql_db_connect() -- 23:03:05.375 INFO [24389]: Version from config: 1.0 -- 23:03:05.375 DEBUG [24389]: Connecting to database... -- 23:03:05.375 DEBUG [24389]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:03:05.375 SQL [24389]: pgsql_db_connect() -- 23:03:05.379 DEBUG [24390]: Database connection successful -- 23:03:05.379 INFO [24390]: _SERVER found -- 23:03:05.379 INFO [24390]: REMOTE_ADDR = 192.168.1.13 -- 23:03:05.379 INFO [24390]: SERVER_NAME = oameye.works.coregrade.com -- 23:03:05.379 INFO [24390]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=v0f78e0bambgj7pdhb311e7a9ojldbjt -- 23:03:05.379 INFO [24390]: QUERY_STRING = /assets/img/footer_1.jpg -- 23:03:05.379 INFO [24390]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:03:05.390 INFO [24390]: COREGRADE is stopping... -- 23:03:05.390 DEBUG [24390]: Closing database connection -- 23:03:05.390 SQL [24390]: pgsql_close() -- 23:03:05.379 DEBUG [24389]: Database connection successful -- 23:03:05.379 INFO [24389]: _SERVER found -- 23:03:05.379 INFO [24389]: REMOTE_ADDR = 192.168.1.13 -- 23:03:05.379 INFO [24389]: SERVER_NAME = oameye.works.coregrade.com -- 23:03:05.379 INFO [24389]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=v0f78e0bambgj7pdhb311e7a9ojldbjt -- 23:03:05.379 INFO [24389]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 23:03:05.379 INFO [24389]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:03:05.391 INFO [24389]: COREGRADE is stopping... -- 23:03:05.391 DEBUG [24389]: Closing database connection -- 23:03:05.391 SQL [24389]: pgsql_close() -- 23:39:26.666 INFO [24392]: COREGRADE is starting... -- 23:39:26.666 INFO [24392]: Version from config: 1.0 -- 23:39:26.666 DEBUG [24392]: Connecting to database... -- 23:39:26.666 DEBUG [24392]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:39:26.666 SQL [24392]: pgsql_db_connect() -- 23:39:26.672 DEBUG [24392]: Database connection successful -- 23:39:26.672 INFO [24392]: _SERVER found -- 23:39:26.672 INFO [24392]: REMOTE_ADDR = 192.168.1.13 -- 23:39:26.672 INFO [24392]: SERVER_NAME = oameye.works.coregrade.com -- 23:39:26.672 INFO [24392]: QUERY_STRING = /Telerik.Web.UI.WebResource.axd -- 23:39:26.672 INFO [24392]: HTTP_X_FORWARDED_FOR = 128.14.134.134 -- 23:39:26.686 INFO [24392]: COREGRADE is stopping... -- 23:39:26.686 DEBUG [24392]: Closing database connection -- 23:39:26.686 SQL [24392]: pgsql_close() -- 00:46:10.295 INFO [24391]: COREGRADE is starting... -- 00:46:10.295 INFO [24391]: Version from config: 1.0 -- 00:46:10.295 DEBUG [24391]: Connecting to database... -- 00:46:10.295 DEBUG [24391]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:10.295 SQL [24391]: pgsql_db_connect() -- 00:46:10.300 DEBUG [24391]: Database connection successful -- 00:46:10.300 INFO [24391]: _SERVER found -- 00:46:10.300 INFO [24391]: REMOTE_ADDR = 192.168.1.13 -- 00:46:10.300 INFO [24391]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:10.300 INFO [24391]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=v0f78e0bambgj7pdhb311e7a9ojldbjt -- 00:46:10.300 INFO [24391]: QUERY_STRING = /auth -- 00:46:10.300 INFO [24391]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:10.339 INFO [24391]: COREGRADE is stopping... -- 00:46:10.339 DEBUG [24391]: Closing database connection -- 00:46:10.339 SQL [24391]: pgsql_close() -- 00:46:10.522 INFO [24391]: COREGRADE is starting... -- 00:46:10.522 INFO [24391]: Version from config: 1.0 -- 00:46:10.522 DEBUG [24391]: Connecting to database... -- 00:46:10.522 DEBUG [24391]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:10.522 SQL [24391]: pgsql_db_connect() -- 00:46:10.527 DEBUG [24391]: Database connection successful -- 00:46:10.527 INFO [24391]: _SERVER found -- 00:46:10.527 INFO [24391]: REMOTE_ADDR = 192.168.1.13 -- 00:46:10.527 INFO [24391]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:10.527 INFO [24391]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=s7vp0430lof20bniljfb926lsmp4apeg -- 00:46:10.527 INFO [24391]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 00:46:10.527 INFO [24391]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:10.539 INFO [24391]: COREGRADE is stopping... -- 00:46:10.539 DEBUG [24391]: Closing database connection -- 00:46:10.539 SQL [24391]: pgsql_close() -- 00:46:10.834 INFO [24391]: COREGRADE is starting... -- 00:46:10.834 INFO [24391]: Version from config: 1.0 -- 00:46:10.834 DEBUG [24391]: Connecting to database... -- 00:46:10.834 DEBUG [24391]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:10.834 SQL [24391]: pgsql_db_connect() -- 00:46:10.838 DEBUG [24391]: Database connection successful -- 00:46:10.838 INFO [24391]: _SERVER found -- 00:46:10.838 INFO [24391]: REMOTE_ADDR = 192.168.1.13 -- 00:46:10.838 INFO [24391]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:10.838 INFO [24391]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=s7vp0430lof20bniljfb926lsmp4apeg -- 00:46:10.838 INFO [24391]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:46:10.838 INFO [24391]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:10.850 INFO [24391]: COREGRADE is stopping... -- 00:46:10.850 DEBUG [24391]: Closing database connection -- 00:46:10.850 SQL [24391]: pgsql_close() -- 02:18:56.190 INFO [24393]: COREGRADE is starting... -- 02:18:56.190 INFO [24393]: Version from config: 1.0 -- 02:18:56.190 DEBUG [24393]: Connecting to database... -- 02:18:56.190 DEBUG [24393]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:18:56.190 SQL [24393]: pgsql_db_connect() -- 02:18:56.195 DEBUG [24393]: Database connection successful -- 02:18:56.195 INFO [24393]: _SERVER found -- 02:18:56.195 INFO [24393]: REMOTE_ADDR = 192.168.1.13 -- 02:18:56.195 INFO [24393]: SERVER_NAME = oameye.works.coregrade.com -- 02:18:56.195 INFO [24393]: QUERY_STRING = -- 02:18:56.195 INFO [24393]: HTTP_X_FORWARDED_FOR = 106.75.85.103 -- 02:18:56.236 INFO [24393]: COREGRADE is stopping... -- 02:18:56.236 DEBUG [24393]: Closing database connection -- 02:18:56.236 SQL [24393]: pgsql_close() -- 02:20:58.555 INFO [24626]: COREGRADE is starting... -- 02:20:58.556 INFO [24626]: Version from config: 1.0 -- 02:20:58.556 DEBUG [24626]: Connecting to database... -- 02:20:58.556 DEBUG [24626]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:20:58.556 SQL [24626]: pgsql_db_connect() -- 02:20:58.560 DEBUG [24626]: Database connection successful -- 02:20:58.560 INFO [24626]: _SERVER found -- 02:20:58.560 INFO [24626]: REMOTE_ADDR = 192.168.1.13 -- 02:20:58.560 INFO [24626]: SERVER_NAME = tokslaw.works.coregrade.com -- 02:20:58.560 INFO [24626]: QUERY_STRING = -- 02:20:58.560 INFO [24626]: HTTP_X_FORWARDED_FOR = 106.75.85.117 -- 02:20:58.598 INFO [24626]: COREGRADE is stopping... -- 02:20:58.598 DEBUG [24626]: Closing database connection -- 02:20:58.598 SQL [24626]: pgsql_close() -- 03:50:35.051 INFO [24411]: COREGRADE is starting... -- 03:50:35.052 INFO [24411]: Version from config: 1.0 -- 03:50:35.052 DEBUG [24411]: Connecting to database... -- 03:50:35.052 DEBUG [24411]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:50:35.052 SQL [24411]: pgsql_db_connect() -- 03:50:35.058 DEBUG [24411]: Database connection successful -- 03:50:35.058 INFO [24411]: _SERVER found -- 03:50:35.058 INFO [24411]: REMOTE_ADDR = 192.168.1.13 -- 03:50:35.058 INFO [24411]: SERVER_NAME = oameye.works.coregrade.com -- 03:50:35.058 INFO [24411]: QUERY_STRING = -- 03:50:35.058 INFO [24411]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 03:50:35.099 INFO [24411]: COREGRADE is stopping... -- 03:50:35.099 DEBUG [24411]: Closing database connection -- 03:50:35.099 SQL [24411]: pgsql_close() -- 03:50:35.508 INFO [24392]: COREGRADE is starting... -- 03:50:35.508 INFO [24392]: Version from config: 1.0 -- 03:50:35.508 DEBUG [24392]: Connecting to database... -- 03:50:35.508 DEBUG [24392]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:50:35.508 SQL [24392]: pgsql_db_connect() -- 03:50:35.514 INFO [24389]: COREGRADE is starting... -- 03:50:35.514 INFO [24389]: Version from config: 1.0 -- 03:50:35.514 DEBUG [24389]: Connecting to database... -- 03:50:35.514 DEBUG [24389]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:50:35.514 SQL [24389]: pgsql_db_connect() -- 03:50:35.512 DEBUG [24392]: Database connection successful -- 03:50:35.512 INFO [24392]: _SERVER found -- 03:50:35.512 INFO [24392]: REMOTE_ADDR = 192.168.1.13 -- 03:50:35.512 INFO [24392]: SERVER_NAME = oameye.works.coregrade.com -- 03:50:35.512 INFO [24392]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.392227632.1581411035; ci_session=qj2uv8992ngsjbm3jaggsq5ae8n6gr0e -- 03:50:35.512 INFO [24392]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 03:50:35.512 INFO [24392]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 03:50:35.526 INFO [24392]: COREGRADE is stopping... -- 03:50:35.526 DEBUG [24392]: Closing database connection -- 03:50:35.526 SQL [24392]: pgsql_close() -- 03:50:35.518 DEBUG [24389]: Database connection successful -- 03:50:35.518 INFO [24389]: _SERVER found -- 03:50:35.518 INFO [24389]: REMOTE_ADDR = 192.168.1.13 -- 03:50:35.518 INFO [24389]: SERVER_NAME = oameye.works.coregrade.com -- 03:50:35.518 INFO [24389]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.392227632.1581411035; ci_session=qj2uv8992ngsjbm3jaggsq5ae8n6gr0e -- 03:50:35.518 INFO [24389]: QUERY_STRING = /assets/img/footer_1.jpg -- 03:50:35.518 INFO [24389]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 03:50:35.530 INFO [24389]: COREGRADE is stopping... -- 03:50:35.530 DEBUG [24389]: Closing database connection -- 03:50:35.530 SQL [24389]: pgsql_close() -- 03:53:13.679 INFO [24626]: COREGRADE is starting... -- 03:53:13.679 INFO [24626]: Version from config: 1.0 -- 03:53:13.679 DEBUG [24626]: Connecting to database... -- 03:53:13.679 DEBUG [24626]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:53:13.679 SQL [24626]: pgsql_db_connect() -- 03:53:13.683 DEBUG [24626]: Database connection successful -- 03:53:13.683 INFO [24626]: _SERVER found -- 03:53:13.683 INFO [24626]: REMOTE_ADDR = 192.168.1.13 -- 03:53:13.683 INFO [24626]: SERVER_NAME = oameye.works.coregrade.com -- 03:53:13.683 INFO [24626]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gid=GA1.2.392227632.1581411035; ci_session=qj2uv8992ngsjbm3jaggsq5ae8n6gr0e -- 03:53:13.683 INFO [24626]: QUERY_STRING = /home/howitworks -- 03:53:13.683 INFO [24626]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 03:53:13.715 INFO [24626]: COREGRADE is stopping... -- 03:53:13.715 DEBUG [24626]: Closing database connection -- 03:53:13.715 SQL [24626]: pgsql_close() -- 03:53:13.850 INFO [26249]: COREGRADE is starting... -- 03:53:13.850 INFO [26249]: Version from config: 1.0 -- 03:53:13.850 DEBUG [26249]: Connecting to database... -- 03:53:13.850 DEBUG [26249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:53:13.850 SQL [26249]: pgsql_db_connect() -- 03:53:13.854 DEBUG [26249]: Database connection successful -- 03:53:13.854 INFO [26249]: _SERVER found -- 03:53:13.854 INFO [26249]: REMOTE_ADDR = 192.168.1.13 -- 03:53:13.854 INFO [26249]: SERVER_NAME = oameye.works.coregrade.com -- 03:53:13.854 INFO [26249]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gid=GA1.2.392227632.1581411035; ci_session=qj2uv8992ngsjbm3jaggsq5ae8n6gr0e -- 03:53:13.854 INFO [26249]: QUERY_STRING = /favicon.ico -- 03:53:13.854 INFO [26249]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 03:53:13.869 INFO [26249]: COREGRADE is stopping... -- 03:53:13.869 DEBUG [26249]: Closing database connection -- 03:53:13.869 SQL [26249]: pgsql_close() -- 03:53:23.081 INFO [26250]: COREGRADE is starting... -- 03:53:23.082 INFO [26250]: Version from config: 1.0 -- 03:53:23.082 DEBUG [26250]: Connecting to database... -- 03:53:23.082 DEBUG [26250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:53:23.082 SQL [26250]: pgsql_db_connect() -- 03:53:23.086 DEBUG [26250]: Database connection successful -- 03:53:23.086 INFO [26250]: _SERVER found -- 03:53:23.086 INFO [26250]: REMOTE_ADDR = 192.168.1.13 -- 03:53:23.086 INFO [26250]: SERVER_NAME = oameye.works.coregrade.com -- 03:53:23.086 INFO [26250]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gid=GA1.2.392227632.1581411035; ci_session=qj2uv8992ngsjbm3jaggsq5ae8n6gr0e -- 03:53:23.086 INFO [26250]: QUERY_STRING = -- 03:53:23.086 INFO [26250]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 03:53:23.130 INFO [26250]: COREGRADE is stopping... -- 03:53:23.130 DEBUG [26250]: Closing database connection -- 03:53:23.130 SQL [26250]: pgsql_close() -- 03:53:33.032 INFO [26251]: COREGRADE is starting... -- 03:53:33.033 INFO [26251]: Version from config: 1.0 -- 03:53:33.033 DEBUG [26251]: Connecting to database... -- 03:53:33.033 DEBUG [26251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:53:33.033 SQL [26251]: pgsql_db_connect() -- 03:53:33.037 DEBUG [26251]: Database connection successful -- 03:53:33.037 INFO [26251]: _SERVER found -- 03:53:33.037 INFO [26251]: REMOTE_ADDR = 192.168.1.13 -- 03:53:33.037 INFO [26251]: SERVER_NAME = oameye.works.coregrade.com -- 03:53:33.037 INFO [26251]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.392227632.1581411035; ci_session=qj2uv8992ngsjbm3jaggsq5ae8n6gr0e -- 03:53:33.037 INFO [26251]: QUERY_STRING = /auth -- 03:53:33.037 INFO [26251]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 03:53:33.075 INFO [26251]: COREGRADE is stopping... -- 03:53:33.075 DEBUG [26251]: Closing database connection -- 03:53:33.075 SQL [26251]: pgsql_close() -- 03:53:33.345 INFO [26251]: COREGRADE is starting... -- 03:53:33.345 INFO [26251]: Version from config: 1.0 -- 03:53:33.345 DEBUG [26251]: Connecting to database... -- 03:53:33.345 DEBUG [26251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:53:33.345 SQL [26251]: pgsql_db_connect() -- 03:53:33.349 DEBUG [26251]: Database connection successful -- 03:53:33.349 INFO [26251]: _SERVER found -- 03:53:33.349 INFO [26251]: REMOTE_ADDR = 192.168.1.13 -- 03:53:33.349 INFO [26251]: SERVER_NAME = oameye.works.coregrade.com -- 03:53:33.349 INFO [26251]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.392227632.1581411035; ci_session=qj2uv8992ngsjbm3jaggsq5ae8n6gr0e -- 03:53:33.349 INFO [26251]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 03:53:33.349 INFO [26251]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 03:53:33.361 INFO [26251]: COREGRADE is stopping... -- 03:53:33.361 DEBUG [26251]: Closing database connection -- 03:53:33.361 SQL [26251]: pgsql_close() -- 03:53:33.478 INFO [26251]: COREGRADE is starting... -- 03:53:33.479 INFO [26251]: Version from config: 1.0 -- 03:53:33.479 DEBUG [26251]: Connecting to database... -- 03:53:33.479 DEBUG [26251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:53:33.479 SQL [26251]: pgsql_db_connect() -- 03:53:33.483 DEBUG [26251]: Database connection successful -- 03:53:33.483 INFO [26251]: _SERVER found -- 03:53:33.483 INFO [26251]: REMOTE_ADDR = 192.168.1.13 -- 03:53:33.483 INFO [26251]: SERVER_NAME = oameye.works.coregrade.com -- 03:53:33.483 INFO [26251]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.392227632.1581411035; ci_session=qj2uv8992ngsjbm3jaggsq5ae8n6gr0e -- 03:53:33.483 INFO [26251]: QUERY_STRING = /app-assets/data/locales/en.json -- 03:53:33.483 INFO [26251]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 03:53:33.495 INFO [26251]: COREGRADE is stopping... -- 03:53:33.495 DEBUG [26251]: Closing database connection -- 03:53:33.495 SQL [26251]: pgsql_close() -- 03:54:02.198 INFO [24389]: COREGRADE is starting... -- 03:54:02.199 INFO [24389]: Version from config: 1.0 -- 03:54:02.199 DEBUG [24389]: Connecting to database... -- 03:54:02.199 DEBUG [24389]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:54:02.199 SQL [24389]: pgsql_db_connect() -- 03:54:02.203 DEBUG [24389]: Database connection successful -- 03:54:02.203 INFO [24389]: _SERVER found -- 03:54:02.203 INFO [24389]: REMOTE_ADDR = 192.168.1.13 -- 03:54:02.203 INFO [24389]: SERVER_NAME = oameye.works.coregrade.com -- 03:54:02.203 INFO [24389]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.392227632.1581411035; ci_session=qj2uv8992ngsjbm3jaggsq5ae8n6gr0e -- 03:54:02.203 INFO [24389]: QUERY_STRING = /auth/newuser -- 03:54:02.203 INFO [24389]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 03:54:02.235 INFO [24389]: COREGRADE is stopping... -- 03:54:02.235 DEBUG [24389]: Closing database connection -- 03:54:02.235 SQL [24389]: pgsql_close() -- 03:54:02.391 INFO [24389]: COREGRADE is starting... -- 03:54:02.392 INFO [24389]: Version from config: 1.0 -- 03:54:02.392 DEBUG [24389]: Connecting to database... -- 03:54:02.392 DEBUG [24389]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:54:02.392 SQL [24389]: pgsql_db_connect() -- 03:54:02.396 DEBUG [24389]: Database connection successful -- 03:54:02.396 INFO [24389]: _SERVER found -- 03:54:02.396 INFO [24389]: REMOTE_ADDR = 192.168.1.13 -- 03:54:02.396 INFO [24389]: SERVER_NAME = oameye.works.coregrade.com -- 03:54:02.396 INFO [24389]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.392227632.1581411035; ci_session=qj2uv8992ngsjbm3jaggsq5ae8n6gr0e -- 03:54:02.396 INFO [24389]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 03:54:02.396 INFO [24389]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 03:54:02.407 INFO [24389]: COREGRADE is stopping... -- 03:54:02.407 DEBUG [24389]: Closing database connection -- 03:54:02.407 SQL [24389]: pgsql_close() -- 03:54:02.413 INFO [24411]: COREGRADE is starting... -- 03:54:02.413 INFO [24411]: Version from config: 1.0 -- 03:54:02.413 DEBUG [24411]: Connecting to database... -- 03:54:02.413 DEBUG [24411]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:54:02.413 SQL [24411]: pgsql_db_connect() -- 03:54:02.417 DEBUG [24411]: Database connection successful -- 03:54:02.417 INFO [24411]: _SERVER found -- 03:54:02.417 INFO [24411]: REMOTE_ADDR = 192.168.1.13 -- 03:54:02.417 INFO [24411]: SERVER_NAME = oameye.works.coregrade.com -- 03:54:02.417 INFO [24411]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.392227632.1581411035; ci_session=qj2uv8992ngsjbm3jaggsq5ae8n6gr0e -- 03:54:02.417 INFO [24411]: QUERY_STRING = /app-assets/data/locales/en.json -- 03:54:02.417 INFO [24411]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 03:54:02.429 INFO [24411]: COREGRADE is stopping... -- 03:54:02.429 DEBUG [24411]: Closing database connection -- 03:54:02.429 SQL [24411]: pgsql_close() -- 03:55:02.782 INFO [24393]: COREGRADE is starting... -- 03:55:02.783 INFO [24393]: Version from config: 1.0 -- 03:55:02.783 DEBUG [24393]: Connecting to database... -- 03:55:02.783 DEBUG [24393]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:55:02.783 SQL [24393]: pgsql_db_connect() -- 03:55:02.819 INFO [24393]: COREGRADE is starting... -- 03:55:02.819 INFO [24393]: Version from config: 1.0 -- 03:55:02.819 DEBUG [24393]: Connecting to database... -- 03:55:02.819 DEBUG [24393]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:55:02.819 SQL [24393]: pgsql_db_connect() -- 03:55:02.823 DEBUG [24393]: Database connection successful -- 03:55:02.824 INFO [24393]: _SERVER found -- 03:55:02.824 INFO [24393]: REMOTE_ADDR = 192.168.1.13 -- 03:55:02.824 INFO [24393]: SERVER_NAME = oameye.works.coregrade.com -- 03:55:02.824 INFO [24393]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gid=GA1.2.392227632.1581411035; ci_session=qj2uv8992ngsjbm3jaggsq5ae8n6gr0e -- 03:55:02.824 INFO [24393]: QUERY_STRING = -- 03:55:02.824 INFO [24393]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 03:55:02.824 INFO [24393]: SystemStatus()09-09-********~************ -- 03:55:02.824 INFO [24393]: long coregrade_api_main(CVars in, CVars &out) -- 03:55:02.824 INFO [24393]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 03:55:02.824 INFO [24393]: account calls -- 03:55:02.824 INFO [24393]: account_calls() -- 03:55:02.824 FLOG_MAX [24393]: REQ_STRING(username) -- 03:55:02.824 FLOG_MAX [24393]: REQ_STRING(firstname) -- 03:55:02.824 FLOG_MAX [24393]: REQ_STRING(lastname) -- 03:55:02.824 FLOG_MAX [24393]: REQ_STRING(email) -- 03:55:02.824 SQL [24393]: pgsql_query() -- 03:55:02.824 SQL [24393]: About to run query: -- 03:55:02.824 SQL [24393]: SELECT * FROM members WHERE LOWER(username) = LOWER('obaxnoma@gmail.com') -- 03:55:02.826 SQL [24393]: Found rows: 0 -- 03:55:02.826 SQL [24393]: Found rows: 0 -- 03:55:02.826 FLOG_MAX [24393]: insert_db_record() -- 03:55:02.826 SQL [24393]: pgsql_exec() -- 03:55:02.826 SQL [24393]: About to run query: -- 03:55:02.826 SQL [24393]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('obaxnoma@gmail.com','Obax','Noma','192.168.1.13','','obaxnoma@gmail.com','RS-1236442112-571543552-817741824') -- 03:55:02.828 SQL [24393]: PQcmdTuples: 1 -- 03:55:02.828 SQL [24393]: Affected rows: 1 -- 03:55:02.828 FLOG_MAX [24393]: SELECT currval('members_pending_id_seq') -- 03:55:02.828 SQL [24393]: pgsql_query() -- 03:55:02.828 SQL [24393]: About to run query: -- 03:55:02.828 SQL [24393]: SELECT currval('members_pending_id_seq') -- 03:55:02.828 SQL [24393]: Found rows: 1 -- 03:55:02.828 SQL [24393]: pgsql_query() -- 03:55:02.828 SQL [24393]: About to run query: -- 03:55:02.828 SQL [24393]: UPDATE members_pending SET password = md5('obaro001!') WHERE id = 10 -- 03:55:02.829 SQL [24393]: Found rows: 0 -- 03:55:02.829 SQL [24393]: Found rows: 0 -- 03:55:02.829 FLOG_MAX [24393]: long load_db_record( CVars &rec, const char * query, ... ) -- 03:55:02.829 SQL [24393]: pgsql_query() -- 03:55:02.829 SQL [24393]: About to run query: -- 03:55:02.829 SQL [24393]: SELECT * FROM members_pending WHERE id = 10 -- 03:55:02.830 SQL [24393]: Found rows: 1 -- 03:55:02.830 FLOG_MAX [24393]: load_db_record(SELECT * FROM members_pending WHERE id = 10 ) num_cols=13 -- 03:55:02.830 FLOG_MAX [24393]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 03:55:02.830 FLOG_MAX [24393]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1692 bytes -- 03:55:02.830 FLOG_MAX [24393]: Returning from FormFile() -- 03:55:02.830 FLOG_MAX [24393]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 03:55:02.830 FLOG_MAX [24393]: ESMTP( 10.0.0.23, support@coregrade.com, obaxnoma@gmail.com ) -- 03:55:02.830 FLOG_MAX [24393]: Prepare body -- 03:55:02.830 FLOG_MAX [24393]: Locate & extract subject -- 03:55:02.830 FLOG_MAX [24393]: Found subject: CoreGrade - Pending Signup - Verify obaxnoma@gmail.com -- 03:55:02.830 FLOG_MAX [24393]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t obaxnoma@gmail.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002!x -sub 'CoreGrade - Pending Signup - Verify obaxnoma@gmail.com' -M ' - - - -
-
- - - - - - -
CoreGrade
-Dear Obax, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-1236442112-571543552-817741824 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - -' -- 03:55:04.384 FLOG_MAX [24393]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiF4 -[S] 535 5.7.8 Error: authentication failed: -g="2" border="0" style="width:550px; font-size:12px;color:#333333;border-width: 1px;border-color: #9dcc7a;border-collapse: collapse;"> -CoreGrade - - -Dear Obax, - -Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. - -Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-1236442112-571543552-817741824 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! - - - -Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 - -CoreGrade Team - -oameye.works.coregrade.com - -To learn more about Groups click here - -To learn more about Group Rewards click here - -To see Offers click here - - - - - - - -
- - - - - - - -' -- 03:55:04.384 FLOG_MAX [24393]: - -END OF PIPE OUTPUT - - -- 03:55:04.384 FLOG_MAX [24393]: /ESMTP() -- 03:55:04.384 INFO [24393]: RET: action=11010 -- 03:55:04.384 INFO [24393]: RET: email=obaxnoma@gmail.com -- 03:55:04.384 INFO [24393]: RET: firstname=Obax -- 03:55:04.384 INFO [24393]: RET: lastname=Noma -- 03:55:04.384 INFO [24393]: RET: password=obaro001! -- 03:55:04.384 INFO [24393]: RET: pending_id=10 -- 03:55:04.384 INFO [24393]: RET: pid=100 -- 03:55:04.384 INFO [24393]: RET: status_message=Pending -- 03:55:04.384 INFO [24393]: RET: username=obaxnoma@gmail.com -- 03:55:04.387 INFO [24393]: COREGRADE is stopping... -- 03:55:04.387 DEBUG [24393]: Closing database connection -- 03:55:04.387 SQL [24393]: pgsql_close() -- 03:55:02.787 DEBUG [24393]: Database connection successful -- 03:55:02.787 INFO [24393]: _SERVER found -- 03:55:02.787 INFO [24393]: REMOTE_ADDR = 192.168.1.13 -- 03:55:02.787 INFO [24393]: SERVER_NAME = oameye.works.coregrade.com -- 03:55:02.787 INFO [24393]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gid=GA1.2.392227632.1581411035; ci_session=qj2uv8992ngsjbm3jaggsq5ae8n6gr0e -- 03:55:02.787 INFO [24393]: QUERY_STRING = /auth/newuser -- 03:55:02.787 INFO [24393]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 03:55:04.387 INFO [24393]: COREGRADE is stopping... -- 03:55:04.387 DEBUG [24393]: Closing database connection -- 03:55:04.387 SQL [24393]: pgsql_close() -- 03:55:04.541 INFO [24393]: COREGRADE is starting... -- 03:55:04.542 INFO [24393]: Version from config: 1.0 -- 03:55:04.542 DEBUG [24393]: Connecting to database... -- 03:55:04.542 DEBUG [24393]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:55:04.542 SQL [24393]: pgsql_db_connect() -- 03:55:04.546 DEBUG [24393]: Database connection successful -- 03:55:04.546 INFO [24393]: _SERVER found -- 03:55:04.546 INFO [24393]: REMOTE_ADDR = 192.168.1.13 -- 03:55:04.546 INFO [24393]: SERVER_NAME = oameye.works.coregrade.com -- 03:55:04.546 INFO [24393]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gid=GA1.2.392227632.1581411035; ci_session=qj2uv8992ngsjbm3jaggsq5ae8n6gr0e -- 03:55:04.546 INFO [24393]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 03:55:04.546 INFO [24393]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 03:55:04.557 INFO [24393]: COREGRADE is stopping... -- 03:55:04.557 DEBUG [24393]: Closing database connection -- 03:55:04.557 SQL [24393]: pgsql_close() -- 03:55:04.609 INFO [24626]: COREGRADE is starting... -- 03:55:04.610 INFO [24626]: Version from config: 1.0 -- 03:55:04.610 DEBUG [24626]: Connecting to database... -- 03:55:04.610 DEBUG [24626]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:55:04.610 SQL [24626]: pgsql_db_connect() -- 03:55:04.613 DEBUG [24626]: Database connection successful -- 03:55:04.613 INFO [24626]: _SERVER found -- 03:55:04.613 INFO [24626]: REMOTE_ADDR = 192.168.1.13 -- 03:55:04.613 INFO [24626]: SERVER_NAME = oameye.works.coregrade.com -- 03:55:04.613 INFO [24626]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gid=GA1.2.392227632.1581411035; ci_session=qj2uv8992ngsjbm3jaggsq5ae8n6gr0e -- 03:55:04.613 INFO [24626]: QUERY_STRING = /app-assets/data/locales/en.json -- 03:55:04.613 INFO [24626]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 03:55:04.625 INFO [24626]: COREGRADE is stopping... -- 03:55:04.625 DEBUG [24626]: Closing database connection -- 03:55:04.625 SQL [24626]: pgsql_close() -- 03:55:08.881 INFO [24393]: COREGRADE is starting... -- 03:55:08.881 INFO [24393]: Version from config: 1.0 -- 03:55:08.881 DEBUG [24393]: Connecting to database... -- 03:55:08.881 DEBUG [24393]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:55:08.881 SQL [24393]: pgsql_db_connect() -- 03:55:08.885 DEBUG [24393]: Database connection successful -- 03:55:08.885 INFO [24393]: _SERVER found -- 03:55:08.885 INFO [24393]: REMOTE_ADDR = 192.168.1.13 -- 03:55:08.885 INFO [24393]: SERVER_NAME = oameye.works.coregrade.com -- 03:55:08.885 INFO [24393]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gid=GA1.2.392227632.1581411035; ci_session=qj2uv8992ngsjbm3jaggsq5ae8n6gr0e -- 03:55:08.885 INFO [24393]: QUERY_STRING = /auth -- 03:55:08.885 INFO [24393]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 03:55:08.916 INFO [24393]: COREGRADE is stopping... -- 03:55:08.916 DEBUG [24393]: Closing database connection -- 03:55:08.916 SQL [24393]: pgsql_close() -- 03:55:08.972 INFO [24393]: COREGRADE is starting... -- 03:55:08.972 INFO [24393]: Version from config: 1.0 -- 03:55:08.972 DEBUG [24393]: Connecting to database... -- 03:55:08.972 DEBUG [24393]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:55:08.972 SQL [24393]: pgsql_db_connect() -- 03:55:08.980 INFO [24626]: COREGRADE is starting... -- 03:55:08.980 INFO [24626]: Version from config: 1.0 -- 03:55:08.980 DEBUG [24626]: Connecting to database... -- 03:55:08.980 DEBUG [24626]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:55:08.980 SQL [24626]: pgsql_db_connect() -- 03:55:08.976 DEBUG [24393]: Database connection successful -- 03:55:08.976 INFO [24393]: _SERVER found -- 03:55:08.976 INFO [24393]: REMOTE_ADDR = 192.168.1.13 -- 03:55:08.976 INFO [24393]: SERVER_NAME = oameye.works.coregrade.com -- 03:55:08.976 INFO [24393]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gid=GA1.2.392227632.1581411035; ci_session=qj2uv8992ngsjbm3jaggsq5ae8n6gr0e -- 03:55:08.976 INFO [24393]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 03:55:08.976 INFO [24393]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 03:55:08.987 INFO [24393]: COREGRADE is stopping... -- 03:55:08.987 DEBUG [24393]: Closing database connection -- 03:55:08.987 SQL [24393]: pgsql_close() -- 03:55:08.984 DEBUG [24626]: Database connection successful -- 03:55:08.984 INFO [24626]: _SERVER found -- 03:55:08.984 INFO [24626]: REMOTE_ADDR = 192.168.1.13 -- 03:55:08.984 INFO [24626]: SERVER_NAME = oameye.works.coregrade.com -- 03:55:08.984 INFO [24626]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gid=GA1.2.392227632.1581411035; ci_session=qj2uv8992ngsjbm3jaggsq5ae8n6gr0e -- 03:55:08.984 INFO [24626]: QUERY_STRING = /app-assets/data/locales/en.json -- 03:55:08.984 INFO [24626]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 03:55:08.995 INFO [24626]: COREGRADE is stopping... -- 03:55:08.995 DEBUG [24626]: Closing database connection -- 03:55:08.995 SQL [24626]: pgsql_close() -- 03:55:35.506 INFO [26249]: COREGRADE is starting... -- 03:55:35.506 INFO [26249]: Version from config: 1.0 -- 03:55:35.506 DEBUG [26249]: Connecting to database... -- 03:55:35.506 DEBUG [26249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:55:35.506 SQL [26249]: pgsql_db_connect() -- 03:55:35.546 INFO [26249]: COREGRADE is starting... -- 03:55:35.547 INFO [26249]: Version from config: 1.0 -- 03:55:35.547 DEBUG [26249]: Connecting to database... -- 03:55:35.547 DEBUG [26249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:55:35.547 SQL [26249]: pgsql_db_connect() -- 03:55:35.551 DEBUG [26249]: Database connection successful -- 03:55:35.551 INFO [26249]: _SERVER found -- 03:55:35.551 INFO [26249]: REMOTE_ADDR = 192.168.1.13 -- 03:55:35.551 INFO [26249]: SERVER_NAME = oameye.works.coregrade.com -- 03:55:35.551 INFO [26249]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gid=GA1.2.392227632.1581411035; ci_session=qj2uv8992ngsjbm3jaggsq5ae8n6gr0e -- 03:55:35.551 INFO [26249]: QUERY_STRING = -- 03:55:35.551 INFO [26249]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 03:55:35.551 INFO [26249]: SystemStatus()09-09-********~************ -- 03:55:35.551 INFO [26249]: long coregrade_api_main(CVars in, CVars &out) -- 03:55:35.551 INFO [26249]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 03:55:35.551 INFO [26249]: account calls -- 03:55:35.551 INFO [26249]: account_calls() -- 03:55:35.551 INFO [26249]: LoginCoreGradeAccount() -- 03:55:35.551 FLOG_MAX [26249]: REQ_STRING(username) -- 03:55:35.551 FLOG_MAX [26249]: REQ_STRING(password) -- 03:55:35.551 FLOG_MAX [26249]: REQ_STRING(sessionid) -- 03:55:35.551 FLOG_MAX [26249]: long load_db_record( CVars &rec, const char * query, ... ) -- 03:55:35.551 SQL [26249]: pgsql_query() -- 03:55:35.551 SQL [26249]: About to run query: -- 03:55:35.551 SQL [26249]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('obaxnoma@gmail.com') AND password= md5('obaro001!') -- 03:55:35.554 SQL [26249]: Found rows: 0 -- 03:55:35.554 SQL [26249]: Found rows: 0 -- 03:55:35.554 INFO [26249]: long SessionCheck(long uid, const char *sessionid, int create ) -- 03:55:35.554 INFO [26249]: /LoginCoreGradeAccount() -- 03:55:35.554 INFO [26249]: RET: member_id= -- 03:55:35.554 INFO [26249]: RET: result=YES I GET TO BACK END -- 03:55:35.554 INFO [26249]: RET: sessionid= -- 03:55:35.554 INFO [26249]: RET: status=Session check failed -- 03:55:35.555 INFO [26249]: COREGRADE is stopping... -- 03:55:35.555 DEBUG [26249]: Closing database connection -- 03:55:35.555 SQL [26249]: pgsql_close() -- 03:55:35.510 DEBUG [26249]: Database connection successful -- 03:55:35.510 INFO [26249]: _SERVER found -- 03:55:35.510 INFO [26249]: REMOTE_ADDR = 192.168.1.13 -- 03:55:35.510 INFO [26249]: SERVER_NAME = oameye.works.coregrade.com -- 03:55:35.510 INFO [26249]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gid=GA1.2.392227632.1581411035; ci_session=qj2uv8992ngsjbm3jaggsq5ae8n6gr0e -- 03:55:35.510 INFO [26249]: QUERY_STRING = /auth -- 03:55:35.510 INFO [26249]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 03:55:35.556 INFO [26249]: COREGRADE is stopping... -- 03:55:35.556 DEBUG [26249]: Closing database connection -- 03:55:35.556 SQL [26249]: pgsql_close() -- 03:55:35.632 INFO [26249]: COREGRADE is starting... -- 03:55:35.632 INFO [26249]: Version from config: 1.0 -- 03:55:35.632 DEBUG [26249]: Connecting to database... -- 03:55:35.632 DEBUG [26249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:55:35.632 SQL [26249]: pgsql_db_connect() -- 03:55:35.636 DEBUG [26249]: Database connection successful -- 03:55:35.636 INFO [26249]: _SERVER found -- 03:55:35.636 INFO [26249]: REMOTE_ADDR = 192.168.1.13 -- 03:55:35.636 INFO [26249]: SERVER_NAME = oameye.works.coregrade.com -- 03:55:35.636 INFO [26249]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gid=GA1.2.392227632.1581411035; ci_session=qj2uv8992ngsjbm3jaggsq5ae8n6gr0e -- 03:55:35.636 INFO [26249]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 03:55:35.636 INFO [26249]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 03:55:35.647 INFO [26249]: COREGRADE is stopping... -- 03:55:35.647 DEBUG [26249]: Closing database connection -- 03:55:35.648 SQL [26249]: pgsql_close() -- 03:55:35.682 INFO [26250]: COREGRADE is starting... -- 03:55:35.682 INFO [26250]: Version from config: 1.0 -- 03:55:35.682 DEBUG [26250]: Connecting to database... -- 03:55:35.682 DEBUG [26250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:55:35.682 SQL [26250]: pgsql_db_connect() -- 03:55:35.686 DEBUG [26250]: Database connection successful -- 03:55:35.686 INFO [26250]: _SERVER found -- 03:55:35.686 INFO [26250]: REMOTE_ADDR = 192.168.1.13 -- 03:55:35.686 INFO [26250]: SERVER_NAME = oameye.works.coregrade.com -- 03:55:35.686 INFO [26250]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gid=GA1.2.392227632.1581411035; ci_session=qj2uv8992ngsjbm3jaggsq5ae8n6gr0e -- 03:55:35.686 INFO [26250]: QUERY_STRING = /app-assets/data/locales/en.json -- 03:55:35.686 INFO [26250]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 03:55:35.699 INFO [26250]: COREGRADE is stopping... -- 03:55:35.699 DEBUG [26250]: Closing database connection -- 03:55:35.699 SQL [26250]: pgsql_close() -- 07:07:13.803 INFO [24391]: COREGRADE is starting... -- 07:07:13.803 INFO [24391]: Version from config: 1.0 -- 07:07:13.803 DEBUG [24391]: Connecting to database... -- 07:07:13.803 DEBUG [24391]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:07:13.804 SQL [24391]: pgsql_db_connect() -- 07:07:13.809 DEBUG [24391]: Database connection successful -- 07:07:13.809 INFO [24391]: _SERVER found -- 07:07:13.809 INFO [24391]: REMOTE_ADDR = 192.168.1.13 -- 07:07:13.809 INFO [24391]: SERVER_NAME = oameye.works.coregrade.com -- 07:07:13.809 INFO [24391]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310 -- 07:07:13.809 INFO [24391]: QUERY_STRING = -- 07:07:13.809 INFO [24391]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:07:13.850 INFO [24391]: COREGRADE is stopping... -- 07:07:13.850 DEBUG [24391]: Closing database connection -- 07:07:13.850 SQL [24391]: pgsql_close() -- 07:07:14.055 INFO [24392]: COREGRADE is starting... -- 07:07:14.055 INFO [24392]: Version from config: 1.0 -- 07:07:14.055 DEBUG [24392]: Connecting to database... -- 07:07:14.055 DEBUG [24392]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:07:14.055 SQL [24392]: pgsql_db_connect() -- 07:07:14.055 INFO [24391]: COREGRADE is starting... -- 07:07:14.055 INFO [24391]: Version from config: 1.0 -- 07:07:14.055 DEBUG [24391]: Connecting to database... -- 07:07:14.055 DEBUG [24391]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:07:14.055 SQL [24391]: pgsql_db_connect() -- 07:07:14.059 DEBUG [24391]: Database connection successful -- 07:07:14.059 INFO [24391]: _SERVER found -- 07:07:14.059 INFO [24391]: REMOTE_ADDR = 192.168.1.13 -- 07:07:14.059 INFO [24391]: SERVER_NAME = oameye.works.coregrade.com -- 07:07:14.059 INFO [24391]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=kabf8kdbr4baurt731lp3n2orrj6lj5m -- 07:07:14.059 INFO [24391]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:07:14.059 INFO [24391]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:07:14.072 INFO [24391]: COREGRADE is stopping... -- 07:07:14.072 DEBUG [24391]: Closing database connection -- 07:07:14.072 SQL [24391]: pgsql_close() -- 07:07:14.059 DEBUG [24392]: Database connection successful -- 07:07:14.059 INFO [24392]: _SERVER found -- 07:07:14.059 INFO [24392]: REMOTE_ADDR = 192.168.1.13 -- 07:07:14.059 INFO [24392]: SERVER_NAME = oameye.works.coregrade.com -- 07:07:14.059 INFO [24392]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=kabf8kdbr4baurt731lp3n2orrj6lj5m -- 07:07:14.059 INFO [24392]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:07:14.059 INFO [24392]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:07:14.073 INFO [24392]: COREGRADE is stopping... -- 07:07:14.073 DEBUG [24392]: Closing database connection -- 07:07:14.073 SQL [24392]: pgsql_close() -- 07:07:28.469 INFO [26251]: COREGRADE is starting... -- 07:07:28.469 INFO [26251]: Version from config: 1.0 -- 07:07:28.469 DEBUG [26251]: Connecting to database... -- 07:07:28.469 DEBUG [26251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:07:28.469 SQL [26251]: pgsql_db_connect() -- 07:07:28.474 DEBUG [26251]: Database connection successful -- 07:07:28.474 INFO [26251]: _SERVER found -- 07:07:28.474 INFO [26251]: REMOTE_ADDR = 192.168.1.13 -- 07:07:28.474 INFO [26251]: SERVER_NAME = oameye.works.coregrade.com -- 07:07:28.474 INFO [26251]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=kabf8kdbr4baurt731lp3n2orrj6lj5m; _gat_gtag_UA_54829827_2=1 -- 07:07:28.474 INFO [26251]: QUERY_STRING = /auth/newuser -- 07:07:28.474 INFO [26251]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:07:28.510 INFO [26251]: COREGRADE is stopping... -- 07:07:28.510 DEBUG [26251]: Closing database connection -- 07:07:28.510 SQL [26251]: pgsql_close() -- 07:07:28.704 INFO [26251]: COREGRADE is starting... -- 07:07:28.705 INFO [26251]: Version from config: 1.0 -- 07:07:28.705 DEBUG [26251]: Connecting to database... -- 07:07:28.705 DEBUG [26251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:07:28.705 SQL [26251]: pgsql_db_connect() -- 07:07:28.709 DEBUG [26251]: Database connection successful -- 07:07:28.709 INFO [26251]: _SERVER found -- 07:07:28.709 INFO [26251]: REMOTE_ADDR = 192.168.1.13 -- 07:07:28.709 INFO [26251]: SERVER_NAME = oameye.works.coregrade.com -- 07:07:28.709 INFO [26251]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=kabf8kdbr4baurt731lp3n2orrj6lj5m; _gat_gtag_UA_54829827_2=1 -- 07:07:28.709 INFO [26251]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 07:07:28.709 INFO [26251]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:07:28.721 INFO [26251]: COREGRADE is stopping... -- 07:07:28.721 DEBUG [26251]: Closing database connection -- 07:07:28.721 SQL [26251]: pgsql_close() -- 07:07:28.725 INFO [24390]: COREGRADE is starting... -- 07:07:28.725 INFO [24390]: Version from config: 1.0 -- 07:07:28.725 DEBUG [24390]: Connecting to database... -- 07:07:28.725 DEBUG [24390]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:07:28.725 SQL [24390]: pgsql_db_connect() -- 07:07:28.729 DEBUG [24390]: Database connection successful -- 07:07:28.729 INFO [24390]: _SERVER found -- 07:07:28.729 INFO [24390]: REMOTE_ADDR = 192.168.1.13 -- 07:07:28.729 INFO [24390]: SERVER_NAME = oameye.works.coregrade.com -- 07:07:28.729 INFO [24390]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=kabf8kdbr4baurt731lp3n2orrj6lj5m; _gat_gtag_UA_54829827_2=1 -- 07:07:28.729 INFO [24390]: QUERY_STRING = /app-assets/data/locales/en.json -- 07:07:28.729 INFO [24390]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:07:28.741 INFO [24390]: COREGRADE is stopping... -- 07:07:28.741 DEBUG [24390]: Closing database connection -- 07:07:28.741 SQL [24390]: pgsql_close() -- 07:07:31.595 INFO [24390]: COREGRADE is starting... -- 07:07:31.595 INFO [24390]: Version from config: 1.0 -- 07:07:31.595 DEBUG [24390]: Connecting to database... -- 07:07:31.595 DEBUG [24390]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:07:31.595 SQL [24390]: pgsql_db_connect() -- 07:07:31.599 DEBUG [24390]: Database connection successful -- 07:07:31.599 INFO [24390]: _SERVER found -- 07:07:31.599 INFO [24390]: REMOTE_ADDR = 192.168.1.13 -- 07:07:31.599 INFO [24390]: SERVER_NAME = oameye.works.coregrade.com -- 07:07:31.599 INFO [24390]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=kabf8kdbr4baurt731lp3n2orrj6lj5m; _gat_gtag_UA_54829827_2=1 -- 07:07:31.599 INFO [24390]: QUERY_STRING = /auth -- 07:07:31.599 INFO [24390]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:07:31.631 INFO [24390]: COREGRADE is stopping... -- 07:07:31.631 DEBUG [24390]: Closing database connection -- 07:07:31.631 SQL [24390]: pgsql_close() -- 07:07:31.783 INFO [24390]: COREGRADE is starting... -- 07:07:31.783 INFO [24390]: Version from config: 1.0 -- 07:07:31.783 DEBUG [24390]: Connecting to database... -- 07:07:31.783 DEBUG [24390]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:07:31.783 SQL [24390]: pgsql_db_connect() -- 07:07:31.787 DEBUG [24390]: Database connection successful -- 07:07:31.787 INFO [24390]: _SERVER found -- 07:07:31.787 INFO [24390]: REMOTE_ADDR = 192.168.1.13 -- 07:07:31.787 INFO [24390]: SERVER_NAME = oameye.works.coregrade.com -- 07:07:31.787 INFO [24390]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=kabf8kdbr4baurt731lp3n2orrj6lj5m; _gat_gtag_UA_54829827_2=1 -- 07:07:31.787 INFO [24390]: QUERY_STRING = /app-assets/data/locales/en.json -- 07:07:31.787 INFO [24390]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:07:31.798 INFO [24390]: COREGRADE is stopping... -- 07:07:31.798 DEBUG [24390]: Closing database connection -- 07:07:31.798 SQL [24390]: pgsql_close() -- 07:07:33.082 INFO [24390]: COREGRADE is starting... -- 07:07:33.082 INFO [24390]: Version from config: 1.0 -- 07:07:33.083 DEBUG [24390]: Connecting to database... -- 07:07:33.083 DEBUG [24390]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:07:33.083 SQL [24390]: pgsql_db_connect() -- 07:07:33.117 INFO [24390]: COREGRADE is starting... -- 07:07:33.117 INFO [24390]: Version from config: 1.0 -- 07:07:33.117 DEBUG [24390]: Connecting to database... -- 07:07:33.117 DEBUG [24390]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:07:33.117 SQL [24390]: pgsql_db_connect() -- 07:07:33.121 DEBUG [24390]: Database connection successful -- 07:07:33.121 INFO [24390]: _SERVER found -- 07:07:33.121 INFO [24390]: REMOTE_ADDR = 192.168.1.13 -- 07:07:33.121 INFO [24390]: SERVER_NAME = oameye.works.coregrade.com -- 07:07:33.121 INFO [24390]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=kabf8kdbr4baurt731lp3n2orrj6lj5m; _gat_gtag_UA_54829827_2=1 -- 07:07:33.121 INFO [24390]: QUERY_STRING = -- 07:07:33.121 INFO [24390]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:07:33.121 INFO [24390]: SystemStatus()09-09-********~************ -- 07:07:33.121 INFO [24390]: long coregrade_api_main(CVars in, CVars &out) -- 07:07:33.121 INFO [24390]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 07:07:33.121 INFO [24390]: account calls -- 07:07:33.121 INFO [24390]: account_calls() -- 07:07:33.121 INFO [24390]: LoginCoreGradeAccount() -- 07:07:33.121 FLOG_MAX [24390]: REQ_STRING(username) -- 07:07:33.121 FLOG_MAX [24390]: REQ_STRING(password) -- 07:07:33.121 FLOG_MAX [24390]: REQ_STRING(sessionid) -- 07:07:33.121 FLOG_MAX [24390]: long load_db_record( CVars &rec, const char * query, ... ) -- 07:07:33.121 SQL [24390]: pgsql_query() -- 07:07:33.121 SQL [24390]: About to run query: -- 07:07:33.121 SQL [24390]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 07:07:33.125 SQL [24390]: Found rows: 1 -- 07:07:33.125 FLOG_MAX [24390]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 07:07:33.125 INFO [24390]: long SessionCheck(long uid, const char *sessionid, int create ) -- 07:07:33.125 SQL [24390]: pgsql_exec() -- 07:07:33.125 SQL [24390]: About to run query: -- 07:07:33.125 SQL [24390]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 07:07:33.127 SQL [24390]: PQcmdTuples: 1 -- 07:07:33.127 SQL [24390]: Affected rows: 1 -- 07:07:33.127 SQL [24390]: pgsql_exec() -- 07:07:33.127 SQL [24390]: About to run query: -- 07:07:33.127 SQL [24390]: DELETE FROM members_session WHERE member_id=5 -- 07:07:33.127 SQL [24390]: PQcmdTuples: 0 -- 07:07:33.127 SQL [24390]: Affected rows: 0 -- 07:07:33.127 SQL [24390]: pgsql_query() -- 07:07:33.127 SQL [24390]: About to run query: -- 07:07:33.127 SQL [24390]: SELECT * FROM members_session WHERE member_id=5 AND session<>'83CF42BD49B07DDFC7DE1826293B8B96' -- 07:07:33.128 SQL [24390]: Found rows: 0 -- 07:07:33.128 SQL [24390]: Found rows: 0 -- 07:07:33.128 FLOG_MAX [24390]: long load_db_record( CVars &rec, const char * query, ... ) -- 07:07:33.128 SQL [24390]: pgsql_query() -- 07:07:33.128 SQL [24390]: About to run query: -- 07:07:33.128 SQL [24390]: SELECT * FROM members_session WHERE member_id=5 AND session='83CF42BD49B07DDFC7DE1826293B8B96' -- 07:07:33.128 SQL [24390]: Found rows: 0 -- 07:07:33.128 SQL [24390]: Found rows: 0 -- 07:07:33.128 FLOG_MAX [24390]: insert_db_record() -- 07:07:33.128 SQL [24390]: pgsql_exec() -- 07:07:33.128 SQL [24390]: About to run query: -- 07:07:33.128 SQL [24390]: INSERT INTO members_session (member_id,session) VALUES ('5','83CF42BD49B07DDFC7DE1826293B8B96') -- 07:07:33.130 SQL [24390]: PQcmdTuples: 1 -- 07:07:33.130 SQL [24390]: Affected rows: 1 -- 07:07:33.130 FLOG_MAX [24390]: SELECT currval('members_session_id_seq') -- 07:07:33.130 SQL [24390]: pgsql_query() -- 07:07:33.130 SQL [24390]: About to run query: -- 07:07:33.130 SQL [24390]: SELECT currval('members_session_id_seq') -- 07:07:33.130 SQL [24390]: Found rows: 1 -- 07:07:33.130 INFO [24390]: CreateDefaultPage() -- 07:07:33.130 FLOG_MAX [24390]: long load_db_record( CVars &rec, const char * query, ... ) -- 07:07:33.130 SQL [24390]: pgsql_query() -- 07:07:33.130 SQL [24390]: About to run query: -- 07:07:33.130 SQL [24390]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 07:07:33.131 SQL [24390]: Found rows: 1 -- 07:07:33.131 FLOG_MAX [24390]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 07:07:33.131 SQL [24390]: pgsql_query() -- 07:07:33.131 SQL [24390]: About to run query: -- 07:07:33.131 SQL [24390]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 07:07:33.131 SQL [24390]: Found rows: 1 -- 07:07:33.131 INFO [24390]: /CreateDefaultPage() -- 07:07:33.131 INFO [24390]: /LoginCoreGradeAccount() -- 07:07:33.131 INFO [24390]: RET: added=2020-02-05 06:47:23.982154 -- 07:07:33.131 INFO [24390]: RET: email=ameye+11@chiefsoft.com -- 07:07:33.131 INFO [24390]: RET: firstname=Olu -- 07:07:33.131 INFO [24390]: RET: id=5 -- 07:07:33.131 INFO [24390]: RET: last_login= -- 07:07:33.131 INFO [24390]: RET: lastname=Amey -- 07:07:33.131 INFO [24390]: RET: loc=192.168.1.13 -- 07:07:33.131 INFO [24390]: RET: member_id=5 -- 07:07:33.131 INFO [24390]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 07:07:33.131 INFO [24390]: RET: phone= -- 07:07:33.131 INFO [24390]: RET: pid= -- 07:07:33.131 INFO [24390]: RET: result=YES I GET TO BACK END -- 07:07:33.131 INFO [24390]: RET: sessionid=83CF42BD49B07DDFC7DE1826293B8B96 -- 07:07:33.131 INFO [24390]: RET: status=1 -- 07:07:33.131 INFO [24390]: RET: stauts=OK -- 07:07:33.131 INFO [24390]: RET: username=ameye+11@chiefsoft.com -- 07:07:33.131 INFO [24390]: RET: verified= -- 07:07:33.133 INFO [24390]: COREGRADE is stopping... -- 07:07:33.133 DEBUG [24390]: Closing database connection -- 07:07:33.133 SQL [24390]: pgsql_close() -- 07:07:33.087 DEBUG [24390]: Database connection successful -- 07:07:33.087 INFO [24390]: _SERVER found -- 07:07:33.087 INFO [24390]: REMOTE_ADDR = 192.168.1.13 -- 07:07:33.087 INFO [24390]: SERVER_NAME = oameye.works.coregrade.com -- 07:07:33.087 INFO [24390]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=kabf8kdbr4baurt731lp3n2orrj6lj5m; _gat_gtag_UA_54829827_2=1 -- 07:07:33.087 INFO [24390]: QUERY_STRING = /auth -- 07:07:33.087 INFO [24390]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:07:33.133 INFO [24390]: COREGRADE is stopping... -- 07:07:33.133 DEBUG [24390]: Closing database connection -- 07:07:33.133 SQL [24390]: pgsql_close() -- 07:07:33.146 INFO [24390]: COREGRADE is starting... -- 07:07:33.146 INFO [24390]: Version from config: 1.0 -- 07:07:33.146 DEBUG [24390]: Connecting to database... -- 07:07:33.146 DEBUG [24390]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:07:33.146 SQL [24390]: pgsql_db_connect() -- 07:07:33.150 DEBUG [24390]: Database connection successful -- 07:07:33.150 INFO [24390]: _SERVER found -- 07:07:33.150 INFO [24390]: REMOTE_ADDR = 192.168.1.13 -- 07:07:33.150 INFO [24390]: SERVER_NAME = oameye.works.coregrade.com -- 07:07:33.150 INFO [24390]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=kabf8kdbr4baurt731lp3n2orrj6lj5m; _gat_gtag_UA_54829827_2=1 -- 07:07:33.150 INFO [24390]: QUERY_STRING = /member/index -- 07:07:33.150 INFO [24390]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:07:33.186 INFO [24390]: COREGRADE is stopping... -- 07:07:33.186 DEBUG [24390]: Closing database connection -- 07:07:33.186 SQL [24390]: pgsql_close() -- 07:07:33.361 INFO [24390]: COREGRADE is starting... -- 07:07:33.361 INFO [24390]: Version from config: 1.0 -- 07:07:33.361 DEBUG [24390]: Connecting to database... -- 07:07:33.361 DEBUG [24390]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:07:33.361 SQL [24390]: pgsql_db_connect() -- 07:07:33.365 DEBUG [24390]: Database connection successful -- 07:07:33.365 INFO [24390]: _SERVER found -- 07:07:33.365 INFO [24390]: REMOTE_ADDR = 192.168.1.13 -- 07:07:33.365 INFO [24390]: SERVER_NAME = oameye.works.coregrade.com -- 07:07:33.365 INFO [24390]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=kabf8kdbr4baurt731lp3n2orrj6lj5m; _gat_gtag_UA_54829827_2=1 -- 07:07:33.365 INFO [24390]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 07:07:33.365 INFO [24390]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:07:33.376 INFO [24390]: COREGRADE is stopping... -- 07:07:33.376 DEBUG [24390]: Closing database connection -- 07:07:33.376 SQL [24390]: pgsql_close() -- 07:07:33.401 INFO [24390]: COREGRADE is starting... -- 07:07:33.402 INFO [24390]: Version from config: 1.0 -- 07:07:33.402 DEBUG [24390]: Connecting to database... -- 07:07:33.402 DEBUG [24390]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:07:33.402 SQL [24390]: pgsql_db_connect() -- 07:07:33.405 DEBUG [24390]: Database connection successful -- 07:07:33.405 INFO [24390]: _SERVER found -- 07:07:33.405 INFO [24390]: REMOTE_ADDR = 192.168.1.13 -- 07:07:33.405 INFO [24390]: SERVER_NAME = oameye.works.coregrade.com -- 07:07:33.405 INFO [24390]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=kabf8kdbr4baurt731lp3n2orrj6lj5m; _gat_gtag_UA_54829827_2=1 -- 07:07:33.405 INFO [24390]: QUERY_STRING = /app-assets/data/locales/en.json -- 07:07:33.405 INFO [24390]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:07:33.416 INFO [24390]: COREGRADE is stopping... -- 07:07:33.416 DEBUG [24390]: Closing database connection -- 07:07:33.416 SQL [24390]: pgsql_close() -- 07:07:35.267 INFO [24390]: COREGRADE is starting... -- 07:07:35.267 INFO [24390]: Version from config: 1.0 -- 07:07:35.267 DEBUG [24390]: Connecting to database... -- 07:07:35.267 DEBUG [24390]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:07:35.267 SQL [24390]: pgsql_db_connect() -- 07:07:35.271 DEBUG [24390]: Database connection successful -- 07:07:35.271 INFO [24390]: _SERVER found -- 07:07:35.271 INFO [24390]: REMOTE_ADDR = 192.168.1.13 -- 07:07:35.271 INFO [24390]: SERVER_NAME = oameye.works.coregrade.com -- 07:07:35.271 INFO [24390]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=kabf8kdbr4baurt731lp3n2orrj6lj5m; _gat_gtag_UA_54829827_2=1 -- 07:07:35.271 INFO [24390]: QUERY_STRING = /member/page -- 07:07:35.271 INFO [24390]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:07:35.309 INFO [24390]: COREGRADE is stopping... -- 07:07:35.309 DEBUG [24390]: Closing database connection -- 07:07:35.309 SQL [24390]: pgsql_close() -- 07:07:35.499 INFO [24390]: COREGRADE is starting... -- 07:07:35.499 INFO [24390]: Version from config: 1.0 -- 07:07:35.499 DEBUG [24390]: Connecting to database... -- 07:07:35.499 DEBUG [24390]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:07:35.499 SQL [24390]: pgsql_db_connect() -- 07:07:35.503 DEBUG [24390]: Database connection successful -- 07:07:35.503 INFO [24390]: _SERVER found -- 07:07:35.503 INFO [24390]: REMOTE_ADDR = 192.168.1.13 -- 07:07:35.503 INFO [24390]: SERVER_NAME = oameye.works.coregrade.com -- 07:07:35.503 INFO [24390]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=kabf8kdbr4baurt731lp3n2orrj6lj5m; _gat_gtag_UA_54829827_2=1 -- 07:07:35.503 INFO [24390]: QUERY_STRING = /app-assets/data/locales/en.json -- 07:07:35.503 INFO [24390]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:07:35.514 INFO [24390]: COREGRADE is stopping... -- 07:07:35.514 DEBUG [24390]: Closing database connection -- 07:07:35.514 SQL [24390]: pgsql_close() -- 07:07:39.855 INFO [24390]: COREGRADE is starting... -- 07:07:39.855 INFO [24390]: Version from config: 1.0 -- 07:07:39.855 DEBUG [24390]: Connecting to database... -- 07:07:39.855 DEBUG [24390]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:07:39.855 SQL [24390]: pgsql_db_connect() -- 07:07:39.859 DEBUG [24390]: Database connection successful -- 07:07:39.859 INFO [24390]: _SERVER found -- 07:07:39.859 INFO [24390]: REMOTE_ADDR = 192.168.1.13 -- 07:07:39.859 INFO [24390]: SERVER_NAME = oameye.works.coregrade.com -- 07:07:39.859 INFO [24390]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=kabf8kdbr4baurt731lp3n2orrj6lj5m; _gat_gtag_UA_54829827_2=1 -- 07:07:39.859 INFO [24390]: QUERY_STRING = /member/viewCardAddAction -- 07:07:39.859 INFO [24390]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:07:39.890 INFO [24390]: COREGRADE is stopping... -- 07:07:39.890 DEBUG [24390]: Closing database connection -- 07:07:39.890 SQL [24390]: pgsql_close() -- 07:42:02.044 INFO [24389]: COREGRADE is starting... -- 07:42:02.044 INFO [24389]: Version from config: 1.0 -- 07:42:02.044 DEBUG [24389]: Connecting to database... -- 07:42:02.044 DEBUG [24389]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:42:02.044 SQL [24389]: pgsql_db_connect() -- 07:42:02.079 INFO [24411]: COREGRADE is starting... -- 07:42:02.079 INFO [24411]: Version from config: 1.0 -- 07:42:02.079 DEBUG [24411]: Connecting to database... -- 07:42:02.079 DEBUG [24411]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:42:02.079 SQL [24411]: pgsql_db_connect() -- 07:42:02.049 DEBUG [24389]: Database connection successful -- 07:42:02.049 INFO [24389]: _SERVER found -- 07:42:02.049 INFO [24389]: REMOTE_ADDR = 192.168.1.13 -- 07:42:02.049 INFO [24389]: SERVER_NAME = oameye.works.coregrade.com -- 07:42:02.049 INFO [24389]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701 -- 07:42:02.049 INFO [24389]: QUERY_STRING = -- 07:42:02.049 INFO [24389]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:42:02.088 INFO [24389]: COREGRADE is stopping... -- 07:42:02.089 DEBUG [24389]: Closing database connection -- 07:42:02.089 SQL [24389]: pgsql_close() -- 07:42:02.083 DEBUG [24411]: Database connection successful -- 07:42:02.083 INFO [24411]: _SERVER found -- 07:42:02.083 INFO [24411]: REMOTE_ADDR = 192.168.1.13 -- 07:42:02.083 INFO [24411]: SERVER_NAME = oameye.works.coregrade.com -- 07:42:02.083 INFO [24411]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701 -- 07:42:02.083 INFO [24411]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:42:02.083 INFO [24411]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:42:02.097 INFO [24411]: COREGRADE is stopping... -- 07:42:02.097 DEBUG [24411]: Closing database connection -- 07:42:02.097 SQL [24411]: pgsql_close() -- 07:42:02.100 INFO [24393]: COREGRADE is starting... -- 07:42:02.101 INFO [24393]: Version from config: 1.0 -- 07:42:02.101 DEBUG [24393]: Connecting to database... -- 07:42:02.101 DEBUG [24393]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:42:02.101 SQL [24393]: pgsql_db_connect() -- 07:42:02.105 DEBUG [24393]: Database connection successful -- 07:42:02.105 INFO [24393]: _SERVER found -- 07:42:02.105 INFO [24393]: REMOTE_ADDR = 192.168.1.13 -- 07:42:02.105 INFO [24393]: SERVER_NAME = oameye.works.coregrade.com -- 07:42:02.105 INFO [24393]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701 -- 07:42:02.105 INFO [24393]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:42:02.105 INFO [24393]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:42:02.117 INFO [24393]: COREGRADE is stopping... -- 07:42:02.117 DEBUG [24393]: Closing database connection -- 07:42:02.117 SQL [24393]: pgsql_close() -- 07:42:02.228 INFO [24411]: COREGRADE is starting... -- 07:42:02.228 INFO [24411]: Version from config: 1.0 -- 07:42:02.228 DEBUG [24411]: Connecting to database... -- 07:42:02.228 DEBUG [24411]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:42:02.228 SQL [24411]: pgsql_db_connect() -- 07:42:02.233 INFO [24389]: COREGRADE is starting... -- 07:42:02.233 INFO [24389]: Version from config: 1.0 -- 07:42:02.233 DEBUG [24389]: Connecting to database... -- 07:42:02.233 DEBUG [24389]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:42:02.233 SQL [24389]: pgsql_db_connect() -- 07:42:02.232 DEBUG [24411]: Database connection successful -- 07:42:02.232 INFO [24411]: _SERVER found -- 07:42:02.232 INFO [24411]: REMOTE_ADDR = 192.168.1.13 -- 07:42:02.232 INFO [24411]: SERVER_NAME = oameye.works.coregrade.com -- 07:42:02.232 INFO [24411]: HTTP_COOKIE = ci_session=u14mjh15d87s74ogt94c7eo1cho5vkjq; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701 -- 07:42:02.232 INFO [24411]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:42:02.232 INFO [24411]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:42:02.243 INFO [24411]: COREGRADE is stopping... -- 07:42:02.243 DEBUG [24411]: Closing database connection -- 07:42:02.243 SQL [24411]: pgsql_close() -- 07:42:02.237 DEBUG [24389]: Database connection successful -- 07:42:02.237 INFO [24389]: _SERVER found -- 07:42:02.237 INFO [24389]: REMOTE_ADDR = 192.168.1.13 -- 07:42:02.237 INFO [24389]: SERVER_NAME = oameye.works.coregrade.com -- 07:42:02.237 INFO [24389]: HTTP_COOKIE = ci_session=u14mjh15d87s74ogt94c7eo1cho5vkjq; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701 -- 07:42:02.237 INFO [24389]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:42:02.237 INFO [24389]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:42:02.248 INFO [24389]: COREGRADE is stopping... -- 07:42:02.248 DEBUG [24389]: Closing database connection -- 07:42:02.248 SQL [24389]: pgsql_close() -- 08:24:03.677 INFO [24626]: COREGRADE is starting... -- 08:24:03.677 INFO [24626]: Version from config: 1.0 -- 08:24:03.677 DEBUG [24626]: Connecting to database... -- 08:24:03.677 DEBUG [24626]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:24:03.677 SQL [24626]: pgsql_db_connect() -- 08:24:03.681 DEBUG [24626]: Database connection successful -- 08:24:03.681 INFO [24626]: _SERVER found -- 08:24:03.681 INFO [24626]: REMOTE_ADDR = 192.168.1.13 -- 08:24:03.681 INFO [24626]: SERVER_NAME = oameye.works.coregrade.com -- 08:24:03.681 INFO [24626]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=kabf8kdbr4baurt731lp3n2orrj6lj5m -- 08:24:03.681 INFO [24626]: QUERY_STRING = /member/page -- 08:24:03.681 INFO [24626]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:24:03.724 INFO [24626]: COREGRADE is stopping... -- 08:24:03.724 DEBUG [24626]: Closing database connection -- 08:24:03.724 SQL [24626]: pgsql_close() -- 08:24:04.050 INFO [24391]: COREGRADE is starting... -- 08:24:04.051 INFO [24391]: Version from config: 1.0 -- 08:24:04.051 DEBUG [24391]: Connecting to database... -- 08:24:04.051 DEBUG [24391]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:24:04.051 SQL [24391]: pgsql_db_connect() -- 08:24:04.055 DEBUG [24391]: Database connection successful -- 08:24:04.055 INFO [24391]: _SERVER found -- 08:24:04.055 INFO [24391]: REMOTE_ADDR = 192.168.1.13 -- 08:24:04.055 INFO [24391]: SERVER_NAME = oameye.works.coregrade.com -- 08:24:04.055 INFO [24391]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=o8r02oathel5tsq4a25l744fuarqa4ps -- 08:24:04.055 INFO [24391]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 08:24:04.055 INFO [24391]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:24:04.067 INFO [24391]: COREGRADE is stopping... -- 08:24:04.067 DEBUG [24391]: Closing database connection -- 08:24:04.067 SQL [24391]: pgsql_close() -- 08:24:04.413 INFO [24391]: COREGRADE is starting... -- 08:24:04.413 INFO [24391]: Version from config: 1.0 -- 08:24:04.413 DEBUG [24391]: Connecting to database... -- 08:24:04.413 DEBUG [24391]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:24:04.413 SQL [24391]: pgsql_db_connect() -- 08:24:04.417 DEBUG [24391]: Database connection successful -- 08:24:04.417 INFO [24391]: _SERVER found -- 08:24:04.417 INFO [24391]: REMOTE_ADDR = 192.168.1.13 -- 08:24:04.417 INFO [24391]: SERVER_NAME = oameye.works.coregrade.com -- 08:24:04.417 INFO [24391]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=o8r02oathel5tsq4a25l744fuarqa4ps -- 08:24:04.417 INFO [24391]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:24:04.417 INFO [24391]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:24:04.429 INFO [24391]: COREGRADE is stopping... -- 08:24:04.429 DEBUG [24391]: Closing database connection -- 08:24:04.429 SQL [24391]: pgsql_close() -- 08:41:16.323 INFO [24393]: COREGRADE is starting... -- 08:41:16.323 INFO [24393]: Version from config: 1.0 -- 08:41:16.323 DEBUG [24393]: Connecting to database... -- 08:41:16.324 DEBUG [24393]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:41:16.324 SQL [24393]: pgsql_db_connect() -- 08:41:16.328 DEBUG [24393]: Database connection successful -- 08:41:16.328 INFO [24393]: _SERVER found -- 08:41:16.328 INFO [24393]: REMOTE_ADDR = 192.168.1.13 -- 08:41:16.328 INFO [24393]: SERVER_NAME = oameye.works.coregrade.com -- 08:41:16.328 INFO [24393]: QUERY_STRING = -- 08:41:16.328 INFO [24393]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:41:16.362 INFO [24393]: COREGRADE is stopping... -- 08:41:16.362 DEBUG [24393]: Closing database connection -- 08:41:16.362 SQL [24393]: pgsql_close() -- 08:41:17.267 INFO [24393]: COREGRADE is starting... -- 08:41:17.267 INFO [24393]: Version from config: 1.0 -- 08:41:17.267 DEBUG [24393]: Connecting to database... -- 08:41:17.267 DEBUG [24393]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:41:17.267 SQL [24393]: pgsql_db_connect() -- 08:41:17.271 DEBUG [24393]: Database connection successful -- 08:41:17.271 INFO [24393]: _SERVER found -- 08:41:17.271 INFO [24393]: REMOTE_ADDR = 192.168.1.13 -- 08:41:17.271 INFO [24393]: SERVER_NAME = oameye.works.coregrade.com -- 08:41:17.271 INFO [24393]: HTTP_COOKIE = ci_session=pejjfglmn8plvj3hencr1kh14v4rbutt -- 08:41:17.271 INFO [24393]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 08:41:17.271 INFO [24393]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:41:17.283 INFO [24393]: COREGRADE is stopping... -- 08:41:17.283 DEBUG [24393]: Closing database connection -- 08:41:17.283 SQL [24393]: pgsql_close() -- 08:41:17.290 INFO [24393]: COREGRADE is starting... -- 08:41:17.290 INFO [24393]: Version from config: 1.0 -- 08:41:17.290 DEBUG [24393]: Connecting to database... -- 08:41:17.290 DEBUG [24393]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:41:17.290 SQL [24393]: pgsql_db_connect() -- 08:41:17.294 DEBUG [24393]: Database connection successful -- 08:41:17.294 INFO [24393]: _SERVER found -- 08:41:17.294 INFO [24393]: REMOTE_ADDR = 192.168.1.13 -- 08:41:17.294 INFO [24393]: SERVER_NAME = oameye.works.coregrade.com -- 08:41:17.294 INFO [24393]: HTTP_COOKIE = ci_session=pejjfglmn8plvj3hencr1kh14v4rbutt -- 08:41:17.294 INFO [24393]: QUERY_STRING = /assets/img/footer_1.jpg -- 08:41:17.294 INFO [24393]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:41:17.305 INFO [24393]: COREGRADE is stopping... -- 08:41:17.305 DEBUG [24393]: Closing database connection -- 08:41:17.305 SQL [24393]: pgsql_close() -- 09:49:43.453 INFO [24389]: COREGRADE is starting... -- 09:49:43.454 INFO [24389]: Version from config: 1.0 -- 09:49:43.454 DEBUG [24389]: Connecting to database... -- 09:49:43.454 DEBUG [24389]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:43.454 SQL [24389]: pgsql_db_connect() -- 09:49:43.459 DEBUG [24389]: Database connection successful -- 09:49:43.459 INFO [24389]: _SERVER found -- 09:49:43.459 INFO [24389]: REMOTE_ADDR = 192.168.1.13 -- 09:49:43.459 INFO [24389]: SERVER_NAME = oameye.works.coregrade.com -- 09:49:43.459 INFO [24389]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=o8r02oathel5tsq4a25l744fuarqa4ps -- 09:49:43.459 INFO [24389]: QUERY_STRING = /member/viewCardAddAction -- 09:49:43.459 INFO [24389]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:49:43.494 INFO [24389]: COREGRADE is stopping... -- 09:49:43.494 DEBUG [24389]: Closing database connection -- 09:49:43.494 SQL [24389]: pgsql_close() -- 11:04:04.542 INFO [27449]: COREGRADE is starting... -- 11:04:04.542 INFO [27449]: Version from config: 1.0 -- 11:04:04.542 DEBUG [27449]: Connecting to database... -- 11:04:04.542 DEBUG [27449]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:04:04.542 SQL [27449]: pgsql_db_connect() -- 11:04:04.547 DEBUG [27449]: Database connection successful -- 11:04:04.547 INFO [27449]: _SERVER found -- 11:04:04.547 INFO [27449]: REMOTE_ADDR = 192.168.1.13 -- 11:04:04.547 INFO [27449]: SERVER_NAME = oameye.works.coregrade.com -- 11:04:04.547 INFO [27449]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=o8r02oathel5tsq4a25l744fuarqa4ps -- 11:04:04.547 INFO [27449]: QUERY_STRING = /auth -- 11:04:04.547 INFO [27449]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:04:04.590 INFO [27449]: COREGRADE is stopping... -- 11:04:04.590 DEBUG [27449]: Closing database connection -- 11:04:04.590 SQL [27449]: pgsql_close() -- 11:04:04.706 INFO [27449]: COREGRADE is starting... -- 11:04:04.706 INFO [27449]: Version from config: 1.0 -- 11:04:04.706 DEBUG [27449]: Connecting to database... -- 11:04:04.706 DEBUG [27449]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:04:04.706 SQL [27449]: pgsql_db_connect() -- 11:04:04.710 DEBUG [27449]: Database connection successful -- 11:04:04.710 INFO [27449]: _SERVER found -- 11:04:04.710 INFO [27449]: REMOTE_ADDR = 192.168.1.13 -- 11:04:04.710 INFO [27449]: SERVER_NAME = oameye.works.coregrade.com -- 11:04:04.710 INFO [27449]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=52f5lre4hi8q27mjgoc7g8qmeljb89pm -- 11:04:04.710 INFO [27449]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:04:04.710 INFO [27449]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:04:04.723 INFO [27449]: COREGRADE is stopping... -- 11:04:04.723 DEBUG [27449]: Closing database connection -- 11:04:04.723 SQL [27449]: pgsql_close() -- 11:04:04.770 INFO [27449]: COREGRADE is starting... -- 11:04:04.770 INFO [27449]: Version from config: 1.0 -- 11:04:04.770 DEBUG [27449]: Connecting to database... -- 11:04:04.770 DEBUG [27449]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:04:04.770 SQL [27449]: pgsql_db_connect() -- 11:04:04.774 DEBUG [27449]: Database connection successful -- 11:04:04.774 INFO [27449]: _SERVER found -- 11:04:04.774 INFO [27449]: REMOTE_ADDR = 192.168.1.13 -- 11:04:04.774 INFO [27449]: SERVER_NAME = oameye.works.coregrade.com -- 11:04:04.774 INFO [27449]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=52f5lre4hi8q27mjgoc7g8qmeljb89pm -- 11:04:04.774 INFO [27449]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:04:04.774 INFO [27449]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:04:04.786 INFO [27449]: COREGRADE is stopping... -- 11:04:04.786 DEBUG [27449]: Closing database connection -- 11:04:04.786 SQL [27449]: pgsql_close() -- 13:23:57.615 INFO [26250]: COREGRADE is starting... -- 13:23:57.616 INFO [26250]: Version from config: 1.0 -- 13:23:57.616 DEBUG [26250]: Connecting to database... -- 13:23:57.616 DEBUG [26250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:23:57.616 SQL [26250]: pgsql_db_connect() -- 13:23:57.621 DEBUG [26250]: Database connection successful -- 13:23:57.621 INFO [26250]: _SERVER found -- 13:23:57.621 INFO [26250]: REMOTE_ADDR = 192.168.1.13 -- 13:23:57.621 INFO [26250]: SERVER_NAME = oameye.works.coregrade.com -- 13:23:57.621 INFO [26250]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310 -- 13:23:57.621 INFO [26250]: QUERY_STRING = -- 13:23:57.621 INFO [26250]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:23:57.660 INFO [26250]: COREGRADE is stopping... -- 13:23:57.660 DEBUG [26250]: Closing database connection -- 13:23:57.660 SQL [26250]: pgsql_close() -- 13:23:58.031 INFO [26250]: COREGRADE is starting... -- 13:23:58.032 INFO [26250]: Version from config: 1.0 -- 13:23:58.032 DEBUG [26250]: Connecting to database... -- 13:23:58.032 DEBUG [26250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:23:58.032 SQL [26250]: pgsql_db_connect() -- 13:23:58.040 INFO [24392]: COREGRADE is starting... -- 13:23:58.040 INFO [24392]: Version from config: 1.0 -- 13:23:58.040 DEBUG [24392]: Connecting to database... -- 13:23:58.040 DEBUG [24392]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:23:58.040 SQL [24392]: pgsql_db_connect() -- 13:23:58.036 DEBUG [26250]: Database connection successful -- 13:23:58.036 INFO [26250]: _SERVER found -- 13:23:58.036 INFO [26250]: REMOTE_ADDR = 192.168.1.13 -- 13:23:58.036 INFO [26250]: SERVER_NAME = oameye.works.coregrade.com -- 13:23:58.036 INFO [26250]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=tafuh4jhjr3mt87iu64tvpotpcd5faoq -- 13:23:58.036 INFO [26250]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 13:23:58.036 INFO [26250]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:23:58.049 INFO [26250]: COREGRADE is stopping... -- 13:23:58.049 DEBUG [26250]: Closing database connection -- 13:23:58.049 SQL [26250]: pgsql_close() -- 13:23:58.045 DEBUG [24392]: Database connection successful -- 13:23:58.045 INFO [24392]: _SERVER found -- 13:23:58.045 INFO [24392]: REMOTE_ADDR = 192.168.1.13 -- 13:23:58.045 INFO [24392]: SERVER_NAME = oameye.works.coregrade.com -- 13:23:58.045 INFO [24392]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=tafuh4jhjr3mt87iu64tvpotpcd5faoq -- 13:23:58.045 INFO [24392]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:23:58.045 INFO [24392]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:23:58.058 INFO [24392]: COREGRADE is stopping... -- 13:23:58.058 DEBUG [24392]: Closing database connection -- 13:23:58.058 SQL [24392]: pgsql_close() -- 13:24:02.422 INFO [24392]: COREGRADE is starting... -- 13:24:02.423 INFO [24392]: Version from config: 1.0 -- 13:24:02.423 DEBUG [24392]: Connecting to database... -- 13:24:02.423 DEBUG [24392]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:24:02.423 SQL [24392]: pgsql_db_connect() -- 13:24:02.423 INFO [26250]: COREGRADE is starting... -- 13:24:02.423 INFO [26250]: Version from config: 1.0 -- 13:24:02.423 DEBUG [26250]: Connecting to database... -- 13:24:02.423 DEBUG [26250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:24:02.423 SQL [26250]: pgsql_db_connect() -- 13:24:02.427 DEBUG [26250]: Database connection successful -- 13:24:02.427 INFO [26250]: _SERVER found -- 13:24:02.427 INFO [26250]: REMOTE_ADDR = 192.168.1.13 -- 13:24:02.427 INFO [26250]: SERVER_NAME = oameye.works.coregrade.com -- 13:24:02.427 INFO [26250]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=tafuh4jhjr3mt87iu64tvpotpcd5faoq; _gat_gtag_UA_54829827_2=1 -- 13:24:02.427 INFO [26250]: QUERY_STRING = /auth/newuser -- 13:24:02.427 INFO [26250]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:24:02.462 INFO [26250]: COREGRADE is stopping... -- 13:24:02.462 DEBUG [26250]: Closing database connection -- 13:24:02.462 SQL [26250]: pgsql_close() -- 13:24:02.427 DEBUG [24392]: Database connection successful -- 13:24:02.427 INFO [24392]: _SERVER found -- 13:24:02.427 INFO [24392]: REMOTE_ADDR = 192.168.1.13 -- 13:24:02.427 INFO [24392]: SERVER_NAME = oameye.works.coregrade.com -- 13:24:02.427 INFO [24392]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=tafuh4jhjr3mt87iu64tvpotpcd5faoq; _gat_gtag_UA_54829827_2=1 -- 13:24:02.427 INFO [24392]: QUERY_STRING = /welcome/viewLogin -- 13:24:02.427 INFO [24392]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:24:02.464 INFO [24392]: COREGRADE is stopping... -- 13:24:02.464 DEBUG [24392]: Closing database connection -- 13:24:02.464 SQL [24392]: pgsql_close() -- 13:24:02.508 INFO [24392]: COREGRADE is starting... -- 13:24:02.508 INFO [24392]: Version from config: 1.0 -- 13:24:02.508 DEBUG [24392]: Connecting to database... -- 13:24:02.508 DEBUG [24392]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:24:02.508 SQL [24392]: pgsql_db_connect() -- 13:24:02.512 DEBUG [24392]: Database connection successful -- 13:24:02.512 INFO [24392]: _SERVER found -- 13:24:02.512 INFO [24392]: REMOTE_ADDR = 192.168.1.13 -- 13:24:02.512 INFO [24392]: SERVER_NAME = oameye.works.coregrade.com -- 13:24:02.512 INFO [24392]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=tafuh4jhjr3mt87iu64tvpotpcd5faoq; _gat_gtag_UA_54829827_2=1 -- 13:24:02.512 INFO [24392]: QUERY_STRING = /auth/index -- 13:24:02.512 INFO [24392]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:24:02.547 INFO [24392]: COREGRADE is stopping... -- 13:24:02.547 DEBUG [24392]: Closing database connection -- 13:24:02.547 SQL [24392]: pgsql_close() -- 13:24:02.718 INFO [26250]: COREGRADE is starting... -- 13:24:02.719 INFO [26250]: Version from config: 1.0 -- 13:24:02.719 DEBUG [26250]: Connecting to database... -- 13:24:02.719 DEBUG [26250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:24:02.719 SQL [26250]: pgsql_db_connect() -- 13:24:02.723 DEBUG [26250]: Database connection successful -- 13:24:02.723 INFO [26250]: _SERVER found -- 13:24:02.723 INFO [26250]: REMOTE_ADDR = 192.168.1.13 -- 13:24:02.723 INFO [26250]: SERVER_NAME = oameye.works.coregrade.com -- 13:24:02.723 INFO [26250]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=tafuh4jhjr3mt87iu64tvpotpcd5faoq; _gat_gtag_UA_54829827_2=1 -- 13:24:02.723 INFO [26250]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:24:02.723 INFO [26250]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:24:02.734 INFO [26250]: COREGRADE is stopping... -- 13:24:02.734 DEBUG [26250]: Closing database connection -- 13:24:02.734 SQL [26250]: pgsql_close() -- 13:24:02.753 INFO [26250]: COREGRADE is starting... -- 13:24:02.753 INFO [26250]: Version from config: 1.0 -- 13:24:02.753 DEBUG [26250]: Connecting to database... -- 13:24:02.753 DEBUG [26250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:24:02.753 SQL [26250]: pgsql_db_connect() -- 13:24:02.757 DEBUG [26250]: Database connection successful -- 13:24:02.757 INFO [26250]: _SERVER found -- 13:24:02.757 INFO [26250]: REMOTE_ADDR = 192.168.1.13 -- 13:24:02.757 INFO [26250]: SERVER_NAME = oameye.works.coregrade.com -- 13:24:02.757 INFO [26250]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=tafuh4jhjr3mt87iu64tvpotpcd5faoq; _gat_gtag_UA_54829827_2=1 -- 13:24:02.757 INFO [26250]: QUERY_STRING = /app-assets/data/locales/en.json -- 13:24:02.757 INFO [26250]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:24:02.769 INFO [26250]: COREGRADE is stopping... -- 13:24:02.769 DEBUG [26250]: Closing database connection -- 13:24:02.769 SQL [26250]: pgsql_close() -- 13:27:49.349 INFO [24626]: COREGRADE is starting... -- 13:27:49.350 INFO [24626]: Version from config: 1.0 -- 13:27:49.350 DEBUG [24626]: Connecting to database... -- 13:27:49.350 DEBUG [24626]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:27:49.350 SQL [24626]: pgsql_db_connect() -- 13:27:49.354 DEBUG [24626]: Database connection successful -- 13:27:49.354 INFO [24626]: _SERVER found -- 13:27:49.354 INFO [24626]: REMOTE_ADDR = 192.168.1.13 -- 13:27:49.354 INFO [24626]: SERVER_NAME = oameye.works.coregrade.com -- 13:27:49.354 INFO [24626]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=tafuh4jhjr3mt87iu64tvpotpcd5faoq -- 13:27:49.354 INFO [24626]: QUERY_STRING = /auth/newuser -- 13:27:49.354 INFO [24626]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:27:49.388 INFO [24626]: COREGRADE is stopping... -- 13:27:49.388 DEBUG [24626]: Closing database connection -- 13:27:49.388 SQL [24626]: pgsql_close() -- 13:27:49.578 INFO [24626]: COREGRADE is starting... -- 13:27:49.578 INFO [24626]: Version from config: 1.0 -- 13:27:49.578 DEBUG [24626]: Connecting to database... -- 13:27:49.578 DEBUG [24626]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:27:49.578 SQL [24626]: pgsql_db_connect() -- 13:27:49.592 INFO [26251]: COREGRADE is starting... -- 13:27:49.592 INFO [26251]: Version from config: 1.0 -- 13:27:49.592 DEBUG [26251]: Connecting to database... -- 13:27:49.592 DEBUG [26251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:27:49.592 SQL [26251]: pgsql_db_connect() -- 13:27:49.582 DEBUG [24626]: Database connection successful -- 13:27:49.582 INFO [24626]: _SERVER found -- 13:27:49.582 INFO [24626]: REMOTE_ADDR = 192.168.1.13 -- 13:27:49.582 INFO [24626]: SERVER_NAME = oameye.works.coregrade.com -- 13:27:49.582 INFO [24626]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=tafuh4jhjr3mt87iu64tvpotpcd5faoq -- 13:27:49.582 INFO [24626]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:27:49.582 INFO [24626]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:27:49.594 INFO [24626]: COREGRADE is stopping... -- 13:27:49.594 DEBUG [24626]: Closing database connection -- 13:27:49.594 SQL [24626]: pgsql_close() -- 13:27:49.596 DEBUG [26251]: Database connection successful -- 13:27:49.596 INFO [26251]: _SERVER found -- 13:27:49.596 INFO [26251]: REMOTE_ADDR = 192.168.1.13 -- 13:27:49.596 INFO [26251]: SERVER_NAME = oameye.works.coregrade.com -- 13:27:49.596 INFO [26251]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=tafuh4jhjr3mt87iu64tvpotpcd5faoq -- 13:27:49.596 INFO [26251]: QUERY_STRING = /app-assets/data/locales/en.json -- 13:27:49.596 INFO [26251]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:27:49.609 INFO [26251]: COREGRADE is stopping... -- 13:27:49.609 DEBUG [26251]: Closing database connection -- 13:27:49.609 SQL [26251]: pgsql_close() -- 13:40:51.259 INFO [26249]: COREGRADE is starting... -- 13:40:51.259 INFO [26249]: Version from config: 1.0 -- 13:40:51.259 DEBUG [26249]: Connecting to database... -- 13:40:51.259 DEBUG [26249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:40:51.259 SQL [26249]: pgsql_db_connect() -- 13:40:51.264 DEBUG [26249]: Database connection successful -- 13:40:51.264 INFO [26249]: _SERVER found -- 13:40:51.264 INFO [26249]: REMOTE_ADDR = 192.168.1.13 -- 13:40:51.264 INFO [26249]: SERVER_NAME = oameye.works.coregrade.com -- 13:40:51.264 INFO [26249]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=tafuh4jhjr3mt87iu64tvpotpcd5faoq -- 13:40:51.264 INFO [26249]: QUERY_STRING = -- 13:40:51.264 INFO [26249]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:40:51.304 INFO [26249]: COREGRADE is stopping... -- 13:40:51.304 DEBUG [26249]: Closing database connection -- 13:40:51.304 SQL [26249]: pgsql_close() -- 13:40:51.691 INFO [26249]: COREGRADE is starting... -- 13:40:51.691 INFO [26249]: Version from config: 1.0 -- 13:40:51.691 DEBUG [26249]: Connecting to database... -- 13:40:51.691 DEBUG [26249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:40:51.691 SQL [26249]: pgsql_db_connect() -- 13:40:51.700 INFO [24391]: COREGRADE is starting... -- 13:40:51.701 INFO [24391]: Version from config: 1.0 -- 13:40:51.701 DEBUG [24391]: Connecting to database... -- 13:40:51.701 DEBUG [24391]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:40:51.701 SQL [24391]: pgsql_db_connect() -- 13:40:51.695 DEBUG [26249]: Database connection successful -- 13:40:51.695 INFO [26249]: _SERVER found -- 13:40:51.695 INFO [26249]: REMOTE_ADDR = 192.168.1.13 -- 13:40:51.695 INFO [26249]: SERVER_NAME = oameye.works.coregrade.com -- 13:40:51.695 INFO [26249]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=k9vqtatuvgq2mt04gfloi7sm1g6a8kio -- 13:40:51.695 INFO [26249]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 13:40:51.695 INFO [26249]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:40:51.706 INFO [26249]: COREGRADE is stopping... -- 13:40:51.706 DEBUG [26249]: Closing database connection -- 13:40:51.706 SQL [26249]: pgsql_close() -- 13:40:51.704 DEBUG [24391]: Database connection successful -- 13:40:51.704 INFO [24391]: _SERVER found -- 13:40:51.704 INFO [24391]: REMOTE_ADDR = 192.168.1.13 -- 13:40:51.704 INFO [24391]: SERVER_NAME = oameye.works.coregrade.com -- 13:40:51.704 INFO [24391]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=k9vqtatuvgq2mt04gfloi7sm1g6a8kio -- 13:40:51.704 INFO [24391]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:40:51.705 INFO [24391]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:40:51.717 INFO [24391]: COREGRADE is stopping... -- 13:40:51.717 DEBUG [24391]: Closing database connection -- 13:40:51.717 SQL [24391]: pgsql_close() -- 13:41:05.699 INFO [24411]: COREGRADE is starting... -- 13:41:05.700 INFO [24411]: Version from config: 1.0 -- 13:41:05.700 DEBUG [24411]: Connecting to database... -- 13:41:05.700 DEBUG [24411]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:41:05.700 SQL [24411]: pgsql_db_connect() -- 13:41:05.704 DEBUG [24411]: Database connection successful -- 13:41:05.704 INFO [24411]: _SERVER found -- 13:41:05.704 INFO [24411]: REMOTE_ADDR = 192.168.1.13 -- 13:41:05.704 INFO [24411]: SERVER_NAME = oameye.works.coregrade.com -- 13:41:05.704 INFO [24411]: QUERY_STRING = -- 13:41:05.704 INFO [24411]: HTTP_X_FORWARDED_FOR = 52.114.142.71 -- 13:41:05.738 INFO [24411]: COREGRADE is stopping... -- 13:41:05.738 DEBUG [24411]: Closing database connection -- 13:41:05.738 SQL [24411]: pgsql_close() -- 13:41:22.473 INFO [24393]: COREGRADE is starting... -- 13:41:22.473 INFO [24393]: Version from config: 1.0 -- 13:41:22.473 DEBUG [24393]: Connecting to database... -- 13:41:22.473 DEBUG [24393]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:41:22.473 SQL [24393]: pgsql_db_connect() -- 13:41:22.477 DEBUG [24393]: Database connection successful -- 13:41:22.477 INFO [24393]: _SERVER found -- 13:41:22.477 INFO [24393]: REMOTE_ADDR = 192.168.1.13 -- 13:41:22.477 INFO [24393]: SERVER_NAME = oameye.works.coregrade.com -- 13:41:22.477 INFO [24393]: QUERY_STRING = -- 13:41:22.477 INFO [24393]: HTTP_X_FORWARDED_FOR = 176.117.172.40 -- 13:41:22.515 INFO [24393]: COREGRADE is stopping... -- 13:41:22.515 DEBUG [24393]: Closing database connection -- 13:41:22.515 SQL [24393]: pgsql_close() -- 13:41:24.131 INFO [27449]: COREGRADE is starting... -- 13:41:24.131 INFO [27449]: Version from config: 1.0 -- 13:41:24.131 DEBUG [27449]: Connecting to database... -- 13:41:24.131 DEBUG [27449]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:41:24.131 SQL [27449]: pgsql_db_connect() -- 13:41:24.135 DEBUG [27449]: Database connection successful -- 13:41:24.135 INFO [27449]: _SERVER found -- 13:41:24.135 INFO [27449]: REMOTE_ADDR = 192.168.1.13 -- 13:41:24.135 INFO [27449]: SERVER_NAME = oameye.works.coregrade.com -- 13:41:24.135 INFO [27449]: HTTP_COOKIE = ci_session=2bm95k1mkmt1glkrmmnu9cf2qjtii102 -- 13:41:24.135 INFO [27449]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 13:41:24.135 INFO [27449]: HTTP_X_FORWARDED_FOR = 176.117.172.40 -- 13:41:24.148 INFO [27449]: COREGRADE is stopping... -- 13:41:24.148 DEBUG [27449]: Closing database connection -- 13:41:24.148 SQL [27449]: pgsql_close() -- 13:41:24.299 INFO [27449]: COREGRADE is starting... -- 13:41:24.300 INFO [27449]: Version from config: 1.0 -- 13:41:24.300 DEBUG [27449]: Connecting to database... -- 13:41:24.300 DEBUG [27449]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:41:24.300 SQL [27449]: pgsql_db_connect() -- 13:41:24.304 DEBUG [27449]: Database connection successful -- 13:41:24.304 INFO [27449]: _SERVER found -- 13:41:24.304 INFO [27449]: REMOTE_ADDR = 192.168.1.13 -- 13:41:24.304 INFO [27449]: SERVER_NAME = oameye.works.coregrade.com -- 13:41:24.304 INFO [27449]: HTTP_COOKIE = ci_session=2bm95k1mkmt1glkrmmnu9cf2qjtii102 -- 13:41:24.304 INFO [27449]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:41:24.304 INFO [27449]: HTTP_X_FORWARDED_FOR = 176.117.172.40 -- 13:41:24.316 INFO [27449]: COREGRADE is stopping... -- 13:41:24.316 DEBUG [27449]: Closing database connection -- 13:41:24.316 SQL [27449]: pgsql_close() -- 13:50:27.145 INFO [24411]: COREGRADE is starting... -- 13:50:27.145 INFO [24411]: Version from config: 1.0 -- 13:50:27.145 DEBUG [24411]: Connecting to database... -- 13:50:27.145 DEBUG [24411]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:27.145 SQL [24411]: pgsql_db_connect() -- 13:50:27.150 DEBUG [24411]: Database connection successful -- 13:50:27.150 INFO [24411]: _SERVER found -- 13:50:27.150 INFO [24411]: REMOTE_ADDR = 192.168.1.13 -- 13:50:27.150 INFO [24411]: SERVER_NAME = oameye.works.coregrade.com -- 13:50:27.150 INFO [24411]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=k9vqtatuvgq2mt04gfloi7sm1g6a8kio -- 13:50:27.150 INFO [24411]: QUERY_STRING = -- 13:50:27.150 INFO [24411]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:50:27.188 INFO [24411]: COREGRADE is stopping... -- 13:50:27.188 DEBUG [24411]: Closing database connection -- 13:50:27.188 SQL [24411]: pgsql_close() -- 13:50:27.429 INFO [24411]: COREGRADE is starting... -- 13:50:27.430 INFO [24411]: Version from config: 1.0 -- 13:50:27.430 DEBUG [24411]: Connecting to database... -- 13:50:27.430 DEBUG [24411]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:27.430 SQL [24411]: pgsql_db_connect() -- 13:50:27.435 INFO [24389]: COREGRADE is starting... -- 13:50:27.436 INFO [24389]: Version from config: 1.0 -- 13:50:27.436 DEBUG [24389]: Connecting to database... -- 13:50:27.436 DEBUG [24389]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:27.436 SQL [24389]: pgsql_db_connect() -- 13:50:27.434 DEBUG [24411]: Database connection successful -- 13:50:27.434 INFO [24411]: _SERVER found -- 13:50:27.434 INFO [24411]: REMOTE_ADDR = 192.168.1.13 -- 13:50:27.434 INFO [24411]: SERVER_NAME = oameye.works.coregrade.com -- 13:50:27.434 INFO [24411]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1mau1vjddo6m2jq138g5o380chl6n5i -- 13:50:27.434 INFO [24411]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 13:50:27.434 INFO [24411]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:50:27.446 INFO [24411]: COREGRADE is stopping... -- 13:50:27.446 DEBUG [24411]: Closing database connection -- 13:50:27.447 SQL [24411]: pgsql_close() -- 13:50:27.440 DEBUG [24389]: Database connection successful -- 13:50:27.440 INFO [24389]: _SERVER found -- 13:50:27.440 INFO [24389]: REMOTE_ADDR = 192.168.1.13 -- 13:50:27.440 INFO [24389]: SERVER_NAME = oameye.works.coregrade.com -- 13:50:27.440 INFO [24389]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1mau1vjddo6m2jq138g5o380chl6n5i -- 13:50:27.440 INFO [24389]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:50:27.440 INFO [24389]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:50:27.453 INFO [24389]: COREGRADE is stopping... -- 13:50:27.453 DEBUG [24389]: Closing database connection -- 13:50:27.453 SQL [24389]: pgsql_close() -- 20:43:07.027 INFO [24626]: COREGRADE is starting... -- 20:43:07.027 INFO [24626]: Version from config: 1.0 -- 20:43:07.027 DEBUG [24626]: Connecting to database... -- 20:43:07.027 DEBUG [24626]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:43:07.027 SQL [24626]: pgsql_db_connect() -- 20:43:07.032 DEBUG [24626]: Database connection successful -- 20:43:07.032 INFO [24626]: _SERVER found -- 20:43:07.032 INFO [24626]: REMOTE_ADDR = 192.168.1.13 -- 20:43:07.032 INFO [24626]: SERVER_NAME = oameye.works.coregrade.com -- 20:43:07.032 INFO [24626]: QUERY_STRING = -- 20:43:07.032 INFO [24626]: HTTP_X_FORWARDED_FOR = 128.14.134.134 -- 20:43:07.069 INFO [24626]: COREGRADE is stopping... -- 20:43:07.069 DEBUG [24626]: Closing database connection -- 20:43:07.069 SQL [24626]: pgsql_close() -- 21:03:38.863 INFO [26249]: COREGRADE is starting... -- 21:03:38.864 INFO [26249]: Version from config: 1.0 -- 21:03:38.864 DEBUG [26249]: Connecting to database... -- 21:03:38.864 DEBUG [26249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:03:38.864 SQL [26249]: pgsql_db_connect() -- 21:03:38.868 DEBUG [26249]: Database connection successful -- 21:03:38.868 INFO [26249]: _SERVER found -- 21:03:38.868 INFO [26249]: REMOTE_ADDR = 192.168.1.13 -- 21:03:38.868 INFO [26249]: SERVER_NAME = oameye.works.coregrade.com -- 21:03:38.868 INFO [26249]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310 -- 21:03:38.868 INFO [26249]: QUERY_STRING = -- 21:03:38.868 INFO [26249]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:03:38.902 INFO [26249]: COREGRADE is stopping... -- 21:03:38.902 DEBUG [26249]: Closing database connection -- 21:03:38.902 SQL [26249]: pgsql_close() -- 21:03:39.556 INFO [26249]: COREGRADE is starting... -- 21:03:39.557 INFO [26249]: Version from config: 1.0 -- 21:03:39.557 DEBUG [26249]: Connecting to database... -- 21:03:39.557 DEBUG [26249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:03:39.557 SQL [26249]: pgsql_db_connect() -- 21:03:39.563 INFO [24389]: COREGRADE is starting... -- 21:03:39.564 INFO [24389]: Version from config: 1.0 -- 21:03:39.564 DEBUG [24389]: Connecting to database... -- 21:03:39.564 DEBUG [24389]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:03:39.564 SQL [24389]: pgsql_db_connect() -- 21:03:39.561 DEBUG [26249]: Database connection successful -- 21:03:39.561 INFO [26249]: _SERVER found -- 21:03:39.561 INFO [26249]: REMOTE_ADDR = 192.168.1.13 -- 21:03:39.561 INFO [26249]: SERVER_NAME = oameye.works.coregrade.com -- 21:03:39.561 INFO [26249]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=m3fu632m2ilo4pp5lcrl5d9s3pk5mi6r -- 21:03:39.561 INFO [26249]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 21:03:39.561 INFO [26249]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:03:39.572 INFO [26249]: COREGRADE is stopping... -- 21:03:39.572 DEBUG [26249]: Closing database connection -- 21:03:39.572 SQL [26249]: pgsql_close() -- 21:03:39.568 DEBUG [24389]: Database connection successful -- 21:03:39.568 INFO [24389]: _SERVER found -- 21:03:39.568 INFO [24389]: REMOTE_ADDR = 192.168.1.13 -- 21:03:39.568 INFO [24389]: SERVER_NAME = oameye.works.coregrade.com -- 21:03:39.568 INFO [24389]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=m3fu632m2ilo4pp5lcrl5d9s3pk5mi6r -- 21:03:39.568 INFO [24389]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:03:39.568 INFO [24389]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:03:39.580 INFO [24389]: COREGRADE is stopping... -- 21:03:39.580 DEBUG [24389]: Closing database connection -- 21:03:39.580 SQL [24389]: pgsql_close() -- 21:03:45.791 INFO [24411]: COREGRADE is starting... -- 21:03:45.791 INFO [24411]: Version from config: 1.0 -- 21:03:45.791 DEBUG [24411]: Connecting to database... -- 21:03:45.791 DEBUG [24411]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:03:45.791 SQL [24411]: pgsql_db_connect() -- 21:03:45.795 DEBUG [24411]: Database connection successful -- 21:03:45.795 INFO [24411]: _SERVER found -- 21:03:45.795 INFO [24411]: REMOTE_ADDR = 192.168.1.13 -- 21:03:45.795 INFO [24411]: SERVER_NAME = oameye.works.coregrade.com -- 21:03:45.795 INFO [24411]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=m3fu632m2ilo4pp5lcrl5d9s3pk5mi6r; _gat_gtag_UA_54829827_2=1 -- 21:03:45.795 INFO [24411]: QUERY_STRING = /home -- 21:03:45.795 INFO [24411]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:03:45.830 INFO [24411]: COREGRADE is stopping... -- 21:03:45.830 DEBUG [24411]: Closing database connection -- 21:03:45.830 SQL [24411]: pgsql_close() -- 21:03:46.112 INFO [24411]: COREGRADE is starting... -- 21:03:46.112 INFO [24411]: Version from config: 1.0 -- 21:03:46.112 DEBUG [24411]: Connecting to database... -- 21:03:46.112 DEBUG [24411]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:03:46.112 SQL [24411]: pgsql_db_connect() -- 21:03:46.116 DEBUG [24411]: Database connection successful -- 21:03:46.116 INFO [24411]: _SERVER found -- 21:03:46.116 INFO [24411]: REMOTE_ADDR = 192.168.1.13 -- 21:03:46.116 INFO [24411]: SERVER_NAME = oameye.works.coregrade.com -- 21:03:46.116 INFO [24411]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=m3fu632m2ilo4pp5lcrl5d9s3pk5mi6r; _gat_gtag_UA_54829827_2=1 -- 21:03:46.116 INFO [24411]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:03:46.116 INFO [24411]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:03:46.128 INFO [24411]: COREGRADE is stopping... -- 21:03:46.128 DEBUG [24411]: Closing database connection -- 21:03:46.128 SQL [24411]: pgsql_close() -- 21:03:46.145 INFO [24411]: COREGRADE is starting... -- 21:03:46.145 INFO [24411]: Version from config: 1.0 -- 21:03:46.145 DEBUG [24411]: Connecting to database... -- 21:03:46.145 DEBUG [24411]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:03:46.145 SQL [24411]: pgsql_db_connect() -- 21:03:46.149 DEBUG [24411]: Database connection successful -- 21:03:46.149 INFO [24411]: _SERVER found -- 21:03:46.149 INFO [24411]: REMOTE_ADDR = 192.168.1.13 -- 21:03:46.149 INFO [24411]: SERVER_NAME = oameye.works.coregrade.com -- 21:03:46.149 INFO [24411]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=m3fu632m2ilo4pp5lcrl5d9s3pk5mi6r; _gat_gtag_UA_54829827_2=1 -- 21:03:46.149 INFO [24411]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:03:46.149 INFO [24411]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:03:46.160 INFO [24411]: COREGRADE is stopping... -- 21:03:46.160 DEBUG [24411]: Closing database connection -- 21:03:46.160 SQL [24411]: pgsql_close() -- 22:04:52.207 INFO [24391]: COREGRADE is starting... -- 22:04:52.208 INFO [24391]: Version from config: 1.0 -- 22:04:52.208 DEBUG [24391]: Connecting to database... -- 22:04:52.208 DEBUG [24391]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:04:52.208 SQL [24391]: pgsql_db_connect() -- 22:04:52.212 DEBUG [24391]: Database connection successful -- 22:04:52.212 INFO [24391]: _SERVER found -- 22:04:52.212 INFO [24391]: REMOTE_ADDR = 192.168.1.13 -- 22:04:52.212 INFO [24391]: SERVER_NAME = tokslaw.works.coregrade.com -- 22:04:52.212 INFO [24391]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433 -- 22:04:52.212 INFO [24391]: QUERY_STRING = -- 22:04:52.212 INFO [24391]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:04:52.247 INFO [24391]: COREGRADE is stopping... -- 22:04:52.247 DEBUG [24391]: Closing database connection -- 22:04:52.247 SQL [24391]: pgsql_close() -- 22:04:52.581 INFO [24391]: COREGRADE is starting... -- 22:04:52.581 INFO [24391]: Version from config: 1.0 -- 22:04:52.581 DEBUG [24391]: Connecting to database... -- 22:04:52.581 DEBUG [24391]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:04:52.581 SQL [24391]: pgsql_db_connect() -- 22:04:52.585 DEBUG [24391]: Database connection successful -- 22:04:52.585 INFO [24391]: _SERVER found -- 22:04:52.585 INFO [24391]: REMOTE_ADDR = 192.168.1.13 -- 22:04:52.585 INFO [24391]: SERVER_NAME = tokslaw.works.coregrade.com -- 22:04:52.585 INFO [24391]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; ci_session=5qp2nkq9neufqks06v620ts0i06qpci0 -- 22:04:52.585 INFO [24391]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 22:04:52.585 INFO [24391]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:04:52.596 INFO [24391]: COREGRADE is stopping... -- 22:04:52.596 DEBUG [24391]: Closing database connection -- 22:04:52.596 SQL [24391]: pgsql_close() -- 22:04:52.602 INFO [24391]: COREGRADE is starting... -- 22:04:52.602 INFO [24391]: Version from config: 1.0 -- 22:04:52.602 DEBUG [24391]: Connecting to database... -- 22:04:52.602 DEBUG [24391]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:04:52.602 SQL [24391]: pgsql_db_connect() -- 22:04:52.606 DEBUG [24391]: Database connection successful -- 22:04:52.606 INFO [24391]: _SERVER found -- 22:04:52.606 INFO [24391]: REMOTE_ADDR = 192.168.1.13 -- 22:04:52.606 INFO [24391]: SERVER_NAME = tokslaw.works.coregrade.com -- 22:04:52.606 INFO [24391]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; ci_session=5qp2nkq9neufqks06v620ts0i06qpci0 -- 22:04:52.606 INFO [24391]: QUERY_STRING = /assets/img/footer_1.jpg -- 22:04:52.606 INFO [24391]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:04:52.617 INFO [24391]: COREGRADE is stopping... -- 22:04:52.617 DEBUG [24391]: Closing database connection -- 22:04:52.617 SQL [24391]: pgsql_close() -- 02:48:20.949 INFO [26250]: COREGRADE is starting... -- 02:48:20.950 INFO [26250]: Version from config: 1.0 -- 02:48:20.950 DEBUG [26250]: Connecting to database... -- 02:48:20.950 DEBUG [26250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:20.950 SQL [26250]: pgsql_db_connect() -- 02:48:20.955 DEBUG [26250]: Database connection successful -- 02:48:20.955 INFO [26250]: _SERVER found -- 02:48:20.955 INFO [26250]: REMOTE_ADDR = 192.168.1.13 -- 02:48:20.955 INFO [26250]: SERVER_NAME = oameye.works.coregrade.com -- 02:48:20.955 INFO [26250]: QUERY_STRING = /.git/config -- 02:48:20.955 INFO [26250]: HTTP_X_FORWARDED_FOR = 51.158.118.213 -- 02:48:20.969 INFO [26250]: COREGRADE is stopping... -- 02:48:20.970 DEBUG [26250]: Closing database connection -- 02:48:20.970 SQL [26250]: pgsql_close() -- 02:48:21.107 INFO [24393]: COREGRADE is starting... -- 02:48:21.107 INFO [24393]: Version from config: 1.0 -- 02:48:21.107 DEBUG [24393]: Connecting to database... -- 02:48:21.107 DEBUG [24393]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:21.107 SQL [24393]: pgsql_db_connect() -- 02:48:21.111 DEBUG [24393]: Database connection successful -- 02:48:21.111 INFO [24393]: _SERVER found -- 02:48:21.111 INFO [24393]: REMOTE_ADDR = 192.168.1.13 -- 02:48:21.111 INFO [24393]: SERVER_NAME = oameye.works.coregrade.com -- 02:48:21.111 INFO [24393]: QUERY_STRING = /v2/_catalog -- 02:48:21.111 INFO [24393]: HTTP_X_FORWARDED_FOR = 51.158.118.213 -- 02:48:21.125 INFO [24393]: COREGRADE is stopping... -- 02:48:21.126 DEBUG [24393]: Closing database connection -- 02:48:21.126 SQL [24393]: pgsql_close() -- 02:48:27.187 INFO [24392]: COREGRADE is starting... -- 02:48:27.187 INFO [24392]: Version from config: 1.0 -- 02:48:27.187 DEBUG [24392]: Connecting to database... -- 02:48:27.187 DEBUG [24392]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:27.187 SQL [24392]: pgsql_db_connect() -- 02:48:27.191 DEBUG [24392]: Database connection successful -- 02:48:27.191 INFO [24392]: _SERVER found -- 02:48:27.191 INFO [24392]: REMOTE_ADDR = 192.168.1.13 -- 02:48:27.191 INFO [24392]: SERVER_NAME = oameye.works.coregrade.com -- 02:48:27.191 INFO [24392]: QUERY_STRING = /.env -- 02:48:27.191 INFO [24392]: HTTP_X_FORWARDED_FOR = 51.158.118.213 -- 02:48:27.205 INFO [24392]: COREGRADE is stopping... -- 02:48:27.205 DEBUG [24392]: Closing database connection -- 02:48:27.205 SQL [24392]: pgsql_close() -- 02:48:27.227 INFO [27449]: COREGRADE is starting... -- 02:48:27.227 INFO [27449]: Version from config: 1.0 -- 02:48:27.227 DEBUG [27449]: Connecting to database... -- 02:48:27.227 DEBUG [27449]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:27.227 SQL [27449]: pgsql_db_connect() -- 02:48:27.231 DEBUG [27449]: Database connection successful -- 02:48:27.231 INFO [27449]: _SERVER found -- 02:48:27.231 INFO [27449]: REMOTE_ADDR = 192.168.1.13 -- 02:48:27.231 INFO [27449]: SERVER_NAME = oameye.works.coregrade.com -- 02:48:27.231 INFO [27449]: QUERY_STRING = -- 02:48:27.231 INFO [27449]: HTTP_X_FORWARDED_FOR = 51.158.118.213 -- 02:48:27.275 INFO [27449]: COREGRADE is stopping... -- 02:48:27.275 DEBUG [27449]: Closing database connection -- 02:48:27.275 SQL [27449]: pgsql_close() -- 03:12:30.443 INFO [26251]: COREGRADE is starting... -- 03:12:30.443 INFO [26251]: Version from config: 1.0 -- 03:12:30.443 DEBUG [26251]: Connecting to database... -- 03:12:30.444 DEBUG [26251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:12:30.444 SQL [26251]: pgsql_db_connect() -- 03:12:30.463 INFO [24626]: COREGRADE is starting... -- 03:12:30.463 INFO [24626]: Version from config: 1.0 -- 03:12:30.463 DEBUG [24626]: Connecting to database... -- 03:12:30.463 DEBUG [24626]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:12:30.463 SQL [24626]: pgsql_db_connect() -- 03:12:30.470 INFO [24389]: COREGRADE is starting... -- 03:12:30.472 INFO [24389]: Version from config: 1.0 -- 03:12:30.472 DEBUG [24389]: Connecting to database... -- 03:12:30.472 DEBUG [24389]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:12:30.472 SQL [24389]: pgsql_db_connect() -- 03:12:30.483 INFO [26249]: COREGRADE is starting... -- 03:12:30.484 INFO [26249]: Version from config: 1.0 -- 03:12:30.484 DEBUG [26249]: Connecting to database... -- 03:12:30.484 DEBUG [26249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:12:30.484 SQL [26249]: pgsql_db_connect() -- 03:12:30.470 DEBUG [24626]: Database connection successful -- 03:12:30.470 INFO [24626]: _SERVER found -- 03:12:30.470 INFO [24626]: REMOTE_ADDR = 192.168.1.13 -- 03:12:30.470 INFO [24626]: SERVER_NAME = oameye.works.coregrade.com -- 03:12:30.470 INFO [24626]: QUERY_STRING = /v2/_catalog -- 03:12:30.470 INFO [24626]: HTTP_X_FORWARDED_FOR = 51.158.118.213 -- 03:12:30.488 INFO [24626]: COREGRADE is stopping... -- 03:12:30.489 DEBUG [24626]: Closing database connection -- 03:12:30.489 SQL [24626]: pgsql_close() -- 03:12:30.477 DEBUG [24389]: Database connection successful -- 03:12:30.477 INFO [24389]: _SERVER found -- 03:12:30.477 INFO [24389]: REMOTE_ADDR = 192.168.1.13 -- 03:12:30.477 INFO [24389]: SERVER_NAME = oameye.works.coregrade.com -- 03:12:30.477 INFO [24389]: QUERY_STRING = /.env -- 03:12:30.477 INFO [24389]: HTTP_X_FORWARDED_FOR = 51.158.118.213 -- 03:12:30.492 INFO [24389]: COREGRADE is stopping... -- 03:12:30.492 DEBUG [24389]: Closing database connection -- 03:12:30.492 SQL [24389]: pgsql_close() -- 03:12:30.449 DEBUG [26251]: Database connection successful -- 03:12:30.449 INFO [26251]: _SERVER found -- 03:12:30.449 INFO [26251]: REMOTE_ADDR = 192.168.1.13 -- 03:12:30.449 INFO [26251]: SERVER_NAME = oameye.works.coregrade.com -- 03:12:30.449 INFO [26251]: QUERY_STRING = -- 03:12:30.449 INFO [26251]: HTTP_X_FORWARDED_FOR = 51.158.118.213 -- 03:12:30.498 INFO [26251]: COREGRADE is stopping... -- 03:12:30.498 DEBUG [26251]: Closing database connection -- 03:12:30.498 SQL [26251]: pgsql_close() -- 03:12:30.488 DEBUG [26249]: Database connection successful -- 03:12:30.488 INFO [26249]: _SERVER found -- 03:12:30.488 INFO [26249]: REMOTE_ADDR = 192.168.1.13 -- 03:12:30.488 INFO [26249]: SERVER_NAME = oameye.works.coregrade.com -- 03:12:30.488 INFO [26249]: QUERY_STRING = /.git/config -- 03:12:30.488 INFO [26249]: HTTP_X_FORWARDED_FOR = 51.158.118.213 -- 03:12:30.501 INFO [26249]: COREGRADE is stopping... -- 03:12:30.501 DEBUG [26249]: Closing database connection -- 03:12:30.501 SQL [26249]: pgsql_close() -- 03:32:58.812 INFO [24411]: COREGRADE is starting... -- 03:32:58.813 INFO [24411]: Version from config: 1.0 -- 03:32:58.813 DEBUG [24411]: Connecting to database... -- 03:32:58.813 DEBUG [24411]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:32:58.813 SQL [24411]: pgsql_db_connect() -- 03:32:58.817 DEBUG [24411]: Database connection successful -- 03:32:58.817 INFO [24411]: _SERVER found -- 03:32:58.817 INFO [24411]: REMOTE_ADDR = 192.168.1.13 -- 03:32:58.817 INFO [24411]: SERVER_NAME = oameye.works.coregrade.com -- 03:32:58.817 INFO [24411]: QUERY_STRING = /.env -- 03:32:58.817 INFO [24411]: HTTP_X_FORWARDED_FOR = 51.158.118.213 -- 03:32:58.830 INFO [24411]: COREGRADE is stopping... -- 03:32:58.830 DEBUG [24411]: Closing database connection -- 03:32:58.830 SQL [24411]: pgsql_close() -- 03:32:59.153 INFO [24391]: COREGRADE is starting... -- 03:32:59.153 INFO [24391]: Version from config: 1.0 -- 03:32:59.153 DEBUG [24391]: Connecting to database... -- 03:32:59.153 DEBUG [24391]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:32:59.153 SQL [24391]: pgsql_db_connect() -- 03:32:59.158 INFO [24393]: COREGRADE is starting... -- 03:32:59.158 INFO [24393]: Version from config: 1.0 -- 03:32:59.158 DEBUG [24393]: Connecting to database... -- 03:32:59.158 DEBUG [24393]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:32:59.158 SQL [24393]: pgsql_db_connect() -- 03:32:59.157 DEBUG [24391]: Database connection successful -- 03:32:59.157 INFO [24391]: _SERVER found -- 03:32:59.157 INFO [24391]: REMOTE_ADDR = 192.168.1.13 -- 03:32:59.157 INFO [24391]: SERVER_NAME = oameye.works.coregrade.com -- 03:32:59.157 INFO [24391]: QUERY_STRING = /.git/config -- 03:32:59.157 INFO [24391]: HTTP_X_FORWARDED_FOR = 51.158.118.213 -- 03:32:59.170 INFO [24391]: COREGRADE is stopping... -- 03:32:59.170 DEBUG [24391]: Closing database connection -- 03:32:59.170 SQL [24391]: pgsql_close() -- 03:32:59.162 DEBUG [24393]: Database connection successful -- 03:32:59.162 INFO [24393]: _SERVER found -- 03:32:59.162 INFO [24393]: REMOTE_ADDR = 192.168.1.13 -- 03:32:59.162 INFO [24393]: SERVER_NAME = oameye.works.coregrade.com -- 03:32:59.162 INFO [24393]: QUERY_STRING = -- 03:32:59.162 INFO [24393]: HTTP_X_FORWARDED_FOR = 51.158.118.213 -- 03:32:59.196 INFO [24393]: COREGRADE is stopping... -- 03:32:59.196 DEBUG [24393]: Closing database connection -- 03:32:59.196 SQL [24393]: pgsql_close() -- 03:32:59.444 INFO [24391]: COREGRADE is starting... -- 03:32:59.444 INFO [24391]: Version from config: 1.0 -- 03:32:59.444 DEBUG [24391]: Connecting to database... -- 03:32:59.444 DEBUG [24391]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:32:59.444 SQL [24391]: pgsql_db_connect() -- 03:32:59.448 DEBUG [24391]: Database connection successful -- 03:32:59.448 INFO [24391]: _SERVER found -- 03:32:59.448 INFO [24391]: REMOTE_ADDR = 192.168.1.13 -- 03:32:59.448 INFO [24391]: SERVER_NAME = oameye.works.coregrade.com -- 03:32:59.448 INFO [24391]: QUERY_STRING = /v2/_catalog -- 03:32:59.448 INFO [24391]: HTTP_X_FORWARDED_FOR = 51.158.118.213 -- 03:32:59.459 INFO [24391]: COREGRADE is stopping... -- 03:32:59.459 DEBUG [24391]: Closing database connection -- 03:32:59.459 SQL [24391]: pgsql_close() -- 04:43:21.447 INFO [26250]: COREGRADE is starting... -- 04:43:21.448 INFO [26250]: Version from config: 1.0 -- 04:43:21.448 DEBUG [26250]: Connecting to database... -- 04:43:21.448 DEBUG [26250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:43:21.448 SQL [26250]: pgsql_db_connect() -- 04:43:21.492 INFO [26250]: COREGRADE is starting... -- 04:43:21.492 INFO [26250]: Version from config: 1.0 -- 04:43:21.492 DEBUG [26250]: Connecting to database... -- 04:43:21.492 DEBUG [26250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:43:21.492 SQL [26250]: pgsql_db_connect() -- 04:43:21.496 DEBUG [26250]: Database connection successful -- 04:43:21.496 INFO [26250]: _SERVER found -- 04:43:21.496 INFO [26250]: REMOTE_ADDR = 192.168.1.13 -- 04:43:21.496 INFO [26250]: SERVER_NAME = oameye.works.coregrade.com -- 04:43:21.496 INFO [26250]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035 -- 04:43:21.496 INFO [26250]: QUERY_STRING = -- 04:43:21.496 INFO [26250]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 04:43:21.496 INFO [26250]: SystemStatus()09-09-********~************ -- 04:43:21.496 INFO [26250]: long coregrade_api_main(CVars in, CVars &out) -- 04:43:21.496 INFO [26250]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 04:43:21.496 INFO [26250]: account calls -- 04:43:21.496 INFO [26250]: account_calls() -- 04:43:21.496 INFO [26250]: LoginCoreGradeAccount() -- 04:43:21.496 FLOG_MAX [26250]: REQ_STRING(username) -- 04:43:21.496 FLOG_MAX [26250]: REQ_STRING(password) -- 04:43:21.496 FLOG_MAX [26250]: REQ_STRING(sessionid) -- 04:43:21.496 FLOG_MAX [26250]: long load_db_record( CVars &rec, const char * query, ... ) -- 04:43:21.496 SQL [26250]: pgsql_query() -- 04:43:21.496 SQL [26250]: About to run query: -- 04:43:21.496 SQL [26250]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('obaxnoma@gmail.com') AND password= md5('obaro001!') -- 04:43:21.500 SQL [26250]: Found rows: 0 -- 04:43:21.500 SQL [26250]: Found rows: 0 -- 04:43:21.500 INFO [26250]: long SessionCheck(long uid, const char *sessionid, int create ) -- 04:43:21.500 INFO [26250]: /LoginCoreGradeAccount() -- 04:43:21.500 INFO [26250]: RET: member_id= -- 04:43:21.500 INFO [26250]: RET: result=YES I GET TO BACK END -- 04:43:21.500 INFO [26250]: RET: sessionid= -- 04:43:21.500 INFO [26250]: RET: status=Session check failed -- 04:43:21.501 INFO [26250]: COREGRADE is stopping... -- 04:43:21.501 DEBUG [26250]: Closing database connection -- 04:43:21.501 SQL [26250]: pgsql_close() -- 04:43:21.453 DEBUG [26250]: Database connection successful -- 04:43:21.453 INFO [26250]: _SERVER found -- 04:43:21.453 INFO [26250]: REMOTE_ADDR = 192.168.1.13 -- 04:43:21.453 INFO [26250]: SERVER_NAME = oameye.works.coregrade.com -- 04:43:21.453 INFO [26250]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035 -- 04:43:21.453 INFO [26250]: QUERY_STRING = /auth -- 04:43:21.453 INFO [26250]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 04:43:21.502 INFO [26250]: COREGRADE is stopping... -- 04:43:21.502 DEBUG [26250]: Closing database connection -- 04:43:21.502 SQL [26250]: pgsql_close() -- 04:43:21.849 INFO [26250]: COREGRADE is starting... -- 04:43:21.849 INFO [26250]: Version from config: 1.0 -- 04:43:21.849 DEBUG [26250]: Connecting to database... -- 04:43:21.849 DEBUG [26250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:43:21.850 SQL [26250]: pgsql_db_connect() -- 04:43:21.854 DEBUG [26250]: Database connection successful -- 04:43:21.854 INFO [26250]: _SERVER found -- 04:43:21.854 INFO [26250]: REMOTE_ADDR = 192.168.1.13 -- 04:43:21.854 INFO [26250]: SERVER_NAME = oameye.works.coregrade.com -- 04:43:21.854 INFO [26250]: HTTP_COOKIE = ci_session=dreqhb9de8uc1sh83gdrvlrhmps6734u; _ga=GA1.2.377719551.1581411035 -- 04:43:21.854 INFO [26250]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 04:43:21.854 INFO [26250]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 04:43:21.865 INFO [26250]: COREGRADE is stopping... -- 04:43:21.865 DEBUG [26250]: Closing database connection -- 04:43:21.865 SQL [26250]: pgsql_close() -- 04:43:21.903 INFO [26250]: COREGRADE is starting... -- 04:43:21.903 INFO [26250]: Version from config: 1.0 -- 04:43:21.903 DEBUG [26250]: Connecting to database... -- 04:43:21.903 DEBUG [26250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:43:21.903 SQL [26250]: pgsql_db_connect() -- 04:43:21.907 DEBUG [26250]: Database connection successful -- 04:43:21.907 INFO [26250]: _SERVER found -- 04:43:21.907 INFO [26250]: REMOTE_ADDR = 192.168.1.13 -- 04:43:21.907 INFO [26250]: SERVER_NAME = oameye.works.coregrade.com -- 04:43:21.907 INFO [26250]: HTTP_COOKIE = ci_session=dreqhb9de8uc1sh83gdrvlrhmps6734u; _ga=GA1.2.377719551.1581411035 -- 04:43:21.907 INFO [26250]: QUERY_STRING = /app-assets/data/locales/en.json -- 04:43:21.907 INFO [26250]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 04:43:21.918 INFO [26250]: COREGRADE is stopping... -- 04:43:21.918 DEBUG [26250]: Closing database connection -- 04:43:21.918 SQL [26250]: pgsql_close() -- 04:43:48.659 INFO [24392]: COREGRADE is starting... -- 04:43:48.659 INFO [24392]: Version from config: 1.0 -- 04:43:48.659 DEBUG [24392]: Connecting to database... -- 04:43:48.659 DEBUG [24392]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:43:48.659 SQL [24392]: pgsql_db_connect() -- 04:43:48.697 INFO [24392]: COREGRADE is starting... -- 04:43:48.697 INFO [24392]: Version from config: 1.0 -- 04:43:48.697 DEBUG [24392]: Connecting to database... -- 04:43:48.697 DEBUG [24392]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:43:48.697 SQL [24392]: pgsql_db_connect() -- 04:43:48.701 DEBUG [24392]: Database connection successful -- 04:43:48.701 INFO [24392]: _SERVER found -- 04:43:48.701 INFO [24392]: REMOTE_ADDR = 192.168.1.13 -- 04:43:48.701 INFO [24392]: SERVER_NAME = oameye.works.coregrade.com -- 04:43:48.701 INFO [24392]: HTTP_COOKIE = ci_session=dreqhb9de8uc1sh83gdrvlrhmps6734u; _ga=GA1.2.377719551.1581411035 -- 04:43:48.701 INFO [24392]: QUERY_STRING = -- 04:43:48.701 INFO [24392]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 04:43:48.701 INFO [24392]: SystemStatus()09-09-********~************ -- 04:43:48.701 INFO [24392]: long coregrade_api_main(CVars in, CVars &out) -- 04:43:48.701 INFO [24392]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 04:43:48.701 INFO [24392]: account calls -- 04:43:48.701 INFO [24392]: account_calls() -- 04:43:48.701 INFO [24392]: LoginCoreGradeAccount() -- 04:43:48.701 FLOG_MAX [24392]: REQ_STRING(username) -- 04:43:48.701 FLOG_MAX [24392]: REQ_STRING(password) -- 04:43:48.701 FLOG_MAX [24392]: REQ_STRING(sessionid) -- 04:43:48.701 FLOG_MAX [24392]: long load_db_record( CVars &rec, const char * query, ... ) -- 04:43:48.701 SQL [24392]: pgsql_query() -- 04:43:48.701 SQL [24392]: About to run query: -- 04:43:48.701 SQL [24392]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('obaxnoma@gmail.com') AND password= md5('obaro001!') -- 04:43:48.704 SQL [24392]: Found rows: 0 -- 04:43:48.704 SQL [24392]: Found rows: 0 -- 04:43:48.704 INFO [24392]: long SessionCheck(long uid, const char *sessionid, int create ) -- 04:43:48.704 INFO [24392]: /LoginCoreGradeAccount() -- 04:43:48.704 INFO [24392]: RET: member_id= -- 04:43:48.704 INFO [24392]: RET: result=YES I GET TO BACK END -- 04:43:48.704 INFO [24392]: RET: sessionid= -- 04:43:48.704 INFO [24392]: RET: status=Session check failed -- 04:43:48.706 INFO [24392]: COREGRADE is stopping... -- 04:43:48.706 DEBUG [24392]: Closing database connection -- 04:43:48.706 SQL [24392]: pgsql_close() -- 04:43:48.663 DEBUG [24392]: Database connection successful -- 04:43:48.663 INFO [24392]: _SERVER found -- 04:43:48.663 INFO [24392]: REMOTE_ADDR = 192.168.1.13 -- 04:43:48.663 INFO [24392]: SERVER_NAME = oameye.works.coregrade.com -- 04:43:48.663 INFO [24392]: HTTP_COOKIE = ci_session=dreqhb9de8uc1sh83gdrvlrhmps6734u; _ga=GA1.2.377719551.1581411035 -- 04:43:48.663 INFO [24392]: QUERY_STRING = /auth -- 04:43:48.663 INFO [24392]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 04:43:48.706 INFO [24392]: COREGRADE is stopping... -- 04:43:48.706 DEBUG [24392]: Closing database connection -- 04:43:48.706 SQL [24392]: pgsql_close() -- 04:43:48.800 INFO [24392]: COREGRADE is starting... -- 04:43:48.801 INFO [24392]: Version from config: 1.0 -- 04:43:48.801 DEBUG [24392]: Connecting to database... -- 04:43:48.801 DEBUG [24392]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:43:48.801 SQL [24392]: pgsql_db_connect() -- 04:43:48.805 DEBUG [24392]: Database connection successful -- 04:43:48.805 INFO [24392]: _SERVER found -- 04:43:48.805 INFO [24392]: REMOTE_ADDR = 192.168.1.13 -- 04:43:48.805 INFO [24392]: SERVER_NAME = oameye.works.coregrade.com -- 04:43:48.805 INFO [24392]: HTTP_COOKIE = ci_session=dreqhb9de8uc1sh83gdrvlrhmps6734u; _ga=GA1.2.377719551.1581411035 -- 04:43:48.805 INFO [24392]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 04:43:48.805 INFO [24392]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 04:43:48.816 INFO [24392]: COREGRADE is stopping... -- 04:43:48.816 DEBUG [24392]: Closing database connection -- 04:43:48.816 SQL [24392]: pgsql_close() -- 04:43:48.863 INFO [27449]: COREGRADE is starting... -- 04:43:48.863 INFO [27449]: Version from config: 1.0 -- 04:43:48.863 DEBUG [27449]: Connecting to database... -- 04:43:48.863 DEBUG [27449]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:43:48.863 SQL [27449]: pgsql_db_connect() -- 04:43:48.867 DEBUG [27449]: Database connection successful -- 04:43:48.867 INFO [27449]: _SERVER found -- 04:43:48.867 INFO [27449]: REMOTE_ADDR = 192.168.1.13 -- 04:43:48.867 INFO [27449]: SERVER_NAME = oameye.works.coregrade.com -- 04:43:48.867 INFO [27449]: HTTP_COOKIE = ci_session=dreqhb9de8uc1sh83gdrvlrhmps6734u; _ga=GA1.2.377719551.1581411035 -- 04:43:48.867 INFO [27449]: QUERY_STRING = /app-assets/data/locales/en.json -- 04:43:48.867 INFO [27449]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 04:43:48.880 INFO [27449]: COREGRADE is stopping... -- 04:43:48.880 DEBUG [27449]: Closing database connection -- 04:43:48.880 SQL [27449]: pgsql_close() -- 05:33:32.281 INFO [24626]: COREGRADE is starting... -- 05:33:32.281 INFO [24626]: Version from config: 1.0 -- 05:33:32.281 DEBUG [24626]: Connecting to database... -- 05:33:32.281 DEBUG [24626]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:33:32.281 SQL [24626]: pgsql_db_connect() -- 05:33:32.286 DEBUG [24626]: Database connection successful -- 05:33:32.286 INFO [24626]: _SERVER found -- 05:33:32.286 INFO [24626]: REMOTE_ADDR = 192.168.1.13 -- 05:33:32.286 INFO [24626]: SERVER_NAME = oameye.works.coregrade.com -- 05:33:32.286 INFO [24626]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310 -- 05:33:32.286 INFO [24626]: QUERY_STRING = /auth -- 05:33:32.286 INFO [24626]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:33:32.321 INFO [24626]: COREGRADE is stopping... -- 05:33:32.321 DEBUG [24626]: Closing database connection -- 05:33:32.321 SQL [24626]: pgsql_close() -- 05:33:32.535 INFO [26249]: COREGRADE is starting... -- 05:33:32.535 INFO [26249]: Version from config: 1.0 -- 05:33:32.535 DEBUG [26249]: Connecting to database... -- 05:33:32.535 DEBUG [26249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:33:32.535 SQL [26249]: pgsql_db_connect() -- 05:33:32.539 DEBUG [26249]: Database connection successful -- 05:33:32.539 INFO [26249]: _SERVER found -- 05:33:32.539 INFO [26249]: REMOTE_ADDR = 192.168.1.13 -- 05:33:32.539 INFO [26249]: SERVER_NAME = oameye.works.coregrade.com -- 05:33:32.539 INFO [26249]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=0inejabngujugktsuo3oomu8kgdau0mk -- 05:33:32.539 INFO [26249]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 05:33:32.539 INFO [26249]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:33:32.552 INFO [26249]: COREGRADE is stopping... -- 05:33:32.552 DEBUG [26249]: Closing database connection -- 05:33:32.552 SQL [26249]: pgsql_close() -- 05:33:32.671 INFO [26249]: COREGRADE is starting... -- 05:33:32.671 INFO [26249]: Version from config: 1.0 -- 05:33:32.671 DEBUG [26249]: Connecting to database... -- 05:33:32.671 DEBUG [26249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:33:32.671 SQL [26249]: pgsql_db_connect() -- 05:33:32.675 DEBUG [26249]: Database connection successful -- 05:33:32.675 INFO [26249]: _SERVER found -- 05:33:32.675 INFO [26249]: REMOTE_ADDR = 192.168.1.13 -- 05:33:32.675 INFO [26249]: SERVER_NAME = oameye.works.coregrade.com -- 05:33:32.675 INFO [26249]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=0inejabngujugktsuo3oomu8kgdau0mk -- 05:33:32.675 INFO [26249]: QUERY_STRING = /app-assets/data/locales/en.json -- 05:33:32.675 INFO [26249]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:33:32.687 INFO [26249]: COREGRADE is stopping... -- 05:33:32.687 DEBUG [26249]: Closing database connection -- 05:33:32.687 SQL [26249]: pgsql_close() -- 05:39:51.348 INFO [24411]: COREGRADE is starting... -- 05:39:51.348 INFO [24411]: Version from config: 1.0 -- 05:39:51.348 DEBUG [24411]: Connecting to database... -- 05:39:51.348 DEBUG [24411]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:39:51.348 SQL [24411]: pgsql_db_connect() -- 05:39:51.352 DEBUG [24411]: Database connection successful -- 05:39:51.352 INFO [24411]: _SERVER found -- 05:39:51.352 INFO [24411]: REMOTE_ADDR = 192.168.1.13 -- 05:39:51.352 INFO [24411]: SERVER_NAME = oameye.works.coregrade.com -- 05:39:51.352 INFO [24411]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=0inejabngujugktsuo3oomu8kgdau0mk -- 05:39:51.352 INFO [24411]: QUERY_STRING = -- 05:39:51.352 INFO [24411]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:39:51.387 INFO [24411]: COREGRADE is stopping... -- 05:39:51.387 DEBUG [24411]: Closing database connection -- 05:39:51.387 SQL [24411]: pgsql_close() -- 05:39:55.754 INFO [24411]: COREGRADE is starting... -- 05:39:55.754 INFO [24411]: Version from config: 1.0 -- 05:39:55.754 DEBUG [24411]: Connecting to database... -- 05:39:55.754 DEBUG [24411]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:39:55.754 SQL [24411]: pgsql_db_connect() -- 05:39:55.758 DEBUG [24411]: Database connection successful -- 05:39:55.758 INFO [24411]: _SERVER found -- 05:39:55.758 INFO [24411]: REMOTE_ADDR = 192.168.1.13 -- 05:39:55.758 INFO [24411]: SERVER_NAME = oameye.works.coregrade.com -- 05:39:55.758 INFO [24411]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1tlqu5ba2fgc40v29nrfs24dsltbqbf0; _gat_gtag_UA_54829827_2=1 -- 05:39:55.758 INFO [24411]: QUERY_STRING = /home/howitworks -- 05:39:55.758 INFO [24411]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:39:55.788 INFO [24411]: COREGRADE is stopping... -- 05:39:55.789 DEBUG [24411]: Closing database connection -- 05:39:55.789 SQL [24411]: pgsql_close() -- 05:39:55.904 INFO [24411]: COREGRADE is starting... -- 05:39:55.904 INFO [24411]: Version from config: 1.0 -- 05:39:55.904 DEBUG [24411]: Connecting to database... -- 05:39:55.904 DEBUG [24411]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:39:55.904 SQL [24411]: pgsql_db_connect() -- 05:39:55.908 DEBUG [24411]: Database connection successful -- 05:39:55.908 INFO [24411]: _SERVER found -- 05:39:55.908 INFO [24411]: REMOTE_ADDR = 192.168.1.13 -- 05:39:55.908 INFO [24411]: SERVER_NAME = oameye.works.coregrade.com -- 05:39:55.908 INFO [24411]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1tlqu5ba2fgc40v29nrfs24dsltbqbf0; _gat_gtag_UA_54829827_2=1 -- 05:39:55.908 INFO [24411]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 05:39:55.908 INFO [24411]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:39:55.919 INFO [24411]: COREGRADE is stopping... -- 05:39:55.919 DEBUG [24411]: Closing database connection -- 05:39:55.919 SQL [24411]: pgsql_close() -- 05:39:55.922 INFO [24393]: COREGRADE is starting... -- 05:39:55.923 INFO [24393]: Version from config: 1.0 -- 05:39:55.923 DEBUG [24393]: Connecting to database... -- 05:39:55.923 DEBUG [24393]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:39:55.923 SQL [24393]: pgsql_db_connect() -- 05:39:55.927 DEBUG [24393]: Database connection successful -- 05:39:55.927 INFO [24393]: _SERVER found -- 05:39:55.927 INFO [24393]: REMOTE_ADDR = 192.168.1.13 -- 05:39:55.927 INFO [24393]: SERVER_NAME = oameye.works.coregrade.com -- 05:39:55.927 INFO [24393]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1tlqu5ba2fgc40v29nrfs24dsltbqbf0; _gat_gtag_UA_54829827_2=1 -- 05:39:55.927 INFO [24393]: QUERY_STRING = /app-assets/data/locales/en.json -- 05:39:55.927 INFO [24393]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:39:55.939 INFO [24393]: COREGRADE is stopping... -- 05:39:55.939 DEBUG [24393]: Closing database connection -- 05:39:55.939 SQL [24393]: pgsql_close() -- 05:41:12.879 INFO [24391]: COREGRADE is starting... -- 05:41:12.880 INFO [24391]: Version from config: 1.0 -- 05:41:12.880 DEBUG [24391]: Connecting to database... -- 05:41:12.880 DEBUG [24391]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:41:12.880 SQL [24391]: pgsql_db_connect() -- 05:41:12.884 DEBUG [24391]: Database connection successful -- 05:41:12.884 INFO [24391]: _SERVER found -- 05:41:12.884 INFO [24391]: REMOTE_ADDR = 192.168.1.13 -- 05:41:12.884 INFO [24391]: SERVER_NAME = oameye.works.coregrade.com -- 05:41:12.884 INFO [24391]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1tlqu5ba2fgc40v29nrfs24dsltbqbf0 -- 05:41:12.884 INFO [24391]: QUERY_STRING = /home/howitworks -- 05:41:12.884 INFO [24391]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:41:12.917 INFO [24391]: COREGRADE is stopping... -- 05:41:12.917 DEBUG [24391]: Closing database connection -- 05:41:12.917 SQL [24391]: pgsql_close() -- 05:41:13.054 INFO [24391]: COREGRADE is starting... -- 05:41:13.055 INFO [24391]: Version from config: 1.0 -- 05:41:13.055 DEBUG [24391]: Connecting to database... -- 05:41:13.055 DEBUG [24391]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:41:13.055 SQL [24391]: pgsql_db_connect() -- 05:41:13.062 INFO [26250]: COREGRADE is starting... -- 05:41:13.062 INFO [26250]: Version from config: 1.0 -- 05:41:13.062 DEBUG [26250]: Connecting to database... -- 05:41:13.062 DEBUG [26250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:41:13.062 SQL [26250]: pgsql_db_connect() -- 05:41:13.059 DEBUG [24391]: Database connection successful -- 05:41:13.059 INFO [24391]: _SERVER found -- 05:41:13.059 INFO [24391]: REMOTE_ADDR = 192.168.1.13 -- 05:41:13.059 INFO [24391]: SERVER_NAME = oameye.works.coregrade.com -- 05:41:13.059 INFO [24391]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1tlqu5ba2fgc40v29nrfs24dsltbqbf0 -- 05:41:13.059 INFO [24391]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 05:41:13.059 INFO [24391]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:41:13.070 INFO [24391]: COREGRADE is stopping... -- 05:41:13.070 DEBUG [24391]: Closing database connection -- 05:41:13.070 SQL [24391]: pgsql_close() -- 05:41:13.066 DEBUG [26250]: Database connection successful -- 05:41:13.066 INFO [26250]: _SERVER found -- 05:41:13.066 INFO [26250]: REMOTE_ADDR = 192.168.1.13 -- 05:41:13.066 INFO [26250]: SERVER_NAME = oameye.works.coregrade.com -- 05:41:13.066 INFO [26250]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1tlqu5ba2fgc40v29nrfs24dsltbqbf0 -- 05:41:13.066 INFO [26250]: QUERY_STRING = /app-assets/data/locales/en.json -- 05:41:13.066 INFO [26250]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:41:13.078 INFO [26250]: COREGRADE is stopping... -- 05:41:13.078 DEBUG [26250]: Closing database connection -- 05:41:13.078 SQL [26250]: pgsql_close() -- 05:41:43.775 INFO [24392]: COREGRADE is starting... -- 05:41:43.775 INFO [24392]: Version from config: 1.0 -- 05:41:43.775 DEBUG [24392]: Connecting to database... -- 05:41:43.775 DEBUG [24392]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:41:43.775 SQL [24392]: pgsql_db_connect() -- 05:41:43.779 DEBUG [24392]: Database connection successful -- 05:41:43.779 INFO [24392]: _SERVER found -- 05:41:43.779 INFO [24392]: REMOTE_ADDR = 192.168.1.13 -- 05:41:43.779 INFO [24392]: SERVER_NAME = oameye.works.coregrade.com -- 05:41:43.779 INFO [24392]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1tlqu5ba2fgc40v29nrfs24dsltbqbf0 -- 05:41:43.779 INFO [24392]: QUERY_STRING = /home/howitworks -- 05:41:43.779 INFO [24392]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:41:43.812 INFO [24392]: COREGRADE is stopping... -- 05:41:43.812 DEBUG [24392]: Closing database connection -- 05:41:43.812 SQL [24392]: pgsql_close() -- 05:41:43.914 INFO [24392]: COREGRADE is starting... -- 05:41:43.914 INFO [24392]: Version from config: 1.0 -- 05:41:43.914 DEBUG [24392]: Connecting to database... -- 05:41:43.914 DEBUG [24392]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:41:43.914 SQL [24392]: pgsql_db_connect() -- 05:41:43.918 DEBUG [24392]: Database connection successful -- 05:41:43.918 INFO [24392]: _SERVER found -- 05:41:43.918 INFO [24392]: REMOTE_ADDR = 192.168.1.13 -- 05:41:43.918 INFO [24392]: SERVER_NAME = oameye.works.coregrade.com -- 05:41:43.918 INFO [24392]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1tlqu5ba2fgc40v29nrfs24dsltbqbf0 -- 05:41:43.918 INFO [24392]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 05:41:43.918 INFO [24392]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:41:43.930 INFO [24392]: COREGRADE is stopping... -- 05:41:43.930 DEBUG [24392]: Closing database connection -- 05:41:43.930 SQL [24392]: pgsql_close() -- 05:41:43.933 INFO [27449]: COREGRADE is starting... -- 05:41:43.933 INFO [27449]: Version from config: 1.0 -- 05:41:43.933 DEBUG [27449]: Connecting to database... -- 05:41:43.933 DEBUG [27449]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:41:43.933 SQL [27449]: pgsql_db_connect() -- 05:41:43.937 DEBUG [27449]: Database connection successful -- 05:41:43.937 INFO [27449]: _SERVER found -- 05:41:43.937 INFO [27449]: REMOTE_ADDR = 192.168.1.13 -- 05:41:43.937 INFO [27449]: SERVER_NAME = oameye.works.coregrade.com -- 05:41:43.937 INFO [27449]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1tlqu5ba2fgc40v29nrfs24dsltbqbf0 -- 05:41:43.937 INFO [27449]: QUERY_STRING = /app-assets/data/locales/en.json -- 05:41:43.937 INFO [27449]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:41:43.949 INFO [27449]: COREGRADE is stopping... -- 05:41:43.949 DEBUG [27449]: Closing database connection -- 05:41:43.949 SQL [27449]: pgsql_close() -- 05:42:22.862 INFO [24626]: COREGRADE is starting... -- 05:42:22.862 INFO [24626]: Version from config: 1.0 -- 05:42:22.862 DEBUG [24626]: Connecting to database... -- 05:42:22.862 DEBUG [24626]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:42:22.862 SQL [24626]: pgsql_db_connect() -- 05:42:22.867 DEBUG [24626]: Database connection successful -- 05:42:22.867 INFO [24626]: _SERVER found -- 05:42:22.867 INFO [24626]: REMOTE_ADDR = 192.168.1.13 -- 05:42:22.867 INFO [24626]: SERVER_NAME = oameye.works.coregrade.com -- 05:42:22.867 INFO [24626]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1tlqu5ba2fgc40v29nrfs24dsltbqbf0 -- 05:42:22.867 INFO [24626]: QUERY_STRING = /home/howitworks -- 05:42:22.867 INFO [24626]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:42:22.898 INFO [24626]: COREGRADE is stopping... -- 05:42:22.898 DEBUG [24626]: Closing database connection -- 05:42:22.898 SQL [24626]: pgsql_close() -- 05:42:23.031 INFO [24626]: COREGRADE is starting... -- 05:42:23.031 INFO [24626]: Version from config: 1.0 -- 05:42:23.031 DEBUG [24626]: Connecting to database... -- 05:42:23.031 DEBUG [24626]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:42:23.031 SQL [24626]: pgsql_db_connect() -- 05:42:23.042 INFO [26251]: COREGRADE is starting... -- 05:42:23.043 INFO [26251]: Version from config: 1.0 -- 05:42:23.043 DEBUG [26251]: Connecting to database... -- 05:42:23.043 DEBUG [26251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:42:23.043 SQL [26251]: pgsql_db_connect() -- 05:42:23.035 DEBUG [24626]: Database connection successful -- 05:42:23.035 INFO [24626]: _SERVER found -- 05:42:23.035 INFO [24626]: REMOTE_ADDR = 192.168.1.13 -- 05:42:23.035 INFO [24626]: SERVER_NAME = oameye.works.coregrade.com -- 05:42:23.035 INFO [24626]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1tlqu5ba2fgc40v29nrfs24dsltbqbf0 -- 05:42:23.035 INFO [24626]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 05:42:23.035 INFO [24626]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:42:23.046 INFO [24626]: COREGRADE is stopping... -- 05:42:23.046 DEBUG [24626]: Closing database connection -- 05:42:23.046 SQL [24626]: pgsql_close() -- 05:42:23.046 DEBUG [26251]: Database connection successful -- 05:42:23.047 INFO [26251]: _SERVER found -- 05:42:23.047 INFO [26251]: REMOTE_ADDR = 192.168.1.13 -- 05:42:23.047 INFO [26251]: SERVER_NAME = oameye.works.coregrade.com -- 05:42:23.047 INFO [26251]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1tlqu5ba2fgc40v29nrfs24dsltbqbf0 -- 05:42:23.047 INFO [26251]: QUERY_STRING = /app-assets/data/locales/en.json -- 05:42:23.047 INFO [26251]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:42:23.058 INFO [26251]: COREGRADE is stopping... -- 05:42:23.058 DEBUG [26251]: Closing database connection -- 05:42:23.058 SQL [26251]: pgsql_close() -- 05:43:08.864 INFO [24389]: COREGRADE is starting... -- 05:43:08.864 INFO [24389]: Version from config: 1.0 -- 05:43:08.864 DEBUG [24389]: Connecting to database... -- 05:43:08.864 DEBUG [24389]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:43:08.864 SQL [24389]: pgsql_db_connect() -- 05:43:08.868 DEBUG [24389]: Database connection successful -- 05:43:08.868 INFO [24389]: _SERVER found -- 05:43:08.868 INFO [24389]: REMOTE_ADDR = 192.168.1.13 -- 05:43:08.868 INFO [24389]: SERVER_NAME = oameye.works.coregrade.com -- 05:43:08.868 INFO [24389]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1tlqu5ba2fgc40v29nrfs24dsltbqbf0 -- 05:43:08.868 INFO [24389]: QUERY_STRING = /home/howitworks -- 05:43:08.868 INFO [24389]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:43:08.900 INFO [24389]: COREGRADE is stopping... -- 05:43:08.900 DEBUG [24389]: Closing database connection -- 05:43:08.900 SQL [24389]: pgsql_close() -- 05:43:09.043 INFO [24389]: COREGRADE is starting... -- 05:43:09.043 INFO [24389]: Version from config: 1.0 -- 05:43:09.043 DEBUG [24389]: Connecting to database... -- 05:43:09.043 DEBUG [24389]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:43:09.043 SQL [24389]: pgsql_db_connect() -- 05:43:09.053 INFO [26249]: COREGRADE is starting... -- 05:43:09.053 INFO [26249]: Version from config: 1.0 -- 05:43:09.053 DEBUG [26249]: Connecting to database... -- 05:43:09.053 DEBUG [26249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:43:09.053 SQL [26249]: pgsql_db_connect() -- 05:43:09.047 DEBUG [24389]: Database connection successful -- 05:43:09.047 INFO [24389]: _SERVER found -- 05:43:09.047 INFO [24389]: REMOTE_ADDR = 192.168.1.13 -- 05:43:09.047 INFO [24389]: SERVER_NAME = oameye.works.coregrade.com -- 05:43:09.047 INFO [24389]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1tlqu5ba2fgc40v29nrfs24dsltbqbf0 -- 05:43:09.047 INFO [24389]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 05:43:09.047 INFO [24389]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:43:09.059 INFO [24389]: COREGRADE is stopping... -- 05:43:09.059 DEBUG [24389]: Closing database connection -- 05:43:09.059 SQL [24389]: pgsql_close() -- 05:43:09.057 DEBUG [26249]: Database connection successful -- 05:43:09.057 INFO [26249]: _SERVER found -- 05:43:09.057 INFO [26249]: REMOTE_ADDR = 192.168.1.13 -- 05:43:09.057 INFO [26249]: SERVER_NAME = oameye.works.coregrade.com -- 05:43:09.057 INFO [26249]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1tlqu5ba2fgc40v29nrfs24dsltbqbf0 -- 05:43:09.057 INFO [26249]: QUERY_STRING = /app-assets/data/locales/en.json -- 05:43:09.057 INFO [26249]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:43:09.069 INFO [26249]: COREGRADE is stopping... -- 05:43:09.069 DEBUG [26249]: Closing database connection -- 05:43:09.069 SQL [26249]: pgsql_close() -- 05:43:54.916 INFO [24411]: COREGRADE is starting... -- 05:43:54.916 INFO [24411]: Version from config: 1.0 -- 05:43:54.916 DEBUG [24411]: Connecting to database... -- 05:43:54.916 DEBUG [24411]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:43:54.917 SQL [24411]: pgsql_db_connect() -- 05:43:54.921 DEBUG [24411]: Database connection successful -- 05:43:54.921 INFO [24411]: _SERVER found -- 05:43:54.921 INFO [24411]: REMOTE_ADDR = 192.168.1.13 -- 05:43:54.921 INFO [24411]: SERVER_NAME = oameye.works.coregrade.com -- 05:43:54.921 INFO [24411]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1tlqu5ba2fgc40v29nrfs24dsltbqbf0 -- 05:43:54.921 INFO [24411]: QUERY_STRING = /home/howitworks -- 05:43:54.921 INFO [24411]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:43:54.952 INFO [24411]: COREGRADE is stopping... -- 05:43:54.952 DEBUG [24411]: Closing database connection -- 05:43:54.952 SQL [24411]: pgsql_close() -- 05:43:55.106 INFO [24411]: COREGRADE is starting... -- 05:43:55.106 INFO [24411]: Version from config: 1.0 -- 05:43:55.106 DEBUG [24411]: Connecting to database... -- 05:43:55.106 DEBUG [24411]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:43:55.106 SQL [24411]: pgsql_db_connect() -- 05:43:55.116 INFO [24393]: COREGRADE is starting... -- 05:43:55.117 INFO [24393]: Version from config: 1.0 -- 05:43:55.117 DEBUG [24393]: Connecting to database... -- 05:43:55.117 DEBUG [24393]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:43:55.117 SQL [24393]: pgsql_db_connect() -- 05:43:55.110 DEBUG [24411]: Database connection successful -- 05:43:55.110 INFO [24411]: _SERVER found -- 05:43:55.110 INFO [24411]: REMOTE_ADDR = 192.168.1.13 -- 05:43:55.110 INFO [24411]: SERVER_NAME = oameye.works.coregrade.com -- 05:43:55.110 INFO [24411]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1tlqu5ba2fgc40v29nrfs24dsltbqbf0 -- 05:43:55.110 INFO [24411]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 05:43:55.110 INFO [24411]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:43:55.121 INFO [24411]: COREGRADE is stopping... -- 05:43:55.121 DEBUG [24411]: Closing database connection -- 05:43:55.121 SQL [24411]: pgsql_close() -- 05:43:55.121 DEBUG [24393]: Database connection successful -- 05:43:55.121 INFO [24393]: _SERVER found -- 05:43:55.121 INFO [24393]: REMOTE_ADDR = 192.168.1.13 -- 05:43:55.121 INFO [24393]: SERVER_NAME = oameye.works.coregrade.com -- 05:43:55.121 INFO [24393]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1tlqu5ba2fgc40v29nrfs24dsltbqbf0 -- 05:43:55.121 INFO [24393]: QUERY_STRING = /app-assets/data/locales/en.json -- 05:43:55.121 INFO [24393]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:43:55.132 INFO [24393]: COREGRADE is stopping... -- 05:43:55.132 DEBUG [24393]: Closing database connection -- 05:43:55.132 SQL [24393]: pgsql_close() -- 05:47:22.479 INFO [26250]: COREGRADE is starting... -- 05:47:22.479 INFO [26250]: Version from config: 1.0 -- 05:47:22.479 DEBUG [26250]: Connecting to database... -- 05:47:22.479 DEBUG [26250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:47:22.479 SQL [26250]: pgsql_db_connect() -- 05:47:22.483 DEBUG [26250]: Database connection successful -- 05:47:22.483 INFO [26250]: _SERVER found -- 05:47:22.483 INFO [26250]: REMOTE_ADDR = 192.168.1.13 -- 05:47:22.483 INFO [26250]: SERVER_NAME = oameye.works.coregrade.com -- 05:47:22.483 INFO [26250]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=1tlqu5ba2fgc40v29nrfs24dsltbqbf0 -- 05:47:22.483 INFO [26250]: QUERY_STRING = /home/howitworks -- 05:47:22.483 INFO [26250]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:47:22.515 INFO [26250]: COREGRADE is stopping... -- 05:47:22.515 DEBUG [26250]: Closing database connection -- 05:47:22.515 SQL [26250]: pgsql_close() -- 05:47:22.692 INFO [26250]: COREGRADE is starting... -- 05:47:22.692 INFO [26250]: Version from config: 1.0 -- 05:47:22.692 DEBUG [26250]: Connecting to database... -- 05:47:22.692 DEBUG [26250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:47:22.692 SQL [26250]: pgsql_db_connect() -- 05:47:22.696 DEBUG [26250]: Database connection successful -- 05:47:22.696 INFO [26250]: _SERVER found -- 05:47:22.696 INFO [26250]: REMOTE_ADDR = 192.168.1.13 -- 05:47:22.696 INFO [26250]: SERVER_NAME = oameye.works.coregrade.com -- 05:47:22.696 INFO [26250]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=3410dnbknv24dbhist4upleq2s9ke8au -- 05:47:22.696 INFO [26250]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 05:47:22.696 INFO [26250]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:47:22.707 INFO [26250]: COREGRADE is stopping... -- 05:47:22.707 DEBUG [26250]: Closing database connection -- 05:47:22.707 SQL [26250]: pgsql_close() -- 05:47:22.710 INFO [24391]: COREGRADE is starting... -- 05:47:22.711 INFO [24391]: Version from config: 1.0 -- 05:47:22.711 DEBUG [24391]: Connecting to database... -- 05:47:22.711 DEBUG [24391]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:47:22.711 SQL [24391]: pgsql_db_connect() -- 05:47:22.714 DEBUG [24391]: Database connection successful -- 05:47:22.714 INFO [24391]: _SERVER found -- 05:47:22.714 INFO [24391]: REMOTE_ADDR = 192.168.1.13 -- 05:47:22.714 INFO [24391]: SERVER_NAME = oameye.works.coregrade.com -- 05:47:22.714 INFO [24391]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=3410dnbknv24dbhist4upleq2s9ke8au -- 05:47:22.714 INFO [24391]: QUERY_STRING = /app-assets/data/locales/en.json -- 05:47:22.714 INFO [24391]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:47:22.727 INFO [24391]: COREGRADE is stopping... -- 05:47:22.727 DEBUG [24391]: Closing database connection -- 05:47:22.727 SQL [24391]: pgsql_close() -- 05:47:29.317 INFO [24392]: COREGRADE is starting... -- 05:47:29.318 INFO [24392]: Version from config: 1.0 -- 05:47:29.318 DEBUG [24392]: Connecting to database... -- 05:47:29.318 DEBUG [24392]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:47:29.318 SQL [24392]: pgsql_db_connect() -- 05:47:29.322 DEBUG [24392]: Database connection successful -- 05:47:29.322 INFO [24392]: _SERVER found -- 05:47:29.322 INFO [24392]: REMOTE_ADDR = 192.168.1.13 -- 05:47:29.322 INFO [24392]: SERVER_NAME = oameye.works.coregrade.com -- 05:47:29.322 INFO [24392]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=3410dnbknv24dbhist4upleq2s9ke8au -- 05:47:29.322 INFO [24392]: QUERY_STRING = -- 05:47:29.322 INFO [24392]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:47:29.354 INFO [24392]: COREGRADE is stopping... -- 05:47:29.354 DEBUG [24392]: Closing database connection -- 05:47:29.354 SQL [24392]: pgsql_close() -- 05:47:31.762 INFO [24392]: COREGRADE is starting... -- 05:47:31.763 INFO [24392]: Version from config: 1.0 -- 05:47:31.763 DEBUG [24392]: Connecting to database... -- 05:47:31.763 DEBUG [24392]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:47:31.763 SQL [24392]: pgsql_db_connect() -- 05:47:31.767 DEBUG [24392]: Database connection successful -- 05:47:31.767 INFO [24392]: _SERVER found -- 05:47:31.767 INFO [24392]: REMOTE_ADDR = 192.168.1.13 -- 05:47:31.767 INFO [24392]: SERVER_NAME = oameye.works.coregrade.com -- 05:47:31.767 INFO [24392]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=3410dnbknv24dbhist4upleq2s9ke8au; _gat_gtag_UA_54829827_2=1 -- 05:47:31.767 INFO [24392]: QUERY_STRING = /home/howitworks -- 05:47:31.767 INFO [24392]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:47:31.798 INFO [24392]: COREGRADE is stopping... -- 05:47:31.798 DEBUG [24392]: Closing database connection -- 05:47:31.798 SQL [24392]: pgsql_close() -- 05:47:31.898 INFO [24392]: COREGRADE is starting... -- 05:47:31.899 INFO [24392]: Version from config: 1.0 -- 05:47:31.899 DEBUG [24392]: Connecting to database... -- 05:47:31.899 DEBUG [24392]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:47:31.899 SQL [24392]: pgsql_db_connect() -- 05:47:31.910 INFO [27449]: COREGRADE is starting... -- 05:47:31.910 INFO [27449]: Version from config: 1.0 -- 05:47:31.910 DEBUG [27449]: Connecting to database... -- 05:47:31.910 DEBUG [27449]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:47:31.910 SQL [27449]: pgsql_db_connect() -- 05:47:31.903 DEBUG [24392]: Database connection successful -- 05:47:31.903 INFO [24392]: _SERVER found -- 05:47:31.903 INFO [24392]: REMOTE_ADDR = 192.168.1.13 -- 05:47:31.903 INFO [24392]: SERVER_NAME = oameye.works.coregrade.com -- 05:47:31.903 INFO [24392]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=3410dnbknv24dbhist4upleq2s9ke8au; _gat_gtag_UA_54829827_2=1 -- 05:47:31.903 INFO [24392]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 05:47:31.903 INFO [24392]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:47:31.914 INFO [24392]: COREGRADE is stopping... -- 05:47:31.914 DEBUG [24392]: Closing database connection -- 05:47:31.914 SQL [24392]: pgsql_close() -- 05:47:31.914 DEBUG [27449]: Database connection successful -- 05:47:31.914 INFO [27449]: _SERVER found -- 05:47:31.914 INFO [27449]: REMOTE_ADDR = 192.168.1.13 -- 05:47:31.914 INFO [27449]: SERVER_NAME = oameye.works.coregrade.com -- 05:47:31.914 INFO [27449]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=3410dnbknv24dbhist4upleq2s9ke8au; _gat_gtag_UA_54829827_2=1 -- 05:47:31.914 INFO [27449]: QUERY_STRING = /app-assets/data/locales/en.json -- 05:47:31.914 INFO [27449]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:47:31.926 INFO [27449]: COREGRADE is stopping... -- 05:47:31.926 DEBUG [27449]: Closing database connection -- 05:47:31.926 SQL [27449]: pgsql_close() -- 05:47:34.737 INFO [27449]: COREGRADE is starting... -- 05:47:34.737 INFO [27449]: Version from config: 1.0 -- 05:47:34.737 DEBUG [27449]: Connecting to database... -- 05:47:34.737 DEBUG [27449]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:47:34.737 SQL [27449]: pgsql_db_connect() -- 05:47:34.741 DEBUG [27449]: Database connection successful -- 05:47:34.741 INFO [27449]: _SERVER found -- 05:47:34.741 INFO [27449]: REMOTE_ADDR = 192.168.1.13 -- 05:47:34.741 INFO [27449]: SERVER_NAME = oameye.works.coregrade.com -- 05:47:34.741 INFO [27449]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=3410dnbknv24dbhist4upleq2s9ke8au; _gat_gtag_UA_54829827_2=1 -- 05:47:34.741 INFO [27449]: QUERY_STRING = -- 05:47:34.741 INFO [27449]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:47:34.773 INFO [27449]: COREGRADE is stopping... -- 05:47:34.773 DEBUG [27449]: Closing database connection -- 05:47:34.773 SQL [27449]: pgsql_close() -- 05:59:45.309 INFO [11970]: COREGRADE is starting... -- 05:59:45.310 INFO [11970]: Version from config: 1.0 -- 05:59:45.310 DEBUG [11970]: Connecting to database... -- 05:59:45.310 DEBUG [11970]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:59:45.310 SQL [11970]: pgsql_db_connect() -- 05:59:45.314 DEBUG [11970]: Database connection successful -- 05:59:45.314 INFO [11970]: _SERVER found -- 05:59:45.314 INFO [11970]: REMOTE_ADDR = 192.168.1.13 -- 05:59:45.314 INFO [11970]: SERVER_NAME = oameye.works.coregrade.com -- 05:59:45.314 INFO [11970]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=3410dnbknv24dbhist4upleq2s9ke8au -- 05:59:45.314 INFO [11970]: QUERY_STRING = /home/faq -- 05:59:45.314 INFO [11970]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:59:45.352 INFO [11970]: COREGRADE is stopping... -- 05:59:45.352 DEBUG [11970]: Closing database connection -- 05:59:45.352 SQL [11970]: pgsql_close() -- 05:59:45.508 INFO [11970]: COREGRADE is starting... -- 05:59:45.509 INFO [11970]: Version from config: 1.0 -- 05:59:45.509 DEBUG [11970]: Connecting to database... -- 05:59:45.509 DEBUG [11970]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:59:45.509 SQL [11970]: pgsql_db_connect() -- 05:59:45.513 DEBUG [11970]: Database connection successful -- 05:59:45.513 INFO [11970]: _SERVER found -- 05:59:45.513 INFO [11970]: REMOTE_ADDR = 192.168.1.13 -- 05:59:45.513 INFO [11970]: SERVER_NAME = oameye.works.coregrade.com -- 05:59:45.513 INFO [11970]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=387m1kiq6bgktndfqs0nqo90doujkk5b -- 05:59:45.513 INFO [11970]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 05:59:45.513 INFO [11970]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:59:45.525 INFO [11970]: COREGRADE is stopping... -- 05:59:45.525 DEBUG [11970]: Closing database connection -- 05:59:45.525 SQL [11970]: pgsql_close() -- 05:59:45.528 INFO [11971]: COREGRADE is starting... -- 05:59:45.528 INFO [11971]: Version from config: 1.0 -- 05:59:45.528 DEBUG [11971]: Connecting to database... -- 05:59:45.528 DEBUG [11971]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:59:45.528 SQL [11971]: pgsql_db_connect() -- 05:59:45.532 DEBUG [11971]: Database connection successful -- 05:59:45.532 INFO [11971]: _SERVER found -- 05:59:45.532 INFO [11971]: REMOTE_ADDR = 192.168.1.13 -- 05:59:45.532 INFO [11971]: SERVER_NAME = oameye.works.coregrade.com -- 05:59:45.532 INFO [11971]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=387m1kiq6bgktndfqs0nqo90doujkk5b -- 05:59:45.532 INFO [11971]: QUERY_STRING = /app-assets/data/locales/en.json -- 05:59:45.532 INFO [11971]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:59:45.546 INFO [11971]: COREGRADE is stopping... -- 05:59:45.546 DEBUG [11971]: Closing database connection -- 05:59:45.546 SQL [11971]: pgsql_close() -- 06:12:59.491 INFO [11972]: COREGRADE is starting... -- 06:12:59.491 INFO [11972]: Version from config: 1.0 -- 06:12:59.491 DEBUG [11972]: Connecting to database... -- 06:12:59.491 DEBUG [11972]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:12:59.491 SQL [11972]: pgsql_db_connect() -- 06:12:59.496 DEBUG [11972]: Database connection successful -- 06:12:59.496 INFO [11972]: _SERVER found -- 06:12:59.496 INFO [11972]: REMOTE_ADDR = 192.168.1.13 -- 06:12:59.496 INFO [11972]: SERVER_NAME = oameye.works.coregrade.com -- 06:12:59.496 INFO [11972]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=387m1kiq6bgktndfqs0nqo90doujkk5b -- 06:12:59.496 INFO [11972]: QUERY_STRING = /home/faq -- 06:12:59.496 INFO [11972]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:12:59.538 INFO [11972]: COREGRADE is stopping... -- 06:12:59.538 DEBUG [11972]: Closing database connection -- 06:12:59.538 SQL [11972]: pgsql_close() -- 06:12:59.731 INFO [11972]: COREGRADE is starting... -- 06:12:59.731 INFO [11972]: Version from config: 1.0 -- 06:12:59.731 DEBUG [11972]: Connecting to database... -- 06:12:59.731 DEBUG [11972]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:12:59.731 SQL [11972]: pgsql_db_connect() -- 06:12:59.735 DEBUG [11972]: Database connection successful -- 06:12:59.735 INFO [11972]: _SERVER found -- 06:12:59.735 INFO [11972]: REMOTE_ADDR = 192.168.1.13 -- 06:12:59.735 INFO [11972]: SERVER_NAME = oameye.works.coregrade.com -- 06:12:59.735 INFO [11972]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=e3sj7v51ff5bjqk89dcct5169uv0qofc -- 06:12:59.735 INFO [11972]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 06:12:59.735 INFO [11972]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:12:59.747 INFO [11972]: COREGRADE is stopping... -- 06:12:59.747 DEBUG [11972]: Closing database connection -- 06:12:59.747 SQL [11972]: pgsql_close() -- 06:12:59.751 INFO [11974]: COREGRADE is starting... -- 06:12:59.752 INFO [11974]: Version from config: 1.0 -- 06:12:59.752 DEBUG [11974]: Connecting to database... -- 06:12:59.752 DEBUG [11974]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:12:59.752 SQL [11974]: pgsql_db_connect() -- 06:12:59.756 DEBUG [11974]: Database connection successful -- 06:12:59.756 INFO [11974]: _SERVER found -- 06:12:59.756 INFO [11974]: REMOTE_ADDR = 192.168.1.13 -- 06:12:59.756 INFO [11974]: SERVER_NAME = oameye.works.coregrade.com -- 06:12:59.756 INFO [11974]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=e3sj7v51ff5bjqk89dcct5169uv0qofc -- 06:12:59.756 INFO [11974]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:12:59.756 INFO [11974]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:12:59.772 INFO [11974]: COREGRADE is stopping... -- 06:12:59.772 DEBUG [11974]: Closing database connection -- 06:12:59.772 SQL [11974]: pgsql_close() -- 06:17:24.079 INFO [11973]: COREGRADE is starting... -- 06:17:24.080 INFO [11973]: Version from config: 1.0 -- 06:17:24.080 DEBUG [11973]: Connecting to database... -- 06:17:24.080 DEBUG [11973]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:17:24.080 SQL [11973]: pgsql_db_connect() -- 06:17:24.085 DEBUG [11973]: Database connection successful -- 06:17:24.085 INFO [11973]: _SERVER found -- 06:17:24.085 INFO [11973]: REMOTE_ADDR = 192.168.1.13 -- 06:17:24.085 INFO [11973]: SERVER_NAME = oameye.works.coregrade.com -- 06:17:24.085 INFO [11973]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=e3sj7v51ff5bjqk89dcct5169uv0qofc -- 06:17:24.085 INFO [11973]: QUERY_STRING = -- 06:17:24.085 INFO [11973]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:17:24.134 INFO [11973]: COREGRADE is stopping... -- 06:17:24.134 DEBUG [11973]: Closing database connection -- 06:17:24.134 SQL [11973]: pgsql_close() -- 06:17:24.330 INFO [11973]: COREGRADE is starting... -- 06:17:24.331 INFO [11973]: Version from config: 1.0 -- 06:17:24.331 DEBUG [11973]: Connecting to database... -- 06:17:24.331 DEBUG [11973]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:17:24.331 SQL [11973]: pgsql_db_connect() -- 06:17:24.342 INFO [11982]: COREGRADE is starting... -- 06:17:24.342 INFO [11982]: Version from config: 1.0 -- 06:17:24.342 DEBUG [11982]: Connecting to database... -- 06:17:24.342 DEBUG [11982]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:17:24.342 SQL [11982]: pgsql_db_connect() -- 06:17:24.335 DEBUG [11973]: Database connection successful -- 06:17:24.335 INFO [11973]: _SERVER found -- 06:17:24.335 INFO [11973]: REMOTE_ADDR = 192.168.1.13 -- 06:17:24.335 INFO [11973]: SERVER_NAME = oameye.works.coregrade.com -- 06:17:24.335 INFO [11973]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=e3sj7v51ff5bjqk89dcct5169uv0qofc -- 06:17:24.335 INFO [11973]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 06:17:24.335 INFO [11973]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:17:24.348 INFO [11973]: COREGRADE is stopping... -- 06:17:24.348 DEBUG [11973]: Closing database connection -- 06:17:24.348 SQL [11973]: pgsql_close() -- 06:17:24.347 DEBUG [11982]: Database connection successful -- 06:17:24.347 INFO [11982]: _SERVER found -- 06:17:24.347 INFO [11982]: REMOTE_ADDR = 192.168.1.13 -- 06:17:24.347 INFO [11982]: SERVER_NAME = oameye.works.coregrade.com -- 06:17:24.347 INFO [11982]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=e3sj7v51ff5bjqk89dcct5169uv0qofc -- 06:17:24.347 INFO [11982]: QUERY_STRING = /assets/img/footer_1.jpg -- 06:17:24.347 INFO [11982]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:17:24.362 INFO [11982]: COREGRADE is stopping... -- 06:17:24.362 DEBUG [11982]: Closing database connection -- 06:17:24.362 SQL [11982]: pgsql_close() -- 06:17:29.031 INFO [11982]: COREGRADE is starting... -- 06:17:29.031 INFO [11982]: Version from config: 1.0 -- 06:17:29.031 DEBUG [11982]: Connecting to database... -- 06:17:29.032 DEBUG [11982]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:17:29.032 SQL [11982]: pgsql_db_connect() -- 06:17:29.036 DEBUG [11982]: Database connection successful -- 06:17:29.036 INFO [11982]: _SERVER found -- 06:17:29.036 INFO [11982]: REMOTE_ADDR = 192.168.1.13 -- 06:17:29.036 INFO [11982]: SERVER_NAME = oameye.works.coregrade.com -- 06:17:29.036 INFO [11982]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=e3sj7v51ff5bjqk89dcct5169uv0qofc; _gat_gtag_UA_54829827_2=1 -- 06:17:29.036 INFO [11982]: QUERY_STRING = /home/faq -- 06:17:29.036 INFO [11982]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:17:29.077 INFO [11982]: COREGRADE is stopping... -- 06:17:29.077 DEBUG [11982]: Closing database connection -- 06:17:29.077 SQL [11982]: pgsql_close() -- 06:17:29.263 INFO [11982]: COREGRADE is starting... -- 06:17:29.263 INFO [11982]: Version from config: 1.0 -- 06:17:29.263 DEBUG [11982]: Connecting to database... -- 06:17:29.263 DEBUG [11982]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:17:29.263 SQL [11982]: pgsql_db_connect() -- 06:17:29.267 DEBUG [11982]: Database connection successful -- 06:17:29.267 INFO [11982]: _SERVER found -- 06:17:29.267 INFO [11982]: REMOTE_ADDR = 192.168.1.13 -- 06:17:29.267 INFO [11982]: SERVER_NAME = oameye.works.coregrade.com -- 06:17:29.267 INFO [11982]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=e3sj7v51ff5bjqk89dcct5169uv0qofc; _gat_gtag_UA_54829827_2=1 -- 06:17:29.267 INFO [11982]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 06:17:29.267 INFO [11982]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:17:29.279 INFO [11982]: COREGRADE is stopping... -- 06:17:29.279 DEBUG [11982]: Closing database connection -- 06:17:29.279 SQL [11982]: pgsql_close() -- 06:17:29.283 INFO [11982]: COREGRADE is starting... -- 06:17:29.284 INFO [11982]: Version from config: 1.0 -- 06:17:29.284 DEBUG [11982]: Connecting to database... -- 06:17:29.284 DEBUG [11982]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:17:29.284 SQL [11982]: pgsql_db_connect() -- 06:17:29.288 DEBUG [11982]: Database connection successful -- 06:17:29.288 INFO [11982]: _SERVER found -- 06:17:29.288 INFO [11982]: REMOTE_ADDR = 192.168.1.13 -- 06:17:29.288 INFO [11982]: SERVER_NAME = oameye.works.coregrade.com -- 06:17:29.288 INFO [11982]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=e3sj7v51ff5bjqk89dcct5169uv0qofc; _gat_gtag_UA_54829827_2=1 -- 06:17:29.288 INFO [11982]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:17:29.288 INFO [11982]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:17:29.299 INFO [11982]: COREGRADE is stopping... -- 06:17:29.299 DEBUG [11982]: Closing database connection -- 06:17:29.299 SQL [11982]: pgsql_close() -- 06:18:54.809 INFO [11983]: COREGRADE is starting... -- 06:18:54.810 INFO [11983]: Version from config: 1.0 -- 06:18:54.810 DEBUG [11983]: Connecting to database... -- 06:18:54.810 DEBUG [11983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:18:54.810 SQL [11983]: pgsql_db_connect() -- 06:18:54.815 DEBUG [11983]: Database connection successful -- 06:18:54.815 INFO [11983]: _SERVER found -- 06:18:54.815 INFO [11983]: REMOTE_ADDR = 192.168.1.13 -- 06:18:54.815 INFO [11983]: SERVER_NAME = oameye.works.coregrade.com -- 06:18:54.815 INFO [11983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=e3sj7v51ff5bjqk89dcct5169uv0qofc -- 06:18:54.815 INFO [11983]: QUERY_STRING = -- 06:18:54.815 INFO [11983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:18:54.861 INFO [11983]: COREGRADE is stopping... -- 06:18:54.861 DEBUG [11983]: Closing database connection -- 06:18:54.861 SQL [11983]: pgsql_close() -- 06:18:59.554 INFO [11983]: COREGRADE is starting... -- 06:18:59.554 INFO [11983]: Version from config: 1.0 -- 06:18:59.554 DEBUG [11983]: Connecting to database... -- 06:18:59.554 DEBUG [11983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:18:59.555 SQL [11983]: pgsql_db_connect() -- 06:18:59.567 INFO [11984]: COREGRADE is starting... -- 06:18:59.567 INFO [11984]: Version from config: 1.0 -- 06:18:59.567 DEBUG [11984]: Connecting to database... -- 06:18:59.567 DEBUG [11984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:18:59.567 SQL [11984]: pgsql_db_connect() -- 06:18:59.559 DEBUG [11983]: Database connection successful -- 06:18:59.559 INFO [11983]: _SERVER found -- 06:18:59.559 INFO [11983]: REMOTE_ADDR = 192.168.1.13 -- 06:18:59.559 INFO [11983]: SERVER_NAME = oameye.works.coregrade.com -- 06:18:59.559 INFO [11983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=2fiav90l79prg2gt03qrgcsmrcbq97g0; _gat_gtag_UA_54829827_2=1 -- 06:18:59.559 INFO [11983]: QUERY_STRING = /welcome/viewLogin -- 06:18:59.559 INFO [11983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:18:59.594 INFO [11983]: COREGRADE is stopping... -- 06:18:59.595 DEBUG [11983]: Closing database connection -- 06:18:59.595 SQL [11983]: pgsql_close() -- 06:18:59.607 INFO [11983]: COREGRADE is starting... -- 06:18:59.608 INFO [11983]: Version from config: 1.0 -- 06:18:59.608 DEBUG [11983]: Connecting to database... -- 06:18:59.608 DEBUG [11983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:18:59.608 SQL [11983]: pgsql_db_connect() -- 06:18:59.572 DEBUG [11984]: Database connection successful -- 06:18:59.572 INFO [11984]: _SERVER found -- 06:18:59.572 INFO [11984]: REMOTE_ADDR = 192.168.1.13 -- 06:18:59.572 INFO [11984]: SERVER_NAME = oameye.works.coregrade.com -- 06:18:59.572 INFO [11984]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=2fiav90l79prg2gt03qrgcsmrcbq97g0; _gat_gtag_UA_54829827_2=1 -- 06:18:59.572 INFO [11984]: QUERY_STRING = /auth -- 06:18:59.572 INFO [11984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:18:59.612 INFO [11984]: COREGRADE is stopping... -- 06:18:59.612 DEBUG [11984]: Closing database connection -- 06:18:59.612 SQL [11984]: pgsql_close() -- 06:18:59.612 DEBUG [11983]: Database connection successful -- 06:18:59.612 INFO [11983]: _SERVER found -- 06:18:59.612 INFO [11983]: REMOTE_ADDR = 192.168.1.13 -- 06:18:59.612 INFO [11983]: SERVER_NAME = oameye.works.coregrade.com -- 06:18:59.612 INFO [11983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=2fiav90l79prg2gt03qrgcsmrcbq97g0; _gat_gtag_UA_54829827_2=1 -- 06:18:59.612 INFO [11983]: QUERY_STRING = /auth/index -- 06:18:59.612 INFO [11983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:18:59.648 INFO [11983]: COREGRADE is stopping... -- 06:18:59.648 DEBUG [11983]: Closing database connection -- 06:18:59.648 SQL [11983]: pgsql_close() -- 06:18:59.808 INFO [11984]: COREGRADE is starting... -- 06:18:59.808 INFO [11984]: Version from config: 1.0 -- 06:18:59.808 DEBUG [11984]: Connecting to database... -- 06:18:59.808 DEBUG [11984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:18:59.808 SQL [11984]: pgsql_db_connect() -- 06:18:59.813 DEBUG [11984]: Database connection successful -- 06:18:59.813 INFO [11984]: _SERVER found -- 06:18:59.813 INFO [11984]: REMOTE_ADDR = 192.168.1.13 -- 06:18:59.813 INFO [11984]: SERVER_NAME = oameye.works.coregrade.com -- 06:18:59.813 INFO [11984]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=2fiav90l79prg2gt03qrgcsmrcbq97g0; _gat_gtag_UA_54829827_2=1 -- 06:18:59.813 INFO [11984]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:18:59.813 INFO [11984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:18:59.826 INFO [11984]: COREGRADE is stopping... -- 06:18:59.826 DEBUG [11984]: Closing database connection -- 06:18:59.826 SQL [11984]: pgsql_close() -- 06:19:01.668 INFO [11984]: COREGRADE is starting... -- 06:19:01.668 INFO [11984]: Version from config: 1.0 -- 06:19:01.668 DEBUG [11984]: Connecting to database... -- 06:19:01.668 DEBUG [11984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:19:01.668 SQL [11984]: pgsql_db_connect() -- 06:19:01.708 INFO [11984]: COREGRADE is starting... -- 06:19:01.709 INFO [11984]: Version from config: 1.0 -- 06:19:01.709 DEBUG [11984]: Connecting to database... -- 06:19:01.709 DEBUG [11984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:19:01.709 SQL [11984]: pgsql_db_connect() -- 06:19:01.713 DEBUG [11984]: Database connection successful -- 06:19:01.713 INFO [11984]: _SERVER found -- 06:19:01.713 INFO [11984]: REMOTE_ADDR = 192.168.1.13 -- 06:19:01.713 INFO [11984]: SERVER_NAME = oameye.works.coregrade.com -- 06:19:01.713 INFO [11984]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=2fiav90l79prg2gt03qrgcsmrcbq97g0; _gat_gtag_UA_54829827_2=1 -- 06:19:01.713 INFO [11984]: QUERY_STRING = -- 06:19:01.713 INFO [11984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:19:01.713 INFO [11984]: SystemStatus()09-09-********~************ -- 06:19:01.713 INFO [11984]: long coregrade_api_main(CVars in, CVars &out) -- 06:19:01.713 INFO [11984]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 06:19:01.713 INFO [11984]: account calls -- 06:19:01.713 INFO [11984]: account_calls() -- 06:19:01.713 INFO [11984]: LoginCoreGradeAccount() -- 06:19:01.713 FLOG_MAX [11984]: REQ_STRING(username) -- 06:19:01.713 FLOG_MAX [11984]: REQ_STRING(password) -- 06:19:01.713 FLOG_MAX [11984]: REQ_STRING(sessionid) -- 06:19:01.713 FLOG_MAX [11984]: long load_db_record( CVars &rec, const char * query, ... ) -- 06:19:01.713 SQL [11984]: pgsql_query() -- 06:19:01.713 SQL [11984]: About to run query: -- 06:19:01.713 SQL [11984]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 06:19:01.717 SQL [11984]: Found rows: 1 -- 06:19:01.717 FLOG_MAX [11984]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 06:19:01.717 INFO [11984]: long SessionCheck(long uid, const char *sessionid, int create ) -- 06:19:01.717 SQL [11984]: pgsql_exec() -- 06:19:01.717 SQL [11984]: About to run query: -- 06:19:01.717 SQL [11984]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 06:19:01.719 SQL [11984]: PQcmdTuples: 1 -- 06:19:01.719 SQL [11984]: Affected rows: 1 -- 06:19:01.719 SQL [11984]: pgsql_exec() -- 06:19:01.719 SQL [11984]: About to run query: -- 06:19:01.719 SQL [11984]: DELETE FROM members_session WHERE member_id=5 -- 06:19:01.719 SQL [11984]: PQcmdTuples: 0 -- 06:19:01.719 SQL [11984]: Affected rows: 0 -- 06:19:01.719 SQL [11984]: pgsql_query() -- 06:19:01.719 SQL [11984]: About to run query: -- 06:19:01.719 SQL [11984]: SELECT * FROM members_session WHERE member_id=5 AND session<>'B1449747BC30D4615A73ED3606B6CE0C' -- 06:19:01.720 SQL [11984]: Found rows: 0 -- 06:19:01.720 SQL [11984]: Found rows: 0 -- 06:19:01.720 FLOG_MAX [11984]: long load_db_record( CVars &rec, const char * query, ... ) -- 06:19:01.720 SQL [11984]: pgsql_query() -- 06:19:01.720 SQL [11984]: About to run query: -- 06:19:01.720 SQL [11984]: SELECT * FROM members_session WHERE member_id=5 AND session='B1449747BC30D4615A73ED3606B6CE0C' -- 06:19:01.720 SQL [11984]: Found rows: 0 -- 06:19:01.720 SQL [11984]: Found rows: 0 -- 06:19:01.720 FLOG_MAX [11984]: insert_db_record() -- 06:19:01.720 SQL [11984]: pgsql_exec() -- 06:19:01.720 SQL [11984]: About to run query: -- 06:19:01.720 SQL [11984]: INSERT INTO members_session (member_id,session) VALUES ('5','B1449747BC30D4615A73ED3606B6CE0C') -- 06:19:01.722 SQL [11984]: PQcmdTuples: 1 -- 06:19:01.722 SQL [11984]: Affected rows: 1 -- 06:19:01.722 FLOG_MAX [11984]: SELECT currval('members_session_id_seq') -- 06:19:01.722 SQL [11984]: pgsql_query() -- 06:19:01.722 SQL [11984]: About to run query: -- 06:19:01.722 SQL [11984]: SELECT currval('members_session_id_seq') -- 06:19:01.722 SQL [11984]: Found rows: 1 -- 06:19:01.722 INFO [11984]: CreateDefaultPage() -- 06:19:01.722 FLOG_MAX [11984]: long load_db_record( CVars &rec, const char * query, ... ) -- 06:19:01.722 SQL [11984]: pgsql_query() -- 06:19:01.722 SQL [11984]: About to run query: -- 06:19:01.722 SQL [11984]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 06:19:01.723 SQL [11984]: Found rows: 1 -- 06:19:01.723 FLOG_MAX [11984]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 06:19:01.723 SQL [11984]: pgsql_query() -- 06:19:01.723 SQL [11984]: About to run query: -- 06:19:01.723 SQL [11984]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 06:19:01.723 SQL [11984]: Found rows: 1 -- 06:19:01.723 INFO [11984]: /CreateDefaultPage() -- 06:19:01.723 INFO [11984]: /LoginCoreGradeAccount() -- 06:19:01.723 INFO [11984]: RET: added=2020-02-05 06:47:23.982154 -- 06:19:01.723 INFO [11984]: RET: email=ameye+11@chiefsoft.com -- 06:19:01.723 INFO [11984]: RET: firstname=Olu -- 06:19:01.723 INFO [11984]: RET: id=5 -- 06:19:01.723 INFO [11984]: RET: last_login= -- 06:19:01.723 INFO [11984]: RET: lastname=Amey -- 06:19:01.723 INFO [11984]: RET: loc=192.168.1.13 -- 06:19:01.723 INFO [11984]: RET: member_id=5 -- 06:19:01.723 INFO [11984]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 06:19:01.723 INFO [11984]: RET: phone= -- 06:19:01.723 INFO [11984]: RET: pid= -- 06:19:01.723 INFO [11984]: RET: result=YES I GET TO BACK END -- 06:19:01.723 INFO [11984]: RET: sessionid=B1449747BC30D4615A73ED3606B6CE0C -- 06:19:01.723 INFO [11984]: RET: status=1 -- 06:19:01.723 INFO [11984]: RET: stauts=OK -- 06:19:01.723 INFO [11984]: RET: username=ameye+11@chiefsoft.com -- 06:19:01.723 INFO [11984]: RET: verified= -- 06:19:01.725 INFO [11984]: COREGRADE is stopping... -- 06:19:01.725 DEBUG [11984]: Closing database connection -- 06:19:01.725 SQL [11984]: pgsql_close() -- 06:19:01.673 DEBUG [11984]: Database connection successful -- 06:19:01.673 INFO [11984]: _SERVER found -- 06:19:01.673 INFO [11984]: REMOTE_ADDR = 192.168.1.13 -- 06:19:01.673 INFO [11984]: SERVER_NAME = oameye.works.coregrade.com -- 06:19:01.673 INFO [11984]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=2fiav90l79prg2gt03qrgcsmrcbq97g0; _gat_gtag_UA_54829827_2=1 -- 06:19:01.673 INFO [11984]: QUERY_STRING = /auth -- 06:19:01.673 INFO [11984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:19:01.725 INFO [11984]: COREGRADE is stopping... -- 06:19:01.725 DEBUG [11984]: Closing database connection -- 06:19:01.725 SQL [11984]: pgsql_close() -- 06:19:01.744 INFO [11984]: COREGRADE is starting... -- 06:19:01.745 INFO [11984]: Version from config: 1.0 -- 06:19:01.745 DEBUG [11984]: Connecting to database... -- 06:19:01.745 DEBUG [11984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:19:01.745 SQL [11984]: pgsql_db_connect() -- 06:19:01.749 DEBUG [11984]: Database connection successful -- 06:19:01.749 INFO [11984]: _SERVER found -- 06:19:01.749 INFO [11984]: REMOTE_ADDR = 192.168.1.13 -- 06:19:01.749 INFO [11984]: SERVER_NAME = oameye.works.coregrade.com -- 06:19:01.749 INFO [11984]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=2fiav90l79prg2gt03qrgcsmrcbq97g0; _gat_gtag_UA_54829827_2=1 -- 06:19:01.749 INFO [11984]: QUERY_STRING = /member/index -- 06:19:01.749 INFO [11984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:19:01.787 INFO [11984]: COREGRADE is stopping... -- 06:19:01.787 DEBUG [11984]: Closing database connection -- 06:19:01.787 SQL [11984]: pgsql_close() -- 06:19:02.096 INFO [11984]: COREGRADE is starting... -- 06:19:02.096 INFO [11984]: Version from config: 1.0 -- 06:19:02.096 DEBUG [11984]: Connecting to database... -- 06:19:02.096 DEBUG [11984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:19:02.096 SQL [11984]: pgsql_db_connect() -- 06:19:02.101 DEBUG [11984]: Database connection successful -- 06:19:02.101 INFO [11984]: _SERVER found -- 06:19:02.101 INFO [11984]: REMOTE_ADDR = 192.168.1.13 -- 06:19:02.101 INFO [11984]: SERVER_NAME = oameye.works.coregrade.com -- 06:19:02.101 INFO [11984]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=2fiav90l79prg2gt03qrgcsmrcbq97g0; _gat_gtag_UA_54829827_2=1 -- 06:19:02.101 INFO [11984]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 06:19:02.101 INFO [11984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:19:02.112 INFO [11984]: COREGRADE is stopping... -- 06:19:02.112 DEBUG [11984]: Closing database connection -- 06:19:02.112 SQL [11984]: pgsql_close() -- 06:19:02.139 INFO [11984]: COREGRADE is starting... -- 06:19:02.139 INFO [11984]: Version from config: 1.0 -- 06:19:02.139 DEBUG [11984]: Connecting to database... -- 06:19:02.139 DEBUG [11984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:19:02.139 SQL [11984]: pgsql_db_connect() -- 06:19:02.144 DEBUG [11984]: Database connection successful -- 06:19:02.144 INFO [11984]: _SERVER found -- 06:19:02.144 INFO [11984]: REMOTE_ADDR = 192.168.1.13 -- 06:19:02.144 INFO [11984]: SERVER_NAME = oameye.works.coregrade.com -- 06:19:02.144 INFO [11984]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=2fiav90l79prg2gt03qrgcsmrcbq97g0; _gat_gtag_UA_54829827_2=1 -- 06:19:02.144 INFO [11984]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:19:02.144 INFO [11984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:19:02.155 INFO [11984]: COREGRADE is stopping... -- 06:19:02.155 DEBUG [11984]: Closing database connection -- 06:19:02.155 SQL [11984]: pgsql_close() -- 06:19:04.389 INFO [11984]: COREGRADE is starting... -- 06:19:04.389 INFO [11984]: Version from config: 1.0 -- 06:19:04.389 DEBUG [11984]: Connecting to database... -- 06:19:04.389 DEBUG [11984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:19:04.389 SQL [11984]: pgsql_db_connect() -- 06:19:04.394 DEBUG [11984]: Database connection successful -- 06:19:04.394 INFO [11984]: _SERVER found -- 06:19:04.394 INFO [11984]: REMOTE_ADDR = 192.168.1.13 -- 06:19:04.394 INFO [11984]: SERVER_NAME = oameye.works.coregrade.com -- 06:19:04.394 INFO [11984]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=2fiav90l79prg2gt03qrgcsmrcbq97g0; _gat_gtag_UA_54829827_2=1 -- 06:19:04.394 INFO [11984]: QUERY_STRING = /member/page -- 06:19:04.394 INFO [11984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:19:04.434 INFO [11984]: COREGRADE is stopping... -- 06:19:04.434 DEBUG [11984]: Closing database connection -- 06:19:04.434 SQL [11984]: pgsql_close() -- 06:19:04.685 INFO [11984]: COREGRADE is starting... -- 06:19:04.685 INFO [11984]: Version from config: 1.0 -- 06:19:04.685 DEBUG [11984]: Connecting to database... -- 06:19:04.685 DEBUG [11984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:19:04.685 SQL [11984]: pgsql_db_connect() -- 06:19:04.690 DEBUG [11984]: Database connection successful -- 06:19:04.690 INFO [11984]: _SERVER found -- 06:19:04.690 INFO [11984]: REMOTE_ADDR = 192.168.1.13 -- 06:19:04.690 INFO [11984]: SERVER_NAME = oameye.works.coregrade.com -- 06:19:04.690 INFO [11984]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=2fiav90l79prg2gt03qrgcsmrcbq97g0; _gat_gtag_UA_54829827_2=1 -- 06:19:04.690 INFO [11984]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:19:04.690 INFO [11984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:19:04.701 INFO [11984]: COREGRADE is stopping... -- 06:19:04.701 DEBUG [11984]: Closing database connection -- 06:19:04.701 SQL [11984]: pgsql_close() -- 06:19:09.655 INFO [11984]: COREGRADE is starting... -- 06:19:09.655 INFO [11984]: Version from config: 1.0 -- 06:19:09.655 DEBUG [11984]: Connecting to database... -- 06:19:09.655 DEBUG [11984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:19:09.655 SQL [11984]: pgsql_db_connect() -- 06:19:09.660 DEBUG [11984]: Database connection successful -- 06:19:09.660 INFO [11984]: _SERVER found -- 06:19:09.660 INFO [11984]: REMOTE_ADDR = 192.168.1.13 -- 06:19:09.660 INFO [11984]: SERVER_NAME = oameye.works.coregrade.com -- 06:19:09.660 INFO [11984]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=2fiav90l79prg2gt03qrgcsmrcbq97g0; _gat_gtag_UA_54829827_2=1 -- 06:19:09.660 INFO [11984]: QUERY_STRING = /member/viewCardAddAction -- 06:19:09.660 INFO [11984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:19:09.691 INFO [11984]: COREGRADE is stopping... -- 06:19:09.691 DEBUG [11984]: Closing database connection -- 06:19:09.691 SQL [11984]: pgsql_close() -- 06:19:14.676 INFO [11984]: COREGRADE is starting... -- 06:19:14.677 INFO [11984]: Version from config: 1.0 -- 06:19:14.677 DEBUG [11984]: Connecting to database... -- 06:19:14.677 DEBUG [11984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:19:14.677 SQL [11984]: pgsql_db_connect() -- 06:19:14.682 DEBUG [11984]: Database connection successful -- 06:19:14.682 INFO [11984]: _SERVER found -- 06:19:14.682 INFO [11984]: REMOTE_ADDR = 192.168.1.13 -- 06:19:14.682 INFO [11984]: SERVER_NAME = oameye.works.coregrade.com -- 06:19:14.682 INFO [11984]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=2fiav90l79prg2gt03qrgcsmrcbq97g0; _gat_gtag_UA_54829827_2=1 -- 06:19:14.682 INFO [11984]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 06:19:14.682 INFO [11984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:19:14.693 INFO [11984]: COREGRADE is stopping... -- 06:19:14.693 DEBUG [11984]: Closing database connection -- 06:19:14.693 SQL [11984]: pgsql_close() -- 06:19:14.704 INFO [11970]: COREGRADE is starting... -- 06:19:14.704 INFO [11970]: Version from config: 1.0 -- 06:19:14.704 DEBUG [11970]: Connecting to database... -- 06:19:14.704 DEBUG [11970]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:19:14.704 SQL [11970]: pgsql_db_connect() -- 06:19:14.709 DEBUG [11970]: Database connection successful -- 06:19:14.709 INFO [11970]: _SERVER found -- 06:19:14.709 INFO [11970]: REMOTE_ADDR = 192.168.1.13 -- 06:19:14.709 INFO [11970]: SERVER_NAME = oameye.works.coregrade.com -- 06:19:14.709 INFO [11970]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=2fiav90l79prg2gt03qrgcsmrcbq97g0; _gat_gtag_UA_54829827_2=1 -- 06:19:14.709 INFO [11970]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 06:19:14.709 INFO [11970]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:19:14.722 INFO [11970]: COREGRADE is stopping... -- 06:19:14.722 DEBUG [11970]: Closing database connection -- 06:19:14.722 SQL [11970]: pgsql_close() -- 06:24:34.688 INFO [11971]: COREGRADE is starting... -- 06:24:34.689 INFO [11971]: Version from config: 1.0 -- 06:24:34.689 DEBUG [11971]: Connecting to database... -- 06:24:34.689 DEBUG [11971]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:24:34.689 SQL [11971]: pgsql_db_connect() -- 06:24:34.693 DEBUG [11971]: Database connection successful -- 06:24:34.693 INFO [11971]: _SERVER found -- 06:24:34.693 INFO [11971]: REMOTE_ADDR = 192.168.1.13 -- 06:24:34.693 INFO [11971]: SERVER_NAME = oameye.works.coregrade.com -- 06:24:34.693 INFO [11971]: QUERY_STRING = -- 06:24:34.693 INFO [11971]: HTTP_X_FORWARDED_FOR = 192.241.249.213 -- 06:24:34.737 INFO [11971]: COREGRADE is stopping... -- 06:24:34.737 DEBUG [11971]: Closing database connection -- 06:24:34.737 SQL [11971]: pgsql_close() -- 07:06:15.967 INFO [11972]: COREGRADE is starting... -- 07:06:15.968 INFO [11972]: Version from config: 1.0 -- 07:06:15.968 DEBUG [11972]: Connecting to database... -- 07:06:15.968 DEBUG [11972]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:06:15.968 SQL [11972]: pgsql_db_connect() -- 07:06:15.973 INFO [11974]: COREGRADE is starting... -- 07:06:15.973 INFO [11974]: Version from config: 1.0 -- 07:06:15.973 DEBUG [11974]: Connecting to database... -- 07:06:15.973 DEBUG [11974]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:06:15.973 SQL [11974]: pgsql_db_connect() -- 07:06:15.978 DEBUG [11974]: Database connection successful -- 07:06:15.978 INFO [11974]: _SERVER found -- 07:06:15.978 INFO [11974]: REMOTE_ADDR = 192.168.1.13 -- 07:06:15.978 INFO [11974]: SERVER_NAME = oameye.works.coregrade.com -- 07:06:15.978 INFO [11974]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701 -- 07:06:15.978 INFO [11974]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:06:15.978 INFO [11974]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:06:15.992 INFO [11974]: COREGRADE is stopping... -- 07:06:15.992 DEBUG [11974]: Closing database connection -- 07:06:15.992 SQL [11974]: pgsql_close() -- 07:06:16.005 INFO [11974]: COREGRADE is starting... -- 07:06:16.005 INFO [11974]: Version from config: 1.0 -- 07:06:16.005 DEBUG [11974]: Connecting to database... -- 07:06:16.005 DEBUG [11974]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:06:16.005 SQL [11974]: pgsql_db_connect() -- 07:06:15.973 DEBUG [11972]: Database connection successful -- 07:06:15.973 INFO [11972]: _SERVER found -- 07:06:15.973 INFO [11972]: REMOTE_ADDR = 192.168.1.13 -- 07:06:15.973 INFO [11972]: SERVER_NAME = oameye.works.coregrade.com -- 07:06:15.973 INFO [11972]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701 -- 07:06:15.973 INFO [11972]: QUERY_STRING = -- 07:06:15.973 INFO [11972]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:06:16.016 INFO [11972]: COREGRADE is stopping... -- 07:06:16.016 DEBUG [11972]: Closing database connection -- 07:06:16.016 SQL [11972]: pgsql_close() -- 07:06:16.011 DEBUG [11974]: Database connection successful -- 07:06:16.011 INFO [11974]: _SERVER found -- 07:06:16.011 INFO [11974]: REMOTE_ADDR = 192.168.1.13 -- 07:06:16.011 INFO [11974]: SERVER_NAME = oameye.works.coregrade.com -- 07:06:16.011 INFO [11974]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701 -- 07:06:16.011 INFO [11974]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:06:16.011 INFO [11974]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:06:16.024 INFO [11974]: COREGRADE is stopping... -- 07:06:16.024 DEBUG [11974]: Closing database connection -- 07:06:16.024 SQL [11974]: pgsql_close() -- 07:06:21.390 INFO [11973]: COREGRADE is starting... -- 07:06:21.390 INFO [11973]: Version from config: 1.0 -- 07:06:21.390 DEBUG [11973]: Connecting to database... -- 07:06:21.390 DEBUG [11973]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:06:21.390 SQL [11973]: pgsql_db_connect() -- 07:06:21.430 INFO [11982]: COREGRADE is starting... -- 07:06:21.430 INFO [11982]: Version from config: 1.0 -- 07:06:21.430 DEBUG [11982]: Connecting to database... -- 07:06:21.430 DEBUG [11982]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:06:21.430 SQL [11982]: pgsql_db_connect() -- 07:06:21.395 DEBUG [11973]: Database connection successful -- 07:06:21.395 INFO [11973]: _SERVER found -- 07:06:21.395 INFO [11973]: REMOTE_ADDR = 192.168.1.13 -- 07:06:21.395 INFO [11973]: SERVER_NAME = oameye.works.coregrade.com -- 07:06:21.395 INFO [11973]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1245814096.1581382701; ci_session=ckau80np8m5ulrgue3s7v6br10o39o8d -- 07:06:21.395 INFO [11973]: QUERY_STRING = -- 07:06:21.395 INFO [11973]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:06:21.434 INFO [11973]: COREGRADE is stopping... -- 07:06:21.434 DEBUG [11973]: Closing database connection -- 07:06:21.434 SQL [11973]: pgsql_close() -- 07:06:21.436 INFO [11983]: COREGRADE is starting... -- 07:06:21.436 INFO [11983]: Version from config: 1.0 -- 07:06:21.436 DEBUG [11983]: Connecting to database... -- 07:06:21.436 DEBUG [11983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:06:21.436 SQL [11983]: pgsql_db_connect() -- 07:06:21.435 DEBUG [11982]: Database connection successful -- 07:06:21.435 INFO [11982]: _SERVER found -- 07:06:21.435 INFO [11982]: REMOTE_ADDR = 192.168.1.13 -- 07:06:21.435 INFO [11982]: SERVER_NAME = oameye.works.coregrade.com -- 07:06:21.435 INFO [11982]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1245814096.1581382701; ci_session=ckau80np8m5ulrgue3s7v6br10o39o8d -- 07:06:21.435 INFO [11982]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:06:21.435 INFO [11982]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:06:21.448 INFO [11982]: COREGRADE is stopping... -- 07:06:21.448 DEBUG [11982]: Closing database connection -- 07:06:21.448 SQL [11982]: pgsql_close() -- 07:06:21.440 DEBUG [11983]: Database connection successful -- 07:06:21.440 INFO [11983]: _SERVER found -- 07:06:21.440 INFO [11983]: REMOTE_ADDR = 192.168.1.13 -- 07:06:21.440 INFO [11983]: SERVER_NAME = oameye.works.coregrade.com -- 07:06:21.440 INFO [11983]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1245814096.1581382701; ci_session=ckau80np8m5ulrgue3s7v6br10o39o8d -- 07:06:21.440 INFO [11983]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:06:21.440 INFO [11983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:06:21.453 INFO [11983]: COREGRADE is stopping... -- 07:06:21.453 DEBUG [11983]: Closing database connection -- 07:06:21.453 SQL [11983]: pgsql_close() -- 07:06:22.815 INFO [11973]: COREGRADE is starting... -- 07:06:22.815 INFO [11973]: Version from config: 1.0 -- 07:06:22.815 DEBUG [11973]: Connecting to database... -- 07:06:22.815 DEBUG [11973]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:06:22.815 SQL [11973]: pgsql_db_connect() -- 07:06:22.820 INFO [11983]: COREGRADE is starting... -- 07:06:22.820 INFO [11983]: Version from config: 1.0 -- 07:06:22.820 DEBUG [11983]: Connecting to database... -- 07:06:22.820 DEBUG [11983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:06:22.820 SQL [11983]: pgsql_db_connect() -- 07:06:22.825 INFO [11982]: COREGRADE is starting... -- 07:06:22.825 INFO [11982]: Version from config: 1.0 -- 07:06:22.825 DEBUG [11982]: Connecting to database... -- 07:06:22.825 DEBUG [11982]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:06:22.825 SQL [11982]: pgsql_db_connect() -- 07:06:22.824 DEBUG [11983]: Database connection successful -- 07:06:22.824 INFO [11983]: _SERVER found -- 07:06:22.824 INFO [11983]: REMOTE_ADDR = 192.168.1.13 -- 07:06:22.824 INFO [11983]: SERVER_NAME = oameye.works.coregrade.com -- 07:06:22.824 INFO [11983]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=ckau80np8m5ulrgue3s7v6br10o39o8d -- 07:06:22.824 INFO [11983]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:06:22.824 INFO [11983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:06:22.836 INFO [11983]: COREGRADE is stopping... -- 07:06:22.836 DEBUG [11983]: Closing database connection -- 07:06:22.836 SQL [11983]: pgsql_close() -- 07:06:22.829 DEBUG [11982]: Database connection successful -- 07:06:22.829 INFO [11982]: _SERVER found -- 07:06:22.829 INFO [11982]: REMOTE_ADDR = 192.168.1.13 -- 07:06:22.830 INFO [11982]: SERVER_NAME = oameye.works.coregrade.com -- 07:06:22.830 INFO [11982]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=ckau80np8m5ulrgue3s7v6br10o39o8d -- 07:06:22.830 INFO [11982]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:06:22.830 INFO [11982]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:06:22.841 INFO [11982]: COREGRADE is stopping... -- 07:06:22.841 DEBUG [11982]: Closing database connection -- 07:06:22.841 SQL [11982]: pgsql_close() -- 07:06:22.819 DEBUG [11973]: Database connection successful -- 07:06:22.819 INFO [11973]: _SERVER found -- 07:06:22.819 INFO [11973]: REMOTE_ADDR = 192.168.1.13 -- 07:06:22.819 INFO [11973]: SERVER_NAME = oameye.works.coregrade.com -- 07:06:22.819 INFO [11973]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=ckau80np8m5ulrgue3s7v6br10o39o8d -- 07:06:22.819 INFO [11973]: QUERY_STRING = -- 07:06:22.819 INFO [11973]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:06:22.855 INFO [11973]: COREGRADE is stopping... -- 07:06:22.855 DEBUG [11973]: Closing database connection -- 07:06:22.855 SQL [11973]: pgsql_close() -- 07:06:22.894 INFO [11973]: COREGRADE is starting... -- 07:06:22.894 INFO [11973]: Version from config: 1.0 -- 07:06:22.894 DEBUG [11973]: Connecting to database... -- 07:06:22.894 DEBUG [11973]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:06:22.894 SQL [11973]: pgsql_db_connect() -- 07:06:22.900 INFO [11982]: COREGRADE is starting... -- 07:06:22.901 INFO [11982]: Version from config: 1.0 -- 07:06:22.901 DEBUG [11982]: Connecting to database... -- 07:06:22.901 DEBUG [11982]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:06:22.901 SQL [11982]: pgsql_db_connect() -- 07:06:22.898 DEBUG [11973]: Database connection successful -- 07:06:22.898 INFO [11973]: _SERVER found -- 07:06:22.898 INFO [11973]: REMOTE_ADDR = 192.168.1.13 -- 07:06:22.898 INFO [11973]: SERVER_NAME = oameye.works.coregrade.com -- 07:06:22.898 INFO [11973]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=ckau80np8m5ulrgue3s7v6br10o39o8d -- 07:06:22.898 INFO [11973]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:06:22.898 INFO [11973]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:06:22.910 INFO [11973]: COREGRADE is stopping... -- 07:06:22.910 DEBUG [11973]: Closing database connection -- 07:06:22.910 SQL [11973]: pgsql_close() -- 07:06:22.905 DEBUG [11982]: Database connection successful -- 07:06:22.905 INFO [11982]: _SERVER found -- 07:06:22.905 INFO [11982]: REMOTE_ADDR = 192.168.1.13 -- 07:06:22.905 INFO [11982]: SERVER_NAME = oameye.works.coregrade.com -- 07:06:22.905 INFO [11982]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=ckau80np8m5ulrgue3s7v6br10o39o8d -- 07:06:22.905 INFO [11982]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:06:22.905 INFO [11982]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:06:22.916 INFO [11982]: COREGRADE is stopping... -- 07:06:22.916 DEBUG [11982]: Closing database connection -- 07:06:22.916 SQL [11982]: pgsql_close() -- 07:06:23.234 INFO [11973]: COREGRADE is starting... -- 07:06:23.235 INFO [11973]: Version from config: 1.0 -- 07:06:23.235 DEBUG [11973]: Connecting to database... -- 07:06:23.235 DEBUG [11973]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:06:23.235 SQL [11973]: pgsql_db_connect() -- 07:06:23.239 INFO [11982]: COREGRADE is starting... -- 07:06:23.240 INFO [11982]: Version from config: 1.0 -- 07:06:23.240 DEBUG [11982]: Connecting to database... -- 07:06:23.240 DEBUG [11982]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:06:23.240 SQL [11982]: pgsql_db_connect() -- 07:06:23.244 INFO [11983]: COREGRADE is starting... -- 07:06:23.245 INFO [11983]: Version from config: 1.0 -- 07:06:23.245 DEBUG [11983]: Connecting to database... -- 07:06:23.245 DEBUG [11983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:06:23.245 SQL [11983]: pgsql_db_connect() -- 07:06:23.243 DEBUG [11982]: Database connection successful -- 07:06:23.243 INFO [11982]: _SERVER found -- 07:06:23.243 INFO [11982]: REMOTE_ADDR = 192.168.1.13 -- 07:06:23.243 INFO [11982]: SERVER_NAME = oameye.works.coregrade.com -- 07:06:23.243 INFO [11982]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=ckau80np8m5ulrgue3s7v6br10o39o8d -- 07:06:23.243 INFO [11982]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:06:23.243 INFO [11982]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:06:23.255 INFO [11982]: COREGRADE is stopping... -- 07:06:23.255 DEBUG [11982]: Closing database connection -- 07:06:23.255 SQL [11982]: pgsql_close() -- 07:06:23.248 DEBUG [11983]: Database connection successful -- 07:06:23.248 INFO [11983]: _SERVER found -- 07:06:23.248 INFO [11983]: REMOTE_ADDR = 192.168.1.13 -- 07:06:23.248 INFO [11983]: SERVER_NAME = oameye.works.coregrade.com -- 07:06:23.248 INFO [11983]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=ckau80np8m5ulrgue3s7v6br10o39o8d -- 07:06:23.248 INFO [11983]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:06:23.248 INFO [11983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:06:23.260 INFO [11983]: COREGRADE is stopping... -- 07:06:23.260 DEBUG [11983]: Closing database connection -- 07:06:23.260 SQL [11983]: pgsql_close() -- 07:06:23.239 DEBUG [11973]: Database connection successful -- 07:06:23.239 INFO [11973]: _SERVER found -- 07:06:23.239 INFO [11973]: REMOTE_ADDR = 192.168.1.13 -- 07:06:23.239 INFO [11973]: SERVER_NAME = oameye.works.coregrade.com -- 07:06:23.239 INFO [11973]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=ckau80np8m5ulrgue3s7v6br10o39o8d -- 07:06:23.239 INFO [11973]: QUERY_STRING = -- 07:06:23.239 INFO [11973]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:06:23.272 INFO [11973]: COREGRADE is stopping... -- 07:06:23.272 DEBUG [11973]: Closing database connection -- 07:06:23.273 SQL [11973]: pgsql_close() -- 07:06:23.303 INFO [11973]: COREGRADE is starting... -- 07:06:23.303 INFO [11973]: Version from config: 1.0 -- 07:06:23.303 DEBUG [11973]: Connecting to database... -- 07:06:23.303 DEBUG [11973]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:06:23.303 SQL [11973]: pgsql_db_connect() -- 07:06:23.308 INFO [11983]: COREGRADE is starting... -- 07:06:23.308 INFO [11983]: Version from config: 1.0 -- 07:06:23.309 DEBUG [11983]: Connecting to database... -- 07:06:23.309 DEBUG [11983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:06:23.309 SQL [11983]: pgsql_db_connect() -- 07:06:23.307 DEBUG [11973]: Database connection successful -- 07:06:23.307 INFO [11973]: _SERVER found -- 07:06:23.307 INFO [11973]: REMOTE_ADDR = 192.168.1.13 -- 07:06:23.307 INFO [11973]: SERVER_NAME = oameye.works.coregrade.com -- 07:06:23.307 INFO [11973]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=ckau80np8m5ulrgue3s7v6br10o39o8d -- 07:06:23.307 INFO [11973]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:06:23.307 INFO [11973]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:06:23.319 INFO [11973]: COREGRADE is stopping... -- 07:06:23.319 DEBUG [11973]: Closing database connection -- 07:06:23.319 SQL [11973]: pgsql_close() -- 07:06:23.312 DEBUG [11983]: Database connection successful -- 07:06:23.312 INFO [11983]: _SERVER found -- 07:06:23.312 INFO [11983]: REMOTE_ADDR = 192.168.1.13 -- 07:06:23.312 INFO [11983]: SERVER_NAME = oameye.works.coregrade.com -- 07:06:23.312 INFO [11983]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=ckau80np8m5ulrgue3s7v6br10o39o8d -- 07:06:23.312 INFO [11983]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:06:23.312 INFO [11983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:06:23.324 INFO [11983]: COREGRADE is stopping... -- 07:06:23.324 DEBUG [11983]: Closing database connection -- 07:06:23.324 SQL [11983]: pgsql_close() -- 07:06:24.624 INFO [11983]: COREGRADE is starting... -- 07:06:24.625 INFO [11983]: Version from config: 1.0 -- 07:06:24.625 DEBUG [11983]: Connecting to database... -- 07:06:24.625 DEBUG [11983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:06:24.625 SQL [11983]: pgsql_db_connect() -- 07:06:24.625 INFO [11982]: COREGRADE is starting... -- 07:06:24.625 INFO [11982]: Version from config: 1.0 -- 07:06:24.625 DEBUG [11982]: Connecting to database... -- 07:06:24.625 DEBUG [11982]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:06:24.625 SQL [11982]: pgsql_db_connect() -- 07:06:24.626 INFO [11973]: COREGRADE is starting... -- 07:06:24.626 INFO [11973]: Version from config: 1.0 -- 07:06:24.626 DEBUG [11973]: Connecting to database... -- 07:06:24.626 DEBUG [11973]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:06:24.626 SQL [11973]: pgsql_db_connect() -- 07:06:24.629 DEBUG [11982]: Database connection successful -- 07:06:24.629 INFO [11982]: _SERVER found -- 07:06:24.629 INFO [11982]: REMOTE_ADDR = 192.168.1.13 -- 07:06:24.629 INFO [11982]: SERVER_NAME = oameye.works.coregrade.com -- 07:06:24.629 INFO [11982]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=ckau80np8m5ulrgue3s7v6br10o39o8d -- 07:06:24.629 INFO [11982]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:06:24.629 INFO [11982]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:06:24.640 INFO [11982]: COREGRADE is stopping... -- 07:06:24.640 DEBUG [11982]: Closing database connection -- 07:06:24.640 SQL [11982]: pgsql_close() -- 07:06:24.629 DEBUG [11983]: Database connection successful -- 07:06:24.629 INFO [11983]: _SERVER found -- 07:06:24.629 INFO [11983]: REMOTE_ADDR = 192.168.1.13 -- 07:06:24.629 INFO [11983]: SERVER_NAME = oameye.works.coregrade.com -- 07:06:24.629 INFO [11983]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=ckau80np8m5ulrgue3s7v6br10o39o8d -- 07:06:24.629 INFO [11983]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:06:24.629 INFO [11983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:06:24.641 INFO [11983]: COREGRADE is stopping... -- 07:06:24.641 DEBUG [11983]: Closing database connection -- 07:06:24.641 SQL [11983]: pgsql_close() -- 07:06:24.630 DEBUG [11973]: Database connection successful -- 07:06:24.630 INFO [11973]: _SERVER found -- 07:06:24.630 INFO [11973]: REMOTE_ADDR = 192.168.1.13 -- 07:06:24.630 INFO [11973]: SERVER_NAME = oameye.works.coregrade.com -- 07:06:24.630 INFO [11973]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=ckau80np8m5ulrgue3s7v6br10o39o8d -- 07:06:24.630 INFO [11973]: QUERY_STRING = -- 07:06:24.630 INFO [11973]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:06:24.664 INFO [11973]: COREGRADE is stopping... -- 07:06:24.664 DEBUG [11973]: Closing database connection -- 07:06:24.664 SQL [11973]: pgsql_close() -- 07:06:24.697 INFO [11973]: COREGRADE is starting... -- 07:06:24.697 INFO [11983]: COREGRADE is starting... -- 07:06:24.697 INFO [11983]: Version from config: 1.0 -- 07:06:24.697 DEBUG [11983]: Connecting to database... -- 07:06:24.697 INFO [11973]: Version from config: 1.0 -- 07:06:24.697 DEBUG [11973]: Connecting to database... -- 07:06:24.697 DEBUG [11983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:06:24.697 DEBUG [11973]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:06:24.697 SQL [11983]: pgsql_db_connect() -- 07:06:24.697 SQL [11973]: pgsql_db_connect() -- 07:06:24.701 DEBUG [11983]: Database connection successful -- 07:06:24.701 INFO [11983]: _SERVER found -- 07:06:24.701 INFO [11983]: REMOTE_ADDR = 192.168.1.13 -- 07:06:24.701 INFO [11983]: SERVER_NAME = oameye.works.coregrade.com -- 07:06:24.701 INFO [11983]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=ckau80np8m5ulrgue3s7v6br10o39o8d -- 07:06:24.701 INFO [11983]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:06:24.701 INFO [11983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:06:24.713 INFO [11983]: COREGRADE is stopping... -- 07:06:24.713 DEBUG [11983]: Closing database connection -- 07:06:24.713 SQL [11983]: pgsql_close() -- 07:06:24.701 DEBUG [11973]: Database connection successful -- 07:06:24.701 INFO [11973]: _SERVER found -- 07:06:24.701 INFO [11973]: REMOTE_ADDR = 192.168.1.13 -- 07:06:24.701 INFO [11973]: SERVER_NAME = oameye.works.coregrade.com -- 07:06:24.701 INFO [11973]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=ckau80np8m5ulrgue3s7v6br10o39o8d -- 07:06:24.701 INFO [11973]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:06:24.701 INFO [11973]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:06:24.713 INFO [11973]: COREGRADE is stopping... -- 07:06:24.713 DEBUG [11973]: Closing database connection -- 07:06:24.713 SQL [11973]: pgsql_close() -- 07:06:25.038 INFO [11983]: COREGRADE is starting... -- 07:06:25.038 INFO [11973]: COREGRADE is starting... -- 07:06:25.038 INFO [11982]: COREGRADE is starting... -- 07:06:25.038 INFO [11973]: Version from config: 1.0 -- 07:06:25.038 DEBUG [11973]: Connecting to database... -- 07:06:25.038 INFO [11983]: Version from config: 1.0 -- 07:06:25.038 DEBUG [11983]: Connecting to database... -- 07:06:25.038 DEBUG [11973]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:06:25.038 DEBUG [11983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:06:25.038 SQL [11973]: pgsql_db_connect() -- 07:06:25.038 SQL [11983]: pgsql_db_connect() -- 07:06:25.038 INFO [11982]: Version from config: 1.0 -- 07:06:25.038 DEBUG [11982]: Connecting to database... -- 07:06:25.038 DEBUG [11982]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:06:25.038 SQL [11982]: pgsql_db_connect() -- 07:06:25.042 DEBUG [11982]: Database connection successful -- 07:06:25.042 INFO [11982]: _SERVER found -- 07:06:25.042 INFO [11982]: REMOTE_ADDR = 192.168.1.13 -- 07:06:25.042 INFO [11982]: SERVER_NAME = oameye.works.coregrade.com -- 07:06:25.042 INFO [11982]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=ckau80np8m5ulrgue3s7v6br10o39o8d -- 07:06:25.042 INFO [11982]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:06:25.042 INFO [11982]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:06:25.053 INFO [11982]: COREGRADE is stopping... -- 07:06:25.053 DEBUG [11982]: Closing database connection -- 07:06:25.053 SQL [11982]: pgsql_close() -- 07:06:25.042 DEBUG [11983]: Database connection successful -- 07:06:25.042 INFO [11983]: _SERVER found -- 07:06:25.042 INFO [11983]: REMOTE_ADDR = 192.168.1.13 -- 07:06:25.042 INFO [11983]: SERVER_NAME = oameye.works.coregrade.com -- 07:06:25.042 INFO [11983]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=ckau80np8m5ulrgue3s7v6br10o39o8d -- 07:06:25.042 INFO [11983]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:06:25.042 INFO [11983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:06:25.054 INFO [11983]: COREGRADE is stopping... -- 07:06:25.054 DEBUG [11983]: Closing database connection -- 07:06:25.054 SQL [11983]: pgsql_close() -- 07:06:25.042 DEBUG [11973]: Database connection successful -- 07:06:25.042 INFO [11973]: _SERVER found -- 07:06:25.042 INFO [11973]: REMOTE_ADDR = 192.168.1.13 -- 07:06:25.042 INFO [11973]: SERVER_NAME = oameye.works.coregrade.com -- 07:06:25.042 INFO [11973]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=ckau80np8m5ulrgue3s7v6br10o39o8d -- 07:06:25.042 INFO [11973]: QUERY_STRING = -- 07:06:25.042 INFO [11973]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:06:25.076 INFO [11973]: COREGRADE is stopping... -- 07:06:25.076 DEBUG [11973]: Closing database connection -- 07:06:25.076 SQL [11973]: pgsql_close() -- 07:06:25.114 INFO [11973]: COREGRADE is starting... -- 07:06:25.114 INFO [11982]: COREGRADE is starting... -- 07:06:25.114 INFO [11982]: Version from config: 1.0 -- 07:06:25.114 DEBUG [11982]: Connecting to database... -- 07:06:25.114 INFO [11973]: Version from config: 1.0 -- 07:06:25.114 DEBUG [11973]: Connecting to database... -- 07:06:25.114 DEBUG [11982]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:06:25.114 DEBUG [11973]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:06:25.114 SQL [11982]: pgsql_db_connect() -- 07:06:25.114 SQL [11973]: pgsql_db_connect() -- 07:06:25.118 DEBUG [11982]: Database connection successful -- 07:06:25.118 INFO [11982]: _SERVER found -- 07:06:25.118 INFO [11982]: REMOTE_ADDR = 192.168.1.13 -- 07:06:25.118 INFO [11982]: SERVER_NAME = oameye.works.coregrade.com -- 07:06:25.118 INFO [11982]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=ckau80np8m5ulrgue3s7v6br10o39o8d -- 07:06:25.118 INFO [11982]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:06:25.118 INFO [11982]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:06:25.129 INFO [11982]: COREGRADE is stopping... -- 07:06:25.129 DEBUG [11982]: Closing database connection -- 07:06:25.129 SQL [11982]: pgsql_close() -- 07:06:25.118 DEBUG [11973]: Database connection successful -- 07:06:25.118 INFO [11973]: _SERVER found -- 07:06:25.118 INFO [11973]: REMOTE_ADDR = 192.168.1.13 -- 07:06:25.118 INFO [11973]: SERVER_NAME = oameye.works.coregrade.com -- 07:06:25.118 INFO [11973]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=ckau80np8m5ulrgue3s7v6br10o39o8d -- 07:06:25.118 INFO [11973]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:06:25.118 INFO [11973]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:06:25.130 INFO [11973]: COREGRADE is stopping... -- 07:06:25.130 DEBUG [11973]: Closing database connection -- 07:06:25.130 SQL [11973]: pgsql_close() -- 07:06:25.438 INFO [11973]: COREGRADE is starting... -- 07:06:25.438 INFO [11973]: Version from config: 1.0 -- 07:06:25.438 DEBUG [11973]: Connecting to database... -- 07:06:25.438 DEBUG [11973]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:06:25.438 SQL [11973]: pgsql_db_connect() -- 07:06:25.438 INFO [11983]: COREGRADE is starting... -- 07:06:25.438 INFO [11983]: Version from config: 1.0 -- 07:06:25.438 DEBUG [11983]: Connecting to database... -- 07:06:25.438 DEBUG [11983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:06:25.438 SQL [11983]: pgsql_db_connect() -- 07:06:25.439 INFO [11982]: COREGRADE is starting... -- 07:06:25.439 INFO [11982]: Version from config: 1.0 -- 07:06:25.439 DEBUG [11982]: Connecting to database... -- 07:06:25.439 DEBUG [11982]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:06:25.439 SQL [11982]: pgsql_db_connect() -- 07:06:25.442 DEBUG [11983]: Database connection successful -- 07:06:25.442 INFO [11983]: _SERVER found -- 07:06:25.442 INFO [11983]: REMOTE_ADDR = 192.168.1.13 -- 07:06:25.442 INFO [11983]: SERVER_NAME = oameye.works.coregrade.com -- 07:06:25.442 INFO [11983]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=ckau80np8m5ulrgue3s7v6br10o39o8d -- 07:06:25.442 INFO [11983]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:06:25.442 INFO [11983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:06:25.454 INFO [11983]: COREGRADE is stopping... -- 07:06:25.454 DEBUG [11983]: Closing database connection -- 07:06:25.454 SQL [11983]: pgsql_close() -- 07:06:25.443 DEBUG [11982]: Database connection successful -- 07:06:25.443 INFO [11982]: _SERVER found -- 07:06:25.443 INFO [11982]: REMOTE_ADDR = 192.168.1.13 -- 07:06:25.443 INFO [11982]: SERVER_NAME = oameye.works.coregrade.com -- 07:06:25.443 INFO [11982]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=ckau80np8m5ulrgue3s7v6br10o39o8d -- 07:06:25.443 INFO [11982]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:06:25.443 INFO [11982]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:06:25.454 INFO [11982]: COREGRADE is stopping... -- 07:06:25.454 DEBUG [11982]: Closing database connection -- 07:06:25.454 SQL [11982]: pgsql_close() -- 07:06:25.442 DEBUG [11973]: Database connection successful -- 07:06:25.442 INFO [11973]: _SERVER found -- 07:06:25.442 INFO [11973]: REMOTE_ADDR = 192.168.1.13 -- 07:06:25.442 INFO [11973]: SERVER_NAME = oameye.works.coregrade.com -- 07:06:25.442 INFO [11973]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=ckau80np8m5ulrgue3s7v6br10o39o8d -- 07:06:25.442 INFO [11973]: QUERY_STRING = -- 07:06:25.442 INFO [11973]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:06:25.476 INFO [11973]: COREGRADE is stopping... -- 07:06:25.476 DEBUG [11973]: Closing database connection -- 07:06:25.476 SQL [11973]: pgsql_close() -- 07:06:25.512 INFO [11973]: COREGRADE is starting... -- 07:06:25.512 INFO [11982]: COREGRADE is starting... -- 07:06:25.512 INFO [11973]: Version from config: 1.0 -- 07:06:25.512 DEBUG [11973]: Connecting to database... -- 07:06:25.512 INFO [11982]: Version from config: 1.0 -- 07:06:25.512 DEBUG [11982]: Connecting to database... -- 07:06:25.512 DEBUG [11973]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:06:25.512 DEBUG [11982]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:06:25.512 SQL [11973]: pgsql_db_connect() -- 07:06:25.512 SQL [11982]: pgsql_db_connect() -- 07:06:25.516 DEBUG [11982]: Database connection successful -- 07:06:25.516 INFO [11982]: _SERVER found -- 07:06:25.516 INFO [11982]: REMOTE_ADDR = 192.168.1.13 -- 07:06:25.516 INFO [11982]: SERVER_NAME = oameye.works.coregrade.com -- 07:06:25.516 INFO [11982]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=ckau80np8m5ulrgue3s7v6br10o39o8d -- 07:06:25.516 INFO [11982]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:06:25.516 INFO [11982]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:06:25.527 INFO [11982]: COREGRADE is stopping... -- 07:06:25.527 DEBUG [11982]: Closing database connection -- 07:06:25.527 SQL [11982]: pgsql_close() -- 07:06:25.516 DEBUG [11973]: Database connection successful -- 07:06:25.516 INFO [11973]: _SERVER found -- 07:06:25.516 INFO [11973]: REMOTE_ADDR = 192.168.1.13 -- 07:06:25.516 INFO [11973]: SERVER_NAME = oameye.works.coregrade.com -- 07:06:25.516 INFO [11973]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=ckau80np8m5ulrgue3s7v6br10o39o8d -- 07:06:25.516 INFO [11973]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:06:25.516 INFO [11973]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:06:25.528 INFO [11973]: COREGRADE is stopping... -- 07:06:25.528 DEBUG [11973]: Closing database connection -- 07:06:25.528 SQL [11973]: pgsql_close() -- 07:12:59.087 INFO [11984]: COREGRADE is starting... -- 07:12:59.087 INFO [11984]: Version from config: 1.0 -- 07:12:59.087 DEBUG [11984]: Connecting to database... -- 07:12:59.087 DEBUG [11984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:12:59.087 SQL [11984]: pgsql_db_connect() -- 07:12:59.123 INFO [11970]: COREGRADE is starting... -- 07:12:59.123 INFO [11970]: Version from config: 1.0 -- 07:12:59.123 DEBUG [11970]: Connecting to database... -- 07:12:59.123 DEBUG [11970]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:12:59.123 SQL [11970]: pgsql_db_connect() -- 07:12:59.092 DEBUG [11984]: Database connection successful -- 07:12:59.092 INFO [11984]: _SERVER found -- 07:12:59.092 INFO [11984]: REMOTE_ADDR = 192.168.1.13 -- 07:12:59.092 INFO [11984]: SERVER_NAME = oameye.works.coregrade.com -- 07:12:59.092 INFO [11984]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; ci_session=ckau80np8m5ulrgue3s7v6br10o39o8d -- 07:12:59.092 INFO [11984]: QUERY_STRING = -- 07:12:59.092 INFO [11984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:12:59.132 INFO [11984]: COREGRADE is stopping... -- 07:12:59.132 DEBUG [11984]: Closing database connection -- 07:12:59.132 SQL [11984]: pgsql_close() -- 07:12:59.136 INFO [11971]: COREGRADE is starting... -- 07:12:59.136 INFO [11971]: Version from config: 1.0 -- 07:12:59.136 DEBUG [11971]: Connecting to database... -- 07:12:59.136 DEBUG [11971]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:12:59.136 SQL [11971]: pgsql_db_connect() -- 07:12:59.127 DEBUG [11970]: Database connection successful -- 07:12:59.127 INFO [11970]: _SERVER found -- 07:12:59.127 INFO [11970]: REMOTE_ADDR = 192.168.1.13 -- 07:12:59.127 INFO [11970]: SERVER_NAME = oameye.works.coregrade.com -- 07:12:59.127 INFO [11970]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; ci_session=ckau80np8m5ulrgue3s7v6br10o39o8d -- 07:12:59.127 INFO [11970]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:12:59.127 INFO [11970]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:12:59.141 INFO [11970]: COREGRADE is stopping... -- 07:12:59.141 DEBUG [11970]: Closing database connection -- 07:12:59.141 SQL [11970]: pgsql_close() -- 07:12:59.140 DEBUG [11971]: Database connection successful -- 07:12:59.140 INFO [11971]: _SERVER found -- 07:12:59.140 INFO [11971]: REMOTE_ADDR = 192.168.1.13 -- 07:12:59.140 INFO [11971]: SERVER_NAME = oameye.works.coregrade.com -- 07:12:59.141 INFO [11971]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; ci_session=ckau80np8m5ulrgue3s7v6br10o39o8d -- 07:12:59.141 INFO [11971]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:12:59.141 INFO [11971]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:12:59.152 INFO [11971]: COREGRADE is stopping... -- 07:12:59.152 DEBUG [11971]: Closing database connection -- 07:12:59.152 SQL [11971]: pgsql_close() -- 07:12:59.182 INFO [11970]: COREGRADE is starting... -- 07:12:59.183 INFO [11970]: Version from config: 1.0 -- 07:12:59.183 DEBUG [11970]: Connecting to database... -- 07:12:59.183 DEBUG [11970]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:12:59.183 SQL [11970]: pgsql_db_connect() -- 07:12:59.188 INFO [11984]: COREGRADE is starting... -- 07:12:59.188 INFO [11984]: Version from config: 1.0 -- 07:12:59.188 DEBUG [11984]: Connecting to database... -- 07:12:59.188 DEBUG [11984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:12:59.188 SQL [11984]: pgsql_db_connect() -- 07:12:59.186 DEBUG [11970]: Database connection successful -- 07:12:59.186 INFO [11970]: _SERVER found -- 07:12:59.186 INFO [11970]: REMOTE_ADDR = 192.168.1.13 -- 07:12:59.186 INFO [11970]: SERVER_NAME = oameye.works.coregrade.com -- 07:12:59.186 INFO [11970]: HTTP_COOKIE = ci_session=33nlgicahjt97asrnnmdp6c0eektu04u; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701 -- 07:12:59.186 INFO [11970]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:12:59.186 INFO [11970]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:12:59.199 INFO [11970]: COREGRADE is stopping... -- 07:12:59.199 DEBUG [11970]: Closing database connection -- 07:12:59.199 SQL [11970]: pgsql_close() -- 07:12:59.192 DEBUG [11984]: Database connection successful -- 07:12:59.192 INFO [11984]: _SERVER found -- 07:12:59.192 INFO [11984]: REMOTE_ADDR = 192.168.1.13 -- 07:12:59.192 INFO [11984]: SERVER_NAME = oameye.works.coregrade.com -- 07:12:59.192 INFO [11984]: HTTP_COOKIE = ci_session=33nlgicahjt97asrnnmdp6c0eektu04u; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701 -- 07:12:59.192 INFO [11984]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:12:59.192 INFO [11984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:12:59.203 INFO [11984]: COREGRADE is stopping... -- 07:12:59.203 DEBUG [11984]: Closing database connection -- 07:12:59.203 SQL [11984]: pgsql_close() -- 07:12:59.985 INFO [11984]: COREGRADE is starting... -- 07:12:59.985 INFO [11984]: Version from config: 1.0 -- 07:12:59.985 DEBUG [11984]: Connecting to database... -- 07:12:59.986 DEBUG [11984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:12:59.986 SQL [11984]: pgsql_db_connect() -- 07:12:59.990 INFO [11970]: COREGRADE is starting... -- 07:12:59.991 INFO [11970]: Version from config: 1.0 -- 07:12:59.991 DEBUG [11970]: Connecting to database... -- 07:12:59.991 DEBUG [11970]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:12:59.991 SQL [11970]: pgsql_db_connect() -- 07:12:59.995 INFO [11971]: COREGRADE is starting... -- 07:12:59.996 INFO [11971]: Version from config: 1.0 -- 07:12:59.996 DEBUG [11971]: Connecting to database... -- 07:12:59.996 DEBUG [11971]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:12:59.996 SQL [11971]: pgsql_db_connect() -- 07:12:59.994 DEBUG [11970]: Database connection successful -- 07:12:59.994 INFO [11970]: _SERVER found -- 07:12:59.994 INFO [11970]: REMOTE_ADDR = 192.168.1.13 -- 07:12:59.994 INFO [11970]: SERVER_NAME = oameye.works.coregrade.com -- 07:12:59.994 INFO [11970]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1245814096.1581382701; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:12:59.994 INFO [11970]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:12:59.994 INFO [11970]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:00.007 INFO [11970]: COREGRADE is stopping... -- 07:13:00.007 DEBUG [11970]: Closing database connection -- 07:13:00.007 SQL [11970]: pgsql_close() -- 07:12:59.000 DEBUG [11971]: Database connection successful -- 07:12:59.000 INFO [11971]: _SERVER found -- 07:12:59.000 INFO [11971]: REMOTE_ADDR = 192.168.1.13 -- 07:12:59.000 INFO [11971]: SERVER_NAME = oameye.works.coregrade.com -- 07:12:59.000 INFO [11971]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1245814096.1581382701; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:12:59.000 INFO [11971]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:12:59.000 INFO [11971]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:00.013 INFO [11971]: COREGRADE is stopping... -- 07:13:00.013 DEBUG [11971]: Closing database connection -- 07:13:00.013 SQL [11971]: pgsql_close() -- 07:12:59.990 DEBUG [11984]: Database connection successful -- 07:12:59.990 INFO [11984]: _SERVER found -- 07:12:59.990 INFO [11984]: REMOTE_ADDR = 192.168.1.13 -- 07:12:59.990 INFO [11984]: SERVER_NAME = oameye.works.coregrade.com -- 07:12:59.990 INFO [11984]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1245814096.1581382701; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:12:59.990 INFO [11984]: QUERY_STRING = -- 07:12:59.990 INFO [11984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:00.024 INFO [11984]: COREGRADE is stopping... -- 07:13:00.024 DEBUG [11984]: Closing database connection -- 07:13:00.024 SQL [11984]: pgsql_close() -- 07:13:00.072 INFO [11984]: COREGRADE is starting... -- 07:13:00.072 INFO [11984]: Version from config: 1.0 -- 07:13:00.072 DEBUG [11984]: Connecting to database... -- 07:13:00.072 DEBUG [11984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:00.072 SQL [11984]: pgsql_db_connect() -- 07:13:00.077 INFO [11970]: COREGRADE is starting... -- 07:13:00.077 INFO [11970]: Version from config: 1.0 -- 07:13:00.077 DEBUG [11970]: Connecting to database... -- 07:13:00.077 DEBUG [11970]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:00.077 SQL [11970]: pgsql_db_connect() -- 07:13:00.076 DEBUG [11984]: Database connection successful -- 07:13:00.076 INFO [11984]: _SERVER found -- 07:13:00.076 INFO [11984]: REMOTE_ADDR = 192.168.1.13 -- 07:13:00.076 INFO [11984]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:00.076 INFO [11984]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1245814096.1581382701; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:00.076 INFO [11984]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:13:00.076 INFO [11984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:00.088 INFO [11984]: COREGRADE is stopping... -- 07:13:00.088 DEBUG [11984]: Closing database connection -- 07:13:00.088 SQL [11984]: pgsql_close() -- 07:13:00.081 DEBUG [11970]: Database connection successful -- 07:13:00.081 INFO [11970]: _SERVER found -- 07:13:00.081 INFO [11970]: REMOTE_ADDR = 192.168.1.13 -- 07:13:00.081 INFO [11970]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:00.081 INFO [11970]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1245814096.1581382701; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:00.081 INFO [11970]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:13:00.081 INFO [11970]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:00.093 INFO [11970]: COREGRADE is stopping... -- 07:13:00.093 DEBUG [11970]: Closing database connection -- 07:13:00.093 SQL [11970]: pgsql_close() -- 07:13:00.442 INFO [11984]: COREGRADE is starting... -- 07:13:00.442 INFO [11970]: COREGRADE is starting... -- 07:13:00.443 INFO [11970]: Version from config: 1.0 -- 07:13:00.443 DEBUG [11970]: Connecting to database... -- 07:13:00.443 INFO [11984]: Version from config: 1.0 -- 07:13:00.443 DEBUG [11984]: Connecting to database... -- 07:13:00.443 DEBUG [11970]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:00.443 DEBUG [11984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:00.443 SQL [11970]: pgsql_db_connect() -- 07:13:00.443 SQL [11984]: pgsql_db_connect() -- 07:13:00.448 INFO [11971]: COREGRADE is starting... -- 07:13:00.448 INFO [11971]: Version from config: 1.0 -- 07:13:00.448 DEBUG [11971]: Connecting to database... -- 07:13:00.448 DEBUG [11971]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:00.448 SQL [11971]: pgsql_db_connect() -- 07:13:00.448 DEBUG [11984]: Database connection successful -- 07:13:00.448 INFO [11984]: _SERVER found -- 07:13:00.448 INFO [11984]: REMOTE_ADDR = 192.168.1.13 -- 07:13:00.448 INFO [11984]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:00.448 INFO [11984]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:00.448 INFO [11984]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:13:00.448 INFO [11984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:00.459 INFO [11984]: COREGRADE is stopping... -- 07:13:00.459 DEBUG [11984]: Closing database connection -- 07:13:00.459 SQL [11984]: pgsql_close() -- 07:13:00.452 DEBUG [11971]: Database connection successful -- 07:13:00.452 INFO [11971]: _SERVER found -- 07:13:00.452 INFO [11971]: REMOTE_ADDR = 192.168.1.13 -- 07:13:00.452 INFO [11971]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:00.452 INFO [11971]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:00.452 INFO [11971]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:13:00.452 INFO [11971]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:00.463 INFO [11971]: COREGRADE is stopping... -- 07:13:00.463 DEBUG [11971]: Closing database connection -- 07:13:00.463 SQL [11971]: pgsql_close() -- 07:13:00.448 DEBUG [11970]: Database connection successful -- 07:13:00.448 INFO [11970]: _SERVER found -- 07:13:00.448 INFO [11970]: REMOTE_ADDR = 192.168.1.13 -- 07:13:00.448 INFO [11970]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:00.448 INFO [11970]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:00.448 INFO [11970]: QUERY_STRING = -- 07:13:00.448 INFO [11970]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:00.488 INFO [11970]: COREGRADE is stopping... -- 07:13:00.488 DEBUG [11970]: Closing database connection -- 07:13:00.488 SQL [11970]: pgsql_close() -- 07:13:00.533 INFO [11970]: COREGRADE is starting... -- 07:13:00.533 INFO [11970]: Version from config: 1.0 -- 07:13:00.533 DEBUG [11970]: Connecting to database... -- 07:13:00.533 DEBUG [11970]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:00.533 SQL [11970]: pgsql_db_connect() -- 07:13:00.534 INFO [11984]: COREGRADE is starting... -- 07:13:00.534 INFO [11984]: Version from config: 1.0 -- 07:13:00.534 DEBUG [11984]: Connecting to database... -- 07:13:00.534 DEBUG [11984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:00.534 SQL [11984]: pgsql_db_connect() -- 07:13:00.537 DEBUG [11970]: Database connection successful -- 07:13:00.537 INFO [11970]: _SERVER found -- 07:13:00.537 INFO [11970]: REMOTE_ADDR = 192.168.1.13 -- 07:13:00.537 INFO [11970]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:00.537 INFO [11970]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:00.537 INFO [11970]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:13:00.537 INFO [11970]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:00.548 INFO [11970]: COREGRADE is stopping... -- 07:13:00.549 DEBUG [11970]: Closing database connection -- 07:13:00.549 SQL [11970]: pgsql_close() -- 07:13:00.538 DEBUG [11984]: Database connection successful -- 07:13:00.538 INFO [11984]: _SERVER found -- 07:13:00.538 INFO [11984]: REMOTE_ADDR = 192.168.1.13 -- 07:13:00.538 INFO [11984]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:00.538 INFO [11984]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:00.538 INFO [11984]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:13:00.538 INFO [11984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:00.549 INFO [11984]: COREGRADE is stopping... -- 07:13:00.549 DEBUG [11984]: Closing database connection -- 07:13:00.549 SQL [11984]: pgsql_close() -- 07:13:00.858 INFO [11970]: COREGRADE is starting... -- 07:13:00.858 INFO [11984]: COREGRADE is starting... -- 07:13:00.858 INFO [11970]: Version from config: 1.0 -- 07:13:00.858 DEBUG [11970]: Connecting to database... -- 07:13:00.858 INFO [11984]: Version from config: 1.0 -- 07:13:00.858 DEBUG [11984]: Connecting to database... -- 07:13:00.858 DEBUG [11970]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:00.858 DEBUG [11984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:00.858 SQL [11970]: pgsql_db_connect() -- 07:13:00.858 SQL [11984]: pgsql_db_connect() -- 07:13:00.864 INFO [11971]: COREGRADE is starting... -- 07:13:00.864 INFO [11971]: Version from config: 1.0 -- 07:13:00.864 DEBUG [11971]: Connecting to database... -- 07:13:00.864 DEBUG [11971]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:00.864 SQL [11971]: pgsql_db_connect() -- 07:13:00.862 DEBUG [11970]: Database connection successful -- 07:13:00.862 INFO [11970]: _SERVER found -- 07:13:00.862 INFO [11970]: REMOTE_ADDR = 192.168.1.13 -- 07:13:00.862 INFO [11970]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:00.862 INFO [11970]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:00.862 INFO [11970]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:13:00.862 INFO [11970]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:00.874 INFO [11970]: COREGRADE is stopping... -- 07:13:00.874 DEBUG [11970]: Closing database connection -- 07:13:00.874 SQL [11970]: pgsql_close() -- 07:13:00.868 DEBUG [11971]: Database connection successful -- 07:13:00.868 INFO [11971]: _SERVER found -- 07:13:00.868 INFO [11971]: REMOTE_ADDR = 192.168.1.13 -- 07:13:00.868 INFO [11971]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:00.868 INFO [11971]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:00.868 INFO [11971]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:13:00.868 INFO [11971]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:00.879 INFO [11971]: COREGRADE is stopping... -- 07:13:00.879 DEBUG [11971]: Closing database connection -- 07:13:00.879 SQL [11971]: pgsql_close() -- 07:13:00.862 DEBUG [11984]: Database connection successful -- 07:13:00.862 INFO [11984]: _SERVER found -- 07:13:00.862 INFO [11984]: REMOTE_ADDR = 192.168.1.13 -- 07:13:00.862 INFO [11984]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:00.862 INFO [11984]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:00.862 INFO [11984]: QUERY_STRING = -- 07:13:00.862 INFO [11984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:00.893 INFO [11984]: COREGRADE is stopping... -- 07:13:00.893 DEBUG [11984]: Closing database connection -- 07:13:00.893 SQL [11984]: pgsql_close() -- 07:13:00.926 INFO [11984]: COREGRADE is starting... -- 07:13:00.926 INFO [11970]: COREGRADE is starting... -- 07:13:00.926 INFO [11970]: Version from config: 1.0 -- 07:13:00.926 DEBUG [11970]: Connecting to database... -- 07:13:00.926 INFO [11984]: Version from config: 1.0 -- 07:13:00.926 DEBUG [11984]: Connecting to database... -- 07:13:00.927 DEBUG [11970]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:00.927 DEBUG [11984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:00.927 SQL [11970]: pgsql_db_connect() -- 07:13:00.927 SQL [11984]: pgsql_db_connect() -- 07:13:00.931 DEBUG [11984]: Database connection successful -- 07:13:00.931 INFO [11984]: _SERVER found -- 07:13:00.931 INFO [11984]: REMOTE_ADDR = 192.168.1.13 -- 07:13:00.931 INFO [11984]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:00.931 INFO [11984]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:00.931 INFO [11984]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:13:00.931 INFO [11984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:00.942 INFO [11984]: COREGRADE is stopping... -- 07:13:00.931 DEBUG [11970]: Database connection successful -- 07:13:00.931 INFO [11970]: _SERVER found -- 07:13:00.931 INFO [11970]: REMOTE_ADDR = 192.168.1.13 -- 07:13:00.931 INFO [11970]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:00.931 INFO [11970]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:00.931 INFO [11970]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:13:00.931 INFO [11970]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:00.942 INFO [11970]: COREGRADE is stopping... -- 07:13:00.942 DEBUG [11984]: Closing database connection -- 07:13:00.942 DEBUG [11970]: Closing database connection -- 07:13:00.942 SQL [11984]: pgsql_close() -- 07:13:00.942 SQL [11970]: pgsql_close() -- 07:13:01.289 INFO [11984]: COREGRADE is starting... -- 07:13:01.289 INFO [11970]: COREGRADE is starting... -- 07:13:01.289 INFO [11971]: COREGRADE is starting... -- 07:13:01.289 INFO [11984]: Version from config: 1.0 -- 07:13:01.289 DEBUG [11984]: Connecting to database... -- 07:13:01.289 INFO [11970]: Version from config: 1.0 -- 07:13:01.289 DEBUG [11970]: Connecting to database... -- 07:13:01.289 DEBUG [11984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:01.289 DEBUG [11970]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:01.289 SQL [11984]: pgsql_db_connect() -- 07:13:01.289 SQL [11970]: pgsql_db_connect() -- 07:13:01.289 INFO [11971]: Version from config: 1.0 -- 07:13:01.289 DEBUG [11971]: Connecting to database... -- 07:13:01.289 DEBUG [11971]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:01.289 SQL [11971]: pgsql_db_connect() -- 07:13:01.294 DEBUG [11970]: Database connection successful -- 07:13:01.294 INFO [11970]: _SERVER found -- 07:13:01.294 INFO [11970]: REMOTE_ADDR = 192.168.1.13 -- 07:13:01.294 INFO [11970]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:01.294 INFO [11970]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:01.294 INFO [11970]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:13:01.294 INFO [11970]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:01.305 INFO [11970]: COREGRADE is stopping... -- 07:13:01.294 DEBUG [11971]: Database connection successful -- 07:13:01.294 INFO [11971]: _SERVER found -- 07:13:01.294 INFO [11971]: REMOTE_ADDR = 192.168.1.13 -- 07:13:01.294 INFO [11971]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:01.294 INFO [11971]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:01.294 INFO [11971]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:13:01.294 INFO [11971]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:01.305 INFO [11971]: COREGRADE is stopping... -- 07:13:01.305 DEBUG [11970]: Closing database connection -- 07:13:01.305 DEBUG [11971]: Closing database connection -- 07:13:01.305 SQL [11970]: pgsql_close() -- 07:13:01.305 SQL [11971]: pgsql_close() -- 07:13:01.294 DEBUG [11984]: Database connection successful -- 07:13:01.294 INFO [11984]: _SERVER found -- 07:13:01.294 INFO [11984]: REMOTE_ADDR = 192.168.1.13 -- 07:13:01.294 INFO [11984]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:01.294 INFO [11984]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:01.294 INFO [11984]: QUERY_STRING = -- 07:13:01.294 INFO [11984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:01.325 INFO [11984]: COREGRADE is stopping... -- 07:13:01.325 DEBUG [11984]: Closing database connection -- 07:13:01.325 SQL [11984]: pgsql_close() -- 07:13:01.357 INFO [11984]: COREGRADE is starting... -- 07:13:01.357 INFO [11970]: COREGRADE is starting... -- 07:13:01.357 INFO [11970]: Version from config: 1.0 -- 07:13:01.357 DEBUG [11970]: Connecting to database... -- 07:13:01.357 INFO [11984]: Version from config: 1.0 -- 07:13:01.357 DEBUG [11984]: Connecting to database... -- 07:13:01.357 DEBUG [11970]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:01.357 DEBUG [11984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:01.357 SQL [11970]: pgsql_db_connect() -- 07:13:01.357 SQL [11984]: pgsql_db_connect() -- 07:13:01.361 DEBUG [11970]: Database connection successful -- 07:13:01.361 INFO [11970]: _SERVER found -- 07:13:01.361 INFO [11970]: REMOTE_ADDR = 192.168.1.13 -- 07:13:01.361 INFO [11970]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:01.361 INFO [11970]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:01.361 INFO [11970]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:13:01.361 INFO [11970]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:01.372 INFO [11970]: COREGRADE is stopping... -- 07:13:01.372 DEBUG [11970]: Closing database connection -- 07:13:01.361 DEBUG [11984]: Database connection successful -- 07:13:01.361 INFO [11984]: _SERVER found -- 07:13:01.361 INFO [11984]: REMOTE_ADDR = 192.168.1.13 -- 07:13:01.361 INFO [11984]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:01.361 INFO [11984]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:01.361 INFO [11984]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:13:01.361 INFO [11984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:01.372 INFO [11984]: COREGRADE is stopping... -- 07:13:01.372 SQL [11970]: pgsql_close() -- 07:13:01.372 DEBUG [11984]: Closing database connection -- 07:13:01.372 SQL [11984]: pgsql_close() -- 07:13:01.719 INFO [11970]: COREGRADE is starting... -- 07:13:01.719 INFO [11984]: COREGRADE is starting... -- 07:13:01.719 INFO [11984]: Version from config: 1.0 -- 07:13:01.719 DEBUG [11984]: Connecting to database... -- 07:13:01.719 INFO [11970]: Version from config: 1.0 -- 07:13:01.719 DEBUG [11970]: Connecting to database... -- 07:13:01.719 DEBUG [11984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:01.719 DEBUG [11970]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:01.719 SQL [11984]: pgsql_db_connect() -- 07:13:01.719 SQL [11970]: pgsql_db_connect() -- 07:13:01.719 INFO [11971]: COREGRADE is starting... -- 07:13:01.719 INFO [11971]: Version from config: 1.0 -- 07:13:01.719 DEBUG [11971]: Connecting to database... -- 07:13:01.719 DEBUG [11971]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:01.719 SQL [11971]: pgsql_db_connect() -- 07:13:01.723 DEBUG [11971]: Database connection successful -- 07:13:01.723 INFO [11971]: _SERVER found -- 07:13:01.723 INFO [11971]: REMOTE_ADDR = 192.168.1.13 -- 07:13:01.723 INFO [11971]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:01.723 INFO [11971]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:01.723 INFO [11971]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:13:01.723 INFO [11971]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:01.734 INFO [11971]: COREGRADE is stopping... -- 07:13:01.734 DEBUG [11971]: Closing database connection -- 07:13:01.734 SQL [11971]: pgsql_close() -- 07:13:01.723 DEBUG [11984]: Database connection successful -- 07:13:01.723 INFO [11984]: _SERVER found -- 07:13:01.723 INFO [11984]: REMOTE_ADDR = 192.168.1.13 -- 07:13:01.723 INFO [11984]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:01.723 INFO [11984]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:01.723 INFO [11984]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:13:01.723 INFO [11984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:01.734 INFO [11984]: COREGRADE is stopping... -- 07:13:01.734 DEBUG [11984]: Closing database connection -- 07:13:01.734 SQL [11984]: pgsql_close() -- 07:13:01.723 DEBUG [11970]: Database connection successful -- 07:13:01.723 INFO [11970]: _SERVER found -- 07:13:01.723 INFO [11970]: REMOTE_ADDR = 192.168.1.13 -- 07:13:01.723 INFO [11970]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:01.723 INFO [11970]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:01.723 INFO [11970]: QUERY_STRING = -- 07:13:01.723 INFO [11970]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:01.755 INFO [11970]: COREGRADE is stopping... -- 07:13:01.755 DEBUG [11970]: Closing database connection -- 07:13:01.755 SQL [11970]: pgsql_close() -- 07:13:01.790 INFO [11984]: COREGRADE is starting... -- 07:13:01.790 INFO [11970]: COREGRADE is starting... -- 07:13:01.790 INFO [11970]: Version from config: 1.0 -- 07:13:01.790 DEBUG [11970]: Connecting to database... -- 07:13:01.790 INFO [11984]: Version from config: 1.0 -- 07:13:01.790 DEBUG [11984]: Connecting to database... -- 07:13:01.790 DEBUG [11970]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:01.790 DEBUG [11984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:01.790 SQL [11970]: pgsql_db_connect() -- 07:13:01.790 SQL [11984]: pgsql_db_connect() -- 07:13:01.794 DEBUG [11970]: Database connection successful -- 07:13:01.794 INFO [11970]: _SERVER found -- 07:13:01.794 INFO [11970]: REMOTE_ADDR = 192.168.1.13 -- 07:13:01.794 INFO [11970]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:01.794 INFO [11970]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:01.794 INFO [11970]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:13:01.794 INFO [11970]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:01.805 INFO [11970]: COREGRADE is stopping... -- 07:13:01.794 DEBUG [11984]: Database connection successful -- 07:13:01.794 INFO [11984]: _SERVER found -- 07:13:01.794 INFO [11984]: REMOTE_ADDR = 192.168.1.13 -- 07:13:01.794 INFO [11984]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:01.794 INFO [11984]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:01.794 INFO [11984]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:13:01.794 INFO [11984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:01.805 INFO [11984]: COREGRADE is stopping... -- 07:13:01.805 DEBUG [11970]: Closing database connection -- 07:13:01.805 DEBUG [11984]: Closing database connection -- 07:13:01.805 SQL [11970]: pgsql_close() -- 07:13:01.805 SQL [11984]: pgsql_close() -- 07:13:02.137 INFO [11970]: COREGRADE is starting... -- 07:13:02.137 INFO [11970]: Version from config: 1.0 -- 07:13:02.137 DEBUG [11970]: Connecting to database... -- 07:13:02.137 DEBUG [11970]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:02.137 INFO [11984]: COREGRADE is starting... -- 07:13:02.137 SQL [11970]: pgsql_db_connect() -- 07:13:02.137 INFO [11971]: COREGRADE is starting... -- 07:13:02.137 INFO [11984]: Version from config: 1.0 -- 07:13:02.137 DEBUG [11984]: Connecting to database... -- 07:13:02.137 DEBUG [11984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:02.137 SQL [11984]: pgsql_db_connect() -- 07:13:02.137 INFO [11971]: Version from config: 1.0 -- 07:13:02.137 DEBUG [11971]: Connecting to database... -- 07:13:02.137 DEBUG [11971]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:02.137 SQL [11971]: pgsql_db_connect() -- 07:13:02.141 DEBUG [11984]: Database connection successful -- 07:13:02.141 INFO [11984]: _SERVER found -- 07:13:02.141 INFO [11984]: REMOTE_ADDR = 192.168.1.13 -- 07:13:02.141 INFO [11984]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:02.141 INFO [11984]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:02.141 INFO [11984]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:13:02.141 INFO [11984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:02.152 INFO [11984]: COREGRADE is stopping... -- 07:13:02.141 DEBUG [11971]: Database connection successful -- 07:13:02.141 INFO [11971]: _SERVER found -- 07:13:02.141 INFO [11971]: REMOTE_ADDR = 192.168.1.13 -- 07:13:02.141 INFO [11971]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:02.141 INFO [11971]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:02.141 INFO [11971]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:13:02.141 INFO [11971]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:02.152 INFO [11971]: COREGRADE is stopping... -- 07:13:02.152 DEBUG [11984]: Closing database connection -- 07:13:02.152 DEBUG [11971]: Closing database connection -- 07:13:02.152 SQL [11984]: pgsql_close() -- 07:13:02.152 SQL [11971]: pgsql_close() -- 07:13:02.141 DEBUG [11970]: Database connection successful -- 07:13:02.141 INFO [11970]: _SERVER found -- 07:13:02.141 INFO [11970]: REMOTE_ADDR = 192.168.1.13 -- 07:13:02.141 INFO [11970]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:02.141 INFO [11970]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:02.141 INFO [11970]: QUERY_STRING = -- 07:13:02.141 INFO [11970]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:02.173 INFO [11970]: COREGRADE is stopping... -- 07:13:02.173 DEBUG [11970]: Closing database connection -- 07:13:02.173 SQL [11970]: pgsql_close() -- 07:13:02.208 INFO [11970]: COREGRADE is starting... -- 07:13:02.208 INFO [11984]: COREGRADE is starting... -- 07:13:02.208 INFO [11984]: Version from config: 1.0 -- 07:13:02.208 DEBUG [11984]: Connecting to database... -- 07:13:02.208 INFO [11970]: Version from config: 1.0 -- 07:13:02.208 DEBUG [11970]: Connecting to database... -- 07:13:02.208 DEBUG [11984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:02.208 DEBUG [11970]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:02.208 SQL [11984]: pgsql_db_connect() -- 07:13:02.208 SQL [11970]: pgsql_db_connect() -- 07:13:02.212 DEBUG [11970]: Database connection successful -- 07:13:02.212 INFO [11970]: _SERVER found -- 07:13:02.212 INFO [11970]: REMOTE_ADDR = 192.168.1.13 -- 07:13:02.212 INFO [11970]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:02.212 INFO [11970]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:02.212 INFO [11970]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:13:02.212 INFO [11970]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:02.223 INFO [11970]: COREGRADE is stopping... -- 07:13:02.212 DEBUG [11984]: Database connection successful -- 07:13:02.212 INFO [11984]: _SERVER found -- 07:13:02.212 INFO [11984]: REMOTE_ADDR = 192.168.1.13 -- 07:13:02.212 INFO [11984]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:02.212 INFO [11984]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:02.212 INFO [11984]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:13:02.212 INFO [11984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:02.223 INFO [11984]: COREGRADE is stopping... -- 07:13:02.223 DEBUG [11970]: Closing database connection -- 07:13:02.223 DEBUG [11984]: Closing database connection -- 07:13:02.223 SQL [11970]: pgsql_close() -- 07:13:02.223 SQL [11984]: pgsql_close() -- 07:13:02.553 INFO [11984]: COREGRADE is starting... -- 07:13:02.553 INFO [11984]: Version from config: 1.0 -- 07:13:02.553 DEBUG [11984]: Connecting to database... -- 07:13:02.553 DEBUG [11984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:02.553 SQL [11984]: pgsql_db_connect() -- 07:13:02.553 INFO [11971]: COREGRADE is starting... -- 07:13:02.553 INFO [11971]: Version from config: 1.0 -- 07:13:02.553 DEBUG [11971]: Connecting to database... -- 07:13:02.553 DEBUG [11971]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:02.553 SQL [11971]: pgsql_db_connect() -- 07:13:02.554 INFO [11970]: COREGRADE is starting... -- 07:13:02.554 INFO [11970]: Version from config: 1.0 -- 07:13:02.554 DEBUG [11970]: Connecting to database... -- 07:13:02.554 DEBUG [11970]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:02.554 SQL [11970]: pgsql_db_connect() -- 07:13:02.557 DEBUG [11971]: Database connection successful -- 07:13:02.557 INFO [11971]: _SERVER found -- 07:13:02.557 INFO [11971]: REMOTE_ADDR = 192.168.1.13 -- 07:13:02.557 INFO [11971]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:02.557 INFO [11971]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:02.557 INFO [11971]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:13:02.557 INFO [11971]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:02.568 INFO [11971]: COREGRADE is stopping... -- 07:13:02.569 DEBUG [11971]: Closing database connection -- 07:13:02.569 SQL [11971]: pgsql_close() -- 07:13:02.558 DEBUG [11970]: Database connection successful -- 07:13:02.558 INFO [11970]: _SERVER found -- 07:13:02.558 INFO [11970]: REMOTE_ADDR = 192.168.1.13 -- 07:13:02.558 INFO [11970]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:02.558 INFO [11970]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:02.558 INFO [11970]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:13:02.558 INFO [11970]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:02.569 INFO [11970]: COREGRADE is stopping... -- 07:13:02.569 DEBUG [11970]: Closing database connection -- 07:13:02.569 SQL [11970]: pgsql_close() -- 07:13:02.557 DEBUG [11984]: Database connection successful -- 07:13:02.557 INFO [11984]: _SERVER found -- 07:13:02.557 INFO [11984]: REMOTE_ADDR = 192.168.1.13 -- 07:13:02.557 INFO [11984]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:02.557 INFO [11984]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:02.557 INFO [11984]: QUERY_STRING = -- 07:13:02.557 INFO [11984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:02.588 INFO [11984]: COREGRADE is stopping... -- 07:13:02.588 DEBUG [11984]: Closing database connection -- 07:13:02.588 SQL [11984]: pgsql_close() -- 07:13:02.626 INFO [11970]: COREGRADE is starting... -- 07:13:02.626 INFO [11984]: COREGRADE is starting... -- 07:13:02.627 INFO [11984]: Version from config: 1.0 -- 07:13:02.627 DEBUG [11984]: Connecting to database... -- 07:13:02.627 INFO [11970]: Version from config: 1.0 -- 07:13:02.627 DEBUG [11970]: Connecting to database... -- 07:13:02.627 DEBUG [11984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:02.627 DEBUG [11970]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:02.627 SQL [11984]: pgsql_db_connect() -- 07:13:02.627 SQL [11970]: pgsql_db_connect() -- 07:13:02.631 DEBUG [11984]: Database connection successful -- 07:13:02.631 INFO [11984]: _SERVER found -- 07:13:02.631 INFO [11984]: REMOTE_ADDR = 192.168.1.13 -- 07:13:02.631 INFO [11984]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:02.631 INFO [11984]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:02.631 INFO [11984]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:13:02.631 INFO [11984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:02.642 INFO [11984]: COREGRADE is stopping... -- 07:13:02.631 DEBUG [11970]: Database connection successful -- 07:13:02.631 INFO [11970]: _SERVER found -- 07:13:02.631 INFO [11970]: REMOTE_ADDR = 192.168.1.13 -- 07:13:02.631 INFO [11970]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:02.631 INFO [11970]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:02.631 INFO [11970]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:13:02.631 INFO [11970]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:02.642 INFO [11970]: COREGRADE is stopping... -- 07:13:02.642 DEBUG [11984]: Closing database connection -- 07:13:02.642 DEBUG [11970]: Closing database connection -- 07:13:02.642 SQL [11984]: pgsql_close() -- 07:13:02.642 SQL [11970]: pgsql_close() -- 07:13:02.969 INFO [11970]: COREGRADE is starting... -- 07:13:02.969 INFO [11984]: COREGRADE is starting... -- 07:13:02.969 INFO [11984]: Version from config: 1.0 -- 07:13:02.969 DEBUG [11984]: Connecting to database... -- 07:13:02.969 INFO [11970]: Version from config: 1.0 -- 07:13:02.969 DEBUG [11970]: Connecting to database... -- 07:13:02.969 DEBUG [11984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:02.969 DEBUG [11970]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:02.969 SQL [11984]: pgsql_db_connect() -- 07:13:02.969 SQL [11970]: pgsql_db_connect() -- 07:13:02.969 INFO [11971]: COREGRADE is starting... -- 07:13:02.969 INFO [11971]: Version from config: 1.0 -- 07:13:02.969 DEBUG [11971]: Connecting to database... -- 07:13:02.969 DEBUG [11971]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:02.969 SQL [11971]: pgsql_db_connect() -- 07:13:02.973 DEBUG [11971]: Database connection successful -- 07:13:02.973 INFO [11971]: _SERVER found -- 07:13:02.973 INFO [11971]: REMOTE_ADDR = 192.168.1.13 -- 07:13:02.973 INFO [11971]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:02.973 INFO [11971]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:02.973 INFO [11971]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:13:02.973 INFO [11971]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:02.984 INFO [11971]: COREGRADE is stopping... -- 07:13:02.984 DEBUG [11971]: Closing database connection -- 07:13:02.984 SQL [11971]: pgsql_close() -- 07:13:02.973 DEBUG [11970]: Database connection successful -- 07:13:02.973 INFO [11970]: _SERVER found -- 07:13:02.973 INFO [11970]: REMOTE_ADDR = 192.168.1.13 -- 07:13:02.973 INFO [11970]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:02.973 INFO [11970]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:02.973 INFO [11970]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:13:02.973 INFO [11970]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:02.985 INFO [11970]: COREGRADE is stopping... -- 07:13:02.985 DEBUG [11970]: Closing database connection -- 07:13:02.985 SQL [11970]: pgsql_close() -- 07:13:02.973 DEBUG [11984]: Database connection successful -- 07:13:02.973 INFO [11984]: _SERVER found -- 07:13:02.973 INFO [11984]: REMOTE_ADDR = 192.168.1.13 -- 07:13:02.973 INFO [11984]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:02.973 INFO [11984]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:02.973 INFO [11984]: QUERY_STRING = -- 07:13:02.973 INFO [11984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:03.005 INFO [11984]: COREGRADE is stopping... -- 07:13:03.005 DEBUG [11984]: Closing database connection -- 07:13:03.005 SQL [11984]: pgsql_close() -- 07:13:03.039 INFO [11984]: COREGRADE is starting... -- 07:13:03.039 INFO [11984]: Version from config: 1.0 -- 07:13:03.039 DEBUG [11984]: Connecting to database... -- 07:13:03.039 INFO [11970]: COREGRADE is starting... -- 07:13:03.039 DEBUG [11984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:03.039 SQL [11984]: pgsql_db_connect() -- 07:13:03.039 INFO [11970]: Version from config: 1.0 -- 07:13:03.039 DEBUG [11970]: Connecting to database... -- 07:13:03.039 DEBUG [11970]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:03.039 SQL [11970]: pgsql_db_connect() -- 07:13:03.043 DEBUG [11984]: Database connection successful -- 07:13:03.043 INFO [11984]: _SERVER found -- 07:13:03.043 INFO [11984]: REMOTE_ADDR = 192.168.1.13 -- 07:13:03.043 INFO [11984]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:03.043 INFO [11984]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:03.043 INFO [11984]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:13:03.043 INFO [11984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:03.054 INFO [11984]: COREGRADE is stopping... -- 07:13:03.043 DEBUG [11970]: Database connection successful -- 07:13:03.043 INFO [11970]: _SERVER found -- 07:13:03.043 INFO [11970]: REMOTE_ADDR = 192.168.1.13 -- 07:13:03.043 INFO [11970]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:03.043 INFO [11970]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:03.043 INFO [11970]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:13:03.043 INFO [11970]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:03.054 INFO [11970]: COREGRADE is stopping... -- 07:13:03.054 DEBUG [11984]: Closing database connection -- 07:13:03.054 DEBUG [11970]: Closing database connection -- 07:13:03.054 SQL [11984]: pgsql_close() -- 07:13:03.054 SQL [11970]: pgsql_close() -- 07:13:22.738 INFO [11974]: COREGRADE is starting... -- 07:13:22.738 INFO [11974]: Version from config: 1.0 -- 07:13:22.738 DEBUG [11974]: Connecting to database... -- 07:13:22.738 DEBUG [11974]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:22.738 SQL [11974]: pgsql_db_connect() -- 07:13:22.743 DEBUG [11974]: Database connection successful -- 07:13:22.743 INFO [11974]: _SERVER found -- 07:13:22.743 INFO [11974]: REMOTE_ADDR = 192.168.1.13 -- 07:13:22.743 INFO [11974]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:22.743 INFO [11974]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:22.743 INFO [11974]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:13:22.743 INFO [11974]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:22.756 INFO [11974]: COREGRADE is stopping... -- 07:13:22.756 DEBUG [11974]: Closing database connection -- 07:13:22.756 SQL [11974]: pgsql_close() -- 07:13:22.757 INFO [12335]: COREGRADE is starting... -- 07:13:22.757 INFO [12335]: Version from config: 1.0 -- 07:13:22.757 DEBUG [12335]: Connecting to database... -- 07:13:22.757 DEBUG [12335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:22.757 SQL [12335]: pgsql_db_connect() -- 07:13:22.787 INFO [11974]: COREGRADE is starting... -- 07:13:22.787 INFO [11974]: Version from config: 1.0 -- 07:13:22.787 DEBUG [11974]: Connecting to database... -- 07:13:22.787 DEBUG [11974]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:22.787 SQL [11974]: pgsql_db_connect() -- 07:13:22.792 DEBUG [11974]: Database connection successful -- 07:13:22.792 INFO [11974]: _SERVER found -- 07:13:22.792 INFO [11974]: REMOTE_ADDR = 192.168.1.13 -- 07:13:22.792 INFO [11974]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:22.792 INFO [11974]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:22.792 INFO [11974]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:13:22.792 INFO [11974]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:22.804 INFO [11974]: COREGRADE is stopping... -- 07:13:22.804 DEBUG [11974]: Closing database connection -- 07:13:22.804 SQL [11974]: pgsql_close() -- 07:13:22.761 DEBUG [12335]: Database connection successful -- 07:13:22.761 INFO [12335]: _SERVER found -- 07:13:22.761 INFO [12335]: REMOTE_ADDR = 192.168.1.13 -- 07:13:22.761 INFO [12335]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:22.761 INFO [12335]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:22.761 INFO [12335]: QUERY_STRING = -- 07:13:22.761 INFO [12335]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:22.804 INFO [12335]: COREGRADE is stopping... -- 07:13:22.804 DEBUG [12335]: Closing database connection -- 07:13:22.804 SQL [12335]: pgsql_close() -- 07:13:28.395 INFO [11972]: COREGRADE is starting... -- 07:13:28.395 INFO [11972]: Version from config: 1.0 -- 07:13:28.395 DEBUG [11972]: Connecting to database... -- 07:13:28.395 DEBUG [11972]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:28.395 SQL [11972]: pgsql_db_connect() -- 07:13:28.399 DEBUG [11972]: Database connection successful -- 07:13:28.399 INFO [11972]: _SERVER found -- 07:13:28.399 INFO [11972]: REMOTE_ADDR = 192.168.1.13 -- 07:13:28.399 INFO [11972]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:28.399 INFO [11972]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:28.399 INFO [11972]: QUERY_STRING = /home/howitworks -- 07:13:28.399 INFO [11972]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:28.431 INFO [11972]: COREGRADE is stopping... -- 07:13:28.431 DEBUG [11972]: Closing database connection -- 07:13:28.431 SQL [11972]: pgsql_close() -- 07:13:28.644 INFO [11982]: COREGRADE is starting... -- 07:13:28.644 INFO [11982]: Version from config: 1.0 -- 07:13:28.644 DEBUG [11982]: Connecting to database... -- 07:13:28.644 DEBUG [11982]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:28.644 SQL [11982]: pgsql_db_connect() -- 07:13:28.648 DEBUG [11982]: Database connection successful -- 07:13:28.648 INFO [11982]: _SERVER found -- 07:13:28.648 INFO [11982]: REMOTE_ADDR = 192.168.1.13 -- 07:13:28.648 INFO [11982]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:28.648 INFO [11982]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:28.648 INFO [11982]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 07:13:28.648 INFO [11982]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:28.660 INFO [11982]: COREGRADE is stopping... -- 07:13:28.660 DEBUG [11982]: Closing database connection -- 07:13:28.660 SQL [11982]: pgsql_close() -- 07:13:28.693 INFO [11982]: COREGRADE is starting... -- 07:13:28.694 INFO [11982]: Version from config: 1.0 -- 07:13:28.694 DEBUG [11982]: Connecting to database... -- 07:13:28.694 DEBUG [11982]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:28.694 SQL [11982]: pgsql_db_connect() -- 07:13:28.698 DEBUG [11982]: Database connection successful -- 07:13:28.698 INFO [11982]: _SERVER found -- 07:13:28.698 INFO [11982]: REMOTE_ADDR = 192.168.1.13 -- 07:13:28.698 INFO [11982]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:28.698 INFO [11982]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:28.698 INFO [11982]: QUERY_STRING = /app-assets/data/locales/en.json -- 07:13:28.698 INFO [11982]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:28.709 INFO [11982]: COREGRADE is stopping... -- 07:13:28.709 DEBUG [11982]: Closing database connection -- 07:13:28.709 SQL [11982]: pgsql_close() -- 07:13:35.392 INFO [11971]: COREGRADE is starting... -- 07:13:35.393 INFO [11971]: Version from config: 1.0 -- 07:13:35.393 DEBUG [11971]: Connecting to database... -- 07:13:35.393 DEBUG [11971]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:35.393 SQL [11971]: pgsql_db_connect() -- 07:13:35.397 DEBUG [11971]: Database connection successful -- 07:13:35.397 INFO [11971]: _SERVER found -- 07:13:35.397 INFO [11971]: REMOTE_ADDR = 192.168.1.13 -- 07:13:35.397 INFO [11971]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:35.397 INFO [11971]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:35.397 INFO [11971]: QUERY_STRING = -- 07:13:35.397 INFO [11971]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:35.429 INFO [11971]: COREGRADE is stopping... -- 07:13:35.429 DEBUG [11971]: Closing database connection -- 07:13:35.429 SQL [11971]: pgsql_close() -- 07:13:39.400 INFO [11971]: COREGRADE is starting... -- 07:13:39.400 INFO [11971]: Version from config: 1.0 -- 07:13:39.400 DEBUG [11971]: Connecting to database... -- 07:13:39.400 DEBUG [11971]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:39.400 SQL [11971]: pgsql_db_connect() -- 07:13:39.404 DEBUG [11971]: Database connection successful -- 07:13:39.404 INFO [11971]: _SERVER found -- 07:13:39.404 INFO [11971]: REMOTE_ADDR = 192.168.1.13 -- 07:13:39.404 INFO [11971]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:39.404 INFO [11971]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:39.404 INFO [11971]: QUERY_STRING = /home/faq -- 07:13:39.404 INFO [11971]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:39.435 INFO [11971]: COREGRADE is stopping... -- 07:13:39.435 DEBUG [11971]: Closing database connection -- 07:13:39.435 SQL [11971]: pgsql_close() -- 07:13:39.485 INFO [11971]: COREGRADE is starting... -- 07:13:39.486 INFO [11971]: Version from config: 1.0 -- 07:13:39.486 DEBUG [11971]: Connecting to database... -- 07:13:39.486 DEBUG [11971]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:39.486 SQL [11971]: pgsql_db_connect() -- 07:13:39.490 DEBUG [11971]: Database connection successful -- 07:13:39.490 INFO [11971]: _SERVER found -- 07:13:39.490 INFO [11971]: REMOTE_ADDR = 192.168.1.13 -- 07:13:39.490 INFO [11971]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:39.490 INFO [11971]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:39.490 INFO [11971]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 07:13:39.490 INFO [11971]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:39.501 INFO [11971]: COREGRADE is stopping... -- 07:13:39.501 DEBUG [11971]: Closing database connection -- 07:13:39.501 SQL [11971]: pgsql_close() -- 07:13:39.508 INFO [11971]: COREGRADE is starting... -- 07:13:39.509 INFO [11971]: Version from config: 1.0 -- 07:13:39.509 DEBUG [11971]: Connecting to database... -- 07:13:39.509 DEBUG [11971]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:39.509 SQL [11971]: pgsql_db_connect() -- 07:13:39.512 DEBUG [11971]: Database connection successful -- 07:13:39.512 INFO [11971]: _SERVER found -- 07:13:39.512 INFO [11971]: REMOTE_ADDR = 192.168.1.13 -- 07:13:39.512 INFO [11971]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:39.512 INFO [11971]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.1245814096.1581382701; _gat_gtag_UA_54829827_2=1; ci_session=33nlgicahjt97asrnnmdp6c0eektu04u -- 07:13:39.512 INFO [11971]: QUERY_STRING = /app-assets/data/locales/en.json -- 07:13:39.512 INFO [11971]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:13:39.523 INFO [11971]: COREGRADE is stopping... -- 07:13:39.523 DEBUG [11971]: Closing database connection -- 07:13:39.523 SQL [11971]: pgsql_close() -- 07:43:46.741 INFO [11970]: COREGRADE is starting... -- 07:43:46.741 INFO [11970]: Version from config: 1.0 -- 07:43:46.741 DEBUG [11970]: Connecting to database... -- 07:43:46.741 DEBUG [11970]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:43:46.741 SQL [11970]: pgsql_db_connect() -- 07:43:46.745 DEBUG [11970]: Database connection successful -- 07:43:46.745 INFO [11970]: _SERVER found -- 07:43:46.745 INFO [11970]: REMOTE_ADDR = 192.168.1.13 -- 07:43:46.745 INFO [11970]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:43:46.746 INFO [11970]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692 -- 07:43:46.746 INFO [11970]: QUERY_STRING = -- 07:43:46.746 INFO [11970]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:43:46.783 INFO [11970]: COREGRADE is stopping... -- 07:43:46.783 DEBUG [11970]: Closing database connection -- 07:43:46.783 SQL [11970]: pgsql_close() -- 07:43:51.104 INFO [11970]: COREGRADE is starting... -- 07:43:51.104 INFO [11970]: Version from config: 1.0 -- 07:43:51.104 DEBUG [11970]: Connecting to database... -- 07:43:51.104 DEBUG [11970]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:43:51.104 SQL [11970]: pgsql_db_connect() -- 07:43:51.109 DEBUG [11970]: Database connection successful -- 07:43:51.109 INFO [11970]: _SERVER found -- 07:43:51.109 INFO [11970]: REMOTE_ADDR = 192.168.1.13 -- 07:43:51.109 INFO [11970]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:43:51.109 INFO [11970]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=uuok0tifbvoihqo4elh84q5tqli3tmad; _gat_gtag_UA_54829827_2=1 -- 07:43:51.109 INFO [11970]: QUERY_STRING = -- 07:43:51.109 INFO [11970]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:43:51.140 INFO [11970]: COREGRADE is stopping... -- 07:43:51.140 DEBUG [11970]: Closing database connection -- 07:43:51.140 SQL [11970]: pgsql_close() -- 07:43:51.283 INFO [11970]: COREGRADE is starting... -- 07:43:51.283 INFO [11970]: Version from config: 1.0 -- 07:43:51.283 DEBUG [11970]: Connecting to database... -- 07:43:51.283 DEBUG [11970]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:43:51.283 SQL [11970]: pgsql_db_connect() -- 07:43:51.291 INFO [11984]: COREGRADE is starting... -- 07:43:51.291 INFO [11984]: Version from config: 1.0 -- 07:43:51.291 DEBUG [11984]: Connecting to database... -- 07:43:51.291 DEBUG [11984]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:43:51.291 SQL [11984]: pgsql_db_connect() -- 07:43:51.287 DEBUG [11970]: Database connection successful -- 07:43:51.287 INFO [11970]: _SERVER found -- 07:43:51.287 INFO [11970]: REMOTE_ADDR = 192.168.1.13 -- 07:43:51.287 INFO [11970]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:43:51.287 INFO [11970]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=uuok0tifbvoihqo4elh84q5tqli3tmad; _gat_gtag_UA_54829827_2=1 -- 07:43:51.287 INFO [11970]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:43:51.287 INFO [11970]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:43:51.299 INFO [11970]: COREGRADE is stopping... -- 07:43:51.299 DEBUG [11970]: Closing database connection -- 07:43:51.299 SQL [11970]: pgsql_close() -- 07:43:51.295 DEBUG [11984]: Database connection successful -- 07:43:51.296 INFO [11984]: _SERVER found -- 07:43:51.296 INFO [11984]: REMOTE_ADDR = 192.168.1.13 -- 07:43:51.296 INFO [11984]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:43:51.296 INFO [11984]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=uuok0tifbvoihqo4elh84q5tqli3tmad; _gat_gtag_UA_54829827_2=1 -- 07:43:51.296 INFO [11984]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:43:51.296 INFO [11984]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:43:51.308 INFO [11984]: COREGRADE is stopping... -- 07:43:51.308 DEBUG [11984]: Closing database connection -- 07:43:51.308 SQL [11984]: pgsql_close() -- 07:52:52.106 INFO [11982]: COREGRADE is starting... -- 07:52:52.107 INFO [11982]: Version from config: 1.0 -- 07:52:52.107 DEBUG [11982]: Connecting to database... -- 07:52:52.107 DEBUG [11982]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:52:52.107 SQL [11982]: pgsql_db_connect() -- 07:52:52.111 DEBUG [11982]: Database connection successful -- 07:52:52.111 INFO [11982]: _SERVER found -- 07:52:52.111 INFO [11982]: REMOTE_ADDR = 192.168.1.13 -- 07:52:52.111 INFO [11982]: SERVER_NAME = works.coregrade.com -- 07:52:52.111 INFO [11982]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=doial2kod74f27fmj2denlc1709gkhnb; _gat_gtag_UA_54829827_2=1 -- 07:52:52.111 INFO [11982]: QUERY_STRING = /home/faq -- 07:52:52.111 INFO [11982]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:52:52.145 INFO [11982]: COREGRADE is stopping... -- 07:52:52.145 DEBUG [11982]: Closing database connection -- 07:52:52.145 SQL [11982]: pgsql_close() -- 07:52:52.410 INFO [11982]: COREGRADE is starting... -- 07:52:52.410 INFO [11982]: Version from config: 1.0 -- 07:52:52.410 DEBUG [11982]: Connecting to database... -- 07:52:52.410 DEBUG [11982]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:52:52.411 SQL [11982]: pgsql_db_connect() -- 07:52:52.414 DEBUG [11982]: Database connection successful -- 07:52:52.414 INFO [11982]: _SERVER found -- 07:52:52.414 INFO [11982]: REMOTE_ADDR = 192.168.1.13 -- 07:52:52.414 INFO [11982]: SERVER_NAME = works.coregrade.com -- 07:52:52.414 INFO [11982]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=doial2kod74f27fmj2denlc1709gkhnb; _gat_gtag_UA_54829827_2=1 -- 07:52:52.414 INFO [11982]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 07:52:52.414 INFO [11982]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:52:52.426 INFO [11982]: COREGRADE is stopping... -- 07:52:52.426 DEBUG [11982]: Closing database connection -- 07:52:52.426 SQL [11982]: pgsql_close() -- 07:52:52.431 INFO [11982]: COREGRADE is starting... -- 07:52:52.431 INFO [11982]: Version from config: 1.0 -- 07:52:52.431 DEBUG [11982]: Connecting to database... -- 07:52:52.431 DEBUG [11982]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:52:52.431 SQL [11982]: pgsql_db_connect() -- 07:52:52.435 DEBUG [11982]: Database connection successful -- 07:52:52.435 INFO [11982]: _SERVER found -- 07:52:52.435 INFO [11982]: REMOTE_ADDR = 192.168.1.13 -- 07:52:52.435 INFO [11982]: SERVER_NAME = works.coregrade.com -- 07:52:52.435 INFO [11982]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=doial2kod74f27fmj2denlc1709gkhnb; _gat_gtag_UA_54829827_2=1 -- 07:52:52.435 INFO [11982]: QUERY_STRING = /app-assets/data/locales/en.json -- 07:52:52.435 INFO [11982]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:52:52.447 INFO [11982]: COREGRADE is stopping... -- 07:52:52.447 DEBUG [11982]: Closing database connection -- 07:52:52.447 SQL [11982]: pgsql_close() -- 07:55:45.594 INFO [23101]: COREGRADE is starting... -- 07:55:45.595 INFO [23101]: Version from config: 1.0 -- 07:55:45.595 DEBUG [23101]: Connecting to database... -- 07:55:45.595 DEBUG [23101]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:55:45.595 SQL [23101]: pgsql_db_connect() -- 07:55:45.599 DEBUG [23101]: Database connection successful -- 07:55:45.599 INFO [23101]: _SERVER found -- 07:55:45.599 INFO [23101]: REMOTE_ADDR = 192.168.1.13 -- 07:55:45.599 INFO [23101]: SERVER_NAME = oameye.works.coregrade.com -- 07:55:45.599 INFO [23101]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=2fiav90l79prg2gt03qrgcsmrcbq97g0 -- 07:55:45.599 INFO [23101]: QUERY_STRING = -- 07:55:45.599 INFO [23101]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:55:45.643 INFO [23101]: COREGRADE is stopping... -- 07:55:45.643 DEBUG [23101]: Closing database connection -- 07:55:45.643 SQL [23101]: pgsql_close() -- 07:55:45.915 INFO [23101]: COREGRADE is starting... -- 07:55:45.915 INFO [23101]: Version from config: 1.0 -- 07:55:45.915 DEBUG [23101]: Connecting to database... -- 07:55:45.915 DEBUG [23101]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:55:45.915 SQL [23101]: pgsql_db_connect() -- 07:55:45.925 INFO [23102]: COREGRADE is starting... -- 07:55:45.925 INFO [23102]: Version from config: 1.0 -- 07:55:45.925 DEBUG [23102]: Connecting to database... -- 07:55:45.925 DEBUG [23102]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:55:45.925 SQL [23102]: pgsql_db_connect() -- 07:55:45.919 DEBUG [23101]: Database connection successful -- 07:55:45.919 INFO [23101]: _SERVER found -- 07:55:45.919 INFO [23101]: REMOTE_ADDR = 192.168.1.13 -- 07:55:45.919 INFO [23101]: SERVER_NAME = oameye.works.coregrade.com -- 07:55:45.919 INFO [23101]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=33es7l6i9u78p3bdb2nvi9283knked6b -- 07:55:45.919 INFO [23101]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:55:45.919 INFO [23101]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:55:45.931 INFO [23101]: COREGRADE is stopping... -- 07:55:45.931 DEBUG [23101]: Closing database connection -- 07:55:45.931 SQL [23101]: pgsql_close() -- 07:55:45.929 DEBUG [23102]: Database connection successful -- 07:55:45.929 INFO [23102]: _SERVER found -- 07:55:45.929 INFO [23102]: REMOTE_ADDR = 192.168.1.13 -- 07:55:45.929 INFO [23102]: SERVER_NAME = oameye.works.coregrade.com -- 07:55:45.929 INFO [23102]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=33es7l6i9u78p3bdb2nvi9283knked6b -- 07:55:45.929 INFO [23102]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:55:45.929 INFO [23102]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:55:45.944 INFO [23102]: COREGRADE is stopping... -- 07:55:45.944 DEBUG [23102]: Closing database connection -- 07:55:45.944 SQL [23102]: pgsql_close() -- 07:55:51.758 INFO [23105]: COREGRADE is starting... -- 07:55:51.758 INFO [23105]: Version from config: 1.0 -- 07:55:51.758 DEBUG [23105]: Connecting to database... -- 07:55:51.758 DEBUG [23105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:55:51.758 SQL [23105]: pgsql_db_connect() -- 07:55:51.763 DEBUG [23105]: Database connection successful -- 07:55:51.763 INFO [23105]: _SERVER found -- 07:55:51.763 INFO [23105]: REMOTE_ADDR = 192.168.1.13 -- 07:55:51.763 INFO [23105]: SERVER_NAME = oameye.works.coregrade.com -- 07:55:51.763 INFO [23105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=33es7l6i9u78p3bdb2nvi9283knked6b; _gat_gtag_UA_54829827_2=1 -- 07:55:51.763 INFO [23105]: QUERY_STRING = /home/faq -- 07:55:51.763 INFO [23105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:55:51.802 INFO [23105]: COREGRADE is stopping... -- 07:55:51.802 DEBUG [23105]: Closing database connection -- 07:55:51.802 SQL [23105]: pgsql_close() -- 07:55:52.196 INFO [23105]: COREGRADE is starting... -- 07:55:52.196 INFO [23105]: Version from config: 1.0 -- 07:55:52.196 DEBUG [23105]: Connecting to database... -- 07:55:52.196 DEBUG [23105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:55:52.196 SQL [23105]: pgsql_db_connect() -- 07:55:52.200 DEBUG [23105]: Database connection successful -- 07:55:52.200 INFO [23105]: _SERVER found -- 07:55:52.200 INFO [23105]: REMOTE_ADDR = 192.168.1.13 -- 07:55:52.200 INFO [23105]: SERVER_NAME = oameye.works.coregrade.com -- 07:55:52.200 INFO [23105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=33es7l6i9u78p3bdb2nvi9283knked6b; _gat_gtag_UA_54829827_2=1 -- 07:55:52.200 INFO [23105]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 07:55:52.200 INFO [23105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:55:52.212 INFO [23105]: COREGRADE is stopping... -- 07:55:52.212 DEBUG [23105]: Closing database connection -- 07:55:52.212 SQL [23105]: pgsql_close() -- 07:55:52.284 INFO [23105]: COREGRADE is starting... -- 07:55:52.284 INFO [23105]: Version from config: 1.0 -- 07:55:52.284 DEBUG [23105]: Connecting to database... -- 07:55:52.284 DEBUG [23105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:55:52.284 SQL [23105]: pgsql_db_connect() -- 07:55:52.288 DEBUG [23105]: Database connection successful -- 07:55:52.288 INFO [23105]: _SERVER found -- 07:55:52.288 INFO [23105]: REMOTE_ADDR = 192.168.1.13 -- 07:55:52.288 INFO [23105]: SERVER_NAME = oameye.works.coregrade.com -- 07:55:52.288 INFO [23105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=33es7l6i9u78p3bdb2nvi9283knked6b; _gat_gtag_UA_54829827_2=1 -- 07:55:52.288 INFO [23105]: QUERY_STRING = /app-assets/data/locales/en.json -- 07:55:52.288 INFO [23105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:55:52.301 INFO [23105]: COREGRADE is stopping... -- 07:55:52.301 DEBUG [23105]: Closing database connection -- 07:55:52.301 SQL [23105]: pgsql_close() -- 07:56:53.336 INFO [23104]: COREGRADE is starting... -- 07:56:53.336 INFO [23104]: Version from config: 1.0 -- 07:56:53.336 DEBUG [23104]: Connecting to database... -- 07:56:53.336 DEBUG [23104]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:56:53.336 SQL [23104]: pgsql_db_connect() -- 07:56:53.341 DEBUG [23104]: Database connection successful -- 07:56:53.341 INFO [23104]: _SERVER found -- 07:56:53.341 INFO [23104]: REMOTE_ADDR = 192.168.1.13 -- 07:56:53.341 INFO [23104]: SERVER_NAME = oameye.works.coregrade.com -- 07:56:53.341 INFO [23104]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=33es7l6i9u78p3bdb2nvi9283knked6b -- 07:56:53.341 INFO [23104]: QUERY_STRING = /home/faq -- 07:56:53.341 INFO [23104]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:56:53.380 INFO [23104]: COREGRADE is stopping... -- 07:56:53.380 DEBUG [23104]: Closing database connection -- 07:56:53.380 SQL [23104]: pgsql_close() -- 07:56:53.674 INFO [23104]: COREGRADE is starting... -- 07:56:53.675 INFO [23104]: Version from config: 1.0 -- 07:56:53.675 DEBUG [23104]: Connecting to database... -- 07:56:53.675 DEBUG [23104]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:56:53.675 SQL [23104]: pgsql_db_connect() -- 07:56:53.679 DEBUG [23104]: Database connection successful -- 07:56:53.679 INFO [23104]: _SERVER found -- 07:56:53.679 INFO [23104]: REMOTE_ADDR = 192.168.1.13 -- 07:56:53.679 INFO [23104]: SERVER_NAME = oameye.works.coregrade.com -- 07:56:53.679 INFO [23104]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=33es7l6i9u78p3bdb2nvi9283knked6b -- 07:56:53.679 INFO [23104]: QUERY_STRING = /app-assets/data/locales/en.json -- 07:56:53.679 INFO [23104]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:56:53.690 INFO [23104]: COREGRADE is stopping... -- 07:56:53.690 DEBUG [23104]: Closing database connection -- 07:56:53.690 SQL [23104]: pgsql_close() -- 07:57:31.872 INFO [23114]: COREGRADE is starting... -- 07:57:31.872 INFO [23114]: Version from config: 1.0 -- 07:57:31.872 DEBUG [23114]: Connecting to database... -- 07:57:31.872 DEBUG [23114]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:57:31.872 SQL [23114]: pgsql_db_connect() -- 07:57:31.876 DEBUG [23114]: Database connection successful -- 07:57:31.876 INFO [23114]: _SERVER found -- 07:57:31.876 INFO [23114]: REMOTE_ADDR = 192.168.1.13 -- 07:57:31.876 INFO [23114]: SERVER_NAME = oameye.works.coregrade.com -- 07:57:31.876 INFO [23114]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=33es7l6i9u78p3bdb2nvi9283knked6b -- 07:57:31.876 INFO [23114]: QUERY_STRING = /home/faq -- 07:57:31.876 INFO [23114]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:57:31.916 INFO [23114]: COREGRADE is stopping... -- 07:57:31.916 DEBUG [23114]: Closing database connection -- 07:57:31.916 SQL [23114]: pgsql_close() -- 07:57:32.238 INFO [23114]: COREGRADE is starting... -- 07:57:32.238 INFO [23114]: Version from config: 1.0 -- 07:57:32.238 DEBUG [23114]: Connecting to database... -- 07:57:32.238 DEBUG [23114]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:57:32.238 SQL [23114]: pgsql_db_connect() -- 07:57:32.242 DEBUG [23114]: Database connection successful -- 07:57:32.242 INFO [23114]: _SERVER found -- 07:57:32.242 INFO [23114]: REMOTE_ADDR = 192.168.1.13 -- 07:57:32.242 INFO [23114]: SERVER_NAME = oameye.works.coregrade.com -- 07:57:32.242 INFO [23114]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=33es7l6i9u78p3bdb2nvi9283knked6b -- 07:57:32.242 INFO [23114]: QUERY_STRING = /app-assets/data/locales/en.json -- 07:57:32.242 INFO [23114]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:57:32.253 INFO [23114]: COREGRADE is stopping... -- 07:57:32.253 DEBUG [23114]: Closing database connection -- 07:57:32.253 SQL [23114]: pgsql_close() -- 07:57:50.750 INFO [23116]: COREGRADE is starting... -- 07:57:50.751 INFO [23116]: Version from config: 1.0 -- 07:57:50.751 DEBUG [23116]: Connecting to database... -- 07:57:50.751 DEBUG [23116]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:57:50.751 SQL [23116]: pgsql_db_connect() -- 07:57:50.755 DEBUG [23116]: Database connection successful -- 07:57:50.755 INFO [23116]: _SERVER found -- 07:57:50.755 INFO [23116]: REMOTE_ADDR = 192.168.1.13 -- 07:57:50.755 INFO [23116]: SERVER_NAME = oameye.works.coregrade.com -- 07:57:50.755 INFO [23116]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=33es7l6i9u78p3bdb2nvi9283knked6b -- 07:57:50.755 INFO [23116]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 07:57:50.755 INFO [23116]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:57:50.769 INFO [23116]: COREGRADE is stopping... -- 07:57:50.770 DEBUG [23116]: Closing database connection -- 07:57:50.770 SQL [23116]: pgsql_close() -- 07:58:58.992 INFO [23102]: COREGRADE is starting... -- 07:58:58.992 INFO [23102]: Version from config: 1.0 -- 07:58:58.992 DEBUG [23102]: Connecting to database... -- 07:58:58.992 DEBUG [23102]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:58:58.992 SQL [23102]: pgsql_db_connect() -- 07:58:58.996 DEBUG [23102]: Database connection successful -- 07:58:58.996 INFO [23102]: _SERVER found -- 07:58:58.996 INFO [23102]: REMOTE_ADDR = 192.168.1.13 -- 07:58:58.996 INFO [23102]: SERVER_NAME = oameye.works.coregrade.com -- 07:58:58.996 INFO [23102]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=33es7l6i9u78p3bdb2nvi9283knked6b -- 07:58:58.996 INFO [23102]: QUERY_STRING = /home/faq -- 07:58:58.996 INFO [23102]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:58:59.034 INFO [23102]: COREGRADE is stopping... -- 07:58:59.034 DEBUG [23102]: Closing database connection -- 07:58:59.034 SQL [23102]: pgsql_close() -- 07:58:59.101 INFO [23102]: COREGRADE is starting... -- 07:58:59.101 INFO [23102]: Version from config: 1.0 -- 07:58:59.101 DEBUG [23102]: Connecting to database... -- 07:58:59.101 DEBUG [23102]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:58:59.101 SQL [23102]: pgsql_db_connect() -- 07:58:59.105 DEBUG [23102]: Database connection successful -- 07:58:59.105 INFO [23102]: _SERVER found -- 07:58:59.105 INFO [23102]: REMOTE_ADDR = 192.168.1.13 -- 07:58:59.105 INFO [23102]: SERVER_NAME = oameye.works.coregrade.com -- 07:58:59.105 INFO [23102]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=33es7l6i9u78p3bdb2nvi9283knked6b -- 07:58:59.105 INFO [23102]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 07:58:59.105 INFO [23102]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:58:59.116 INFO [23102]: COREGRADE is stopping... -- 07:58:59.116 DEBUG [23102]: Closing database connection -- 07:58:59.116 SQL [23102]: pgsql_close() -- 07:58:59.195 INFO [23102]: COREGRADE is starting... -- 07:58:59.195 INFO [23102]: Version from config: 1.0 -- 07:58:59.195 DEBUG [23102]: Connecting to database... -- 07:58:59.195 DEBUG [23102]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:58:59.195 SQL [23102]: pgsql_db_connect() -- 07:58:59.199 DEBUG [23102]: Database connection successful -- 07:58:59.199 INFO [23102]: _SERVER found -- 07:58:59.199 INFO [23102]: REMOTE_ADDR = 192.168.1.13 -- 07:58:59.199 INFO [23102]: SERVER_NAME = oameye.works.coregrade.com -- 07:58:59.199 INFO [23102]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=33es7l6i9u78p3bdb2nvi9283knked6b -- 07:58:59.199 INFO [23102]: QUERY_STRING = /app-assets/data/locales/en.json -- 07:58:59.199 INFO [23102]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:58:59.210 INFO [23102]: COREGRADE is stopping... -- 07:58:59.210 DEBUG [23102]: Closing database connection -- 07:58:59.210 SQL [23102]: pgsql_close() -- 07:59:55.933 INFO [23101]: COREGRADE is starting... -- 07:59:55.933 INFO [23101]: Version from config: 1.0 -- 07:59:55.933 DEBUG [23101]: Connecting to database... -- 07:59:55.933 DEBUG [23101]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:59:55.933 SQL [23101]: pgsql_db_connect() -- 07:59:55.937 DEBUG [23101]: Database connection successful -- 07:59:55.937 INFO [23101]: _SERVER found -- 07:59:55.937 INFO [23101]: REMOTE_ADDR = 192.168.1.13 -- 07:59:55.937 INFO [23101]: SERVER_NAME = oameye.works.coregrade.com -- 07:59:55.937 INFO [23101]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=33es7l6i9u78p3bdb2nvi9283knked6b -- 07:59:55.937 INFO [23101]: QUERY_STRING = -- 07:59:55.937 INFO [23101]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:59:55.971 INFO [23101]: COREGRADE is stopping... -- 07:59:55.971 DEBUG [23101]: Closing database connection -- 07:59:55.971 SQL [23101]: pgsql_close() -- 07:59:56.308 INFO [23101]: COREGRADE is starting... -- 07:59:56.308 INFO [23101]: Version from config: 1.0 -- 07:59:56.308 DEBUG [23101]: Connecting to database... -- 07:59:56.308 DEBUG [23101]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:59:56.308 SQL [23101]: pgsql_db_connect() -- 07:59:56.318 INFO [23105]: COREGRADE is starting... -- 07:59:56.318 INFO [23105]: Version from config: 1.0 -- 07:59:56.318 DEBUG [23105]: Connecting to database... -- 07:59:56.318 DEBUG [23105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:59:56.318 SQL [23105]: pgsql_db_connect() -- 07:59:56.312 DEBUG [23101]: Database connection successful -- 07:59:56.312 INFO [23101]: _SERVER found -- 07:59:56.312 INFO [23101]: REMOTE_ADDR = 192.168.1.13 -- 07:59:56.312 INFO [23101]: SERVER_NAME = oameye.works.coregrade.com -- 07:59:56.312 INFO [23101]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=33es7l6i9u78p3bdb2nvi9283knked6b -- 07:59:56.312 INFO [23101]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:59:56.312 INFO [23101]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:59:56.325 INFO [23101]: COREGRADE is stopping... -- 07:59:56.325 DEBUG [23101]: Closing database connection -- 07:59:56.325 SQL [23101]: pgsql_close() -- 07:59:56.322 DEBUG [23105]: Database connection successful -- 07:59:56.322 INFO [23105]: _SERVER found -- 07:59:56.322 INFO [23105]: REMOTE_ADDR = 192.168.1.13 -- 07:59:56.322 INFO [23105]: SERVER_NAME = oameye.works.coregrade.com -- 07:59:56.322 INFO [23105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=33es7l6i9u78p3bdb2nvi9283knked6b -- 07:59:56.322 INFO [23105]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:59:56.322 INFO [23105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:59:56.335 INFO [23105]: COREGRADE is stopping... -- 07:59:56.335 DEBUG [23105]: Closing database connection -- 07:59:56.335 SQL [23105]: pgsql_close() -- 08:00:00.852 INFO [23105]: COREGRADE is starting... -- 08:00:00.853 INFO [23105]: Version from config: 1.0 -- 08:00:00.853 DEBUG [23105]: Connecting to database... -- 08:00:00.853 DEBUG [23105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:00:00.853 SQL [23105]: pgsql_db_connect() -- 08:00:00.856 INFO [23101]: COREGRADE is starting... -- 08:00:00.856 INFO [23101]: Version from config: 1.0 -- 08:00:00.856 DEBUG [23101]: Connecting to database... -- 08:00:00.856 DEBUG [23101]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:00:00.856 SQL [23101]: pgsql_db_connect() -- 08:00:00.857 DEBUG [23105]: Database connection successful -- 08:00:00.857 INFO [23105]: _SERVER found -- 08:00:00.857 INFO [23105]: REMOTE_ADDR = 192.168.1.13 -- 08:00:00.857 INFO [23105]: SERVER_NAME = oameye.works.coregrade.com -- 08:00:00.857 INFO [23105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=33es7l6i9u78p3bdb2nvi9283knked6b; _gat_gtag_UA_54829827_2=1 -- 08:00:00.857 INFO [23105]: QUERY_STRING = /welcome/viewLogin -- 08:00:00.857 INFO [23105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:00:00.891 INFO [23105]: COREGRADE is stopping... -- 08:00:00.891 DEBUG [23105]: Closing database connection -- 08:00:00.891 SQL [23105]: pgsql_close() -- 08:00:00.860 DEBUG [23101]: Database connection successful -- 08:00:00.860 INFO [23101]: _SERVER found -- 08:00:00.860 INFO [23101]: REMOTE_ADDR = 192.168.1.13 -- 08:00:00.860 INFO [23101]: SERVER_NAME = oameye.works.coregrade.com -- 08:00:00.860 INFO [23101]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=33es7l6i9u78p3bdb2nvi9283knked6b; _gat_gtag_UA_54829827_2=1 -- 08:00:00.860 INFO [23101]: QUERY_STRING = /auth -- 08:00:00.860 INFO [23101]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:00:00.895 INFO [23101]: COREGRADE is stopping... -- 08:00:00.895 DEBUG [23101]: Closing database connection -- 08:00:00.895 SQL [23101]: pgsql_close() -- 08:00:00.913 INFO [23101]: COREGRADE is starting... -- 08:00:00.913 INFO [23101]: Version from config: 1.0 -- 08:00:00.913 DEBUG [23101]: Connecting to database... -- 08:00:00.913 DEBUG [23101]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:00:00.913 SQL [23101]: pgsql_db_connect() -- 08:00:00.917 DEBUG [23101]: Database connection successful -- 08:00:00.917 INFO [23101]: _SERVER found -- 08:00:00.917 INFO [23101]: REMOTE_ADDR = 192.168.1.13 -- 08:00:00.917 INFO [23101]: SERVER_NAME = oameye.works.coregrade.com -- 08:00:00.917 INFO [23101]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=33es7l6i9u78p3bdb2nvi9283knked6b; _gat_gtag_UA_54829827_2=1 -- 08:00:00.917 INFO [23101]: QUERY_STRING = /auth/index -- 08:00:00.917 INFO [23101]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:00:00.952 INFO [23101]: COREGRADE is stopping... -- 08:00:00.952 DEBUG [23101]: Closing database connection -- 08:00:00.952 SQL [23101]: pgsql_close() -- 08:00:01.168 INFO [23101]: COREGRADE is starting... -- 08:00:01.168 INFO [23101]: Version from config: 1.0 -- 08:00:01.168 DEBUG [23101]: Connecting to database... -- 08:00:01.168 DEBUG [23101]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:00:01.168 SQL [23101]: pgsql_db_connect() -- 08:00:01.172 DEBUG [23101]: Database connection successful -- 08:00:01.172 INFO [23101]: _SERVER found -- 08:00:01.172 INFO [23101]: REMOTE_ADDR = 192.168.1.13 -- 08:00:01.172 INFO [23101]: SERVER_NAME = oameye.works.coregrade.com -- 08:00:01.172 INFO [23101]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=33es7l6i9u78p3bdb2nvi9283knked6b; _gat_gtag_UA_54829827_2=1 -- 08:00:01.172 INFO [23101]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:00:01.172 INFO [23101]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:00:01.184 INFO [23101]: COREGRADE is stopping... -- 08:00:01.184 DEBUG [23101]: Closing database connection -- 08:00:01.184 SQL [23101]: pgsql_close() -- 08:06:40.647 INFO [31484]: COREGRADE is starting... -- 08:06:40.647 INFO [31484]: Version from config: 1.0 -- 08:06:40.648 DEBUG [31484]: Connecting to database... -- 08:06:40.648 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:06:40.648 SQL [31484]: pgsql_db_connect() -- 08:06:40.652 DEBUG [31484]: Database connection successful -- 08:06:40.652 INFO [31484]: _SERVER found -- 08:06:40.652 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 08:06:40.652 INFO [31484]: SERVER_NAME = oameye.works.coregrade.com -- 08:06:40.652 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=33es7l6i9u78p3bdb2nvi9283knked6b -- 08:06:40.652 INFO [31484]: QUERY_STRING = -- 08:06:40.652 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:06:40.698 INFO [31484]: COREGRADE is stopping... -- 08:06:40.698 DEBUG [31484]: Closing database connection -- 08:06:40.698 SQL [31484]: pgsql_close() -- 08:06:40.902 INFO [31484]: COREGRADE is starting... -- 08:06:40.903 INFO [31484]: Version from config: 1.0 -- 08:06:40.903 DEBUG [31484]: Connecting to database... -- 08:06:40.903 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:06:40.903 SQL [31484]: pgsql_db_connect() -- 08:06:40.911 INFO [31485]: COREGRADE is starting... -- 08:06:40.912 INFO [31485]: Version from config: 1.0 -- 08:06:40.912 DEBUG [31485]: Connecting to database... -- 08:06:40.912 DEBUG [31485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:06:40.912 SQL [31485]: pgsql_db_connect() -- 08:06:40.907 DEBUG [31484]: Database connection successful -- 08:06:40.907 INFO [31484]: _SERVER found -- 08:06:40.907 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 08:06:40.907 INFO [31484]: SERVER_NAME = oameye.works.coregrade.com -- 08:06:40.907 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=higeqmsouegbhh6cr55jm2ml9b9m30i4 -- 08:06:40.907 INFO [31484]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 08:06:40.907 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:06:40.920 INFO [31484]: COREGRADE is stopping... -- 08:06:40.920 DEBUG [31484]: Closing database connection -- 08:06:40.920 SQL [31484]: pgsql_close() -- 08:06:40.916 DEBUG [31485]: Database connection successful -- 08:06:40.916 INFO [31485]: _SERVER found -- 08:06:40.916 INFO [31485]: REMOTE_ADDR = 192.168.1.13 -- 08:06:40.916 INFO [31485]: SERVER_NAME = oameye.works.coregrade.com -- 08:06:40.916 INFO [31485]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=higeqmsouegbhh6cr55jm2ml9b9m30i4 -- 08:06:40.916 INFO [31485]: QUERY_STRING = /assets/img/footer_1.jpg -- 08:06:40.916 INFO [31485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:06:40.931 INFO [31485]: COREGRADE is stopping... -- 08:06:40.931 DEBUG [31485]: Closing database connection -- 08:06:40.931 SQL [31485]: pgsql_close() -- 08:37:22.900 INFO [31487]: COREGRADE is starting... -- 08:37:22.901 INFO [31487]: Version from config: 1.0 -- 08:37:22.901 DEBUG [31487]: Connecting to database... -- 08:37:22.901 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:22.901 SQL [31487]: pgsql_db_connect() -- 08:37:22.907 DEBUG [31487]: Database connection successful -- 08:37:22.907 INFO [31487]: _SERVER found -- 08:37:22.907 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 08:37:22.907 INFO [31487]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:22.907 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=higeqmsouegbhh6cr55jm2ml9b9m30i4 -- 08:37:22.907 INFO [31487]: QUERY_STRING = -- 08:37:22.907 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:22.957 INFO [31487]: COREGRADE is stopping... -- 08:37:22.957 DEBUG [31487]: Closing database connection -- 08:37:22.957 SQL [31487]: pgsql_close() -- 08:37:23.225 INFO [31487]: COREGRADE is starting... -- 08:37:23.225 INFO [31487]: Version from config: 1.0 -- 08:37:23.225 DEBUG [31487]: Connecting to database... -- 08:37:23.225 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:23.225 SQL [31487]: pgsql_db_connect() -- 08:37:23.229 DEBUG [31487]: Database connection successful -- 08:37:23.229 INFO [31487]: _SERVER found -- 08:37:23.229 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 08:37:23.229 INFO [31487]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:23.229 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=j9bspgsshba3j5m6mibi4sf266mbndd8 -- 08:37:23.229 INFO [31487]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 08:37:23.229 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:23.242 INFO [31487]: COREGRADE is stopping... -- 08:37:23.242 DEBUG [31487]: Closing database connection -- 08:37:23.242 SQL [31487]: pgsql_close() -- 08:37:23.245 INFO [31486]: COREGRADE is starting... -- 08:37:23.245 INFO [31486]: Version from config: 1.0 -- 08:37:23.245 DEBUG [31486]: Connecting to database... -- 08:37:23.245 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:23.245 SQL [31486]: pgsql_db_connect() -- 08:37:23.250 DEBUG [31486]: Database connection successful -- 08:37:23.250 INFO [31486]: _SERVER found -- 08:37:23.250 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 08:37:23.250 INFO [31486]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:23.250 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=j9bspgsshba3j5m6mibi4sf266mbndd8 -- 08:37:23.250 INFO [31486]: QUERY_STRING = /assets/img/footer_1.jpg -- 08:37:23.250 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:23.265 INFO [31486]: COREGRADE is stopping... -- 08:37:23.265 DEBUG [31486]: Closing database connection -- 08:37:23.265 SQL [31486]: pgsql_close() -- 08:37:25.821 INFO [31486]: COREGRADE is starting... -- 08:37:25.822 INFO [31486]: Version from config: 1.0 -- 08:37:25.822 DEBUG [31486]: Connecting to database... -- 08:37:25.822 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:25.822 SQL [31486]: pgsql_db_connect() -- 08:37:25.835 INFO [31487]: COREGRADE is starting... -- 08:37:25.835 INFO [31487]: Version from config: 1.0 -- 08:37:25.835 DEBUG [31487]: Connecting to database... -- 08:37:25.835 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:25.835 SQL [31487]: pgsql_db_connect() -- 08:37:25.826 DEBUG [31486]: Database connection successful -- 08:37:25.826 INFO [31486]: _SERVER found -- 08:37:25.826 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 08:37:25.826 INFO [31486]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:25.826 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=j9bspgsshba3j5m6mibi4sf266mbndd8; _gat_gtag_UA_54829827_2=1 -- 08:37:25.826 INFO [31486]: QUERY_STRING = /welcome/viewLogin -- 08:37:25.826 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:25.861 INFO [31486]: COREGRADE is stopping... -- 08:37:25.861 DEBUG [31486]: Closing database connection -- 08:37:25.861 SQL [31486]: pgsql_close() -- 08:37:25.839 DEBUG [31487]: Database connection successful -- 08:37:25.839 INFO [31487]: _SERVER found -- 08:37:25.839 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 08:37:25.839 INFO [31487]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:25.839 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=j9bspgsshba3j5m6mibi4sf266mbndd8; _gat_gtag_UA_54829827_2=1 -- 08:37:25.839 INFO [31487]: QUERY_STRING = /auth -- 08:37:25.839 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:25.874 INFO [31487]: COREGRADE is stopping... -- 08:37:25.874 DEBUG [31487]: Closing database connection -- 08:37:25.874 SQL [31487]: pgsql_close() -- 08:37:25.931 INFO [31487]: COREGRADE is starting... -- 08:37:25.931 INFO [31487]: Version from config: 1.0 -- 08:37:25.931 DEBUG [31487]: Connecting to database... -- 08:37:25.931 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:25.931 SQL [31487]: pgsql_db_connect() -- 08:37:25.935 DEBUG [31487]: Database connection successful -- 08:37:25.935 INFO [31487]: _SERVER found -- 08:37:25.935 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 08:37:25.935 INFO [31487]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:25.935 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=j9bspgsshba3j5m6mibi4sf266mbndd8; _gat_gtag_UA_54829827_2=1 -- 08:37:25.935 INFO [31487]: QUERY_STRING = /auth/index -- 08:37:25.935 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:25.971 INFO [31487]: COREGRADE is stopping... -- 08:37:25.972 DEBUG [31487]: Closing database connection -- 08:37:25.972 SQL [31487]: pgsql_close() -- 08:37:26.210 INFO [31487]: COREGRADE is starting... -- 08:37:26.211 INFO [31487]: Version from config: 1.0 -- 08:37:26.211 DEBUG [31487]: Connecting to database... -- 08:37:26.211 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:26.211 SQL [31487]: pgsql_db_connect() -- 08:37:26.215 DEBUG [31487]: Database connection successful -- 08:37:26.215 INFO [31487]: _SERVER found -- 08:37:26.215 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 08:37:26.215 INFO [31487]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:26.215 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=j9bspgsshba3j5m6mibi4sf266mbndd8; _gat_gtag_UA_54829827_2=1 -- 08:37:26.215 INFO [31487]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 08:37:26.215 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:26.227 INFO [31487]: COREGRADE is stopping... -- 08:37:26.227 DEBUG [31487]: Closing database connection -- 08:37:26.227 SQL [31487]: pgsql_close() -- 08:37:26.269 INFO [31487]: COREGRADE is starting... -- 08:37:26.269 INFO [31487]: Version from config: 1.0 -- 08:37:26.269 DEBUG [31487]: Connecting to database... -- 08:37:26.269 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:26.269 SQL [31487]: pgsql_db_connect() -- 08:37:26.273 DEBUG [31487]: Database connection successful -- 08:37:26.273 INFO [31487]: _SERVER found -- 08:37:26.273 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 08:37:26.273 INFO [31487]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:26.273 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=j9bspgsshba3j5m6mibi4sf266mbndd8; _gat_gtag_UA_54829827_2=1 -- 08:37:26.273 INFO [31487]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:37:26.273 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:26.284 INFO [31487]: COREGRADE is stopping... -- 08:37:26.284 DEBUG [31487]: Closing database connection -- 08:37:26.284 SQL [31487]: pgsql_close() -- 08:37:27.834 INFO [31487]: COREGRADE is starting... -- 08:37:27.834 INFO [31487]: Version from config: 1.0 -- 08:37:27.834 DEBUG [31487]: Connecting to database... -- 08:37:27.834 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:27.834 SQL [31487]: pgsql_db_connect() -- 08:37:27.872 INFO [31487]: COREGRADE is starting... -- 08:37:27.872 INFO [31487]: Version from config: 1.0 -- 08:37:27.872 DEBUG [31487]: Connecting to database... -- 08:37:27.872 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:27.872 SQL [31487]: pgsql_db_connect() -- 08:37:27.876 DEBUG [31487]: Database connection successful -- 08:37:27.876 INFO [31487]: _SERVER found -- 08:37:27.876 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 08:37:27.876 INFO [31487]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:27.876 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=j9bspgsshba3j5m6mibi4sf266mbndd8; _gat_gtag_UA_54829827_2=1 -- 08:37:27.876 INFO [31487]: QUERY_STRING = -- 08:37:27.876 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:27.876 INFO [31487]: SystemStatus()09-09-********~************ -- 08:37:27.876 INFO [31487]: long coregrade_api_main(CVars in, CVars &out) -- 08:37:27.876 INFO [31487]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 08:37:27.876 INFO [31487]: account calls -- 08:37:27.876 INFO [31487]: account_calls() -- 08:37:27.876 INFO [31487]: LoginCoreGradeAccount() -- 08:37:27.876 FLOG_MAX [31487]: REQ_STRING(username) -- 08:37:27.876 FLOG_MAX [31487]: REQ_STRING(password) -- 08:37:27.876 FLOG_MAX [31487]: REQ_STRING(sessionid) -- 08:37:27.876 FLOG_MAX [31487]: long load_db_record( CVars &rec, const char * query, ... ) -- 08:37:27.876 SQL [31487]: pgsql_query() -- 08:37:27.876 SQL [31487]: About to run query: -- 08:37:27.876 SQL [31487]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 08:37:27.880 SQL [31487]: Found rows: 1 -- 08:37:27.880 FLOG_MAX [31487]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 08:37:27.880 INFO [31487]: long SessionCheck(long uid, const char *sessionid, int create ) -- 08:37:27.880 SQL [31487]: pgsql_exec() -- 08:37:27.880 SQL [31487]: About to run query: -- 08:37:27.880 SQL [31487]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 08:37:27.882 SQL [31487]: PQcmdTuples: 1 -- 08:37:27.882 SQL [31487]: Affected rows: 1 -- 08:37:27.882 SQL [31487]: pgsql_exec() -- 08:37:27.882 SQL [31487]: About to run query: -- 08:37:27.882 SQL [31487]: DELETE FROM members_session WHERE member_id=5 -- 08:37:27.882 SQL [31487]: PQcmdTuples: 0 -- 08:37:27.882 SQL [31487]: Affected rows: 0 -- 08:37:27.882 SQL [31487]: pgsql_query() -- 08:37:27.882 SQL [31487]: About to run query: -- 08:37:27.882 SQL [31487]: SELECT * FROM members_session WHERE member_id=5 AND session<>'9FCD74C8ACD5A0556D62F495040A428F' -- 08:37:27.883 SQL [31487]: Found rows: 0 -- 08:37:27.883 SQL [31487]: Found rows: 0 -- 08:37:27.883 FLOG_MAX [31487]: long load_db_record( CVars &rec, const char * query, ... ) -- 08:37:27.883 SQL [31487]: pgsql_query() -- 08:37:27.883 SQL [31487]: About to run query: -- 08:37:27.883 SQL [31487]: SELECT * FROM members_session WHERE member_id=5 AND session='9FCD74C8ACD5A0556D62F495040A428F' -- 08:37:27.883 SQL [31487]: Found rows: 0 -- 08:37:27.883 SQL [31487]: Found rows: 0 -- 08:37:27.883 FLOG_MAX [31487]: insert_db_record() -- 08:37:27.884 SQL [31487]: pgsql_exec() -- 08:37:27.884 SQL [31487]: About to run query: -- 08:37:27.884 SQL [31487]: INSERT INTO members_session (member_id,session) VALUES ('5','9FCD74C8ACD5A0556D62F495040A428F') -- 08:37:27.885 SQL [31487]: PQcmdTuples: 1 -- 08:37:27.885 SQL [31487]: Affected rows: 1 -- 08:37:27.885 FLOG_MAX [31487]: SELECT currval('members_session_id_seq') -- 08:37:27.885 SQL [31487]: pgsql_query() -- 08:37:27.885 SQL [31487]: About to run query: -- 08:37:27.885 SQL [31487]: SELECT currval('members_session_id_seq') -- 08:37:27.885 SQL [31487]: Found rows: 1 -- 08:37:27.886 INFO [31487]: CreateDefaultPage() -- 08:37:27.886 FLOG_MAX [31487]: long load_db_record( CVars &rec, const char * query, ... ) -- 08:37:27.886 SQL [31487]: pgsql_query() -- 08:37:27.886 SQL [31487]: About to run query: -- 08:37:27.886 SQL [31487]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 08:37:27.886 SQL [31487]: Found rows: 1 -- 08:37:27.886 FLOG_MAX [31487]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 08:37:27.886 SQL [31487]: pgsql_query() -- 08:37:27.886 SQL [31487]: About to run query: -- 08:37:27.886 SQL [31487]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 08:37:27.886 SQL [31487]: Found rows: 1 -- 08:37:27.886 INFO [31487]: /CreateDefaultPage() -- 08:37:27.886 INFO [31487]: /LoginCoreGradeAccount() -- 08:37:27.886 INFO [31487]: RET: added=2020-02-05 06:47:23.982154 -- 08:37:27.886 INFO [31487]: RET: email=ameye+11@chiefsoft.com -- 08:37:27.886 INFO [31487]: RET: firstname=Olu -- 08:37:27.886 INFO [31487]: RET: id=5 -- 08:37:27.886 INFO [31487]: RET: last_login= -- 08:37:27.886 INFO [31487]: RET: lastname=Amey -- 08:37:27.886 INFO [31487]: RET: loc=192.168.1.13 -- 08:37:27.886 INFO [31487]: RET: member_id=5 -- 08:37:27.886 INFO [31487]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 08:37:27.886 INFO [31487]: RET: phone= -- 08:37:27.886 INFO [31487]: RET: pid= -- 08:37:27.886 INFO [31487]: RET: result=YES I GET TO BACK END -- 08:37:27.886 INFO [31487]: RET: sessionid=9FCD74C8ACD5A0556D62F495040A428F -- 08:37:27.886 INFO [31487]: RET: status=1 -- 08:37:27.887 INFO [31487]: RET: stauts=OK -- 08:37:27.887 INFO [31487]: RET: username=ameye+11@chiefsoft.com -- 08:37:27.887 INFO [31487]: RET: verified= -- 08:37:27.888 INFO [31487]: COREGRADE is stopping... -- 08:37:27.888 DEBUG [31487]: Closing database connection -- 08:37:27.888 SQL [31487]: pgsql_close() -- 08:37:27.838 DEBUG [31487]: Database connection successful -- 08:37:27.838 INFO [31487]: _SERVER found -- 08:37:27.838 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 08:37:27.838 INFO [31487]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:27.838 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=j9bspgsshba3j5m6mibi4sf266mbndd8; _gat_gtag_UA_54829827_2=1 -- 08:37:27.838 INFO [31487]: QUERY_STRING = /auth -- 08:37:27.838 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:27.888 INFO [31487]: COREGRADE is stopping... -- 08:37:27.888 DEBUG [31487]: Closing database connection -- 08:37:27.888 SQL [31487]: pgsql_close() -- 08:37:27.903 INFO [31487]: COREGRADE is starting... -- 08:37:27.903 INFO [31487]: Version from config: 1.0 -- 08:37:27.903 DEBUG [31487]: Connecting to database... -- 08:37:27.903 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:27.903 SQL [31487]: pgsql_db_connect() -- 08:37:27.907 DEBUG [31487]: Database connection successful -- 08:37:27.907 INFO [31487]: _SERVER found -- 08:37:27.907 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 08:37:27.907 INFO [31487]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:27.907 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=j9bspgsshba3j5m6mibi4sf266mbndd8; _gat_gtag_UA_54829827_2=1 -- 08:37:27.907 INFO [31487]: QUERY_STRING = /member/index -- 08:37:27.907 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:27.943 INFO [31487]: COREGRADE is stopping... -- 08:37:27.944 DEBUG [31487]: Closing database connection -- 08:37:27.944 SQL [31487]: pgsql_close() -- 08:37:28.405 INFO [31487]: COREGRADE is starting... -- 08:37:28.405 INFO [31487]: Version from config: 1.0 -- 08:37:28.405 DEBUG [31487]: Connecting to database... -- 08:37:28.405 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:28.405 SQL [31487]: pgsql_db_connect() -- 08:37:28.409 DEBUG [31487]: Database connection successful -- 08:37:28.409 INFO [31487]: _SERVER found -- 08:37:28.409 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 08:37:28.409 INFO [31487]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:28.409 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=j9bspgsshba3j5m6mibi4sf266mbndd8; _gat_gtag_UA_54829827_2=1 -- 08:37:28.409 INFO [31487]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 08:37:28.409 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:28.420 INFO [31487]: COREGRADE is stopping... -- 08:37:28.420 DEBUG [31487]: Closing database connection -- 08:37:28.420 SQL [31487]: pgsql_close() -- 08:37:28.609 INFO [31487]: COREGRADE is starting... -- 08:37:28.609 INFO [31487]: Version from config: 1.0 -- 08:37:28.609 DEBUG [31487]: Connecting to database... -- 08:37:28.609 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:28.610 SQL [31487]: pgsql_db_connect() -- 08:37:28.613 DEBUG [31487]: Database connection successful -- 08:37:28.613 INFO [31487]: _SERVER found -- 08:37:28.613 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 08:37:28.613 INFO [31487]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:28.613 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=j9bspgsshba3j5m6mibi4sf266mbndd8; _gat_gtag_UA_54829827_2=1 -- 08:37:28.613 INFO [31487]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:37:28.613 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:28.624 INFO [31487]: COREGRADE is stopping... -- 08:37:28.625 DEBUG [31487]: Closing database connection -- 08:37:28.625 SQL [31487]: pgsql_close() -- 08:37:30.002 INFO [31487]: COREGRADE is starting... -- 08:37:30.002 INFO [31487]: Version from config: 1.0 -- 08:37:30.002 DEBUG [31487]: Connecting to database... -- 08:37:30.002 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:30.002 SQL [31487]: pgsql_db_connect() -- 08:37:30.006 DEBUG [31487]: Database connection successful -- 08:37:30.006 INFO [31487]: _SERVER found -- 08:37:30.006 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 08:37:30.006 INFO [31487]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:30.006 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=j9bspgsshba3j5m6mibi4sf266mbndd8; _gat_gtag_UA_54829827_2=1 -- 08:37:30.006 INFO [31487]: QUERY_STRING = /member/page -- 08:37:30.006 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:30.044 INFO [31487]: COREGRADE is stopping... -- 08:37:30.044 DEBUG [31487]: Closing database connection -- 08:37:30.044 SQL [31487]: pgsql_close() -- 08:37:30.535 INFO [31487]: COREGRADE is starting... -- 08:37:30.535 INFO [31487]: Version from config: 1.0 -- 08:37:30.535 DEBUG [31487]: Connecting to database... -- 08:37:30.535 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:30.535 SQL [31487]: pgsql_db_connect() -- 08:37:30.539 DEBUG [31487]: Database connection successful -- 08:37:30.539 INFO [31487]: _SERVER found -- 08:37:30.539 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 08:37:30.539 INFO [31487]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:30.539 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=j9bspgsshba3j5m6mibi4sf266mbndd8; _gat_gtag_UA_54829827_2=1 -- 08:37:30.539 INFO [31487]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:37:30.539 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:30.550 INFO [31487]: COREGRADE is stopping... -- 08:37:30.550 DEBUG [31487]: Closing database connection -- 08:37:30.550 SQL [31487]: pgsql_close() -- 08:37:34.550 INFO [31487]: COREGRADE is starting... -- 08:37:34.551 INFO [31487]: Version from config: 1.0 -- 08:37:34.551 DEBUG [31487]: Connecting to database... -- 08:37:34.551 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:34.551 SQL [31487]: pgsql_db_connect() -- 08:37:34.555 DEBUG [31487]: Database connection successful -- 08:37:34.555 INFO [31487]: _SERVER found -- 08:37:34.555 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 08:37:34.555 INFO [31487]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:34.555 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=j9bspgsshba3j5m6mibi4sf266mbndd8; _gat_gtag_UA_54829827_2=1 -- 08:37:34.555 INFO [31487]: QUERY_STRING = /member/viewCardAddAction -- 08:37:34.555 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:34.585 INFO [31487]: COREGRADE is stopping... -- 08:37:34.585 DEBUG [31487]: Closing database connection -- 08:37:34.585 SQL [31487]: pgsql_close() -- 08:37:35.613 INFO [31487]: COREGRADE is starting... -- 08:37:35.614 INFO [31487]: Version from config: 1.0 -- 08:37:35.614 DEBUG [31487]: Connecting to database... -- 08:37:35.614 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:35.614 SQL [31487]: pgsql_db_connect() -- 08:37:35.618 DEBUG [31487]: Database connection successful -- 08:37:35.618 INFO [31487]: _SERVER found -- 08:37:35.618 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 08:37:35.618 INFO [31487]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:35.618 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=j9bspgsshba3j5m6mibi4sf266mbndd8; _gat_gtag_UA_54829827_2=1 -- 08:37:35.618 INFO [31487]: QUERY_STRING = /member/viewCardAddAction -- 08:37:35.618 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:35.648 INFO [31487]: COREGRADE is stopping... -- 08:37:35.648 DEBUG [31487]: Closing database connection -- 08:37:35.648 SQL [31487]: pgsql_close() -- 08:37:36.815 INFO [31487]: COREGRADE is starting... -- 08:37:36.815 INFO [31487]: Version from config: 1.0 -- 08:37:36.815 DEBUG [31487]: Connecting to database... -- 08:37:36.815 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:36.815 SQL [31487]: pgsql_db_connect() -- 08:37:36.819 DEBUG [31487]: Database connection successful -- 08:37:36.819 INFO [31487]: _SERVER found -- 08:37:36.819 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 08:37:36.819 INFO [31487]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:36.819 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=j9bspgsshba3j5m6mibi4sf266mbndd8; _gat_gtag_UA_54829827_2=1 -- 08:37:36.819 INFO [31487]: QUERY_STRING = /member/viewCardAddAction -- 08:37:36.819 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:36.850 INFO [31487]: COREGRADE is stopping... -- 08:37:36.850 DEBUG [31487]: Closing database connection -- 08:37:36.850 SQL [31487]: pgsql_close() -- 08:37:38.046 INFO [31487]: COREGRADE is starting... -- 08:37:38.046 INFO [31487]: Version from config: 1.0 -- 08:37:38.046 DEBUG [31487]: Connecting to database... -- 08:37:38.046 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:38.046 SQL [31487]: pgsql_db_connect() -- 08:37:38.050 DEBUG [31487]: Database connection successful -- 08:37:38.050 INFO [31487]: _SERVER found -- 08:37:38.050 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 08:37:38.050 INFO [31487]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:38.050 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=j9bspgsshba3j5m6mibi4sf266mbndd8; _gat_gtag_UA_54829827_2=1 -- 08:37:38.050 INFO [31487]: QUERY_STRING = /member/viewCardAddAction -- 08:37:38.050 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:38.080 INFO [31487]: COREGRADE is stopping... -- 08:37:38.080 DEBUG [31487]: Closing database connection -- 08:37:38.080 SQL [31487]: pgsql_close() -- 08:37:38.747 INFO [31487]: COREGRADE is starting... -- 08:37:38.747 INFO [31487]: Version from config: 1.0 -- 08:37:38.747 DEBUG [31487]: Connecting to database... -- 08:37:38.747 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:38.747 SQL [31487]: pgsql_db_connect() -- 08:37:38.751 DEBUG [31487]: Database connection successful -- 08:37:38.751 INFO [31487]: _SERVER found -- 08:37:38.751 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 08:37:38.751 INFO [31487]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:38.751 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=j9bspgsshba3j5m6mibi4sf266mbndd8; _gat_gtag_UA_54829827_2=1 -- 08:37:38.751 INFO [31487]: QUERY_STRING = /member/viewCardAddAction -- 08:37:38.751 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:38.782 INFO [31487]: COREGRADE is stopping... -- 08:37:38.782 DEBUG [31487]: Closing database connection -- 08:37:38.782 SQL [31487]: pgsql_close() -- 08:37:39.468 INFO [31487]: COREGRADE is starting... -- 08:37:39.468 INFO [31487]: Version from config: 1.0 -- 08:37:39.468 DEBUG [31487]: Connecting to database... -- 08:37:39.468 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:39.468 SQL [31487]: pgsql_db_connect() -- 08:37:39.472 DEBUG [31487]: Database connection successful -- 08:37:39.472 INFO [31487]: _SERVER found -- 08:37:39.472 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 08:37:39.472 INFO [31487]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:39.472 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=j9bspgsshba3j5m6mibi4sf266mbndd8; _gat_gtag_UA_54829827_2=1 -- 08:37:39.472 INFO [31487]: QUERY_STRING = /member/viewCardAddAction -- 08:37:39.472 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:39.503 INFO [31487]: COREGRADE is stopping... -- 08:37:39.503 DEBUG [31487]: Closing database connection -- 08:37:39.503 SQL [31487]: pgsql_close() -- 08:37:40.408 INFO [31487]: COREGRADE is starting... -- 08:37:40.408 INFO [31487]: Version from config: 1.0 -- 08:37:40.408 DEBUG [31487]: Connecting to database... -- 08:37:40.408 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:40.408 SQL [31487]: pgsql_db_connect() -- 08:37:40.412 DEBUG [31487]: Database connection successful -- 08:37:40.412 INFO [31487]: _SERVER found -- 08:37:40.412 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 08:37:40.412 INFO [31487]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:40.412 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=j9bspgsshba3j5m6mibi4sf266mbndd8; _gat_gtag_UA_54829827_2=1 -- 08:37:40.412 INFO [31487]: QUERY_STRING = /member/viewCardAddAction -- 08:37:40.412 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:40.443 INFO [31487]: COREGRADE is stopping... -- 08:37:40.443 DEBUG [31487]: Closing database connection -- 08:37:40.443 SQL [31487]: pgsql_close() -- 09:01:57.800 INFO [31512]: COREGRADE is starting... -- 09:01:57.800 INFO [31512]: Version from config: 1.0 -- 09:01:57.800 DEBUG [31512]: Connecting to database... -- 09:01:57.801 DEBUG [31512]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:01:57.801 SQL [31512]: pgsql_db_connect() -- 09:01:57.805 DEBUG [31512]: Database connection successful -- 09:01:57.805 INFO [31512]: _SERVER found -- 09:01:57.805 INFO [31512]: REMOTE_ADDR = 192.168.1.13 -- 09:01:57.805 INFO [31512]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:01:57.805 INFO [31512]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=uuok0tifbvoihqo4elh84q5tqli3tmad -- 09:01:57.805 INFO [31512]: QUERY_STRING = -- 09:01:57.805 INFO [31512]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:01:57.850 INFO [31512]: COREGRADE is stopping... -- 09:01:57.850 DEBUG [31512]: Closing database connection -- 09:01:57.850 SQL [31512]: pgsql_close() -- 09:01:58.379 INFO [31512]: COREGRADE is starting... -- 09:01:58.379 INFO [31512]: Version from config: 1.0 -- 09:01:58.379 DEBUG [31512]: Connecting to database... -- 09:01:58.379 DEBUG [31512]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:01:58.379 SQL [31512]: pgsql_db_connect() -- 09:01:58.394 INFO [31513]: COREGRADE is starting... -- 09:01:58.395 INFO [31513]: Version from config: 1.0 -- 09:01:58.395 DEBUG [31513]: Connecting to database... -- 09:01:58.395 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:01:58.395 SQL [31513]: pgsql_db_connect() -- 09:01:58.383 DEBUG [31512]: Database connection successful -- 09:01:58.383 INFO [31512]: _SERVER found -- 09:01:58.383 INFO [31512]: REMOTE_ADDR = 192.168.1.13 -- 09:01:58.383 INFO [31512]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:01:58.383 INFO [31512]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=alus5bib9it37fcpcb7mjqpj1s4cfbcb -- 09:01:58.383 INFO [31512]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:01:58.383 INFO [31512]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:01:58.395 INFO [31512]: COREGRADE is stopping... -- 09:01:58.395 DEBUG [31512]: Closing database connection -- 09:01:58.395 SQL [31512]: pgsql_close() -- 09:01:58.399 DEBUG [31513]: Database connection successful -- 09:01:58.399 INFO [31513]: _SERVER found -- 09:01:58.399 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 09:01:58.399 INFO [31513]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:01:58.399 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=alus5bib9it37fcpcb7mjqpj1s4cfbcb -- 09:01:58.399 INFO [31513]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:01:58.399 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:01:58.414 INFO [31513]: COREGRADE is stopping... -- 09:01:58.414 DEBUG [31513]: Closing database connection -- 09:01:58.414 SQL [31513]: pgsql_close() -- 09:02:05.677 INFO [31484]: COREGRADE is starting... -- 09:02:05.678 INFO [31484]: Version from config: 1.0 -- 09:02:05.678 DEBUG [31484]: Connecting to database... -- 09:02:05.678 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:02:05.678 SQL [31484]: pgsql_db_connect() -- 09:02:05.681 DEBUG [31484]: Database connection successful -- 09:02:05.682 INFO [31484]: _SERVER found -- 09:02:05.682 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 09:02:05.682 INFO [31484]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:02:05.682 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=alus5bib9it37fcpcb7mjqpj1s4cfbcb; _gat_gtag_UA_54829827_2=1 -- 09:02:05.682 INFO [31484]: QUERY_STRING = -- 09:02:05.682 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:02:05.717 INFO [31484]: COREGRADE is stopping... -- 09:02:05.717 DEBUG [31484]: Closing database connection -- 09:02:05.717 SQL [31484]: pgsql_close() -- 09:02:06.231 INFO [31485]: COREGRADE is starting... -- 09:02:06.231 INFO [31485]: Version from config: 1.0 -- 09:02:06.231 DEBUG [31485]: Connecting to database... -- 09:02:06.231 DEBUG [31485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:02:06.231 SQL [31485]: pgsql_db_connect() -- 09:02:06.235 DEBUG [31485]: Database connection successful -- 09:02:06.235 INFO [31485]: _SERVER found -- 09:02:06.235 INFO [31485]: REMOTE_ADDR = 192.168.1.13 -- 09:02:06.235 INFO [31485]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:02:06.235 INFO [31485]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=alus5bib9it37fcpcb7mjqpj1s4cfbcb; _gat_gtag_UA_54829827_2=1 -- 09:02:06.235 INFO [31485]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:02:06.235 INFO [31485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:02:06.248 INFO [31485]: COREGRADE is stopping... -- 09:02:06.248 DEBUG [31485]: Closing database connection -- 09:02:06.248 SQL [31485]: pgsql_close() -- 09:02:06.251 INFO [31649]: COREGRADE is starting... -- 09:02:06.252 INFO [31649]: Version from config: 1.0 -- 09:02:06.252 DEBUG [31649]: Connecting to database... -- 09:02:06.252 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:02:06.252 SQL [31649]: pgsql_db_connect() -- 09:02:06.255 DEBUG [31649]: Database connection successful -- 09:02:06.255 INFO [31649]: _SERVER found -- 09:02:06.255 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 09:02:06.255 INFO [31649]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:02:06.255 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=alus5bib9it37fcpcb7mjqpj1s4cfbcb; _gat_gtag_UA_54829827_2=1 -- 09:02:06.255 INFO [31649]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:02:06.255 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:02:06.269 INFO [31649]: COREGRADE is stopping... -- 09:02:06.270 DEBUG [31649]: Closing database connection -- 09:02:06.270 SQL [31649]: pgsql_close() -- 09:02:09.855 INFO [31649]: COREGRADE is starting... -- 09:02:09.856 INFO [31649]: Version from config: 1.0 -- 09:02:09.856 DEBUG [31649]: Connecting to database... -- 09:02:09.856 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:02:09.856 SQL [31649]: pgsql_db_connect() -- 09:02:09.860 DEBUG [31649]: Database connection successful -- 09:02:09.860 INFO [31649]: _SERVER found -- 09:02:09.860 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 09:02:09.860 INFO [31649]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:02:09.860 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=alus5bib9it37fcpcb7mjqpj1s4cfbcb; _gat_gtag_UA_54829827_2=1 -- 09:02:09.860 INFO [31649]: QUERY_STRING = -- 09:02:09.860 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:02:09.900 INFO [31649]: COREGRADE is stopping... -- 09:02:09.900 DEBUG [31649]: Closing database connection -- 09:02:09.900 SQL [31649]: pgsql_close() -- 09:02:10.532 INFO [31484]: COREGRADE is starting... -- 09:02:10.532 INFO [31484]: Version from config: 1.0 -- 09:02:10.532 DEBUG [31484]: Connecting to database... -- 09:02:10.532 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:02:10.532 SQL [31484]: pgsql_db_connect() -- 09:02:10.536 DEBUG [31484]: Database connection successful -- 09:02:10.536 INFO [31484]: _SERVER found -- 09:02:10.536 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 09:02:10.536 INFO [31484]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:02:10.536 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=alus5bib9it37fcpcb7mjqpj1s4cfbcb; _gat_gtag_UA_54829827_2=1 -- 09:02:10.536 INFO [31484]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:02:10.536 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:02:10.548 INFO [31484]: COREGRADE is stopping... -- 09:02:10.548 DEBUG [31484]: Closing database connection -- 09:02:10.548 SQL [31484]: pgsql_close() -- 09:02:10.621 INFO [31484]: COREGRADE is starting... -- 09:02:10.621 INFO [31484]: Version from config: 1.0 -- 09:02:10.621 DEBUG [31484]: Connecting to database... -- 09:02:10.621 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:02:10.621 SQL [31484]: pgsql_db_connect() -- 09:02:10.625 DEBUG [31484]: Database connection successful -- 09:02:10.625 INFO [31484]: _SERVER found -- 09:02:10.625 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 09:02:10.625 INFO [31484]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:02:10.625 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=alus5bib9it37fcpcb7mjqpj1s4cfbcb; _gat_gtag_UA_54829827_2=1 -- 09:02:10.625 INFO [31484]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:02:10.625 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:02:10.637 INFO [31484]: COREGRADE is stopping... -- 09:02:10.637 DEBUG [31484]: Closing database connection -- 09:02:10.637 SQL [31484]: pgsql_close() -- 09:02:21.865 INFO [31511]: COREGRADE is starting... -- 09:02:21.866 INFO [31511]: Version from config: 1.0 -- 09:02:21.866 DEBUG [31511]: Connecting to database... -- 09:02:21.866 DEBUG [31511]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:02:21.866 SQL [31511]: pgsql_db_connect() -- 09:02:21.870 DEBUG [31511]: Database connection successful -- 09:02:21.870 INFO [31511]: _SERVER found -- 09:02:21.870 INFO [31511]: REMOTE_ADDR = 192.168.1.13 -- 09:02:21.870 INFO [31511]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:02:21.870 INFO [31511]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=alus5bib9it37fcpcb7mjqpj1s4cfbcb; _gat_gtag_UA_54829827_2=1 -- 09:02:21.870 INFO [31511]: QUERY_STRING = /home/privacy -- 09:02:21.870 INFO [31511]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:02:21.908 INFO [31511]: COREGRADE is stopping... -- 09:02:21.908 DEBUG [31511]: Closing database connection -- 09:02:21.908 SQL [31511]: pgsql_close() -- 09:02:22.276 INFO [31486]: COREGRADE is starting... -- 09:02:22.276 INFO [31486]: Version from config: 1.0 -- 09:02:22.276 DEBUG [31486]: Connecting to database... -- 09:02:22.276 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:02:22.276 SQL [31486]: pgsql_db_connect() -- 09:02:22.280 DEBUG [31486]: Database connection successful -- 09:02:22.280 INFO [31486]: _SERVER found -- 09:02:22.280 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 09:02:22.280 INFO [31486]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:02:22.280 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=alus5bib9it37fcpcb7mjqpj1s4cfbcb; _gat_gtag_UA_54829827_2=1 -- 09:02:22.280 INFO [31486]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 09:02:22.280 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:02:22.292 INFO [31486]: COREGRADE is stopping... -- 09:02:22.292 DEBUG [31486]: Closing database connection -- 09:02:22.292 SQL [31486]: pgsql_close() -- 09:02:22.299 INFO [31512]: COREGRADE is starting... -- 09:02:22.299 INFO [31512]: Version from config: 1.0 -- 09:02:22.299 DEBUG [31512]: Connecting to database... -- 09:02:22.299 DEBUG [31512]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:02:22.299 SQL [31512]: pgsql_db_connect() -- 09:02:22.303 DEBUG [31512]: Database connection successful -- 09:02:22.303 INFO [31512]: _SERVER found -- 09:02:22.303 INFO [31512]: REMOTE_ADDR = 192.168.1.13 -- 09:02:22.303 INFO [31512]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:02:22.303 INFO [31512]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=alus5bib9it37fcpcb7mjqpj1s4cfbcb; _gat_gtag_UA_54829827_2=1 -- 09:02:22.303 INFO [31512]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:02:22.303 INFO [31512]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:02:22.315 INFO [31512]: COREGRADE is stopping... -- 09:02:22.315 DEBUG [31512]: Closing database connection -- 09:02:22.315 SQL [31512]: pgsql_close() -- 09:02:26.043 INFO [31512]: COREGRADE is starting... -- 09:02:26.043 INFO [31512]: Version from config: 1.0 -- 09:02:26.043 DEBUG [31512]: Connecting to database... -- 09:02:26.043 DEBUG [31512]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:02:26.043 SQL [31512]: pgsql_db_connect() -- 09:02:26.048 DEBUG [31512]: Database connection successful -- 09:02:26.048 INFO [31512]: _SERVER found -- 09:02:26.048 INFO [31512]: REMOTE_ADDR = 192.168.1.13 -- 09:02:26.048 INFO [31512]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:02:26.048 INFO [31512]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=alus5bib9it37fcpcb7mjqpj1s4cfbcb; _gat_gtag_UA_54829827_2=1 -- 09:02:26.048 INFO [31512]: QUERY_STRING = -- 09:02:26.048 INFO [31512]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:02:26.082 INFO [31512]: COREGRADE is stopping... -- 09:02:26.082 DEBUG [31512]: Closing database connection -- 09:02:26.082 SQL [31512]: pgsql_close() -- 09:02:29.748 INFO [31512]: COREGRADE is starting... -- 09:02:29.748 INFO [31512]: Version from config: 1.0 -- 09:02:29.748 DEBUG [31512]: Connecting to database... -- 09:02:29.748 DEBUG [31512]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:02:29.748 SQL [31512]: pgsql_db_connect() -- 09:02:29.752 DEBUG [31512]: Database connection successful -- 09:02:29.752 INFO [31512]: _SERVER found -- 09:02:29.752 INFO [31512]: REMOTE_ADDR = 192.168.1.13 -- 09:02:29.752 INFO [31512]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:02:29.752 INFO [31512]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=alus5bib9it37fcpcb7mjqpj1s4cfbcb; _gat_gtag_UA_54829827_2=1 -- 09:02:29.752 INFO [31512]: QUERY_STRING = -- 09:02:29.752 INFO [31512]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:02:29.787 INFO [31512]: COREGRADE is stopping... -- 09:02:29.787 DEBUG [31512]: Closing database connection -- 09:02:29.787 SQL [31512]: pgsql_close() -- 09:02:35.124 INFO [31513]: COREGRADE is starting... -- 09:02:35.124 INFO [31513]: Version from config: 1.0 -- 09:02:35.124 DEBUG [31513]: Connecting to database... -- 09:02:35.124 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:02:35.124 SQL [31513]: pgsql_db_connect() -- 09:02:35.128 DEBUG [31513]: Database connection successful -- 09:02:35.128 INFO [31513]: _SERVER found -- 09:02:35.128 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 09:02:35.128 INFO [31513]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:02:35.128 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=alus5bib9it37fcpcb7mjqpj1s4cfbcb; _gat_gtag_UA_54829827_2=1 -- 09:02:35.128 INFO [31513]: QUERY_STRING = /home/faq -- 09:02:35.128 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:02:35.165 INFO [31513]: COREGRADE is stopping... -- 09:02:35.165 DEBUG [31513]: Closing database connection -- 09:02:35.165 SQL [31513]: pgsql_close() -- 09:02:35.480 INFO [31513]: COREGRADE is starting... -- 09:02:35.480 INFO [31513]: Version from config: 1.0 -- 09:02:35.480 DEBUG [31513]: Connecting to database... -- 09:02:35.480 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:02:35.480 SQL [31513]: pgsql_db_connect() -- 09:02:35.484 DEBUG [31513]: Database connection successful -- 09:02:35.484 INFO [31513]: _SERVER found -- 09:02:35.484 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 09:02:35.484 INFO [31513]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:02:35.484 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=alus5bib9it37fcpcb7mjqpj1s4cfbcb; _gat_gtag_UA_54829827_2=1 -- 09:02:35.484 INFO [31513]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 09:02:35.484 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:02:35.496 INFO [31513]: COREGRADE is stopping... -- 09:02:35.496 DEBUG [31513]: Closing database connection -- 09:02:35.496 SQL [31513]: pgsql_close() -- 09:02:35.507 INFO [31513]: COREGRADE is starting... -- 09:02:35.507 INFO [31513]: Version from config: 1.0 -- 09:02:35.507 DEBUG [31513]: Connecting to database... -- 09:02:35.507 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:02:35.507 SQL [31513]: pgsql_db_connect() -- 09:02:35.510 DEBUG [31513]: Database connection successful -- 09:02:35.510 INFO [31513]: _SERVER found -- 09:02:35.510 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 09:02:35.510 INFO [31513]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:02:35.510 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=alus5bib9it37fcpcb7mjqpj1s4cfbcb; _gat_gtag_UA_54829827_2=1 -- 09:02:35.510 INFO [31513]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:02:35.510 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:02:35.522 INFO [31513]: COREGRADE is stopping... -- 09:02:35.522 DEBUG [31513]: Closing database connection -- 09:02:35.522 SQL [31513]: pgsql_close() -- 09:02:48.710 INFO [31649]: COREGRADE is starting... -- 09:02:48.710 INFO [31649]: Version from config: 1.0 -- 09:02:48.710 DEBUG [31649]: Connecting to database... -- 09:02:48.710 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:02:48.710 SQL [31649]: pgsql_db_connect() -- 09:02:48.714 DEBUG [31649]: Database connection successful -- 09:02:48.714 INFO [31649]: _SERVER found -- 09:02:48.714 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 09:02:48.714 INFO [31649]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:02:48.714 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=alus5bib9it37fcpcb7mjqpj1s4cfbcb; _gat_gtag_UA_54829827_2=1 -- 09:02:48.714 INFO [31649]: QUERY_STRING = /home/faq -- 09:02:48.714 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:02:48.750 INFO [31649]: COREGRADE is stopping... -- 09:02:48.750 DEBUG [31649]: Closing database connection -- 09:02:48.750 SQL [31649]: pgsql_close() -- 09:02:49.085 INFO [31649]: COREGRADE is starting... -- 09:02:49.086 INFO [31649]: Version from config: 1.0 -- 09:02:49.086 DEBUG [31649]: Connecting to database... -- 09:02:49.086 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:02:49.086 SQL [31649]: pgsql_db_connect() -- 09:02:49.090 DEBUG [31649]: Database connection successful -- 09:02:49.090 INFO [31649]: _SERVER found -- 09:02:49.090 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 09:02:49.090 INFO [31649]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:02:49.090 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=alus5bib9it37fcpcb7mjqpj1s4cfbcb; _gat_gtag_UA_54829827_2=1 -- 09:02:49.090 INFO [31649]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 09:02:49.090 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:02:49.101 INFO [31649]: COREGRADE is stopping... -- 09:02:49.101 DEBUG [31649]: Closing database connection -- 09:02:49.101 SQL [31649]: pgsql_close() -- 09:02:49.107 INFO [31649]: COREGRADE is starting... -- 09:02:49.107 INFO [31649]: Version from config: 1.0 -- 09:02:49.107 DEBUG [31649]: Connecting to database... -- 09:02:49.107 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:02:49.107 SQL [31649]: pgsql_db_connect() -- 09:02:49.111 DEBUG [31649]: Database connection successful -- 09:02:49.111 INFO [31649]: _SERVER found -- 09:02:49.111 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 09:02:49.111 INFO [31649]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:02:49.111 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=alus5bib9it37fcpcb7mjqpj1s4cfbcb; _gat_gtag_UA_54829827_2=1 -- 09:02:49.111 INFO [31649]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:02:49.111 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:02:49.123 INFO [31649]: COREGRADE is stopping... -- 09:02:49.123 DEBUG [31649]: Closing database connection -- 09:02:49.123 SQL [31649]: pgsql_close() -- 09:02:49.842 INFO [31649]: COREGRADE is starting... -- 09:02:49.843 INFO [31649]: Version from config: 1.0 -- 09:02:49.843 DEBUG [31649]: Connecting to database... -- 09:02:49.843 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:02:49.843 SQL [31649]: pgsql_db_connect() -- 09:02:49.847 DEBUG [31649]: Database connection successful -- 09:02:49.847 INFO [31649]: _SERVER found -- 09:02:49.847 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 09:02:49.847 INFO [31649]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:02:49.847 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=alus5bib9it37fcpcb7mjqpj1s4cfbcb; _gat_gtag_UA_54829827_2=1 -- 09:02:49.847 INFO [31649]: QUERY_STRING = -- 09:02:49.847 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:02:49.881 INFO [31649]: COREGRADE is stopping... -- 09:02:49.881 DEBUG [31649]: Closing database connection -- 09:02:49.881 SQL [31649]: pgsql_close() -- 09:02:50.232 INFO [31649]: COREGRADE is starting... -- 09:02:50.233 INFO [31649]: Version from config: 1.0 -- 09:02:50.233 DEBUG [31649]: Connecting to database... -- 09:02:50.233 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:02:50.233 SQL [31649]: pgsql_db_connect() -- 09:02:50.240 INFO [31488]: COREGRADE is starting... -- 09:02:50.240 INFO [31488]: Version from config: 1.0 -- 09:02:50.240 DEBUG [31488]: Connecting to database... -- 09:02:50.240 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:02:50.240 SQL [31488]: pgsql_db_connect() -- 09:02:50.237 DEBUG [31649]: Database connection successful -- 09:02:50.237 INFO [31649]: _SERVER found -- 09:02:50.237 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 09:02:50.237 INFO [31649]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:02:50.237 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=alus5bib9it37fcpcb7mjqpj1s4cfbcb; _gat_gtag_UA_54829827_2=1 -- 09:02:50.237 INFO [31649]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:02:50.237 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:02:50.248 INFO [31649]: COREGRADE is stopping... -- 09:02:50.248 DEBUG [31649]: Closing database connection -- 09:02:50.248 SQL [31649]: pgsql_close() -- 09:02:50.244 DEBUG [31488]: Database connection successful -- 09:02:50.244 INFO [31488]: _SERVER found -- 09:02:50.244 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 09:02:50.244 INFO [31488]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:02:50.244 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=alus5bib9it37fcpcb7mjqpj1s4cfbcb; _gat_gtag_UA_54829827_2=1 -- 09:02:50.244 INFO [31488]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:02:50.244 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:02:50.259 INFO [31488]: COREGRADE is stopping... -- 09:02:50.259 DEBUG [31488]: Closing database connection -- 09:02:50.259 SQL [31488]: pgsql_close() -- 09:02:58.255 INFO [31485]: COREGRADE is starting... -- 09:02:58.256 INFO [31485]: Version from config: 1.0 -- 09:02:58.256 DEBUG [31485]: Connecting to database... -- 09:02:58.256 DEBUG [31485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:02:58.256 SQL [31485]: pgsql_db_connect() -- 09:02:58.260 DEBUG [31485]: Database connection successful -- 09:02:58.260 INFO [31485]: _SERVER found -- 09:02:58.260 INFO [31485]: REMOTE_ADDR = 192.168.1.13 -- 09:02:58.260 INFO [31485]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:02:58.260 INFO [31485]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=alus5bib9it37fcpcb7mjqpj1s4cfbcb; _gat_gtag_UA_54829827_2=1 -- 09:02:58.260 INFO [31485]: QUERY_STRING = /home/terms -- 09:02:58.260 INFO [31485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:02:58.296 INFO [31485]: COREGRADE is stopping... -- 09:02:58.296 DEBUG [31485]: Closing database connection -- 09:02:58.296 SQL [31485]: pgsql_close() -- 09:02:58.728 INFO [31485]: COREGRADE is starting... -- 09:02:58.728 INFO [31485]: Version from config: 1.0 -- 09:02:58.728 DEBUG [31485]: Connecting to database... -- 09:02:58.728 DEBUG [31485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:02:58.728 SQL [31485]: pgsql_db_connect() -- 09:02:58.741 INFO [31484]: COREGRADE is starting... -- 09:02:58.741 INFO [31484]: Version from config: 1.0 -- 09:02:58.741 DEBUG [31484]: Connecting to database... -- 09:02:58.741 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:02:58.741 SQL [31484]: pgsql_db_connect() -- 09:02:58.732 DEBUG [31485]: Database connection successful -- 09:02:58.732 INFO [31485]: _SERVER found -- 09:02:58.732 INFO [31485]: REMOTE_ADDR = 192.168.1.13 -- 09:02:58.732 INFO [31485]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:02:58.732 INFO [31485]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=alus5bib9it37fcpcb7mjqpj1s4cfbcb -- 09:02:58.732 INFO [31485]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 09:02:58.732 INFO [31485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:02:58.743 INFO [31485]: COREGRADE is stopping... -- 09:02:58.743 DEBUG [31485]: Closing database connection -- 09:02:58.743 SQL [31485]: pgsql_close() -- 09:02:58.745 DEBUG [31484]: Database connection successful -- 09:02:58.745 INFO [31484]: _SERVER found -- 09:02:58.745 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 09:02:58.745 INFO [31484]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:02:58.745 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=alus5bib9it37fcpcb7mjqpj1s4cfbcb -- 09:02:58.745 INFO [31484]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:02:58.745 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:02:58.757 INFO [31484]: COREGRADE is stopping... -- 09:02:58.757 DEBUG [31484]: Closing database connection -- 09:02:58.757 SQL [31484]: pgsql_close() -- 09:05:10.465 INFO [31487]: COREGRADE is starting... -- 09:05:10.466 INFO [31487]: Version from config: 1.0 -- 09:05:10.466 DEBUG [31487]: Connecting to database... -- 09:05:10.466 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:05:10.466 SQL [31487]: pgsql_db_connect() -- 09:05:10.469 DEBUG [31487]: Database connection successful -- 09:05:10.469 INFO [31487]: _SERVER found -- 09:05:10.469 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 09:05:10.469 INFO [31487]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:05:10.469 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=alus5bib9it37fcpcb7mjqpj1s4cfbcb -- 09:05:10.469 INFO [31487]: QUERY_STRING = -- 09:05:10.469 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:05:10.502 INFO [31487]: COREGRADE is stopping... -- 09:05:10.502 DEBUG [31487]: Closing database connection -- 09:05:10.502 SQL [31487]: pgsql_close() -- 09:05:10.714 INFO [31487]: COREGRADE is starting... -- 09:05:10.714 INFO [31487]: Version from config: 1.0 -- 09:05:10.714 DEBUG [31487]: Connecting to database... -- 09:05:10.714 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:05:10.714 SQL [31487]: pgsql_db_connect() -- 09:05:10.718 DEBUG [31487]: Database connection successful -- 09:05:10.718 INFO [31487]: _SERVER found -- 09:05:10.718 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 09:05:10.718 INFO [31487]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:05:10.718 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=alus5bib9it37fcpcb7mjqpj1s4cfbcb -- 09:05:10.718 INFO [31487]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:05:10.718 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:05:10.729 INFO [31487]: COREGRADE is stopping... -- 09:05:10.729 DEBUG [31487]: Closing database connection -- 09:05:10.729 SQL [31487]: pgsql_close() -- 09:05:10.732 INFO [31486]: COREGRADE is starting... -- 09:05:10.732 INFO [31486]: Version from config: 1.0 -- 09:05:10.732 DEBUG [31486]: Connecting to database... -- 09:05:10.732 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:05:10.732 SQL [31486]: pgsql_db_connect() -- 09:05:10.735 DEBUG [31486]: Database connection successful -- 09:05:10.735 INFO [31486]: _SERVER found -- 09:05:10.735 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 09:05:10.736 INFO [31486]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:05:10.736 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=alus5bib9it37fcpcb7mjqpj1s4cfbcb -- 09:05:10.736 INFO [31486]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:05:10.736 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:05:10.747 INFO [31486]: COREGRADE is stopping... -- 09:05:10.747 DEBUG [31486]: Closing database connection -- 09:05:10.747 SQL [31486]: pgsql_close() -- 09:05:14.466 INFO [31486]: COREGRADE is starting... -- 09:05:14.466 INFO [31486]: Version from config: 1.0 -- 09:05:14.466 DEBUG [31486]: Connecting to database... -- 09:05:14.466 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:05:14.466 SQL [31486]: pgsql_db_connect() -- 09:05:14.470 DEBUG [31486]: Database connection successful -- 09:05:14.470 INFO [31486]: _SERVER found -- 09:05:14.470 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 09:05:14.470 INFO [31486]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:05:14.470 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=alus5bib9it37fcpcb7mjqpj1s4cfbcb; _gat_gtag_UA_54829827_2=1 -- 09:05:14.470 INFO [31486]: QUERY_STRING = /home/terms -- 09:05:14.470 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:05:14.503 INFO [31486]: COREGRADE is stopping... -- 09:05:14.503 DEBUG [31486]: Closing database connection -- 09:05:14.503 SQL [31486]: pgsql_close() -- 09:05:14.697 INFO [31486]: COREGRADE is starting... -- 09:05:14.697 INFO [31486]: Version from config: 1.0 -- 09:05:14.697 DEBUG [31486]: Connecting to database... -- 09:05:14.697 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:05:14.697 SQL [31486]: pgsql_db_connect() -- 09:05:14.701 DEBUG [31486]: Database connection successful -- 09:05:14.701 INFO [31486]: _SERVER found -- 09:05:14.701 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 09:05:14.701 INFO [31486]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:05:14.701 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=alus5bib9it37fcpcb7mjqpj1s4cfbcb; _gat_gtag_UA_54829827_2=1 -- 09:05:14.701 INFO [31486]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 09:05:14.701 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:05:14.712 INFO [31486]: COREGRADE is stopping... -- 09:05:14.712 DEBUG [31486]: Closing database connection -- 09:05:14.712 SQL [31486]: pgsql_close() -- 09:05:14.744 INFO [31487]: COREGRADE is starting... -- 09:05:14.744 INFO [31487]: Version from config: 1.0 -- 09:05:14.744 DEBUG [31487]: Connecting to database... -- 09:05:14.744 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:05:14.744 SQL [31487]: pgsql_db_connect() -- 09:05:14.748 DEBUG [31487]: Database connection successful -- 09:05:14.748 INFO [31487]: _SERVER found -- 09:05:14.748 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 09:05:14.748 INFO [31487]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:05:14.748 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=alus5bib9it37fcpcb7mjqpj1s4cfbcb; _gat_gtag_UA_54829827_2=1 -- 09:05:14.748 INFO [31487]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:05:14.748 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:05:14.759 INFO [31487]: COREGRADE is stopping... -- 09:05:14.759 DEBUG [31487]: Closing database connection -- 09:05:14.759 SQL [31487]: pgsql_close() -- 09:05:22.296 INFO [31511]: COREGRADE is starting... -- 09:05:22.297 INFO [31511]: Version from config: 1.0 -- 09:05:22.297 DEBUG [31511]: Connecting to database... -- 09:05:22.297 DEBUG [31511]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:05:22.297 SQL [31511]: pgsql_db_connect() -- 09:05:22.301 DEBUG [31511]: Database connection successful -- 09:05:22.301 INFO [31511]: _SERVER found -- 09:05:22.301 INFO [31511]: REMOTE_ADDR = 192.168.1.13 -- 09:05:22.301 INFO [31511]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:05:22.301 INFO [31511]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=alus5bib9it37fcpcb7mjqpj1s4cfbcb; _gat_gtag_UA_54829827_2=1 -- 09:05:22.301 INFO [31511]: QUERY_STRING = /home/terms -- 09:05:22.301 INFO [31511]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:05:22.333 INFO [31511]: COREGRADE is stopping... -- 09:05:22.333 DEBUG [31511]: Closing database connection -- 09:05:22.333 SQL [31511]: pgsql_close() -- 09:05:22.762 INFO [31511]: COREGRADE is starting... -- 09:05:22.762 INFO [31511]: Version from config: 1.0 -- 09:05:22.762 DEBUG [31511]: Connecting to database... -- 09:05:22.762 DEBUG [31511]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:05:22.762 SQL [31511]: pgsql_db_connect() -- 09:05:22.769 INFO [31512]: COREGRADE is starting... -- 09:05:22.770 INFO [31512]: Version from config: 1.0 -- 09:05:22.770 DEBUG [31512]: Connecting to database... -- 09:05:22.770 DEBUG [31512]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:05:22.770 SQL [31512]: pgsql_db_connect() -- 09:05:22.766 DEBUG [31511]: Database connection successful -- 09:05:22.766 INFO [31511]: _SERVER found -- 09:05:22.766 INFO [31511]: REMOTE_ADDR = 192.168.1.13 -- 09:05:22.766 INFO [31511]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:05:22.766 INFO [31511]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=alus5bib9it37fcpcb7mjqpj1s4cfbcb; _gat_gtag_UA_54829827_2=1 -- 09:05:22.766 INFO [31511]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 09:05:22.766 INFO [31511]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:05:22.778 INFO [31511]: COREGRADE is stopping... -- 09:05:22.778 DEBUG [31511]: Closing database connection -- 09:05:22.778 SQL [31511]: pgsql_close() -- 09:05:22.774 DEBUG [31512]: Database connection successful -- 09:05:22.774 INFO [31512]: _SERVER found -- 09:05:22.774 INFO [31512]: REMOTE_ADDR = 192.168.1.13 -- 09:05:22.774 INFO [31512]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:05:22.774 INFO [31512]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=alus5bib9it37fcpcb7mjqpj1s4cfbcb; _gat_gtag_UA_54829827_2=1 -- 09:05:22.774 INFO [31512]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:05:22.774 INFO [31512]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:05:22.786 INFO [31512]: COREGRADE is stopping... -- 09:05:22.786 DEBUG [31512]: Closing database connection -- 09:05:22.786 SQL [31512]: pgsql_close() -- 09:08:15.592 INFO [31513]: COREGRADE is starting... -- 09:08:15.592 INFO [31513]: Version from config: 1.0 -- 09:08:15.592 DEBUG [31513]: Connecting to database... -- 09:08:15.592 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:08:15.592 SQL [31513]: pgsql_db_connect() -- 09:08:15.596 DEBUG [31513]: Database connection successful -- 09:08:15.596 INFO [31513]: _SERVER found -- 09:08:15.596 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 09:08:15.596 INFO [31513]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:08:15.596 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=alus5bib9it37fcpcb7mjqpj1s4cfbcb -- 09:08:15.596 INFO [31513]: QUERY_STRING = /home/terms -- 09:08:15.596 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:08:15.630 INFO [31513]: COREGRADE is stopping... -- 09:08:15.630 DEBUG [31513]: Closing database connection -- 09:08:15.630 SQL [31513]: pgsql_close() -- 09:08:15.853 INFO [31513]: COREGRADE is starting... -- 09:08:15.853 INFO [31513]: Version from config: 1.0 -- 09:08:15.854 DEBUG [31513]: Connecting to database... -- 09:08:15.854 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:08:15.854 SQL [31513]: pgsql_db_connect() -- 09:08:15.860 INFO [31649]: COREGRADE is starting... -- 09:08:15.861 INFO [31649]: Version from config: 1.0 -- 09:08:15.861 DEBUG [31649]: Connecting to database... -- 09:08:15.861 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:08:15.861 SQL [31649]: pgsql_db_connect() -- 09:08:15.858 DEBUG [31513]: Database connection successful -- 09:08:15.858 INFO [31513]: _SERVER found -- 09:08:15.858 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 09:08:15.858 INFO [31513]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:08:15.858 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=ipsgvbm3ti3h63u96km2d4l17rfthqvo -- 09:08:15.858 INFO [31513]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 09:08:15.858 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:08:15.869 INFO [31513]: COREGRADE is stopping... -- 09:08:15.869 DEBUG [31513]: Closing database connection -- 09:08:15.869 SQL [31513]: pgsql_close() -- 09:08:15.864 DEBUG [31649]: Database connection successful -- 09:08:15.864 INFO [31649]: _SERVER found -- 09:08:15.864 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 09:08:15.864 INFO [31649]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:08:15.864 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=ipsgvbm3ti3h63u96km2d4l17rfthqvo -- 09:08:15.864 INFO [31649]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:08:15.864 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:08:15.876 INFO [31649]: COREGRADE is stopping... -- 09:08:15.877 DEBUG [31649]: Closing database connection -- 09:08:15.877 SQL [31649]: pgsql_close() -- 09:08:18.504 INFO [31649]: COREGRADE is starting... -- 09:08:18.504 INFO [31649]: Version from config: 1.0 -- 09:08:18.504 DEBUG [31649]: Connecting to database... -- 09:08:18.504 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:08:18.504 SQL [31649]: pgsql_db_connect() -- 09:08:18.508 DEBUG [31649]: Database connection successful -- 09:08:18.508 INFO [31649]: _SERVER found -- 09:08:18.508 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 09:08:18.508 INFO [31649]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:08:18.508 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=ipsgvbm3ti3h63u96km2d4l17rfthqvo -- 09:08:18.508 INFO [31649]: QUERY_STRING = /home/terms -- 09:08:18.508 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:08:18.543 INFO [31649]: COREGRADE is stopping... -- 09:08:18.543 DEBUG [31649]: Closing database connection -- 09:08:18.543 SQL [31649]: pgsql_close() -- 09:08:18.744 INFO [31649]: COREGRADE is starting... -- 09:08:18.744 INFO [31649]: Version from config: 1.0 -- 09:08:18.744 DEBUG [31649]: Connecting to database... -- 09:08:18.744 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:08:18.744 SQL [31649]: pgsql_db_connect() -- 09:08:18.748 DEBUG [31649]: Database connection successful -- 09:08:18.748 INFO [31649]: _SERVER found -- 09:08:18.748 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 09:08:18.748 INFO [31649]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:08:18.748 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=ipsgvbm3ti3h63u96km2d4l17rfthqvo -- 09:08:18.748 INFO [31649]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:08:18.748 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:08:18.760 INFO [31649]: COREGRADE is stopping... -- 09:08:18.760 DEBUG [31649]: Closing database connection -- 09:08:18.760 SQL [31649]: pgsql_close() -- 09:08:46.399 INFO [31488]: COREGRADE is starting... -- 09:08:46.399 INFO [31488]: Version from config: 1.0 -- 09:08:46.399 DEBUG [31488]: Connecting to database... -- 09:08:46.399 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:08:46.399 SQL [31488]: pgsql_db_connect() -- 09:08:46.404 DEBUG [31488]: Database connection successful -- 09:08:46.404 INFO [31488]: _SERVER found -- 09:08:46.404 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 09:08:46.404 INFO [31488]: SERVER_NAME = oameye.works.coregrade.com -- 09:08:46.404 INFO [31488]: QUERY_STRING = -- 09:08:46.404 INFO [31488]: HTTP_X_FORWARDED_FOR = 167.86.114.167 -- 09:08:46.446 INFO [31488]: COREGRADE is stopping... -- 09:08:46.446 DEBUG [31488]: Closing database connection -- 09:08:46.446 SQL [31488]: pgsql_close() -- 09:09:15.576 INFO [31485]: COREGRADE is starting... -- 09:09:15.577 INFO [31485]: Version from config: 1.0 -- 09:09:15.577 DEBUG [31485]: Connecting to database... -- 09:09:15.577 DEBUG [31485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:15.577 SQL [31485]: pgsql_db_connect() -- 09:09:15.581 DEBUG [31485]: Database connection successful -- 09:09:15.581 INFO [31485]: _SERVER found -- 09:09:15.581 INFO [31485]: REMOTE_ADDR = 192.168.1.13 -- 09:09:15.581 INFO [31485]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:09:15.581 INFO [31485]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=ipsgvbm3ti3h63u96km2d4l17rfthqvo -- 09:09:15.581 INFO [31485]: QUERY_STRING = /home/terms -- 09:09:15.581 INFO [31485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:09:15.613 INFO [31485]: COREGRADE is stopping... -- 09:09:15.613 DEBUG [31485]: Closing database connection -- 09:09:15.613 SQL [31485]: pgsql_close() -- 09:09:15.942 INFO [31484]: COREGRADE is starting... -- 09:09:15.942 INFO [31484]: Version from config: 1.0 -- 09:09:15.942 DEBUG [31484]: Connecting to database... -- 09:09:15.942 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:15.942 SQL [31484]: pgsql_db_connect() -- 09:09:15.946 DEBUG [31484]: Database connection successful -- 09:09:15.946 INFO [31484]: _SERVER found -- 09:09:15.946 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 09:09:15.946 INFO [31484]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:09:15.946 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=ipsgvbm3ti3h63u96km2d4l17rfthqvo -- 09:09:15.946 INFO [31484]: QUERY_STRING = /favicon.ico -- 09:09:15.946 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:09:15.958 INFO [31484]: COREGRADE is stopping... -- 09:09:15.958 DEBUG [31484]: Closing database connection -- 09:09:15.958 SQL [31484]: pgsql_close() -- 09:09:41.734 INFO [31486]: COREGRADE is starting... -- 09:09:41.735 INFO [31486]: Version from config: 1.0 -- 09:09:41.735 DEBUG [31486]: Connecting to database... -- 09:09:41.735 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:41.735 SQL [31486]: pgsql_db_connect() -- 09:09:41.739 DEBUG [31486]: Database connection successful -- 09:09:41.739 INFO [31486]: _SERVER found -- 09:09:41.739 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 09:09:41.739 INFO [31486]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:09:41.739 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=ipsgvbm3ti3h63u96km2d4l17rfthqvo -- 09:09:41.739 INFO [31486]: QUERY_STRING = /home/terms -- 09:09:41.739 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:09:41.776 INFO [31486]: COREGRADE is stopping... -- 09:09:41.776 DEBUG [31486]: Closing database connection -- 09:09:41.776 SQL [31486]: pgsql_close() -- 09:09:42.021 INFO [31486]: COREGRADE is starting... -- 09:09:42.021 INFO [31486]: Version from config: 1.0 -- 09:09:42.021 DEBUG [31486]: Connecting to database... -- 09:09:42.021 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:42.021 SQL [31486]: pgsql_db_connect() -- 09:09:42.025 DEBUG [31486]: Database connection successful -- 09:09:42.025 INFO [31486]: _SERVER found -- 09:09:42.025 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 09:09:42.025 INFO [31486]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:09:42.025 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=ipsgvbm3ti3h63u96km2d4l17rfthqvo -- 09:09:42.025 INFO [31486]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 09:09:42.025 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:09:42.037 INFO [31486]: COREGRADE is stopping... -- 09:09:42.037 DEBUG [31486]: Closing database connection -- 09:09:42.037 SQL [31486]: pgsql_close() -- 09:09:42.093 INFO [31486]: COREGRADE is starting... -- 09:09:42.094 INFO [31486]: Version from config: 1.0 -- 09:09:42.094 DEBUG [31486]: Connecting to database... -- 09:09:42.094 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:42.094 SQL [31486]: pgsql_db_connect() -- 09:09:42.098 DEBUG [31486]: Database connection successful -- 09:09:42.098 INFO [31486]: _SERVER found -- 09:09:42.098 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 09:09:42.098 INFO [31486]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:09:42.098 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=ipsgvbm3ti3h63u96km2d4l17rfthqvo -- 09:09:42.098 INFO [31486]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:09:42.098 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:09:42.109 INFO [31486]: COREGRADE is stopping... -- 09:09:42.109 DEBUG [31486]: Closing database connection -- 09:09:42.109 SQL [31486]: pgsql_close() -- 09:09:57.803 INFO [31487]: COREGRADE is starting... -- 09:09:57.803 INFO [31487]: Version from config: 1.0 -- 09:09:57.803 DEBUG [31487]: Connecting to database... -- 09:09:57.803 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:57.803 SQL [31487]: pgsql_db_connect() -- 09:09:57.807 DEBUG [31487]: Database connection successful -- 09:09:57.807 INFO [31487]: _SERVER found -- 09:09:57.808 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 09:09:57.808 INFO [31487]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:09:57.808 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=ipsgvbm3ti3h63u96km2d4l17rfthqvo -- 09:09:57.808 INFO [31487]: QUERY_STRING = -- 09:09:57.808 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:09:57.840 INFO [31487]: COREGRADE is stopping... -- 09:09:57.840 DEBUG [31487]: Closing database connection -- 09:09:57.840 SQL [31487]: pgsql_close() -- 09:09:58.216 INFO [31487]: COREGRADE is starting... -- 09:09:58.216 INFO [31487]: Version from config: 1.0 -- 09:09:58.216 DEBUG [31487]: Connecting to database... -- 09:09:58.216 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:58.216 SQL [31487]: pgsql_db_connect() -- 09:09:58.222 INFO [31511]: COREGRADE is starting... -- 09:09:58.223 INFO [31511]: Version from config: 1.0 -- 09:09:58.223 DEBUG [31511]: Connecting to database... -- 09:09:58.223 DEBUG [31511]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:58.223 SQL [31511]: pgsql_db_connect() -- 09:09:58.220 DEBUG [31487]: Database connection successful -- 09:09:58.220 INFO [31487]: _SERVER found -- 09:09:58.220 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 09:09:58.220 INFO [31487]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:09:58.220 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=ipsgvbm3ti3h63u96km2d4l17rfthqvo -- 09:09:58.220 INFO [31487]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:09:58.220 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:09:58.232 INFO [31487]: COREGRADE is stopping... -- 09:09:58.232 DEBUG [31487]: Closing database connection -- 09:09:58.232 SQL [31487]: pgsql_close() -- 09:09:58.227 DEBUG [31511]: Database connection successful -- 09:09:58.227 INFO [31511]: _SERVER found -- 09:09:58.227 INFO [31511]: REMOTE_ADDR = 192.168.1.13 -- 09:09:58.227 INFO [31511]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:09:58.227 INFO [31511]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=ipsgvbm3ti3h63u96km2d4l17rfthqvo -- 09:09:58.227 INFO [31511]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:09:58.227 INFO [31511]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:09:58.238 INFO [31511]: COREGRADE is stopping... -- 09:09:58.238 DEBUG [31511]: Closing database connection -- 09:09:58.238 SQL [31511]: pgsql_close() -- 09:09:59.575 INFO [31511]: COREGRADE is starting... -- 09:09:59.575 INFO [31511]: Version from config: 1.0 -- 09:09:59.575 DEBUG [31511]: Connecting to database... -- 09:09:59.575 DEBUG [31511]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:59.575 SQL [31511]: pgsql_db_connect() -- 09:09:59.594 INFO [31487]: COREGRADE is starting... -- 09:09:59.594 INFO [31487]: Version from config: 1.0 -- 09:09:59.594 DEBUG [31487]: Connecting to database... -- 09:09:59.594 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:59.594 SQL [31487]: pgsql_db_connect() -- 09:09:59.580 DEBUG [31511]: Database connection successful -- 09:09:59.580 INFO [31511]: _SERVER found -- 09:09:59.580 INFO [31511]: REMOTE_ADDR = 192.168.1.13 -- 09:09:59.580 INFO [31511]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:09:59.580 INFO [31511]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=ipsgvbm3ti3h63u96km2d4l17rfthqvo; _gat_gtag_UA_54829827_2=1 -- 09:09:59.580 INFO [31511]: QUERY_STRING = /welcome/viewLogin -- 09:09:59.580 INFO [31511]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:09:59.610 INFO [31511]: COREGRADE is stopping... -- 09:09:59.610 DEBUG [31511]: Closing database connection -- 09:09:59.610 SQL [31511]: pgsql_close() -- 09:09:59.627 INFO [31511]: COREGRADE is starting... -- 09:09:59.627 INFO [31511]: Version from config: 1.0 -- 09:09:59.627 DEBUG [31511]: Connecting to database... -- 09:09:59.627 DEBUG [31511]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:59.627 SQL [31511]: pgsql_db_connect() -- 09:09:59.598 DEBUG [31487]: Database connection successful -- 09:09:59.598 INFO [31487]: _SERVER found -- 09:09:59.598 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 09:09:59.598 INFO [31487]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:09:59.598 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=ipsgvbm3ti3h63u96km2d4l17rfthqvo; _gat_gtag_UA_54829827_2=1 -- 09:09:59.598 INFO [31487]: QUERY_STRING = /auth -- 09:09:59.598 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:09:59.630 INFO [31487]: COREGRADE is stopping... -- 09:09:59.630 DEBUG [31487]: Closing database connection -- 09:09:59.630 SQL [31487]: pgsql_close() -- 09:09:59.631 DEBUG [31511]: Database connection successful -- 09:09:59.631 INFO [31511]: _SERVER found -- 09:09:59.631 INFO [31511]: REMOTE_ADDR = 192.168.1.13 -- 09:09:59.631 INFO [31511]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:09:59.631 INFO [31511]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=ipsgvbm3ti3h63u96km2d4l17rfthqvo; _gat_gtag_UA_54829827_2=1 -- 09:09:59.631 INFO [31511]: QUERY_STRING = /auth/index -- 09:09:59.631 INFO [31511]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:09:59.663 INFO [31511]: COREGRADE is stopping... -- 09:09:59.663 DEBUG [31511]: Closing database connection -- 09:09:59.663 SQL [31511]: pgsql_close() -- 09:09:59.916 INFO [31511]: COREGRADE is starting... -- 09:09:59.916 INFO [31511]: Version from config: 1.0 -- 09:09:59.916 DEBUG [31511]: Connecting to database... -- 09:09:59.916 DEBUG [31511]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:59.916 SQL [31511]: pgsql_db_connect() -- 09:09:59.921 DEBUG [31511]: Database connection successful -- 09:09:59.921 INFO [31511]: _SERVER found -- 09:09:59.921 INFO [31511]: REMOTE_ADDR = 192.168.1.13 -- 09:09:59.921 INFO [31511]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:09:59.921 INFO [31511]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=ipsgvbm3ti3h63u96km2d4l17rfthqvo; _gat_gtag_UA_54829827_2=1 -- 09:09:59.921 INFO [31511]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 09:09:59.921 INFO [31511]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:09:59.932 INFO [31511]: COREGRADE is stopping... -- 09:09:59.932 DEBUG [31511]: Closing database connection -- 09:09:59.932 SQL [31511]: pgsql_close() -- 09:09:59.935 INFO [31511]: COREGRADE is starting... -- 09:09:59.935 INFO [31511]: Version from config: 1.0 -- 09:09:59.935 DEBUG [31511]: Connecting to database... -- 09:09:59.936 DEBUG [31511]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:59.936 SQL [31511]: pgsql_db_connect() -- 09:09:59.939 DEBUG [31511]: Database connection successful -- 09:09:59.939 INFO [31511]: _SERVER found -- 09:09:59.939 INFO [31511]: REMOTE_ADDR = 192.168.1.13 -- 09:09:59.939 INFO [31511]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:09:59.939 INFO [31511]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=ipsgvbm3ti3h63u96km2d4l17rfthqvo; _gat_gtag_UA_54829827_2=1 -- 09:09:59.939 INFO [31511]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:09:59.939 INFO [31511]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:09:59.950 INFO [31511]: COREGRADE is stopping... -- 09:09:59.950 DEBUG [31511]: Closing database connection -- 09:09:59.950 SQL [31511]: pgsql_close() -- 09:10:01.845 INFO [31511]: COREGRADE is starting... -- 09:10:01.845 INFO [31511]: Version from config: 1.0 -- 09:10:01.845 DEBUG [31511]: Connecting to database... -- 09:10:01.845 DEBUG [31511]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:10:01.845 SQL [31511]: pgsql_db_connect() -- 09:10:01.850 DEBUG [31511]: Database connection successful -- 09:10:01.850 INFO [31511]: _SERVER found -- 09:10:01.850 INFO [31511]: REMOTE_ADDR = 192.168.1.13 -- 09:10:01.850 INFO [31511]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:10:01.850 INFO [31511]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=ipsgvbm3ti3h63u96km2d4l17rfthqvo; _gat_gtag_UA_54829827_2=1 -- 09:10:01.850 INFO [31511]: QUERY_STRING = /auth -- 09:10:01.850 INFO [31511]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:10:01.914 INFO [31511]: COREGRADE is starting... -- 09:10:01.914 INFO [31511]: Version from config: 1.0 -- 09:10:01.914 DEBUG [31511]: Connecting to database... -- 09:10:01.914 DEBUG [31511]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:10:01.914 SQL [31511]: pgsql_db_connect() -- 09:10:01.918 DEBUG [31511]: Database connection successful -- 09:10:01.918 INFO [31511]: _SERVER found -- 09:10:01.918 INFO [31511]: REMOTE_ADDR = 192.168.1.13 -- 09:10:01.918 INFO [31511]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:10:01.918 INFO [31511]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=ipsgvbm3ti3h63u96km2d4l17rfthqvo; _gat_gtag_UA_54829827_2=1 -- 09:10:01.918 INFO [31511]: QUERY_STRING = /member/index -- 09:10:01.918 INFO [31511]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:10:01.959 INFO [31511]: COREGRADE is stopping... -- 09:10:01.959 DEBUG [31511]: Closing database connection -- 09:10:01.959 SQL [31511]: pgsql_close() -- 09:10:02.341 INFO [31512]: COREGRADE is starting... -- 09:10:02.341 INFO [31512]: Version from config: 1.0 -- 09:10:02.341 DEBUG [31512]: Connecting to database... -- 09:10:02.342 DEBUG [31512]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:10:02.342 SQL [31512]: pgsql_db_connect() -- 09:10:02.346 DEBUG [31512]: Database connection successful -- 09:10:02.346 INFO [31512]: _SERVER found -- 09:10:02.346 INFO [31512]: REMOTE_ADDR = 192.168.1.13 -- 09:10:02.346 INFO [31512]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:10:02.346 INFO [31512]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=ipsgvbm3ti3h63u96km2d4l17rfthqvo; _gat_gtag_UA_54829827_2=1 -- 09:10:02.346 INFO [31512]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 09:10:02.346 INFO [31512]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:10:02.358 INFO [31512]: COREGRADE is stopping... -- 09:10:02.358 DEBUG [31512]: Closing database connection -- 09:10:02.358 SQL [31512]: pgsql_close() -- 09:10:02.477 INFO [31512]: COREGRADE is starting... -- 09:10:02.477 INFO [31512]: Version from config: 1.0 -- 09:10:02.477 DEBUG [31512]: Connecting to database... -- 09:10:02.477 DEBUG [31512]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:10:02.477 SQL [31512]: pgsql_db_connect() -- 09:10:02.481 DEBUG [31512]: Database connection successful -- 09:10:02.481 INFO [31512]: _SERVER found -- 09:10:02.481 INFO [31512]: REMOTE_ADDR = 192.168.1.13 -- 09:10:02.481 INFO [31512]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:10:02.481 INFO [31512]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=ipsgvbm3ti3h63u96km2d4l17rfthqvo; _gat_gtag_UA_54829827_2=1 -- 09:10:02.481 INFO [31512]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:10:02.481 INFO [31512]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:10:02.493 INFO [31512]: COREGRADE is stopping... -- 09:10:02.493 DEBUG [31512]: Closing database connection -- 09:10:02.493 SQL [31512]: pgsql_close() -- 09:12:19.177 INFO [31649]: COREGRADE is starting... -- 09:12:19.178 INFO [31649]: Version from config: 1.0 -- 09:12:19.178 DEBUG [31649]: Connecting to database... -- 09:12:19.178 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:12:19.178 SQL [31649]: pgsql_db_connect() -- 09:12:19.182 DEBUG [31649]: Database connection successful -- 09:12:19.182 INFO [31649]: _SERVER found -- 09:12:19.182 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 09:12:19.182 INFO [31649]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:12:19.182 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=ipsgvbm3ti3h63u96km2d4l17rfthqvo -- 09:12:19.182 INFO [31649]: QUERY_STRING = /auth/logout -- 09:12:19.182 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:12:19.218 INFO [31649]: COREGRADE is stopping... -- 09:12:19.218 DEBUG [31649]: Closing database connection -- 09:12:19.218 SQL [31649]: pgsql_close() -- 09:12:19.501 INFO [31649]: COREGRADE is starting... -- 09:12:19.502 INFO [31649]: Version from config: 1.0 -- 09:12:19.502 DEBUG [31649]: Connecting to database... -- 09:12:19.502 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:12:19.502 SQL [31649]: pgsql_db_connect() -- 09:12:19.515 INFO [31488]: COREGRADE is starting... -- 09:12:19.515 INFO [31488]: Version from config: 1.0 -- 09:12:19.515 DEBUG [31488]: Connecting to database... -- 09:12:19.515 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:12:19.515 SQL [31488]: pgsql_db_connect() -- 09:12:19.506 DEBUG [31649]: Database connection successful -- 09:12:19.506 INFO [31649]: _SERVER found -- 09:12:19.506 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 09:12:19.506 INFO [31649]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:12:19.506 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=ipsgvbm3ti3h63u96km2d4l17rfthqvo -- 09:12:19.506 INFO [31649]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 09:12:19.506 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:12:19.517 INFO [31649]: COREGRADE is stopping... -- 09:12:19.517 DEBUG [31649]: Closing database connection -- 09:12:19.517 SQL [31649]: pgsql_close() -- 09:12:19.519 DEBUG [31488]: Database connection successful -- 09:12:19.519 INFO [31488]: _SERVER found -- 09:12:19.519 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 09:12:19.519 INFO [31488]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:12:19.519 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=ipsgvbm3ti3h63u96km2d4l17rfthqvo -- 09:12:19.519 INFO [31488]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:12:19.519 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:12:19.531 INFO [31488]: COREGRADE is stopping... -- 09:12:19.531 DEBUG [31488]: Closing database connection -- 09:12:19.531 SQL [31488]: pgsql_close() -- 09:12:22.233 INFO [31488]: COREGRADE is starting... -- 09:12:22.233 INFO [31488]: Version from config: 1.0 -- 09:12:22.233 DEBUG [31488]: Connecting to database... -- 09:12:22.233 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:12:22.233 SQL [31488]: pgsql_db_connect() -- 09:12:22.237 DEBUG [31488]: Database connection successful -- 09:12:22.237 INFO [31488]: _SERVER found -- 09:12:22.237 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 09:12:22.237 INFO [31488]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:12:22.237 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=ipsgvbm3ti3h63u96km2d4l17rfthqvo -- 09:12:22.237 INFO [31488]: QUERY_STRING = -- 09:12:22.237 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:12:22.269 INFO [31488]: COREGRADE is stopping... -- 09:12:22.269 DEBUG [31488]: Closing database connection -- 09:12:22.269 SQL [31488]: pgsql_close() -- 09:12:22.438 INFO [31488]: COREGRADE is starting... -- 09:12:22.438 INFO [31649]: COREGRADE is starting... -- 09:12:22.438 INFO [31649]: Version from config: 1.0 -- 09:12:22.438 DEBUG [31649]: Connecting to database... -- 09:12:22.438 INFO [31488]: Version from config: 1.0 -- 09:12:22.438 DEBUG [31488]: Connecting to database... -- 09:12:22.438 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:12:22.438 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:12:22.438 SQL [31649]: pgsql_db_connect() -- 09:12:22.438 SQL [31488]: pgsql_db_connect() -- 09:12:22.442 DEBUG [31488]: Database connection successful -- 09:12:22.442 INFO [31488]: _SERVER found -- 09:12:22.442 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 09:12:22.442 INFO [31488]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:12:22.442 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=ipsgvbm3ti3h63u96km2d4l17rfthqvo -- 09:12:22.442 INFO [31488]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:12:22.442 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:12:22.454 INFO [31488]: COREGRADE is stopping... -- 09:12:22.454 DEBUG [31488]: Closing database connection -- 09:12:22.454 SQL [31488]: pgsql_close() -- 09:12:22.442 DEBUG [31649]: Database connection successful -- 09:12:22.442 INFO [31649]: _SERVER found -- 09:12:22.442 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 09:12:22.442 INFO [31649]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:12:22.442 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=ipsgvbm3ti3h63u96km2d4l17rfthqvo -- 09:12:22.442 INFO [31649]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:12:22.442 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:12:22.454 INFO [31649]: COREGRADE is stopping... -- 09:12:22.454 DEBUG [31649]: Closing database connection -- 09:12:22.454 SQL [31649]: pgsql_close() -- 09:12:26.722 INFO [31649]: COREGRADE is starting... -- 09:12:26.723 INFO [31649]: Version from config: 1.0 -- 09:12:26.723 DEBUG [31649]: Connecting to database... -- 09:12:26.723 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:12:26.723 SQL [31649]: pgsql_db_connect() -- 09:12:26.727 DEBUG [31649]: Database connection successful -- 09:12:26.727 INFO [31649]: _SERVER found -- 09:12:26.727 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 09:12:26.727 INFO [31649]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:12:26.727 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=ipsgvbm3ti3h63u96km2d4l17rfthqvo; _gat_gtag_UA_54829827_2=1 -- 09:12:26.727 INFO [31649]: QUERY_STRING = /home/terms -- 09:12:26.727 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:12:26.763 INFO [31649]: COREGRADE is stopping... -- 09:12:26.763 DEBUG [31649]: Closing database connection -- 09:12:26.763 SQL [31649]: pgsql_close() -- 09:12:27.661 INFO [31649]: COREGRADE is starting... -- 09:12:27.661 INFO [31649]: Version from config: 1.0 -- 09:12:27.661 DEBUG [31649]: Connecting to database... -- 09:12:27.661 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:12:27.661 SQL [31649]: pgsql_db_connect() -- 09:12:27.665 DEBUG [31649]: Database connection successful -- 09:12:27.665 INFO [31649]: _SERVER found -- 09:12:27.665 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 09:12:27.665 INFO [31649]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:12:27.665 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=ipsgvbm3ti3h63u96km2d4l17rfthqvo; _gat_gtag_UA_54829827_2=1 -- 09:12:27.665 INFO [31649]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 09:12:27.665 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:12:27.677 INFO [31649]: COREGRADE is stopping... -- 09:12:27.677 DEBUG [31649]: Closing database connection -- 09:12:27.677 SQL [31649]: pgsql_close() -- 09:12:27.709 INFO [31649]: COREGRADE is starting... -- 09:12:27.709 INFO [31649]: Version from config: 1.0 -- 09:12:27.709 DEBUG [31649]: Connecting to database... -- 09:12:27.709 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:12:27.710 SQL [31649]: pgsql_db_connect() -- 09:12:27.713 DEBUG [31649]: Database connection successful -- 09:12:27.713 INFO [31649]: _SERVER found -- 09:12:27.713 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 09:12:27.713 INFO [31649]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:12:27.713 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=ipsgvbm3ti3h63u96km2d4l17rfthqvo; _gat_gtag_UA_54829827_2=1 -- 09:12:27.713 INFO [31649]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:12:27.713 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:12:27.725 INFO [31649]: COREGRADE is stopping... -- 09:12:27.725 DEBUG [31649]: Closing database connection -- 09:12:27.725 SQL [31649]: pgsql_close() -- 09:13:04.008 INFO [31485]: COREGRADE is starting... -- 09:13:04.008 INFO [31485]: Version from config: 1.0 -- 09:13:04.008 DEBUG [31485]: Connecting to database... -- 09:13:04.008 DEBUG [31485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:13:04.008 SQL [31485]: pgsql_db_connect() -- 09:13:04.012 DEBUG [31485]: Database connection successful -- 09:13:04.012 INFO [31485]: _SERVER found -- 09:13:04.012 INFO [31485]: REMOTE_ADDR = 192.168.1.13 -- 09:13:04.012 INFO [31485]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:13:04.012 INFO [31485]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=ipsgvbm3ti3h63u96km2d4l17rfthqvo; _gat_gtag_UA_54829827_2=1 -- 09:13:04.012 INFO [31485]: QUERY_STRING = /home/terms -- 09:13:04.012 INFO [31485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:13:04.046 INFO [31485]: COREGRADE is stopping... -- 09:13:04.046 DEBUG [31485]: Closing database connection -- 09:13:04.046 SQL [31485]: pgsql_close() -- 09:13:04.315 INFO [31485]: COREGRADE is starting... -- 09:13:04.315 INFO [31485]: Version from config: 1.0 -- 09:13:04.315 DEBUG [31485]: Connecting to database... -- 09:13:04.315 DEBUG [31485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:13:04.315 SQL [31485]: pgsql_db_connect() -- 09:13:04.319 DEBUG [31485]: Database connection successful -- 09:13:04.319 INFO [31485]: _SERVER found -- 09:13:04.319 INFO [31485]: REMOTE_ADDR = 192.168.1.13 -- 09:13:04.319 INFO [31485]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:13:04.319 INFO [31485]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=ipsgvbm3ti3h63u96km2d4l17rfthqvo; _gat_gtag_UA_54829827_2=1 -- 09:13:04.319 INFO [31485]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 09:13:04.319 INFO [31485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:13:04.331 INFO [31485]: COREGRADE is stopping... -- 09:13:04.331 DEBUG [31485]: Closing database connection -- 09:13:04.331 SQL [31485]: pgsql_close() -- 09:13:04.331 INFO [31484]: COREGRADE is starting... -- 09:13:04.331 INFO [31484]: Version from config: 1.0 -- 09:13:04.331 DEBUG [31484]: Connecting to database... -- 09:13:04.331 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:13:04.331 SQL [31484]: pgsql_db_connect() -- 09:13:04.335 DEBUG [31484]: Database connection successful -- 09:13:04.335 INFO [31484]: _SERVER found -- 09:13:04.335 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 09:13:04.335 INFO [31484]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:13:04.335 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=ipsgvbm3ti3h63u96km2d4l17rfthqvo; _gat_gtag_UA_54829827_2=1 -- 09:13:04.335 INFO [31484]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:13:04.335 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:13:04.347 INFO [31484]: COREGRADE is stopping... -- 09:13:04.347 DEBUG [31484]: Closing database connection -- 09:13:04.347 SQL [31484]: pgsql_close() -- 09:13:34.198 INFO [31486]: COREGRADE is starting... -- 09:13:34.198 INFO [31486]: Version from config: 1.0 -- 09:13:34.198 DEBUG [31486]: Connecting to database... -- 09:13:34.198 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:13:34.198 SQL [31486]: pgsql_db_connect() -- 09:13:34.202 DEBUG [31486]: Database connection successful -- 09:13:34.202 INFO [31486]: _SERVER found -- 09:13:34.202 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 09:13:34.202 INFO [31486]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:13:34.202 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=ipsgvbm3ti3h63u96km2d4l17rfthqvo -- 09:13:34.202 INFO [31486]: QUERY_STRING = /home/terms -- 09:13:34.202 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:13:34.237 INFO [31486]: COREGRADE is stopping... -- 09:13:34.237 DEBUG [31486]: Closing database connection -- 09:13:34.237 SQL [31486]: pgsql_close() -- 09:13:34.671 INFO [31486]: COREGRADE is starting... -- 09:13:34.671 INFO [31486]: Version from config: 1.0 -- 09:13:34.671 DEBUG [31486]: Connecting to database... -- 09:13:34.671 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:13:34.671 SQL [31486]: pgsql_db_connect() -- 09:13:34.683 INFO [31487]: COREGRADE is starting... -- 09:13:34.683 INFO [31487]: Version from config: 1.0 -- 09:13:34.683 DEBUG [31487]: Connecting to database... -- 09:13:34.683 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:13:34.683 SQL [31487]: pgsql_db_connect() -- 09:13:34.675 DEBUG [31486]: Database connection successful -- 09:13:34.675 INFO [31486]: _SERVER found -- 09:13:34.675 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 09:13:34.675 INFO [31486]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:13:34.675 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=j6u7o3v2fnmdlca13hj5f71mlatne891 -- 09:13:34.675 INFO [31486]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 09:13:34.675 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:13:34.686 INFO [31486]: COREGRADE is stopping... -- 09:13:34.686 DEBUG [31486]: Closing database connection -- 09:13:34.686 SQL [31486]: pgsql_close() -- 09:13:34.687 DEBUG [31487]: Database connection successful -- 09:13:34.687 INFO [31487]: _SERVER found -- 09:13:34.687 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 09:13:34.687 INFO [31487]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:13:34.687 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=j6u7o3v2fnmdlca13hj5f71mlatne891 -- 09:13:34.687 INFO [31487]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:13:34.687 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:13:34.699 INFO [31487]: COREGRADE is stopping... -- 09:13:34.699 DEBUG [31487]: Closing database connection -- 09:13:34.699 SQL [31487]: pgsql_close() -- 09:13:55.211 INFO [31513]: COREGRADE is starting... -- 09:13:55.211 INFO [31513]: Version from config: 1.0 -- 09:13:55.211 DEBUG [31513]: Connecting to database... -- 09:13:55.211 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:13:55.211 SQL [31513]: pgsql_db_connect() -- 09:13:55.215 DEBUG [31513]: Database connection successful -- 09:13:55.215 INFO [31513]: _SERVER found -- 09:13:55.215 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 09:13:55.215 INFO [31513]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:13:55.215 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=j6u7o3v2fnmdlca13hj5f71mlatne891 -- 09:13:55.215 INFO [31513]: QUERY_STRING = /home/terms -- 09:13:55.215 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:13:55.249 INFO [31513]: COREGRADE is stopping... -- 09:13:55.249 DEBUG [31513]: Closing database connection -- 09:13:55.249 SQL [31513]: pgsql_close() -- 09:13:55.672 INFO [31513]: COREGRADE is starting... -- 09:13:55.672 INFO [31513]: Version from config: 1.0 -- 09:13:55.672 DEBUG [31513]: Connecting to database... -- 09:13:55.672 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:13:55.672 SQL [31513]: pgsql_db_connect() -- 09:13:55.682 INFO [31511]: COREGRADE is starting... -- 09:13:55.682 INFO [31511]: Version from config: 1.0 -- 09:13:55.682 DEBUG [31511]: Connecting to database... -- 09:13:55.682 DEBUG [31511]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:13:55.682 SQL [31511]: pgsql_db_connect() -- 09:13:55.676 DEBUG [31513]: Database connection successful -- 09:13:55.676 INFO [31513]: _SERVER found -- 09:13:55.676 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 09:13:55.676 INFO [31513]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:13:55.676 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=j6u7o3v2fnmdlca13hj5f71mlatne891 -- 09:13:55.676 INFO [31513]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 09:13:55.676 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:13:55.688 INFO [31513]: COREGRADE is stopping... -- 09:13:55.688 DEBUG [31513]: Closing database connection -- 09:13:55.688 SQL [31513]: pgsql_close() -- 09:13:55.686 DEBUG [31511]: Database connection successful -- 09:13:55.686 INFO [31511]: _SERVER found -- 09:13:55.686 INFO [31511]: REMOTE_ADDR = 192.168.1.13 -- 09:13:55.686 INFO [31511]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:13:55.686 INFO [31511]: HTTP_COOKIE = _ga=GA1.2.719990247.1578377433; _gid=GA1.2.1599630491.1581476692; ci_session=j6u7o3v2fnmdlca13hj5f71mlatne891 -- 09:13:55.686 INFO [31511]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:13:55.686 INFO [31511]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:13:55.698 INFO [31511]: COREGRADE is stopping... -- 09:13:55.698 DEBUG [31511]: Closing database connection -- 09:13:55.698 SQL [31511]: pgsql_close() -- 09:19:35.990 INFO [31512]: COREGRADE is starting... -- 09:19:35.990 INFO [31512]: Version from config: 1.0 -- 09:19:35.990 DEBUG [31512]: Connecting to database... -- 09:19:35.990 DEBUG [31512]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:19:35.990 SQL [31512]: pgsql_db_connect() -- 09:19:35.994 DEBUG [31512]: Database connection successful -- 09:19:35.994 INFO [31512]: _SERVER found -- 09:19:35.994 INFO [31512]: REMOTE_ADDR = 192.168.1.13 -- 09:19:35.994 INFO [31512]: SERVER_NAME = oameye.works.coregrade.com -- 09:19:35.994 INFO [31512]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=j9bspgsshba3j5m6mibi4sf266mbndd8 -- 09:19:35.994 INFO [31512]: QUERY_STRING = /member/viewCardAddAction -- 09:19:35.994 INFO [31512]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:19:36.031 INFO [31512]: COREGRADE is stopping... -- 09:19:36.031 DEBUG [31512]: Closing database connection -- 09:19:36.031 SQL [31512]: pgsql_close() -- 09:19:36.756 INFO [31512]: COREGRADE is starting... -- 09:19:36.756 INFO [31512]: Version from config: 1.0 -- 09:19:36.756 DEBUG [31512]: Connecting to database... -- 09:19:36.756 DEBUG [31512]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:19:36.756 SQL [31512]: pgsql_db_connect() -- 09:19:36.760 DEBUG [31512]: Database connection successful -- 09:19:36.760 INFO [31512]: _SERVER found -- 09:19:36.760 INFO [31512]: REMOTE_ADDR = 192.168.1.13 -- 09:19:36.760 INFO [31512]: SERVER_NAME = oameye.works.coregrade.com -- 09:19:36.760 INFO [31512]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=j9bspgsshba3j5m6mibi4sf266mbndd8 -- 09:19:36.760 INFO [31512]: QUERY_STRING = /member/viewCardAddAction -- 09:19:36.760 INFO [31512]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:19:36.792 INFO [31512]: COREGRADE is stopping... -- 09:19:36.792 DEBUG [31512]: Closing database connection -- 09:19:36.792 SQL [31512]: pgsql_close() -- 09:19:37.925 INFO [31512]: COREGRADE is starting... -- 09:19:37.926 INFO [31512]: Version from config: 1.0 -- 09:19:37.926 DEBUG [31512]: Connecting to database... -- 09:19:37.926 DEBUG [31512]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:19:37.926 SQL [31512]: pgsql_db_connect() -- 09:19:37.930 DEBUG [31512]: Database connection successful -- 09:19:37.930 INFO [31512]: _SERVER found -- 09:19:37.930 INFO [31512]: REMOTE_ADDR = 192.168.1.13 -- 09:19:37.930 INFO [31512]: SERVER_NAME = oameye.works.coregrade.com -- 09:19:37.930 INFO [31512]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=j9bspgsshba3j5m6mibi4sf266mbndd8 -- 09:19:37.930 INFO [31512]: QUERY_STRING = /member/viewCardAddAction -- 09:19:37.930 INFO [31512]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:19:37.961 INFO [31512]: COREGRADE is stopping... -- 09:19:37.961 DEBUG [31512]: Closing database connection -- 09:19:37.961 SQL [31512]: pgsql_close() -- 11:17:31.075 INFO [31488]: COREGRADE is starting... -- 11:17:31.076 INFO [31488]: Version from config: 1.0 -- 11:17:31.076 DEBUG [31488]: Connecting to database... -- 11:17:31.076 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:17:31.076 SQL [31488]: pgsql_db_connect() -- 11:17:31.082 DEBUG [31488]: Database connection successful -- 11:17:31.082 INFO [31488]: _SERVER found -- 11:17:31.082 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 11:17:31.082 INFO [31488]: SERVER_NAME = oameye.works.coregrade.com -- 11:17:31.082 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=j9bspgsshba3j5m6mibi4sf266mbndd8 -- 11:17:31.082 INFO [31488]: QUERY_STRING = /auth -- 11:17:31.082 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:17:31.122 INFO [31488]: COREGRADE is stopping... -- 11:17:31.122 DEBUG [31488]: Closing database connection -- 11:17:31.122 SQL [31488]: pgsql_close() -- 11:17:31.285 INFO [31488]: COREGRADE is starting... -- 11:17:31.285 INFO [31488]: Version from config: 1.0 -- 11:17:31.285 DEBUG [31488]: Connecting to database... -- 11:17:31.285 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:17:31.285 SQL [31488]: pgsql_db_connect() -- 11:17:31.289 DEBUG [31488]: Database connection successful -- 11:17:31.289 INFO [31488]: _SERVER found -- 11:17:31.289 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 11:17:31.289 INFO [31488]: SERVER_NAME = oameye.works.coregrade.com -- 11:17:31.289 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=9bcim1efrn44fpfp0kfqhl942t2e23ci -- 11:17:31.289 INFO [31488]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:17:31.289 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:17:31.300 INFO [31488]: COREGRADE is stopping... -- 11:17:31.300 DEBUG [31488]: Closing database connection -- 11:17:31.300 SQL [31488]: pgsql_close() -- 11:17:31.478 INFO [31488]: COREGRADE is starting... -- 11:17:31.478 INFO [31488]: Version from config: 1.0 -- 11:17:31.478 DEBUG [31488]: Connecting to database... -- 11:17:31.478 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:17:31.478 SQL [31488]: pgsql_db_connect() -- 11:17:31.482 DEBUG [31488]: Database connection successful -- 11:17:31.482 INFO [31488]: _SERVER found -- 11:17:31.482 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 11:17:31.482 INFO [31488]: SERVER_NAME = oameye.works.coregrade.com -- 11:17:31.482 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=9bcim1efrn44fpfp0kfqhl942t2e23ci -- 11:17:31.482 INFO [31488]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:17:31.482 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:17:31.493 INFO [31488]: COREGRADE is stopping... -- 11:17:31.493 DEBUG [31488]: Closing database connection -- 11:17:31.493 SQL [31488]: pgsql_close() -- 18:55:27.622 INFO [31649]: COREGRADE is starting... -- 18:55:27.623 INFO [31649]: Version from config: 1.0 -- 18:55:27.623 DEBUG [31649]: Connecting to database... -- 18:55:27.623 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:27.623 SQL [31649]: pgsql_db_connect() -- 18:55:27.628 DEBUG [31649]: Database connection successful -- 18:55:27.628 INFO [31649]: _SERVER found -- 18:55:27.628 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 18:55:27.628 INFO [31649]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:55:27.628 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586 -- 18:55:27.628 INFO [31649]: QUERY_STRING = -- 18:55:27.628 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:55:27.668 INFO [31649]: COREGRADE is stopping... -- 18:55:27.668 DEBUG [31649]: Closing database connection -- 18:55:27.668 SQL [31649]: pgsql_close() -- 18:55:28.558 INFO [31649]: COREGRADE is starting... -- 18:55:28.558 INFO [31649]: Version from config: 1.0 -- 18:55:28.558 DEBUG [31649]: Connecting to database... -- 18:55:28.558 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:28.558 SQL [31649]: pgsql_db_connect() -- 18:55:28.562 DEBUG [31649]: Database connection successful -- 18:55:28.562 INFO [31649]: _SERVER found -- 18:55:28.562 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 18:55:28.562 INFO [31649]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:55:28.562 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:55:28.562 INFO [31649]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:55:28.562 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:55:28.575 INFO [31649]: COREGRADE is stopping... -- 18:55:28.575 DEBUG [31649]: Closing database connection -- 18:55:28.575 SQL [31649]: pgsql_close() -- 18:55:28.625 INFO [31649]: COREGRADE is starting... -- 18:55:28.625 INFO [31649]: Version from config: 1.0 -- 18:55:28.625 DEBUG [31649]: Connecting to database... -- 18:55:28.625 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:28.625 SQL [31649]: pgsql_db_connect() -- 18:55:28.629 DEBUG [31649]: Database connection successful -- 18:55:28.629 INFO [31649]: _SERVER found -- 18:55:28.629 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 18:55:28.629 INFO [31649]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:55:28.629 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:55:28.629 INFO [31649]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:55:28.629 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:55:28.641 INFO [31649]: COREGRADE is stopping... -- 18:55:28.641 DEBUG [31649]: Closing database connection -- 18:55:28.641 SQL [31649]: pgsql_close() -- 18:55:30.055 INFO [31649]: COREGRADE is starting... -- 18:55:30.055 INFO [31649]: Version from config: 1.0 -- 18:55:30.055 DEBUG [31649]: Connecting to database... -- 18:55:30.055 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:30.055 SQL [31649]: pgsql_db_connect() -- 18:55:30.061 INFO [31513]: COREGRADE is starting... -- 18:55:30.061 INFO [31513]: Version from config: 1.0 -- 18:55:30.061 DEBUG [31513]: Connecting to database... -- 18:55:30.061 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:30.061 SQL [31513]: pgsql_db_connect() -- 18:55:30.061 DEBUG [31649]: Database connection successful -- 18:55:30.061 INFO [31649]: _SERVER found -- 18:55:30.061 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 18:55:30.061 INFO [31649]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:55:30.061 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:55:30.061 INFO [31649]: QUERY_STRING = /welcome/viewLogin -- 18:55:30.061 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:55:30.097 INFO [31649]: COREGRADE is stopping... -- 18:55:30.097 DEBUG [31649]: Closing database connection -- 18:55:30.097 SQL [31649]: pgsql_close() -- 18:55:30.065 DEBUG [31513]: Database connection successful -- 18:55:30.065 INFO [31513]: _SERVER found -- 18:55:30.065 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 18:55:30.065 INFO [31513]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:55:30.065 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:55:30.065 INFO [31513]: QUERY_STRING = /auth -- 18:55:30.065 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:55:30.102 INFO [31513]: COREGRADE is stopping... -- 18:55:30.102 DEBUG [31513]: Closing database connection -- 18:55:30.102 SQL [31513]: pgsql_close() -- 18:55:30.108 INFO [31513]: COREGRADE is starting... -- 18:55:30.108 INFO [31513]: Version from config: 1.0 -- 18:55:30.108 DEBUG [31513]: Connecting to database... -- 18:55:30.108 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:30.108 SQL [31513]: pgsql_db_connect() -- 18:55:30.112 DEBUG [31513]: Database connection successful -- 18:55:30.112 INFO [31513]: _SERVER found -- 18:55:30.112 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 18:55:30.112 INFO [31513]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:55:30.112 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:55:30.112 INFO [31513]: QUERY_STRING = /auth/index -- 18:55:30.112 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:55:30.143 INFO [31513]: COREGRADE is stopping... -- 18:55:30.143 DEBUG [31513]: Closing database connection -- 18:55:30.143 SQL [31513]: pgsql_close() -- 18:55:30.400 INFO [31649]: COREGRADE is starting... -- 18:55:30.401 INFO [31649]: Version from config: 1.0 -- 18:55:30.401 DEBUG [31649]: Connecting to database... -- 18:55:30.401 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:30.401 SQL [31649]: pgsql_db_connect() -- 18:55:30.405 DEBUG [31649]: Database connection successful -- 18:55:30.405 INFO [31649]: _SERVER found -- 18:55:30.405 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 18:55:30.405 INFO [31649]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:55:30.405 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:55:30.405 INFO [31649]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:55:30.405 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:55:30.416 INFO [31649]: COREGRADE is stopping... -- 18:55:30.416 DEBUG [31649]: Closing database connection -- 18:55:30.416 SQL [31649]: pgsql_close() -- 18:55:31.028 INFO [31485]: COREGRADE is starting... -- 18:55:31.028 INFO [31485]: Version from config: 1.0 -- 18:55:31.028 DEBUG [31485]: Connecting to database... -- 18:55:31.028 DEBUG [31485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:31.028 SQL [31485]: pgsql_db_connect() -- 18:55:31.032 DEBUG [31485]: Database connection successful -- 18:55:31.032 INFO [31485]: _SERVER found -- 18:55:31.032 INFO [31485]: REMOTE_ADDR = 192.168.1.13 -- 18:55:31.032 INFO [31485]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:55:31.032 INFO [31485]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:55:31.032 INFO [31485]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:55:31.032 INFO [31485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:55:31.045 INFO [31485]: COREGRADE is stopping... -- 18:55:31.045 DEBUG [31485]: Closing database connection -- 18:55:31.045 SQL [31485]: pgsql_close() -- 18:55:31.986 INFO [31485]: COREGRADE is starting... -- 18:55:31.986 INFO [31485]: Version from config: 1.0 -- 18:55:31.986 DEBUG [31485]: Connecting to database... -- 18:55:31.986 DEBUG [31485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:31.986 SQL [31485]: pgsql_db_connect() -- 18:55:31.990 DEBUG [31485]: Database connection successful -- 18:55:31.990 INFO [31485]: _SERVER found -- 18:55:31.990 INFO [31485]: REMOTE_ADDR = 192.168.1.13 -- 18:55:31.990 INFO [31485]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:55:31.990 INFO [31485]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:55:31.990 INFO [31485]: QUERY_STRING = /auth -- 18:55:31.990 INFO [31485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:55:32.048 INFO [31485]: COREGRADE is starting... -- 18:55:32.048 INFO [31485]: Version from config: 1.0 -- 18:55:32.048 DEBUG [31485]: Connecting to database... -- 18:55:32.048 DEBUG [31485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:32.048 SQL [31485]: pgsql_db_connect() -- 18:55:32.052 DEBUG [31485]: Database connection successful -- 18:55:32.052 INFO [31485]: _SERVER found -- 18:55:32.052 INFO [31485]: REMOTE_ADDR = 192.168.1.13 -- 18:55:32.052 INFO [31485]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:55:32.052 INFO [31485]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:55:32.052 INFO [31485]: QUERY_STRING = /member/index -- 18:55:32.052 INFO [31485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:55:32.092 INFO [31485]: COREGRADE is stopping... -- 18:55:32.092 DEBUG [31485]: Closing database connection -- 18:55:32.092 SQL [31485]: pgsql_close() -- 18:55:32.451 INFO [31484]: COREGRADE is starting... -- 18:55:32.451 INFO [31484]: Version from config: 1.0 -- 18:55:32.451 DEBUG [31484]: Connecting to database... -- 18:55:32.451 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:32.451 SQL [31484]: pgsql_db_connect() -- 18:55:32.455 DEBUG [31484]: Database connection successful -- 18:55:32.455 INFO [31484]: _SERVER found -- 18:55:32.455 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 18:55:32.455 INFO [31484]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:55:32.455 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:55:32.455 INFO [31484]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:55:32.455 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:55:32.468 INFO [31484]: COREGRADE is stopping... -- 18:55:32.468 DEBUG [31484]: Closing database connection -- 18:55:32.468 SQL [31484]: pgsql_close() -- 18:55:33.538 INFO [31649]: COREGRADE is starting... -- 18:55:33.538 INFO [31649]: Version from config: 1.0 -- 18:55:33.538 DEBUG [31649]: Connecting to database... -- 18:55:33.538 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:33.538 SQL [31649]: pgsql_db_connect() -- 18:55:33.542 DEBUG [31649]: Database connection successful -- 18:55:33.542 INFO [31649]: _SERVER found -- 18:55:33.542 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 18:55:33.542 INFO [31649]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:55:33.542 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:55:33.542 INFO [31649]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:55:33.542 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:55:33.554 INFO [31649]: COREGRADE is stopping... -- 18:55:33.554 DEBUG [31649]: Closing database connection -- 18:55:33.554 SQL [31649]: pgsql_close() -- 18:55:38.063 INFO [31649]: COREGRADE is starting... -- 18:55:38.063 INFO [31649]: Version from config: 1.0 -- 18:55:38.063 DEBUG [31649]: Connecting to database... -- 18:55:38.063 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:38.063 SQL [31649]: pgsql_db_connect() -- 18:55:38.067 DEBUG [31649]: Database connection successful -- 18:55:38.067 INFO [31649]: _SERVER found -- 18:55:38.067 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 18:55:38.067 INFO [31649]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:55:38.067 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:55:38.067 INFO [31649]: QUERY_STRING = /member/myprofile -- 18:55:38.067 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:55:38.108 INFO [31649]: COREGRADE is stopping... -- 18:55:38.108 DEBUG [31649]: Closing database connection -- 18:55:38.108 SQL [31649]: pgsql_close() -- 18:55:38.432 INFO [31649]: COREGRADE is starting... -- 18:55:38.432 INFO [31649]: Version from config: 1.0 -- 18:55:38.432 DEBUG [31649]: Connecting to database... -- 18:55:38.432 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:38.432 SQL [31649]: pgsql_db_connect() -- 18:55:38.436 DEBUG [31649]: Database connection successful -- 18:55:38.436 INFO [31649]: _SERVER found -- 18:55:38.436 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 18:55:38.436 INFO [31649]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:55:38.436 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:55:38.436 INFO [31649]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:55:38.436 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:55:38.447 INFO [31649]: COREGRADE is stopping... -- 18:55:38.447 DEBUG [31649]: Closing database connection -- 18:55:38.447 SQL [31649]: pgsql_close() -- 18:55:39.974 INFO [31649]: COREGRADE is starting... -- 18:55:39.975 INFO [31649]: Version from config: 1.0 -- 18:55:39.975 DEBUG [31649]: Connecting to database... -- 18:55:39.975 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:39.975 SQL [31649]: pgsql_db_connect() -- 18:55:39.979 DEBUG [31649]: Database connection successful -- 18:55:39.979 INFO [31649]: _SERVER found -- 18:55:39.979 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 18:55:39.979 INFO [31649]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:55:39.979 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:55:39.979 INFO [31649]: QUERY_STRING = /member -- 18:55:39.979 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:55:40.025 INFO [31649]: COREGRADE is stopping... -- 18:55:40.025 DEBUG [31649]: Closing database connection -- 18:55:40.025 SQL [31649]: pgsql_close() -- 18:55:40.424 INFO [31649]: COREGRADE is starting... -- 18:55:40.425 INFO [31649]: Version from config: 1.0 -- 18:55:40.425 DEBUG [31649]: Connecting to database... -- 18:55:40.425 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:40.425 SQL [31649]: pgsql_db_connect() -- 18:55:40.429 DEBUG [31649]: Database connection successful -- 18:55:40.429 INFO [31649]: _SERVER found -- 18:55:40.429 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 18:55:40.429 INFO [31649]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:55:40.429 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:55:40.429 INFO [31649]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:55:40.429 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:55:40.441 INFO [31649]: COREGRADE is stopping... -- 18:55:40.441 DEBUG [31649]: Closing database connection -- 18:55:40.441 SQL [31649]: pgsql_close() -- 18:55:43.194 INFO [31649]: COREGRADE is starting... -- 18:55:43.194 INFO [31649]: Version from config: 1.0 -- 18:55:43.194 DEBUG [31649]: Connecting to database... -- 18:55:43.194 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:43.194 SQL [31649]: pgsql_db_connect() -- 18:55:43.198 DEBUG [31649]: Database connection successful -- 18:55:43.198 INFO [31649]: _SERVER found -- 18:55:43.198 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 18:55:43.198 INFO [31649]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:55:43.198 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:55:43.198 INFO [31649]: QUERY_STRING = /member/configure -- 18:55:43.198 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:55:43.241 INFO [31649]: COREGRADE is stopping... -- 18:55:43.241 DEBUG [31649]: Closing database connection -- 18:55:43.241 SQL [31649]: pgsql_close() -- 18:55:43.483 INFO [31649]: COREGRADE is starting... -- 18:55:43.484 INFO [31649]: Version from config: 1.0 -- 18:55:43.484 DEBUG [31649]: Connecting to database... -- 18:55:43.484 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:43.484 SQL [31649]: pgsql_db_connect() -- 18:55:43.488 DEBUG [31649]: Database connection successful -- 18:55:43.488 INFO [31649]: _SERVER found -- 18:55:43.488 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 18:55:43.488 INFO [31649]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:55:43.488 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:55:43.488 INFO [31649]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:55:43.488 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:55:43.499 INFO [31649]: COREGRADE is stopping... -- 18:55:43.499 DEBUG [31649]: Closing database connection -- 18:55:43.499 SQL [31649]: pgsql_close() -- 18:55:47.707 INFO [31649]: COREGRADE is starting... -- 18:55:47.707 INFO [31649]: Version from config: 1.0 -- 18:55:47.707 DEBUG [31649]: Connecting to database... -- 18:55:47.707 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:47.707 SQL [31649]: pgsql_db_connect() -- 18:55:47.711 DEBUG [31649]: Database connection successful -- 18:55:47.711 INFO [31649]: _SERVER found -- 18:55:47.711 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 18:55:47.711 INFO [31649]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:55:47.711 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:55:47.711 INFO [31649]: QUERY_STRING = /member/viewSharePage -- 18:55:47.711 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:55:47.748 INFO [31649]: COREGRADE is stopping... -- 18:55:47.748 DEBUG [31649]: Closing database connection -- 18:55:47.748 SQL [31649]: pgsql_close() -- 18:55:52.604 INFO [31649]: COREGRADE is starting... -- 18:55:52.604 INFO [31649]: Version from config: 1.0 -- 18:55:52.604 DEBUG [31649]: Connecting to database... -- 18:55:52.604 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:52.604 SQL [31649]: pgsql_db_connect() -- 18:55:52.608 DEBUG [31649]: Database connection successful -- 18:55:52.608 INFO [31649]: _SERVER found -- 18:55:52.608 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 18:55:52.608 INFO [31649]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:55:52.608 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:55:52.608 INFO [31649]: QUERY_STRING = /member/page -- 18:55:52.608 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:55:52.652 INFO [31649]: COREGRADE is stopping... -- 18:55:52.653 DEBUG [31649]: Closing database connection -- 18:55:52.653 SQL [31649]: pgsql_close() -- 18:55:53.028 INFO [31649]: COREGRADE is starting... -- 18:55:53.028 INFO [31649]: Version from config: 1.0 -- 18:55:53.028 DEBUG [31649]: Connecting to database... -- 18:55:53.028 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:53.028 SQL [31649]: pgsql_db_connect() -- 18:55:53.032 DEBUG [31649]: Database connection successful -- 18:55:53.032 INFO [31649]: _SERVER found -- 18:55:53.032 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 18:55:53.032 INFO [31649]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:55:53.032 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:55:53.032 INFO [31649]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:55:53.032 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:55:53.044 INFO [31649]: COREGRADE is stopping... -- 18:55:53.044 DEBUG [31649]: Closing database connection -- 18:55:53.044 SQL [31649]: pgsql_close() -- 18:56:01.698 INFO [31488]: COREGRADE is starting... -- 18:56:01.698 INFO [31488]: Version from config: 1.0 -- 18:56:01.698 DEBUG [31488]: Connecting to database... -- 18:56:01.698 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:56:01.698 SQL [31488]: pgsql_db_connect() -- 18:56:01.702 DEBUG [31488]: Database connection successful -- 18:56:01.702 INFO [31488]: _SERVER found -- 18:56:01.702 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 18:56:01.702 INFO [31488]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:56:01.702 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:56:01.702 INFO [31488]: QUERY_STRING = /member/configure -- 18:56:01.702 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:56:01.744 INFO [31488]: COREGRADE is stopping... -- 18:56:01.744 DEBUG [31488]: Closing database connection -- 18:56:01.744 SQL [31488]: pgsql_close() -- 18:56:02.009 INFO [31488]: COREGRADE is starting... -- 18:56:02.009 INFO [31488]: Version from config: 1.0 -- 18:56:02.009 DEBUG [31488]: Connecting to database... -- 18:56:02.009 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:56:02.009 SQL [31488]: pgsql_db_connect() -- 18:56:02.013 DEBUG [31488]: Database connection successful -- 18:56:02.013 INFO [31488]: _SERVER found -- 18:56:02.013 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 18:56:02.013 INFO [31488]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:56:02.013 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:56:02.013 INFO [31488]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:56:02.013 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:56:02.024 INFO [31488]: COREGRADE is stopping... -- 18:56:02.024 DEBUG [31488]: Closing database connection -- 18:56:02.024 SQL [31488]: pgsql_close() -- 18:56:06.276 INFO [31488]: COREGRADE is starting... -- 18:56:06.276 INFO [31488]: Version from config: 1.0 -- 18:56:06.276 DEBUG [31488]: Connecting to database... -- 18:56:06.276 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:56:06.276 SQL [31488]: pgsql_db_connect() -- 18:56:06.280 DEBUG [31488]: Database connection successful -- 18:56:06.280 INFO [31488]: _SERVER found -- 18:56:06.280 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 18:56:06.280 INFO [31488]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:56:06.280 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:56:06.280 INFO [31488]: QUERY_STRING = /member/configure -- 18:56:06.280 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:56:06.320 INFO [31488]: COREGRADE is stopping... -- 18:56:06.320 DEBUG [31488]: Closing database connection -- 18:56:06.320 SQL [31488]: pgsql_close() -- 18:56:06.737 INFO [31488]: COREGRADE is starting... -- 18:56:06.737 INFO [31488]: Version from config: 1.0 -- 18:56:06.737 DEBUG [31488]: Connecting to database... -- 18:56:06.737 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:56:06.737 SQL [31488]: pgsql_db_connect() -- 18:56:06.741 DEBUG [31488]: Database connection successful -- 18:56:06.741 INFO [31488]: _SERVER found -- 18:56:06.741 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 18:56:06.741 INFO [31488]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:56:06.741 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:56:06.741 INFO [31488]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:56:06.741 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:56:06.752 INFO [31488]: COREGRADE is stopping... -- 18:56:06.752 DEBUG [31488]: Closing database connection -- 18:56:06.752 SQL [31488]: pgsql_close() -- 18:56:07.318 INFO [31488]: COREGRADE is starting... -- 18:56:07.319 INFO [31488]: Version from config: 1.0 -- 18:56:07.319 DEBUG [31488]: Connecting to database... -- 18:56:07.319 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:56:07.319 SQL [31488]: pgsql_db_connect() -- 18:56:07.323 DEBUG [31488]: Database connection successful -- 18:56:07.323 INFO [31488]: _SERVER found -- 18:56:07.323 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 18:56:07.323 INFO [31488]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:56:07.323 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:56:07.323 INFO [31488]: QUERY_STRING = /member/mycalendar -- 18:56:07.323 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:56:07.360 INFO [31488]: COREGRADE is stopping... -- 18:56:07.360 DEBUG [31488]: Closing database connection -- 18:56:07.360 SQL [31488]: pgsql_close() -- 18:56:07.579 INFO [31488]: COREGRADE is starting... -- 18:56:07.580 INFO [31488]: Version from config: 1.0 -- 18:56:07.580 DEBUG [31488]: Connecting to database... -- 18:56:07.580 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:56:07.580 SQL [31488]: pgsql_db_connect() -- 18:56:07.583 DEBUG [31488]: Database connection successful -- 18:56:07.583 INFO [31488]: _SERVER found -- 18:56:07.583 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 18:56:07.583 INFO [31488]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:56:07.583 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:56:07.583 INFO [31488]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:56:07.583 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:56:07.595 INFO [31488]: COREGRADE is stopping... -- 18:56:07.595 DEBUG [31488]: Closing database connection -- 18:56:07.595 SQL [31488]: pgsql_close() -- 18:56:10.986 INFO [31488]: COREGRADE is starting... -- 18:56:10.986 INFO [31488]: Version from config: 1.0 -- 18:56:10.986 DEBUG [31488]: Connecting to database... -- 18:56:10.986 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:56:10.986 SQL [31488]: pgsql_db_connect() -- 18:56:10.990 DEBUG [31488]: Database connection successful -- 18:56:10.990 INFO [31488]: _SERVER found -- 18:56:10.990 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 18:56:10.990 INFO [31488]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:56:10.990 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:56:10.990 INFO [31488]: QUERY_STRING = /member/configure -- 18:56:10.990 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:56:11.030 INFO [31488]: COREGRADE is stopping... -- 18:56:11.030 DEBUG [31488]: Closing database connection -- 18:56:11.030 SQL [31488]: pgsql_close() -- 18:56:11.253 INFO [31488]: COREGRADE is starting... -- 18:56:11.254 INFO [31488]: Version from config: 1.0 -- 18:56:11.254 DEBUG [31488]: Connecting to database... -- 18:56:11.254 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:56:11.254 SQL [31488]: pgsql_db_connect() -- 18:56:11.258 DEBUG [31488]: Database connection successful -- 18:56:11.258 INFO [31488]: _SERVER found -- 18:56:11.258 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 18:56:11.258 INFO [31488]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:56:11.258 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:56:11.258 INFO [31488]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:56:11.258 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:56:11.269 INFO [31488]: COREGRADE is stopping... -- 18:56:11.269 DEBUG [31488]: Closing database connection -- 18:56:11.269 SQL [31488]: pgsql_close() -- 18:56:15.331 INFO [31488]: COREGRADE is starting... -- 18:56:15.331 INFO [31488]: Version from config: 1.0 -- 18:56:15.331 DEBUG [31488]: Connecting to database... -- 18:56:15.331 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:56:15.331 SQL [31488]: pgsql_db_connect() -- 18:56:15.335 DEBUG [31488]: Database connection successful -- 18:56:15.335 INFO [31488]: _SERVER found -- 18:56:15.335 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 18:56:15.335 INFO [31488]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:56:15.335 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:56:15.335 INFO [31488]: QUERY_STRING = /member -- 18:56:15.335 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:56:15.375 INFO [31488]: COREGRADE is stopping... -- 18:56:15.375 DEBUG [31488]: Closing database connection -- 18:56:15.375 SQL [31488]: pgsql_close() -- 18:56:15.652 INFO [31488]: COREGRADE is starting... -- 18:56:15.652 INFO [31488]: Version from config: 1.0 -- 18:56:15.652 DEBUG [31488]: Connecting to database... -- 18:56:15.652 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:56:15.652 SQL [31488]: pgsql_db_connect() -- 18:56:15.656 DEBUG [31488]: Database connection successful -- 18:56:15.656 INFO [31488]: _SERVER found -- 18:56:15.656 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 18:56:15.656 INFO [31488]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:56:15.656 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:56:15.656 INFO [31488]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:56:15.656 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:56:15.668 INFO [31488]: COREGRADE is stopping... -- 18:56:15.668 DEBUG [31488]: Closing database connection -- 18:56:15.668 SQL [31488]: pgsql_close() -- 18:57:06.539 INFO [2268]: COREGRADE is starting... -- 18:57:06.540 INFO [2268]: Version from config: 1.0 -- 18:57:06.540 DEBUG [2268]: Connecting to database... -- 18:57:06.540 DEBUG [2268]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:57:06.540 SQL [2268]: pgsql_db_connect() -- 18:57:06.544 DEBUG [2268]: Database connection successful -- 18:57:06.544 INFO [2268]: _SERVER found -- 18:57:06.544 INFO [2268]: REMOTE_ADDR = 192.168.1.13 -- 18:57:06.544 INFO [2268]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:57:06.544 INFO [2268]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep -- 18:57:06.544 INFO [2268]: QUERY_STRING = -- 18:57:06.544 INFO [2268]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:57:06.587 INFO [2268]: COREGRADE is stopping... -- 18:57:06.588 DEBUG [2268]: Closing database connection -- 18:57:06.588 SQL [2268]: pgsql_close() -- 18:57:06.992 INFO [2268]: COREGRADE is starting... -- 18:57:06.992 INFO [2268]: Version from config: 1.0 -- 18:57:06.992 DEBUG [2268]: Connecting to database... -- 18:57:06.992 DEBUG [2268]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:57:06.992 SQL [2268]: pgsql_db_connect() -- 18:57:06.996 DEBUG [2268]: Database connection successful -- 18:57:06.996 INFO [2268]: _SERVER found -- 18:57:06.996 INFO [2268]: REMOTE_ADDR = 192.168.1.13 -- 18:57:06.996 INFO [2268]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:57:06.996 INFO [2268]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep -- 18:57:06.996 INFO [2268]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:57:06.996 INFO [2268]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:57:07.008 INFO [2268]: COREGRADE is stopping... -- 18:57:07.008 DEBUG [2268]: Closing database connection -- 18:57:07.008 SQL [2268]: pgsql_close() -- 18:57:07.038 INFO [2268]: COREGRADE is starting... -- 18:57:07.038 INFO [2268]: Version from config: 1.0 -- 18:57:07.038 DEBUG [2268]: Connecting to database... -- 18:57:07.038 DEBUG [2268]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:57:07.038 SQL [2268]: pgsql_db_connect() -- 18:57:07.042 DEBUG [2268]: Database connection successful -- 18:57:07.042 INFO [2268]: _SERVER found -- 18:57:07.042 INFO [2268]: REMOTE_ADDR = 192.168.1.13 -- 18:57:07.042 INFO [2268]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:57:07.042 INFO [2268]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep -- 18:57:07.042 INFO [2268]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:57:07.042 INFO [2268]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:57:07.054 INFO [2268]: COREGRADE is stopping... -- 18:57:07.054 DEBUG [2268]: Closing database connection -- 18:57:07.054 SQL [2268]: pgsql_close() -- 18:57:35.242 INFO [2269]: COREGRADE is starting... -- 18:57:35.242 INFO [2269]: Version from config: 1.0 -- 18:57:35.242 DEBUG [2269]: Connecting to database... -- 18:57:35.242 DEBUG [2269]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:57:35.242 SQL [2269]: pgsql_db_connect() -- 18:57:35.246 DEBUG [2269]: Database connection successful -- 18:57:35.247 INFO [2269]: _SERVER found -- 18:57:35.247 INFO [2269]: REMOTE_ADDR = 192.168.1.13 -- 18:57:35.247 INFO [2269]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:57:35.247 INFO [2269]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:57:35.247 INFO [2269]: QUERY_STRING = /home/howitworks -- 18:57:35.247 INFO [2269]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:57:35.285 INFO [2269]: COREGRADE is stopping... -- 18:57:35.285 DEBUG [2269]: Closing database connection -- 18:57:35.285 SQL [2269]: pgsql_close() -- 18:57:35.598 INFO [2269]: COREGRADE is starting... -- 18:57:35.599 INFO [2269]: Version from config: 1.0 -- 18:57:35.599 DEBUG [2269]: Connecting to database... -- 18:57:35.599 DEBUG [2269]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:57:35.599 SQL [2269]: pgsql_db_connect() -- 18:57:35.603 DEBUG [2269]: Database connection successful -- 18:57:35.603 INFO [2269]: _SERVER found -- 18:57:35.603 INFO [2269]: REMOTE_ADDR = 192.168.1.13 -- 18:57:35.603 INFO [2269]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:57:35.603 INFO [2269]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:57:35.603 INFO [2269]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:57:35.603 INFO [2269]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:57:35.614 INFO [2269]: COREGRADE is stopping... -- 18:57:35.614 DEBUG [2269]: Closing database connection -- 18:57:35.614 SQL [2269]: pgsql_close() -- 18:57:35.616 INFO [2270]: COREGRADE is starting... -- 18:57:35.616 INFO [2270]: Version from config: 1.0 -- 18:57:35.616 DEBUG [2270]: Connecting to database... -- 18:57:35.616 DEBUG [2270]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:57:35.616 SQL [2270]: pgsql_db_connect() -- 18:57:35.620 DEBUG [2270]: Database connection successful -- 18:57:35.620 INFO [2270]: _SERVER found -- 18:57:35.620 INFO [2270]: REMOTE_ADDR = 192.168.1.13 -- 18:57:35.620 INFO [2270]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:57:35.620 INFO [2270]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:57:35.620 INFO [2270]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:57:35.620 INFO [2270]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:57:35.634 INFO [2270]: COREGRADE is stopping... -- 18:57:35.634 DEBUG [2270]: Closing database connection -- 18:57:35.634 SQL [2270]: pgsql_close() -- 18:57:37.331 INFO [2270]: COREGRADE is starting... -- 18:57:37.331 INFO [2270]: Version from config: 1.0 -- 18:57:37.331 DEBUG [2270]: Connecting to database... -- 18:57:37.331 DEBUG [2270]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:57:37.331 SQL [2270]: pgsql_db_connect() -- 18:57:37.335 DEBUG [2270]: Database connection successful -- 18:57:37.335 INFO [2270]: _SERVER found -- 18:57:37.335 INFO [2270]: REMOTE_ADDR = 192.168.1.13 -- 18:57:37.335 INFO [2270]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:57:37.335 INFO [2270]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:57:37.335 INFO [2270]: QUERY_STRING = -- 18:57:37.335 INFO [2270]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:57:37.376 INFO [2270]: COREGRADE is stopping... -- 18:57:37.376 DEBUG [2270]: Closing database connection -- 18:57:37.376 SQL [2270]: pgsql_close() -- 18:57:37.680 INFO [2269]: COREGRADE is starting... -- 18:57:37.680 INFO [2270]: COREGRADE is starting... -- 18:57:37.681 INFO [2270]: Version from config: 1.0 -- 18:57:37.681 DEBUG [2270]: Connecting to database... -- 18:57:37.681 INFO [2269]: Version from config: 1.0 -- 18:57:37.681 DEBUG [2269]: Connecting to database... -- 18:57:37.681 DEBUG [2270]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:57:37.681 DEBUG [2269]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:57:37.681 SQL [2270]: pgsql_db_connect() -- 18:57:37.681 SQL [2269]: pgsql_db_connect() -- 18:57:37.685 DEBUG [2269]: Database connection successful -- 18:57:37.685 INFO [2269]: _SERVER found -- 18:57:37.685 INFO [2269]: REMOTE_ADDR = 192.168.1.13 -- 18:57:37.685 INFO [2269]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:57:37.685 INFO [2269]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:57:37.685 INFO [2269]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:57:37.685 INFO [2269]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:57:37.696 INFO [2269]: COREGRADE is stopping... -- 18:57:37.696 DEBUG [2269]: Closing database connection -- 18:57:37.696 SQL [2269]: pgsql_close() -- 18:57:37.685 DEBUG [2270]: Database connection successful -- 18:57:37.685 INFO [2270]: _SERVER found -- 18:57:37.685 INFO [2270]: REMOTE_ADDR = 192.168.1.13 -- 18:57:37.685 INFO [2270]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:57:37.685 INFO [2270]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:57:37.685 INFO [2270]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:57:37.685 INFO [2270]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:57:37.696 INFO [2270]: COREGRADE is stopping... -- 18:57:37.696 DEBUG [2270]: Closing database connection -- 18:57:37.696 SQL [2270]: pgsql_close() -- 18:57:44.131 INFO [31487]: COREGRADE is starting... -- 18:57:44.131 INFO [31487]: Version from config: 1.0 -- 18:57:44.131 DEBUG [31487]: Connecting to database... -- 18:57:44.132 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:57:44.132 SQL [31487]: pgsql_db_connect() -- 18:57:44.136 DEBUG [31487]: Database connection successful -- 18:57:44.136 INFO [31487]: _SERVER found -- 18:57:44.136 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 18:57:44.136 INFO [31487]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:57:44.136 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:57:44.136 INFO [31487]: QUERY_STRING = /auth/newuser -- 18:57:44.136 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:57:44.169 INFO [31487]: COREGRADE is stopping... -- 18:57:44.169 DEBUG [31487]: Closing database connection -- 18:57:44.169 SQL [31487]: pgsql_close() -- 18:57:44.359 INFO [31487]: COREGRADE is starting... -- 18:57:44.360 INFO [31487]: Version from config: 1.0 -- 18:57:44.360 DEBUG [31487]: Connecting to database... -- 18:57:44.360 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:57:44.360 SQL [31487]: pgsql_db_connect() -- 18:57:44.364 DEBUG [31487]: Database connection successful -- 18:57:44.364 INFO [31487]: _SERVER found -- 18:57:44.364 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 18:57:44.364 INFO [31487]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:57:44.364 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:57:44.364 INFO [31487]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:57:44.364 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:57:44.375 INFO [31487]: COREGRADE is stopping... -- 18:57:44.375 DEBUG [31487]: Closing database connection -- 18:57:44.375 SQL [31487]: pgsql_close() -- 18:57:44.377 INFO [31513]: COREGRADE is starting... -- 18:57:44.377 INFO [31513]: Version from config: 1.0 -- 18:57:44.377 DEBUG [31513]: Connecting to database... -- 18:57:44.377 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:57:44.377 SQL [31513]: pgsql_db_connect() -- 18:57:44.381 DEBUG [31513]: Database connection successful -- 18:57:44.381 INFO [31513]: _SERVER found -- 18:57:44.381 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 18:57:44.381 INFO [31513]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:57:44.381 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:57:44.381 INFO [31513]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:57:44.381 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:57:44.392 INFO [31513]: COREGRADE is stopping... -- 18:57:44.392 DEBUG [31513]: Closing database connection -- 18:57:44.392 SQL [31513]: pgsql_close() -- 18:57:46.294 INFO [31513]: COREGRADE is starting... -- 18:57:46.294 INFO [31513]: Version from config: 1.0 -- 18:57:46.294 DEBUG [31513]: Connecting to database... -- 18:57:46.294 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:57:46.294 SQL [31513]: pgsql_db_connect() -- 18:57:46.298 DEBUG [31513]: Database connection successful -- 18:57:46.298 INFO [31513]: _SERVER found -- 18:57:46.298 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 18:57:46.298 INFO [31513]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:57:46.298 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:57:46.298 INFO [31513]: QUERY_STRING = -- 18:57:46.298 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:57:46.335 INFO [31513]: COREGRADE is stopping... -- 18:57:46.335 DEBUG [31513]: Closing database connection -- 18:57:46.335 SQL [31513]: pgsql_close() -- 18:57:49.968 INFO [31513]: COREGRADE is starting... -- 18:57:49.968 INFO [31513]: Version from config: 1.0 -- 18:57:49.968 DEBUG [31513]: Connecting to database... -- 18:57:49.968 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:57:49.968 SQL [31513]: pgsql_db_connect() -- 18:57:49.972 DEBUG [31513]: Database connection successful -- 18:57:49.972 INFO [31513]: _SERVER found -- 18:57:49.972 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 18:57:49.972 INFO [31513]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:57:49.972 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:57:49.972 INFO [31513]: QUERY_STRING = /home/howitworks -- 18:57:49.972 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:57:50.004 INFO [31513]: COREGRADE is stopping... -- 18:57:50.004 DEBUG [31513]: Closing database connection -- 18:57:50.004 SQL [31513]: pgsql_close() -- 18:57:50.171 INFO [31513]: COREGRADE is starting... -- 18:57:50.171 INFO [31513]: Version from config: 1.0 -- 18:57:50.171 DEBUG [31513]: Connecting to database... -- 18:57:50.171 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:57:50.171 SQL [31513]: pgsql_db_connect() -- 18:57:50.184 INFO [31485]: COREGRADE is starting... -- 18:57:50.185 INFO [31485]: Version from config: 1.0 -- 18:57:50.185 DEBUG [31485]: Connecting to database... -- 18:57:50.185 DEBUG [31485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:57:50.185 SQL [31485]: pgsql_db_connect() -- 18:57:50.175 DEBUG [31513]: Database connection successful -- 18:57:50.175 INFO [31513]: _SERVER found -- 18:57:50.175 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 18:57:50.175 INFO [31513]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:57:50.175 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:57:50.175 INFO [31513]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:57:50.175 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:57:50.186 INFO [31513]: COREGRADE is stopping... -- 18:57:50.186 DEBUG [31513]: Closing database connection -- 18:57:50.186 SQL [31513]: pgsql_close() -- 18:57:50.189 DEBUG [31485]: Database connection successful -- 18:57:50.189 INFO [31485]: _SERVER found -- 18:57:50.189 INFO [31485]: REMOTE_ADDR = 192.168.1.13 -- 18:57:50.189 INFO [31485]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:57:50.189 INFO [31485]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:57:50.189 INFO [31485]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:57:50.189 INFO [31485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:57:50.200 INFO [31485]: COREGRADE is stopping... -- 18:57:50.200 DEBUG [31485]: Closing database connection -- 18:57:50.200 SQL [31485]: pgsql_close() -- 18:57:51.575 INFO [31485]: COREGRADE is starting... -- 18:57:51.576 INFO [31485]: Version from config: 1.0 -- 18:57:51.576 DEBUG [31485]: Connecting to database... -- 18:57:51.576 DEBUG [31485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:57:51.576 SQL [31485]: pgsql_db_connect() -- 18:57:51.580 DEBUG [31485]: Database connection successful -- 18:57:51.580 INFO [31485]: _SERVER found -- 18:57:51.580 INFO [31485]: REMOTE_ADDR = 192.168.1.13 -- 18:57:51.580 INFO [31485]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:57:51.580 INFO [31485]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:57:51.580 INFO [31485]: QUERY_STRING = -- 18:57:51.580 INFO [31485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:57:51.616 INFO [31485]: COREGRADE is stopping... -- 18:57:51.616 DEBUG [31485]: Closing database connection -- 18:57:51.616 SQL [31485]: pgsql_close() -- 18:57:56.530 INFO [31485]: COREGRADE is starting... -- 18:57:56.530 INFO [31485]: Version from config: 1.0 -- 18:57:56.530 DEBUG [31485]: Connecting to database... -- 18:57:56.530 DEBUG [31485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:57:56.530 SQL [31485]: pgsql_db_connect() -- 18:57:56.534 DEBUG [31485]: Database connection successful -- 18:57:56.534 INFO [31485]: _SERVER found -- 18:57:56.534 INFO [31485]: REMOTE_ADDR = 192.168.1.13 -- 18:57:56.534 INFO [31485]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:57:56.534 INFO [31485]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:57:56.534 INFO [31485]: QUERY_STRING = -- 18:57:56.534 INFO [31485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:57:56.565 INFO [31485]: COREGRADE is stopping... -- 18:57:56.565 DEBUG [31485]: Closing database connection -- 18:57:56.565 SQL [31485]: pgsql_close() -- 18:57:59.177 INFO [31485]: COREGRADE is starting... -- 18:57:59.177 INFO [31485]: Version from config: 1.0 -- 18:57:59.177 DEBUG [31485]: Connecting to database... -- 18:57:59.177 DEBUG [31485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:57:59.177 SQL [31485]: pgsql_db_connect() -- 18:57:59.181 DEBUG [31485]: Database connection successful -- 18:57:59.181 INFO [31485]: _SERVER found -- 18:57:59.181 INFO [31485]: REMOTE_ADDR = 192.168.1.13 -- 18:57:59.181 INFO [31485]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:57:59.181 INFO [31485]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:57:59.181 INFO [31485]: QUERY_STRING = /home/privacy -- 18:57:59.181 INFO [31485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:57:59.213 INFO [31485]: COREGRADE is stopping... -- 18:57:59.213 DEBUG [31485]: Closing database connection -- 18:57:59.213 SQL [31485]: pgsql_close() -- 18:57:59.385 INFO [31485]: COREGRADE is starting... -- 18:57:59.385 INFO [31485]: Version from config: 1.0 -- 18:57:59.385 DEBUG [31485]: Connecting to database... -- 18:57:59.385 DEBUG [31485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:57:59.385 SQL [31485]: pgsql_db_connect() -- 18:57:59.389 DEBUG [31485]: Database connection successful -- 18:57:59.389 INFO [31485]: _SERVER found -- 18:57:59.389 INFO [31485]: REMOTE_ADDR = 192.168.1.13 -- 18:57:59.389 INFO [31485]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:57:59.389 INFO [31485]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:57:59.389 INFO [31485]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:57:59.389 INFO [31485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:57:59.400 INFO [31485]: COREGRADE is stopping... -- 18:57:59.400 DEBUG [31485]: Closing database connection -- 18:57:59.400 SQL [31485]: pgsql_close() -- 18:57:59.406 INFO [31486]: COREGRADE is starting... -- 18:57:59.406 INFO [31486]: Version from config: 1.0 -- 18:57:59.406 DEBUG [31486]: Connecting to database... -- 18:57:59.406 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:57:59.406 SQL [31486]: pgsql_db_connect() -- 18:57:59.410 DEBUG [31486]: Database connection successful -- 18:57:59.410 INFO [31486]: _SERVER found -- 18:57:59.410 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 18:57:59.410 INFO [31486]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:57:59.410 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:57:59.410 INFO [31486]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:57:59.410 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:57:59.422 INFO [31486]: COREGRADE is stopping... -- 18:57:59.422 DEBUG [31486]: Closing database connection -- 18:57:59.422 SQL [31486]: pgsql_close() -- 18:58:02.355 INFO [31486]: COREGRADE is starting... -- 18:58:02.355 INFO [31486]: Version from config: 1.0 -- 18:58:02.355 DEBUG [31486]: Connecting to database... -- 18:58:02.355 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:58:02.355 SQL [31486]: pgsql_db_connect() -- 18:58:02.359 DEBUG [31486]: Database connection successful -- 18:58:02.359 INFO [31486]: _SERVER found -- 18:58:02.359 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 18:58:02.359 INFO [31486]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:58:02.359 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep; _gat_gtag_UA_54829827_2=1 -- 18:58:02.359 INFO [31486]: QUERY_STRING = -- 18:58:02.359 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:58:02.396 INFO [31486]: COREGRADE is stopping... -- 18:58:02.396 DEBUG [31486]: Closing database connection -- 18:58:02.396 SQL [31486]: pgsql_close() -- 18:59:01.300 INFO [31484]: COREGRADE is starting... -- 18:59:01.300 INFO [31484]: Version from config: 1.0 -- 18:59:01.300 DEBUG [31484]: Connecting to database... -- 18:59:01.301 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:59:01.301 SQL [31484]: pgsql_db_connect() -- 18:59:01.305 DEBUG [31484]: Database connection successful -- 18:59:01.305 INFO [31484]: _SERVER found -- 18:59:01.305 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 18:59:01.305 INFO [31484]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:59:01.305 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep -- 18:59:01.305 INFO [31484]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 18:59:01.305 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:59:01.317 INFO [31484]: COREGRADE is stopping... -- 18:59:01.317 DEBUG [31484]: Closing database connection -- 18:59:01.317 SQL [31484]: pgsql_close() -- 18:59:19.543 INFO [31649]: COREGRADE is starting... -- 18:59:19.544 INFO [31649]: Version from config: 1.0 -- 18:59:19.544 DEBUG [31649]: Connecting to database... -- 18:59:19.544 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:59:19.544 SQL [31649]: pgsql_db_connect() -- 18:59:19.548 DEBUG [31649]: Database connection successful -- 18:59:19.548 INFO [31649]: _SERVER found -- 18:59:19.548 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 18:59:19.548 INFO [31649]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:59:19.548 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep -- 18:59:19.548 INFO [31649]: QUERY_STRING = -- 18:59:19.548 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:59:19.583 INFO [31649]: COREGRADE is stopping... -- 18:59:19.583 DEBUG [31649]: Closing database connection -- 18:59:19.583 SQL [31649]: pgsql_close() -- 18:59:19.790 INFO [31649]: COREGRADE is starting... -- 18:59:19.790 INFO [31649]: Version from config: 1.0 -- 18:59:19.790 DEBUG [31649]: Connecting to database... -- 18:59:19.790 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:59:19.790 SQL [31649]: pgsql_db_connect() -- 18:59:19.794 DEBUG [31649]: Database connection successful -- 18:59:19.794 INFO [31649]: _SERVER found -- 18:59:19.794 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 18:59:19.794 INFO [31649]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:59:19.794 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep -- 18:59:19.794 INFO [31649]: QUERY_STRING = /favicon.ico -- 18:59:19.794 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:59:19.806 INFO [31649]: COREGRADE is stopping... -- 18:59:19.806 DEBUG [31649]: Closing database connection -- 18:59:19.806 SQL [31649]: pgsql_close() -- 19:00:21.514 INFO [31488]: COREGRADE is starting... -- 19:00:21.514 INFO [31488]: Version from config: 1.0 -- 19:00:21.514 DEBUG [31488]: Connecting to database... -- 19:00:21.514 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:00:21.514 SQL [31488]: pgsql_db_connect() -- 19:00:21.518 DEBUG [31488]: Database connection successful -- 19:00:21.518 INFO [31488]: _SERVER found -- 19:00:21.518 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 19:00:21.518 INFO [31488]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:00:21.518 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep -- 19:00:21.518 INFO [31488]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 19:00:21.518 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:00:21.530 INFO [31488]: COREGRADE is stopping... -- 19:00:21.530 DEBUG [31488]: Closing database connection -- 19:00:21.530 SQL [31488]: pgsql_close() -- 19:03:32.619 INFO [2268]: COREGRADE is starting... -- 19:03:32.619 INFO [2268]: Version from config: 1.0 -- 19:03:32.619 DEBUG [2268]: Connecting to database... -- 19:03:32.619 DEBUG [2268]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:03:32.619 SQL [2268]: pgsql_db_connect() -- 19:03:32.623 DEBUG [2268]: Database connection successful -- 19:03:32.623 INFO [2268]: _SERVER found -- 19:03:32.623 INFO [2268]: REMOTE_ADDR = 192.168.1.13 -- 19:03:32.623 INFO [2268]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:03:32.623 INFO [2268]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=3tppmgv5qr12l6lflg77h6apb89p5kep -- 19:03:32.623 INFO [2268]: QUERY_STRING = /auth -- 19:03:32.623 INFO [2268]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:03:32.660 INFO [2268]: COREGRADE is stopping... -- 19:03:32.660 DEBUG [2268]: Closing database connection -- 19:03:32.660 SQL [2268]: pgsql_close() -- 19:03:32.979 INFO [2268]: COREGRADE is starting... -- 19:03:32.980 INFO [2268]: Version from config: 1.0 -- 19:03:32.980 DEBUG [2268]: Connecting to database... -- 19:03:32.980 DEBUG [2268]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:03:32.980 SQL [2268]: pgsql_db_connect() -- 19:03:32.984 DEBUG [2268]: Database connection successful -- 19:03:32.984 INFO [2268]: _SERVER found -- 19:03:32.984 INFO [2268]: REMOTE_ADDR = 192.168.1.13 -- 19:03:32.984 INFO [2268]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:03:32.984 INFO [2268]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=jcd59gi5efgov36008qnsbmafcbakmv6 -- 19:03:32.984 INFO [2268]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 19:03:32.984 INFO [2268]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:03:32.996 INFO [2268]: COREGRADE is stopping... -- 19:03:32.996 DEBUG [2268]: Closing database connection -- 19:03:32.996 SQL [2268]: pgsql_close() -- 19:03:33.057 INFO [2268]: COREGRADE is starting... -- 19:03:33.057 INFO [2268]: Version from config: 1.0 -- 19:03:33.057 DEBUG [2268]: Connecting to database... -- 19:03:33.057 DEBUG [2268]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:03:33.057 SQL [2268]: pgsql_db_connect() -- 19:03:33.061 DEBUG [2268]: Database connection successful -- 19:03:33.061 INFO [2268]: _SERVER found -- 19:03:33.061 INFO [2268]: REMOTE_ADDR = 192.168.1.13 -- 19:03:33.061 INFO [2268]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:03:33.061 INFO [2268]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=jcd59gi5efgov36008qnsbmafcbakmv6 -- 19:03:33.061 INFO [2268]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:03:33.061 INFO [2268]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:03:33.073 INFO [2268]: COREGRADE is stopping... -- 19:03:33.073 DEBUG [2268]: Closing database connection -- 19:03:33.073 SQL [2268]: pgsql_close() -- 19:03:34.803 INFO [2268]: COREGRADE is starting... -- 19:03:34.804 INFO [2268]: Version from config: 1.0 -- 19:03:34.804 DEBUG [2268]: Connecting to database... -- 19:03:34.804 DEBUG [2268]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:03:34.804 SQL [2268]: pgsql_db_connect() -- 19:03:34.808 DEBUG [2268]: Database connection successful -- 19:03:34.808 INFO [2268]: _SERVER found -- 19:03:34.808 INFO [2268]: REMOTE_ADDR = 192.168.1.13 -- 19:03:34.808 INFO [2268]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:03:34.808 INFO [2268]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=jcd59gi5efgov36008qnsbmafcbakmv6 -- 19:03:34.808 INFO [2268]: QUERY_STRING = /auth -- 19:03:34.808 INFO [2268]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:03:34.873 INFO [2268]: COREGRADE is starting... -- 19:03:34.873 INFO [2268]: Version from config: 1.0 -- 19:03:34.873 DEBUG [2268]: Connecting to database... -- 19:03:34.873 DEBUG [2268]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:03:34.873 SQL [2268]: pgsql_db_connect() -- 19:03:34.877 DEBUG [2268]: Database connection successful -- 19:03:34.877 INFO [2268]: _SERVER found -- 19:03:34.877 INFO [2268]: REMOTE_ADDR = 192.168.1.13 -- 19:03:34.877 INFO [2268]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:03:34.877 INFO [2268]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=jcd59gi5efgov36008qnsbmafcbakmv6 -- 19:03:34.877 INFO [2268]: QUERY_STRING = /member/index -- 19:03:34.877 INFO [2268]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:03:34.917 INFO [2268]: COREGRADE is stopping... -- 19:03:34.917 DEBUG [2268]: Closing database connection -- 19:03:34.917 SQL [2268]: pgsql_close() -- 19:03:35.233 INFO [2268]: COREGRADE is starting... -- 19:03:35.233 INFO [2268]: Version from config: 1.0 -- 19:03:35.233 DEBUG [2268]: Connecting to database... -- 19:03:35.234 DEBUG [2268]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:03:35.234 SQL [2268]: pgsql_db_connect() -- 19:03:35.238 DEBUG [2268]: Database connection successful -- 19:03:35.238 INFO [2268]: _SERVER found -- 19:03:35.238 INFO [2268]: REMOTE_ADDR = 192.168.1.13 -- 19:03:35.238 INFO [2268]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:03:35.238 INFO [2268]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=jcd59gi5efgov36008qnsbmafcbakmv6 -- 19:03:35.238 INFO [2268]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:03:35.238 INFO [2268]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:03:35.249 INFO [2268]: COREGRADE is stopping... -- 19:03:35.249 DEBUG [2268]: Closing database connection -- 19:03:35.249 SQL [2268]: pgsql_close() -- 19:03:35.360 INFO [2268]: COREGRADE is starting... -- 19:03:35.361 INFO [2268]: Version from config: 1.0 -- 19:03:35.361 DEBUG [2268]: Connecting to database... -- 19:03:35.361 DEBUG [2268]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:03:35.361 SQL [2268]: pgsql_db_connect() -- 19:03:35.365 DEBUG [2268]: Database connection successful -- 19:03:35.365 INFO [2268]: _SERVER found -- 19:03:35.365 INFO [2268]: REMOTE_ADDR = 192.168.1.13 -- 19:03:35.365 INFO [2268]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:03:35.365 INFO [2268]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=jcd59gi5efgov36008qnsbmafcbakmv6 -- 19:03:35.365 INFO [2268]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:03:35.365 INFO [2268]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:03:35.376 INFO [2268]: COREGRADE is stopping... -- 19:03:35.376 DEBUG [2268]: Closing database connection -- 19:03:35.376 SQL [2268]: pgsql_close() -- 19:05:02.519 INFO [2270]: COREGRADE is starting... -- 19:05:02.520 INFO [2270]: Version from config: 1.0 -- 19:05:02.520 DEBUG [2270]: Connecting to database... -- 19:05:02.520 DEBUG [2270]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:05:02.520 SQL [2270]: pgsql_db_connect() -- 19:05:02.524 DEBUG [2270]: Database connection successful -- 19:05:02.524 INFO [2270]: _SERVER found -- 19:05:02.524 INFO [2270]: REMOTE_ADDR = 192.168.1.13 -- 19:05:02.524 INFO [2270]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:05:02.524 INFO [2270]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=jcd59gi5efgov36008qnsbmafcbakmv6 -- 19:05:02.524 INFO [2270]: QUERY_STRING = -- 19:05:02.524 INFO [2270]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:05:02.557 INFO [2270]: COREGRADE is stopping... -- 19:05:02.557 DEBUG [2270]: Closing database connection -- 19:05:02.557 SQL [2270]: pgsql_close() -- 19:05:09.188 INFO [2269]: COREGRADE is starting... -- 19:05:09.188 INFO [2269]: Version from config: 1.0 -- 19:05:09.188 DEBUG [2269]: Connecting to database... -- 19:05:09.188 DEBUG [2269]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:05:09.188 SQL [2269]: pgsql_db_connect() -- 19:05:09.192 DEBUG [2269]: Database connection successful -- 19:05:09.192 INFO [2269]: _SERVER found -- 19:05:09.192 INFO [2269]: REMOTE_ADDR = 192.168.1.13 -- 19:05:09.192 INFO [2269]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:05:09.192 INFO [2269]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=jcd59gi5efgov36008qnsbmafcbakmv6; _gat_gtag_UA_54829827_2=1 -- 19:05:09.192 INFO [2269]: QUERY_STRING = -- 19:05:09.192 INFO [2269]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:05:09.229 INFO [2269]: COREGRADE is stopping... -- 19:05:09.229 DEBUG [2269]: Closing database connection -- 19:05:09.229 SQL [2269]: pgsql_close() -- 19:06:07.706 INFO [31487]: COREGRADE is starting... -- 19:06:07.706 INFO [31487]: Version from config: 1.0 -- 19:06:07.706 DEBUG [31487]: Connecting to database... -- 19:06:07.706 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:06:07.706 SQL [31487]: pgsql_db_connect() -- 19:06:07.710 DEBUG [31487]: Database connection successful -- 19:06:07.710 INFO [31487]: _SERVER found -- 19:06:07.710 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 19:06:07.710 INFO [31487]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:06:07.710 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=jcd59gi5efgov36008qnsbmafcbakmv6 -- 19:06:07.710 INFO [31487]: QUERY_STRING = -- 19:06:07.710 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:06:07.743 INFO [31487]: COREGRADE is stopping... -- 19:06:07.743 DEBUG [31487]: Closing database connection -- 19:06:07.743 SQL [31487]: pgsql_close() -- 19:08:57.241 INFO [31513]: COREGRADE is starting... -- 19:08:57.241 INFO [31513]: Version from config: 1.0 -- 19:08:57.241 DEBUG [31513]: Connecting to database... -- 19:08:57.241 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:08:57.241 SQL [31513]: pgsql_db_connect() -- 19:08:57.245 DEBUG [31513]: Database connection successful -- 19:08:57.245 INFO [31513]: _SERVER found -- 19:08:57.245 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 19:08:57.245 INFO [31513]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:08:57.245 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=jcd59gi5efgov36008qnsbmafcbakmv6 -- 19:08:57.245 INFO [31513]: QUERY_STRING = /member/page -- 19:08:57.245 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:08:57.290 INFO [31513]: COREGRADE is stopping... -- 19:08:57.290 DEBUG [31513]: Closing database connection -- 19:08:57.290 SQL [31513]: pgsql_close() -- 19:08:57.566 INFO [31513]: COREGRADE is starting... -- 19:08:57.567 INFO [31513]: Version from config: 1.0 -- 19:08:57.567 DEBUG [31513]: Connecting to database... -- 19:08:57.567 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:08:57.567 SQL [31513]: pgsql_db_connect() -- 19:08:57.571 DEBUG [31513]: Database connection successful -- 19:08:57.571 INFO [31513]: _SERVER found -- 19:08:57.571 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 19:08:57.571 INFO [31513]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:08:57.571 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=1990pjhb1rcstntjgcfaoqkv004gqplj -- 19:08:57.571 INFO [31513]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:08:57.571 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:08:57.582 INFO [31513]: COREGRADE is stopping... -- 19:08:57.582 DEBUG [31513]: Closing database connection -- 19:08:57.582 SQL [31513]: pgsql_close() -- 19:08:57.735 INFO [31513]: COREGRADE is starting... -- 19:08:57.736 INFO [31513]: Version from config: 1.0 -- 19:08:57.736 DEBUG [31513]: Connecting to database... -- 19:08:57.736 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:08:57.736 SQL [31513]: pgsql_db_connect() -- 19:08:57.739 DEBUG [31513]: Database connection successful -- 19:08:57.739 INFO [31513]: _SERVER found -- 19:08:57.739 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 19:08:57.739 INFO [31513]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:08:57.739 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=1990pjhb1rcstntjgcfaoqkv004gqplj -- 19:08:57.739 INFO [31513]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:08:57.739 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:08:57.751 INFO [31513]: COREGRADE is stopping... -- 19:08:57.751 DEBUG [31513]: Closing database connection -- 19:08:57.751 SQL [31513]: pgsql_close() -- 19:08:58.965 INFO [31513]: COREGRADE is starting... -- 19:08:58.966 INFO [31513]: Version from config: 1.0 -- 19:08:58.966 DEBUG [31513]: Connecting to database... -- 19:08:58.966 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:08:58.966 SQL [31513]: pgsql_db_connect() -- 19:08:58.970 DEBUG [31513]: Database connection successful -- 19:08:58.970 INFO [31513]: _SERVER found -- 19:08:58.970 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 19:08:58.970 INFO [31513]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:08:58.970 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=1990pjhb1rcstntjgcfaoqkv004gqplj -- 19:08:58.970 INFO [31513]: QUERY_STRING = /member/configure -- 19:08:58.970 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:08:59.011 INFO [31513]: COREGRADE is stopping... -- 19:08:59.011 DEBUG [31513]: Closing database connection -- 19:08:59.011 SQL [31513]: pgsql_close() -- 19:08:59.184 INFO [31513]: COREGRADE is starting... -- 19:08:59.185 INFO [31513]: Version from config: 1.0 -- 19:08:59.185 DEBUG [31513]: Connecting to database... -- 19:08:59.185 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:08:59.185 SQL [31513]: pgsql_db_connect() -- 19:08:59.188 DEBUG [31513]: Database connection successful -- 19:08:59.189 INFO [31513]: _SERVER found -- 19:08:59.189 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 19:08:59.189 INFO [31513]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:08:59.189 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=1990pjhb1rcstntjgcfaoqkv004gqplj -- 19:08:59.189 INFO [31513]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:08:59.189 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:08:59.200 INFO [31513]: COREGRADE is stopping... -- 19:08:59.200 DEBUG [31513]: Closing database connection -- 19:08:59.200 SQL [31513]: pgsql_close() -- 19:08:59.331 INFO [31513]: COREGRADE is starting... -- 19:08:59.331 INFO [31513]: Version from config: 1.0 -- 19:08:59.331 DEBUG [31513]: Connecting to database... -- 19:08:59.331 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:08:59.331 SQL [31513]: pgsql_db_connect() -- 19:08:59.335 DEBUG [31513]: Database connection successful -- 19:08:59.335 INFO [31513]: _SERVER found -- 19:08:59.335 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 19:08:59.335 INFO [31513]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:08:59.335 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=1990pjhb1rcstntjgcfaoqkv004gqplj -- 19:08:59.335 INFO [31513]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:08:59.335 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:08:59.346 INFO [31513]: COREGRADE is stopping... -- 19:08:59.346 DEBUG [31513]: Closing database connection -- 19:08:59.346 SQL [31513]: pgsql_close() -- 19:09:03.322 INFO [31513]: COREGRADE is starting... -- 19:09:03.322 INFO [31513]: Version from config: 1.0 -- 19:09:03.322 DEBUG [31513]: Connecting to database... -- 19:09:03.322 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:03.322 SQL [31513]: pgsql_db_connect() -- 19:09:03.326 DEBUG [31513]: Database connection successful -- 19:09:03.326 INFO [31513]: _SERVER found -- 19:09:03.326 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 19:09:03.326 INFO [31513]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:09:03.326 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=1990pjhb1rcstntjgcfaoqkv004gqplj -- 19:09:03.326 INFO [31513]: QUERY_STRING = /member/configure -- 19:09:03.326 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:03.366 INFO [31513]: COREGRADE is stopping... -- 19:09:03.366 DEBUG [31513]: Closing database connection -- 19:09:03.366 SQL [31513]: pgsql_close() -- 19:09:03.727 INFO [31513]: COREGRADE is starting... -- 19:09:03.728 INFO [31513]: Version from config: 1.0 -- 19:09:03.728 DEBUG [31513]: Connecting to database... -- 19:09:03.728 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:03.728 SQL [31513]: pgsql_db_connect() -- 19:09:03.732 DEBUG [31513]: Database connection successful -- 19:09:03.732 INFO [31513]: _SERVER found -- 19:09:03.732 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 19:09:03.732 INFO [31513]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:09:03.732 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=1990pjhb1rcstntjgcfaoqkv004gqplj -- 19:09:03.732 INFO [31513]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:09:03.732 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:03.743 INFO [31513]: COREGRADE is stopping... -- 19:09:03.743 DEBUG [31513]: Closing database connection -- 19:09:03.743 SQL [31513]: pgsql_close() -- 19:09:03.860 INFO [31513]: COREGRADE is starting... -- 19:09:03.860 INFO [31513]: Version from config: 1.0 -- 19:09:03.860 DEBUG [31513]: Connecting to database... -- 19:09:03.860 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:03.860 SQL [31513]: pgsql_db_connect() -- 19:09:03.864 DEBUG [31513]: Database connection successful -- 19:09:03.864 INFO [31513]: _SERVER found -- 19:09:03.864 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 19:09:03.864 INFO [31513]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:09:03.864 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=1990pjhb1rcstntjgcfaoqkv004gqplj -- 19:09:03.864 INFO [31513]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:09:03.864 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:03.875 INFO [31513]: COREGRADE is stopping... -- 19:09:03.875 DEBUG [31513]: Closing database connection -- 19:09:03.875 SQL [31513]: pgsql_close() -- 19:09:06.488 INFO [31513]: COREGRADE is starting... -- 19:09:06.488 INFO [31513]: Version from config: 1.0 -- 19:09:06.488 DEBUG [31513]: Connecting to database... -- 19:09:06.488 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:06.488 SQL [31513]: pgsql_db_connect() -- 19:09:06.492 DEBUG [31513]: Database connection successful -- 19:09:06.492 INFO [31513]: _SERVER found -- 19:09:06.492 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 19:09:06.492 INFO [31513]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:09:06.492 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=1990pjhb1rcstntjgcfaoqkv004gqplj -- 19:09:06.492 INFO [31513]: QUERY_STRING = /member/configure -- 19:09:06.492 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:06.532 INFO [31513]: COREGRADE is stopping... -- 19:09:06.532 DEBUG [31513]: Closing database connection -- 19:09:06.532 SQL [31513]: pgsql_close() -- 19:09:06.872 INFO [31513]: COREGRADE is starting... -- 19:09:06.872 INFO [31513]: Version from config: 1.0 -- 19:09:06.872 DEBUG [31513]: Connecting to database... -- 19:09:06.872 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:06.872 SQL [31513]: pgsql_db_connect() -- 19:09:06.876 DEBUG [31513]: Database connection successful -- 19:09:06.876 INFO [31513]: _SERVER found -- 19:09:06.876 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 19:09:06.876 INFO [31513]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:09:06.876 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=1990pjhb1rcstntjgcfaoqkv004gqplj -- 19:09:06.876 INFO [31513]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:09:06.876 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:06.888 INFO [31513]: COREGRADE is stopping... -- 19:09:06.888 DEBUG [31513]: Closing database connection -- 19:09:06.888 SQL [31513]: pgsql_close() -- 19:09:06.972 INFO [31513]: COREGRADE is starting... -- 19:09:06.972 INFO [31513]: Version from config: 1.0 -- 19:09:06.972 DEBUG [31513]: Connecting to database... -- 19:09:06.972 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:06.972 SQL [31513]: pgsql_db_connect() -- 19:09:06.976 DEBUG [31513]: Database connection successful -- 19:09:06.976 INFO [31513]: _SERVER found -- 19:09:06.976 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 19:09:06.976 INFO [31513]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:09:06.976 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=1990pjhb1rcstntjgcfaoqkv004gqplj -- 19:09:06.976 INFO [31513]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:09:06.976 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:06.987 INFO [31513]: COREGRADE is stopping... -- 19:09:06.987 DEBUG [31513]: Closing database connection -- 19:09:06.987 SQL [31513]: pgsql_close() -- 19:09:09.829 INFO [31513]: COREGRADE is starting... -- 19:09:09.829 INFO [31513]: Version from config: 1.0 -- 19:09:09.829 DEBUG [31513]: Connecting to database... -- 19:09:09.829 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:09.829 SQL [31513]: pgsql_db_connect() -- 19:09:09.833 DEBUG [31513]: Database connection successful -- 19:09:09.833 INFO [31513]: _SERVER found -- 19:09:09.834 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 19:09:09.834 INFO [31513]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:09:09.834 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=1990pjhb1rcstntjgcfaoqkv004gqplj -- 19:09:09.834 INFO [31513]: QUERY_STRING = /member -- 19:09:09.834 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:09.873 INFO [31513]: COREGRADE is stopping... -- 19:09:09.873 DEBUG [31513]: Closing database connection -- 19:09:09.873 SQL [31513]: pgsql_close() -- 19:09:10.275 INFO [31513]: COREGRADE is starting... -- 19:09:10.275 INFO [31513]: Version from config: 1.0 -- 19:09:10.275 DEBUG [31513]: Connecting to database... -- 19:09:10.275 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:10.275 SQL [31513]: pgsql_db_connect() -- 19:09:10.279 DEBUG [31513]: Database connection successful -- 19:09:10.279 INFO [31513]: _SERVER found -- 19:09:10.279 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 19:09:10.279 INFO [31513]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:09:10.279 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=1990pjhb1rcstntjgcfaoqkv004gqplj -- 19:09:10.279 INFO [31513]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:09:10.279 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:10.290 INFO [31513]: COREGRADE is stopping... -- 19:09:10.291 DEBUG [31513]: Closing database connection -- 19:09:10.291 SQL [31513]: pgsql_close() -- 19:09:10.293 INFO [31485]: COREGRADE is starting... -- 19:09:10.293 INFO [31485]: Version from config: 1.0 -- 19:09:10.294 DEBUG [31485]: Connecting to database... -- 19:09:10.294 DEBUG [31485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:10.294 SQL [31485]: pgsql_db_connect() -- 19:09:10.297 DEBUG [31485]: Database connection successful -- 19:09:10.297 INFO [31485]: _SERVER found -- 19:09:10.297 INFO [31485]: REMOTE_ADDR = 192.168.1.13 -- 19:09:10.297 INFO [31485]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:09:10.297 INFO [31485]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=1990pjhb1rcstntjgcfaoqkv004gqplj -- 19:09:10.297 INFO [31485]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:09:10.297 INFO [31485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:10.309 INFO [31485]: COREGRADE is stopping... -- 19:09:10.309 DEBUG [31485]: Closing database connection -- 19:09:10.309 SQL [31485]: pgsql_close() -- 19:09:11.312 INFO [31485]: COREGRADE is starting... -- 19:09:11.312 INFO [31485]: Version from config: 1.0 -- 19:09:11.312 DEBUG [31485]: Connecting to database... -- 19:09:11.312 DEBUG [31485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:11.312 SQL [31485]: pgsql_db_connect() -- 19:09:11.316 DEBUG [31485]: Database connection successful -- 19:09:11.316 INFO [31485]: _SERVER found -- 19:09:11.316 INFO [31485]: REMOTE_ADDR = 192.168.1.13 -- 19:09:11.316 INFO [31485]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:09:11.316 INFO [31485]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=1990pjhb1rcstntjgcfaoqkv004gqplj -- 19:09:11.316 INFO [31485]: QUERY_STRING = /member/configure -- 19:09:11.316 INFO [31485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:11.357 INFO [31485]: COREGRADE is stopping... -- 19:09:11.357 DEBUG [31485]: Closing database connection -- 19:09:11.357 SQL [31485]: pgsql_close() -- 19:09:11.636 INFO [31485]: COREGRADE is starting... -- 19:09:11.636 INFO [31485]: Version from config: 1.0 -- 19:09:11.636 DEBUG [31485]: Connecting to database... -- 19:09:11.636 DEBUG [31485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:11.636 SQL [31485]: pgsql_db_connect() -- 19:09:11.640 DEBUG [31485]: Database connection successful -- 19:09:11.640 INFO [31485]: _SERVER found -- 19:09:11.640 INFO [31485]: REMOTE_ADDR = 192.168.1.13 -- 19:09:11.640 INFO [31485]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:09:11.640 INFO [31485]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=1990pjhb1rcstntjgcfaoqkv004gqplj -- 19:09:11.640 INFO [31485]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:09:11.640 INFO [31485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:11.651 INFO [31485]: COREGRADE is stopping... -- 19:09:11.651 DEBUG [31485]: Closing database connection -- 19:09:11.651 SQL [31485]: pgsql_close() -- 19:09:11.743 INFO [31485]: COREGRADE is starting... -- 19:09:11.743 INFO [31485]: Version from config: 1.0 -- 19:09:11.743 DEBUG [31485]: Connecting to database... -- 19:09:11.743 DEBUG [31485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:11.743 SQL [31485]: pgsql_db_connect() -- 19:09:11.747 DEBUG [31485]: Database connection successful -- 19:09:11.747 INFO [31485]: _SERVER found -- 19:09:11.747 INFO [31485]: REMOTE_ADDR = 192.168.1.13 -- 19:09:11.747 INFO [31485]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:09:11.747 INFO [31485]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=1990pjhb1rcstntjgcfaoqkv004gqplj -- 19:09:11.747 INFO [31485]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:09:11.747 INFO [31485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:11.758 INFO [31485]: COREGRADE is stopping... -- 19:09:11.758 DEBUG [31485]: Closing database connection -- 19:09:11.758 SQL [31485]: pgsql_close() -- 19:09:14.812 INFO [31485]: COREGRADE is starting... -- 19:09:14.812 INFO [31485]: Version from config: 1.0 -- 19:09:14.812 DEBUG [31485]: Connecting to database... -- 19:09:14.812 DEBUG [31485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:14.812 SQL [31485]: pgsql_db_connect() -- 19:09:14.816 DEBUG [31485]: Database connection successful -- 19:09:14.816 INFO [31485]: _SERVER found -- 19:09:14.816 INFO [31485]: REMOTE_ADDR = 192.168.1.13 -- 19:09:14.816 INFO [31485]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:09:14.816 INFO [31485]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=1990pjhb1rcstntjgcfaoqkv004gqplj -- 19:09:14.816 INFO [31485]: QUERY_STRING = /member/addcard -- 19:09:14.816 INFO [31485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:14.856 INFO [31485]: COREGRADE is stopping... -- 19:09:14.856 DEBUG [31485]: Closing database connection -- 19:09:14.856 SQL [31485]: pgsql_close() -- 19:09:15.406 INFO [31485]: COREGRADE is starting... -- 19:09:15.406 INFO [31485]: Version from config: 1.0 -- 19:09:15.406 DEBUG [31485]: Connecting to database... -- 19:09:15.406 DEBUG [31485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:15.406 SQL [31485]: pgsql_db_connect() -- 19:09:15.410 DEBUG [31485]: Database connection successful -- 19:09:15.410 INFO [31485]: _SERVER found -- 19:09:15.410 INFO [31485]: REMOTE_ADDR = 192.168.1.13 -- 19:09:15.410 INFO [31485]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:09:15.410 INFO [31485]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=1990pjhb1rcstntjgcfaoqkv004gqplj -- 19:09:15.410 INFO [31485]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:09:15.410 INFO [31485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:15.421 INFO [31485]: COREGRADE is stopping... -- 19:09:15.421 DEBUG [31485]: Closing database connection -- 19:09:15.421 SQL [31485]: pgsql_close() -- 19:09:17.256 INFO [31485]: COREGRADE is starting... -- 19:09:17.257 INFO [31485]: Version from config: 1.0 -- 19:09:17.257 DEBUG [31485]: Connecting to database... -- 19:09:17.257 DEBUG [31485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:17.257 SQL [31485]: pgsql_db_connect() -- 19:09:17.261 DEBUG [31485]: Database connection successful -- 19:09:17.261 INFO [31485]: _SERVER found -- 19:09:17.261 INFO [31485]: REMOTE_ADDR = 192.168.1.13 -- 19:09:17.261 INFO [31485]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:09:17.261 INFO [31485]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=1990pjhb1rcstntjgcfaoqkv004gqplj -- 19:09:17.261 INFO [31485]: QUERY_STRING = /member/configure -- 19:09:17.261 INFO [31485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:17.300 INFO [31485]: COREGRADE is stopping... -- 19:09:17.300 DEBUG [31485]: Closing database connection -- 19:09:17.300 SQL [31485]: pgsql_close() -- 19:09:17.887 INFO [31485]: COREGRADE is starting... -- 19:09:17.887 INFO [31485]: Version from config: 1.0 -- 19:09:17.887 DEBUG [31485]: Connecting to database... -- 19:09:17.887 DEBUG [31485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:17.887 SQL [31485]: pgsql_db_connect() -- 19:09:17.891 DEBUG [31485]: Database connection successful -- 19:09:17.891 INFO [31485]: _SERVER found -- 19:09:17.891 INFO [31485]: REMOTE_ADDR = 192.168.1.13 -- 19:09:17.891 INFO [31485]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:09:17.891 INFO [31485]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=1990pjhb1rcstntjgcfaoqkv004gqplj -- 19:09:17.891 INFO [31485]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:09:17.891 INFO [31485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:17.903 INFO [31485]: COREGRADE is stopping... -- 19:09:17.903 DEBUG [31485]: Closing database connection -- 19:09:17.903 SQL [31485]: pgsql_close() -- 19:09:19.138 INFO [31485]: COREGRADE is starting... -- 19:09:19.138 INFO [31485]: Version from config: 1.0 -- 19:09:19.138 DEBUG [31485]: Connecting to database... -- 19:09:19.138 DEBUG [31485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:19.138 SQL [31485]: pgsql_db_connect() -- 19:09:19.142 DEBUG [31485]: Database connection successful -- 19:09:19.142 INFO [31485]: _SERVER found -- 19:09:19.142 INFO [31485]: REMOTE_ADDR = 192.168.1.13 -- 19:09:19.142 INFO [31485]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:09:19.142 INFO [31485]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=1990pjhb1rcstntjgcfaoqkv004gqplj -- 19:09:19.142 INFO [31485]: QUERY_STRING = /member/configure -- 19:09:19.142 INFO [31485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:19.182 INFO [31485]: COREGRADE is stopping... -- 19:09:19.182 DEBUG [31485]: Closing database connection -- 19:09:19.182 SQL [31485]: pgsql_close() -- 19:09:19.435 INFO [31485]: COREGRADE is starting... -- 19:09:19.435 INFO [31485]: Version from config: 1.0 -- 19:09:19.435 DEBUG [31485]: Connecting to database... -- 19:09:19.435 DEBUG [31485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:19.435 SQL [31485]: pgsql_db_connect() -- 19:09:19.439 DEBUG [31485]: Database connection successful -- 19:09:19.439 INFO [31485]: _SERVER found -- 19:09:19.439 INFO [31485]: REMOTE_ADDR = 192.168.1.13 -- 19:09:19.439 INFO [31485]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:09:19.439 INFO [31485]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=1990pjhb1rcstntjgcfaoqkv004gqplj -- 19:09:19.439 INFO [31485]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:09:19.439 INFO [31485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:19.450 INFO [31485]: COREGRADE is stopping... -- 19:09:19.450 DEBUG [31485]: Closing database connection -- 19:09:19.450 SQL [31485]: pgsql_close() -- 19:09:23.420 INFO [31485]: COREGRADE is starting... -- 19:09:23.421 INFO [31485]: Version from config: 1.0 -- 19:09:23.421 DEBUG [31485]: Connecting to database... -- 19:09:23.421 DEBUG [31485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:23.421 SQL [31485]: pgsql_db_connect() -- 19:09:23.425 DEBUG [31485]: Database connection successful -- 19:09:23.425 INFO [31485]: _SERVER found -- 19:09:23.425 INFO [31485]: REMOTE_ADDR = 192.168.1.13 -- 19:09:23.425 INFO [31485]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:09:23.425 INFO [31485]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=1990pjhb1rcstntjgcfaoqkv004gqplj -- 19:09:23.425 INFO [31485]: QUERY_STRING = /member/page -- 19:09:23.425 INFO [31485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:23.466 INFO [31485]: COREGRADE is stopping... -- 19:09:23.466 DEBUG [31485]: Closing database connection -- 19:09:23.466 SQL [31485]: pgsql_close() -- 19:09:23.880 INFO [31485]: COREGRADE is starting... -- 19:09:23.881 INFO [31485]: Version from config: 1.0 -- 19:09:23.881 DEBUG [31485]: Connecting to database... -- 19:09:23.881 DEBUG [31485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:23.881 SQL [31485]: pgsql_db_connect() -- 19:09:23.885 DEBUG [31485]: Database connection successful -- 19:09:23.885 INFO [31485]: _SERVER found -- 19:09:23.885 INFO [31485]: REMOTE_ADDR = 192.168.1.13 -- 19:09:23.885 INFO [31485]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:09:23.885 INFO [31485]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=1990pjhb1rcstntjgcfaoqkv004gqplj -- 19:09:23.885 INFO [31485]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:09:23.885 INFO [31485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:23.896 INFO [31485]: COREGRADE is stopping... -- 19:09:23.896 DEBUG [31485]: Closing database connection -- 19:09:23.896 SQL [31485]: pgsql_close() -- 19:09:31.992 INFO [31486]: COREGRADE is starting... -- 19:09:31.992 INFO [31486]: Version from config: 1.0 -- 19:09:31.992 DEBUG [31486]: Connecting to database... -- 19:09:31.992 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:31.992 SQL [31486]: pgsql_db_connect() -- 19:09:31.996 DEBUG [31486]: Database connection successful -- 19:09:31.996 INFO [31486]: _SERVER found -- 19:09:31.996 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 19:09:31.996 INFO [31486]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:09:31.996 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=1990pjhb1rcstntjgcfaoqkv004gqplj -- 19:09:31.996 INFO [31486]: QUERY_STRING = /member/viewCardAddAction -- 19:09:31.996 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:32.028 INFO [31486]: COREGRADE is stopping... -- 19:09:32.028 DEBUG [31486]: Closing database connection -- 19:09:32.028 SQL [31486]: pgsql_close() -- 19:09:35.380 INFO [31486]: COREGRADE is starting... -- 19:09:35.381 INFO [31486]: Version from config: 1.0 -- 19:09:35.381 DEBUG [31486]: Connecting to database... -- 19:09:35.381 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:35.381 SQL [31486]: pgsql_db_connect() -- 19:09:35.385 DEBUG [31486]: Database connection successful -- 19:09:35.385 INFO [31486]: _SERVER found -- 19:09:35.385 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 19:09:35.385 INFO [31486]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:09:35.385 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=1990pjhb1rcstntjgcfaoqkv004gqplj -- 19:09:35.385 INFO [31486]: QUERY_STRING = /member/viewCardAddAction -- 19:09:35.385 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:35.416 INFO [31486]: COREGRADE is stopping... -- 19:09:35.416 DEBUG [31486]: Closing database connection -- 19:09:35.416 SQL [31486]: pgsql_close() -- 19:09:38.819 INFO [31486]: COREGRADE is starting... -- 19:09:38.819 INFO [31486]: Version from config: 1.0 -- 19:09:38.819 DEBUG [31486]: Connecting to database... -- 19:09:38.819 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:38.819 SQL [31486]: pgsql_db_connect() -- 19:09:38.823 DEBUG [31486]: Database connection successful -- 19:09:38.823 INFO [31486]: _SERVER found -- 19:09:38.823 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 19:09:38.823 INFO [31486]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:09:38.823 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=1990pjhb1rcstntjgcfaoqkv004gqplj -- 19:09:38.823 INFO [31486]: QUERY_STRING = /member/viewCardAddAction -- 19:09:38.823 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:38.854 INFO [31486]: COREGRADE is stopping... -- 19:09:38.854 DEBUG [31486]: Closing database connection -- 19:09:38.854 SQL [31486]: pgsql_close() -- 19:09:41.222 INFO [31486]: COREGRADE is starting... -- 19:09:41.222 INFO [31486]: Version from config: 1.0 -- 19:09:41.222 DEBUG [31486]: Connecting to database... -- 19:09:41.222 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:41.222 SQL [31486]: pgsql_db_connect() -- 19:09:41.227 DEBUG [31486]: Database connection successful -- 19:09:41.227 INFO [31486]: _SERVER found -- 19:09:41.227 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 19:09:41.227 INFO [31486]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:09:41.227 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=1990pjhb1rcstntjgcfaoqkv004gqplj -- 19:09:41.227 INFO [31486]: QUERY_STRING = /member/viewCardAddAction -- 19:09:41.227 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:41.258 INFO [31486]: COREGRADE is stopping... -- 19:09:41.258 DEBUG [31486]: Closing database connection -- 19:09:41.258 SQL [31486]: pgsql_close() -- 19:09:43.063 INFO [31486]: COREGRADE is starting... -- 19:09:43.063 INFO [31486]: Version from config: 1.0 -- 19:09:43.063 DEBUG [31486]: Connecting to database... -- 19:09:43.063 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:43.063 SQL [31486]: pgsql_db_connect() -- 19:09:43.067 DEBUG [31486]: Database connection successful -- 19:09:43.067 INFO [31486]: _SERVER found -- 19:09:43.067 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 19:09:43.067 INFO [31486]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:09:43.067 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=1990pjhb1rcstntjgcfaoqkv004gqplj -- 19:09:43.067 INFO [31486]: QUERY_STRING = /member/viewCardAddAction -- 19:09:43.067 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:43.098 INFO [31486]: COREGRADE is stopping... -- 19:09:43.098 DEBUG [31486]: Closing database connection -- 19:09:43.098 SQL [31486]: pgsql_close() -- 19:09:44.346 INFO [31486]: COREGRADE is starting... -- 19:09:44.346 INFO [31486]: Version from config: 1.0 -- 19:09:44.346 DEBUG [31486]: Connecting to database... -- 19:09:44.346 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:44.346 SQL [31486]: pgsql_db_connect() -- 19:09:44.350 DEBUG [31486]: Database connection successful -- 19:09:44.350 INFO [31486]: _SERVER found -- 19:09:44.350 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 19:09:44.350 INFO [31486]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:09:44.350 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=1990pjhb1rcstntjgcfaoqkv004gqplj -- 19:09:44.350 INFO [31486]: QUERY_STRING = /member/viewCardAddAction -- 19:09:44.350 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:44.381 INFO [31486]: COREGRADE is stopping... -- 19:09:44.381 DEBUG [31486]: Closing database connection -- 19:09:44.381 SQL [31486]: pgsql_close() -- 19:09:47.509 INFO [31486]: COREGRADE is starting... -- 19:09:47.509 INFO [31486]: Version from config: 1.0 -- 19:09:47.509 DEBUG [31486]: Connecting to database... -- 19:09:47.509 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:47.509 SQL [31486]: pgsql_db_connect() -- 19:09:47.513 DEBUG [31486]: Database connection successful -- 19:09:47.513 INFO [31486]: _SERVER found -- 19:09:47.513 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 19:09:47.513 INFO [31486]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:09:47.513 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=1990pjhb1rcstntjgcfaoqkv004gqplj -- 19:09:47.513 INFO [31486]: QUERY_STRING = /member/viewCardAddAction -- 19:09:47.513 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:47.544 INFO [31486]: COREGRADE is stopping... -- 19:09:47.544 DEBUG [31486]: Closing database connection -- 19:09:47.544 SQL [31486]: pgsql_close() -- 19:09:51.329 INFO [31486]: COREGRADE is starting... -- 19:09:51.329 INFO [31486]: Version from config: 1.0 -- 19:09:51.330 DEBUG [31486]: Connecting to database... -- 19:09:51.330 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:51.330 SQL [31486]: pgsql_db_connect() -- 19:09:51.334 DEBUG [31486]: Database connection successful -- 19:09:51.334 INFO [31486]: _SERVER found -- 19:09:51.334 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 19:09:51.334 INFO [31486]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:09:51.334 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=1990pjhb1rcstntjgcfaoqkv004gqplj -- 19:09:51.334 INFO [31486]: QUERY_STRING = /member/configure -- 19:09:51.334 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:51.374 INFO [31486]: COREGRADE is stopping... -- 19:09:51.374 DEBUG [31486]: Closing database connection -- 19:09:51.374 SQL [31486]: pgsql_close() -- 19:09:51.697 INFO [31486]: COREGRADE is starting... -- 19:09:51.697 INFO [31486]: Version from config: 1.0 -- 19:09:51.697 DEBUG [31486]: Connecting to database... -- 19:09:51.698 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:09:51.698 SQL [31486]: pgsql_db_connect() -- 19:09:51.702 DEBUG [31486]: Database connection successful -- 19:09:51.702 INFO [31486]: _SERVER found -- 19:09:51.702 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 19:09:51.702 INFO [31486]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:09:51.702 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=1990pjhb1rcstntjgcfaoqkv004gqplj -- 19:09:51.702 INFO [31486]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:09:51.702 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:09:51.713 INFO [31486]: COREGRADE is stopping... -- 19:09:51.713 DEBUG [31486]: Closing database connection -- 19:09:51.713 SQL [31486]: pgsql_close() -- 19:29:13.372 INFO [31484]: COREGRADE is starting... -- 19:29:13.373 INFO [31484]: Version from config: 1.0 -- 19:29:13.373 DEBUG [31484]: Connecting to database... -- 19:29:13.373 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:13.373 SQL [31484]: pgsql_db_connect() -- 19:29:13.377 DEBUG [31484]: Database connection successful -- 19:29:13.377 INFO [31484]: _SERVER found -- 19:29:13.377 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 19:29:13.377 INFO [31484]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:29:13.377 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=1990pjhb1rcstntjgcfaoqkv004gqplj -- 19:29:13.377 INFO [31484]: QUERY_STRING = /member/configure -- 19:29:13.377 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:29:13.428 INFO [31484]: COREGRADE is stopping... -- 19:29:13.428 DEBUG [31484]: Closing database connection -- 19:29:13.428 SQL [31484]: pgsql_close() -- 19:29:14.010 INFO [31484]: COREGRADE is starting... -- 19:29:14.011 INFO [31484]: Version from config: 1.0 -- 19:29:14.011 DEBUG [31484]: Connecting to database... -- 19:29:14.011 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:14.011 SQL [31484]: pgsql_db_connect() -- 19:29:14.015 DEBUG [31484]: Database connection successful -- 19:29:14.015 INFO [31484]: _SERVER found -- 19:29:14.015 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 19:29:14.015 INFO [31484]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:29:14.015 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=mbtdso8e9m37o13k1gb8ae8cdod8nam6 -- 19:29:14.015 INFO [31484]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:29:14.015 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:29:14.027 INFO [31484]: COREGRADE is stopping... -- 19:29:14.027 DEBUG [31484]: Closing database connection -- 19:29:14.027 SQL [31484]: pgsql_close() -- 19:29:14.266 INFO [31484]: COREGRADE is starting... -- 19:29:14.267 INFO [31484]: Version from config: 1.0 -- 19:29:14.267 DEBUG [31484]: Connecting to database... -- 19:29:14.267 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:14.267 SQL [31484]: pgsql_db_connect() -- 19:29:14.271 DEBUG [31484]: Database connection successful -- 19:29:14.271 INFO [31484]: _SERVER found -- 19:29:14.271 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 19:29:14.271 INFO [31484]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:29:14.271 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=mbtdso8e9m37o13k1gb8ae8cdod8nam6 -- 19:29:14.271 INFO [31484]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:29:14.271 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:29:14.283 INFO [31484]: COREGRADE is stopping... -- 19:29:14.283 DEBUG [31484]: Closing database connection -- 19:29:14.283 SQL [31484]: pgsql_close() -- 19:29:17.691 INFO [31484]: COREGRADE is starting... -- 19:29:17.691 INFO [31484]: Version from config: 1.0 -- 19:29:17.691 DEBUG [31484]: Connecting to database... -- 19:29:17.691 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:17.691 SQL [31484]: pgsql_db_connect() -- 19:29:17.696 DEBUG [31484]: Database connection successful -- 19:29:17.696 INFO [31484]: _SERVER found -- 19:29:17.696 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 19:29:17.696 INFO [31484]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:29:17.696 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=mbtdso8e9m37o13k1gb8ae8cdod8nam6 -- 19:29:17.696 INFO [31484]: QUERY_STRING = /member/page -- 19:29:17.696 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:29:17.738 INFO [31484]: COREGRADE is stopping... -- 19:29:17.738 DEBUG [31484]: Closing database connection -- 19:29:17.738 SQL [31484]: pgsql_close() -- 19:29:17.927 INFO [31484]: COREGRADE is starting... -- 19:29:17.927 INFO [31484]: Version from config: 1.0 -- 19:29:17.927 DEBUG [31484]: Connecting to database... -- 19:29:17.928 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:17.928 SQL [31484]: pgsql_db_connect() -- 19:29:17.932 DEBUG [31484]: Database connection successful -- 19:29:17.932 INFO [31484]: _SERVER found -- 19:29:17.932 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 19:29:17.932 INFO [31484]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:29:17.932 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=mbtdso8e9m37o13k1gb8ae8cdod8nam6 -- 19:29:17.932 INFO [31484]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:29:17.932 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:29:17.944 INFO [31484]: COREGRADE is stopping... -- 19:29:17.944 DEBUG [31484]: Closing database connection -- 19:29:17.944 SQL [31484]: pgsql_close() -- 19:29:18.088 INFO [31484]: COREGRADE is starting... -- 19:29:18.088 INFO [31484]: Version from config: 1.0 -- 19:29:18.088 DEBUG [31484]: Connecting to database... -- 19:29:18.088 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:18.088 SQL [31484]: pgsql_db_connect() -- 19:29:18.092 DEBUG [31484]: Database connection successful -- 19:29:18.092 INFO [31484]: _SERVER found -- 19:29:18.092 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 19:29:18.092 INFO [31484]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:29:18.093 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=mbtdso8e9m37o13k1gb8ae8cdod8nam6 -- 19:29:18.093 INFO [31484]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:29:18.093 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:29:18.104 INFO [31484]: COREGRADE is stopping... -- 19:29:18.104 DEBUG [31484]: Closing database connection -- 19:29:18.104 SQL [31484]: pgsql_close() -- 19:29:19.346 INFO [31484]: COREGRADE is starting... -- 19:29:19.346 INFO [31484]: Version from config: 1.0 -- 19:29:19.346 DEBUG [31484]: Connecting to database... -- 19:29:19.346 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:19.346 SQL [31484]: pgsql_db_connect() -- 19:29:19.351 DEBUG [31484]: Database connection successful -- 19:29:19.351 INFO [31484]: _SERVER found -- 19:29:19.351 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 19:29:19.351 INFO [31484]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:29:19.351 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=mbtdso8e9m37o13k1gb8ae8cdod8nam6 -- 19:29:19.351 INFO [31484]: QUERY_STRING = /member/configure -- 19:29:19.351 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:29:19.391 INFO [31484]: COREGRADE is stopping... -- 19:29:19.391 DEBUG [31484]: Closing database connection -- 19:29:19.391 SQL [31484]: pgsql_close() -- 19:29:19.771 INFO [31484]: COREGRADE is starting... -- 19:29:19.771 INFO [31484]: Version from config: 1.0 -- 19:29:19.771 DEBUG [31484]: Connecting to database... -- 19:29:19.771 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:19.771 SQL [31484]: pgsql_db_connect() -- 19:29:19.776 DEBUG [31484]: Database connection successful -- 19:29:19.776 INFO [31484]: _SERVER found -- 19:29:19.776 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 19:29:19.776 INFO [31484]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:29:19.776 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=mbtdso8e9m37o13k1gb8ae8cdod8nam6 -- 19:29:19.776 INFO [31484]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:29:19.776 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:29:19.787 INFO [31484]: COREGRADE is stopping... -- 19:29:19.787 DEBUG [31484]: Closing database connection -- 19:29:19.787 SQL [31484]: pgsql_close() -- 19:29:19.945 INFO [31484]: COREGRADE is starting... -- 19:29:19.946 INFO [31484]: Version from config: 1.0 -- 19:29:19.946 DEBUG [31484]: Connecting to database... -- 19:29:19.946 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:19.946 SQL [31484]: pgsql_db_connect() -- 19:29:19.950 DEBUG [31484]: Database connection successful -- 19:29:19.950 INFO [31484]: _SERVER found -- 19:29:19.950 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 19:29:19.950 INFO [31484]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:29:19.950 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=mbtdso8e9m37o13k1gb8ae8cdod8nam6 -- 19:29:19.950 INFO [31484]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:29:19.950 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:29:19.962 INFO [31484]: COREGRADE is stopping... -- 19:29:19.962 DEBUG [31484]: Closing database connection -- 19:29:19.962 SQL [31484]: pgsql_close() -- 19:29:23.453 INFO [31484]: COREGRADE is starting... -- 19:29:23.454 INFO [31484]: Version from config: 1.0 -- 19:29:23.454 DEBUG [31484]: Connecting to database... -- 19:29:23.454 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:23.454 SQL [31484]: pgsql_db_connect() -- 19:29:23.458 DEBUG [31484]: Database connection successful -- 19:29:23.458 INFO [31484]: _SERVER found -- 19:29:23.458 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 19:29:23.458 INFO [31484]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:29:23.458 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=mbtdso8e9m37o13k1gb8ae8cdod8nam6 -- 19:29:23.458 INFO [31484]: QUERY_STRING = /member/viewSharePage -- 19:29:23.458 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:29:23.493 INFO [31484]: COREGRADE is stopping... -- 19:29:23.493 DEBUG [31484]: Closing database connection -- 19:29:23.493 SQL [31484]: pgsql_close() -- 19:42:35.255 INFO [31649]: COREGRADE is starting... -- 19:42:35.255 INFO [31649]: Version from config: 1.0 -- 19:42:35.255 DEBUG [31649]: Connecting to database... -- 19:42:35.255 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:42:35.255 SQL [31649]: pgsql_db_connect() -- 19:42:35.259 DEBUG [31649]: Database connection successful -- 19:42:35.259 INFO [31649]: _SERVER found -- 19:42:35.259 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 19:42:35.259 INFO [31649]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:42:35.259 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=mbtdso8e9m37o13k1gb8ae8cdod8nam6 -- 19:42:35.259 INFO [31649]: QUERY_STRING = -- 19:42:35.259 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:42:35.297 INFO [31649]: COREGRADE is stopping... -- 19:42:35.297 DEBUG [31649]: Closing database connection -- 19:42:35.297 SQL [31649]: pgsql_close() -- 19:42:35.686 INFO [31649]: COREGRADE is starting... -- 19:42:35.686 INFO [31649]: Version from config: 1.0 -- 19:42:35.686 DEBUG [31649]: Connecting to database... -- 19:42:35.686 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:42:35.686 SQL [31649]: pgsql_db_connect() -- 19:42:35.690 DEBUG [31649]: Database connection successful -- 19:42:35.690 INFO [31649]: _SERVER found -- 19:42:35.690 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 19:42:35.690 INFO [31649]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:42:35.690 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=bnsfo2q4n759tm1eq9mebrfff4rqqakf -- 19:42:35.690 INFO [31649]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 19:42:35.690 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:42:35.702 INFO [31649]: COREGRADE is stopping... -- 19:42:35.702 DEBUG [31649]: Closing database connection -- 19:42:35.702 SQL [31649]: pgsql_close() -- 19:42:35.717 INFO [31649]: COREGRADE is starting... -- 19:42:35.717 INFO [31649]: Version from config: 1.0 -- 19:42:35.717 DEBUG [31649]: Connecting to database... -- 19:42:35.717 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:42:35.717 SQL [31649]: pgsql_db_connect() -- 19:42:35.721 DEBUG [31649]: Database connection successful -- 19:42:35.721 INFO [31649]: _SERVER found -- 19:42:35.721 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 19:42:35.721 INFO [31649]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:42:35.721 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=bnsfo2q4n759tm1eq9mebrfff4rqqakf -- 19:42:35.721 INFO [31649]: QUERY_STRING = /assets/img/footer_1.jpg -- 19:42:35.721 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:42:35.733 INFO [31649]: COREGRADE is stopping... -- 19:42:35.733 DEBUG [31649]: Closing database connection -- 19:42:35.733 SQL [31649]: pgsql_close() -- 19:42:44.832 INFO [31488]: COREGRADE is starting... -- 19:42:44.832 INFO [31488]: Version from config: 1.0 -- 19:42:44.832 DEBUG [31488]: Connecting to database... -- 19:42:44.832 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:42:44.832 SQL [31488]: pgsql_db_connect() -- 19:42:44.836 DEBUG [31488]: Database connection successful -- 19:42:44.836 INFO [31488]: _SERVER found -- 19:42:44.836 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 19:42:44.836 INFO [31488]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:42:44.836 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=bnsfo2q4n759tm1eq9mebrfff4rqqakf; _gat_gtag_UA_54829827_2=1 -- 19:42:44.836 INFO [31488]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 19:42:44.836 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:42:44.848 INFO [31488]: COREGRADE is stopping... -- 19:42:44.848 DEBUG [31488]: Closing database connection -- 19:42:44.848 SQL [31488]: pgsql_close() -- 21:02:33.607 INFO [2268]: COREGRADE is starting... -- 21:02:33.607 INFO [2268]: Version from config: 1.0 -- 21:02:33.607 DEBUG [2268]: Connecting to database... -- 21:02:33.607 DEBUG [2268]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:02:33.607 SQL [2268]: pgsql_db_connect() -- 21:02:33.612 DEBUG [2268]: Database connection successful -- 21:02:33.612 INFO [2268]: _SERVER found -- 21:02:33.612 INFO [2268]: REMOTE_ADDR = 192.168.1.13 -- 21:02:33.612 INFO [2268]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:02:33.612 INFO [2268]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=bnsfo2q4n759tm1eq9mebrfff4rqqakf -- 21:02:33.612 INFO [2268]: QUERY_STRING = /member/configure -- 21:02:33.612 INFO [2268]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:02:33.657 INFO [2268]: COREGRADE is stopping... -- 21:02:33.657 DEBUG [2268]: Closing database connection -- 21:02:33.657 SQL [2268]: pgsql_close() -- 21:02:34.697 INFO [2268]: COREGRADE is starting... -- 21:02:34.697 INFO [2268]: Version from config: 1.0 -- 21:02:34.697 DEBUG [2268]: Connecting to database... -- 21:02:34.697 DEBUG [2268]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:02:34.697 SQL [2268]: pgsql_db_connect() -- 21:02:34.701 DEBUG [2268]: Database connection successful -- 21:02:34.701 INFO [2268]: _SERVER found -- 21:02:34.701 INFO [2268]: REMOTE_ADDR = 192.168.1.13 -- 21:02:34.701 INFO [2268]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:02:34.701 INFO [2268]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=363eforqr24dvht3ur7dooomgdvuduh2 -- 21:02:34.701 INFO [2268]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:02:34.701 INFO [2268]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:02:34.713 INFO [2268]: COREGRADE is stopping... -- 21:02:34.713 DEBUG [2268]: Closing database connection -- 21:02:34.713 SQL [2268]: pgsql_close() -- 21:02:35.380 INFO [2268]: COREGRADE is starting... -- 21:02:35.380 INFO [2268]: Version from config: 1.0 -- 21:02:35.380 DEBUG [2268]: Connecting to database... -- 21:02:35.380 DEBUG [2268]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:02:35.380 SQL [2268]: pgsql_db_connect() -- 21:02:35.384 DEBUG [2268]: Database connection successful -- 21:02:35.384 INFO [2268]: _SERVER found -- 21:02:35.384 INFO [2268]: REMOTE_ADDR = 192.168.1.13 -- 21:02:35.384 INFO [2268]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:02:35.384 INFO [2268]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=363eforqr24dvht3ur7dooomgdvuduh2 -- 21:02:35.384 INFO [2268]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:02:35.384 INFO [2268]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:02:35.396 INFO [2268]: COREGRADE is stopping... -- 21:02:35.396 DEBUG [2268]: Closing database connection -- 21:02:35.396 SQL [2268]: pgsql_close() -- 21:02:38.035 INFO [2268]: COREGRADE is starting... -- 21:02:38.035 INFO [2268]: Version from config: 1.0 -- 21:02:38.035 DEBUG [2268]: Connecting to database... -- 21:02:38.035 DEBUG [2268]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:02:38.035 SQL [2268]: pgsql_db_connect() -- 21:02:38.039 DEBUG [2268]: Database connection successful -- 21:02:38.039 INFO [2268]: _SERVER found -- 21:02:38.039 INFO [2268]: REMOTE_ADDR = 192.168.1.13 -- 21:02:38.039 INFO [2268]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:02:38.039 INFO [2268]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=363eforqr24dvht3ur7dooomgdvuduh2 -- 21:02:38.039 INFO [2268]: QUERY_STRING = -- 21:02:38.039 INFO [2268]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:02:38.071 INFO [2268]: COREGRADE is stopping... -- 21:02:38.071 DEBUG [2268]: Closing database connection -- 21:02:38.071 SQL [2268]: pgsql_close() -- 21:02:38.108 INFO [2268]: COREGRADE is starting... -- 21:02:38.108 INFO [2268]: Version from config: 1.0 -- 21:02:38.108 DEBUG [2268]: Connecting to database... -- 21:02:38.108 DEBUG [2268]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:02:38.108 SQL [2268]: pgsql_db_connect() -- 21:02:38.112 DEBUG [2268]: Database connection successful -- 21:02:38.112 INFO [2268]: _SERVER found -- 21:02:38.112 INFO [2268]: REMOTE_ADDR = 192.168.1.13 -- 21:02:38.112 INFO [2268]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:02:38.112 INFO [2268]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=363eforqr24dvht3ur7dooomgdvuduh2 -- 21:02:38.112 INFO [2268]: QUERY_STRING = -- 21:02:38.112 INFO [2268]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:02:38.143 INFO [2268]: COREGRADE is stopping... -- 21:02:38.143 DEBUG [2268]: Closing database connection -- 21:02:38.143 SQL [2268]: pgsql_close() -- 21:02:40.391 INFO [2268]: COREGRADE is starting... -- 21:02:40.391 INFO [2268]: Version from config: 1.0 -- 21:02:40.391 DEBUG [2268]: Connecting to database... -- 21:02:40.391 DEBUG [2268]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:02:40.391 SQL [2268]: pgsql_db_connect() -- 21:02:40.395 DEBUG [2268]: Database connection successful -- 21:02:40.395 INFO [2268]: _SERVER found -- 21:02:40.395 INFO [2268]: REMOTE_ADDR = 192.168.1.13 -- 21:02:40.395 INFO [2268]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:02:40.395 INFO [2268]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=363eforqr24dvht3ur7dooomgdvuduh2 -- 21:02:40.395 INFO [2268]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 21:02:40.395 INFO [2268]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:02:40.406 INFO [2268]: COREGRADE is stopping... -- 21:02:40.406 DEBUG [2268]: Closing database connection -- 21:02:40.406 SQL [2268]: pgsql_close() -- 21:02:40.423 INFO [2268]: COREGRADE is starting... -- 21:02:40.423 INFO [2268]: Version from config: 1.0 -- 21:02:40.423 DEBUG [2268]: Connecting to database... -- 21:02:40.423 DEBUG [2268]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:02:40.423 SQL [2268]: pgsql_db_connect() -- 21:02:40.427 DEBUG [2268]: Database connection successful -- 21:02:40.427 INFO [2268]: _SERVER found -- 21:02:40.427 INFO [2268]: REMOTE_ADDR = 192.168.1.13 -- 21:02:40.427 INFO [2268]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:02:40.427 INFO [2268]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=363eforqr24dvht3ur7dooomgdvuduh2 -- 21:02:40.427 INFO [2268]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:02:40.427 INFO [2268]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:02:40.438 INFO [2268]: COREGRADE is stopping... -- 21:02:40.439 DEBUG [2268]: Closing database connection -- 21:02:40.439 SQL [2268]: pgsql_close() -- 21:02:40.899 INFO [2268]: COREGRADE is starting... -- 21:02:40.899 INFO [2268]: Version from config: 1.0 -- 21:02:40.899 DEBUG [2268]: Connecting to database... -- 21:02:40.899 DEBUG [2268]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:02:40.899 SQL [2268]: pgsql_db_connect() -- 21:02:40.914 INFO [2270]: COREGRADE is starting... -- 21:02:40.914 INFO [2270]: Version from config: 1.0 -- 21:02:40.914 DEBUG [2270]: Connecting to database... -- 21:02:40.914 DEBUG [2270]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:02:40.914 SQL [2270]: pgsql_db_connect() -- 21:02:40.903 DEBUG [2268]: Database connection successful -- 21:02:40.903 INFO [2268]: _SERVER found -- 21:02:40.903 INFO [2268]: REMOTE_ADDR = 192.168.1.13 -- 21:02:40.903 INFO [2268]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:02:40.903 INFO [2268]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=363eforqr24dvht3ur7dooomgdvuduh2; _gat_gtag_UA_54829827_2=1 -- 21:02:40.903 INFO [2268]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 21:02:40.903 INFO [2268]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:02:40.914 INFO [2268]: COREGRADE is stopping... -- 21:02:40.914 DEBUG [2268]: Closing database connection -- 21:02:40.914 SQL [2268]: pgsql_close() -- 21:02:40.918 DEBUG [2270]: Database connection successful -- 21:02:40.918 INFO [2270]: _SERVER found -- 21:02:40.918 INFO [2270]: REMOTE_ADDR = 192.168.1.13 -- 21:02:40.918 INFO [2270]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:02:40.918 INFO [2270]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=363eforqr24dvht3ur7dooomgdvuduh2; _gat_gtag_UA_54829827_2=1 -- 21:02:40.918 INFO [2270]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:02:40.918 INFO [2270]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:02:40.930 INFO [2270]: COREGRADE is stopping... -- 21:02:40.930 DEBUG [2270]: Closing database connection -- 21:02:40.930 SQL [2270]: pgsql_close() -- 21:02:43.465 INFO [2270]: COREGRADE is starting... -- 21:02:43.466 INFO [2270]: Version from config: 1.0 -- 21:02:43.466 DEBUG [2270]: Connecting to database... -- 21:02:43.466 DEBUG [2270]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:02:43.466 SQL [2270]: pgsql_db_connect() -- 21:02:43.470 DEBUG [2270]: Database connection successful -- 21:02:43.470 INFO [2270]: _SERVER found -- 21:02:43.470 INFO [2270]: REMOTE_ADDR = 192.168.1.13 -- 21:02:43.470 INFO [2270]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:02:43.470 INFO [2270]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=363eforqr24dvht3ur7dooomgdvuduh2; _gat_gtag_UA_54829827_2=1 -- 21:02:43.470 INFO [2270]: QUERY_STRING = /member/configure -- 21:02:43.470 INFO [2270]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:02:43.512 INFO [2270]: COREGRADE is stopping... -- 21:02:43.512 DEBUG [2270]: Closing database connection -- 21:02:43.512 SQL [2270]: pgsql_close() -- 21:02:45.040 INFO [2270]: COREGRADE is starting... -- 21:02:45.041 INFO [2270]: Version from config: 1.0 -- 21:02:45.041 DEBUG [2270]: Connecting to database... -- 21:02:45.041 DEBUG [2270]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:02:45.041 SQL [2270]: pgsql_db_connect() -- 21:02:45.045 DEBUG [2270]: Database connection successful -- 21:02:45.045 INFO [2270]: _SERVER found -- 21:02:45.045 INFO [2270]: REMOTE_ADDR = 192.168.1.13 -- 21:02:45.045 INFO [2270]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:02:45.045 INFO [2270]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=363eforqr24dvht3ur7dooomgdvuduh2; _gat_gtag_UA_54829827_2=1 -- 21:02:45.045 INFO [2270]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:02:45.045 INFO [2270]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:02:45.056 INFO [2270]: COREGRADE is stopping... -- 21:02:45.056 DEBUG [2270]: Closing database connection -- 21:02:45.056 SQL [2270]: pgsql_close() -- 21:02:45.609 INFO [2270]: COREGRADE is starting... -- 21:02:45.609 INFO [2270]: Version from config: 1.0 -- 21:02:45.609 DEBUG [2270]: Connecting to database... -- 21:02:45.609 DEBUG [2270]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:02:45.609 SQL [2270]: pgsql_db_connect() -- 21:02:45.613 DEBUG [2270]: Database connection successful -- 21:02:45.613 INFO [2270]: _SERVER found -- 21:02:45.613 INFO [2270]: REMOTE_ADDR = 192.168.1.13 -- 21:02:45.613 INFO [2270]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:02:45.613 INFO [2270]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=363eforqr24dvht3ur7dooomgdvuduh2; _gat_gtag_UA_54829827_2=1 -- 21:02:45.613 INFO [2270]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:02:45.614 INFO [2270]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:02:45.625 INFO [2270]: COREGRADE is stopping... -- 21:02:45.625 DEBUG [2270]: Closing database connection -- 21:02:45.625 SQL [2270]: pgsql_close() -- 06:19:54.579 INFO [2269]: COREGRADE is starting... -- 06:19:54.580 INFO [2269]: Version from config: 1.0 -- 06:19:54.580 DEBUG [2269]: Connecting to database... -- 06:19:54.580 DEBUG [2269]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:19:54.580 SQL [2269]: pgsql_db_connect() -- 06:19:54.586 DEBUG [2269]: Database connection successful -- 06:19:54.586 INFO [2269]: _SERVER found -- 06:19:54.586 INFO [2269]: REMOTE_ADDR = 192.168.1.13 -- 06:19:54.586 INFO [2269]: SERVER_NAME = oameye.works.coregrade.com -- 06:19:54.586 INFO [2269]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310 -- 06:19:54.586 INFO [2269]: QUERY_STRING = -- 06:19:54.586 INFO [2269]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:19:54.625 INFO [2269]: COREGRADE is stopping... -- 06:19:54.626 DEBUG [2269]: Closing database connection -- 06:19:54.626 SQL [2269]: pgsql_close() -- 06:19:54.895 INFO [31487]: COREGRADE is starting... -- 06:19:54.895 INFO [31487]: Version from config: 1.0 -- 06:19:54.895 DEBUG [31487]: Connecting to database... -- 06:19:54.895 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:19:54.896 SQL [31487]: pgsql_db_connect() -- 06:19:54.896 INFO [2269]: COREGRADE is starting... -- 06:19:54.896 INFO [2269]: Version from config: 1.0 -- 06:19:54.896 DEBUG [2269]: Connecting to database... -- 06:19:54.896 DEBUG [2269]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:19:54.896 SQL [2269]: pgsql_db_connect() -- 06:19:54.901 DEBUG [2269]: Database connection successful -- 06:19:54.901 INFO [2269]: _SERVER found -- 06:19:54.901 INFO [2269]: REMOTE_ADDR = 192.168.1.13 -- 06:19:54.901 INFO [2269]: SERVER_NAME = oameye.works.coregrade.com -- 06:19:54.901 INFO [2269]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=f4ljkosckvc0ap2f4ai0hkhi666a5c75 -- 06:19:54.901 INFO [2269]: QUERY_STRING = /assets/img/footer_1.jpg -- 06:19:54.901 INFO [2269]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:19:54.913 INFO [2269]: COREGRADE is stopping... -- 06:19:54.913 DEBUG [2269]: Closing database connection -- 06:19:54.913 SQL [2269]: pgsql_close() -- 06:19:54.901 DEBUG [31487]: Database connection successful -- 06:19:54.901 INFO [31487]: _SERVER found -- 06:19:54.901 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 06:19:54.901 INFO [31487]: SERVER_NAME = oameye.works.coregrade.com -- 06:19:54.901 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=f4ljkosckvc0ap2f4ai0hkhi666a5c75 -- 06:19:54.901 INFO [31487]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 06:19:54.901 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:19:54.914 INFO [31487]: COREGRADE is stopping... -- 06:19:54.914 DEBUG [31487]: Closing database connection -- 06:19:54.914 SQL [31487]: pgsql_close() -- 06:20:04.456 INFO [31513]: COREGRADE is starting... -- 06:20:04.457 INFO [31513]: Version from config: 1.0 -- 06:20:04.457 DEBUG [31513]: Connecting to database... -- 06:20:04.457 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:20:04.457 SQL [31513]: pgsql_db_connect() -- 06:20:04.462 DEBUG [31513]: Database connection successful -- 06:20:04.462 INFO [31513]: _SERVER found -- 06:20:04.462 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 06:20:04.462 INFO [31513]: SERVER_NAME = oameye.works.coregrade.com -- 06:20:04.462 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=f4ljkosckvc0ap2f4ai0hkhi666a5c75; _gat_gtag_UA_54829827_2=1 -- 06:20:04.462 INFO [31513]: QUERY_STRING = /home/howitworks -- 06:20:04.462 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:20:04.499 INFO [31513]: COREGRADE is stopping... -- 06:20:04.499 DEBUG [31513]: Closing database connection -- 06:20:04.499 SQL [31513]: pgsql_close() -- 06:20:05.132 INFO [31513]: COREGRADE is starting... -- 06:20:05.132 INFO [31513]: Version from config: 1.0 -- 06:20:05.132 DEBUG [31513]: Connecting to database... -- 06:20:05.132 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:20:05.132 SQL [31513]: pgsql_db_connect() -- 06:20:05.137 DEBUG [31513]: Database connection successful -- 06:20:05.137 INFO [31513]: _SERVER found -- 06:20:05.137 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 06:20:05.137 INFO [31513]: SERVER_NAME = oameye.works.coregrade.com -- 06:20:05.137 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=f4ljkosckvc0ap2f4ai0hkhi666a5c75; _gat_gtag_UA_54829827_2=1 -- 06:20:05.137 INFO [31513]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 06:20:05.137 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:20:05.148 INFO [31513]: COREGRADE is stopping... -- 06:20:05.148 DEBUG [31513]: Closing database connection -- 06:20:05.148 SQL [31513]: pgsql_close() -- 06:20:05.222 INFO [31513]: COREGRADE is starting... -- 06:20:05.222 INFO [31513]: Version from config: 1.0 -- 06:20:05.222 DEBUG [31513]: Connecting to database... -- 06:20:05.222 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:20:05.222 SQL [31513]: pgsql_db_connect() -- 06:20:05.226 DEBUG [31513]: Database connection successful -- 06:20:05.226 INFO [31513]: _SERVER found -- 06:20:05.226 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 06:20:05.226 INFO [31513]: SERVER_NAME = oameye.works.coregrade.com -- 06:20:05.226 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=f4ljkosckvc0ap2f4ai0hkhi666a5c75; _gat_gtag_UA_54829827_2=1 -- 06:20:05.226 INFO [31513]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:20:05.226 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:20:05.238 INFO [31513]: COREGRADE is stopping... -- 06:20:05.238 DEBUG [31513]: Closing database connection -- 06:20:05.238 SQL [31513]: pgsql_close() -- 06:23:56.767 INFO [31484]: COREGRADE is starting... -- 06:23:56.767 INFO [31484]: Version from config: 1.0 -- 06:23:56.767 DEBUG [31484]: Connecting to database... -- 06:23:56.767 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:23:56.767 SQL [31484]: pgsql_db_connect() -- 06:23:56.771 DEBUG [31484]: Database connection successful -- 06:23:56.771 INFO [31484]: _SERVER found -- 06:23:56.771 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 06:23:56.771 INFO [31484]: SERVER_NAME = oameye.works.coregrade.com -- 06:23:56.771 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=f4ljkosckvc0ap2f4ai0hkhi666a5c75 -- 06:23:56.771 INFO [31484]: QUERY_STRING = /home/faq -- 06:23:56.771 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:23:56.806 INFO [31484]: COREGRADE is stopping... -- 06:23:56.806 DEBUG [31484]: Closing database connection -- 06:23:56.806 SQL [31484]: pgsql_close() -- 06:23:56.997 INFO [31484]: COREGRADE is starting... -- 06:23:56.997 INFO [31484]: Version from config: 1.0 -- 06:23:56.997 DEBUG [31484]: Connecting to database... -- 06:23:56.997 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:23:56.997 SQL [31484]: pgsql_db_connect() -- 06:23:57.001 DEBUG [31484]: Database connection successful -- 06:23:57.001 INFO [31484]: _SERVER found -- 06:23:57.001 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 06:23:57.001 INFO [31484]: SERVER_NAME = oameye.works.coregrade.com -- 06:23:57.001 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=f4ljkosckvc0ap2f4ai0hkhi666a5c75 -- 06:23:57.001 INFO [31484]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 06:23:57.001 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:23:57.012 INFO [31484]: COREGRADE is stopping... -- 06:23:57.012 DEBUG [31484]: Closing database connection -- 06:23:57.012 SQL [31484]: pgsql_close() -- 06:23:57.033 INFO [31484]: COREGRADE is starting... -- 06:23:57.033 INFO [31484]: Version from config: 1.0 -- 06:23:57.033 DEBUG [31484]: Connecting to database... -- 06:23:57.033 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:23:57.033 SQL [31484]: pgsql_db_connect() -- 06:23:57.037 DEBUG [31484]: Database connection successful -- 06:23:57.037 INFO [31484]: _SERVER found -- 06:23:57.037 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 06:23:57.037 INFO [31484]: SERVER_NAME = oameye.works.coregrade.com -- 06:23:57.037 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=f4ljkosckvc0ap2f4ai0hkhi666a5c75 -- 06:23:57.037 INFO [31484]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:23:57.037 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:23:57.048 INFO [31484]: COREGRADE is stopping... -- 06:23:57.048 DEBUG [31484]: Closing database connection -- 06:23:57.048 SQL [31484]: pgsql_close() -- 06:23:59.047 INFO [31484]: COREGRADE is starting... -- 06:23:59.047 INFO [31484]: Version from config: 1.0 -- 06:23:59.047 DEBUG [31484]: Connecting to database... -- 06:23:59.047 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:23:59.047 SQL [31484]: pgsql_db_connect() -- 06:23:59.051 DEBUG [31484]: Database connection successful -- 06:23:59.051 INFO [31484]: _SERVER found -- 06:23:59.051 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 06:23:59.051 INFO [31484]: SERVER_NAME = oameye.works.coregrade.com -- 06:23:59.051 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=f4ljkosckvc0ap2f4ai0hkhi666a5c75 -- 06:23:59.051 INFO [31484]: QUERY_STRING = -- 06:23:59.051 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:23:59.082 INFO [31484]: COREGRADE is stopping... -- 06:23:59.082 DEBUG [31484]: Closing database connection -- 06:23:59.082 SQL [31484]: pgsql_close() -- 06:23:59.324 INFO [31484]: COREGRADE is starting... -- 06:23:59.324 INFO [31484]: Version from config: 1.0 -- 06:23:59.324 DEBUG [31484]: Connecting to database... -- 06:23:59.324 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:23:59.324 SQL [31484]: pgsql_db_connect() -- 06:23:59.328 DEBUG [31484]: Database connection successful -- 06:23:59.328 INFO [31484]: _SERVER found -- 06:23:59.328 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 06:23:59.328 INFO [31484]: SERVER_NAME = oameye.works.coregrade.com -- 06:23:59.328 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=f4ljkosckvc0ap2f4ai0hkhi666a5c75 -- 06:23:59.328 INFO [31484]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 06:23:59.328 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:23:59.339 INFO [31484]: COREGRADE is stopping... -- 06:23:59.339 DEBUG [31484]: Closing database connection -- 06:23:59.339 SQL [31484]: pgsql_close() -- 06:23:59.358 INFO [31649]: COREGRADE is starting... -- 06:23:59.359 INFO [31649]: Version from config: 1.0 -- 06:23:59.359 DEBUG [31649]: Connecting to database... -- 06:23:59.359 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:23:59.359 SQL [31649]: pgsql_db_connect() -- 06:23:59.363 DEBUG [31649]: Database connection successful -- 06:23:59.363 INFO [31649]: _SERVER found -- 06:23:59.363 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 06:23:59.363 INFO [31649]: SERVER_NAME = oameye.works.coregrade.com -- 06:23:59.363 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=f4ljkosckvc0ap2f4ai0hkhi666a5c75 -- 06:23:59.363 INFO [31649]: QUERY_STRING = /assets/img/footer_1.jpg -- 06:23:59.363 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:23:59.376 INFO [31649]: COREGRADE is stopping... -- 06:23:59.376 DEBUG [31649]: Closing database connection -- 06:23:59.376 SQL [31649]: pgsql_close() -- 06:24:03.939 INFO [31649]: COREGRADE is starting... -- 06:24:03.939 INFO [31649]: Version from config: 1.0 -- 06:24:03.939 DEBUG [31649]: Connecting to database... -- 06:24:03.939 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:24:03.939 SQL [31649]: pgsql_db_connect() -- 06:24:03.943 DEBUG [31649]: Database connection successful -- 06:24:03.943 INFO [31649]: _SERVER found -- 06:24:03.943 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 06:24:03.943 INFO [31649]: SERVER_NAME = oameye.works.coregrade.com -- 06:24:03.943 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=f4ljkosckvc0ap2f4ai0hkhi666a5c75; _gat_gtag_UA_54829827_2=1 -- 06:24:03.943 INFO [31649]: QUERY_STRING = /home/aboutus -- 06:24:03.943 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:24:03.979 INFO [31649]: COREGRADE is stopping... -- 06:24:03.979 DEBUG [31649]: Closing database connection -- 06:24:03.979 SQL [31649]: pgsql_close() -- 06:24:04.148 INFO [31649]: COREGRADE is starting... -- 06:24:04.149 INFO [31649]: Version from config: 1.0 -- 06:24:04.149 DEBUG [31649]: Connecting to database... -- 06:24:04.149 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:24:04.149 SQL [31649]: pgsql_db_connect() -- 06:24:04.159 INFO [31484]: COREGRADE is starting... -- 06:24:04.160 INFO [31484]: Version from config: 1.0 -- 06:24:04.160 DEBUG [31484]: Connecting to database... -- 06:24:04.160 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:24:04.160 SQL [31484]: pgsql_db_connect() -- 06:24:04.153 DEBUG [31649]: Database connection successful -- 06:24:04.153 INFO [31649]: _SERVER found -- 06:24:04.153 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 06:24:04.153 INFO [31649]: SERVER_NAME = oameye.works.coregrade.com -- 06:24:04.153 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=f4ljkosckvc0ap2f4ai0hkhi666a5c75; _gat_gtag_UA_54829827_2=1 -- 06:24:04.153 INFO [31649]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 06:24:04.153 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:24:04.164 INFO [31649]: COREGRADE is stopping... -- 06:24:04.164 DEBUG [31649]: Closing database connection -- 06:24:04.164 SQL [31649]: pgsql_close() -- 06:24:04.164 DEBUG [31484]: Database connection successful -- 06:24:04.164 INFO [31484]: _SERVER found -- 06:24:04.164 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 06:24:04.164 INFO [31484]: SERVER_NAME = oameye.works.coregrade.com -- 06:24:04.164 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=f4ljkosckvc0ap2f4ai0hkhi666a5c75; _gat_gtag_UA_54829827_2=1 -- 06:24:04.164 INFO [31484]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:24:04.164 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:24:04.175 INFO [31484]: COREGRADE is stopping... -- 06:24:04.175 DEBUG [31484]: Closing database connection -- 06:24:04.175 SQL [31484]: pgsql_close() -- 06:24:09.092 INFO [31484]: COREGRADE is starting... -- 06:24:09.092 INFO [31484]: Version from config: 1.0 -- 06:24:09.092 DEBUG [31484]: Connecting to database... -- 06:24:09.092 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:24:09.092 SQL [31484]: pgsql_db_connect() -- 06:24:09.096 DEBUG [31484]: Database connection successful -- 06:24:09.096 INFO [31484]: _SERVER found -- 06:24:09.096 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 06:24:09.096 INFO [31484]: SERVER_NAME = oameye.works.coregrade.com -- 06:24:09.096 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=f4ljkosckvc0ap2f4ai0hkhi666a5c75; _gat_gtag_UA_54829827_2=1 -- 06:24:09.096 INFO [31484]: QUERY_STRING = -- 06:24:09.096 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:24:09.127 INFO [31484]: COREGRADE is stopping... -- 06:24:09.127 DEBUG [31484]: Closing database connection -- 06:24:09.127 SQL [31484]: pgsql_close() -- 06:24:09.233 INFO [31484]: COREGRADE is starting... -- 06:24:09.233 INFO [31484]: Version from config: 1.0 -- 06:24:09.233 DEBUG [31484]: Connecting to database... -- 06:24:09.233 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:24:09.233 SQL [31484]: pgsql_db_connect() -- 06:24:09.237 DEBUG [31484]: Database connection successful -- 06:24:09.237 INFO [31484]: _SERVER found -- 06:24:09.237 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 06:24:09.237 INFO [31484]: SERVER_NAME = oameye.works.coregrade.com -- 06:24:09.237 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=f4ljkosckvc0ap2f4ai0hkhi666a5c75; _gat_gtag_UA_54829827_2=1 -- 06:24:09.237 INFO [31484]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 06:24:09.237 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:24:09.248 INFO [31484]: COREGRADE is stopping... -- 06:24:09.248 DEBUG [31484]: Closing database connection -- 06:24:09.248 SQL [31484]: pgsql_close() -- 06:24:09.257 INFO [31484]: COREGRADE is starting... -- 06:24:09.257 INFO [31484]: Version from config: 1.0 -- 06:24:09.257 DEBUG [31484]: Connecting to database... -- 06:24:09.257 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:24:09.257 SQL [31484]: pgsql_db_connect() -- 06:24:09.261 DEBUG [31484]: Database connection successful -- 06:24:09.261 INFO [31484]: _SERVER found -- 06:24:09.261 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 06:24:09.261 INFO [31484]: SERVER_NAME = oameye.works.coregrade.com -- 06:24:09.261 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=f4ljkosckvc0ap2f4ai0hkhi666a5c75; _gat_gtag_UA_54829827_2=1 -- 06:24:09.261 INFO [31484]: QUERY_STRING = /assets/img/footer_1.jpg -- 06:24:09.261 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:24:09.272 INFO [31484]: COREGRADE is stopping... -- 06:24:09.272 DEBUG [31484]: Closing database connection -- 06:24:09.272 SQL [31484]: pgsql_close() -- 06:24:57.627 INFO [31488]: COREGRADE is starting... -- 06:24:57.628 INFO [31488]: Version from config: 1.0 -- 06:24:57.628 DEBUG [31488]: Connecting to database... -- 06:24:57.628 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:24:57.628 SQL [31488]: pgsql_db_connect() -- 06:24:57.632 DEBUG [31488]: Database connection successful -- 06:24:57.632 INFO [31488]: _SERVER found -- 06:24:57.632 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 06:24:57.632 INFO [31488]: SERVER_NAME = oameye.works.coregrade.com -- 06:24:57.632 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=f4ljkosckvc0ap2f4ai0hkhi666a5c75; _gat_gtag_UA_54829827_2=1 -- 06:24:57.632 INFO [31488]: QUERY_STRING = /home/aboutus -- 06:24:57.632 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:24:57.664 INFO [31488]: COREGRADE is stopping... -- 06:24:57.664 DEBUG [31488]: Closing database connection -- 06:24:57.664 SQL [31488]: pgsql_close() -- 06:24:57.832 INFO [31488]: COREGRADE is starting... -- 06:24:57.833 INFO [31488]: Version from config: 1.0 -- 06:24:57.833 DEBUG [31488]: Connecting to database... -- 06:24:57.833 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:24:57.833 SQL [31488]: pgsql_db_connect() -- 06:24:57.846 INFO [2268]: COREGRADE is starting... -- 06:24:57.847 INFO [2268]: Version from config: 1.0 -- 06:24:57.847 DEBUG [2268]: Connecting to database... -- 06:24:57.847 DEBUG [2268]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:24:57.847 SQL [2268]: pgsql_db_connect() -- 06:24:57.837 DEBUG [31488]: Database connection successful -- 06:24:57.837 INFO [31488]: _SERVER found -- 06:24:57.837 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 06:24:57.837 INFO [31488]: SERVER_NAME = oameye.works.coregrade.com -- 06:24:57.837 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; _gat_gtag_UA_54829827_2=1; ci_session=gq393rhoipepvai4g5hnh5qqpehslo3k -- 06:24:57.837 INFO [31488]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 06:24:57.837 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:24:57.848 INFO [31488]: COREGRADE is stopping... -- 06:24:57.848 DEBUG [31488]: Closing database connection -- 06:24:57.848 SQL [31488]: pgsql_close() -- 06:24:57.851 DEBUG [2268]: Database connection successful -- 06:24:57.851 INFO [2268]: _SERVER found -- 06:24:57.851 INFO [2268]: REMOTE_ADDR = 192.168.1.13 -- 06:24:57.851 INFO [2268]: SERVER_NAME = oameye.works.coregrade.com -- 06:24:57.851 INFO [2268]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; _gat_gtag_UA_54829827_2=1; ci_session=gq393rhoipepvai4g5hnh5qqpehslo3k -- 06:24:57.851 INFO [2268]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:24:57.851 INFO [2268]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:24:57.863 INFO [2268]: COREGRADE is stopping... -- 06:24:57.863 DEBUG [2268]: Closing database connection -- 06:24:57.863 SQL [2268]: pgsql_close() -- 06:25:00.532 INFO [2268]: COREGRADE is starting... -- 06:25:00.532 INFO [2268]: Version from config: 1.0 -- 06:25:00.532 DEBUG [2268]: Connecting to database... -- 06:25:00.532 DEBUG [2268]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:25:00.532 SQL [2268]: pgsql_db_connect() -- 06:25:00.536 DEBUG [2268]: Database connection successful -- 06:25:00.536 INFO [2268]: _SERVER found -- 06:25:00.536 INFO [2268]: REMOTE_ADDR = 192.168.1.13 -- 06:25:00.536 INFO [2268]: SERVER_NAME = oameye.works.coregrade.com -- 06:25:00.536 INFO [2268]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=gq393rhoipepvai4g5hnh5qqpehslo3k -- 06:25:00.536 INFO [2268]: QUERY_STRING = /home/aboutus -- 06:25:00.536 INFO [2268]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:25:00.568 INFO [2268]: COREGRADE is stopping... -- 06:25:00.568 DEBUG [2268]: Closing database connection -- 06:25:00.568 SQL [2268]: pgsql_close() -- 06:25:00.660 INFO [2268]: COREGRADE is starting... -- 06:25:00.661 INFO [2268]: Version from config: 1.0 -- 06:25:00.661 DEBUG [2268]: Connecting to database... -- 06:25:00.661 DEBUG [2268]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:25:00.661 SQL [2268]: pgsql_db_connect() -- 06:25:00.665 DEBUG [2268]: Database connection successful -- 06:25:00.665 INFO [2268]: _SERVER found -- 06:25:00.665 INFO [2268]: REMOTE_ADDR = 192.168.1.13 -- 06:25:00.665 INFO [2268]: SERVER_NAME = oameye.works.coregrade.com -- 06:25:00.665 INFO [2268]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=gq393rhoipepvai4g5hnh5qqpehslo3k -- 06:25:00.665 INFO [2268]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:25:00.665 INFO [2268]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:25:00.676 INFO [2268]: COREGRADE is stopping... -- 06:25:00.676 DEBUG [2268]: Closing database connection -- 06:25:00.676 SQL [2268]: pgsql_close() -- 06:27:10.774 INFO [2270]: COREGRADE is starting... -- 06:27:10.775 INFO [2270]: Version from config: 1.0 -- 06:27:10.775 DEBUG [2270]: Connecting to database... -- 06:27:10.775 DEBUG [2270]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:27:10.775 SQL [2270]: pgsql_db_connect() -- 06:27:10.779 DEBUG [2270]: Database connection successful -- 06:27:10.779 INFO [2270]: _SERVER found -- 06:27:10.779 INFO [2270]: REMOTE_ADDR = 192.168.1.13 -- 06:27:10.779 INFO [2270]: SERVER_NAME = oameye.works.coregrade.com -- 06:27:10.779 INFO [2270]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=gq393rhoipepvai4g5hnh5qqpehslo3k -- 06:27:10.779 INFO [2270]: QUERY_STRING = /home/howitworks -- 06:27:10.779 INFO [2270]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:27:10.814 INFO [2270]: COREGRADE is stopping... -- 06:27:10.814 DEBUG [2270]: Closing database connection -- 06:27:10.814 SQL [2270]: pgsql_close() -- 06:27:11.124 INFO [2270]: COREGRADE is starting... -- 06:27:11.124 INFO [2270]: Version from config: 1.0 -- 06:27:11.124 DEBUG [2270]: Connecting to database... -- 06:27:11.124 DEBUG [2270]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:27:11.124 SQL [2270]: pgsql_db_connect() -- 06:27:11.128 DEBUG [2270]: Database connection successful -- 06:27:11.128 INFO [2270]: _SERVER found -- 06:27:11.128 INFO [2270]: REMOTE_ADDR = 192.168.1.13 -- 06:27:11.128 INFO [2270]: SERVER_NAME = oameye.works.coregrade.com -- 06:27:11.128 INFO [2270]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=gq393rhoipepvai4g5hnh5qqpehslo3k -- 06:27:11.128 INFO [2270]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 06:27:11.128 INFO [2270]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:27:11.139 INFO [2270]: COREGRADE is stopping... -- 06:27:11.139 DEBUG [2270]: Closing database connection -- 06:27:11.139 SQL [2270]: pgsql_close() -- 06:27:11.158 INFO [2270]: COREGRADE is starting... -- 06:27:11.158 INFO [2270]: Version from config: 1.0 -- 06:27:11.158 DEBUG [2270]: Connecting to database... -- 06:27:11.158 DEBUG [2270]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:27:11.158 SQL [2270]: pgsql_db_connect() -- 06:27:11.162 DEBUG [2270]: Database connection successful -- 06:27:11.162 INFO [2270]: _SERVER found -- 06:27:11.162 INFO [2270]: REMOTE_ADDR = 192.168.1.13 -- 06:27:11.162 INFO [2270]: SERVER_NAME = oameye.works.coregrade.com -- 06:27:11.162 INFO [2270]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=gq393rhoipepvai4g5hnh5qqpehslo3k -- 06:27:11.162 INFO [2270]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:27:11.162 INFO [2270]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:27:11.173 INFO [2270]: COREGRADE is stopping... -- 06:27:11.173 DEBUG [2270]: Closing database connection -- 06:27:11.173 SQL [2270]: pgsql_close() -- 06:28:36.486 INFO [2269]: COREGRADE is starting... -- 06:28:36.486 INFO [2269]: Version from config: 1.0 -- 06:28:36.486 DEBUG [2269]: Connecting to database... -- 06:28:36.486 DEBUG [2269]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:36.486 SQL [2269]: pgsql_db_connect() -- 06:28:36.490 DEBUG [2269]: Database connection successful -- 06:28:36.490 INFO [2269]: _SERVER found -- 06:28:36.490 INFO [2269]: REMOTE_ADDR = 192.168.1.13 -- 06:28:36.490 INFO [2269]: SERVER_NAME = oameye.works.coregrade.com -- 06:28:36.490 INFO [2269]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=gq393rhoipepvai4g5hnh5qqpehslo3k -- 06:28:36.490 INFO [2269]: QUERY_STRING = /home/howitworks -- 06:28:36.490 INFO [2269]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:28:36.522 INFO [2269]: COREGRADE is stopping... -- 06:28:36.522 DEBUG [2269]: Closing database connection -- 06:28:36.522 SQL [2269]: pgsql_close() -- 06:28:36.705 INFO [2269]: COREGRADE is starting... -- 06:28:36.706 INFO [2269]: Version from config: 1.0 -- 06:28:36.706 DEBUG [2269]: Connecting to database... -- 06:28:36.706 DEBUG [2269]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:36.706 SQL [2269]: pgsql_db_connect() -- 06:28:36.710 DEBUG [2269]: Database connection successful -- 06:28:36.710 INFO [2269]: _SERVER found -- 06:28:36.710 INFO [2269]: REMOTE_ADDR = 192.168.1.13 -- 06:28:36.710 INFO [2269]: SERVER_NAME = oameye.works.coregrade.com -- 06:28:36.710 INFO [2269]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=gq393rhoipepvai4g5hnh5qqpehslo3k -- 06:28:36.710 INFO [2269]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:28:36.710 INFO [2269]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:28:36.721 INFO [2269]: COREGRADE is stopping... -- 06:28:36.721 DEBUG [2269]: Closing database connection -- 06:28:36.721 SQL [2269]: pgsql_close() -- 06:28:37.280 INFO [2269]: COREGRADE is starting... -- 06:28:37.281 INFO [2269]: Version from config: 1.0 -- 06:28:37.281 DEBUG [2269]: Connecting to database... -- 06:28:37.281 DEBUG [2269]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:37.281 SQL [2269]: pgsql_db_connect() -- 06:28:37.285 DEBUG [2269]: Database connection successful -- 06:28:37.285 INFO [2269]: _SERVER found -- 06:28:37.285 INFO [2269]: REMOTE_ADDR = 192.168.1.13 -- 06:28:37.285 INFO [2269]: SERVER_NAME = oameye.works.coregrade.com -- 06:28:37.285 INFO [2269]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=gq393rhoipepvai4g5hnh5qqpehslo3k -- 06:28:37.285 INFO [2269]: QUERY_STRING = -- 06:28:37.285 INFO [2269]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:28:37.315 INFO [2269]: COREGRADE is stopping... -- 06:28:37.315 DEBUG [2269]: Closing database connection -- 06:28:37.315 SQL [2269]: pgsql_close() -- 06:28:39.940 INFO [2269]: COREGRADE is starting... -- 06:28:39.940 INFO [2269]: Version from config: 1.0 -- 06:28:39.940 DEBUG [2269]: Connecting to database... -- 06:28:39.940 DEBUG [2269]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:39.940 SQL [2269]: pgsql_db_connect() -- 06:28:39.944 DEBUG [2269]: Database connection successful -- 06:28:39.944 INFO [2269]: _SERVER found -- 06:28:39.944 INFO [2269]: REMOTE_ADDR = 192.168.1.13 -- 06:28:39.944 INFO [2269]: SERVER_NAME = oameye.works.coregrade.com -- 06:28:39.944 INFO [2269]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=gq393rhoipepvai4g5hnh5qqpehslo3k; _gat_gtag_UA_54829827_2=1 -- 06:28:39.944 INFO [2269]: QUERY_STRING = /home/howitworks -- 06:28:39.944 INFO [2269]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:28:39.975 INFO [2269]: COREGRADE is stopping... -- 06:28:39.975 DEBUG [2269]: Closing database connection -- 06:28:39.975 SQL [2269]: pgsql_close() -- 06:28:40.105 INFO [2269]: COREGRADE is starting... -- 06:28:40.105 INFO [2269]: Version from config: 1.0 -- 06:28:40.105 DEBUG [2269]: Connecting to database... -- 06:28:40.105 DEBUG [2269]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:40.105 SQL [2269]: pgsql_db_connect() -- 06:28:40.109 DEBUG [2269]: Database connection successful -- 06:28:40.109 INFO [2269]: _SERVER found -- 06:28:40.109 INFO [2269]: REMOTE_ADDR = 192.168.1.13 -- 06:28:40.109 INFO [2269]: SERVER_NAME = oameye.works.coregrade.com -- 06:28:40.109 INFO [2269]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=gq393rhoipepvai4g5hnh5qqpehslo3k; _gat_gtag_UA_54829827_2=1 -- 06:28:40.109 INFO [2269]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:28:40.109 INFO [2269]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:28:40.121 INFO [2269]: COREGRADE is stopping... -- 06:28:40.121 DEBUG [2269]: Closing database connection -- 06:28:40.121 SQL [2269]: pgsql_close() -- 06:28:41.594 INFO [2269]: COREGRADE is starting... -- 06:28:41.594 INFO [2269]: Version from config: 1.0 -- 06:28:41.594 DEBUG [2269]: Connecting to database... -- 06:28:41.594 DEBUG [2269]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:41.594 SQL [2269]: pgsql_db_connect() -- 06:28:41.598 DEBUG [2269]: Database connection successful -- 06:28:41.598 INFO [2269]: _SERVER found -- 06:28:41.598 INFO [2269]: REMOTE_ADDR = 192.168.1.13 -- 06:28:41.598 INFO [2269]: SERVER_NAME = oameye.works.coregrade.com -- 06:28:41.598 INFO [2269]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=gq393rhoipepvai4g5hnh5qqpehslo3k; _gat_gtag_UA_54829827_2=1 -- 06:28:41.598 INFO [2269]: QUERY_STRING = -- 06:28:41.598 INFO [2269]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:28:41.629 INFO [2269]: COREGRADE is stopping... -- 06:28:41.629 DEBUG [2269]: Closing database connection -- 06:28:41.629 SQL [2269]: pgsql_close() -- 06:28:43.864 INFO [2269]: COREGRADE is starting... -- 06:28:43.864 INFO [2269]: Version from config: 1.0 -- 06:28:43.864 DEBUG [2269]: Connecting to database... -- 06:28:43.864 DEBUG [2269]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:43.864 SQL [2269]: pgsql_db_connect() -- 06:28:43.868 DEBUG [2269]: Database connection successful -- 06:28:43.868 INFO [2269]: _SERVER found -- 06:28:43.868 INFO [2269]: REMOTE_ADDR = 192.168.1.13 -- 06:28:43.868 INFO [2269]: SERVER_NAME = oameye.works.coregrade.com -- 06:28:43.868 INFO [2269]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=gq393rhoipepvai4g5hnh5qqpehslo3k; _gat_gtag_UA_54829827_2=1 -- 06:28:43.868 INFO [2269]: QUERY_STRING = /home/aboutus -- 06:28:43.868 INFO [2269]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:28:43.899 INFO [2269]: COREGRADE is stopping... -- 06:28:43.899 DEBUG [2269]: Closing database connection -- 06:28:43.899 SQL [2269]: pgsql_close() -- 06:28:44.056 INFO [2269]: COREGRADE is starting... -- 06:28:44.056 INFO [2269]: Version from config: 1.0 -- 06:28:44.056 DEBUG [2269]: Connecting to database... -- 06:28:44.056 DEBUG [2269]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:44.056 SQL [2269]: pgsql_db_connect() -- 06:28:44.060 DEBUG [2269]: Database connection successful -- 06:28:44.060 INFO [2269]: _SERVER found -- 06:28:44.060 INFO [2269]: REMOTE_ADDR = 192.168.1.13 -- 06:28:44.060 INFO [2269]: SERVER_NAME = oameye.works.coregrade.com -- 06:28:44.060 INFO [2269]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=gq393rhoipepvai4g5hnh5qqpehslo3k; _gat_gtag_UA_54829827_2=1 -- 06:28:44.060 INFO [2269]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:28:44.060 INFO [2269]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:28:44.071 INFO [2269]: COREGRADE is stopping... -- 06:28:44.071 DEBUG [2269]: Closing database connection -- 06:28:44.071 SQL [2269]: pgsql_close() -- 06:28:46.235 INFO [2269]: COREGRADE is starting... -- 06:28:46.235 INFO [2269]: Version from config: 1.0 -- 06:28:46.235 DEBUG [2269]: Connecting to database... -- 06:28:46.235 DEBUG [2269]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:46.235 SQL [2269]: pgsql_db_connect() -- 06:28:46.239 DEBUG [2269]: Database connection successful -- 06:28:46.239 INFO [2269]: _SERVER found -- 06:28:46.239 INFO [2269]: REMOTE_ADDR = 192.168.1.13 -- 06:28:46.239 INFO [2269]: SERVER_NAME = oameye.works.coregrade.com -- 06:28:46.239 INFO [2269]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=gq393rhoipepvai4g5hnh5qqpehslo3k; _gat_gtag_UA_54829827_2=1 -- 06:28:46.239 INFO [2269]: QUERY_STRING = -- 06:28:46.239 INFO [2269]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:28:46.270 INFO [2269]: COREGRADE is stopping... -- 06:28:46.270 DEBUG [2269]: Closing database connection -- 06:28:46.270 SQL [2269]: pgsql_close() -- 06:28:47.948 INFO [2269]: COREGRADE is starting... -- 06:28:47.948 INFO [2269]: Version from config: 1.0 -- 06:28:47.948 DEBUG [2269]: Connecting to database... -- 06:28:47.948 DEBUG [2269]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:47.948 SQL [2269]: pgsql_db_connect() -- 06:28:47.952 DEBUG [2269]: Database connection successful -- 06:28:47.952 INFO [2269]: _SERVER found -- 06:28:47.952 INFO [2269]: REMOTE_ADDR = 192.168.1.13 -- 06:28:47.952 INFO [2269]: SERVER_NAME = oameye.works.coregrade.com -- 06:28:47.952 INFO [2269]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=gq393rhoipepvai4g5hnh5qqpehslo3k; _gat_gtag_UA_54829827_2=1 -- 06:28:47.952 INFO [2269]: QUERY_STRING = /home/security -- 06:28:47.952 INFO [2269]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:28:47.983 INFO [2269]: COREGRADE is stopping... -- 06:28:47.983 DEBUG [2269]: Closing database connection -- 06:28:47.983 SQL [2269]: pgsql_close() -- 06:28:48.119 INFO [2269]: COREGRADE is starting... -- 06:28:48.119 INFO [2269]: Version from config: 1.0 -- 06:28:48.119 DEBUG [2269]: Connecting to database... -- 06:28:48.119 DEBUG [2269]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:48.120 SQL [2269]: pgsql_db_connect() -- 06:28:48.123 DEBUG [2269]: Database connection successful -- 06:28:48.123 INFO [2269]: _SERVER found -- 06:28:48.123 INFO [2269]: REMOTE_ADDR = 192.168.1.13 -- 06:28:48.123 INFO [2269]: SERVER_NAME = oameye.works.coregrade.com -- 06:28:48.123 INFO [2269]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=gq393rhoipepvai4g5hnh5qqpehslo3k; _gat_gtag_UA_54829827_2=1 -- 06:28:48.123 INFO [2269]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:28:48.123 INFO [2269]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:28:48.135 INFO [2269]: COREGRADE is stopping... -- 06:28:48.135 DEBUG [2269]: Closing database connection -- 06:28:48.135 SQL [2269]: pgsql_close() -- 06:30:53.637 INFO [31485]: COREGRADE is starting... -- 06:30:53.638 INFO [31485]: Version from config: 1.0 -- 06:30:53.638 DEBUG [31485]: Connecting to database... -- 06:30:53.638 DEBUG [31485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:30:53.638 SQL [31485]: pgsql_db_connect() -- 06:30:53.642 DEBUG [31485]: Database connection successful -- 06:30:53.642 INFO [31485]: _SERVER found -- 06:30:53.642 INFO [31485]: REMOTE_ADDR = 192.168.1.13 -- 06:30:53.642 INFO [31485]: SERVER_NAME = oameye.works.coregrade.com -- 06:30:53.642 INFO [31485]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=gq393rhoipepvai4g5hnh5qqpehslo3k -- 06:30:53.642 INFO [31485]: QUERY_STRING = -- 06:30:53.642 INFO [31485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:30:53.676 INFO [31485]: COREGRADE is stopping... -- 06:30:53.676 DEBUG [31485]: Closing database connection -- 06:30:53.676 SQL [31485]: pgsql_close() -- 06:30:53.857 INFO [31485]: COREGRADE is starting... -- 06:30:53.858 INFO [31485]: Version from config: 1.0 -- 06:30:53.858 DEBUG [31485]: Connecting to database... -- 06:30:53.858 DEBUG [31485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:30:53.858 SQL [31485]: pgsql_db_connect() -- 06:30:53.862 DEBUG [31485]: Database connection successful -- 06:30:53.862 INFO [31485]: _SERVER found -- 06:30:53.862 INFO [31485]: REMOTE_ADDR = 192.168.1.13 -- 06:30:53.862 INFO [31485]: SERVER_NAME = oameye.works.coregrade.com -- 06:30:53.862 INFO [31485]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=5e502f3vdh09tch9i35emieer2hrdct7 -- 06:30:53.862 INFO [31485]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 06:30:53.862 INFO [31485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:30:53.873 INFO [31485]: COREGRADE is stopping... -- 06:30:53.874 DEBUG [31485]: Closing database connection -- 06:30:53.874 SQL [31485]: pgsql_close() -- 06:30:53.874 INFO [31486]: COREGRADE is starting... -- 06:30:53.874 INFO [31486]: Version from config: 1.0 -- 06:30:53.874 DEBUG [31486]: Connecting to database... -- 06:30:53.874 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:30:53.874 SQL [31486]: pgsql_db_connect() -- 06:30:53.878 DEBUG [31486]: Database connection successful -- 06:30:53.878 INFO [31486]: _SERVER found -- 06:30:53.878 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 06:30:53.878 INFO [31486]: SERVER_NAME = oameye.works.coregrade.com -- 06:30:53.878 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=5e502f3vdh09tch9i35emieer2hrdct7 -- 06:30:53.878 INFO [31486]: QUERY_STRING = /assets/img/footer_1.jpg -- 06:30:53.878 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:30:53.890 INFO [31486]: COREGRADE is stopping... -- 06:30:53.890 DEBUG [31486]: Closing database connection -- 06:30:53.890 SQL [31486]: pgsql_close() -- 06:30:57.397 INFO [31486]: COREGRADE is starting... -- 06:30:57.398 INFO [31486]: Version from config: 1.0 -- 06:30:57.398 DEBUG [31486]: Connecting to database... -- 06:30:57.398 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:30:57.398 SQL [31486]: pgsql_db_connect() -- 06:30:57.402 DEBUG [31486]: Database connection successful -- 06:30:57.402 INFO [31486]: _SERVER found -- 06:30:57.402 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 06:30:57.402 INFO [31486]: SERVER_NAME = oameye.works.coregrade.com -- 06:30:57.402 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=5e502f3vdh09tch9i35emieer2hrdct7; _gat_gtag_UA_54829827_2=1 -- 06:30:57.402 INFO [31486]: QUERY_STRING = /home/faq -- 06:30:57.402 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:30:57.435 INFO [31486]: COREGRADE is stopping... -- 06:30:57.435 DEBUG [31486]: Closing database connection -- 06:30:57.435 SQL [31486]: pgsql_close() -- 06:30:57.630 INFO [31486]: COREGRADE is starting... -- 06:30:57.630 INFO [31486]: Version from config: 1.0 -- 06:30:57.630 DEBUG [31486]: Connecting to database... -- 06:30:57.630 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:30:57.630 SQL [31486]: pgsql_db_connect() -- 06:30:57.635 DEBUG [31486]: Database connection successful -- 06:30:57.635 INFO [31486]: _SERVER found -- 06:30:57.635 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 06:30:57.635 INFO [31486]: SERVER_NAME = oameye.works.coregrade.com -- 06:30:57.635 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=5e502f3vdh09tch9i35emieer2hrdct7; _gat_gtag_UA_54829827_2=1 -- 06:30:57.635 INFO [31486]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:30:57.635 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:30:57.646 INFO [31486]: COREGRADE is stopping... -- 06:30:57.646 DEBUG [31486]: Closing database connection -- 06:30:57.646 SQL [31486]: pgsql_close() -- 06:30:59.204 INFO [31486]: COREGRADE is starting... -- 06:30:59.205 INFO [31486]: Version from config: 1.0 -- 06:30:59.205 DEBUG [31486]: Connecting to database... -- 06:30:59.205 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:30:59.205 SQL [31486]: pgsql_db_connect() -- 06:30:59.209 DEBUG [31486]: Database connection successful -- 06:30:59.209 INFO [31486]: _SERVER found -- 06:30:59.209 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 06:30:59.209 INFO [31486]: SERVER_NAME = oameye.works.coregrade.com -- 06:30:59.209 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=5e502f3vdh09tch9i35emieer2hrdct7; _gat_gtag_UA_54829827_2=1 -- 06:30:59.209 INFO [31486]: QUERY_STRING = -- 06:30:59.209 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:30:59.240 INFO [31486]: COREGRADE is stopping... -- 06:30:59.240 DEBUG [31486]: Closing database connection -- 06:30:59.240 SQL [31486]: pgsql_close() -- 06:31:00.756 INFO [31486]: COREGRADE is starting... -- 06:31:00.756 INFO [31486]: Version from config: 1.0 -- 06:31:00.756 DEBUG [31486]: Connecting to database... -- 06:31:00.756 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:31:00.756 SQL [31486]: pgsql_db_connect() -- 06:31:00.760 DEBUG [31486]: Database connection successful -- 06:31:00.760 INFO [31486]: _SERVER found -- 06:31:00.760 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 06:31:00.760 INFO [31486]: SERVER_NAME = oameye.works.coregrade.com -- 06:31:00.760 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=5e502f3vdh09tch9i35emieer2hrdct7; _gat_gtag_UA_54829827_2=1 -- 06:31:00.760 INFO [31486]: QUERY_STRING = /home/contatus -- 06:31:00.760 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:31:00.791 INFO [31486]: COREGRADE is stopping... -- 06:31:00.791 DEBUG [31486]: Closing database connection -- 06:31:00.791 SQL [31486]: pgsql_close() -- 06:31:00.864 INFO [31513]: COREGRADE is starting... -- 06:31:00.864 INFO [31513]: Version from config: 1.0 -- 06:31:00.864 DEBUG [31513]: Connecting to database... -- 06:31:00.864 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:31:00.864 SQL [31513]: pgsql_db_connect() -- 06:31:00.868 DEBUG [31513]: Database connection successful -- 06:31:00.868 INFO [31513]: _SERVER found -- 06:31:00.868 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 06:31:00.868 INFO [31513]: SERVER_NAME = oameye.works.coregrade.com -- 06:31:00.868 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=5e502f3vdh09tch9i35emieer2hrdct7; _gat_gtag_UA_54829827_2=1 -- 06:31:00.868 INFO [31513]: QUERY_STRING = /favicon.ico -- 06:31:00.868 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:31:00.880 INFO [31513]: COREGRADE is stopping... -- 06:31:00.880 DEBUG [31513]: Closing database connection -- 06:31:00.880 SQL [31513]: pgsql_close() -- 06:32:04.417 INFO [31649]: COREGRADE is starting... -- 06:32:04.418 INFO [31649]: Version from config: 1.0 -- 06:32:04.418 DEBUG [31649]: Connecting to database... -- 06:32:04.418 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:32:04.418 SQL [31649]: pgsql_db_connect() -- 06:32:04.422 DEBUG [31649]: Database connection successful -- 06:32:04.422 INFO [31649]: _SERVER found -- 06:32:04.422 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 06:32:04.422 INFO [31649]: SERVER_NAME = oameye.works.coregrade.com -- 06:32:04.422 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=5e502f3vdh09tch9i35emieer2hrdct7 -- 06:32:04.422 INFO [31649]: QUERY_STRING = /home/contatus -- 06:32:04.422 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:32:04.459 INFO [31649]: COREGRADE is stopping... -- 06:32:04.459 DEBUG [31649]: Closing database connection -- 06:32:04.459 SQL [31649]: pgsql_close() -- 06:32:13.236 INFO [31484]: COREGRADE is starting... -- 06:32:13.237 INFO [31484]: Version from config: 1.0 -- 06:32:13.237 DEBUG [31484]: Connecting to database... -- 06:32:13.237 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:32:13.237 SQL [31484]: pgsql_db_connect() -- 06:32:13.241 DEBUG [31484]: Database connection successful -- 06:32:13.241 INFO [31484]: _SERVER found -- 06:32:13.241 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 06:32:13.241 INFO [31484]: SERVER_NAME = oameye.works.coregrade.com -- 06:32:13.241 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=5e502f3vdh09tch9i35emieer2hrdct7 -- 06:32:13.241 INFO [31484]: QUERY_STRING = /home/contactus -- 06:32:13.241 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:32:13.253 INFO [31484]: COREGRADE is stopping... -- 06:32:13.253 DEBUG [31484]: Closing database connection -- 06:32:13.253 SQL [31484]: pgsql_close() -- 06:33:06.638 INFO [31488]: COREGRADE is starting... -- 06:33:06.638 INFO [31488]: Version from config: 1.0 -- 06:33:06.638 DEBUG [31488]: Connecting to database... -- 06:33:06.638 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:33:06.638 SQL [31488]: pgsql_db_connect() -- 06:33:06.643 DEBUG [31488]: Database connection successful -- 06:33:06.643 INFO [31488]: _SERVER found -- 06:33:06.643 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 06:33:06.643 INFO [31488]: SERVER_NAME = oameye.works.coregrade.com -- 06:33:06.643 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=5e502f3vdh09tch9i35emieer2hrdct7 -- 06:33:06.643 INFO [31488]: QUERY_STRING = /home/contatus -- 06:33:06.643 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:33:06.656 INFO [31488]: COREGRADE is stopping... -- 06:33:06.656 DEBUG [31488]: Closing database connection -- 06:33:06.656 SQL [31488]: pgsql_close() -- 06:33:08.833 INFO [31488]: COREGRADE is starting... -- 06:33:08.833 INFO [31488]: Version from config: 1.0 -- 06:33:08.833 DEBUG [31488]: Connecting to database... -- 06:33:08.833 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:33:08.833 SQL [31488]: pgsql_db_connect() -- 06:33:08.838 DEBUG [31488]: Database connection successful -- 06:33:08.838 INFO [31488]: _SERVER found -- 06:33:08.838 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 06:33:08.838 INFO [31488]: SERVER_NAME = oameye.works.coregrade.com -- 06:33:08.838 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=5e502f3vdh09tch9i35emieer2hrdct7 -- 06:33:08.838 INFO [31488]: QUERY_STRING = -- 06:33:08.838 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:33:08.870 INFO [31488]: COREGRADE is stopping... -- 06:33:08.870 DEBUG [31488]: Closing database connection -- 06:33:08.870 SQL [31488]: pgsql_close() -- 06:33:12.569 INFO [31488]: COREGRADE is starting... -- 06:33:12.569 INFO [31488]: Version from config: 1.0 -- 06:33:12.569 DEBUG [31488]: Connecting to database... -- 06:33:12.569 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:33:12.569 SQL [31488]: pgsql_db_connect() -- 06:33:12.574 DEBUG [31488]: Database connection successful -- 06:33:12.574 INFO [31488]: _SERVER found -- 06:33:12.574 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 06:33:12.574 INFO [31488]: SERVER_NAME = oameye.works.coregrade.com -- 06:33:12.574 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=5e502f3vdh09tch9i35emieer2hrdct7; _gat_gtag_UA_54829827_2=1 -- 06:33:12.574 INFO [31488]: QUERY_STRING = -- 06:33:12.574 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:33:12.606 INFO [31488]: COREGRADE is stopping... -- 06:33:12.606 DEBUG [31488]: Closing database connection -- 06:33:12.606 SQL [31488]: pgsql_close() -- 06:33:14.110 INFO [31488]: COREGRADE is starting... -- 06:33:14.110 INFO [31488]: Version from config: 1.0 -- 06:33:14.110 DEBUG [31488]: Connecting to database... -- 06:33:14.110 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:33:14.110 SQL [31488]: pgsql_db_connect() -- 06:33:14.115 DEBUG [31488]: Database connection successful -- 06:33:14.115 INFO [31488]: _SERVER found -- 06:33:14.115 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 06:33:14.115 INFO [31488]: SERVER_NAME = oameye.works.coregrade.com -- 06:33:14.115 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=5e502f3vdh09tch9i35emieer2hrdct7; _gat_gtag_UA_54829827_2=1 -- 06:33:14.115 INFO [31488]: QUERY_STRING = /home/contactus -- 06:33:14.115 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:33:14.147 INFO [31488]: COREGRADE is stopping... -- 06:33:14.147 DEBUG [31488]: Closing database connection -- 06:33:14.147 SQL [31488]: pgsql_close() -- 06:33:14.407 INFO [31488]: COREGRADE is starting... -- 06:33:14.407 INFO [31488]: Version from config: 1.0 -- 06:33:14.407 DEBUG [31488]: Connecting to database... -- 06:33:14.407 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:33:14.407 SQL [31488]: pgsql_db_connect() -- 06:33:14.411 DEBUG [31488]: Database connection successful -- 06:33:14.411 INFO [31488]: _SERVER found -- 06:33:14.411 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 06:33:14.411 INFO [31488]: SERVER_NAME = oameye.works.coregrade.com -- 06:33:14.411 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=5e502f3vdh09tch9i35emieer2hrdct7; _gat_gtag_UA_54829827_2=1 -- 06:33:14.411 INFO [31488]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:33:14.411 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:33:14.423 INFO [31488]: COREGRADE is stopping... -- 06:33:14.423 DEBUG [31488]: Closing database connection -- 06:33:14.423 SQL [31488]: pgsql_close() -- 06:33:16.746 INFO [31488]: COREGRADE is starting... -- 06:33:16.746 INFO [31488]: Version from config: 1.0 -- 06:33:16.746 DEBUG [31488]: Connecting to database... -- 06:33:16.746 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:33:16.746 SQL [31488]: pgsql_db_connect() -- 06:33:16.750 DEBUG [31488]: Database connection successful -- 06:33:16.750 INFO [31488]: _SERVER found -- 06:33:16.750 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 06:33:16.750 INFO [31488]: SERVER_NAME = oameye.works.coregrade.com -- 06:33:16.750 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=5e502f3vdh09tch9i35emieer2hrdct7; _gat_gtag_UA_54829827_2=1 -- 06:33:16.750 INFO [31488]: QUERY_STRING = -- 06:33:16.750 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:33:16.782 INFO [31488]: COREGRADE is stopping... -- 06:33:16.782 DEBUG [31488]: Closing database connection -- 06:33:16.782 SQL [31488]: pgsql_close() -- 06:33:18.527 INFO [31488]: COREGRADE is starting... -- 06:33:18.527 INFO [31488]: Version from config: 1.0 -- 06:33:18.527 DEBUG [31488]: Connecting to database... -- 06:33:18.527 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:33:18.527 SQL [31488]: pgsql_db_connect() -- 06:33:18.532 DEBUG [31488]: Database connection successful -- 06:33:18.532 INFO [31488]: _SERVER found -- 06:33:18.532 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 06:33:18.532 INFO [31488]: SERVER_NAME = oameye.works.coregrade.com -- 06:33:18.532 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=5e502f3vdh09tch9i35emieer2hrdct7; _gat_gtag_UA_54829827_2=1 -- 06:33:18.532 INFO [31488]: QUERY_STRING = /home/aboutus -- 06:33:18.532 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:33:18.564 INFO [31488]: COREGRADE is stopping... -- 06:33:18.564 DEBUG [31488]: Closing database connection -- 06:33:18.564 SQL [31488]: pgsql_close() -- 06:33:18.794 INFO [31488]: COREGRADE is starting... -- 06:33:18.795 INFO [31488]: Version from config: 1.0 -- 06:33:18.795 DEBUG [31488]: Connecting to database... -- 06:33:18.795 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:33:18.795 SQL [31488]: pgsql_db_connect() -- 06:33:18.799 DEBUG [31488]: Database connection successful -- 06:33:18.799 INFO [31488]: _SERVER found -- 06:33:18.799 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 06:33:18.799 INFO [31488]: SERVER_NAME = oameye.works.coregrade.com -- 06:33:18.799 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=5e502f3vdh09tch9i35emieer2hrdct7; _gat_gtag_UA_54829827_2=1 -- 06:33:18.799 INFO [31488]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:33:18.799 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:33:18.810 INFO [31488]: COREGRADE is stopping... -- 06:33:18.810 DEBUG [31488]: Closing database connection -- 06:33:18.810 SQL [31488]: pgsql_close() -- 06:33:21.562 INFO [31488]: COREGRADE is starting... -- 06:33:21.562 INFO [31488]: Version from config: 1.0 -- 06:33:21.562 DEBUG [31488]: Connecting to database... -- 06:33:21.563 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:33:21.563 SQL [31488]: pgsql_db_connect() -- 06:33:21.567 DEBUG [31488]: Database connection successful -- 06:33:21.567 INFO [31488]: _SERVER found -- 06:33:21.567 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 06:33:21.567 INFO [31488]: SERVER_NAME = oameye.works.coregrade.com -- 06:33:21.567 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=5e502f3vdh09tch9i35emieer2hrdct7; _gat_gtag_UA_54829827_2=1 -- 06:33:21.567 INFO [31488]: QUERY_STRING = -- 06:33:21.567 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:33:21.599 INFO [31488]: COREGRADE is stopping... -- 06:33:21.599 DEBUG [31488]: Closing database connection -- 06:33:21.599 SQL [31488]: pgsql_close() -- 06:33:23.000 INFO [31488]: COREGRADE is starting... -- 06:33:23.000 INFO [31488]: Version from config: 1.0 -- 06:33:23.000 DEBUG [31488]: Connecting to database... -- 06:33:23.000 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:33:23.001 SQL [31488]: pgsql_db_connect() -- 06:33:23.005 DEBUG [31488]: Database connection successful -- 06:33:23.005 INFO [31488]: _SERVER found -- 06:33:23.005 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 06:33:23.005 INFO [31488]: SERVER_NAME = oameye.works.coregrade.com -- 06:33:23.005 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=5e502f3vdh09tch9i35emieer2hrdct7; _gat_gtag_UA_54829827_2=1 -- 06:33:23.005 INFO [31488]: QUERY_STRING = /home/security -- 06:33:23.005 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:33:23.037 INFO [31488]: COREGRADE is stopping... -- 06:33:23.037 DEBUG [31488]: Closing database connection -- 06:33:23.037 SQL [31488]: pgsql_close() -- 06:33:23.231 INFO [31488]: COREGRADE is starting... -- 06:33:23.231 INFO [31488]: Version from config: 1.0 -- 06:33:23.231 DEBUG [31488]: Connecting to database... -- 06:33:23.231 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:33:23.231 SQL [31488]: pgsql_db_connect() -- 06:33:23.235 DEBUG [31488]: Database connection successful -- 06:33:23.235 INFO [31488]: _SERVER found -- 06:33:23.235 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 06:33:23.235 INFO [31488]: SERVER_NAME = oameye.works.coregrade.com -- 06:33:23.235 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=5e502f3vdh09tch9i35emieer2hrdct7; _gat_gtag_UA_54829827_2=1 -- 06:33:23.235 INFO [31488]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:33:23.235 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:33:23.247 INFO [31488]: COREGRADE is stopping... -- 06:33:23.247 DEBUG [31488]: Closing database connection -- 06:33:23.247 SQL [31488]: pgsql_close() -- 06:33:25.265 INFO [31488]: COREGRADE is starting... -- 06:33:25.265 INFO [31488]: Version from config: 1.0 -- 06:33:25.265 DEBUG [31488]: Connecting to database... -- 06:33:25.265 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:33:25.265 SQL [31488]: pgsql_db_connect() -- 06:33:25.270 DEBUG [31488]: Database connection successful -- 06:33:25.270 INFO [31488]: _SERVER found -- 06:33:25.270 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 06:33:25.270 INFO [31488]: SERVER_NAME = oameye.works.coregrade.com -- 06:33:25.270 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=5e502f3vdh09tch9i35emieer2hrdct7; _gat_gtag_UA_54829827_2=1 -- 06:33:25.270 INFO [31488]: QUERY_STRING = -- 06:33:25.270 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:33:25.302 INFO [31488]: COREGRADE is stopping... -- 06:33:25.302 DEBUG [31488]: Closing database connection -- 06:33:25.302 SQL [31488]: pgsql_close() -- 06:33:26.616 INFO [31488]: COREGRADE is starting... -- 06:33:26.616 INFO [31488]: Version from config: 1.0 -- 06:33:26.616 DEBUG [31488]: Connecting to database... -- 06:33:26.616 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:33:26.616 SQL [31488]: pgsql_db_connect() -- 06:33:26.621 DEBUG [31488]: Database connection successful -- 06:33:26.621 INFO [31488]: _SERVER found -- 06:33:26.621 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 06:33:26.621 INFO [31488]: SERVER_NAME = oameye.works.coregrade.com -- 06:33:26.621 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=5e502f3vdh09tch9i35emieer2hrdct7; _gat_gtag_UA_54829827_2=1 -- 06:33:26.621 INFO [31488]: QUERY_STRING = /home/terms -- 06:33:26.621 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:33:26.653 INFO [31488]: COREGRADE is stopping... -- 06:33:26.653 DEBUG [31488]: Closing database connection -- 06:33:26.653 SQL [31488]: pgsql_close() -- 06:33:26.766 INFO [31488]: COREGRADE is starting... -- 06:33:26.766 INFO [31488]: Version from config: 1.0 -- 06:33:26.766 DEBUG [31488]: Connecting to database... -- 06:33:26.766 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:33:26.766 SQL [31488]: pgsql_db_connect() -- 06:33:26.771 DEBUG [31488]: Database connection successful -- 06:33:26.771 INFO [31488]: _SERVER found -- 06:33:26.771 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 06:33:26.771 INFO [31488]: SERVER_NAME = oameye.works.coregrade.com -- 06:33:26.771 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=5e502f3vdh09tch9i35emieer2hrdct7; _gat_gtag_UA_54829827_2=1 -- 06:33:26.771 INFO [31488]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:33:26.771 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:33:26.782 INFO [31488]: COREGRADE is stopping... -- 06:33:26.782 DEBUG [31488]: Closing database connection -- 06:33:26.782 SQL [31488]: pgsql_close() -- 06:34:09.230 INFO [2268]: COREGRADE is starting... -- 06:34:09.230 INFO [2268]: Version from config: 1.0 -- 06:34:09.230 DEBUG [2268]: Connecting to database... -- 06:34:09.230 DEBUG [2268]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:34:09.230 SQL [2268]: pgsql_db_connect() -- 06:34:09.234 DEBUG [2268]: Database connection successful -- 06:34:09.234 INFO [2268]: _SERVER found -- 06:34:09.234 INFO [2268]: REMOTE_ADDR = 192.168.1.13 -- 06:34:09.234 INFO [2268]: SERVER_NAME = oameye.works.coregrade.com -- 06:34:09.234 INFO [2268]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=5e502f3vdh09tch9i35emieer2hrdct7 -- 06:34:09.234 INFO [2268]: QUERY_STRING = /home/terms -- 06:34:09.234 INFO [2268]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:34:09.268 INFO [2268]: COREGRADE is stopping... -- 06:34:09.268 DEBUG [2268]: Closing database connection -- 06:34:09.268 SQL [2268]: pgsql_close() -- 06:34:09.452 INFO [2268]: COREGRADE is starting... -- 06:34:09.452 INFO [2268]: Version from config: 1.0 -- 06:34:09.452 DEBUG [2268]: Connecting to database... -- 06:34:09.452 DEBUG [2268]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:34:09.452 SQL [2268]: pgsql_db_connect() -- 06:34:09.457 DEBUG [2268]: Database connection successful -- 06:34:09.457 INFO [2268]: _SERVER found -- 06:34:09.457 INFO [2268]: REMOTE_ADDR = 192.168.1.13 -- 06:34:09.457 INFO [2268]: SERVER_NAME = oameye.works.coregrade.com -- 06:34:09.457 INFO [2268]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=5e502f3vdh09tch9i35emieer2hrdct7 -- 06:34:09.457 INFO [2268]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:34:09.457 INFO [2268]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:34:09.468 INFO [2268]: COREGRADE is stopping... -- 06:34:09.468 DEBUG [2268]: Closing database connection -- 06:34:09.468 SQL [2268]: pgsql_close() -- 06:35:01.901 INFO [31487]: COREGRADE is starting... -- 06:35:01.901 INFO [31487]: Version from config: 1.0 -- 06:35:01.901 DEBUG [31487]: Connecting to database... -- 06:35:01.901 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:35:01.901 SQL [31487]: pgsql_db_connect() -- 06:35:01.906 DEBUG [31487]: Database connection successful -- 06:35:01.906 INFO [31487]: _SERVER found -- 06:35:01.906 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 06:35:01.906 INFO [31487]: SERVER_NAME = oameye.works.coregrade.com -- 06:35:01.906 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=5e502f3vdh09tch9i35emieer2hrdct7 -- 06:35:01.906 INFO [31487]: QUERY_STRING = /home/aboutus -- 06:35:01.906 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:35:01.940 INFO [31487]: COREGRADE is stopping... -- 06:35:01.940 DEBUG [31487]: Closing database connection -- 06:35:01.940 SQL [31487]: pgsql_close() -- 06:35:02.058 INFO [31487]: COREGRADE is starting... -- 06:35:02.058 INFO [31487]: Version from config: 1.0 -- 06:35:02.058 DEBUG [31487]: Connecting to database... -- 06:35:02.058 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:35:02.058 SQL [31487]: pgsql_db_connect() -- 06:35:02.063 DEBUG [31487]: Database connection successful -- 06:35:02.063 INFO [31487]: _SERVER found -- 06:35:02.063 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 06:35:02.063 INFO [31487]: SERVER_NAME = oameye.works.coregrade.com -- 06:35:02.063 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=5e502f3vdh09tch9i35emieer2hrdct7 -- 06:35:02.063 INFO [31487]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:35:02.063 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:35:02.074 INFO [31487]: COREGRADE is stopping... -- 06:35:02.074 DEBUG [31487]: Closing database connection -- 06:35:02.074 SQL [31487]: pgsql_close() -- 06:36:03.630 INFO [31486]: COREGRADE is starting... -- 06:36:03.630 INFO [31486]: Version from config: 1.0 -- 06:36:03.630 DEBUG [31486]: Connecting to database... -- 06:36:03.630 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:36:03.630 SQL [31486]: pgsql_db_connect() -- 06:36:03.634 DEBUG [31486]: Database connection successful -- 06:36:03.634 INFO [31486]: _SERVER found -- 06:36:03.634 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 06:36:03.634 INFO [31486]: SERVER_NAME = oameye.works.coregrade.com -- 06:36:03.634 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=5e502f3vdh09tch9i35emieer2hrdct7 -- 06:36:03.634 INFO [31486]: QUERY_STRING = /home/aboutus -- 06:36:03.634 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:36:03.667 INFO [31486]: COREGRADE is stopping... -- 06:36:03.667 DEBUG [31486]: Closing database connection -- 06:36:03.667 SQL [31486]: pgsql_close() -- 06:36:03.777 INFO [31486]: COREGRADE is starting... -- 06:36:03.777 INFO [31486]: Version from config: 1.0 -- 06:36:03.777 DEBUG [31486]: Connecting to database... -- 06:36:03.777 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:36:03.777 SQL [31486]: pgsql_db_connect() -- 06:36:03.781 DEBUG [31486]: Database connection successful -- 06:36:03.781 INFO [31486]: _SERVER found -- 06:36:03.781 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 06:36:03.781 INFO [31486]: SERVER_NAME = oameye.works.coregrade.com -- 06:36:03.781 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ume149871cjpgbs39eapnkhr2rr0ue47 -- 06:36:03.781 INFO [31486]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:36:03.781 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:36:03.792 INFO [31486]: COREGRADE is stopping... -- 06:36:03.792 DEBUG [31486]: Closing database connection -- 06:36:03.792 SQL [31486]: pgsql_close() -- 06:36:54.888 INFO [31513]: COREGRADE is starting... -- 06:36:54.888 INFO [31513]: Version from config: 1.0 -- 06:36:54.888 DEBUG [31513]: Connecting to database... -- 06:36:54.888 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:36:54.888 SQL [31513]: pgsql_db_connect() -- 06:36:54.892 DEBUG [31513]: Database connection successful -- 06:36:54.892 INFO [31513]: _SERVER found -- 06:36:54.892 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 06:36:54.892 INFO [31513]: SERVER_NAME = oameye.works.coregrade.com -- 06:36:54.892 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ume149871cjpgbs39eapnkhr2rr0ue47 -- 06:36:54.892 INFO [31513]: QUERY_STRING = /home/terms -- 06:36:54.892 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:36:54.925 INFO [31513]: COREGRADE is stopping... -- 06:36:54.925 DEBUG [31513]: Closing database connection -- 06:36:54.925 SQL [31513]: pgsql_close() -- 06:36:55.032 INFO [31513]: COREGRADE is starting... -- 06:36:55.033 INFO [31513]: Version from config: 1.0 -- 06:36:55.033 DEBUG [31513]: Connecting to database... -- 06:36:55.033 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:36:55.033 SQL [31513]: pgsql_db_connect() -- 06:36:55.037 DEBUG [31513]: Database connection successful -- 06:36:55.037 INFO [31513]: _SERVER found -- 06:36:55.037 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 06:36:55.037 INFO [31513]: SERVER_NAME = oameye.works.coregrade.com -- 06:36:55.037 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ume149871cjpgbs39eapnkhr2rr0ue47 -- 06:36:55.037 INFO [31513]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:36:55.037 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:36:55.048 INFO [31513]: COREGRADE is stopping... -- 06:36:55.048 DEBUG [31513]: Closing database connection -- 06:36:55.048 SQL [31513]: pgsql_close() -- 06:37:01.934 INFO [31484]: COREGRADE is starting... -- 06:37:01.935 INFO [31484]: Version from config: 1.0 -- 06:37:01.935 DEBUG [31484]: Connecting to database... -- 06:37:01.935 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:37:01.935 SQL [31484]: pgsql_db_connect() -- 06:37:01.939 DEBUG [31484]: Database connection successful -- 06:37:01.939 INFO [31484]: _SERVER found -- 06:37:01.939 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 06:37:01.939 INFO [31484]: SERVER_NAME = oameye.works.coregrade.com -- 06:37:01.939 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ume149871cjpgbs39eapnkhr2rr0ue47 -- 06:37:01.939 INFO [31484]: QUERY_STRING = -- 06:37:01.939 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:37:01.971 INFO [31484]: COREGRADE is stopping... -- 06:37:01.971 DEBUG [31484]: Closing database connection -- 06:37:01.971 SQL [31484]: pgsql_close() -- 06:37:02.149 INFO [31484]: COREGRADE is starting... -- 06:37:02.149 INFO [31484]: Version from config: 1.0 -- 06:37:02.149 DEBUG [31484]: Connecting to database... -- 06:37:02.149 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:37:02.149 SQL [31484]: pgsql_db_connect() -- 06:37:02.154 INFO [31488]: COREGRADE is starting... -- 06:37:02.155 INFO [31488]: Version from config: 1.0 -- 06:37:02.155 DEBUG [31488]: Connecting to database... -- 06:37:02.155 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:37:02.155 SQL [31488]: pgsql_db_connect() -- 06:37:02.153 DEBUG [31484]: Database connection successful -- 06:37:02.153 INFO [31484]: _SERVER found -- 06:37:02.153 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 06:37:02.153 INFO [31484]: SERVER_NAME = oameye.works.coregrade.com -- 06:37:02.153 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ume149871cjpgbs39eapnkhr2rr0ue47 -- 06:37:02.153 INFO [31484]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 06:37:02.153 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:37:02.164 INFO [31484]: COREGRADE is stopping... -- 06:37:02.164 DEBUG [31484]: Closing database connection -- 06:37:02.164 SQL [31484]: pgsql_close() -- 06:37:02.159 DEBUG [31488]: Database connection successful -- 06:37:02.159 INFO [31488]: _SERVER found -- 06:37:02.159 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 06:37:02.159 INFO [31488]: SERVER_NAME = oameye.works.coregrade.com -- 06:37:02.159 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ume149871cjpgbs39eapnkhr2rr0ue47 -- 06:37:02.159 INFO [31488]: QUERY_STRING = /assets/img/footer_1.jpg -- 06:37:02.159 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:37:02.170 INFO [31488]: COREGRADE is stopping... -- 06:37:02.170 DEBUG [31488]: Closing database connection -- 06:37:02.170 SQL [31488]: pgsql_close() -- 06:37:06.823 INFO [31488]: COREGRADE is starting... -- 06:37:06.823 INFO [31488]: Version from config: 1.0 -- 06:37:06.823 DEBUG [31488]: Connecting to database... -- 06:37:06.823 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:37:06.823 SQL [31488]: pgsql_db_connect() -- 06:37:06.823 INFO [31484]: COREGRADE is starting... -- 06:37:06.824 INFO [31484]: Version from config: 1.0 -- 06:37:06.824 DEBUG [31484]: Connecting to database... -- 06:37:06.824 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:37:06.824 SQL [31484]: pgsql_db_connect() -- 06:37:06.827 DEBUG [31484]: Database connection successful -- 06:37:06.827 INFO [31484]: _SERVER found -- 06:37:06.827 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 06:37:06.827 INFO [31484]: SERVER_NAME = oameye.works.coregrade.com -- 06:37:06.827 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ume149871cjpgbs39eapnkhr2rr0ue47; _gat_gtag_UA_54829827_2=1 -- 06:37:06.827 INFO [31484]: QUERY_STRING = /auth -- 06:37:06.827 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:37:06.860 INFO [31484]: COREGRADE is stopping... -- 06:37:06.860 DEBUG [31484]: Closing database connection -- 06:37:06.860 SQL [31484]: pgsql_close() -- 06:37:06.827 DEBUG [31488]: Database connection successful -- 06:37:06.827 INFO [31488]: _SERVER found -- 06:37:06.827 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 06:37:06.827 INFO [31488]: SERVER_NAME = oameye.works.coregrade.com -- 06:37:06.827 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ume149871cjpgbs39eapnkhr2rr0ue47; _gat_gtag_UA_54829827_2=1 -- 06:37:06.827 INFO [31488]: QUERY_STRING = /welcome/viewLogin -- 06:37:06.827 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:37:06.862 INFO [31488]: COREGRADE is stopping... -- 06:37:06.862 DEBUG [31488]: Closing database connection -- 06:37:06.862 SQL [31488]: pgsql_close() -- 06:37:07.018 INFO [31488]: COREGRADE is starting... -- 06:37:07.018 INFO [31488]: Version from config: 1.0 -- 06:37:07.018 DEBUG [31488]: Connecting to database... -- 06:37:07.018 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:37:07.018 SQL [31488]: pgsql_db_connect() -- 06:37:07.022 DEBUG [31488]: Database connection successful -- 06:37:07.022 INFO [31488]: _SERVER found -- 06:37:07.022 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 06:37:07.022 INFO [31488]: SERVER_NAME = oameye.works.coregrade.com -- 06:37:07.022 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ume149871cjpgbs39eapnkhr2rr0ue47; _gat_gtag_UA_54829827_2=1 -- 06:37:07.022 INFO [31488]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:37:07.022 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:37:07.033 INFO [31488]: COREGRADE is stopping... -- 06:37:07.033 DEBUG [31488]: Closing database connection -- 06:37:07.033 SQL [31488]: pgsql_close() -- 06:37:12.394 INFO [2270]: COREGRADE is starting... -- 06:37:12.394 INFO [2270]: Version from config: 1.0 -- 06:37:12.394 DEBUG [2270]: Connecting to database... -- 06:37:12.394 DEBUG [2270]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:37:12.394 SQL [2270]: pgsql_db_connect() -- 06:37:12.430 INFO [2270]: COREGRADE is starting... -- 06:37:12.430 INFO [2270]: Version from config: 1.0 -- 06:37:12.430 DEBUG [2270]: Connecting to database... -- 06:37:12.430 DEBUG [2270]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:37:12.430 SQL [2270]: pgsql_db_connect() -- 06:37:12.434 DEBUG [2270]: Database connection successful -- 06:37:12.434 INFO [2270]: _SERVER found -- 06:37:12.434 INFO [2270]: REMOTE_ADDR = 192.168.1.13 -- 06:37:12.434 INFO [2270]: SERVER_NAME = oameye.works.coregrade.com -- 06:37:12.434 INFO [2270]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ume149871cjpgbs39eapnkhr2rr0ue47; _gat_gtag_UA_54829827_2=1 -- 06:37:12.434 INFO [2270]: QUERY_STRING = -- 06:37:12.434 INFO [2270]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:37:12.434 INFO [2270]: SystemStatus()09-09-********~************ -- 06:37:12.434 INFO [2270]: long coregrade_api_main(CVars in, CVars &out) -- 06:37:12.434 INFO [2270]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 06:37:12.434 INFO [2270]: account calls -- 06:37:12.434 INFO [2270]: account_calls() -- 06:37:12.434 INFO [2270]: LoginCoreGradeAccount() -- 06:37:12.434 FLOG_MAX [2270]: REQ_STRING(username) -- 06:37:12.434 FLOG_MAX [2270]: REQ_STRING(password) -- 06:37:12.434 FLOG_MAX [2270]: REQ_STRING(sessionid) -- 06:37:12.434 FLOG_MAX [2270]: long load_db_record( CVars &rec, const char * query, ... ) -- 06:37:12.434 SQL [2270]: pgsql_query() -- 06:37:12.434 SQL [2270]: About to run query: -- 06:37:12.434 SQL [2270]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 06:37:12.438 SQL [2270]: Found rows: 1 -- 06:37:12.438 FLOG_MAX [2270]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 06:37:12.438 INFO [2270]: long SessionCheck(long uid, const char *sessionid, int create ) -- 06:37:12.438 SQL [2270]: pgsql_exec() -- 06:37:12.438 SQL [2270]: About to run query: -- 06:37:12.438 SQL [2270]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 06:37:12.440 SQL [2270]: PQcmdTuples: 1 -- 06:37:12.440 SQL [2270]: Affected rows: 1 -- 06:37:12.440 SQL [2270]: pgsql_exec() -- 06:37:12.440 SQL [2270]: About to run query: -- 06:37:12.440 SQL [2270]: DELETE FROM members_session WHERE member_id=5 -- 06:37:12.440 SQL [2270]: PQcmdTuples: 0 -- 06:37:12.440 SQL [2270]: Affected rows: 0 -- 06:37:12.440 SQL [2270]: pgsql_query() -- 06:37:12.440 SQL [2270]: About to run query: -- 06:37:12.440 SQL [2270]: SELECT * FROM members_session WHERE member_id=5 AND session<>'3E5451069E74604E0E850856B039A82B' -- 06:37:12.441 SQL [2270]: Found rows: 0 -- 06:37:12.441 SQL [2270]: Found rows: 0 -- 06:37:12.441 FLOG_MAX [2270]: long load_db_record( CVars &rec, const char * query, ... ) -- 06:37:12.441 SQL [2270]: pgsql_query() -- 06:37:12.441 SQL [2270]: About to run query: -- 06:37:12.441 SQL [2270]: SELECT * FROM members_session WHERE member_id=5 AND session='3E5451069E74604E0E850856B039A82B' -- 06:37:12.441 SQL [2270]: Found rows: 0 -- 06:37:12.441 SQL [2270]: Found rows: 0 -- 06:37:12.441 FLOG_MAX [2270]: insert_db_record() -- 06:37:12.441 SQL [2270]: pgsql_exec() -- 06:37:12.441 SQL [2270]: About to run query: -- 06:37:12.441 SQL [2270]: INSERT INTO members_session (member_id,session) VALUES ('5','3E5451069E74604E0E850856B039A82B') -- 06:37:12.443 SQL [2270]: PQcmdTuples: 1 -- 06:37:12.443 SQL [2270]: Affected rows: 1 -- 06:37:12.443 FLOG_MAX [2270]: SELECT currval('members_session_id_seq') -- 06:37:12.443 SQL [2270]: pgsql_query() -- 06:37:12.443 SQL [2270]: About to run query: -- 06:37:12.443 SQL [2270]: SELECT currval('members_session_id_seq') -- 06:37:12.443 SQL [2270]: Found rows: 1 -- 06:37:12.443 INFO [2270]: CreateDefaultPage() -- 06:37:12.443 FLOG_MAX [2270]: long load_db_record( CVars &rec, const char * query, ... ) -- 06:37:12.443 SQL [2270]: pgsql_query() -- 06:37:12.443 SQL [2270]: About to run query: -- 06:37:12.443 SQL [2270]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 06:37:12.443 SQL [2270]: Found rows: 1 -- 06:37:12.443 FLOG_MAX [2270]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 06:37:12.443 SQL [2270]: pgsql_query() -- 06:37:12.443 SQL [2270]: About to run query: -- 06:37:12.443 SQL [2270]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 06:37:12.444 SQL [2270]: Found rows: 1 -- 06:37:12.444 INFO [2270]: /CreateDefaultPage() -- 06:37:12.444 INFO [2270]: /LoginCoreGradeAccount() -- 06:37:12.444 INFO [2270]: RET: added=2020-02-05 06:47:23.982154 -- 06:37:12.444 INFO [2270]: RET: email=ameye+11@chiefsoft.com -- 06:37:12.444 INFO [2270]: RET: firstname=Olu -- 06:37:12.444 INFO [2270]: RET: id=5 -- 06:37:12.444 INFO [2270]: RET: last_login= -- 06:37:12.444 INFO [2270]: RET: lastname=Amey -- 06:37:12.444 INFO [2270]: RET: loc=192.168.1.13 -- 06:37:12.444 INFO [2270]: RET: member_id=5 -- 06:37:12.444 INFO [2270]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 06:37:12.444 INFO [2270]: RET: phone= -- 06:37:12.444 INFO [2270]: RET: pid= -- 06:37:12.444 INFO [2270]: RET: result=YES I GET TO BACK END -- 06:37:12.444 INFO [2270]: RET: sessionid=3E5451069E74604E0E850856B039A82B -- 06:37:12.444 INFO [2270]: RET: status=1 -- 06:37:12.444 INFO [2270]: RET: stauts=OK -- 06:37:12.444 INFO [2270]: RET: username=ameye+11@chiefsoft.com -- 06:37:12.444 INFO [2270]: RET: verified= -- 06:37:12.445 INFO [2270]: COREGRADE is stopping... -- 06:37:12.445 DEBUG [2270]: Closing database connection -- 06:37:12.445 SQL [2270]: pgsql_close() -- 06:37:12.398 DEBUG [2270]: Database connection successful -- 06:37:12.398 INFO [2270]: _SERVER found -- 06:37:12.398 INFO [2270]: REMOTE_ADDR = 192.168.1.13 -- 06:37:12.398 INFO [2270]: SERVER_NAME = oameye.works.coregrade.com -- 06:37:12.398 INFO [2270]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ume149871cjpgbs39eapnkhr2rr0ue47; _gat_gtag_UA_54829827_2=1 -- 06:37:12.398 INFO [2270]: QUERY_STRING = /auth -- 06:37:12.398 INFO [2270]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:37:12.446 INFO [2270]: COREGRADE is stopping... -- 06:37:12.446 DEBUG [2270]: Closing database connection -- 06:37:12.446 SQL [2270]: pgsql_close() -- 06:37:12.476 INFO [2270]: COREGRADE is starting... -- 06:37:12.477 INFO [2270]: Version from config: 1.0 -- 06:37:12.477 DEBUG [2270]: Connecting to database... -- 06:37:12.477 DEBUG [2270]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:37:12.477 SQL [2270]: pgsql_db_connect() -- 06:37:12.481 DEBUG [2270]: Database connection successful -- 06:37:12.481 INFO [2270]: _SERVER found -- 06:37:12.481 INFO [2270]: REMOTE_ADDR = 192.168.1.13 -- 06:37:12.481 INFO [2270]: SERVER_NAME = oameye.works.coregrade.com -- 06:37:12.481 INFO [2270]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ume149871cjpgbs39eapnkhr2rr0ue47; _gat_gtag_UA_54829827_2=1 -- 06:37:12.481 INFO [2270]: QUERY_STRING = /member/index -- 06:37:12.481 INFO [2270]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:37:12.520 INFO [2270]: COREGRADE is stopping... -- 06:37:12.520 DEBUG [2270]: Closing database connection -- 06:37:12.520 SQL [2270]: pgsql_close() -- 06:37:12.992 INFO [2268]: COREGRADE is starting... -- 06:37:12.992 INFO [2268]: Version from config: 1.0 -- 06:37:12.992 DEBUG [2268]: Connecting to database... -- 06:37:12.992 DEBUG [2268]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:37:12.993 SQL [2268]: pgsql_db_connect() -- 06:37:12.997 DEBUG [2268]: Database connection successful -- 06:37:12.997 INFO [2268]: _SERVER found -- 06:37:12.997 INFO [2268]: REMOTE_ADDR = 192.168.1.13 -- 06:37:12.997 INFO [2268]: SERVER_NAME = oameye.works.coregrade.com -- 06:37:12.997 INFO [2268]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ume149871cjpgbs39eapnkhr2rr0ue47; _gat_gtag_UA_54829827_2=1 -- 06:37:12.997 INFO [2268]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 06:37:12.997 INFO [2268]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:37:13.008 INFO [2268]: COREGRADE is stopping... -- 06:37:13.008 DEBUG [2268]: Closing database connection -- 06:37:13.008 SQL [2268]: pgsql_close() -- 06:37:13.064 INFO [2268]: COREGRADE is starting... -- 06:37:13.064 INFO [2268]: Version from config: 1.0 -- 06:37:13.064 DEBUG [2268]: Connecting to database... -- 06:37:13.064 DEBUG [2268]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:37:13.064 SQL [2268]: pgsql_db_connect() -- 06:37:13.068 DEBUG [2268]: Database connection successful -- 06:37:13.068 INFO [2268]: _SERVER found -- 06:37:13.068 INFO [2268]: REMOTE_ADDR = 192.168.1.13 -- 06:37:13.068 INFO [2268]: SERVER_NAME = oameye.works.coregrade.com -- 06:37:13.068 INFO [2268]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ume149871cjpgbs39eapnkhr2rr0ue47; _gat_gtag_UA_54829827_2=1 -- 06:37:13.068 INFO [2268]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:37:13.068 INFO [2268]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:37:13.079 INFO [2268]: COREGRADE is stopping... -- 06:37:13.079 DEBUG [2268]: Closing database connection -- 06:37:13.080 SQL [2268]: pgsql_close() -- 06:37:20.242 INFO [2269]: COREGRADE is starting... -- 06:37:20.242 INFO [2269]: Version from config: 1.0 -- 06:37:20.242 DEBUG [2269]: Connecting to database... -- 06:37:20.242 DEBUG [2269]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:37:20.242 SQL [2269]: pgsql_db_connect() -- 06:37:20.247 DEBUG [2269]: Database connection successful -- 06:37:20.247 INFO [2269]: _SERVER found -- 06:37:20.247 INFO [2269]: REMOTE_ADDR = 192.168.1.13 -- 06:37:20.247 INFO [2269]: SERVER_NAME = oameye.works.coregrade.com -- 06:37:20.247 INFO [2269]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ume149871cjpgbs39eapnkhr2rr0ue47; _gat_gtag_UA_54829827_2=1 -- 06:37:20.247 INFO [2269]: QUERY_STRING = /member/page -- 06:37:20.247 INFO [2269]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:37:20.289 INFO [2269]: COREGRADE is stopping... -- 06:37:20.289 DEBUG [2269]: Closing database connection -- 06:37:20.289 SQL [2269]: pgsql_close() -- 06:37:20.613 INFO [2269]: COREGRADE is starting... -- 06:37:20.614 INFO [2269]: Version from config: 1.0 -- 06:37:20.614 DEBUG [2269]: Connecting to database... -- 06:37:20.614 DEBUG [2269]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:37:20.614 SQL [2269]: pgsql_db_connect() -- 06:37:20.618 DEBUG [2269]: Database connection successful -- 06:37:20.618 INFO [2269]: _SERVER found -- 06:37:20.618 INFO [2269]: REMOTE_ADDR = 192.168.1.13 -- 06:37:20.618 INFO [2269]: SERVER_NAME = oameye.works.coregrade.com -- 06:37:20.618 INFO [2269]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ume149871cjpgbs39eapnkhr2rr0ue47; _gat_gtag_UA_54829827_2=1 -- 06:37:20.618 INFO [2269]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:37:20.618 INFO [2269]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:37:20.629 INFO [2269]: COREGRADE is stopping... -- 06:37:20.629 DEBUG [2269]: Closing database connection -- 06:37:20.629 SQL [2269]: pgsql_close() -- 06:49:05.967 INFO [31487]: COREGRADE is starting... -- 06:49:05.967 INFO [31487]: Version from config: 1.0 -- 06:49:05.967 DEBUG [31487]: Connecting to database... -- 06:49:05.967 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:05.967 SQL [31487]: pgsql_db_connect() -- 06:49:05.972 DEBUG [31487]: Database connection successful -- 06:49:05.972 INFO [31487]: _SERVER found -- 06:49:05.972 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 06:49:05.972 INFO [31487]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:05.972 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ume149871cjpgbs39eapnkhr2rr0ue47 -- 06:49:05.972 INFO [31487]: QUERY_STRING = -- 06:49:05.972 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:49:06.008 INFO [31487]: COREGRADE is stopping... -- 06:49:06.008 DEBUG [31487]: Closing database connection -- 06:49:06.008 SQL [31487]: pgsql_close() -- 06:49:07.903 INFO [31487]: COREGRADE is starting... -- 06:49:07.903 INFO [31487]: Version from config: 1.0 -- 06:49:07.903 DEBUG [31487]: Connecting to database... -- 06:49:07.903 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:07.903 SQL [31487]: pgsql_db_connect() -- 06:49:07.907 DEBUG [31487]: Database connection successful -- 06:49:07.907 INFO [31487]: _SERVER found -- 06:49:07.907 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 06:49:07.907 INFO [31487]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:07.907 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=dlg1hk9r9o92torbsi22i02g71tn0hho; _gat_gtag_UA_54829827_2=1 -- 06:49:07.907 INFO [31487]: QUERY_STRING = /home/privacy -- 06:49:07.907 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:49:07.938 INFO [31487]: COREGRADE is stopping... -- 06:49:07.938 DEBUG [31487]: Closing database connection -- 06:49:07.938 SQL [31487]: pgsql_close() -- 06:49:08.059 INFO [31487]: COREGRADE is starting... -- 06:49:08.059 INFO [31487]: Version from config: 1.0 -- 06:49:08.059 DEBUG [31487]: Connecting to database... -- 06:49:08.059 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:08.059 SQL [31487]: pgsql_db_connect() -- 06:49:08.072 INFO [31485]: COREGRADE is starting... -- 06:49:08.073 INFO [31485]: Version from config: 1.0 -- 06:49:08.073 DEBUG [31485]: Connecting to database... -- 06:49:08.073 DEBUG [31485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:08.073 SQL [31485]: pgsql_db_connect() -- 06:49:08.063 DEBUG [31487]: Database connection successful -- 06:49:08.063 INFO [31487]: _SERVER found -- 06:49:08.063 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 06:49:08.063 INFO [31487]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:08.063 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=dlg1hk9r9o92torbsi22i02g71tn0hho; _gat_gtag_UA_54829827_2=1 -- 06:49:08.063 INFO [31487]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 06:49:08.063 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:49:08.075 INFO [31487]: COREGRADE is stopping... -- 06:49:08.075 DEBUG [31487]: Closing database connection -- 06:49:08.075 SQL [31487]: pgsql_close() -- 06:49:08.077 DEBUG [31485]: Database connection successful -- 06:49:08.077 INFO [31485]: _SERVER found -- 06:49:08.077 INFO [31485]: REMOTE_ADDR = 192.168.1.13 -- 06:49:08.077 INFO [31485]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:08.077 INFO [31485]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=dlg1hk9r9o92torbsi22i02g71tn0hho; _gat_gtag_UA_54829827_2=1 -- 06:49:08.077 INFO [31485]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:49:08.077 INFO [31485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:49:08.089 INFO [31485]: COREGRADE is stopping... -- 06:49:08.089 DEBUG [31485]: Closing database connection -- 06:49:08.089 SQL [31485]: pgsql_close() -- 06:50:33.174 INFO [31486]: COREGRADE is starting... -- 06:50:33.174 INFO [31486]: Version from config: 1.0 -- 06:50:33.174 DEBUG [31486]: Connecting to database... -- 06:50:33.174 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:50:33.174 SQL [31486]: pgsql_db_connect() -- 06:50:33.178 DEBUG [31486]: Database connection successful -- 06:50:33.178 INFO [31486]: _SERVER found -- 06:50:33.178 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 06:50:33.178 INFO [31486]: SERVER_NAME = oameye.works.coregrade.com -- 06:50:33.178 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=dlg1hk9r9o92torbsi22i02g71tn0hho -- 06:50:33.178 INFO [31486]: QUERY_STRING = -- 06:50:33.178 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:50:33.211 INFO [31486]: COREGRADE is stopping... -- 06:50:33.211 DEBUG [31486]: Closing database connection -- 06:50:33.211 SQL [31486]: pgsql_close() -- 06:50:33.343 INFO [31486]: COREGRADE is starting... -- 06:50:33.344 INFO [31486]: Version from config: 1.0 -- 06:50:33.344 DEBUG [31486]: Connecting to database... -- 06:50:33.344 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:50:33.344 SQL [31486]: pgsql_db_connect() -- 06:50:33.350 INFO [31649]: COREGRADE is starting... -- 06:50:33.350 INFO [31649]: Version from config: 1.0 -- 06:50:33.350 DEBUG [31649]: Connecting to database... -- 06:50:33.350 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:50:33.350 SQL [31649]: pgsql_db_connect() -- 06:50:33.348 DEBUG [31486]: Database connection successful -- 06:50:33.348 INFO [31486]: _SERVER found -- 06:50:33.348 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 06:50:33.348 INFO [31486]: SERVER_NAME = oameye.works.coregrade.com -- 06:50:33.348 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=dlg1hk9r9o92torbsi22i02g71tn0hho -- 06:50:33.348 INFO [31486]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 06:50:33.348 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:50:33.359 INFO [31486]: COREGRADE is stopping... -- 06:50:33.359 DEBUG [31486]: Closing database connection -- 06:50:33.359 SQL [31486]: pgsql_close() -- 06:50:33.354 DEBUG [31649]: Database connection successful -- 06:50:33.354 INFO [31649]: _SERVER found -- 06:50:33.354 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 06:50:33.354 INFO [31649]: SERVER_NAME = oameye.works.coregrade.com -- 06:50:33.354 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=dlg1hk9r9o92torbsi22i02g71tn0hho -- 06:50:33.354 INFO [31649]: QUERY_STRING = /assets/img/footer_1.jpg -- 06:50:33.354 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:50:33.366 INFO [31649]: COREGRADE is stopping... -- 06:50:33.366 DEBUG [31649]: Closing database connection -- 06:50:33.366 SQL [31649]: pgsql_close() -- 06:50:42.136 INFO [31513]: COREGRADE is starting... -- 06:50:42.137 INFO [31513]: Version from config: 1.0 -- 06:50:42.137 DEBUG [31513]: Connecting to database... -- 06:50:42.137 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:50:42.137 SQL [31513]: pgsql_db_connect() -- 06:50:42.141 DEBUG [31513]: Database connection successful -- 06:50:42.141 INFO [31513]: _SERVER found -- 06:50:42.141 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 06:50:42.141 INFO [31513]: SERVER_NAME = oameye.works.coregrade.com -- 06:50:42.141 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=dlg1hk9r9o92torbsi22i02g71tn0hho; _gat_gtag_UA_54829827_2=1 -- 06:50:42.141 INFO [31513]: QUERY_STRING = /home/contactus -- 06:50:42.141 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:50:42.173 INFO [31513]: COREGRADE is stopping... -- 06:50:42.173 DEBUG [31513]: Closing database connection -- 06:50:42.173 SQL [31513]: pgsql_close() -- 06:50:42.278 INFO [31513]: COREGRADE is starting... -- 06:50:42.278 INFO [31513]: Version from config: 1.0 -- 06:50:42.278 DEBUG [31513]: Connecting to database... -- 06:50:42.278 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:50:42.278 SQL [31513]: pgsql_db_connect() -- 06:50:42.286 INFO [31484]: COREGRADE is starting... -- 06:50:42.286 INFO [31484]: Version from config: 1.0 -- 06:50:42.286 DEBUG [31484]: Connecting to database... -- 06:50:42.286 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:50:42.286 SQL [31484]: pgsql_db_connect() -- 06:50:42.282 DEBUG [31513]: Database connection successful -- 06:50:42.282 INFO [31513]: _SERVER found -- 06:50:42.282 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 06:50:42.282 INFO [31513]: SERVER_NAME = oameye.works.coregrade.com -- 06:50:42.282 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=dlg1hk9r9o92torbsi22i02g71tn0hho; _gat_gtag_UA_54829827_2=1 -- 06:50:42.282 INFO [31513]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 06:50:42.282 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:50:42.294 INFO [31513]: COREGRADE is stopping... -- 06:50:42.294 DEBUG [31513]: Closing database connection -- 06:50:42.294 SQL [31513]: pgsql_close() -- 06:50:42.290 DEBUG [31484]: Database connection successful -- 06:50:42.290 INFO [31484]: _SERVER found -- 06:50:42.290 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 06:50:42.290 INFO [31484]: SERVER_NAME = oameye.works.coregrade.com -- 06:50:42.290 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=dlg1hk9r9o92torbsi22i02g71tn0hho; _gat_gtag_UA_54829827_2=1 -- 06:50:42.290 INFO [31484]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:50:42.290 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:50:42.301 INFO [31484]: COREGRADE is stopping... -- 06:50:42.301 DEBUG [31484]: Closing database connection -- 06:50:42.301 SQL [31484]: pgsql_close() -- 06:50:44.581 INFO [31484]: COREGRADE is starting... -- 06:50:44.582 INFO [31484]: Version from config: 1.0 -- 06:50:44.582 DEBUG [31484]: Connecting to database... -- 06:50:44.582 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:50:44.582 SQL [31484]: pgsql_db_connect() -- 06:50:44.586 DEBUG [31484]: Database connection successful -- 06:50:44.586 INFO [31484]: _SERVER found -- 06:50:44.586 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 06:50:44.586 INFO [31484]: SERVER_NAME = oameye.works.coregrade.com -- 06:50:44.586 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=dlg1hk9r9o92torbsi22i02g71tn0hho; _gat_gtag_UA_54829827_2=1 -- 06:50:44.586 INFO [31484]: QUERY_STRING = -- 06:50:44.586 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:50:44.617 INFO [31484]: COREGRADE is stopping... -- 06:50:44.617 DEBUG [31484]: Closing database connection -- 06:50:44.617 SQL [31484]: pgsql_close() -- 06:50:46.770 INFO [31484]: COREGRADE is starting... -- 06:50:46.770 INFO [31484]: Version from config: 1.0 -- 06:50:46.770 DEBUG [31484]: Connecting to database... -- 06:50:46.770 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:50:46.770 SQL [31484]: pgsql_db_connect() -- 06:50:46.774 DEBUG [31484]: Database connection successful -- 06:50:46.774 INFO [31484]: _SERVER found -- 06:50:46.774 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 06:50:46.774 INFO [31484]: SERVER_NAME = oameye.works.coregrade.com -- 06:50:46.774 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=dlg1hk9r9o92torbsi22i02g71tn0hho; _gat_gtag_UA_54829827_2=1 -- 06:50:46.774 INFO [31484]: QUERY_STRING = /home/security -- 06:50:46.774 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:50:46.804 INFO [31484]: COREGRADE is stopping... -- 06:50:46.805 DEBUG [31484]: Closing database connection -- 06:50:46.805 SQL [31484]: pgsql_close() -- 06:50:46.940 INFO [31484]: COREGRADE is starting... -- 06:50:46.941 INFO [31484]: Version from config: 1.0 -- 06:50:46.941 DEBUG [31484]: Connecting to database... -- 06:50:46.941 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:50:46.941 SQL [31484]: pgsql_db_connect() -- 06:50:46.951 INFO [31513]: COREGRADE is starting... -- 06:50:46.951 INFO [31513]: Version from config: 1.0 -- 06:50:46.951 DEBUG [31513]: Connecting to database... -- 06:50:46.951 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:50:46.951 SQL [31513]: pgsql_db_connect() -- 06:50:46.945 DEBUG [31484]: Database connection successful -- 06:50:46.945 INFO [31484]: _SERVER found -- 06:50:46.945 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 06:50:46.945 INFO [31484]: SERVER_NAME = oameye.works.coregrade.com -- 06:50:46.945 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=dlg1hk9r9o92torbsi22i02g71tn0hho; _gat_gtag_UA_54829827_2=1 -- 06:50:46.945 INFO [31484]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 06:50:46.945 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:50:46.956 INFO [31484]: COREGRADE is stopping... -- 06:50:46.956 DEBUG [31484]: Closing database connection -- 06:50:46.956 SQL [31484]: pgsql_close() -- 06:50:46.955 DEBUG [31513]: Database connection successful -- 06:50:46.955 INFO [31513]: _SERVER found -- 06:50:46.955 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 06:50:46.955 INFO [31513]: SERVER_NAME = oameye.works.coregrade.com -- 06:50:46.955 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=dlg1hk9r9o92torbsi22i02g71tn0hho; _gat_gtag_UA_54829827_2=1 -- 06:50:46.955 INFO [31513]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:50:46.955 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:50:46.966 INFO [31513]: COREGRADE is stopping... -- 06:50:46.966 DEBUG [31513]: Closing database connection -- 06:50:46.966 SQL [31513]: pgsql_close() -- 06:50:48.858 INFO [31513]: COREGRADE is starting... -- 06:50:48.858 INFO [31513]: Version from config: 1.0 -- 06:50:48.858 DEBUG [31513]: Connecting to database... -- 06:50:48.858 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:50:48.858 SQL [31513]: pgsql_db_connect() -- 06:50:48.862 DEBUG [31513]: Database connection successful -- 06:50:48.862 INFO [31513]: _SERVER found -- 06:50:48.862 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 06:50:48.862 INFO [31513]: SERVER_NAME = oameye.works.coregrade.com -- 06:50:48.862 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=dlg1hk9r9o92torbsi22i02g71tn0hho; _gat_gtag_UA_54829827_2=1 -- 06:50:48.862 INFO [31513]: QUERY_STRING = -- 06:50:48.862 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:50:48.894 INFO [31513]: COREGRADE is stopping... -- 06:50:48.894 DEBUG [31513]: Closing database connection -- 06:50:48.894 SQL [31513]: pgsql_close() -- 06:51:02.997 INFO [31488]: COREGRADE is starting... -- 06:51:02.997 INFO [31488]: Version from config: 1.0 -- 06:51:02.997 DEBUG [31488]: Connecting to database... -- 06:51:02.997 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:51:02.997 SQL [31488]: pgsql_db_connect() -- 06:51:03.001 DEBUG [31488]: Database connection successful -- 06:51:03.001 INFO [31488]: _SERVER found -- 06:51:03.001 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 06:51:03.001 INFO [31488]: SERVER_NAME = oameye.works.coregrade.com -- 06:51:03.001 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=dlg1hk9r9o92torbsi22i02g71tn0hho; _gat_gtag_UA_54829827_2=1 -- 06:51:03.001 INFO [31488]: QUERY_STRING = /home/howitworks -- 06:51:03.001 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:51:03.033 INFO [31488]: COREGRADE is stopping... -- 06:51:03.033 DEBUG [31488]: Closing database connection -- 06:51:03.033 SQL [31488]: pgsql_close() -- 06:51:03.137 INFO [31488]: COREGRADE is starting... -- 06:51:03.138 INFO [31488]: Version from config: 1.0 -- 06:51:03.138 DEBUG [31488]: Connecting to database... -- 06:51:03.138 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:51:03.138 SQL [31488]: pgsql_db_connect() -- 06:51:03.147 INFO [2270]: COREGRADE is starting... -- 06:51:03.147 INFO [2270]: Version from config: 1.0 -- 06:51:03.147 DEBUG [2270]: Connecting to database... -- 06:51:03.147 DEBUG [2270]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:51:03.147 SQL [2270]: pgsql_db_connect() -- 06:51:03.142 DEBUG [31488]: Database connection successful -- 06:51:03.142 INFO [31488]: _SERVER found -- 06:51:03.142 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 06:51:03.142 INFO [31488]: SERVER_NAME = oameye.works.coregrade.com -- 06:51:03.142 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=dlg1hk9r9o92torbsi22i02g71tn0hho; _gat_gtag_UA_54829827_2=1 -- 06:51:03.142 INFO [31488]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 06:51:03.142 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:51:03.153 INFO [31488]: COREGRADE is stopping... -- 06:51:03.153 DEBUG [31488]: Closing database connection -- 06:51:03.153 SQL [31488]: pgsql_close() -- 06:51:03.151 DEBUG [2270]: Database connection successful -- 06:51:03.151 INFO [2270]: _SERVER found -- 06:51:03.151 INFO [2270]: REMOTE_ADDR = 192.168.1.13 -- 06:51:03.151 INFO [2270]: SERVER_NAME = oameye.works.coregrade.com -- 06:51:03.151 INFO [2270]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=dlg1hk9r9o92torbsi22i02g71tn0hho; _gat_gtag_UA_54829827_2=1 -- 06:51:03.151 INFO [2270]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:51:03.151 INFO [2270]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:51:03.163 INFO [2270]: COREGRADE is stopping... -- 06:51:03.163 DEBUG [2270]: Closing database connection -- 06:51:03.163 SQL [2270]: pgsql_close() -- 06:51:05.082 INFO [2270]: COREGRADE is starting... -- 06:51:05.082 INFO [2270]: Version from config: 1.0 -- 06:51:05.082 DEBUG [2270]: Connecting to database... -- 06:51:05.082 DEBUG [2270]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:51:05.082 SQL [2270]: pgsql_db_connect() -- 06:51:05.086 DEBUG [2270]: Database connection successful -- 06:51:05.086 INFO [2270]: _SERVER found -- 06:51:05.086 INFO [2270]: REMOTE_ADDR = 192.168.1.13 -- 06:51:05.086 INFO [2270]: SERVER_NAME = oameye.works.coregrade.com -- 06:51:05.086 INFO [2270]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=dlg1hk9r9o92torbsi22i02g71tn0hho; _gat_gtag_UA_54829827_2=1 -- 06:51:05.086 INFO [2270]: QUERY_STRING = -- 06:51:05.086 INFO [2270]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:51:05.118 INFO [2270]: COREGRADE is stopping... -- 06:51:05.118 DEBUG [2270]: Closing database connection -- 06:51:05.118 SQL [2270]: pgsql_close() -- 06:51:38.485 INFO [2268]: COREGRADE is starting... -- 06:51:38.485 INFO [2268]: Version from config: 1.0 -- 06:51:38.485 DEBUG [2268]: Connecting to database... -- 06:51:38.485 DEBUG [2268]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:51:38.485 SQL [2268]: pgsql_db_connect() -- 06:51:38.489 DEBUG [2268]: Database connection successful -- 06:51:38.489 INFO [2268]: _SERVER found -- 06:51:38.489 INFO [2268]: REMOTE_ADDR = 192.168.1.13 -- 06:51:38.489 INFO [2268]: SERVER_NAME = oameye.works.coregrade.com -- 06:51:38.489 INFO [2268]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=dlg1hk9r9o92torbsi22i02g71tn0hho -- 06:51:38.489 INFO [2268]: QUERY_STRING = -- 06:51:38.489 INFO [2268]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:51:38.521 INFO [2268]: COREGRADE is stopping... -- 06:51:38.521 DEBUG [2268]: Closing database connection -- 06:51:38.521 SQL [2268]: pgsql_close() -- 06:51:38.644 INFO [2268]: COREGRADE is starting... -- 06:51:38.644 INFO [2268]: Version from config: 1.0 -- 06:51:38.644 DEBUG [2268]: Connecting to database... -- 06:51:38.644 DEBUG [2268]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:51:38.644 SQL [2268]: pgsql_db_connect() -- 06:51:38.650 INFO [2269]: COREGRADE is starting... -- 06:51:38.650 INFO [2269]: Version from config: 1.0 -- 06:51:38.650 DEBUG [2269]: Connecting to database... -- 06:51:38.650 DEBUG [2269]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:51:38.650 SQL [2269]: pgsql_db_connect() -- 06:51:38.648 DEBUG [2268]: Database connection successful -- 06:51:38.648 INFO [2268]: _SERVER found -- 06:51:38.648 INFO [2268]: REMOTE_ADDR = 192.168.1.13 -- 06:51:38.648 INFO [2268]: SERVER_NAME = oameye.works.coregrade.com -- 06:51:38.648 INFO [2268]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=dlg1hk9r9o92torbsi22i02g71tn0hho -- 06:51:38.648 INFO [2268]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 06:51:38.648 INFO [2268]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:51:38.660 INFO [2268]: COREGRADE is stopping... -- 06:51:38.660 DEBUG [2268]: Closing database connection -- 06:51:38.660 SQL [2268]: pgsql_close() -- 06:51:38.654 DEBUG [2269]: Database connection successful -- 06:51:38.654 INFO [2269]: _SERVER found -- 06:51:38.654 INFO [2269]: REMOTE_ADDR = 192.168.1.13 -- 06:51:38.654 INFO [2269]: SERVER_NAME = oameye.works.coregrade.com -- 06:51:38.654 INFO [2269]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=dlg1hk9r9o92torbsi22i02g71tn0hho -- 06:51:38.654 INFO [2269]: QUERY_STRING = /assets/img/footer_1.jpg -- 06:51:38.654 INFO [2269]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:51:38.666 INFO [2269]: COREGRADE is stopping... -- 06:51:38.666 DEBUG [2269]: Closing database connection -- 06:51:38.666 SQL [2269]: pgsql_close() -- 06:52:13.564 INFO [31487]: COREGRADE is starting... -- 06:52:13.564 INFO [31487]: Version from config: 1.0 -- 06:52:13.564 DEBUG [31487]: Connecting to database... -- 06:52:13.564 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:52:13.564 SQL [31487]: pgsql_db_connect() -- 06:52:13.569 DEBUG [31487]: Database connection successful -- 06:52:13.569 INFO [31487]: _SERVER found -- 06:52:13.569 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 06:52:13.569 INFO [31487]: SERVER_NAME = oameye.works.coregrade.com -- 06:52:13.569 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=dlg1hk9r9o92torbsi22i02g71tn0hho; _gat_gtag_UA_54829827_2=1 -- 06:52:13.569 INFO [31487]: QUERY_STRING = -- 06:52:13.569 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:52:13.601 INFO [31487]: COREGRADE is stopping... -- 06:52:13.601 DEBUG [31487]: Closing database connection -- 06:52:13.601 SQL [31487]: pgsql_close() -- 06:52:13.731 INFO [31487]: COREGRADE is starting... -- 06:52:13.731 INFO [31487]: Version from config: 1.0 -- 06:52:13.731 DEBUG [31487]: Connecting to database... -- 06:52:13.731 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:52:13.731 SQL [31487]: pgsql_db_connect() -- 06:52:13.737 INFO [31485]: COREGRADE is starting... -- 06:52:13.737 INFO [31485]: Version from config: 1.0 -- 06:52:13.737 DEBUG [31485]: Connecting to database... -- 06:52:13.737 DEBUG [31485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:52:13.737 SQL [31485]: pgsql_db_connect() -- 06:52:13.735 DEBUG [31487]: Database connection successful -- 06:52:13.735 INFO [31487]: _SERVER found -- 06:52:13.735 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 06:52:13.735 INFO [31487]: SERVER_NAME = oameye.works.coregrade.com -- 06:52:13.735 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=dlg1hk9r9o92torbsi22i02g71tn0hho; _gat_gtag_UA_54829827_2=1 -- 06:52:13.735 INFO [31487]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 06:52:13.735 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:52:13.746 INFO [31487]: COREGRADE is stopping... -- 06:52:13.746 DEBUG [31487]: Closing database connection -- 06:52:13.746 SQL [31487]: pgsql_close() -- 06:52:13.741 DEBUG [31485]: Database connection successful -- 06:52:13.741 INFO [31485]: _SERVER found -- 06:52:13.741 INFO [31485]: REMOTE_ADDR = 192.168.1.13 -- 06:52:13.741 INFO [31485]: SERVER_NAME = oameye.works.coregrade.com -- 06:52:13.741 INFO [31485]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=dlg1hk9r9o92torbsi22i02g71tn0hho; _gat_gtag_UA_54829827_2=1 -- 06:52:13.741 INFO [31485]: QUERY_STRING = /assets/img/footer_1.jpg -- 06:52:13.741 INFO [31485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:52:13.753 INFO [31485]: COREGRADE is stopping... -- 06:52:13.753 DEBUG [31485]: Closing database connection -- 06:52:13.753 SQL [31485]: pgsql_close() -- 06:58:15.666 INFO [31486]: COREGRADE is starting... -- 06:58:15.667 INFO [31486]: Version from config: 1.0 -- 06:58:15.667 DEBUG [31486]: Connecting to database... -- 06:58:15.667 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:58:15.667 SQL [31486]: pgsql_db_connect() -- 06:58:15.671 DEBUG [31486]: Database connection successful -- 06:58:15.671 INFO [31486]: _SERVER found -- 06:58:15.671 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 06:58:15.671 INFO [31486]: SERVER_NAME = oameye.works.coregrade.com -- 06:58:15.671 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=dlg1hk9r9o92torbsi22i02g71tn0hho -- 06:58:15.671 INFO [31486]: QUERY_STRING = -- 06:58:15.671 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:58:15.706 INFO [31486]: COREGRADE is stopping... -- 06:58:15.706 DEBUG [31486]: Closing database connection -- 06:58:15.706 SQL [31486]: pgsql_close() -- 06:58:15.884 INFO [31486]: COREGRADE is starting... -- 06:58:15.884 INFO [31486]: Version from config: 1.0 -- 06:58:15.884 DEBUG [31486]: Connecting to database... -- 06:58:15.884 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:58:15.884 SQL [31486]: pgsql_db_connect() -- 06:58:15.891 INFO [31649]: COREGRADE is starting... -- 06:58:15.891 INFO [31649]: Version from config: 1.0 -- 06:58:15.891 DEBUG [31649]: Connecting to database... -- 06:58:15.891 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:58:15.891 SQL [31649]: pgsql_db_connect() -- 06:58:15.888 DEBUG [31486]: Database connection successful -- 06:58:15.888 INFO [31486]: _SERVER found -- 06:58:15.888 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 06:58:15.888 INFO [31486]: SERVER_NAME = oameye.works.coregrade.com -- 06:58:15.888 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=be2fqo4vssrugnjfinfb7mi47hvdb78h -- 06:58:15.888 INFO [31486]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 06:58:15.888 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:58:15.900 INFO [31486]: COREGRADE is stopping... -- 06:58:15.900 DEBUG [31486]: Closing database connection -- 06:58:15.900 SQL [31486]: pgsql_close() -- 06:58:15.895 DEBUG [31649]: Database connection successful -- 06:58:15.895 INFO [31649]: _SERVER found -- 06:58:15.895 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 06:58:15.895 INFO [31649]: SERVER_NAME = oameye.works.coregrade.com -- 06:58:15.895 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=be2fqo4vssrugnjfinfb7mi47hvdb78h -- 06:58:15.895 INFO [31649]: QUERY_STRING = /assets/img/footer_1.jpg -- 06:58:15.895 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:58:15.908 INFO [31649]: COREGRADE is stopping... -- 06:58:15.908 DEBUG [31649]: Closing database connection -- 06:58:15.908 SQL [31649]: pgsql_close() -- 07:01:48.868 INFO [31484]: COREGRADE is starting... -- 07:01:48.869 INFO [31484]: Version from config: 1.0 -- 07:01:48.869 DEBUG [31484]: Connecting to database... -- 07:01:48.869 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:01:48.869 SQL [31484]: pgsql_db_connect() -- 07:01:48.873 DEBUG [31484]: Database connection successful -- 07:01:48.873 INFO [31484]: _SERVER found -- 07:01:48.873 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 07:01:48.873 INFO [31484]: SERVER_NAME = oameye.works.coregrade.com -- 07:01:48.873 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=be2fqo4vssrugnjfinfb7mi47hvdb78h -- 07:01:48.873 INFO [31484]: QUERY_STRING = -- 07:01:48.873 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:01:48.905 INFO [31484]: COREGRADE is stopping... -- 07:01:48.905 DEBUG [31484]: Closing database connection -- 07:01:48.905 SQL [31484]: pgsql_close() -- 07:01:49.014 INFO [31484]: COREGRADE is starting... -- 07:01:49.015 INFO [31484]: Version from config: 1.0 -- 07:01:49.015 DEBUG [31484]: Connecting to database... -- 07:01:49.015 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:01:49.015 SQL [31484]: pgsql_db_connect() -- 07:01:49.021 INFO [31513]: COREGRADE is starting... -- 07:01:49.021 INFO [31513]: Version from config: 1.0 -- 07:01:49.021 DEBUG [31513]: Connecting to database... -- 07:01:49.021 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:01:49.021 SQL [31513]: pgsql_db_connect() -- 07:01:49.019 DEBUG [31484]: Database connection successful -- 07:01:49.019 INFO [31484]: _SERVER found -- 07:01:49.019 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 07:01:49.019 INFO [31484]: SERVER_NAME = oameye.works.coregrade.com -- 07:01:49.019 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=be2fqo4vssrugnjfinfb7mi47hvdb78h -- 07:01:49.019 INFO [31484]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:01:49.019 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:01:49.030 INFO [31484]: COREGRADE is stopping... -- 07:01:49.030 DEBUG [31484]: Closing database connection -- 07:01:49.030 SQL [31484]: pgsql_close() -- 07:01:49.025 DEBUG [31513]: Database connection successful -- 07:01:49.025 INFO [31513]: _SERVER found -- 07:01:49.025 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 07:01:49.025 INFO [31513]: SERVER_NAME = oameye.works.coregrade.com -- 07:01:49.025 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=be2fqo4vssrugnjfinfb7mi47hvdb78h -- 07:01:49.025 INFO [31513]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:01:49.025 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:01:49.037 INFO [31513]: COREGRADE is stopping... -- 07:01:49.037 DEBUG [31513]: Closing database connection -- 07:01:49.037 SQL [31513]: pgsql_close() -- 07:02:24.915 INFO [31488]: COREGRADE is starting... -- 07:02:24.915 INFO [31488]: Version from config: 1.0 -- 07:02:24.915 DEBUG [31488]: Connecting to database... -- 07:02:24.915 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:02:24.915 SQL [31488]: pgsql_db_connect() -- 07:02:24.920 DEBUG [31488]: Database connection successful -- 07:02:24.920 INFO [31488]: _SERVER found -- 07:02:24.920 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 07:02:24.920 INFO [31488]: SERVER_NAME = oameye.works.coregrade.com -- 07:02:24.920 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=be2fqo4vssrugnjfinfb7mi47hvdb78h; _gat_gtag_UA_54829827_2=1 -- 07:02:24.920 INFO [31488]: QUERY_STRING = -- 07:02:24.920 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:02:24.953 INFO [31488]: COREGRADE is stopping... -- 07:02:24.953 DEBUG [31488]: Closing database connection -- 07:02:24.953 SQL [31488]: pgsql_close() -- 07:02:25.068 INFO [31488]: COREGRADE is starting... -- 07:02:25.068 INFO [31488]: Version from config: 1.0 -- 07:02:25.068 DEBUG [31488]: Connecting to database... -- 07:02:25.068 DEBUG [31488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:02:25.068 SQL [31488]: pgsql_db_connect() -- 07:02:25.074 INFO [2270]: COREGRADE is starting... -- 07:02:25.074 INFO [2270]: Version from config: 1.0 -- 07:02:25.074 DEBUG [2270]: Connecting to database... -- 07:02:25.074 DEBUG [2270]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:02:25.074 SQL [2270]: pgsql_db_connect() -- 07:02:25.072 DEBUG [31488]: Database connection successful -- 07:02:25.072 INFO [31488]: _SERVER found -- 07:02:25.072 INFO [31488]: REMOTE_ADDR = 192.168.1.13 -- 07:02:25.072 INFO [31488]: SERVER_NAME = oameye.works.coregrade.com -- 07:02:25.072 INFO [31488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=be2fqo4vssrugnjfinfb7mi47hvdb78h; _gat_gtag_UA_54829827_2=1 -- 07:02:25.072 INFO [31488]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:02:25.072 INFO [31488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:02:25.084 INFO [31488]: COREGRADE is stopping... -- 07:02:25.084 DEBUG [31488]: Closing database connection -- 07:02:25.084 SQL [31488]: pgsql_close() -- 07:02:25.078 DEBUG [2270]: Database connection successful -- 07:02:25.078 INFO [2270]: _SERVER found -- 07:02:25.078 INFO [2270]: REMOTE_ADDR = 192.168.1.13 -- 07:02:25.078 INFO [2270]: SERVER_NAME = oameye.works.coregrade.com -- 07:02:25.078 INFO [2270]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=be2fqo4vssrugnjfinfb7mi47hvdb78h; _gat_gtag_UA_54829827_2=1 -- 07:02:25.078 INFO [2270]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:02:25.078 INFO [2270]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:02:25.090 INFO [2270]: COREGRADE is stopping... -- 07:02:25.090 DEBUG [2270]: Closing database connection -- 07:02:25.090 SQL [2270]: pgsql_close() -- 07:02:51.668 INFO [2268]: COREGRADE is starting... -- 07:02:51.668 INFO [2268]: Version from config: 1.0 -- 07:02:51.668 DEBUG [2268]: Connecting to database... -- 07:02:51.668 DEBUG [2268]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:02:51.668 SQL [2268]: pgsql_db_connect() -- 07:02:51.672 DEBUG [2268]: Database connection successful -- 07:02:51.672 INFO [2268]: _SERVER found -- 07:02:51.672 INFO [2268]: REMOTE_ADDR = 192.168.1.13 -- 07:02:51.672 INFO [2268]: SERVER_NAME = oameye.works.coregrade.com -- 07:02:51.672 INFO [2268]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=be2fqo4vssrugnjfinfb7mi47hvdb78h -- 07:02:51.672 INFO [2268]: QUERY_STRING = -- 07:02:51.672 INFO [2268]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:02:51.706 INFO [2268]: COREGRADE is stopping... -- 07:02:51.706 DEBUG [2268]: Closing database connection -- 07:02:51.706 SQL [2268]: pgsql_close() -- 07:02:51.840 INFO [2268]: COREGRADE is starting... -- 07:02:51.841 INFO [2268]: Version from config: 1.0 -- 07:02:51.841 DEBUG [2268]: Connecting to database... -- 07:02:51.841 DEBUG [2268]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:02:51.841 SQL [2268]: pgsql_db_connect() -- 07:02:51.846 INFO [2269]: COREGRADE is starting... -- 07:02:51.846 INFO [2269]: Version from config: 1.0 -- 07:02:51.846 DEBUG [2269]: Connecting to database... -- 07:02:51.846 DEBUG [2269]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:02:51.847 SQL [2269]: pgsql_db_connect() -- 07:02:51.845 DEBUG [2268]: Database connection successful -- 07:02:51.845 INFO [2268]: _SERVER found -- 07:02:51.845 INFO [2268]: REMOTE_ADDR = 192.168.1.13 -- 07:02:51.845 INFO [2268]: SERVER_NAME = oameye.works.coregrade.com -- 07:02:51.845 INFO [2268]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=be2fqo4vssrugnjfinfb7mi47hvdb78h -- 07:02:51.845 INFO [2268]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:02:51.845 INFO [2268]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:02:51.856 INFO [2268]: COREGRADE is stopping... -- 07:02:51.856 DEBUG [2268]: Closing database connection -- 07:02:51.856 SQL [2268]: pgsql_close() -- 07:02:51.851 DEBUG [2269]: Database connection successful -- 07:02:51.851 INFO [2269]: _SERVER found -- 07:02:51.851 INFO [2269]: REMOTE_ADDR = 192.168.1.13 -- 07:02:51.851 INFO [2269]: SERVER_NAME = oameye.works.coregrade.com -- 07:02:51.851 INFO [2269]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=be2fqo4vssrugnjfinfb7mi47hvdb78h -- 07:02:51.851 INFO [2269]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:02:51.851 INFO [2269]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:02:51.862 INFO [2269]: COREGRADE is stopping... -- 07:02:51.863 DEBUG [2269]: Closing database connection -- 07:02:51.863 SQL [2269]: pgsql_close() -- 07:02:56.366 INFO [2269]: COREGRADE is starting... -- 07:02:56.367 INFO [2269]: Version from config: 1.0 -- 07:02:56.367 DEBUG [2269]: Connecting to database... -- 07:02:56.367 DEBUG [2269]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:02:56.367 SQL [2269]: pgsql_db_connect() -- 07:02:56.371 DEBUG [2269]: Database connection successful -- 07:02:56.371 INFO [2269]: _SERVER found -- 07:02:56.371 INFO [2269]: REMOTE_ADDR = 192.168.1.13 -- 07:02:56.371 INFO [2269]: SERVER_NAME = oameye.works.coregrade.com -- 07:02:56.371 INFO [2269]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=be2fqo4vssrugnjfinfb7mi47hvdb78h; _gat_gtag_UA_54829827_2=1 -- 07:02:56.371 INFO [2269]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 07:02:56.371 INFO [2269]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:02:56.382 INFO [2269]: COREGRADE is stopping... -- 07:02:56.382 DEBUG [2269]: Closing database connection -- 07:02:56.383 SQL [2269]: pgsql_close() -- 07:27:35.699 INFO [31487]: COREGRADE is starting... -- 07:27:35.699 INFO [31487]: Version from config: 1.0 -- 07:27:35.699 DEBUG [31487]: Connecting to database... -- 07:27:35.699 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:27:35.699 SQL [31487]: pgsql_db_connect() -- 07:27:35.704 DEBUG [31487]: Database connection successful -- 07:27:35.704 INFO [31487]: _SERVER found -- 07:27:35.704 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 07:27:35.704 INFO [31487]: SERVER_NAME = oameye.works.coregrade.com -- 07:27:35.704 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=be2fqo4vssrugnjfinfb7mi47hvdb78h -- 07:27:35.704 INFO [31487]: QUERY_STRING = -- 07:27:35.704 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:27:35.740 INFO [31487]: COREGRADE is stopping... -- 07:27:35.740 DEBUG [31487]: Closing database connection -- 07:27:35.740 SQL [31487]: pgsql_close() -- 07:27:35.843 INFO [31487]: COREGRADE is starting... -- 07:27:35.843 INFO [31487]: Version from config: 1.0 -- 07:27:35.843 DEBUG [31487]: Connecting to database... -- 07:27:35.843 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:27:35.843 SQL [31487]: pgsql_db_connect() -- 07:27:35.851 INFO [31485]: COREGRADE is starting... -- 07:27:35.851 INFO [31485]: Version from config: 1.0 -- 07:27:35.851 DEBUG [31485]: Connecting to database... -- 07:27:35.851 DEBUG [31485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:27:35.851 SQL [31485]: pgsql_db_connect() -- 07:27:35.847 DEBUG [31487]: Database connection successful -- 07:27:35.847 INFO [31487]: _SERVER found -- 07:27:35.848 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 07:27:35.848 INFO [31487]: SERVER_NAME = oameye.works.coregrade.com -- 07:27:35.848 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7lo1k07rptfvdf0c58ek03qi0eunha4k -- 07:27:35.848 INFO [31487]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:27:35.848 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:27:35.859 INFO [31487]: COREGRADE is stopping... -- 07:27:35.859 DEBUG [31487]: Closing database connection -- 07:27:35.859 SQL [31487]: pgsql_close() -- 07:27:35.855 DEBUG [31485]: Database connection successful -- 07:27:35.855 INFO [31485]: _SERVER found -- 07:27:35.855 INFO [31485]: REMOTE_ADDR = 192.168.1.13 -- 07:27:35.855 INFO [31485]: SERVER_NAME = oameye.works.coregrade.com -- 07:27:35.855 INFO [31485]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7lo1k07rptfvdf0c58ek03qi0eunha4k -- 07:27:35.855 INFO [31485]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:27:35.855 INFO [31485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:27:35.867 INFO [31485]: COREGRADE is stopping... -- 07:27:35.867 DEBUG [31485]: Closing database connection -- 07:27:35.867 SQL [31485]: pgsql_close() -- 07:27:36.024 INFO [31485]: COREGRADE is starting... -- 07:27:36.025 INFO [31485]: Version from config: 1.0 -- 07:27:36.025 DEBUG [31485]: Connecting to database... -- 07:27:36.025 DEBUG [31485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:27:36.025 SQL [31485]: pgsql_db_connect() -- 07:27:36.029 DEBUG [31485]: Database connection successful -- 07:27:36.029 INFO [31485]: _SERVER found -- 07:27:36.029 INFO [31485]: REMOTE_ADDR = 192.168.1.13 -- 07:27:36.029 INFO [31485]: SERVER_NAME = oameye.works.coregrade.com -- 07:27:36.029 INFO [31485]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7lo1k07rptfvdf0c58ek03qi0eunha4k -- 07:27:36.029 INFO [31485]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 07:27:36.029 INFO [31485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:27:36.040 INFO [31485]: COREGRADE is stopping... -- 07:27:36.040 DEBUG [31485]: Closing database connection -- 07:27:36.040 SQL [31485]: pgsql_close() -- 07:27:38.953 INFO [31485]: COREGRADE is starting... -- 07:27:38.953 INFO [31485]: Version from config: 1.0 -- 07:27:38.953 DEBUG [31485]: Connecting to database... -- 07:27:38.953 DEBUG [31485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:27:38.953 SQL [31485]: pgsql_db_connect() -- 07:27:38.957 DEBUG [31485]: Database connection successful -- 07:27:38.957 INFO [31485]: _SERVER found -- 07:27:38.957 INFO [31485]: REMOTE_ADDR = 192.168.1.13 -- 07:27:38.957 INFO [31485]: SERVER_NAME = oameye.works.coregrade.com -- 07:27:38.957 INFO [31485]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7lo1k07rptfvdf0c58ek03qi0eunha4k; _gat_gtag_UA_54829827_2=1 -- 07:27:38.957 INFO [31485]: QUERY_STRING = -- 07:27:38.957 INFO [31485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:27:38.990 INFO [31485]: COREGRADE is stopping... -- 07:27:38.990 DEBUG [31485]: Closing database connection -- 07:27:38.990 SQL [31485]: pgsql_close() -- 07:27:39.415 INFO [31649]: COREGRADE is starting... -- 07:27:39.415 INFO [31649]: Version from config: 1.0 -- 07:27:39.415 DEBUG [31649]: Connecting to database... -- 07:27:39.415 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:27:39.415 SQL [31649]: pgsql_db_connect() -- 07:27:39.421 INFO [31513]: COREGRADE is starting... -- 07:27:39.422 INFO [31513]: Version from config: 1.0 -- 07:27:39.422 DEBUG [31513]: Connecting to database... -- 07:27:39.422 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:27:39.422 SQL [31513]: pgsql_db_connect() -- 07:27:39.419 DEBUG [31649]: Database connection successful -- 07:27:39.419 INFO [31649]: _SERVER found -- 07:27:39.419 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 07:27:39.420 INFO [31649]: SERVER_NAME = oameye.works.coregrade.com -- 07:27:39.420 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7lo1k07rptfvdf0c58ek03qi0eunha4k; _gat_gtag_UA_54829827_2=1 -- 07:27:39.420 INFO [31649]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 07:27:39.420 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:27:39.432 INFO [31649]: COREGRADE is stopping... -- 07:27:39.432 DEBUG [31649]: Closing database connection -- 07:27:39.432 SQL [31649]: pgsql_close() -- 07:27:39.426 DEBUG [31513]: Database connection successful -- 07:27:39.426 INFO [31513]: _SERVER found -- 07:27:39.426 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 07:27:39.426 INFO [31513]: SERVER_NAME = oameye.works.coregrade.com -- 07:27:39.426 INFO [31513]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7lo1k07rptfvdf0c58ek03qi0eunha4k; _gat_gtag_UA_54829827_2=1 -- 07:27:39.426 INFO [31513]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:27:39.426 INFO [31513]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:27:39.438 INFO [31513]: COREGRADE is stopping... -- 07:27:39.438 DEBUG [31513]: Closing database connection -- 07:27:39.438 SQL [31513]: pgsql_close() -- 07:27:39.521 INFO [31487]: COREGRADE is starting... -- 07:27:39.521 INFO [31487]: Version from config: 1.0 -- 07:27:39.521 DEBUG [31487]: Connecting to database... -- 07:27:39.521 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:27:39.521 SQL [31487]: pgsql_db_connect() -- 07:27:39.525 DEBUG [31487]: Database connection successful -- 07:27:39.525 INFO [31487]: _SERVER found -- 07:27:39.525 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 07:27:39.525 INFO [31487]: SERVER_NAME = oameye.works.coregrade.com -- 07:27:39.525 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7lo1k07rptfvdf0c58ek03qi0eunha4k; _gat_gtag_UA_54829827_2=1 -- 07:27:39.525 INFO [31487]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:27:39.525 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:27:39.536 INFO [31487]: COREGRADE is stopping... -- 07:27:39.536 DEBUG [31487]: Closing database connection -- 07:27:39.536 SQL [31487]: pgsql_close() -- 07:27:43.886 INFO [31487]: COREGRADE is starting... -- 07:27:43.886 INFO [31487]: Version from config: 1.0 -- 07:27:43.886 DEBUG [31487]: Connecting to database... -- 07:27:43.887 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:27:43.887 SQL [31487]: pgsql_db_connect() -- 07:27:43.891 DEBUG [31487]: Database connection successful -- 07:27:43.891 INFO [31487]: _SERVER found -- 07:27:43.891 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 07:27:43.891 INFO [31487]: SERVER_NAME = oameye.works.coregrade.com -- 07:27:43.891 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7lo1k07rptfvdf0c58ek03qi0eunha4k; _gat_gtag_UA_54829827_2=1 -- 07:27:43.891 INFO [31487]: QUERY_STRING = -- 07:27:43.891 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:27:43.922 INFO [31487]: COREGRADE is stopping... -- 07:27:43.922 DEBUG [31487]: Closing database connection -- 07:27:43.922 SQL [31487]: pgsql_close() -- 07:27:44.280 INFO [31649]: COREGRADE is starting... -- 07:27:44.280 INFO [31649]: Version from config: 1.0 -- 07:27:44.280 DEBUG [31649]: Connecting to database... -- 07:27:44.280 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:27:44.280 SQL [31649]: pgsql_db_connect() -- 07:27:44.284 DEBUG [31649]: Database connection successful -- 07:27:44.284 INFO [31649]: _SERVER found -- 07:27:44.284 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 07:27:44.284 INFO [31649]: SERVER_NAME = oameye.works.coregrade.com -- 07:27:44.284 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7lo1k07rptfvdf0c58ek03qi0eunha4k; _gat_gtag_UA_54829827_2=1 -- 07:27:44.284 INFO [31649]: QUERY_STRING = -- 07:27:44.284 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:27:44.318 INFO [31649]: COREGRADE is stopping... -- 07:27:44.319 DEBUG [31649]: Closing database connection -- 07:27:44.319 SQL [31649]: pgsql_close() -- 07:27:44.381 INFO [31487]: COREGRADE is starting... -- 07:27:44.381 INFO [31487]: Version from config: 1.0 -- 07:27:44.382 DEBUG [31487]: Connecting to database... -- 07:27:44.382 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:27:44.382 SQL [31487]: pgsql_db_connect() -- 07:27:44.410 INFO [31484]: COREGRADE is starting... -- 07:27:44.411 INFO [31484]: Version from config: 1.0 -- 07:27:44.411 DEBUG [31484]: Connecting to database... -- 07:27:44.411 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:27:44.411 SQL [31484]: pgsql_db_connect() -- 07:27:44.386 DEBUG [31487]: Database connection successful -- 07:27:44.386 INFO [31487]: _SERVER found -- 07:27:44.386 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 07:27:44.386 INFO [31487]: SERVER_NAME = oameye.works.coregrade.com -- 07:27:44.386 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7lo1k07rptfvdf0c58ek03qi0eunha4k; _gat_gtag_UA_54829827_2=1 -- 07:27:44.386 INFO [31487]: QUERY_STRING = -- 07:27:44.386 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:27:44.417 INFO [31487]: COREGRADE is stopping... -- 07:27:44.417 DEBUG [31487]: Closing database connection -- 07:27:44.417 SQL [31487]: pgsql_close() -- 07:27:44.415 DEBUG [31484]: Database connection successful -- 07:27:44.415 INFO [31484]: _SERVER found -- 07:27:44.415 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 07:27:44.415 INFO [31484]: SERVER_NAME = oameye.works.coregrade.com -- 07:27:44.415 INFO [31484]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7lo1k07rptfvdf0c58ek03qi0eunha4k; _gat_gtag_UA_54829827_2=1 -- 07:27:44.415 INFO [31484]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:27:44.415 INFO [31484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:27:44.427 INFO [31484]: COREGRADE is stopping... -- 07:27:44.427 DEBUG [31484]: Closing database connection -- 07:27:44.427 SQL [31484]: pgsql_close() -- 07:27:44.479 INFO [31487]: COREGRADE is starting... -- 07:27:44.480 INFO [31487]: Version from config: 1.0 -- 07:27:44.480 DEBUG [31487]: Connecting to database... -- 07:27:44.480 DEBUG [31487]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:27:44.480 SQL [31487]: pgsql_db_connect() -- 07:27:44.484 DEBUG [31487]: Database connection successful -- 07:27:44.484 INFO [31487]: _SERVER found -- 07:27:44.484 INFO [31487]: REMOTE_ADDR = 192.168.1.13 -- 07:27:44.484 INFO [31487]: SERVER_NAME = oameye.works.coregrade.com -- 07:27:44.484 INFO [31487]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7lo1k07rptfvdf0c58ek03qi0eunha4k; _gat_gtag_UA_54829827_2=1 -- 07:27:44.484 INFO [31487]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 07:27:44.484 INFO [31487]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:27:44.495 INFO [31487]: COREGRADE is stopping... -- 07:27:44.495 DEBUG [31487]: Closing database connection -- 07:27:44.495 SQL [31487]: pgsql_close() -- 07:27:44.526 INFO [31485]: COREGRADE is starting... -- 07:27:44.526 INFO [31485]: Version from config: 1.0 -- 07:27:44.526 DEBUG [31485]: Connecting to database... -- 07:27:44.526 DEBUG [31485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:27:44.526 SQL [31485]: pgsql_db_connect() -- 07:27:44.530 DEBUG [31485]: Database connection successful -- 07:27:44.530 INFO [31485]: _SERVER found -- 07:27:44.530 INFO [31485]: REMOTE_ADDR = 192.168.1.13 -- 07:27:44.530 INFO [31485]: SERVER_NAME = oameye.works.coregrade.com -- 07:27:44.530 INFO [31485]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7lo1k07rptfvdf0c58ek03qi0eunha4k; _gat_gtag_UA_54829827_2=1 -- 07:27:44.530 INFO [31485]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:27:44.530 INFO [31485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:27:44.541 INFO [31485]: COREGRADE is stopping... -- 07:27:44.541 DEBUG [31485]: Closing database connection -- 07:27:44.541 SQL [31485]: pgsql_close() -- 07:27:44.886 INFO [2270]: COREGRADE is starting... -- 07:27:44.886 INFO [2270]: Version from config: 1.0 -- 07:27:44.886 DEBUG [2270]: Connecting to database... -- 07:27:44.886 DEBUG [2270]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:27:44.886 SQL [2270]: pgsql_db_connect() -- 07:27:44.890 DEBUG [2270]: Database connection successful -- 07:27:44.890 INFO [2270]: _SERVER found -- 07:27:44.890 INFO [2270]: REMOTE_ADDR = 192.168.1.13 -- 07:27:44.890 INFO [2270]: SERVER_NAME = oameye.works.coregrade.com -- 07:27:44.890 INFO [2270]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7lo1k07rptfvdf0c58ek03qi0eunha4k; _gat_gtag_UA_54829827_2=1 -- 07:27:44.890 INFO [2270]: QUERY_STRING = -- 07:27:44.890 INFO [2270]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:27:44.922 INFO [2270]: COREGRADE is stopping... -- 07:27:44.922 DEBUG [2270]: Closing database connection -- 07:27:44.922 SQL [2270]: pgsql_close() -- 07:27:45.065 INFO [2270]: COREGRADE is starting... -- 07:27:45.065 INFO [2270]: Version from config: 1.0 -- 07:27:45.065 DEBUG [2270]: Connecting to database... -- 07:27:45.065 DEBUG [2270]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:27:45.065 SQL [2270]: pgsql_db_connect() -- 07:27:45.069 DEBUG [2270]: Database connection successful -- 07:27:45.069 INFO [2270]: _SERVER found -- 07:27:45.069 INFO [2270]: REMOTE_ADDR = 192.168.1.13 -- 07:27:45.069 INFO [2270]: SERVER_NAME = oameye.works.coregrade.com -- 07:27:45.069 INFO [2270]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7lo1k07rptfvdf0c58ek03qi0eunha4k; _gat_gtag_UA_54829827_2=1 -- 07:27:45.069 INFO [2270]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:27:45.069 INFO [2270]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:27:45.080 INFO [2270]: COREGRADE is stopping... -- 07:27:45.080 DEBUG [2270]: Closing database connection -- 07:27:45.080 SQL [2270]: pgsql_close() -- 07:27:45.097 INFO [2270]: COREGRADE is starting... -- 07:27:45.097 INFO [2270]: Version from config: 1.0 -- 07:27:45.097 DEBUG [2270]: Connecting to database... -- 07:27:45.097 DEBUG [2270]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:27:45.097 SQL [2270]: pgsql_db_connect() -- 07:27:45.101 DEBUG [2270]: Database connection successful -- 07:27:45.101 INFO [2270]: _SERVER found -- 07:27:45.101 INFO [2270]: REMOTE_ADDR = 192.168.1.13 -- 07:27:45.101 INFO [2270]: SERVER_NAME = oameye.works.coregrade.com -- 07:27:45.101 INFO [2270]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7lo1k07rptfvdf0c58ek03qi0eunha4k; _gat_gtag_UA_54829827_2=1 -- 07:27:45.101 INFO [2270]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:27:45.101 INFO [2270]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:27:45.112 INFO [2270]: COREGRADE is stopping... -- 07:27:45.112 DEBUG [2270]: Closing database connection -- 07:27:45.112 SQL [2270]: pgsql_close() -- 07:27:45.280 INFO [2268]: COREGRADE is starting... -- 07:27:45.281 INFO [2268]: Version from config: 1.0 -- 07:27:45.281 DEBUG [2268]: Connecting to database... -- 07:27:45.281 DEBUG [2268]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:27:45.281 SQL [2268]: pgsql_db_connect() -- 07:27:45.285 DEBUG [2268]: Database connection successful -- 07:27:45.285 INFO [2268]: _SERVER found -- 07:27:45.285 INFO [2268]: REMOTE_ADDR = 192.168.1.13 -- 07:27:45.285 INFO [2268]: SERVER_NAME = oameye.works.coregrade.com -- 07:27:45.285 INFO [2268]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7lo1k07rptfvdf0c58ek03qi0eunha4k; _gat_gtag_UA_54829827_2=1 -- 07:27:45.285 INFO [2268]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 07:27:45.285 INFO [2268]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:27:45.296 INFO [2268]: COREGRADE is stopping... -- 07:27:45.296 DEBUG [2268]: Closing database connection -- 07:27:45.296 SQL [2268]: pgsql_close() -- 07:27:45.751 INFO [2268]: COREGRADE is starting... -- 07:27:45.751 INFO [2268]: Version from config: 1.0 -- 07:27:45.751 DEBUG [2268]: Connecting to database... -- 07:27:45.751 DEBUG [2268]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:27:45.751 SQL [2268]: pgsql_db_connect() -- 07:27:45.755 DEBUG [2268]: Database connection successful -- 07:27:45.755 INFO [2268]: _SERVER found -- 07:27:45.755 INFO [2268]: REMOTE_ADDR = 192.168.1.13 -- 07:27:45.755 INFO [2268]: SERVER_NAME = oameye.works.coregrade.com -- 07:27:45.755 INFO [2268]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7lo1k07rptfvdf0c58ek03qi0eunha4k; _gat_gtag_UA_54829827_2=1 -- 07:27:45.755 INFO [2268]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 07:27:45.755 INFO [2268]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:27:45.767 INFO [2268]: COREGRADE is stopping... -- 07:27:45.767 DEBUG [2268]: Closing database connection -- 07:27:45.767 SQL [2268]: pgsql_close() -- 07:27:45.774 INFO [31649]: COREGRADE is starting... -- 07:27:45.774 INFO [31649]: Version from config: 1.0 -- 07:27:45.774 DEBUG [31649]: Connecting to database... -- 07:27:45.774 DEBUG [31649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:27:45.774 SQL [31649]: pgsql_db_connect() -- 07:27:45.778 DEBUG [31649]: Database connection successful -- 07:27:45.778 INFO [31649]: _SERVER found -- 07:27:45.778 INFO [31649]: REMOTE_ADDR = 192.168.1.13 -- 07:27:45.778 INFO [31649]: SERVER_NAME = oameye.works.coregrade.com -- 07:27:45.778 INFO [31649]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7lo1k07rptfvdf0c58ek03qi0eunha4k; _gat_gtag_UA_54829827_2=1 -- 07:27:45.778 INFO [31649]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:27:45.778 INFO [31649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:27:45.790 INFO [31649]: COREGRADE is stopping... -- 07:27:45.790 DEBUG [31649]: Closing database connection -- 07:27:45.790 SQL [31649]: pgsql_close() -- 07:27:45.811 INFO [2268]: COREGRADE is starting... -- 07:27:45.811 INFO [2268]: Version from config: 1.0 -- 07:27:45.811 DEBUG [2268]: Connecting to database... -- 07:27:45.811 DEBUG [2268]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:27:45.811 SQL [2268]: pgsql_db_connect() -- 07:27:45.815 DEBUG [2268]: Database connection successful -- 07:27:45.815 INFO [2268]: _SERVER found -- 07:27:45.815 INFO [2268]: REMOTE_ADDR = 192.168.1.13 -- 07:27:45.815 INFO [2268]: SERVER_NAME = oameye.works.coregrade.com -- 07:27:45.815 INFO [2268]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7lo1k07rptfvdf0c58ek03qi0eunha4k; _gat_gtag_UA_54829827_2=1 -- 07:27:45.815 INFO [2268]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:27:45.815 INFO [2268]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:27:45.826 INFO [2268]: COREGRADE is stopping... -- 07:27:45.826 DEBUG [2268]: Closing database connection -- 07:27:45.826 SQL [2268]: pgsql_close() -- 07:30:05.385 INFO [6008]: COREGRADE is starting... -- 07:30:05.385 INFO [6008]: Version from config: 1.0 -- 07:30:05.385 DEBUG [6008]: Connecting to database... -- 07:30:05.385 DEBUG [6008]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:30:05.385 SQL [6008]: pgsql_db_connect() -- 07:30:05.388 INFO [31513]: COREGRADE is starting... -- 07:30:05.388 INFO [31513]: Version from config: 1.0 -- 07:30:05.388 DEBUG [31513]: Connecting to database... -- 07:30:05.388 DEBUG [31513]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:30:05.389 SQL [31513]: pgsql_db_connect() -- 07:30:05.392 DEBUG [31513]: Database connection successful -- 07:30:05.392 INFO [31513]: _SERVER found -- 07:30:05.392 INFO [31513]: REMOTE_ADDR = 192.168.1.13 -- 07:30:05.392 INFO [31513]: SERVER_NAME = oameye.works.coregrade.com -- 07:30:05.392 INFO [31513]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 07:30:05.392 INFO [31513]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 07:30:05.425 INFO [31513]: COREGRADE is stopping... -- 07:30:05.425 DEBUG [31513]: Closing database connection -- 07:30:05.425 SQL [31513]: pgsql_close() -- 07:30:05.389 DEBUG [6008]: Database connection successful -- 07:30:05.390 INFO [6008]: _SERVER found -- 07:30:05.390 INFO [6008]: REMOTE_ADDR = 192.168.1.13 -- 07:30:05.390 INFO [6008]: SERVER_NAME = oameye.works.coregrade.com -- 07:30:05.390 INFO [6008]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 07:30:05.390 INFO [6008]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 07:30:05.434 INFO [6008]: COREGRADE is stopping... -- 07:30:05.434 DEBUG [6008]: Closing database connection -- 07:30:05.434 SQL [6008]: pgsql_close() -- 07:30:05.511 INFO [31484]: COREGRADE is starting... -- 07:30:05.512 INFO [31484]: Version from config: 1.0 -- 07:30:05.512 DEBUG [31484]: Connecting to database... -- 07:30:05.512 DEBUG [31484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:30:05.512 SQL [31484]: pgsql_db_connect() -- 07:30:05.516 DEBUG [31484]: Database connection successful -- 07:30:05.516 INFO [31484]: _SERVER found -- 07:30:05.516 INFO [31484]: REMOTE_ADDR = 192.168.1.13 -- 07:30:05.516 INFO [31484]: SERVER_NAME = oameye.works.coregrade.com -- 07:30:05.516 INFO [31484]: QUERY_STRING = /solr/admin/info/system -- 07:30:05.516 INFO [31484]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 07:30:05.527 INFO [31484]: COREGRADE is stopping... -- 07:30:05.527 DEBUG [31484]: Closing database connection -- 07:30:05.527 SQL [31484]: pgsql_close() -- 07:30:06.242 INFO [6008]: COREGRADE is starting... -- 07:30:06.243 INFO [6008]: Version from config: 1.0 -- 07:30:06.243 DEBUG [6008]: Connecting to database... -- 07:30:06.243 DEBUG [6008]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:30:06.243 SQL [6008]: pgsql_db_connect() -- 07:30:06.247 DEBUG [6008]: Database connection successful -- 07:30:06.247 INFO [6008]: _SERVER found -- 07:30:06.247 INFO [6008]: REMOTE_ADDR = 192.168.1.13 -- 07:30:06.247 INFO [6008]: SERVER_NAME = oameye.works.coregrade.com -- 07:30:06.247 INFO [6008]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 07:30:06.247 INFO [6008]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 07:30:06.281 INFO [6008]: COREGRADE is stopping... -- 07:30:06.281 DEBUG [6008]: Closing database connection -- 07:30:06.281 SQL [6008]: pgsql_close() -- 07:31:17.695 INFO [31486]: COREGRADE is starting... -- 07:31:17.696 INFO [31486]: Version from config: 1.0 -- 07:31:17.696 DEBUG [31486]: Connecting to database... -- 07:31:17.696 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:31:17.696 SQL [31486]: pgsql_db_connect() -- 07:31:17.732 INFO [31486]: COREGRADE is starting... -- 07:31:17.733 INFO [31486]: Version from config: 1.0 -- 07:31:17.733 DEBUG [31486]: Connecting to database... -- 07:31:17.733 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:31:17.733 SQL [31486]: pgsql_db_connect() -- 07:31:17.736 DEBUG [31486]: Database connection successful -- 07:31:17.736 INFO [31486]: _SERVER found -- 07:31:17.736 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 07:31:17.736 INFO [31486]: SERVER_NAME = oameye.works.coregrade.com -- 07:31:17.736 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7lo1k07rptfvdf0c58ek03qi0eunha4k -- 07:31:17.736 INFO [31486]: QUERY_STRING = -- 07:31:17.736 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:31:17.737 INFO [31486]: SystemStatus()09-09-********~************ -- 07:31:17.737 INFO [31486]: long coregrade_api_main(CVars in, CVars &out) -- 07:31:17.737 INFO [31486]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 07:31:17.737 INFO [31486]: account calls -- 07:31:17.737 INFO [31486]: account_calls() -- 07:31:17.737 INFO [31486]: LoginCoreGradeAccount() -- 07:31:17.737 FLOG_MAX [31486]: REQ_STRING(username) -- 07:31:17.737 FLOG_MAX [31486]: REQ_STRING(password) -- 07:31:17.737 FLOG_MAX [31486]: REQ_STRING(sessionid) -- 07:31:17.737 FLOG_MAX [31486]: long load_db_record( CVars &rec, const char * query, ... ) -- 07:31:17.737 SQL [31486]: pgsql_query() -- 07:31:17.737 SQL [31486]: About to run query: -- 07:31:17.737 SQL [31486]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 07:31:17.740 SQL [31486]: Found rows: 1 -- 07:31:17.740 FLOG_MAX [31486]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 07:31:17.740 INFO [31486]: long SessionCheck(long uid, const char *sessionid, int create ) -- 07:31:17.740 SQL [31486]: pgsql_exec() -- 07:31:17.740 SQL [31486]: About to run query: -- 07:31:17.740 SQL [31486]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 07:31:17.742 SQL [31486]: PQcmdTuples: 1 -- 07:31:17.742 SQL [31486]: Affected rows: 1 -- 07:31:17.742 SQL [31486]: pgsql_exec() -- 07:31:17.742 SQL [31486]: About to run query: -- 07:31:17.742 SQL [31486]: DELETE FROM members_session WHERE member_id=5 -- 07:31:17.743 SQL [31486]: PQcmdTuples: 0 -- 07:31:17.743 SQL [31486]: Affected rows: 0 -- 07:31:17.743 SQL [31486]: pgsql_query() -- 07:31:17.743 SQL [31486]: About to run query: -- 07:31:17.743 SQL [31486]: SELECT * FROM members_session WHERE member_id=5 AND session<>'26F93A6AFB7655081F2BB49679C6248A' -- 07:31:17.743 SQL [31486]: Found rows: 0 -- 07:31:17.743 SQL [31486]: Found rows: 0 -- 07:31:17.743 FLOG_MAX [31486]: long load_db_record( CVars &rec, const char * query, ... ) -- 07:31:17.743 SQL [31486]: pgsql_query() -- 07:31:17.743 SQL [31486]: About to run query: -- 07:31:17.743 SQL [31486]: SELECT * FROM members_session WHERE member_id=5 AND session='26F93A6AFB7655081F2BB49679C6248A' -- 07:31:17.744 SQL [31486]: Found rows: 0 -- 07:31:17.744 SQL [31486]: Found rows: 0 -- 07:31:17.744 FLOG_MAX [31486]: insert_db_record() -- 07:31:17.744 SQL [31486]: pgsql_exec() -- 07:31:17.744 SQL [31486]: About to run query: -- 07:31:17.744 SQL [31486]: INSERT INTO members_session (member_id,session) VALUES ('5','26F93A6AFB7655081F2BB49679C6248A') -- 07:31:17.747 SQL [31486]: PQcmdTuples: 1 -- 07:31:17.747 SQL [31486]: Affected rows: 1 -- 07:31:17.747 FLOG_MAX [31486]: SELECT currval('members_session_id_seq') -- 07:31:17.747 SQL [31486]: pgsql_query() -- 07:31:17.747 SQL [31486]: About to run query: -- 07:31:17.747 SQL [31486]: SELECT currval('members_session_id_seq') -- 07:31:17.748 SQL [31486]: Found rows: 1 -- 07:31:17.748 INFO [31486]: CreateDefaultPage() -- 07:31:17.748 FLOG_MAX [31486]: long load_db_record( CVars &rec, const char * query, ... ) -- 07:31:17.748 SQL [31486]: pgsql_query() -- 07:31:17.748 SQL [31486]: About to run query: -- 07:31:17.748 SQL [31486]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 07:31:17.748 SQL [31486]: Found rows: 1 -- 07:31:17.748 FLOG_MAX [31486]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 07:31:17.748 SQL [31486]: pgsql_query() -- 07:31:17.748 SQL [31486]: About to run query: -- 07:31:17.748 SQL [31486]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 07:31:17.749 SQL [31486]: Found rows: 1 -- 07:31:17.749 INFO [31486]: /CreateDefaultPage() -- 07:31:17.749 INFO [31486]: /LoginCoreGradeAccount() -- 07:31:17.749 INFO [31486]: RET: added=2020-02-05 06:47:23.982154 -- 07:31:17.749 INFO [31486]: RET: email=ameye+11@chiefsoft.com -- 07:31:17.749 INFO [31486]: RET: firstname=Olu -- 07:31:17.749 INFO [31486]: RET: id=5 -- 07:31:17.749 INFO [31486]: RET: last_login= -- 07:31:17.749 INFO [31486]: RET: lastname=Amey -- 07:31:17.749 INFO [31486]: RET: loc=192.168.1.13 -- 07:31:17.749 INFO [31486]: RET: member_id=5 -- 07:31:17.749 INFO [31486]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 07:31:17.749 INFO [31486]: RET: phone= -- 07:31:17.749 INFO [31486]: RET: pid= -- 07:31:17.749 INFO [31486]: RET: result=YES I GET TO BACK END -- 07:31:17.749 INFO [31486]: RET: sessionid=26F93A6AFB7655081F2BB49679C6248A -- 07:31:17.749 INFO [31486]: RET: status=1 -- 07:31:17.749 INFO [31486]: RET: stauts=OK -- 07:31:17.749 INFO [31486]: RET: username=ameye+11@chiefsoft.com -- 07:31:17.749 INFO [31486]: RET: verified= -- 07:31:17.750 INFO [31486]: COREGRADE is stopping... -- 07:31:17.750 DEBUG [31486]: Closing database connection -- 07:31:17.750 SQL [31486]: pgsql_close() -- 07:31:17.700 DEBUG [31486]: Database connection successful -- 07:31:17.700 INFO [31486]: _SERVER found -- 07:31:17.700 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 07:31:17.700 INFO [31486]: SERVER_NAME = oameye.works.coregrade.com -- 07:31:17.700 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7lo1k07rptfvdf0c58ek03qi0eunha4k -- 07:31:17.700 INFO [31486]: QUERY_STRING = /auth -- 07:31:17.700 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:31:17.751 INFO [31486]: COREGRADE is stopping... -- 07:31:17.751 DEBUG [31486]: Closing database connection -- 07:31:17.751 SQL [31486]: pgsql_close() -- 07:31:17.784 INFO [31486]: COREGRADE is starting... -- 07:31:17.784 INFO [31486]: Version from config: 1.0 -- 07:31:17.784 DEBUG [31486]: Connecting to database... -- 07:31:17.785 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:31:17.785 SQL [31486]: pgsql_db_connect() -- 07:31:17.788 DEBUG [31486]: Database connection successful -- 07:31:17.788 INFO [31486]: _SERVER found -- 07:31:17.788 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 07:31:17.788 INFO [31486]: SERVER_NAME = oameye.works.coregrade.com -- 07:31:17.788 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7lo1k07rptfvdf0c58ek03qi0eunha4k -- 07:31:17.788 INFO [31486]: QUERY_STRING = /member/index -- 07:31:17.788 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:31:17.829 INFO [31486]: COREGRADE is stopping... -- 07:31:17.829 DEBUG [31486]: Closing database connection -- 07:31:17.829 SQL [31486]: pgsql_close() -- 07:31:18.100 INFO [31486]: COREGRADE is starting... -- 07:31:18.100 INFO [31486]: Version from config: 1.0 -- 07:31:18.100 DEBUG [31486]: Connecting to database... -- 07:31:18.100 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:31:18.100 SQL [31486]: pgsql_db_connect() -- 07:31:18.104 DEBUG [31486]: Database connection successful -- 07:31:18.104 INFO [31486]: _SERVER found -- 07:31:18.104 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 07:31:18.104 INFO [31486]: SERVER_NAME = oameye.works.coregrade.com -- 07:31:18.104 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7lo1k07rptfvdf0c58ek03qi0eunha4k -- 07:31:18.104 INFO [31486]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 07:31:18.104 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:31:18.115 INFO [31486]: COREGRADE is stopping... -- 07:31:18.115 DEBUG [31486]: Closing database connection -- 07:31:18.115 SQL [31486]: pgsql_close() -- 07:31:18.139 INFO [31486]: COREGRADE is starting... -- 07:31:18.139 INFO [31486]: Version from config: 1.0 -- 07:31:18.139 DEBUG [31486]: Connecting to database... -- 07:31:18.139 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:31:18.139 SQL [31486]: pgsql_db_connect() -- 07:31:18.143 DEBUG [31486]: Database connection successful -- 07:31:18.143 INFO [31486]: _SERVER found -- 07:31:18.143 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 07:31:18.143 INFO [31486]: SERVER_NAME = oameye.works.coregrade.com -- 07:31:18.143 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7lo1k07rptfvdf0c58ek03qi0eunha4k -- 07:31:18.143 INFO [31486]: QUERY_STRING = /app-assets/data/locales/en.json -- 07:31:18.143 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:31:18.154 INFO [31486]: COREGRADE is stopping... -- 07:31:18.154 DEBUG [31486]: Closing database connection -- 07:31:18.154 SQL [31486]: pgsql_close() -- 07:31:19.437 INFO [31486]: COREGRADE is starting... -- 07:31:19.438 INFO [31486]: Version from config: 1.0 -- 07:31:19.438 DEBUG [31486]: Connecting to database... -- 07:31:19.438 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:31:19.438 SQL [31486]: pgsql_db_connect() -- 07:31:19.442 DEBUG [31486]: Database connection successful -- 07:31:19.442 INFO [31486]: _SERVER found -- 07:31:19.442 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 07:31:19.442 INFO [31486]: SERVER_NAME = oameye.works.coregrade.com -- 07:31:19.442 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7lo1k07rptfvdf0c58ek03qi0eunha4k -- 07:31:19.442 INFO [31486]: QUERY_STRING = /member/page -- 07:31:19.442 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:31:19.484 INFO [31486]: COREGRADE is stopping... -- 07:31:19.484 DEBUG [31486]: Closing database connection -- 07:31:19.484 SQL [31486]: pgsql_close() -- 07:31:19.706 INFO [31486]: COREGRADE is starting... -- 07:31:19.706 INFO [31486]: Version from config: 1.0 -- 07:31:19.706 DEBUG [31486]: Connecting to database... -- 07:31:19.706 DEBUG [31486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:31:19.706 SQL [31486]: pgsql_db_connect() -- 07:31:19.710 DEBUG [31486]: Database connection successful -- 07:31:19.710 INFO [31486]: _SERVER found -- 07:31:19.710 INFO [31486]: REMOTE_ADDR = 192.168.1.13 -- 07:31:19.710 INFO [31486]: SERVER_NAME = oameye.works.coregrade.com -- 07:31:19.710 INFO [31486]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7lo1k07rptfvdf0c58ek03qi0eunha4k -- 07:31:19.710 INFO [31486]: QUERY_STRING = /app-assets/data/locales/en.json -- 07:31:19.710 INFO [31486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:31:19.721 INFO [31486]: COREGRADE is stopping... -- 07:31:19.721 DEBUG [31486]: Closing database connection -- 07:31:19.721 SQL [31486]: pgsql_close() -- 07:37:47.621 INFO [16464]: COREGRADE is starting... -- 07:37:47.622 INFO [16464]: Version from config: 1.0 -- 07:37:47.622 DEBUG [16464]: Connecting to database... -- 07:37:47.622 DEBUG [16464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:37:47.622 SQL [16464]: pgsql_db_connect() -- 07:37:47.626 DEBUG [16464]: Database connection successful -- 07:37:47.626 INFO [16464]: _SERVER found -- 07:37:47.626 INFO [16464]: REMOTE_ADDR = 192.168.1.13 -- 07:37:47.626 INFO [16464]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:37:47.626 INFO [16464]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586 -- 07:37:47.626 INFO [16464]: QUERY_STRING = /auth -- 07:37:47.626 INFO [16464]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:37:47.667 INFO [16464]: COREGRADE is stopping... -- 07:37:47.667 DEBUG [16464]: Closing database connection -- 07:37:47.667 SQL [16464]: pgsql_close() -- 07:37:48.106 INFO [16465]: COREGRADE is starting... -- 07:37:48.106 INFO [16465]: Version from config: 1.0 -- 07:37:48.106 DEBUG [16465]: Connecting to database... -- 07:37:48.106 DEBUG [16465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:37:48.106 SQL [16465]: pgsql_db_connect() -- 07:37:48.111 DEBUG [16465]: Database connection successful -- 07:37:48.111 INFO [16465]: _SERVER found -- 07:37:48.111 INFO [16465]: REMOTE_ADDR = 192.168.1.13 -- 07:37:48.111 INFO [16465]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:37:48.111 INFO [16465]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=mck07i3achaaqmjeidfqdrt8ej8mg2q4 -- 07:37:48.111 INFO [16465]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 07:37:48.111 INFO [16465]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:37:48.125 INFO [16465]: COREGRADE is stopping... -- 07:37:48.125 DEBUG [16465]: Closing database connection -- 07:37:48.125 SQL [16465]: pgsql_close() -- 07:37:48.273 INFO [16465]: COREGRADE is starting... -- 07:37:48.273 INFO [16465]: Version from config: 1.0 -- 07:37:48.273 DEBUG [16465]: Connecting to database... -- 07:37:48.273 DEBUG [16465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:37:48.273 SQL [16465]: pgsql_db_connect() -- 07:37:48.277 DEBUG [16465]: Database connection successful -- 07:37:48.277 INFO [16465]: _SERVER found -- 07:37:48.277 INFO [16465]: REMOTE_ADDR = 192.168.1.13 -- 07:37:48.277 INFO [16465]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:37:48.277 INFO [16465]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=mck07i3achaaqmjeidfqdrt8ej8mg2q4 -- 07:37:48.277 INFO [16465]: QUERY_STRING = /app-assets/data/locales/en.json -- 07:37:48.277 INFO [16465]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:37:48.289 INFO [16465]: COREGRADE is stopping... -- 07:37:48.290 DEBUG [16465]: Closing database connection -- 07:37:48.290 SQL [16465]: pgsql_close() -- 07:38:14.074 INFO [16468]: COREGRADE is starting... -- 07:38:14.074 INFO [16468]: Version from config: 1.0 -- 07:38:14.074 DEBUG [16468]: Connecting to database... -- 07:38:14.074 DEBUG [16468]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:38:14.074 SQL [16468]: pgsql_db_connect() -- 07:38:14.079 DEBUG [16468]: Database connection successful -- 07:38:14.079 INFO [16468]: _SERVER found -- 07:38:14.079 INFO [16468]: REMOTE_ADDR = 192.168.1.13 -- 07:38:14.079 INFO [16468]: SERVER_NAME = oameye.works.coregrade.com -- 07:38:14.079 INFO [16468]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 07:38:14.079 INFO [16468]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 07:38:14.093 INFO [16468]: COREGRADE is stopping... -- 07:38:14.093 DEBUG [16468]: Closing database connection -- 07:38:14.094 SQL [16468]: pgsql_close() -- 07:44:38.021 INFO [16467]: COREGRADE is starting... -- 07:44:38.021 INFO [16467]: Version from config: 1.0 -- 07:44:38.021 DEBUG [16467]: Connecting to database... -- 07:44:38.021 DEBUG [16467]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:44:38.021 SQL [16467]: pgsql_db_connect() -- 07:44:38.026 DEBUG [16467]: Database connection successful -- 07:44:38.026 INFO [16467]: _SERVER found -- 07:44:38.026 INFO [16467]: REMOTE_ADDR = 192.168.1.13 -- 07:44:38.026 INFO [16467]: SERVER_NAME = oameye.works.coregrade.com -- 07:44:38.026 INFO [16467]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=7lo1k07rptfvdf0c58ek03qi0eunha4k -- 07:44:38.026 INFO [16467]: QUERY_STRING = -- 07:44:38.026 INFO [16467]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:44:38.073 INFO [16467]: COREGRADE is stopping... -- 07:44:38.073 DEBUG [16467]: Closing database connection -- 07:44:38.073 SQL [16467]: pgsql_close() -- 07:44:38.305 INFO [16467]: COREGRADE is starting... -- 07:44:38.305 INFO [16467]: Version from config: 1.0 -- 07:44:38.305 DEBUG [16467]: Connecting to database... -- 07:44:38.305 DEBUG [16467]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:44:38.305 SQL [16467]: pgsql_db_connect() -- 07:44:38.313 INFO [16481]: COREGRADE is starting... -- 07:44:38.313 INFO [16481]: Version from config: 1.0 -- 07:44:38.313 DEBUG [16481]: Connecting to database... -- 07:44:38.313 DEBUG [16481]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:44:38.313 SQL [16481]: pgsql_db_connect() -- 07:44:38.309 DEBUG [16467]: Database connection successful -- 07:44:38.309 INFO [16467]: _SERVER found -- 07:44:38.309 INFO [16467]: REMOTE_ADDR = 192.168.1.13 -- 07:44:38.309 INFO [16467]: SERVER_NAME = oameye.works.coregrade.com -- 07:44:38.309 INFO [16467]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi -- 07:44:38.309 INFO [16467]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:44:38.309 INFO [16467]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:44:38.322 INFO [16467]: COREGRADE is stopping... -- 07:44:38.322 DEBUG [16467]: Closing database connection -- 07:44:38.322 SQL [16467]: pgsql_close() -- 07:44:38.318 DEBUG [16481]: Database connection successful -- 07:44:38.318 INFO [16481]: _SERVER found -- 07:44:38.318 INFO [16481]: REMOTE_ADDR = 192.168.1.13 -- 07:44:38.318 INFO [16481]: SERVER_NAME = oameye.works.coregrade.com -- 07:44:38.318 INFO [16481]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi -- 07:44:38.318 INFO [16481]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:44:38.318 INFO [16481]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:44:38.332 INFO [16481]: COREGRADE is stopping... -- 07:44:38.332 DEBUG [16481]: Closing database connection -- 07:44:38.332 SQL [16481]: pgsql_close() -- 07:44:38.395 INFO [16481]: COREGRADE is starting... -- 07:44:38.395 INFO [16481]: Version from config: 1.0 -- 07:44:38.395 DEBUG [16481]: Connecting to database... -- 07:44:38.395 DEBUG [16481]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:44:38.395 SQL [16481]: pgsql_db_connect() -- 07:44:38.399 DEBUG [16481]: Database connection successful -- 07:44:38.399 INFO [16481]: _SERVER found -- 07:44:38.399 INFO [16481]: REMOTE_ADDR = 192.168.1.13 -- 07:44:38.399 INFO [16481]: SERVER_NAME = oameye.works.coregrade.com -- 07:44:38.399 INFO [16481]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi -- 07:44:38.399 INFO [16481]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 07:44:38.399 INFO [16481]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:44:38.412 INFO [16481]: COREGRADE is stopping... -- 07:44:38.412 DEBUG [16481]: Closing database connection -- 07:44:38.412 SQL [16481]: pgsql_close() -- 07:44:43.650 INFO [16484]: COREGRADE is starting... -- 07:44:43.650 INFO [16484]: Version from config: 1.0 -- 07:44:43.650 DEBUG [16484]: Connecting to database... -- 07:44:43.650 DEBUG [16484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:44:43.650 SQL [16484]: pgsql_db_connect() -- 07:44:43.655 INFO [16485]: COREGRADE is starting... -- 07:44:43.656 INFO [16485]: Version from config: 1.0 -- 07:44:43.656 DEBUG [16485]: Connecting to database... -- 07:44:43.656 DEBUG [16485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:44:43.656 SQL [16485]: pgsql_db_connect() -- 07:44:43.655 DEBUG [16484]: Database connection successful -- 07:44:43.655 INFO [16484]: _SERVER found -- 07:44:43.655 INFO [16484]: REMOTE_ADDR = 192.168.1.13 -- 07:44:43.655 INFO [16484]: SERVER_NAME = oameye.works.coregrade.com -- 07:44:43.655 INFO [16484]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi; _gat_gtag_UA_54829827_2=1 -- 07:44:43.655 INFO [16484]: QUERY_STRING = /auth -- 07:44:43.655 INFO [16484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:44:43.694 INFO [16484]: COREGRADE is stopping... -- 07:44:43.694 DEBUG [16484]: Closing database connection -- 07:44:43.694 SQL [16484]: pgsql_close() -- 07:44:43.660 DEBUG [16485]: Database connection successful -- 07:44:43.660 INFO [16485]: _SERVER found -- 07:44:43.660 INFO [16485]: REMOTE_ADDR = 192.168.1.13 -- 07:44:43.660 INFO [16485]: SERVER_NAME = oameye.works.coregrade.com -- 07:44:43.660 INFO [16485]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi; _gat_gtag_UA_54829827_2=1 -- 07:44:43.660 INFO [16485]: QUERY_STRING = /welcome/viewLogin -- 07:44:43.660 INFO [16485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:44:43.697 INFO [16485]: COREGRADE is stopping... -- 07:44:43.697 DEBUG [16485]: Closing database connection -- 07:44:43.697 SQL [16485]: pgsql_close() -- 07:44:43.725 INFO [16485]: COREGRADE is starting... -- 07:44:43.725 INFO [16485]: Version from config: 1.0 -- 07:44:43.725 DEBUG [16485]: Connecting to database... -- 07:44:43.725 DEBUG [16485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:44:43.726 SQL [16485]: pgsql_db_connect() -- 07:44:43.729 DEBUG [16485]: Database connection successful -- 07:44:43.729 INFO [16485]: _SERVER found -- 07:44:43.729 INFO [16485]: REMOTE_ADDR = 192.168.1.13 -- 07:44:43.729 INFO [16485]: SERVER_NAME = oameye.works.coregrade.com -- 07:44:43.729 INFO [16485]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi; _gat_gtag_UA_54829827_2=1 -- 07:44:43.729 INFO [16485]: QUERY_STRING = /auth/index -- 07:44:43.729 INFO [16485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:44:43.764 INFO [16485]: COREGRADE is stopping... -- 07:44:43.764 DEBUG [16485]: Closing database connection -- 07:44:43.764 SQL [16485]: pgsql_close() -- 07:44:44.056 INFO [16484]: COREGRADE is starting... -- 07:44:44.057 INFO [16484]: Version from config: 1.0 -- 07:44:44.057 DEBUG [16484]: Connecting to database... -- 07:44:44.057 DEBUG [16484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:44:44.057 SQL [16484]: pgsql_db_connect() -- 07:44:44.061 DEBUG [16484]: Database connection successful -- 07:44:44.061 INFO [16484]: _SERVER found -- 07:44:44.061 INFO [16484]: REMOTE_ADDR = 192.168.1.13 -- 07:44:44.061 INFO [16484]: SERVER_NAME = oameye.works.coregrade.com -- 07:44:44.061 INFO [16484]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi; _gat_gtag_UA_54829827_2=1 -- 07:44:44.061 INFO [16484]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 07:44:44.061 INFO [16484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:44:44.073 INFO [16484]: COREGRADE is stopping... -- 07:44:44.073 DEBUG [16484]: Closing database connection -- 07:44:44.073 SQL [16484]: pgsql_close() -- 07:44:44.181 INFO [16484]: COREGRADE is starting... -- 07:44:44.181 INFO [16484]: Version from config: 1.0 -- 07:44:44.181 DEBUG [16484]: Connecting to database... -- 07:44:44.181 DEBUG [16484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:44:44.181 SQL [16484]: pgsql_db_connect() -- 07:44:44.185 DEBUG [16484]: Database connection successful -- 07:44:44.185 INFO [16484]: _SERVER found -- 07:44:44.185 INFO [16484]: REMOTE_ADDR = 192.168.1.13 -- 07:44:44.185 INFO [16484]: SERVER_NAME = oameye.works.coregrade.com -- 07:44:44.185 INFO [16484]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi; _gat_gtag_UA_54829827_2=1 -- 07:44:44.185 INFO [16484]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 07:44:44.185 INFO [16484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:44:44.197 INFO [16484]: COREGRADE is stopping... -- 07:44:44.197 DEBUG [16484]: Closing database connection -- 07:44:44.197 SQL [16484]: pgsql_close() -- 07:44:44.219 INFO [16464]: COREGRADE is starting... -- 07:44:44.220 INFO [16464]: Version from config: 1.0 -- 07:44:44.220 DEBUG [16464]: Connecting to database... -- 07:44:44.220 DEBUG [16464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:44:44.220 SQL [16464]: pgsql_db_connect() -- 07:44:44.223 DEBUG [16464]: Database connection successful -- 07:44:44.223 INFO [16464]: _SERVER found -- 07:44:44.223 INFO [16464]: REMOTE_ADDR = 192.168.1.13 -- 07:44:44.223 INFO [16464]: SERVER_NAME = oameye.works.coregrade.com -- 07:44:44.223 INFO [16464]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi; _gat_gtag_UA_54829827_2=1 -- 07:44:44.223 INFO [16464]: QUERY_STRING = /app-assets/data/locales/en.json -- 07:44:44.223 INFO [16464]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:44:44.236 INFO [16464]: COREGRADE is stopping... -- 07:44:44.236 DEBUG [16464]: Closing database connection -- 07:44:44.236 SQL [16464]: pgsql_close() -- 07:44:45.881 INFO [16464]: COREGRADE is starting... -- 07:44:45.881 INFO [16464]: Version from config: 1.0 -- 07:44:45.881 DEBUG [16464]: Connecting to database... -- 07:44:45.881 DEBUG [16464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:44:45.881 SQL [16464]: pgsql_db_connect() -- 07:44:45.920 INFO [16464]: COREGRADE is starting... -- 07:44:45.920 INFO [16464]: Version from config: 1.0 -- 07:44:45.920 DEBUG [16464]: Connecting to database... -- 07:44:45.920 DEBUG [16464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:44:45.920 SQL [16464]: pgsql_db_connect() -- 07:44:45.924 DEBUG [16464]: Database connection successful -- 07:44:45.924 INFO [16464]: _SERVER found -- 07:44:45.924 INFO [16464]: REMOTE_ADDR = 192.168.1.13 -- 07:44:45.924 INFO [16464]: SERVER_NAME = oameye.works.coregrade.com -- 07:44:45.924 INFO [16464]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi; _gat_gtag_UA_54829827_2=1 -- 07:44:45.924 INFO [16464]: QUERY_STRING = -- 07:44:45.924 INFO [16464]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:44:45.924 INFO [16464]: SystemStatus()09-09-********~************ -- 07:44:45.924 INFO [16464]: long coregrade_api_main(CVars in, CVars &out) -- 07:44:45.924 INFO [16464]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 07:44:45.924 INFO [16464]: account calls -- 07:44:45.924 INFO [16464]: account_calls() -- 07:44:45.924 INFO [16464]: LoginCoreGradeAccount() -- 07:44:45.924 FLOG_MAX [16464]: REQ_STRING(username) -- 07:44:45.924 FLOG_MAX [16464]: REQ_STRING(password) -- 07:44:45.924 FLOG_MAX [16464]: REQ_STRING(sessionid) -- 07:44:45.924 FLOG_MAX [16464]: long load_db_record( CVars &rec, const char * query, ... ) -- 07:44:45.924 SQL [16464]: pgsql_query() -- 07:44:45.924 SQL [16464]: About to run query: -- 07:44:45.924 SQL [16464]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 07:44:45.928 SQL [16464]: Found rows: 1 -- 07:44:45.928 FLOG_MAX [16464]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 07:44:45.928 INFO [16464]: long SessionCheck(long uid, const char *sessionid, int create ) -- 07:44:45.928 SQL [16464]: pgsql_exec() -- 07:44:45.928 SQL [16464]: About to run query: -- 07:44:45.928 SQL [16464]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 07:44:45.928 SQL [16464]: PQcmdTuples: 0 -- 07:44:45.928 SQL [16464]: Affected rows: 0 -- 07:44:45.928 SQL [16464]: pgsql_exec() -- 07:44:45.928 SQL [16464]: About to run query: -- 07:44:45.929 SQL [16464]: DELETE FROM members_session WHERE member_id=5 -- 07:44:45.929 SQL [16464]: PQcmdTuples: 1 -- 07:44:45.929 SQL [16464]: Affected rows: 1 -- 07:44:45.929 SQL [16464]: pgsql_query() -- 07:44:45.929 SQL [16464]: About to run query: -- 07:44:45.929 SQL [16464]: SELECT * FROM members_session WHERE member_id=5 AND session<>'21D08C522A7FBAA72802E738026858B8' -- 07:44:45.930 SQL [16464]: Found rows: 0 -- 07:44:45.930 SQL [16464]: Found rows: 0 -- 07:44:45.930 FLOG_MAX [16464]: long load_db_record( CVars &rec, const char * query, ... ) -- 07:44:45.930 SQL [16464]: pgsql_query() -- 07:44:45.930 SQL [16464]: About to run query: -- 07:44:45.930 SQL [16464]: SELECT * FROM members_session WHERE member_id=5 AND session='21D08C522A7FBAA72802E738026858B8' -- 07:44:45.931 SQL [16464]: Found rows: 0 -- 07:44:45.931 SQL [16464]: Found rows: 0 -- 07:44:45.931 FLOG_MAX [16464]: insert_db_record() -- 07:44:45.931 SQL [16464]: pgsql_exec() -- 07:44:45.931 SQL [16464]: About to run query: -- 07:44:45.931 SQL [16464]: INSERT INTO members_session (member_id,session) VALUES ('5','21D08C522A7FBAA72802E738026858B8') -- 07:44:45.932 SQL [16464]: PQcmdTuples: 1 -- 07:44:45.932 SQL [16464]: Affected rows: 1 -- 07:44:45.932 FLOG_MAX [16464]: SELECT currval('members_session_id_seq') -- 07:44:45.932 SQL [16464]: pgsql_query() -- 07:44:45.932 SQL [16464]: About to run query: -- 07:44:45.932 SQL [16464]: SELECT currval('members_session_id_seq') -- 07:44:45.932 SQL [16464]: Found rows: 1 -- 07:44:45.933 INFO [16464]: CreateDefaultPage() -- 07:44:45.933 FLOG_MAX [16464]: long load_db_record( CVars &rec, const char * query, ... ) -- 07:44:45.933 SQL [16464]: pgsql_query() -- 07:44:45.933 SQL [16464]: About to run query: -- 07:44:45.933 SQL [16464]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 07:44:45.933 SQL [16464]: Found rows: 1 -- 07:44:45.933 FLOG_MAX [16464]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 07:44:45.933 SQL [16464]: pgsql_query() -- 07:44:45.933 SQL [16464]: About to run query: -- 07:44:45.933 SQL [16464]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 07:44:45.933 SQL [16464]: Found rows: 1 -- 07:44:45.933 INFO [16464]: /CreateDefaultPage() -- 07:44:45.933 INFO [16464]: /LoginCoreGradeAccount() -- 07:44:45.933 INFO [16464]: RET: added=2020-02-05 06:47:23.982154 -- 07:44:45.933 INFO [16464]: RET: email=ameye+11@chiefsoft.com -- 07:44:45.933 INFO [16464]: RET: firstname=Olu -- 07:44:45.933 INFO [16464]: RET: id=5 -- 07:44:45.933 INFO [16464]: RET: last_login= -- 07:44:45.933 INFO [16464]: RET: lastname=Amey -- 07:44:45.933 INFO [16464]: RET: loc=192.168.1.13 -- 07:44:45.933 INFO [16464]: RET: member_id=5 -- 07:44:45.933 INFO [16464]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 07:44:45.933 INFO [16464]: RET: phone= -- 07:44:45.933 INFO [16464]: RET: pid= -- 07:44:45.933 INFO [16464]: RET: result=YES I GET TO BACK END -- 07:44:45.933 INFO [16464]: RET: sessionid=21D08C522A7FBAA72802E738026858B8 -- 07:44:45.933 INFO [16464]: RET: status=1 -- 07:44:45.933 INFO [16464]: RET: stauts=OK -- 07:44:45.933 INFO [16464]: RET: username=ameye+11@chiefsoft.com -- 07:44:45.933 INFO [16464]: RET: verified= -- 07:44:45.935 INFO [16464]: COREGRADE is stopping... -- 07:44:45.935 DEBUG [16464]: Closing database connection -- 07:44:45.935 SQL [16464]: pgsql_close() -- 07:44:45.885 DEBUG [16464]: Database connection successful -- 07:44:45.885 INFO [16464]: _SERVER found -- 07:44:45.885 INFO [16464]: REMOTE_ADDR = 192.168.1.13 -- 07:44:45.885 INFO [16464]: SERVER_NAME = oameye.works.coregrade.com -- 07:44:45.885 INFO [16464]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi; _gat_gtag_UA_54829827_2=1 -- 07:44:45.885 INFO [16464]: QUERY_STRING = /auth -- 07:44:45.885 INFO [16464]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:44:45.935 INFO [16464]: COREGRADE is stopping... -- 07:44:45.935 DEBUG [16464]: Closing database connection -- 07:44:45.935 SQL [16464]: pgsql_close() -- 07:44:45.960 INFO [16464]: COREGRADE is starting... -- 07:44:45.961 INFO [16464]: Version from config: 1.0 -- 07:44:45.961 DEBUG [16464]: Connecting to database... -- 07:44:45.961 DEBUG [16464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:44:45.961 SQL [16464]: pgsql_db_connect() -- 07:44:45.964 DEBUG [16464]: Database connection successful -- 07:44:45.964 INFO [16464]: _SERVER found -- 07:44:45.964 INFO [16464]: REMOTE_ADDR = 192.168.1.13 -- 07:44:45.964 INFO [16464]: SERVER_NAME = oameye.works.coregrade.com -- 07:44:45.964 INFO [16464]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi; _gat_gtag_UA_54829827_2=1 -- 07:44:45.964 INFO [16464]: QUERY_STRING = /member/index -- 07:44:45.964 INFO [16464]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:44:46.004 INFO [16464]: COREGRADE is stopping... -- 07:44:46.004 DEBUG [16464]: Closing database connection -- 07:44:46.004 SQL [16464]: pgsql_close() -- 07:44:46.533 INFO [16484]: COREGRADE is starting... -- 07:44:46.533 INFO [16464]: COREGRADE is starting... -- 07:44:46.533 INFO [16464]: Version from config: 1.0 -- 07:44:46.533 DEBUG [16464]: Connecting to database... -- 07:44:46.533 INFO [16484]: Version from config: 1.0 -- 07:44:46.533 DEBUG [16484]: Connecting to database... -- 07:44:46.533 DEBUG [16464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:44:46.533 DEBUG [16484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:44:46.533 SQL [16464]: pgsql_db_connect() -- 07:44:46.533 SQL [16484]: pgsql_db_connect() -- 07:44:46.537 DEBUG [16464]: Database connection successful -- 07:44:46.537 INFO [16464]: _SERVER found -- 07:44:46.537 INFO [16464]: REMOTE_ADDR = 192.168.1.13 -- 07:44:46.537 INFO [16464]: SERVER_NAME = oameye.works.coregrade.com -- 07:44:46.537 INFO [16464]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi; _gat_gtag_UA_54829827_2=1 -- 07:44:46.537 INFO [16464]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 07:44:46.537 INFO [16464]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:44:46.548 INFO [16464]: COREGRADE is stopping... -- 07:44:46.548 DEBUG [16464]: Closing database connection -- 07:44:46.548 SQL [16464]: pgsql_close() -- 07:44:46.537 DEBUG [16484]: Database connection successful -- 07:44:46.537 INFO [16484]: _SERVER found -- 07:44:46.537 INFO [16484]: REMOTE_ADDR = 192.168.1.13 -- 07:44:46.537 INFO [16484]: SERVER_NAME = oameye.works.coregrade.com -- 07:44:46.537 INFO [16484]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi; _gat_gtag_UA_54829827_2=1 -- 07:44:46.537 INFO [16484]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 07:44:46.537 INFO [16484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:44:46.550 INFO [16484]: COREGRADE is stopping... -- 07:44:46.550 DEBUG [16484]: Closing database connection -- 07:44:46.550 SQL [16484]: pgsql_close() -- 07:44:46.780 INFO [16484]: COREGRADE is starting... -- 07:44:46.780 INFO [16484]: Version from config: 1.0 -- 07:44:46.780 DEBUG [16484]: Connecting to database... -- 07:44:46.780 DEBUG [16484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:44:46.780 SQL [16484]: pgsql_db_connect() -- 07:44:46.784 DEBUG [16484]: Database connection successful -- 07:44:46.784 INFO [16484]: _SERVER found -- 07:44:46.784 INFO [16484]: REMOTE_ADDR = 192.168.1.13 -- 07:44:46.784 INFO [16484]: SERVER_NAME = oameye.works.coregrade.com -- 07:44:46.784 INFO [16484]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi; _gat_gtag_UA_54829827_2=1 -- 07:44:46.784 INFO [16484]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 07:44:46.784 INFO [16484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:44:46.797 INFO [16484]: COREGRADE is stopping... -- 07:44:46.797 DEBUG [16484]: Closing database connection -- 07:44:46.797 SQL [16484]: pgsql_close() -- 07:44:46.827 INFO [16484]: COREGRADE is starting... -- 07:44:46.828 INFO [16484]: Version from config: 1.0 -- 07:44:46.828 DEBUG [16484]: Connecting to database... -- 07:44:46.828 DEBUG [16484]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:44:46.828 SQL [16484]: pgsql_db_connect() -- 07:44:46.831 DEBUG [16484]: Database connection successful -- 07:44:46.831 INFO [16484]: _SERVER found -- 07:44:46.831 INFO [16484]: REMOTE_ADDR = 192.168.1.13 -- 07:44:46.831 INFO [16484]: SERVER_NAME = oameye.works.coregrade.com -- 07:44:46.831 INFO [16484]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi; _gat_gtag_UA_54829827_2=1 -- 07:44:46.831 INFO [16484]: QUERY_STRING = /app-assets/data/locales/en.json -- 07:44:46.831 INFO [16484]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:44:46.844 INFO [16484]: COREGRADE is stopping... -- 07:44:46.844 DEBUG [16484]: Closing database connection -- 07:44:46.844 SQL [16484]: pgsql_close() -- 07:47:46.401 INFO [16466]: COREGRADE is starting... -- 07:47:46.401 INFO [16466]: Version from config: 1.0 -- 07:47:46.401 DEBUG [16466]: Connecting to database... -- 07:47:46.401 DEBUG [16466]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:47:46.401 SQL [16466]: pgsql_db_connect() -- 07:47:46.405 DEBUG [16466]: Database connection successful -- 07:47:46.405 INFO [16466]: _SERVER found -- 07:47:46.405 INFO [16466]: REMOTE_ADDR = 192.168.1.13 -- 07:47:46.405 INFO [16466]: SERVER_NAME = oameye.works.coregrade.com -- 07:47:46.405 INFO [16466]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi -- 07:47:46.405 INFO [16466]: QUERY_STRING = /member/index -- 07:47:46.406 INFO [16466]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:47:46.454 INFO [16466]: COREGRADE is stopping... -- 07:47:46.454 DEBUG [16466]: Closing database connection -- 07:47:46.454 SQL [16466]: pgsql_close() -- 07:47:46.804 INFO [16466]: COREGRADE is starting... -- 07:47:46.804 INFO [16466]: Version from config: 1.0 -- 07:47:46.804 DEBUG [16466]: Connecting to database... -- 07:47:46.804 DEBUG [16466]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:47:46.804 SQL [16466]: pgsql_db_connect() -- 07:47:46.812 INFO [16465]: COREGRADE is starting... -- 07:47:46.813 INFO [16465]: Version from config: 1.0 -- 07:47:46.813 DEBUG [16465]: Connecting to database... -- 07:47:46.813 DEBUG [16465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:47:46.813 SQL [16465]: pgsql_db_connect() -- 07:47:46.808 DEBUG [16466]: Database connection successful -- 07:47:46.808 INFO [16466]: _SERVER found -- 07:47:46.808 INFO [16466]: REMOTE_ADDR = 192.168.1.13 -- 07:47:46.808 INFO [16466]: SERVER_NAME = oameye.works.coregrade.com -- 07:47:46.808 INFO [16466]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi -- 07:47:46.808 INFO [16466]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 07:47:46.808 INFO [16466]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:47:46.819 INFO [16466]: COREGRADE is stopping... -- 07:47:46.819 DEBUG [16466]: Closing database connection -- 07:47:46.819 SQL [16466]: pgsql_close() -- 07:47:46.817 DEBUG [16465]: Database connection successful -- 07:47:46.817 INFO [16465]: _SERVER found -- 07:47:46.817 INFO [16465]: REMOTE_ADDR = 192.168.1.13 -- 07:47:46.817 INFO [16465]: SERVER_NAME = oameye.works.coregrade.com -- 07:47:46.817 INFO [16465]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi -- 07:47:46.817 INFO [16465]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 07:47:46.817 INFO [16465]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:47:46.830 INFO [16465]: COREGRADE is stopping... -- 07:47:46.830 DEBUG [16465]: Closing database connection -- 07:47:46.830 SQL [16465]: pgsql_close() -- 07:47:46.839 INFO [16465]: COREGRADE is starting... -- 07:47:46.840 INFO [16465]: Version from config: 1.0 -- 07:47:46.840 DEBUG [16465]: Connecting to database... -- 07:47:46.840 DEBUG [16465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:47:46.840 SQL [16465]: pgsql_db_connect() -- 07:47:46.843 DEBUG [16465]: Database connection successful -- 07:47:46.843 INFO [16465]: _SERVER found -- 07:47:46.843 INFO [16465]: REMOTE_ADDR = 192.168.1.13 -- 07:47:46.843 INFO [16465]: SERVER_NAME = oameye.works.coregrade.com -- 07:47:46.843 INFO [16465]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi -- 07:47:46.843 INFO [16465]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 07:47:46.843 INFO [16465]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:47:46.856 INFO [16465]: COREGRADE is stopping... -- 07:47:46.856 DEBUG [16465]: Closing database connection -- 07:47:46.856 SQL [16465]: pgsql_close() -- 07:47:46.994 INFO [16465]: COREGRADE is starting... -- 07:47:46.994 INFO [16465]: Version from config: 1.0 -- 07:47:46.994 DEBUG [16465]: Connecting to database... -- 07:47:46.994 DEBUG [16465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:47:46.994 SQL [16465]: pgsql_db_connect() -- 07:47:46.998 DEBUG [16465]: Database connection successful -- 07:47:46.998 INFO [16465]: _SERVER found -- 07:47:46.998 INFO [16465]: REMOTE_ADDR = 192.168.1.13 -- 07:47:46.998 INFO [16465]: SERVER_NAME = oameye.works.coregrade.com -- 07:47:46.998 INFO [16465]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi -- 07:47:46.998 INFO [16465]: QUERY_STRING = /app-assets/data/locales/en.json -- 07:47:46.998 INFO [16465]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:47:47.011 INFO [16465]: COREGRADE is stopping... -- 07:47:47.011 DEBUG [16465]: Closing database connection -- 07:47:47.011 SQL [16465]: pgsql_close() -- 07:47:47.789 INFO [16465]: COREGRADE is starting... -- 07:47:47.789 INFO [16465]: Version from config: 1.0 -- 07:47:47.789 DEBUG [16465]: Connecting to database... -- 07:47:47.789 DEBUG [16465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:47:47.789 SQL [16465]: pgsql_db_connect() -- 07:47:47.793 DEBUG [16465]: Database connection successful -- 07:47:47.793 INFO [16465]: _SERVER found -- 07:47:47.793 INFO [16465]: REMOTE_ADDR = 192.168.1.13 -- 07:47:47.793 INFO [16465]: SERVER_NAME = oameye.works.coregrade.com -- 07:47:47.793 INFO [16465]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi -- 07:47:47.793 INFO [16465]: QUERY_STRING = /member/configure -- 07:47:47.793 INFO [16465]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:47:47.839 INFO [16465]: COREGRADE is stopping... -- 07:47:47.839 DEBUG [16465]: Closing database connection -- 07:47:47.839 SQL [16465]: pgsql_close() -- 07:47:47.975 INFO [16465]: COREGRADE is starting... -- 07:47:47.975 INFO [16465]: Version from config: 1.0 -- 07:47:47.975 DEBUG [16465]: Connecting to database... -- 07:47:47.976 DEBUG [16465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:47:47.976 SQL [16465]: pgsql_db_connect() -- 07:47:47.979 DEBUG [16465]: Database connection successful -- 07:47:47.979 INFO [16465]: _SERVER found -- 07:47:47.979 INFO [16465]: REMOTE_ADDR = 192.168.1.13 -- 07:47:47.979 INFO [16465]: SERVER_NAME = oameye.works.coregrade.com -- 07:47:47.979 INFO [16465]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi -- 07:47:47.979 INFO [16465]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 07:47:47.979 INFO [16465]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:47:47.991 INFO [16465]: COREGRADE is stopping... -- 07:47:47.991 DEBUG [16465]: Closing database connection -- 07:47:47.991 SQL [16465]: pgsql_close() -- 07:47:48.243 INFO [16465]: COREGRADE is starting... -- 07:47:48.243 INFO [16465]: Version from config: 1.0 -- 07:47:48.243 DEBUG [16465]: Connecting to database... -- 07:47:48.243 DEBUG [16465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:47:48.243 SQL [16465]: pgsql_db_connect() -- 07:47:48.247 DEBUG [16465]: Database connection successful -- 07:47:48.247 INFO [16465]: _SERVER found -- 07:47:48.247 INFO [16465]: REMOTE_ADDR = 192.168.1.13 -- 07:47:48.247 INFO [16465]: SERVER_NAME = oameye.works.coregrade.com -- 07:47:48.247 INFO [16465]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi -- 07:47:48.247 INFO [16465]: QUERY_STRING = /app-assets/data/locales/en.json -- 07:47:48.247 INFO [16465]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:47:48.258 INFO [16465]: COREGRADE is stopping... -- 07:47:48.259 DEBUG [16465]: Closing database connection -- 07:47:48.259 SQL [16465]: pgsql_close() -- 07:47:48.399 INFO [16466]: COREGRADE is starting... -- 07:47:48.399 INFO [16465]: COREGRADE is starting... -- 07:47:48.399 INFO [16465]: Version from config: 1.0 -- 07:47:48.399 DEBUG [16465]: Connecting to database... -- 07:47:48.399 INFO [16466]: Version from config: 1.0 -- 07:47:48.399 DEBUG [16466]: Connecting to database... -- 07:47:48.399 DEBUG [16465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:47:48.399 DEBUG [16466]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:47:48.399 SQL [16465]: pgsql_db_connect() -- 07:47:48.399 SQL [16466]: pgsql_db_connect() -- 07:47:48.403 DEBUG [16466]: Database connection successful -- 07:47:48.403 INFO [16466]: _SERVER found -- 07:47:48.403 INFO [16466]: REMOTE_ADDR = 192.168.1.13 -- 07:47:48.403 INFO [16466]: SERVER_NAME = oameye.works.coregrade.com -- 07:47:48.403 INFO [16466]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi -- 07:47:48.403 INFO [16466]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 07:47:48.403 INFO [16466]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:47:48.414 INFO [16466]: COREGRADE is stopping... -- 07:47:48.403 DEBUG [16465]: Database connection successful -- 07:47:48.403 INFO [16465]: _SERVER found -- 07:47:48.403 INFO [16465]: REMOTE_ADDR = 192.168.1.13 -- 07:47:48.403 INFO [16465]: SERVER_NAME = oameye.works.coregrade.com -- 07:47:48.403 INFO [16465]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi -- 07:47:48.403 INFO [16465]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 07:47:48.403 INFO [16465]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:47:48.414 INFO [16465]: COREGRADE is stopping... -- 07:47:48.414 DEBUG [16466]: Closing database connection -- 07:47:48.414 DEBUG [16465]: Closing database connection -- 07:47:48.414 SQL [16466]: pgsql_close() -- 07:47:48.414 SQL [16465]: pgsql_close() -- 07:47:53.844 INFO [16468]: COREGRADE is starting... -- 07:47:53.845 INFO [16468]: Version from config: 1.0 -- 07:47:53.845 DEBUG [16468]: Connecting to database... -- 07:47:53.845 DEBUG [16468]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:47:53.845 SQL [16468]: pgsql_db_connect() -- 07:47:53.849 DEBUG [16468]: Database connection successful -- 07:47:53.849 INFO [16468]: _SERVER found -- 07:47:53.849 INFO [16468]: REMOTE_ADDR = 192.168.1.13 -- 07:47:53.849 INFO [16468]: SERVER_NAME = oameye.works.coregrade.com -- 07:47:53.849 INFO [16468]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi -- 07:47:53.849 INFO [16468]: QUERY_STRING = /member -- 07:47:53.849 INFO [16468]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:47:53.894 INFO [16468]: COREGRADE is stopping... -- 07:47:53.894 DEBUG [16468]: Closing database connection -- 07:47:53.894 SQL [16468]: pgsql_close() -- 07:47:54.149 INFO [16468]: COREGRADE is starting... -- 07:47:54.150 INFO [16468]: Version from config: 1.0 -- 07:47:54.150 DEBUG [16468]: Connecting to database... -- 07:47:54.150 DEBUG [16468]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:47:54.150 SQL [16468]: pgsql_db_connect() -- 07:47:54.154 DEBUG [16468]: Database connection successful -- 07:47:54.154 INFO [16468]: _SERVER found -- 07:47:54.154 INFO [16468]: REMOTE_ADDR = 192.168.1.13 -- 07:47:54.154 INFO [16468]: SERVER_NAME = oameye.works.coregrade.com -- 07:47:54.154 INFO [16468]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi -- 07:47:54.154 INFO [16468]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 07:47:54.154 INFO [16468]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:47:54.165 INFO [16468]: COREGRADE is stopping... -- 07:47:54.165 DEBUG [16468]: Closing database connection -- 07:47:54.165 SQL [16468]: pgsql_close() -- 07:47:54.171 INFO [16467]: COREGRADE is starting... -- 07:47:54.171 INFO [16467]: Version from config: 1.0 -- 07:47:54.171 DEBUG [16467]: Connecting to database... -- 07:47:54.172 DEBUG [16467]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:47:54.172 SQL [16467]: pgsql_db_connect() -- 07:47:54.175 DEBUG [16467]: Database connection successful -- 07:47:54.175 INFO [16467]: _SERVER found -- 07:47:54.175 INFO [16467]: REMOTE_ADDR = 192.168.1.13 -- 07:47:54.175 INFO [16467]: SERVER_NAME = oameye.works.coregrade.com -- 07:47:54.175 INFO [16467]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi -- 07:47:54.175 INFO [16467]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 07:47:54.175 INFO [16467]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:47:54.187 INFO [16467]: COREGRADE is stopping... -- 07:47:54.187 DEBUG [16467]: Closing database connection -- 07:47:54.187 SQL [16467]: pgsql_close() -- 07:47:54.192 INFO [16468]: COREGRADE is starting... -- 07:47:54.192 INFO [16468]: Version from config: 1.0 -- 07:47:54.192 DEBUG [16468]: Connecting to database... -- 07:47:54.192 DEBUG [16468]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:47:54.192 SQL [16468]: pgsql_db_connect() -- 07:47:54.196 DEBUG [16468]: Database connection successful -- 07:47:54.196 INFO [16468]: _SERVER found -- 07:47:54.196 INFO [16468]: REMOTE_ADDR = 192.168.1.13 -- 07:47:54.196 INFO [16468]: SERVER_NAME = oameye.works.coregrade.com -- 07:47:54.196 INFO [16468]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi -- 07:47:54.196 INFO [16468]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 07:47:54.196 INFO [16468]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:47:54.207 INFO [16468]: COREGRADE is stopping... -- 07:47:54.207 DEBUG [16468]: Closing database connection -- 07:47:54.207 SQL [16468]: pgsql_close() -- 07:47:54.304 INFO [16468]: COREGRADE is starting... -- 07:47:54.304 INFO [16468]: Version from config: 1.0 -- 07:47:54.304 DEBUG [16468]: Connecting to database... -- 07:47:54.304 DEBUG [16468]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:47:54.304 SQL [16468]: pgsql_db_connect() -- 07:47:54.308 DEBUG [16468]: Database connection successful -- 07:47:54.308 INFO [16468]: _SERVER found -- 07:47:54.308 INFO [16468]: REMOTE_ADDR = 192.168.1.13 -- 07:47:54.308 INFO [16468]: SERVER_NAME = oameye.works.coregrade.com -- 07:47:54.308 INFO [16468]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi -- 07:47:54.308 INFO [16468]: QUERY_STRING = /app-assets/data/locales/en.json -- 07:47:54.308 INFO [16468]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:47:54.319 INFO [16468]: COREGRADE is stopping... -- 07:47:54.319 DEBUG [16468]: Closing database connection -- 07:47:54.319 SQL [16468]: pgsql_close() -- 07:47:55.811 INFO [16468]: COREGRADE is starting... -- 07:47:55.812 INFO [16468]: Version from config: 1.0 -- 07:47:55.812 DEBUG [16468]: Connecting to database... -- 07:47:55.812 DEBUG [16468]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:47:55.812 SQL [16468]: pgsql_db_connect() -- 07:47:55.816 DEBUG [16468]: Database connection successful -- 07:47:55.816 INFO [16468]: _SERVER found -- 07:47:55.816 INFO [16468]: REMOTE_ADDR = 192.168.1.13 -- 07:47:55.816 INFO [16468]: SERVER_NAME = oameye.works.coregrade.com -- 07:47:55.816 INFO [16468]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi -- 07:47:55.816 INFO [16468]: QUERY_STRING = /member/page -- 07:47:55.816 INFO [16468]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:47:55.857 INFO [16468]: COREGRADE is stopping... -- 07:47:55.858 DEBUG [16468]: Closing database connection -- 07:47:55.858 SQL [16468]: pgsql_close() -- 07:47:55.991 INFO [16468]: COREGRADE is starting... -- 07:47:55.991 INFO [16468]: Version from config: 1.0 -- 07:47:55.991 DEBUG [16468]: Connecting to database... -- 07:47:55.991 DEBUG [16468]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:47:55.991 SQL [16468]: pgsql_db_connect() -- 07:47:55.995 DEBUG [16468]: Database connection successful -- 07:47:55.995 INFO [16468]: _SERVER found -- 07:47:55.995 INFO [16468]: REMOTE_ADDR = 192.168.1.13 -- 07:47:55.995 INFO [16468]: SERVER_NAME = oameye.works.coregrade.com -- 07:47:55.995 INFO [16468]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi -- 07:47:55.995 INFO [16468]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 07:47:55.995 INFO [16468]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:47:56.006 INFO [16468]: COREGRADE is stopping... -- 07:47:56.006 DEBUG [16468]: Closing database connection -- 07:47:56.006 SQL [16468]: pgsql_close() -- 07:47:56.159 INFO [16468]: COREGRADE is starting... -- 07:47:56.159 INFO [16468]: Version from config: 1.0 -- 07:47:56.159 DEBUG [16468]: Connecting to database... -- 07:47:56.159 DEBUG [16468]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:47:56.159 SQL [16468]: pgsql_db_connect() -- 07:47:56.170 INFO [16467]: COREGRADE is starting... -- 07:47:56.171 INFO [16467]: Version from config: 1.0 -- 07:47:56.171 DEBUG [16467]: Connecting to database... -- 07:47:56.171 DEBUG [16467]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:47:56.171 SQL [16467]: pgsql_db_connect() -- 07:47:56.163 DEBUG [16468]: Database connection successful -- 07:47:56.163 INFO [16468]: _SERVER found -- 07:47:56.163 INFO [16468]: REMOTE_ADDR = 192.168.1.13 -- 07:47:56.163 INFO [16468]: SERVER_NAME = oameye.works.coregrade.com -- 07:47:56.163 INFO [16468]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi -- 07:47:56.163 INFO [16468]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 07:47:56.163 INFO [16468]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:47:56.174 INFO [16468]: COREGRADE is stopping... -- 07:47:56.174 DEBUG [16468]: Closing database connection -- 07:47:56.174 SQL [16468]: pgsql_close() -- 07:47:56.174 DEBUG [16467]: Database connection successful -- 07:47:56.174 INFO [16467]: _SERVER found -- 07:47:56.174 INFO [16467]: REMOTE_ADDR = 192.168.1.13 -- 07:47:56.174 INFO [16467]: SERVER_NAME = oameye.works.coregrade.com -- 07:47:56.174 INFO [16467]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi -- 07:47:56.175 INFO [16467]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 07:47:56.175 INFO [16467]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:47:56.186 INFO [16467]: COREGRADE is stopping... -- 07:47:56.186 DEBUG [16467]: Closing database connection -- 07:47:56.186 SQL [16467]: pgsql_close() -- 07:47:56.296 INFO [16467]: COREGRADE is starting... -- 07:47:56.296 INFO [16467]: Version from config: 1.0 -- 07:47:56.296 DEBUG [16467]: Connecting to database... -- 07:47:56.296 DEBUG [16467]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:47:56.296 SQL [16467]: pgsql_db_connect() -- 07:47:56.300 DEBUG [16467]: Database connection successful -- 07:47:56.300 INFO [16467]: _SERVER found -- 07:47:56.300 INFO [16467]: REMOTE_ADDR = 192.168.1.13 -- 07:47:56.300 INFO [16467]: SERVER_NAME = oameye.works.coregrade.com -- 07:47:56.300 INFO [16467]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi -- 07:47:56.300 INFO [16467]: QUERY_STRING = /app-assets/data/locales/en.json -- 07:47:56.300 INFO [16467]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:47:56.311 INFO [16467]: COREGRADE is stopping... -- 07:47:56.311 DEBUG [16467]: Closing database connection -- 07:47:56.312 SQL [16467]: pgsql_close() -- 07:49:33.979 INFO [16532]: COREGRADE is starting... -- 07:49:33.980 INFO [16532]: Version from config: 1.0 -- 07:49:33.980 DEBUG [16532]: Connecting to database... -- 07:49:33.980 DEBUG [16532]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:33.980 SQL [16532]: pgsql_db_connect() -- 07:49:33.984 DEBUG [16532]: Database connection successful -- 07:49:33.984 INFO [16532]: _SERVER found -- 07:49:33.984 INFO [16532]: REMOTE_ADDR = 192.168.1.13 -- 07:49:33.984 INFO [16532]: SERVER_NAME = oameye.works.coregrade.com -- 07:49:33.984 INFO [16532]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi -- 07:49:33.984 INFO [16532]: QUERY_STRING = /member/page -- 07:49:33.984 INFO [16532]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:49:34.033 INFO [16532]: COREGRADE is stopping... -- 07:49:34.033 DEBUG [16532]: Closing database connection -- 07:49:34.033 SQL [16532]: pgsql_close() -- 07:49:34.159 INFO [16532]: COREGRADE is starting... -- 07:49:34.159 INFO [16532]: Version from config: 1.0 -- 07:49:34.159 DEBUG [16532]: Connecting to database... -- 07:49:34.159 DEBUG [16532]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:34.159 SQL [16532]: pgsql_db_connect() -- 07:49:34.163 DEBUG [16532]: Database connection successful -- 07:49:34.163 INFO [16532]: _SERVER found -- 07:49:34.163 INFO [16532]: REMOTE_ADDR = 192.168.1.13 -- 07:49:34.163 INFO [16532]: SERVER_NAME = oameye.works.coregrade.com -- 07:49:34.163 INFO [16532]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi -- 07:49:34.163 INFO [16532]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 07:49:34.163 INFO [16532]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:49:34.175 INFO [16532]: COREGRADE is stopping... -- 07:49:34.175 DEBUG [16532]: Closing database connection -- 07:49:34.175 SQL [16532]: pgsql_close() -- 07:49:34.326 INFO [16532]: COREGRADE is starting... -- 07:49:34.327 INFO [16532]: Version from config: 1.0 -- 07:49:34.327 DEBUG [16532]: Connecting to database... -- 07:49:34.327 DEBUG [16532]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:34.327 SQL [16532]: pgsql_db_connect() -- 07:49:34.339 INFO [16481]: COREGRADE is starting... -- 07:49:34.339 INFO [16481]: Version from config: 1.0 -- 07:49:34.339 DEBUG [16481]: Connecting to database... -- 07:49:34.339 DEBUG [16481]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:34.339 SQL [16481]: pgsql_db_connect() -- 07:49:34.331 DEBUG [16532]: Database connection successful -- 07:49:34.331 INFO [16532]: _SERVER found -- 07:49:34.331 INFO [16532]: REMOTE_ADDR = 192.168.1.13 -- 07:49:34.331 INFO [16532]: SERVER_NAME = oameye.works.coregrade.com -- 07:49:34.331 INFO [16532]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi -- 07:49:34.331 INFO [16532]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 07:49:34.331 INFO [16532]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:49:34.343 INFO [16532]: COREGRADE is stopping... -- 07:49:34.343 DEBUG [16532]: Closing database connection -- 07:49:34.343 SQL [16532]: pgsql_close() -- 07:49:34.343 DEBUG [16481]: Database connection successful -- 07:49:34.343 INFO [16481]: _SERVER found -- 07:49:34.343 INFO [16481]: REMOTE_ADDR = 192.168.1.13 -- 07:49:34.343 INFO [16481]: SERVER_NAME = oameye.works.coregrade.com -- 07:49:34.343 INFO [16481]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi -- 07:49:34.343 INFO [16481]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 07:49:34.343 INFO [16481]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:49:34.356 INFO [16481]: COREGRADE is stopping... -- 07:49:34.356 DEBUG [16481]: Closing database connection -- 07:49:34.356 SQL [16481]: pgsql_close() -- 07:49:34.405 INFO [16481]: COREGRADE is starting... -- 07:49:34.405 INFO [16481]: Version from config: 1.0 -- 07:49:34.405 DEBUG [16481]: Connecting to database... -- 07:49:34.405 DEBUG [16481]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:34.405 SQL [16481]: pgsql_db_connect() -- 07:49:34.409 DEBUG [16481]: Database connection successful -- 07:49:34.409 INFO [16481]: _SERVER found -- 07:49:34.409 INFO [16481]: REMOTE_ADDR = 192.168.1.13 -- 07:49:34.409 INFO [16481]: SERVER_NAME = oameye.works.coregrade.com -- 07:49:34.409 INFO [16481]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi -- 07:49:34.409 INFO [16481]: QUERY_STRING = /app-assets/data/locales/en.json -- 07:49:34.409 INFO [16481]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:49:34.422 INFO [16481]: COREGRADE is stopping... -- 07:49:34.422 DEBUG [16481]: Closing database connection -- 07:49:34.422 SQL [16481]: pgsql_close() -- 07:54:01.213 INFO [26946]: COREGRADE is starting... -- 07:54:01.213 INFO [26946]: Version from config: 1.0 -- 07:54:01.213 DEBUG [26946]: Connecting to database... -- 07:54:01.213 DEBUG [26946]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:54:01.213 SQL [26946]: pgsql_db_connect() -- 07:54:01.218 DEBUG [26946]: Database connection successful -- 07:54:01.218 INFO [26946]: _SERVER found -- 07:54:01.218 INFO [26946]: REMOTE_ADDR = 192.168.1.13 -- 07:54:01.218 INFO [26946]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:54:01.218 INFO [26946]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=mck07i3achaaqmjeidfqdrt8ej8mg2q4 -- 07:54:01.218 INFO [26946]: QUERY_STRING = /auth -- 07:54:01.218 INFO [26946]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:54:01.257 INFO [26946]: COREGRADE is stopping... -- 07:54:01.257 DEBUG [26946]: Closing database connection -- 07:54:01.257 SQL [26946]: pgsql_close() -- 07:54:01.652 INFO [26946]: COREGRADE is starting... -- 07:54:01.652 INFO [26946]: Version from config: 1.0 -- 07:54:01.652 DEBUG [26946]: Connecting to database... -- 07:54:01.652 DEBUG [26946]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:54:01.652 SQL [26946]: pgsql_db_connect() -- 07:54:01.656 DEBUG [26946]: Database connection successful -- 07:54:01.656 INFO [26946]: _SERVER found -- 07:54:01.656 INFO [26946]: REMOTE_ADDR = 192.168.1.13 -- 07:54:01.656 INFO [26946]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:54:01.656 INFO [26946]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=e63mii7g9e37cjtkhbu9kijdm0kjcbs5 -- 07:54:01.656 INFO [26946]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 07:54:01.656 INFO [26946]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:54:01.669 INFO [26946]: COREGRADE is stopping... -- 07:54:01.669 DEBUG [26946]: Closing database connection -- 07:54:01.669 SQL [26946]: pgsql_close() -- 07:54:01.679 INFO [26946]: COREGRADE is starting... -- 07:54:01.680 INFO [26946]: Version from config: 1.0 -- 07:54:01.680 DEBUG [26946]: Connecting to database... -- 07:54:01.680 DEBUG [26946]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:54:01.680 SQL [26946]: pgsql_db_connect() -- 07:54:01.683 DEBUG [26946]: Database connection successful -- 07:54:01.683 INFO [26946]: _SERVER found -- 07:54:01.683 INFO [26946]: REMOTE_ADDR = 192.168.1.13 -- 07:54:01.683 INFO [26946]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:54:01.683 INFO [26946]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.2133256447.1581551586; ci_session=e63mii7g9e37cjtkhbu9kijdm0kjcbs5 -- 07:54:01.683 INFO [26946]: QUERY_STRING = /app-assets/data/locales/en.json -- 07:54:01.683 INFO [26946]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:54:01.696 INFO [26946]: COREGRADE is stopping... -- 07:54:01.696 DEBUG [26946]: Closing database connection -- 07:54:01.696 SQL [26946]: pgsql_close() -- 09:17:20.686 INFO [26947]: COREGRADE is starting... -- 09:17:20.687 INFO [26947]: Version from config: 1.0 -- 09:17:20.687 DEBUG [26947]: Connecting to database... -- 09:17:20.687 DEBUG [26947]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:17:20.687 SQL [26947]: pgsql_db_connect() -- 09:17:20.692 DEBUG [26947]: Database connection successful -- 09:17:20.692 INFO [26947]: _SERVER found -- 09:17:20.692 INFO [26947]: REMOTE_ADDR = 192.168.1.13 -- 09:17:20.692 INFO [26947]: SERVER_NAME = oameye.works.coregrade.com -- 09:17:20.692 INFO [26947]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=u1qve6e64iisqrrlcbuqb55v5bfg1tvi -- 09:17:20.692 INFO [26947]: QUERY_STRING = /auth -- 09:17:20.692 INFO [26947]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:17:20.736 INFO [26947]: COREGRADE is stopping... -- 09:17:20.736 DEBUG [26947]: Closing database connection -- 09:17:20.736 SQL [26947]: pgsql_close() -- 09:17:20.888 INFO [26947]: COREGRADE is starting... -- 09:17:20.888 INFO [26947]: Version from config: 1.0 -- 09:17:20.888 DEBUG [26947]: Connecting to database... -- 09:17:20.888 DEBUG [26947]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:17:20.888 SQL [26947]: pgsql_db_connect() -- 09:17:20.892 DEBUG [26947]: Database connection successful -- 09:17:20.892 INFO [26947]: _SERVER found -- 09:17:20.892 INFO [26947]: REMOTE_ADDR = 192.168.1.13 -- 09:17:20.892 INFO [26947]: SERVER_NAME = oameye.works.coregrade.com -- 09:17:20.892 INFO [26947]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=8gkfl0jc6jc59cedl951iescdnmfj7am -- 09:17:20.892 INFO [26947]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 09:17:20.892 INFO [26947]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:17:20.905 INFO [26947]: COREGRADE is stopping... -- 09:17:20.905 DEBUG [26947]: Closing database connection -- 09:17:20.905 SQL [26947]: pgsql_close() -- 09:17:21.426 INFO [26947]: COREGRADE is starting... -- 09:17:21.426 INFO [26947]: Version from config: 1.0 -- 09:17:21.426 DEBUG [26947]: Connecting to database... -- 09:17:21.426 DEBUG [26947]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:17:21.426 SQL [26947]: pgsql_db_connect() -- 09:17:21.431 DEBUG [26947]: Database connection successful -- 09:17:21.431 INFO [26947]: _SERVER found -- 09:17:21.431 INFO [26947]: REMOTE_ADDR = 192.168.1.13 -- 09:17:21.431 INFO [26947]: SERVER_NAME = oameye.works.coregrade.com -- 09:17:21.431 INFO [26947]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=8gkfl0jc6jc59cedl951iescdnmfj7am -- 09:17:21.431 INFO [26947]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:17:21.431 INFO [26947]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:17:21.444 INFO [26947]: COREGRADE is stopping... -- 09:17:21.444 DEBUG [26947]: Closing database connection -- 09:17:21.444 SQL [26947]: pgsql_close() -- 10:11:19.814 INFO [26948]: COREGRADE is starting... -- 10:11:19.814 INFO [26948]: Version from config: 1.0 -- 10:11:19.815 DEBUG [26948]: Connecting to database... -- 10:11:19.815 DEBUG [26948]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:11:19.815 SQL [26948]: pgsql_db_connect() -- 10:11:19.819 DEBUG [26948]: Database connection successful -- 10:11:19.819 INFO [26948]: _SERVER found -- 10:11:19.819 INFO [26948]: REMOTE_ADDR = 192.168.1.13 -- 10:11:19.819 INFO [26948]: SERVER_NAME = oameye.works.coregrade.com -- 10:11:19.819 INFO [26948]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=8gkfl0jc6jc59cedl951iescdnmfj7am -- 10:11:19.819 INFO [26948]: QUERY_STRING = /auth -- 10:11:19.819 INFO [26948]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:11:19.863 INFO [26948]: COREGRADE is stopping... -- 10:11:19.863 DEBUG [26948]: Closing database connection -- 10:11:19.863 SQL [26948]: pgsql_close() -- 10:11:20.009 INFO [26948]: COREGRADE is starting... -- 10:11:20.009 INFO [26948]: Version from config: 1.0 -- 10:11:20.009 DEBUG [26948]: Connecting to database... -- 10:11:20.009 DEBUG [26948]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:11:20.009 SQL [26948]: pgsql_db_connect() -- 10:11:20.014 DEBUG [26948]: Database connection successful -- 10:11:20.014 INFO [26948]: _SERVER found -- 10:11:20.014 INFO [26948]: REMOTE_ADDR = 192.168.1.13 -- 10:11:20.014 INFO [26948]: SERVER_NAME = oameye.works.coregrade.com -- 10:11:20.014 INFO [26948]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=kvjqvn3dhj50s7b3c966e0r4o72j667s -- 10:11:20.014 INFO [26948]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:11:20.014 INFO [26948]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:11:20.029 INFO [26948]: COREGRADE is stopping... -- 10:11:20.029 DEBUG [26948]: Closing database connection -- 10:11:20.029 SQL [26948]: pgsql_close() -- 10:11:20.425 INFO [26948]: COREGRADE is starting... -- 10:11:20.426 INFO [26948]: Version from config: 1.0 -- 10:11:20.426 DEBUG [26948]: Connecting to database... -- 10:11:20.426 DEBUG [26948]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:11:20.426 SQL [26948]: pgsql_db_connect() -- 10:11:20.430 DEBUG [26948]: Database connection successful -- 10:11:20.430 INFO [26948]: _SERVER found -- 10:11:20.430 INFO [26948]: REMOTE_ADDR = 192.168.1.13 -- 10:11:20.430 INFO [26948]: SERVER_NAME = oameye.works.coregrade.com -- 10:11:20.430 INFO [26948]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=kvjqvn3dhj50s7b3c966e0r4o72j667s -- 10:11:20.430 INFO [26948]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:11:20.430 INFO [26948]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:11:20.442 INFO [26948]: COREGRADE is stopping... -- 10:11:20.442 DEBUG [26948]: Closing database connection -- 10:11:20.442 SQL [26948]: pgsql_close() -- 10:22:42.475 INFO [26950]: COREGRADE is starting... -- 10:22:42.476 INFO [26950]: Version from config: 1.0 -- 10:22:42.476 DEBUG [26950]: Connecting to database... -- 10:22:42.476 DEBUG [26950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:22:42.476 SQL [26950]: pgsql_db_connect() -- 10:22:42.480 DEBUG [26950]: Database connection successful -- 10:22:42.480 INFO [26950]: _SERVER found -- 10:22:42.480 INFO [26950]: REMOTE_ADDR = 192.168.1.13 -- 10:22:42.480 INFO [26950]: SERVER_NAME = oameye.works.coregrade.com -- 10:22:42.480 INFO [26950]: QUERY_STRING = -- 10:22:42.480 INFO [26950]: HTTP_X_FORWARDED_FOR = 195.142.115.111 -- 10:22:42.530 INFO [26950]: COREGRADE is stopping... -- 10:22:42.530 DEBUG [26950]: Closing database connection -- 10:22:42.530 SQL [26950]: pgsql_close() -- 10:29:34.438 INFO [26949]: COREGRADE is starting... -- 10:29:34.439 INFO [26949]: Version from config: 1.0 -- 10:29:34.439 DEBUG [26949]: Connecting to database... -- 10:29:34.439 DEBUG [26949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:34.439 SQL [26949]: pgsql_db_connect() -- 10:29:34.443 DEBUG [26949]: Database connection successful -- 10:29:34.443 INFO [26949]: _SERVER found -- 10:29:34.443 INFO [26949]: REMOTE_ADDR = 192.168.1.13 -- 10:29:34.443 INFO [26949]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:34.443 INFO [26949]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=kvjqvn3dhj50s7b3c966e0r4o72j667s -- 10:29:34.443 INFO [26949]: QUERY_STRING = /auth -- 10:29:34.443 INFO [26949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:29:34.485 INFO [26949]: COREGRADE is stopping... -- 10:29:34.485 DEBUG [26949]: Closing database connection -- 10:29:34.485 SQL [26949]: pgsql_close() -- 10:29:34.683 INFO [26949]: COREGRADE is starting... -- 10:29:34.683 INFO [26949]: Version from config: 1.0 -- 10:29:34.683 DEBUG [26949]: Connecting to database... -- 10:29:34.683 DEBUG [26949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:34.683 SQL [26949]: pgsql_db_connect() -- 10:29:34.687 DEBUG [26949]: Database connection successful -- 10:29:34.687 INFO [26949]: _SERVER found -- 10:29:34.687 INFO [26949]: REMOTE_ADDR = 192.168.1.13 -- 10:29:34.687 INFO [26949]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:34.687 INFO [26949]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=8f0gisdm1lamubc6c2k1o2t1jla7fede -- 10:29:34.687 INFO [26949]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:29:34.687 INFO [26949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:29:34.700 INFO [26949]: COREGRADE is stopping... -- 10:29:34.700 DEBUG [26949]: Closing database connection -- 10:29:34.700 SQL [26949]: pgsql_close() -- 10:29:34.883 INFO [26949]: COREGRADE is starting... -- 10:29:34.884 INFO [26949]: Version from config: 1.0 -- 10:29:34.884 DEBUG [26949]: Connecting to database... -- 10:29:34.884 DEBUG [26949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:34.884 SQL [26949]: pgsql_db_connect() -- 10:29:34.888 DEBUG [26949]: Database connection successful -- 10:29:34.888 INFO [26949]: _SERVER found -- 10:29:34.888 INFO [26949]: REMOTE_ADDR = 192.168.1.13 -- 10:29:34.888 INFO [26949]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:34.888 INFO [26949]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=8f0gisdm1lamubc6c2k1o2t1jla7fede -- 10:29:34.888 INFO [26949]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:29:34.888 INFO [26949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:29:34.900 INFO [26949]: COREGRADE is stopping... -- 10:29:34.900 DEBUG [26949]: Closing database connection -- 10:29:34.900 SQL [26949]: pgsql_close() -- 10:29:35.417 INFO [26949]: COREGRADE is starting... -- 10:29:35.418 INFO [26949]: Version from config: 1.0 -- 10:29:35.418 DEBUG [26949]: Connecting to database... -- 10:29:35.418 DEBUG [26949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:35.418 SQL [26949]: pgsql_db_connect() -- 10:29:35.422 DEBUG [26949]: Database connection successful -- 10:29:35.422 INFO [26949]: _SERVER found -- 10:29:35.422 INFO [26949]: REMOTE_ADDR = 192.168.1.13 -- 10:29:35.422 INFO [26949]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:35.422 INFO [26949]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=8f0gisdm1lamubc6c2k1o2t1jla7fede -- 10:29:35.422 INFO [26949]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:29:35.422 INFO [26949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:29:35.434 INFO [26949]: COREGRADE is stopping... -- 10:29:35.434 DEBUG [26949]: Closing database connection -- 10:29:35.435 SQL [26949]: pgsql_close() -- 10:55:58.805 INFO [26955]: COREGRADE is starting... -- 10:55:58.806 INFO [26955]: Version from config: 1.0 -- 10:55:58.806 DEBUG [26955]: Connecting to database... -- 10:55:58.806 DEBUG [26955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:55:58.806 SQL [26955]: pgsql_db_connect() -- 10:55:58.811 DEBUG [26955]: Database connection successful -- 10:55:58.811 INFO [26955]: _SERVER found -- 10:55:58.811 INFO [26955]: REMOTE_ADDR = 192.168.1.13 -- 10:55:58.811 INFO [26955]: SERVER_NAME = oameye.works.coregrade.com -- 10:55:58.811 INFO [26955]: QUERY_STRING = /robots.txt -- 10:55:58.811 INFO [26955]: HTTP_X_FORWARDED_FOR = 66.249.64.166 -- 10:55:58.830 INFO [26955]: COREGRADE is stopping... -- 10:55:58.830 DEBUG [26955]: Closing database connection -- 10:55:58.830 SQL [26955]: pgsql_close() -- 10:55:58.935 INFO [26955]: COREGRADE is starting... -- 10:55:58.935 INFO [26955]: Version from config: 1.0 -- 10:55:58.935 DEBUG [26955]: Connecting to database... -- 10:55:58.935 DEBUG [26955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:55:58.935 SQL [26955]: pgsql_db_connect() -- 10:55:58.940 DEBUG [26955]: Database connection successful -- 10:55:58.940 INFO [26955]: _SERVER found -- 10:55:58.940 INFO [26955]: REMOTE_ADDR = 192.168.1.13 -- 10:55:58.940 INFO [26955]: SERVER_NAME = oameye.works.coregrade.com -- 10:55:58.940 INFO [26955]: QUERY_STRING = -- 10:55:58.940 INFO [26955]: HTTP_X_FORWARDED_FOR = 66.249.64.160 -- 10:55:58.988 INFO [26955]: COREGRADE is stopping... -- 10:55:58.988 DEBUG [26955]: Closing database connection -- 10:55:58.988 SQL [26955]: pgsql_close() -- 11:05:17.486 INFO [26946]: COREGRADE is starting... -- 11:05:17.487 INFO [26946]: Version from config: 1.0 -- 11:05:17.487 DEBUG [26946]: Connecting to database... -- 11:05:17.487 DEBUG [26946]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:05:17.487 SQL [26946]: pgsql_db_connect() -- 11:05:17.491 DEBUG [26946]: Database connection successful -- 11:05:17.491 INFO [26946]: _SERVER found -- 11:05:17.491 INFO [26946]: REMOTE_ADDR = 192.168.1.13 -- 11:05:17.491 INFO [26946]: SERVER_NAME = oameye.works.coregrade.com -- 11:05:17.491 INFO [26946]: QUERY_STRING = /home/faq -- 11:05:17.491 INFO [26946]: HTTP_X_FORWARDED_FOR = 66.249.64.160 -- 11:05:17.533 INFO [26946]: COREGRADE is stopping... -- 11:05:17.533 DEBUG [26946]: Closing database connection -- 11:05:17.533 SQL [26946]: pgsql_close() -- 11:05:26.710 INFO [26946]: COREGRADE is starting... -- 11:05:26.711 INFO [26946]: Version from config: 1.0 -- 11:05:26.711 DEBUG [26946]: Connecting to database... -- 11:05:26.711 DEBUG [26946]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:05:26.711 SQL [26946]: pgsql_db_connect() -- 11:05:26.715 DEBUG [26946]: Database connection successful -- 11:05:26.715 INFO [26946]: _SERVER found -- 11:05:26.715 INFO [26946]: REMOTE_ADDR = 192.168.1.13 -- 11:05:26.715 INFO [26946]: SERVER_NAME = oameye.works.coregrade.com -- 11:05:26.715 INFO [26946]: HTTP_COOKIE = ci_session=qkqv96lrh4abct1pklel54ns87mcvc71 -- 11:05:26.715 INFO [26946]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:05:26.715 INFO [26946]: HTTP_X_FORWARDED_FOR = 66.249.64.160 -- 11:05:26.726 INFO [26946]: COREGRADE is stopping... -- 11:05:26.726 DEBUG [26946]: Closing database connection -- 11:05:26.726 SQL [26946]: pgsql_close() -- 13:36:51.496 INFO [26947]: COREGRADE is starting... -- 13:36:51.496 INFO [26947]: Version from config: 1.0 -- 13:36:51.496 DEBUG [26947]: Connecting to database... -- 13:36:51.496 DEBUG [26947]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:36:51.496 SQL [26947]: pgsql_db_connect() -- 13:36:51.502 DEBUG [26947]: Database connection successful -- 13:36:51.502 INFO [26947]: _SERVER found -- 13:36:51.502 INFO [26947]: REMOTE_ADDR = 192.168.1.13 -- 13:36:51.502 INFO [26947]: SERVER_NAME = oameye.works.coregrade.com -- 13:36:51.502 INFO [26947]: QUERY_STRING = /TP/public/index.php -- 13:36:51.502 INFO [26947]: HTTP_X_FORWARDED_FOR = 128.199.139.15 -- 13:36:51.517 INFO [26947]: COREGRADE is stopping... -- 13:36:51.517 DEBUG [26947]: Closing database connection -- 13:36:51.517 SQL [26947]: pgsql_close() -- 13:36:52.959 INFO [26948]: COREGRADE is starting... -- 13:36:52.959 INFO [26948]: Version from config: 1.0 -- 13:36:52.959 DEBUG [26948]: Connecting to database... -- 13:36:52.959 DEBUG [26948]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:36:52.959 SQL [26948]: pgsql_db_connect() -- 13:36:52.964 DEBUG [26948]: Database connection successful -- 13:36:52.964 INFO [26948]: _SERVER found -- 13:36:52.964 INFO [26948]: REMOTE_ADDR = 192.168.1.13 -- 13:36:52.964 INFO [26948]: SERVER_NAME = oameye.works.coregrade.com -- 13:36:52.964 INFO [26948]: QUERY_STRING = /TP/index.php -- 13:36:52.964 INFO [26948]: HTTP_X_FORWARDED_FOR = 128.199.139.15 -- 13:36:52.978 INFO [26948]: COREGRADE is stopping... -- 13:36:52.978 DEBUG [26948]: Closing database connection -- 13:36:52.978 SQL [26948]: pgsql_close() -- 13:36:54.417 INFO [26948]: COREGRADE is starting... -- 13:36:54.418 INFO [26948]: Version from config: 1.0 -- 13:36:54.418 DEBUG [26948]: Connecting to database... -- 13:36:54.418 DEBUG [26948]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:36:54.418 SQL [26948]: pgsql_db_connect() -- 13:36:54.422 DEBUG [26948]: Database connection successful -- 13:36:54.422 INFO [26948]: _SERVER found -- 13:36:54.422 INFO [26948]: REMOTE_ADDR = 192.168.1.13 -- 13:36:54.422 INFO [26948]: SERVER_NAME = oameye.works.coregrade.com -- 13:36:54.422 INFO [26948]: QUERY_STRING = /thinkphp/html/public/index.php -- 13:36:54.422 INFO [26948]: HTTP_X_FORWARDED_FOR = 128.199.139.15 -- 13:36:54.435 INFO [26948]: COREGRADE is stopping... -- 13:36:54.435 DEBUG [26948]: Closing database connection -- 13:36:54.435 SQL [26948]: pgsql_close() -- 13:36:55.982 INFO [26948]: COREGRADE is starting... -- 13:36:55.982 INFO [26948]: Version from config: 1.0 -- 13:36:55.982 DEBUG [26948]: Connecting to database... -- 13:36:55.982 DEBUG [26948]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:36:55.982 SQL [26948]: pgsql_db_connect() -- 13:36:55.987 DEBUG [26948]: Database connection successful -- 13:36:55.987 INFO [26948]: _SERVER found -- 13:36:55.987 INFO [26948]: REMOTE_ADDR = 192.168.1.13 -- 13:36:55.987 INFO [26948]: SERVER_NAME = oameye.works.coregrade.com -- 13:36:55.987 INFO [26948]: QUERY_STRING = /html/public/index.php -- 13:36:55.987 INFO [26948]: HTTP_X_FORWARDED_FOR = 128.199.139.15 -- 13:36:55.000 INFO [26948]: COREGRADE is stopping... -- 13:36:55.000 DEBUG [26948]: Closing database connection -- 13:36:55.000 SQL [26948]: pgsql_close() -- 13:36:57.414 INFO [26948]: COREGRADE is starting... -- 13:36:57.414 INFO [26948]: Version from config: 1.0 -- 13:36:57.414 DEBUG [26948]: Connecting to database... -- 13:36:57.414 DEBUG [26948]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:36:57.414 SQL [26948]: pgsql_db_connect() -- 13:36:57.419 DEBUG [26948]: Database connection successful -- 13:36:57.419 INFO [26948]: _SERVER found -- 13:36:57.419 INFO [26948]: REMOTE_ADDR = 192.168.1.13 -- 13:36:57.419 INFO [26948]: SERVER_NAME = oameye.works.coregrade.com -- 13:36:57.419 INFO [26948]: QUERY_STRING = /public/index.php -- 13:36:57.419 INFO [26948]: HTTP_X_FORWARDED_FOR = 128.199.139.15 -- 13:36:57.434 INFO [26948]: COREGRADE is stopping... -- 13:36:57.434 DEBUG [26948]: Closing database connection -- 13:36:57.434 SQL [26948]: pgsql_close() -- 13:36:58.849 INFO [26948]: COREGRADE is starting... -- 13:36:58.849 INFO [26948]: Version from config: 1.0 -- 13:36:58.849 DEBUG [26948]: Connecting to database... -- 13:36:58.849 DEBUG [26948]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:36:58.849 SQL [26948]: pgsql_db_connect() -- 13:36:58.854 DEBUG [26948]: Database connection successful -- 13:36:58.854 INFO [26948]: _SERVER found -- 13:36:58.854 INFO [26948]: REMOTE_ADDR = 192.168.1.13 -- 13:36:58.854 INFO [26948]: SERVER_NAME = oameye.works.coregrade.com -- 13:36:58.854 INFO [26948]: QUERY_STRING = /TP/html/public/index.php -- 13:36:58.854 INFO [26948]: HTTP_X_FORWARDED_FOR = 128.199.139.15 -- 13:36:58.868 INFO [26948]: COREGRADE is stopping... -- 13:36:58.868 DEBUG [26948]: Closing database connection -- 13:36:58.868 SQL [26948]: pgsql_close() -- 13:37:00.289 INFO [26948]: COREGRADE is starting... -- 13:37:00.289 INFO [26948]: Version from config: 1.0 -- 13:37:00.289 DEBUG [26948]: Connecting to database... -- 13:37:00.289 DEBUG [26948]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:37:00.289 SQL [26948]: pgsql_db_connect() -- 13:37:00.294 DEBUG [26948]: Database connection successful -- 13:37:00.294 INFO [26948]: _SERVER found -- 13:37:00.294 INFO [26948]: REMOTE_ADDR = 192.168.1.13 -- 13:37:00.294 INFO [26948]: SERVER_NAME = oameye.works.coregrade.com -- 13:37:00.294 INFO [26948]: QUERY_STRING = /elrekt.php -- 13:37:00.294 INFO [26948]: HTTP_X_FORWARDED_FOR = 128.199.139.15 -- 13:37:00.307 INFO [26948]: COREGRADE is stopping... -- 13:37:00.307 DEBUG [26948]: Closing database connection -- 13:37:00.307 SQL [26948]: pgsql_close() -- 13:37:01.711 INFO [26948]: COREGRADE is starting... -- 13:37:01.711 INFO [26948]: Version from config: 1.0 -- 13:37:01.711 DEBUG [26948]: Connecting to database... -- 13:37:01.711 DEBUG [26948]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:37:01.711 SQL [26948]: pgsql_db_connect() -- 13:37:01.715 DEBUG [26948]: Database connection successful -- 13:37:01.715 INFO [26948]: _SERVER found -- 13:37:01.715 INFO [26948]: REMOTE_ADDR = 192.168.1.13 -- 13:37:01.715 INFO [26948]: SERVER_NAME = oameye.works.coregrade.com -- 13:37:01.715 INFO [26948]: QUERY_STRING = -- 13:37:01.715 INFO [26948]: HTTP_X_FORWARDED_FOR = 128.199.139.15 -- 13:37:01.760 INFO [26948]: COREGRADE is stopping... -- 13:37:01.760 DEBUG [26948]: Closing database connection -- 13:37:01.760 SQL [26948]: pgsql_close() -- 13:37:03.194 INFO [26950]: COREGRADE is starting... -- 13:37:03.194 INFO [26950]: Version from config: 1.0 -- 13:37:03.194 DEBUG [26950]: Connecting to database... -- 13:37:03.194 DEBUG [26950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:37:03.194 SQL [26950]: pgsql_db_connect() -- 13:37:03.199 DEBUG [26950]: Database connection successful -- 13:37:03.199 INFO [26950]: _SERVER found -- 13:37:03.199 INFO [26950]: REMOTE_ADDR = 192.168.1.13 -- 13:37:03.199 INFO [26950]: SERVER_NAME = oameye.works.coregrade.com -- 13:37:03.199 INFO [26950]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 13:37:03.199 INFO [26950]: HTTP_X_FORWARDED_FOR = 128.199.139.15 -- 13:37:03.236 INFO [26950]: COREGRADE is stopping... -- 13:37:03.236 DEBUG [26950]: Closing database connection -- 13:37:03.236 SQL [26950]: pgsql_close() -- 13:37:04.664 INFO [26948]: COREGRADE is starting... -- 13:37:04.664 INFO [26948]: Version from config: 1.0 -- 13:37:04.664 DEBUG [26948]: Connecting to database... -- 13:37:04.664 DEBUG [26948]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:37:04.664 SQL [26948]: pgsql_db_connect() -- 13:37:04.668 DEBUG [26948]: Database connection successful -- 13:37:04.668 INFO [26948]: _SERVER found -- 13:37:04.668 INFO [26948]: REMOTE_ADDR = 192.168.1.13 -- 13:37:04.668 INFO [26948]: SERVER_NAME = oameye.works.coregrade.com -- 13:37:04.668 INFO [26948]: QUERY_STRING = s=captcha -- 13:37:04.668 INFO [26948]: HTTP_X_FORWARDED_FOR = 128.199.139.15 -- 13:37:04.700 INFO [26948]: COREGRADE is stopping... -- 13:37:04.700 DEBUG [26948]: Closing database connection -- 13:37:04.700 SQL [26948]: pgsql_close() -- 13:37:06.110 INFO [26948]: COREGRADE is starting... -- 13:37:06.111 INFO [26948]: Version from config: 1.0 -- 13:37:06.111 DEBUG [26948]: Connecting to database... -- 13:37:06.111 DEBUG [26948]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:37:06.111 SQL [26948]: pgsql_db_connect() -- 13:37:06.115 DEBUG [26948]: Database connection successful -- 13:37:06.115 INFO [26948]: _SERVER found -- 13:37:06.115 INFO [26948]: REMOTE_ADDR = 192.168.1.13 -- 13:37:06.115 INFO [26948]: SERVER_NAME = oameye.works.coregrade.com -- 13:37:06.115 INFO [26948]: QUERY_STRING = -- 13:37:06.115 INFO [26948]: HTTP_X_FORWARDED_FOR = 128.199.139.15 -- 13:37:06.147 INFO [26948]: COREGRADE is stopping... -- 13:37:06.147 DEBUG [26948]: Closing database connection -- 13:37:06.147 SQL [26948]: pgsql_close() -- 16:30:28.232 INFO [26949]: COREGRADE is starting... -- 16:30:28.233 INFO [26949]: Version from config: 1.0 -- 16:30:28.233 DEBUG [26949]: Connecting to database... -- 16:30:28.233 DEBUG [26949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:30:28.233 SQL [26949]: pgsql_db_connect() -- 16:30:28.237 DEBUG [26949]: Database connection successful -- 16:30:28.237 INFO [26949]: _SERVER found -- 16:30:28.237 INFO [26949]: REMOTE_ADDR = 192.168.1.13 -- 16:30:28.237 INFO [26949]: SERVER_NAME = oameye.works.coregrade.com -- 16:30:28.237 INFO [26949]: QUERY_STRING = -- 16:30:28.237 INFO [26949]: HTTP_X_FORWARDED_FOR = 209.17.96.210 -- 16:30:28.284 INFO [26949]: COREGRADE is stopping... -- 16:30:28.284 DEBUG [26949]: Closing database connection -- 16:30:28.284 SQL [26949]: pgsql_close() -- 19:18:47.219 INFO [26946]: COREGRADE is starting... -- 19:18:47.219 INFO [26946]: Version from config: 1.0 -- 19:18:47.219 DEBUG [26946]: Connecting to database... -- 19:18:47.219 DEBUG [26946]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:18:47.219 SQL [26946]: pgsql_db_connect() -- 19:18:47.224 DEBUG [26946]: Database connection successful -- 19:18:47.224 INFO [26946]: _SERVER found -- 19:18:47.224 INFO [26946]: REMOTE_ADDR = 192.168.1.13 -- 19:18:47.224 INFO [26946]: SERVER_NAME = oameye.works.coregrade.com -- 19:18:47.224 INFO [26946]: QUERY_STRING = -- 19:18:47.224 INFO [26946]: HTTP_X_FORWARDED_FOR = 47.75.100.32 -- 19:18:47.269 INFO [26946]: COREGRADE is stopping... -- 19:18:47.269 DEBUG [26946]: Closing database connection -- 19:18:47.269 SQL [26946]: pgsql_close() -- 21:40:40.895 INFO [28415]: COREGRADE is starting... -- 21:40:40.895 INFO [28415]: Version from config: 1.0 -- 21:40:40.895 DEBUG [28415]: Connecting to database... -- 21:40:40.895 DEBUG [28415]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:40:40.895 SQL [28415]: pgsql_db_connect() -- 21:40:40.944 INFO [28415]: COREGRADE is starting... -- 21:40:40.945 INFO [28415]: Version from config: 1.0 -- 21:40:40.945 DEBUG [28415]: Connecting to database... -- 21:40:40.945 DEBUG [28415]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:40:40.945 SQL [28415]: pgsql_db_connect() -- 21:40:40.949 DEBUG [28415]: Database connection successful -- 21:40:40.949 INFO [28415]: _SERVER found -- 21:40:40.949 INFO [28415]: REMOTE_ADDR = 192.168.1.13 -- 21:40:40.949 INFO [28415]: SERVER_NAME = oameye.works.coregrade.com -- 21:40:40.949 INFO [28415]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310 -- 21:40:40.949 INFO [28415]: QUERY_STRING = -- 21:40:40.949 INFO [28415]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:40:40.949 INFO [28415]: SystemStatus()09-09-********~************ -- 21:40:40.949 INFO [28415]: long coregrade_api_main(CVars in, CVars &out) -- 21:40:40.949 INFO [28415]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 21:40:40.949 INFO [28415]: account calls -- 21:40:40.949 INFO [28415]: account_calls() -- 21:40:40.949 INFO [28415]: LoginCoreGradeAccount() -- 21:40:40.949 FLOG_MAX [28415]: REQ_STRING(username) -- 21:40:40.949 FLOG_MAX [28415]: REQ_STRING(password) -- 21:40:40.949 FLOG_MAX [28415]: REQ_STRING(sessionid) -- 21:40:40.950 FLOG_MAX [28415]: long load_db_record( CVars &rec, const char * query, ... ) -- 21:40:40.950 SQL [28415]: pgsql_query() -- 21:40:40.950 SQL [28415]: About to run query: -- 21:40:40.950 SQL [28415]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 21:40:40.954 SQL [28415]: Found rows: 1 -- 21:40:40.954 FLOG_MAX [28415]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 21:40:40.954 INFO [28415]: long SessionCheck(long uid, const char *sessionid, int create ) -- 21:40:40.954 SQL [28415]: pgsql_exec() -- 21:40:40.954 SQL [28415]: About to run query: -- 21:40:40.954 SQL [28415]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 21:40:40.955 SQL [28415]: PQcmdTuples: 1 -- 21:40:40.955 SQL [28415]: Affected rows: 1 -- 21:40:40.955 SQL [28415]: pgsql_exec() -- 21:40:40.955 SQL [28415]: About to run query: -- 21:40:40.955 SQL [28415]: DELETE FROM members_session WHERE member_id=5 -- 21:40:40.955 SQL [28415]: PQcmdTuples: 0 -- 21:40:40.955 SQL [28415]: Affected rows: 0 -- 21:40:40.956 SQL [28415]: pgsql_query() -- 21:40:40.956 SQL [28415]: About to run query: -- 21:40:40.956 SQL [28415]: SELECT * FROM members_session WHERE member_id=5 AND session<>'2F0154D12039E857AA1CD334541D1B24' -- 21:40:40.956 SQL [28415]: Found rows: 0 -- 21:40:40.956 SQL [28415]: Found rows: 0 -- 21:40:40.956 FLOG_MAX [28415]: long load_db_record( CVars &rec, const char * query, ... ) -- 21:40:40.956 SQL [28415]: pgsql_query() -- 21:40:40.956 SQL [28415]: About to run query: -- 21:40:40.956 SQL [28415]: SELECT * FROM members_session WHERE member_id=5 AND session='2F0154D12039E857AA1CD334541D1B24' -- 21:40:40.957 SQL [28415]: Found rows: 0 -- 21:40:40.957 SQL [28415]: Found rows: 0 -- 21:40:40.957 FLOG_MAX [28415]: insert_db_record() -- 21:40:40.957 SQL [28415]: pgsql_exec() -- 21:40:40.957 SQL [28415]: About to run query: -- 21:40:40.957 SQL [28415]: INSERT INTO members_session (member_id,session) VALUES ('5','2F0154D12039E857AA1CD334541D1B24') -- 21:40:40.959 SQL [28415]: PQcmdTuples: 1 -- 21:40:40.959 SQL [28415]: Affected rows: 1 -- 21:40:40.959 FLOG_MAX [28415]: SELECT currval('members_session_id_seq') -- 21:40:40.959 SQL [28415]: pgsql_query() -- 21:40:40.959 SQL [28415]: About to run query: -- 21:40:40.959 SQL [28415]: SELECT currval('members_session_id_seq') -- 21:40:40.959 SQL [28415]: Found rows: 1 -- 21:40:40.959 INFO [28415]: CreateDefaultPage() -- 21:40:40.959 FLOG_MAX [28415]: long load_db_record( CVars &rec, const char * query, ... ) -- 21:40:40.959 SQL [28415]: pgsql_query() -- 21:40:40.959 SQL [28415]: About to run query: -- 21:40:40.959 SQL [28415]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 21:40:40.959 SQL [28415]: Found rows: 1 -- 21:40:40.959 FLOG_MAX [28415]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 21:40:40.959 SQL [28415]: pgsql_query() -- 21:40:40.959 SQL [28415]: About to run query: -- 21:40:40.959 SQL [28415]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 21:40:40.960 SQL [28415]: Found rows: 1 -- 21:40:40.960 INFO [28415]: /CreateDefaultPage() -- 21:40:40.960 INFO [28415]: /LoginCoreGradeAccount() -- 21:40:40.960 INFO [28415]: RET: added=2020-02-05 06:47:23.982154 -- 21:40:40.960 INFO [28415]: RET: email=ameye+11@chiefsoft.com -- 21:40:40.960 INFO [28415]: RET: firstname=Olu -- 21:40:40.960 INFO [28415]: RET: id=5 -- 21:40:40.960 INFO [28415]: RET: last_login= -- 21:40:40.960 INFO [28415]: RET: lastname=Amey -- 21:40:40.960 INFO [28415]: RET: loc=192.168.1.13 -- 21:40:40.960 INFO [28415]: RET: member_id=5 -- 21:40:40.960 INFO [28415]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 21:40:40.960 INFO [28415]: RET: phone= -- 21:40:40.960 INFO [28415]: RET: pid= -- 21:40:40.960 INFO [28415]: RET: result=YES I GET TO BACK END -- 21:40:40.960 INFO [28415]: RET: sessionid=2F0154D12039E857AA1CD334541D1B24 -- 21:40:40.960 INFO [28415]: RET: status=1 -- 21:40:40.960 INFO [28415]: RET: stauts=OK -- 21:40:40.960 INFO [28415]: RET: username=ameye+11@chiefsoft.com -- 21:40:40.960 INFO [28415]: RET: verified= -- 21:40:40.961 INFO [28415]: COREGRADE is stopping... -- 21:40:40.961 DEBUG [28415]: Closing database connection -- 21:40:40.961 SQL [28415]: pgsql_close() -- 21:40:40.900 DEBUG [28415]: Database connection successful -- 21:40:40.900 INFO [28415]: _SERVER found -- 21:40:40.900 INFO [28415]: REMOTE_ADDR = 192.168.1.13 -- 21:40:40.900 INFO [28415]: SERVER_NAME = oameye.works.coregrade.com -- 21:40:40.900 INFO [28415]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310 -- 21:40:40.900 INFO [28415]: QUERY_STRING = /auth -- 21:40:40.900 INFO [28415]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:40:40.962 INFO [28415]: COREGRADE is stopping... -- 21:40:40.962 DEBUG [28415]: Closing database connection -- 21:40:40.962 SQL [28415]: pgsql_close() -- 21:40:40.981 INFO [28415]: COREGRADE is starting... -- 21:40:40.981 INFO [28415]: Version from config: 1.0 -- 21:40:40.981 DEBUG [28415]: Connecting to database... -- 21:40:40.981 DEBUG [28415]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:40:40.981 SQL [28415]: pgsql_db_connect() -- 21:40:40.985 DEBUG [28415]: Database connection successful -- 21:40:40.985 INFO [28415]: _SERVER found -- 21:40:40.985 INFO [28415]: REMOTE_ADDR = 192.168.1.13 -- 21:40:40.985 INFO [28415]: SERVER_NAME = oameye.works.coregrade.com -- 21:40:40.985 INFO [28415]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=tomgl1eseudlqldkqdtssvd11s4h0vh9 -- 21:40:40.985 INFO [28415]: QUERY_STRING = /member/index -- 21:40:40.985 INFO [28415]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:40:41.027 INFO [28415]: COREGRADE is stopping... -- 21:40:41.027 DEBUG [28415]: Closing database connection -- 21:40:41.027 SQL [28415]: pgsql_close() -- 21:40:41.660 INFO [28415]: COREGRADE is starting... -- 21:40:41.661 INFO [28415]: Version from config: 1.0 -- 21:40:41.661 DEBUG [28415]: Connecting to database... -- 21:40:41.661 DEBUG [28415]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:40:41.661 SQL [28415]: pgsql_db_connect() -- 21:40:41.665 DEBUG [28415]: Database connection successful -- 21:40:41.665 INFO [28415]: _SERVER found -- 21:40:41.665 INFO [28415]: REMOTE_ADDR = 192.168.1.13 -- 21:40:41.665 INFO [28415]: SERVER_NAME = oameye.works.coregrade.com -- 21:40:41.665 INFO [28415]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=tomgl1eseudlqldkqdtssvd11s4h0vh9 -- 21:40:41.665 INFO [28415]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:40:41.665 INFO [28415]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:40:41.676 INFO [28415]: COREGRADE is stopping... -- 21:40:41.676 DEBUG [28415]: Closing database connection -- 21:40:41.676 SQL [28415]: pgsql_close() -- 21:40:41.859 INFO [28415]: COREGRADE is starting... -- 21:40:41.859 INFO [28415]: Version from config: 1.0 -- 21:40:41.859 DEBUG [28415]: Connecting to database... -- 21:40:41.859 DEBUG [28415]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:40:41.859 SQL [28415]: pgsql_db_connect() -- 21:40:41.863 DEBUG [28415]: Database connection successful -- 21:40:41.863 INFO [28415]: _SERVER found -- 21:40:41.863 INFO [28415]: REMOTE_ADDR = 192.168.1.13 -- 21:40:41.863 INFO [28415]: SERVER_NAME = oameye.works.coregrade.com -- 21:40:41.863 INFO [28415]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=tomgl1eseudlqldkqdtssvd11s4h0vh9 -- 21:40:41.863 INFO [28415]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:40:41.863 INFO [28415]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:40:41.875 INFO [28415]: COREGRADE is stopping... -- 21:40:41.875 DEBUG [28415]: Closing database connection -- 21:40:41.875 SQL [28415]: pgsql_close() -- 21:40:48.616 INFO [26947]: COREGRADE is starting... -- 21:40:48.616 INFO [26947]: Version from config: 1.0 -- 21:40:48.616 DEBUG [26947]: Connecting to database... -- 21:40:48.616 DEBUG [26947]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:40:48.616 SQL [26947]: pgsql_db_connect() -- 21:40:48.620 DEBUG [26947]: Database connection successful -- 21:40:48.620 INFO [26947]: _SERVER found -- 21:40:48.620 INFO [26947]: REMOTE_ADDR = 192.168.1.13 -- 21:40:48.620 INFO [26947]: SERVER_NAME = oameye.works.coregrade.com -- 21:40:48.620 INFO [26947]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=tomgl1eseudlqldkqdtssvd11s4h0vh9 -- 21:40:48.620 INFO [26947]: QUERY_STRING = /auth/logout -- 21:40:48.620 INFO [26947]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:40:48.657 INFO [26947]: COREGRADE is stopping... -- 21:40:48.657 DEBUG [26947]: Closing database connection -- 21:40:48.657 SQL [26947]: pgsql_close() -- 21:40:48.902 INFO [26947]: COREGRADE is starting... -- 21:40:48.902 INFO [26947]: Version from config: 1.0 -- 21:40:48.902 DEBUG [26947]: Connecting to database... -- 21:40:48.902 DEBUG [26947]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:40:48.902 SQL [26947]: pgsql_db_connect() -- 21:40:48.918 INFO [26950]: COREGRADE is starting... -- 21:40:48.919 INFO [26950]: Version from config: 1.0 -- 21:40:48.919 DEBUG [26950]: Connecting to database... -- 21:40:48.919 DEBUG [26950]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:40:48.919 SQL [26950]: pgsql_db_connect() -- 21:40:48.906 DEBUG [26947]: Database connection successful -- 21:40:48.906 INFO [26947]: _SERVER found -- 21:40:48.906 INFO [26947]: REMOTE_ADDR = 192.168.1.13 -- 21:40:48.906 INFO [26947]: SERVER_NAME = oameye.works.coregrade.com -- 21:40:48.906 INFO [26947]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=tomgl1eseudlqldkqdtssvd11s4h0vh9 -- 21:40:48.906 INFO [26947]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:40:48.906 INFO [26947]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:40:48.919 INFO [26947]: COREGRADE is stopping... -- 21:40:48.919 DEBUG [26947]: Closing database connection -- 21:40:48.919 SQL [26947]: pgsql_close() -- 21:40:48.923 DEBUG [26950]: Database connection successful -- 21:40:48.923 INFO [26950]: _SERVER found -- 21:40:48.923 INFO [26950]: REMOTE_ADDR = 192.168.1.13 -- 21:40:48.923 INFO [26950]: SERVER_NAME = oameye.works.coregrade.com -- 21:40:48.923 INFO [26950]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=tomgl1eseudlqldkqdtssvd11s4h0vh9 -- 21:40:48.923 INFO [26950]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:40:48.923 INFO [26950]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:40:48.935 INFO [26950]: COREGRADE is stopping... -- 21:40:48.935 DEBUG [26950]: Closing database connection -- 21:40:48.935 SQL [26950]: pgsql_close() -- 21:41:12.967 INFO [26948]: COREGRADE is starting... -- 21:41:12.967 INFO [26948]: Version from config: 1.0 -- 21:41:12.967 DEBUG [26948]: Connecting to database... -- 21:41:12.967 DEBUG [26948]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:41:12.967 SQL [26948]: pgsql_db_connect() -- 21:41:12.971 DEBUG [26948]: Database connection successful -- 21:41:12.971 INFO [26948]: _SERVER found -- 21:41:12.971 INFO [26948]: REMOTE_ADDR = 192.168.1.13 -- 21:41:12.971 INFO [26948]: SERVER_NAME = oameye.works.coregrade.com -- 21:41:12.971 INFO [26948]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=tomgl1eseudlqldkqdtssvd11s4h0vh9 -- 21:41:12.971 INFO [26948]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 21:41:12.971 INFO [26948]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:41:12.984 INFO [26948]: COREGRADE is stopping... -- 21:41:12.984 DEBUG [26948]: Closing database connection -- 21:41:12.984 SQL [26948]: pgsql_close() -- 21:41:28.598 INFO [26949]: COREGRADE is starting... -- 21:41:28.598 INFO [26949]: Version from config: 1.0 -- 21:41:28.598 DEBUG [26949]: Connecting to database... -- 21:41:28.598 DEBUG [26949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:41:28.598 SQL [26949]: pgsql_db_connect() -- 21:41:28.602 DEBUG [26949]: Database connection successful -- 21:41:28.602 INFO [26949]: _SERVER found -- 21:41:28.602 INFO [26949]: REMOTE_ADDR = 192.168.1.13 -- 21:41:28.602 INFO [26949]: SERVER_NAME = oameye.works.coregrade.com -- 21:41:28.602 INFO [26949]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=tomgl1eseudlqldkqdtssvd11s4h0vh9 -- 21:41:28.602 INFO [26949]: QUERY_STRING = /auth/logout -- 21:41:28.602 INFO [26949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:41:28.636 INFO [26949]: COREGRADE is stopping... -- 21:41:28.636 DEBUG [26949]: Closing database connection -- 21:41:28.636 SQL [26949]: pgsql_close() -- 21:41:29.047 INFO [26949]: COREGRADE is starting... -- 21:41:29.047 INFO [26949]: Version from config: 1.0 -- 21:41:29.047 DEBUG [26949]: Connecting to database... -- 21:41:29.047 DEBUG [26949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:41:29.047 SQL [26949]: pgsql_db_connect() -- 21:41:29.051 DEBUG [26949]: Database connection successful -- 21:41:29.051 INFO [26949]: _SERVER found -- 21:41:29.051 INFO [26949]: REMOTE_ADDR = 192.168.1.13 -- 21:41:29.051 INFO [26949]: SERVER_NAME = oameye.works.coregrade.com -- 21:41:29.051 INFO [26949]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=tomgl1eseudlqldkqdtssvd11s4h0vh9 -- 21:41:29.051 INFO [26949]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:41:29.051 INFO [26949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:41:29.062 INFO [26949]: COREGRADE is stopping... -- 21:41:29.062 DEBUG [26949]: Closing database connection -- 21:41:29.062 SQL [26949]: pgsql_close() -- 21:41:29.117 INFO [26949]: COREGRADE is starting... -- 21:41:29.117 INFO [26949]: Version from config: 1.0 -- 21:41:29.117 DEBUG [26949]: Connecting to database... -- 21:41:29.117 DEBUG [26949]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:41:29.117 SQL [26949]: pgsql_db_connect() -- 21:41:29.127 INFO [26955]: COREGRADE is starting... -- 21:41:29.127 INFO [26955]: Version from config: 1.0 -- 21:41:29.127 DEBUG [26955]: Connecting to database... -- 21:41:29.127 DEBUG [26955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:41:29.127 SQL [26955]: pgsql_db_connect() -- 21:41:29.121 DEBUG [26949]: Database connection successful -- 21:41:29.121 INFO [26949]: _SERVER found -- 21:41:29.121 INFO [26949]: REMOTE_ADDR = 192.168.1.13 -- 21:41:29.121 INFO [26949]: SERVER_NAME = oameye.works.coregrade.com -- 21:41:29.121 INFO [26949]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=tomgl1eseudlqldkqdtssvd11s4h0vh9 -- 21:41:29.121 INFO [26949]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:41:29.121 INFO [26949]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:41:29.132 INFO [26949]: COREGRADE is stopping... -- 21:41:29.132 DEBUG [26949]: Closing database connection -- 21:41:29.132 SQL [26949]: pgsql_close() -- 21:41:29.131 DEBUG [26955]: Database connection successful -- 21:41:29.131 INFO [26955]: _SERVER found -- 21:41:29.131 INFO [26955]: REMOTE_ADDR = 192.168.1.13 -- 21:41:29.131 INFO [26955]: SERVER_NAME = oameye.works.coregrade.com -- 21:41:29.131 INFO [26955]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=tomgl1eseudlqldkqdtssvd11s4h0vh9 -- 21:41:29.131 INFO [26955]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 21:41:29.131 INFO [26955]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:41:29.143 INFO [26955]: COREGRADE is stopping... -- 21:41:29.143 DEBUG [26955]: Closing database connection -- 21:41:29.143 SQL [26955]: pgsql_close() -- 21:43:10.507 INFO [26946]: COREGRADE is starting... -- 21:43:10.508 INFO [26946]: Version from config: 1.0 -- 21:43:10.508 DEBUG [26946]: Connecting to database... -- 21:43:10.508 DEBUG [26946]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:43:10.508 SQL [26946]: pgsql_db_connect() -- 21:43:10.512 DEBUG [26946]: Database connection successful -- 21:43:10.512 INFO [26946]: _SERVER found -- 21:43:10.512 INFO [26946]: REMOTE_ADDR = 192.168.1.13 -- 21:43:10.512 INFO [26946]: SERVER_NAME = oameye.works.coregrade.com -- 21:43:10.512 INFO [26946]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=tomgl1eseudlqldkqdtssvd11s4h0vh9 -- 21:43:10.512 INFO [26946]: QUERY_STRING = /auth/logout -- 21:43:10.512 INFO [26946]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:43:10.546 INFO [26946]: COREGRADE is stopping... -- 21:43:10.546 DEBUG [26946]: Closing database connection -- 21:43:10.546 SQL [26946]: pgsql_close() -- 21:43:10.758 INFO [26946]: COREGRADE is starting... -- 21:43:10.759 INFO [26946]: Version from config: 1.0 -- 21:43:10.759 DEBUG [26946]: Connecting to database... -- 21:43:10.759 DEBUG [26946]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:43:10.759 SQL [26946]: pgsql_db_connect() -- 21:43:10.763 DEBUG [26946]: Database connection successful -- 21:43:10.763 INFO [26946]: _SERVER found -- 21:43:10.763 INFO [26946]: REMOTE_ADDR = 192.168.1.13 -- 21:43:10.763 INFO [26946]: SERVER_NAME = oameye.works.coregrade.com -- 21:43:10.763 INFO [26946]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=tomgl1eseudlqldkqdtssvd11s4h0vh9 -- 21:43:10.763 INFO [26946]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:43:10.763 INFO [26946]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:43:10.774 INFO [26946]: COREGRADE is stopping... -- 21:43:10.774 DEBUG [26946]: Closing database connection -- 21:43:10.774 SQL [26946]: pgsql_close() -- 21:43:10.860 INFO [26946]: COREGRADE is starting... -- 21:43:10.860 INFO [26946]: Version from config: 1.0 -- 21:43:10.860 DEBUG [26946]: Connecting to database... -- 21:43:10.860 DEBUG [26946]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:43:10.860 SQL [26946]: pgsql_db_connect() -- 21:43:10.864 DEBUG [26946]: Database connection successful -- 21:43:10.864 INFO [26946]: _SERVER found -- 21:43:10.864 INFO [26946]: REMOTE_ADDR = 192.168.1.13 -- 21:43:10.864 INFO [26946]: SERVER_NAME = oameye.works.coregrade.com -- 21:43:10.864 INFO [26946]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=tomgl1eseudlqldkqdtssvd11s4h0vh9 -- 21:43:10.864 INFO [26946]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:43:10.864 INFO [26946]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:43:10.875 INFO [26946]: COREGRADE is stopping... -- 21:43:10.875 DEBUG [26946]: Closing database connection -- 21:43:10.875 SQL [26946]: pgsql_close() -- 21:43:10.886 INFO [28415]: COREGRADE is starting... -- 21:43:10.887 INFO [28415]: Version from config: 1.0 -- 21:43:10.887 DEBUG [28415]: Connecting to database... -- 21:43:10.887 DEBUG [28415]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:43:10.887 SQL [28415]: pgsql_db_connect() -- 21:43:10.890 DEBUG [28415]: Database connection successful -- 21:43:10.890 INFO [28415]: _SERVER found -- 21:43:10.890 INFO [28415]: REMOTE_ADDR = 192.168.1.13 -- 21:43:10.890 INFO [28415]: SERVER_NAME = oameye.works.coregrade.com -- 21:43:10.890 INFO [28415]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=tomgl1eseudlqldkqdtssvd11s4h0vh9 -- 21:43:10.890 INFO [28415]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 21:43:10.890 INFO [28415]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:43:10.902 INFO [28415]: COREGRADE is stopping... -- 21:43:10.902 DEBUG [28415]: Closing database connection -- 21:43:10.902 SQL [28415]: pgsql_close() -- 00:18:55.950 INFO [8461]: COREGRADE is starting... -- 00:18:55.951 INFO [8461]: Version from config: 1.0 -- 00:18:55.951 DEBUG [8461]: Connecting to database... -- 00:18:55.951 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:18:55.951 SQL [8461]: pgsql_db_connect() -- 00:18:55.956 DEBUG [8461]: Database connection successful -- 00:18:55.956 INFO [8461]: _SERVER found -- 00:18:55.956 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 00:18:55.956 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 00:18:55.956 INFO [8461]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035 -- 00:18:55.956 INFO [8461]: QUERY_STRING = -- 00:18:55.956 INFO [8461]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:18:56.007 INFO [8461]: COREGRADE is stopping... -- 00:18:56.007 DEBUG [8461]: Closing database connection -- 00:18:56.007 SQL [8461]: pgsql_close() -- 00:18:56.391 INFO [8465]: COREGRADE is starting... -- 00:18:56.391 INFO [8465]: Version from config: 1.0 -- 00:18:56.391 DEBUG [8465]: Connecting to database... -- 00:18:56.391 DEBUG [8465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:18:56.391 SQL [8465]: pgsql_db_connect() -- 00:18:56.395 DEBUG [8465]: Database connection successful -- 00:18:56.395 INFO [8465]: _SERVER found -- 00:18:56.395 INFO [8465]: REMOTE_ADDR = 192.168.1.13 -- 00:18:56.395 INFO [8465]: SERVER_NAME = oameye.works.coregrade.com -- 00:18:56.395 INFO [8465]: HTTP_COOKIE = ci_session=olvvvlvhpbqgtt77dvia3a37d8ua5qse; _ga=GA1.2.377719551.1581411035 -- 00:18:56.395 INFO [8465]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 00:18:56.395 INFO [8465]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:18:56.409 INFO [8465]: COREGRADE is stopping... -- 00:18:56.410 DEBUG [8465]: Closing database connection -- 00:18:56.410 SQL [8465]: pgsql_close() -- 00:18:56.425 INFO [8464]: COREGRADE is starting... -- 00:18:56.425 INFO [8464]: Version from config: 1.0 -- 00:18:56.425 DEBUG [8464]: Connecting to database... -- 00:18:56.425 DEBUG [8464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:18:56.425 SQL [8464]: pgsql_db_connect() -- 00:18:56.429 DEBUG [8464]: Database connection successful -- 00:18:56.429 INFO [8464]: _SERVER found -- 00:18:56.429 INFO [8464]: REMOTE_ADDR = 192.168.1.13 -- 00:18:56.430 INFO [8464]: SERVER_NAME = oameye.works.coregrade.com -- 00:18:56.430 INFO [8464]: HTTP_COOKIE = ci_session=olvvvlvhpbqgtt77dvia3a37d8ua5qse; _ga=GA1.2.377719551.1581411035 -- 00:18:56.430 INFO [8464]: QUERY_STRING = /assets/img/footer_1.jpg -- 00:18:56.430 INFO [8464]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:18:56.445 INFO [8464]: COREGRADE is stopping... -- 00:18:56.445 DEBUG [8464]: Closing database connection -- 00:18:56.445 SQL [8464]: pgsql_close() -- 00:19:09.483 INFO [9136]: COREGRADE is starting... -- 00:19:09.484 INFO [9136]: Version from config: 1.0 -- 00:19:09.484 DEBUG [9136]: Connecting to database... -- 00:19:09.484 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:19:09.484 SQL [9136]: pgsql_db_connect() -- 00:19:09.488 DEBUG [9136]: Database connection successful -- 00:19:09.488 INFO [9136]: _SERVER found -- 00:19:09.488 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:19:09.488 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:19:09.488 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.394406628.1581657541; ci_session=olvvvlvhpbqgtt77dvia3a37d8ua5qse -- 00:19:09.488 INFO [9136]: QUERY_STRING = /auth -- 00:19:09.488 INFO [9136]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:19:09.528 INFO [9136]: COREGRADE is stopping... -- 00:19:09.528 DEBUG [9136]: Closing database connection -- 00:19:09.528 SQL [9136]: pgsql_close() -- 00:19:09.790 INFO [9139]: COREGRADE is starting... -- 00:19:09.791 INFO [9139]: Version from config: 1.0 -- 00:19:09.791 DEBUG [9139]: Connecting to database... -- 00:19:09.791 DEBUG [9139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:19:09.791 SQL [9139]: pgsql_db_connect() -- 00:19:09.795 DEBUG [9139]: Database connection successful -- 00:19:09.795 INFO [9139]: _SERVER found -- 00:19:09.795 INFO [9139]: REMOTE_ADDR = 192.168.1.13 -- 00:19:09.795 INFO [9139]: SERVER_NAME = oameye.works.coregrade.com -- 00:19:09.795 INFO [9139]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.394406628.1581657541; ci_session=olvvvlvhpbqgtt77dvia3a37d8ua5qse -- 00:19:09.795 INFO [9139]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 00:19:09.795 INFO [9139]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:19:09.810 INFO [9139]: COREGRADE is stopping... -- 00:19:09.810 DEBUG [9139]: Closing database connection -- 00:19:09.810 SQL [9139]: pgsql_close() -- 00:19:09.879 INFO [9136]: COREGRADE is starting... -- 00:19:09.879 INFO [9136]: Version from config: 1.0 -- 00:19:09.879 DEBUG [9136]: Connecting to database... -- 00:19:09.879 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:19:09.879 SQL [9136]: pgsql_db_connect() -- 00:19:09.883 DEBUG [9136]: Database connection successful -- 00:19:09.883 INFO [9136]: _SERVER found -- 00:19:09.883 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:19:09.883 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:19:09.883 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.394406628.1581657541; ci_session=olvvvlvhpbqgtt77dvia3a37d8ua5qse -- 00:19:09.883 INFO [9136]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:19:09.883 INFO [9136]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:19:09.895 INFO [9136]: COREGRADE is stopping... -- 00:19:09.895 DEBUG [9136]: Closing database connection -- 00:19:09.895 SQL [9136]: pgsql_close() -- 00:19:13.498 INFO [9136]: COREGRADE is starting... -- 00:19:13.499 INFO [9136]: Version from config: 1.0 -- 00:19:13.499 DEBUG [9136]: Connecting to database... -- 00:19:13.499 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:19:13.499 SQL [9136]: pgsql_db_connect() -- 00:19:13.537 INFO [9136]: COREGRADE is starting... -- 00:19:13.537 INFO [9136]: Version from config: 1.0 -- 00:19:13.537 DEBUG [9136]: Connecting to database... -- 00:19:13.537 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:19:13.537 SQL [9136]: pgsql_db_connect() -- 00:19:13.541 DEBUG [9136]: Database connection successful -- 00:19:13.541 INFO [9136]: _SERVER found -- 00:19:13.541 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:19:13.541 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:19:13.541 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310 -- 00:19:13.541 INFO [9136]: QUERY_STRING = -- 00:19:13.541 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:19:13.541 INFO [9136]: SystemStatus()09-09-********~************ -- 00:19:13.541 INFO [9136]: long coregrade_api_main(CVars in, CVars &out) -- 00:19:13.541 INFO [9136]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 00:19:13.541 INFO [9136]: account calls -- 00:19:13.541 INFO [9136]: account_calls() -- 00:19:13.541 INFO [9136]: LoginCoreGradeAccount() -- 00:19:13.541 FLOG_MAX [9136]: REQ_STRING(username) -- 00:19:13.541 FLOG_MAX [9136]: REQ_STRING(password) -- 00:19:13.541 FLOG_MAX [9136]: REQ_STRING(sessionid) -- 00:19:13.541 FLOG_MAX [9136]: long load_db_record( CVars &rec, const char * query, ... ) -- 00:19:13.541 SQL [9136]: pgsql_query() -- 00:19:13.541 SQL [9136]: About to run query: -- 00:19:13.541 SQL [9136]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 00:19:13.545 SQL [9136]: Found rows: 1 -- 00:19:13.545 FLOG_MAX [9136]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 00:19:13.545 INFO [9136]: long SessionCheck(long uid, const char *sessionid, int create ) -- 00:19:13.545 SQL [9136]: pgsql_exec() -- 00:19:13.545 SQL [9136]: About to run query: -- 00:19:13.545 SQL [9136]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 00:19:13.547 SQL [9136]: PQcmdTuples: 1 -- 00:19:13.547 SQL [9136]: Affected rows: 1 -- 00:19:13.547 SQL [9136]: pgsql_exec() -- 00:19:13.547 SQL [9136]: About to run query: -- 00:19:13.547 SQL [9136]: DELETE FROM members_session WHERE member_id=5 -- 00:19:13.547 SQL [9136]: PQcmdTuples: 0 -- 00:19:13.547 SQL [9136]: Affected rows: 0 -- 00:19:13.547 SQL [9136]: pgsql_query() -- 00:19:13.547 SQL [9136]: About to run query: -- 00:19:13.547 SQL [9136]: SELECT * FROM members_session WHERE member_id=5 AND session<>'9243E07DCAB45FF3876FCCD1EC26613C' -- 00:19:13.548 SQL [9136]: Found rows: 0 -- 00:19:13.548 SQL [9136]: Found rows: 0 -- 00:19:13.548 FLOG_MAX [9136]: long load_db_record( CVars &rec, const char * query, ... ) -- 00:19:13.548 SQL [9136]: pgsql_query() -- 00:19:13.548 SQL [9136]: About to run query: -- 00:19:13.548 SQL [9136]: SELECT * FROM members_session WHERE member_id=5 AND session='9243E07DCAB45FF3876FCCD1EC26613C' -- 00:19:13.548 SQL [9136]: Found rows: 0 -- 00:19:13.548 SQL [9136]: Found rows: 0 -- 00:19:13.548 FLOG_MAX [9136]: insert_db_record() -- 00:19:13.548 SQL [9136]: pgsql_exec() -- 00:19:13.548 SQL [9136]: About to run query: -- 00:19:13.548 SQL [9136]: INSERT INTO members_session (member_id,session) VALUES ('5','9243E07DCAB45FF3876FCCD1EC26613C') -- 00:19:13.550 SQL [9136]: PQcmdTuples: 1 -- 00:19:13.550 SQL [9136]: Affected rows: 1 -- 00:19:13.550 FLOG_MAX [9136]: SELECT currval('members_session_id_seq') -- 00:19:13.550 SQL [9136]: pgsql_query() -- 00:19:13.550 SQL [9136]: About to run query: -- 00:19:13.550 SQL [9136]: SELECT currval('members_session_id_seq') -- 00:19:13.551 SQL [9136]: Found rows: 1 -- 00:19:13.551 INFO [9136]: CreateDefaultPage() -- 00:19:13.551 FLOG_MAX [9136]: long load_db_record( CVars &rec, const char * query, ... ) -- 00:19:13.551 SQL [9136]: pgsql_query() -- 00:19:13.551 SQL [9136]: About to run query: -- 00:19:13.551 SQL [9136]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 00:19:13.551 SQL [9136]: Found rows: 1 -- 00:19:13.551 FLOG_MAX [9136]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 00:19:13.551 SQL [9136]: pgsql_query() -- 00:19:13.551 SQL [9136]: About to run query: -- 00:19:13.551 SQL [9136]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 00:19:13.551 SQL [9136]: Found rows: 1 -- 00:19:13.551 INFO [9136]: /CreateDefaultPage() -- 00:19:13.551 INFO [9136]: /LoginCoreGradeAccount() -- 00:19:13.551 INFO [9136]: RET: added=2020-02-05 06:47:23.982154 -- 00:19:13.551 INFO [9136]: RET: email=ameye+11@chiefsoft.com -- 00:19:13.551 INFO [9136]: RET: firstname=Olu -- 00:19:13.551 INFO [9136]: RET: id=5 -- 00:19:13.551 INFO [9136]: RET: last_login= -- 00:19:13.551 INFO [9136]: RET: lastname=Amey -- 00:19:13.551 INFO [9136]: RET: loc=192.168.1.13 -- 00:19:13.551 INFO [9136]: RET: member_id=5 -- 00:19:13.551 INFO [9136]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 00:19:13.551 INFO [9136]: RET: phone= -- 00:19:13.551 INFO [9136]: RET: pid= -- 00:19:13.551 INFO [9136]: RET: result=YES I GET TO BACK END -- 00:19:13.551 INFO [9136]: RET: sessionid=9243E07DCAB45FF3876FCCD1EC26613C -- 00:19:13.551 INFO [9136]: RET: status=1 -- 00:19:13.551 INFO [9136]: RET: stauts=OK -- 00:19:13.551 INFO [9136]: RET: username=ameye+11@chiefsoft.com -- 00:19:13.551 INFO [9136]: RET: verified= -- 00:19:13.553 INFO [9136]: COREGRADE is stopping... -- 00:19:13.553 DEBUG [9136]: Closing database connection -- 00:19:13.553 SQL [9136]: pgsql_close() -- 00:19:13.503 DEBUG [9136]: Database connection successful -- 00:19:13.503 INFO [9136]: _SERVER found -- 00:19:13.503 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:19:13.503 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:19:13.503 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310 -- 00:19:13.503 INFO [9136]: QUERY_STRING = /auth -- 00:19:13.503 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:19:13.553 INFO [9136]: COREGRADE is stopping... -- 00:19:13.553 DEBUG [9136]: Closing database connection -- 00:19:13.553 SQL [9136]: pgsql_close() -- 00:19:13.568 INFO [9136]: COREGRADE is starting... -- 00:19:13.568 INFO [9136]: Version from config: 1.0 -- 00:19:13.568 DEBUG [9136]: Connecting to database... -- 00:19:13.568 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:19:13.568 SQL [9136]: pgsql_db_connect() -- 00:19:13.572 DEBUG [9136]: Database connection successful -- 00:19:13.572 INFO [9136]: _SERVER found -- 00:19:13.572 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:19:13.572 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:19:13.572 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ahpdbedio48rreoouasnna6ah4pdi8pi -- 00:19:13.572 INFO [9136]: QUERY_STRING = /member/index -- 00:19:13.572 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:19:13.612 INFO [9136]: COREGRADE is stopping... -- 00:19:13.612 DEBUG [9136]: Closing database connection -- 00:19:13.612 SQL [9136]: pgsql_close() -- 00:19:13.973 INFO [9136]: COREGRADE is starting... -- 00:19:13.973 INFO [9136]: Version from config: 1.0 -- 00:19:13.973 DEBUG [9136]: Connecting to database... -- 00:19:13.973 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:19:13.973 SQL [9136]: pgsql_db_connect() -- 00:19:13.977 DEBUG [9136]: Database connection successful -- 00:19:13.977 INFO [9136]: _SERVER found -- 00:19:13.977 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:19:13.977 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:19:13.977 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ahpdbedio48rreoouasnna6ah4pdi8pi -- 00:19:13.977 INFO [9136]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:19:13.977 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:19:13.988 INFO [9136]: COREGRADE is stopping... -- 00:19:13.988 DEBUG [9136]: Closing database connection -- 00:19:13.988 SQL [9136]: pgsql_close() -- 00:19:14.034 INFO [9136]: COREGRADE is starting... -- 00:19:14.035 INFO [9136]: Version from config: 1.0 -- 00:19:14.035 DEBUG [9136]: Connecting to database... -- 00:19:14.035 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:19:14.035 SQL [9136]: pgsql_db_connect() -- 00:19:14.039 DEBUG [9136]: Database connection successful -- 00:19:14.039 INFO [9136]: _SERVER found -- 00:19:14.039 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:19:14.039 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:19:14.039 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ahpdbedio48rreoouasnna6ah4pdi8pi -- 00:19:14.039 INFO [9136]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:19:14.039 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:19:14.050 INFO [9136]: COREGRADE is stopping... -- 00:19:14.050 DEBUG [9136]: Closing database connection -- 00:19:14.050 SQL [9136]: pgsql_close() -- 00:19:20.345 INFO [8462]: COREGRADE is starting... -- 00:19:20.346 INFO [8462]: Version from config: 1.0 -- 00:19:20.346 DEBUG [8462]: Connecting to database... -- 00:19:20.346 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:19:20.346 SQL [8462]: pgsql_db_connect() -- 00:19:20.350 DEBUG [8462]: Database connection successful -- 00:19:20.350 INFO [8462]: _SERVER found -- 00:19:20.350 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:19:20.350 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:19:20.350 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ahpdbedio48rreoouasnna6ah4pdi8pi -- 00:19:20.350 INFO [8462]: QUERY_STRING = /member/mycalendar -- 00:19:20.350 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:19:20.395 INFO [8462]: COREGRADE is stopping... -- 00:19:20.395 DEBUG [8462]: Closing database connection -- 00:19:20.395 SQL [8462]: pgsql_close() -- 00:19:20.660 INFO [8462]: COREGRADE is starting... -- 00:19:20.660 INFO [8462]: Version from config: 1.0 -- 00:19:20.660 DEBUG [8462]: Connecting to database... -- 00:19:20.660 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:19:20.660 SQL [8462]: pgsql_db_connect() -- 00:19:20.664 DEBUG [8462]: Database connection successful -- 00:19:20.664 INFO [8462]: _SERVER found -- 00:19:20.664 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:19:20.664 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:19:20.664 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ahpdbedio48rreoouasnna6ah4pdi8pi -- 00:19:20.664 INFO [8462]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:19:20.664 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:19:20.676 INFO [8462]: COREGRADE is stopping... -- 00:19:20.676 DEBUG [8462]: Closing database connection -- 00:19:20.676 SQL [8462]: pgsql_close() -- 00:19:22.003 INFO [8462]: COREGRADE is starting... -- 00:19:22.003 INFO [8462]: Version from config: 1.0 -- 00:19:22.003 DEBUG [8462]: Connecting to database... -- 00:19:22.004 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:19:22.004 SQL [8462]: pgsql_db_connect() -- 00:19:22.008 DEBUG [8462]: Database connection successful -- 00:19:22.008 INFO [8462]: _SERVER found -- 00:19:22.008 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:19:22.008 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:19:22.008 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ahpdbedio48rreoouasnna6ah4pdi8pi -- 00:19:22.008 INFO [8462]: QUERY_STRING = /member -- 00:19:22.008 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:19:22.050 INFO [8462]: COREGRADE is stopping... -- 00:19:22.050 DEBUG [8462]: Closing database connection -- 00:19:22.050 SQL [8462]: pgsql_close() -- 00:19:22.242 INFO [8462]: COREGRADE is starting... -- 00:19:22.243 INFO [8462]: Version from config: 1.0 -- 00:19:22.243 DEBUG [8462]: Connecting to database... -- 00:19:22.243 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:19:22.243 SQL [8462]: pgsql_db_connect() -- 00:19:22.247 DEBUG [8462]: Database connection successful -- 00:19:22.247 INFO [8462]: _SERVER found -- 00:19:22.247 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:19:22.247 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:19:22.247 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ahpdbedio48rreoouasnna6ah4pdi8pi -- 00:19:22.247 INFO [8462]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:19:22.247 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:19:22.258 INFO [8462]: COREGRADE is stopping... -- 00:19:22.258 DEBUG [8462]: Closing database connection -- 00:19:22.258 SQL [8462]: pgsql_close() -- 00:19:43.406 INFO [8463]: COREGRADE is starting... -- 00:19:43.406 INFO [8463]: Version from config: 1.0 -- 00:19:43.406 DEBUG [8463]: Connecting to database... -- 00:19:43.406 DEBUG [8463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:19:43.406 SQL [8463]: pgsql_db_connect() -- 00:19:43.448 INFO [8463]: COREGRADE is starting... -- 00:19:43.448 INFO [8463]: Version from config: 1.0 -- 00:19:43.448 DEBUG [8463]: Connecting to database... -- 00:19:43.448 DEBUG [8463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:19:43.448 SQL [8463]: pgsql_db_connect() -- 00:19:43.452 DEBUG [8463]: Database connection successful -- 00:19:43.452 INFO [8463]: _SERVER found -- 00:19:43.452 INFO [8463]: REMOTE_ADDR = 192.168.1.13 -- 00:19:43.452 INFO [8463]: SERVER_NAME = oameye.works.coregrade.com -- 00:19:43.452 INFO [8463]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.394406628.1581657541; ci_session=olvvvlvhpbqgtt77dvia3a37d8ua5qse -- 00:19:43.452 INFO [8463]: QUERY_STRING = -- 00:19:43.452 INFO [8463]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:19:43.452 INFO [8463]: SystemStatus()09-09-********~************ -- 00:19:43.452 INFO [8463]: long coregrade_api_main(CVars in, CVars &out) -- 00:19:43.452 INFO [8463]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 00:19:43.452 INFO [8463]: account calls -- 00:19:43.452 INFO [8463]: account_calls() -- 00:19:43.452 INFO [8463]: LoginCoreGradeAccount() -- 00:19:43.452 FLOG_MAX [8463]: REQ_STRING(username) -- 00:19:43.453 FLOG_MAX [8463]: REQ_STRING(password) -- 00:19:43.453 FLOG_MAX [8463]: REQ_STRING(sessionid) -- 00:19:43.453 FLOG_MAX [8463]: long load_db_record( CVars &rec, const char * query, ... ) -- 00:19:43.453 SQL [8463]: pgsql_query() -- 00:19:43.453 SQL [8463]: About to run query: -- 00:19:43.453 SQL [8463]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 00:19:43.456 SQL [8463]: Found rows: 1 -- 00:19:43.456 FLOG_MAX [8463]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 00:19:43.456 INFO [8463]: long SessionCheck(long uid, const char *sessionid, int create ) -- 00:19:43.456 SQL [8463]: pgsql_exec() -- 00:19:43.456 SQL [8463]: About to run query: -- 00:19:43.456 SQL [8463]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 00:19:43.457 SQL [8463]: PQcmdTuples: 0 -- 00:19:43.457 SQL [8463]: Affected rows: 0 -- 00:19:43.457 SQL [8463]: pgsql_exec() -- 00:19:43.457 SQL [8463]: About to run query: -- 00:19:43.457 SQL [8463]: DELETE FROM members_session WHERE member_id=5 -- 00:19:43.458 SQL [8463]: PQcmdTuples: 1 -- 00:19:43.458 SQL [8463]: Affected rows: 1 -- 00:19:43.458 SQL [8463]: pgsql_query() -- 00:19:43.458 SQL [8463]: About to run query: -- 00:19:43.458 SQL [8463]: SELECT * FROM members_session WHERE member_id=5 AND session<>'73D0A1C0BC173E64E8943C0C8DD8B0F7' -- 00:19:43.458 SQL [8463]: Found rows: 0 -- 00:19:43.458 SQL [8463]: Found rows: 0 -- 00:19:43.458 FLOG_MAX [8463]: long load_db_record( CVars &rec, const char * query, ... ) -- 00:19:43.458 SQL [8463]: pgsql_query() -- 00:19:43.458 SQL [8463]: About to run query: -- 00:19:43.458 SQL [8463]: SELECT * FROM members_session WHERE member_id=5 AND session='73D0A1C0BC173E64E8943C0C8DD8B0F7' -- 00:19:43.459 SQL [8463]: Found rows: 0 -- 00:19:43.459 SQL [8463]: Found rows: 0 -- 00:19:43.459 FLOG_MAX [8463]: insert_db_record() -- 00:19:43.459 SQL [8463]: pgsql_exec() -- 00:19:43.459 SQL [8463]: About to run query: -- 00:19:43.459 SQL [8463]: INSERT INTO members_session (member_id,session) VALUES ('5','73D0A1C0BC173E64E8943C0C8DD8B0F7') -- 00:19:43.460 SQL [8463]: PQcmdTuples: 1 -- 00:19:43.460 SQL [8463]: Affected rows: 1 -- 00:19:43.460 FLOG_MAX [8463]: SELECT currval('members_session_id_seq') -- 00:19:43.460 SQL [8463]: pgsql_query() -- 00:19:43.460 SQL [8463]: About to run query: -- 00:19:43.460 SQL [8463]: SELECT currval('members_session_id_seq') -- 00:19:43.460 SQL [8463]: Found rows: 1 -- 00:19:43.460 INFO [8463]: CreateDefaultPage() -- 00:19:43.460 FLOG_MAX [8463]: long load_db_record( CVars &rec, const char * query, ... ) -- 00:19:43.460 SQL [8463]: pgsql_query() -- 00:19:43.460 SQL [8463]: About to run query: -- 00:19:43.460 SQL [8463]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 00:19:43.461 SQL [8463]: Found rows: 1 -- 00:19:43.461 FLOG_MAX [8463]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 00:19:43.461 SQL [8463]: pgsql_query() -- 00:19:43.461 SQL [8463]: About to run query: -- 00:19:43.461 SQL [8463]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 00:19:43.461 SQL [8463]: Found rows: 1 -- 00:19:43.461 INFO [8463]: /CreateDefaultPage() -- 00:19:43.461 INFO [8463]: /LoginCoreGradeAccount() -- 00:19:43.461 INFO [8463]: RET: added=2020-02-05 06:47:23.982154 -- 00:19:43.461 INFO [8463]: RET: email=ameye+11@chiefsoft.com -- 00:19:43.461 INFO [8463]: RET: firstname=Olu -- 00:19:43.461 INFO [8463]: RET: id=5 -- 00:19:43.461 INFO [8463]: RET: last_login= -- 00:19:43.461 INFO [8463]: RET: lastname=Amey -- 00:19:43.461 INFO [8463]: RET: loc=192.168.1.13 -- 00:19:43.461 INFO [8463]: RET: member_id=5 -- 00:19:43.461 INFO [8463]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 00:19:43.461 INFO [8463]: RET: phone= -- 00:19:43.461 INFO [8463]: RET: pid= -- 00:19:43.461 INFO [8463]: RET: result=YES I GET TO BACK END -- 00:19:43.461 INFO [8463]: RET: sessionid=73D0A1C0BC173E64E8943C0C8DD8B0F7 -- 00:19:43.461 INFO [8463]: RET: status=1 -- 00:19:43.461 INFO [8463]: RET: stauts=OK -- 00:19:43.461 INFO [8463]: RET: username=ameye+11@chiefsoft.com -- 00:19:43.461 INFO [8463]: RET: verified= -- 00:19:43.463 INFO [8463]: COREGRADE is stopping... -- 00:19:43.463 DEBUG [8463]: Closing database connection -- 00:19:43.463 SQL [8463]: pgsql_close() -- 00:19:43.410 DEBUG [8463]: Database connection successful -- 00:19:43.410 INFO [8463]: _SERVER found -- 00:19:43.410 INFO [8463]: REMOTE_ADDR = 192.168.1.13 -- 00:19:43.410 INFO [8463]: SERVER_NAME = oameye.works.coregrade.com -- 00:19:43.410 INFO [8463]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.394406628.1581657541; ci_session=olvvvlvhpbqgtt77dvia3a37d8ua5qse -- 00:19:43.410 INFO [8463]: QUERY_STRING = /auth -- 00:19:43.410 INFO [8463]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:19:43.463 INFO [8463]: COREGRADE is stopping... -- 00:19:43.463 DEBUG [8463]: Closing database connection -- 00:19:43.463 SQL [8463]: pgsql_close() -- 00:19:43.498 INFO [8463]: COREGRADE is starting... -- 00:19:43.499 INFO [8463]: Version from config: 1.0 -- 00:19:43.499 DEBUG [8463]: Connecting to database... -- 00:19:43.499 DEBUG [8463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:19:43.499 SQL [8463]: pgsql_db_connect() -- 00:19:43.503 DEBUG [8463]: Database connection successful -- 00:19:43.503 INFO [8463]: _SERVER found -- 00:19:43.503 INFO [8463]: REMOTE_ADDR = 192.168.1.13 -- 00:19:43.503 INFO [8463]: SERVER_NAME = oameye.works.coregrade.com -- 00:19:43.503 INFO [8463]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.394406628.1581657541; ci_session=olvvvlvhpbqgtt77dvia3a37d8ua5qse -- 00:19:43.503 INFO [8463]: QUERY_STRING = /member/index -- 00:19:43.503 INFO [8463]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:19:43.547 INFO [8463]: COREGRADE is stopping... -- 00:19:43.547 DEBUG [8463]: Closing database connection -- 00:19:43.547 SQL [8463]: pgsql_close() -- 00:19:43.947 INFO [8464]: COREGRADE is starting... -- 00:19:43.947 INFO [8464]: Version from config: 1.0 -- 00:19:43.947 DEBUG [8464]: Connecting to database... -- 00:19:43.947 DEBUG [8464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:19:43.947 SQL [8464]: pgsql_db_connect() -- 00:19:43.951 DEBUG [8464]: Database connection successful -- 00:19:43.951 INFO [8464]: _SERVER found -- 00:19:43.951 INFO [8464]: REMOTE_ADDR = 192.168.1.13 -- 00:19:43.951 INFO [8464]: SERVER_NAME = oameye.works.coregrade.com -- 00:19:43.951 INFO [8464]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.394406628.1581657541; ci_session=olvvvlvhpbqgtt77dvia3a37d8ua5qse -- 00:19:43.951 INFO [8464]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:19:43.951 INFO [8464]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:19:43.963 INFO [8464]: COREGRADE is stopping... -- 00:19:43.963 DEBUG [8464]: Closing database connection -- 00:19:43.963 SQL [8464]: pgsql_close() -- 00:19:44.146 INFO [8463]: COREGRADE is starting... -- 00:19:44.147 INFO [8463]: Version from config: 1.0 -- 00:19:44.147 DEBUG [8463]: Connecting to database... -- 00:19:44.147 DEBUG [8463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:19:44.147 SQL [8463]: pgsql_db_connect() -- 00:19:44.151 DEBUG [8463]: Database connection successful -- 00:19:44.151 INFO [8463]: _SERVER found -- 00:19:44.151 INFO [8463]: REMOTE_ADDR = 192.168.1.13 -- 00:19:44.151 INFO [8463]: SERVER_NAME = oameye.works.coregrade.com -- 00:19:44.151 INFO [8463]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.394406628.1581657541; ci_session=olvvvlvhpbqgtt77dvia3a37d8ua5qse -- 00:19:44.151 INFO [8463]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:19:44.151 INFO [8463]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:19:44.162 INFO [8463]: COREGRADE is stopping... -- 00:19:44.162 DEBUG [8463]: Closing database connection -- 00:19:44.162 SQL [8463]: pgsql_close() -- 00:21:37.026 INFO [9137]: COREGRADE is starting... -- 00:21:37.026 INFO [9137]: Version from config: 1.0 -- 00:21:37.026 DEBUG [9137]: Connecting to database... -- 00:21:37.026 DEBUG [9137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:21:37.026 SQL [9137]: pgsql_db_connect() -- 00:21:37.030 DEBUG [9137]: Database connection successful -- 00:21:37.030 INFO [9137]: _SERVER found -- 00:21:37.030 INFO [9137]: REMOTE_ADDR = 192.168.1.13 -- 00:21:37.030 INFO [9137]: SERVER_NAME = oameye.works.coregrade.com -- 00:21:37.030 INFO [9137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ahpdbedio48rreoouasnna6ah4pdi8pi -- 00:21:37.030 INFO [9137]: QUERY_STRING = /member/page -- 00:21:37.030 INFO [9137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:21:37.079 INFO [9137]: COREGRADE is stopping... -- 00:21:37.079 DEBUG [9137]: Closing database connection -- 00:21:37.079 SQL [9137]: pgsql_close() -- 00:21:37.431 INFO [9137]: COREGRADE is starting... -- 00:21:37.431 INFO [9137]: Version from config: 1.0 -- 00:21:37.431 DEBUG [9137]: Connecting to database... -- 00:21:37.431 DEBUG [9137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:21:37.431 SQL [9137]: pgsql_db_connect() -- 00:21:37.435 DEBUG [9137]: Database connection successful -- 00:21:37.435 INFO [9137]: _SERVER found -- 00:21:37.435 INFO [9137]: REMOTE_ADDR = 192.168.1.13 -- 00:21:37.435 INFO [9137]: SERVER_NAME = oameye.works.coregrade.com -- 00:21:37.435 INFO [9137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ahpdbedio48rreoouasnna6ah4pdi8pi -- 00:21:37.435 INFO [9137]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:21:37.435 INFO [9137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:21:37.448 INFO [9137]: COREGRADE is stopping... -- 00:21:37.448 DEBUG [9137]: Closing database connection -- 00:21:37.448 SQL [9137]: pgsql_close() -- 00:21:39.853 INFO [9137]: COREGRADE is starting... -- 00:21:39.854 INFO [9137]: Version from config: 1.0 -- 00:21:39.854 DEBUG [9137]: Connecting to database... -- 00:21:39.854 DEBUG [9137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:21:39.854 SQL [9137]: pgsql_db_connect() -- 00:21:39.858 DEBUG [9137]: Database connection successful -- 00:21:39.858 INFO [9137]: _SERVER found -- 00:21:39.858 INFO [9137]: REMOTE_ADDR = 192.168.1.13 -- 00:21:39.858 INFO [9137]: SERVER_NAME = oameye.works.coregrade.com -- 00:21:39.858 INFO [9137]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541; ci_session=olvvvlvhpbqgtt77dvia3a37d8ua5qse -- 00:21:39.858 INFO [9137]: QUERY_STRING = /member/page -- 00:21:39.858 INFO [9137]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:21:39.905 INFO [9137]: COREGRADE is stopping... -- 00:21:39.905 DEBUG [9137]: Closing database connection -- 00:21:39.905 SQL [9137]: pgsql_close() -- 00:21:39.975 INFO [9137]: COREGRADE is starting... -- 00:21:39.975 INFO [9137]: Version from config: 1.0 -- 00:21:39.975 DEBUG [9137]: Connecting to database... -- 00:21:39.975 DEBUG [9137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:21:39.975 SQL [9137]: pgsql_db_connect() -- 00:21:39.979 DEBUG [9137]: Database connection successful -- 00:21:39.979 INFO [9137]: _SERVER found -- 00:21:39.979 INFO [9137]: REMOTE_ADDR = 192.168.1.13 -- 00:21:39.979 INFO [9137]: SERVER_NAME = oameye.works.coregrade.com -- 00:21:39.979 INFO [9137]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541; ci_session=olvvvlvhpbqgtt77dvia3a37d8ua5qse -- 00:21:39.979 INFO [9137]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:21:39.979 INFO [9137]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:21:39.990 INFO [9137]: COREGRADE is stopping... -- 00:21:39.990 DEBUG [9137]: Closing database connection -- 00:21:39.990 SQL [9137]: pgsql_close() -- 00:21:40.035 INFO [9137]: COREGRADE is starting... -- 00:21:40.035 INFO [9137]: Version from config: 1.0 -- 00:21:40.035 DEBUG [9137]: Connecting to database... -- 00:21:40.035 DEBUG [9137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:21:40.035 SQL [9137]: pgsql_db_connect() -- 00:21:40.040 DEBUG [9137]: Database connection successful -- 00:21:40.040 INFO [9137]: _SERVER found -- 00:21:40.040 INFO [9137]: REMOTE_ADDR = 192.168.1.13 -- 00:21:40.040 INFO [9137]: SERVER_NAME = oameye.works.coregrade.com -- 00:21:40.040 INFO [9137]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541; ci_session=olvvvlvhpbqgtt77dvia3a37d8ua5qse -- 00:21:40.040 INFO [9137]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:21:40.040 INFO [9137]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:21:40.051 INFO [9137]: COREGRADE is stopping... -- 00:21:40.051 DEBUG [9137]: Closing database connection -- 00:21:40.051 SQL [9137]: pgsql_close() -- 00:21:56.434 INFO [9138]: COREGRADE is starting... -- 00:21:56.434 INFO [9138]: Version from config: 1.0 -- 00:21:56.434 DEBUG [9138]: Connecting to database... -- 00:21:56.434 DEBUG [9138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:21:56.434 SQL [9138]: pgsql_db_connect() -- 00:21:56.438 DEBUG [9138]: Database connection successful -- 00:21:56.438 INFO [9138]: _SERVER found -- 00:21:56.438 INFO [9138]: REMOTE_ADDR = 192.168.1.13 -- 00:21:56.438 INFO [9138]: SERVER_NAME = oameye.works.coregrade.com -- 00:21:56.438 INFO [9138]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ahpdbedio48rreoouasnna6ah4pdi8pi -- 00:21:56.438 INFO [9138]: QUERY_STRING = /member -- 00:21:56.438 INFO [9138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:21:56.485 INFO [9138]: COREGRADE is stopping... -- 00:21:56.485 DEBUG [9138]: Closing database connection -- 00:21:56.485 SQL [9138]: pgsql_close() -- 00:21:56.737 INFO [9138]: COREGRADE is starting... -- 00:21:56.738 INFO [9138]: Version from config: 1.0 -- 00:21:56.738 DEBUG [9138]: Connecting to database... -- 00:21:56.738 DEBUG [9138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:21:56.738 SQL [9138]: pgsql_db_connect() -- 00:21:56.742 DEBUG [9138]: Database connection successful -- 00:21:56.742 INFO [9138]: _SERVER found -- 00:21:56.742 INFO [9138]: REMOTE_ADDR = 192.168.1.13 -- 00:21:56.742 INFO [9138]: SERVER_NAME = oameye.works.coregrade.com -- 00:21:56.742 INFO [9138]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ahpdbedio48rreoouasnna6ah4pdi8pi -- 00:21:56.742 INFO [9138]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:21:56.742 INFO [9138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:21:56.754 INFO [9138]: COREGRADE is stopping... -- 00:21:56.754 DEBUG [9138]: Closing database connection -- 00:21:56.754 SQL [9138]: pgsql_close() -- 00:21:59.159 INFO [9139]: COREGRADE is starting... -- 00:21:59.159 INFO [9139]: Version from config: 1.0 -- 00:21:59.159 DEBUG [9139]: Connecting to database... -- 00:21:59.159 DEBUG [9139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:21:59.159 SQL [9139]: pgsql_db_connect() -- 00:21:59.163 DEBUG [9139]: Database connection successful -- 00:21:59.163 INFO [9139]: _SERVER found -- 00:21:59.163 INFO [9139]: REMOTE_ADDR = 192.168.1.13 -- 00:21:59.163 INFO [9139]: SERVER_NAME = oameye.works.coregrade.com -- 00:21:59.163 INFO [9139]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541; ci_session=olvvvlvhpbqgtt77dvia3a37d8ua5qse -- 00:21:59.163 INFO [9139]: QUERY_STRING = /member -- 00:21:59.163 INFO [9139]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:21:59.208 INFO [9139]: COREGRADE is stopping... -- 00:21:59.208 DEBUG [9139]: Closing database connection -- 00:21:59.208 SQL [9139]: pgsql_close() -- 00:21:59.290 INFO [9139]: COREGRADE is starting... -- 00:21:59.290 INFO [9139]: Version from config: 1.0 -- 00:21:59.290 DEBUG [9139]: Connecting to database... -- 00:21:59.290 DEBUG [9139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:21:59.290 SQL [9139]: pgsql_db_connect() -- 00:21:59.294 DEBUG [9139]: Database connection successful -- 00:21:59.294 INFO [9139]: _SERVER found -- 00:21:59.294 INFO [9139]: REMOTE_ADDR = 192.168.1.13 -- 00:21:59.294 INFO [9139]: SERVER_NAME = oameye.works.coregrade.com -- 00:21:59.294 INFO [9139]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541; ci_session=olvvvlvhpbqgtt77dvia3a37d8ua5qse -- 00:21:59.294 INFO [9139]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:21:59.294 INFO [9139]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:21:59.305 INFO [9139]: COREGRADE is stopping... -- 00:21:59.305 DEBUG [9139]: Closing database connection -- 00:21:59.305 SQL [9139]: pgsql_close() -- 00:21:59.362 INFO [9139]: COREGRADE is starting... -- 00:21:59.362 INFO [9139]: Version from config: 1.0 -- 00:21:59.362 DEBUG [9139]: Connecting to database... -- 00:21:59.362 DEBUG [9139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:21:59.362 SQL [9139]: pgsql_db_connect() -- 00:21:59.366 DEBUG [9139]: Database connection successful -- 00:21:59.366 INFO [9139]: _SERVER found -- 00:21:59.366 INFO [9139]: REMOTE_ADDR = 192.168.1.13 -- 00:21:59.366 INFO [9139]: SERVER_NAME = oameye.works.coregrade.com -- 00:21:59.366 INFO [9139]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541; ci_session=olvvvlvhpbqgtt77dvia3a37d8ua5qse -- 00:21:59.366 INFO [9139]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:21:59.366 INFO [9139]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:21:59.377 INFO [9139]: COREGRADE is stopping... -- 00:21:59.377 DEBUG [9139]: Closing database connection -- 00:21:59.377 SQL [9139]: pgsql_close() -- 00:22:01.247 INFO [9138]: COREGRADE is starting... -- 00:22:01.248 INFO [9138]: Version from config: 1.0 -- 00:22:01.248 DEBUG [9138]: Connecting to database... -- 00:22:01.248 DEBUG [9138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:22:01.248 SQL [9138]: pgsql_db_connect() -- 00:22:01.252 DEBUG [9138]: Database connection successful -- 00:22:01.252 INFO [9138]: _SERVER found -- 00:22:01.252 INFO [9138]: REMOTE_ADDR = 192.168.1.13 -- 00:22:01.252 INFO [9138]: SERVER_NAME = oameye.works.coregrade.com -- 00:22:01.252 INFO [9138]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ahpdbedio48rreoouasnna6ah4pdi8pi -- 00:22:01.252 INFO [9138]: QUERY_STRING = /member/page -- 00:22:01.252 INFO [9138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:22:01.297 INFO [9138]: COREGRADE is stopping... -- 00:22:01.297 DEBUG [9138]: Closing database connection -- 00:22:01.297 SQL [9138]: pgsql_close() -- 00:22:01.579 INFO [9138]: COREGRADE is starting... -- 00:22:01.580 INFO [9138]: Version from config: 1.0 -- 00:22:01.580 DEBUG [9138]: Connecting to database... -- 00:22:01.580 DEBUG [9138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:22:01.580 SQL [9138]: pgsql_db_connect() -- 00:22:01.584 DEBUG [9138]: Database connection successful -- 00:22:01.584 INFO [9138]: _SERVER found -- 00:22:01.584 INFO [9138]: REMOTE_ADDR = 192.168.1.13 -- 00:22:01.584 INFO [9138]: SERVER_NAME = oameye.works.coregrade.com -- 00:22:01.584 INFO [9138]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ahpdbedio48rreoouasnna6ah4pdi8pi -- 00:22:01.584 INFO [9138]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:22:01.584 INFO [9138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:22:01.596 INFO [9138]: COREGRADE is stopping... -- 00:22:01.596 DEBUG [9138]: Closing database connection -- 00:22:01.596 SQL [9138]: pgsql_close() -- 00:22:05.260 INFO [9136]: COREGRADE is starting... -- 00:22:05.260 INFO [9136]: Version from config: 1.0 -- 00:22:05.260 DEBUG [9136]: Connecting to database... -- 00:22:05.260 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:22:05.260 SQL [9136]: pgsql_db_connect() -- 00:22:05.264 DEBUG [9136]: Database connection successful -- 00:22:05.264 INFO [9136]: _SERVER found -- 00:22:05.264 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:22:05.264 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:22:05.264 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541; ci_session=olvvvlvhpbqgtt77dvia3a37d8ua5qse -- 00:22:05.264 INFO [9136]: QUERY_STRING = /member/page -- 00:22:05.264 INFO [9136]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:22:05.306 INFO [9136]: COREGRADE is stopping... -- 00:22:05.306 DEBUG [9136]: Closing database connection -- 00:22:05.306 SQL [9136]: pgsql_close() -- 00:22:05.401 INFO [9136]: COREGRADE is starting... -- 00:22:05.401 INFO [9136]: Version from config: 1.0 -- 00:22:05.401 DEBUG [9136]: Connecting to database... -- 00:22:05.401 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:22:05.401 SQL [9136]: pgsql_db_connect() -- 00:22:05.405 DEBUG [9136]: Database connection successful -- 00:22:05.405 INFO [9136]: _SERVER found -- 00:22:05.405 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:22:05.405 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:22:05.405 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541; ci_session=olvvvlvhpbqgtt77dvia3a37d8ua5qse -- 00:22:05.405 INFO [9136]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:22:05.405 INFO [9136]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:22:05.416 INFO [9136]: COREGRADE is stopping... -- 00:22:05.416 DEBUG [9136]: Closing database connection -- 00:22:05.416 SQL [9136]: pgsql_close() -- 00:22:05.477 INFO [8462]: COREGRADE is starting... -- 00:22:05.477 INFO [8462]: Version from config: 1.0 -- 00:22:05.477 DEBUG [8462]: Connecting to database... -- 00:22:05.478 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:22:05.478 SQL [8462]: pgsql_db_connect() -- 00:22:05.482 DEBUG [8462]: Database connection successful -- 00:22:05.482 INFO [8462]: _SERVER found -- 00:22:05.482 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:22:05.482 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:22:05.482 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541; ci_session=olvvvlvhpbqgtt77dvia3a37d8ua5qse -- 00:22:05.482 INFO [8462]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:22:05.482 INFO [8462]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:22:05.493 INFO [8462]: COREGRADE is stopping... -- 00:22:05.493 DEBUG [8462]: Closing database connection -- 00:22:05.493 SQL [8462]: pgsql_close() -- 00:22:30.463 INFO [8461]: COREGRADE is starting... -- 00:22:30.463 INFO [8461]: Version from config: 1.0 -- 00:22:30.463 DEBUG [8461]: Connecting to database... -- 00:22:30.463 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:22:30.463 SQL [8461]: pgsql_db_connect() -- 00:22:30.467 DEBUG [8461]: Database connection successful -- 00:22:30.467 INFO [8461]: _SERVER found -- 00:22:30.467 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 00:22:30.467 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 00:22:30.467 INFO [8461]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ahpdbedio48rreoouasnna6ah4pdi8pi -- 00:22:30.467 INFO [8461]: QUERY_STRING = /member -- 00:22:30.467 INFO [8461]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:22:30.510 INFO [8461]: COREGRADE is stopping... -- 00:22:30.510 DEBUG [8461]: Closing database connection -- 00:22:30.510 SQL [8461]: pgsql_close() -- 00:22:30.716 INFO [8461]: COREGRADE is starting... -- 00:22:30.716 INFO [8461]: Version from config: 1.0 -- 00:22:30.716 DEBUG [8461]: Connecting to database... -- 00:22:30.716 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:22:30.716 SQL [8461]: pgsql_db_connect() -- 00:22:30.720 DEBUG [8461]: Database connection successful -- 00:22:30.720 INFO [8461]: _SERVER found -- 00:22:30.720 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 00:22:30.720 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 00:22:30.720 INFO [8461]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ahpdbedio48rreoouasnna6ah4pdi8pi -- 00:22:30.720 INFO [8461]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:22:30.720 INFO [8461]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:22:30.732 INFO [8461]: COREGRADE is stopping... -- 00:22:30.732 DEBUG [8461]: Closing database connection -- 00:22:30.732 SQL [8461]: pgsql_close() -- 00:22:31.729 INFO [8461]: COREGRADE is starting... -- 00:22:31.730 INFO [8461]: Version from config: 1.0 -- 00:22:31.730 DEBUG [8461]: Connecting to database... -- 00:22:31.730 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:22:31.730 SQL [8461]: pgsql_db_connect() -- 00:22:31.734 DEBUG [8461]: Database connection successful -- 00:22:31.734 INFO [8461]: _SERVER found -- 00:22:31.734 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 00:22:31.734 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 00:22:31.734 INFO [8461]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ahpdbedio48rreoouasnna6ah4pdi8pi -- 00:22:31.734 INFO [8461]: QUERY_STRING = /member/page -- 00:22:31.734 INFO [8461]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:22:31.778 INFO [8461]: COREGRADE is stopping... -- 00:22:31.778 DEBUG [8461]: Closing database connection -- 00:22:31.778 SQL [8461]: pgsql_close() -- 00:22:31.994 INFO [8461]: COREGRADE is starting... -- 00:22:31.994 INFO [8461]: Version from config: 1.0 -- 00:22:31.994 DEBUG [8461]: Connecting to database... -- 00:22:31.994 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:22:31.994 SQL [8461]: pgsql_db_connect() -- 00:22:31.998 DEBUG [8461]: Database connection successful -- 00:22:31.998 INFO [8461]: _SERVER found -- 00:22:31.998 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 00:22:31.998 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 00:22:31.998 INFO [8461]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ahpdbedio48rreoouasnna6ah4pdi8pi -- 00:22:31.998 INFO [8461]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:22:31.998 INFO [8461]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:22:32.009 INFO [8461]: COREGRADE is stopping... -- 00:22:32.009 DEBUG [8461]: Closing database connection -- 00:22:32.009 SQL [8461]: pgsql_close() -- 00:22:34.279 INFO [8465]: COREGRADE is starting... -- 00:22:34.280 INFO [8465]: Version from config: 1.0 -- 00:22:34.280 DEBUG [8465]: Connecting to database... -- 00:22:34.280 DEBUG [8465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:22:34.280 SQL [8465]: pgsql_db_connect() -- 00:22:34.284 DEBUG [8465]: Database connection successful -- 00:22:34.284 INFO [8465]: _SERVER found -- 00:22:34.284 INFO [8465]: REMOTE_ADDR = 192.168.1.13 -- 00:22:34.284 INFO [8465]: SERVER_NAME = oameye.works.coregrade.com -- 00:22:34.284 INFO [8465]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541; ci_session=olvvvlvhpbqgtt77dvia3a37d8ua5qse -- 00:22:34.284 INFO [8465]: QUERY_STRING = /member -- 00:22:34.284 INFO [8465]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:22:34.328 INFO [8465]: COREGRADE is stopping... -- 00:22:34.328 DEBUG [8465]: Closing database connection -- 00:22:34.328 SQL [8465]: pgsql_close() -- 00:22:34.392 INFO [8465]: COREGRADE is starting... -- 00:22:34.392 INFO [8465]: Version from config: 1.0 -- 00:22:34.392 DEBUG [8465]: Connecting to database... -- 00:22:34.392 DEBUG [8465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:22:34.392 SQL [8465]: pgsql_db_connect() -- 00:22:34.396 DEBUG [8465]: Database connection successful -- 00:22:34.396 INFO [8465]: _SERVER found -- 00:22:34.396 INFO [8465]: REMOTE_ADDR = 192.168.1.13 -- 00:22:34.396 INFO [8465]: SERVER_NAME = oameye.works.coregrade.com -- 00:22:34.396 INFO [8465]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541; ci_session=olvvvlvhpbqgtt77dvia3a37d8ua5qse -- 00:22:34.396 INFO [8465]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:22:34.396 INFO [8465]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:22:34.408 INFO [8465]: COREGRADE is stopping... -- 00:22:34.408 DEBUG [8465]: Closing database connection -- 00:22:34.408 SQL [8465]: pgsql_close() -- 00:22:34.515 INFO [8465]: COREGRADE is starting... -- 00:22:34.515 INFO [8465]: Version from config: 1.0 -- 00:22:34.515 DEBUG [8465]: Connecting to database... -- 00:22:34.515 DEBUG [8465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:22:34.515 SQL [8465]: pgsql_db_connect() -- 00:22:34.519 DEBUG [8465]: Database connection successful -- 00:22:34.519 INFO [8465]: _SERVER found -- 00:22:34.519 INFO [8465]: REMOTE_ADDR = 192.168.1.13 -- 00:22:34.519 INFO [8465]: SERVER_NAME = oameye.works.coregrade.com -- 00:22:34.519 INFO [8465]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541; ci_session=olvvvlvhpbqgtt77dvia3a37d8ua5qse -- 00:22:34.519 INFO [8465]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:22:34.519 INFO [8465]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:22:34.530 INFO [8465]: COREGRADE is stopping... -- 00:22:34.530 DEBUG [8465]: Closing database connection -- 00:22:34.530 SQL [8465]: pgsql_close() -- 00:22:36.316 INFO [8465]: COREGRADE is starting... -- 00:22:36.316 INFO [8465]: Version from config: 1.0 -- 00:22:36.316 DEBUG [8465]: Connecting to database... -- 00:22:36.316 DEBUG [8465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:22:36.316 SQL [8465]: pgsql_db_connect() -- 00:22:36.320 DEBUG [8465]: Database connection successful -- 00:22:36.320 INFO [8465]: _SERVER found -- 00:22:36.320 INFO [8465]: REMOTE_ADDR = 192.168.1.13 -- 00:22:36.320 INFO [8465]: SERVER_NAME = oameye.works.coregrade.com -- 00:22:36.320 INFO [8465]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541; ci_session=olvvvlvhpbqgtt77dvia3a37d8ua5qse -- 00:22:36.320 INFO [8465]: QUERY_STRING = /member/page -- 00:22:36.320 INFO [8465]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:22:36.361 INFO [8465]: COREGRADE is stopping... -- 00:22:36.362 DEBUG [8465]: Closing database connection -- 00:22:36.362 SQL [8465]: pgsql_close() -- 00:22:36.412 INFO [8465]: COREGRADE is starting... -- 00:22:36.412 INFO [8465]: Version from config: 1.0 -- 00:22:36.412 DEBUG [8465]: Connecting to database... -- 00:22:36.412 DEBUG [8465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:22:36.412 SQL [8465]: pgsql_db_connect() -- 00:22:36.416 DEBUG [8465]: Database connection successful -- 00:22:36.416 INFO [8465]: _SERVER found -- 00:22:36.416 INFO [8465]: REMOTE_ADDR = 192.168.1.13 -- 00:22:36.416 INFO [8465]: SERVER_NAME = oameye.works.coregrade.com -- 00:22:36.416 INFO [8465]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541; ci_session=olvvvlvhpbqgtt77dvia3a37d8ua5qse -- 00:22:36.416 INFO [8465]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:22:36.416 INFO [8465]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:22:36.427 INFO [8465]: COREGRADE is stopping... -- 00:22:36.427 DEBUG [8465]: Closing database connection -- 00:22:36.427 SQL [8465]: pgsql_close() -- 00:22:36.473 INFO [8465]: COREGRADE is starting... -- 00:22:36.473 INFO [8465]: Version from config: 1.0 -- 00:22:36.473 DEBUG [8465]: Connecting to database... -- 00:22:36.473 DEBUG [8465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:22:36.473 SQL [8465]: pgsql_db_connect() -- 00:22:36.477 DEBUG [8465]: Database connection successful -- 00:22:36.477 INFO [8465]: _SERVER found -- 00:22:36.477 INFO [8465]: REMOTE_ADDR = 192.168.1.13 -- 00:22:36.477 INFO [8465]: SERVER_NAME = oameye.works.coregrade.com -- 00:22:36.477 INFO [8465]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541; ci_session=olvvvlvhpbqgtt77dvia3a37d8ua5qse -- 00:22:36.477 INFO [8465]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:22:36.477 INFO [8465]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:22:36.488 INFO [8465]: COREGRADE is stopping... -- 00:22:36.488 DEBUG [8465]: Closing database connection -- 00:22:36.488 SQL [8465]: pgsql_close() -- 00:22:54.164 INFO [9140]: COREGRADE is starting... -- 00:22:54.164 INFO [9140]: Version from config: 1.0 -- 00:22:54.164 DEBUG [9140]: Connecting to database... -- 00:22:54.164 DEBUG [9140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:22:54.164 SQL [9140]: pgsql_db_connect() -- 00:22:54.169 DEBUG [9140]: Database connection successful -- 00:22:54.169 INFO [9140]: _SERVER found -- 00:22:54.169 INFO [9140]: REMOTE_ADDR = 192.168.1.13 -- 00:22:54.169 INFO [9140]: SERVER_NAME = oameye.works.coregrade.com -- 00:22:54.169 INFO [9140]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ahpdbedio48rreoouasnna6ah4pdi8pi -- 00:22:54.169 INFO [9140]: QUERY_STRING = /member/configure -- 00:22:54.169 INFO [9140]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:22:54.217 INFO [9140]: COREGRADE is stopping... -- 00:22:54.217 DEBUG [9140]: Closing database connection -- 00:22:54.217 SQL [9140]: pgsql_close() -- 00:22:54.530 INFO [9140]: COREGRADE is starting... -- 00:22:54.530 INFO [9140]: Version from config: 1.0 -- 00:22:54.530 DEBUG [9140]: Connecting to database... -- 00:22:54.530 DEBUG [9140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:22:54.530 SQL [9140]: pgsql_db_connect() -- 00:22:54.534 DEBUG [9140]: Database connection successful -- 00:22:54.534 INFO [9140]: _SERVER found -- 00:22:54.534 INFO [9140]: REMOTE_ADDR = 192.168.1.13 -- 00:22:54.534 INFO [9140]: SERVER_NAME = oameye.works.coregrade.com -- 00:22:54.534 INFO [9140]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ahpdbedio48rreoouasnna6ah4pdi8pi -- 00:22:54.534 INFO [9140]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:22:54.534 INFO [9140]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:22:54.546 INFO [9140]: COREGRADE is stopping... -- 00:22:54.546 DEBUG [9140]: Closing database connection -- 00:22:54.546 SQL [9140]: pgsql_close() -- 00:22:59.225 INFO [8464]: COREGRADE is starting... -- 00:22:59.225 INFO [8464]: Version from config: 1.0 -- 00:22:59.225 DEBUG [8464]: Connecting to database... -- 00:22:59.225 DEBUG [8464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:22:59.225 SQL [8464]: pgsql_db_connect() -- 00:22:59.229 DEBUG [8464]: Database connection successful -- 00:22:59.229 INFO [8464]: _SERVER found -- 00:22:59.229 INFO [8464]: REMOTE_ADDR = 192.168.1.13 -- 00:22:59.229 INFO [8464]: SERVER_NAME = oameye.works.coregrade.com -- 00:22:59.229 INFO [8464]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541; ci_session=olvvvlvhpbqgtt77dvia3a37d8ua5qse -- 00:22:59.229 INFO [8464]: QUERY_STRING = /member/configure -- 00:22:59.229 INFO [8464]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:22:59.274 INFO [8464]: COREGRADE is stopping... -- 00:22:59.274 DEBUG [8464]: Closing database connection -- 00:22:59.274 SQL [8464]: pgsql_close() -- 00:22:59.378 INFO [8464]: COREGRADE is starting... -- 00:22:59.378 INFO [8464]: Version from config: 1.0 -- 00:22:59.378 DEBUG [8464]: Connecting to database... -- 00:22:59.378 DEBUG [8464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:22:59.378 SQL [8464]: pgsql_db_connect() -- 00:22:59.382 DEBUG [8464]: Database connection successful -- 00:22:59.382 INFO [8464]: _SERVER found -- 00:22:59.382 INFO [8464]: REMOTE_ADDR = 192.168.1.13 -- 00:22:59.382 INFO [8464]: SERVER_NAME = oameye.works.coregrade.com -- 00:22:59.382 INFO [8464]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541; ci_session=olvvvlvhpbqgtt77dvia3a37d8ua5qse -- 00:22:59.382 INFO [8464]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:22:59.382 INFO [8464]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:22:59.393 INFO [8464]: COREGRADE is stopping... -- 00:22:59.393 DEBUG [8464]: Closing database connection -- 00:22:59.393 SQL [8464]: pgsql_close() -- 00:22:59.453 INFO [9140]: COREGRADE is starting... -- 00:22:59.453 INFO [9140]: Version from config: 1.0 -- 00:22:59.453 DEBUG [9140]: Connecting to database... -- 00:22:59.453 DEBUG [9140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:22:59.453 SQL [9140]: pgsql_db_connect() -- 00:22:59.457 DEBUG [9140]: Database connection successful -- 00:22:59.457 INFO [9140]: _SERVER found -- 00:22:59.457 INFO [9140]: REMOTE_ADDR = 192.168.1.13 -- 00:22:59.457 INFO [9140]: SERVER_NAME = oameye.works.coregrade.com -- 00:22:59.457 INFO [9140]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541; ci_session=olvvvlvhpbqgtt77dvia3a37d8ua5qse -- 00:22:59.457 INFO [9140]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:22:59.457 INFO [9140]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:22:59.469 INFO [9140]: COREGRADE is stopping... -- 00:22:59.469 DEBUG [9140]: Closing database connection -- 00:22:59.469 SQL [9140]: pgsql_close() -- 00:23:34.113 INFO [8463]: COREGRADE is starting... -- 00:23:34.113 INFO [8463]: Version from config: 1.0 -- 00:23:34.113 DEBUG [8463]: Connecting to database... -- 00:23:34.113 DEBUG [8463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:23:34.113 SQL [8463]: pgsql_db_connect() -- 00:23:34.117 DEBUG [8463]: Database connection successful -- 00:23:34.117 INFO [8463]: _SERVER found -- 00:23:34.117 INFO [8463]: REMOTE_ADDR = 192.168.1.13 -- 00:23:34.117 INFO [8463]: SERVER_NAME = oameye.works.coregrade.com -- 00:23:34.117 INFO [8463]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ahpdbedio48rreoouasnna6ah4pdi8pi -- 00:23:34.117 INFO [8463]: QUERY_STRING = /member/viewSharePage -- 00:23:34.117 INFO [8463]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:23:34.151 INFO [8463]: COREGRADE is stopping... -- 00:23:34.151 DEBUG [8463]: Closing database connection -- 00:23:34.151 SQL [8463]: pgsql_close() -- 00:23:39.883 INFO [9137]: COREGRADE is starting... -- 00:23:39.884 INFO [9137]: Version from config: 1.0 -- 00:23:39.884 DEBUG [9137]: Connecting to database... -- 00:23:39.884 DEBUG [9137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:23:39.884 SQL [9137]: pgsql_db_connect() -- 00:23:39.888 DEBUG [9137]: Database connection successful -- 00:23:39.888 INFO [9137]: _SERVER found -- 00:23:39.888 INFO [9137]: REMOTE_ADDR = 192.168.1.13 -- 00:23:39.888 INFO [9137]: SERVER_NAME = oameye.works.coregrade.com -- 00:23:39.888 INFO [9137]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541; ci_session=olvvvlvhpbqgtt77dvia3a37d8ua5qse -- 00:23:39.888 INFO [9137]: QUERY_STRING = /member/viewSharePage -- 00:23:39.888 INFO [9137]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:23:39.923 INFO [9137]: COREGRADE is stopping... -- 00:23:39.923 DEBUG [9137]: Closing database connection -- 00:23:39.923 SQL [9137]: pgsql_close() -- 00:24:33.514 INFO [9139]: COREGRADE is starting... -- 00:24:33.514 INFO [9139]: Version from config: 1.0 -- 00:24:33.514 DEBUG [9139]: Connecting to database... -- 00:24:33.514 DEBUG [9139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:24:33.514 SQL [9139]: pgsql_db_connect() -- 00:24:33.518 DEBUG [9139]: Database connection successful -- 00:24:33.518 INFO [9139]: _SERVER found -- 00:24:33.518 INFO [9139]: REMOTE_ADDR = 192.168.1.13 -- 00:24:33.518 INFO [9139]: SERVER_NAME = oameye.works.coregrade.com -- 00:24:33.518 INFO [9139]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ahpdbedio48rreoouasnna6ah4pdi8pi -- 00:24:33.518 INFO [9139]: QUERY_STRING = /member -- 00:24:33.518 INFO [9139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:24:33.558 INFO [9139]: COREGRADE is stopping... -- 00:24:33.558 DEBUG [9139]: Closing database connection -- 00:24:33.558 SQL [9139]: pgsql_close() -- 00:24:33.819 INFO [9139]: COREGRADE is starting... -- 00:24:33.819 INFO [9139]: Version from config: 1.0 -- 00:24:33.819 DEBUG [9139]: Connecting to database... -- 00:24:33.819 DEBUG [9139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:24:33.819 SQL [9139]: pgsql_db_connect() -- 00:24:33.823 DEBUG [9139]: Database connection successful -- 00:24:33.823 INFO [9139]: _SERVER found -- 00:24:33.823 INFO [9139]: REMOTE_ADDR = 192.168.1.13 -- 00:24:33.823 INFO [9139]: SERVER_NAME = oameye.works.coregrade.com -- 00:24:33.823 INFO [9139]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:24:33.823 INFO [9139]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:24:33.823 INFO [9139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:24:33.834 INFO [9139]: COREGRADE is stopping... -- 00:24:33.834 DEBUG [9139]: Closing database connection -- 00:24:33.834 SQL [9139]: pgsql_close() -- 00:24:34.661 INFO [9139]: COREGRADE is starting... -- 00:24:34.661 INFO [9139]: Version from config: 1.0 -- 00:24:34.661 DEBUG [9139]: Connecting to database... -- 00:24:34.661 DEBUG [9139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:24:34.661 SQL [9139]: pgsql_db_connect() -- 00:24:34.665 DEBUG [9139]: Database connection successful -- 00:24:34.665 INFO [9139]: _SERVER found -- 00:24:34.665 INFO [9139]: REMOTE_ADDR = 192.168.1.13 -- 00:24:34.665 INFO [9139]: SERVER_NAME = oameye.works.coregrade.com -- 00:24:34.665 INFO [9139]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:24:34.665 INFO [9139]: QUERY_STRING = /member/page -- 00:24:34.665 INFO [9139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:24:34.706 INFO [9139]: COREGRADE is stopping... -- 00:24:34.706 DEBUG [9139]: Closing database connection -- 00:24:34.706 SQL [9139]: pgsql_close() -- 00:24:34.957 INFO [9139]: COREGRADE is starting... -- 00:24:34.957 INFO [9139]: Version from config: 1.0 -- 00:24:34.957 DEBUG [9139]: Connecting to database... -- 00:24:34.957 DEBUG [9139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:24:34.957 SQL [9139]: pgsql_db_connect() -- 00:24:34.961 DEBUG [9139]: Database connection successful -- 00:24:34.961 INFO [9139]: _SERVER found -- 00:24:34.961 INFO [9139]: REMOTE_ADDR = 192.168.1.13 -- 00:24:34.961 INFO [9139]: SERVER_NAME = oameye.works.coregrade.com -- 00:24:34.961 INFO [9139]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:24:34.961 INFO [9139]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:24:34.961 INFO [9139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:24:34.972 INFO [9139]: COREGRADE is stopping... -- 00:24:34.972 DEBUG [9139]: Closing database connection -- 00:24:34.972 SQL [9139]: pgsql_close() -- 00:25:09.505 INFO [9138]: COREGRADE is starting... -- 00:25:09.505 INFO [9138]: Version from config: 1.0 -- 00:25:09.505 DEBUG [9138]: Connecting to database... -- 00:25:09.505 DEBUG [9138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:25:09.505 SQL [9138]: pgsql_db_connect() -- 00:25:09.509 DEBUG [9138]: Database connection successful -- 00:25:09.509 INFO [9138]: _SERVER found -- 00:25:09.509 INFO [9138]: REMOTE_ADDR = 192.168.1.13 -- 00:25:09.509 INFO [9138]: SERVER_NAME = oameye.works.coregrade.com -- 00:25:09.509 INFO [9138]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:25:09.509 INFO [9138]: QUERY_STRING = /member/configure -- 00:25:09.509 INFO [9138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:25:09.554 INFO [9138]: COREGRADE is stopping... -- 00:25:09.554 DEBUG [9138]: Closing database connection -- 00:25:09.554 SQL [9138]: pgsql_close() -- 00:25:09.805 INFO [9138]: COREGRADE is starting... -- 00:25:09.805 INFO [9138]: Version from config: 1.0 -- 00:25:09.805 DEBUG [9138]: Connecting to database... -- 00:25:09.805 DEBUG [9138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:25:09.805 SQL [9138]: pgsql_db_connect() -- 00:25:09.809 DEBUG [9138]: Database connection successful -- 00:25:09.809 INFO [9138]: _SERVER found -- 00:25:09.809 INFO [9138]: REMOTE_ADDR = 192.168.1.13 -- 00:25:09.809 INFO [9138]: SERVER_NAME = oameye.works.coregrade.com -- 00:25:09.809 INFO [9138]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:25:09.809 INFO [9138]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:25:09.809 INFO [9138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:25:09.820 INFO [9138]: COREGRADE is stopping... -- 00:25:09.820 DEBUG [9138]: Closing database connection -- 00:25:09.820 SQL [9138]: pgsql_close() -- 00:25:17.828 INFO [9136]: COREGRADE is starting... -- 00:25:17.828 INFO [9136]: Version from config: 1.0 -- 00:25:17.828 DEBUG [9136]: Connecting to database... -- 00:25:17.828 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:25:17.828 SQL [9136]: pgsql_db_connect() -- 00:25:17.832 DEBUG [9136]: Database connection successful -- 00:25:17.832 INFO [9136]: _SERVER found -- 00:25:17.832 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:25:17.832 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:25:17.832 INFO [9136]: HTTP_COOKIE = ci_session=olvvvlvhpbqgtt77dvia3a37d8ua5qse; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:25:17.832 INFO [9136]: QUERY_STRING = /member/addcard -- 00:25:17.832 INFO [9136]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:25:17.872 INFO [9136]: COREGRADE is stopping... -- 00:25:17.872 DEBUG [9136]: Closing database connection -- 00:25:17.872 SQL [9136]: pgsql_close() -- 00:25:18.035 INFO [9136]: COREGRADE is starting... -- 00:25:18.035 INFO [9136]: Version from config: 1.0 -- 00:25:18.035 DEBUG [9136]: Connecting to database... -- 00:25:18.035 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:25:18.035 SQL [9136]: pgsql_db_connect() -- 00:25:18.039 DEBUG [9136]: Database connection successful -- 00:25:18.039 INFO [9136]: _SERVER found -- 00:25:18.039 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:25:18.039 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:25:18.039 INFO [9136]: HTTP_COOKIE = ci_session=l8o68taooiqciljvc2ked073kgtqtemd; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:25:18.039 INFO [9136]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:25:18.039 INFO [9136]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:25:18.050 INFO [9136]: COREGRADE is stopping... -- 00:25:18.050 DEBUG [9136]: Closing database connection -- 00:25:18.050 SQL [9136]: pgsql_close() -- 00:25:18.105 INFO [9136]: COREGRADE is starting... -- 00:25:18.105 INFO [9136]: Version from config: 1.0 -- 00:25:18.105 DEBUG [9136]: Connecting to database... -- 00:25:18.105 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:25:18.105 SQL [9136]: pgsql_db_connect() -- 00:25:18.109 DEBUG [9136]: Database connection successful -- 00:25:18.109 INFO [9136]: _SERVER found -- 00:25:18.109 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:25:18.109 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:25:18.109 INFO [9136]: HTTP_COOKIE = ci_session=l8o68taooiqciljvc2ked073kgtqtemd; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:25:18.109 INFO [9136]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:25:18.109 INFO [9136]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:25:18.120 INFO [9136]: COREGRADE is stopping... -- 00:25:18.120 DEBUG [9136]: Closing database connection -- 00:25:18.120 SQL [9136]: pgsql_close() -- 00:25:20.484 INFO [9136]: COREGRADE is starting... -- 00:25:20.484 INFO [9136]: Version from config: 1.0 -- 00:25:20.484 DEBUG [9136]: Connecting to database... -- 00:25:20.484 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:25:20.484 SQL [9136]: pgsql_db_connect() -- 00:25:20.488 DEBUG [9136]: Database connection successful -- 00:25:20.488 INFO [9136]: _SERVER found -- 00:25:20.488 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:25:20.488 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:25:20.488 INFO [9136]: HTTP_COOKIE = ci_session=l8o68taooiqciljvc2ked073kgtqtemd; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:25:20.488 INFO [9136]: QUERY_STRING = /member/addcard -- 00:25:20.488 INFO [9136]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:25:20.527 INFO [9136]: COREGRADE is stopping... -- 00:25:20.528 DEBUG [9136]: Closing database connection -- 00:25:20.528 SQL [9136]: pgsql_close() -- 00:25:20.579 INFO [9136]: COREGRADE is starting... -- 00:25:20.580 INFO [9136]: Version from config: 1.0 -- 00:25:20.580 DEBUG [9136]: Connecting to database... -- 00:25:20.580 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:25:20.580 SQL [9136]: pgsql_db_connect() -- 00:25:20.584 DEBUG [9136]: Database connection successful -- 00:25:20.584 INFO [9136]: _SERVER found -- 00:25:20.584 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:25:20.584 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:25:20.584 INFO [9136]: HTTP_COOKIE = ci_session=l8o68taooiqciljvc2ked073kgtqtemd; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:25:20.584 INFO [9136]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:25:20.584 INFO [9136]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:25:20.595 INFO [9136]: COREGRADE is stopping... -- 00:25:20.595 DEBUG [9136]: Closing database connection -- 00:25:20.595 SQL [9136]: pgsql_close() -- 00:25:20.646 INFO [9136]: COREGRADE is starting... -- 00:25:20.647 INFO [9136]: Version from config: 1.0 -- 00:25:20.647 DEBUG [9136]: Connecting to database... -- 00:25:20.647 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:25:20.647 SQL [9136]: pgsql_db_connect() -- 00:25:20.651 DEBUG [9136]: Database connection successful -- 00:25:20.651 INFO [9136]: _SERVER found -- 00:25:20.651 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:25:20.651 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:25:20.651 INFO [9136]: HTTP_COOKIE = ci_session=l8o68taooiqciljvc2ked073kgtqtemd; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:25:20.651 INFO [9136]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:25:20.651 INFO [9136]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:25:20.662 INFO [9136]: COREGRADE is stopping... -- 00:25:20.662 DEBUG [9136]: Closing database connection -- 00:25:20.662 SQL [9136]: pgsql_close() -- 00:26:43.163 INFO [8462]: COREGRADE is starting... -- 00:26:43.163 INFO [8462]: Version from config: 1.0 -- 00:26:43.163 DEBUG [8462]: Connecting to database... -- 00:26:43.163 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:26:43.163 SQL [8462]: pgsql_db_connect() -- 00:26:43.168 DEBUG [8462]: Database connection successful -- 00:26:43.168 INFO [8462]: _SERVER found -- 00:26:43.168 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:26:43.168 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:26:43.168 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:26:43.168 INFO [8462]: QUERY_STRING = /member -- 00:26:43.168 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:26:43.208 INFO [8462]: COREGRADE is stopping... -- 00:26:43.208 DEBUG [8462]: Closing database connection -- 00:26:43.208 SQL [8462]: pgsql_close() -- 00:26:43.519 INFO [8462]: COREGRADE is starting... -- 00:26:43.519 INFO [8462]: Version from config: 1.0 -- 00:26:43.519 DEBUG [8462]: Connecting to database... -- 00:26:43.519 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:26:43.519 SQL [8462]: pgsql_db_connect() -- 00:26:43.523 DEBUG [8462]: Database connection successful -- 00:26:43.523 INFO [8462]: _SERVER found -- 00:26:43.523 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:26:43.523 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:26:43.523 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:26:43.523 INFO [8462]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:26:43.523 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:26:43.534 INFO [8462]: COREGRADE is stopping... -- 00:26:43.534 DEBUG [8462]: Closing database connection -- 00:26:43.534 SQL [8462]: pgsql_close() -- 00:26:45.667 INFO [8462]: COREGRADE is starting... -- 00:26:45.668 INFO [8462]: Version from config: 1.0 -- 00:26:45.668 DEBUG [8462]: Connecting to database... -- 00:26:45.668 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:26:45.668 SQL [8462]: pgsql_db_connect() -- 00:26:45.672 DEBUG [8462]: Database connection successful -- 00:26:45.672 INFO [8462]: _SERVER found -- 00:26:45.672 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:26:45.672 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:26:45.672 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:26:45.672 INFO [8462]: QUERY_STRING = /member -- 00:26:45.672 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:26:45.710 INFO [8462]: COREGRADE is stopping... -- 00:26:45.710 DEBUG [8462]: Closing database connection -- 00:26:45.711 SQL [8462]: pgsql_close() -- 00:26:45.908 INFO [8462]: COREGRADE is starting... -- 00:26:45.908 INFO [8462]: Version from config: 1.0 -- 00:26:45.908 DEBUG [8462]: Connecting to database... -- 00:26:45.908 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:26:45.908 SQL [8462]: pgsql_db_connect() -- 00:26:45.912 DEBUG [8462]: Database connection successful -- 00:26:45.912 INFO [8462]: _SERVER found -- 00:26:45.912 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:26:45.912 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:26:45.912 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:26:45.912 INFO [8462]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:26:45.912 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:26:45.923 INFO [8462]: COREGRADE is stopping... -- 00:26:45.923 DEBUG [8462]: Closing database connection -- 00:26:45.923 SQL [8462]: pgsql_close() -- 00:26:46.307 INFO [8462]: COREGRADE is starting... -- 00:26:46.307 INFO [8462]: Version from config: 1.0 -- 00:26:46.307 DEBUG [8462]: Connecting to database... -- 00:26:46.307 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:26:46.307 SQL [8462]: pgsql_db_connect() -- 00:26:46.311 DEBUG [8462]: Database connection successful -- 00:26:46.311 INFO [8462]: _SERVER found -- 00:26:46.311 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:26:46.311 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:26:46.311 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:26:46.311 INFO [8462]: QUERY_STRING = /member/configure -- 00:26:46.311 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:26:46.351 INFO [8462]: COREGRADE is stopping... -- 00:26:46.351 DEBUG [8462]: Closing database connection -- 00:26:46.351 SQL [8462]: pgsql_close() -- 00:26:46.670 INFO [8462]: COREGRADE is starting... -- 00:26:46.670 INFO [8462]: Version from config: 1.0 -- 00:26:46.670 DEBUG [8462]: Connecting to database... -- 00:26:46.670 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:26:46.670 SQL [8462]: pgsql_db_connect() -- 00:26:46.674 DEBUG [8462]: Database connection successful -- 00:26:46.674 INFO [8462]: _SERVER found -- 00:26:46.674 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:26:46.674 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:26:46.674 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:26:46.674 INFO [8462]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:26:46.674 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:26:46.685 INFO [8462]: COREGRADE is stopping... -- 00:26:46.685 DEBUG [8462]: Closing database connection -- 00:26:46.685 SQL [8462]: pgsql_close() -- 00:26:50.057 INFO [8462]: COREGRADE is starting... -- 00:26:50.057 INFO [8462]: Version from config: 1.0 -- 00:26:50.057 DEBUG [8462]: Connecting to database... -- 00:26:50.057 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:26:50.057 SQL [8462]: pgsql_db_connect() -- 00:26:50.061 DEBUG [8462]: Database connection successful -- 00:26:50.061 INFO [8462]: _SERVER found -- 00:26:50.061 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:26:50.061 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:26:50.061 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:26:50.061 INFO [8462]: QUERY_STRING = /member -- 00:26:50.061 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:26:50.100 INFO [8462]: COREGRADE is stopping... -- 00:26:50.100 DEBUG [8462]: Closing database connection -- 00:26:50.100 SQL [8462]: pgsql_close() -- 00:26:50.401 INFO [8462]: COREGRADE is starting... -- 00:26:50.401 INFO [8462]: Version from config: 1.0 -- 00:26:50.401 DEBUG [8462]: Connecting to database... -- 00:26:50.401 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:26:50.401 SQL [8462]: pgsql_db_connect() -- 00:26:50.405 DEBUG [8462]: Database connection successful -- 00:26:50.405 INFO [8462]: _SERVER found -- 00:26:50.405 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:26:50.405 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:26:50.405 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:26:50.405 INFO [8462]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:26:50.405 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:26:50.416 INFO [8462]: COREGRADE is stopping... -- 00:26:50.416 DEBUG [8462]: Closing database connection -- 00:26:50.416 SQL [8462]: pgsql_close() -- 00:26:51.023 INFO [8462]: COREGRADE is starting... -- 00:26:51.023 INFO [8462]: Version from config: 1.0 -- 00:26:51.023 DEBUG [8462]: Connecting to database... -- 00:26:51.023 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:26:51.023 SQL [8462]: pgsql_db_connect() -- 00:26:51.027 DEBUG [8462]: Database connection successful -- 00:26:51.027 INFO [8462]: _SERVER found -- 00:26:51.027 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:26:51.027 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:26:51.027 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:26:51.027 INFO [8462]: QUERY_STRING = /member -- 00:26:51.027 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:26:51.066 INFO [8462]: COREGRADE is stopping... -- 00:26:51.066 DEBUG [8462]: Closing database connection -- 00:26:51.066 SQL [8462]: pgsql_close() -- 00:26:51.231 INFO [8462]: COREGRADE is starting... -- 00:26:51.231 INFO [8462]: Version from config: 1.0 -- 00:26:51.231 DEBUG [8462]: Connecting to database... -- 00:26:51.231 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:26:51.231 SQL [8462]: pgsql_db_connect() -- 00:26:51.235 DEBUG [8462]: Database connection successful -- 00:26:51.235 INFO [8462]: _SERVER found -- 00:26:51.235 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:26:51.235 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:26:51.235 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:26:51.235 INFO [8462]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:26:51.235 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:26:51.246 INFO [8462]: COREGRADE is stopping... -- 00:26:51.246 DEBUG [8462]: Closing database connection -- 00:26:51.246 SQL [8462]: pgsql_close() -- 00:26:52.059 INFO [8462]: COREGRADE is starting... -- 00:26:52.059 INFO [8462]: Version from config: 1.0 -- 00:26:52.059 DEBUG [8462]: Connecting to database... -- 00:26:52.059 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:26:52.059 SQL [8462]: pgsql_db_connect() -- 00:26:52.063 DEBUG [8462]: Database connection successful -- 00:26:52.063 INFO [8462]: _SERVER found -- 00:26:52.063 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:26:52.063 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:26:52.063 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:26:52.063 INFO [8462]: QUERY_STRING = /member -- 00:26:52.063 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:26:52.102 INFO [8462]: COREGRADE is stopping... -- 00:26:52.102 DEBUG [8462]: Closing database connection -- 00:26:52.102 SQL [8462]: pgsql_close() -- 00:26:52.314 INFO [8462]: COREGRADE is starting... -- 00:26:52.314 INFO [8462]: Version from config: 1.0 -- 00:26:52.314 DEBUG [8462]: Connecting to database... -- 00:26:52.314 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:26:52.314 SQL [8462]: pgsql_db_connect() -- 00:26:52.318 DEBUG [8462]: Database connection successful -- 00:26:52.318 INFO [8462]: _SERVER found -- 00:26:52.318 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:26:52.318 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:26:52.318 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:26:52.318 INFO [8462]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:26:52.318 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:26:52.329 INFO [8462]: COREGRADE is stopping... -- 00:26:52.329 DEBUG [8462]: Closing database connection -- 00:26:52.329 SQL [8462]: pgsql_close() -- 00:26:53.178 INFO [8462]: COREGRADE is starting... -- 00:26:53.178 INFO [8462]: Version from config: 1.0 -- 00:26:53.178 DEBUG [8462]: Connecting to database... -- 00:26:53.178 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:26:53.178 SQL [8462]: pgsql_db_connect() -- 00:26:53.182 DEBUG [8462]: Database connection successful -- 00:26:53.182 INFO [8462]: _SERVER found -- 00:26:53.182 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:26:53.182 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:26:53.182 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:26:53.182 INFO [8462]: QUERY_STRING = /member -- 00:26:53.182 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:26:53.221 INFO [8462]: COREGRADE is stopping... -- 00:26:53.221 DEBUG [8462]: Closing database connection -- 00:26:53.221 SQL [8462]: pgsql_close() -- 00:26:53.437 INFO [8462]: COREGRADE is starting... -- 00:26:53.438 INFO [8462]: Version from config: 1.0 -- 00:26:53.438 DEBUG [8462]: Connecting to database... -- 00:26:53.438 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:26:53.438 SQL [8462]: pgsql_db_connect() -- 00:26:53.441 DEBUG [8462]: Database connection successful -- 00:26:53.441 INFO [8462]: _SERVER found -- 00:26:53.441 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:26:53.441 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:26:53.441 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:26:53.441 INFO [8462]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:26:53.441 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:26:53.453 INFO [8462]: COREGRADE is stopping... -- 00:26:53.453 DEBUG [8462]: Closing database connection -- 00:26:53.453 SQL [8462]: pgsql_close() -- 00:26:56.866 INFO [8462]: COREGRADE is starting... -- 00:26:56.866 INFO [8462]: Version from config: 1.0 -- 00:26:56.866 DEBUG [8462]: Connecting to database... -- 00:26:56.866 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:26:56.866 SQL [8462]: pgsql_db_connect() -- 00:26:56.870 DEBUG [8462]: Database connection successful -- 00:26:56.870 INFO [8462]: _SERVER found -- 00:26:56.870 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:26:56.870 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:26:56.870 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:26:56.870 INFO [8462]: QUERY_STRING = /member -- 00:26:56.870 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:26:56.909 INFO [8462]: COREGRADE is stopping... -- 00:26:56.909 DEBUG [8462]: Closing database connection -- 00:26:56.909 SQL [8462]: pgsql_close() -- 00:26:57.070 INFO [8462]: COREGRADE is starting... -- 00:26:57.071 INFO [8462]: Version from config: 1.0 -- 00:26:57.071 DEBUG [8462]: Connecting to database... -- 00:26:57.071 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:26:57.071 SQL [8462]: pgsql_db_connect() -- 00:26:57.075 DEBUG [8462]: Database connection successful -- 00:26:57.075 INFO [8462]: _SERVER found -- 00:26:57.075 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:26:57.075 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:26:57.075 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:26:57.075 INFO [8462]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:26:57.075 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:26:57.086 INFO [8462]: COREGRADE is stopping... -- 00:26:57.086 DEBUG [8462]: Closing database connection -- 00:26:57.086 SQL [8462]: pgsql_close() -- 00:26:57.840 INFO [8462]: COREGRADE is starting... -- 00:26:57.841 INFO [8462]: Version from config: 1.0 -- 00:26:57.841 DEBUG [8462]: Connecting to database... -- 00:26:57.841 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:26:57.841 SQL [8462]: pgsql_db_connect() -- 00:26:57.845 DEBUG [8462]: Database connection successful -- 00:26:57.845 INFO [8462]: _SERVER found -- 00:26:57.845 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:26:57.845 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:26:57.845 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:26:57.845 INFO [8462]: QUERY_STRING = /member -- 00:26:57.845 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:26:57.883 INFO [8462]: COREGRADE is stopping... -- 00:26:57.883 DEBUG [8462]: Closing database connection -- 00:26:57.883 SQL [8462]: pgsql_close() -- 00:26:58.050 INFO [8462]: COREGRADE is starting... -- 00:26:58.051 INFO [8462]: Version from config: 1.0 -- 00:26:58.051 DEBUG [8462]: Connecting to database... -- 00:26:58.051 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:26:58.051 SQL [8462]: pgsql_db_connect() -- 00:26:58.055 DEBUG [8462]: Database connection successful -- 00:26:58.055 INFO [8462]: _SERVER found -- 00:26:58.055 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:26:58.055 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:26:58.055 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:26:58.055 INFO [8462]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:26:58.055 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:26:58.066 INFO [8462]: COREGRADE is stopping... -- 00:26:58.066 DEBUG [8462]: Closing database connection -- 00:26:58.066 SQL [8462]: pgsql_close() -- 00:26:58.757 INFO [8462]: COREGRADE is starting... -- 00:26:58.757 INFO [8462]: Version from config: 1.0 -- 00:26:58.757 DEBUG [8462]: Connecting to database... -- 00:26:58.757 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:26:58.757 SQL [8462]: pgsql_db_connect() -- 00:26:58.761 DEBUG [8462]: Database connection successful -- 00:26:58.761 INFO [8462]: _SERVER found -- 00:26:58.761 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:26:58.761 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:26:58.761 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:26:58.761 INFO [8462]: QUERY_STRING = /member -- 00:26:58.761 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:26:58.800 INFO [8462]: COREGRADE is stopping... -- 00:26:58.800 DEBUG [8462]: Closing database connection -- 00:26:58.800 SQL [8462]: pgsql_close() -- 00:26:58.978 INFO [8462]: COREGRADE is starting... -- 00:26:58.978 INFO [8462]: Version from config: 1.0 -- 00:26:58.978 DEBUG [8462]: Connecting to database... -- 00:26:58.978 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:26:58.978 SQL [8462]: pgsql_db_connect() -- 00:26:58.982 DEBUG [8462]: Database connection successful -- 00:26:58.982 INFO [8462]: _SERVER found -- 00:26:58.982 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:26:58.982 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:26:58.982 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:26:58.982 INFO [8462]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:26:58.982 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:26:58.993 INFO [8462]: COREGRADE is stopping... -- 00:26:58.993 DEBUG [8462]: Closing database connection -- 00:26:58.993 SQL [8462]: pgsql_close() -- 00:26:59.670 INFO [8462]: COREGRADE is starting... -- 00:26:59.670 INFO [8462]: Version from config: 1.0 -- 00:26:59.670 DEBUG [8462]: Connecting to database... -- 00:26:59.670 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:26:59.670 SQL [8462]: pgsql_db_connect() -- 00:26:59.674 DEBUG [8462]: Database connection successful -- 00:26:59.674 INFO [8462]: _SERVER found -- 00:26:59.674 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:26:59.674 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:26:59.674 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:26:59.674 INFO [8462]: QUERY_STRING = /member -- 00:26:59.674 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:26:59.713 INFO [8462]: COREGRADE is stopping... -- 00:26:59.714 DEBUG [8462]: Closing database connection -- 00:26:59.714 SQL [8462]: pgsql_close() -- 00:26:59.949 INFO [8462]: COREGRADE is starting... -- 00:26:59.949 INFO [8462]: Version from config: 1.0 -- 00:26:59.949 DEBUG [8462]: Connecting to database... -- 00:26:59.949 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:26:59.949 SQL [8462]: pgsql_db_connect() -- 00:26:59.953 DEBUG [8462]: Database connection successful -- 00:26:59.953 INFO [8462]: _SERVER found -- 00:26:59.953 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:26:59.953 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:26:59.953 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:26:59.953 INFO [8462]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:26:59.953 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:26:59.964 INFO [8462]: COREGRADE is stopping... -- 00:26:59.964 DEBUG [8462]: Closing database connection -- 00:26:59.964 SQL [8462]: pgsql_close() -- 00:27:00.579 INFO [8462]: COREGRADE is starting... -- 00:27:00.579 INFO [8462]: Version from config: 1.0 -- 00:27:00.579 DEBUG [8462]: Connecting to database... -- 00:27:00.579 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:00.579 SQL [8462]: pgsql_db_connect() -- 00:27:00.583 DEBUG [8462]: Database connection successful -- 00:27:00.583 INFO [8462]: _SERVER found -- 00:27:00.583 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:27:00.583 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:00.583 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:27:00.583 INFO [8462]: QUERY_STRING = /member -- 00:27:00.583 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:00.622 INFO [8462]: COREGRADE is stopping... -- 00:27:00.622 DEBUG [8462]: Closing database connection -- 00:27:00.622 SQL [8462]: pgsql_close() -- 00:27:00.855 INFO [8462]: COREGRADE is starting... -- 00:27:00.855 INFO [8462]: Version from config: 1.0 -- 00:27:00.855 DEBUG [8462]: Connecting to database... -- 00:27:00.855 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:00.855 SQL [8462]: pgsql_db_connect() -- 00:27:00.859 DEBUG [8462]: Database connection successful -- 00:27:00.859 INFO [8462]: _SERVER found -- 00:27:00.859 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:27:00.859 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:00.859 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:27:00.859 INFO [8462]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:27:00.859 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:00.870 INFO [8462]: COREGRADE is stopping... -- 00:27:00.870 DEBUG [8462]: Closing database connection -- 00:27:00.870 SQL [8462]: pgsql_close() -- 00:27:01.410 INFO [8462]: COREGRADE is starting... -- 00:27:01.410 INFO [8462]: Version from config: 1.0 -- 00:27:01.410 DEBUG [8462]: Connecting to database... -- 00:27:01.410 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:01.410 SQL [8462]: pgsql_db_connect() -- 00:27:01.414 DEBUG [8462]: Database connection successful -- 00:27:01.414 INFO [8462]: _SERVER found -- 00:27:01.414 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:27:01.414 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:01.414 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:27:01.414 INFO [8462]: QUERY_STRING = /member -- 00:27:01.414 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:01.453 INFO [8462]: COREGRADE is stopping... -- 00:27:01.453 DEBUG [8462]: Closing database connection -- 00:27:01.453 SQL [8462]: pgsql_close() -- 00:27:01.674 INFO [8462]: COREGRADE is starting... -- 00:27:01.674 INFO [8462]: Version from config: 1.0 -- 00:27:01.674 DEBUG [8462]: Connecting to database... -- 00:27:01.674 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:01.674 SQL [8462]: pgsql_db_connect() -- 00:27:01.678 DEBUG [8462]: Database connection successful -- 00:27:01.678 INFO [8462]: _SERVER found -- 00:27:01.678 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:27:01.678 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:01.678 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:27:01.678 INFO [8462]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:27:01.678 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:01.689 INFO [8462]: COREGRADE is stopping... -- 00:27:01.689 DEBUG [8462]: Closing database connection -- 00:27:01.689 SQL [8462]: pgsql_close() -- 00:27:02.279 INFO [8462]: COREGRADE is starting... -- 00:27:02.279 INFO [8462]: Version from config: 1.0 -- 00:27:02.279 DEBUG [8462]: Connecting to database... -- 00:27:02.279 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:02.279 SQL [8462]: pgsql_db_connect() -- 00:27:02.283 DEBUG [8462]: Database connection successful -- 00:27:02.283 INFO [8462]: _SERVER found -- 00:27:02.283 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:27:02.283 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:02.283 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:27:02.283 INFO [8462]: QUERY_STRING = /member -- 00:27:02.283 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:02.322 INFO [8462]: COREGRADE is stopping... -- 00:27:02.322 DEBUG [8462]: Closing database connection -- 00:27:02.322 SQL [8462]: pgsql_close() -- 00:27:02.515 INFO [8462]: COREGRADE is starting... -- 00:27:02.515 INFO [8462]: Version from config: 1.0 -- 00:27:02.515 DEBUG [8462]: Connecting to database... -- 00:27:02.515 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:02.515 SQL [8462]: pgsql_db_connect() -- 00:27:02.520 DEBUG [8462]: Database connection successful -- 00:27:02.520 INFO [8462]: _SERVER found -- 00:27:02.520 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:27:02.520 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:02.520 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:27:02.520 INFO [8462]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:27:02.520 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:02.531 INFO [8462]: COREGRADE is stopping... -- 00:27:02.531 DEBUG [8462]: Closing database connection -- 00:27:02.531 SQL [8462]: pgsql_close() -- 00:27:03.139 INFO [8462]: COREGRADE is starting... -- 00:27:03.139 INFO [8462]: Version from config: 1.0 -- 00:27:03.139 DEBUG [8462]: Connecting to database... -- 00:27:03.139 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:03.139 SQL [8462]: pgsql_db_connect() -- 00:27:03.143 DEBUG [8462]: Database connection successful -- 00:27:03.143 INFO [8462]: _SERVER found -- 00:27:03.143 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:27:03.143 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:03.143 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:27:03.143 INFO [8462]: QUERY_STRING = /member -- 00:27:03.143 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:03.182 INFO [8462]: COREGRADE is stopping... -- 00:27:03.182 DEBUG [8462]: Closing database connection -- 00:27:03.182 SQL [8462]: pgsql_close() -- 00:27:03.406 INFO [8462]: COREGRADE is starting... -- 00:27:03.406 INFO [8462]: Version from config: 1.0 -- 00:27:03.406 DEBUG [8462]: Connecting to database... -- 00:27:03.406 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:03.406 SQL [8462]: pgsql_db_connect() -- 00:27:03.410 DEBUG [8462]: Database connection successful -- 00:27:03.410 INFO [8462]: _SERVER found -- 00:27:03.410 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:27:03.410 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:03.410 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:27:03.410 INFO [8462]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:27:03.410 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:03.421 INFO [8462]: COREGRADE is stopping... -- 00:27:03.421 DEBUG [8462]: Closing database connection -- 00:27:03.421 SQL [8462]: pgsql_close() -- 00:27:04.046 INFO [8462]: COREGRADE is starting... -- 00:27:04.046 INFO [8462]: Version from config: 1.0 -- 00:27:04.046 DEBUG [8462]: Connecting to database... -- 00:27:04.046 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:04.046 SQL [8462]: pgsql_db_connect() -- 00:27:04.050 DEBUG [8462]: Database connection successful -- 00:27:04.050 INFO [8462]: _SERVER found -- 00:27:04.050 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:27:04.050 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:04.050 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:27:04.050 INFO [8462]: QUERY_STRING = /member -- 00:27:04.050 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:04.089 INFO [8462]: COREGRADE is stopping... -- 00:27:04.089 DEBUG [8462]: Closing database connection -- 00:27:04.089 SQL [8462]: pgsql_close() -- 00:27:04.256 INFO [8462]: COREGRADE is starting... -- 00:27:04.256 INFO [8462]: Version from config: 1.0 -- 00:27:04.256 DEBUG [8462]: Connecting to database... -- 00:27:04.256 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:04.256 SQL [8462]: pgsql_db_connect() -- 00:27:04.260 DEBUG [8462]: Database connection successful -- 00:27:04.260 INFO [8462]: _SERVER found -- 00:27:04.260 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:27:04.260 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:04.260 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:27:04.260 INFO [8462]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:27:04.260 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:04.271 INFO [8462]: COREGRADE is stopping... -- 00:27:04.271 DEBUG [8462]: Closing database connection -- 00:27:04.271 SQL [8462]: pgsql_close() -- 00:27:04.562 INFO [8462]: COREGRADE is starting... -- 00:27:04.562 INFO [8462]: Version from config: 1.0 -- 00:27:04.562 DEBUG [8462]: Connecting to database... -- 00:27:04.562 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:04.562 SQL [8462]: pgsql_db_connect() -- 00:27:04.596 INFO [8462]: COREGRADE is starting... -- 00:27:04.597 INFO [8462]: Version from config: 1.0 -- 00:27:04.597 DEBUG [8462]: Connecting to database... -- 00:27:04.597 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:04.597 SQL [8462]: pgsql_db_connect() -- 00:27:04.601 DEBUG [8462]: Database connection successful -- 00:27:04.601 INFO [8462]: _SERVER found -- 00:27:04.601 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:27:04.601 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:04.601 INFO [8462]: HTTP_COOKIE = ci_session=l8o68taooiqciljvc2ked073kgtqtemd; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:27:04.601 INFO [8462]: QUERY_STRING = -- 00:27:04.601 INFO [8462]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:27:04.601 INFO [8462]: SystemStatus()09-09-********~************ -- 00:27:04.601 INFO [8462]: long coregrade_api_main(CVars in, CVars &out) -- 00:27:04.601 INFO [8462]: long coregrade_api_main(CVars in, CVars &out) action =11027 -- 00:27:04.601 INFO [8462]: account calls -- 00:27:04.601 INFO [8462]: account_calls() -- 00:27:04.601 INFO [8462]: CreateUserPage() -- 00:27:04.601 FLOG_MAX [8462]: REQ_STRING(description) -- 00:27:04.601 FLOG_MAX [8462]: REQ_STRING(title) -- 00:27:04.601 FLOG_MAX [8462]: long load_db_record( CVars &rec, const char * query, ... ) -- 00:27:04.601 SQL [8462]: pgsql_query() -- 00:27:04.601 SQL [8462]: About to run query: -- 00:27:04.601 SQL [8462]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 00:27:04.602 SQL [8462]: Found rows: 1 -- 00:27:04.602 FLOG_MAX [8462]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 00:27:04.602 FLOG_MAX [8462]: insert_db_record() -- 00:27:04.602 SQL [8462]: pgsql_exec() -- 00:27:04.602 SQL [8462]: About to run query: -- 00:27:04.602 SQL [8462]: INSERT INTO members_pages (description,member_id,page_key,page_mode,title) VALUES ('Earth, Mars Sun and others','5','PG2C5B5956D13D4969069EFEB010D1D51F','OTHERPG','Solar System') -- 00:27:04.658 SQL [8462]: PQcmdTuples: 1 -- 00:27:04.658 SQL [8462]: Affected rows: 1 -- 00:27:04.658 FLOG_MAX [8462]: SELECT currval('members_pages_id_seq') -- 00:27:04.658 SQL [8462]: pgsql_query() -- 00:27:04.658 SQL [8462]: About to run query: -- 00:27:04.658 SQL [8462]: SELECT currval('members_pages_id_seq') -- 00:27:04.659 SQL [8462]: Found rows: 1 -- 00:27:04.659 INFO [8462]: /CreateUserPage() -- 00:27:04.659 INFO [8462]: RET: page_key=PG2C5B5956D13D4969069EFEB010D1D51F -- 00:27:04.659 INFO [8462]: RET: result=YES I GET TO BACK END -- 00:27:04.668 INFO [8462]: COREGRADE is stopping... -- 00:27:04.668 DEBUG [8462]: Closing database connection -- 00:27:04.668 SQL [8462]: pgsql_close() -- 00:27:04.566 DEBUG [8462]: Database connection successful -- 00:27:04.566 INFO [8462]: _SERVER found -- 00:27:04.566 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:27:04.566 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:04.566 INFO [8462]: HTTP_COOKIE = ci_session=l8o68taooiqciljvc2ked073kgtqtemd; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:27:04.566 INFO [8462]: QUERY_STRING = /member/addcard -- 00:27:04.566 INFO [8462]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:27:04.668 INFO [8462]: COREGRADE is stopping... -- 00:27:04.668 DEBUG [8462]: Closing database connection -- 00:27:04.668 SQL [8462]: pgsql_close() -- 00:27:04.767 INFO [8462]: COREGRADE is starting... -- 00:27:04.768 INFO [8462]: Version from config: 1.0 -- 00:27:04.768 DEBUG [8462]: Connecting to database... -- 00:27:04.768 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:04.768 SQL [8462]: pgsql_db_connect() -- 00:27:04.772 DEBUG [8462]: Database connection successful -- 00:27:04.772 INFO [8462]: _SERVER found -- 00:27:04.772 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:27:04.772 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:04.772 INFO [8462]: HTTP_COOKIE = ci_session=l8o68taooiqciljvc2ked073kgtqtemd; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:27:04.772 INFO [8462]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:27:04.772 INFO [8462]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:27:04.783 INFO [8462]: COREGRADE is stopping... -- 00:27:04.783 DEBUG [8462]: Closing database connection -- 00:27:04.783 SQL [8462]: pgsql_close() -- 00:27:04.826 INFO [8461]: COREGRADE is starting... -- 00:27:04.826 INFO [8461]: Version from config: 1.0 -- 00:27:04.826 DEBUG [8461]: Connecting to database... -- 00:27:04.826 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:04.826 SQL [8461]: pgsql_db_connect() -- 00:27:04.830 DEBUG [8461]: Database connection successful -- 00:27:04.830 INFO [8461]: _SERVER found -- 00:27:04.830 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 00:27:04.830 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:04.830 INFO [8461]: HTTP_COOKIE = ci_session=l8o68taooiqciljvc2ked073kgtqtemd; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:27:04.830 INFO [8461]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:27:04.830 INFO [8461]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:27:04.841 INFO [8461]: COREGRADE is stopping... -- 00:27:04.841 DEBUG [8461]: Closing database connection -- 00:27:04.841 SQL [8461]: pgsql_close() -- 00:27:04.956 INFO [8462]: COREGRADE is starting... -- 00:27:04.957 INFO [8462]: Version from config: 1.0 -- 00:27:04.957 DEBUG [8462]: Connecting to database... -- 00:27:04.957 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:04.957 SQL [8462]: pgsql_db_connect() -- 00:27:04.961 DEBUG [8462]: Database connection successful -- 00:27:04.961 INFO [8462]: _SERVER found -- 00:27:04.961 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:27:04.961 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:04.961 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:27:04.961 INFO [8462]: QUERY_STRING = /member -- 00:27:04.961 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:04.999 INFO [8462]: COREGRADE is stopping... -- 00:27:04.999 DEBUG [8462]: Closing database connection -- 00:27:04.999 SQL [8462]: pgsql_close() -- 00:27:05.169 INFO [8462]: COREGRADE is starting... -- 00:27:05.169 INFO [8462]: Version from config: 1.0 -- 00:27:05.169 DEBUG [8462]: Connecting to database... -- 00:27:05.169 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:05.169 SQL [8462]: pgsql_db_connect() -- 00:27:05.173 DEBUG [8462]: Database connection successful -- 00:27:05.173 INFO [8462]: _SERVER found -- 00:27:05.173 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:27:05.173 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:05.173 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:27:05.173 INFO [8462]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:27:05.173 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:05.185 INFO [8462]: COREGRADE is stopping... -- 00:27:05.185 DEBUG [8462]: Closing database connection -- 00:27:05.185 SQL [8462]: pgsql_close() -- 00:27:18.500 INFO [8465]: COREGRADE is starting... -- 00:27:18.500 INFO [8465]: Version from config: 1.0 -- 00:27:18.500 DEBUG [8465]: Connecting to database... -- 00:27:18.500 DEBUG [8465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:18.500 SQL [8465]: pgsql_db_connect() -- 00:27:18.504 DEBUG [8465]: Database connection successful -- 00:27:18.504 INFO [8465]: _SERVER found -- 00:27:18.504 INFO [8465]: REMOTE_ADDR = 192.168.1.13 -- 00:27:18.504 INFO [8465]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:18.504 INFO [8465]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:27:18.504 INFO [8465]: QUERY_STRING = /member/page -- 00:27:18.504 INFO [8465]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:18.546 INFO [8465]: COREGRADE is stopping... -- 00:27:18.546 DEBUG [8465]: Closing database connection -- 00:27:18.546 SQL [8465]: pgsql_close() -- 00:27:18.774 INFO [8465]: COREGRADE is starting... -- 00:27:18.774 INFO [8465]: Version from config: 1.0 -- 00:27:18.774 DEBUG [8465]: Connecting to database... -- 00:27:18.774 DEBUG [8465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:18.774 SQL [8465]: pgsql_db_connect() -- 00:27:18.778 DEBUG [8465]: Database connection successful -- 00:27:18.778 INFO [8465]: _SERVER found -- 00:27:18.778 INFO [8465]: REMOTE_ADDR = 192.168.1.13 -- 00:27:18.778 INFO [8465]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:18.778 INFO [8465]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:27:18.778 INFO [8465]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:27:18.778 INFO [8465]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:18.789 INFO [8465]: COREGRADE is stopping... -- 00:27:18.789 DEBUG [8465]: Closing database connection -- 00:27:18.789 SQL [8465]: pgsql_close() -- 00:27:19.982 INFO [8465]: COREGRADE is starting... -- 00:27:19.982 INFO [8465]: Version from config: 1.0 -- 00:27:19.982 DEBUG [8465]: Connecting to database... -- 00:27:19.982 DEBUG [8465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:19.982 SQL [8465]: pgsql_db_connect() -- 00:27:19.986 DEBUG [8465]: Database connection successful -- 00:27:19.986 INFO [8465]: _SERVER found -- 00:27:19.986 INFO [8465]: REMOTE_ADDR = 192.168.1.13 -- 00:27:19.986 INFO [8465]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:19.986 INFO [8465]: HTTP_COOKIE = ci_session=l8o68taooiqciljvc2ked073kgtqtemd; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:27:19.986 INFO [8465]: QUERY_STRING = /member -- 00:27:19.986 INFO [8465]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:27:20.026 INFO [8465]: COREGRADE is stopping... -- 00:27:20.026 DEBUG [8465]: Closing database connection -- 00:27:20.026 SQL [8465]: pgsql_close() -- 00:27:20.123 INFO [8465]: COREGRADE is starting... -- 00:27:20.124 INFO [8465]: Version from config: 1.0 -- 00:27:20.124 DEBUG [8465]: Connecting to database... -- 00:27:20.124 DEBUG [8465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:20.124 SQL [8465]: pgsql_db_connect() -- 00:27:20.128 DEBUG [8465]: Database connection successful -- 00:27:20.128 INFO [8465]: _SERVER found -- 00:27:20.128 INFO [8465]: REMOTE_ADDR = 192.168.1.13 -- 00:27:20.128 INFO [8465]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:20.128 INFO [8465]: HTTP_COOKIE = ci_session=l8o68taooiqciljvc2ked073kgtqtemd; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:27:20.128 INFO [8465]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:27:20.128 INFO [8465]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:27:20.139 INFO [8465]: COREGRADE is stopping... -- 00:27:20.139 DEBUG [8465]: Closing database connection -- 00:27:20.139 SQL [8465]: pgsql_close() -- 00:27:20.178 INFO [8465]: COREGRADE is starting... -- 00:27:20.178 INFO [8465]: Version from config: 1.0 -- 00:27:20.178 DEBUG [8465]: Connecting to database... -- 00:27:20.178 DEBUG [8465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:20.178 SQL [8465]: pgsql_db_connect() -- 00:27:20.182 DEBUG [8465]: Database connection successful -- 00:27:20.182 INFO [8465]: _SERVER found -- 00:27:20.182 INFO [8465]: REMOTE_ADDR = 192.168.1.13 -- 00:27:20.182 INFO [8465]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:20.182 INFO [8465]: HTTP_COOKIE = ci_session=l8o68taooiqciljvc2ked073kgtqtemd; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:27:20.182 INFO [8465]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:27:20.182 INFO [8465]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:27:20.193 INFO [8465]: COREGRADE is stopping... -- 00:27:20.193 DEBUG [8465]: Closing database connection -- 00:27:20.193 SQL [8465]: pgsql_close() -- 00:27:30.211 INFO [8464]: COREGRADE is starting... -- 00:27:30.211 INFO [8464]: Version from config: 1.0 -- 00:27:30.211 DEBUG [8464]: Connecting to database... -- 00:27:30.211 DEBUG [8464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:30.211 SQL [8464]: pgsql_db_connect() -- 00:27:30.222 INFO [9140]: COREGRADE is starting... -- 00:27:30.222 INFO [9140]: Version from config: 1.0 -- 00:27:30.222 DEBUG [9140]: Connecting to database... -- 00:27:30.222 DEBUG [9140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:30.222 SQL [9140]: pgsql_db_connect() -- 00:27:30.226 DEBUG [9140]: Database connection successful -- 00:27:30.226 INFO [9140]: _SERVER found -- 00:27:30.226 INFO [9140]: REMOTE_ADDR = 192.168.1.13 -- 00:27:30.226 INFO [9140]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:30.226 INFO [9140]: HTTP_COOKIE = ci_session=l8o68taooiqciljvc2ked073kgtqtemd; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:27:30.226 INFO [9140]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:27:30.226 INFO [9140]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:27:30.238 INFO [9140]: COREGRADE is stopping... -- 00:27:30.238 DEBUG [9140]: Closing database connection -- 00:27:30.238 SQL [9140]: pgsql_close() -- 00:27:30.215 DEBUG [8464]: Database connection successful -- 00:27:30.215 INFO [8464]: _SERVER found -- 00:27:30.215 INFO [8464]: REMOTE_ADDR = 192.168.1.13 -- 00:27:30.215 INFO [8464]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:30.215 INFO [8464]: HTTP_COOKIE = ci_session=l8o68taooiqciljvc2ked073kgtqtemd; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:27:30.215 INFO [8464]: QUERY_STRING = /member -- 00:27:30.215 INFO [8464]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:27:30.255 INFO [8464]: COREGRADE is stopping... -- 00:27:30.255 DEBUG [8464]: Closing database connection -- 00:27:30.255 SQL [8464]: pgsql_close() -- 00:27:30.370 INFO [8464]: COREGRADE is starting... -- 00:27:30.370 INFO [8464]: Version from config: 1.0 -- 00:27:30.370 DEBUG [8464]: Connecting to database... -- 00:27:30.370 DEBUG [8464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:30.370 SQL [8464]: pgsql_db_connect() -- 00:27:30.374 DEBUG [8464]: Database connection successful -- 00:27:30.374 INFO [8464]: _SERVER found -- 00:27:30.374 INFO [8464]: REMOTE_ADDR = 192.168.1.13 -- 00:27:30.374 INFO [8464]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:30.374 INFO [8464]: HTTP_COOKIE = ci_session=l8o68taooiqciljvc2ked073kgtqtemd; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:27:30.374 INFO [8464]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:27:30.374 INFO [8464]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:27:30.385 INFO [8464]: COREGRADE is stopping... -- 00:27:30.385 DEBUG [8464]: Closing database connection -- 00:27:30.385 SQL [8464]: pgsql_close() -- 00:27:36.413 INFO [8463]: COREGRADE is starting... -- 00:27:36.413 INFO [8463]: Version from config: 1.0 -- 00:27:36.413 DEBUG [8463]: Connecting to database... -- 00:27:36.413 DEBUG [8463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:36.413 SQL [8463]: pgsql_db_connect() -- 00:27:36.417 DEBUG [8463]: Database connection successful -- 00:27:36.417 INFO [8463]: _SERVER found -- 00:27:36.417 INFO [8463]: REMOTE_ADDR = 192.168.1.13 -- 00:27:36.417 INFO [8463]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:36.417 INFO [8463]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:27:36.417 INFO [8463]: QUERY_STRING = /member -- 00:27:36.417 INFO [8463]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:36.457 INFO [8463]: COREGRADE is stopping... -- 00:27:36.457 DEBUG [8463]: Closing database connection -- 00:27:36.457 SQL [8463]: pgsql_close() -- 00:27:36.783 INFO [8463]: COREGRADE is starting... -- 00:27:36.783 INFO [8463]: Version from config: 1.0 -- 00:27:36.783 DEBUG [8463]: Connecting to database... -- 00:27:36.783 DEBUG [8463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:36.783 SQL [8463]: pgsql_db_connect() -- 00:27:36.787 DEBUG [8463]: Database connection successful -- 00:27:36.787 INFO [8463]: _SERVER found -- 00:27:36.787 INFO [8463]: REMOTE_ADDR = 192.168.1.13 -- 00:27:36.787 INFO [8463]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:36.787 INFO [8463]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:27:36.787 INFO [8463]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:27:36.787 INFO [8463]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:27:36.798 INFO [8463]: COREGRADE is stopping... -- 00:27:36.798 DEBUG [8463]: Closing database connection -- 00:27:36.798 SQL [8463]: pgsql_close() -- 00:30:31.791 INFO [9137]: COREGRADE is starting... -- 00:30:31.791 INFO [9137]: Version from config: 1.0 -- 00:30:31.791 DEBUG [9137]: Connecting to database... -- 00:30:31.791 DEBUG [9137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:30:31.791 SQL [9137]: pgsql_db_connect() -- 00:30:31.795 DEBUG [9137]: Database connection successful -- 00:30:31.795 INFO [9137]: _SERVER found -- 00:30:31.795 INFO [9137]: REMOTE_ADDR = 192.168.1.13 -- 00:30:31.795 INFO [9137]: SERVER_NAME = oameye.works.coregrade.com -- 00:30:31.795 INFO [9137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=qog2c0h0vt2jmvn6v4394ghtssfdv5gk -- 00:30:31.795 INFO [9137]: QUERY_STRING = /member/page -- 00:30:31.795 INFO [9137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:30:31.840 INFO [9137]: COREGRADE is stopping... -- 00:30:31.840 DEBUG [9137]: Closing database connection -- 00:30:31.840 SQL [9137]: pgsql_close() -- 00:30:32.117 INFO [9137]: COREGRADE is starting... -- 00:30:32.117 INFO [9137]: Version from config: 1.0 -- 00:30:32.117 DEBUG [9137]: Connecting to database... -- 00:30:32.117 DEBUG [9137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:30:32.117 SQL [9137]: pgsql_db_connect() -- 00:30:32.121 DEBUG [9137]: Database connection successful -- 00:30:32.121 INFO [9137]: _SERVER found -- 00:30:32.121 INFO [9137]: REMOTE_ADDR = 192.168.1.13 -- 00:30:32.121 INFO [9137]: SERVER_NAME = oameye.works.coregrade.com -- 00:30:32.121 INFO [9137]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:30:32.121 INFO [9137]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:30:32.121 INFO [9137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:30:32.132 INFO [9137]: COREGRADE is stopping... -- 00:30:32.133 DEBUG [9137]: Closing database connection -- 00:30:32.133 SQL [9137]: pgsql_close() -- 00:31:40.707 INFO [9139]: COREGRADE is starting... -- 00:31:40.707 INFO [9139]: Version from config: 1.0 -- 00:31:40.707 DEBUG [9139]: Connecting to database... -- 00:31:40.707 DEBUG [9139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:31:40.707 SQL [9139]: pgsql_db_connect() -- 00:31:40.712 DEBUG [9139]: Database connection successful -- 00:31:40.712 INFO [9139]: _SERVER found -- 00:31:40.712 INFO [9139]: REMOTE_ADDR = 192.168.1.13 -- 00:31:40.712 INFO [9139]: SERVER_NAME = oameye.works.coregrade.com -- 00:31:40.712 INFO [9139]: HTTP_COOKIE = ci_session=l8o68taooiqciljvc2ked073kgtqtemd; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:31:40.712 INFO [9139]: QUERY_STRING = /member/page -- 00:31:40.712 INFO [9139]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:31:40.755 INFO [9139]: COREGRADE is stopping... -- 00:31:40.755 DEBUG [9139]: Closing database connection -- 00:31:40.755 SQL [9139]: pgsql_close() -- 00:31:40.808 INFO [9139]: COREGRADE is starting... -- 00:31:40.808 INFO [9139]: Version from config: 1.0 -- 00:31:40.808 DEBUG [9139]: Connecting to database... -- 00:31:40.808 DEBUG [9139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:31:40.808 SQL [9139]: pgsql_db_connect() -- 00:31:40.812 DEBUG [9139]: Database connection successful -- 00:31:40.812 INFO [9139]: _SERVER found -- 00:31:40.812 INFO [9139]: REMOTE_ADDR = 192.168.1.13 -- 00:31:40.812 INFO [9139]: SERVER_NAME = oameye.works.coregrade.com -- 00:31:40.812 INFO [9139]: HTTP_COOKIE = ci_session=q9hplqv2i1bt1rc4jg7c9homcb624qtr; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:31:40.812 INFO [9139]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:31:40.812 INFO [9139]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:31:40.823 INFO [9139]: COREGRADE is stopping... -- 00:31:40.823 DEBUG [9139]: Closing database connection -- 00:31:40.823 SQL [9139]: pgsql_close() -- 00:31:40.894 INFO [9139]: COREGRADE is starting... -- 00:31:40.894 INFO [9139]: Version from config: 1.0 -- 00:31:40.894 DEBUG [9139]: Connecting to database... -- 00:31:40.894 DEBUG [9139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:31:40.894 SQL [9139]: pgsql_db_connect() -- 00:31:40.899 DEBUG [9139]: Database connection successful -- 00:31:40.899 INFO [9139]: _SERVER found -- 00:31:40.899 INFO [9139]: REMOTE_ADDR = 192.168.1.13 -- 00:31:40.899 INFO [9139]: SERVER_NAME = oameye.works.coregrade.com -- 00:31:40.899 INFO [9139]: HTTP_COOKIE = ci_session=q9hplqv2i1bt1rc4jg7c9homcb624qtr; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:31:40.899 INFO [9139]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:31:40.899 INFO [9139]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:31:40.910 INFO [9139]: COREGRADE is stopping... -- 00:31:40.910 DEBUG [9139]: Closing database connection -- 00:31:40.910 SQL [9139]: pgsql_close() -- 00:32:22.360 INFO [9138]: COREGRADE is starting... -- 00:32:22.361 INFO [9138]: Version from config: 1.0 -- 00:32:22.361 DEBUG [9138]: Connecting to database... -- 00:32:22.361 DEBUG [9138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:32:22.361 SQL [9138]: pgsql_db_connect() -- 00:32:22.365 DEBUG [9138]: Database connection successful -- 00:32:22.365 INFO [9138]: _SERVER found -- 00:32:22.365 INFO [9138]: REMOTE_ADDR = 192.168.1.13 -- 00:32:22.365 INFO [9138]: SERVER_NAME = oameye.works.coregrade.com -- 00:32:22.365 INFO [9138]: HTTP_COOKIE = ci_session=q9hplqv2i1bt1rc4jg7c9homcb624qtr; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:32:22.365 INFO [9138]: QUERY_STRING = /member -- 00:32:22.365 INFO [9138]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:32:22.412 INFO [9138]: COREGRADE is stopping... -- 00:32:22.412 DEBUG [9138]: Closing database connection -- 00:32:22.412 SQL [9138]: pgsql_close() -- 00:32:22.416 INFO [9136]: COREGRADE is starting... -- 00:32:22.416 INFO [9136]: Version from config: 1.0 -- 00:32:22.416 DEBUG [9136]: Connecting to database... -- 00:32:22.416 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:32:22.416 SQL [9136]: pgsql_db_connect() -- 00:32:22.420 DEBUG [9136]: Database connection successful -- 00:32:22.420 INFO [9136]: _SERVER found -- 00:32:22.420 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:32:22.420 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:32:22.420 INFO [9136]: HTTP_COOKIE = ci_session=q9hplqv2i1bt1rc4jg7c9homcb624qtr; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:32:22.420 INFO [9136]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:32:22.420 INFO [9136]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:32:22.433 INFO [9136]: COREGRADE is stopping... -- 00:32:22.433 DEBUG [9136]: Closing database connection -- 00:32:22.433 SQL [9136]: pgsql_close() -- 00:32:22.536 INFO [9136]: COREGRADE is starting... -- 00:32:22.536 INFO [9136]: Version from config: 1.0 -- 00:32:22.536 DEBUG [9136]: Connecting to database... -- 00:32:22.536 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:32:22.536 SQL [9136]: pgsql_db_connect() -- 00:32:22.540 DEBUG [9136]: Database connection successful -- 00:32:22.540 INFO [9136]: _SERVER found -- 00:32:22.540 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:32:22.540 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:32:22.540 INFO [9136]: HTTP_COOKIE = ci_session=q9hplqv2i1bt1rc4jg7c9homcb624qtr; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:32:22.540 INFO [9136]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:32:22.540 INFO [9136]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:32:22.551 INFO [9136]: COREGRADE is stopping... -- 00:32:22.551 DEBUG [9136]: Closing database connection -- 00:32:22.551 SQL [9136]: pgsql_close() -- 00:33:20.594 INFO [8461]: COREGRADE is starting... -- 00:33:20.594 INFO [8461]: Version from config: 1.0 -- 00:33:20.594 DEBUG [8461]: Connecting to database... -- 00:33:20.594 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:33:20.594 SQL [8461]: pgsql_db_connect() -- 00:33:20.598 DEBUG [8461]: Database connection successful -- 00:33:20.598 INFO [8461]: _SERVER found -- 00:33:20.598 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 00:33:20.598 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 00:33:20.598 INFO [8461]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:33:20.598 INFO [8461]: QUERY_STRING = /member -- 00:33:20.598 INFO [8461]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:33:20.639 INFO [8461]: COREGRADE is stopping... -- 00:33:20.639 DEBUG [8461]: Closing database connection -- 00:33:20.639 SQL [8461]: pgsql_close() -- 00:33:20.783 INFO [8461]: COREGRADE is starting... -- 00:33:20.783 INFO [8461]: Version from config: 1.0 -- 00:33:20.783 DEBUG [8461]: Connecting to database... -- 00:33:20.783 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:33:20.783 SQL [8461]: pgsql_db_connect() -- 00:33:20.787 DEBUG [8461]: Database connection successful -- 00:33:20.787 INFO [8461]: _SERVER found -- 00:33:20.787 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 00:33:20.787 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 00:33:20.787 INFO [8461]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:33:20.787 INFO [8461]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:33:20.787 INFO [8461]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:33:20.798 INFO [8461]: COREGRADE is stopping... -- 00:33:20.798 DEBUG [8461]: Closing database connection -- 00:33:20.798 SQL [8461]: pgsql_close() -- 00:33:21.006 INFO [8461]: COREGRADE is starting... -- 00:33:21.006 INFO [8461]: Version from config: 1.0 -- 00:33:21.006 DEBUG [8461]: Connecting to database... -- 00:33:21.006 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:33:21.006 SQL [8461]: pgsql_db_connect() -- 00:33:21.010 DEBUG [8461]: Database connection successful -- 00:33:21.010 INFO [8461]: _SERVER found -- 00:33:21.010 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 00:33:21.010 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 00:33:21.010 INFO [8461]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:33:21.010 INFO [8461]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:33:21.010 INFO [8461]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:33:21.021 INFO [8461]: COREGRADE is stopping... -- 00:33:21.021 DEBUG [8461]: Closing database connection -- 00:33:21.021 SQL [8461]: pgsql_close() -- 00:33:21.814 INFO [8461]: COREGRADE is starting... -- 00:33:21.814 INFO [8461]: Version from config: 1.0 -- 00:33:21.814 DEBUG [8461]: Connecting to database... -- 00:33:21.814 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:33:21.815 SQL [8461]: pgsql_db_connect() -- 00:33:21.818 DEBUG [8461]: Database connection successful -- 00:33:21.819 INFO [8461]: _SERVER found -- 00:33:21.819 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 00:33:21.819 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 00:33:21.819 INFO [8461]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:33:21.819 INFO [8461]: QUERY_STRING = /member/page -- 00:33:21.819 INFO [8461]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:33:21.859 INFO [8461]: COREGRADE is stopping... -- 00:33:21.860 DEBUG [8461]: Closing database connection -- 00:33:21.860 SQL [8461]: pgsql_close() -- 00:33:21.952 INFO [8461]: COREGRADE is starting... -- 00:33:21.952 INFO [8461]: Version from config: 1.0 -- 00:33:21.952 DEBUG [8461]: Connecting to database... -- 00:33:21.952 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:33:21.952 SQL [8461]: pgsql_db_connect() -- 00:33:21.956 DEBUG [8461]: Database connection successful -- 00:33:21.956 INFO [8461]: _SERVER found -- 00:33:21.956 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 00:33:21.956 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 00:33:21.956 INFO [8461]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:33:21.956 INFO [8461]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:33:21.956 INFO [8461]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:33:21.967 INFO [8461]: COREGRADE is stopping... -- 00:33:21.967 DEBUG [8461]: Closing database connection -- 00:33:21.967 SQL [8461]: pgsql_close() -- 00:33:22.094 INFO [8461]: COREGRADE is starting... -- 00:33:22.094 INFO [8461]: Version from config: 1.0 -- 00:33:22.094 DEBUG [8461]: Connecting to database... -- 00:33:22.094 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:33:22.094 SQL [8461]: pgsql_db_connect() -- 00:33:22.098 DEBUG [8461]: Database connection successful -- 00:33:22.098 INFO [8461]: _SERVER found -- 00:33:22.098 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 00:33:22.098 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 00:33:22.098 INFO [8461]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:33:22.098 INFO [8461]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:33:22.098 INFO [8461]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:33:22.109 INFO [8461]: COREGRADE is stopping... -- 00:33:22.109 DEBUG [8461]: Closing database connection -- 00:33:22.109 SQL [8461]: pgsql_close() -- 00:33:35.719 INFO [8462]: COREGRADE is starting... -- 00:33:35.720 INFO [8462]: Version from config: 1.0 -- 00:33:35.720 DEBUG [8462]: Connecting to database... -- 00:33:35.720 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:33:35.720 SQL [8462]: pgsql_db_connect() -- 00:33:35.724 DEBUG [8462]: Database connection successful -- 00:33:35.724 INFO [8462]: _SERVER found -- 00:33:35.724 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:33:35.724 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:33:35.724 INFO [8462]: HTTP_COOKIE = ci_session=q9hplqv2i1bt1rc4jg7c9homcb624qtr; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:33:35.724 INFO [8462]: QUERY_STRING = /member/page -- 00:33:35.724 INFO [8462]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:33:35.766 INFO [8462]: COREGRADE is stopping... -- 00:33:35.766 DEBUG [8462]: Closing database connection -- 00:33:35.766 SQL [8462]: pgsql_close() -- 00:33:35.826 INFO [8462]: COREGRADE is starting... -- 00:33:35.826 INFO [8462]: Version from config: 1.0 -- 00:33:35.826 DEBUG [8462]: Connecting to database... -- 00:33:35.826 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:33:35.826 SQL [8462]: pgsql_db_connect() -- 00:33:35.830 DEBUG [8462]: Database connection successful -- 00:33:35.830 INFO [8462]: _SERVER found -- 00:33:35.830 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:33:35.830 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:33:35.830 INFO [8462]: HTTP_COOKIE = ci_session=q9hplqv2i1bt1rc4jg7c9homcb624qtr; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:33:35.830 INFO [8462]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:33:35.830 INFO [8462]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:33:35.841 INFO [8462]: COREGRADE is stopping... -- 00:33:35.841 DEBUG [8462]: Closing database connection -- 00:33:35.841 SQL [8462]: pgsql_close() -- 00:33:35.897 INFO [8462]: COREGRADE is starting... -- 00:33:35.897 INFO [8462]: Version from config: 1.0 -- 00:33:35.897 DEBUG [8462]: Connecting to database... -- 00:33:35.897 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:33:35.897 SQL [8462]: pgsql_db_connect() -- 00:33:35.901 DEBUG [8462]: Database connection successful -- 00:33:35.901 INFO [8462]: _SERVER found -- 00:33:35.901 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:33:35.901 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:33:35.901 INFO [8462]: HTTP_COOKIE = ci_session=q9hplqv2i1bt1rc4jg7c9homcb624qtr; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:33:35.901 INFO [8462]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:33:35.901 INFO [8462]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:33:35.912 INFO [8462]: COREGRADE is stopping... -- 00:33:35.912 DEBUG [8462]: Closing database connection -- 00:33:35.912 SQL [8462]: pgsql_close() -- 00:33:46.706 INFO [8465]: COREGRADE is starting... -- 00:33:46.706 INFO [8465]: Version from config: 1.0 -- 00:33:46.706 DEBUG [8465]: Connecting to database... -- 00:33:46.706 DEBUG [8465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:33:46.706 SQL [8465]: pgsql_db_connect() -- 00:33:46.710 DEBUG [8465]: Database connection successful -- 00:33:46.710 INFO [8465]: _SERVER found -- 00:33:46.710 INFO [8465]: REMOTE_ADDR = 192.168.1.13 -- 00:33:46.710 INFO [8465]: SERVER_NAME = oameye.works.coregrade.com -- 00:33:46.710 INFO [8465]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:33:46.710 INFO [8465]: QUERY_STRING = /member/viewCardAddAction -- 00:33:46.710 INFO [8465]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:33:46.742 INFO [8465]: COREGRADE is stopping... -- 00:33:46.742 DEBUG [8465]: Closing database connection -- 00:33:46.742 SQL [8465]: pgsql_close() -- 00:33:48.456 INFO [8465]: COREGRADE is starting... -- 00:33:48.457 INFO [8465]: Version from config: 1.0 -- 00:33:48.457 DEBUG [8465]: Connecting to database... -- 00:33:48.457 DEBUG [8465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:33:48.457 SQL [8465]: pgsql_db_connect() -- 00:33:48.461 DEBUG [8465]: Database connection successful -- 00:33:48.461 INFO [8465]: _SERVER found -- 00:33:48.461 INFO [8465]: REMOTE_ADDR = 192.168.1.13 -- 00:33:48.461 INFO [8465]: SERVER_NAME = oameye.works.coregrade.com -- 00:33:48.461 INFO [8465]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:33:48.461 INFO [8465]: QUERY_STRING = /member/viewCardAddAction -- 00:33:48.461 INFO [8465]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:33:48.491 INFO [8465]: COREGRADE is stopping... -- 00:33:48.491 DEBUG [8465]: Closing database connection -- 00:33:48.491 SQL [8465]: pgsql_close() -- 00:33:48.722 INFO [8464]: COREGRADE is starting... -- 00:33:48.722 INFO [8464]: Version from config: 1.0 -- 00:33:48.722 DEBUG [8464]: Connecting to database... -- 00:33:48.722 DEBUG [8464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:33:48.722 SQL [8464]: pgsql_db_connect() -- 00:33:48.726 DEBUG [8464]: Database connection successful -- 00:33:48.726 INFO [8464]: _SERVER found -- 00:33:48.726 INFO [8464]: REMOTE_ADDR = 192.168.1.13 -- 00:33:48.726 INFO [8464]: SERVER_NAME = oameye.works.coregrade.com -- 00:33:48.726 INFO [8464]: HTTP_COOKIE = ci_session=q9hplqv2i1bt1rc4jg7c9homcb624qtr; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:33:48.726 INFO [8464]: QUERY_STRING = /member/viewCardAddAction -- 00:33:48.726 INFO [8464]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:33:48.758 INFO [8464]: COREGRADE is stopping... -- 00:33:48.758 DEBUG [8464]: Closing database connection -- 00:33:48.758 SQL [8464]: pgsql_close() -- 00:33:51.590 INFO [8465]: COREGRADE is starting... -- 00:33:51.590 INFO [8465]: Version from config: 1.0 -- 00:33:51.590 DEBUG [8465]: Connecting to database... -- 00:33:51.591 DEBUG [8465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:33:51.591 SQL [8465]: pgsql_db_connect() -- 00:33:51.595 DEBUG [8465]: Database connection successful -- 00:33:51.595 INFO [8465]: _SERVER found -- 00:33:51.595 INFO [8465]: REMOTE_ADDR = 192.168.1.13 -- 00:33:51.595 INFO [8465]: SERVER_NAME = oameye.works.coregrade.com -- 00:33:51.595 INFO [8465]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:33:51.595 INFO [8465]: QUERY_STRING = /member/viewCardAddAction -- 00:33:51.595 INFO [8465]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:33:51.625 INFO [8465]: COREGRADE is stopping... -- 00:33:51.625 DEBUG [8465]: Closing database connection -- 00:33:51.625 SQL [8465]: pgsql_close() -- 00:33:53.559 INFO [8465]: COREGRADE is starting... -- 00:33:53.559 INFO [8465]: Version from config: 1.0 -- 00:33:53.559 DEBUG [8465]: Connecting to database... -- 00:33:53.559 DEBUG [8465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:33:53.559 SQL [8465]: pgsql_db_connect() -- 00:33:53.563 DEBUG [8465]: Database connection successful -- 00:33:53.563 INFO [8465]: _SERVER found -- 00:33:53.563 INFO [8465]: REMOTE_ADDR = 192.168.1.13 -- 00:33:53.563 INFO [8465]: SERVER_NAME = oameye.works.coregrade.com -- 00:33:53.563 INFO [8465]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:33:53.563 INFO [8465]: QUERY_STRING = /member/viewCardAddAction -- 00:33:53.563 INFO [8465]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:33:53.593 INFO [8465]: COREGRADE is stopping... -- 00:33:53.593 DEBUG [8465]: Closing database connection -- 00:33:53.593 SQL [8465]: pgsql_close() -- 00:33:53.737 INFO [8464]: COREGRADE is starting... -- 00:33:53.737 INFO [8464]: Version from config: 1.0 -- 00:33:53.737 DEBUG [8464]: Connecting to database... -- 00:33:53.737 DEBUG [8464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:33:53.737 SQL [8464]: pgsql_db_connect() -- 00:33:53.741 DEBUG [8464]: Database connection successful -- 00:33:53.741 INFO [8464]: _SERVER found -- 00:33:53.741 INFO [8464]: REMOTE_ADDR = 192.168.1.13 -- 00:33:53.741 INFO [8464]: SERVER_NAME = oameye.works.coregrade.com -- 00:33:53.741 INFO [8464]: HTTP_COOKIE = ci_session=q9hplqv2i1bt1rc4jg7c9homcb624qtr; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:33:53.741 INFO [8464]: QUERY_STRING = /member/viewCardAddAction -- 00:33:53.741 INFO [8464]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:33:53.771 INFO [8464]: COREGRADE is stopping... -- 00:33:53.771 DEBUG [8464]: Closing database connection -- 00:33:53.771 SQL [8464]: pgsql_close() -- 00:33:55.334 INFO [8465]: COREGRADE is starting... -- 00:33:55.334 INFO [8465]: Version from config: 1.0 -- 00:33:55.334 DEBUG [8465]: Connecting to database... -- 00:33:55.334 DEBUG [8465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:33:55.334 SQL [8465]: pgsql_db_connect() -- 00:33:55.338 DEBUG [8465]: Database connection successful -- 00:33:55.338 INFO [8465]: _SERVER found -- 00:33:55.338 INFO [8465]: REMOTE_ADDR = 192.168.1.13 -- 00:33:55.338 INFO [8465]: SERVER_NAME = oameye.works.coregrade.com -- 00:33:55.338 INFO [8465]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:33:55.338 INFO [8465]: QUERY_STRING = /member/viewCardAddAction -- 00:33:55.338 INFO [8465]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:33:55.369 INFO [8465]: COREGRADE is stopping... -- 00:33:55.369 DEBUG [8465]: Closing database connection -- 00:33:55.369 SQL [8465]: pgsql_close() -- 00:33:58.207 INFO [8464]: COREGRADE is starting... -- 00:33:58.207 INFO [8464]: Version from config: 1.0 -- 00:33:58.207 DEBUG [8464]: Connecting to database... -- 00:33:58.207 DEBUG [8464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:33:58.207 SQL [8464]: pgsql_db_connect() -- 00:33:58.211 DEBUG [8464]: Database connection successful -- 00:33:58.211 INFO [8464]: _SERVER found -- 00:33:58.211 INFO [8464]: REMOTE_ADDR = 192.168.1.13 -- 00:33:58.211 INFO [8464]: SERVER_NAME = oameye.works.coregrade.com -- 00:33:58.211 INFO [8464]: HTTP_COOKIE = ci_session=q9hplqv2i1bt1rc4jg7c9homcb624qtr; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:33:58.211 INFO [8464]: QUERY_STRING = /member/viewCardAddAction -- 00:33:58.211 INFO [8464]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:33:58.242 INFO [8464]: COREGRADE is stopping... -- 00:33:58.242 DEBUG [8464]: Closing database connection -- 00:33:58.242 SQL [8464]: pgsql_close() -- 00:34:06.976 INFO [9140]: COREGRADE is starting... -- 00:34:06.976 INFO [9140]: Version from config: 1.0 -- 00:34:06.976 DEBUG [9140]: Connecting to database... -- 00:34:06.976 DEBUG [9140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:06.976 SQL [9140]: pgsql_db_connect() -- 00:34:06.980 DEBUG [9140]: Database connection successful -- 00:34:06.980 INFO [9140]: _SERVER found -- 00:34:06.980 INFO [9140]: REMOTE_ADDR = 192.168.1.13 -- 00:34:06.980 INFO [9140]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:06.980 INFO [9140]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:06.980 INFO [9140]: QUERY_STRING = /member -- 00:34:06.980 INFO [9140]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:07.024 INFO [9140]: COREGRADE is stopping... -- 00:34:07.024 DEBUG [9140]: Closing database connection -- 00:34:07.024 SQL [9140]: pgsql_close() -- 00:34:07.240 INFO [9140]: COREGRADE is starting... -- 00:34:07.240 INFO [9140]: Version from config: 1.0 -- 00:34:07.240 DEBUG [9140]: Connecting to database... -- 00:34:07.240 DEBUG [9140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:07.240 SQL [9140]: pgsql_db_connect() -- 00:34:07.244 DEBUG [9140]: Database connection successful -- 00:34:07.244 INFO [9140]: _SERVER found -- 00:34:07.244 INFO [9140]: REMOTE_ADDR = 192.168.1.13 -- 00:34:07.244 INFO [9140]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:07.244 INFO [9140]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:07.244 INFO [9140]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:34:07.244 INFO [9140]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:07.256 INFO [9140]: COREGRADE is stopping... -- 00:34:07.256 DEBUG [9140]: Closing database connection -- 00:34:07.256 SQL [9140]: pgsql_close() -- 00:34:07.288 INFO [9140]: COREGRADE is starting... -- 00:34:07.288 INFO [9140]: Version from config: 1.0 -- 00:34:07.288 DEBUG [9140]: Connecting to database... -- 00:34:07.288 DEBUG [9140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:07.288 SQL [9140]: pgsql_db_connect() -- 00:34:07.292 DEBUG [9140]: Database connection successful -- 00:34:07.292 INFO [9140]: _SERVER found -- 00:34:07.292 INFO [9140]: REMOTE_ADDR = 192.168.1.13 -- 00:34:07.292 INFO [9140]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:07.292 INFO [9140]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:07.292 INFO [9140]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:34:07.292 INFO [9140]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:07.304 INFO [9140]: COREGRADE is stopping... -- 00:34:07.304 DEBUG [9140]: Closing database connection -- 00:34:07.304 SQL [9140]: pgsql_close() -- 00:34:08.614 INFO [9140]: COREGRADE is starting... -- 00:34:08.615 INFO [9140]: Version from config: 1.0 -- 00:34:08.615 DEBUG [9140]: Connecting to database... -- 00:34:08.615 DEBUG [9140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:08.615 SQL [9140]: pgsql_db_connect() -- 00:34:08.619 DEBUG [9140]: Database connection successful -- 00:34:08.619 INFO [9140]: _SERVER found -- 00:34:08.619 INFO [9140]: REMOTE_ADDR = 192.168.1.13 -- 00:34:08.619 INFO [9140]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:08.619 INFO [9140]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:08.619 INFO [9140]: QUERY_STRING = /member/page -- 00:34:08.619 INFO [9140]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:08.664 INFO [9140]: COREGRADE is stopping... -- 00:34:08.664 DEBUG [9140]: Closing database connection -- 00:34:08.664 SQL [9140]: pgsql_close() -- 00:34:08.898 INFO [9140]: COREGRADE is starting... -- 00:34:08.899 INFO [9140]: Version from config: 1.0 -- 00:34:08.899 DEBUG [9140]: Connecting to database... -- 00:34:08.899 DEBUG [9140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:08.899 SQL [9140]: pgsql_db_connect() -- 00:34:08.902 DEBUG [9140]: Database connection successful -- 00:34:08.903 INFO [9140]: _SERVER found -- 00:34:08.903 INFO [9140]: REMOTE_ADDR = 192.168.1.13 -- 00:34:08.903 INFO [9140]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:08.903 INFO [9140]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:08.903 INFO [9140]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:34:08.903 INFO [9140]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:08.915 INFO [9140]: COREGRADE is stopping... -- 00:34:08.915 DEBUG [9140]: Closing database connection -- 00:34:08.915 SQL [9140]: pgsql_close() -- 00:34:11.969 INFO [8463]: COREGRADE is starting... -- 00:34:11.970 INFO [8463]: Version from config: 1.0 -- 00:34:11.970 DEBUG [8463]: Connecting to database... -- 00:34:11.970 DEBUG [8463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:11.970 SQL [8463]: pgsql_db_connect() -- 00:34:11.974 DEBUG [8463]: Database connection successful -- 00:34:11.974 INFO [8463]: _SERVER found -- 00:34:11.974 INFO [8463]: REMOTE_ADDR = 192.168.1.13 -- 00:34:11.974 INFO [8463]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:11.974 INFO [8463]: HTTP_COOKIE = ci_session=q9hplqv2i1bt1rc4jg7c9homcb624qtr; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:34:11.974 INFO [8463]: QUERY_STRING = /member/configure -- 00:34:11.974 INFO [8463]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:34:12.014 INFO [8463]: COREGRADE is stopping... -- 00:34:12.014 DEBUG [8463]: Closing database connection -- 00:34:12.014 SQL [8463]: pgsql_close() -- 00:34:12.084 INFO [8463]: COREGRADE is starting... -- 00:34:12.084 INFO [8463]: Version from config: 1.0 -- 00:34:12.084 DEBUG [8463]: Connecting to database... -- 00:34:12.084 DEBUG [8463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:12.084 SQL [8463]: pgsql_db_connect() -- 00:34:12.088 DEBUG [8463]: Database connection successful -- 00:34:12.088 INFO [8463]: _SERVER found -- 00:34:12.088 INFO [8463]: REMOTE_ADDR = 192.168.1.13 -- 00:34:12.088 INFO [8463]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:12.088 INFO [8463]: HTTP_COOKIE = ci_session=q9hplqv2i1bt1rc4jg7c9homcb624qtr; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:34:12.088 INFO [8463]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:34:12.088 INFO [8463]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:34:12.099 INFO [8463]: COREGRADE is stopping... -- 00:34:12.099 DEBUG [8463]: Closing database connection -- 00:34:12.099 SQL [8463]: pgsql_close() -- 00:34:12.164 INFO [8463]: COREGRADE is starting... -- 00:34:12.164 INFO [8463]: Version from config: 1.0 -- 00:34:12.164 DEBUG [8463]: Connecting to database... -- 00:34:12.164 DEBUG [8463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:12.164 SQL [8463]: pgsql_db_connect() -- 00:34:12.168 DEBUG [8463]: Database connection successful -- 00:34:12.168 INFO [8463]: _SERVER found -- 00:34:12.168 INFO [8463]: REMOTE_ADDR = 192.168.1.13 -- 00:34:12.168 INFO [8463]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:12.168 INFO [8463]: HTTP_COOKIE = ci_session=q9hplqv2i1bt1rc4jg7c9homcb624qtr; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:34:12.168 INFO [8463]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:34:12.168 INFO [8463]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:34:12.179 INFO [8463]: COREGRADE is stopping... -- 00:34:12.179 DEBUG [8463]: Closing database connection -- 00:34:12.179 SQL [8463]: pgsql_close() -- 00:34:12.375 INFO [8463]: COREGRADE is starting... -- 00:34:12.375 INFO [8463]: Version from config: 1.0 -- 00:34:12.375 DEBUG [8463]: Connecting to database... -- 00:34:12.375 DEBUG [8463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:12.375 SQL [8463]: pgsql_db_connect() -- 00:34:12.379 DEBUG [8463]: Database connection successful -- 00:34:12.379 INFO [8463]: _SERVER found -- 00:34:12.379 INFO [8463]: REMOTE_ADDR = 192.168.1.13 -- 00:34:12.379 INFO [8463]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:12.379 INFO [8463]: HTTP_COOKIE = ci_session=q9hplqv2i1bt1rc4jg7c9homcb624qtr; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:34:12.379 INFO [8463]: QUERY_STRING = /member -- 00:34:12.379 INFO [8463]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:34:12.419 INFO [8463]: COREGRADE is stopping... -- 00:34:12.419 DEBUG [8463]: Closing database connection -- 00:34:12.419 SQL [8463]: pgsql_close() -- 00:34:12.429 INFO [9137]: COREGRADE is starting... -- 00:34:12.430 INFO [9137]: Version from config: 1.0 -- 00:34:12.430 DEBUG [9137]: Connecting to database... -- 00:34:12.430 DEBUG [9137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:12.430 SQL [9137]: pgsql_db_connect() -- 00:34:12.434 DEBUG [9137]: Database connection successful -- 00:34:12.434 INFO [9137]: _SERVER found -- 00:34:12.434 INFO [9137]: REMOTE_ADDR = 192.168.1.13 -- 00:34:12.434 INFO [9137]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:12.434 INFO [9137]: HTTP_COOKIE = ci_session=q9hplqv2i1bt1rc4jg7c9homcb624qtr; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:34:12.434 INFO [9137]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:34:12.434 INFO [9137]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:34:12.445 INFO [9137]: COREGRADE is stopping... -- 00:34:12.445 DEBUG [9137]: Closing database connection -- 00:34:12.445 SQL [9137]: pgsql_close() -- 00:34:12.546 INFO [9137]: COREGRADE is starting... -- 00:34:12.547 INFO [9137]: Version from config: 1.0 -- 00:34:12.547 DEBUG [9137]: Connecting to database... -- 00:34:12.547 DEBUG [9137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:12.547 SQL [9137]: pgsql_db_connect() -- 00:34:12.551 DEBUG [9137]: Database connection successful -- 00:34:12.551 INFO [9137]: _SERVER found -- 00:34:12.551 INFO [9137]: REMOTE_ADDR = 192.168.1.13 -- 00:34:12.551 INFO [9137]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:12.551 INFO [9137]: HTTP_COOKIE = ci_session=q9hplqv2i1bt1rc4jg7c9homcb624qtr; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:34:12.551 INFO [9137]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:34:12.551 INFO [9137]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:34:12.562 INFO [9137]: COREGRADE is stopping... -- 00:34:12.562 DEBUG [9137]: Closing database connection -- 00:34:12.562 SQL [9137]: pgsql_close() -- 00:34:13.533 INFO [9140]: COREGRADE is starting... -- 00:34:13.533 INFO [9140]: Version from config: 1.0 -- 00:34:13.533 DEBUG [9140]: Connecting to database... -- 00:34:13.533 DEBUG [9140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:13.533 SQL [9140]: pgsql_db_connect() -- 00:34:13.537 DEBUG [9140]: Database connection successful -- 00:34:13.537 INFO [9140]: _SERVER found -- 00:34:13.537 INFO [9140]: REMOTE_ADDR = 192.168.1.13 -- 00:34:13.537 INFO [9140]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:13.537 INFO [9140]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:13.537 INFO [9140]: QUERY_STRING = /member/viewCardAddAction -- 00:34:13.537 INFO [9140]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:13.572 INFO [9140]: COREGRADE is stopping... -- 00:34:13.572 DEBUG [9140]: Closing database connection -- 00:34:13.572 SQL [9140]: pgsql_close() -- 00:34:14.391 INFO [9137]: COREGRADE is starting... -- 00:34:14.391 INFO [9137]: Version from config: 1.0 -- 00:34:14.391 DEBUG [9137]: Connecting to database... -- 00:34:14.391 DEBUG [9137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:14.391 SQL [9137]: pgsql_db_connect() -- 00:34:14.395 DEBUG [9137]: Database connection successful -- 00:34:14.395 INFO [9137]: _SERVER found -- 00:34:14.395 INFO [9137]: REMOTE_ADDR = 192.168.1.13 -- 00:34:14.395 INFO [9137]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:14.395 INFO [9137]: HTTP_COOKIE = ci_session=q9hplqv2i1bt1rc4jg7c9homcb624qtr; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:34:14.395 INFO [9137]: QUERY_STRING = /member/page -- 00:34:14.395 INFO [9137]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:34:14.437 INFO [9137]: COREGRADE is stopping... -- 00:34:14.437 DEBUG [9137]: Closing database connection -- 00:34:14.437 SQL [9137]: pgsql_close() -- 00:34:14.497 INFO [9137]: COREGRADE is starting... -- 00:34:14.498 INFO [9137]: Version from config: 1.0 -- 00:34:14.498 DEBUG [9137]: Connecting to database... -- 00:34:14.498 DEBUG [9137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:14.498 SQL [9137]: pgsql_db_connect() -- 00:34:14.502 DEBUG [9137]: Database connection successful -- 00:34:14.502 INFO [9137]: _SERVER found -- 00:34:14.502 INFO [9137]: REMOTE_ADDR = 192.168.1.13 -- 00:34:14.502 INFO [9137]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:14.502 INFO [9137]: HTTP_COOKIE = ci_session=q9hplqv2i1bt1rc4jg7c9homcb624qtr; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:34:14.502 INFO [9137]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:34:14.502 INFO [9137]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:34:14.513 INFO [9137]: COREGRADE is stopping... -- 00:34:14.513 DEBUG [9137]: Closing database connection -- 00:34:14.513 SQL [9137]: pgsql_close() -- 00:34:14.554 INFO [9137]: COREGRADE is starting... -- 00:34:14.554 INFO [9137]: Version from config: 1.0 -- 00:34:14.554 DEBUG [9137]: Connecting to database... -- 00:34:14.554 DEBUG [9137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:14.554 SQL [9137]: pgsql_db_connect() -- 00:34:14.558 DEBUG [9137]: Database connection successful -- 00:34:14.558 INFO [9137]: _SERVER found -- 00:34:14.558 INFO [9137]: REMOTE_ADDR = 192.168.1.13 -- 00:34:14.558 INFO [9137]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:14.558 INFO [9137]: HTTP_COOKIE = ci_session=q9hplqv2i1bt1rc4jg7c9homcb624qtr; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:34:14.558 INFO [9137]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:34:14.558 INFO [9137]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:34:14.569 INFO [9137]: COREGRADE is stopping... -- 00:34:14.569 DEBUG [9137]: Closing database connection -- 00:34:14.569 SQL [9137]: pgsql_close() -- 00:34:17.257 INFO [9140]: COREGRADE is starting... -- 00:34:17.258 INFO [9140]: Version from config: 1.0 -- 00:34:17.258 DEBUG [9140]: Connecting to database... -- 00:34:17.258 DEBUG [9140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:17.258 SQL [9140]: pgsql_db_connect() -- 00:34:17.262 DEBUG [9140]: Database connection successful -- 00:34:17.262 INFO [9140]: _SERVER found -- 00:34:17.262 INFO [9140]: REMOTE_ADDR = 192.168.1.13 -- 00:34:17.262 INFO [9140]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:17.262 INFO [9140]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:17.262 INFO [9140]: QUERY_STRING = /member -- 00:34:17.262 INFO [9140]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:17.304 INFO [9140]: COREGRADE is stopping... -- 00:34:17.304 DEBUG [9140]: Closing database connection -- 00:34:17.304 SQL [9140]: pgsql_close() -- 00:34:17.556 INFO [9140]: COREGRADE is starting... -- 00:34:17.556 INFO [9140]: Version from config: 1.0 -- 00:34:17.556 DEBUG [9140]: Connecting to database... -- 00:34:17.556 DEBUG [9140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:17.556 SQL [9140]: pgsql_db_connect() -- 00:34:17.560 DEBUG [9140]: Database connection successful -- 00:34:17.560 INFO [9140]: _SERVER found -- 00:34:17.560 INFO [9140]: REMOTE_ADDR = 192.168.1.13 -- 00:34:17.560 INFO [9140]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:17.560 INFO [9140]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:17.560 INFO [9140]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:34:17.560 INFO [9140]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:17.572 INFO [9140]: COREGRADE is stopping... -- 00:34:17.572 DEBUG [9140]: Closing database connection -- 00:34:17.572 SQL [9140]: pgsql_close() -- 00:34:18.738 INFO [9140]: COREGRADE is starting... -- 00:34:18.738 INFO [9140]: Version from config: 1.0 -- 00:34:18.738 DEBUG [9140]: Connecting to database... -- 00:34:18.738 DEBUG [9140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:18.738 SQL [9140]: pgsql_db_connect() -- 00:34:18.742 DEBUG [9140]: Database connection successful -- 00:34:18.742 INFO [9140]: _SERVER found -- 00:34:18.742 INFO [9140]: REMOTE_ADDR = 192.168.1.13 -- 00:34:18.742 INFO [9140]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:18.742 INFO [9140]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:18.742 INFO [9140]: QUERY_STRING = /member/page -- 00:34:18.742 INFO [9140]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:18.787 INFO [9140]: COREGRADE is stopping... -- 00:34:18.787 DEBUG [9140]: Closing database connection -- 00:34:18.787 SQL [9140]: pgsql_close() -- 00:34:19.012 INFO [9140]: COREGRADE is starting... -- 00:34:19.012 INFO [9140]: Version from config: 1.0 -- 00:34:19.012 DEBUG [9140]: Connecting to database... -- 00:34:19.012 DEBUG [9140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:19.012 SQL [9140]: pgsql_db_connect() -- 00:34:19.016 DEBUG [9140]: Database connection successful -- 00:34:19.016 INFO [9140]: _SERVER found -- 00:34:19.016 INFO [9140]: REMOTE_ADDR = 192.168.1.13 -- 00:34:19.016 INFO [9140]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:19.016 INFO [9140]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:19.016 INFO [9140]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:34:19.016 INFO [9140]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:19.029 INFO [9140]: COREGRADE is stopping... -- 00:34:19.029 DEBUG [9140]: Closing database connection -- 00:34:19.029 SQL [9140]: pgsql_close() -- 00:34:20.294 INFO [9140]: COREGRADE is starting... -- 00:34:20.295 INFO [9140]: Version from config: 1.0 -- 00:34:20.295 DEBUG [9140]: Connecting to database... -- 00:34:20.295 DEBUG [9140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:20.295 SQL [9140]: pgsql_db_connect() -- 00:34:20.299 DEBUG [9140]: Database connection successful -- 00:34:20.299 INFO [9140]: _SERVER found -- 00:34:20.299 INFO [9140]: REMOTE_ADDR = 192.168.1.13 -- 00:34:20.299 INFO [9140]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:20.299 INFO [9140]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:20.299 INFO [9140]: QUERY_STRING = /member/page -- 00:34:20.299 INFO [9140]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:20.343 INFO [9140]: COREGRADE is stopping... -- 00:34:20.343 DEBUG [9140]: Closing database connection -- 00:34:20.343 SQL [9140]: pgsql_close() -- 00:34:20.567 INFO [9140]: COREGRADE is starting... -- 00:34:20.567 INFO [9140]: Version from config: 1.0 -- 00:34:20.567 DEBUG [9140]: Connecting to database... -- 00:34:20.567 DEBUG [9140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:20.567 SQL [9140]: pgsql_db_connect() -- 00:34:20.571 DEBUG [9140]: Database connection successful -- 00:34:20.571 INFO [9140]: _SERVER found -- 00:34:20.571 INFO [9140]: REMOTE_ADDR = 192.168.1.13 -- 00:34:20.571 INFO [9140]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:20.571 INFO [9140]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:20.571 INFO [9140]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:34:20.571 INFO [9140]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:20.584 INFO [9140]: COREGRADE is stopping... -- 00:34:20.584 DEBUG [9140]: Closing database connection -- 00:34:20.584 SQL [9140]: pgsql_close() -- 00:34:21.153 INFO [9139]: COREGRADE is starting... -- 00:34:21.153 INFO [9139]: Version from config: 1.0 -- 00:34:21.153 DEBUG [9139]: Connecting to database... -- 00:34:21.153 DEBUG [9139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:21.153 SQL [9139]: pgsql_db_connect() -- 00:34:21.157 DEBUG [9139]: Database connection successful -- 00:34:21.157 INFO [9139]: _SERVER found -- 00:34:21.157 INFO [9139]: REMOTE_ADDR = 192.168.1.13 -- 00:34:21.157 INFO [9139]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:21.157 INFO [9139]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:21.157 INFO [9139]: QUERY_STRING = /member/page -- 00:34:21.157 INFO [9139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:21.199 INFO [9139]: COREGRADE is stopping... -- 00:34:21.199 DEBUG [9139]: Closing database connection -- 00:34:21.199 SQL [9139]: pgsql_close() -- 00:34:21.362 INFO [9139]: COREGRADE is starting... -- 00:34:21.362 INFO [9139]: Version from config: 1.0 -- 00:34:21.362 DEBUG [9139]: Connecting to database... -- 00:34:21.362 DEBUG [9139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:21.362 SQL [9139]: pgsql_db_connect() -- 00:34:21.366 DEBUG [9139]: Database connection successful -- 00:34:21.366 INFO [9139]: _SERVER found -- 00:34:21.366 INFO [9139]: REMOTE_ADDR = 192.168.1.13 -- 00:34:21.366 INFO [9139]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:21.366 INFO [9139]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:21.366 INFO [9139]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:34:21.366 INFO [9139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:21.377 INFO [9139]: COREGRADE is stopping... -- 00:34:21.377 DEBUG [9139]: Closing database connection -- 00:34:21.377 SQL [9139]: pgsql_close() -- 00:34:21.929 INFO [9139]: COREGRADE is starting... -- 00:34:21.929 INFO [9139]: Version from config: 1.0 -- 00:34:21.929 DEBUG [9139]: Connecting to database... -- 00:34:21.929 DEBUG [9139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:21.929 SQL [9139]: pgsql_db_connect() -- 00:34:21.933 DEBUG [9139]: Database connection successful -- 00:34:21.933 INFO [9139]: _SERVER found -- 00:34:21.933 INFO [9139]: REMOTE_ADDR = 192.168.1.13 -- 00:34:21.933 INFO [9139]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:21.933 INFO [9139]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:21.933 INFO [9139]: QUERY_STRING = /member/page -- 00:34:21.933 INFO [9139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:21.974 INFO [9139]: COREGRADE is stopping... -- 00:34:21.974 DEBUG [9139]: Closing database connection -- 00:34:21.974 SQL [9139]: pgsql_close() -- 00:34:22.133 INFO [9140]: COREGRADE is starting... -- 00:34:22.134 INFO [9140]: Version from config: 1.0 -- 00:34:22.134 DEBUG [9140]: Connecting to database... -- 00:34:22.134 DEBUG [9140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:22.134 SQL [9140]: pgsql_db_connect() -- 00:34:22.146 INFO [9139]: COREGRADE is starting... -- 00:34:22.147 INFO [9139]: Version from config: 1.0 -- 00:34:22.147 DEBUG [9139]: Connecting to database... -- 00:34:22.147 DEBUG [9139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:22.147 SQL [9139]: pgsql_db_connect() -- 00:34:22.151 DEBUG [9139]: Database connection successful -- 00:34:22.151 INFO [9139]: _SERVER found -- 00:34:22.151 INFO [9139]: REMOTE_ADDR = 192.168.1.13 -- 00:34:22.151 INFO [9139]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:22.151 INFO [9139]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:22.151 INFO [9139]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:34:22.151 INFO [9139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:22.162 INFO [9139]: COREGRADE is stopping... -- 00:34:22.162 DEBUG [9139]: Closing database connection -- 00:34:22.162 SQL [9139]: pgsql_close() -- 00:34:22.138 DEBUG [9140]: Database connection successful -- 00:34:22.138 INFO [9140]: _SERVER found -- 00:34:22.138 INFO [9140]: REMOTE_ADDR = 192.168.1.13 -- 00:34:22.138 INFO [9140]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:22.138 INFO [9140]: HTTP_COOKIE = ci_session=q9hplqv2i1bt1rc4jg7c9homcb624qtr; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:34:22.138 INFO [9140]: QUERY_STRING = /member/viewCardAddAction -- 00:34:22.138 INFO [9140]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:34:22.172 INFO [9140]: COREGRADE is stopping... -- 00:34:22.172 DEBUG [9140]: Closing database connection -- 00:34:22.172 SQL [9140]: pgsql_close() -- 00:34:49.538 INFO [9136]: COREGRADE is starting... -- 00:34:49.538 INFO [9136]: Version from config: 1.0 -- 00:34:49.538 DEBUG [9136]: Connecting to database... -- 00:34:49.538 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:49.538 SQL [9136]: pgsql_db_connect() -- 00:34:49.543 DEBUG [9136]: Database connection successful -- 00:34:49.543 INFO [9136]: _SERVER found -- 00:34:49.543 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:34:49.543 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:49.543 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:49.543 INFO [9136]: QUERY_STRING = /member/page -- 00:34:49.543 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:49.585 INFO [9136]: COREGRADE is stopping... -- 00:34:49.585 DEBUG [9136]: Closing database connection -- 00:34:49.585 SQL [9136]: pgsql_close() -- 00:34:49.779 INFO [9136]: COREGRADE is starting... -- 00:34:49.780 INFO [9136]: Version from config: 1.0 -- 00:34:49.780 DEBUG [9136]: Connecting to database... -- 00:34:49.780 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:49.780 SQL [9136]: pgsql_db_connect() -- 00:34:49.784 DEBUG [9136]: Database connection successful -- 00:34:49.784 INFO [9136]: _SERVER found -- 00:34:49.784 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:34:49.784 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:49.784 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:49.784 INFO [9136]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:34:49.784 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:49.795 INFO [9136]: COREGRADE is stopping... -- 00:34:49.795 DEBUG [9136]: Closing database connection -- 00:34:49.795 SQL [9136]: pgsql_close() -- 00:34:50.414 INFO [8461]: COREGRADE is starting... -- 00:34:50.415 INFO [8461]: Version from config: 1.0 -- 00:34:50.415 DEBUG [8461]: Connecting to database... -- 00:34:50.415 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:50.415 SQL [8461]: pgsql_db_connect() -- 00:34:50.419 DEBUG [8461]: Database connection successful -- 00:34:50.419 INFO [8461]: _SERVER found -- 00:34:50.419 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 00:34:50.419 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:50.419 INFO [8461]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:50.419 INFO [8461]: QUERY_STRING = /member/page -- 00:34:50.419 INFO [8461]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:50.460 INFO [8461]: COREGRADE is stopping... -- 00:34:50.460 DEBUG [8461]: Closing database connection -- 00:34:50.460 SQL [8461]: pgsql_close() -- 00:34:50.624 INFO [8461]: COREGRADE is starting... -- 00:34:50.624 INFO [8461]: Version from config: 1.0 -- 00:34:50.624 DEBUG [8461]: Connecting to database... -- 00:34:50.624 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:50.624 SQL [8461]: pgsql_db_connect() -- 00:34:50.628 DEBUG [8461]: Database connection successful -- 00:34:50.628 INFO [8461]: _SERVER found -- 00:34:50.628 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 00:34:50.628 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:50.628 INFO [8461]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:50.628 INFO [8461]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:34:50.628 INFO [8461]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:50.639 INFO [8461]: COREGRADE is stopping... -- 00:34:50.640 DEBUG [8461]: Closing database connection -- 00:34:50.640 SQL [8461]: pgsql_close() -- 00:34:51.177 INFO [8461]: COREGRADE is starting... -- 00:34:51.177 INFO [8461]: Version from config: 1.0 -- 00:34:51.177 DEBUG [8461]: Connecting to database... -- 00:34:51.177 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:51.177 SQL [8461]: pgsql_db_connect() -- 00:34:51.181 DEBUG [8461]: Database connection successful -- 00:34:51.181 INFO [8461]: _SERVER found -- 00:34:51.181 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 00:34:51.181 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:51.181 INFO [8461]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:51.181 INFO [8461]: QUERY_STRING = /member/page -- 00:34:51.181 INFO [8461]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:51.223 INFO [8461]: COREGRADE is stopping... -- 00:34:51.223 DEBUG [8461]: Closing database connection -- 00:34:51.223 SQL [8461]: pgsql_close() -- 00:34:51.428 INFO [8461]: COREGRADE is starting... -- 00:34:51.428 INFO [8461]: Version from config: 1.0 -- 00:34:51.428 DEBUG [8461]: Connecting to database... -- 00:34:51.428 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:51.428 SQL [8461]: pgsql_db_connect() -- 00:34:51.432 DEBUG [8461]: Database connection successful -- 00:34:51.432 INFO [8461]: _SERVER found -- 00:34:51.432 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 00:34:51.432 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:51.432 INFO [8461]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:51.432 INFO [8461]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:34:51.432 INFO [8461]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:51.443 INFO [8461]: COREGRADE is stopping... -- 00:34:51.443 DEBUG [8461]: Closing database connection -- 00:34:51.443 SQL [8461]: pgsql_close() -- 00:34:51.876 INFO [8461]: COREGRADE is starting... -- 00:34:51.876 INFO [8461]: Version from config: 1.0 -- 00:34:51.876 DEBUG [8461]: Connecting to database... -- 00:34:51.876 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:51.876 SQL [8461]: pgsql_db_connect() -- 00:34:51.880 DEBUG [8461]: Database connection successful -- 00:34:51.880 INFO [8461]: _SERVER found -- 00:34:51.880 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 00:34:51.880 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:51.880 INFO [8461]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:51.880 INFO [8461]: QUERY_STRING = /member/page -- 00:34:51.880 INFO [8461]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:51.921 INFO [8461]: COREGRADE is stopping... -- 00:34:51.921 DEBUG [8461]: Closing database connection -- 00:34:51.921 SQL [8461]: pgsql_close() -- 00:34:52.140 INFO [8461]: COREGRADE is starting... -- 00:34:52.140 INFO [8461]: Version from config: 1.0 -- 00:34:52.140 DEBUG [8461]: Connecting to database... -- 00:34:52.140 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:52.140 SQL [8461]: pgsql_db_connect() -- 00:34:52.144 DEBUG [8461]: Database connection successful -- 00:34:52.144 INFO [8461]: _SERVER found -- 00:34:52.144 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 00:34:52.144 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:52.144 INFO [8461]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:52.144 INFO [8461]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:34:52.144 INFO [8461]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:52.155 INFO [8461]: COREGRADE is stopping... -- 00:34:52.155 DEBUG [8461]: Closing database connection -- 00:34:52.155 SQL [8461]: pgsql_close() -- 00:34:52.702 INFO [9136]: COREGRADE is starting... -- 00:34:52.702 INFO [9136]: Version from config: 1.0 -- 00:34:52.702 DEBUG [9136]: Connecting to database... -- 00:34:52.702 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:52.702 SQL [9136]: pgsql_db_connect() -- 00:34:52.706 DEBUG [9136]: Database connection successful -- 00:34:52.706 INFO [9136]: _SERVER found -- 00:34:52.706 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:34:52.706 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:52.706 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:52.706 INFO [9136]: QUERY_STRING = /member/page -- 00:34:52.706 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:52.747 INFO [9136]: COREGRADE is stopping... -- 00:34:52.747 DEBUG [9136]: Closing database connection -- 00:34:52.747 SQL [9136]: pgsql_close() -- 00:34:52.959 INFO [9136]: COREGRADE is starting... -- 00:34:52.959 INFO [9136]: Version from config: 1.0 -- 00:34:52.959 DEBUG [9136]: Connecting to database... -- 00:34:52.959 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:52.959 SQL [9136]: pgsql_db_connect() -- 00:34:52.963 DEBUG [9136]: Database connection successful -- 00:34:52.963 INFO [9136]: _SERVER found -- 00:34:52.963 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:34:52.963 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:52.963 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:52.963 INFO [9136]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:34:52.963 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:52.974 INFO [9136]: COREGRADE is stopping... -- 00:34:52.974 DEBUG [9136]: Closing database connection -- 00:34:52.974 SQL [9136]: pgsql_close() -- 00:34:53.453 INFO [9136]: COREGRADE is starting... -- 00:34:53.453 INFO [9136]: Version from config: 1.0 -- 00:34:53.453 DEBUG [9136]: Connecting to database... -- 00:34:53.453 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:53.453 SQL [9136]: pgsql_db_connect() -- 00:34:53.457 DEBUG [9136]: Database connection successful -- 00:34:53.457 INFO [9136]: _SERVER found -- 00:34:53.457 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:34:53.457 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:53.457 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:53.457 INFO [9136]: QUERY_STRING = /member/page -- 00:34:53.457 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:53.498 INFO [9136]: COREGRADE is stopping... -- 00:34:53.498 DEBUG [9136]: Closing database connection -- 00:34:53.498 SQL [9136]: pgsql_close() -- 00:34:53.672 INFO [9136]: COREGRADE is starting... -- 00:34:53.672 INFO [9136]: Version from config: 1.0 -- 00:34:53.672 DEBUG [9136]: Connecting to database... -- 00:34:53.672 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:53.672 SQL [9136]: pgsql_db_connect() -- 00:34:53.676 DEBUG [9136]: Database connection successful -- 00:34:53.676 INFO [9136]: _SERVER found -- 00:34:53.676 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:34:53.676 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:53.676 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:53.676 INFO [9136]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:34:53.676 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:53.687 INFO [9136]: COREGRADE is stopping... -- 00:34:53.687 DEBUG [9136]: Closing database connection -- 00:34:53.687 SQL [9136]: pgsql_close() -- 00:34:54.189 INFO [9136]: COREGRADE is starting... -- 00:34:54.189 INFO [9136]: Version from config: 1.0 -- 00:34:54.189 DEBUG [9136]: Connecting to database... -- 00:34:54.189 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:54.189 SQL [9136]: pgsql_db_connect() -- 00:34:54.193 DEBUG [9136]: Database connection successful -- 00:34:54.193 INFO [9136]: _SERVER found -- 00:34:54.193 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:34:54.193 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:54.193 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:54.193 INFO [9136]: QUERY_STRING = /member/page -- 00:34:54.193 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:54.234 INFO [9136]: COREGRADE is stopping... -- 00:34:54.234 DEBUG [9136]: Closing database connection -- 00:34:54.234 SQL [9136]: pgsql_close() -- 00:34:54.491 INFO [9136]: COREGRADE is starting... -- 00:34:54.492 INFO [9136]: Version from config: 1.0 -- 00:34:54.492 DEBUG [9136]: Connecting to database... -- 00:34:54.492 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:54.492 SQL [9136]: pgsql_db_connect() -- 00:34:54.496 DEBUG [9136]: Database connection successful -- 00:34:54.496 INFO [9136]: _SERVER found -- 00:34:54.496 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:34:54.496 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:54.496 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:54.496 INFO [9136]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:34:54.496 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:54.507 INFO [9136]: COREGRADE is stopping... -- 00:34:54.507 DEBUG [9136]: Closing database connection -- 00:34:54.507 SQL [9136]: pgsql_close() -- 00:34:54.839 INFO [8461]: COREGRADE is starting... -- 00:34:54.839 INFO [8461]: Version from config: 1.0 -- 00:34:54.839 DEBUG [8461]: Connecting to database... -- 00:34:54.839 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:54.839 SQL [8461]: pgsql_db_connect() -- 00:34:54.843 DEBUG [8461]: Database connection successful -- 00:34:54.843 INFO [8461]: _SERVER found -- 00:34:54.843 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 00:34:54.843 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:54.843 INFO [8461]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:54.843 INFO [8461]: QUERY_STRING = /member/page -- 00:34:54.843 INFO [8461]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:54.884 INFO [8461]: COREGRADE is stopping... -- 00:34:54.884 DEBUG [8461]: Closing database connection -- 00:34:54.884 SQL [8461]: pgsql_close() -- 00:34:55.069 INFO [8461]: COREGRADE is starting... -- 00:34:55.069 INFO [8461]: Version from config: 1.0 -- 00:34:55.069 DEBUG [8461]: Connecting to database... -- 00:34:55.069 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:55.069 SQL [8461]: pgsql_db_connect() -- 00:34:55.073 DEBUG [8461]: Database connection successful -- 00:34:55.073 INFO [8461]: _SERVER found -- 00:34:55.073 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 00:34:55.073 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:55.073 INFO [8461]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:55.073 INFO [8461]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:34:55.073 INFO [8461]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:55.084 INFO [8461]: COREGRADE is stopping... -- 00:34:55.084 DEBUG [8461]: Closing database connection -- 00:34:55.084 SQL [8461]: pgsql_close() -- 00:34:56.070 INFO [9136]: COREGRADE is starting... -- 00:34:56.070 INFO [9136]: Version from config: 1.0 -- 00:34:56.071 DEBUG [9136]: Connecting to database... -- 00:34:56.071 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:56.071 SQL [9136]: pgsql_db_connect() -- 00:34:56.075 DEBUG [9136]: Database connection successful -- 00:34:56.075 INFO [9136]: _SERVER found -- 00:34:56.075 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:34:56.075 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:56.075 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:56.075 INFO [9136]: QUERY_STRING = /member/page -- 00:34:56.075 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:56.115 INFO [9136]: COREGRADE is stopping... -- 00:34:56.115 DEBUG [9136]: Closing database connection -- 00:34:56.115 SQL [9136]: pgsql_close() -- 00:34:56.286 INFO [9136]: COREGRADE is starting... -- 00:34:56.287 INFO [9136]: Version from config: 1.0 -- 00:34:56.287 DEBUG [9136]: Connecting to database... -- 00:34:56.287 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:56.287 SQL [9136]: pgsql_db_connect() -- 00:34:56.291 DEBUG [9136]: Database connection successful -- 00:34:56.291 INFO [9136]: _SERVER found -- 00:34:56.291 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:34:56.291 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:56.291 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:56.291 INFO [9136]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:34:56.291 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:56.302 INFO [9136]: COREGRADE is stopping... -- 00:34:56.302 DEBUG [9136]: Closing database connection -- 00:34:56.302 SQL [9136]: pgsql_close() -- 00:34:56.777 INFO [9136]: COREGRADE is starting... -- 00:34:56.777 INFO [9136]: Version from config: 1.0 -- 00:34:56.777 DEBUG [9136]: Connecting to database... -- 00:34:56.777 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:56.777 SQL [9136]: pgsql_db_connect() -- 00:34:56.781 DEBUG [9136]: Database connection successful -- 00:34:56.781 INFO [9136]: _SERVER found -- 00:34:56.781 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:34:56.781 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:56.781 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:56.781 INFO [9136]: QUERY_STRING = /member/page -- 00:34:56.781 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:56.822 INFO [9136]: COREGRADE is stopping... -- 00:34:56.822 DEBUG [9136]: Closing database connection -- 00:34:56.822 SQL [9136]: pgsql_close() -- 00:34:57.019 INFO [9136]: COREGRADE is starting... -- 00:34:57.019 INFO [9136]: Version from config: 1.0 -- 00:34:57.019 DEBUG [9136]: Connecting to database... -- 00:34:57.019 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:57.019 SQL [9136]: pgsql_db_connect() -- 00:34:57.023 DEBUG [9136]: Database connection successful -- 00:34:57.023 INFO [9136]: _SERVER found -- 00:34:57.023 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:34:57.023 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:57.023 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:57.023 INFO [9136]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:34:57.023 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:57.034 INFO [9136]: COREGRADE is stopping... -- 00:34:57.034 DEBUG [9136]: Closing database connection -- 00:34:57.034 SQL [9136]: pgsql_close() -- 00:34:57.447 INFO [9136]: COREGRADE is starting... -- 00:34:57.447 INFO [9136]: Version from config: 1.0 -- 00:34:57.447 DEBUG [9136]: Connecting to database... -- 00:34:57.447 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:57.447 SQL [9136]: pgsql_db_connect() -- 00:34:57.451 DEBUG [9136]: Database connection successful -- 00:34:57.451 INFO [9136]: _SERVER found -- 00:34:57.451 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:34:57.451 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:57.451 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:57.451 INFO [9136]: QUERY_STRING = /member/page -- 00:34:57.451 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:57.492 INFO [9136]: COREGRADE is stopping... -- 00:34:57.492 DEBUG [9136]: Closing database connection -- 00:34:57.492 SQL [9136]: pgsql_close() -- 00:34:57.663 INFO [9136]: COREGRADE is starting... -- 00:34:57.663 INFO [9136]: Version from config: 1.0 -- 00:34:57.663 DEBUG [9136]: Connecting to database... -- 00:34:57.663 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:57.663 SQL [9136]: pgsql_db_connect() -- 00:34:57.667 DEBUG [9136]: Database connection successful -- 00:34:57.667 INFO [9136]: _SERVER found -- 00:34:57.667 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:34:57.667 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:57.667 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:57.667 INFO [9136]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:34:57.667 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:57.678 INFO [9136]: COREGRADE is stopping... -- 00:34:57.678 DEBUG [9136]: Closing database connection -- 00:34:57.678 SQL [9136]: pgsql_close() -- 00:34:58.314 INFO [8461]: COREGRADE is starting... -- 00:34:58.314 INFO [8461]: Version from config: 1.0 -- 00:34:58.314 DEBUG [8461]: Connecting to database... -- 00:34:58.314 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:58.314 SQL [8461]: pgsql_db_connect() -- 00:34:58.318 DEBUG [8461]: Database connection successful -- 00:34:58.318 INFO [8461]: _SERVER found -- 00:34:58.318 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 00:34:58.318 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:58.318 INFO [8461]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:58.318 INFO [8461]: QUERY_STRING = /member/page -- 00:34:58.318 INFO [8461]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:58.359 INFO [8461]: COREGRADE is stopping... -- 00:34:58.359 DEBUG [8461]: Closing database connection -- 00:34:58.359 SQL [8461]: pgsql_close() -- 00:34:58.531 INFO [8461]: COREGRADE is starting... -- 00:34:58.531 INFO [8461]: Version from config: 1.0 -- 00:34:58.531 DEBUG [8461]: Connecting to database... -- 00:34:58.531 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:58.531 SQL [8461]: pgsql_db_connect() -- 00:34:58.535 DEBUG [8461]: Database connection successful -- 00:34:58.535 INFO [8461]: _SERVER found -- 00:34:58.535 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 00:34:58.535 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:58.535 INFO [8461]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:58.535 INFO [8461]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:34:58.535 INFO [8461]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:58.546 INFO [8461]: COREGRADE is stopping... -- 00:34:58.546 DEBUG [8461]: Closing database connection -- 00:34:58.546 SQL [8461]: pgsql_close() -- 00:34:59.348 INFO [8461]: COREGRADE is starting... -- 00:34:59.348 INFO [8461]: Version from config: 1.0 -- 00:34:59.348 DEBUG [8461]: Connecting to database... -- 00:34:59.348 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:59.348 SQL [8461]: pgsql_db_connect() -- 00:34:59.352 DEBUG [8461]: Database connection successful -- 00:34:59.352 INFO [8461]: _SERVER found -- 00:34:59.352 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 00:34:59.352 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:59.352 INFO [8461]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:59.352 INFO [8461]: QUERY_STRING = /member/page -- 00:34:59.352 INFO [8461]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:59.393 INFO [8461]: COREGRADE is stopping... -- 00:34:59.393 DEBUG [8461]: Closing database connection -- 00:34:59.393 SQL [8461]: pgsql_close() -- 00:34:59.648 INFO [8461]: COREGRADE is starting... -- 00:34:59.648 INFO [8461]: Version from config: 1.0 -- 00:34:59.648 DEBUG [8461]: Connecting to database... -- 00:34:59.648 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:59.648 SQL [8461]: pgsql_db_connect() -- 00:34:59.652 DEBUG [8461]: Database connection successful -- 00:34:59.652 INFO [8461]: _SERVER found -- 00:34:59.652 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 00:34:59.652 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:59.652 INFO [8461]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:34:59.652 INFO [8461]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:34:59.652 INFO [8461]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:59.663 INFO [8461]: COREGRADE is stopping... -- 00:34:59.663 DEBUG [8461]: Closing database connection -- 00:34:59.663 SQL [8461]: pgsql_close() -- 00:35:00.566 INFO [9136]: COREGRADE is starting... -- 00:35:00.566 INFO [9136]: Version from config: 1.0 -- 00:35:00.566 DEBUG [9136]: Connecting to database... -- 00:35:00.566 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:00.566 SQL [9136]: pgsql_db_connect() -- 00:35:00.570 DEBUG [9136]: Database connection successful -- 00:35:00.570 INFO [9136]: _SERVER found -- 00:35:00.570 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:35:00.570 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:00.570 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:35:00.570 INFO [9136]: QUERY_STRING = /member/page -- 00:35:00.570 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:00.611 INFO [9136]: COREGRADE is stopping... -- 00:35:00.611 DEBUG [9136]: Closing database connection -- 00:35:00.611 SQL [9136]: pgsql_close() -- 00:35:00.814 INFO [9136]: COREGRADE is starting... -- 00:35:00.814 INFO [9136]: Version from config: 1.0 -- 00:35:00.814 DEBUG [9136]: Connecting to database... -- 00:35:00.814 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:00.814 SQL [9136]: pgsql_db_connect() -- 00:35:00.818 DEBUG [9136]: Database connection successful -- 00:35:00.818 INFO [9136]: _SERVER found -- 00:35:00.818 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:35:00.818 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:00.818 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:35:00.818 INFO [9136]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:35:00.818 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:00.829 INFO [9136]: COREGRADE is stopping... -- 00:35:00.829 DEBUG [9136]: Closing database connection -- 00:35:00.829 SQL [9136]: pgsql_close() -- 00:35:01.280 INFO [9136]: COREGRADE is starting... -- 00:35:01.281 INFO [9136]: Version from config: 1.0 -- 00:35:01.281 DEBUG [9136]: Connecting to database... -- 00:35:01.281 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:01.281 SQL [9136]: pgsql_db_connect() -- 00:35:01.285 DEBUG [9136]: Database connection successful -- 00:35:01.285 INFO [9136]: _SERVER found -- 00:35:01.285 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:35:01.285 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:01.285 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:35:01.285 INFO [9136]: QUERY_STRING = /member/page -- 00:35:01.285 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:01.326 INFO [9136]: COREGRADE is stopping... -- 00:35:01.326 DEBUG [9136]: Closing database connection -- 00:35:01.326 SQL [9136]: pgsql_close() -- 00:35:01.499 INFO [9136]: COREGRADE is starting... -- 00:35:01.499 INFO [9136]: Version from config: 1.0 -- 00:35:01.499 DEBUG [9136]: Connecting to database... -- 00:35:01.499 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:01.499 SQL [9136]: pgsql_db_connect() -- 00:35:01.503 DEBUG [9136]: Database connection successful -- 00:35:01.503 INFO [9136]: _SERVER found -- 00:35:01.503 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:35:01.503 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:01.503 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:35:01.503 INFO [9136]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:35:01.503 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:01.514 INFO [9136]: COREGRADE is stopping... -- 00:35:01.514 DEBUG [9136]: Closing database connection -- 00:35:01.514 SQL [9136]: pgsql_close() -- 00:35:02.062 INFO [9136]: COREGRADE is starting... -- 00:35:02.062 INFO [9136]: Version from config: 1.0 -- 00:35:02.062 DEBUG [9136]: Connecting to database... -- 00:35:02.062 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:02.062 SQL [9136]: pgsql_db_connect() -- 00:35:02.066 DEBUG [9136]: Database connection successful -- 00:35:02.066 INFO [9136]: _SERVER found -- 00:35:02.066 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:35:02.066 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:02.066 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:35:02.066 INFO [9136]: QUERY_STRING = /member/page -- 00:35:02.066 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:02.108 INFO [9136]: COREGRADE is stopping... -- 00:35:02.108 DEBUG [9136]: Closing database connection -- 00:35:02.108 SQL [9136]: pgsql_close() -- 00:35:02.317 INFO [9136]: COREGRADE is starting... -- 00:35:02.318 INFO [9136]: Version from config: 1.0 -- 00:35:02.318 DEBUG [9136]: Connecting to database... -- 00:35:02.318 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:02.318 SQL [9136]: pgsql_db_connect() -- 00:35:02.322 DEBUG [9136]: Database connection successful -- 00:35:02.322 INFO [9136]: _SERVER found -- 00:35:02.322 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:35:02.322 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:02.322 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:35:02.322 INFO [9136]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:35:02.322 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:02.333 INFO [9136]: COREGRADE is stopping... -- 00:35:02.333 DEBUG [9136]: Closing database connection -- 00:35:02.333 SQL [9136]: pgsql_close() -- 00:35:02.856 INFO [8461]: COREGRADE is starting... -- 00:35:02.856 INFO [8461]: Version from config: 1.0 -- 00:35:02.856 DEBUG [8461]: Connecting to database... -- 00:35:02.856 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:02.856 SQL [8461]: pgsql_db_connect() -- 00:35:02.860 DEBUG [8461]: Database connection successful -- 00:35:02.860 INFO [8461]: _SERVER found -- 00:35:02.860 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 00:35:02.860 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:02.860 INFO [8461]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:35:02.860 INFO [8461]: QUERY_STRING = /member/page -- 00:35:02.860 INFO [8461]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:02.901 INFO [8461]: COREGRADE is stopping... -- 00:35:02.901 DEBUG [8461]: Closing database connection -- 00:35:02.901 SQL [8461]: pgsql_close() -- 00:35:03.111 INFO [8461]: COREGRADE is starting... -- 00:35:03.111 INFO [8461]: Version from config: 1.0 -- 00:35:03.111 DEBUG [8461]: Connecting to database... -- 00:35:03.111 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:03.111 SQL [8461]: pgsql_db_connect() -- 00:35:03.115 DEBUG [8461]: Database connection successful -- 00:35:03.115 INFO [8461]: _SERVER found -- 00:35:03.115 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 00:35:03.115 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:03.115 INFO [8461]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:35:03.115 INFO [8461]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:35:03.115 INFO [8461]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:03.126 INFO [8461]: COREGRADE is stopping... -- 00:35:03.126 DEBUG [8461]: Closing database connection -- 00:35:03.126 SQL [8461]: pgsql_close() -- 00:35:03.516 INFO [9136]: COREGRADE is starting... -- 00:35:03.517 INFO [9136]: Version from config: 1.0 -- 00:35:03.517 DEBUG [9136]: Connecting to database... -- 00:35:03.517 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:03.517 SQL [9136]: pgsql_db_connect() -- 00:35:03.521 DEBUG [9136]: Database connection successful -- 00:35:03.521 INFO [9136]: _SERVER found -- 00:35:03.521 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:35:03.521 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:03.521 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:35:03.521 INFO [9136]: QUERY_STRING = /member/page -- 00:35:03.521 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:03.561 INFO [9136]: COREGRADE is stopping... -- 00:35:03.561 DEBUG [9136]: Closing database connection -- 00:35:03.561 SQL [9136]: pgsql_close() -- 00:35:03.610 INFO [8461]: COREGRADE is starting... -- 00:35:03.611 INFO [8461]: Version from config: 1.0 -- 00:35:03.611 DEBUG [8461]: Connecting to database... -- 00:35:03.611 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:03.611 SQL [8461]: pgsql_db_connect() -- 00:35:03.645 INFO [8461]: COREGRADE is starting... -- 00:35:03.645 INFO [8461]: Version from config: 1.0 -- 00:35:03.645 DEBUG [8461]: Connecting to database... -- 00:35:03.645 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:03.645 SQL [8461]: pgsql_db_connect() -- 00:35:03.649 DEBUG [8461]: Database connection successful -- 00:35:03.649 INFO [8461]: _SERVER found -- 00:35:03.649 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 00:35:03.649 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:03.649 INFO [8461]: HTTP_COOKIE = ci_session=q9hplqv2i1bt1rc4jg7c9homcb624qtr; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:35:03.649 INFO [8461]: QUERY_STRING = -- 00:35:03.649 INFO [8461]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:35:03.649 INFO [8461]: SystemStatus()09-09-********~************ -- 00:35:03.649 INFO [8461]: long coregrade_api_main(CVars in, CVars &out) -- 00:35:03.649 INFO [8461]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 00:35:03.649 INFO [8461]: account calls -- 00:35:03.649 INFO [8461]: account_calls() -- 00:35:03.649 INFO [8461]: AddPageCard() -- 00:35:03.649 FLOG_MAX [8461]: REQ_STRING(title) -- 00:35:03.649 FLOG_MAX [8461]: REQ_STRING(item_type) -- 00:35:03.649 FLOG_MAX [8461]: REQ_STRING(sessionid) -- 00:35:03.649 FLOG_MAX [8461]: REQ_STRING(detail) -- 00:35:03.649 FLOG_MAX [8461]: insert_db_record() -- 00:35:03.649 SQL [8461]: pgsql_exec() -- 00:35:03.649 SQL [8461]: About to run query: -- 00:35:03.649 SQL [8461]: INSERT INTO members_page_item (detail,item_type,member_id,page_id,title) VALUES ('Created or accident','NOTECARD','5','16','Complexity of the Galaxy') -- 00:35:03.654 SQL [8461]: PQcmdTuples: 1 -- 00:35:03.654 SQL [8461]: Affected rows: 1 -- 00:35:03.654 FLOG_MAX [8461]: SELECT currval('members_page_item_id_seq') -- 00:35:03.654 SQL [8461]: pgsql_query() -- 00:35:03.654 SQL [8461]: About to run query: -- 00:35:03.654 SQL [8461]: SELECT currval('members_page_item_id_seq') -- 00:35:03.654 SQL [8461]: Found rows: 1 -- 00:35:03.654 INFO [8461]: /AddPageCard() -- 00:35:03.654 INFO [8461]: RET: result=YES I GET TO BACK END -- 00:35:03.654 INFO [8461]: COREGRADE is stopping... -- 00:35:03.655 DEBUG [8461]: Closing database connection -- 00:35:03.655 SQL [8461]: pgsql_close() -- 00:35:03.614 DEBUG [8461]: Database connection successful -- 00:35:03.614 INFO [8461]: _SERVER found -- 00:35:03.614 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 00:35:03.614 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:03.614 INFO [8461]: HTTP_COOKIE = ci_session=q9hplqv2i1bt1rc4jg7c9homcb624qtr; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:35:03.614 INFO [8461]: QUERY_STRING = /member/addNotecard -- 00:35:03.614 INFO [8461]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:35:03.655 INFO [8461]: COREGRADE is stopping... -- 00:35:03.655 DEBUG [8461]: Closing database connection -- 00:35:03.655 SQL [8461]: pgsql_close() -- 00:35:03.730 INFO [9136]: COREGRADE is starting... -- 00:35:03.730 INFO [9136]: Version from config: 1.0 -- 00:35:03.730 DEBUG [9136]: Connecting to database... -- 00:35:03.730 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:03.730 SQL [9136]: pgsql_db_connect() -- 00:35:03.734 DEBUG [9136]: Database connection successful -- 00:35:03.734 INFO [9136]: _SERVER found -- 00:35:03.734 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:35:03.734 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:03.734 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:35:03.734 INFO [9136]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:35:03.734 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:03.745 INFO [9136]: COREGRADE is stopping... -- 00:35:03.745 DEBUG [9136]: Closing database connection -- 00:35:03.745 SQL [9136]: pgsql_close() -- 00:35:04.243 INFO [9136]: COREGRADE is starting... -- 00:35:04.243 INFO [9136]: Version from config: 1.0 -- 00:35:04.243 DEBUG [9136]: Connecting to database... -- 00:35:04.243 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:04.243 SQL [9136]: pgsql_db_connect() -- 00:35:04.247 DEBUG [9136]: Database connection successful -- 00:35:04.247 INFO [9136]: _SERVER found -- 00:35:04.247 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:35:04.247 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:04.247 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:35:04.247 INFO [9136]: QUERY_STRING = /member/page -- 00:35:04.247 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:04.288 INFO [9136]: COREGRADE is stopping... -- 00:35:04.288 DEBUG [9136]: Closing database connection -- 00:35:04.288 SQL [9136]: pgsql_close() -- 00:35:04.494 INFO [9136]: COREGRADE is starting... -- 00:35:04.494 INFO [9136]: Version from config: 1.0 -- 00:35:04.494 DEBUG [9136]: Connecting to database... -- 00:35:04.494 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:04.494 SQL [9136]: pgsql_db_connect() -- 00:35:04.498 DEBUG [9136]: Database connection successful -- 00:35:04.498 INFO [9136]: _SERVER found -- 00:35:04.498 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:35:04.498 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:04.498 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:35:04.498 INFO [9136]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:35:04.498 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:04.509 INFO [9136]: COREGRADE is stopping... -- 00:35:04.509 DEBUG [9136]: Closing database connection -- 00:35:04.509 SQL [9136]: pgsql_close() -- 00:35:04.896 INFO [8461]: COREGRADE is starting... -- 00:35:04.896 INFO [8461]: Version from config: 1.0 -- 00:35:04.896 DEBUG [8461]: Connecting to database... -- 00:35:04.896 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:04.896 SQL [8461]: pgsql_db_connect() -- 00:35:04.900 DEBUG [8461]: Database connection successful -- 00:35:04.900 INFO [8461]: _SERVER found -- 00:35:04.900 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 00:35:04.900 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:04.900 INFO [8461]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:35:04.900 INFO [8461]: QUERY_STRING = /member/page -- 00:35:04.900 INFO [8461]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:04.941 INFO [8461]: COREGRADE is stopping... -- 00:35:04.941 DEBUG [8461]: Closing database connection -- 00:35:04.941 SQL [8461]: pgsql_close() -- 00:35:05.135 INFO [8461]: COREGRADE is starting... -- 00:35:05.135 INFO [8461]: Version from config: 1.0 -- 00:35:05.135 DEBUG [8461]: Connecting to database... -- 00:35:05.136 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:05.136 SQL [8461]: pgsql_db_connect() -- 00:35:05.139 DEBUG [8461]: Database connection successful -- 00:35:05.139 INFO [8461]: _SERVER found -- 00:35:05.140 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 00:35:05.140 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:05.140 INFO [8461]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:35:05.140 INFO [8461]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:35:05.140 INFO [8461]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:05.151 INFO [8461]: COREGRADE is stopping... -- 00:35:05.151 DEBUG [8461]: Closing database connection -- 00:35:05.151 SQL [8461]: pgsql_close() -- 00:35:07.405 INFO [8461]: COREGRADE is starting... -- 00:35:07.406 INFO [8461]: Version from config: 1.0 -- 00:35:07.406 DEBUG [8461]: Connecting to database... -- 00:35:07.406 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:07.406 SQL [8461]: pgsql_db_connect() -- 00:35:07.440 INFO [8461]: COREGRADE is starting... -- 00:35:07.440 INFO [8461]: Version from config: 1.0 -- 00:35:07.440 DEBUG [8461]: Connecting to database... -- 00:35:07.440 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:07.440 SQL [8461]: pgsql_db_connect() -- 00:35:07.444 DEBUG [8461]: Database connection successful -- 00:35:07.444 INFO [8461]: _SERVER found -- 00:35:07.444 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 00:35:07.444 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:07.444 INFO [8461]: HTTP_COOKIE = ci_session=q9hplqv2i1bt1rc4jg7c9homcb624qtr; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:35:07.444 INFO [8461]: QUERY_STRING = -- 00:35:07.444 INFO [8461]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:35:07.444 INFO [8461]: SystemStatus()09-09-********~************ -- 00:35:07.444 INFO [8461]: long coregrade_api_main(CVars in, CVars &out) -- 00:35:07.444 INFO [8461]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 00:35:07.444 INFO [8461]: account calls -- 00:35:07.444 INFO [8461]: account_calls() -- 00:35:07.444 INFO [8461]: AddPageCard() -- 00:35:07.444 FLOG_MAX [8461]: REQ_STRING(title) -- 00:35:07.444 FLOG_MAX [8461]: REQ_STRING(item_type) -- 00:35:07.444 FLOG_MAX [8461]: REQ_STRING(sessionid) -- 00:35:07.444 FLOG_MAX [8461]: REQ_STRING(detail) -- 00:35:07.445 FLOG_MAX [8461]: insert_db_record() -- 00:35:07.445 SQL [8461]: pgsql_exec() -- 00:35:07.445 SQL [8461]: About to run query: -- 00:35:07.445 SQL [8461]: INSERT INTO members_page_item (detail,item_type,member_id,page_id,title) VALUES ('Created or accident','NOTECARD','5','16','Complexity of the Galaxy') -- 00:35:07.449 SQL [8461]: PQcmdTuples: 1 -- 00:35:07.449 SQL [8461]: Affected rows: 1 -- 00:35:07.449 FLOG_MAX [8461]: SELECT currval('members_page_item_id_seq') -- 00:35:07.449 SQL [8461]: pgsql_query() -- 00:35:07.449 SQL [8461]: About to run query: -- 00:35:07.449 SQL [8461]: SELECT currval('members_page_item_id_seq') -- 00:35:07.449 SQL [8461]: Found rows: 1 -- 00:35:07.449 INFO [8461]: /AddPageCard() -- 00:35:07.449 INFO [8461]: RET: result=YES I GET TO BACK END -- 00:35:07.450 INFO [8461]: COREGRADE is stopping... -- 00:35:07.450 DEBUG [8461]: Closing database connection -- 00:35:07.450 SQL [8461]: pgsql_close() -- 00:35:07.410 DEBUG [8461]: Database connection successful -- 00:35:07.410 INFO [8461]: _SERVER found -- 00:35:07.410 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 00:35:07.410 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:07.410 INFO [8461]: HTTP_COOKIE = ci_session=q9hplqv2i1bt1rc4jg7c9homcb624qtr; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:35:07.410 INFO [8461]: QUERY_STRING = /member/addNotecard -- 00:35:07.410 INFO [8461]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:35:07.450 INFO [8461]: COREGRADE is stopping... -- 00:35:07.450 DEBUG [8461]: Closing database connection -- 00:35:07.450 SQL [8461]: pgsql_close() -- 00:35:13.041 INFO [8462]: COREGRADE is starting... -- 00:35:13.042 INFO [8462]: Version from config: 1.0 -- 00:35:13.042 DEBUG [8462]: Connecting to database... -- 00:35:13.042 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:13.042 SQL [8462]: pgsql_db_connect() -- 00:35:13.046 DEBUG [8462]: Database connection successful -- 00:35:13.046 INFO [8462]: _SERVER found -- 00:35:13.046 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:35:13.046 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:13.046 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:35:13.046 INFO [8462]: QUERY_STRING = /member -- 00:35:13.046 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:13.085 INFO [8462]: COREGRADE is stopping... -- 00:35:13.085 DEBUG [8462]: Closing database connection -- 00:35:13.085 SQL [8462]: pgsql_close() -- 00:35:13.335 INFO [8462]: COREGRADE is starting... -- 00:35:13.335 INFO [8462]: Version from config: 1.0 -- 00:35:13.335 DEBUG [8462]: Connecting to database... -- 00:35:13.335 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:13.335 SQL [8462]: pgsql_db_connect() -- 00:35:13.339 DEBUG [8462]: Database connection successful -- 00:35:13.339 INFO [8462]: _SERVER found -- 00:35:13.339 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:35:13.339 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:13.339 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:35:13.339 INFO [8462]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:35:13.339 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:13.350 INFO [8462]: COREGRADE is stopping... -- 00:35:13.350 DEBUG [8462]: Closing database connection -- 00:35:13.350 SQL [8462]: pgsql_close() -- 00:35:14.045 INFO [8465]: COREGRADE is starting... -- 00:35:14.045 INFO [8465]: Version from config: 1.0 -- 00:35:14.045 DEBUG [8465]: Connecting to database... -- 00:35:14.045 DEBUG [8465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:14.045 SQL [8465]: pgsql_db_connect() -- 00:35:14.059 INFO [8464]: COREGRADE is starting... -- 00:35:14.060 INFO [8464]: Version from config: 1.0 -- 00:35:14.060 DEBUG [8464]: Connecting to database... -- 00:35:14.060 DEBUG [8464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:14.060 SQL [8464]: pgsql_db_connect() -- 00:35:14.064 DEBUG [8464]: Database connection successful -- 00:35:14.064 INFO [8464]: _SERVER found -- 00:35:14.064 INFO [8464]: REMOTE_ADDR = 192.168.1.13 -- 00:35:14.064 INFO [8464]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:14.064 INFO [8464]: HTTP_COOKIE = ci_session=q9hplqv2i1bt1rc4jg7c9homcb624qtr; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:35:14.064 INFO [8464]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:35:14.064 INFO [8464]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:35:14.075 INFO [8464]: COREGRADE is stopping... -- 00:35:14.075 DEBUG [8464]: Closing database connection -- 00:35:14.075 SQL [8464]: pgsql_close() -- 00:35:14.049 DEBUG [8465]: Database connection successful -- 00:35:14.049 INFO [8465]: _SERVER found -- 00:35:14.049 INFO [8465]: REMOTE_ADDR = 192.168.1.13 -- 00:35:14.049 INFO [8465]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:14.049 INFO [8465]: HTTP_COOKIE = ci_session=q9hplqv2i1bt1rc4jg7c9homcb624qtr; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:35:14.049 INFO [8465]: QUERY_STRING = /member -- 00:35:14.049 INFO [8465]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:35:14.088 INFO [8465]: COREGRADE is stopping... -- 00:35:14.088 DEBUG [8465]: Closing database connection -- 00:35:14.088 SQL [8465]: pgsql_close() -- 00:35:14.194 INFO [8465]: COREGRADE is starting... -- 00:35:14.195 INFO [8465]: Version from config: 1.0 -- 00:35:14.195 DEBUG [8465]: Connecting to database... -- 00:35:14.195 DEBUG [8465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:14.195 SQL [8465]: pgsql_db_connect() -- 00:35:14.198 DEBUG [8465]: Database connection successful -- 00:35:14.198 INFO [8465]: _SERVER found -- 00:35:14.198 INFO [8465]: REMOTE_ADDR = 192.168.1.13 -- 00:35:14.198 INFO [8465]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:14.198 INFO [8465]: HTTP_COOKIE = ci_session=q9hplqv2i1bt1rc4jg7c9homcb624qtr; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:35:14.198 INFO [8465]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:35:14.198 INFO [8465]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:35:14.210 INFO [8465]: COREGRADE is stopping... -- 00:35:14.210 DEBUG [8465]: Closing database connection -- 00:35:14.210 SQL [8465]: pgsql_close() -- 00:35:14.334 INFO [8462]: COREGRADE is starting... -- 00:35:14.334 INFO [8462]: Version from config: 1.0 -- 00:35:14.334 DEBUG [8462]: Connecting to database... -- 00:35:14.334 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:14.334 SQL [8462]: pgsql_db_connect() -- 00:35:14.338 DEBUG [8462]: Database connection successful -- 00:35:14.338 INFO [8462]: _SERVER found -- 00:35:14.338 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:35:14.338 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:14.338 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:35:14.338 INFO [8462]: QUERY_STRING = /member/page -- 00:35:14.338 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:14.379 INFO [8462]: COREGRADE is stopping... -- 00:35:14.380 DEBUG [8462]: Closing database connection -- 00:35:14.380 SQL [8462]: pgsql_close() -- 00:35:14.585 INFO [8462]: COREGRADE is starting... -- 00:35:14.585 INFO [8462]: Version from config: 1.0 -- 00:35:14.585 DEBUG [8462]: Connecting to database... -- 00:35:14.585 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:14.585 SQL [8462]: pgsql_db_connect() -- 00:35:14.589 DEBUG [8462]: Database connection successful -- 00:35:14.589 INFO [8462]: _SERVER found -- 00:35:14.589 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:35:14.589 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:14.589 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=r5pcnp3nihv97togkamc076n3ive8shu -- 00:35:14.589 INFO [8462]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:35:14.589 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:35:14.600 INFO [8462]: COREGRADE is stopping... -- 00:35:14.600 DEBUG [8462]: Closing database connection -- 00:35:14.600 SQL [8462]: pgsql_close() -- 00:35:23.386 INFO [8463]: COREGRADE is starting... -- 00:35:23.386 INFO [8463]: Version from config: 1.0 -- 00:35:23.386 DEBUG [8463]: Connecting to database... -- 00:35:23.386 DEBUG [8463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:23.387 SQL [8463]: pgsql_db_connect() -- 00:35:23.391 DEBUG [8463]: Database connection successful -- 00:35:23.391 INFO [8463]: _SERVER found -- 00:35:23.391 INFO [8463]: REMOTE_ADDR = 192.168.1.13 -- 00:35:23.391 INFO [8463]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:23.391 INFO [8463]: HTTP_COOKIE = ci_session=q9hplqv2i1bt1rc4jg7c9homcb624qtr; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:35:23.391 INFO [8463]: QUERY_STRING = /member/page -- 00:35:23.391 INFO [8463]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:35:23.432 INFO [8463]: COREGRADE is stopping... -- 00:35:23.432 DEBUG [8463]: Closing database connection -- 00:35:23.432 SQL [8463]: pgsql_close() -- 00:35:23.492 INFO [8463]: COREGRADE is starting... -- 00:35:23.492 INFO [8463]: Version from config: 1.0 -- 00:35:23.492 DEBUG [8463]: Connecting to database... -- 00:35:23.492 DEBUG [8463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:23.492 SQL [8463]: pgsql_db_connect() -- 00:35:23.496 DEBUG [8463]: Database connection successful -- 00:35:23.496 INFO [8463]: _SERVER found -- 00:35:23.496 INFO [8463]: REMOTE_ADDR = 192.168.1.13 -- 00:35:23.496 INFO [8463]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:23.496 INFO [8463]: HTTP_COOKIE = ci_session=q9hplqv2i1bt1rc4jg7c9homcb624qtr; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:35:23.496 INFO [8463]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:35:23.496 INFO [8463]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:35:23.507 INFO [8463]: COREGRADE is stopping... -- 00:35:23.507 DEBUG [8463]: Closing database connection -- 00:35:23.507 SQL [8463]: pgsql_close() -- 00:35:23.548 INFO [8463]: COREGRADE is starting... -- 00:35:23.549 INFO [8463]: Version from config: 1.0 -- 00:35:23.549 DEBUG [8463]: Connecting to database... -- 00:35:23.549 DEBUG [8463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:35:23.549 SQL [8463]: pgsql_db_connect() -- 00:35:23.553 DEBUG [8463]: Database connection successful -- 00:35:23.553 INFO [8463]: _SERVER found -- 00:35:23.553 INFO [8463]: REMOTE_ADDR = 192.168.1.13 -- 00:35:23.553 INFO [8463]: SERVER_NAME = oameye.works.coregrade.com -- 00:35:23.553 INFO [8463]: HTTP_COOKIE = ci_session=q9hplqv2i1bt1rc4jg7c9homcb624qtr; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:35:23.553 INFO [8463]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:35:23.553 INFO [8463]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:35:23.564 INFO [8463]: COREGRADE is stopping... -- 00:35:23.564 DEBUG [8463]: Closing database connection -- 00:35:23.564 SQL [8463]: pgsql_close() -- 00:39:54.839 INFO [9137]: COREGRADE is starting... -- 00:39:54.840 INFO [9137]: Version from config: 1.0 -- 00:39:54.840 DEBUG [9137]: Connecting to database... -- 00:39:54.840 DEBUG [9137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:39:54.840 SQL [9137]: pgsql_db_connect() -- 00:39:54.844 DEBUG [9137]: Database connection successful -- 00:39:54.844 INFO [9137]: _SERVER found -- 00:39:54.844 INFO [9137]: REMOTE_ADDR = 192.168.1.13 -- 00:39:54.844 INFO [9137]: SERVER_NAME = oameye.works.coregrade.com -- 00:39:54.844 INFO [9137]: HTTP_COOKIE = ci_session=q9hplqv2i1bt1rc4jg7c9homcb624qtr; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:39:54.844 INFO [9137]: QUERY_STRING = /member -- 00:39:54.844 INFO [9137]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:39:54.886 INFO [9137]: COREGRADE is stopping... -- 00:39:54.886 DEBUG [9137]: Closing database connection -- 00:39:54.886 SQL [9137]: pgsql_close() -- 00:39:54.889 INFO [9138]: COREGRADE is starting... -- 00:39:54.890 INFO [9138]: Version from config: 1.0 -- 00:39:54.890 DEBUG [9138]: Connecting to database... -- 00:39:54.890 DEBUG [9138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:39:54.890 SQL [9138]: pgsql_db_connect() -- 00:39:54.894 DEBUG [9138]: Database connection successful -- 00:39:54.894 INFO [9138]: _SERVER found -- 00:39:54.894 INFO [9138]: REMOTE_ADDR = 192.168.1.13 -- 00:39:54.894 INFO [9138]: SERVER_NAME = oameye.works.coregrade.com -- 00:39:54.894 INFO [9138]: HTTP_COOKIE = ci_session=q9hplqv2i1bt1rc4jg7c9homcb624qtr; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:39:54.894 INFO [9138]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:39:54.894 INFO [9138]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:39:54.906 INFO [9138]: COREGRADE is stopping... -- 00:39:54.906 DEBUG [9138]: Closing database connection -- 00:39:54.906 SQL [9138]: pgsql_close() -- 00:39:55.010 INFO [9137]: COREGRADE is starting... -- 00:39:55.010 INFO [9137]: Version from config: 1.0 -- 00:39:55.010 DEBUG [9137]: Connecting to database... -- 00:39:55.010 DEBUG [9137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:39:55.010 SQL [9137]: pgsql_db_connect() -- 00:39:55.014 DEBUG [9137]: Database connection successful -- 00:39:55.014 INFO [9137]: _SERVER found -- 00:39:55.014 INFO [9137]: REMOTE_ADDR = 192.168.1.13 -- 00:39:55.014 INFO [9137]: SERVER_NAME = oameye.works.coregrade.com -- 00:39:55.014 INFO [9137]: HTTP_COOKIE = ci_session=tht5189tlv1r0n1dm9r3p392r54f18pb; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:39:55.014 INFO [9137]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:39:55.014 INFO [9137]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:39:55.025 INFO [9137]: COREGRADE is stopping... -- 00:39:55.025 DEBUG [9137]: Closing database connection -- 00:39:55.025 SQL [9137]: pgsql_close() -- 00:41:34.638 INFO [9139]: COREGRADE is starting... -- 00:41:34.638 INFO [9139]: Version from config: 1.0 -- 00:41:34.638 DEBUG [9139]: Connecting to database... -- 00:41:34.638 DEBUG [9139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:41:34.638 SQL [9139]: pgsql_db_connect() -- 00:41:34.642 DEBUG [9139]: Database connection successful -- 00:41:34.642 INFO [9139]: _SERVER found -- 00:41:34.642 INFO [9139]: REMOTE_ADDR = 192.168.1.13 -- 00:41:34.642 INFO [9139]: SERVER_NAME = oameye.works.coregrade.com -- 00:41:34.642 INFO [9139]: HTTP_COOKIE = ci_session=tht5189tlv1r0n1dm9r3p392r54f18pb; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:41:34.642 INFO [9139]: QUERY_STRING = /member -- 00:41:34.642 INFO [9139]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:41:34.683 INFO [9139]: COREGRADE is stopping... -- 00:41:34.683 DEBUG [9139]: Closing database connection -- 00:41:34.683 SQL [9139]: pgsql_close() -- 00:41:34.688 INFO [9140]: COREGRADE is starting... -- 00:41:34.688 INFO [9140]: Version from config: 1.0 -- 00:41:34.688 DEBUG [9140]: Connecting to database... -- 00:41:34.688 DEBUG [9140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:41:34.688 SQL [9140]: pgsql_db_connect() -- 00:41:34.692 DEBUG [9140]: Database connection successful -- 00:41:34.692 INFO [9140]: _SERVER found -- 00:41:34.692 INFO [9140]: REMOTE_ADDR = 192.168.1.13 -- 00:41:34.692 INFO [9140]: SERVER_NAME = oameye.works.coregrade.com -- 00:41:34.692 INFO [9140]: HTTP_COOKIE = ci_session=tht5189tlv1r0n1dm9r3p392r54f18pb; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:41:34.692 INFO [9140]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:41:34.692 INFO [9140]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:41:34.705 INFO [9140]: COREGRADE is stopping... -- 00:41:34.705 DEBUG [9140]: Closing database connection -- 00:41:34.705 SQL [9140]: pgsql_close() -- 00:41:34.848 INFO [9140]: COREGRADE is starting... -- 00:41:34.848 INFO [9140]: Version from config: 1.0 -- 00:41:34.848 DEBUG [9140]: Connecting to database... -- 00:41:34.848 DEBUG [9140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:41:34.848 SQL [9140]: pgsql_db_connect() -- 00:41:34.852 DEBUG [9140]: Database connection successful -- 00:41:34.852 INFO [9140]: _SERVER found -- 00:41:34.852 INFO [9140]: REMOTE_ADDR = 192.168.1.13 -- 00:41:34.852 INFO [9140]: SERVER_NAME = oameye.works.coregrade.com -- 00:41:34.852 INFO [9140]: HTTP_COOKIE = ci_session=tht5189tlv1r0n1dm9r3p392r54f18pb; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:41:34.852 INFO [9140]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:41:34.852 INFO [9140]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:41:34.864 INFO [9140]: COREGRADE is stopping... -- 00:41:34.864 DEBUG [9140]: Closing database connection -- 00:41:34.864 SQL [9140]: pgsql_close() -- 00:41:43.011 INFO [9136]: COREGRADE is starting... -- 00:41:43.011 INFO [9136]: Version from config: 1.0 -- 00:41:43.011 DEBUG [9136]: Connecting to database... -- 00:41:43.011 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:41:43.011 SQL [9136]: pgsql_db_connect() -- 00:41:43.025 INFO [8461]: COREGRADE is starting... -- 00:41:43.026 INFO [8461]: Version from config: 1.0 -- 00:41:43.026 DEBUG [8461]: Connecting to database... -- 00:41:43.026 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:41:43.026 SQL [8461]: pgsql_db_connect() -- 00:41:43.030 DEBUG [8461]: Database connection successful -- 00:41:43.030 INFO [8461]: _SERVER found -- 00:41:43.030 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 00:41:43.030 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 00:41:43.030 INFO [8461]: HTTP_COOKIE = ci_session=tht5189tlv1r0n1dm9r3p392r54f18pb; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:41:43.030 INFO [8461]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:41:43.030 INFO [8461]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:41:43.041 INFO [8461]: COREGRADE is stopping... -- 00:41:43.041 DEBUG [8461]: Closing database connection -- 00:41:43.041 SQL [8461]: pgsql_close() -- 00:41:43.015 DEBUG [9136]: Database connection successful -- 00:41:43.015 INFO [9136]: _SERVER found -- 00:41:43.015 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:41:43.015 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:41:43.015 INFO [9136]: HTTP_COOKIE = ci_session=tht5189tlv1r0n1dm9r3p392r54f18pb; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:41:43.015 INFO [9136]: QUERY_STRING = /member -- 00:41:43.015 INFO [9136]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:41:43.057 INFO [9136]: COREGRADE is stopping... -- 00:41:43.057 DEBUG [9136]: Closing database connection -- 00:41:43.057 SQL [9136]: pgsql_close() -- 00:41:43.160 INFO [9136]: COREGRADE is starting... -- 00:41:43.160 INFO [9136]: Version from config: 1.0 -- 00:41:43.160 DEBUG [9136]: Connecting to database... -- 00:41:43.160 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:41:43.160 SQL [9136]: pgsql_db_connect() -- 00:41:43.164 DEBUG [9136]: Database connection successful -- 00:41:43.164 INFO [9136]: _SERVER found -- 00:41:43.164 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:41:43.164 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:41:43.164 INFO [9136]: HTTP_COOKIE = ci_session=tht5189tlv1r0n1dm9r3p392r54f18pb; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:41:43.164 INFO [9136]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:41:43.164 INFO [9136]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:41:43.175 INFO [9136]: COREGRADE is stopping... -- 00:41:43.175 DEBUG [9136]: Closing database connection -- 00:41:43.175 SQL [9136]: pgsql_close() -- 00:41:52.728 INFO [8464]: COREGRADE is starting... -- 00:41:52.728 INFO [8464]: Version from config: 1.0 -- 00:41:52.728 DEBUG [8464]: Connecting to database... -- 00:41:52.728 DEBUG [8464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:41:52.728 SQL [8464]: pgsql_db_connect() -- 00:41:52.732 DEBUG [8464]: Database connection successful -- 00:41:52.732 INFO [8464]: _SERVER found -- 00:41:52.732 INFO [8464]: REMOTE_ADDR = 192.168.1.13 -- 00:41:52.732 INFO [8464]: SERVER_NAME = oameye.works.coregrade.com -- 00:41:52.732 INFO [8464]: HTTP_COOKIE = ci_session=tht5189tlv1r0n1dm9r3p392r54f18pb; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:41:52.732 INFO [8464]: QUERY_STRING = /member/page -- 00:41:52.732 INFO [8464]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:41:52.775 INFO [8464]: COREGRADE is stopping... -- 00:41:52.775 DEBUG [8464]: Closing database connection -- 00:41:52.775 SQL [8464]: pgsql_close() -- 00:41:52.834 INFO [8464]: COREGRADE is starting... -- 00:41:52.834 INFO [8464]: Version from config: 1.0 -- 00:41:52.834 DEBUG [8464]: Connecting to database... -- 00:41:52.834 DEBUG [8464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:41:52.834 SQL [8464]: pgsql_db_connect() -- 00:41:52.838 DEBUG [8464]: Database connection successful -- 00:41:52.838 INFO [8464]: _SERVER found -- 00:41:52.838 INFO [8464]: REMOTE_ADDR = 192.168.1.13 -- 00:41:52.838 INFO [8464]: SERVER_NAME = oameye.works.coregrade.com -- 00:41:52.838 INFO [8464]: HTTP_COOKIE = ci_session=tht5189tlv1r0n1dm9r3p392r54f18pb; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:41:52.838 INFO [8464]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:41:52.838 INFO [8464]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:41:52.849 INFO [8464]: COREGRADE is stopping... -- 00:41:52.849 DEBUG [8464]: Closing database connection -- 00:41:52.849 SQL [8464]: pgsql_close() -- 00:41:52.899 INFO [8464]: COREGRADE is starting... -- 00:41:52.899 INFO [8464]: Version from config: 1.0 -- 00:41:52.899 DEBUG [8464]: Connecting to database... -- 00:41:52.899 DEBUG [8464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:41:52.899 SQL [8464]: pgsql_db_connect() -- 00:41:52.903 DEBUG [8464]: Database connection successful -- 00:41:52.903 INFO [8464]: _SERVER found -- 00:41:52.903 INFO [8464]: REMOTE_ADDR = 192.168.1.13 -- 00:41:52.903 INFO [8464]: SERVER_NAME = oameye.works.coregrade.com -- 00:41:52.903 INFO [8464]: HTTP_COOKIE = ci_session=tht5189tlv1r0n1dm9r3p392r54f18pb; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:41:52.903 INFO [8464]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:41:52.903 INFO [8464]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:41:52.914 INFO [8464]: COREGRADE is stopping... -- 00:41:52.914 DEBUG [8464]: Closing database connection -- 00:41:52.914 SQL [8464]: pgsql_close() -- 00:42:21.462 INFO [8465]: COREGRADE is starting... -- 00:42:21.463 INFO [8465]: Version from config: 1.0 -- 00:42:21.463 DEBUG [8465]: Connecting to database... -- 00:42:21.463 DEBUG [8465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:42:21.463 SQL [8465]: pgsql_db_connect() -- 00:42:21.467 DEBUG [8465]: Database connection successful -- 00:42:21.467 INFO [8465]: _SERVER found -- 00:42:21.467 INFO [8465]: REMOTE_ADDR = 192.168.1.13 -- 00:42:21.467 INFO [8465]: SERVER_NAME = oameye.works.coregrade.com -- 00:42:21.467 INFO [8465]: HTTP_COOKIE = ci_session=tht5189tlv1r0n1dm9r3p392r54f18pb; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:42:21.467 INFO [8465]: QUERY_STRING = /member -- 00:42:21.467 INFO [8465]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:42:21.506 INFO [8465]: COREGRADE is stopping... -- 00:42:21.507 DEBUG [8465]: Closing database connection -- 00:42:21.507 SQL [8465]: pgsql_close() -- 00:42:21.519 INFO [8462]: COREGRADE is starting... -- 00:42:21.519 INFO [8462]: Version from config: 1.0 -- 00:42:21.519 DEBUG [8462]: Connecting to database... -- 00:42:21.519 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:42:21.520 SQL [8462]: pgsql_db_connect() -- 00:42:21.523 DEBUG [8462]: Database connection successful -- 00:42:21.523 INFO [8462]: _SERVER found -- 00:42:21.523 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:42:21.523 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:42:21.523 INFO [8462]: HTTP_COOKIE = ci_session=tht5189tlv1r0n1dm9r3p392r54f18pb; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:42:21.523 INFO [8462]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:42:21.523 INFO [8462]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:42:21.535 INFO [8462]: COREGRADE is stopping... -- 00:42:21.535 DEBUG [8462]: Closing database connection -- 00:42:21.535 SQL [8462]: pgsql_close() -- 00:42:21.629 INFO [8465]: COREGRADE is starting... -- 00:42:21.629 INFO [8465]: Version from config: 1.0 -- 00:42:21.629 DEBUG [8465]: Connecting to database... -- 00:42:21.629 DEBUG [8465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:42:21.629 SQL [8465]: pgsql_db_connect() -- 00:42:21.633 DEBUG [8465]: Database connection successful -- 00:42:21.633 INFO [8465]: _SERVER found -- 00:42:21.633 INFO [8465]: REMOTE_ADDR = 192.168.1.13 -- 00:42:21.633 INFO [8465]: SERVER_NAME = oameye.works.coregrade.com -- 00:42:21.633 INFO [8465]: HTTP_COOKIE = ci_session=tht5189tlv1r0n1dm9r3p392r54f18pb; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:42:21.633 INFO [8465]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:42:21.633 INFO [8465]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:42:21.644 INFO [8465]: COREGRADE is stopping... -- 00:42:21.644 DEBUG [8465]: Closing database connection -- 00:42:21.644 SQL [8465]: pgsql_close() -- 00:44:04.014 INFO [8463]: COREGRADE is starting... -- 00:44:04.014 INFO [8463]: Version from config: 1.0 -- 00:44:04.014 DEBUG [8463]: Connecting to database... -- 00:44:04.014 DEBUG [8463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:44:04.014 SQL [8463]: pgsql_db_connect() -- 00:44:04.018 DEBUG [8463]: Database connection successful -- 00:44:04.018 INFO [8463]: _SERVER found -- 00:44:04.018 INFO [8463]: REMOTE_ADDR = 192.168.1.13 -- 00:44:04.018 INFO [8463]: SERVER_NAME = oameye.works.coregrade.com -- 00:44:04.018 INFO [8463]: HTTP_COOKIE = ci_session=tht5189tlv1r0n1dm9r3p392r54f18pb; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:44:04.018 INFO [8463]: QUERY_STRING = /member/configure -- 00:44:04.018 INFO [8463]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:44:04.059 INFO [8463]: COREGRADE is stopping... -- 00:44:04.059 DEBUG [8463]: Closing database connection -- 00:44:04.059 SQL [8463]: pgsql_close() -- 00:44:04.162 INFO [8463]: COREGRADE is starting... -- 00:44:04.162 INFO [8463]: Version from config: 1.0 -- 00:44:04.162 DEBUG [8463]: Connecting to database... -- 00:44:04.162 DEBUG [8463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:44:04.162 SQL [8463]: pgsql_db_connect() -- 00:44:04.167 DEBUG [8463]: Database connection successful -- 00:44:04.167 INFO [8463]: _SERVER found -- 00:44:04.167 INFO [8463]: REMOTE_ADDR = 192.168.1.13 -- 00:44:04.167 INFO [8463]: SERVER_NAME = oameye.works.coregrade.com -- 00:44:04.167 INFO [8463]: HTTP_COOKIE = ci_session=tht5189tlv1r0n1dm9r3p392r54f18pb; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:44:04.167 INFO [8463]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:44:04.167 INFO [8463]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:44:04.178 INFO [8463]: COREGRADE is stopping... -- 00:44:04.178 DEBUG [8463]: Closing database connection -- 00:44:04.178 SQL [8463]: pgsql_close() -- 00:44:04.216 INFO [8463]: COREGRADE is starting... -- 00:44:04.217 INFO [8463]: Version from config: 1.0 -- 00:44:04.217 DEBUG [8463]: Connecting to database... -- 00:44:04.217 DEBUG [8463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:44:04.217 SQL [8463]: pgsql_db_connect() -- 00:44:04.220 DEBUG [8463]: Database connection successful -- 00:44:04.220 INFO [8463]: _SERVER found -- 00:44:04.220 INFO [8463]: REMOTE_ADDR = 192.168.1.13 -- 00:44:04.220 INFO [8463]: SERVER_NAME = oameye.works.coregrade.com -- 00:44:04.220 INFO [8463]: HTTP_COOKIE = ci_session=tht5189tlv1r0n1dm9r3p392r54f18pb; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:44:04.220 INFO [8463]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:44:04.220 INFO [8463]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:44:04.231 INFO [8463]: COREGRADE is stopping... -- 00:44:04.231 DEBUG [8463]: Closing database connection -- 00:44:04.231 SQL [8463]: pgsql_close() -- 00:44:48.548 INFO [9138]: COREGRADE is starting... -- 00:44:48.549 INFO [9138]: Version from config: 1.0 -- 00:44:48.549 DEBUG [9138]: Connecting to database... -- 00:44:48.549 DEBUG [9138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:44:48.549 SQL [9138]: pgsql_db_connect() -- 00:44:48.592 INFO [9137]: COREGRADE is starting... -- 00:44:48.593 INFO [9137]: Version from config: 1.0 -- 00:44:48.593 DEBUG [9137]: Connecting to database... -- 00:44:48.593 DEBUG [9137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:44:48.593 SQL [9137]: pgsql_db_connect() -- 00:44:48.553 DEBUG [9138]: Database connection successful -- 00:44:48.553 INFO [9138]: _SERVER found -- 00:44:48.553 INFO [9138]: REMOTE_ADDR = 192.168.1.13 -- 00:44:48.553 INFO [9138]: SERVER_NAME = oameye.works.coregrade.com -- 00:44:48.553 INFO [9138]: HTTP_COOKIE = ci_session=tht5189tlv1r0n1dm9r3p392r54f18pb; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:44:48.553 INFO [9138]: QUERY_STRING = /member -- 00:44:48.553 INFO [9138]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:44:48.593 INFO [9138]: COREGRADE is stopping... -- 00:44:48.593 DEBUG [9138]: Closing database connection -- 00:44:48.593 SQL [9138]: pgsql_close() -- 00:44:48.597 DEBUG [9137]: Database connection successful -- 00:44:48.597 INFO [9137]: _SERVER found -- 00:44:48.597 INFO [9137]: REMOTE_ADDR = 192.168.1.13 -- 00:44:48.597 INFO [9137]: SERVER_NAME = oameye.works.coregrade.com -- 00:44:48.597 INFO [9137]: HTTP_COOKIE = ci_session=tht5189tlv1r0n1dm9r3p392r54f18pb; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:44:48.597 INFO [9137]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:44:48.597 INFO [9137]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:44:48.609 INFO [9137]: COREGRADE is stopping... -- 00:44:48.609 DEBUG [9137]: Closing database connection -- 00:44:48.609 SQL [9137]: pgsql_close() -- 00:44:48.700 INFO [9138]: COREGRADE is starting... -- 00:44:48.700 INFO [9138]: Version from config: 1.0 -- 00:44:48.700 DEBUG [9138]: Connecting to database... -- 00:44:48.700 DEBUG [9138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:44:48.700 SQL [9138]: pgsql_db_connect() -- 00:44:48.704 DEBUG [9138]: Database connection successful -- 00:44:48.704 INFO [9138]: _SERVER found -- 00:44:48.704 INFO [9138]: REMOTE_ADDR = 192.168.1.13 -- 00:44:48.704 INFO [9138]: SERVER_NAME = oameye.works.coregrade.com -- 00:44:48.704 INFO [9138]: HTTP_COOKIE = ci_session=tht5189tlv1r0n1dm9r3p392r54f18pb; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:44:48.704 INFO [9138]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:44:48.704 INFO [9138]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:44:48.715 INFO [9138]: COREGRADE is stopping... -- 00:44:48.715 DEBUG [9138]: Closing database connection -- 00:44:48.715 SQL [9138]: pgsql_close() -- 00:44:59.518 INFO [9139]: COREGRADE is starting... -- 00:44:59.519 INFO [9139]: Version from config: 1.0 -- 00:44:59.519 DEBUG [9139]: Connecting to database... -- 00:44:59.519 DEBUG [9139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:44:59.519 SQL [9139]: pgsql_db_connect() -- 00:44:59.523 DEBUG [9139]: Database connection successful -- 00:44:59.523 INFO [9139]: _SERVER found -- 00:44:59.523 INFO [9139]: REMOTE_ADDR = 192.168.1.13 -- 00:44:59.523 INFO [9139]: SERVER_NAME = oameye.works.coregrade.com -- 00:44:59.523 INFO [9139]: HTTP_COOKIE = ci_session=tht5189tlv1r0n1dm9r3p392r54f18pb; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:44:59.523 INFO [9139]: QUERY_STRING = /member/page -- 00:44:59.523 INFO [9139]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:44:59.565 INFO [9139]: COREGRADE is stopping... -- 00:44:59.565 DEBUG [9139]: Closing database connection -- 00:44:59.565 SQL [9139]: pgsql_close() -- 00:44:59.664 INFO [9139]: COREGRADE is starting... -- 00:44:59.664 INFO [9139]: Version from config: 1.0 -- 00:44:59.664 DEBUG [9139]: Connecting to database... -- 00:44:59.664 DEBUG [9139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:44:59.664 SQL [9139]: pgsql_db_connect() -- 00:44:59.668 DEBUG [9139]: Database connection successful -- 00:44:59.668 INFO [9139]: _SERVER found -- 00:44:59.668 INFO [9139]: REMOTE_ADDR = 192.168.1.13 -- 00:44:59.668 INFO [9139]: SERVER_NAME = oameye.works.coregrade.com -- 00:44:59.668 INFO [9139]: HTTP_COOKIE = ci_session=7hsjnr0euihapgfm0196peemnrvtm2vu; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:44:59.668 INFO [9139]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:44:59.668 INFO [9139]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:44:59.679 INFO [9139]: COREGRADE is stopping... -- 00:44:59.679 DEBUG [9139]: Closing database connection -- 00:44:59.679 SQL [9139]: pgsql_close() -- 00:44:59.729 INFO [9140]: COREGRADE is starting... -- 00:44:59.729 INFO [9140]: Version from config: 1.0 -- 00:44:59.729 DEBUG [9140]: Connecting to database... -- 00:44:59.729 DEBUG [9140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:44:59.729 SQL [9140]: pgsql_db_connect() -- 00:44:59.733 DEBUG [9140]: Database connection successful -- 00:44:59.733 INFO [9140]: _SERVER found -- 00:44:59.733 INFO [9140]: REMOTE_ADDR = 192.168.1.13 -- 00:44:59.733 INFO [9140]: SERVER_NAME = oameye.works.coregrade.com -- 00:44:59.733 INFO [9140]: HTTP_COOKIE = ci_session=7hsjnr0euihapgfm0196peemnrvtm2vu; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:44:59.733 INFO [9140]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:44:59.733 INFO [9140]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:44:59.746 INFO [9140]: COREGRADE is stopping... -- 00:44:59.746 DEBUG [9140]: Closing database connection -- 00:44:59.746 SQL [9140]: pgsql_close() -- 00:45:07.313 INFO [8461]: COREGRADE is starting... -- 00:45:07.314 INFO [8461]: Version from config: 1.0 -- 00:45:07.314 DEBUG [8461]: Connecting to database... -- 00:45:07.314 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:45:07.314 SQL [8461]: pgsql_db_connect() -- 00:45:07.331 INFO [9136]: COREGRADE is starting... -- 00:45:07.331 INFO [9136]: Version from config: 1.0 -- 00:45:07.331 DEBUG [9136]: Connecting to database... -- 00:45:07.332 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:45:07.332 SQL [9136]: pgsql_db_connect() -- 00:45:07.335 DEBUG [9136]: Database connection successful -- 00:45:07.335 INFO [9136]: _SERVER found -- 00:45:07.335 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:45:07.335 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:45:07.335 INFO [9136]: HTTP_COOKIE = ci_session=7hsjnr0euihapgfm0196peemnrvtm2vu; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:45:07.335 INFO [9136]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:45:07.335 INFO [9136]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:45:07.347 INFO [9136]: COREGRADE is stopping... -- 00:45:07.347 DEBUG [9136]: Closing database connection -- 00:45:07.347 SQL [9136]: pgsql_close() -- 00:45:07.318 DEBUG [8461]: Database connection successful -- 00:45:07.318 INFO [8461]: _SERVER found -- 00:45:07.318 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 00:45:07.318 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 00:45:07.318 INFO [8461]: HTTP_COOKIE = ci_session=7hsjnr0euihapgfm0196peemnrvtm2vu; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:45:07.318 INFO [8461]: QUERY_STRING = /member -- 00:45:07.318 INFO [8461]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:45:07.358 INFO [8461]: COREGRADE is stopping... -- 00:45:07.358 DEBUG [8461]: Closing database connection -- 00:45:07.358 SQL [8461]: pgsql_close() -- 00:45:07.476 INFO [8461]: COREGRADE is starting... -- 00:45:07.476 INFO [8461]: Version from config: 1.0 -- 00:45:07.476 DEBUG [8461]: Connecting to database... -- 00:45:07.476 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:45:07.476 SQL [8461]: pgsql_db_connect() -- 00:45:07.480 DEBUG [8461]: Database connection successful -- 00:45:07.480 INFO [8461]: _SERVER found -- 00:45:07.480 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 00:45:07.480 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 00:45:07.480 INFO [8461]: HTTP_COOKIE = ci_session=7hsjnr0euihapgfm0196peemnrvtm2vu; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:45:07.480 INFO [8461]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:45:07.480 INFO [8461]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:45:07.491 INFO [8461]: COREGRADE is stopping... -- 00:45:07.491 DEBUG [8461]: Closing database connection -- 00:45:07.491 SQL [8461]: pgsql_close() -- 00:53:18.829 INFO [8464]: COREGRADE is starting... -- 00:53:18.829 INFO [8464]: Version from config: 1.0 -- 00:53:18.829 DEBUG [8464]: Connecting to database... -- 00:53:18.829 DEBUG [8464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:53:18.829 SQL [8464]: pgsql_db_connect() -- 00:53:18.833 DEBUG [8464]: Database connection successful -- 00:53:18.833 INFO [8464]: _SERVER found -- 00:53:18.833 INFO [8464]: REMOTE_ADDR = 192.168.1.13 -- 00:53:18.833 INFO [8464]: SERVER_NAME = oameye.works.coregrade.com -- 00:53:18.833 INFO [8464]: HTTP_COOKIE = ci_session=7hsjnr0euihapgfm0196peemnrvtm2vu; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:53:18.833 INFO [8464]: QUERY_STRING = /member/configure -- 00:53:18.833 INFO [8464]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:53:18.875 INFO [8464]: COREGRADE is stopping... -- 00:53:18.876 DEBUG [8464]: Closing database connection -- 00:53:18.876 SQL [8464]: pgsql_close() -- 00:53:18.880 INFO [8462]: COREGRADE is starting... -- 00:53:18.881 INFO [8462]: Version from config: 1.0 -- 00:53:18.881 DEBUG [8462]: Connecting to database... -- 00:53:18.881 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:53:18.881 SQL [8462]: pgsql_db_connect() -- 00:53:18.884 DEBUG [8462]: Database connection successful -- 00:53:18.885 INFO [8462]: _SERVER found -- 00:53:18.885 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:53:18.885 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:53:18.885 INFO [8462]: HTTP_COOKIE = ci_session=7hsjnr0euihapgfm0196peemnrvtm2vu; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:53:18.885 INFO [8462]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:53:18.885 INFO [8462]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:53:18.896 INFO [8462]: COREGRADE is stopping... -- 00:53:18.896 DEBUG [8462]: Closing database connection -- 00:53:18.896 SQL [8462]: pgsql_close() -- 00:53:19.011 INFO [8462]: COREGRADE is starting... -- 00:53:19.011 INFO [8462]: Version from config: 1.0 -- 00:53:19.011 DEBUG [8462]: Connecting to database... -- 00:53:19.011 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:53:19.011 SQL [8462]: pgsql_db_connect() -- 00:53:19.015 DEBUG [8462]: Database connection successful -- 00:53:19.015 INFO [8462]: _SERVER found -- 00:53:19.015 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 00:53:19.015 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 00:53:19.015 INFO [8462]: HTTP_COOKIE = ci_session=nhkics1gjg21s1kl71sbcinp5i01cc1j; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:53:19.015 INFO [8462]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:53:19.015 INFO [8462]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:53:19.026 INFO [8462]: COREGRADE is stopping... -- 00:53:19.026 DEBUG [8462]: Closing database connection -- 00:53:19.026 SQL [8462]: pgsql_close() -- 00:53:58.987 INFO [8465]: COREGRADE is starting... -- 00:53:58.988 INFO [8465]: Version from config: 1.0 -- 00:53:58.988 DEBUG [8465]: Connecting to database... -- 00:53:58.988 DEBUG [8465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:53:58.988 SQL [8465]: pgsql_db_connect() -- 00:53:59.031 INFO [8463]: COREGRADE is starting... -- 00:53:59.031 INFO [8463]: Version from config: 1.0 -- 00:53:59.031 DEBUG [8463]: Connecting to database... -- 00:53:59.031 DEBUG [8463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:53:59.031 SQL [8463]: pgsql_db_connect() -- 00:53:58.992 DEBUG [8465]: Database connection successful -- 00:53:58.992 INFO [8465]: _SERVER found -- 00:53:58.992 INFO [8465]: REMOTE_ADDR = 192.168.1.13 -- 00:53:58.992 INFO [8465]: SERVER_NAME = oameye.works.coregrade.com -- 00:53:58.992 INFO [8465]: HTTP_COOKIE = ci_session=nhkics1gjg21s1kl71sbcinp5i01cc1j; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:53:58.992 INFO [8465]: QUERY_STRING = /member/configure -- 00:53:58.992 INFO [8465]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:53:59.035 INFO [8465]: COREGRADE is stopping... -- 00:53:59.035 DEBUG [8465]: Closing database connection -- 00:53:59.035 SQL [8465]: pgsql_close() -- 00:53:59.035 DEBUG [8463]: Database connection successful -- 00:53:59.035 INFO [8463]: _SERVER found -- 00:53:59.035 INFO [8463]: REMOTE_ADDR = 192.168.1.13 -- 00:53:59.035 INFO [8463]: SERVER_NAME = oameye.works.coregrade.com -- 00:53:59.036 INFO [8463]: HTTP_COOKIE = ci_session=nhkics1gjg21s1kl71sbcinp5i01cc1j; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:53:59.036 INFO [8463]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:53:59.036 INFO [8463]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:53:59.047 INFO [8463]: COREGRADE is stopping... -- 00:53:59.047 DEBUG [8463]: Closing database connection -- 00:53:59.047 SQL [8463]: pgsql_close() -- 00:53:59.135 INFO [8463]: COREGRADE is starting... -- 00:53:59.136 INFO [8463]: Version from config: 1.0 -- 00:53:59.136 DEBUG [8463]: Connecting to database... -- 00:53:59.136 DEBUG [8463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:53:59.136 SQL [8463]: pgsql_db_connect() -- 00:53:59.139 DEBUG [8463]: Database connection successful -- 00:53:59.139 INFO [8463]: _SERVER found -- 00:53:59.139 INFO [8463]: REMOTE_ADDR = 192.168.1.13 -- 00:53:59.139 INFO [8463]: SERVER_NAME = oameye.works.coregrade.com -- 00:53:59.139 INFO [8463]: HTTP_COOKIE = ci_session=nhkics1gjg21s1kl71sbcinp5i01cc1j; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:53:59.139 INFO [8463]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:53:59.139 INFO [8463]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:53:59.150 INFO [8463]: COREGRADE is stopping... -- 00:53:59.151 DEBUG [8463]: Closing database connection -- 00:53:59.151 SQL [8463]: pgsql_close() -- 00:54:49.192 INFO [9137]: COREGRADE is starting... -- 00:54:49.192 INFO [9137]: Version from config: 1.0 -- 00:54:49.192 DEBUG [9137]: Connecting to database... -- 00:54:49.192 DEBUG [9137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:54:49.192 SQL [9137]: pgsql_db_connect() -- 00:54:49.197 DEBUG [9137]: Database connection successful -- 00:54:49.197 INFO [9137]: _SERVER found -- 00:54:49.197 INFO [9137]: REMOTE_ADDR = 192.168.1.13 -- 00:54:49.197 INFO [9137]: SERVER_NAME = oameye.works.coregrade.com -- 00:54:49.197 INFO [9137]: HTTP_COOKIE = ci_session=nhkics1gjg21s1kl71sbcinp5i01cc1j; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:54:49.197 INFO [9137]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:54:49.197 INFO [9137]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:54:49.209 INFO [9137]: COREGRADE is stopping... -- 00:54:49.209 DEBUG [9137]: Closing database connection -- 00:54:49.209 SQL [9137]: pgsql_close() -- 00:54:49.244 INFO [9137]: COREGRADE is starting... -- 00:54:49.244 INFO [9137]: Version from config: 1.0 -- 00:54:49.244 DEBUG [9137]: Connecting to database... -- 00:54:49.244 DEBUG [9137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:54:49.244 SQL [9137]: pgsql_db_connect() -- 00:54:49.248 DEBUG [9137]: Database connection successful -- 00:54:49.248 INFO [9137]: _SERVER found -- 00:54:49.248 INFO [9137]: REMOTE_ADDR = 192.168.1.13 -- 00:54:49.248 INFO [9137]: SERVER_NAME = oameye.works.coregrade.com -- 00:54:49.248 INFO [9137]: HTTP_COOKIE = ci_session=nhkics1gjg21s1kl71sbcinp5i01cc1j; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:54:49.248 INFO [9137]: QUERY_STRING = /member/configure -- 00:54:49.248 INFO [9137]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:54:49.288 INFO [9137]: COREGRADE is stopping... -- 00:54:49.288 DEBUG [9137]: Closing database connection -- 00:54:49.288 SQL [9137]: pgsql_close() -- 00:54:49.421 INFO [9137]: COREGRADE is starting... -- 00:54:49.422 INFO [9137]: Version from config: 1.0 -- 00:54:49.422 DEBUG [9137]: Connecting to database... -- 00:54:49.422 DEBUG [9137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:54:49.422 SQL [9137]: pgsql_db_connect() -- 00:54:49.426 DEBUG [9137]: Database connection successful -- 00:54:49.426 INFO [9137]: _SERVER found -- 00:54:49.426 INFO [9137]: REMOTE_ADDR = 192.168.1.13 -- 00:54:49.426 INFO [9137]: SERVER_NAME = oameye.works.coregrade.com -- 00:54:49.426 INFO [9137]: HTTP_COOKIE = ci_session=nhkics1gjg21s1kl71sbcinp5i01cc1j; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:54:49.426 INFO [9137]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:54:49.426 INFO [9137]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:54:49.437 INFO [9137]: COREGRADE is stopping... -- 00:54:49.437 DEBUG [9137]: Closing database connection -- 00:54:49.437 SQL [9137]: pgsql_close() -- 00:54:51.228 INFO [9137]: COREGRADE is starting... -- 00:54:51.228 INFO [9137]: Version from config: 1.0 -- 00:54:51.228 DEBUG [9137]: Connecting to database... -- 00:54:51.228 DEBUG [9137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:54:51.228 SQL [9137]: pgsql_db_connect() -- 00:54:51.236 INFO [9138]: COREGRADE is starting... -- 00:54:51.236 INFO [9138]: Version from config: 1.0 -- 00:54:51.236 DEBUG [9138]: Connecting to database... -- 00:54:51.236 DEBUG [9138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:54:51.236 SQL [9138]: pgsql_db_connect() -- 00:54:51.240 DEBUG [9138]: Database connection successful -- 00:54:51.240 INFO [9138]: _SERVER found -- 00:54:51.240 INFO [9138]: REMOTE_ADDR = 192.168.1.13 -- 00:54:51.240 INFO [9138]: SERVER_NAME = oameye.works.coregrade.com -- 00:54:51.240 INFO [9138]: HTTP_COOKIE = ci_session=nhkics1gjg21s1kl71sbcinp5i01cc1j; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:54:51.240 INFO [9138]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:54:51.240 INFO [9138]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:54:51.252 INFO [9138]: COREGRADE is stopping... -- 00:54:51.252 DEBUG [9138]: Closing database connection -- 00:54:51.252 SQL [9138]: pgsql_close() -- 00:54:51.232 DEBUG [9137]: Database connection successful -- 00:54:51.232 INFO [9137]: _SERVER found -- 00:54:51.232 INFO [9137]: REMOTE_ADDR = 192.168.1.13 -- 00:54:51.232 INFO [9137]: SERVER_NAME = oameye.works.coregrade.com -- 00:54:51.232 INFO [9137]: HTTP_COOKIE = ci_session=nhkics1gjg21s1kl71sbcinp5i01cc1j; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:54:51.232 INFO [9137]: QUERY_STRING = /member/configure -- 00:54:51.232 INFO [9137]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:54:51.272 INFO [9137]: COREGRADE is stopping... -- 00:54:51.272 DEBUG [9137]: Closing database connection -- 00:54:51.272 SQL [9137]: pgsql_close() -- 00:54:51.413 INFO [9137]: COREGRADE is starting... -- 00:54:51.413 INFO [9137]: Version from config: 1.0 -- 00:54:51.413 DEBUG [9137]: Connecting to database... -- 00:54:51.413 DEBUG [9137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:54:51.413 SQL [9137]: pgsql_db_connect() -- 00:54:51.417 DEBUG [9137]: Database connection successful -- 00:54:51.417 INFO [9137]: _SERVER found -- 00:54:51.417 INFO [9137]: REMOTE_ADDR = 192.168.1.13 -- 00:54:51.417 INFO [9137]: SERVER_NAME = oameye.works.coregrade.com -- 00:54:51.417 INFO [9137]: HTTP_COOKIE = ci_session=nhkics1gjg21s1kl71sbcinp5i01cc1j; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:54:51.417 INFO [9137]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:54:51.417 INFO [9137]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:54:51.428 INFO [9137]: COREGRADE is stopping... -- 00:54:51.428 DEBUG [9137]: Closing database connection -- 00:54:51.428 SQL [9137]: pgsql_close() -- 00:57:56.074 INFO [9139]: COREGRADE is starting... -- 00:57:56.074 INFO [9139]: Version from config: 1.0 -- 00:57:56.074 DEBUG [9139]: Connecting to database... -- 00:57:56.074 DEBUG [9139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:57:56.074 SQL [9139]: pgsql_db_connect() -- 00:57:56.078 DEBUG [9139]: Database connection successful -- 00:57:56.078 INFO [9139]: _SERVER found -- 00:57:56.078 INFO [9139]: REMOTE_ADDR = 192.168.1.13 -- 00:57:56.078 INFO [9139]: SERVER_NAME = oameye.works.coregrade.com -- 00:57:56.078 INFO [9139]: HTTP_COOKIE = ci_session=nhkics1gjg21s1kl71sbcinp5i01cc1j; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:57:56.078 INFO [9139]: QUERY_STRING = /member/configure -- 00:57:56.078 INFO [9139]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:57:56.119 INFO [9139]: COREGRADE is stopping... -- 00:57:56.119 DEBUG [9139]: Closing database connection -- 00:57:56.119 SQL [9139]: pgsql_close() -- 00:57:56.123 INFO [9140]: COREGRADE is starting... -- 00:57:56.123 INFO [9140]: Version from config: 1.0 -- 00:57:56.123 DEBUG [9140]: Connecting to database... -- 00:57:56.123 DEBUG [9140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:57:56.123 SQL [9140]: pgsql_db_connect() -- 00:57:56.127 DEBUG [9140]: Database connection successful -- 00:57:56.127 INFO [9140]: _SERVER found -- 00:57:56.127 INFO [9140]: REMOTE_ADDR = 192.168.1.13 -- 00:57:56.127 INFO [9140]: SERVER_NAME = oameye.works.coregrade.com -- 00:57:56.127 INFO [9140]: HTTP_COOKIE = ci_session=nhkics1gjg21s1kl71sbcinp5i01cc1j; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:57:56.127 INFO [9140]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:57:56.127 INFO [9140]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:57:56.140 INFO [9140]: COREGRADE is stopping... -- 00:57:56.140 DEBUG [9140]: Closing database connection -- 00:57:56.140 SQL [9140]: pgsql_close() -- 00:57:56.218 INFO [9140]: COREGRADE is starting... -- 00:57:56.219 INFO [9140]: Version from config: 1.0 -- 00:57:56.219 DEBUG [9140]: Connecting to database... -- 00:57:56.219 DEBUG [9140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:57:56.219 SQL [9140]: pgsql_db_connect() -- 00:57:56.223 DEBUG [9140]: Database connection successful -- 00:57:56.223 INFO [9140]: _SERVER found -- 00:57:56.223 INFO [9140]: REMOTE_ADDR = 192.168.1.13 -- 00:57:56.223 INFO [9140]: SERVER_NAME = oameye.works.coregrade.com -- 00:57:56.223 INFO [9140]: HTTP_COOKIE = ci_session=nhkics1gjg21s1kl71sbcinp5i01cc1j; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:57:56.223 INFO [9140]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:57:56.223 INFO [9140]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:57:56.235 INFO [9140]: COREGRADE is stopping... -- 00:57:56.235 DEBUG [9140]: Closing database connection -- 00:57:56.235 SQL [9140]: pgsql_close() -- 00:59:38.675 INFO [9136]: COREGRADE is starting... -- 00:59:38.675 INFO [9136]: Version from config: 1.0 -- 00:59:38.675 DEBUG [9136]: Connecting to database... -- 00:59:38.675 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:59:38.675 SQL [9136]: pgsql_db_connect() -- 00:59:38.679 DEBUG [9136]: Database connection successful -- 00:59:38.679 INFO [9136]: _SERVER found -- 00:59:38.679 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:59:38.679 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:59:38.679 INFO [9136]: HTTP_COOKIE = ci_session=nhkics1gjg21s1kl71sbcinp5i01cc1j; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:59:38.679 INFO [9136]: QUERY_STRING = /member/configure -- 00:59:38.679 INFO [9136]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:59:38.721 INFO [9136]: COREGRADE is stopping... -- 00:59:38.721 DEBUG [9136]: Closing database connection -- 00:59:38.721 SQL [9136]: pgsql_close() -- 00:59:38.747 INFO [9136]: COREGRADE is starting... -- 00:59:38.747 INFO [9136]: Version from config: 1.0 -- 00:59:38.747 DEBUG [9136]: Connecting to database... -- 00:59:38.747 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:59:38.747 SQL [9136]: pgsql_db_connect() -- 00:59:38.751 DEBUG [9136]: Database connection successful -- 00:59:38.751 INFO [9136]: _SERVER found -- 00:59:38.751 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:59:38.751 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:59:38.751 INFO [9136]: HTTP_COOKIE = ci_session=nhkics1gjg21s1kl71sbcinp5i01cc1j; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:59:38.751 INFO [9136]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:59:38.751 INFO [9136]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:59:38.762 INFO [9136]: COREGRADE is stopping... -- 00:59:38.762 DEBUG [9136]: Closing database connection -- 00:59:38.762 SQL [9136]: pgsql_close() -- 00:59:38.850 INFO [9136]: COREGRADE is starting... -- 00:59:38.851 INFO [9136]: Version from config: 1.0 -- 00:59:38.851 DEBUG [9136]: Connecting to database... -- 00:59:38.851 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:59:38.851 SQL [9136]: pgsql_db_connect() -- 00:59:38.854 DEBUG [9136]: Database connection successful -- 00:59:38.855 INFO [9136]: _SERVER found -- 00:59:38.855 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:59:38.855 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:59:38.855 INFO [9136]: HTTP_COOKIE = ci_session=r93mka42dh5jj9ug2bjet8d1na05va4v; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:59:38.855 INFO [9136]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:59:38.855 INFO [9136]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:59:38.865 INFO [9136]: COREGRADE is stopping... -- 00:59:38.866 DEBUG [9136]: Closing database connection -- 00:59:38.866 SQL [9136]: pgsql_close() -- 00:59:40.817 INFO [9136]: COREGRADE is starting... -- 00:59:40.818 INFO [9136]: Version from config: 1.0 -- 00:59:40.818 DEBUG [9136]: Connecting to database... -- 00:59:40.818 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:59:40.818 SQL [9136]: pgsql_db_connect() -- 00:59:40.822 DEBUG [9136]: Database connection successful -- 00:59:40.822 INFO [9136]: _SERVER found -- 00:59:40.822 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:59:40.822 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:59:40.822 INFO [9136]: HTTP_COOKIE = ci_session=r93mka42dh5jj9ug2bjet8d1na05va4v; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:59:40.822 INFO [9136]: QUERY_STRING = /member -- 00:59:40.822 INFO [9136]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:59:40.862 INFO [9136]: COREGRADE is stopping... -- 00:59:40.862 DEBUG [9136]: Closing database connection -- 00:59:40.862 SQL [9136]: pgsql_close() -- 00:59:40.916 INFO [9136]: COREGRADE is starting... -- 00:59:40.916 INFO [9136]: Version from config: 1.0 -- 00:59:40.916 DEBUG [9136]: Connecting to database... -- 00:59:40.916 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:59:40.916 SQL [9136]: pgsql_db_connect() -- 00:59:40.920 DEBUG [9136]: Database connection successful -- 00:59:40.920 INFO [9136]: _SERVER found -- 00:59:40.920 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:59:40.920 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:59:40.920 INFO [9136]: HTTP_COOKIE = ci_session=r93mka42dh5jj9ug2bjet8d1na05va4v; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:59:40.920 INFO [9136]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:59:40.920 INFO [9136]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:59:40.931 INFO [9136]: COREGRADE is stopping... -- 00:59:40.931 DEBUG [9136]: Closing database connection -- 00:59:40.931 SQL [9136]: pgsql_close() -- 00:59:40.985 INFO [9136]: COREGRADE is starting... -- 00:59:40.986 INFO [9136]: Version from config: 1.0 -- 00:59:40.986 DEBUG [9136]: Connecting to database... -- 00:59:40.986 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:59:40.986 SQL [9136]: pgsql_db_connect() -- 00:59:40.989 DEBUG [9136]: Database connection successful -- 00:59:40.989 INFO [9136]: _SERVER found -- 00:59:40.989 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:59:40.989 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:59:40.989 INFO [9136]: HTTP_COOKIE = ci_session=r93mka42dh5jj9ug2bjet8d1na05va4v; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:59:40.989 INFO [9136]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:59:40.989 INFO [9136]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:59:40.000 INFO [9136]: COREGRADE is stopping... -- 00:59:40.000 DEBUG [9136]: Closing database connection -- 00:59:40.000 SQL [9136]: pgsql_close() -- 00:59:42.433 INFO [9136]: COREGRADE is starting... -- 00:59:42.433 INFO [9136]: Version from config: 1.0 -- 00:59:42.433 DEBUG [9136]: Connecting to database... -- 00:59:42.433 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:59:42.433 SQL [9136]: pgsql_db_connect() -- 00:59:42.441 INFO [8461]: COREGRADE is starting... -- 00:59:42.441 INFO [8461]: Version from config: 1.0 -- 00:59:42.441 DEBUG [8461]: Connecting to database... -- 00:59:42.441 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:59:42.441 SQL [8461]: pgsql_db_connect() -- 00:59:42.445 DEBUG [8461]: Database connection successful -- 00:59:42.445 INFO [8461]: _SERVER found -- 00:59:42.445 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 00:59:42.445 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 00:59:42.445 INFO [8461]: HTTP_COOKIE = ci_session=r93mka42dh5jj9ug2bjet8d1na05va4v; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:59:42.445 INFO [8461]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:59:42.445 INFO [8461]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:59:42.456 INFO [8461]: COREGRADE is stopping... -- 00:59:42.456 DEBUG [8461]: Closing database connection -- 00:59:42.456 SQL [8461]: pgsql_close() -- 00:59:42.437 DEBUG [9136]: Database connection successful -- 00:59:42.437 INFO [9136]: _SERVER found -- 00:59:42.437 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:59:42.437 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:59:42.437 INFO [9136]: HTTP_COOKIE = ci_session=r93mka42dh5jj9ug2bjet8d1na05va4v; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:59:42.437 INFO [9136]: QUERY_STRING = /member/configure -- 00:59:42.437 INFO [9136]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:59:42.477 INFO [9136]: COREGRADE is stopping... -- 00:59:42.477 DEBUG [9136]: Closing database connection -- 00:59:42.477 SQL [9136]: pgsql_close() -- 00:59:42.585 INFO [9136]: COREGRADE is starting... -- 00:59:42.586 INFO [9136]: Version from config: 1.0 -- 00:59:42.586 DEBUG [9136]: Connecting to database... -- 00:59:42.586 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:59:42.586 SQL [9136]: pgsql_db_connect() -- 00:59:42.590 DEBUG [9136]: Database connection successful -- 00:59:42.590 INFO [9136]: _SERVER found -- 00:59:42.590 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:59:42.590 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:59:42.590 INFO [9136]: HTTP_COOKIE = ci_session=r93mka42dh5jj9ug2bjet8d1na05va4v; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:59:42.590 INFO [9136]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:59:42.590 INFO [9136]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:59:42.601 INFO [9136]: COREGRADE is stopping... -- 00:59:42.601 DEBUG [9136]: Closing database connection -- 00:59:42.601 SQL [9136]: pgsql_close() -- 00:59:46.373 INFO [9136]: COREGRADE is starting... -- 00:59:46.373 INFO [9136]: Version from config: 1.0 -- 00:59:46.373 DEBUG [9136]: Connecting to database... -- 00:59:46.373 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:59:46.373 SQL [9136]: pgsql_db_connect() -- 00:59:46.378 INFO [8461]: COREGRADE is starting... -- 00:59:46.379 INFO [8461]: Version from config: 1.0 -- 00:59:46.379 DEBUG [8461]: Connecting to database... -- 00:59:46.379 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:59:46.379 SQL [8461]: pgsql_db_connect() -- 00:59:46.382 DEBUG [8461]: Database connection successful -- 00:59:46.382 INFO [8461]: _SERVER found -- 00:59:46.382 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 00:59:46.382 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 00:59:46.382 INFO [8461]: HTTP_COOKIE = ci_session=r93mka42dh5jj9ug2bjet8d1na05va4v; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:59:46.382 INFO [8461]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:59:46.382 INFO [8461]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:59:46.393 INFO [8461]: COREGRADE is stopping... -- 00:59:46.393 DEBUG [8461]: Closing database connection -- 00:59:46.393 SQL [8461]: pgsql_close() -- 00:59:46.377 DEBUG [9136]: Database connection successful -- 00:59:46.377 INFO [9136]: _SERVER found -- 00:59:46.377 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:59:46.377 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:59:46.377 INFO [9136]: HTTP_COOKIE = ci_session=r93mka42dh5jj9ug2bjet8d1na05va4v; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:59:46.377 INFO [9136]: QUERY_STRING = /member -- 00:59:46.377 INFO [9136]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:59:46.417 INFO [9136]: COREGRADE is stopping... -- 00:59:46.417 DEBUG [9136]: Closing database connection -- 00:59:46.417 SQL [9136]: pgsql_close() -- 00:59:46.539 INFO [9136]: COREGRADE is starting... -- 00:59:46.540 INFO [9136]: Version from config: 1.0 -- 00:59:46.540 DEBUG [9136]: Connecting to database... -- 00:59:46.540 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:59:46.540 SQL [9136]: pgsql_db_connect() -- 00:59:46.544 DEBUG [9136]: Database connection successful -- 00:59:46.544 INFO [9136]: _SERVER found -- 00:59:46.544 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:59:46.544 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:59:46.544 INFO [9136]: HTTP_COOKIE = ci_session=r93mka42dh5jj9ug2bjet8d1na05va4v; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:59:46.544 INFO [9136]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:59:46.544 INFO [9136]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:59:46.555 INFO [9136]: COREGRADE is stopping... -- 00:59:46.555 DEBUG [9136]: Closing database connection -- 00:59:46.555 SQL [9136]: pgsql_close() -- 00:59:49.299 INFO [9136]: COREGRADE is starting... -- 00:59:49.299 INFO [9136]: Version from config: 1.0 -- 00:59:49.299 DEBUG [9136]: Connecting to database... -- 00:59:49.299 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:59:49.299 SQL [9136]: pgsql_db_connect() -- 00:59:49.303 DEBUG [9136]: Database connection successful -- 00:59:49.303 INFO [9136]: _SERVER found -- 00:59:49.303 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:59:49.303 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:59:49.303 INFO [9136]: HTTP_COOKIE = ci_session=r93mka42dh5jj9ug2bjet8d1na05va4v; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:59:49.303 INFO [9136]: QUERY_STRING = /member/page -- 00:59:49.303 INFO [9136]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:59:49.346 INFO [9136]: COREGRADE is stopping... -- 00:59:49.346 DEBUG [9136]: Closing database connection -- 00:59:49.346 SQL [9136]: pgsql_close() -- 00:59:49.400 INFO [9136]: COREGRADE is starting... -- 00:59:49.400 INFO [9136]: Version from config: 1.0 -- 00:59:49.400 DEBUG [9136]: Connecting to database... -- 00:59:49.400 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:59:49.400 SQL [9136]: pgsql_db_connect() -- 00:59:49.404 DEBUG [9136]: Database connection successful -- 00:59:49.404 INFO [9136]: _SERVER found -- 00:59:49.404 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:59:49.404 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:59:49.404 INFO [9136]: HTTP_COOKIE = ci_session=r93mka42dh5jj9ug2bjet8d1na05va4v; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:59:49.404 INFO [9136]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:59:49.404 INFO [9136]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:59:49.415 INFO [9136]: COREGRADE is stopping... -- 00:59:49.415 DEBUG [9136]: Closing database connection -- 00:59:49.415 SQL [9136]: pgsql_close() -- 00:59:49.459 INFO [9136]: COREGRADE is starting... -- 00:59:49.459 INFO [9136]: Version from config: 1.0 -- 00:59:49.459 DEBUG [9136]: Connecting to database... -- 00:59:49.459 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:59:49.459 SQL [9136]: pgsql_db_connect() -- 00:59:49.463 DEBUG [9136]: Database connection successful -- 00:59:49.463 INFO [9136]: _SERVER found -- 00:59:49.463 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 00:59:49.463 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 00:59:49.463 INFO [9136]: HTTP_COOKIE = ci_session=r93mka42dh5jj9ug2bjet8d1na05va4v; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 00:59:49.463 INFO [9136]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:59:49.463 INFO [9136]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 00:59:49.474 INFO [9136]: COREGRADE is stopping... -- 00:59:49.474 DEBUG [9136]: Closing database connection -- 00:59:49.475 SQL [9136]: pgsql_close() -- 01:00:23.824 INFO [8464]: COREGRADE is starting... -- 01:00:23.824 INFO [8464]: Version from config: 1.0 -- 01:00:23.824 DEBUG [8464]: Connecting to database... -- 01:00:23.824 DEBUG [8464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:00:23.824 SQL [8464]: pgsql_db_connect() -- 01:00:23.828 DEBUG [8464]: Database connection successful -- 01:00:23.828 INFO [8464]: _SERVER found -- 01:00:23.828 INFO [8464]: REMOTE_ADDR = 192.168.1.13 -- 01:00:23.828 INFO [8464]: SERVER_NAME = oameye.works.coregrade.com -- 01:00:23.828 INFO [8464]: HTTP_COOKIE = ci_session=r93mka42dh5jj9ug2bjet8d1na05va4v; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 01:00:23.828 INFO [8464]: QUERY_STRING = /member/configure -- 01:00:23.828 INFO [8464]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 01:00:23.869 INFO [8464]: COREGRADE is stopping... -- 01:00:23.869 DEBUG [8464]: Closing database connection -- 01:00:23.869 SQL [8464]: pgsql_close() -- 01:00:23.877 INFO [8462]: COREGRADE is starting... -- 01:00:23.877 INFO [8462]: Version from config: 1.0 -- 01:00:23.877 DEBUG [8462]: Connecting to database... -- 01:00:23.877 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:00:23.877 SQL [8462]: pgsql_db_connect() -- 01:00:23.881 DEBUG [8462]: Database connection successful -- 01:00:23.881 INFO [8462]: _SERVER found -- 01:00:23.881 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 01:00:23.881 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 01:00:23.881 INFO [8462]: HTTP_COOKIE = ci_session=r93mka42dh5jj9ug2bjet8d1na05va4v; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 01:00:23.881 INFO [8462]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:00:23.881 INFO [8462]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 01:00:23.893 INFO [8462]: COREGRADE is stopping... -- 01:00:23.893 DEBUG [8462]: Closing database connection -- 01:00:23.893 SQL [8462]: pgsql_close() -- 01:00:23.998 INFO [8462]: COREGRADE is starting... -- 01:00:23.998 INFO [8462]: Version from config: 1.0 -- 01:00:23.998 DEBUG [8462]: Connecting to database... -- 01:00:23.998 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:00:23.998 SQL [8462]: pgsql_db_connect() -- 01:00:24.002 DEBUG [8462]: Database connection successful -- 01:00:24.002 INFO [8462]: _SERVER found -- 01:00:24.002 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 01:00:24.002 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 01:00:24.002 INFO [8462]: HTTP_COOKIE = ci_session=r93mka42dh5jj9ug2bjet8d1na05va4v; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 01:00:24.002 INFO [8462]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:00:24.002 INFO [8462]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 01:00:24.013 INFO [8462]: COREGRADE is stopping... -- 01:00:24.013 DEBUG [8462]: Closing database connection -- 01:00:24.013 SQL [8462]: pgsql_close() -- 01:00:30.410 INFO [8465]: COREGRADE is starting... -- 01:00:30.410 INFO [8465]: Version from config: 1.0 -- 01:00:30.410 DEBUG [8465]: Connecting to database... -- 01:00:30.410 DEBUG [8465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:00:30.410 SQL [8465]: pgsql_db_connect() -- 01:00:30.419 INFO [8463]: COREGRADE is starting... -- 01:00:30.419 INFO [8463]: Version from config: 1.0 -- 01:00:30.419 DEBUG [8463]: Connecting to database... -- 01:00:30.419 DEBUG [8463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:00:30.419 SQL [8463]: pgsql_db_connect() -- 01:00:30.423 DEBUG [8463]: Database connection successful -- 01:00:30.423 INFO [8463]: _SERVER found -- 01:00:30.423 INFO [8463]: REMOTE_ADDR = 192.168.1.13 -- 01:00:30.423 INFO [8463]: SERVER_NAME = oameye.works.coregrade.com -- 01:00:30.423 INFO [8463]: HTTP_COOKIE = ci_session=r93mka42dh5jj9ug2bjet8d1na05va4v; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 01:00:30.423 INFO [8463]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:00:30.423 INFO [8463]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 01:00:30.434 INFO [8463]: COREGRADE is stopping... -- 01:00:30.434 DEBUG [8463]: Closing database connection -- 01:00:30.434 SQL [8463]: pgsql_close() -- 01:00:30.414 DEBUG [8465]: Database connection successful -- 01:00:30.414 INFO [8465]: _SERVER found -- 01:00:30.414 INFO [8465]: REMOTE_ADDR = 192.168.1.13 -- 01:00:30.414 INFO [8465]: SERVER_NAME = oameye.works.coregrade.com -- 01:00:30.414 INFO [8465]: HTTP_COOKIE = ci_session=r93mka42dh5jj9ug2bjet8d1na05va4v; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 01:00:30.414 INFO [8465]: QUERY_STRING = /member/configure -- 01:00:30.414 INFO [8465]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 01:00:30.454 INFO [8465]: COREGRADE is stopping... -- 01:00:30.454 DEBUG [8465]: Closing database connection -- 01:00:30.454 SQL [8465]: pgsql_close() -- 01:00:30.549 INFO [8465]: COREGRADE is starting... -- 01:00:30.549 INFO [8465]: Version from config: 1.0 -- 01:00:30.549 DEBUG [8465]: Connecting to database... -- 01:00:30.549 DEBUG [8465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:00:30.549 SQL [8465]: pgsql_db_connect() -- 01:00:30.553 DEBUG [8465]: Database connection successful -- 01:00:30.553 INFO [8465]: _SERVER found -- 01:00:30.553 INFO [8465]: REMOTE_ADDR = 192.168.1.13 -- 01:00:30.553 INFO [8465]: SERVER_NAME = oameye.works.coregrade.com -- 01:00:30.553 INFO [8465]: HTTP_COOKIE = ci_session=r93mka42dh5jj9ug2bjet8d1na05va4v; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 01:00:30.553 INFO [8465]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:00:30.553 INFO [8465]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 01:00:30.564 INFO [8465]: COREGRADE is stopping... -- 01:00:30.564 DEBUG [8465]: Closing database connection -- 01:00:30.564 SQL [8465]: pgsql_close() -- 01:00:37.315 INFO [9138]: COREGRADE is starting... -- 01:00:37.315 INFO [9138]: Version from config: 1.0 -- 01:00:37.315 DEBUG [9138]: Connecting to database... -- 01:00:37.315 DEBUG [9138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:00:37.315 SQL [9138]: pgsql_db_connect() -- 01:00:37.321 INFO [9137]: COREGRADE is starting... -- 01:00:37.321 INFO [9137]: Version from config: 1.0 -- 01:00:37.321 DEBUG [9137]: Connecting to database... -- 01:00:37.321 DEBUG [9137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:00:37.321 SQL [9137]: pgsql_db_connect() -- 01:00:37.319 DEBUG [9138]: Database connection successful -- 01:00:37.319 INFO [9138]: _SERVER found -- 01:00:37.319 INFO [9138]: REMOTE_ADDR = 192.168.1.13 -- 01:00:37.319 INFO [9138]: SERVER_NAME = oameye.works.coregrade.com -- 01:00:37.319 INFO [9138]: HTTP_COOKIE = ci_session=r93mka42dh5jj9ug2bjet8d1na05va4v; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 01:00:37.319 INFO [9138]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:00:37.319 INFO [9138]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 01:00:37.331 INFO [9138]: COREGRADE is stopping... -- 01:00:37.331 DEBUG [9138]: Closing database connection -- 01:00:37.331 SQL [9138]: pgsql_close() -- 01:00:37.325 DEBUG [9137]: Database connection successful -- 01:00:37.325 INFO [9137]: _SERVER found -- 01:00:37.325 INFO [9137]: REMOTE_ADDR = 192.168.1.13 -- 01:00:37.325 INFO [9137]: SERVER_NAME = oameye.works.coregrade.com -- 01:00:37.325 INFO [9137]: HTTP_COOKIE = ci_session=r93mka42dh5jj9ug2bjet8d1na05va4v; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 01:00:37.325 INFO [9137]: QUERY_STRING = /member/configure -- 01:00:37.325 INFO [9137]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 01:00:37.365 INFO [9137]: COREGRADE is stopping... -- 01:00:37.365 DEBUG [9137]: Closing database connection -- 01:00:37.365 SQL [9137]: pgsql_close() -- 01:00:37.486 INFO [9138]: COREGRADE is starting... -- 01:00:37.486 INFO [9138]: Version from config: 1.0 -- 01:00:37.486 DEBUG [9138]: Connecting to database... -- 01:00:37.486 DEBUG [9138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:00:37.486 SQL [9138]: pgsql_db_connect() -- 01:00:37.490 DEBUG [9138]: Database connection successful -- 01:00:37.490 INFO [9138]: _SERVER found -- 01:00:37.490 INFO [9138]: REMOTE_ADDR = 192.168.1.13 -- 01:00:37.490 INFO [9138]: SERVER_NAME = oameye.works.coregrade.com -- 01:00:37.490 INFO [9138]: HTTP_COOKIE = ci_session=r93mka42dh5jj9ug2bjet8d1na05va4v; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 01:00:37.490 INFO [9138]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:00:37.490 INFO [9138]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 01:00:37.501 INFO [9138]: COREGRADE is stopping... -- 01:00:37.501 DEBUG [9138]: Closing database connection -- 01:00:37.501 SQL [9138]: pgsql_close() -- 01:00:44.816 INFO [9139]: COREGRADE is starting... -- 01:00:44.817 INFO [9139]: Version from config: 1.0 -- 01:00:44.817 DEBUG [9139]: Connecting to database... -- 01:00:44.817 DEBUG [9139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:00:44.817 SQL [9139]: pgsql_db_connect() -- 01:00:44.833 INFO [9140]: COREGRADE is starting... -- 01:00:44.834 INFO [9140]: Version from config: 1.0 -- 01:00:44.834 DEBUG [9140]: Connecting to database... -- 01:00:44.834 DEBUG [9140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:00:44.834 SQL [9140]: pgsql_db_connect() -- 01:00:44.838 DEBUG [9140]: Database connection successful -- 01:00:44.838 INFO [9140]: _SERVER found -- 01:00:44.838 INFO [9140]: REMOTE_ADDR = 192.168.1.13 -- 01:00:44.838 INFO [9140]: SERVER_NAME = oameye.works.coregrade.com -- 01:00:44.838 INFO [9140]: HTTP_COOKIE = ci_session=r93mka42dh5jj9ug2bjet8d1na05va4v; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 01:00:44.838 INFO [9140]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:00:44.838 INFO [9140]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 01:00:44.850 INFO [9140]: COREGRADE is stopping... -- 01:00:44.850 DEBUG [9140]: Closing database connection -- 01:00:44.850 SQL [9140]: pgsql_close() -- 01:00:44.821 DEBUG [9139]: Database connection successful -- 01:00:44.821 INFO [9139]: _SERVER found -- 01:00:44.821 INFO [9139]: REMOTE_ADDR = 192.168.1.13 -- 01:00:44.821 INFO [9139]: SERVER_NAME = oameye.works.coregrade.com -- 01:00:44.821 INFO [9139]: HTTP_COOKIE = ci_session=r93mka42dh5jj9ug2bjet8d1na05va4v; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 01:00:44.821 INFO [9139]: QUERY_STRING = /member/configure -- 01:00:44.821 INFO [9139]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 01:00:44.861 INFO [9139]: COREGRADE is stopping... -- 01:00:44.861 DEBUG [9139]: Closing database connection -- 01:00:44.861 SQL [9139]: pgsql_close() -- 01:00:44.983 INFO [9139]: COREGRADE is starting... -- 01:00:44.984 INFO [9139]: Version from config: 1.0 -- 01:00:44.984 DEBUG [9139]: Connecting to database... -- 01:00:44.984 DEBUG [9139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:00:44.984 SQL [9139]: pgsql_db_connect() -- 01:00:44.988 DEBUG [9139]: Database connection successful -- 01:00:44.988 INFO [9139]: _SERVER found -- 01:00:44.988 INFO [9139]: REMOTE_ADDR = 192.168.1.13 -- 01:00:44.988 INFO [9139]: SERVER_NAME = oameye.works.coregrade.com -- 01:00:44.988 INFO [9139]: HTTP_COOKIE = ci_session=r93mka42dh5jj9ug2bjet8d1na05va4v; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 01:00:44.988 INFO [9139]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:00:44.988 INFO [9139]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 01:00:44.999 INFO [9139]: COREGRADE is stopping... -- 01:00:44.999 DEBUG [9139]: Closing database connection -- 01:00:44.999 SQL [9139]: pgsql_close() -- 01:01:42.832 INFO [8461]: COREGRADE is starting... -- 01:01:42.832 INFO [8461]: Version from config: 1.0 -- 01:01:42.832 DEBUG [8461]: Connecting to database... -- 01:01:42.832 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:01:42.832 SQL [8461]: pgsql_db_connect() -- 01:01:42.837 DEBUG [8461]: Database connection successful -- 01:01:42.837 INFO [8461]: _SERVER found -- 01:01:42.837 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 01:01:42.837 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 01:01:42.837 INFO [8461]: HTTP_COOKIE = ci_session=r93mka42dh5jj9ug2bjet8d1na05va4v; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 01:01:42.837 INFO [8461]: QUERY_STRING = /member/configure -- 01:01:42.837 INFO [8461]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 01:01:42.878 INFO [8461]: COREGRADE is stopping... -- 01:01:42.878 DEBUG [8461]: Closing database connection -- 01:01:42.878 SQL [8461]: pgsql_close() -- 01:01:42.882 INFO [9136]: COREGRADE is starting... -- 01:01:42.882 INFO [9136]: Version from config: 1.0 -- 01:01:42.882 DEBUG [9136]: Connecting to database... -- 01:01:42.882 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:01:42.882 SQL [9136]: pgsql_db_connect() -- 01:01:42.886 DEBUG [9136]: Database connection successful -- 01:01:42.886 INFO [9136]: _SERVER found -- 01:01:42.886 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 01:01:42.886 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 01:01:42.886 INFO [9136]: HTTP_COOKIE = ci_session=r93mka42dh5jj9ug2bjet8d1na05va4v; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 01:01:42.886 INFO [9136]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:01:42.886 INFO [9136]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 01:01:42.897 INFO [9136]: COREGRADE is stopping... -- 01:01:42.897 DEBUG [9136]: Closing database connection -- 01:01:42.897 SQL [9136]: pgsql_close() -- 01:01:43.083 INFO [9136]: COREGRADE is starting... -- 01:01:43.084 INFO [9136]: Version from config: 1.0 -- 01:01:43.084 DEBUG [9136]: Connecting to database... -- 01:01:43.084 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:01:43.084 SQL [9136]: pgsql_db_connect() -- 01:01:43.088 DEBUG [9136]: Database connection successful -- 01:01:43.088 INFO [9136]: _SERVER found -- 01:01:43.088 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 01:01:43.088 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 01:01:43.088 INFO [9136]: HTTP_COOKIE = ci_session=r93mka42dh5jj9ug2bjet8d1na05va4v; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 01:01:43.088 INFO [9136]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:01:43.088 INFO [9136]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 01:01:43.099 INFO [9136]: COREGRADE is stopping... -- 01:01:43.099 DEBUG [9136]: Closing database connection -- 01:01:43.099 SQL [9136]: pgsql_close() -- 01:01:44.691 INFO [9136]: COREGRADE is starting... -- 01:01:44.691 INFO [9136]: Version from config: 1.0 -- 01:01:44.691 DEBUG [9136]: Connecting to database... -- 01:01:44.691 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:01:44.691 SQL [9136]: pgsql_db_connect() -- 01:01:44.692 INFO [8461]: COREGRADE is starting... -- 01:01:44.692 INFO [8461]: Version from config: 1.0 -- 01:01:44.692 DEBUG [8461]: Connecting to database... -- 01:01:44.692 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:01:44.692 SQL [8461]: pgsql_db_connect() -- 01:01:44.696 DEBUG [8461]: Database connection successful -- 01:01:44.696 INFO [8461]: _SERVER found -- 01:01:44.696 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 01:01:44.696 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 01:01:44.696 INFO [8461]: HTTP_COOKIE = ci_session=r93mka42dh5jj9ug2bjet8d1na05va4v; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 01:01:44.696 INFO [8461]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:01:44.696 INFO [8461]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 01:01:44.707 INFO [8461]: COREGRADE is stopping... -- 01:01:44.707 DEBUG [8461]: Closing database connection -- 01:01:44.707 SQL [8461]: pgsql_close() -- 01:01:44.696 DEBUG [9136]: Database connection successful -- 01:01:44.696 INFO [9136]: _SERVER found -- 01:01:44.696 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 01:01:44.696 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 01:01:44.696 INFO [9136]: HTTP_COOKIE = ci_session=r93mka42dh5jj9ug2bjet8d1na05va4v; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 01:01:44.696 INFO [9136]: QUERY_STRING = /member/configure -- 01:01:44.696 INFO [9136]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 01:01:44.735 INFO [9136]: COREGRADE is stopping... -- 01:01:44.735 DEBUG [9136]: Closing database connection -- 01:01:44.735 SQL [9136]: pgsql_close() -- 01:01:44.836 INFO [9136]: COREGRADE is starting... -- 01:01:44.837 INFO [9136]: Version from config: 1.0 -- 01:01:44.837 DEBUG [9136]: Connecting to database... -- 01:01:44.837 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:01:44.837 SQL [9136]: pgsql_db_connect() -- 01:01:44.841 DEBUG [9136]: Database connection successful -- 01:01:44.841 INFO [9136]: _SERVER found -- 01:01:44.841 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 01:01:44.841 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 01:01:44.841 INFO [9136]: HTTP_COOKIE = ci_session=r93mka42dh5jj9ug2bjet8d1na05va4v; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 01:01:44.841 INFO [9136]: QUERY_STRING = /app-assets/data/locales/en.json -- 01:01:44.841 INFO [9136]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 01:01:44.852 INFO [9136]: COREGRADE is stopping... -- 01:01:44.852 DEBUG [9136]: Closing database connection -- 01:01:44.852 SQL [9136]: pgsql_close() -- 03:15:14.672 INFO [8462]: COREGRADE is starting... -- 03:15:14.672 INFO [8462]: Version from config: 1.0 -- 03:15:14.672 DEBUG [8462]: Connecting to database... -- 03:15:14.672 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:15:14.672 SQL [8462]: pgsql_db_connect() -- 03:15:14.678 DEBUG [8462]: Database connection successful -- 03:15:14.678 INFO [8462]: _SERVER found -- 03:15:14.678 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 03:15:14.678 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 03:15:14.678 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310 -- 03:15:14.678 INFO [8462]: QUERY_STRING = /auth -- 03:15:14.678 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 03:15:14.716 INFO [8462]: COREGRADE is stopping... -- 03:15:14.716 DEBUG [8462]: Closing database connection -- 03:15:14.716 SQL [8462]: pgsql_close() -- 03:15:14.857 INFO [8462]: COREGRADE is starting... -- 03:15:14.857 INFO [8462]: Version from config: 1.0 -- 03:15:14.857 DEBUG [8462]: Connecting to database... -- 03:15:14.857 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:15:14.857 SQL [8462]: pgsql_db_connect() -- 03:15:14.870 INFO [8464]: COREGRADE is starting... -- 03:15:14.871 INFO [8464]: Version from config: 1.0 -- 03:15:14.871 DEBUG [8464]: Connecting to database... -- 03:15:14.871 DEBUG [8464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:15:14.871 SQL [8464]: pgsql_db_connect() -- 03:15:14.861 DEBUG [8462]: Database connection successful -- 03:15:14.861 INFO [8462]: _SERVER found -- 03:15:14.861 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 03:15:14.861 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 03:15:14.861 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ct651c0mgrrpv4nft0o4qtvmoce2qhmi -- 03:15:14.861 INFO [8462]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 03:15:14.861 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 03:15:14.873 INFO [8462]: COREGRADE is stopping... -- 03:15:14.873 DEBUG [8462]: Closing database connection -- 03:15:14.873 SQL [8462]: pgsql_close() -- 03:15:14.875 DEBUG [8464]: Database connection successful -- 03:15:14.875 INFO [8464]: _SERVER found -- 03:15:14.875 INFO [8464]: REMOTE_ADDR = 192.168.1.13 -- 03:15:14.875 INFO [8464]: SERVER_NAME = oameye.works.coregrade.com -- 03:15:14.875 INFO [8464]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.188861350.1581292310; ci_session=ct651c0mgrrpv4nft0o4qtvmoce2qhmi -- 03:15:14.875 INFO [8464]: QUERY_STRING = /app-assets/data/locales/en.json -- 03:15:14.875 INFO [8464]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 03:15:14.888 INFO [8464]: COREGRADE is stopping... -- 03:15:14.888 DEBUG [8464]: Closing database connection -- 03:15:14.888 SQL [8464]: pgsql_close() -- 09:09:29.061 INFO [8465]: COREGRADE is starting... -- 09:09:29.061 INFO [8465]: Version from config: 1.0 -- 09:09:29.061 DEBUG [8465]: Connecting to database... -- 09:09:29.061 DEBUG [8465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:29.061 SQL [8465]: pgsql_db_connect() -- 09:09:29.103 INFO [8465]: COREGRADE is starting... -- 09:09:29.103 INFO [8465]: Version from config: 1.0 -- 09:09:29.103 DEBUG [8465]: Connecting to database... -- 09:09:29.103 DEBUG [8465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:29.103 SQL [8465]: pgsql_db_connect() -- 09:09:29.107 DEBUG [8465]: Database connection successful -- 09:09:29.107 INFO [8465]: _SERVER found -- 09:09:29.108 INFO [8465]: REMOTE_ADDR = 192.168.1.13 -- 09:09:29.108 INFO [8465]: SERVER_NAME = oameye.works.coregrade.com -- 09:09:29.108 INFO [8465]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 09:09:29.108 INFO [8465]: QUERY_STRING = -- 09:09:29.108 INFO [8465]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:09:29.108 INFO [8465]: SystemStatus()09-09-********~************ -- 09:09:29.108 INFO [8465]: long coregrade_api_main(CVars in, CVars &out) -- 09:09:29.108 INFO [8465]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 09:09:29.108 INFO [8465]: account calls -- 09:09:29.108 INFO [8465]: account_calls() -- 09:09:29.108 INFO [8465]: LoginCoreGradeAccount() -- 09:09:29.108 FLOG_MAX [8465]: REQ_STRING(username) -- 09:09:29.108 FLOG_MAX [8465]: REQ_STRING(password) -- 09:09:29.108 FLOG_MAX [8465]: REQ_STRING(sessionid) -- 09:09:29.108 FLOG_MAX [8465]: long load_db_record( CVars &rec, const char * query, ... ) -- 09:09:29.108 SQL [8465]: pgsql_query() -- 09:09:29.108 SQL [8465]: About to run query: -- 09:09:29.108 SQL [8465]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 09:09:29.112 SQL [8465]: Found rows: 1 -- 09:09:29.112 FLOG_MAX [8465]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 09:09:29.112 INFO [8465]: long SessionCheck(long uid, const char *sessionid, int create ) -- 09:09:29.112 SQL [8465]: pgsql_exec() -- 09:09:29.112 SQL [8465]: About to run query: -- 09:09:29.112 SQL [8465]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 09:09:29.113 SQL [8465]: PQcmdTuples: 1 -- 09:09:29.113 SQL [8465]: Affected rows: 1 -- 09:09:29.113 SQL [8465]: pgsql_exec() -- 09:09:29.113 SQL [8465]: About to run query: -- 09:09:29.113 SQL [8465]: DELETE FROM members_session WHERE member_id=5 -- 09:09:29.113 SQL [8465]: PQcmdTuples: 0 -- 09:09:29.113 SQL [8465]: Affected rows: 0 -- 09:09:29.113 SQL [8465]: pgsql_query() -- 09:09:29.113 SQL [8465]: About to run query: -- 09:09:29.113 SQL [8465]: SELECT * FROM members_session WHERE member_id=5 AND session<>'B58796C49181816B2E636F8024F87294' -- 09:09:29.114 SQL [8465]: Found rows: 0 -- 09:09:29.114 SQL [8465]: Found rows: 0 -- 09:09:29.114 FLOG_MAX [8465]: long load_db_record( CVars &rec, const char * query, ... ) -- 09:09:29.114 SQL [8465]: pgsql_query() -- 09:09:29.114 SQL [8465]: About to run query: -- 09:09:29.114 SQL [8465]: SELECT * FROM members_session WHERE member_id=5 AND session='B58796C49181816B2E636F8024F87294' -- 09:09:29.115 SQL [8465]: Found rows: 0 -- 09:09:29.115 SQL [8465]: Found rows: 0 -- 09:09:29.115 FLOG_MAX [8465]: insert_db_record() -- 09:09:29.115 SQL [8465]: pgsql_exec() -- 09:09:29.115 SQL [8465]: About to run query: -- 09:09:29.115 SQL [8465]: INSERT INTO members_session (member_id,session) VALUES ('5','B58796C49181816B2E636F8024F87294') -- 09:09:29.116 SQL [8465]: PQcmdTuples: 1 -- 09:09:29.116 SQL [8465]: Affected rows: 1 -- 09:09:29.116 FLOG_MAX [8465]: SELECT currval('members_session_id_seq') -- 09:09:29.116 SQL [8465]: pgsql_query() -- 09:09:29.116 SQL [8465]: About to run query: -- 09:09:29.116 SQL [8465]: SELECT currval('members_session_id_seq') -- 09:09:29.117 SQL [8465]: Found rows: 1 -- 09:09:29.117 INFO [8465]: CreateDefaultPage() -- 09:09:29.117 FLOG_MAX [8465]: long load_db_record( CVars &rec, const char * query, ... ) -- 09:09:29.117 SQL [8465]: pgsql_query() -- 09:09:29.117 SQL [8465]: About to run query: -- 09:09:29.117 SQL [8465]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 09:09:29.117 SQL [8465]: Found rows: 1 -- 09:09:29.117 FLOG_MAX [8465]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 09:09:29.117 SQL [8465]: pgsql_query() -- 09:09:29.117 SQL [8465]: About to run query: -- 09:09:29.117 SQL [8465]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 09:09:29.118 SQL [8465]: Found rows: 1 -- 09:09:29.118 INFO [8465]: /CreateDefaultPage() -- 09:09:29.118 INFO [8465]: /LoginCoreGradeAccount() -- 09:09:29.118 INFO [8465]: RET: added=2020-02-05 06:47:23.982154 -- 09:09:29.118 INFO [8465]: RET: email=ameye+11@chiefsoft.com -- 09:09:29.118 INFO [8465]: RET: firstname=Olu -- 09:09:29.118 INFO [8465]: RET: id=5 -- 09:09:29.118 INFO [8465]: RET: last_login= -- 09:09:29.118 INFO [8465]: RET: lastname=Amey -- 09:09:29.118 INFO [8465]: RET: loc=192.168.1.13 -- 09:09:29.118 INFO [8465]: RET: member_id=5 -- 09:09:29.118 INFO [8465]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 09:09:29.118 INFO [8465]: RET: phone= -- 09:09:29.118 INFO [8465]: RET: pid= -- 09:09:29.118 INFO [8465]: RET: result=YES I GET TO BACK END -- 09:09:29.118 INFO [8465]: RET: sessionid=B58796C49181816B2E636F8024F87294 -- 09:09:29.118 INFO [8465]: RET: status=1 -- 09:09:29.118 INFO [8465]: RET: stauts=OK -- 09:09:29.118 INFO [8465]: RET: username=ameye+11@chiefsoft.com -- 09:09:29.118 INFO [8465]: RET: verified= -- 09:09:29.119 INFO [8465]: COREGRADE is stopping... -- 09:09:29.119 DEBUG [8465]: Closing database connection -- 09:09:29.119 SQL [8465]: pgsql_close() -- 09:09:29.066 DEBUG [8465]: Database connection successful -- 09:09:29.066 INFO [8465]: _SERVER found -- 09:09:29.066 INFO [8465]: REMOTE_ADDR = 192.168.1.13 -- 09:09:29.066 INFO [8465]: SERVER_NAME = oameye.works.coregrade.com -- 09:09:29.066 INFO [8465]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 09:09:29.066 INFO [8465]: QUERY_STRING = /auth -- 09:09:29.066 INFO [8465]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:09:29.120 INFO [8465]: COREGRADE is stopping... -- 09:09:29.120 DEBUG [8465]: Closing database connection -- 09:09:29.120 SQL [8465]: pgsql_close() -- 09:09:29.140 INFO [8465]: COREGRADE is starting... -- 09:09:29.140 INFO [8465]: Version from config: 1.0 -- 09:09:29.140 DEBUG [8465]: Connecting to database... -- 09:09:29.140 DEBUG [8465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:29.141 SQL [8465]: pgsql_db_connect() -- 09:09:29.144 DEBUG [8465]: Database connection successful -- 09:09:29.144 INFO [8465]: _SERVER found -- 09:09:29.144 INFO [8465]: REMOTE_ADDR = 192.168.1.13 -- 09:09:29.144 INFO [8465]: SERVER_NAME = oameye.works.coregrade.com -- 09:09:29.144 INFO [8465]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=20fjv0g9boa1c65736o87ofc60mqkrpt -- 09:09:29.144 INFO [8465]: QUERY_STRING = /member/index -- 09:09:29.144 INFO [8465]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:09:29.184 INFO [8465]: COREGRADE is stopping... -- 09:09:29.184 DEBUG [8465]: Closing database connection -- 09:09:29.184 SQL [8465]: pgsql_close() -- 09:09:29.675 INFO [8465]: COREGRADE is starting... -- 09:09:29.676 INFO [8465]: Version from config: 1.0 -- 09:09:29.676 DEBUG [8465]: Connecting to database... -- 09:09:29.676 DEBUG [8465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:29.676 SQL [8465]: pgsql_db_connect() -- 09:09:29.684 INFO [8463]: COREGRADE is starting... -- 09:09:29.684 INFO [8463]: Version from config: 1.0 -- 09:09:29.684 DEBUG [8463]: Connecting to database... -- 09:09:29.684 DEBUG [8463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:29.684 SQL [8463]: pgsql_db_connect() -- 09:09:29.680 DEBUG [8465]: Database connection successful -- 09:09:29.680 INFO [8465]: _SERVER found -- 09:09:29.680 INFO [8465]: REMOTE_ADDR = 192.168.1.13 -- 09:09:29.680 INFO [8465]: SERVER_NAME = oameye.works.coregrade.com -- 09:09:29.680 INFO [8465]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=20fjv0g9boa1c65736o87ofc60mqkrpt -- 09:09:29.680 INFO [8465]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 09:09:29.680 INFO [8465]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:09:29.691 INFO [8465]: COREGRADE is stopping... -- 09:09:29.691 DEBUG [8465]: Closing database connection -- 09:09:29.692 SQL [8465]: pgsql_close() -- 09:09:29.688 DEBUG [8463]: Database connection successful -- 09:09:29.688 INFO [8463]: _SERVER found -- 09:09:29.688 INFO [8463]: REMOTE_ADDR = 192.168.1.13 -- 09:09:29.688 INFO [8463]: SERVER_NAME = oameye.works.coregrade.com -- 09:09:29.688 INFO [8463]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=20fjv0g9boa1c65736o87ofc60mqkrpt -- 09:09:29.688 INFO [8463]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:09:29.688 INFO [8463]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:09:29.701 INFO [8463]: COREGRADE is stopping... -- 09:09:29.701 DEBUG [8463]: Closing database connection -- 09:09:29.701 SQL [8463]: pgsql_close() -- 09:09:29.848 INFO [8463]: COREGRADE is starting... -- 09:09:29.849 INFO [8463]: Version from config: 1.0 -- 09:09:29.849 DEBUG [8463]: Connecting to database... -- 09:09:29.849 DEBUG [8463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:29.849 SQL [8463]: pgsql_db_connect() -- 09:09:29.853 DEBUG [8463]: Database connection successful -- 09:09:29.853 INFO [8463]: _SERVER found -- 09:09:29.853 INFO [8463]: REMOTE_ADDR = 192.168.1.13 -- 09:09:29.853 INFO [8463]: SERVER_NAME = oameye.works.coregrade.com -- 09:09:29.853 INFO [8463]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=20fjv0g9boa1c65736o87ofc60mqkrpt -- 09:09:29.853 INFO [8463]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 09:09:29.853 INFO [8463]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:09:29.864 INFO [8463]: COREGRADE is stopping... -- 09:09:29.864 DEBUG [8463]: Closing database connection -- 09:09:29.864 SQL [8463]: pgsql_close() -- 09:09:29.913 INFO [8463]: COREGRADE is starting... -- 09:09:29.913 INFO [8463]: Version from config: 1.0 -- 09:09:29.913 DEBUG [8463]: Connecting to database... -- 09:09:29.913 DEBUG [8463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:29.913 SQL [8463]: pgsql_db_connect() -- 09:09:29.917 DEBUG [8463]: Database connection successful -- 09:09:29.917 INFO [8463]: _SERVER found -- 09:09:29.917 INFO [8463]: REMOTE_ADDR = 192.168.1.13 -- 09:09:29.917 INFO [8463]: SERVER_NAME = oameye.works.coregrade.com -- 09:09:29.917 INFO [8463]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=20fjv0g9boa1c65736o87ofc60mqkrpt -- 09:09:29.917 INFO [8463]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:09:29.917 INFO [8463]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:09:29.928 INFO [8463]: COREGRADE is stopping... -- 09:09:29.928 DEBUG [8463]: Closing database connection -- 09:09:29.928 SQL [8463]: pgsql_close() -- 09:09:31.272 INFO [8463]: COREGRADE is starting... -- 09:09:31.272 INFO [8463]: Version from config: 1.0 -- 09:09:31.272 DEBUG [8463]: Connecting to database... -- 09:09:31.272 DEBUG [8463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:31.272 SQL [8463]: pgsql_db_connect() -- 09:09:31.276 DEBUG [8463]: Database connection successful -- 09:09:31.276 INFO [8463]: _SERVER found -- 09:09:31.276 INFO [8463]: REMOTE_ADDR = 192.168.1.13 -- 09:09:31.276 INFO [8463]: SERVER_NAME = oameye.works.coregrade.com -- 09:09:31.276 INFO [8463]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=20fjv0g9boa1c65736o87ofc60mqkrpt -- 09:09:31.276 INFO [8463]: QUERY_STRING = /member/page -- 09:09:31.276 INFO [8463]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:09:31.319 INFO [8463]: COREGRADE is stopping... -- 09:09:31.319 DEBUG [8463]: Closing database connection -- 09:09:31.319 SQL [8463]: pgsql_close() -- 09:09:31.481 INFO [8463]: COREGRADE is starting... -- 09:09:31.481 INFO [8463]: Version from config: 1.0 -- 09:09:31.481 DEBUG [8463]: Connecting to database... -- 09:09:31.481 DEBUG [8463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:31.481 SQL [8463]: pgsql_db_connect() -- 09:09:31.485 DEBUG [8463]: Database connection successful -- 09:09:31.485 INFO [8463]: _SERVER found -- 09:09:31.485 INFO [8463]: REMOTE_ADDR = 192.168.1.13 -- 09:09:31.485 INFO [8463]: SERVER_NAME = oameye.works.coregrade.com -- 09:09:31.485 INFO [8463]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=20fjv0g9boa1c65736o87ofc60mqkrpt -- 09:09:31.485 INFO [8463]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 09:09:31.485 INFO [8463]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:09:31.496 INFO [8463]: COREGRADE is stopping... -- 09:09:31.496 DEBUG [8463]: Closing database connection -- 09:09:31.496 SQL [8463]: pgsql_close() -- 09:09:31.847 INFO [8463]: COREGRADE is starting... -- 09:09:31.847 INFO [8463]: Version from config: 1.0 -- 09:09:31.847 DEBUG [8463]: Connecting to database... -- 09:09:31.847 DEBUG [8463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:31.847 SQL [8463]: pgsql_db_connect() -- 09:09:31.859 INFO [8465]: COREGRADE is starting... -- 09:09:31.859 INFO [8465]: Version from config: 1.0 -- 09:09:31.859 DEBUG [8465]: Connecting to database... -- 09:09:31.859 DEBUG [8465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:31.859 SQL [8465]: pgsql_db_connect() -- 09:09:31.851 DEBUG [8463]: Database connection successful -- 09:09:31.851 INFO [8463]: _SERVER found -- 09:09:31.851 INFO [8463]: REMOTE_ADDR = 192.168.1.13 -- 09:09:31.851 INFO [8463]: SERVER_NAME = oameye.works.coregrade.com -- 09:09:31.851 INFO [8463]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=20fjv0g9boa1c65736o87ofc60mqkrpt -- 09:09:31.851 INFO [8463]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:09:31.851 INFO [8463]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:09:31.863 INFO [8463]: COREGRADE is stopping... -- 09:09:31.863 DEBUG [8463]: Closing database connection -- 09:09:31.863 SQL [8463]: pgsql_close() -- 09:09:31.863 DEBUG [8465]: Database connection successful -- 09:09:31.863 INFO [8465]: _SERVER found -- 09:09:31.863 INFO [8465]: REMOTE_ADDR = 192.168.1.13 -- 09:09:31.863 INFO [8465]: SERVER_NAME = oameye.works.coregrade.com -- 09:09:31.863 INFO [8465]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=20fjv0g9boa1c65736o87ofc60mqkrpt -- 09:09:31.863 INFO [8465]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:09:31.863 INFO [8465]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:09:31.874 INFO [8465]: COREGRADE is stopping... -- 09:09:31.874 DEBUG [8465]: Closing database connection -- 09:09:31.874 SQL [8465]: pgsql_close() -- 09:09:31.874 INFO [8463]: COREGRADE is starting... -- 09:09:31.874 INFO [8463]: Version from config: 1.0 -- 09:09:31.874 DEBUG [8463]: Connecting to database... -- 09:09:31.874 DEBUG [8463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:31.874 SQL [8463]: pgsql_db_connect() -- 09:09:31.879 DEBUG [8463]: Database connection successful -- 09:09:31.879 INFO [8463]: _SERVER found -- 09:09:31.879 INFO [8463]: REMOTE_ADDR = 192.168.1.13 -- 09:09:31.879 INFO [8463]: SERVER_NAME = oameye.works.coregrade.com -- 09:09:31.879 INFO [8463]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=20fjv0g9boa1c65736o87ofc60mqkrpt -- 09:09:31.879 INFO [8463]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 09:09:31.879 INFO [8463]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:09:31.890 INFO [8463]: COREGRADE is stopping... -- 09:09:31.890 DEBUG [8463]: Closing database connection -- 09:09:31.890 SQL [8463]: pgsql_close() -- 11:18:17.641 INFO [9140]: COREGRADE is starting... -- 11:18:17.642 INFO [9140]: Version from config: 1.0 -- 11:18:17.642 DEBUG [9140]: Connecting to database... -- 11:18:17.642 DEBUG [9140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:18:17.642 SQL [9140]: pgsql_db_connect() -- 11:18:17.646 DEBUG [9140]: Database connection successful -- 11:18:17.646 INFO [9140]: _SERVER found -- 11:18:17.646 INFO [9140]: REMOTE_ADDR = 192.168.1.13 -- 11:18:17.646 INFO [9140]: SERVER_NAME = oameye.works.coregrade.com -- 11:18:17.646 INFO [9140]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911 -- 11:18:17.646 INFO [9140]: QUERY_STRING = -- 11:18:17.646 INFO [9140]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:18:17.646 INFO [9140]: COREGRADE is stopping... -- 11:18:17.646 DEBUG [9140]: Closing database connection -- 11:18:17.646 SQL [9140]: pgsql_close() -- 11:18:17.720 INFO [9140]: COREGRADE is starting... -- 11:18:17.720 INFO [9140]: Version from config: 1.0 -- 11:18:17.720 DEBUG [9140]: Connecting to database... -- 11:18:17.720 DEBUG [9140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:18:17.720 SQL [9140]: pgsql_db_connect() -- 11:18:17.725 DEBUG [9140]: Database connection successful -- 11:18:17.725 INFO [9140]: _SERVER found -- 11:18:17.725 INFO [9140]: REMOTE_ADDR = 192.168.1.13 -- 11:18:17.725 INFO [9140]: SERVER_NAME = oameye.works.coregrade.com -- 11:18:17.725 INFO [9140]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911 -- 11:18:17.725 INFO [9140]: QUERY_STRING = /favicon.ico -- 11:18:17.725 INFO [9140]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:18:17.739 INFO [9140]: COREGRADE is stopping... -- 11:18:17.739 DEBUG [9140]: Closing database connection -- 11:18:17.739 SQL [9140]: pgsql_close() -- 11:28:15.731 INFO [9136]: COREGRADE is starting... -- 11:28:15.731 INFO [9136]: Version from config: 1.0 -- 11:28:15.731 DEBUG [9136]: Connecting to database... -- 11:28:15.731 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:28:15.731 SQL [9136]: pgsql_db_connect() -- 11:28:15.736 DEBUG [9136]: Database connection successful -- 11:28:15.736 INFO [9136]: _SERVER found -- 11:28:15.736 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 11:28:15.736 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 11:28:15.736 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911 -- 11:28:15.736 INFO [9136]: QUERY_STRING = -- 11:28:15.736 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:28:15.736 INFO [9136]: COREGRADE is stopping... -- 11:28:15.736 DEBUG [9136]: Closing database connection -- 11:28:15.736 SQL [9136]: pgsql_close() -- 11:28:37.172 INFO [8462]: COREGRADE is starting... -- 11:28:37.172 INFO [8462]: Version from config: 1.0 -- 11:28:37.172 DEBUG [8462]: Connecting to database... -- 11:28:37.172 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:28:37.172 SQL [8462]: pgsql_db_connect() -- 11:28:37.176 DEBUG [8462]: Database connection successful -- 11:28:37.176 INFO [8462]: _SERVER found -- 11:28:37.176 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 11:28:37.176 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 11:28:37.176 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911 -- 11:28:37.176 INFO [8462]: QUERY_STRING = -- 11:28:37.176 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:28:37.176 INFO [8462]: COREGRADE is stopping... -- 11:28:37.176 DEBUG [8462]: Closing database connection -- 11:28:37.176 SQL [8462]: pgsql_close() -- 11:28:38.159 INFO [8462]: COREGRADE is starting... -- 11:28:38.160 INFO [8462]: Version from config: 1.0 -- 11:28:38.160 DEBUG [8462]: Connecting to database... -- 11:28:38.160 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:28:38.160 SQL [8462]: pgsql_db_connect() -- 11:28:38.164 DEBUG [8462]: Database connection successful -- 11:28:38.164 INFO [8462]: _SERVER found -- 11:28:38.164 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 11:28:38.164 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 11:28:38.164 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911 -- 11:28:38.164 INFO [8462]: QUERY_STRING = -- 11:28:38.164 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:28:38.164 INFO [8462]: COREGRADE is stopping... -- 11:28:38.164 DEBUG [8462]: Closing database connection -- 11:28:38.164 SQL [8462]: pgsql_close() -- 11:28:38.754 INFO [8462]: COREGRADE is starting... -- 11:28:38.754 INFO [8462]: Version from config: 1.0 -- 11:28:38.754 DEBUG [8462]: Connecting to database... -- 11:28:38.754 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:28:38.754 SQL [8462]: pgsql_db_connect() -- 11:28:38.759 DEBUG [8462]: Database connection successful -- 11:28:38.759 INFO [8462]: _SERVER found -- 11:28:38.759 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 11:28:38.759 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 11:28:38.759 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911 -- 11:28:38.759 INFO [8462]: QUERY_STRING = -- 11:28:38.759 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:28:38.759 INFO [8462]: COREGRADE is stopping... -- 11:28:38.759 DEBUG [8462]: Closing database connection -- 11:28:38.759 SQL [8462]: pgsql_close() -- 11:30:07.839 INFO [9139]: COREGRADE is starting... -- 11:30:07.839 INFO [9139]: Version from config: 1.0 -- 11:30:07.839 DEBUG [9139]: Connecting to database... -- 11:30:07.839 DEBUG [9139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:30:07.839 SQL [9139]: pgsql_db_connect() -- 11:30:07.843 DEBUG [9139]: Database connection successful -- 11:30:07.843 INFO [9139]: _SERVER found -- 11:30:07.843 INFO [9139]: REMOTE_ADDR = 192.168.1.13 -- 11:30:07.843 INFO [9139]: SERVER_NAME = oameye.works.coregrade.com -- 11:30:07.843 INFO [9139]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911 -- 11:30:07.843 INFO [9139]: QUERY_STRING = -- 11:30:07.843 INFO [9139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:30:07.843 INFO [9139]: COREGRADE is stopping... -- 11:30:07.843 DEBUG [9139]: Closing database connection -- 11:30:07.843 SQL [9139]: pgsql_close() -- 11:30:23.631 INFO [8461]: COREGRADE is starting... -- 11:30:23.632 INFO [8461]: Version from config: 1.0 -- 11:30:23.632 DEBUG [8461]: Connecting to database... -- 11:30:23.632 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:30:23.632 SQL [8461]: pgsql_db_connect() -- 11:30:23.636 DEBUG [8461]: Database connection successful -- 11:30:23.636 INFO [8461]: _SERVER found -- 11:30:23.636 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 11:30:23.636 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 11:30:23.636 INFO [8461]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911 -- 11:30:23.636 INFO [8461]: QUERY_STRING = -- 11:30:23.636 INFO [8461]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:30:23.636 INFO [8461]: COREGRADE is stopping... -- 11:30:23.636 DEBUG [8461]: Closing database connection -- 11:30:23.636 SQL [8461]: pgsql_close() -- 11:30:24.749 INFO [8461]: COREGRADE is starting... -- 11:30:24.749 INFO [8461]: Version from config: 1.0 -- 11:30:24.749 DEBUG [8461]: Connecting to database... -- 11:30:24.749 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:30:24.749 SQL [8461]: pgsql_db_connect() -- 11:30:24.753 DEBUG [8461]: Database connection successful -- 11:30:24.753 INFO [8461]: _SERVER found -- 11:30:24.753 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 11:30:24.753 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 11:30:24.753 INFO [8461]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911 -- 11:30:24.753 INFO [8461]: QUERY_STRING = -- 11:30:24.753 INFO [8461]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:30:24.753 INFO [8461]: COREGRADE is stopping... -- 11:30:24.753 DEBUG [8461]: Closing database connection -- 11:30:24.753 SQL [8461]: pgsql_close() -- 11:30:55.345 INFO [9136]: COREGRADE is starting... -- 11:30:55.345 INFO [9136]: Version from config: 1.0 -- 11:30:55.345 DEBUG [9136]: Connecting to database... -- 11:30:55.345 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:30:55.345 SQL [9136]: pgsql_db_connect() -- 11:30:55.350 DEBUG [9136]: Database connection successful -- 11:30:55.350 INFO [9136]: _SERVER found -- 11:30:55.350 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 11:30:55.350 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 11:30:55.350 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911 -- 11:30:55.350 INFO [9136]: QUERY_STRING = -- 11:30:55.350 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:30:55.350 INFO [9136]: COREGRADE is stopping... -- 11:30:55.350 DEBUG [9136]: Closing database connection -- 11:30:55.350 SQL [9136]: pgsql_close() -- 11:31:07.059 INFO [8462]: COREGRADE is starting... -- 11:31:07.059 INFO [8462]: Version from config: 1.0 -- 11:31:07.059 DEBUG [8462]: Connecting to database... -- 11:31:07.059 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:31:07.059 SQL [8462]: pgsql_db_connect() -- 11:31:07.064 DEBUG [8462]: Database connection successful -- 11:31:07.064 INFO [8462]: _SERVER found -- 11:31:07.064 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 11:31:07.064 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 11:31:07.064 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911 -- 11:31:07.064 INFO [8462]: QUERY_STRING = -- 11:31:07.064 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:31:07.064 INFO [8462]: COREGRADE is stopping... -- 11:31:07.064 DEBUG [8462]: Closing database connection -- 11:31:07.064 SQL [8462]: pgsql_close() -- 11:31:07.945 INFO [8462]: COREGRADE is starting... -- 11:31:07.946 INFO [8462]: Version from config: 1.0 -- 11:31:07.946 DEBUG [8462]: Connecting to database... -- 11:31:07.946 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:31:07.946 SQL [8462]: pgsql_db_connect() -- 11:31:07.950 DEBUG [8462]: Database connection successful -- 11:31:07.950 INFO [8462]: _SERVER found -- 11:31:07.950 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 11:31:07.950 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 11:31:07.950 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911 -- 11:31:07.950 INFO [8462]: QUERY_STRING = -- 11:31:07.950 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:31:07.950 INFO [8462]: COREGRADE is stopping... -- 11:31:07.950 DEBUG [8462]: Closing database connection -- 11:31:07.950 SQL [8462]: pgsql_close() -- 11:32:20.223 INFO [8464]: COREGRADE is starting... -- 11:32:20.223 INFO [8464]: Version from config: 1.0 -- 11:32:20.223 DEBUG [8464]: Connecting to database... -- 11:32:20.223 DEBUG [8464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:32:20.223 SQL [8464]: pgsql_db_connect() -- 11:32:20.227 DEBUG [8464]: Database connection successful -- 11:32:20.227 INFO [8464]: _SERVER found -- 11:32:20.227 INFO [8464]: REMOTE_ADDR = 192.168.1.13 -- 11:32:20.227 INFO [8464]: SERVER_NAME = oameye.works.coregrade.com -- 11:32:20.227 INFO [8464]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911 -- 11:32:20.227 INFO [8464]: QUERY_STRING = -- 11:32:20.227 INFO [8464]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:32:20.228 INFO [8464]: SystemStatus()09-09-********~************ -- 11:32:20.228 INFO [8464]: long coregrade_api_main(CVars in, CVars &out) -- 11:32:20.228 INFO [8464]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 11:32:20.228 INFO [8464]: account calls -- 11:32:20.228 INFO [8464]: account_calls() -- 11:32:20.228 FLOG_MAX [8464]: REQ_STRING(username) -- 11:32:20.228 FLOG_MAX [8464]: REQ_STRING(firstname) -- 11:32:20.228 FLOG_MAX [8464]: REQ_STRING(lastname) -- 11:32:20.228 FLOG_MAX [8464]: REQ_STRING(email) -- 11:32:20.228 SQL [8464]: pgsql_query() -- 11:32:20.228 SQL [8464]: About to run query: -- 11:32:20.228 SQL [8464]: SELECT * FROM members WHERE LOWER(username) = LOWER('ses66181+352@gmail.com') -- 11:32:20.230 SQL [8464]: Found rows: 0 -- 11:32:20.231 SQL [8464]: Found rows: 0 -- 11:32:20.231 FLOG_MAX [8464]: insert_db_record() -- 11:32:20.231 SQL [8464]: pgsql_exec() -- 11:32:20.231 SQL [8464]: About to run query: -- 11:32:20.231 SQL [8464]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ses66181+352@gmail.com','Olu','Amey','192.168.1.13','','ses66181+352@gmail.com','RS-163331584-20415488-1412495360') -- 11:32:20.232 SQL [8464]: PQcmdTuples: 1 -- 11:32:20.232 SQL [8464]: Affected rows: 1 -- 11:32:20.232 FLOG_MAX [8464]: SELECT currval('members_pending_id_seq') -- 11:32:20.232 SQL [8464]: pgsql_query() -- 11:32:20.232 SQL [8464]: About to run query: -- 11:32:20.232 SQL [8464]: SELECT currval('members_pending_id_seq') -- 11:32:20.233 SQL [8464]: Found rows: 1 -- 11:32:20.233 SQL [8464]: pgsql_query() -- 11:32:20.233 SQL [8464]: About to run query: -- 11:32:20.233 SQL [8464]: UPDATE members_pending SET password = md5('12345678') WHERE id = 11 -- 11:32:20.234 SQL [8464]: Found rows: 0 -- 11:32:20.234 SQL [8464]: Found rows: 0 -- 11:32:20.234 FLOG_MAX [8464]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:32:20.234 SQL [8464]: pgsql_query() -- 11:32:20.234 SQL [8464]: About to run query: -- 11:32:20.234 SQL [8464]: SELECT * FROM members_pending WHERE id = 11 -- 11:32:20.234 SQL [8464]: Found rows: 1 -- 11:32:20.234 FLOG_MAX [8464]: load_db_record(SELECT * FROM members_pending WHERE id = 11 ) num_cols=13 -- 11:32:20.234 FLOG_MAX [8464]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 11:32:20.234 FLOG_MAX [8464]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1692 bytes -- 11:32:20.234 FLOG_MAX [8464]: Returning from FormFile() -- 11:32:20.234 FLOG_MAX [8464]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 11:32:20.234 FLOG_MAX [8464]: ESMTP( 10.0.0.23, support@coregrade.com, ses66181+352@gmail.com ) -- 11:32:20.234 FLOG_MAX [8464]: Prepare body -- 11:32:20.234 FLOG_MAX [8464]: Locate & extract subject -- 11:32:20.234 FLOG_MAX [8464]: Found subject: CoreGrade - Pending Signup - Verify ses66181+352@gmail.com -- 11:32:20.234 FLOG_MAX [8464]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t ses66181+352@gmail.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002!x -sub 'CoreGrade - Pending Signup - Verify ses66181+352@gmail.com' -M ' - - - -
-
- - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-163331584-20415488-1412495360 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - -' -- 11:32:22.293 FLOG_MAX [8464]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiF4 -[S] 535 5.7.8 Error: authentication failed: -llspacing="2" border="0" style="width:550px; font-size:12px;color:#333333;border-width: 1px;border-color: #9dcc7a;border-collapse: collapse;"> -CoreGrade - - -Dear Olu, - -Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. - -Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-163331584-20415488-1412495360 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! - - - -Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 - -CoreGrade Team - -oameye.works.coregrade.com - -To learn more about Groups click here - -To learn more about Group Rewards click here - -To see Offers click here - - - - - - - -
- - - - - - - -' -- 11:32:22.293 FLOG_MAX [8464]: - -END OF PIPE OUTPUT - - -- 11:32:22.293 FLOG_MAX [8464]: /ESMTP() -- 11:32:22.293 INFO [8464]: RET: action=11010 -- 11:32:22.294 INFO [8464]: RET: email=ses66181+352@gmail.com -- 11:32:22.294 INFO [8464]: RET: firstname=Olu -- 11:32:22.294 INFO [8464]: RET: lastname=Amey -- 11:32:22.294 INFO [8464]: RET: password=12345678 -- 11:32:22.294 INFO [8464]: RET: pending_id=11 -- 11:32:22.294 INFO [8464]: RET: status_message=Pending -- 11:32:22.294 INFO [8464]: RET: username=ses66181+352@gmail.com -- 11:32:22.294 INFO [8464]: COREGRADE is stopping... -- 11:32:22.294 DEBUG [8464]: Closing database connection -- 11:32:22.294 SQL [8464]: pgsql_close() -- 11:33:55.412 INFO [8465]: COREGRADE is starting... -- 11:33:55.412 INFO [8465]: Version from config: 1.0 -- 11:33:55.412 DEBUG [8465]: Connecting to database... -- 11:33:55.412 DEBUG [8465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:33:55.412 SQL [8465]: pgsql_db_connect() -- 11:33:55.416 DEBUG [8465]: Database connection successful -- 11:33:55.416 INFO [8465]: _SERVER found -- 11:33:55.416 INFO [8465]: REMOTE_ADDR = 192.168.1.13 -- 11:33:55.416 INFO [8465]: SERVER_NAME = oameye.works.coregrade.com -- 11:33:55.416 INFO [8465]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911 -- 11:33:55.416 INFO [8465]: QUERY_STRING = -- 11:33:55.416 INFO [8465]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:33:55.416 INFO [8465]: SystemStatus()09-09-********~************ -- 11:33:55.416 INFO [8465]: long coregrade_api_main(CVars in, CVars &out) -- 11:33:55.416 INFO [8465]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 11:33:55.416 INFO [8465]: account calls -- 11:33:55.416 INFO [8465]: account_calls() -- 11:33:55.416 FLOG_MAX [8465]: REQ_STRING(username) -- 11:33:55.416 FLOG_MAX [8465]: REQ_STRING(firstname) -- 11:33:55.416 FLOG_MAX [8465]: REQ_STRING(lastname) -- 11:33:55.416 FLOG_MAX [8465]: REQ_STRING(email) -- 11:33:55.416 SQL [8465]: pgsql_query() -- 11:33:55.416 SQL [8465]: About to run query: -- 11:33:55.416 SQL [8465]: SELECT * FROM members WHERE LOWER(username) = LOWER('ses66181+146@gmail.com') -- 11:33:55.418 SQL [8465]: Found rows: 0 -- 11:33:55.418 SQL [8465]: Found rows: 0 -- 11:33:55.418 FLOG_MAX [8465]: insert_db_record() -- 11:33:55.418 SQL [8465]: pgsql_exec() -- 11:33:55.418 SQL [8465]: About to run query: -- 11:33:55.418 SQL [8465]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ses66181+146@gmail.com','Olu','Amey','192.168.1.13','','ses66181+146@gmail.com','RS-552099328-34276352-1235908608') -- 11:33:55.421 SQL [8465]: PQcmdTuples: 1 -- 11:33:55.421 SQL [8465]: Affected rows: 1 -- 11:33:55.421 FLOG_MAX [8465]: SELECT currval('members_pending_id_seq') -- 11:33:55.421 SQL [8465]: pgsql_query() -- 11:33:55.421 SQL [8465]: About to run query: -- 11:33:55.421 SQL [8465]: SELECT currval('members_pending_id_seq') -- 11:33:55.421 SQL [8465]: Found rows: 1 -- 11:33:55.421 SQL [8465]: pgsql_query() -- 11:33:55.421 SQL [8465]: About to run query: -- 11:33:55.421 SQL [8465]: UPDATE members_pending SET password = md5('12345678') WHERE id = 12 -- 11:33:55.422 SQL [8465]: Found rows: 0 -- 11:33:55.422 SQL [8465]: Found rows: 0 -- 11:33:55.422 FLOG_MAX [8465]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:33:55.422 SQL [8465]: pgsql_query() -- 11:33:55.422 SQL [8465]: About to run query: -- 11:33:55.422 SQL [8465]: SELECT * FROM members_pending WHERE id = 12 -- 11:33:55.423 SQL [8465]: Found rows: 1 -- 11:33:55.423 FLOG_MAX [8465]: load_db_record(SELECT * FROM members_pending WHERE id = 12 ) num_cols=13 -- 11:33:55.423 FLOG_MAX [8465]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 11:33:55.423 FLOG_MAX [8465]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1692 bytes -- 11:33:55.423 FLOG_MAX [8465]: Returning from FormFile() -- 11:33:55.423 FLOG_MAX [8465]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 11:33:55.423 FLOG_MAX [8465]: ESMTP( 10.0.0.23, support@coregrade.com, ses66181+146@gmail.com ) -- 11:33:55.423 FLOG_MAX [8465]: Prepare body -- 11:33:55.423 FLOG_MAX [8465]: Locate & extract subject -- 11:33:55.423 FLOG_MAX [8465]: Found subject: CoreGrade - Pending Signup - Verify ses66181+146@gmail.com -- 11:33:55.423 FLOG_MAX [8465]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t ses66181+146@gmail.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002!x -sub 'CoreGrade - Pending Signup - Verify ses66181+146@gmail.com' -M ' - - - -
-
- - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-552099328-34276352-1235908608 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - -' -- 11:33:57.442 FLOG_MAX [8465]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiF4 -[S] 535 5.7.8 Error: authentication failed: -llspacing="2" border="0" style="width:550px; font-size:12px;color:#333333;border-width: 1px;border-color: #9dcc7a;border-collapse: collapse;"> -CoreGrade - - -Dear Olu, - -Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. - -Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-552099328-34276352-1235908608 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! - - - -Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 - -CoreGrade Team - -oameye.works.coregrade.com - -To learn more about Groups click here - -To learn more about Group Rewards click here - -To see Offers click here - - - - - - - -
- - - - - - - -' -- 11:33:57.442 FLOG_MAX [8465]: - -END OF PIPE OUTPUT - - -- 11:33:57.442 FLOG_MAX [8465]: /ESMTP() -- 11:33:57.442 INFO [8465]: RET: action=11010 -- 11:33:57.442 INFO [8465]: RET: email=ses66181+146@gmail.com -- 11:33:57.442 INFO [8465]: RET: firstname=Olu -- 11:33:57.442 INFO [8465]: RET: lastname=Amey -- 11:33:57.442 INFO [8465]: RET: password=12345678 -- 11:33:57.442 INFO [8465]: RET: pending_id=12 -- 11:33:57.442 INFO [8465]: RET: status_message=Pending -- 11:33:57.442 INFO [8465]: RET: username=ses66181+146@gmail.com -- 11:33:57.442 INFO [8465]: COREGRADE is stopping... -- 11:33:57.442 DEBUG [8465]: Closing database connection -- 11:33:57.442 SQL [8465]: pgsql_close() -- 11:37:18.629 INFO [8463]: COREGRADE is starting... -- 11:37:18.629 INFO [8463]: Version from config: 1.0 -- 11:37:18.629 DEBUG [8463]: Connecting to database... -- 11:37:18.629 DEBUG [8463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:37:18.629 SQL [8463]: pgsql_db_connect() -- 11:37:18.635 DEBUG [8463]: Database connection successful -- 11:37:18.635 INFO [8463]: _SERVER found -- 11:37:18.635 INFO [8463]: REMOTE_ADDR = 192.168.1.13 -- 11:37:18.635 INFO [8463]: SERVER_NAME = oameye.works.coregrade.com -- 11:37:18.635 INFO [8463]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911 -- 11:37:18.635 INFO [8463]: QUERY_STRING = -- 11:37:18.635 INFO [8463]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:37:18.635 INFO [8463]: SystemStatus()09-09-********~************ -- 11:37:18.635 INFO [8463]: long coregrade_api_main(CVars in, CVars &out) -- 11:37:18.635 INFO [8463]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 11:37:18.635 INFO [8463]: account calls -- 11:37:18.635 INFO [8463]: account_calls() -- 11:37:18.635 FLOG_MAX [8463]: REQ_STRING(username) -- 11:37:18.635 FLOG_MAX [8463]: REQ_STRING(firstname) -- 11:37:18.635 FLOG_MAX [8463]: REQ_STRING(lastname) -- 11:37:18.635 FLOG_MAX [8463]: REQ_STRING(email) -- 11:37:18.635 SQL [8463]: pgsql_query() -- 11:37:18.636 SQL [8463]: About to run query: -- 11:37:18.636 SQL [8463]: SELECT * FROM members WHERE LOWER(username) = LOWER('ses66181+469@gmail.com') -- 11:37:18.639 SQL [8463]: Found rows: 0 -- 11:37:18.639 SQL [8463]: Found rows: 0 -- 11:37:18.639 FLOG_MAX [8463]: insert_db_record() -- 11:37:18.639 SQL [8463]: pgsql_exec() -- 11:37:18.639 SQL [8463]: About to run query: -- 11:37:18.639 SQL [8463]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ses66181+469@gmail.com','Olu','Amey','192.168.1.13','','ses66181+469@gmail.com','RS-1047928576-220061952-390995712') -- 11:37:18.640 SQL [8463]: PQcmdTuples: 1 -- 11:37:18.641 SQL [8463]: Affected rows: 1 -- 11:37:18.641 FLOG_MAX [8463]: SELECT currval('members_pending_id_seq') -- 11:37:18.641 SQL [8463]: pgsql_query() -- 11:37:18.641 SQL [8463]: About to run query: -- 11:37:18.641 SQL [8463]: SELECT currval('members_pending_id_seq') -- 11:37:18.641 SQL [8463]: Found rows: 1 -- 11:37:18.641 SQL [8463]: pgsql_query() -- 11:37:18.641 SQL [8463]: About to run query: -- 11:37:18.641 SQL [8463]: UPDATE members_pending SET password = md5('12345678') WHERE id = 13 -- 11:37:18.642 SQL [8463]: Found rows: 0 -- 11:37:18.642 SQL [8463]: Found rows: 0 -- 11:37:18.642 FLOG_MAX [8463]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:37:18.642 SQL [8463]: pgsql_query() -- 11:37:18.643 SQL [8463]: About to run query: -- 11:37:18.643 SQL [8463]: SELECT * FROM members_pending WHERE id = 13 -- 11:37:18.643 SQL [8463]: Found rows: 1 -- 11:37:18.643 FLOG_MAX [8463]: load_db_record(SELECT * FROM members_pending WHERE id = 13 ) num_cols=13 -- 11:37:18.643 FLOG_MAX [8463]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 11:37:18.643 FLOG_MAX [8463]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1692 bytes -- 11:37:18.643 FLOG_MAX [8463]: Returning from FormFile() -- 11:37:18.643 FLOG_MAX [8463]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 11:37:18.643 FLOG_MAX [8463]: ESMTP( 10.0.0.23, support@coregrade.com, ses66181+469@gmail.com ) -- 11:37:18.643 FLOG_MAX [8463]: Prepare body -- 11:37:18.643 FLOG_MAX [8463]: Locate & extract subject -- 11:37:18.643 FLOG_MAX [8463]: Found subject: CoreGrade - Pending Signup - Verify ses66181+469@gmail.com -- 11:37:18.643 FLOG_MAX [8463]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t ses66181+469@gmail.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002!x -sub 'CoreGrade - Pending Signup - Verify ses66181+469@gmail.com' -M ' - - - -
-
- - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-1047928576-220061952-390995712 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - -' -- 11:37:20.464 FLOG_MAX [8463]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiF4 -[S] 535 5.7.8 Error: authentication failed: -llspacing="2" border="0" style="width:550px; font-size:12px;color:#333333;border-width: 1px;border-color: #9dcc7a;border-collapse: collapse;"> -CoreGrade - - -Dear Olu, - -Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. - -Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-1047928576-220061952-390995712 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! - - - -Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 - -CoreGrade Team - -oameye.works.coregrade.com - -To learn more about Groups click here - -To learn more about Group Rewards click here - -To see Offers click here - - - - - - - -
- - - - - - - -' -- 11:37:20.464 FLOG_MAX [8463]: - -END OF PIPE OUTPUT - - -- 11:37:20.465 FLOG_MAX [8463]: /ESMTP() -- 11:37:20.465 INFO [8463]: RET: action=11010 -- 11:37:20.465 INFO [8463]: RET: email=ses66181+469@gmail.com -- 11:37:20.465 INFO [8463]: RET: firstname=Olu -- 11:37:20.465 INFO [8463]: RET: lastname=Amey -- 11:37:20.465 INFO [8463]: RET: password=12345678 -- 11:37:20.465 INFO [8463]: RET: pending_id=13 -- 11:37:20.465 INFO [8463]: RET: status_message=Pending -- 11:37:20.465 INFO [8463]: RET: username=ses66181+469@gmail.com -- 11:37:20.465 INFO [8463]: COREGRADE is stopping... -- 11:37:20.465 DEBUG [8463]: Closing database connection -- 11:37:20.465 SQL [8463]: pgsql_close() -- 11:40:47.036 INFO [9137]: COREGRADE is starting... -- 11:40:47.037 INFO [9137]: Version from config: 1.0 -- 11:40:47.037 DEBUG [9137]: Connecting to database... -- 11:40:47.037 DEBUG [9137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:40:47.037 SQL [9137]: pgsql_db_connect() -- 11:40:47.042 DEBUG [9137]: Database connection successful -- 11:40:47.042 INFO [9137]: _SERVER found -- 11:40:47.042 INFO [9137]: REMOTE_ADDR = 192.168.1.13 -- 11:40:47.042 INFO [9137]: SERVER_NAME = oameye.works.coregrade.com -- 11:40:47.042 INFO [9137]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911 -- 11:40:47.042 INFO [9137]: QUERY_STRING = -- 11:40:47.042 INFO [9137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:40:47.042 INFO [9137]: SystemStatus()09-09-********~************ -- 11:40:47.042 INFO [9137]: long coregrade_api_main(CVars in, CVars &out) -- 11:40:47.042 INFO [9137]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 11:40:47.042 INFO [9137]: account calls -- 11:40:47.042 INFO [9137]: account_calls() -- 11:40:47.042 FLOG_MAX [9137]: REQ_STRING(username) -- 11:40:47.042 FLOG_MAX [9137]: REQ_STRING(firstname) -- 11:40:47.042 FLOG_MAX [9137]: REQ_STRING(lastname) -- 11:40:47.042 FLOG_MAX [9137]: REQ_STRING(email) -- 11:40:47.042 SQL [9137]: pgsql_query() -- 11:40:47.042 SQL [9137]: About to run query: -- 11:40:47.042 SQL [9137]: SELECT * FROM members WHERE LOWER(username) = LOWER('ses66181+856@gmail.com') -- 11:40:47.045 SQL [9137]: Found rows: 0 -- 11:40:47.045 SQL [9137]: Found rows: 0 -- 11:40:47.045 FLOG_MAX [9137]: insert_db_record() -- 11:40:47.045 SQL [9137]: pgsql_exec() -- 11:40:47.045 SQL [9137]: About to run query: -- 11:40:47.045 SQL [9137]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ses66181+856@gmail.com','Olu','Amey','192.168.1.13','','ses66181+856@gmail.com','RS-2112164864-870027264-694108160') -- 11:40:47.046 SQL [9137]: PQcmdTuples: 1 -- 11:40:47.046 SQL [9137]: Affected rows: 1 -- 11:40:47.046 FLOG_MAX [9137]: SELECT currval('members_pending_id_seq') -- 11:40:47.046 SQL [9137]: pgsql_query() -- 11:40:47.046 SQL [9137]: About to run query: -- 11:40:47.046 SQL [9137]: SELECT currval('members_pending_id_seq') -- 11:40:47.047 SQL [9137]: Found rows: 1 -- 11:40:47.047 SQL [9137]: pgsql_query() -- 11:40:47.047 SQL [9137]: About to run query: -- 11:40:47.047 SQL [9137]: UPDATE members_pending SET password = md5('12345678') WHERE id = 14 -- 11:40:47.048 SQL [9137]: Found rows: 0 -- 11:40:47.048 SQL [9137]: Found rows: 0 -- 11:40:47.048 FLOG_MAX [9137]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:40:47.048 SQL [9137]: pgsql_query() -- 11:40:47.048 SQL [9137]: About to run query: -- 11:40:47.048 SQL [9137]: SELECT * FROM members_pending WHERE id = 14 -- 11:40:47.048 SQL [9137]: Found rows: 1 -- 11:40:47.048 FLOG_MAX [9137]: load_db_record(SELECT * FROM members_pending WHERE id = 14 ) num_cols=13 -- 11:40:47.048 FLOG_MAX [9137]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 11:40:47.049 FLOG_MAX [9137]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1692 bytes -- 11:40:47.049 FLOG_MAX [9137]: Returning from FormFile() -- 11:40:47.049 FLOG_MAX [9137]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 11:40:47.049 FLOG_MAX [9137]: ESMTP( 10.0.0.23, support@coregrade.com, ses66181+856@gmail.com ) -- 11:40:47.049 FLOG_MAX [9137]: Prepare body -- 11:40:47.049 FLOG_MAX [9137]: Locate & extract subject -- 11:40:47.049 FLOG_MAX [9137]: Found subject: CoreGrade - Pending Signup - Verify ses66181+856@gmail.com -- 11:40:47.049 FLOG_MAX [9137]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t ses66181+856@gmail.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'CoreGrade - Pending Signup - Verify ses66181+856@gmail.com' -M ' - - - -
-
- - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-2112164864-870027264-694108160 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - -' -- 11:40:47.310 FLOG_MAX [9137]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Pending Signup - Verify ses66181+856@gmail.com -From: CoreGrade Support -Date: Fri, 14 Feb 2020 11:40:47 -0500 -To: ses66181+856@gmail.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="Uvzpi7vJ4A9BqwZT" -Mime-version: 1.0 - - ---Uvzpi7vJ4A9BqwZT -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
- - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-2112164864-870027264-694108160 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - - - - ---Uvzpi7vJ4A9BqwZT-- - -[C] . -[S] 250 2.0.0 Ok: queued as 4B07E2113060 -[C] QUIT -[S] 221 2.0.0 Bye -ŠÜU -- 11:40:47.310 FLOG_MAX [9137]: - -END OF PIPE OUTPUT - - -- 11:40:47.310 FLOG_MAX [9137]: /ESMTP() -- 11:40:47.310 INFO [9137]: RET: action=11010 -- 11:40:47.310 INFO [9137]: RET: email=ses66181+856@gmail.com -- 11:40:47.310 INFO [9137]: RET: firstname=Olu -- 11:40:47.310 INFO [9137]: RET: lastname=Amey -- 11:40:47.310 INFO [9137]: RET: password=12345678 -- 11:40:47.310 INFO [9137]: RET: pending_id=14 -- 11:40:47.310 INFO [9137]: RET: status_message=Pending -- 11:40:47.310 INFO [9137]: RET: username=ses66181+856@gmail.com -- 11:40:47.310 INFO [9137]: COREGRADE is stopping... -- 11:40:47.310 DEBUG [9137]: Closing database connection -- 11:40:47.310 SQL [9137]: pgsql_close() -- 11:41:50.528 INFO [9138]: COREGRADE is starting... -- 11:41:50.528 INFO [9138]: Version from config: 1.0 -- 11:41:50.528 DEBUG [9138]: Connecting to database... -- 11:41:50.528 DEBUG [9138]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:41:50.528 SQL [9138]: pgsql_db_connect() -- 11:41:50.533 DEBUG [9138]: Database connection successful -- 11:41:50.533 INFO [9138]: _SERVER found -- 11:41:50.533 INFO [9138]: REMOTE_ADDR = 192.168.1.13 -- 11:41:50.533 INFO [9138]: SERVER_NAME = oameye.works.coregrade.com -- 11:41:50.533 INFO [9138]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911 -- 11:41:50.533 INFO [9138]: QUERY_STRING = -- 11:41:50.533 INFO [9138]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:41:50.533 INFO [9138]: SystemStatus()09-09-********~************ -- 11:41:50.533 INFO [9138]: long coregrade_api_main(CVars in, CVars &out) -- 11:41:50.533 INFO [9138]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 11:41:50.533 INFO [9138]: account calls -- 11:41:50.533 INFO [9138]: account_calls() -- 11:41:50.533 FLOG_MAX [9138]: REQ_STRING(username) -- 11:41:50.533 FLOG_MAX [9138]: REQ_STRING(firstname) -- 11:41:50.533 FLOG_MAX [9138]: REQ_STRING(lastname) -- 11:41:50.533 FLOG_MAX [9138]: REQ_STRING(email) -- 11:41:50.533 SQL [9138]: pgsql_query() -- 11:41:50.533 SQL [9138]: About to run query: -- 11:41:50.533 SQL [9138]: SELECT * FROM members WHERE LOWER(username) = LOWER('ses66181+380@gmail.com') -- 11:41:50.536 SQL [9138]: Found rows: 0 -- 11:41:50.536 SQL [9138]: Found rows: 0 -- 11:41:50.536 FLOG_MAX [9138]: insert_db_record() -- 11:41:50.536 SQL [9138]: pgsql_exec() -- 11:41:50.536 SQL [9138]: About to run query: -- 11:41:50.536 SQL [9138]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ses66181+380@gmail.com','Olu','Amey','192.168.1.13','','ses66181+380@gmail.com','RS-1565047552-668354304-1062173952') -- 11:41:50.537 SQL [9138]: PQcmdTuples: 1 -- 11:41:50.537 SQL [9138]: Affected rows: 1 -- 11:41:50.537 FLOG_MAX [9138]: SELECT currval('members_pending_id_seq') -- 11:41:50.537 SQL [9138]: pgsql_query() -- 11:41:50.537 SQL [9138]: About to run query: -- 11:41:50.538 SQL [9138]: SELECT currval('members_pending_id_seq') -- 11:41:50.538 SQL [9138]: Found rows: 1 -- 11:41:50.538 SQL [9138]: pgsql_query() -- 11:41:50.538 SQL [9138]: About to run query: -- 11:41:50.538 SQL [9138]: UPDATE members_pending SET password = md5('12345678') WHERE id = 15 -- 11:41:50.539 SQL [9138]: Found rows: 0 -- 11:41:50.539 SQL [9138]: Found rows: 0 -- 11:41:50.539 FLOG_MAX [9138]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:41:50.539 SQL [9138]: pgsql_query() -- 11:41:50.539 SQL [9138]: About to run query: -- 11:41:50.539 SQL [9138]: SELECT * FROM members_pending WHERE id = 15 -- 11:41:50.539 SQL [9138]: Found rows: 1 -- 11:41:50.539 FLOG_MAX [9138]: load_db_record(SELECT * FROM members_pending WHERE id = 15 ) num_cols=13 -- 11:41:50.539 FLOG_MAX [9138]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 11:41:50.539 FLOG_MAX [9138]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1692 bytes -- 11:41:50.540 FLOG_MAX [9138]: Returning from FormFile() -- 11:41:50.540 FLOG_MAX [9138]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 11:41:50.540 FLOG_MAX [9138]: ESMTP( 10.0.0.23, support@coregrade.com, ses66181+380@gmail.com ) -- 11:41:50.540 FLOG_MAX [9138]: Prepare body -- 11:41:50.540 FLOG_MAX [9138]: Locate & extract subject -- 11:41:50.540 FLOG_MAX [9138]: Found subject: CoreGrade - Pending Signup - Verify ses66181+380@gmail.com -- 11:41:50.540 FLOG_MAX [9138]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t ses66181+380@gmail.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'CoreGrade - Pending Signup - Verify ses66181+380@gmail.com' -M ' - - - -
-
- - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-1565047552-668354304-1062173952 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - -' -- 11:41:50.571 FLOG_MAX [9138]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Pending Signup - Verify ses66181+380@gmail.com -From: CoreGrade Support -Date: Fri, 14 Feb 2020 11:41:50 -0500 -To: ses66181+380@gmail.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="bk4tsOA5Dg5BL81c" -Mime-version: 1.0 - - ---bk4tsOA5Dg5BL81c -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
- - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-1565047552-668354304-1062173952 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/contact?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - - - - ---bk4tsOA5Dg5BL81c-- - -[C] . -[S] 250 2.0.0 Ok: queued as 8B26B2113060 -[C] QUIT -[S] 221 2.0.0 Bye -ÜU -- 11:41:50.571 FLOG_MAX [9138]: - -END OF PIPE OUTPUT - - -- 11:41:50.571 FLOG_MAX [9138]: /ESMTP() -- 11:41:50.571 INFO [9138]: RET: action=11010 -- 11:41:50.571 INFO [9138]: RET: email=ses66181+380@gmail.com -- 11:41:50.571 INFO [9138]: RET: firstname=Olu -- 11:41:50.571 INFO [9138]: RET: lastname=Amey -- 11:41:50.571 INFO [9138]: RET: password=12345678 -- 11:41:50.571 INFO [9138]: RET: pending_id=15 -- 11:41:50.571 INFO [9138]: RET: status_message=Pending -- 11:41:50.571 INFO [9138]: RET: username=ses66181+380@gmail.com -- 11:41:50.571 INFO [9138]: COREGRADE is stopping... -- 11:41:50.571 DEBUG [9138]: Closing database connection -- 11:41:50.571 SQL [9138]: pgsql_close() -- 11:49:31.919 INFO [9140]: COREGRADE is starting... -- 11:49:31.920 INFO [9140]: Version from config: 1.0 -- 11:49:31.920 DEBUG [9140]: Connecting to database... -- 11:49:31.920 DEBUG [9140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:31.920 SQL [9140]: pgsql_db_connect() -- 11:49:31.924 DEBUG [9140]: Database connection successful -- 11:49:31.924 INFO [9140]: _SERVER found -- 11:49:31.924 INFO [9140]: REMOTE_ADDR = 192.168.1.13 -- 11:49:31.924 INFO [9140]: SERVER_NAME = oameye.works.coregrade.com -- 11:49:31.924 INFO [9140]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 11:49:31.924 INFO [9140]: QUERY_STRING = /auth -- 11:49:31.924 INFO [9140]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:49:31.963 INFO [9140]: COREGRADE is stopping... -- 11:49:31.963 DEBUG [9140]: Closing database connection -- 11:49:31.963 SQL [9140]: pgsql_close() -- 11:49:32.182 INFO [9140]: COREGRADE is starting... -- 11:49:32.182 INFO [9140]: Version from config: 1.0 -- 11:49:32.182 DEBUG [9140]: Connecting to database... -- 11:49:32.182 DEBUG [9140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:32.182 SQL [9140]: pgsql_db_connect() -- 11:49:32.186 DEBUG [9140]: Database connection successful -- 11:49:32.186 INFO [9140]: _SERVER found -- 11:49:32.186 INFO [9140]: REMOTE_ADDR = 192.168.1.13 -- 11:49:32.186 INFO [9140]: SERVER_NAME = oameye.works.coregrade.com -- 11:49:32.186 INFO [9140]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=nscmlcci37ohefcql3urn30d735grrqh -- 11:49:32.186 INFO [9140]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:49:32.186 INFO [9140]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:49:32.199 INFO [9140]: COREGRADE is stopping... -- 11:49:32.199 DEBUG [9140]: Closing database connection -- 11:49:32.199 SQL [9140]: pgsql_close() -- 11:49:32.246 INFO [9140]: COREGRADE is starting... -- 11:49:32.246 INFO [9140]: Version from config: 1.0 -- 11:49:32.246 DEBUG [9140]: Connecting to database... -- 11:49:32.247 DEBUG [9140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:32.247 SQL [9140]: pgsql_db_connect() -- 11:49:32.250 DEBUG [9140]: Database connection successful -- 11:49:32.250 INFO [9140]: _SERVER found -- 11:49:32.250 INFO [9140]: REMOTE_ADDR = 192.168.1.13 -- 11:49:32.250 INFO [9140]: SERVER_NAME = oameye.works.coregrade.com -- 11:49:32.250 INFO [9140]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=nscmlcci37ohefcql3urn30d735grrqh -- 11:49:32.250 INFO [9140]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 11:49:32.250 INFO [9140]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:49:32.263 INFO [9140]: COREGRADE is stopping... -- 11:49:32.263 DEBUG [9140]: Closing database connection -- 11:49:32.263 SQL [9140]: pgsql_close() -- 11:49:32.376 INFO [9140]: COREGRADE is starting... -- 11:49:32.376 INFO [9140]: Version from config: 1.0 -- 11:49:32.376 DEBUG [9140]: Connecting to database... -- 11:49:32.376 DEBUG [9140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:32.376 SQL [9140]: pgsql_db_connect() -- 11:49:32.380 DEBUG [9140]: Database connection successful -- 11:49:32.380 INFO [9140]: _SERVER found -- 11:49:32.380 INFO [9140]: REMOTE_ADDR = 192.168.1.13 -- 11:49:32.380 INFO [9140]: SERVER_NAME = oameye.works.coregrade.com -- 11:49:32.380 INFO [9140]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=nscmlcci37ohefcql3urn30d735grrqh -- 11:49:32.380 INFO [9140]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:49:32.380 INFO [9140]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:49:32.392 INFO [9140]: COREGRADE is stopping... -- 11:49:32.392 DEBUG [9140]: Closing database connection -- 11:49:32.392 SQL [9140]: pgsql_close() -- 12:16:04.190 INFO [9139]: COREGRADE is starting... -- 12:16:04.191 INFO [9139]: Version from config: 1.0 -- 12:16:04.191 DEBUG [9139]: Connecting to database... -- 12:16:04.191 DEBUG [9139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:16:04.191 SQL [9139]: pgsql_db_connect() -- 12:16:04.196 DEBUG [9139]: Database connection successful -- 12:16:04.196 INFO [9139]: _SERVER found -- 12:16:04.196 INFO [9139]: REMOTE_ADDR = 192.168.1.13 -- 12:16:04.196 INFO [9139]: SERVER_NAME = oameye.works.coregrade.com -- 12:16:04.196 INFO [9139]: QUERY_STRING = /solr/admin/info/system -- 12:16:04.196 INFO [9139]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 12:16:04.210 INFO [9139]: COREGRADE is stopping... -- 12:16:04.210 DEBUG [9139]: Closing database connection -- 12:16:04.210 SQL [9139]: pgsql_close() -- 12:21:43.328 INFO [8461]: COREGRADE is starting... -- 12:21:43.328 INFO [8461]: Version from config: 1.0 -- 12:21:43.328 DEBUG [8461]: Connecting to database... -- 12:21:43.328 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:21:43.328 SQL [8461]: pgsql_db_connect() -- 12:21:43.334 DEBUG [8461]: Database connection successful -- 12:21:43.334 INFO [8461]: _SERVER found -- 12:21:43.334 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 12:21:43.334 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 12:21:43.334 INFO [8461]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=nscmlcci37ohefcql3urn30d735grrqh -- 12:21:43.334 INFO [8461]: QUERY_STRING = -- 12:21:43.334 INFO [8461]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:21:43.370 INFO [8461]: COREGRADE is stopping... -- 12:21:43.370 DEBUG [8461]: Closing database connection -- 12:21:43.370 SQL [8461]: pgsql_close() -- 12:21:44.176 INFO [8461]: COREGRADE is starting... -- 12:21:44.176 INFO [8461]: Version from config: 1.0 -- 12:21:44.176 DEBUG [8461]: Connecting to database... -- 12:21:44.176 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:21:44.176 SQL [8461]: pgsql_db_connect() -- 12:21:44.184 INFO [9136]: COREGRADE is starting... -- 12:21:44.185 INFO [9136]: Version from config: 1.0 -- 12:21:44.185 DEBUG [9136]: Connecting to database... -- 12:21:44.185 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:21:44.185 SQL [9136]: pgsql_db_connect() -- 12:21:44.180 DEBUG [8461]: Database connection successful -- 12:21:44.180 INFO [8461]: _SERVER found -- 12:21:44.180 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 12:21:44.180 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 12:21:44.180 INFO [8461]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=aoe9j0nqqjoh3shr155m3lsd0gmamjd9 -- 12:21:44.180 INFO [8461]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 12:21:44.180 INFO [8461]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:21:44.192 INFO [8461]: COREGRADE is stopping... -- 12:21:44.192 DEBUG [8461]: Closing database connection -- 12:21:44.192 SQL [8461]: pgsql_close() -- 12:21:44.189 DEBUG [9136]: Database connection successful -- 12:21:44.189 INFO [9136]: _SERVER found -- 12:21:44.189 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 12:21:44.189 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 12:21:44.189 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=aoe9j0nqqjoh3shr155m3lsd0gmamjd9 -- 12:21:44.189 INFO [9136]: QUERY_STRING = /assets/img/footer_1.jpg -- 12:21:44.189 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:21:44.202 INFO [9136]: COREGRADE is stopping... -- 12:21:44.203 DEBUG [9136]: Closing database connection -- 12:21:44.203 SQL [9136]: pgsql_close() -- 12:21:50.025 INFO [8462]: COREGRADE is starting... -- 12:21:50.025 INFO [8462]: Version from config: 1.0 -- 12:21:50.025 DEBUG [8462]: Connecting to database... -- 12:21:50.025 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:21:50.025 SQL [8462]: pgsql_db_connect() -- 12:21:50.030 DEBUG [8462]: Database connection successful -- 12:21:50.030 INFO [8462]: _SERVER found -- 12:21:50.030 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 12:21:50.030 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 12:21:50.030 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=aoe9j0nqqjoh3shr155m3lsd0gmamjd9; _gid=GA1.2.1003832711.1581700905; _gat_gtag_UA_54829827_2=1 -- 12:21:50.030 INFO [8462]: QUERY_STRING = /home/contactus -- 12:21:50.030 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:21:50.062 INFO [8462]: COREGRADE is stopping... -- 12:21:50.063 DEBUG [8462]: Closing database connection -- 12:21:50.063 SQL [8462]: pgsql_close() -- 12:21:50.349 INFO [8462]: COREGRADE is starting... -- 12:21:50.350 INFO [8462]: Version from config: 1.0 -- 12:21:50.350 DEBUG [8462]: Connecting to database... -- 12:21:50.350 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:21:50.350 SQL [8462]: pgsql_db_connect() -- 12:21:50.354 DEBUG [8462]: Database connection successful -- 12:21:50.354 INFO [8462]: _SERVER found -- 12:21:50.354 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 12:21:50.354 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 12:21:50.354 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=aoe9j0nqqjoh3shr155m3lsd0gmamjd9; _gid=GA1.2.1003832711.1581700905; _gat_gtag_UA_54829827_2=1 -- 12:21:50.354 INFO [8462]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 12:21:50.354 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:21:50.365 INFO [8462]: COREGRADE is stopping... -- 12:21:50.366 DEBUG [8462]: Closing database connection -- 12:21:50.366 SQL [8462]: pgsql_close() -- 12:21:50.405 INFO [8462]: COREGRADE is starting... -- 12:21:50.405 INFO [8462]: Version from config: 1.0 -- 12:21:50.405 DEBUG [8462]: Connecting to database... -- 12:21:50.405 DEBUG [8462]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:21:50.405 SQL [8462]: pgsql_db_connect() -- 12:21:50.409 DEBUG [8462]: Database connection successful -- 12:21:50.409 INFO [8462]: _SERVER found -- 12:21:50.409 INFO [8462]: REMOTE_ADDR = 192.168.1.13 -- 12:21:50.409 INFO [8462]: SERVER_NAME = oameye.works.coregrade.com -- 12:21:50.409 INFO [8462]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=aoe9j0nqqjoh3shr155m3lsd0gmamjd9; _gid=GA1.2.1003832711.1581700905; _gat_gtag_UA_54829827_2=1 -- 12:21:50.409 INFO [8462]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:21:50.409 INFO [8462]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:21:50.421 INFO [8462]: COREGRADE is stopping... -- 12:21:50.421 DEBUG [8462]: Closing database connection -- 12:21:50.421 SQL [8462]: pgsql_close() -- 12:26:51.934 INFO [8464]: COREGRADE is starting... -- 12:26:51.934 INFO [8464]: Version from config: 1.0 -- 12:26:51.934 DEBUG [8464]: Connecting to database... -- 12:26:51.935 DEBUG [8464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:26:51.935 SQL [8464]: pgsql_db_connect() -- 12:26:51.939 DEBUG [8464]: Database connection successful -- 12:26:51.939 INFO [8464]: _SERVER found -- 12:26:51.939 INFO [8464]: REMOTE_ADDR = 192.168.1.13 -- 12:26:51.939 INFO [8464]: SERVER_NAME = oameye.works.coregrade.com -- 12:26:51.939 INFO [8464]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911 -- 12:26:51.939 INFO [8464]: QUERY_STRING = -- 12:26:51.939 INFO [8464]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:26:51.939 INFO [8464]: SystemStatus()09-09-********~************ -- 12:26:51.939 INFO [8464]: long coregrade_api_main(CVars in, CVars &out) -- 12:26:51.939 INFO [8464]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 12:26:51.939 INFO [8464]: account calls -- 12:26:51.939 INFO [8464]: account_calls() -- 12:26:51.939 FLOG_MAX [8464]: REQ_STRING(username) -- 12:26:51.939 FLOG_MAX [8464]: REQ_STRING(firstname) -- 12:26:51.939 FLOG_MAX [8464]: REQ_STRING(lastname) -- 12:26:51.939 FLOG_MAX [8464]: REQ_STRING(email) -- 12:26:51.939 SQL [8464]: pgsql_query() -- 12:26:51.940 SQL [8464]: About to run query: -- 12:26:51.940 SQL [8464]: SELECT * FROM members WHERE LOWER(username) = LOWER('ses66181+474@gmail.com') -- 12:26:51.942 SQL [8464]: Found rows: 0 -- 12:26:51.942 SQL [8464]: Found rows: 0 -- 12:26:51.942 FLOG_MAX [8464]: insert_db_record() -- 12:26:51.942 SQL [8464]: pgsql_exec() -- 12:26:51.942 SQL [8464]: About to run query: -- 12:26:51.942 SQL [8464]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ses66181+474@gmail.com','Olu','Amey','192.168.1.13','','ses66181+474@gmail.com','RS-354008320-979064576-1542429440') -- 12:26:51.944 SQL [8464]: PQcmdTuples: 1 -- 12:26:51.944 SQL [8464]: Affected rows: 1 -- 12:26:51.944 FLOG_MAX [8464]: SELECT currval('members_pending_id_seq') -- 12:26:51.944 SQL [8464]: pgsql_query() -- 12:26:51.944 SQL [8464]: About to run query: -- 12:26:51.944 SQL [8464]: SELECT currval('members_pending_id_seq') -- 12:26:51.944 SQL [8464]: Found rows: 1 -- 12:26:51.944 SQL [8464]: pgsql_query() -- 12:26:51.944 SQL [8464]: About to run query: -- 12:26:51.944 SQL [8464]: UPDATE members_pending SET password = md5('12345678') WHERE id = 16 -- 12:26:51.946 SQL [8464]: Found rows: 0 -- 12:26:51.946 SQL [8464]: Found rows: 0 -- 12:26:51.946 FLOG_MAX [8464]: long load_db_record( CVars &rec, const char * query, ... ) -- 12:26:51.946 SQL [8464]: pgsql_query() -- 12:26:51.946 SQL [8464]: About to run query: -- 12:26:51.946 SQL [8464]: SELECT * FROM members_pending WHERE id = 16 -- 12:26:51.946 SQL [8464]: Found rows: 1 -- 12:26:51.946 FLOG_MAX [8464]: load_db_record(SELECT * FROM members_pending WHERE id = 16 ) num_cols=13 -- 12:26:51.946 FLOG_MAX [8464]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 12:26:51.946 FLOG_MAX [8464]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 58527 bytes -- 12:26:51.947 FLOG_MAX [8464]: Returning from FormFile() -- 12:26:51.947 FLOG_MAX [8464]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 12:26:51.947 FLOG_MAX [8464]: ESMTP( 10.0.0.23, support@coregrade.com, ses66181+474@gmail.com ) -- 12:26:51.947 FLOG_MAX [8464]: Prepare body -- 12:26:51.947 FLOG_MAX [8464]: Locate & extract subject -- 12:26:51.947 FLOG_MAX [8464]: Found subject: CoreGrade - Pending Signup - Verify ses66181+474@gmail.com -- 12:26:51.947 FLOG_MAX [8464]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t ses66181+474@gmail.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'CoreGrade - Pending Signup - Verify ses66181+474@gmail.com' -M ' - - - - - - - - Grab Deal - - - - - - -
- - - - -
- - - - - - - - - - - - - - -
- - - - - -
- -
- - - - - -
- -
- - - - - -
- - - - - -
- - - - - - - - - - - -
- - - - -
- - - - - - - - - - - - - - -
- - - - - -
- -
- - - - - -
- -
- - - - - -
- - - - - -
-
Logo
_

Thank you for signing up for the Grab Voucher for 500 points.
-
- -
- $5Grab Cash back -
-
- - 500 -
-
-
Please sync your Gmail or bank account/credit card so we can see the next time you take a ride with Grab. Upon seeing this transaction, we will deposit 500 points into your Float account. You will be able to redeem these points for cash and vouchers.
Complete Profile now

For all support contact us at https://www.float.sg/ You receive this email because you subscribe to Float.
If you get this in email in error please contact us.
B) 2019 Float. All rights reserved
-
- -
- - - - - -
- -
- -
-
-
-
-
-
-
-
-
- -
- - -
- -
- - - - - -
- -
- -
-
- - - - - - - -' -- 12:26:52.041 FLOG_MAX [8464]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Pending Signup - Verify ses66181+474@gmail.com -From: CoreGrade Support -Date: Fri, 14 Feb 2020 12:26:52 -0500 -To: ses66181+474@gmail.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="EUioUWLuUa9GRUFe" -Mime-version: 1.0 - - ---EUioUWLuUa9GRUFe -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - - - - - - Grab Deal - - - - - - -
- - - - -
- - - - - - - - - - - - - - -
- - - - - -
- -
- - - - - -
- -
- - - - - -
- - - - - -
- - - - - - - - - - - -
- - - - -
- - - - - - - - - - - - - - -
- - - - - -
- -
- - - - - -
- -
- - - - - -
- - - - - -
-
Logo
_

Thank you for signing up for the Grab Voucher for 500 points.
-
- -
- $5Grab Cash back -
-
- - 500 -
-
-
Please sync your Gmail or bank account/credit card so we can see the next time you take a ride with Grab. Upon seeing this transaction, we will deposit 500 points into your Float account. You will be able to redeem these points for cash and vouchers.
Complete Profile now

For all support contact us at https://www.float.sg/ You receive this email because you subscribe to Float.
If you get this in email in error please contact us.
B) 2019 Float. All rights reserved
-
- -
- - - - - -
- -
- -
-
-
-
-
-
-
-
-
- -
- - -
- -
- - - - - -
- -
- -
-
- - - - - - - - - - ---EUioUWLuUa9GRUFe-- - -[C] . -[S] 250 2.0.0 Ok: queued as 093C62113060 -[C] QUIT -[S] 221 2.0.0 Bye - -- 12:26:52.041 FLOG_MAX [8464]: - -END OF PIPE OUTPUT - - -- 12:26:52.041 FLOG_MAX [8464]: /ESMTP() -- 12:26:52.041 INFO [8464]: RET: action=11010 -- 12:26:52.041 INFO [8464]: RET: email=ses66181+474@gmail.com -- 12:26:52.041 INFO [8464]: RET: firstname=Olu -- 12:26:52.041 INFO [8464]: RET: lastname=Amey -- 12:26:52.041 INFO [8464]: RET: password=12345678 -- 12:26:52.041 INFO [8464]: RET: pending_id=16 -- 12:26:52.041 INFO [8464]: RET: status_message=Pending -- 12:26:52.041 INFO [8464]: RET: username=ses66181+474@gmail.com -- 12:26:52.041 INFO [8464]: COREGRADE is stopping... -- 12:26:52.041 DEBUG [8464]: Closing database connection -- 12:26:52.042 SQL [8464]: pgsql_close() -- 12:30:45.140 INFO [8465]: COREGRADE is starting... -- 12:30:45.140 INFO [8465]: Version from config: 1.0 -- 12:30:45.140 DEBUG [8465]: Connecting to database... -- 12:30:45.140 DEBUG [8465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:30:45.140 SQL [8465]: pgsql_db_connect() -- 12:30:45.145 DEBUG [8465]: Database connection successful -- 12:30:45.145 INFO [8465]: _SERVER found -- 12:30:45.145 INFO [8465]: REMOTE_ADDR = 192.168.1.13 -- 12:30:45.145 INFO [8465]: SERVER_NAME = oameye.works.coregrade.com -- 12:30:45.145 INFO [8465]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911 -- 12:30:45.145 INFO [8465]: QUERY_STRING = -- 12:30:45.145 INFO [8465]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:30:45.145 INFO [8465]: SystemStatus()09-09-********~************ -- 12:30:45.145 INFO [8465]: long coregrade_api_main(CVars in, CVars &out) -- 12:30:45.145 INFO [8465]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 12:30:45.145 INFO [8465]: account calls -- 12:30:45.145 INFO [8465]: account_calls() -- 12:30:45.145 FLOG_MAX [8465]: REQ_STRING(username) -- 12:30:45.145 FLOG_MAX [8465]: REQ_STRING(firstname) -- 12:30:45.145 FLOG_MAX [8465]: REQ_STRING(lastname) -- 12:30:45.145 FLOG_MAX [8465]: REQ_STRING(email) -- 12:30:45.145 SQL [8465]: pgsql_query() -- 12:30:45.145 SQL [8465]: About to run query: -- 12:30:45.145 SQL [8465]: SELECT * FROM members WHERE LOWER(username) = LOWER('ses66181+696@gmail.com') -- 12:30:45.147 SQL [8465]: Found rows: 0 -- 12:30:45.147 SQL [8465]: Found rows: 0 -- 12:30:45.147 FLOG_MAX [8465]: insert_db_record() -- 12:30:45.148 SQL [8465]: pgsql_exec() -- 12:30:45.148 SQL [8465]: About to run query: -- 12:30:45.148 SQL [8465]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ses66181+696@gmail.com','Olu','Amey','192.168.1.13','','ses66181+696@gmail.com','RS-444393984-1027972096-1215064064') -- 12:30:45.150 SQL [8465]: PQcmdTuples: 1 -- 12:30:45.150 SQL [8465]: Affected rows: 1 -- 12:30:45.150 FLOG_MAX [8465]: SELECT currval('members_pending_id_seq') -- 12:30:45.150 SQL [8465]: pgsql_query() -- 12:30:45.150 SQL [8465]: About to run query: -- 12:30:45.150 SQL [8465]: SELECT currval('members_pending_id_seq') -- 12:30:45.150 SQL [8465]: Found rows: 1 -- 12:30:45.150 SQL [8465]: pgsql_query() -- 12:30:45.150 SQL [8465]: About to run query: -- 12:30:45.150 SQL [8465]: UPDATE members_pending SET password = md5('12345678') WHERE id = 17 -- 12:30:45.153 SQL [8465]: Found rows: 0 -- 12:30:45.153 SQL [8465]: Found rows: 0 -- 12:30:45.153 FLOG_MAX [8465]: long load_db_record( CVars &rec, const char * query, ... ) -- 12:30:45.153 SQL [8465]: pgsql_query() -- 12:30:45.153 SQL [8465]: About to run query: -- 12:30:45.153 SQL [8465]: SELECT * FROM members_pending WHERE id = 17 -- 12:30:45.153 SQL [8465]: Found rows: 1 -- 12:30:45.153 FLOG_MAX [8465]: load_db_record(SELECT * FROM members_pending WHERE id = 17 ) num_cols=13 -- 12:30:45.153 FLOG_MAX [8465]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 12:30:45.154 FLOG_MAX [8465]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1847 bytes -- 12:30:45.154 FLOG_MAX [8465]: Returning from FormFile() -- 12:30:45.154 FLOG_MAX [8465]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 12:30:45.154 FLOG_MAX [8465]: ESMTP( 10.0.0.23, support@coregrade.com, ses66181+696@gmail.com ) -- 12:30:45.154 FLOG_MAX [8465]: Prepare body -- 12:30:45.154 FLOG_MAX [8465]: Locate & extract subject -- 12:30:45.154 FLOG_MAX [8465]: Found subject: CoreGrade - Pending Signup - Verify ses66181+696@gmail.com -- 12:30:45.154 FLOG_MAX [8465]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t ses66181+696@gmail.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'CoreGrade - Pending Signup - Verify ses66181+696@gmail.com' -M ' - - - -
-
- - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-444393984-1027972096-1215064064 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/home/contactus?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - -' -- 12:30:45.263 FLOG_MAX [8465]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Pending Signup - Verify ses66181+696@gmail.com -From: CoreGrade Support -Date: Fri, 14 Feb 2020 12:30:45 -0500 -To: ses66181+696@gmail.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="W8s/oc8NA3LVXOiF" -Mime-version: 1.0 - - ---W8s/oc8NA3LVXOiF -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
- - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to set your password. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-444393984-1027972096-1215064064 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/home/contactus?vlnk=PLK-000634115584-000836017814-000634115584 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-To learn more about Groups click here -
-To learn more about Group Rewards click here -
-To see Offers click here -
- -
-
-
- -
- - - - - - - - ---W8s/oc8NA3LVXOiF-- - -[C] . -[S] 250 2.0.0 Ok: queued as 3F80A2113061 -[C] QUIT -[S] 221 2.0.0 Bye - -- 12:30:45.263 FLOG_MAX [8465]: - -END OF PIPE OUTPUT - - -- 12:30:45.263 FLOG_MAX [8465]: /ESMTP() -- 12:30:45.263 INFO [8465]: RET: action=11010 -- 12:30:45.263 INFO [8465]: RET: email=ses66181+696@gmail.com -- 12:30:45.263 INFO [8465]: RET: firstname=Olu -- 12:30:45.263 INFO [8465]: RET: lastname=Amey -- 12:30:45.263 INFO [8465]: RET: password=12345678 -- 12:30:45.263 INFO [8465]: RET: pending_id=17 -- 12:30:45.263 INFO [8465]: RET: status_message=Pending -- 12:30:45.263 INFO [8465]: RET: username=ses66181+696@gmail.com -- 12:30:45.263 INFO [8465]: COREGRADE is stopping... -- 12:30:45.263 DEBUG [8465]: Closing database connection -- 12:30:45.263 SQL [8465]: pgsql_close() -- 12:31:16.437 INFO [8463]: COREGRADE is starting... -- 12:31:16.437 INFO [8463]: Version from config: 1.0 -- 12:31:16.437 DEBUG [8463]: Connecting to database... -- 12:31:16.437 DEBUG [8463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:31:16.437 SQL [8463]: pgsql_db_connect() -- 12:31:16.442 DEBUG [8463]: Database connection successful -- 12:31:16.442 INFO [8463]: _SERVER found -- 12:31:16.442 INFO [8463]: REMOTE_ADDR = 192.168.1.13 -- 12:31:16.442 INFO [8463]: SERVER_NAME = oameye.works.coregrade.com -- 12:31:16.442 INFO [8463]: HTTP_COOKIE = _ga=GA1.2.684836352.1578775335 -- 12:31:16.442 INFO [8463]: QUERY_STRING = /home/contactus -- 12:31:16.442 INFO [8463]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:31:16.476 INFO [8463]: COREGRADE is stopping... -- 12:31:16.476 DEBUG [8463]: Closing database connection -- 12:31:16.476 SQL [8463]: pgsql_close() -- 12:31:16.909 INFO [9139]: COREGRADE is starting... -- 12:31:16.910 INFO [9139]: Version from config: 1.0 -- 12:31:16.910 DEBUG [9139]: Connecting to database... -- 12:31:16.910 DEBUG [9139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:31:16.910 SQL [9139]: pgsql_db_connect() -- 12:31:16.914 DEBUG [9139]: Database connection successful -- 12:31:16.914 INFO [9139]: _SERVER found -- 12:31:16.914 INFO [9139]: REMOTE_ADDR = 192.168.1.13 -- 12:31:16.914 INFO [9139]: SERVER_NAME = oameye.works.coregrade.com -- 12:31:16.914 INFO [9139]: HTTP_COOKIE = _ga=GA1.2.684836352.1578775335; ci_session=9d9bd5v353uvrn2v0pom234kd9ama3oq -- 12:31:16.914 INFO [9139]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 12:31:16.914 INFO [9139]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:31:16.925 INFO [9139]: COREGRADE is stopping... -- 12:31:16.925 DEBUG [9139]: Closing database connection -- 12:31:16.925 SQL [9139]: pgsql_close() -- 12:31:17.007 INFO [8463]: COREGRADE is starting... -- 12:31:17.007 INFO [8463]: Version from config: 1.0 -- 12:31:17.007 DEBUG [8463]: Connecting to database... -- 12:31:17.007 DEBUG [8463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:31:17.007 SQL [8463]: pgsql_db_connect() -- 12:31:17.011 DEBUG [8463]: Database connection successful -- 12:31:17.011 INFO [8463]: _SERVER found -- 12:31:17.011 INFO [8463]: REMOTE_ADDR = 192.168.1.13 -- 12:31:17.011 INFO [8463]: SERVER_NAME = oameye.works.coregrade.com -- 12:31:17.011 INFO [8463]: HTTP_COOKIE = _ga=GA1.2.684836352.1578775335; ci_session=9d9bd5v353uvrn2v0pom234kd9ama3oq -- 12:31:17.011 INFO [8463]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:31:17.011 INFO [8463]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:31:17.022 INFO [8463]: COREGRADE is stopping... -- 12:31:17.022 DEBUG [8463]: Closing database connection -- 12:31:17.022 SQL [8463]: pgsql_close() -- 12:31:17.033 INFO [8463]: COREGRADE is starting... -- 12:31:17.033 INFO [8463]: Version from config: 1.0 -- 12:31:17.033 DEBUG [8463]: Connecting to database... -- 12:31:17.033 DEBUG [8463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:31:17.033 SQL [8463]: pgsql_db_connect() -- 12:31:17.037 DEBUG [8463]: Database connection successful -- 12:31:17.037 INFO [8463]: _SERVER found -- 12:31:17.037 INFO [8463]: REMOTE_ADDR = 192.168.1.13 -- 12:31:17.037 INFO [8463]: SERVER_NAME = oameye.works.coregrade.com -- 12:31:17.037 INFO [8463]: HTTP_COOKIE = _ga=GA1.2.684836352.1578775335; ci_session=9d9bd5v353uvrn2v0pom234kd9ama3oq -- 12:31:17.037 INFO [8463]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 12:31:17.037 INFO [8463]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:31:17.048 INFO [8463]: COREGRADE is stopping... -- 12:31:17.048 DEBUG [8463]: Closing database connection -- 12:31:17.048 SQL [8463]: pgsql_close() -- 12:31:23.809 INFO [9136]: COREGRADE is starting... -- 12:31:23.809 INFO [9136]: Version from config: 1.0 -- 12:31:23.809 DEBUG [9136]: Connecting to database... -- 12:31:23.809 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:31:23.809 SQL [9136]: pgsql_db_connect() -- 12:31:23.813 DEBUG [9136]: Database connection successful -- 12:31:23.814 INFO [9136]: _SERVER found -- 12:31:23.814 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 12:31:23.814 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 12:31:23.814 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.684836352.1578775335; ci_session=9d9bd5v353uvrn2v0pom234kd9ama3oq -- 12:31:23.814 INFO [9136]: QUERY_STRING = screen=extgroup -- 12:31:23.814 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:31:23.826 INFO [9136]: COREGRADE is stopping... -- 12:31:23.826 DEBUG [9136]: Closing database connection -- 12:31:23.826 SQL [9136]: pgsql_close() -- 12:31:23.871 INFO [9136]: COREGRADE is starting... -- 12:31:23.872 INFO [9136]: Version from config: 1.0 -- 12:31:23.872 DEBUG [9136]: Connecting to database... -- 12:31:23.872 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:31:23.872 SQL [9136]: pgsql_db_connect() -- 12:31:23.876 DEBUG [9136]: Database connection successful -- 12:31:23.876 INFO [9136]: _SERVER found -- 12:31:23.876 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 12:31:23.876 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 12:31:23.876 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.684836352.1578775335; ci_session=9d9bd5v353uvrn2v0pom234kd9ama3oq -- 12:31:23.876 INFO [9136]: QUERY_STRING = /favicon.ico -- 12:31:23.876 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:31:23.887 INFO [9136]: COREGRADE is stopping... -- 12:31:23.887 DEBUG [9136]: Closing database connection -- 12:31:23.887 SQL [9136]: pgsql_close() -- 12:35:59.375 INFO [8464]: COREGRADE is starting... -- 12:35:59.376 INFO [8464]: Version from config: 1.0 -- 12:35:59.376 DEBUG [8464]: Connecting to database... -- 12:35:59.376 DEBUG [8464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:35:59.376 SQL [8464]: pgsql_db_connect() -- 12:35:59.380 DEBUG [8464]: Database connection successful -- 12:35:59.380 INFO [8464]: _SERVER found -- 12:35:59.380 INFO [8464]: REMOTE_ADDR = 192.168.1.13 -- 12:35:59.380 INFO [8464]: SERVER_NAME = oameye.works.coregrade.com -- 12:35:59.380 INFO [8464]: QUERY_STRING = /home/contactus -- 12:35:59.380 INFO [8464]: HTTP_X_FORWARDED_FOR = 66.102.8.100 -- 12:35:59.416 INFO [8464]: COREGRADE is stopping... -- 12:35:59.416 DEBUG [8464]: Closing database connection -- 12:35:59.416 SQL [8464]: pgsql_close() -- 12:36:00.577 INFO [8464]: COREGRADE is starting... -- 12:36:00.577 INFO [8464]: Version from config: 1.0 -- 12:36:00.577 DEBUG [8464]: Connecting to database... -- 12:36:00.577 DEBUG [8464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:36:00.577 SQL [8464]: pgsql_db_connect() -- 12:36:00.582 DEBUG [8464]: Database connection successful -- 12:36:00.582 INFO [8464]: _SERVER found -- 12:36:00.582 INFO [8464]: REMOTE_ADDR = 192.168.1.13 -- 12:36:00.582 INFO [8464]: SERVER_NAME = oameye.works.coregrade.com -- 12:36:00.582 INFO [8464]: HTTP_COOKIE = ci_session=07e37fasfu5iibsnelun4sbd57nnveca -- 12:36:00.582 INFO [8464]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 12:36:00.582 INFO [8464]: HTTP_X_FORWARDED_FOR = 66.102.8.102 -- 12:36:00.593 INFO [8464]: COREGRADE is stopping... -- 12:36:00.593 DEBUG [8464]: Closing database connection -- 12:36:00.593 SQL [8464]: pgsql_close() -- 12:36:00.689 INFO [8464]: COREGRADE is starting... -- 12:36:00.689 INFO [8464]: Version from config: 1.0 -- 12:36:00.689 DEBUG [8464]: Connecting to database... -- 12:36:00.689 DEBUG [8464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:36:00.689 SQL [8464]: pgsql_db_connect() -- 12:36:00.693 DEBUG [8464]: Database connection successful -- 12:36:00.693 INFO [8464]: _SERVER found -- 12:36:00.693 INFO [8464]: REMOTE_ADDR = 192.168.1.13 -- 12:36:00.693 INFO [8464]: SERVER_NAME = oameye.works.coregrade.com -- 12:36:00.693 INFO [8464]: HTTP_COOKIE = ci_session=07e37fasfu5iibsnelun4sbd57nnveca -- 12:36:00.693 INFO [8464]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:36:00.693 INFO [8464]: HTTP_X_FORWARDED_FOR = 66.102.8.102 -- 12:36:00.704 INFO [8464]: COREGRADE is stopping... -- 12:36:00.704 DEBUG [8464]: Closing database connection -- 12:36:00.704 SQL [8464]: pgsql_close() -- 12:37:35.896 INFO [9137]: COREGRADE is starting... -- 12:37:35.896 INFO [9137]: Version from config: 1.0 -- 12:37:35.896 DEBUG [9137]: Connecting to database... -- 12:37:35.896 DEBUG [9137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:37:35.896 SQL [9137]: pgsql_db_connect() -- 12:37:35.900 DEBUG [9137]: Database connection successful -- 12:37:35.900 INFO [9137]: _SERVER found -- 12:37:35.900 INFO [9137]: REMOTE_ADDR = 192.168.1.13 -- 12:37:35.900 INFO [9137]: SERVER_NAME = oameye.works.coregrade.com -- 12:37:35.900 INFO [9137]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 12:37:35.900 INFO [9137]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 12:37:35.940 INFO [9137]: COREGRADE is stopping... -- 12:37:35.940 DEBUG [9137]: Closing database connection -- 12:37:35.941 SQL [9137]: pgsql_close() -- 12:37:49.842 INFO [8461]: COREGRADE is starting... -- 12:37:49.842 INFO [8461]: Version from config: 1.0 -- 12:37:49.842 DEBUG [8461]: Connecting to database... -- 12:37:49.843 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:37:49.843 SQL [8461]: pgsql_db_connect() -- 12:37:49.847 DEBUG [8461]: Database connection successful -- 12:37:49.847 INFO [8461]: _SERVER found -- 12:37:49.847 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 12:37:49.847 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 12:37:49.847 INFO [8461]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 12:37:49.847 INFO [8461]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 12:37:49.878 INFO [8461]: COREGRADE is stopping... -- 12:37:49.878 DEBUG [8461]: Closing database connection -- 12:37:49.879 SQL [8461]: pgsql_close() -- 12:38:37.379 INFO [9140]: COREGRADE is starting... -- 12:38:37.379 INFO [9140]: Version from config: 1.0 -- 12:38:37.379 DEBUG [9140]: Connecting to database... -- 12:38:37.379 DEBUG [9140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:38:37.379 SQL [9140]: pgsql_db_connect() -- 12:38:37.383 DEBUG [9140]: Database connection successful -- 12:38:37.383 INFO [9140]: _SERVER found -- 12:38:37.383 INFO [9140]: REMOTE_ADDR = 192.168.1.13 -- 12:38:37.383 INFO [9140]: SERVER_NAME = oameye.works.coregrade.com -- 12:38:37.383 INFO [9140]: QUERY_STRING = screen=extgroup -- 12:38:37.383 INFO [9140]: HTTP_X_FORWARDED_FOR = 66.102.8.102 -- 12:38:37.396 INFO [9140]: COREGRADE is stopping... -- 12:38:37.396 DEBUG [9140]: Closing database connection -- 12:38:37.396 SQL [9140]: pgsql_close() -- 12:43:11.655 INFO [9139]: COREGRADE is starting... -- 12:43:11.655 INFO [9139]: Version from config: 1.0 -- 12:43:11.655 DEBUG [9139]: Connecting to database... -- 12:43:11.655 DEBUG [9139]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:43:11.655 SQL [9139]: pgsql_db_connect() -- 12:43:11.660 DEBUG [9139]: Database connection successful -- 12:43:11.660 INFO [9139]: _SERVER found -- 12:43:11.660 INFO [9139]: REMOTE_ADDR = 192.168.1.13 -- 12:43:11.660 INFO [9139]: SERVER_NAME = oameye.works.coregrade.com -- 12:43:11.660 INFO [9139]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 12:43:11.660 INFO [9139]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 12:43:11.699 INFO [9139]: COREGRADE is stopping... -- 12:43:11.699 DEBUG [9139]: Closing database connection -- 12:43:11.699 SQL [9139]: pgsql_close() -- 13:09:15.577 INFO [8463]: COREGRADE is starting... -- 13:09:15.579 INFO [8463]: Version from config: 1.0 -- 13:09:15.579 DEBUG [8463]: Connecting to database... -- 13:09:15.579 DEBUG [8463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:15.579 SQL [8463]: pgsql_db_connect() -- 13:09:15.583 DEBUG [8463]: Database connection successful -- 13:09:15.583 INFO [8463]: _SERVER found -- 13:09:15.583 INFO [8463]: REMOTE_ADDR = 192.168.1.13 -- 13:09:15.583 INFO [8463]: SERVER_NAME = oameye.works.coregrade.com -- 13:09:15.583 INFO [8463]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911 -- 13:09:15.583 INFO [8463]: QUERY_STRING = -- 13:09:15.583 INFO [8463]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:09:15.583 INFO [8463]: SystemStatus()09-09-********~************ -- 13:09:15.583 INFO [8463]: long coregrade_api_main(CVars in, CVars &out) -- 13:09:15.583 INFO [8463]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 13:09:15.583 INFO [8463]: account calls -- 13:09:15.583 INFO [8463]: account_calls() -- 13:09:15.583 FLOG_MAX [8463]: REQ_STRING(username) -- 13:09:15.583 FLOG_MAX [8463]: REQ_STRING(firstname) -- 13:09:15.583 FLOG_MAX [8463]: REQ_STRING(lastname) -- 13:09:15.583 FLOG_MAX [8463]: REQ_STRING(email) -- 13:09:15.583 SQL [8463]: pgsql_query() -- 13:09:15.583 SQL [8463]: About to run query: -- 13:09:15.584 SQL [8463]: SELECT * FROM members WHERE LOWER(username) = LOWER('ses66181+563@gmail.com') -- 13:09:15.586 SQL [8463]: Found rows: 0 -- 13:09:15.586 SQL [8463]: Found rows: 0 -- 13:09:15.586 FLOG_MAX [8463]: insert_db_record() -- 13:09:15.586 SQL [8463]: pgsql_exec() -- 13:09:15.586 SQL [8463]: About to run query: -- 13:09:15.586 SQL [8463]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ses66181+563@gmail.com','Olu','Amey','192.168.1.13','','ses66181+563@gmail.com','RS-537486592-1151665920-2136810240') -- 13:09:15.588 SQL [8463]: PQcmdTuples: 1 -- 13:09:15.588 SQL [8463]: Affected rows: 1 -- 13:09:15.588 FLOG_MAX [8463]: SELECT currval('members_pending_id_seq') -- 13:09:15.588 SQL [8463]: pgsql_query() -- 13:09:15.588 SQL [8463]: About to run query: -- 13:09:15.588 SQL [8463]: SELECT currval('members_pending_id_seq') -- 13:09:15.588 SQL [8463]: Found rows: 1 -- 13:09:15.588 SQL [8463]: pgsql_query() -- 13:09:15.589 SQL [8463]: About to run query: -- 13:09:15.589 SQL [8463]: UPDATE members_pending SET password = md5('12345678') WHERE id = 18 -- 13:09:15.590 SQL [8463]: Found rows: 0 -- 13:09:15.590 SQL [8463]: Found rows: 0 -- 13:09:15.590 FLOG_MAX [8463]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:09:15.590 SQL [8463]: pgsql_query() -- 13:09:15.590 SQL [8463]: About to run query: -- 13:09:15.590 SQL [8463]: SELECT * FROM members_pending WHERE id = 18 -- 13:09:15.590 SQL [8463]: Found rows: 1 -- 13:09:15.590 FLOG_MAX [8463]: load_db_record(SELECT * FROM members_pending WHERE id = 18 ) num_cols=13 -- 13:09:15.590 FLOG_MAX [8463]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 13:09:15.590 FLOG_MAX [8463]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1504 bytes -- 13:09:15.590 FLOG_MAX [8463]: Returning from FormFile() -- 13:09:15.590 FLOG_MAX [8463]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 13:09:15.590 FLOG_MAX [8463]: ESMTP( 10.0.0.23, support@coregrade.com, ses66181+563@gmail.com ) -- 13:09:15.590 FLOG_MAX [8463]: Prepare body -- 13:09:15.590 FLOG_MAX [8463]: Locate & extract subject -- 13:09:15.590 FLOG_MAX [8463]: Found subject: CoreGrade - Pending Signup - Verify ses66181+563@gmail.com -- 13:09:15.590 FLOG_MAX [8463]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t ses66181+563@gmail.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'CoreGrade - Pending Signup - Verify ses66181+563@gmail.com' -M ' - - - -
-
- - - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to verify your email. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-537486592-1151665920-2136810240 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/home/contactus?vlnk=RS-537486592-1151665920-2136810240 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-
-
- -
- - - - - -' -- 13:09:15.671 FLOG_MAX [8463]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Pending Signup - Verify ses66181+563@gmail.com -From: CoreGrade Support -Date: Fri, 14 Feb 2020 13:09:15 -0500 -To: ses66181+563@gmail.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="FUrVAQBa210J4OdM" -Mime-version: 1.0 - - ---FUrVAQBa210J4OdM -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
- - - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to verify your email. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-537486592-1151665920-2136810240 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/home/contactus?vlnk=RS-537486592-1151665920-2136810240 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-
-
- -
- - - - - - - - ---FUrVAQBa210J4OdM-- - -[C] . -[S] 250 2.0.0 Ok: queued as A327A2113061 -[C] QUIT -[S] 221 2.0.0 Bye - -- 13:09:15.671 FLOG_MAX [8463]: - -END OF PIPE OUTPUT - - -- 13:09:15.671 FLOG_MAX [8463]: /ESMTP() -- 13:09:15.671 INFO [8463]: RET: action=11010 -- 13:09:15.671 INFO [8463]: RET: email=ses66181+563@gmail.com -- 13:09:15.671 INFO [8463]: RET: firstname=Olu -- 13:09:15.671 INFO [8463]: RET: lastname=Amey -- 13:09:15.671 INFO [8463]: RET: password=12345678 -- 13:09:15.671 INFO [8463]: RET: pending_id=18 -- 13:09:15.671 INFO [8463]: RET: status_message=Pending -- 13:09:15.671 INFO [8463]: RET: username=ses66181+563@gmail.com -- 13:09:15.672 INFO [8463]: COREGRADE is stopping... -- 13:09:15.672 DEBUG [8463]: Closing database connection -- 13:09:15.672 SQL [8463]: pgsql_close() -- 13:10:45.253 INFO [9136]: COREGRADE is starting... -- 13:10:45.254 INFO [9136]: Version from config: 1.0 -- 13:10:45.254 DEBUG [9136]: Connecting to database... -- 13:10:45.254 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:10:45.254 SQL [9136]: pgsql_db_connect() -- 13:10:45.291 INFO [9136]: COREGRADE is starting... -- 13:10:45.292 INFO [9136]: Version from config: 1.0 -- 13:10:45.292 DEBUG [9136]: Connecting to database... -- 13:10:45.292 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:10:45.292 SQL [9136]: pgsql_db_connect() -- 13:10:45.296 DEBUG [9136]: Database connection successful -- 13:10:45.296 INFO [9136]: _SERVER found -- 13:10:45.296 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 13:10:45.296 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 13:10:45.296 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.684836352.1578775335; ci_session=9d9bd5v353uvrn2v0pom234kd9ama3oq -- 13:10:45.296 INFO [9136]: QUERY_STRING = vlnk=RS-537486592-1151665920-2136810240 -- 13:10:45.296 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:10:45.296 INFO [9136]: SystemStatus()09-09-********~************ -- 13:10:45.296 INFO [9136]: long coregrade_api_main(CVars in, CVars &out) -- 13:10:45.296 INFO [9136]: long coregrade_api_main(CVars in, CVars &out) action =11020 -- 13:10:45.296 INFO [9136]: account calls -- 13:10:45.296 INFO [9136]: account_calls() -- 13:10:45.296 INFO [9136]: CreateCoreGradeAccount() -- 13:10:45.296 FLOG_MAX [9136]: REQ_STRING(verify_link) -- 13:10:45.296 FLOG_MAX [9136]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:10:45.296 SQL [9136]: pgsql_query() -- 13:10:45.296 SQL [9136]: About to run query: -- 13:10:45.296 SQL [9136]: SELECT *,id AS pending_id FROM members_pending WHERE verify_link ='RS-537486592-1151665920-2136810240' AND expire > now() LIMIT 1 -- 13:10:45.299 SQL [9136]: Found rows: 1 -- 13:10:45.299 FLOG_MAX [9136]: load_db_record(SELECT *,id AS pending_id FROM members_pending WHERE verify_link ='RS-537486592-1151665920-2136810240' AND expire > now() LIMIT 1) num_cols=14 -- 13:10:45.299 FLOG_MAX [9136]: insert_db_record() -- 13:10:45.299 SQL [9136]: pgsql_exec() -- 13:10:45.299 SQL [9136]: About to run query: -- 13:10:45.299 SQL [9136]: INSERT INTO members (email,firstname,lastname,loc,password,phone,username) VALUES ('ses66181+563@gmail.com','Olu','Amey','192.168.1.13','25d55ad283aa400af464c76d713c07ad','','ses66181+563@gmail.com') -- 13:10:45.300 SQL [9136]: PQcmdTuples: 1 -- 13:10:45.300 SQL [9136]: Affected rows: 1 -- 13:10:45.300 FLOG_MAX [9136]: SELECT currval('members_id_seq') -- 13:10:45.300 SQL [9136]: pgsql_query() -- 13:10:45.300 SQL [9136]: About to run query: -- 13:10:45.300 SQL [9136]: SELECT currval('members_id_seq') -- 13:10:45.301 SQL [9136]: Found rows: 1 -- 13:10:45.301 SQL [9136]: pgsql_query() -- 13:10:45.301 SQL [9136]: About to run query: -- 13:10:45.301 SQL [9136]: UPDATE members_pending SET status = 5,verified=now() WHERE id = 18 -- 13:10:45.302 SQL [9136]: Found rows: 0 -- 13:10:45.302 SQL [9136]: Found rows: 0 -- 13:10:45.302 INFO [9136]: /CreateCoreGradeAccount() -- 13:10:45.302 INFO [9136]: RET: added=2020-02-14 13:09:15.586889 -- 13:10:45.302 INFO [9136]: RET: email=ses66181+563@gmail.com -- 13:10:45.302 INFO [9136]: RET: expire=2020-02-16 13:09:15.586889 -- 13:10:45.302 INFO [9136]: RET: firstname=Olu -- 13:10:45.302 INFO [9136]: RET: id=18 -- 13:10:45.302 INFO [9136]: RET: lastname=Amey -- 13:10:45.302 INFO [9136]: RET: loc=192.168.1.13 -- 13:10:45.302 INFO [9136]: RET: member_id=9 -- 13:10:45.302 INFO [9136]: RET: password=25d55ad283aa400af464c76d713c07ad -- 13:10:45.302 INFO [9136]: RET: pending_id=18 -- 13:10:45.302 INFO [9136]: RET: phone= -- 13:10:45.302 INFO [9136]: RET: result=YES I GET TO BACK END -- 13:10:45.302 INFO [9136]: RET: status=prepare to create account -- 13:10:45.302 INFO [9136]: RET: username=ses66181+563@gmail.com -- 13:10:45.302 INFO [9136]: RET: verified= -- 13:10:45.302 INFO [9136]: RET: verify_link=RS-537486592-1151665920-2136810240 -- 13:10:45.303 INFO [9136]: COREGRADE is stopping... -- 13:10:45.303 DEBUG [9136]: Closing database connection -- 13:10:45.303 SQL [9136]: pgsql_close() -- 13:10:45.258 DEBUG [9136]: Database connection successful -- 13:10:45.258 INFO [9136]: _SERVER found -- 13:10:45.258 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 13:10:45.258 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 13:10:45.258 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.684836352.1578775335; ci_session=9d9bd5v353uvrn2v0pom234kd9ama3oq -- 13:10:45.258 INFO [9136]: QUERY_STRING = /vemail -- 13:10:45.258 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:10:45.304 INFO [9136]: COREGRADE is stopping... -- 13:10:45.304 DEBUG [9136]: Closing database connection -- 13:10:45.304 SQL [9136]: pgsql_close() -- 13:10:45.551 INFO [8465]: COREGRADE is starting... -- 13:10:45.551 INFO [8465]: Version from config: 1.0 -- 13:10:45.551 DEBUG [8465]: Connecting to database... -- 13:10:45.551 DEBUG [8465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:10:45.551 SQL [8465]: pgsql_db_connect() -- 13:10:45.555 DEBUG [8465]: Database connection successful -- 13:10:45.555 INFO [8465]: _SERVER found -- 13:10:45.555 INFO [8465]: REMOTE_ADDR = 192.168.1.13 -- 13:10:45.555 INFO [8465]: SERVER_NAME = oameye.works.coregrade.com -- 13:10:45.555 INFO [8465]: HTTP_COOKIE = _ga=GA1.2.684836352.1578775335; ci_session=n3lk3qvr8vrfgddrqpsq3f7egmibb43p -- 13:10:45.555 INFO [8465]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:10:45.555 INFO [8465]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:10:45.569 INFO [8465]: COREGRADE is stopping... -- 13:10:45.569 DEBUG [8465]: Closing database connection -- 13:10:45.569 SQL [8465]: pgsql_close() -- 13:10:45.661 INFO [12784]: COREGRADE is starting... -- 13:10:45.661 INFO [12784]: Version from config: 1.0 -- 13:10:45.661 DEBUG [12784]: Connecting to database... -- 13:10:45.661 DEBUG [12784]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:10:45.661 SQL [12784]: pgsql_db_connect() -- 13:10:45.666 DEBUG [12784]: Database connection successful -- 13:10:45.666 INFO [12784]: _SERVER found -- 13:10:45.666 INFO [12784]: REMOTE_ADDR = 192.168.1.13 -- 13:10:45.666 INFO [12784]: SERVER_NAME = oameye.works.coregrade.com -- 13:10:45.666 INFO [12784]: HTTP_COOKIE = _ga=GA1.2.684836352.1578775335; ci_session=n3lk3qvr8vrfgddrqpsq3f7egmibb43p -- 13:10:45.666 INFO [12784]: QUERY_STRING = /app-assets/data/locales/en.json -- 13:10:45.666 INFO [12784]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:10:45.680 INFO [12784]: COREGRADE is stopping... -- 13:10:45.680 DEBUG [12784]: Closing database connection -- 13:10:45.680 SQL [12784]: pgsql_close() -- 13:10:51.814 INFO [8464]: COREGRADE is starting... -- 13:10:51.814 INFO [8464]: Version from config: 1.0 -- 13:10:51.814 DEBUG [8464]: Connecting to database... -- 13:10:51.814 DEBUG [8464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:10:51.814 SQL [8464]: pgsql_db_connect() -- 13:10:51.850 INFO [8464]: COREGRADE is starting... -- 13:10:51.850 INFO [8464]: Version from config: 1.0 -- 13:10:51.850 DEBUG [8464]: Connecting to database... -- 13:10:51.850 DEBUG [8464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:10:51.850 SQL [8464]: pgsql_db_connect() -- 13:10:51.854 DEBUG [8464]: Database connection successful -- 13:10:51.854 INFO [8464]: _SERVER found -- 13:10:51.854 INFO [8464]: REMOTE_ADDR = 192.168.1.13 -- 13:10:51.854 INFO [8464]: SERVER_NAME = oameye.works.coregrade.com -- 13:10:51.854 INFO [8464]: QUERY_STRING = vlnk=RS-537486592-1151665920-2136810240 -- 13:10:51.854 INFO [8464]: HTTP_X_FORWARDED_FOR = 66.102.8.100 -- 13:10:51.854 INFO [8464]: SystemStatus()09-09-********~************ -- 13:10:51.854 INFO [8464]: long coregrade_api_main(CVars in, CVars &out) -- 13:10:51.854 INFO [8464]: long coregrade_api_main(CVars in, CVars &out) action =11020 -- 13:10:51.854 INFO [8464]: account calls -- 13:10:51.854 INFO [8464]: account_calls() -- 13:10:51.854 INFO [8464]: CreateCoreGradeAccount() -- 13:10:51.854 FLOG_MAX [8464]: REQ_STRING(verify_link) -- 13:10:51.855 FLOG_MAX [8464]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:10:51.855 SQL [8464]: pgsql_query() -- 13:10:51.855 SQL [8464]: About to run query: -- 13:10:51.855 SQL [8464]: SELECT *,id AS pending_id FROM members_pending WHERE verify_link ='RS-537486592-1151665920-2136810240' AND expire > now() LIMIT 1 -- 13:10:51.857 SQL [8464]: Found rows: 1 -- 13:10:51.857 FLOG_MAX [8464]: load_db_record(SELECT *,id AS pending_id FROM members_pending WHERE verify_link ='RS-537486592-1151665920-2136810240' AND expire > now() LIMIT 1) num_cols=14 -- 13:10:51.857 FLOG_MAX [8464]: insert_db_record() -- 13:10:51.857 SQL [8464]: pgsql_exec() -- 13:10:51.857 SQL [8464]: About to run query: -- 13:10:51.857 SQL [8464]: INSERT INTO members (email,firstname,lastname,loc,password,phone,username) VALUES ('ses66181+563@gmail.com','Olu','Amey','192.168.1.13','25d55ad283aa400af464c76d713c07ad','','ses66181+563@gmail.com') -- 13:10:51.858 SQL [8464]: Affected rows: ERROR -- 13:10:51.859 FLOG_MAX [8464]: SELECT currval('members_id_seq') -- 13:10:51.859 SQL [8464]: pgsql_query() -- 13:10:51.859 SQL [8464]: About to run query: -- 13:10:51.859 SQL [8464]: SELECT currval('members_id_seq') -- 13:10:51.859 SQL [8464]: Found rows: 1 -- 13:10:51.859 SQL [8464]: pgsql_query() -- 13:10:51.859 SQL [8464]: About to run query: -- 13:10:51.859 SQL [8464]: UPDATE members_pending SET status = 5,verified=now() WHERE id = 18 -- 13:10:51.860 SQL [8464]: Found rows: 0 -- 13:10:51.860 SQL [8464]: Found rows: 0 -- 13:10:51.860 INFO [8464]: /CreateCoreGradeAccount() -- 13:10:51.860 INFO [8464]: RET: added=2020-02-14 13:09:15.586889 -- 13:10:51.860 INFO [8464]: RET: email=ses66181+563@gmail.com -- 13:10:51.860 INFO [8464]: RET: expire=2020-02-16 13:09:15.586889 -- 13:10:51.860 INFO [8464]: RET: firstname=Olu -- 13:10:51.860 INFO [8464]: RET: id=18 -- 13:10:51.860 INFO [8464]: RET: lastname=Amey -- 13:10:51.860 INFO [8464]: RET: loc=192.168.1.13 -- 13:10:51.860 INFO [8464]: RET: member_id=10 -- 13:10:51.860 INFO [8464]: RET: password=25d55ad283aa400af464c76d713c07ad -- 13:10:51.860 INFO [8464]: RET: pending_id=18 -- 13:10:51.860 INFO [8464]: RET: phone= -- 13:10:51.860 INFO [8464]: RET: result=YES I GET TO BACK END -- 13:10:51.860 INFO [8464]: RET: status=prepare to create account -- 13:10:51.860 INFO [8464]: RET: username=ses66181+563@gmail.com -- 13:10:51.860 INFO [8464]: RET: verified=2020-02-14 13:10:45.301373 -- 13:10:51.860 INFO [8464]: RET: verify_link=RS-537486592-1151665920-2136810240 -- 13:10:51.861 INFO [8464]: COREGRADE is stopping... -- 13:10:51.861 DEBUG [8464]: Closing database connection -- 13:10:51.861 SQL [8464]: pgsql_close() -- 13:10:51.818 DEBUG [8464]: Database connection successful -- 13:10:51.818 INFO [8464]: _SERVER found -- 13:10:51.818 INFO [8464]: REMOTE_ADDR = 192.168.1.13 -- 13:10:51.818 INFO [8464]: SERVER_NAME = oameye.works.coregrade.com -- 13:10:51.818 INFO [8464]: QUERY_STRING = /vemail -- 13:10:51.818 INFO [8464]: HTTP_X_FORWARDED_FOR = 66.102.8.100 -- 13:10:51.862 INFO [8464]: COREGRADE is stopping... -- 13:10:51.862 DEBUG [8464]: Closing database connection -- 13:10:51.862 SQL [8464]: pgsql_close() -- 13:10:52.514 INFO [8464]: COREGRADE is starting... -- 13:10:52.515 INFO [8464]: Version from config: 1.0 -- 13:10:52.515 DEBUG [8464]: Connecting to database... -- 13:10:52.515 DEBUG [8464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:10:52.515 SQL [8464]: pgsql_db_connect() -- 13:10:52.519 DEBUG [8464]: Database connection successful -- 13:10:52.519 INFO [8464]: _SERVER found -- 13:10:52.519 INFO [8464]: REMOTE_ADDR = 192.168.1.13 -- 13:10:52.519 INFO [8464]: SERVER_NAME = oameye.works.coregrade.com -- 13:10:52.519 INFO [8464]: HTTP_COOKIE = ci_session=b0m62a2og5g8tjobi2i4t7gsdofic4ne -- 13:10:52.519 INFO [8464]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:10:52.519 INFO [8464]: HTTP_X_FORWARDED_FOR = 66.102.8.97 -- 13:10:52.530 INFO [8464]: COREGRADE is stopping... -- 13:10:52.530 DEBUG [8464]: Closing database connection -- 13:10:52.530 SQL [8464]: pgsql_close() -- 13:10:52.591 INFO [9140]: COREGRADE is starting... -- 13:10:52.591 INFO [9140]: Version from config: 1.0 -- 13:10:52.591 DEBUG [9140]: Connecting to database... -- 13:10:52.591 DEBUG [9140]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:10:52.592 SQL [9140]: pgsql_db_connect() -- 13:10:52.596 DEBUG [9140]: Database connection successful -- 13:10:52.596 INFO [9140]: _SERVER found -- 13:10:52.596 INFO [9140]: REMOTE_ADDR = 192.168.1.13 -- 13:10:52.596 INFO [9140]: SERVER_NAME = oameye.works.coregrade.com -- 13:10:52.596 INFO [9140]: HTTP_COOKIE = ci_session=b0m62a2og5g8tjobi2i4t7gsdofic4ne -- 13:10:52.596 INFO [9140]: QUERY_STRING = /app-assets/data/locales/en.json -- 13:10:52.596 INFO [9140]: HTTP_X_FORWARDED_FOR = 66.102.8.102 -- 13:10:52.608 INFO [9140]: COREGRADE is stopping... -- 13:10:52.608 DEBUG [9140]: Closing database connection -- 13:10:52.608 SQL [9140]: pgsql_close() -- 13:11:59.712 INFO [8463]: COREGRADE is starting... -- 13:11:59.713 INFO [8463]: Version from config: 1.0 -- 13:11:59.713 DEBUG [8463]: Connecting to database... -- 13:11:59.713 DEBUG [8463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:11:59.713 SQL [8463]: pgsql_db_connect() -- 13:11:59.750 INFO [8463]: COREGRADE is starting... -- 13:11:59.750 INFO [8463]: Version from config: 1.0 -- 13:11:59.750 DEBUG [8463]: Connecting to database... -- 13:11:59.750 DEBUG [8463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:11:59.750 SQL [8463]: pgsql_db_connect() -- 13:11:59.754 DEBUG [8463]: Database connection successful -- 13:11:59.754 INFO [8463]: _SERVER found -- 13:11:59.754 INFO [8463]: REMOTE_ADDR = 192.168.1.13 -- 13:11:59.754 INFO [8463]: SERVER_NAME = oameye.works.coregrade.com -- 13:11:59.754 INFO [8463]: HTTP_COOKIE = _ga=GA1.2.684836352.1578775335; ci_session=n3lk3qvr8vrfgddrqpsq3f7egmibb43p -- 13:11:59.754 INFO [8463]: QUERY_STRING = -- 13:11:59.754 INFO [8463]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:11:59.754 INFO [8463]: SystemStatus()09-09-********~************ -- 13:11:59.754 INFO [8463]: long coregrade_api_main(CVars in, CVars &out) -- 13:11:59.754 INFO [8463]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 13:11:59.754 INFO [8463]: account calls -- 13:11:59.754 INFO [8463]: account_calls() -- 13:11:59.754 INFO [8463]: LoginCoreGradeAccount() -- 13:11:59.754 FLOG_MAX [8463]: REQ_STRING(username) -- 13:11:59.754 FLOG_MAX [8463]: REQ_STRING(password) -- 13:11:59.754 FLOG_MAX [8463]: REQ_STRING(sessionid) -- 13:11:59.754 FLOG_MAX [8463]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:11:59.754 SQL [8463]: pgsql_query() -- 13:11:59.754 SQL [8463]: About to run query: -- 13:11:59.754 SQL [8463]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ses66181+563@gmail.com') AND password= md5('12345678') -- 13:11:59.758 SQL [8463]: Found rows: 1 -- 13:11:59.758 FLOG_MAX [8463]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ses66181+563@gmail.com') AND password= md5('12345678')) num_cols=15 -- 13:11:59.758 INFO [8463]: long SessionCheck(long uid, const char *sessionid, int create ) -- 13:11:59.758 SQL [8463]: pgsql_exec() -- 13:11:59.758 SQL [8463]: About to run query: -- 13:11:59.758 SQL [8463]: DELETE FROM members_session WHERE member_id=9 AND updated < (now() - interval '35 minutes') -- 13:11:59.758 SQL [8463]: PQcmdTuples: 0 -- 13:11:59.758 SQL [8463]: Affected rows: 0 -- 13:11:59.758 SQL [8463]: pgsql_exec() -- 13:11:59.759 SQL [8463]: About to run query: -- 13:11:59.759 SQL [8463]: DELETE FROM members_session WHERE member_id=9 -- 13:11:59.759 SQL [8463]: PQcmdTuples: 0 -- 13:11:59.759 SQL [8463]: Affected rows: 0 -- 13:11:59.759 SQL [8463]: pgsql_query() -- 13:11:59.759 SQL [8463]: About to run query: -- 13:11:59.759 SQL [8463]: SELECT * FROM members_session WHERE member_id=9 AND session<>'4B4D378F0712620F90FCF32807936D57' -- 13:11:59.760 SQL [8463]: Found rows: 0 -- 13:11:59.760 SQL [8463]: Found rows: 0 -- 13:11:59.760 FLOG_MAX [8463]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:11:59.760 SQL [8463]: pgsql_query() -- 13:11:59.760 SQL [8463]: About to run query: -- 13:11:59.760 SQL [8463]: SELECT * FROM members_session WHERE member_id=9 AND session='4B4D378F0712620F90FCF32807936D57' -- 13:11:59.760 SQL [8463]: Found rows: 0 -- 13:11:59.760 SQL [8463]: Found rows: 0 -- 13:11:59.760 FLOG_MAX [8463]: insert_db_record() -- 13:11:59.760 SQL [8463]: pgsql_exec() -- 13:11:59.760 SQL [8463]: About to run query: -- 13:11:59.760 SQL [8463]: INSERT INTO members_session (member_id,session) VALUES ('9','4B4D378F0712620F90FCF32807936D57') -- 13:11:59.762 SQL [8463]: PQcmdTuples: 1 -- 13:11:59.762 SQL [8463]: Affected rows: 1 -- 13:11:59.762 FLOG_MAX [8463]: SELECT currval('members_session_id_seq') -- 13:11:59.762 SQL [8463]: pgsql_query() -- 13:11:59.762 SQL [8463]: About to run query: -- 13:11:59.762 SQL [8463]: SELECT currval('members_session_id_seq') -- 13:11:59.762 SQL [8463]: Found rows: 1 -- 13:11:59.762 INFO [8463]: CreateDefaultPage() -- 13:11:59.762 FLOG_MAX [8463]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:11:59.762 SQL [8463]: pgsql_query() -- 13:11:59.762 SQL [8463]: About to run query: -- 13:11:59.762 SQL [8463]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 13:11:59.762 SQL [8463]: Found rows: 1 -- 13:11:59.762 FLOG_MAX [8463]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 13:11:59.762 SQL [8463]: pgsql_query() -- 13:11:59.762 SQL [8463]: About to run query: -- 13:11:59.763 SQL [8463]: SELECT id FROM members_pages WHERE member_id = 9 AND page_mode='DEFAULT' -- 13:11:59.763 SQL [8463]: Found rows: 0 -- 13:11:59.763 SQL [8463]: Found rows: 0 -- 13:11:59.763 FLOG_MAX [8463]: insert_db_record() -- 13:11:59.763 SQL [8463]: pgsql_exec() -- 13:11:59.763 SQL [8463]: About to run query: -- 13:11:59.763 SQL [8463]: INSERT INTO members_pages (member_id,page_key,page_mode,title) VALUES ('9','PG6C50059CFD628415C5167B9E3E27F8A4','DEFAULT','My default page.') -- 13:11:59.764 SQL [8463]: PQcmdTuples: 1 -- 13:11:59.764 SQL [8463]: Affected rows: 1 -- 13:11:59.764 FLOG_MAX [8463]: SELECT currval('members_pages_id_seq') -- 13:11:59.764 SQL [8463]: pgsql_query() -- 13:11:59.764 SQL [8463]: About to run query: -- 13:11:59.764 SQL [8463]: SELECT currval('members_pages_id_seq') -- 13:11:59.764 SQL [8463]: Found rows: 1 -- 13:11:59.764 INFO [8463]: /CreateDefaultPage() -- 13:11:59.764 INFO [8463]: /LoginCoreGradeAccount() -- 13:11:59.764 INFO [8463]: RET: added=2020-02-14 13:10:45.29921 -- 13:11:59.764 INFO [8463]: RET: email=ses66181+563@gmail.com -- 13:11:59.764 INFO [8463]: RET: firstname=Olu -- 13:11:59.764 INFO [8463]: RET: id=9 -- 13:11:59.765 INFO [8463]: RET: last_login= -- 13:11:59.765 INFO [8463]: RET: lastname=Amey -- 13:11:59.765 INFO [8463]: RET: loc=192.168.1.13 -- 13:11:59.765 INFO [8463]: RET: member_id=9 -- 13:11:59.765 INFO [8463]: RET: password=25d55ad283aa400af464c76d713c07ad -- 13:11:59.765 INFO [8463]: RET: phone= -- 13:11:59.765 INFO [8463]: RET: pid= -- 13:11:59.765 INFO [8463]: RET: result=YES I GET TO BACK END -- 13:11:59.765 INFO [8463]: RET: sessionid=4B4D378F0712620F90FCF32807936D57 -- 13:11:59.765 INFO [8463]: RET: status=1 -- 13:11:59.765 INFO [8463]: RET: stauts=OK -- 13:11:59.765 INFO [8463]: RET: username=ses66181+563@gmail.com -- 13:11:59.765 INFO [8463]: RET: verified= -- 13:11:59.766 INFO [8463]: COREGRADE is stopping... -- 13:11:59.766 DEBUG [8463]: Closing database connection -- 13:11:59.766 SQL [8463]: pgsql_close() -- 13:11:59.717 DEBUG [8463]: Database connection successful -- 13:11:59.717 INFO [8463]: _SERVER found -- 13:11:59.717 INFO [8463]: REMOTE_ADDR = 192.168.1.13 -- 13:11:59.717 INFO [8463]: SERVER_NAME = oameye.works.coregrade.com -- 13:11:59.717 INFO [8463]: HTTP_COOKIE = _ga=GA1.2.684836352.1578775335; ci_session=n3lk3qvr8vrfgddrqpsq3f7egmibb43p -- 13:11:59.717 INFO [8463]: QUERY_STRING = /auth -- 13:11:59.717 INFO [8463]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:11:59.767 INFO [8463]: COREGRADE is stopping... -- 13:11:59.767 DEBUG [8463]: Closing database connection -- 13:11:59.767 SQL [8463]: pgsql_close() -- 13:11:59.784 INFO [8463]: COREGRADE is starting... -- 13:11:59.784 INFO [8463]: Version from config: 1.0 -- 13:11:59.784 DEBUG [8463]: Connecting to database... -- 13:11:59.785 DEBUG [8463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:11:59.785 SQL [8463]: pgsql_db_connect() -- 13:11:59.788 DEBUG [8463]: Database connection successful -- 13:11:59.788 INFO [8463]: _SERVER found -- 13:11:59.788 INFO [8463]: REMOTE_ADDR = 192.168.1.13 -- 13:11:59.788 INFO [8463]: SERVER_NAME = oameye.works.coregrade.com -- 13:11:59.788 INFO [8463]: HTTP_COOKIE = _ga=GA1.2.684836352.1578775335; ci_session=n3lk3qvr8vrfgddrqpsq3f7egmibb43p -- 13:11:59.788 INFO [8463]: QUERY_STRING = /member/index -- 13:11:59.788 INFO [8463]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:11:59.828 INFO [8463]: COREGRADE is stopping... -- 13:11:59.828 DEBUG [8463]: Closing database connection -- 13:11:59.828 SQL [8463]: pgsql_close() -- 13:12:00.411 INFO [9136]: COREGRADE is starting... -- 13:12:00.411 INFO [9136]: Version from config: 1.0 -- 13:12:00.411 DEBUG [9136]: Connecting to database... -- 13:12:00.411 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:12:00.411 SQL [9136]: pgsql_db_connect() -- 13:12:00.416 DEBUG [9136]: Database connection successful -- 13:12:00.416 INFO [9136]: _SERVER found -- 13:12:00.416 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 13:12:00.416 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 13:12:00.416 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.684836352.1578775335; ci_session=n3lk3qvr8vrfgddrqpsq3f7egmibb43p -- 13:12:00.416 INFO [9136]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 13:12:00.416 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:12:00.427 INFO [9136]: COREGRADE is stopping... -- 13:12:00.427 DEBUG [9136]: Closing database connection -- 13:12:00.427 SQL [9136]: pgsql_close() -- 13:12:00.974 INFO [9136]: COREGRADE is starting... -- 13:12:00.974 INFO [9136]: Version from config: 1.0 -- 13:12:00.974 DEBUG [9136]: Connecting to database... -- 13:12:00.974 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:12:00.974 SQL [9136]: pgsql_db_connect() -- 13:12:00.979 DEBUG [9136]: Database connection successful -- 13:12:00.979 INFO [9136]: _SERVER found -- 13:12:00.979 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 13:12:00.979 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 13:12:00.979 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.684836352.1578775335; ci_session=n3lk3qvr8vrfgddrqpsq3f7egmibb43p -- 13:12:00.979 INFO [9136]: QUERY_STRING = /app-assets/data/locales/en.json -- 13:12:00.979 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:12:00.990 INFO [9136]: COREGRADE is stopping... -- 13:12:00.990 DEBUG [9136]: Closing database connection -- 13:12:00.990 SQL [9136]: pgsql_close() -- 13:12:02.373 INFO [9136]: COREGRADE is starting... -- 13:12:02.373 INFO [9136]: Version from config: 1.0 -- 13:12:02.373 DEBUG [9136]: Connecting to database... -- 13:12:02.374 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:12:02.374 SQL [9136]: pgsql_db_connect() -- 13:12:02.378 DEBUG [9136]: Database connection successful -- 13:12:02.378 INFO [9136]: _SERVER found -- 13:12:02.378 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 13:12:02.378 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 13:12:02.378 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.684836352.1578775335; ci_session=n3lk3qvr8vrfgddrqpsq3f7egmibb43p -- 13:12:02.378 INFO [9136]: QUERY_STRING = /member/page -- 13:12:02.378 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:12:02.420 INFO [9136]: COREGRADE is stopping... -- 13:12:02.420 DEBUG [9136]: Closing database connection -- 13:12:02.420 SQL [9136]: pgsql_close() -- 13:12:02.555 INFO [9136]: COREGRADE is starting... -- 13:12:02.556 INFO [9136]: Version from config: 1.0 -- 13:12:02.556 DEBUG [9136]: Connecting to database... -- 13:12:02.556 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:12:02.556 SQL [9136]: pgsql_db_connect() -- 13:12:02.560 DEBUG [9136]: Database connection successful -- 13:12:02.560 INFO [9136]: _SERVER found -- 13:12:02.560 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 13:12:02.560 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 13:12:02.560 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.684836352.1578775335; ci_session=n3lk3qvr8vrfgddrqpsq3f7egmibb43p -- 13:12:02.560 INFO [9136]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 13:12:02.560 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:12:02.571 INFO [9136]: COREGRADE is stopping... -- 13:12:02.571 DEBUG [9136]: Closing database connection -- 13:12:02.571 SQL [9136]: pgsql_close() -- 13:12:02.738 INFO [9136]: COREGRADE is starting... -- 13:12:02.738 INFO [9136]: Version from config: 1.0 -- 13:12:02.738 DEBUG [9136]: Connecting to database... -- 13:12:02.738 DEBUG [9136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:12:02.738 SQL [9136]: pgsql_db_connect() -- 13:12:02.742 DEBUG [9136]: Database connection successful -- 13:12:02.742 INFO [9136]: _SERVER found -- 13:12:02.742 INFO [9136]: REMOTE_ADDR = 192.168.1.13 -- 13:12:02.742 INFO [9136]: SERVER_NAME = oameye.works.coregrade.com -- 13:12:02.742 INFO [9136]: HTTP_COOKIE = _ga=GA1.2.684836352.1578775335; ci_session=n3lk3qvr8vrfgddrqpsq3f7egmibb43p -- 13:12:02.742 INFO [9136]: QUERY_STRING = /app-assets/data/locales/en.json -- 13:12:02.742 INFO [9136]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:12:02.753 INFO [9136]: COREGRADE is stopping... -- 13:12:02.753 DEBUG [9136]: Closing database connection -- 13:12:02.753 SQL [9136]: pgsql_close() -- 13:12:10.680 INFO [8461]: COREGRADE is starting... -- 13:12:10.680 INFO [8461]: Version from config: 1.0 -- 13:12:10.680 DEBUG [8461]: Connecting to database... -- 13:12:10.680 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:12:10.680 SQL [8461]: pgsql_db_connect() -- 13:12:10.684 DEBUG [8461]: Database connection successful -- 13:12:10.684 INFO [8461]: _SERVER found -- 13:12:10.684 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 13:12:10.684 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 13:12:10.684 INFO [8461]: HTTP_COOKIE = _ga=GA1.2.684836352.1578775335; ci_session=n3lk3qvr8vrfgddrqpsq3f7egmibb43p -- 13:12:10.684 INFO [8461]: QUERY_STRING = /member/configure -- 13:12:10.684 INFO [8461]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:12:10.726 INFO [8461]: COREGRADE is stopping... -- 13:12:10.726 DEBUG [8461]: Closing database connection -- 13:12:10.726 SQL [8461]: pgsql_close() -- 13:12:10.861 INFO [8461]: COREGRADE is starting... -- 13:12:10.861 INFO [8461]: Version from config: 1.0 -- 13:12:10.862 DEBUG [8461]: Connecting to database... -- 13:12:10.862 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:12:10.862 SQL [8461]: pgsql_db_connect() -- 13:12:10.866 DEBUG [8461]: Database connection successful -- 13:12:10.866 INFO [8461]: _SERVER found -- 13:12:10.866 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 13:12:10.866 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 13:12:10.866 INFO [8461]: HTTP_COOKIE = _ga=GA1.2.684836352.1578775335; ci_session=n3lk3qvr8vrfgddrqpsq3f7egmibb43p -- 13:12:10.866 INFO [8461]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 13:12:10.866 INFO [8461]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:12:10.877 INFO [8461]: COREGRADE is stopping... -- 13:12:10.877 DEBUG [8461]: Closing database connection -- 13:12:10.877 SQL [8461]: pgsql_close() -- 13:12:11.002 INFO [8461]: COREGRADE is starting... -- 13:12:11.002 INFO [8461]: Version from config: 1.0 -- 13:12:11.002 DEBUG [8461]: Connecting to database... -- 13:12:11.002 DEBUG [8461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:12:11.002 SQL [8461]: pgsql_db_connect() -- 13:12:11.006 DEBUG [8461]: Database connection successful -- 13:12:11.006 INFO [8461]: _SERVER found -- 13:12:11.006 INFO [8461]: REMOTE_ADDR = 192.168.1.13 -- 13:12:11.006 INFO [8461]: SERVER_NAME = oameye.works.coregrade.com -- 13:12:11.006 INFO [8461]: HTTP_COOKIE = _ga=GA1.2.684836352.1578775335; ci_session=n3lk3qvr8vrfgddrqpsq3f7egmibb43p -- 13:12:11.006 INFO [8461]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 13:12:11.006 INFO [8461]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:12:11.017 INFO [8461]: COREGRADE is stopping... -- 13:12:11.018 DEBUG [8461]: Closing database connection -- 13:12:11.018 SQL [8461]: pgsql_close() -- 13:12:11.127 INFO [9137]: COREGRADE is starting... -- 13:12:11.127 INFO [9137]: Version from config: 1.0 -- 13:12:11.127 DEBUG [9137]: Connecting to database... -- 13:12:11.127 DEBUG [9137]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:12:11.127 SQL [9137]: pgsql_db_connect() -- 13:12:11.131 DEBUG [9137]: Database connection successful -- 13:12:11.131 INFO [9137]: _SERVER found -- 13:12:11.131 INFO [9137]: REMOTE_ADDR = 192.168.1.13 -- 13:12:11.131 INFO [9137]: SERVER_NAME = oameye.works.coregrade.com -- 13:12:11.131 INFO [9137]: HTTP_COOKIE = _ga=GA1.2.684836352.1578775335; ci_session=n3lk3qvr8vrfgddrqpsq3f7egmibb43p -- 13:12:11.131 INFO [9137]: QUERY_STRING = /app-assets/data/locales/en.json -- 13:12:11.131 INFO [9137]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:12:11.143 INFO [9137]: COREGRADE is stopping... -- 13:12:11.143 DEBUG [9137]: Closing database connection -- 13:12:11.143 SQL [9137]: pgsql_close() -- 14:10:19.338 INFO [21334]: COREGRADE is starting... -- 14:10:19.339 INFO [21334]: Version from config: 1.0 -- 14:10:19.339 DEBUG [21334]: Connecting to database... -- 14:10:19.339 DEBUG [21334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:19.339 SQL [21334]: pgsql_db_connect() -- 14:10:19.343 DEBUG [21334]: Database connection successful -- 14:10:19.344 INFO [21334]: _SERVER found -- 14:10:19.344 INFO [21334]: REMOTE_ADDR = 192.168.1.13 -- 14:10:19.344 INFO [21334]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:10:19.344 INFO [21334]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586 -- 14:10:19.344 INFO [21334]: QUERY_STRING = /auth -- 14:10:19.344 INFO [21334]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:10:19.422 INFO [21334]: COREGRADE is starting... -- 14:10:19.423 INFO [21334]: Version from config: 1.0 -- 14:10:19.423 DEBUG [21334]: Connecting to database... -- 14:10:19.423 DEBUG [21334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:19.423 SQL [21334]: pgsql_db_connect() -- 14:10:19.426 DEBUG [21334]: Database connection successful -- 14:10:19.426 INFO [21334]: _SERVER found -- 14:10:19.426 INFO [21334]: REMOTE_ADDR = 192.168.1.13 -- 14:10:19.426 INFO [21334]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:10:19.426 INFO [21334]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=idp11au436dkdh1pilaqihs99atjj0q6 -- 14:10:19.426 INFO [21334]: QUERY_STRING = /member/index -- 14:10:19.426 INFO [21334]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:10:19.468 INFO [21334]: COREGRADE is stopping... -- 14:10:19.468 DEBUG [21334]: Closing database connection -- 14:10:19.468 SQL [21334]: pgsql_close() -- 14:10:19.973 INFO [21334]: COREGRADE is starting... -- 14:10:19.973 INFO [21334]: Version from config: 1.0 -- 14:10:19.973 DEBUG [21334]: Connecting to database... -- 14:10:19.973 DEBUG [21334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:19.973 SQL [21334]: pgsql_db_connect() -- 14:10:19.979 INFO [21335]: COREGRADE is starting... -- 14:10:19.980 INFO [21335]: Version from config: 1.0 -- 14:10:19.980 DEBUG [21335]: Connecting to database... -- 14:10:19.980 DEBUG [21335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:19.980 SQL [21335]: pgsql_db_connect() -- 14:10:19.978 DEBUG [21334]: Database connection successful -- 14:10:19.978 INFO [21334]: _SERVER found -- 14:10:19.978 INFO [21334]: REMOTE_ADDR = 192.168.1.13 -- 14:10:19.978 INFO [21334]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:10:19.978 INFO [21334]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=idp11au436dkdh1pilaqihs99atjj0q6 -- 14:10:19.978 INFO [21334]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:10:19.978 INFO [21334]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:10:19.989 INFO [21334]: COREGRADE is stopping... -- 14:10:19.989 DEBUG [21334]: Closing database connection -- 14:10:19.989 SQL [21334]: pgsql_close() -- 14:10:19.984 DEBUG [21335]: Database connection successful -- 14:10:19.984 INFO [21335]: _SERVER found -- 14:10:19.984 INFO [21335]: REMOTE_ADDR = 192.168.1.13 -- 14:10:19.984 INFO [21335]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:10:19.984 INFO [21335]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=idp11au436dkdh1pilaqihs99atjj0q6 -- 14:10:19.984 INFO [21335]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:10:19.984 INFO [21335]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:10:19.998 INFO [21335]: COREGRADE is stopping... -- 14:10:19.998 DEBUG [21335]: Closing database connection -- 14:10:19.998 SQL [21335]: pgsql_close() -- 14:10:24.930 INFO [21335]: COREGRADE is starting... -- 14:10:24.930 INFO [21335]: Version from config: 1.0 -- 14:10:24.930 DEBUG [21335]: Connecting to database... -- 14:10:24.930 DEBUG [21335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:24.930 SQL [21335]: pgsql_db_connect() -- 14:10:24.934 DEBUG [21335]: Database connection successful -- 14:10:24.934 INFO [21335]: _SERVER found -- 14:10:24.934 INFO [21335]: REMOTE_ADDR = 192.168.1.13 -- 14:10:24.934 INFO [21335]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:10:24.934 INFO [21335]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=idp11au436dkdh1pilaqihs99atjj0q6 -- 14:10:24.934 INFO [21335]: QUERY_STRING = /member/page -- 14:10:24.934 INFO [21335]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:10:24.983 INFO [21335]: COREGRADE is stopping... -- 14:10:24.983 DEBUG [21335]: Closing database connection -- 14:10:24.983 SQL [21335]: pgsql_close() -- 14:10:25.137 INFO [21335]: COREGRADE is starting... -- 14:10:25.138 INFO [21335]: Version from config: 1.0 -- 14:10:25.138 DEBUG [21335]: Connecting to database... -- 14:10:25.138 DEBUG [21335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:25.138 SQL [21335]: pgsql_db_connect() -- 14:10:25.142 DEBUG [21335]: Database connection successful -- 14:10:25.142 INFO [21335]: _SERVER found -- 14:10:25.142 INFO [21335]: REMOTE_ADDR = 192.168.1.13 -- 14:10:25.142 INFO [21335]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:10:25.142 INFO [21335]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=idp11au436dkdh1pilaqihs99atjj0q6 -- 14:10:25.142 INFO [21335]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:10:25.142 INFO [21335]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:10:25.153 INFO [21335]: COREGRADE is stopping... -- 14:10:25.153 DEBUG [21335]: Closing database connection -- 14:10:25.153 SQL [21335]: pgsql_close() -- 14:10:25.225 INFO [21335]: COREGRADE is starting... -- 14:10:25.225 INFO [21335]: Version from config: 1.0 -- 14:10:25.225 DEBUG [21335]: Connecting to database... -- 14:10:25.225 DEBUG [21335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:25.225 SQL [21335]: pgsql_db_connect() -- 14:10:25.229 DEBUG [21335]: Database connection successful -- 14:10:25.229 INFO [21335]: _SERVER found -- 14:10:25.229 INFO [21335]: REMOTE_ADDR = 192.168.1.13 -- 14:10:25.229 INFO [21335]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:10:25.229 INFO [21335]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=idp11au436dkdh1pilaqihs99atjj0q6 -- 14:10:25.229 INFO [21335]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:10:25.229 INFO [21335]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:10:25.240 INFO [21335]: COREGRADE is stopping... -- 14:10:25.240 DEBUG [21335]: Closing database connection -- 14:10:25.240 SQL [21335]: pgsql_close() -- 14:10:28.691 INFO [21335]: COREGRADE is starting... -- 14:10:28.691 INFO [21335]: Version from config: 1.0 -- 14:10:28.691 DEBUG [21335]: Connecting to database... -- 14:10:28.691 DEBUG [21335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:28.691 SQL [21335]: pgsql_db_connect() -- 14:10:28.696 DEBUG [21335]: Database connection successful -- 14:10:28.696 INFO [21335]: _SERVER found -- 14:10:28.696 INFO [21335]: REMOTE_ADDR = 192.168.1.13 -- 14:10:28.696 INFO [21335]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:10:28.696 INFO [21335]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=idp11au436dkdh1pilaqihs99atjj0q6 -- 14:10:28.696 INFO [21335]: QUERY_STRING = /member/viewCardAddAction -- 14:10:28.696 INFO [21335]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:10:28.726 INFO [21335]: COREGRADE is stopping... -- 14:10:28.726 DEBUG [21335]: Closing database connection -- 14:10:28.726 SQL [21335]: pgsql_close() -- 14:11:49.214 INFO [21336]: COREGRADE is starting... -- 14:11:49.214 INFO [21336]: Version from config: 1.0 -- 14:11:49.214 DEBUG [21336]: Connecting to database... -- 14:11:49.214 DEBUG [21336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:11:49.214 SQL [21336]: pgsql_db_connect() -- 14:11:49.218 DEBUG [21336]: Database connection successful -- 14:11:49.218 INFO [21336]: _SERVER found -- 14:11:49.218 INFO [21336]: REMOTE_ADDR = 192.168.1.13 -- 14:11:49.218 INFO [21336]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:11:49.218 INFO [21336]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=idp11au436dkdh1pilaqihs99atjj0q6 -- 14:11:49.218 INFO [21336]: QUERY_STRING = /auth -- 14:11:49.218 INFO [21336]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:11:49.258 INFO [21336]: COREGRADE is stopping... -- 14:11:49.258 DEBUG [21336]: Closing database connection -- 14:11:49.258 SQL [21336]: pgsql_close() -- 14:11:49.530 INFO [21336]: COREGRADE is starting... -- 14:11:49.530 INFO [21336]: Version from config: 1.0 -- 14:11:49.530 DEBUG [21336]: Connecting to database... -- 14:11:49.530 DEBUG [21336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:11:49.530 SQL [21336]: pgsql_db_connect() -- 14:11:49.534 DEBUG [21336]: Database connection successful -- 14:11:49.534 INFO [21336]: _SERVER found -- 14:11:49.534 INFO [21336]: REMOTE_ADDR = 192.168.1.13 -- 14:11:49.534 INFO [21336]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:11:49.534 INFO [21336]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=idp11au436dkdh1pilaqihs99atjj0q6 -- 14:11:49.534 INFO [21336]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:11:49.534 INFO [21336]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:11:49.547 INFO [21336]: COREGRADE is stopping... -- 14:11:49.547 DEBUG [21336]: Closing database connection -- 14:11:49.547 SQL [21336]: pgsql_close() -- 14:11:49.549 INFO [21338]: COREGRADE is starting... -- 14:11:49.550 INFO [21338]: Version from config: 1.0 -- 14:11:49.550 DEBUG [21338]: Connecting to database... -- 14:11:49.550 DEBUG [21338]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:11:49.550 SQL [21338]: pgsql_db_connect() -- 14:11:49.553 DEBUG [21338]: Database connection successful -- 14:11:49.553 INFO [21338]: _SERVER found -- 14:11:49.553 INFO [21338]: REMOTE_ADDR = 192.168.1.13 -- 14:11:49.553 INFO [21338]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:11:49.553 INFO [21338]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=idp11au436dkdh1pilaqihs99atjj0q6 -- 14:11:49.553 INFO [21338]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:11:49.553 INFO [21338]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:11:49.568 INFO [21338]: COREGRADE is stopping... -- 14:11:49.568 DEBUG [21338]: Closing database connection -- 14:11:49.568 SQL [21338]: pgsql_close() -- 14:11:51.430 INFO [21338]: COREGRADE is starting... -- 14:11:51.431 INFO [21338]: Version from config: 1.0 -- 14:11:51.431 DEBUG [21338]: Connecting to database... -- 14:11:51.431 DEBUG [21338]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:11:51.431 SQL [21338]: pgsql_db_connect() -- 14:11:51.435 DEBUG [21338]: Database connection successful -- 14:11:51.435 INFO [21338]: _SERVER found -- 14:11:51.435 INFO [21338]: REMOTE_ADDR = 192.168.1.13 -- 14:11:51.435 INFO [21338]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:11:51.435 INFO [21338]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=idp11au436dkdh1pilaqihs99atjj0q6 -- 14:11:51.435 INFO [21338]: QUERY_STRING = /auth -- 14:11:51.435 INFO [21338]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:11:51.495 INFO [21338]: COREGRADE is starting... -- 14:11:51.495 INFO [21338]: Version from config: 1.0 -- 14:11:51.495 DEBUG [21338]: Connecting to database... -- 14:11:51.495 DEBUG [21338]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:11:51.495 SQL [21338]: pgsql_db_connect() -- 14:11:51.499 DEBUG [21338]: Database connection successful -- 14:11:51.499 INFO [21338]: _SERVER found -- 14:11:51.499 INFO [21338]: REMOTE_ADDR = 192.168.1.13 -- 14:11:51.499 INFO [21338]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:11:51.499 INFO [21338]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=idp11au436dkdh1pilaqihs99atjj0q6 -- 14:11:51.499 INFO [21338]: QUERY_STRING = /member/index -- 14:11:51.499 INFO [21338]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:11:51.540 INFO [21338]: COREGRADE is stopping... -- 14:11:51.540 DEBUG [21338]: Closing database connection -- 14:11:51.540 SQL [21338]: pgsql_close() -- 14:11:51.741 INFO [21338]: COREGRADE is starting... -- 14:11:51.741 INFO [21338]: Version from config: 1.0 -- 14:11:51.741 DEBUG [21338]: Connecting to database... -- 14:11:51.741 DEBUG [21338]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:11:51.741 SQL [21338]: pgsql_db_connect() -- 14:11:51.745 DEBUG [21338]: Database connection successful -- 14:11:51.745 INFO [21338]: _SERVER found -- 14:11:51.745 INFO [21338]: REMOTE_ADDR = 192.168.1.13 -- 14:11:51.745 INFO [21338]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:11:51.745 INFO [21338]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=idp11au436dkdh1pilaqihs99atjj0q6 -- 14:11:51.745 INFO [21338]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:11:51.745 INFO [21338]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:11:51.756 INFO [21338]: COREGRADE is stopping... -- 14:11:51.756 DEBUG [21338]: Closing database connection -- 14:11:51.756 SQL [21338]: pgsql_close() -- 14:11:51.775 INFO [21338]: COREGRADE is starting... -- 14:11:51.775 INFO [21338]: Version from config: 1.0 -- 14:11:51.775 DEBUG [21338]: Connecting to database... -- 14:11:51.775 DEBUG [21338]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:11:51.775 SQL [21338]: pgsql_db_connect() -- 14:11:51.779 DEBUG [21338]: Database connection successful -- 14:11:51.779 INFO [21338]: _SERVER found -- 14:11:51.779 INFO [21338]: REMOTE_ADDR = 192.168.1.13 -- 14:11:51.779 INFO [21338]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:11:51.779 INFO [21338]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=idp11au436dkdh1pilaqihs99atjj0q6 -- 14:11:51.779 INFO [21338]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:11:51.779 INFO [21338]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:11:51.790 INFO [21338]: COREGRADE is stopping... -- 14:11:51.790 DEBUG [21338]: Closing database connection -- 14:11:51.790 SQL [21338]: pgsql_close() -- 14:11:52.824 INFO [21338]: COREGRADE is starting... -- 14:11:52.825 INFO [21338]: Version from config: 1.0 -- 14:11:52.825 DEBUG [21338]: Connecting to database... -- 14:11:52.825 DEBUG [21338]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:11:52.825 SQL [21338]: pgsql_db_connect() -- 14:11:52.829 DEBUG [21338]: Database connection successful -- 14:11:52.829 INFO [21338]: _SERVER found -- 14:11:52.829 INFO [21338]: REMOTE_ADDR = 192.168.1.13 -- 14:11:52.829 INFO [21338]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:11:52.829 INFO [21338]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=idp11au436dkdh1pilaqihs99atjj0q6 -- 14:11:52.829 INFO [21338]: QUERY_STRING = /member/page -- 14:11:52.829 INFO [21338]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:11:52.870 INFO [21338]: COREGRADE is stopping... -- 14:11:52.870 DEBUG [21338]: Closing database connection -- 14:11:52.870 SQL [21338]: pgsql_close() -- 14:11:53.072 INFO [21338]: COREGRADE is starting... -- 14:11:53.072 INFO [21338]: Version from config: 1.0 -- 14:11:53.072 DEBUG [21338]: Connecting to database... -- 14:11:53.072 DEBUG [21338]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:11:53.072 SQL [21338]: pgsql_db_connect() -- 14:11:53.076 DEBUG [21338]: Database connection successful -- 14:11:53.076 INFO [21338]: _SERVER found -- 14:11:53.076 INFO [21338]: REMOTE_ADDR = 192.168.1.13 -- 14:11:53.076 INFO [21338]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:11:53.076 INFO [21338]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=idp11au436dkdh1pilaqihs99atjj0q6 -- 14:11:53.077 INFO [21338]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:11:53.077 INFO [21338]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:11:53.088 INFO [21338]: COREGRADE is stopping... -- 14:11:53.088 DEBUG [21338]: Closing database connection -- 14:11:53.088 SQL [21338]: pgsql_close() -- 14:12:36.790 INFO [21898]: COREGRADE is starting... -- 14:12:36.791 INFO [21898]: Version from config: 1.0 -- 14:12:36.791 DEBUG [21898]: Connecting to database... -- 14:12:36.791 DEBUG [21898]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:12:36.791 SQL [21898]: pgsql_db_connect() -- 14:12:36.795 DEBUG [21898]: Database connection successful -- 14:12:36.795 INFO [21898]: _SERVER found -- 14:12:36.795 INFO [21898]: REMOTE_ADDR = 192.168.1.13 -- 14:12:36.795 INFO [21898]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:12:36.795 INFO [21898]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=idp11au436dkdh1pilaqihs99atjj0q6 -- 14:12:36.795 INFO [21898]: QUERY_STRING = /member/viewCardAddAction -- 14:12:36.795 INFO [21898]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:12:36.834 INFO [21898]: COREGRADE is stopping... -- 14:12:36.834 DEBUG [21898]: Closing database connection -- 14:12:36.834 SQL [21898]: pgsql_close() -- 14:13:24.976 INFO [21901]: COREGRADE is starting... -- 14:13:24.976 INFO [21901]: Version from config: 1.0 -- 14:13:24.976 DEBUG [21901]: Connecting to database... -- 14:13:24.976 DEBUG [21901]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:13:24.976 SQL [21901]: pgsql_db_connect() -- 14:13:24.980 DEBUG [21901]: Database connection successful -- 14:13:24.980 INFO [21901]: _SERVER found -- 14:13:24.980 INFO [21901]: REMOTE_ADDR = 192.168.1.13 -- 14:13:24.980 INFO [21901]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:13:24.980 INFO [21901]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=idp11au436dkdh1pilaqihs99atjj0q6 -- 14:13:24.980 INFO [21901]: QUERY_STRING = /member/viewCardAddAction -- 14:13:24.980 INFO [21901]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:13:25.018 INFO [21901]: COREGRADE is stopping... -- 14:13:25.018 DEBUG [21901]: Closing database connection -- 14:13:25.018 SQL [21901]: pgsql_close() -- 14:13:26.294 INFO [21901]: COREGRADE is starting... -- 14:13:26.294 INFO [21901]: Version from config: 1.0 -- 14:13:26.294 DEBUG [21901]: Connecting to database... -- 14:13:26.294 DEBUG [21901]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:13:26.294 SQL [21901]: pgsql_db_connect() -- 14:13:26.298 DEBUG [21901]: Database connection successful -- 14:13:26.298 INFO [21901]: _SERVER found -- 14:13:26.298 INFO [21901]: REMOTE_ADDR = 192.168.1.13 -- 14:13:26.298 INFO [21901]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:13:26.298 INFO [21901]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=idp11au436dkdh1pilaqihs99atjj0q6 -- 14:13:26.298 INFO [21901]: QUERY_STRING = /member/viewCardAddAction -- 14:13:26.298 INFO [21901]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:13:26.332 INFO [21901]: COREGRADE is stopping... -- 14:13:26.332 DEBUG [21901]: Closing database connection -- 14:13:26.332 SQL [21901]: pgsql_close() -- 14:13:27.633 INFO [21901]: COREGRADE is starting... -- 14:13:27.633 INFO [21901]: Version from config: 1.0 -- 14:13:27.633 DEBUG [21901]: Connecting to database... -- 14:13:27.633 DEBUG [21901]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:13:27.633 SQL [21901]: pgsql_db_connect() -- 14:13:27.638 DEBUG [21901]: Database connection successful -- 14:13:27.638 INFO [21901]: _SERVER found -- 14:13:27.638 INFO [21901]: REMOTE_ADDR = 192.168.1.13 -- 14:13:27.638 INFO [21901]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:13:27.638 INFO [21901]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=idp11au436dkdh1pilaqihs99atjj0q6 -- 14:13:27.638 INFO [21901]: QUERY_STRING = /member/viewCardAddAction -- 14:13:27.638 INFO [21901]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:13:27.669 INFO [21901]: COREGRADE is stopping... -- 14:13:27.669 DEBUG [21901]: Closing database connection -- 14:13:27.669 SQL [21901]: pgsql_close() -- 15:52:11.177 INFO [21902]: COREGRADE is starting... -- 15:52:11.178 INFO [21902]: Version from config: 1.0 -- 15:52:11.178 DEBUG [21902]: Connecting to database... -- 15:52:11.178 DEBUG [21902]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:52:11.178 SQL [21902]: pgsql_db_connect() -- 15:52:11.185 DEBUG [21902]: Database connection successful -- 15:52:11.185 INFO [21902]: _SERVER found -- 15:52:11.185 INFO [21902]: REMOTE_ADDR = 192.168.1.13 -- 15:52:11.185 INFO [21902]: SERVER_NAME = oameye.works.coregrade.com -- 15:52:11.185 INFO [21902]: HTTP_COOKIE = _ga=GA1.2.684836352.1578775335 -- 15:52:11.185 INFO [21902]: QUERY_STRING = /auth -- 15:52:11.185 INFO [21902]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:52:11.230 INFO [21902]: COREGRADE is stopping... -- 15:52:11.230 DEBUG [21902]: Closing database connection -- 15:52:11.230 SQL [21902]: pgsql_close() -- 15:52:11.661 INFO [21334]: COREGRADE is starting... -- 15:52:11.661 INFO [21334]: Version from config: 1.0 -- 15:52:11.661 DEBUG [21334]: Connecting to database... -- 15:52:11.661 DEBUG [21334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:52:11.661 SQL [21334]: pgsql_db_connect() -- 15:52:11.666 DEBUG [21334]: Database connection successful -- 15:52:11.666 INFO [21334]: _SERVER found -- 15:52:11.666 INFO [21334]: REMOTE_ADDR = 192.168.1.13 -- 15:52:11.666 INFO [21334]: SERVER_NAME = oameye.works.coregrade.com -- 15:52:11.666 INFO [21334]: HTTP_COOKIE = _ga=GA1.2.684836352.1578775335; ci_session=egighutvckk3frc3oj86v6b90ull33gg -- 15:52:11.666 INFO [21334]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:52:11.666 INFO [21334]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:52:11.678 INFO [21334]: COREGRADE is stopping... -- 15:52:11.678 DEBUG [21334]: Closing database connection -- 15:52:11.678 SQL [21334]: pgsql_close() -- 15:52:11.766 INFO [21336]: COREGRADE is starting... -- 15:52:11.766 INFO [21336]: Version from config: 1.0 -- 15:52:11.766 DEBUG [21336]: Connecting to database... -- 15:52:11.766 DEBUG [21336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:52:11.766 SQL [21336]: pgsql_db_connect() -- 15:52:11.770 INFO [21334]: COREGRADE is starting... -- 15:52:11.770 INFO [21334]: Version from config: 1.0 -- 15:52:11.770 DEBUG [21334]: Connecting to database... -- 15:52:11.771 DEBUG [21334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:52:11.771 SQL [21334]: pgsql_db_connect() -- 15:52:11.770 DEBUG [21336]: Database connection successful -- 15:52:11.770 INFO [21336]: _SERVER found -- 15:52:11.770 INFO [21336]: REMOTE_ADDR = 192.168.1.13 -- 15:52:11.770 INFO [21336]: SERVER_NAME = oameye.works.coregrade.com -- 15:52:11.770 INFO [21336]: HTTP_COOKIE = _ga=GA1.2.684836352.1578775335; ci_session=egighutvckk3frc3oj86v6b90ull33gg -- 15:52:11.770 INFO [21336]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 15:52:11.770 INFO [21336]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:52:11.783 INFO [21336]: COREGRADE is stopping... -- 15:52:11.783 DEBUG [21336]: Closing database connection -- 15:52:11.783 SQL [21336]: pgsql_close() -- 15:52:11.775 DEBUG [21334]: Database connection successful -- 15:52:11.775 INFO [21334]: _SERVER found -- 15:52:11.775 INFO [21334]: REMOTE_ADDR = 192.168.1.13 -- 15:52:11.775 INFO [21334]: SERVER_NAME = oameye.works.coregrade.com -- 15:52:11.775 INFO [21334]: HTTP_COOKIE = _ga=GA1.2.684836352.1578775335; ci_session=egighutvckk3frc3oj86v6b90ull33gg -- 15:52:11.775 INFO [21334]: QUERY_STRING = /app-assets/data/locales/en.json -- 15:52:11.775 INFO [21334]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:52:11.786 INFO [21334]: COREGRADE is stopping... -- 15:52:11.786 DEBUG [21334]: Closing database connection -- 15:52:11.786 SQL [21334]: pgsql_close() -- 17:09:01.136 INFO [21901]: COREGRADE is starting... -- 17:09:01.137 INFO [21901]: Version from config: 1.0 -- 17:09:01.137 DEBUG [21901]: Connecting to database... -- 17:09:01.137 DEBUG [21901]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:09:01.137 SQL [21901]: pgsql_db_connect() -- 17:09:01.142 DEBUG [21901]: Database connection successful -- 17:09:01.142 INFO [21901]: _SERVER found -- 17:09:01.142 INFO [21901]: REMOTE_ADDR = 192.168.1.13 -- 17:09:01.142 INFO [21901]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:09:01.142 INFO [21901]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586 -- 17:09:01.142 INFO [21901]: QUERY_STRING = /auth -- 17:09:01.142 INFO [21901]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:09:01.180 INFO [21901]: COREGRADE is stopping... -- 17:09:01.180 DEBUG [21901]: Closing database connection -- 17:09:01.180 SQL [21901]: pgsql_close() -- 17:09:08.142 INFO [22352]: COREGRADE is starting... -- 17:09:08.142 INFO [22352]: Version from config: 1.0 -- 17:09:08.142 DEBUG [22352]: Connecting to database... -- 17:09:08.142 DEBUG [22352]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:09:08.142 SQL [22352]: pgsql_db_connect() -- 17:09:08.148 INFO [22353]: COREGRADE is starting... -- 17:09:08.148 INFO [22353]: Version from config: 1.0 -- 17:09:08.148 DEBUG [22353]: Connecting to database... -- 17:09:08.148 DEBUG [22353]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:09:08.148 SQL [22353]: pgsql_db_connect() -- 17:09:08.155 INFO [22354]: COREGRADE is starting... -- 17:09:08.155 INFO [22354]: Version from config: 1.0 -- 17:09:08.155 DEBUG [22354]: Connecting to database... -- 17:09:08.156 DEBUG [22354]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:09:08.156 SQL [22354]: pgsql_db_connect() -- 17:09:08.158 DEBUG [22353]: Database connection successful -- 17:09:08.158 INFO [22353]: _SERVER found -- 17:09:08.158 INFO [22353]: REMOTE_ADDR = 192.168.1.13 -- 17:09:08.158 INFO [22353]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:09:08.158 INFO [22353]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ci4r4sagbgr4b4d1j2lho1nepcsf0gb0 -- 17:09:08.158 INFO [22353]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:09:08.158 INFO [22353]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:09:08.178 INFO [22353]: COREGRADE is stopping... -- 17:09:08.178 DEBUG [22353]: Closing database connection -- 17:09:08.178 SQL [22353]: pgsql_close() -- 17:09:08.164 DEBUG [22354]: Database connection successful -- 17:09:08.164 INFO [22354]: _SERVER found -- 17:09:08.164 INFO [22354]: REMOTE_ADDR = 192.168.1.13 -- 17:09:08.164 INFO [22354]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:09:08.164 INFO [22354]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ci4r4sagbgr4b4d1j2lho1nepcsf0gb0 -- 17:09:08.164 INFO [22354]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:09:08.164 INFO [22354]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:09:08.182 INFO [22354]: COREGRADE is stopping... -- 17:09:08.182 DEBUG [22354]: Closing database connection -- 17:09:08.182 SQL [22354]: pgsql_close() -- 17:09:08.148 DEBUG [22352]: Database connection successful -- 17:09:08.148 INFO [22352]: _SERVER found -- 17:09:08.148 INFO [22352]: REMOTE_ADDR = 192.168.1.13 -- 17:09:08.148 INFO [22352]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:09:08.148 INFO [22352]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586 -- 17:09:08.148 INFO [22352]: QUERY_STRING = /auth -- 17:09:08.148 INFO [22352]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:09:08.197 INFO [22352]: COREGRADE is stopping... -- 17:09:08.198 DEBUG [22352]: Closing database connection -- 17:09:08.198 SQL [22352]: pgsql_close() -- 17:09:08.708 INFO [22352]: COREGRADE is starting... -- 17:09:08.709 INFO [22352]: Version from config: 1.0 -- 17:09:08.709 DEBUG [22352]: Connecting to database... -- 17:09:08.709 DEBUG [22352]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:09:08.709 SQL [22352]: pgsql_db_connect() -- 17:09:08.714 INFO [22354]: COREGRADE is starting... -- 17:09:08.714 INFO [22354]: Version from config: 1.0 -- 17:09:08.714 DEBUG [22354]: Connecting to database... -- 17:09:08.714 DEBUG [22354]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:09:08.714 SQL [22354]: pgsql_db_connect() -- 17:09:08.713 DEBUG [22352]: Database connection successful -- 17:09:08.713 INFO [22352]: _SERVER found -- 17:09:08.713 INFO [22352]: REMOTE_ADDR = 192.168.1.13 -- 17:09:08.713 INFO [22352]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:09:08.713 INFO [22352]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=5hkckq3u58djffnoubcce5ifp1nv1nhc -- 17:09:08.713 INFO [22352]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:09:08.713 INFO [22352]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:09:08.725 INFO [22352]: COREGRADE is stopping... -- 17:09:08.725 DEBUG [22352]: Closing database connection -- 17:09:08.725 SQL [22352]: pgsql_close() -- 17:09:08.718 DEBUG [22354]: Database connection successful -- 17:09:08.718 INFO [22354]: _SERVER found -- 17:09:08.718 INFO [22354]: REMOTE_ADDR = 192.168.1.13 -- 17:09:08.718 INFO [22354]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:09:08.718 INFO [22354]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=5hkckq3u58djffnoubcce5ifp1nv1nhc -- 17:09:08.718 INFO [22354]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:09:08.718 INFO [22354]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:09:08.730 INFO [22354]: COREGRADE is stopping... -- 17:09:08.730 DEBUG [22354]: Closing database connection -- 17:09:08.730 SQL [22354]: pgsql_close() -- 18:09:26.664 INFO [21337]: COREGRADE is starting... -- 18:09:26.666 INFO [21337]: Version from config: 1.0 -- 18:09:26.666 DEBUG [21337]: Connecting to database... -- 18:09:26.666 DEBUG [21337]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:09:26.666 SQL [21337]: pgsql_db_connect() -- 18:09:26.671 DEBUG [21337]: Database connection successful -- 18:09:26.671 INFO [21337]: _SERVER found -- 18:09:26.671 INFO [21337]: REMOTE_ADDR = 192.168.1.13 -- 18:09:26.671 INFO [21337]: SERVER_NAME = oameye.works.coregrade.com -- 18:09:26.671 INFO [21337]: HTTP_COOKIE = _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 18:09:26.671 INFO [21337]: QUERY_STRING = /auth -- 18:09:26.671 INFO [21337]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 18:09:26.714 INFO [21337]: COREGRADE is stopping... -- 18:09:26.714 DEBUG [21337]: Closing database connection -- 18:09:26.714 SQL [21337]: pgsql_close() -- 18:09:26.923 INFO [21337]: COREGRADE is starting... -- 18:09:26.923 INFO [21337]: Version from config: 1.0 -- 18:09:26.923 DEBUG [21337]: Connecting to database... -- 18:09:26.923 DEBUG [21337]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:09:26.923 SQL [21337]: pgsql_db_connect() -- 18:09:26.927 DEBUG [21337]: Database connection successful -- 18:09:26.927 INFO [21337]: _SERVER found -- 18:09:26.927 INFO [21337]: REMOTE_ADDR = 192.168.1.13 -- 18:09:26.927 INFO [21337]: SERVER_NAME = oameye.works.coregrade.com -- 18:09:26.927 INFO [21337]: HTTP_COOKIE = ci_session=tpeagn83ghrf1b8ads84nkbql0v7ej7i; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 18:09:26.927 INFO [21337]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:09:26.927 INFO [21337]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 18:09:26.940 INFO [21337]: COREGRADE is stopping... -- 18:09:26.940 DEBUG [21337]: Closing database connection -- 18:09:26.940 SQL [21337]: pgsql_close() -- 18:09:26.985 INFO [21337]: COREGRADE is starting... -- 18:09:26.985 INFO [21337]: Version from config: 1.0 -- 18:09:26.985 DEBUG [21337]: Connecting to database... -- 18:09:26.985 DEBUG [21337]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:09:26.985 SQL [21337]: pgsql_db_connect() -- 18:09:26.989 DEBUG [21337]: Database connection successful -- 18:09:26.989 INFO [21337]: _SERVER found -- 18:09:26.989 INFO [21337]: REMOTE_ADDR = 192.168.1.13 -- 18:09:26.989 INFO [21337]: SERVER_NAME = oameye.works.coregrade.com -- 18:09:26.989 INFO [21337]: HTTP_COOKIE = ci_session=tpeagn83ghrf1b8ads84nkbql0v7ej7i; _ga=GA1.2.377719551.1581411035; _gid=GA1.2.394406628.1581657541 -- 18:09:26.989 INFO [21337]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:09:26.989 INFO [21337]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 18:09:27.002 INFO [21337]: COREGRADE is stopping... -- 18:09:27.002 DEBUG [21337]: Closing database connection -- 18:09:27.002 SQL [21337]: pgsql_close() -- 19:48:00.067 INFO [21902]: COREGRADE is starting... -- 19:48:00.068 INFO [21902]: Version from config: 1.0 -- 19:48:00.068 DEBUG [21902]: Connecting to database... -- 19:48:00.068 DEBUG [21902]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:48:00.068 SQL [21902]: pgsql_db_connect() -- 19:48:00.073 DEBUG [21902]: Database connection successful -- 19:48:00.073 INFO [21902]: _SERVER found -- 19:48:00.073 INFO [21902]: REMOTE_ADDR = 192.168.1.13 -- 19:48:00.073 INFO [21902]: SERVER_NAME = oameye.works.coregrade.com -- 19:48:00.073 INFO [21902]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911 -- 19:48:00.073 INFO [21902]: QUERY_STRING = -- 19:48:00.073 INFO [21902]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:48:00.073 INFO [21902]: SystemStatus()09-09-********~************ -- 19:48:00.073 INFO [21902]: long coregrade_api_main(CVars in, CVars &out) -- 19:48:00.073 INFO [21902]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 19:48:00.073 INFO [21902]: account calls -- 19:48:00.073 INFO [21902]: account_calls() -- 19:48:00.073 FLOG_MAX [21902]: REQ_STRING(username) -- 19:48:00.073 FLOG_MAX [21902]: REQ_STRING(firstname) -- 19:48:00.073 FLOG_MAX [21902]: REQ_STRING(lastname) -- 19:48:00.073 FLOG_MAX [21902]: REQ_STRING(email) -- 19:48:00.073 SQL [21902]: pgsql_query() -- 19:48:00.073 SQL [21902]: About to run query: -- 19:48:00.073 SQL [21902]: SELECT * FROM members WHERE LOWER(username) = LOWER('tokunbo.lawal1+9570@gmail.com') -- 19:48:00.076 SQL [21902]: Found rows: 0 -- 19:48:00.076 SQL [21902]: Found rows: 0 -- 19:48:00.076 FLOG_MAX [21902]: insert_db_record() -- 19:48:00.076 SQL [21902]: pgsql_exec() -- 19:48:00.076 SQL [21902]: About to run query: -- 19:48:00.076 SQL [21902]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('tokunbo.lawal1+9570@gmail.com','Olu','Amey','192.168.1.13','','tokunbo.lawal1+9570@gmail.com','RS-707014912-676036864-1237593856') -- 19:48:00.078 SQL [21902]: PQcmdTuples: 1 -- 19:48:00.078 SQL [21902]: Affected rows: 1 -- 19:48:00.078 FLOG_MAX [21902]: SELECT currval('members_pending_id_seq') -- 19:48:00.078 SQL [21902]: pgsql_query() -- 19:48:00.078 SQL [21902]: About to run query: -- 19:48:00.078 SQL [21902]: SELECT currval('members_pending_id_seq') -- 19:48:00.078 SQL [21902]: Found rows: 1 -- 19:48:00.078 SQL [21902]: pgsql_query() -- 19:48:00.078 SQL [21902]: About to run query: -- 19:48:00.078 SQL [21902]: UPDATE members_pending SET password = md5('12345678') WHERE id = 19 -- 19:48:00.080 SQL [21902]: Found rows: 0 -- 19:48:00.080 SQL [21902]: Found rows: 0 -- 19:48:00.080 FLOG_MAX [21902]: long load_db_record( CVars &rec, const char * query, ... ) -- 19:48:00.080 SQL [21902]: pgsql_query() -- 19:48:00.080 SQL [21902]: About to run query: -- 19:48:00.080 SQL [21902]: SELECT * FROM members_pending WHERE id = 19 -- 19:48:00.080 SQL [21902]: Found rows: 1 -- 19:48:00.080 FLOG_MAX [21902]: load_db_record(SELECT * FROM members_pending WHERE id = 19 ) num_cols=13 -- 19:48:00.080 FLOG_MAX [21902]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 19:48:00.080 FLOG_MAX [21902]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1504 bytes -- 19:48:00.080 FLOG_MAX [21902]: Returning from FormFile() -- 19:48:00.080 FLOG_MAX [21902]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 19:48:00.080 FLOG_MAX [21902]: ESMTP( 10.0.0.23, support@coregrade.com, tokunbo.lawal1+9570@gmail.com ) -- 19:48:00.080 FLOG_MAX [21902]: Prepare body -- 19:48:00.080 FLOG_MAX [21902]: Locate & extract subject -- 19:48:00.080 FLOG_MAX [21902]: Found subject: CoreGrade - Pending Signup - Verify tokunbo.lawal1+9570@gmail.com -- 19:48:00.080 FLOG_MAX [21902]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t tokunbo.lawal1+9570@gmail.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'CoreGrade - Pending Signup - Verify tokunbo.lawal1+9570@gmail.com' -M ' - - - -
-
- - - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to verify your email. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-707014912-676036864-1237593856 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/home/contactus?vlnk=RS-707014912-676036864-1237593856 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-
-
- -
- - - - - -' -- 19:48:00.172 FLOG_MAX [21902]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Pending Signup - Verify tokunbo.lawal1+9570@gmail.com -From: CoreGrade Support -Date: Fri, 14 Feb 2020 19:48:00 -0500 -To: tokunbo.lawal1+9570@gmail.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="REbA1wmrPVnlJj+U" -Mime-version: 1.0 - - ---REbA1wmrPVnlJj+U -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
- - - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to verify your email. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-707014912-676036864-1237593856 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/home/contactus?vlnk=RS-707014912-676036864-1237593856 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-
-
- -
- - - - - - - - ---REbA1wmrPVnlJj+U-- - -[C] . -[S] 250 2.0.0 Ok: queued as 294382113061 -[C] QUIT -[S] 221 2.0.0 Bye - -- 19:48:00.172 FLOG_MAX [21902]: - -END OF PIPE OUTPUT - - -- 19:48:00.172 FLOG_MAX [21902]: /ESMTP() -- 19:48:00.172 INFO [21902]: RET: action=11010 -- 19:48:00.172 INFO [21902]: RET: email=tokunbo.lawal1+9570@gmail.com -- 19:48:00.172 INFO [21902]: RET: firstname=Olu -- 19:48:00.172 INFO [21902]: RET: lastname=Amey -- 19:48:00.172 INFO [21902]: RET: password=12345678 -- 19:48:00.172 INFO [21902]: RET: pending_id=19 -- 19:48:00.172 INFO [21902]: RET: status_message=Pending -- 19:48:00.172 INFO [21902]: RET: username=tokunbo.lawal1+9570@gmail.com -- 19:48:00.172 INFO [21902]: COREGRADE is stopping... -- 19:48:00.172 DEBUG [21902]: Closing database connection -- 19:48:00.172 SQL [21902]: pgsql_close() -- 19:48:00.630 INFO [21902]: COREGRADE is starting... -- 19:48:00.630 INFO [21902]: Version from config: 1.0 -- 19:48:00.630 DEBUG [21902]: Connecting to database... -- 19:48:00.630 DEBUG [21902]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:48:00.631 SQL [21902]: pgsql_db_connect() -- 19:48:00.635 DEBUG [21902]: Database connection successful -- 19:48:00.635 INFO [21902]: _SERVER found -- 19:48:00.635 INFO [21902]: REMOTE_ADDR = 192.168.1.13 -- 19:48:00.635 INFO [21902]: SERVER_NAME = oameye.works.coregrade.com -- 19:48:00.635 INFO [21902]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911 -- 19:48:00.635 INFO [21902]: QUERY_STRING = -- 19:48:00.635 INFO [21902]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:48:00.635 INFO [21902]: SystemStatus()09-09-********~************ -- 19:48:00.635 INFO [21902]: long coregrade_api_main(CVars in, CVars &out) -- 19:48:00.635 INFO [21902]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 19:48:00.635 INFO [21902]: account calls -- 19:48:00.635 INFO [21902]: account_calls() -- 19:48:00.635 FLOG_MAX [21902]: REQ_STRING(username) -- 19:48:00.635 FLOG_MAX [21902]: REQ_STRING(firstname) -- 19:48:00.635 FLOG_MAX [21902]: REQ_STRING(lastname) -- 19:48:00.635 FLOG_MAX [21902]: REQ_STRING(email) -- 19:48:00.635 SQL [21902]: pgsql_query() -- 19:48:00.635 SQL [21902]: About to run query: -- 19:48:00.635 SQL [21902]: SELECT * FROM members WHERE LOWER(username) = LOWER('tokunbo.lawal1+5924@gmail.com') -- 19:48:00.637 SQL [21902]: Found rows: 0 -- 19:48:00.637 SQL [21902]: Found rows: 0 -- 19:48:00.637 FLOG_MAX [21902]: insert_db_record() -- 19:48:00.637 SQL [21902]: pgsql_exec() -- 19:48:00.637 SQL [21902]: About to run query: -- 19:48:00.637 SQL [21902]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('tokunbo.lawal1+5924@gmail.com','Olu','Amey','192.168.1.13','','tokunbo.lawal1+5924@gmail.com','RS-707014912-676036864-1237593856') -- 19:48:00.639 SQL [21902]: PQcmdTuples: 1 -- 19:48:00.639 SQL [21902]: Affected rows: 1 -- 19:48:00.639 FLOG_MAX [21902]: SELECT currval('members_pending_id_seq') -- 19:48:00.639 SQL [21902]: pgsql_query() -- 19:48:00.639 SQL [21902]: About to run query: -- 19:48:00.639 SQL [21902]: SELECT currval('members_pending_id_seq') -- 19:48:00.639 SQL [21902]: Found rows: 1 -- 19:48:00.639 SQL [21902]: pgsql_query() -- 19:48:00.639 SQL [21902]: About to run query: -- 19:48:00.639 SQL [21902]: UPDATE members_pending SET password = md5('12345678') WHERE id = 20 -- 19:48:00.640 SQL [21902]: Found rows: 0 -- 19:48:00.640 SQL [21902]: Found rows: 0 -- 19:48:00.640 FLOG_MAX [21902]: long load_db_record( CVars &rec, const char * query, ... ) -- 19:48:00.641 SQL [21902]: pgsql_query() -- 19:48:00.641 SQL [21902]: About to run query: -- 19:48:00.641 SQL [21902]: SELECT * FROM members_pending WHERE id = 20 -- 19:48:00.641 SQL [21902]: Found rows: 1 -- 19:48:00.641 FLOG_MAX [21902]: load_db_record(SELECT * FROM members_pending WHERE id = 20 ) num_cols=13 -- 19:48:00.641 FLOG_MAX [21902]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 19:48:00.641 FLOG_MAX [21902]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1504 bytes -- 19:48:00.641 FLOG_MAX [21902]: Returning from FormFile() -- 19:48:00.641 FLOG_MAX [21902]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 19:48:00.641 FLOG_MAX [21902]: ESMTP( 10.0.0.23, support@coregrade.com, tokunbo.lawal1+5924@gmail.com ) -- 19:48:00.641 FLOG_MAX [21902]: Prepare body -- 19:48:00.641 FLOG_MAX [21902]: Locate & extract subject -- 19:48:00.641 FLOG_MAX [21902]: Found subject: CoreGrade - Pending Signup - Verify tokunbo.lawal1+5924@gmail.com -- 19:48:00.641 FLOG_MAX [21902]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t tokunbo.lawal1+5924@gmail.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'CoreGrade - Pending Signup - Verify tokunbo.lawal1+5924@gmail.com' -M ' - - - -
-
- - - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to verify your email. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-707014912-676036864-1237593856 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/home/contactus?vlnk=RS-707014912-676036864-1237593856 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-
-
- -
- - - - - -' -- 19:48:00.662 FLOG_MAX [21902]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Pending Signup - Verify tokunbo.lawal1+5924@gmail.com -From: CoreGrade Support -Date: Fri, 14 Feb 2020 19:48:00 -0500 -To: tokunbo.lawal1+5924@gmail.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="REbA1wmrPVnlJj+U" -Mime-version: 1.0 - - ---REbA1wmrPVnlJj+U -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
- - - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to verify your email. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-707014912-676036864-1237593856 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/home/contactus?vlnk=RS-707014912-676036864-1237593856 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-
-
- -
- - - - - - - - ---REbA1wmrPVnlJj+U-- - -[C] . -[S] 250 2.0.0 Ok: queued as A10C02113064 -[C] QUIT -[S] 221 2.0.0 Bye -V -- 19:48:00.662 FLOG_MAX [21902]: - -END OF PIPE OUTPUT - - -- 19:48:00.662 FLOG_MAX [21902]: /ESMTP() -- 19:48:00.662 INFO [21902]: RET: action=11010 -- 19:48:00.662 INFO [21902]: RET: email=tokunbo.lawal1+5924@gmail.com -- 19:48:00.662 INFO [21902]: RET: firstname=Olu -- 19:48:00.662 INFO [21902]: RET: lastname=Amey -- 19:48:00.662 INFO [21902]: RET: password=12345678 -- 19:48:00.662 INFO [21902]: RET: pending_id=20 -- 19:48:00.662 INFO [21902]: RET: status_message=Pending -- 19:48:00.662 INFO [21902]: RET: username=tokunbo.lawal1+5924@gmail.com -- 19:48:00.663 INFO [21902]: COREGRADE is stopping... -- 19:48:00.663 DEBUG [21902]: Closing database connection -- 19:48:00.663 SQL [21902]: pgsql_close() -- 19:48:00.920 INFO [21902]: COREGRADE is starting... -- 19:48:00.920 INFO [21902]: Version from config: 1.0 -- 19:48:00.920 DEBUG [21902]: Connecting to database... -- 19:48:00.920 DEBUG [21902]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:48:00.920 SQL [21902]: pgsql_db_connect() -- 19:48:00.924 DEBUG [21902]: Database connection successful -- 19:48:00.924 INFO [21902]: _SERVER found -- 19:48:00.924 INFO [21902]: REMOTE_ADDR = 192.168.1.13 -- 19:48:00.924 INFO [21902]: SERVER_NAME = oameye.works.coregrade.com -- 19:48:00.924 INFO [21902]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911 -- 19:48:00.924 INFO [21902]: QUERY_STRING = -- 19:48:00.924 INFO [21902]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:48:00.924 INFO [21902]: SystemStatus()09-09-********~************ -- 19:48:00.924 INFO [21902]: long coregrade_api_main(CVars in, CVars &out) -- 19:48:00.924 INFO [21902]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 19:48:00.924 INFO [21902]: account calls -- 19:48:00.924 INFO [21902]: account_calls() -- 19:48:00.924 FLOG_MAX [21902]: REQ_STRING(username) -- 19:48:00.925 FLOG_MAX [21902]: REQ_STRING(firstname) -- 19:48:00.925 FLOG_MAX [21902]: REQ_STRING(lastname) -- 19:48:00.925 FLOG_MAX [21902]: REQ_STRING(email) -- 19:48:00.925 SQL [21902]: pgsql_query() -- 19:48:00.925 SQL [21902]: About to run query: -- 19:48:00.925 SQL [21902]: SELECT * FROM members WHERE LOWER(username) = LOWER('tokunbo.lawal1+5924@gmail.com') -- 19:48:00.927 SQL [21902]: Found rows: 0 -- 19:48:00.927 SQL [21902]: Found rows: 0 -- 19:48:00.927 FLOG_MAX [21902]: insert_db_record() -- 19:48:00.927 SQL [21902]: pgsql_exec() -- 19:48:00.927 SQL [21902]: About to run query: -- 19:48:00.927 SQL [21902]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('tokunbo.lawal1+5924@gmail.com','Olu','Amey','192.168.1.13','','tokunbo.lawal1+5924@gmail.com','RS-707014912-676036864-1237593856') -- 19:48:00.928 SQL [21902]: PQcmdTuples: 1 -- 19:48:00.928 SQL [21902]: Affected rows: 1 -- 19:48:00.928 FLOG_MAX [21902]: SELECT currval('members_pending_id_seq') -- 19:48:00.928 SQL [21902]: pgsql_query() -- 19:48:00.928 SQL [21902]: About to run query: -- 19:48:00.928 SQL [21902]: SELECT currval('members_pending_id_seq') -- 19:48:00.929 SQL [21902]: Found rows: 1 -- 19:48:00.929 SQL [21902]: pgsql_query() -- 19:48:00.929 SQL [21902]: About to run query: -- 19:48:00.929 SQL [21902]: UPDATE members_pending SET password = md5('12345678') WHERE id = 21 -- 19:48:00.930 SQL [21902]: Found rows: 0 -- 19:48:00.930 SQL [21902]: Found rows: 0 -- 19:48:00.930 FLOG_MAX [21902]: long load_db_record( CVars &rec, const char * query, ... ) -- 19:48:00.930 SQL [21902]: pgsql_query() -- 19:48:00.930 SQL [21902]: About to run query: -- 19:48:00.930 SQL [21902]: SELECT * FROM members_pending WHERE id = 21 -- 19:48:00.930 SQL [21902]: Found rows: 1 -- 19:48:00.930 FLOG_MAX [21902]: load_db_record(SELECT * FROM members_pending WHERE id = 21 ) num_cols=13 -- 19:48:00.930 FLOG_MAX [21902]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 19:48:00.930 FLOG_MAX [21902]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1504 bytes -- 19:48:00.930 FLOG_MAX [21902]: Returning from FormFile() -- 19:48:00.930 FLOG_MAX [21902]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 19:48:00.931 FLOG_MAX [21902]: ESMTP( 10.0.0.23, support@coregrade.com, tokunbo.lawal1+5924@gmail.com ) -- 19:48:00.931 FLOG_MAX [21902]: Prepare body -- 19:48:00.931 FLOG_MAX [21902]: Locate & extract subject -- 19:48:00.931 FLOG_MAX [21902]: Found subject: CoreGrade - Pending Signup - Verify tokunbo.lawal1+5924@gmail.com -- 19:48:00.931 FLOG_MAX [21902]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t tokunbo.lawal1+5924@gmail.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'CoreGrade - Pending Signup - Verify tokunbo.lawal1+5924@gmail.com' -M ' - - - -
-
- - - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to verify your email. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-707014912-676036864-1237593856 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/home/contactus?vlnk=RS-707014912-676036864-1237593856 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-
-
- -
- - - - - -' -- 19:48:00.950 FLOG_MAX [21902]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Pending Signup - Verify tokunbo.lawal1+5924@gmail.com -From: CoreGrade Support -Date: Fri, 14 Feb 2020 19:48:00 -0500 -To: tokunbo.lawal1+5924@gmail.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="REbA1wmrPVnlJj+U" -Mime-version: 1.0 - - ---REbA1wmrPVnlJj+U -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
- - - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to verify your email. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-707014912-676036864-1237593856 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/home/contactus?vlnk=RS-707014912-676036864-1237593856 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-
-
- -
- - - - - - - - ---REbA1wmrPVnlJj+U-- - -[C] . -[S] 250 2.0.0 Ok: queued as E75782113060 -[C] QUIT -[S] 221 2.0.0 Bye -V -- 19:48:00.956 FLOG_MAX [21902]: - -END OF PIPE OUTPUT - - -- 19:48:00.956 FLOG_MAX [21902]: /ESMTP() -- 19:48:00.956 INFO [21902]: RET: action=11010 -- 19:48:00.956 INFO [21902]: RET: email=tokunbo.lawal1+5924@gmail.com -- 19:48:00.956 INFO [21902]: RET: firstname=Olu -- 19:48:00.956 INFO [21902]: RET: lastname=Amey -- 19:48:00.956 INFO [21902]: RET: password=12345678 -- 19:48:00.956 INFO [21902]: RET: pending_id=21 -- 19:48:00.956 INFO [21902]: RET: status_message=Pending -- 19:48:00.956 INFO [21902]: RET: username=tokunbo.lawal1+5924@gmail.com -- 19:48:00.956 INFO [21902]: COREGRADE is stopping... -- 19:48:00.956 DEBUG [21902]: Closing database connection -- 19:48:00.956 SQL [21902]: pgsql_close() -- 19:48:01.188 INFO [21902]: COREGRADE is starting... -- 19:48:01.189 INFO [21902]: Version from config: 1.0 -- 19:48:01.189 DEBUG [21902]: Connecting to database... -- 19:48:01.189 DEBUG [21902]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:48:01.189 SQL [21902]: pgsql_db_connect() -- 19:48:01.193 DEBUG [21902]: Database connection successful -- 19:48:01.193 INFO [21902]: _SERVER found -- 19:48:01.193 INFO [21902]: REMOTE_ADDR = 192.168.1.13 -- 19:48:01.193 INFO [21902]: SERVER_NAME = oameye.works.coregrade.com -- 19:48:01.193 INFO [21902]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911 -- 19:48:01.193 INFO [21902]: QUERY_STRING = -- 19:48:01.193 INFO [21902]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:48:01.193 INFO [21902]: SystemStatus()09-09-********~************ -- 19:48:01.193 INFO [21902]: long coregrade_api_main(CVars in, CVars &out) -- 19:48:01.193 INFO [21902]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 19:48:01.193 INFO [21902]: account calls -- 19:48:01.193 INFO [21902]: account_calls() -- 19:48:01.193 FLOG_MAX [21902]: REQ_STRING(username) -- 19:48:01.193 FLOG_MAX [21902]: REQ_STRING(firstname) -- 19:48:01.193 FLOG_MAX [21902]: REQ_STRING(lastname) -- 19:48:01.193 FLOG_MAX [21902]: REQ_STRING(email) -- 19:48:01.193 SQL [21902]: pgsql_query() -- 19:48:01.193 SQL [21902]: About to run query: -- 19:48:01.193 SQL [21902]: SELECT * FROM members WHERE LOWER(username) = LOWER('tokunbo.lawal1+5924@gmail.com') -- 19:48:01.195 SQL [21902]: Found rows: 0 -- 19:48:01.195 SQL [21902]: Found rows: 0 -- 19:48:01.195 FLOG_MAX [21902]: insert_db_record() -- 19:48:01.195 SQL [21902]: pgsql_exec() -- 19:48:01.195 SQL [21902]: About to run query: -- 19:48:01.195 SQL [21902]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('tokunbo.lawal1+5924@gmail.com','Olu','Amey','192.168.1.13','','tokunbo.lawal1+5924@gmail.com','RS-1500072192-1505824512-1067394816') -- 19:48:01.197 SQL [21902]: PQcmdTuples: 1 -- 19:48:01.197 SQL [21902]: Affected rows: 1 -- 19:48:01.197 FLOG_MAX [21902]: SELECT currval('members_pending_id_seq') -- 19:48:01.197 SQL [21902]: pgsql_query() -- 19:48:01.197 SQL [21902]: About to run query: -- 19:48:01.197 SQL [21902]: SELECT currval('members_pending_id_seq') -- 19:48:01.197 SQL [21902]: Found rows: 1 -- 19:48:01.197 SQL [21902]: pgsql_query() -- 19:48:01.197 SQL [21902]: About to run query: -- 19:48:01.197 SQL [21902]: UPDATE members_pending SET password = md5('12345678') WHERE id = 22 -- 19:48:01.198 SQL [21902]: Found rows: 0 -- 19:48:01.198 SQL [21902]: Found rows: 0 -- 19:48:01.198 FLOG_MAX [21902]: long load_db_record( CVars &rec, const char * query, ... ) -- 19:48:01.198 SQL [21902]: pgsql_query() -- 19:48:01.198 SQL [21902]: About to run query: -- 19:48:01.198 SQL [21902]: SELECT * FROM members_pending WHERE id = 22 -- 19:48:01.198 SQL [21902]: Found rows: 1 -- 19:48:01.199 FLOG_MAX [21902]: load_db_record(SELECT * FROM members_pending WHERE id = 22 ) num_cols=13 -- 19:48:01.199 FLOG_MAX [21902]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 19:48:01.199 FLOG_MAX [21902]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1504 bytes -- 19:48:01.199 FLOG_MAX [21902]: Returning from FormFile() -- 19:48:01.199 FLOG_MAX [21902]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 19:48:01.199 FLOG_MAX [21902]: ESMTP( 10.0.0.23, support@coregrade.com, tokunbo.lawal1+5924@gmail.com ) -- 19:48:01.199 FLOG_MAX [21902]: Prepare body -- 19:48:01.199 FLOG_MAX [21902]: Locate & extract subject -- 19:48:01.199 FLOG_MAX [21902]: Found subject: CoreGrade - Pending Signup - Verify tokunbo.lawal1+5924@gmail.com -- 19:48:01.199 FLOG_MAX [21902]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t tokunbo.lawal1+5924@gmail.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'CoreGrade - Pending Signup - Verify tokunbo.lawal1+5924@gmail.com' -M ' - - - -
-
- - - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to verify your email. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-1500072192-1505824512-1067394816 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/home/contactus?vlnk=RS-1500072192-1505824512-1067394816 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-
-
- -
- - - - - -' -- 19:48:01.219 FLOG_MAX [21902]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Pending Signup - Verify tokunbo.lawal1+5924@gmail.com -From: CoreGrade Support -Date: Fri, 14 Feb 2020 19:48:01 -0500 -To: tokunbo.lawal1+5924@gmail.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="pfcC0WuliOKIVwd5" -Mime-version: 1.0 - - ---pfcC0WuliOKIVwd5 -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
- - - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to verify your email. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-1500072192-1505824512-1067394816 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/home/contactus?vlnk=RS-1500072192-1505824512-1067394816 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-
-
- -
- - - - - - - - ---pfcC0WuliOKIVwd5-- - -[C] . -[S] 250 2.0.0 Ok: queued as 34BEA2113064 -[C] QUIT -[S] 221 2.0.0 Bye -›‡R -V -- 19:48:01.219 FLOG_MAX [21902]: - -END OF PIPE OUTPUT - - -- 19:48:01.219 FLOG_MAX [21902]: /ESMTP() -- 19:48:01.219 INFO [21902]: RET: action=11010 -- 19:48:01.219 INFO [21902]: RET: email=tokunbo.lawal1+5924@gmail.com -- 19:48:01.219 INFO [21902]: RET: firstname=Olu -- 19:48:01.219 INFO [21902]: RET: lastname=Amey -- 19:48:01.219 INFO [21902]: RET: password=12345678 -- 19:48:01.219 INFO [21902]: RET: pending_id=22 -- 19:48:01.219 INFO [21902]: RET: status_message=Pending -- 19:48:01.219 INFO [21902]: RET: username=tokunbo.lawal1+5924@gmail.com -- 19:48:01.219 INFO [21902]: COREGRADE is stopping... -- 19:48:01.219 DEBUG [21902]: Closing database connection -- 19:48:01.219 SQL [21902]: pgsql_close() -- 19:58:21.213 INFO [21335]: COREGRADE is starting... -- 19:58:21.213 INFO [21335]: Version from config: 1.0 -- 19:58:21.213 DEBUG [21335]: Connecting to database... -- 19:58:21.213 DEBUG [21335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:21.214 SQL [21335]: pgsql_db_connect() -- 19:58:21.218 DEBUG [21335]: Database connection successful -- 19:58:21.218 INFO [21335]: _SERVER found -- 19:58:21.218 INFO [21335]: REMOTE_ADDR = 192.168.1.13 -- 19:58:21.218 INFO [21335]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:21.218 INFO [21335]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1003832711.1581700905 -- 19:58:21.218 INFO [21335]: QUERY_STRING = /auth -- 19:58:21.218 INFO [21335]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:21.256 INFO [21335]: COREGRADE is stopping... -- 19:58:21.256 DEBUG [21335]: Closing database connection -- 19:58:21.256 SQL [21335]: pgsql_close() -- 19:58:21.516 INFO [21335]: COREGRADE is starting... -- 19:58:21.517 INFO [21335]: Version from config: 1.0 -- 19:58:21.517 DEBUG [21335]: Connecting to database... -- 19:58:21.517 DEBUG [21335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:21.517 SQL [21335]: pgsql_db_connect() -- 19:58:21.521 DEBUG [21335]: Database connection successful -- 19:58:21.521 INFO [21335]: _SERVER found -- 19:58:21.521 INFO [21335]: REMOTE_ADDR = 192.168.1.13 -- 19:58:21.521 INFO [21335]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:21.521 INFO [21335]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1003832711.1581700905; ci_session=ffe94k0b9b68urorm0iqo07hcbkjcd75 -- 19:58:21.521 INFO [21335]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 19:58:21.521 INFO [21335]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:21.532 INFO [21335]: COREGRADE is stopping... -- 19:58:21.532 DEBUG [21335]: Closing database connection -- 19:58:21.532 SQL [21335]: pgsql_close() -- 19:58:21.572 INFO [21335]: COREGRADE is starting... -- 19:58:21.572 INFO [21335]: Version from config: 1.0 -- 19:58:21.572 DEBUG [21335]: Connecting to database... -- 19:58:21.572 DEBUG [21335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:21.572 SQL [21335]: pgsql_db_connect() -- 19:58:21.576 DEBUG [21335]: Database connection successful -- 19:58:21.576 INFO [21335]: _SERVER found -- 19:58:21.576 INFO [21335]: REMOTE_ADDR = 192.168.1.13 -- 19:58:21.576 INFO [21335]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:21.576 INFO [21335]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1003832711.1581700905; ci_session=ffe94k0b9b68urorm0iqo07hcbkjcd75 -- 19:58:21.576 INFO [21335]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:58:21.576 INFO [21335]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:21.587 INFO [21335]: COREGRADE is stopping... -- 19:58:21.587 DEBUG [21335]: Closing database connection -- 19:58:21.587 SQL [21335]: pgsql_close() -- 19:58:23.415 INFO [21335]: COREGRADE is starting... -- 19:58:23.415 INFO [21335]: Version from config: 1.0 -- 19:58:23.415 DEBUG [21335]: Connecting to database... -- 19:58:23.415 DEBUG [21335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:23.415 SQL [21335]: pgsql_db_connect() -- 19:58:23.450 INFO [21335]: COREGRADE is starting... -- 19:58:23.451 INFO [21335]: Version from config: 1.0 -- 19:58:23.451 DEBUG [21335]: Connecting to database... -- 19:58:23.451 DEBUG [21335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:23.451 SQL [21335]: pgsql_db_connect() -- 19:58:23.456 DEBUG [21335]: Database connection successful -- 19:58:23.456 INFO [21335]: _SERVER found -- 19:58:23.456 INFO [21335]: REMOTE_ADDR = 192.168.1.13 -- 19:58:23.456 INFO [21335]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:23.456 INFO [21335]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1003832711.1581700905; ci_session=ffe94k0b9b68urorm0iqo07hcbkjcd75 -- 19:58:23.456 INFO [21335]: QUERY_STRING = -- 19:58:23.456 INFO [21335]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:23.456 INFO [21335]: SystemStatus()09-09-********~************ -- 19:58:23.456 INFO [21335]: long coregrade_api_main(CVars in, CVars &out) -- 19:58:23.456 INFO [21335]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 19:58:23.456 INFO [21335]: account calls -- 19:58:23.456 INFO [21335]: account_calls() -- 19:58:23.456 INFO [21335]: LoginCoreGradeAccount() -- 19:58:23.456 FLOG_MAX [21335]: REQ_STRING(username) -- 19:58:23.456 FLOG_MAX [21335]: REQ_STRING(password) -- 19:58:23.456 FLOG_MAX [21335]: REQ_STRING(sessionid) -- 19:58:23.456 FLOG_MAX [21335]: long load_db_record( CVars &rec, const char * query, ... ) -- 19:58:23.456 SQL [21335]: pgsql_query() -- 19:58:23.456 SQL [21335]: About to run query: -- 19:58:23.456 SQL [21335]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 19:58:23.459 SQL [21335]: Found rows: 1 -- 19:58:23.459 FLOG_MAX [21335]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 19:58:23.459 INFO [21335]: long SessionCheck(long uid, const char *sessionid, int create ) -- 19:58:23.459 SQL [21335]: pgsql_exec() -- 19:58:23.460 SQL [21335]: About to run query: -- 19:58:23.460 SQL [21335]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 19:58:23.461 SQL [21335]: PQcmdTuples: 1 -- 19:58:23.461 SQL [21335]: Affected rows: 1 -- 19:58:23.461 SQL [21335]: pgsql_exec() -- 19:58:23.461 SQL [21335]: About to run query: -- 19:58:23.461 SQL [21335]: DELETE FROM members_session WHERE member_id=5 -- 19:58:23.461 SQL [21335]: PQcmdTuples: 0 -- 19:58:23.461 SQL [21335]: Affected rows: 0 -- 19:58:23.461 SQL [21335]: pgsql_query() -- 19:58:23.461 SQL [21335]: About to run query: -- 19:58:23.461 SQL [21335]: SELECT * FROM members_session WHERE member_id=5 AND session<>'C9544F33CB0C877709F32FAC3B3BD251' -- 19:58:23.462 SQL [21335]: Found rows: 0 -- 19:58:23.462 SQL [21335]: Found rows: 0 -- 19:58:23.462 FLOG_MAX [21335]: long load_db_record( CVars &rec, const char * query, ... ) -- 19:58:23.462 SQL [21335]: pgsql_query() -- 19:58:23.462 SQL [21335]: About to run query: -- 19:58:23.462 SQL [21335]: SELECT * FROM members_session WHERE member_id=5 AND session='C9544F33CB0C877709F32FAC3B3BD251' -- 19:58:23.462 SQL [21335]: Found rows: 0 -- 19:58:23.463 SQL [21335]: Found rows: 0 -- 19:58:23.463 FLOG_MAX [21335]: insert_db_record() -- 19:58:23.463 SQL [21335]: pgsql_exec() -- 19:58:23.463 SQL [21335]: About to run query: -- 19:58:23.463 SQL [21335]: INSERT INTO members_session (member_id,session) VALUES ('5','C9544F33CB0C877709F32FAC3B3BD251') -- 19:58:23.464 SQL [21335]: PQcmdTuples: 1 -- 19:58:23.464 SQL [21335]: Affected rows: 1 -- 19:58:23.464 FLOG_MAX [21335]: SELECT currval('members_session_id_seq') -- 19:58:23.464 SQL [21335]: pgsql_query() -- 19:58:23.464 SQL [21335]: About to run query: -- 19:58:23.464 SQL [21335]: SELECT currval('members_session_id_seq') -- 19:58:23.465 SQL [21335]: Found rows: 1 -- 19:58:23.465 INFO [21335]: CreateDefaultPage() -- 19:58:23.465 FLOG_MAX [21335]: long load_db_record( CVars &rec, const char * query, ... ) -- 19:58:23.465 SQL [21335]: pgsql_query() -- 19:58:23.465 SQL [21335]: About to run query: -- 19:58:23.465 SQL [21335]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 19:58:23.465 SQL [21335]: Found rows: 1 -- 19:58:23.465 FLOG_MAX [21335]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 19:58:23.465 SQL [21335]: pgsql_query() -- 19:58:23.465 SQL [21335]: About to run query: -- 19:58:23.465 SQL [21335]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 19:58:23.465 SQL [21335]: Found rows: 1 -- 19:58:23.466 INFO [21335]: /CreateDefaultPage() -- 19:58:23.466 INFO [21335]: /LoginCoreGradeAccount() -- 19:58:23.466 INFO [21335]: RET: added=2020-02-05 06:47:23.982154 -- 19:58:23.466 INFO [21335]: RET: email=ameye+11@chiefsoft.com -- 19:58:23.466 INFO [21335]: RET: firstname=Olu -- 19:58:23.466 INFO [21335]: RET: id=5 -- 19:58:23.466 INFO [21335]: RET: last_login= -- 19:58:23.466 INFO [21335]: RET: lastname=Amey -- 19:58:23.466 INFO [21335]: RET: loc=192.168.1.13 -- 19:58:23.466 INFO [21335]: RET: member_id=5 -- 19:58:23.466 INFO [21335]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 19:58:23.466 INFO [21335]: RET: phone= -- 19:58:23.466 INFO [21335]: RET: pid= -- 19:58:23.466 INFO [21335]: RET: result=YES I GET TO BACK END -- 19:58:23.466 INFO [21335]: RET: sessionid=C9544F33CB0C877709F32FAC3B3BD251 -- 19:58:23.466 INFO [21335]: RET: status=1 -- 19:58:23.466 INFO [21335]: RET: stauts=OK -- 19:58:23.466 INFO [21335]: RET: username=ameye+11@chiefsoft.com -- 19:58:23.466 INFO [21335]: RET: verified= -- 19:58:23.467 INFO [21335]: COREGRADE is stopping... -- 19:58:23.467 DEBUG [21335]: Closing database connection -- 19:58:23.467 SQL [21335]: pgsql_close() -- 19:58:23.419 DEBUG [21335]: Database connection successful -- 19:58:23.419 INFO [21335]: _SERVER found -- 19:58:23.419 INFO [21335]: REMOTE_ADDR = 192.168.1.13 -- 19:58:23.419 INFO [21335]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:23.419 INFO [21335]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1003832711.1581700905; ci_session=ffe94k0b9b68urorm0iqo07hcbkjcd75 -- 19:58:23.419 INFO [21335]: QUERY_STRING = /auth -- 19:58:23.419 INFO [21335]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:23.468 INFO [21335]: COREGRADE is stopping... -- 19:58:23.468 DEBUG [21335]: Closing database connection -- 19:58:23.468 SQL [21335]: pgsql_close() -- 19:58:23.484 INFO [21335]: COREGRADE is starting... -- 19:58:23.485 INFO [21335]: Version from config: 1.0 -- 19:58:23.485 DEBUG [21335]: Connecting to database... -- 19:58:23.485 DEBUG [21335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:23.485 SQL [21335]: pgsql_db_connect() -- 19:58:23.489 DEBUG [21335]: Database connection successful -- 19:58:23.489 INFO [21335]: _SERVER found -- 19:58:23.489 INFO [21335]: REMOTE_ADDR = 192.168.1.13 -- 19:58:23.489 INFO [21335]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:23.489 INFO [21335]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1003832711.1581700905; ci_session=ffe94k0b9b68urorm0iqo07hcbkjcd75 -- 19:58:23.489 INFO [21335]: QUERY_STRING = /member/index -- 19:58:23.489 INFO [21335]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:23.530 INFO [21335]: COREGRADE is stopping... -- 19:58:23.530 DEBUG [21335]: Closing database connection -- 19:58:23.530 SQL [21335]: pgsql_close() -- 19:58:23.866 INFO [21335]: COREGRADE is starting... -- 19:58:23.866 INFO [21335]: Version from config: 1.0 -- 19:58:23.866 DEBUG [21335]: Connecting to database... -- 19:58:23.866 DEBUG [21335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:23.866 SQL [21335]: pgsql_db_connect() -- 19:58:23.870 DEBUG [21335]: Database connection successful -- 19:58:23.870 INFO [21335]: _SERVER found -- 19:58:23.870 INFO [21335]: REMOTE_ADDR = 192.168.1.13 -- 19:58:23.870 INFO [21335]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:23.870 INFO [21335]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1003832711.1581700905; ci_session=ffe94k0b9b68urorm0iqo07hcbkjcd75 -- 19:58:23.870 INFO [21335]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:58:23.870 INFO [21335]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:23.881 INFO [21335]: COREGRADE is stopping... -- 19:58:23.881 DEBUG [21335]: Closing database connection -- 19:58:23.881 SQL [21335]: pgsql_close() -- 19:58:23.907 INFO [21335]: COREGRADE is starting... -- 19:58:23.907 INFO [21335]: Version from config: 1.0 -- 19:58:23.907 DEBUG [21335]: Connecting to database... -- 19:58:23.907 DEBUG [21335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:23.907 SQL [21335]: pgsql_db_connect() -- 19:58:23.911 DEBUG [21335]: Database connection successful -- 19:58:23.911 INFO [21335]: _SERVER found -- 19:58:23.911 INFO [21335]: REMOTE_ADDR = 192.168.1.13 -- 19:58:23.911 INFO [21335]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:23.911 INFO [21335]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1003832711.1581700905; ci_session=ffe94k0b9b68urorm0iqo07hcbkjcd75 -- 19:58:23.911 INFO [21335]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:58:23.911 INFO [21335]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:23.922 INFO [21335]: COREGRADE is stopping... -- 19:58:23.922 DEBUG [21335]: Closing database connection -- 19:58:23.922 SQL [21335]: pgsql_close() -- 19:58:27.290 INFO [21335]: COREGRADE is starting... -- 19:58:27.290 INFO [21335]: Version from config: 1.0 -- 19:58:27.290 DEBUG [21335]: Connecting to database... -- 19:58:27.290 DEBUG [21335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:27.290 SQL [21335]: pgsql_db_connect() -- 19:58:27.294 DEBUG [21335]: Database connection successful -- 19:58:27.294 INFO [21335]: _SERVER found -- 19:58:27.294 INFO [21335]: REMOTE_ADDR = 192.168.1.13 -- 19:58:27.294 INFO [21335]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:27.294 INFO [21335]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1003832711.1581700905; ci_session=ffe94k0b9b68urorm0iqo07hcbkjcd75 -- 19:58:27.294 INFO [21335]: QUERY_STRING = /member/page -- 19:58:27.294 INFO [21335]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:27.336 INFO [21335]: COREGRADE is stopping... -- 19:58:27.336 DEBUG [21335]: Closing database connection -- 19:58:27.336 SQL [21335]: pgsql_close() -- 19:58:27.632 INFO [21335]: COREGRADE is starting... -- 19:58:27.633 INFO [21335]: Version from config: 1.0 -- 19:58:27.633 DEBUG [21335]: Connecting to database... -- 19:58:27.633 DEBUG [21335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:27.633 SQL [21335]: pgsql_db_connect() -- 19:58:27.637 DEBUG [21335]: Database connection successful -- 19:58:27.637 INFO [21335]: _SERVER found -- 19:58:27.637 INFO [21335]: REMOTE_ADDR = 192.168.1.13 -- 19:58:27.637 INFO [21335]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:27.637 INFO [21335]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1003832711.1581700905; ci_session=ffe94k0b9b68urorm0iqo07hcbkjcd75 -- 19:58:27.637 INFO [21335]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:58:27.637 INFO [21335]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:27.648 INFO [21335]: COREGRADE is stopping... -- 19:58:27.648 DEBUG [21335]: Closing database connection -- 19:58:27.648 SQL [21335]: pgsql_close() -- 19:58:30.717 INFO [21335]: COREGRADE is starting... -- 19:58:30.717 INFO [21335]: Version from config: 1.0 -- 19:58:30.717 DEBUG [21335]: Connecting to database... -- 19:58:30.717 DEBUG [21335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:30.718 SQL [21335]: pgsql_db_connect() -- 19:58:30.722 DEBUG [21335]: Database connection successful -- 19:58:30.722 INFO [21335]: _SERVER found -- 19:58:30.722 INFO [21335]: REMOTE_ADDR = 192.168.1.13 -- 19:58:30.722 INFO [21335]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:30.722 INFO [21335]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1003832711.1581700905; ci_session=ffe94k0b9b68urorm0iqo07hcbkjcd75 -- 19:58:30.722 INFO [21335]: QUERY_STRING = /member/viewCardAddAction -- 19:58:30.722 INFO [21335]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:30.752 INFO [21335]: COREGRADE is stopping... -- 19:58:30.752 DEBUG [21335]: Closing database connection -- 19:58:30.752 SQL [21335]: pgsql_close() -- 19:58:38.274 INFO [21338]: COREGRADE is starting... -- 19:58:38.275 INFO [21338]: Version from config: 1.0 -- 19:58:38.275 DEBUG [21338]: Connecting to database... -- 19:58:38.275 DEBUG [21338]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:38.275 SQL [21338]: pgsql_db_connect() -- 19:58:38.283 INFO [21336]: COREGRADE is starting... -- 19:58:38.283 INFO [21336]: Version from config: 1.0 -- 19:58:38.283 DEBUG [21336]: Connecting to database... -- 19:58:38.283 DEBUG [21336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:38.283 SQL [21336]: pgsql_db_connect() -- 19:58:38.279 DEBUG [21338]: Database connection successful -- 19:58:38.279 INFO [21338]: _SERVER found -- 19:58:38.279 INFO [21338]: REMOTE_ADDR = 192.168.1.13 -- 19:58:38.279 INFO [21338]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:38.279 INFO [21338]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1003832711.1581700905; ci_session=ffe94k0b9b68urorm0iqo07hcbkjcd75 -- 19:58:38.279 INFO [21338]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 19:58:38.279 INFO [21338]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:38.294 INFO [21338]: COREGRADE is stopping... -- 19:58:38.294 DEBUG [21338]: Closing database connection -- 19:58:38.294 SQL [21338]: pgsql_close() -- 19:58:38.287 DEBUG [21336]: Database connection successful -- 19:58:38.287 INFO [21336]: _SERVER found -- 19:58:38.287 INFO [21336]: REMOTE_ADDR = 192.168.1.13 -- 19:58:38.287 INFO [21336]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:38.287 INFO [21336]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1003832711.1581700905; ci_session=ffe94k0b9b68urorm0iqo07hcbkjcd75 -- 19:58:38.287 INFO [21336]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 19:58:38.287 INFO [21336]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:38.300 INFO [21336]: COREGRADE is stopping... -- 19:58:38.300 DEBUG [21336]: Closing database connection -- 19:58:38.300 SQL [21336]: pgsql_close() -- 19:58:55.244 INFO [21334]: COREGRADE is starting... -- 19:58:55.244 INFO [21334]: Version from config: 1.0 -- 19:58:55.245 DEBUG [21334]: Connecting to database... -- 19:58:55.245 DEBUG [21334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:55.245 SQL [21334]: pgsql_db_connect() -- 19:58:55.249 DEBUG [21334]: Database connection successful -- 19:58:55.249 INFO [21334]: _SERVER found -- 19:58:55.249 INFO [21334]: REMOTE_ADDR = 192.168.1.13 -- 19:58:55.249 INFO [21334]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:55.249 INFO [21334]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1003832711.1581700905; ci_session=ffe94k0b9b68urorm0iqo07hcbkjcd75 -- 19:58:55.249 INFO [21334]: QUERY_STRING = /member/viewCardAddAction -- 19:58:55.249 INFO [21334]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:55.282 INFO [21334]: COREGRADE is stopping... -- 19:58:55.282 DEBUG [21334]: Closing database connection -- 19:58:55.282 SQL [21334]: pgsql_close() -- 19:58:57.312 INFO [21334]: COREGRADE is starting... -- 19:58:57.312 INFO [21334]: Version from config: 1.0 -- 19:58:57.312 DEBUG [21334]: Connecting to database... -- 19:58:57.312 DEBUG [21334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:57.312 SQL [21334]: pgsql_db_connect() -- 19:58:57.316 DEBUG [21334]: Database connection successful -- 19:58:57.316 INFO [21334]: _SERVER found -- 19:58:57.316 INFO [21334]: REMOTE_ADDR = 192.168.1.13 -- 19:58:57.316 INFO [21334]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:57.316 INFO [21334]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1003832711.1581700905; ci_session=ffe94k0b9b68urorm0iqo07hcbkjcd75 -- 19:58:57.316 INFO [21334]: QUERY_STRING = /member/viewCardAddAction -- 19:58:57.316 INFO [21334]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:57.348 INFO [21334]: COREGRADE is stopping... -- 19:58:57.348 DEBUG [21334]: Closing database connection -- 19:58:57.348 SQL [21334]: pgsql_close() -- 19:58:58.543 INFO [21334]: COREGRADE is starting... -- 19:58:58.543 INFO [21334]: Version from config: 1.0 -- 19:58:58.543 DEBUG [21334]: Connecting to database... -- 19:58:58.543 DEBUG [21334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:58.543 SQL [21334]: pgsql_db_connect() -- 19:58:58.547 DEBUG [21334]: Database connection successful -- 19:58:58.547 INFO [21334]: _SERVER found -- 19:58:58.547 INFO [21334]: REMOTE_ADDR = 192.168.1.13 -- 19:58:58.547 INFO [21334]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:58.547 INFO [21334]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1003832711.1581700905; ci_session=ffe94k0b9b68urorm0iqo07hcbkjcd75 -- 19:58:58.547 INFO [21334]: QUERY_STRING = /member/viewCardAddAction -- 19:58:58.547 INFO [21334]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:58.578 INFO [21334]: COREGRADE is stopping... -- 19:58:58.578 DEBUG [21334]: Closing database connection -- 19:58:58.578 SQL [21334]: pgsql_close() -- 20:00:35.755 INFO [21901]: COREGRADE is starting... -- 20:00:35.755 INFO [21901]: Version from config: 1.0 -- 20:00:35.755 DEBUG [21901]: Connecting to database... -- 20:00:35.755 DEBUG [21901]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:00:35.755 SQL [21901]: pgsql_db_connect() -- 20:00:35.759 DEBUG [21901]: Database connection successful -- 20:00:35.759 INFO [21901]: _SERVER found -- 20:00:35.759 INFO [21901]: REMOTE_ADDR = 192.168.1.13 -- 20:00:35.759 INFO [21901]: SERVER_NAME = oameye.works.coregrade.com -- 20:00:35.759 INFO [21901]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1003832711.1581700905; ci_session=ffe94k0b9b68urorm0iqo07hcbkjcd75 -- 20:00:35.759 INFO [21901]: QUERY_STRING = /member/viewCardAddAction -- 20:00:35.759 INFO [21901]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:00:35.792 INFO [21901]: COREGRADE is stopping... -- 20:00:35.792 DEBUG [21901]: Closing database connection -- 20:00:35.792 SQL [21901]: pgsql_close() -- 20:00:38.244 INFO [21901]: COREGRADE is starting... -- 20:00:38.244 INFO [21901]: Version from config: 1.0 -- 20:00:38.244 DEBUG [21901]: Connecting to database... -- 20:00:38.244 DEBUG [21901]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:00:38.244 SQL [21901]: pgsql_db_connect() -- 20:00:38.248 DEBUG [21901]: Database connection successful -- 20:00:38.248 INFO [21901]: _SERVER found -- 20:00:38.248 INFO [21901]: REMOTE_ADDR = 192.168.1.13 -- 20:00:38.248 INFO [21901]: SERVER_NAME = oameye.works.coregrade.com -- 20:00:38.248 INFO [21901]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1003832711.1581700905; ci_session=ffe94k0b9b68urorm0iqo07hcbkjcd75 -- 20:00:38.248 INFO [21901]: QUERY_STRING = /member/viewCardAddAction -- 20:00:38.248 INFO [21901]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:00:38.279 INFO [21901]: COREGRADE is stopping... -- 20:00:38.279 DEBUG [21901]: Closing database connection -- 20:00:38.279 SQL [21901]: pgsql_close() -- 20:06:15.976 INFO [22353]: COREGRADE is starting... -- 20:06:15.976 INFO [22353]: Version from config: 1.0 -- 20:06:15.976 DEBUG [22353]: Connecting to database... -- 20:06:15.976 DEBUG [22353]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:06:15.976 SQL [22353]: pgsql_db_connect() -- 20:06:16.019 INFO [22353]: COREGRADE is starting... -- 20:06:16.020 INFO [22353]: Version from config: 1.0 -- 20:06:16.020 DEBUG [22353]: Connecting to database... -- 20:06:16.020 DEBUG [22353]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:06:16.020 SQL [22353]: pgsql_db_connect() -- 20:06:16.024 DEBUG [22353]: Database connection successful -- 20:06:16.024 INFO [22353]: _SERVER found -- 20:06:16.024 INFO [22353]: REMOTE_ADDR = 192.168.1.13 -- 20:06:16.024 INFO [22353]: SERVER_NAME = oameye.works.coregrade.com -- 20:06:16.024 INFO [22353]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586 -- 20:06:16.024 INFO [22353]: QUERY_STRING = vlnk=RS-707014912-676036864-1237593856 -- 20:06:16.024 INFO [22353]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:06:16.024 INFO [22353]: SystemStatus()09-09-********~************ -- 20:06:16.024 INFO [22353]: long coregrade_api_main(CVars in, CVars &out) -- 20:06:16.024 INFO [22353]: long coregrade_api_main(CVars in, CVars &out) action =11020 -- 20:06:16.024 INFO [22353]: account calls -- 20:06:16.024 INFO [22353]: account_calls() -- 20:06:16.024 INFO [22353]: CreateCoreGradeAccount() -- 20:06:16.024 FLOG_MAX [22353]: REQ_STRING(verify_link) -- 20:06:16.024 FLOG_MAX [22353]: long load_db_record( CVars &rec, const char * query, ... ) -- 20:06:16.024 SQL [22353]: pgsql_query() -- 20:06:16.024 SQL [22353]: About to run query: -- 20:06:16.024 SQL [22353]: SELECT *,id AS pending_id FROM members_pending WHERE verify_link ='RS-707014912-676036864-1237593856' AND expire > now() LIMIT 1 -- 20:06:16.027 SQL [22353]: Found rows: 1 -- 20:06:16.027 FLOG_MAX [22353]: load_db_record(SELECT *,id AS pending_id FROM members_pending WHERE verify_link ='RS-707014912-676036864-1237593856' AND expire > now() LIMIT 1) num_cols=14 -- 20:06:16.027 FLOG_MAX [22353]: insert_db_record() -- 20:06:16.027 SQL [22353]: pgsql_exec() -- 20:06:16.027 SQL [22353]: About to run query: -- 20:06:16.027 SQL [22353]: INSERT INTO members (email,firstname,lastname,loc,password,phone,username) VALUES ('tokunbo.lawal1+9570@gmail.com','Olu','Amey','192.168.1.13','25d55ad283aa400af464c76d713c07ad','','tokunbo.lawal1+9570@gmail.com') -- 20:06:16.029 SQL [22353]: PQcmdTuples: 1 -- 20:06:16.029 SQL [22353]: Affected rows: 1 -- 20:06:16.029 FLOG_MAX [22353]: SELECT currval('members_id_seq') -- 20:06:16.029 SQL [22353]: pgsql_query() -- 20:06:16.029 SQL [22353]: About to run query: -- 20:06:16.029 SQL [22353]: SELECT currval('members_id_seq') -- 20:06:16.030 SQL [22353]: Found rows: 1 -- 20:06:16.030 SQL [22353]: pgsql_query() -- 20:06:16.030 SQL [22353]: About to run query: -- 20:06:16.030 SQL [22353]: UPDATE members_pending SET status = 5,verified=now() WHERE id = 19 -- 20:06:16.031 SQL [22353]: Found rows: 0 -- 20:06:16.031 SQL [22353]: Found rows: 0 -- 20:06:16.031 INFO [22353]: /CreateCoreGradeAccount() -- 20:06:16.031 INFO [22353]: RET: added=2020-02-14 19:48:00.076747 -- 20:06:16.031 INFO [22353]: RET: email=tokunbo.lawal1+9570@gmail.com -- 20:06:16.031 INFO [22353]: RET: expire=2020-02-16 19:48:00.076747 -- 20:06:16.031 INFO [22353]: RET: firstname=Olu -- 20:06:16.031 INFO [22353]: RET: id=19 -- 20:06:16.031 INFO [22353]: RET: lastname=Amey -- 20:06:16.031 INFO [22353]: RET: loc=192.168.1.13 -- 20:06:16.031 INFO [22353]: RET: member_id=11 -- 20:06:16.031 INFO [22353]: RET: password=25d55ad283aa400af464c76d713c07ad -- 20:06:16.031 INFO [22353]: RET: pending_id=19 -- 20:06:16.031 INFO [22353]: RET: phone= -- 20:06:16.031 INFO [22353]: RET: result=YES I GET TO BACK END -- 20:06:16.031 INFO [22353]: RET: status=prepare to create account -- 20:06:16.031 INFO [22353]: RET: username=tokunbo.lawal1+9570@gmail.com -- 20:06:16.031 INFO [22353]: RET: verified= -- 20:06:16.031 INFO [22353]: RET: verify_link=RS-707014912-676036864-1237593856 -- 20:06:16.032 INFO [22353]: COREGRADE is stopping... -- 20:06:16.033 DEBUG [22353]: Closing database connection -- 20:06:16.033 SQL [22353]: pgsql_close() -- 20:06:15.981 DEBUG [22353]: Database connection successful -- 20:06:15.981 INFO [22353]: _SERVER found -- 20:06:15.981 INFO [22353]: REMOTE_ADDR = 192.168.1.13 -- 20:06:15.981 INFO [22353]: SERVER_NAME = oameye.works.coregrade.com -- 20:06:15.981 INFO [22353]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586 -- 20:06:15.981 INFO [22353]: QUERY_STRING = /vemail -- 20:06:15.981 INFO [22353]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:06:16.033 INFO [22353]: COREGRADE is stopping... -- 20:06:16.033 DEBUG [22353]: Closing database connection -- 20:06:16.033 SQL [22353]: pgsql_close() -- 20:06:16.658 INFO [22353]: COREGRADE is starting... -- 20:06:16.658 INFO [22353]: Version from config: 1.0 -- 20:06:16.658 DEBUG [22353]: Connecting to database... -- 20:06:16.658 DEBUG [22353]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:06:16.659 SQL [22353]: pgsql_db_connect() -- 20:06:16.663 DEBUG [22353]: Database connection successful -- 20:06:16.663 INFO [22353]: _SERVER found -- 20:06:16.663 INFO [22353]: REMOTE_ADDR = 192.168.1.13 -- 20:06:16.663 INFO [22353]: SERVER_NAME = oameye.works.coregrade.com -- 20:06:16.663 INFO [22353]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=8cdq52ugg779gmnt2jlgo8boasqfessm -- 20:06:16.663 INFO [22353]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 20:06:16.663 INFO [22353]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:06:16.674 INFO [22353]: COREGRADE is stopping... -- 20:06:16.674 DEBUG [22353]: Closing database connection -- 20:06:16.674 SQL [22353]: pgsql_close() -- 20:06:16.775 INFO [22352]: COREGRADE is starting... -- 20:06:16.775 INFO [22352]: Version from config: 1.0 -- 20:06:16.775 DEBUG [22352]: Connecting to database... -- 20:06:16.775 DEBUG [22352]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:06:16.775 SQL [22352]: pgsql_db_connect() -- 20:06:16.779 DEBUG [22352]: Database connection successful -- 20:06:16.779 INFO [22352]: _SERVER found -- 20:06:16.779 INFO [22352]: REMOTE_ADDR = 192.168.1.13 -- 20:06:16.779 INFO [22352]: SERVER_NAME = oameye.works.coregrade.com -- 20:06:16.779 INFO [22352]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=8cdq52ugg779gmnt2jlgo8boasqfessm -- 20:06:16.779 INFO [22352]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:06:16.779 INFO [22352]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:06:16.792 INFO [22352]: COREGRADE is stopping... -- 20:06:16.792 DEBUG [22352]: Closing database connection -- 20:06:16.792 SQL [22352]: pgsql_close() -- 20:10:04.116 INFO [21337]: COREGRADE is starting... -- 20:10:04.116 INFO [21337]: Version from config: 1.0 -- 20:10:04.116 DEBUG [21337]: Connecting to database... -- 20:10:04.116 DEBUG [21337]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:10:04.116 SQL [21337]: pgsql_db_connect() -- 20:10:04.120 DEBUG [21337]: Database connection successful -- 20:10:04.120 INFO [21337]: _SERVER found -- 20:10:04.120 INFO [21337]: REMOTE_ADDR = 192.168.1.13 -- 20:10:04.120 INFO [21337]: SERVER_NAME = oameye.works.coregrade.com -- 20:10:04.120 INFO [21337]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1003832711.1581700905; ci_session=ffe94k0b9b68urorm0iqo07hcbkjcd75 -- 20:10:04.120 INFO [21337]: QUERY_STRING = /member/page -- 20:10:04.120 INFO [21337]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:10:04.169 INFO [21337]: COREGRADE is stopping... -- 20:10:04.169 DEBUG [21337]: Closing database connection -- 20:10:04.169 SQL [21337]: pgsql_close() -- 20:10:04.893 INFO [21337]: COREGRADE is starting... -- 20:10:04.894 INFO [21337]: Version from config: 1.0 -- 20:10:04.894 DEBUG [21337]: Connecting to database... -- 20:10:04.894 DEBUG [21337]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:10:04.894 SQL [21337]: pgsql_db_connect() -- 20:10:04.905 INFO [21902]: COREGRADE is starting... -- 20:10:04.906 INFO [21902]: Version from config: 1.0 -- 20:10:04.906 DEBUG [21902]: Connecting to database... -- 20:10:04.906 DEBUG [21902]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:10:04.906 SQL [21902]: pgsql_db_connect() -- 20:10:04.898 DEBUG [21337]: Database connection successful -- 20:10:04.898 INFO [21337]: _SERVER found -- 20:10:04.898 INFO [21337]: REMOTE_ADDR = 192.168.1.13 -- 20:10:04.898 INFO [21337]: SERVER_NAME = oameye.works.coregrade.com -- 20:10:04.898 INFO [21337]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1003832711.1581700905; ci_session=leslak9cpg5cnh58s54rvh3ktld2u33b -- 20:10:04.898 INFO [21337]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 20:10:04.898 INFO [21337]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:10:04.911 INFO [21337]: COREGRADE is stopping... -- 20:10:04.911 DEBUG [21337]: Closing database connection -- 20:10:04.911 SQL [21337]: pgsql_close() -- 20:10:04.910 DEBUG [21902]: Database connection successful -- 20:10:04.910 INFO [21902]: _SERVER found -- 20:10:04.910 INFO [21902]: REMOTE_ADDR = 192.168.1.13 -- 20:10:04.910 INFO [21902]: SERVER_NAME = oameye.works.coregrade.com -- 20:10:04.910 INFO [21902]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1003832711.1581700905; ci_session=leslak9cpg5cnh58s54rvh3ktld2u33b -- 20:10:04.910 INFO [21902]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 20:10:04.910 INFO [21902]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:10:04.923 INFO [21902]: COREGRADE is stopping... -- 20:10:04.923 DEBUG [21902]: Closing database connection -- 20:10:04.923 SQL [21902]: pgsql_close() -- 20:10:04.949 INFO [21337]: COREGRADE is starting... -- 20:10:04.949 INFO [21337]: Version from config: 1.0 -- 20:10:04.949 DEBUG [21337]: Connecting to database... -- 20:10:04.949 DEBUG [21337]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:10:04.949 SQL [21337]: pgsql_db_connect() -- 20:10:04.953 DEBUG [21337]: Database connection successful -- 20:10:04.953 INFO [21337]: _SERVER found -- 20:10:04.953 INFO [21337]: REMOTE_ADDR = 192.168.1.13 -- 20:10:04.953 INFO [21337]: SERVER_NAME = oameye.works.coregrade.com -- 20:10:04.953 INFO [21337]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1003832711.1581700905; ci_session=leslak9cpg5cnh58s54rvh3ktld2u33b -- 20:10:04.953 INFO [21337]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:10:04.953 INFO [21337]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:10:04.965 INFO [21337]: COREGRADE is stopping... -- 20:10:04.966 DEBUG [21337]: Closing database connection -- 20:10:04.966 SQL [21337]: pgsql_close() -- 20:10:08.837 INFO [21337]: COREGRADE is starting... -- 20:10:08.837 INFO [21337]: Version from config: 1.0 -- 20:10:08.837 DEBUG [21337]: Connecting to database... -- 20:10:08.837 DEBUG [21337]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:10:08.837 SQL [21337]: pgsql_db_connect() -- 20:10:08.841 DEBUG [21337]: Database connection successful -- 20:10:08.841 INFO [21337]: _SERVER found -- 20:10:08.841 INFO [21337]: REMOTE_ADDR = 192.168.1.13 -- 20:10:08.841 INFO [21337]: SERVER_NAME = oameye.works.coregrade.com -- 20:10:08.841 INFO [21337]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1003832711.1581700905; ci_session=leslak9cpg5cnh58s54rvh3ktld2u33b -- 20:10:08.841 INFO [21337]: QUERY_STRING = /member/viewCardAddAction -- 20:10:08.841 INFO [21337]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:10:08.876 INFO [21337]: COREGRADE is stopping... -- 20:10:08.876 DEBUG [21337]: Closing database connection -- 20:10:08.876 SQL [21337]: pgsql_close() -- 20:10:15.348 INFO [21335]: COREGRADE is starting... -- 20:10:15.348 INFO [21335]: Version from config: 1.0 -- 20:10:15.348 DEBUG [21335]: Connecting to database... -- 20:10:15.349 DEBUG [21335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:10:15.349 SQL [21335]: pgsql_db_connect() -- 20:10:15.353 DEBUG [21335]: Database connection successful -- 20:10:15.353 INFO [21335]: _SERVER found -- 20:10:15.353 INFO [21335]: REMOTE_ADDR = 192.168.1.13 -- 20:10:15.353 INFO [21335]: SERVER_NAME = oameye.works.coregrade.com -- 20:10:15.353 INFO [21335]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1003832711.1581700905; ci_session=leslak9cpg5cnh58s54rvh3ktld2u33b -- 20:10:15.353 INFO [21335]: QUERY_STRING = /member/page -- 20:10:15.353 INFO [21335]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:10:15.395 INFO [21335]: COREGRADE is stopping... -- 20:10:15.395 DEBUG [21335]: Closing database connection -- 20:10:15.395 SQL [21335]: pgsql_close() -- 20:10:15.717 INFO [21335]: COREGRADE is starting... -- 20:10:15.717 INFO [21335]: Version from config: 1.0 -- 20:10:15.717 DEBUG [21335]: Connecting to database... -- 20:10:15.718 DEBUG [21335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:10:15.718 SQL [21335]: pgsql_db_connect() -- 20:10:15.722 DEBUG [21335]: Database connection successful -- 20:10:15.722 INFO [21335]: _SERVER found -- 20:10:15.722 INFO [21335]: REMOTE_ADDR = 192.168.1.13 -- 20:10:15.722 INFO [21335]: SERVER_NAME = oameye.works.coregrade.com -- 20:10:15.722 INFO [21335]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1003832711.1581700905; ci_session=leslak9cpg5cnh58s54rvh3ktld2u33b -- 20:10:15.722 INFO [21335]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 20:10:15.722 INFO [21335]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:10:15.733 INFO [21335]: COREGRADE is stopping... -- 20:10:15.733 DEBUG [21335]: Closing database connection -- 20:10:15.733 SQL [21335]: pgsql_close() -- 20:10:15.746 INFO [21335]: COREGRADE is starting... -- 20:10:15.746 INFO [21335]: Version from config: 1.0 -- 20:10:15.746 DEBUG [21335]: Connecting to database... -- 20:10:15.746 DEBUG [21335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:10:15.746 SQL [21335]: pgsql_db_connect() -- 20:10:15.750 DEBUG [21335]: Database connection successful -- 20:10:15.750 INFO [21335]: _SERVER found -- 20:10:15.750 INFO [21335]: REMOTE_ADDR = 192.168.1.13 -- 20:10:15.750 INFO [21335]: SERVER_NAME = oameye.works.coregrade.com -- 20:10:15.750 INFO [21335]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1003832711.1581700905; ci_session=leslak9cpg5cnh58s54rvh3ktld2u33b -- 20:10:15.750 INFO [21335]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 20:10:15.750 INFO [21335]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:10:15.761 INFO [21335]: COREGRADE is stopping... -- 20:10:15.761 DEBUG [21335]: Closing database connection -- 20:10:15.761 SQL [21335]: pgsql_close() -- 20:10:15.784 INFO [21335]: COREGRADE is starting... -- 20:10:15.785 INFO [21335]: Version from config: 1.0 -- 20:10:15.785 DEBUG [21335]: Connecting to database... -- 20:10:15.785 DEBUG [21335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:10:15.785 SQL [21335]: pgsql_db_connect() -- 20:10:15.788 DEBUG [21335]: Database connection successful -- 20:10:15.788 INFO [21335]: _SERVER found -- 20:10:15.788 INFO [21335]: REMOTE_ADDR = 192.168.1.13 -- 20:10:15.788 INFO [21335]: SERVER_NAME = oameye.works.coregrade.com -- 20:10:15.788 INFO [21335]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1003832711.1581700905; ci_session=leslak9cpg5cnh58s54rvh3ktld2u33b -- 20:10:15.788 INFO [21335]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:10:15.788 INFO [21335]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:10:15.799 INFO [21335]: COREGRADE is stopping... -- 20:10:15.799 DEBUG [21335]: Closing database connection -- 20:10:15.799 SQL [21335]: pgsql_close() -- 20:25:41.596 INFO [21338]: COREGRADE is starting... -- 20:25:41.597 INFO [21338]: Version from config: 1.0 -- 20:25:41.597 DEBUG [21338]: Connecting to database... -- 20:25:41.597 DEBUG [21338]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:25:41.597 SQL [21338]: pgsql_db_connect() -- 20:25:41.601 DEBUG [21338]: Database connection successful -- 20:25:41.601 INFO [21338]: _SERVER found -- 20:25:41.601 INFO [21338]: REMOTE_ADDR = 192.168.1.13 -- 20:25:41.601 INFO [21338]: SERVER_NAME = oameye.works.coregrade.com -- 20:25:41.601 INFO [21338]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1003832711.1581700905; ci_session=leslak9cpg5cnh58s54rvh3ktld2u33b -- 20:25:41.601 INFO [21338]: QUERY_STRING = /home/contactus -- 20:25:41.601 INFO [21338]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:25:41.636 INFO [21338]: COREGRADE is stopping... -- 20:25:41.636 DEBUG [21338]: Closing database connection -- 20:25:41.636 SQL [21338]: pgsql_close() -- 20:25:41.897 INFO [21338]: COREGRADE is starting... -- 20:25:41.897 INFO [21338]: Version from config: 1.0 -- 20:25:41.897 DEBUG [21338]: Connecting to database... -- 20:25:41.897 DEBUG [21338]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:25:41.897 SQL [21338]: pgsql_db_connect() -- 20:25:41.902 DEBUG [21338]: Database connection successful -- 20:25:41.902 INFO [21338]: _SERVER found -- 20:25:41.902 INFO [21338]: REMOTE_ADDR = 192.168.1.13 -- 20:25:41.902 INFO [21338]: SERVER_NAME = oameye.works.coregrade.com -- 20:25:41.902 INFO [21338]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1003832711.1581700905; ci_session=n32rt59mvcgl05d9rcmtfp7c8env8j1q -- 20:25:41.902 INFO [21338]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 20:25:41.902 INFO [21338]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:25:41.913 INFO [21338]: COREGRADE is stopping... -- 20:25:41.913 DEBUG [21338]: Closing database connection -- 20:25:41.913 SQL [21338]: pgsql_close() -- 20:25:41.933 INFO [21336]: COREGRADE is starting... -- 20:25:41.933 INFO [21336]: Version from config: 1.0 -- 20:25:41.933 DEBUG [21336]: Connecting to database... -- 20:25:41.933 DEBUG [21336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:25:41.933 SQL [21336]: pgsql_db_connect() -- 20:25:41.937 DEBUG [21336]: Database connection successful -- 20:25:41.937 INFO [21336]: _SERVER found -- 20:25:41.937 INFO [21336]: REMOTE_ADDR = 192.168.1.13 -- 20:25:41.937 INFO [21336]: SERVER_NAME = oameye.works.coregrade.com -- 20:25:41.937 INFO [21336]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1003832711.1581700905; ci_session=n32rt59mvcgl05d9rcmtfp7c8env8j1q -- 20:25:41.937 INFO [21336]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:25:41.937 INFO [21336]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:25:41.950 INFO [21336]: COREGRADE is stopping... -- 20:25:41.951 DEBUG [21336]: Closing database connection -- 20:25:41.951 SQL [21336]: pgsql_close() -- 22:25:12.346 INFO [21334]: COREGRADE is starting... -- 22:25:12.348 INFO [21334]: Version from config: 1.0 -- 22:25:12.348 DEBUG [21334]: Connecting to database... -- 22:25:12.348 DEBUG [21334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:25:12.349 SQL [21334]: pgsql_db_connect() -- 22:25:12.353 DEBUG [21334]: Database connection successful -- 22:25:12.353 INFO [21334]: _SERVER found -- 22:25:12.353 INFO [21334]: REMOTE_ADDR = 192.168.1.13 -- 22:25:12.353 INFO [21334]: SERVER_NAME = oameye.works.coregrade.com -- 22:25:12.353 INFO [21334]: QUERY_STRING = /favicon.ico -- 22:25:12.353 INFO [21334]: HTTP_X_FORWARDED_FOR = 71.6.167.142 -- 22:25:12.368 INFO [21334]: COREGRADE is stopping... -- 22:25:12.368 DEBUG [21334]: Closing database connection -- 22:25:12.368 SQL [21334]: pgsql_close() -- 22:25:16.354 INFO [21901]: COREGRADE is starting... -- 22:25:16.355 INFO [21901]: Version from config: 1.0 -- 22:25:16.355 DEBUG [21901]: Connecting to database... -- 22:25:16.355 DEBUG [21901]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:25:16.355 SQL [21901]: pgsql_db_connect() -- 22:25:16.359 DEBUG [21901]: Database connection successful -- 22:25:16.359 INFO [21901]: _SERVER found -- 22:25:16.359 INFO [21901]: REMOTE_ADDR = 192.168.1.13 -- 22:25:16.359 INFO [21901]: SERVER_NAME = oameye.works.coregrade.com -- 22:25:16.359 INFO [21901]: QUERY_STRING = /favicon.ico -- 22:25:16.359 INFO [21901]: HTTP_X_FORWARDED_FOR = 71.6.167.142 -- 22:25:16.372 INFO [21901]: COREGRADE is stopping... -- 22:25:16.372 DEBUG [21901]: Closing database connection -- 22:25:16.372 SQL [21901]: pgsql_close() -- 22:25:18.513 INFO [22354]: COREGRADE is starting... -- 22:25:18.513 INFO [22354]: Version from config: 1.0 -- 22:25:18.513 DEBUG [22354]: Connecting to database... -- 22:25:18.513 DEBUG [22354]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:25:18.513 SQL [22354]: pgsql_db_connect() -- 22:25:18.517 DEBUG [22354]: Database connection successful -- 22:25:18.517 INFO [22354]: _SERVER found -- 22:25:18.517 INFO [22354]: REMOTE_ADDR = 192.168.1.13 -- 22:25:18.517 INFO [22354]: SERVER_NAME = oameye.works.coregrade.com -- 22:25:18.517 INFO [22354]: QUERY_STRING = -- 22:25:18.517 INFO [22354]: HTTP_X_FORWARDED_FOR = 71.6.167.142 -- 22:25:18.562 INFO [22354]: COREGRADE is stopping... -- 22:25:18.562 DEBUG [22354]: Closing database connection -- 22:25:18.562 SQL [22354]: pgsql_close() -- 22:25:24.302 INFO [22353]: COREGRADE is starting... -- 22:25:24.303 INFO [22353]: Version from config: 1.0 -- 22:25:24.303 DEBUG [22353]: Connecting to database... -- 22:25:24.303 DEBUG [22353]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:25:24.303 SQL [22353]: pgsql_db_connect() -- 22:25:24.307 DEBUG [22353]: Database connection successful -- 22:25:24.307 INFO [22353]: _SERVER found -- 22:25:24.307 INFO [22353]: REMOTE_ADDR = 192.168.1.13 -- 22:25:24.307 INFO [22353]: SERVER_NAME = oameye.works.coregrade.com -- 22:25:24.307 INFO [22353]: QUERY_STRING = /robots.txt -- 22:25:24.307 INFO [22353]: HTTP_X_FORWARDED_FOR = 71.6.167.142 -- 22:25:24.319 INFO [22353]: COREGRADE is stopping... -- 22:25:24.319 DEBUG [22353]: Closing database connection -- 22:25:24.319 SQL [22353]: pgsql_close() -- 22:25:37.005 INFO [22352]: COREGRADE is starting... -- 22:25:37.005 INFO [22352]: Version from config: 1.0 -- 22:25:37.005 DEBUG [22352]: Connecting to database... -- 22:25:37.005 DEBUG [22352]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:25:37.005 SQL [22352]: pgsql_db_connect() -- 22:25:37.010 DEBUG [22352]: Database connection successful -- 22:25:37.010 INFO [22352]: _SERVER found -- 22:25:37.010 INFO [22352]: REMOTE_ADDR = 192.168.1.13 -- 22:25:37.010 INFO [22352]: SERVER_NAME = oameye.works.coregrade.com -- 22:25:37.010 INFO [22352]: QUERY_STRING = /.well-known/security.txt -- 22:25:37.010 INFO [22352]: HTTP_X_FORWARDED_FOR = 71.6.167.142 -- 22:25:37.023 INFO [22352]: COREGRADE is stopping... -- 22:25:37.023 DEBUG [22352]: Closing database connection -- 22:25:37.023 SQL [22352]: pgsql_close() -- 22:43:50.347 INFO [21337]: COREGRADE is starting... -- 22:43:50.349 INFO [21337]: Version from config: 1.0 -- 22:43:50.349 DEBUG [21337]: Connecting to database... -- 22:43:50.349 DEBUG [21337]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:43:50.349 SQL [21337]: pgsql_db_connect() -- 22:43:50.354 DEBUG [21337]: Database connection successful -- 22:43:50.354 INFO [21337]: _SERVER found -- 22:43:50.354 INFO [21337]: REMOTE_ADDR = 192.168.1.13 -- 22:43:50.354 INFO [21337]: SERVER_NAME = oameye.works.coregrade.com -- 22:43:50.354 INFO [21337]: QUERY_STRING = /TP/public/index.php -- 22:43:50.354 INFO [21337]: HTTP_X_FORWARDED_FOR = 35.220.223.204 -- 22:43:50.368 INFO [21337]: COREGRADE is stopping... -- 22:43:50.368 DEBUG [21337]: Closing database connection -- 22:43:50.368 SQL [21337]: pgsql_close() -- 22:43:51.549 INFO [21337]: COREGRADE is starting... -- 22:43:51.549 INFO [21337]: Version from config: 1.0 -- 22:43:51.550 DEBUG [21337]: Connecting to database... -- 22:43:51.550 DEBUG [21337]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:43:51.550 SQL [21337]: pgsql_db_connect() -- 22:43:51.554 DEBUG [21337]: Database connection successful -- 22:43:51.554 INFO [21337]: _SERVER found -- 22:43:51.554 INFO [21337]: REMOTE_ADDR = 192.168.1.13 -- 22:43:51.554 INFO [21337]: SERVER_NAME = oameye.works.coregrade.com -- 22:43:51.554 INFO [21337]: QUERY_STRING = /TP/index.php -- 22:43:51.554 INFO [21337]: HTTP_X_FORWARDED_FOR = 35.220.223.204 -- 22:43:51.566 INFO [21337]: COREGRADE is stopping... -- 22:43:51.566 DEBUG [21337]: Closing database connection -- 22:43:51.566 SQL [21337]: pgsql_close() -- 22:43:52.758 INFO [21337]: COREGRADE is starting... -- 22:43:52.759 INFO [21337]: Version from config: 1.0 -- 22:43:52.759 DEBUG [21337]: Connecting to database... -- 22:43:52.759 DEBUG [21337]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:43:52.759 SQL [21337]: pgsql_db_connect() -- 22:43:52.763 DEBUG [21337]: Database connection successful -- 22:43:52.763 INFO [21337]: _SERVER found -- 22:43:52.763 INFO [21337]: REMOTE_ADDR = 192.168.1.13 -- 22:43:52.763 INFO [21337]: SERVER_NAME = oameye.works.coregrade.com -- 22:43:52.763 INFO [21337]: QUERY_STRING = /thinkphp/html/public/index.php -- 22:43:52.763 INFO [21337]: HTTP_X_FORWARDED_FOR = 35.220.223.204 -- 22:43:52.775 INFO [21337]: COREGRADE is stopping... -- 22:43:52.775 DEBUG [21337]: Closing database connection -- 22:43:52.775 SQL [21337]: pgsql_close() -- 22:43:53.963 INFO [21337]: COREGRADE is starting... -- 22:43:53.963 INFO [21337]: Version from config: 1.0 -- 22:43:53.963 DEBUG [21337]: Connecting to database... -- 22:43:53.963 DEBUG [21337]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:43:53.963 SQL [21337]: pgsql_db_connect() -- 22:43:53.967 DEBUG [21337]: Database connection successful -- 22:43:53.967 INFO [21337]: _SERVER found -- 22:43:53.967 INFO [21337]: REMOTE_ADDR = 192.168.1.13 -- 22:43:53.967 INFO [21337]: SERVER_NAME = oameye.works.coregrade.com -- 22:43:53.967 INFO [21337]: QUERY_STRING = /html/public/index.php -- 22:43:53.967 INFO [21337]: HTTP_X_FORWARDED_FOR = 35.220.223.204 -- 22:43:53.980 INFO [21337]: COREGRADE is stopping... -- 22:43:53.980 DEBUG [21337]: Closing database connection -- 22:43:53.980 SQL [21337]: pgsql_close() -- 22:43:55.166 INFO [21335]: COREGRADE is starting... -- 22:43:55.166 INFO [21335]: Version from config: 1.0 -- 22:43:55.166 DEBUG [21335]: Connecting to database... -- 22:43:55.166 DEBUG [21335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:43:55.166 SQL [21335]: pgsql_db_connect() -- 22:43:55.170 DEBUG [21335]: Database connection successful -- 22:43:55.170 INFO [21335]: _SERVER found -- 22:43:55.170 INFO [21335]: REMOTE_ADDR = 192.168.1.13 -- 22:43:55.170 INFO [21335]: SERVER_NAME = oameye.works.coregrade.com -- 22:43:55.170 INFO [21335]: QUERY_STRING = /public/index.php -- 22:43:55.170 INFO [21335]: HTTP_X_FORWARDED_FOR = 35.220.223.204 -- 22:43:55.183 INFO [21335]: COREGRADE is stopping... -- 22:43:55.183 DEBUG [21335]: Closing database connection -- 22:43:55.183 SQL [21335]: pgsql_close() -- 22:43:56.362 INFO [21337]: COREGRADE is starting... -- 22:43:56.363 INFO [21337]: Version from config: 1.0 -- 22:43:56.363 DEBUG [21337]: Connecting to database... -- 22:43:56.363 DEBUG [21337]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:43:56.363 SQL [21337]: pgsql_db_connect() -- 22:43:56.367 DEBUG [21337]: Database connection successful -- 22:43:56.367 INFO [21337]: _SERVER found -- 22:43:56.367 INFO [21337]: REMOTE_ADDR = 192.168.1.13 -- 22:43:56.367 INFO [21337]: SERVER_NAME = oameye.works.coregrade.com -- 22:43:56.367 INFO [21337]: QUERY_STRING = /TP/html/public/index.php -- 22:43:56.367 INFO [21337]: HTTP_X_FORWARDED_FOR = 35.220.223.204 -- 22:43:56.379 INFO [21337]: COREGRADE is stopping... -- 22:43:56.379 DEBUG [21337]: Closing database connection -- 22:43:56.379 SQL [21337]: pgsql_close() -- 22:43:57.556 INFO [21335]: COREGRADE is starting... -- 22:43:57.557 INFO [21335]: Version from config: 1.0 -- 22:43:57.557 DEBUG [21335]: Connecting to database... -- 22:43:57.557 DEBUG [21335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:43:57.557 SQL [21335]: pgsql_db_connect() -- 22:43:57.561 DEBUG [21335]: Database connection successful -- 22:43:57.561 INFO [21335]: _SERVER found -- 22:43:57.561 INFO [21335]: REMOTE_ADDR = 192.168.1.13 -- 22:43:57.561 INFO [21335]: SERVER_NAME = oameye.works.coregrade.com -- 22:43:57.561 INFO [21335]: QUERY_STRING = /elrekt.php -- 22:43:57.561 INFO [21335]: HTTP_X_FORWARDED_FOR = 35.220.223.204 -- 22:43:57.572 INFO [21335]: COREGRADE is stopping... -- 22:43:57.572 DEBUG [21335]: Closing database connection -- 22:43:57.572 SQL [21335]: pgsql_close() -- 22:43:58.753 INFO [21337]: COREGRADE is starting... -- 22:43:58.753 INFO [21337]: Version from config: 1.0 -- 22:43:58.753 DEBUG [21337]: Connecting to database... -- 22:43:58.753 DEBUG [21337]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:43:58.754 SQL [21337]: pgsql_db_connect() -- 22:43:58.757 DEBUG [21337]: Database connection successful -- 22:43:58.757 INFO [21337]: _SERVER found -- 22:43:58.757 INFO [21337]: REMOTE_ADDR = 192.168.1.13 -- 22:43:58.757 INFO [21337]: SERVER_NAME = oameye.works.coregrade.com -- 22:43:58.757 INFO [21337]: QUERY_STRING = -- 22:43:58.757 INFO [21337]: HTTP_X_FORWARDED_FOR = 35.220.223.204 -- 22:43:58.799 INFO [21337]: COREGRADE is stopping... -- 22:43:58.799 DEBUG [21337]: Closing database connection -- 22:43:58.799 SQL [21337]: pgsql_close() -- 22:44:00.001 INFO [21337]: COREGRADE is starting... -- 22:44:00.002 INFO [21337]: Version from config: 1.0 -- 22:44:00.002 DEBUG [21337]: Connecting to database... -- 22:44:00.002 DEBUG [21337]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:44:00.002 SQL [21337]: pgsql_db_connect() -- 22:44:00.006 DEBUG [21337]: Database connection successful -- 22:44:00.006 INFO [21337]: _SERVER found -- 22:44:00.006 INFO [21337]: REMOTE_ADDR = 192.168.1.13 -- 22:44:00.006 INFO [21337]: SERVER_NAME = oameye.works.coregrade.com -- 22:44:00.006 INFO [21337]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 22:44:00.006 INFO [21337]: HTTP_X_FORWARDED_FOR = 35.220.223.204 -- 22:44:00.039 INFO [21337]: COREGRADE is stopping... -- 22:44:00.039 DEBUG [21337]: Closing database connection -- 22:44:00.039 SQL [21337]: pgsql_close() -- 22:44:01.228 INFO [21337]: COREGRADE is starting... -- 22:44:01.228 INFO [21337]: Version from config: 1.0 -- 22:44:01.228 DEBUG [21337]: Connecting to database... -- 22:44:01.229 DEBUG [21337]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:44:01.229 SQL [21337]: pgsql_db_connect() -- 22:44:01.233 DEBUG [21337]: Database connection successful -- 22:44:01.233 INFO [21337]: _SERVER found -- 22:44:01.233 INFO [21337]: REMOTE_ADDR = 192.168.1.13 -- 22:44:01.233 INFO [21337]: SERVER_NAME = oameye.works.coregrade.com -- 22:44:01.233 INFO [21337]: QUERY_STRING = s=captcha -- 22:44:01.233 INFO [21337]: HTTP_X_FORWARDED_FOR = 35.220.223.204 -- 22:44:01.264 INFO [21337]: COREGRADE is stopping... -- 22:44:01.264 DEBUG [21337]: Closing database connection -- 22:44:01.264 SQL [21337]: pgsql_close() -- 22:44:02.529 INFO [21337]: COREGRADE is starting... -- 22:44:02.530 INFO [21337]: Version from config: 1.0 -- 22:44:02.530 DEBUG [21337]: Connecting to database... -- 22:44:02.530 DEBUG [21337]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:44:02.530 SQL [21337]: pgsql_db_connect() -- 22:44:02.534 DEBUG [21337]: Database connection successful -- 22:44:02.534 INFO [21337]: _SERVER found -- 22:44:02.534 INFO [21337]: REMOTE_ADDR = 192.168.1.13 -- 22:44:02.534 INFO [21337]: SERVER_NAME = oameye.works.coregrade.com -- 22:44:02.534 INFO [21337]: QUERY_STRING = -- 22:44:02.534 INFO [21337]: HTTP_X_FORWARDED_FOR = 35.220.223.204 -- 22:44:02.565 INFO [21337]: COREGRADE is stopping... -- 22:44:02.565 DEBUG [21337]: Closing database connection -- 22:44:02.565 SQL [21337]: pgsql_close() -- 22:50:15.866 INFO [21336]: COREGRADE is starting... -- 22:50:15.867 INFO [21336]: Version from config: 1.0 -- 22:50:15.867 DEBUG [21336]: Connecting to database... -- 22:50:15.867 DEBUG [21336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:50:15.867 SQL [21336]: pgsql_db_connect() -- 22:50:15.871 DEBUG [21336]: Database connection successful -- 22:50:15.871 INFO [21336]: _SERVER found -- 22:50:15.871 INFO [21336]: REMOTE_ADDR = 192.168.1.13 -- 22:50:15.871 INFO [21336]: SERVER_NAME = oameye.works.coregrade.com -- 22:50:15.871 INFO [21336]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1003832711.1581700905 -- 22:50:15.871 INFO [21336]: QUERY_STRING = /auth -- 22:50:15.871 INFO [21336]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:50:15.911 INFO [21336]: COREGRADE is stopping... -- 22:50:15.911 DEBUG [21336]: Closing database connection -- 22:50:15.911 SQL [21336]: pgsql_close() -- 22:50:16.092 INFO [21336]: COREGRADE is starting... -- 22:50:16.092 INFO [21336]: Version from config: 1.0 -- 22:50:16.092 DEBUG [21336]: Connecting to database... -- 22:50:16.092 DEBUG [21336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:50:16.092 SQL [21336]: pgsql_db_connect() -- 22:50:16.097 DEBUG [21336]: Database connection successful -- 22:50:16.097 INFO [21336]: _SERVER found -- 22:50:16.097 INFO [21336]: REMOTE_ADDR = 192.168.1.13 -- 22:50:16.097 INFO [21336]: SERVER_NAME = oameye.works.coregrade.com -- 22:50:16.097 INFO [21336]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1003832711.1581700905; ci_session=72l00t16k79b2ovtkt7361410a7pkekh -- 22:50:16.097 INFO [21336]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:50:16.097 INFO [21336]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:50:16.108 INFO [21336]: COREGRADE is stopping... -- 22:50:16.108 DEBUG [21336]: Closing database connection -- 22:50:16.108 SQL [21336]: pgsql_close() -- 22:50:16.260 INFO [21336]: COREGRADE is starting... -- 22:50:16.260 INFO [21336]: Version from config: 1.0 -- 22:50:16.260 DEBUG [21336]: Connecting to database... -- 22:50:16.260 DEBUG [21336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:50:16.260 SQL [21336]: pgsql_db_connect() -- 22:50:16.264 DEBUG [21336]: Database connection successful -- 22:50:16.264 INFO [21336]: _SERVER found -- 22:50:16.264 INFO [21336]: REMOTE_ADDR = 192.168.1.13 -- 22:50:16.264 INFO [21336]: SERVER_NAME = oameye.works.coregrade.com -- 22:50:16.264 INFO [21336]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1003832711.1581700905; ci_session=72l00t16k79b2ovtkt7361410a7pkekh -- 22:50:16.264 INFO [21336]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 22:50:16.264 INFO [21336]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:50:16.275 INFO [21336]: COREGRADE is stopping... -- 22:50:16.275 DEBUG [21336]: Closing database connection -- 22:50:16.275 SQL [21336]: pgsql_close() -- 22:50:16.390 INFO [21336]: COREGRADE is starting... -- 22:50:16.390 INFO [21336]: Version from config: 1.0 -- 22:50:16.390 DEBUG [21336]: Connecting to database... -- 22:50:16.390 DEBUG [21336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:50:16.390 SQL [21336]: pgsql_db_connect() -- 22:50:16.394 DEBUG [21336]: Database connection successful -- 22:50:16.394 INFO [21336]: _SERVER found -- 22:50:16.394 INFO [21336]: REMOTE_ADDR = 192.168.1.13 -- 22:50:16.394 INFO [21336]: SERVER_NAME = oameye.works.coregrade.com -- 22:50:16.394 INFO [21336]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1003832711.1581700905; ci_session=72l00t16k79b2ovtkt7361410a7pkekh -- 22:50:16.394 INFO [21336]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:50:16.394 INFO [21336]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:50:16.405 INFO [21336]: COREGRADE is stopping... -- 22:50:16.405 DEBUG [21336]: Closing database connection -- 22:50:16.405 SQL [21336]: pgsql_close() -- 00:13:37.678 INFO [21338]: COREGRADE is starting... -- 00:13:37.679 INFO [21338]: Version from config: 1.0 -- 00:13:37.680 DEBUG [21338]: Connecting to database... -- 00:13:37.680 DEBUG [21338]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:13:37.680 SQL [21338]: pgsql_db_connect() -- 00:13:37.686 DEBUG [21338]: Database connection successful -- 00:13:37.686 INFO [21338]: _SERVER found -- 00:13:37.686 INFO [21338]: REMOTE_ADDR = 192.168.1.13 -- 00:13:37.686 INFO [21338]: SERVER_NAME = oameye.works.coregrade.com -- 00:13:37.686 INFO [21338]: QUERY_STRING = /TP/public/index.php -- 00:13:37.686 INFO [21338]: HTTP_X_FORWARDED_FOR = 120.79.251.131 -- 00:13:37.699 INFO [21338]: COREGRADE is stopping... -- 00:13:37.699 DEBUG [21338]: Closing database connection -- 00:13:37.699 SQL [21338]: pgsql_close() -- 02:44:44.857 INFO [2633]: COREGRADE is starting... -- 02:44:44.859 INFO [2633]: Version from config: 1.0 -- 02:44:44.859 DEBUG [2633]: Connecting to database... -- 02:44:44.859 DEBUG [2633]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:44:44.859 SQL [2633]: pgsql_db_connect() -- 02:44:44.866 DEBUG [2633]: Database connection successful -- 02:44:44.866 INFO [2633]: _SERVER found -- 02:44:44.866 INFO [2633]: REMOTE_ADDR = 192.168.1.13 -- 02:44:44.866 INFO [2633]: SERVER_NAME = oameye.works.coregrade.com -- 02:44:44.866 INFO [2633]: QUERY_STRING = /robots.txt -- 02:44:44.866 INFO [2633]: HTTP_X_FORWARDED_FOR = 66.249.66.195 -- 02:44:44.884 INFO [2633]: COREGRADE is stopping... -- 02:44:44.884 DEBUG [2633]: Closing database connection -- 02:44:44.884 SQL [2633]: pgsql_close() -- 02:44:44.979 INFO [2633]: COREGRADE is starting... -- 02:44:44.979 INFO [2633]: Version from config: 1.0 -- 02:44:44.979 DEBUG [2633]: Connecting to database... -- 02:44:44.979 DEBUG [2633]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:44:44.979 SQL [2633]: pgsql_db_connect() -- 02:44:44.983 DEBUG [2633]: Database connection successful -- 02:44:44.983 INFO [2633]: _SERVER found -- 02:44:44.983 INFO [2633]: REMOTE_ADDR = 192.168.1.13 -- 02:44:44.983 INFO [2633]: SERVER_NAME = oameye.works.coregrade.com -- 02:44:44.983 INFO [2633]: QUERY_STRING = /home/terms -- 02:44:44.983 INFO [2633]: HTTP_X_FORWARDED_FOR = 66.249.66.198 -- 02:44:45.023 INFO [2633]: COREGRADE is stopping... -- 02:44:45.023 DEBUG [2633]: Closing database connection -- 02:44:45.023 SQL [2633]: pgsql_close() -- 02:44:50.270 INFO [2634]: COREGRADE is starting... -- 02:44:50.271 INFO [2634]: Version from config: 1.0 -- 02:44:50.271 DEBUG [2634]: Connecting to database... -- 02:44:50.271 DEBUG [2634]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:44:50.271 SQL [2634]: pgsql_db_connect() -- 02:44:50.275 DEBUG [2634]: Database connection successful -- 02:44:50.275 INFO [2634]: _SERVER found -- 02:44:50.275 INFO [2634]: REMOTE_ADDR = 192.168.1.13 -- 02:44:50.275 INFO [2634]: SERVER_NAME = oameye.works.coregrade.com -- 02:44:50.275 INFO [2634]: HTTP_COOKIE = ci_session=95fruup7ulokh4n58cs8ebj1mpfsip3j -- 02:44:50.275 INFO [2634]: QUERY_STRING = /app-assets/data/locales/en.json -- 02:44:50.275 INFO [2634]: HTTP_X_FORWARDED_FOR = 66.249.66.195 -- 02:44:50.291 INFO [2634]: COREGRADE is stopping... -- 02:44:50.291 DEBUG [2634]: Closing database connection -- 02:44:50.291 SQL [2634]: pgsql_close() -- 03:02:05.218 INFO [2635]: COREGRADE is starting... -- 03:02:05.218 INFO [2635]: Version from config: 1.0 -- 03:02:05.218 DEBUG [2635]: Connecting to database... -- 03:02:05.219 DEBUG [2635]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:02:05.219 SQL [2635]: pgsql_db_connect() -- 03:02:05.224 DEBUG [2635]: Database connection successful -- 03:02:05.224 INFO [2635]: _SERVER found -- 03:02:05.224 INFO [2635]: REMOTE_ADDR = 192.168.1.13 -- 03:02:05.224 INFO [2635]: SERVER_NAME = oameye.works.coregrade.com -- 03:02:05.224 INFO [2635]: QUERY_STRING = -- 03:02:05.224 INFO [2635]: HTTP_X_FORWARDED_FOR = 66.249.66.195 -- 03:02:05.276 INFO [2635]: COREGRADE is stopping... -- 03:02:05.276 DEBUG [2635]: Closing database connection -- 03:02:05.276 SQL [2635]: pgsql_close() -- 03:37:24.580 INFO [3466]: COREGRADE is starting... -- 03:37:24.581 INFO [3466]: Version from config: 1.0 -- 03:37:24.581 DEBUG [3466]: Connecting to database... -- 03:37:24.581 DEBUG [3466]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:37:24.581 SQL [3466]: pgsql_db_connect() -- 03:37:24.585 DEBUG [3466]: Database connection successful -- 03:37:24.585 INFO [3466]: _SERVER found -- 03:37:24.585 INFO [3466]: REMOTE_ADDR = 192.168.1.13 -- 03:37:24.585 INFO [3466]: SERVER_NAME = oameye.works.coregrade.com -- 03:37:24.585 INFO [3466]: QUERY_STRING = /home/security -- 03:37:24.585 INFO [3466]: HTTP_X_FORWARDED_FOR = 66.249.66.195 -- 03:37:24.626 INFO [3466]: COREGRADE is stopping... -- 03:37:24.626 DEBUG [3466]: Closing database connection -- 03:37:24.626 SQL [3466]: pgsql_close() -- 03:37:26.547 INFO [3466]: COREGRADE is starting... -- 03:37:26.547 INFO [3466]: Version from config: 1.0 -- 03:37:26.547 DEBUG [3466]: Connecting to database... -- 03:37:26.547 DEBUG [3466]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:37:26.547 SQL [3466]: pgsql_db_connect() -- 03:37:26.551 DEBUG [3466]: Database connection successful -- 03:37:26.551 INFO [3466]: _SERVER found -- 03:37:26.551 INFO [3466]: REMOTE_ADDR = 192.168.1.13 -- 03:37:26.551 INFO [3466]: SERVER_NAME = oameye.works.coregrade.com -- 03:37:26.551 INFO [3466]: HTTP_COOKIE = ci_session=6d1lelntvuhddpso03aq8dimcv3vso71 -- 03:37:26.551 INFO [3466]: QUERY_STRING = /app-assets/data/locales/en.json -- 03:37:26.551 INFO [3466]: HTTP_X_FORWARDED_FOR = 66.249.66.195 -- 03:37:26.563 INFO [3466]: COREGRADE is stopping... -- 03:37:26.563 DEBUG [3466]: Closing database connection -- 03:37:26.563 SQL [3466]: pgsql_close() -- 03:46:52.523 INFO [3467]: COREGRADE is starting... -- 03:46:52.523 INFO [3467]: Version from config: 1.0 -- 03:46:52.523 DEBUG [3467]: Connecting to database... -- 03:46:52.523 DEBUG [3467]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:46:52.523 SQL [3467]: pgsql_db_connect() -- 03:46:52.528 DEBUG [3467]: Database connection successful -- 03:46:52.528 INFO [3467]: _SERVER found -- 03:46:52.528 INFO [3467]: REMOTE_ADDR = 192.168.1.13 -- 03:46:52.528 INFO [3467]: SERVER_NAME = oameye.works.coregrade.com -- 03:46:52.528 INFO [3467]: QUERY_STRING = /home/faq -- 03:46:52.528 INFO [3467]: HTTP_X_FORWARDED_FOR = 66.249.66.192 -- 03:46:52.570 INFO [3467]: COREGRADE is stopping... -- 03:46:52.570 DEBUG [3467]: Closing database connection -- 03:46:52.570 SQL [3467]: pgsql_close() -- 03:46:54.704 INFO [3468]: COREGRADE is starting... -- 03:46:54.704 INFO [3468]: Version from config: 1.0 -- 03:46:54.704 DEBUG [3468]: Connecting to database... -- 03:46:54.704 DEBUG [3468]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:46:54.704 SQL [3468]: pgsql_db_connect() -- 03:46:54.709 DEBUG [3468]: Database connection successful -- 03:46:54.709 INFO [3468]: _SERVER found -- 03:46:54.709 INFO [3468]: REMOTE_ADDR = 192.168.1.13 -- 03:46:54.709 INFO [3468]: SERVER_NAME = oameye.works.coregrade.com -- 03:46:54.709 INFO [3468]: HTTP_COOKIE = ci_session=qbb86onp1vk581opmr75nim84r1s88ke -- 03:46:54.709 INFO [3468]: QUERY_STRING = /app-assets/data/locales/en.json -- 03:46:54.709 INFO [3468]: HTTP_X_FORWARDED_FOR = 66.249.66.195 -- 03:46:54.724 INFO [3468]: COREGRADE is stopping... -- 03:46:54.724 DEBUG [3468]: Closing database connection -- 03:46:54.724 SQL [3468]: pgsql_close() -- 04:34:12.616 INFO [3541]: COREGRADE is starting... -- 04:34:12.617 INFO [3541]: Version from config: 1.0 -- 04:34:12.617 DEBUG [3541]: Connecting to database... -- 04:34:12.617 DEBUG [3541]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:34:12.617 SQL [3541]: pgsql_db_connect() -- 04:34:12.622 DEBUG [3541]: Database connection successful -- 04:34:12.622 INFO [3541]: _SERVER found -- 04:34:12.622 INFO [3541]: REMOTE_ADDR = 192.168.1.13 -- 04:34:12.622 INFO [3541]: SERVER_NAME = oameye.works.coregrade.com -- 04:34:12.622 INFO [3541]: QUERY_STRING = /home/contactus -- 04:34:12.622 INFO [3541]: HTTP_X_FORWARDED_FOR = 66.249.66.192 -- 04:34:12.663 INFO [3541]: COREGRADE is stopping... -- 04:34:12.663 DEBUG [3541]: Closing database connection -- 04:34:12.663 SQL [3541]: pgsql_close() -- 04:52:30.052 INFO [3466]: COREGRADE is starting... -- 04:52:30.052 INFO [3466]: Version from config: 1.0 -- 04:52:30.052 DEBUG [3466]: Connecting to database... -- 04:52:30.053 DEBUG [3466]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:52:30.053 SQL [3466]: pgsql_db_connect() -- 04:52:30.057 DEBUG [3466]: Database connection successful -- 04:52:30.057 INFO [3466]: _SERVER found -- 04:52:30.057 INFO [3466]: REMOTE_ADDR = 192.168.1.13 -- 04:52:30.057 INFO [3466]: SERVER_NAME = oameye.works.coregrade.com -- 04:52:30.057 INFO [3466]: QUERY_STRING = -- 04:52:30.057 INFO [3466]: HTTP_X_FORWARDED_FOR = 23.239.25.190 -- 04:52:30.100 INFO [3466]: COREGRADE is stopping... -- 04:52:30.100 DEBUG [3466]: Closing database connection -- 04:52:30.100 SQL [3466]: pgsql_close() -- 04:52:30.452 INFO [3466]: COREGRADE is starting... -- 04:52:30.453 INFO [3466]: Version from config: 1.0 -- 04:52:30.453 DEBUG [3466]: Connecting to database... -- 04:52:30.453 DEBUG [3466]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:52:30.453 SQL [3466]: pgsql_db_connect() -- 04:52:30.457 DEBUG [3466]: Database connection successful -- 04:52:30.457 INFO [3466]: _SERVER found -- 04:52:30.457 INFO [3466]: REMOTE_ADDR = 192.168.1.13 -- 04:52:30.457 INFO [3466]: SERVER_NAME = oameye.works.coregrade.com -- 04:52:30.457 INFO [3466]: QUERY_STRING = /assets/scripts/app.js -- 04:52:30.457 INFO [3466]: HTTP_X_FORWARDED_FOR = 23.239.25.190 -- 04:52:30.468 INFO [3466]: COREGRADE is stopping... -- 04:52:30.468 DEBUG [3466]: Closing database connection -- 04:52:30.468 SQL [3466]: pgsql_close() -- 04:52:30.511 INFO [3466]: COREGRADE is starting... -- 04:52:30.511 INFO [3466]: Version from config: 1.0 -- 04:52:30.511 DEBUG [3466]: Connecting to database... -- 04:52:30.511 DEBUG [3466]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:52:30.511 SQL [3466]: pgsql_db_connect() -- 04:52:30.515 DEBUG [3466]: Database connection successful -- 04:52:30.515 INFO [3466]: _SERVER found -- 04:52:30.515 INFO [3466]: REMOTE_ADDR = 192.168.1.13 -- 04:52:30.515 INFO [3466]: SERVER_NAME = oameye.works.coregrade.com -- 04:52:30.515 INFO [3466]: QUERY_STRING = screen=assets/umbraco/ -- 04:52:30.515 INFO [3466]: HTTP_X_FORWARDED_FOR = 23.239.25.190 -- 04:52:30.526 INFO [3466]: COREGRADE is stopping... -- 04:52:30.526 DEBUG [3466]: Closing database connection -- 04:52:30.526 SQL [3466]: pgsql_close() -- 05:49:56.590 INFO [3582]: COREGRADE is starting... -- 05:49:56.591 INFO [3582]: Version from config: 1.0 -- 05:49:56.591 DEBUG [3582]: Connecting to database... -- 05:49:56.591 DEBUG [3582]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:49:56.591 SQL [3582]: pgsql_db_connect() -- 05:49:56.597 DEBUG [3582]: Database connection successful -- 05:49:56.597 INFO [3582]: _SERVER found -- 05:49:56.597 INFO [3582]: REMOTE_ADDR = 192.168.1.13 -- 05:49:56.597 INFO [3582]: SERVER_NAME = oameye.works.coregrade.com -- 05:49:56.597 INFO [3582]: QUERY_STRING = /home/privacy -- 05:49:56.597 INFO [3582]: HTTP_X_FORWARDED_FOR = 66.249.66.192 -- 05:49:56.638 INFO [3582]: COREGRADE is stopping... -- 05:49:56.638 DEBUG [3582]: Closing database connection -- 05:49:56.638 SQL [3582]: pgsql_close() -- 05:59:24.532 INFO [3467]: COREGRADE is starting... -- 05:59:24.533 INFO [3467]: Version from config: 1.0 -- 05:59:24.533 DEBUG [3467]: Connecting to database... -- 05:59:24.533 DEBUG [3467]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:59:24.533 SQL [3467]: pgsql_db_connect() -- 05:59:24.537 DEBUG [3467]: Database connection successful -- 05:59:24.537 INFO [3467]: _SERVER found -- 05:59:24.537 INFO [3467]: REMOTE_ADDR = 192.168.1.13 -- 05:59:24.537 INFO [3467]: SERVER_NAME = oameye.works.coregrade.com -- 05:59:24.537 INFO [3467]: QUERY_STRING = /home/aboutus -- 05:59:24.537 INFO [3467]: HTTP_X_FORWARDED_FOR = 66.249.66.198 -- 05:59:24.573 INFO [3467]: COREGRADE is stopping... -- 05:59:24.573 DEBUG [3467]: Closing database connection -- 05:59:24.573 SQL [3467]: pgsql_close() -- 07:05:40.582 INFO [3468]: COREGRADE is starting... -- 07:05:40.584 INFO [3468]: Version from config: 1.0 -- 07:05:40.584 DEBUG [3468]: Connecting to database... -- 07:05:40.584 DEBUG [3468]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:05:40.585 SQL [3468]: pgsql_db_connect() -- 07:05:40.591 DEBUG [3468]: Database connection successful -- 07:05:40.591 INFO [3468]: _SERVER found -- 07:05:40.591 INFO [3468]: REMOTE_ADDR = 192.168.1.13 -- 07:05:40.591 INFO [3468]: SERVER_NAME = oameye.works.coregrade.com -- 07:05:40.591 INFO [3468]: QUERY_STRING = /home/howitworks -- 07:05:40.591 INFO [3468]: HTTP_X_FORWARDED_FOR = 66.249.66.198 -- 07:05:40.631 INFO [3468]: COREGRADE is stopping... -- 07:05:40.631 DEBUG [3468]: Closing database connection -- 07:05:40.631 SQL [3468]: pgsql_close() -- 09:05:40.973 INFO [3470]: COREGRADE is starting... -- 09:05:40.973 INFO [3470]: Version from config: 1.0 -- 09:05:40.973 DEBUG [3470]: Connecting to database... -- 09:05:40.973 DEBUG [3470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:05:40.973 SQL [3470]: pgsql_db_connect() -- 09:05:40.978 DEBUG [3470]: Database connection successful -- 09:05:40.978 INFO [3470]: _SERVER found -- 09:05:40.978 INFO [3470]: REMOTE_ADDR = 192.168.1.13 -- 09:05:40.978 INFO [3470]: SERVER_NAME = oameye.works.coregrade.com -- 09:05:40.978 INFO [3470]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965 -- 09:05:40.978 INFO [3470]: QUERY_STRING = -- 09:05:40.978 INFO [3470]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:05:41.025 INFO [3470]: COREGRADE is stopping... -- 09:05:41.025 DEBUG [3470]: Closing database connection -- 09:05:41.025 SQL [3470]: pgsql_close() -- 09:05:41.176 INFO [3470]: COREGRADE is starting... -- 09:05:41.176 INFO [3470]: Version from config: 1.0 -- 09:05:41.176 DEBUG [3470]: Connecting to database... -- 09:05:41.176 DEBUG [3470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:05:41.176 SQL [3470]: pgsql_db_connect() -- 09:05:41.184 INFO [3469]: COREGRADE is starting... -- 09:05:41.184 INFO [3469]: Version from config: 1.0 -- 09:05:41.185 DEBUG [3469]: Connecting to database... -- 09:05:41.185 DEBUG [3469]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:05:41.185 SQL [3469]: pgsql_db_connect() -- 09:05:41.180 DEBUG [3470]: Database connection successful -- 09:05:41.180 INFO [3470]: _SERVER found -- 09:05:41.180 INFO [3470]: REMOTE_ADDR = 192.168.1.13 -- 09:05:41.180 INFO [3470]: SERVER_NAME = oameye.works.coregrade.com -- 09:05:41.180 INFO [3470]: HTTP_COOKIE = ci_session=bgs3squk1eoefqqotmk9o8ijficeoaga; _ga=GA1.2.38091328.1580686965 -- 09:05:41.180 INFO [3470]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:05:41.180 INFO [3470]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:05:41.192 INFO [3470]: COREGRADE is stopping... -- 09:05:41.192 DEBUG [3470]: Closing database connection -- 09:05:41.192 SQL [3470]: pgsql_close() -- 09:05:41.189 DEBUG [3469]: Database connection successful -- 09:05:41.189 INFO [3469]: _SERVER found -- 09:05:41.189 INFO [3469]: REMOTE_ADDR = 192.168.1.13 -- 09:05:41.189 INFO [3469]: SERVER_NAME = oameye.works.coregrade.com -- 09:05:41.189 INFO [3469]: HTTP_COOKIE = ci_session=bgs3squk1eoefqqotmk9o8ijficeoaga; _ga=GA1.2.38091328.1580686965 -- 09:05:41.189 INFO [3469]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:05:41.189 INFO [3469]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:05:41.204 INFO [3469]: COREGRADE is stopping... -- 09:05:41.204 DEBUG [3469]: Closing database connection -- 09:05:41.204 SQL [3469]: pgsql_close() -- 09:59:04.146 INFO [3541]: COREGRADE is starting... -- 09:59:04.149 INFO [3541]: Version from config: 1.0 -- 09:59:04.149 DEBUG [3541]: Connecting to database... -- 09:59:04.149 DEBUG [3541]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:59:04.149 SQL [3541]: pgsql_db_connect() -- 09:59:04.157 INFO [3466]: COREGRADE is starting... -- 09:59:04.157 INFO [3466]: Version from config: 1.0 -- 09:59:04.157 DEBUG [3466]: Connecting to database... -- 09:59:04.157 DEBUG [3466]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:59:04.157 SQL [3466]: pgsql_db_connect() -- 09:59:04.162 DEBUG [3466]: Database connection successful -- 09:59:04.162 INFO [3466]: _SERVER found -- 09:59:04.162 INFO [3466]: REMOTE_ADDR = 192.168.1.13 -- 09:59:04.162 INFO [3466]: SERVER_NAME = oameye.works.coregrade.com -- 09:59:04.162 INFO [3466]: HTTP_COOKIE = ci_session=bgs3squk1eoefqqotmk9o8ijficeoaga; _ga=GA1.2.38091328.1580686965 -- 09:59:04.162 INFO [3466]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:59:04.162 INFO [3466]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:59:04.181 INFO [3466]: COREGRADE is stopping... -- 09:59:04.181 DEBUG [3466]: Closing database connection -- 09:59:04.181 SQL [3466]: pgsql_close() -- 09:59:04.186 INFO [3582]: COREGRADE is starting... -- 09:59:04.186 INFO [3582]: Version from config: 1.0 -- 09:59:04.186 DEBUG [3582]: Connecting to database... -- 09:59:04.186 DEBUG [3582]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:59:04.186 SQL [3582]: pgsql_db_connect() -- 09:59:04.190 DEBUG [3582]: Database connection successful -- 09:59:04.190 INFO [3582]: _SERVER found -- 09:59:04.190 INFO [3582]: REMOTE_ADDR = 192.168.1.13 -- 09:59:04.190 INFO [3582]: SERVER_NAME = oameye.works.coregrade.com -- 09:59:04.190 INFO [3582]: HTTP_COOKIE = ci_session=bgs3squk1eoefqqotmk9o8ijficeoaga; _ga=GA1.2.38091328.1580686965 -- 09:59:04.190 INFO [3582]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:59:04.190 INFO [3582]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:59:04.204 INFO [3582]: COREGRADE is stopping... -- 09:59:04.204 DEBUG [3582]: Closing database connection -- 09:59:04.204 SQL [3582]: pgsql_close() -- 09:59:04.160 DEBUG [3541]: Database connection successful -- 09:59:04.160 INFO [3541]: _SERVER found -- 09:59:04.160 INFO [3541]: REMOTE_ADDR = 192.168.1.13 -- 09:59:04.160 INFO [3541]: SERVER_NAME = oameye.works.coregrade.com -- 09:59:04.160 INFO [3541]: HTTP_COOKIE = ci_session=bgs3squk1eoefqqotmk9o8ijficeoaga; _ga=GA1.2.38091328.1580686965 -- 09:59:04.160 INFO [3541]: QUERY_STRING = -- 09:59:04.160 INFO [3541]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:59:04.212 INFO [3541]: COREGRADE is stopping... -- 09:59:04.212 DEBUG [3541]: Closing database connection -- 09:59:04.212 SQL [3541]: pgsql_close() -- 09:59:07.747 INFO [3541]: COREGRADE is starting... -- 09:59:07.747 INFO [3541]: Version from config: 1.0 -- 09:59:07.747 DEBUG [3541]: Connecting to database... -- 09:59:07.747 DEBUG [3541]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:59:07.748 SQL [3541]: pgsql_db_connect() -- 09:59:07.753 INFO [3582]: COREGRADE is starting... -- 09:59:07.753 INFO [3582]: Version from config: 1.0 -- 09:59:07.753 DEBUG [3582]: Connecting to database... -- 09:59:07.753 DEBUG [3582]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:59:07.753 SQL [3582]: pgsql_db_connect() -- 09:59:07.758 INFO [3466]: COREGRADE is starting... -- 09:59:07.758 INFO [3466]: Version from config: 1.0 -- 09:59:07.758 DEBUG [3466]: Connecting to database... -- 09:59:07.758 DEBUG [3466]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:59:07.759 SQL [3466]: pgsql_db_connect() -- 09:59:07.758 DEBUG [3582]: Database connection successful -- 09:59:07.758 INFO [3582]: _SERVER found -- 09:59:07.758 INFO [3582]: REMOTE_ADDR = 192.168.1.13 -- 09:59:07.758 INFO [3582]: SERVER_NAME = oameye.works.coregrade.com -- 09:59:07.758 INFO [3582]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.223192731.1581778746; ci_session=suq1umvprsvktn3ojvit3458paajj8al -- 09:59:07.758 INFO [3582]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:59:07.758 INFO [3582]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:59:07.769 INFO [3582]: COREGRADE is stopping... -- 09:59:07.769 DEBUG [3582]: Closing database connection -- 09:59:07.769 SQL [3582]: pgsql_close() -- 09:59:07.762 DEBUG [3466]: Database connection successful -- 09:59:07.762 INFO [3466]: _SERVER found -- 09:59:07.763 INFO [3466]: REMOTE_ADDR = 192.168.1.13 -- 09:59:07.763 INFO [3466]: SERVER_NAME = oameye.works.coregrade.com -- 09:59:07.763 INFO [3466]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.223192731.1581778746; ci_session=suq1umvprsvktn3ojvit3458paajj8al -- 09:59:07.763 INFO [3466]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:59:07.763 INFO [3466]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:59:07.774 INFO [3466]: COREGRADE is stopping... -- 09:59:07.774 DEBUG [3466]: Closing database connection -- 09:59:07.774 SQL [3466]: pgsql_close() -- 09:59:07.752 DEBUG [3541]: Database connection successful -- 09:59:07.752 INFO [3541]: _SERVER found -- 09:59:07.752 INFO [3541]: REMOTE_ADDR = 192.168.1.13 -- 09:59:07.752 INFO [3541]: SERVER_NAME = oameye.works.coregrade.com -- 09:59:07.752 INFO [3541]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.223192731.1581778746; ci_session=suq1umvprsvktn3ojvit3458paajj8al -- 09:59:07.752 INFO [3541]: QUERY_STRING = -- 09:59:07.752 INFO [3541]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:59:07.783 INFO [3541]: COREGRADE is stopping... -- 09:59:07.783 DEBUG [3541]: Closing database connection -- 09:59:07.783 SQL [3541]: pgsql_close() -- 16:19:39.553 INFO [3467]: COREGRADE is starting... -- 16:19:39.554 INFO [3467]: Version from config: 1.0 -- 16:19:39.554 DEBUG [3467]: Connecting to database... -- 16:19:39.554 DEBUG [3467]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:19:39.554 SQL [3467]: pgsql_db_connect() -- 16:19:39.560 DEBUG [3467]: Database connection successful -- 16:19:39.560 INFO [3467]: _SERVER found -- 16:19:39.560 INFO [3467]: REMOTE_ADDR = 192.168.1.13 -- 16:19:39.560 INFO [3467]: SERVER_NAME = oameye.works.coregrade.com -- 16:19:39.560 INFO [3467]: QUERY_STRING = /robots.txt -- 16:19:39.560 INFO [3467]: HTTP_X_FORWARDED_FOR = 66.249.66.195 -- 16:19:39.575 INFO [3467]: COREGRADE is stopping... -- 16:19:39.575 DEBUG [3467]: Closing database connection -- 16:19:39.575 SQL [3467]: pgsql_close() -- 07:34:38.699 INFO [9583]: COREGRADE is starting... -- 07:34:38.701 INFO [9583]: Version from config: 1.0 -- 07:34:38.701 DEBUG [9583]: Connecting to database... -- 07:34:38.701 DEBUG [9583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:34:38.701 SQL [9583]: pgsql_db_connect() -- 07:34:38.750 INFO [9583]: COREGRADE is starting... -- 07:34:38.750 INFO [9583]: Version from config: 1.0 -- 07:34:38.750 DEBUG [9583]: Connecting to database... -- 07:34:38.750 DEBUG [9583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:34:38.750 SQL [9583]: pgsql_db_connect() -- 07:34:38.755 DEBUG [9583]: Database connection successful -- 07:34:38.755 INFO [9583]: _SERVER found -- 07:34:38.755 INFO [9583]: REMOTE_ADDR = 192.168.1.13 -- 07:34:38.755 INFO [9583]: SERVER_NAME = oameye.works.coregrade.com -- 07:34:38.755 INFO [9583]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 07:34:38.755 INFO [9583]: QUERY_STRING = -- 07:34:38.755 INFO [9583]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:34:38.755 INFO [9583]: SystemStatus()09-09-********~************ -- 07:34:38.755 INFO [9583]: long coregrade_api_main(CVars in, CVars &out) -- 07:34:38.755 INFO [9583]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 07:34:38.755 INFO [9583]: account calls -- 07:34:38.755 INFO [9583]: account_calls() -- 07:34:38.755 INFO [9583]: LoginCoreGradeAccount() -- 07:34:38.755 FLOG_MAX [9583]: REQ_STRING(username) -- 07:34:38.755 FLOG_MAX [9583]: REQ_STRING(password) -- 07:34:38.755 FLOG_MAX [9583]: REQ_STRING(sessionid) -- 07:34:38.755 FLOG_MAX [9583]: long load_db_record( CVars &rec, const char * query, ... ) -- 07:34:38.755 SQL [9583]: pgsql_query() -- 07:34:38.755 SQL [9583]: About to run query: -- 07:34:38.755 SQL [9583]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 07:34:38.760 SQL [9583]: Found rows: 1 -- 07:34:38.760 FLOG_MAX [9583]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 07:34:38.760 INFO [9583]: long SessionCheck(long uid, const char *sessionid, int create ) -- 07:34:38.760 SQL [9583]: pgsql_exec() -- 07:34:38.760 SQL [9583]: About to run query: -- 07:34:38.760 SQL [9583]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 07:34:38.761 SQL [9583]: PQcmdTuples: 1 -- 07:34:38.761 SQL [9583]: Affected rows: 1 -- 07:34:38.761 SQL [9583]: pgsql_exec() -- 07:34:38.761 SQL [9583]: About to run query: -- 07:34:38.761 SQL [9583]: DELETE FROM members_session WHERE member_id=5 -- 07:34:38.761 SQL [9583]: PQcmdTuples: 0 -- 07:34:38.761 SQL [9583]: Affected rows: 0 -- 07:34:38.762 SQL [9583]: pgsql_query() -- 07:34:38.762 SQL [9583]: About to run query: -- 07:34:38.762 SQL [9583]: SELECT * FROM members_session WHERE member_id=5 AND session<>'4ACFACF2F42A9A250F887500CAD80701' -- 07:34:38.763 SQL [9583]: Found rows: 0 -- 07:34:38.763 SQL [9583]: Found rows: 0 -- 07:34:38.763 FLOG_MAX [9583]: long load_db_record( CVars &rec, const char * query, ... ) -- 07:34:38.763 SQL [9583]: pgsql_query() -- 07:34:38.763 SQL [9583]: About to run query: -- 07:34:38.763 SQL [9583]: SELECT * FROM members_session WHERE member_id=5 AND session='4ACFACF2F42A9A250F887500CAD80701' -- 07:34:38.763 SQL [9583]: Found rows: 0 -- 07:34:38.763 SQL [9583]: Found rows: 0 -- 07:34:38.763 FLOG_MAX [9583]: insert_db_record() -- 07:34:38.763 SQL [9583]: pgsql_exec() -- 07:34:38.763 SQL [9583]: About to run query: -- 07:34:38.763 SQL [9583]: INSERT INTO members_session (member_id,session) VALUES ('5','4ACFACF2F42A9A250F887500CAD80701') -- 07:34:38.765 SQL [9583]: PQcmdTuples: 1 -- 07:34:38.765 SQL [9583]: Affected rows: 1 -- 07:34:38.765 FLOG_MAX [9583]: SELECT currval('members_session_id_seq') -- 07:34:38.765 SQL [9583]: pgsql_query() -- 07:34:38.765 SQL [9583]: About to run query: -- 07:34:38.765 SQL [9583]: SELECT currval('members_session_id_seq') -- 07:34:38.766 SQL [9583]: Found rows: 1 -- 07:34:38.766 INFO [9583]: CreateDefaultPage() -- 07:34:38.766 FLOG_MAX [9583]: long load_db_record( CVars &rec, const char * query, ... ) -- 07:34:38.766 SQL [9583]: pgsql_query() -- 07:34:38.766 SQL [9583]: About to run query: -- 07:34:38.766 SQL [9583]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 07:34:38.766 SQL [9583]: Found rows: 1 -- 07:34:38.766 FLOG_MAX [9583]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 07:34:38.766 SQL [9583]: pgsql_query() -- 07:34:38.766 SQL [9583]: About to run query: -- 07:34:38.766 SQL [9583]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 07:34:38.767 SQL [9583]: Found rows: 1 -- 07:34:38.767 INFO [9583]: /CreateDefaultPage() -- 07:34:38.767 INFO [9583]: /LoginCoreGradeAccount() -- 07:34:38.767 INFO [9583]: RET: added=2020-02-05 06:47:23.982154 -- 07:34:38.767 INFO [9583]: RET: email=ameye+11@chiefsoft.com -- 07:34:38.767 INFO [9583]: RET: firstname=Olu -- 07:34:38.767 INFO [9583]: RET: id=5 -- 07:34:38.767 INFO [9583]: RET: last_login= -- 07:34:38.767 INFO [9583]: RET: lastname=Amey -- 07:34:38.767 INFO [9583]: RET: loc=192.168.1.13 -- 07:34:38.767 INFO [9583]: RET: member_id=5 -- 07:34:38.767 INFO [9583]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 07:34:38.767 INFO [9583]: RET: phone= -- 07:34:38.767 INFO [9583]: RET: pid= -- 07:34:38.767 INFO [9583]: RET: result=YES I GET TO BACK END -- 07:34:38.767 INFO [9583]: RET: sessionid=4ACFACF2F42A9A250F887500CAD80701 -- 07:34:38.767 INFO [9583]: RET: status=1 -- 07:34:38.767 INFO [9583]: RET: stauts=OK -- 07:34:38.767 INFO [9583]: RET: username=ameye+11@chiefsoft.com -- 07:34:38.767 INFO [9583]: RET: verified= -- 07:34:38.768 INFO [9583]: COREGRADE is stopping... -- 07:34:38.768 DEBUG [9583]: Closing database connection -- 07:34:38.768 SQL [9583]: pgsql_close() -- 07:34:38.707 DEBUG [9583]: Database connection successful -- 07:34:38.707 INFO [9583]: _SERVER found -- 07:34:38.707 INFO [9583]: REMOTE_ADDR = 192.168.1.13 -- 07:34:38.707 INFO [9583]: SERVER_NAME = oameye.works.coregrade.com -- 07:34:38.707 INFO [9583]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 07:34:38.707 INFO [9583]: QUERY_STRING = /auth -- 07:34:38.707 INFO [9583]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:34:38.769 INFO [9583]: COREGRADE is stopping... -- 07:34:38.769 DEBUG [9583]: Closing database connection -- 07:34:38.769 SQL [9583]: pgsql_close() -- 07:34:38.807 INFO [9583]: COREGRADE is starting... -- 07:34:38.807 INFO [9583]: Version from config: 1.0 -- 07:34:38.807 DEBUG [9583]: Connecting to database... -- 07:34:38.807 DEBUG [9583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:34:38.807 SQL [9583]: pgsql_db_connect() -- 07:34:38.812 DEBUG [9583]: Database connection successful -- 07:34:38.812 INFO [9583]: _SERVER found -- 07:34:38.812 INFO [9583]: REMOTE_ADDR = 192.168.1.13 -- 07:34:38.812 INFO [9583]: SERVER_NAME = oameye.works.coregrade.com -- 07:34:38.812 INFO [9583]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=svg7qbf8sr0k1lt089mr4p7jht6uunap -- 07:34:38.812 INFO [9583]: QUERY_STRING = /member/index -- 07:34:38.812 INFO [9583]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:34:38.855 INFO [9583]: COREGRADE is stopping... -- 07:34:38.855 DEBUG [9583]: Closing database connection -- 07:34:38.855 SQL [9583]: pgsql_close() -- 07:34:39.556 INFO [9583]: COREGRADE is starting... -- 07:34:39.556 INFO [9583]: Version from config: 1.0 -- 07:34:39.556 DEBUG [9583]: Connecting to database... -- 07:34:39.556 DEBUG [9583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:34:39.556 SQL [9583]: pgsql_db_connect() -- 07:34:39.561 DEBUG [9583]: Database connection successful -- 07:34:39.561 INFO [9583]: _SERVER found -- 07:34:39.561 INFO [9583]: REMOTE_ADDR = 192.168.1.13 -- 07:34:39.561 INFO [9583]: SERVER_NAME = oameye.works.coregrade.com -- 07:34:39.561 INFO [9583]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=svg7qbf8sr0k1lt089mr4p7jht6uunap -- 07:34:39.561 INFO [9583]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 07:34:39.561 INFO [9583]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:34:39.572 INFO [9583]: COREGRADE is stopping... -- 07:34:39.572 DEBUG [9583]: Closing database connection -- 07:34:39.572 SQL [9583]: pgsql_close() -- 07:34:39.702 INFO [9583]: COREGRADE is starting... -- 07:34:39.703 INFO [9583]: Version from config: 1.0 -- 07:34:39.703 DEBUG [9583]: Connecting to database... -- 07:34:39.703 DEBUG [9583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:34:39.703 SQL [9583]: pgsql_db_connect() -- 07:34:39.707 DEBUG [9583]: Database connection successful -- 07:34:39.707 INFO [9583]: _SERVER found -- 07:34:39.707 INFO [9583]: REMOTE_ADDR = 192.168.1.13 -- 07:34:39.707 INFO [9583]: SERVER_NAME = oameye.works.coregrade.com -- 07:34:39.707 INFO [9583]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=svg7qbf8sr0k1lt089mr4p7jht6uunap -- 07:34:39.707 INFO [9583]: QUERY_STRING = /app-assets/data/locales/en.json -- 07:34:39.707 INFO [9583]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:34:39.718 INFO [9583]: COREGRADE is stopping... -- 07:34:39.718 DEBUG [9583]: Closing database connection -- 07:34:39.718 SQL [9583]: pgsql_close() -- 07:34:41.408 INFO [9583]: COREGRADE is starting... -- 07:34:41.408 INFO [9583]: Version from config: 1.0 -- 07:34:41.408 DEBUG [9583]: Connecting to database... -- 07:34:41.408 DEBUG [9583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:34:41.408 SQL [9583]: pgsql_db_connect() -- 07:34:41.412 DEBUG [9583]: Database connection successful -- 07:34:41.412 INFO [9583]: _SERVER found -- 07:34:41.412 INFO [9583]: REMOTE_ADDR = 192.168.1.13 -- 07:34:41.412 INFO [9583]: SERVER_NAME = oameye.works.coregrade.com -- 07:34:41.412 INFO [9583]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=svg7qbf8sr0k1lt089mr4p7jht6uunap -- 07:34:41.412 INFO [9583]: QUERY_STRING = /member/page -- 07:34:41.412 INFO [9583]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:34:41.453 INFO [9583]: COREGRADE is stopping... -- 07:34:41.453 DEBUG [9583]: Closing database connection -- 07:34:41.453 SQL [9583]: pgsql_close() -- 07:34:41.590 INFO [9583]: COREGRADE is starting... -- 07:34:41.591 INFO [9583]: Version from config: 1.0 -- 07:34:41.591 DEBUG [9583]: Connecting to database... -- 07:34:41.591 DEBUG [9583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:34:41.591 SQL [9583]: pgsql_db_connect() -- 07:34:41.595 DEBUG [9583]: Database connection successful -- 07:34:41.595 INFO [9583]: _SERVER found -- 07:34:41.595 INFO [9583]: REMOTE_ADDR = 192.168.1.13 -- 07:34:41.595 INFO [9583]: SERVER_NAME = oameye.works.coregrade.com -- 07:34:41.595 INFO [9583]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=svg7qbf8sr0k1lt089mr4p7jht6uunap -- 07:34:41.595 INFO [9583]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 07:34:41.595 INFO [9583]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:34:41.606 INFO [9583]: COREGRADE is stopping... -- 07:34:41.606 DEBUG [9583]: Closing database connection -- 07:34:41.606 SQL [9583]: pgsql_close() -- 07:34:41.866 INFO [9583]: COREGRADE is starting... -- 07:34:41.866 INFO [9583]: Version from config: 1.0 -- 07:34:41.866 DEBUG [9583]: Connecting to database... -- 07:34:41.866 DEBUG [9583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:34:41.866 SQL [9583]: pgsql_db_connect() -- 07:34:41.870 DEBUG [9583]: Database connection successful -- 07:34:41.870 INFO [9583]: _SERVER found -- 07:34:41.870 INFO [9583]: REMOTE_ADDR = 192.168.1.13 -- 07:34:41.870 INFO [9583]: SERVER_NAME = oameye.works.coregrade.com -- 07:34:41.870 INFO [9583]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=svg7qbf8sr0k1lt089mr4p7jht6uunap -- 07:34:41.870 INFO [9583]: QUERY_STRING = /app-assets/data/locales/en.json -- 07:34:41.870 INFO [9583]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:34:41.881 INFO [9583]: COREGRADE is stopping... -- 07:34:41.881 DEBUG [9583]: Closing database connection -- 07:34:41.881 SQL [9583]: pgsql_close() -- 09:13:15.740 INFO [9587]: COREGRADE is starting... -- 09:13:15.740 INFO [9587]: Version from config: 1.0 -- 09:13:15.740 DEBUG [9587]: Connecting to database... -- 09:13:15.740 DEBUG [9587]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:13:15.740 SQL [9587]: pgsql_db_connect() -- 09:13:15.745 DEBUG [9587]: Database connection successful -- 09:13:15.745 INFO [9587]: _SERVER found -- 09:13:15.745 INFO [9587]: REMOTE_ADDR = 192.168.1.13 -- 09:13:15.745 INFO [9587]: SERVER_NAME = oameye.works.coregrade.com -- 09:13:15.745 INFO [9587]: QUERY_STRING = -- 09:13:15.745 INFO [9587]: HTTP_X_FORWARDED_FOR = 128.14.133.58 -- 09:13:15.796 INFO [9587]: COREGRADE is stopping... -- 09:13:15.796 DEBUG [9587]: Closing database connection -- 09:13:15.796 SQL [9587]: pgsql_close() -- 09:27:21.715 INFO [10721]: COREGRADE is starting... -- 09:27:21.716 INFO [10721]: Version from config: 1.0 -- 09:27:21.716 DEBUG [10721]: Connecting to database... -- 09:27:21.716 DEBUG [10721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:27:21.716 SQL [10721]: pgsql_db_connect() -- 09:27:21.720 DEBUG [10721]: Database connection successful -- 09:27:21.721 INFO [10721]: _SERVER found -- 09:27:21.721 INFO [10721]: REMOTE_ADDR = 192.168.1.13 -- 09:27:21.721 INFO [10721]: SERVER_NAME = oameye.works.coregrade.com -- 09:27:21.721 INFO [10721]: QUERY_STRING = /login_sid.lua -- 09:27:21.721 INFO [10721]: HTTP_X_FORWARDED_FOR = 37.49.230.69 -- 09:27:21.737 INFO [10721]: COREGRADE is stopping... -- 09:27:21.737 DEBUG [10721]: Closing database connection -- 09:27:21.737 SQL [10721]: pgsql_close() -- 17:12:04.209 INFO [10725]: COREGRADE is starting... -- 17:12:04.209 INFO [10725]: Version from config: 1.0 -- 17:12:04.209 DEBUG [10725]: Connecting to database... -- 17:12:04.209 DEBUG [10725]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:12:04.209 SQL [10725]: pgsql_db_connect() -- 17:12:04.214 DEBUG [10725]: Database connection successful -- 17:12:04.214 INFO [10725]: _SERVER found -- 17:12:04.214 INFO [10725]: REMOTE_ADDR = 192.168.1.13 -- 17:12:04.214 INFO [10725]: SERVER_NAME = oameye.works.coregrade.com -- 17:12:04.214 INFO [10725]: QUERY_STRING = -- 17:12:04.214 INFO [10725]: HTTP_X_FORWARDED_FOR = 144.168.162.250 -- 17:12:04.263 INFO [10725]: COREGRADE is stopping... -- 17:12:04.263 DEBUG [10725]: Closing database connection -- 17:12:04.263 SQL [10725]: pgsql_close() -- 09:27:06.571 INFO [10730]: COREGRADE is starting... -- 09:27:06.571 INFO [10730]: Version from config: 1.0 -- 09:27:06.571 DEBUG [10730]: Connecting to database... -- 09:27:06.571 DEBUG [10730]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:27:06.571 SQL [10730]: pgsql_db_connect() -- 09:27:06.576 DEBUG [10730]: Database connection successful -- 09:27:06.576 INFO [10730]: _SERVER found -- 09:27:06.576 INFO [10730]: REMOTE_ADDR = 192.168.1.13 -- 09:27:06.576 INFO [10730]: SERVER_NAME = oameye.works.coregrade.com -- 09:27:06.576 INFO [10730]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 09:27:06.576 INFO [10730]: QUERY_STRING = -- 09:27:06.576 INFO [10730]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:27:06.622 INFO [10730]: COREGRADE is stopping... -- 09:27:06.622 DEBUG [10730]: Closing database connection -- 09:27:06.622 SQL [10730]: pgsql_close() -- 09:27:07.214 INFO [9584]: COREGRADE is starting... -- 09:27:07.214 INFO [9584]: Version from config: 1.0 -- 09:27:07.214 DEBUG [9584]: Connecting to database... -- 09:27:07.214 DEBUG [9584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:27:07.214 SQL [9584]: pgsql_db_connect() -- 09:27:07.226 INFO [10730]: COREGRADE is starting... -- 09:27:07.226 INFO [10730]: Version from config: 1.0 -- 09:27:07.226 DEBUG [10730]: Connecting to database... -- 09:27:07.226 DEBUG [10730]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:27:07.226 SQL [10730]: pgsql_db_connect() -- 09:27:07.218 DEBUG [9584]: Database connection successful -- 09:27:07.218 INFO [9584]: _SERVER found -- 09:27:07.218 INFO [9584]: REMOTE_ADDR = 192.168.1.13 -- 09:27:07.218 INFO [9584]: SERVER_NAME = oameye.works.coregrade.com -- 09:27:07.218 INFO [9584]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=h3hlo6qpn07otmcfdfon0p2mf15i9bij -- 09:27:07.218 INFO [9584]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:27:07.218 INFO [9584]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:27:07.232 INFO [9584]: COREGRADE is stopping... -- 09:27:07.232 DEBUG [9584]: Closing database connection -- 09:27:07.232 SQL [9584]: pgsql_close() -- 09:27:07.231 DEBUG [10730]: Database connection successful -- 09:27:07.231 INFO [10730]: _SERVER found -- 09:27:07.231 INFO [10730]: REMOTE_ADDR = 192.168.1.13 -- 09:27:07.231 INFO [10730]: SERVER_NAME = oameye.works.coregrade.com -- 09:27:07.231 INFO [10730]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=h3hlo6qpn07otmcfdfon0p2mf15i9bij -- 09:27:07.231 INFO [10730]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:27:07.231 INFO [10730]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:27:07.242 INFO [10730]: COREGRADE is stopping... -- 09:27:07.242 DEBUG [10730]: Closing database connection -- 09:27:07.242 SQL [10730]: pgsql_close() -- 09:27:09.065 INFO [10730]: COREGRADE is starting... -- 09:27:09.065 INFO [10730]: Version from config: 1.0 -- 09:27:09.065 DEBUG [10730]: Connecting to database... -- 09:27:09.065 DEBUG [10730]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:27:09.065 SQL [10730]: pgsql_db_connect() -- 09:27:09.066 INFO [9584]: COREGRADE is starting... -- 09:27:09.066 INFO [9584]: Version from config: 1.0 -- 09:27:09.066 DEBUG [9584]: Connecting to database... -- 09:27:09.066 DEBUG [9584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:27:09.067 SQL [9584]: pgsql_db_connect() -- 09:27:09.069 DEBUG [10730]: Database connection successful -- 09:27:09.069 INFO [10730]: _SERVER found -- 09:27:09.069 INFO [10730]: REMOTE_ADDR = 192.168.1.13 -- 09:27:09.069 INFO [10730]: SERVER_NAME = oameye.works.coregrade.com -- 09:27:09.069 INFO [10730]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=h3hlo6qpn07otmcfdfon0p2mf15i9bij; _gid=GA1.2.2143530132.1581949628; _gat_gtag_UA_54829827_2=1 -- 09:27:09.069 INFO [10730]: QUERY_STRING = /welcome/viewLogin -- 09:27:09.069 INFO [10730]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:27:09.100 INFO [10730]: COREGRADE is stopping... -- 09:27:09.100 DEBUG [10730]: Closing database connection -- 09:27:09.100 SQL [10730]: pgsql_close() -- 09:27:09.070 DEBUG [9584]: Database connection successful -- 09:27:09.070 INFO [9584]: _SERVER found -- 09:27:09.070 INFO [9584]: REMOTE_ADDR = 192.168.1.13 -- 09:27:09.070 INFO [9584]: SERVER_NAME = oameye.works.coregrade.com -- 09:27:09.070 INFO [9584]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=h3hlo6qpn07otmcfdfon0p2mf15i9bij; _gid=GA1.2.2143530132.1581949628; _gat_gtag_UA_54829827_2=1 -- 09:27:09.070 INFO [9584]: QUERY_STRING = /auth -- 09:27:09.070 INFO [9584]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:27:09.104 INFO [9584]: COREGRADE is stopping... -- 09:27:09.104 DEBUG [9584]: Closing database connection -- 09:27:09.105 SQL [9584]: pgsql_close() -- 09:27:09.113 INFO [9584]: COREGRADE is starting... -- 09:27:09.113 INFO [9584]: Version from config: 1.0 -- 09:27:09.113 DEBUG [9584]: Connecting to database... -- 09:27:09.113 DEBUG [9584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:27:09.113 SQL [9584]: pgsql_db_connect() -- 09:27:09.117 DEBUG [9584]: Database connection successful -- 09:27:09.117 INFO [9584]: _SERVER found -- 09:27:09.117 INFO [9584]: REMOTE_ADDR = 192.168.1.13 -- 09:27:09.117 INFO [9584]: SERVER_NAME = oameye.works.coregrade.com -- 09:27:09.117 INFO [9584]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=h3hlo6qpn07otmcfdfon0p2mf15i9bij; _gid=GA1.2.2143530132.1581949628; _gat_gtag_UA_54829827_2=1 -- 09:27:09.117 INFO [9584]: QUERY_STRING = /auth/index -- 09:27:09.117 INFO [9584]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:27:09.148 INFO [9584]: COREGRADE is stopping... -- 09:27:09.148 DEBUG [9584]: Closing database connection -- 09:27:09.148 SQL [9584]: pgsql_close() -- 09:27:09.377 INFO [9584]: COREGRADE is starting... -- 09:27:09.377 INFO [9584]: Version from config: 1.0 -- 09:27:09.377 DEBUG [9584]: Connecting to database... -- 09:27:09.377 DEBUG [9584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:27:09.377 SQL [9584]: pgsql_db_connect() -- 09:27:09.381 DEBUG [9584]: Database connection successful -- 09:27:09.381 INFO [9584]: _SERVER found -- 09:27:09.381 INFO [9584]: REMOTE_ADDR = 192.168.1.13 -- 09:27:09.381 INFO [9584]: SERVER_NAME = oameye.works.coregrade.com -- 09:27:09.381 INFO [9584]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=h3hlo6qpn07otmcfdfon0p2mf15i9bij; _gid=GA1.2.2143530132.1581949628; _gat_gtag_UA_54829827_2=1 -- 09:27:09.381 INFO [9584]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 09:27:09.381 INFO [9584]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:27:09.392 INFO [9584]: COREGRADE is stopping... -- 09:27:09.392 DEBUG [9584]: Closing database connection -- 09:27:09.392 SQL [9584]: pgsql_close() -- 09:27:09.411 INFO [9584]: COREGRADE is starting... -- 09:27:09.411 INFO [9584]: Version from config: 1.0 -- 09:27:09.411 DEBUG [9584]: Connecting to database... -- 09:27:09.411 DEBUG [9584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:27:09.411 SQL [9584]: pgsql_db_connect() -- 09:27:09.415 DEBUG [9584]: Database connection successful -- 09:27:09.415 INFO [9584]: _SERVER found -- 09:27:09.415 INFO [9584]: REMOTE_ADDR = 192.168.1.13 -- 09:27:09.415 INFO [9584]: SERVER_NAME = oameye.works.coregrade.com -- 09:27:09.415 INFO [9584]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=h3hlo6qpn07otmcfdfon0p2mf15i9bij; _gid=GA1.2.2143530132.1581949628; _gat_gtag_UA_54829827_2=1 -- 09:27:09.415 INFO [9584]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:27:09.415 INFO [9584]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:27:09.426 INFO [9584]: COREGRADE is stopping... -- 09:27:09.426 DEBUG [9584]: Closing database connection -- 09:27:09.426 SQL [9584]: pgsql_close() -- 09:27:10.605 INFO [9584]: COREGRADE is starting... -- 09:27:10.606 INFO [9584]: Version from config: 1.0 -- 09:27:10.606 DEBUG [9584]: Connecting to database... -- 09:27:10.606 DEBUG [9584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:27:10.606 SQL [9584]: pgsql_db_connect() -- 09:27:10.640 INFO [9584]: COREGRADE is starting... -- 09:27:10.640 INFO [9584]: Version from config: 1.0 -- 09:27:10.640 DEBUG [9584]: Connecting to database... -- 09:27:10.640 DEBUG [9584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:27:10.640 SQL [9584]: pgsql_db_connect() -- 09:27:10.644 DEBUG [9584]: Database connection successful -- 09:27:10.644 INFO [9584]: _SERVER found -- 09:27:10.644 INFO [9584]: REMOTE_ADDR = 192.168.1.13 -- 09:27:10.644 INFO [9584]: SERVER_NAME = oameye.works.coregrade.com -- 09:27:10.644 INFO [9584]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=h3hlo6qpn07otmcfdfon0p2mf15i9bij; _gid=GA1.2.2143530132.1581949628; _gat_gtag_UA_54829827_2=1 -- 09:27:10.644 INFO [9584]: QUERY_STRING = -- 09:27:10.644 INFO [9584]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:27:10.644 INFO [9584]: SystemStatus()09-09-********~************ -- 09:27:10.644 INFO [9584]: long coregrade_api_main(CVars in, CVars &out) -- 09:27:10.644 INFO [9584]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 09:27:10.644 INFO [9584]: account calls -- 09:27:10.644 INFO [9584]: account_calls() -- 09:27:10.644 INFO [9584]: LoginCoreGradeAccount() -- 09:27:10.644 FLOG_MAX [9584]: REQ_STRING(username) -- 09:27:10.644 FLOG_MAX [9584]: REQ_STRING(password) -- 09:27:10.644 FLOG_MAX [9584]: REQ_STRING(sessionid) -- 09:27:10.644 FLOG_MAX [9584]: long load_db_record( CVars &rec, const char * query, ... ) -- 09:27:10.644 SQL [9584]: pgsql_query() -- 09:27:10.645 SQL [9584]: About to run query: -- 09:27:10.645 SQL [9584]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 09:27:10.648 SQL [9584]: Found rows: 1 -- 09:27:10.648 FLOG_MAX [9584]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 09:27:10.648 INFO [9584]: long SessionCheck(long uid, const char *sessionid, int create ) -- 09:27:10.648 SQL [9584]: pgsql_exec() -- 09:27:10.648 SQL [9584]: About to run query: -- 09:27:10.648 SQL [9584]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 09:27:10.650 SQL [9584]: PQcmdTuples: 1 -- 09:27:10.650 SQL [9584]: Affected rows: 1 -- 09:27:10.650 SQL [9584]: pgsql_exec() -- 09:27:10.650 SQL [9584]: About to run query: -- 09:27:10.650 SQL [9584]: DELETE FROM members_session WHERE member_id=5 -- 09:27:10.650 SQL [9584]: PQcmdTuples: 0 -- 09:27:10.650 SQL [9584]: Affected rows: 0 -- 09:27:10.650 SQL [9584]: pgsql_query() -- 09:27:10.650 SQL [9584]: About to run query: -- 09:27:10.650 SQL [9584]: SELECT * FROM members_session WHERE member_id=5 AND session<>'066E8279863D724A658E17EFE8725FFD' -- 09:27:10.651 SQL [9584]: Found rows: 0 -- 09:27:10.651 SQL [9584]: Found rows: 0 -- 09:27:10.651 FLOG_MAX [9584]: long load_db_record( CVars &rec, const char * query, ... ) -- 09:27:10.651 SQL [9584]: pgsql_query() -- 09:27:10.651 SQL [9584]: About to run query: -- 09:27:10.651 SQL [9584]: SELECT * FROM members_session WHERE member_id=5 AND session='066E8279863D724A658E17EFE8725FFD' -- 09:27:10.651 SQL [9584]: Found rows: 0 -- 09:27:10.651 SQL [9584]: Found rows: 0 -- 09:27:10.651 FLOG_MAX [9584]: insert_db_record() -- 09:27:10.651 SQL [9584]: pgsql_exec() -- 09:27:10.651 SQL [9584]: About to run query: -- 09:27:10.651 SQL [9584]: INSERT INTO members_session (member_id,session) VALUES ('5','066E8279863D724A658E17EFE8725FFD') -- 09:27:10.653 SQL [9584]: PQcmdTuples: 1 -- 09:27:10.653 SQL [9584]: Affected rows: 1 -- 09:27:10.653 FLOG_MAX [9584]: SELECT currval('members_session_id_seq') -- 09:27:10.653 SQL [9584]: pgsql_query() -- 09:27:10.653 SQL [9584]: About to run query: -- 09:27:10.653 SQL [9584]: SELECT currval('members_session_id_seq') -- 09:27:10.653 SQL [9584]: Found rows: 1 -- 09:27:10.653 INFO [9584]: CreateDefaultPage() -- 09:27:10.653 FLOG_MAX [9584]: long load_db_record( CVars &rec, const char * query, ... ) -- 09:27:10.653 SQL [9584]: pgsql_query() -- 09:27:10.653 SQL [9584]: About to run query: -- 09:27:10.653 SQL [9584]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 09:27:10.654 SQL [9584]: Found rows: 1 -- 09:27:10.654 FLOG_MAX [9584]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 09:27:10.654 SQL [9584]: pgsql_query() -- 09:27:10.654 SQL [9584]: About to run query: -- 09:27:10.654 SQL [9584]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 09:27:10.654 SQL [9584]: Found rows: 1 -- 09:27:10.654 INFO [9584]: /CreateDefaultPage() -- 09:27:10.654 INFO [9584]: /LoginCoreGradeAccount() -- 09:27:10.654 INFO [9584]: RET: added=2020-02-05 06:47:23.982154 -- 09:27:10.654 INFO [9584]: RET: email=ameye+11@chiefsoft.com -- 09:27:10.654 INFO [9584]: RET: firstname=Olu -- 09:27:10.654 INFO [9584]: RET: id=5 -- 09:27:10.654 INFO [9584]: RET: last_login= -- 09:27:10.654 INFO [9584]: RET: lastname=Amey -- 09:27:10.654 INFO [9584]: RET: loc=192.168.1.13 -- 09:27:10.654 INFO [9584]: RET: member_id=5 -- 09:27:10.654 INFO [9584]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 09:27:10.654 INFO [9584]: RET: phone= -- 09:27:10.654 INFO [9584]: RET: pid= -- 09:27:10.654 INFO [9584]: RET: result=YES I GET TO BACK END -- 09:27:10.654 INFO [9584]: RET: sessionid=066E8279863D724A658E17EFE8725FFD -- 09:27:10.654 INFO [9584]: RET: status=1 -- 09:27:10.654 INFO [9584]: RET: stauts=OK -- 09:27:10.654 INFO [9584]: RET: username=ameye+11@chiefsoft.com -- 09:27:10.654 INFO [9584]: RET: verified= -- 09:27:10.656 INFO [9584]: COREGRADE is stopping... -- 09:27:10.656 DEBUG [9584]: Closing database connection -- 09:27:10.656 SQL [9584]: pgsql_close() -- 09:27:10.610 DEBUG [9584]: Database connection successful -- 09:27:10.610 INFO [9584]: _SERVER found -- 09:27:10.610 INFO [9584]: REMOTE_ADDR = 192.168.1.13 -- 09:27:10.610 INFO [9584]: SERVER_NAME = oameye.works.coregrade.com -- 09:27:10.610 INFO [9584]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=h3hlo6qpn07otmcfdfon0p2mf15i9bij; _gid=GA1.2.2143530132.1581949628; _gat_gtag_UA_54829827_2=1 -- 09:27:10.610 INFO [9584]: QUERY_STRING = /auth -- 09:27:10.610 INFO [9584]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:27:10.656 INFO [9584]: COREGRADE is stopping... -- 09:27:10.656 DEBUG [9584]: Closing database connection -- 09:27:10.656 SQL [9584]: pgsql_close() -- 09:27:10.668 INFO [9584]: COREGRADE is starting... -- 09:27:10.668 INFO [9584]: Version from config: 1.0 -- 09:27:10.668 DEBUG [9584]: Connecting to database... -- 09:27:10.668 DEBUG [9584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:27:10.668 SQL [9584]: pgsql_db_connect() -- 09:27:10.672 DEBUG [9584]: Database connection successful -- 09:27:10.672 INFO [9584]: _SERVER found -- 09:27:10.672 INFO [9584]: REMOTE_ADDR = 192.168.1.13 -- 09:27:10.672 INFO [9584]: SERVER_NAME = oameye.works.coregrade.com -- 09:27:10.672 INFO [9584]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=h3hlo6qpn07otmcfdfon0p2mf15i9bij; _gid=GA1.2.2143530132.1581949628; _gat_gtag_UA_54829827_2=1 -- 09:27:10.672 INFO [9584]: QUERY_STRING = /member/index -- 09:27:10.672 INFO [9584]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:27:10.711 INFO [9584]: COREGRADE is stopping... -- 09:27:10.711 DEBUG [9584]: Closing database connection -- 09:27:10.711 SQL [9584]: pgsql_close() -- 09:27:10.945 INFO [9584]: COREGRADE is starting... -- 09:27:10.945 INFO [9584]: Version from config: 1.0 -- 09:27:10.945 DEBUG [9584]: Connecting to database... -- 09:27:10.945 DEBUG [9584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:27:10.945 SQL [9584]: pgsql_db_connect() -- 09:27:10.949 DEBUG [9584]: Database connection successful -- 09:27:10.949 INFO [9584]: _SERVER found -- 09:27:10.949 INFO [9584]: REMOTE_ADDR = 192.168.1.13 -- 09:27:10.949 INFO [9584]: SERVER_NAME = oameye.works.coregrade.com -- 09:27:10.949 INFO [9584]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=h3hlo6qpn07otmcfdfon0p2mf15i9bij; _gid=GA1.2.2143530132.1581949628; _gat_gtag_UA_54829827_2=1 -- 09:27:10.949 INFO [9584]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 09:27:10.949 INFO [9584]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:27:10.960 INFO [9584]: COREGRADE is stopping... -- 09:27:10.960 DEBUG [9584]: Closing database connection -- 09:27:10.960 SQL [9584]: pgsql_close() -- 09:27:11.078 INFO [9584]: COREGRADE is starting... -- 09:27:11.079 INFO [9584]: Version from config: 1.0 -- 09:27:11.079 DEBUG [9584]: Connecting to database... -- 09:27:11.079 DEBUG [9584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:27:11.079 SQL [9584]: pgsql_db_connect() -- 09:27:11.083 DEBUG [9584]: Database connection successful -- 09:27:11.083 INFO [9584]: _SERVER found -- 09:27:11.083 INFO [9584]: REMOTE_ADDR = 192.168.1.13 -- 09:27:11.083 INFO [9584]: SERVER_NAME = oameye.works.coregrade.com -- 09:27:11.083 INFO [9584]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=h3hlo6qpn07otmcfdfon0p2mf15i9bij; _gid=GA1.2.2143530132.1581949628; _gat_gtag_UA_54829827_2=1 -- 09:27:11.083 INFO [9584]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:27:11.083 INFO [9584]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:27:11.094 INFO [9584]: COREGRADE is stopping... -- 09:27:11.094 DEBUG [9584]: Closing database connection -- 09:27:11.094 SQL [9584]: pgsql_close() -- 09:27:12.665 INFO [9584]: COREGRADE is starting... -- 09:27:12.665 INFO [9584]: Version from config: 1.0 -- 09:27:12.665 DEBUG [9584]: Connecting to database... -- 09:27:12.665 DEBUG [9584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:27:12.665 SQL [9584]: pgsql_db_connect() -- 09:27:12.669 DEBUG [9584]: Database connection successful -- 09:27:12.669 INFO [9584]: _SERVER found -- 09:27:12.669 INFO [9584]: REMOTE_ADDR = 192.168.1.13 -- 09:27:12.669 INFO [9584]: SERVER_NAME = oameye.works.coregrade.com -- 09:27:12.669 INFO [9584]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=h3hlo6qpn07otmcfdfon0p2mf15i9bij; _gid=GA1.2.2143530132.1581949628; _gat_gtag_UA_54829827_2=1 -- 09:27:12.669 INFO [9584]: QUERY_STRING = /member/page -- 09:27:12.669 INFO [9584]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:27:12.710 INFO [9584]: COREGRADE is stopping... -- 09:27:12.710 DEBUG [9584]: Closing database connection -- 09:27:12.710 SQL [9584]: pgsql_close() -- 09:27:12.761 INFO [9584]: COREGRADE is starting... -- 09:27:12.761 INFO [9584]: Version from config: 1.0 -- 09:27:12.761 DEBUG [9584]: Connecting to database... -- 09:27:12.761 DEBUG [9584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:27:12.761 SQL [9584]: pgsql_db_connect() -- 09:27:12.765 DEBUG [9584]: Database connection successful -- 09:27:12.765 INFO [9584]: _SERVER found -- 09:27:12.765 INFO [9584]: REMOTE_ADDR = 192.168.1.13 -- 09:27:12.765 INFO [9584]: SERVER_NAME = oameye.works.coregrade.com -- 09:27:12.765 INFO [9584]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=h3hlo6qpn07otmcfdfon0p2mf15i9bij; _gid=GA1.2.2143530132.1581949628; _gat_gtag_UA_54829827_2=1 -- 09:27:12.765 INFO [9584]: QUERY_STRING = /uploads/What Ethernet Cable to Use Cat5 Cat6 Cat7.mp4 -- 09:27:12.765 INFO [9584]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:27:12.776 INFO [9584]: COREGRADE is stopping... -- 09:27:12.776 DEBUG [9584]: Closing database connection -- 09:27:12.776 SQL [9584]: pgsql_close() -- 09:27:12.869 INFO [9584]: COREGRADE is starting... -- 09:27:12.870 INFO [9584]: Version from config: 1.0 -- 09:27:12.870 DEBUG [9584]: Connecting to database... -- 09:27:12.870 DEBUG [9584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:27:12.870 SQL [9584]: pgsql_db_connect() -- 09:27:12.873 DEBUG [9584]: Database connection successful -- 09:27:12.873 INFO [9584]: _SERVER found -- 09:27:12.873 INFO [9584]: REMOTE_ADDR = 192.168.1.13 -- 09:27:12.873 INFO [9584]: SERVER_NAME = oameye.works.coregrade.com -- 09:27:12.873 INFO [9584]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=h3hlo6qpn07otmcfdfon0p2mf15i9bij; _gid=GA1.2.2143530132.1581949628; _gat_gtag_UA_54829827_2=1 -- 09:27:12.873 INFO [9584]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:27:12.874 INFO [9584]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:27:12.885 INFO [9584]: COREGRADE is stopping... -- 09:27:12.885 DEBUG [9584]: Closing database connection -- 09:27:12.885 SQL [9584]: pgsql_close() -- 09:28:40.229 INFO [9585]: COREGRADE is starting... -- 09:28:40.229 INFO [9585]: Version from config: 1.0 -- 09:28:40.229 DEBUG [9585]: Connecting to database... -- 09:28:40.229 DEBUG [9585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:28:40.229 SQL [9585]: pgsql_db_connect() -- 09:28:40.233 DEBUG [9585]: Database connection successful -- 09:28:40.233 INFO [9585]: _SERVER found -- 09:28:40.233 INFO [9585]: REMOTE_ADDR = 192.168.1.13 -- 09:28:40.233 INFO [9585]: SERVER_NAME = oameye.works.coregrade.com -- 09:28:40.233 INFO [9585]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=h3hlo6qpn07otmcfdfon0p2mf15i9bij; _gid=GA1.2.2143530132.1581949628 -- 09:28:40.233 INFO [9585]: QUERY_STRING = /member/page -- 09:28:40.233 INFO [9585]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:28:40.282 INFO [9585]: COREGRADE is stopping... -- 09:28:40.282 DEBUG [9585]: Closing database connection -- 09:28:40.282 SQL [9585]: pgsql_close() -- 09:28:40.474 INFO [9586]: COREGRADE is starting... -- 09:28:40.474 INFO [9586]: Version from config: 1.0 -- 09:28:40.474 DEBUG [9586]: Connecting to database... -- 09:28:40.474 DEBUG [9586]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:28:40.474 SQL [9586]: pgsql_db_connect() -- 09:28:40.478 DEBUG [9586]: Database connection successful -- 09:28:40.478 INFO [9586]: _SERVER found -- 09:28:40.478 INFO [9586]: REMOTE_ADDR = 192.168.1.13 -- 09:28:40.478 INFO [9586]: SERVER_NAME = oameye.works.coregrade.com -- 09:28:40.478 INFO [9586]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=h3hlo6qpn07otmcfdfon0p2mf15i9bij; _gid=GA1.2.2143530132.1581949628 -- 09:28:40.478 INFO [9586]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:28:40.478 INFO [9586]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:28:40.493 INFO [9586]: COREGRADE is stopping... -- 09:28:40.493 DEBUG [9586]: Closing database connection -- 09:28:40.493 SQL [9586]: pgsql_close() -- 09:29:16.664 INFO [9587]: COREGRADE is starting... -- 09:29:16.665 INFO [9587]: Version from config: 1.0 -- 09:29:16.665 DEBUG [9587]: Connecting to database... -- 09:29:16.665 DEBUG [9587]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:16.665 SQL [9587]: pgsql_db_connect() -- 09:29:16.669 DEBUG [9587]: Database connection successful -- 09:29:16.669 INFO [9587]: _SERVER found -- 09:29:16.669 INFO [9587]: REMOTE_ADDR = 192.168.1.13 -- 09:29:16.669 INFO [9587]: SERVER_NAME = oameye.works.coregrade.com -- 09:29:16.669 INFO [9587]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=h3hlo6qpn07otmcfdfon0p2mf15i9bij; _gid=GA1.2.2143530132.1581949628 -- 09:29:16.669 INFO [9587]: QUERY_STRING = /member/page -- 09:29:16.669 INFO [9587]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:29:16.715 INFO [9587]: COREGRADE is stopping... -- 09:29:16.715 DEBUG [9587]: Closing database connection -- 09:29:16.715 SQL [9587]: pgsql_close() -- 09:29:16.900 INFO [9587]: COREGRADE is starting... -- 09:29:16.900 INFO [9587]: Version from config: 1.0 -- 09:29:16.900 DEBUG [9587]: Connecting to database... -- 09:29:16.900 DEBUG [9587]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:16.901 SQL [9587]: pgsql_db_connect() -- 09:29:16.905 DEBUG [9587]: Database connection successful -- 09:29:16.905 INFO [9587]: _SERVER found -- 09:29:16.905 INFO [9587]: REMOTE_ADDR = 192.168.1.13 -- 09:29:16.905 INFO [9587]: SERVER_NAME = oameye.works.coregrade.com -- 09:29:16.905 INFO [9587]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=h3hlo6qpn07otmcfdfon0p2mf15i9bij; _gid=GA1.2.2143530132.1581949628 -- 09:29:16.905 INFO [9587]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:29:16.905 INFO [9587]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:29:16.917 INFO [9587]: COREGRADE is stopping... -- 09:29:16.917 DEBUG [9587]: Closing database connection -- 09:29:16.917 SQL [9587]: pgsql_close() -- 09:54:32.033 INFO [10724]: COREGRADE is starting... -- 09:54:32.034 INFO [10724]: Version from config: 1.0 -- 09:54:32.034 DEBUG [10724]: Connecting to database... -- 09:54:32.034 DEBUG [10724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:54:32.034 SQL [10724]: pgsql_db_connect() -- 09:54:32.039 DEBUG [10724]: Database connection successful -- 09:54:32.039 INFO [10724]: _SERVER found -- 09:54:32.039 INFO [10724]: REMOTE_ADDR = 192.168.1.13 -- 09:54:32.039 INFO [10724]: SERVER_NAME = oameye.works.coregrade.com -- 09:54:32.039 INFO [10724]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=h3hlo6qpn07otmcfdfon0p2mf15i9bij; _gid=GA1.2.2143530132.1581949628 -- 09:54:32.039 INFO [10724]: QUERY_STRING = /member/viewCardAddAction -- 09:54:32.039 INFO [10724]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:54:32.078 INFO [10724]: COREGRADE is stopping... -- 09:54:32.078 DEBUG [10724]: Closing database connection -- 09:54:32.078 SQL [10724]: pgsql_close() -- 09:54:45.328 INFO [10725]: COREGRADE is starting... -- 09:54:45.329 INFO [10725]: Version from config: 1.0 -- 09:54:45.329 DEBUG [10725]: Connecting to database... -- 09:54:45.329 DEBUG [10725]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:54:45.329 SQL [10725]: pgsql_db_connect() -- 09:54:45.333 DEBUG [10725]: Database connection successful -- 09:54:45.333 INFO [10725]: _SERVER found -- 09:54:45.333 INFO [10725]: REMOTE_ADDR = 192.168.1.13 -- 09:54:45.333 INFO [10725]: SERVER_NAME = oameye.works.coregrade.com -- 09:54:45.333 INFO [10725]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=h3hlo6qpn07otmcfdfon0p2mf15i9bij; _gid=GA1.2.2143530132.1581949628 -- 09:54:45.333 INFO [10725]: QUERY_STRING = /member -- 09:54:45.333 INFO [10725]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:54:45.376 INFO [10725]: COREGRADE is stopping... -- 09:54:45.377 DEBUG [10725]: Closing database connection -- 09:54:45.377 SQL [10725]: pgsql_close() -- 09:54:45.562 INFO [10725]: COREGRADE is starting... -- 09:54:45.563 INFO [10725]: Version from config: 1.0 -- 09:54:45.563 DEBUG [10725]: Connecting to database... -- 09:54:45.563 DEBUG [10725]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:54:45.563 SQL [10725]: pgsql_db_connect() -- 09:54:45.567 DEBUG [10725]: Database connection successful -- 09:54:45.567 INFO [10725]: _SERVER found -- 09:54:45.567 INFO [10725]: REMOTE_ADDR = 192.168.1.13 -- 09:54:45.567 INFO [10725]: SERVER_NAME = oameye.works.coregrade.com -- 09:54:45.567 INFO [10725]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=eg45rmr6js3638ahqca1mvcrichcujc2 -- 09:54:45.567 INFO [10725]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:54:45.567 INFO [10725]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:54:45.578 INFO [10725]: COREGRADE is stopping... -- 09:54:45.578 DEBUG [10725]: Closing database connection -- 09:54:45.578 SQL [10725]: pgsql_close() -- 09:54:47.031 INFO [10725]: COREGRADE is starting... -- 09:54:47.031 INFO [10725]: Version from config: 1.0 -- 09:54:47.031 DEBUG [10725]: Connecting to database... -- 09:54:47.031 DEBUG [10725]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:54:47.031 SQL [10725]: pgsql_db_connect() -- 09:54:47.035 DEBUG [10725]: Database connection successful -- 09:54:47.035 INFO [10725]: _SERVER found -- 09:54:47.035 INFO [10725]: REMOTE_ADDR = 192.168.1.13 -- 09:54:47.035 INFO [10725]: SERVER_NAME = oameye.works.coregrade.com -- 09:54:47.035 INFO [10725]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=eg45rmr6js3638ahqca1mvcrichcujc2 -- 09:54:47.035 INFO [10725]: QUERY_STRING = /member/page -- 09:54:47.035 INFO [10725]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:54:47.076 INFO [10725]: COREGRADE is stopping... -- 09:54:47.076 DEBUG [10725]: Closing database connection -- 09:54:47.076 SQL [10725]: pgsql_close() -- 09:54:47.263 INFO [10725]: COREGRADE is starting... -- 09:54:47.263 INFO [10725]: Version from config: 1.0 -- 09:54:47.263 DEBUG [10725]: Connecting to database... -- 09:54:47.263 DEBUG [10725]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:54:47.263 SQL [10725]: pgsql_db_connect() -- 09:54:47.267 DEBUG [10725]: Database connection successful -- 09:54:47.267 INFO [10725]: _SERVER found -- 09:54:47.267 INFO [10725]: REMOTE_ADDR = 192.168.1.13 -- 09:54:47.267 INFO [10725]: SERVER_NAME = oameye.works.coregrade.com -- 09:54:47.267 INFO [10725]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=eg45rmr6js3638ahqca1mvcrichcujc2 -- 09:54:47.267 INFO [10725]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:54:47.267 INFO [10725]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:54:47.278 INFO [10725]: COREGRADE is stopping... -- 09:54:47.278 DEBUG [10725]: Closing database connection -- 09:54:47.278 SQL [10725]: pgsql_close() -- 09:54:49.538 INFO [10725]: COREGRADE is starting... -- 09:54:49.538 INFO [10725]: Version from config: 1.0 -- 09:54:49.538 DEBUG [10725]: Connecting to database... -- 09:54:49.538 DEBUG [10725]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:54:49.539 SQL [10725]: pgsql_db_connect() -- 09:54:49.543 DEBUG [10725]: Database connection successful -- 09:54:49.543 INFO [10725]: _SERVER found -- 09:54:49.543 INFO [10725]: REMOTE_ADDR = 192.168.1.13 -- 09:54:49.543 INFO [10725]: SERVER_NAME = oameye.works.coregrade.com -- 09:54:49.543 INFO [10725]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=eg45rmr6js3638ahqca1mvcrichcujc2 -- 09:54:49.543 INFO [10725]: QUERY_STRING = /member/configure -- 09:54:49.543 INFO [10725]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:54:49.582 INFO [10725]: COREGRADE is stopping... -- 09:54:49.582 DEBUG [10725]: Closing database connection -- 09:54:49.582 SQL [10725]: pgsql_close() -- 09:54:49.680 INFO [10725]: COREGRADE is starting... -- 09:54:49.680 INFO [10725]: Version from config: 1.0 -- 09:54:49.680 DEBUG [10725]: Connecting to database... -- 09:54:49.680 DEBUG [10725]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:54:49.680 SQL [10725]: pgsql_db_connect() -- 09:54:49.684 DEBUG [10725]: Database connection successful -- 09:54:49.684 INFO [10725]: _SERVER found -- 09:54:49.684 INFO [10725]: REMOTE_ADDR = 192.168.1.13 -- 09:54:49.684 INFO [10725]: SERVER_NAME = oameye.works.coregrade.com -- 09:54:49.684 INFO [10725]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=eg45rmr6js3638ahqca1mvcrichcujc2 -- 09:54:49.684 INFO [10725]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 09:54:49.684 INFO [10725]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:54:49.695 INFO [10725]: COREGRADE is stopping... -- 09:54:49.695 DEBUG [10725]: Closing database connection -- 09:54:49.695 SQL [10725]: pgsql_close() -- 09:54:49.770 INFO [10725]: COREGRADE is starting... -- 09:54:49.770 INFO [10725]: Version from config: 1.0 -- 09:54:49.770 DEBUG [10725]: Connecting to database... -- 09:54:49.770 DEBUG [10725]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:54:49.770 SQL [10725]: pgsql_db_connect() -- 09:54:49.774 DEBUG [10725]: Database connection successful -- 09:54:49.774 INFO [10725]: _SERVER found -- 09:54:49.774 INFO [10725]: REMOTE_ADDR = 192.168.1.13 -- 09:54:49.774 INFO [10725]: SERVER_NAME = oameye.works.coregrade.com -- 09:54:49.774 INFO [10725]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=eg45rmr6js3638ahqca1mvcrichcujc2 -- 09:54:49.774 INFO [10725]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:54:49.774 INFO [10725]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:54:49.785 INFO [10725]: COREGRADE is stopping... -- 09:54:49.785 DEBUG [10725]: Closing database connection -- 09:54:49.785 SQL [10725]: pgsql_close() -- 09:54:55.500 INFO [10730]: COREGRADE is starting... -- 09:54:55.500 INFO [10730]: Version from config: 1.0 -- 09:54:55.500 DEBUG [10730]: Connecting to database... -- 09:54:55.500 DEBUG [10730]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:54:55.500 SQL [10730]: pgsql_db_connect() -- 09:54:55.504 DEBUG [10730]: Database connection successful -- 09:54:55.504 INFO [10730]: _SERVER found -- 09:54:55.504 INFO [10730]: REMOTE_ADDR = 192.168.1.13 -- 09:54:55.504 INFO [10730]: SERVER_NAME = oameye.works.coregrade.com -- 09:54:55.504 INFO [10730]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=eg45rmr6js3638ahqca1mvcrichcujc2 -- 09:54:55.504 INFO [10730]: QUERY_STRING = /member -- 09:54:55.504 INFO [10730]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:54:55.546 INFO [10730]: COREGRADE is stopping... -- 09:54:55.546 DEBUG [10730]: Closing database connection -- 09:54:55.546 SQL [10730]: pgsql_close() -- 09:54:55.702 INFO [10730]: COREGRADE is starting... -- 09:54:55.702 INFO [10730]: Version from config: 1.0 -- 09:54:55.702 DEBUG [10730]: Connecting to database... -- 09:54:55.702 DEBUG [10730]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:54:55.702 SQL [10730]: pgsql_db_connect() -- 09:54:55.706 DEBUG [10730]: Database connection successful -- 09:54:55.706 INFO [10730]: _SERVER found -- 09:54:55.706 INFO [10730]: REMOTE_ADDR = 192.168.1.13 -- 09:54:55.706 INFO [10730]: SERVER_NAME = oameye.works.coregrade.com -- 09:54:55.706 INFO [10730]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=eg45rmr6js3638ahqca1mvcrichcujc2 -- 09:54:55.706 INFO [10730]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 09:54:55.706 INFO [10730]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:54:55.717 INFO [10730]: COREGRADE is stopping... -- 09:54:55.717 DEBUG [10730]: Closing database connection -- 09:54:55.717 SQL [10730]: pgsql_close() -- 09:54:55.734 INFO [10730]: COREGRADE is starting... -- 09:54:55.734 INFO [10730]: Version from config: 1.0 -- 09:54:55.734 DEBUG [10730]: Connecting to database... -- 09:54:55.734 DEBUG [10730]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:54:55.734 SQL [10730]: pgsql_db_connect() -- 09:54:55.738 DEBUG [10730]: Database connection successful -- 09:54:55.738 INFO [10730]: _SERVER found -- 09:54:55.738 INFO [10730]: REMOTE_ADDR = 192.168.1.13 -- 09:54:55.738 INFO [10730]: SERVER_NAME = oameye.works.coregrade.com -- 09:54:55.738 INFO [10730]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=eg45rmr6js3638ahqca1mvcrichcujc2 -- 09:54:55.738 INFO [10730]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:54:55.738 INFO [10730]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:54:55.749 INFO [10730]: COREGRADE is stopping... -- 09:54:55.749 DEBUG [10730]: Closing database connection -- 09:54:55.749 SQL [10730]: pgsql_close() -- 09:54:56.859 INFO [10730]: COREGRADE is starting... -- 09:54:56.860 INFO [10730]: Version from config: 1.0 -- 09:54:56.860 DEBUG [10730]: Connecting to database... -- 09:54:56.860 DEBUG [10730]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:54:56.860 SQL [10730]: pgsql_db_connect() -- 09:54:56.864 DEBUG [10730]: Database connection successful -- 09:54:56.864 INFO [10730]: _SERVER found -- 09:54:56.864 INFO [10730]: REMOTE_ADDR = 192.168.1.13 -- 09:54:56.864 INFO [10730]: SERVER_NAME = oameye.works.coregrade.com -- 09:54:56.864 INFO [10730]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=eg45rmr6js3638ahqca1mvcrichcujc2 -- 09:54:56.864 INFO [10730]: QUERY_STRING = /member/page -- 09:54:56.864 INFO [10730]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:54:56.904 INFO [10730]: COREGRADE is stopping... -- 09:54:56.904 DEBUG [10730]: Closing database connection -- 09:54:56.904 SQL [10730]: pgsql_close() -- 09:54:57.015 INFO [10730]: COREGRADE is starting... -- 09:54:57.016 INFO [10730]: Version from config: 1.0 -- 09:54:57.016 DEBUG [10730]: Connecting to database... -- 09:54:57.016 DEBUG [10730]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:54:57.016 SQL [10730]: pgsql_db_connect() -- 09:54:57.020 DEBUG [10730]: Database connection successful -- 09:54:57.020 INFO [10730]: _SERVER found -- 09:54:57.020 INFO [10730]: REMOTE_ADDR = 192.168.1.13 -- 09:54:57.020 INFO [10730]: SERVER_NAME = oameye.works.coregrade.com -- 09:54:57.020 INFO [10730]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=eg45rmr6js3638ahqca1mvcrichcujc2 -- 09:54:57.020 INFO [10730]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 09:54:57.020 INFO [10730]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:54:57.031 INFO [10730]: COREGRADE is stopping... -- 09:54:57.031 DEBUG [10730]: Closing database connection -- 09:54:57.031 SQL [10730]: pgsql_close() -- 09:54:57.131 INFO [10730]: COREGRADE is starting... -- 09:54:57.131 INFO [10730]: Version from config: 1.0 -- 09:54:57.131 DEBUG [10730]: Connecting to database... -- 09:54:57.131 DEBUG [10730]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:54:57.131 SQL [10730]: pgsql_db_connect() -- 09:54:57.135 DEBUG [10730]: Database connection successful -- 09:54:57.135 INFO [10730]: _SERVER found -- 09:54:57.135 INFO [10730]: REMOTE_ADDR = 192.168.1.13 -- 09:54:57.135 INFO [10730]: SERVER_NAME = oameye.works.coregrade.com -- 09:54:57.135 INFO [10730]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=eg45rmr6js3638ahqca1mvcrichcujc2 -- 09:54:57.135 INFO [10730]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:54:57.135 INFO [10730]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:54:57.146 INFO [10730]: COREGRADE is stopping... -- 09:54:57.146 DEBUG [10730]: Closing database connection -- 09:54:57.146 SQL [10730]: pgsql_close() -- 10:34:48.646 INFO [9584]: COREGRADE is starting... -- 10:34:48.647 INFO [9584]: Version from config: 1.0 -- 10:34:48.647 DEBUG [9584]: Connecting to database... -- 10:34:48.647 DEBUG [9584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:34:48.647 SQL [9584]: pgsql_db_connect() -- 10:34:48.652 DEBUG [9584]: Database connection successful -- 10:34:48.652 INFO [9584]: _SERVER found -- 10:34:48.652 INFO [9584]: REMOTE_ADDR = 192.168.1.13 -- 10:34:48.652 INFO [9584]: SERVER_NAME = oameye.works.coregrade.com -- 10:34:48.652 INFO [9584]: QUERY_STRING = /solr/admin/info/system -- 10:34:48.652 INFO [9584]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 10:34:48.665 INFO [9584]: COREGRADE is stopping... -- 10:34:48.665 DEBUG [9584]: Closing database connection -- 10:34:48.665 SQL [9584]: pgsql_close() -- 10:41:04.570 INFO [9585]: COREGRADE is starting... -- 10:41:04.571 INFO [9585]: Version from config: 1.0 -- 10:41:04.571 DEBUG [9585]: Connecting to database... -- 10:41:04.571 DEBUG [9585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:41:04.571 SQL [9585]: pgsql_db_connect() -- 10:41:04.575 DEBUG [9585]: Database connection successful -- 10:41:04.575 INFO [9585]: _SERVER found -- 10:41:04.575 INFO [9585]: REMOTE_ADDR = 192.168.1.13 -- 10:41:04.575 INFO [9585]: SERVER_NAME = oameye.works.coregrade.com -- 10:41:04.575 INFO [9585]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 10:41:04.575 INFO [9585]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 10:41:04.613 INFO [9585]: COREGRADE is stopping... -- 10:41:04.613 DEBUG [9585]: Closing database connection -- 10:41:04.613 SQL [9585]: pgsql_close() -- 10:41:07.687 INFO [9586]: COREGRADE is starting... -- 10:41:07.687 INFO [9586]: Version from config: 1.0 -- 10:41:07.687 DEBUG [9586]: Connecting to database... -- 10:41:07.687 DEBUG [9586]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:41:07.687 SQL [9586]: pgsql_db_connect() -- 10:41:07.691 DEBUG [9586]: Database connection successful -- 10:41:07.691 INFO [9586]: _SERVER found -- 10:41:07.691 INFO [9586]: REMOTE_ADDR = 192.168.1.13 -- 10:41:07.691 INFO [9586]: SERVER_NAME = oameye.works.coregrade.com -- 10:41:07.691 INFO [9586]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 10:41:07.691 INFO [9586]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 10:41:07.732 INFO [9586]: COREGRADE is stopping... -- 10:41:07.732 DEBUG [9586]: Closing database connection -- 10:41:07.732 SQL [9586]: pgsql_close() -- 10:44:25.061 INFO [9583]: COREGRADE is starting... -- 10:44:25.061 INFO [9583]: Version from config: 1.0 -- 10:44:25.061 DEBUG [9583]: Connecting to database... -- 10:44:25.061 DEBUG [9583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:44:25.061 SQL [9583]: pgsql_db_connect() -- 10:44:25.101 INFO [9583]: COREGRADE is starting... -- 10:44:25.101 INFO [9583]: Version from config: 1.0 -- 10:44:25.101 DEBUG [9583]: Connecting to database... -- 10:44:25.101 DEBUG [9583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:44:25.101 SQL [9583]: pgsql_db_connect() -- 10:44:25.105 DEBUG [9583]: Database connection successful -- 10:44:25.105 INFO [9583]: _SERVER found -- 10:44:25.105 INFO [9583]: REMOTE_ADDR = 192.168.1.13 -- 10:44:25.105 INFO [9583]: SERVER_NAME = oameye.works.coregrade.com -- 10:44:25.105 INFO [9583]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586 -- 10:44:25.105 INFO [9583]: QUERY_STRING = vlnk=RS-707014912-676036864-1237593856 -- 10:44:25.105 INFO [9583]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:44:25.105 INFO [9583]: SystemStatus()09-09-********~************ -- 10:44:25.105 INFO [9583]: long coregrade_api_main(CVars in, CVars &out) -- 10:44:25.105 INFO [9583]: long coregrade_api_main(CVars in, CVars &out) action =11020 -- 10:44:25.105 INFO [9583]: account calls -- 10:44:25.105 INFO [9583]: account_calls() -- 10:44:25.105 INFO [9583]: CreateCoreGradeAccount() -- 10:44:25.105 FLOG_MAX [9583]: REQ_STRING(verify_link) -- 10:44:25.105 FLOG_MAX [9583]: long load_db_record( CVars &rec, const char * query, ... ) -- 10:44:25.105 SQL [9583]: pgsql_query() -- 10:44:25.105 SQL [9583]: About to run query: -- 10:44:25.105 SQL [9583]: SELECT *,id AS pending_id FROM members_pending WHERE verify_link ='RS-707014912-676036864-1237593856' AND expire > now() LIMIT 1 -- 10:44:25.108 SQL [9583]: Found rows: 0 -- 10:44:25.109 SQL [9583]: Found rows: 0 -- 10:44:25.109 FLOG_MAX [9583]: insert_db_record() -- 10:44:25.109 SQL [9583]: pgsql_exec() -- 10:44:25.109 SQL [9583]: About to run query: -- 10:44:25.109 SQL [9583]: INSERT INTO members (email,firstname,lastname,loc,password,phone,username) VALUES ('','','','192.168.1.13','','','') -- 10:44:25.111 SQL [9583]: PQcmdTuples: 1 -- 10:44:25.111 SQL [9583]: Affected rows: 1 -- 10:44:25.111 FLOG_MAX [9583]: SELECT currval('members_id_seq') -- 10:44:25.111 SQL [9583]: pgsql_query() -- 10:44:25.111 SQL [9583]: About to run query: -- 10:44:25.111 SQL [9583]: SELECT currval('members_id_seq') -- 10:44:25.111 SQL [9583]: Found rows: 1 -- 10:44:25.111 SQL [9583]: pgsql_query() -- 10:44:25.111 SQL [9583]: About to run query: -- 10:44:25.111 SQL [9583]: UPDATE members_pending SET status = 5,verified=now() WHERE id = 0 -- 10:44:25.111 SQL [9583]: Found rows: 0 -- 10:44:25.111 SQL [9583]: Found rows: 0 -- 10:44:25.111 INFO [9583]: /CreateCoreGradeAccount() -- 10:44:25.111 INFO [9583]: RET: email= -- 10:44:25.111 INFO [9583]: RET: firstname= -- 10:44:25.111 INFO [9583]: RET: lastname= -- 10:44:25.111 INFO [9583]: RET: member_id=12 -- 10:44:25.111 INFO [9583]: RET: password= -- 10:44:25.111 INFO [9583]: RET: pending_id= -- 10:44:25.111 INFO [9583]: RET: phone= -- 10:44:25.111 INFO [9583]: RET: result=YES I GET TO BACK END -- 10:44:25.111 INFO [9583]: RET: status=prepare to create account -- 10:44:25.111 INFO [9583]: RET: username= -- 10:44:25.113 INFO [9583]: COREGRADE is stopping... -- 10:44:25.113 DEBUG [9583]: Closing database connection -- 10:44:25.113 SQL [9583]: pgsql_close() -- 10:44:25.065 DEBUG [9583]: Database connection successful -- 10:44:25.065 INFO [9583]: _SERVER found -- 10:44:25.065 INFO [9583]: REMOTE_ADDR = 192.168.1.13 -- 10:44:25.065 INFO [9583]: SERVER_NAME = oameye.works.coregrade.com -- 10:44:25.065 INFO [9583]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586 -- 10:44:25.065 INFO [9583]: QUERY_STRING = /vemail -- 10:44:25.065 INFO [9583]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:44:25.113 INFO [9583]: COREGRADE is stopping... -- 10:44:25.113 DEBUG [9583]: Closing database connection -- 10:44:25.113 SQL [9583]: pgsql_close() -- 10:44:26.347 INFO [10724]: COREGRADE is starting... -- 10:44:26.348 INFO [10724]: Version from config: 1.0 -- 10:44:26.348 DEBUG [10724]: Connecting to database... -- 10:44:26.348 DEBUG [10724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:44:26.348 SQL [10724]: pgsql_db_connect() -- 10:44:26.352 DEBUG [10724]: Database connection successful -- 10:44:26.352 INFO [10724]: _SERVER found -- 10:44:26.352 INFO [10724]: REMOTE_ADDR = 192.168.1.13 -- 10:44:26.352 INFO [10724]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:44:26.352 INFO [10724]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586 -- 10:44:26.352 INFO [10724]: QUERY_STRING = /auth -- 10:44:26.352 INFO [10724]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:44:26.386 INFO [10724]: COREGRADE is stopping... -- 10:44:26.386 DEBUG [10724]: Closing database connection -- 10:44:26.386 SQL [10724]: pgsql_close() -- 10:44:26.616 INFO [9587]: COREGRADE is starting... -- 10:44:26.617 INFO [9587]: Version from config: 1.0 -- 10:44:26.617 DEBUG [9587]: Connecting to database... -- 10:44:26.617 DEBUG [9587]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:44:26.617 SQL [9587]: pgsql_db_connect() -- 10:44:26.621 DEBUG [9587]: Database connection successful -- 10:44:26.621 INFO [9587]: _SERVER found -- 10:44:26.621 INFO [9587]: REMOTE_ADDR = 192.168.1.13 -- 10:44:26.621 INFO [9587]: SERVER_NAME = oameye.works.coregrade.com -- 10:44:26.621 INFO [9587]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=pf46om50cjg9up8toto3lhst9paf0113 -- 10:44:26.621 INFO [9587]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:44:26.621 INFO [9587]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:44:26.632 INFO [9587]: COREGRADE is stopping... -- 10:44:26.632 DEBUG [9587]: Closing database connection -- 10:44:26.632 SQL [9587]: pgsql_close() -- 10:44:26.677 INFO [9587]: COREGRADE is starting... -- 10:44:26.677 INFO [9587]: Version from config: 1.0 -- 10:44:26.677 DEBUG [9587]: Connecting to database... -- 10:44:26.677 DEBUG [9587]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:44:26.677 SQL [9587]: pgsql_db_connect() -- 10:44:26.681 DEBUG [9587]: Database connection successful -- 10:44:26.681 INFO [9587]: _SERVER found -- 10:44:26.681 INFO [9587]: REMOTE_ADDR = 192.168.1.13 -- 10:44:26.681 INFO [9587]: SERVER_NAME = oameye.works.coregrade.com -- 10:44:26.681 INFO [9587]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=pf46om50cjg9up8toto3lhst9paf0113 -- 10:44:26.681 INFO [9587]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:44:26.681 INFO [9587]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:44:26.692 INFO [9587]: COREGRADE is stopping... -- 10:44:26.692 DEBUG [9587]: Closing database connection -- 10:44:26.692 SQL [9587]: pgsql_close() -- 10:44:27.990 INFO [10724]: COREGRADE is starting... -- 10:44:27.990 INFO [10724]: Version from config: 1.0 -- 10:44:27.990 DEBUG [10724]: Connecting to database... -- 10:44:27.990 DEBUG [10724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:44:27.990 SQL [10724]: pgsql_db_connect() -- 10:44:27.994 DEBUG [10724]: Database connection successful -- 10:44:27.994 INFO [10724]: _SERVER found -- 10:44:27.994 INFO [10724]: REMOTE_ADDR = 192.168.1.13 -- 10:44:27.994 INFO [10724]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:44:27.994 INFO [10724]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=vn4rnos9e9g6ovce8ubeovttithv70sc -- 10:44:27.994 INFO [10724]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:44:27.994 INFO [10724]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:44:28.006 INFO [10724]: COREGRADE is stopping... -- 10:44:28.006 DEBUG [10724]: Closing database connection -- 10:44:28.006 SQL [10724]: pgsql_close() -- 10:44:28.647 INFO [10724]: COREGRADE is starting... -- 10:44:28.647 INFO [10724]: Version from config: 1.0 -- 10:44:28.647 DEBUG [10724]: Connecting to database... -- 10:44:28.647 DEBUG [10724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:44:28.647 SQL [10724]: pgsql_db_connect() -- 10:44:28.651 DEBUG [10724]: Database connection successful -- 10:44:28.651 INFO [10724]: _SERVER found -- 10:44:28.651 INFO [10724]: REMOTE_ADDR = 192.168.1.13 -- 10:44:28.651 INFO [10724]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:44:28.651 INFO [10724]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=vn4rnos9e9g6ovce8ubeovttithv70sc -- 10:44:28.651 INFO [10724]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:44:28.651 INFO [10724]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:44:28.662 INFO [10724]: COREGRADE is stopping... -- 10:44:28.662 DEBUG [10724]: Closing database connection -- 10:44:28.662 SQL [10724]: pgsql_close() -- 10:44:28.960 INFO [9587]: COREGRADE is starting... -- 10:44:28.960 INFO [9587]: Version from config: 1.0 -- 10:44:28.960 DEBUG [9587]: Connecting to database... -- 10:44:28.960 DEBUG [9587]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:44:28.960 SQL [9587]: pgsql_db_connect() -- 10:44:28.964 DEBUG [9587]: Database connection successful -- 10:44:28.964 INFO [9587]: _SERVER found -- 10:44:28.964 INFO [9587]: REMOTE_ADDR = 192.168.1.13 -- 10:44:28.964 INFO [9587]: SERVER_NAME = oameye.works.coregrade.com -- 10:44:28.964 INFO [9587]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 10:44:28.964 INFO [9587]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 10:44:28.996 INFO [9587]: COREGRADE is stopping... -- 10:44:28.996 DEBUG [9587]: Closing database connection -- 10:44:28.996 SQL [9587]: pgsql_close() -- 10:44:29.001 INFO [10724]: COREGRADE is starting... -- 10:44:30.001 INFO [10724]: Version from config: 1.0 -- 10:44:30.001 DEBUG [10724]: Connecting to database... -- 10:44:30.001 DEBUG [10724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:44:30.001 SQL [10724]: pgsql_db_connect() -- 10:44:30.005 DEBUG [10724]: Database connection successful -- 10:44:30.005 INFO [10724]: _SERVER found -- 10:44:30.005 INFO [10724]: REMOTE_ADDR = 192.168.1.13 -- 10:44:30.005 INFO [10724]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:44:30.005 INFO [10724]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=vn4rnos9e9g6ovce8ubeovttithv70sc -- 10:44:30.005 INFO [10724]: QUERY_STRING = /auth -- 10:44:30.005 INFO [10724]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:44:30.039 INFO [10724]: COREGRADE is stopping... -- 10:44:30.039 DEBUG [10724]: Closing database connection -- 10:44:30.039 SQL [10724]: pgsql_close() -- 10:44:30.871 INFO [10724]: COREGRADE is starting... -- 10:44:30.871 INFO [10724]: Version from config: 1.0 -- 10:44:30.871 DEBUG [10724]: Connecting to database... -- 10:44:30.871 DEBUG [10724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:44:30.871 SQL [10724]: pgsql_db_connect() -- 10:44:30.875 DEBUG [10724]: Database connection successful -- 10:44:30.875 INFO [10724]: _SERVER found -- 10:44:30.875 INFO [10724]: REMOTE_ADDR = 192.168.1.13 -- 10:44:30.875 INFO [10724]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:44:30.875 INFO [10724]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=vn4rnos9e9g6ovce8ubeovttithv70sc -- 10:44:30.875 INFO [10724]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:44:30.875 INFO [10724]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:44:30.886 INFO [10724]: COREGRADE is stopping... -- 10:44:30.886 DEBUG [10724]: Closing database connection -- 10:44:30.886 SQL [10724]: pgsql_close() -- 10:44:31.518 INFO [10724]: COREGRADE is starting... -- 10:44:31.518 INFO [10724]: Version from config: 1.0 -- 10:44:31.518 DEBUG [10724]: Connecting to database... -- 10:44:31.518 DEBUG [10724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:44:31.518 SQL [10724]: pgsql_db_connect() -- 10:44:31.522 DEBUG [10724]: Database connection successful -- 10:44:31.522 INFO [10724]: _SERVER found -- 10:44:31.522 INFO [10724]: REMOTE_ADDR = 192.168.1.13 -- 10:44:31.522 INFO [10724]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:44:31.522 INFO [10724]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=vn4rnos9e9g6ovce8ubeovttithv70sc -- 10:44:31.522 INFO [10724]: QUERY_STRING = -- 10:44:31.522 INFO [10724]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:44:31.561 INFO [10724]: COREGRADE is stopping... -- 10:44:31.561 DEBUG [10724]: Closing database connection -- 10:44:31.561 SQL [10724]: pgsql_close() -- 10:44:31.632 INFO [10724]: COREGRADE is starting... -- 10:44:31.632 INFO [10724]: Version from config: 1.0 -- 10:44:31.632 DEBUG [10724]: Connecting to database... -- 10:44:31.632 DEBUG [10724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:44:31.632 SQL [10724]: pgsql_db_connect() -- 10:44:31.636 DEBUG [10724]: Database connection successful -- 10:44:31.636 INFO [10724]: _SERVER found -- 10:44:31.636 INFO [10724]: REMOTE_ADDR = 192.168.1.13 -- 10:44:31.636 INFO [10724]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:44:31.636 INFO [10724]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=vn4rnos9e9g6ovce8ubeovttithv70sc -- 10:44:31.636 INFO [10724]: QUERY_STRING = /app-assets/data/locales/en.json -- 10:44:31.636 INFO [10724]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:44:31.647 INFO [10724]: COREGRADE is stopping... -- 10:44:31.647 DEBUG [10724]: Closing database connection -- 10:44:31.647 SQL [10724]: pgsql_close() -- 10:44:32.651 INFO [10724]: COREGRADE is starting... -- 10:44:32.652 INFO [10724]: Version from config: 1.0 -- 10:44:32.652 DEBUG [10724]: Connecting to database... -- 10:44:32.652 DEBUG [10724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:44:32.652 SQL [10724]: pgsql_db_connect() -- 10:44:32.656 DEBUG [10724]: Database connection successful -- 10:44:32.656 INFO [10724]: _SERVER found -- 10:44:32.656 INFO [10724]: REMOTE_ADDR = 192.168.1.13 -- 10:44:32.656 INFO [10724]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:44:32.656 INFO [10724]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=vn4rnos9e9g6ovce8ubeovttithv70sc -- 10:44:32.656 INFO [10724]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 10:44:32.656 INFO [10724]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:44:32.667 INFO [10724]: COREGRADE is stopping... -- 10:44:32.667 DEBUG [10724]: Closing database connection -- 10:44:32.667 SQL [10724]: pgsql_close() -- 10:44:32.689 INFO [10724]: COREGRADE is starting... -- 10:44:32.689 INFO [10724]: Version from config: 1.0 -- 10:44:32.689 DEBUG [10724]: Connecting to database... -- 10:44:32.689 DEBUG [10724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:44:32.689 SQL [10724]: pgsql_db_connect() -- 10:44:32.693 DEBUG [10724]: Database connection successful -- 10:44:32.693 INFO [10724]: _SERVER found -- 10:44:32.693 INFO [10724]: REMOTE_ADDR = 192.168.1.13 -- 10:44:32.693 INFO [10724]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:44:32.693 INFO [10724]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=vn4rnos9e9g6ovce8ubeovttithv70sc -- 10:44:32.693 INFO [10724]: QUERY_STRING = /assets/img/footer_1.jpg -- 10:44:32.693 INFO [10724]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:44:32.704 INFO [10724]: COREGRADE is stopping... -- 10:44:32.704 DEBUG [10724]: Closing database connection -- 10:44:32.704 SQL [10724]: pgsql_close() -- 11:20:10.056 INFO [9585]: COREGRADE is starting... -- 11:20:10.057 INFO [9585]: Version from config: 1.0 -- 11:20:10.057 DEBUG [9585]: Connecting to database... -- 11:20:10.057 DEBUG [9585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:20:10.057 SQL [9585]: pgsql_db_connect() -- 11:20:10.094 INFO [9585]: COREGRADE is starting... -- 11:20:10.094 INFO [9585]: Version from config: 1.0 -- 11:20:10.094 DEBUG [9585]: Connecting to database... -- 11:20:10.095 DEBUG [9585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:20:10.095 SQL [9585]: pgsql_db_connect() -- 11:20:10.099 DEBUG [9585]: Database connection successful -- 11:20:10.099 INFO [9585]: _SERVER found -- 11:20:10.099 INFO [9585]: REMOTE_ADDR = 192.168.1.13 -- 11:20:10.099 INFO [9585]: SERVER_NAME = oameye.works.coregrade.com -- 11:20:10.099 INFO [9585]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=pf46om50cjg9up8toto3lhst9paf0113; _gid=GA1.2.1870131922.1581954273 -- 11:20:10.099 INFO [9585]: QUERY_STRING = vlnk=RS-707014912-676036864-1237593856 -- 11:20:10.099 INFO [9585]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:20:10.099 INFO [9585]: SystemStatus()09-09-********~************ -- 11:20:10.099 INFO [9585]: long coregrade_api_main(CVars in, CVars &out) -- 11:20:10.099 INFO [9585]: long coregrade_api_main(CVars in, CVars &out) action =11020 -- 11:20:10.099 INFO [9585]: account calls -- 11:20:10.099 INFO [9585]: account_calls() -- 11:20:10.099 INFO [9585]: CreateCoreGradeAccount() -- 11:20:10.099 FLOG_MAX [9585]: REQ_STRING(verify_link) -- 11:20:10.099 FLOG_MAX [9585]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:20:10.099 SQL [9585]: pgsql_query() -- 11:20:10.099 SQL [9585]: About to run query: -- 11:20:10.099 SQL [9585]: SELECT *,id AS pending_id FROM members_pending WHERE verify_link ='RS-707014912-676036864-1237593856' AND expire > now() LIMIT 1 -- 11:20:10.102 SQL [9585]: Found rows: 0 -- 11:20:10.102 SQL [9585]: Found rows: 0 -- 11:20:10.102 FLOG_MAX [9585]: insert_db_record() -- 11:20:10.102 SQL [9585]: pgsql_exec() -- 11:20:10.102 SQL [9585]: About to run query: -- 11:20:10.102 SQL [9585]: INSERT INTO members (email,firstname,lastname,loc,password,phone,username) VALUES ('','','','192.168.1.13','','','') -- 11:20:10.103 SQL [9585]: Affected rows: ERROR -- 11:20:10.103 FLOG_MAX [9585]: SELECT currval('members_id_seq') -- 11:20:10.103 SQL [9585]: pgsql_query() -- 11:20:10.103 SQL [9585]: About to run query: -- 11:20:10.103 SQL [9585]: SELECT currval('members_id_seq') -- 11:20:10.104 SQL [9585]: Found rows: 1 -- 11:20:10.104 SQL [9585]: pgsql_query() -- 11:20:10.104 SQL [9585]: About to run query: -- 11:20:10.104 SQL [9585]: UPDATE members_pending SET status = 5,verified=now() WHERE id = 0 -- 11:20:10.104 SQL [9585]: Found rows: 0 -- 11:20:10.104 SQL [9585]: Found rows: 0 -- 11:20:10.104 INFO [9585]: /CreateCoreGradeAccount() -- 11:20:10.104 INFO [9585]: RET: email= -- 11:20:10.104 INFO [9585]: RET: firstname= -- 11:20:10.104 INFO [9585]: RET: lastname= -- 11:20:10.104 INFO [9585]: RET: member_id=13 -- 11:20:10.104 INFO [9585]: RET: password= -- 11:20:10.104 INFO [9585]: RET: pending_id= -- 11:20:10.104 INFO [9585]: RET: phone= -- 11:20:10.104 INFO [9585]: RET: result=YES I GET TO BACK END -- 11:20:10.104 INFO [9585]: RET: status=prepare to create account -- 11:20:10.104 INFO [9585]: RET: username= -- 11:20:10.106 INFO [9585]: COREGRADE is stopping... -- 11:20:10.106 DEBUG [9585]: Closing database connection -- 11:20:10.106 SQL [9585]: pgsql_close() -- 11:20:10.061 DEBUG [9585]: Database connection successful -- 11:20:10.061 INFO [9585]: _SERVER found -- 11:20:10.061 INFO [9585]: REMOTE_ADDR = 192.168.1.13 -- 11:20:10.061 INFO [9585]: SERVER_NAME = oameye.works.coregrade.com -- 11:20:10.061 INFO [9585]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=pf46om50cjg9up8toto3lhst9paf0113; _gid=GA1.2.1870131922.1581954273 -- 11:20:10.061 INFO [9585]: QUERY_STRING = /vemail -- 11:20:10.061 INFO [9585]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:20:10.106 INFO [9585]: COREGRADE is stopping... -- 11:20:10.106 DEBUG [9585]: Closing database connection -- 11:20:10.106 SQL [9585]: pgsql_close() -- 11:20:10.521 INFO [9585]: COREGRADE is starting... -- 11:20:10.521 INFO [9585]: Version from config: 1.0 -- 11:20:10.521 DEBUG [9585]: Connecting to database... -- 11:20:10.521 DEBUG [9585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:20:10.521 SQL [9585]: pgsql_db_connect() -- 11:20:10.525 DEBUG [9585]: Database connection successful -- 11:20:10.525 INFO [9585]: _SERVER found -- 11:20:10.525 INFO [9585]: REMOTE_ADDR = 192.168.1.13 -- 11:20:10.525 INFO [9585]: SERVER_NAME = oameye.works.coregrade.com -- 11:20:10.525 INFO [9585]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1870131922.1581954273; ci_session=a6fclm50h4vioolqtslo8qel4p6m5n71 -- 11:20:10.525 INFO [9585]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:20:10.525 INFO [9585]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:20:10.537 INFO [9585]: COREGRADE is stopping... -- 11:20:10.537 DEBUG [9585]: Closing database connection -- 11:20:10.537 SQL [9585]: pgsql_close() -- 11:20:10.560 INFO [9585]: COREGRADE is starting... -- 11:20:10.560 INFO [9585]: Version from config: 1.0 -- 11:20:10.560 DEBUG [9585]: Connecting to database... -- 11:20:10.560 DEBUG [9585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:20:10.560 SQL [9585]: pgsql_db_connect() -- 11:20:10.564 DEBUG [9585]: Database connection successful -- 11:20:10.564 INFO [9585]: _SERVER found -- 11:20:10.564 INFO [9585]: REMOTE_ADDR = 192.168.1.13 -- 11:20:10.564 INFO [9585]: SERVER_NAME = oameye.works.coregrade.com -- 11:20:10.564 INFO [9585]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1870131922.1581954273; ci_session=a6fclm50h4vioolqtslo8qel4p6m5n71 -- 11:20:10.564 INFO [9585]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:20:10.564 INFO [9585]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:20:10.575 INFO [9585]: COREGRADE is stopping... -- 11:20:10.575 DEBUG [9585]: Closing database connection -- 11:20:10.575 SQL [9585]: pgsql_close() -- 11:20:12.678 INFO [9585]: COREGRADE is starting... -- 11:20:12.679 INFO [9585]: Version from config: 1.0 -- 11:20:12.679 DEBUG [9585]: Connecting to database... -- 11:20:12.679 DEBUG [9585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:20:12.679 SQL [9585]: pgsql_db_connect() -- 11:20:12.713 INFO [9585]: COREGRADE is starting... -- 11:20:12.714 INFO [9585]: Version from config: 1.0 -- 11:20:12.714 DEBUG [9585]: Connecting to database... -- 11:20:12.714 DEBUG [9585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:20:12.714 SQL [9585]: pgsql_db_connect() -- 11:20:12.718 DEBUG [9585]: Database connection successful -- 11:20:12.718 INFO [9585]: _SERVER found -- 11:20:12.718 INFO [9585]: REMOTE_ADDR = 192.168.1.13 -- 11:20:12.718 INFO [9585]: SERVER_NAME = oameye.works.coregrade.com -- 11:20:12.718 INFO [9585]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1870131922.1581954273; ci_session=a6fclm50h4vioolqtslo8qel4p6m5n71 -- 11:20:12.718 INFO [9585]: QUERY_STRING = -- 11:20:12.718 INFO [9585]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:20:12.718 INFO [9585]: SystemStatus()09-09-********~************ -- 11:20:12.718 INFO [9585]: long coregrade_api_main(CVars in, CVars &out) -- 11:20:12.718 INFO [9585]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 11:20:12.718 INFO [9585]: account calls -- 11:20:12.718 INFO [9585]: account_calls() -- 11:20:12.718 INFO [9585]: LoginCoreGradeAccount() -- 11:20:12.718 FLOG_MAX [9585]: REQ_STRING(username) -- 11:20:12.718 FLOG_MAX [9585]: REQ_STRING(password) -- 11:20:12.718 FLOG_MAX [9585]: REQ_STRING(sessionid) -- 11:20:12.718 FLOG_MAX [9585]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:20:12.718 SQL [9585]: pgsql_query() -- 11:20:12.718 SQL [9585]: About to run query: -- 11:20:12.718 SQL [9585]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 11:20:12.722 SQL [9585]: Found rows: 1 -- 11:20:12.722 FLOG_MAX [9585]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=15 -- 11:20:12.722 INFO [9585]: long SessionCheck(long uid, const char *sessionid, int create ) -- 11:20:12.722 SQL [9585]: pgsql_exec() -- 11:20:12.722 SQL [9585]: About to run query: -- 11:20:12.722 SQL [9585]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 11:20:12.723 SQL [9585]: PQcmdTuples: 1 -- 11:20:12.723 SQL [9585]: Affected rows: 1 -- 11:20:12.723 SQL [9585]: pgsql_exec() -- 11:20:12.723 SQL [9585]: About to run query: -- 11:20:12.723 SQL [9585]: DELETE FROM members_session WHERE member_id=7 -- 11:20:12.723 SQL [9585]: PQcmdTuples: 0 -- 11:20:12.723 SQL [9585]: Affected rows: 0 -- 11:20:12.723 SQL [9585]: pgsql_query() -- 11:20:12.723 SQL [9585]: About to run query: -- 11:20:12.723 SQL [9585]: SELECT * FROM members_session WHERE member_id=7 AND session<>'21AE43AC7411E49051F76565726FBEF8' -- 11:20:12.724 SQL [9585]: Found rows: 0 -- 11:20:12.724 SQL [9585]: Found rows: 0 -- 11:20:12.724 FLOG_MAX [9585]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:20:12.724 SQL [9585]: pgsql_query() -- 11:20:12.724 SQL [9585]: About to run query: -- 11:20:12.724 SQL [9585]: SELECT * FROM members_session WHERE member_id=7 AND session='21AE43AC7411E49051F76565726FBEF8' -- 11:20:12.725 SQL [9585]: Found rows: 0 -- 11:20:12.725 SQL [9585]: Found rows: 0 -- 11:20:12.725 FLOG_MAX [9585]: insert_db_record() -- 11:20:12.725 SQL [9585]: pgsql_exec() -- 11:20:12.725 SQL [9585]: About to run query: -- 11:20:12.725 SQL [9585]: INSERT INTO members_session (member_id,session) VALUES ('7','21AE43AC7411E49051F76565726FBEF8') -- 11:20:12.726 SQL [9585]: PQcmdTuples: 1 -- 11:20:12.726 SQL [9585]: Affected rows: 1 -- 11:20:12.726 FLOG_MAX [9585]: SELECT currval('members_session_id_seq') -- 11:20:12.726 SQL [9585]: pgsql_query() -- 11:20:12.726 SQL [9585]: About to run query: -- 11:20:12.726 SQL [9585]: SELECT currval('members_session_id_seq') -- 11:20:12.727 SQL [9585]: Found rows: 1 -- 11:20:12.727 INFO [9585]: CreateDefaultPage() -- 11:20:12.727 FLOG_MAX [9585]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:20:12.727 SQL [9585]: pgsql_query() -- 11:20:12.727 SQL [9585]: About to run query: -- 11:20:12.727 SQL [9585]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 11:20:12.727 SQL [9585]: Found rows: 1 -- 11:20:12.727 FLOG_MAX [9585]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 11:20:12.727 SQL [9585]: pgsql_query() -- 11:20:12.727 SQL [9585]: About to run query: -- 11:20:12.727 SQL [9585]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 11:20:12.727 SQL [9585]: Found rows: 1 -- 11:20:12.727 INFO [9585]: /CreateDefaultPage() -- 11:20:12.727 INFO [9585]: /LoginCoreGradeAccount() -- 11:20:12.727 INFO [9585]: RET: added=2020-02-05 09:42:12.816064 -- 11:20:12.727 INFO [9585]: RET: email=tokslaw@chiefsoft.com -- 11:20:12.727 INFO [9585]: RET: firstname=Tokunbo -- 11:20:12.727 INFO [9585]: RET: id=7 -- 11:20:12.727 INFO [9585]: RET: last_login= -- 11:20:12.727 INFO [9585]: RET: lastname=Lawal -- 11:20:12.727 INFO [9585]: RET: loc=192.168.1.13 -- 11:20:12.727 INFO [9585]: RET: member_id=7 -- 11:20:12.727 INFO [9585]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 11:20:12.727 INFO [9585]: RET: phone= -- 11:20:12.727 INFO [9585]: RET: pid= -- 11:20:12.727 INFO [9585]: RET: result=YES I GET TO BACK END -- 11:20:12.727 INFO [9585]: RET: sessionid=21AE43AC7411E49051F76565726FBEF8 -- 11:20:12.727 INFO [9585]: RET: status=1 -- 11:20:12.727 INFO [9585]: RET: stauts=OK -- 11:20:12.727 INFO [9585]: RET: username=tokslaw@chiefsoft.com -- 11:20:12.727 INFO [9585]: RET: verified= -- 11:20:12.729 INFO [9585]: COREGRADE is stopping... -- 11:20:12.729 DEBUG [9585]: Closing database connection -- 11:20:12.729 SQL [9585]: pgsql_close() -- 11:20:12.683 DEBUG [9585]: Database connection successful -- 11:20:12.683 INFO [9585]: _SERVER found -- 11:20:12.683 INFO [9585]: REMOTE_ADDR = 192.168.1.13 -- 11:20:12.683 INFO [9585]: SERVER_NAME = oameye.works.coregrade.com -- 11:20:12.683 INFO [9585]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1870131922.1581954273; ci_session=a6fclm50h4vioolqtslo8qel4p6m5n71 -- 11:20:12.683 INFO [9585]: QUERY_STRING = /auth -- 11:20:12.683 INFO [9585]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:20:12.729 INFO [9585]: COREGRADE is stopping... -- 11:20:12.729 DEBUG [9585]: Closing database connection -- 11:20:12.729 SQL [9585]: pgsql_close() -- 11:20:12.756 INFO [9585]: COREGRADE is starting... -- 11:20:12.756 INFO [9585]: Version from config: 1.0 -- 11:20:12.756 DEBUG [9585]: Connecting to database... -- 11:20:12.756 DEBUG [9585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:20:12.756 SQL [9585]: pgsql_db_connect() -- 11:20:12.760 DEBUG [9585]: Database connection successful -- 11:20:12.760 INFO [9585]: _SERVER found -- 11:20:12.760 INFO [9585]: REMOTE_ADDR = 192.168.1.13 -- 11:20:12.760 INFO [9585]: SERVER_NAME = oameye.works.coregrade.com -- 11:20:12.760 INFO [9585]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1870131922.1581954273; ci_session=a6fclm50h4vioolqtslo8qel4p6m5n71 -- 11:20:12.760 INFO [9585]: QUERY_STRING = /member/index -- 11:20:12.760 INFO [9585]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:20:12.800 INFO [9585]: COREGRADE is stopping... -- 11:20:12.800 DEBUG [9585]: Closing database connection -- 11:20:12.800 SQL [9585]: pgsql_close() -- 11:20:13.391 INFO [10721]: COREGRADE is starting... -- 11:20:13.392 INFO [10721]: Version from config: 1.0 -- 11:20:13.392 DEBUG [10721]: Connecting to database... -- 11:20:13.392 DEBUG [10721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:20:13.392 SQL [10721]: pgsql_db_connect() -- 11:20:13.396 DEBUG [10721]: Database connection successful -- 11:20:13.396 INFO [10721]: _SERVER found -- 11:20:13.396 INFO [10721]: REMOTE_ADDR = 192.168.1.13 -- 11:20:13.396 INFO [10721]: SERVER_NAME = oameye.works.coregrade.com -- 11:20:13.396 INFO [10721]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1870131922.1581954273; ci_session=a6fclm50h4vioolqtslo8qel4p6m5n71 -- 11:20:13.396 INFO [10721]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:20:13.396 INFO [10721]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:20:13.409 INFO [10721]: COREGRADE is stopping... -- 11:20:13.409 DEBUG [10721]: Closing database connection -- 11:20:13.409 SQL [10721]: pgsql_close() -- 11:20:13.849 INFO [9585]: COREGRADE is starting... -- 11:20:13.849 INFO [9585]: Version from config: 1.0 -- 11:20:13.849 DEBUG [9585]: Connecting to database... -- 11:20:13.849 DEBUG [9585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:20:13.849 SQL [9585]: pgsql_db_connect() -- 11:20:13.853 DEBUG [9585]: Database connection successful -- 11:20:13.853 INFO [9585]: _SERVER found -- 11:20:13.853 INFO [9585]: REMOTE_ADDR = 192.168.1.13 -- 11:20:13.853 INFO [9585]: SERVER_NAME = oameye.works.coregrade.com -- 11:20:13.853 INFO [9585]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1870131922.1581954273; ci_session=a6fclm50h4vioolqtslo8qel4p6m5n71 -- 11:20:13.853 INFO [9585]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:20:13.853 INFO [9585]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:20:13.864 INFO [9585]: COREGRADE is stopping... -- 11:20:13.865 DEBUG [9585]: Closing database connection -- 11:20:13.865 SQL [9585]: pgsql_close() -- 11:20:14.714 INFO [9585]: COREGRADE is starting... -- 11:20:14.714 INFO [9585]: Version from config: 1.0 -- 11:20:14.714 DEBUG [9585]: Connecting to database... -- 11:20:14.714 DEBUG [9585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:20:14.714 SQL [9585]: pgsql_db_connect() -- 11:20:14.718 DEBUG [9585]: Database connection successful -- 11:20:14.718 INFO [9585]: _SERVER found -- 11:20:14.718 INFO [9585]: REMOTE_ADDR = 192.168.1.13 -- 11:20:14.718 INFO [9585]: SERVER_NAME = oameye.works.coregrade.com -- 11:20:14.718 INFO [9585]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1870131922.1581954273; ci_session=a6fclm50h4vioolqtslo8qel4p6m5n71 -- 11:20:14.718 INFO [9585]: QUERY_STRING = /member/page -- 11:20:14.718 INFO [9585]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:20:14.759 INFO [9585]: COREGRADE is stopping... -- 11:20:14.759 DEBUG [9585]: Closing database connection -- 11:20:14.759 SQL [9585]: pgsql_close() -- 11:20:15.059 INFO [10721]: COREGRADE is starting... -- 11:20:15.060 INFO [10721]: Version from config: 1.0 -- 11:20:15.060 DEBUG [10721]: Connecting to database... -- 11:20:15.060 DEBUG [10721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:20:15.060 SQL [10721]: pgsql_db_connect() -- 11:20:15.064 DEBUG [10721]: Database connection successful -- 11:20:15.064 INFO [10721]: _SERVER found -- 11:20:15.064 INFO [10721]: REMOTE_ADDR = 192.168.1.13 -- 11:20:15.064 INFO [10721]: SERVER_NAME = oameye.works.coregrade.com -- 11:20:15.064 INFO [10721]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1870131922.1581954273; ci_session=a6fclm50h4vioolqtslo8qel4p6m5n71 -- 11:20:15.064 INFO [10721]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:20:15.064 INFO [10721]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:20:15.076 INFO [10721]: COREGRADE is stopping... -- 11:20:15.076 DEBUG [10721]: Closing database connection -- 11:20:15.076 SQL [10721]: pgsql_close() -- 11:20:38.318 INFO [10725]: COREGRADE is starting... -- 11:20:38.319 INFO [10725]: Version from config: 1.0 -- 11:20:38.319 DEBUG [10725]: Connecting to database... -- 11:20:38.319 DEBUG [10725]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:20:38.319 SQL [10725]: pgsql_db_connect() -- 11:20:38.323 DEBUG [10725]: Database connection successful -- 11:20:38.323 INFO [10725]: _SERVER found -- 11:20:38.323 INFO [10725]: REMOTE_ADDR = 192.168.1.13 -- 11:20:38.323 INFO [10725]: SERVER_NAME = oameye.works.coregrade.com -- 11:20:38.323 INFO [10725]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1870131922.1581954273; ci_session=a6fclm50h4vioolqtslo8qel4p6m5n71 -- 11:20:38.323 INFO [10725]: QUERY_STRING = /member/viewCardAddAction -- 11:20:38.323 INFO [10725]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:20:38.358 INFO [10725]: COREGRADE is stopping... -- 11:20:38.358 DEBUG [10725]: Closing database connection -- 11:20:38.358 SQL [10725]: pgsql_close() -- 11:20:40.079 INFO [10725]: COREGRADE is starting... -- 11:20:40.079 INFO [10725]: Version from config: 1.0 -- 11:20:40.079 DEBUG [10725]: Connecting to database... -- 11:20:40.079 DEBUG [10725]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:20:40.079 SQL [10725]: pgsql_db_connect() -- 11:20:40.083 DEBUG [10725]: Database connection successful -- 11:20:40.083 INFO [10725]: _SERVER found -- 11:20:40.083 INFO [10725]: REMOTE_ADDR = 192.168.1.13 -- 11:20:40.083 INFO [10725]: SERVER_NAME = oameye.works.coregrade.com -- 11:20:40.083 INFO [10725]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1870131922.1581954273; ci_session=a6fclm50h4vioolqtslo8qel4p6m5n71 -- 11:20:40.083 INFO [10725]: QUERY_STRING = /member/viewCardAddAction -- 11:20:40.083 INFO [10725]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:20:40.114 INFO [10725]: COREGRADE is stopping... -- 11:20:40.114 DEBUG [10725]: Closing database connection -- 11:20:40.114 SQL [10725]: pgsql_close() -- 11:23:22.923 INFO [9585]: COREGRADE is starting... -- 11:23:22.923 INFO [9585]: Version from config: 1.0 -- 11:23:22.923 DEBUG [9585]: Connecting to database... -- 11:23:22.923 DEBUG [9585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:23:22.923 SQL [9585]: pgsql_db_connect() -- 11:23:22.927 DEBUG [9585]: Database connection successful -- 11:23:22.927 INFO [9585]: _SERVER found -- 11:23:22.927 INFO [9585]: REMOTE_ADDR = 192.168.1.13 -- 11:23:22.927 INFO [9585]: SERVER_NAME = oameye.works.coregrade.com -- 11:23:22.927 INFO [9585]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1870131922.1581954273; ci_session=a6fclm50h4vioolqtslo8qel4p6m5n71 -- 11:23:22.927 INFO [9585]: QUERY_STRING = /member -- 11:23:22.927 INFO [9585]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:23:22.967 INFO [9585]: COREGRADE is stopping... -- 11:23:22.967 DEBUG [9585]: Closing database connection -- 11:23:22.967 SQL [9585]: pgsql_close() -- 11:23:23.267 INFO [9585]: COREGRADE is starting... -- 11:23:23.267 INFO [9585]: Version from config: 1.0 -- 11:23:23.267 DEBUG [9585]: Connecting to database... -- 11:23:23.267 DEBUG [9585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:23:23.267 SQL [9585]: pgsql_db_connect() -- 11:23:23.271 DEBUG [9585]: Database connection successful -- 11:23:23.271 INFO [9585]: _SERVER found -- 11:23:23.271 INFO [9585]: REMOTE_ADDR = 192.168.1.13 -- 11:23:23.271 INFO [9585]: SERVER_NAME = oameye.works.coregrade.com -- 11:23:23.271 INFO [9585]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1870131922.1581954273; ci_session=a6fclm50h4vioolqtslo8qel4p6m5n71 -- 11:23:23.271 INFO [9585]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:23:23.271 INFO [9585]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:23:23.282 INFO [9585]: COREGRADE is stopping... -- 11:23:23.282 DEBUG [9585]: Closing database connection -- 11:23:23.282 SQL [9585]: pgsql_close() -- 11:23:25.636 INFO [9585]: COREGRADE is starting... -- 11:23:25.637 INFO [9585]: Version from config: 1.0 -- 11:23:25.637 DEBUG [9585]: Connecting to database... -- 11:23:25.637 DEBUG [9585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:23:25.637 SQL [9585]: pgsql_db_connect() -- 11:23:25.641 DEBUG [9585]: Database connection successful -- 11:23:25.641 INFO [9585]: _SERVER found -- 11:23:25.641 INFO [9585]: REMOTE_ADDR = 192.168.1.13 -- 11:23:25.641 INFO [9585]: SERVER_NAME = oameye.works.coregrade.com -- 11:23:25.641 INFO [9585]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1870131922.1581954273; ci_session=a6fclm50h4vioolqtslo8qel4p6m5n71 -- 11:23:25.641 INFO [9585]: QUERY_STRING = /member/page -- 11:23:25.641 INFO [9585]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:23:25.681 INFO [9585]: COREGRADE is stopping... -- 11:23:25.681 DEBUG [9585]: Closing database connection -- 11:23:25.681 SQL [9585]: pgsql_close() -- 11:23:26.033 INFO [9585]: COREGRADE is starting... -- 11:23:26.033 INFO [9585]: Version from config: 1.0 -- 11:23:26.033 DEBUG [9585]: Connecting to database... -- 11:23:26.033 DEBUG [9585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:23:26.033 SQL [9585]: pgsql_db_connect() -- 11:23:26.037 DEBUG [9585]: Database connection successful -- 11:23:26.037 INFO [9585]: _SERVER found -- 11:23:26.037 INFO [9585]: REMOTE_ADDR = 192.168.1.13 -- 11:23:26.037 INFO [9585]: SERVER_NAME = oameye.works.coregrade.com -- 11:23:26.037 INFO [9585]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1870131922.1581954273; ci_session=a6fclm50h4vioolqtslo8qel4p6m5n71 -- 11:23:26.037 INFO [9585]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:23:26.037 INFO [9585]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:23:26.048 INFO [9585]: COREGRADE is stopping... -- 11:23:26.048 DEBUG [9585]: Closing database connection -- 11:23:26.048 SQL [9585]: pgsql_close() -- 12:59:37.497 INFO [9586]: COREGRADE is starting... -- 12:59:37.498 INFO [9586]: Version from config: 1.0 -- 12:59:37.498 DEBUG [9586]: Connecting to database... -- 12:59:37.498 DEBUG [9586]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:59:37.498 SQL [9586]: pgsql_db_connect() -- 12:59:37.504 DEBUG [9586]: Database connection successful -- 12:59:37.504 INFO [9586]: _SERVER found -- 12:59:37.504 INFO [9586]: REMOTE_ADDR = 192.168.1.13 -- 12:59:37.504 INFO [9586]: SERVER_NAME = oameye.works.coregrade.com -- 12:59:37.504 INFO [9586]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628 -- 12:59:37.504 INFO [9586]: QUERY_STRING = /auth -- 12:59:37.504 INFO [9586]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:59:37.540 INFO [9586]: COREGRADE is stopping... -- 12:59:37.540 DEBUG [9586]: Closing database connection -- 12:59:37.540 SQL [9586]: pgsql_close() -- 12:59:38.045 INFO [9586]: COREGRADE is starting... -- 12:59:38.045 INFO [9586]: Version from config: 1.0 -- 12:59:38.045 DEBUG [9586]: Connecting to database... -- 12:59:38.045 DEBUG [9586]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:59:38.045 SQL [9586]: pgsql_db_connect() -- 12:59:38.049 DEBUG [9586]: Database connection successful -- 12:59:38.049 INFO [9586]: _SERVER found -- 12:59:38.049 INFO [9586]: REMOTE_ADDR = 192.168.1.13 -- 12:59:38.049 INFO [9586]: SERVER_NAME = oameye.works.coregrade.com -- 12:59:38.049 INFO [9586]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=r9s1rska44v4mgv1d2ac4cc1i4bvm6pd -- 12:59:38.049 INFO [9586]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 12:59:38.049 INFO [9586]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:59:38.061 INFO [9586]: COREGRADE is stopping... -- 12:59:38.061 DEBUG [9586]: Closing database connection -- 12:59:38.061 SQL [9586]: pgsql_close() -- 12:59:38.190 INFO [9586]: COREGRADE is starting... -- 12:59:38.191 INFO [9586]: Version from config: 1.0 -- 12:59:38.191 DEBUG [9586]: Connecting to database... -- 12:59:38.191 DEBUG [9586]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:59:38.191 SQL [9586]: pgsql_db_connect() -- 12:59:38.194 DEBUG [9586]: Database connection successful -- 12:59:38.195 INFO [9586]: _SERVER found -- 12:59:38.195 INFO [9586]: REMOTE_ADDR = 192.168.1.13 -- 12:59:38.195 INFO [9586]: SERVER_NAME = oameye.works.coregrade.com -- 12:59:38.195 INFO [9586]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=r9s1rska44v4mgv1d2ac4cc1i4bvm6pd -- 12:59:38.195 INFO [9586]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:59:38.195 INFO [9586]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:59:38.206 INFO [9586]: COREGRADE is stopping... -- 12:59:38.206 DEBUG [9586]: Closing database connection -- 12:59:38.206 SQL [9586]: pgsql_close() -- 13:01:20.360 INFO [17796]: COREGRADE is starting... -- 13:01:20.360 INFO [17796]: Version from config: 1.0 -- 13:01:20.360 DEBUG [17796]: Connecting to database... -- 13:01:20.360 DEBUG [17796]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:01:20.360 SQL [17796]: pgsql_db_connect() -- 13:01:20.402 INFO [17796]: COREGRADE is starting... -- 13:01:20.402 INFO [17796]: Version from config: 1.0 -- 13:01:20.402 DEBUG [17796]: Connecting to database... -- 13:01:20.402 DEBUG [17796]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:01:20.402 SQL [17796]: pgsql_db_connect() -- 13:01:20.406 DEBUG [17796]: Database connection successful -- 13:01:20.406 INFO [17796]: _SERVER found -- 13:01:20.406 INFO [17796]: REMOTE_ADDR = 192.168.1.13 -- 13:01:20.406 INFO [17796]: SERVER_NAME = oameye.works.coregrade.com -- 13:01:20.406 INFO [17796]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=r9s1rska44v4mgv1d2ac4cc1i4bvm6pd -- 13:01:20.406 INFO [17796]: QUERY_STRING = -- 13:01:20.406 INFO [17796]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:01:20.406 INFO [17796]: SystemStatus()09-09-********~************ -- 13:01:20.406 INFO [17796]: long coregrade_api_main(CVars in, CVars &out) -- 13:01:20.406 INFO [17796]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 13:01:20.406 INFO [17796]: account calls -- 13:01:20.406 INFO [17796]: account_calls() -- 13:01:20.406 INFO [17796]: LoginCoreGradeAccount() -- 13:01:20.406 FLOG_MAX [17796]: REQ_STRING(username) -- 13:01:20.407 FLOG_MAX [17796]: REQ_STRING(password) -- 13:01:20.407 FLOG_MAX [17796]: REQ_STRING(sessionid) -- 13:01:20.407 FLOG_MAX [17796]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:01:20.407 SQL [17796]: pgsql_query() -- 13:01:20.407 SQL [17796]: About to run query: -- 13:01:20.407 SQL [17796]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 13:01:20.411 SQL [17796]: Found rows: 1 -- 13:01:20.411 FLOG_MAX [17796]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 13:01:20.411 INFO [17796]: long SessionCheck(long uid, const char *sessionid, int create ) -- 13:01:20.411 SQL [17796]: pgsql_exec() -- 13:01:20.411 SQL [17796]: About to run query: -- 13:01:20.411 SQL [17796]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 13:01:20.412 SQL [17796]: PQcmdTuples: 1 -- 13:01:20.412 SQL [17796]: Affected rows: 1 -- 13:01:20.412 SQL [17796]: pgsql_exec() -- 13:01:20.412 SQL [17796]: About to run query: -- 13:01:20.412 SQL [17796]: DELETE FROM members_session WHERE member_id=5 -- 13:01:20.413 SQL [17796]: PQcmdTuples: 0 -- 13:01:20.413 SQL [17796]: Affected rows: 0 -- 13:01:20.413 SQL [17796]: pgsql_query() -- 13:01:20.413 SQL [17796]: About to run query: -- 13:01:20.413 SQL [17796]: SELECT * FROM members_session WHERE member_id=5 AND session<>'E61F066B5E8B179C50F2CE7AF9AADAD8' -- 13:01:20.413 SQL [17796]: Found rows: 0 -- 13:01:20.413 SQL [17796]: Found rows: 0 -- 13:01:20.413 FLOG_MAX [17796]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:01:20.413 SQL [17796]: pgsql_query() -- 13:01:20.413 SQL [17796]: About to run query: -- 13:01:20.413 SQL [17796]: SELECT * FROM members_session WHERE member_id=5 AND session='E61F066B5E8B179C50F2CE7AF9AADAD8' -- 13:01:20.414 SQL [17796]: Found rows: 0 -- 13:01:20.414 SQL [17796]: Found rows: 0 -- 13:01:20.414 FLOG_MAX [17796]: insert_db_record() -- 13:01:20.414 SQL [17796]: pgsql_exec() -- 13:01:20.414 SQL [17796]: About to run query: -- 13:01:20.414 SQL [17796]: INSERT INTO members_session (member_id,session) VALUES ('5','E61F066B5E8B179C50F2CE7AF9AADAD8') -- 13:01:20.415 SQL [17796]: PQcmdTuples: 1 -- 13:01:20.416 SQL [17796]: Affected rows: 1 -- 13:01:20.416 FLOG_MAX [17796]: SELECT currval('members_session_id_seq') -- 13:01:20.416 SQL [17796]: pgsql_query() -- 13:01:20.416 SQL [17796]: About to run query: -- 13:01:20.416 SQL [17796]: SELECT currval('members_session_id_seq') -- 13:01:20.416 SQL [17796]: Found rows: 1 -- 13:01:20.416 INFO [17796]: CreateDefaultPage() -- 13:01:20.416 FLOG_MAX [17796]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:01:20.416 SQL [17796]: pgsql_query() -- 13:01:20.416 SQL [17796]: About to run query: -- 13:01:20.416 SQL [17796]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 13:01:20.416 SQL [17796]: Found rows: 1 -- 13:01:20.416 FLOG_MAX [17796]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 13:01:20.416 SQL [17796]: pgsql_query() -- 13:01:20.416 SQL [17796]: About to run query: -- 13:01:20.416 SQL [17796]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 13:01:20.417 SQL [17796]: Found rows: 1 -- 13:01:20.417 INFO [17796]: /CreateDefaultPage() -- 13:01:20.417 INFO [17796]: /LoginCoreGradeAccount() -- 13:01:20.417 INFO [17796]: RET: added=2020-02-05 06:47:23.982154 -- 13:01:20.417 INFO [17796]: RET: email=ameye+11@chiefsoft.com -- 13:01:20.417 INFO [17796]: RET: firstname=Olu -- 13:01:20.417 INFO [17796]: RET: id=5 -- 13:01:20.417 INFO [17796]: RET: last_login= -- 13:01:20.417 INFO [17796]: RET: lastname=Amey -- 13:01:20.417 INFO [17796]: RET: loc=192.168.1.13 -- 13:01:20.417 INFO [17796]: RET: member_id=5 -- 13:01:20.417 INFO [17796]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 13:01:20.417 INFO [17796]: RET: phone= -- 13:01:20.417 INFO [17796]: RET: pid= -- 13:01:20.417 INFO [17796]: RET: result=YES I GET TO BACK END -- 13:01:20.417 INFO [17796]: RET: sessionid=E61F066B5E8B179C50F2CE7AF9AADAD8 -- 13:01:20.417 INFO [17796]: RET: status=1 -- 13:01:20.417 INFO [17796]: RET: stauts=OK -- 13:01:20.417 INFO [17796]: RET: username=ameye+11@chiefsoft.com -- 13:01:20.417 INFO [17796]: RET: verified= -- 13:01:20.418 INFO [17796]: COREGRADE is stopping... -- 13:01:20.418 DEBUG [17796]: Closing database connection -- 13:01:20.419 SQL [17796]: pgsql_close() -- 13:01:20.365 DEBUG [17796]: Database connection successful -- 13:01:20.365 INFO [17796]: _SERVER found -- 13:01:20.365 INFO [17796]: REMOTE_ADDR = 192.168.1.13 -- 13:01:20.365 INFO [17796]: SERVER_NAME = oameye.works.coregrade.com -- 13:01:20.365 INFO [17796]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=r9s1rska44v4mgv1d2ac4cc1i4bvm6pd -- 13:01:20.365 INFO [17796]: QUERY_STRING = /auth -- 13:01:20.365 INFO [17796]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:01:20.419 INFO [17796]: COREGRADE is stopping... -- 13:01:20.419 DEBUG [17796]: Closing database connection -- 13:01:20.419 SQL [17796]: pgsql_close() -- 13:01:20.437 INFO [17796]: COREGRADE is starting... -- 13:01:20.437 INFO [17796]: Version from config: 1.0 -- 13:01:20.437 DEBUG [17796]: Connecting to database... -- 13:01:20.437 DEBUG [17796]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:01:20.437 SQL [17796]: pgsql_db_connect() -- 13:01:20.441 DEBUG [17796]: Database connection successful -- 13:01:20.441 INFO [17796]: _SERVER found -- 13:01:20.441 INFO [17796]: REMOTE_ADDR = 192.168.1.13 -- 13:01:20.441 INFO [17796]: SERVER_NAME = oameye.works.coregrade.com -- 13:01:20.442 INFO [17796]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=r9s1rska44v4mgv1d2ac4cc1i4bvm6pd -- 13:01:20.442 INFO [17796]: QUERY_STRING = /member/index -- 13:01:20.442 INFO [17796]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:01:20.482 INFO [17796]: COREGRADE is stopping... -- 13:01:20.482 DEBUG [17796]: Closing database connection -- 13:01:20.482 SQL [17796]: pgsql_close() -- 13:01:20.784 INFO [17796]: COREGRADE is starting... -- 13:01:20.784 INFO [17796]: Version from config: 1.0 -- 13:01:20.784 DEBUG [17796]: Connecting to database... -- 13:01:20.784 DEBUG [17796]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:01:20.784 SQL [17796]: pgsql_db_connect() -- 13:01:20.788 DEBUG [17796]: Database connection successful -- 13:01:20.788 INFO [17796]: _SERVER found -- 13:01:20.788 INFO [17796]: REMOTE_ADDR = 192.168.1.13 -- 13:01:20.788 INFO [17796]: SERVER_NAME = oameye.works.coregrade.com -- 13:01:20.788 INFO [17796]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=r9s1rska44v4mgv1d2ac4cc1i4bvm6pd -- 13:01:20.788 INFO [17796]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 13:01:20.788 INFO [17796]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:01:20.799 INFO [17796]: COREGRADE is stopping... -- 13:01:20.799 DEBUG [17796]: Closing database connection -- 13:01:20.799 SQL [17796]: pgsql_close() -- 13:01:20.954 INFO [9583]: COREGRADE is starting... -- 13:01:20.954 INFO [9583]: Version from config: 1.0 -- 13:01:20.954 DEBUG [9583]: Connecting to database... -- 13:01:20.954 DEBUG [9583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:01:20.954 SQL [9583]: pgsql_db_connect() -- 13:01:20.958 DEBUG [9583]: Database connection successful -- 13:01:20.958 INFO [9583]: _SERVER found -- 13:01:20.958 INFO [9583]: REMOTE_ADDR = 192.168.1.13 -- 13:01:20.958 INFO [9583]: SERVER_NAME = oameye.works.coregrade.com -- 13:01:20.958 INFO [9583]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=r9s1rska44v4mgv1d2ac4cc1i4bvm6pd -- 13:01:20.958 INFO [9583]: QUERY_STRING = /app-assets/data/locales/en.json -- 13:01:20.958 INFO [9583]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:01:20.972 INFO [9583]: COREGRADE is stopping... -- 13:01:20.972 DEBUG [9583]: Closing database connection -- 13:01:20.972 SQL [9583]: pgsql_close() -- 13:01:22.383 INFO [9583]: COREGRADE is starting... -- 13:01:22.383 INFO [9583]: Version from config: 1.0 -- 13:01:22.383 DEBUG [9583]: Connecting to database... -- 13:01:22.383 DEBUG [9583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:01:22.383 SQL [9583]: pgsql_db_connect() -- 13:01:22.387 DEBUG [9583]: Database connection successful -- 13:01:22.387 INFO [9583]: _SERVER found -- 13:01:22.387 INFO [9583]: REMOTE_ADDR = 192.168.1.13 -- 13:01:22.387 INFO [9583]: SERVER_NAME = oameye.works.coregrade.com -- 13:01:22.387 INFO [9583]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=r9s1rska44v4mgv1d2ac4cc1i4bvm6pd -- 13:01:22.387 INFO [9583]: QUERY_STRING = /member/page -- 13:01:22.387 INFO [9583]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:01:22.430 INFO [9583]: COREGRADE is stopping... -- 13:01:22.430 DEBUG [9583]: Closing database connection -- 13:01:22.430 SQL [9583]: pgsql_close() -- 13:01:22.649 INFO [9583]: COREGRADE is starting... -- 13:01:22.650 INFO [9583]: Version from config: 1.0 -- 13:01:22.650 DEBUG [9583]: Connecting to database... -- 13:01:22.650 DEBUG [9583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:01:22.650 SQL [9583]: pgsql_db_connect() -- 13:01:22.654 DEBUG [9583]: Database connection successful -- 13:01:22.654 INFO [9583]: _SERVER found -- 13:01:22.654 INFO [9583]: REMOTE_ADDR = 192.168.1.13 -- 13:01:22.654 INFO [9583]: SERVER_NAME = oameye.works.coregrade.com -- 13:01:22.654 INFO [9583]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=r9s1rska44v4mgv1d2ac4cc1i4bvm6pd -- 13:01:22.654 INFO [9583]: QUERY_STRING = /app-assets/data/locales/en.json -- 13:01:22.654 INFO [9583]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:01:22.665 INFO [9583]: COREGRADE is stopping... -- 13:01:22.665 DEBUG [9583]: Closing database connection -- 13:01:22.665 SQL [9583]: pgsql_close() -- 13:02:32.420 INFO [10721]: COREGRADE is starting... -- 13:02:32.420 INFO [10721]: Version from config: 1.0 -- 13:02:32.420 DEBUG [10721]: Connecting to database... -- 13:02:32.420 DEBUG [10721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:02:32.420 SQL [10721]: pgsql_db_connect() -- 13:02:32.424 DEBUG [10721]: Database connection successful -- 13:02:32.424 INFO [10721]: _SERVER found -- 13:02:32.424 INFO [10721]: REMOTE_ADDR = 192.168.1.13 -- 13:02:32.424 INFO [10721]: SERVER_NAME = oameye.works.coregrade.com -- 13:02:32.424 INFO [10721]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=r9s1rska44v4mgv1d2ac4cc1i4bvm6pd -- 13:02:32.424 INFO [10721]: QUERY_STRING = /member/viewCardAddAction -- 13:02:32.424 INFO [10721]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:02:32.460 INFO [10721]: COREGRADE is stopping... -- 13:02:32.460 DEBUG [10721]: Closing database connection -- 13:02:32.460 SQL [10721]: pgsql_close() -- 13:02:34.409 INFO [10721]: COREGRADE is starting... -- 13:02:34.410 INFO [10721]: Version from config: 1.0 -- 13:02:34.410 DEBUG [10721]: Connecting to database... -- 13:02:34.410 DEBUG [10721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:02:34.410 SQL [10721]: pgsql_db_connect() -- 13:02:34.414 DEBUG [10721]: Database connection successful -- 13:02:34.414 INFO [10721]: _SERVER found -- 13:02:34.414 INFO [10721]: REMOTE_ADDR = 192.168.1.13 -- 13:02:34.414 INFO [10721]: SERVER_NAME = oameye.works.coregrade.com -- 13:02:34.414 INFO [10721]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=r9s1rska44v4mgv1d2ac4cc1i4bvm6pd -- 13:02:34.414 INFO [10721]: QUERY_STRING = /member/viewCardAddAction -- 13:02:34.414 INFO [10721]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:02:34.444 INFO [10721]: COREGRADE is stopping... -- 13:02:34.444 DEBUG [10721]: Closing database connection -- 13:02:34.444 SQL [10721]: pgsql_close() -- 13:02:43.242 INFO [10730]: COREGRADE is starting... -- 13:02:43.242 INFO [10730]: Version from config: 1.0 -- 13:02:43.242 DEBUG [10730]: Connecting to database... -- 13:02:43.242 DEBUG [10730]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:02:43.242 SQL [10730]: pgsql_db_connect() -- 13:02:43.246 DEBUG [10730]: Database connection successful -- 13:02:43.246 INFO [10730]: _SERVER found -- 13:02:43.246 INFO [10730]: REMOTE_ADDR = 192.168.1.13 -- 13:02:43.246 INFO [10730]: SERVER_NAME = oameye.works.coregrade.com -- 13:02:43.246 INFO [10730]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=r9s1rska44v4mgv1d2ac4cc1i4bvm6pd -- 13:02:43.246 INFO [10730]: QUERY_STRING = /member/viewCardAddAction -- 13:02:43.246 INFO [10730]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:02:43.278 INFO [10730]: COREGRADE is stopping... -- 13:02:43.278 DEBUG [10730]: Closing database connection -- 13:02:43.278 SQL [10730]: pgsql_close() -- 13:02:44.722 INFO [10730]: COREGRADE is starting... -- 13:02:44.722 INFO [10730]: Version from config: 1.0 -- 13:02:44.722 DEBUG [10730]: Connecting to database... -- 13:02:44.722 DEBUG [10730]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:02:44.723 SQL [10730]: pgsql_db_connect() -- 13:02:44.727 DEBUG [10730]: Database connection successful -- 13:02:44.727 INFO [10730]: _SERVER found -- 13:02:44.727 INFO [10730]: REMOTE_ADDR = 192.168.1.13 -- 13:02:44.727 INFO [10730]: SERVER_NAME = oameye.works.coregrade.com -- 13:02:44.727 INFO [10730]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=r9s1rska44v4mgv1d2ac4cc1i4bvm6pd -- 13:02:44.727 INFO [10730]: QUERY_STRING = /member/addNotecard -- 13:02:44.727 INFO [10730]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:02:44.756 INFO [10730]: COREGRADE is stopping... -- 13:02:44.757 DEBUG [10730]: Closing database connection -- 13:02:44.757 SQL [10730]: pgsql_close() -- 13:02:47.543 INFO [10730]: COREGRADE is starting... -- 13:02:47.543 INFO [10730]: Version from config: 1.0 -- 13:02:47.543 DEBUG [10730]: Connecting to database... -- 13:02:47.543 DEBUG [10730]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:02:47.543 SQL [10730]: pgsql_db_connect() -- 13:02:47.547 DEBUG [10730]: Database connection successful -- 13:02:47.547 INFO [10730]: _SERVER found -- 13:02:47.547 INFO [10730]: REMOTE_ADDR = 192.168.1.13 -- 13:02:47.547 INFO [10730]: SERVER_NAME = oameye.works.coregrade.com -- 13:02:47.547 INFO [10730]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=r9s1rska44v4mgv1d2ac4cc1i4bvm6pd -- 13:02:47.547 INFO [10730]: QUERY_STRING = /member/page -- 13:02:47.547 INFO [10730]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:02:47.588 INFO [10730]: COREGRADE is stopping... -- 13:02:47.588 DEBUG [10730]: Closing database connection -- 13:02:47.588 SQL [10730]: pgsql_close() -- 13:02:47.798 INFO [10730]: COREGRADE is starting... -- 13:02:47.798 INFO [10730]: Version from config: 1.0 -- 13:02:47.798 DEBUG [10730]: Connecting to database... -- 13:02:47.798 DEBUG [10730]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:02:47.798 SQL [10730]: pgsql_db_connect() -- 13:02:47.802 DEBUG [10730]: Database connection successful -- 13:02:47.802 INFO [10730]: _SERVER found -- 13:02:47.802 INFO [10730]: REMOTE_ADDR = 192.168.1.13 -- 13:02:47.802 INFO [10730]: SERVER_NAME = oameye.works.coregrade.com -- 13:02:47.802 INFO [10730]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=r9s1rska44v4mgv1d2ac4cc1i4bvm6pd -- 13:02:47.802 INFO [10730]: QUERY_STRING = /app-assets/data/locales/en.json -- 13:02:47.802 INFO [10730]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:02:47.814 INFO [10730]: COREGRADE is stopping... -- 13:02:47.814 DEBUG [10730]: Closing database connection -- 13:02:47.814 SQL [10730]: pgsql_close() -- 13:14:31.878 INFO [9587]: COREGRADE is starting... -- 13:14:31.878 INFO [9587]: Version from config: 1.0 -- 13:14:31.878 DEBUG [9587]: Connecting to database... -- 13:14:31.878 DEBUG [9587]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:14:31.878 SQL [9587]: pgsql_db_connect() -- 13:14:31.883 DEBUG [9587]: Database connection successful -- 13:14:31.883 INFO [9587]: _SERVER found -- 13:14:31.883 INFO [9587]: REMOTE_ADDR = 192.168.1.13 -- 13:14:31.883 INFO [9587]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:14:31.883 INFO [9587]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1870131922.1581954273 -- 13:14:31.883 INFO [9587]: QUERY_STRING = -- 13:14:31.883 INFO [9587]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:14:31.919 INFO [9587]: COREGRADE is stopping... -- 13:14:31.919 DEBUG [9587]: Closing database connection -- 13:14:31.919 SQL [9587]: pgsql_close() -- 14:26:51.933 INFO [10724]: COREGRADE is starting... -- 14:26:51.934 INFO [10724]: Version from config: 1.0 -- 14:26:51.934 DEBUG [10724]: Connecting to database... -- 14:26:51.934 DEBUG [10724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:26:51.934 SQL [10724]: pgsql_db_connect() -- 14:26:51.938 DEBUG [10724]: Database connection successful -- 14:26:51.938 INFO [10724]: _SERVER found -- 14:26:51.938 INFO [10724]: REMOTE_ADDR = 192.168.1.13 -- 14:26:51.938 INFO [10724]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:26:51.938 INFO [10724]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371 -- 14:26:51.938 INFO [10724]: QUERY_STRING = /auth -- 14:26:51.938 INFO [10724]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:26:51.976 INFO [10724]: COREGRADE is stopping... -- 14:26:51.976 DEBUG [10724]: Closing database connection -- 14:26:51.976 SQL [10724]: pgsql_close() -- 14:26:58.163 INFO [10730]: COREGRADE is starting... -- 14:26:58.163 INFO [10730]: Version from config: 1.0 -- 14:26:58.163 DEBUG [10730]: Connecting to database... -- 14:26:58.163 DEBUG [10730]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:26:58.163 SQL [10730]: pgsql_db_connect() -- 14:26:58.167 DEBUG [10730]: Database connection successful -- 14:26:58.167 INFO [10730]: _SERVER found -- 14:26:58.167 INFO [10730]: REMOTE_ADDR = 192.168.1.13 -- 14:26:58.167 INFO [10730]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:26:58.167 INFO [10730]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; ci_session=jv7mnr3oqbvnne7u89uo4oso7def8o9k -- 14:26:58.167 INFO [10730]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:26:58.167 INFO [10730]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:26:58.179 INFO [10730]: COREGRADE is stopping... -- 14:26:58.179 DEBUG [10730]: Closing database connection -- 14:26:58.179 SQL [10730]: pgsql_close() -- 14:26:58.649 INFO [10730]: COREGRADE is starting... -- 14:26:58.649 INFO [10730]: Version from config: 1.0 -- 14:26:58.649 DEBUG [10730]: Connecting to database... -- 14:26:58.649 DEBUG [10730]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:26:58.649 SQL [10730]: pgsql_db_connect() -- 14:26:58.653 DEBUG [10730]: Database connection successful -- 14:26:58.653 INFO [10730]: _SERVER found -- 14:26:58.653 INFO [10730]: REMOTE_ADDR = 192.168.1.13 -- 14:26:58.653 INFO [10730]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:26:58.653 INFO [10730]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; ci_session=jv7mnr3oqbvnne7u89uo4oso7def8o9k -- 14:26:58.653 INFO [10730]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:26:58.653 INFO [10730]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:26:58.664 INFO [10730]: COREGRADE is stopping... -- 14:26:58.664 DEBUG [10730]: Closing database connection -- 14:26:58.664 SQL [10730]: pgsql_close() -- 14:26:59.539 INFO [10724]: COREGRADE is starting... -- 14:26:59.540 INFO [10724]: Version from config: 1.0 -- 14:26:59.540 DEBUG [10724]: Connecting to database... -- 14:26:59.540 DEBUG [10724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:26:59.540 SQL [10724]: pgsql_db_connect() -- 14:26:59.544 DEBUG [10724]: Database connection successful -- 14:26:59.544 INFO [10724]: _SERVER found -- 14:26:59.544 INFO [10724]: REMOTE_ADDR = 192.168.1.13 -- 14:26:59.544 INFO [10724]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:26:59.544 INFO [10724]: HTTP_COOKIE = ci_session=jv7mnr3oqbvnne7u89uo4oso7def8o9k; _ga=GA1.2.1126635332.1581100371 -- 14:26:59.544 INFO [10724]: QUERY_STRING = /auth -- 14:26:59.544 INFO [10724]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:26:59.575 INFO [10724]: COREGRADE is stopping... -- 14:26:59.575 DEBUG [10724]: Closing database connection -- 14:26:59.575 SQL [10724]: pgsql_close() -- 14:26:59.676 INFO [10724]: COREGRADE is starting... -- 14:26:59.676 INFO [10724]: Version from config: 1.0 -- 14:26:59.676 DEBUG [10724]: Connecting to database... -- 14:26:59.676 DEBUG [10724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:26:59.676 SQL [10724]: pgsql_db_connect() -- 14:26:59.681 DEBUG [10724]: Database connection successful -- 14:26:59.681 INFO [10724]: _SERVER found -- 14:26:59.681 INFO [10724]: REMOTE_ADDR = 192.168.1.13 -- 14:26:59.681 INFO [10724]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:26:59.681 INFO [10724]: HTTP_COOKIE = ci_session=jv7mnr3oqbvnne7u89uo4oso7def8o9k; _ga=GA1.2.1126635332.1581100371 -- 14:26:59.681 INFO [10724]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:26:59.681 INFO [10724]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:26:59.692 INFO [10724]: COREGRADE is stopping... -- 14:26:59.692 DEBUG [10724]: Closing database connection -- 14:26:59.692 SQL [10724]: pgsql_close() -- 14:27:00.415 INFO [10724]: COREGRADE is starting... -- 14:27:00.415 INFO [10724]: Version from config: 1.0 -- 14:27:00.415 DEBUG [10724]: Connecting to database... -- 14:27:00.415 DEBUG [10724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:27:00.415 SQL [10724]: pgsql_db_connect() -- 14:27:00.419 DEBUG [10724]: Database connection successful -- 14:27:00.419 INFO [10724]: _SERVER found -- 14:27:00.419 INFO [10724]: REMOTE_ADDR = 192.168.1.13 -- 14:27:00.419 INFO [10724]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:27:00.419 INFO [10724]: HTTP_COOKIE = ci_session=jv7mnr3oqbvnne7u89uo4oso7def8o9k; _ga=GA1.2.1126635332.1581100371 -- 14:27:00.419 INFO [10724]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:27:00.419 INFO [10724]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:27:00.430 INFO [10724]: COREGRADE is stopping... -- 14:27:00.430 DEBUG [10724]: Closing database connection -- 14:27:00.430 SQL [10724]: pgsql_close() -- 15:12:45.459 INFO [10721]: COREGRADE is starting... -- 15:12:45.459 INFO [10721]: Version from config: 1.0 -- 15:12:45.459 DEBUG [10721]: Connecting to database... -- 15:12:45.459 DEBUG [10721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:12:45.459 SQL [10721]: pgsql_db_connect() -- 15:12:45.465 DEBUG [10721]: Database connection successful -- 15:12:45.465 INFO [10721]: _SERVER found -- 15:12:45.465 INFO [10721]: REMOTE_ADDR = 192.168.1.13 -- 15:12:45.465 INFO [10721]: SERVER_NAME = oameye.works.coregrade.com -- 15:12:45.465 INFO [10721]: QUERY_STRING = -- 15:12:45.465 INFO [10721]: HTTP_X_FORWARDED_FOR = 45.143.220.184 -- 15:12:45.508 INFO [10721]: COREGRADE is stopping... -- 15:12:45.508 DEBUG [10721]: Closing database connection -- 15:12:45.508 SQL [10721]: pgsql_close() -- 15:42:47.909 INFO [10725]: COREGRADE is starting... -- 15:42:47.910 INFO [10725]: Version from config: 1.0 -- 15:42:47.910 DEBUG [10725]: Connecting to database... -- 15:42:47.910 DEBUG [10725]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:42:47.910 SQL [10725]: pgsql_db_connect() -- 15:42:47.915 DEBUG [10725]: Database connection successful -- 15:42:47.915 INFO [10725]: _SERVER found -- 15:42:47.915 INFO [10725]: REMOTE_ADDR = 192.168.1.13 -- 15:42:47.915 INFO [10725]: SERVER_NAME = oameye.works.coregrade.com -- 15:42:47.915 INFO [10725]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628 -- 15:42:47.915 INFO [10725]: QUERY_STRING = /auth -- 15:42:47.915 INFO [10725]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:42:47.950 INFO [10725]: COREGRADE is stopping... -- 15:42:47.950 DEBUG [10725]: Closing database connection -- 15:42:47.950 SQL [10725]: pgsql_close() -- 15:42:48.056 INFO [10725]: COREGRADE is starting... -- 15:42:48.057 INFO [10725]: Version from config: 1.0 -- 15:42:48.057 DEBUG [10725]: Connecting to database... -- 15:42:48.057 DEBUG [10725]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:42:48.057 SQL [10725]: pgsql_db_connect() -- 15:42:48.061 DEBUG [10725]: Database connection successful -- 15:42:48.061 INFO [10725]: _SERVER found -- 15:42:48.061 INFO [10725]: REMOTE_ADDR = 192.168.1.13 -- 15:42:48.061 INFO [10725]: SERVER_NAME = oameye.works.coregrade.com -- 15:42:48.061 INFO [10725]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=i3iqg4eavu85mg2f1uj8vef0siijrj0b -- 15:42:48.061 INFO [10725]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:42:48.061 INFO [10725]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:42:48.072 INFO [10725]: COREGRADE is stopping... -- 15:42:48.072 DEBUG [10725]: Closing database connection -- 15:42:48.072 SQL [10725]: pgsql_close() -- 15:42:48.557 INFO [10725]: COREGRADE is starting... -- 15:42:48.557 INFO [10725]: Version from config: 1.0 -- 15:42:48.557 DEBUG [10725]: Connecting to database... -- 15:42:48.557 DEBUG [10725]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:42:48.557 SQL [10725]: pgsql_db_connect() -- 15:42:48.561 DEBUG [10725]: Database connection successful -- 15:42:48.561 INFO [10725]: _SERVER found -- 15:42:48.561 INFO [10725]: REMOTE_ADDR = 192.168.1.13 -- 15:42:48.561 INFO [10725]: SERVER_NAME = oameye.works.coregrade.com -- 15:42:48.561 INFO [10725]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=i3iqg4eavu85mg2f1uj8vef0siijrj0b -- 15:42:48.561 INFO [10725]: QUERY_STRING = /app-assets/data/locales/en.json -- 15:42:48.561 INFO [10725]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:42:48.573 INFO [10725]: COREGRADE is stopping... -- 15:42:48.573 DEBUG [10725]: Closing database connection -- 15:42:48.573 SQL [10725]: pgsql_close() -- 16:25:18.945 INFO [9587]: COREGRADE is starting... -- 16:25:18.946 INFO [9587]: Version from config: 1.0 -- 16:25:18.946 DEBUG [9587]: Connecting to database... -- 16:25:18.946 DEBUG [9587]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:18.946 SQL [9587]: pgsql_db_connect() -- 16:25:18.950 DEBUG [9587]: Database connection successful -- 16:25:18.950 INFO [9587]: _SERVER found -- 16:25:18.950 INFO [9587]: REMOTE_ADDR = 192.168.1.13 -- 16:25:18.950 INFO [9587]: SERVER_NAME = oameye.works.coregrade.com -- 16:25:18.950 INFO [9587]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 16:25:18.950 INFO [9587]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 16:25:18.964 INFO [9587]: COREGRADE is stopping... -- 16:25:18.964 DEBUG [9587]: Closing database connection -- 16:25:18.964 SQL [9587]: pgsql_close() -- 16:50:57.512 INFO [19115]: COREGRADE is starting... -- 16:50:57.513 INFO [19115]: Version from config: 1.0 -- 16:50:57.513 DEBUG [19115]: Connecting to database... -- 16:50:57.513 DEBUG [19115]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:50:57.513 SQL [19115]: pgsql_db_connect() -- 16:50:57.518 DEBUG [19115]: Database connection successful -- 16:50:57.518 INFO [19115]: _SERVER found -- 16:50:57.518 INFO [19115]: REMOTE_ADDR = 192.168.1.13 -- 16:50:57.518 INFO [19115]: SERVER_NAME = oameye.works.coregrade.com -- 16:50:57.518 INFO [19115]: QUERY_STRING = -- 16:50:57.518 INFO [19115]: HTTP_X_FORWARDED_FOR = 145.220.15.29 -- 16:50:57.569 INFO [19115]: COREGRADE is stopping... -- 16:50:57.569 DEBUG [19115]: Closing database connection -- 16:50:57.569 SQL [19115]: pgsql_close() -- 17:51:06.297 INFO [17809]: COREGRADE is starting... -- 17:51:06.297 INFO [17809]: Version from config: 1.0 -- 17:51:06.297 DEBUG [17809]: Connecting to database... -- 17:51:06.297 DEBUG [17809]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:51:06.297 SQL [17809]: pgsql_db_connect() -- 17:51:06.302 DEBUG [17809]: Database connection successful -- 17:51:06.302 INFO [17809]: _SERVER found -- 17:51:06.302 INFO [17809]: REMOTE_ADDR = 192.168.1.13 -- 17:51:06.302 INFO [17809]: SERVER_NAME = oameye.works.coregrade.com -- 17:51:06.302 INFO [17809]: QUERY_STRING = /TP/public/index.php -- 17:51:06.302 INFO [17809]: HTTP_X_FORWARDED_FOR = 140.143.16.158 -- 17:51:06.317 INFO [17809]: COREGRADE is stopping... -- 17:51:06.317 DEBUG [17809]: Closing database connection -- 17:51:06.317 SQL [17809]: pgsql_close() -- 17:51:07.675 INFO [17809]: COREGRADE is starting... -- 17:51:07.675 INFO [17809]: Version from config: 1.0 -- 17:51:07.675 DEBUG [17809]: Connecting to database... -- 17:51:07.675 DEBUG [17809]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:51:07.675 SQL [17809]: pgsql_db_connect() -- 17:51:07.680 DEBUG [17809]: Database connection successful -- 17:51:07.680 INFO [17809]: _SERVER found -- 17:51:07.680 INFO [17809]: REMOTE_ADDR = 192.168.1.13 -- 17:51:07.680 INFO [17809]: SERVER_NAME = oameye.works.coregrade.com -- 17:51:07.680 INFO [17809]: QUERY_STRING = /TP/index.php -- 17:51:07.680 INFO [17809]: HTTP_X_FORWARDED_FOR = 140.143.16.158 -- 17:51:07.691 INFO [17809]: COREGRADE is stopping... -- 17:51:07.691 DEBUG [17809]: Closing database connection -- 17:51:07.691 SQL [17809]: pgsql_close() -- 17:51:09.058 INFO [17809]: COREGRADE is starting... -- 17:51:09.059 INFO [17809]: Version from config: 1.0 -- 17:51:09.059 DEBUG [17809]: Connecting to database... -- 17:51:09.059 DEBUG [17809]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:51:09.059 SQL [17809]: pgsql_db_connect() -- 17:51:09.063 DEBUG [17809]: Database connection successful -- 17:51:09.063 INFO [17809]: _SERVER found -- 17:51:09.063 INFO [17809]: REMOTE_ADDR = 192.168.1.13 -- 17:51:09.063 INFO [17809]: SERVER_NAME = oameye.works.coregrade.com -- 17:51:09.063 INFO [17809]: QUERY_STRING = /thinkphp/html/public/index.php -- 17:51:09.063 INFO [17809]: HTTP_X_FORWARDED_FOR = 140.143.16.158 -- 17:51:09.074 INFO [17809]: COREGRADE is stopping... -- 17:51:09.074 DEBUG [17809]: Closing database connection -- 17:51:09.074 SQL [17809]: pgsql_close() -- 17:51:11.041 INFO [17809]: COREGRADE is starting... -- 17:51:11.042 INFO [17809]: Version from config: 1.0 -- 17:51:11.042 DEBUG [17809]: Connecting to database... -- 17:51:11.042 DEBUG [17809]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:51:11.042 SQL [17809]: pgsql_db_connect() -- 17:51:11.046 DEBUG [17809]: Database connection successful -- 17:51:11.046 INFO [17809]: _SERVER found -- 17:51:11.046 INFO [17809]: REMOTE_ADDR = 192.168.1.13 -- 17:51:11.046 INFO [17809]: SERVER_NAME = oameye.works.coregrade.com -- 17:51:11.046 INFO [17809]: QUERY_STRING = /html/public/index.php -- 17:51:11.046 INFO [17809]: HTTP_X_FORWARDED_FOR = 140.143.16.158 -- 17:51:11.057 INFO [17809]: COREGRADE is stopping... -- 17:51:11.057 DEBUG [17809]: Closing database connection -- 17:51:11.057 SQL [17809]: pgsql_close() -- 18:21:47.489 INFO [10730]: COREGRADE is starting... -- 18:21:47.489 INFO [10730]: Version from config: 1.0 -- 18:21:47.489 DEBUG [10730]: Connecting to database... -- 18:21:47.489 DEBUG [10730]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:21:47.489 SQL [10730]: pgsql_db_connect() -- 18:21:47.494 DEBUG [10730]: Database connection successful -- 18:21:47.494 INFO [10730]: _SERVER found -- 18:21:47.494 INFO [10730]: REMOTE_ADDR = 192.168.1.13 -- 18:21:47.494 INFO [10730]: SERVER_NAME = oameye.works.coregrade.com -- 18:21:47.494 INFO [10730]: QUERY_STRING = /admin/config.php -- 18:21:47.494 INFO [10730]: HTTP_X_FORWARDED_FOR = 45.143.221.47 -- 18:21:47.506 INFO [10730]: COREGRADE is stopping... -- 18:21:47.506 DEBUG [10730]: Closing database connection -- 18:21:47.506 SQL [10730]: pgsql_close() -- 18:55:29.539 INFO [9583]: COREGRADE is starting... -- 18:55:29.540 INFO [9583]: Version from config: 1.0 -- 18:55:29.540 DEBUG [9583]: Connecting to database... -- 18:55:29.540 DEBUG [9583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:29.540 SQL [9583]: pgsql_db_connect() -- 18:55:29.544 DEBUG [9583]: Database connection successful -- 18:55:29.544 INFO [9583]: _SERVER found -- 18:55:29.544 INFO [9583]: REMOTE_ADDR = 192.168.1.13 -- 18:55:29.544 INFO [9583]: SERVER_NAME = oameye.works.coregrade.com -- 18:55:29.544 INFO [9583]: QUERY_STRING = -- 18:55:29.544 INFO [9583]: HTTP_X_FORWARDED_FOR = 94.102.56.151 -- 18:55:29.582 INFO [9583]: COREGRADE is stopping... -- 18:55:29.582 DEBUG [9583]: Closing database connection -- 18:55:29.582 SQL [9583]: pgsql_close() -- 21:54:12.381 INFO [19120]: COREGRADE is starting... -- 21:54:12.381 INFO [19120]: Version from config: 1.0 -- 21:54:12.381 DEBUG [19120]: Connecting to database... -- 21:54:12.381 DEBUG [19120]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:54:12.381 SQL [19120]: pgsql_db_connect() -- 21:54:12.386 DEBUG [19120]: Database connection successful -- 21:54:12.386 INFO [19120]: _SERVER found -- 21:54:12.386 INFO [19120]: REMOTE_ADDR = 192.168.1.13 -- 21:54:12.386 INFO [19120]: SERVER_NAME = oameye.works.coregrade.com -- 21:54:12.386 INFO [19120]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965 -- 21:54:12.386 INFO [19120]: QUERY_STRING = -- 21:54:12.386 INFO [19120]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:54:12.435 INFO [19120]: COREGRADE is stopping... -- 21:54:12.435 DEBUG [19120]: Closing database connection -- 21:54:12.435 SQL [19120]: pgsql_close() -- 21:54:12.670 INFO [19120]: COREGRADE is starting... -- 21:54:12.670 INFO [19120]: Version from config: 1.0 -- 21:54:12.670 DEBUG [19120]: Connecting to database... -- 21:54:12.670 DEBUG [19120]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:54:12.670 SQL [19120]: pgsql_db_connect() -- 21:54:12.676 INFO [10724]: COREGRADE is starting... -- 21:54:12.676 INFO [10724]: Version from config: 1.0 -- 21:54:12.676 DEBUG [10724]: Connecting to database... -- 21:54:12.676 DEBUG [10724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:54:12.676 SQL [10724]: pgsql_db_connect() -- 21:54:12.674 DEBUG [19120]: Database connection successful -- 21:54:12.674 INFO [19120]: _SERVER found -- 21:54:12.674 INFO [19120]: REMOTE_ADDR = 192.168.1.13 -- 21:54:12.674 INFO [19120]: SERVER_NAME = oameye.works.coregrade.com -- 21:54:12.674 INFO [19120]: HTTP_COOKIE = ci_session=76tdg4emhlsi0rkijbl1o86e39t9legu; _ga=GA1.2.38091328.1580686965 -- 21:54:12.674 INFO [19120]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 21:54:12.674 INFO [19120]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:54:12.686 INFO [19120]: COREGRADE is stopping... -- 21:54:12.687 DEBUG [19120]: Closing database connection -- 21:54:12.687 SQL [19120]: pgsql_close() -- 21:54:12.680 DEBUG [10724]: Database connection successful -- 21:54:12.680 INFO [10724]: _SERVER found -- 21:54:12.680 INFO [10724]: REMOTE_ADDR = 192.168.1.13 -- 21:54:12.680 INFO [10724]: SERVER_NAME = oameye.works.coregrade.com -- 21:54:12.680 INFO [10724]: HTTP_COOKIE = ci_session=76tdg4emhlsi0rkijbl1o86e39t9legu; _ga=GA1.2.38091328.1580686965 -- 21:54:12.680 INFO [10724]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:54:12.680 INFO [10724]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:54:12.694 INFO [10724]: COREGRADE is stopping... -- 21:54:12.694 DEBUG [10724]: Closing database connection -- 21:54:12.694 SQL [10724]: pgsql_close() -- 21:54:15.660 INFO [19120]: COREGRADE is starting... -- 21:54:15.660 INFO [19120]: Version from config: 1.0 -- 21:54:15.660 DEBUG [19120]: Connecting to database... -- 21:54:15.660 DEBUG [19120]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:54:15.660 SQL [19120]: pgsql_db_connect() -- 21:54:15.664 DEBUG [19120]: Database connection successful -- 21:54:15.664 INFO [19120]: _SERVER found -- 21:54:15.664 INFO [19120]: REMOTE_ADDR = 192.168.1.13 -- 21:54:15.664 INFO [19120]: SERVER_NAME = oameye.works.coregrade.com -- 21:54:15.664 INFO [19120]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1341397451.1581994453; ci_session=76tdg4emhlsi0rkijbl1o86e39t9legu -- 21:54:15.664 INFO [19120]: QUERY_STRING = -- 21:54:15.664 INFO [19120]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:54:15.695 INFO [19120]: COREGRADE is stopping... -- 21:54:15.695 DEBUG [19120]: Closing database connection -- 21:54:15.695 SQL [19120]: pgsql_close() -- 21:54:15.862 INFO [19120]: COREGRADE is starting... -- 21:54:15.863 INFO [19120]: Version from config: 1.0 -- 21:54:15.863 DEBUG [19120]: Connecting to database... -- 21:54:15.863 DEBUG [19120]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:54:15.863 SQL [19120]: pgsql_db_connect() -- 21:54:15.870 INFO [10724]: COREGRADE is starting... -- 21:54:15.870 INFO [10724]: Version from config: 1.0 -- 21:54:15.870 DEBUG [10724]: Connecting to database... -- 21:54:15.870 DEBUG [10724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:54:15.870 SQL [10724]: pgsql_db_connect() -- 21:54:15.867 DEBUG [19120]: Database connection successful -- 21:54:15.867 INFO [19120]: _SERVER found -- 21:54:15.867 INFO [19120]: REMOTE_ADDR = 192.168.1.13 -- 21:54:15.867 INFO [19120]: SERVER_NAME = oameye.works.coregrade.com -- 21:54:15.867 INFO [19120]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1341397451.1581994453; ci_session=76tdg4emhlsi0rkijbl1o86e39t9legu -- 21:54:15.867 INFO [19120]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 21:54:15.867 INFO [19120]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:54:15.878 INFO [19120]: COREGRADE is stopping... -- 21:54:15.878 DEBUG [19120]: Closing database connection -- 21:54:15.878 SQL [19120]: pgsql_close() -- 21:54:15.874 DEBUG [10724]: Database connection successful -- 21:54:15.874 INFO [10724]: _SERVER found -- 21:54:15.874 INFO [10724]: REMOTE_ADDR = 192.168.1.13 -- 21:54:15.874 INFO [10724]: SERVER_NAME = oameye.works.coregrade.com -- 21:54:15.874 INFO [10724]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1341397451.1581994453; ci_session=76tdg4emhlsi0rkijbl1o86e39t9legu -- 21:54:15.874 INFO [10724]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:54:15.874 INFO [10724]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:54:15.885 INFO [10724]: COREGRADE is stopping... -- 21:54:15.885 DEBUG [10724]: Closing database connection -- 21:54:15.885 SQL [10724]: pgsql_close() -- 00:31:35.085 INFO [10721]: COREGRADE is starting... -- 00:31:35.086 INFO [10721]: Version from config: 1.0 -- 00:31:35.086 DEBUG [10721]: Connecting to database... -- 00:31:35.086 DEBUG [10721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:31:35.086 SQL [10721]: pgsql_db_connect() -- 00:31:35.090 DEBUG [10721]: Database connection successful -- 00:31:35.090 INFO [10721]: _SERVER found -- 00:31:35.090 INFO [10721]: REMOTE_ADDR = 192.168.1.13 -- 00:31:35.090 INFO [10721]: SERVER_NAME = oameye.works.coregrade.com -- 00:31:35.090 INFO [10721]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628 -- 00:31:35.090 INFO [10721]: QUERY_STRING = /auth -- 00:31:35.090 INFO [10721]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:31:35.127 INFO [10721]: COREGRADE is stopping... -- 00:31:35.127 DEBUG [10721]: Closing database connection -- 00:31:35.127 SQL [10721]: pgsql_close() -- 00:31:35.393 INFO [10721]: COREGRADE is starting... -- 00:31:35.394 INFO [10721]: Version from config: 1.0 -- 00:31:35.394 DEBUG [10721]: Connecting to database... -- 00:31:35.394 DEBUG [10721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:31:35.394 SQL [10721]: pgsql_db_connect() -- 00:31:35.398 DEBUG [10721]: Database connection successful -- 00:31:35.398 INFO [10721]: _SERVER found -- 00:31:35.398 INFO [10721]: REMOTE_ADDR = 192.168.1.13 -- 00:31:35.398 INFO [10721]: SERVER_NAME = oameye.works.coregrade.com -- 00:31:35.398 INFO [10721]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=9ng5fj7qe5bgem2ra5654h0s6s7eh59o -- 00:31:35.398 INFO [10721]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 00:31:35.398 INFO [10721]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:31:35.409 INFO [10721]: COREGRADE is stopping... -- 00:31:35.409 DEBUG [10721]: Closing database connection -- 00:31:35.409 SQL [10721]: pgsql_close() -- 00:31:35.724 INFO [10721]: COREGRADE is starting... -- 00:31:35.724 INFO [10721]: Version from config: 1.0 -- 00:31:35.724 DEBUG [10721]: Connecting to database... -- 00:31:35.724 DEBUG [10721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:31:35.724 SQL [10721]: pgsql_db_connect() -- 00:31:35.728 DEBUG [10721]: Database connection successful -- 00:31:35.728 INFO [10721]: _SERVER found -- 00:31:35.728 INFO [10721]: REMOTE_ADDR = 192.168.1.13 -- 00:31:35.728 INFO [10721]: SERVER_NAME = oameye.works.coregrade.com -- 00:31:35.728 INFO [10721]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=9ng5fj7qe5bgem2ra5654h0s6s7eh59o -- 00:31:35.728 INFO [10721]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:31:35.728 INFO [10721]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:31:35.739 INFO [10721]: COREGRADE is stopping... -- 00:31:35.739 DEBUG [10721]: Closing database connection -- 00:31:35.739 SQL [10721]: pgsql_close() -- 03:22:53.293 INFO [10725]: COREGRADE is starting... -- 03:22:53.294 INFO [10725]: Version from config: 1.0 -- 03:22:53.294 DEBUG [10725]: Connecting to database... -- 03:22:53.294 DEBUG [10725]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:22:53.294 SQL [10725]: pgsql_db_connect() -- 03:22:53.298 DEBUG [10725]: Database connection successful -- 03:22:53.298 INFO [10725]: _SERVER found -- 03:22:53.298 INFO [10725]: REMOTE_ADDR = 192.168.1.13 -- 03:22:53.298 INFO [10725]: SERVER_NAME = oameye.works.coregrade.com -- 03:22:53.298 INFO [10725]: QUERY_STRING = /TP/public/index.php -- 03:22:53.298 INFO [10725]: HTTP_X_FORWARDED_FOR = 180.96.14.25 -- 03:22:53.312 INFO [10725]: COREGRADE is stopping... -- 03:22:53.312 DEBUG [10725]: Closing database connection -- 03:22:53.312 SQL [10725]: pgsql_close() -- 03:23:04.178 INFO [9587]: COREGRADE is starting... -- 03:23:04.179 INFO [9587]: Version from config: 1.0 -- 03:23:04.179 DEBUG [9587]: Connecting to database... -- 03:23:04.179 DEBUG [9587]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:23:04.179 SQL [9587]: pgsql_db_connect() -- 03:23:04.183 DEBUG [9587]: Database connection successful -- 03:23:04.183 INFO [9587]: _SERVER found -- 03:23:04.183 INFO [9587]: REMOTE_ADDR = 192.168.1.13 -- 03:23:04.183 INFO [9587]: SERVER_NAME = oameye.works.coregrade.com -- 03:23:04.183 INFO [9587]: QUERY_STRING = -- 03:23:04.183 INFO [9587]: HTTP_X_FORWARDED_FOR = 180.96.14.25 -- 03:23:04.217 INFO [9587]: COREGRADE is stopping... -- 03:23:04.217 DEBUG [9587]: Closing database connection -- 03:23:04.217 SQL [9587]: pgsql_close() -- 04:37:11.838 INFO [19115]: COREGRADE is starting... -- 04:37:11.838 INFO [19115]: Version from config: 1.0 -- 04:37:11.838 DEBUG [19115]: Connecting to database... -- 04:37:11.838 DEBUG [19115]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:37:11.838 SQL [19115]: pgsql_db_connect() -- 04:37:11.843 DEBUG [19115]: Database connection successful -- 04:37:11.843 INFO [19115]: _SERVER found -- 04:37:11.843 INFO [19115]: REMOTE_ADDR = 192.168.1.13 -- 04:37:11.843 INFO [19115]: SERVER_NAME = oameye.works.coregrade.com -- 04:37:11.843 INFO [19115]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628 -- 04:37:11.843 INFO [19115]: QUERY_STRING = -- 04:37:11.843 INFO [19115]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 04:37:11.882 INFO [19115]: COREGRADE is stopping... -- 04:37:11.882 DEBUG [19115]: Closing database connection -- 04:37:11.882 SQL [19115]: pgsql_close() -- 04:37:12.492 INFO [9583]: COREGRADE is starting... -- 04:37:12.493 INFO [9583]: Version from config: 1.0 -- 04:37:12.493 DEBUG [9583]: Connecting to database... -- 04:37:12.493 DEBUG [9583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:37:12.493 SQL [9583]: pgsql_db_connect() -- 04:37:12.497 DEBUG [9583]: Database connection successful -- 04:37:12.497 INFO [9583]: _SERVER found -- 04:37:12.497 INFO [9583]: REMOTE_ADDR = 192.168.1.13 -- 04:37:12.497 INFO [9583]: SERVER_NAME = oameye.works.coregrade.com -- 04:37:12.497 INFO [9583]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=k8b62o5d2ov3tnikririfjbc4rtpag47; _gat_gtag_UA_54829827_2=1 -- 04:37:12.497 INFO [9583]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 04:37:12.497 INFO [9583]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 04:37:12.510 INFO [9583]: COREGRADE is stopping... -- 04:37:12.510 DEBUG [9583]: Closing database connection -- 04:37:12.510 SQL [9583]: pgsql_close() -- 04:37:12.562 INFO [9583]: COREGRADE is starting... -- 04:37:12.562 INFO [9583]: Version from config: 1.0 -- 04:37:12.562 DEBUG [9583]: Connecting to database... -- 04:37:12.562 DEBUG [9583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:37:12.562 SQL [9583]: pgsql_db_connect() -- 04:37:12.566 DEBUG [9583]: Database connection successful -- 04:37:12.566 INFO [9583]: _SERVER found -- 04:37:12.566 INFO [9583]: REMOTE_ADDR = 192.168.1.13 -- 04:37:12.566 INFO [9583]: SERVER_NAME = oameye.works.coregrade.com -- 04:37:12.566 INFO [9583]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=k8b62o5d2ov3tnikririfjbc4rtpag47; _gat_gtag_UA_54829827_2=1 -- 04:37:12.566 INFO [9583]: QUERY_STRING = /assets/img/footer_1.jpg -- 04:37:12.566 INFO [9583]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 04:37:12.577 INFO [9583]: COREGRADE is stopping... -- 04:37:12.577 DEBUG [9583]: Closing database connection -- 04:37:12.577 SQL [9583]: pgsql_close() -- 04:38:39.371 INFO [9586]: COREGRADE is starting... -- 04:38:39.371 INFO [9586]: Version from config: 1.0 -- 04:38:39.371 DEBUG [9586]: Connecting to database... -- 04:38:39.371 DEBUG [9586]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:38:39.371 SQL [9586]: pgsql_db_connect() -- 04:38:39.377 INFO [19120]: COREGRADE is starting... -- 04:38:39.377 INFO [19120]: Version from config: 1.0 -- 04:38:39.377 DEBUG [19120]: Connecting to database... -- 04:38:39.377 DEBUG [19120]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:38:39.377 SQL [19120]: pgsql_db_connect() -- 04:38:39.375 DEBUG [9586]: Database connection successful -- 04:38:39.375 INFO [9586]: _SERVER found -- 04:38:39.375 INFO [9586]: REMOTE_ADDR = 192.168.1.13 -- 04:38:39.375 INFO [9586]: SERVER_NAME = oameye.works.coregrade.com -- 04:38:39.375 INFO [9586]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=k8b62o5d2ov3tnikririfjbc4rtpag47 -- 04:38:39.375 INFO [9586]: QUERY_STRING = /auth -- 04:38:39.375 INFO [9586]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 04:38:39.408 INFO [9586]: COREGRADE is stopping... -- 04:38:39.408 DEBUG [9586]: Closing database connection -- 04:38:39.408 SQL [9586]: pgsql_close() -- 04:38:39.382 DEBUG [19120]: Database connection successful -- 04:38:39.382 INFO [19120]: _SERVER found -- 04:38:39.382 INFO [19120]: REMOTE_ADDR = 192.168.1.13 -- 04:38:39.382 INFO [19120]: SERVER_NAME = oameye.works.coregrade.com -- 04:38:39.382 INFO [19120]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=k8b62o5d2ov3tnikririfjbc4rtpag47 -- 04:38:39.382 INFO [19120]: QUERY_STRING = /welcome/viewLogin -- 04:38:39.382 INFO [19120]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 04:38:39.413 INFO [19120]: COREGRADE is stopping... -- 04:38:39.413 DEBUG [19120]: Closing database connection -- 04:38:39.413 SQL [19120]: pgsql_close() -- 04:38:39.532 INFO [19120]: COREGRADE is starting... -- 04:38:39.532 INFO [19120]: Version from config: 1.0 -- 04:38:39.532 DEBUG [19120]: Connecting to database... -- 04:38:39.532 DEBUG [19120]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:38:39.532 SQL [19120]: pgsql_db_connect() -- 04:38:39.536 DEBUG [19120]: Database connection successful -- 04:38:39.536 INFO [19120]: _SERVER found -- 04:38:39.536 INFO [19120]: REMOTE_ADDR = 192.168.1.13 -- 04:38:39.536 INFO [19120]: SERVER_NAME = oameye.works.coregrade.com -- 04:38:39.536 INFO [19120]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=k8b62o5d2ov3tnikririfjbc4rtpag47 -- 04:38:39.536 INFO [19120]: QUERY_STRING = /auth/index -- 04:38:39.536 INFO [19120]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 04:38:39.568 INFO [19120]: COREGRADE is stopping... -- 04:38:39.568 DEBUG [19120]: Closing database connection -- 04:38:39.568 SQL [19120]: pgsql_close() -- 04:38:39.982 INFO [10725]: COREGRADE is starting... -- 04:38:39.982 INFO [10725]: Version from config: 1.0 -- 04:38:39.982 DEBUG [10725]: Connecting to database... -- 04:38:39.982 DEBUG [10725]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:38:39.983 SQL [10725]: pgsql_db_connect() -- 04:38:39.987 DEBUG [10725]: Database connection successful -- 04:38:39.987 INFO [10725]: _SERVER found -- 04:38:39.987 INFO [10725]: REMOTE_ADDR = 192.168.1.13 -- 04:38:39.987 INFO [10725]: SERVER_NAME = oameye.works.coregrade.com -- 04:38:39.987 INFO [10725]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=k8b62o5d2ov3tnikririfjbc4rtpag47 -- 04:38:39.987 INFO [10725]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 04:38:39.987 INFO [10725]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 04:38:39.998 INFO [10725]: COREGRADE is stopping... -- 04:38:39.998 DEBUG [10725]: Closing database connection -- 04:38:39.998 SQL [10725]: pgsql_close() -- 04:38:40.355 INFO [9586]: COREGRADE is starting... -- 04:38:40.355 INFO [9586]: Version from config: 1.0 -- 04:38:40.355 DEBUG [9586]: Connecting to database... -- 04:38:40.355 DEBUG [9586]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:38:40.355 SQL [9586]: pgsql_db_connect() -- 04:38:40.359 DEBUG [9586]: Database connection successful -- 04:38:40.359 INFO [9586]: _SERVER found -- 04:38:40.359 INFO [9586]: REMOTE_ADDR = 192.168.1.13 -- 04:38:40.359 INFO [9586]: SERVER_NAME = oameye.works.coregrade.com -- 04:38:40.359 INFO [9586]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=k8b62o5d2ov3tnikririfjbc4rtpag47 -- 04:38:40.359 INFO [9586]: QUERY_STRING = /app-assets/data/locales/en.json -- 04:38:40.359 INFO [9586]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 04:38:40.370 INFO [9586]: COREGRADE is stopping... -- 04:38:40.370 DEBUG [9586]: Closing database connection -- 04:38:40.370 SQL [9586]: pgsql_close() -- 04:40:10.878 INFO [17809]: COREGRADE is starting... -- 04:40:10.879 INFO [17809]: Version from config: 1.0 -- 04:40:10.879 DEBUG [17809]: Connecting to database... -- 04:40:10.879 DEBUG [17809]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:40:10.879 SQL [17809]: pgsql_db_connect() -- 04:40:10.919 INFO [17809]: COREGRADE is starting... -- 04:40:10.919 INFO [17809]: Version from config: 1.0 -- 04:40:10.919 DEBUG [17809]: Connecting to database... -- 04:40:10.919 DEBUG [17809]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:40:10.919 SQL [17809]: pgsql_db_connect() -- 04:40:10.923 DEBUG [17809]: Database connection successful -- 04:40:10.923 INFO [17809]: _SERVER found -- 04:40:10.923 INFO [17809]: REMOTE_ADDR = 192.168.1.13 -- 04:40:10.923 INFO [17809]: SERVER_NAME = oameye.works.coregrade.com -- 04:40:10.923 INFO [17809]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=k8b62o5d2ov3tnikririfjbc4rtpag47 -- 04:40:10.923 INFO [17809]: QUERY_STRING = -- 04:40:10.923 INFO [17809]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 04:40:10.923 INFO [17809]: SystemStatus()09-09-********~************ -- 04:40:10.923 INFO [17809]: long coregrade_api_main(CVars in, CVars &out) -- 04:40:10.923 INFO [17809]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 04:40:10.923 INFO [17809]: account calls -- 04:40:10.923 INFO [17809]: account_calls() -- 04:40:10.923 INFO [17809]: LoginCoreGradeAccount() -- 04:40:10.923 FLOG_MAX [17809]: REQ_STRING(username) -- 04:40:10.923 FLOG_MAX [17809]: REQ_STRING(password) -- 04:40:10.923 FLOG_MAX [17809]: REQ_STRING(sessionid) -- 04:40:10.923 FLOG_MAX [17809]: long load_db_record( CVars &rec, const char * query, ... ) -- 04:40:10.923 SQL [17809]: pgsql_query() -- 04:40:10.923 SQL [17809]: About to run query: -- 04:40:10.923 SQL [17809]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 04:40:10.927 SQL [17809]: Found rows: 1 -- 04:40:10.927 FLOG_MAX [17809]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 04:40:10.927 INFO [17809]: long SessionCheck(long uid, const char *sessionid, int create ) -- 04:40:10.927 SQL [17809]: pgsql_exec() -- 04:40:10.927 SQL [17809]: About to run query: -- 04:40:10.927 SQL [17809]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 04:40:10.928 SQL [17809]: PQcmdTuples: 1 -- 04:40:10.928 SQL [17809]: Affected rows: 1 -- 04:40:10.928 SQL [17809]: pgsql_exec() -- 04:40:10.928 SQL [17809]: About to run query: -- 04:40:10.928 SQL [17809]: DELETE FROM members_session WHERE member_id=5 -- 04:40:10.928 SQL [17809]: PQcmdTuples: 0 -- 04:40:10.928 SQL [17809]: Affected rows: 0 -- 04:40:10.928 SQL [17809]: pgsql_query() -- 04:40:10.928 SQL [17809]: About to run query: -- 04:40:10.928 SQL [17809]: SELECT * FROM members_session WHERE member_id=5 AND session<>'29E5F0559E9A9EDBF4B4DD3CD0B53931' -- 04:40:10.929 SQL [17809]: Found rows: 0 -- 04:40:10.929 SQL [17809]: Found rows: 0 -- 04:40:10.929 FLOG_MAX [17809]: long load_db_record( CVars &rec, const char * query, ... ) -- 04:40:10.929 SQL [17809]: pgsql_query() -- 04:40:10.929 SQL [17809]: About to run query: -- 04:40:10.929 SQL [17809]: SELECT * FROM members_session WHERE member_id=5 AND session='29E5F0559E9A9EDBF4B4DD3CD0B53931' -- 04:40:10.929 SQL [17809]: Found rows: 0 -- 04:40:10.930 SQL [17809]: Found rows: 0 -- 04:40:10.930 FLOG_MAX [17809]: insert_db_record() -- 04:40:10.930 SQL [17809]: pgsql_exec() -- 04:40:10.930 SQL [17809]: About to run query: -- 04:40:10.930 SQL [17809]: INSERT INTO members_session (member_id,session) VALUES ('5','29E5F0559E9A9EDBF4B4DD3CD0B53931') -- 04:40:10.931 SQL [17809]: PQcmdTuples: 1 -- 04:40:10.931 SQL [17809]: Affected rows: 1 -- 04:40:10.931 FLOG_MAX [17809]: SELECT currval('members_session_id_seq') -- 04:40:10.931 SQL [17809]: pgsql_query() -- 04:40:10.931 SQL [17809]: About to run query: -- 04:40:10.931 SQL [17809]: SELECT currval('members_session_id_seq') -- 04:40:10.931 SQL [17809]: Found rows: 1 -- 04:40:10.932 INFO [17809]: CreateDefaultPage() -- 04:40:10.932 FLOG_MAX [17809]: long load_db_record( CVars &rec, const char * query, ... ) -- 04:40:10.932 SQL [17809]: pgsql_query() -- 04:40:10.932 SQL [17809]: About to run query: -- 04:40:10.932 SQL [17809]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 04:40:10.932 SQL [17809]: Found rows: 1 -- 04:40:10.932 FLOG_MAX [17809]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 04:40:10.932 SQL [17809]: pgsql_query() -- 04:40:10.932 SQL [17809]: About to run query: -- 04:40:10.932 SQL [17809]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 04:40:10.932 SQL [17809]: Found rows: 1 -- 04:40:10.932 INFO [17809]: /CreateDefaultPage() -- 04:40:10.932 INFO [17809]: /LoginCoreGradeAccount() -- 04:40:10.932 INFO [17809]: RET: added=2020-02-05 06:47:23.982154 -- 04:40:10.932 INFO [17809]: RET: email=ameye+11@chiefsoft.com -- 04:40:10.932 INFO [17809]: RET: firstname=Olu -- 04:40:10.932 INFO [17809]: RET: id=5 -- 04:40:10.932 INFO [17809]: RET: last_login= -- 04:40:10.932 INFO [17809]: RET: lastname=Amey -- 04:40:10.932 INFO [17809]: RET: loc=192.168.1.13 -- 04:40:10.932 INFO [17809]: RET: member_id=5 -- 04:40:10.932 INFO [17809]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 04:40:10.932 INFO [17809]: RET: phone= -- 04:40:10.932 INFO [17809]: RET: pid= -- 04:40:10.932 INFO [17809]: RET: result=YES I GET TO BACK END -- 04:40:10.932 INFO [17809]: RET: sessionid=29E5F0559E9A9EDBF4B4DD3CD0B53931 -- 04:40:10.932 INFO [17809]: RET: status=1 -- 04:40:10.932 INFO [17809]: RET: stauts=OK -- 04:40:10.932 INFO [17809]: RET: username=ameye+11@chiefsoft.com -- 04:40:10.932 INFO [17809]: RET: verified= -- 04:40:10.934 INFO [17809]: COREGRADE is stopping... -- 04:40:10.934 DEBUG [17809]: Closing database connection -- 04:40:10.934 SQL [17809]: pgsql_close() -- 04:40:10.884 DEBUG [17809]: Database connection successful -- 04:40:10.884 INFO [17809]: _SERVER found -- 04:40:10.884 INFO [17809]: REMOTE_ADDR = 192.168.1.13 -- 04:40:10.884 INFO [17809]: SERVER_NAME = oameye.works.coregrade.com -- 04:40:10.884 INFO [17809]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=k8b62o5d2ov3tnikririfjbc4rtpag47 -- 04:40:10.884 INFO [17809]: QUERY_STRING = /auth -- 04:40:10.884 INFO [17809]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 04:40:10.934 INFO [17809]: COREGRADE is stopping... -- 04:40:10.934 DEBUG [17809]: Closing database connection -- 04:40:10.934 SQL [17809]: pgsql_close() -- 04:40:10.952 INFO [17809]: COREGRADE is starting... -- 04:40:10.952 INFO [17809]: Version from config: 1.0 -- 04:40:10.952 DEBUG [17809]: Connecting to database... -- 04:40:10.952 DEBUG [17809]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:40:10.952 SQL [17809]: pgsql_db_connect() -- 04:40:10.956 DEBUG [17809]: Database connection successful -- 04:40:10.956 INFO [17809]: _SERVER found -- 04:40:10.956 INFO [17809]: REMOTE_ADDR = 192.168.1.13 -- 04:40:10.956 INFO [17809]: SERVER_NAME = oameye.works.coregrade.com -- 04:40:10.956 INFO [17809]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=k8b62o5d2ov3tnikririfjbc4rtpag47 -- 04:40:10.956 INFO [17809]: QUERY_STRING = /member/index -- 04:40:10.956 INFO [17809]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 04:40:10.996 INFO [17809]: COREGRADE is stopping... -- 04:40:10.996 DEBUG [17809]: Closing database connection -- 04:40:10.996 SQL [17809]: pgsql_close() -- 04:40:11.301 INFO [22873]: COREGRADE is starting... -- 04:40:11.301 INFO [22873]: Version from config: 1.0 -- 04:40:11.301 DEBUG [22873]: Connecting to database... -- 04:40:11.301 DEBUG [22873]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:40:11.301 SQL [22873]: pgsql_db_connect() -- 04:40:11.305 DEBUG [22873]: Database connection successful -- 04:40:11.305 INFO [22873]: _SERVER found -- 04:40:11.305 INFO [22873]: REMOTE_ADDR = 192.168.1.13 -- 04:40:11.305 INFO [22873]: SERVER_NAME = oameye.works.coregrade.com -- 04:40:11.305 INFO [22873]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=k8b62o5d2ov3tnikririfjbc4rtpag47 -- 04:40:11.305 INFO [22873]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 04:40:11.305 INFO [22873]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 04:40:11.319 INFO [22873]: COREGRADE is stopping... -- 04:40:11.319 DEBUG [22873]: Closing database connection -- 04:40:11.319 SQL [22873]: pgsql_close() -- 04:40:11.665 INFO [17809]: COREGRADE is starting... -- 04:40:11.665 INFO [17809]: Version from config: 1.0 -- 04:40:11.665 DEBUG [17809]: Connecting to database... -- 04:40:11.665 DEBUG [17809]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:40:11.665 SQL [17809]: pgsql_db_connect() -- 04:40:11.669 DEBUG [17809]: Database connection successful -- 04:40:11.669 INFO [17809]: _SERVER found -- 04:40:11.669 INFO [17809]: REMOTE_ADDR = 192.168.1.13 -- 04:40:11.669 INFO [17809]: SERVER_NAME = oameye.works.coregrade.com -- 04:40:11.669 INFO [17809]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=k8b62o5d2ov3tnikririfjbc4rtpag47 -- 04:40:11.669 INFO [17809]: QUERY_STRING = /app-assets/data/locales/en.json -- 04:40:11.669 INFO [17809]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 04:40:11.680 INFO [17809]: COREGRADE is stopping... -- 04:40:11.680 DEBUG [17809]: Closing database connection -- 04:40:11.680 SQL [17809]: pgsql_close() -- 04:40:13.212 INFO [17809]: COREGRADE is starting... -- 04:40:13.212 INFO [17809]: Version from config: 1.0 -- 04:40:13.212 DEBUG [17809]: Connecting to database... -- 04:40:13.212 DEBUG [17809]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:40:13.212 SQL [17809]: pgsql_db_connect() -- 04:40:13.216 DEBUG [17809]: Database connection successful -- 04:40:13.216 INFO [17809]: _SERVER found -- 04:40:13.216 INFO [17809]: REMOTE_ADDR = 192.168.1.13 -- 04:40:13.216 INFO [17809]: SERVER_NAME = oameye.works.coregrade.com -- 04:40:13.216 INFO [17809]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=k8b62o5d2ov3tnikririfjbc4rtpag47 -- 04:40:13.216 INFO [17809]: QUERY_STRING = /member/page -- 04:40:13.216 INFO [17809]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 04:40:13.257 INFO [17809]: COREGRADE is stopping... -- 04:40:13.257 DEBUG [17809]: Closing database connection -- 04:40:13.257 SQL [17809]: pgsql_close() -- 04:40:13.347 INFO [22873]: COREGRADE is starting... -- 04:40:13.347 INFO [22873]: Version from config: 1.0 -- 04:40:13.347 DEBUG [22873]: Connecting to database... -- 04:40:13.347 DEBUG [22873]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:40:13.347 SQL [22873]: pgsql_db_connect() -- 04:40:13.351 DEBUG [22873]: Database connection successful -- 04:40:13.351 INFO [22873]: _SERVER found -- 04:40:13.351 INFO [22873]: REMOTE_ADDR = 192.168.1.13 -- 04:40:13.351 INFO [22873]: SERVER_NAME = oameye.works.coregrade.com -- 04:40:13.351 INFO [22873]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=k8b62o5d2ov3tnikririfjbc4rtpag47 -- 04:40:13.351 INFO [22873]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 04:40:13.351 INFO [22873]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 04:40:13.362 INFO [22873]: COREGRADE is stopping... -- 04:40:13.362 DEBUG [22873]: Closing database connection -- 04:40:13.362 SQL [22873]: pgsql_close() -- 04:40:13.446 INFO [22873]: COREGRADE is starting... -- 04:40:13.446 INFO [22873]: Version from config: 1.0 -- 04:40:13.446 DEBUG [22873]: Connecting to database... -- 04:40:13.446 DEBUG [22873]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:40:13.446 SQL [22873]: pgsql_db_connect() -- 04:40:13.450 DEBUG [22873]: Database connection successful -- 04:40:13.450 INFO [22873]: _SERVER found -- 04:40:13.450 INFO [22873]: REMOTE_ADDR = 192.168.1.13 -- 04:40:13.450 INFO [22873]: SERVER_NAME = oameye.works.coregrade.com -- 04:40:13.450 INFO [22873]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=k8b62o5d2ov3tnikririfjbc4rtpag47 -- 04:40:13.450 INFO [22873]: QUERY_STRING = /app-assets/data/locales/en.json -- 04:40:13.450 INFO [22873]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 04:40:13.461 INFO [22873]: COREGRADE is stopping... -- 04:40:13.461 DEBUG [22873]: Closing database connection -- 04:40:13.461 SQL [22873]: pgsql_close() -- 04:49:38.445 INFO [10724]: COREGRADE is starting... -- 04:49:38.445 INFO [10724]: Version from config: 1.0 -- 04:49:38.445 DEBUG [10724]: Connecting to database... -- 04:49:38.445 DEBUG [10724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:49:38.445 SQL [10724]: pgsql_db_connect() -- 04:49:38.450 DEBUG [10724]: Database connection successful -- 04:49:38.450 INFO [10724]: _SERVER found -- 04:49:38.450 INFO [10724]: REMOTE_ADDR = 192.168.1.13 -- 04:49:38.450 INFO [10724]: SERVER_NAME = oameye.works.coregrade.com -- 04:49:38.450 INFO [10724]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=k8b62o5d2ov3tnikririfjbc4rtpag47 -- 04:49:38.450 INFO [10724]: QUERY_STRING = /member/configure -- 04:49:38.450 INFO [10724]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 04:49:38.495 INFO [10724]: COREGRADE is stopping... -- 04:49:38.495 DEBUG [10724]: Closing database connection -- 04:49:38.495 SQL [10724]: pgsql_close() -- 04:49:38.593 INFO [10724]: COREGRADE is starting... -- 04:49:38.594 INFO [10724]: Version from config: 1.0 -- 04:49:38.594 DEBUG [10724]: Connecting to database... -- 04:49:38.594 DEBUG [10724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:49:38.594 SQL [10724]: pgsql_db_connect() -- 04:49:38.598 DEBUG [10724]: Database connection successful -- 04:49:38.598 INFO [10724]: _SERVER found -- 04:49:38.598 INFO [10724]: REMOTE_ADDR = 192.168.1.13 -- 04:49:38.598 INFO [10724]: SERVER_NAME = oameye.works.coregrade.com -- 04:49:38.598 INFO [10724]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=jcqadn6g03c4lab9jtv6ciohmdqlg4fv -- 04:49:38.598 INFO [10724]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 04:49:38.598 INFO [10724]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 04:49:38.609 INFO [10724]: COREGRADE is stopping... -- 04:49:38.609 DEBUG [10724]: Closing database connection -- 04:49:38.609 SQL [10724]: pgsql_close() -- 04:49:38.767 INFO [10724]: COREGRADE is starting... -- 04:49:38.767 INFO [10724]: Version from config: 1.0 -- 04:49:38.767 DEBUG [10724]: Connecting to database... -- 04:49:38.767 DEBUG [10724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:49:38.767 SQL [10724]: pgsql_db_connect() -- 04:49:38.771 DEBUG [10724]: Database connection successful -- 04:49:38.771 INFO [10724]: _SERVER found -- 04:49:38.771 INFO [10724]: REMOTE_ADDR = 192.168.1.13 -- 04:49:38.771 INFO [10724]: SERVER_NAME = oameye.works.coregrade.com -- 04:49:38.771 INFO [10724]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=jcqadn6g03c4lab9jtv6ciohmdqlg4fv -- 04:49:38.771 INFO [10724]: QUERY_STRING = /app-assets/data/locales/en.json -- 04:49:38.771 INFO [10724]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 04:49:38.782 INFO [10724]: COREGRADE is stopping... -- 04:49:38.782 DEBUG [10724]: Closing database connection -- 04:49:38.782 SQL [10724]: pgsql_close() -- 04:56:23.507 INFO [9587]: COREGRADE is starting... -- 04:56:23.507 INFO [9587]: Version from config: 1.0 -- 04:56:23.508 DEBUG [9587]: Connecting to database... -- 04:56:23.508 DEBUG [9587]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:56:23.508 SQL [9587]: pgsql_db_connect() -- 04:56:23.512 DEBUG [9587]: Database connection successful -- 04:56:23.512 INFO [9587]: _SERVER found -- 04:56:23.512 INFO [9587]: REMOTE_ADDR = 192.168.1.13 -- 04:56:23.512 INFO [9587]: SERVER_NAME = tokslaw.works.coregrade.com -- 04:56:23.512 INFO [9587]: HTTP_COOKIE = _gid=GA1.2.81388178.1581967640; _ga=GA1.2.1126635332.1581100371 -- 04:56:23.512 INFO [9587]: QUERY_STRING = /auth -- 04:56:23.512 INFO [9587]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 04:56:23.546 INFO [9587]: COREGRADE is stopping... -- 04:56:23.546 DEBUG [9587]: Closing database connection -- 04:56:23.547 SQL [9587]: pgsql_close() -- 04:56:24.173 INFO [9587]: COREGRADE is starting... -- 04:56:24.173 INFO [9587]: Version from config: 1.0 -- 04:56:24.173 DEBUG [9587]: Connecting to database... -- 04:56:24.173 DEBUG [9587]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:56:24.173 SQL [9587]: pgsql_db_connect() -- 04:56:24.177 DEBUG [9587]: Database connection successful -- 04:56:24.177 INFO [9587]: _SERVER found -- 04:56:24.177 INFO [9587]: REMOTE_ADDR = 192.168.1.13 -- 04:56:24.177 INFO [9587]: SERVER_NAME = tokslaw.works.coregrade.com -- 04:56:24.177 INFO [9587]: HTTP_COOKIE = _gid=GA1.2.81388178.1581967640; _ga=GA1.2.1126635332.1581100371; ci_session=5gnf3ialtbqfgu36u629d3il8et0bd3f -- 04:56:24.177 INFO [9587]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 04:56:24.177 INFO [9587]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 04:56:24.189 INFO [9587]: COREGRADE is stopping... -- 04:56:24.189 DEBUG [9587]: Closing database connection -- 04:56:24.189 SQL [9587]: pgsql_close() -- 04:56:24.364 INFO [9586]: COREGRADE is starting... -- 04:56:24.365 INFO [9586]: Version from config: 1.0 -- 04:56:24.365 DEBUG [9586]: Connecting to database... -- 04:56:24.365 DEBUG [9586]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:56:24.365 SQL [9586]: pgsql_db_connect() -- 04:56:24.369 DEBUG [9586]: Database connection successful -- 04:56:24.369 INFO [9586]: _SERVER found -- 04:56:24.369 INFO [9586]: REMOTE_ADDR = 192.168.1.13 -- 04:56:24.369 INFO [9586]: SERVER_NAME = tokslaw.works.coregrade.com -- 04:56:24.369 INFO [9586]: HTTP_COOKIE = _gid=GA1.2.81388178.1581967640; _ga=GA1.2.1126635332.1581100371; ci_session=5gnf3ialtbqfgu36u629d3il8et0bd3f -- 04:56:24.369 INFO [9586]: QUERY_STRING = /app-assets/data/locales/en.json -- 04:56:24.369 INFO [9586]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 04:56:24.381 INFO [9586]: COREGRADE is stopping... -- 04:56:24.381 DEBUG [9586]: Closing database connection -- 04:56:24.381 SQL [9586]: pgsql_close() -- 04:56:39.604 INFO [9587]: COREGRADE is starting... -- 04:56:39.605 INFO [9587]: Version from config: 1.0 -- 04:56:39.605 DEBUG [9587]: Connecting to database... -- 04:56:39.605 DEBUG [9587]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:56:39.605 SQL [9587]: pgsql_db_connect() -- 04:56:39.609 DEBUG [9587]: Database connection successful -- 04:56:39.609 INFO [9587]: _SERVER found -- 04:56:39.609 INFO [9587]: REMOTE_ADDR = 192.168.1.13 -- 04:56:39.609 INFO [9587]: SERVER_NAME = tokslaw.works.coregrade.com -- 04:56:39.609 INFO [9587]: HTTP_COOKIE = ci_session=5gnf3ialtbqfgu36u629d3il8et0bd3f; _gid=GA1.2.81388178.1581967640; _ga=GA1.2.1126635332.1581100371 -- 04:56:39.609 INFO [9587]: QUERY_STRING = /auth -- 04:56:39.609 INFO [9587]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 04:56:39.640 INFO [9587]: COREGRADE is stopping... -- 04:56:39.640 DEBUG [9587]: Closing database connection -- 04:56:39.640 SQL [9587]: pgsql_close() -- 04:56:39.734 INFO [9587]: COREGRADE is starting... -- 04:56:39.734 INFO [9587]: Version from config: 1.0 -- 04:56:39.734 DEBUG [9587]: Connecting to database... -- 04:56:39.734 DEBUG [9587]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:56:39.734 SQL [9587]: pgsql_db_connect() -- 04:56:39.738 DEBUG [9587]: Database connection successful -- 04:56:39.738 INFO [9587]: _SERVER found -- 04:56:39.738 INFO [9587]: REMOTE_ADDR = 192.168.1.13 -- 04:56:39.738 INFO [9587]: SERVER_NAME = tokslaw.works.coregrade.com -- 04:56:39.738 INFO [9587]: HTTP_COOKIE = ci_session=5gnf3ialtbqfgu36u629d3il8et0bd3f; _gid=GA1.2.81388178.1581967640; _ga=GA1.2.1126635332.1581100371 -- 04:56:39.738 INFO [9587]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 04:56:39.738 INFO [9587]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 04:56:39.749 INFO [9587]: COREGRADE is stopping... -- 04:56:39.749 DEBUG [9587]: Closing database connection -- 04:56:39.749 SQL [9587]: pgsql_close() -- 04:56:40.487 INFO [9587]: COREGRADE is starting... -- 04:56:40.488 INFO [9587]: Version from config: 1.0 -- 04:56:40.488 DEBUG [9587]: Connecting to database... -- 04:56:40.488 DEBUG [9587]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:56:40.488 SQL [9587]: pgsql_db_connect() -- 04:56:40.492 DEBUG [9587]: Database connection successful -- 04:56:40.492 INFO [9587]: _SERVER found -- 04:56:40.492 INFO [9587]: REMOTE_ADDR = 192.168.1.13 -- 04:56:40.492 INFO [9587]: SERVER_NAME = tokslaw.works.coregrade.com -- 04:56:40.492 INFO [9587]: HTTP_COOKIE = ci_session=5gnf3ialtbqfgu36u629d3il8et0bd3f; _gid=GA1.2.81388178.1581967640; _ga=GA1.2.1126635332.1581100371 -- 04:56:40.492 INFO [9587]: QUERY_STRING = /app-assets/data/locales/en.json -- 04:56:40.492 INFO [9587]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 04:56:40.503 INFO [9587]: COREGRADE is stopping... -- 04:56:40.503 DEBUG [9587]: Closing database connection -- 04:56:40.503 SQL [9587]: pgsql_close() -- 05:00:15.249 INFO [23135]: COREGRADE is starting... -- 05:00:15.249 INFO [23135]: Version from config: 1.0 -- 05:00:15.249 DEBUG [23135]: Connecting to database... -- 05:00:15.249 DEBUG [23135]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:00:15.249 SQL [23135]: pgsql_db_connect() -- 05:00:15.254 DEBUG [23135]: Database connection successful -- 05:00:15.254 INFO [23135]: _SERVER found -- 05:00:15.254 INFO [23135]: REMOTE_ADDR = 192.168.1.13 -- 05:00:15.254 INFO [23135]: SERVER_NAME = oameye.works.coregrade.com -- 05:00:15.254 INFO [23135]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=jcqadn6g03c4lab9jtv6ciohmdqlg4fv -- 05:00:15.254 INFO [23135]: QUERY_STRING = /member/configure -- 05:00:15.254 INFO [23135]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:00:15.305 INFO [23135]: COREGRADE is stopping... -- 05:00:15.305 DEBUG [23135]: Closing database connection -- 05:00:15.305 SQL [23135]: pgsql_close() -- 05:00:15.405 INFO [23135]: COREGRADE is starting... -- 05:00:15.405 INFO [23135]: Version from config: 1.0 -- 05:00:15.405 DEBUG [23135]: Connecting to database... -- 05:00:15.405 DEBUG [23135]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:00:15.405 SQL [23135]: pgsql_db_connect() -- 05:00:15.412 INFO [19115]: COREGRADE is starting... -- 05:00:15.412 INFO [19115]: Version from config: 1.0 -- 05:00:15.412 DEBUG [19115]: Connecting to database... -- 05:00:15.412 DEBUG [19115]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:00:15.412 SQL [19115]: pgsql_db_connect() -- 05:00:15.409 DEBUG [23135]: Database connection successful -- 05:00:15.409 INFO [23135]: _SERVER found -- 05:00:15.409 INFO [23135]: REMOTE_ADDR = 192.168.1.13 -- 05:00:15.409 INFO [23135]: SERVER_NAME = oameye.works.coregrade.com -- 05:00:15.409 INFO [23135]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=hhab4desfiah0ca3plgav8ovf48dhki6 -- 05:00:15.409 INFO [23135]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 05:00:15.409 INFO [23135]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:00:15.420 INFO [23135]: COREGRADE is stopping... -- 05:00:15.420 DEBUG [23135]: Closing database connection -- 05:00:15.420 SQL [23135]: pgsql_close() -- 05:00:15.416 DEBUG [19115]: Database connection successful -- 05:00:15.416 INFO [19115]: _SERVER found -- 05:00:15.416 INFO [19115]: REMOTE_ADDR = 192.168.1.13 -- 05:00:15.416 INFO [19115]: SERVER_NAME = oameye.works.coregrade.com -- 05:00:15.416 INFO [19115]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=hhab4desfiah0ca3plgav8ovf48dhki6 -- 05:00:15.416 INFO [19115]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 05:00:15.416 INFO [19115]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:00:15.428 INFO [19115]: COREGRADE is stopping... -- 05:00:15.428 DEBUG [19115]: Closing database connection -- 05:00:15.428 SQL [19115]: pgsql_close() -- 05:00:15.622 INFO [19115]: COREGRADE is starting... -- 05:00:15.622 INFO [19115]: Version from config: 1.0 -- 05:00:15.622 DEBUG [19115]: Connecting to database... -- 05:00:15.623 DEBUG [19115]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:00:15.623 SQL [19115]: pgsql_db_connect() -- 05:00:15.625 INFO [23135]: COREGRADE is starting... -- 05:00:15.625 INFO [23135]: Version from config: 1.0 -- 05:00:15.625 DEBUG [23135]: Connecting to database... -- 05:00:15.625 DEBUG [23135]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:00:15.625 SQL [23135]: pgsql_db_connect() -- 05:00:15.627 DEBUG [19115]: Database connection successful -- 05:00:15.627 INFO [19115]: _SERVER found -- 05:00:15.627 INFO [19115]: REMOTE_ADDR = 192.168.1.13 -- 05:00:15.627 INFO [19115]: SERVER_NAME = oameye.works.coregrade.com -- 05:00:15.627 INFO [19115]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=hhab4desfiah0ca3plgav8ovf48dhki6 -- 05:00:15.627 INFO [19115]: QUERY_STRING = /app-assets/data/locales/en.json -- 05:00:15.627 INFO [19115]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:00:15.638 INFO [19115]: COREGRADE is stopping... -- 05:00:15.638 DEBUG [19115]: Closing database connection -- 05:00:15.638 SQL [19115]: pgsql_close() -- 05:00:15.628 DEBUG [23135]: Database connection successful -- 05:00:15.628 INFO [23135]: _SERVER found -- 05:00:15.628 INFO [23135]: REMOTE_ADDR = 192.168.1.13 -- 05:00:15.628 INFO [23135]: SERVER_NAME = oameye.works.coregrade.com -- 05:00:15.628 INFO [23135]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=hhab4desfiah0ca3plgav8ovf48dhki6 -- 05:00:15.628 INFO [23135]: QUERY_STRING = /favicon.ico -- 05:00:15.628 INFO [23135]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:00:15.639 INFO [23135]: COREGRADE is stopping... -- 05:00:15.639 DEBUG [23135]: Closing database connection -- 05:00:15.639 SQL [23135]: pgsql_close() -- 05:00:54.525 INFO [19120]: COREGRADE is starting... -- 05:00:54.525 INFO [19120]: Version from config: 1.0 -- 05:00:54.525 DEBUG [19120]: Connecting to database... -- 05:00:54.526 DEBUG [19120]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:00:54.526 SQL [19120]: pgsql_db_connect() -- 05:00:54.530 DEBUG [19120]: Database connection successful -- 05:00:54.530 INFO [19120]: _SERVER found -- 05:00:54.530 INFO [19120]: REMOTE_ADDR = 192.168.1.13 -- 05:00:54.530 INFO [19120]: SERVER_NAME = oameye.works.coregrade.com -- 05:00:54.530 INFO [19120]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=hhab4desfiah0ca3plgav8ovf48dhki6 -- 05:00:54.530 INFO [19120]: QUERY_STRING = /member/configure -- 05:00:54.530 INFO [19120]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:00:54.572 INFO [19120]: COREGRADE is stopping... -- 05:00:54.572 DEBUG [19120]: Closing database connection -- 05:00:54.573 SQL [19120]: pgsql_close() -- 05:00:54.659 INFO [19120]: COREGRADE is starting... -- 05:00:54.659 INFO [19120]: Version from config: 1.0 -- 05:00:54.659 DEBUG [19120]: Connecting to database... -- 05:00:54.659 DEBUG [19120]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:00:54.659 SQL [19120]: pgsql_db_connect() -- 05:00:54.666 INFO [22873]: COREGRADE is starting... -- 05:00:54.667 INFO [22873]: Version from config: 1.0 -- 05:00:54.667 DEBUG [22873]: Connecting to database... -- 05:00:54.667 DEBUG [22873]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:00:54.667 SQL [22873]: pgsql_db_connect() -- 05:00:54.663 DEBUG [19120]: Database connection successful -- 05:00:54.663 INFO [19120]: _SERVER found -- 05:00:54.663 INFO [19120]: REMOTE_ADDR = 192.168.1.13 -- 05:00:54.663 INFO [19120]: SERVER_NAME = oameye.works.coregrade.com -- 05:00:54.663 INFO [19120]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=hhab4desfiah0ca3plgav8ovf48dhki6 -- 05:00:54.663 INFO [19120]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 05:00:54.663 INFO [19120]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:00:54.674 INFO [19120]: COREGRADE is stopping... -- 05:00:54.674 DEBUG [19120]: Closing database connection -- 05:00:54.674 SQL [19120]: pgsql_close() -- 05:00:54.670 DEBUG [22873]: Database connection successful -- 05:00:54.670 INFO [22873]: _SERVER found -- 05:00:54.670 INFO [22873]: REMOTE_ADDR = 192.168.1.13 -- 05:00:54.670 INFO [22873]: SERVER_NAME = oameye.works.coregrade.com -- 05:00:54.670 INFO [22873]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=hhab4desfiah0ca3plgav8ovf48dhki6 -- 05:00:54.670 INFO [22873]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 05:00:54.670 INFO [22873]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:00:54.682 INFO [22873]: COREGRADE is stopping... -- 05:00:54.682 DEBUG [22873]: Closing database connection -- 05:00:54.682 SQL [22873]: pgsql_close() -- 05:00:54.808 INFO [22873]: COREGRADE is starting... -- 05:00:54.808 INFO [22873]: Version from config: 1.0 -- 05:00:54.808 DEBUG [22873]: Connecting to database... -- 05:00:54.808 DEBUG [22873]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:00:54.808 SQL [22873]: pgsql_db_connect() -- 05:00:54.812 DEBUG [22873]: Database connection successful -- 05:00:54.812 INFO [22873]: _SERVER found -- 05:00:54.812 INFO [22873]: REMOTE_ADDR = 192.168.1.13 -- 05:00:54.812 INFO [22873]: SERVER_NAME = oameye.works.coregrade.com -- 05:00:54.812 INFO [22873]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=hhab4desfiah0ca3plgav8ovf48dhki6 -- 05:00:54.812 INFO [22873]: QUERY_STRING = /app-assets/data/locales/en.json -- 05:00:54.812 INFO [22873]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:00:54.823 INFO [22873]: COREGRADE is stopping... -- 05:00:54.823 DEBUG [22873]: Closing database connection -- 05:00:54.823 SQL [22873]: pgsql_close() -- 05:01:29.987 INFO [10724]: COREGRADE is starting... -- 05:01:29.987 INFO [10724]: Version from config: 1.0 -- 05:01:29.987 DEBUG [10724]: Connecting to database... -- 05:01:29.987 DEBUG [10724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:01:29.987 SQL [10724]: pgsql_db_connect() -- 05:01:29.991 DEBUG [10724]: Database connection successful -- 05:01:29.991 INFO [10724]: _SERVER found -- 05:01:29.991 INFO [10724]: REMOTE_ADDR = 192.168.1.13 -- 05:01:29.991 INFO [10724]: SERVER_NAME = oameye.works.coregrade.com -- 05:01:29.991 INFO [10724]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=hhab4desfiah0ca3plgav8ovf48dhki6 -- 05:01:29.991 INFO [10724]: QUERY_STRING = /member/configure -- 05:01:29.991 INFO [10724]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:01:30.034 INFO [10724]: COREGRADE is stopping... -- 05:01:30.034 DEBUG [10724]: Closing database connection -- 05:01:30.034 SQL [10724]: pgsql_close() -- 05:01:30.119 INFO [10724]: COREGRADE is starting... -- 05:01:30.119 INFO [10724]: Version from config: 1.0 -- 05:01:30.119 DEBUG [10724]: Connecting to database... -- 05:01:30.119 DEBUG [10724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:01:30.119 SQL [10724]: pgsql_db_connect() -- 05:01:30.128 INFO [17809]: COREGRADE is starting... -- 05:01:30.128 INFO [17809]: Version from config: 1.0 -- 05:01:30.128 DEBUG [17809]: Connecting to database... -- 05:01:30.128 DEBUG [17809]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:01:30.129 SQL [17809]: pgsql_db_connect() -- 05:01:30.123 DEBUG [10724]: Database connection successful -- 05:01:30.123 INFO [10724]: _SERVER found -- 05:01:30.123 INFO [10724]: REMOTE_ADDR = 192.168.1.13 -- 05:01:30.123 INFO [10724]: SERVER_NAME = oameye.works.coregrade.com -- 05:01:30.123 INFO [10724]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=hhab4desfiah0ca3plgav8ovf48dhki6 -- 05:01:30.123 INFO [10724]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 05:01:30.123 INFO [10724]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:01:30.135 INFO [10724]: COREGRADE is stopping... -- 05:01:30.135 DEBUG [10724]: Closing database connection -- 05:01:30.135 SQL [10724]: pgsql_close() -- 05:01:30.132 DEBUG [17809]: Database connection successful -- 05:01:30.132 INFO [17809]: _SERVER found -- 05:01:30.132 INFO [17809]: REMOTE_ADDR = 192.168.1.13 -- 05:01:30.132 INFO [17809]: SERVER_NAME = oameye.works.coregrade.com -- 05:01:30.132 INFO [17809]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=hhab4desfiah0ca3plgav8ovf48dhki6 -- 05:01:30.132 INFO [17809]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 05:01:30.132 INFO [17809]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:01:30.144 INFO [17809]: COREGRADE is stopping... -- 05:01:30.144 DEBUG [17809]: Closing database connection -- 05:01:30.144 SQL [17809]: pgsql_close() -- 05:01:30.220 INFO [17809]: COREGRADE is starting... -- 05:01:30.221 INFO [17809]: Version from config: 1.0 -- 05:01:30.221 DEBUG [17809]: Connecting to database... -- 05:01:30.221 DEBUG [17809]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:01:30.221 SQL [17809]: pgsql_db_connect() -- 05:01:30.225 DEBUG [17809]: Database connection successful -- 05:01:30.225 INFO [17809]: _SERVER found -- 05:01:30.225 INFO [17809]: REMOTE_ADDR = 192.168.1.13 -- 05:01:30.225 INFO [17809]: SERVER_NAME = oameye.works.coregrade.com -- 05:01:30.225 INFO [17809]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=hhab4desfiah0ca3plgav8ovf48dhki6 -- 05:01:30.225 INFO [17809]: QUERY_STRING = /app-assets/data/locales/en.json -- 05:01:30.225 INFO [17809]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:01:30.236 INFO [17809]: COREGRADE is stopping... -- 05:01:30.236 DEBUG [17809]: Closing database connection -- 05:01:30.236 SQL [17809]: pgsql_close() -- 05:07:03.721 INFO [10725]: COREGRADE is starting... -- 05:07:03.721 INFO [10725]: Version from config: 1.0 -- 05:07:03.721 DEBUG [10725]: Connecting to database... -- 05:07:03.721 DEBUG [10725]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:07:03.721 SQL [10725]: pgsql_db_connect() -- 05:07:03.726 DEBUG [10725]: Database connection successful -- 05:07:03.726 INFO [10725]: _SERVER found -- 05:07:03.726 INFO [10725]: REMOTE_ADDR = 192.168.1.13 -- 05:07:03.726 INFO [10725]: SERVER_NAME = oameye.works.coregrade.com -- 05:07:03.726 INFO [10725]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=hhab4desfiah0ca3plgav8ovf48dhki6 -- 05:07:03.726 INFO [10725]: QUERY_STRING = /member/configure -- 05:07:03.726 INFO [10725]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:07:03.769 INFO [10725]: COREGRADE is stopping... -- 05:07:03.769 DEBUG [10725]: Closing database connection -- 05:07:03.769 SQL [10725]: pgsql_close() -- 05:07:03.866 INFO [10725]: COREGRADE is starting... -- 05:07:03.867 INFO [10725]: Version from config: 1.0 -- 05:07:03.867 DEBUG [10725]: Connecting to database... -- 05:07:03.867 DEBUG [10725]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:07:03.867 SQL [10725]: pgsql_db_connect() -- 05:07:03.874 INFO [10721]: COREGRADE is starting... -- 05:07:03.875 INFO [10721]: Version from config: 1.0 -- 05:07:03.875 DEBUG [10721]: Connecting to database... -- 05:07:03.875 DEBUG [10721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:07:03.875 SQL [10721]: pgsql_db_connect() -- 05:07:03.871 DEBUG [10725]: Database connection successful -- 05:07:03.871 INFO [10725]: _SERVER found -- 05:07:03.871 INFO [10725]: REMOTE_ADDR = 192.168.1.13 -- 05:07:03.871 INFO [10725]: SERVER_NAME = oameye.works.coregrade.com -- 05:07:03.871 INFO [10725]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=v4vb676no90acpcej1r2vm6nb116k1j6 -- 05:07:03.871 INFO [10725]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 05:07:03.871 INFO [10725]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:07:03.882 INFO [10725]: COREGRADE is stopping... -- 05:07:03.882 DEBUG [10725]: Closing database connection -- 05:07:03.882 SQL [10725]: pgsql_close() -- 05:07:03.879 DEBUG [10721]: Database connection successful -- 05:07:03.879 INFO [10721]: _SERVER found -- 05:07:03.879 INFO [10721]: REMOTE_ADDR = 192.168.1.13 -- 05:07:03.879 INFO [10721]: SERVER_NAME = oameye.works.coregrade.com -- 05:07:03.879 INFO [10721]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=v4vb676no90acpcej1r2vm6nb116k1j6 -- 05:07:03.879 INFO [10721]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 05:07:03.879 INFO [10721]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:07:03.891 INFO [10721]: COREGRADE is stopping... -- 05:07:03.891 DEBUG [10721]: Closing database connection -- 05:07:03.891 SQL [10721]: pgsql_close() -- 05:07:03.974 INFO [10721]: COREGRADE is starting... -- 05:07:03.975 INFO [10721]: Version from config: 1.0 -- 05:07:03.975 DEBUG [10721]: Connecting to database... -- 05:07:03.975 DEBUG [10721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:07:03.975 SQL [10721]: pgsql_db_connect() -- 05:07:03.979 DEBUG [10721]: Database connection successful -- 05:07:03.979 INFO [10721]: _SERVER found -- 05:07:03.979 INFO [10721]: REMOTE_ADDR = 192.168.1.13 -- 05:07:03.979 INFO [10721]: SERVER_NAME = oameye.works.coregrade.com -- 05:07:03.979 INFO [10721]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=v4vb676no90acpcej1r2vm6nb116k1j6 -- 05:07:03.979 INFO [10721]: QUERY_STRING = /app-assets/data/locales/en.json -- 05:07:03.979 INFO [10721]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:07:03.990 INFO [10721]: COREGRADE is stopping... -- 05:07:03.990 DEBUG [10721]: Closing database connection -- 05:07:03.990 SQL [10721]: pgsql_close() -- 05:08:06.800 INFO [9583]: COREGRADE is starting... -- 05:08:06.800 INFO [9583]: Version from config: 1.0 -- 05:08:06.800 DEBUG [9583]: Connecting to database... -- 05:08:06.800 DEBUG [9583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:06.800 SQL [9583]: pgsql_db_connect() -- 05:08:06.804 DEBUG [9583]: Database connection successful -- 05:08:06.804 INFO [9583]: _SERVER found -- 05:08:06.804 INFO [9583]: REMOTE_ADDR = 192.168.1.13 -- 05:08:06.804 INFO [9583]: SERVER_NAME = oameye.works.coregrade.com -- 05:08:06.804 INFO [9583]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=v4vb676no90acpcej1r2vm6nb116k1j6 -- 05:08:06.804 INFO [9583]: QUERY_STRING = /member/configure -- 05:08:06.804 INFO [9583]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:08:06.848 INFO [9583]: COREGRADE is stopping... -- 05:08:06.848 DEBUG [9583]: Closing database connection -- 05:08:06.848 SQL [9583]: pgsql_close() -- 05:08:06.916 INFO [9583]: COREGRADE is starting... -- 05:08:06.916 INFO [9583]: Version from config: 1.0 -- 05:08:06.916 DEBUG [9583]: Connecting to database... -- 05:08:06.916 DEBUG [9583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:06.916 SQL [9583]: pgsql_db_connect() -- 05:08:06.923 INFO [9587]: COREGRADE is starting... -- 05:08:06.924 INFO [9587]: Version from config: 1.0 -- 05:08:06.924 DEBUG [9587]: Connecting to database... -- 05:08:06.924 DEBUG [9587]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:06.924 SQL [9587]: pgsql_db_connect() -- 05:08:06.920 DEBUG [9583]: Database connection successful -- 05:08:06.920 INFO [9583]: _SERVER found -- 05:08:06.920 INFO [9583]: REMOTE_ADDR = 192.168.1.13 -- 05:08:06.920 INFO [9583]: SERVER_NAME = oameye.works.coregrade.com -- 05:08:06.920 INFO [9583]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=v4vb676no90acpcej1r2vm6nb116k1j6 -- 05:08:06.920 INFO [9583]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 05:08:06.920 INFO [9583]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:08:06.931 INFO [9583]: COREGRADE is stopping... -- 05:08:06.931 DEBUG [9583]: Closing database connection -- 05:08:06.931 SQL [9583]: pgsql_close() -- 05:08:06.927 DEBUG [9587]: Database connection successful -- 05:08:06.927 INFO [9587]: _SERVER found -- 05:08:06.927 INFO [9587]: REMOTE_ADDR = 192.168.1.13 -- 05:08:06.927 INFO [9587]: SERVER_NAME = oameye.works.coregrade.com -- 05:08:06.927 INFO [9587]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=v4vb676no90acpcej1r2vm6nb116k1j6 -- 05:08:06.927 INFO [9587]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 05:08:06.927 INFO [9587]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:08:06.939 INFO [9587]: COREGRADE is stopping... -- 05:08:06.939 DEBUG [9587]: Closing database connection -- 05:08:06.939 SQL [9587]: pgsql_close() -- 05:08:07.030 INFO [9587]: COREGRADE is starting... -- 05:08:07.030 INFO [9587]: Version from config: 1.0 -- 05:08:07.030 DEBUG [9587]: Connecting to database... -- 05:08:07.030 DEBUG [9587]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:07.030 SQL [9587]: pgsql_db_connect() -- 05:08:07.034 DEBUG [9587]: Database connection successful -- 05:08:07.034 INFO [9587]: _SERVER found -- 05:08:07.034 INFO [9587]: REMOTE_ADDR = 192.168.1.13 -- 05:08:07.034 INFO [9587]: SERVER_NAME = oameye.works.coregrade.com -- 05:08:07.034 INFO [9587]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=v4vb676no90acpcej1r2vm6nb116k1j6 -- 05:08:07.034 INFO [9587]: QUERY_STRING = /app-assets/data/locales/en.json -- 05:08:07.034 INFO [9587]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:08:07.045 INFO [9587]: COREGRADE is stopping... -- 05:08:07.045 DEBUG [9587]: Closing database connection -- 05:08:07.045 SQL [9587]: pgsql_close() -- 05:13:59.313 INFO [19115]: COREGRADE is starting... -- 05:13:59.313 INFO [19115]: Version from config: 1.0 -- 05:13:59.313 DEBUG [19115]: Connecting to database... -- 05:13:59.313 DEBUG [19115]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:13:59.313 SQL [19115]: pgsql_db_connect() -- 05:13:59.318 DEBUG [19115]: Database connection successful -- 05:13:59.318 INFO [19115]: _SERVER found -- 05:13:59.318 INFO [19115]: REMOTE_ADDR = 192.168.1.13 -- 05:13:59.318 INFO [19115]: SERVER_NAME = oameye.works.coregrade.com -- 05:13:59.318 INFO [19115]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=v4vb676no90acpcej1r2vm6nb116k1j6 -- 05:13:59.318 INFO [19115]: QUERY_STRING = /member/configure -- 05:13:59.318 INFO [19115]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:13:59.364 INFO [19115]: COREGRADE is stopping... -- 05:13:59.364 DEBUG [19115]: Closing database connection -- 05:13:59.364 SQL [19115]: pgsql_close() -- 05:13:59.441 INFO [19115]: COREGRADE is starting... -- 05:13:59.441 INFO [19115]: Version from config: 1.0 -- 05:13:59.441 DEBUG [19115]: Connecting to database... -- 05:13:59.441 DEBUG [19115]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:13:59.441 SQL [19115]: pgsql_db_connect() -- 05:13:59.448 INFO [23135]: COREGRADE is starting... -- 05:13:59.449 INFO [23135]: Version from config: 1.0 -- 05:13:59.449 DEBUG [23135]: Connecting to database... -- 05:13:59.449 DEBUG [23135]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:13:59.449 SQL [23135]: pgsql_db_connect() -- 05:13:59.445 DEBUG [19115]: Database connection successful -- 05:13:59.445 INFO [19115]: _SERVER found -- 05:13:59.445 INFO [19115]: REMOTE_ADDR = 192.168.1.13 -- 05:13:59.445 INFO [19115]: SERVER_NAME = oameye.works.coregrade.com -- 05:13:59.445 INFO [19115]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=1gmqg6fkfi178i2lf75j33drson28o72 -- 05:13:59.445 INFO [19115]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 05:13:59.445 INFO [19115]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:13:59.457 INFO [19115]: COREGRADE is stopping... -- 05:13:59.457 DEBUG [19115]: Closing database connection -- 05:13:59.457 SQL [19115]: pgsql_close() -- 05:13:59.453 DEBUG [23135]: Database connection successful -- 05:13:59.453 INFO [23135]: _SERVER found -- 05:13:59.453 INFO [23135]: REMOTE_ADDR = 192.168.1.13 -- 05:13:59.453 INFO [23135]: SERVER_NAME = oameye.works.coregrade.com -- 05:13:59.453 INFO [23135]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=1gmqg6fkfi178i2lf75j33drson28o72 -- 05:13:59.453 INFO [23135]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 05:13:59.453 INFO [23135]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:13:59.464 INFO [23135]: COREGRADE is stopping... -- 05:13:59.464 DEBUG [23135]: Closing database connection -- 05:13:59.464 SQL [23135]: pgsql_close() -- 05:13:59.594 INFO [23135]: COREGRADE is starting... -- 05:13:59.594 INFO [23135]: Version from config: 1.0 -- 05:13:59.594 DEBUG [23135]: Connecting to database... -- 05:13:59.594 DEBUG [23135]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:13:59.594 SQL [23135]: pgsql_db_connect() -- 05:13:59.598 DEBUG [23135]: Database connection successful -- 05:13:59.598 INFO [23135]: _SERVER found -- 05:13:59.598 INFO [23135]: REMOTE_ADDR = 192.168.1.13 -- 05:13:59.598 INFO [23135]: SERVER_NAME = oameye.works.coregrade.com -- 05:13:59.598 INFO [23135]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=1gmqg6fkfi178i2lf75j33drson28o72 -- 05:13:59.598 INFO [23135]: QUERY_STRING = /app-assets/data/locales/en.json -- 05:13:59.598 INFO [23135]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:13:59.609 INFO [23135]: COREGRADE is stopping... -- 05:13:59.609 DEBUG [23135]: Closing database connection -- 05:13:59.609 SQL [23135]: pgsql_close() -- 05:14:28.799 INFO [19120]: COREGRADE is starting... -- 05:14:28.800 INFO [19120]: Version from config: 1.0 -- 05:14:28.800 DEBUG [19120]: Connecting to database... -- 05:14:28.800 DEBUG [19120]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:14:28.800 SQL [19120]: pgsql_db_connect() -- 05:14:28.804 DEBUG [19120]: Database connection successful -- 05:14:28.804 INFO [19120]: _SERVER found -- 05:14:28.804 INFO [19120]: REMOTE_ADDR = 192.168.1.13 -- 05:14:28.804 INFO [19120]: SERVER_NAME = oameye.works.coregrade.com -- 05:14:28.804 INFO [19120]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=1gmqg6fkfi178i2lf75j33drson28o72 -- 05:14:28.804 INFO [19120]: QUERY_STRING = /member/configure -- 05:14:28.804 INFO [19120]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:14:28.846 INFO [19120]: COREGRADE is stopping... -- 05:14:28.846 DEBUG [19120]: Closing database connection -- 05:14:28.846 SQL [19120]: pgsql_close() -- 05:14:28.935 INFO [19120]: COREGRADE is starting... -- 05:14:28.936 INFO [19120]: Version from config: 1.0 -- 05:14:28.936 DEBUG [19120]: Connecting to database... -- 05:14:28.936 DEBUG [19120]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:14:28.936 SQL [19120]: pgsql_db_connect() -- 05:14:28.943 INFO [22873]: COREGRADE is starting... -- 05:14:28.944 INFO [22873]: Version from config: 1.0 -- 05:14:28.944 DEBUG [22873]: Connecting to database... -- 05:14:28.944 DEBUG [22873]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:14:28.944 SQL [22873]: pgsql_db_connect() -- 05:14:28.939 DEBUG [19120]: Database connection successful -- 05:14:28.939 INFO [19120]: _SERVER found -- 05:14:28.939 INFO [19120]: REMOTE_ADDR = 192.168.1.13 -- 05:14:28.939 INFO [19120]: SERVER_NAME = oameye.works.coregrade.com -- 05:14:28.939 INFO [19120]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=1gmqg6fkfi178i2lf75j33drson28o72 -- 05:14:28.939 INFO [19120]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 05:14:28.939 INFO [19120]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:14:28.951 INFO [19120]: COREGRADE is stopping... -- 05:14:28.951 DEBUG [19120]: Closing database connection -- 05:14:28.951 SQL [19120]: pgsql_close() -- 05:14:28.948 DEBUG [22873]: Database connection successful -- 05:14:28.948 INFO [22873]: _SERVER found -- 05:14:28.948 INFO [22873]: REMOTE_ADDR = 192.168.1.13 -- 05:14:28.948 INFO [22873]: SERVER_NAME = oameye.works.coregrade.com -- 05:14:28.948 INFO [22873]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=1gmqg6fkfi178i2lf75j33drson28o72 -- 05:14:28.948 INFO [22873]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 05:14:28.948 INFO [22873]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:14:28.959 INFO [22873]: COREGRADE is stopping... -- 05:14:28.959 DEBUG [22873]: Closing database connection -- 05:14:28.959 SQL [22873]: pgsql_close() -- 05:14:29.071 INFO [22873]: COREGRADE is starting... -- 05:14:29.072 INFO [22873]: Version from config: 1.0 -- 05:14:29.072 DEBUG [22873]: Connecting to database... -- 05:14:29.072 DEBUG [22873]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:14:29.072 SQL [22873]: pgsql_db_connect() -- 05:14:29.076 DEBUG [22873]: Database connection successful -- 05:14:29.076 INFO [22873]: _SERVER found -- 05:14:29.076 INFO [22873]: REMOTE_ADDR = 192.168.1.13 -- 05:14:29.076 INFO [22873]: SERVER_NAME = oameye.works.coregrade.com -- 05:14:29.076 INFO [22873]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=1gmqg6fkfi178i2lf75j33drson28o72 -- 05:14:29.076 INFO [22873]: QUERY_STRING = /app-assets/data/locales/en.json -- 05:14:29.076 INFO [22873]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:14:29.087 INFO [22873]: COREGRADE is stopping... -- 05:14:29.087 DEBUG [22873]: Closing database connection -- 05:14:29.087 SQL [22873]: pgsql_close() -- 05:22:43.989 INFO [1205]: COREGRADE is starting... -- 05:22:43.989 INFO [1205]: Version from config: 1.0 -- 05:22:43.989 DEBUG [1205]: Connecting to database... -- 05:22:43.989 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:22:43.989 SQL [1205]: pgsql_db_connect() -- 05:22:43.994 DEBUG [1205]: Database connection successful -- 05:22:43.994 INFO [1205]: _SERVER found -- 05:22:43.994 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 05:22:43.994 INFO [1205]: SERVER_NAME = oameye.works.coregrade.com -- 05:22:43.994 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=1gmqg6fkfi178i2lf75j33drson28o72 -- 05:22:43.994 INFO [1205]: QUERY_STRING = /member -- 05:22:43.994 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:22:44.046 INFO [1205]: COREGRADE is stopping... -- 05:22:44.046 DEBUG [1205]: Closing database connection -- 05:22:44.046 SQL [1205]: pgsql_close() -- 05:22:44.199 INFO [1205]: COREGRADE is starting... -- 05:22:44.199 INFO [1205]: Version from config: 1.0 -- 05:22:44.199 DEBUG [1205]: Connecting to database... -- 05:22:44.199 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:22:44.199 SQL [1205]: pgsql_db_connect() -- 05:22:44.203 DEBUG [1205]: Database connection successful -- 05:22:44.203 INFO [1205]: _SERVER found -- 05:22:44.203 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 05:22:44.203 INFO [1205]: SERVER_NAME = oameye.works.coregrade.com -- 05:22:44.203 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=7ic0mnkrv5gho2gbeqrfso673o74k4ap -- 05:22:44.203 INFO [1205]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 05:22:44.203 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:22:44.215 INFO [1205]: COREGRADE is stopping... -- 05:22:44.215 DEBUG [1205]: Closing database connection -- 05:22:44.215 SQL [1205]: pgsql_close() -- 05:22:44.234 INFO [1205]: COREGRADE is starting... -- 05:22:44.234 INFO [1205]: Version from config: 1.0 -- 05:22:44.234 DEBUG [1205]: Connecting to database... -- 05:22:44.234 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:22:44.235 SQL [1205]: pgsql_db_connect() -- 05:22:44.238 DEBUG [1205]: Database connection successful -- 05:22:44.238 INFO [1205]: _SERVER found -- 05:22:44.238 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 05:22:44.238 INFO [1205]: SERVER_NAME = oameye.works.coregrade.com -- 05:22:44.238 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=7ic0mnkrv5gho2gbeqrfso673o74k4ap -- 05:22:44.238 INFO [1205]: QUERY_STRING = /app-assets/data/locales/en.json -- 05:22:44.238 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:22:44.251 INFO [1205]: COREGRADE is stopping... -- 05:22:44.251 DEBUG [1205]: Closing database connection -- 05:22:44.251 SQL [1205]: pgsql_close() -- 05:22:45.758 INFO [1205]: COREGRADE is starting... -- 05:22:45.758 INFO [1205]: Version from config: 1.0 -- 05:22:45.758 DEBUG [1205]: Connecting to database... -- 05:22:45.758 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:22:45.758 SQL [1205]: pgsql_db_connect() -- 05:22:45.762 DEBUG [1205]: Database connection successful -- 05:22:45.762 INFO [1205]: _SERVER found -- 05:22:45.762 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 05:22:45.762 INFO [1205]: SERVER_NAME = oameye.works.coregrade.com -- 05:22:45.762 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=7ic0mnkrv5gho2gbeqrfso673o74k4ap -- 05:22:45.762 INFO [1205]: QUERY_STRING = /member/page -- 05:22:45.762 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:22:45.807 INFO [1205]: COREGRADE is stopping... -- 05:22:45.807 DEBUG [1205]: Closing database connection -- 05:22:45.807 SQL [1205]: pgsql_close() -- 05:22:45.899 INFO [1205]: COREGRADE is starting... -- 05:22:45.899 INFO [1205]: Version from config: 1.0 -- 05:22:45.899 DEBUG [1205]: Connecting to database... -- 05:22:45.899 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:22:45.899 SQL [1205]: pgsql_db_connect() -- 05:22:45.903 DEBUG [1205]: Database connection successful -- 05:22:45.903 INFO [1205]: _SERVER found -- 05:22:45.903 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 05:22:45.903 INFO [1205]: SERVER_NAME = oameye.works.coregrade.com -- 05:22:45.903 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=7ic0mnkrv5gho2gbeqrfso673o74k4ap -- 05:22:45.903 INFO [1205]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 05:22:45.903 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:22:45.914 INFO [1205]: COREGRADE is stopping... -- 05:22:45.914 DEBUG [1205]: Closing database connection -- 05:22:45.914 SQL [1205]: pgsql_close() -- 05:22:45.995 INFO [1205]: COREGRADE is starting... -- 05:22:45.995 INFO [1205]: Version from config: 1.0 -- 05:22:45.995 DEBUG [1205]: Connecting to database... -- 05:22:45.996 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:22:45.996 SQL [1205]: pgsql_db_connect() -- 05:22:45.999 DEBUG [1205]: Database connection successful -- 05:22:45.999 INFO [1205]: _SERVER found -- 05:22:45.999 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 05:22:45.999 INFO [1205]: SERVER_NAME = oameye.works.coregrade.com -- 05:22:45.999 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=7ic0mnkrv5gho2gbeqrfso673o74k4ap -- 05:22:45.999 INFO [1205]: QUERY_STRING = /app-assets/data/locales/en.json -- 05:22:45.999 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:22:46.011 INFO [1205]: COREGRADE is stopping... -- 05:22:46.011 DEBUG [1205]: Closing database connection -- 05:22:46.011 SQL [1205]: pgsql_close() -- 05:24:40.080 INFO [1206]: COREGRADE is starting... -- 05:24:40.080 INFO [1206]: Version from config: 1.0 -- 05:24:40.080 DEBUG [1206]: Connecting to database... -- 05:24:40.080 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:24:40.080 SQL [1206]: pgsql_db_connect() -- 05:24:40.084 DEBUG [1206]: Database connection successful -- 05:24:40.084 INFO [1206]: _SERVER found -- 05:24:40.084 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 05:24:40.084 INFO [1206]: SERVER_NAME = oameye.works.coregrade.com -- 05:24:40.084 INFO [1206]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=7ic0mnkrv5gho2gbeqrfso673o74k4ap -- 05:24:40.084 INFO [1206]: QUERY_STRING = /member/page -- 05:24:40.084 INFO [1206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:24:40.135 INFO [1206]: COREGRADE is stopping... -- 05:24:40.135 DEBUG [1206]: Closing database connection -- 05:24:40.135 SQL [1206]: pgsql_close() -- 05:24:40.235 INFO [1206]: COREGRADE is starting... -- 05:24:40.235 INFO [1206]: Version from config: 1.0 -- 05:24:40.235 DEBUG [1206]: Connecting to database... -- 05:24:40.235 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:24:40.235 SQL [1206]: pgsql_db_connect() -- 05:24:40.239 DEBUG [1206]: Database connection successful -- 05:24:40.239 INFO [1206]: _SERVER found -- 05:24:40.239 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 05:24:40.239 INFO [1206]: SERVER_NAME = oameye.works.coregrade.com -- 05:24:40.239 INFO [1206]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=7ic0mnkrv5gho2gbeqrfso673o74k4ap -- 05:24:40.239 INFO [1206]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 05:24:40.239 INFO [1206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:24:40.251 INFO [1206]: COREGRADE is stopping... -- 05:24:40.251 DEBUG [1206]: Closing database connection -- 05:24:40.251 SQL [1206]: pgsql_close() -- 05:24:40.356 INFO [1206]: COREGRADE is starting... -- 05:24:40.357 INFO [1206]: Version from config: 1.0 -- 05:24:40.357 DEBUG [1206]: Connecting to database... -- 05:24:40.357 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:24:40.357 SQL [1206]: pgsql_db_connect() -- 05:24:40.361 DEBUG [1206]: Database connection successful -- 05:24:40.361 INFO [1206]: _SERVER found -- 05:24:40.361 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 05:24:40.361 INFO [1206]: SERVER_NAME = oameye.works.coregrade.com -- 05:24:40.361 INFO [1206]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=7ic0mnkrv5gho2gbeqrfso673o74k4ap -- 05:24:40.361 INFO [1206]: QUERY_STRING = /app-assets/data/locales/en.json -- 05:24:40.361 INFO [1206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:24:40.372 INFO [1206]: COREGRADE is stopping... -- 05:24:40.372 DEBUG [1206]: Closing database connection -- 05:24:40.372 SQL [1206]: pgsql_close() -- 05:24:53.119 INFO [1208]: COREGRADE is starting... -- 05:24:53.120 INFO [1208]: Version from config: 1.0 -- 05:24:53.120 DEBUG [1208]: Connecting to database... -- 05:24:53.120 DEBUG [1208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:24:53.120 SQL [1208]: pgsql_db_connect() -- 05:24:53.124 DEBUG [1208]: Database connection successful -- 05:24:53.124 INFO [1208]: _SERVER found -- 05:24:53.124 INFO [1208]: REMOTE_ADDR = 192.168.1.13 -- 05:24:53.124 INFO [1208]: SERVER_NAME = oameye.works.coregrade.com -- 05:24:53.124 INFO [1208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=7ic0mnkrv5gho2gbeqrfso673o74k4ap -- 05:24:53.124 INFO [1208]: QUERY_STRING = /member -- 05:24:53.124 INFO [1208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:24:53.170 INFO [1208]: COREGRADE is stopping... -- 05:24:53.170 DEBUG [1208]: Closing database connection -- 05:24:53.170 SQL [1208]: pgsql_close() -- 05:24:53.301 INFO [1208]: COREGRADE is starting... -- 05:24:53.301 INFO [1208]: Version from config: 1.0 -- 05:24:53.301 DEBUG [1208]: Connecting to database... -- 05:24:53.301 DEBUG [1208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:24:53.301 SQL [1208]: pgsql_db_connect() -- 05:24:53.305 DEBUG [1208]: Database connection successful -- 05:24:53.305 INFO [1208]: _SERVER found -- 05:24:53.305 INFO [1208]: REMOTE_ADDR = 192.168.1.13 -- 05:24:53.305 INFO [1208]: SERVER_NAME = oameye.works.coregrade.com -- 05:24:53.305 INFO [1208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=7ic0mnkrv5gho2gbeqrfso673o74k4ap -- 05:24:53.305 INFO [1208]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 05:24:53.305 INFO [1208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:24:53.317 INFO [1208]: COREGRADE is stopping... -- 05:24:53.317 DEBUG [1208]: Closing database connection -- 05:24:53.317 SQL [1208]: pgsql_close() -- 05:24:53.339 INFO [1208]: COREGRADE is starting... -- 05:24:53.339 INFO [1208]: Version from config: 1.0 -- 05:24:53.339 DEBUG [1208]: Connecting to database... -- 05:24:53.339 DEBUG [1208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:24:53.339 SQL [1208]: pgsql_db_connect() -- 05:24:53.343 DEBUG [1208]: Database connection successful -- 05:24:53.343 INFO [1208]: _SERVER found -- 05:24:53.343 INFO [1208]: REMOTE_ADDR = 192.168.1.13 -- 05:24:53.343 INFO [1208]: SERVER_NAME = oameye.works.coregrade.com -- 05:24:53.343 INFO [1208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=7ic0mnkrv5gho2gbeqrfso673o74k4ap -- 05:24:53.343 INFO [1208]: QUERY_STRING = /app-assets/data/locales/en.json -- 05:24:53.343 INFO [1208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:24:53.355 INFO [1208]: COREGRADE is stopping... -- 05:24:53.355 DEBUG [1208]: Closing database connection -- 05:24:53.355 SQL [1208]: pgsql_close() -- 05:24:55.258 INFO [1208]: COREGRADE is starting... -- 05:24:55.258 INFO [1208]: Version from config: 1.0 -- 05:24:55.258 DEBUG [1208]: Connecting to database... -- 05:24:55.258 DEBUG [1208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:24:55.258 SQL [1208]: pgsql_db_connect() -- 05:24:55.262 DEBUG [1208]: Database connection successful -- 05:24:55.262 INFO [1208]: _SERVER found -- 05:24:55.262 INFO [1208]: REMOTE_ADDR = 192.168.1.13 -- 05:24:55.262 INFO [1208]: SERVER_NAME = oameye.works.coregrade.com -- 05:24:55.262 INFO [1208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=7ic0mnkrv5gho2gbeqrfso673o74k4ap -- 05:24:55.262 INFO [1208]: QUERY_STRING = /member/page -- 05:24:55.262 INFO [1208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:24:55.307 INFO [1208]: COREGRADE is stopping... -- 05:24:55.307 DEBUG [1208]: Closing database connection -- 05:24:55.307 SQL [1208]: pgsql_close() -- 05:24:55.417 INFO [1208]: COREGRADE is starting... -- 05:24:55.417 INFO [1208]: Version from config: 1.0 -- 05:24:55.417 DEBUG [1208]: Connecting to database... -- 05:24:55.417 DEBUG [1208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:24:55.417 SQL [1208]: pgsql_db_connect() -- 05:24:55.422 DEBUG [1208]: Database connection successful -- 05:24:55.422 INFO [1208]: _SERVER found -- 05:24:55.422 INFO [1208]: REMOTE_ADDR = 192.168.1.13 -- 05:24:55.422 INFO [1208]: SERVER_NAME = oameye.works.coregrade.com -- 05:24:55.422 INFO [1208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=7ic0mnkrv5gho2gbeqrfso673o74k4ap -- 05:24:55.422 INFO [1208]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 05:24:55.422 INFO [1208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:24:55.433 INFO [1208]: COREGRADE is stopping... -- 05:24:55.433 DEBUG [1208]: Closing database connection -- 05:24:55.433 SQL [1208]: pgsql_close() -- 05:24:55.503 INFO [1208]: COREGRADE is starting... -- 05:24:55.503 INFO [1208]: Version from config: 1.0 -- 05:24:55.503 DEBUG [1208]: Connecting to database... -- 05:24:55.503 DEBUG [1208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:24:55.503 SQL [1208]: pgsql_db_connect() -- 05:24:55.507 DEBUG [1208]: Database connection successful -- 05:24:55.507 INFO [1208]: _SERVER found -- 05:24:55.507 INFO [1208]: REMOTE_ADDR = 192.168.1.13 -- 05:24:55.507 INFO [1208]: SERVER_NAME = oameye.works.coregrade.com -- 05:24:55.507 INFO [1208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=7ic0mnkrv5gho2gbeqrfso673o74k4ap -- 05:24:55.507 INFO [1208]: QUERY_STRING = /app-assets/data/locales/en.json -- 05:24:55.507 INFO [1208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:24:55.518 INFO [1208]: COREGRADE is stopping... -- 05:24:55.518 DEBUG [1208]: Closing database connection -- 05:24:55.518 SQL [1208]: pgsql_close() -- 05:25:21.412 INFO [1209]: COREGRADE is starting... -- 05:25:21.412 INFO [1209]: Version from config: 1.0 -- 05:25:21.412 DEBUG [1209]: Connecting to database... -- 05:25:21.412 DEBUG [1209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:25:21.412 SQL [1209]: pgsql_db_connect() -- 05:25:21.416 DEBUG [1209]: Database connection successful -- 05:25:21.416 INFO [1209]: _SERVER found -- 05:25:21.416 INFO [1209]: REMOTE_ADDR = 192.168.1.13 -- 05:25:21.416 INFO [1209]: SERVER_NAME = oameye.works.coregrade.com -- 05:25:21.416 INFO [1209]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=7ic0mnkrv5gho2gbeqrfso673o74k4ap -- 05:25:21.416 INFO [1209]: QUERY_STRING = /member/page -- 05:25:21.416 INFO [1209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:25:21.466 INFO [1209]: COREGRADE is stopping... -- 05:25:21.466 DEBUG [1209]: Closing database connection -- 05:25:21.466 SQL [1209]: pgsql_close() -- 05:25:21.591 INFO [1238]: COREGRADE is starting... -- 05:25:21.592 INFO [1238]: Version from config: 1.0 -- 05:25:21.592 DEBUG [1238]: Connecting to database... -- 05:25:21.592 DEBUG [1238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:25:21.592 SQL [1238]: pgsql_db_connect() -- 05:25:21.596 DEBUG [1238]: Database connection successful -- 05:25:21.596 INFO [1238]: _SERVER found -- 05:25:21.596 INFO [1238]: REMOTE_ADDR = 192.168.1.13 -- 05:25:21.596 INFO [1238]: SERVER_NAME = oameye.works.coregrade.com -- 05:25:21.596 INFO [1238]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=7ic0mnkrv5gho2gbeqrfso673o74k4ap -- 05:25:21.596 INFO [1238]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 05:25:21.596 INFO [1238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:25:21.610 INFO [1238]: COREGRADE is stopping... -- 05:25:21.611 DEBUG [1238]: Closing database connection -- 05:25:21.611 SQL [1238]: pgsql_close() -- 05:25:21.729 INFO [1205]: COREGRADE is starting... -- 05:25:21.729 INFO [1205]: Version from config: 1.0 -- 05:25:21.729 DEBUG [1205]: Connecting to database... -- 05:25:21.729 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:25:21.729 SQL [1205]: pgsql_db_connect() -- 05:25:21.733 DEBUG [1205]: Database connection successful -- 05:25:21.733 INFO [1205]: _SERVER found -- 05:25:21.733 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 05:25:21.733 INFO [1205]: SERVER_NAME = oameye.works.coregrade.com -- 05:25:21.733 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=7ic0mnkrv5gho2gbeqrfso673o74k4ap -- 05:25:21.733 INFO [1205]: QUERY_STRING = /app-assets/data/locales/en.json -- 05:25:21.733 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:25:21.745 INFO [1205]: COREGRADE is stopping... -- 05:25:21.745 DEBUG [1205]: Closing database connection -- 05:25:21.745 SQL [1205]: pgsql_close() -- 05:50:22.930 INFO [1252]: COREGRADE is starting... -- 05:50:22.930 INFO [1252]: Version from config: 1.0 -- 05:50:22.930 DEBUG [1252]: Connecting to database... -- 05:50:22.931 DEBUG [1252]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:50:22.931 SQL [1252]: pgsql_db_connect() -- 05:50:22.935 DEBUG [1252]: Database connection successful -- 05:50:22.935 INFO [1252]: _SERVER found -- 05:50:22.935 INFO [1252]: REMOTE_ADDR = 192.168.1.13 -- 05:50:22.935 INFO [1252]: SERVER_NAME = oameye.works.coregrade.com -- 05:50:22.935 INFO [1252]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=7ic0mnkrv5gho2gbeqrfso673o74k4ap -- 05:50:22.935 INFO [1252]: QUERY_STRING = /member/page -- 05:50:22.935 INFO [1252]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:50:22.991 INFO [1252]: COREGRADE is stopping... -- 05:50:22.991 DEBUG [1252]: Closing database connection -- 05:50:22.991 SQL [1252]: pgsql_close() -- 05:50:23.117 INFO [1207]: COREGRADE is starting... -- 05:50:23.117 INFO [1207]: Version from config: 1.0 -- 05:50:23.117 DEBUG [1207]: Connecting to database... -- 05:50:23.117 DEBUG [1207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:50:23.117 SQL [1207]: pgsql_db_connect() -- 05:50:23.121 DEBUG [1207]: Database connection successful -- 05:50:23.121 INFO [1207]: _SERVER found -- 05:50:23.121 INFO [1207]: REMOTE_ADDR = 192.168.1.13 -- 05:50:23.121 INFO [1207]: SERVER_NAME = oameye.works.coregrade.com -- 05:50:23.121 INFO [1207]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=aq9roivqjptcg8vtc8e5omeb5f8iv31j -- 05:50:23.121 INFO [1207]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 05:50:23.121 INFO [1207]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:50:23.135 INFO [1207]: COREGRADE is stopping... -- 05:50:23.135 DEBUG [1207]: Closing database connection -- 05:50:23.135 SQL [1207]: pgsql_close() -- 05:50:23.391 INFO [1208]: COREGRADE is starting... -- 05:50:23.391 INFO [1208]: Version from config: 1.0 -- 05:50:23.391 DEBUG [1208]: Connecting to database... -- 05:50:23.391 DEBUG [1208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:50:23.391 SQL [1208]: pgsql_db_connect() -- 05:50:23.395 DEBUG [1208]: Database connection successful -- 05:50:23.395 INFO [1208]: _SERVER found -- 05:50:23.395 INFO [1208]: REMOTE_ADDR = 192.168.1.13 -- 05:50:23.395 INFO [1208]: SERVER_NAME = oameye.works.coregrade.com -- 05:50:23.395 INFO [1208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=aq9roivqjptcg8vtc8e5omeb5f8iv31j -- 05:50:23.395 INFO [1208]: QUERY_STRING = /app-assets/data/locales/en.json -- 05:50:23.395 INFO [1208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:50:23.407 INFO [1208]: COREGRADE is stopping... -- 05:50:23.407 DEBUG [1208]: Closing database connection -- 05:50:23.407 SQL [1208]: pgsql_close() -- 05:50:27.134 INFO [1208]: COREGRADE is starting... -- 05:50:27.134 INFO [1208]: Version from config: 1.0 -- 05:50:27.134 DEBUG [1208]: Connecting to database... -- 05:50:27.134 DEBUG [1208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:50:27.134 SQL [1208]: pgsql_db_connect() -- 05:50:27.138 DEBUG [1208]: Database connection successful -- 05:50:27.138 INFO [1208]: _SERVER found -- 05:50:27.138 INFO [1208]: REMOTE_ADDR = 192.168.1.13 -- 05:50:27.138 INFO [1208]: SERVER_NAME = oameye.works.coregrade.com -- 05:50:27.138 INFO [1208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=aq9roivqjptcg8vtc8e5omeb5f8iv31j -- 05:50:27.138 INFO [1208]: QUERY_STRING = /member -- 05:50:27.138 INFO [1208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:50:27.179 INFO [1208]: COREGRADE is stopping... -- 05:50:27.179 DEBUG [1208]: Closing database connection -- 05:50:27.179 SQL [1208]: pgsql_close() -- 05:50:27.342 INFO [1208]: COREGRADE is starting... -- 05:50:27.342 INFO [1208]: Version from config: 1.0 -- 05:50:27.342 DEBUG [1208]: Connecting to database... -- 05:50:27.342 DEBUG [1208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:50:27.342 SQL [1208]: pgsql_db_connect() -- 05:50:27.346 DEBUG [1208]: Database connection successful -- 05:50:27.346 INFO [1208]: _SERVER found -- 05:50:27.346 INFO [1208]: REMOTE_ADDR = 192.168.1.13 -- 05:50:27.346 INFO [1208]: SERVER_NAME = oameye.works.coregrade.com -- 05:50:27.346 INFO [1208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=aq9roivqjptcg8vtc8e5omeb5f8iv31j -- 05:50:27.346 INFO [1208]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 05:50:27.346 INFO [1208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:50:27.357 INFO [1208]: COREGRADE is stopping... -- 05:50:27.357 DEBUG [1208]: Closing database connection -- 05:50:27.357 SQL [1208]: pgsql_close() -- 05:50:27.373 INFO [1208]: COREGRADE is starting... -- 05:50:27.373 INFO [1208]: Version from config: 1.0 -- 05:50:27.373 DEBUG [1208]: Connecting to database... -- 05:50:27.373 DEBUG [1208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:50:27.373 SQL [1208]: pgsql_db_connect() -- 05:50:27.377 DEBUG [1208]: Database connection successful -- 05:50:27.377 INFO [1208]: _SERVER found -- 05:50:27.377 INFO [1208]: REMOTE_ADDR = 192.168.1.13 -- 05:50:27.377 INFO [1208]: SERVER_NAME = oameye.works.coregrade.com -- 05:50:27.377 INFO [1208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=aq9roivqjptcg8vtc8e5omeb5f8iv31j -- 05:50:27.377 INFO [1208]: QUERY_STRING = /app-assets/data/locales/en.json -- 05:50:27.377 INFO [1208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:50:27.388 INFO [1208]: COREGRADE is stopping... -- 05:50:27.388 DEBUG [1208]: Closing database connection -- 05:50:27.388 SQL [1208]: pgsql_close() -- 08:30:27.442 INFO [1205]: COREGRADE is starting... -- 08:30:27.443 INFO [1205]: Version from config: 1.0 -- 08:30:27.443 DEBUG [1205]: Connecting to database... -- 08:30:27.443 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:30:27.443 SQL [1205]: pgsql_db_connect() -- 08:30:27.448 DEBUG [1205]: Database connection successful -- 08:30:27.448 INFO [1205]: _SERVER found -- 08:30:27.448 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 08:30:27.448 INFO [1205]: SERVER_NAME = oameye.works.coregrade.com -- 08:30:27.448 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628 -- 08:30:27.448 INFO [1205]: QUERY_STRING = /auth -- 08:30:27.448 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:30:27.488 INFO [1205]: COREGRADE is stopping... -- 08:30:27.489 DEBUG [1205]: Closing database connection -- 08:30:27.489 SQL [1205]: pgsql_close() -- 08:30:27.600 INFO [1205]: COREGRADE is starting... -- 08:30:27.600 INFO [1205]: Version from config: 1.0 -- 08:30:27.600 DEBUG [1205]: Connecting to database... -- 08:30:27.600 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:30:27.600 SQL [1205]: pgsql_db_connect() -- 08:30:27.605 DEBUG [1205]: Database connection successful -- 08:30:27.605 INFO [1205]: _SERVER found -- 08:30:27.605 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 08:30:27.605 INFO [1205]: SERVER_NAME = oameye.works.coregrade.com -- 08:30:27.605 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=5ill197fn2v3gppmqro77k36l39ro7t3 -- 08:30:27.605 INFO [1205]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 08:30:27.605 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:30:27.616 INFO [1205]: COREGRADE is stopping... -- 08:30:27.616 DEBUG [1205]: Closing database connection -- 08:30:27.616 SQL [1205]: pgsql_close() -- 08:30:28.568 INFO [1205]: COREGRADE is starting... -- 08:30:28.568 INFO [1205]: Version from config: 1.0 -- 08:30:28.568 DEBUG [1205]: Connecting to database... -- 08:30:28.568 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:30:28.568 SQL [1205]: pgsql_db_connect() -- 08:30:28.572 DEBUG [1205]: Database connection successful -- 08:30:28.572 INFO [1205]: _SERVER found -- 08:30:28.572 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 08:30:28.572 INFO [1205]: SERVER_NAME = oameye.works.coregrade.com -- 08:30:28.572 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=5ill197fn2v3gppmqro77k36l39ro7t3 -- 08:30:28.572 INFO [1205]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:30:28.572 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:30:28.583 INFO [1205]: COREGRADE is stopping... -- 08:30:28.583 DEBUG [1205]: Closing database connection -- 08:30:28.583 SQL [1205]: pgsql_close() -- 19:45:01.662 INFO [1207]: COREGRADE is starting... -- 19:45:01.663 INFO [1207]: Version from config: 1.0 -- 19:45:01.663 DEBUG [1207]: Connecting to database... -- 19:45:01.663 DEBUG [1207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:45:01.663 SQL [1207]: pgsql_db_connect() -- 19:45:01.667 DEBUG [1207]: Database connection successful -- 19:45:01.667 INFO [1207]: _SERVER found -- 19:45:01.667 INFO [1207]: REMOTE_ADDR = 192.168.1.13 -- 19:45:01.667 INFO [1207]: SERVER_NAME = oameye.works.coregrade.com -- 19:45:01.667 INFO [1207]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628 -- 19:45:01.667 INFO [1207]: QUERY_STRING = -- 19:45:01.667 INFO [1207]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:45:01.718 INFO [1207]: COREGRADE is stopping... -- 19:45:01.718 DEBUG [1207]: Closing database connection -- 19:45:01.718 SQL [1207]: pgsql_close() -- 19:45:01.991 INFO [1207]: COREGRADE is starting... -- 19:45:01.991 INFO [1207]: Version from config: 1.0 -- 19:45:01.991 DEBUG [1207]: Connecting to database... -- 19:45:01.991 DEBUG [1207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:45:01.991 SQL [1207]: pgsql_db_connect() -- 19:45:01.995 DEBUG [1207]: Database connection successful -- 19:45:01.995 INFO [1207]: _SERVER found -- 19:45:01.995 INFO [1207]: REMOTE_ADDR = 192.168.1.13 -- 19:45:01.995 INFO [1207]: SERVER_NAME = oameye.works.coregrade.com -- 19:45:01.995 INFO [1207]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=26lk9cg6r1icq3n79fuoc334ss0v5m4t -- 19:45:01.995 INFO [1207]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 19:45:01.995 INFO [1207]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:45:02.008 INFO [1207]: COREGRADE is stopping... -- 19:45:02.008 DEBUG [1207]: Closing database connection -- 19:45:02.008 SQL [1207]: pgsql_close() -- 19:45:02.019 INFO [1376]: COREGRADE is starting... -- 19:45:02.019 INFO [1376]: Version from config: 1.0 -- 19:45:02.019 DEBUG [1376]: Connecting to database... -- 19:45:02.019 DEBUG [1376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:45:02.019 SQL [1376]: pgsql_db_connect() -- 19:45:02.024 DEBUG [1376]: Database connection successful -- 19:45:02.024 INFO [1376]: _SERVER found -- 19:45:02.024 INFO [1376]: REMOTE_ADDR = 192.168.1.13 -- 19:45:02.024 INFO [1376]: SERVER_NAME = oameye.works.coregrade.com -- 19:45:02.024 INFO [1376]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=26lk9cg6r1icq3n79fuoc334ss0v5m4t -- 19:45:02.024 INFO [1376]: QUERY_STRING = /assets/img/footer_1.jpg -- 19:45:02.024 INFO [1376]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:45:02.040 INFO [1376]: COREGRADE is stopping... -- 19:45:02.040 DEBUG [1376]: Closing database connection -- 19:45:02.040 SQL [1376]: pgsql_close() -- 20:07:46.769 INFO [1206]: COREGRADE is starting... -- 20:07:46.769 INFO [1206]: Version from config: 1.0 -- 20:07:46.769 DEBUG [1206]: Connecting to database... -- 20:07:46.769 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:46.769 SQL [1206]: pgsql_db_connect() -- 20:07:46.774 DEBUG [1206]: Database connection successful -- 20:07:46.774 INFO [1206]: _SERVER found -- 20:07:46.774 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 20:07:46.774 INFO [1206]: SERVER_NAME = oameye.works.coregrade.com -- 20:07:46.774 INFO [1206]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=26lk9cg6r1icq3n79fuoc334ss0v5m4t -- 20:07:46.774 INFO [1206]: QUERY_STRING = /auth/newuser -- 20:07:46.774 INFO [1206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:07:46.814 INFO [1206]: COREGRADE is stopping... -- 20:07:46.814 DEBUG [1206]: Closing database connection -- 20:07:46.814 SQL [1206]: pgsql_close() -- 20:07:46.837 INFO [1206]: COREGRADE is starting... -- 20:07:46.837 INFO [1206]: Version from config: 1.0 -- 20:07:46.837 DEBUG [1206]: Connecting to database... -- 20:07:46.837 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:46.837 SQL [1206]: pgsql_db_connect() -- 20:07:46.841 DEBUG [1206]: Database connection successful -- 20:07:46.841 INFO [1206]: _SERVER found -- 20:07:46.841 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 20:07:46.841 INFO [1206]: SERVER_NAME = oameye.works.coregrade.com -- 20:07:46.841 INFO [1206]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=26lk9cg6r1icq3n79fuoc334ss0v5m4t -- 20:07:46.841 INFO [1206]: QUERY_STRING = /welcome/viewLogin -- 20:07:46.841 INFO [1206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:07:46.873 INFO [1206]: COREGRADE is stopping... -- 20:07:46.873 DEBUG [1206]: Closing database connection -- 20:07:46.873 SQL [1206]: pgsql_close() -- 20:07:46.990 INFO [1206]: COREGRADE is starting... -- 20:07:46.991 INFO [1206]: Version from config: 1.0 -- 20:07:46.991 DEBUG [1206]: Connecting to database... -- 20:07:46.991 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:46.991 SQL [1206]: pgsql_db_connect() -- 20:07:46.995 DEBUG [1206]: Database connection successful -- 20:07:46.995 INFO [1206]: _SERVER found -- 20:07:46.995 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 20:07:46.995 INFO [1206]: SERVER_NAME = oameye.works.coregrade.com -- 20:07:46.995 INFO [1206]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=o3v8gbfb3ecdq7j2djb6rleroof3b9m2 -- 20:07:46.995 INFO [1206]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 20:07:46.995 INFO [1206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:07:47.006 INFO [1206]: COREGRADE is stopping... -- 20:07:47.006 DEBUG [1206]: Closing database connection -- 20:07:47.006 SQL [1206]: pgsql_close() -- 20:07:47.016 INFO [1206]: COREGRADE is starting... -- 20:07:47.017 INFO [1206]: Version from config: 1.0 -- 20:07:47.017 DEBUG [1206]: Connecting to database... -- 20:07:47.017 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:47.017 SQL [1206]: pgsql_db_connect() -- 20:07:47.021 DEBUG [1206]: Database connection successful -- 20:07:47.021 INFO [1206]: _SERVER found -- 20:07:47.021 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 20:07:47.021 INFO [1206]: SERVER_NAME = oameye.works.coregrade.com -- 20:07:47.021 INFO [1206]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=o3v8gbfb3ecdq7j2djb6rleroof3b9m2 -- 20:07:47.021 INFO [1206]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:07:47.021 INFO [1206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:07:47.032 INFO [1206]: COREGRADE is stopping... -- 20:07:47.032 DEBUG [1206]: Closing database connection -- 20:07:47.032 SQL [1206]: pgsql_close() -- 20:08:55.894 INFO [1238]: COREGRADE is starting... -- 20:08:55.894 INFO [1238]: Version from config: 1.0 -- 20:08:55.894 DEBUG [1238]: Connecting to database... -- 20:08:55.894 DEBUG [1238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:08:55.894 SQL [1238]: pgsql_db_connect() -- 20:08:55.899 DEBUG [1238]: Database connection successful -- 20:08:55.899 INFO [1238]: _SERVER found -- 20:08:55.899 INFO [1238]: REMOTE_ADDR = 192.168.1.13 -- 20:08:55.899 INFO [1238]: SERVER_NAME = oameye.works.coregrade.com -- 20:08:55.899 INFO [1238]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=o3v8gbfb3ecdq7j2djb6rleroof3b9m2 -- 20:08:55.899 INFO [1238]: QUERY_STRING = -- 20:08:55.899 INFO [1238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:08:55.899 INFO [1238]: SystemStatus()09-09-********~************ -- 20:08:55.899 INFO [1238]: long coregrade_api_main(CVars in, CVars &out) -- 20:08:55.899 INFO [1238]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 20:08:55.899 INFO [1238]: account calls -- 20:08:55.899 INFO [1238]: account_calls() -- 20:08:55.899 FLOG_MAX [1238]: REQ_STRING(username) -- 20:08:55.899 FLOG_MAX [1238]: REQ_STRING(firstname) -- 20:08:55.899 FLOG_MAX [1238]: REQ_STRING(lastname) -- 20:08:55.899 FLOG_MAX [1238]: REQ_STRING(email) -- 20:08:55.899 SQL [1238]: pgsql_query() -- 20:08:55.899 SQL [1238]: About to run query: -- 20:08:55.899 SQL [1238]: SELECT * FROM members WHERE LOWER(username) = LOWER('tokunbo.lawal1+2056@gmail.com') -- 20:08:55.902 SQL [1238]: Found rows: 0 -- 20:08:55.902 SQL [1238]: Found rows: 0 -- 20:08:55.902 FLOG_MAX [1238]: insert_db_record() -- 20:08:55.902 SQL [1238]: pgsql_exec() -- 20:08:55.902 SQL [1238]: About to run query: -- 20:08:55.902 SQL [1238]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('tokunbo.lawal1+2056@gmail.com','Olu','Amey','192.168.1.13','','tokunbo.lawal1+2056@gmail.com','RS-1472309248-772161536-510001152') -- 20:08:55.904 SQL [1238]: PQcmdTuples: 1 -- 20:08:55.904 SQL [1238]: Affected rows: 1 -- 20:08:55.904 FLOG_MAX [1238]: SELECT currval('members_pending_id_seq') -- 20:08:55.904 SQL [1238]: pgsql_query() -- 20:08:55.904 SQL [1238]: About to run query: -- 20:08:55.904 SQL [1238]: SELECT currval('members_pending_id_seq') -- 20:08:55.904 SQL [1238]: Found rows: 1 -- 20:08:55.904 SQL [1238]: pgsql_query() -- 20:08:55.904 SQL [1238]: About to run query: -- 20:08:55.904 SQL [1238]: UPDATE members_pending SET password = md5('12345678') WHERE id = 23 -- 20:08:55.905 SQL [1238]: Found rows: 0 -- 20:08:55.905 SQL [1238]: Found rows: 0 -- 20:08:55.905 FLOG_MAX [1238]: long load_db_record( CVars &rec, const char * query, ... ) -- 20:08:55.905 SQL [1238]: pgsql_query() -- 20:08:55.905 SQL [1238]: About to run query: -- 20:08:55.905 SQL [1238]: SELECT * FROM members_pending WHERE id = 23 -- 20:08:55.905 SQL [1238]: Found rows: 1 -- 20:08:55.905 FLOG_MAX [1238]: load_db_record(SELECT * FROM members_pending WHERE id = 23 ) num_cols=13 -- 20:08:55.906 FLOG_MAX [1238]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 20:08:55.906 FLOG_MAX [1238]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1504 bytes -- 20:08:55.906 FLOG_MAX [1238]: Returning from FormFile() -- 20:08:55.906 FLOG_MAX [1238]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 20:08:55.906 FLOG_MAX [1238]: ESMTP( 10.0.0.23, support@coregrade.com, tokunbo.lawal1+2056@gmail.com ) -- 20:08:55.906 FLOG_MAX [1238]: Prepare body -- 20:08:55.906 FLOG_MAX [1238]: Locate & extract subject -- 20:08:55.906 FLOG_MAX [1238]: Found subject: CoreGrade - Pending Signup - Verify tokunbo.lawal1+2056@gmail.com -- 20:08:55.906 FLOG_MAX [1238]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t tokunbo.lawal1+2056@gmail.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'CoreGrade - Pending Signup - Verify tokunbo.lawal1+2056@gmail.com' -M ' - - - -
-
- - - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to verify your email. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-1472309248-772161536-510001152 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/home/contactus?vlnk=RS-1472309248-772161536-510001152 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-
-
- -
- - - - - -' -- 20:08:55.993 FLOG_MAX [1238]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Pending Signup - Verify tokunbo.lawal1+2056@gmail.com -From: CoreGrade Support -Date: Tue, 18 Feb 2020 20:08:55 -0500 -To: tokunbo.lawal1+2056@gmail.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="Y7vfYZXGAyLJZl3z" -Mime-version: 1.0 - - ---Y7vfYZXGAyLJZl3z -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
- - - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to verify your email. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-1472309248-772161536-510001152 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/home/contactus?vlnk=RS-1472309248-772161536-510001152 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-
-
- -
- - - - - - - - ---Y7vfYZXGAyLJZl3z-- - -[C] . -[S] 250 2.0.0 Ok: queued as F18642113069 -[C] QUIT -[S] 221 2.0.0 Bye - -- 20:08:55.994 FLOG_MAX [1238]: - -END OF PIPE OUTPUT - - -- 20:08:55.994 FLOG_MAX [1238]: /ESMTP() -- 20:08:55.994 INFO [1238]: RET: action=11010 -- 20:08:55.994 INFO [1238]: RET: email=tokunbo.lawal1+2056@gmail.com -- 20:08:55.994 INFO [1238]: RET: firstname=Olu -- 20:08:55.994 INFO [1238]: RET: lastname=Amey -- 20:08:55.994 INFO [1238]: RET: password=12345678 -- 20:08:55.994 INFO [1238]: RET: pending_id=23 -- 20:08:55.994 INFO [1238]: RET: status_message=Pending -- 20:08:55.994 INFO [1238]: RET: username=tokunbo.lawal1+2056@gmail.com -- 20:08:55.994 INFO [1238]: COREGRADE is stopping... -- 20:08:55.994 DEBUG [1238]: Closing database connection -- 20:08:55.994 SQL [1238]: pgsql_close() -- 20:13:52.309 INFO [1209]: COREGRADE is starting... -- 20:13:52.309 INFO [1209]: Version from config: 1.0 -- 20:13:52.309 DEBUG [1209]: Connecting to database... -- 20:13:52.309 DEBUG [1209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:13:52.309 SQL [1209]: pgsql_db_connect() -- 20:13:52.313 DEBUG [1209]: Database connection successful -- 20:13:52.313 INFO [1209]: _SERVER found -- 20:13:52.313 INFO [1209]: REMOTE_ADDR = 192.168.1.13 -- 20:13:52.313 INFO [1209]: SERVER_NAME = oameye.works.coregrade.com -- 20:13:52.313 INFO [1209]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=o3v8gbfb3ecdq7j2djb6rleroof3b9m2 -- 20:13:52.313 INFO [1209]: QUERY_STRING = -- 20:13:52.313 INFO [1209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:13:52.314 INFO [1209]: SystemStatus()09-09-********~************ -- 20:13:52.314 INFO [1209]: long coregrade_api_main(CVars in, CVars &out) -- 20:13:52.314 INFO [1209]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 20:13:52.314 INFO [1209]: account calls -- 20:13:52.314 INFO [1209]: account_calls() -- 20:13:52.314 FLOG_MAX [1209]: REQ_STRING(username) -- 20:13:52.314 FLOG_MAX [1209]: REQ_STRING(firstname) -- 20:13:52.314 FLOG_MAX [1209]: REQ_STRING(lastname) -- 20:13:52.314 FLOG_MAX [1209]: REQ_STRING(email) -- 20:13:52.314 SQL [1209]: pgsql_query() -- 20:13:52.314 SQL [1209]: About to run query: -- 20:13:52.314 SQL [1209]: SELECT * FROM members WHERE LOWER(username) = LOWER('tokunbo.lawal1+3889@gmail.com') -- 20:13:52.316 SQL [1209]: Found rows: 0 -- 20:13:52.316 SQL [1209]: Found rows: 0 -- 20:13:52.316 FLOG_MAX [1209]: insert_db_record() -- 20:13:52.316 SQL [1209]: pgsql_exec() -- 20:13:52.316 SQL [1209]: About to run query: -- 20:13:52.316 SQL [1209]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('tokunbo.lawal1+3889@gmail.com','Olu','Amey','192.168.1.13','','tokunbo.lawal1+3889@gmail.com','RS-383352832-1841299456-1610612736') -- 20:13:52.318 SQL [1209]: PQcmdTuples: 1 -- 20:13:52.318 SQL [1209]: Affected rows: 1 -- 20:13:52.318 FLOG_MAX [1209]: SELECT currval('members_pending_id_seq') -- 20:13:52.318 SQL [1209]: pgsql_query() -- 20:13:52.318 SQL [1209]: About to run query: -- 20:13:52.318 SQL [1209]: SELECT currval('members_pending_id_seq') -- 20:13:52.318 SQL [1209]: Found rows: 1 -- 20:13:52.318 SQL [1209]: pgsql_query() -- 20:13:52.318 SQL [1209]: About to run query: -- 20:13:52.318 SQL [1209]: UPDATE members_pending SET password = md5('12345678') WHERE id = 24 -- 20:13:52.319 SQL [1209]: Found rows: 0 -- 20:13:52.319 SQL [1209]: Found rows: 0 -- 20:13:52.319 FLOG_MAX [1209]: long load_db_record( CVars &rec, const char * query, ... ) -- 20:13:52.319 SQL [1209]: pgsql_query() -- 20:13:52.319 SQL [1209]: About to run query: -- 20:13:52.319 SQL [1209]: SELECT * FROM members_pending WHERE id = 24 -- 20:13:52.320 SQL [1209]: Found rows: 1 -- 20:13:52.320 FLOG_MAX [1209]: load_db_record(SELECT * FROM members_pending WHERE id = 24 ) num_cols=13 -- 20:13:52.320 FLOG_MAX [1209]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 20:13:52.320 FLOG_MAX [1209]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1504 bytes -- 20:13:52.320 FLOG_MAX [1209]: Returning from FormFile() -- 20:13:52.320 FLOG_MAX [1209]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 20:13:52.320 FLOG_MAX [1209]: ESMTP( 10.0.0.23, support@coregrade.com, tokunbo.lawal1+3889@gmail.com ) -- 20:13:52.320 FLOG_MAX [1209]: Prepare body -- 20:13:52.320 FLOG_MAX [1209]: Locate & extract subject -- 20:13:52.320 FLOG_MAX [1209]: Found subject: CoreGrade - Pending Signup - Verify tokunbo.lawal1+3889@gmail.com -- 20:13:52.320 FLOG_MAX [1209]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t tokunbo.lawal1+3889@gmail.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'CoreGrade - Pending Signup - Verify tokunbo.lawal1+3889@gmail.com' -M ' - - - -
-
- - - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to verify your email. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-383352832-1841299456-1610612736 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/home/contactus?vlnk=RS-383352832-1841299456-1610612736 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-
-
- -
- - - - - -' -- 20:13:52.411 FLOG_MAX [1209]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Pending Signup - Verify tokunbo.lawal1+3889@gmail.com -From: CoreGrade Support -Date: Tue, 18 Feb 2020 20:13:52 -0500 -To: tokunbo.lawal1+3889@gmail.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="A9TdK4n8iu7VFybU" -Mime-version: 1.0 - - ---A9TdK4n8iu7VFybU -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
- - - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to verify your email. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-383352832-1841299456-1610612736 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/home/contactus?vlnk=RS-383352832-1841299456-1610612736 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-
-
- -
- - - - - - - - ---A9TdK4n8iu7VFybU-- - -[C] . -[S] 250 2.0.0 Ok: queued as 634F9211306A -[C] QUIT -[S] 221 2.0.0 Bye - -- 20:13:52.411 FLOG_MAX [1209]: - -END OF PIPE OUTPUT - - -- 20:13:52.411 FLOG_MAX [1209]: /ESMTP() -- 20:13:52.411 INFO [1209]: RET: action=11010 -- 20:13:52.411 INFO [1209]: RET: email=tokunbo.lawal1+3889@gmail.com -- 20:13:52.411 INFO [1209]: RET: firstname=Olu -- 20:13:52.411 INFO [1209]: RET: lastname=Amey -- 20:13:52.411 INFO [1209]: RET: password=12345678 -- 20:13:52.411 INFO [1209]: RET: pending_id=24 -- 20:13:52.411 INFO [1209]: RET: status_message=Pending -- 20:13:52.411 INFO [1209]: RET: username=tokunbo.lawal1+3889@gmail.com -- 20:13:52.411 INFO [1209]: COREGRADE is stopping... -- 20:13:52.411 DEBUG [1209]: Closing database connection -- 20:13:52.411 SQL [1209]: pgsql_close() -- 20:14:32.265 INFO [1208]: COREGRADE is starting... -- 20:14:32.265 INFO [1208]: Version from config: 1.0 -- 20:14:32.265 DEBUG [1208]: Connecting to database... -- 20:14:32.265 DEBUG [1208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:14:32.265 SQL [1208]: pgsql_db_connect() -- 20:14:32.270 DEBUG [1208]: Database connection successful -- 20:14:32.270 INFO [1208]: _SERVER found -- 20:14:32.270 INFO [1208]: REMOTE_ADDR = 192.168.1.13 -- 20:14:32.270 INFO [1208]: SERVER_NAME = oameye.works.coregrade.com -- 20:14:32.270 INFO [1208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=o3v8gbfb3ecdq7j2djb6rleroof3b9m2 -- 20:14:32.270 INFO [1208]: QUERY_STRING = -- 20:14:32.270 INFO [1208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:14:32.270 INFO [1208]: SystemStatus()09-09-********~************ -- 20:14:32.270 INFO [1208]: long coregrade_api_main(CVars in, CVars &out) -- 20:14:32.270 INFO [1208]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 20:14:32.270 INFO [1208]: account calls -- 20:14:32.270 INFO [1208]: account_calls() -- 20:14:32.270 FLOG_MAX [1208]: REQ_STRING(username) -- 20:14:32.270 FLOG_MAX [1208]: REQ_STRING(firstname) -- 20:14:32.270 FLOG_MAX [1208]: REQ_STRING(lastname) -- 20:14:32.270 FLOG_MAX [1208]: REQ_STRING(email) -- 20:14:32.270 SQL [1208]: pgsql_query() -- 20:14:32.270 SQL [1208]: About to run query: -- 20:14:32.270 SQL [1208]: SELECT * FROM members WHERE LOWER(username) = LOWER('ses66181+554@gmail.com') -- 20:14:32.272 SQL [1208]: Found rows: 0 -- 20:14:32.272 SQL [1208]: Found rows: 0 -- 20:14:32.272 FLOG_MAX [1208]: insert_db_record() -- 20:14:32.272 SQL [1208]: pgsql_exec() -- 20:14:32.272 SQL [1208]: About to run query: -- 20:14:32.272 SQL [1208]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ses66181+554@gmail.com','Olu','Amey','192.168.1.13','','ses66181+554@gmail.com','RS-440005120-1720105984-176207872') -- 20:14:32.274 SQL [1208]: PQcmdTuples: 1 -- 20:14:32.274 SQL [1208]: Affected rows: 1 -- 20:14:32.274 FLOG_MAX [1208]: SELECT currval('members_pending_id_seq') -- 20:14:32.274 SQL [1208]: pgsql_query() -- 20:14:32.274 SQL [1208]: About to run query: -- 20:14:32.274 SQL [1208]: SELECT currval('members_pending_id_seq') -- 20:14:32.274 SQL [1208]: Found rows: 1 -- 20:14:32.274 SQL [1208]: pgsql_query() -- 20:14:32.274 SQL [1208]: About to run query: -- 20:14:32.274 SQL [1208]: UPDATE members_pending SET password = md5('12345678') WHERE id = 25 -- 20:14:32.275 SQL [1208]: Found rows: 0 -- 20:14:32.275 SQL [1208]: Found rows: 0 -- 20:14:32.275 FLOG_MAX [1208]: long load_db_record( CVars &rec, const char * query, ... ) -- 20:14:32.275 SQL [1208]: pgsql_query() -- 20:14:32.275 SQL [1208]: About to run query: -- 20:14:32.275 SQL [1208]: SELECT * FROM members_pending WHERE id = 25 -- 20:14:32.276 SQL [1208]: Found rows: 1 -- 20:14:32.276 FLOG_MAX [1208]: load_db_record(SELECT * FROM members_pending WHERE id = 25 ) num_cols=13 -- 20:14:32.276 FLOG_MAX [1208]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 20:14:32.276 FLOG_MAX [1208]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1504 bytes -- 20:14:32.276 FLOG_MAX [1208]: Returning from FormFile() -- 20:14:32.276 FLOG_MAX [1208]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 20:14:32.276 FLOG_MAX [1208]: ESMTP( 10.0.0.23, support@coregrade.com, ses66181+554@gmail.com ) -- 20:14:32.276 FLOG_MAX [1208]: Prepare body -- 20:14:32.276 FLOG_MAX [1208]: Locate & extract subject -- 20:14:32.276 FLOG_MAX [1208]: Found subject: CoreGrade - Pending Signup - Verify ses66181+554@gmail.com -- 20:14:32.276 FLOG_MAX [1208]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t ses66181+554@gmail.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'CoreGrade - Pending Signup - Verify ses66181+554@gmail.com' -M ' - - - -
-
- - - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to verify your email. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-440005120-1720105984-176207872 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/home/contactus?vlnk=RS-440005120-1720105984-176207872 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-
-
- -
- - - - - -' -- 20:14:32.298 FLOG_MAX [1208]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Pending Signup - Verify ses66181+554@gmail.com -From: CoreGrade Support -Date: Tue, 18 Feb 2020 20:14:32 -0500 -To: ses66181+554@gmail.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="OkWNGfa7sqLnTSol" -Mime-version: 1.0 - - ---OkWNGfa7sqLnTSol -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
- - - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to verify your email. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-440005120-1720105984-176207872 -
-CoreGrade gives empowers you to form, find and join one or more groups. As a group member you will receive the benefit of wholesale prices on leading brands from reputable sellers on the purchases you need for your home, your business or your life! -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/home/contactus?vlnk=RS-440005120-1720105984-176207872 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-
-
- -
- - - - - - - - ---OkWNGfa7sqLnTSol-- - -[C] . -[S] 250 2.0.0 Ok: queued as 47C402113069 -[C] QUIT -[S] 221 2.0.0 Bye -@sk!2V -- 20:14:32.298 FLOG_MAX [1208]: - -END OF PIPE OUTPUT - - -- 20:14:32.298 FLOG_MAX [1208]: /ESMTP() -- 20:14:32.298 INFO [1208]: RET: action=11010 -- 20:14:32.298 INFO [1208]: RET: email=ses66181+554@gmail.com -- 20:14:32.298 INFO [1208]: RET: firstname=Olu -- 20:14:32.298 INFO [1208]: RET: lastname=Amey -- 20:14:32.298 INFO [1208]: RET: password=12345678 -- 20:14:32.298 INFO [1208]: RET: pending_id=25 -- 20:14:32.298 INFO [1208]: RET: status_message=Pending -- 20:14:32.298 INFO [1208]: RET: username=ses66181+554@gmail.com -- 20:14:32.298 INFO [1208]: COREGRADE is stopping... -- 20:14:32.298 DEBUG [1208]: Closing database connection -- 20:14:32.298 SQL [1208]: pgsql_close() -- 20:18:25.605 INFO [1205]: COREGRADE is starting... -- 20:18:25.606 INFO [1205]: Version from config: 1.0 -- 20:18:25.606 DEBUG [1205]: Connecting to database... -- 20:18:25.606 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:18:25.606 SQL [1205]: pgsql_db_connect() -- 20:18:25.610 DEBUG [1205]: Database connection successful -- 20:18:25.610 INFO [1205]: _SERVER found -- 20:18:25.610 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 20:18:25.610 INFO [1205]: SERVER_NAME = oameye.works.coregrade.com -- 20:18:25.610 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=o3v8gbfb3ecdq7j2djb6rleroof3b9m2 -- 20:18:25.610 INFO [1205]: QUERY_STRING = -- 20:18:25.610 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:18:25.610 INFO [1205]: SystemStatus()09-09-********~************ -- 20:18:25.610 INFO [1205]: long coregrade_api_main(CVars in, CVars &out) -- 20:18:25.610 INFO [1205]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 20:18:25.610 INFO [1205]: account calls -- 20:18:25.610 INFO [1205]: account_calls() -- 20:18:25.610 FLOG_MAX [1205]: REQ_STRING(username) -- 20:18:25.610 FLOG_MAX [1205]: REQ_STRING(firstname) -- 20:18:25.610 FLOG_MAX [1205]: REQ_STRING(lastname) -- 20:18:25.610 FLOG_MAX [1205]: REQ_STRING(email) -- 20:18:25.610 SQL [1205]: pgsql_query() -- 20:18:25.610 SQL [1205]: About to run query: -- 20:18:25.610 SQL [1205]: SELECT * FROM members WHERE LOWER(username) = LOWER('ses66181+843@gmail.com') -- 20:18:25.612 SQL [1205]: Found rows: 0 -- 20:18:25.612 SQL [1205]: Found rows: 0 -- 20:18:25.612 FLOG_MAX [1205]: insert_db_record() -- 20:18:25.612 SQL [1205]: pgsql_exec() -- 20:18:25.612 SQL [1205]: About to run query: -- 20:18:25.612 SQL [1205]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ses66181+843@gmail.com','Olu','Amey','192.168.1.13','','ses66181+843@gmail.com','RS-1530051840-489772800-1527552768') -- 20:18:25.614 SQL [1205]: PQcmdTuples: 1 -- 20:18:25.614 SQL [1205]: Affected rows: 1 -- 20:18:25.614 FLOG_MAX [1205]: SELECT currval('members_pending_id_seq') -- 20:18:25.614 SQL [1205]: pgsql_query() -- 20:18:25.614 SQL [1205]: About to run query: -- 20:18:25.614 SQL [1205]: SELECT currval('members_pending_id_seq') -- 20:18:25.614 SQL [1205]: Found rows: 1 -- 20:18:25.614 SQL [1205]: pgsql_query() -- 20:18:25.614 SQL [1205]: About to run query: -- 20:18:25.614 SQL [1205]: UPDATE members_pending SET password = md5('12345678') WHERE id = 26 -- 20:18:25.615 SQL [1205]: Found rows: 0 -- 20:18:25.616 SQL [1205]: Found rows: 0 -- 20:18:25.616 FLOG_MAX [1205]: long load_db_record( CVars &rec, const char * query, ... ) -- 20:18:25.616 SQL [1205]: pgsql_query() -- 20:18:25.616 SQL [1205]: About to run query: -- 20:18:25.616 SQL [1205]: SELECT * FROM members_pending WHERE id = 26 -- 20:18:25.616 SQL [1205]: Found rows: 1 -- 20:18:25.616 FLOG_MAX [1205]: load_db_record(SELECT * FROM members_pending WHERE id = 26 ) num_cols=13 -- 20:18:25.616 FLOG_MAX [1205]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 20:18:25.616 FLOG_MAX [1205]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1454 bytes -- 20:18:25.616 FLOG_MAX [1205]: Returning from FormFile() -- 20:18:25.616 FLOG_MAX [1205]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 20:18:25.616 FLOG_MAX [1205]: ESMTP( 10.0.0.23, support@coregrade.com, ses66181+843@gmail.com ) -- 20:18:25.616 FLOG_MAX [1205]: Prepare body -- 20:18:25.616 FLOG_MAX [1205]: Locate & extract subject -- 20:18:25.616 FLOG_MAX [1205]: Found subject: CoreGrade - Pending Signup - Verify ses66181+843@gmail.com -- 20:18:25.616 FLOG_MAX [1205]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t ses66181+843@gmail.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'CoreGrade - Pending Signup - Verify ses66181+843@gmail.com' -M ' - - - -
-
- - - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to verify your email. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-1530051840-489772800-1527552768 -
-CoreGrade,your personalized learning in one place with tools to make it happen. CoreGrade makes it easy to track due dates of goals set, focus plans with e-alerts in your workspace and dashboard. - -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/home/contactus?vlnk=RS-1530051840-489772800-1527552768 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-
-
- -
- - - - - -' -- 20:18:25.771 FLOG_MAX [1205]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Pending Signup - Verify ses66181+843@gmail.com -From: CoreGrade Support -Date: Tue, 18 Feb 2020 20:18:25 -0500 -To: ses66181+843@gmail.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="d+7n1QFanBecllL5" -Mime-version: 1.0 - - ---d+7n1QFanBecllL5 -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
- - - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to verify your email. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-1530051840-489772800-1527552768 -
-CoreGrade,your personalized learning in one place with tools to make it happen. CoreGrade makes it easy to track due dates of goals set, focus plans with e-alerts in your workspace and dashboard. - -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/home/contactus?vlnk=RS-1530051840-489772800-1527552768 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-
-
- -
- - - - - - - - ---d+7n1QFanBecllL5-- - -[C] . -[S] 250 2.0.0 Ok: queued as B7657211306A -[C] QUIT -[S] 221 2.0.0 Bye - -- 20:18:25.771 FLOG_MAX [1205]: - -END OF PIPE OUTPUT - - -- 20:18:25.771 FLOG_MAX [1205]: /ESMTP() -- 20:18:25.771 INFO [1205]: RET: action=11010 -- 20:18:25.771 INFO [1205]: RET: email=ses66181+843@gmail.com -- 20:18:25.771 INFO [1205]: RET: firstname=Olu -- 20:18:25.771 INFO [1205]: RET: lastname=Amey -- 20:18:25.771 INFO [1205]: RET: password=12345678 -- 20:18:25.771 INFO [1205]: RET: pending_id=26 -- 20:18:25.771 INFO [1205]: RET: status_message=Pending -- 20:18:25.771 INFO [1205]: RET: username=ses66181+843@gmail.com -- 20:18:25.771 INFO [1205]: COREGRADE is stopping... -- 20:18:25.771 DEBUG [1205]: Closing database connection -- 20:18:25.771 SQL [1205]: pgsql_close() -- 01:39:39.115 INFO [1207]: COREGRADE is starting... -- 01:39:39.116 INFO [1207]: Version from config: 1.0 -- 01:39:39.116 DEBUG [1207]: Connecting to database... -- 01:39:39.116 DEBUG [1207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:39:39.116 SQL [1207]: pgsql_db_connect() -- 01:39:39.121 DEBUG [1207]: Database connection successful -- 01:39:39.121 INFO [1207]: _SERVER found -- 01:39:39.121 INFO [1207]: REMOTE_ADDR = 192.168.1.13 -- 01:39:39.121 INFO [1207]: SERVER_NAME = oameye.works.coregrade.com -- 01:39:39.121 INFO [1207]: QUERY_STRING = -- 01:39:39.121 INFO [1207]: HTTP_X_FORWARDED_FOR = 209.17.96.122 -- 01:39:39.160 INFO [1207]: COREGRADE is stopping... -- 01:39:39.160 DEBUG [1207]: Closing database connection -- 01:39:39.160 SQL [1207]: pgsql_close() -- 03:34:23.877 INFO [1376]: COREGRADE is starting... -- 03:34:23.877 INFO [1376]: Version from config: 1.0 -- 03:34:23.877 DEBUG [1376]: Connecting to database... -- 03:34:23.877 DEBUG [1376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:34:23.877 SQL [1376]: pgsql_db_connect() -- 03:34:23.882 DEBUG [1376]: Database connection successful -- 03:34:23.882 INFO [1376]: _SERVER found -- 03:34:23.882 INFO [1376]: REMOTE_ADDR = 192.168.1.13 -- 03:34:23.882 INFO [1376]: SERVER_NAME = oameye.works.coregrade.com -- 03:34:23.882 INFO [1376]: QUERY_STRING = -- 03:34:23.882 INFO [1376]: HTTP_X_FORWARDED_FOR = 169.197.108.42 -- 03:34:23.930 INFO [1376]: COREGRADE is stopping... -- 03:34:23.930 DEBUG [1376]: Closing database connection -- 03:34:23.930 SQL [1376]: pgsql_close() -- 10:30:26.609 INFO [1206]: COREGRADE is starting... -- 10:30:26.609 INFO [1206]: Version from config: 1.0 -- 10:30:26.609 DEBUG [1206]: Connecting to database... -- 10:30:26.609 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:30:26.609 SQL [1206]: pgsql_db_connect() -- 10:30:26.614 DEBUG [1206]: Database connection successful -- 10:30:26.614 INFO [1206]: _SERVER found -- 10:30:26.614 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 10:30:26.614 INFO [1206]: SERVER_NAME = oameye.works.coregrade.com -- 10:30:26.614 INFO [1206]: QUERY_STRING = /ReportServer -- 10:30:26.614 INFO [1206]: HTTP_X_FORWARDED_FOR = 165.227.1.124 -- 10:30:26.630 INFO [1206]: COREGRADE is stopping... -- 10:30:26.630 DEBUG [1206]: Closing database connection -- 10:30:26.630 SQL [1206]: pgsql_close() -- 12:29:50.343 INFO [1238]: COREGRADE is starting... -- 12:29:50.343 INFO [1238]: Version from config: 1.0 -- 12:29:50.343 DEBUG [1238]: Connecting to database... -- 12:29:50.343 DEBUG [1238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:50.343 SQL [1238]: pgsql_db_connect() -- 12:29:50.390 INFO [1238]: COREGRADE is starting... -- 12:29:50.391 INFO [1238]: Version from config: 1.0 -- 12:29:50.391 DEBUG [1238]: Connecting to database... -- 12:29:50.391 DEBUG [1238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:50.391 SQL [1238]: pgsql_db_connect() -- 12:29:50.395 DEBUG [1238]: Database connection successful -- 12:29:50.395 INFO [1238]: _SERVER found -- 12:29:50.395 INFO [1238]: REMOTE_ADDR = 192.168.1.13 -- 12:29:50.395 INFO [1238]: SERVER_NAME = oameye.works.coregrade.com -- 12:29:50.395 INFO [1238]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628 -- 12:29:50.395 INFO [1238]: QUERY_STRING = -- 12:29:50.395 INFO [1238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:29:50.395 INFO [1238]: SystemStatus()09-09-********~************ -- 12:29:50.395 INFO [1238]: long coregrade_api_main(CVars in, CVars &out) -- 12:29:50.395 INFO [1238]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 12:29:50.395 INFO [1238]: account calls -- 12:29:50.395 INFO [1238]: account_calls() -- 12:29:50.395 INFO [1238]: LoginCoreGradeAccount() -- 12:29:50.395 FLOG_MAX [1238]: REQ_STRING(username) -- 12:29:50.395 FLOG_MAX [1238]: REQ_STRING(password) -- 12:29:50.395 FLOG_MAX [1238]: REQ_STRING(sessionid) -- 12:29:50.395 FLOG_MAX [1238]: long load_db_record( CVars &rec, const char * query, ... ) -- 12:29:50.395 SQL [1238]: pgsql_query() -- 12:29:50.395 SQL [1238]: About to run query: -- 12:29:50.395 SQL [1238]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 12:29:50.399 SQL [1238]: Found rows: 1 -- 12:29:50.399 FLOG_MAX [1238]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 12:29:50.399 INFO [1238]: long SessionCheck(long uid, const char *sessionid, int create ) -- 12:29:50.399 SQL [1238]: pgsql_exec() -- 12:29:50.399 SQL [1238]: About to run query: -- 12:29:50.399 SQL [1238]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 12:29:50.400 SQL [1238]: PQcmdTuples: 1 -- 12:29:50.400 SQL [1238]: Affected rows: 1 -- 12:29:50.400 SQL [1238]: pgsql_exec() -- 12:29:50.401 SQL [1238]: About to run query: -- 12:29:50.401 SQL [1238]: DELETE FROM members_session WHERE member_id=5 -- 12:29:50.401 SQL [1238]: PQcmdTuples: 0 -- 12:29:50.401 SQL [1238]: Affected rows: 0 -- 12:29:50.401 SQL [1238]: pgsql_query() -- 12:29:50.401 SQL [1238]: About to run query: -- 12:29:50.401 SQL [1238]: SELECT * FROM members_session WHERE member_id=5 AND session<>'FCE42FF56BE321EA2A2A05AE41D14181' -- 12:29:50.401 SQL [1238]: Found rows: 0 -- 12:29:50.402 SQL [1238]: Found rows: 0 -- 12:29:50.402 FLOG_MAX [1238]: long load_db_record( CVars &rec, const char * query, ... ) -- 12:29:50.402 SQL [1238]: pgsql_query() -- 12:29:50.402 SQL [1238]: About to run query: -- 12:29:50.402 SQL [1238]: SELECT * FROM members_session WHERE member_id=5 AND session='FCE42FF56BE321EA2A2A05AE41D14181' -- 12:29:50.402 SQL [1238]: Found rows: 0 -- 12:29:50.402 SQL [1238]: Found rows: 0 -- 12:29:50.402 FLOG_MAX [1238]: insert_db_record() -- 12:29:50.402 SQL [1238]: pgsql_exec() -- 12:29:50.402 SQL [1238]: About to run query: -- 12:29:50.402 SQL [1238]: INSERT INTO members_session (member_id,session) VALUES ('5','FCE42FF56BE321EA2A2A05AE41D14181') -- 12:29:50.404 SQL [1238]: PQcmdTuples: 1 -- 12:29:50.404 SQL [1238]: Affected rows: 1 -- 12:29:50.404 FLOG_MAX [1238]: SELECT currval('members_session_id_seq') -- 12:29:50.404 SQL [1238]: pgsql_query() -- 12:29:50.404 SQL [1238]: About to run query: -- 12:29:50.404 SQL [1238]: SELECT currval('members_session_id_seq') -- 12:29:50.404 SQL [1238]: Found rows: 1 -- 12:29:50.404 INFO [1238]: CreateDefaultPage() -- 12:29:50.404 FLOG_MAX [1238]: long load_db_record( CVars &rec, const char * query, ... ) -- 12:29:50.404 SQL [1238]: pgsql_query() -- 12:29:50.404 SQL [1238]: About to run query: -- 12:29:50.404 SQL [1238]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 12:29:50.404 SQL [1238]: Found rows: 1 -- 12:29:50.404 FLOG_MAX [1238]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 12:29:50.404 SQL [1238]: pgsql_query() -- 12:29:50.404 SQL [1238]: About to run query: -- 12:29:50.404 SQL [1238]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 12:29:50.405 SQL [1238]: Found rows: 1 -- 12:29:50.405 INFO [1238]: /CreateDefaultPage() -- 12:29:50.405 INFO [1238]: /LoginCoreGradeAccount() -- 12:29:50.405 INFO [1238]: RET: added=2020-02-05 06:47:23.982154 -- 12:29:50.405 INFO [1238]: RET: email=ameye+11@chiefsoft.com -- 12:29:50.405 INFO [1238]: RET: firstname=Olu -- 12:29:50.405 INFO [1238]: RET: id=5 -- 12:29:50.405 INFO [1238]: RET: last_login= -- 12:29:50.405 INFO [1238]: RET: lastname=Amey -- 12:29:50.405 INFO [1238]: RET: loc=192.168.1.13 -- 12:29:50.405 INFO [1238]: RET: member_id=5 -- 12:29:50.405 INFO [1238]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 12:29:50.405 INFO [1238]: RET: phone= -- 12:29:50.405 INFO [1238]: RET: pid= -- 12:29:50.405 INFO [1238]: RET: result=YES I GET TO BACK END -- 12:29:50.405 INFO [1238]: RET: sessionid=FCE42FF56BE321EA2A2A05AE41D14181 -- 12:29:50.405 INFO [1238]: RET: status=1 -- 12:29:50.405 INFO [1238]: RET: stauts=OK -- 12:29:50.405 INFO [1238]: RET: username=ameye+11@chiefsoft.com -- 12:29:50.405 INFO [1238]: RET: verified= -- 12:29:50.407 INFO [1238]: COREGRADE is stopping... -- 12:29:50.407 DEBUG [1238]: Closing database connection -- 12:29:50.407 SQL [1238]: pgsql_close() -- 12:29:50.348 DEBUG [1238]: Database connection successful -- 12:29:50.348 INFO [1238]: _SERVER found -- 12:29:50.348 INFO [1238]: REMOTE_ADDR = 192.168.1.13 -- 12:29:50.348 INFO [1238]: SERVER_NAME = oameye.works.coregrade.com -- 12:29:50.348 INFO [1238]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628 -- 12:29:50.348 INFO [1238]: QUERY_STRING = /auth -- 12:29:50.348 INFO [1238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:29:50.407 INFO [1238]: COREGRADE is stopping... -- 12:29:50.407 DEBUG [1238]: Closing database connection -- 12:29:50.407 SQL [1238]: pgsql_close() -- 12:29:50.423 INFO [1238]: COREGRADE is starting... -- 12:29:50.423 INFO [1238]: Version from config: 1.0 -- 12:29:50.423 DEBUG [1238]: Connecting to database... -- 12:29:50.423 DEBUG [1238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:50.423 SQL [1238]: pgsql_db_connect() -- 12:29:50.427 DEBUG [1238]: Database connection successful -- 12:29:50.427 INFO [1238]: _SERVER found -- 12:29:50.427 INFO [1238]: REMOTE_ADDR = 192.168.1.13 -- 12:29:50.427 INFO [1238]: SERVER_NAME = oameye.works.coregrade.com -- 12:29:50.427 INFO [1238]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=f06vsamv2omih89j5co04a8vguva7pm0 -- 12:29:50.427 INFO [1238]: QUERY_STRING = /member/index -- 12:29:50.427 INFO [1238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:29:50.468 INFO [1238]: COREGRADE is stopping... -- 12:29:50.468 DEBUG [1238]: Closing database connection -- 12:29:50.468 SQL [1238]: pgsql_close() -- 12:29:50.945 INFO [1238]: COREGRADE is starting... -- 12:29:50.945 INFO [1238]: Version from config: 1.0 -- 12:29:50.945 DEBUG [1238]: Connecting to database... -- 12:29:50.945 DEBUG [1238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:50.945 SQL [1238]: pgsql_db_connect() -- 12:29:50.949 DEBUG [1238]: Database connection successful -- 12:29:50.949 INFO [1238]: _SERVER found -- 12:29:50.949 INFO [1238]: REMOTE_ADDR = 192.168.1.13 -- 12:29:50.949 INFO [1238]: SERVER_NAME = oameye.works.coregrade.com -- 12:29:50.949 INFO [1238]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=f06vsamv2omih89j5co04a8vguva7pm0 -- 12:29:50.949 INFO [1238]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:29:50.949 INFO [1238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:29:50.961 INFO [1238]: COREGRADE is stopping... -- 12:29:50.961 DEBUG [1238]: Closing database connection -- 12:29:50.961 SQL [1238]: pgsql_close() -- 12:29:51.157 INFO [1238]: COREGRADE is starting... -- 12:29:51.158 INFO [1238]: Version from config: 1.0 -- 12:29:51.158 DEBUG [1238]: Connecting to database... -- 12:29:51.158 DEBUG [1238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:51.158 SQL [1238]: pgsql_db_connect() -- 12:29:51.162 DEBUG [1238]: Database connection successful -- 12:29:51.162 INFO [1238]: _SERVER found -- 12:29:51.162 INFO [1238]: REMOTE_ADDR = 192.168.1.13 -- 12:29:51.162 INFO [1238]: SERVER_NAME = oameye.works.coregrade.com -- 12:29:51.162 INFO [1238]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=f06vsamv2omih89j5co04a8vguva7pm0 -- 12:29:51.162 INFO [1238]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:29:51.162 INFO [1238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:29:51.173 INFO [1238]: COREGRADE is stopping... -- 12:29:51.173 DEBUG [1238]: Closing database connection -- 12:29:51.173 SQL [1238]: pgsql_close() -- 12:29:54.281 INFO [1238]: COREGRADE is starting... -- 12:29:54.281 INFO [1238]: Version from config: 1.0 -- 12:29:54.281 DEBUG [1238]: Connecting to database... -- 12:29:54.281 DEBUG [1238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:54.281 SQL [1238]: pgsql_db_connect() -- 12:29:54.285 DEBUG [1238]: Database connection successful -- 12:29:54.285 INFO [1238]: _SERVER found -- 12:29:54.285 INFO [1238]: REMOTE_ADDR = 192.168.1.13 -- 12:29:54.285 INFO [1238]: SERVER_NAME = oameye.works.coregrade.com -- 12:29:54.285 INFO [1238]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=f06vsamv2omih89j5co04a8vguva7pm0 -- 12:29:54.285 INFO [1238]: QUERY_STRING = /member/page -- 12:29:54.285 INFO [1238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:29:54.326 INFO [1238]: COREGRADE is stopping... -- 12:29:54.326 DEBUG [1238]: Closing database connection -- 12:29:54.326 SQL [1238]: pgsql_close() -- 12:29:54.454 INFO [1209]: COREGRADE is starting... -- 12:29:54.454 INFO [1209]: Version from config: 1.0 -- 12:29:54.454 DEBUG [1209]: Connecting to database... -- 12:29:54.454 DEBUG [1209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:54.454 SQL [1209]: pgsql_db_connect() -- 12:29:54.458 DEBUG [1209]: Database connection successful -- 12:29:54.458 INFO [1209]: _SERVER found -- 12:29:54.458 INFO [1209]: REMOTE_ADDR = 192.168.1.13 -- 12:29:54.458 INFO [1209]: SERVER_NAME = oameye.works.coregrade.com -- 12:29:54.458 INFO [1209]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=f06vsamv2omih89j5co04a8vguva7pm0 -- 12:29:54.458 INFO [1209]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:29:54.458 INFO [1209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:29:54.473 INFO [1209]: COREGRADE is stopping... -- 12:29:54.473 DEBUG [1209]: Closing database connection -- 12:29:54.473 SQL [1209]: pgsql_close() -- 12:29:54.640 INFO [1208]: COREGRADE is starting... -- 12:29:54.640 INFO [1208]: Version from config: 1.0 -- 12:29:54.640 DEBUG [1208]: Connecting to database... -- 12:29:54.640 DEBUG [1208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:54.640 SQL [1208]: pgsql_db_connect() -- 12:29:54.644 DEBUG [1208]: Database connection successful -- 12:29:54.644 INFO [1208]: _SERVER found -- 12:29:54.644 INFO [1208]: REMOTE_ADDR = 192.168.1.13 -- 12:29:54.644 INFO [1208]: SERVER_NAME = oameye.works.coregrade.com -- 12:29:54.644 INFO [1208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=f06vsamv2omih89j5co04a8vguva7pm0 -- 12:29:54.644 INFO [1208]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:29:54.644 INFO [1208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:29:54.660 INFO [1208]: COREGRADE is stopping... -- 12:29:54.660 DEBUG [1208]: Closing database connection -- 12:29:54.660 SQL [1208]: pgsql_close() -- 12:30:36.688 INFO [1205]: COREGRADE is starting... -- 12:30:36.688 INFO [1205]: Version from config: 1.0 -- 12:30:36.688 DEBUG [1205]: Connecting to database... -- 12:30:36.688 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:30:36.688 SQL [1205]: pgsql_db_connect() -- 12:30:36.692 DEBUG [1205]: Database connection successful -- 12:30:36.692 INFO [1205]: _SERVER found -- 12:30:36.692 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 12:30:36.692 INFO [1205]: SERVER_NAME = oameye.works.coregrade.com -- 12:30:36.692 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=f06vsamv2omih89j5co04a8vguva7pm0 -- 12:30:36.692 INFO [1205]: QUERY_STRING = /member/viewCardAddAction -- 12:30:36.692 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:30:36.731 INFO [1205]: COREGRADE is stopping... -- 12:30:36.731 DEBUG [1205]: Closing database connection -- 12:30:36.731 SQL [1205]: pgsql_close() -- 12:30:36.870 INFO [1205]: COREGRADE is starting... -- 12:30:36.871 INFO [1205]: Version from config: 1.0 -- 12:30:36.871 DEBUG [1205]: Connecting to database... -- 12:30:36.871 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:30:36.871 SQL [1205]: pgsql_db_connect() -- 12:30:36.875 DEBUG [1205]: Database connection successful -- 12:30:36.875 INFO [1205]: _SERVER found -- 12:30:36.875 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 12:30:36.875 INFO [1205]: SERVER_NAME = oameye.works.coregrade.com -- 12:30:36.875 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=f06vsamv2omih89j5co04a8vguva7pm0 -- 12:30:36.875 INFO [1205]: QUERY_STRING = /member/viewCardAddAction -- 12:30:36.875 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:30:36.905 INFO [1205]: COREGRADE is stopping... -- 12:30:36.905 DEBUG [1205]: Closing database connection -- 12:30:36.905 SQL [1205]: pgsql_close() -- 15:09:54.686 INFO [1252]: COREGRADE is starting... -- 15:09:54.686 INFO [1252]: Version from config: 1.0 -- 15:09:54.686 DEBUG [1252]: Connecting to database... -- 15:09:54.686 DEBUG [1252]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:09:54.686 SQL [1252]: pgsql_db_connect() -- 15:09:54.691 DEBUG [1252]: Database connection successful -- 15:09:54.691 INFO [1252]: _SERVER found -- 15:09:54.691 INFO [1252]: REMOTE_ADDR = 192.168.1.13 -- 15:09:54.691 INFO [1252]: SERVER_NAME = oameye.works.coregrade.com -- 15:09:54.691 INFO [1252]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628 -- 15:09:54.691 INFO [1252]: QUERY_STRING = /auth -- 15:09:54.691 INFO [1252]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:09:54.733 INFO [1252]: COREGRADE is stopping... -- 15:09:54.733 DEBUG [1252]: Closing database connection -- 15:09:54.733 SQL [1252]: pgsql_close() -- 15:09:54.864 INFO [1252]: COREGRADE is starting... -- 15:09:54.864 INFO [1252]: Version from config: 1.0 -- 15:09:54.864 DEBUG [1252]: Connecting to database... -- 15:09:54.864 DEBUG [1252]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:09:54.864 SQL [1252]: pgsql_db_connect() -- 15:09:54.868 DEBUG [1252]: Database connection successful -- 15:09:54.868 INFO [1252]: _SERVER found -- 15:09:54.868 INFO [1252]: REMOTE_ADDR = 192.168.1.13 -- 15:09:54.868 INFO [1252]: SERVER_NAME = oameye.works.coregrade.com -- 15:09:54.868 INFO [1252]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=t46lmirjt2htrgl80pn0i6hnj6iliprb -- 15:09:54.868 INFO [1252]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:09:54.868 INFO [1252]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:09:54.879 INFO [1252]: COREGRADE is stopping... -- 15:09:54.879 DEBUG [1252]: Closing database connection -- 15:09:54.879 SQL [1252]: pgsql_close() -- 15:09:55.219 INFO [1207]: COREGRADE is starting... -- 15:09:55.220 INFO [1207]: Version from config: 1.0 -- 15:09:55.220 DEBUG [1207]: Connecting to database... -- 15:09:55.220 DEBUG [1207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:09:55.220 SQL [1207]: pgsql_db_connect() -- 15:09:55.224 DEBUG [1207]: Database connection successful -- 15:09:55.224 INFO [1207]: _SERVER found -- 15:09:55.224 INFO [1207]: REMOTE_ADDR = 192.168.1.13 -- 15:09:55.224 INFO [1207]: SERVER_NAME = oameye.works.coregrade.com -- 15:09:55.224 INFO [1207]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2143530132.1581949628; ci_session=t46lmirjt2htrgl80pn0i6hnj6iliprb -- 15:09:55.224 INFO [1207]: QUERY_STRING = /app-assets/data/locales/en.json -- 15:09:55.224 INFO [1207]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:09:55.238 INFO [1207]: COREGRADE is stopping... -- 15:09:55.238 DEBUG [1207]: Closing database connection -- 15:09:55.238 SQL [1207]: pgsql_close() -- 18:14:23.511 INFO [1376]: COREGRADE is starting... -- 18:14:23.511 INFO [1376]: Version from config: 1.0 -- 18:14:23.511 DEBUG [1376]: Connecting to database... -- 18:14:23.511 DEBUG [1376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:14:23.511 SQL [1376]: pgsql_db_connect() -- 18:14:23.516 DEBUG [1376]: Database connection successful -- 18:14:23.516 INFO [1376]: _SERVER found -- 18:14:23.516 INFO [1376]: REMOTE_ADDR = 192.168.1.13 -- 18:14:23.516 INFO [1376]: SERVER_NAME = oameye.works.coregrade.com -- 18:14:23.516 INFO [1376]: QUERY_STRING = /solr/admin/info/system -- 18:14:23.516 INFO [1376]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 18:14:23.531 INFO [1376]: COREGRADE is stopping... -- 18:14:23.531 DEBUG [1376]: Closing database connection -- 18:14:23.531 SQL [1376]: pgsql_close() -- 18:20:37.359 INFO [1206]: COREGRADE is starting... -- 18:20:37.360 INFO [1206]: Version from config: 1.0 -- 18:20:37.360 DEBUG [1206]: Connecting to database... -- 18:20:37.360 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:20:37.360 SQL [1206]: pgsql_db_connect() -- 18:20:37.364 DEBUG [1206]: Database connection successful -- 18:20:37.364 INFO [1206]: _SERVER found -- 18:20:37.364 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 18:20:37.364 INFO [1206]: SERVER_NAME = oameye.works.coregrade.com -- 18:20:37.364 INFO [1206]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 18:20:37.364 INFO [1206]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 18:20:37.409 INFO [1206]: COREGRADE is stopping... -- 18:20:37.409 DEBUG [1206]: Closing database connection -- 18:20:37.409 SQL [1206]: pgsql_close() -- 18:20:39.273 INFO [1206]: COREGRADE is starting... -- 18:20:39.274 INFO [1206]: Version from config: 1.0 -- 18:20:39.274 DEBUG [1206]: Connecting to database... -- 18:20:39.274 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:20:39.274 SQL [1206]: pgsql_db_connect() -- 18:20:39.278 DEBUG [1206]: Database connection successful -- 18:20:39.278 INFO [1206]: _SERVER found -- 18:20:39.278 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 18:20:39.278 INFO [1206]: SERVER_NAME = oameye.works.coregrade.com -- 18:20:39.278 INFO [1206]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 18:20:39.278 INFO [1206]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 18:20:39.309 INFO [1206]: COREGRADE is stopping... -- 18:20:39.309 DEBUG [1206]: Closing database connection -- 18:20:39.309 SQL [1206]: pgsql_close() -- 18:23:53.244 INFO [1238]: COREGRADE is starting... -- 18:23:53.244 INFO [1238]: Version from config: 1.0 -- 18:23:53.244 DEBUG [1238]: Connecting to database... -- 18:23:53.244 DEBUG [1238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:23:53.244 SQL [1238]: pgsql_db_connect() -- 18:23:53.248 DEBUG [1238]: Database connection successful -- 18:23:53.248 INFO [1238]: _SERVER found -- 18:23:53.248 INFO [1238]: REMOTE_ADDR = 192.168.1.13 -- 18:23:53.248 INFO [1238]: SERVER_NAME = oameye.works.coregrade.com -- 18:23:53.248 INFO [1238]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 18:23:53.248 INFO [1238]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 18:23:53.288 INFO [1238]: COREGRADE is stopping... -- 18:23:53.288 DEBUG [1238]: Closing database connection -- 18:23:53.288 SQL [1238]: pgsql_close() -- 23:05:17.059 INFO [1209]: COREGRADE is starting... -- 23:05:17.060 INFO [1209]: Version from config: 1.0 -- 23:05:17.060 DEBUG [1209]: Connecting to database... -- 23:05:17.060 DEBUG [1209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:05:17.060 SQL [1209]: pgsql_db_connect() -- 23:05:17.065 DEBUG [1209]: Database connection successful -- 23:05:17.065 INFO [1209]: _SERVER found -- 23:05:17.065 INFO [1209]: REMOTE_ADDR = 192.168.1.13 -- 23:05:17.065 INFO [1209]: SERVER_NAME = oameye.works.coregrade.com -- 23:05:17.065 INFO [1209]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 23:05:17.065 INFO [1209]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 23:05:17.080 INFO [1209]: COREGRADE is stopping... -- 23:05:17.080 DEBUG [1209]: Closing database connection -- 23:05:17.080 SQL [1209]: pgsql_close() -- 00:30:35.484 INFO [1208]: COREGRADE is starting... -- 00:30:35.484 INFO [1208]: Version from config: 1.0 -- 00:30:35.484 DEBUG [1208]: Connecting to database... -- 00:30:35.484 DEBUG [1208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:30:35.484 SQL [1208]: pgsql_db_connect() -- 00:30:35.490 DEBUG [1208]: Database connection successful -- 00:30:35.490 INFO [1208]: _SERVER found -- 00:30:35.490 INFO [1208]: REMOTE_ADDR = 192.168.1.13 -- 00:30:35.490 INFO [1208]: SERVER_NAME = oameye.works.coregrade.com -- 00:30:35.490 INFO [1208]: QUERY_STRING = -- 00:30:35.490 INFO [1208]: HTTP_X_FORWARDED_FOR = 104.219.234.53 -- 00:30:35.538 INFO [1208]: COREGRADE is stopping... -- 00:30:35.538 DEBUG [1208]: Closing database connection -- 00:30:35.538 SQL [1208]: pgsql_close() -- 03:01:22.301 INFO [1205]: COREGRADE is starting... -- 03:01:22.301 INFO [1205]: Version from config: 1.0 -- 03:01:22.301 DEBUG [1205]: Connecting to database... -- 03:01:22.301 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:01:22.301 SQL [1205]: pgsql_db_connect() -- 03:01:22.306 DEBUG [1205]: Database connection successful -- 03:01:22.306 INFO [1205]: _SERVER found -- 03:01:22.306 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 03:01:22.306 INFO [1205]: SERVER_NAME = oameye.works.coregrade.com -- 03:01:22.306 INFO [1205]: QUERY_STRING = -- 03:01:22.306 INFO [1205]: HTTP_X_FORWARDED_FOR = 128.14.133.58 -- 03:01:22.352 INFO [1205]: COREGRADE is stopping... -- 03:01:22.352 DEBUG [1205]: Closing database connection -- 03:01:22.352 SQL [1205]: pgsql_close() -- 20:57:36.937 INFO [1252]: COREGRADE is starting... -- 20:57:36.938 INFO [1252]: Version from config: 1.0 -- 20:57:36.938 DEBUG [1252]: Connecting to database... -- 20:57:36.938 DEBUG [1252]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:57:36.938 SQL [1252]: pgsql_db_connect() -- 20:57:36.942 DEBUG [1252]: Database connection successful -- 20:57:36.942 INFO [1252]: _SERVER found -- 20:57:36.942 INFO [1252]: REMOTE_ADDR = 192.168.1.13 -- 20:57:36.942 INFO [1252]: SERVER_NAME = oameye.works.coregrade.com -- 20:57:36.942 INFO [1252]: QUERY_STRING = /solr/admin/info/system -- 20:57:36.942 INFO [1252]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 20:57:36.958 INFO [1252]: COREGRADE is stopping... -- 20:57:36.958 DEBUG [1252]: Closing database connection -- 20:57:36.958 SQL [1252]: pgsql_close() -- 20:59:10.012 INFO [1207]: COREGRADE is starting... -- 20:59:10.012 INFO [1207]: Version from config: 1.0 -- 20:59:10.012 DEBUG [1207]: Connecting to database... -- 20:59:10.012 DEBUG [1207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:59:10.012 SQL [1207]: pgsql_db_connect() -- 20:59:10.017 DEBUG [1207]: Database connection successful -- 20:59:10.017 INFO [1207]: _SERVER found -- 20:59:10.017 INFO [1207]: REMOTE_ADDR = 192.168.1.13 -- 20:59:10.017 INFO [1207]: SERVER_NAME = oameye.works.coregrade.com -- 20:59:10.017 INFO [1207]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 20:59:10.017 INFO [1207]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 20:59:10.057 INFO [1207]: COREGRADE is stopping... -- 20:59:10.058 DEBUG [1207]: Closing database connection -- 20:59:10.058 SQL [1207]: pgsql_close() -- 20:59:11.355 INFO [1207]: COREGRADE is starting... -- 20:59:11.356 INFO [1207]: Version from config: 1.0 -- 20:59:11.356 DEBUG [1207]: Connecting to database... -- 20:59:11.356 DEBUG [1207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:59:11.356 SQL [1207]: pgsql_db_connect() -- 20:59:11.360 DEBUG [1207]: Database connection successful -- 20:59:11.360 INFO [1207]: _SERVER found -- 20:59:11.360 INFO [1207]: REMOTE_ADDR = 192.168.1.13 -- 20:59:11.360 INFO [1207]: SERVER_NAME = oameye.works.coregrade.com -- 20:59:11.360 INFO [1207]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 20:59:11.360 INFO [1207]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 20:59:11.391 INFO [1207]: COREGRADE is stopping... -- 20:59:11.391 DEBUG [1207]: Closing database connection -- 20:59:11.391 SQL [1207]: pgsql_close() -- 20:59:42.333 INFO [1376]: COREGRADE is starting... -- 20:59:42.333 INFO [1376]: Version from config: 1.0 -- 20:59:42.333 DEBUG [1376]: Connecting to database... -- 20:59:42.333 DEBUG [1376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:59:42.333 SQL [1376]: pgsql_db_connect() -- 20:59:42.337 DEBUG [1376]: Database connection successful -- 20:59:42.337 INFO [1376]: _SERVER found -- 20:59:42.337 INFO [1376]: REMOTE_ADDR = 192.168.1.13 -- 20:59:42.338 INFO [1376]: SERVER_NAME = oameye.works.coregrade.com -- 20:59:42.338 INFO [1376]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 20:59:42.338 INFO [1376]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 20:59:42.372 INFO [1376]: COREGRADE is stopping... -- 20:59:42.372 DEBUG [1376]: Closing database connection -- 20:59:42.372 SQL [1376]: pgsql_close() -- 21:14:36.523 INFO [1206]: COREGRADE is starting... -- 21:14:36.524 INFO [1206]: Version from config: 1.0 -- 21:14:36.524 DEBUG [1206]: Connecting to database... -- 21:14:36.524 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:14:36.524 SQL [1206]: pgsql_db_connect() -- 21:14:36.528 DEBUG [1206]: Database connection successful -- 21:14:36.528 INFO [1206]: _SERVER found -- 21:14:36.528 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 21:14:36.528 INFO [1206]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:14:36.528 INFO [1206]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586 -- 21:14:36.528 INFO [1206]: QUERY_STRING = -- 21:14:36.528 INFO [1206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:14:36.567 INFO [1206]: COREGRADE is stopping... -- 21:14:36.567 DEBUG [1206]: Closing database connection -- 21:14:36.567 SQL [1206]: pgsql_close() -- 21:14:37.062 INFO [1238]: COREGRADE is starting... -- 21:14:37.063 INFO [1238]: Version from config: 1.0 -- 21:14:37.063 DEBUG [1238]: Connecting to database... -- 21:14:37.063 DEBUG [1238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:14:37.063 SQL [1238]: pgsql_db_connect() -- 21:14:37.070 INFO [1209]: COREGRADE is starting... -- 21:14:37.071 INFO [1209]: Version from config: 1.0 -- 21:14:37.071 DEBUG [1209]: Connecting to database... -- 21:14:37.071 DEBUG [1209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:14:37.071 SQL [1209]: pgsql_db_connect() -- 21:14:37.067 DEBUG [1238]: Database connection successful -- 21:14:37.067 INFO [1238]: _SERVER found -- 21:14:37.067 INFO [1238]: REMOTE_ADDR = 192.168.1.13 -- 21:14:37.067 INFO [1238]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:14:37.067 INFO [1238]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5 -- 21:14:37.067 INFO [1238]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 21:14:37.067 INFO [1238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:14:37.080 INFO [1238]: COREGRADE is stopping... -- 21:14:37.080 DEBUG [1238]: Closing database connection -- 21:14:37.080 SQL [1238]: pgsql_close() -- 21:14:37.075 DEBUG [1209]: Database connection successful -- 21:14:37.075 INFO [1209]: _SERVER found -- 21:14:37.075 INFO [1209]: REMOTE_ADDR = 192.168.1.13 -- 21:14:37.075 INFO [1209]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:14:37.075 INFO [1209]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5 -- 21:14:37.075 INFO [1209]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:14:37.075 INFO [1209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:14:37.089 INFO [1209]: COREGRADE is stopping... -- 21:14:37.089 DEBUG [1209]: Closing database connection -- 21:14:37.089 SQL [1209]: pgsql_close() -- 21:14:39.210 INFO [1209]: COREGRADE is starting... -- 21:14:39.210 INFO [1209]: Version from config: 1.0 -- 21:14:39.210 DEBUG [1209]: Connecting to database... -- 21:14:39.210 DEBUG [1209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:14:39.210 SQL [1209]: pgsql_db_connect() -- 21:14:39.216 INFO [1238]: COREGRADE is starting... -- 21:14:39.216 INFO [1238]: Version from config: 1.0 -- 21:14:39.216 DEBUG [1238]: Connecting to database... -- 21:14:39.216 DEBUG [1238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:14:39.216 SQL [1238]: pgsql_db_connect() -- 21:14:39.214 DEBUG [1209]: Database connection successful -- 21:14:39.214 INFO [1209]: _SERVER found -- 21:14:39.214 INFO [1209]: REMOTE_ADDR = 192.168.1.13 -- 21:14:39.214 INFO [1209]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:14:39.214 INFO [1209]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:14:39.214 INFO [1209]: QUERY_STRING = /welcome/viewLogin -- 21:14:39.214 INFO [1209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:14:39.249 INFO [1209]: COREGRADE is stopping... -- 21:14:39.249 DEBUG [1209]: Closing database connection -- 21:14:39.249 SQL [1209]: pgsql_close() -- 21:14:39.220 DEBUG [1238]: Database connection successful -- 21:14:39.220 INFO [1238]: _SERVER found -- 21:14:39.220 INFO [1238]: REMOTE_ADDR = 192.168.1.13 -- 21:14:39.220 INFO [1238]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:14:39.220 INFO [1238]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:14:39.220 INFO [1238]: QUERY_STRING = /auth -- 21:14:39.220 INFO [1238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:14:39.252 INFO [1238]: COREGRADE is stopping... -- 21:14:39.252 DEBUG [1238]: Closing database connection -- 21:14:39.252 SQL [1238]: pgsql_close() -- 21:14:39.263 INFO [1238]: COREGRADE is starting... -- 21:14:39.263 INFO [1238]: Version from config: 1.0 -- 21:14:39.263 DEBUG [1238]: Connecting to database... -- 21:14:39.263 DEBUG [1238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:14:39.263 SQL [1238]: pgsql_db_connect() -- 21:14:39.267 DEBUG [1238]: Database connection successful -- 21:14:39.267 INFO [1238]: _SERVER found -- 21:14:39.267 INFO [1238]: REMOTE_ADDR = 192.168.1.13 -- 21:14:39.267 INFO [1238]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:14:39.267 INFO [1238]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:14:39.267 INFO [1238]: QUERY_STRING = /auth/index -- 21:14:39.267 INFO [1238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:14:39.297 INFO [1238]: COREGRADE is stopping... -- 21:14:39.298 DEBUG [1238]: Closing database connection -- 21:14:39.298 SQL [1238]: pgsql_close() -- 21:14:39.488 INFO [1205]: COREGRADE is starting... -- 21:14:39.488 INFO [1205]: Version from config: 1.0 -- 21:14:39.488 DEBUG [1205]: Connecting to database... -- 21:14:39.488 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:14:39.488 SQL [1205]: pgsql_db_connect() -- 21:14:39.492 DEBUG [1205]: Database connection successful -- 21:14:39.492 INFO [1205]: _SERVER found -- 21:14:39.492 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:14:39.492 INFO [1205]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:14:39.492 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:14:39.492 INFO [1205]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:14:39.492 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:14:39.504 INFO [1205]: COREGRADE is stopping... -- 21:14:39.504 DEBUG [1205]: Closing database connection -- 21:14:39.504 SQL [1205]: pgsql_close() -- 21:14:39.664 INFO [1205]: COREGRADE is starting... -- 21:14:39.664 INFO [1205]: Version from config: 1.0 -- 21:14:39.664 DEBUG [1205]: Connecting to database... -- 21:14:39.664 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:14:39.664 SQL [1205]: pgsql_db_connect() -- 21:14:39.668 DEBUG [1205]: Database connection successful -- 21:14:39.668 INFO [1205]: _SERVER found -- 21:14:39.668 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:14:39.668 INFO [1205]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:14:39.668 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:14:39.668 INFO [1205]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:14:39.668 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:14:39.679 INFO [1205]: COREGRADE is stopping... -- 21:14:39.679 DEBUG [1205]: Closing database connection -- 21:14:39.679 SQL [1205]: pgsql_close() -- 21:14:41.143 INFO [1205]: COREGRADE is starting... -- 21:14:41.143 INFO [1205]: Version from config: 1.0 -- 21:14:41.143 DEBUG [1205]: Connecting to database... -- 21:14:41.143 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:14:41.143 SQL [1205]: pgsql_db_connect() -- 21:14:41.147 DEBUG [1205]: Database connection successful -- 21:14:41.147 INFO [1205]: _SERVER found -- 21:14:41.147 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:14:41.147 INFO [1205]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:14:41.147 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:14:41.147 INFO [1205]: QUERY_STRING = /auth -- 21:14:41.147 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:14:41.206 INFO [1205]: COREGRADE is starting... -- 21:14:41.206 INFO [1205]: Version from config: 1.0 -- 21:14:41.206 DEBUG [1205]: Connecting to database... -- 21:14:41.206 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:14:41.206 SQL [1205]: pgsql_db_connect() -- 21:14:41.210 DEBUG [1205]: Database connection successful -- 21:14:41.210 INFO [1205]: _SERVER found -- 21:14:41.210 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:14:41.210 INFO [1205]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:14:41.210 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:14:41.210 INFO [1205]: QUERY_STRING = /member/index -- 21:14:41.210 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:14:41.250 INFO [1205]: COREGRADE is stopping... -- 21:14:41.250 DEBUG [1205]: Closing database connection -- 21:14:41.250 SQL [1205]: pgsql_close() -- 21:14:41.467 INFO [1205]: COREGRADE is starting... -- 21:14:41.467 INFO [1205]: Version from config: 1.0 -- 21:14:41.467 DEBUG [1205]: Connecting to database... -- 21:14:41.467 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:14:41.467 SQL [1205]: pgsql_db_connect() -- 21:14:41.471 DEBUG [1205]: Database connection successful -- 21:14:41.471 INFO [1205]: _SERVER found -- 21:14:41.471 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:14:41.471 INFO [1205]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:14:41.471 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:14:41.471 INFO [1205]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:14:41.471 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:14:41.482 INFO [1205]: COREGRADE is stopping... -- 21:14:41.482 DEBUG [1205]: Closing database connection -- 21:14:41.482 SQL [1205]: pgsql_close() -- 21:14:41.670 INFO [1205]: COREGRADE is starting... -- 21:14:41.671 INFO [1205]: Version from config: 1.0 -- 21:14:41.671 DEBUG [1205]: Connecting to database... -- 21:14:41.671 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:14:41.671 SQL [1205]: pgsql_db_connect() -- 21:14:41.675 DEBUG [1205]: Database connection successful -- 21:14:41.675 INFO [1205]: _SERVER found -- 21:14:41.675 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:14:41.675 INFO [1205]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:14:41.675 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:14:41.675 INFO [1205]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:14:41.675 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:14:41.686 INFO [1205]: COREGRADE is stopping... -- 21:14:41.686 DEBUG [1205]: Closing database connection -- 21:14:41.686 SQL [1205]: pgsql_close() -- 21:15:25.699 INFO [1207]: COREGRADE is starting... -- 21:15:25.699 INFO [1207]: Version from config: 1.0 -- 21:15:25.699 DEBUG [1207]: Connecting to database... -- 21:15:25.699 DEBUG [1207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:15:25.699 SQL [1207]: pgsql_db_connect() -- 21:15:25.703 DEBUG [1207]: Database connection successful -- 21:15:25.703 INFO [1207]: _SERVER found -- 21:15:25.703 INFO [1207]: REMOTE_ADDR = 192.168.1.13 -- 21:15:25.703 INFO [1207]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:15:25.703 INFO [1207]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:15:25.703 INFO [1207]: QUERY_STRING = /auth/logout -- 21:15:25.703 INFO [1207]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:15:25.737 INFO [1207]: COREGRADE is stopping... -- 21:15:25.737 DEBUG [1207]: Closing database connection -- 21:15:25.737 SQL [1207]: pgsql_close() -- 21:15:26.045 INFO [1207]: COREGRADE is starting... -- 21:15:26.045 INFO [1207]: Version from config: 1.0 -- 21:15:26.045 DEBUG [1207]: Connecting to database... -- 21:15:26.045 DEBUG [1207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:15:26.045 SQL [1207]: pgsql_db_connect() -- 21:15:26.049 DEBUG [1207]: Database connection successful -- 21:15:26.049 INFO [1207]: _SERVER found -- 21:15:26.049 INFO [1207]: REMOTE_ADDR = 192.168.1.13 -- 21:15:26.049 INFO [1207]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:15:26.049 INFO [1207]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:15:26.049 INFO [1207]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:15:26.049 INFO [1207]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:15:26.060 INFO [1207]: COREGRADE is stopping... -- 21:15:26.061 DEBUG [1207]: Closing database connection -- 21:15:26.061 SQL [1207]: pgsql_close() -- 21:15:29.043 INFO [1207]: COREGRADE is starting... -- 21:15:29.044 INFO [1207]: Version from config: 1.0 -- 21:15:29.044 DEBUG [1207]: Connecting to database... -- 21:15:29.044 DEBUG [1207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:15:29.044 SQL [1207]: pgsql_db_connect() -- 21:15:29.048 DEBUG [1207]: Database connection successful -- 21:15:29.048 INFO [1207]: _SERVER found -- 21:15:29.048 INFO [1207]: REMOTE_ADDR = 192.168.1.13 -- 21:15:29.048 INFO [1207]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:15:29.048 INFO [1207]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:15:29.048 INFO [1207]: QUERY_STRING = /auth/newuser -- 21:15:29.048 INFO [1207]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:15:29.079 INFO [1207]: COREGRADE is stopping... -- 21:15:29.079 DEBUG [1207]: Closing database connection -- 21:15:29.079 SQL [1207]: pgsql_close() -- 21:15:29.290 INFO [1207]: COREGRADE is starting... -- 21:15:29.290 INFO [1207]: Version from config: 1.0 -- 21:15:29.290 DEBUG [1207]: Connecting to database... -- 21:15:29.290 DEBUG [1207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:15:29.290 SQL [1207]: pgsql_db_connect() -- 21:15:29.294 DEBUG [1207]: Database connection successful -- 21:15:29.294 INFO [1207]: _SERVER found -- 21:15:29.294 INFO [1207]: REMOTE_ADDR = 192.168.1.13 -- 21:15:29.294 INFO [1207]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:15:29.294 INFO [1207]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:15:29.294 INFO [1207]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:15:29.294 INFO [1207]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:15:29.305 INFO [1207]: COREGRADE is stopping... -- 21:15:29.305 DEBUG [1207]: Closing database connection -- 21:15:29.305 SQL [1207]: pgsql_close() -- 21:15:40.218 INFO [1376]: COREGRADE is starting... -- 21:15:40.218 INFO [1376]: Version from config: 1.0 -- 21:15:40.218 DEBUG [1376]: Connecting to database... -- 21:15:40.218 DEBUG [1376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:15:40.218 SQL [1376]: pgsql_db_connect() -- 21:15:40.222 DEBUG [1376]: Database connection successful -- 21:15:40.222 INFO [1376]: _SERVER found -- 21:15:40.222 INFO [1376]: REMOTE_ADDR = 192.168.1.13 -- 21:15:40.222 INFO [1376]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:15:40.222 INFO [1376]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278 -- 21:15:40.222 INFO [1376]: QUERY_STRING = -- 21:15:40.222 INFO [1376]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:15:40.255 INFO [1376]: COREGRADE is stopping... -- 21:15:40.255 DEBUG [1376]: Closing database connection -- 21:15:40.255 SQL [1376]: pgsql_close() -- 21:15:40.523 INFO [1376]: COREGRADE is starting... -- 21:15:40.523 INFO [1376]: Version from config: 1.0 -- 21:15:40.523 DEBUG [1376]: Connecting to database... -- 21:15:40.523 DEBUG [1376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:15:40.523 SQL [1376]: pgsql_db_connect() -- 21:15:40.531 INFO [18380]: COREGRADE is starting... -- 21:15:40.531 INFO [18380]: Version from config: 1.0 -- 21:15:40.531 DEBUG [18380]: Connecting to database... -- 21:15:40.531 DEBUG [18380]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:15:40.531 SQL [18380]: pgsql_db_connect() -- 21:15:40.527 DEBUG [1376]: Database connection successful -- 21:15:40.527 INFO [1376]: _SERVER found -- 21:15:40.527 INFO [1376]: REMOTE_ADDR = 192.168.1.13 -- 21:15:40.527 INFO [1376]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:15:40.527 INFO [1376]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278 -- 21:15:40.527 INFO [1376]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 21:15:40.527 INFO [1376]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:15:40.538 INFO [1376]: COREGRADE is stopping... -- 21:15:40.538 DEBUG [1376]: Closing database connection -- 21:15:40.538 SQL [1376]: pgsql_close() -- 21:15:40.535 DEBUG [18380]: Database connection successful -- 21:15:40.535 INFO [18380]: _SERVER found -- 21:15:40.535 INFO [18380]: REMOTE_ADDR = 192.168.1.13 -- 21:15:40.535 INFO [18380]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:15:40.535 INFO [18380]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278 -- 21:15:40.535 INFO [18380]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:15:40.535 INFO [18380]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:15:40.549 INFO [18380]: COREGRADE is stopping... -- 21:15:40.549 DEBUG [18380]: Closing database connection -- 21:15:40.549 SQL [18380]: pgsql_close() -- 21:15:46.985 INFO [18381]: COREGRADE is starting... -- 21:15:46.985 INFO [18381]: Version from config: 1.0 -- 21:15:46.985 DEBUG [18381]: Connecting to database... -- 21:15:46.985 DEBUG [18381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:15:46.985 SQL [18381]: pgsql_db_connect() -- 21:15:46.989 DEBUG [18381]: Database connection successful -- 21:15:46.989 INFO [18381]: _SERVER found -- 21:15:46.989 INFO [18381]: REMOTE_ADDR = 192.168.1.13 -- 21:15:46.989 INFO [18381]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:15:46.989 INFO [18381]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:15:46.989 INFO [18381]: QUERY_STRING = /home/privacy -- 21:15:46.990 INFO [18381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:15:47.027 INFO [18381]: COREGRADE is stopping... -- 21:15:47.027 DEBUG [18381]: Closing database connection -- 21:15:47.027 SQL [18381]: pgsql_close() -- 21:15:47.359 INFO [18381]: COREGRADE is starting... -- 21:15:47.360 INFO [18381]: Version from config: 1.0 -- 21:15:47.360 DEBUG [18381]: Connecting to database... -- 21:15:47.360 DEBUG [18381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:15:47.360 SQL [18381]: pgsql_db_connect() -- 21:15:47.369 INFO [18382]: COREGRADE is starting... -- 21:15:47.369 INFO [18382]: Version from config: 1.0 -- 21:15:47.369 DEBUG [18382]: Connecting to database... -- 21:15:47.369 DEBUG [18382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:15:47.369 SQL [18382]: pgsql_db_connect() -- 21:15:47.364 DEBUG [18381]: Database connection successful -- 21:15:47.364 INFO [18381]: _SERVER found -- 21:15:47.364 INFO [18381]: REMOTE_ADDR = 192.168.1.13 -- 21:15:47.364 INFO [18381]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:15:47.364 INFO [18381]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:15:47.364 INFO [18381]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:15:47.364 INFO [18381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:15:47.375 INFO [18381]: COREGRADE is stopping... -- 21:15:47.375 DEBUG [18381]: Closing database connection -- 21:15:47.375 SQL [18381]: pgsql_close() -- 21:15:47.373 DEBUG [18382]: Database connection successful -- 21:15:47.373 INFO [18382]: _SERVER found -- 21:15:47.373 INFO [18382]: REMOTE_ADDR = 192.168.1.13 -- 21:15:47.373 INFO [18382]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:15:47.373 INFO [18382]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:15:47.373 INFO [18382]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:15:47.373 INFO [18382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:15:47.387 INFO [18382]: COREGRADE is stopping... -- 21:15:47.387 DEBUG [18382]: Closing database connection -- 21:15:47.387 SQL [18382]: pgsql_close() -- 21:15:49.328 INFO [18382]: COREGRADE is starting... -- 21:15:49.328 INFO [18382]: Version from config: 1.0 -- 21:15:49.328 DEBUG [18382]: Connecting to database... -- 21:15:49.328 DEBUG [18382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:15:49.328 SQL [18382]: pgsql_db_connect() -- 21:15:49.332 DEBUG [18382]: Database connection successful -- 21:15:49.332 INFO [18382]: _SERVER found -- 21:15:49.332 INFO [18382]: REMOTE_ADDR = 192.168.1.13 -- 21:15:49.332 INFO [18382]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:15:49.332 INFO [18382]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:15:49.332 INFO [18382]: QUERY_STRING = -- 21:15:49.333 INFO [18382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:15:49.374 INFO [18382]: COREGRADE is stopping... -- 21:15:49.374 DEBUG [18382]: Closing database connection -- 21:15:49.374 SQL [18382]: pgsql_close() -- 21:15:49.586 INFO [18382]: COREGRADE is starting... -- 21:15:49.587 INFO [18382]: Version from config: 1.0 -- 21:15:49.587 DEBUG [18382]: Connecting to database... -- 21:15:49.587 DEBUG [18382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:15:49.587 SQL [18382]: pgsql_db_connect() -- 21:15:49.594 INFO [18381]: COREGRADE is starting... -- 21:15:49.594 INFO [18381]: Version from config: 1.0 -- 21:15:49.594 DEBUG [18381]: Connecting to database... -- 21:15:49.594 DEBUG [18381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:15:49.594 SQL [18381]: pgsql_db_connect() -- 21:15:49.590 DEBUG [18382]: Database connection successful -- 21:15:49.591 INFO [18382]: _SERVER found -- 21:15:49.591 INFO [18382]: REMOTE_ADDR = 192.168.1.13 -- 21:15:49.591 INFO [18382]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:15:49.591 INFO [18382]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:15:49.591 INFO [18382]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 21:15:49.591 INFO [18382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:15:49.602 INFO [18382]: COREGRADE is stopping... -- 21:15:49.602 DEBUG [18382]: Closing database connection -- 21:15:49.602 SQL [18382]: pgsql_close() -- 21:15:49.598 DEBUG [18381]: Database connection successful -- 21:15:49.598 INFO [18381]: _SERVER found -- 21:15:49.598 INFO [18381]: REMOTE_ADDR = 192.168.1.13 -- 21:15:49.598 INFO [18381]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:15:49.598 INFO [18381]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:15:49.598 INFO [18381]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:15:49.598 INFO [18381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:15:49.609 INFO [18381]: COREGRADE is stopping... -- 21:15:49.609 DEBUG [18381]: Closing database connection -- 21:15:49.609 SQL [18381]: pgsql_close() -- 21:15:52.716 INFO [18381]: COREGRADE is starting... -- 21:15:52.717 INFO [18381]: Version from config: 1.0 -- 21:15:52.717 DEBUG [18381]: Connecting to database... -- 21:15:52.717 DEBUG [18381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:15:52.717 SQL [18381]: pgsql_db_connect() -- 21:15:52.721 DEBUG [18381]: Database connection successful -- 21:15:52.721 INFO [18381]: _SERVER found -- 21:15:52.721 INFO [18381]: REMOTE_ADDR = 192.168.1.13 -- 21:15:52.721 INFO [18381]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:15:52.721 INFO [18381]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:15:52.721 INFO [18381]: QUERY_STRING = /home/terms -- 21:15:52.721 INFO [18381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:15:52.753 INFO [18381]: COREGRADE is stopping... -- 21:15:52.753 DEBUG [18381]: Closing database connection -- 21:15:52.753 SQL [18381]: pgsql_close() -- 21:15:52.983 INFO [18381]: COREGRADE is starting... -- 21:15:52.983 INFO [18381]: Version from config: 1.0 -- 21:15:52.983 DEBUG [18381]: Connecting to database... -- 21:15:52.983 DEBUG [18381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:15:52.983 SQL [18381]: pgsql_db_connect() -- 21:15:52.987 DEBUG [18381]: Database connection successful -- 21:15:52.987 INFO [18381]: _SERVER found -- 21:15:52.987 INFO [18381]: REMOTE_ADDR = 192.168.1.13 -- 21:15:52.987 INFO [18381]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:15:52.987 INFO [18381]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:15:52.987 INFO [18381]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:15:52.987 INFO [18381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:15:52.998 INFO [18381]: COREGRADE is stopping... -- 21:15:52.998 DEBUG [18381]: Closing database connection -- 21:15:52.998 SQL [18381]: pgsql_close() -- 21:15:53.007 INFO [18381]: COREGRADE is starting... -- 21:15:53.008 INFO [18381]: Version from config: 1.0 -- 21:15:53.008 DEBUG [18381]: Connecting to database... -- 21:15:53.008 DEBUG [18381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:15:53.008 SQL [18381]: pgsql_db_connect() -- 21:15:53.011 DEBUG [18381]: Database connection successful -- 21:15:53.011 INFO [18381]: _SERVER found -- 21:15:53.011 INFO [18381]: REMOTE_ADDR = 192.168.1.13 -- 21:15:53.011 INFO [18381]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:15:53.011 INFO [18381]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:15:53.011 INFO [18381]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:15:53.011 INFO [18381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:15:53.022 INFO [18381]: COREGRADE is stopping... -- 21:15:53.022 DEBUG [18381]: Closing database connection -- 21:15:53.022 SQL [18381]: pgsql_close() -- 21:16:01.014 INFO [1206]: COREGRADE is starting... -- 21:16:01.015 INFO [1206]: Version from config: 1.0 -- 21:16:01.015 DEBUG [1206]: Connecting to database... -- 21:16:01.015 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:01.015 SQL [1206]: pgsql_db_connect() -- 21:16:01.019 DEBUG [1206]: Database connection successful -- 21:16:01.019 INFO [1206]: _SERVER found -- 21:16:01.019 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 21:16:01.019 INFO [1206]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:16:01.019 INFO [1206]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:16:01.019 INFO [1206]: QUERY_STRING = -- 21:16:01.019 INFO [1206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:01.050 INFO [1206]: COREGRADE is stopping... -- 21:16:01.050 DEBUG [1206]: Closing database connection -- 21:16:01.050 SQL [1206]: pgsql_close() -- 21:16:03.634 INFO [1206]: COREGRADE is starting... -- 21:16:03.634 INFO [1206]: Version from config: 1.0 -- 21:16:03.634 DEBUG [1206]: Connecting to database... -- 21:16:03.634 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:03.634 SQL [1206]: pgsql_db_connect() -- 21:16:03.639 DEBUG [1206]: Database connection successful -- 21:16:03.639 INFO [1206]: _SERVER found -- 21:16:03.639 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 21:16:03.639 INFO [1206]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:16:03.639 INFO [1206]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:16:03.639 INFO [1206]: QUERY_STRING = /home/security -- 21:16:03.639 INFO [1206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:03.670 INFO [1206]: COREGRADE is stopping... -- 21:16:03.670 DEBUG [1206]: Closing database connection -- 21:16:03.670 SQL [1206]: pgsql_close() -- 21:16:03.961 INFO [1206]: COREGRADE is starting... -- 21:16:03.961 INFO [1206]: Version from config: 1.0 -- 21:16:03.961 DEBUG [1206]: Connecting to database... -- 21:16:03.961 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:03.961 SQL [1206]: pgsql_db_connect() -- 21:16:03.972 INFO [1208]: COREGRADE is starting... -- 21:16:03.972 INFO [1208]: Version from config: 1.0 -- 21:16:03.972 DEBUG [1208]: Connecting to database... -- 21:16:03.972 DEBUG [1208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:03.972 SQL [1208]: pgsql_db_connect() -- 21:16:03.965 DEBUG [1206]: Database connection successful -- 21:16:03.965 INFO [1206]: _SERVER found -- 21:16:03.965 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 21:16:03.965 INFO [1206]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:16:03.965 INFO [1206]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:16:03.965 INFO [1206]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:16:03.965 INFO [1206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:03.977 INFO [1206]: COREGRADE is stopping... -- 21:16:03.977 DEBUG [1206]: Closing database connection -- 21:16:03.977 SQL [1206]: pgsql_close() -- 21:16:03.976 DEBUG [1208]: Database connection successful -- 21:16:03.976 INFO [1208]: _SERVER found -- 21:16:03.976 INFO [1208]: REMOTE_ADDR = 192.168.1.13 -- 21:16:03.976 INFO [1208]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:16:03.976 INFO [1208]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:16:03.976 INFO [1208]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:16:03.976 INFO [1208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:03.988 INFO [1208]: COREGRADE is stopping... -- 21:16:03.988 DEBUG [1208]: Closing database connection -- 21:16:03.988 SQL [1208]: pgsql_close() -- 21:16:05.572 INFO [1208]: COREGRADE is starting... -- 21:16:05.573 INFO [1208]: Version from config: 1.0 -- 21:16:05.573 DEBUG [1208]: Connecting to database... -- 21:16:05.573 DEBUG [1208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:05.573 SQL [1208]: pgsql_db_connect() -- 21:16:05.577 DEBUG [1208]: Database connection successful -- 21:16:05.577 INFO [1208]: _SERVER found -- 21:16:05.577 INFO [1208]: REMOTE_ADDR = 192.168.1.13 -- 21:16:05.577 INFO [1208]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:16:05.577 INFO [1208]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:16:05.577 INFO [1208]: QUERY_STRING = -- 21:16:05.577 INFO [1208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:05.609 INFO [1208]: COREGRADE is stopping... -- 21:16:05.609 DEBUG [1208]: Closing database connection -- 21:16:05.609 SQL [1208]: pgsql_close() -- 21:16:05.791 INFO [1206]: COREGRADE is starting... -- 21:16:05.791 INFO [1208]: COREGRADE is starting... -- 21:16:05.791 INFO [1208]: Version from config: 1.0 -- 21:16:05.791 DEBUG [1208]: Connecting to database... -- 21:16:05.791 INFO [1206]: Version from config: 1.0 -- 21:16:05.791 DEBUG [1206]: Connecting to database... -- 21:16:05.791 DEBUG [1208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:05.791 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:05.791 SQL [1208]: pgsql_db_connect() -- 21:16:05.791 SQL [1206]: pgsql_db_connect() -- 21:16:05.795 DEBUG [1208]: Database connection successful -- 21:16:05.795 INFO [1208]: _SERVER found -- 21:16:05.795 INFO [1208]: REMOTE_ADDR = 192.168.1.13 -- 21:16:05.795 INFO [1208]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:16:05.795 INFO [1208]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:16:05.795 INFO [1208]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 21:16:05.795 INFO [1208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:05.806 INFO [1208]: COREGRADE is stopping... -- 21:16:05.795 DEBUG [1206]: Database connection successful -- 21:16:05.795 INFO [1206]: _SERVER found -- 21:16:05.795 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 21:16:05.795 INFO [1206]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:16:05.795 INFO [1206]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:16:05.795 INFO [1206]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:16:05.795 INFO [1206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:05.806 INFO [1206]: COREGRADE is stopping... -- 21:16:05.806 DEBUG [1208]: Closing database connection -- 21:16:05.806 DEBUG [1206]: Closing database connection -- 21:16:05.806 SQL [1208]: pgsql_close() -- 21:16:05.806 SQL [1206]: pgsql_close() -- 21:16:36.696 INFO [1209]: COREGRADE is starting... -- 21:16:36.696 INFO [1209]: Version from config: 1.0 -- 21:16:36.696 DEBUG [1209]: Connecting to database... -- 21:16:36.696 DEBUG [1209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:36.696 SQL [1209]: pgsql_db_connect() -- 21:16:36.702 INFO [1238]: COREGRADE is starting... -- 21:16:36.702 INFO [1238]: Version from config: 1.0 -- 21:16:36.702 DEBUG [1238]: Connecting to database... -- 21:16:36.702 DEBUG [1238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:36.702 SQL [1238]: pgsql_db_connect() -- 21:16:36.700 DEBUG [1209]: Database connection successful -- 21:16:36.700 INFO [1209]: _SERVER found -- 21:16:36.700 INFO [1209]: REMOTE_ADDR = 192.168.1.13 -- 21:16:36.700 INFO [1209]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:16:36.700 INFO [1209]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:16:36.700 INFO [1209]: QUERY_STRING = /auth -- 21:16:36.700 INFO [1209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:36.733 INFO [1209]: COREGRADE is stopping... -- 21:16:36.733 DEBUG [1209]: Closing database connection -- 21:16:36.733 SQL [1209]: pgsql_close() -- 21:16:36.706 DEBUG [1238]: Database connection successful -- 21:16:36.706 INFO [1238]: _SERVER found -- 21:16:36.706 INFO [1238]: REMOTE_ADDR = 192.168.1.13 -- 21:16:36.706 INFO [1238]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:16:36.706 INFO [1238]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:16:36.706 INFO [1238]: QUERY_STRING = /welcome/viewLogin -- 21:16:36.706 INFO [1238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:36.736 INFO [1238]: COREGRADE is stopping... -- 21:16:36.736 DEBUG [1238]: Closing database connection -- 21:16:36.736 SQL [1238]: pgsql_close() -- 21:16:37.177 INFO [1238]: COREGRADE is starting... -- 21:16:37.177 INFO [1238]: Version from config: 1.0 -- 21:16:37.177 DEBUG [1238]: Connecting to database... -- 21:16:37.177 DEBUG [1238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:37.177 SQL [1238]: pgsql_db_connect() -- 21:16:37.187 INFO [1209]: COREGRADE is starting... -- 21:16:37.187 INFO [1209]: Version from config: 1.0 -- 21:16:37.187 DEBUG [1209]: Connecting to database... -- 21:16:37.187 DEBUG [1209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:37.187 SQL [1209]: pgsql_db_connect() -- 21:16:37.181 DEBUG [1238]: Database connection successful -- 21:16:37.181 INFO [1238]: _SERVER found -- 21:16:37.181 INFO [1238]: REMOTE_ADDR = 192.168.1.13 -- 21:16:37.181 INFO [1238]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:16:37.181 INFO [1238]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:16:37.181 INFO [1238]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:16:37.181 INFO [1238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:37.192 INFO [1238]: COREGRADE is stopping... -- 21:16:37.192 DEBUG [1238]: Closing database connection -- 21:16:37.192 SQL [1238]: pgsql_close() -- 21:16:37.191 DEBUG [1209]: Database connection successful -- 21:16:37.191 INFO [1209]: _SERVER found -- 21:16:37.191 INFO [1209]: REMOTE_ADDR = 192.168.1.13 -- 21:16:37.191 INFO [1209]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:16:37.191 INFO [1209]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:16:37.191 INFO [1209]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:16:37.191 INFO [1209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:37.202 INFO [1209]: COREGRADE is stopping... -- 21:16:37.202 DEBUG [1209]: Closing database connection -- 21:16:37.202 SQL [1209]: pgsql_close() -- 21:16:38.618 INFO [1209]: COREGRADE is starting... -- 21:16:38.618 INFO [1209]: Version from config: 1.0 -- 21:16:38.618 DEBUG [1209]: Connecting to database... -- 21:16:38.618 DEBUG [1209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:38.618 SQL [1209]: pgsql_db_connect() -- 21:16:38.622 DEBUG [1209]: Database connection successful -- 21:16:38.622 INFO [1209]: _SERVER found -- 21:16:38.622 INFO [1209]: REMOTE_ADDR = 192.168.1.13 -- 21:16:38.622 INFO [1209]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:16:38.622 INFO [1209]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:16:38.622 INFO [1209]: QUERY_STRING = /auth -- 21:16:38.622 INFO [1209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:38.688 INFO [1209]: COREGRADE is starting... -- 21:16:38.688 INFO [1209]: Version from config: 1.0 -- 21:16:38.688 DEBUG [1209]: Connecting to database... -- 21:16:38.688 DEBUG [1209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:38.688 SQL [1209]: pgsql_db_connect() -- 21:16:38.692 DEBUG [1209]: Database connection successful -- 21:16:38.692 INFO [1209]: _SERVER found -- 21:16:38.692 INFO [1209]: REMOTE_ADDR = 192.168.1.13 -- 21:16:38.692 INFO [1209]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:16:38.692 INFO [1209]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:16:38.692 INFO [1209]: QUERY_STRING = /member/index -- 21:16:38.692 INFO [1209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:38.732 INFO [1209]: COREGRADE is stopping... -- 21:16:38.732 DEBUG [1209]: Closing database connection -- 21:16:38.732 SQL [1209]: pgsql_close() -- 21:16:39.354 INFO [1209]: COREGRADE is starting... -- 21:16:39.354 INFO [1209]: Version from config: 1.0 -- 21:16:39.354 DEBUG [1209]: Connecting to database... -- 21:16:39.354 DEBUG [1209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:39.354 SQL [1209]: pgsql_db_connect() -- 21:16:39.358 DEBUG [1209]: Database connection successful -- 21:16:39.358 INFO [1209]: _SERVER found -- 21:16:39.358 INFO [1209]: REMOTE_ADDR = 192.168.1.13 -- 21:16:39.358 INFO [1209]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:16:39.358 INFO [1209]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:16:39.358 INFO [1209]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:16:39.358 INFO [1209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:39.370 INFO [1209]: COREGRADE is stopping... -- 21:16:39.370 DEBUG [1209]: Closing database connection -- 21:16:39.370 SQL [1209]: pgsql_close() -- 21:16:39.380 INFO [1209]: COREGRADE is starting... -- 21:16:39.381 INFO [1209]: Version from config: 1.0 -- 21:16:39.381 DEBUG [1209]: Connecting to database... -- 21:16:39.381 DEBUG [1209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:39.381 SQL [1209]: pgsql_db_connect() -- 21:16:39.384 DEBUG [1209]: Database connection successful -- 21:16:39.384 INFO [1209]: _SERVER found -- 21:16:39.384 INFO [1209]: REMOTE_ADDR = 192.168.1.13 -- 21:16:39.384 INFO [1209]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:16:39.384 INFO [1209]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:16:39.384 INFO [1209]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:16:39.384 INFO [1209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:39.396 INFO [1209]: COREGRADE is stopping... -- 21:16:39.396 DEBUG [1209]: Closing database connection -- 21:16:39.396 SQL [1209]: pgsql_close() -- 21:16:40.668 INFO [1209]: COREGRADE is starting... -- 21:16:40.669 INFO [1209]: Version from config: 1.0 -- 21:16:40.669 DEBUG [1209]: Connecting to database... -- 21:16:40.669 DEBUG [1209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:40.669 SQL [1209]: pgsql_db_connect() -- 21:16:40.673 DEBUG [1209]: Database connection successful -- 21:16:40.673 INFO [1209]: _SERVER found -- 21:16:40.673 INFO [1209]: REMOTE_ADDR = 192.168.1.13 -- 21:16:40.673 INFO [1209]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:16:40.673 INFO [1209]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278; _gat_gtag_UA_54829827_2=1 -- 21:16:40.673 INFO [1209]: QUERY_STRING = /member/page -- 21:16:40.673 INFO [1209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:40.715 INFO [1209]: COREGRADE is stopping... -- 21:16:40.715 DEBUG [1209]: Closing database connection -- 21:16:40.715 SQL [1209]: pgsql_close() -- 21:16:40.906 INFO [1209]: COREGRADE is starting... -- 21:16:40.906 INFO [1209]: Version from config: 1.0 -- 21:16:40.906 DEBUG [1209]: Connecting to database... -- 21:16:40.906 DEBUG [1209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:40.906 SQL [1209]: pgsql_db_connect() -- 21:16:40.910 DEBUG [1209]: Database connection successful -- 21:16:40.910 INFO [1209]: _SERVER found -- 21:16:40.910 INFO [1209]: REMOTE_ADDR = 192.168.1.13 -- 21:16:40.910 INFO [1209]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:16:40.910 INFO [1209]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278 -- 21:16:40.910 INFO [1209]: QUERY_STRING = /upload/WhatEthernetCable.mp4 -- 21:16:40.910 INFO [1209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:40.921 INFO [1209]: COREGRADE is stopping... -- 21:16:40.921 DEBUG [1209]: Closing database connection -- 21:16:40.921 SQL [1209]: pgsql_close() -- 21:16:40.928 INFO [1209]: COREGRADE is starting... -- 21:16:40.929 INFO [1209]: Version from config: 1.0 -- 21:16:40.929 DEBUG [1209]: Connecting to database... -- 21:16:40.929 DEBUG [1209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:40.929 SQL [1209]: pgsql_db_connect() -- 21:16:40.932 DEBUG [1209]: Database connection successful -- 21:16:40.932 INFO [1209]: _SERVER found -- 21:16:40.932 INFO [1209]: REMOTE_ADDR = 192.168.1.13 -- 21:16:40.932 INFO [1209]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:16:40.932 INFO [1209]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278 -- 21:16:40.932 INFO [1209]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:16:40.932 INFO [1209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:40.943 INFO [1209]: COREGRADE is stopping... -- 21:16:40.943 DEBUG [1209]: Closing database connection -- 21:16:40.943 SQL [1209]: pgsql_close() -- 21:16:41.079 INFO [1209]: COREGRADE is starting... -- 21:16:41.079 INFO [1209]: Version from config: 1.0 -- 21:16:41.079 DEBUG [1209]: Connecting to database... -- 21:16:41.079 DEBUG [1209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:41.079 SQL [1209]: pgsql_db_connect() -- 21:16:41.083 DEBUG [1209]: Database connection successful -- 21:16:41.083 INFO [1209]: _SERVER found -- 21:16:41.083 INFO [1209]: REMOTE_ADDR = 192.168.1.13 -- 21:16:41.083 INFO [1209]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:16:41.083 INFO [1209]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278 -- 21:16:41.083 INFO [1209]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:16:41.083 INFO [1209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:41.094 INFO [1209]: COREGRADE is stopping... -- 21:16:41.094 DEBUG [1209]: Closing database connection -- 21:16:41.094 SQL [1209]: pgsql_close() -- 21:18:28.141 INFO [1205]: COREGRADE is starting... -- 21:18:28.142 INFO [1205]: Version from config: 1.0 -- 21:18:28.142 DEBUG [1205]: Connecting to database... -- 21:18:28.142 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:18:28.142 SQL [1205]: pgsql_db_connect() -- 21:18:28.146 DEBUG [1205]: Database connection successful -- 21:18:28.146 INFO [1205]: _SERVER found -- 21:18:28.146 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:18:28.146 INFO [1205]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:18:28.146 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278 -- 21:18:28.146 INFO [1205]: QUERY_STRING = /member/page -- 21:18:28.146 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:18:28.189 INFO [1205]: COREGRADE is stopping... -- 21:18:28.189 DEBUG [1205]: Closing database connection -- 21:18:28.189 SQL [1205]: pgsql_close() -- 21:18:28.597 INFO [1205]: COREGRADE is starting... -- 21:18:28.598 INFO [1205]: Version from config: 1.0 -- 21:18:28.598 DEBUG [1205]: Connecting to database... -- 21:18:28.598 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:18:28.598 SQL [1205]: pgsql_db_connect() -- 21:18:28.602 DEBUG [1205]: Database connection successful -- 21:18:28.602 INFO [1205]: _SERVER found -- 21:18:28.602 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:18:28.602 INFO [1205]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:18:28.602 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278 -- 21:18:28.602 INFO [1205]: QUERY_STRING = /upload/WhatEthernetCable.mp4 -- 21:18:28.602 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:18:28.613 INFO [1205]: COREGRADE is stopping... -- 21:18:28.613 DEBUG [1205]: Closing database connection -- 21:18:28.613 SQL [1205]: pgsql_close() -- 21:18:28.651 INFO [1205]: COREGRADE is starting... -- 21:18:28.651 INFO [1205]: Version from config: 1.0 -- 21:18:28.651 DEBUG [1205]: Connecting to database... -- 21:18:28.651 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:18:28.651 SQL [1205]: pgsql_db_connect() -- 21:18:28.655 DEBUG [1205]: Database connection successful -- 21:18:28.655 INFO [1205]: _SERVER found -- 21:18:28.655 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:18:28.655 INFO [1205]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:18:28.655 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278 -- 21:18:28.655 INFO [1205]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:18:28.655 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:18:28.666 INFO [1205]: COREGRADE is stopping... -- 21:18:28.666 DEBUG [1205]: Closing database connection -- 21:18:28.666 SQL [1205]: pgsql_close() -- 21:18:28.896 INFO [1205]: COREGRADE is starting... -- 21:18:28.896 INFO [1205]: Version from config: 1.0 -- 21:18:28.896 DEBUG [1205]: Connecting to database... -- 21:18:28.896 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:18:28.896 SQL [1205]: pgsql_db_connect() -- 21:18:28.900 DEBUG [1205]: Database connection successful -- 21:18:28.900 INFO [1205]: _SERVER found -- 21:18:28.900 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:18:28.900 INFO [1205]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:18:28.900 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278 -- 21:18:28.900 INFO [1205]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:18:28.900 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:18:28.911 INFO [1205]: COREGRADE is stopping... -- 21:18:28.912 DEBUG [1205]: Closing database connection -- 21:18:28.912 SQL [1205]: pgsql_close() -- 21:18:31.014 INFO [1205]: COREGRADE is starting... -- 21:18:31.014 INFO [1205]: Version from config: 1.0 -- 21:18:31.014 DEBUG [1205]: Connecting to database... -- 21:18:31.014 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:18:31.014 SQL [1205]: pgsql_db_connect() -- 21:18:31.018 DEBUG [1205]: Database connection successful -- 21:18:31.018 INFO [1205]: _SERVER found -- 21:18:31.018 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:18:31.018 INFO [1205]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:18:31.018 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278 -- 21:18:31.018 INFO [1205]: QUERY_STRING = /member/configure -- 21:18:31.018 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:18:31.061 INFO [1205]: COREGRADE is stopping... -- 21:18:31.061 DEBUG [1205]: Closing database connection -- 21:18:31.061 SQL [1205]: pgsql_close() -- 21:18:31.340 INFO [1205]: COREGRADE is starting... -- 21:18:31.340 INFO [1205]: Version from config: 1.0 -- 21:18:31.340 DEBUG [1205]: Connecting to database... -- 21:18:31.340 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:18:31.340 SQL [1205]: pgsql_db_connect() -- 21:18:31.347 INFO [1207]: COREGRADE is starting... -- 21:18:31.348 INFO [1207]: Version from config: 1.0 -- 21:18:31.348 DEBUG [1207]: Connecting to database... -- 21:18:31.348 DEBUG [1207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:18:31.348 SQL [1207]: pgsql_db_connect() -- 21:18:31.344 DEBUG [1205]: Database connection successful -- 21:18:31.344 INFO [1205]: _SERVER found -- 21:18:31.344 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:18:31.344 INFO [1205]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:18:31.344 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278 -- 21:18:31.344 INFO [1205]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:18:31.344 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:18:31.356 INFO [1205]: COREGRADE is stopping... -- 21:18:31.356 DEBUG [1205]: Closing database connection -- 21:18:31.356 SQL [1205]: pgsql_close() -- 21:18:31.352 DEBUG [1207]: Database connection successful -- 21:18:31.352 INFO [1207]: _SERVER found -- 21:18:31.352 INFO [1207]: REMOTE_ADDR = 192.168.1.13 -- 21:18:31.352 INFO [1207]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:18:31.352 INFO [1207]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278 -- 21:18:31.352 INFO [1207]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 21:18:31.352 INFO [1207]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:18:31.363 INFO [1207]: COREGRADE is stopping... -- 21:18:31.363 DEBUG [1207]: Closing database connection -- 21:18:31.363 SQL [1207]: pgsql_close() -- 21:18:31.466 INFO [1207]: COREGRADE is starting... -- 21:18:31.467 INFO [1207]: Version from config: 1.0 -- 21:18:31.467 DEBUG [1207]: Connecting to database... -- 21:18:31.467 DEBUG [1207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:18:31.467 SQL [1207]: pgsql_db_connect() -- 21:18:31.471 DEBUG [1207]: Database connection successful -- 21:18:31.471 INFO [1207]: _SERVER found -- 21:18:31.471 INFO [1207]: REMOTE_ADDR = 192.168.1.13 -- 21:18:31.471 INFO [1207]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:18:31.471 INFO [1207]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278 -- 21:18:31.471 INFO [1207]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:18:31.471 INFO [1207]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:18:31.482 INFO [1207]: COREGRADE is stopping... -- 21:18:31.482 DEBUG [1207]: Closing database connection -- 21:18:31.482 SQL [1207]: pgsql_close() -- 21:23:10.100 INFO [18380]: COREGRADE is starting... -- 21:23:10.100 INFO [18380]: Version from config: 1.0 -- 21:23:10.100 DEBUG [18380]: Connecting to database... -- 21:23:10.100 DEBUG [18380]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:10.100 SQL [18380]: pgsql_db_connect() -- 21:23:10.105 DEBUG [18380]: Database connection successful -- 21:23:10.105 INFO [18380]: _SERVER found -- 21:23:10.105 INFO [18380]: REMOTE_ADDR = 192.168.1.13 -- 21:23:10.105 INFO [18380]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:10.105 INFO [18380]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 21:23:10.105 INFO [18380]: QUERY_STRING = -- 21:23:10.105 INFO [18380]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:10.148 INFO [18380]: COREGRADE is stopping... -- 21:23:10.148 DEBUG [18380]: Closing database connection -- 21:23:10.148 SQL [18380]: pgsql_close() -- 21:23:10.797 INFO [18380]: COREGRADE is starting... -- 21:23:10.798 INFO [18380]: Version from config: 1.0 -- 21:23:10.798 DEBUG [18380]: Connecting to database... -- 21:23:10.798 DEBUG [18380]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:10.798 SQL [18380]: pgsql_db_connect() -- 21:23:10.802 DEBUG [18380]: Database connection successful -- 21:23:10.802 INFO [18380]: _SERVER found -- 21:23:10.802 INFO [18380]: REMOTE_ADDR = 192.168.1.13 -- 21:23:10.802 INFO [18380]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:10.802 INFO [18380]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vs2n2kae8r4v3krddet2av9169p7ruf6; _gid=GA1.2.2015242028.1582251791; _gat_gtag_UA_54829827_2=1 -- 21:23:10.802 INFO [18380]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 21:23:10.802 INFO [18380]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:10.813 INFO [18380]: COREGRADE is stopping... -- 21:23:10.813 DEBUG [18380]: Closing database connection -- 21:23:10.813 SQL [18380]: pgsql_close() -- 21:23:10.821 INFO [18380]: COREGRADE is starting... -- 21:23:10.821 INFO [18380]: Version from config: 1.0 -- 21:23:10.821 DEBUG [18380]: Connecting to database... -- 21:23:10.821 DEBUG [18380]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:10.821 SQL [18380]: pgsql_db_connect() -- 21:23:10.825 DEBUG [18380]: Database connection successful -- 21:23:10.825 INFO [18380]: _SERVER found -- 21:23:10.825 INFO [18380]: REMOTE_ADDR = 192.168.1.13 -- 21:23:10.825 INFO [18380]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:10.825 INFO [18380]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vs2n2kae8r4v3krddet2av9169p7ruf6; _gid=GA1.2.2015242028.1582251791; _gat_gtag_UA_54829827_2=1 -- 21:23:10.825 INFO [18380]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:23:10.825 INFO [18380]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:10.837 INFO [18380]: COREGRADE is stopping... -- 21:23:10.837 DEBUG [18380]: Closing database connection -- 21:23:10.837 SQL [18380]: pgsql_close() -- 21:23:13.337 INFO [18380]: COREGRADE is starting... -- 21:23:13.338 INFO [18380]: Version from config: 1.0 -- 21:23:13.338 DEBUG [18380]: Connecting to database... -- 21:23:13.338 DEBUG [18380]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:13.338 SQL [18380]: pgsql_db_connect() -- 21:23:13.341 INFO [1376]: COREGRADE is starting... -- 21:23:13.341 INFO [1376]: Version from config: 1.0 -- 21:23:13.341 DEBUG [1376]: Connecting to database... -- 21:23:13.341 DEBUG [1376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:13.341 SQL [1376]: pgsql_db_connect() -- 21:23:13.342 DEBUG [18380]: Database connection successful -- 21:23:13.342 INFO [18380]: _SERVER found -- 21:23:13.342 INFO [18380]: REMOTE_ADDR = 192.168.1.13 -- 21:23:13.342 INFO [18380]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:13.342 INFO [18380]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vs2n2kae8r4v3krddet2av9169p7ruf6; _gid=GA1.2.2015242028.1582251791; _gat_gtag_UA_54829827_2=1 -- 21:23:13.342 INFO [18380]: QUERY_STRING = /welcome/viewLogin -- 21:23:13.342 INFO [18380]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:13.372 INFO [18380]: COREGRADE is stopping... -- 21:23:13.372 DEBUG [18380]: Closing database connection -- 21:23:13.372 SQL [18380]: pgsql_close() -- 21:23:13.345 DEBUG [1376]: Database connection successful -- 21:23:13.345 INFO [1376]: _SERVER found -- 21:23:13.345 INFO [1376]: REMOTE_ADDR = 192.168.1.13 -- 21:23:13.345 INFO [1376]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:13.345 INFO [1376]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vs2n2kae8r4v3krddet2av9169p7ruf6; _gid=GA1.2.2015242028.1582251791; _gat_gtag_UA_54829827_2=1 -- 21:23:13.345 INFO [1376]: QUERY_STRING = /auth -- 21:23:13.345 INFO [1376]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:13.377 INFO [1376]: COREGRADE is stopping... -- 21:23:13.377 DEBUG [1376]: Closing database connection -- 21:23:13.377 SQL [1376]: pgsql_close() -- 21:23:13.386 INFO [1376]: COREGRADE is starting... -- 21:23:13.386 INFO [1376]: Version from config: 1.0 -- 21:23:13.386 DEBUG [1376]: Connecting to database... -- 21:23:13.386 DEBUG [1376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:13.386 SQL [1376]: pgsql_db_connect() -- 21:23:13.390 DEBUG [1376]: Database connection successful -- 21:23:13.390 INFO [1376]: _SERVER found -- 21:23:13.390 INFO [1376]: REMOTE_ADDR = 192.168.1.13 -- 21:23:13.390 INFO [1376]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:13.390 INFO [1376]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vs2n2kae8r4v3krddet2av9169p7ruf6; _gid=GA1.2.2015242028.1582251791; _gat_gtag_UA_54829827_2=1 -- 21:23:13.390 INFO [1376]: QUERY_STRING = /auth/index -- 21:23:13.390 INFO [1376]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:13.422 INFO [1376]: COREGRADE is stopping... -- 21:23:13.422 DEBUG [1376]: Closing database connection -- 21:23:13.422 SQL [1376]: pgsql_close() -- 21:23:13.541 INFO [1238]: COREGRADE is starting... -- 21:23:13.541 INFO [1238]: Version from config: 1.0 -- 21:23:13.541 DEBUG [1238]: Connecting to database... -- 21:23:13.541 DEBUG [1238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:13.541 SQL [1238]: pgsql_db_connect() -- 21:23:13.545 DEBUG [1238]: Database connection successful -- 21:23:13.545 INFO [1238]: _SERVER found -- 21:23:13.545 INFO [1238]: REMOTE_ADDR = 192.168.1.13 -- 21:23:13.545 INFO [1238]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:13.545 INFO [1238]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vs2n2kae8r4v3krddet2av9169p7ruf6; _gid=GA1.2.2015242028.1582251791; _gat_gtag_UA_54829827_2=1 -- 21:23:13.545 INFO [1238]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:23:13.545 INFO [1238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:13.557 INFO [1238]: COREGRADE is stopping... -- 21:23:13.557 DEBUG [1238]: Closing database connection -- 21:23:13.557 SQL [1238]: pgsql_close() -- 21:23:13.700 INFO [1208]: COREGRADE is starting... -- 21:23:13.700 INFO [1208]: Version from config: 1.0 -- 21:23:13.700 DEBUG [1208]: Connecting to database... -- 21:23:13.700 DEBUG [1208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:13.700 SQL [1208]: pgsql_db_connect() -- 21:23:13.704 DEBUG [1208]: Database connection successful -- 21:23:13.704 INFO [1208]: _SERVER found -- 21:23:13.704 INFO [1208]: REMOTE_ADDR = 192.168.1.13 -- 21:23:13.704 INFO [1208]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:13.704 INFO [1208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vs2n2kae8r4v3krddet2av9169p7ruf6; _gid=GA1.2.2015242028.1582251791; _gat_gtag_UA_54829827_2=1 -- 21:23:13.704 INFO [1208]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:23:13.704 INFO [1208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:13.716 INFO [1208]: COREGRADE is stopping... -- 21:23:13.716 DEBUG [1208]: Closing database connection -- 21:23:13.716 SQL [1208]: pgsql_close() -- 21:23:14.694 INFO [1238]: COREGRADE is starting... -- 21:23:14.695 INFO [1238]: Version from config: 1.0 -- 21:23:14.695 DEBUG [1238]: Connecting to database... -- 21:23:14.695 DEBUG [1238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:14.695 SQL [1238]: pgsql_db_connect() -- 21:23:14.730 INFO [1238]: COREGRADE is starting... -- 21:23:14.730 INFO [1238]: Version from config: 1.0 -- 21:23:14.730 DEBUG [1238]: Connecting to database... -- 21:23:14.730 DEBUG [1238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:14.730 SQL [1238]: pgsql_db_connect() -- 21:23:14.734 DEBUG [1238]: Database connection successful -- 21:23:14.734 INFO [1238]: _SERVER found -- 21:23:14.734 INFO [1238]: REMOTE_ADDR = 192.168.1.13 -- 21:23:14.734 INFO [1238]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:14.734 INFO [1238]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vs2n2kae8r4v3krddet2av9169p7ruf6; _gid=GA1.2.2015242028.1582251791; _gat_gtag_UA_54829827_2=1 -- 21:23:14.734 INFO [1238]: QUERY_STRING = -- 21:23:14.734 INFO [1238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:14.734 INFO [1238]: SystemStatus()09-09-********~************ -- 21:23:14.734 INFO [1238]: long coregrade_api_main(CVars in, CVars &out) -- 21:23:14.734 INFO [1238]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 21:23:14.734 INFO [1238]: account calls -- 21:23:14.734 INFO [1238]: account_calls() -- 21:23:14.734 INFO [1238]: LoginCoreGradeAccount() -- 21:23:14.734 FLOG_MAX [1238]: REQ_STRING(username) -- 21:23:14.734 FLOG_MAX [1238]: REQ_STRING(password) -- 21:23:14.734 FLOG_MAX [1238]: REQ_STRING(sessionid) -- 21:23:14.734 FLOG_MAX [1238]: long load_db_record( CVars &rec, const char * query, ... ) -- 21:23:14.734 SQL [1238]: pgsql_query() -- 21:23:14.734 SQL [1238]: About to run query: -- 21:23:14.734 SQL [1238]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 21:23:14.737 SQL [1238]: Found rows: 1 -- 21:23:14.737 FLOG_MAX [1238]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=15 -- 21:23:14.737 INFO [1238]: long SessionCheck(long uid, const char *sessionid, int create ) -- 21:23:14.737 SQL [1238]: pgsql_exec() -- 21:23:14.737 SQL [1238]: About to run query: -- 21:23:14.737 SQL [1238]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 21:23:14.738 SQL [1238]: PQcmdTuples: 1 -- 21:23:14.738 SQL [1238]: Affected rows: 1 -- 21:23:14.738 SQL [1238]: pgsql_exec() -- 21:23:14.738 SQL [1238]: About to run query: -- 21:23:14.738 SQL [1238]: DELETE FROM members_session WHERE member_id=5 -- 21:23:14.739 SQL [1238]: PQcmdTuples: 0 -- 21:23:14.739 SQL [1238]: Affected rows: 0 -- 21:23:14.739 SQL [1238]: pgsql_query() -- 21:23:14.739 SQL [1238]: About to run query: -- 21:23:14.739 SQL [1238]: SELECT * FROM members_session WHERE member_id=5 AND session<>'C8D8D32FD03C796518242DA47F0C73C3' -- 21:23:14.739 SQL [1238]: Found rows: 0 -- 21:23:14.739 SQL [1238]: Found rows: 0 -- 21:23:14.739 FLOG_MAX [1238]: long load_db_record( CVars &rec, const char * query, ... ) -- 21:23:14.739 SQL [1238]: pgsql_query() -- 21:23:14.739 SQL [1238]: About to run query: -- 21:23:14.739 SQL [1238]: SELECT * FROM members_session WHERE member_id=5 AND session='C8D8D32FD03C796518242DA47F0C73C3' -- 21:23:14.740 SQL [1238]: Found rows: 0 -- 21:23:14.740 SQL [1238]: Found rows: 0 -- 21:23:14.740 FLOG_MAX [1238]: insert_db_record() -- 21:23:14.740 SQL [1238]: pgsql_exec() -- 21:23:14.740 SQL [1238]: About to run query: -- 21:23:14.740 SQL [1238]: INSERT INTO members_session (member_id,session) VALUES ('5','C8D8D32FD03C796518242DA47F0C73C3') -- 21:23:14.741 SQL [1238]: PQcmdTuples: 1 -- 21:23:14.741 SQL [1238]: Affected rows: 1 -- 21:23:14.741 FLOG_MAX [1238]: SELECT currval('members_session_id_seq') -- 21:23:14.741 SQL [1238]: pgsql_query() -- 21:23:14.741 SQL [1238]: About to run query: -- 21:23:14.741 SQL [1238]: SELECT currval('members_session_id_seq') -- 21:23:14.741 SQL [1238]: Found rows: 1 -- 21:23:14.742 INFO [1238]: CreateDefaultPage() -- 21:23:14.742 FLOG_MAX [1238]: long load_db_record( CVars &rec, const char * query, ... ) -- 21:23:14.742 SQL [1238]: pgsql_query() -- 21:23:14.742 SQL [1238]: About to run query: -- 21:23:14.742 SQL [1238]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 21:23:14.742 SQL [1238]: Found rows: 1 -- 21:23:14.742 FLOG_MAX [1238]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 21:23:14.742 SQL [1238]: pgsql_query() -- 21:23:14.742 SQL [1238]: About to run query: -- 21:23:14.742 SQL [1238]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 21:23:14.742 SQL [1238]: Found rows: 1 -- 21:23:14.742 INFO [1238]: /CreateDefaultPage() -- 21:23:14.742 INFO [1238]: /LoginCoreGradeAccount() -- 21:23:14.742 INFO [1238]: RET: added=2020-02-05 06:47:23.982154 -- 21:23:14.742 INFO [1238]: RET: email=ameye+11@chiefsoft.com -- 21:23:14.742 INFO [1238]: RET: firstname=Olu -- 21:23:14.742 INFO [1238]: RET: id=5 -- 21:23:14.742 INFO [1238]: RET: last_login= -- 21:23:14.742 INFO [1238]: RET: lastname=Amey -- 21:23:14.742 INFO [1238]: RET: loc=192.168.1.13 -- 21:23:14.742 INFO [1238]: RET: member_id=5 -- 21:23:14.742 INFO [1238]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 21:23:14.742 INFO [1238]: RET: phone= -- 21:23:14.742 INFO [1238]: RET: pid= -- 21:23:14.742 INFO [1238]: RET: result=YES I GET TO BACK END -- 21:23:14.742 INFO [1238]: RET: sessionid=C8D8D32FD03C796518242DA47F0C73C3 -- 21:23:14.742 INFO [1238]: RET: status=1 -- 21:23:14.742 INFO [1238]: RET: stauts=OK -- 21:23:14.742 INFO [1238]: RET: username=ameye+11@chiefsoft.com -- 21:23:14.742 INFO [1238]: RET: verified= -- 21:23:14.744 INFO [1238]: COREGRADE is stopping... -- 21:23:14.744 DEBUG [1238]: Closing database connection -- 21:23:14.744 SQL [1238]: pgsql_close() -- 21:23:14.699 DEBUG [1238]: Database connection successful -- 21:23:14.699 INFO [1238]: _SERVER found -- 21:23:14.699 INFO [1238]: REMOTE_ADDR = 192.168.1.13 -- 21:23:14.699 INFO [1238]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:14.699 INFO [1238]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vs2n2kae8r4v3krddet2av9169p7ruf6; _gid=GA1.2.2015242028.1582251791; _gat_gtag_UA_54829827_2=1 -- 21:23:14.699 INFO [1238]: QUERY_STRING = /auth -- 21:23:14.699 INFO [1238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:14.744 INFO [1238]: COREGRADE is stopping... -- 21:23:14.744 DEBUG [1238]: Closing database connection -- 21:23:14.744 SQL [1238]: pgsql_close() -- 21:23:14.754 INFO [1238]: COREGRADE is starting... -- 21:23:14.754 INFO [1238]: Version from config: 1.0 -- 21:23:14.754 DEBUG [1238]: Connecting to database... -- 21:23:14.754 DEBUG [1238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:14.754 SQL [1238]: pgsql_db_connect() -- 21:23:14.758 DEBUG [1238]: Database connection successful -- 21:23:14.758 INFO [1238]: _SERVER found -- 21:23:14.758 INFO [1238]: REMOTE_ADDR = 192.168.1.13 -- 21:23:14.758 INFO [1238]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:14.758 INFO [1238]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vs2n2kae8r4v3krddet2av9169p7ruf6; _gid=GA1.2.2015242028.1582251791; _gat_gtag_UA_54829827_2=1 -- 21:23:14.758 INFO [1238]: QUERY_STRING = /member/index -- 21:23:14.758 INFO [1238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:14.797 INFO [1238]: COREGRADE is stopping... -- 21:23:14.797 DEBUG [1238]: Closing database connection -- 21:23:14.797 SQL [1238]: pgsql_close() -- 21:23:14.000 INFO [1208]: COREGRADE is starting... -- 21:23:14.000 INFO [1208]: Version from config: 1.0 -- 21:23:14.000 DEBUG [1208]: Connecting to database... -- 21:23:14.000 DEBUG [1208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:14.000 SQL [1208]: pgsql_db_connect() -- 21:23:15.004 DEBUG [1208]: Database connection successful -- 21:23:15.004 INFO [1208]: _SERVER found -- 21:23:15.004 INFO [1208]: REMOTE_ADDR = 192.168.1.13 -- 21:23:15.004 INFO [1208]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:15.004 INFO [1208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vs2n2kae8r4v3krddet2av9169p7ruf6; _gid=GA1.2.2015242028.1582251791; _gat_gtag_UA_54829827_2=1 -- 21:23:15.004 INFO [1208]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:23:15.004 INFO [1208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:15.015 INFO [1208]: COREGRADE is stopping... -- 21:23:15.015 DEBUG [1208]: Closing database connection -- 21:23:15.015 SQL [1208]: pgsql_close() -- 21:23:15.300 INFO [18382]: COREGRADE is starting... -- 21:23:15.300 INFO [18382]: Version from config: 1.0 -- 21:23:15.300 DEBUG [18382]: Connecting to database... -- 21:23:15.300 DEBUG [18382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:15.300 SQL [18382]: pgsql_db_connect() -- 21:23:15.304 DEBUG [18382]: Database connection successful -- 21:23:15.304 INFO [18382]: _SERVER found -- 21:23:15.304 INFO [18382]: REMOTE_ADDR = 192.168.1.13 -- 21:23:15.304 INFO [18382]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:15.304 INFO [18382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vs2n2kae8r4v3krddet2av9169p7ruf6; _gid=GA1.2.2015242028.1582251791; _gat_gtag_UA_54829827_2=1 -- 21:23:15.304 INFO [18382]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:23:15.304 INFO [18382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:15.315 INFO [18382]: COREGRADE is stopping... -- 21:23:15.315 DEBUG [18382]: Closing database connection -- 21:23:15.316 SQL [18382]: pgsql_close() -- 21:23:16.778 INFO [18382]: COREGRADE is starting... -- 21:23:16.778 INFO [18382]: Version from config: 1.0 -- 21:23:16.778 DEBUG [18382]: Connecting to database... -- 21:23:16.778 DEBUG [18382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:16.778 SQL [18382]: pgsql_db_connect() -- 21:23:16.782 DEBUG [18382]: Database connection successful -- 21:23:16.783 INFO [18382]: _SERVER found -- 21:23:16.783 INFO [18382]: REMOTE_ADDR = 192.168.1.13 -- 21:23:16.783 INFO [18382]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:16.783 INFO [18382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vs2n2kae8r4v3krddet2av9169p7ruf6; _gid=GA1.2.2015242028.1582251791; _gat_gtag_UA_54829827_2=1 -- 21:23:16.783 INFO [18382]: QUERY_STRING = /member/page -- 21:23:16.783 INFO [18382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:16.824 INFO [18382]: COREGRADE is stopping... -- 21:23:16.824 DEBUG [18382]: Closing database connection -- 21:23:16.824 SQL [18382]: pgsql_close() -- 21:23:17.056 INFO [1238]: COREGRADE is starting... -- 21:23:17.056 INFO [1238]: Version from config: 1.0 -- 21:23:17.056 DEBUG [1238]: Connecting to database... -- 21:23:17.056 DEBUG [1238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:17.056 SQL [1238]: pgsql_db_connect() -- 21:23:17.060 DEBUG [1238]: Database connection successful -- 21:23:17.060 INFO [1238]: _SERVER found -- 21:23:17.060 INFO [1238]: REMOTE_ADDR = 192.168.1.13 -- 21:23:17.060 INFO [1238]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:17.060 INFO [1238]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vs2n2kae8r4v3krddet2av9169p7ruf6; _gid=GA1.2.2015242028.1582251791; _gat_gtag_UA_54829827_2=1 -- 21:23:17.060 INFO [1238]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:23:17.060 INFO [1238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:17.072 INFO [1238]: COREGRADE is stopping... -- 21:23:17.072 DEBUG [1238]: Closing database connection -- 21:23:17.072 SQL [1238]: pgsql_close() -- 21:25:17.988 INFO [18506]: COREGRADE is starting... -- 21:25:17.988 INFO [18506]: Version from config: 1.0 -- 21:25:17.988 DEBUG [18506]: Connecting to database... -- 21:25:17.988 DEBUG [18506]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:25:17.988 SQL [18506]: pgsql_db_connect() -- 21:25:17.992 DEBUG [18506]: Database connection successful -- 21:25:17.992 INFO [18506]: _SERVER found -- 21:25:17.992 INFO [18506]: REMOTE_ADDR = 192.168.1.13 -- 21:25:17.992 INFO [18506]: SERVER_NAME = oameye.works.coregrade.com -- 21:25:17.992 INFO [18506]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vs2n2kae8r4v3krddet2av9169p7ruf6; _gid=GA1.2.2015242028.1582251791 -- 21:25:17.992 INFO [18506]: QUERY_STRING = /member/page -- 21:25:17.992 INFO [18506]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:25:18.042 INFO [18506]: COREGRADE is stopping... -- 21:25:18.042 DEBUG [18506]: Closing database connection -- 21:25:18.042 SQL [18506]: pgsql_close() -- 21:25:18.109 INFO [18506]: COREGRADE is starting... -- 21:25:18.110 INFO [18506]: Version from config: 1.0 -- 21:25:18.110 DEBUG [18506]: Connecting to database... -- 21:25:18.110 DEBUG [18506]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:25:18.110 SQL [18506]: pgsql_db_connect() -- 21:25:18.114 DEBUG [18506]: Database connection successful -- 21:25:18.114 INFO [18506]: _SERVER found -- 21:25:18.114 INFO [18506]: REMOTE_ADDR = 192.168.1.13 -- 21:25:18.114 INFO [18506]: SERVER_NAME = oameye.works.coregrade.com -- 21:25:18.114 INFO [18506]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vs2n2kae8r4v3krddet2av9169p7ruf6; _gid=GA1.2.2015242028.1582251791 -- 21:25:18.114 INFO [18506]: QUERY_STRING = /uploads/DV/RaspberryPi/DHT22+Raspberry+Pi+Humidity+Temperature+Sensor+Tutorial.mp4 -- 21:25:18.114 INFO [18506]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:25:18.120 INFO [18506]: COREGRADE is stopping... -- 21:25:18.120 DEBUG [18506]: Closing database connection -- 21:25:18.120 SQL [18506]: pgsql_close() -- 21:25:18.232 INFO [18382]: COREGRADE is starting... -- 21:25:18.232 INFO [18382]: Version from config: 1.0 -- 21:25:18.232 DEBUG [18382]: Connecting to database... -- 21:25:18.232 DEBUG [18382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:25:18.232 SQL [18382]: pgsql_db_connect() -- 21:25:18.236 DEBUG [18382]: Database connection successful -- 21:25:18.236 INFO [18382]: _SERVER found -- 21:25:18.236 INFO [18382]: REMOTE_ADDR = 192.168.1.13 -- 21:25:18.236 INFO [18382]: SERVER_NAME = oameye.works.coregrade.com -- 21:25:18.236 INFO [18382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vs2n2kae8r4v3krddet2av9169p7ruf6; _gid=GA1.2.2015242028.1582251791 -- 21:25:18.236 INFO [18382]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:25:18.236 INFO [18382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:25:18.247 INFO [18382]: COREGRADE is stopping... -- 21:25:18.247 DEBUG [18382]: Closing database connection -- 21:25:18.247 SQL [18382]: pgsql_close() -- 21:25:40.809 INFO [1208]: COREGRADE is starting... -- 21:25:40.809 INFO [1208]: Version from config: 1.0 -- 21:25:40.809 DEBUG [1208]: Connecting to database... -- 21:25:40.809 DEBUG [1208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:25:40.809 SQL [1208]: pgsql_db_connect() -- 21:25:40.813 DEBUG [1208]: Database connection successful -- 21:25:40.813 INFO [1208]: _SERVER found -- 21:25:40.813 INFO [1208]: REMOTE_ADDR = 192.168.1.13 -- 21:25:40.813 INFO [1208]: SERVER_NAME = oameye.works.coregrade.com -- 21:25:40.813 INFO [1208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vs2n2kae8r4v3krddet2av9169p7ruf6; _gid=GA1.2.2015242028.1582251791 -- 21:25:40.813 INFO [1208]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 21:25:40.813 INFO [1208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:25:40.825 INFO [1208]: COREGRADE is stopping... -- 21:25:40.825 DEBUG [1208]: Closing database connection -- 21:25:40.825 SQL [1208]: pgsql_close() -- 21:25:40.840 INFO [1208]: COREGRADE is starting... -- 21:25:40.840 INFO [1208]: Version from config: 1.0 -- 21:25:40.840 DEBUG [1208]: Connecting to database... -- 21:25:40.840 DEBUG [1208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:25:40.840 SQL [1208]: pgsql_db_connect() -- 21:25:40.844 DEBUG [1208]: Database connection successful -- 21:25:40.844 INFO [1208]: _SERVER found -- 21:25:40.844 INFO [1208]: REMOTE_ADDR = 192.168.1.13 -- 21:25:40.844 INFO [1208]: SERVER_NAME = oameye.works.coregrade.com -- 21:25:40.844 INFO [1208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vs2n2kae8r4v3krddet2av9169p7ruf6; _gid=GA1.2.2015242028.1582251791 -- 21:25:40.844 INFO [1208]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 21:25:40.844 INFO [1208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:25:40.855 INFO [1208]: COREGRADE is stopping... -- 21:25:40.855 DEBUG [1208]: Closing database connection -- 21:25:40.855 SQL [1208]: pgsql_close() -- 21:27:00.464 INFO [18380]: COREGRADE is starting... -- 21:27:00.464 INFO [18380]: Version from config: 1.0 -- 21:27:00.464 DEBUG [18380]: Connecting to database... -- 21:27:00.464 DEBUG [18380]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:00.464 SQL [18380]: pgsql_db_connect() -- 21:27:00.468 DEBUG [18380]: Database connection successful -- 21:27:00.468 INFO [18380]: _SERVER found -- 21:27:00.468 INFO [18380]: REMOTE_ADDR = 192.168.1.13 -- 21:27:00.468 INFO [18380]: SERVER_NAME = oameye.works.coregrade.com -- 21:27:00.468 INFO [18380]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vs2n2kae8r4v3krddet2av9169p7ruf6; _gid=GA1.2.2015242028.1582251791 -- 21:27:00.468 INFO [18380]: QUERY_STRING = /member/page -- 21:27:00.468 INFO [18380]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:27:00.511 INFO [18380]: COREGRADE is stopping... -- 21:27:00.511 DEBUG [18380]: Closing database connection -- 21:27:00.511 SQL [18380]: pgsql_close() -- 21:27:00.787 INFO [1376]: COREGRADE is starting... -- 21:27:00.788 INFO [1376]: Version from config: 1.0 -- 21:27:00.788 DEBUG [1376]: Connecting to database... -- 21:27:00.788 DEBUG [1376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:00.788 SQL [1376]: pgsql_db_connect() -- 21:27:00.792 DEBUG [1376]: Database connection successful -- 21:27:00.792 INFO [1376]: _SERVER found -- 21:27:00.792 INFO [1376]: REMOTE_ADDR = 192.168.1.13 -- 21:27:00.792 INFO [1376]: SERVER_NAME = oameye.works.coregrade.com -- 21:27:00.792 INFO [1376]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vs2n2kae8r4v3krddet2av9169p7ruf6; _gid=GA1.2.2015242028.1582251791 -- 21:27:00.792 INFO [1376]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:27:00.792 INFO [1376]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:27:00.803 INFO [1376]: COREGRADE is stopping... -- 21:27:00.803 DEBUG [1376]: Closing database connection -- 21:27:00.803 SQL [1376]: pgsql_close() -- 21:27:01.223 INFO [18381]: COREGRADE is starting... -- 21:27:01.224 INFO [18381]: Version from config: 1.0 -- 21:27:01.224 DEBUG [18381]: Connecting to database... -- 21:27:01.224 DEBUG [18381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:01.224 SQL [18381]: pgsql_db_connect() -- 21:27:01.230 INFO [1206]: COREGRADE is starting... -- 21:27:01.230 INFO [1206]: Version from config: 1.0 -- 21:27:01.230 DEBUG [1206]: Connecting to database... -- 21:27:01.230 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:01.230 SQL [1206]: pgsql_db_connect() -- 21:27:01.228 DEBUG [18381]: Database connection successful -- 21:27:01.228 INFO [18381]: _SERVER found -- 21:27:01.228 INFO [18381]: REMOTE_ADDR = 192.168.1.13 -- 21:27:01.228 INFO [18381]: SERVER_NAME = oameye.works.coregrade.com -- 21:27:01.228 INFO [18381]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vs2n2kae8r4v3krddet2av9169p7ruf6; _gid=GA1.2.2015242028.1582251791 -- 21:27:01.228 INFO [18381]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 21:27:01.228 INFO [18381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:27:01.239 INFO [18381]: COREGRADE is stopping... -- 21:27:01.239 DEBUG [18381]: Closing database connection -- 21:27:01.239 SQL [18381]: pgsql_close() -- 21:27:01.234 DEBUG [1206]: Database connection successful -- 21:27:01.234 INFO [1206]: _SERVER found -- 21:27:01.234 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 21:27:01.234 INFO [1206]: SERVER_NAME = oameye.works.coregrade.com -- 21:27:01.234 INFO [1206]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vs2n2kae8r4v3krddet2av9169p7ruf6; _gid=GA1.2.2015242028.1582251791 -- 21:27:01.234 INFO [1206]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 21:27:01.234 INFO [1206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:27:01.246 INFO [1206]: COREGRADE is stopping... -- 21:27:01.246 DEBUG [1206]: Closing database connection -- 21:27:01.246 SQL [1206]: pgsql_close() -- 21:27:01.284 INFO [1206]: COREGRADE is starting... -- 21:27:01.284 INFO [1206]: Version from config: 1.0 -- 21:27:01.284 DEBUG [1206]: Connecting to database... -- 21:27:01.284 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:01.284 SQL [1206]: pgsql_db_connect() -- 21:27:01.288 DEBUG [1206]: Database connection successful -- 21:27:01.288 INFO [1206]: _SERVER found -- 21:27:01.288 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 21:27:01.288 INFO [1206]: SERVER_NAME = oameye.works.coregrade.com -- 21:27:01.288 INFO [1206]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vs2n2kae8r4v3krddet2av9169p7ruf6; _gid=GA1.2.2015242028.1582251791 -- 21:27:01.288 INFO [1206]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:27:01.288 INFO [1206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:27:01.299 INFO [1206]: COREGRADE is stopping... -- 21:27:01.299 DEBUG [1206]: Closing database connection -- 21:27:01.299 SQL [1206]: pgsql_close() -- 21:27:47.235 INFO [1238]: COREGRADE is starting... -- 21:27:47.235 INFO [1238]: Version from config: 1.0 -- 21:27:47.235 DEBUG [1238]: Connecting to database... -- 21:27:47.235 DEBUG [1238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:47.235 SQL [1238]: pgsql_db_connect() -- 21:27:47.240 DEBUG [1238]: Database connection successful -- 21:27:47.240 INFO [1238]: _SERVER found -- 21:27:47.240 INFO [1238]: REMOTE_ADDR = 192.168.1.13 -- 21:27:47.240 INFO [1238]: SERVER_NAME = oameye.works.coregrade.com -- 21:27:47.240 INFO [1238]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vs2n2kae8r4v3krddet2av9169p7ruf6; _gid=GA1.2.2015242028.1582251791 -- 21:27:47.240 INFO [1238]: QUERY_STRING = /member/page -- 21:27:47.240 INFO [1238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:27:47.282 INFO [1238]: COREGRADE is stopping... -- 21:27:47.282 DEBUG [1238]: Closing database connection -- 21:27:47.282 SQL [1238]: pgsql_close() -- 21:27:47.443 INFO [1209]: COREGRADE is starting... -- 21:27:47.443 INFO [1209]: Version from config: 1.0 -- 21:27:47.443 DEBUG [1209]: Connecting to database... -- 21:27:47.443 DEBUG [1209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:47.443 SQL [1209]: pgsql_db_connect() -- 21:27:47.447 DEBUG [1209]: Database connection successful -- 21:27:47.447 INFO [1209]: _SERVER found -- 21:27:47.447 INFO [1209]: REMOTE_ADDR = 192.168.1.13 -- 21:27:47.447 INFO [1209]: SERVER_NAME = oameye.works.coregrade.com -- 21:27:47.447 INFO [1209]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vs2n2kae8r4v3krddet2av9169p7ruf6; _gid=GA1.2.2015242028.1582251791 -- 21:27:47.447 INFO [1209]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:27:47.447 INFO [1209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:27:47.459 INFO [1209]: COREGRADE is stopping... -- 21:27:47.459 DEBUG [1209]: Closing database connection -- 21:27:47.459 SQL [1209]: pgsql_close() -- 21:27:47.663 INFO [1209]: COREGRADE is starting... -- 21:27:47.664 INFO [1209]: Version from config: 1.0 -- 21:27:47.664 DEBUG [1209]: Connecting to database... -- 21:27:47.664 DEBUG [1209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:47.664 SQL [1209]: pgsql_db_connect() -- 21:27:47.668 DEBUG [1209]: Database connection successful -- 21:27:47.668 INFO [1209]: _SERVER found -- 21:27:47.668 INFO [1209]: REMOTE_ADDR = 192.168.1.13 -- 21:27:47.668 INFO [1209]: SERVER_NAME = oameye.works.coregrade.com -- 21:27:47.668 INFO [1209]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vs2n2kae8r4v3krddet2av9169p7ruf6; _gid=GA1.2.2015242028.1582251791 -- 21:27:47.668 INFO [1209]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:27:47.668 INFO [1209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:27:47.679 INFO [1209]: COREGRADE is stopping... -- 21:27:47.679 DEBUG [1209]: Closing database connection -- 21:27:47.679 SQL [1209]: pgsql_close() -- 21:30:10.118 INFO [1205]: COREGRADE is starting... -- 21:30:10.118 INFO [1205]: Version from config: 1.0 -- 21:30:10.118 DEBUG [1205]: Connecting to database... -- 21:30:10.118 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:30:10.118 SQL [1205]: pgsql_db_connect() -- 21:30:10.122 DEBUG [1205]: Database connection successful -- 21:30:10.122 INFO [1205]: _SERVER found -- 21:30:10.122 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:30:10.122 INFO [1205]: SERVER_NAME = oameye.works.coregrade.com -- 21:30:10.122 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vs2n2kae8r4v3krddet2av9169p7ruf6; _gid=GA1.2.2015242028.1582251791 -- 21:30:10.122 INFO [1205]: QUERY_STRING = /member/page -- 21:30:10.122 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:30:10.166 INFO [1205]: COREGRADE is stopping... -- 21:30:10.166 DEBUG [1205]: Closing database connection -- 21:30:10.166 SQL [1205]: pgsql_close() -- 21:30:10.360 INFO [18506]: COREGRADE is starting... -- 21:30:10.360 INFO [18506]: Version from config: 1.0 -- 21:30:10.360 DEBUG [18506]: Connecting to database... -- 21:30:10.360 DEBUG [18506]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:30:10.360 SQL [18506]: pgsql_db_connect() -- 21:30:10.364 DEBUG [18506]: Database connection successful -- 21:30:10.364 INFO [18506]: _SERVER found -- 21:30:10.364 INFO [18506]: REMOTE_ADDR = 192.168.1.13 -- 21:30:10.364 INFO [18506]: SERVER_NAME = oameye.works.coregrade.com -- 21:30:10.364 INFO [18506]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=sm22nhl7ua4qpifk2jgdvekc3m01p2kf -- 21:30:10.364 INFO [18506]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:30:10.364 INFO [18506]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:30:10.382 INFO [18506]: COREGRADE is stopping... -- 21:30:10.382 DEBUG [18506]: Closing database connection -- 21:30:10.382 SQL [18506]: pgsql_close() -- 21:30:10.570 INFO [18506]: COREGRADE is starting... -- 21:30:10.571 INFO [18506]: Version from config: 1.0 -- 21:30:10.571 DEBUG [18506]: Connecting to database... -- 21:30:10.571 DEBUG [18506]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:30:10.571 SQL [18506]: pgsql_db_connect() -- 21:30:10.575 DEBUG [18506]: Database connection successful -- 21:30:10.575 INFO [18506]: _SERVER found -- 21:30:10.575 INFO [18506]: REMOTE_ADDR = 192.168.1.13 -- 21:30:10.575 INFO [18506]: SERVER_NAME = oameye.works.coregrade.com -- 21:30:10.575 INFO [18506]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=sm22nhl7ua4qpifk2jgdvekc3m01p2kf -- 21:30:10.575 INFO [18506]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:30:10.575 INFO [18506]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:30:10.587 INFO [18506]: COREGRADE is stopping... -- 21:30:10.587 DEBUG [18506]: Closing database connection -- 21:30:10.587 SQL [18506]: pgsql_close() -- 21:30:19.489 INFO [1208]: COREGRADE is starting... -- 21:30:19.489 INFO [1208]: Version from config: 1.0 -- 21:30:19.489 DEBUG [1208]: Connecting to database... -- 21:30:19.489 DEBUG [1208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:30:19.490 SQL [1208]: pgsql_db_connect() -- 21:30:19.494 DEBUG [1208]: Database connection successful -- 21:30:19.494 INFO [1208]: _SERVER found -- 21:30:19.494 INFO [1208]: REMOTE_ADDR = 192.168.1.13 -- 21:30:19.494 INFO [1208]: SERVER_NAME = oameye.works.coregrade.com -- 21:30:19.494 INFO [1208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=sm22nhl7ua4qpifk2jgdvekc3m01p2kf -- 21:30:19.494 INFO [1208]: QUERY_STRING = /member/viewCardAddAction -- 21:30:19.494 INFO [1208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:30:19.526 INFO [1208]: COREGRADE is stopping... -- 21:30:19.526 DEBUG [1208]: Closing database connection -- 21:30:19.526 SQL [1208]: pgsql_close() -- 21:32:25.382 INFO [18380]: COREGRADE is starting... -- 21:32:25.382 INFO [18380]: Version from config: 1.0 -- 21:32:25.382 DEBUG [18380]: Connecting to database... -- 21:32:25.382 DEBUG [18380]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:32:25.382 SQL [18380]: pgsql_db_connect() -- 21:32:25.386 DEBUG [18380]: Database connection successful -- 21:32:25.386 INFO [18380]: _SERVER found -- 21:32:25.386 INFO [18380]: REMOTE_ADDR = 192.168.1.13 -- 21:32:25.386 INFO [18380]: SERVER_NAME = oameye.works.coregrade.com -- 21:32:25.386 INFO [18380]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=sm22nhl7ua4qpifk2jgdvekc3m01p2kf -- 21:32:25.386 INFO [18380]: QUERY_STRING = /member/viewCardAddAction -- 21:32:25.386 INFO [18380]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:32:25.418 INFO [18380]: COREGRADE is stopping... -- 21:32:25.418 DEBUG [18380]: Closing database connection -- 21:32:25.418 SQL [18380]: pgsql_close() -- 21:32:41.616 INFO [1376]: COREGRADE is starting... -- 21:32:41.616 INFO [1376]: Version from config: 1.0 -- 21:32:41.616 DEBUG [1376]: Connecting to database... -- 21:32:41.616 DEBUG [1376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:32:41.616 SQL [1376]: pgsql_db_connect() -- 21:32:41.620 DEBUG [1376]: Database connection successful -- 21:32:41.620 INFO [1376]: _SERVER found -- 21:32:41.620 INFO [1376]: REMOTE_ADDR = 192.168.1.13 -- 21:32:41.620 INFO [1376]: SERVER_NAME = oameye.works.coregrade.com -- 21:32:41.620 INFO [1376]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=sm22nhl7ua4qpifk2jgdvekc3m01p2kf -- 21:32:41.620 INFO [1376]: QUERY_STRING = /member/upload.php -- 21:32:41.620 INFO [1376]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:32:41.632 INFO [1376]: COREGRADE is stopping... -- 21:32:41.632 DEBUG [1376]: Closing database connection -- 21:32:41.632 SQL [1376]: pgsql_close() -- 21:32:43.655 INFO [1376]: COREGRADE is starting... -- 21:32:43.655 INFO [1376]: Version from config: 1.0 -- 21:32:43.655 DEBUG [1376]: Connecting to database... -- 21:32:43.655 DEBUG [1376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:32:43.655 SQL [1376]: pgsql_db_connect() -- 21:32:43.659 DEBUG [1376]: Database connection successful -- 21:32:43.659 INFO [1376]: _SERVER found -- 21:32:43.659 INFO [1376]: REMOTE_ADDR = 192.168.1.13 -- 21:32:43.659 INFO [1376]: SERVER_NAME = oameye.works.coregrade.com -- 21:32:43.659 INFO [1376]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=sm22nhl7ua4qpifk2jgdvekc3m01p2kf -- 21:32:43.659 INFO [1376]: QUERY_STRING = /member/page -- 21:32:43.659 INFO [1376]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:32:43.702 INFO [1376]: COREGRADE is stopping... -- 21:32:43.702 DEBUG [1376]: Closing database connection -- 21:32:43.702 SQL [1376]: pgsql_close() -- 21:32:44.183 INFO [18381]: COREGRADE is starting... -- 21:32:44.183 INFO [18381]: Version from config: 1.0 -- 21:32:44.183 DEBUG [18381]: Connecting to database... -- 21:32:44.183 DEBUG [18381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:32:44.183 SQL [18381]: pgsql_db_connect() -- 21:32:44.187 DEBUG [18381]: Database connection successful -- 21:32:44.187 INFO [18381]: _SERVER found -- 21:32:44.187 INFO [18381]: REMOTE_ADDR = 192.168.1.13 -- 21:32:44.187 INFO [18381]: SERVER_NAME = oameye.works.coregrade.com -- 21:32:44.187 INFO [18381]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=sm22nhl7ua4qpifk2jgdvekc3m01p2kf -- 21:32:44.187 INFO [18381]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:32:44.187 INFO [18381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:32:44.199 INFO [18381]: COREGRADE is stopping... -- 21:32:44.199 DEBUG [18381]: Closing database connection -- 21:32:44.199 SQL [18381]: pgsql_close() -- 21:36:01.719 INFO [1206]: COREGRADE is starting... -- 21:36:01.720 INFO [1206]: Version from config: 1.0 -- 21:36:01.720 DEBUG [1206]: Connecting to database... -- 21:36:01.720 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:36:01.720 SQL [1206]: pgsql_db_connect() -- 21:36:01.724 DEBUG [1206]: Database connection successful -- 21:36:01.724 INFO [1206]: _SERVER found -- 21:36:01.724 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 21:36:01.724 INFO [1206]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:36:01.724 INFO [1206]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=u7ndkc4mirqjl42h6ccsum2qogp7jnl5; _gid=GA1.2.959144218.1582251278 -- 21:36:01.724 INFO [1206]: QUERY_STRING = /member/configure -- 21:36:01.724 INFO [1206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:36:01.772 INFO [1206]: COREGRADE is stopping... -- 21:36:01.772 DEBUG [1206]: Closing database connection -- 21:36:01.772 SQL [1206]: pgsql_close() -- 21:36:02.225 INFO [1206]: COREGRADE is starting... -- 21:36:02.225 INFO [1206]: Version from config: 1.0 -- 21:36:02.225 DEBUG [1206]: Connecting to database... -- 21:36:02.225 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:36:02.225 SQL [1206]: pgsql_db_connect() -- 21:36:02.238 INFO [1209]: COREGRADE is starting... -- 21:36:02.238 INFO [1209]: Version from config: 1.0 -- 21:36:02.238 DEBUG [1209]: Connecting to database... -- 21:36:02.238 DEBUG [1209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:36:02.238 SQL [1209]: pgsql_db_connect() -- 21:36:02.230 DEBUG [1206]: Database connection successful -- 21:36:02.230 INFO [1206]: _SERVER found -- 21:36:02.230 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 21:36:02.230 INFO [1206]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:36:02.230 INFO [1206]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=lour23uuhjhh9g5cjchq0l6u86inavrn -- 21:36:02.230 INFO [1206]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:36:02.230 INFO [1206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:36:02.241 INFO [1206]: COREGRADE is stopping... -- 21:36:02.241 DEBUG [1206]: Closing database connection -- 21:36:02.241 SQL [1206]: pgsql_close() -- 21:36:02.243 DEBUG [1209]: Database connection successful -- 21:36:02.243 INFO [1209]: _SERVER found -- 21:36:02.243 INFO [1209]: REMOTE_ADDR = 192.168.1.13 -- 21:36:02.243 INFO [1209]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:36:02.243 INFO [1209]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=lour23uuhjhh9g5cjchq0l6u86inavrn -- 21:36:02.243 INFO [1209]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 21:36:02.243 INFO [1209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:36:02.255 INFO [1209]: COREGRADE is stopping... -- 21:36:02.255 DEBUG [1209]: Closing database connection -- 21:36:02.255 SQL [1209]: pgsql_close() -- 21:36:02.334 INFO [1209]: COREGRADE is starting... -- 21:36:02.334 INFO [1209]: Version from config: 1.0 -- 21:36:02.334 DEBUG [1209]: Connecting to database... -- 21:36:02.334 DEBUG [1209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:36:02.334 SQL [1209]: pgsql_db_connect() -- 21:36:02.339 DEBUG [1209]: Database connection successful -- 21:36:02.339 INFO [1209]: _SERVER found -- 21:36:02.339 INFO [1209]: REMOTE_ADDR = 192.168.1.13 -- 21:36:02.339 INFO [1209]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:36:02.339 INFO [1209]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=lour23uuhjhh9g5cjchq0l6u86inavrn -- 21:36:02.339 INFO [1209]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:36:02.339 INFO [1209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:36:02.350 INFO [1209]: COREGRADE is stopping... -- 21:36:02.350 DEBUG [1209]: Closing database connection -- 21:36:02.350 SQL [1209]: pgsql_close() -- 21:36:06.350 INFO [1206]: COREGRADE is starting... -- 21:36:06.350 INFO [1206]: Version from config: 1.0 -- 21:36:06.350 DEBUG [1206]: Connecting to database... -- 21:36:06.350 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:36:06.350 SQL [1206]: pgsql_db_connect() -- 21:36:06.355 DEBUG [1206]: Database connection successful -- 21:36:06.355 INFO [1206]: _SERVER found -- 21:36:06.355 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 21:36:06.355 INFO [1206]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:36:06.355 INFO [1206]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=lour23uuhjhh9g5cjchq0l6u86inavrn -- 21:36:06.355 INFO [1206]: QUERY_STRING = /member/configure -- 21:36:06.355 INFO [1206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:36:06.399 INFO [1206]: COREGRADE is stopping... -- 21:36:06.399 DEBUG [1206]: Closing database connection -- 21:36:06.399 SQL [1206]: pgsql_close() -- 21:36:06.769 INFO [1206]: COREGRADE is starting... -- 21:36:06.770 INFO [1206]: Version from config: 1.0 -- 21:36:06.770 DEBUG [1206]: Connecting to database... -- 21:36:06.770 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:36:06.770 SQL [1206]: pgsql_db_connect() -- 21:36:06.775 INFO [1209]: COREGRADE is starting... -- 21:36:06.775 INFO [1209]: Version from config: 1.0 -- 21:36:06.775 DEBUG [1209]: Connecting to database... -- 21:36:06.775 DEBUG [1209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:36:06.775 SQL [1209]: pgsql_db_connect() -- 21:36:06.774 DEBUG [1206]: Database connection successful -- 21:36:06.774 INFO [1206]: _SERVER found -- 21:36:06.774 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 21:36:06.774 INFO [1206]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:36:06.774 INFO [1206]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=lour23uuhjhh9g5cjchq0l6u86inavrn -- 21:36:06.774 INFO [1206]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:36:06.774 INFO [1206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:36:06.786 INFO [1206]: COREGRADE is stopping... -- 21:36:06.786 DEBUG [1206]: Closing database connection -- 21:36:06.786 SQL [1206]: pgsql_close() -- 21:36:06.779 DEBUG [1209]: Database connection successful -- 21:36:06.779 INFO [1209]: _SERVER found -- 21:36:06.779 INFO [1209]: REMOTE_ADDR = 192.168.1.13 -- 21:36:06.779 INFO [1209]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:36:06.779 INFO [1209]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=lour23uuhjhh9g5cjchq0l6u86inavrn -- 21:36:06.779 INFO [1209]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 21:36:06.779 INFO [1209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:36:06.791 INFO [1209]: COREGRADE is stopping... -- 21:36:06.791 DEBUG [1209]: Closing database connection -- 21:36:06.791 SQL [1209]: pgsql_close() -- 21:36:06.900 INFO [1209]: COREGRADE is starting... -- 21:36:06.900 INFO [1209]: Version from config: 1.0 -- 21:36:06.900 DEBUG [1209]: Connecting to database... -- 21:36:06.900 DEBUG [1209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:36:06.900 SQL [1209]: pgsql_db_connect() -- 21:36:06.905 DEBUG [1209]: Database connection successful -- 21:36:06.905 INFO [1209]: _SERVER found -- 21:36:06.905 INFO [1209]: REMOTE_ADDR = 192.168.1.13 -- 21:36:06.905 INFO [1209]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:36:06.905 INFO [1209]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=lour23uuhjhh9g5cjchq0l6u86inavrn -- 21:36:06.905 INFO [1209]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:36:06.905 INFO [1209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:36:06.917 INFO [1209]: COREGRADE is stopping... -- 21:36:06.917 DEBUG [1209]: Closing database connection -- 21:36:06.917 SQL [1209]: pgsql_close() -- 21:36:12.717 INFO [1238]: COREGRADE is starting... -- 21:36:12.717 INFO [1238]: Version from config: 1.0 -- 21:36:12.717 DEBUG [1238]: Connecting to database... -- 21:36:12.717 DEBUG [1238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:36:12.717 SQL [1238]: pgsql_db_connect() -- 21:36:12.722 DEBUG [1238]: Database connection successful -- 21:36:12.722 INFO [1238]: _SERVER found -- 21:36:12.722 INFO [1238]: REMOTE_ADDR = 192.168.1.13 -- 21:36:12.722 INFO [1238]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:36:12.722 INFO [1238]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=lour23uuhjhh9g5cjchq0l6u86inavrn -- 21:36:12.722 INFO [1238]: QUERY_STRING = /member/configure -- 21:36:12.722 INFO [1238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:36:12.767 INFO [1238]: COREGRADE is stopping... -- 21:36:12.767 DEBUG [1238]: Closing database connection -- 21:36:12.767 SQL [1238]: pgsql_close() -- 21:36:13.031 INFO [1238]: COREGRADE is starting... -- 21:36:13.031 INFO [1238]: Version from config: 1.0 -- 21:36:13.031 DEBUG [1238]: Connecting to database... -- 21:36:13.031 DEBUG [1238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:36:13.031 SQL [1238]: pgsql_db_connect() -- 21:36:13.038 INFO [1205]: COREGRADE is starting... -- 21:36:13.039 INFO [1205]: Version from config: 1.0 -- 21:36:13.039 DEBUG [1205]: Connecting to database... -- 21:36:13.039 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:36:13.039 SQL [1205]: pgsql_db_connect() -- 21:36:13.036 DEBUG [1238]: Database connection successful -- 21:36:13.036 INFO [1238]: _SERVER found -- 21:36:13.036 INFO [1238]: REMOTE_ADDR = 192.168.1.13 -- 21:36:13.036 INFO [1238]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:36:13.036 INFO [1238]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=lour23uuhjhh9g5cjchq0l6u86inavrn -- 21:36:13.036 INFO [1238]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:36:13.036 INFO [1238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:36:13.047 INFO [1238]: COREGRADE is stopping... -- 21:36:13.047 DEBUG [1238]: Closing database connection -- 21:36:13.047 SQL [1238]: pgsql_close() -- 21:36:13.043 DEBUG [1205]: Database connection successful -- 21:36:13.043 INFO [1205]: _SERVER found -- 21:36:13.043 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:36:13.043 INFO [1205]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:36:13.043 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=lour23uuhjhh9g5cjchq0l6u86inavrn -- 21:36:13.043 INFO [1205]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 21:36:13.043 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:36:13.055 INFO [1205]: COREGRADE is stopping... -- 21:36:13.055 DEBUG [1205]: Closing database connection -- 21:36:13.055 SQL [1205]: pgsql_close() -- 21:36:13.129 INFO [1205]: COREGRADE is starting... -- 21:36:13.129 INFO [1205]: Version from config: 1.0 -- 21:36:13.129 DEBUG [1205]: Connecting to database... -- 21:36:13.129 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:36:13.129 SQL [1205]: pgsql_db_connect() -- 21:36:13.133 DEBUG [1205]: Database connection successful -- 21:36:13.133 INFO [1205]: _SERVER found -- 21:36:13.133 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:36:13.133 INFO [1205]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:36:13.133 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=lour23uuhjhh9g5cjchq0l6u86inavrn -- 21:36:13.133 INFO [1205]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:36:13.133 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:36:13.145 INFO [1205]: COREGRADE is stopping... -- 21:36:13.145 DEBUG [1205]: Closing database connection -- 21:36:13.145 SQL [1205]: pgsql_close() -- 21:36:16.504 INFO [1205]: COREGRADE is starting... -- 21:36:16.504 INFO [1205]: Version from config: 1.0 -- 21:36:16.504 DEBUG [1205]: Connecting to database... -- 21:36:16.504 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:36:16.504 SQL [1205]: pgsql_db_connect() -- 21:36:16.509 DEBUG [1205]: Database connection successful -- 21:36:16.509 INFO [1205]: _SERVER found -- 21:36:16.509 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:36:16.509 INFO [1205]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:36:16.509 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=lour23uuhjhh9g5cjchq0l6u86inavrn -- 21:36:16.509 INFO [1205]: QUERY_STRING = /member -- 21:36:16.509 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:36:16.550 INFO [1205]: COREGRADE is stopping... -- 21:36:16.551 DEBUG [1205]: Closing database connection -- 21:36:16.551 SQL [1205]: pgsql_close() -- 21:36:17.005 INFO [1205]: COREGRADE is starting... -- 21:36:17.005 INFO [1205]: Version from config: 1.0 -- 21:36:17.005 DEBUG [1205]: Connecting to database... -- 21:36:17.005 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:36:17.005 SQL [1205]: pgsql_db_connect() -- 21:36:17.010 DEBUG [1205]: Database connection successful -- 21:36:17.010 INFO [1205]: _SERVER found -- 21:36:17.010 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:36:17.010 INFO [1205]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:36:17.010 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=lour23uuhjhh9g5cjchq0l6u86inavrn -- 21:36:17.010 INFO [1205]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:36:17.010 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:36:17.021 INFO [1205]: COREGRADE is stopping... -- 21:36:17.021 DEBUG [1205]: Closing database connection -- 21:36:17.021 SQL [1205]: pgsql_close() -- 21:36:19.897 INFO [1205]: COREGRADE is starting... -- 21:36:19.898 INFO [1205]: Version from config: 1.0 -- 21:36:19.898 DEBUG [1205]: Connecting to database... -- 21:36:19.898 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:36:19.898 SQL [1205]: pgsql_db_connect() -- 21:36:19.902 DEBUG [1205]: Database connection successful -- 21:36:19.902 INFO [1205]: _SERVER found -- 21:36:19.902 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:36:19.902 INFO [1205]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:36:19.902 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=lour23uuhjhh9g5cjchq0l6u86inavrn -- 21:36:19.902 INFO [1205]: QUERY_STRING = /member/page -- 21:36:19.902 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:36:19.946 INFO [1205]: COREGRADE is stopping... -- 21:36:19.946 DEBUG [1205]: Closing database connection -- 21:36:19.946 SQL [1205]: pgsql_close() -- 21:36:20.171 INFO [1205]: COREGRADE is starting... -- 21:36:20.171 INFO [1205]: Version from config: 1.0 -- 21:36:20.171 DEBUG [1205]: Connecting to database... -- 21:36:20.171 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:36:20.171 SQL [1205]: pgsql_db_connect() -- 21:36:20.175 DEBUG [1205]: Database connection successful -- 21:36:20.175 INFO [1205]: _SERVER found -- 21:36:20.175 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:36:20.175 INFO [1205]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:36:20.175 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=lour23uuhjhh9g5cjchq0l6u86inavrn -- 21:36:20.175 INFO [1205]: QUERY_STRING = /upload/WhatEthernetCable.mp4 -- 21:36:20.175 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:36:20.187 INFO [1205]: COREGRADE is stopping... -- 21:36:20.187 DEBUG [1205]: Closing database connection -- 21:36:20.187 SQL [1205]: pgsql_close() -- 21:36:20.406 INFO [1205]: COREGRADE is starting... -- 21:36:20.407 INFO [1205]: Version from config: 1.0 -- 21:36:20.407 DEBUG [1205]: Connecting to database... -- 21:36:20.407 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:36:20.407 SQL [1205]: pgsql_db_connect() -- 21:36:20.411 DEBUG [1205]: Database connection successful -- 21:36:20.411 INFO [1205]: _SERVER found -- 21:36:20.411 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:36:20.411 INFO [1205]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:36:20.411 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=lour23uuhjhh9g5cjchq0l6u86inavrn -- 21:36:20.411 INFO [1205]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:36:20.411 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:36:20.423 INFO [1205]: COREGRADE is stopping... -- 21:36:20.423 DEBUG [1205]: Closing database connection -- 21:36:20.423 SQL [1205]: pgsql_close() -- 21:36:22.937 INFO [1205]: COREGRADE is starting... -- 21:36:22.938 INFO [1205]: Version from config: 1.0 -- 21:36:22.938 DEBUG [1205]: Connecting to database... -- 21:36:22.938 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:36:22.938 SQL [1205]: pgsql_db_connect() -- 21:36:22.942 DEBUG [1205]: Database connection successful -- 21:36:22.942 INFO [1205]: _SERVER found -- 21:36:22.942 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:36:22.942 INFO [1205]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:36:22.942 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=lour23uuhjhh9g5cjchq0l6u86inavrn -- 21:36:22.942 INFO [1205]: QUERY_STRING = /member/page -- 21:36:22.942 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:36:22.985 INFO [1205]: COREGRADE is stopping... -- 21:36:22.985 DEBUG [1205]: Closing database connection -- 21:36:22.985 SQL [1205]: pgsql_close() -- 21:36:23.273 INFO [1205]: COREGRADE is starting... -- 21:36:23.274 INFO [1205]: Version from config: 1.0 -- 21:36:23.274 DEBUG [1205]: Connecting to database... -- 21:36:23.274 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:36:23.274 SQL [1205]: pgsql_db_connect() -- 21:36:23.278 DEBUG [1205]: Database connection successful -- 21:36:23.278 INFO [1205]: _SERVER found -- 21:36:23.278 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:36:23.278 INFO [1205]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:36:23.278 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=lour23uuhjhh9g5cjchq0l6u86inavrn -- 21:36:23.278 INFO [1205]: QUERY_STRING = /upload/WhatEthernetCable.mp4 -- 21:36:23.278 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:36:23.290 INFO [1205]: COREGRADE is stopping... -- 21:36:23.290 DEBUG [1205]: Closing database connection -- 21:36:23.290 SQL [1205]: pgsql_close() -- 21:36:23.501 INFO [1205]: COREGRADE is starting... -- 21:36:23.501 INFO [1205]: Version from config: 1.0 -- 21:36:23.501 DEBUG [1205]: Connecting to database... -- 21:36:23.501 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:36:23.501 SQL [1205]: pgsql_db_connect() -- 21:36:23.505 DEBUG [1205]: Database connection successful -- 21:36:23.505 INFO [1205]: _SERVER found -- 21:36:23.505 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:36:23.505 INFO [1205]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:36:23.505 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=lour23uuhjhh9g5cjchq0l6u86inavrn -- 21:36:23.505 INFO [1205]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:36:23.505 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:36:23.517 INFO [1205]: COREGRADE is stopping... -- 21:36:23.517 DEBUG [1205]: Closing database connection -- 21:36:23.517 SQL [1205]: pgsql_close() -- 21:37:07.472 INFO [18382]: COREGRADE is starting... -- 21:37:07.472 INFO [18382]: Version from config: 1.0 -- 21:37:07.472 DEBUG [18382]: Connecting to database... -- 21:37:07.473 DEBUG [18382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:37:07.473 SQL [18382]: pgsql_db_connect() -- 21:37:07.477 DEBUG [18382]: Database connection successful -- 21:37:07.477 INFO [18382]: _SERVER found -- 21:37:07.477 INFO [18382]: REMOTE_ADDR = 192.168.1.13 -- 21:37:07.477 INFO [18382]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:37:07.477 INFO [18382]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=lour23uuhjhh9g5cjchq0l6u86inavrn -- 21:37:07.477 INFO [18382]: QUERY_STRING = /member/page -- 21:37:07.477 INFO [18382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:37:07.521 INFO [18382]: COREGRADE is stopping... -- 21:37:07.521 DEBUG [18382]: Closing database connection -- 21:37:07.521 SQL [18382]: pgsql_close() -- 21:37:08.094 INFO [18380]: COREGRADE is starting... -- 21:37:08.094 INFO [18380]: Version from config: 1.0 -- 21:37:08.094 DEBUG [18380]: Connecting to database... -- 21:37:08.094 DEBUG [18380]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:37:08.094 SQL [18380]: pgsql_db_connect() -- 21:37:08.098 DEBUG [18380]: Database connection successful -- 21:37:08.098 INFO [18380]: _SERVER found -- 21:37:08.098 INFO [18380]: REMOTE_ADDR = 192.168.1.13 -- 21:37:08.098 INFO [18380]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:37:08.098 INFO [18380]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=lour23uuhjhh9g5cjchq0l6u86inavrn -- 21:37:08.098 INFO [18380]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:37:08.098 INFO [18380]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:37:08.110 INFO [18380]: COREGRADE is stopping... -- 21:37:08.110 DEBUG [18380]: Closing database connection -- 21:37:08.110 SQL [18380]: pgsql_close() -- 21:37:24.904 INFO [1206]: COREGRADE is starting... -- 21:37:24.904 INFO [1206]: Version from config: 1.0 -- 21:37:24.904 DEBUG [1206]: Connecting to database... -- 21:37:24.904 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:37:24.904 SQL [1206]: pgsql_db_connect() -- 21:37:24.908 DEBUG [1206]: Database connection successful -- 21:37:24.908 INFO [1206]: _SERVER found -- 21:37:24.908 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 21:37:24.908 INFO [1206]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:37:24.908 INFO [1206]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=lour23uuhjhh9g5cjchq0l6u86inavrn -- 21:37:24.908 INFO [1206]: QUERY_STRING = /member/viewCardAddAction -- 21:37:24.908 INFO [1206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:37:24.940 INFO [1206]: COREGRADE is stopping... -- 21:37:24.940 DEBUG [1206]: Closing database connection -- 21:37:24.940 SQL [1206]: pgsql_close() -- 21:38:10.641 INFO [1209]: COREGRADE is starting... -- 21:38:10.641 INFO [1209]: Version from config: 1.0 -- 21:38:10.641 DEBUG [1209]: Connecting to database... -- 21:38:10.641 DEBUG [1209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:38:10.641 SQL [1209]: pgsql_db_connect() -- 21:38:10.645 DEBUG [1209]: Database connection successful -- 21:38:10.645 INFO [1209]: _SERVER found -- 21:38:10.645 INFO [1209]: REMOTE_ADDR = 192.168.1.13 -- 21:38:10.645 INFO [1209]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:38:10.645 INFO [1209]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=lour23uuhjhh9g5cjchq0l6u86inavrn -- 21:38:10.645 INFO [1209]: QUERY_STRING = /member -- 21:38:10.645 INFO [1209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:38:10.686 INFO [1209]: COREGRADE is stopping... -- 21:38:10.686 DEBUG [1209]: Closing database connection -- 21:38:10.686 SQL [1209]: pgsql_close() -- 21:38:11.276 INFO [1209]: COREGRADE is starting... -- 21:38:11.276 INFO [1209]: Version from config: 1.0 -- 21:38:11.276 DEBUG [1209]: Connecting to database... -- 21:38:11.276 DEBUG [1209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:38:11.276 SQL [1209]: pgsql_db_connect() -- 21:38:11.281 DEBUG [1209]: Database connection successful -- 21:38:11.281 INFO [1209]: _SERVER found -- 21:38:11.281 INFO [1209]: REMOTE_ADDR = 192.168.1.13 -- 21:38:11.281 INFO [1209]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:38:11.281 INFO [1209]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=lour23uuhjhh9g5cjchq0l6u86inavrn -- 21:38:11.281 INFO [1209]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:38:11.281 INFO [1209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:38:11.292 INFO [1209]: COREGRADE is stopping... -- 21:38:11.292 DEBUG [1209]: Closing database connection -- 21:38:11.292 SQL [1209]: pgsql_close() -- 21:38:12.020 INFO [1209]: COREGRADE is starting... -- 21:38:12.020 INFO [1209]: Version from config: 1.0 -- 21:38:12.020 DEBUG [1209]: Connecting to database... -- 21:38:12.020 DEBUG [1209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:38:12.020 SQL [1209]: pgsql_db_connect() -- 21:38:12.024 DEBUG [1209]: Database connection successful -- 21:38:12.024 INFO [1209]: _SERVER found -- 21:38:12.024 INFO [1209]: REMOTE_ADDR = 192.168.1.13 -- 21:38:12.024 INFO [1209]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:38:12.024 INFO [1209]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=lour23uuhjhh9g5cjchq0l6u86inavrn -- 21:38:12.024 INFO [1209]: QUERY_STRING = /member/page -- 21:38:12.024 INFO [1209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:38:12.066 INFO [1209]: COREGRADE is stopping... -- 21:38:12.066 DEBUG [1209]: Closing database connection -- 21:38:12.066 SQL [1209]: pgsql_close() -- 21:38:12.524 INFO [1209]: COREGRADE is starting... -- 21:38:12.524 INFO [1209]: Version from config: 1.0 -- 21:38:12.524 DEBUG [1209]: Connecting to database... -- 21:38:12.524 DEBUG [1209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:38:12.524 SQL [1209]: pgsql_db_connect() -- 21:38:12.528 DEBUG [1209]: Database connection successful -- 21:38:12.528 INFO [1209]: _SERVER found -- 21:38:12.528 INFO [1209]: REMOTE_ADDR = 192.168.1.13 -- 21:38:12.528 INFO [1209]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:38:12.528 INFO [1209]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=lour23uuhjhh9g5cjchq0l6u86inavrn -- 21:38:12.528 INFO [1209]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:38:12.528 INFO [1209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:38:12.539 INFO [1209]: COREGRADE is stopping... -- 21:38:12.539 DEBUG [1209]: Closing database connection -- 21:38:12.539 SQL [1209]: pgsql_close() -- 21:38:54.150 INFO [18506]: COREGRADE is starting... -- 21:38:54.150 INFO [18506]: Version from config: 1.0 -- 21:38:54.150 DEBUG [18506]: Connecting to database... -- 21:38:54.150 DEBUG [18506]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:38:54.150 SQL [18506]: pgsql_db_connect() -- 21:38:54.154 DEBUG [18506]: Database connection successful -- 21:38:54.154 INFO [18506]: _SERVER found -- 21:38:54.154 INFO [18506]: REMOTE_ADDR = 192.168.1.13 -- 21:38:54.154 INFO [18506]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:38:54.154 INFO [18506]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=lour23uuhjhh9g5cjchq0l6u86inavrn -- 21:38:54.154 INFO [18506]: QUERY_STRING = /member/page -- 21:38:54.154 INFO [18506]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:38:54.201 INFO [18506]: COREGRADE is stopping... -- 21:38:54.201 DEBUG [18506]: Closing database connection -- 21:38:54.201 SQL [18506]: pgsql_close() -- 21:38:54.849 INFO [18506]: COREGRADE is starting... -- 21:38:54.849 INFO [18506]: Version from config: 1.0 -- 21:38:54.849 DEBUG [18506]: Connecting to database... -- 21:38:54.849 DEBUG [18506]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:38:54.849 SQL [18506]: pgsql_db_connect() -- 21:38:54.853 DEBUG [18506]: Database connection successful -- 21:38:54.853 INFO [18506]: _SERVER found -- 21:38:54.853 INFO [18506]: REMOTE_ADDR = 192.168.1.13 -- 21:38:54.853 INFO [18506]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:38:54.853 INFO [18506]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=lour23uuhjhh9g5cjchq0l6u86inavrn -- 21:38:54.853 INFO [18506]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:38:54.853 INFO [18506]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:38:54.864 INFO [18506]: COREGRADE is stopping... -- 21:38:54.864 DEBUG [18506]: Closing database connection -- 21:38:54.864 SQL [18506]: pgsql_close() -- 21:40:51.079 INFO [18380]: COREGRADE is starting... -- 21:40:51.080 INFO [18380]: Version from config: 1.0 -- 21:40:51.080 DEBUG [18380]: Connecting to database... -- 21:40:51.080 DEBUG [18380]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:40:51.080 SQL [18380]: pgsql_db_connect() -- 21:40:51.084 DEBUG [18380]: Database connection successful -- 21:40:51.084 INFO [18380]: _SERVER found -- 21:40:51.084 INFO [18380]: REMOTE_ADDR = 192.168.1.13 -- 21:40:51.084 INFO [18380]: SERVER_NAME = oameye.works.coregrade.com -- 21:40:51.084 INFO [18380]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=sm22nhl7ua4qpifk2jgdvekc3m01p2kf -- 21:40:51.084 INFO [18380]: QUERY_STRING = /member/viewCardAddAction -- 21:40:51.084 INFO [18380]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:40:51.116 INFO [18380]: COREGRADE is stopping... -- 21:40:51.116 DEBUG [18380]: Closing database connection -- 21:40:51.116 SQL [18380]: pgsql_close() -- 21:40:56.763 INFO [18381]: COREGRADE is starting... -- 21:40:56.763 INFO [18381]: Version from config: 1.0 -- 21:40:56.763 DEBUG [18381]: Connecting to database... -- 21:40:56.763 DEBUG [18381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:40:56.763 SQL [18381]: pgsql_db_connect() -- 21:40:56.767 DEBUG [18381]: Database connection successful -- 21:40:56.767 INFO [18381]: _SERVER found -- 21:40:56.767 INFO [18381]: REMOTE_ADDR = 192.168.1.13 -- 21:40:56.767 INFO [18381]: SERVER_NAME = oameye.works.coregrade.com -- 21:40:56.767 INFO [18381]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=sm22nhl7ua4qpifk2jgdvekc3m01p2kf -- 21:40:56.767 INFO [18381]: QUERY_STRING = /member/upload -- 21:40:56.767 INFO [18381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:40:56.799 INFO [18381]: COREGRADE is stopping... -- 21:40:56.799 DEBUG [18381]: Closing database connection -- 21:40:56.799 SQL [18381]: pgsql_close() -- 21:41:01.625 INFO [18381]: COREGRADE is starting... -- 21:41:01.626 INFO [18381]: Version from config: 1.0 -- 21:41:01.626 DEBUG [18381]: Connecting to database... -- 21:41:01.626 DEBUG [18381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:41:01.626 SQL [18381]: pgsql_db_connect() -- 21:41:01.630 DEBUG [18381]: Database connection successful -- 21:41:01.630 INFO [18381]: _SERVER found -- 21:41:01.630 INFO [18381]: REMOTE_ADDR = 192.168.1.13 -- 21:41:01.630 INFO [18381]: SERVER_NAME = oameye.works.coregrade.com -- 21:41:01.630 INFO [18381]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=ddi4drimd0dai45f3j3vglbbn2deaemq -- 21:41:01.630 INFO [18381]: QUERY_STRING = /member/page -- 21:41:01.630 INFO [18381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:41:01.672 INFO [18381]: COREGRADE is stopping... -- 21:41:01.672 DEBUG [18381]: Closing database connection -- 21:41:01.672 SQL [18381]: pgsql_close() -- 21:41:02.247 INFO [18381]: COREGRADE is starting... -- 21:41:02.247 INFO [18381]: Version from config: 1.0 -- 21:41:02.247 DEBUG [18381]: Connecting to database... -- 21:41:02.247 DEBUG [18381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:41:02.247 SQL [18381]: pgsql_db_connect() -- 21:41:02.251 DEBUG [18381]: Database connection successful -- 21:41:02.251 INFO [18381]: _SERVER found -- 21:41:02.251 INFO [18381]: REMOTE_ADDR = 192.168.1.13 -- 21:41:02.251 INFO [18381]: SERVER_NAME = oameye.works.coregrade.com -- 21:41:02.251 INFO [18381]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=ddi4drimd0dai45f3j3vglbbn2deaemq -- 21:41:02.251 INFO [18381]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:41:02.251 INFO [18381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:41:02.262 INFO [18381]: COREGRADE is stopping... -- 21:41:02.262 DEBUG [18381]: Closing database connection -- 21:41:02.262 SQL [18381]: pgsql_close() -- 21:42:51.694 INFO [1206]: COREGRADE is starting... -- 21:42:51.694 INFO [1206]: Version from config: 1.0 -- 21:42:51.694 DEBUG [1206]: Connecting to database... -- 21:42:51.695 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:42:51.695 SQL [1206]: pgsql_db_connect() -- 21:42:51.699 DEBUG [1206]: Database connection successful -- 21:42:51.699 INFO [1206]: _SERVER found -- 21:42:51.699 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 21:42:51.699 INFO [1206]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:42:51.699 INFO [1206]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=lour23uuhjhh9g5cjchq0l6u86inavrn -- 21:42:51.699 INFO [1206]: QUERY_STRING = /member -- 21:42:51.699 INFO [1206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:42:51.741 INFO [1206]: COREGRADE is stopping... -- 21:42:51.741 DEBUG [1206]: Closing database connection -- 21:42:51.741 SQL [1206]: pgsql_close() -- 21:42:52.265 INFO [1206]: COREGRADE is starting... -- 21:42:52.266 INFO [1206]: Version from config: 1.0 -- 21:42:52.266 DEBUG [1206]: Connecting to database... -- 21:42:52.266 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:42:52.266 SQL [1206]: pgsql_db_connect() -- 21:42:52.270 DEBUG [1206]: Database connection successful -- 21:42:52.270 INFO [1206]: _SERVER found -- 21:42:52.270 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 21:42:52.270 INFO [1206]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:42:52.270 INFO [1206]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=kjo91fbm68ic67c6t3ffpave4qkc1pdb -- 21:42:52.270 INFO [1206]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:42:52.270 INFO [1206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:42:52.281 INFO [1206]: COREGRADE is stopping... -- 21:42:52.282 DEBUG [1206]: Closing database connection -- 21:42:52.282 SQL [1206]: pgsql_close() -- 21:43:19.987 INFO [1238]: COREGRADE is starting... -- 21:43:19.988 INFO [1238]: Version from config: 1.0 -- 21:43:19.988 DEBUG [1238]: Connecting to database... -- 21:43:19.988 DEBUG [1238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:43:19.988 SQL [1238]: pgsql_db_connect() -- 21:43:19.992 DEBUG [1238]: Database connection successful -- 21:43:19.992 INFO [1238]: _SERVER found -- 21:43:19.992 INFO [1238]: REMOTE_ADDR = 192.168.1.13 -- 21:43:19.992 INFO [1238]: SERVER_NAME = oameye.works.coregrade.com -- 21:43:19.992 INFO [1238]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=ddi4drimd0dai45f3j3vglbbn2deaemq -- 21:43:19.992 INFO [1238]: QUERY_STRING = /member/page -- 21:43:19.992 INFO [1238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:43:20.036 INFO [1238]: COREGRADE is stopping... -- 21:43:20.036 DEBUG [1238]: Closing database connection -- 21:43:20.036 SQL [1238]: pgsql_close() -- 21:43:20.247 INFO [1238]: COREGRADE is starting... -- 21:43:20.247 INFO [1238]: Version from config: 1.0 -- 21:43:20.247 DEBUG [1238]: Connecting to database... -- 21:43:20.247 DEBUG [1238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:43:20.247 SQL [1238]: pgsql_db_connect() -- 21:43:20.251 DEBUG [1238]: Database connection successful -- 21:43:20.251 INFO [1238]: _SERVER found -- 21:43:20.251 INFO [1238]: REMOTE_ADDR = 192.168.1.13 -- 21:43:20.251 INFO [1238]: SERVER_NAME = oameye.works.coregrade.com -- 21:43:20.251 INFO [1238]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=ddi4drimd0dai45f3j3vglbbn2deaemq -- 21:43:20.251 INFO [1238]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:43:20.251 INFO [1238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:43:20.263 INFO [1238]: COREGRADE is stopping... -- 21:43:20.263 DEBUG [1238]: Closing database connection -- 21:43:20.263 SQL [1238]: pgsql_close() -- 21:43:20.500 INFO [1238]: COREGRADE is starting... -- 21:43:20.500 INFO [1238]: Version from config: 1.0 -- 21:43:20.500 DEBUG [1238]: Connecting to database... -- 21:43:20.500 DEBUG [1238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:43:20.500 SQL [1238]: pgsql_db_connect() -- 21:43:20.504 DEBUG [1238]: Database connection successful -- 21:43:20.504 INFO [1238]: _SERVER found -- 21:43:20.504 INFO [1238]: REMOTE_ADDR = 192.168.1.13 -- 21:43:20.504 INFO [1238]: SERVER_NAME = oameye.works.coregrade.com -- 21:43:20.504 INFO [1238]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=ddi4drimd0dai45f3j3vglbbn2deaemq -- 21:43:20.504 INFO [1238]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:43:20.504 INFO [1238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:43:20.516 INFO [1238]: COREGRADE is stopping... -- 21:43:20.516 DEBUG [1238]: Closing database connection -- 21:43:20.516 SQL [1238]: pgsql_close() -- 21:43:23.046 INFO [1238]: COREGRADE is starting... -- 21:43:23.046 INFO [1238]: Version from config: 1.0 -- 21:43:23.046 DEBUG [1238]: Connecting to database... -- 21:43:23.047 DEBUG [1238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:43:23.047 SQL [1238]: pgsql_db_connect() -- 21:43:23.051 DEBUG [1238]: Database connection successful -- 21:43:23.051 INFO [1238]: _SERVER found -- 21:43:23.051 INFO [1238]: REMOTE_ADDR = 192.168.1.13 -- 21:43:23.051 INFO [1238]: SERVER_NAME = oameye.works.coregrade.com -- 21:43:23.051 INFO [1238]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=ddi4drimd0dai45f3j3vglbbn2deaemq -- 21:43:23.051 INFO [1238]: QUERY_STRING = /member/viewCardAddAction -- 21:43:23.051 INFO [1238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:43:23.082 INFO [1238]: COREGRADE is stopping... -- 21:43:23.082 DEBUG [1238]: Closing database connection -- 21:43:23.082 SQL [1238]: pgsql_close() -- 21:43:28.184 INFO [18382]: COREGRADE is starting... -- 21:43:28.184 INFO [18382]: Version from config: 1.0 -- 21:43:28.184 DEBUG [18382]: Connecting to database... -- 21:43:28.184 DEBUG [18382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:43:28.184 SQL [18382]: pgsql_db_connect() -- 21:43:28.188 DEBUG [18382]: Database connection successful -- 21:43:28.188 INFO [18382]: _SERVER found -- 21:43:28.188 INFO [18382]: REMOTE_ADDR = 192.168.1.13 -- 21:43:28.188 INFO [18382]: SERVER_NAME = oameye.works.coregrade.com -- 21:43:28.188 INFO [18382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=ddi4drimd0dai45f3j3vglbbn2deaemq -- 21:43:28.188 INFO [18382]: QUERY_STRING = /member/upload -- 21:43:28.188 INFO [18382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:43:28.219 INFO [18382]: COREGRADE is stopping... -- 21:43:28.219 DEBUG [18382]: Closing database connection -- 21:43:28.219 SQL [18382]: pgsql_close() -- 21:43:39.035 INFO [1209]: COREGRADE is starting... -- 21:43:39.035 INFO [1209]: Version from config: 1.0 -- 21:43:39.035 DEBUG [1209]: Connecting to database... -- 21:43:39.035 DEBUG [1209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:43:39.035 SQL [1209]: pgsql_db_connect() -- 21:43:39.039 DEBUG [1209]: Database connection successful -- 21:43:39.039 INFO [1209]: _SERVER found -- 21:43:39.039 INFO [1209]: REMOTE_ADDR = 192.168.1.13 -- 21:43:39.039 INFO [1209]: SERVER_NAME = oameye.works.coregrade.com -- 21:43:39.039 INFO [1209]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=ddi4drimd0dai45f3j3vglbbn2deaemq -- 21:43:39.039 INFO [1209]: QUERY_STRING = /member/page -- 21:43:39.039 INFO [1209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:43:39.082 INFO [1209]: COREGRADE is stopping... -- 21:43:39.083 DEBUG [1209]: Closing database connection -- 21:43:39.083 SQL [1209]: pgsql_close() -- 21:43:39.684 INFO [1205]: COREGRADE is starting... -- 21:43:39.684 INFO [1205]: Version from config: 1.0 -- 21:43:39.684 DEBUG [1205]: Connecting to database... -- 21:43:39.684 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:43:39.684 SQL [1205]: pgsql_db_connect() -- 21:43:39.688 DEBUG [1205]: Database connection successful -- 21:43:39.688 INFO [1205]: _SERVER found -- 21:43:39.688 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:43:39.688 INFO [1205]: SERVER_NAME = oameye.works.coregrade.com -- 21:43:39.688 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=ddi4drimd0dai45f3j3vglbbn2deaemq -- 21:43:39.688 INFO [1205]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:43:39.688 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:43:39.700 INFO [1205]: COREGRADE is stopping... -- 21:43:39.700 DEBUG [1205]: Closing database connection -- 21:43:39.700 SQL [1205]: pgsql_close() -- 21:46:54.969 INFO [1208]: COREGRADE is starting... -- 21:46:54.969 INFO [1208]: Version from config: 1.0 -- 21:46:54.969 DEBUG [1208]: Connecting to database... -- 21:46:54.969 DEBUG [1208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:46:54.969 SQL [1208]: pgsql_db_connect() -- 21:46:54.974 DEBUG [1208]: Database connection successful -- 21:46:54.974 INFO [1208]: _SERVER found -- 21:46:54.974 INFO [1208]: REMOTE_ADDR = 192.168.1.13 -- 21:46:54.974 INFO [1208]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:46:54.974 INFO [1208]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=kjo91fbm68ic67c6t3ffpave4qkc1pdb -- 21:46:54.974 INFO [1208]: QUERY_STRING = /member/configure -- 21:46:54.974 INFO [1208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:46:55.021 INFO [1208]: COREGRADE is stopping... -- 21:46:55.021 DEBUG [1208]: Closing database connection -- 21:46:55.021 SQL [1208]: pgsql_close() -- 21:46:55.641 INFO [1208]: COREGRADE is starting... -- 21:46:55.641 INFO [1208]: Version from config: 1.0 -- 21:46:55.641 DEBUG [1208]: Connecting to database... -- 21:46:55.641 DEBUG [1208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:46:55.641 SQL [1208]: pgsql_db_connect() -- 21:46:55.646 DEBUG [1208]: Database connection successful -- 21:46:55.646 INFO [1208]: _SERVER found -- 21:46:55.646 INFO [1208]: REMOTE_ADDR = 192.168.1.13 -- 21:46:55.646 INFO [1208]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:46:55.646 INFO [1208]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=kjo91fbm68ic67c6t3ffpave4qkc1pdb -- 21:46:55.646 INFO [1208]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:46:55.646 INFO [1208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:46:55.657 INFO [1208]: COREGRADE is stopping... -- 21:46:55.657 DEBUG [1208]: Closing database connection -- 21:46:55.657 SQL [1208]: pgsql_close() -- 21:47:12.934 INFO [18506]: COREGRADE is starting... -- 21:47:12.935 INFO [18506]: Version from config: 1.0 -- 21:47:12.935 DEBUG [18506]: Connecting to database... -- 21:47:12.935 DEBUG [18506]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:12.935 SQL [18506]: pgsql_db_connect() -- 21:47:12.939 DEBUG [18506]: Database connection successful -- 21:47:12.939 INFO [18506]: _SERVER found -- 21:47:12.939 INFO [18506]: REMOTE_ADDR = 192.168.1.13 -- 21:47:12.939 INFO [18506]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:47:12.939 INFO [18506]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=kjo91fbm68ic67c6t3ffpave4qkc1pdb -- 21:47:12.939 INFO [18506]: QUERY_STRING = /member/configure -- 21:47:12.939 INFO [18506]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:47:12.985 INFO [18506]: COREGRADE is stopping... -- 21:47:12.985 DEBUG [18506]: Closing database connection -- 21:47:12.985 SQL [18506]: pgsql_close() -- 21:47:13.431 INFO [18506]: COREGRADE is starting... -- 21:47:13.431 INFO [18506]: Version from config: 1.0 -- 21:47:13.431 DEBUG [18506]: Connecting to database... -- 21:47:13.431 DEBUG [18506]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:13.431 SQL [18506]: pgsql_db_connect() -- 21:47:13.436 DEBUG [18506]: Database connection successful -- 21:47:13.436 INFO [18506]: _SERVER found -- 21:47:13.436 INFO [18506]: REMOTE_ADDR = 192.168.1.13 -- 21:47:13.436 INFO [18506]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:47:13.436 INFO [18506]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=kjo91fbm68ic67c6t3ffpave4qkc1pdb -- 21:47:13.436 INFO [18506]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:47:13.436 INFO [18506]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:47:13.447 INFO [18506]: COREGRADE is stopping... -- 21:47:13.447 DEBUG [18506]: Closing database connection -- 21:47:13.447 SQL [18506]: pgsql_close() -- 21:47:15.628 INFO [18506]: COREGRADE is starting... -- 21:47:15.629 INFO [18506]: Version from config: 1.0 -- 21:47:15.629 DEBUG [18506]: Connecting to database... -- 21:47:15.629 DEBUG [18506]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:15.629 SQL [18506]: pgsql_db_connect() -- 21:47:15.633 DEBUG [18506]: Database connection successful -- 21:47:15.633 INFO [18506]: _SERVER found -- 21:47:15.633 INFO [18506]: REMOTE_ADDR = 192.168.1.13 -- 21:47:15.633 INFO [18506]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:47:15.633 INFO [18506]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=kjo91fbm68ic67c6t3ffpave4qkc1pdb -- 21:47:15.633 INFO [18506]: QUERY_STRING = /member/configure -- 21:47:15.633 INFO [18506]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:47:15.677 INFO [18506]: COREGRADE is stopping... -- 21:47:15.677 DEBUG [18506]: Closing database connection -- 21:47:15.677 SQL [18506]: pgsql_close() -- 21:47:16.115 INFO [18506]: COREGRADE is starting... -- 21:47:16.115 INFO [18506]: Version from config: 1.0 -- 21:47:16.115 DEBUG [18506]: Connecting to database... -- 21:47:16.115 DEBUG [18506]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:16.115 SQL [18506]: pgsql_db_connect() -- 21:47:16.120 DEBUG [18506]: Database connection successful -- 21:47:16.120 INFO [18506]: _SERVER found -- 21:47:16.120 INFO [18506]: REMOTE_ADDR = 192.168.1.13 -- 21:47:16.120 INFO [18506]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:47:16.120 INFO [18506]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=kjo91fbm68ic67c6t3ffpave4qkc1pdb -- 21:47:16.120 INFO [18506]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:47:16.120 INFO [18506]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:47:16.131 INFO [18506]: COREGRADE is stopping... -- 21:47:16.131 DEBUG [18506]: Closing database connection -- 21:47:16.131 SQL [18506]: pgsql_close() -- 21:47:19.114 INFO [18506]: COREGRADE is starting... -- 21:47:19.114 INFO [18506]: Version from config: 1.0 -- 21:47:19.114 DEBUG [18506]: Connecting to database... -- 21:47:19.114 DEBUG [18506]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:19.114 SQL [18506]: pgsql_db_connect() -- 21:47:19.119 DEBUG [18506]: Database connection successful -- 21:47:19.119 INFO [18506]: _SERVER found -- 21:47:19.119 INFO [18506]: REMOTE_ADDR = 192.168.1.13 -- 21:47:19.119 INFO [18506]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:47:19.119 INFO [18506]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=kjo91fbm68ic67c6t3ffpave4qkc1pdb -- 21:47:19.119 INFO [18506]: QUERY_STRING = /member -- 21:47:19.119 INFO [18506]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:47:19.160 INFO [18506]: COREGRADE is stopping... -- 21:47:19.160 DEBUG [18506]: Closing database connection -- 21:47:19.160 SQL [18506]: pgsql_close() -- 21:47:19.531 INFO [18506]: COREGRADE is starting... -- 21:47:19.531 INFO [18506]: Version from config: 1.0 -- 21:47:19.531 DEBUG [18506]: Connecting to database... -- 21:47:19.531 DEBUG [18506]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:19.531 SQL [18506]: pgsql_db_connect() -- 21:47:19.536 DEBUG [18506]: Database connection successful -- 21:47:19.536 INFO [18506]: _SERVER found -- 21:47:19.536 INFO [18506]: REMOTE_ADDR = 192.168.1.13 -- 21:47:19.536 INFO [18506]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:47:19.536 INFO [18506]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=kjo91fbm68ic67c6t3ffpave4qkc1pdb -- 21:47:19.536 INFO [18506]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:47:19.536 INFO [18506]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:47:19.547 INFO [18506]: COREGRADE is stopping... -- 21:47:19.547 DEBUG [18506]: Closing database connection -- 21:47:19.547 SQL [18506]: pgsql_close() -- 21:47:23.858 INFO [18506]: COREGRADE is starting... -- 21:47:23.858 INFO [18506]: Version from config: 1.0 -- 21:47:23.858 DEBUG [18506]: Connecting to database... -- 21:47:23.858 DEBUG [18506]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:23.858 SQL [18506]: pgsql_db_connect() -- 21:47:23.863 DEBUG [18506]: Database connection successful -- 21:47:23.863 INFO [18506]: _SERVER found -- 21:47:23.863 INFO [18506]: REMOTE_ADDR = 192.168.1.13 -- 21:47:23.863 INFO [18506]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:47:23.863 INFO [18506]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=kjo91fbm68ic67c6t3ffpave4qkc1pdb -- 21:47:23.863 INFO [18506]: QUERY_STRING = /member/page -- 21:47:23.863 INFO [18506]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:47:23.906 INFO [18506]: COREGRADE is stopping... -- 21:47:23.906 DEBUG [18506]: Closing database connection -- 21:47:23.906 SQL [18506]: pgsql_close() -- 21:47:24.489 INFO [18506]: COREGRADE is starting... -- 21:47:24.490 INFO [18506]: Version from config: 1.0 -- 21:47:24.490 DEBUG [18506]: Connecting to database... -- 21:47:24.490 DEBUG [18506]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:24.490 SQL [18506]: pgsql_db_connect() -- 21:47:24.494 DEBUG [18506]: Database connection successful -- 21:47:24.494 INFO [18506]: _SERVER found -- 21:47:24.494 INFO [18506]: REMOTE_ADDR = 192.168.1.13 -- 21:47:24.494 INFO [18506]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:47:24.494 INFO [18506]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=kjo91fbm68ic67c6t3ffpave4qkc1pdb -- 21:47:24.494 INFO [18506]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:47:24.494 INFO [18506]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:47:24.506 INFO [18506]: COREGRADE is stopping... -- 21:47:24.506 DEBUG [18506]: Closing database connection -- 21:47:24.506 SQL [18506]: pgsql_close() -- 21:47:30.434 INFO [18380]: COREGRADE is starting... -- 21:47:30.434 INFO [18380]: Version from config: 1.0 -- 21:47:30.434 DEBUG [18380]: Connecting to database... -- 21:47:30.435 DEBUG [18380]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:30.435 SQL [18380]: pgsql_db_connect() -- 21:47:30.439 DEBUG [18380]: Database connection successful -- 21:47:30.439 INFO [18380]: _SERVER found -- 21:47:30.439 INFO [18380]: REMOTE_ADDR = 192.168.1.13 -- 21:47:30.439 INFO [18380]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:47:30.439 INFO [18380]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=kjo91fbm68ic67c6t3ffpave4qkc1pdb -- 21:47:30.439 INFO [18380]: QUERY_STRING = /member/configure -- 21:47:30.439 INFO [18380]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:47:30.484 INFO [18380]: COREGRADE is stopping... -- 21:47:30.484 DEBUG [18380]: Closing database connection -- 21:47:30.484 SQL [18380]: pgsql_close() -- 21:47:30.795 INFO [18380]: COREGRADE is starting... -- 21:47:30.795 INFO [18380]: Version from config: 1.0 -- 21:47:30.795 DEBUG [18380]: Connecting to database... -- 21:47:30.795 DEBUG [18380]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:30.795 SQL [18380]: pgsql_db_connect() -- 21:47:30.800 DEBUG [18380]: Database connection successful -- 21:47:30.800 INFO [18380]: _SERVER found -- 21:47:30.800 INFO [18380]: REMOTE_ADDR = 192.168.1.13 -- 21:47:30.800 INFO [18380]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:47:30.800 INFO [18380]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=kjo91fbm68ic67c6t3ffpave4qkc1pdb -- 21:47:30.800 INFO [18380]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:47:30.800 INFO [18380]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:47:30.811 INFO [18380]: COREGRADE is stopping... -- 21:47:30.811 DEBUG [18380]: Closing database connection -- 21:47:30.811 SQL [18380]: pgsql_close() -- 21:47:33.227 INFO [18380]: COREGRADE is starting... -- 21:47:33.228 INFO [18380]: Version from config: 1.0 -- 21:47:33.228 DEBUG [18380]: Connecting to database... -- 21:47:33.228 DEBUG [18380]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:33.228 SQL [18380]: pgsql_db_connect() -- 21:47:33.232 DEBUG [18380]: Database connection successful -- 21:47:33.232 INFO [18380]: _SERVER found -- 21:47:33.232 INFO [18380]: REMOTE_ADDR = 192.168.1.13 -- 21:47:33.232 INFO [18380]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:47:33.232 INFO [18380]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=kjo91fbm68ic67c6t3ffpave4qkc1pdb -- 21:47:33.232 INFO [18380]: QUERY_STRING = /member/page -- 21:47:33.232 INFO [18380]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:47:33.276 INFO [18380]: COREGRADE is stopping... -- 21:47:33.276 DEBUG [18380]: Closing database connection -- 21:47:33.276 SQL [18380]: pgsql_close() -- 21:47:33.598 INFO [18380]: COREGRADE is starting... -- 21:47:33.599 INFO [18380]: Version from config: 1.0 -- 21:47:33.599 DEBUG [18380]: Connecting to database... -- 21:47:33.599 DEBUG [18380]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:33.599 SQL [18380]: pgsql_db_connect() -- 21:47:33.603 DEBUG [18380]: Database connection successful -- 21:47:33.603 INFO [18380]: _SERVER found -- 21:47:33.603 INFO [18380]: REMOTE_ADDR = 192.168.1.13 -- 21:47:33.603 INFO [18380]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:47:33.603 INFO [18380]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=kjo91fbm68ic67c6t3ffpave4qkc1pdb -- 21:47:33.603 INFO [18380]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:47:33.603 INFO [18380]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:47:33.615 INFO [18380]: COREGRADE is stopping... -- 21:47:33.615 DEBUG [18380]: Closing database connection -- 21:47:33.615 SQL [18380]: pgsql_close() -- 21:47:34.934 INFO [18380]: COREGRADE is starting... -- 21:47:34.934 INFO [18380]: Version from config: 1.0 -- 21:47:34.934 DEBUG [18380]: Connecting to database... -- 21:47:34.934 DEBUG [18380]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:34.934 SQL [18380]: pgsql_db_connect() -- 21:47:34.939 DEBUG [18380]: Database connection successful -- 21:47:34.939 INFO [18380]: _SERVER found -- 21:47:34.939 INFO [18380]: REMOTE_ADDR = 192.168.1.13 -- 21:47:34.939 INFO [18380]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:47:34.939 INFO [18380]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=kjo91fbm68ic67c6t3ffpave4qkc1pdb -- 21:47:34.939 INFO [18380]: QUERY_STRING = /member/configure -- 21:47:34.939 INFO [18380]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:47:34.982 INFO [18380]: COREGRADE is stopping... -- 21:47:34.983 DEBUG [18380]: Closing database connection -- 21:47:34.983 SQL [18380]: pgsql_close() -- 21:47:35.809 INFO [18380]: COREGRADE is starting... -- 21:47:35.809 INFO [18380]: Version from config: 1.0 -- 21:47:35.809 DEBUG [18380]: Connecting to database... -- 21:47:35.809 DEBUG [18380]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:35.809 SQL [18380]: pgsql_db_connect() -- 21:47:35.814 DEBUG [18380]: Database connection successful -- 21:47:35.814 INFO [18380]: _SERVER found -- 21:47:35.814 INFO [18380]: REMOTE_ADDR = 192.168.1.13 -- 21:47:35.814 INFO [18380]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:47:35.814 INFO [18380]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=kjo91fbm68ic67c6t3ffpave4qkc1pdb -- 21:47:35.814 INFO [18380]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:47:35.814 INFO [18380]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:47:35.825 INFO [18380]: COREGRADE is stopping... -- 21:47:35.825 DEBUG [18380]: Closing database connection -- 21:47:35.825 SQL [18380]: pgsql_close() -- 21:47:49.152 INFO [1376]: COREGRADE is starting... -- 21:47:49.152 INFO [1376]: Version from config: 1.0 -- 21:47:49.152 DEBUG [1376]: Connecting to database... -- 21:47:49.152 DEBUG [1376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:49.152 SQL [1376]: pgsql_db_connect() -- 21:47:49.157 DEBUG [1376]: Database connection successful -- 21:47:49.157 INFO [1376]: _SERVER found -- 21:47:49.157 INFO [1376]: REMOTE_ADDR = 192.168.1.13 -- 21:47:49.157 INFO [1376]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:47:49.157 INFO [1376]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=kjo91fbm68ic67c6t3ffpave4qkc1pdb -- 21:47:49.157 INFO [1376]: QUERY_STRING = /member/addcard -- 21:47:49.157 INFO [1376]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:47:49.203 INFO [1376]: COREGRADE is stopping... -- 21:47:49.203 DEBUG [1376]: Closing database connection -- 21:47:49.203 SQL [1376]: pgsql_close() -- 21:47:49.704 INFO [1376]: COREGRADE is starting... -- 21:47:49.704 INFO [1376]: Version from config: 1.0 -- 21:47:49.704 DEBUG [1376]: Connecting to database... -- 21:47:49.704 DEBUG [1376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:49.704 SQL [1376]: pgsql_db_connect() -- 21:47:49.709 DEBUG [1376]: Database connection successful -- 21:47:49.709 INFO [1376]: _SERVER found -- 21:47:49.709 INFO [1376]: REMOTE_ADDR = 192.168.1.13 -- 21:47:49.709 INFO [1376]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:47:49.709 INFO [1376]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=kjo91fbm68ic67c6t3ffpave4qkc1pdb -- 21:47:49.709 INFO [1376]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:47:49.709 INFO [1376]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:47:49.721 INFO [1376]: COREGRADE is stopping... -- 21:47:49.721 DEBUG [1376]: Closing database connection -- 21:47:49.721 SQL [1376]: pgsql_close() -- 21:47:57.632 INFO [18381]: COREGRADE is starting... -- 21:47:57.632 INFO [18381]: Version from config: 1.0 -- 21:47:57.632 DEBUG [18381]: Connecting to database... -- 21:47:57.632 DEBUG [18381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:57.632 SQL [18381]: pgsql_db_connect() -- 21:47:57.637 DEBUG [18381]: Database connection successful -- 21:47:57.637 INFO [18381]: _SERVER found -- 21:47:57.637 INFO [18381]: REMOTE_ADDR = 192.168.1.13 -- 21:47:57.637 INFO [18381]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:47:57.637 INFO [18381]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=kjo91fbm68ic67c6t3ffpave4qkc1pdb -- 21:47:57.637 INFO [18381]: QUERY_STRING = /member/mycalendar -- 21:47:57.637 INFO [18381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:47:57.677 INFO [18381]: COREGRADE is stopping... -- 21:47:57.677 DEBUG [18381]: Closing database connection -- 21:47:57.677 SQL [18381]: pgsql_close() -- 21:47:58.414 INFO [18381]: COREGRADE is starting... -- 21:47:58.415 INFO [18381]: Version from config: 1.0 -- 21:47:58.415 DEBUG [18381]: Connecting to database... -- 21:47:58.415 DEBUG [18381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:58.415 SQL [18381]: pgsql_db_connect() -- 21:47:58.419 DEBUG [18381]: Database connection successful -- 21:47:58.419 INFO [18381]: _SERVER found -- 21:47:58.419 INFO [18381]: REMOTE_ADDR = 192.168.1.13 -- 21:47:58.419 INFO [18381]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:47:58.419 INFO [18381]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:47:58.419 INFO [18381]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:47:58.419 INFO [18381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:47:58.431 INFO [18381]: COREGRADE is stopping... -- 21:47:58.431 DEBUG [18381]: Closing database connection -- 21:47:58.431 SQL [18381]: pgsql_close() -- 21:48:00.334 INFO [18381]: COREGRADE is starting... -- 21:48:00.334 INFO [18381]: Version from config: 1.0 -- 21:48:00.334 DEBUG [18381]: Connecting to database... -- 21:48:00.334 DEBUG [18381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:48:00.334 SQL [18381]: pgsql_db_connect() -- 21:48:00.339 DEBUG [18381]: Database connection successful -- 21:48:00.339 INFO [18381]: _SERVER found -- 21:48:00.339 INFO [18381]: REMOTE_ADDR = 192.168.1.13 -- 21:48:00.339 INFO [18381]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:48:00.339 INFO [18381]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:48:00.339 INFO [18381]: QUERY_STRING = /member/configure -- 21:48:00.339 INFO [18381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:48:00.383 INFO [18381]: COREGRADE is stopping... -- 21:48:00.383 DEBUG [18381]: Closing database connection -- 21:48:00.383 SQL [18381]: pgsql_close() -- 21:48:00.898 INFO [18381]: COREGRADE is starting... -- 21:48:00.898 INFO [18381]: Version from config: 1.0 -- 21:48:00.898 DEBUG [18381]: Connecting to database... -- 21:48:00.898 DEBUG [18381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:48:00.898 SQL [18381]: pgsql_db_connect() -- 21:48:00.903 DEBUG [18381]: Database connection successful -- 21:48:00.903 INFO [18381]: _SERVER found -- 21:48:00.903 INFO [18381]: REMOTE_ADDR = 192.168.1.13 -- 21:48:00.903 INFO [18381]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:48:00.903 INFO [18381]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:48:00.903 INFO [18381]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:48:00.903 INFO [18381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:48:00.914 INFO [18381]: COREGRADE is stopping... -- 21:48:00.914 DEBUG [18381]: Closing database connection -- 21:48:00.914 SQL [18381]: pgsql_close() -- 21:48:05.508 INFO [18381]: COREGRADE is starting... -- 21:48:05.508 INFO [18381]: Version from config: 1.0 -- 21:48:05.508 DEBUG [18381]: Connecting to database... -- 21:48:05.508 DEBUG [18381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:48:05.508 SQL [18381]: pgsql_db_connect() -- 21:48:05.513 DEBUG [18381]: Database connection successful -- 21:48:05.513 INFO [18381]: _SERVER found -- 21:48:05.513 INFO [18381]: REMOTE_ADDR = 192.168.1.13 -- 21:48:05.513 INFO [18381]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:48:05.513 INFO [18381]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:48:05.513 INFO [18381]: QUERY_STRING = /member/configure -- 21:48:05.513 INFO [18381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:48:05.557 INFO [18381]: COREGRADE is stopping... -- 21:48:05.558 DEBUG [18381]: Closing database connection -- 21:48:05.558 SQL [18381]: pgsql_close() -- 21:48:05.946 INFO [18381]: COREGRADE is starting... -- 21:48:05.947 INFO [18381]: Version from config: 1.0 -- 21:48:05.947 DEBUG [18381]: Connecting to database... -- 21:48:05.947 DEBUG [18381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:48:05.947 SQL [18381]: pgsql_db_connect() -- 21:48:05.951 DEBUG [18381]: Database connection successful -- 21:48:05.951 INFO [18381]: _SERVER found -- 21:48:05.951 INFO [18381]: REMOTE_ADDR = 192.168.1.13 -- 21:48:05.951 INFO [18381]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:48:05.951 INFO [18381]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:48:05.951 INFO [18381]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:48:05.951 INFO [18381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:48:05.963 INFO [18381]: COREGRADE is stopping... -- 21:48:05.963 DEBUG [18381]: Closing database connection -- 21:48:05.963 SQL [18381]: pgsql_close() -- 21:48:11.344 INFO [1206]: COREGRADE is starting... -- 21:48:11.344 INFO [1206]: Version from config: 1.0 -- 21:48:11.344 DEBUG [1206]: Connecting to database... -- 21:48:11.344 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:48:11.344 SQL [1206]: pgsql_db_connect() -- 21:48:11.348 DEBUG [1206]: Database connection successful -- 21:48:11.348 INFO [1206]: _SERVER found -- 21:48:11.348 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 21:48:11.348 INFO [1206]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:48:11.348 INFO [1206]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:48:11.348 INFO [1206]: QUERY_STRING = /member/configure -- 21:48:11.348 INFO [1206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:48:11.393 INFO [1206]: COREGRADE is stopping... -- 21:48:11.393 DEBUG [1206]: Closing database connection -- 21:48:11.393 SQL [1206]: pgsql_close() -- 21:48:12.006 INFO [1206]: COREGRADE is starting... -- 21:48:12.007 INFO [1206]: Version from config: 1.0 -- 21:48:12.007 DEBUG [1206]: Connecting to database... -- 21:48:12.007 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:48:12.007 SQL [1206]: pgsql_db_connect() -- 21:48:12.011 DEBUG [1206]: Database connection successful -- 21:48:12.011 INFO [1206]: _SERVER found -- 21:48:12.011 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 21:48:12.011 INFO [1206]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:48:12.011 INFO [1206]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:48:12.011 INFO [1206]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:48:12.011 INFO [1206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:48:12.022 INFO [1206]: COREGRADE is stopping... -- 21:48:12.022 DEBUG [1206]: Closing database connection -- 21:48:12.022 SQL [1206]: pgsql_close() -- 21:48:16.080 INFO [1206]: COREGRADE is starting... -- 21:48:16.080 INFO [1206]: Version from config: 1.0 -- 21:48:16.080 DEBUG [1206]: Connecting to database... -- 21:48:16.080 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:48:16.080 SQL [1206]: pgsql_db_connect() -- 21:48:16.084 DEBUG [1206]: Database connection successful -- 21:48:16.084 INFO [1206]: _SERVER found -- 21:48:16.084 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 21:48:16.084 INFO [1206]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:48:16.084 INFO [1206]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:48:16.084 INFO [1206]: QUERY_STRING = /member/configure -- 21:48:16.084 INFO [1206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:48:16.127 INFO [1206]: COREGRADE is stopping... -- 21:48:16.127 DEBUG [1206]: Closing database connection -- 21:48:16.127 SQL [1206]: pgsql_close() -- 21:48:16.693 INFO [1206]: COREGRADE is starting... -- 21:48:16.694 INFO [1206]: Version from config: 1.0 -- 21:48:16.694 DEBUG [1206]: Connecting to database... -- 21:48:16.694 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:48:16.694 SQL [1206]: pgsql_db_connect() -- 21:48:16.698 DEBUG [1206]: Database connection successful -- 21:48:16.698 INFO [1206]: _SERVER found -- 21:48:16.698 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 21:48:16.698 INFO [1206]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:48:16.698 INFO [1206]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:48:16.698 INFO [1206]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:48:16.698 INFO [1206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:48:16.709 INFO [1206]: COREGRADE is stopping... -- 21:48:16.709 DEBUG [1206]: Closing database connection -- 21:48:16.709 SQL [1206]: pgsql_close() -- 21:48:26.565 INFO [1238]: COREGRADE is starting... -- 21:48:26.565 INFO [1238]: Version from config: 1.0 -- 21:48:26.565 DEBUG [1238]: Connecting to database... -- 21:48:26.565 DEBUG [1238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:48:26.565 SQL [1238]: pgsql_db_connect() -- 21:48:26.569 DEBUG [1238]: Database connection successful -- 21:48:26.569 INFO [1238]: _SERVER found -- 21:48:26.569 INFO [1238]: REMOTE_ADDR = 192.168.1.13 -- 21:48:26.569 INFO [1238]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:48:26.569 INFO [1238]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:48:26.569 INFO [1238]: QUERY_STRING = /member -- 21:48:26.569 INFO [1238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:48:26.610 INFO [1238]: COREGRADE is stopping... -- 21:48:26.610 DEBUG [1238]: Closing database connection -- 21:48:26.610 SQL [1238]: pgsql_close() -- 21:48:27.044 INFO [1238]: COREGRADE is starting... -- 21:48:27.044 INFO [1238]: Version from config: 1.0 -- 21:48:27.044 DEBUG [1238]: Connecting to database... -- 21:48:27.044 DEBUG [1238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:48:27.044 SQL [1238]: pgsql_db_connect() -- 21:48:27.048 DEBUG [1238]: Database connection successful -- 21:48:27.048 INFO [1238]: _SERVER found -- 21:48:27.048 INFO [1238]: REMOTE_ADDR = 192.168.1.13 -- 21:48:27.048 INFO [1238]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:48:27.048 INFO [1238]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:48:27.048 INFO [1238]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:48:27.048 INFO [1238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:48:27.060 INFO [1238]: COREGRADE is stopping... -- 21:48:27.060 DEBUG [1238]: Closing database connection -- 21:48:27.060 SQL [1238]: pgsql_close() -- 21:48:38.810 INFO [18382]: COREGRADE is starting... -- 21:48:38.811 INFO [18382]: Version from config: 1.0 -- 21:48:38.811 DEBUG [18382]: Connecting to database... -- 21:48:38.811 DEBUG [18382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:48:38.811 SQL [18382]: pgsql_db_connect() -- 21:48:38.815 DEBUG [18382]: Database connection successful -- 21:48:38.815 INFO [18382]: _SERVER found -- 21:48:38.815 INFO [18382]: REMOTE_ADDR = 192.168.1.13 -- 21:48:38.815 INFO [18382]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:48:38.815 INFO [18382]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:48:38.815 INFO [18382]: QUERY_STRING = /member/page -- 21:48:38.815 INFO [18382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:48:38.857 INFO [18382]: COREGRADE is stopping... -- 21:48:38.857 DEBUG [18382]: Closing database connection -- 21:48:38.857 SQL [18382]: pgsql_close() -- 21:48:39.581 INFO [18382]: COREGRADE is starting... -- 21:48:39.581 INFO [18382]: Version from config: 1.0 -- 21:48:39.581 DEBUG [18382]: Connecting to database... -- 21:48:39.581 DEBUG [18382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:48:39.581 SQL [18382]: pgsql_db_connect() -- 21:48:39.585 DEBUG [18382]: Database connection successful -- 21:48:39.585 INFO [18382]: _SERVER found -- 21:48:39.585 INFO [18382]: REMOTE_ADDR = 192.168.1.13 -- 21:48:39.585 INFO [18382]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:48:39.585 INFO [18382]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:48:39.585 INFO [18382]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:48:39.585 INFO [18382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:48:39.597 INFO [18382]: COREGRADE is stopping... -- 21:48:39.597 DEBUG [18382]: Closing database connection -- 21:48:39.597 SQL [18382]: pgsql_close() -- 21:48:51.014 INFO [1205]: COREGRADE is starting... -- 21:48:51.015 INFO [1205]: Version from config: 1.0 -- 21:48:51.015 DEBUG [1205]: Connecting to database... -- 21:48:51.015 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:48:51.015 SQL [1205]: pgsql_db_connect() -- 21:48:51.019 DEBUG [1205]: Database connection successful -- 21:48:51.019 INFO [1205]: _SERVER found -- 21:48:51.019 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:48:51.019 INFO [1205]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:48:51.019 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:48:51.019 INFO [1205]: QUERY_STRING = /member -- 21:48:51.019 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:48:51.060 INFO [1205]: COREGRADE is stopping... -- 21:48:51.060 DEBUG [1205]: Closing database connection -- 21:48:51.060 SQL [1205]: pgsql_close() -- 21:48:51.473 INFO [1205]: COREGRADE is starting... -- 21:48:51.474 INFO [1205]: Version from config: 1.0 -- 21:48:51.474 DEBUG [1205]: Connecting to database... -- 21:48:51.474 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:48:51.474 SQL [1205]: pgsql_db_connect() -- 21:48:51.478 DEBUG [1205]: Database connection successful -- 21:48:51.478 INFO [1205]: _SERVER found -- 21:48:51.478 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:48:51.478 INFO [1205]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:48:51.478 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:48:51.478 INFO [1205]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:48:51.478 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:48:51.489 INFO [1205]: COREGRADE is stopping... -- 21:48:51.489 DEBUG [1205]: Closing database connection -- 21:48:51.489 SQL [1205]: pgsql_close() -- 21:48:53.222 INFO [1205]: COREGRADE is starting... -- 21:48:53.223 INFO [1205]: Version from config: 1.0 -- 21:48:53.223 DEBUG [1205]: Connecting to database... -- 21:48:53.223 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:48:53.223 SQL [1205]: pgsql_db_connect() -- 21:48:53.227 DEBUG [1205]: Database connection successful -- 21:48:53.227 INFO [1205]: _SERVER found -- 21:48:53.227 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:48:53.227 INFO [1205]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:48:53.227 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:48:53.227 INFO [1205]: QUERY_STRING = /member/page -- 21:48:53.227 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:48:53.268 INFO [1205]: COREGRADE is stopping... -- 21:48:53.268 DEBUG [1205]: Closing database connection -- 21:48:53.268 SQL [1205]: pgsql_close() -- 21:48:53.724 INFO [1208]: COREGRADE is starting... -- 21:48:53.724 INFO [1208]: Version from config: 1.0 -- 21:48:53.724 DEBUG [1208]: Connecting to database... -- 21:48:53.724 DEBUG [1208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:48:53.724 SQL [1208]: pgsql_db_connect() -- 21:48:53.728 DEBUG [1208]: Database connection successful -- 21:48:53.728 INFO [1208]: _SERVER found -- 21:48:53.728 INFO [1208]: REMOTE_ADDR = 192.168.1.13 -- 21:48:53.728 INFO [1208]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:48:53.728 INFO [1208]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:48:53.728 INFO [1208]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:48:53.728 INFO [1208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:48:53.739 INFO [1208]: COREGRADE is stopping... -- 21:48:53.739 DEBUG [1208]: Closing database connection -- 21:48:53.739 SQL [1208]: pgsql_close() -- 21:49:00.935 INFO [18506]: COREGRADE is starting... -- 21:49:00.935 INFO [18506]: Version from config: 1.0 -- 21:49:00.935 DEBUG [18506]: Connecting to database... -- 21:49:00.935 DEBUG [18506]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:49:00.935 SQL [18506]: pgsql_db_connect() -- 21:49:00.939 DEBUG [18506]: Database connection successful -- 21:49:00.939 INFO [18506]: _SERVER found -- 21:49:00.939 INFO [18506]: REMOTE_ADDR = 192.168.1.13 -- 21:49:00.939 INFO [18506]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:49:00.939 INFO [18506]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:49:00.939 INFO [18506]: QUERY_STRING = /member/configure -- 21:49:00.939 INFO [18506]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:49:00.981 INFO [18506]: COREGRADE is stopping... -- 21:49:00.981 DEBUG [18506]: Closing database connection -- 21:49:00.981 SQL [18506]: pgsql_close() -- 21:49:01.396 INFO [18506]: COREGRADE is starting... -- 21:49:01.396 INFO [18506]: Version from config: 1.0 -- 21:49:01.396 DEBUG [18506]: Connecting to database... -- 21:49:01.396 DEBUG [18506]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:49:01.396 SQL [18506]: pgsql_db_connect() -- 21:49:01.400 DEBUG [18506]: Database connection successful -- 21:49:01.400 INFO [18506]: _SERVER found -- 21:49:01.400 INFO [18506]: REMOTE_ADDR = 192.168.1.13 -- 21:49:01.400 INFO [18506]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:49:01.400 INFO [18506]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:49:01.400 INFO [18506]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:49:01.400 INFO [18506]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:49:01.412 INFO [18506]: COREGRADE is stopping... -- 21:49:01.412 DEBUG [18506]: Closing database connection -- 21:49:01.412 SQL [18506]: pgsql_close() -- 21:49:16.714 INFO [18380]: COREGRADE is starting... -- 21:49:16.714 INFO [18380]: Version from config: 1.0 -- 21:49:16.714 DEBUG [18380]: Connecting to database... -- 21:49:16.714 DEBUG [18380]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:49:16.714 SQL [18380]: pgsql_db_connect() -- 21:49:16.718 DEBUG [18380]: Database connection successful -- 21:49:16.718 INFO [18380]: _SERVER found -- 21:49:16.718 INFO [18380]: REMOTE_ADDR = 192.168.1.13 -- 21:49:16.718 INFO [18380]: SERVER_NAME = oameye.works.coregrade.com -- 21:49:16.718 INFO [18380]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=ddi4drimd0dai45f3j3vglbbn2deaemq -- 21:49:16.718 INFO [18380]: QUERY_STRING = /member/page -- 21:49:16.718 INFO [18380]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:49:16.762 INFO [18380]: COREGRADE is stopping... -- 21:49:16.762 DEBUG [18380]: Closing database connection -- 21:49:16.762 SQL [18380]: pgsql_close() -- 21:49:16.958 INFO [1376]: COREGRADE is starting... -- 21:49:16.959 INFO [1376]: Version from config: 1.0 -- 21:49:16.959 DEBUG [1376]: Connecting to database... -- 21:49:16.959 DEBUG [1376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:49:16.959 SQL [1376]: pgsql_db_connect() -- 21:49:16.963 DEBUG [1376]: Database connection successful -- 21:49:16.963 INFO [1376]: _SERVER found -- 21:49:16.963 INFO [1376]: REMOTE_ADDR = 192.168.1.13 -- 21:49:16.963 INFO [1376]: SERVER_NAME = oameye.works.coregrade.com -- 21:49:16.963 INFO [1376]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=gpl9qmfmibfo6rvhq4bg6tcl5pd22lig -- 21:49:16.963 INFO [1376]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:49:16.963 INFO [1376]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:49:16.975 INFO [1376]: COREGRADE is stopping... -- 21:49:16.975 DEBUG [1376]: Closing database connection -- 21:49:16.975 SQL [1376]: pgsql_close() -- 21:49:17.278 INFO [1376]: COREGRADE is starting... -- 21:49:17.279 INFO [1376]: Version from config: 1.0 -- 21:49:17.279 DEBUG [1376]: Connecting to database... -- 21:49:17.279 DEBUG [1376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:49:17.279 SQL [1376]: pgsql_db_connect() -- 21:49:17.283 DEBUG [1376]: Database connection successful -- 21:49:17.283 INFO [1376]: _SERVER found -- 21:49:17.283 INFO [1376]: REMOTE_ADDR = 192.168.1.13 -- 21:49:17.283 INFO [1376]: SERVER_NAME = oameye.works.coregrade.com -- 21:49:17.283 INFO [1376]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=gpl9qmfmibfo6rvhq4bg6tcl5pd22lig -- 21:49:17.283 INFO [1376]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:49:17.283 INFO [1376]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:49:17.294 INFO [1376]: COREGRADE is stopping... -- 21:49:17.294 DEBUG [1376]: Closing database connection -- 21:49:17.294 SQL [1376]: pgsql_close() -- 21:49:21.000 INFO [1376]: COREGRADE is starting... -- 21:49:21.000 INFO [1376]: Version from config: 1.0 -- 21:49:21.000 DEBUG [1376]: Connecting to database... -- 21:49:21.000 DEBUG [1376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:49:21.000 SQL [1376]: pgsql_db_connect() -- 21:49:22.005 DEBUG [1376]: Database connection successful -- 21:49:22.005 INFO [1376]: _SERVER found -- 21:49:22.005 INFO [1376]: REMOTE_ADDR = 192.168.1.13 -- 21:49:22.005 INFO [1376]: SERVER_NAME = oameye.works.coregrade.com -- 21:49:22.005 INFO [1376]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=gpl9qmfmibfo6rvhq4bg6tcl5pd22lig -- 21:49:22.005 INFO [1376]: QUERY_STRING = /member/viewCardAddAction -- 21:49:22.005 INFO [1376]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:49:22.036 INFO [1376]: COREGRADE is stopping... -- 21:49:22.036 DEBUG [1376]: Closing database connection -- 21:49:22.036 SQL [1376]: pgsql_close() -- 21:49:32.353 INFO [18381]: COREGRADE is starting... -- 21:49:32.353 INFO [18381]: Version from config: 1.0 -- 21:49:32.353 DEBUG [18381]: Connecting to database... -- 21:49:32.353 DEBUG [18381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:49:32.353 SQL [18381]: pgsql_db_connect() -- 21:49:32.357 DEBUG [18381]: Database connection successful -- 21:49:32.357 INFO [18381]: _SERVER found -- 21:49:32.357 INFO [18381]: REMOTE_ADDR = 192.168.1.13 -- 21:49:32.357 INFO [18381]: SERVER_NAME = oameye.works.coregrade.com -- 21:49:32.357 INFO [18381]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=gpl9qmfmibfo6rvhq4bg6tcl5pd22lig -- 21:49:32.357 INFO [18381]: QUERY_STRING = /member/upload -- 21:49:32.357 INFO [18381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:49:32.397 INFO [18381]: COREGRADE is stopping... -- 21:49:32.397 DEBUG [18381]: Closing database connection -- 21:49:32.397 SQL [18381]: pgsql_close() -- 21:49:38.873 INFO [1206]: COREGRADE is starting... -- 21:49:38.874 INFO [1206]: Version from config: 1.0 -- 21:49:38.874 DEBUG [1206]: Connecting to database... -- 21:49:38.874 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:49:38.874 SQL [1206]: pgsql_db_connect() -- 21:49:38.878 DEBUG [1206]: Database connection successful -- 21:49:38.878 INFO [1206]: _SERVER found -- 21:49:38.878 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 21:49:38.878 INFO [1206]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:49:38.878 INFO [1206]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:49:38.878 INFO [1206]: QUERY_STRING = /member -- 21:49:38.878 INFO [1206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:49:38.918 INFO [1206]: COREGRADE is stopping... -- 21:49:38.918 DEBUG [1206]: Closing database connection -- 21:49:38.918 SQL [1206]: pgsql_close() -- 21:49:39.524 INFO [1206]: COREGRADE is starting... -- 21:49:39.525 INFO [1206]: Version from config: 1.0 -- 21:49:39.525 DEBUG [1206]: Connecting to database... -- 21:49:39.525 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:49:39.525 SQL [1206]: pgsql_db_connect() -- 21:49:39.529 DEBUG [1206]: Database connection successful -- 21:49:39.529 INFO [1206]: _SERVER found -- 21:49:39.529 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 21:49:39.529 INFO [1206]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:49:39.529 INFO [1206]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:49:39.529 INFO [1206]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:49:39.529 INFO [1206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:49:39.540 INFO [1206]: COREGRADE is stopping... -- 21:49:39.540 DEBUG [1206]: Closing database connection -- 21:49:39.540 SQL [1206]: pgsql_close() -- 21:49:40.351 INFO [1206]: COREGRADE is starting... -- 21:49:40.351 INFO [1206]: Version from config: 1.0 -- 21:49:40.351 DEBUG [1206]: Connecting to database... -- 21:49:40.351 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:49:40.351 SQL [1206]: pgsql_db_connect() -- 21:49:40.355 DEBUG [1206]: Database connection successful -- 21:49:40.355 INFO [1206]: _SERVER found -- 21:49:40.355 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 21:49:40.355 INFO [1206]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:49:40.355 INFO [1206]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:49:40.355 INFO [1206]: QUERY_STRING = /member/page -- 21:49:40.355 INFO [1206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:49:40.397 INFO [1206]: COREGRADE is stopping... -- 21:49:40.397 DEBUG [1206]: Closing database connection -- 21:49:40.397 SQL [1206]: pgsql_close() -- 21:49:40.832 INFO [1238]: COREGRADE is starting... -- 21:49:40.832 INFO [1238]: Version from config: 1.0 -- 21:49:40.832 DEBUG [1238]: Connecting to database... -- 21:49:40.832 DEBUG [1238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:49:40.832 SQL [1238]: pgsql_db_connect() -- 21:49:40.836 DEBUG [1238]: Database connection successful -- 21:49:40.836 INFO [1238]: _SERVER found -- 21:49:40.836 INFO [1238]: REMOTE_ADDR = 192.168.1.13 -- 21:49:40.836 INFO [1238]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:49:40.836 INFO [1238]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:49:40.836 INFO [1238]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:49:40.836 INFO [1238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:49:40.847 INFO [1238]: COREGRADE is stopping... -- 21:49:40.847 DEBUG [1238]: Closing database connection -- 21:49:40.847 SQL [1238]: pgsql_close() -- 21:51:03.028 INFO [18382]: COREGRADE is starting... -- 21:51:03.028 INFO [18382]: Version from config: 1.0 -- 21:51:03.028 DEBUG [18382]: Connecting to database... -- 21:51:03.028 DEBUG [18382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:03.028 SQL [18382]: pgsql_db_connect() -- 21:51:03.032 DEBUG [18382]: Database connection successful -- 21:51:03.032 INFO [18382]: _SERVER found -- 21:51:03.032 INFO [18382]: REMOTE_ADDR = 192.168.1.13 -- 21:51:03.032 INFO [18382]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:03.032 INFO [18382]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:51:03.032 INFO [18382]: QUERY_STRING = /member/configure -- 21:51:03.032 INFO [18382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:03.075 INFO [18382]: COREGRADE is stopping... -- 21:51:03.075 DEBUG [18382]: Closing database connection -- 21:51:03.075 SQL [18382]: pgsql_close() -- 21:51:03.631 INFO [18382]: COREGRADE is starting... -- 21:51:03.631 INFO [18382]: Version from config: 1.0 -- 21:51:03.631 DEBUG [18382]: Connecting to database... -- 21:51:03.631 DEBUG [18382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:03.631 SQL [18382]: pgsql_db_connect() -- 21:51:03.635 DEBUG [18382]: Database connection successful -- 21:51:03.635 INFO [18382]: _SERVER found -- 21:51:03.635 INFO [18382]: REMOTE_ADDR = 192.168.1.13 -- 21:51:03.635 INFO [18382]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:03.635 INFO [18382]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:51:03.635 INFO [18382]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:51:03.635 INFO [18382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:03.646 INFO [18382]: COREGRADE is stopping... -- 21:51:03.646 DEBUG [18382]: Closing database connection -- 21:51:03.646 SQL [18382]: pgsql_close() -- 21:51:46.180 INFO [1205]: COREGRADE is starting... -- 21:51:46.181 INFO [1205]: Version from config: 1.0 -- 21:51:46.181 DEBUG [1205]: Connecting to database... -- 21:51:46.181 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:46.181 SQL [1205]: pgsql_db_connect() -- 21:51:46.185 DEBUG [1205]: Database connection successful -- 21:51:46.185 INFO [1205]: _SERVER found -- 21:51:46.185 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:51:46.185 INFO [1205]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:46.185 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:51:46.185 INFO [1205]: QUERY_STRING = /member/configure -- 21:51:46.185 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:46.229 INFO [1205]: COREGRADE is stopping... -- 21:51:46.229 DEBUG [1205]: Closing database connection -- 21:51:46.229 SQL [1205]: pgsql_close() -- 21:51:46.905 INFO [1205]: COREGRADE is starting... -- 21:51:46.906 INFO [1205]: Version from config: 1.0 -- 21:51:46.906 DEBUG [1205]: Connecting to database... -- 21:51:46.906 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:46.906 SQL [1205]: pgsql_db_connect() -- 21:51:46.910 DEBUG [1205]: Database connection successful -- 21:51:46.910 INFO [1205]: _SERVER found -- 21:51:46.910 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:51:46.910 INFO [1205]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:46.910 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:51:46.910 INFO [1205]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:51:46.910 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:46.921 INFO [1205]: COREGRADE is stopping... -- 21:51:46.921 DEBUG [1205]: Closing database connection -- 21:51:46.921 SQL [1205]: pgsql_close() -- 21:51:51.282 INFO [1205]: COREGRADE is starting... -- 21:51:51.283 INFO [1205]: Version from config: 1.0 -- 21:51:51.283 DEBUG [1205]: Connecting to database... -- 21:51:51.283 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:51.283 SQL [1205]: pgsql_db_connect() -- 21:51:51.287 DEBUG [1205]: Database connection successful -- 21:51:51.287 INFO [1205]: _SERVER found -- 21:51:51.287 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:51:51.287 INFO [1205]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:51.287 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:51:51.287 INFO [1205]: QUERY_STRING = /member/configure -- 21:51:51.287 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:51.329 INFO [1205]: COREGRADE is stopping... -- 21:51:51.329 DEBUG [1205]: Closing database connection -- 21:51:51.329 SQL [1205]: pgsql_close() -- 21:51:51.789 INFO [1205]: COREGRADE is starting... -- 21:51:51.789 INFO [1205]: Version from config: 1.0 -- 21:51:51.789 DEBUG [1205]: Connecting to database... -- 21:51:51.789 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:51.789 SQL [1205]: pgsql_db_connect() -- 21:51:51.793 DEBUG [1205]: Database connection successful -- 21:51:51.793 INFO [1205]: _SERVER found -- 21:51:51.793 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:51:51.793 INFO [1205]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:51.793 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:51:51.793 INFO [1205]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:51:51.793 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:51.805 INFO [1205]: COREGRADE is stopping... -- 21:51:51.805 DEBUG [1205]: Closing database connection -- 21:51:51.805 SQL [1205]: pgsql_close() -- 21:51:52.710 INFO [1205]: COREGRADE is starting... -- 21:51:52.711 INFO [1205]: Version from config: 1.0 -- 21:51:52.711 DEBUG [1205]: Connecting to database... -- 21:51:52.711 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:52.711 SQL [1205]: pgsql_db_connect() -- 21:51:52.715 DEBUG [1205]: Database connection successful -- 21:51:52.715 INFO [1205]: _SERVER found -- 21:51:52.715 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:51:52.715 INFO [1205]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:52.715 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:51:52.715 INFO [1205]: QUERY_STRING = /member -- 21:51:52.715 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:52.755 INFO [1205]: COREGRADE is stopping... -- 21:51:52.755 DEBUG [1205]: Closing database connection -- 21:51:52.755 SQL [1205]: pgsql_close() -- 21:51:53.204 INFO [1205]: COREGRADE is starting... -- 21:51:53.204 INFO [1205]: Version from config: 1.0 -- 21:51:53.204 DEBUG [1205]: Connecting to database... -- 21:51:53.204 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:53.204 SQL [1205]: pgsql_db_connect() -- 21:51:53.208 DEBUG [1205]: Database connection successful -- 21:51:53.208 INFO [1205]: _SERVER found -- 21:51:53.208 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:51:53.208 INFO [1205]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:53.208 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:51:53.208 INFO [1205]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:51:53.208 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:53.219 INFO [1205]: COREGRADE is stopping... -- 21:51:53.219 DEBUG [1205]: Closing database connection -- 21:51:53.219 SQL [1205]: pgsql_close() -- 21:51:53.361 INFO [1205]: COREGRADE is starting... -- 21:51:53.362 INFO [1205]: Version from config: 1.0 -- 21:51:53.362 DEBUG [1205]: Connecting to database... -- 21:51:53.362 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:53.362 SQL [1205]: pgsql_db_connect() -- 21:51:53.366 DEBUG [1205]: Database connection successful -- 21:51:53.366 INFO [1205]: _SERVER found -- 21:51:53.366 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:51:53.366 INFO [1205]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:53.366 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:51:53.366 INFO [1205]: QUERY_STRING = /member/configure -- 21:51:53.366 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:53.408 INFO [1205]: COREGRADE is stopping... -- 21:51:53.408 DEBUG [1205]: Closing database connection -- 21:51:53.408 SQL [1205]: pgsql_close() -- 21:51:54.120 INFO [1205]: COREGRADE is starting... -- 21:51:54.120 INFO [1205]: Version from config: 1.0 -- 21:51:54.120 DEBUG [1205]: Connecting to database... -- 21:51:54.120 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:54.120 SQL [1205]: pgsql_db_connect() -- 21:51:54.124 DEBUG [1205]: Database connection successful -- 21:51:54.124 INFO [1205]: _SERVER found -- 21:51:54.124 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:51:54.124 INFO [1205]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:54.124 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:51:54.124 INFO [1205]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:51:54.124 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:54.135 INFO [1205]: COREGRADE is stopping... -- 21:51:54.135 DEBUG [1205]: Closing database connection -- 21:51:54.135 SQL [1205]: pgsql_close() -- 21:51:55.076 INFO [1205]: COREGRADE is starting... -- 21:51:55.076 INFO [1205]: Version from config: 1.0 -- 21:51:55.076 DEBUG [1205]: Connecting to database... -- 21:51:55.076 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:55.076 SQL [1205]: pgsql_db_connect() -- 21:51:55.080 DEBUG [1205]: Database connection successful -- 21:51:55.080 INFO [1205]: _SERVER found -- 21:51:55.080 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:51:55.080 INFO [1205]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:55.080 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:51:55.080 INFO [1205]: QUERY_STRING = /member/configure -- 21:51:55.080 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:55.122 INFO [1205]: COREGRADE is stopping... -- 21:51:55.122 DEBUG [1205]: Closing database connection -- 21:51:55.122 SQL [1205]: pgsql_close() -- 21:51:55.443 INFO [1205]: COREGRADE is starting... -- 21:51:55.443 INFO [1205]: Version from config: 1.0 -- 21:51:55.443 DEBUG [1205]: Connecting to database... -- 21:51:55.443 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:55.443 SQL [1205]: pgsql_db_connect() -- 21:51:55.447 DEBUG [1205]: Database connection successful -- 21:51:55.447 INFO [1205]: _SERVER found -- 21:51:55.447 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:51:55.447 INFO [1205]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:55.447 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:51:55.447 INFO [1205]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:51:55.447 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:55.458 INFO [1205]: COREGRADE is stopping... -- 21:51:55.458 DEBUG [1205]: Closing database connection -- 21:51:55.458 SQL [1205]: pgsql_close() -- 21:52:01.385 INFO [1208]: COREGRADE is starting... -- 21:52:01.385 INFO [1208]: Version from config: 1.0 -- 21:52:01.385 DEBUG [1208]: Connecting to database... -- 21:52:01.385 DEBUG [1208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:52:01.385 SQL [1208]: pgsql_db_connect() -- 21:52:01.389 DEBUG [1208]: Database connection successful -- 21:52:01.389 INFO [1208]: _SERVER found -- 21:52:01.389 INFO [1208]: REMOTE_ADDR = 192.168.1.13 -- 21:52:01.389 INFO [1208]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:52:01.389 INFO [1208]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:52:01.389 INFO [1208]: QUERY_STRING = /member/page -- 21:52:01.389 INFO [1208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:52:01.431 INFO [1208]: COREGRADE is stopping... -- 21:52:01.431 DEBUG [1208]: Closing database connection -- 21:52:01.431 SQL [1208]: pgsql_close() -- 21:52:01.860 INFO [18506]: COREGRADE is starting... -- 21:52:01.861 INFO [18506]: Version from config: 1.0 -- 21:52:01.861 DEBUG [18506]: Connecting to database... -- 21:52:01.861 DEBUG [18506]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:52:01.861 SQL [18506]: pgsql_db_connect() -- 21:52:01.865 DEBUG [18506]: Database connection successful -- 21:52:01.865 INFO [18506]: _SERVER found -- 21:52:01.865 INFO [18506]: REMOTE_ADDR = 192.168.1.13 -- 21:52:01.865 INFO [18506]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:52:01.865 INFO [18506]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:52:01.865 INFO [18506]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:52:01.865 INFO [18506]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:52:01.877 INFO [18506]: COREGRADE is stopping... -- 21:52:01.877 DEBUG [18506]: Closing database connection -- 21:52:01.877 SQL [18506]: pgsql_close() -- 21:52:09.702 INFO [18380]: COREGRADE is starting... -- 21:52:09.702 INFO [18380]: Version from config: 1.0 -- 21:52:09.702 DEBUG [18380]: Connecting to database... -- 21:52:09.702 DEBUG [18380]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:52:09.702 SQL [18380]: pgsql_db_connect() -- 21:52:09.706 DEBUG [18380]: Database connection successful -- 21:52:09.706 INFO [18380]: _SERVER found -- 21:52:09.706 INFO [18380]: REMOTE_ADDR = 192.168.1.13 -- 21:52:09.706 INFO [18380]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:52:09.706 INFO [18380]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:52:09.706 INFO [18380]: QUERY_STRING = /member/viewCardAddAction -- 21:52:09.706 INFO [18380]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:52:09.738 INFO [18380]: COREGRADE is stopping... -- 21:52:09.738 DEBUG [18380]: Closing database connection -- 21:52:09.738 SQL [18380]: pgsql_close() -- 21:52:11.534 INFO [18380]: COREGRADE is starting... -- 21:52:11.535 INFO [18380]: Version from config: 1.0 -- 21:52:11.535 DEBUG [18380]: Connecting to database... -- 21:52:11.535 DEBUG [18380]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:52:11.535 SQL [18380]: pgsql_db_connect() -- 21:52:11.539 DEBUG [18380]: Database connection successful -- 21:52:11.539 INFO [18380]: _SERVER found -- 21:52:11.539 INFO [18380]: REMOTE_ADDR = 192.168.1.13 -- 21:52:11.539 INFO [18380]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:52:11.539 INFO [18380]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:52:11.539 INFO [18380]: QUERY_STRING = /member/upload -- 21:52:11.539 INFO [18380]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:52:11.569 INFO [18380]: COREGRADE is stopping... -- 21:52:11.569 DEBUG [18380]: Closing database connection -- 21:52:11.569 SQL [18380]: pgsql_close() -- 21:52:11.809 INFO [18380]: COREGRADE is starting... -- 21:52:11.809 INFO [18380]: Version from config: 1.0 -- 21:52:11.809 DEBUG [18380]: Connecting to database... -- 21:52:11.809 DEBUG [18380]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:52:11.809 SQL [18380]: pgsql_db_connect() -- 21:52:11.813 DEBUG [18380]: Database connection successful -- 21:52:11.813 INFO [18380]: _SERVER found -- 21:52:11.813 INFO [18380]: REMOTE_ADDR = 192.168.1.13 -- 21:52:11.813 INFO [18380]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:52:11.813 INFO [18380]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:52:11.813 INFO [18380]: QUERY_STRING = /favicon.ico -- 21:52:11.813 INFO [18380]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:52:11.824 INFO [18380]: COREGRADE is stopping... -- 21:52:11.824 DEBUG [18380]: Closing database connection -- 21:52:11.824 SQL [18380]: pgsql_close() -- 21:52:14.658 INFO [18380]: COREGRADE is starting... -- 21:52:14.658 INFO [18380]: Version from config: 1.0 -- 21:52:14.658 DEBUG [18380]: Connecting to database... -- 21:52:14.658 DEBUG [18380]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:52:14.658 SQL [18380]: pgsql_db_connect() -- 21:52:14.662 DEBUG [18380]: Database connection successful -- 21:52:14.662 INFO [18380]: _SERVER found -- 21:52:14.662 INFO [18380]: REMOTE_ADDR = 192.168.1.13 -- 21:52:14.662 INFO [18380]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:52:14.662 INFO [18380]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:52:14.662 INFO [18380]: QUERY_STRING = /member/page -- 21:52:14.662 INFO [18380]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:52:14.704 INFO [18380]: COREGRADE is stopping... -- 21:52:14.704 DEBUG [18380]: Closing database connection -- 21:52:14.704 SQL [18380]: pgsql_close() -- 21:52:15.167 INFO [1376]: COREGRADE is starting... -- 21:52:15.167 INFO [1376]: Version from config: 1.0 -- 21:52:15.167 DEBUG [1376]: Connecting to database... -- 21:52:15.167 DEBUG [1376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:52:15.167 SQL [1376]: pgsql_db_connect() -- 21:52:15.171 DEBUG [1376]: Database connection successful -- 21:52:15.171 INFO [1376]: _SERVER found -- 21:52:15.171 INFO [1376]: REMOTE_ADDR = 192.168.1.13 -- 21:52:15.171 INFO [1376]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:52:15.171 INFO [1376]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:52:15.171 INFO [1376]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:52:15.171 INFO [1376]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:52:15.183 INFO [1376]: COREGRADE is stopping... -- 21:52:15.183 DEBUG [1376]: Closing database connection -- 21:52:15.183 SQL [1376]: pgsql_close() -- 21:52:20.879 INFO [18381]: COREGRADE is starting... -- 21:52:20.879 INFO [18381]: Version from config: 1.0 -- 21:52:20.879 DEBUG [18381]: Connecting to database... -- 21:52:20.879 DEBUG [18381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:52:20.879 SQL [18381]: pgsql_db_connect() -- 21:52:20.883 DEBUG [18381]: Database connection successful -- 21:52:20.883 INFO [18381]: _SERVER found -- 21:52:20.883 INFO [18381]: REMOTE_ADDR = 192.168.1.13 -- 21:52:20.883 INFO [18381]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:52:20.883 INFO [18381]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:52:20.883 INFO [18381]: QUERY_STRING = /member/viewCardAddAction -- 21:52:20.883 INFO [18381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:52:20.915 INFO [18381]: COREGRADE is stopping... -- 21:52:20.915 DEBUG [18381]: Closing database connection -- 21:52:20.915 SQL [18381]: pgsql_close() -- 21:53:00.756 INFO [1206]: COREGRADE is starting... -- 21:53:00.756 INFO [1206]: Version from config: 1.0 -- 21:53:00.756 DEBUG [1206]: Connecting to database... -- 21:53:00.756 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:53:00.756 SQL [1206]: pgsql_db_connect() -- 21:53:00.761 DEBUG [1206]: Database connection successful -- 21:53:00.761 INFO [1206]: _SERVER found -- 21:53:00.761 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 21:53:00.761 INFO [1206]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:53:00.761 INFO [1206]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3b00i76he59oo6cgmle9t0sureildbjr -- 21:53:00.761 INFO [1206]: QUERY_STRING = /member/upload -- 21:53:00.761 INFO [1206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:53:00.793 INFO [1206]: COREGRADE is stopping... -- 21:53:00.793 DEBUG [1206]: Closing database connection -- 21:53:00.793 SQL [1206]: pgsql_close() -- 21:53:42.961 INFO [1238]: COREGRADE is starting... -- 21:53:42.962 INFO [1238]: Version from config: 1.0 -- 21:53:42.962 DEBUG [1238]: Connecting to database... -- 21:53:42.962 DEBUG [1238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:53:42.962 SQL [1238]: pgsql_db_connect() -- 21:53:42.966 DEBUG [1238]: Database connection successful -- 21:53:42.966 INFO [1238]: _SERVER found -- 21:53:42.966 INFO [1238]: REMOTE_ADDR = 192.168.1.13 -- 21:53:42.966 INFO [1238]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:53:42.966 INFO [1238]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=p9uj4fm0lt6p941s67fvc0vobdr32pkf -- 21:53:42.966 INFO [1238]: QUERY_STRING = /member/page -- 21:53:42.966 INFO [1238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:53:43.009 INFO [1238]: COREGRADE is stopping... -- 21:53:43.009 DEBUG [1238]: Closing database connection -- 21:53:43.009 SQL [1238]: pgsql_close() -- 21:53:43.637 INFO [1238]: COREGRADE is starting... -- 21:53:43.637 INFO [1238]: Version from config: 1.0 -- 21:53:43.637 DEBUG [1238]: Connecting to database... -- 21:53:43.637 DEBUG [1238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:53:43.637 SQL [1238]: pgsql_db_connect() -- 21:53:43.641 DEBUG [1238]: Database connection successful -- 21:53:43.641 INFO [1238]: _SERVER found -- 21:53:43.641 INFO [1238]: REMOTE_ADDR = 192.168.1.13 -- 21:53:43.641 INFO [1238]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:53:43.641 INFO [1238]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=p9uj4fm0lt6p941s67fvc0vobdr32pkf -- 21:53:43.641 INFO [1238]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:53:43.641 INFO [1238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:53:43.653 INFO [1238]: COREGRADE is stopping... -- 21:53:43.653 DEBUG [1238]: Closing database connection -- 21:53:43.653 SQL [1238]: pgsql_close() -- 21:54:41.140 INFO [1209]: COREGRADE is starting... -- 21:54:41.140 INFO [1209]: Version from config: 1.0 -- 21:54:41.140 DEBUG [1209]: Connecting to database... -- 21:54:41.140 DEBUG [1209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:54:41.140 SQL [1209]: pgsql_db_connect() -- 21:54:41.144 DEBUG [1209]: Database connection successful -- 21:54:41.144 INFO [1209]: _SERVER found -- 21:54:41.144 INFO [1209]: REMOTE_ADDR = 192.168.1.13 -- 21:54:41.144 INFO [1209]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:54:41.144 INFO [1209]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=p9uj4fm0lt6p941s67fvc0vobdr32pkf -- 21:54:41.144 INFO [1209]: QUERY_STRING = /member/viewCardAddAction -- 21:54:41.144 INFO [1209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:54:41.177 INFO [1209]: COREGRADE is stopping... -- 21:54:41.177 DEBUG [1209]: Closing database connection -- 21:54:41.177 SQL [1209]: pgsql_close() -- 21:54:54.781 INFO [18382]: COREGRADE is starting... -- 21:54:54.782 INFO [18382]: Version from config: 1.0 -- 21:54:54.782 DEBUG [18382]: Connecting to database... -- 21:54:54.782 DEBUG [18382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:54:54.782 SQL [18382]: pgsql_db_connect() -- 21:54:54.786 DEBUG [18382]: Database connection successful -- 21:54:54.786 INFO [18382]: _SERVER found -- 21:54:54.786 INFO [18382]: REMOTE_ADDR = 192.168.1.13 -- 21:54:54.786 INFO [18382]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:54:54.786 INFO [18382]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=p9uj4fm0lt6p941s67fvc0vobdr32pkf -- 21:54:54.786 INFO [18382]: QUERY_STRING = /member/upload -- 21:54:54.786 INFO [18382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:54:54.817 INFO [18382]: COREGRADE is stopping... -- 21:54:54.817 DEBUG [18382]: Closing database connection -- 21:54:54.817 SQL [18382]: pgsql_close() -- 21:55:18.127 INFO [1205]: COREGRADE is starting... -- 21:55:18.127 INFO [1205]: Version from config: 1.0 -- 21:55:18.127 DEBUG [1205]: Connecting to database... -- 21:55:18.127 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:55:18.127 SQL [1205]: pgsql_db_connect() -- 21:55:18.132 DEBUG [1205]: Database connection successful -- 21:55:18.132 INFO [1205]: _SERVER found -- 21:55:18.132 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:55:18.132 INFO [1205]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:55:18.132 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=p9uj4fm0lt6p941s67fvc0vobdr32pkf -- 21:55:18.132 INFO [1205]: QUERY_STRING = /member/page -- 21:55:18.132 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:55:18.175 INFO [1205]: COREGRADE is stopping... -- 21:55:18.175 DEBUG [1205]: Closing database connection -- 21:55:18.175 SQL [1205]: pgsql_close() -- 21:55:18.978 INFO [1205]: COREGRADE is starting... -- 21:55:18.979 INFO [1205]: Version from config: 1.0 -- 21:55:18.979 DEBUG [1205]: Connecting to database... -- 21:55:18.979 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:55:18.979 SQL [1205]: pgsql_db_connect() -- 21:55:18.983 DEBUG [1205]: Database connection successful -- 21:55:18.983 INFO [1205]: _SERVER found -- 21:55:18.983 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 21:55:18.983 INFO [1205]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:55:18.983 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=p9uj4fm0lt6p941s67fvc0vobdr32pkf -- 21:55:18.983 INFO [1205]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:55:18.983 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:55:18.994 INFO [1205]: COREGRADE is stopping... -- 21:55:18.994 DEBUG [1205]: Closing database connection -- 21:55:18.994 SQL [1205]: pgsql_close() -- 21:55:24.537 INFO [1208]: COREGRADE is starting... -- 21:55:24.537 INFO [1208]: Version from config: 1.0 -- 21:55:24.537 DEBUG [1208]: Connecting to database... -- 21:55:24.537 DEBUG [1208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:55:24.537 SQL [1208]: pgsql_db_connect() -- 21:55:24.541 DEBUG [1208]: Database connection successful -- 21:55:24.541 INFO [1208]: _SERVER found -- 21:55:24.541 INFO [1208]: REMOTE_ADDR = 192.168.1.13 -- 21:55:24.541 INFO [1208]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:55:24.541 INFO [1208]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=p9uj4fm0lt6p941s67fvc0vobdr32pkf -- 21:55:24.541 INFO [1208]: QUERY_STRING = /member/viewCardAddAction -- 21:55:24.541 INFO [1208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:55:24.573 INFO [1208]: COREGRADE is stopping... -- 21:55:24.573 DEBUG [1208]: Closing database connection -- 21:55:24.573 SQL [1208]: pgsql_close() -- 21:56:00.843 INFO [18506]: COREGRADE is starting... -- 21:56:00.843 INFO [18506]: Version from config: 1.0 -- 21:56:00.843 DEBUG [18506]: Connecting to database... -- 21:56:00.843 DEBUG [18506]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:56:00.843 SQL [18506]: pgsql_db_connect() -- 21:56:00.847 DEBUG [18506]: Database connection successful -- 21:56:00.847 INFO [18506]: _SERVER found -- 21:56:00.847 INFO [18506]: REMOTE_ADDR = 192.168.1.13 -- 21:56:00.847 INFO [18506]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:56:00.847 INFO [18506]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=p9uj4fm0lt6p941s67fvc0vobdr32pkf -- 21:56:00.847 INFO [18506]: QUERY_STRING = /member/upload -- 21:56:00.847 INFO [18506]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:56:00.878 INFO [18506]: COREGRADE is stopping... -- 21:56:00.879 DEBUG [18506]: Closing database connection -- 21:56:00.879 SQL [18506]: pgsql_close() -- 21:56:25.437 INFO [1376]: COREGRADE is starting... -- 21:56:25.437 INFO [1376]: Version from config: 1.0 -- 21:56:25.437 DEBUG [1376]: Connecting to database... -- 21:56:25.437 DEBUG [1376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:56:25.437 SQL [1376]: pgsql_db_connect() -- 21:56:25.441 DEBUG [1376]: Database connection successful -- 21:56:25.441 INFO [1376]: _SERVER found -- 21:56:25.441 INFO [1376]: REMOTE_ADDR = 192.168.1.13 -- 21:56:25.441 INFO [1376]: SERVER_NAME = oameye.works.coregrade.com -- 21:56:25.441 INFO [1376]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=gpl9qmfmibfo6rvhq4bg6tcl5pd22lig -- 21:56:25.441 INFO [1376]: QUERY_STRING = /member/page -- 21:56:25.441 INFO [1376]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:56:25.484 INFO [1376]: COREGRADE is stopping... -- 21:56:25.484 DEBUG [1376]: Closing database connection -- 21:56:25.484 SQL [1376]: pgsql_close() -- 21:56:26.044 INFO [1376]: COREGRADE is starting... -- 21:56:26.044 INFO [1376]: Version from config: 1.0 -- 21:56:26.044 DEBUG [1376]: Connecting to database... -- 21:56:26.044 DEBUG [1376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:56:26.044 SQL [1376]: pgsql_db_connect() -- 21:56:26.048 DEBUG [1376]: Database connection successful -- 21:56:26.048 INFO [1376]: _SERVER found -- 21:56:26.048 INFO [1376]: REMOTE_ADDR = 192.168.1.13 -- 21:56:26.048 INFO [1376]: SERVER_NAME = oameye.works.coregrade.com -- 21:56:26.048 INFO [1376]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=duqfgo98odulkrbd5fkattcinrd4st8u -- 21:56:26.048 INFO [1376]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:56:26.048 INFO [1376]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:56:26.059 INFO [1376]: COREGRADE is stopping... -- 21:56:26.059 DEBUG [1376]: Closing database connection -- 21:56:26.059 SQL [1376]: pgsql_close() -- 21:56:30.450 INFO [1376]: COREGRADE is starting... -- 21:56:30.450 INFO [1376]: Version from config: 1.0 -- 21:56:30.450 DEBUG [1376]: Connecting to database... -- 21:56:30.450 DEBUG [1376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:56:30.450 SQL [1376]: pgsql_db_connect() -- 21:56:30.454 DEBUG [1376]: Database connection successful -- 21:56:30.454 INFO [1376]: _SERVER found -- 21:56:30.454 INFO [1376]: REMOTE_ADDR = 192.168.1.13 -- 21:56:30.454 INFO [1376]: SERVER_NAME = oameye.works.coregrade.com -- 21:56:30.454 INFO [1376]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=duqfgo98odulkrbd5fkattcinrd4st8u -- 21:56:30.454 INFO [1376]: QUERY_STRING = /member/viewCardAddAction -- 21:56:30.454 INFO [1376]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:56:30.485 INFO [1376]: COREGRADE is stopping... -- 21:56:30.485 DEBUG [1376]: Closing database connection -- 21:56:30.485 SQL [1376]: pgsql_close() -- 21:56:35.999 INFO [18381]: COREGRADE is starting... -- 21:56:35.000 INFO [18381]: Version from config: 1.0 -- 21:56:35.000 DEBUG [18381]: Connecting to database... -- 21:56:35.000 DEBUG [18381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:56:35.000 SQL [18381]: pgsql_db_connect() -- 21:56:36.004 DEBUG [18381]: Database connection successful -- 21:56:36.004 INFO [18381]: _SERVER found -- 21:56:36.004 INFO [18381]: REMOTE_ADDR = 192.168.1.13 -- 21:56:36.004 INFO [18381]: SERVER_NAME = oameye.works.coregrade.com -- 21:56:36.004 INFO [18381]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=duqfgo98odulkrbd5fkattcinrd4st8u -- 21:56:36.004 INFO [18381]: QUERY_STRING = /member/upload -- 21:56:36.004 INFO [18381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:56:36.045 INFO [18381]: COREGRADE is stopping... -- 21:56:36.045 DEBUG [18381]: Closing database connection -- 21:56:36.045 SQL [18381]: pgsql_close() -- 22:11:43.046 INFO [1206]: COREGRADE is starting... -- 22:11:43.047 INFO [1206]: Version from config: 1.0 -- 22:11:43.047 DEBUG [1206]: Connecting to database... -- 22:11:43.047 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:11:43.047 SQL [1206]: pgsql_db_connect() -- 22:11:43.051 DEBUG [1206]: Database connection successful -- 22:11:43.051 INFO [1206]: _SERVER found -- 22:11:43.051 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 22:11:43.051 INFO [1206]: SERVER_NAME = oameye.works.coregrade.com -- 22:11:43.051 INFO [1206]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=duqfgo98odulkrbd5fkattcinrd4st8u -- 22:11:43.051 INFO [1206]: QUERY_STRING = /member/page -- 22:11:43.051 INFO [1206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:11:43.098 INFO [1206]: COREGRADE is stopping... -- 22:11:43.099 DEBUG [1206]: Closing database connection -- 22:11:43.099 SQL [1206]: pgsql_close() -- 22:11:43.622 INFO [1206]: COREGRADE is starting... -- 22:11:43.622 INFO [1206]: Version from config: 1.0 -- 22:11:43.622 DEBUG [1206]: Connecting to database... -- 22:11:43.622 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:11:43.622 SQL [1206]: pgsql_db_connect() -- 22:11:43.627 DEBUG [1206]: Database connection successful -- 22:11:43.627 INFO [1206]: _SERVER found -- 22:11:43.627 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 22:11:43.627 INFO [1206]: SERVER_NAME = oameye.works.coregrade.com -- 22:11:43.627 INFO [1206]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=j9j2jh8ei19nujj7cl1978r2a0cir04c -- 22:11:43.627 INFO [1206]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:11:43.627 INFO [1206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:11:43.638 INFO [1206]: COREGRADE is stopping... -- 22:11:43.638 DEBUG [1206]: Closing database connection -- 22:11:43.638 SQL [1206]: pgsql_close() -- 22:14:07.245 INFO [1209]: COREGRADE is starting... -- 22:14:07.245 INFO [1209]: Version from config: 1.0 -- 22:14:07.245 DEBUG [1209]: Connecting to database... -- 22:14:07.245 DEBUG [1209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:14:07.245 SQL [1209]: pgsql_db_connect() -- 22:14:07.250 DEBUG [1209]: Database connection successful -- 22:14:07.250 INFO [1209]: _SERVER found -- 22:14:07.250 INFO [1209]: REMOTE_ADDR = 192.168.1.13 -- 22:14:07.250 INFO [1209]: SERVER_NAME = oameye.works.coregrade.com -- 22:14:07.250 INFO [1209]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=j9j2jh8ei19nujj7cl1978r2a0cir04c -- 22:14:07.250 INFO [1209]: QUERY_STRING = /member/viewCardAddAction -- 22:14:07.250 INFO [1209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:14:07.285 INFO [1209]: COREGRADE is stopping... -- 22:14:07.285 DEBUG [1209]: Closing database connection -- 22:14:07.285 SQL [1209]: pgsql_close() -- 22:14:12.879 INFO [18382]: COREGRADE is starting... -- 22:14:12.879 INFO [18382]: Version from config: 1.0 -- 22:14:12.879 DEBUG [18382]: Connecting to database... -- 22:14:12.879 DEBUG [18382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:14:12.879 SQL [18382]: pgsql_db_connect() -- 22:14:12.883 DEBUG [18382]: Database connection successful -- 22:14:12.883 INFO [18382]: _SERVER found -- 22:14:12.883 INFO [18382]: REMOTE_ADDR = 192.168.1.13 -- 22:14:12.883 INFO [18382]: SERVER_NAME = oameye.works.coregrade.com -- 22:14:12.883 INFO [18382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=j9j2jh8ei19nujj7cl1978r2a0cir04c -- 22:14:12.883 INFO [18382]: QUERY_STRING = /member/upload -- 22:14:12.883 INFO [18382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:14:12.934 INFO [18382]: COREGRADE is stopping... -- 22:14:12.934 DEBUG [18382]: Closing database connection -- 22:14:12.934 SQL [18382]: pgsql_close() -- 22:17:08.049 INFO [1205]: COREGRADE is starting... -- 22:17:08.049 INFO [1205]: Version from config: 1.0 -- 22:17:08.049 DEBUG [1205]: Connecting to database... -- 22:17:08.049 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:17:08.049 SQL [1205]: pgsql_db_connect() -- 22:17:08.053 DEBUG [1205]: Database connection successful -- 22:17:08.053 INFO [1205]: _SERVER found -- 22:17:08.053 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 22:17:08.053 INFO [1205]: SERVER_NAME = oameye.works.coregrade.com -- 22:17:08.053 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=j9j2jh8ei19nujj7cl1978r2a0cir04c -- 22:17:08.053 INFO [1205]: QUERY_STRING = /member/page -- 22:17:08.053 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:17:08.099 INFO [1205]: COREGRADE is stopping... -- 22:17:08.099 DEBUG [1205]: Closing database connection -- 22:17:08.099 SQL [1205]: pgsql_close() -- 22:17:08.581 INFO [1205]: COREGRADE is starting... -- 22:17:08.581 INFO [1205]: Version from config: 1.0 -- 22:17:08.581 DEBUG [1205]: Connecting to database... -- 22:17:08.582 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:17:08.582 SQL [1205]: pgsql_db_connect() -- 22:17:08.586 DEBUG [1205]: Database connection successful -- 22:17:08.586 INFO [1205]: _SERVER found -- 22:17:08.586 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 22:17:08.586 INFO [1205]: SERVER_NAME = oameye.works.coregrade.com -- 22:17:08.586 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=7n44olrji8ar8vubhelvovslqv62fv37 -- 22:17:08.586 INFO [1205]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:17:08.586 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:17:08.597 INFO [1205]: COREGRADE is stopping... -- 22:17:08.597 DEBUG [1205]: Closing database connection -- 22:17:08.597 SQL [1205]: pgsql_close() -- 22:17:11.944 INFO [1205]: COREGRADE is starting... -- 22:17:11.944 INFO [1205]: Version from config: 1.0 -- 22:17:11.945 DEBUG [1205]: Connecting to database... -- 22:17:11.945 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:17:11.945 SQL [1205]: pgsql_db_connect() -- 22:17:11.949 DEBUG [1205]: Database connection successful -- 22:17:11.949 INFO [1205]: _SERVER found -- 22:17:11.949 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 22:17:11.949 INFO [1205]: SERVER_NAME = oameye.works.coregrade.com -- 22:17:11.949 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=7n44olrji8ar8vubhelvovslqv62fv37 -- 22:17:11.949 INFO [1205]: QUERY_STRING = /member/viewCardAddAction -- 22:17:11.949 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:17:11.980 INFO [1205]: COREGRADE is stopping... -- 22:17:11.980 DEBUG [1205]: Closing database connection -- 22:17:11.980 SQL [1205]: pgsql_close() -- 22:17:23.955 INFO [18506]: COREGRADE is starting... -- 22:17:23.956 INFO [18506]: Version from config: 1.0 -- 22:17:23.956 DEBUG [18506]: Connecting to database... -- 22:17:23.956 DEBUG [18506]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:17:23.956 SQL [18506]: pgsql_db_connect() -- 22:17:23.960 DEBUG [18506]: Database connection successful -- 22:17:23.960 INFO [18506]: _SERVER found -- 22:17:23.960 INFO [18506]: REMOTE_ADDR = 192.168.1.13 -- 22:17:23.960 INFO [18506]: SERVER_NAME = oameye.works.coregrade.com -- 22:17:23.960 INFO [18506]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=7n44olrji8ar8vubhelvovslqv62fv37 -- 22:17:23.960 INFO [18506]: QUERY_STRING = /member/upload -- 22:17:23.960 INFO [18506]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:17:24.003 INFO [18506]: COREGRADE is stopping... -- 22:17:24.003 DEBUG [18506]: Closing database connection -- 22:17:24.003 SQL [18506]: pgsql_close() -- 22:17:24.074 INFO [18506]: COREGRADE is starting... -- 22:17:24.074 INFO [18506]: Version from config: 1.0 -- 22:17:24.074 DEBUG [18506]: Connecting to database... -- 22:17:24.075 DEBUG [18506]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:17:24.075 SQL [18506]: pgsql_db_connect() -- 22:17:24.079 DEBUG [18506]: Database connection successful -- 22:17:24.079 INFO [18506]: _SERVER found -- 22:17:24.079 INFO [18506]: REMOTE_ADDR = 192.168.1.13 -- 22:17:24.079 INFO [18506]: SERVER_NAME = oameye.works.coregrade.com -- 22:17:24.079 INFO [18506]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=7n44olrji8ar8vubhelvovslqv62fv37 -- 22:17:24.079 INFO [18506]: QUERY_STRING = /member/page -- 22:17:24.079 INFO [18506]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:17:24.121 INFO [18506]: COREGRADE is stopping... -- 22:17:24.121 DEBUG [18506]: Closing database connection -- 22:17:24.121 SQL [18506]: pgsql_close() -- 22:17:24.266 INFO [18380]: COREGRADE is starting... -- 22:17:24.266 INFO [18380]: Version from config: 1.0 -- 22:17:24.266 DEBUG [18380]: Connecting to database... -- 22:17:24.266 DEBUG [18380]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:17:24.266 SQL [18380]: pgsql_db_connect() -- 22:17:24.270 DEBUG [18380]: Database connection successful -- 22:17:24.270 INFO [18380]: _SERVER found -- 22:17:24.270 INFO [18380]: REMOTE_ADDR = 192.168.1.13 -- 22:17:24.270 INFO [18380]: SERVER_NAME = oameye.works.coregrade.com -- 22:17:24.270 INFO [18380]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=7n44olrji8ar8vubhelvovslqv62fv37 -- 22:17:24.270 INFO [18380]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:17:24.270 INFO [18380]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:17:24.282 INFO [18380]: COREGRADE is stopping... -- 22:17:24.282 DEBUG [18380]: Closing database connection -- 22:17:24.282 SQL [18380]: pgsql_close() -- 22:17:24.456 INFO [18380]: COREGRADE is starting... -- 22:17:24.456 INFO [18380]: Version from config: 1.0 -- 22:17:24.456 DEBUG [18380]: Connecting to database... -- 22:17:24.456 DEBUG [18380]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:17:24.456 SQL [18380]: pgsql_db_connect() -- 22:17:24.460 DEBUG [18380]: Database connection successful -- 22:17:24.460 INFO [18380]: _SERVER found -- 22:17:24.460 INFO [18380]: REMOTE_ADDR = 192.168.1.13 -- 22:17:24.460 INFO [18380]: SERVER_NAME = oameye.works.coregrade.com -- 22:17:24.460 INFO [18380]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=7n44olrji8ar8vubhelvovslqv62fv37 -- 22:17:24.460 INFO [18380]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:17:24.460 INFO [18380]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:17:24.471 INFO [18380]: COREGRADE is stopping... -- 22:17:24.471 DEBUG [18380]: Closing database connection -- 22:17:24.471 SQL [18380]: pgsql_close() -- 22:18:24.638 INFO [1376]: COREGRADE is starting... -- 22:18:24.638 INFO [1376]: Version from config: 1.0 -- 22:18:24.638 DEBUG [1376]: Connecting to database... -- 22:18:24.638 DEBUG [1376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:18:24.638 SQL [1376]: pgsql_db_connect() -- 22:18:24.642 DEBUG [1376]: Database connection successful -- 22:18:24.642 INFO [1376]: _SERVER found -- 22:18:24.642 INFO [1376]: REMOTE_ADDR = 192.168.1.13 -- 22:18:24.642 INFO [1376]: SERVER_NAME = oameye.works.coregrade.com -- 22:18:24.642 INFO [1376]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=7n44olrji8ar8vubhelvovslqv62fv37 -- 22:18:24.642 INFO [1376]: QUERY_STRING = /member/viewCardAddAction -- 22:18:24.642 INFO [1376]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:18:24.674 INFO [1376]: COREGRADE is stopping... -- 22:18:24.674 DEBUG [1376]: Closing database connection -- 22:18:24.674 SQL [1376]: pgsql_close() -- 22:18:31.170 INFO [18381]: COREGRADE is starting... -- 22:18:31.170 INFO [18381]: Version from config: 1.0 -- 22:18:31.170 DEBUG [18381]: Connecting to database... -- 22:18:31.170 DEBUG [18381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:18:31.170 SQL [18381]: pgsql_db_connect() -- 22:18:31.174 DEBUG [18381]: Database connection successful -- 22:18:31.174 INFO [18381]: _SERVER found -- 22:18:31.174 INFO [18381]: REMOTE_ADDR = 192.168.1.13 -- 22:18:31.174 INFO [18381]: SERVER_NAME = oameye.works.coregrade.com -- 22:18:31.174 INFO [18381]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=7n44olrji8ar8vubhelvovslqv62fv37 -- 22:18:31.174 INFO [18381]: QUERY_STRING = /member/upload -- 22:18:31.174 INFO [18381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:18:31.218 INFO [18381]: COREGRADE is stopping... -- 22:18:31.218 DEBUG [18381]: Closing database connection -- 22:18:31.218 SQL [18381]: pgsql_close() -- 22:18:31.283 INFO [18381]: COREGRADE is starting... -- 22:18:31.283 INFO [18381]: Version from config: 1.0 -- 22:18:31.283 DEBUG [18381]: Connecting to database... -- 22:18:31.283 DEBUG [18381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:18:31.283 SQL [18381]: pgsql_db_connect() -- 22:18:31.287 DEBUG [18381]: Database connection successful -- 22:18:31.287 INFO [18381]: _SERVER found -- 22:18:31.287 INFO [18381]: REMOTE_ADDR = 192.168.1.13 -- 22:18:31.287 INFO [18381]: SERVER_NAME = oameye.works.coregrade.com -- 22:18:31.287 INFO [18381]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=7n44olrji8ar8vubhelvovslqv62fv37 -- 22:18:31.287 INFO [18381]: QUERY_STRING = /member/page -- 22:18:31.287 INFO [18381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:18:31.329 INFO [18381]: COREGRADE is stopping... -- 22:18:31.329 DEBUG [18381]: Closing database connection -- 22:18:31.329 SQL [18381]: pgsql_close() -- 22:18:31.509 INFO [1238]: COREGRADE is starting... -- 22:18:31.509 INFO [1238]: Version from config: 1.0 -- 22:18:31.509 DEBUG [1238]: Connecting to database... -- 22:18:31.509 DEBUG [1238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:18:31.509 SQL [1238]: pgsql_db_connect() -- 22:18:31.513 DEBUG [1238]: Database connection successful -- 22:18:31.513 INFO [1238]: _SERVER found -- 22:18:31.513 INFO [1238]: REMOTE_ADDR = 192.168.1.13 -- 22:18:31.513 INFO [1238]: SERVER_NAME = oameye.works.coregrade.com -- 22:18:31.513 INFO [1238]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=7n44olrji8ar8vubhelvovslqv62fv37 -- 22:18:31.513 INFO [1238]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:18:31.513 INFO [1238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:18:31.525 INFO [1238]: COREGRADE is stopping... -- 22:18:31.525 DEBUG [1238]: Closing database connection -- 22:18:31.525 SQL [1238]: pgsql_close() -- 22:18:31.735 INFO [1238]: COREGRADE is starting... -- 22:18:31.735 INFO [1238]: Version from config: 1.0 -- 22:18:31.735 DEBUG [1238]: Connecting to database... -- 22:18:31.735 DEBUG [1238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:18:31.735 SQL [1238]: pgsql_db_connect() -- 22:18:31.739 DEBUG [1238]: Database connection successful -- 22:18:31.739 INFO [1238]: _SERVER found -- 22:18:31.739 INFO [1238]: REMOTE_ADDR = 192.168.1.13 -- 22:18:31.739 INFO [1238]: SERVER_NAME = oameye.works.coregrade.com -- 22:18:31.739 INFO [1238]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=7n44olrji8ar8vubhelvovslqv62fv37 -- 22:18:31.739 INFO [1238]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:18:31.739 INFO [1238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:18:31.750 INFO [1238]: COREGRADE is stopping... -- 22:18:31.750 DEBUG [1238]: Closing database connection -- 22:18:31.750 SQL [1238]: pgsql_close() -- 22:30:02.054 INFO [1206]: COREGRADE is starting... -- 22:30:02.055 INFO [1206]: Version from config: 1.0 -- 22:30:02.055 DEBUG [1206]: Connecting to database... -- 22:30:02.055 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:30:02.055 SQL [1206]: pgsql_db_connect() -- 22:30:02.059 DEBUG [1206]: Database connection successful -- 22:30:02.059 INFO [1206]: _SERVER found -- 22:30:02.059 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 22:30:02.059 INFO [1206]: SERVER_NAME = oameye.works.coregrade.com -- 22:30:02.059 INFO [1206]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=7n44olrji8ar8vubhelvovslqv62fv37 -- 22:30:02.059 INFO [1206]: QUERY_STRING = /member/page -- 22:30:02.059 INFO [1206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:30:02.106 INFO [1206]: COREGRADE is stopping... -- 22:30:02.106 DEBUG [1206]: Closing database connection -- 22:30:02.106 SQL [1206]: pgsql_close() -- 22:30:02.334 INFO [1209]: COREGRADE is starting... -- 22:30:02.335 INFO [1209]: Version from config: 1.0 -- 22:30:02.335 DEBUG [1209]: Connecting to database... -- 22:30:02.335 DEBUG [1209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:30:02.335 SQL [1209]: pgsql_db_connect() -- 22:30:02.339 DEBUG [1209]: Database connection successful -- 22:30:02.339 INFO [1209]: _SERVER found -- 22:30:02.339 INFO [1209]: REMOTE_ADDR = 192.168.1.13 -- 22:30:02.339 INFO [1209]: SERVER_NAME = oameye.works.coregrade.com -- 22:30:02.339 INFO [1209]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=j2v3cub3od0afldl5bh6cbkckf2vh7up -- 22:30:02.339 INFO [1209]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:30:02.339 INFO [1209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:30:02.351 INFO [1209]: COREGRADE is stopping... -- 22:30:02.351 DEBUG [1209]: Closing database connection -- 22:30:02.351 SQL [1209]: pgsql_close() -- 22:30:02.667 INFO [1209]: COREGRADE is starting... -- 22:30:02.667 INFO [1209]: Version from config: 1.0 -- 22:30:02.667 DEBUG [1209]: Connecting to database... -- 22:30:02.667 DEBUG [1209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:30:02.667 SQL [1209]: pgsql_db_connect() -- 22:30:02.671 DEBUG [1209]: Database connection successful -- 22:30:02.671 INFO [1209]: _SERVER found -- 22:30:02.671 INFO [1209]: REMOTE_ADDR = 192.168.1.13 -- 22:30:02.671 INFO [1209]: SERVER_NAME = oameye.works.coregrade.com -- 22:30:02.671 INFO [1209]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=j2v3cub3od0afldl5bh6cbkckf2vh7up -- 22:30:02.671 INFO [1209]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:30:02.671 INFO [1209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:30:02.682 INFO [1209]: COREGRADE is stopping... -- 22:30:02.682 DEBUG [1209]: Closing database connection -- 22:30:02.683 SQL [1209]: pgsql_close() -- 22:30:05.777 INFO [1209]: COREGRADE is starting... -- 22:30:05.778 INFO [1209]: Version from config: 1.0 -- 22:30:05.778 DEBUG [1209]: Connecting to database... -- 22:30:05.778 DEBUG [1209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:30:05.778 SQL [1209]: pgsql_db_connect() -- 22:30:05.782 DEBUG [1209]: Database connection successful -- 22:30:05.782 INFO [1209]: _SERVER found -- 22:30:05.782 INFO [1209]: REMOTE_ADDR = 192.168.1.13 -- 22:30:05.782 INFO [1209]: SERVER_NAME = oameye.works.coregrade.com -- 22:30:05.782 INFO [1209]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=j2v3cub3od0afldl5bh6cbkckf2vh7up -- 22:30:05.782 INFO [1209]: QUERY_STRING = /member/viewCardAddAction -- 22:30:05.782 INFO [1209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:30:05.814 INFO [1209]: COREGRADE is stopping... -- 22:30:05.814 DEBUG [1209]: Closing database connection -- 22:30:05.814 SQL [1209]: pgsql_close() -- 22:30:14.816 INFO [18382]: COREGRADE is starting... -- 22:30:14.816 INFO [18382]: Version from config: 1.0 -- 22:30:14.816 DEBUG [18382]: Connecting to database... -- 22:30:14.816 DEBUG [18382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:30:14.816 SQL [18382]: pgsql_db_connect() -- 22:30:14.820 DEBUG [18382]: Database connection successful -- 22:30:14.820 INFO [18382]: _SERVER found -- 22:30:14.820 INFO [18382]: REMOTE_ADDR = 192.168.1.13 -- 22:30:14.820 INFO [18382]: SERVER_NAME = oameye.works.coregrade.com -- 22:30:14.820 INFO [18382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=j2v3cub3od0afldl5bh6cbkckf2vh7up -- 22:30:14.820 INFO [18382]: QUERY_STRING = /member/upload -- 22:30:14.820 INFO [18382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:30:14.922 INFO [18382]: COREGRADE is stopping... -- 22:30:14.922 DEBUG [18382]: Closing database connection -- 22:30:14.922 SQL [18382]: pgsql_close() -- 22:30:14.997 INFO [18382]: COREGRADE is starting... -- 22:30:14.998 INFO [18382]: Version from config: 1.0 -- 22:30:14.998 DEBUG [18382]: Connecting to database... -- 22:30:14.998 DEBUG [18382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:30:14.998 SQL [18382]: pgsql_db_connect() -- 22:30:15.002 DEBUG [18382]: Database connection successful -- 22:30:15.002 INFO [18382]: _SERVER found -- 22:30:15.002 INFO [18382]: REMOTE_ADDR = 192.168.1.13 -- 22:30:15.002 INFO [18382]: SERVER_NAME = oameye.works.coregrade.com -- 22:30:15.002 INFO [18382]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=j2v3cub3od0afldl5bh6cbkckf2vh7up -- 22:30:15.002 INFO [18382]: QUERY_STRING = /member/page -- 22:30:15.002 INFO [18382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:30:15.044 INFO [18382]: COREGRADE is stopping... -- 22:30:15.044 DEBUG [18382]: Closing database connection -- 22:30:15.044 SQL [18382]: pgsql_close() -- 22:30:15.208 INFO [1208]: COREGRADE is starting... -- 22:30:15.208 INFO [1208]: Version from config: 1.0 -- 22:30:15.208 DEBUG [1208]: Connecting to database... -- 22:30:15.208 DEBUG [1208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:30:15.208 SQL [1208]: pgsql_db_connect() -- 22:30:15.212 DEBUG [1208]: Database connection successful -- 22:30:15.212 INFO [1208]: _SERVER found -- 22:30:15.212 INFO [1208]: REMOTE_ADDR = 192.168.1.13 -- 22:30:15.212 INFO [1208]: SERVER_NAME = oameye.works.coregrade.com -- 22:30:15.212 INFO [1208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=j2v3cub3od0afldl5bh6cbkckf2vh7up -- 22:30:15.212 INFO [1208]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:30:15.212 INFO [1208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:30:15.225 INFO [1208]: COREGRADE is stopping... -- 22:30:15.225 DEBUG [1208]: Closing database connection -- 22:30:15.225 SQL [1208]: pgsql_close() -- 22:30:15.532 INFO [1208]: COREGRADE is starting... -- 22:30:15.532 INFO [1208]: Version from config: 1.0 -- 22:30:15.532 DEBUG [1208]: Connecting to database... -- 22:30:15.532 DEBUG [1208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:30:15.532 SQL [1208]: pgsql_db_connect() -- 22:30:15.536 DEBUG [1208]: Database connection successful -- 22:30:15.536 INFO [1208]: _SERVER found -- 22:30:15.536 INFO [1208]: REMOTE_ADDR = 192.168.1.13 -- 22:30:15.536 INFO [1208]: SERVER_NAME = oameye.works.coregrade.com -- 22:30:15.536 INFO [1208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=j2v3cub3od0afldl5bh6cbkckf2vh7up -- 22:30:15.536 INFO [1208]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:30:15.536 INFO [1208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:30:15.548 INFO [1208]: COREGRADE is stopping... -- 22:30:15.548 DEBUG [1208]: Closing database connection -- 22:30:15.548 SQL [1208]: pgsql_close() -- 22:31:09.936 INFO [18380]: COREGRADE is starting... -- 22:31:09.936 INFO [18380]: Version from config: 1.0 -- 22:31:09.936 DEBUG [18380]: Connecting to database... -- 22:31:09.936 DEBUG [18380]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:31:09.936 SQL [18380]: pgsql_db_connect() -- 22:31:09.940 DEBUG [18380]: Database connection successful -- 22:31:09.940 INFO [18380]: _SERVER found -- 22:31:09.940 INFO [18380]: REMOTE_ADDR = 192.168.1.13 -- 22:31:09.940 INFO [18380]: SERVER_NAME = oameye.works.coregrade.com -- 22:31:09.940 INFO [18380]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278 -- 22:31:09.940 INFO [18380]: QUERY_STRING = -- 22:31:09.940 INFO [18380]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:31:09.973 INFO [18380]: COREGRADE is stopping... -- 22:31:09.973 DEBUG [18380]: Closing database connection -- 22:31:09.973 SQL [18380]: pgsql_close() -- 22:31:10.679 INFO [18381]: COREGRADE is starting... -- 22:31:10.680 INFO [18381]: Version from config: 1.0 -- 22:31:10.680 DEBUG [18381]: Connecting to database... -- 22:31:10.680 DEBUG [18381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:31:10.680 SQL [18381]: pgsql_db_connect() -- 22:31:10.684 DEBUG [18381]: Database connection successful -- 22:31:10.684 INFO [18381]: _SERVER found -- 22:31:10.684 INFO [18381]: REMOTE_ADDR = 192.168.1.13 -- 22:31:10.684 INFO [18381]: SERVER_NAME = oameye.works.coregrade.com -- 22:31:10.684 INFO [18381]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=as1of770vq3ph8j402a8k6265qrc4uma -- 22:31:10.684 INFO [18381]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 22:31:10.684 INFO [18381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:31:10.695 INFO [18381]: COREGRADE is stopping... -- 22:31:10.695 DEBUG [18381]: Closing database connection -- 22:31:10.695 SQL [18381]: pgsql_close() -- 22:31:10.764 INFO [18381]: COREGRADE is starting... -- 22:31:10.764 INFO [18381]: Version from config: 1.0 -- 22:31:10.764 DEBUG [18381]: Connecting to database... -- 22:31:10.764 DEBUG [18381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:31:10.764 SQL [18381]: pgsql_db_connect() -- 22:31:10.768 DEBUG [18381]: Database connection successful -- 22:31:10.768 INFO [18381]: _SERVER found -- 22:31:10.768 INFO [18381]: REMOTE_ADDR = 192.168.1.13 -- 22:31:10.768 INFO [18381]: SERVER_NAME = oameye.works.coregrade.com -- 22:31:10.768 INFO [18381]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=as1of770vq3ph8j402a8k6265qrc4uma; _gat_gtag_UA_54829827_2=1 -- 22:31:10.768 INFO [18381]: QUERY_STRING = /assets/img/footer_1.jpg -- 22:31:10.768 INFO [18381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:31:10.779 INFO [18381]: COREGRADE is stopping... -- 22:31:10.779 DEBUG [18381]: Closing database connection -- 22:31:10.779 SQL [18381]: pgsql_close() -- 22:31:12.855 INFO [18381]: COREGRADE is starting... -- 22:31:12.855 INFO [18381]: Version from config: 1.0 -- 22:31:12.855 DEBUG [18381]: Connecting to database... -- 22:31:12.855 DEBUG [18381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:31:12.855 SQL [18381]: pgsql_db_connect() -- 22:31:12.859 INFO [1376]: COREGRADE is starting... -- 22:31:12.859 INFO [1376]: Version from config: 1.0 -- 22:31:12.859 DEBUG [1376]: Connecting to database... -- 22:31:12.859 DEBUG [1376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:31:12.859 SQL [1376]: pgsql_db_connect() -- 22:31:12.859 DEBUG [18381]: Database connection successful -- 22:31:12.859 INFO [18381]: _SERVER found -- 22:31:12.859 INFO [18381]: REMOTE_ADDR = 192.168.1.13 -- 22:31:12.859 INFO [18381]: SERVER_NAME = oameye.works.coregrade.com -- 22:31:12.859 INFO [18381]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=as1of770vq3ph8j402a8k6265qrc4uma; _gat_gtag_UA_54829827_2=1 -- 22:31:12.859 INFO [18381]: QUERY_STRING = /welcome/viewLogin -- 22:31:12.859 INFO [18381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:31:12.890 INFO [18381]: COREGRADE is stopping... -- 22:31:12.890 DEBUG [18381]: Closing database connection -- 22:31:12.890 SQL [18381]: pgsql_close() -- 22:31:12.863 DEBUG [1376]: Database connection successful -- 22:31:12.863 INFO [1376]: _SERVER found -- 22:31:12.863 INFO [1376]: REMOTE_ADDR = 192.168.1.13 -- 22:31:12.863 INFO [1376]: SERVER_NAME = oameye.works.coregrade.com -- 22:31:12.863 INFO [1376]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=as1of770vq3ph8j402a8k6265qrc4uma; _gat_gtag_UA_54829827_2=1 -- 22:31:12.863 INFO [1376]: QUERY_STRING = /auth -- 22:31:12.863 INFO [1376]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:31:12.895 INFO [1376]: COREGRADE is stopping... -- 22:31:12.895 DEBUG [1376]: Closing database connection -- 22:31:12.895 SQL [1376]: pgsql_close() -- 22:31:12.902 INFO [18381]: COREGRADE is starting... -- 22:31:12.902 INFO [18381]: Version from config: 1.0 -- 22:31:12.902 DEBUG [18381]: Connecting to database... -- 22:31:12.902 DEBUG [18381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:31:12.902 SQL [18381]: pgsql_db_connect() -- 22:31:12.906 DEBUG [18381]: Database connection successful -- 22:31:12.906 INFO [18381]: _SERVER found -- 22:31:12.906 INFO [18381]: REMOTE_ADDR = 192.168.1.13 -- 22:31:12.906 INFO [18381]: SERVER_NAME = oameye.works.coregrade.com -- 22:31:12.906 INFO [18381]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=as1of770vq3ph8j402a8k6265qrc4uma; _gat_gtag_UA_54829827_2=1 -- 22:31:12.906 INFO [18381]: QUERY_STRING = /auth/index -- 22:31:12.906 INFO [18381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:31:12.937 INFO [18381]: COREGRADE is stopping... -- 22:31:12.937 DEBUG [18381]: Closing database connection -- 22:31:12.937 SQL [18381]: pgsql_close() -- 22:31:13.095 INFO [1376]: COREGRADE is starting... -- 22:31:13.096 INFO [1376]: Version from config: 1.0 -- 22:31:13.096 DEBUG [1376]: Connecting to database... -- 22:31:13.096 DEBUG [1376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:31:13.096 SQL [1376]: pgsql_db_connect() -- 22:31:13.100 DEBUG [1376]: Database connection successful -- 22:31:13.100 INFO [1376]: _SERVER found -- 22:31:13.100 INFO [1376]: REMOTE_ADDR = 192.168.1.13 -- 22:31:13.100 INFO [1376]: SERVER_NAME = oameye.works.coregrade.com -- 22:31:13.100 INFO [1376]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=as1of770vq3ph8j402a8k6265qrc4uma; _gat_gtag_UA_54829827_2=1 -- 22:31:13.100 INFO [1376]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:31:13.100 INFO [1376]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:31:13.111 INFO [1376]: COREGRADE is stopping... -- 22:31:13.111 DEBUG [1376]: Closing database connection -- 22:31:13.111 SQL [1376]: pgsql_close() -- 22:31:13.200 INFO [1376]: COREGRADE is starting... -- 22:31:13.200 INFO [1376]: Version from config: 1.0 -- 22:31:13.200 DEBUG [1376]: Connecting to database... -- 22:31:13.200 DEBUG [1376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:31:13.200 SQL [1376]: pgsql_db_connect() -- 22:31:13.204 DEBUG [1376]: Database connection successful -- 22:31:13.204 INFO [1376]: _SERVER found -- 22:31:13.204 INFO [1376]: REMOTE_ADDR = 192.168.1.13 -- 22:31:13.204 INFO [1376]: SERVER_NAME = oameye.works.coregrade.com -- 22:31:13.204 INFO [1376]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=as1of770vq3ph8j402a8k6265qrc4uma; _gat_gtag_UA_54829827_2=1 -- 22:31:13.204 INFO [1376]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:31:13.204 INFO [1376]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:31:13.216 INFO [1376]: COREGRADE is stopping... -- 22:31:13.216 DEBUG [1376]: Closing database connection -- 22:31:13.216 SQL [1376]: pgsql_close() -- 22:31:14.161 INFO [1209]: COREGRADE is starting... -- 22:31:14.161 INFO [1209]: Version from config: 1.0 -- 22:31:14.161 DEBUG [1209]: Connecting to database... -- 22:31:14.161 DEBUG [1209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:31:14.161 SQL [1209]: pgsql_db_connect() -- 22:31:14.165 DEBUG [1209]: Database connection successful -- 22:31:14.165 INFO [1209]: _SERVER found -- 22:31:14.165 INFO [1209]: REMOTE_ADDR = 192.168.1.13 -- 22:31:14.165 INFO [1209]: SERVER_NAME = oameye.works.coregrade.com -- 22:31:14.165 INFO [1209]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=j2v3cub3od0afldl5bh6cbkckf2vh7up -- 22:31:14.165 INFO [1209]: QUERY_STRING = /member/viewCardAddAction -- 22:31:14.165 INFO [1209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:31:14.197 INFO [1209]: COREGRADE is stopping... -- 22:31:14.197 DEBUG [1209]: Closing database connection -- 22:31:14.197 SQL [1209]: pgsql_close() -- 22:31:16.601 INFO [1376]: COREGRADE is starting... -- 22:31:16.602 INFO [1376]: Version from config: 1.0 -- 22:31:16.602 DEBUG [1376]: Connecting to database... -- 22:31:16.602 DEBUG [1376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:31:16.602 SQL [1376]: pgsql_db_connect() -- 22:31:16.636 INFO [1376]: COREGRADE is starting... -- 22:31:16.636 INFO [1376]: Version from config: 1.0 -- 22:31:16.636 DEBUG [1376]: Connecting to database... -- 22:31:16.636 DEBUG [1376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:31:16.636 SQL [1376]: pgsql_db_connect() -- 22:31:16.640 DEBUG [1376]: Database connection successful -- 22:31:16.640 INFO [1376]: _SERVER found -- 22:31:16.640 INFO [1376]: REMOTE_ADDR = 192.168.1.13 -- 22:31:16.640 INFO [1376]: SERVER_NAME = oameye.works.coregrade.com -- 22:31:16.640 INFO [1376]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=as1of770vq3ph8j402a8k6265qrc4uma; _gat_gtag_UA_54829827_2=1 -- 22:31:16.640 INFO [1376]: QUERY_STRING = -- 22:31:16.640 INFO [1376]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:31:16.640 INFO [1376]: SystemStatus()09-09-********~************ -- 22:31:16.640 INFO [1376]: long coregrade_api_main(CVars in, CVars &out) -- 22:31:16.640 INFO [1376]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 22:31:16.640 INFO [1376]: account calls -- 22:31:16.640 INFO [1376]: account_calls() -- 22:31:16.640 INFO [1376]: LoginCoreGradeAccount() -- 22:31:16.640 FLOG_MAX [1376]: REQ_STRING(username) -- 22:31:16.640 FLOG_MAX [1376]: REQ_STRING(password) -- 22:31:16.640 FLOG_MAX [1376]: REQ_STRING(sessionid) -- 22:31:16.640 FLOG_MAX [1376]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:31:16.641 SQL [1376]: pgsql_query() -- 22:31:16.641 SQL [1376]: About to run query: -- 22:31:16.641 SQL [1376]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 22:31:16.644 SQL [1376]: Found rows: 1 -- 22:31:16.644 FLOG_MAX [1376]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=15 -- 22:31:16.644 INFO [1376]: long SessionCheck(long uid, const char *sessionid, int create ) -- 22:31:16.644 SQL [1376]: pgsql_exec() -- 22:31:16.644 SQL [1376]: About to run query: -- 22:31:16.644 SQL [1376]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 22:31:16.646 SQL [1376]: PQcmdTuples: 1 -- 22:31:16.646 SQL [1376]: Affected rows: 1 -- 22:31:16.646 SQL [1376]: pgsql_exec() -- 22:31:16.646 SQL [1376]: About to run query: -- 22:31:16.646 SQL [1376]: DELETE FROM members_session WHERE member_id=7 -- 22:31:16.646 SQL [1376]: PQcmdTuples: 0 -- 22:31:16.646 SQL [1376]: Affected rows: 0 -- 22:31:16.646 SQL [1376]: pgsql_query() -- 22:31:16.646 SQL [1376]: About to run query: -- 22:31:16.646 SQL [1376]: SELECT * FROM members_session WHERE member_id=7 AND session<>'C2A10B66634C8F488323C567B869C4F4' -- 22:31:16.647 SQL [1376]: Found rows: 0 -- 22:31:16.647 SQL [1376]: Found rows: 0 -- 22:31:16.647 FLOG_MAX [1376]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:31:16.647 SQL [1376]: pgsql_query() -- 22:31:16.647 SQL [1376]: About to run query: -- 22:31:16.647 SQL [1376]: SELECT * FROM members_session WHERE member_id=7 AND session='C2A10B66634C8F488323C567B869C4F4' -- 22:31:16.647 SQL [1376]: Found rows: 0 -- 22:31:16.647 SQL [1376]: Found rows: 0 -- 22:31:16.647 FLOG_MAX [1376]: insert_db_record() -- 22:31:16.647 SQL [1376]: pgsql_exec() -- 22:31:16.647 SQL [1376]: About to run query: -- 22:31:16.647 SQL [1376]: INSERT INTO members_session (member_id,session) VALUES ('7','C2A10B66634C8F488323C567B869C4F4') -- 22:31:16.649 SQL [1376]: PQcmdTuples: 1 -- 22:31:16.649 SQL [1376]: Affected rows: 1 -- 22:31:16.649 FLOG_MAX [1376]: SELECT currval('members_session_id_seq') -- 22:31:16.649 SQL [1376]: pgsql_query() -- 22:31:16.649 SQL [1376]: About to run query: -- 22:31:16.649 SQL [1376]: SELECT currval('members_session_id_seq') -- 22:31:16.649 SQL [1376]: Found rows: 1 -- 22:31:16.649 INFO [1376]: CreateDefaultPage() -- 22:31:16.649 FLOG_MAX [1376]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:31:16.649 SQL [1376]: pgsql_query() -- 22:31:16.649 SQL [1376]: About to run query: -- 22:31:16.649 SQL [1376]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 22:31:16.650 SQL [1376]: Found rows: 1 -- 22:31:16.650 FLOG_MAX [1376]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 22:31:16.650 SQL [1376]: pgsql_query() -- 22:31:16.650 SQL [1376]: About to run query: -- 22:31:16.650 SQL [1376]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 22:31:16.650 SQL [1376]: Found rows: 1 -- 22:31:16.650 INFO [1376]: /CreateDefaultPage() -- 22:31:16.650 INFO [1376]: /LoginCoreGradeAccount() -- 22:31:16.650 INFO [1376]: RET: added=2020-02-05 09:42:12.816064 -- 22:31:16.650 INFO [1376]: RET: email=tokslaw@chiefsoft.com -- 22:31:16.650 INFO [1376]: RET: firstname=Tokunbo -- 22:31:16.650 INFO [1376]: RET: id=7 -- 22:31:16.650 INFO [1376]: RET: last_login= -- 22:31:16.650 INFO [1376]: RET: lastname=Lawal -- 22:31:16.650 INFO [1376]: RET: loc=192.168.1.13 -- 22:31:16.650 INFO [1376]: RET: member_id=7 -- 22:31:16.650 INFO [1376]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 22:31:16.650 INFO [1376]: RET: phone= -- 22:31:16.650 INFO [1376]: RET: pid= -- 22:31:16.650 INFO [1376]: RET: result=YES I GET TO BACK END -- 22:31:16.650 INFO [1376]: RET: sessionid=C2A10B66634C8F488323C567B869C4F4 -- 22:31:16.650 INFO [1376]: RET: status=1 -- 22:31:16.650 INFO [1376]: RET: stauts=OK -- 22:31:16.650 INFO [1376]: RET: username=tokslaw@chiefsoft.com -- 22:31:16.650 INFO [1376]: RET: verified= -- 22:31:16.652 INFO [1376]: COREGRADE is stopping... -- 22:31:16.652 DEBUG [1376]: Closing database connection -- 22:31:16.652 SQL [1376]: pgsql_close() -- 22:31:16.606 DEBUG [1376]: Database connection successful -- 22:31:16.606 INFO [1376]: _SERVER found -- 22:31:16.606 INFO [1376]: REMOTE_ADDR = 192.168.1.13 -- 22:31:16.606 INFO [1376]: SERVER_NAME = oameye.works.coregrade.com -- 22:31:16.606 INFO [1376]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=as1of770vq3ph8j402a8k6265qrc4uma; _gat_gtag_UA_54829827_2=1 -- 22:31:16.606 INFO [1376]: QUERY_STRING = /auth -- 22:31:16.606 INFO [1376]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:31:16.652 INFO [1376]: COREGRADE is stopping... -- 22:31:16.652 DEBUG [1376]: Closing database connection -- 22:31:16.652 SQL [1376]: pgsql_close() -- 22:31:16.666 INFO [1376]: COREGRADE is starting... -- 22:31:16.666 INFO [1376]: Version from config: 1.0 -- 22:31:16.666 DEBUG [1376]: Connecting to database... -- 22:31:16.666 DEBUG [1376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:31:16.666 SQL [1376]: pgsql_db_connect() -- 22:31:16.670 DEBUG [1376]: Database connection successful -- 22:31:16.670 INFO [1376]: _SERVER found -- 22:31:16.670 INFO [1376]: REMOTE_ADDR = 192.168.1.13 -- 22:31:16.670 INFO [1376]: SERVER_NAME = oameye.works.coregrade.com -- 22:31:16.670 INFO [1376]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=as1of770vq3ph8j402a8k6265qrc4uma; _gat_gtag_UA_54829827_2=1 -- 22:31:16.670 INFO [1376]: QUERY_STRING = /member/index -- 22:31:16.670 INFO [1376]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:31:16.710 INFO [1376]: COREGRADE is stopping... -- 22:31:16.710 DEBUG [1376]: Closing database connection -- 22:31:16.710 SQL [1376]: pgsql_close() -- 22:31:17.227 INFO [18381]: COREGRADE is starting... -- 22:31:17.227 INFO [18381]: Version from config: 1.0 -- 22:31:17.227 DEBUG [18381]: Connecting to database... -- 22:31:17.227 DEBUG [18381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:31:17.227 SQL [18381]: pgsql_db_connect() -- 22:31:17.231 DEBUG [18381]: Database connection successful -- 22:31:17.231 INFO [18381]: _SERVER found -- 22:31:17.231 INFO [18381]: REMOTE_ADDR = 192.168.1.13 -- 22:31:17.231 INFO [18381]: SERVER_NAME = oameye.works.coregrade.com -- 22:31:17.231 INFO [18381]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=as1of770vq3ph8j402a8k6265qrc4uma; _gat_gtag_UA_54829827_2=1 -- 22:31:17.231 INFO [18381]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:31:17.231 INFO [18381]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:31:17.242 INFO [18381]: COREGRADE is stopping... -- 22:31:17.242 DEBUG [18381]: Closing database connection -- 22:31:17.242 SQL [18381]: pgsql_close() -- 22:31:17.638 INFO [1209]: COREGRADE is starting... -- 22:31:17.638 INFO [1209]: Version from config: 1.0 -- 22:31:17.638 DEBUG [1209]: Connecting to database... -- 22:31:17.638 DEBUG [1209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:31:17.638 SQL [1209]: pgsql_db_connect() -- 22:31:17.642 DEBUG [1209]: Database connection successful -- 22:31:17.642 INFO [1209]: _SERVER found -- 22:31:17.642 INFO [1209]: REMOTE_ADDR = 192.168.1.13 -- 22:31:17.642 INFO [1209]: SERVER_NAME = oameye.works.coregrade.com -- 22:31:17.642 INFO [1209]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=as1of770vq3ph8j402a8k6265qrc4uma; _gat_gtag_UA_54829827_2=1 -- 22:31:17.642 INFO [1209]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:31:17.642 INFO [1209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:31:17.654 INFO [1209]: COREGRADE is stopping... -- 22:31:17.654 DEBUG [1209]: Closing database connection -- 22:31:17.654 SQL [1209]: pgsql_close() -- 22:31:18.860 INFO [1209]: COREGRADE is starting... -- 22:31:18.861 INFO [1209]: Version from config: 1.0 -- 22:31:18.861 DEBUG [1209]: Connecting to database... -- 22:31:18.861 DEBUG [1209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:31:18.861 SQL [1209]: pgsql_db_connect() -- 22:31:18.865 DEBUG [1209]: Database connection successful -- 22:31:18.865 INFO [1209]: _SERVER found -- 22:31:18.865 INFO [1209]: REMOTE_ADDR = 192.168.1.13 -- 22:31:18.865 INFO [1209]: SERVER_NAME = oameye.works.coregrade.com -- 22:31:18.865 INFO [1209]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=as1of770vq3ph8j402a8k6265qrc4uma; _gat_gtag_UA_54829827_2=1 -- 22:31:18.865 INFO [1209]: QUERY_STRING = /member/page -- 22:31:18.865 INFO [1209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:31:18.907 INFO [1209]: COREGRADE is stopping... -- 22:31:18.907 DEBUG [1209]: Closing database connection -- 22:31:18.907 SQL [1209]: pgsql_close() -- 22:31:19.227 INFO [1206]: COREGRADE is starting... -- 22:31:19.227 INFO [1206]: Version from config: 1.0 -- 22:31:19.227 DEBUG [1206]: Connecting to database... -- 22:31:19.227 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:31:19.227 SQL [1206]: pgsql_db_connect() -- 22:31:19.231 DEBUG [1206]: Database connection successful -- 22:31:19.231 INFO [1206]: _SERVER found -- 22:31:19.232 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 22:31:19.232 INFO [1206]: SERVER_NAME = oameye.works.coregrade.com -- 22:31:19.232 INFO [1206]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=as1of770vq3ph8j402a8k6265qrc4uma; _gat_gtag_UA_54829827_2=1 -- 22:31:19.232 INFO [1206]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:31:19.232 INFO [1206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:31:19.243 INFO [1206]: COREGRADE is stopping... -- 22:31:19.243 DEBUG [1206]: Closing database connection -- 22:31:19.243 SQL [1206]: pgsql_close() -- 22:31:19.454 INFO [1205]: COREGRADE is starting... -- 22:31:19.455 INFO [1205]: Version from config: 1.0 -- 22:31:19.455 DEBUG [1205]: Connecting to database... -- 22:31:19.455 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:31:19.455 SQL [1205]: pgsql_db_connect() -- 22:31:19.460 DEBUG [1205]: Database connection successful -- 22:31:19.460 INFO [1205]: _SERVER found -- 22:31:19.460 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 22:31:19.460 INFO [1205]: SERVER_NAME = oameye.works.coregrade.com -- 22:31:19.460 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=as1of770vq3ph8j402a8k6265qrc4uma; _gat_gtag_UA_54829827_2=1 -- 22:31:19.460 INFO [1205]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:31:19.460 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:31:19.473 INFO [1205]: COREGRADE is stopping... -- 22:31:19.473 DEBUG [1205]: Closing database connection -- 22:31:19.473 SQL [1205]: pgsql_close() -- 22:31:22.487 INFO [1205]: COREGRADE is starting... -- 22:31:22.487 INFO [1205]: Version from config: 1.0 -- 22:31:22.487 DEBUG [1205]: Connecting to database... -- 22:31:22.487 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:31:22.487 SQL [1205]: pgsql_db_connect() -- 22:31:22.491 DEBUG [1205]: Database connection successful -- 22:31:22.491 INFO [1205]: _SERVER found -- 22:31:22.491 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 22:31:22.491 INFO [1205]: SERVER_NAME = oameye.works.coregrade.com -- 22:31:22.491 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=j2v3cub3od0afldl5bh6cbkckf2vh7up -- 22:31:22.491 INFO [1205]: QUERY_STRING = /member/upload -- 22:31:22.491 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:31:22.541 INFO [1205]: COREGRADE is stopping... -- 22:31:22.541 DEBUG [1205]: Closing database connection -- 22:31:22.541 SQL [1205]: pgsql_close() -- 22:31:22.834 INFO [1205]: COREGRADE is starting... -- 22:31:22.835 INFO [1205]: Version from config: 1.0 -- 22:31:22.835 DEBUG [1205]: Connecting to database... -- 22:31:22.835 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:31:22.835 SQL [1205]: pgsql_db_connect() -- 22:31:22.839 DEBUG [1205]: Database connection successful -- 22:31:22.839 INFO [1205]: _SERVER found -- 22:31:22.839 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 22:31:22.839 INFO [1205]: SERVER_NAME = oameye.works.coregrade.com -- 22:31:22.839 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=j2v3cub3od0afldl5bh6cbkckf2vh7up -- 22:31:22.839 INFO [1205]: QUERY_STRING = /member/page -- 22:31:22.839 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:31:22.880 INFO [1205]: COREGRADE is stopping... -- 22:31:22.880 DEBUG [1205]: Closing database connection -- 22:31:22.880 SQL [1205]: pgsql_close() -- 22:31:23.549 INFO [1205]: COREGRADE is starting... -- 22:31:23.550 INFO [1205]: Version from config: 1.0 -- 22:31:23.550 DEBUG [1205]: Connecting to database... -- 22:31:23.550 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:31:23.550 SQL [1205]: pgsql_db_connect() -- 22:31:23.554 DEBUG [1205]: Database connection successful -- 22:31:23.554 INFO [1205]: _SERVER found -- 22:31:23.554 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 22:31:23.554 INFO [1205]: SERVER_NAME = oameye.works.coregrade.com -- 22:31:23.554 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=j2v3cub3od0afldl5bh6cbkckf2vh7up -- 22:31:23.554 INFO [1205]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:31:23.554 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:31:23.567 INFO [1205]: COREGRADE is stopping... -- 22:31:23.567 DEBUG [1205]: Closing database connection -- 22:31:23.567 SQL [1205]: pgsql_close() -- 22:31:23.673 INFO [1206]: COREGRADE is starting... -- 22:31:23.673 INFO [1206]: Version from config: 1.0 -- 22:31:23.673 DEBUG [1206]: Connecting to database... -- 22:31:23.673 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:31:23.673 SQL [1206]: pgsql_db_connect() -- 22:31:23.677 DEBUG [1206]: Database connection successful -- 22:31:23.677 INFO [1206]: _SERVER found -- 22:31:23.677 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 22:31:23.677 INFO [1206]: SERVER_NAME = oameye.works.coregrade.com -- 22:31:23.677 INFO [1206]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=j2v3cub3od0afldl5bh6cbkckf2vh7up -- 22:31:23.677 INFO [1206]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:31:23.677 INFO [1206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:31:23.688 INFO [1206]: COREGRADE is stopping... -- 22:31:23.688 DEBUG [1206]: Closing database connection -- 22:31:23.688 SQL [1206]: pgsql_close() -- 22:31:26.408 INFO [1206]: COREGRADE is starting... -- 22:31:26.408 INFO [1206]: Version from config: 1.0 -- 22:31:26.408 DEBUG [1206]: Connecting to database... -- 22:31:26.408 DEBUG [1206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:31:26.408 SQL [1206]: pgsql_db_connect() -- 22:31:26.413 DEBUG [1206]: Database connection successful -- 22:31:26.413 INFO [1206]: _SERVER found -- 22:31:26.413 INFO [1206]: REMOTE_ADDR = 192.168.1.13 -- 22:31:26.413 INFO [1206]: SERVER_NAME = oameye.works.coregrade.com -- 22:31:26.413 INFO [1206]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=as1of770vq3ph8j402a8k6265qrc4uma; _gat_gtag_UA_54829827_2=1 -- 22:31:26.413 INFO [1206]: QUERY_STRING = /member/configure -- 22:31:26.413 INFO [1206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:31:26.456 INFO [1206]: COREGRADE is stopping... -- 22:31:26.456 DEBUG [1206]: Closing database connection -- 22:31:26.456 SQL [1206]: pgsql_close() -- 22:31:27.166 INFO [18506]: COREGRADE is starting... -- 22:31:27.167 INFO [18506]: Version from config: 1.0 -- 22:31:27.167 DEBUG [18506]: Connecting to database... -- 22:31:27.167 DEBUG [18506]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:31:27.167 SQL [18506]: pgsql_db_connect() -- 22:31:27.171 DEBUG [18506]: Database connection successful -- 22:31:27.171 INFO [18506]: _SERVER found -- 22:31:27.171 INFO [18506]: REMOTE_ADDR = 192.168.1.13 -- 22:31:27.171 INFO [18506]: SERVER_NAME = oameye.works.coregrade.com -- 22:31:27.171 INFO [18506]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=as1of770vq3ph8j402a8k6265qrc4uma; _gat_gtag_UA_54829827_2=1 -- 22:31:27.171 INFO [18506]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 22:31:27.171 INFO [18506]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:31:27.182 INFO [18506]: COREGRADE is stopping... -- 22:31:27.182 DEBUG [18506]: Closing database connection -- 22:31:27.182 SQL [18506]: pgsql_close() -- 22:31:27.384 INFO [18506]: COREGRADE is starting... -- 22:31:27.384 INFO [18506]: Version from config: 1.0 -- 22:31:27.384 DEBUG [18506]: Connecting to database... -- 22:31:27.384 DEBUG [18506]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:31:27.384 SQL [18506]: pgsql_db_connect() -- 22:31:27.388 DEBUG [18506]: Database connection successful -- 22:31:27.388 INFO [18506]: _SERVER found -- 22:31:27.388 INFO [18506]: REMOTE_ADDR = 192.168.1.13 -- 22:31:27.388 INFO [18506]: SERVER_NAME = oameye.works.coregrade.com -- 22:31:27.388 INFO [18506]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=as1of770vq3ph8j402a8k6265qrc4uma; _gat_gtag_UA_54829827_2=1 -- 22:31:27.388 INFO [18506]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:31:27.388 INFO [18506]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:31:27.399 INFO [18506]: COREGRADE is stopping... -- 22:31:27.399 DEBUG [18506]: Closing database connection -- 22:31:27.399 SQL [18506]: pgsql_close() -- 22:31:32.178 INFO [18506]: COREGRADE is starting... -- 22:31:32.178 INFO [18506]: Version from config: 1.0 -- 22:31:32.178 DEBUG [18506]: Connecting to database... -- 22:31:32.178 DEBUG [18506]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:31:32.178 SQL [18506]: pgsql_db_connect() -- 22:31:32.182 DEBUG [18506]: Database connection successful -- 22:31:32.182 INFO [18506]: _SERVER found -- 22:31:32.182 INFO [18506]: REMOTE_ADDR = 192.168.1.13 -- 22:31:32.182 INFO [18506]: SERVER_NAME = oameye.works.coregrade.com -- 22:31:32.182 INFO [18506]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=as1of770vq3ph8j402a8k6265qrc4uma; _gat_gtag_UA_54829827_2=1 -- 22:31:32.182 INFO [18506]: QUERY_STRING = /member -- 22:31:32.182 INFO [18506]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:31:32.222 INFO [18506]: COREGRADE is stopping... -- 22:31:32.222 DEBUG [18506]: Closing database connection -- 22:31:32.222 SQL [18506]: pgsql_close() -- 22:31:32.557 INFO [18506]: COREGRADE is starting... -- 22:31:32.557 INFO [18506]: Version from config: 1.0 -- 22:31:32.557 DEBUG [18506]: Connecting to database... -- 22:31:32.557 DEBUG [18506]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:31:32.557 SQL [18506]: pgsql_db_connect() -- 22:31:32.561 DEBUG [18506]: Database connection successful -- 22:31:32.561 INFO [18506]: _SERVER found -- 22:31:32.561 INFO [18506]: REMOTE_ADDR = 192.168.1.13 -- 22:31:32.561 INFO [18506]: SERVER_NAME = oameye.works.coregrade.com -- 22:31:32.561 INFO [18506]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=as1of770vq3ph8j402a8k6265qrc4uma; _gat_gtag_UA_54829827_2=1 -- 22:31:32.561 INFO [18506]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:31:32.561 INFO [18506]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:31:32.572 INFO [18506]: COREGRADE is stopping... -- 22:31:32.572 DEBUG [18506]: Closing database connection -- 22:31:32.572 SQL [18506]: pgsql_close() -- 22:32:11.779 INFO [1209]: COREGRADE is starting... -- 22:32:11.780 INFO [1209]: Version from config: 1.0 -- 22:32:11.780 DEBUG [1209]: Connecting to database... -- 22:32:11.780 DEBUG [1209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:32:11.780 SQL [1209]: pgsql_db_connect() -- 22:32:11.784 DEBUG [1209]: Database connection successful -- 22:32:11.784 INFO [1209]: _SERVER found -- 22:32:11.784 INFO [1209]: REMOTE_ADDR = 192.168.1.13 -- 22:32:11.784 INFO [1209]: SERVER_NAME = oameye.works.coregrade.com -- 22:32:11.784 INFO [1209]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=as1of770vq3ph8j402a8k6265qrc4uma -- 22:32:11.784 INFO [1209]: QUERY_STRING = /member/page -- 22:32:11.784 INFO [1209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:32:11.826 INFO [1209]: COREGRADE is stopping... -- 22:32:11.826 DEBUG [1209]: Closing database connection -- 22:32:11.826 SQL [1209]: pgsql_close() -- 22:32:12.279 INFO [1238]: COREGRADE is starting... -- 22:32:12.280 INFO [1238]: Version from config: 1.0 -- 22:32:12.280 DEBUG [1238]: Connecting to database... -- 22:32:12.280 DEBUG [1238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:32:12.280 SQL [1238]: pgsql_db_connect() -- 22:32:12.284 DEBUG [1238]: Database connection successful -- 22:32:12.284 INFO [1238]: _SERVER found -- 22:32:12.284 INFO [1238]: REMOTE_ADDR = 192.168.1.13 -- 22:32:12.284 INFO [1238]: SERVER_NAME = oameye.works.coregrade.com -- 22:32:12.284 INFO [1238]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=as1of770vq3ph8j402a8k6265qrc4uma -- 22:32:12.284 INFO [1238]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:32:12.284 INFO [1238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:32:12.295 INFO [1238]: COREGRADE is stopping... -- 22:32:12.295 DEBUG [1238]: Closing database connection -- 22:32:12.295 SQL [1238]: pgsql_close() -- 22:32:16.642 INFO [1376]: COREGRADE is starting... -- 22:32:16.643 INFO [1376]: Version from config: 1.0 -- 22:32:16.643 DEBUG [1376]: Connecting to database... -- 22:32:16.643 DEBUG [1376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:32:16.643 SQL [1376]: pgsql_db_connect() -- 22:32:16.647 DEBUG [1376]: Database connection successful -- 22:32:16.647 INFO [1376]: _SERVER found -- 22:32:16.647 INFO [1376]: REMOTE_ADDR = 192.168.1.13 -- 22:32:16.647 INFO [1376]: SERVER_NAME = oameye.works.coregrade.com -- 22:32:16.647 INFO [1376]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=as1of770vq3ph8j402a8k6265qrc4uma -- 22:32:16.647 INFO [1376]: QUERY_STRING = /member/viewCardAddAction -- 22:32:16.647 INFO [1376]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:32:16.677 INFO [1376]: COREGRADE is stopping... -- 22:32:16.677 DEBUG [1376]: Closing database connection -- 22:32:16.677 SQL [1376]: pgsql_close() -- 22:32:29.649 INFO [1208]: COREGRADE is starting... -- 22:32:29.650 INFO [1208]: Version from config: 1.0 -- 22:32:29.650 DEBUG [1208]: Connecting to database... -- 22:32:29.650 DEBUG [1208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:32:29.650 SQL [1208]: pgsql_db_connect() -- 22:32:29.654 DEBUG [1208]: Database connection successful -- 22:32:29.654 INFO [1208]: _SERVER found -- 22:32:29.654 INFO [1208]: REMOTE_ADDR = 192.168.1.13 -- 22:32:29.654 INFO [1208]: SERVER_NAME = oameye.works.coregrade.com -- 22:32:29.654 INFO [1208]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=as1of770vq3ph8j402a8k6265qrc4uma -- 22:32:29.654 INFO [1208]: QUERY_STRING = /member/upload -- 22:32:29.654 INFO [1208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:32:29.697 INFO [1208]: COREGRADE is stopping... -- 22:32:29.697 DEBUG [1208]: Closing database connection -- 22:32:29.697 SQL [1208]: pgsql_close() -- 22:32:30.062 INFO [18382]: COREGRADE is starting... -- 22:32:30.062 INFO [18382]: Version from config: 1.0 -- 22:32:30.062 DEBUG [18382]: Connecting to database... -- 22:32:30.062 DEBUG [18382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:32:30.062 SQL [18382]: pgsql_db_connect() -- 22:32:30.090 INFO [1205]: COREGRADE is starting... -- 22:32:30.090 INFO [1205]: Version from config: 1.0 -- 22:32:30.090 DEBUG [1205]: Connecting to database... -- 22:32:30.090 DEBUG [1205]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:32:30.090 SQL [1205]: pgsql_db_connect() -- 22:32:30.094 DEBUG [1205]: Database connection successful -- 22:32:30.094 INFO [1205]: _SERVER found -- 22:32:30.094 INFO [1205]: REMOTE_ADDR = 192.168.1.13 -- 22:32:30.094 INFO [1205]: SERVER_NAME = oameye.works.coregrade.com -- 22:32:30.094 INFO [1205]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=as1of770vq3ph8j402a8k6265qrc4uma -- 22:32:30.094 INFO [1205]: QUERY_STRING = /favicon.ico -- 22:32:30.094 INFO [1205]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:32:30.105 INFO [1205]: COREGRADE is stopping... -- 22:32:30.105 DEBUG [1205]: Closing database connection -- 22:32:30.105 SQL [1205]: pgsql_close() -- 22:32:30.066 DEBUG [18382]: Database connection successful -- 22:32:30.066 INFO [18382]: _SERVER found -- 22:32:30.066 INFO [18382]: REMOTE_ADDR = 192.168.1.13 -- 22:32:30.066 INFO [18382]: SERVER_NAME = oameye.works.coregrade.com -- 22:32:30.066 INFO [18382]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=as1of770vq3ph8j402a8k6265qrc4uma -- 22:32:30.066 INFO [18382]: QUERY_STRING = /member/page -- 22:32:30.066 INFO [18382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:32:30.107 INFO [18382]: COREGRADE is stopping... -- 22:32:30.107 DEBUG [18382]: Closing database connection -- 22:32:30.107 SQL [18382]: pgsql_close() -- 22:32:30.434 INFO [18382]: COREGRADE is starting... -- 22:32:30.434 INFO [18382]: Version from config: 1.0 -- 22:32:30.434 DEBUG [18382]: Connecting to database... -- 22:32:30.434 DEBUG [18382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:32:30.434 SQL [18382]: pgsql_db_connect() -- 22:32:30.438 DEBUG [18382]: Database connection successful -- 22:32:30.438 INFO [18382]: _SERVER found -- 22:32:30.438 INFO [18382]: REMOTE_ADDR = 192.168.1.13 -- 22:32:30.438 INFO [18382]: SERVER_NAME = oameye.works.coregrade.com -- 22:32:30.438 INFO [18382]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=as1of770vq3ph8j402a8k6265qrc4uma -- 22:32:30.438 INFO [18382]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:32:30.438 INFO [18382]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:32:30.449 INFO [18382]: COREGRADE is stopping... -- 22:32:30.449 DEBUG [18382]: Closing database connection -- 22:32:30.449 SQL [18382]: pgsql_close() -- 22:35:37.600 INFO [19790]: COREGRADE is starting... -- 22:35:37.601 INFO [19790]: Version from config: 1.0 -- 22:35:37.601 DEBUG [19790]: Connecting to database... -- 22:35:37.601 DEBUG [19790]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:35:37.601 SQL [19790]: pgsql_db_connect() -- 22:35:37.605 DEBUG [19790]: Database connection successful -- 22:35:37.605 INFO [19790]: _SERVER found -- 22:35:37.605 INFO [19790]: REMOTE_ADDR = 192.168.1.13 -- 22:35:37.605 INFO [19790]: SERVER_NAME = oameye.works.coregrade.com -- 22:35:37.605 INFO [19790]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 22:35:37.605 INFO [19790]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 22:35:37.621 INFO [19790]: COREGRADE is stopping... -- 22:35:37.621 DEBUG [19790]: Closing database connection -- 22:35:37.621 SQL [19790]: pgsql_close() -- 22:49:12.142 INFO [19992]: COREGRADE is starting... -- 22:49:12.143 INFO [19992]: Version from config: 1.0 -- 22:49:12.143 DEBUG [19992]: Connecting to database... -- 22:49:12.143 DEBUG [19992]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:49:12.143 SQL [19992]: pgsql_db_connect() -- 22:49:12.148 DEBUG [19992]: Database connection successful -- 22:49:12.148 INFO [19992]: _SERVER found -- 22:49:12.148 INFO [19992]: REMOTE_ADDR = 192.168.1.13 -- 22:49:12.148 INFO [19992]: SERVER_NAME = oameye.works.coregrade.com -- 22:49:12.148 INFO [19992]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=as1of770vq3ph8j402a8k6265qrc4uma -- 22:49:12.148 INFO [19992]: QUERY_STRING = /auth/logout -- 22:49:12.148 INFO [19992]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:49:12.190 INFO [19992]: COREGRADE is stopping... -- 22:49:12.190 DEBUG [19992]: Closing database connection -- 22:49:12.190 SQL [19992]: pgsql_close() -- 22:49:12.581 INFO [19992]: COREGRADE is starting... -- 22:49:12.581 INFO [19992]: Version from config: 1.0 -- 22:49:12.581 DEBUG [19992]: Connecting to database... -- 22:49:12.581 DEBUG [19992]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:49:12.581 SQL [19992]: pgsql_db_connect() -- 22:49:12.585 DEBUG [19992]: Database connection successful -- 22:49:12.586 INFO [19992]: _SERVER found -- 22:49:12.586 INFO [19992]: REMOTE_ADDR = 192.168.1.13 -- 22:49:12.586 INFO [19992]: SERVER_NAME = oameye.works.coregrade.com -- 22:49:12.586 INFO [19992]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=k5cvb8rijb015h1g4836s8t05ps9ih1j -- 22:49:12.586 INFO [19992]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:49:12.586 INFO [19992]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:49:12.597 INFO [19992]: COREGRADE is stopping... -- 22:49:12.597 DEBUG [19992]: Closing database connection -- 22:49:12.597 SQL [19992]: pgsql_close() -- 22:49:12.620 INFO [19994]: COREGRADE is starting... -- 22:49:12.621 INFO [19994]: Version from config: 1.0 -- 22:49:12.621 DEBUG [19994]: Connecting to database... -- 22:49:12.621 DEBUG [19994]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:49:12.621 SQL [19994]: pgsql_db_connect() -- 22:49:12.626 DEBUG [19994]: Database connection successful -- 22:49:12.626 INFO [19994]: _SERVER found -- 22:49:12.626 INFO [19994]: REMOTE_ADDR = 192.168.1.13 -- 22:49:12.626 INFO [19994]: SERVER_NAME = oameye.works.coregrade.com -- 22:49:12.626 INFO [19994]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=k5cvb8rijb015h1g4836s8t05ps9ih1j -- 22:49:12.626 INFO [19994]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:49:12.626 INFO [19994]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:49:12.641 INFO [19994]: COREGRADE is stopping... -- 22:49:12.641 DEBUG [19994]: Closing database connection -- 22:49:12.641 SQL [19994]: pgsql_close() -- 22:49:15.225 INFO [19994]: COREGRADE is starting... -- 22:49:15.225 INFO [19994]: Version from config: 1.0 -- 22:49:15.225 DEBUG [19994]: Connecting to database... -- 22:49:15.225 DEBUG [19994]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:49:15.225 SQL [19994]: pgsql_db_connect() -- 22:49:15.268 INFO [19994]: COREGRADE is starting... -- 22:49:15.268 INFO [19994]: Version from config: 1.0 -- 22:49:15.268 DEBUG [19994]: Connecting to database... -- 22:49:15.268 DEBUG [19994]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:49:15.268 SQL [19994]: pgsql_db_connect() -- 22:49:15.273 DEBUG [19994]: Database connection successful -- 22:49:15.273 INFO [19994]: _SERVER found -- 22:49:15.273 INFO [19994]: REMOTE_ADDR = 192.168.1.13 -- 22:49:15.273 INFO [19994]: SERVER_NAME = oameye.works.coregrade.com -- 22:49:15.273 INFO [19994]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=k5cvb8rijb015h1g4836s8t05ps9ih1j -- 22:49:15.273 INFO [19994]: QUERY_STRING = -- 22:49:15.273 INFO [19994]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:49:15.273 INFO [19994]: SystemStatus()09-09-********~************ -- 22:49:15.273 INFO [19994]: long coregrade_api_main(CVars in, CVars &out) -- 22:49:15.273 INFO [19994]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 22:49:15.273 INFO [19994]: account calls -- 22:49:15.273 INFO [19994]: account_calls() -- 22:49:15.273 INFO [19994]: LoginCoreGradeAccount() -- 22:49:15.273 FLOG_MAX [19994]: REQ_STRING(username) -- 22:49:15.273 FLOG_MAX [19994]: REQ_STRING(password) -- 22:49:15.273 FLOG_MAX [19994]: REQ_STRING(sessionid) -- 22:49:15.273 FLOG_MAX [19994]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:49:15.273 SQL [19994]: pgsql_query() -- 22:49:15.273 SQL [19994]: About to run query: -- 22:49:15.273 SQL [19994]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 22:49:15.277 SQL [19994]: Found rows: 1 -- 22:49:15.277 FLOG_MAX [19994]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=16 -- 22:49:15.277 INFO [19994]: long SessionCheck(long uid, const char *sessionid, int create ) -- 22:49:15.277 SQL [19994]: pgsql_exec() -- 22:49:15.277 SQL [19994]: About to run query: -- 22:49:15.277 SQL [19994]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 22:49:15.278 SQL [19994]: PQcmdTuples: 0 -- 22:49:15.278 SQL [19994]: Affected rows: 0 -- 22:49:15.278 SQL [19994]: pgsql_exec() -- 22:49:15.278 SQL [19994]: About to run query: -- 22:49:15.278 SQL [19994]: DELETE FROM members_session WHERE member_id=7 -- 22:49:15.279 SQL [19994]: PQcmdTuples: 1 -- 22:49:15.279 SQL [19994]: Affected rows: 1 -- 22:49:15.279 SQL [19994]: pgsql_query() -- 22:49:15.279 SQL [19994]: About to run query: -- 22:49:15.279 SQL [19994]: SELECT * FROM members_session WHERE member_id=7 AND session<>'117AF5195E0505A2C59825B6C2478FDC' -- 22:49:15.280 SQL [19994]: Found rows: 0 -- 22:49:15.280 SQL [19994]: Found rows: 0 -- 22:49:15.280 FLOG_MAX [19994]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:49:15.280 SQL [19994]: pgsql_query() -- 22:49:15.280 SQL [19994]: About to run query: -- 22:49:15.280 SQL [19994]: SELECT * FROM members_session WHERE member_id=7 AND session='117AF5195E0505A2C59825B6C2478FDC' -- 22:49:15.280 SQL [19994]: Found rows: 0 -- 22:49:15.280 SQL [19994]: Found rows: 0 -- 22:49:15.280 FLOG_MAX [19994]: insert_db_record() -- 22:49:15.280 SQL [19994]: pgsql_exec() -- 22:49:15.280 SQL [19994]: About to run query: -- 22:49:15.280 SQL [19994]: INSERT INTO members_session (member_id,session) VALUES ('7','117AF5195E0505A2C59825B6C2478FDC') -- 22:49:15.282 SQL [19994]: PQcmdTuples: 1 -- 22:49:15.282 SQL [19994]: Affected rows: 1 -- 22:49:15.282 FLOG_MAX [19994]: SELECT currval('members_session_id_seq') -- 22:49:15.282 SQL [19994]: pgsql_query() -- 22:49:15.282 SQL [19994]: About to run query: -- 22:49:15.282 SQL [19994]: SELECT currval('members_session_id_seq') -- 22:49:15.282 SQL [19994]: Found rows: 1 -- 22:49:15.283 INFO [19994]: CreateDefaultPage() -- 22:49:15.283 FLOG_MAX [19994]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:49:15.283 SQL [19994]: pgsql_query() -- 22:49:15.283 SQL [19994]: About to run query: -- 22:49:15.283 SQL [19994]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 22:49:15.283 SQL [19994]: Found rows: 1 -- 22:49:15.283 FLOG_MAX [19994]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 22:49:15.283 SQL [19994]: pgsql_query() -- 22:49:15.283 SQL [19994]: About to run query: -- 22:49:15.283 SQL [19994]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 22:49:15.283 SQL [19994]: Found rows: 1 -- 22:49:15.283 INFO [19994]: /CreateDefaultPage() -- 22:49:15.283 INFO [19994]: /LoginCoreGradeAccount() -- 22:49:15.283 INFO [19994]: RET: added=2020-02-05 09:42:12.816064 -- 22:49:15.283 INFO [19994]: RET: email=tokslaw@chiefsoft.com -- 22:49:15.283 INFO [19994]: RET: firstname=Tokunbo -- 22:49:15.283 INFO [19994]: RET: folder= -- 22:49:15.283 INFO [19994]: RET: id=7 -- 22:49:15.283 INFO [19994]: RET: last_login= -- 22:49:15.283 INFO [19994]: RET: lastname=Lawal -- 22:49:15.283 INFO [19994]: RET: loc=192.168.1.13 -- 22:49:15.283 INFO [19994]: RET: member_id=7 -- 22:49:15.283 INFO [19994]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 22:49:15.283 INFO [19994]: RET: phone= -- 22:49:15.283 INFO [19994]: RET: pid= -- 22:49:15.284 INFO [19994]: RET: result=YES I GET TO BACK END -- 22:49:15.284 INFO [19994]: RET: sessionid=117AF5195E0505A2C59825B6C2478FDC -- 22:49:15.284 INFO [19994]: RET: status=1 -- 22:49:15.284 INFO [19994]: RET: stauts=OK -- 22:49:15.284 INFO [19994]: RET: username=tokslaw@chiefsoft.com -- 22:49:15.284 INFO [19994]: RET: verified= -- 22:49:15.285 INFO [19994]: COREGRADE is stopping... -- 22:49:15.285 DEBUG [19994]: Closing database connection -- 22:49:15.285 SQL [19994]: pgsql_close() -- 22:49:15.230 DEBUG [19994]: Database connection successful -- 22:49:15.230 INFO [19994]: _SERVER found -- 22:49:15.230 INFO [19994]: REMOTE_ADDR = 192.168.1.13 -- 22:49:15.230 INFO [19994]: SERVER_NAME = oameye.works.coregrade.com -- 22:49:15.230 INFO [19994]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=k5cvb8rijb015h1g4836s8t05ps9ih1j -- 22:49:15.230 INFO [19994]: QUERY_STRING = /auth -- 22:49:15.230 INFO [19994]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:49:15.286 INFO [19994]: COREGRADE is stopping... -- 22:49:15.286 DEBUG [19994]: Closing database connection -- 22:49:15.286 SQL [19994]: pgsql_close() -- 22:49:15.303 INFO [19994]: COREGRADE is starting... -- 22:49:15.303 INFO [19994]: Version from config: 1.0 -- 22:49:15.303 DEBUG [19994]: Connecting to database... -- 22:49:15.303 DEBUG [19994]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:49:15.303 SQL [19994]: pgsql_db_connect() -- 22:49:15.307 DEBUG [19994]: Database connection successful -- 22:49:15.307 INFO [19994]: _SERVER found -- 22:49:15.307 INFO [19994]: REMOTE_ADDR = 192.168.1.13 -- 22:49:15.307 INFO [19994]: SERVER_NAME = oameye.works.coregrade.com -- 22:49:15.307 INFO [19994]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=k5cvb8rijb015h1g4836s8t05ps9ih1j -- 22:49:15.307 INFO [19994]: QUERY_STRING = /member/index -- 22:49:15.307 INFO [19994]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:49:15.349 INFO [19994]: COREGRADE is stopping... -- 22:49:15.349 DEBUG [19994]: Closing database connection -- 22:49:15.349 SQL [19994]: pgsql_close() -- 22:49:15.756 INFO [19994]: COREGRADE is starting... -- 22:49:15.756 INFO [19994]: Version from config: 1.0 -- 22:49:15.756 DEBUG [19994]: Connecting to database... -- 22:49:15.756 DEBUG [19994]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:49:15.756 SQL [19994]: pgsql_db_connect() -- 22:49:15.761 DEBUG [19994]: Database connection successful -- 22:49:15.761 INFO [19994]: _SERVER found -- 22:49:15.761 INFO [19994]: REMOTE_ADDR = 192.168.1.13 -- 22:49:15.761 INFO [19994]: SERVER_NAME = oameye.works.coregrade.com -- 22:49:15.761 INFO [19994]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=k5cvb8rijb015h1g4836s8t05ps9ih1j -- 22:49:15.761 INFO [19994]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:49:15.761 INFO [19994]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:49:15.772 INFO [19994]: COREGRADE is stopping... -- 22:49:15.772 DEBUG [19994]: Closing database connection -- 22:49:15.772 SQL [19994]: pgsql_close() -- 22:49:23.201 INFO [19993]: COREGRADE is starting... -- 22:49:23.202 INFO [19993]: Version from config: 1.0 -- 22:49:23.202 DEBUG [19993]: Connecting to database... -- 22:49:23.202 DEBUG [19993]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:49:23.202 SQL [19993]: pgsql_db_connect() -- 22:49:23.206 DEBUG [19993]: Database connection successful -- 22:49:23.206 INFO [19993]: _SERVER found -- 22:49:23.206 INFO [19993]: REMOTE_ADDR = 192.168.1.13 -- 22:49:23.206 INFO [19993]: SERVER_NAME = oameye.works.coregrade.com -- 22:49:23.206 INFO [19993]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=k5cvb8rijb015h1g4836s8t05ps9ih1j -- 22:49:23.206 INFO [19993]: QUERY_STRING = /member/page -- 22:49:23.206 INFO [19993]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:49:23.258 INFO [19993]: COREGRADE is stopping... -- 22:49:23.258 DEBUG [19993]: Closing database connection -- 22:49:23.258 SQL [19993]: pgsql_close() -- 22:49:23.648 INFO [19993]: COREGRADE is starting... -- 22:49:23.649 INFO [19993]: Version from config: 1.0 -- 22:49:23.649 DEBUG [19993]: Connecting to database... -- 22:49:23.649 DEBUG [19993]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:49:23.649 SQL [19993]: pgsql_db_connect() -- 22:49:23.654 DEBUG [19993]: Database connection successful -- 22:49:23.654 INFO [19993]: _SERVER found -- 22:49:23.654 INFO [19993]: REMOTE_ADDR = 192.168.1.13 -- 22:49:23.654 INFO [19993]: SERVER_NAME = oameye.works.coregrade.com -- 22:49:23.654 INFO [19993]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=k5cvb8rijb015h1g4836s8t05ps9ih1j -- 22:49:23.654 INFO [19993]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:49:23.654 INFO [19993]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:49:23.666 INFO [19993]: COREGRADE is stopping... -- 22:49:23.666 DEBUG [19993]: Closing database connection -- 22:49:23.666 SQL [19993]: pgsql_close() -- 22:50:46.931 INFO [20060]: COREGRADE is starting... -- 22:50:46.931 INFO [20060]: Version from config: 1.0 -- 22:50:46.931 DEBUG [20060]: Connecting to database... -- 22:50:46.931 DEBUG [20060]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:50:46.931 SQL [20060]: pgsql_db_connect() -- 22:50:46.935 DEBUG [20060]: Database connection successful -- 22:50:46.935 INFO [20060]: _SERVER found -- 22:50:46.935 INFO [20060]: REMOTE_ADDR = 192.168.1.13 -- 22:50:46.935 INFO [20060]: SERVER_NAME = oameye.works.coregrade.com -- 22:50:46.935 INFO [20060]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=k5cvb8rijb015h1g4836s8t05ps9ih1j -- 22:50:46.935 INFO [20060]: QUERY_STRING = /auth/logout -- 22:50:46.935 INFO [20060]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:50:46.974 INFO [20060]: COREGRADE is stopping... -- 22:50:46.974 DEBUG [20060]: Closing database connection -- 22:50:46.974 SQL [20060]: pgsql_close() -- 22:50:47.354 INFO [19992]: COREGRADE is starting... -- 22:50:47.354 INFO [19992]: Version from config: 1.0 -- 22:50:47.354 DEBUG [19992]: Connecting to database... -- 22:50:47.354 DEBUG [19992]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:50:47.354 SQL [19992]: pgsql_db_connect() -- 22:50:47.358 DEBUG [19992]: Database connection successful -- 22:50:47.358 INFO [19992]: _SERVER found -- 22:50:47.358 INFO [19992]: REMOTE_ADDR = 192.168.1.13 -- 22:50:47.358 INFO [19992]: SERVER_NAME = oameye.works.coregrade.com -- 22:50:47.358 INFO [19992]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=k5cvb8rijb015h1g4836s8t05ps9ih1j -- 22:50:47.358 INFO [19992]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:50:47.358 INFO [19992]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:50:47.369 INFO [19992]: COREGRADE is stopping... -- 22:50:47.369 DEBUG [19992]: Closing database connection -- 22:50:47.369 SQL [19992]: pgsql_close() -- 22:51:00.542 INFO [20201]: COREGRADE is starting... -- 22:51:00.543 INFO [20201]: Version from config: 1.0 -- 22:51:00.543 DEBUG [20201]: Connecting to database... -- 22:51:00.543 DEBUG [20201]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:51:00.543 SQL [20201]: pgsql_db_connect() -- 22:51:00.585 INFO [20201]: COREGRADE is starting... -- 22:51:00.586 INFO [20201]: Version from config: 1.0 -- 22:51:00.586 DEBUG [20201]: Connecting to database... -- 22:51:00.586 DEBUG [20201]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:51:00.586 SQL [20201]: pgsql_db_connect() -- 22:51:00.589 DEBUG [20201]: Database connection successful -- 22:51:00.589 INFO [20201]: _SERVER found -- 22:51:00.589 INFO [20201]: REMOTE_ADDR = 192.168.1.13 -- 22:51:00.589 INFO [20201]: SERVER_NAME = oameye.works.coregrade.com -- 22:51:00.589 INFO [20201]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=k5cvb8rijb015h1g4836s8t05ps9ih1j -- 22:51:00.589 INFO [20201]: QUERY_STRING = -- 22:51:00.589 INFO [20201]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:51:00.590 INFO [20201]: SystemStatus()09-09-********~************ -- 22:51:00.590 INFO [20201]: long coregrade_api_main(CVars in, CVars &out) -- 22:51:00.590 INFO [20201]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 22:51:00.590 INFO [20201]: account calls -- 22:51:00.590 INFO [20201]: account_calls() -- 22:51:00.590 INFO [20201]: LoginCoreGradeAccount() -- 22:51:00.590 FLOG_MAX [20201]: REQ_STRING(username) -- 22:51:00.590 FLOG_MAX [20201]: REQ_STRING(password) -- 22:51:00.590 FLOG_MAX [20201]: REQ_STRING(sessionid) -- 22:51:00.590 FLOG_MAX [20201]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:51:00.590 SQL [20201]: pgsql_query() -- 22:51:00.590 SQL [20201]: About to run query: -- 22:51:00.590 SQL [20201]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 22:51:00.593 SQL [20201]: Found rows: 1 -- 22:51:00.593 FLOG_MAX [20201]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=16 -- 22:51:00.593 INFO [20201]: long SessionCheck(long uid, const char *sessionid, int create ) -- 22:51:00.593 SQL [20201]: pgsql_exec() -- 22:51:00.593 SQL [20201]: About to run query: -- 22:51:00.593 SQL [20201]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 22:51:00.594 SQL [20201]: PQcmdTuples: 0 -- 22:51:00.594 SQL [20201]: Affected rows: 0 -- 22:51:00.594 SQL [20201]: pgsql_exec() -- 22:51:00.594 SQL [20201]: About to run query: -- 22:51:00.594 SQL [20201]: DELETE FROM members_session WHERE member_id=7 -- 22:51:00.595 SQL [20201]: PQcmdTuples: 1 -- 22:51:00.595 SQL [20201]: Affected rows: 1 -- 22:51:00.595 SQL [20201]: pgsql_query() -- 22:51:00.595 SQL [20201]: About to run query: -- 22:51:00.595 SQL [20201]: SELECT * FROM members_session WHERE member_id=7 AND session<>'B8267282EC24B912A8FBF41E609650D4' -- 22:51:00.595 SQL [20201]: Found rows: 0 -- 22:51:00.595 SQL [20201]: Found rows: 0 -- 22:51:00.595 FLOG_MAX [20201]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:51:00.595 SQL [20201]: pgsql_query() -- 22:51:00.595 SQL [20201]: About to run query: -- 22:51:00.595 SQL [20201]: SELECT * FROM members_session WHERE member_id=7 AND session='B8267282EC24B912A8FBF41E609650D4' -- 22:51:00.596 SQL [20201]: Found rows: 0 -- 22:51:00.596 SQL [20201]: Found rows: 0 -- 22:51:00.596 FLOG_MAX [20201]: insert_db_record() -- 22:51:00.596 SQL [20201]: pgsql_exec() -- 22:51:00.596 SQL [20201]: About to run query: -- 22:51:00.596 SQL [20201]: INSERT INTO members_session (member_id,session) VALUES ('7','B8267282EC24B912A8FBF41E609650D4') -- 22:51:00.597 SQL [20201]: PQcmdTuples: 1 -- 22:51:00.597 SQL [20201]: Affected rows: 1 -- 22:51:00.597 FLOG_MAX [20201]: SELECT currval('members_session_id_seq') -- 22:51:00.597 SQL [20201]: pgsql_query() -- 22:51:00.597 SQL [20201]: About to run query: -- 22:51:00.597 SQL [20201]: SELECT currval('members_session_id_seq') -- 22:51:00.598 SQL [20201]: Found rows: 1 -- 22:51:00.598 INFO [20201]: CreateDefaultPage() -- 22:51:00.598 FLOG_MAX [20201]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:51:00.598 SQL [20201]: pgsql_query() -- 22:51:00.598 SQL [20201]: About to run query: -- 22:51:00.598 SQL [20201]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 22:51:00.598 SQL [20201]: Found rows: 1 -- 22:51:00.598 FLOG_MAX [20201]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 22:51:00.598 SQL [20201]: pgsql_query() -- 22:51:00.598 SQL [20201]: About to run query: -- 22:51:00.598 SQL [20201]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 22:51:00.598 SQL [20201]: Found rows: 1 -- 22:51:00.598 INFO [20201]: /CreateDefaultPage() -- 22:51:00.598 FLOG_MAX [20201]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:51:00.598 SQL [20201]: pgsql_query() -- 22:51:00.598 SQL [20201]: About to run query: -- 22:51:00.598 SQL [20201]: upper(md5( now()::text )) AS folder ) -- 22:51:00.599 SQL [20201]: Found rows: ERROR -- 22:51:00.599 FLOG_MAX [20201]: update_db_record() -- 22:51:00.599 SQL [20201]: pgsql_exec() -- 22:51:00.599 SQL [20201]: About to run query: -- 22:51:00.599 SQL [20201]: UPDATE members SET folder='' WHERE id=7 AND true -- 22:51:00.600 SQL [20201]: PQcmdTuples: 1 -- 22:51:00.600 SQL [20201]: Affected rows: 1 -- 22:51:00.600 INFO [20201]: /LoginCoreGradeAccount() -- 22:51:00.600 INFO [20201]: RET: added=2020-02-05 09:42:12.816064 -- 22:51:00.600 INFO [20201]: RET: email=tokslaw@chiefsoft.com -- 22:51:00.600 INFO [20201]: RET: firstname=Tokunbo -- 22:51:00.600 INFO [20201]: RET: folder= -- 22:51:00.600 INFO [20201]: RET: id=7 -- 22:51:00.600 INFO [20201]: RET: last_login= -- 22:51:00.600 INFO [20201]: RET: lastname=Lawal -- 22:51:00.600 INFO [20201]: RET: loc=192.168.1.13 -- 22:51:00.600 INFO [20201]: RET: member_id=7 -- 22:51:00.600 INFO [20201]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 22:51:00.600 INFO [20201]: RET: phone= -- 22:51:00.600 INFO [20201]: RET: pid= -- 22:51:00.600 INFO [20201]: RET: result=YES I GET TO BACK END -- 22:51:00.600 INFO [20201]: RET: sessionid=B8267282EC24B912A8FBF41E609650D4 -- 22:51:00.600 INFO [20201]: RET: status=1 -- 22:51:00.600 INFO [20201]: RET: stauts=OK -- 22:51:00.600 INFO [20201]: RET: username=tokslaw@chiefsoft.com -- 22:51:00.600 INFO [20201]: RET: verified= -- 22:51:00.602 INFO [20201]: COREGRADE is stopping... -- 22:51:00.602 DEBUG [20201]: Closing database connection -- 22:51:00.602 SQL [20201]: pgsql_close() -- 22:51:00.548 DEBUG [20201]: Database connection successful -- 22:51:00.548 INFO [20201]: _SERVER found -- 22:51:00.548 INFO [20201]: REMOTE_ADDR = 192.168.1.13 -- 22:51:00.548 INFO [20201]: SERVER_NAME = oameye.works.coregrade.com -- 22:51:00.548 INFO [20201]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=k5cvb8rijb015h1g4836s8t05ps9ih1j -- 22:51:00.548 INFO [20201]: QUERY_STRING = /auth -- 22:51:00.548 INFO [20201]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:51:00.602 INFO [20201]: COREGRADE is stopping... -- 22:51:00.602 DEBUG [20201]: Closing database connection -- 22:51:00.602 SQL [20201]: pgsql_close() -- 22:51:00.626 INFO [20201]: COREGRADE is starting... -- 22:51:00.627 INFO [20201]: Version from config: 1.0 -- 22:51:00.627 DEBUG [20201]: Connecting to database... -- 22:51:00.627 DEBUG [20201]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:51:00.627 SQL [20201]: pgsql_db_connect() -- 22:51:00.631 DEBUG [20201]: Database connection successful -- 22:51:00.631 INFO [20201]: _SERVER found -- 22:51:00.631 INFO [20201]: REMOTE_ADDR = 192.168.1.13 -- 22:51:00.631 INFO [20201]: SERVER_NAME = oameye.works.coregrade.com -- 22:51:00.631 INFO [20201]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=k5cvb8rijb015h1g4836s8t05ps9ih1j -- 22:51:00.631 INFO [20201]: QUERY_STRING = /member/index -- 22:51:00.631 INFO [20201]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:51:00.674 INFO [20201]: COREGRADE is stopping... -- 22:51:00.675 DEBUG [20201]: Closing database connection -- 22:51:00.675 SQL [20201]: pgsql_close() -- 22:51:01.406 INFO [20201]: COREGRADE is starting... -- 22:51:01.407 INFO [20201]: Version from config: 1.0 -- 22:51:01.407 DEBUG [20201]: Connecting to database... -- 22:51:01.407 DEBUG [20201]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:51:01.407 SQL [20201]: pgsql_db_connect() -- 22:51:01.411 DEBUG [20201]: Database connection successful -- 22:51:01.411 INFO [20201]: _SERVER found -- 22:51:01.411 INFO [20201]: REMOTE_ADDR = 192.168.1.13 -- 22:51:01.411 INFO [20201]: SERVER_NAME = oameye.works.coregrade.com -- 22:51:01.411 INFO [20201]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=k5cvb8rijb015h1g4836s8t05ps9ih1j -- 22:51:01.411 INFO [20201]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:51:01.411 INFO [20201]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:51:01.423 INFO [20201]: COREGRADE is stopping... -- 22:51:01.423 DEBUG [20201]: Closing database connection -- 22:51:01.423 SQL [20201]: pgsql_close() -- 22:51:06.651 INFO [20202]: COREGRADE is starting... -- 22:51:06.651 INFO [20202]: Version from config: 1.0 -- 22:51:06.651 DEBUG [20202]: Connecting to database... -- 22:51:06.651 DEBUG [20202]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:51:06.651 SQL [20202]: pgsql_db_connect() -- 22:51:06.656 DEBUG [20202]: Database connection successful -- 22:51:06.656 INFO [20202]: _SERVER found -- 22:51:06.656 INFO [20202]: REMOTE_ADDR = 192.168.1.13 -- 22:51:06.656 INFO [20202]: SERVER_NAME = oameye.works.coregrade.com -- 22:51:06.656 INFO [20202]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=k5cvb8rijb015h1g4836s8t05ps9ih1j -- 22:51:06.656 INFO [20202]: QUERY_STRING = /auth/logout -- 22:51:06.656 INFO [20202]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:51:06.693 INFO [20202]: COREGRADE is stopping... -- 22:51:06.693 DEBUG [20202]: Closing database connection -- 22:51:06.693 SQL [20202]: pgsql_close() -- 22:51:06.997 INFO [20202]: COREGRADE is starting... -- 22:51:06.997 INFO [20202]: Version from config: 1.0 -- 22:51:06.997 DEBUG [20202]: Connecting to database... -- 22:51:06.998 DEBUG [20202]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:51:06.998 SQL [20202]: pgsql_db_connect() -- 22:51:07.002 DEBUG [20202]: Database connection successful -- 22:51:07.002 INFO [20202]: _SERVER found -- 22:51:07.002 INFO [20202]: REMOTE_ADDR = 192.168.1.13 -- 22:51:07.002 INFO [20202]: SERVER_NAME = oameye.works.coregrade.com -- 22:51:07.002 INFO [20202]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=k5cvb8rijb015h1g4836s8t05ps9ih1j -- 22:51:07.002 INFO [20202]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:51:07.002 INFO [20202]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:51:07.014 INFO [20202]: COREGRADE is stopping... -- 22:51:07.014 DEBUG [20202]: Closing database connection -- 22:51:07.014 SQL [20202]: pgsql_close() -- 22:51:09.564 INFO [20202]: COREGRADE is starting... -- 22:51:09.564 INFO [20202]: Version from config: 1.0 -- 22:51:09.564 DEBUG [20202]: Connecting to database... -- 22:51:09.564 DEBUG [20202]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:51:09.564 SQL [20202]: pgsql_db_connect() -- 22:51:09.604 INFO [20202]: COREGRADE is starting... -- 22:51:09.604 INFO [20202]: Version from config: 1.0 -- 22:51:09.604 DEBUG [20202]: Connecting to database... -- 22:51:09.604 DEBUG [20202]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:51:09.604 SQL [20202]: pgsql_db_connect() -- 22:51:09.608 DEBUG [20202]: Database connection successful -- 22:51:09.608 INFO [20202]: _SERVER found -- 22:51:09.608 INFO [20202]: REMOTE_ADDR = 192.168.1.13 -- 22:51:09.608 INFO [20202]: SERVER_NAME = oameye.works.coregrade.com -- 22:51:09.608 INFO [20202]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=k5cvb8rijb015h1g4836s8t05ps9ih1j -- 22:51:09.608 INFO [20202]: QUERY_STRING = -- 22:51:09.608 INFO [20202]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:51:09.608 INFO [20202]: SystemStatus()09-09-********~************ -- 22:51:09.608 INFO [20202]: long coregrade_api_main(CVars in, CVars &out) -- 22:51:09.608 INFO [20202]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 22:51:09.608 INFO [20202]: account calls -- 22:51:09.608 INFO [20202]: account_calls() -- 22:51:09.608 INFO [20202]: LoginCoreGradeAccount() -- 22:51:09.608 FLOG_MAX [20202]: REQ_STRING(username) -- 22:51:09.608 FLOG_MAX [20202]: REQ_STRING(password) -- 22:51:09.608 FLOG_MAX [20202]: REQ_STRING(sessionid) -- 22:51:09.608 FLOG_MAX [20202]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:51:09.608 SQL [20202]: pgsql_query() -- 22:51:09.608 SQL [20202]: About to run query: -- 22:51:09.608 SQL [20202]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 22:51:09.611 SQL [20202]: Found rows: 1 -- 22:51:09.612 FLOG_MAX [20202]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=16 -- 22:51:09.612 INFO [20202]: long SessionCheck(long uid, const char *sessionid, int create ) -- 22:51:09.612 SQL [20202]: pgsql_exec() -- 22:51:09.612 SQL [20202]: About to run query: -- 22:51:09.612 SQL [20202]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 22:51:09.612 SQL [20202]: PQcmdTuples: 0 -- 22:51:09.612 SQL [20202]: Affected rows: 0 -- 22:51:09.612 SQL [20202]: pgsql_exec() -- 22:51:09.612 SQL [20202]: About to run query: -- 22:51:09.612 SQL [20202]: DELETE FROM members_session WHERE member_id=7 -- 22:51:09.626 SQL [20202]: PQcmdTuples: 1 -- 22:51:09.626 SQL [20202]: Affected rows: 1 -- 22:51:09.626 SQL [20202]: pgsql_query() -- 22:51:09.626 SQL [20202]: About to run query: -- 22:51:09.626 SQL [20202]: SELECT * FROM members_session WHERE member_id=7 AND session<>'ED7E77BC34B4C3634C772AB4A7C35163' -- 22:51:09.626 SQL [20202]: Found rows: 0 -- 22:51:09.626 SQL [20202]: Found rows: 0 -- 22:51:09.626 FLOG_MAX [20202]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:51:09.626 SQL [20202]: pgsql_query() -- 22:51:09.626 SQL [20202]: About to run query: -- 22:51:09.626 SQL [20202]: SELECT * FROM members_session WHERE member_id=7 AND session='ED7E77BC34B4C3634C772AB4A7C35163' -- 22:51:09.627 SQL [20202]: Found rows: 0 -- 22:51:09.627 SQL [20202]: Found rows: 0 -- 22:51:09.627 FLOG_MAX [20202]: insert_db_record() -- 22:51:09.627 SQL [20202]: pgsql_exec() -- 22:51:09.627 SQL [20202]: About to run query: -- 22:51:09.627 SQL [20202]: INSERT INTO members_session (member_id,session) VALUES ('7','ED7E77BC34B4C3634C772AB4A7C35163') -- 22:51:09.635 SQL [20202]: PQcmdTuples: 1 -- 22:51:09.635 SQL [20202]: Affected rows: 1 -- 22:51:09.635 FLOG_MAX [20202]: SELECT currval('members_session_id_seq') -- 22:51:09.635 SQL [20202]: pgsql_query() -- 22:51:09.635 SQL [20202]: About to run query: -- 22:51:09.635 SQL [20202]: SELECT currval('members_session_id_seq') -- 22:51:09.635 SQL [20202]: Found rows: 1 -- 22:51:09.635 INFO [20202]: CreateDefaultPage() -- 22:51:09.635 FLOG_MAX [20202]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:51:09.635 SQL [20202]: pgsql_query() -- 22:51:09.635 SQL [20202]: About to run query: -- 22:51:09.635 SQL [20202]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 22:51:09.635 SQL [20202]: Found rows: 1 -- 22:51:09.635 FLOG_MAX [20202]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 22:51:09.635 SQL [20202]: pgsql_query() -- 22:51:09.635 SQL [20202]: About to run query: -- 22:51:09.635 SQL [20202]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 22:51:09.636 SQL [20202]: Found rows: 1 -- 22:51:09.636 INFO [20202]: /CreateDefaultPage() -- 22:51:09.636 FLOG_MAX [20202]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:51:09.636 SQL [20202]: pgsql_query() -- 22:51:09.636 SQL [20202]: About to run query: -- 22:51:09.636 SQL [20202]: upper(md5( now()::text )) AS folder ) -- 22:51:09.636 SQL [20202]: Found rows: ERROR -- 22:51:09.636 FLOG_MAX [20202]: update_db_record() -- 22:51:09.636 SQL [20202]: pgsql_exec() -- 22:51:09.636 SQL [20202]: About to run query: -- 22:51:09.636 SQL [20202]: UPDATE members SET folder='' WHERE id=7 AND true -- 22:51:09.637 SQL [20202]: PQcmdTuples: 1 -- 22:51:09.637 SQL [20202]: Affected rows: 1 -- 22:51:09.637 INFO [20202]: /LoginCoreGradeAccount() -- 22:51:09.637 INFO [20202]: RET: added=2020-02-05 09:42:12.816064 -- 22:51:09.637 INFO [20202]: RET: email=tokslaw@chiefsoft.com -- 22:51:09.637 INFO [20202]: RET: firstname=Tokunbo -- 22:51:09.637 INFO [20202]: RET: folder= -- 22:51:09.637 INFO [20202]: RET: id=7 -- 22:51:09.637 INFO [20202]: RET: last_login= -- 22:51:09.637 INFO [20202]: RET: lastname=Lawal -- 22:51:09.637 INFO [20202]: RET: loc=192.168.1.13 -- 22:51:09.637 INFO [20202]: RET: member_id=7 -- 22:51:09.637 INFO [20202]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 22:51:09.637 INFO [20202]: RET: phone= -- 22:51:09.637 INFO [20202]: RET: pid= -- 22:51:09.637 INFO [20202]: RET: result=YES I GET TO BACK END -- 22:51:09.637 INFO [20202]: RET: sessionid=ED7E77BC34B4C3634C772AB4A7C35163 -- 22:51:09.637 INFO [20202]: RET: status=1 -- 22:51:09.637 INFO [20202]: RET: stauts=OK -- 22:51:09.637 INFO [20202]: RET: username=tokslaw@chiefsoft.com -- 22:51:09.637 INFO [20202]: RET: verified= -- 22:51:09.639 INFO [20202]: COREGRADE is stopping... -- 22:51:09.639 DEBUG [20202]: Closing database connection -- 22:51:09.639 SQL [20202]: pgsql_close() -- 22:51:09.569 DEBUG [20202]: Database connection successful -- 22:51:09.569 INFO [20202]: _SERVER found -- 22:51:09.569 INFO [20202]: REMOTE_ADDR = 192.168.1.13 -- 22:51:09.569 INFO [20202]: SERVER_NAME = oameye.works.coregrade.com -- 22:51:09.569 INFO [20202]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=k5cvb8rijb015h1g4836s8t05ps9ih1j -- 22:51:09.569 INFO [20202]: QUERY_STRING = /auth -- 22:51:09.569 INFO [20202]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:51:09.639 INFO [20202]: COREGRADE is stopping... -- 22:51:09.639 DEBUG [20202]: Closing database connection -- 22:51:09.639 SQL [20202]: pgsql_close() -- 22:51:09.653 INFO [20202]: COREGRADE is starting... -- 22:51:09.653 INFO [20202]: Version from config: 1.0 -- 22:51:09.653 DEBUG [20202]: Connecting to database... -- 22:51:09.653 DEBUG [20202]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:51:09.653 SQL [20202]: pgsql_db_connect() -- 22:51:09.657 DEBUG [20202]: Database connection successful -- 22:51:09.657 INFO [20202]: _SERVER found -- 22:51:09.657 INFO [20202]: REMOTE_ADDR = 192.168.1.13 -- 22:51:09.657 INFO [20202]: SERVER_NAME = oameye.works.coregrade.com -- 22:51:09.657 INFO [20202]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=k5cvb8rijb015h1g4836s8t05ps9ih1j -- 22:51:09.657 INFO [20202]: QUERY_STRING = /member/index -- 22:51:09.657 INFO [20202]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:51:09.697 INFO [20202]: COREGRADE is stopping... -- 22:51:09.697 DEBUG [20202]: Closing database connection -- 22:51:09.697 SQL [20202]: pgsql_close() -- 22:51:10.337 INFO [20202]: COREGRADE is starting... -- 22:51:10.337 INFO [20202]: Version from config: 1.0 -- 22:51:10.337 DEBUG [20202]: Connecting to database... -- 22:51:10.337 DEBUG [20202]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:51:10.337 SQL [20202]: pgsql_db_connect() -- 22:51:10.341 DEBUG [20202]: Database connection successful -- 22:51:10.341 INFO [20202]: _SERVER found -- 22:51:10.341 INFO [20202]: REMOTE_ADDR = 192.168.1.13 -- 22:51:10.341 INFO [20202]: SERVER_NAME = oameye.works.coregrade.com -- 22:51:10.341 INFO [20202]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=k5cvb8rijb015h1g4836s8t05ps9ih1j -- 22:51:10.341 INFO [20202]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:51:10.341 INFO [20202]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:51:10.352 INFO [20202]: COREGRADE is stopping... -- 22:51:10.352 DEBUG [20202]: Closing database connection -- 22:51:10.352 SQL [20202]: pgsql_close() -- 22:52:20.195 INFO [20203]: COREGRADE is starting... -- 22:52:20.195 INFO [20203]: Version from config: 1.0 -- 22:52:20.195 DEBUG [20203]: Connecting to database... -- 22:52:20.196 DEBUG [20203]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:52:20.196 SQL [20203]: pgsql_db_connect() -- 22:52:20.200 DEBUG [20203]: Database connection successful -- 22:52:20.200 INFO [20203]: _SERVER found -- 22:52:20.200 INFO [20203]: REMOTE_ADDR = 192.168.1.13 -- 22:52:20.200 INFO [20203]: SERVER_NAME = oameye.works.coregrade.com -- 22:52:20.200 INFO [20203]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=k5cvb8rijb015h1g4836s8t05ps9ih1j -- 22:52:20.200 INFO [20203]: QUERY_STRING = /auth/logout -- 22:52:20.200 INFO [20203]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:52:20.238 INFO [20203]: COREGRADE is stopping... -- 22:52:20.239 DEBUG [20203]: Closing database connection -- 22:52:20.239 SQL [20203]: pgsql_close() -- 22:52:20.676 INFO [20203]: COREGRADE is starting... -- 22:52:20.676 INFO [20203]: Version from config: 1.0 -- 22:52:20.676 DEBUG [20203]: Connecting to database... -- 22:52:20.676 DEBUG [20203]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:52:20.676 SQL [20203]: pgsql_db_connect() -- 22:52:20.680 DEBUG [20203]: Database connection successful -- 22:52:20.680 INFO [20203]: _SERVER found -- 22:52:20.680 INFO [20203]: REMOTE_ADDR = 192.168.1.13 -- 22:52:20.680 INFO [20203]: SERVER_NAME = oameye.works.coregrade.com -- 22:52:20.680 INFO [20203]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=k5cvb8rijb015h1g4836s8t05ps9ih1j -- 22:52:20.680 INFO [20203]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:52:20.680 INFO [20203]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:52:20.693 INFO [20203]: COREGRADE is stopping... -- 22:52:20.693 DEBUG [20203]: Closing database connection -- 22:52:20.693 SQL [20203]: pgsql_close() -- 22:53:00.267 INFO [20391]: COREGRADE is starting... -- 22:53:00.267 INFO [20391]: Version from config: 1.0 -- 22:53:00.267 DEBUG [20391]: Connecting to database... -- 22:53:00.267 DEBUG [20391]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:53:00.267 SQL [20391]: pgsql_db_connect() -- 22:53:00.309 INFO [20391]: COREGRADE is starting... -- 22:53:00.309 INFO [20391]: Version from config: 1.0 -- 22:53:00.309 DEBUG [20391]: Connecting to database... -- 22:53:00.309 DEBUG [20391]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:53:00.309 SQL [20391]: pgsql_db_connect() -- 22:53:00.313 DEBUG [20391]: Database connection successful -- 22:53:00.313 INFO [20391]: _SERVER found -- 22:53:00.313 INFO [20391]: REMOTE_ADDR = 192.168.1.13 -- 22:53:00.313 INFO [20391]: SERVER_NAME = oameye.works.coregrade.com -- 22:53:00.313 INFO [20391]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=k5cvb8rijb015h1g4836s8t05ps9ih1j -- 22:53:00.313 INFO [20391]: QUERY_STRING = -- 22:53:00.313 INFO [20391]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:53:00.313 INFO [20391]: SystemStatus()09-09-********~************ -- 22:53:00.313 INFO [20391]: long coregrade_api_main(CVars in, CVars &out) -- 22:53:00.313 INFO [20391]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 22:53:00.313 INFO [20391]: account calls -- 22:53:00.313 INFO [20391]: account_calls() -- 22:53:00.313 INFO [20391]: LoginCoreGradeAccount() -- 22:53:00.313 FLOG_MAX [20391]: REQ_STRING(username) -- 22:53:00.313 FLOG_MAX [20391]: REQ_STRING(password) -- 22:53:00.313 FLOG_MAX [20391]: REQ_STRING(sessionid) -- 22:53:00.313 FLOG_MAX [20391]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:53:00.313 SQL [20391]: pgsql_query() -- 22:53:00.313 SQL [20391]: About to run query: -- 22:53:00.313 SQL [20391]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 22:53:00.316 SQL [20391]: Found rows: 1 -- 22:53:00.316 FLOG_MAX [20391]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=16 -- 22:53:00.316 INFO [20391]: long SessionCheck(long uid, const char *sessionid, int create ) -- 22:53:00.316 SQL [20391]: pgsql_exec() -- 22:53:00.316 SQL [20391]: About to run query: -- 22:53:00.316 SQL [20391]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 22:53:00.317 SQL [20391]: PQcmdTuples: 0 -- 22:53:00.317 SQL [20391]: Affected rows: 0 -- 22:53:00.317 SQL [20391]: pgsql_exec() -- 22:53:00.317 SQL [20391]: About to run query: -- 22:53:00.317 SQL [20391]: DELETE FROM members_session WHERE member_id=7 -- 22:53:00.318 SQL [20391]: PQcmdTuples: 1 -- 22:53:00.318 SQL [20391]: Affected rows: 1 -- 22:53:00.318 SQL [20391]: pgsql_query() -- 22:53:00.318 SQL [20391]: About to run query: -- 22:53:00.318 SQL [20391]: SELECT * FROM members_session WHERE member_id=7 AND session<>'87006C192E0793E17064D6661B8F61DE' -- 22:53:00.319 SQL [20391]: Found rows: 0 -- 22:53:00.319 SQL [20391]: Found rows: 0 -- 22:53:00.319 FLOG_MAX [20391]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:53:00.319 SQL [20391]: pgsql_query() -- 22:53:00.319 SQL [20391]: About to run query: -- 22:53:00.319 SQL [20391]: SELECT * FROM members_session WHERE member_id=7 AND session='87006C192E0793E17064D6661B8F61DE' -- 22:53:00.319 SQL [20391]: Found rows: 0 -- 22:53:00.319 SQL [20391]: Found rows: 0 -- 22:53:00.319 FLOG_MAX [20391]: insert_db_record() -- 22:53:00.319 SQL [20391]: pgsql_exec() -- 22:53:00.319 SQL [20391]: About to run query: -- 22:53:00.319 SQL [20391]: INSERT INTO members_session (member_id,session) VALUES ('7','87006C192E0793E17064D6661B8F61DE') -- 22:53:00.321 SQL [20391]: PQcmdTuples: 1 -- 22:53:00.321 SQL [20391]: Affected rows: 1 -- 22:53:00.321 FLOG_MAX [20391]: SELECT currval('members_session_id_seq') -- 22:53:00.321 SQL [20391]: pgsql_query() -- 22:53:00.321 SQL [20391]: About to run query: -- 22:53:00.321 SQL [20391]: SELECT currval('members_session_id_seq') -- 22:53:00.321 SQL [20391]: Found rows: 1 -- 22:53:00.321 INFO [20391]: CreateDefaultPage() -- 22:53:00.321 FLOG_MAX [20391]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:53:00.321 SQL [20391]: pgsql_query() -- 22:53:00.321 SQL [20391]: About to run query: -- 22:53:00.321 SQL [20391]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 22:53:00.321 SQL [20391]: Found rows: 1 -- 22:53:00.321 FLOG_MAX [20391]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 22:53:00.321 SQL [20391]: pgsql_query() -- 22:53:00.321 SQL [20391]: About to run query: -- 22:53:00.321 SQL [20391]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 22:53:00.322 SQL [20391]: Found rows: 1 -- 22:53:00.322 INFO [20391]: /CreateDefaultPage() -- 22:53:00.322 FLOG_MAX [20391]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:53:00.322 SQL [20391]: pgsql_query() -- 22:53:00.322 SQL [20391]: About to run query: -- 22:53:00.322 SQL [20391]: SELECT upper(md5( now()::text )) AS folder ) -- 22:53:00.322 SQL [20391]: Found rows: ERROR -- 22:53:00.322 FLOG_MAX [20391]: update_db_record() -- 22:53:00.322 SQL [20391]: pgsql_exec() -- 22:53:00.322 SQL [20391]: About to run query: -- 22:53:00.322 SQL [20391]: UPDATE members SET folder='' WHERE id=7 AND true -- 22:53:00.323 SQL [20391]: PQcmdTuples: 1 -- 22:53:00.323 SQL [20391]: Affected rows: 1 -- 22:53:00.323 INFO [20391]: /LoginCoreGradeAccount() -- 22:53:00.323 INFO [20391]: RET: added=2020-02-05 09:42:12.816064 -- 22:53:00.323 INFO [20391]: RET: email=tokslaw@chiefsoft.com -- 22:53:00.323 INFO [20391]: RET: firstname=Tokunbo -- 22:53:00.323 INFO [20391]: RET: folder= -- 22:53:00.323 INFO [20391]: RET: id=7 -- 22:53:00.323 INFO [20391]: RET: last_login= -- 22:53:00.323 INFO [20391]: RET: lastname=Lawal -- 22:53:00.323 INFO [20391]: RET: loc=192.168.1.13 -- 22:53:00.323 INFO [20391]: RET: member_id=7 -- 22:53:00.323 INFO [20391]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 22:53:00.323 INFO [20391]: RET: phone= -- 22:53:00.323 INFO [20391]: RET: pid= -- 22:53:00.323 INFO [20391]: RET: result=YES I GET TO BACK END -- 22:53:00.323 INFO [20391]: RET: sessionid=87006C192E0793E17064D6661B8F61DE -- 22:53:00.323 INFO [20391]: RET: status=1 -- 22:53:00.323 INFO [20391]: RET: stauts=OK -- 22:53:00.323 INFO [20391]: RET: username=tokslaw@chiefsoft.com -- 22:53:00.323 INFO [20391]: RET: verified= -- 22:53:00.325 INFO [20391]: COREGRADE is stopping... -- 22:53:00.325 DEBUG [20391]: Closing database connection -- 22:53:00.325 SQL [20391]: pgsql_close() -- 22:53:00.272 DEBUG [20391]: Database connection successful -- 22:53:00.272 INFO [20391]: _SERVER found -- 22:53:00.272 INFO [20391]: REMOTE_ADDR = 192.168.1.13 -- 22:53:00.272 INFO [20391]: SERVER_NAME = oameye.works.coregrade.com -- 22:53:00.272 INFO [20391]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=k5cvb8rijb015h1g4836s8t05ps9ih1j -- 22:53:00.272 INFO [20391]: QUERY_STRING = /auth -- 22:53:00.272 INFO [20391]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:53:00.325 INFO [20391]: COREGRADE is stopping... -- 22:53:00.325 DEBUG [20391]: Closing database connection -- 22:53:00.325 SQL [20391]: pgsql_close() -- 22:53:00.349 INFO [20391]: COREGRADE is starting... -- 22:53:00.350 INFO [20391]: Version from config: 1.0 -- 22:53:00.350 DEBUG [20391]: Connecting to database... -- 22:53:00.350 DEBUG [20391]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:53:00.350 SQL [20391]: pgsql_db_connect() -- 22:53:00.354 DEBUG [20391]: Database connection successful -- 22:53:00.354 INFO [20391]: _SERVER found -- 22:53:00.354 INFO [20391]: REMOTE_ADDR = 192.168.1.13 -- 22:53:00.354 INFO [20391]: SERVER_NAME = oameye.works.coregrade.com -- 22:53:00.354 INFO [20391]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=k5cvb8rijb015h1g4836s8t05ps9ih1j -- 22:53:00.354 INFO [20391]: QUERY_STRING = /member/index -- 22:53:00.354 INFO [20391]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:53:00.397 INFO [20391]: COREGRADE is stopping... -- 22:53:00.397 DEBUG [20391]: Closing database connection -- 22:53:00.397 SQL [20391]: pgsql_close() -- 22:53:00.926 INFO [20391]: COREGRADE is starting... -- 22:53:00.926 INFO [20391]: Version from config: 1.0 -- 22:53:00.926 DEBUG [20391]: Connecting to database... -- 22:53:00.926 DEBUG [20391]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:53:00.926 SQL [20391]: pgsql_db_connect() -- 22:53:00.930 DEBUG [20391]: Database connection successful -- 22:53:00.930 INFO [20391]: _SERVER found -- 22:53:00.930 INFO [20391]: REMOTE_ADDR = 192.168.1.13 -- 22:53:00.930 INFO [20391]: SERVER_NAME = oameye.works.coregrade.com -- 22:53:00.930 INFO [20391]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=k5cvb8rijb015h1g4836s8t05ps9ih1j -- 22:53:00.930 INFO [20391]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:53:00.930 INFO [20391]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:53:00.943 INFO [20391]: COREGRADE is stopping... -- 22:53:00.943 DEBUG [20391]: Closing database connection -- 22:53:00.943 SQL [20391]: pgsql_close() -- 22:53:41.009 INFO [20392]: COREGRADE is starting... -- 22:53:41.010 INFO [20392]: Version from config: 1.0 -- 22:53:41.010 DEBUG [20392]: Connecting to database... -- 22:53:41.010 DEBUG [20392]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:53:41.010 SQL [20392]: pgsql_db_connect() -- 22:53:41.014 DEBUG [20392]: Database connection successful -- 22:53:41.014 INFO [20392]: _SERVER found -- 22:53:41.014 INFO [20392]: REMOTE_ADDR = 192.168.1.13 -- 22:53:41.014 INFO [20392]: SERVER_NAME = oameye.works.coregrade.com -- 22:53:41.014 INFO [20392]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=k5cvb8rijb015h1g4836s8t05ps9ih1j -- 22:53:41.014 INFO [20392]: QUERY_STRING = /auth/logout -- 22:53:41.014 INFO [20392]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:53:41.052 INFO [20392]: COREGRADE is stopping... -- 22:53:41.052 DEBUG [20392]: Closing database connection -- 22:53:41.052 SQL [20392]: pgsql_close() -- 22:53:41.440 INFO [20392]: COREGRADE is starting... -- 22:53:41.441 INFO [20392]: Version from config: 1.0 -- 22:53:41.441 DEBUG [20392]: Connecting to database... -- 22:53:41.441 DEBUG [20392]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:53:41.441 SQL [20392]: pgsql_db_connect() -- 22:53:41.445 DEBUG [20392]: Database connection successful -- 22:53:41.445 INFO [20392]: _SERVER found -- 22:53:41.445 INFO [20392]: REMOTE_ADDR = 192.168.1.13 -- 22:53:41.445 INFO [20392]: SERVER_NAME = oameye.works.coregrade.com -- 22:53:41.445 INFO [20392]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=k5cvb8rijb015h1g4836s8t05ps9ih1j -- 22:53:41.445 INFO [20392]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:53:41.445 INFO [20392]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:53:41.457 INFO [20392]: COREGRADE is stopping... -- 22:53:41.457 DEBUG [20392]: Closing database connection -- 22:53:41.457 SQL [20392]: pgsql_close() -- 22:53:57.333 INFO [20575]: COREGRADE is starting... -- 22:53:57.333 INFO [20575]: Version from config: 1.0 -- 22:53:57.333 DEBUG [20575]: Connecting to database... -- 22:53:57.333 DEBUG [20575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:53:57.333 SQL [20575]: pgsql_db_connect() -- 22:53:57.376 INFO [20575]: COREGRADE is starting... -- 22:53:57.377 INFO [20575]: Version from config: 1.0 -- 22:53:57.377 DEBUG [20575]: Connecting to database... -- 22:53:57.377 DEBUG [20575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:53:57.377 SQL [20575]: pgsql_db_connect() -- 22:53:57.380 DEBUG [20575]: Database connection successful -- 22:53:57.380 INFO [20575]: _SERVER found -- 22:53:57.380 INFO [20575]: REMOTE_ADDR = 192.168.1.13 -- 22:53:57.380 INFO [20575]: SERVER_NAME = oameye.works.coregrade.com -- 22:53:57.380 INFO [20575]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=k5cvb8rijb015h1g4836s8t05ps9ih1j -- 22:53:57.380 INFO [20575]: QUERY_STRING = -- 22:53:57.380 INFO [20575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:53:57.381 INFO [20575]: SystemStatus()09-09-********~************ -- 22:53:57.381 INFO [20575]: long coregrade_api_main(CVars in, CVars &out) -- 22:53:57.381 INFO [20575]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 22:53:57.381 INFO [20575]: account calls -- 22:53:57.381 INFO [20575]: account_calls() -- 22:53:57.381 INFO [20575]: LoginCoreGradeAccount() -- 22:53:57.381 FLOG_MAX [20575]: REQ_STRING(username) -- 22:53:57.381 FLOG_MAX [20575]: REQ_STRING(password) -- 22:53:57.381 FLOG_MAX [20575]: REQ_STRING(sessionid) -- 22:53:57.381 FLOG_MAX [20575]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:53:57.381 SQL [20575]: pgsql_query() -- 22:53:57.381 SQL [20575]: About to run query: -- 22:53:57.381 SQL [20575]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 22:53:57.384 SQL [20575]: Found rows: 1 -- 22:53:57.384 FLOG_MAX [20575]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=16 -- 22:53:57.384 INFO [20575]: long SessionCheck(long uid, const char *sessionid, int create ) -- 22:53:57.384 SQL [20575]: pgsql_exec() -- 22:53:57.384 SQL [20575]: About to run query: -- 22:53:57.384 SQL [20575]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 22:53:57.385 SQL [20575]: PQcmdTuples: 0 -- 22:53:57.385 SQL [20575]: Affected rows: 0 -- 22:53:57.385 SQL [20575]: pgsql_exec() -- 22:53:57.385 SQL [20575]: About to run query: -- 22:53:57.385 SQL [20575]: DELETE FROM members_session WHERE member_id=7 -- 22:53:57.386 SQL [20575]: PQcmdTuples: 1 -- 22:53:57.386 SQL [20575]: Affected rows: 1 -- 22:53:57.386 SQL [20575]: pgsql_query() -- 22:53:57.386 SQL [20575]: About to run query: -- 22:53:57.386 SQL [20575]: SELECT * FROM members_session WHERE member_id=7 AND session<>'3D5849A4E9F359D79CCF72F2A51330AF' -- 22:53:57.386 SQL [20575]: Found rows: 0 -- 22:53:57.386 SQL [20575]: Found rows: 0 -- 22:53:57.386 FLOG_MAX [20575]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:53:57.386 SQL [20575]: pgsql_query() -- 22:53:57.386 SQL [20575]: About to run query: -- 22:53:57.386 SQL [20575]: SELECT * FROM members_session WHERE member_id=7 AND session='3D5849A4E9F359D79CCF72F2A51330AF' -- 22:53:57.387 SQL [20575]: Found rows: 0 -- 22:53:57.387 SQL [20575]: Found rows: 0 -- 22:53:57.387 FLOG_MAX [20575]: insert_db_record() -- 22:53:57.387 SQL [20575]: pgsql_exec() -- 22:53:57.387 SQL [20575]: About to run query: -- 22:53:57.387 SQL [20575]: INSERT INTO members_session (member_id,session) VALUES ('7','3D5849A4E9F359D79CCF72F2A51330AF') -- 22:53:57.388 SQL [20575]: PQcmdTuples: 1 -- 22:53:57.388 SQL [20575]: Affected rows: 1 -- 22:53:57.389 FLOG_MAX [20575]: SELECT currval('members_session_id_seq') -- 22:53:57.389 SQL [20575]: pgsql_query() -- 22:53:57.389 SQL [20575]: About to run query: -- 22:53:57.389 SQL [20575]: SELECT currval('members_session_id_seq') -- 22:53:57.389 SQL [20575]: Found rows: 1 -- 22:53:57.389 INFO [20575]: CreateDefaultPage() -- 22:53:57.389 FLOG_MAX [20575]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:53:57.389 SQL [20575]: pgsql_query() -- 22:53:57.389 SQL [20575]: About to run query: -- 22:53:57.389 SQL [20575]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 22:53:57.389 SQL [20575]: Found rows: 1 -- 22:53:57.389 FLOG_MAX [20575]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 22:53:57.389 SQL [20575]: pgsql_query() -- 22:53:57.389 SQL [20575]: About to run query: -- 22:53:57.389 SQL [20575]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 22:53:57.390 SQL [20575]: Found rows: 1 -- 22:53:57.390 INFO [20575]: /CreateDefaultPage() -- 22:53:57.390 FLOG_MAX [20575]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:53:57.390 SQL [20575]: pgsql_query() -- 22:53:57.390 SQL [20575]: About to run query: -- 22:53:57.390 SQL [20575]: SELECT upper(md5( now()::text )) AS folder -- 22:53:57.390 SQL [20575]: Found rows: 1 -- 22:53:57.390 FLOG_MAX [20575]: load_db_record(SELECT upper(md5( now()::text )) AS folder) num_cols=1 -- 22:53:57.390 FLOG_MAX [20575]: update_db_record() -- 22:53:57.390 SQL [20575]: pgsql_exec() -- 22:53:57.390 SQL [20575]: About to run query: -- 22:53:57.390 SQL [20575]: UPDATE members SET folder='5D06B187B1E2285A63AD1D0ECB670D98' WHERE id=7 AND true -- 22:53:57.391 SQL [20575]: PQcmdTuples: 1 -- 22:53:57.391 SQL [20575]: Affected rows: 1 -- 22:53:57.391 INFO [20575]: /LoginCoreGradeAccount() -- 22:53:57.391 INFO [20575]: RET: added=2020-02-05 09:42:12.816064 -- 22:53:57.391 INFO [20575]: RET: email=tokslaw@chiefsoft.com -- 22:53:57.391 INFO [20575]: RET: firstname=Tokunbo -- 22:53:57.391 INFO [20575]: RET: folder=5D06B187B1E2285A63AD1D0ECB670D98 -- 22:53:57.391 INFO [20575]: RET: id=7 -- 22:53:57.391 INFO [20575]: RET: last_login= -- 22:53:57.391 INFO [20575]: RET: lastname=Lawal -- 22:53:57.391 INFO [20575]: RET: loc=192.168.1.13 -- 22:53:57.391 INFO [20575]: RET: member_id=7 -- 22:53:57.391 INFO [20575]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 22:53:57.391 INFO [20575]: RET: phone= -- 22:53:57.391 INFO [20575]: RET: pid= -- 22:53:57.391 INFO [20575]: RET: result=YES I GET TO BACK END -- 22:53:57.391 INFO [20575]: RET: sessionid=3D5849A4E9F359D79CCF72F2A51330AF -- 22:53:57.391 INFO [20575]: RET: status=1 -- 22:53:57.391 INFO [20575]: RET: stauts=OK -- 22:53:57.391 INFO [20575]: RET: username=tokslaw@chiefsoft.com -- 22:53:57.391 INFO [20575]: RET: verified= -- 22:53:57.393 INFO [20575]: COREGRADE is stopping... -- 22:53:57.393 DEBUG [20575]: Closing database connection -- 22:53:57.393 SQL [20575]: pgsql_close() -- 22:53:57.339 DEBUG [20575]: Database connection successful -- 22:53:57.339 INFO [20575]: _SERVER found -- 22:53:57.339 INFO [20575]: REMOTE_ADDR = 192.168.1.13 -- 22:53:57.339 INFO [20575]: SERVER_NAME = oameye.works.coregrade.com -- 22:53:57.339 INFO [20575]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=k5cvb8rijb015h1g4836s8t05ps9ih1j -- 22:53:57.339 INFO [20575]: QUERY_STRING = /auth -- 22:53:57.339 INFO [20575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:53:57.394 INFO [20575]: COREGRADE is stopping... -- 22:53:57.394 DEBUG [20575]: Closing database connection -- 22:53:57.394 SQL [20575]: pgsql_close() -- 22:53:57.411 INFO [20575]: COREGRADE is starting... -- 22:53:57.411 INFO [20575]: Version from config: 1.0 -- 22:53:57.411 DEBUG [20575]: Connecting to database... -- 22:53:57.411 DEBUG [20575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:53:57.411 SQL [20575]: pgsql_db_connect() -- 22:53:57.415 DEBUG [20575]: Database connection successful -- 22:53:57.415 INFO [20575]: _SERVER found -- 22:53:57.415 INFO [20575]: REMOTE_ADDR = 192.168.1.13 -- 22:53:57.415 INFO [20575]: SERVER_NAME = oameye.works.coregrade.com -- 22:53:57.415 INFO [20575]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=k5cvb8rijb015h1g4836s8t05ps9ih1j -- 22:53:57.415 INFO [20575]: QUERY_STRING = /member/index -- 22:53:57.415 INFO [20575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:53:57.459 INFO [20575]: COREGRADE is stopping... -- 22:53:57.459 DEBUG [20575]: Closing database connection -- 22:53:57.459 SQL [20575]: pgsql_close() -- 22:53:57.922 INFO [20575]: COREGRADE is starting... -- 22:53:57.922 INFO [20575]: Version from config: 1.0 -- 22:53:57.922 DEBUG [20575]: Connecting to database... -- 22:53:57.922 DEBUG [20575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:53:57.922 SQL [20575]: pgsql_db_connect() -- 22:53:57.926 DEBUG [20575]: Database connection successful -- 22:53:57.926 INFO [20575]: _SERVER found -- 22:53:57.926 INFO [20575]: REMOTE_ADDR = 192.168.1.13 -- 22:53:57.926 INFO [20575]: SERVER_NAME = oameye.works.coregrade.com -- 22:53:57.926 INFO [20575]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=k5cvb8rijb015h1g4836s8t05ps9ih1j -- 22:53:57.926 INFO [20575]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:53:57.926 INFO [20575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:53:57.938 INFO [20575]: COREGRADE is stopping... -- 22:53:57.938 DEBUG [20575]: Closing database connection -- 22:53:57.938 SQL [20575]: pgsql_close() -- 22:55:34.312 INFO [20577]: COREGRADE is starting... -- 22:55:34.312 INFO [20577]: Version from config: 1.0 -- 22:55:34.312 DEBUG [20577]: Connecting to database... -- 22:55:34.312 DEBUG [20577]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:55:34.312 SQL [20577]: pgsql_db_connect() -- 22:55:34.316 DEBUG [20577]: Database connection successful -- 22:55:34.316 INFO [20577]: _SERVER found -- 22:55:34.316 INFO [20577]: REMOTE_ADDR = 192.168.1.13 -- 22:55:34.316 INFO [20577]: SERVER_NAME = oameye.works.coregrade.com -- 22:55:34.316 INFO [20577]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=k5cvb8rijb015h1g4836s8t05ps9ih1j -- 22:55:34.316 INFO [20577]: QUERY_STRING = /member/page -- 22:55:34.316 INFO [20577]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:55:34.367 INFO [20577]: COREGRADE is stopping... -- 22:55:34.367 DEBUG [20577]: Closing database connection -- 22:55:34.367 SQL [20577]: pgsql_close() -- 22:55:34.925 INFO [20577]: COREGRADE is starting... -- 22:55:34.925 INFO [20577]: Version from config: 1.0 -- 22:55:34.925 DEBUG [20577]: Connecting to database... -- 22:55:34.925 DEBUG [20577]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:55:34.925 SQL [20577]: pgsql_db_connect() -- 22:55:34.930 DEBUG [20577]: Database connection successful -- 22:55:34.930 INFO [20577]: _SERVER found -- 22:55:34.930 INFO [20577]: REMOTE_ADDR = 192.168.1.13 -- 22:55:34.930 INFO [20577]: SERVER_NAME = oameye.works.coregrade.com -- 22:55:34.930 INFO [20577]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=piavn6u17cgfc2hvu6uinm95756qeagj -- 22:55:34.930 INFO [20577]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:55:34.930 INFO [20577]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:55:34.942 INFO [20577]: COREGRADE is stopping... -- 22:55:34.942 DEBUG [20577]: Closing database connection -- 22:55:34.942 SQL [20577]: pgsql_close() -- 22:55:39.511 INFO [20577]: COREGRADE is starting... -- 22:55:39.511 INFO [20577]: Version from config: 1.0 -- 22:55:39.511 DEBUG [20577]: Connecting to database... -- 22:55:39.511 DEBUG [20577]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:55:39.511 SQL [20577]: pgsql_db_connect() -- 22:55:39.515 DEBUG [20577]: Database connection successful -- 22:55:39.515 INFO [20577]: _SERVER found -- 22:55:39.515 INFO [20577]: REMOTE_ADDR = 192.168.1.13 -- 22:55:39.515 INFO [20577]: SERVER_NAME = oameye.works.coregrade.com -- 22:55:39.515 INFO [20577]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=piavn6u17cgfc2hvu6uinm95756qeagj -- 22:55:39.515 INFO [20577]: QUERY_STRING = /member/viewCardAddAction -- 22:55:39.515 INFO [20577]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:55:39.551 INFO [20577]: COREGRADE is stopping... -- 22:55:39.551 DEBUG [20577]: Closing database connection -- 22:55:39.551 SQL [20577]: pgsql_close() -- 22:55:56.263 INFO [20579]: COREGRADE is starting... -- 22:55:56.263 INFO [20579]: Version from config: 1.0 -- 22:55:56.263 DEBUG [20579]: Connecting to database... -- 22:55:56.263 DEBUG [20579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:55:56.263 SQL [20579]: pgsql_db_connect() -- 22:55:56.268 DEBUG [20579]: Database connection successful -- 22:55:56.268 INFO [20579]: _SERVER found -- 22:55:56.268 INFO [20579]: REMOTE_ADDR = 192.168.1.13 -- 22:55:56.268 INFO [20579]: SERVER_NAME = oameye.works.coregrade.com -- 22:55:56.268 INFO [20579]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=piavn6u17cgfc2hvu6uinm95756qeagj -- 22:55:56.268 INFO [20579]: QUERY_STRING = /member/upload -- 22:55:56.268 INFO [20579]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:55:56.315 INFO [20579]: COREGRADE is stopping... -- 22:55:56.315 DEBUG [20579]: Closing database connection -- 22:55:56.315 SQL [20579]: pgsql_close() -- 22:55:56.606 INFO [20579]: COREGRADE is starting... -- 22:55:56.606 INFO [20579]: Version from config: 1.0 -- 22:55:56.606 DEBUG [20579]: Connecting to database... -- 22:55:56.606 DEBUG [20579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:55:56.606 SQL [20579]: pgsql_db_connect() -- 22:55:56.610 DEBUG [20579]: Database connection successful -- 22:55:56.610 INFO [20579]: _SERVER found -- 22:55:56.610 INFO [20579]: REMOTE_ADDR = 192.168.1.13 -- 22:55:56.610 INFO [20579]: SERVER_NAME = oameye.works.coregrade.com -- 22:55:56.610 INFO [20579]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=piavn6u17cgfc2hvu6uinm95756qeagj -- 22:55:56.610 INFO [20579]: QUERY_STRING = /member/page -- 22:55:56.610 INFO [20579]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:55:56.656 INFO [20579]: COREGRADE is stopping... -- 22:55:56.656 DEBUG [20579]: Closing database connection -- 22:55:56.656 SQL [20579]: pgsql_close() -- 22:55:56.976 INFO [20579]: COREGRADE is starting... -- 22:55:56.976 INFO [20579]: Version from config: 1.0 -- 22:55:56.976 DEBUG [20579]: Connecting to database... -- 22:55:56.976 DEBUG [20579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:55:56.976 SQL [20579]: pgsql_db_connect() -- 22:55:56.980 DEBUG [20579]: Database connection successful -- 22:55:56.980 INFO [20579]: _SERVER found -- 22:55:56.980 INFO [20579]: REMOTE_ADDR = 192.168.1.13 -- 22:55:56.980 INFO [20579]: SERVER_NAME = oameye.works.coregrade.com -- 22:55:56.980 INFO [20579]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=piavn6u17cgfc2hvu6uinm95756qeagj -- 22:55:56.980 INFO [20579]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:55:56.980 INFO [20579]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:55:56.992 INFO [20579]: COREGRADE is stopping... -- 22:55:56.992 DEBUG [20579]: Closing database connection -- 22:55:56.992 SQL [20579]: pgsql_close() -- 22:58:02.486 INFO [20578]: COREGRADE is starting... -- 22:58:02.487 INFO [20578]: Version from config: 1.0 -- 22:58:02.487 DEBUG [20578]: Connecting to database... -- 22:58:02.487 DEBUG [20578]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:58:02.487 SQL [20578]: pgsql_db_connect() -- 22:58:02.492 DEBUG [20578]: Database connection successful -- 22:58:02.492 INFO [20578]: _SERVER found -- 22:58:02.492 INFO [20578]: REMOTE_ADDR = 192.168.1.13 -- 22:58:02.492 INFO [20578]: SERVER_NAME = oameye.works.coregrade.com -- 22:58:02.492 INFO [20578]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=j2v3cub3od0afldl5bh6cbkckf2vh7up -- 22:58:02.492 INFO [20578]: QUERY_STRING = /auth/logout -- 22:58:02.492 INFO [20578]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:58:02.533 INFO [20578]: COREGRADE is stopping... -- 22:58:02.533 DEBUG [20578]: Closing database connection -- 22:58:02.533 SQL [20578]: pgsql_close() -- 22:58:02.695 INFO [20578]: COREGRADE is starting... -- 22:58:02.695 INFO [20578]: Version from config: 1.0 -- 22:58:02.695 DEBUG [20578]: Connecting to database... -- 22:58:02.695 DEBUG [20578]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:58:02.695 SQL [20578]: pgsql_db_connect() -- 22:58:02.699 DEBUG [20578]: Database connection successful -- 22:58:02.699 INFO [20578]: _SERVER found -- 22:58:02.699 INFO [20578]: REMOTE_ADDR = 192.168.1.13 -- 22:58:02.699 INFO [20578]: SERVER_NAME = oameye.works.coregrade.com -- 22:58:02.699 INFO [20578]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=b1pvmincvpouuhh6bfk1edvepnmai2aj -- 22:58:02.699 INFO [20578]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:58:02.699 INFO [20578]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:58:02.712 INFO [20578]: COREGRADE is stopping... -- 22:58:02.712 DEBUG [20578]: Closing database connection -- 22:58:02.712 SQL [20578]: pgsql_close() -- 22:58:02.740 INFO [20628]: COREGRADE is starting... -- 22:58:02.741 INFO [20628]: Version from config: 1.0 -- 22:58:02.741 DEBUG [20628]: Connecting to database... -- 22:58:02.741 DEBUG [20628]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:58:02.741 SQL [20628]: pgsql_db_connect() -- 22:58:02.745 DEBUG [20628]: Database connection successful -- 22:58:02.745 INFO [20628]: _SERVER found -- 22:58:02.745 INFO [20628]: REMOTE_ADDR = 192.168.1.13 -- 22:58:02.745 INFO [20628]: SERVER_NAME = oameye.works.coregrade.com -- 22:58:02.745 INFO [20628]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=b1pvmincvpouuhh6bfk1edvepnmai2aj -- 22:58:02.745 INFO [20628]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:58:02.745 INFO [20628]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:58:02.760 INFO [20628]: COREGRADE is stopping... -- 22:58:02.760 DEBUG [20628]: Closing database connection -- 22:58:02.760 SQL [20628]: pgsql_close() -- 22:58:12.121 INFO [20575]: COREGRADE is starting... -- 22:58:12.121 INFO [20575]: Version from config: 1.0 -- 22:58:12.121 DEBUG [20575]: Connecting to database... -- 22:58:12.122 DEBUG [20575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:58:12.122 SQL [20575]: pgsql_db_connect() -- 22:58:12.159 INFO [20575]: COREGRADE is starting... -- 22:58:12.159 INFO [20575]: Version from config: 1.0 -- 22:58:12.159 DEBUG [20575]: Connecting to database... -- 22:58:12.159 DEBUG [20575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:58:12.159 SQL [20575]: pgsql_db_connect() -- 22:58:12.163 DEBUG [20575]: Database connection successful -- 22:58:12.163 INFO [20575]: _SERVER found -- 22:58:12.163 INFO [20575]: REMOTE_ADDR = 192.168.1.13 -- 22:58:12.163 INFO [20575]: SERVER_NAME = oameye.works.coregrade.com -- 22:58:12.163 INFO [20575]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=b1pvmincvpouuhh6bfk1edvepnmai2aj -- 22:58:12.163 INFO [20575]: QUERY_STRING = -- 22:58:12.163 INFO [20575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:58:12.163 INFO [20575]: SystemStatus()09-09-********~************ -- 22:58:12.163 INFO [20575]: long coregrade_api_main(CVars in, CVars &out) -- 22:58:12.163 INFO [20575]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 22:58:12.163 INFO [20575]: account calls -- 22:58:12.163 INFO [20575]: account_calls() -- 22:58:12.163 INFO [20575]: LoginCoreGradeAccount() -- 22:58:12.163 FLOG_MAX [20575]: REQ_STRING(username) -- 22:58:12.164 FLOG_MAX [20575]: REQ_STRING(password) -- 22:58:12.164 FLOG_MAX [20575]: REQ_STRING(sessionid) -- 22:58:12.164 FLOG_MAX [20575]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:58:12.164 SQL [20575]: pgsql_query() -- 22:58:12.164 SQL [20575]: About to run query: -- 22:58:12.164 SQL [20575]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 22:58:12.167 SQL [20575]: Found rows: 1 -- 22:58:12.167 FLOG_MAX [20575]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 22:58:12.167 INFO [20575]: long SessionCheck(long uid, const char *sessionid, int create ) -- 22:58:12.167 SQL [20575]: pgsql_exec() -- 22:58:12.167 SQL [20575]: About to run query: -- 22:58:12.167 SQL [20575]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 22:58:12.169 SQL [20575]: PQcmdTuples: 1 -- 22:58:12.169 SQL [20575]: Affected rows: 1 -- 22:58:12.169 SQL [20575]: pgsql_exec() -- 22:58:12.169 SQL [20575]: About to run query: -- 22:58:12.169 SQL [20575]: DELETE FROM members_session WHERE member_id=5 -- 22:58:12.169 SQL [20575]: PQcmdTuples: 0 -- 22:58:12.169 SQL [20575]: Affected rows: 0 -- 22:58:12.169 SQL [20575]: pgsql_query() -- 22:58:12.169 SQL [20575]: About to run query: -- 22:58:12.169 SQL [20575]: SELECT * FROM members_session WHERE member_id=5 AND session<>'BE2ECEE27EE7E1552F085242FC9CA033' -- 22:58:12.170 SQL [20575]: Found rows: 0 -- 22:58:12.170 SQL [20575]: Found rows: 0 -- 22:58:12.170 FLOG_MAX [20575]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:58:12.170 SQL [20575]: pgsql_query() -- 22:58:12.170 SQL [20575]: About to run query: -- 22:58:12.170 SQL [20575]: SELECT * FROM members_session WHERE member_id=5 AND session='BE2ECEE27EE7E1552F085242FC9CA033' -- 22:58:12.170 SQL [20575]: Found rows: 0 -- 22:58:12.170 SQL [20575]: Found rows: 0 -- 22:58:12.170 FLOG_MAX [20575]: insert_db_record() -- 22:58:12.170 SQL [20575]: pgsql_exec() -- 22:58:12.170 SQL [20575]: About to run query: -- 22:58:12.170 SQL [20575]: INSERT INTO members_session (member_id,session) VALUES ('5','BE2ECEE27EE7E1552F085242FC9CA033') -- 22:58:12.172 SQL [20575]: PQcmdTuples: 1 -- 22:58:12.172 SQL [20575]: Affected rows: 1 -- 22:58:12.172 FLOG_MAX [20575]: SELECT currval('members_session_id_seq') -- 22:58:12.172 SQL [20575]: pgsql_query() -- 22:58:12.172 SQL [20575]: About to run query: -- 22:58:12.172 SQL [20575]: SELECT currval('members_session_id_seq') -- 22:58:12.172 SQL [20575]: Found rows: 1 -- 22:58:12.172 INFO [20575]: CreateDefaultPage() -- 22:58:12.172 FLOG_MAX [20575]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:58:12.172 SQL [20575]: pgsql_query() -- 22:58:12.172 SQL [20575]: About to run query: -- 22:58:12.172 SQL [20575]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 22:58:12.173 SQL [20575]: Found rows: 1 -- 22:58:12.173 FLOG_MAX [20575]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 22:58:12.173 SQL [20575]: pgsql_query() -- 22:58:12.173 SQL [20575]: About to run query: -- 22:58:12.173 SQL [20575]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 22:58:12.173 SQL [20575]: Found rows: 1 -- 22:58:12.173 INFO [20575]: /CreateDefaultPage() -- 22:58:12.173 FLOG_MAX [20575]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:58:12.173 SQL [20575]: pgsql_query() -- 22:58:12.173 SQL [20575]: About to run query: -- 22:58:12.173 SQL [20575]: SELECT upper(md5( now()::text )) AS folder -- 22:58:12.173 SQL [20575]: Found rows: 1 -- 22:58:12.173 FLOG_MAX [20575]: load_db_record(SELECT upper(md5( now()::text )) AS folder) num_cols=1 -- 22:58:12.173 FLOG_MAX [20575]: update_db_record() -- 22:58:12.173 SQL [20575]: pgsql_exec() -- 22:58:12.173 SQL [20575]: About to run query: -- 22:58:12.173 SQL [20575]: UPDATE members SET folder='E5AB5CE0D4C24E4B9D968204658128F3' WHERE id=5 AND true -- 22:58:12.174 SQL [20575]: PQcmdTuples: 1 -- 22:58:12.175 SQL [20575]: Affected rows: 1 -- 22:58:12.175 INFO [20575]: /LoginCoreGradeAccount() -- 22:58:12.175 INFO [20575]: RET: added=2020-02-05 06:47:23.982154 -- 22:58:12.175 INFO [20575]: RET: email=ameye+11@chiefsoft.com -- 22:58:12.175 INFO [20575]: RET: firstname=Olu -- 22:58:12.175 INFO [20575]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 22:58:12.175 INFO [20575]: RET: id=5 -- 22:58:12.175 INFO [20575]: RET: last_login= -- 22:58:12.175 INFO [20575]: RET: lastname=Amey -- 22:58:12.175 INFO [20575]: RET: loc=192.168.1.13 -- 22:58:12.175 INFO [20575]: RET: member_id=5 -- 22:58:12.175 INFO [20575]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 22:58:12.175 INFO [20575]: RET: phone= -- 22:58:12.175 INFO [20575]: RET: pid= -- 22:58:12.175 INFO [20575]: RET: result=YES I GET TO BACK END -- 22:58:12.175 INFO [20575]: RET: sessionid=BE2ECEE27EE7E1552F085242FC9CA033 -- 22:58:12.175 INFO [20575]: RET: status=1 -- 22:58:12.175 INFO [20575]: RET: stauts=OK -- 22:58:12.175 INFO [20575]: RET: username=ameye+11@chiefsoft.com -- 22:58:12.175 INFO [20575]: RET: verified= -- 22:58:12.176 INFO [20575]: COREGRADE is stopping... -- 22:58:12.176 DEBUG [20575]: Closing database connection -- 22:58:12.176 SQL [20575]: pgsql_close() -- 22:58:12.126 DEBUG [20575]: Database connection successful -- 22:58:12.126 INFO [20575]: _SERVER found -- 22:58:12.126 INFO [20575]: REMOTE_ADDR = 192.168.1.13 -- 22:58:12.126 INFO [20575]: SERVER_NAME = oameye.works.coregrade.com -- 22:58:12.126 INFO [20575]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=b1pvmincvpouuhh6bfk1edvepnmai2aj -- 22:58:12.126 INFO [20575]: QUERY_STRING = /auth -- 22:58:12.126 INFO [20575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:58:12.176 INFO [20575]: COREGRADE is stopping... -- 22:58:12.177 DEBUG [20575]: Closing database connection -- 22:58:12.177 SQL [20575]: pgsql_close() -- 22:58:12.204 INFO [20575]: COREGRADE is starting... -- 22:58:12.204 INFO [20575]: Version from config: 1.0 -- 22:58:12.204 DEBUG [20575]: Connecting to database... -- 22:58:12.204 DEBUG [20575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:58:12.204 SQL [20575]: pgsql_db_connect() -- 22:58:12.208 DEBUG [20575]: Database connection successful -- 22:58:12.208 INFO [20575]: _SERVER found -- 22:58:12.208 INFO [20575]: REMOTE_ADDR = 192.168.1.13 -- 22:58:12.208 INFO [20575]: SERVER_NAME = oameye.works.coregrade.com -- 22:58:12.208 INFO [20575]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=b1pvmincvpouuhh6bfk1edvepnmai2aj -- 22:58:12.208 INFO [20575]: QUERY_STRING = /member/index -- 22:58:12.208 INFO [20575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:58:12.249 INFO [20575]: COREGRADE is stopping... -- 22:58:12.249 DEBUG [20575]: Closing database connection -- 22:58:12.249 SQL [20575]: pgsql_close() -- 22:58:12.535 INFO [20575]: COREGRADE is starting... -- 22:58:12.535 INFO [20575]: Version from config: 1.0 -- 22:58:12.535 DEBUG [20575]: Connecting to database... -- 22:58:12.535 DEBUG [20575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:58:12.535 SQL [20575]: pgsql_db_connect() -- 22:58:12.540 DEBUG [20575]: Database connection successful -- 22:58:12.540 INFO [20575]: _SERVER found -- 22:58:12.540 INFO [20575]: REMOTE_ADDR = 192.168.1.13 -- 22:58:12.540 INFO [20575]: SERVER_NAME = oameye.works.coregrade.com -- 22:58:12.540 INFO [20575]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=b1pvmincvpouuhh6bfk1edvepnmai2aj -- 22:58:12.540 INFO [20575]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:58:12.540 INFO [20575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:58:12.551 INFO [20575]: COREGRADE is stopping... -- 22:58:12.551 DEBUG [20575]: Closing database connection -- 22:58:12.551 SQL [20575]: pgsql_close() -- 22:58:12.595 INFO [20575]: COREGRADE is starting... -- 22:58:12.595 INFO [20575]: Version from config: 1.0 -- 22:58:12.595 DEBUG [20575]: Connecting to database... -- 22:58:12.595 DEBUG [20575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:58:12.595 SQL [20575]: pgsql_db_connect() -- 22:58:12.599 DEBUG [20575]: Database connection successful -- 22:58:12.599 INFO [20575]: _SERVER found -- 22:58:12.599 INFO [20575]: REMOTE_ADDR = 192.168.1.13 -- 22:58:12.599 INFO [20575]: SERVER_NAME = oameye.works.coregrade.com -- 22:58:12.599 INFO [20575]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=b1pvmincvpouuhh6bfk1edvepnmai2aj -- 22:58:12.599 INFO [20575]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:58:12.599 INFO [20575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:58:12.611 INFO [20575]: COREGRADE is stopping... -- 22:58:12.611 DEBUG [20575]: Closing database connection -- 22:58:12.611 SQL [20575]: pgsql_close() -- 22:58:39.085 INFO [20638]: COREGRADE is starting... -- 22:58:39.085 INFO [20638]: Version from config: 1.0 -- 22:58:39.085 DEBUG [20638]: Connecting to database... -- 22:58:39.085 DEBUG [20638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:58:39.085 SQL [20638]: pgsql_db_connect() -- 22:58:39.090 DEBUG [20638]: Database connection successful -- 22:58:39.090 INFO [20638]: _SERVER found -- 22:58:39.090 INFO [20638]: REMOTE_ADDR = 192.168.1.13 -- 22:58:39.090 INFO [20638]: SERVER_NAME = oameye.works.coregrade.com -- 22:58:39.090 INFO [20638]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=piavn6u17cgfc2hvu6uinm95756qeagj -- 22:58:39.090 INFO [20638]: QUERY_STRING = /member/page -- 22:58:39.090 INFO [20638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:58:39.140 INFO [20638]: COREGRADE is stopping... -- 22:58:39.140 DEBUG [20638]: Closing database connection -- 22:58:39.140 SQL [20638]: pgsql_close() -- 22:58:39.670 INFO [20638]: COREGRADE is starting... -- 22:58:39.670 INFO [20638]: Version from config: 1.0 -- 22:58:39.670 DEBUG [20638]: Connecting to database... -- 22:58:39.670 DEBUG [20638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:58:39.670 SQL [20638]: pgsql_db_connect() -- 22:58:39.675 DEBUG [20638]: Database connection successful -- 22:58:39.675 INFO [20638]: _SERVER found -- 22:58:39.675 INFO [20638]: REMOTE_ADDR = 192.168.1.13 -- 22:58:39.675 INFO [20638]: SERVER_NAME = oameye.works.coregrade.com -- 22:58:39.675 INFO [20638]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=piavn6u17cgfc2hvu6uinm95756qeagj -- 22:58:39.675 INFO [20638]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:58:39.675 INFO [20638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:58:39.687 INFO [20638]: COREGRADE is stopping... -- 22:58:39.687 DEBUG [20638]: Closing database connection -- 22:58:39.687 SQL [20638]: pgsql_close() -- 22:58:44.001 INFO [20576]: COREGRADE is starting... -- 22:58:44.001 INFO [20576]: Version from config: 1.0 -- 22:58:44.001 DEBUG [20576]: Connecting to database... -- 22:58:44.001 DEBUG [20576]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:58:44.001 SQL [20576]: pgsql_db_connect() -- 22:58:44.006 DEBUG [20576]: Database connection successful -- 22:58:44.006 INFO [20576]: _SERVER found -- 22:58:44.006 INFO [20576]: REMOTE_ADDR = 192.168.1.13 -- 22:58:44.006 INFO [20576]: SERVER_NAME = oameye.works.coregrade.com -- 22:58:44.006 INFO [20576]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=piavn6u17cgfc2hvu6uinm95756qeagj -- 22:58:44.006 INFO [20576]: QUERY_STRING = /auth/logout -- 22:58:44.006 INFO [20576]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:58:44.046 INFO [20576]: COREGRADE is stopping... -- 22:58:44.047 DEBUG [20576]: Closing database connection -- 22:58:44.047 SQL [20576]: pgsql_close() -- 22:58:44.399 INFO [20576]: COREGRADE is starting... -- 22:58:44.399 INFO [20576]: Version from config: 1.0 -- 22:58:44.400 DEBUG [20576]: Connecting to database... -- 22:58:44.400 DEBUG [20576]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:58:44.400 SQL [20576]: pgsql_db_connect() -- 22:58:44.404 DEBUG [20576]: Database connection successful -- 22:58:44.404 INFO [20576]: _SERVER found -- 22:58:44.404 INFO [20576]: REMOTE_ADDR = 192.168.1.13 -- 22:58:44.404 INFO [20576]: SERVER_NAME = oameye.works.coregrade.com -- 22:58:44.404 INFO [20576]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=piavn6u17cgfc2hvu6uinm95756qeagj -- 22:58:44.404 INFO [20576]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:58:44.404 INFO [20576]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:58:44.416 INFO [20576]: COREGRADE is stopping... -- 22:58:44.416 DEBUG [20576]: Closing database connection -- 22:58:44.416 SQL [20576]: pgsql_close() -- 22:58:46.946 INFO [20576]: COREGRADE is starting... -- 22:58:46.947 INFO [20576]: Version from config: 1.0 -- 22:58:46.947 DEBUG [20576]: Connecting to database... -- 22:58:46.947 DEBUG [20576]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:58:46.947 SQL [20576]: pgsql_db_connect() -- 22:58:46.951 DEBUG [20576]: Database connection successful -- 22:58:46.951 INFO [20576]: _SERVER found -- 22:58:46.951 INFO [20576]: REMOTE_ADDR = 192.168.1.13 -- 22:58:46.951 INFO [20576]: SERVER_NAME = oameye.works.coregrade.com -- 22:58:46.951 INFO [20576]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=piavn6u17cgfc2hvu6uinm95756qeagj -- 22:58:46.951 INFO [20576]: QUERY_STRING = /auth/newuser -- 22:58:46.951 INFO [20576]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:58:46.984 INFO [20576]: COREGRADE is stopping... -- 22:58:46.984 DEBUG [20576]: Closing database connection -- 22:58:46.984 SQL [20576]: pgsql_close() -- 22:58:47.375 INFO [20576]: COREGRADE is starting... -- 22:58:47.375 INFO [20576]: Version from config: 1.0 -- 22:58:47.375 DEBUG [20576]: Connecting to database... -- 22:58:47.375 DEBUG [20576]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:58:47.375 SQL [20576]: pgsql_db_connect() -- 22:58:47.380 DEBUG [20576]: Database connection successful -- 22:58:47.380 INFO [20576]: _SERVER found -- 22:58:47.380 INFO [20576]: REMOTE_ADDR = 192.168.1.13 -- 22:58:47.380 INFO [20576]: SERVER_NAME = oameye.works.coregrade.com -- 22:58:47.380 INFO [20576]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=piavn6u17cgfc2hvu6uinm95756qeagj -- 22:58:47.380 INFO [20576]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:58:47.380 INFO [20576]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:58:47.391 INFO [20576]: COREGRADE is stopping... -- 22:58:47.391 DEBUG [20576]: Closing database connection -- 22:58:47.391 SQL [20576]: pgsql_close() -- 22:59:54.591 INFO [20577]: COREGRADE is starting... -- 22:59:54.591 INFO [20577]: Version from config: 1.0 -- 22:59:54.591 DEBUG [20577]: Connecting to database... -- 22:59:54.591 DEBUG [20577]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:59:54.591 SQL [20577]: pgsql_db_connect() -- 22:59:54.629 INFO [20577]: COREGRADE is starting... -- 22:59:54.630 INFO [20577]: Version from config: 1.0 -- 22:59:54.630 DEBUG [20577]: Connecting to database... -- 22:59:54.630 DEBUG [20577]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:59:54.630 SQL [20577]: pgsql_db_connect() -- 22:59:54.634 DEBUG [20577]: Database connection successful -- 22:59:54.634 INFO [20577]: _SERVER found -- 22:59:54.634 INFO [20577]: REMOTE_ADDR = 192.168.1.13 -- 22:59:54.634 INFO [20577]: SERVER_NAME = oameye.works.coregrade.com -- 22:59:54.634 INFO [20577]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=piavn6u17cgfc2hvu6uinm95756qeagj -- 22:59:54.634 INFO [20577]: QUERY_STRING = -- 22:59:54.634 INFO [20577]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:59:54.634 INFO [20577]: SystemStatus()09-09-********~************ -- 22:59:54.634 INFO [20577]: long coregrade_api_main(CVars in, CVars &out) -- 22:59:54.634 INFO [20577]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 22:59:54.634 INFO [20577]: account calls -- 22:59:54.634 INFO [20577]: account_calls() -- 22:59:54.634 FLOG_MAX [20577]: REQ_STRING(username) -- 22:59:54.634 FLOG_MAX [20577]: REQ_STRING(firstname) -- 22:59:54.634 FLOG_MAX [20577]: REQ_STRING(lastname) -- 22:59:54.634 FLOG_MAX [20577]: REQ_STRING(email) -- 22:59:54.634 SQL [20577]: pgsql_query() -- 22:59:54.634 SQL [20577]: About to run query: -- 22:59:54.634 SQL [20577]: SELECT * FROM members WHERE LOWER(username) = LOWER('zanetisgrace@gmail.com') -- 22:59:54.637 SQL [20577]: Found rows: 0 -- 22:59:54.637 SQL [20577]: Found rows: 0 -- 22:59:54.637 FLOG_MAX [20577]: insert_db_record() -- 22:59:54.637 SQL [20577]: pgsql_exec() -- 22:59:54.637 SQL [20577]: About to run query: -- 22:59:54.637 SQL [20577]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('zanetisgrace@gmail.com','myer','Grace','192.168.1.13','','zanetisgrace@gmail.com','RS-371555328-410390528-905428992') -- 22:59:54.638 SQL [20577]: PQcmdTuples: 1 -- 22:59:54.638 SQL [20577]: Affected rows: 1 -- 22:59:54.638 FLOG_MAX [20577]: SELECT currval('members_pending_id_seq') -- 22:59:54.638 SQL [20577]: pgsql_query() -- 22:59:54.639 SQL [20577]: About to run query: -- 22:59:54.639 SQL [20577]: SELECT currval('members_pending_id_seq') -- 22:59:54.639 SQL [20577]: Found rows: 1 -- 22:59:54.639 SQL [20577]: pgsql_query() -- 22:59:54.639 SQL [20577]: About to run query: -- 22:59:54.639 SQL [20577]: UPDATE members_pending SET password = md5('may12002') WHERE id = 27 -- 22:59:54.640 SQL [20577]: Found rows: 0 -- 22:59:54.640 SQL [20577]: Found rows: 0 -- 22:59:54.640 FLOG_MAX [20577]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:59:54.640 SQL [20577]: pgsql_query() -- 22:59:54.640 SQL [20577]: About to run query: -- 22:59:54.640 SQL [20577]: SELECT * FROM members_pending WHERE id = 27 -- 22:59:54.640 SQL [20577]: Found rows: 1 -- 22:59:54.641 FLOG_MAX [20577]: load_db_record(SELECT * FROM members_pending WHERE id = 27 ) num_cols=13 -- 22:59:54.641 FLOG_MAX [20577]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 22:59:54.641 FLOG_MAX [20577]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1454 bytes -- 22:59:54.641 FLOG_MAX [20577]: Returning from FormFile() -- 22:59:54.641 FLOG_MAX [20577]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 22:59:54.641 FLOG_MAX [20577]: ESMTP( 10.0.0.23, support@coregrade.com, zanetisgrace@gmail.com ) -- 22:59:54.641 FLOG_MAX [20577]: Prepare body -- 22:59:54.641 FLOG_MAX [20577]: Locate & extract subject -- 22:59:54.641 FLOG_MAX [20577]: Found subject: CoreGrade - Pending Signup - Verify zanetisgrace@gmail.com -- 22:59:54.641 FLOG_MAX [20577]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t zanetisgrace@gmail.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'CoreGrade - Pending Signup - Verify zanetisgrace@gmail.com' -M ' - - - -
-
- - - - - - - -
CoreGrade
-Dear myer, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to verify your email. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-371555328-410390528-905428992 -
-CoreGrade,your personalized learning in one place with tools to make it happen. CoreGrade makes it easy to track due dates of goals set, focus plans with e-alerts in your workspace and dashboard. - -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/home/contactus?vlnk=RS-371555328-410390528-905428992 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-
-
- -
- - - - - -' -- 22:59:54.728 FLOG_MAX [20577]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Pending Signup - Verify zanetisgrace@gmail.com -From: CoreGrade Support -Date: Thu, 20 Feb 2020 22:59:54 -0500 -To: zanetisgrace@gmail.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="8ae6ITbN3uTO7TDt" -Mime-version: 1.0 - - ---8ae6ITbN3uTO7TDt -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
- - - - - - - -
CoreGrade
-Dear myer, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to verify your email. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-371555328-410390528-905428992 -
-CoreGrade,your personalized learning in one place with tools to make it happen. CoreGrade makes it easy to track due dates of goals set, focus plans with e-alerts in your workspace and dashboard. - -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/home/contactus?vlnk=RS-371555328-410390528-905428992 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-
-
- -
- - - - - - - - ---8ae6ITbN3uTO7TDt-- - -[C] . -[S] 250 2.0.0 Ok: queued as B0C442113065 -[C] QUIT -[S] 221 2.0.0 Bye - -- 22:59:54.728 FLOG_MAX [20577]: - -END OF PIPE OUTPUT - - -- 22:59:54.728 FLOG_MAX [20577]: /ESMTP() -- 22:59:54.728 INFO [20577]: RET: action=11010 -- 22:59:54.728 INFO [20577]: RET: email=zanetisgrace@gmail.com -- 22:59:54.728 INFO [20577]: RET: firstname=myer -- 22:59:54.728 INFO [20577]: RET: lastname=Grace -- 22:59:54.728 INFO [20577]: RET: password=may12002 -- 22:59:54.728 INFO [20577]: RET: pending_id=27 -- 22:59:54.728 INFO [20577]: RET: pid=100 -- 22:59:54.728 INFO [20577]: RET: status_message=Pending -- 22:59:54.728 INFO [20577]: RET: username=zanetisgrace@gmail.com -- 22:59:54.731 INFO [20577]: COREGRADE is stopping... -- 22:59:54.731 DEBUG [20577]: Closing database connection -- 22:59:54.731 SQL [20577]: pgsql_close() -- 22:59:54.596 DEBUG [20577]: Database connection successful -- 22:59:54.596 INFO [20577]: _SERVER found -- 22:59:54.596 INFO [20577]: REMOTE_ADDR = 192.168.1.13 -- 22:59:54.596 INFO [20577]: SERVER_NAME = oameye.works.coregrade.com -- 22:59:54.596 INFO [20577]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=piavn6u17cgfc2hvu6uinm95756qeagj -- 22:59:54.596 INFO [20577]: QUERY_STRING = /auth/newuser -- 22:59:54.596 INFO [20577]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:59:54.732 INFO [20577]: COREGRADE is stopping... -- 22:59:54.732 DEBUG [20577]: Closing database connection -- 22:59:54.732 SQL [20577]: pgsql_close() -- 22:59:55.216 INFO [20577]: COREGRADE is starting... -- 22:59:55.216 INFO [20577]: Version from config: 1.0 -- 22:59:55.216 DEBUG [20577]: Connecting to database... -- 22:59:55.216 DEBUG [20577]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:59:55.216 SQL [20577]: pgsql_db_connect() -- 22:59:55.221 DEBUG [20577]: Database connection successful -- 22:59:55.221 INFO [20577]: _SERVER found -- 22:59:55.221 INFO [20577]: REMOTE_ADDR = 192.168.1.13 -- 22:59:55.221 INFO [20577]: SERVER_NAME = oameye.works.coregrade.com -- 22:59:55.221 INFO [20577]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=piavn6u17cgfc2hvu6uinm95756qeagj -- 22:59:55.221 INFO [20577]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:59:55.221 INFO [20577]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:59:55.233 INFO [20577]: COREGRADE is stopping... -- 22:59:55.233 DEBUG [20577]: Closing database connection -- 22:59:55.233 SQL [20577]: pgsql_close() -- 22:59:55.242 INFO [20577]: COREGRADE is starting... -- 22:59:55.243 INFO [20577]: Version from config: 1.0 -- 22:59:55.243 DEBUG [20577]: Connecting to database... -- 22:59:55.243 DEBUG [20577]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:59:55.243 SQL [20577]: pgsql_db_connect() -- 22:59:55.247 DEBUG [20577]: Database connection successful -- 22:59:55.247 INFO [20577]: _SERVER found -- 22:59:55.247 INFO [20577]: REMOTE_ADDR = 192.168.1.13 -- 22:59:55.247 INFO [20577]: SERVER_NAME = oameye.works.coregrade.com -- 22:59:55.247 INFO [20577]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=piavn6u17cgfc2hvu6uinm95756qeagj -- 22:59:55.247 INFO [20577]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:59:55.247 INFO [20577]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:59:55.258 INFO [20577]: COREGRADE is stopping... -- 22:59:55.258 DEBUG [20577]: Closing database connection -- 22:59:55.258 SQL [20577]: pgsql_close() -- 23:00:42.994 INFO [20579]: COREGRADE is starting... -- 23:00:42.994 INFO [20579]: Version from config: 1.0 -- 23:00:42.994 DEBUG [20579]: Connecting to database... -- 23:00:42.995 DEBUG [20579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:00:42.995 SQL [20579]: pgsql_db_connect() -- 23:00:43.031 INFO [20579]: COREGRADE is starting... -- 23:00:43.032 INFO [20579]: Version from config: 1.0 -- 23:00:43.032 DEBUG [20579]: Connecting to database... -- 23:00:43.032 DEBUG [20579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:00:43.032 SQL [20579]: pgsql_db_connect() -- 23:00:43.036 DEBUG [20579]: Database connection successful -- 23:00:43.036 INFO [20579]: _SERVER found -- 23:00:43.036 INFO [20579]: REMOTE_ADDR = 192.168.1.13 -- 23:00:43.036 INFO [20579]: SERVER_NAME = oameye.works.coregrade.com -- 23:00:43.036 INFO [20579]: QUERY_STRING = vlnk=RS-371555328-410390528-905428992 -- 23:00:43.036 INFO [20579]: HTTP_X_FORWARDED_FOR = 54.196.3.246 -- 23:00:43.036 INFO [20579]: SystemStatus()09-09-********~************ -- 23:00:43.036 INFO [20579]: long coregrade_api_main(CVars in, CVars &out) -- 23:00:43.036 INFO [20579]: long coregrade_api_main(CVars in, CVars &out) action =11020 -- 23:00:43.036 INFO [20579]: account calls -- 23:00:43.036 INFO [20579]: account_calls() -- 23:00:43.036 INFO [20579]: CreateCoreGradeAccount() -- 23:00:43.036 FLOG_MAX [20579]: REQ_STRING(verify_link) -- 23:00:43.036 FLOG_MAX [20579]: long load_db_record( CVars &rec, const char * query, ... ) -- 23:00:43.036 SQL [20579]: pgsql_query() -- 23:00:43.036 SQL [20579]: About to run query: -- 23:00:43.036 SQL [20579]: SELECT *,id AS pending_id FROM members_pending WHERE verify_link ='RS-371555328-410390528-905428992' AND expire > now() LIMIT 1 -- 23:00:43.039 SQL [20579]: Found rows: 1 -- 23:00:43.039 FLOG_MAX [20579]: load_db_record(SELECT *,id AS pending_id FROM members_pending WHERE verify_link ='RS-371555328-410390528-905428992' AND expire > now() LIMIT 1) num_cols=14 -- 23:00:43.039 FLOG_MAX [20579]: insert_db_record() -- 23:00:43.039 SQL [20579]: pgsql_exec() -- 23:00:43.039 SQL [20579]: About to run query: -- 23:00:43.039 SQL [20579]: INSERT INTO members (email,firstname,lastname,loc,password,phone,username) VALUES ('zanetisgrace@gmail.com','myer','Grace','192.168.1.13','d0fbea2563b377ea7074bced45c88dcb','','zanetisgrace@gmail.com') -- 23:00:43.041 SQL [20579]: PQcmdTuples: 1 -- 23:00:43.041 SQL [20579]: Affected rows: 1 -- 23:00:43.041 FLOG_MAX [20579]: SELECT currval('members_id_seq') -- 23:00:43.041 SQL [20579]: pgsql_query() -- 23:00:43.041 SQL [20579]: About to run query: -- 23:00:43.041 SQL [20579]: SELECT currval('members_id_seq') -- 23:00:43.041 SQL [20579]: Found rows: 1 -- 23:00:43.041 SQL [20579]: pgsql_query() -- 23:00:43.041 SQL [20579]: About to run query: -- 23:00:43.041 SQL [20579]: UPDATE members_pending SET status = 5,verified=now() WHERE id = 27 -- 23:00:43.042 SQL [20579]: Found rows: 0 -- 23:00:43.042 SQL [20579]: Found rows: 0 -- 23:00:43.042 INFO [20579]: /CreateCoreGradeAccount() -- 23:00:43.042 INFO [20579]: RET: added=2020-02-20 22:59:54.637231 -- 23:00:43.042 INFO [20579]: RET: email=zanetisgrace@gmail.com -- 23:00:43.042 INFO [20579]: RET: expire=2020-02-22 22:59:54.637231 -- 23:00:43.042 INFO [20579]: RET: firstname=myer -- 23:00:43.042 INFO [20579]: RET: id=27 -- 23:00:43.042 INFO [20579]: RET: lastname=Grace -- 23:00:43.042 INFO [20579]: RET: loc=192.168.1.13 -- 23:00:43.042 INFO [20579]: RET: member_id=14 -- 23:00:43.042 INFO [20579]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 23:00:43.042 INFO [20579]: RET: pending_id=27 -- 23:00:43.042 INFO [20579]: RET: phone= -- 23:00:43.042 INFO [20579]: RET: result=YES I GET TO BACK END -- 23:00:43.042 INFO [20579]: RET: status=prepare to create account -- 23:00:43.042 INFO [20579]: RET: username=zanetisgrace@gmail.com -- 23:00:43.042 INFO [20579]: RET: verified= -- 23:00:43.042 INFO [20579]: RET: verify_link=RS-371555328-410390528-905428992 -- 23:00:43.043 INFO [20579]: COREGRADE is stopping... -- 23:00:43.043 DEBUG [20579]: Closing database connection -- 23:00:43.043 SQL [20579]: pgsql_close() -- 23:00:42.999 DEBUG [20579]: Database connection successful -- 23:00:42.999 INFO [20579]: _SERVER found -- 23:00:42.999 INFO [20579]: REMOTE_ADDR = 192.168.1.13 -- 23:00:42.999 INFO [20579]: SERVER_NAME = oameye.works.coregrade.com -- 23:00:42.999 INFO [20579]: QUERY_STRING = /vemail -- 23:00:42.999 INFO [20579]: HTTP_X_FORWARDED_FOR = 54.196.3.246 -- 23:00:43.044 INFO [20579]: COREGRADE is stopping... -- 23:00:43.044 DEBUG [20579]: Closing database connection -- 23:00:43.044 SQL [20579]: pgsql_close() -- 23:00:43.208 INFO [20579]: COREGRADE is starting... -- 23:00:43.208 INFO [20579]: Version from config: 1.0 -- 23:00:43.208 DEBUG [20579]: Connecting to database... -- 23:00:43.208 DEBUG [20579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:00:43.208 SQL [20579]: pgsql_db_connect() -- 23:00:43.212 DEBUG [20579]: Database connection successful -- 23:00:43.212 INFO [20579]: _SERVER found -- 23:00:43.212 INFO [20579]: REMOTE_ADDR = 192.168.1.13 -- 23:00:43.212 INFO [20579]: SERVER_NAME = oameye.works.coregrade.com -- 23:00:43.212 INFO [20579]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 23:00:43.212 INFO [20579]: HTTP_X_FORWARDED_FOR = 54.196.3.246 -- 23:00:43.224 INFO [20579]: COREGRADE is stopping... -- 23:00:43.224 DEBUG [20579]: Closing database connection -- 23:00:43.224 SQL [20579]: pgsql_close() -- 23:00:43.360 INFO [20578]: COREGRADE is starting... -- 23:00:43.361 INFO [20578]: Version from config: 1.0 -- 23:00:43.361 DEBUG [20578]: Connecting to database... -- 23:00:43.361 DEBUG [20578]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:00:43.361 SQL [20578]: pgsql_db_connect() -- 23:00:43.365 DEBUG [20578]: Database connection successful -- 23:00:43.365 INFO [20578]: _SERVER found -- 23:00:43.365 INFO [20578]: REMOTE_ADDR = 192.168.1.13 -- 23:00:43.365 INFO [20578]: SERVER_NAME = oameye.works.coregrade.com -- 23:00:43.365 INFO [20578]: QUERY_STRING = /favicon.ico -- 23:00:43.365 INFO [20578]: HTTP_X_FORWARDED_FOR = 54.196.3.246 -- 23:00:43.377 INFO [20578]: COREGRADE is stopping... -- 23:00:43.378 DEBUG [20578]: Closing database connection -- 23:00:43.378 SQL [20578]: pgsql_close() -- 23:00:54.751 INFO [20628]: COREGRADE is starting... -- 23:00:54.752 INFO [20628]: Version from config: 1.0 -- 23:00:54.752 DEBUG [20628]: Connecting to database... -- 23:00:54.752 DEBUG [20628]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:00:54.752 SQL [20628]: pgsql_db_connect() -- 23:00:54.792 INFO [20628]: COREGRADE is starting... -- 23:00:54.792 INFO [20628]: Version from config: 1.0 -- 23:00:54.792 DEBUG [20628]: Connecting to database... -- 23:00:54.792 DEBUG [20628]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:00:54.792 SQL [20628]: pgsql_db_connect() -- 23:00:54.796 DEBUG [20628]: Database connection successful -- 23:00:54.796 INFO [20628]: _SERVER found -- 23:00:54.796 INFO [20628]: REMOTE_ADDR = 192.168.1.13 -- 23:00:54.796 INFO [20628]: SERVER_NAME = oameye.works.coregrade.com -- 23:00:54.796 INFO [20628]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171 -- 23:00:54.796 INFO [20628]: QUERY_STRING = vlnk=RS-371555328-410390528-905428992 -- 23:00:54.796 INFO [20628]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:00:54.796 INFO [20628]: SystemStatus()09-09-********~************ -- 23:00:54.796 INFO [20628]: long coregrade_api_main(CVars in, CVars &out) -- 23:00:54.796 INFO [20628]: long coregrade_api_main(CVars in, CVars &out) action =11020 -- 23:00:54.796 INFO [20628]: account calls -- 23:00:54.796 INFO [20628]: account_calls() -- 23:00:54.796 INFO [20628]: CreateCoreGradeAccount() -- 23:00:54.796 FLOG_MAX [20628]: REQ_STRING(verify_link) -- 23:00:54.796 FLOG_MAX [20628]: long load_db_record( CVars &rec, const char * query, ... ) -- 23:00:54.796 SQL [20628]: pgsql_query() -- 23:00:54.796 SQL [20628]: About to run query: -- 23:00:54.796 SQL [20628]: SELECT *,id AS pending_id FROM members_pending WHERE verify_link ='RS-371555328-410390528-905428992' AND expire > now() LIMIT 1 -- 23:00:54.799 SQL [20628]: Found rows: 1 -- 23:00:54.799 FLOG_MAX [20628]: load_db_record(SELECT *,id AS pending_id FROM members_pending WHERE verify_link ='RS-371555328-410390528-905428992' AND expire > now() LIMIT 1) num_cols=14 -- 23:00:54.799 FLOG_MAX [20628]: insert_db_record() -- 23:00:54.799 SQL [20628]: pgsql_exec() -- 23:00:54.799 SQL [20628]: About to run query: -- 23:00:54.799 SQL [20628]: INSERT INTO members (email,firstname,lastname,loc,password,phone,username) VALUES ('zanetisgrace@gmail.com','myer','Grace','192.168.1.13','d0fbea2563b377ea7074bced45c88dcb','','zanetisgrace@gmail.com') -- 23:00:54.800 SQL [20628]: Affected rows: ERROR -- 23:00:54.800 FLOG_MAX [20628]: SELECT currval('members_id_seq') -- 23:00:54.800 SQL [20628]: pgsql_query() -- 23:00:54.800 SQL [20628]: About to run query: -- 23:00:54.800 SQL [20628]: SELECT currval('members_id_seq') -- 23:00:54.801 SQL [20628]: Found rows: 1 -- 23:00:54.801 SQL [20628]: pgsql_query() -- 23:00:54.801 SQL [20628]: About to run query: -- 23:00:54.801 SQL [20628]: UPDATE members_pending SET status = 5,verified=now() WHERE id = 27 -- 23:00:54.802 SQL [20628]: Found rows: 0 -- 23:00:54.802 SQL [20628]: Found rows: 0 -- 23:00:54.802 INFO [20628]: /CreateCoreGradeAccount() -- 23:00:54.802 INFO [20628]: RET: added=2020-02-20 22:59:54.637231 -- 23:00:54.802 INFO [20628]: RET: email=zanetisgrace@gmail.com -- 23:00:54.802 INFO [20628]: RET: expire=2020-02-22 22:59:54.637231 -- 23:00:54.802 INFO [20628]: RET: firstname=myer -- 23:00:54.802 INFO [20628]: RET: id=27 -- 23:00:54.802 INFO [20628]: RET: lastname=Grace -- 23:00:54.802 INFO [20628]: RET: loc=192.168.1.13 -- 23:00:54.802 INFO [20628]: RET: member_id=15 -- 23:00:54.802 INFO [20628]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 23:00:54.802 INFO [20628]: RET: pending_id=27 -- 23:00:54.802 INFO [20628]: RET: phone= -- 23:00:54.802 INFO [20628]: RET: result=YES I GET TO BACK END -- 23:00:54.802 INFO [20628]: RET: status=prepare to create account -- 23:00:54.802 INFO [20628]: RET: username=zanetisgrace@gmail.com -- 23:00:54.802 INFO [20628]: RET: verified=2020-02-20 23:00:43.04161 -- 23:00:54.802 INFO [20628]: RET: verify_link=RS-371555328-410390528-905428992 -- 23:00:54.803 INFO [20628]: COREGRADE is stopping... -- 23:00:54.803 DEBUG [20628]: Closing database connection -- 23:00:54.803 SQL [20628]: pgsql_close() -- 23:00:54.756 DEBUG [20628]: Database connection successful -- 23:00:54.756 INFO [20628]: _SERVER found -- 23:00:54.756 INFO [20628]: REMOTE_ADDR = 192.168.1.13 -- 23:00:54.756 INFO [20628]: SERVER_NAME = oameye.works.coregrade.com -- 23:00:54.756 INFO [20628]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171 -- 23:00:54.756 INFO [20628]: QUERY_STRING = /vemail -- 23:00:54.756 INFO [20628]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:00:54.804 INFO [20628]: COREGRADE is stopping... -- 23:00:54.804 DEBUG [20628]: Closing database connection -- 23:00:54.804 SQL [20628]: pgsql_close() -- 23:00:55.156 INFO [20628]: COREGRADE is starting... -- 23:00:55.156 INFO [20628]: Version from config: 1.0 -- 23:00:55.156 DEBUG [20628]: Connecting to database... -- 23:00:55.156 DEBUG [20628]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:00:55.156 SQL [20628]: pgsql_db_connect() -- 23:00:55.160 DEBUG [20628]: Database connection successful -- 23:00:55.160 INFO [20628]: _SERVER found -- 23:00:55.160 INFO [20628]: REMOTE_ADDR = 192.168.1.13 -- 23:00:55.160 INFO [20628]: SERVER_NAME = oameye.works.coregrade.com -- 23:00:55.160 INFO [20628]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:00:55.160 INFO [20628]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 23:00:55.160 INFO [20628]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:00:55.171 INFO [20628]: COREGRADE is stopping... -- 23:00:55.171 DEBUG [20628]: Closing database connection -- 23:00:55.171 SQL [20628]: pgsql_close() -- 23:00:55.323 INFO [20576]: COREGRADE is starting... -- 23:00:55.323 INFO [20576]: Version from config: 1.0 -- 23:00:55.323 DEBUG [20576]: Connecting to database... -- 23:00:55.323 DEBUG [20576]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:00:55.323 SQL [20576]: pgsql_db_connect() -- 23:00:55.327 DEBUG [20576]: Database connection successful -- 23:00:55.327 INFO [20576]: _SERVER found -- 23:00:55.327 INFO [20576]: REMOTE_ADDR = 192.168.1.13 -- 23:00:55.327 INFO [20576]: SERVER_NAME = oameye.works.coregrade.com -- 23:00:55.327 INFO [20576]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:00:55.327 INFO [20576]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:00:55.327 INFO [20576]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:00:55.339 INFO [20576]: COREGRADE is stopping... -- 23:00:55.339 DEBUG [20576]: Closing database connection -- 23:00:55.339 SQL [20576]: pgsql_close() -- 23:01:52.021 INFO [20577]: COREGRADE is starting... -- 23:01:52.021 INFO [20577]: Version from config: 1.0 -- 23:01:52.021 DEBUG [20577]: Connecting to database... -- 23:01:52.021 DEBUG [20577]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:01:52.021 SQL [20577]: pgsql_db_connect() -- 23:01:52.057 INFO [20577]: COREGRADE is starting... -- 23:01:52.057 INFO [20577]: Version from config: 1.0 -- 23:01:52.057 DEBUG [20577]: Connecting to database... -- 23:01:52.057 DEBUG [20577]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:01:52.057 SQL [20577]: pgsql_db_connect() -- 23:01:52.061 DEBUG [20577]: Database connection successful -- 23:01:52.061 INFO [20577]: _SERVER found -- 23:01:52.061 INFO [20577]: REMOTE_ADDR = 192.168.1.13 -- 23:01:52.061 INFO [20577]: SERVER_NAME = oameye.works.coregrade.com -- 23:01:52.061 INFO [20577]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:01:52.061 INFO [20577]: QUERY_STRING = -- 23:01:52.061 INFO [20577]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:01:52.061 INFO [20577]: SystemStatus()09-09-********~************ -- 23:01:52.061 INFO [20577]: long coregrade_api_main(CVars in, CVars &out) -- 23:01:52.061 INFO [20577]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 23:01:52.061 INFO [20577]: account calls -- 23:01:52.061 INFO [20577]: account_calls() -- 23:01:52.061 INFO [20577]: LoginCoreGradeAccount() -- 23:01:52.061 FLOG_MAX [20577]: REQ_STRING(username) -- 23:01:52.061 FLOG_MAX [20577]: REQ_STRING(password) -- 23:01:52.061 FLOG_MAX [20577]: REQ_STRING(sessionid) -- 23:01:52.061 FLOG_MAX [20577]: long load_db_record( CVars &rec, const char * query, ... ) -- 23:01:52.061 SQL [20577]: pgsql_query() -- 23:01:52.061 SQL [20577]: About to run query: -- 23:01:52.061 SQL [20577]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('zanetisgrace@gmail.com') AND password= md5('may12002') -- 23:01:52.065 SQL [20577]: Found rows: 1 -- 23:01:52.065 FLOG_MAX [20577]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('zanetisgrace@gmail.com') AND password= md5('may12002')) num_cols=16 -- 23:01:52.065 INFO [20577]: long SessionCheck(long uid, const char *sessionid, int create ) -- 23:01:52.065 SQL [20577]: pgsql_exec() -- 23:01:52.065 SQL [20577]: About to run query: -- 23:01:52.065 SQL [20577]: DELETE FROM members_session WHERE member_id=14 AND updated < (now() - interval '35 minutes') -- 23:01:52.065 SQL [20577]: PQcmdTuples: 0 -- 23:01:52.065 SQL [20577]: Affected rows: 0 -- 23:01:52.065 SQL [20577]: pgsql_exec() -- 23:01:52.065 SQL [20577]: About to run query: -- 23:01:52.065 SQL [20577]: DELETE FROM members_session WHERE member_id=14 -- 23:01:52.066 SQL [20577]: PQcmdTuples: 0 -- 23:01:52.066 SQL [20577]: Affected rows: 0 -- 23:01:52.066 SQL [20577]: pgsql_query() -- 23:01:52.066 SQL [20577]: About to run query: -- 23:01:52.066 SQL [20577]: SELECT * FROM members_session WHERE member_id=14 AND session<>'DE3A05E675AF81EC32ECEC597895BDB1' -- 23:01:52.066 SQL [20577]: Found rows: 0 -- 23:01:52.066 SQL [20577]: Found rows: 0 -- 23:01:52.066 FLOG_MAX [20577]: long load_db_record( CVars &rec, const char * query, ... ) -- 23:01:52.066 SQL [20577]: pgsql_query() -- 23:01:52.066 SQL [20577]: About to run query: -- 23:01:52.066 SQL [20577]: SELECT * FROM members_session WHERE member_id=14 AND session='DE3A05E675AF81EC32ECEC597895BDB1' -- 23:01:52.067 SQL [20577]: Found rows: 0 -- 23:01:52.067 SQL [20577]: Found rows: 0 -- 23:01:52.067 FLOG_MAX [20577]: insert_db_record() -- 23:01:52.067 SQL [20577]: pgsql_exec() -- 23:01:52.067 SQL [20577]: About to run query: -- 23:01:52.067 SQL [20577]: INSERT INTO members_session (member_id,session) VALUES ('14','DE3A05E675AF81EC32ECEC597895BDB1') -- 23:01:52.068 SQL [20577]: PQcmdTuples: 1 -- 23:01:52.068 SQL [20577]: Affected rows: 1 -- 23:01:52.068 FLOG_MAX [20577]: SELECT currval('members_session_id_seq') -- 23:01:52.069 SQL [20577]: pgsql_query() -- 23:01:52.069 SQL [20577]: About to run query: -- 23:01:52.069 SQL [20577]: SELECT currval('members_session_id_seq') -- 23:01:52.069 SQL [20577]: Found rows: 1 -- 23:01:52.069 INFO [20577]: CreateDefaultPage() -- 23:01:52.069 FLOG_MAX [20577]: long load_db_record( CVars &rec, const char * query, ... ) -- 23:01:52.069 SQL [20577]: pgsql_query() -- 23:01:52.069 SQL [20577]: About to run query: -- 23:01:52.069 SQL [20577]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 23:01:52.069 SQL [20577]: Found rows: 1 -- 23:01:52.069 FLOG_MAX [20577]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 23:01:52.069 SQL [20577]: pgsql_query() -- 23:01:52.069 SQL [20577]: About to run query: -- 23:01:52.069 SQL [20577]: SELECT id FROM members_pages WHERE member_id = 14 AND page_mode='DEFAULT' -- 23:01:52.070 SQL [20577]: Found rows: 0 -- 23:01:52.070 SQL [20577]: Found rows: 0 -- 23:01:52.070 FLOG_MAX [20577]: insert_db_record() -- 23:01:52.070 SQL [20577]: pgsql_exec() -- 23:01:52.070 SQL [20577]: About to run query: -- 23:01:52.070 SQL [20577]: INSERT INTO members_pages (member_id,page_key,page_mode,title) VALUES ('14','PG0F1DC6F18690E403C8CF84C4ED5CAD3E','DEFAULT','My default page.') -- 23:01:52.071 SQL [20577]: PQcmdTuples: 1 -- 23:01:52.071 SQL [20577]: Affected rows: 1 -- 23:01:52.071 FLOG_MAX [20577]: SELECT currval('members_pages_id_seq') -- 23:01:52.071 SQL [20577]: pgsql_query() -- 23:01:52.071 SQL [20577]: About to run query: -- 23:01:52.071 SQL [20577]: SELECT currval('members_pages_id_seq') -- 23:01:52.071 SQL [20577]: Found rows: 1 -- 23:01:52.071 INFO [20577]: /CreateDefaultPage() -- 23:01:52.071 FLOG_MAX [20577]: long load_db_record( CVars &rec, const char * query, ... ) -- 23:01:52.071 SQL [20577]: pgsql_query() -- 23:01:52.071 SQL [20577]: About to run query: -- 23:01:52.071 SQL [20577]: SELECT upper(md5( now()::text )) AS folder -- 23:01:52.072 SQL [20577]: Found rows: 1 -- 23:01:52.072 FLOG_MAX [20577]: load_db_record(SELECT upper(md5( now()::text )) AS folder) num_cols=1 -- 23:01:52.072 FLOG_MAX [20577]: update_db_record() -- 23:01:52.072 SQL [20577]: pgsql_exec() -- 23:01:52.072 SQL [20577]: About to run query: -- 23:01:52.072 SQL [20577]: UPDATE members SET folder='E938B2158D32A3099CE012DBBA96CEB0' WHERE id=14 AND true -- 23:01:52.073 SQL [20577]: PQcmdTuples: 1 -- 23:01:52.073 SQL [20577]: Affected rows: 1 -- 23:01:52.073 INFO [20577]: /LoginCoreGradeAccount() -- 23:01:52.073 INFO [20577]: RET: added=2020-02-20 23:00:43.039466 -- 23:01:52.073 INFO [20577]: RET: email=zanetisgrace@gmail.com -- 23:01:52.073 INFO [20577]: RET: firstname=myer -- 23:01:52.073 INFO [20577]: RET: folder=E938B2158D32A3099CE012DBBA96CEB0 -- 23:01:52.073 INFO [20577]: RET: id=14 -- 23:01:52.073 INFO [20577]: RET: last_login= -- 23:01:52.073 INFO [20577]: RET: lastname=Grace -- 23:01:52.073 INFO [20577]: RET: loc=192.168.1.13 -- 23:01:52.073 INFO [20577]: RET: member_id=14 -- 23:01:52.073 INFO [20577]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 23:01:52.073 INFO [20577]: RET: phone= -- 23:01:52.073 INFO [20577]: RET: pid= -- 23:01:52.073 INFO [20577]: RET: result=YES I GET TO BACK END -- 23:01:52.073 INFO [20577]: RET: sessionid=DE3A05E675AF81EC32ECEC597895BDB1 -- 23:01:52.073 INFO [20577]: RET: status=1 -- 23:01:52.073 INFO [20577]: RET: stauts=OK -- 23:01:52.073 INFO [20577]: RET: username=zanetisgrace@gmail.com -- 23:01:52.073 INFO [20577]: RET: verified= -- 23:01:52.074 INFO [20577]: COREGRADE is stopping... -- 23:01:52.074 DEBUG [20577]: Closing database connection -- 23:01:52.074 SQL [20577]: pgsql_close() -- 23:01:52.025 DEBUG [20577]: Database connection successful -- 23:01:52.025 INFO [20577]: _SERVER found -- 23:01:52.025 INFO [20577]: REMOTE_ADDR = 192.168.1.13 -- 23:01:52.025 INFO [20577]: SERVER_NAME = oameye.works.coregrade.com -- 23:01:52.025 INFO [20577]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:01:52.025 INFO [20577]: QUERY_STRING = /auth -- 23:01:52.025 INFO [20577]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:01:52.075 INFO [20577]: COREGRADE is stopping... -- 23:01:52.075 DEBUG [20577]: Closing database connection -- 23:01:52.075 SQL [20577]: pgsql_close() -- 23:01:52.165 INFO [20577]: COREGRADE is starting... -- 23:01:52.165 INFO [20577]: Version from config: 1.0 -- 23:01:52.165 DEBUG [20577]: Connecting to database... -- 23:01:52.166 DEBUG [20577]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:01:52.166 SQL [20577]: pgsql_db_connect() -- 23:01:52.170 DEBUG [20577]: Database connection successful -- 23:01:52.170 INFO [20577]: _SERVER found -- 23:01:52.170 INFO [20577]: REMOTE_ADDR = 192.168.1.13 -- 23:01:52.170 INFO [20577]: SERVER_NAME = oameye.works.coregrade.com -- 23:01:52.170 INFO [20577]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:01:52.170 INFO [20577]: QUERY_STRING = /member/index -- 23:01:52.170 INFO [20577]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:01:52.210 INFO [20577]: COREGRADE is stopping... -- 23:01:52.210 DEBUG [20577]: Closing database connection -- 23:01:52.210 SQL [20577]: pgsql_close() -- 23:01:52.693 INFO [20579]: COREGRADE is starting... -- 23:01:52.693 INFO [20579]: Version from config: 1.0 -- 23:01:52.693 DEBUG [20579]: Connecting to database... -- 23:01:52.693 DEBUG [20579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:01:52.693 SQL [20579]: pgsql_db_connect() -- 23:01:52.697 DEBUG [20579]: Database connection successful -- 23:01:52.697 INFO [20579]: _SERVER found -- 23:01:52.697 INFO [20579]: REMOTE_ADDR = 192.168.1.13 -- 23:01:52.697 INFO [20579]: SERVER_NAME = oameye.works.coregrade.com -- 23:01:52.697 INFO [20579]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:01:52.697 INFO [20579]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:01:52.697 INFO [20579]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:01:52.709 INFO [20579]: COREGRADE is stopping... -- 23:01:52.709 DEBUG [20579]: Closing database connection -- 23:01:52.709 SQL [20579]: pgsql_close() -- 23:01:53.211 INFO [20579]: COREGRADE is starting... -- 23:01:53.212 INFO [20579]: Version from config: 1.0 -- 23:01:53.212 DEBUG [20579]: Connecting to database... -- 23:01:53.212 DEBUG [20579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:01:53.212 SQL [20579]: pgsql_db_connect() -- 23:01:53.216 DEBUG [20579]: Database connection successful -- 23:01:53.216 INFO [20579]: _SERVER found -- 23:01:53.216 INFO [20579]: REMOTE_ADDR = 192.168.1.13 -- 23:01:53.216 INFO [20579]: SERVER_NAME = oameye.works.coregrade.com -- 23:01:53.216 INFO [20579]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:01:53.216 INFO [20579]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:01:53.216 INFO [20579]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:01:53.227 INFO [20579]: COREGRADE is stopping... -- 23:01:53.227 DEBUG [20579]: Closing database connection -- 23:01:53.227 SQL [20579]: pgsql_close() -- 23:02:14.422 INFO [20707]: COREGRADE is starting... -- 23:02:14.422 INFO [20707]: Version from config: 1.0 -- 23:02:14.422 DEBUG [20707]: Connecting to database... -- 23:02:14.423 DEBUG [20707]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:14.423 SQL [20707]: pgsql_db_connect() -- 23:02:14.427 DEBUG [20707]: Database connection successful -- 23:02:14.427 INFO [20707]: _SERVER found -- 23:02:14.427 INFO [20707]: REMOTE_ADDR = 192.168.1.13 -- 23:02:14.427 INFO [20707]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:14.427 INFO [20707]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:02:14.427 INFO [20707]: QUERY_STRING = /member/page -- 23:02:14.427 INFO [20707]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:14.477 INFO [20707]: COREGRADE is stopping... -- 23:02:14.477 DEBUG [20707]: Closing database connection -- 23:02:14.477 SQL [20707]: pgsql_close() -- 23:02:14.761 INFO [20707]: COREGRADE is starting... -- 23:02:14.761 INFO [20707]: Version from config: 1.0 -- 23:02:14.761 DEBUG [20707]: Connecting to database... -- 23:02:14.761 DEBUG [20707]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:14.761 SQL [20707]: pgsql_db_connect() -- 23:02:14.765 DEBUG [20707]: Database connection successful -- 23:02:14.765 INFO [20707]: _SERVER found -- 23:02:14.765 INFO [20707]: REMOTE_ADDR = 192.168.1.13 -- 23:02:14.765 INFO [20707]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:14.765 INFO [20707]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:02:14.765 INFO [20707]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:02:14.765 INFO [20707]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:14.777 INFO [20707]: COREGRADE is stopping... -- 23:02:14.777 DEBUG [20707]: Closing database connection -- 23:02:14.777 SQL [20707]: pgsql_close() -- 23:02:15.196 INFO [20707]: COREGRADE is starting... -- 23:02:15.197 INFO [20707]: Version from config: 1.0 -- 23:02:15.197 DEBUG [20707]: Connecting to database... -- 23:02:15.197 DEBUG [20707]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:15.197 SQL [20707]: pgsql_db_connect() -- 23:02:15.201 DEBUG [20707]: Database connection successful -- 23:02:15.201 INFO [20707]: _SERVER found -- 23:02:15.201 INFO [20707]: REMOTE_ADDR = 192.168.1.13 -- 23:02:15.201 INFO [20707]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:15.201 INFO [20707]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:02:15.201 INFO [20707]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:02:15.201 INFO [20707]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:15.213 INFO [20707]: COREGRADE is stopping... -- 23:02:15.213 DEBUG [20707]: Closing database connection -- 23:02:15.213 SQL [20707]: pgsql_close() -- 23:02:18.316 INFO [20707]: COREGRADE is starting... -- 23:02:18.316 INFO [20707]: Version from config: 1.0 -- 23:02:18.316 DEBUG [20707]: Connecting to database... -- 23:02:18.316 DEBUG [20707]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:18.316 SQL [20707]: pgsql_db_connect() -- 23:02:18.320 DEBUG [20707]: Database connection successful -- 23:02:18.320 INFO [20707]: _SERVER found -- 23:02:18.320 INFO [20707]: REMOTE_ADDR = 192.168.1.13 -- 23:02:18.320 INFO [20707]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:18.320 INFO [20707]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:02:18.320 INFO [20707]: QUERY_STRING = /member/configure -- 23:02:18.320 INFO [20707]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:18.367 INFO [20707]: COREGRADE is stopping... -- 23:02:18.367 DEBUG [20707]: Closing database connection -- 23:02:18.367 SQL [20707]: pgsql_close() -- 23:02:18.618 INFO [20707]: COREGRADE is starting... -- 23:02:18.618 INFO [20707]: Version from config: 1.0 -- 23:02:18.618 DEBUG [20707]: Connecting to database... -- 23:02:18.618 DEBUG [20707]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:18.618 SQL [20707]: pgsql_db_connect() -- 23:02:18.627 INFO [20708]: COREGRADE is starting... -- 23:02:18.627 INFO [20708]: Version from config: 1.0 -- 23:02:18.627 DEBUG [20708]: Connecting to database... -- 23:02:18.627 DEBUG [20708]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:18.627 SQL [20708]: pgsql_db_connect() -- 23:02:18.622 DEBUG [20707]: Database connection successful -- 23:02:18.622 INFO [20707]: _SERVER found -- 23:02:18.622 INFO [20707]: REMOTE_ADDR = 192.168.1.13 -- 23:02:18.622 INFO [20707]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:18.622 INFO [20707]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:02:18.622 INFO [20707]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 23:02:18.622 INFO [20707]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:18.634 INFO [20707]: COREGRADE is stopping... -- 23:02:18.634 DEBUG [20707]: Closing database connection -- 23:02:18.634 SQL [20707]: pgsql_close() -- 23:02:18.631 DEBUG [20708]: Database connection successful -- 23:02:18.631 INFO [20708]: _SERVER found -- 23:02:18.631 INFO [20708]: REMOTE_ADDR = 192.168.1.13 -- 23:02:18.631 INFO [20708]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:18.631 INFO [20708]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:02:18.631 INFO [20708]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:02:18.631 INFO [20708]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:18.646 INFO [20708]: COREGRADE is stopping... -- 23:02:18.646 DEBUG [20708]: Closing database connection -- 23:02:18.646 SQL [20708]: pgsql_close() -- 23:02:18.811 INFO [20708]: COREGRADE is starting... -- 23:02:18.812 INFO [20708]: Version from config: 1.0 -- 23:02:18.812 DEBUG [20708]: Connecting to database... -- 23:02:18.812 DEBUG [20708]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:18.812 SQL [20708]: pgsql_db_connect() -- 23:02:18.816 DEBUG [20708]: Database connection successful -- 23:02:18.816 INFO [20708]: _SERVER found -- 23:02:18.816 INFO [20708]: REMOTE_ADDR = 192.168.1.13 -- 23:02:18.816 INFO [20708]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:18.816 INFO [20708]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:02:18.816 INFO [20708]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:02:18.816 INFO [20708]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:18.828 INFO [20708]: COREGRADE is stopping... -- 23:02:18.828 DEBUG [20708]: Closing database connection -- 23:02:18.828 SQL [20708]: pgsql_close() -- 23:02:22.716 INFO [20708]: COREGRADE is starting... -- 23:02:22.716 INFO [20708]: Version from config: 1.0 -- 23:02:22.716 DEBUG [20708]: Connecting to database... -- 23:02:22.716 DEBUG [20708]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:22.716 SQL [20708]: pgsql_db_connect() -- 23:02:22.720 DEBUG [20708]: Database connection successful -- 23:02:22.720 INFO [20708]: _SERVER found -- 23:02:22.720 INFO [20708]: REMOTE_ADDR = 192.168.1.13 -- 23:02:22.720 INFO [20708]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:22.720 INFO [20708]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:02:22.720 INFO [20708]: QUERY_STRING = /member/addcard -- 23:02:22.720 INFO [20708]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:22.768 INFO [20708]: COREGRADE is stopping... -- 23:02:22.768 DEBUG [20708]: Closing database connection -- 23:02:22.768 SQL [20708]: pgsql_close() -- 23:02:23.016 INFO [20708]: COREGRADE is starting... -- 23:02:23.016 INFO [20707]: COREGRADE is starting... -- 23:02:23.016 INFO [20708]: Version from config: 1.0 -- 23:02:23.016 DEBUG [20708]: Connecting to database... -- 23:02:23.016 INFO [20707]: Version from config: 1.0 -- 23:02:23.016 DEBUG [20707]: Connecting to database... -- 23:02:23.016 DEBUG [20708]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:23.016 DEBUG [20707]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:23.016 SQL [20708]: pgsql_db_connect() -- 23:02:23.016 SQL [20707]: pgsql_db_connect() -- 23:02:23.020 DEBUG [20707]: Database connection successful -- 23:02:23.020 INFO [20707]: _SERVER found -- 23:02:23.020 INFO [20707]: REMOTE_ADDR = 192.168.1.13 -- 23:02:23.020 INFO [20707]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:23.020 INFO [20707]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:02:23.020 INFO [20707]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 23:02:23.020 INFO [20707]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:23.031 INFO [20707]: COREGRADE is stopping... -- 23:02:23.020 DEBUG [20708]: Database connection successful -- 23:02:23.020 INFO [20708]: _SERVER found -- 23:02:23.020 INFO [20708]: REMOTE_ADDR = 192.168.1.13 -- 23:02:23.020 INFO [20708]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:23.020 INFO [20708]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:02:23.020 INFO [20708]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:02:23.020 INFO [20708]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:23.031 INFO [20708]: COREGRADE is stopping... -- 23:02:23.031 DEBUG [20708]: Closing database connection -- 23:02:23.031 DEBUG [20707]: Closing database connection -- 23:02:23.031 SQL [20708]: pgsql_close() -- 23:02:23.031 SQL [20707]: pgsql_close() -- 23:02:23.123 INFO [20708]: COREGRADE is starting... -- 23:02:23.123 INFO [20708]: Version from config: 1.0 -- 23:02:23.123 DEBUG [20708]: Connecting to database... -- 23:02:23.123 DEBUG [20708]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:23.123 SQL [20708]: pgsql_db_connect() -- 23:02:23.127 DEBUG [20708]: Database connection successful -- 23:02:23.127 INFO [20708]: _SERVER found -- 23:02:23.127 INFO [20708]: REMOTE_ADDR = 192.168.1.13 -- 23:02:23.127 INFO [20708]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:23.127 INFO [20708]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:02:23.127 INFO [20708]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:02:23.127 INFO [20708]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:23.138 INFO [20708]: COREGRADE is stopping... -- 23:02:23.138 DEBUG [20708]: Closing database connection -- 23:02:23.138 SQL [20708]: pgsql_close() -- 23:02:28.181 INFO [20575]: COREGRADE is starting... -- 23:02:28.182 INFO [20575]: Version from config: 1.0 -- 23:02:28.182 DEBUG [20575]: Connecting to database... -- 23:02:28.182 DEBUG [20575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:28.182 SQL [20575]: pgsql_db_connect() -- 23:02:28.186 DEBUG [20575]: Database connection successful -- 23:02:28.186 INFO [20575]: _SERVER found -- 23:02:28.186 INFO [20575]: REMOTE_ADDR = 192.168.1.13 -- 23:02:28.186 INFO [20575]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:28.186 INFO [20575]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:02:28.186 INFO [20575]: QUERY_STRING = /member/page -- 23:02:28.186 INFO [20575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:28.228 INFO [20575]: COREGRADE is stopping... -- 23:02:28.228 DEBUG [20575]: Closing database connection -- 23:02:28.228 SQL [20575]: pgsql_close() -- 23:02:28.504 INFO [20575]: COREGRADE is starting... -- 23:02:28.505 INFO [20575]: Version from config: 1.0 -- 23:02:28.505 DEBUG [20575]: Connecting to database... -- 23:02:28.505 DEBUG [20575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:28.505 SQL [20575]: pgsql_db_connect() -- 23:02:28.509 DEBUG [20575]: Database connection successful -- 23:02:28.509 INFO [20575]: _SERVER found -- 23:02:28.509 INFO [20575]: REMOTE_ADDR = 192.168.1.13 -- 23:02:28.509 INFO [20575]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:28.509 INFO [20575]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:02:28.509 INFO [20575]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:02:28.509 INFO [20575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:28.520 INFO [20575]: COREGRADE is stopping... -- 23:02:28.520 DEBUG [20575]: Closing database connection -- 23:02:28.520 SQL [20575]: pgsql_close() -- 23:02:28.750 INFO [20575]: COREGRADE is starting... -- 23:02:28.750 INFO [20575]: Version from config: 1.0 -- 23:02:28.750 DEBUG [20575]: Connecting to database... -- 23:02:28.750 DEBUG [20575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:28.750 SQL [20575]: pgsql_db_connect() -- 23:02:28.755 DEBUG [20575]: Database connection successful -- 23:02:28.755 INFO [20575]: _SERVER found -- 23:02:28.755 INFO [20575]: REMOTE_ADDR = 192.168.1.13 -- 23:02:28.755 INFO [20575]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:28.755 INFO [20575]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:02:28.755 INFO [20575]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:02:28.755 INFO [20575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:28.766 INFO [20575]: COREGRADE is stopping... -- 23:02:28.766 DEBUG [20575]: Closing database connection -- 23:02:28.766 SQL [20575]: pgsql_close() -- 23:02:31.833 INFO [20575]: COREGRADE is starting... -- 23:02:31.833 INFO [20575]: Version from config: 1.0 -- 23:02:31.833 DEBUG [20575]: Connecting to database... -- 23:02:31.833 DEBUG [20575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:31.833 SQL [20575]: pgsql_db_connect() -- 23:02:31.837 DEBUG [20575]: Database connection successful -- 23:02:31.837 INFO [20575]: _SERVER found -- 23:02:31.837 INFO [20575]: REMOTE_ADDR = 192.168.1.13 -- 23:02:31.837 INFO [20575]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:31.837 INFO [20575]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:02:31.837 INFO [20575]: QUERY_STRING = /member/configure -- 23:02:31.837 INFO [20575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:31.879 INFO [20575]: COREGRADE is stopping... -- 23:02:31.879 DEBUG [20575]: Closing database connection -- 23:02:31.879 SQL [20575]: pgsql_close() -- 23:02:32.025 INFO [20575]: COREGRADE is starting... -- 23:02:32.026 INFO [20575]: Version from config: 1.0 -- 23:02:32.026 DEBUG [20575]: Connecting to database... -- 23:02:32.026 DEBUG [20575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:32.026 SQL [20575]: pgsql_db_connect() -- 23:02:32.030 DEBUG [20575]: Database connection successful -- 23:02:32.030 INFO [20575]: _SERVER found -- 23:02:32.030 INFO [20575]: REMOTE_ADDR = 192.168.1.13 -- 23:02:32.030 INFO [20575]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:32.030 INFO [20575]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:02:32.030 INFO [20575]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:02:32.030 INFO [20575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:32.041 INFO [20575]: COREGRADE is stopping... -- 23:02:32.041 DEBUG [20575]: Closing database connection -- 23:02:32.041 SQL [20575]: pgsql_close() -- 23:02:32.046 INFO [20575]: COREGRADE is starting... -- 23:02:32.046 INFO [20575]: Version from config: 1.0 -- 23:02:32.046 DEBUG [20575]: Connecting to database... -- 23:02:32.046 DEBUG [20575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:32.046 SQL [20575]: pgsql_db_connect() -- 23:02:32.050 DEBUG [20575]: Database connection successful -- 23:02:32.050 INFO [20575]: _SERVER found -- 23:02:32.050 INFO [20575]: REMOTE_ADDR = 192.168.1.13 -- 23:02:32.050 INFO [20575]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:32.050 INFO [20575]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:02:32.050 INFO [20575]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 23:02:32.050 INFO [20575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:32.061 INFO [20575]: COREGRADE is stopping... -- 23:02:32.061 DEBUG [20575]: Closing database connection -- 23:02:32.061 SQL [20575]: pgsql_close() -- 23:02:32.328 INFO [20575]: COREGRADE is starting... -- 23:02:32.328 INFO [20575]: Version from config: 1.0 -- 23:02:32.328 DEBUG [20575]: Connecting to database... -- 23:02:32.328 DEBUG [20575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:32.328 SQL [20575]: pgsql_db_connect() -- 23:02:32.332 DEBUG [20575]: Database connection successful -- 23:02:32.332 INFO [20575]: _SERVER found -- 23:02:32.332 INFO [20575]: REMOTE_ADDR = 192.168.1.13 -- 23:02:32.332 INFO [20575]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:32.332 INFO [20575]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:02:32.332 INFO [20575]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:02:32.332 INFO [20575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:32.344 INFO [20575]: COREGRADE is stopping... -- 23:02:32.344 DEBUG [20575]: Closing database connection -- 23:02:32.344 SQL [20575]: pgsql_close() -- 23:02:53.832 INFO [20638]: COREGRADE is starting... -- 23:02:53.832 INFO [20638]: Version from config: 1.0 -- 23:02:53.832 DEBUG [20638]: Connecting to database... -- 23:02:53.832 DEBUG [20638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:53.832 SQL [20638]: pgsql_db_connect() -- 23:02:53.871 INFO [20638]: COREGRADE is starting... -- 23:02:53.871 INFO [20638]: Version from config: 1.0 -- 23:02:53.871 DEBUG [20638]: Connecting to database... -- 23:02:53.871 DEBUG [20638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:53.871 SQL [20638]: pgsql_db_connect() -- 23:02:53.875 DEBUG [20638]: Database connection successful -- 23:02:53.875 INFO [20638]: _SERVER found -- 23:02:53.875 INFO [20638]: REMOTE_ADDR = 192.168.1.13 -- 23:02:53.875 INFO [20638]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:53.875 INFO [20638]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:02:53.875 INFO [20638]: QUERY_STRING = -- 23:02:53.875 INFO [20638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:53.875 INFO [20638]: SystemStatus()09-09-********~************ -- 23:02:53.875 INFO [20638]: long coregrade_api_main(CVars in, CVars &out) -- 23:02:53.875 INFO [20638]: long coregrade_api_main(CVars in, CVars &out) action =11027 -- 23:02:53.875 INFO [20638]: account calls -- 23:02:53.875 INFO [20638]: account_calls() -- 23:02:53.875 INFO [20638]: CreateUserPage() -- 23:02:53.875 FLOG_MAX [20638]: REQ_STRING(description) -- 23:02:53.875 FLOG_MAX [20638]: REQ_STRING(title) -- 23:02:53.875 FLOG_MAX [20638]: long load_db_record( CVars &rec, const char * query, ... ) -- 23:02:53.875 SQL [20638]: pgsql_query() -- 23:02:53.875 SQL [20638]: About to run query: -- 23:02:53.875 SQL [20638]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 23:02:53.876 SQL [20638]: Found rows: 1 -- 23:02:53.876 FLOG_MAX [20638]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 23:02:53.877 FLOG_MAX [20638]: insert_db_record() -- 23:02:53.877 SQL [20638]: pgsql_exec() -- 23:02:53.877 SQL [20638]: About to run query: -- 23:02:53.877 SQL [20638]: INSERT INTO members_pages (description,member_id,page_key,page_mode,title) VALUES ('test test','14','PGFF98C1F351A6D52A446CB092C20C2874','OTHERPG','My Test Page') -- 23:02:53.879 SQL [20638]: PQcmdTuples: 1 -- 23:02:53.879 SQL [20638]: Affected rows: 1 -- 23:02:53.879 FLOG_MAX [20638]: SELECT currval('members_pages_id_seq') -- 23:02:53.879 SQL [20638]: pgsql_query() -- 23:02:53.879 SQL [20638]: About to run query: -- 23:02:53.879 SQL [20638]: SELECT currval('members_pages_id_seq') -- 23:02:53.880 SQL [20638]: Found rows: 1 -- 23:02:53.880 INFO [20638]: /CreateUserPage() -- 23:02:53.880 INFO [20638]: RET: page_key=PGFF98C1F351A6D52A446CB092C20C2874 -- 23:02:53.880 INFO [20638]: RET: result=YES I GET TO BACK END -- 23:02:53.892 INFO [20638]: COREGRADE is stopping... -- 23:02:53.892 DEBUG [20638]: Closing database connection -- 23:02:53.892 SQL [20638]: pgsql_close() -- 23:02:53.836 DEBUG [20638]: Database connection successful -- 23:02:53.836 INFO [20638]: _SERVER found -- 23:02:53.836 INFO [20638]: REMOTE_ADDR = 192.168.1.13 -- 23:02:53.836 INFO [20638]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:53.836 INFO [20638]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:02:53.836 INFO [20638]: QUERY_STRING = /member/addcard -- 23:02:53.836 INFO [20638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:53.892 INFO [20638]: COREGRADE is stopping... -- 23:02:53.893 DEBUG [20638]: Closing database connection -- 23:02:53.893 SQL [20638]: pgsql_close() -- 23:02:54.167 INFO [20638]: COREGRADE is starting... -- 23:02:54.167 INFO [20638]: Version from config: 1.0 -- 23:02:54.167 DEBUG [20638]: Connecting to database... -- 23:02:54.167 DEBUG [20638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:54.167 SQL [20638]: pgsql_db_connect() -- 23:02:54.173 INFO [20628]: COREGRADE is starting... -- 23:02:54.173 INFO [20628]: Version from config: 1.0 -- 23:02:54.173 DEBUG [20628]: Connecting to database... -- 23:02:54.173 DEBUG [20628]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:54.173 SQL [20628]: pgsql_db_connect() -- 23:02:54.171 DEBUG [20638]: Database connection successful -- 23:02:54.171 INFO [20638]: _SERVER found -- 23:02:54.171 INFO [20638]: REMOTE_ADDR = 192.168.1.13 -- 23:02:54.171 INFO [20638]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:54.171 INFO [20638]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:02:54.171 INFO [20638]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 23:02:54.171 INFO [20638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:54.183 INFO [20638]: COREGRADE is stopping... -- 23:02:54.183 DEBUG [20638]: Closing database connection -- 23:02:54.183 SQL [20638]: pgsql_close() -- 23:02:54.177 DEBUG [20628]: Database connection successful -- 23:02:54.177 INFO [20628]: _SERVER found -- 23:02:54.177 INFO [20628]: REMOTE_ADDR = 192.168.1.13 -- 23:02:54.177 INFO [20628]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:54.177 INFO [20628]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:02:54.177 INFO [20628]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:02:54.177 INFO [20628]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:54.188 INFO [20628]: COREGRADE is stopping... -- 23:02:54.188 DEBUG [20628]: Closing database connection -- 23:02:54.188 SQL [20628]: pgsql_close() -- 23:02:54.236 INFO [20628]: COREGRADE is starting... -- 23:02:54.236 INFO [20628]: Version from config: 1.0 -- 23:02:54.236 DEBUG [20628]: Connecting to database... -- 23:02:54.236 DEBUG [20628]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:54.236 SQL [20628]: pgsql_db_connect() -- 23:02:54.240 DEBUG [20628]: Database connection successful -- 23:02:54.240 INFO [20628]: _SERVER found -- 23:02:54.240 INFO [20628]: REMOTE_ADDR = 192.168.1.13 -- 23:02:54.240 INFO [20628]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:54.240 INFO [20628]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:02:54.240 INFO [20628]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:02:54.240 INFO [20628]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:54.251 INFO [20628]: COREGRADE is stopping... -- 23:02:54.251 DEBUG [20628]: Closing database connection -- 23:02:54.251 SQL [20628]: pgsql_close() -- 23:02:58.734 INFO [20628]: COREGRADE is starting... -- 23:02:58.734 INFO [20628]: Version from config: 1.0 -- 23:02:58.734 DEBUG [20628]: Connecting to database... -- 23:02:58.734 DEBUG [20628]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:58.734 SQL [20628]: pgsql_db_connect() -- 23:02:58.738 DEBUG [20628]: Database connection successful -- 23:02:58.738 INFO [20628]: _SERVER found -- 23:02:58.738 INFO [20628]: REMOTE_ADDR = 192.168.1.13 -- 23:02:58.738 INFO [20628]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:58.738 INFO [20628]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:02:58.738 INFO [20628]: QUERY_STRING = /member -- 23:02:58.738 INFO [20628]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:58.779 INFO [20628]: COREGRADE is stopping... -- 23:02:58.779 DEBUG [20628]: Closing database connection -- 23:02:58.779 SQL [20628]: pgsql_close() -- 23:02:58.945 INFO [20628]: COREGRADE is starting... -- 23:02:58.945 INFO [20628]: Version from config: 1.0 -- 23:02:58.945 DEBUG [20628]: Connecting to database... -- 23:02:58.946 DEBUG [20628]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:58.946 SQL [20628]: pgsql_db_connect() -- 23:02:58.950 DEBUG [20628]: Database connection successful -- 23:02:58.950 INFO [20628]: _SERVER found -- 23:02:58.950 INFO [20628]: REMOTE_ADDR = 192.168.1.13 -- 23:02:58.950 INFO [20628]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:58.950 INFO [20628]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:02:58.950 INFO [20628]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:02:58.950 INFO [20628]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:58.961 INFO [20628]: COREGRADE is stopping... -- 23:02:58.961 DEBUG [20628]: Closing database connection -- 23:02:58.961 SQL [20628]: pgsql_close() -- 23:02:59.119 INFO [20628]: COREGRADE is starting... -- 23:02:59.119 INFO [20628]: Version from config: 1.0 -- 23:02:59.119 DEBUG [20628]: Connecting to database... -- 23:02:59.119 DEBUG [20628]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:59.119 SQL [20628]: pgsql_db_connect() -- 23:02:59.123 DEBUG [20628]: Database connection successful -- 23:02:59.123 INFO [20628]: _SERVER found -- 23:02:59.123 INFO [20628]: REMOTE_ADDR = 192.168.1.13 -- 23:02:59.123 INFO [20628]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:59.123 INFO [20628]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:02:59.123 INFO [20628]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:02:59.123 INFO [20628]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:59.134 INFO [20628]: COREGRADE is stopping... -- 23:02:59.134 DEBUG [20628]: Closing database connection -- 23:02:59.134 SQL [20628]: pgsql_close() -- 23:03:00.399 INFO [20628]: COREGRADE is starting... -- 23:03:00.399 INFO [20628]: Version from config: 1.0 -- 23:03:00.399 DEBUG [20628]: Connecting to database... -- 23:03:00.400 DEBUG [20628]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:03:00.400 SQL [20628]: pgsql_db_connect() -- 23:03:00.404 DEBUG [20628]: Database connection successful -- 23:03:00.404 INFO [20628]: _SERVER found -- 23:03:00.404 INFO [20628]: REMOTE_ADDR = 192.168.1.13 -- 23:03:00.404 INFO [20628]: SERVER_NAME = oameye.works.coregrade.com -- 23:03:00.404 INFO [20628]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:03:00.404 INFO [20628]: QUERY_STRING = /member/page -- 23:03:00.404 INFO [20628]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:03:00.445 INFO [20628]: COREGRADE is stopping... -- 23:03:00.445 DEBUG [20628]: Closing database connection -- 23:03:00.445 SQL [20628]: pgsql_close() -- 23:03:00.763 INFO [20577]: COREGRADE is starting... -- 23:03:00.763 INFO [20577]: Version from config: 1.0 -- 23:03:00.763 DEBUG [20577]: Connecting to database... -- 23:03:00.763 DEBUG [20577]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:03:00.763 SQL [20577]: pgsql_db_connect() -- 23:03:00.768 DEBUG [20577]: Database connection successful -- 23:03:00.768 INFO [20577]: _SERVER found -- 23:03:00.768 INFO [20577]: REMOTE_ADDR = 192.168.1.13 -- 23:03:00.768 INFO [20577]: SERVER_NAME = oameye.works.coregrade.com -- 23:03:00.768 INFO [20577]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:03:00.768 INFO [20577]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:03:00.768 INFO [20577]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:03:00.783 INFO [20577]: COREGRADE is stopping... -- 23:03:00.783 DEBUG [20577]: Closing database connection -- 23:03:00.783 SQL [20577]: pgsql_close() -- 23:03:00.910 INFO [20707]: COREGRADE is starting... -- 23:03:00.910 INFO [20707]: Version from config: 1.0 -- 23:03:00.910 DEBUG [20707]: Connecting to database... -- 23:03:00.910 DEBUG [20707]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:03:00.910 SQL [20707]: pgsql_db_connect() -- 23:03:00.914 DEBUG [20707]: Database connection successful -- 23:03:00.914 INFO [20707]: _SERVER found -- 23:03:00.914 INFO [20707]: REMOTE_ADDR = 192.168.1.13 -- 23:03:00.914 INFO [20707]: SERVER_NAME = oameye.works.coregrade.com -- 23:03:00.914 INFO [20707]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:03:00.914 INFO [20707]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:03:00.914 INFO [20707]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:03:00.926 INFO [20707]: COREGRADE is stopping... -- 23:03:00.926 DEBUG [20707]: Closing database connection -- 23:03:00.926 SQL [20707]: pgsql_close() -- 23:03:09.635 INFO [20708]: COREGRADE is starting... -- 23:03:09.635 INFO [20708]: Version from config: 1.0 -- 23:03:09.635 DEBUG [20708]: Connecting to database... -- 23:03:09.635 DEBUG [20708]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:03:09.635 SQL [20708]: pgsql_db_connect() -- 23:03:09.640 DEBUG [20708]: Database connection successful -- 23:03:09.640 INFO [20708]: _SERVER found -- 23:03:09.640 INFO [20708]: REMOTE_ADDR = 192.168.1.13 -- 23:03:09.640 INFO [20708]: SERVER_NAME = oameye.works.coregrade.com -- 23:03:09.640 INFO [20708]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:03:09.640 INFO [20708]: QUERY_STRING = /member/viewCardAddAction -- 23:03:09.640 INFO [20708]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:03:09.672 INFO [20708]: COREGRADE is stopping... -- 23:03:09.672 DEBUG [20708]: Closing database connection -- 23:03:09.672 SQL [20708]: pgsql_close() -- 23:03:09.765 INFO [20708]: COREGRADE is starting... -- 23:03:09.766 INFO [20708]: Version from config: 1.0 -- 23:03:09.766 DEBUG [20708]: Connecting to database... -- 23:03:09.766 DEBUG [20708]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:03:09.766 SQL [20708]: pgsql_db_connect() -- 23:03:09.770 DEBUG [20708]: Database connection successful -- 23:03:09.770 INFO [20708]: _SERVER found -- 23:03:09.770 INFO [20708]: REMOTE_ADDR = 192.168.1.13 -- 23:03:09.770 INFO [20708]: SERVER_NAME = oameye.works.coregrade.com -- 23:03:09.770 INFO [20708]: QUERY_STRING = /favicon.ico -- 23:03:09.770 INFO [20708]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:03:09.781 INFO [20708]: COREGRADE is stopping... -- 23:03:09.781 DEBUG [20708]: Closing database connection -- 23:03:09.781 SQL [20708]: pgsql_close() -- 23:03:26.742 INFO [20575]: COREGRADE is starting... -- 23:03:26.743 INFO [20575]: Version from config: 1.0 -- 23:03:26.743 DEBUG [20575]: Connecting to database... -- 23:03:26.743 DEBUG [20575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:03:26.743 SQL [20575]: pgsql_db_connect() -- 23:03:26.747 DEBUG [20575]: Database connection successful -- 23:03:26.747 INFO [20575]: _SERVER found -- 23:03:26.747 INFO [20575]: REMOTE_ADDR = 192.168.1.13 -- 23:03:26.747 INFO [20575]: SERVER_NAME = oameye.works.coregrade.com -- 23:03:26.747 INFO [20575]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:03:26.747 INFO [20575]: QUERY_STRING = /member/upload -- 23:03:26.747 INFO [20575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:03:26.782 INFO [20575]: COREGRADE is stopping... -- 23:03:26.782 DEBUG [20575]: Closing database connection -- 23:03:26.782 SQL [20575]: pgsql_close() -- 23:03:27.357 INFO [20575]: COREGRADE is starting... -- 23:03:27.357 INFO [20575]: Version from config: 1.0 -- 23:03:27.357 DEBUG [20575]: Connecting to database... -- 23:03:27.357 DEBUG [20575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:03:27.357 SQL [20575]: pgsql_db_connect() -- 23:03:27.361 DEBUG [20575]: Database connection successful -- 23:03:27.361 INFO [20575]: _SERVER found -- 23:03:27.361 INFO [20575]: REMOTE_ADDR = 192.168.1.13 -- 23:03:27.361 INFO [20575]: SERVER_NAME = oameye.works.coregrade.com -- 23:03:27.361 INFO [20575]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:03:27.361 INFO [20575]: QUERY_STRING = /member/page -- 23:03:27.361 INFO [20575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:03:27.402 INFO [20575]: COREGRADE is stopping... -- 23:03:27.402 DEBUG [20575]: Closing database connection -- 23:03:27.402 SQL [20575]: pgsql_close() -- 23:03:27.773 INFO [20575]: COREGRADE is starting... -- 23:03:27.774 INFO [20575]: Version from config: 1.0 -- 23:03:27.774 DEBUG [20575]: Connecting to database... -- 23:03:27.774 DEBUG [20575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:03:27.774 SQL [20575]: pgsql_db_connect() -- 23:03:27.778 DEBUG [20575]: Database connection successful -- 23:03:27.778 INFO [20575]: _SERVER found -- 23:03:27.778 INFO [20575]: REMOTE_ADDR = 192.168.1.13 -- 23:03:27.778 INFO [20575]: SERVER_NAME = oameye.works.coregrade.com -- 23:03:27.778 INFO [20575]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:03:27.778 INFO [20575]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:03:27.778 INFO [20575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:03:27.789 INFO [20575]: COREGRADE is stopping... -- 23:03:27.789 DEBUG [20575]: Closing database connection -- 23:03:27.789 SQL [20575]: pgsql_close() -- 23:03:27.915 INFO [20575]: COREGRADE is starting... -- 23:03:27.916 INFO [20575]: Version from config: 1.0 -- 23:03:27.916 DEBUG [20575]: Connecting to database... -- 23:03:27.916 DEBUG [20575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:03:27.916 SQL [20575]: pgsql_db_connect() -- 23:03:27.920 DEBUG [20575]: Database connection successful -- 23:03:27.920 INFO [20575]: _SERVER found -- 23:03:27.920 INFO [20575]: REMOTE_ADDR = 192.168.1.13 -- 23:03:27.920 INFO [20575]: SERVER_NAME = oameye.works.coregrade.com -- 23:03:27.920 INFO [20575]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:03:27.920 INFO [20575]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:03:27.920 INFO [20575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:03:27.931 INFO [20575]: COREGRADE is stopping... -- 23:03:27.931 DEBUG [20575]: Closing database connection -- 23:03:27.931 SQL [20575]: pgsql_close() -- 23:06:04.312 INFO [20638]: COREGRADE is starting... -- 23:06:04.312 INFO [20638]: Version from config: 1.0 -- 23:06:04.312 DEBUG [20638]: Connecting to database... -- 23:06:04.312 DEBUG [20638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:06:04.312 SQL [20638]: pgsql_db_connect() -- 23:06:04.316 DEBUG [20638]: Database connection successful -- 23:06:04.316 INFO [20638]: _SERVER found -- 23:06:04.316 INFO [20638]: REMOTE_ADDR = 192.168.1.13 -- 23:06:04.316 INFO [20638]: SERVER_NAME = oameye.works.coregrade.com -- 23:06:04.316 INFO [20638]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=nd2vf5rrfasjo28c5adqu2k0a32nsfd6 -- 23:06:04.316 INFO [20638]: QUERY_STRING = /member/page -- 23:06:04.316 INFO [20638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:06:04.361 INFO [20638]: COREGRADE is stopping... -- 23:06:04.361 DEBUG [20638]: Closing database connection -- 23:06:04.361 SQL [20638]: pgsql_close() -- 23:06:04.784 INFO [20576]: COREGRADE is starting... -- 23:06:04.784 INFO [20576]: Version from config: 1.0 -- 23:06:04.784 DEBUG [20576]: Connecting to database... -- 23:06:04.784 DEBUG [20576]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:06:04.784 SQL [20576]: pgsql_db_connect() -- 23:06:04.789 DEBUG [20576]: Database connection successful -- 23:06:04.789 INFO [20576]: _SERVER found -- 23:06:04.789 INFO [20576]: REMOTE_ADDR = 192.168.1.13 -- 23:06:04.789 INFO [20576]: SERVER_NAME = oameye.works.coregrade.com -- 23:06:04.789 INFO [20576]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=ckno28jmlal1qj6p3lgg1ej83d1sc0bm -- 23:06:04.789 INFO [20576]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:06:04.789 INFO [20576]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:06:04.801 INFO [20576]: COREGRADE is stopping... -- 23:06:04.801 DEBUG [20576]: Closing database connection -- 23:06:04.801 SQL [20576]: pgsql_close() -- 23:06:05.083 INFO [20579]: COREGRADE is starting... -- 23:06:05.084 INFO [20579]: Version from config: 1.0 -- 23:06:05.084 DEBUG [20579]: Connecting to database... -- 23:06:05.084 DEBUG [20579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:06:05.084 SQL [20579]: pgsql_db_connect() -- 23:06:05.088 DEBUG [20579]: Database connection successful -- 23:06:05.088 INFO [20579]: _SERVER found -- 23:06:05.088 INFO [20579]: REMOTE_ADDR = 192.168.1.13 -- 23:06:05.088 INFO [20579]: SERVER_NAME = oameye.works.coregrade.com -- 23:06:05.088 INFO [20579]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=ckno28jmlal1qj6p3lgg1ej83d1sc0bm -- 23:06:05.088 INFO [20579]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:06:05.088 INFO [20579]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:06:05.101 INFO [20579]: COREGRADE is stopping... -- 23:06:05.101 DEBUG [20579]: Closing database connection -- 23:06:05.101 SQL [20579]: pgsql_close() -- 23:06:09.676 INFO [20579]: COREGRADE is starting... -- 23:06:09.677 INFO [20579]: Version from config: 1.0 -- 23:06:09.677 DEBUG [20579]: Connecting to database... -- 23:06:09.677 DEBUG [20579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:06:09.677 SQL [20579]: pgsql_db_connect() -- 23:06:09.681 DEBUG [20579]: Database connection successful -- 23:06:09.681 INFO [20579]: _SERVER found -- 23:06:09.681 INFO [20579]: REMOTE_ADDR = 192.168.1.13 -- 23:06:09.681 INFO [20579]: SERVER_NAME = oameye.works.coregrade.com -- 23:06:09.681 INFO [20579]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=ckno28jmlal1qj6p3lgg1ej83d1sc0bm -- 23:06:09.681 INFO [20579]: QUERY_STRING = /member/viewCardAddAction -- 23:06:09.681 INFO [20579]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:06:09.713 INFO [20579]: COREGRADE is stopping... -- 23:06:09.713 DEBUG [20579]: Closing database connection -- 23:06:09.713 SQL [20579]: pgsql_close() -- 23:06:09.714 INFO [20577]: COREGRADE is starting... -- 23:06:09.715 INFO [20577]: Version from config: 1.0 -- 23:06:09.715 DEBUG [20577]: Connecting to database... -- 23:06:09.715 DEBUG [20577]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:06:09.715 SQL [20577]: pgsql_db_connect() -- 23:06:09.719 DEBUG [20577]: Database connection successful -- 23:06:09.719 INFO [20577]: _SERVER found -- 23:06:09.719 INFO [20577]: REMOTE_ADDR = 192.168.1.13 -- 23:06:09.719 INFO [20577]: SERVER_NAME = oameye.works.coregrade.com -- 23:06:09.719 INFO [20577]: QUERY_STRING = /favicon.ico -- 23:06:09.719 INFO [20577]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:06:09.730 INFO [20577]: COREGRADE is stopping... -- 23:06:09.731 DEBUG [20577]: Closing database connection -- 23:06:09.731 SQL [20577]: pgsql_close() -- 23:06:20.205 INFO [20705]: COREGRADE is starting... -- 23:06:20.205 INFO [20705]: Version from config: 1.0 -- 23:06:20.205 DEBUG [20705]: Connecting to database... -- 23:06:20.205 DEBUG [20705]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:06:20.205 SQL [20705]: pgsql_db_connect() -- 23:06:20.210 DEBUG [20705]: Database connection successful -- 23:06:20.210 INFO [20705]: _SERVER found -- 23:06:20.210 INFO [20705]: REMOTE_ADDR = 192.168.1.13 -- 23:06:20.210 INFO [20705]: SERVER_NAME = oameye.works.coregrade.com -- 23:06:20.210 INFO [20705]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=ckno28jmlal1qj6p3lgg1ej83d1sc0bm -- 23:06:20.210 INFO [20705]: QUERY_STRING = /member/upload -- 23:06:20.210 INFO [20705]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:06:20.263 INFO [20705]: COREGRADE is stopping... -- 23:06:20.263 DEBUG [20705]: Closing database connection -- 23:06:20.263 SQL [20705]: pgsql_close() -- 23:06:20.542 INFO [20705]: COREGRADE is starting... -- 23:06:20.542 INFO [20705]: Version from config: 1.0 -- 23:06:20.542 DEBUG [20705]: Connecting to database... -- 23:06:20.542 DEBUG [20705]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:06:20.542 SQL [20705]: pgsql_db_connect() -- 23:06:20.546 DEBUG [20705]: Database connection successful -- 23:06:20.546 INFO [20705]: _SERVER found -- 23:06:20.546 INFO [20705]: REMOTE_ADDR = 192.168.1.13 -- 23:06:20.546 INFO [20705]: SERVER_NAME = oameye.works.coregrade.com -- 23:06:20.546 INFO [20705]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=ckno28jmlal1qj6p3lgg1ej83d1sc0bm -- 23:06:20.546 INFO [20705]: QUERY_STRING = /member/page -- 23:06:20.546 INFO [20705]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:06:20.588 INFO [20705]: COREGRADE is stopping... -- 23:06:20.588 DEBUG [20705]: Closing database connection -- 23:06:20.588 SQL [20705]: pgsql_close() -- 23:06:20.840 INFO [20705]: COREGRADE is starting... -- 23:06:20.841 INFO [20705]: Version from config: 1.0 -- 23:06:20.841 DEBUG [20705]: Connecting to database... -- 23:06:20.841 DEBUG [20705]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:06:20.841 SQL [20705]: pgsql_db_connect() -- 23:06:20.845 DEBUG [20705]: Database connection successful -- 23:06:20.845 INFO [20705]: _SERVER found -- 23:06:20.845 INFO [20705]: REMOTE_ADDR = 192.168.1.13 -- 23:06:20.845 INFO [20705]: SERVER_NAME = oameye.works.coregrade.com -- 23:06:20.845 INFO [20705]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=ckno28jmlal1qj6p3lgg1ej83d1sc0bm -- 23:06:20.845 INFO [20705]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:06:20.845 INFO [20705]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:06:20.856 INFO [20705]: COREGRADE is stopping... -- 23:06:20.856 DEBUG [20705]: Closing database connection -- 23:06:20.856 SQL [20705]: pgsql_close() -- 23:06:20.972 INFO [20705]: COREGRADE is starting... -- 23:06:20.972 INFO [20705]: Version from config: 1.0 -- 23:06:20.972 DEBUG [20705]: Connecting to database... -- 23:06:20.972 DEBUG [20705]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:06:20.972 SQL [20705]: pgsql_db_connect() -- 23:06:20.976 DEBUG [20705]: Database connection successful -- 23:06:20.976 INFO [20705]: _SERVER found -- 23:06:20.976 INFO [20705]: REMOTE_ADDR = 192.168.1.13 -- 23:06:20.976 INFO [20705]: SERVER_NAME = oameye.works.coregrade.com -- 23:06:20.976 INFO [20705]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=ckno28jmlal1qj6p3lgg1ej83d1sc0bm -- 23:06:20.976 INFO [20705]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:06:20.976 INFO [20705]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:06:20.987 INFO [20705]: COREGRADE is stopping... -- 23:06:20.988 DEBUG [20705]: Closing database connection -- 23:06:20.988 SQL [20705]: pgsql_close() -- 23:23:41.807 INFO [20575]: COREGRADE is starting... -- 23:23:41.808 INFO [20575]: Version from config: 1.0 -- 23:23:41.808 DEBUG [20575]: Connecting to database... -- 23:23:41.808 DEBUG [20575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:23:41.808 SQL [20575]: pgsql_db_connect() -- 23:23:41.812 DEBUG [20575]: Database connection successful -- 23:23:41.812 INFO [20575]: _SERVER found -- 23:23:41.812 INFO [20575]: REMOTE_ADDR = 192.168.1.13 -- 23:23:41.812 INFO [20575]: SERVER_NAME = oameye.works.coregrade.com -- 23:23:41.812 INFO [20575]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=piavn6u17cgfc2hvu6uinm95756qeagj -- 23:23:41.812 INFO [20575]: QUERY_STRING = -- 23:23:41.812 INFO [20575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:23:41.852 INFO [20575]: COREGRADE is stopping... -- 23:23:41.852 DEBUG [20575]: Closing database connection -- 23:23:41.852 SQL [20575]: pgsql_close() -- 23:23:42.397 INFO [20575]: COREGRADE is starting... -- 23:23:42.398 INFO [20575]: Version from config: 1.0 -- 23:23:42.398 DEBUG [20575]: Connecting to database... -- 23:23:42.398 DEBUG [20575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:23:42.398 SQL [20575]: pgsql_db_connect() -- 23:23:42.404 INFO [20638]: COREGRADE is starting... -- 23:23:42.404 INFO [20638]: Version from config: 1.0 -- 23:23:42.404 DEBUG [20638]: Connecting to database... -- 23:23:42.404 DEBUG [20638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:23:42.404 SQL [20638]: pgsql_db_connect() -- 23:23:42.402 DEBUG [20575]: Database connection successful -- 23:23:42.402 INFO [20575]: _SERVER found -- 23:23:42.402 INFO [20575]: REMOTE_ADDR = 192.168.1.13 -- 23:23:42.402 INFO [20575]: SERVER_NAME = oameye.works.coregrade.com -- 23:23:42.402 INFO [20575]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3967ktbbtj2v7071c5fqjui8kmgdl0th -- 23:23:42.402 INFO [20575]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 23:23:42.402 INFO [20575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:23:42.413 INFO [20575]: COREGRADE is stopping... -- 23:23:42.414 DEBUG [20575]: Closing database connection -- 23:23:42.414 SQL [20575]: pgsql_close() -- 23:23:42.408 DEBUG [20638]: Database connection successful -- 23:23:42.408 INFO [20638]: _SERVER found -- 23:23:42.408 INFO [20638]: REMOTE_ADDR = 192.168.1.13 -- 23:23:42.408 INFO [20638]: SERVER_NAME = oameye.works.coregrade.com -- 23:23:42.408 INFO [20638]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3967ktbbtj2v7071c5fqjui8kmgdl0th -- 23:23:42.408 INFO [20638]: QUERY_STRING = /assets/img/footer_1.jpg -- 23:23:42.408 INFO [20638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:23:42.421 INFO [20638]: COREGRADE is stopping... -- 23:23:42.421 DEBUG [20638]: Closing database connection -- 23:23:42.421 SQL [20638]: pgsql_close() -- 23:23:45.144 INFO [20638]: COREGRADE is starting... -- 23:23:45.144 INFO [20638]: Version from config: 1.0 -- 23:23:45.144 DEBUG [20638]: Connecting to database... -- 23:23:45.144 DEBUG [20638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:23:45.144 SQL [20638]: pgsql_db_connect() -- 23:23:45.155 INFO [20575]: COREGRADE is starting... -- 23:23:45.155 INFO [20575]: Version from config: 1.0 -- 23:23:45.155 DEBUG [20575]: Connecting to database... -- 23:23:45.155 DEBUG [20575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:23:45.155 SQL [20575]: pgsql_db_connect() -- 23:23:45.148 DEBUG [20638]: Database connection successful -- 23:23:45.148 INFO [20638]: _SERVER found -- 23:23:45.148 INFO [20638]: REMOTE_ADDR = 192.168.1.13 -- 23:23:45.148 INFO [20638]: SERVER_NAME = oameye.works.coregrade.com -- 23:23:45.148 INFO [20638]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3967ktbbtj2v7071c5fqjui8kmgdl0th; _gat_gtag_UA_54829827_2=1 -- 23:23:45.148 INFO [20638]: QUERY_STRING = /welcome/viewLogin -- 23:23:45.148 INFO [20638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:23:45.181 INFO [20638]: COREGRADE is stopping... -- 23:23:45.181 DEBUG [20638]: Closing database connection -- 23:23:45.181 SQL [20638]: pgsql_close() -- 23:23:45.159 DEBUG [20575]: Database connection successful -- 23:23:45.159 INFO [20575]: _SERVER found -- 23:23:45.159 INFO [20575]: REMOTE_ADDR = 192.168.1.13 -- 23:23:45.159 INFO [20575]: SERVER_NAME = oameye.works.coregrade.com -- 23:23:45.159 INFO [20575]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3967ktbbtj2v7071c5fqjui8kmgdl0th; _gat_gtag_UA_54829827_2=1 -- 23:23:45.159 INFO [20575]: QUERY_STRING = /auth -- 23:23:45.159 INFO [20575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:23:45.192 INFO [20575]: COREGRADE is stopping... -- 23:23:45.192 DEBUG [20575]: Closing database connection -- 23:23:45.192 SQL [20575]: pgsql_close() -- 23:23:45.198 INFO [20638]: COREGRADE is starting... -- 23:23:45.198 INFO [20638]: Version from config: 1.0 -- 23:23:45.198 DEBUG [20638]: Connecting to database... -- 23:23:45.198 DEBUG [20638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:23:45.198 SQL [20638]: pgsql_db_connect() -- 23:23:45.202 DEBUG [20638]: Database connection successful -- 23:23:45.202 INFO [20638]: _SERVER found -- 23:23:45.202 INFO [20638]: REMOTE_ADDR = 192.168.1.13 -- 23:23:45.202 INFO [20638]: SERVER_NAME = oameye.works.coregrade.com -- 23:23:45.202 INFO [20638]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3967ktbbtj2v7071c5fqjui8kmgdl0th; _gat_gtag_UA_54829827_2=1 -- 23:23:45.202 INFO [20638]: QUERY_STRING = /auth/index -- 23:23:45.202 INFO [20638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:23:45.234 INFO [20638]: COREGRADE is stopping... -- 23:23:45.234 DEBUG [20638]: Closing database connection -- 23:23:45.234 SQL [20638]: pgsql_close() -- 23:23:45.422 INFO [20638]: COREGRADE is starting... -- 23:23:45.422 INFO [20638]: Version from config: 1.0 -- 23:23:45.422 DEBUG [20638]: Connecting to database... -- 23:23:45.422 DEBUG [20638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:23:45.422 SQL [20638]: pgsql_db_connect() -- 23:23:45.426 DEBUG [20638]: Database connection successful -- 23:23:45.426 INFO [20638]: _SERVER found -- 23:23:45.426 INFO [20638]: REMOTE_ADDR = 192.168.1.13 -- 23:23:45.426 INFO [20638]: SERVER_NAME = oameye.works.coregrade.com -- 23:23:45.426 INFO [20638]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3967ktbbtj2v7071c5fqjui8kmgdl0th; _gat_gtag_UA_54829827_2=1 -- 23:23:45.426 INFO [20638]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 23:23:45.426 INFO [20638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:23:45.437 INFO [20638]: COREGRADE is stopping... -- 23:23:45.437 DEBUG [20638]: Closing database connection -- 23:23:45.437 SQL [20638]: pgsql_close() -- 23:23:45.458 INFO [20638]: COREGRADE is starting... -- 23:23:45.459 INFO [20638]: Version from config: 1.0 -- 23:23:45.459 DEBUG [20638]: Connecting to database... -- 23:23:45.459 DEBUG [20638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:23:45.459 SQL [20638]: pgsql_db_connect() -- 23:23:45.463 DEBUG [20638]: Database connection successful -- 23:23:45.463 INFO [20638]: _SERVER found -- 23:23:45.463 INFO [20638]: REMOTE_ADDR = 192.168.1.13 -- 23:23:45.463 INFO [20638]: SERVER_NAME = oameye.works.coregrade.com -- 23:23:45.463 INFO [20638]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3967ktbbtj2v7071c5fqjui8kmgdl0th; _gat_gtag_UA_54829827_2=1 -- 23:23:45.463 INFO [20638]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:23:45.463 INFO [20638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:23:45.474 INFO [20638]: COREGRADE is stopping... -- 23:23:45.474 DEBUG [20638]: Closing database connection -- 23:23:45.474 SQL [20638]: pgsql_close() -- 23:23:47.866 INFO [20638]: COREGRADE is starting... -- 23:23:47.867 INFO [20638]: Version from config: 1.0 -- 23:23:47.867 DEBUG [20638]: Connecting to database... -- 23:23:47.867 DEBUG [20638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:23:47.867 SQL [20638]: pgsql_db_connect() -- 23:23:47.902 INFO [20638]: COREGRADE is starting... -- 23:23:47.902 INFO [20638]: Version from config: 1.0 -- 23:23:47.902 DEBUG [20638]: Connecting to database... -- 23:23:47.902 DEBUG [20638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:23:47.902 SQL [20638]: pgsql_db_connect() -- 23:23:47.906 DEBUG [20638]: Database connection successful -- 23:23:47.906 INFO [20638]: _SERVER found -- 23:23:47.906 INFO [20638]: REMOTE_ADDR = 192.168.1.13 -- 23:23:47.906 INFO [20638]: SERVER_NAME = oameye.works.coregrade.com -- 23:23:47.906 INFO [20638]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3967ktbbtj2v7071c5fqjui8kmgdl0th; _gat_gtag_UA_54829827_2=1 -- 23:23:47.906 INFO [20638]: QUERY_STRING = -- 23:23:47.906 INFO [20638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:23:47.906 INFO [20638]: SystemStatus()09-09-********~************ -- 23:23:47.906 INFO [20638]: long coregrade_api_main(CVars in, CVars &out) -- 23:23:47.906 INFO [20638]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 23:23:47.906 INFO [20638]: account calls -- 23:23:47.906 INFO [20638]: account_calls() -- 23:23:47.906 INFO [20638]: LoginCoreGradeAccount() -- 23:23:47.906 FLOG_MAX [20638]: REQ_STRING(username) -- 23:23:47.906 FLOG_MAX [20638]: REQ_STRING(password) -- 23:23:47.906 FLOG_MAX [20638]: REQ_STRING(sessionid) -- 23:23:47.906 FLOG_MAX [20638]: long load_db_record( CVars &rec, const char * query, ... ) -- 23:23:47.906 SQL [20638]: pgsql_query() -- 23:23:47.906 SQL [20638]: About to run query: -- 23:23:47.906 SQL [20638]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 23:23:47.909 SQL [20638]: Found rows: 1 -- 23:23:47.909 FLOG_MAX [20638]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=16 -- 23:23:47.909 INFO [20638]: long SessionCheck(long uid, const char *sessionid, int create ) -- 23:23:47.909 SQL [20638]: pgsql_exec() -- 23:23:47.910 SQL [20638]: About to run query: -- 23:23:47.910 SQL [20638]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 23:23:47.910 SQL [20638]: PQcmdTuples: 0 -- 23:23:47.910 SQL [20638]: Affected rows: 0 -- 23:23:47.910 SQL [20638]: pgsql_exec() -- 23:23:47.910 SQL [20638]: About to run query: -- 23:23:47.910 SQL [20638]: DELETE FROM members_session WHERE member_id=7 -- 23:23:47.911 SQL [20638]: PQcmdTuples: 1 -- 23:23:47.911 SQL [20638]: Affected rows: 1 -- 23:23:47.911 SQL [20638]: pgsql_query() -- 23:23:47.911 SQL [20638]: About to run query: -- 23:23:47.911 SQL [20638]: SELECT * FROM members_session WHERE member_id=7 AND session<>'4CA2060EB1DD0014A4F28597D690E109' -- 23:23:47.912 SQL [20638]: Found rows: 0 -- 23:23:47.912 SQL [20638]: Found rows: 0 -- 23:23:47.912 FLOG_MAX [20638]: long load_db_record( CVars &rec, const char * query, ... ) -- 23:23:47.912 SQL [20638]: pgsql_query() -- 23:23:47.912 SQL [20638]: About to run query: -- 23:23:47.912 SQL [20638]: SELECT * FROM members_session WHERE member_id=7 AND session='4CA2060EB1DD0014A4F28597D690E109' -- 23:23:47.912 SQL [20638]: Found rows: 0 -- 23:23:47.912 SQL [20638]: Found rows: 0 -- 23:23:47.912 FLOG_MAX [20638]: insert_db_record() -- 23:23:47.912 SQL [20638]: pgsql_exec() -- 23:23:47.912 SQL [20638]: About to run query: -- 23:23:47.912 SQL [20638]: INSERT INTO members_session (member_id,session) VALUES ('7','4CA2060EB1DD0014A4F28597D690E109') -- 23:23:47.914 SQL [20638]: PQcmdTuples: 1 -- 23:23:47.914 SQL [20638]: Affected rows: 1 -- 23:23:47.914 FLOG_MAX [20638]: SELECT currval('members_session_id_seq') -- 23:23:47.914 SQL [20638]: pgsql_query() -- 23:23:47.914 SQL [20638]: About to run query: -- 23:23:47.914 SQL [20638]: SELECT currval('members_session_id_seq') -- 23:23:47.914 SQL [20638]: Found rows: 1 -- 23:23:47.914 INFO [20638]: CreateDefaultPage() -- 23:23:47.914 FLOG_MAX [20638]: long load_db_record( CVars &rec, const char * query, ... ) -- 23:23:47.914 SQL [20638]: pgsql_query() -- 23:23:47.914 SQL [20638]: About to run query: -- 23:23:47.914 SQL [20638]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 23:23:47.914 SQL [20638]: Found rows: 1 -- 23:23:47.914 FLOG_MAX [20638]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 23:23:47.914 SQL [20638]: pgsql_query() -- 23:23:47.914 SQL [20638]: About to run query: -- 23:23:47.915 SQL [20638]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 23:23:47.915 SQL [20638]: Found rows: 1 -- 23:23:47.915 INFO [20638]: /CreateDefaultPage() -- 23:23:47.915 INFO [20638]: /LoginCoreGradeAccount() -- 23:23:47.915 INFO [20638]: RET: added=2020-02-05 09:42:12.816064 -- 23:23:47.915 INFO [20638]: RET: email=tokslaw@chiefsoft.com -- 23:23:47.915 INFO [20638]: RET: firstname=Tokunbo -- 23:23:47.915 INFO [20638]: RET: folder=5D06B187B1E2285A63AD1D0ECB670D98 -- 23:23:47.915 INFO [20638]: RET: id=7 -- 23:23:47.915 INFO [20638]: RET: last_login= -- 23:23:47.915 INFO [20638]: RET: lastname=Lawal -- 23:23:47.915 INFO [20638]: RET: loc=192.168.1.13 -- 23:23:47.915 INFO [20638]: RET: member_id=7 -- 23:23:47.915 INFO [20638]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 23:23:47.915 INFO [20638]: RET: phone= -- 23:23:47.915 INFO [20638]: RET: pid= -- 23:23:47.915 INFO [20638]: RET: result=YES I GET TO BACK END -- 23:23:47.915 INFO [20638]: RET: sessionid=4CA2060EB1DD0014A4F28597D690E109 -- 23:23:47.915 INFO [20638]: RET: status=1 -- 23:23:47.915 INFO [20638]: RET: stauts=OK -- 23:23:47.915 INFO [20638]: RET: username=tokslaw@chiefsoft.com -- 23:23:47.915 INFO [20638]: RET: verified= -- 23:23:47.916 INFO [20638]: COREGRADE is stopping... -- 23:23:47.917 DEBUG [20638]: Closing database connection -- 23:23:47.917 SQL [20638]: pgsql_close() -- 23:23:47.871 DEBUG [20638]: Database connection successful -- 23:23:47.871 INFO [20638]: _SERVER found -- 23:23:47.871 INFO [20638]: REMOTE_ADDR = 192.168.1.13 -- 23:23:47.871 INFO [20638]: SERVER_NAME = oameye.works.coregrade.com -- 23:23:47.871 INFO [20638]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3967ktbbtj2v7071c5fqjui8kmgdl0th; _gat_gtag_UA_54829827_2=1 -- 23:23:47.871 INFO [20638]: QUERY_STRING = /auth -- 23:23:47.871 INFO [20638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:23:47.917 INFO [20638]: COREGRADE is stopping... -- 23:23:47.917 DEBUG [20638]: Closing database connection -- 23:23:47.917 SQL [20638]: pgsql_close() -- 23:23:47.967 INFO [20638]: COREGRADE is starting... -- 23:23:47.967 INFO [20638]: Version from config: 1.0 -- 23:23:47.967 DEBUG [20638]: Connecting to database... -- 23:23:47.967 DEBUG [20638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:23:47.967 SQL [20638]: pgsql_db_connect() -- 23:23:47.971 DEBUG [20638]: Database connection successful -- 23:23:47.971 INFO [20638]: _SERVER found -- 23:23:47.971 INFO [20638]: REMOTE_ADDR = 192.168.1.13 -- 23:23:47.971 INFO [20638]: SERVER_NAME = oameye.works.coregrade.com -- 23:23:47.971 INFO [20638]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3967ktbbtj2v7071c5fqjui8kmgdl0th; _gat_gtag_UA_54829827_2=1 -- 23:23:47.971 INFO [20638]: QUERY_STRING = /member/index -- 23:23:47.971 INFO [20638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:23:48.011 INFO [20638]: COREGRADE is stopping... -- 23:23:48.011 DEBUG [20638]: Closing database connection -- 23:23:48.011 SQL [20638]: pgsql_close() -- 23:23:48.405 INFO [20638]: COREGRADE is starting... -- 23:23:48.405 INFO [20638]: Version from config: 1.0 -- 23:23:48.405 DEBUG [20638]: Connecting to database... -- 23:23:48.405 DEBUG [20638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:23:48.406 SQL [20638]: pgsql_db_connect() -- 23:23:48.410 DEBUG [20638]: Database connection successful -- 23:23:48.410 INFO [20638]: _SERVER found -- 23:23:48.410 INFO [20638]: REMOTE_ADDR = 192.168.1.13 -- 23:23:48.410 INFO [20638]: SERVER_NAME = oameye.works.coregrade.com -- 23:23:48.410 INFO [20638]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3967ktbbtj2v7071c5fqjui8kmgdl0th; _gat_gtag_UA_54829827_2=1 -- 23:23:48.410 INFO [20638]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:23:48.410 INFO [20638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:23:48.421 INFO [20638]: COREGRADE is stopping... -- 23:23:48.421 DEBUG [20638]: Closing database connection -- 23:23:48.421 SQL [20638]: pgsql_close() -- 23:23:48.497 INFO [20638]: COREGRADE is starting... -- 23:23:48.497 INFO [20638]: Version from config: 1.0 -- 23:23:48.497 DEBUG [20638]: Connecting to database... -- 23:23:48.497 DEBUG [20638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:23:48.497 SQL [20638]: pgsql_db_connect() -- 23:23:48.501 DEBUG [20638]: Database connection successful -- 23:23:48.501 INFO [20638]: _SERVER found -- 23:23:48.501 INFO [20638]: REMOTE_ADDR = 192.168.1.13 -- 23:23:48.501 INFO [20638]: SERVER_NAME = oameye.works.coregrade.com -- 23:23:48.501 INFO [20638]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3967ktbbtj2v7071c5fqjui8kmgdl0th; _gat_gtag_UA_54829827_2=1 -- 23:23:48.501 INFO [20638]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:23:48.501 INFO [20638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:23:48.513 INFO [20638]: COREGRADE is stopping... -- 23:23:48.513 DEBUG [20638]: Closing database connection -- 23:23:48.513 SQL [20638]: pgsql_close() -- 23:25:42.252 INFO [20628]: COREGRADE is starting... -- 23:25:42.253 INFO [20628]: Version from config: 1.0 -- 23:25:42.253 DEBUG [20628]: Connecting to database... -- 23:25:42.253 DEBUG [20628]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:25:42.253 SQL [20628]: pgsql_db_connect() -- 23:25:42.258 INFO [20578]: COREGRADE is starting... -- 23:25:42.258 INFO [20578]: Version from config: 1.0 -- 23:25:42.258 DEBUG [20578]: Connecting to database... -- 23:25:42.258 DEBUG [20578]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:25:42.258 SQL [20578]: pgsql_db_connect() -- 23:25:42.257 DEBUG [20628]: Database connection successful -- 23:25:42.257 INFO [20628]: _SERVER found -- 23:25:42.257 INFO [20628]: REMOTE_ADDR = 192.168.1.13 -- 23:25:42.257 INFO [20628]: SERVER_NAME = oameye.works.coregrade.com -- 23:25:42.257 INFO [20628]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3967ktbbtj2v7071c5fqjui8kmgdl0th -- 23:25:42.257 INFO [20628]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 23:25:42.257 INFO [20628]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:25:42.271 INFO [20628]: COREGRADE is stopping... -- 23:25:42.271 DEBUG [20628]: Closing database connection -- 23:25:42.271 SQL [20628]: pgsql_close() -- 23:25:42.262 DEBUG [20578]: Database connection successful -- 23:25:42.262 INFO [20578]: _SERVER found -- 23:25:42.262 INFO [20578]: REMOTE_ADDR = 192.168.1.13 -- 23:25:42.262 INFO [20578]: SERVER_NAME = oameye.works.coregrade.com -- 23:25:42.262 INFO [20578]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3967ktbbtj2v7071c5fqjui8kmgdl0th -- 23:25:42.262 INFO [20578]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 23:25:42.262 INFO [20578]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:25:42.276 INFO [20578]: COREGRADE is stopping... -- 23:25:42.276 DEBUG [20578]: Closing database connection -- 23:25:42.276 SQL [20578]: pgsql_close() -- 23:29:15.706 INFO [20576]: COREGRADE is starting... -- 23:29:15.707 INFO [20576]: Version from config: 1.0 -- 23:29:15.707 DEBUG [20576]: Connecting to database... -- 23:29:15.707 DEBUG [20576]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:29:15.707 SQL [20576]: pgsql_db_connect() -- 23:29:15.712 DEBUG [20576]: Database connection successful -- 23:29:15.712 INFO [20576]: _SERVER found -- 23:29:15.712 INFO [20576]: REMOTE_ADDR = 192.168.1.13 -- 23:29:15.712 INFO [20576]: SERVER_NAME = oameye.works.coregrade.com -- 23:29:15.712 INFO [20576]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=b1pvmincvpouuhh6bfk1edvepnmai2aj -- 23:29:15.712 INFO [20576]: QUERY_STRING = /member/page -- 23:29:15.712 INFO [20576]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:29:15.726 INFO [20576]: COREGRADE is stopping... -- 23:29:15.726 DEBUG [20576]: Closing database connection -- 23:29:15.726 SQL [20576]: pgsql_close() -- 23:30:17.136 INFO [20579]: COREGRADE is starting... -- 23:30:17.137 INFO [20579]: Version from config: 1.0 -- 23:30:17.137 DEBUG [20579]: Connecting to database... -- 23:30:17.137 DEBUG [20579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:30:17.137 SQL [20579]: pgsql_db_connect() -- 23:30:17.141 DEBUG [20579]: Database connection successful -- 23:30:17.141 INFO [20579]: _SERVER found -- 23:30:17.141 INFO [20579]: REMOTE_ADDR = 192.168.1.13 -- 23:30:17.141 INFO [20579]: SERVER_NAME = oameye.works.coregrade.com -- 23:30:17.141 INFO [20579]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=b1pvmincvpouuhh6bfk1edvepnmai2aj -- 23:30:17.141 INFO [20579]: QUERY_STRING = /member/page -- 23:30:17.141 INFO [20579]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:30:17.188 INFO [20579]: COREGRADE is stopping... -- 23:30:17.188 DEBUG [20579]: Closing database connection -- 23:30:17.188 SQL [20579]: pgsql_close() -- 23:30:17.345 INFO [20577]: COREGRADE is starting... -- 23:30:17.346 INFO [20577]: Version from config: 1.0 -- 23:30:17.346 DEBUG [20577]: Connecting to database... -- 23:30:17.346 DEBUG [20577]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:30:17.346 SQL [20577]: pgsql_db_connect() -- 23:30:17.350 DEBUG [20577]: Database connection successful -- 23:30:17.350 INFO [20577]: _SERVER found -- 23:30:17.350 INFO [20577]: REMOTE_ADDR = 192.168.1.13 -- 23:30:17.350 INFO [20577]: SERVER_NAME = oameye.works.coregrade.com -- 23:30:17.350 INFO [20577]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=m6adgamuk387v737iiglilnui7vmhapj -- 23:30:17.350 INFO [20577]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:30:17.350 INFO [20577]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:30:17.363 INFO [20577]: COREGRADE is stopping... -- 23:30:17.363 DEBUG [20577]: Closing database connection -- 23:30:17.363 SQL [20577]: pgsql_close() -- 23:30:17.642 INFO [20577]: COREGRADE is starting... -- 23:30:17.643 INFO [20577]: Version from config: 1.0 -- 23:30:17.643 DEBUG [20577]: Connecting to database... -- 23:30:17.643 DEBUG [20577]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:30:17.643 SQL [20577]: pgsql_db_connect() -- 23:30:17.647 DEBUG [20577]: Database connection successful -- 23:30:17.647 INFO [20577]: _SERVER found -- 23:30:17.647 INFO [20577]: REMOTE_ADDR = 192.168.1.13 -- 23:30:17.647 INFO [20577]: SERVER_NAME = oameye.works.coregrade.com -- 23:30:17.647 INFO [20577]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=m6adgamuk387v737iiglilnui7vmhapj -- 23:30:17.647 INFO [20577]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:30:17.647 INFO [20577]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:30:17.659 INFO [20577]: COREGRADE is stopping... -- 23:30:17.659 DEBUG [20577]: Closing database connection -- 23:30:17.659 SQL [20577]: pgsql_close() -- 23:30:20.794 INFO [20577]: COREGRADE is starting... -- 23:30:20.794 INFO [20577]: Version from config: 1.0 -- 23:30:20.794 DEBUG [20577]: Connecting to database... -- 23:30:20.794 DEBUG [20577]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:30:20.794 SQL [20577]: pgsql_db_connect() -- 23:30:20.799 DEBUG [20577]: Database connection successful -- 23:30:20.799 INFO [20577]: _SERVER found -- 23:30:20.799 INFO [20577]: REMOTE_ADDR = 192.168.1.13 -- 23:30:20.799 INFO [20577]: SERVER_NAME = oameye.works.coregrade.com -- 23:30:20.799 INFO [20577]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=m6adgamuk387v737iiglilnui7vmhapj -- 23:30:20.799 INFO [20577]: QUERY_STRING = /member/viewCardAddAction -- 23:30:20.799 INFO [20577]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:30:20.832 INFO [20577]: COREGRADE is stopping... -- 23:30:20.832 DEBUG [20577]: Closing database connection -- 23:30:20.832 SQL [20577]: pgsql_close() -- 23:30:26.304 INFO [20707]: COREGRADE is starting... -- 23:30:26.304 INFO [20707]: Version from config: 1.0 -- 23:30:26.304 DEBUG [20707]: Connecting to database... -- 23:30:26.304 DEBUG [20707]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:30:26.304 SQL [20707]: pgsql_db_connect() -- 23:30:26.342 INFO [20707]: COREGRADE is starting... -- 23:30:26.342 INFO [20707]: Version from config: 1.0 -- 23:30:26.342 DEBUG [20707]: Connecting to database... -- 23:30:26.342 DEBUG [20707]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:30:26.342 SQL [20707]: pgsql_db_connect() -- 23:30:26.346 DEBUG [20707]: Database connection successful -- 23:30:26.346 INFO [20707]: _SERVER found -- 23:30:26.346 INFO [20707]: REMOTE_ADDR = 192.168.1.13 -- 23:30:26.346 INFO [20707]: SERVER_NAME = oameye.works.coregrade.com -- 23:30:26.346 INFO [20707]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=m6adgamuk387v737iiglilnui7vmhapj -- 23:30:26.346 INFO [20707]: QUERY_STRING = -- 23:30:26.346 INFO [20707]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:30:26.346 INFO [20707]: SystemStatus()09-09-********~************ -- 23:30:26.346 INFO [20707]: long coregrade_api_main(CVars in, CVars &out) -- 23:30:26.346 INFO [20707]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 23:30:26.346 INFO [20707]: account calls -- 23:30:26.346 INFO [20707]: account_calls() -- 23:30:26.346 INFO [20707]: AddPageCard() -- 23:30:26.346 FLOG_MAX [20707]: REQ_STRING(title) -- 23:30:26.347 FLOG_MAX [20707]: REQ_STRING(item_type) -- 23:30:26.347 FLOG_MAX [20707]: REQ_STRING(sessionid) -- 23:30:26.347 FLOG_MAX [20707]: REQ_STRING(detail) -- 23:30:26.347 FLOG_MAX [20707]: Bad parameter exception: 'page_id' -- 23:30:26.347 INFO [20707]: /AddPageCard() -- 23:30:26.347 INFO [20707]: RET: result=YES I GET TO BACK END -- 23:30:26.347 INFO [20707]: RET: status=Invalid session ID -- 23:30:26.373 INFO [20707]: COREGRADE is stopping... -- 23:30:26.373 DEBUG [20707]: Closing database connection -- 23:30:26.373 SQL [20707]: pgsql_close() -- 23:30:26.309 DEBUG [20707]: Database connection successful -- 23:30:26.309 INFO [20707]: _SERVER found -- 23:30:26.309 INFO [20707]: REMOTE_ADDR = 192.168.1.13 -- 23:30:26.309 INFO [20707]: SERVER_NAME = oameye.works.coregrade.com -- 23:30:26.309 INFO [20707]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=m6adgamuk387v737iiglilnui7vmhapj -- 23:30:26.309 INFO [20707]: QUERY_STRING = /member/upload -- 23:30:26.309 INFO [20707]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:30:26.373 INFO [20707]: COREGRADE is stopping... -- 23:30:26.373 DEBUG [20707]: Closing database connection -- 23:30:26.373 SQL [20707]: pgsql_close() -- 23:30:26.441 INFO [20707]: COREGRADE is starting... -- 23:30:26.442 INFO [20707]: Version from config: 1.0 -- 23:30:26.442 DEBUG [20707]: Connecting to database... -- 23:30:26.442 DEBUG [20707]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:30:26.442 SQL [20707]: pgsql_db_connect() -- 23:30:26.446 DEBUG [20707]: Database connection successful -- 23:30:26.446 INFO [20707]: _SERVER found -- 23:30:26.446 INFO [20707]: REMOTE_ADDR = 192.168.1.13 -- 23:30:26.446 INFO [20707]: SERVER_NAME = oameye.works.coregrade.com -- 23:30:26.446 INFO [20707]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=m6adgamuk387v737iiglilnui7vmhapj -- 23:30:26.446 INFO [20707]: QUERY_STRING = /member/page -- 23:30:26.446 INFO [20707]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:30:26.489 INFO [20707]: COREGRADE is stopping... -- 23:30:26.489 DEBUG [20707]: Closing database connection -- 23:30:26.489 SQL [20707]: pgsql_close() -- 23:30:26.639 INFO [20707]: COREGRADE is starting... -- 23:30:26.639 INFO [20707]: Version from config: 1.0 -- 23:30:26.639 DEBUG [20707]: Connecting to database... -- 23:30:26.639 DEBUG [20707]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:30:26.639 SQL [20707]: pgsql_db_connect() -- 23:30:26.644 DEBUG [20707]: Database connection successful -- 23:30:26.644 INFO [20707]: _SERVER found -- 23:30:26.644 INFO [20707]: REMOTE_ADDR = 192.168.1.13 -- 23:30:26.644 INFO [20707]: SERVER_NAME = oameye.works.coregrade.com -- 23:30:26.644 INFO [20707]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=m6adgamuk387v737iiglilnui7vmhapj -- 23:30:26.644 INFO [20707]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:30:26.644 INFO [20707]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:30:26.655 INFO [20707]: COREGRADE is stopping... -- 23:30:26.655 DEBUG [20707]: Closing database connection -- 23:30:26.655 SQL [20707]: pgsql_close() -- 23:30:26.863 INFO [20707]: COREGRADE is starting... -- 23:30:26.863 INFO [20707]: Version from config: 1.0 -- 23:30:26.863 DEBUG [20707]: Connecting to database... -- 23:30:26.863 DEBUG [20707]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:30:26.863 SQL [20707]: pgsql_db_connect() -- 23:30:26.867 DEBUG [20707]: Database connection successful -- 23:30:26.867 INFO [20707]: _SERVER found -- 23:30:26.867 INFO [20707]: REMOTE_ADDR = 192.168.1.13 -- 23:30:26.867 INFO [20707]: SERVER_NAME = oameye.works.coregrade.com -- 23:30:26.867 INFO [20707]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=m6adgamuk387v737iiglilnui7vmhapj -- 23:30:26.867 INFO [20707]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:30:26.867 INFO [20707]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:30:26.879 INFO [20707]: COREGRADE is stopping... -- 23:30:26.879 DEBUG [20707]: Closing database connection -- 23:30:26.879 SQL [20707]: pgsql_close() -- 23:30:39.322 INFO [20705]: COREGRADE is starting... -- 23:30:39.322 INFO [20705]: Version from config: 1.0 -- 23:30:39.322 DEBUG [20705]: Connecting to database... -- 23:30:39.322 DEBUG [20705]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:30:39.322 SQL [20705]: pgsql_db_connect() -- 23:30:39.326 DEBUG [20705]: Database connection successful -- 23:30:39.326 INFO [20705]: _SERVER found -- 23:30:39.326 INFO [20705]: REMOTE_ADDR = 192.168.1.13 -- 23:30:39.326 INFO [20705]: SERVER_NAME = oameye.works.coregrade.com -- 23:30:39.326 INFO [20705]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=m6adgamuk387v737iiglilnui7vmhapj -- 23:30:39.326 INFO [20705]: QUERY_STRING = /member/viewCardAddAction -- 23:30:39.326 INFO [20705]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:30:39.359 INFO [20705]: COREGRADE is stopping... -- 23:30:39.359 DEBUG [20705]: Closing database connection -- 23:30:39.359 SQL [20705]: pgsql_close() -- 23:30:44.470 INFO [20575]: COREGRADE is starting... -- 23:30:44.470 INFO [20575]: Version from config: 1.0 -- 23:30:44.470 DEBUG [20575]: Connecting to database... -- 23:30:44.470 DEBUG [20575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:30:44.470 SQL [20575]: pgsql_db_connect() -- 23:30:44.507 INFO [20575]: COREGRADE is starting... -- 23:30:44.508 INFO [20575]: Version from config: 1.0 -- 23:30:44.508 DEBUG [20575]: Connecting to database... -- 23:30:44.508 DEBUG [20575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:30:44.508 SQL [20575]: pgsql_db_connect() -- 23:30:44.512 DEBUG [20575]: Database connection successful -- 23:30:44.512 INFO [20575]: _SERVER found -- 23:30:44.512 INFO [20575]: REMOTE_ADDR = 192.168.1.13 -- 23:30:44.512 INFO [20575]: SERVER_NAME = oameye.works.coregrade.com -- 23:30:44.512 INFO [20575]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=m6adgamuk387v737iiglilnui7vmhapj -- 23:30:44.512 INFO [20575]: QUERY_STRING = -- 23:30:44.512 INFO [20575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:30:44.512 INFO [20575]: SystemStatus()09-09-********~************ -- 23:30:44.512 INFO [20575]: long coregrade_api_main(CVars in, CVars &out) -- 23:30:44.512 INFO [20575]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 23:30:44.512 INFO [20575]: account calls -- 23:30:44.512 INFO [20575]: account_calls() -- 23:30:44.512 INFO [20575]: AddPageCard() -- 23:30:44.512 FLOG_MAX [20575]: REQ_STRING(title) -- 23:30:44.512 FLOG_MAX [20575]: REQ_STRING(item_type) -- 23:30:44.512 FLOG_MAX [20575]: REQ_STRING(sessionid) -- 23:30:44.512 FLOG_MAX [20575]: REQ_STRING(detail) -- 23:30:44.512 FLOG_MAX [20575]: Bad parameter exception: 'page_id' -- 23:30:44.512 INFO [20575]: /AddPageCard() -- 23:30:44.512 INFO [20575]: RET: result=YES I GET TO BACK END -- 23:30:44.512 INFO [20575]: RET: status=Invalid session ID -- 23:30:44.521 INFO [20575]: COREGRADE is stopping... -- 23:30:44.521 DEBUG [20575]: Closing database connection -- 23:30:44.521 SQL [20575]: pgsql_close() -- 23:30:44.474 DEBUG [20575]: Database connection successful -- 23:30:44.474 INFO [20575]: _SERVER found -- 23:30:44.474 INFO [20575]: REMOTE_ADDR = 192.168.1.13 -- 23:30:44.474 INFO [20575]: SERVER_NAME = oameye.works.coregrade.com -- 23:30:44.474 INFO [20575]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=m6adgamuk387v737iiglilnui7vmhapj -- 23:30:44.474 INFO [20575]: QUERY_STRING = /member/upload -- 23:30:44.474 INFO [20575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:30:44.522 INFO [20575]: COREGRADE is stopping... -- 23:30:44.522 DEBUG [20575]: Closing database connection -- 23:30:44.522 SQL [20575]: pgsql_close() -- 23:30:44.653 INFO [20575]: COREGRADE is starting... -- 23:30:44.653 INFO [20575]: Version from config: 1.0 -- 23:30:44.653 DEBUG [20575]: Connecting to database... -- 23:30:44.653 DEBUG [20575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:30:44.653 SQL [20575]: pgsql_db_connect() -- 23:30:44.657 DEBUG [20575]: Database connection successful -- 23:30:44.657 INFO [20575]: _SERVER found -- 23:30:44.657 INFO [20575]: REMOTE_ADDR = 192.168.1.13 -- 23:30:44.657 INFO [20575]: SERVER_NAME = oameye.works.coregrade.com -- 23:30:44.657 INFO [20575]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=m6adgamuk387v737iiglilnui7vmhapj -- 23:30:44.657 INFO [20575]: QUERY_STRING = /member/page -- 23:30:44.657 INFO [20575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:30:44.700 INFO [20575]: COREGRADE is stopping... -- 23:30:44.700 DEBUG [20575]: Closing database connection -- 23:30:44.700 SQL [20575]: pgsql_close() -- 23:30:45.001 INFO [20638]: COREGRADE is starting... -- 23:30:45.002 INFO [20638]: Version from config: 1.0 -- 23:30:45.002 DEBUG [20638]: Connecting to database... -- 23:30:45.002 DEBUG [20638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:30:45.002 SQL [20638]: pgsql_db_connect() -- 23:30:45.006 DEBUG [20638]: Database connection successful -- 23:30:45.006 INFO [20638]: _SERVER found -- 23:30:45.006 INFO [20638]: REMOTE_ADDR = 192.168.1.13 -- 23:30:45.006 INFO [20638]: SERVER_NAME = oameye.works.coregrade.com -- 23:30:45.006 INFO [20638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=m6adgamuk387v737iiglilnui7vmhapj -- 23:30:45.006 INFO [20638]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:30:45.006 INFO [20638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:30:45.018 INFO [20638]: COREGRADE is stopping... -- 23:30:45.018 DEBUG [20638]: Closing database connection -- 23:30:45.018 SQL [20638]: pgsql_close() -- 23:30:45.201 INFO [20638]: COREGRADE is starting... -- 23:30:45.202 INFO [20638]: Version from config: 1.0 -- 23:30:45.202 DEBUG [20638]: Connecting to database... -- 23:30:45.202 DEBUG [20638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:30:45.202 SQL [20638]: pgsql_db_connect() -- 23:30:45.206 DEBUG [20638]: Database connection successful -- 23:30:45.206 INFO [20638]: _SERVER found -- 23:30:45.206 INFO [20638]: REMOTE_ADDR = 192.168.1.13 -- 23:30:45.206 INFO [20638]: SERVER_NAME = oameye.works.coregrade.com -- 23:30:45.206 INFO [20638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=m6adgamuk387v737iiglilnui7vmhapj -- 23:30:45.206 INFO [20638]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:30:45.206 INFO [20638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:30:45.217 INFO [20638]: COREGRADE is stopping... -- 23:30:45.217 DEBUG [20638]: Closing database connection -- 23:30:45.218 SQL [20638]: pgsql_close() -- 23:30:50.969 INFO [20628]: COREGRADE is starting... -- 23:30:50.970 INFO [20628]: Version from config: 1.0 -- 23:30:50.970 DEBUG [20628]: Connecting to database... -- 23:30:50.970 DEBUG [20628]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:30:50.970 SQL [20628]: pgsql_db_connect() -- 23:30:50.974 DEBUG [20628]: Database connection successful -- 23:30:50.974 INFO [20628]: _SERVER found -- 23:30:50.974 INFO [20628]: REMOTE_ADDR = 192.168.1.13 -- 23:30:50.974 INFO [20628]: SERVER_NAME = oameye.works.coregrade.com -- 23:30:50.974 INFO [20628]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=m6adgamuk387v737iiglilnui7vmhapj -- 23:30:50.974 INFO [20628]: QUERY_STRING = /member/viewCardAddAction -- 23:30:50.974 INFO [20628]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:30:51.008 INFO [20628]: COREGRADE is stopping... -- 23:30:51.008 DEBUG [20628]: Closing database connection -- 23:30:51.008 SQL [20628]: pgsql_close() -- 23:30:58.440 INFO [20578]: COREGRADE is starting... -- 23:30:58.440 INFO [20578]: Version from config: 1.0 -- 23:30:58.440 DEBUG [20578]: Connecting to database... -- 23:30:58.440 DEBUG [20578]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:30:58.440 SQL [20578]: pgsql_db_connect() -- 23:30:58.481 INFO [20578]: COREGRADE is starting... -- 23:30:58.481 INFO [20578]: Version from config: 1.0 -- 23:30:58.481 DEBUG [20578]: Connecting to database... -- 23:30:58.481 DEBUG [20578]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:30:58.481 SQL [20578]: pgsql_db_connect() -- 23:30:58.486 DEBUG [20578]: Database connection successful -- 23:30:58.486 INFO [20578]: _SERVER found -- 23:30:58.486 INFO [20578]: REMOTE_ADDR = 192.168.1.13 -- 23:30:58.486 INFO [20578]: SERVER_NAME = oameye.works.coregrade.com -- 23:30:58.486 INFO [20578]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=m6adgamuk387v737iiglilnui7vmhapj -- 23:30:58.486 INFO [20578]: QUERY_STRING = -- 23:30:58.486 INFO [20578]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:30:58.486 INFO [20578]: SystemStatus()09-09-********~************ -- 23:30:58.486 INFO [20578]: long coregrade_api_main(CVars in, CVars &out) -- 23:30:58.486 INFO [20578]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 23:30:58.486 INFO [20578]: account calls -- 23:30:58.486 INFO [20578]: account_calls() -- 23:30:58.486 INFO [20578]: AddPageCard() -- 23:30:58.486 FLOG_MAX [20578]: REQ_STRING(title) -- 23:30:58.486 FLOG_MAX [20578]: REQ_STRING(item_type) -- 23:30:58.486 FLOG_MAX [20578]: REQ_STRING(sessionid) -- 23:30:58.486 FLOG_MAX [20578]: REQ_STRING(detail) -- 23:30:58.486 FLOG_MAX [20578]: Bad parameter exception: 'page_id' -- 23:30:58.486 INFO [20578]: /AddPageCard() -- 23:30:58.486 INFO [20578]: RET: result=YES I GET TO BACK END -- 23:30:58.486 INFO [20578]: RET: status=Invalid session ID -- 23:30:58.499 INFO [20578]: COREGRADE is stopping... -- 23:30:58.499 DEBUG [20578]: Closing database connection -- 23:30:58.500 SQL [20578]: pgsql_close() -- 23:30:58.444 DEBUG [20578]: Database connection successful -- 23:30:58.444 INFO [20578]: _SERVER found -- 23:30:58.444 INFO [20578]: REMOTE_ADDR = 192.168.1.13 -- 23:30:58.444 INFO [20578]: SERVER_NAME = oameye.works.coregrade.com -- 23:30:58.444 INFO [20578]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=m6adgamuk387v737iiglilnui7vmhapj -- 23:30:58.444 INFO [20578]: QUERY_STRING = /member/upload -- 23:30:58.444 INFO [20578]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:30:58.500 INFO [20578]: COREGRADE is stopping... -- 23:30:58.500 DEBUG [20578]: Closing database connection -- 23:30:58.500 SQL [20578]: pgsql_close() -- 23:30:58.589 INFO [20578]: COREGRADE is starting... -- 23:30:58.589 INFO [20578]: Version from config: 1.0 -- 23:30:58.589 DEBUG [20578]: Connecting to database... -- 23:30:58.589 DEBUG [20578]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:30:58.589 SQL [20578]: pgsql_db_connect() -- 23:30:58.594 DEBUG [20578]: Database connection successful -- 23:30:58.594 INFO [20578]: _SERVER found -- 23:30:58.594 INFO [20578]: REMOTE_ADDR = 192.168.1.13 -- 23:30:58.594 INFO [20578]: SERVER_NAME = oameye.works.coregrade.com -- 23:30:58.594 INFO [20578]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=m6adgamuk387v737iiglilnui7vmhapj -- 23:30:58.594 INFO [20578]: QUERY_STRING = /member/page -- 23:30:58.594 INFO [20578]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:30:58.637 INFO [20578]: COREGRADE is stopping... -- 23:30:58.637 DEBUG [20578]: Closing database connection -- 23:30:58.637 SQL [20578]: pgsql_close() -- 23:30:58.788 INFO [20579]: COREGRADE is starting... -- 23:30:58.788 INFO [20579]: Version from config: 1.0 -- 23:30:58.788 DEBUG [20579]: Connecting to database... -- 23:30:58.788 DEBUG [20579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:30:58.788 SQL [20579]: pgsql_db_connect() -- 23:30:58.792 DEBUG [20579]: Database connection successful -- 23:30:58.792 INFO [20579]: _SERVER found -- 23:30:58.792 INFO [20579]: REMOTE_ADDR = 192.168.1.13 -- 23:30:58.792 INFO [20579]: SERVER_NAME = oameye.works.coregrade.com -- 23:30:58.792 INFO [20579]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=m6adgamuk387v737iiglilnui7vmhapj -- 23:30:58.792 INFO [20579]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:30:58.792 INFO [20579]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:30:58.804 INFO [20579]: COREGRADE is stopping... -- 23:30:58.804 DEBUG [20579]: Closing database connection -- 23:30:58.804 SQL [20579]: pgsql_close() -- 23:30:59.165 INFO [20579]: COREGRADE is starting... -- 23:30:59.165 INFO [20579]: Version from config: 1.0 -- 23:30:59.165 DEBUG [20579]: Connecting to database... -- 23:30:59.165 DEBUG [20579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:30:59.165 SQL [20579]: pgsql_db_connect() -- 23:30:59.169 DEBUG [20579]: Database connection successful -- 23:30:59.170 INFO [20579]: _SERVER found -- 23:30:59.170 INFO [20579]: REMOTE_ADDR = 192.168.1.13 -- 23:30:59.170 INFO [20579]: SERVER_NAME = oameye.works.coregrade.com -- 23:30:59.170 INFO [20579]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=m6adgamuk387v737iiglilnui7vmhapj -- 23:30:59.170 INFO [20579]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:30:59.170 INFO [20579]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:30:59.181 INFO [20579]: COREGRADE is stopping... -- 23:30:59.181 DEBUG [20579]: Closing database connection -- 23:30:59.181 SQL [20579]: pgsql_close() -- 23:31:10.828 INFO [20577]: COREGRADE is starting... -- 23:31:10.829 INFO [20577]: Version from config: 1.0 -- 23:31:10.829 DEBUG [20577]: Connecting to database... -- 23:31:10.829 DEBUG [20577]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:31:10.829 SQL [20577]: pgsql_db_connect() -- 23:31:10.833 DEBUG [20577]: Database connection successful -- 23:31:10.833 INFO [20577]: _SERVER found -- 23:31:10.833 INFO [20577]: REMOTE_ADDR = 192.168.1.13 -- 23:31:10.833 INFO [20577]: SERVER_NAME = oameye.works.coregrade.com -- 23:31:10.833 INFO [20577]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=m6adgamuk387v737iiglilnui7vmhapj -- 23:31:10.833 INFO [20577]: QUERY_STRING = /member/page -- 23:31:10.833 INFO [20577]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:31:10.876 INFO [20577]: COREGRADE is stopping... -- 23:31:10.876 DEBUG [20577]: Closing database connection -- 23:31:10.876 SQL [20577]: pgsql_close() -- 23:31:58.642 INFO [20708]: COREGRADE is starting... -- 23:31:58.643 INFO [20708]: Version from config: 1.0 -- 23:31:58.643 DEBUG [20708]: Connecting to database... -- 23:31:58.643 DEBUG [20708]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:31:58.643 SQL [20708]: pgsql_db_connect() -- 23:31:58.647 DEBUG [20708]: Database connection successful -- 23:31:58.647 INFO [20708]: _SERVER found -- 23:31:58.647 INFO [20708]: REMOTE_ADDR = 192.168.1.13 -- 23:31:58.647 INFO [20708]: SERVER_NAME = oameye.works.coregrade.com -- 23:31:58.647 INFO [20708]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=m6adgamuk387v737iiglilnui7vmhapj -- 23:31:58.647 INFO [20708]: QUERY_STRING = /member/page -- 23:31:58.647 INFO [20708]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:31:58.691 INFO [20708]: COREGRADE is stopping... -- 23:31:58.691 DEBUG [20708]: Closing database connection -- 23:31:58.691 SQL [20708]: pgsql_close() -- 23:35:29.586 INFO [20707]: COREGRADE is starting... -- 23:35:29.586 INFO [20707]: Version from config: 1.0 -- 23:35:29.586 DEBUG [20707]: Connecting to database... -- 23:35:29.586 DEBUG [20707]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:35:29.586 SQL [20707]: pgsql_db_connect() -- 23:35:29.590 DEBUG [20707]: Database connection successful -- 23:35:29.590 INFO [20707]: _SERVER found -- 23:35:29.590 INFO [20707]: REMOTE_ADDR = 192.168.1.13 -- 23:35:29.590 INFO [20707]: SERVER_NAME = oameye.works.coregrade.com -- 23:35:29.590 INFO [20707]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=m6adgamuk387v737iiglilnui7vmhapj -- 23:35:29.590 INFO [20707]: QUERY_STRING = /member/page -- 23:35:29.590 INFO [20707]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:35:29.634 INFO [20707]: COREGRADE is stopping... -- 23:35:29.634 DEBUG [20707]: Closing database connection -- 23:35:29.634 SQL [20707]: pgsql_close() -- 23:35:29.807 INFO [20705]: COREGRADE is starting... -- 23:35:29.807 INFO [20705]: Version from config: 1.0 -- 23:35:29.807 DEBUG [20705]: Connecting to database... -- 23:35:29.807 DEBUG [20705]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:35:29.807 SQL [20705]: pgsql_db_connect() -- 23:35:29.811 DEBUG [20705]: Database connection successful -- 23:35:29.811 INFO [20705]: _SERVER found -- 23:35:29.811 INFO [20705]: REMOTE_ADDR = 192.168.1.13 -- 23:35:29.811 INFO [20705]: SERVER_NAME = oameye.works.coregrade.com -- 23:35:29.811 INFO [20705]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=u5elpcgvql9qnfb7b47094aj580rcsdl -- 23:35:29.811 INFO [20705]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:35:29.812 INFO [20705]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:35:29.823 INFO [20705]: COREGRADE is stopping... -- 23:35:29.823 DEBUG [20705]: Closing database connection -- 23:35:29.823 SQL [20705]: pgsql_close() -- 23:35:29.970 INFO [20705]: COREGRADE is starting... -- 23:35:29.970 INFO [20705]: Version from config: 1.0 -- 23:35:29.970 DEBUG [20705]: Connecting to database... -- 23:35:29.970 DEBUG [20705]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:35:29.970 SQL [20705]: pgsql_db_connect() -- 23:35:29.974 DEBUG [20705]: Database connection successful -- 23:35:29.974 INFO [20705]: _SERVER found -- 23:35:29.974 INFO [20705]: REMOTE_ADDR = 192.168.1.13 -- 23:35:29.974 INFO [20705]: SERVER_NAME = oameye.works.coregrade.com -- 23:35:29.974 INFO [20705]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=u5elpcgvql9qnfb7b47094aj580rcsdl -- 23:35:29.974 INFO [20705]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:35:29.974 INFO [20705]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:35:29.985 INFO [20705]: COREGRADE is stopping... -- 23:35:29.985 DEBUG [20705]: Closing database connection -- 23:35:29.986 SQL [20705]: pgsql_close() -- 23:36:17.232 INFO [21206]: COREGRADE is starting... -- 23:36:17.232 INFO [21206]: Version from config: 1.0 -- 23:36:17.232 DEBUG [21206]: Connecting to database... -- 23:36:17.232 DEBUG [21206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:36:17.232 SQL [21206]: pgsql_db_connect() -- 23:36:17.237 DEBUG [21206]: Database connection successful -- 23:36:17.237 INFO [21206]: _SERVER found -- 23:36:17.237 INFO [21206]: REMOTE_ADDR = 192.168.1.13 -- 23:36:17.237 INFO [21206]: SERVER_NAME = oameye.works.coregrade.com -- 23:36:17.237 INFO [21206]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=u5elpcgvql9qnfb7b47094aj580rcsdl -- 23:36:17.237 INFO [21206]: QUERY_STRING = /member/viewCardAddAction -- 23:36:17.237 INFO [21206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:36:17.275 INFO [21206]: COREGRADE is stopping... -- 23:36:17.275 DEBUG [21206]: Closing database connection -- 23:36:17.275 SQL [21206]: pgsql_close() -- 23:36:22.338 INFO [21207]: COREGRADE is starting... -- 23:36:22.338 INFO [21207]: Version from config: 1.0 -- 23:36:22.338 DEBUG [21207]: Connecting to database... -- 23:36:22.339 DEBUG [21207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:36:22.339 SQL [21207]: pgsql_db_connect() -- 23:36:22.343 DEBUG [21207]: Database connection successful -- 23:36:22.343 INFO [21207]: _SERVER found -- 23:36:22.343 INFO [21207]: REMOTE_ADDR = 192.168.1.13 -- 23:36:22.343 INFO [21207]: SERVER_NAME = oameye.works.coregrade.com -- 23:36:22.343 INFO [21207]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=u5elpcgvql9qnfb7b47094aj580rcsdl -- 23:36:22.343 INFO [21207]: QUERY_STRING = /member/page -- 23:36:22.343 INFO [21207]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:36:22.392 INFO [21207]: COREGRADE is stopping... -- 23:36:22.392 DEBUG [21207]: Closing database connection -- 23:36:22.392 SQL [21207]: pgsql_close() -- 23:40:08.218 INFO [21209]: COREGRADE is starting... -- 23:40:08.219 INFO [21209]: Version from config: 1.0 -- 23:40:08.219 DEBUG [21209]: Connecting to database... -- 23:40:08.219 DEBUG [21209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:40:08.219 SQL [21209]: pgsql_db_connect() -- 23:40:08.223 DEBUG [21209]: Database connection successful -- 23:40:08.223 INFO [21209]: _SERVER found -- 23:40:08.223 INFO [21209]: REMOTE_ADDR = 192.168.1.13 -- 23:40:08.223 INFO [21209]: SERVER_NAME = oameye.works.coregrade.com -- 23:40:08.223 INFO [21209]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=u5elpcgvql9qnfb7b47094aj580rcsdl -- 23:40:08.223 INFO [21209]: QUERY_STRING = /member/page -- 23:40:08.223 INFO [21209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:40:08.273 INFO [21209]: COREGRADE is stopping... -- 23:40:08.273 DEBUG [21209]: Closing database connection -- 23:40:08.273 SQL [21209]: pgsql_close() -- 23:40:08.491 INFO [21208]: COREGRADE is starting... -- 23:40:08.491 INFO [21208]: Version from config: 1.0 -- 23:40:08.491 DEBUG [21208]: Connecting to database... -- 23:40:08.492 DEBUG [21208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:40:08.492 SQL [21208]: pgsql_db_connect() -- 23:40:08.496 DEBUG [21208]: Database connection successful -- 23:40:08.496 INFO [21208]: _SERVER found -- 23:40:08.496 INFO [21208]: REMOTE_ADDR = 192.168.1.13 -- 23:40:08.496 INFO [21208]: SERVER_NAME = oameye.works.coregrade.com -- 23:40:08.496 INFO [21208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=u5elpcgvql9qnfb7b47094aj580rcsdl -- 23:40:08.496 INFO [21208]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:40:08.496 INFO [21208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:40:08.510 INFO [21208]: COREGRADE is stopping... -- 23:40:08.510 DEBUG [21208]: Closing database connection -- 23:40:08.510 SQL [21208]: pgsql_close() -- 23:40:08.665 INFO [21208]: COREGRADE is starting... -- 23:40:08.666 INFO [21208]: Version from config: 1.0 -- 23:40:08.666 DEBUG [21208]: Connecting to database... -- 23:40:08.666 DEBUG [21208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:40:08.666 SQL [21208]: pgsql_db_connect() -- 23:40:08.670 DEBUG [21208]: Database connection successful -- 23:40:08.670 INFO [21208]: _SERVER found -- 23:40:08.670 INFO [21208]: REMOTE_ADDR = 192.168.1.13 -- 23:40:08.670 INFO [21208]: SERVER_NAME = oameye.works.coregrade.com -- 23:40:08.670 INFO [21208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=u5elpcgvql9qnfb7b47094aj580rcsdl -- 23:40:08.670 INFO [21208]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:40:08.670 INFO [21208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:40:08.682 INFO [21208]: COREGRADE is stopping... -- 23:40:08.682 DEBUG [21208]: Closing database connection -- 23:40:08.682 SQL [21208]: pgsql_close() -- 23:40:12.425 INFO [21208]: COREGRADE is starting... -- 23:40:12.425 INFO [21208]: Version from config: 1.0 -- 23:40:12.425 DEBUG [21208]: Connecting to database... -- 23:40:12.425 DEBUG [21208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:40:12.425 SQL [21208]: pgsql_db_connect() -- 23:40:12.430 DEBUG [21208]: Database connection successful -- 23:40:12.430 INFO [21208]: _SERVER found -- 23:40:12.430 INFO [21208]: REMOTE_ADDR = 192.168.1.13 -- 23:40:12.430 INFO [21208]: SERVER_NAME = oameye.works.coregrade.com -- 23:40:12.430 INFO [21208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=u5elpcgvql9qnfb7b47094aj580rcsdl -- 23:40:12.430 INFO [21208]: QUERY_STRING = /member/viewCardAddAction -- 23:40:12.430 INFO [21208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:40:12.466 INFO [21208]: COREGRADE is stopping... -- 23:40:12.466 DEBUG [21208]: Closing database connection -- 23:40:12.466 SQL [21208]: pgsql_close() -- 23:40:16.961 INFO [21208]: COREGRADE is starting... -- 23:40:16.961 INFO [21208]: Version from config: 1.0 -- 23:40:16.961 DEBUG [21208]: Connecting to database... -- 23:40:16.961 DEBUG [21208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:40:16.961 SQL [21208]: pgsql_db_connect() -- 23:40:16.997 INFO [21208]: COREGRADE is starting... -- 23:40:16.997 INFO [21208]: Version from config: 1.0 -- 23:40:16.997 DEBUG [21208]: Connecting to database... -- 23:40:16.997 DEBUG [21208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:40:16.997 SQL [21208]: pgsql_db_connect() -- 23:40:17.002 DEBUG [21208]: Database connection successful -- 23:40:17.002 INFO [21208]: _SERVER found -- 23:40:17.002 INFO [21208]: REMOTE_ADDR = 192.168.1.13 -- 23:40:17.002 INFO [21208]: SERVER_NAME = oameye.works.coregrade.com -- 23:40:17.002 INFO [21208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=u5elpcgvql9qnfb7b47094aj580rcsdl -- 23:40:17.002 INFO [21208]: QUERY_STRING = -- 23:40:17.002 INFO [21208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:40:17.002 INFO [21208]: SystemStatus()09-09-********~************ -- 23:40:17.002 INFO [21208]: long coregrade_api_main(CVars in, CVars &out) -- 23:40:17.002 INFO [21208]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 23:40:17.002 INFO [21208]: account calls -- 23:40:17.002 INFO [21208]: account_calls() -- 23:40:17.002 INFO [21208]: AddPageCard() -- 23:40:17.002 FLOG_MAX [21208]: REQ_STRING(title) -- 23:40:17.002 FLOG_MAX [21208]: REQ_STRING(item_type) -- 23:40:17.002 FLOG_MAX [21208]: REQ_STRING(sessionid) -- 23:40:17.002 FLOG_MAX [21208]: REQ_STRING(detail) -- 23:40:17.002 FLOG_MAX [21208]: Bad parameter exception: 'page_id' -- 23:40:17.002 INFO [21208]: /AddPageCard() -- 23:40:17.002 INFO [21208]: RET: result=YES I GET TO BACK END -- 23:40:17.002 INFO [21208]: RET: status=Invalid session ID -- 23:40:17.011 INFO [21208]: COREGRADE is stopping... -- 23:40:17.012 DEBUG [21208]: Closing database connection -- 23:40:17.012 SQL [21208]: pgsql_close() -- 23:40:16.965 DEBUG [21208]: Database connection successful -- 23:40:16.965 INFO [21208]: _SERVER found -- 23:40:16.965 INFO [21208]: REMOTE_ADDR = 192.168.1.13 -- 23:40:16.965 INFO [21208]: SERVER_NAME = oameye.works.coregrade.com -- 23:40:16.965 INFO [21208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=u5elpcgvql9qnfb7b47094aj580rcsdl -- 23:40:16.965 INFO [21208]: QUERY_STRING = /member/upload -- 23:40:16.965 INFO [21208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:40:17.012 INFO [21208]: COREGRADE is stopping... -- 23:40:17.012 DEBUG [21208]: Closing database connection -- 23:40:17.012 SQL [21208]: pgsql_close() -- 23:40:17.108 INFO [21208]: COREGRADE is starting... -- 23:40:17.108 INFO [21208]: Version from config: 1.0 -- 23:40:17.108 DEBUG [21208]: Connecting to database... -- 23:40:17.108 DEBUG [21208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:40:17.108 SQL [21208]: pgsql_db_connect() -- 23:40:17.112 DEBUG [21208]: Database connection successful -- 23:40:17.112 INFO [21208]: _SERVER found -- 23:40:17.112 INFO [21208]: REMOTE_ADDR = 192.168.1.13 -- 23:40:17.112 INFO [21208]: SERVER_NAME = oameye.works.coregrade.com -- 23:40:17.112 INFO [21208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=u5elpcgvql9qnfb7b47094aj580rcsdl -- 23:40:17.112 INFO [21208]: QUERY_STRING = /member/page -- 23:40:17.112 INFO [21208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:40:17.153 INFO [21208]: COREGRADE is stopping... -- 23:40:17.153 DEBUG [21208]: Closing database connection -- 23:40:17.153 SQL [21208]: pgsql_close() -- 23:40:17.314 INFO [21208]: COREGRADE is starting... -- 23:40:17.314 INFO [21208]: Version from config: 1.0 -- 23:40:17.314 DEBUG [21208]: Connecting to database... -- 23:40:17.314 DEBUG [21208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:40:17.314 SQL [21208]: pgsql_db_connect() -- 23:40:17.318 DEBUG [21208]: Database connection successful -- 23:40:17.318 INFO [21208]: _SERVER found -- 23:40:17.318 INFO [21208]: REMOTE_ADDR = 192.168.1.13 -- 23:40:17.318 INFO [21208]: SERVER_NAME = oameye.works.coregrade.com -- 23:40:17.318 INFO [21208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=u5elpcgvql9qnfb7b47094aj580rcsdl -- 23:40:17.318 INFO [21208]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:40:17.318 INFO [21208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:40:17.330 INFO [21208]: COREGRADE is stopping... -- 23:40:17.330 DEBUG [21208]: Closing database connection -- 23:40:17.330 SQL [21208]: pgsql_close() -- 23:40:17.351 INFO [21208]: COREGRADE is starting... -- 23:40:17.351 INFO [21208]: Version from config: 1.0 -- 23:40:17.351 DEBUG [21208]: Connecting to database... -- 23:40:17.351 DEBUG [21208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:40:17.351 SQL [21208]: pgsql_db_connect() -- 23:40:17.355 DEBUG [21208]: Database connection successful -- 23:40:17.355 INFO [21208]: _SERVER found -- 23:40:17.355 INFO [21208]: REMOTE_ADDR = 192.168.1.13 -- 23:40:17.355 INFO [21208]: SERVER_NAME = oameye.works.coregrade.com -- 23:40:17.355 INFO [21208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=u5elpcgvql9qnfb7b47094aj580rcsdl -- 23:40:17.355 INFO [21208]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:40:17.355 INFO [21208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:40:17.366 INFO [21208]: COREGRADE is stopping... -- 23:40:17.366 DEBUG [21208]: Closing database connection -- 23:40:17.366 SQL [21208]: pgsql_close() -- 23:40:45.657 INFO [21210]: COREGRADE is starting... -- 23:40:45.658 INFO [21210]: Version from config: 1.0 -- 23:40:45.658 DEBUG [21210]: Connecting to database... -- 23:40:45.658 DEBUG [21210]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:40:45.658 SQL [21210]: pgsql_db_connect() -- 23:40:45.662 DEBUG [21210]: Database connection successful -- 23:40:45.662 INFO [21210]: _SERVER found -- 23:40:45.662 INFO [21210]: REMOTE_ADDR = 192.168.1.13 -- 23:40:45.662 INFO [21210]: SERVER_NAME = oameye.works.coregrade.com -- 23:40:45.662 INFO [21210]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=u5elpcgvql9qnfb7b47094aj580rcsdl -- 23:40:45.662 INFO [21210]: QUERY_STRING = /member/page -- 23:40:45.662 INFO [21210]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:40:45.678 INFO [21210]: COREGRADE is stopping... -- 23:40:45.678 DEBUG [21210]: Closing database connection -- 23:40:45.678 SQL [21210]: pgsql_close() -- 23:42:03.371 INFO [21215]: COREGRADE is starting... -- 23:42:03.371 INFO [21215]: Version from config: 1.0 -- 23:42:03.371 DEBUG [21215]: Connecting to database... -- 23:42:03.371 DEBUG [21215]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:42:03.371 SQL [21215]: pgsql_db_connect() -- 23:42:03.376 DEBUG [21215]: Database connection successful -- 23:42:03.376 INFO [21215]: _SERVER found -- 23:42:03.376 INFO [21215]: REMOTE_ADDR = 192.168.1.13 -- 23:42:03.376 INFO [21215]: SERVER_NAME = oameye.works.coregrade.com -- 23:42:03.376 INFO [21215]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=u5elpcgvql9qnfb7b47094aj580rcsdl -- 23:42:03.376 INFO [21215]: QUERY_STRING = /member/page -- 23:42:03.376 INFO [21215]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:42:03.427 INFO [21215]: COREGRADE is stopping... -- 23:42:03.427 DEBUG [21215]: Closing database connection -- 23:42:03.427 SQL [21215]: pgsql_close() -- 23:42:03.565 INFO [21206]: COREGRADE is starting... -- 23:42:03.565 INFO [21206]: Version from config: 1.0 -- 23:42:03.565 DEBUG [21206]: Connecting to database... -- 23:42:03.566 DEBUG [21206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:42:03.566 SQL [21206]: pgsql_db_connect() -- 23:42:03.570 DEBUG [21206]: Database connection successful -- 23:42:03.570 INFO [21206]: _SERVER found -- 23:42:03.570 INFO [21206]: REMOTE_ADDR = 192.168.1.13 -- 23:42:03.570 INFO [21206]: SERVER_NAME = oameye.works.coregrade.com -- 23:42:03.570 INFO [21206]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=4qbf13im6mhtiskvr8gnjofnn2pdh97e -- 23:42:03.570 INFO [21206]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:42:03.570 INFO [21206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:42:03.583 INFO [21206]: COREGRADE is stopping... -- 23:42:03.583 DEBUG [21206]: Closing database connection -- 23:42:03.583 SQL [21206]: pgsql_close() -- 23:42:03.844 INFO [21206]: COREGRADE is starting... -- 23:42:03.844 INFO [21206]: Version from config: 1.0 -- 23:42:03.844 DEBUG [21206]: Connecting to database... -- 23:42:03.844 DEBUG [21206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:42:03.844 SQL [21206]: pgsql_db_connect() -- 23:42:03.848 DEBUG [21206]: Database connection successful -- 23:42:03.848 INFO [21206]: _SERVER found -- 23:42:03.848 INFO [21206]: REMOTE_ADDR = 192.168.1.13 -- 23:42:03.848 INFO [21206]: SERVER_NAME = oameye.works.coregrade.com -- 23:42:03.848 INFO [21206]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=4qbf13im6mhtiskvr8gnjofnn2pdh97e -- 23:42:03.848 INFO [21206]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:42:03.848 INFO [21206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:42:03.860 INFO [21206]: COREGRADE is stopping... -- 23:42:03.861 DEBUG [21206]: Closing database connection -- 23:42:03.861 SQL [21206]: pgsql_close() -- 23:42:08.484 INFO [21206]: COREGRADE is starting... -- 23:42:08.484 INFO [21206]: Version from config: 1.0 -- 23:42:08.484 DEBUG [21206]: Connecting to database... -- 23:42:08.484 DEBUG [21206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:42:08.484 SQL [21206]: pgsql_db_connect() -- 23:42:08.488 DEBUG [21206]: Database connection successful -- 23:42:08.488 INFO [21206]: _SERVER found -- 23:42:08.488 INFO [21206]: REMOTE_ADDR = 192.168.1.13 -- 23:42:08.488 INFO [21206]: SERVER_NAME = oameye.works.coregrade.com -- 23:42:08.488 INFO [21206]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=4qbf13im6mhtiskvr8gnjofnn2pdh97e -- 23:42:08.488 INFO [21206]: QUERY_STRING = /member/viewCardAddAction -- 23:42:08.488 INFO [21206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:42:08.523 INFO [21206]: COREGRADE is stopping... -- 23:42:08.523 DEBUG [21206]: Closing database connection -- 23:42:08.523 SQL [21206]: pgsql_close() -- 23:42:13.808 INFO [21207]: COREGRADE is starting... -- 23:42:13.808 INFO [21207]: Version from config: 1.0 -- 23:42:13.808 DEBUG [21207]: Connecting to database... -- 23:42:13.808 DEBUG [21207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:42:13.809 SQL [21207]: pgsql_db_connect() -- 23:42:13.848 INFO [21207]: COREGRADE is starting... -- 23:42:13.849 INFO [21207]: Version from config: 1.0 -- 23:42:13.849 DEBUG [21207]: Connecting to database... -- 23:42:13.849 DEBUG [21207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:42:13.849 SQL [21207]: pgsql_db_connect() -- 23:42:13.853 DEBUG [21207]: Database connection successful -- 23:42:13.853 INFO [21207]: _SERVER found -- 23:42:13.853 INFO [21207]: REMOTE_ADDR = 192.168.1.13 -- 23:42:13.853 INFO [21207]: SERVER_NAME = oameye.works.coregrade.com -- 23:42:13.853 INFO [21207]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=4qbf13im6mhtiskvr8gnjofnn2pdh97e -- 23:42:13.853 INFO [21207]: QUERY_STRING = -- 23:42:13.853 INFO [21207]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:42:13.853 INFO [21207]: SystemStatus()09-09-********~************ -- 23:42:13.853 INFO [21207]: long coregrade_api_main(CVars in, CVars &out) -- 23:42:13.853 INFO [21207]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 23:42:13.853 INFO [21207]: account calls -- 23:42:13.853 INFO [21207]: account_calls() -- 23:42:13.853 INFO [21207]: AddPageCard() -- 23:42:13.853 FLOG_MAX [21207]: REQ_STRING(title) -- 23:42:13.853 FLOG_MAX [21207]: REQ_STRING(item_type) -- 23:42:13.853 FLOG_MAX [21207]: REQ_STRING(sessionid) -- 23:42:13.853 FLOG_MAX [21207]: REQ_STRING(detail) -- 23:42:13.853 FLOG_MAX [21207]: Bad parameter exception: 'page_id' -- 23:42:13.853 INFO [21207]: /AddPageCard() -- 23:42:13.853 INFO [21207]: RET: result=YES I GET TO BACK END -- 23:42:13.853 INFO [21207]: RET: status=Invalid session ID -- 23:42:13.865 INFO [21207]: COREGRADE is stopping... -- 23:42:13.866 DEBUG [21207]: Closing database connection -- 23:42:13.866 SQL [21207]: pgsql_close() -- 23:42:13.813 DEBUG [21207]: Database connection successful -- 23:42:13.813 INFO [21207]: _SERVER found -- 23:42:13.813 INFO [21207]: REMOTE_ADDR = 192.168.1.13 -- 23:42:13.813 INFO [21207]: SERVER_NAME = oameye.works.coregrade.com -- 23:42:13.813 INFO [21207]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=4qbf13im6mhtiskvr8gnjofnn2pdh97e -- 23:42:13.813 INFO [21207]: QUERY_STRING = /member/upload -- 23:42:13.813 INFO [21207]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:42:13.866 INFO [21207]: COREGRADE is stopping... -- 23:42:13.866 DEBUG [21207]: Closing database connection -- 23:42:13.866 SQL [21207]: pgsql_close() -- 23:43:25.756 INFO [21239]: COREGRADE is starting... -- 23:43:25.756 INFO [21239]: Version from config: 1.0 -- 23:43:25.756 DEBUG [21239]: Connecting to database... -- 23:43:25.756 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:43:25.757 SQL [21239]: pgsql_db_connect() -- 23:43:25.761 DEBUG [21239]: Database connection successful -- 23:43:25.761 INFO [21239]: _SERVER found -- 23:43:25.761 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 23:43:25.761 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 23:43:25.761 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=3967ktbbtj2v7071c5fqjui8kmgdl0th -- 23:43:25.761 INFO [21239]: QUERY_STRING = -- 23:43:25.761 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:43:25.806 INFO [21239]: COREGRADE is stopping... -- 23:43:25.806 DEBUG [21239]: Closing database connection -- 23:43:25.806 SQL [21239]: pgsql_close() -- 23:43:26.172 INFO [21239]: COREGRADE is starting... -- 23:43:26.172 INFO [21239]: Version from config: 1.0 -- 23:43:26.172 DEBUG [21239]: Connecting to database... -- 23:43:26.172 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:43:26.172 SQL [21239]: pgsql_db_connect() -- 23:43:26.176 DEBUG [21239]: Database connection successful -- 23:43:26.176 INFO [21239]: _SERVER found -- 23:43:26.176 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 23:43:26.176 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 23:43:26.176 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4 -- 23:43:26.176 INFO [21239]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 23:43:26.176 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:43:26.189 INFO [21239]: COREGRADE is stopping... -- 23:43:26.189 DEBUG [21239]: Closing database connection -- 23:43:26.189 SQL [21239]: pgsql_close() -- 23:43:26.199 INFO [21239]: COREGRADE is starting... -- 23:43:26.199 INFO [21239]: Version from config: 1.0 -- 23:43:26.199 DEBUG [21239]: Connecting to database... -- 23:43:26.199 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:43:26.199 SQL [21239]: pgsql_db_connect() -- 23:43:26.203 DEBUG [21239]: Database connection successful -- 23:43:26.203 INFO [21239]: _SERVER found -- 23:43:26.203 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 23:43:26.203 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 23:43:26.203 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4 -- 23:43:26.203 INFO [21239]: QUERY_STRING = /assets/img/footer_1.jpg -- 23:43:26.203 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:43:26.215 INFO [21239]: COREGRADE is stopping... -- 23:43:26.215 DEBUG [21239]: Closing database connection -- 23:43:26.215 SQL [21239]: pgsql_close() -- 23:43:28.152 INFO [21239]: COREGRADE is starting... -- 23:43:28.152 INFO [21239]: Version from config: 1.0 -- 23:43:28.152 DEBUG [21239]: Connecting to database... -- 23:43:28.152 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:43:28.152 SQL [21239]: pgsql_db_connect() -- 23:43:28.162 INFO [21209]: COREGRADE is starting... -- 23:43:28.162 INFO [21209]: Version from config: 1.0 -- 23:43:28.162 DEBUG [21209]: Connecting to database... -- 23:43:28.162 DEBUG [21209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:43:28.162 SQL [21209]: pgsql_db_connect() -- 23:43:28.156 DEBUG [21239]: Database connection successful -- 23:43:28.156 INFO [21239]: _SERVER found -- 23:43:28.156 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 23:43:28.156 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 23:43:28.156 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4; _gat_gtag_UA_54829827_2=1 -- 23:43:28.156 INFO [21239]: QUERY_STRING = /welcome/viewLogin -- 23:43:28.156 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:43:28.189 INFO [21239]: COREGRADE is stopping... -- 23:43:28.189 DEBUG [21239]: Closing database connection -- 23:43:28.189 SQL [21239]: pgsql_close() -- 23:43:28.166 DEBUG [21209]: Database connection successful -- 23:43:28.166 INFO [21209]: _SERVER found -- 23:43:28.166 INFO [21209]: REMOTE_ADDR = 192.168.1.13 -- 23:43:28.166 INFO [21209]: SERVER_NAME = oameye.works.coregrade.com -- 23:43:28.166 INFO [21209]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4; _gat_gtag_UA_54829827_2=1 -- 23:43:28.166 INFO [21209]: QUERY_STRING = /auth -- 23:43:28.166 INFO [21209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:43:28.199 INFO [21209]: COREGRADE is stopping... -- 23:43:28.199 DEBUG [21209]: Closing database connection -- 23:43:28.199 SQL [21209]: pgsql_close() -- 23:43:28.201 INFO [21239]: COREGRADE is starting... -- 23:43:28.202 INFO [21239]: Version from config: 1.0 -- 23:43:28.202 DEBUG [21239]: Connecting to database... -- 23:43:28.202 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:43:28.202 SQL [21239]: pgsql_db_connect() -- 23:43:28.206 DEBUG [21239]: Database connection successful -- 23:43:28.206 INFO [21239]: _SERVER found -- 23:43:28.206 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 23:43:28.206 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 23:43:28.206 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4; _gat_gtag_UA_54829827_2=1 -- 23:43:28.206 INFO [21239]: QUERY_STRING = /auth/index -- 23:43:28.206 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:43:28.240 INFO [21239]: COREGRADE is stopping... -- 23:43:28.240 DEBUG [21239]: Closing database connection -- 23:43:28.240 SQL [21239]: pgsql_close() -- 23:43:28.395 INFO [21239]: COREGRADE is starting... -- 23:43:28.395 INFO [21239]: Version from config: 1.0 -- 23:43:28.395 DEBUG [21239]: Connecting to database... -- 23:43:28.395 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:43:28.395 SQL [21239]: pgsql_db_connect() -- 23:43:28.399 DEBUG [21239]: Database connection successful -- 23:43:28.399 INFO [21239]: _SERVER found -- 23:43:28.399 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 23:43:28.399 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 23:43:28.399 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4; _gat_gtag_UA_54829827_2=1 -- 23:43:28.399 INFO [21239]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 23:43:28.399 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:43:28.411 INFO [21239]: COREGRADE is stopping... -- 23:43:28.411 DEBUG [21239]: Closing database connection -- 23:43:28.411 SQL [21239]: pgsql_close() -- 23:43:28.422 INFO [21239]: COREGRADE is starting... -- 23:43:28.422 INFO [21239]: Version from config: 1.0 -- 23:43:28.422 DEBUG [21239]: Connecting to database... -- 23:43:28.422 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:43:28.422 SQL [21239]: pgsql_db_connect() -- 23:43:28.426 DEBUG [21239]: Database connection successful -- 23:43:28.426 INFO [21239]: _SERVER found -- 23:43:28.426 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 23:43:28.426 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 23:43:28.426 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4; _gat_gtag_UA_54829827_2=1 -- 23:43:28.426 INFO [21239]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:43:28.426 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:43:28.438 INFO [21239]: COREGRADE is stopping... -- 23:43:28.438 DEBUG [21239]: Closing database connection -- 23:43:28.438 SQL [21239]: pgsql_close() -- 23:43:29.865 INFO [21239]: COREGRADE is starting... -- 23:43:29.865 INFO [21239]: Version from config: 1.0 -- 23:43:29.865 DEBUG [21239]: Connecting to database... -- 23:43:29.865 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:43:29.865 SQL [21239]: pgsql_db_connect() -- 23:43:29.902 INFO [21239]: COREGRADE is starting... -- 23:43:29.903 INFO [21239]: Version from config: 1.0 -- 23:43:29.903 DEBUG [21239]: Connecting to database... -- 23:43:29.903 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:43:29.903 SQL [21239]: pgsql_db_connect() -- 23:43:29.907 DEBUG [21239]: Database connection successful -- 23:43:29.907 INFO [21239]: _SERVER found -- 23:43:29.907 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 23:43:29.907 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 23:43:29.907 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4; _gat_gtag_UA_54829827_2=1 -- 23:43:29.907 INFO [21239]: QUERY_STRING = -- 23:43:29.907 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:43:29.907 INFO [21239]: SystemStatus()09-09-********~************ -- 23:43:29.907 INFO [21239]: long coregrade_api_main(CVars in, CVars &out) -- 23:43:29.907 INFO [21239]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 23:43:29.907 INFO [21239]: account calls -- 23:43:29.907 INFO [21239]: account_calls() -- 23:43:29.907 INFO [21239]: LoginCoreGradeAccount() -- 23:43:29.907 FLOG_MAX [21239]: REQ_STRING(username) -- 23:43:29.907 FLOG_MAX [21239]: REQ_STRING(password) -- 23:43:29.907 FLOG_MAX [21239]: REQ_STRING(sessionid) -- 23:43:29.907 FLOG_MAX [21239]: long load_db_record( CVars &rec, const char * query, ... ) -- 23:43:29.907 SQL [21239]: pgsql_query() -- 23:43:29.907 SQL [21239]: About to run query: -- 23:43:29.907 SQL [21239]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 23:43:29.910 SQL [21239]: Found rows: 1 -- 23:43:29.910 FLOG_MAX [21239]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=16 -- 23:43:29.910 INFO [21239]: long SessionCheck(long uid, const char *sessionid, int create ) -- 23:43:29.910 SQL [21239]: pgsql_exec() -- 23:43:29.910 SQL [21239]: About to run query: -- 23:43:29.910 SQL [21239]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 23:43:29.911 SQL [21239]: PQcmdTuples: 0 -- 23:43:29.911 SQL [21239]: Affected rows: 0 -- 23:43:29.911 SQL [21239]: pgsql_exec() -- 23:43:29.911 SQL [21239]: About to run query: -- 23:43:29.911 SQL [21239]: DELETE FROM members_session WHERE member_id=7 -- 23:43:29.912 SQL [21239]: PQcmdTuples: 1 -- 23:43:29.912 SQL [21239]: Affected rows: 1 -- 23:43:29.912 SQL [21239]: pgsql_query() -- 23:43:29.912 SQL [21239]: About to run query: -- 23:43:29.912 SQL [21239]: SELECT * FROM members_session WHERE member_id=7 AND session<>'0FD688E925524A05FEA7A07FF58D97D0' -- 23:43:29.913 SQL [21239]: Found rows: 0 -- 23:43:29.913 SQL [21239]: Found rows: 0 -- 23:43:29.913 FLOG_MAX [21239]: long load_db_record( CVars &rec, const char * query, ... ) -- 23:43:29.913 SQL [21239]: pgsql_query() -- 23:43:29.913 SQL [21239]: About to run query: -- 23:43:29.913 SQL [21239]: SELECT * FROM members_session WHERE member_id=7 AND session='0FD688E925524A05FEA7A07FF58D97D0' -- 23:43:29.914 SQL [21239]: Found rows: 0 -- 23:43:29.914 SQL [21239]: Found rows: 0 -- 23:43:29.914 FLOG_MAX [21239]: insert_db_record() -- 23:43:29.914 SQL [21239]: pgsql_exec() -- 23:43:29.914 SQL [21239]: About to run query: -- 23:43:29.914 SQL [21239]: INSERT INTO members_session (member_id,session) VALUES ('7','0FD688E925524A05FEA7A07FF58D97D0') -- 23:43:29.915 SQL [21239]: PQcmdTuples: 1 -- 23:43:29.915 SQL [21239]: Affected rows: 1 -- 23:43:29.915 FLOG_MAX [21239]: SELECT currval('members_session_id_seq') -- 23:43:29.915 SQL [21239]: pgsql_query() -- 23:43:29.915 SQL [21239]: About to run query: -- 23:43:29.915 SQL [21239]: SELECT currval('members_session_id_seq') -- 23:43:29.916 SQL [21239]: Found rows: 1 -- 23:43:29.916 INFO [21239]: CreateDefaultPage() -- 23:43:29.916 FLOG_MAX [21239]: long load_db_record( CVars &rec, const char * query, ... ) -- 23:43:29.916 SQL [21239]: pgsql_query() -- 23:43:29.916 SQL [21239]: About to run query: -- 23:43:29.916 SQL [21239]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 23:43:29.916 SQL [21239]: Found rows: 1 -- 23:43:29.916 FLOG_MAX [21239]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 23:43:29.916 SQL [21239]: pgsql_query() -- 23:43:29.916 SQL [21239]: About to run query: -- 23:43:29.916 SQL [21239]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 23:43:29.917 SQL [21239]: Found rows: 1 -- 23:43:29.917 INFO [21239]: /CreateDefaultPage() -- 23:43:29.917 INFO [21239]: /LoginCoreGradeAccount() -- 23:43:29.917 INFO [21239]: RET: added=2020-02-05 09:42:12.816064 -- 23:43:29.917 INFO [21239]: RET: email=tokslaw@chiefsoft.com -- 23:43:29.917 INFO [21239]: RET: firstname=Tokunbo -- 23:43:29.917 INFO [21239]: RET: folder=5D06B187B1E2285A63AD1D0ECB670D98 -- 23:43:29.917 INFO [21239]: RET: id=7 -- 23:43:29.917 INFO [21239]: RET: last_login= -- 23:43:29.917 INFO [21239]: RET: lastname=Lawal -- 23:43:29.917 INFO [21239]: RET: loc=192.168.1.13 -- 23:43:29.917 INFO [21239]: RET: member_id=7 -- 23:43:29.917 INFO [21239]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 23:43:29.917 INFO [21239]: RET: phone= -- 23:43:29.917 INFO [21239]: RET: pid= -- 23:43:29.917 INFO [21239]: RET: result=YES I GET TO BACK END -- 23:43:29.917 INFO [21239]: RET: sessionid=0FD688E925524A05FEA7A07FF58D97D0 -- 23:43:29.917 INFO [21239]: RET: status=1 -- 23:43:29.917 INFO [21239]: RET: stauts=OK -- 23:43:29.917 INFO [21239]: RET: username=tokslaw@chiefsoft.com -- 23:43:29.917 INFO [21239]: RET: verified= -- 23:43:29.918 INFO [21239]: COREGRADE is stopping... -- 23:43:29.918 DEBUG [21239]: Closing database connection -- 23:43:29.918 SQL [21239]: pgsql_close() -- 23:43:29.869 DEBUG [21239]: Database connection successful -- 23:43:29.869 INFO [21239]: _SERVER found -- 23:43:29.869 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 23:43:29.869 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 23:43:29.869 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4; _gat_gtag_UA_54829827_2=1 -- 23:43:29.869 INFO [21239]: QUERY_STRING = /auth -- 23:43:29.869 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:43:29.919 INFO [21239]: COREGRADE is stopping... -- 23:43:29.919 DEBUG [21239]: Closing database connection -- 23:43:29.919 SQL [21239]: pgsql_close() -- 23:43:29.927 INFO [21239]: COREGRADE is starting... -- 23:43:29.928 INFO [21239]: Version from config: 1.0 -- 23:43:29.928 DEBUG [21239]: Connecting to database... -- 23:43:29.928 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:43:29.928 SQL [21239]: pgsql_db_connect() -- 23:43:29.932 DEBUG [21239]: Database connection successful -- 23:43:29.932 INFO [21239]: _SERVER found -- 23:43:29.932 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 23:43:29.932 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 23:43:29.932 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4; _gat_gtag_UA_54829827_2=1 -- 23:43:29.932 INFO [21239]: QUERY_STRING = /member/index -- 23:43:29.932 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:43:29.972 INFO [21239]: COREGRADE is stopping... -- 23:43:29.972 DEBUG [21239]: Closing database connection -- 23:43:29.972 SQL [21239]: pgsql_close() -- 23:43:30.235 INFO [21239]: COREGRADE is starting... -- 23:43:30.235 INFO [21239]: Version from config: 1.0 -- 23:43:30.235 DEBUG [21239]: Connecting to database... -- 23:43:30.235 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:43:30.235 SQL [21239]: pgsql_db_connect() -- 23:43:30.239 DEBUG [21239]: Database connection successful -- 23:43:30.239 INFO [21239]: _SERVER found -- 23:43:30.239 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 23:43:30.239 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 23:43:30.239 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4; _gat_gtag_UA_54829827_2=1 -- 23:43:30.239 INFO [21239]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:43:30.239 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:43:30.250 INFO [21239]: COREGRADE is stopping... -- 23:43:30.250 DEBUG [21239]: Closing database connection -- 23:43:30.250 SQL [21239]: pgsql_close() -- 23:43:30.345 INFO [21239]: COREGRADE is starting... -- 23:43:30.345 INFO [21239]: Version from config: 1.0 -- 23:43:30.345 DEBUG [21239]: Connecting to database... -- 23:43:30.345 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:43:30.345 SQL [21239]: pgsql_db_connect() -- 23:43:30.349 DEBUG [21239]: Database connection successful -- 23:43:30.349 INFO [21239]: _SERVER found -- 23:43:30.349 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 23:43:30.349 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 23:43:30.349 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4; _gat_gtag_UA_54829827_2=1 -- 23:43:30.349 INFO [21239]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:43:30.349 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:43:30.360 INFO [21239]: COREGRADE is stopping... -- 23:43:30.360 DEBUG [21239]: Closing database connection -- 23:43:30.360 SQL [21239]: pgsql_close() -- 23:43:32.318 INFO [21239]: COREGRADE is starting... -- 23:43:32.318 INFO [21239]: Version from config: 1.0 -- 23:43:32.318 DEBUG [21239]: Connecting to database... -- 23:43:32.318 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:43:32.318 SQL [21239]: pgsql_db_connect() -- 23:43:32.322 DEBUG [21239]: Database connection successful -- 23:43:32.322 INFO [21239]: _SERVER found -- 23:43:32.322 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 23:43:32.322 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 23:43:32.322 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4; _gat_gtag_UA_54829827_2=1 -- 23:43:32.322 INFO [21239]: QUERY_STRING = /member/configure -- 23:43:32.322 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:43:32.365 INFO [21239]: COREGRADE is stopping... -- 23:43:32.365 DEBUG [21239]: Closing database connection -- 23:43:32.365 SQL [21239]: pgsql_close() -- 23:43:32.640 INFO [21239]: COREGRADE is starting... -- 23:43:32.640 INFO [21239]: Version from config: 1.0 -- 23:43:32.640 DEBUG [21239]: Connecting to database... -- 23:43:32.640 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:43:32.640 SQL [21239]: pgsql_db_connect() -- 23:43:32.644 DEBUG [21239]: Database connection successful -- 23:43:32.645 INFO [21239]: _SERVER found -- 23:43:32.645 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 23:43:32.645 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 23:43:32.645 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4; _gat_gtag_UA_54829827_2=1 -- 23:43:32.645 INFO [21239]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 23:43:32.645 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:43:32.656 INFO [21239]: COREGRADE is stopping... -- 23:43:32.656 DEBUG [21239]: Closing database connection -- 23:43:32.656 SQL [21239]: pgsql_close() -- 23:43:32.793 INFO [21239]: COREGRADE is starting... -- 23:43:32.793 INFO [21239]: Version from config: 1.0 -- 23:43:32.793 DEBUG [21239]: Connecting to database... -- 23:43:32.793 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:43:32.793 SQL [21239]: pgsql_db_connect() -- 23:43:32.797 DEBUG [21239]: Database connection successful -- 23:43:32.797 INFO [21239]: _SERVER found -- 23:43:32.797 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 23:43:32.797 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 23:43:32.797 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4; _gat_gtag_UA_54829827_2=1 -- 23:43:32.797 INFO [21239]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:43:32.797 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:43:32.808 INFO [21239]: COREGRADE is stopping... -- 23:43:32.809 DEBUG [21239]: Closing database connection -- 23:43:32.809 SQL [21239]: pgsql_close() -- 23:43:33.613 INFO [21239]: COREGRADE is starting... -- 23:43:33.613 INFO [21239]: Version from config: 1.0 -- 23:43:33.613 DEBUG [21239]: Connecting to database... -- 23:43:33.613 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:43:33.613 SQL [21239]: pgsql_db_connect() -- 23:43:33.648 INFO [21239]: COREGRADE is starting... -- 23:43:33.648 INFO [21239]: Version from config: 1.0 -- 23:43:33.648 DEBUG [21239]: Connecting to database... -- 23:43:33.648 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:43:33.648 SQL [21239]: pgsql_db_connect() -- 23:43:33.652 DEBUG [21239]: Database connection successful -- 23:43:33.652 INFO [21239]: _SERVER found -- 23:43:33.652 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 23:43:33.652 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 23:43:33.652 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=4qbf13im6mhtiskvr8gnjofnn2pdh97e -- 23:43:33.652 INFO [21239]: QUERY_STRING = -- 23:43:33.652 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:43:33.653 INFO [21239]: SystemStatus()09-09-********~************ -- 23:43:33.653 INFO [21239]: long coregrade_api_main(CVars in, CVars &out) -- 23:43:33.653 INFO [21239]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 23:43:33.653 INFO [21239]: account calls -- 23:43:33.653 INFO [21239]: account_calls() -- 23:43:33.653 INFO [21239]: AddPageCard() -- 23:43:33.653 FLOG_MAX [21239]: REQ_STRING(title) -- 23:43:33.653 FLOG_MAX [21239]: REQ_STRING(item_type) -- 23:43:33.653 FLOG_MAX [21239]: REQ_STRING(sessionid) -- 23:43:33.653 FLOG_MAX [21239]: REQ_STRING(detail) -- 23:43:33.653 FLOG_MAX [21239]: Bad parameter exception: 'page_id' -- 23:43:33.653 INFO [21239]: /AddPageCard() -- 23:43:33.653 INFO [21239]: RET: result=YES I GET TO BACK END -- 23:43:33.653 INFO [21239]: RET: status=Invalid session ID -- 23:43:33.665 INFO [21239]: COREGRADE is stopping... -- 23:43:33.665 DEBUG [21239]: Closing database connection -- 23:43:33.665 SQL [21239]: pgsql_close() -- 23:43:33.617 DEBUG [21239]: Database connection successful -- 23:43:33.617 INFO [21239]: _SERVER found -- 23:43:33.617 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 23:43:33.617 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 23:43:33.617 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=4qbf13im6mhtiskvr8gnjofnn2pdh97e -- 23:43:33.617 INFO [21239]: QUERY_STRING = /member/upload -- 23:43:33.617 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:43:33.665 INFO [21239]: COREGRADE is stopping... -- 23:43:33.665 DEBUG [21239]: Closing database connection -- 23:43:33.665 SQL [21239]: pgsql_close() -- 23:43:34.833 INFO [21239]: COREGRADE is starting... -- 23:43:34.833 INFO [21239]: Version from config: 1.0 -- 23:43:34.833 DEBUG [21239]: Connecting to database... -- 23:43:34.833 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:43:34.833 SQL [21239]: pgsql_db_connect() -- 23:43:34.837 DEBUG [21239]: Database connection successful -- 23:43:34.837 INFO [21239]: _SERVER found -- 23:43:34.837 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 23:43:34.837 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 23:43:34.837 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4; _gat_gtag_UA_54829827_2=1 -- 23:43:34.837 INFO [21239]: QUERY_STRING = /member -- 23:43:34.837 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:43:34.877 INFO [21239]: COREGRADE is stopping... -- 23:43:34.877 DEBUG [21239]: Closing database connection -- 23:43:34.877 SQL [21239]: pgsql_close() -- 23:43:35.099 INFO [21239]: COREGRADE is starting... -- 23:43:35.099 INFO [21239]: Version from config: 1.0 -- 23:43:35.099 DEBUG [21239]: Connecting to database... -- 23:43:35.099 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:43:35.099 SQL [21239]: pgsql_db_connect() -- 23:43:35.103 DEBUG [21239]: Database connection successful -- 23:43:35.103 INFO [21239]: _SERVER found -- 23:43:35.103 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 23:43:35.103 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 23:43:35.103 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4; _gat_gtag_UA_54829827_2=1 -- 23:43:35.103 INFO [21239]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:43:35.103 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:43:35.114 INFO [21239]: COREGRADE is stopping... -- 23:43:35.114 DEBUG [21239]: Closing database connection -- 23:43:35.114 SQL [21239]: pgsql_close() -- 23:43:35.710 INFO [21239]: COREGRADE is starting... -- 23:43:35.710 INFO [21239]: Version from config: 1.0 -- 23:43:35.710 DEBUG [21239]: Connecting to database... -- 23:43:35.710 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:43:35.710 SQL [21239]: pgsql_db_connect() -- 23:43:35.722 INFO [21208]: COREGRADE is starting... -- 23:43:35.723 INFO [21208]: Version from config: 1.0 -- 23:43:35.723 DEBUG [21208]: Connecting to database... -- 23:43:35.723 DEBUG [21208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:43:35.723 SQL [21208]: pgsql_db_connect() -- 23:43:35.714 DEBUG [21239]: Database connection successful -- 23:43:35.714 INFO [21239]: _SERVER found -- 23:43:35.714 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 23:43:35.714 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 23:43:35.714 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4; _gat_gtag_UA_54829827_2=1 -- 23:43:35.714 INFO [21239]: QUERY_STRING = /member/page -- 23:43:35.714 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:43:35.756 INFO [21239]: COREGRADE is stopping... -- 23:43:35.756 DEBUG [21239]: Closing database connection -- 23:43:35.756 SQL [21239]: pgsql_close() -- 23:43:35.727 DEBUG [21208]: Database connection successful -- 23:43:35.727 INFO [21208]: _SERVER found -- 23:43:35.727 INFO [21208]: REMOTE_ADDR = 192.168.1.13 -- 23:43:35.727 INFO [21208]: SERVER_NAME = oameye.works.coregrade.com -- 23:43:35.727 INFO [21208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=4qbf13im6mhtiskvr8gnjofnn2pdh97e -- 23:43:35.727 INFO [21208]: QUERY_STRING = /member/page -- 23:43:35.727 INFO [21208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:43:35.770 INFO [21208]: COREGRADE is stopping... -- 23:43:35.770 DEBUG [21208]: Closing database connection -- 23:43:35.770 SQL [21208]: pgsql_close() -- 23:43:36.073 INFO [21208]: COREGRADE is starting... -- 23:43:36.073 INFO [21208]: Version from config: 1.0 -- 23:43:36.073 DEBUG [21208]: Connecting to database... -- 23:43:36.073 DEBUG [21208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:43:36.073 SQL [21208]: pgsql_db_connect() -- 23:43:36.077 DEBUG [21208]: Database connection successful -- 23:43:36.077 INFO [21208]: _SERVER found -- 23:43:36.077 INFO [21208]: REMOTE_ADDR = 192.168.1.13 -- 23:43:36.077 INFO [21208]: SERVER_NAME = oameye.works.coregrade.com -- 23:43:36.077 INFO [21208]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4; _gat_gtag_UA_54829827_2=1 -- 23:43:36.077 INFO [21208]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:43:36.077 INFO [21208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:43:36.089 INFO [21208]: COREGRADE is stopping... -- 23:43:36.089 DEBUG [21208]: Closing database connection -- 23:43:36.089 SQL [21208]: pgsql_close() -- 23:43:36.189 INFO [21208]: COREGRADE is starting... -- 23:43:36.189 INFO [21208]: Version from config: 1.0 -- 23:43:36.189 DEBUG [21208]: Connecting to database... -- 23:43:36.189 DEBUG [21208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:43:36.189 SQL [21208]: pgsql_db_connect() -- 23:43:36.193 DEBUG [21208]: Database connection successful -- 23:43:36.193 INFO [21208]: _SERVER found -- 23:43:36.193 INFO [21208]: REMOTE_ADDR = 192.168.1.13 -- 23:43:36.193 INFO [21208]: SERVER_NAME = oameye.works.coregrade.com -- 23:43:36.193 INFO [21208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=4qbf13im6mhtiskvr8gnjofnn2pdh97e -- 23:43:36.193 INFO [21208]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:43:36.193 INFO [21208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:43:36.204 INFO [21208]: COREGRADE is stopping... -- 23:43:36.204 DEBUG [21208]: Closing database connection -- 23:43:36.204 SQL [21208]: pgsql_close() -- 23:43:39.423 INFO [21208]: COREGRADE is starting... -- 23:43:39.423 INFO [21208]: Version from config: 1.0 -- 23:43:39.423 DEBUG [21208]: Connecting to database... -- 23:43:39.423 DEBUG [21208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:43:39.423 SQL [21208]: pgsql_db_connect() -- 23:43:39.427 DEBUG [21208]: Database connection successful -- 23:43:39.427 INFO [21208]: _SERVER found -- 23:43:39.427 INFO [21208]: REMOTE_ADDR = 192.168.1.13 -- 23:43:39.427 INFO [21208]: SERVER_NAME = oameye.works.coregrade.com -- 23:43:39.427 INFO [21208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=4qbf13im6mhtiskvr8gnjofnn2pdh97e -- 23:43:39.427 INFO [21208]: QUERY_STRING = /member/viewCardAddAction -- 23:43:39.427 INFO [21208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:43:39.458 INFO [21208]: COREGRADE is stopping... -- 23:43:39.458 DEBUG [21208]: Closing database connection -- 23:43:39.458 SQL [21208]: pgsql_close() -- 23:43:40.582 INFO [21208]: COREGRADE is starting... -- 23:43:40.582 INFO [21208]: Version from config: 1.0 -- 23:43:40.582 DEBUG [21208]: Connecting to database... -- 23:43:40.582 DEBUG [21208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:43:40.582 SQL [21208]: pgsql_db_connect() -- 23:43:40.586 DEBUG [21208]: Database connection successful -- 23:43:40.586 INFO [21208]: _SERVER found -- 23:43:40.586 INFO [21208]: REMOTE_ADDR = 192.168.1.13 -- 23:43:40.586 INFO [21208]: SERVER_NAME = oameye.works.coregrade.com -- 23:43:40.586 INFO [21208]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4; _gat_gtag_UA_54829827_2=1 -- 23:43:40.586 INFO [21208]: QUERY_STRING = /member/viewCardAddAction -- 23:43:40.586 INFO [21208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:43:40.617 INFO [21208]: COREGRADE is stopping... -- 23:43:40.617 DEBUG [21208]: Closing database connection -- 23:43:40.617 SQL [21208]: pgsql_close() -- 23:43:51.720 INFO [21215]: COREGRADE is starting... -- 23:43:51.720 INFO [21215]: Version from config: 1.0 -- 23:43:51.720 DEBUG [21215]: Connecting to database... -- 23:43:51.720 DEBUG [21215]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:43:51.720 SQL [21215]: pgsql_db_connect() -- 23:43:51.758 INFO [21215]: COREGRADE is starting... -- 23:43:51.758 INFO [21215]: Version from config: 1.0 -- 23:43:51.758 DEBUG [21215]: Connecting to database... -- 23:43:51.758 DEBUG [21215]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:43:51.758 SQL [21215]: pgsql_db_connect() -- 23:43:51.762 DEBUG [21215]: Database connection successful -- 23:43:51.762 INFO [21215]: _SERVER found -- 23:43:51.762 INFO [21215]: REMOTE_ADDR = 192.168.1.13 -- 23:43:51.762 INFO [21215]: SERVER_NAME = oameye.works.coregrade.com -- 23:43:51.762 INFO [21215]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=4qbf13im6mhtiskvr8gnjofnn2pdh97e -- 23:43:51.762 INFO [21215]: QUERY_STRING = -- 23:43:51.762 INFO [21215]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:43:51.762 INFO [21215]: SystemStatus()09-09-********~************ -- 23:43:51.762 INFO [21215]: long coregrade_api_main(CVars in, CVars &out) -- 23:43:51.762 INFO [21215]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 23:43:51.762 INFO [21215]: account calls -- 23:43:51.762 INFO [21215]: account_calls() -- 23:43:51.762 INFO [21215]: AddPageCard() -- 23:43:51.762 FLOG_MAX [21215]: REQ_STRING(title) -- 23:43:51.763 FLOG_MAX [21215]: REQ_STRING(item_type) -- 23:43:51.763 FLOG_MAX [21215]: REQ_STRING(sessionid) -- 23:43:51.763 FLOG_MAX [21215]: REQ_STRING(detail) -- 23:43:51.763 FLOG_MAX [21215]: Bad parameter exception: 'page_id' -- 23:43:51.763 INFO [21215]: /AddPageCard() -- 23:43:51.763 INFO [21215]: RET: result=YES I GET TO BACK END -- 23:43:51.763 INFO [21215]: RET: status=Invalid session ID -- 23:43:51.773 INFO [21215]: COREGRADE is stopping... -- 23:43:51.773 DEBUG [21215]: Closing database connection -- 23:43:51.773 SQL [21215]: pgsql_close() -- 23:43:51.724 DEBUG [21215]: Database connection successful -- 23:43:51.724 INFO [21215]: _SERVER found -- 23:43:51.724 INFO [21215]: REMOTE_ADDR = 192.168.1.13 -- 23:43:51.724 INFO [21215]: SERVER_NAME = oameye.works.coregrade.com -- 23:43:51.724 INFO [21215]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=4qbf13im6mhtiskvr8gnjofnn2pdh97e -- 23:43:51.724 INFO [21215]: QUERY_STRING = /member/upload -- 23:43:51.724 INFO [21215]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:43:51.773 INFO [21215]: COREGRADE is stopping... -- 23:43:51.773 DEBUG [21215]: Closing database connection -- 23:43:51.773 SQL [21215]: pgsql_close() -- 23:44:30.630 INFO [21306]: COREGRADE is starting... -- 23:44:30.630 INFO [21306]: Version from config: 1.0 -- 23:44:30.630 DEBUG [21306]: Connecting to database... -- 23:44:30.630 DEBUG [21306]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:30.631 SQL [21306]: pgsql_db_connect() -- 23:44:30.635 DEBUG [21306]: Database connection successful -- 23:44:30.635 INFO [21306]: _SERVER found -- 23:44:30.635 INFO [21306]: REMOTE_ADDR = 192.168.1.13 -- 23:44:30.635 INFO [21306]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:30.635 INFO [21306]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4 -- 23:44:30.635 INFO [21306]: QUERY_STRING = /member/page -- 23:44:30.635 INFO [21306]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:30.685 INFO [21306]: COREGRADE is stopping... -- 23:44:30.685 DEBUG [21306]: Closing database connection -- 23:44:30.685 SQL [21306]: pgsql_close() -- 23:44:31.481 INFO [21239]: COREGRADE is starting... -- 23:44:31.481 INFO [21239]: Version from config: 1.0 -- 23:44:31.481 DEBUG [21239]: Connecting to database... -- 23:44:31.481 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:31.481 SQL [21239]: pgsql_db_connect() -- 23:44:31.485 DEBUG [21239]: Database connection successful -- 23:44:31.485 INFO [21239]: _SERVER found -- 23:44:31.485 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 23:44:31.485 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:31.485 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4 -- 23:44:31.485 INFO [21239]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:44:31.485 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:31.497 INFO [21239]: COREGRADE is stopping... -- 23:44:31.497 DEBUG [21239]: Closing database connection -- 23:44:31.497 SQL [21239]: pgsql_close() -- 23:44:33.417 INFO [21210]: COREGRADE is starting... -- 23:44:33.418 INFO [21210]: Version from config: 1.0 -- 23:44:33.418 DEBUG [21210]: Connecting to database... -- 23:44:33.418 DEBUG [21210]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:33.418 SQL [21210]: pgsql_db_connect() -- 23:44:33.458 INFO [21210]: COREGRADE is starting... -- 23:44:33.458 INFO [21210]: Version from config: 1.0 -- 23:44:33.458 DEBUG [21210]: Connecting to database... -- 23:44:33.458 DEBUG [21210]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:33.458 SQL [21210]: pgsql_db_connect() -- 23:44:33.462 DEBUG [21210]: Database connection successful -- 23:44:33.462 INFO [21210]: _SERVER found -- 23:44:33.462 INFO [21210]: REMOTE_ADDR = 192.168.1.13 -- 23:44:33.462 INFO [21210]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:33.462 INFO [21210]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=4qbf13im6mhtiskvr8gnjofnn2pdh97e -- 23:44:33.462 INFO [21210]: QUERY_STRING = -- 23:44:33.462 INFO [21210]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:33.462 INFO [21210]: SystemStatus()09-09-********~************ -- 23:44:33.462 INFO [21210]: long coregrade_api_main(CVars in, CVars &out) -- 23:44:33.462 INFO [21210]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 23:44:33.462 INFO [21210]: account calls -- 23:44:33.462 INFO [21210]: account_calls() -- 23:44:33.462 INFO [21210]: AddPageCard() -- 23:44:33.462 FLOG_MAX [21210]: REQ_STRING(title) -- 23:44:33.462 FLOG_MAX [21210]: REQ_STRING(item_type) -- 23:44:33.462 FLOG_MAX [21210]: REQ_STRING(sessionid) -- 23:44:33.462 FLOG_MAX [21210]: REQ_STRING(detail) -- 23:44:33.462 FLOG_MAX [21210]: Bad parameter exception: 'page_id' -- 23:44:33.463 INFO [21210]: /AddPageCard() -- 23:44:33.463 INFO [21210]: RET: result=YES I GET TO BACK END -- 23:44:33.463 INFO [21210]: RET: status=Invalid session ID -- 23:44:33.473 INFO [21210]: COREGRADE is stopping... -- 23:44:33.473 DEBUG [21210]: Closing database connection -- 23:44:33.473 SQL [21210]: pgsql_close() -- 23:44:33.422 DEBUG [21210]: Database connection successful -- 23:44:33.422 INFO [21210]: _SERVER found -- 23:44:33.422 INFO [21210]: REMOTE_ADDR = 192.168.1.13 -- 23:44:33.422 INFO [21210]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:33.422 INFO [21210]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=4qbf13im6mhtiskvr8gnjofnn2pdh97e -- 23:44:33.422 INFO [21210]: QUERY_STRING = /member/upload -- 23:44:33.422 INFO [21210]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:33.473 INFO [21210]: COREGRADE is stopping... -- 23:44:33.473 DEBUG [21210]: Closing database connection -- 23:44:33.473 SQL [21210]: pgsql_close() -- 23:44:33.474 INFO [21239]: COREGRADE is starting... -- 23:44:33.474 INFO [21239]: Version from config: 1.0 -- 23:44:33.474 DEBUG [21239]: Connecting to database... -- 23:44:33.474 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:33.474 SQL [21239]: pgsql_db_connect() -- 23:44:33.478 DEBUG [21239]: Database connection successful -- 23:44:33.478 INFO [21239]: _SERVER found -- 23:44:33.478 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 23:44:33.478 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:33.478 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4 -- 23:44:33.478 INFO [21239]: QUERY_STRING = /member/viewCardAddAction -- 23:44:33.478 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:33.509 INFO [21239]: COREGRADE is stopping... -- 23:44:33.509 DEBUG [21239]: Closing database connection -- 23:44:33.509 SQL [21239]: pgsql_close() -- 23:44:35.677 INFO [21210]: COREGRADE is starting... -- 23:44:35.678 INFO [21210]: Version from config: 1.0 -- 23:44:35.678 DEBUG [21210]: Connecting to database... -- 23:44:35.678 DEBUG [21210]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:35.678 SQL [21210]: pgsql_db_connect() -- 23:44:35.682 DEBUG [21210]: Database connection successful -- 23:44:35.682 INFO [21210]: _SERVER found -- 23:44:35.682 INFO [21210]: REMOTE_ADDR = 192.168.1.13 -- 23:44:35.682 INFO [21210]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:35.682 INFO [21210]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=4qbf13im6mhtiskvr8gnjofnn2pdh97e -- 23:44:35.682 INFO [21210]: QUERY_STRING = /member/page -- 23:44:35.682 INFO [21210]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:35.724 INFO [21210]: COREGRADE is stopping... -- 23:44:35.724 DEBUG [21210]: Closing database connection -- 23:44:35.724 SQL [21210]: pgsql_close() -- 23:44:36.125 INFO [21210]: COREGRADE is starting... -- 23:44:36.125 INFO [21210]: Version from config: 1.0 -- 23:44:36.125 DEBUG [21210]: Connecting to database... -- 23:44:36.125 DEBUG [21210]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:36.125 SQL [21210]: pgsql_db_connect() -- 23:44:36.130 DEBUG [21210]: Database connection successful -- 23:44:36.130 INFO [21210]: _SERVER found -- 23:44:36.130 INFO [21210]: REMOTE_ADDR = 192.168.1.13 -- 23:44:36.130 INFO [21210]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:36.130 INFO [21210]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=4qbf13im6mhtiskvr8gnjofnn2pdh97e -- 23:44:36.130 INFO [21210]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:44:36.130 INFO [21210]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:36.141 INFO [21210]: COREGRADE is stopping... -- 23:44:36.141 DEBUG [21210]: Closing database connection -- 23:44:36.141 SQL [21210]: pgsql_close() -- 23:44:38.906 INFO [21210]: COREGRADE is starting... -- 23:44:38.906 INFO [21210]: Version from config: 1.0 -- 23:44:38.906 DEBUG [21210]: Connecting to database... -- 23:44:38.906 DEBUG [21210]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:38.906 SQL [21210]: pgsql_db_connect() -- 23:44:38.910 DEBUG [21210]: Database connection successful -- 23:44:38.910 INFO [21210]: _SERVER found -- 23:44:38.910 INFO [21210]: REMOTE_ADDR = 192.168.1.13 -- 23:44:38.910 INFO [21210]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:38.910 INFO [21210]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=4qbf13im6mhtiskvr8gnjofnn2pdh97e -- 23:44:38.910 INFO [21210]: QUERY_STRING = /member/viewCardAddAction -- 23:44:38.910 INFO [21210]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:38.941 INFO [21210]: COREGRADE is stopping... -- 23:44:38.941 DEBUG [21210]: Closing database connection -- 23:44:38.941 SQL [21210]: pgsql_close() -- 23:44:41.456 INFO [21210]: COREGRADE is starting... -- 23:44:41.456 INFO [21210]: Version from config: 1.0 -- 23:44:41.456 DEBUG [21210]: Connecting to database... -- 23:44:41.456 DEBUG [21210]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:41.456 SQL [21210]: pgsql_db_connect() -- 23:44:41.461 DEBUG [21210]: Database connection successful -- 23:44:41.461 INFO [21210]: _SERVER found -- 23:44:41.461 INFO [21210]: REMOTE_ADDR = 192.168.1.13 -- 23:44:41.461 INFO [21210]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:41.461 INFO [21210]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=4qbf13im6mhtiskvr8gnjofnn2pdh97e -- 23:44:41.461 INFO [21210]: QUERY_STRING = /member/page -- 23:44:41.461 INFO [21210]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:41.502 INFO [21210]: COREGRADE is stopping... -- 23:44:41.502 DEBUG [21210]: Closing database connection -- 23:44:41.502 SQL [21210]: pgsql_close() -- 23:44:42.278 INFO [21215]: COREGRADE is starting... -- 23:44:42.278 INFO [21215]: Version from config: 1.0 -- 23:44:42.278 DEBUG [21215]: Connecting to database... -- 23:44:42.278 DEBUG [21215]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:42.278 SQL [21215]: pgsql_db_connect() -- 23:44:42.314 INFO [21215]: COREGRADE is starting... -- 23:44:42.314 INFO [21215]: Version from config: 1.0 -- 23:44:42.314 DEBUG [21215]: Connecting to database... -- 23:44:42.314 DEBUG [21215]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:42.314 SQL [21215]: pgsql_db_connect() -- 23:44:42.318 DEBUG [21215]: Database connection successful -- 23:44:42.318 INFO [21215]: _SERVER found -- 23:44:42.318 INFO [21215]: REMOTE_ADDR = 192.168.1.13 -- 23:44:42.318 INFO [21215]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:42.318 INFO [21215]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4 -- 23:44:42.318 INFO [21215]: QUERY_STRING = -- 23:44:42.318 INFO [21215]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:42.318 INFO [21215]: SystemStatus()09-09-********~************ -- 23:44:42.318 INFO [21215]: long coregrade_api_main(CVars in, CVars &out) -- 23:44:42.318 INFO [21215]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 23:44:42.318 INFO [21215]: account calls -- 23:44:42.318 INFO [21215]: account_calls() -- 23:44:42.318 INFO [21215]: AddPageCard() -- 23:44:42.318 FLOG_MAX [21215]: REQ_STRING(title) -- 23:44:42.318 FLOG_MAX [21215]: REQ_STRING(item_type) -- 23:44:42.318 FLOG_MAX [21215]: REQ_STRING(sessionid) -- 23:44:42.318 FLOG_MAX [21215]: REQ_STRING(detail) -- 23:44:42.318 FLOG_MAX [21215]: insert_db_record() -- 23:44:42.318 SQL [21215]: pgsql_exec() -- 23:44:42.319 SQL [21215]: About to run query: -- 23:44:42.319 SQL [21215]: INSERT INTO members_page_item (detail,item_type,member_id,page_id,title) VALUES ('hjakn lKjmv, SGx','NOTECARD','7','5','test') -- 23:44:42.350 SQL [21215]: PQcmdTuples: 1 -- 23:44:42.350 SQL [21215]: Affected rows: 1 -- 23:44:42.350 FLOG_MAX [21215]: SELECT currval('members_page_item_id_seq') -- 23:44:42.350 SQL [21215]: pgsql_query() -- 23:44:42.350 SQL [21215]: About to run query: -- 23:44:42.350 SQL [21215]: SELECT currval('members_page_item_id_seq') -- 23:44:42.350 SQL [21215]: Found rows: 1 -- 23:44:42.350 INFO [21215]: /AddPageCard() -- 23:44:42.350 INFO [21215]: RET: page_item_id=11 -- 23:44:42.350 INFO [21215]: RET: result=YES I GET TO BACK END -- 23:44:42.351 INFO [21215]: COREGRADE is stopping... -- 23:44:42.351 DEBUG [21215]: Closing database connection -- 23:44:42.351 SQL [21215]: pgsql_close() -- 23:44:42.283 DEBUG [21215]: Database connection successful -- 23:44:42.283 INFO [21215]: _SERVER found -- 23:44:42.283 INFO [21215]: REMOTE_ADDR = 192.168.1.13 -- 23:44:42.283 INFO [21215]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:42.283 INFO [21215]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4 -- 23:44:42.283 INFO [21215]: QUERY_STRING = /member/addNotecard -- 23:44:42.283 INFO [21215]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:42.351 INFO [21215]: COREGRADE is stopping... -- 23:44:42.351 DEBUG [21215]: Closing database connection -- 23:44:42.351 SQL [21215]: pgsql_close() -- 23:44:44.733 INFO [21215]: COREGRADE is starting... -- 23:44:44.733 INFO [21215]: Version from config: 1.0 -- 23:44:44.733 DEBUG [21215]: Connecting to database... -- 23:44:44.733 DEBUG [21215]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:44.733 SQL [21215]: pgsql_db_connect() -- 23:44:44.768 INFO [21215]: COREGRADE is starting... -- 23:44:44.769 INFO [21215]: Version from config: 1.0 -- 23:44:44.769 DEBUG [21215]: Connecting to database... -- 23:44:44.769 DEBUG [21215]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:44.769 SQL [21215]: pgsql_db_connect() -- 23:44:44.773 DEBUG [21215]: Database connection successful -- 23:44:44.773 INFO [21215]: _SERVER found -- 23:44:44.773 INFO [21215]: REMOTE_ADDR = 192.168.1.13 -- 23:44:44.773 INFO [21215]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:44.773 INFO [21215]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4 -- 23:44:44.773 INFO [21215]: QUERY_STRING = -- 23:44:44.773 INFO [21215]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:44.773 INFO [21215]: SystemStatus()09-09-********~************ -- 23:44:44.773 INFO [21215]: long coregrade_api_main(CVars in, CVars &out) -- 23:44:44.773 INFO [21215]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 23:44:44.773 INFO [21215]: account calls -- 23:44:44.773 INFO [21215]: account_calls() -- 23:44:44.773 INFO [21215]: AddPageCard() -- 23:44:44.773 FLOG_MAX [21215]: REQ_STRING(title) -- 23:44:44.773 FLOG_MAX [21215]: REQ_STRING(item_type) -- 23:44:44.773 FLOG_MAX [21215]: REQ_STRING(sessionid) -- 23:44:44.773 FLOG_MAX [21215]: REQ_STRING(detail) -- 23:44:44.773 FLOG_MAX [21215]: insert_db_record() -- 23:44:44.773 SQL [21215]: pgsql_exec() -- 23:44:44.773 SQL [21215]: About to run query: -- 23:44:44.773 SQL [21215]: INSERT INTO members_page_item (detail,item_type,member_id,page_id,title) VALUES ('hjakn lKjmv, SGx','NOTECARD','7','5','test') -- 23:44:44.778 SQL [21215]: PQcmdTuples: 1 -- 23:44:44.778 SQL [21215]: Affected rows: 1 -- 23:44:44.778 FLOG_MAX [21215]: SELECT currval('members_page_item_id_seq') -- 23:44:44.778 SQL [21215]: pgsql_query() -- 23:44:44.778 SQL [21215]: About to run query: -- 23:44:44.778 SQL [21215]: SELECT currval('members_page_item_id_seq') -- 23:44:44.778 SQL [21215]: Found rows: 1 -- 23:44:44.778 INFO [21215]: /AddPageCard() -- 23:44:44.778 INFO [21215]: RET: page_item_id=12 -- 23:44:44.778 INFO [21215]: RET: result=YES I GET TO BACK END -- 23:44:44.778 INFO [21215]: COREGRADE is stopping... -- 23:44:44.778 DEBUG [21215]: Closing database connection -- 23:44:44.778 SQL [21215]: pgsql_close() -- 23:44:44.738 DEBUG [21215]: Database connection successful -- 23:44:44.738 INFO [21215]: _SERVER found -- 23:44:44.738 INFO [21215]: REMOTE_ADDR = 192.168.1.13 -- 23:44:44.738 INFO [21215]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:44.738 INFO [21215]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4 -- 23:44:44.738 INFO [21215]: QUERY_STRING = /member/addNotecard -- 23:44:44.738 INFO [21215]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:44.779 INFO [21215]: COREGRADE is stopping... -- 23:44:44.779 DEBUG [21215]: Closing database connection -- 23:44:44.779 SQL [21215]: pgsql_close() -- 23:44:45.670 INFO [21215]: COREGRADE is starting... -- 23:44:45.670 INFO [21215]: Version from config: 1.0 -- 23:44:45.670 DEBUG [21215]: Connecting to database... -- 23:44:45.670 DEBUG [21215]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:45.670 SQL [21215]: pgsql_db_connect() -- 23:44:45.705 INFO [21215]: COREGRADE is starting... -- 23:44:45.706 INFO [21215]: Version from config: 1.0 -- 23:44:45.706 DEBUG [21215]: Connecting to database... -- 23:44:45.706 DEBUG [21215]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:45.706 SQL [21215]: pgsql_db_connect() -- 23:44:45.710 DEBUG [21215]: Database connection successful -- 23:44:45.710 INFO [21215]: _SERVER found -- 23:44:45.710 INFO [21215]: REMOTE_ADDR = 192.168.1.13 -- 23:44:45.710 INFO [21215]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:45.710 INFO [21215]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4 -- 23:44:45.710 INFO [21215]: QUERY_STRING = -- 23:44:45.710 INFO [21215]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:45.710 INFO [21215]: SystemStatus()09-09-********~************ -- 23:44:45.710 INFO [21215]: long coregrade_api_main(CVars in, CVars &out) -- 23:44:45.710 INFO [21215]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 23:44:45.710 INFO [21215]: account calls -- 23:44:45.710 INFO [21215]: account_calls() -- 23:44:45.710 INFO [21215]: AddPageCard() -- 23:44:45.710 FLOG_MAX [21215]: REQ_STRING(title) -- 23:44:45.710 FLOG_MAX [21215]: REQ_STRING(item_type) -- 23:44:45.710 FLOG_MAX [21215]: REQ_STRING(sessionid) -- 23:44:45.710 FLOG_MAX [21215]: REQ_STRING(detail) -- 23:44:45.710 FLOG_MAX [21215]: insert_db_record() -- 23:44:45.710 SQL [21215]: pgsql_exec() -- 23:44:45.710 SQL [21215]: About to run query: -- 23:44:45.710 SQL [21215]: INSERT INTO members_page_item (detail,item_type,member_id,page_id,title) VALUES ('hjakn lKjmv, SGx','NOTECARD','7','5','test') -- 23:44:45.714 SQL [21215]: PQcmdTuples: 1 -- 23:44:45.714 SQL [21215]: Affected rows: 1 -- 23:44:45.714 FLOG_MAX [21215]: SELECT currval('members_page_item_id_seq') -- 23:44:45.714 SQL [21215]: pgsql_query() -- 23:44:45.714 SQL [21215]: About to run query: -- 23:44:45.715 SQL [21215]: SELECT currval('members_page_item_id_seq') -- 23:44:45.715 SQL [21215]: Found rows: 1 -- 23:44:45.715 INFO [21215]: /AddPageCard() -- 23:44:45.715 INFO [21215]: RET: page_item_id=13 -- 23:44:45.715 INFO [21215]: RET: result=YES I GET TO BACK END -- 23:44:45.715 INFO [21215]: COREGRADE is stopping... -- 23:44:45.715 DEBUG [21215]: Closing database connection -- 23:44:45.715 SQL [21215]: pgsql_close() -- 23:44:45.674 DEBUG [21215]: Database connection successful -- 23:44:45.675 INFO [21215]: _SERVER found -- 23:44:45.675 INFO [21215]: REMOTE_ADDR = 192.168.1.13 -- 23:44:45.675 INFO [21215]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:45.675 INFO [21215]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4 -- 23:44:45.675 INFO [21215]: QUERY_STRING = /member/addNotecard -- 23:44:45.675 INFO [21215]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:45.716 INFO [21215]: COREGRADE is stopping... -- 23:44:45.716 DEBUG [21215]: Closing database connection -- 23:44:45.716 SQL [21215]: pgsql_close() -- 23:44:46.264 INFO [21215]: COREGRADE is starting... -- 23:44:46.265 INFO [21215]: Version from config: 1.0 -- 23:44:46.265 DEBUG [21215]: Connecting to database... -- 23:44:46.265 DEBUG [21215]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:46.265 SQL [21215]: pgsql_db_connect() -- 23:44:46.300 INFO [21215]: COREGRADE is starting... -- 23:44:46.300 INFO [21215]: Version from config: 1.0 -- 23:44:46.300 DEBUG [21215]: Connecting to database... -- 23:44:46.300 DEBUG [21215]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:46.300 SQL [21215]: pgsql_db_connect() -- 23:44:46.304 DEBUG [21215]: Database connection successful -- 23:44:46.304 INFO [21215]: _SERVER found -- 23:44:46.304 INFO [21215]: REMOTE_ADDR = 192.168.1.13 -- 23:44:46.304 INFO [21215]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:46.304 INFO [21215]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4 -- 23:44:46.304 INFO [21215]: QUERY_STRING = -- 23:44:46.304 INFO [21215]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:46.304 INFO [21215]: SystemStatus()09-09-********~************ -- 23:44:46.304 INFO [21215]: long coregrade_api_main(CVars in, CVars &out) -- 23:44:46.304 INFO [21215]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 23:44:46.304 INFO [21215]: account calls -- 23:44:46.304 INFO [21215]: account_calls() -- 23:44:46.304 INFO [21215]: AddPageCard() -- 23:44:46.304 FLOG_MAX [21215]: REQ_STRING(title) -- 23:44:46.304 FLOG_MAX [21215]: REQ_STRING(item_type) -- 23:44:46.304 FLOG_MAX [21215]: REQ_STRING(sessionid) -- 23:44:46.304 FLOG_MAX [21215]: REQ_STRING(detail) -- 23:44:46.304 FLOG_MAX [21215]: insert_db_record() -- 23:44:46.304 SQL [21215]: pgsql_exec() -- 23:44:46.304 SQL [21215]: About to run query: -- 23:44:46.304 SQL [21215]: INSERT INTO members_page_item (detail,item_type,member_id,page_id,title) VALUES ('hjakn lKjmv, SGx','NOTECARD','7','5','test') -- 23:44:46.309 SQL [21215]: PQcmdTuples: 1 -- 23:44:46.309 SQL [21215]: Affected rows: 1 -- 23:44:46.309 FLOG_MAX [21215]: SELECT currval('members_page_item_id_seq') -- 23:44:46.309 SQL [21215]: pgsql_query() -- 23:44:46.309 SQL [21215]: About to run query: -- 23:44:46.309 SQL [21215]: SELECT currval('members_page_item_id_seq') -- 23:44:46.309 SQL [21215]: Found rows: 1 -- 23:44:46.309 INFO [21215]: /AddPageCard() -- 23:44:46.309 INFO [21215]: RET: page_item_id=14 -- 23:44:46.309 INFO [21215]: RET: result=YES I GET TO BACK END -- 23:44:46.310 INFO [21215]: COREGRADE is stopping... -- 23:44:46.310 DEBUG [21215]: Closing database connection -- 23:44:46.310 SQL [21215]: pgsql_close() -- 23:44:46.269 DEBUG [21215]: Database connection successful -- 23:44:46.269 INFO [21215]: _SERVER found -- 23:44:46.269 INFO [21215]: REMOTE_ADDR = 192.168.1.13 -- 23:44:46.269 INFO [21215]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:46.269 INFO [21215]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4 -- 23:44:46.269 INFO [21215]: QUERY_STRING = /member/addNotecard -- 23:44:46.269 INFO [21215]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:46.310 INFO [21215]: COREGRADE is stopping... -- 23:44:46.310 DEBUG [21215]: Closing database connection -- 23:44:46.310 SQL [21215]: pgsql_close() -- 23:44:46.699 INFO [21215]: COREGRADE is starting... -- 23:44:46.699 INFO [21215]: Version from config: 1.0 -- 23:44:46.699 DEBUG [21215]: Connecting to database... -- 23:44:46.699 DEBUG [21215]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:46.699 SQL [21215]: pgsql_db_connect() -- 23:44:46.734 INFO [21215]: COREGRADE is starting... -- 23:44:46.734 INFO [21215]: Version from config: 1.0 -- 23:44:46.734 DEBUG [21215]: Connecting to database... -- 23:44:46.734 DEBUG [21215]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:46.734 SQL [21215]: pgsql_db_connect() -- 23:44:46.738 DEBUG [21215]: Database connection successful -- 23:44:46.738 INFO [21215]: _SERVER found -- 23:44:46.738 INFO [21215]: REMOTE_ADDR = 192.168.1.13 -- 23:44:46.738 INFO [21215]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:46.738 INFO [21215]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4 -- 23:44:46.738 INFO [21215]: QUERY_STRING = -- 23:44:46.738 INFO [21215]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:46.738 INFO [21215]: SystemStatus()09-09-********~************ -- 23:44:46.738 INFO [21215]: long coregrade_api_main(CVars in, CVars &out) -- 23:44:46.738 INFO [21215]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 23:44:46.738 INFO [21215]: account calls -- 23:44:46.738 INFO [21215]: account_calls() -- 23:44:46.738 INFO [21215]: AddPageCard() -- 23:44:46.738 FLOG_MAX [21215]: REQ_STRING(title) -- 23:44:46.738 FLOG_MAX [21215]: REQ_STRING(item_type) -- 23:44:46.738 FLOG_MAX [21215]: REQ_STRING(sessionid) -- 23:44:46.738 FLOG_MAX [21215]: REQ_STRING(detail) -- 23:44:46.738 FLOG_MAX [21215]: insert_db_record() -- 23:44:46.738 SQL [21215]: pgsql_exec() -- 23:44:46.738 SQL [21215]: About to run query: -- 23:44:46.738 SQL [21215]: INSERT INTO members_page_item (detail,item_type,member_id,page_id,title) VALUES ('hjakn lKjmv, SGx','NOTECARD','7','5','test') -- 23:44:46.743 SQL [21215]: PQcmdTuples: 1 -- 23:44:46.743 SQL [21215]: Affected rows: 1 -- 23:44:46.743 FLOG_MAX [21215]: SELECT currval('members_page_item_id_seq') -- 23:44:46.743 SQL [21215]: pgsql_query() -- 23:44:46.743 SQL [21215]: About to run query: -- 23:44:46.743 SQL [21215]: SELECT currval('members_page_item_id_seq') -- 23:44:46.743 SQL [21215]: Found rows: 1 -- 23:44:46.743 INFO [21215]: /AddPageCard() -- 23:44:46.743 INFO [21215]: RET: page_item_id=15 -- 23:44:46.743 INFO [21215]: RET: result=YES I GET TO BACK END -- 23:44:46.743 INFO [21215]: COREGRADE is stopping... -- 23:44:46.743 DEBUG [21215]: Closing database connection -- 23:44:46.743 SQL [21215]: pgsql_close() -- 23:44:46.703 DEBUG [21215]: Database connection successful -- 23:44:46.703 INFO [21215]: _SERVER found -- 23:44:46.703 INFO [21215]: REMOTE_ADDR = 192.168.1.13 -- 23:44:46.703 INFO [21215]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:46.703 INFO [21215]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4 -- 23:44:46.703 INFO [21215]: QUERY_STRING = /member/addNotecard -- 23:44:46.703 INFO [21215]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:46.744 INFO [21215]: COREGRADE is stopping... -- 23:44:46.744 DEBUG [21215]: Closing database connection -- 23:44:46.744 SQL [21215]: pgsql_close() -- 23:44:46.884 INFO [21215]: COREGRADE is starting... -- 23:44:46.884 INFO [21215]: Version from config: 1.0 -- 23:44:46.884 DEBUG [21215]: Connecting to database... -- 23:44:46.884 DEBUG [21215]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:46.884 SQL [21215]: pgsql_db_connect() -- 23:44:46.919 INFO [21215]: COREGRADE is starting... -- 23:44:46.919 INFO [21215]: Version from config: 1.0 -- 23:44:46.919 DEBUG [21215]: Connecting to database... -- 23:44:46.919 DEBUG [21215]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:46.919 SQL [21215]: pgsql_db_connect() -- 23:44:46.923 DEBUG [21215]: Database connection successful -- 23:44:46.923 INFO [21215]: _SERVER found -- 23:44:46.923 INFO [21215]: REMOTE_ADDR = 192.168.1.13 -- 23:44:46.923 INFO [21215]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:46.923 INFO [21215]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4 -- 23:44:46.923 INFO [21215]: QUERY_STRING = -- 23:44:46.923 INFO [21215]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:46.923 INFO [21215]: SystemStatus()09-09-********~************ -- 23:44:46.923 INFO [21215]: long coregrade_api_main(CVars in, CVars &out) -- 23:44:46.923 INFO [21215]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 23:44:46.923 INFO [21215]: account calls -- 23:44:46.923 INFO [21215]: account_calls() -- 23:44:46.923 INFO [21215]: AddPageCard() -- 23:44:46.923 FLOG_MAX [21215]: REQ_STRING(title) -- 23:44:46.923 FLOG_MAX [21215]: REQ_STRING(item_type) -- 23:44:46.923 FLOG_MAX [21215]: REQ_STRING(sessionid) -- 23:44:46.923 FLOG_MAX [21215]: REQ_STRING(detail) -- 23:44:46.923 FLOG_MAX [21215]: insert_db_record() -- 23:44:46.923 SQL [21215]: pgsql_exec() -- 23:44:46.923 SQL [21215]: About to run query: -- 23:44:46.923 SQL [21215]: INSERT INTO members_page_item (detail,item_type,member_id,page_id,title) VALUES ('hjakn lKjmv, SGx','NOTECARD','7','5','test') -- 23:44:46.928 SQL [21215]: PQcmdTuples: 1 -- 23:44:46.928 SQL [21215]: Affected rows: 1 -- 23:44:46.928 FLOG_MAX [21215]: SELECT currval('members_page_item_id_seq') -- 23:44:46.928 SQL [21215]: pgsql_query() -- 23:44:46.928 SQL [21215]: About to run query: -- 23:44:46.928 SQL [21215]: SELECT currval('members_page_item_id_seq') -- 23:44:46.928 SQL [21215]: Found rows: 1 -- 23:44:46.928 INFO [21215]: /AddPageCard() -- 23:44:46.928 INFO [21215]: RET: page_item_id=16 -- 23:44:46.928 INFO [21215]: RET: result=YES I GET TO BACK END -- 23:44:46.929 INFO [21215]: COREGRADE is stopping... -- 23:44:46.929 DEBUG [21215]: Closing database connection -- 23:44:46.929 SQL [21215]: pgsql_close() -- 23:44:46.888 DEBUG [21215]: Database connection successful -- 23:44:46.888 INFO [21215]: _SERVER found -- 23:44:46.888 INFO [21215]: REMOTE_ADDR = 192.168.1.13 -- 23:44:46.888 INFO [21215]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:46.888 INFO [21215]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4 -- 23:44:46.888 INFO [21215]: QUERY_STRING = /member/addNotecard -- 23:44:46.888 INFO [21215]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:46.929 INFO [21215]: COREGRADE is stopping... -- 23:44:46.929 DEBUG [21215]: Closing database connection -- 23:44:46.929 SQL [21215]: pgsql_close() -- 23:44:51.469 INFO [21215]: COREGRADE is starting... -- 23:44:51.470 INFO [21215]: Version from config: 1.0 -- 23:44:51.470 DEBUG [21215]: Connecting to database... -- 23:44:51.470 DEBUG [21215]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:51.470 SQL [21215]: pgsql_db_connect() -- 23:44:51.505 INFO [21215]: COREGRADE is starting... -- 23:44:51.505 INFO [21215]: Version from config: 1.0 -- 23:44:51.505 DEBUG [21215]: Connecting to database... -- 23:44:51.505 DEBUG [21215]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:51.505 SQL [21215]: pgsql_db_connect() -- 23:44:51.509 DEBUG [21215]: Database connection successful -- 23:44:51.509 INFO [21215]: _SERVER found -- 23:44:51.509 INFO [21215]: REMOTE_ADDR = 192.168.1.13 -- 23:44:51.509 INFO [21215]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:51.509 INFO [21215]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4 -- 23:44:51.509 INFO [21215]: QUERY_STRING = -- 23:44:51.509 INFO [21215]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:51.509 INFO [21215]: SystemStatus()09-09-********~************ -- 23:44:51.509 INFO [21215]: long coregrade_api_main(CVars in, CVars &out) -- 23:44:51.509 INFO [21215]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 23:44:51.509 INFO [21215]: account calls -- 23:44:51.509 INFO [21215]: account_calls() -- 23:44:51.509 INFO [21215]: AddPageCard() -- 23:44:51.509 FLOG_MAX [21215]: REQ_STRING(title) -- 23:44:51.509 FLOG_MAX [21215]: REQ_STRING(item_type) -- 23:44:51.509 FLOG_MAX [21215]: REQ_STRING(sessionid) -- 23:44:51.509 FLOG_MAX [21215]: REQ_STRING(detail) -- 23:44:51.509 FLOG_MAX [21215]: insert_db_record() -- 23:44:51.509 SQL [21215]: pgsql_exec() -- 23:44:51.509 SQL [21215]: About to run query: -- 23:44:51.509 SQL [21215]: INSERT INTO members_page_item (detail,item_type,member_id,page_id,title) VALUES ('hjakn lKjmv, SGx','NOTECARD','7','5','test') -- 23:44:51.514 SQL [21215]: PQcmdTuples: 1 -- 23:44:51.514 SQL [21215]: Affected rows: 1 -- 23:44:51.514 FLOG_MAX [21215]: SELECT currval('members_page_item_id_seq') -- 23:44:51.514 SQL [21215]: pgsql_query() -- 23:44:51.514 SQL [21215]: About to run query: -- 23:44:51.514 SQL [21215]: SELECT currval('members_page_item_id_seq') -- 23:44:51.515 SQL [21215]: Found rows: 1 -- 23:44:51.515 INFO [21215]: /AddPageCard() -- 23:44:51.515 INFO [21215]: RET: page_item_id=17 -- 23:44:51.515 INFO [21215]: RET: result=YES I GET TO BACK END -- 23:44:51.515 INFO [21215]: COREGRADE is stopping... -- 23:44:51.515 DEBUG [21215]: Closing database connection -- 23:44:51.515 SQL [21215]: pgsql_close() -- 23:44:51.474 DEBUG [21215]: Database connection successful -- 23:44:51.474 INFO [21215]: _SERVER found -- 23:44:51.474 INFO [21215]: REMOTE_ADDR = 192.168.1.13 -- 23:44:51.474 INFO [21215]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:51.474 INFO [21215]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4 -- 23:44:51.474 INFO [21215]: QUERY_STRING = /member/addNotecard -- 23:44:51.474 INFO [21215]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:51.515 INFO [21215]: COREGRADE is stopping... -- 23:44:51.515 DEBUG [21215]: Closing database connection -- 23:44:51.515 SQL [21215]: pgsql_close() -- 23:44:51.658 INFO [21215]: COREGRADE is starting... -- 23:44:51.658 INFO [21215]: Version from config: 1.0 -- 23:44:51.658 DEBUG [21215]: Connecting to database... -- 23:44:51.658 DEBUG [21215]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:51.658 SQL [21215]: pgsql_db_connect() -- 23:44:51.693 INFO [21215]: COREGRADE is starting... -- 23:44:51.693 INFO [21215]: Version from config: 1.0 -- 23:44:51.693 DEBUG [21215]: Connecting to database... -- 23:44:51.693 DEBUG [21215]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:51.693 SQL [21215]: pgsql_db_connect() -- 23:44:51.697 DEBUG [21215]: Database connection successful -- 23:44:51.697 INFO [21215]: _SERVER found -- 23:44:51.697 INFO [21215]: REMOTE_ADDR = 192.168.1.13 -- 23:44:51.697 INFO [21215]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:51.697 INFO [21215]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4 -- 23:44:51.697 INFO [21215]: QUERY_STRING = -- 23:44:51.697 INFO [21215]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:51.697 INFO [21215]: SystemStatus()09-09-********~************ -- 23:44:51.697 INFO [21215]: long coregrade_api_main(CVars in, CVars &out) -- 23:44:51.697 INFO [21215]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 23:44:51.697 INFO [21215]: account calls -- 23:44:51.697 INFO [21215]: account_calls() -- 23:44:51.697 INFO [21215]: AddPageCard() -- 23:44:51.697 FLOG_MAX [21215]: REQ_STRING(title) -- 23:44:51.697 FLOG_MAX [21215]: REQ_STRING(item_type) -- 23:44:51.697 FLOG_MAX [21215]: REQ_STRING(sessionid) -- 23:44:51.697 FLOG_MAX [21215]: REQ_STRING(detail) -- 23:44:51.698 FLOG_MAX [21215]: insert_db_record() -- 23:44:51.698 SQL [21215]: pgsql_exec() -- 23:44:51.698 SQL [21215]: About to run query: -- 23:44:51.698 SQL [21215]: INSERT INTO members_page_item (detail,item_type,member_id,page_id,title) VALUES ('hjakn lKjmv, SGx','NOTECARD','7','5','test') -- 23:44:51.702 SQL [21215]: PQcmdTuples: 1 -- 23:44:51.702 SQL [21215]: Affected rows: 1 -- 23:44:51.702 FLOG_MAX [21215]: SELECT currval('members_page_item_id_seq') -- 23:44:51.702 SQL [21215]: pgsql_query() -- 23:44:51.702 SQL [21215]: About to run query: -- 23:44:51.702 SQL [21215]: SELECT currval('members_page_item_id_seq') -- 23:44:51.702 SQL [21215]: Found rows: 1 -- 23:44:51.702 INFO [21215]: /AddPageCard() -- 23:44:51.702 INFO [21215]: RET: page_item_id=18 -- 23:44:51.702 INFO [21215]: RET: result=YES I GET TO BACK END -- 23:44:51.703 INFO [21215]: COREGRADE is stopping... -- 23:44:51.703 DEBUG [21215]: Closing database connection -- 23:44:51.703 SQL [21215]: pgsql_close() -- 23:44:51.662 DEBUG [21215]: Database connection successful -- 23:44:51.662 INFO [21215]: _SERVER found -- 23:44:51.662 INFO [21215]: REMOTE_ADDR = 192.168.1.13 -- 23:44:51.662 INFO [21215]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:51.662 INFO [21215]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4 -- 23:44:51.662 INFO [21215]: QUERY_STRING = /member/addNotecard -- 23:44:51.662 INFO [21215]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:51.703 INFO [21215]: COREGRADE is stopping... -- 23:44:51.703 DEBUG [21215]: Closing database connection -- 23:44:51.703 SQL [21215]: pgsql_close() -- 23:44:52.148 INFO [21215]: COREGRADE is starting... -- 23:44:52.148 INFO [21215]: Version from config: 1.0 -- 23:44:52.148 DEBUG [21215]: Connecting to database... -- 23:44:52.148 DEBUG [21215]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:52.148 SQL [21215]: pgsql_db_connect() -- 23:44:52.183 INFO [21215]: COREGRADE is starting... -- 23:44:52.183 INFO [21215]: Version from config: 1.0 -- 23:44:52.183 DEBUG [21215]: Connecting to database... -- 23:44:52.183 DEBUG [21215]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:52.183 SQL [21215]: pgsql_db_connect() -- 23:44:52.187 DEBUG [21215]: Database connection successful -- 23:44:52.187 INFO [21215]: _SERVER found -- 23:44:52.187 INFO [21215]: REMOTE_ADDR = 192.168.1.13 -- 23:44:52.187 INFO [21215]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:52.187 INFO [21215]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4 -- 23:44:52.187 INFO [21215]: QUERY_STRING = -- 23:44:52.187 INFO [21215]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:52.187 INFO [21215]: SystemStatus()09-09-********~************ -- 23:44:52.187 INFO [21215]: long coregrade_api_main(CVars in, CVars &out) -- 23:44:52.187 INFO [21215]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 23:44:52.187 INFO [21215]: account calls -- 23:44:52.187 INFO [21215]: account_calls() -- 23:44:52.187 INFO [21215]: AddPageCard() -- 23:44:52.187 FLOG_MAX [21215]: REQ_STRING(title) -- 23:44:52.187 FLOG_MAX [21215]: REQ_STRING(item_type) -- 23:44:52.187 FLOG_MAX [21215]: REQ_STRING(sessionid) -- 23:44:52.187 FLOG_MAX [21215]: REQ_STRING(detail) -- 23:44:52.187 FLOG_MAX [21215]: insert_db_record() -- 23:44:52.187 SQL [21215]: pgsql_exec() -- 23:44:52.187 SQL [21215]: About to run query: -- 23:44:52.187 SQL [21215]: INSERT INTO members_page_item (detail,item_type,member_id,page_id,title) VALUES ('hjakn lKjmv, SGx','NOTECARD','7','5','test') -- 23:44:52.192 SQL [21215]: PQcmdTuples: 1 -- 23:44:52.192 SQL [21215]: Affected rows: 1 -- 23:44:52.192 FLOG_MAX [21215]: SELECT currval('members_page_item_id_seq') -- 23:44:52.192 SQL [21215]: pgsql_query() -- 23:44:52.192 SQL [21215]: About to run query: -- 23:44:52.192 SQL [21215]: SELECT currval('members_page_item_id_seq') -- 23:44:52.192 SQL [21215]: Found rows: 1 -- 23:44:52.192 INFO [21215]: /AddPageCard() -- 23:44:52.192 INFO [21215]: RET: page_item_id=19 -- 23:44:52.192 INFO [21215]: RET: result=YES I GET TO BACK END -- 23:44:52.192 INFO [21215]: COREGRADE is stopping... -- 23:44:52.193 DEBUG [21215]: Closing database connection -- 23:44:52.193 SQL [21215]: pgsql_close() -- 23:44:52.152 DEBUG [21215]: Database connection successful -- 23:44:52.152 INFO [21215]: _SERVER found -- 23:44:52.152 INFO [21215]: REMOTE_ADDR = 192.168.1.13 -- 23:44:52.152 INFO [21215]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:52.152 INFO [21215]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4 -- 23:44:52.152 INFO [21215]: QUERY_STRING = /member/addNotecard -- 23:44:52.152 INFO [21215]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:52.193 INFO [21215]: COREGRADE is stopping... -- 23:44:52.193 DEBUG [21215]: Closing database connection -- 23:44:52.193 SQL [21215]: pgsql_close() -- 23:44:52.463 INFO [21215]: COREGRADE is starting... -- 23:44:52.464 INFO [21215]: Version from config: 1.0 -- 23:44:52.464 DEBUG [21215]: Connecting to database... -- 23:44:52.464 DEBUG [21215]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:52.464 SQL [21215]: pgsql_db_connect() -- 23:44:52.498 INFO [21215]: COREGRADE is starting... -- 23:44:52.499 INFO [21215]: Version from config: 1.0 -- 23:44:52.499 DEBUG [21215]: Connecting to database... -- 23:44:52.499 DEBUG [21215]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:52.499 SQL [21215]: pgsql_db_connect() -- 23:44:52.503 DEBUG [21215]: Database connection successful -- 23:44:52.503 INFO [21215]: _SERVER found -- 23:44:52.503 INFO [21215]: REMOTE_ADDR = 192.168.1.13 -- 23:44:52.503 INFO [21215]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:52.503 INFO [21215]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4 -- 23:44:52.503 INFO [21215]: QUERY_STRING = -- 23:44:52.503 INFO [21215]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:52.503 INFO [21215]: SystemStatus()09-09-********~************ -- 23:44:52.503 INFO [21215]: long coregrade_api_main(CVars in, CVars &out) -- 23:44:52.503 INFO [21215]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 23:44:52.503 INFO [21215]: account calls -- 23:44:52.503 INFO [21215]: account_calls() -- 23:44:52.503 INFO [21215]: AddPageCard() -- 23:44:52.503 FLOG_MAX [21215]: REQ_STRING(title) -- 23:44:52.503 FLOG_MAX [21215]: REQ_STRING(item_type) -- 23:44:52.503 FLOG_MAX [21215]: REQ_STRING(sessionid) -- 23:44:52.503 FLOG_MAX [21215]: REQ_STRING(detail) -- 23:44:52.503 FLOG_MAX [21215]: insert_db_record() -- 23:44:52.503 SQL [21215]: pgsql_exec() -- 23:44:52.503 SQL [21215]: About to run query: -- 23:44:52.503 SQL [21215]: INSERT INTO members_page_item (detail,item_type,member_id,page_id,title) VALUES ('hjakn lKjmv, SGx','NOTECARD','7','5','test') -- 23:44:52.507 SQL [21215]: PQcmdTuples: 1 -- 23:44:52.507 SQL [21215]: Affected rows: 1 -- 23:44:52.507 FLOG_MAX [21215]: SELECT currval('members_page_item_id_seq') -- 23:44:52.507 SQL [21215]: pgsql_query() -- 23:44:52.507 SQL [21215]: About to run query: -- 23:44:52.507 SQL [21215]: SELECT currval('members_page_item_id_seq') -- 23:44:52.508 SQL [21215]: Found rows: 1 -- 23:44:52.508 INFO [21215]: /AddPageCard() -- 23:44:52.508 INFO [21215]: RET: page_item_id=20 -- 23:44:52.508 INFO [21215]: RET: result=YES I GET TO BACK END -- 23:44:52.508 INFO [21215]: COREGRADE is stopping... -- 23:44:52.508 DEBUG [21215]: Closing database connection -- 23:44:52.508 SQL [21215]: pgsql_close() -- 23:44:52.468 DEBUG [21215]: Database connection successful -- 23:44:52.468 INFO [21215]: _SERVER found -- 23:44:52.468 INFO [21215]: REMOTE_ADDR = 192.168.1.13 -- 23:44:52.468 INFO [21215]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:52.468 INFO [21215]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4 -- 23:44:52.468 INFO [21215]: QUERY_STRING = /member/addNotecard -- 23:44:52.468 INFO [21215]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:52.508 INFO [21215]: COREGRADE is stopping... -- 23:44:52.508 DEBUG [21215]: Closing database connection -- 23:44:52.508 SQL [21215]: pgsql_close() -- 23:44:53.134 INFO [21215]: COREGRADE is starting... -- 23:44:53.134 INFO [21215]: Version from config: 1.0 -- 23:44:53.134 DEBUG [21215]: Connecting to database... -- 23:44:53.134 DEBUG [21215]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:53.134 SQL [21215]: pgsql_db_connect() -- 23:44:53.169 INFO [21215]: COREGRADE is starting... -- 23:44:53.169 INFO [21215]: Version from config: 1.0 -- 23:44:53.169 DEBUG [21215]: Connecting to database... -- 23:44:53.170 DEBUG [21215]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:53.170 SQL [21215]: pgsql_db_connect() -- 23:44:53.174 DEBUG [21215]: Database connection successful -- 23:44:53.174 INFO [21215]: _SERVER found -- 23:44:53.174 INFO [21215]: REMOTE_ADDR = 192.168.1.13 -- 23:44:53.174 INFO [21215]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:53.174 INFO [21215]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4 -- 23:44:53.174 INFO [21215]: QUERY_STRING = -- 23:44:53.174 INFO [21215]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:53.174 INFO [21215]: SystemStatus()09-09-********~************ -- 23:44:53.174 INFO [21215]: long coregrade_api_main(CVars in, CVars &out) -- 23:44:53.174 INFO [21215]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 23:44:53.174 INFO [21215]: account calls -- 23:44:53.174 INFO [21215]: account_calls() -- 23:44:53.174 INFO [21215]: AddPageCard() -- 23:44:53.174 FLOG_MAX [21215]: REQ_STRING(title) -- 23:44:53.174 FLOG_MAX [21215]: REQ_STRING(item_type) -- 23:44:53.174 FLOG_MAX [21215]: REQ_STRING(sessionid) -- 23:44:53.174 FLOG_MAX [21215]: REQ_STRING(detail) -- 23:44:53.174 FLOG_MAX [21215]: insert_db_record() -- 23:44:53.174 SQL [21215]: pgsql_exec() -- 23:44:53.174 SQL [21215]: About to run query: -- 23:44:53.174 SQL [21215]: INSERT INTO members_page_item (detail,item_type,member_id,page_id,title) VALUES ('hjakn lKjmv, SGx','NOTECARD','7','5','test') -- 23:44:53.178 SQL [21215]: PQcmdTuples: 1 -- 23:44:53.178 SQL [21215]: Affected rows: 1 -- 23:44:53.178 FLOG_MAX [21215]: SELECT currval('members_page_item_id_seq') -- 23:44:53.178 SQL [21215]: pgsql_query() -- 23:44:53.178 SQL [21215]: About to run query: -- 23:44:53.178 SQL [21215]: SELECT currval('members_page_item_id_seq') -- 23:44:53.179 SQL [21215]: Found rows: 1 -- 23:44:53.179 INFO [21215]: /AddPageCard() -- 23:44:53.179 INFO [21215]: RET: page_item_id=21 -- 23:44:53.179 INFO [21215]: RET: result=YES I GET TO BACK END -- 23:44:53.179 INFO [21215]: COREGRADE is stopping... -- 23:44:53.179 DEBUG [21215]: Closing database connection -- 23:44:53.179 SQL [21215]: pgsql_close() -- 23:44:53.138 DEBUG [21215]: Database connection successful -- 23:44:53.138 INFO [21215]: _SERVER found -- 23:44:53.138 INFO [21215]: REMOTE_ADDR = 192.168.1.13 -- 23:44:53.138 INFO [21215]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:53.138 INFO [21215]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4 -- 23:44:53.138 INFO [21215]: QUERY_STRING = /member/addNotecard -- 23:44:53.138 INFO [21215]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:53.179 INFO [21215]: COREGRADE is stopping... -- 23:44:53.179 DEBUG [21215]: Closing database connection -- 23:44:53.179 SQL [21215]: pgsql_close() -- 23:44:53.654 INFO [21215]: COREGRADE is starting... -- 23:44:53.654 INFO [21215]: Version from config: 1.0 -- 23:44:53.654 DEBUG [21215]: Connecting to database... -- 23:44:53.654 DEBUG [21215]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:53.654 SQL [21215]: pgsql_db_connect() -- 23:44:53.689 INFO [21215]: COREGRADE is starting... -- 23:44:53.689 INFO [21215]: Version from config: 1.0 -- 23:44:53.689 DEBUG [21215]: Connecting to database... -- 23:44:53.689 DEBUG [21215]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:53.689 SQL [21215]: pgsql_db_connect() -- 23:44:53.693 DEBUG [21215]: Database connection successful -- 23:44:53.693 INFO [21215]: _SERVER found -- 23:44:53.693 INFO [21215]: REMOTE_ADDR = 192.168.1.13 -- 23:44:53.693 INFO [21215]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:53.693 INFO [21215]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4 -- 23:44:53.693 INFO [21215]: QUERY_STRING = -- 23:44:53.693 INFO [21215]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:53.693 INFO [21215]: SystemStatus()09-09-********~************ -- 23:44:53.693 INFO [21215]: long coregrade_api_main(CVars in, CVars &out) -- 23:44:53.693 INFO [21215]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 23:44:53.693 INFO [21215]: account calls -- 23:44:53.693 INFO [21215]: account_calls() -- 23:44:53.693 INFO [21215]: AddPageCard() -- 23:44:53.693 FLOG_MAX [21215]: REQ_STRING(title) -- 23:44:53.693 FLOG_MAX [21215]: REQ_STRING(item_type) -- 23:44:53.693 FLOG_MAX [21215]: REQ_STRING(sessionid) -- 23:44:53.693 FLOG_MAX [21215]: REQ_STRING(detail) -- 23:44:53.694 FLOG_MAX [21215]: insert_db_record() -- 23:44:53.694 SQL [21215]: pgsql_exec() -- 23:44:53.694 SQL [21215]: About to run query: -- 23:44:53.694 SQL [21215]: INSERT INTO members_page_item (detail,item_type,member_id,page_id,title) VALUES ('hjakn lKjmv, SGx','NOTECARD','7','5','test') -- 23:44:53.698 SQL [21215]: PQcmdTuples: 1 -- 23:44:53.698 SQL [21215]: Affected rows: 1 -- 23:44:53.698 FLOG_MAX [21215]: SELECT currval('members_page_item_id_seq') -- 23:44:53.698 SQL [21215]: pgsql_query() -- 23:44:53.698 SQL [21215]: About to run query: -- 23:44:53.698 SQL [21215]: SELECT currval('members_page_item_id_seq') -- 23:44:53.699 SQL [21215]: Found rows: 1 -- 23:44:53.699 INFO [21215]: /AddPageCard() -- 23:44:53.699 INFO [21215]: RET: page_item_id=22 -- 23:44:53.699 INFO [21215]: RET: result=YES I GET TO BACK END -- 23:44:53.699 INFO [21215]: COREGRADE is stopping... -- 23:44:53.699 DEBUG [21215]: Closing database connection -- 23:44:53.699 SQL [21215]: pgsql_close() -- 23:44:53.658 DEBUG [21215]: Database connection successful -- 23:44:53.658 INFO [21215]: _SERVER found -- 23:44:53.658 INFO [21215]: REMOTE_ADDR = 192.168.1.13 -- 23:44:53.658 INFO [21215]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:53.658 INFO [21215]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4 -- 23:44:53.658 INFO [21215]: QUERY_STRING = /member/addNotecard -- 23:44:53.658 INFO [21215]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:53.699 INFO [21215]: COREGRADE is stopping... -- 23:44:53.699 DEBUG [21215]: Closing database connection -- 23:44:53.699 SQL [21215]: pgsql_close() -- 23:44:53.840 INFO [21215]: COREGRADE is starting... -- 23:44:53.840 INFO [21215]: Version from config: 1.0 -- 23:44:53.840 DEBUG [21215]: Connecting to database... -- 23:44:53.840 DEBUG [21215]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:53.840 SQL [21215]: pgsql_db_connect() -- 23:44:53.875 INFO [21215]: COREGRADE is starting... -- 23:44:53.875 INFO [21215]: Version from config: 1.0 -- 23:44:53.875 DEBUG [21215]: Connecting to database... -- 23:44:53.875 DEBUG [21215]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:53.875 SQL [21215]: pgsql_db_connect() -- 23:44:53.879 DEBUG [21215]: Database connection successful -- 23:44:53.879 INFO [21215]: _SERVER found -- 23:44:53.879 INFO [21215]: REMOTE_ADDR = 192.168.1.13 -- 23:44:53.879 INFO [21215]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:53.879 INFO [21215]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4 -- 23:44:53.879 INFO [21215]: QUERY_STRING = -- 23:44:53.879 INFO [21215]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:53.879 INFO [21215]: SystemStatus()09-09-********~************ -- 23:44:53.879 INFO [21215]: long coregrade_api_main(CVars in, CVars &out) -- 23:44:53.879 INFO [21215]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 23:44:53.879 INFO [21215]: account calls -- 23:44:53.879 INFO [21215]: account_calls() -- 23:44:53.879 INFO [21215]: AddPageCard() -- 23:44:53.879 FLOG_MAX [21215]: REQ_STRING(title) -- 23:44:53.879 FLOG_MAX [21215]: REQ_STRING(item_type) -- 23:44:53.879 FLOG_MAX [21215]: REQ_STRING(sessionid) -- 23:44:53.879 FLOG_MAX [21215]: REQ_STRING(detail) -- 23:44:53.879 FLOG_MAX [21215]: insert_db_record() -- 23:44:53.879 SQL [21215]: pgsql_exec() -- 23:44:53.880 SQL [21215]: About to run query: -- 23:44:53.880 SQL [21215]: INSERT INTO members_page_item (detail,item_type,member_id,page_id,title) VALUES ('hjakn lKjmv, SGx','NOTECARD','7','5','test') -- 23:44:53.884 SQL [21215]: PQcmdTuples: 1 -- 23:44:53.884 SQL [21215]: Affected rows: 1 -- 23:44:53.884 FLOG_MAX [21215]: SELECT currval('members_page_item_id_seq') -- 23:44:53.884 SQL [21215]: pgsql_query() -- 23:44:53.884 SQL [21215]: About to run query: -- 23:44:53.884 SQL [21215]: SELECT currval('members_page_item_id_seq') -- 23:44:53.884 SQL [21215]: Found rows: 1 -- 23:44:53.884 INFO [21215]: /AddPageCard() -- 23:44:53.884 INFO [21215]: RET: page_item_id=23 -- 23:44:53.884 INFO [21215]: RET: result=YES I GET TO BACK END -- 23:44:53.885 INFO [21215]: COREGRADE is stopping... -- 23:44:53.885 DEBUG [21215]: Closing database connection -- 23:44:53.885 SQL [21215]: pgsql_close() -- 23:44:53.844 DEBUG [21215]: Database connection successful -- 23:44:53.844 INFO [21215]: _SERVER found -- 23:44:53.844 INFO [21215]: REMOTE_ADDR = 192.168.1.13 -- 23:44:53.844 INFO [21215]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:53.844 INFO [21215]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4 -- 23:44:53.844 INFO [21215]: QUERY_STRING = /member/addNotecard -- 23:44:53.844 INFO [21215]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:44:53.885 INFO [21215]: COREGRADE is stopping... -- 23:44:53.885 DEBUG [21215]: Closing database connection -- 23:44:53.885 SQL [21215]: pgsql_close() -- 23:45:01.690 INFO [21206]: COREGRADE is starting... -- 23:45:01.690 INFO [21206]: Version from config: 1.0 -- 23:45:01.690 DEBUG [21206]: Connecting to database... -- 23:45:01.690 DEBUG [21206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:45:01.690 SQL [21206]: pgsql_db_connect() -- 23:45:01.695 DEBUG [21206]: Database connection successful -- 23:45:01.695 INFO [21206]: _SERVER found -- 23:45:01.695 INFO [21206]: REMOTE_ADDR = 192.168.1.13 -- 23:45:01.695 INFO [21206]: SERVER_NAME = oameye.works.coregrade.com -- 23:45:01.695 INFO [21206]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4 -- 23:45:01.695 INFO [21206]: QUERY_STRING = /member/page -- 23:45:01.695 INFO [21206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:45:01.740 INFO [21206]: COREGRADE is stopping... -- 23:45:01.740 DEBUG [21206]: Closing database connection -- 23:45:01.740 SQL [21206]: pgsql_close() -- 23:45:02.241 INFO [21206]: COREGRADE is starting... -- 23:45:02.241 INFO [21206]: Version from config: 1.0 -- 23:45:02.241 DEBUG [21206]: Connecting to database... -- 23:45:02.242 DEBUG [21206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:45:02.242 SQL [21206]: pgsql_db_connect() -- 23:45:02.246 DEBUG [21206]: Database connection successful -- 23:45:02.246 INFO [21206]: _SERVER found -- 23:45:02.246 INFO [21206]: REMOTE_ADDR = 192.168.1.13 -- 23:45:02.246 INFO [21206]: SERVER_NAME = oameye.works.coregrade.com -- 23:45:02.246 INFO [21206]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4 -- 23:45:02.246 INFO [21206]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:45:02.246 INFO [21206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:45:02.257 INFO [21206]: COREGRADE is stopping... -- 23:45:02.257 DEBUG [21206]: Closing database connection -- 23:45:02.257 SQL [21206]: pgsql_close() -- 23:45:59.165 INFO [21306]: COREGRADE is starting... -- 23:45:59.165 INFO [21306]: Version from config: 1.0 -- 23:45:59.165 DEBUG [21306]: Connecting to database... -- 23:45:59.165 DEBUG [21306]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:45:59.165 SQL [21306]: pgsql_db_connect() -- 23:45:59.169 DEBUG [21306]: Database connection successful -- 23:45:59.169 INFO [21306]: _SERVER found -- 23:45:59.169 INFO [21306]: REMOTE_ADDR = 192.168.1.13 -- 23:45:59.169 INFO [21306]: SERVER_NAME = oameye.works.coregrade.com -- 23:45:59.169 INFO [21306]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4 -- 23:45:59.169 INFO [21306]: QUERY_STRING = /member/page -- 23:45:59.169 INFO [21306]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:45:59.215 INFO [21306]: COREGRADE is stopping... -- 23:45:59.215 DEBUG [21306]: Closing database connection -- 23:45:59.215 SQL [21306]: pgsql_close() -- 23:45:59.760 INFO [21239]: COREGRADE is starting... -- 23:45:59.761 INFO [21239]: Version from config: 1.0 -- 23:45:59.761 DEBUG [21239]: Connecting to database... -- 23:45:59.761 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:45:59.761 SQL [21239]: pgsql_db_connect() -- 23:45:59.765 DEBUG [21239]: Database connection successful -- 23:45:59.765 INFO [21239]: _SERVER found -- 23:45:59.765 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 23:45:59.765 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 23:45:59.765 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.959144218.1582251278; ci_session=h49df16rggqbjd26mdp4tqk0243u69u4 -- 23:45:59.765 INFO [21239]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:45:59.765 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:45:59.776 INFO [21239]: COREGRADE is stopping... -- 23:45:59.776 DEBUG [21239]: Closing database connection -- 23:45:59.776 SQL [21239]: pgsql_close() -- 23:46:11.510 INFO [21208]: COREGRADE is starting... -- 23:46:11.511 INFO [21208]: Version from config: 1.0 -- 23:46:11.511 DEBUG [21208]: Connecting to database... -- 23:46:11.511 DEBUG [21208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:46:11.511 SQL [21208]: pgsql_db_connect() -- 23:46:11.547 INFO [21208]: COREGRADE is starting... -- 23:46:11.547 INFO [21208]: Version from config: 1.0 -- 23:46:11.547 DEBUG [21208]: Connecting to database... -- 23:46:11.547 DEBUG [21208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:46:11.547 SQL [21208]: pgsql_db_connect() -- 23:46:11.551 DEBUG [21208]: Database connection successful -- 23:46:11.551 INFO [21208]: _SERVER found -- 23:46:11.551 INFO [21208]: REMOTE_ADDR = 192.168.1.13 -- 23:46:11.551 INFO [21208]: SERVER_NAME = oameye.works.coregrade.com -- 23:46:11.551 INFO [21208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=4qbf13im6mhtiskvr8gnjofnn2pdh97e -- 23:46:11.551 INFO [21208]: QUERY_STRING = -- 23:46:11.551 INFO [21208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:46:11.551 INFO [21208]: SystemStatus()09-09-********~************ -- 23:46:11.551 INFO [21208]: long coregrade_api_main(CVars in, CVars &out) -- 23:46:11.551 INFO [21208]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 23:46:11.551 INFO [21208]: account calls -- 23:46:11.551 INFO [21208]: account_calls() -- 23:46:11.551 INFO [21208]: AddPageCard() -- 23:46:11.551 FLOG_MAX [21208]: REQ_STRING(title) -- 23:46:11.551 FLOG_MAX [21208]: REQ_STRING(item_type) -- 23:46:11.551 FLOG_MAX [21208]: REQ_STRING(sessionid) -- 23:46:11.551 FLOG_MAX [21208]: REQ_STRING(detail) -- 23:46:11.551 FLOG_MAX [21208]: Bad parameter exception: 'page_id' -- 23:46:11.551 INFO [21208]: /AddPageCard() -- 23:46:11.551 INFO [21208]: RET: result=YES I GET TO BACK END -- 23:46:11.551 INFO [21208]: RET: status=Invalid session ID -- 23:46:11.564 INFO [21208]: COREGRADE is stopping... -- 23:46:11.564 DEBUG [21208]: Closing database connection -- 23:46:11.564 SQL [21208]: pgsql_close() -- 23:46:11.515 DEBUG [21208]: Database connection successful -- 23:46:11.515 INFO [21208]: _SERVER found -- 23:46:11.515 INFO [21208]: REMOTE_ADDR = 192.168.1.13 -- 23:46:11.515 INFO [21208]: SERVER_NAME = oameye.works.coregrade.com -- 23:46:11.515 INFO [21208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=4qbf13im6mhtiskvr8gnjofnn2pdh97e -- 23:46:11.515 INFO [21208]: QUERY_STRING = /member/upload -- 23:46:11.515 INFO [21208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:46:11.565 INFO [21208]: COREGRADE is stopping... -- 23:46:11.565 DEBUG [21208]: Closing database connection -- 23:46:11.565 SQL [21208]: pgsql_close() -- 23:46:35.290 INFO [21210]: COREGRADE is starting... -- 23:46:35.290 INFO [21210]: Version from config: 1.0 -- 23:46:35.290 DEBUG [21210]: Connecting to database... -- 23:46:35.290 DEBUG [21210]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:46:35.290 SQL [21210]: pgsql_db_connect() -- 23:46:35.294 DEBUG [21210]: Database connection successful -- 23:46:35.294 INFO [21210]: _SERVER found -- 23:46:35.294 INFO [21210]: REMOTE_ADDR = 192.168.1.13 -- 23:46:35.294 INFO [21210]: SERVER_NAME = oameye.works.coregrade.com -- 23:46:35.294 INFO [21210]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=4qbf13im6mhtiskvr8gnjofnn2pdh97e -- 23:46:35.294 INFO [21210]: QUERY_STRING = /member/page -- 23:46:35.294 INFO [21210]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:46:35.336 INFO [21210]: COREGRADE is stopping... -- 23:46:35.336 DEBUG [21210]: Closing database connection -- 23:46:35.336 SQL [21210]: pgsql_close() -- 23:46:38.613 INFO [21215]: COREGRADE is starting... -- 23:46:38.613 INFO [21215]: Version from config: 1.0 -- 23:46:38.613 DEBUG [21215]: Connecting to database... -- 23:46:38.613 DEBUG [21215]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:46:38.613 SQL [21215]: pgsql_db_connect() -- 23:46:38.617 DEBUG [21215]: Database connection successful -- 23:46:38.617 INFO [21215]: _SERVER found -- 23:46:38.617 INFO [21215]: REMOTE_ADDR = 192.168.1.13 -- 23:46:38.617 INFO [21215]: SERVER_NAME = oameye.works.coregrade.com -- 23:46:38.617 INFO [21215]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=4qbf13im6mhtiskvr8gnjofnn2pdh97e -- 23:46:38.617 INFO [21215]: QUERY_STRING = /member/viewCardAddAction -- 23:46:38.617 INFO [21215]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:46:38.648 INFO [21215]: COREGRADE is stopping... -- 23:46:38.649 DEBUG [21215]: Closing database connection -- 23:46:38.649 SQL [21215]: pgsql_close() -- 23:46:50.574 INFO [21207]: COREGRADE is starting... -- 23:46:50.574 INFO [21207]: Version from config: 1.0 -- 23:46:50.574 DEBUG [21207]: Connecting to database... -- 23:46:50.574 DEBUG [21207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:46:50.574 SQL [21207]: pgsql_db_connect() -- 23:46:50.611 INFO [21207]: COREGRADE is starting... -- 23:46:50.611 INFO [21207]: Version from config: 1.0 -- 23:46:50.611 DEBUG [21207]: Connecting to database... -- 23:46:50.611 DEBUG [21207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:46:50.611 SQL [21207]: pgsql_db_connect() -- 23:46:50.615 DEBUG [21207]: Database connection successful -- 23:46:50.615 INFO [21207]: _SERVER found -- 23:46:50.615 INFO [21207]: REMOTE_ADDR = 192.168.1.13 -- 23:46:50.615 INFO [21207]: SERVER_NAME = oameye.works.coregrade.com -- 23:46:50.615 INFO [21207]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=4qbf13im6mhtiskvr8gnjofnn2pdh97e -- 23:46:50.615 INFO [21207]: QUERY_STRING = -- 23:46:50.615 INFO [21207]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:46:50.615 INFO [21207]: SystemStatus()09-09-********~************ -- 23:46:50.615 INFO [21207]: long coregrade_api_main(CVars in, CVars &out) -- 23:46:50.615 INFO [21207]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 23:46:50.615 INFO [21207]: account calls -- 23:46:50.615 INFO [21207]: account_calls() -- 23:46:50.615 INFO [21207]: AddPageCard() -- 23:46:50.615 FLOG_MAX [21207]: REQ_STRING(title) -- 23:46:50.615 FLOG_MAX [21207]: REQ_STRING(item_type) -- 23:46:50.615 FLOG_MAX [21207]: REQ_STRING(sessionid) -- 23:46:50.615 FLOG_MAX [21207]: REQ_STRING(detail) -- 23:46:50.615 FLOG_MAX [21207]: Bad parameter exception: 'page_id' -- 23:46:50.615 INFO [21207]: /AddPageCard() -- 23:46:50.615 INFO [21207]: RET: result=YES I GET TO BACK END -- 23:46:50.615 INFO [21207]: RET: status=Invalid session ID -- 23:46:50.631 INFO [21207]: COREGRADE is stopping... -- 23:46:50.631 DEBUG [21207]: Closing database connection -- 23:46:50.631 SQL [21207]: pgsql_close() -- 23:46:50.579 DEBUG [21207]: Database connection successful -- 23:46:50.579 INFO [21207]: _SERVER found -- 23:46:50.579 INFO [21207]: REMOTE_ADDR = 192.168.1.13 -- 23:46:50.579 INFO [21207]: SERVER_NAME = oameye.works.coregrade.com -- 23:46:50.579 INFO [21207]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=4qbf13im6mhtiskvr8gnjofnn2pdh97e -- 23:46:50.579 INFO [21207]: QUERY_STRING = /member/upload -- 23:46:50.579 INFO [21207]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:46:50.632 INFO [21207]: COREGRADE is stopping... -- 23:46:50.632 DEBUG [21207]: Closing database connection -- 23:46:50.632 SQL [21207]: pgsql_close() -- 23:49:07.223 INFO [21206]: COREGRADE is starting... -- 23:49:07.224 INFO [21206]: Version from config: 1.0 -- 23:49:07.224 DEBUG [21206]: Connecting to database... -- 23:49:07.224 DEBUG [21206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:49:07.224 SQL [21206]: pgsql_db_connect() -- 23:49:07.228 DEBUG [21206]: Database connection successful -- 23:49:07.228 INFO [21206]: _SERVER found -- 23:49:07.228 INFO [21206]: REMOTE_ADDR = 192.168.1.13 -- 23:49:07.228 INFO [21206]: SERVER_NAME = oameye.works.coregrade.com -- 23:49:07.228 INFO [21206]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=4qbf13im6mhtiskvr8gnjofnn2pdh97e -- 23:49:07.228 INFO [21206]: QUERY_STRING = /member/page -- 23:49:07.228 INFO [21206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:49:07.271 INFO [21206]: COREGRADE is stopping... -- 23:49:07.271 DEBUG [21206]: Closing database connection -- 23:49:07.271 SQL [21206]: pgsql_close() -- 23:49:07.677 INFO [21329]: COREGRADE is starting... -- 23:49:07.678 INFO [21329]: Version from config: 1.0 -- 23:49:07.678 DEBUG [21329]: Connecting to database... -- 23:49:07.678 DEBUG [21329]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:49:07.678 SQL [21329]: pgsql_db_connect() -- 23:49:07.682 DEBUG [21329]: Database connection successful -- 23:49:07.682 INFO [21329]: _SERVER found -- 23:49:07.682 INFO [21329]: REMOTE_ADDR = 192.168.1.13 -- 23:49:07.682 INFO [21329]: SERVER_NAME = oameye.works.coregrade.com -- 23:49:07.682 INFO [21329]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=q51ll8i3isojkfborb240r8hlrvsjaen -- 23:49:07.682 INFO [21329]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:49:07.682 INFO [21329]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:49:07.697 INFO [21329]: COREGRADE is stopping... -- 23:49:07.697 DEBUG [21329]: Closing database connection -- 23:49:07.697 SQL [21329]: pgsql_close() -- 23:49:10.364 INFO [21329]: COREGRADE is starting... -- 23:49:10.364 INFO [21329]: Version from config: 1.0 -- 23:49:10.364 DEBUG [21329]: Connecting to database... -- 23:49:10.364 DEBUG [21329]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:49:10.364 SQL [21329]: pgsql_db_connect() -- 23:49:10.368 DEBUG [21329]: Database connection successful -- 23:49:10.368 INFO [21329]: _SERVER found -- 23:49:10.368 INFO [21329]: REMOTE_ADDR = 192.168.1.13 -- 23:49:10.368 INFO [21329]: SERVER_NAME = oameye.works.coregrade.com -- 23:49:10.368 INFO [21329]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=q51ll8i3isojkfborb240r8hlrvsjaen -- 23:49:10.368 INFO [21329]: QUERY_STRING = /member/viewCardAddAction -- 23:49:10.368 INFO [21329]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:49:10.404 INFO [21329]: COREGRADE is stopping... -- 23:49:10.404 DEBUG [21329]: Closing database connection -- 23:49:10.404 SQL [21329]: pgsql_close() -- 23:49:16.463 INFO [21209]: COREGRADE is starting... -- 23:49:16.464 INFO [21209]: Version from config: 1.0 -- 23:49:16.464 DEBUG [21209]: Connecting to database... -- 23:49:16.464 DEBUG [21209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:49:16.464 SQL [21209]: pgsql_db_connect() -- 23:49:16.501 INFO [21209]: COREGRADE is starting... -- 23:49:16.501 INFO [21209]: Version from config: 1.0 -- 23:49:16.501 DEBUG [21209]: Connecting to database... -- 23:49:16.501 DEBUG [21209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:49:16.501 SQL [21209]: pgsql_db_connect() -- 23:49:16.505 DEBUG [21209]: Database connection successful -- 23:49:16.505 INFO [21209]: _SERVER found -- 23:49:16.505 INFO [21209]: REMOTE_ADDR = 192.168.1.13 -- 23:49:16.505 INFO [21209]: SERVER_NAME = oameye.works.coregrade.com -- 23:49:16.505 INFO [21209]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=q51ll8i3isojkfborb240r8hlrvsjaen -- 23:49:16.505 INFO [21209]: QUERY_STRING = -- 23:49:16.505 INFO [21209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:49:16.505 INFO [21209]: SystemStatus()09-09-********~************ -- 23:49:16.505 INFO [21209]: long coregrade_api_main(CVars in, CVars &out) -- 23:49:16.505 INFO [21209]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 23:49:16.505 INFO [21209]: account calls -- 23:49:16.505 INFO [21209]: account_calls() -- 23:49:16.505 INFO [21209]: AddPageCard() -- 23:49:16.505 FLOG_MAX [21209]: REQ_STRING(title) -- 23:49:16.505 FLOG_MAX [21209]: REQ_STRING(item_type) -- 23:49:16.505 FLOG_MAX [21209]: REQ_STRING(sessionid) -- 23:49:16.505 FLOG_MAX [21209]: REQ_STRING(detail) -- 23:49:16.505 FLOG_MAX [21209]: Bad parameter exception: 'page_id' -- 23:49:16.505 INFO [21209]: /AddPageCard() -- 23:49:16.505 INFO [21209]: RET: result=YES I GET TO BACK END -- 23:49:16.505 INFO [21209]: RET: status=Invalid session ID -- 23:49:16.529 INFO [21209]: COREGRADE is stopping... -- 23:49:16.529 DEBUG [21209]: Closing database connection -- 23:49:16.529 SQL [21209]: pgsql_close() -- 23:49:16.468 DEBUG [21209]: Database connection successful -- 23:49:16.468 INFO [21209]: _SERVER found -- 23:49:16.468 INFO [21209]: REMOTE_ADDR = 192.168.1.13 -- 23:49:16.468 INFO [21209]: SERVER_NAME = oameye.works.coregrade.com -- 23:49:16.468 INFO [21209]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=q51ll8i3isojkfborb240r8hlrvsjaen -- 23:49:16.468 INFO [21209]: QUERY_STRING = /member/upload -- 23:49:16.468 INFO [21209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:49:16.529 INFO [21209]: COREGRADE is stopping... -- 23:49:16.529 DEBUG [21209]: Closing database connection -- 23:49:16.529 SQL [21209]: pgsql_close() -- 23:51:25.924 INFO [21306]: COREGRADE is starting... -- 23:51:25.924 INFO [21306]: Version from config: 1.0 -- 23:51:25.924 DEBUG [21306]: Connecting to database... -- 23:51:25.924 DEBUG [21306]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:51:25.924 SQL [21306]: pgsql_db_connect() -- 23:51:25.929 DEBUG [21306]: Database connection successful -- 23:51:25.929 INFO [21306]: _SERVER found -- 23:51:25.929 INFO [21306]: REMOTE_ADDR = 192.168.1.13 -- 23:51:25.929 INFO [21306]: SERVER_NAME = oameye.works.coregrade.com -- 23:51:25.929 INFO [21306]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=q51ll8i3isojkfborb240r8hlrvsjaen -- 23:51:25.929 INFO [21306]: QUERY_STRING = /member/page -- 23:51:25.929 INFO [21306]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:51:25.973 INFO [21306]: COREGRADE is stopping... -- 23:51:25.973 DEBUG [21306]: Closing database connection -- 23:51:25.973 SQL [21306]: pgsql_close() -- 23:51:29.184 INFO [21306]: COREGRADE is starting... -- 23:51:29.184 INFO [21306]: Version from config: 1.0 -- 23:51:29.184 DEBUG [21306]: Connecting to database... -- 23:51:29.184 DEBUG [21306]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:51:29.184 SQL [21306]: pgsql_db_connect() -- 23:51:29.188 DEBUG [21306]: Database connection successful -- 23:51:29.188 INFO [21306]: _SERVER found -- 23:51:29.188 INFO [21306]: REMOTE_ADDR = 192.168.1.13 -- 23:51:29.188 INFO [21306]: SERVER_NAME = oameye.works.coregrade.com -- 23:51:29.188 INFO [21306]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=q51ll8i3isojkfborb240r8hlrvsjaen -- 23:51:29.188 INFO [21306]: QUERY_STRING = /member/viewCardAddAction -- 23:51:29.188 INFO [21306]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:51:29.220 INFO [21306]: COREGRADE is stopping... -- 23:51:29.220 DEBUG [21306]: Closing database connection -- 23:51:29.220 SQL [21306]: pgsql_close() -- 23:53:14.862 INFO [21208]: COREGRADE is starting... -- 23:53:14.862 INFO [21208]: Version from config: 1.0 -- 23:53:14.862 DEBUG [21208]: Connecting to database... -- 23:53:14.862 DEBUG [21208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:53:14.862 SQL [21208]: pgsql_db_connect() -- 23:53:14.866 DEBUG [21208]: Database connection successful -- 23:53:14.866 INFO [21208]: _SERVER found -- 23:53:14.866 INFO [21208]: REMOTE_ADDR = 192.168.1.13 -- 23:53:14.866 INFO [21208]: SERVER_NAME = oameye.works.coregrade.com -- 23:53:14.866 INFO [21208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=q51ll8i3isojkfborb240r8hlrvsjaen -- 23:53:14.866 INFO [21208]: QUERY_STRING = /member/viewCardAddAction -- 23:53:14.866 INFO [21208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:53:14.899 INFO [21208]: COREGRADE is stopping... -- 23:53:14.900 DEBUG [21208]: Closing database connection -- 23:53:14.900 SQL [21208]: pgsql_close() -- 23:53:16.933 INFO [21208]: COREGRADE is starting... -- 23:53:16.933 INFO [21208]: Version from config: 1.0 -- 23:53:16.933 DEBUG [21208]: Connecting to database... -- 23:53:16.933 DEBUG [21208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:53:16.933 SQL [21208]: pgsql_db_connect() -- 23:53:16.937 DEBUG [21208]: Database connection successful -- 23:53:16.937 INFO [21208]: _SERVER found -- 23:53:16.937 INFO [21208]: REMOTE_ADDR = 192.168.1.13 -- 23:53:16.937 INFO [21208]: SERVER_NAME = oameye.works.coregrade.com -- 23:53:16.937 INFO [21208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=q51ll8i3isojkfborb240r8hlrvsjaen -- 23:53:16.937 INFO [21208]: QUERY_STRING = /member/viewCardAddAction -- 23:53:16.937 INFO [21208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:53:16.969 INFO [21208]: COREGRADE is stopping... -- 23:53:16.969 DEBUG [21208]: Closing database connection -- 23:53:16.969 SQL [21208]: pgsql_close() -- 23:53:33.624 INFO [21210]: COREGRADE is starting... -- 23:53:33.625 INFO [21210]: Version from config: 1.0 -- 23:53:33.625 DEBUG [21210]: Connecting to database... -- 23:53:33.625 DEBUG [21210]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:53:33.625 SQL [21210]: pgsql_db_connect() -- 23:53:33.661 INFO [21210]: COREGRADE is starting... -- 23:53:33.661 INFO [21210]: Version from config: 1.0 -- 23:53:33.661 DEBUG [21210]: Connecting to database... -- 23:53:33.661 DEBUG [21210]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:53:33.661 SQL [21210]: pgsql_db_connect() -- 23:53:33.665 DEBUG [21210]: Database connection successful -- 23:53:33.665 INFO [21210]: _SERVER found -- 23:53:33.665 INFO [21210]: REMOTE_ADDR = 192.168.1.13 -- 23:53:33.665 INFO [21210]: SERVER_NAME = oameye.works.coregrade.com -- 23:53:33.665 INFO [21210]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=q51ll8i3isojkfborb240r8hlrvsjaen -- 23:53:33.665 INFO [21210]: QUERY_STRING = -- 23:53:33.665 INFO [21210]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:53:33.665 INFO [21210]: SystemStatus()09-09-********~************ -- 23:53:33.665 INFO [21210]: long coregrade_api_main(CVars in, CVars &out) -- 23:53:33.665 INFO [21210]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 23:53:33.665 INFO [21210]: account calls -- 23:53:33.665 INFO [21210]: account_calls() -- 23:53:33.665 INFO [21210]: AddPageCard() -- 23:53:33.665 FLOG_MAX [21210]: REQ_STRING(title) -- 23:53:33.665 FLOG_MAX [21210]: REQ_STRING(item_type) -- 23:53:33.665 FLOG_MAX [21210]: REQ_STRING(sessionid) -- 23:53:33.665 FLOG_MAX [21210]: REQ_STRING(detail) -- 23:53:33.665 FLOG_MAX [21210]: insert_db_record() -- 23:53:33.665 SQL [21210]: pgsql_exec() -- 23:53:33.665 SQL [21210]: About to run query: -- 23:53:33.665 SQL [21210]: INSERT INTO members_page_item (detail,item_type,member_id,page_id,title) VALUES ('This s the ttitle, This s the ttitle1870','VIDEOCARD','5','7','This s the ttitle5371') -- 23:53:33.670 SQL [21210]: PQcmdTuples: 1 -- 23:53:33.670 SQL [21210]: Affected rows: 1 -- 23:53:33.670 FLOG_MAX [21210]: SELECT currval('members_page_item_id_seq') -- 23:53:33.670 SQL [21210]: pgsql_query() -- 23:53:33.670 SQL [21210]: About to run query: -- 23:53:33.670 SQL [21210]: SELECT currval('members_page_item_id_seq') -- 23:53:33.671 SQL [21210]: Found rows: 1 -- 23:53:33.671 INFO [21210]: /AddPageCard() -- 23:53:33.671 INFO [21210]: RET: page_item_id=24 -- 23:53:33.671 INFO [21210]: RET: result=YES I GET TO BACK END -- 23:53:33.680 INFO [21210]: COREGRADE is stopping... -- 23:53:33.680 DEBUG [21210]: Closing database connection -- 23:53:33.680 SQL [21210]: pgsql_close() -- 23:53:33.629 DEBUG [21210]: Database connection successful -- 23:53:33.629 INFO [21210]: _SERVER found -- 23:53:33.629 INFO [21210]: REMOTE_ADDR = 192.168.1.13 -- 23:53:33.629 INFO [21210]: SERVER_NAME = oameye.works.coregrade.com -- 23:53:33.629 INFO [21210]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=q51ll8i3isojkfborb240r8hlrvsjaen -- 23:53:33.629 INFO [21210]: QUERY_STRING = /member/upload -- 23:53:33.629 INFO [21210]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:53:33.681 INFO [21210]: COREGRADE is stopping... -- 23:53:33.681 DEBUG [21210]: Closing database connection -- 23:53:33.681 SQL [21210]: pgsql_close() -- 23:57:11.879 INFO [21215]: COREGRADE is starting... -- 23:57:11.880 INFO [21215]: Version from config: 1.0 -- 23:57:11.880 DEBUG [21215]: Connecting to database... -- 23:57:11.880 DEBUG [21215]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:57:11.880 SQL [21215]: pgsql_db_connect() -- 23:57:11.884 DEBUG [21215]: Database connection successful -- 23:57:11.884 INFO [21215]: _SERVER found -- 23:57:11.884 INFO [21215]: REMOTE_ADDR = 192.168.1.13 -- 23:57:11.884 INFO [21215]: SERVER_NAME = oameye.works.coregrade.com -- 23:57:11.884 INFO [21215]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=q51ll8i3isojkfborb240r8hlrvsjaen -- 23:57:11.884 INFO [21215]: QUERY_STRING = /member/page -- 23:57:11.884 INFO [21215]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:57:11.928 INFO [21215]: COREGRADE is stopping... -- 23:57:11.928 DEBUG [21215]: Closing database connection -- 23:57:11.928 SQL [21215]: pgsql_close() -- 23:57:12.367 INFO [21215]: COREGRADE is starting... -- 23:57:12.367 INFO [21215]: Version from config: 1.0 -- 23:57:12.367 DEBUG [21215]: Connecting to database... -- 23:57:12.367 DEBUG [21215]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:57:12.367 SQL [21215]: pgsql_db_connect() -- 23:57:12.372 DEBUG [21215]: Database connection successful -- 23:57:12.372 INFO [21215]: _SERVER found -- 23:57:12.372 INFO [21215]: REMOTE_ADDR = 192.168.1.13 -- 23:57:12.372 INFO [21215]: SERVER_NAME = oameye.works.coregrade.com -- 23:57:12.372 INFO [21215]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=3r6ecc0r5nib9af9v346kmqojpflvtgu -- 23:57:12.372 INFO [21215]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:57:12.372 INFO [21215]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:57:12.383 INFO [21215]: COREGRADE is stopping... -- 23:57:12.383 DEBUG [21215]: Closing database connection -- 23:57:12.383 SQL [21215]: pgsql_close() -- 23:57:18.337 INFO [21206]: COREGRADE is starting... -- 23:57:18.337 INFO [21206]: Version from config: 1.0 -- 23:57:18.337 DEBUG [21206]: Connecting to database... -- 23:57:18.337 DEBUG [21206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:57:18.337 SQL [21206]: pgsql_db_connect() -- 23:57:18.341 DEBUG [21206]: Database connection successful -- 23:57:18.341 INFO [21206]: _SERVER found -- 23:57:18.341 INFO [21206]: REMOTE_ADDR = 192.168.1.13 -- 23:57:18.341 INFO [21206]: SERVER_NAME = oameye.works.coregrade.com -- 23:57:18.341 INFO [21206]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=3r6ecc0r5nib9af9v346kmqojpflvtgu -- 23:57:18.341 INFO [21206]: QUERY_STRING = /member/page -- 23:57:18.341 INFO [21206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:57:18.384 INFO [21206]: COREGRADE is stopping... -- 23:57:18.384 DEBUG [21206]: Closing database connection -- 23:57:18.384 SQL [21206]: pgsql_close() -- 23:57:51.236 INFO [21329]: COREGRADE is starting... -- 23:57:51.236 INFO [21329]: Version from config: 1.0 -- 23:57:51.236 DEBUG [21329]: Connecting to database... -- 23:57:51.236 DEBUG [21329]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:57:51.236 SQL [21329]: pgsql_db_connect() -- 23:57:51.240 DEBUG [21329]: Database connection successful -- 23:57:51.240 INFO [21329]: _SERVER found -- 23:57:51.240 INFO [21329]: REMOTE_ADDR = 192.168.1.13 -- 23:57:51.240 INFO [21329]: SERVER_NAME = oameye.works.coregrade.com -- 23:57:51.240 INFO [21329]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=3r6ecc0r5nib9af9v346kmqojpflvtgu -- 23:57:51.240 INFO [21329]: QUERY_STRING = /member -- 23:57:51.240 INFO [21329]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:57:51.281 INFO [21329]: COREGRADE is stopping... -- 23:57:51.281 DEBUG [21329]: Closing database connection -- 23:57:51.281 SQL [21329]: pgsql_close() -- 23:57:51.470 INFO [21329]: COREGRADE is starting... -- 23:57:51.470 INFO [21329]: Version from config: 1.0 -- 23:57:51.470 DEBUG [21329]: Connecting to database... -- 23:57:51.470 DEBUG [21329]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:57:51.470 SQL [21329]: pgsql_db_connect() -- 23:57:51.474 DEBUG [21329]: Database connection successful -- 23:57:51.474 INFO [21329]: _SERVER found -- 23:57:51.474 INFO [21329]: REMOTE_ADDR = 192.168.1.13 -- 23:57:51.474 INFO [21329]: SERVER_NAME = oameye.works.coregrade.com -- 23:57:51.474 INFO [21329]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=3r6ecc0r5nib9af9v346kmqojpflvtgu -- 23:57:51.474 INFO [21329]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:57:51.474 INFO [21329]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:57:51.485 INFO [21329]: COREGRADE is stopping... -- 23:57:51.485 DEBUG [21329]: Closing database connection -- 23:57:51.485 SQL [21329]: pgsql_close() -- 23:57:51.517 INFO [21329]: COREGRADE is starting... -- 23:57:51.517 INFO [21329]: Version from config: 1.0 -- 23:57:51.517 DEBUG [21329]: Connecting to database... -- 23:57:51.517 DEBUG [21329]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:57:51.517 SQL [21329]: pgsql_db_connect() -- 23:57:51.521 DEBUG [21329]: Database connection successful -- 23:57:51.521 INFO [21329]: _SERVER found -- 23:57:51.521 INFO [21329]: REMOTE_ADDR = 192.168.1.13 -- 23:57:51.521 INFO [21329]: SERVER_NAME = oameye.works.coregrade.com -- 23:57:51.521 INFO [21329]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=3r6ecc0r5nib9af9v346kmqojpflvtgu -- 23:57:51.521 INFO [21329]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:57:51.521 INFO [21329]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:57:51.532 INFO [21329]: COREGRADE is stopping... -- 23:57:51.532 DEBUG [21329]: Closing database connection -- 23:57:51.532 SQL [21329]: pgsql_close() -- 23:57:52.837 INFO [21329]: COREGRADE is starting... -- 23:57:52.837 INFO [21329]: Version from config: 1.0 -- 23:57:52.837 DEBUG [21329]: Connecting to database... -- 23:57:52.837 DEBUG [21329]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:57:52.837 SQL [21329]: pgsql_db_connect() -- 23:57:52.841 DEBUG [21329]: Database connection successful -- 23:57:52.841 INFO [21329]: _SERVER found -- 23:57:52.841 INFO [21329]: REMOTE_ADDR = 192.168.1.13 -- 23:57:52.841 INFO [21329]: SERVER_NAME = oameye.works.coregrade.com -- 23:57:52.841 INFO [21329]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=3r6ecc0r5nib9af9v346kmqojpflvtgu -- 23:57:52.841 INFO [21329]: QUERY_STRING = /member/page -- 23:57:52.841 INFO [21329]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:57:52.883 INFO [21329]: COREGRADE is stopping... -- 23:57:52.883 DEBUG [21329]: Closing database connection -- 23:57:52.883 SQL [21329]: pgsql_close() -- 23:57:53.030 INFO [21209]: COREGRADE is starting... -- 23:57:53.030 INFO [21209]: Version from config: 1.0 -- 23:57:53.030 DEBUG [21209]: Connecting to database... -- 23:57:53.030 DEBUG [21209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:57:53.030 SQL [21209]: pgsql_db_connect() -- 23:57:53.034 DEBUG [21209]: Database connection successful -- 23:57:53.034 INFO [21209]: _SERVER found -- 23:57:53.034 INFO [21209]: REMOTE_ADDR = 192.168.1.13 -- 23:57:53.034 INFO [21209]: SERVER_NAME = oameye.works.coregrade.com -- 23:57:53.034 INFO [21209]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=3r6ecc0r5nib9af9v346kmqojpflvtgu -- 23:57:53.034 INFO [21209]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:57:53.034 INFO [21209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:57:53.046 INFO [21209]: COREGRADE is stopping... -- 23:57:53.046 DEBUG [21209]: Closing database connection -- 23:57:53.046 SQL [21209]: pgsql_close() -- 23:57:53.201 INFO [21209]: COREGRADE is starting... -- 23:57:53.202 INFO [21209]: Version from config: 1.0 -- 23:57:53.202 DEBUG [21209]: Connecting to database... -- 23:57:53.202 DEBUG [21209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:57:53.202 SQL [21209]: pgsql_db_connect() -- 23:57:53.206 DEBUG [21209]: Database connection successful -- 23:57:53.206 INFO [21209]: _SERVER found -- 23:57:53.206 INFO [21209]: REMOTE_ADDR = 192.168.1.13 -- 23:57:53.206 INFO [21209]: SERVER_NAME = oameye.works.coregrade.com -- 23:57:53.206 INFO [21209]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=3r6ecc0r5nib9af9v346kmqojpflvtgu -- 23:57:53.206 INFO [21209]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:57:53.206 INFO [21209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:57:53.217 INFO [21209]: COREGRADE is stopping... -- 23:57:53.217 DEBUG [21209]: Closing database connection -- 23:57:53.217 SQL [21209]: pgsql_close() -- 23:58:39.077 INFO [21239]: COREGRADE is starting... -- 23:58:39.078 INFO [21239]: Version from config: 1.0 -- 23:58:39.078 DEBUG [21239]: Connecting to database... -- 23:58:39.078 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:58:39.078 SQL [21239]: pgsql_db_connect() -- 23:58:39.082 DEBUG [21239]: Database connection successful -- 23:58:39.082 INFO [21239]: _SERVER found -- 23:58:39.082 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 23:58:39.082 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 23:58:39.082 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=3r6ecc0r5nib9af9v346kmqojpflvtgu -- 23:58:39.082 INFO [21239]: QUERY_STRING = /member/page -- 23:58:39.082 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:58:39.126 INFO [21239]: COREGRADE is stopping... -- 23:58:39.126 DEBUG [21239]: Closing database connection -- 23:58:39.126 SQL [21239]: pgsql_close() -- 23:58:39.771 INFO [21306]: COREGRADE is starting... -- 23:58:39.771 INFO [21306]: Version from config: 1.0 -- 23:58:39.771 DEBUG [21306]: Connecting to database... -- 23:58:39.771 DEBUG [21306]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:58:39.771 SQL [21306]: pgsql_db_connect() -- 23:58:39.776 DEBUG [21306]: Database connection successful -- 23:58:39.776 INFO [21306]: _SERVER found -- 23:58:39.776 INFO [21306]: REMOTE_ADDR = 192.168.1.13 -- 23:58:39.776 INFO [21306]: SERVER_NAME = oameye.works.coregrade.com -- 23:58:39.776 INFO [21306]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=3r6ecc0r5nib9af9v346kmqojpflvtgu -- 23:58:39.776 INFO [21306]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:58:39.776 INFO [21306]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:58:39.788 INFO [21306]: COREGRADE is stopping... -- 23:58:39.788 DEBUG [21306]: Closing database connection -- 23:58:39.788 SQL [21306]: pgsql_close() -- 23:58:41.376 INFO [21207]: COREGRADE is starting... -- 23:58:41.377 INFO [21207]: Version from config: 1.0 -- 23:58:41.377 DEBUG [21207]: Connecting to database... -- 23:58:41.377 DEBUG [21207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:58:41.377 SQL [21207]: pgsql_db_connect() -- 23:58:41.381 DEBUG [21207]: Database connection successful -- 23:58:41.381 INFO [21207]: _SERVER found -- 23:58:41.381 INFO [21207]: REMOTE_ADDR = 192.168.1.13 -- 23:58:41.381 INFO [21207]: SERVER_NAME = oameye.works.coregrade.com -- 23:58:41.381 INFO [21207]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=3r6ecc0r5nib9af9v346kmqojpflvtgu -- 23:58:41.381 INFO [21207]: QUERY_STRING = /app-assets/data/locales/en.json -- 23:58:41.381 INFO [21207]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:58:41.393 INFO [21207]: COREGRADE is stopping... -- 23:58:41.393 DEBUG [21207]: Closing database connection -- 23:58:41.393 SQL [21207]: pgsql_close() -- 23:58:48.507 INFO [21208]: COREGRADE is starting... -- 23:58:48.508 INFO [21208]: Version from config: 1.0 -- 23:58:48.508 DEBUG [21208]: Connecting to database... -- 23:58:48.508 DEBUG [21208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:58:48.508 SQL [21208]: pgsql_db_connect() -- 23:58:48.513 INFO [21210]: COREGRADE is starting... -- 23:58:48.513 INFO [21210]: Version from config: 1.0 -- 23:58:48.513 DEBUG [21210]: Connecting to database... -- 23:58:48.513 DEBUG [21210]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:58:48.513 SQL [21210]: pgsql_db_connect() -- 23:58:48.512 DEBUG [21208]: Database connection successful -- 23:58:48.512 INFO [21208]: _SERVER found -- 23:58:48.512 INFO [21208]: REMOTE_ADDR = 192.168.1.13 -- 23:58:48.512 INFO [21208]: SERVER_NAME = oameye.works.coregrade.com -- 23:58:48.512 INFO [21208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=3r6ecc0r5nib9af9v346kmqojpflvtgu -- 23:58:48.512 INFO [21208]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 23:58:48.512 INFO [21208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:58:48.524 INFO [21208]: COREGRADE is stopping... -- 23:58:48.524 DEBUG [21208]: Closing database connection -- 23:58:48.524 SQL [21208]: pgsql_close() -- 23:58:48.517 DEBUG [21210]: Database connection successful -- 23:58:48.517 INFO [21210]: _SERVER found -- 23:58:48.517 INFO [21210]: REMOTE_ADDR = 192.168.1.13 -- 23:58:48.517 INFO [21210]: SERVER_NAME = oameye.works.coregrade.com -- 23:58:48.517 INFO [21210]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=3r6ecc0r5nib9af9v346kmqojpflvtgu -- 23:58:48.517 INFO [21210]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 23:58:48.517 INFO [21210]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:58:48.529 INFO [21210]: COREGRADE is stopping... -- 23:58:48.529 DEBUG [21210]: Closing database connection -- 23:58:48.529 SQL [21210]: pgsql_close() -- 00:00:40.023 INFO [21488]: COREGRADE is starting... -- 00:00:40.023 INFO [21488]: Version from config: 1.0 -- 00:00:40.023 DEBUG [21488]: Connecting to database... -- 00:00:40.023 DEBUG [21488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:00:40.023 SQL [21488]: pgsql_db_connect() -- 00:00:40.028 DEBUG [21488]: Database connection successful -- 00:00:40.028 INFO [21488]: _SERVER found -- 00:00:40.028 INFO [21488]: REMOTE_ADDR = 192.168.1.13 -- 00:00:40.028 INFO [21488]: SERVER_NAME = oameye.works.coregrade.com -- 00:00:40.028 INFO [21488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=3r6ecc0r5nib9af9v346kmqojpflvtgu -- 00:00:40.028 INFO [21488]: QUERY_STRING = /member/page -- 00:00:40.028 INFO [21488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:00:40.079 INFO [21488]: COREGRADE is stopping... -- 00:00:40.079 DEBUG [21488]: Closing database connection -- 00:00:40.079 SQL [21488]: pgsql_close() -- 00:00:40.216 INFO [21306]: COREGRADE is starting... -- 00:00:40.216 INFO [21306]: Version from config: 1.0 -- 00:00:40.216 DEBUG [21306]: Connecting to database... -- 00:00:40.216 DEBUG [21306]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:00:40.217 SQL [21306]: pgsql_db_connect() -- 00:00:40.220 DEBUG [21306]: Database connection successful -- 00:00:40.220 INFO [21306]: _SERVER found -- 00:00:40.220 INFO [21306]: REMOTE_ADDR = 192.168.1.13 -- 00:00:40.220 INFO [21306]: SERVER_NAME = oameye.works.coregrade.com -- 00:00:40.220 INFO [21306]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=3r6ecc0r5nib9af9v346kmqojpflvtgu -- 00:00:40.220 INFO [21306]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:00:40.220 INFO [21306]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:00:40.232 INFO [21306]: COREGRADE is stopping... -- 00:00:40.232 DEBUG [21306]: Closing database connection -- 00:00:40.232 SQL [21306]: pgsql_close() -- 00:00:40.602 INFO [21306]: COREGRADE is starting... -- 00:00:40.602 INFO [21306]: Version from config: 1.0 -- 00:00:40.602 DEBUG [21306]: Connecting to database... -- 00:00:40.602 DEBUG [21306]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:00:40.602 SQL [21306]: pgsql_db_connect() -- 00:00:40.605 INFO [21488]: COREGRADE is starting... -- 00:00:40.606 INFO [21488]: Version from config: 1.0 -- 00:00:40.606 DEBUG [21488]: Connecting to database... -- 00:00:40.606 DEBUG [21488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:00:40.606 SQL [21488]: pgsql_db_connect() -- 00:00:40.606 DEBUG [21306]: Database connection successful -- 00:00:40.606 INFO [21306]: _SERVER found -- 00:00:40.606 INFO [21306]: REMOTE_ADDR = 192.168.1.13 -- 00:00:40.606 INFO [21306]: SERVER_NAME = oameye.works.coregrade.com -- 00:00:40.606 INFO [21306]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=3r6ecc0r5nib9af9v346kmqojpflvtgu -- 00:00:40.606 INFO [21306]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 00:00:40.606 INFO [21306]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:00:40.618 INFO [21306]: COREGRADE is stopping... -- 00:00:40.618 DEBUG [21306]: Closing database connection -- 00:00:40.618 SQL [21306]: pgsql_close() -- 00:00:40.609 DEBUG [21488]: Database connection successful -- 00:00:40.609 INFO [21488]: _SERVER found -- 00:00:40.609 INFO [21488]: REMOTE_ADDR = 192.168.1.13 -- 00:00:40.609 INFO [21488]: SERVER_NAME = oameye.works.coregrade.com -- 00:00:40.609 INFO [21488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=3r6ecc0r5nib9af9v346kmqojpflvtgu -- 00:00:40.609 INFO [21488]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 00:00:40.609 INFO [21488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:00:40.621 INFO [21488]: COREGRADE is stopping... -- 00:00:40.621 DEBUG [21488]: Closing database connection -- 00:00:40.621 SQL [21488]: pgsql_close() -- 00:00:40.700 INFO [21488]: COREGRADE is starting... -- 00:00:40.700 INFO [21488]: Version from config: 1.0 -- 00:00:40.700 DEBUG [21488]: Connecting to database... -- 00:00:40.700 DEBUG [21488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:00:40.700 SQL [21488]: pgsql_db_connect() -- 00:00:40.704 DEBUG [21488]: Database connection successful -- 00:00:40.704 INFO [21488]: _SERVER found -- 00:00:40.704 INFO [21488]: REMOTE_ADDR = 192.168.1.13 -- 00:00:40.704 INFO [21488]: SERVER_NAME = oameye.works.coregrade.com -- 00:00:40.704 INFO [21488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=3r6ecc0r5nib9af9v346kmqojpflvtgu -- 00:00:40.704 INFO [21488]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:00:40.704 INFO [21488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:00:40.716 INFO [21488]: COREGRADE is stopping... -- 00:00:40.716 DEBUG [21488]: Closing database connection -- 00:00:40.716 SQL [21488]: pgsql_close() -- 00:00:43.383 INFO [21329]: COREGRADE is starting... -- 00:00:43.384 INFO [21329]: Version from config: 1.0 -- 00:00:43.384 DEBUG [21329]: Connecting to database... -- 00:00:43.384 DEBUG [21329]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:00:43.384 SQL [21329]: pgsql_db_connect() -- 00:00:43.388 DEBUG [21329]: Database connection successful -- 00:00:43.388 INFO [21329]: _SERVER found -- 00:00:43.388 INFO [21329]: REMOTE_ADDR = 192.168.1.13 -- 00:00:43.388 INFO [21329]: SERVER_NAME = oameye.works.coregrade.com -- 00:00:43.388 INFO [21329]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=3r6ecc0r5nib9af9v346kmqojpflvtgu -- 00:00:43.388 INFO [21329]: QUERY_STRING = /member/viewCardAddAction -- 00:00:43.388 INFO [21329]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:00:43.420 INFO [21329]: COREGRADE is stopping... -- 00:00:43.420 DEBUG [21329]: Closing database connection -- 00:00:43.420 SQL [21329]: pgsql_close() -- 00:00:45.038 INFO [21329]: COREGRADE is starting... -- 00:00:45.039 INFO [21329]: Version from config: 1.0 -- 00:00:45.039 DEBUG [21329]: Connecting to database... -- 00:00:45.039 DEBUG [21329]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:00:45.039 SQL [21329]: pgsql_db_connect() -- 00:00:45.043 DEBUG [21329]: Database connection successful -- 00:00:45.043 INFO [21329]: _SERVER found -- 00:00:45.043 INFO [21329]: REMOTE_ADDR = 192.168.1.13 -- 00:00:45.043 INFO [21329]: SERVER_NAME = oameye.works.coregrade.com -- 00:00:45.043 INFO [21329]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=3r6ecc0r5nib9af9v346kmqojpflvtgu -- 00:00:45.043 INFO [21329]: QUERY_STRING = /member/viewCardAddAction -- 00:00:45.043 INFO [21329]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:00:45.074 INFO [21329]: COREGRADE is stopping... -- 00:00:45.074 DEBUG [21329]: Closing database connection -- 00:00:45.074 SQL [21329]: pgsql_close() -- 00:01:10.462 INFO [21239]: COREGRADE is starting... -- 00:01:10.462 INFO [21239]: Version from config: 1.0 -- 00:01:10.462 DEBUG [21239]: Connecting to database... -- 00:01:10.462 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:01:10.462 SQL [21239]: pgsql_db_connect() -- 00:01:10.499 INFO [21239]: COREGRADE is starting... -- 00:01:10.499 INFO [21239]: Version from config: 1.0 -- 00:01:10.499 DEBUG [21239]: Connecting to database... -- 00:01:10.499 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:01:10.499 SQL [21239]: pgsql_db_connect() -- 00:01:10.503 DEBUG [21239]: Database connection successful -- 00:01:10.503 INFO [21239]: _SERVER found -- 00:01:10.503 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 00:01:10.503 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 00:01:10.503 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=3r6ecc0r5nib9af9v346kmqojpflvtgu -- 00:01:10.503 INFO [21239]: QUERY_STRING = -- 00:01:10.503 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:01:10.503 INFO [21239]: SystemStatus()09-09-********~************ -- 00:01:10.503 INFO [21239]: long coregrade_api_main(CVars in, CVars &out) -- 00:01:10.503 INFO [21239]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 00:01:10.503 INFO [21239]: account calls -- 00:01:10.503 INFO [21239]: account_calls() -- 00:01:10.503 INFO [21239]: AddPageCard() -- 00:01:10.503 FLOG_MAX [21239]: REQ_STRING(title) -- 00:01:10.503 FLOG_MAX [21239]: REQ_STRING(item_type) -- 00:01:10.504 FLOG_MAX [21239]: REQ_STRING(sessionid) -- 00:01:10.504 FLOG_MAX [21239]: REQ_STRING(detail) -- 00:01:10.504 FLOG_MAX [21239]: insert_db_record() -- 00:01:10.504 SQL [21239]: pgsql_exec() -- 00:01:10.504 SQL [21239]: About to run query: -- 00:01:10.504 SQL [21239]: INSERT INTO members_page_item (detail,item_type,member_id,page_id,title) VALUES ('This s the ttitle, This s the ttitle4331','VIDEOCARD','5','7','This s the ttitle2339') -- 00:01:10.508 SQL [21239]: PQcmdTuples: 1 -- 00:01:10.508 SQL [21239]: Affected rows: 1 -- 00:01:10.508 FLOG_MAX [21239]: SELECT currval('members_page_item_id_seq') -- 00:01:10.508 SQL [21239]: pgsql_query() -- 00:01:10.508 SQL [21239]: About to run query: -- 00:01:10.508 SQL [21239]: SELECT currval('members_page_item_id_seq') -- 00:01:10.509 SQL [21239]: Found rows: 1 -- 00:01:10.509 INFO [21239]: /AddPageCard() -- 00:01:10.509 INFO [21239]: RET: page_item_id=25 -- 00:01:10.509 INFO [21239]: RET: result=YES I GET TO BACK END -- 00:01:10.533 INFO [21239]: COREGRADE is stopping... -- 00:01:10.533 DEBUG [21239]: Closing database connection -- 00:01:10.533 SQL [21239]: pgsql_close() -- 00:01:10.467 DEBUG [21239]: Database connection successful -- 00:01:10.467 INFO [21239]: _SERVER found -- 00:01:10.467 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 00:01:10.467 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 00:01:10.467 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=3r6ecc0r5nib9af9v346kmqojpflvtgu -- 00:01:10.467 INFO [21239]: QUERY_STRING = /member/upload -- 00:01:10.467 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:01:10.533 INFO [21239]: COREGRADE is stopping... -- 00:01:10.533 DEBUG [21239]: Closing database connection -- 00:01:10.533 SQL [21239]: pgsql_close() -- 00:01:10.597 INFO [21239]: COREGRADE is starting... -- 00:01:10.597 INFO [21239]: Version from config: 1.0 -- 00:01:10.597 DEBUG [21239]: Connecting to database... -- 00:01:10.597 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:01:10.597 SQL [21239]: pgsql_db_connect() -- 00:01:10.601 DEBUG [21239]: Database connection successful -- 00:01:10.601 INFO [21239]: _SERVER found -- 00:01:10.601 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 00:01:10.601 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 00:01:10.601 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=3r6ecc0r5nib9af9v346kmqojpflvtgu -- 00:01:10.601 INFO [21239]: QUERY_STRING = /favicon.ico -- 00:01:10.601 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:01:10.612 INFO [21239]: COREGRADE is stopping... -- 00:01:10.612 DEBUG [21239]: Closing database connection -- 00:01:10.612 SQL [21239]: pgsql_close() -- 00:01:59.783 INFO [21209]: COREGRADE is starting... -- 00:01:59.784 INFO [21209]: Version from config: 1.0 -- 00:01:59.784 DEBUG [21209]: Connecting to database... -- 00:01:59.784 DEBUG [21209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:01:59.784 SQL [21209]: pgsql_db_connect() -- 00:01:59.788 DEBUG [21209]: Database connection successful -- 00:01:59.788 INFO [21209]: _SERVER found -- 00:01:59.788 INFO [21209]: REMOTE_ADDR = 192.168.1.13 -- 00:01:59.788 INFO [21209]: SERVER_NAME = oameye.works.coregrade.com -- 00:01:59.788 INFO [21209]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=3r6ecc0r5nib9af9v346kmqojpflvtgu -- 00:01:59.788 INFO [21209]: QUERY_STRING = /member/page -- 00:01:59.788 INFO [21209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:01:59.832 INFO [21209]: COREGRADE is stopping... -- 00:01:59.832 DEBUG [21209]: Closing database connection -- 00:01:59.832 SQL [21209]: pgsql_close() -- 00:02:00.501 INFO [21209]: COREGRADE is starting... -- 00:02:00.501 INFO [21209]: Version from config: 1.0 -- 00:02:00.501 DEBUG [21209]: Connecting to database... -- 00:02:00.501 DEBUG [21209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:00.501 SQL [21209]: pgsql_db_connect() -- 00:02:00.505 INFO [21207]: COREGRADE is starting... -- 00:02:00.506 INFO [21207]: Version from config: 1.0 -- 00:02:00.506 DEBUG [21207]: Connecting to database... -- 00:02:00.506 DEBUG [21207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:00.506 SQL [21207]: pgsql_db_connect() -- 00:02:00.505 DEBUG [21209]: Database connection successful -- 00:02:00.505 INFO [21209]: _SERVER found -- 00:02:00.505 INFO [21209]: REMOTE_ADDR = 192.168.1.13 -- 00:02:00.505 INFO [21209]: SERVER_NAME = oameye.works.coregrade.com -- 00:02:00.505 INFO [21209]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=3r6ecc0r5nib9af9v346kmqojpflvtgu -- 00:02:00.505 INFO [21209]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:02:00.505 INFO [21209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:02:00.517 INFO [21209]: COREGRADE is stopping... -- 00:02:00.517 DEBUG [21209]: Closing database connection -- 00:02:00.517 SQL [21209]: pgsql_close() -- 00:02:00.519 INFO [21485]: COREGRADE is starting... -- 00:02:00.519 INFO [21485]: Version from config: 1.0 -- 00:02:00.519 DEBUG [21485]: Connecting to database... -- 00:02:00.519 DEBUG [21485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:00.519 SQL [21485]: pgsql_db_connect() -- 00:02:00.509 DEBUG [21207]: Database connection successful -- 00:02:00.509 INFO [21207]: _SERVER found -- 00:02:00.509 INFO [21207]: REMOTE_ADDR = 192.168.1.13 -- 00:02:00.509 INFO [21207]: SERVER_NAME = oameye.works.coregrade.com -- 00:02:00.509 INFO [21207]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=3r6ecc0r5nib9af9v346kmqojpflvtgu -- 00:02:00.509 INFO [21207]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 00:02:00.509 INFO [21207]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:02:00.522 INFO [21207]: COREGRADE is stopping... -- 00:02:00.522 DEBUG [21207]: Closing database connection -- 00:02:00.522 SQL [21207]: pgsql_close() -- 00:02:00.523 DEBUG [21485]: Database connection successful -- 00:02:00.523 INFO [21485]: _SERVER found -- 00:02:00.523 INFO [21485]: REMOTE_ADDR = 192.168.1.13 -- 00:02:00.523 INFO [21485]: SERVER_NAME = oameye.works.coregrade.com -- 00:02:00.523 INFO [21485]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=3r6ecc0r5nib9af9v346kmqojpflvtgu -- 00:02:00.523 INFO [21485]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 00:02:00.523 INFO [21485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:02:00.538 INFO [21485]: COREGRADE is stopping... -- 00:02:00.538 DEBUG [21485]: Closing database connection -- 00:02:00.538 SQL [21485]: pgsql_close() -- 00:02:08.500 INFO [21208]: COREGRADE is starting... -- 00:02:08.500 INFO [21208]: Version from config: 1.0 -- 00:02:08.500 DEBUG [21208]: Connecting to database... -- 00:02:08.500 DEBUG [21208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:08.500 SQL [21208]: pgsql_db_connect() -- 00:02:08.504 DEBUG [21208]: Database connection successful -- 00:02:08.504 INFO [21208]: _SERVER found -- 00:02:08.504 INFO [21208]: REMOTE_ADDR = 192.168.1.13 -- 00:02:08.504 INFO [21208]: SERVER_NAME = oameye.works.coregrade.com -- 00:02:08.504 INFO [21208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=3r6ecc0r5nib9af9v346kmqojpflvtgu -- 00:02:08.504 INFO [21208]: QUERY_STRING = /member/viewCardAddAction -- 00:02:08.504 INFO [21208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:02:08.536 INFO [21208]: COREGRADE is stopping... -- 00:02:08.536 DEBUG [21208]: Closing database connection -- 00:02:08.536 SQL [21208]: pgsql_close() -- 00:02:15.607 INFO [21210]: COREGRADE is starting... -- 00:02:15.607 INFO [21210]: Version from config: 1.0 -- 00:02:15.607 DEBUG [21210]: Connecting to database... -- 00:02:15.607 DEBUG [21210]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:15.607 SQL [21210]: pgsql_db_connect() -- 00:02:15.645 INFO [21210]: COREGRADE is starting... -- 00:02:15.645 INFO [21210]: Version from config: 1.0 -- 00:02:15.645 DEBUG [21210]: Connecting to database... -- 00:02:15.645 DEBUG [21210]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:15.645 SQL [21210]: pgsql_db_connect() -- 00:02:15.649 DEBUG [21210]: Database connection successful -- 00:02:15.649 INFO [21210]: _SERVER found -- 00:02:15.649 INFO [21210]: REMOTE_ADDR = 192.168.1.13 -- 00:02:15.649 INFO [21210]: SERVER_NAME = oameye.works.coregrade.com -- 00:02:15.649 INFO [21210]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=3r6ecc0r5nib9af9v346kmqojpflvtgu -- 00:02:15.649 INFO [21210]: QUERY_STRING = -- 00:02:15.649 INFO [21210]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:02:15.649 INFO [21210]: SystemStatus()09-09-********~************ -- 00:02:15.649 INFO [21210]: long coregrade_api_main(CVars in, CVars &out) -- 00:02:15.649 INFO [21210]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 00:02:15.649 INFO [21210]: account calls -- 00:02:15.649 INFO [21210]: account_calls() -- 00:02:15.649 INFO [21210]: AddPageCard() -- 00:02:15.649 FLOG_MAX [21210]: REQ_STRING(title) -- 00:02:15.649 FLOG_MAX [21210]: REQ_STRING(item_type) -- 00:02:15.650 FLOG_MAX [21210]: REQ_STRING(sessionid) -- 00:02:15.650 FLOG_MAX [21210]: REQ_STRING(detail) -- 00:02:15.650 FLOG_MAX [21210]: insert_db_record() -- 00:02:15.650 SQL [21210]: pgsql_exec() -- 00:02:15.650 SQL [21210]: About to run query: -- 00:02:15.650 SQL [21210]: INSERT INTO members_page_item (detail,item_type,member_id,page_id,title) VALUES ('This s the ttitle, This s the ttitle710','VIDEOCARD','5','7','This s the ttitle4973') -- 00:02:15.656 SQL [21210]: PQcmdTuples: 1 -- 00:02:15.656 SQL [21210]: Affected rows: 1 -- 00:02:15.656 FLOG_MAX [21210]: SELECT currval('members_page_item_id_seq') -- 00:02:15.656 SQL [21210]: pgsql_query() -- 00:02:15.656 SQL [21210]: About to run query: -- 00:02:15.656 SQL [21210]: SELECT currval('members_page_item_id_seq') -- 00:02:15.657 SQL [21210]: Found rows: 1 -- 00:02:15.657 INFO [21210]: /AddPageCard() -- 00:02:15.657 INFO [21210]: RET: page_item_id=26 -- 00:02:15.657 INFO [21210]: RET: result=YES I GET TO BACK END -- 00:02:15.677 INFO [21210]: COREGRADE is stopping... -- 00:02:15.678 DEBUG [21210]: Closing database connection -- 00:02:15.678 SQL [21210]: pgsql_close() -- 00:02:15.612 DEBUG [21210]: Database connection successful -- 00:02:15.612 INFO [21210]: _SERVER found -- 00:02:15.612 INFO [21210]: REMOTE_ADDR = 192.168.1.13 -- 00:02:15.612 INFO [21210]: SERVER_NAME = oameye.works.coregrade.com -- 00:02:15.612 INFO [21210]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=3r6ecc0r5nib9af9v346kmqojpflvtgu -- 00:02:15.612 INFO [21210]: QUERY_STRING = /member/upload -- 00:02:15.612 INFO [21210]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:02:15.678 INFO [21210]: COREGRADE is stopping... -- 00:02:15.678 DEBUG [21210]: Closing database connection -- 00:02:15.678 SQL [21210]: pgsql_close() -- 00:02:15.780 INFO [21210]: COREGRADE is starting... -- 00:02:15.780 INFO [21210]: Version from config: 1.0 -- 00:02:15.780 DEBUG [21210]: Connecting to database... -- 00:02:15.780 DEBUG [21210]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:15.780 SQL [21210]: pgsql_db_connect() -- 00:02:15.784 DEBUG [21210]: Database connection successful -- 00:02:15.784 INFO [21210]: _SERVER found -- 00:02:15.784 INFO [21210]: REMOTE_ADDR = 192.168.1.13 -- 00:02:15.784 INFO [21210]: SERVER_NAME = oameye.works.coregrade.com -- 00:02:15.784 INFO [21210]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=rcuj348f6kv5cdvvamq8o4rqaihmjq27 -- 00:02:15.784 INFO [21210]: QUERY_STRING = /member/page -- 00:02:15.784 INFO [21210]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:02:15.827 INFO [21210]: COREGRADE is stopping... -- 00:02:15.827 DEBUG [21210]: Closing database connection -- 00:02:15.827 SQL [21210]: pgsql_close() -- 00:02:16.109 INFO [21488]: COREGRADE is starting... -- 00:02:16.110 INFO [21488]: Version from config: 1.0 -- 00:02:16.110 DEBUG [21488]: Connecting to database... -- 00:02:16.110 DEBUG [21488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:16.110 SQL [21488]: pgsql_db_connect() -- 00:02:16.114 DEBUG [21488]: Database connection successful -- 00:02:16.114 INFO [21488]: _SERVER found -- 00:02:16.114 INFO [21488]: REMOTE_ADDR = 192.168.1.13 -- 00:02:16.114 INFO [21488]: SERVER_NAME = oameye.works.coregrade.com -- 00:02:16.114 INFO [21488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=rcuj348f6kv5cdvvamq8o4rqaihmjq27 -- 00:02:16.114 INFO [21488]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:02:16.114 INFO [21488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:02:16.127 INFO [21488]: COREGRADE is stopping... -- 00:02:16.127 DEBUG [21488]: Closing database connection -- 00:02:16.127 SQL [21488]: pgsql_close() -- 00:02:16.498 INFO [21488]: COREGRADE is starting... -- 00:02:16.498 INFO [21488]: Version from config: 1.0 -- 00:02:16.498 DEBUG [21488]: Connecting to database... -- 00:02:16.498 DEBUG [21488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:16.498 SQL [21488]: pgsql_db_connect() -- 00:02:16.502 DEBUG [21488]: Database connection successful -- 00:02:16.502 INFO [21488]: _SERVER found -- 00:02:16.502 INFO [21488]: REMOTE_ADDR = 192.168.1.13 -- 00:02:16.502 INFO [21488]: SERVER_NAME = oameye.works.coregrade.com -- 00:02:16.502 INFO [21488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=rcuj348f6kv5cdvvamq8o4rqaihmjq27 -- 00:02:16.502 INFO [21488]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:02:16.502 INFO [21488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:02:16.514 INFO [21488]: COREGRADE is stopping... -- 00:02:16.514 DEBUG [21488]: Closing database connection -- 00:02:16.514 SQL [21488]: pgsql_close() -- 00:02:16.590 INFO [21488]: COREGRADE is starting... -- 00:02:16.590 INFO [21488]: Version from config: 1.0 -- 00:02:16.590 DEBUG [21488]: Connecting to database... -- 00:02:16.590 DEBUG [21488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:16.590 SQL [21488]: pgsql_db_connect() -- 00:02:16.592 INFO [21210]: COREGRADE is starting... -- 00:02:16.593 INFO [21210]: Version from config: 1.0 -- 00:02:16.593 DEBUG [21210]: Connecting to database... -- 00:02:16.593 DEBUG [21210]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:16.593 SQL [21210]: pgsql_db_connect() -- 00:02:16.594 DEBUG [21488]: Database connection successful -- 00:02:16.594 INFO [21488]: _SERVER found -- 00:02:16.594 INFO [21488]: REMOTE_ADDR = 192.168.1.13 -- 00:02:16.594 INFO [21488]: SERVER_NAME = oameye.works.coregrade.com -- 00:02:16.594 INFO [21488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=rcuj348f6kv5cdvvamq8o4rqaihmjq27 -- 00:02:16.594 INFO [21488]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 00:02:16.594 INFO [21488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:02:16.606 INFO [21488]: COREGRADE is stopping... -- 00:02:16.606 DEBUG [21488]: Closing database connection -- 00:02:16.606 SQL [21488]: pgsql_close() -- 00:02:16.597 DEBUG [21210]: Database connection successful -- 00:02:16.597 INFO [21210]: _SERVER found -- 00:02:16.597 INFO [21210]: REMOTE_ADDR = 192.168.1.13 -- 00:02:16.597 INFO [21210]: SERVER_NAME = oameye.works.coregrade.com -- 00:02:16.597 INFO [21210]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=rcuj348f6kv5cdvvamq8o4rqaihmjq27 -- 00:02:16.597 INFO [21210]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 00:02:16.597 INFO [21210]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:02:16.608 INFO [21210]: COREGRADE is stopping... -- 00:02:16.608 DEBUG [21210]: Closing database connection -- 00:02:16.608 SQL [21210]: pgsql_close() -- 00:05:40.674 INFO [21206]: COREGRADE is starting... -- 00:05:40.674 INFO [21206]: Version from config: 1.0 -- 00:05:40.674 DEBUG [21206]: Connecting to database... -- 00:05:40.674 DEBUG [21206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:05:40.674 SQL [21206]: pgsql_db_connect() -- 00:05:40.678 DEBUG [21206]: Database connection successful -- 00:05:40.678 INFO [21206]: _SERVER found -- 00:05:40.678 INFO [21206]: REMOTE_ADDR = 192.168.1.13 -- 00:05:40.678 INFO [21206]: SERVER_NAME = oameye.works.coregrade.com -- 00:05:40.678 INFO [21206]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=rcuj348f6kv5cdvvamq8o4rqaihmjq27 -- 00:05:40.678 INFO [21206]: QUERY_STRING = /member/viewCardAddAction -- 00:05:40.678 INFO [21206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:05:40.712 INFO [21206]: COREGRADE is stopping... -- 00:05:40.712 DEBUG [21206]: Closing database connection -- 00:05:40.712 SQL [21206]: pgsql_close() -- 00:06:41.623 INFO [21329]: COREGRADE is starting... -- 00:06:41.623 INFO [21329]: Version from config: 1.0 -- 00:06:41.623 DEBUG [21329]: Connecting to database... -- 00:06:41.624 DEBUG [21329]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:06:41.624 SQL [21329]: pgsql_db_connect() -- 00:06:41.628 DEBUG [21329]: Database connection successful -- 00:06:41.628 INFO [21329]: _SERVER found -- 00:06:41.628 INFO [21329]: REMOTE_ADDR = 192.168.1.13 -- 00:06:41.628 INFO [21329]: SERVER_NAME = oameye.works.coregrade.com -- 00:06:41.628 INFO [21329]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=rcuj348f6kv5cdvvamq8o4rqaihmjq27 -- 00:06:41.628 INFO [21329]: QUERY_STRING = /member/page -- 00:06:41.628 INFO [21329]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:06:41.671 INFO [21329]: COREGRADE is stopping... -- 00:06:41.671 DEBUG [21329]: Closing database connection -- 00:06:41.671 SQL [21329]: pgsql_close() -- 00:06:42.008 INFO [21329]: COREGRADE is starting... -- 00:06:42.008 INFO [21329]: Version from config: 1.0 -- 00:06:42.008 DEBUG [21329]: Connecting to database... -- 00:06:42.008 DEBUG [21329]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:06:42.008 SQL [21329]: pgsql_db_connect() -- 00:06:42.012 DEBUG [21329]: Database connection successful -- 00:06:42.012 INFO [21329]: _SERVER found -- 00:06:42.012 INFO [21329]: REMOTE_ADDR = 192.168.1.13 -- 00:06:42.012 INFO [21329]: SERVER_NAME = oameye.works.coregrade.com -- 00:06:42.012 INFO [21329]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=rcuj348f6kv5cdvvamq8o4rqaihmjq27 -- 00:06:42.012 INFO [21329]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:06:42.012 INFO [21329]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:06:42.023 INFO [21329]: COREGRADE is stopping... -- 00:06:42.023 DEBUG [21329]: Closing database connection -- 00:06:42.023 SQL [21329]: pgsql_close() -- 00:06:42.249 INFO [21329]: COREGRADE is starting... -- 00:06:42.249 INFO [21329]: Version from config: 1.0 -- 00:06:42.249 DEBUG [21329]: Connecting to database... -- 00:06:42.249 DEBUG [21329]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:06:42.249 SQL [21329]: pgsql_db_connect() -- 00:06:42.259 INFO [21239]: COREGRADE is starting... -- 00:06:42.259 INFO [21239]: Version from config: 1.0 -- 00:06:42.259 DEBUG [21239]: Connecting to database... -- 00:06:42.259 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:06:42.259 SQL [21239]: pgsql_db_connect() -- 00:06:42.254 DEBUG [21329]: Database connection successful -- 00:06:42.254 INFO [21329]: _SERVER found -- 00:06:42.254 INFO [21329]: REMOTE_ADDR = 192.168.1.13 -- 00:06:42.254 INFO [21329]: SERVER_NAME = oameye.works.coregrade.com -- 00:06:42.254 INFO [21329]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=rcuj348f6kv5cdvvamq8o4rqaihmjq27 -- 00:06:42.254 INFO [21329]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 00:06:42.254 INFO [21329]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:06:42.265 INFO [21329]: COREGRADE is stopping... -- 00:06:42.265 DEBUG [21329]: Closing database connection -- 00:06:42.265 SQL [21329]: pgsql_close() -- 00:06:42.263 DEBUG [21239]: Database connection successful -- 00:06:42.263 INFO [21239]: _SERVER found -- 00:06:42.263 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 00:06:42.263 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 00:06:42.263 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=rcuj348f6kv5cdvvamq8o4rqaihmjq27 -- 00:06:42.263 INFO [21239]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 00:06:42.263 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:06:42.275 INFO [21239]: COREGRADE is stopping... -- 00:06:42.275 DEBUG [21239]: Closing database connection -- 00:06:42.275 SQL [21239]: pgsql_close() -- 00:06:42.361 INFO [21239]: COREGRADE is starting... -- 00:06:42.361 INFO [21239]: Version from config: 1.0 -- 00:06:42.362 DEBUG [21239]: Connecting to database... -- 00:06:42.362 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:06:42.362 SQL [21239]: pgsql_db_connect() -- 00:06:42.366 DEBUG [21239]: Database connection successful -- 00:06:42.366 INFO [21239]: _SERVER found -- 00:06:42.366 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 00:06:42.366 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 00:06:42.366 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=rcuj348f6kv5cdvvamq8o4rqaihmjq27 -- 00:06:42.366 INFO [21239]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:06:42.366 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:06:42.377 INFO [21239]: COREGRADE is stopping... -- 00:06:42.377 DEBUG [21239]: Closing database connection -- 00:06:42.377 SQL [21239]: pgsql_close() -- 00:06:45.423 INFO [21239]: COREGRADE is starting... -- 00:06:45.423 INFO [21239]: Version from config: 1.0 -- 00:06:45.423 DEBUG [21239]: Connecting to database... -- 00:06:45.423 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:06:45.423 SQL [21239]: pgsql_db_connect() -- 00:06:45.427 DEBUG [21239]: Database connection successful -- 00:06:45.427 INFO [21239]: _SERVER found -- 00:06:45.427 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 00:06:45.427 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 00:06:45.427 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=rcuj348f6kv5cdvvamq8o4rqaihmjq27 -- 00:06:45.427 INFO [21239]: QUERY_STRING = /member/viewCardAddAction -- 00:06:45.427 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:06:45.458 INFO [21239]: COREGRADE is stopping... -- 00:06:45.458 DEBUG [21239]: Closing database connection -- 00:06:45.458 SQL [21239]: pgsql_close() -- 00:15:40.497 INFO [21207]: COREGRADE is starting... -- 00:15:40.498 INFO [21207]: Version from config: 1.0 -- 00:15:40.498 DEBUG [21207]: Connecting to database... -- 00:15:40.498 DEBUG [21207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:15:40.498 SQL [21207]: pgsql_db_connect() -- 00:15:40.536 INFO [21207]: COREGRADE is starting... -- 00:15:40.537 INFO [21207]: Version from config: 1.0 -- 00:15:40.537 DEBUG [21207]: Connecting to database... -- 00:15:40.537 DEBUG [21207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:15:40.537 SQL [21207]: pgsql_db_connect() -- 00:15:40.541 DEBUG [21207]: Database connection successful -- 00:15:40.541 INFO [21207]: _SERVER found -- 00:15:40.541 INFO [21207]: REMOTE_ADDR = 192.168.1.13 -- 00:15:40.541 INFO [21207]: SERVER_NAME = oameye.works.coregrade.com -- 00:15:40.541 INFO [21207]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=rcuj348f6kv5cdvvamq8o4rqaihmjq27 -- 00:15:40.541 INFO [21207]: QUERY_STRING = -- 00:15:40.541 INFO [21207]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:15:40.541 INFO [21207]: SystemStatus()09-09-********~************ -- 00:15:40.541 INFO [21207]: long coregrade_api_main(CVars in, CVars &out) -- 00:15:40.541 INFO [21207]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 00:15:40.541 INFO [21207]: account calls -- 00:15:40.541 INFO [21207]: account_calls() -- 00:15:40.541 INFO [21207]: LoginCoreGradeAccount() -- 00:15:40.541 FLOG_MAX [21207]: REQ_STRING(username) -- 00:15:40.541 FLOG_MAX [21207]: REQ_STRING(password) -- 00:15:40.541 FLOG_MAX [21207]: REQ_STRING(sessionid) -- 00:15:40.541 FLOG_MAX [21207]: long load_db_record( CVars &rec, const char * query, ... ) -- 00:15:40.541 SQL [21207]: pgsql_query() -- 00:15:40.541 SQL [21207]: About to run query: -- 00:15:40.541 SQL [21207]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 00:15:40.545 SQL [21207]: Found rows: 1 -- 00:15:40.545 FLOG_MAX [21207]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 00:15:40.545 INFO [21207]: long SessionCheck(long uid, const char *sessionid, int create ) -- 00:15:40.545 SQL [21207]: pgsql_exec() -- 00:15:40.545 SQL [21207]: About to run query: -- 00:15:40.545 SQL [21207]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 00:15:40.546 SQL [21207]: PQcmdTuples: 1 -- 00:15:40.546 SQL [21207]: Affected rows: 1 -- 00:15:40.546 SQL [21207]: pgsql_exec() -- 00:15:40.546 SQL [21207]: About to run query: -- 00:15:40.546 SQL [21207]: DELETE FROM members_session WHERE member_id=5 -- 00:15:40.547 SQL [21207]: PQcmdTuples: 0 -- 00:15:40.547 SQL [21207]: Affected rows: 0 -- 00:15:40.547 SQL [21207]: pgsql_query() -- 00:15:40.547 SQL [21207]: About to run query: -- 00:15:40.547 SQL [21207]: SELECT * FROM members_session WHERE member_id=5 AND session<>'517AD0B1001975F85DA7292A2C912CAA' -- 00:15:40.548 SQL [21207]: Found rows: 0 -- 00:15:40.548 SQL [21207]: Found rows: 0 -- 00:15:40.548 FLOG_MAX [21207]: long load_db_record( CVars &rec, const char * query, ... ) -- 00:15:40.548 SQL [21207]: pgsql_query() -- 00:15:40.548 SQL [21207]: About to run query: -- 00:15:40.548 SQL [21207]: SELECT * FROM members_session WHERE member_id=5 AND session='517AD0B1001975F85DA7292A2C912CAA' -- 00:15:40.548 SQL [21207]: Found rows: 0 -- 00:15:40.548 SQL [21207]: Found rows: 0 -- 00:15:40.548 FLOG_MAX [21207]: insert_db_record() -- 00:15:40.548 SQL [21207]: pgsql_exec() -- 00:15:40.548 SQL [21207]: About to run query: -- 00:15:40.548 SQL [21207]: INSERT INTO members_session (member_id,session) VALUES ('5','517AD0B1001975F85DA7292A2C912CAA') -- 00:15:40.550 SQL [21207]: PQcmdTuples: 1 -- 00:15:40.550 SQL [21207]: Affected rows: 1 -- 00:15:40.550 FLOG_MAX [21207]: SELECT currval('members_session_id_seq') -- 00:15:40.550 SQL [21207]: pgsql_query() -- 00:15:40.550 SQL [21207]: About to run query: -- 00:15:40.550 SQL [21207]: SELECT currval('members_session_id_seq') -- 00:15:40.550 SQL [21207]: Found rows: 1 -- 00:15:40.550 INFO [21207]: CreateDefaultPage() -- 00:15:40.550 FLOG_MAX [21207]: long load_db_record( CVars &rec, const char * query, ... ) -- 00:15:40.550 SQL [21207]: pgsql_query() -- 00:15:40.550 SQL [21207]: About to run query: -- 00:15:40.550 SQL [21207]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 00:15:40.551 SQL [21207]: Found rows: 1 -- 00:15:40.551 FLOG_MAX [21207]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 00:15:40.551 SQL [21207]: pgsql_query() -- 00:15:40.551 SQL [21207]: About to run query: -- 00:15:40.551 SQL [21207]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 00:15:40.551 SQL [21207]: Found rows: 1 -- 00:15:40.551 INFO [21207]: /CreateDefaultPage() -- 00:15:40.551 INFO [21207]: /LoginCoreGradeAccount() -- 00:15:40.551 INFO [21207]: RET: added=2020-02-05 06:47:23.982154 -- 00:15:40.551 INFO [21207]: RET: email=ameye+11@chiefsoft.com -- 00:15:40.551 INFO [21207]: RET: firstname=Olu -- 00:15:40.551 INFO [21207]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 00:15:40.551 INFO [21207]: RET: id=5 -- 00:15:40.551 INFO [21207]: RET: last_login= -- 00:15:40.551 INFO [21207]: RET: lastname=Amey -- 00:15:40.551 INFO [21207]: RET: loc=192.168.1.13 -- 00:15:40.551 INFO [21207]: RET: member_id=5 -- 00:15:40.551 INFO [21207]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 00:15:40.551 INFO [21207]: RET: phone= -- 00:15:40.551 INFO [21207]: RET: pid= -- 00:15:40.551 INFO [21207]: RET: result=YES I GET TO BACK END -- 00:15:40.551 INFO [21207]: RET: sessionid=517AD0B1001975F85DA7292A2C912CAA -- 00:15:40.551 INFO [21207]: RET: status=1 -- 00:15:40.551 INFO [21207]: RET: stauts=OK -- 00:15:40.551 INFO [21207]: RET: username=ameye+11@chiefsoft.com -- 00:15:40.551 INFO [21207]: RET: verified= -- 00:15:40.553 INFO [21207]: COREGRADE is stopping... -- 00:15:40.553 DEBUG [21207]: Closing database connection -- 00:15:40.553 SQL [21207]: pgsql_close() -- 00:15:40.502 DEBUG [21207]: Database connection successful -- 00:15:40.502 INFO [21207]: _SERVER found -- 00:15:40.502 INFO [21207]: REMOTE_ADDR = 192.168.1.13 -- 00:15:40.502 INFO [21207]: SERVER_NAME = oameye.works.coregrade.com -- 00:15:40.502 INFO [21207]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=rcuj348f6kv5cdvvamq8o4rqaihmjq27 -- 00:15:40.502 INFO [21207]: QUERY_STRING = /auth -- 00:15:40.502 INFO [21207]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:15:40.554 INFO [21207]: COREGRADE is stopping... -- 00:15:40.554 DEBUG [21207]: Closing database connection -- 00:15:40.554 SQL [21207]: pgsql_close() -- 00:15:40.599 INFO [21207]: COREGRADE is starting... -- 00:15:40.599 INFO [21207]: Version from config: 1.0 -- 00:15:40.599 DEBUG [21207]: Connecting to database... -- 00:15:40.599 DEBUG [21207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:15:40.599 SQL [21207]: pgsql_db_connect() -- 00:15:40.603 DEBUG [21207]: Database connection successful -- 00:15:40.603 INFO [21207]: _SERVER found -- 00:15:40.603 INFO [21207]: REMOTE_ADDR = 192.168.1.13 -- 00:15:40.603 INFO [21207]: SERVER_NAME = oameye.works.coregrade.com -- 00:15:40.603 INFO [21207]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=ncklo83tbu1ol9ndq10d8h8v10rseqbs -- 00:15:40.603 INFO [21207]: QUERY_STRING = /member/index -- 00:15:40.603 INFO [21207]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:15:40.643 INFO [21207]: COREGRADE is stopping... -- 00:15:40.643 DEBUG [21207]: Closing database connection -- 00:15:40.643 SQL [21207]: pgsql_close() -- 00:15:40.973 INFO [21207]: COREGRADE is starting... -- 00:15:40.973 INFO [21207]: Version from config: 1.0 -- 00:15:40.973 DEBUG [21207]: Connecting to database... -- 00:15:40.973 DEBUG [21207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:15:40.973 SQL [21207]: pgsql_db_connect() -- 00:15:40.978 DEBUG [21207]: Database connection successful -- 00:15:40.978 INFO [21207]: _SERVER found -- 00:15:40.978 INFO [21207]: REMOTE_ADDR = 192.168.1.13 -- 00:15:40.978 INFO [21207]: SERVER_NAME = oameye.works.coregrade.com -- 00:15:40.978 INFO [21207]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=ncklo83tbu1ol9ndq10d8h8v10rseqbs -- 00:15:40.978 INFO [21207]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:15:40.978 INFO [21207]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:15:40.989 INFO [21207]: COREGRADE is stopping... -- 00:15:40.989 DEBUG [21207]: Closing database connection -- 00:15:40.989 SQL [21207]: pgsql_close() -- 00:15:41.026 INFO [21207]: COREGRADE is starting... -- 00:15:41.026 INFO [21207]: Version from config: 1.0 -- 00:15:41.026 DEBUG [21207]: Connecting to database... -- 00:15:41.026 DEBUG [21207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:15:41.026 SQL [21207]: pgsql_db_connect() -- 00:15:41.030 DEBUG [21207]: Database connection successful -- 00:15:41.030 INFO [21207]: _SERVER found -- 00:15:41.030 INFO [21207]: REMOTE_ADDR = 192.168.1.13 -- 00:15:41.030 INFO [21207]: SERVER_NAME = oameye.works.coregrade.com -- 00:15:41.030 INFO [21207]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=ncklo83tbu1ol9ndq10d8h8v10rseqbs -- 00:15:41.030 INFO [21207]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:15:41.030 INFO [21207]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:15:41.041 INFO [21207]: COREGRADE is stopping... -- 00:15:41.041 DEBUG [21207]: Closing database connection -- 00:15:41.041 SQL [21207]: pgsql_close() -- 00:15:48.843 INFO [21209]: COREGRADE is starting... -- 00:15:48.843 INFO [21209]: Version from config: 1.0 -- 00:15:48.843 DEBUG [21209]: Connecting to database... -- 00:15:48.843 DEBUG [21209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:15:48.843 SQL [21209]: pgsql_db_connect() -- 00:15:48.847 DEBUG [21209]: Database connection successful -- 00:15:48.847 INFO [21209]: _SERVER found -- 00:15:48.847 INFO [21209]: REMOTE_ADDR = 192.168.1.13 -- 00:15:48.847 INFO [21209]: SERVER_NAME = oameye.works.coregrade.com -- 00:15:48.847 INFO [21209]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=ncklo83tbu1ol9ndq10d8h8v10rseqbs -- 00:15:48.847 INFO [21209]: QUERY_STRING = /member/page -- 00:15:48.847 INFO [21209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:15:48.891 INFO [21209]: COREGRADE is stopping... -- 00:15:48.891 DEBUG [21209]: Closing database connection -- 00:15:48.891 SQL [21209]: pgsql_close() -- 00:15:49.031 INFO [21208]: COREGRADE is starting... -- 00:15:49.032 INFO [21208]: Version from config: 1.0 -- 00:15:49.032 DEBUG [21208]: Connecting to database... -- 00:15:49.032 DEBUG [21208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:15:49.032 SQL [21208]: pgsql_db_connect() -- 00:15:49.036 DEBUG [21208]: Database connection successful -- 00:15:49.036 INFO [21208]: _SERVER found -- 00:15:49.036 INFO [21208]: REMOTE_ADDR = 192.168.1.13 -- 00:15:49.036 INFO [21208]: SERVER_NAME = oameye.works.coregrade.com -- 00:15:49.036 INFO [21208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=ncklo83tbu1ol9ndq10d8h8v10rseqbs -- 00:15:49.036 INFO [21208]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:15:49.036 INFO [21208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:15:49.048 INFO [21208]: COREGRADE is stopping... -- 00:15:49.048 DEBUG [21208]: Closing database connection -- 00:15:49.048 SQL [21208]: pgsql_close() -- 00:15:49.203 INFO [21208]: COREGRADE is starting... -- 00:15:49.203 INFO [21208]: Version from config: 1.0 -- 00:15:49.203 DEBUG [21208]: Connecting to database... -- 00:15:49.203 DEBUG [21208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:15:49.203 SQL [21208]: pgsql_db_connect() -- 00:15:49.207 DEBUG [21208]: Database connection successful -- 00:15:49.207 INFO [21208]: _SERVER found -- 00:15:49.207 INFO [21208]: REMOTE_ADDR = 192.168.1.13 -- 00:15:49.207 INFO [21208]: SERVER_NAME = oameye.works.coregrade.com -- 00:15:49.207 INFO [21208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=ncklo83tbu1ol9ndq10d8h8v10rseqbs -- 00:15:49.207 INFO [21208]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:15:49.207 INFO [21208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:15:49.218 INFO [21208]: COREGRADE is stopping... -- 00:15:49.218 DEBUG [21208]: Closing database connection -- 00:15:49.218 SQL [21208]: pgsql_close() -- 00:15:56.669 INFO [21210]: COREGRADE is starting... -- 00:15:56.670 INFO [21210]: Version from config: 1.0 -- 00:15:56.670 DEBUG [21210]: Connecting to database... -- 00:15:56.670 DEBUG [21210]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:15:56.670 SQL [21210]: pgsql_db_connect() -- 00:15:56.674 DEBUG [21210]: Database connection successful -- 00:15:56.674 INFO [21210]: _SERVER found -- 00:15:56.674 INFO [21210]: REMOTE_ADDR = 192.168.1.13 -- 00:15:56.674 INFO [21210]: SERVER_NAME = oameye.works.coregrade.com -- 00:15:56.674 INFO [21210]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=ncklo83tbu1ol9ndq10d8h8v10rseqbs -- 00:15:56.674 INFO [21210]: QUERY_STRING = /member/viewCardAddAction -- 00:15:56.674 INFO [21210]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:15:56.706 INFO [21210]: COREGRADE is stopping... -- 00:15:56.706 DEBUG [21210]: Closing database connection -- 00:15:56.706 SQL [21210]: pgsql_close() -- 00:32:04.979 INFO [21306]: COREGRADE is starting... -- 00:32:04.980 INFO [21306]: Version from config: 1.0 -- 00:32:04.980 DEBUG [21306]: Connecting to database... -- 00:32:04.980 DEBUG [21306]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:32:04.980 SQL [21306]: pgsql_db_connect() -- 00:32:04.984 DEBUG [21306]: Database connection successful -- 00:32:04.984 INFO [21306]: _SERVER found -- 00:32:04.984 INFO [21306]: REMOTE_ADDR = 192.168.1.13 -- 00:32:04.984 INFO [21306]: SERVER_NAME = oameye.works.coregrade.com -- 00:32:04.984 INFO [21306]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=ncklo83tbu1ol9ndq10d8h8v10rseqbs -- 00:32:04.984 INFO [21306]: QUERY_STRING = /member/viewCardAddAction -- 00:32:04.984 INFO [21306]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:32:05.018 INFO [21306]: COREGRADE is stopping... -- 00:32:05.018 DEBUG [21306]: Closing database connection -- 00:32:05.018 SQL [21306]: pgsql_close() -- 00:33:38.112 INFO [21329]: COREGRADE is starting... -- 00:33:38.113 INFO [21329]: Version from config: 1.0 -- 00:33:38.113 DEBUG [21329]: Connecting to database... -- 00:33:38.113 DEBUG [21329]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:33:38.113 SQL [21329]: pgsql_db_connect() -- 00:33:38.117 DEBUG [21329]: Database connection successful -- 00:33:38.117 INFO [21329]: _SERVER found -- 00:33:38.117 INFO [21329]: REMOTE_ADDR = 192.168.1.13 -- 00:33:38.117 INFO [21329]: SERVER_NAME = oameye.works.coregrade.com -- 00:33:38.117 INFO [21329]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=ncklo83tbu1ol9ndq10d8h8v10rseqbs -- 00:33:38.117 INFO [21329]: QUERY_STRING = /member/viewCardAddAction -- 00:33:38.117 INFO [21329]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:33:38.149 INFO [21329]: COREGRADE is stopping... -- 00:33:38.150 DEBUG [21329]: Closing database connection -- 00:33:38.150 SQL [21329]: pgsql_close() -- 00:33:38.841 INFO [21329]: COREGRADE is starting... -- 00:33:38.841 INFO [21329]: Version from config: 1.0 -- 00:33:38.841 DEBUG [21329]: Connecting to database... -- 00:33:38.841 DEBUG [21329]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:33:38.841 SQL [21329]: pgsql_db_connect() -- 00:33:38.846 DEBUG [21329]: Database connection successful -- 00:33:38.846 INFO [21329]: _SERVER found -- 00:33:38.846 INFO [21329]: REMOTE_ADDR = 192.168.1.13 -- 00:33:38.846 INFO [21329]: SERVER_NAME = oameye.works.coregrade.com -- 00:33:38.846 INFO [21329]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=ncklo83tbu1ol9ndq10d8h8v10rseqbs -- 00:33:38.846 INFO [21329]: QUERY_STRING = /member/viewCardAddAction -- 00:33:38.846 INFO [21329]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:33:38.876 INFO [21329]: COREGRADE is stopping... -- 00:33:38.876 DEBUG [21329]: Closing database connection -- 00:33:38.876 SQL [21329]: pgsql_close() -- 00:34:43.866 INFO [21239]: COREGRADE is starting... -- 00:34:43.866 INFO [21239]: Version from config: 1.0 -- 00:34:43.866 DEBUG [21239]: Connecting to database... -- 00:34:43.866 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:43.866 SQL [21239]: pgsql_db_connect() -- 00:34:43.870 DEBUG [21239]: Database connection successful -- 00:34:43.870 INFO [21239]: _SERVER found -- 00:34:43.870 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 00:34:43.870 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:43.870 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=ncklo83tbu1ol9ndq10d8h8v10rseqbs -- 00:34:43.870 INFO [21239]: QUERY_STRING = /member/viewCardAddAction -- 00:34:43.870 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:43.904 INFO [21239]: COREGRADE is stopping... -- 00:34:43.904 DEBUG [21239]: Closing database connection -- 00:34:43.904 SQL [21239]: pgsql_close() -- 00:34:45.391 INFO [21239]: COREGRADE is starting... -- 00:34:45.391 INFO [21239]: Version from config: 1.0 -- 00:34:45.391 DEBUG [21239]: Connecting to database... -- 00:34:45.391 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:45.391 SQL [21239]: pgsql_db_connect() -- 00:34:45.395 DEBUG [21239]: Database connection successful -- 00:34:45.395 INFO [21239]: _SERVER found -- 00:34:45.396 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 00:34:45.396 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:45.396 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=ncklo83tbu1ol9ndq10d8h8v10rseqbs -- 00:34:45.396 INFO [21239]: QUERY_STRING = /member/viewCardAddAction -- 00:34:45.396 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:34:45.427 INFO [21239]: COREGRADE is stopping... -- 00:34:45.427 DEBUG [21239]: Closing database connection -- 00:34:45.427 SQL [21239]: pgsql_close() -- 00:42:35.803 INFO [21485]: COREGRADE is starting... -- 00:42:35.803 INFO [21485]: Version from config: 1.0 -- 00:42:35.803 DEBUG [21485]: Connecting to database... -- 00:42:35.803 DEBUG [21485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:42:35.803 SQL [21485]: pgsql_db_connect() -- 00:42:35.808 DEBUG [21485]: Database connection successful -- 00:42:35.808 INFO [21485]: _SERVER found -- 00:42:35.808 INFO [21485]: REMOTE_ADDR = 192.168.1.13 -- 00:42:35.808 INFO [21485]: SERVER_NAME = oameye.works.coregrade.com -- 00:42:35.808 INFO [21485]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=ncklo83tbu1ol9ndq10d8h8v10rseqbs -- 00:42:35.808 INFO [21485]: QUERY_STRING = /member/viewCardAddAction -- 00:42:35.808 INFO [21485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:42:35.847 INFO [21485]: COREGRADE is stopping... -- 00:42:35.847 DEBUG [21485]: Closing database connection -- 00:42:35.847 SQL [21485]: pgsql_close() -- 00:43:43.693 INFO [21207]: COREGRADE is starting... -- 00:43:43.694 INFO [21207]: Version from config: 1.0 -- 00:43:43.694 DEBUG [21207]: Connecting to database... -- 00:43:43.694 DEBUG [21207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:43:43.694 SQL [21207]: pgsql_db_connect() -- 00:43:43.698 DEBUG [21207]: Database connection successful -- 00:43:43.698 INFO [21207]: _SERVER found -- 00:43:43.698 INFO [21207]: REMOTE_ADDR = 192.168.1.13 -- 00:43:43.698 INFO [21207]: SERVER_NAME = oameye.works.coregrade.com -- 00:43:43.698 INFO [21207]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=ncklo83tbu1ol9ndq10d8h8v10rseqbs -- 00:43:43.698 INFO [21207]: QUERY_STRING = /member/page -- 00:43:43.698 INFO [21207]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:43:43.744 INFO [21207]: COREGRADE is stopping... -- 00:43:43.744 DEBUG [21207]: Closing database connection -- 00:43:43.744 SQL [21207]: pgsql_close() -- 00:43:44.009 INFO [21209]: COREGRADE is starting... -- 00:43:44.009 INFO [21209]: Version from config: 1.0 -- 00:43:44.009 DEBUG [21209]: Connecting to database... -- 00:43:44.009 DEBUG [21209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:43:44.009 SQL [21209]: pgsql_db_connect() -- 00:43:44.014 DEBUG [21209]: Database connection successful -- 00:43:44.014 INFO [21209]: _SERVER found -- 00:43:44.014 INFO [21209]: REMOTE_ADDR = 192.168.1.13 -- 00:43:44.014 INFO [21209]: SERVER_NAME = oameye.works.coregrade.com -- 00:43:44.014 INFO [21209]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:43:44.014 INFO [21209]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:43:44.014 INFO [21209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:43:44.026 INFO [21209]: COREGRADE is stopping... -- 00:43:44.026 DEBUG [21209]: Closing database connection -- 00:43:44.026 SQL [21209]: pgsql_close() -- 00:43:44.343 INFO [21209]: COREGRADE is starting... -- 00:43:44.343 INFO [21209]: Version from config: 1.0 -- 00:43:44.343 DEBUG [21209]: Connecting to database... -- 00:43:44.343 DEBUG [21209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:43:44.343 SQL [21209]: pgsql_db_connect() -- 00:43:44.349 INFO [21207]: COREGRADE is starting... -- 00:43:44.350 INFO [21207]: Version from config: 1.0 -- 00:43:44.350 DEBUG [21207]: Connecting to database... -- 00:43:44.350 DEBUG [21207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:43:44.350 SQL [21207]: pgsql_db_connect() -- 00:43:44.347 DEBUG [21209]: Database connection successful -- 00:43:44.347 INFO [21209]: _SERVER found -- 00:43:44.347 INFO [21209]: REMOTE_ADDR = 192.168.1.13 -- 00:43:44.347 INFO [21209]: SERVER_NAME = oameye.works.coregrade.com -- 00:43:44.347 INFO [21209]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:43:44.348 INFO [21209]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 00:43:44.348 INFO [21209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:43:44.359 INFO [21209]: COREGRADE is stopping... -- 00:43:44.359 DEBUG [21209]: Closing database connection -- 00:43:44.359 SQL [21209]: pgsql_close() -- 00:43:44.354 DEBUG [21207]: Database connection successful -- 00:43:44.354 INFO [21207]: _SERVER found -- 00:43:44.354 INFO [21207]: REMOTE_ADDR = 192.168.1.13 -- 00:43:44.354 INFO [21207]: SERVER_NAME = oameye.works.coregrade.com -- 00:43:44.354 INFO [21207]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:43:44.354 INFO [21207]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 00:43:44.354 INFO [21207]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:43:44.365 INFO [21207]: COREGRADE is stopping... -- 00:43:44.365 DEBUG [21207]: Closing database connection -- 00:43:44.365 SQL [21207]: pgsql_close() -- 00:43:44.445 INFO [21207]: COREGRADE is starting... -- 00:43:44.446 INFO [21207]: Version from config: 1.0 -- 00:43:44.446 DEBUG [21207]: Connecting to database... -- 00:43:44.446 DEBUG [21207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:43:44.446 SQL [21207]: pgsql_db_connect() -- 00:43:44.450 DEBUG [21207]: Database connection successful -- 00:43:44.450 INFO [21207]: _SERVER found -- 00:43:44.450 INFO [21207]: REMOTE_ADDR = 192.168.1.13 -- 00:43:44.450 INFO [21207]: SERVER_NAME = oameye.works.coregrade.com -- 00:43:44.450 INFO [21207]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:43:44.450 INFO [21207]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:43:44.450 INFO [21207]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:43:44.461 INFO [21207]: COREGRADE is stopping... -- 00:43:44.461 DEBUG [21207]: Closing database connection -- 00:43:44.461 SQL [21207]: pgsql_close() -- 00:43:47.445 INFO [21207]: COREGRADE is starting... -- 00:43:47.445 INFO [21207]: Version from config: 1.0 -- 00:43:47.445 DEBUG [21207]: Connecting to database... -- 00:43:47.445 DEBUG [21207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:43:47.445 SQL [21207]: pgsql_db_connect() -- 00:43:47.449 DEBUG [21207]: Database connection successful -- 00:43:47.449 INFO [21207]: _SERVER found -- 00:43:47.449 INFO [21207]: REMOTE_ADDR = 192.168.1.13 -- 00:43:47.449 INFO [21207]: SERVER_NAME = oameye.works.coregrade.com -- 00:43:47.449 INFO [21207]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:43:47.449 INFO [21207]: QUERY_STRING = /member/viewCardAddAction -- 00:43:47.449 INFO [21207]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:43:47.480 INFO [21207]: COREGRADE is stopping... -- 00:43:47.480 DEBUG [21207]: Closing database connection -- 00:43:47.480 SQL [21207]: pgsql_close() -- 00:44:42.410 INFO [21208]: COREGRADE is starting... -- 00:44:42.411 INFO [21208]: Version from config: 1.0 -- 00:44:42.411 DEBUG [21208]: Connecting to database... -- 00:44:42.411 DEBUG [21208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:44:42.411 SQL [21208]: pgsql_db_connect() -- 00:44:42.415 DEBUG [21208]: Database connection successful -- 00:44:42.415 INFO [21208]: _SERVER found -- 00:44:42.415 INFO [21208]: REMOTE_ADDR = 192.168.1.13 -- 00:44:42.415 INFO [21208]: SERVER_NAME = oameye.works.coregrade.com -- 00:44:42.415 INFO [21208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:44:42.415 INFO [21208]: QUERY_STRING = /member/page -- 00:44:42.415 INFO [21208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:44:42.459 INFO [21208]: COREGRADE is stopping... -- 00:44:42.459 DEBUG [21208]: Closing database connection -- 00:44:42.459 SQL [21208]: pgsql_close() -- 00:44:42.753 INFO [21208]: COREGRADE is starting... -- 00:44:42.753 INFO [21208]: Version from config: 1.0 -- 00:44:42.753 DEBUG [21208]: Connecting to database... -- 00:44:42.753 DEBUG [21208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:44:42.753 SQL [21208]: pgsql_db_connect() -- 00:44:42.757 DEBUG [21208]: Database connection successful -- 00:44:42.757 INFO [21208]: _SERVER found -- 00:44:42.757 INFO [21208]: REMOTE_ADDR = 192.168.1.13 -- 00:44:42.757 INFO [21208]: SERVER_NAME = oameye.works.coregrade.com -- 00:44:42.757 INFO [21208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:44:42.757 INFO [21208]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:44:42.757 INFO [21208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:44:42.769 INFO [21208]: COREGRADE is stopping... -- 00:44:42.769 DEBUG [21208]: Closing database connection -- 00:44:42.769 SQL [21208]: pgsql_close() -- 00:44:43.074 INFO [21208]: COREGRADE is starting... -- 00:44:43.074 INFO [21208]: Version from config: 1.0 -- 00:44:43.074 DEBUG [21208]: Connecting to database... -- 00:44:43.074 DEBUG [21208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:44:43.074 SQL [21208]: pgsql_db_connect() -- 00:44:43.082 INFO [21210]: COREGRADE is starting... -- 00:44:43.082 INFO [21210]: Version from config: 1.0 -- 00:44:43.082 DEBUG [21210]: Connecting to database... -- 00:44:43.082 DEBUG [21210]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:44:43.082 SQL [21210]: pgsql_db_connect() -- 00:44:43.078 DEBUG [21208]: Database connection successful -- 00:44:43.078 INFO [21208]: _SERVER found -- 00:44:43.078 INFO [21208]: REMOTE_ADDR = 192.168.1.13 -- 00:44:43.078 INFO [21208]: SERVER_NAME = oameye.works.coregrade.com -- 00:44:43.078 INFO [21208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:44:43.078 INFO [21208]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 00:44:43.078 INFO [21208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:44:43.090 INFO [21208]: COREGRADE is stopping... -- 00:44:43.090 DEBUG [21208]: Closing database connection -- 00:44:43.090 SQL [21208]: pgsql_close() -- 00:44:43.086 DEBUG [21210]: Database connection successful -- 00:44:43.086 INFO [21210]: _SERVER found -- 00:44:43.086 INFO [21210]: REMOTE_ADDR = 192.168.1.13 -- 00:44:43.086 INFO [21210]: SERVER_NAME = oameye.works.coregrade.com -- 00:44:43.086 INFO [21210]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:44:43.086 INFO [21210]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 00:44:43.086 INFO [21210]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:44:43.098 INFO [21210]: COREGRADE is stopping... -- 00:44:43.098 DEBUG [21210]: Closing database connection -- 00:44:43.098 SQL [21210]: pgsql_close() -- 00:44:43.168 INFO [21210]: COREGRADE is starting... -- 00:44:43.169 INFO [21210]: Version from config: 1.0 -- 00:44:43.169 DEBUG [21210]: Connecting to database... -- 00:44:43.169 DEBUG [21210]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:44:43.169 SQL [21210]: pgsql_db_connect() -- 00:44:43.172 DEBUG [21210]: Database connection successful -- 00:44:43.172 INFO [21210]: _SERVER found -- 00:44:43.172 INFO [21210]: REMOTE_ADDR = 192.168.1.13 -- 00:44:43.172 INFO [21210]: SERVER_NAME = oameye.works.coregrade.com -- 00:44:43.172 INFO [21210]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:44:43.172 INFO [21210]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:44:43.172 INFO [21210]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:44:43.184 INFO [21210]: COREGRADE is stopping... -- 00:44:43.184 DEBUG [21210]: Closing database connection -- 00:44:43.184 SQL [21210]: pgsql_close() -- 00:44:46.926 INFO [21208]: COREGRADE is starting... -- 00:44:46.926 INFO [21208]: Version from config: 1.0 -- 00:44:46.926 DEBUG [21208]: Connecting to database... -- 00:44:46.926 DEBUG [21208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:44:46.926 SQL [21208]: pgsql_db_connect() -- 00:44:46.930 DEBUG [21208]: Database connection successful -- 00:44:46.930 INFO [21208]: _SERVER found -- 00:44:46.930 INFO [21208]: REMOTE_ADDR = 192.168.1.13 -- 00:44:46.930 INFO [21208]: SERVER_NAME = oameye.works.coregrade.com -- 00:44:46.930 INFO [21208]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:44:46.930 INFO [21208]: QUERY_STRING = /member/viewCardAddAction -- 00:44:46.930 INFO [21208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:44:46.961 INFO [21208]: COREGRADE is stopping... -- 00:44:46.961 DEBUG [21208]: Closing database connection -- 00:44:46.961 SQL [21208]: pgsql_close() -- 00:46:34.152 INFO [21488]: COREGRADE is starting... -- 00:46:34.153 INFO [21488]: Version from config: 1.0 -- 00:46:34.153 DEBUG [21488]: Connecting to database... -- 00:46:34.153 DEBUG [21488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:34.153 SQL [21488]: pgsql_db_connect() -- 00:46:34.157 DEBUG [21488]: Database connection successful -- 00:46:34.157 INFO [21488]: _SERVER found -- 00:46:34.157 INFO [21488]: REMOTE_ADDR = 192.168.1.13 -- 00:46:34.157 INFO [21488]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:34.157 INFO [21488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:46:34.157 INFO [21488]: QUERY_STRING = /member/page -- 00:46:34.157 INFO [21488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:34.204 INFO [21488]: COREGRADE is stopping... -- 00:46:34.204 DEBUG [21488]: Closing database connection -- 00:46:34.204 SQL [21488]: pgsql_close() -- 00:46:34.465 INFO [21206]: COREGRADE is starting... -- 00:46:34.465 INFO [21206]: Version from config: 1.0 -- 00:46:34.465 DEBUG [21206]: Connecting to database... -- 00:46:34.465 DEBUG [21206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:34.465 SQL [21206]: pgsql_db_connect() -- 00:46:34.469 DEBUG [21206]: Database connection successful -- 00:46:34.469 INFO [21206]: _SERVER found -- 00:46:34.469 INFO [21206]: REMOTE_ADDR = 192.168.1.13 -- 00:46:34.469 INFO [21206]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:34.469 INFO [21206]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:46:34.469 INFO [21206]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:46:34.469 INFO [21206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:34.481 INFO [21206]: COREGRADE is stopping... -- 00:46:34.482 DEBUG [21206]: Closing database connection -- 00:46:34.482 SQL [21206]: pgsql_close() -- 00:46:34.695 INFO [21206]: COREGRADE is starting... -- 00:46:34.695 INFO [21206]: Version from config: 1.0 -- 00:46:34.695 DEBUG [21206]: Connecting to database... -- 00:46:34.695 DEBUG [21206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:34.695 SQL [21206]: pgsql_db_connect() -- 00:46:34.700 INFO [21488]: COREGRADE is starting... -- 00:46:34.700 INFO [21488]: Version from config: 1.0 -- 00:46:34.700 DEBUG [21488]: Connecting to database... -- 00:46:34.700 DEBUG [21488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:34.700 SQL [21488]: pgsql_db_connect() -- 00:46:34.699 DEBUG [21206]: Database connection successful -- 00:46:34.699 INFO [21206]: _SERVER found -- 00:46:34.699 INFO [21206]: REMOTE_ADDR = 192.168.1.13 -- 00:46:34.699 INFO [21206]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:34.699 INFO [21206]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:46:34.699 INFO [21206]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 00:46:34.699 INFO [21206]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:34.711 INFO [21206]: COREGRADE is stopping... -- 00:46:34.711 DEBUG [21206]: Closing database connection -- 00:46:34.711 SQL [21206]: pgsql_close() -- 00:46:34.704 DEBUG [21488]: Database connection successful -- 00:46:34.704 INFO [21488]: _SERVER found -- 00:46:34.704 INFO [21488]: REMOTE_ADDR = 192.168.1.13 -- 00:46:34.704 INFO [21488]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:34.704 INFO [21488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:46:34.704 INFO [21488]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 00:46:34.704 INFO [21488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:34.715 INFO [21488]: COREGRADE is stopping... -- 00:46:34.715 DEBUG [21488]: Closing database connection -- 00:46:34.715 SQL [21488]: pgsql_close() -- 00:46:34.789 INFO [21488]: COREGRADE is starting... -- 00:46:34.789 INFO [21488]: Version from config: 1.0 -- 00:46:34.789 DEBUG [21488]: Connecting to database... -- 00:46:34.789 DEBUG [21488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:34.789 SQL [21488]: pgsql_db_connect() -- 00:46:34.793 DEBUG [21488]: Database connection successful -- 00:46:34.793 INFO [21488]: _SERVER found -- 00:46:34.793 INFO [21488]: REMOTE_ADDR = 192.168.1.13 -- 00:46:34.793 INFO [21488]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:34.793 INFO [21488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:46:34.793 INFO [21488]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:46:34.793 INFO [21488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:34.804 INFO [21488]: COREGRADE is stopping... -- 00:46:34.804 DEBUG [21488]: Closing database connection -- 00:46:34.804 SQL [21488]: pgsql_close() -- 00:46:40.403 INFO [21306]: COREGRADE is starting... -- 00:46:40.403 INFO [21306]: Version from config: 1.0 -- 00:46:40.403 DEBUG [21306]: Connecting to database... -- 00:46:40.403 DEBUG [21306]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:40.403 SQL [21306]: pgsql_db_connect() -- 00:46:40.407 DEBUG [21306]: Database connection successful -- 00:46:40.407 INFO [21306]: _SERVER found -- 00:46:40.407 INFO [21306]: REMOTE_ADDR = 192.168.1.13 -- 00:46:40.407 INFO [21306]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:40.407 INFO [21306]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:46:40.407 INFO [21306]: QUERY_STRING = /member/viewCardAddAction -- 00:46:40.407 INFO [21306]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:40.439 INFO [21306]: COREGRADE is stopping... -- 00:46:40.439 DEBUG [21306]: Closing database connection -- 00:46:40.439 SQL [21306]: pgsql_close() -- 00:46:41.908 INFO [21306]: COREGRADE is starting... -- 00:46:41.908 INFO [21306]: Version from config: 1.0 -- 00:46:41.908 DEBUG [21306]: Connecting to database... -- 00:46:41.908 DEBUG [21306]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:41.908 SQL [21306]: pgsql_db_connect() -- 00:46:41.944 INFO [21306]: COREGRADE is starting... -- 00:46:41.944 INFO [21306]: Version from config: 1.0 -- 00:46:41.944 DEBUG [21306]: Connecting to database... -- 00:46:41.944 DEBUG [21306]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:41.944 SQL [21306]: pgsql_db_connect() -- 00:46:41.948 DEBUG [21306]: Database connection successful -- 00:46:41.948 INFO [21306]: _SERVER found -- 00:46:41.948 INFO [21306]: REMOTE_ADDR = 192.168.1.13 -- 00:46:41.948 INFO [21306]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:41.949 INFO [21306]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:46:41.949 INFO [21306]: QUERY_STRING = -- 00:46:41.949 INFO [21306]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:41.949 INFO [21306]: SystemStatus()09-09-********~************ -- 00:46:41.949 INFO [21306]: long coregrade_api_main(CVars in, CVars &out) -- 00:46:41.949 INFO [21306]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 00:46:41.949 INFO [21306]: account calls -- 00:46:41.949 INFO [21306]: account_calls() -- 00:46:41.949 INFO [21306]: AddPageCard() -- 00:46:41.949 FLOG_MAX [21306]: REQ_STRING(title) -- 00:46:41.949 FLOG_MAX [21306]: REQ_STRING(item_type) -- 00:46:41.949 FLOG_MAX [21306]: REQ_STRING(sessionid) -- 00:46:41.949 FLOG_MAX [21306]: REQ_STRING(detail) -- 00:46:41.949 FLOG_MAX [21306]: insert_db_record() -- 00:46:41.949 SQL [21306]: pgsql_exec() -- 00:46:41.949 SQL [21306]: About to run query: -- 00:46:41.949 SQL [21306]: INSERT INTO members_page_item (detail,item_type,member_id,page_id,title) VALUES ('This s the ttitle, This s the ttitle6154','VIDEOCARD','5','7','This s the ttitle2526') -- 00:46:41.954 SQL [21306]: PQcmdTuples: 1 -- 00:46:41.954 SQL [21306]: Affected rows: 1 -- 00:46:41.954 FLOG_MAX [21306]: SELECT currval('members_page_item_id_seq') -- 00:46:41.954 SQL [21306]: pgsql_query() -- 00:46:41.954 SQL [21306]: About to run query: -- 00:46:41.954 SQL [21306]: SELECT currval('members_page_item_id_seq') -- 00:46:41.955 SQL [21306]: Found rows: 1 -- 00:46:41.955 INFO [21306]: /AddPageCard() -- 00:46:41.955 INFO [21306]: RET: page_item_id=27 -- 00:46:41.955 INFO [21306]: RET: result=YES I GET TO BACK END -- 00:46:41.955 INFO [21306]: COREGRADE is stopping... -- 00:46:41.955 DEBUG [21306]: Closing database connection -- 00:46:41.955 SQL [21306]: pgsql_close() -- 00:46:41.912 DEBUG [21306]: Database connection successful -- 00:46:41.912 INFO [21306]: _SERVER found -- 00:46:41.912 INFO [21306]: REMOTE_ADDR = 192.168.1.13 -- 00:46:41.912 INFO [21306]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:41.912 INFO [21306]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:46:41.912 INFO [21306]: QUERY_STRING = /member/upload -- 00:46:41.912 INFO [21306]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:41.955 INFO [21306]: COREGRADE is stopping... -- 00:46:41.955 DEBUG [21306]: Closing database connection -- 00:46:41.955 SQL [21306]: pgsql_close() -- 00:46:42.016 INFO [21306]: COREGRADE is starting... -- 00:46:42.016 INFO [21306]: Version from config: 1.0 -- 00:46:42.016 DEBUG [21306]: Connecting to database... -- 00:46:42.016 DEBUG [21306]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:42.016 SQL [21306]: pgsql_db_connect() -- 00:46:42.021 DEBUG [21306]: Database connection successful -- 00:46:42.021 INFO [21306]: _SERVER found -- 00:46:42.021 INFO [21306]: REMOTE_ADDR = 192.168.1.13 -- 00:46:42.021 INFO [21306]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:42.021 INFO [21306]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:46:42.021 INFO [21306]: QUERY_STRING = /member/page -- 00:46:42.021 INFO [21306]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:42.063 INFO [21306]: COREGRADE is stopping... -- 00:46:42.063 DEBUG [21306]: Closing database connection -- 00:46:42.063 SQL [21306]: pgsql_close() -- 00:46:42.343 INFO [21329]: COREGRADE is starting... -- 00:46:42.343 INFO [21329]: Version from config: 1.0 -- 00:46:42.343 DEBUG [21329]: Connecting to database... -- 00:46:42.343 DEBUG [21329]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:42.343 SQL [21329]: pgsql_db_connect() -- 00:46:42.348 DEBUG [21329]: Database connection successful -- 00:46:42.348 INFO [21329]: _SERVER found -- 00:46:42.348 INFO [21329]: REMOTE_ADDR = 192.168.1.13 -- 00:46:42.348 INFO [21329]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:42.348 INFO [21329]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:46:42.348 INFO [21329]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:46:42.348 INFO [21329]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:42.359 INFO [21329]: COREGRADE is stopping... -- 00:46:42.359 DEBUG [21329]: Closing database connection -- 00:46:42.359 SQL [21329]: pgsql_close() -- 00:46:42.702 INFO [21329]: COREGRADE is starting... -- 00:46:42.702 INFO [21329]: Version from config: 1.0 -- 00:46:42.702 DEBUG [21329]: Connecting to database... -- 00:46:42.702 DEBUG [21329]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:42.702 SQL [21329]: pgsql_db_connect() -- 00:46:42.706 DEBUG [21329]: Database connection successful -- 00:46:42.706 INFO [21329]: _SERVER found -- 00:46:42.706 INFO [21329]: REMOTE_ADDR = 192.168.1.13 -- 00:46:42.706 INFO [21329]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:42.706 INFO [21329]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:46:42.706 INFO [21329]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:46:42.706 INFO [21329]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:42.717 INFO [21329]: COREGRADE is stopping... -- 00:46:42.717 DEBUG [21329]: Closing database connection -- 00:46:42.717 SQL [21329]: pgsql_close() -- 00:46:42.752 INFO [21329]: COREGRADE is starting... -- 00:46:42.752 INFO [21329]: Version from config: 1.0 -- 00:46:42.752 DEBUG [21329]: Connecting to database... -- 00:46:42.752 DEBUG [21329]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:42.752 SQL [21329]: pgsql_db_connect() -- 00:46:42.756 DEBUG [21329]: Database connection successful -- 00:46:42.756 INFO [21329]: _SERVER found -- 00:46:42.756 INFO [21329]: REMOTE_ADDR = 192.168.1.13 -- 00:46:42.756 INFO [21329]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:42.756 INFO [21329]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:46:42.756 INFO [21329]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 00:46:42.756 INFO [21329]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:42.767 INFO [21329]: COREGRADE is stopping... -- 00:46:42.767 DEBUG [21329]: Closing database connection -- 00:46:42.767 SQL [21329]: pgsql_close() -- 00:46:42.780 INFO [21329]: COREGRADE is starting... -- 00:46:42.780 INFO [21329]: Version from config: 1.0 -- 00:46:42.780 DEBUG [21329]: Connecting to database... -- 00:46:42.780 DEBUG [21329]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:42.780 SQL [21329]: pgsql_db_connect() -- 00:46:42.784 DEBUG [21329]: Database connection successful -- 00:46:42.784 INFO [21329]: _SERVER found -- 00:46:42.784 INFO [21329]: REMOTE_ADDR = 192.168.1.13 -- 00:46:42.784 INFO [21329]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:42.784 INFO [21329]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:46:42.784 INFO [21329]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 00:46:42.784 INFO [21329]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:42.796 INFO [21329]: COREGRADE is stopping... -- 00:46:42.796 DEBUG [21329]: Closing database connection -- 00:46:42.796 SQL [21329]: pgsql_close() -- 00:46:45.515 INFO [21329]: COREGRADE is starting... -- 00:46:45.515 INFO [21329]: Version from config: 1.0 -- 00:46:45.515 DEBUG [21329]: Connecting to database... -- 00:46:45.515 DEBUG [21329]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:45.515 SQL [21329]: pgsql_db_connect() -- 00:46:45.520 DEBUG [21329]: Database connection successful -- 00:46:45.520 INFO [21329]: _SERVER found -- 00:46:45.520 INFO [21329]: REMOTE_ADDR = 192.168.1.13 -- 00:46:45.520 INFO [21329]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:45.520 INFO [21329]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:46:45.520 INFO [21329]: QUERY_STRING = /member/viewCardAddAction -- 00:46:45.520 INFO [21329]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:45.551 INFO [21329]: COREGRADE is stopping... -- 00:46:45.551 DEBUG [21329]: Closing database connection -- 00:46:45.551 SQL [21329]: pgsql_close() -- 00:47:09.861 INFO [21239]: COREGRADE is starting... -- 00:47:09.862 INFO [21239]: Version from config: 1.0 -- 00:47:09.862 DEBUG [21239]: Connecting to database... -- 00:47:09.862 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:09.862 SQL [21239]: pgsql_db_connect() -- 00:47:09.866 DEBUG [21239]: Database connection successful -- 00:47:09.866 INFO [21239]: _SERVER found -- 00:47:09.866 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 00:47:09.866 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:09.866 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:47:09.866 INFO [21239]: QUERY_STRING = /member/page -- 00:47:09.866 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:09.909 INFO [21239]: COREGRADE is stopping... -- 00:47:09.909 DEBUG [21239]: Closing database connection -- 00:47:09.909 SQL [21239]: pgsql_close() -- 00:47:10.187 INFO [21485]: COREGRADE is starting... -- 00:47:10.188 INFO [21485]: Version from config: 1.0 -- 00:47:10.188 DEBUG [21485]: Connecting to database... -- 00:47:10.188 DEBUG [21485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:10.188 SQL [21485]: pgsql_db_connect() -- 00:47:10.192 DEBUG [21485]: Database connection successful -- 00:47:10.192 INFO [21485]: _SERVER found -- 00:47:10.192 INFO [21485]: REMOTE_ADDR = 192.168.1.13 -- 00:47:10.192 INFO [21485]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:10.192 INFO [21485]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:47:10.192 INFO [21485]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:47:10.192 INFO [21485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:10.204 INFO [21485]: COREGRADE is stopping... -- 00:47:10.204 DEBUG [21485]: Closing database connection -- 00:47:10.204 SQL [21485]: pgsql_close() -- 00:47:10.478 INFO [21485]: COREGRADE is starting... -- 00:47:10.479 INFO [21485]: Version from config: 1.0 -- 00:47:10.479 DEBUG [21485]: Connecting to database... -- 00:47:10.479 DEBUG [21485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:10.479 SQL [21485]: pgsql_db_connect() -- 00:47:10.482 INFO [21239]: COREGRADE is starting... -- 00:47:10.482 INFO [21239]: Version from config: 1.0 -- 00:47:10.482 DEBUG [21239]: Connecting to database... -- 00:47:10.482 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:10.483 SQL [21239]: pgsql_db_connect() -- 00:47:10.483 DEBUG [21485]: Database connection successful -- 00:47:10.483 INFO [21485]: _SERVER found -- 00:47:10.483 INFO [21485]: REMOTE_ADDR = 192.168.1.13 -- 00:47:10.483 INFO [21485]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:10.483 INFO [21485]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:47:10.483 INFO [21485]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 00:47:10.483 INFO [21485]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:10.495 INFO [21485]: COREGRADE is stopping... -- 00:47:10.495 DEBUG [21485]: Closing database connection -- 00:47:10.495 SQL [21485]: pgsql_close() -- 00:47:10.486 DEBUG [21239]: Database connection successful -- 00:47:10.486 INFO [21239]: _SERVER found -- 00:47:10.486 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 00:47:10.486 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:10.486 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:47:10.486 INFO [21239]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 00:47:10.486 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:10.498 INFO [21239]: COREGRADE is stopping... -- 00:47:10.498 DEBUG [21239]: Closing database connection -- 00:47:10.498 SQL [21239]: pgsql_close() -- 00:47:10.566 INFO [21239]: COREGRADE is starting... -- 00:47:10.566 INFO [21239]: Version from config: 1.0 -- 00:47:10.566 DEBUG [21239]: Connecting to database... -- 00:47:10.566 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:10.566 SQL [21239]: pgsql_db_connect() -- 00:47:10.570 DEBUG [21239]: Database connection successful -- 00:47:10.570 INFO [21239]: _SERVER found -- 00:47:10.570 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 00:47:10.570 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:10.570 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:47:10.570 INFO [21239]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:47:10.570 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:10.582 INFO [21239]: COREGRADE is stopping... -- 00:47:10.582 DEBUG [21239]: Closing database connection -- 00:47:10.582 SQL [21239]: pgsql_close() -- 00:47:13.975 INFO [21239]: COREGRADE is starting... -- 00:47:13.976 INFO [21239]: Version from config: 1.0 -- 00:47:13.976 DEBUG [21239]: Connecting to database... -- 00:47:13.976 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:13.976 SQL [21239]: pgsql_db_connect() -- 00:47:13.980 DEBUG [21239]: Database connection successful -- 00:47:13.980 INFO [21239]: _SERVER found -- 00:47:13.980 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 00:47:13.980 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:13.980 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:47:13.980 INFO [21239]: QUERY_STRING = /member/viewCardAddAction -- 00:47:13.980 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:14.011 INFO [21239]: COREGRADE is stopping... -- 00:47:14.011 DEBUG [21239]: Closing database connection -- 00:47:14.011 SQL [21239]: pgsql_close() -- 00:47:35.908 INFO [21209]: COREGRADE is starting... -- 00:47:35.908 INFO [21209]: Version from config: 1.0 -- 00:47:35.908 DEBUG [21209]: Connecting to database... -- 00:47:35.908 DEBUG [21209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:35.908 SQL [21209]: pgsql_db_connect() -- 00:47:35.945 INFO [21209]: COREGRADE is starting... -- 00:47:35.945 INFO [21209]: Version from config: 1.0 -- 00:47:35.945 DEBUG [21209]: Connecting to database... -- 00:47:35.945 DEBUG [21209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:35.945 SQL [21209]: pgsql_db_connect() -- 00:47:35.950 DEBUG [21209]: Database connection successful -- 00:47:35.950 INFO [21209]: _SERVER found -- 00:47:35.950 INFO [21209]: REMOTE_ADDR = 192.168.1.13 -- 00:47:35.950 INFO [21209]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:35.950 INFO [21209]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:47:35.950 INFO [21209]: QUERY_STRING = -- 00:47:35.950 INFO [21209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:35.950 INFO [21209]: SystemStatus()09-09-********~************ -- 00:47:35.950 INFO [21209]: long coregrade_api_main(CVars in, CVars &out) -- 00:47:35.950 INFO [21209]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 00:47:35.950 INFO [21209]: account calls -- 00:47:35.950 INFO [21209]: account_calls() -- 00:47:35.950 INFO [21209]: AddPageCard() -- 00:47:35.950 FLOG_MAX [21209]: REQ_STRING(title) -- 00:47:35.950 FLOG_MAX [21209]: REQ_STRING(item_type) -- 00:47:35.950 FLOG_MAX [21209]: REQ_STRING(sessionid) -- 00:47:35.950 FLOG_MAX [21209]: REQ_STRING(detail) -- 00:47:35.950 FLOG_MAX [21209]: insert_db_record() -- 00:47:35.950 SQL [21209]: pgsql_exec() -- 00:47:35.950 SQL [21209]: About to run query: -- 00:47:35.950 SQL [21209]: INSERT INTO members_page_item (detail,item_type,member_id,page_id,title) VALUES ('This s the ttitle, This s the ttitle5423','VIDEOCARD','5','7','This s the ttitle1819') -- 00:47:35.954 SQL [21209]: PQcmdTuples: 1 -- 00:47:35.954 SQL [21209]: Affected rows: 1 -- 00:47:35.954 FLOG_MAX [21209]: SELECT currval('members_page_item_id_seq') -- 00:47:35.954 SQL [21209]: pgsql_query() -- 00:47:35.954 SQL [21209]: About to run query: -- 00:47:35.954 SQL [21209]: SELECT currval('members_page_item_id_seq') -- 00:47:35.955 SQL [21209]: Found rows: 1 -- 00:47:35.955 INFO [21209]: /AddPageCard() -- 00:47:35.955 INFO [21209]: RET: page_item_id=28 -- 00:47:35.955 INFO [21209]: RET: result=YES I GET TO BACK END -- 00:47:35.970 INFO [21209]: COREGRADE is stopping... -- 00:47:35.970 DEBUG [21209]: Closing database connection -- 00:47:35.970 SQL [21209]: pgsql_close() -- 00:47:35.912 DEBUG [21209]: Database connection successful -- 00:47:35.912 INFO [21209]: _SERVER found -- 00:47:35.912 INFO [21209]: REMOTE_ADDR = 192.168.1.13 -- 00:47:35.912 INFO [21209]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:35.912 INFO [21209]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:47:35.912 INFO [21209]: QUERY_STRING = /member/upload -- 00:47:35.912 INFO [21209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:35.970 INFO [21209]: COREGRADE is stopping... -- 00:47:35.970 DEBUG [21209]: Closing database connection -- 00:47:35.970 SQL [21209]: pgsql_close() -- 00:47:36.075 INFO [21209]: COREGRADE is starting... -- 00:47:36.075 INFO [21209]: Version from config: 1.0 -- 00:47:36.075 DEBUG [21209]: Connecting to database... -- 00:47:36.075 DEBUG [21209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:36.075 SQL [21209]: pgsql_db_connect() -- 00:47:36.080 DEBUG [21209]: Database connection successful -- 00:47:36.080 INFO [21209]: _SERVER found -- 00:47:36.080 INFO [21209]: REMOTE_ADDR = 192.168.1.13 -- 00:47:36.080 INFO [21209]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:36.080 INFO [21209]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:47:36.080 INFO [21209]: QUERY_STRING = /member/page -- 00:47:36.080 INFO [21209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:36.148 INFO [21209]: COREGRADE is stopping... -- 00:47:36.148 DEBUG [21209]: Closing database connection -- 00:47:36.148 SQL [21209]: pgsql_close() -- 00:47:36.365 INFO [21207]: COREGRADE is starting... -- 00:47:36.365 INFO [21207]: Version from config: 1.0 -- 00:47:36.365 DEBUG [21207]: Connecting to database... -- 00:47:36.366 DEBUG [21207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:36.366 SQL [21207]: pgsql_db_connect() -- 00:47:36.370 DEBUG [21207]: Database connection successful -- 00:47:36.370 INFO [21207]: _SERVER found -- 00:47:36.370 INFO [21207]: REMOTE_ADDR = 192.168.1.13 -- 00:47:36.370 INFO [21207]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:36.370 INFO [21207]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:47:36.370 INFO [21207]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:47:36.370 INFO [21207]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:36.381 INFO [21207]: COREGRADE is stopping... -- 00:47:36.381 DEBUG [21207]: Closing database connection -- 00:47:36.381 SQL [21207]: pgsql_close() -- 00:47:36.605 INFO [21207]: COREGRADE is starting... -- 00:47:36.606 INFO [21207]: Version from config: 1.0 -- 00:47:36.606 DEBUG [21207]: Connecting to database... -- 00:47:36.606 DEBUG [21207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:36.606 SQL [21207]: pgsql_db_connect() -- 00:47:36.610 DEBUG [21207]: Database connection successful -- 00:47:36.610 INFO [21207]: _SERVER found -- 00:47:36.610 INFO [21207]: REMOTE_ADDR = 192.168.1.13 -- 00:47:36.610 INFO [21207]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:36.610 INFO [21207]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:47:36.610 INFO [21207]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 00:47:36.610 INFO [21207]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:36.621 INFO [21207]: COREGRADE is stopping... -- 00:47:36.621 DEBUG [21207]: Closing database connection -- 00:47:36.621 SQL [21207]: pgsql_close() -- 00:47:36.625 INFO [21207]: COREGRADE is starting... -- 00:47:36.625 INFO [21207]: Version from config: 1.0 -- 00:47:36.625 DEBUG [21207]: Connecting to database... -- 00:47:36.625 DEBUG [21207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:36.625 SQL [21207]: pgsql_db_connect() -- 00:47:36.629 DEBUG [21207]: Database connection successful -- 00:47:36.629 INFO [21207]: _SERVER found -- 00:47:36.629 INFO [21207]: REMOTE_ADDR = 192.168.1.13 -- 00:47:36.629 INFO [21207]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:36.629 INFO [21207]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:47:36.629 INFO [21207]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 00:47:36.629 INFO [21207]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:36.640 INFO [21207]: COREGRADE is stopping... -- 00:47:36.640 DEBUG [21207]: Closing database connection -- 00:47:36.640 SQL [21207]: pgsql_close() -- 00:47:36.694 INFO [21207]: COREGRADE is starting... -- 00:47:36.695 INFO [21207]: Version from config: 1.0 -- 00:47:36.695 DEBUG [21207]: Connecting to database... -- 00:47:36.695 DEBUG [21207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:47:36.695 SQL [21207]: pgsql_db_connect() -- 00:47:36.699 DEBUG [21207]: Database connection successful -- 00:47:36.699 INFO [21207]: _SERVER found -- 00:47:36.699 INFO [21207]: REMOTE_ADDR = 192.168.1.13 -- 00:47:36.699 INFO [21207]: SERVER_NAME = oameye.works.coregrade.com -- 00:47:36.699 INFO [21207]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=cq2i68ktar8h0uupesovqqcosq009s3v -- 00:47:36.699 INFO [21207]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:47:36.699 INFO [21207]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:47:36.710 INFO [21207]: COREGRADE is stopping... -- 00:47:36.710 DEBUG [21207]: Closing database connection -- 00:47:36.710 SQL [21207]: pgsql_close() -- 02:55:49.265 INFO [21210]: COREGRADE is starting... -- 02:55:49.267 INFO [21210]: Version from config: 1.0 -- 02:55:49.267 DEBUG [21210]: Connecting to database... -- 02:55:49.267 DEBUG [21210]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:55:49.267 SQL [21210]: pgsql_db_connect() -- 02:55:49.273 DEBUG [21210]: Database connection successful -- 02:55:49.273 INFO [21210]: _SERVER found -- 02:55:49.273 INFO [21210]: REMOTE_ADDR = 192.168.1.13 -- 02:55:49.273 INFO [21210]: SERVER_NAME = oameye.works.coregrade.com -- 02:55:49.273 INFO [21210]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791 -- 02:55:49.273 INFO [21210]: QUERY_STRING = /auth -- 02:55:49.273 INFO [21210]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:55:49.311 INFO [21210]: COREGRADE is stopping... -- 02:55:49.311 DEBUG [21210]: Closing database connection -- 02:55:49.311 SQL [21210]: pgsql_close() -- 02:55:49.431 INFO [21210]: COREGRADE is starting... -- 02:55:49.431 INFO [21210]: Version from config: 1.0 -- 02:55:49.431 DEBUG [21210]: Connecting to database... -- 02:55:49.431 DEBUG [21210]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:55:49.431 SQL [21210]: pgsql_db_connect() -- 02:55:49.435 DEBUG [21210]: Database connection successful -- 02:55:49.435 INFO [21210]: _SERVER found -- 02:55:49.435 INFO [21210]: REMOTE_ADDR = 192.168.1.13 -- 02:55:49.435 INFO [21210]: SERVER_NAME = oameye.works.coregrade.com -- 02:55:49.435 INFO [21210]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=6t6k4fcaf3r9a330p29kg16oqgcsffvi -- 02:55:49.435 INFO [21210]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 02:55:49.435 INFO [21210]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:55:49.447 INFO [21210]: COREGRADE is stopping... -- 02:55:49.447 DEBUG [21210]: Closing database connection -- 02:55:49.447 SQL [21210]: pgsql_close() -- 02:55:49.811 INFO [21210]: COREGRADE is starting... -- 02:55:49.811 INFO [21210]: Version from config: 1.0 -- 02:55:49.811 DEBUG [21210]: Connecting to database... -- 02:55:49.811 DEBUG [21210]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:55:49.811 SQL [21210]: pgsql_db_connect() -- 02:55:49.815 DEBUG [21210]: Database connection successful -- 02:55:49.815 INFO [21210]: _SERVER found -- 02:55:49.815 INFO [21210]: REMOTE_ADDR = 192.168.1.13 -- 02:55:49.815 INFO [21210]: SERVER_NAME = oameye.works.coregrade.com -- 02:55:49.815 INFO [21210]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=6t6k4fcaf3r9a330p29kg16oqgcsffvi -- 02:55:49.815 INFO [21210]: QUERY_STRING = /app-assets/data/locales/en.json -- 02:55:49.815 INFO [21210]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:55:49.826 INFO [21210]: COREGRADE is stopping... -- 02:55:49.826 DEBUG [21210]: Closing database connection -- 02:55:49.826 SQL [21210]: pgsql_close() -- 03:07:50.288 INFO [21208]: COREGRADE is starting... -- 03:07:50.289 INFO [21208]: Version from config: 1.0 -- 03:07:50.289 DEBUG [21208]: Connecting to database... -- 03:07:50.289 DEBUG [21208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:07:50.289 SQL [21208]: pgsql_db_connect() -- 03:07:50.294 DEBUG [21208]: Database connection successful -- 03:07:50.294 INFO [21208]: _SERVER found -- 03:07:50.294 INFO [21208]: REMOTE_ADDR = 192.168.1.13 -- 03:07:50.294 INFO [21208]: SERVER_NAME = oameye.works.coregrade.com -- 03:07:50.294 INFO [21208]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171 -- 03:07:50.294 INFO [21208]: QUERY_STRING = /auth -- 03:07:50.294 INFO [21208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 03:07:50.331 INFO [21208]: COREGRADE is stopping... -- 03:07:50.331 DEBUG [21208]: Closing database connection -- 03:07:50.331 SQL [21208]: pgsql_close() -- 03:07:50.731 INFO [21208]: COREGRADE is starting... -- 03:07:50.731 INFO [21208]: Version from config: 1.0 -- 03:07:50.731 DEBUG [21208]: Connecting to database... -- 03:07:50.731 DEBUG [21208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:07:50.731 SQL [21208]: pgsql_db_connect() -- 03:07:50.735 DEBUG [21208]: Database connection successful -- 03:07:50.735 INFO [21208]: _SERVER found -- 03:07:50.735 INFO [21208]: REMOTE_ADDR = 192.168.1.13 -- 03:07:50.735 INFO [21208]: SERVER_NAME = oameye.works.coregrade.com -- 03:07:50.735 INFO [21208]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=bpi3jtl8r0l59qjquapv1e68ncg35kam -- 03:07:50.735 INFO [21208]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 03:07:50.735 INFO [21208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 03:07:50.747 INFO [21208]: COREGRADE is stopping... -- 03:07:50.747 DEBUG [21208]: Closing database connection -- 03:07:50.747 SQL [21208]: pgsql_close() -- 03:07:51.339 INFO [21208]: COREGRADE is starting... -- 03:07:51.340 INFO [21208]: Version from config: 1.0 -- 03:07:51.340 DEBUG [21208]: Connecting to database... -- 03:07:51.340 DEBUG [21208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:07:51.340 SQL [21208]: pgsql_db_connect() -- 03:07:51.344 DEBUG [21208]: Database connection successful -- 03:07:51.344 INFO [21208]: _SERVER found -- 03:07:51.344 INFO [21208]: REMOTE_ADDR = 192.168.1.13 -- 03:07:51.344 INFO [21208]: SERVER_NAME = oameye.works.coregrade.com -- 03:07:51.344 INFO [21208]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=bpi3jtl8r0l59qjquapv1e68ncg35kam -- 03:07:51.344 INFO [21208]: QUERY_STRING = /app-assets/data/locales/en.json -- 03:07:51.344 INFO [21208]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 03:07:51.355 INFO [21208]: COREGRADE is stopping... -- 03:07:51.355 DEBUG [21208]: Closing database connection -- 03:07:51.355 SQL [21208]: pgsql_close() -- 03:27:38.346 INFO [21488]: COREGRADE is starting... -- 03:27:38.347 INFO [21488]: Version from config: 1.0 -- 03:27:38.347 DEBUG [21488]: Connecting to database... -- 03:27:38.347 DEBUG [21488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:27:38.347 SQL [21488]: pgsql_db_connect() -- 03:27:38.352 DEBUG [21488]: Database connection successful -- 03:27:38.352 INFO [21488]: _SERVER found -- 03:27:38.352 INFO [21488]: REMOTE_ADDR = 192.168.1.13 -- 03:27:38.352 INFO [21488]: SERVER_NAME = oameye.works.coregrade.com -- 03:27:38.352 INFO [21488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=6t6k4fcaf3r9a330p29kg16oqgcsffvi -- 03:27:38.352 INFO [21488]: QUERY_STRING = /auth -- 03:27:38.352 INFO [21488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 03:27:38.387 INFO [21488]: COREGRADE is stopping... -- 03:27:38.387 DEBUG [21488]: Closing database connection -- 03:27:38.387 SQL [21488]: pgsql_close() -- 03:27:38.519 INFO [21488]: COREGRADE is starting... -- 03:27:38.519 INFO [21488]: Version from config: 1.0 -- 03:27:38.519 DEBUG [21488]: Connecting to database... -- 03:27:38.519 DEBUG [21488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:27:38.519 SQL [21488]: pgsql_db_connect() -- 03:27:38.524 DEBUG [21488]: Database connection successful -- 03:27:38.524 INFO [21488]: _SERVER found -- 03:27:38.524 INFO [21488]: REMOTE_ADDR = 192.168.1.13 -- 03:27:38.524 INFO [21488]: SERVER_NAME = oameye.works.coregrade.com -- 03:27:38.524 INFO [21488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=vtcihhj9krl74ku3puukb5ndq8f2o5e7 -- 03:27:38.524 INFO [21488]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 03:27:38.524 INFO [21488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 03:27:38.535 INFO [21488]: COREGRADE is stopping... -- 03:27:38.535 DEBUG [21488]: Closing database connection -- 03:27:38.535 SQL [21488]: pgsql_close() -- 03:27:38.679 INFO [21488]: COREGRADE is starting... -- 03:27:38.680 INFO [21488]: Version from config: 1.0 -- 03:27:38.680 DEBUG [21488]: Connecting to database... -- 03:27:38.680 DEBUG [21488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:27:38.680 SQL [21488]: pgsql_db_connect() -- 03:27:38.684 DEBUG [21488]: Database connection successful -- 03:27:38.684 INFO [21488]: _SERVER found -- 03:27:38.684 INFO [21488]: REMOTE_ADDR = 192.168.1.13 -- 03:27:38.684 INFO [21488]: SERVER_NAME = oameye.works.coregrade.com -- 03:27:38.684 INFO [21488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=vtcihhj9krl74ku3puukb5ndq8f2o5e7 -- 03:27:38.684 INFO [21488]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 03:27:38.684 INFO [21488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 03:27:38.695 INFO [21488]: COREGRADE is stopping... -- 03:27:38.695 DEBUG [21488]: Closing database connection -- 03:27:38.695 SQL [21488]: pgsql_close() -- 03:27:38.786 INFO [21488]: COREGRADE is starting... -- 03:27:38.786 INFO [21488]: Version from config: 1.0 -- 03:27:38.786 DEBUG [21488]: Connecting to database... -- 03:27:38.786 DEBUG [21488]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:27:38.786 SQL [21488]: pgsql_db_connect() -- 03:27:38.790 DEBUG [21488]: Database connection successful -- 03:27:38.790 INFO [21488]: _SERVER found -- 03:27:38.790 INFO [21488]: REMOTE_ADDR = 192.168.1.13 -- 03:27:38.790 INFO [21488]: SERVER_NAME = oameye.works.coregrade.com -- 03:27:38.790 INFO [21488]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=vtcihhj9krl74ku3puukb5ndq8f2o5e7 -- 03:27:38.790 INFO [21488]: QUERY_STRING = /app-assets/data/locales/en.json -- 03:27:38.790 INFO [21488]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 03:27:38.801 INFO [21488]: COREGRADE is stopping... -- 03:27:38.801 DEBUG [21488]: Closing database connection -- 03:27:38.801 SQL [21488]: pgsql_close() -- 03:31:16.267 INFO [21206]: COREGRADE is starting... -- 03:31:16.267 INFO [21206]: Version from config: 1.0 -- 03:31:16.267 DEBUG [21206]: Connecting to database... -- 03:31:16.267 DEBUG [21206]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:31:16.268 SQL [21206]: pgsql_db_connect() -- 03:31:16.272 DEBUG [21206]: Database connection successful -- 03:31:16.272 INFO [21206]: _SERVER found -- 03:31:16.272 INFO [21206]: REMOTE_ADDR = 192.168.1.13 -- 03:31:16.272 INFO [21206]: SERVER_NAME = oameye.works.coregrade.com -- 03:31:16.272 INFO [21206]: QUERY_STRING = -- 03:31:16.272 INFO [21206]: HTTP_X_FORWARDED_FOR = 223.71.167.163 -- 03:31:16.312 INFO [21206]: COREGRADE is stopping... -- 03:31:16.312 DEBUG [21206]: Closing database connection -- 03:31:16.312 SQL [21206]: pgsql_close() -- 06:19:16.441 INFO [21306]: COREGRADE is starting... -- 06:19:16.442 INFO [21306]: Version from config: 1.0 -- 06:19:16.442 DEBUG [21306]: Connecting to database... -- 06:19:16.442 DEBUG [21306]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:19:16.442 SQL [21306]: pgsql_db_connect() -- 06:19:16.449 DEBUG [21306]: Database connection successful -- 06:19:16.449 INFO [21306]: _SERVER found -- 06:19:16.449 INFO [21306]: REMOTE_ADDR = 192.168.1.13 -- 06:19:16.449 INFO [21306]: SERVER_NAME = oameye.works.coregrade.com -- 06:19:16.449 INFO [21306]: QUERY_STRING = /solr/admin/info/system -- 06:19:16.449 INFO [21306]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 06:19:16.463 INFO [21306]: COREGRADE is stopping... -- 06:19:16.463 DEBUG [21306]: Closing database connection -- 06:19:16.463 SQL [21306]: pgsql_close() -- 06:25:23.892 INFO [21329]: COREGRADE is starting... -- 06:25:23.893 INFO [21329]: Version from config: 1.0 -- 06:25:23.893 DEBUG [21329]: Connecting to database... -- 06:25:23.893 DEBUG [21329]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:25:23.893 SQL [21329]: pgsql_db_connect() -- 06:25:23.897 DEBUG [21329]: Database connection successful -- 06:25:23.897 INFO [21329]: _SERVER found -- 06:25:23.897 INFO [21329]: REMOTE_ADDR = 192.168.1.13 -- 06:25:23.897 INFO [21329]: SERVER_NAME = oameye.works.coregrade.com -- 06:25:23.897 INFO [21329]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 06:25:23.897 INFO [21329]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 06:25:23.940 INFO [21329]: COREGRADE is stopping... -- 06:25:23.940 DEBUG [21329]: Closing database connection -- 06:25:23.940 SQL [21329]: pgsql_close() -- 06:25:25.229 INFO [21329]: COREGRADE is starting... -- 06:25:25.229 INFO [21329]: Version from config: 1.0 -- 06:25:25.229 DEBUG [21329]: Connecting to database... -- 06:25:25.229 DEBUG [21329]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:25:25.229 SQL [21329]: pgsql_db_connect() -- 06:25:25.234 DEBUG [21329]: Database connection successful -- 06:25:25.234 INFO [21329]: _SERVER found -- 06:25:25.234 INFO [21329]: REMOTE_ADDR = 192.168.1.13 -- 06:25:25.234 INFO [21329]: SERVER_NAME = oameye.works.coregrade.com -- 06:25:25.234 INFO [21329]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 06:25:25.234 INFO [21329]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 06:25:25.265 INFO [21329]: COREGRADE is stopping... -- 06:25:25.265 DEBUG [21329]: Closing database connection -- 06:25:25.265 SQL [21329]: pgsql_close() -- 06:30:59.757 INFO [21485]: COREGRADE is starting... -- 06:30:59.758 INFO [21485]: Version from config: 1.0 -- 06:30:59.758 DEBUG [21485]: Connecting to database... -- 06:30:59.758 DEBUG [21485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:30:59.758 SQL [21485]: pgsql_db_connect() -- 06:30:59.762 DEBUG [21485]: Database connection successful -- 06:30:59.762 INFO [21485]: _SERVER found -- 06:30:59.762 INFO [21485]: REMOTE_ADDR = 192.168.1.13 -- 06:30:59.762 INFO [21485]: SERVER_NAME = oameye.works.coregrade.com -- 06:30:59.762 INFO [21485]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 06:30:59.762 INFO [21485]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 06:30:59.801 INFO [21485]: COREGRADE is stopping... -- 06:30:59.801 DEBUG [21485]: Closing database connection -- 06:30:59.801 SQL [21485]: pgsql_close() -- 08:03:36.050 INFO [21209]: COREGRADE is starting... -- 08:03:36.051 INFO [21209]: Version from config: 1.0 -- 08:03:36.051 DEBUG [21209]: Connecting to database... -- 08:03:36.051 DEBUG [21209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:03:36.051 SQL [21209]: pgsql_db_connect() -- 08:03:36.092 INFO [21209]: COREGRADE is starting... -- 08:03:36.093 INFO [21209]: Version from config: 1.0 -- 08:03:36.093 DEBUG [21209]: Connecting to database... -- 08:03:36.093 DEBUG [21209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:03:36.093 SQL [21209]: pgsql_db_connect() -- 08:03:36.098 DEBUG [21209]: Database connection successful -- 08:03:36.098 INFO [21209]: _SERVER found -- 08:03:36.098 INFO [21209]: REMOTE_ADDR = 192.168.1.13 -- 08:03:36.098 INFO [21209]: SERVER_NAME = oameye.works.coregrade.com -- 08:03:36.098 INFO [21209]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791 -- 08:03:36.098 INFO [21209]: QUERY_STRING = -- 08:03:36.098 INFO [21209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:03:36.098 INFO [21209]: SystemStatus()09-09-********~************ -- 08:03:36.098 INFO [21209]: long coregrade_api_main(CVars in, CVars &out) -- 08:03:36.098 INFO [21209]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 08:03:36.098 INFO [21209]: account calls -- 08:03:36.098 INFO [21209]: account_calls() -- 08:03:36.098 INFO [21209]: LoginCoreGradeAccount() -- 08:03:36.098 FLOG_MAX [21209]: REQ_STRING(username) -- 08:03:36.098 FLOG_MAX [21209]: REQ_STRING(password) -- 08:03:36.098 FLOG_MAX [21209]: REQ_STRING(sessionid) -- 08:03:36.098 FLOG_MAX [21209]: long load_db_record( CVars &rec, const char * query, ... ) -- 08:03:36.098 SQL [21209]: pgsql_query() -- 08:03:36.098 SQL [21209]: About to run query: -- 08:03:36.098 SQL [21209]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 08:03:36.101 SQL [21209]: Found rows: 1 -- 08:03:36.101 FLOG_MAX [21209]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 08:03:36.102 INFO [21209]: long SessionCheck(long uid, const char *sessionid, int create ) -- 08:03:36.102 SQL [21209]: pgsql_exec() -- 08:03:36.102 SQL [21209]: About to run query: -- 08:03:36.102 SQL [21209]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 08:03:36.132 SQL [21209]: PQcmdTuples: 1 -- 08:03:36.132 SQL [21209]: Affected rows: 1 -- 08:03:36.132 SQL [21209]: pgsql_exec() -- 08:03:36.132 SQL [21209]: About to run query: -- 08:03:36.132 SQL [21209]: DELETE FROM members_session WHERE member_id=5 -- 08:03:36.132 SQL [21209]: PQcmdTuples: 0 -- 08:03:36.132 SQL [21209]: Affected rows: 0 -- 08:03:36.132 SQL [21209]: pgsql_query() -- 08:03:36.132 SQL [21209]: About to run query: -- 08:03:36.132 SQL [21209]: SELECT * FROM members_session WHERE member_id=5 AND session<>'7CFB0E4DE9551AAFD7AD42B0BD884210' -- 08:03:36.133 SQL [21209]: Found rows: 0 -- 08:03:36.133 SQL [21209]: Found rows: 0 -- 08:03:36.133 FLOG_MAX [21209]: long load_db_record( CVars &rec, const char * query, ... ) -- 08:03:36.133 SQL [21209]: pgsql_query() -- 08:03:36.133 SQL [21209]: About to run query: -- 08:03:36.133 SQL [21209]: SELECT * FROM members_session WHERE member_id=5 AND session='7CFB0E4DE9551AAFD7AD42B0BD884210' -- 08:03:36.133 SQL [21209]: Found rows: 0 -- 08:03:36.133 SQL [21209]: Found rows: 0 -- 08:03:36.133 FLOG_MAX [21209]: insert_db_record() -- 08:03:36.133 SQL [21209]: pgsql_exec() -- 08:03:36.133 SQL [21209]: About to run query: -- 08:03:36.133 SQL [21209]: INSERT INTO members_session (member_id,session) VALUES ('5','7CFB0E4DE9551AAFD7AD42B0BD884210') -- 08:03:36.141 SQL [21209]: PQcmdTuples: 1 -- 08:03:36.141 SQL [21209]: Affected rows: 1 -- 08:03:36.141 FLOG_MAX [21209]: SELECT currval('members_session_id_seq') -- 08:03:36.141 SQL [21209]: pgsql_query() -- 08:03:36.141 SQL [21209]: About to run query: -- 08:03:36.141 SQL [21209]: SELECT currval('members_session_id_seq') -- 08:03:36.141 SQL [21209]: Found rows: 1 -- 08:03:36.141 INFO [21209]: CreateDefaultPage() -- 08:03:36.141 FLOG_MAX [21209]: long load_db_record( CVars &rec, const char * query, ... ) -- 08:03:36.141 SQL [21209]: pgsql_query() -- 08:03:36.141 SQL [21209]: About to run query: -- 08:03:36.141 SQL [21209]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 08:03:36.141 SQL [21209]: Found rows: 1 -- 08:03:36.142 FLOG_MAX [21209]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 08:03:36.142 SQL [21209]: pgsql_query() -- 08:03:36.142 SQL [21209]: About to run query: -- 08:03:36.142 SQL [21209]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 08:03:36.142 SQL [21209]: Found rows: 1 -- 08:03:36.142 INFO [21209]: /CreateDefaultPage() -- 08:03:36.142 INFO [21209]: /LoginCoreGradeAccount() -- 08:03:36.142 INFO [21209]: RET: added=2020-02-05 06:47:23.982154 -- 08:03:36.142 INFO [21209]: RET: email=ameye+11@chiefsoft.com -- 08:03:36.142 INFO [21209]: RET: firstname=Olu -- 08:03:36.142 INFO [21209]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 08:03:36.142 INFO [21209]: RET: id=5 -- 08:03:36.142 INFO [21209]: RET: last_login= -- 08:03:36.142 INFO [21209]: RET: lastname=Amey -- 08:03:36.142 INFO [21209]: RET: loc=192.168.1.13 -- 08:03:36.142 INFO [21209]: RET: member_id=5 -- 08:03:36.142 INFO [21209]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 08:03:36.142 INFO [21209]: RET: phone= -- 08:03:36.142 INFO [21209]: RET: pid= -- 08:03:36.142 INFO [21209]: RET: result=YES I GET TO BACK END -- 08:03:36.142 INFO [21209]: RET: sessionid=7CFB0E4DE9551AAFD7AD42B0BD884210 -- 08:03:36.142 INFO [21209]: RET: status=1 -- 08:03:36.142 INFO [21209]: RET: stauts=OK -- 08:03:36.142 INFO [21209]: RET: username=ameye+11@chiefsoft.com -- 08:03:36.142 INFO [21209]: RET: verified= -- 08:03:36.144 INFO [21209]: COREGRADE is stopping... -- 08:03:36.144 DEBUG [21209]: Closing database connection -- 08:03:36.144 SQL [21209]: pgsql_close() -- 08:03:36.056 DEBUG [21209]: Database connection successful -- 08:03:36.056 INFO [21209]: _SERVER found -- 08:03:36.056 INFO [21209]: REMOTE_ADDR = 192.168.1.13 -- 08:03:36.056 INFO [21209]: SERVER_NAME = oameye.works.coregrade.com -- 08:03:36.056 INFO [21209]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791 -- 08:03:36.056 INFO [21209]: QUERY_STRING = /auth -- 08:03:36.056 INFO [21209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:03:36.144 INFO [21209]: COREGRADE is stopping... -- 08:03:36.144 DEBUG [21209]: Closing database connection -- 08:03:36.144 SQL [21209]: pgsql_close() -- 08:03:36.168 INFO [21209]: COREGRADE is starting... -- 08:03:36.168 INFO [21209]: Version from config: 1.0 -- 08:03:36.168 DEBUG [21209]: Connecting to database... -- 08:03:36.168 DEBUG [21209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:03:36.168 SQL [21209]: pgsql_db_connect() -- 08:03:36.172 DEBUG [21209]: Database connection successful -- 08:03:36.172 INFO [21209]: _SERVER found -- 08:03:36.172 INFO [21209]: REMOTE_ADDR = 192.168.1.13 -- 08:03:36.172 INFO [21209]: SERVER_NAME = oameye.works.coregrade.com -- 08:03:36.172 INFO [21209]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=dm1p4djbgv88rq2fmpljv0p0o5urfg7r -- 08:03:36.172 INFO [21209]: QUERY_STRING = /member/index -- 08:03:36.172 INFO [21209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:03:36.213 INFO [21209]: COREGRADE is stopping... -- 08:03:36.213 DEBUG [21209]: Closing database connection -- 08:03:36.213 SQL [21209]: pgsql_close() -- 08:03:36.776 INFO [21210]: COREGRADE is starting... -- 08:03:36.776 INFO [21210]: Version from config: 1.0 -- 08:03:36.776 DEBUG [21210]: Connecting to database... -- 08:03:36.776 DEBUG [21210]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:03:36.776 SQL [21210]: pgsql_db_connect() -- 08:03:36.781 DEBUG [21210]: Database connection successful -- 08:03:36.781 INFO [21210]: _SERVER found -- 08:03:36.781 INFO [21210]: REMOTE_ADDR = 192.168.1.13 -- 08:03:36.781 INFO [21210]: SERVER_NAME = oameye.works.coregrade.com -- 08:03:36.781 INFO [21210]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=dm1p4djbgv88rq2fmpljv0p0o5urfg7r -- 08:03:36.781 INFO [21210]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 08:03:36.781 INFO [21210]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:03:36.793 INFO [21210]: COREGRADE is stopping... -- 08:03:36.793 DEBUG [21210]: Closing database connection -- 08:03:36.793 SQL [21210]: pgsql_close() -- 08:03:36.800 INFO [21209]: COREGRADE is starting... -- 08:03:36.800 INFO [21209]: Version from config: 1.0 -- 08:03:36.800 DEBUG [21209]: Connecting to database... -- 08:03:36.800 DEBUG [21209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:03:36.800 SQL [21209]: pgsql_db_connect() -- 08:03:36.804 DEBUG [21209]: Database connection successful -- 08:03:36.804 INFO [21209]: _SERVER found -- 08:03:36.804 INFO [21209]: REMOTE_ADDR = 192.168.1.13 -- 08:03:36.804 INFO [21209]: SERVER_NAME = oameye.works.coregrade.com -- 08:03:36.804 INFO [21209]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=dm1p4djbgv88rq2fmpljv0p0o5urfg7r -- 08:03:36.804 INFO [21209]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 08:03:36.804 INFO [21209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:03:36.815 INFO [21209]: COREGRADE is stopping... -- 08:03:36.815 DEBUG [21209]: Closing database connection -- 08:03:36.815 SQL [21209]: pgsql_close() -- 08:03:36.998 INFO [21209]: COREGRADE is starting... -- 08:03:36.999 INFO [21209]: Version from config: 1.0 -- 08:03:36.999 DEBUG [21209]: Connecting to database... -- 08:03:36.999 DEBUG [21209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:03:36.999 SQL [21209]: pgsql_db_connect() -- 08:03:37.003 DEBUG [21209]: Database connection successful -- 08:03:37.003 INFO [21209]: _SERVER found -- 08:03:37.003 INFO [21209]: REMOTE_ADDR = 192.168.1.13 -- 08:03:37.003 INFO [21209]: SERVER_NAME = oameye.works.coregrade.com -- 08:03:37.003 INFO [21209]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=dm1p4djbgv88rq2fmpljv0p0o5urfg7r -- 08:03:37.003 INFO [21209]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:03:37.003 INFO [21209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:03:37.014 INFO [21209]: COREGRADE is stopping... -- 08:03:37.014 DEBUG [21209]: Closing database connection -- 08:03:37.014 SQL [21209]: pgsql_close() -- 08:03:37.279 INFO [21209]: COREGRADE is starting... -- 08:03:37.280 INFO [21209]: Version from config: 1.0 -- 08:03:37.280 DEBUG [21209]: Connecting to database... -- 08:03:37.280 DEBUG [21209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:03:37.280 SQL [21209]: pgsql_db_connect() -- 08:03:37.284 DEBUG [21209]: Database connection successful -- 08:03:37.284 INFO [21209]: _SERVER found -- 08:03:37.284 INFO [21209]: REMOTE_ADDR = 192.168.1.13 -- 08:03:37.284 INFO [21209]: SERVER_NAME = oameye.works.coregrade.com -- 08:03:37.284 INFO [21209]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=dm1p4djbgv88rq2fmpljv0p0o5urfg7r -- 08:03:37.284 INFO [21209]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 08:03:37.284 INFO [21209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:03:37.295 INFO [21209]: COREGRADE is stopping... -- 08:03:37.295 DEBUG [21209]: Closing database connection -- 08:03:37.295 SQL [21209]: pgsql_close() -- 08:05:09.996 INFO [21207]: COREGRADE is starting... -- 08:05:09.996 INFO [21207]: Version from config: 1.0 -- 08:05:09.996 DEBUG [21207]: Connecting to database... -- 08:05:09.996 DEBUG [21207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:05:09.996 SQL [21207]: pgsql_db_connect() -- 08:05:09.001 DEBUG [21207]: Database connection successful -- 08:05:09.001 INFO [21207]: _SERVER found -- 08:05:09.001 INFO [21207]: REMOTE_ADDR = 192.168.1.13 -- 08:05:09.001 INFO [21207]: SERVER_NAME = oameye.works.coregrade.com -- 08:05:09.001 INFO [21207]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=dm1p4djbgv88rq2fmpljv0p0o5urfg7r -- 08:05:09.001 INFO [21207]: QUERY_STRING = /member/page -- 08:05:09.001 INFO [21207]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:05:10.045 INFO [21207]: COREGRADE is stopping... -- 08:05:10.045 DEBUG [21207]: Closing database connection -- 08:05:10.045 SQL [21207]: pgsql_close() -- 08:05:10.456 INFO [21239]: COREGRADE is starting... -- 08:05:10.456 INFO [21239]: Version from config: 1.0 -- 08:05:10.456 DEBUG [21239]: Connecting to database... -- 08:05:10.456 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:05:10.456 SQL [21239]: pgsql_db_connect() -- 08:05:10.460 DEBUG [21239]: Database connection successful -- 08:05:10.460 INFO [21239]: _SERVER found -- 08:05:10.460 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 08:05:10.460 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 08:05:10.460 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=dm1p4djbgv88rq2fmpljv0p0o5urfg7r -- 08:05:10.460 INFO [21239]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 08:05:10.460 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:05:10.472 INFO [21239]: COREGRADE is stopping... -- 08:05:10.472 DEBUG [21239]: Closing database connection -- 08:05:10.472 SQL [21239]: pgsql_close() -- 08:05:10.777 INFO [21239]: COREGRADE is starting... -- 08:05:10.777 INFO [21239]: Version from config: 1.0 -- 08:05:10.777 DEBUG [21239]: Connecting to database... -- 08:05:10.777 DEBUG [21239]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:05:10.777 SQL [21239]: pgsql_db_connect() -- 08:05:10.784 INFO [21207]: COREGRADE is starting... -- 08:05:10.785 INFO [21207]: Version from config: 1.0 -- 08:05:10.785 DEBUG [21207]: Connecting to database... -- 08:05:10.785 DEBUG [21207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:05:10.785 SQL [21207]: pgsql_db_connect() -- 08:05:10.781 DEBUG [21239]: Database connection successful -- 08:05:10.781 INFO [21239]: _SERVER found -- 08:05:10.781 INFO [21239]: REMOTE_ADDR = 192.168.1.13 -- 08:05:10.781 INFO [21239]: SERVER_NAME = oameye.works.coregrade.com -- 08:05:10.781 INFO [21239]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=dm1p4djbgv88rq2fmpljv0p0o5urfg7r -- 08:05:10.781 INFO [21239]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 08:05:10.781 INFO [21239]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:05:10.792 INFO [21239]: COREGRADE is stopping... -- 08:05:10.792 DEBUG [21239]: Closing database connection -- 08:05:10.792 SQL [21239]: pgsql_close() -- 08:05:10.789 DEBUG [21207]: Database connection successful -- 08:05:10.789 INFO [21207]: _SERVER found -- 08:05:10.789 INFO [21207]: REMOTE_ADDR = 192.168.1.13 -- 08:05:10.789 INFO [21207]: SERVER_NAME = oameye.works.coregrade.com -- 08:05:10.789 INFO [21207]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=dm1p4djbgv88rq2fmpljv0p0o5urfg7r -- 08:05:10.789 INFO [21207]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 08:05:10.789 INFO [21207]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:05:10.800 INFO [21207]: COREGRADE is stopping... -- 08:05:10.800 DEBUG [21207]: Closing database connection -- 08:05:10.800 SQL [21207]: pgsql_close() -- 08:05:10.893 INFO [21207]: COREGRADE is starting... -- 08:05:10.893 INFO [21207]: Version from config: 1.0 -- 08:05:10.893 DEBUG [21207]: Connecting to database... -- 08:05:10.893 DEBUG [21207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:05:10.893 SQL [21207]: pgsql_db_connect() -- 08:05:10.897 DEBUG [21207]: Database connection successful -- 08:05:10.897 INFO [21207]: _SERVER found -- 08:05:10.897 INFO [21207]: REMOTE_ADDR = 192.168.1.13 -- 08:05:10.897 INFO [21207]: SERVER_NAME = oameye.works.coregrade.com -- 08:05:10.897 INFO [21207]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=dm1p4djbgv88rq2fmpljv0p0o5urfg7r -- 08:05:10.897 INFO [21207]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:05:10.897 INFO [21207]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:05:10.909 INFO [21207]: COREGRADE is stopping... -- 08:05:10.909 DEBUG [21207]: Closing database connection -- 08:05:10.909 SQL [21207]: pgsql_close() -- 08:05:45.806 INFO [21208]: COREGRADE is starting... -- 08:05:45.806 INFO [21208]: Version from config: 1.0 -- 08:05:45.806 DEBUG [21208]: Connecting to database... -- 08:05:45.806 DEBUG [21208]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:05:45.806 SQL [21208]: pgsql_db_connect() -- 08:05:45.810 DEBUG [21208]: Database connection successful -- 08:05:45.810 INFO [21208]: _SERVER found -- 08:05:45.810 INFO [21208]: REMOTE_ADDR = 192.168.1.13 -- 08:05:45.810 INFO [21208]: SERVER_NAME = works.coregrade.com -- 08:05:45.810 INFO [21208]: QUERY_STRING = -- 08:05:45.810 INFO [21208]: HTTP_X_FORWARDED_FOR = 209.17.96.50 -- 08:05:45.850 INFO [21208]: COREGRADE is stopping... -- 08:05:45.850 DEBUG [21208]: Closing database connection -- 08:05:45.850 SQL [21208]: pgsql_close() -- 08:17:42.412 INFO [32209]: COREGRADE is starting... -- 08:17:42.413 INFO [32209]: Version from config: 1.0 -- 08:17:42.413 DEBUG [32209]: Connecting to database... -- 08:17:42.413 DEBUG [32209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:17:42.413 SQL [32209]: pgsql_db_connect() -- 08:17:42.417 DEBUG [32209]: Database connection successful -- 08:17:42.417 INFO [32209]: _SERVER found -- 08:17:42.417 INFO [32209]: REMOTE_ADDR = 192.168.1.13 -- 08:17:42.417 INFO [32209]: SERVER_NAME = oameye.works.coregrade.com -- 08:17:42.417 INFO [32209]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=dm1p4djbgv88rq2fmpljv0p0o5urfg7r -- 08:17:42.417 INFO [32209]: QUERY_STRING = /member/page -- 08:17:42.417 INFO [32209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:17:42.473 INFO [32209]: COREGRADE is stopping... -- 08:17:42.473 DEBUG [32209]: Closing database connection -- 08:17:42.473 SQL [32209]: pgsql_close() -- 08:17:42.810 INFO [32209]: COREGRADE is starting... -- 08:17:42.810 INFO [32209]: Version from config: 1.0 -- 08:17:42.810 DEBUG [32209]: Connecting to database... -- 08:17:42.810 DEBUG [32209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:17:42.810 SQL [32209]: pgsql_db_connect() -- 08:17:42.815 DEBUG [32209]: Database connection successful -- 08:17:42.815 INFO [32209]: _SERVER found -- 08:17:42.815 INFO [32209]: REMOTE_ADDR = 192.168.1.13 -- 08:17:42.815 INFO [32209]: SERVER_NAME = oameye.works.coregrade.com -- 08:17:42.815 INFO [32209]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=0ojsel3m3qrc0dp0q44nl8r7ggedi4b5 -- 08:17:42.815 INFO [32209]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 08:17:42.815 INFO [32209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:17:42.827 INFO [32209]: COREGRADE is stopping... -- 08:17:42.827 DEBUG [32209]: Closing database connection -- 08:17:42.827 SQL [32209]: pgsql_close() -- 08:17:43.056 INFO [32209]: COREGRADE is starting... -- 08:17:43.056 INFO [32209]: Version from config: 1.0 -- 08:17:43.056 DEBUG [32209]: Connecting to database... -- 08:17:43.056 DEBUG [32209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:17:43.056 SQL [32209]: pgsql_db_connect() -- 08:17:43.071 INFO [32210]: COREGRADE is starting... -- 08:17:43.071 INFO [32210]: Version from config: 1.0 -- 08:17:43.071 DEBUG [32210]: Connecting to database... -- 08:17:43.071 DEBUG [32210]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:17:43.071 SQL [32210]: pgsql_db_connect() -- 08:17:43.060 DEBUG [32209]: Database connection successful -- 08:17:43.060 INFO [32209]: _SERVER found -- 08:17:43.060 INFO [32209]: REMOTE_ADDR = 192.168.1.13 -- 08:17:43.060 INFO [32209]: SERVER_NAME = oameye.works.coregrade.com -- 08:17:43.060 INFO [32209]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=0ojsel3m3qrc0dp0q44nl8r7ggedi4b5 -- 08:17:43.060 INFO [32209]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 08:17:43.060 INFO [32209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:17:43.072 INFO [32209]: COREGRADE is stopping... -- 08:17:43.072 DEBUG [32209]: Closing database connection -- 08:17:43.072 SQL [32209]: pgsql_close() -- 08:17:43.076 DEBUG [32210]: Database connection successful -- 08:17:43.076 INFO [32210]: _SERVER found -- 08:17:43.076 INFO [32210]: REMOTE_ADDR = 192.168.1.13 -- 08:17:43.076 INFO [32210]: SERVER_NAME = oameye.works.coregrade.com -- 08:17:43.076 INFO [32210]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=0ojsel3m3qrc0dp0q44nl8r7ggedi4b5 -- 08:17:43.076 INFO [32210]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 08:17:43.076 INFO [32210]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:17:43.090 INFO [32210]: COREGRADE is stopping... -- 08:17:43.090 DEBUG [32210]: Closing database connection -- 08:17:43.090 SQL [32210]: pgsql_close() -- 08:17:43.157 INFO [32210]: COREGRADE is starting... -- 08:17:43.157 INFO [32210]: Version from config: 1.0 -- 08:17:43.157 DEBUG [32210]: Connecting to database... -- 08:17:43.157 DEBUG [32210]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:17:43.157 SQL [32210]: pgsql_db_connect() -- 08:17:43.161 DEBUG [32210]: Database connection successful -- 08:17:43.161 INFO [32210]: _SERVER found -- 08:17:43.161 INFO [32210]: REMOTE_ADDR = 192.168.1.13 -- 08:17:43.161 INFO [32210]: SERVER_NAME = oameye.works.coregrade.com -- 08:17:43.161 INFO [32210]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=0ojsel3m3qrc0dp0q44nl8r7ggedi4b5 -- 08:17:43.161 INFO [32210]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:17:43.161 INFO [32210]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:17:43.173 INFO [32210]: COREGRADE is stopping... -- 08:17:43.173 DEBUG [32210]: Closing database connection -- 08:17:43.173 SQL [32210]: pgsql_close() -- 08:17:47.473 INFO [32210]: COREGRADE is starting... -- 08:17:47.473 INFO [32210]: Version from config: 1.0 -- 08:17:47.473 DEBUG [32210]: Connecting to database... -- 08:17:47.473 DEBUG [32210]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:17:47.473 SQL [32210]: pgsql_db_connect() -- 08:17:47.477 DEBUG [32210]: Database connection successful -- 08:17:47.477 INFO [32210]: _SERVER found -- 08:17:47.477 INFO [32210]: REMOTE_ADDR = 192.168.1.13 -- 08:17:47.477 INFO [32210]: SERVER_NAME = oameye.works.coregrade.com -- 08:17:47.477 INFO [32210]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=0ojsel3m3qrc0dp0q44nl8r7ggedi4b5 -- 08:17:47.477 INFO [32210]: QUERY_STRING = /member/viewCardAddAction -- 08:17:47.477 INFO [32210]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:17:47.513 INFO [32210]: COREGRADE is stopping... -- 08:17:47.514 DEBUG [32210]: Closing database connection -- 08:17:47.514 SQL [32210]: pgsql_close() -- 08:17:48.820 INFO [32210]: COREGRADE is starting... -- 08:17:48.820 INFO [32210]: Version from config: 1.0 -- 08:17:48.820 DEBUG [32210]: Connecting to database... -- 08:17:48.820 DEBUG [32210]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:17:48.820 SQL [32210]: pgsql_db_connect() -- 08:17:48.824 DEBUG [32210]: Database connection successful -- 08:17:48.824 INFO [32210]: _SERVER found -- 08:17:48.824 INFO [32210]: REMOTE_ADDR = 192.168.1.13 -- 08:17:48.824 INFO [32210]: SERVER_NAME = oameye.works.coregrade.com -- 08:17:48.824 INFO [32210]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=0ojsel3m3qrc0dp0q44nl8r7ggedi4b5 -- 08:17:48.824 INFO [32210]: QUERY_STRING = /member/viewCardAddAction -- 08:17:48.824 INFO [32210]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:17:48.856 INFO [32210]: COREGRADE is stopping... -- 08:17:48.856 DEBUG [32210]: Closing database connection -- 08:17:48.856 SQL [32210]: pgsql_close() -- 08:19:09.493 INFO [32212]: COREGRADE is starting... -- 08:19:09.494 INFO [32212]: Version from config: 1.0 -- 08:19:09.494 DEBUG [32212]: Connecting to database... -- 08:19:09.494 DEBUG [32212]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:19:09.494 SQL [32212]: pgsql_db_connect() -- 08:19:09.498 DEBUG [32212]: Database connection successful -- 08:19:09.498 INFO [32212]: _SERVER found -- 08:19:09.498 INFO [32212]: REMOTE_ADDR = 192.168.1.13 -- 08:19:09.498 INFO [32212]: SERVER_NAME = oameye.works.coregrade.com -- 08:19:09.498 INFO [32212]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=0ojsel3m3qrc0dp0q44nl8r7ggedi4b5 -- 08:19:09.498 INFO [32212]: QUERY_STRING = /member/viewCardAddAction -- 08:19:09.498 INFO [32212]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:19:09.537 INFO [32212]: COREGRADE is stopping... -- 08:19:09.537 DEBUG [32212]: Closing database connection -- 08:19:09.537 SQL [32212]: pgsql_close() -- 08:19:11.165 INFO [32212]: COREGRADE is starting... -- 08:19:11.165 INFO [32212]: Version from config: 1.0 -- 08:19:11.165 DEBUG [32212]: Connecting to database... -- 08:19:11.165 DEBUG [32212]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:19:11.165 SQL [32212]: pgsql_db_connect() -- 08:19:11.169 DEBUG [32212]: Database connection successful -- 08:19:11.169 INFO [32212]: _SERVER found -- 08:19:11.169 INFO [32212]: REMOTE_ADDR = 192.168.1.13 -- 08:19:11.169 INFO [32212]: SERVER_NAME = oameye.works.coregrade.com -- 08:19:11.169 INFO [32212]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=0ojsel3m3qrc0dp0q44nl8r7ggedi4b5 -- 08:19:11.169 INFO [32212]: QUERY_STRING = /member/viewCardAddAction -- 08:19:11.169 INFO [32212]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:19:11.205 INFO [32212]: COREGRADE is stopping... -- 08:19:11.205 DEBUG [32212]: Closing database connection -- 08:19:11.205 SQL [32212]: pgsql_close() -- 08:19:16.291 INFO [32211]: COREGRADE is starting... -- 08:19:16.291 INFO [32211]: Version from config: 1.0 -- 08:19:16.291 DEBUG [32211]: Connecting to database... -- 08:19:16.291 DEBUG [32211]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:19:16.291 SQL [32211]: pgsql_db_connect() -- 08:19:16.296 DEBUG [32211]: Database connection successful -- 08:19:16.296 INFO [32211]: _SERVER found -- 08:19:16.296 INFO [32211]: REMOTE_ADDR = 192.168.1.13 -- 08:19:16.296 INFO [32211]: SERVER_NAME = oameye.works.coregrade.com -- 08:19:16.296 INFO [32211]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=0ojsel3m3qrc0dp0q44nl8r7ggedi4b5 -- 08:19:16.296 INFO [32211]: QUERY_STRING = /member/viewCardAddAction -- 08:19:16.296 INFO [32211]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:19:16.334 INFO [32211]: COREGRADE is stopping... -- 08:19:16.334 DEBUG [32211]: Closing database connection -- 08:19:16.334 SQL [32211]: pgsql_close() -- 08:22:40.011 INFO [32213]: COREGRADE is starting... -- 08:22:40.011 INFO [32213]: Version from config: 1.0 -- 08:22:40.011 DEBUG [32213]: Connecting to database... -- 08:22:40.011 DEBUG [32213]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:22:40.011 SQL [32213]: pgsql_db_connect() -- 08:22:40.017 DEBUG [32213]: Database connection successful -- 08:22:40.017 INFO [32213]: _SERVER found -- 08:22:40.017 INFO [32213]: REMOTE_ADDR = 192.168.1.13 -- 08:22:40.017 INFO [32213]: SERVER_NAME = oameye.works.coregrade.com -- 08:22:40.017 INFO [32213]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=0ojsel3m3qrc0dp0q44nl8r7ggedi4b5 -- 08:22:40.017 INFO [32213]: QUERY_STRING = -- 08:22:40.017 INFO [32213]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:22:40.065 INFO [32213]: COREGRADE is stopping... -- 08:22:40.065 DEBUG [32213]: Closing database connection -- 08:22:40.065 SQL [32213]: pgsql_close() -- 08:22:40.689 INFO [32209]: COREGRADE is starting... -- 08:22:40.689 INFO [32209]: Version from config: 1.0 -- 08:22:40.689 DEBUG [32209]: Connecting to database... -- 08:22:40.689 DEBUG [32209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:22:40.689 SQL [32209]: pgsql_db_connect() -- 08:22:40.693 DEBUG [32209]: Database connection successful -- 08:22:40.693 INFO [32209]: _SERVER found -- 08:22:40.693 INFO [32209]: REMOTE_ADDR = 192.168.1.13 -- 08:22:40.693 INFO [32209]: SERVER_NAME = oameye.works.coregrade.com -- 08:22:40.693 INFO [32209]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=0ojsel3m3qrc0dp0q44nl8r7ggedi4b5 -- 08:22:40.693 INFO [32209]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 08:22:40.693 INFO [32209]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:22:40.706 INFO [32209]: COREGRADE is stopping... -- 08:22:40.706 DEBUG [32209]: Closing database connection -- 08:22:40.706 SQL [32209]: pgsql_close() -- 08:22:40.790 INFO [32258]: COREGRADE is starting... -- 08:22:40.791 INFO [32258]: Version from config: 1.0 -- 08:22:40.791 DEBUG [32258]: Connecting to database... -- 08:22:40.791 DEBUG [32258]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:22:40.791 SQL [32258]: pgsql_db_connect() -- 08:22:40.795 DEBUG [32258]: Database connection successful -- 08:22:40.795 INFO [32258]: _SERVER found -- 08:22:40.795 INFO [32258]: REMOTE_ADDR = 192.168.1.13 -- 08:22:40.795 INFO [32258]: SERVER_NAME = oameye.works.coregrade.com -- 08:22:40.795 INFO [32258]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=0ojsel3m3qrc0dp0q44nl8r7ggedi4b5; _gat_gtag_UA_54829827_2=1 -- 08:22:40.795 INFO [32258]: QUERY_STRING = /assets/img/footer_1.jpg -- 08:22:40.795 INFO [32258]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:22:40.810 INFO [32258]: COREGRADE is stopping... -- 08:22:40.810 DEBUG [32258]: Closing database connection -- 08:22:40.810 SQL [32258]: pgsql_close() -- 12:52:20.925 INFO [32211]: COREGRADE is starting... -- 12:52:20.926 INFO [32211]: Version from config: 1.0 -- 12:52:20.926 DEBUG [32211]: Connecting to database... -- 12:52:20.926 DEBUG [32211]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:52:20.926 SQL [32211]: pgsql_db_connect() -- 12:52:20.932 DEBUG [32211]: Database connection successful -- 12:52:20.932 INFO [32211]: _SERVER found -- 12:52:20.932 INFO [32211]: REMOTE_ADDR = 192.168.1.13 -- 12:52:20.932 INFO [32211]: SERVER_NAME = oameye.works.coregrade.com -- 12:52:20.932 INFO [32211]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 12:52:20.932 INFO [32211]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 12:52:20.947 INFO [32211]: COREGRADE is stopping... -- 12:52:20.947 DEBUG [32211]: Closing database connection -- 12:52:20.947 SQL [32211]: pgsql_close() -- 14:19:05.883 INFO [32299]: COREGRADE is starting... -- 14:19:05.884 INFO [32299]: Version from config: 1.0 -- 14:19:05.884 DEBUG [32299]: Connecting to database... -- 14:19:05.884 DEBUG [32299]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:19:05.884 SQL [32299]: pgsql_db_connect() -- 14:19:05.885 INFO [32301]: COREGRADE is starting... -- 14:19:05.885 INFO [32301]: Version from config: 1.0 -- 14:19:05.885 DEBUG [32301]: Connecting to database... -- 14:19:05.885 DEBUG [32301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:19:05.886 SQL [32301]: pgsql_db_connect() -- 14:19:05.893 DEBUG [32301]: Database connection successful -- 14:19:05.893 INFO [32301]: _SERVER found -- 14:19:05.893 INFO [32301]: REMOTE_ADDR = 192.168.1.13 -- 14:19:05.893 INFO [32301]: SERVER_NAME = oameye.works.coregrade.com -- 14:19:05.893 INFO [32301]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791 -- 14:19:05.893 INFO [32301]: QUERY_STRING = /welcome/viewLogin -- 14:19:05.893 INFO [32301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:19:05.951 INFO [32301]: COREGRADE is stopping... -- 14:19:05.952 DEBUG [32301]: Closing database connection -- 14:19:05.952 SQL [32301]: pgsql_close() -- 14:19:05.892 DEBUG [32299]: Database connection successful -- 14:19:05.892 INFO [32299]: _SERVER found -- 14:19:05.892 INFO [32299]: REMOTE_ADDR = 192.168.1.13 -- 14:19:05.892 INFO [32299]: SERVER_NAME = oameye.works.coregrade.com -- 14:19:05.892 INFO [32299]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791 -- 14:19:05.892 INFO [32299]: QUERY_STRING = /auth -- 14:19:05.892 INFO [32299]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:19:05.953 INFO [32299]: COREGRADE is stopping... -- 14:19:05.953 DEBUG [32299]: Closing database connection -- 14:19:05.953 SQL [32299]: pgsql_close() -- 14:19:05.970 INFO [32299]: COREGRADE is starting... -- 14:19:05.970 INFO [32299]: Version from config: 1.0 -- 14:19:05.970 DEBUG [32299]: Connecting to database... -- 14:19:05.970 DEBUG [32299]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:19:05.970 SQL [32299]: pgsql_db_connect() -- 14:19:05.974 DEBUG [32299]: Database connection successful -- 14:19:05.974 INFO [32299]: _SERVER found -- 14:19:05.974 INFO [32299]: REMOTE_ADDR = 192.168.1.13 -- 14:19:05.974 INFO [32299]: SERVER_NAME = oameye.works.coregrade.com -- 14:19:05.974 INFO [32299]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=fah47ortaemadtpa522r3ktgcifth9m1 -- 14:19:05.974 INFO [32299]: QUERY_STRING = /auth/index -- 14:19:05.974 INFO [32299]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:19:06.009 INFO [32299]: COREGRADE is stopping... -- 14:19:06.009 DEBUG [32299]: Closing database connection -- 14:19:06.009 SQL [32299]: pgsql_close() -- 14:19:06.177 INFO [32299]: COREGRADE is starting... -- 14:19:06.177 INFO [32299]: Version from config: 1.0 -- 14:19:06.177 DEBUG [32299]: Connecting to database... -- 14:19:06.177 DEBUG [32299]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:19:06.177 SQL [32299]: pgsql_db_connect() -- 14:19:06.181 DEBUG [32299]: Database connection successful -- 14:19:06.181 INFO [32299]: _SERVER found -- 14:19:06.181 INFO [32299]: REMOTE_ADDR = 192.168.1.13 -- 14:19:06.181 INFO [32299]: SERVER_NAME = oameye.works.coregrade.com -- 14:19:06.181 INFO [32299]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=fah47ortaemadtpa522r3ktgcifth9m1 -- 14:19:06.181 INFO [32299]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:19:06.181 INFO [32299]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:19:06.194 INFO [32299]: COREGRADE is stopping... -- 14:19:06.194 DEBUG [32299]: Closing database connection -- 14:19:06.194 SQL [32299]: pgsql_close() -- 14:19:06.208 INFO [32302]: COREGRADE is starting... -- 14:19:06.208 INFO [32302]: Version from config: 1.0 -- 14:19:06.208 DEBUG [32302]: Connecting to database... -- 14:19:06.209 DEBUG [32302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:19:06.209 SQL [32302]: pgsql_db_connect() -- 14:19:06.212 DEBUG [32302]: Database connection successful -- 14:19:06.212 INFO [32302]: _SERVER found -- 14:19:06.212 INFO [32302]: REMOTE_ADDR = 192.168.1.13 -- 14:19:06.212 INFO [32302]: SERVER_NAME = oameye.works.coregrade.com -- 14:19:06.212 INFO [32302]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=fah47ortaemadtpa522r3ktgcifth9m1 -- 14:19:06.212 INFO [32302]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:19:06.212 INFO [32302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:19:06.227 INFO [32302]: COREGRADE is stopping... -- 14:19:06.227 DEBUG [32302]: Closing database connection -- 14:19:06.227 SQL [32302]: pgsql_close() -- 14:19:07.802 INFO [32302]: COREGRADE is starting... -- 14:19:07.802 INFO [32302]: Version from config: 1.0 -- 14:19:07.802 DEBUG [32302]: Connecting to database... -- 14:19:07.802 DEBUG [32302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:19:07.802 SQL [32302]: pgsql_db_connect() -- 14:19:07.841 INFO [32302]: COREGRADE is starting... -- 14:19:07.841 INFO [32302]: Version from config: 1.0 -- 14:19:07.842 DEBUG [32302]: Connecting to database... -- 14:19:07.842 DEBUG [32302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:19:07.842 SQL [32302]: pgsql_db_connect() -- 14:19:07.845 DEBUG [32302]: Database connection successful -- 14:19:07.845 INFO [32302]: _SERVER found -- 14:19:07.845 INFO [32302]: REMOTE_ADDR = 192.168.1.13 -- 14:19:07.845 INFO [32302]: SERVER_NAME = oameye.works.coregrade.com -- 14:19:07.845 INFO [32302]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=fah47ortaemadtpa522r3ktgcifth9m1 -- 14:19:07.845 INFO [32302]: QUERY_STRING = -- 14:19:07.845 INFO [32302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:19:07.845 INFO [32302]: SystemStatus()09-09-********~************ -- 14:19:07.845 INFO [32302]: long coregrade_api_main(CVars in, CVars &out) -- 14:19:07.845 INFO [32302]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 14:19:07.845 INFO [32302]: account calls -- 14:19:07.845 INFO [32302]: account_calls() -- 14:19:07.845 INFO [32302]: LoginCoreGradeAccount() -- 14:19:07.845 FLOG_MAX [32302]: REQ_STRING(username) -- 14:19:07.846 FLOG_MAX [32302]: REQ_STRING(password) -- 14:19:07.846 FLOG_MAX [32302]: REQ_STRING(sessionid) -- 14:19:07.846 FLOG_MAX [32302]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:19:07.846 SQL [32302]: pgsql_query() -- 14:19:07.846 SQL [32302]: About to run query: -- 14:19:07.846 SQL [32302]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 14:19:07.849 SQL [32302]: Found rows: 1 -- 14:19:07.849 FLOG_MAX [32302]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 14:19:07.849 INFO [32302]: long SessionCheck(long uid, const char *sessionid, int create ) -- 14:19:07.849 SQL [32302]: pgsql_exec() -- 14:19:07.849 SQL [32302]: About to run query: -- 14:19:07.849 SQL [32302]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 14:19:07.923 SQL [32302]: PQcmdTuples: 1 -- 14:19:07.923 SQL [32302]: Affected rows: 1 -- 14:19:07.923 SQL [32302]: pgsql_exec() -- 14:19:07.923 SQL [32302]: About to run query: -- 14:19:07.923 SQL [32302]: DELETE FROM members_session WHERE member_id=5 -- 14:19:07.923 SQL [32302]: PQcmdTuples: 0 -- 14:19:07.923 SQL [32302]: Affected rows: 0 -- 14:19:07.923 SQL [32302]: pgsql_query() -- 14:19:07.923 SQL [32302]: About to run query: -- 14:19:07.923 SQL [32302]: SELECT * FROM members_session WHERE member_id=5 AND session<>'1904E3FF0753A90E57377689C1C6D7E7' -- 14:19:07.924 SQL [32302]: Found rows: 0 -- 14:19:07.924 SQL [32302]: Found rows: 0 -- 14:19:07.924 FLOG_MAX [32302]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:19:07.924 SQL [32302]: pgsql_query() -- 14:19:07.924 SQL [32302]: About to run query: -- 14:19:07.924 SQL [32302]: SELECT * FROM members_session WHERE member_id=5 AND session='1904E3FF0753A90E57377689C1C6D7E7' -- 14:19:07.925 SQL [32302]: Found rows: 0 -- 14:19:07.925 SQL [32302]: Found rows: 0 -- 14:19:07.925 FLOG_MAX [32302]: insert_db_record() -- 14:19:07.925 SQL [32302]: pgsql_exec() -- 14:19:07.925 SQL [32302]: About to run query: -- 14:19:07.925 SQL [32302]: INSERT INTO members_session (member_id,session) VALUES ('5','1904E3FF0753A90E57377689C1C6D7E7') -- 14:19:07.926 SQL [32302]: PQcmdTuples: 1 -- 14:19:07.926 SQL [32302]: Affected rows: 1 -- 14:19:07.926 FLOG_MAX [32302]: SELECT currval('members_session_id_seq') -- 14:19:07.926 SQL [32302]: pgsql_query() -- 14:19:07.926 SQL [32302]: About to run query: -- 14:19:07.926 SQL [32302]: SELECT currval('members_session_id_seq') -- 14:19:07.927 SQL [32302]: Found rows: 1 -- 14:19:07.927 INFO [32302]: CreateDefaultPage() -- 14:19:07.927 FLOG_MAX [32302]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:19:07.927 SQL [32302]: pgsql_query() -- 14:19:07.927 SQL [32302]: About to run query: -- 14:19:07.927 SQL [32302]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 14:19:07.927 SQL [32302]: Found rows: 1 -- 14:19:07.927 FLOG_MAX [32302]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 14:19:07.927 SQL [32302]: pgsql_query() -- 14:19:07.927 SQL [32302]: About to run query: -- 14:19:07.927 SQL [32302]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 14:19:07.928 SQL [32302]: Found rows: 1 -- 14:19:07.928 INFO [32302]: /CreateDefaultPage() -- 14:19:07.928 INFO [32302]: /LoginCoreGradeAccount() -- 14:19:07.928 INFO [32302]: RET: added=2020-02-05 06:47:23.982154 -- 14:19:07.928 INFO [32302]: RET: email=ameye+11@chiefsoft.com -- 14:19:07.928 INFO [32302]: RET: firstname=Olu -- 14:19:07.928 INFO [32302]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 14:19:07.928 INFO [32302]: RET: id=5 -- 14:19:07.928 INFO [32302]: RET: last_login= -- 14:19:07.928 INFO [32302]: RET: lastname=Amey -- 14:19:07.928 INFO [32302]: RET: loc=192.168.1.13 -- 14:19:07.928 INFO [32302]: RET: member_id=5 -- 14:19:07.928 INFO [32302]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 14:19:07.928 INFO [32302]: RET: phone= -- 14:19:07.928 INFO [32302]: RET: pid= -- 14:19:07.928 INFO [32302]: RET: result=YES I GET TO BACK END -- 14:19:07.928 INFO [32302]: RET: sessionid=1904E3FF0753A90E57377689C1C6D7E7 -- 14:19:07.928 INFO [32302]: RET: status=1 -- 14:19:07.928 INFO [32302]: RET: stauts=OK -- 14:19:07.928 INFO [32302]: RET: username=ameye+11@chiefsoft.com -- 14:19:07.928 INFO [32302]: RET: verified= -- 14:19:07.929 INFO [32302]: COREGRADE is stopping... -- 14:19:07.929 DEBUG [32302]: Closing database connection -- 14:19:07.929 SQL [32302]: pgsql_close() -- 14:19:07.806 DEBUG [32302]: Database connection successful -- 14:19:07.806 INFO [32302]: _SERVER found -- 14:19:07.806 INFO [32302]: REMOTE_ADDR = 192.168.1.13 -- 14:19:07.806 INFO [32302]: SERVER_NAME = oameye.works.coregrade.com -- 14:19:07.806 INFO [32302]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=fah47ortaemadtpa522r3ktgcifth9m1 -- 14:19:07.806 INFO [32302]: QUERY_STRING = /auth -- 14:19:07.806 INFO [32302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:19:07.930 INFO [32302]: COREGRADE is stopping... -- 14:19:07.930 DEBUG [32302]: Closing database connection -- 14:19:07.930 SQL [32302]: pgsql_close() -- 14:19:07.949 INFO [32302]: COREGRADE is starting... -- 14:19:07.950 INFO [32302]: Version from config: 1.0 -- 14:19:07.950 DEBUG [32302]: Connecting to database... -- 14:19:07.950 DEBUG [32302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:19:07.950 SQL [32302]: pgsql_db_connect() -- 14:19:07.954 DEBUG [32302]: Database connection successful -- 14:19:07.954 INFO [32302]: _SERVER found -- 14:19:07.954 INFO [32302]: REMOTE_ADDR = 192.168.1.13 -- 14:19:07.954 INFO [32302]: SERVER_NAME = oameye.works.coregrade.com -- 14:19:07.954 INFO [32302]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=fah47ortaemadtpa522r3ktgcifth9m1 -- 14:19:07.954 INFO [32302]: QUERY_STRING = /member/index -- 14:19:07.954 INFO [32302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:19:07.994 INFO [32302]: COREGRADE is stopping... -- 14:19:07.994 DEBUG [32302]: Closing database connection -- 14:19:07.994 SQL [32302]: pgsql_close() -- 14:19:08.300 INFO [32302]: COREGRADE is starting... -- 14:19:08.300 INFO [32302]: Version from config: 1.0 -- 14:19:08.300 DEBUG [32302]: Connecting to database... -- 14:19:08.300 DEBUG [32302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:19:08.300 SQL [32302]: pgsql_db_connect() -- 14:19:08.304 DEBUG [32302]: Database connection successful -- 14:19:08.304 INFO [32302]: _SERVER found -- 14:19:08.304 INFO [32302]: REMOTE_ADDR = 192.168.1.13 -- 14:19:08.304 INFO [32302]: SERVER_NAME = oameye.works.coregrade.com -- 14:19:08.304 INFO [32302]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=fah47ortaemadtpa522r3ktgcifth9m1 -- 14:19:08.304 INFO [32302]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:19:08.304 INFO [32302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:19:08.315 INFO [32302]: COREGRADE is stopping... -- 14:19:08.315 DEBUG [32302]: Closing database connection -- 14:19:08.315 SQL [32302]: pgsql_close() -- 14:19:08.528 INFO [32302]: COREGRADE is starting... -- 14:19:08.529 INFO [32302]: Version from config: 1.0 -- 14:19:08.529 DEBUG [32302]: Connecting to database... -- 14:19:08.529 DEBUG [32302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:19:08.529 SQL [32302]: pgsql_db_connect() -- 14:19:08.533 DEBUG [32302]: Database connection successful -- 14:19:08.533 INFO [32302]: _SERVER found -- 14:19:08.533 INFO [32302]: REMOTE_ADDR = 192.168.1.13 -- 14:19:08.533 INFO [32302]: SERVER_NAME = oameye.works.coregrade.com -- 14:19:08.533 INFO [32302]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=fah47ortaemadtpa522r3ktgcifth9m1 -- 14:19:08.533 INFO [32302]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:19:08.533 INFO [32302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:19:08.544 INFO [32302]: COREGRADE is stopping... -- 14:19:08.544 DEBUG [32302]: Closing database connection -- 14:19:08.544 SQL [32302]: pgsql_close() -- 14:19:10.371 INFO [32302]: COREGRADE is starting... -- 14:19:10.372 INFO [32302]: Version from config: 1.0 -- 14:19:10.372 DEBUG [32302]: Connecting to database... -- 14:19:10.372 DEBUG [32302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:19:10.372 SQL [32302]: pgsql_db_connect() -- 14:19:10.376 DEBUG [32302]: Database connection successful -- 14:19:10.376 INFO [32302]: _SERVER found -- 14:19:10.376 INFO [32302]: REMOTE_ADDR = 192.168.1.13 -- 14:19:10.376 INFO [32302]: SERVER_NAME = oameye.works.coregrade.com -- 14:19:10.376 INFO [32302]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=fah47ortaemadtpa522r3ktgcifth9m1 -- 14:19:10.376 INFO [32302]: QUERY_STRING = /member/page -- 14:19:10.376 INFO [32302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:19:10.418 INFO [32302]: COREGRADE is stopping... -- 14:19:10.418 DEBUG [32302]: Closing database connection -- 14:19:10.418 SQL [32302]: pgsql_close() -- 14:19:10.804 INFO [32302]: COREGRADE is starting... -- 14:19:10.805 INFO [32302]: Version from config: 1.0 -- 14:19:10.805 DEBUG [32302]: Connecting to database... -- 14:19:10.805 DEBUG [32302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:19:10.805 SQL [32302]: pgsql_db_connect() -- 14:19:10.809 DEBUG [32302]: Database connection successful -- 14:19:10.809 INFO [32302]: _SERVER found -- 14:19:10.809 INFO [32302]: REMOTE_ADDR = 192.168.1.13 -- 14:19:10.809 INFO [32302]: SERVER_NAME = oameye.works.coregrade.com -- 14:19:10.809 INFO [32302]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=fah47ortaemadtpa522r3ktgcifth9m1 -- 14:19:10.809 INFO [32302]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:19:10.809 INFO [32302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:19:10.820 INFO [32302]: COREGRADE is stopping... -- 14:19:10.820 DEBUG [32302]: Closing database connection -- 14:19:10.820 SQL [32302]: pgsql_close() -- 14:19:20.363 INFO [32213]: COREGRADE is starting... -- 14:19:20.363 INFO [32213]: Version from config: 1.0 -- 14:19:20.363 DEBUG [32213]: Connecting to database... -- 14:19:20.363 DEBUG [32213]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:19:20.363 SQL [32213]: pgsql_db_connect() -- 14:19:20.367 DEBUG [32213]: Database connection successful -- 14:19:20.367 INFO [32213]: _SERVER found -- 14:19:20.367 INFO [32213]: REMOTE_ADDR = 192.168.1.13 -- 14:19:20.367 INFO [32213]: SERVER_NAME = oameye.works.coregrade.com -- 14:19:20.367 INFO [32213]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=fah47ortaemadtpa522r3ktgcifth9m1 -- 14:19:20.367 INFO [32213]: QUERY_STRING = /member/viewCardAddAction -- 14:19:20.367 INFO [32213]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:19:20.403 INFO [32213]: COREGRADE is stopping... -- 14:19:20.403 DEBUG [32213]: Closing database connection -- 14:19:20.403 SQL [32213]: pgsql_close() -- 14:20:25.276 INFO [32264]: COREGRADE is starting... -- 14:20:25.277 INFO [32264]: Version from config: 1.0 -- 14:20:25.277 DEBUG [32264]: Connecting to database... -- 14:20:25.277 DEBUG [32264]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:20:25.277 SQL [32264]: pgsql_db_connect() -- 14:20:25.320 INFO [32264]: COREGRADE is starting... -- 14:20:25.320 INFO [32264]: Version from config: 1.0 -- 14:20:25.320 DEBUG [32264]: Connecting to database... -- 14:20:25.320 DEBUG [32264]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:20:25.320 SQL [32264]: pgsql_db_connect() -- 14:20:25.326 DEBUG [32264]: Database connection successful -- 14:20:25.326 INFO [32264]: _SERVER found -- 14:20:25.326 INFO [32264]: REMOTE_ADDR = 192.168.1.13 -- 14:20:25.326 INFO [32264]: SERVER_NAME = oameye.works.coregrade.com -- 14:20:25.326 INFO [32264]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=fah47ortaemadtpa522r3ktgcifth9m1 -- 14:20:25.326 INFO [32264]: QUERY_STRING = -- 14:20:25.326 INFO [32264]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:20:25.326 INFO [32264]: SystemStatus()09-09-********~************ -- 14:20:25.326 INFO [32264]: long coregrade_api_main(CVars in, CVars &out) -- 14:20:25.326 INFO [32264]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 14:20:25.326 INFO [32264]: account calls -- 14:20:25.326 INFO [32264]: account_calls() -- 14:20:25.326 INFO [32264]: LoginCoreGradeAccount() -- 14:20:25.326 FLOG_MAX [32264]: REQ_STRING(username) -- 14:20:25.326 FLOG_MAX [32264]: REQ_STRING(password) -- 14:20:25.326 FLOG_MAX [32264]: REQ_STRING(sessionid) -- 14:20:25.326 FLOG_MAX [32264]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:20:25.326 SQL [32264]: pgsql_query() -- 14:20:25.326 SQL [32264]: About to run query: -- 14:20:25.326 SQL [32264]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 14:20:25.329 SQL [32264]: Found rows: 1 -- 14:20:25.329 FLOG_MAX [32264]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 14:20:25.329 INFO [32264]: long SessionCheck(long uid, const char *sessionid, int create ) -- 14:20:25.329 SQL [32264]: pgsql_exec() -- 14:20:25.329 SQL [32264]: About to run query: -- 14:20:25.329 SQL [32264]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 14:20:25.330 SQL [32264]: PQcmdTuples: 0 -- 14:20:25.330 SQL [32264]: Affected rows: 0 -- 14:20:25.330 SQL [32264]: pgsql_exec() -- 14:20:25.330 SQL [32264]: About to run query: -- 14:20:25.330 SQL [32264]: DELETE FROM members_session WHERE member_id=5 -- 14:20:25.331 SQL [32264]: PQcmdTuples: 1 -- 14:20:25.331 SQL [32264]: Affected rows: 1 -- 14:20:25.331 SQL [32264]: pgsql_query() -- 14:20:25.331 SQL [32264]: About to run query: -- 14:20:25.331 SQL [32264]: SELECT * FROM members_session WHERE member_id=5 AND session<>'A88A169D41B9B10B2248AD0F7F7BE70B' -- 14:20:25.332 SQL [32264]: Found rows: 0 -- 14:20:25.332 SQL [32264]: Found rows: 0 -- 14:20:25.332 FLOG_MAX [32264]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:20:25.332 SQL [32264]: pgsql_query() -- 14:20:25.332 SQL [32264]: About to run query: -- 14:20:25.332 SQL [32264]: SELECT * FROM members_session WHERE member_id=5 AND session='A88A169D41B9B10B2248AD0F7F7BE70B' -- 14:20:25.332 SQL [32264]: Found rows: 0 -- 14:20:25.332 SQL [32264]: Found rows: 0 -- 14:20:25.332 FLOG_MAX [32264]: insert_db_record() -- 14:20:25.332 SQL [32264]: pgsql_exec() -- 14:20:25.332 SQL [32264]: About to run query: -- 14:20:25.332 SQL [32264]: INSERT INTO members_session (member_id,session) VALUES ('5','A88A169D41B9B10B2248AD0F7F7BE70B') -- 14:20:25.334 SQL [32264]: PQcmdTuples: 1 -- 14:20:25.334 SQL [32264]: Affected rows: 1 -- 14:20:25.334 FLOG_MAX [32264]: SELECT currval('members_session_id_seq') -- 14:20:25.334 SQL [32264]: pgsql_query() -- 14:20:25.334 SQL [32264]: About to run query: -- 14:20:25.334 SQL [32264]: SELECT currval('members_session_id_seq') -- 14:20:25.334 SQL [32264]: Found rows: 1 -- 14:20:25.334 INFO [32264]: CreateDefaultPage() -- 14:20:25.334 FLOG_MAX [32264]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:20:25.334 SQL [32264]: pgsql_query() -- 14:20:25.334 SQL [32264]: About to run query: -- 14:20:25.334 SQL [32264]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 14:20:25.334 SQL [32264]: Found rows: 1 -- 14:20:25.334 FLOG_MAX [32264]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 14:20:25.334 SQL [32264]: pgsql_query() -- 14:20:25.334 SQL [32264]: About to run query: -- 14:20:25.334 SQL [32264]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 14:20:25.335 SQL [32264]: Found rows: 1 -- 14:20:25.335 INFO [32264]: /CreateDefaultPage() -- 14:20:25.335 INFO [32264]: /LoginCoreGradeAccount() -- 14:20:25.335 INFO [32264]: RET: added=2020-02-05 06:47:23.982154 -- 14:20:25.335 INFO [32264]: RET: email=ameye+11@chiefsoft.com -- 14:20:25.335 INFO [32264]: RET: firstname=Olu -- 14:20:25.335 INFO [32264]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 14:20:25.335 INFO [32264]: RET: id=5 -- 14:20:25.335 INFO [32264]: RET: last_login= -- 14:20:25.335 INFO [32264]: RET: lastname=Amey -- 14:20:25.335 INFO [32264]: RET: loc=192.168.1.13 -- 14:20:25.335 INFO [32264]: RET: member_id=5 -- 14:20:25.335 INFO [32264]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 14:20:25.335 INFO [32264]: RET: phone= -- 14:20:25.335 INFO [32264]: RET: pid= -- 14:20:25.335 INFO [32264]: RET: result=YES I GET TO BACK END -- 14:20:25.335 INFO [32264]: RET: sessionid=A88A169D41B9B10B2248AD0F7F7BE70B -- 14:20:25.335 INFO [32264]: RET: status=1 -- 14:20:25.335 INFO [32264]: RET: stauts=OK -- 14:20:25.335 INFO [32264]: RET: username=ameye+11@chiefsoft.com -- 14:20:25.335 INFO [32264]: RET: verified= -- 14:20:25.336 INFO [32264]: COREGRADE is stopping... -- 14:20:25.336 DEBUG [32264]: Closing database connection -- 14:20:25.336 SQL [32264]: pgsql_close() -- 14:20:25.281 DEBUG [32264]: Database connection successful -- 14:20:25.281 INFO [32264]: _SERVER found -- 14:20:25.281 INFO [32264]: REMOTE_ADDR = 192.168.1.13 -- 14:20:25.281 INFO [32264]: SERVER_NAME = oameye.works.coregrade.com -- 14:20:25.281 INFO [32264]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=fah47ortaemadtpa522r3ktgcifth9m1 -- 14:20:25.281 INFO [32264]: QUERY_STRING = /auth -- 14:20:25.281 INFO [32264]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:20:25.337 INFO [32264]: COREGRADE is stopping... -- 14:20:25.337 DEBUG [32264]: Closing database connection -- 14:20:25.337 SQL [32264]: pgsql_close() -- 14:20:25.355 INFO [32264]: COREGRADE is starting... -- 14:20:25.356 INFO [32264]: Version from config: 1.0 -- 14:20:25.356 DEBUG [32264]: Connecting to database... -- 14:20:25.356 DEBUG [32264]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:20:25.356 SQL [32264]: pgsql_db_connect() -- 14:20:25.360 DEBUG [32264]: Database connection successful -- 14:20:25.360 INFO [32264]: _SERVER found -- 14:20:25.360 INFO [32264]: REMOTE_ADDR = 192.168.1.13 -- 14:20:25.360 INFO [32264]: SERVER_NAME = oameye.works.coregrade.com -- 14:20:25.360 INFO [32264]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=fah47ortaemadtpa522r3ktgcifth9m1 -- 14:20:25.360 INFO [32264]: QUERY_STRING = /member/index -- 14:20:25.360 INFO [32264]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:20:25.400 INFO [32264]: COREGRADE is stopping... -- 14:20:25.401 DEBUG [32264]: Closing database connection -- 14:20:25.401 SQL [32264]: pgsql_close() -- 14:20:25.665 INFO [32264]: COREGRADE is starting... -- 14:20:25.665 INFO [32264]: Version from config: 1.0 -- 14:20:25.665 DEBUG [32264]: Connecting to database... -- 14:20:25.665 DEBUG [32264]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:20:25.665 SQL [32264]: pgsql_db_connect() -- 14:20:25.669 DEBUG [32264]: Database connection successful -- 14:20:25.669 INFO [32264]: _SERVER found -- 14:20:25.669 INFO [32264]: REMOTE_ADDR = 192.168.1.13 -- 14:20:25.669 INFO [32264]: SERVER_NAME = oameye.works.coregrade.com -- 14:20:25.669 INFO [32264]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=fah47ortaemadtpa522r3ktgcifth9m1 -- 14:20:25.669 INFO [32264]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:20:25.669 INFO [32264]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:20:25.680 INFO [32264]: COREGRADE is stopping... -- 14:20:25.680 DEBUG [32264]: Closing database connection -- 14:20:25.680 SQL [32264]: pgsql_close() -- 14:20:25.711 INFO [32264]: COREGRADE is starting... -- 14:20:25.711 INFO [32264]: Version from config: 1.0 -- 14:20:25.711 DEBUG [32264]: Connecting to database... -- 14:20:25.711 DEBUG [32264]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:20:25.711 SQL [32264]: pgsql_db_connect() -- 14:20:25.715 DEBUG [32264]: Database connection successful -- 14:20:25.715 INFO [32264]: _SERVER found -- 14:20:25.715 INFO [32264]: REMOTE_ADDR = 192.168.1.13 -- 14:20:25.715 INFO [32264]: SERVER_NAME = oameye.works.coregrade.com -- 14:20:25.715 INFO [32264]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=fah47ortaemadtpa522r3ktgcifth9m1 -- 14:20:25.715 INFO [32264]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:20:25.715 INFO [32264]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:20:25.726 INFO [32264]: COREGRADE is stopping... -- 14:20:25.726 DEBUG [32264]: Closing database connection -- 14:20:25.726 SQL [32264]: pgsql_close() -- 14:20:30.287 INFO [32264]: COREGRADE is starting... -- 14:20:30.288 INFO [32264]: Version from config: 1.0 -- 14:20:30.288 DEBUG [32264]: Connecting to database... -- 14:20:30.288 DEBUG [32264]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:20:30.288 SQL [32264]: pgsql_db_connect() -- 14:20:30.292 DEBUG [32264]: Database connection successful -- 14:20:30.292 INFO [32264]: _SERVER found -- 14:20:30.292 INFO [32264]: REMOTE_ADDR = 192.168.1.13 -- 14:20:30.292 INFO [32264]: SERVER_NAME = oameye.works.coregrade.com -- 14:20:30.292 INFO [32264]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=fah47ortaemadtpa522r3ktgcifth9m1 -- 14:20:30.292 INFO [32264]: QUERY_STRING = /member/page -- 14:20:30.292 INFO [32264]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:20:30.334 INFO [32264]: COREGRADE is stopping... -- 14:20:30.334 DEBUG [32264]: Closing database connection -- 14:20:30.334 SQL [32264]: pgsql_close() -- 14:20:30.679 INFO [32258]: COREGRADE is starting... -- 14:20:30.679 INFO [32258]: Version from config: 1.0 -- 14:20:30.679 DEBUG [32258]: Connecting to database... -- 14:20:30.679 DEBUG [32258]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:20:30.679 SQL [32258]: pgsql_db_connect() -- 14:20:30.684 DEBUG [32258]: Database connection successful -- 14:20:30.684 INFO [32258]: _SERVER found -- 14:20:30.684 INFO [32258]: REMOTE_ADDR = 192.168.1.13 -- 14:20:30.684 INFO [32258]: SERVER_NAME = oameye.works.coregrade.com -- 14:20:30.684 INFO [32258]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=fah47ortaemadtpa522r3ktgcifth9m1 -- 14:20:30.684 INFO [32258]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:20:30.684 INFO [32258]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:20:30.697 INFO [32258]: COREGRADE is stopping... -- 14:20:30.697 DEBUG [32258]: Closing database connection -- 14:20:30.697 SQL [32258]: pgsql_close() -- 14:20:30.781 INFO [32212]: COREGRADE is starting... -- 14:20:30.781 INFO [32212]: Version from config: 1.0 -- 14:20:30.781 DEBUG [32212]: Connecting to database... -- 14:20:30.781 DEBUG [32212]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:20:30.781 SQL [32212]: pgsql_db_connect() -- 14:20:30.785 DEBUG [32212]: Database connection successful -- 14:20:30.785 INFO [32212]: _SERVER found -- 14:20:30.785 INFO [32212]: REMOTE_ADDR = 192.168.1.13 -- 14:20:30.785 INFO [32212]: SERVER_NAME = oameye.works.coregrade.com -- 14:20:30.785 INFO [32212]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=fah47ortaemadtpa522r3ktgcifth9m1 -- 14:20:30.785 INFO [32212]: QUERY_STRING = /app-assets/data/locales/en.json -- 14:20:30.785 INFO [32212]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:20:30.797 INFO [32212]: COREGRADE is stopping... -- 14:20:30.797 DEBUG [32212]: Closing database connection -- 14:20:30.797 SQL [32212]: pgsql_close() -- 16:29:10.145 INFO [32302]: COREGRADE is starting... -- 16:29:10.145 INFO [32302]: Version from config: 1.0 -- 16:29:10.145 DEBUG [32302]: Connecting to database... -- 16:29:10.145 DEBUG [32302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:29:10.145 SQL [32302]: pgsql_db_connect() -- 16:29:10.150 DEBUG [32302]: Database connection successful -- 16:29:10.150 INFO [32302]: _SERVER found -- 16:29:10.150 INFO [32302]: REMOTE_ADDR = 192.168.1.13 -- 16:29:10.150 INFO [32302]: SERVER_NAME = oameye.works.coregrade.com -- 16:29:10.150 INFO [32302]: QUERY_STRING = -- 16:29:10.150 INFO [32302]: HTTP_X_FORWARDED_FOR = 209.17.96.130 -- 16:29:10.195 INFO [32302]: COREGRADE is stopping... -- 16:29:10.195 DEBUG [32302]: Closing database connection -- 16:29:10.195 SQL [32302]: pgsql_close() -- 16:34:22.236 INFO [32213]: COREGRADE is starting... -- 16:34:22.236 INFO [32213]: Version from config: 1.0 -- 16:34:22.236 DEBUG [32213]: Connecting to database... -- 16:34:22.236 DEBUG [32213]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:34:22.236 SQL [32213]: pgsql_db_connect() -- 16:34:22.241 DEBUG [32213]: Database connection successful -- 16:34:22.241 INFO [32213]: _SERVER found -- 16:34:22.241 INFO [32213]: REMOTE_ADDR = 192.168.1.13 -- 16:34:22.241 INFO [32213]: SERVER_NAME = oameye.works.coregrade.com -- 16:34:22.241 INFO [32213]: QUERY_STRING = /solr/admin/info/system -- 16:34:22.241 INFO [32213]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 16:34:22.256 INFO [32213]: COREGRADE is stopping... -- 16:34:22.256 DEBUG [32213]: Closing database connection -- 16:34:22.256 SQL [32213]: pgsql_close() -- 16:35:45.977 INFO [32264]: COREGRADE is starting... -- 16:35:45.978 INFO [32264]: Version from config: 1.0 -- 16:35:45.978 DEBUG [32264]: Connecting to database... -- 16:35:45.978 DEBUG [32264]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:35:45.978 SQL [32264]: pgsql_db_connect() -- 16:35:45.982 DEBUG [32264]: Database connection successful -- 16:35:45.982 INFO [32264]: _SERVER found -- 16:35:45.982 INFO [32264]: REMOTE_ADDR = 192.168.1.13 -- 16:35:45.982 INFO [32264]: SERVER_NAME = oameye.works.coregrade.com -- 16:35:45.982 INFO [32264]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 16:35:45.982 INFO [32264]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 16:35:46.021 INFO [32264]: COREGRADE is stopping... -- 16:35:46.021 DEBUG [32264]: Closing database connection -- 16:35:46.021 SQL [32264]: pgsql_close() -- 16:35:48.533 INFO [32265]: COREGRADE is starting... -- 16:35:48.533 INFO [32265]: Version from config: 1.0 -- 16:35:48.533 DEBUG [32265]: Connecting to database... -- 16:35:48.533 DEBUG [32265]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:35:48.533 SQL [32265]: pgsql_db_connect() -- 16:35:48.538 DEBUG [32265]: Database connection successful -- 16:35:48.538 INFO [32265]: _SERVER found -- 16:35:48.538 INFO [32265]: REMOTE_ADDR = 192.168.1.13 -- 16:35:48.538 INFO [32265]: SERVER_NAME = oameye.works.coregrade.com -- 16:35:48.538 INFO [32265]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 16:35:48.538 INFO [32265]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 16:35:48.585 INFO [32265]: COREGRADE is stopping... -- 16:35:48.585 DEBUG [32265]: Closing database connection -- 16:35:48.585 SQL [32265]: pgsql_close() -- 16:36:50.485 INFO [32209]: COREGRADE is starting... -- 16:36:50.485 INFO [32209]: Version from config: 1.0 -- 16:36:50.485 DEBUG [32209]: Connecting to database... -- 16:36:50.485 DEBUG [32209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:36:50.485 SQL [32209]: pgsql_db_connect() -- 16:36:50.489 DEBUG [32209]: Database connection successful -- 16:36:50.489 INFO [32209]: _SERVER found -- 16:36:50.489 INFO [32209]: REMOTE_ADDR = 192.168.1.13 -- 16:36:50.489 INFO [32209]: SERVER_NAME = oameye.works.coregrade.com -- 16:36:50.489 INFO [32209]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 16:36:50.489 INFO [32209]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 16:36:50.531 INFO [32209]: COREGRADE is stopping... -- 16:36:50.531 DEBUG [32209]: Closing database connection -- 16:36:50.531 SQL [32209]: pgsql_close() -- 17:36:44.732 INFO [32258]: COREGRADE is starting... -- 17:36:44.732 INFO [32258]: Version from config: 1.0 -- 17:36:44.732 DEBUG [32258]: Connecting to database... -- 17:36:44.732 DEBUG [32258]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:44.732 SQL [32258]: pgsql_db_connect() -- 17:36:44.737 DEBUG [32258]: Database connection successful -- 17:36:44.737 INFO [32258]: _SERVER found -- 17:36:44.737 INFO [32258]: REMOTE_ADDR = 192.168.1.13 -- 17:36:44.737 INFO [32258]: SERVER_NAME = oameye.works.coregrade.com -- 17:36:44.737 INFO [32258]: QUERY_STRING = -- 17:36:44.737 INFO [32258]: HTTP_X_FORWARDED_FOR = 128.14.134.134 -- 17:36:44.786 INFO [32258]: COREGRADE is stopping... -- 17:36:44.786 DEBUG [32258]: Closing database connection -- 17:36:44.786 SQL [32258]: pgsql_close() -- 17:53:35.213 INFO [32212]: COREGRADE is starting... -- 17:53:35.214 INFO [32212]: Version from config: 1.0 -- 17:53:35.214 DEBUG [32212]: Connecting to database... -- 17:53:35.214 DEBUG [32212]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:53:35.214 SQL [32212]: pgsql_db_connect() -- 17:53:35.219 DEBUG [32212]: Database connection successful -- 17:53:35.219 INFO [32212]: _SERVER found -- 17:53:35.219 INFO [32212]: REMOTE_ADDR = 192.168.1.13 -- 17:53:35.219 INFO [32212]: SERVER_NAME = oameye.works.coregrade.com -- 17:53:35.219 INFO [32212]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 17:53:35.219 INFO [32212]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 17:53:35.235 INFO [32212]: COREGRADE is stopping... -- 17:53:35.235 DEBUG [32212]: Closing database connection -- 17:53:35.235 SQL [32212]: pgsql_close() -- 23:06:45.062 INFO [32301]: COREGRADE is starting... -- 23:06:45.063 INFO [32301]: Version from config: 1.0 -- 23:06:45.063 DEBUG [32301]: Connecting to database... -- 23:06:45.063 DEBUG [32301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:06:45.063 SQL [32301]: pgsql_db_connect() -- 23:06:45.068 DEBUG [32301]: Database connection successful -- 23:06:45.068 INFO [32301]: _SERVER found -- 23:06:45.068 INFO [32301]: REMOTE_ADDR = 192.168.1.13 -- 23:06:45.068 INFO [32301]: SERVER_NAME = oameye.works.coregrade.com -- 23:06:45.068 INFO [32301]: QUERY_STRING = /TP/public/index.php -- 23:06:45.068 INFO [32301]: HTTP_X_FORWARDED_FOR = 134.175.245.162 -- 23:06:45.083 INFO [32301]: COREGRADE is stopping... -- 23:06:45.083 DEBUG [32301]: Closing database connection -- 23:06:45.083 SQL [32301]: pgsql_close() -- 23:06:47.461 INFO [32301]: COREGRADE is starting... -- 23:06:47.461 INFO [32301]: Version from config: 1.0 -- 23:06:47.461 DEBUG [32301]: Connecting to database... -- 23:06:47.461 DEBUG [32301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:06:47.461 SQL [32301]: pgsql_db_connect() -- 23:06:47.465 DEBUG [32301]: Database connection successful -- 23:06:47.465 INFO [32301]: _SERVER found -- 23:06:47.465 INFO [32301]: REMOTE_ADDR = 192.168.1.13 -- 23:06:47.465 INFO [32301]: SERVER_NAME = oameye.works.coregrade.com -- 23:06:47.465 INFO [32301]: QUERY_STRING = /TP/index.php -- 23:06:47.465 INFO [32301]: HTTP_X_FORWARDED_FOR = 134.175.245.162 -- 23:06:47.477 INFO [32301]: COREGRADE is stopping... -- 23:06:47.477 DEBUG [32301]: Closing database connection -- 23:06:47.477 SQL [32301]: pgsql_close() -- 23:06:48.888 INFO [32301]: COREGRADE is starting... -- 23:06:48.888 INFO [32301]: Version from config: 1.0 -- 23:06:48.888 DEBUG [32301]: Connecting to database... -- 23:06:48.888 DEBUG [32301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:06:48.888 SQL [32301]: pgsql_db_connect() -- 23:06:48.892 DEBUG [32301]: Database connection successful -- 23:06:48.892 INFO [32301]: _SERVER found -- 23:06:48.892 INFO [32301]: REMOTE_ADDR = 192.168.1.13 -- 23:06:48.892 INFO [32301]: SERVER_NAME = oameye.works.coregrade.com -- 23:06:48.892 INFO [32301]: QUERY_STRING = /thinkphp/html/public/index.php -- 23:06:48.892 INFO [32301]: HTTP_X_FORWARDED_FOR = 134.175.245.162 -- 23:06:48.904 INFO [32301]: COREGRADE is stopping... -- 23:06:48.904 DEBUG [32301]: Closing database connection -- 23:06:48.904 SQL [32301]: pgsql_close() -- 23:06:52.141 INFO [32301]: COREGRADE is starting... -- 23:06:52.141 INFO [32301]: Version from config: 1.0 -- 23:06:52.141 DEBUG [32301]: Connecting to database... -- 23:06:52.141 DEBUG [32301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:06:52.141 SQL [32301]: pgsql_db_connect() -- 23:06:52.146 DEBUG [32301]: Database connection successful -- 23:06:52.146 INFO [32301]: _SERVER found -- 23:06:52.146 INFO [32301]: REMOTE_ADDR = 192.168.1.13 -- 23:06:52.146 INFO [32301]: SERVER_NAME = oameye.works.coregrade.com -- 23:06:52.146 INFO [32301]: QUERY_STRING = /html/public/index.php -- 23:06:52.146 INFO [32301]: HTTP_X_FORWARDED_FOR = 134.175.245.162 -- 23:06:52.159 INFO [32301]: COREGRADE is stopping... -- 23:06:52.159 DEBUG [32301]: Closing database connection -- 23:06:52.159 SQL [32301]: pgsql_close() -- 23:06:53.547 INFO [32301]: COREGRADE is starting... -- 23:06:53.547 INFO [32301]: Version from config: 1.0 -- 23:06:53.547 DEBUG [32301]: Connecting to database... -- 23:06:53.547 DEBUG [32301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:06:53.547 SQL [32301]: pgsql_db_connect() -- 23:06:53.551 DEBUG [32301]: Database connection successful -- 23:06:53.551 INFO [32301]: _SERVER found -- 23:06:53.551 INFO [32301]: REMOTE_ADDR = 192.168.1.13 -- 23:06:53.551 INFO [32301]: SERVER_NAME = oameye.works.coregrade.com -- 23:06:53.551 INFO [32301]: QUERY_STRING = /public/index.php -- 23:06:53.551 INFO [32301]: HTTP_X_FORWARDED_FOR = 134.175.245.162 -- 23:06:53.564 INFO [32301]: COREGRADE is stopping... -- 23:06:53.564 DEBUG [32301]: Closing database connection -- 23:06:53.564 SQL [32301]: pgsql_close() -- 23:06:54.938 INFO [32301]: COREGRADE is starting... -- 23:06:54.938 INFO [32301]: Version from config: 1.0 -- 23:06:54.938 DEBUG [32301]: Connecting to database... -- 23:06:54.938 DEBUG [32301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:06:54.938 SQL [32301]: pgsql_db_connect() -- 23:06:54.942 DEBUG [32301]: Database connection successful -- 23:06:54.942 INFO [32301]: _SERVER found -- 23:06:54.942 INFO [32301]: REMOTE_ADDR = 192.168.1.13 -- 23:06:54.942 INFO [32301]: SERVER_NAME = oameye.works.coregrade.com -- 23:06:54.942 INFO [32301]: QUERY_STRING = /TP/html/public/index.php -- 23:06:54.942 INFO [32301]: HTTP_X_FORWARDED_FOR = 134.175.245.162 -- 23:06:54.955 INFO [32301]: COREGRADE is stopping... -- 23:06:54.955 DEBUG [32301]: Closing database connection -- 23:06:54.955 SQL [32301]: pgsql_close() -- 23:06:56.311 INFO [32211]: COREGRADE is starting... -- 23:06:56.311 INFO [32211]: Version from config: 1.0 -- 23:06:56.311 DEBUG [32211]: Connecting to database... -- 23:06:56.311 DEBUG [32211]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:06:56.311 SQL [32211]: pgsql_db_connect() -- 23:06:56.316 DEBUG [32211]: Database connection successful -- 23:06:56.316 INFO [32211]: _SERVER found -- 23:06:56.316 INFO [32211]: REMOTE_ADDR = 192.168.1.13 -- 23:06:56.316 INFO [32211]: SERVER_NAME = oameye.works.coregrade.com -- 23:06:56.316 INFO [32211]: QUERY_STRING = /elrekt.php -- 23:06:56.316 INFO [32211]: HTTP_X_FORWARDED_FOR = 134.175.245.162 -- 23:06:56.330 INFO [32211]: COREGRADE is stopping... -- 23:06:56.330 DEBUG [32211]: Closing database connection -- 23:06:56.330 SQL [32211]: pgsql_close() -- 23:06:58.658 INFO [32301]: COREGRADE is starting... -- 23:06:58.658 INFO [32301]: Version from config: 1.0 -- 23:06:58.658 DEBUG [32301]: Connecting to database... -- 23:06:58.658 DEBUG [32301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:06:58.658 SQL [32301]: pgsql_db_connect() -- 23:06:58.662 DEBUG [32301]: Database connection successful -- 23:06:58.662 INFO [32301]: _SERVER found -- 23:06:58.662 INFO [32301]: REMOTE_ADDR = 192.168.1.13 -- 23:06:58.662 INFO [32301]: SERVER_NAME = oameye.works.coregrade.com -- 23:06:58.662 INFO [32301]: QUERY_STRING = -- 23:06:58.662 INFO [32301]: HTTP_X_FORWARDED_FOR = 134.175.245.162 -- 23:06:58.708 INFO [32301]: COREGRADE is stopping... -- 23:06:58.708 DEBUG [32301]: Closing database connection -- 23:06:58.708 SQL [32301]: pgsql_close() -- 23:07:00.043 INFO [32211]: COREGRADE is starting... -- 23:07:00.044 INFO [32211]: Version from config: 1.0 -- 23:07:00.044 DEBUG [32211]: Connecting to database... -- 23:07:00.044 DEBUG [32211]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:00.044 SQL [32211]: pgsql_db_connect() -- 23:07:00.048 DEBUG [32211]: Database connection successful -- 23:07:00.048 INFO [32211]: _SERVER found -- 23:07:00.048 INFO [32211]: REMOTE_ADDR = 192.168.1.13 -- 23:07:00.048 INFO [32211]: SERVER_NAME = oameye.works.coregrade.com -- 23:07:00.048 INFO [32211]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 23:07:00.048 INFO [32211]: HTTP_X_FORWARDED_FOR = 134.175.245.162 -- 23:07:00.090 INFO [32211]: COREGRADE is stopping... -- 23:07:00.090 DEBUG [32211]: Closing database connection -- 23:07:00.090 SQL [32211]: pgsql_close() -- 23:07:03.160 INFO [32211]: COREGRADE is starting... -- 23:07:03.161 INFO [32211]: Version from config: 1.0 -- 23:07:03.161 DEBUG [32211]: Connecting to database... -- 23:07:03.161 DEBUG [32211]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:03.161 SQL [32211]: pgsql_db_connect() -- 23:07:03.165 DEBUG [32211]: Database connection successful -- 23:07:03.165 INFO [32211]: _SERVER found -- 23:07:03.165 INFO [32211]: REMOTE_ADDR = 192.168.1.13 -- 23:07:03.165 INFO [32211]: SERVER_NAME = oameye.works.coregrade.com -- 23:07:03.165 INFO [32211]: QUERY_STRING = s=captcha -- 23:07:03.165 INFO [32211]: HTTP_X_FORWARDED_FOR = 134.175.245.162 -- 23:07:03.196 INFO [32211]: COREGRADE is stopping... -- 23:07:03.196 DEBUG [32211]: Closing database connection -- 23:07:03.196 SQL [32211]: pgsql_close() -- 23:07:04.617 INFO [32211]: COREGRADE is starting... -- 23:07:04.617 INFO [32211]: Version from config: 1.0 -- 23:07:04.617 DEBUG [32211]: Connecting to database... -- 23:07:04.617 DEBUG [32211]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:04.617 SQL [32211]: pgsql_db_connect() -- 23:07:04.621 DEBUG [32211]: Database connection successful -- 23:07:04.621 INFO [32211]: _SERVER found -- 23:07:04.621 INFO [32211]: REMOTE_ADDR = 192.168.1.13 -- 23:07:04.621 INFO [32211]: SERVER_NAME = oameye.works.coregrade.com -- 23:07:04.621 INFO [32211]: QUERY_STRING = -- 23:07:04.621 INFO [32211]: HTTP_X_FORWARDED_FOR = 134.175.245.162 -- 23:07:04.657 INFO [32211]: COREGRADE is stopping... -- 23:07:04.657 DEBUG [32211]: Closing database connection -- 23:07:04.657 SQL [32211]: pgsql_close() -- 05:08:41.090 INFO [32299]: COREGRADE is starting... -- 05:08:41.090 INFO [32299]: Version from config: 1.0 -- 05:08:41.090 DEBUG [32299]: Connecting to database... -- 05:08:41.090 DEBUG [32299]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:41.090 SQL [32299]: pgsql_db_connect() -- 05:08:41.095 DEBUG [32299]: Database connection successful -- 05:08:41.095 INFO [32299]: _SERVER found -- 05:08:41.095 INFO [32299]: REMOTE_ADDR = 192.168.1.13 -- 05:08:41.095 INFO [32299]: SERVER_NAME = oameye.works.coregrade.com -- 05:08:41.095 INFO [32299]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 05:08:41.095 INFO [32299]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 05:08:41.111 INFO [32299]: COREGRADE is stopping... -- 05:08:41.111 DEBUG [32299]: Closing database connection -- 05:08:41.111 SQL [32299]: pgsql_close() -- 06:31:35.556 INFO [32302]: COREGRADE is starting... -- 06:31:35.556 INFO [32302]: Version from config: 1.0 -- 06:31:35.556 DEBUG [32302]: Connecting to database... -- 06:31:35.556 DEBUG [32302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:31:35.556 SQL [32302]: pgsql_db_connect() -- 06:31:35.561 DEBUG [32302]: Database connection successful -- 06:31:35.561 INFO [32302]: _SERVER found -- 06:31:35.561 INFO [32302]: REMOTE_ADDR = 192.168.1.13 -- 06:31:35.561 INFO [32302]: SERVER_NAME = oameye.works.coregrade.com -- 06:31:35.561 INFO [32302]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791 -- 06:31:35.561 INFO [32302]: QUERY_STRING = -- 06:31:35.561 INFO [32302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:31:35.599 INFO [32302]: COREGRADE is stopping... -- 06:31:35.600 DEBUG [32302]: Closing database connection -- 06:31:35.600 SQL [32302]: pgsql_close() -- 06:31:36.449 INFO [32264]: COREGRADE is starting... -- 06:31:36.449 INFO [32264]: Version from config: 1.0 -- 06:31:36.449 DEBUG [32264]: Connecting to database... -- 06:31:36.449 DEBUG [32264]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:31:36.449 SQL [32264]: pgsql_db_connect() -- 06:31:36.453 DEBUG [32264]: Database connection successful -- 06:31:36.453 INFO [32264]: _SERVER found -- 06:31:36.453 INFO [32264]: REMOTE_ADDR = 192.168.1.13 -- 06:31:36.453 INFO [32264]: SERVER_NAME = oameye.works.coregrade.com -- 06:31:36.453 INFO [32264]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=opve8j6u9rkqfeb0og9qgtid11hsidjl; _gat_gtag_UA_54829827_2=1 -- 06:31:36.453 INFO [32264]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 06:31:36.453 INFO [32264]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:31:36.466 INFO [32264]: COREGRADE is stopping... -- 06:31:36.466 DEBUG [32264]: Closing database connection -- 06:31:36.466 SQL [32264]: pgsql_close() -- 06:31:36.559 INFO [32264]: COREGRADE is starting... -- 06:31:36.560 INFO [32264]: Version from config: 1.0 -- 06:31:36.560 DEBUG [32264]: Connecting to database... -- 06:31:36.560 DEBUG [32264]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:31:36.560 SQL [32264]: pgsql_db_connect() -- 06:31:36.564 DEBUG [32264]: Database connection successful -- 06:31:36.564 INFO [32264]: _SERVER found -- 06:31:36.564 INFO [32264]: REMOTE_ADDR = 192.168.1.13 -- 06:31:36.564 INFO [32264]: SERVER_NAME = oameye.works.coregrade.com -- 06:31:36.564 INFO [32264]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=opve8j6u9rkqfeb0og9qgtid11hsidjl; _gat_gtag_UA_54829827_2=1 -- 06:31:36.564 INFO [32264]: QUERY_STRING = /assets/img/footer_1.jpg -- 06:31:36.564 INFO [32264]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:31:36.575 INFO [32264]: COREGRADE is stopping... -- 06:31:36.575 DEBUG [32264]: Closing database connection -- 06:31:36.575 SQL [32264]: pgsql_close() -- 06:31:40.597 INFO [32264]: COREGRADE is starting... -- 06:31:40.598 INFO [32264]: Version from config: 1.0 -- 06:31:40.598 DEBUG [32264]: Connecting to database... -- 06:31:40.598 DEBUG [32264]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:31:40.598 SQL [32264]: pgsql_db_connect() -- 06:31:40.602 DEBUG [32264]: Database connection successful -- 06:31:40.602 INFO [32264]: _SERVER found -- 06:31:40.602 INFO [32264]: REMOTE_ADDR = 192.168.1.13 -- 06:31:40.602 INFO [32264]: SERVER_NAME = oameye.works.coregrade.com -- 06:31:40.602 INFO [32264]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=opve8j6u9rkqfeb0og9qgtid11hsidjl; _gat_gtag_UA_54829827_2=1 -- 06:31:40.602 INFO [32264]: QUERY_STRING = /auth -- 06:31:40.602 INFO [32264]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:31:40.635 INFO [32264]: COREGRADE is stopping... -- 06:31:40.635 DEBUG [32264]: Closing database connection -- 06:31:40.635 SQL [32264]: pgsql_close() -- 06:31:40.811 INFO [32264]: COREGRADE is starting... -- 06:31:40.811 INFO [32264]: Version from config: 1.0 -- 06:31:40.811 DEBUG [32264]: Connecting to database... -- 06:31:40.811 DEBUG [32264]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:31:40.811 SQL [32264]: pgsql_db_connect() -- 06:31:40.826 INFO [32265]: COREGRADE is starting... -- 06:31:40.826 INFO [32265]: Version from config: 1.0 -- 06:31:40.826 DEBUG [32265]: Connecting to database... -- 06:31:40.826 DEBUG [32265]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:31:40.826 SQL [32265]: pgsql_db_connect() -- 06:31:40.815 DEBUG [32264]: Database connection successful -- 06:31:40.815 INFO [32264]: _SERVER found -- 06:31:40.815 INFO [32264]: REMOTE_ADDR = 192.168.1.13 -- 06:31:40.815 INFO [32264]: SERVER_NAME = oameye.works.coregrade.com -- 06:31:40.815 INFO [32264]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=opve8j6u9rkqfeb0og9qgtid11hsidjl; _gat_gtag_UA_54829827_2=1 -- 06:31:40.815 INFO [32264]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 06:31:40.815 INFO [32264]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:31:40.827 INFO [32264]: COREGRADE is stopping... -- 06:31:40.827 DEBUG [32264]: Closing database connection -- 06:31:40.827 SQL [32264]: pgsql_close() -- 06:31:40.831 DEBUG [32265]: Database connection successful -- 06:31:40.831 INFO [32265]: _SERVER found -- 06:31:40.831 INFO [32265]: REMOTE_ADDR = 192.168.1.13 -- 06:31:40.831 INFO [32265]: SERVER_NAME = oameye.works.coregrade.com -- 06:31:40.831 INFO [32265]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=opve8j6u9rkqfeb0og9qgtid11hsidjl; _gat_gtag_UA_54829827_2=1 -- 06:31:40.831 INFO [32265]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:31:40.831 INFO [32265]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:31:40.845 INFO [32265]: COREGRADE is stopping... -- 06:31:40.845 DEBUG [32265]: Closing database connection -- 06:31:40.845 SQL [32265]: pgsql_close() -- 06:31:43.047 INFO [32265]: COREGRADE is starting... -- 06:31:43.047 INFO [32265]: Version from config: 1.0 -- 06:31:43.048 DEBUG [32265]: Connecting to database... -- 06:31:43.048 DEBUG [32265]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:31:43.048 SQL [32265]: pgsql_db_connect() -- 06:31:43.052 DEBUG [32265]: Database connection successful -- 06:31:43.052 INFO [32265]: _SERVER found -- 06:31:43.052 INFO [32265]: REMOTE_ADDR = 192.168.1.13 -- 06:31:43.052 INFO [32265]: SERVER_NAME = oameye.works.coregrade.com -- 06:31:43.052 INFO [32265]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=opve8j6u9rkqfeb0og9qgtid11hsidjl; _gat_gtag_UA_54829827_2=1 -- 06:31:43.052 INFO [32265]: QUERY_STRING = /auth -- 06:31:43.052 INFO [32265]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:31:43.087 INFO [32265]: COREGRADE is stopping... -- 06:31:43.087 DEBUG [32265]: Closing database connection -- 06:31:43.087 SQL [32265]: pgsql_close() -- 06:31:43.218 INFO [32265]: COREGRADE is starting... -- 06:31:43.218 INFO [32265]: Version from config: 1.0 -- 06:31:43.218 DEBUG [32265]: Connecting to database... -- 06:31:43.218 DEBUG [32265]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:31:43.218 SQL [32265]: pgsql_db_connect() -- 06:31:43.222 DEBUG [32265]: Database connection successful -- 06:31:43.222 INFO [32265]: _SERVER found -- 06:31:43.222 INFO [32265]: REMOTE_ADDR = 192.168.1.13 -- 06:31:43.222 INFO [32265]: SERVER_NAME = oameye.works.coregrade.com -- 06:31:43.222 INFO [32265]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=opve8j6u9rkqfeb0og9qgtid11hsidjl; _gat_gtag_UA_54829827_2=1 -- 06:31:43.222 INFO [32265]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 06:31:43.222 INFO [32265]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:31:43.234 INFO [32265]: COREGRADE is stopping... -- 06:31:43.234 DEBUG [32265]: Closing database connection -- 06:31:43.234 SQL [32265]: pgsql_close() -- 06:31:43.283 INFO [32265]: COREGRADE is starting... -- 06:31:43.283 INFO [32265]: Version from config: 1.0 -- 06:31:43.283 DEBUG [32265]: Connecting to database... -- 06:31:43.283 DEBUG [32265]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:31:43.283 SQL [32265]: pgsql_db_connect() -- 06:31:43.287 DEBUG [32265]: Database connection successful -- 06:31:43.287 INFO [32265]: _SERVER found -- 06:31:43.287 INFO [32265]: REMOTE_ADDR = 192.168.1.13 -- 06:31:43.287 INFO [32265]: SERVER_NAME = oameye.works.coregrade.com -- 06:31:43.287 INFO [32265]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=opve8j6u9rkqfeb0og9qgtid11hsidjl; _gat_gtag_UA_54829827_2=1 -- 06:31:43.287 INFO [32265]: QUERY_STRING = /app-assets/data/locales/en.json -- 06:31:43.287 INFO [32265]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:31:43.298 INFO [32265]: COREGRADE is stopping... -- 06:31:43.298 DEBUG [32265]: Closing database connection -- 06:31:43.298 SQL [32265]: pgsql_close() -- 06:34:22.660 INFO [32209]: COREGRADE is starting... -- 06:34:22.660 INFO [32209]: Version from config: 1.0 -- 06:34:22.660 DEBUG [32209]: Connecting to database... -- 06:34:22.660 DEBUG [32209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:34:22.660 SQL [32209]: pgsql_db_connect() -- 06:34:22.665 DEBUG [32209]: Database connection successful -- 06:34:22.665 INFO [32209]: _SERVER found -- 06:34:22.665 INFO [32209]: REMOTE_ADDR = 192.168.1.13 -- 06:34:22.665 INFO [32209]: SERVER_NAME = oameye.works.coregrade.com -- 06:34:22.665 INFO [32209]: QUERY_STRING = -- 06:34:22.665 INFO [32209]: HTTP_X_FORWARDED_FOR = 118.68.218.94 -- 06:34:22.702 INFO [32209]: COREGRADE is stopping... -- 06:34:22.702 DEBUG [32209]: Closing database connection -- 06:34:22.702 SQL [32209]: pgsql_close() -- 07:12:19.094 INFO [32258]: COREGRADE is starting... -- 07:12:19.095 INFO [32258]: Version from config: 1.0 -- 07:12:19.095 DEBUG [32258]: Connecting to database... -- 07:12:19.095 DEBUG [32258]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:12:19.095 SQL [32258]: pgsql_db_connect() -- 07:12:19.101 DEBUG [32258]: Database connection successful -- 07:12:19.101 INFO [32258]: _SERVER found -- 07:12:19.101 INFO [32258]: REMOTE_ADDR = 192.168.1.13 -- 07:12:19.101 INFO [32258]: SERVER_NAME = oameye.works.coregrade.com -- 07:12:19.101 INFO [32258]: QUERY_STRING = /TP/public/index.php -- 07:12:19.101 INFO [32258]: HTTP_X_FORWARDED_FOR = 49.234.18.34 -- 07:12:19.115 INFO [32258]: COREGRADE is stopping... -- 07:12:19.115 DEBUG [32258]: Closing database connection -- 07:12:19.115 SQL [32258]: pgsql_close() -- 07:12:20.577 INFO [32212]: COREGRADE is starting... -- 07:12:20.577 INFO [32212]: Version from config: 1.0 -- 07:12:20.577 DEBUG [32212]: Connecting to database... -- 07:12:20.577 DEBUG [32212]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:12:20.577 SQL [32212]: pgsql_db_connect() -- 07:12:20.581 DEBUG [32212]: Database connection successful -- 07:12:20.581 INFO [32212]: _SERVER found -- 07:12:20.581 INFO [32212]: REMOTE_ADDR = 192.168.1.13 -- 07:12:20.581 INFO [32212]: SERVER_NAME = oameye.works.coregrade.com -- 07:12:20.581 INFO [32212]: QUERY_STRING = /TP/index.php -- 07:12:20.581 INFO [32212]: HTTP_X_FORWARDED_FOR = 49.234.18.34 -- 07:12:20.595 INFO [32212]: COREGRADE is stopping... -- 07:12:20.595 DEBUG [32212]: Closing database connection -- 07:12:20.595 SQL [32212]: pgsql_close() -- 07:12:25.130 INFO [32301]: COREGRADE is starting... -- 07:12:25.131 INFO [32301]: Version from config: 1.0 -- 07:12:25.131 DEBUG [32301]: Connecting to database... -- 07:12:25.131 DEBUG [32301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:12:25.131 SQL [32301]: pgsql_db_connect() -- 07:12:25.136 DEBUG [32301]: Database connection successful -- 07:12:25.136 INFO [32301]: _SERVER found -- 07:12:25.136 INFO [32301]: REMOTE_ADDR = 192.168.1.13 -- 07:12:25.136 INFO [32301]: SERVER_NAME = oameye.works.coregrade.com -- 07:12:25.136 INFO [32301]: QUERY_STRING = /thinkphp/html/public/index.php -- 07:12:25.136 INFO [32301]: HTTP_X_FORWARDED_FOR = 49.234.18.34 -- 07:12:25.149 INFO [32301]: COREGRADE is stopping... -- 07:12:25.149 DEBUG [32301]: Closing database connection -- 07:12:25.149 SQL [32301]: pgsql_close() -- 07:12:27.298 INFO [32211]: COREGRADE is starting... -- 07:12:27.298 INFO [32211]: Version from config: 1.0 -- 07:12:27.298 DEBUG [32211]: Connecting to database... -- 07:12:27.298 DEBUG [32211]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:12:27.298 SQL [32211]: pgsql_db_connect() -- 07:12:27.302 DEBUG [32211]: Database connection successful -- 07:12:27.302 INFO [32211]: _SERVER found -- 07:12:27.302 INFO [32211]: REMOTE_ADDR = 192.168.1.13 -- 07:12:27.302 INFO [32211]: SERVER_NAME = oameye.works.coregrade.com -- 07:12:27.302 INFO [32211]: QUERY_STRING = /html/public/index.php -- 07:12:27.302 INFO [32211]: HTTP_X_FORWARDED_FOR = 49.234.18.34 -- 07:12:27.315 INFO [32211]: COREGRADE is stopping... -- 07:12:27.315 DEBUG [32211]: Closing database connection -- 07:12:27.315 SQL [32211]: pgsql_close() -- 07:12:29.602 INFO [32211]: COREGRADE is starting... -- 07:12:29.602 INFO [32211]: Version from config: 1.0 -- 07:12:29.602 DEBUG [32211]: Connecting to database... -- 07:12:29.602 DEBUG [32211]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:12:29.602 SQL [32211]: pgsql_db_connect() -- 07:12:29.606 DEBUG [32211]: Database connection successful -- 07:12:29.606 INFO [32211]: _SERVER found -- 07:12:29.606 INFO [32211]: REMOTE_ADDR = 192.168.1.13 -- 07:12:29.606 INFO [32211]: SERVER_NAME = oameye.works.coregrade.com -- 07:12:29.606 INFO [32211]: QUERY_STRING = /public/index.php -- 07:12:29.606 INFO [32211]: HTTP_X_FORWARDED_FOR = 49.234.18.34 -- 07:12:29.617 INFO [32211]: COREGRADE is stopping... -- 07:12:29.617 DEBUG [32211]: Closing database connection -- 07:12:29.617 SQL [32211]: pgsql_close() -- 07:12:31.683 INFO [32299]: COREGRADE is starting... -- 07:12:31.683 INFO [32299]: Version from config: 1.0 -- 07:12:31.683 DEBUG [32299]: Connecting to database... -- 07:12:31.683 DEBUG [32299]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:12:31.683 SQL [32299]: pgsql_db_connect() -- 07:12:31.688 DEBUG [32299]: Database connection successful -- 07:12:31.688 INFO [32299]: _SERVER found -- 07:12:31.688 INFO [32299]: REMOTE_ADDR = 192.168.1.13 -- 07:12:31.688 INFO [32299]: SERVER_NAME = oameye.works.coregrade.com -- 07:12:31.688 INFO [32299]: QUERY_STRING = /TP/html/public/index.php -- 07:12:31.688 INFO [32299]: HTTP_X_FORWARDED_FOR = 49.234.18.34 -- 07:12:31.701 INFO [32299]: COREGRADE is stopping... -- 07:12:31.701 DEBUG [32299]: Closing database connection -- 07:12:31.701 SQL [32299]: pgsql_close() -- 07:12:34.115 INFO [32211]: COREGRADE is starting... -- 07:12:34.115 INFO [32211]: Version from config: 1.0 -- 07:12:34.115 DEBUG [32211]: Connecting to database... -- 07:12:34.115 DEBUG [32211]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:12:34.115 SQL [32211]: pgsql_db_connect() -- 07:12:34.120 DEBUG [32211]: Database connection successful -- 07:12:34.120 INFO [32211]: _SERVER found -- 07:12:34.120 INFO [32211]: REMOTE_ADDR = 192.168.1.13 -- 07:12:34.120 INFO [32211]: SERVER_NAME = oameye.works.coregrade.com -- 07:12:34.120 INFO [32211]: QUERY_STRING = /elrekt.php -- 07:12:34.120 INFO [32211]: HTTP_X_FORWARDED_FOR = 49.234.18.34 -- 07:12:34.131 INFO [32211]: COREGRADE is stopping... -- 07:12:34.131 DEBUG [32211]: Closing database connection -- 07:12:34.131 SQL [32211]: pgsql_close() -- 07:12:36.246 INFO [32211]: COREGRADE is starting... -- 07:12:36.246 INFO [32211]: Version from config: 1.0 -- 07:12:36.246 DEBUG [32211]: Connecting to database... -- 07:12:36.246 DEBUG [32211]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:12:36.246 SQL [32211]: pgsql_db_connect() -- 07:12:36.251 DEBUG [32211]: Database connection successful -- 07:12:36.251 INFO [32211]: _SERVER found -- 07:12:36.251 INFO [32211]: REMOTE_ADDR = 192.168.1.13 -- 07:12:36.251 INFO [32211]: SERVER_NAME = oameye.works.coregrade.com -- 07:12:36.251 INFO [32211]: QUERY_STRING = -- 07:12:36.251 INFO [32211]: HTTP_X_FORWARDED_FOR = 49.234.18.34 -- 07:12:36.284 INFO [32211]: COREGRADE is stopping... -- 07:12:36.284 DEBUG [32211]: Closing database connection -- 07:12:36.284 SQL [32211]: pgsql_close() -- 07:12:39.878 INFO [32302]: COREGRADE is starting... -- 07:12:39.878 INFO [32302]: Version from config: 1.0 -- 07:12:39.878 DEBUG [32302]: Connecting to database... -- 07:12:39.878 DEBUG [32302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:12:39.878 SQL [32302]: pgsql_db_connect() -- 07:12:39.882 DEBUG [32302]: Database connection successful -- 07:12:39.882 INFO [32302]: _SERVER found -- 07:12:39.882 INFO [32302]: REMOTE_ADDR = 192.168.1.13 -- 07:12:39.882 INFO [32302]: SERVER_NAME = oameye.works.coregrade.com -- 07:12:39.882 INFO [32302]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 07:12:39.882 INFO [32302]: HTTP_X_FORWARDED_FOR = 49.234.18.34 -- 07:12:39.915 INFO [32302]: COREGRADE is stopping... -- 07:12:39.915 DEBUG [32302]: Closing database connection -- 07:12:39.915 SQL [32302]: pgsql_close() -- 07:12:42.559 INFO [32213]: COREGRADE is starting... -- 07:12:42.559 INFO [32213]: Version from config: 1.0 -- 07:12:42.559 DEBUG [32213]: Connecting to database... -- 07:12:42.559 DEBUG [32213]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:12:42.559 SQL [32213]: pgsql_db_connect() -- 07:12:42.563 DEBUG [32213]: Database connection successful -- 07:12:42.563 INFO [32213]: _SERVER found -- 07:12:42.563 INFO [32213]: REMOTE_ADDR = 192.168.1.13 -- 07:12:42.563 INFO [32213]: SERVER_NAME = oameye.works.coregrade.com -- 07:12:42.563 INFO [32213]: QUERY_STRING = s=captcha -- 07:12:42.563 INFO [32213]: HTTP_X_FORWARDED_FOR = 49.234.18.34 -- 07:12:42.600 INFO [32213]: COREGRADE is stopping... -- 07:12:42.600 DEBUG [32213]: Closing database connection -- 07:12:42.600 SQL [32213]: pgsql_close() -- 07:12:48.319 INFO [32264]: COREGRADE is starting... -- 07:12:48.319 INFO [32264]: Version from config: 1.0 -- 07:12:48.319 DEBUG [32264]: Connecting to database... -- 07:12:48.319 DEBUG [32264]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:12:48.319 SQL [32264]: pgsql_db_connect() -- 07:12:48.323 DEBUG [32264]: Database connection successful -- 07:12:48.323 INFO [32264]: _SERVER found -- 07:12:48.323 INFO [32264]: REMOTE_ADDR = 192.168.1.13 -- 07:12:48.323 INFO [32264]: SERVER_NAME = oameye.works.coregrade.com -- 07:12:48.323 INFO [32264]: QUERY_STRING = -- 07:12:48.323 INFO [32264]: HTTP_X_FORWARDED_FOR = 49.234.18.34 -- 07:12:48.355 INFO [32264]: COREGRADE is stopping... -- 07:12:48.355 DEBUG [32264]: Closing database connection -- 07:12:48.355 SQL [32264]: pgsql_close() -- 07:20:57.816 INFO [32265]: COREGRADE is starting... -- 07:20:57.817 INFO [32265]: Version from config: 1.0 -- 07:20:57.817 DEBUG [32265]: Connecting to database... -- 07:20:57.817 DEBUG [32265]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:20:57.817 SQL [32265]: pgsql_db_connect() -- 07:20:57.821 DEBUG [32265]: Database connection successful -- 07:20:57.821 INFO [32265]: _SERVER found -- 07:20:57.821 INFO [32265]: REMOTE_ADDR = 192.168.1.13 -- 07:20:57.821 INFO [32265]: SERVER_NAME = oameye.works.coregrade.com -- 07:20:57.821 INFO [32265]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 07:20:57.821 INFO [32265]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 07:20:57.857 INFO [32265]: COREGRADE is stopping... -- 07:20:57.857 DEBUG [32265]: Closing database connection -- 07:20:57.857 SQL [32265]: pgsql_close() -- 07:50:23.196 INFO [32209]: COREGRADE is starting... -- 07:50:23.196 INFO [32209]: Version from config: 1.0 -- 07:50:23.196 DEBUG [32209]: Connecting to database... -- 07:50:23.196 DEBUG [32209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:50:23.196 SQL [32209]: pgsql_db_connect() -- 07:50:23.201 DEBUG [32209]: Database connection successful -- 07:50:23.201 INFO [32209]: _SERVER found -- 07:50:23.201 INFO [32209]: REMOTE_ADDR = 192.168.1.13 -- 07:50:23.201 INFO [32209]: SERVER_NAME = oameye.works.coregrade.com -- 07:50:23.201 INFO [32209]: QUERY_STRING = /TP/public/index.php -- 07:50:23.201 INFO [32209]: HTTP_X_FORWARDED_FOR = 129.158.122.65 -- 07:50:23.215 INFO [32209]: COREGRADE is stopping... -- 07:50:23.215 DEBUG [32209]: Closing database connection -- 07:50:23.215 SQL [32209]: pgsql_close() -- 07:50:24.980 INFO [32258]: COREGRADE is starting... -- 07:50:24.980 INFO [32258]: Version from config: 1.0 -- 07:50:24.980 DEBUG [32258]: Connecting to database... -- 07:50:24.980 DEBUG [32258]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:50:24.980 SQL [32258]: pgsql_db_connect() -- 07:50:24.984 DEBUG [32258]: Database connection successful -- 07:50:24.984 INFO [32258]: _SERVER found -- 07:50:24.984 INFO [32258]: REMOTE_ADDR = 192.168.1.13 -- 07:50:24.984 INFO [32258]: SERVER_NAME = oameye.works.coregrade.com -- 07:50:24.984 INFO [32258]: QUERY_STRING = /TP/index.php -- 07:50:24.984 INFO [32258]: HTTP_X_FORWARDED_FOR = 129.158.122.65 -- 07:50:24.997 INFO [32258]: COREGRADE is stopping... -- 07:50:24.997 DEBUG [32258]: Closing database connection -- 07:50:24.997 SQL [32258]: pgsql_close() -- 07:50:25.401 INFO [32258]: COREGRADE is starting... -- 07:50:25.401 INFO [32258]: Version from config: 1.0 -- 07:50:25.401 DEBUG [32258]: Connecting to database... -- 07:50:25.401 DEBUG [32258]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:50:25.401 SQL [32258]: pgsql_db_connect() -- 07:50:25.405 DEBUG [32258]: Database connection successful -- 07:50:25.406 INFO [32258]: _SERVER found -- 07:50:25.406 INFO [32258]: REMOTE_ADDR = 192.168.1.13 -- 07:50:25.406 INFO [32258]: SERVER_NAME = oameye.works.coregrade.com -- 07:50:25.406 INFO [32258]: QUERY_STRING = /thinkphp/html/public/index.php -- 07:50:25.406 INFO [32258]: HTTP_X_FORWARDED_FOR = 129.158.122.65 -- 07:50:25.417 INFO [32258]: COREGRADE is stopping... -- 07:50:25.417 DEBUG [32258]: Closing database connection -- 07:50:25.417 SQL [32258]: pgsql_close() -- 07:50:25.562 INFO [32258]: COREGRADE is starting... -- 07:50:25.562 INFO [32258]: Version from config: 1.0 -- 07:50:25.562 DEBUG [32258]: Connecting to database... -- 07:50:25.562 DEBUG [32258]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:50:25.562 SQL [32258]: pgsql_db_connect() -- 07:50:25.566 DEBUG [32258]: Database connection successful -- 07:50:25.566 INFO [32258]: _SERVER found -- 07:50:25.566 INFO [32258]: REMOTE_ADDR = 192.168.1.13 -- 07:50:25.566 INFO [32258]: SERVER_NAME = oameye.works.coregrade.com -- 07:50:25.566 INFO [32258]: QUERY_STRING = /html/public/index.php -- 07:50:25.566 INFO [32258]: HTTP_X_FORWARDED_FOR = 129.158.122.65 -- 07:50:25.577 INFO [32258]: COREGRADE is stopping... -- 07:50:25.577 DEBUG [32258]: Closing database connection -- 07:50:25.577 SQL [32258]: pgsql_close() -- 07:50:25.717 INFO [32258]: COREGRADE is starting... -- 07:50:25.717 INFO [32258]: Version from config: 1.0 -- 07:50:25.717 DEBUG [32258]: Connecting to database... -- 07:50:25.717 DEBUG [32258]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:50:25.718 SQL [32258]: pgsql_db_connect() -- 07:50:25.721 DEBUG [32258]: Database connection successful -- 07:50:25.721 INFO [32258]: _SERVER found -- 07:50:25.721 INFO [32258]: REMOTE_ADDR = 192.168.1.13 -- 07:50:25.721 INFO [32258]: SERVER_NAME = oameye.works.coregrade.com -- 07:50:25.722 INFO [32258]: QUERY_STRING = /public/index.php -- 07:50:25.722 INFO [32258]: HTTP_X_FORWARDED_FOR = 129.158.122.65 -- 07:50:25.732 INFO [32258]: COREGRADE is stopping... -- 07:50:25.733 DEBUG [32258]: Closing database connection -- 07:50:25.733 SQL [32258]: pgsql_close() -- 07:50:25.872 INFO [32258]: COREGRADE is starting... -- 07:50:25.872 INFO [32258]: Version from config: 1.0 -- 07:50:25.872 DEBUG [32258]: Connecting to database... -- 07:50:25.872 DEBUG [32258]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:50:25.872 SQL [32258]: pgsql_db_connect() -- 07:50:25.876 DEBUG [32258]: Database connection successful -- 07:50:25.876 INFO [32258]: _SERVER found -- 07:50:25.876 INFO [32258]: REMOTE_ADDR = 192.168.1.13 -- 07:50:25.876 INFO [32258]: SERVER_NAME = oameye.works.coregrade.com -- 07:50:25.876 INFO [32258]: QUERY_STRING = /TP/html/public/index.php -- 07:50:25.876 INFO [32258]: HTTP_X_FORWARDED_FOR = 129.158.122.65 -- 07:50:25.887 INFO [32258]: COREGRADE is stopping... -- 07:50:25.887 DEBUG [32258]: Closing database connection -- 07:50:25.887 SQL [32258]: pgsql_close() -- 07:50:26.019 INFO [32258]: COREGRADE is starting... -- 07:50:26.019 INFO [32258]: Version from config: 1.0 -- 07:50:26.019 DEBUG [32258]: Connecting to database... -- 07:50:26.019 DEBUG [32258]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:50:26.019 SQL [32258]: pgsql_db_connect() -- 07:50:26.023 DEBUG [32258]: Database connection successful -- 07:50:26.023 INFO [32258]: _SERVER found -- 07:50:26.023 INFO [32258]: REMOTE_ADDR = 192.168.1.13 -- 07:50:26.023 INFO [32258]: SERVER_NAME = oameye.works.coregrade.com -- 07:50:26.023 INFO [32258]: QUERY_STRING = /elrekt.php -- 07:50:26.023 INFO [32258]: HTTP_X_FORWARDED_FOR = 129.158.122.65 -- 07:50:26.034 INFO [32258]: COREGRADE is stopping... -- 07:50:26.034 DEBUG [32258]: Closing database connection -- 07:50:26.034 SQL [32258]: pgsql_close() -- 07:50:26.170 INFO [32258]: COREGRADE is starting... -- 07:50:26.170 INFO [32258]: Version from config: 1.0 -- 07:50:26.170 DEBUG [32258]: Connecting to database... -- 07:50:26.170 DEBUG [32258]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:50:26.170 SQL [32258]: pgsql_db_connect() -- 07:50:26.174 DEBUG [32258]: Database connection successful -- 07:50:26.174 INFO [32258]: _SERVER found -- 07:50:26.174 INFO [32258]: REMOTE_ADDR = 192.168.1.13 -- 07:50:26.174 INFO [32258]: SERVER_NAME = oameye.works.coregrade.com -- 07:50:26.174 INFO [32258]: QUERY_STRING = -- 07:50:26.174 INFO [32258]: HTTP_X_FORWARDED_FOR = 129.158.122.65 -- 07:50:26.208 INFO [32258]: COREGRADE is stopping... -- 07:50:26.208 DEBUG [32258]: Closing database connection -- 07:50:26.208 SQL [32258]: pgsql_close() -- 07:50:26.348 INFO [32258]: COREGRADE is starting... -- 07:50:26.348 INFO [32258]: Version from config: 1.0 -- 07:50:26.348 DEBUG [32258]: Connecting to database... -- 07:50:26.348 DEBUG [32258]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:50:26.348 SQL [32258]: pgsql_db_connect() -- 07:50:26.352 DEBUG [32258]: Database connection successful -- 07:50:26.352 INFO [32258]: _SERVER found -- 07:50:26.352 INFO [32258]: REMOTE_ADDR = 192.168.1.13 -- 07:50:26.352 INFO [32258]: SERVER_NAME = oameye.works.coregrade.com -- 07:50:26.352 INFO [32258]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 07:50:26.352 INFO [32258]: HTTP_X_FORWARDED_FOR = 129.158.122.65 -- 07:50:26.383 INFO [32258]: COREGRADE is stopping... -- 07:50:26.383 DEBUG [32258]: Closing database connection -- 07:50:26.383 SQL [32258]: pgsql_close() -- 07:50:26.549 INFO [32258]: COREGRADE is starting... -- 07:50:26.549 INFO [32258]: Version from config: 1.0 -- 07:50:26.549 DEBUG [32258]: Connecting to database... -- 07:50:26.549 DEBUG [32258]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:50:26.549 SQL [32258]: pgsql_db_connect() -- 07:50:26.553 DEBUG [32258]: Database connection successful -- 07:50:26.553 INFO [32258]: _SERVER found -- 07:50:26.553 INFO [32258]: REMOTE_ADDR = 192.168.1.13 -- 07:50:26.553 INFO [32258]: SERVER_NAME = oameye.works.coregrade.com -- 07:50:26.553 INFO [32258]: QUERY_STRING = s=captcha -- 07:50:26.553 INFO [32258]: HTTP_X_FORWARDED_FOR = 129.158.122.65 -- 07:50:26.584 INFO [32258]: COREGRADE is stopping... -- 07:50:26.584 DEBUG [32258]: Closing database connection -- 07:50:26.584 SQL [32258]: pgsql_close() -- 07:50:26.727 INFO [32258]: COREGRADE is starting... -- 07:50:26.727 INFO [32258]: Version from config: 1.0 -- 07:50:26.727 DEBUG [32258]: Connecting to database... -- 07:50:26.727 DEBUG [32258]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:50:26.727 SQL [32258]: pgsql_db_connect() -- 07:50:26.731 DEBUG [32258]: Database connection successful -- 07:50:26.731 INFO [32258]: _SERVER found -- 07:50:26.731 INFO [32258]: REMOTE_ADDR = 192.168.1.13 -- 07:50:26.731 INFO [32258]: SERVER_NAME = oameye.works.coregrade.com -- 07:50:26.731 INFO [32258]: QUERY_STRING = -- 07:50:26.731 INFO [32258]: HTTP_X_FORWARDED_FOR = 129.158.122.65 -- 07:50:26.762 INFO [32258]: COREGRADE is stopping... -- 07:50:26.762 DEBUG [32258]: Closing database connection -- 07:50:26.762 SQL [32258]: pgsql_close() -- 08:22:18.589 INFO [32212]: COREGRADE is starting... -- 08:22:18.590 INFO [32212]: Version from config: 1.0 -- 08:22:18.590 DEBUG [32212]: Connecting to database... -- 08:22:18.590 DEBUG [32212]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:22:18.590 SQL [32212]: pgsql_db_connect() -- 08:22:18.594 DEBUG [32212]: Database connection successful -- 08:22:18.594 INFO [32212]: _SERVER found -- 08:22:18.594 INFO [32212]: REMOTE_ADDR = 192.168.1.13 -- 08:22:18.594 INFO [32212]: SERVER_NAME = oameye.works.coregrade.com -- 08:22:18.594 INFO [32212]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 08:22:18.594 INFO [32212]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 08:22:18.639 INFO [32212]: COREGRADE is stopping... -- 08:22:18.639 DEBUG [32212]: Closing database connection -- 08:22:18.639 SQL [32212]: pgsql_close() -- 08:28:20.763 INFO [32301]: COREGRADE is starting... -- 08:28:20.763 INFO [32301]: Version from config: 1.0 -- 08:28:20.763 DEBUG [32301]: Connecting to database... -- 08:28:20.763 DEBUG [32301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:28:20.763 SQL [32301]: pgsql_db_connect() -- 08:28:20.767 DEBUG [32301]: Database connection successful -- 08:28:20.767 INFO [32301]: _SERVER found -- 08:28:20.767 INFO [32301]: REMOTE_ADDR = 192.168.1.13 -- 08:28:20.767 INFO [32301]: SERVER_NAME = oameye.works.coregrade.com -- 08:28:20.767 INFO [32301]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=opve8j6u9rkqfeb0og9qgtid11hsidjl -- 08:28:20.767 INFO [32301]: QUERY_STRING = -- 08:28:20.767 INFO [32301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:28:20.804 INFO [32301]: COREGRADE is stopping... -- 08:28:20.804 DEBUG [32301]: Closing database connection -- 08:28:20.804 SQL [32301]: pgsql_close() -- 08:28:20.914 INFO [32301]: COREGRADE is starting... -- 08:28:20.914 INFO [32301]: Version from config: 1.0 -- 08:28:20.914 DEBUG [32301]: Connecting to database... -- 08:28:20.914 DEBUG [32301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:28:20.914 SQL [32301]: pgsql_db_connect() -- 08:28:20.920 INFO [32299]: COREGRADE is starting... -- 08:28:20.921 INFO [32299]: Version from config: 1.0 -- 08:28:20.921 DEBUG [32299]: Connecting to database... -- 08:28:20.921 DEBUG [32299]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:28:20.921 SQL [32299]: pgsql_db_connect() -- 08:28:20.918 DEBUG [32301]: Database connection successful -- 08:28:20.918 INFO [32301]: _SERVER found -- 08:28:20.918 INFO [32301]: REMOTE_ADDR = 192.168.1.13 -- 08:28:20.918 INFO [32301]: SERVER_NAME = oameye.works.coregrade.com -- 08:28:20.918 INFO [32301]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=8c284o16rpuvq96lmk24q9lc8ra7vvlh -- 08:28:20.918 INFO [32301]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 08:28:20.918 INFO [32301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:28:20.930 INFO [32301]: COREGRADE is stopping... -- 08:28:20.930 DEBUG [32301]: Closing database connection -- 08:28:20.930 SQL [32301]: pgsql_close() -- 08:28:20.925 DEBUG [32299]: Database connection successful -- 08:28:20.925 INFO [32299]: _SERVER found -- 08:28:20.925 INFO [32299]: REMOTE_ADDR = 192.168.1.13 -- 08:28:20.925 INFO [32299]: SERVER_NAME = oameye.works.coregrade.com -- 08:28:20.925 INFO [32299]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=8c284o16rpuvq96lmk24q9lc8ra7vvlh -- 08:28:20.925 INFO [32299]: QUERY_STRING = /assets/img/footer_1.jpg -- 08:28:20.925 INFO [32299]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:28:20.938 INFO [32299]: COREGRADE is stopping... -- 08:28:20.938 DEBUG [32299]: Closing database connection -- 08:28:20.938 SQL [32299]: pgsql_close() -- 08:28:23.227 INFO [32299]: COREGRADE is starting... -- 08:28:23.228 INFO [32299]: Version from config: 1.0 -- 08:28:23.228 DEBUG [32299]: Connecting to database... -- 08:28:23.228 DEBUG [32299]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:28:23.228 SQL [32299]: pgsql_db_connect() -- 08:28:23.238 INFO [32301]: COREGRADE is starting... -- 08:28:23.238 INFO [32301]: Version from config: 1.0 -- 08:28:23.238 DEBUG [32301]: Connecting to database... -- 08:28:23.238 DEBUG [32301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:28:23.238 SQL [32301]: pgsql_db_connect() -- 08:28:23.232 DEBUG [32299]: Database connection successful -- 08:28:23.232 INFO [32299]: _SERVER found -- 08:28:23.232 INFO [32299]: REMOTE_ADDR = 192.168.1.13 -- 08:28:23.232 INFO [32299]: SERVER_NAME = oameye.works.coregrade.com -- 08:28:23.232 INFO [32299]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=8c284o16rpuvq96lmk24q9lc8ra7vvlh; _gat_gtag_UA_54829827_2=1 -- 08:28:23.232 INFO [32299]: QUERY_STRING = /welcome/viewLogin -- 08:28:23.232 INFO [32299]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:28:23.267 INFO [32299]: COREGRADE is stopping... -- 08:28:23.267 DEBUG [32299]: Closing database connection -- 08:28:23.267 SQL [32299]: pgsql_close() -- 08:28:23.243 DEBUG [32301]: Database connection successful -- 08:28:23.243 INFO [32301]: _SERVER found -- 08:28:23.243 INFO [32301]: REMOTE_ADDR = 192.168.1.13 -- 08:28:23.243 INFO [32301]: SERVER_NAME = oameye.works.coregrade.com -- 08:28:23.243 INFO [32301]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=8c284o16rpuvq96lmk24q9lc8ra7vvlh; _gat_gtag_UA_54829827_2=1 -- 08:28:23.243 INFO [32301]: QUERY_STRING = /auth -- 08:28:23.243 INFO [32301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:28:23.275 INFO [32301]: COREGRADE is stopping... -- 08:28:23.275 DEBUG [32301]: Closing database connection -- 08:28:23.275 SQL [32301]: pgsql_close() -- 08:28:23.281 INFO [32301]: COREGRADE is starting... -- 08:28:23.281 INFO [32301]: Version from config: 1.0 -- 08:28:23.281 DEBUG [32301]: Connecting to database... -- 08:28:23.281 DEBUG [32301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:28:23.281 SQL [32301]: pgsql_db_connect() -- 08:28:23.285 DEBUG [32301]: Database connection successful -- 08:28:23.285 INFO [32301]: _SERVER found -- 08:28:23.285 INFO [32301]: REMOTE_ADDR = 192.168.1.13 -- 08:28:23.285 INFO [32301]: SERVER_NAME = oameye.works.coregrade.com -- 08:28:23.285 INFO [32301]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=8c284o16rpuvq96lmk24q9lc8ra7vvlh; _gat_gtag_UA_54829827_2=1 -- 08:28:23.285 INFO [32301]: QUERY_STRING = /auth/index -- 08:28:23.285 INFO [32301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:28:23.316 INFO [32301]: COREGRADE is stopping... -- 08:28:23.316 DEBUG [32301]: Closing database connection -- 08:28:23.316 SQL [32301]: pgsql_close() -- 08:28:23.439 INFO [32301]: COREGRADE is starting... -- 08:28:23.439 INFO [32301]: Version from config: 1.0 -- 08:28:23.439 DEBUG [32301]: Connecting to database... -- 08:28:23.439 DEBUG [32301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:28:23.439 SQL [32301]: pgsql_db_connect() -- 08:28:23.443 DEBUG [32301]: Database connection successful -- 08:28:23.443 INFO [32301]: _SERVER found -- 08:28:23.443 INFO [32301]: REMOTE_ADDR = 192.168.1.13 -- 08:28:23.443 INFO [32301]: SERVER_NAME = oameye.works.coregrade.com -- 08:28:23.443 INFO [32301]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=8c284o16rpuvq96lmk24q9lc8ra7vvlh; _gat_gtag_UA_54829827_2=1 -- 08:28:23.443 INFO [32301]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 08:28:23.443 INFO [32301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:28:23.454 INFO [32301]: COREGRADE is stopping... -- 08:28:23.454 DEBUG [32301]: Closing database connection -- 08:28:23.454 SQL [32301]: pgsql_close() -- 08:28:23.496 INFO [32301]: COREGRADE is starting... -- 08:28:23.496 INFO [32301]: Version from config: 1.0 -- 08:28:23.496 DEBUG [32301]: Connecting to database... -- 08:28:23.496 DEBUG [32301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:28:23.496 SQL [32301]: pgsql_db_connect() -- 08:28:23.500 DEBUG [32301]: Database connection successful -- 08:28:23.500 INFO [32301]: _SERVER found -- 08:28:23.500 INFO [32301]: REMOTE_ADDR = 192.168.1.13 -- 08:28:23.500 INFO [32301]: SERVER_NAME = oameye.works.coregrade.com -- 08:28:23.500 INFO [32301]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=8c284o16rpuvq96lmk24q9lc8ra7vvlh; _gat_gtag_UA_54829827_2=1 -- 08:28:23.500 INFO [32301]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:28:23.500 INFO [32301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:28:23.511 INFO [32301]: COREGRADE is stopping... -- 08:28:23.511 DEBUG [32301]: Closing database connection -- 08:28:23.511 SQL [32301]: pgsql_close() -- 08:28:24.818 INFO [32301]: COREGRADE is starting... -- 08:28:24.818 INFO [32301]: Version from config: 1.0 -- 08:28:24.818 DEBUG [32301]: Connecting to database... -- 08:28:24.818 DEBUG [32301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:28:24.818 SQL [32301]: pgsql_db_connect() -- 08:28:24.853 INFO [32301]: COREGRADE is starting... -- 08:28:24.853 INFO [32301]: Version from config: 1.0 -- 08:28:24.853 DEBUG [32301]: Connecting to database... -- 08:28:24.853 DEBUG [32301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:28:24.853 SQL [32301]: pgsql_db_connect() -- 08:28:24.857 DEBUG [32301]: Database connection successful -- 08:28:24.857 INFO [32301]: _SERVER found -- 08:28:24.857 INFO [32301]: REMOTE_ADDR = 192.168.1.13 -- 08:28:24.857 INFO [32301]: SERVER_NAME = oameye.works.coregrade.com -- 08:28:24.857 INFO [32301]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=8c284o16rpuvq96lmk24q9lc8ra7vvlh; _gat_gtag_UA_54829827_2=1 -- 08:28:24.857 INFO [32301]: QUERY_STRING = -- 08:28:24.857 INFO [32301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:28:24.857 INFO [32301]: SystemStatus()09-09-********~************ -- 08:28:24.857 INFO [32301]: long coregrade_api_main(CVars in, CVars &out) -- 08:28:24.857 INFO [32301]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 08:28:24.857 INFO [32301]: account calls -- 08:28:24.857 INFO [32301]: account_calls() -- 08:28:24.857 INFO [32301]: LoginCoreGradeAccount() -- 08:28:24.857 FLOG_MAX [32301]: REQ_STRING(username) -- 08:28:24.857 FLOG_MAX [32301]: REQ_STRING(password) -- 08:28:24.857 FLOG_MAX [32301]: REQ_STRING(sessionid) -- 08:28:24.857 FLOG_MAX [32301]: long load_db_record( CVars &rec, const char * query, ... ) -- 08:28:24.857 SQL [32301]: pgsql_query() -- 08:28:24.857 SQL [32301]: About to run query: -- 08:28:24.857 SQL [32301]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 08:28:24.861 SQL [32301]: Found rows: 1 -- 08:28:24.861 FLOG_MAX [32301]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 08:28:24.861 INFO [32301]: long SessionCheck(long uid, const char *sessionid, int create ) -- 08:28:24.861 SQL [32301]: pgsql_exec() -- 08:28:24.861 SQL [32301]: About to run query: -- 08:28:24.861 SQL [32301]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 08:28:24.862 SQL [32301]: PQcmdTuples: 1 -- 08:28:24.862 SQL [32301]: Affected rows: 1 -- 08:28:24.862 SQL [32301]: pgsql_exec() -- 08:28:24.862 SQL [32301]: About to run query: -- 08:28:24.862 SQL [32301]: DELETE FROM members_session WHERE member_id=5 -- 08:28:24.862 SQL [32301]: PQcmdTuples: 0 -- 08:28:24.862 SQL [32301]: Affected rows: 0 -- 08:28:24.862 SQL [32301]: pgsql_query() -- 08:28:24.862 SQL [32301]: About to run query: -- 08:28:24.862 SQL [32301]: SELECT * FROM members_session WHERE member_id=5 AND session<>'047FA81F76507DBD686D22DEC73B8EAC' -- 08:28:24.863 SQL [32301]: Found rows: 0 -- 08:28:24.863 SQL [32301]: Found rows: 0 -- 08:28:24.863 FLOG_MAX [32301]: long load_db_record( CVars &rec, const char * query, ... ) -- 08:28:24.863 SQL [32301]: pgsql_query() -- 08:28:24.863 SQL [32301]: About to run query: -- 08:28:24.863 SQL [32301]: SELECT * FROM members_session WHERE member_id=5 AND session='047FA81F76507DBD686D22DEC73B8EAC' -- 08:28:24.864 SQL [32301]: Found rows: 0 -- 08:28:24.864 SQL [32301]: Found rows: 0 -- 08:28:24.864 FLOG_MAX [32301]: insert_db_record() -- 08:28:24.864 SQL [32301]: pgsql_exec() -- 08:28:24.864 SQL [32301]: About to run query: -- 08:28:24.864 SQL [32301]: INSERT INTO members_session (member_id,session) VALUES ('5','047FA81F76507DBD686D22DEC73B8EAC') -- 08:28:24.865 SQL [32301]: PQcmdTuples: 1 -- 08:28:24.865 SQL [32301]: Affected rows: 1 -- 08:28:24.865 FLOG_MAX [32301]: SELECT currval('members_session_id_seq') -- 08:28:24.865 SQL [32301]: pgsql_query() -- 08:28:24.865 SQL [32301]: About to run query: -- 08:28:24.865 SQL [32301]: SELECT currval('members_session_id_seq') -- 08:28:24.865 SQL [32301]: Found rows: 1 -- 08:28:24.866 INFO [32301]: CreateDefaultPage() -- 08:28:24.866 FLOG_MAX [32301]: long load_db_record( CVars &rec, const char * query, ... ) -- 08:28:24.866 SQL [32301]: pgsql_query() -- 08:28:24.866 SQL [32301]: About to run query: -- 08:28:24.866 SQL [32301]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 08:28:24.866 SQL [32301]: Found rows: 1 -- 08:28:24.866 FLOG_MAX [32301]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 08:28:24.866 SQL [32301]: pgsql_query() -- 08:28:24.866 SQL [32301]: About to run query: -- 08:28:24.866 SQL [32301]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 08:28:24.866 SQL [32301]: Found rows: 1 -- 08:28:24.867 INFO [32301]: /CreateDefaultPage() -- 08:28:24.867 INFO [32301]: /LoginCoreGradeAccount() -- 08:28:24.867 INFO [32301]: RET: added=2020-02-05 06:47:23.982154 -- 08:28:24.867 INFO [32301]: RET: email=ameye+11@chiefsoft.com -- 08:28:24.867 INFO [32301]: RET: firstname=Olu -- 08:28:24.867 INFO [32301]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 08:28:24.867 INFO [32301]: RET: id=5 -- 08:28:24.867 INFO [32301]: RET: last_login= -- 08:28:24.867 INFO [32301]: RET: lastname=Amey -- 08:28:24.867 INFO [32301]: RET: loc=192.168.1.13 -- 08:28:24.867 INFO [32301]: RET: member_id=5 -- 08:28:24.867 INFO [32301]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 08:28:24.867 INFO [32301]: RET: phone= -- 08:28:24.867 INFO [32301]: RET: pid= -- 08:28:24.867 INFO [32301]: RET: result=YES I GET TO BACK END -- 08:28:24.867 INFO [32301]: RET: sessionid=047FA81F76507DBD686D22DEC73B8EAC -- 08:28:24.867 INFO [32301]: RET: status=1 -- 08:28:24.867 INFO [32301]: RET: stauts=OK -- 08:28:24.867 INFO [32301]: RET: username=ameye+11@chiefsoft.com -- 08:28:24.867 INFO [32301]: RET: verified= -- 08:28:24.868 INFO [32301]: COREGRADE is stopping... -- 08:28:24.868 DEBUG [32301]: Closing database connection -- 08:28:24.868 SQL [32301]: pgsql_close() -- 08:28:24.822 DEBUG [32301]: Database connection successful -- 08:28:24.822 INFO [32301]: _SERVER found -- 08:28:24.822 INFO [32301]: REMOTE_ADDR = 192.168.1.13 -- 08:28:24.822 INFO [32301]: SERVER_NAME = oameye.works.coregrade.com -- 08:28:24.822 INFO [32301]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=8c284o16rpuvq96lmk24q9lc8ra7vvlh; _gat_gtag_UA_54829827_2=1 -- 08:28:24.822 INFO [32301]: QUERY_STRING = /auth -- 08:28:24.822 INFO [32301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:28:24.868 INFO [32301]: COREGRADE is stopping... -- 08:28:24.868 DEBUG [32301]: Closing database connection -- 08:28:24.868 SQL [32301]: pgsql_close() -- 08:28:24.886 INFO [32301]: COREGRADE is starting... -- 08:28:24.887 INFO [32301]: Version from config: 1.0 -- 08:28:24.887 DEBUG [32301]: Connecting to database... -- 08:28:24.887 DEBUG [32301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:28:24.887 SQL [32301]: pgsql_db_connect() -- 08:28:24.890 DEBUG [32301]: Database connection successful -- 08:28:24.890 INFO [32301]: _SERVER found -- 08:28:24.890 INFO [32301]: REMOTE_ADDR = 192.168.1.13 -- 08:28:24.890 INFO [32301]: SERVER_NAME = oameye.works.coregrade.com -- 08:28:24.890 INFO [32301]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=8c284o16rpuvq96lmk24q9lc8ra7vvlh; _gat_gtag_UA_54829827_2=1 -- 08:28:24.890 INFO [32301]: QUERY_STRING = /member/index -- 08:28:24.890 INFO [32301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:28:24.930 INFO [32301]: COREGRADE is stopping... -- 08:28:24.931 DEBUG [32301]: Closing database connection -- 08:28:24.931 SQL [32301]: pgsql_close() -- 08:28:25.232 INFO [32301]: COREGRADE is starting... -- 08:28:25.232 INFO [32301]: Version from config: 1.0 -- 08:28:25.232 DEBUG [32301]: Connecting to database... -- 08:28:25.232 DEBUG [32301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:28:25.232 SQL [32301]: pgsql_db_connect() -- 08:28:25.236 DEBUG [32301]: Database connection successful -- 08:28:25.236 INFO [32301]: _SERVER found -- 08:28:25.236 INFO [32301]: REMOTE_ADDR = 192.168.1.13 -- 08:28:25.236 INFO [32301]: SERVER_NAME = oameye.works.coregrade.com -- 08:28:25.236 INFO [32301]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=8c284o16rpuvq96lmk24q9lc8ra7vvlh; _gat_gtag_UA_54829827_2=1 -- 08:28:25.236 INFO [32301]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 08:28:25.236 INFO [32301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:28:25.247 INFO [32301]: COREGRADE is stopping... -- 08:28:25.247 DEBUG [32301]: Closing database connection -- 08:28:25.247 SQL [32301]: pgsql_close() -- 08:28:25.367 INFO [32301]: COREGRADE is starting... -- 08:28:25.367 INFO [32301]: Version from config: 1.0 -- 08:28:25.367 DEBUG [32301]: Connecting to database... -- 08:28:25.367 DEBUG [32301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:28:25.367 SQL [32301]: pgsql_db_connect() -- 08:28:25.371 DEBUG [32301]: Database connection successful -- 08:28:25.371 INFO [32301]: _SERVER found -- 08:28:25.371 INFO [32301]: REMOTE_ADDR = 192.168.1.13 -- 08:28:25.371 INFO [32301]: SERVER_NAME = oameye.works.coregrade.com -- 08:28:25.371 INFO [32301]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=8c284o16rpuvq96lmk24q9lc8ra7vvlh; _gat_gtag_UA_54829827_2=1 -- 08:28:25.371 INFO [32301]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:28:25.371 INFO [32301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:28:25.382 INFO [32301]: COREGRADE is stopping... -- 08:28:25.382 DEBUG [32301]: Closing database connection -- 08:28:25.382 SQL [32301]: pgsql_close() -- 08:28:27.787 INFO [32301]: COREGRADE is starting... -- 08:28:27.787 INFO [32301]: Version from config: 1.0 -- 08:28:27.787 DEBUG [32301]: Connecting to database... -- 08:28:27.787 DEBUG [32301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:28:27.787 SQL [32301]: pgsql_db_connect() -- 08:28:27.792 DEBUG [32301]: Database connection successful -- 08:28:27.792 INFO [32301]: _SERVER found -- 08:28:27.792 INFO [32301]: REMOTE_ADDR = 192.168.1.13 -- 08:28:27.792 INFO [32301]: SERVER_NAME = oameye.works.coregrade.com -- 08:28:27.792 INFO [32301]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=8c284o16rpuvq96lmk24q9lc8ra7vvlh; _gat_gtag_UA_54829827_2=1 -- 08:28:27.792 INFO [32301]: QUERY_STRING = /member/page -- 08:28:27.792 INFO [32301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:28:27.835 INFO [32301]: COREGRADE is stopping... -- 08:28:27.835 DEBUG [32301]: Closing database connection -- 08:28:27.835 SQL [32301]: pgsql_close() -- 08:28:28.061 INFO [32302]: COREGRADE is starting... -- 08:28:28.062 INFO [32302]: Version from config: 1.0 -- 08:28:28.062 DEBUG [32302]: Connecting to database... -- 08:28:28.062 DEBUG [32302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:28:28.062 SQL [32302]: pgsql_db_connect() -- 08:28:28.066 DEBUG [32302]: Database connection successful -- 08:28:28.066 INFO [32302]: _SERVER found -- 08:28:28.066 INFO [32302]: REMOTE_ADDR = 192.168.1.13 -- 08:28:28.066 INFO [32302]: SERVER_NAME = oameye.works.coregrade.com -- 08:28:28.066 INFO [32302]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=8c284o16rpuvq96lmk24q9lc8ra7vvlh; _gat_gtag_UA_54829827_2=1 -- 08:28:28.066 INFO [32302]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 08:28:28.066 INFO [32302]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:28:28.079 INFO [32302]: COREGRADE is stopping... -- 08:28:28.079 DEBUG [32302]: Closing database connection -- 08:28:28.079 SQL [32302]: pgsql_close() -- 08:28:28.292 INFO [32213]: COREGRADE is starting... -- 08:28:28.293 INFO [32213]: Version from config: 1.0 -- 08:28:28.293 DEBUG [32213]: Connecting to database... -- 08:28:28.293 DEBUG [32213]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:28:28.293 SQL [32213]: pgsql_db_connect() -- 08:28:28.297 DEBUG [32213]: Database connection successful -- 08:28:28.297 INFO [32213]: _SERVER found -- 08:28:28.297 INFO [32213]: REMOTE_ADDR = 192.168.1.13 -- 08:28:28.297 INFO [32213]: SERVER_NAME = oameye.works.coregrade.com -- 08:28:28.297 INFO [32213]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=8c284o16rpuvq96lmk24q9lc8ra7vvlh; _gat_gtag_UA_54829827_2=1 -- 08:28:28.297 INFO [32213]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:28:28.297 INFO [32213]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:28:28.310 INFO [32213]: COREGRADE is stopping... -- 08:28:28.310 DEBUG [32213]: Closing database connection -- 08:28:28.310 SQL [32213]: pgsql_close() -- 08:59:49.915 INFO [32209]: COREGRADE is starting... -- 08:59:49.915 INFO [32209]: Version from config: 1.0 -- 08:59:49.915 DEBUG [32209]: Connecting to database... -- 08:59:49.915 DEBUG [32209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:59:49.916 SQL [32209]: pgsql_db_connect() -- 08:59:49.920 DEBUG [32209]: Database connection successful -- 08:59:49.920 INFO [32209]: _SERVER found -- 08:59:49.920 INFO [32209]: REMOTE_ADDR = 192.168.1.13 -- 08:59:49.920 INFO [32209]: SERVER_NAME = oameye.works.coregrade.com -- 08:59:49.920 INFO [32209]: QUERY_STRING = /console -- 08:59:49.920 INFO [32209]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 08:59:49.934 INFO [32209]: COREGRADE is stopping... -- 08:59:49.934 DEBUG [32209]: Closing database connection -- 08:59:49.934 SQL [32209]: pgsql_close() -- 09:04:08.217 INFO [32258]: COREGRADE is starting... -- 09:04:08.218 INFO [32258]: Version from config: 1.0 -- 09:04:08.218 DEBUG [32258]: Connecting to database... -- 09:04:08.218 DEBUG [32258]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:04:08.218 SQL [32258]: pgsql_db_connect() -- 09:04:08.223 DEBUG [32258]: Database connection successful -- 09:04:08.223 INFO [32258]: _SERVER found -- 09:04:08.223 INFO [32258]: REMOTE_ADDR = 192.168.1.13 -- 09:04:08.223 INFO [32258]: SERVER_NAME = oameye.works.coregrade.com -- 09:04:08.223 INFO [32258]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=8c284o16rpuvq96lmk24q9lc8ra7vvlh -- 09:04:08.223 INFO [32258]: QUERY_STRING = /member/page -- 09:04:08.223 INFO [32258]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:04:08.272 INFO [32258]: COREGRADE is stopping... -- 09:04:08.272 DEBUG [32258]: Closing database connection -- 09:04:08.272 SQL [32258]: pgsql_close() -- 09:04:08.696 INFO [32258]: COREGRADE is starting... -- 09:04:08.697 INFO [32258]: Version from config: 1.0 -- 09:04:08.697 DEBUG [32258]: Connecting to database... -- 09:04:08.697 DEBUG [32258]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:04:08.697 SQL [32258]: pgsql_db_connect() -- 09:04:08.701 DEBUG [32258]: Database connection successful -- 09:04:08.701 INFO [32258]: _SERVER found -- 09:04:08.701 INFO [32258]: REMOTE_ADDR = 192.168.1.13 -- 09:04:08.701 INFO [32258]: SERVER_NAME = oameye.works.coregrade.com -- 09:04:08.701 INFO [32258]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=s20ur5hsahte714hgtoblpbmamblfial -- 09:04:08.701 INFO [32258]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 09:04:08.701 INFO [32258]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:04:08.713 INFO [32258]: COREGRADE is stopping... -- 09:04:08.713 DEBUG [32258]: Closing database connection -- 09:04:08.713 SQL [32258]: pgsql_close() -- 09:04:09.198 INFO [32258]: COREGRADE is starting... -- 09:04:09.198 INFO [32258]: Version from config: 1.0 -- 09:04:09.198 DEBUG [32258]: Connecting to database... -- 09:04:09.198 DEBUG [32258]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:04:09.198 SQL [32258]: pgsql_db_connect() -- 09:04:09.203 DEBUG [32258]: Database connection successful -- 09:04:09.203 INFO [32258]: _SERVER found -- 09:04:09.203 INFO [32258]: REMOTE_ADDR = 192.168.1.13 -- 09:04:09.203 INFO [32258]: SERVER_NAME = oameye.works.coregrade.com -- 09:04:09.203 INFO [32258]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=s20ur5hsahte714hgtoblpbmamblfial -- 09:04:09.203 INFO [32258]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:04:09.203 INFO [32258]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:04:09.214 INFO [32258]: COREGRADE is stopping... -- 09:04:09.214 DEBUG [32258]: Closing database connection -- 09:04:09.214 SQL [32258]: pgsql_close() -- 09:04:13.241 INFO [32258]: COREGRADE is starting... -- 09:04:13.241 INFO [32258]: Version from config: 1.0 -- 09:04:13.241 DEBUG [32258]: Connecting to database... -- 09:04:13.241 DEBUG [32258]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:04:13.241 SQL [32258]: pgsql_db_connect() -- 09:04:13.246 DEBUG [32258]: Database connection successful -- 09:04:13.246 INFO [32258]: _SERVER found -- 09:04:13.246 INFO [32258]: REMOTE_ADDR = 192.168.1.13 -- 09:04:13.246 INFO [32258]: SERVER_NAME = oameye.works.coregrade.com -- 09:04:13.246 INFO [32258]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=s20ur5hsahte714hgtoblpbmamblfial -- 09:04:13.246 INFO [32258]: QUERY_STRING = /auth -- 09:04:13.246 INFO [32258]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:04:13.278 INFO [32258]: COREGRADE is stopping... -- 09:04:13.278 DEBUG [32258]: Closing database connection -- 09:04:13.278 SQL [32258]: pgsql_close() -- 09:04:13.424 INFO [32258]: COREGRADE is starting... -- 09:04:13.424 INFO [32258]: Version from config: 1.0 -- 09:04:13.424 DEBUG [32258]: Connecting to database... -- 09:04:13.424 DEBUG [32258]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:04:13.424 SQL [32258]: pgsql_db_connect() -- 09:04:13.429 DEBUG [32258]: Database connection successful -- 09:04:13.429 INFO [32258]: _SERVER found -- 09:04:13.429 INFO [32258]: REMOTE_ADDR = 192.168.1.13 -- 09:04:13.429 INFO [32258]: SERVER_NAME = oameye.works.coregrade.com -- 09:04:13.429 INFO [32258]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=s20ur5hsahte714hgtoblpbmamblfial -- 09:04:13.429 INFO [32258]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 09:04:13.429 INFO [32258]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:04:13.440 INFO [32258]: COREGRADE is stopping... -- 09:04:13.440 DEBUG [32258]: Closing database connection -- 09:04:13.440 SQL [32258]: pgsql_close() -- 09:04:14.211 INFO [32258]: COREGRADE is starting... -- 09:04:14.211 INFO [32258]: Version from config: 1.0 -- 09:04:14.211 DEBUG [32258]: Connecting to database... -- 09:04:14.211 DEBUG [32258]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:04:14.211 SQL [32258]: pgsql_db_connect() -- 09:04:14.216 DEBUG [32258]: Database connection successful -- 09:04:14.216 INFO [32258]: _SERVER found -- 09:04:14.216 INFO [32258]: REMOTE_ADDR = 192.168.1.13 -- 09:04:14.216 INFO [32258]: SERVER_NAME = oameye.works.coregrade.com -- 09:04:14.216 INFO [32258]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=s20ur5hsahte714hgtoblpbmamblfial -- 09:04:14.216 INFO [32258]: QUERY_STRING = /app-assets/data/locales/en.json -- 09:04:14.216 INFO [32258]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:04:14.227 INFO [32258]: COREGRADE is stopping... -- 09:04:14.227 DEBUG [32258]: Closing database connection -- 09:04:14.227 SQL [32258]: pgsql_close() -- 11:44:08.914 INFO [32301]: COREGRADE is starting... -- 11:44:08.914 INFO [32301]: Version from config: 1.0 -- 11:44:08.914 DEBUG [32301]: Connecting to database... -- 11:44:08.914 DEBUG [32301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:44:08.914 SQL [32301]: pgsql_db_connect() -- 11:44:08.919 DEBUG [32301]: Database connection successful -- 11:44:08.919 INFO [32301]: _SERVER found -- 11:44:08.919 INFO [32301]: REMOTE_ADDR = 192.168.1.13 -- 11:44:08.919 INFO [32301]: SERVER_NAME = oameye.works.coregrade.com -- 11:44:08.919 INFO [32301]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791 -- 11:44:08.919 INFO [32301]: QUERY_STRING = /auth -- 11:44:08.919 INFO [32301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:44:08.959 INFO [32301]: COREGRADE is stopping... -- 11:44:08.959 DEBUG [32301]: Closing database connection -- 11:44:08.959 SQL [32301]: pgsql_close() -- 11:44:09.080 INFO [32301]: COREGRADE is starting... -- 11:44:09.081 INFO [32301]: Version from config: 1.0 -- 11:44:09.081 DEBUG [32301]: Connecting to database... -- 11:44:09.081 DEBUG [32301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:44:09.081 SQL [32301]: pgsql_db_connect() -- 11:44:09.085 DEBUG [32301]: Database connection successful -- 11:44:09.085 INFO [32301]: _SERVER found -- 11:44:09.085 INFO [32301]: REMOTE_ADDR = 192.168.1.13 -- 11:44:09.085 INFO [32301]: SERVER_NAME = oameye.works.coregrade.com -- 11:44:09.085 INFO [32301]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=s2fppqlrkgnfska7l8q605g3imcs0ghj -- 11:44:09.085 INFO [32301]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:44:09.085 INFO [32301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:44:09.097 INFO [32301]: COREGRADE is stopping... -- 11:44:09.097 DEBUG [32301]: Closing database connection -- 11:44:09.097 SQL [32301]: pgsql_close() -- 11:44:09.166 INFO [32301]: COREGRADE is starting... -- 11:44:09.166 INFO [32301]: Version from config: 1.0 -- 11:44:09.166 DEBUG [32301]: Connecting to database... -- 11:44:09.166 DEBUG [32301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:44:09.166 SQL [32301]: pgsql_db_connect() -- 11:44:09.170 DEBUG [32301]: Database connection successful -- 11:44:09.170 INFO [32301]: _SERVER found -- 11:44:09.170 INFO [32301]: REMOTE_ADDR = 192.168.1.13 -- 11:44:09.170 INFO [32301]: SERVER_NAME = oameye.works.coregrade.com -- 11:44:09.170 INFO [32301]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.2015242028.1582251791; ci_session=s2fppqlrkgnfska7l8q605g3imcs0ghj -- 11:44:09.170 INFO [32301]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:44:09.170 INFO [32301]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:44:09.181 INFO [32301]: COREGRADE is stopping... -- 11:44:09.181 DEBUG [32301]: Closing database connection -- 11:44:09.181 SQL [32301]: pgsql_close() -- 15:56:55.583 INFO [32299]: COREGRADE is starting... -- 15:56:55.584 INFO [32299]: Version from config: 1.0 -- 15:56:55.584 DEBUG [32299]: Connecting to database... -- 15:56:55.584 DEBUG [32299]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:56:55.584 SQL [32299]: pgsql_db_connect() -- 15:56:55.589 DEBUG [32299]: Database connection successful -- 15:56:55.589 INFO [32299]: _SERVER found -- 15:56:55.589 INFO [32299]: REMOTE_ADDR = 192.168.1.13 -- 15:56:55.589 INFO [32299]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:56:55.589 INFO [32299]: QUERY_STRING = -- 15:56:55.589 INFO [32299]: HTTP_X_FORWARDED_FOR = 174.218.12.171 -- 15:56:55.638 INFO [32299]: COREGRADE is stopping... -- 15:56:55.638 DEBUG [32299]: Closing database connection -- 15:56:55.638 SQL [32299]: pgsql_close() -- 15:57:03.865 INFO [32299]: COREGRADE is starting... -- 15:57:03.865 INFO [32299]: Version from config: 1.0 -- 15:57:03.865 DEBUG [32299]: Connecting to database... -- 15:57:03.865 DEBUG [32299]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:03.865 SQL [32299]: pgsql_db_connect() -- 15:57:03.869 DEBUG [32299]: Database connection successful -- 15:57:03.869 INFO [32299]: _SERVER found -- 15:57:03.869 INFO [32299]: REMOTE_ADDR = 192.168.1.13 -- 15:57:03.869 INFO [32299]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:57:03.869 INFO [32299]: HTTP_COOKIE = ci_session=dkav9meska5c611u2eh2ft0ig5sdvar4 -- 15:57:03.869 INFO [32299]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 15:57:03.869 INFO [32299]: HTTP_X_FORWARDED_FOR = 174.218.12.171 -- 15:57:03.881 INFO [32299]: COREGRADE is stopping... -- 15:57:03.881 DEBUG [32299]: Closing database connection -- 15:57:03.881 SQL [32299]: pgsql_close() -- 15:57:03.985 INFO [32299]: COREGRADE is starting... -- 15:57:03.986 INFO [32299]: Version from config: 1.0 -- 15:57:03.986 DEBUG [32299]: Connecting to database... -- 15:57:03.986 DEBUG [32299]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:03.986 SQL [32299]: pgsql_db_connect() -- 15:57:03.989 DEBUG [32299]: Database connection successful -- 15:57:03.989 INFO [32299]: _SERVER found -- 15:57:03.989 INFO [32299]: REMOTE_ADDR = 192.168.1.13 -- 15:57:03.989 INFO [32299]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:57:03.989 INFO [32299]: HTTP_COOKIE = ci_session=dkav9meska5c611u2eh2ft0ig5sdvar4 -- 15:57:03.990 INFO [32299]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:57:03.990 INFO [32299]: HTTP_X_FORWARDED_FOR = 174.218.12.171 -- 15:57:04.001 INFO [32299]: COREGRADE is stopping... -- 15:57:04.001 DEBUG [32299]: Closing database connection -- 15:57:04.001 SQL [32299]: pgsql_close() -- 15:57:11.452 INFO [32264]: COREGRADE is starting... -- 15:57:11.452 INFO [32264]: Version from config: 1.0 -- 15:57:11.452 DEBUG [32264]: Connecting to database... -- 15:57:11.452 DEBUG [32264]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:11.452 SQL [32264]: pgsql_db_connect() -- 15:57:11.457 DEBUG [32264]: Database connection successful -- 15:57:11.457 INFO [32264]: _SERVER found -- 15:57:11.457 INFO [32264]: REMOTE_ADDR = 192.168.1.13 -- 15:57:11.457 INFO [32264]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:57:11.457 INFO [32264]: HTTP_COOKIE = _ga=GA1.2.1832774218.1582405020; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.207140213.1582405020; ci_session=dkav9meska5c611u2eh2ft0ig5sdvar4 -- 15:57:11.457 INFO [32264]: QUERY_STRING = /auth -- 15:57:11.457 INFO [32264]: HTTP_X_FORWARDED_FOR = 174.218.12.171 -- 15:57:11.491 INFO [32264]: COREGRADE is stopping... -- 15:57:11.491 DEBUG [32264]: Closing database connection -- 15:57:11.491 SQL [32264]: pgsql_close() -- 15:57:29.247 INFO [32213]: COREGRADE is starting... -- 15:57:29.247 INFO [32213]: Version from config: 1.0 -- 15:57:29.247 DEBUG [32213]: Connecting to database... -- 15:57:29.247 DEBUG [32213]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:29.247 SQL [32213]: pgsql_db_connect() -- 15:57:29.251 DEBUG [32213]: Database connection successful -- 15:57:29.251 INFO [32213]: _SERVER found -- 15:57:29.251 INFO [32213]: REMOTE_ADDR = 192.168.1.13 -- 15:57:29.251 INFO [32213]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:57:29.251 INFO [32213]: HTTP_COOKIE = _ga=GA1.2.1832774218.1582405020; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.207140213.1582405020; ci_session=dkav9meska5c611u2eh2ft0ig5sdvar4 -- 15:57:29.251 INFO [32213]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:57:29.251 INFO [32213]: HTTP_X_FORWARDED_FOR = 174.218.12.171 -- 15:57:29.265 INFO [32213]: COREGRADE is stopping... -- 15:57:29.265 DEBUG [32213]: Closing database connection -- 15:57:29.265 SQL [32213]: pgsql_close() -- 15:57:31.440 INFO [32209]: COREGRADE is starting... -- 15:57:31.440 INFO [32209]: Version from config: 1.0 -- 15:57:31.440 DEBUG [32209]: Connecting to database... -- 15:57:31.440 DEBUG [32209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:31.440 SQL [32209]: pgsql_db_connect() -- 15:57:31.444 DEBUG [32209]: Database connection successful -- 15:57:31.444 INFO [32209]: _SERVER found -- 15:57:31.444 INFO [32209]: REMOTE_ADDR = 192.168.1.13 -- 15:57:31.444 INFO [32209]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:57:31.444 INFO [32209]: HTTP_COOKIE = _ga=GA1.2.1832774218.1582405020; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.207140213.1582405020; ci_session=dkav9meska5c611u2eh2ft0ig5sdvar4 -- 15:57:31.444 INFO [32209]: QUERY_STRING = /app-assets/data/locales/en.json -- 15:57:31.444 INFO [32209]: HTTP_X_FORWARDED_FOR = 174.218.12.171 -- 15:57:31.457 INFO [32209]: COREGRADE is stopping... -- 15:57:31.457 DEBUG [32209]: Closing database connection -- 15:57:31.457 SQL [32209]: pgsql_close() -- 15:57:47.970 INFO [32212]: COREGRADE is starting... -- 15:57:47.970 INFO [32212]: Version from config: 1.0 -- 15:57:47.970 DEBUG [32212]: Connecting to database... -- 15:57:47.970 DEBUG [32212]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:47.970 SQL [32212]: pgsql_db_connect() -- 15:57:47.975 DEBUG [32212]: Database connection successful -- 15:57:47.975 INFO [32212]: _SERVER found -- 15:57:47.975 INFO [32212]: REMOTE_ADDR = 192.168.1.13 -- 15:57:47.975 INFO [32212]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:57:47.975 INFO [32212]: HTTP_COOKIE = _ga=GA1.2.1832774218.1582405020; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.207140213.1582405020; ci_session=dkav9meska5c611u2eh2ft0ig5sdvar4 -- 15:57:47.975 INFO [32212]: QUERY_STRING = /auth -- 15:57:47.975 INFO [32212]: HTTP_X_FORWARDED_FOR = 174.218.12.171 -- 15:57:48.280 INFO [32212]: COREGRADE is starting... -- 15:57:48.280 INFO [32212]: Version from config: 1.0 -- 15:57:48.280 DEBUG [32212]: Connecting to database... -- 15:57:48.280 DEBUG [32212]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:48.280 SQL [32212]: pgsql_db_connect() -- 15:57:48.285 DEBUG [32212]: Database connection successful -- 15:57:48.285 INFO [32212]: _SERVER found -- 15:57:48.285 INFO [32212]: REMOTE_ADDR = 192.168.1.13 -- 15:57:48.285 INFO [32212]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:57:48.285 INFO [32212]: HTTP_COOKIE = _ga=GA1.2.1832774218.1582405020; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.207140213.1582405020; ci_session=dkav9meska5c611u2eh2ft0ig5sdvar4 -- 15:57:48.285 INFO [32212]: QUERY_STRING = /app-assets/data/locales/en.json -- 15:57:48.285 INFO [32212]: HTTP_X_FORWARDED_FOR = 174.218.12.171 -- 15:57:48.296 INFO [32212]: COREGRADE is stopping... -- 15:57:48.296 DEBUG [32212]: Closing database connection -- 15:57:48.296 SQL [32212]: pgsql_close() -- 15:57:48.427 INFO [32258]: COREGRADE is starting... -- 15:57:48.427 INFO [32258]: Version from config: 1.0 -- 15:57:48.427 DEBUG [32258]: Connecting to database... -- 15:57:48.427 DEBUG [32258]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:48.427 SQL [32258]: pgsql_db_connect() -- 15:57:48.431 DEBUG [32258]: Database connection successful -- 15:57:48.431 INFO [32258]: _SERVER found -- 15:57:48.431 INFO [32258]: REMOTE_ADDR = 192.168.1.13 -- 15:57:48.431 INFO [32258]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:57:48.431 INFO [32258]: HTTP_COOKIE = _ga=GA1.2.1832774218.1582405020; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.207140213.1582405020; ci_session=dkav9meska5c611u2eh2ft0ig5sdvar4 -- 15:57:48.431 INFO [32258]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:57:48.431 INFO [32258]: HTTP_X_FORWARDED_FOR = 174.218.12.171 -- 15:57:48.443 INFO [32258]: COREGRADE is stopping... -- 15:57:48.443 DEBUG [32258]: Closing database connection -- 15:57:48.443 SQL [32258]: pgsql_close() -- 15:58:06.845 INFO [32301]: COREGRADE is starting... -- 15:58:06.845 INFO [32301]: Version from config: 1.0 -- 15:58:06.845 DEBUG [32301]: Connecting to database... -- 15:58:06.845 DEBUG [32301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:06.845 SQL [32301]: pgsql_db_connect() -- 15:58:06.849 DEBUG [32301]: Database connection successful -- 15:58:06.849 INFO [32301]: _SERVER found -- 15:58:06.849 INFO [32301]: REMOTE_ADDR = 192.168.1.13 -- 15:58:06.849 INFO [32301]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:58:06.849 INFO [32301]: HTTP_COOKIE = _ga=GA1.2.1832774218.1582405020; _gid=GA1.2.207140213.1582405020; ci_session=dkav9meska5c611u2eh2ft0ig5sdvar4 -- 15:58:06.849 INFO [32301]: QUERY_STRING = /auth -- 15:58:06.849 INFO [32301]: HTTP_X_FORWARDED_FOR = 174.218.12.171 -- 15:58:07.043 INFO [32301]: COREGRADE is starting... -- 15:58:07.043 INFO [32301]: Version from config: 1.0 -- 15:58:07.043 DEBUG [32301]: Connecting to database... -- 15:58:07.043 DEBUG [32301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:07.043 SQL [32301]: pgsql_db_connect() -- 15:58:07.047 DEBUG [32301]: Database connection successful -- 15:58:07.047 INFO [32301]: _SERVER found -- 15:58:07.047 INFO [32301]: REMOTE_ADDR = 192.168.1.13 -- 15:58:07.047 INFO [32301]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:58:07.047 INFO [32301]: HTTP_COOKIE = _ga=GA1.2.1832774218.1582405020; _gid=GA1.2.207140213.1582405020; ci_session=dkav9meska5c611u2eh2ft0ig5sdvar4 -- 15:58:07.047 INFO [32301]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:58:07.047 INFO [32301]: HTTP_X_FORWARDED_FOR = 174.218.12.171 -- 15:58:07.059 INFO [32301]: COREGRADE is stopping... -- 15:58:07.059 DEBUG [32301]: Closing database connection -- 15:58:07.059 SQL [32301]: pgsql_close() -- 15:58:07.257 INFO [32301]: COREGRADE is starting... -- 15:58:07.257 INFO [32301]: Version from config: 1.0 -- 15:58:07.257 DEBUG [32301]: Connecting to database... -- 15:58:07.257 DEBUG [32301]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:07.257 SQL [32301]: pgsql_db_connect() -- 15:58:07.261 DEBUG [32301]: Database connection successful -- 15:58:07.261 INFO [32301]: _SERVER found -- 15:58:07.261 INFO [32301]: REMOTE_ADDR = 192.168.1.13 -- 15:58:07.261 INFO [32301]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:58:07.261 INFO [32301]: HTTP_COOKIE = _ga=GA1.2.1832774218.1582405020; _gid=GA1.2.207140213.1582405020; ci_session=dkav9meska5c611u2eh2ft0ig5sdvar4 -- 15:58:07.261 INFO [32301]: QUERY_STRING = /app-assets/data/locales/en.json -- 15:58:07.261 INFO [32301]: HTTP_X_FORWARDED_FOR = 174.218.12.171 -- 15:58:07.272 INFO [32301]: COREGRADE is stopping... -- 15:58:07.272 DEBUG [32301]: Closing database connection -- 15:58:07.272 SQL [32301]: pgsql_close() -- 15:58:13.187 INFO [32211]: COREGRADE is starting... -- 15:58:13.187 INFO [32211]: Version from config: 1.0 -- 15:58:13.187 DEBUG [32211]: Connecting to database... -- 15:58:13.187 DEBUG [32211]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:13.187 SQL [32211]: pgsql_db_connect() -- 15:58:13.191 DEBUG [32211]: Database connection successful -- 15:58:13.191 INFO [32211]: _SERVER found -- 15:58:13.191 INFO [32211]: REMOTE_ADDR = 192.168.1.13 -- 15:58:13.191 INFO [32211]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:58:13.191 INFO [32211]: HTTP_COOKIE = _ga=GA1.2.1832774218.1582405020; _gid=GA1.2.207140213.1582405020; ci_session=dkav9meska5c611u2eh2ft0ig5sdvar4 -- 15:58:13.191 INFO [32211]: QUERY_STRING = -- 15:58:13.191 INFO [32211]: HTTP_X_FORWARDED_FOR = 174.218.12.171 -- 15:58:13.224 INFO [32211]: COREGRADE is stopping... -- 15:58:13.224 DEBUG [32211]: Closing database connection -- 15:58:13.224 SQL [32211]: pgsql_close() -- 15:58:13.395 INFO [32211]: COREGRADE is starting... -- 15:58:13.395 INFO [32211]: Version from config: 1.0 -- 15:58:13.395 DEBUG [32211]: Connecting to database... -- 15:58:13.395 DEBUG [32211]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:13.395 SQL [32211]: pgsql_db_connect() -- 15:58:13.399 DEBUG [32211]: Database connection successful -- 15:58:13.399 INFO [32211]: _SERVER found -- 15:58:13.399 INFO [32211]: REMOTE_ADDR = 192.168.1.13 -- 15:58:13.399 INFO [32211]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:58:13.399 INFO [32211]: HTTP_COOKIE = _ga=GA1.2.1832774218.1582405020; _gid=GA1.2.207140213.1582405020; ci_session=dkav9meska5c611u2eh2ft0ig5sdvar4 -- 15:58:13.399 INFO [32211]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 15:58:13.399 INFO [32211]: HTTP_X_FORWARDED_FOR = 174.218.12.171 -- 15:58:13.410 INFO [32211]: COREGRADE is stopping... -- 15:58:13.410 DEBUG [32211]: Closing database connection -- 15:58:13.410 SQL [32211]: pgsql_close() -- 15:58:13.518 INFO [32302]: COREGRADE is starting... -- 15:58:13.518 INFO [32302]: Version from config: 1.0 -- 15:58:13.518 DEBUG [32302]: Connecting to database... -- 15:58:13.518 DEBUG [32302]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:13.518 SQL [32302]: pgsql_db_connect() -- 15:58:13.522 DEBUG [32302]: Database connection successful -- 15:58:13.522 INFO [32302]: _SERVER found -- 15:58:13.522 INFO [32302]: REMOTE_ADDR = 192.168.1.13 -- 15:58:13.522 INFO [32302]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:58:13.522 INFO [32302]: HTTP_COOKIE = _ga=GA1.2.1832774218.1582405020; _gid=GA1.2.207140213.1582405020; ci_session=dkav9meska5c611u2eh2ft0ig5sdvar4 -- 15:58:13.522 INFO [32302]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:58:13.522 INFO [32302]: HTTP_X_FORWARDED_FOR = 174.218.12.171 -- 15:58:13.534 INFO [32302]: COREGRADE is stopping... -- 15:58:13.534 DEBUG [32302]: Closing database connection -- 15:58:13.534 SQL [32302]: pgsql_close() -- 20:38:51.292 INFO [32299]: COREGRADE is starting... -- 20:38:51.292 INFO [32299]: Version from config: 1.0 -- 20:38:51.292 DEBUG [32299]: Connecting to database... -- 20:38:51.293 DEBUG [32299]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:38:51.293 SQL [32299]: pgsql_db_connect() -- 20:38:51.334 INFO [32299]: COREGRADE is starting... -- 20:38:51.335 INFO [32299]: Version from config: 1.0 -- 20:38:51.335 DEBUG [32299]: Connecting to database... -- 20:38:51.335 DEBUG [32299]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:38:51.335 SQL [32299]: pgsql_db_connect() -- 20:38:51.339 DEBUG [32299]: Database connection successful -- 20:38:51.339 INFO [32299]: _SERVER found -- 20:38:51.339 INFO [32299]: REMOTE_ADDR = 192.168.1.13 -- 20:38:51.339 INFO [32299]: SERVER_NAME = oameye.works.coregrade.com -- 20:38:51.339 INFO [32299]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171 -- 20:38:51.339 INFO [32299]: QUERY_STRING = -- 20:38:51.339 INFO [32299]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:38:51.339 INFO [32299]: SystemStatus()09-09-********~************ -- 20:38:51.339 INFO [32299]: long coregrade_api_main(CVars in, CVars &out) -- 20:38:51.339 INFO [32299]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 20:38:51.339 INFO [32299]: account calls -- 20:38:51.339 INFO [32299]: account_calls() -- 20:38:51.339 INFO [32299]: LoginCoreGradeAccount() -- 20:38:51.339 FLOG_MAX [32299]: REQ_STRING(username) -- 20:38:51.339 FLOG_MAX [32299]: REQ_STRING(password) -- 20:38:51.339 FLOG_MAX [32299]: REQ_STRING(sessionid) -- 20:38:51.339 FLOG_MAX [32299]: long load_db_record( CVars &rec, const char * query, ... ) -- 20:38:51.339 SQL [32299]: pgsql_query() -- 20:38:51.339 SQL [32299]: About to run query: -- 20:38:51.339 SQL [32299]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw') AND password= md5('tokslaw001') -- 20:38:51.343 SQL [32299]: Found rows: 0 -- 20:38:51.343 SQL [32299]: Found rows: 0 -- 20:38:51.343 INFO [32299]: long SessionCheck(long uid, const char *sessionid, int create ) -- 20:38:51.343 FLOG_MAX [32299]: long load_db_record( CVars &rec, const char * query, ... ) -- 20:38:51.343 SQL [32299]: pgsql_query() -- 20:38:51.343 SQL [32299]: About to run query: -- 20:38:51.343 SQL [32299]: SELECT upper(md5( now()::text )) AS folder -- 20:38:51.343 SQL [32299]: Found rows: 1 -- 20:38:51.343 FLOG_MAX [32299]: load_db_record(SELECT upper(md5( now()::text )) AS folder) num_cols=1 -- 20:38:51.343 FLOG_MAX [32299]: update_db_record() -- 20:38:51.343 FLOG_MAX [32299]: Bad parameter exception: 'id' -- 20:38:51.344 INFO [32299]: RET: folder=22CD0C9FCCBB04BB91B2944937CC9A64 -- 20:38:51.344 INFO [32299]: RET: member_id= -- 20:38:51.344 INFO [32299]: RET: result=YES I GET TO BACK END -- 20:38:51.344 INFO [32299]: RET: sessionid= -- 20:38:51.344 INFO [32299]: RET: status=Incorrect input parameter -- 20:38:51.345 INFO [32299]: COREGRADE is stopping... -- 20:38:51.345 DEBUG [32299]: Closing database connection -- 20:38:51.345 SQL [32299]: pgsql_close() -- 20:38:51.297 DEBUG [32299]: Database connection successful -- 20:38:51.297 INFO [32299]: _SERVER found -- 20:38:51.297 INFO [32299]: REMOTE_ADDR = 192.168.1.13 -- 20:38:51.297 INFO [32299]: SERVER_NAME = oameye.works.coregrade.com -- 20:38:51.297 INFO [32299]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171 -- 20:38:51.297 INFO [32299]: QUERY_STRING = /auth -- 20:38:51.297 INFO [32299]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:38:51.346 INFO [32299]: COREGRADE is stopping... -- 20:38:51.346 DEBUG [32299]: Closing database connection -- 20:38:51.346 SQL [32299]: pgsql_close() -- 20:38:51.662 INFO [32299]: COREGRADE is starting... -- 20:38:51.663 INFO [32299]: Version from config: 1.0 -- 20:38:51.663 DEBUG [32299]: Connecting to database... -- 20:38:51.663 DEBUG [32299]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:38:51.663 SQL [32299]: pgsql_db_connect() -- 20:38:51.667 DEBUG [32299]: Database connection successful -- 20:38:51.667 INFO [32299]: _SERVER found -- 20:38:51.667 INFO [32299]: REMOTE_ADDR = 192.168.1.13 -- 20:38:51.667 INFO [32299]: SERVER_NAME = oameye.works.coregrade.com -- 20:38:51.667 INFO [32299]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=t5ke05eafm5er2ko00al01340g47lvvm -- 20:38:51.667 INFO [32299]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 20:38:51.667 INFO [32299]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:38:51.678 INFO [32299]: COREGRADE is stopping... -- 20:38:51.678 DEBUG [32299]: Closing database connection -- 20:38:51.678 SQL [32299]: pgsql_close() -- 20:38:51.854 INFO [32299]: COREGRADE is starting... -- 20:38:51.854 INFO [32299]: Version from config: 1.0 -- 20:38:51.854 DEBUG [32299]: Connecting to database... -- 20:38:51.854 DEBUG [32299]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:38:51.854 SQL [32299]: pgsql_db_connect() -- 20:38:51.858 DEBUG [32299]: Database connection successful -- 20:38:51.858 INFO [32299]: _SERVER found -- 20:38:51.858 INFO [32299]: REMOTE_ADDR = 192.168.1.13 -- 20:38:51.858 INFO [32299]: SERVER_NAME = oameye.works.coregrade.com -- 20:38:51.858 INFO [32299]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=t5ke05eafm5er2ko00al01340g47lvvm -- 20:38:51.858 INFO [32299]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:38:51.858 INFO [32299]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:38:51.869 INFO [32299]: COREGRADE is stopping... -- 20:38:51.869 DEBUG [32299]: Closing database connection -- 20:38:51.869 SQL [32299]: pgsql_close() -- 23:05:47.356 INFO [32264]: COREGRADE is starting... -- 23:05:47.357 INFO [32264]: Version from config: 1.0 -- 23:05:47.357 DEBUG [32264]: Connecting to database... -- 23:05:47.357 DEBUG [32264]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:05:47.357 SQL [32264]: pgsql_db_connect() -- 23:05:47.361 DEBUG [32264]: Database connection successful -- 23:05:47.361 INFO [32264]: _SERVER found -- 23:05:47.361 INFO [32264]: REMOTE_ADDR = 192.168.1.13 -- 23:05:47.361 INFO [32264]: SERVER_NAME = oameye.works.coregrade.com -- 23:05:47.361 INFO [32264]: QUERY_STRING = /solr/admin/info/system -- 23:05:47.361 INFO [32264]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 23:05:47.375 INFO [32264]: COREGRADE is stopping... -- 23:05:47.375 DEBUG [32264]: Closing database connection -- 23:05:47.375 SQL [32264]: pgsql_close() -- 23:13:51.173 INFO [32265]: COREGRADE is starting... -- 23:13:51.173 INFO [32265]: Version from config: 1.0 -- 23:13:51.173 DEBUG [32265]: Connecting to database... -- 23:13:51.173 DEBUG [32265]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:13:51.173 SQL [32265]: pgsql_db_connect() -- 23:13:51.177 DEBUG [32265]: Database connection successful -- 23:13:51.177 INFO [32265]: _SERVER found -- 23:13:51.177 INFO [32265]: REMOTE_ADDR = 192.168.1.13 -- 23:13:51.177 INFO [32265]: SERVER_NAME = oameye.works.coregrade.com -- 23:13:51.177 INFO [32265]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 23:13:51.177 INFO [32265]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 23:13:51.214 INFO [32265]: COREGRADE is stopping... -- 23:13:51.214 DEBUG [32265]: Closing database connection -- 23:13:51.214 SQL [32265]: pgsql_close() -- 23:15:34.821 INFO [32213]: COREGRADE is starting... -- 23:15:34.821 INFO [32213]: Version from config: 1.0 -- 23:15:34.821 DEBUG [32213]: Connecting to database... -- 23:15:34.821 DEBUG [32213]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:15:34.821 SQL [32213]: pgsql_db_connect() -- 23:15:34.825 DEBUG [32213]: Database connection successful -- 23:15:34.825 INFO [32213]: _SERVER found -- 23:15:34.825 INFO [32213]: REMOTE_ADDR = 192.168.1.13 -- 23:15:34.825 INFO [32213]: SERVER_NAME = oameye.works.coregrade.com -- 23:15:34.825 INFO [32213]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 23:15:34.825 INFO [32213]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 23:15:34.863 INFO [32213]: COREGRADE is stopping... -- 23:15:34.864 DEBUG [32213]: Closing database connection -- 23:15:34.864 SQL [32213]: pgsql_close() -- 23:15:38.953 INFO [32213]: COREGRADE is starting... -- 23:15:38.953 INFO [32213]: Version from config: 1.0 -- 23:15:38.953 DEBUG [32213]: Connecting to database... -- 23:15:38.953 DEBUG [32213]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:15:38.953 SQL [32213]: pgsql_db_connect() -- 23:15:38.957 DEBUG [32213]: Database connection successful -- 23:15:38.957 INFO [32213]: _SERVER found -- 23:15:38.957 INFO [32213]: REMOTE_ADDR = 192.168.1.13 -- 23:15:38.957 INFO [32213]: SERVER_NAME = oameye.works.coregrade.com -- 23:15:38.957 INFO [32213]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 23:15:38.957 INFO [32213]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 23:15:38.993 INFO [32213]: COREGRADE is stopping... -- 23:15:38.993 DEBUG [32213]: Closing database connection -- 23:15:38.993 SQL [32213]: pgsql_close() -- 03:03:47.772 INFO [32209]: COREGRADE is starting... -- 03:03:47.773 INFO [32209]: Version from config: 1.0 -- 03:03:47.773 DEBUG [32209]: Connecting to database... -- 03:03:47.773 DEBUG [32209]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:03:47.773 SQL [32209]: pgsql_db_connect() -- 03:03:47.777 DEBUG [32209]: Database connection successful -- 03:03:47.777 INFO [32209]: _SERVER found -- 03:03:47.777 INFO [32209]: REMOTE_ADDR = 192.168.1.13 -- 03:03:47.777 INFO [32209]: SERVER_NAME = oameye.works.coregrade.com -- 03:03:47.777 INFO [32209]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 03:03:47.777 INFO [32209]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 03:03:47.792 INFO [32209]: COREGRADE is stopping... -- 03:03:47.792 DEBUG [32209]: Closing database connection -- 03:03:47.792 SQL [32209]: pgsql_close() -- 03:45:37.637 INFO [11546]: COREGRADE is starting... -- 03:45:37.638 INFO [11546]: Version from config: 1.0 -- 03:45:37.638 DEBUG [11546]: Connecting to database... -- 03:45:37.638 DEBUG [11546]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:45:37.638 SQL [11546]: pgsql_db_connect() -- 03:45:37.642 DEBUG [11546]: Database connection successful -- 03:45:37.642 INFO [11546]: _SERVER found -- 03:45:37.642 INFO [11546]: REMOTE_ADDR = 192.168.1.13 -- 03:45:37.642 INFO [11546]: SERVER_NAME = oameye.works.coregrade.com -- 03:45:37.642 INFO [11546]: QUERY_STRING = -- 03:45:37.642 INFO [11546]: HTTP_X_FORWARDED_FOR = 122.228.19.79 -- 03:45:37.686 INFO [11546]: COREGRADE is stopping... -- 03:45:37.686 DEBUG [11546]: Closing database connection -- 03:45:37.686 SQL [11546]: pgsql_close() -- 11:09:57.182 INFO [11547]: COREGRADE is starting... -- 11:09:57.183 INFO [11547]: Version from config: 1.0 -- 11:09:57.183 DEBUG [11547]: Connecting to database... -- 11:09:57.183 DEBUG [11547]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:57.183 SQL [11547]: pgsql_db_connect() -- 11:09:57.188 DEBUG [11547]: Database connection successful -- 11:09:57.188 INFO [11547]: _SERVER found -- 11:09:57.188 INFO [11547]: REMOTE_ADDR = 192.168.1.13 -- 11:09:57.188 INFO [11547]: SERVER_NAME = tokslaw.works.coregrade.com -- 11:09:57.188 INFO [11547]: QUERY_STRING = -- 11:09:57.188 INFO [11547]: HTTP_X_FORWARDED_FOR = 174.218.142.225 -- 11:09:57.240 INFO [11547]: COREGRADE is stopping... -- 11:09:57.240 DEBUG [11547]: Closing database connection -- 11:09:57.240 SQL [11547]: pgsql_close() -- 11:09:58.267 INFO [11547]: COREGRADE is starting... -- 11:09:58.267 INFO [11547]: Version from config: 1.0 -- 11:09:58.267 DEBUG [11547]: Connecting to database... -- 11:09:58.267 DEBUG [11547]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:58.267 SQL [11547]: pgsql_db_connect() -- 11:09:58.273 DEBUG [11547]: Database connection successful -- 11:09:58.273 INFO [11547]: _SERVER found -- 11:09:58.273 INFO [11547]: REMOTE_ADDR = 192.168.1.13 -- 11:09:58.273 INFO [11547]: SERVER_NAME = tokslaw.works.coregrade.com -- 11:09:58.273 INFO [11547]: HTTP_COOKIE = ci_session=0k2ceaij0jg1f17vijftibm1uhjocgsa -- 11:09:58.273 INFO [11547]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 11:09:58.273 INFO [11547]: HTTP_X_FORWARDED_FOR = 174.218.142.225 -- 11:09:58.284 INFO [11547]: COREGRADE is stopping... -- 11:09:58.284 DEBUG [11547]: Closing database connection -- 11:09:58.284 SQL [11547]: pgsql_close() -- 11:09:58.309 INFO [11547]: COREGRADE is starting... -- 11:09:58.309 INFO [11547]: Version from config: 1.0 -- 11:09:58.309 DEBUG [11547]: Connecting to database... -- 11:09:58.310 DEBUG [11547]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:58.310 SQL [11547]: pgsql_db_connect() -- 11:09:58.313 DEBUG [11547]: Database connection successful -- 11:09:58.313 INFO [11547]: _SERVER found -- 11:09:58.313 INFO [11547]: REMOTE_ADDR = 192.168.1.13 -- 11:09:58.313 INFO [11547]: SERVER_NAME = tokslaw.works.coregrade.com -- 11:09:58.313 INFO [11547]: HTTP_COOKIE = ci_session=0k2ceaij0jg1f17vijftibm1uhjocgsa -- 11:09:58.313 INFO [11547]: QUERY_STRING = /assets/img/footer_1.jpg -- 11:09:58.313 INFO [11547]: HTTP_X_FORWARDED_FOR = 174.218.142.225 -- 11:09:58.326 INFO [11547]: COREGRADE is stopping... -- 11:09:58.326 DEBUG [11547]: Closing database connection -- 11:09:58.326 SQL [11547]: pgsql_close() -- 18:44:00.569 INFO [11550]: COREGRADE is starting... -- 18:44:00.570 INFO [11550]: Version from config: 1.0 -- 18:44:00.570 DEBUG [11550]: Connecting to database... -- 18:44:00.570 DEBUG [11550]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:44:00.570 SQL [11550]: pgsql_db_connect() -- 18:44:00.576 DEBUG [11550]: Database connection successful -- 18:44:00.576 INFO [11550]: _SERVER found -- 18:44:00.576 INFO [11550]: REMOTE_ADDR = 192.168.1.13 -- 18:44:00.576 INFO [11550]: SERVER_NAME = oameye.works.coregrade.com -- 18:44:00.576 INFO [11550]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 18:44:00.576 INFO [11550]: QUERY_STRING = -- 18:44:00.576 INFO [11550]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:44:00.577 INFO [11550]: SystemStatus()09-09-********~************ -- 18:44:00.577 INFO [11550]: long coregrade_api_main(CVars in, CVars &out) -- 18:44:00.577 INFO [11550]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 18:44:00.577 INFO [11550]: account calls -- 18:44:00.577 INFO [11550]: account_calls() -- 18:44:00.577 FLOG_MAX [11550]: REQ_STRING(username) -- 18:44:00.577 FLOG_MAX [11550]: REQ_STRING(firstname) -- 18:44:00.577 FLOG_MAX [11550]: REQ_STRING(lastname) -- 18:44:00.577 FLOG_MAX [11550]: REQ_STRING(email) -- 18:44:00.577 SQL [11550]: pgsql_query() -- 18:44:00.577 SQL [11550]: About to run query: -- 18:44:00.577 SQL [11550]: SELECT * FROM members WHERE LOWER(username) = LOWER('ses66181+805@gmail.com') -- 18:44:00.580 SQL [11550]: Found rows: 0 -- 18:44:00.580 SQL [11550]: Found rows: 0 -- 18:44:00.580 FLOG_MAX [11550]: insert_db_record() -- 18:44:00.580 SQL [11550]: pgsql_exec() -- 18:44:00.580 SQL [11550]: About to run query: -- 18:44:00.580 SQL [11550]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ses66181+805@gmail.com','Olu','Amey','192.168.1.13','','ses66181+805@gmail.com','RS-1013155584-2038780160-323381504') -- 18:44:00.582 SQL [11550]: PQcmdTuples: 1 -- 18:44:00.582 SQL [11550]: Affected rows: 1 -- 18:44:00.582 FLOG_MAX [11550]: SELECT currval('members_pending_id_seq') -- 18:44:00.582 SQL [11550]: pgsql_query() -- 18:44:00.582 SQL [11550]: About to run query: -- 18:44:00.582 SQL [11550]: SELECT currval('members_pending_id_seq') -- 18:44:00.583 SQL [11550]: Found rows: 1 -- 18:44:00.583 SQL [11550]: pgsql_query() -- 18:44:00.583 SQL [11550]: About to run query: -- 18:44:00.583 SQL [11550]: UPDATE members_pending SET password = md5('12345678') WHERE id = 28 -- 18:44:00.584 SQL [11550]: Found rows: 0 -- 18:44:00.584 SQL [11550]: Found rows: 0 -- 18:44:00.584 FLOG_MAX [11550]: long load_db_record( CVars &rec, const char * query, ... ) -- 18:44:00.584 SQL [11550]: pgsql_query() -- 18:44:00.584 SQL [11550]: About to run query: -- 18:44:00.584 SQL [11550]: SELECT * FROM members_pending WHERE id = 28 -- 18:44:00.584 SQL [11550]: Found rows: 1 -- 18:44:00.584 FLOG_MAX [11550]: load_db_record(SELECT * FROM members_pending WHERE id = 28 ) num_cols=13 -- 18:44:00.584 FLOG_MAX [11550]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 18:44:00.585 FLOG_MAX [11550]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1454 bytes -- 18:44:00.585 FLOG_MAX [11550]: Returning from FormFile() -- 18:44:00.585 FLOG_MAX [11550]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 18:44:00.585 FLOG_MAX [11550]: ESMTP( 10.0.0.23, support@coregrade.com, ses66181+805@gmail.com ) -- 18:44:00.585 FLOG_MAX [11550]: Prepare body -- 18:44:00.585 FLOG_MAX [11550]: Locate & extract subject -- 18:44:00.585 FLOG_MAX [11550]: Found subject: CoreGrade - Pending Signup - Verify ses66181+805@gmail.com -- 18:44:00.585 FLOG_MAX [11550]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t ses66181+805@gmail.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'CoreGrade - Pending Signup - Verify ses66181+805@gmail.com' -M ' - - - -
-
- - - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to verify your email. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-1013155584-2038780160-323381504 -
-CoreGrade,your personalized learning in one place with tools to make it happen. CoreGrade makes it easy to track due dates of goals set, focus plans with e-alerts in your workspace and dashboard. - -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/home/contactus?vlnk=RS-1013155584-2038780160-323381504 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-
-
- -
- - - - - -' -- 18:44:00.738 FLOG_MAX [11550]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Pending Signup - Verify ses66181+805@gmail.com -From: CoreGrade Support -Date: Sun, 23 Feb 2020 18:44:00 -0500 -To: ses66181+805@gmail.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="ZyGD7CDkpIdfZOil" -Mime-version: 1.0 - - ---ZyGD7CDkpIdfZOil -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
- - - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to verify your email. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-1013155584-2038780160-323381504 -
-CoreGrade,your personalized learning in one place with tools to make it happen. CoreGrade makes it easy to track due dates of goals set, focus plans with e-alerts in your workspace and dashboard. - -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/home/contactus?vlnk=RS-1013155584-2038780160-323381504 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-
-
- -
- - - - - - - - ---ZyGD7CDkpIdfZOil-- - -[C] . -[S] 250 2.0.0 Ok: queued as AF4862113075 -[C] QUIT -[S] 221 2.0.0 Bye -¸U -- 18:44:00.738 FLOG_MAX [11550]: - -END OF PIPE OUTPUT - - -- 18:44:00.738 FLOG_MAX [11550]: /ESMTP() -- 18:44:00.738 INFO [11550]: RET: action=11010 -- 18:44:00.738 INFO [11550]: RET: email=ses66181+805@gmail.com -- 18:44:00.738 INFO [11550]: RET: firstname=Olu -- 18:44:00.738 INFO [11550]: RET: lastname=Amey -- 18:44:00.738 INFO [11550]: RET: password=12345678 -- 18:44:00.738 INFO [11550]: RET: pending_id=28 -- 18:44:00.738 INFO [11550]: RET: status_message=Pending -- 18:44:00.738 INFO [11550]: RET: username=ses66181+805@gmail.com -- 18:44:00.738 INFO [11550]: COREGRADE is stopping... -- 18:44:00.738 DEBUG [11550]: Closing database connection -- 18:44:00.738 SQL [11550]: pgsql_close() -- 18:44:00.790 INFO [11550]: COREGRADE is starting... -- 18:44:00.790 INFO [11550]: Version from config: 1.0 -- 18:44:00.790 DEBUG [11550]: Connecting to database... -- 18:44:00.790 DEBUG [11550]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:44:00.790 SQL [11550]: pgsql_db_connect() -- 18:44:00.794 DEBUG [11550]: Database connection successful -- 18:44:00.794 INFO [11550]: _SERVER found -- 18:44:00.794 INFO [11550]: REMOTE_ADDR = 192.168.1.13 -- 18:44:00.794 INFO [11550]: SERVER_NAME = oameye.works.coregrade.com -- 18:44:00.794 INFO [11550]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 18:44:00.794 INFO [11550]: QUERY_STRING = /favicon.ico -- 18:44:00.794 INFO [11550]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:44:00.811 INFO [11550]: COREGRADE is stopping... -- 18:44:00.811 DEBUG [11550]: Closing database connection -- 18:44:00.811 SQL [11550]: pgsql_close() -- 05:05:17.878 INFO [11575]: COREGRADE is starting... -- 05:05:17.878 INFO [11575]: Version from config: 1.0 -- 05:05:17.878 DEBUG [11575]: Connecting to database... -- 05:05:17.878 DEBUG [11575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:05:17.878 SQL [11575]: pgsql_db_connect() -- 05:05:17.884 DEBUG [11575]: Database connection successful -- 05:05:17.884 INFO [11575]: _SERVER found -- 05:05:17.884 INFO [11575]: REMOTE_ADDR = 192.168.1.13 -- 05:05:17.884 INFO [11575]: SERVER_NAME = oameye.works.coregrade.com -- 05:05:17.884 INFO [11575]: QUERY_STRING = /TP/public/index.php -- 05:05:17.884 INFO [11575]: HTTP_X_FORWARDED_FOR = 49.235.153.158 -- 05:05:17.903 INFO [11575]: COREGRADE is stopping... -- 05:05:17.903 DEBUG [11575]: Closing database connection -- 05:05:17.903 SQL [11575]: pgsql_close() -- 05:05:20.262 INFO [11575]: COREGRADE is starting... -- 05:05:20.263 INFO [11575]: Version from config: 1.0 -- 05:05:20.263 DEBUG [11575]: Connecting to database... -- 05:05:20.263 DEBUG [11575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:05:20.263 SQL [11575]: pgsql_db_connect() -- 05:05:20.267 DEBUG [11575]: Database connection successful -- 05:05:20.267 INFO [11575]: _SERVER found -- 05:05:20.267 INFO [11575]: REMOTE_ADDR = 192.168.1.13 -- 05:05:20.267 INFO [11575]: SERVER_NAME = oameye.works.coregrade.com -- 05:05:20.267 INFO [11575]: QUERY_STRING = /TP/index.php -- 05:05:20.267 INFO [11575]: HTTP_X_FORWARDED_FOR = 49.235.153.158 -- 05:05:20.279 INFO [11575]: COREGRADE is stopping... -- 05:05:20.279 DEBUG [11575]: Closing database connection -- 05:05:20.279 SQL [11575]: pgsql_close() -- 05:05:23.249 INFO [11546]: COREGRADE is starting... -- 05:05:23.249 INFO [11546]: Version from config: 1.0 -- 05:05:23.249 DEBUG [11546]: Connecting to database... -- 05:05:23.249 DEBUG [11546]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:05:23.249 SQL [11546]: pgsql_db_connect() -- 05:05:23.254 DEBUG [11546]: Database connection successful -- 05:05:23.254 INFO [11546]: _SERVER found -- 05:05:23.254 INFO [11546]: REMOTE_ADDR = 192.168.1.13 -- 05:05:23.254 INFO [11546]: SERVER_NAME = oameye.works.coregrade.com -- 05:05:23.254 INFO [11546]: QUERY_STRING = /thinkphp/html/public/index.php -- 05:05:23.254 INFO [11546]: HTTP_X_FORWARDED_FOR = 49.235.153.158 -- 05:05:23.268 INFO [11546]: COREGRADE is stopping... -- 05:05:23.268 DEBUG [11546]: Closing database connection -- 05:05:23.268 SQL [11546]: pgsql_close() -- 05:05:24.752 INFO [11575]: COREGRADE is starting... -- 05:05:24.752 INFO [11575]: Version from config: 1.0 -- 05:05:24.752 DEBUG [11575]: Connecting to database... -- 05:05:24.752 DEBUG [11575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:05:24.752 SQL [11575]: pgsql_db_connect() -- 05:05:24.757 DEBUG [11575]: Database connection successful -- 05:05:24.757 INFO [11575]: _SERVER found -- 05:05:24.757 INFO [11575]: REMOTE_ADDR = 192.168.1.13 -- 05:05:24.757 INFO [11575]: SERVER_NAME = oameye.works.coregrade.com -- 05:05:24.757 INFO [11575]: QUERY_STRING = /html/public/index.php -- 05:05:24.757 INFO [11575]: HTTP_X_FORWARDED_FOR = 49.235.153.158 -- 05:05:24.768 INFO [11575]: COREGRADE is stopping... -- 05:05:24.768 DEBUG [11575]: Closing database connection -- 05:05:24.768 SQL [11575]: pgsql_close() -- 05:05:26.127 INFO [13451]: COREGRADE is starting... -- 05:05:26.128 INFO [13451]: Version from config: 1.0 -- 05:05:26.128 DEBUG [13451]: Connecting to database... -- 05:05:26.128 DEBUG [13451]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:05:26.128 SQL [13451]: pgsql_db_connect() -- 05:05:26.133 DEBUG [13451]: Database connection successful -- 05:05:26.133 INFO [13451]: _SERVER found -- 05:05:26.133 INFO [13451]: REMOTE_ADDR = 192.168.1.13 -- 05:05:26.133 INFO [13451]: SERVER_NAME = oameye.works.coregrade.com -- 05:05:26.133 INFO [13451]: QUERY_STRING = /public/index.php -- 05:05:26.133 INFO [13451]: HTTP_X_FORWARDED_FOR = 49.235.153.158 -- 05:05:26.150 INFO [13451]: COREGRADE is stopping... -- 05:05:26.150 DEBUG [13451]: Closing database connection -- 05:05:26.150 SQL [13451]: pgsql_close() -- 05:05:27.734 INFO [11546]: COREGRADE is starting... -- 05:05:27.734 INFO [11546]: Version from config: 1.0 -- 05:05:27.734 DEBUG [11546]: Connecting to database... -- 05:05:27.734 DEBUG [11546]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:05:27.734 SQL [11546]: pgsql_db_connect() -- 05:05:27.739 DEBUG [11546]: Database connection successful -- 05:05:27.739 INFO [11546]: _SERVER found -- 05:05:27.739 INFO [11546]: REMOTE_ADDR = 192.168.1.13 -- 05:05:27.739 INFO [11546]: SERVER_NAME = oameye.works.coregrade.com -- 05:05:27.739 INFO [11546]: QUERY_STRING = /TP/html/public/index.php -- 05:05:27.739 INFO [11546]: HTTP_X_FORWARDED_FOR = 49.235.153.158 -- 05:05:27.750 INFO [11546]: COREGRADE is stopping... -- 05:05:27.750 DEBUG [11546]: Closing database connection -- 05:05:27.750 SQL [11546]: pgsql_close() -- 05:05:30.320 INFO [13455]: COREGRADE is starting... -- 05:05:30.320 INFO [13455]: Version from config: 1.0 -- 05:05:30.320 DEBUG [13455]: Connecting to database... -- 05:05:30.320 DEBUG [13455]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:05:30.320 SQL [13455]: pgsql_db_connect() -- 05:05:30.325 DEBUG [13455]: Database connection successful -- 05:05:30.325 INFO [13455]: _SERVER found -- 05:05:30.325 INFO [13455]: REMOTE_ADDR = 192.168.1.13 -- 05:05:30.325 INFO [13455]: SERVER_NAME = oameye.works.coregrade.com -- 05:05:30.325 INFO [13455]: QUERY_STRING = /elrekt.php -- 05:05:30.325 INFO [13455]: HTTP_X_FORWARDED_FOR = 49.235.153.158 -- 05:05:30.340 INFO [13455]: COREGRADE is stopping... -- 05:05:30.340 DEBUG [13455]: Closing database connection -- 05:05:30.340 SQL [13455]: pgsql_close() -- 05:05:32.152 INFO [13455]: COREGRADE is starting... -- 05:05:32.152 INFO [13455]: Version from config: 1.0 -- 05:05:32.152 DEBUG [13455]: Connecting to database... -- 05:05:32.152 DEBUG [13455]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:05:32.152 SQL [13455]: pgsql_db_connect() -- 05:05:32.157 DEBUG [13455]: Database connection successful -- 05:05:32.157 INFO [13455]: _SERVER found -- 05:05:32.157 INFO [13455]: REMOTE_ADDR = 192.168.1.13 -- 05:05:32.157 INFO [13455]: SERVER_NAME = oameye.works.coregrade.com -- 05:05:32.157 INFO [13455]: QUERY_STRING = -- 05:05:32.157 INFO [13455]: HTTP_X_FORWARDED_FOR = 49.235.153.158 -- 05:05:32.203 INFO [13455]: COREGRADE is stopping... -- 05:05:32.203 DEBUG [13455]: Closing database connection -- 05:05:32.203 SQL [13455]: pgsql_close() -- 05:05:34.380 INFO [11548]: COREGRADE is starting... -- 05:05:34.380 INFO [11548]: Version from config: 1.0 -- 05:05:34.380 DEBUG [11548]: Connecting to database... -- 05:05:34.380 DEBUG [11548]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:05:34.380 SQL [11548]: pgsql_db_connect() -- 05:05:34.385 DEBUG [11548]: Database connection successful -- 05:05:34.385 INFO [11548]: _SERVER found -- 05:05:34.385 INFO [11548]: REMOTE_ADDR = 192.168.1.13 -- 05:05:34.385 INFO [11548]: SERVER_NAME = oameye.works.coregrade.com -- 05:05:34.385 INFO [11548]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 05:05:34.385 INFO [11548]: HTTP_X_FORWARDED_FOR = 49.235.153.158 -- 05:05:34.430 INFO [11548]: COREGRADE is stopping... -- 05:05:34.430 DEBUG [11548]: Closing database connection -- 05:05:34.430 SQL [11548]: pgsql_close() -- 05:05:37.450 INFO [11549]: COREGRADE is starting... -- 05:05:37.450 INFO [11549]: Version from config: 1.0 -- 05:05:37.450 DEBUG [11549]: Connecting to database... -- 05:05:37.450 DEBUG [11549]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:05:37.450 SQL [11549]: pgsql_db_connect() -- 05:05:37.455 DEBUG [11549]: Database connection successful -- 05:05:37.455 INFO [11549]: _SERVER found -- 05:05:37.455 INFO [11549]: REMOTE_ADDR = 192.168.1.13 -- 05:05:37.455 INFO [11549]: SERVER_NAME = oameye.works.coregrade.com -- 05:05:37.455 INFO [11549]: QUERY_STRING = s=captcha -- 05:05:37.455 INFO [11549]: HTTP_X_FORWARDED_FOR = 49.235.153.158 -- 05:05:37.500 INFO [11549]: COREGRADE is stopping... -- 05:05:37.500 DEBUG [11549]: Closing database connection -- 05:05:37.500 SQL [11549]: pgsql_close() -- 05:05:40.469 INFO [11549]: COREGRADE is starting... -- 05:05:40.469 INFO [11549]: Version from config: 1.0 -- 05:05:40.469 DEBUG [11549]: Connecting to database... -- 05:05:40.469 DEBUG [11549]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:05:40.469 SQL [11549]: pgsql_db_connect() -- 05:05:40.474 DEBUG [11549]: Database connection successful -- 05:05:40.474 INFO [11549]: _SERVER found -- 05:05:40.474 INFO [11549]: REMOTE_ADDR = 192.168.1.13 -- 05:05:40.474 INFO [11549]: SERVER_NAME = oameye.works.coregrade.com -- 05:05:40.474 INFO [11549]: QUERY_STRING = -- 05:05:40.474 INFO [11549]: HTTP_X_FORWARDED_FOR = 49.235.153.158 -- 05:05:40.506 INFO [11549]: COREGRADE is stopping... -- 05:05:40.506 DEBUG [11549]: Closing database connection -- 05:05:40.506 SQL [11549]: pgsql_close() -- 05:15:03.586 INFO [11547]: COREGRADE is starting... -- 05:15:03.587 INFO [11547]: Version from config: 1.0 -- 05:15:03.587 DEBUG [11547]: Connecting to database... -- 05:15:03.587 DEBUG [11547]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:15:03.587 SQL [11547]: pgsql_db_connect() -- 05:15:03.591 DEBUG [11547]: Database connection successful -- 05:15:03.591 INFO [11547]: _SERVER found -- 05:15:03.591 INFO [11547]: REMOTE_ADDR = 192.168.1.13 -- 05:15:03.591 INFO [11547]: SERVER_NAME = oameye.works.coregrade.com -- 05:15:03.591 INFO [11547]: QUERY_STRING = /solr/admin/info/system -- 05:15:03.591 INFO [11547]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 05:15:03.605 INFO [11547]: COREGRADE is stopping... -- 05:15:03.605 DEBUG [11547]: Closing database connection -- 05:15:03.605 SQL [11547]: pgsql_close() -- 05:25:31.360 INFO [11550]: COREGRADE is starting... -- 05:25:31.360 INFO [11550]: Version from config: 1.0 -- 05:25:31.360 DEBUG [11550]: Connecting to database... -- 05:25:31.360 DEBUG [11550]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:25:31.360 SQL [11550]: pgsql_db_connect() -- 05:25:31.365 DEBUG [11550]: Database connection successful -- 05:25:31.365 INFO [11550]: _SERVER found -- 05:25:31.365 INFO [11550]: REMOTE_ADDR = 192.168.1.13 -- 05:25:31.365 INFO [11550]: SERVER_NAME = oameye.works.coregrade.com -- 05:25:31.365 INFO [11550]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 05:25:31.365 INFO [11550]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 05:25:31.411 INFO [11550]: COREGRADE is stopping... -- 05:25:31.411 DEBUG [11550]: Closing database connection -- 05:25:31.411 SQL [11550]: pgsql_close() -- 05:25:32.628 INFO [11575]: COREGRADE is starting... -- 05:25:32.628 INFO [11575]: Version from config: 1.0 -- 05:25:32.628 DEBUG [11575]: Connecting to database... -- 05:25:32.629 DEBUG [11575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:25:32.629 SQL [11575]: pgsql_db_connect() -- 05:25:32.633 DEBUG [11575]: Database connection successful -- 05:25:32.633 INFO [11575]: _SERVER found -- 05:25:32.633 INFO [11575]: REMOTE_ADDR = 192.168.1.13 -- 05:25:32.633 INFO [11575]: SERVER_NAME = oameye.works.coregrade.com -- 05:25:32.633 INFO [11575]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 05:25:32.633 INFO [11575]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 05:25:32.673 INFO [11575]: COREGRADE is stopping... -- 05:25:32.673 DEBUG [11575]: Closing database connection -- 05:25:32.673 SQL [11575]: pgsql_close() -- 05:31:21.567 INFO [13451]: COREGRADE is starting... -- 05:31:21.568 INFO [13451]: Version from config: 1.0 -- 05:31:21.568 DEBUG [13451]: Connecting to database... -- 05:31:21.568 DEBUG [13451]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:31:21.568 SQL [13451]: pgsql_db_connect() -- 05:31:21.572 DEBUG [13451]: Database connection successful -- 05:31:21.572 INFO [13451]: _SERVER found -- 05:31:21.572 INFO [13451]: REMOTE_ADDR = 192.168.1.13 -- 05:31:21.572 INFO [13451]: SERVER_NAME = oameye.works.coregrade.com -- 05:31:21.572 INFO [13451]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 05:31:21.572 INFO [13451]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 05:31:21.614 INFO [13451]: COREGRADE is stopping... -- 05:31:21.614 DEBUG [13451]: Closing database connection -- 05:31:21.614 SQL [13451]: pgsql_close() -- 06:13:43.593 INFO [11546]: COREGRADE is starting... -- 06:13:43.593 INFO [11546]: Version from config: 1.0 -- 06:13:43.594 DEBUG [11546]: Connecting to database... -- 06:13:43.594 DEBUG [11546]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:13:43.594 SQL [11546]: pgsql_db_connect() -- 06:13:43.598 DEBUG [11546]: Database connection successful -- 06:13:43.598 INFO [11546]: _SERVER found -- 06:13:43.598 INFO [11546]: REMOTE_ADDR = 192.168.1.13 -- 06:13:43.598 INFO [11546]: SERVER_NAME = oameye.works.coregrade.com -- 06:13:43.598 INFO [11546]: QUERY_STRING = -- 06:13:43.598 INFO [11546]: HTTP_X_FORWARDED_FOR = 128.14.133.58 -- 06:13:43.637 INFO [11546]: COREGRADE is stopping... -- 06:13:43.637 DEBUG [11546]: Closing database connection -- 06:13:43.637 SQL [11546]: pgsql_close() -- 08:27:53.298 INFO [13455]: COREGRADE is starting... -- 08:27:53.298 INFO [13455]: Version from config: 1.0 -- 08:27:53.298 DEBUG [13455]: Connecting to database... -- 08:27:53.299 DEBUG [13455]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:27:53.299 SQL [13455]: pgsql_db_connect() -- 08:27:53.303 DEBUG [13455]: Database connection successful -- 08:27:53.303 INFO [13455]: _SERVER found -- 08:27:53.303 INFO [13455]: REMOTE_ADDR = 192.168.1.13 -- 08:27:53.303 INFO [13455]: SERVER_NAME = oameye.works.coregrade.com -- 08:27:53.303 INFO [13455]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586 -- 08:27:53.303 INFO [13455]: QUERY_STRING = /auth -- 08:27:53.303 INFO [13455]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:27:53.342 INFO [13455]: COREGRADE is stopping... -- 08:27:53.342 DEBUG [13455]: Closing database connection -- 08:27:53.342 SQL [13455]: pgsql_close() -- 08:27:54.219 INFO [11547]: COREGRADE is starting... -- 08:27:54.219 INFO [11547]: Version from config: 1.0 -- 08:27:54.219 DEBUG [11547]: Connecting to database... -- 08:27:54.219 DEBUG [11547]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:27:54.219 SQL [11547]: pgsql_db_connect() -- 08:27:54.223 DEBUG [11547]: Database connection successful -- 08:27:54.223 INFO [11547]: _SERVER found -- 08:27:54.223 INFO [11547]: REMOTE_ADDR = 192.168.1.13 -- 08:27:54.223 INFO [11547]: SERVER_NAME = oameye.works.coregrade.com -- 08:27:54.223 INFO [11547]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=6rp5fqit9fnci736e0dtq9i01j39q74d -- 08:27:54.223 INFO [11547]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 08:27:54.223 INFO [11547]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:27:54.237 INFO [11547]: COREGRADE is stopping... -- 08:27:54.237 DEBUG [11547]: Closing database connection -- 08:27:54.237 SQL [11547]: pgsql_close() -- 08:27:54.361 INFO [11547]: COREGRADE is starting... -- 08:27:54.361 INFO [11547]: Version from config: 1.0 -- 08:27:54.361 DEBUG [11547]: Connecting to database... -- 08:27:54.362 DEBUG [11547]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:27:54.362 SQL [11547]: pgsql_db_connect() -- 08:27:54.366 DEBUG [11547]: Database connection successful -- 08:27:54.366 INFO [11547]: _SERVER found -- 08:27:54.366 INFO [11547]: REMOTE_ADDR = 192.168.1.13 -- 08:27:54.366 INFO [11547]: SERVER_NAME = oameye.works.coregrade.com -- 08:27:54.366 INFO [11547]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=6rp5fqit9fnci736e0dtq9i01j39q74d -- 08:27:54.366 INFO [11547]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:27:54.366 INFO [11547]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:27:54.377 INFO [11547]: COREGRADE is stopping... -- 08:27:54.377 DEBUG [11547]: Closing database connection -- 08:27:54.377 SQL [11547]: pgsql_close() -- 08:39:36.628 INFO [11550]: COREGRADE is starting... -- 08:39:36.628 INFO [11550]: Version from config: 1.0 -- 08:39:36.628 DEBUG [11550]: Connecting to database... -- 08:39:36.628 DEBUG [11550]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:39:36.628 SQL [11550]: pgsql_db_connect() -- 08:39:36.633 DEBUG [11550]: Database connection successful -- 08:39:36.633 INFO [11550]: _SERVER found -- 08:39:36.633 INFO [11550]: REMOTE_ADDR = 192.168.1.13 -- 08:39:36.633 INFO [11550]: SERVER_NAME = oameye.works.coregrade.com -- 08:39:36.633 INFO [11550]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494 -- 08:39:36.633 INFO [11550]: QUERY_STRING = /auth/newuser -- 08:39:36.633 INFO [11550]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:39:36.672 INFO [11550]: COREGRADE is stopping... -- 08:39:36.672 DEBUG [11550]: Closing database connection -- 08:39:36.672 SQL [11550]: pgsql_close() -- 08:39:37.190 INFO [11550]: COREGRADE is starting... -- 08:39:37.190 INFO [11550]: Version from config: 1.0 -- 08:39:37.190 DEBUG [11550]: Connecting to database... -- 08:39:37.190 DEBUG [11550]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:39:37.190 SQL [11550]: pgsql_db_connect() -- 08:39:37.194 DEBUG [11550]: Database connection successful -- 08:39:37.194 INFO [11550]: _SERVER found -- 08:39:37.194 INFO [11550]: REMOTE_ADDR = 192.168.1.13 -- 08:39:37.194 INFO [11550]: SERVER_NAME = oameye.works.coregrade.com -- 08:39:37.194 INFO [11550]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=98t4gfakug6uqmnfnanlk4a1caalkn4r -- 08:39:37.194 INFO [11550]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 08:39:37.194 INFO [11550]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:39:37.205 INFO [11550]: COREGRADE is stopping... -- 08:39:37.205 DEBUG [11550]: Closing database connection -- 08:39:37.205 SQL [11550]: pgsql_close() -- 08:39:37.255 INFO [11550]: COREGRADE is starting... -- 08:39:37.255 INFO [11550]: Version from config: 1.0 -- 08:39:37.255 DEBUG [11550]: Connecting to database... -- 08:39:37.255 DEBUG [11550]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:39:37.255 SQL [11550]: pgsql_db_connect() -- 08:39:37.259 DEBUG [11550]: Database connection successful -- 08:39:37.259 INFO [11550]: _SERVER found -- 08:39:37.259 INFO [11550]: REMOTE_ADDR = 192.168.1.13 -- 08:39:37.259 INFO [11550]: SERVER_NAME = oameye.works.coregrade.com -- 08:39:37.259 INFO [11550]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=98t4gfakug6uqmnfnanlk4a1caalkn4r -- 08:39:37.259 INFO [11550]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:39:37.259 INFO [11550]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:39:37.270 INFO [11550]: COREGRADE is stopping... -- 08:39:37.270 DEBUG [11550]: Closing database connection -- 08:39:37.270 SQL [11550]: pgsql_close() -- 09:31:19.933 INFO [11546]: COREGRADE is starting... -- 09:31:19.934 INFO [11546]: Version from config: 1.0 -- 09:31:19.934 DEBUG [11546]: Connecting to database... -- 09:31:19.934 DEBUG [11546]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:31:19.934 SQL [11546]: pgsql_db_connect() -- 09:31:19.938 DEBUG [11546]: Database connection successful -- 09:31:19.938 INFO [11546]: _SERVER found -- 09:31:19.938 INFO [11546]: REMOTE_ADDR = 192.168.1.13 -- 09:31:19.938 INFO [11546]: SERVER_NAME = oameye.works.coregrade.com -- 09:31:19.938 INFO [11546]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965 -- 09:31:19.938 INFO [11546]: QUERY_STRING = -- 09:31:19.938 INFO [11546]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:31:19.977 INFO [11546]: COREGRADE is stopping... -- 09:31:19.977 DEBUG [11546]: Closing database connection -- 09:31:19.977 SQL [11546]: pgsql_close() -- 09:31:20.387 INFO [11548]: COREGRADE is starting... -- 09:31:20.387 INFO [11548]: Version from config: 1.0 -- 09:31:20.387 DEBUG [11548]: Connecting to database... -- 09:31:20.387 DEBUG [11548]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:31:20.387 SQL [11548]: pgsql_db_connect() -- 09:31:20.389 INFO [18754]: COREGRADE is starting... -- 09:31:20.390 INFO [18754]: Version from config: 1.0 -- 09:31:20.390 DEBUG [18754]: Connecting to database... -- 09:31:20.390 DEBUG [18754]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:31:20.390 SQL [18754]: pgsql_db_connect() -- 09:31:20.392 DEBUG [11548]: Database connection successful -- 09:31:20.392 INFO [11548]: _SERVER found -- 09:31:20.392 INFO [11548]: REMOTE_ADDR = 192.168.1.13 -- 09:31:20.392 INFO [11548]: SERVER_NAME = oameye.works.coregrade.com -- 09:31:20.392 INFO [11548]: HTTP_COOKIE = ci_session=c1ghjja72qr8j209nfervt1i1l3pp53o; _ga=GA1.2.38091328.1580686965 -- 09:31:20.392 INFO [11548]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:31:20.392 INFO [11548]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:31:20.405 INFO [11548]: COREGRADE is stopping... -- 09:31:20.405 DEBUG [11548]: Closing database connection -- 09:31:20.405 SQL [11548]: pgsql_close() -- 09:31:20.394 DEBUG [18754]: Database connection successful -- 09:31:20.394 INFO [18754]: _SERVER found -- 09:31:20.394 INFO [18754]: REMOTE_ADDR = 192.168.1.13 -- 09:31:20.394 INFO [18754]: SERVER_NAME = oameye.works.coregrade.com -- 09:31:20.394 INFO [18754]: HTTP_COOKIE = ci_session=c1ghjja72qr8j209nfervt1i1l3pp53o; _ga=GA1.2.38091328.1580686965 -- 09:31:20.394 INFO [18754]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:31:20.394 INFO [18754]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:31:20.408 INFO [18754]: COREGRADE is stopping... -- 09:31:20.408 DEBUG [18754]: Closing database connection -- 09:31:20.408 SQL [18754]: pgsql_close() -- 11:34:36.136 INFO [13455]: COREGRADE is starting... -- 11:34:36.137 INFO [13455]: Version from config: 1.0 -- 11:34:36.137 DEBUG [13455]: Connecting to database... -- 11:34:36.137 DEBUG [13455]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:34:36.137 SQL [13455]: pgsql_db_connect() -- 11:34:36.141 DEBUG [13455]: Database connection successful -- 11:34:36.141 INFO [13455]: _SERVER found -- 11:34:36.141 INFO [13455]: REMOTE_ADDR = 192.168.1.13 -- 11:34:36.141 INFO [13455]: SERVER_NAME = oameye.works.coregrade.com -- 11:34:36.141 INFO [13455]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586 -- 11:34:36.141 INFO [13455]: QUERY_STRING = /auth -- 11:34:36.141 INFO [13455]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:34:36.179 INFO [13455]: COREGRADE is stopping... -- 11:34:36.179 DEBUG [13455]: Closing database connection -- 11:34:36.179 SQL [13455]: pgsql_close() -- 11:34:36.613 INFO [13455]: COREGRADE is starting... -- 11:34:36.613 INFO [13455]: Version from config: 1.0 -- 11:34:36.613 DEBUG [13455]: Connecting to database... -- 11:34:36.613 DEBUG [13455]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:34:36.613 SQL [13455]: pgsql_db_connect() -- 11:34:36.617 DEBUG [13455]: Database connection successful -- 11:34:36.617 INFO [13455]: _SERVER found -- 11:34:36.617 INFO [13455]: REMOTE_ADDR = 192.168.1.13 -- 11:34:36.617 INFO [13455]: SERVER_NAME = oameye.works.coregrade.com -- 11:34:36.617 INFO [13455]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=basbclehdpq0mr1eiilbaotvaopd1n1l -- 11:34:36.617 INFO [13455]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:34:36.617 INFO [13455]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:34:36.628 INFO [13455]: COREGRADE is stopping... -- 11:34:36.628 DEBUG [13455]: Closing database connection -- 11:34:36.628 SQL [13455]: pgsql_close() -- 11:34:36.701 INFO [13455]: COREGRADE is starting... -- 11:34:36.701 INFO [13455]: Version from config: 1.0 -- 11:34:36.701 DEBUG [13455]: Connecting to database... -- 11:34:36.701 DEBUG [13455]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:34:36.701 SQL [13455]: pgsql_db_connect() -- 11:34:36.705 DEBUG [13455]: Database connection successful -- 11:34:36.705 INFO [13455]: _SERVER found -- 11:34:36.705 INFO [13455]: REMOTE_ADDR = 192.168.1.13 -- 11:34:36.705 INFO [13455]: SERVER_NAME = oameye.works.coregrade.com -- 11:34:36.705 INFO [13455]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=basbclehdpq0mr1eiilbaotvaopd1n1l -- 11:34:36.705 INFO [13455]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 11:34:36.705 INFO [13455]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:34:36.716 INFO [13455]: COREGRADE is stopping... -- 11:34:36.716 DEBUG [13455]: Closing database connection -- 11:34:36.716 SQL [13455]: pgsql_close() -- 11:34:36.745 INFO [13455]: COREGRADE is starting... -- 11:34:36.745 INFO [13455]: Version from config: 1.0 -- 11:34:36.745 DEBUG [13455]: Connecting to database... -- 11:34:36.745 DEBUG [13455]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:34:36.745 SQL [13455]: pgsql_db_connect() -- 11:34:36.749 DEBUG [13455]: Database connection successful -- 11:34:36.749 INFO [13455]: _SERVER found -- 11:34:36.749 INFO [13455]: REMOTE_ADDR = 192.168.1.13 -- 11:34:36.749 INFO [13455]: SERVER_NAME = oameye.works.coregrade.com -- 11:34:36.749 INFO [13455]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=basbclehdpq0mr1eiilbaotvaopd1n1l -- 11:34:36.749 INFO [13455]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:34:36.749 INFO [13455]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:34:36.760 INFO [13455]: COREGRADE is stopping... -- 11:34:36.760 DEBUG [13455]: Closing database connection -- 11:34:36.760 SQL [13455]: pgsql_close() -- 11:34:40.949 INFO [13455]: COREGRADE is starting... -- 11:34:40.949 INFO [13455]: Version from config: 1.0 -- 11:34:40.949 DEBUG [13455]: Connecting to database... -- 11:34:40.949 DEBUG [13455]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:34:40.949 SQL [13455]: pgsql_db_connect() -- 11:34:40.986 INFO [13455]: COREGRADE is starting... -- 11:34:40.987 INFO [13455]: Version from config: 1.0 -- 11:34:40.987 DEBUG [13455]: Connecting to database... -- 11:34:40.987 DEBUG [13455]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:34:40.987 SQL [13455]: pgsql_db_connect() -- 11:34:40.991 DEBUG [13455]: Database connection successful -- 11:34:40.991 INFO [13455]: _SERVER found -- 11:34:40.991 INFO [13455]: REMOTE_ADDR = 192.168.1.13 -- 11:34:40.991 INFO [13455]: SERVER_NAME = oameye.works.coregrade.com -- 11:34:40.991 INFO [13455]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=basbclehdpq0mr1eiilbaotvaopd1n1l -- 11:34:40.991 INFO [13455]: QUERY_STRING = -- 11:34:40.991 INFO [13455]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:34:40.991 INFO [13455]: SystemStatus()09-09-********~************ -- 11:34:40.991 INFO [13455]: long coregrade_api_main(CVars in, CVars &out) -- 11:34:40.991 INFO [13455]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 11:34:40.991 INFO [13455]: account calls -- 11:34:40.991 INFO [13455]: account_calls() -- 11:34:40.991 INFO [13455]: LoginCoreGradeAccount() -- 11:34:40.991 FLOG_MAX [13455]: REQ_STRING(username) -- 11:34:40.991 FLOG_MAX [13455]: REQ_STRING(password) -- 11:34:40.991 FLOG_MAX [13455]: REQ_STRING(sessionid) -- 11:34:40.991 FLOG_MAX [13455]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:34:40.991 SQL [13455]: pgsql_query() -- 11:34:40.991 SQL [13455]: About to run query: -- 11:34:40.991 SQL [13455]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 11:34:40.995 SQL [13455]: Found rows: 1 -- 11:34:40.995 FLOG_MAX [13455]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=16 -- 11:34:40.995 INFO [13455]: long SessionCheck(long uid, const char *sessionid, int create ) -- 11:34:40.995 SQL [13455]: pgsql_exec() -- 11:34:40.995 SQL [13455]: About to run query: -- 11:34:40.995 SQL [13455]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 11:34:40.996 SQL [13455]: PQcmdTuples: 1 -- 11:34:40.996 SQL [13455]: Affected rows: 1 -- 11:34:40.996 SQL [13455]: pgsql_exec() -- 11:34:40.996 SQL [13455]: About to run query: -- 11:34:40.996 SQL [13455]: DELETE FROM members_session WHERE member_id=7 -- 11:34:40.997 SQL [13455]: PQcmdTuples: 0 -- 11:34:40.997 SQL [13455]: Affected rows: 0 -- 11:34:40.997 SQL [13455]: pgsql_query() -- 11:34:40.997 SQL [13455]: About to run query: -- 11:34:40.997 SQL [13455]: SELECT * FROM members_session WHERE member_id=7 AND session<>'366249780000504F96CB3FF77848D7E6' -- 11:34:40.998 SQL [13455]: Found rows: 0 -- 11:34:40.998 SQL [13455]: Found rows: 0 -- 11:34:40.998 FLOG_MAX [13455]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:34:40.998 SQL [13455]: pgsql_query() -- 11:34:40.998 SQL [13455]: About to run query: -- 11:34:40.998 SQL [13455]: SELECT * FROM members_session WHERE member_id=7 AND session='366249780000504F96CB3FF77848D7E6' -- 11:34:40.998 SQL [13455]: Found rows: 0 -- 11:34:40.998 SQL [13455]: Found rows: 0 -- 11:34:40.998 FLOG_MAX [13455]: insert_db_record() -- 11:34:40.998 SQL [13455]: pgsql_exec() -- 11:34:40.998 SQL [13455]: About to run query: -- 11:34:40.998 SQL [13455]: INSERT INTO members_session (member_id,session) VALUES ('7','366249780000504F96CB3FF77848D7E6') -- 11:34:40.000 SQL [13455]: PQcmdTuples: 1 -- 11:34:40.000 SQL [13455]: Affected rows: 1 -- 11:34:40.000 FLOG_MAX [13455]: SELECT currval('members_session_id_seq') -- 11:34:40.000 SQL [13455]: pgsql_query() -- 11:34:40.000 SQL [13455]: About to run query: -- 11:34:40.000 SQL [13455]: SELECT currval('members_session_id_seq') -- 11:34:41.000 SQL [13455]: Found rows: 1 -- 11:34:41.000 INFO [13455]: CreateDefaultPage() -- 11:34:41.000 FLOG_MAX [13455]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:34:41.000 SQL [13455]: pgsql_query() -- 11:34:41.000 SQL [13455]: About to run query: -- 11:34:41.000 SQL [13455]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 11:34:41.000 SQL [13455]: Found rows: 1 -- 11:34:41.000 FLOG_MAX [13455]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 11:34:41.000 SQL [13455]: pgsql_query() -- 11:34:41.000 SQL [13455]: About to run query: -- 11:34:41.000 SQL [13455]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 11:34:41.001 SQL [13455]: Found rows: 1 -- 11:34:41.001 INFO [13455]: /CreateDefaultPage() -- 11:34:41.001 INFO [13455]: /LoginCoreGradeAccount() -- 11:34:41.001 INFO [13455]: RET: added=2020-02-05 09:42:12.816064 -- 11:34:41.001 INFO [13455]: RET: email=tokslaw@chiefsoft.com -- 11:34:41.001 INFO [13455]: RET: firstname=Tokunbo -- 11:34:41.001 INFO [13455]: RET: folder=5D06B187B1E2285A63AD1D0ECB670D98 -- 11:34:41.001 INFO [13455]: RET: id=7 -- 11:34:41.001 INFO [13455]: RET: last_login= -- 11:34:41.001 INFO [13455]: RET: lastname=Lawal -- 11:34:41.001 INFO [13455]: RET: loc=192.168.1.13 -- 11:34:41.001 INFO [13455]: RET: member_id=7 -- 11:34:41.001 INFO [13455]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 11:34:41.001 INFO [13455]: RET: phone= -- 11:34:41.001 INFO [13455]: RET: pid= -- 11:34:41.001 INFO [13455]: RET: result=YES I GET TO BACK END -- 11:34:41.001 INFO [13455]: RET: sessionid=366249780000504F96CB3FF77848D7E6 -- 11:34:41.001 INFO [13455]: RET: status=1 -- 11:34:41.001 INFO [13455]: RET: stauts=OK -- 11:34:41.001 INFO [13455]: RET: username=tokslaw@chiefsoft.com -- 11:34:41.001 INFO [13455]: RET: verified= -- 11:34:41.003 INFO [13455]: COREGRADE is stopping... -- 11:34:41.003 DEBUG [13455]: Closing database connection -- 11:34:41.003 SQL [13455]: pgsql_close() -- 11:34:40.953 DEBUG [13455]: Database connection successful -- 11:34:40.953 INFO [13455]: _SERVER found -- 11:34:40.953 INFO [13455]: REMOTE_ADDR = 192.168.1.13 -- 11:34:40.953 INFO [13455]: SERVER_NAME = oameye.works.coregrade.com -- 11:34:40.953 INFO [13455]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=basbclehdpq0mr1eiilbaotvaopd1n1l -- 11:34:40.953 INFO [13455]: QUERY_STRING = /auth -- 11:34:40.953 INFO [13455]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:34:41.003 INFO [13455]: COREGRADE is stopping... -- 11:34:41.003 DEBUG [13455]: Closing database connection -- 11:34:41.003 SQL [13455]: pgsql_close() -- 11:34:41.014 INFO [13455]: COREGRADE is starting... -- 11:34:41.014 INFO [13455]: Version from config: 1.0 -- 11:34:41.014 DEBUG [13455]: Connecting to database... -- 11:34:41.015 DEBUG [13455]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:34:41.015 SQL [13455]: pgsql_db_connect() -- 11:34:41.018 DEBUG [13455]: Database connection successful -- 11:34:41.018 INFO [13455]: _SERVER found -- 11:34:41.018 INFO [13455]: REMOTE_ADDR = 192.168.1.13 -- 11:34:41.018 INFO [13455]: SERVER_NAME = oameye.works.coregrade.com -- 11:34:41.018 INFO [13455]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=basbclehdpq0mr1eiilbaotvaopd1n1l -- 11:34:41.018 INFO [13455]: QUERY_STRING = /member/index -- 11:34:41.018 INFO [13455]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:34:41.058 INFO [13455]: COREGRADE is stopping... -- 11:34:41.059 DEBUG [13455]: Closing database connection -- 11:34:41.059 SQL [13455]: pgsql_close() -- 11:34:41.605 INFO [11547]: COREGRADE is starting... -- 11:34:41.605 INFO [11547]: Version from config: 1.0 -- 11:34:41.605 DEBUG [11547]: Connecting to database... -- 11:34:41.605 DEBUG [11547]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:34:41.605 SQL [11547]: pgsql_db_connect() -- 11:34:41.609 DEBUG [11547]: Database connection successful -- 11:34:41.609 INFO [11547]: _SERVER found -- 11:34:41.609 INFO [11547]: REMOTE_ADDR = 192.168.1.13 -- 11:34:41.609 INFO [11547]: SERVER_NAME = oameye.works.coregrade.com -- 11:34:41.609 INFO [11547]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=basbclehdpq0mr1eiilbaotvaopd1n1l -- 11:34:41.609 INFO [11547]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:34:41.609 INFO [11547]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:34:41.622 INFO [11547]: COREGRADE is stopping... -- 11:34:41.622 DEBUG [11547]: Closing database connection -- 11:34:41.622 SQL [11547]: pgsql_close() -- 11:34:41.768 INFO [11547]: COREGRADE is starting... -- 11:34:41.769 INFO [11547]: Version from config: 1.0 -- 11:34:41.769 DEBUG [11547]: Connecting to database... -- 11:34:41.769 DEBUG [11547]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:34:41.769 SQL [11547]: pgsql_db_connect() -- 11:34:41.773 DEBUG [11547]: Database connection successful -- 11:34:41.773 INFO [11547]: _SERVER found -- 11:34:41.773 INFO [11547]: REMOTE_ADDR = 192.168.1.13 -- 11:34:41.773 INFO [11547]: SERVER_NAME = oameye.works.coregrade.com -- 11:34:41.773 INFO [11547]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=basbclehdpq0mr1eiilbaotvaopd1n1l -- 11:34:41.773 INFO [11547]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:34:41.773 INFO [11547]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:34:41.784 INFO [11547]: COREGRADE is stopping... -- 11:34:41.784 DEBUG [11547]: Closing database connection -- 11:34:41.784 SQL [11547]: pgsql_close() -- 11:34:46.985 INFO [11575]: COREGRADE is starting... -- 11:34:46.985 INFO [11575]: Version from config: 1.0 -- 11:34:46.985 DEBUG [11575]: Connecting to database... -- 11:34:46.985 DEBUG [11575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:34:46.985 SQL [11575]: pgsql_db_connect() -- 11:34:46.989 DEBUG [11575]: Database connection successful -- 11:34:46.989 INFO [11575]: _SERVER found -- 11:34:46.989 INFO [11575]: REMOTE_ADDR = 192.168.1.13 -- 11:34:46.989 INFO [11575]: SERVER_NAME = oameye.works.coregrade.com -- 11:34:46.989 INFO [11575]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=basbclehdpq0mr1eiilbaotvaopd1n1l -- 11:34:46.989 INFO [11575]: QUERY_STRING = /member/configure -- 11:34:46.989 INFO [11575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:34:47.038 INFO [11575]: COREGRADE is stopping... -- 11:34:47.038 DEBUG [11575]: Closing database connection -- 11:34:47.038 SQL [11575]: pgsql_close() -- 11:34:47.342 INFO [11575]: COREGRADE is starting... -- 11:34:47.342 INFO [11575]: Version from config: 1.0 -- 11:34:47.342 DEBUG [11575]: Connecting to database... -- 11:34:47.342 DEBUG [11575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:34:47.342 SQL [11575]: pgsql_db_connect() -- 11:34:47.346 DEBUG [11575]: Database connection successful -- 11:34:47.346 INFO [11575]: _SERVER found -- 11:34:47.346 INFO [11575]: REMOTE_ADDR = 192.168.1.13 -- 11:34:47.346 INFO [11575]: SERVER_NAME = oameye.works.coregrade.com -- 11:34:47.346 INFO [11575]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=basbclehdpq0mr1eiilbaotvaopd1n1l -- 11:34:47.346 INFO [11575]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 11:34:47.346 INFO [11575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:34:47.357 INFO [11575]: COREGRADE is stopping... -- 11:34:47.357 DEBUG [11575]: Closing database connection -- 11:34:47.357 SQL [11575]: pgsql_close() -- 11:34:47.556 INFO [11575]: COREGRADE is starting... -- 11:34:47.556 INFO [11575]: Version from config: 1.0 -- 11:34:47.556 DEBUG [11575]: Connecting to database... -- 11:34:47.556 DEBUG [11575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:34:47.556 SQL [11575]: pgsql_db_connect() -- 11:34:47.560 DEBUG [11575]: Database connection successful -- 11:34:47.560 INFO [11575]: _SERVER found -- 11:34:47.560 INFO [11575]: REMOTE_ADDR = 192.168.1.13 -- 11:34:47.560 INFO [11575]: SERVER_NAME = oameye.works.coregrade.com -- 11:34:47.560 INFO [11575]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=basbclehdpq0mr1eiilbaotvaopd1n1l -- 11:34:47.560 INFO [11575]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:34:47.560 INFO [11575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:34:47.571 INFO [11575]: COREGRADE is stopping... -- 11:34:47.571 DEBUG [11575]: Closing database connection -- 11:34:47.571 SQL [11575]: pgsql_close() -- 11:34:51.004 INFO [11575]: COREGRADE is starting... -- 11:34:51.004 INFO [11575]: Version from config: 1.0 -- 11:34:51.004 DEBUG [11575]: Connecting to database... -- 11:34:51.004 DEBUG [11575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:34:51.004 SQL [11575]: pgsql_db_connect() -- 11:34:51.008 DEBUG [11575]: Database connection successful -- 11:34:51.008 INFO [11575]: _SERVER found -- 11:34:51.008 INFO [11575]: REMOTE_ADDR = 192.168.1.13 -- 11:34:51.008 INFO [11575]: SERVER_NAME = oameye.works.coregrade.com -- 11:34:51.008 INFO [11575]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=basbclehdpq0mr1eiilbaotvaopd1n1l -- 11:34:51.008 INFO [11575]: QUERY_STRING = /member/page -- 11:34:51.008 INFO [11575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:34:51.052 INFO [11575]: COREGRADE is stopping... -- 11:34:51.052 DEBUG [11575]: Closing database connection -- 11:34:51.052 SQL [11575]: pgsql_close() -- 11:34:51.492 INFO [11550]: COREGRADE is starting... -- 11:34:51.493 INFO [11550]: Version from config: 1.0 -- 11:34:51.493 DEBUG [11550]: Connecting to database... -- 11:34:51.493 DEBUG [11550]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:34:51.493 SQL [11550]: pgsql_db_connect() -- 11:34:51.497 DEBUG [11550]: Database connection successful -- 11:34:51.497 INFO [11550]: _SERVER found -- 11:34:51.497 INFO [11550]: REMOTE_ADDR = 192.168.1.13 -- 11:34:51.497 INFO [11550]: SERVER_NAME = oameye.works.coregrade.com -- 11:34:51.497 INFO [11550]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=basbclehdpq0mr1eiilbaotvaopd1n1l -- 11:34:51.497 INFO [11550]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:34:51.497 INFO [11550]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:34:51.510 INFO [11550]: COREGRADE is stopping... -- 11:34:51.510 DEBUG [11550]: Closing database connection -- 11:34:51.510 SQL [11550]: pgsql_close() -- 11:35:21.524 INFO [11549]: COREGRADE is starting... -- 11:35:21.524 INFO [11549]: Version from config: 1.0 -- 11:35:21.524 DEBUG [11549]: Connecting to database... -- 11:35:21.524 DEBUG [11549]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:35:21.524 SQL [11549]: pgsql_db_connect() -- 11:35:21.528 DEBUG [11549]: Database connection successful -- 11:35:21.528 INFO [11549]: _SERVER found -- 11:35:21.528 INFO [11549]: REMOTE_ADDR = 192.168.1.13 -- 11:35:21.528 INFO [11549]: SERVER_NAME = tokslaw.works.coregrade.com -- 11:35:21.528 INFO [11549]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586 -- 11:35:21.528 INFO [11549]: QUERY_STRING = -- 11:35:21.528 INFO [11549]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:35:21.563 INFO [11549]: COREGRADE is stopping... -- 11:35:21.563 DEBUG [11549]: Closing database connection -- 11:35:21.563 SQL [11549]: pgsql_close() -- 11:35:22.021 INFO [18754]: COREGRADE is starting... -- 11:35:22.021 INFO [18754]: Version from config: 1.0 -- 11:35:22.021 DEBUG [18754]: Connecting to database... -- 11:35:22.022 DEBUG [18754]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:35:22.022 SQL [18754]: pgsql_db_connect() -- 11:35:22.022 INFO [11546]: COREGRADE is starting... -- 11:35:22.022 INFO [11546]: Version from config: 1.0 -- 11:35:22.022 DEBUG [11546]: Connecting to database... -- 11:35:22.022 DEBUG [11546]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:35:22.022 SQL [11546]: pgsql_db_connect() -- 11:35:22.026 DEBUG [18754]: Database connection successful -- 11:35:22.026 INFO [18754]: _SERVER found -- 11:35:22.026 INFO [18754]: REMOTE_ADDR = 192.168.1.13 -- 11:35:22.026 INFO [18754]: SERVER_NAME = tokslaw.works.coregrade.com -- 11:35:22.026 INFO [18754]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=g2clcdudaangv4hg8orfpqug07r31qii -- 11:35:22.026 INFO [18754]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 11:35:22.026 INFO [18754]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:35:22.039 INFO [18754]: COREGRADE is stopping... -- 11:35:22.039 DEBUG [18754]: Closing database connection -- 11:35:22.039 SQL [18754]: pgsql_close() -- 11:35:22.026 DEBUG [11546]: Database connection successful -- 11:35:22.026 INFO [11546]: _SERVER found -- 11:35:22.026 INFO [11546]: REMOTE_ADDR = 192.168.1.13 -- 11:35:22.026 INFO [11546]: SERVER_NAME = tokslaw.works.coregrade.com -- 11:35:22.026 INFO [11546]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=g2clcdudaangv4hg8orfpqug07r31qii -- 11:35:22.026 INFO [11546]: QUERY_STRING = /assets/img/footer_1.jpg -- 11:35:22.026 INFO [11546]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:35:22.039 INFO [11546]: COREGRADE is stopping... -- 11:35:22.040 DEBUG [11546]: Closing database connection -- 11:35:22.040 SQL [11546]: pgsql_close() -- 11:35:26.490 INFO [11546]: COREGRADE is starting... -- 11:35:26.490 INFO [11546]: Version from config: 1.0 -- 11:35:26.490 DEBUG [11546]: Connecting to database... -- 11:35:26.490 DEBUG [11546]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:35:26.490 SQL [11546]: pgsql_db_connect() -- 11:35:26.500 INFO [18754]: COREGRADE is starting... -- 11:35:26.500 INFO [18754]: Version from config: 1.0 -- 11:35:26.500 DEBUG [18754]: Connecting to database... -- 11:35:26.500 DEBUG [18754]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:35:26.500 SQL [18754]: pgsql_db_connect() -- 11:35:26.494 DEBUG [11546]: Database connection successful -- 11:35:26.494 INFO [11546]: _SERVER found -- 11:35:26.494 INFO [11546]: REMOTE_ADDR = 192.168.1.13 -- 11:35:26.494 INFO [11546]: SERVER_NAME = tokslaw.works.coregrade.com -- 11:35:26.494 INFO [11546]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=g2clcdudaangv4hg8orfpqug07r31qii; _gid=GA1.2.803327914.1582562124; _gat_gtag_UA_54829827_2=1 -- 11:35:26.494 INFO [11546]: QUERY_STRING = /welcome/viewLogin -- 11:35:26.494 INFO [11546]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:35:26.526 INFO [11546]: COREGRADE is stopping... -- 11:35:26.526 DEBUG [11546]: Closing database connection -- 11:35:26.526 SQL [11546]: pgsql_close() -- 11:35:26.535 INFO [11546]: COREGRADE is starting... -- 11:35:26.535 INFO [11546]: Version from config: 1.0 -- 11:35:26.535 DEBUG [11546]: Connecting to database... -- 11:35:26.535 DEBUG [11546]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:35:26.535 SQL [11546]: pgsql_db_connect() -- 11:35:26.504 DEBUG [18754]: Database connection successful -- 11:35:26.504 INFO [18754]: _SERVER found -- 11:35:26.504 INFO [18754]: REMOTE_ADDR = 192.168.1.13 -- 11:35:26.504 INFO [18754]: SERVER_NAME = tokslaw.works.coregrade.com -- 11:35:26.504 INFO [18754]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=g2clcdudaangv4hg8orfpqug07r31qii; _gid=GA1.2.803327914.1582562124; _gat_gtag_UA_54829827_2=1 -- 11:35:26.504 INFO [18754]: QUERY_STRING = /auth -- 11:35:26.504 INFO [18754]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:35:26.539 INFO [18754]: COREGRADE is stopping... -- 11:35:26.539 DEBUG [18754]: Closing database connection -- 11:35:26.539 SQL [18754]: pgsql_close() -- 11:35:26.539 DEBUG [11546]: Database connection successful -- 11:35:26.539 INFO [11546]: _SERVER found -- 11:35:26.539 INFO [11546]: REMOTE_ADDR = 192.168.1.13 -- 11:35:26.539 INFO [11546]: SERVER_NAME = tokslaw.works.coregrade.com -- 11:35:26.539 INFO [11546]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=g2clcdudaangv4hg8orfpqug07r31qii; _gid=GA1.2.803327914.1582562124; _gat_gtag_UA_54829827_2=1 -- 11:35:26.539 INFO [11546]: QUERY_STRING = /auth/index -- 11:35:26.539 INFO [11546]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:35:26.570 INFO [11546]: COREGRADE is stopping... -- 11:35:26.570 DEBUG [11546]: Closing database connection -- 11:35:26.570 SQL [11546]: pgsql_close() -- 11:35:26.827 INFO [18754]: COREGRADE is starting... -- 11:35:26.827 INFO [18754]: Version from config: 1.0 -- 11:35:26.827 DEBUG [18754]: Connecting to database... -- 11:35:26.827 DEBUG [18754]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:35:26.827 SQL [18754]: pgsql_db_connect() -- 11:35:26.831 DEBUG [18754]: Database connection successful -- 11:35:26.831 INFO [18754]: _SERVER found -- 11:35:26.831 INFO [18754]: REMOTE_ADDR = 192.168.1.13 -- 11:35:26.831 INFO [18754]: SERVER_NAME = tokslaw.works.coregrade.com -- 11:35:26.831 INFO [18754]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=g2clcdudaangv4hg8orfpqug07r31qii; _gid=GA1.2.803327914.1582562124; _gat_gtag_UA_54829827_2=1 -- 11:35:26.831 INFO [18754]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:35:26.831 INFO [18754]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:35:26.842 INFO [18754]: COREGRADE is stopping... -- 11:35:26.842 DEBUG [18754]: Closing database connection -- 11:35:26.842 SQL [18754]: pgsql_close() -- 11:35:26.848 INFO [11546]: COREGRADE is starting... -- 11:35:26.848 INFO [11546]: Version from config: 1.0 -- 11:35:26.848 DEBUG [11546]: Connecting to database... -- 11:35:26.848 DEBUG [11546]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:35:26.848 SQL [11546]: pgsql_db_connect() -- 11:35:26.852 DEBUG [11546]: Database connection successful -- 11:35:26.852 INFO [11546]: _SERVER found -- 11:35:26.852 INFO [11546]: REMOTE_ADDR = 192.168.1.13 -- 11:35:26.852 INFO [11546]: SERVER_NAME = tokslaw.works.coregrade.com -- 11:35:26.852 INFO [11546]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=g2clcdudaangv4hg8orfpqug07r31qii; _gid=GA1.2.803327914.1582562124; _gat_gtag_UA_54829827_2=1 -- 11:35:26.852 INFO [11546]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:35:26.852 INFO [11546]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:35:26.863 INFO [11546]: COREGRADE is stopping... -- 11:35:26.863 DEBUG [11546]: Closing database connection -- 11:35:26.863 SQL [11546]: pgsql_close() -- 11:35:28.494 INFO [11546]: COREGRADE is starting... -- 11:35:28.495 INFO [11546]: Version from config: 1.0 -- 11:35:28.495 DEBUG [11546]: Connecting to database... -- 11:35:28.495 DEBUG [11546]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:35:28.495 SQL [11546]: pgsql_db_connect() -- 11:35:28.499 DEBUG [11546]: Database connection successful -- 11:35:28.499 INFO [11546]: _SERVER found -- 11:35:28.499 INFO [11546]: REMOTE_ADDR = 192.168.1.13 -- 11:35:28.499 INFO [11546]: SERVER_NAME = tokslaw.works.coregrade.com -- 11:35:28.499 INFO [11546]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=g2clcdudaangv4hg8orfpqug07r31qii; _gid=GA1.2.803327914.1582562124; _gat_gtag_UA_54829827_2=1 -- 11:35:28.499 INFO [11546]: QUERY_STRING = /auth -- 11:35:28.499 INFO [11546]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:35:28.553 INFO [11546]: COREGRADE is starting... -- 11:35:28.553 INFO [11546]: Version from config: 1.0 -- 11:35:28.554 DEBUG [11546]: Connecting to database... -- 11:35:28.554 DEBUG [11546]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:35:28.554 SQL [11546]: pgsql_db_connect() -- 11:35:28.557 DEBUG [11546]: Database connection successful -- 11:35:28.557 INFO [11546]: _SERVER found -- 11:35:28.557 INFO [11546]: REMOTE_ADDR = 192.168.1.13 -- 11:35:28.557 INFO [11546]: SERVER_NAME = tokslaw.works.coregrade.com -- 11:35:28.557 INFO [11546]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=g2clcdudaangv4hg8orfpqug07r31qii; _gid=GA1.2.803327914.1582562124; _gat_gtag_UA_54829827_2=1 -- 11:35:28.557 INFO [11546]: QUERY_STRING = /member/index -- 11:35:28.557 INFO [11546]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:35:28.568 INFO [11546]: COREGRADE is stopping... -- 11:35:28.568 DEBUG [11546]: Closing database connection -- 11:35:28.568 SQL [11546]: pgsql_close() -- 11:35:38.694 INFO [13451]: COREGRADE is starting... -- 11:35:38.694 INFO [13451]: Version from config: 1.0 -- 11:35:38.694 DEBUG [13451]: Connecting to database... -- 11:35:38.694 DEBUG [13451]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:35:38.694 SQL [13451]: pgsql_db_connect() -- 11:35:38.698 DEBUG [13451]: Database connection successful -- 11:35:38.698 INFO [13451]: _SERVER found -- 11:35:38.698 INFO [13451]: REMOTE_ADDR = 192.168.1.13 -- 11:35:38.698 INFO [13451]: SERVER_NAME = tokslaw.works.coregrade.com -- 11:35:38.698 INFO [13451]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=g2clcdudaangv4hg8orfpqug07r31qii; _gid=GA1.2.803327914.1582562124; _gat_gtag_UA_54829827_2=1 -- 11:35:38.698 INFO [13451]: QUERY_STRING = /auth -- 11:35:38.698 INFO [13451]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:35:38.733 INFO [13451]: COREGRADE is stopping... -- 11:35:38.733 DEBUG [13451]: Closing database connection -- 11:35:38.733 SQL [13451]: pgsql_close() -- 11:35:39.017 INFO [13451]: COREGRADE is starting... -- 11:35:39.017 INFO [13451]: Version from config: 1.0 -- 11:35:39.017 DEBUG [13451]: Connecting to database... -- 11:35:39.018 DEBUG [13451]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:35:39.018 SQL [13451]: pgsql_db_connect() -- 11:35:39.024 INFO [13455]: COREGRADE is starting... -- 11:35:39.025 INFO [13455]: Version from config: 1.0 -- 11:35:39.025 DEBUG [13455]: Connecting to database... -- 11:35:39.025 DEBUG [13455]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:35:39.025 SQL [13455]: pgsql_db_connect() -- 11:35:39.022 DEBUG [13451]: Database connection successful -- 11:35:39.022 INFO [13451]: _SERVER found -- 11:35:39.022 INFO [13451]: REMOTE_ADDR = 192.168.1.13 -- 11:35:39.022 INFO [13451]: SERVER_NAME = tokslaw.works.coregrade.com -- 11:35:39.022 INFO [13451]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=g2clcdudaangv4hg8orfpqug07r31qii; _gid=GA1.2.803327914.1582562124; _gat_gtag_UA_54829827_2=1 -- 11:35:39.022 INFO [13451]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:35:39.022 INFO [13451]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:35:39.033 INFO [13451]: COREGRADE is stopping... -- 11:35:39.033 DEBUG [13451]: Closing database connection -- 11:35:39.033 SQL [13451]: pgsql_close() -- 11:35:39.028 DEBUG [13455]: Database connection successful -- 11:35:39.028 INFO [13455]: _SERVER found -- 11:35:39.028 INFO [13455]: REMOTE_ADDR = 192.168.1.13 -- 11:35:39.028 INFO [13455]: SERVER_NAME = tokslaw.works.coregrade.com -- 11:35:39.028 INFO [13455]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=g2clcdudaangv4hg8orfpqug07r31qii; _gid=GA1.2.803327914.1582562124; _gat_gtag_UA_54829827_2=1 -- 11:35:39.028 INFO [13455]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:35:39.028 INFO [13455]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:35:39.040 INFO [13455]: COREGRADE is stopping... -- 11:35:39.040 DEBUG [13455]: Closing database connection -- 11:35:39.040 SQL [13455]: pgsql_close() -- 11:35:40.971 INFO [13455]: COREGRADE is starting... -- 11:35:40.971 INFO [13455]: Version from config: 1.0 -- 11:35:40.971 DEBUG [13455]: Connecting to database... -- 11:35:40.971 DEBUG [13455]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:35:40.971 SQL [13455]: pgsql_db_connect() -- 11:35:40.975 DEBUG [13455]: Database connection successful -- 11:35:40.975 INFO [13455]: _SERVER found -- 11:35:40.975 INFO [13455]: REMOTE_ADDR = 192.168.1.13 -- 11:35:40.975 INFO [13455]: SERVER_NAME = tokslaw.works.coregrade.com -- 11:35:40.975 INFO [13455]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=g2clcdudaangv4hg8orfpqug07r31qii; _gid=GA1.2.803327914.1582562124; _gat_gtag_UA_54829827_2=1 -- 11:35:40.975 INFO [13455]: QUERY_STRING = /auth -- 11:35:40.975 INFO [13455]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:35:41.035 INFO [13455]: COREGRADE is starting... -- 11:35:41.036 INFO [13455]: Version from config: 1.0 -- 11:35:41.036 DEBUG [13455]: Connecting to database... -- 11:35:41.036 DEBUG [13455]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:35:41.036 SQL [13455]: pgsql_db_connect() -- 11:35:41.039 DEBUG [13455]: Database connection successful -- 11:35:41.039 INFO [13455]: _SERVER found -- 11:35:41.039 INFO [13455]: REMOTE_ADDR = 192.168.1.13 -- 11:35:41.039 INFO [13455]: SERVER_NAME = tokslaw.works.coregrade.com -- 11:35:41.039 INFO [13455]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=g2clcdudaangv4hg8orfpqug07r31qii; _gid=GA1.2.803327914.1582562124; _gat_gtag_UA_54829827_2=1 -- 11:35:41.039 INFO [13455]: QUERY_STRING = /member/index -- 11:35:41.039 INFO [13455]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:35:41.050 INFO [13455]: COREGRADE is stopping... -- 11:35:41.051 DEBUG [13455]: Closing database connection -- 11:35:41.051 SQL [13455]: pgsql_close() -- 11:35:45.487 INFO [13455]: COREGRADE is starting... -- 11:35:45.487 INFO [13455]: Version from config: 1.0 -- 11:35:45.487 DEBUG [13455]: Connecting to database... -- 11:35:45.487 DEBUG [13455]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:35:45.487 SQL [13455]: pgsql_db_connect() -- 11:35:45.491 DEBUG [13455]: Database connection successful -- 11:35:45.491 INFO [13455]: _SERVER found -- 11:35:45.491 INFO [13455]: REMOTE_ADDR = 192.168.1.13 -- 11:35:45.491 INFO [13455]: SERVER_NAME = tokslaw.works.coregrade.com -- 11:35:45.491 INFO [13455]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=g2clcdudaangv4hg8orfpqug07r31qii; _gid=GA1.2.803327914.1582562124; _gat_gtag_UA_54829827_2=1 -- 11:35:45.491 INFO [13455]: QUERY_STRING = /member/index -- 11:35:45.491 INFO [13455]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:35:45.502 INFO [13455]: COREGRADE is stopping... -- 11:35:45.502 DEBUG [13455]: Closing database connection -- 11:35:45.502 SQL [13455]: pgsql_close() -- 11:36:01.075 INFO [11575]: COREGRADE is starting... -- 11:36:01.076 INFO [11575]: Version from config: 1.0 -- 11:36:01.076 DEBUG [11575]: Connecting to database... -- 11:36:01.076 DEBUG [11575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:36:01.076 SQL [11575]: pgsql_db_connect() -- 11:36:01.080 DEBUG [11575]: Database connection successful -- 11:36:01.080 INFO [11575]: _SERVER found -- 11:36:01.080 INFO [11575]: REMOTE_ADDR = 192.168.1.13 -- 11:36:01.080 INFO [11575]: SERVER_NAME = tokslaw.works.coregrade.com -- 11:36:01.080 INFO [11575]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=g2clcdudaangv4hg8orfpqug07r31qii; _gid=GA1.2.803327914.1582562124; _gat_gtag_UA_54829827_2=1 -- 11:36:01.080 INFO [11575]: QUERY_STRING = /member/index -- 11:36:01.080 INFO [11575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:36:01.091 INFO [11575]: COREGRADE is stopping... -- 11:36:01.091 DEBUG [11575]: Closing database connection -- 11:36:01.091 SQL [11575]: pgsql_close() -- 12:25:55.576 INFO [11550]: COREGRADE is starting... -- 12:25:55.577 INFO [11550]: Version from config: 1.0 -- 12:25:55.577 DEBUG [11550]: Connecting to database... -- 12:25:55.577 DEBUG [11550]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:25:55.577 SQL [11550]: pgsql_db_connect() -- 12:25:55.581 DEBUG [11550]: Database connection successful -- 12:25:55.581 INFO [11550]: _SERVER found -- 12:25:55.581 INFO [11550]: REMOTE_ADDR = 192.168.1.13 -- 12:25:55.581 INFO [11550]: SERVER_NAME = oameye.works.coregrade.com -- 12:25:55.581 INFO [11550]: QUERY_STRING = -- 12:25:55.581 INFO [11550]: HTTP_X_FORWARDED_FOR = 104.219.234.53 -- 12:25:55.619 INFO [11550]: COREGRADE is stopping... -- 12:25:55.619 DEBUG [11550]: Closing database connection -- 12:25:55.619 SQL [11550]: pgsql_close() -- 13:51:10.631 INFO [19554]: COREGRADE is starting... -- 13:51:10.632 INFO [19554]: Version from config: 1.0 -- 13:51:10.632 DEBUG [19554]: Connecting to database... -- 13:51:10.632 DEBUG [19554]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:51:10.632 SQL [19554]: pgsql_db_connect() -- 13:51:10.637 DEBUG [19554]: Database connection successful -- 13:51:10.637 INFO [19554]: _SERVER found -- 13:51:10.637 INFO [19554]: REMOTE_ADDR = 192.168.1.13 -- 13:51:10.637 INFO [19554]: SERVER_NAME = oameye.works.coregrade.com -- 13:51:10.637 INFO [19554]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 13:51:10.637 INFO [19554]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 13:51:10.653 INFO [19554]: COREGRADE is stopping... -- 13:51:10.653 DEBUG [19554]: Closing database connection -- 13:51:10.653 SQL [19554]: pgsql_close() -- 16:57:36.388 INFO [11548]: COREGRADE is starting... -- 16:57:36.389 INFO [11548]: Version from config: 1.0 -- 16:57:36.389 DEBUG [11548]: Connecting to database... -- 16:57:36.389 DEBUG [11548]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:36.389 SQL [11548]: pgsql_db_connect() -- 16:57:36.394 DEBUG [11548]: Database connection successful -- 16:57:36.394 INFO [11548]: _SERVER found -- 16:57:36.394 INFO [11548]: REMOTE_ADDR = 192.168.1.13 -- 16:57:36.394 INFO [11548]: SERVER_NAME = oameye.works.coregrade.com -- 16:57:36.394 INFO [11548]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494 -- 16:57:36.394 INFO [11548]: QUERY_STRING = /auth -- 16:57:36.394 INFO [11548]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:36.430 INFO [11548]: COREGRADE is stopping... -- 16:57:36.430 DEBUG [11548]: Closing database connection -- 16:57:36.430 SQL [11548]: pgsql_close() -- 16:57:36.600 INFO [11548]: COREGRADE is starting... -- 16:57:36.600 INFO [11548]: Version from config: 1.0 -- 16:57:36.600 DEBUG [11548]: Connecting to database... -- 16:57:36.600 DEBUG [11548]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:36.600 SQL [11548]: pgsql_db_connect() -- 16:57:36.604 DEBUG [11548]: Database connection successful -- 16:57:36.604 INFO [11548]: _SERVER found -- 16:57:36.604 INFO [11548]: REMOTE_ADDR = 192.168.1.13 -- 16:57:36.604 INFO [11548]: SERVER_NAME = oameye.works.coregrade.com -- 16:57:36.604 INFO [11548]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=mno5akfvm4rghqc7r9kjhfvt4v27b8fb -- 16:57:36.604 INFO [11548]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:57:36.604 INFO [11548]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:36.615 INFO [11548]: COREGRADE is stopping... -- 16:57:36.615 DEBUG [11548]: Closing database connection -- 16:57:36.615 SQL [11548]: pgsql_close() -- 16:57:36.619 INFO [11548]: COREGRADE is starting... -- 16:57:36.620 INFO [11548]: Version from config: 1.0 -- 16:57:36.620 DEBUG [11548]: Connecting to database... -- 16:57:36.620 DEBUG [11548]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:36.620 SQL [11548]: pgsql_db_connect() -- 16:57:36.624 DEBUG [11548]: Database connection successful -- 16:57:36.624 INFO [11548]: _SERVER found -- 16:57:36.624 INFO [11548]: REMOTE_ADDR = 192.168.1.13 -- 16:57:36.624 INFO [11548]: SERVER_NAME = oameye.works.coregrade.com -- 16:57:36.624 INFO [11548]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=mno5akfvm4rghqc7r9kjhfvt4v27b8fb -- 16:57:36.624 INFO [11548]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:57:36.624 INFO [11548]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:36.635 INFO [11548]: COREGRADE is stopping... -- 16:57:36.635 DEBUG [11548]: Closing database connection -- 16:57:36.635 SQL [11548]: pgsql_close() -- 16:57:38.386 INFO [11548]: COREGRADE is starting... -- 16:57:38.386 INFO [11548]: Version from config: 1.0 -- 16:57:38.386 DEBUG [11548]: Connecting to database... -- 16:57:38.386 DEBUG [11548]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:38.386 SQL [11548]: pgsql_db_connect() -- 16:57:38.421 INFO [11548]: COREGRADE is starting... -- 16:57:38.421 INFO [11548]: Version from config: 1.0 -- 16:57:38.421 DEBUG [11548]: Connecting to database... -- 16:57:38.421 DEBUG [11548]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:38.421 SQL [11548]: pgsql_db_connect() -- 16:57:38.425 DEBUG [11548]: Database connection successful -- 16:57:38.425 INFO [11548]: _SERVER found -- 16:57:38.425 INFO [11548]: REMOTE_ADDR = 192.168.1.13 -- 16:57:38.425 INFO [11548]: SERVER_NAME = oameye.works.coregrade.com -- 16:57:38.425 INFO [11548]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=mno5akfvm4rghqc7r9kjhfvt4v27b8fb -- 16:57:38.425 INFO [11548]: QUERY_STRING = -- 16:57:38.425 INFO [11548]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:38.425 INFO [11548]: SystemStatus()09-09-********~************ -- 16:57:38.425 INFO [11548]: long coregrade_api_main(CVars in, CVars &out) -- 16:57:38.425 INFO [11548]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 16:57:38.425 INFO [11548]: account calls -- 16:57:38.425 INFO [11548]: account_calls() -- 16:57:38.425 INFO [11548]: LoginCoreGradeAccount() -- 16:57:38.426 FLOG_MAX [11548]: REQ_STRING(username) -- 16:57:38.426 FLOG_MAX [11548]: REQ_STRING(password) -- 16:57:38.426 FLOG_MAX [11548]: REQ_STRING(sessionid) -- 16:57:38.426 FLOG_MAX [11548]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:57:38.426 SQL [11548]: pgsql_query() -- 16:57:38.426 SQL [11548]: About to run query: -- 16:57:38.426 SQL [11548]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 16:57:38.430 SQL [11548]: Found rows: 1 -- 16:57:38.430 FLOG_MAX [11548]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 16:57:38.430 INFO [11548]: long SessionCheck(long uid, const char *sessionid, int create ) -- 16:57:38.430 SQL [11548]: pgsql_exec() -- 16:57:38.430 SQL [11548]: About to run query: -- 16:57:38.430 SQL [11548]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 16:57:38.431 SQL [11548]: PQcmdTuples: 1 -- 16:57:38.431 SQL [11548]: Affected rows: 1 -- 16:57:38.431 SQL [11548]: pgsql_exec() -- 16:57:38.431 SQL [11548]: About to run query: -- 16:57:38.431 SQL [11548]: DELETE FROM members_session WHERE member_id=5 -- 16:57:38.432 SQL [11548]: PQcmdTuples: 0 -- 16:57:38.432 SQL [11548]: Affected rows: 0 -- 16:57:38.432 SQL [11548]: pgsql_query() -- 16:57:38.432 SQL [11548]: About to run query: -- 16:57:38.432 SQL [11548]: SELECT * FROM members_session WHERE member_id=5 AND session<>'7A9B303AE343924406FB4EB8E9F47C54' -- 16:57:38.432 SQL [11548]: Found rows: 0 -- 16:57:38.432 SQL [11548]: Found rows: 0 -- 16:57:38.432 FLOG_MAX [11548]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:57:38.432 SQL [11548]: pgsql_query() -- 16:57:38.432 SQL [11548]: About to run query: -- 16:57:38.432 SQL [11548]: SELECT * FROM members_session WHERE member_id=5 AND session='7A9B303AE343924406FB4EB8E9F47C54' -- 16:57:38.433 SQL [11548]: Found rows: 0 -- 16:57:38.433 SQL [11548]: Found rows: 0 -- 16:57:38.433 FLOG_MAX [11548]: insert_db_record() -- 16:57:38.433 SQL [11548]: pgsql_exec() -- 16:57:38.433 SQL [11548]: About to run query: -- 16:57:38.433 SQL [11548]: INSERT INTO members_session (member_id,session) VALUES ('5','7A9B303AE343924406FB4EB8E9F47C54') -- 16:57:38.435 SQL [11548]: PQcmdTuples: 1 -- 16:57:38.435 SQL [11548]: Affected rows: 1 -- 16:57:38.435 FLOG_MAX [11548]: SELECT currval('members_session_id_seq') -- 16:57:38.435 SQL [11548]: pgsql_query() -- 16:57:38.435 SQL [11548]: About to run query: -- 16:57:38.435 SQL [11548]: SELECT currval('members_session_id_seq') -- 16:57:38.435 SQL [11548]: Found rows: 1 -- 16:57:38.435 INFO [11548]: CreateDefaultPage() -- 16:57:38.435 FLOG_MAX [11548]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:57:38.435 SQL [11548]: pgsql_query() -- 16:57:38.435 SQL [11548]: About to run query: -- 16:57:38.435 SQL [11548]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 16:57:38.435 SQL [11548]: Found rows: 1 -- 16:57:38.435 FLOG_MAX [11548]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 16:57:38.435 SQL [11548]: pgsql_query() -- 16:57:38.435 SQL [11548]: About to run query: -- 16:57:38.436 SQL [11548]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 16:57:38.436 SQL [11548]: Found rows: 1 -- 16:57:38.436 INFO [11548]: /CreateDefaultPage() -- 16:57:38.436 INFO [11548]: /LoginCoreGradeAccount() -- 16:57:38.436 INFO [11548]: RET: added=2020-02-05 06:47:23.982154 -- 16:57:38.436 INFO [11548]: RET: email=ameye+11@chiefsoft.com -- 16:57:38.436 INFO [11548]: RET: firstname=Olu -- 16:57:38.436 INFO [11548]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 16:57:38.436 INFO [11548]: RET: id=5 -- 16:57:38.436 INFO [11548]: RET: last_login= -- 16:57:38.436 INFO [11548]: RET: lastname=Amey -- 16:57:38.436 INFO [11548]: RET: loc=192.168.1.13 -- 16:57:38.436 INFO [11548]: RET: member_id=5 -- 16:57:38.436 INFO [11548]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 16:57:38.436 INFO [11548]: RET: phone= -- 16:57:38.436 INFO [11548]: RET: pid= -- 16:57:38.436 INFO [11548]: RET: result=YES I GET TO BACK END -- 16:57:38.436 INFO [11548]: RET: sessionid=7A9B303AE343924406FB4EB8E9F47C54 -- 16:57:38.436 INFO [11548]: RET: status=1 -- 16:57:38.436 INFO [11548]: RET: stauts=OK -- 16:57:38.436 INFO [11548]: RET: username=ameye+11@chiefsoft.com -- 16:57:38.436 INFO [11548]: RET: verified= -- 16:57:38.438 INFO [11548]: COREGRADE is stopping... -- 16:57:38.438 DEBUG [11548]: Closing database connection -- 16:57:38.438 SQL [11548]: pgsql_close() -- 16:57:38.390 DEBUG [11548]: Database connection successful -- 16:57:38.390 INFO [11548]: _SERVER found -- 16:57:38.390 INFO [11548]: REMOTE_ADDR = 192.168.1.13 -- 16:57:38.390 INFO [11548]: SERVER_NAME = oameye.works.coregrade.com -- 16:57:38.390 INFO [11548]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=mno5akfvm4rghqc7r9kjhfvt4v27b8fb -- 16:57:38.390 INFO [11548]: QUERY_STRING = /auth -- 16:57:38.390 INFO [11548]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:38.438 INFO [11548]: COREGRADE is stopping... -- 16:57:38.438 DEBUG [11548]: Closing database connection -- 16:57:38.438 SQL [11548]: pgsql_close() -- 16:57:38.450 INFO [11548]: COREGRADE is starting... -- 16:57:38.450 INFO [11548]: Version from config: 1.0 -- 16:57:38.450 DEBUG [11548]: Connecting to database... -- 16:57:38.450 DEBUG [11548]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:38.450 SQL [11548]: pgsql_db_connect() -- 16:57:38.454 DEBUG [11548]: Database connection successful -- 16:57:38.454 INFO [11548]: _SERVER found -- 16:57:38.454 INFO [11548]: REMOTE_ADDR = 192.168.1.13 -- 16:57:38.454 INFO [11548]: SERVER_NAME = oameye.works.coregrade.com -- 16:57:38.454 INFO [11548]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=mno5akfvm4rghqc7r9kjhfvt4v27b8fb -- 16:57:38.454 INFO [11548]: QUERY_STRING = /member/index -- 16:57:38.454 INFO [11548]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:38.494 INFO [11548]: COREGRADE is stopping... -- 16:57:38.494 DEBUG [11548]: Closing database connection -- 16:57:38.494 SQL [11548]: pgsql_close() -- 16:57:38.871 INFO [18754]: COREGRADE is starting... -- 16:57:38.872 INFO [18754]: Version from config: 1.0 -- 16:57:38.872 DEBUG [18754]: Connecting to database... -- 16:57:38.872 DEBUG [18754]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:38.872 SQL [18754]: pgsql_db_connect() -- 16:57:38.876 DEBUG [18754]: Database connection successful -- 16:57:38.876 INFO [18754]: _SERVER found -- 16:57:38.876 INFO [18754]: REMOTE_ADDR = 192.168.1.13 -- 16:57:38.876 INFO [18754]: SERVER_NAME = oameye.works.coregrade.com -- 16:57:38.876 INFO [18754]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=mno5akfvm4rghqc7r9kjhfvt4v27b8fb -- 16:57:38.876 INFO [18754]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:57:38.876 INFO [18754]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:38.888 INFO [18754]: COREGRADE is stopping... -- 16:57:38.888 DEBUG [18754]: Closing database connection -- 16:57:38.888 SQL [18754]: pgsql_close() -- 16:57:39.236 INFO [11549]: COREGRADE is starting... -- 16:57:39.236 INFO [11549]: Version from config: 1.0 -- 16:57:39.236 DEBUG [11549]: Connecting to database... -- 16:57:39.236 DEBUG [11549]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:39.236 SQL [11549]: pgsql_db_connect() -- 16:57:39.240 DEBUG [11549]: Database connection successful -- 16:57:39.240 INFO [11549]: _SERVER found -- 16:57:39.240 INFO [11549]: REMOTE_ADDR = 192.168.1.13 -- 16:57:39.240 INFO [11549]: SERVER_NAME = oameye.works.coregrade.com -- 16:57:39.240 INFO [11549]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=mno5akfvm4rghqc7r9kjhfvt4v27b8fb -- 16:57:39.240 INFO [11549]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:57:39.240 INFO [11549]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:39.252 INFO [11549]: COREGRADE is stopping... -- 16:57:39.252 DEBUG [11549]: Closing database connection -- 16:57:39.252 SQL [11549]: pgsql_close() -- 16:57:40.489 INFO [11549]: COREGRADE is starting... -- 16:57:40.489 INFO [11549]: Version from config: 1.0 -- 16:57:40.489 DEBUG [11549]: Connecting to database... -- 16:57:40.489 DEBUG [11549]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:40.489 SQL [11549]: pgsql_db_connect() -- 16:57:40.493 DEBUG [11549]: Database connection successful -- 16:57:40.493 INFO [11549]: _SERVER found -- 16:57:40.493 INFO [11549]: REMOTE_ADDR = 192.168.1.13 -- 16:57:40.493 INFO [11549]: SERVER_NAME = oameye.works.coregrade.com -- 16:57:40.493 INFO [11549]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=mno5akfvm4rghqc7r9kjhfvt4v27b8fb -- 16:57:40.493 INFO [11549]: QUERY_STRING = /member/page -- 16:57:40.493 INFO [11549]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:40.538 INFO [11549]: COREGRADE is stopping... -- 16:57:40.538 DEBUG [11549]: Closing database connection -- 16:57:40.538 SQL [11549]: pgsql_close() -- 16:57:40.735 INFO [11548]: COREGRADE is starting... -- 16:57:40.735 INFO [11548]: Version from config: 1.0 -- 16:57:40.735 DEBUG [11548]: Connecting to database... -- 16:57:40.735 DEBUG [11548]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:40.735 SQL [11548]: pgsql_db_connect() -- 16:57:40.740 DEBUG [11548]: Database connection successful -- 16:57:40.740 INFO [11548]: _SERVER found -- 16:57:40.740 INFO [11548]: REMOTE_ADDR = 192.168.1.13 -- 16:57:40.740 INFO [11548]: SERVER_NAME = oameye.works.coregrade.com -- 16:57:40.740 INFO [11548]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=mno5akfvm4rghqc7r9kjhfvt4v27b8fb -- 16:57:40.740 INFO [11548]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:57:40.740 INFO [11548]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:40.751 INFO [11548]: COREGRADE is stopping... -- 16:57:40.751 DEBUG [11548]: Closing database connection -- 16:57:40.751 SQL [11548]: pgsql_close() -- 17:05:10.883 INFO [11575]: COREGRADE is starting... -- 17:05:10.884 INFO [11575]: Version from config: 1.0 -- 17:05:10.884 DEBUG [11575]: Connecting to database... -- 17:05:10.884 DEBUG [11575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:10.884 SQL [11575]: pgsql_db_connect() -- 17:05:10.924 INFO [11575]: COREGRADE is starting... -- 17:05:10.924 INFO [11575]: Version from config: 1.0 -- 17:05:10.924 DEBUG [11575]: Connecting to database... -- 17:05:10.924 DEBUG [11575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:10.924 SQL [11575]: pgsql_db_connect() -- 17:05:10.928 DEBUG [11575]: Database connection successful -- 17:05:10.928 INFO [11575]: _SERVER found -- 17:05:10.928 INFO [11575]: REMOTE_ADDR = 192.168.1.13 -- 17:05:10.928 INFO [11575]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:10.928 INFO [11575]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=mno5akfvm4rghqc7r9kjhfvt4v27b8fb -- 17:05:10.928 INFO [11575]: QUERY_STRING = -- 17:05:10.928 INFO [11575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:05:10.928 INFO [11575]: SystemStatus()09-09-********~************ -- 17:05:10.928 INFO [11575]: long coregrade_api_main(CVars in, CVars &out) -- 17:05:10.928 INFO [11575]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 17:05:10.928 INFO [11575]: account calls -- 17:05:10.928 INFO [11575]: account_calls() -- 17:05:10.928 INFO [11575]: LoginCoreGradeAccount() -- 17:05:10.928 FLOG_MAX [11575]: REQ_STRING(username) -- 17:05:10.928 FLOG_MAX [11575]: REQ_STRING(password) -- 17:05:10.928 FLOG_MAX [11575]: REQ_STRING(sessionid) -- 17:05:10.929 FLOG_MAX [11575]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:05:10.929 SQL [11575]: pgsql_query() -- 17:05:10.929 SQL [11575]: About to run query: -- 17:05:10.929 SQL [11575]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 17:05:10.932 SQL [11575]: Found rows: 1 -- 17:05:10.932 FLOG_MAX [11575]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 17:05:10.932 INFO [11575]: long SessionCheck(long uid, const char *sessionid, int create ) -- 17:05:10.932 SQL [11575]: pgsql_exec() -- 17:05:10.932 SQL [11575]: About to run query: -- 17:05:10.932 SQL [11575]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 17:05:10.933 SQL [11575]: PQcmdTuples: 0 -- 17:05:10.933 SQL [11575]: Affected rows: 0 -- 17:05:10.933 SQL [11575]: pgsql_exec() -- 17:05:10.933 SQL [11575]: About to run query: -- 17:05:10.933 SQL [11575]: DELETE FROM members_session WHERE member_id=5 -- 17:05:10.934 SQL [11575]: PQcmdTuples: 1 -- 17:05:10.934 SQL [11575]: Affected rows: 1 -- 17:05:10.934 SQL [11575]: pgsql_query() -- 17:05:10.934 SQL [11575]: About to run query: -- 17:05:10.934 SQL [11575]: SELECT * FROM members_session WHERE member_id=5 AND session<>'15AB11E9205588FDE032F53F1FD0EF49' -- 17:05:10.934 SQL [11575]: Found rows: 0 -- 17:05:10.934 SQL [11575]: Found rows: 0 -- 17:05:10.934 FLOG_MAX [11575]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:05:10.934 SQL [11575]: pgsql_query() -- 17:05:10.934 SQL [11575]: About to run query: -- 17:05:10.934 SQL [11575]: SELECT * FROM members_session WHERE member_id=5 AND session='15AB11E9205588FDE032F53F1FD0EF49' -- 17:05:10.935 SQL [11575]: Found rows: 0 -- 17:05:10.935 SQL [11575]: Found rows: 0 -- 17:05:10.935 FLOG_MAX [11575]: insert_db_record() -- 17:05:10.935 SQL [11575]: pgsql_exec() -- 17:05:10.935 SQL [11575]: About to run query: -- 17:05:10.935 SQL [11575]: INSERT INTO members_session (member_id,session) VALUES ('5','15AB11E9205588FDE032F53F1FD0EF49') -- 17:05:10.936 SQL [11575]: PQcmdTuples: 1 -- 17:05:10.936 SQL [11575]: Affected rows: 1 -- 17:05:10.936 FLOG_MAX [11575]: SELECT currval('members_session_id_seq') -- 17:05:10.936 SQL [11575]: pgsql_query() -- 17:05:10.936 SQL [11575]: About to run query: -- 17:05:10.936 SQL [11575]: SELECT currval('members_session_id_seq') -- 17:05:10.937 SQL [11575]: Found rows: 1 -- 17:05:10.937 INFO [11575]: CreateDefaultPage() -- 17:05:10.937 FLOG_MAX [11575]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:05:10.937 SQL [11575]: pgsql_query() -- 17:05:10.937 SQL [11575]: About to run query: -- 17:05:10.937 SQL [11575]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 17:05:10.937 SQL [11575]: Found rows: 1 -- 17:05:10.937 FLOG_MAX [11575]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 17:05:10.937 SQL [11575]: pgsql_query() -- 17:05:10.937 SQL [11575]: About to run query: -- 17:05:10.937 SQL [11575]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 17:05:10.937 SQL [11575]: Found rows: 1 -- 17:05:10.937 INFO [11575]: /CreateDefaultPage() -- 17:05:10.937 INFO [11575]: /LoginCoreGradeAccount() -- 17:05:10.937 INFO [11575]: RET: added=2020-02-05 06:47:23.982154 -- 17:05:10.937 INFO [11575]: RET: email=ameye+11@chiefsoft.com -- 17:05:10.937 INFO [11575]: RET: firstname=Olu -- 17:05:10.937 INFO [11575]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 17:05:10.937 INFO [11575]: RET: id=5 -- 17:05:10.937 INFO [11575]: RET: last_login= -- 17:05:10.937 INFO [11575]: RET: lastname=Amey -- 17:05:10.937 INFO [11575]: RET: loc=192.168.1.13 -- 17:05:10.937 INFO [11575]: RET: member_id=5 -- 17:05:10.937 INFO [11575]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 17:05:10.937 INFO [11575]: RET: phone= -- 17:05:10.937 INFO [11575]: RET: pid= -- 17:05:10.937 INFO [11575]: RET: result=YES I GET TO BACK END -- 17:05:10.937 INFO [11575]: RET: sessionid=15AB11E9205588FDE032F53F1FD0EF49 -- 17:05:10.937 INFO [11575]: RET: status=1 -- 17:05:10.937 INFO [11575]: RET: stauts=OK -- 17:05:10.937 INFO [11575]: RET: username=ameye+11@chiefsoft.com -- 17:05:10.937 INFO [11575]: RET: verified= -- 17:05:10.939 INFO [11575]: COREGRADE is stopping... -- 17:05:10.939 DEBUG [11575]: Closing database connection -- 17:05:10.939 SQL [11575]: pgsql_close() -- 17:05:10.888 DEBUG [11575]: Database connection successful -- 17:05:10.888 INFO [11575]: _SERVER found -- 17:05:10.888 INFO [11575]: REMOTE_ADDR = 192.168.1.13 -- 17:05:10.888 INFO [11575]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:10.888 INFO [11575]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=mno5akfvm4rghqc7r9kjhfvt4v27b8fb -- 17:05:10.888 INFO [11575]: QUERY_STRING = /auth -- 17:05:10.888 INFO [11575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:05:10.940 INFO [11575]: COREGRADE is stopping... -- 17:05:10.940 DEBUG [11575]: Closing database connection -- 17:05:10.940 SQL [11575]: pgsql_close() -- 17:05:10.958 INFO [11575]: COREGRADE is starting... -- 17:05:10.958 INFO [11575]: Version from config: 1.0 -- 17:05:10.959 DEBUG [11575]: Connecting to database... -- 17:05:10.959 DEBUG [11575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:10.959 SQL [11575]: pgsql_db_connect() -- 17:05:10.962 DEBUG [11575]: Database connection successful -- 17:05:10.962 INFO [11575]: _SERVER found -- 17:05:10.962 INFO [11575]: REMOTE_ADDR = 192.168.1.13 -- 17:05:10.962 INFO [11575]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:10.962 INFO [11575]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=dlokvnjsam2bscbh1018pob433t42nm5 -- 17:05:10.962 INFO [11575]: QUERY_STRING = /member/index -- 17:05:10.962 INFO [11575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:05:11.003 INFO [11575]: COREGRADE is stopping... -- 17:05:11.003 DEBUG [11575]: Closing database connection -- 17:05:11.003 SQL [11575]: pgsql_close() -- 17:05:11.304 INFO [11550]: COREGRADE is starting... -- 17:05:11.305 INFO [11550]: Version from config: 1.0 -- 17:05:11.305 DEBUG [11550]: Connecting to database... -- 17:05:11.305 DEBUG [11550]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:11.305 SQL [11550]: pgsql_db_connect() -- 17:05:11.309 DEBUG [11550]: Database connection successful -- 17:05:11.309 INFO [11550]: _SERVER found -- 17:05:11.309 INFO [11550]: REMOTE_ADDR = 192.168.1.13 -- 17:05:11.309 INFO [11550]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:11.309 INFO [11550]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=dlokvnjsam2bscbh1018pob433t42nm5 -- 17:05:11.309 INFO [11550]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:05:11.309 INFO [11550]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:05:11.322 INFO [11550]: COREGRADE is stopping... -- 17:05:11.322 DEBUG [11550]: Closing database connection -- 17:05:11.322 SQL [11550]: pgsql_close() -- 17:05:11.388 INFO [11550]: COREGRADE is starting... -- 17:05:11.388 INFO [11550]: Version from config: 1.0 -- 17:05:11.388 DEBUG [11550]: Connecting to database... -- 17:05:11.388 DEBUG [11550]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:11.388 SQL [11550]: pgsql_db_connect() -- 17:05:11.392 DEBUG [11550]: Database connection successful -- 17:05:11.392 INFO [11550]: _SERVER found -- 17:05:11.392 INFO [11550]: REMOTE_ADDR = 192.168.1.13 -- 17:05:11.392 INFO [11550]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:11.392 INFO [11550]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=dlokvnjsam2bscbh1018pob433t42nm5 -- 17:05:11.392 INFO [11550]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:05:11.392 INFO [11550]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:05:11.403 INFO [11550]: COREGRADE is stopping... -- 17:05:11.403 DEBUG [11550]: Closing database connection -- 17:05:11.403 SQL [11550]: pgsql_close() -- 17:05:12.786 INFO [11550]: COREGRADE is starting... -- 17:05:12.786 INFO [11550]: Version from config: 1.0 -- 17:05:12.786 DEBUG [11550]: Connecting to database... -- 17:05:12.786 DEBUG [11550]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:12.786 SQL [11550]: pgsql_db_connect() -- 17:05:12.790 DEBUG [11550]: Database connection successful -- 17:05:12.790 INFO [11550]: _SERVER found -- 17:05:12.790 INFO [11550]: REMOTE_ADDR = 192.168.1.13 -- 17:05:12.790 INFO [11550]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:12.790 INFO [11550]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=dlokvnjsam2bscbh1018pob433t42nm5 -- 17:05:12.790 INFO [11550]: QUERY_STRING = /member/page -- 17:05:12.790 INFO [11550]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:05:12.835 INFO [11550]: COREGRADE is stopping... -- 17:05:12.835 DEBUG [11550]: Closing database connection -- 17:05:12.835 SQL [11550]: pgsql_close() -- 17:05:13.022 INFO [11550]: COREGRADE is starting... -- 17:05:13.022 INFO [11550]: Version from config: 1.0 -- 17:05:13.022 DEBUG [11550]: Connecting to database... -- 17:05:13.022 DEBUG [11550]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:13.022 SQL [11550]: pgsql_db_connect() -- 17:05:13.027 DEBUG [11550]: Database connection successful -- 17:05:13.027 INFO [11550]: _SERVER found -- 17:05:13.027 INFO [11550]: REMOTE_ADDR = 192.168.1.13 -- 17:05:13.027 INFO [11550]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:13.027 INFO [11550]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=dlokvnjsam2bscbh1018pob433t42nm5 -- 17:05:13.027 INFO [11550]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:05:13.027 INFO [11550]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:05:13.038 INFO [11550]: COREGRADE is stopping... -- 17:05:13.038 DEBUG [11550]: Closing database connection -- 17:05:13.038 SQL [11550]: pgsql_close() -- 17:05:33.292 INFO [11549]: COREGRADE is starting... -- 17:05:33.293 INFO [11549]: Version from config: 1.0 -- 17:05:33.293 DEBUG [11549]: Connecting to database... -- 17:05:33.293 DEBUG [11549]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:33.293 SQL [11549]: pgsql_db_connect() -- 17:05:33.297 DEBUG [11549]: Database connection successful -- 17:05:33.297 INFO [11549]: _SERVER found -- 17:05:33.297 INFO [11549]: REMOTE_ADDR = 192.168.1.13 -- 17:05:33.297 INFO [11549]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:33.297 INFO [11549]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=dlokvnjsam2bscbh1018pob433t42nm5 -- 17:05:33.297 INFO [11549]: QUERY_STRING = /member/viewCardAddAction -- 17:05:33.297 INFO [11549]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:05:33.330 INFO [11549]: COREGRADE is stopping... -- 17:05:33.330 DEBUG [11549]: Closing database connection -- 17:05:33.330 SQL [11549]: pgsql_close() -- 17:05:35.745 INFO [11549]: COREGRADE is starting... -- 17:05:35.746 INFO [11549]: Version from config: 1.0 -- 17:05:35.746 DEBUG [11549]: Connecting to database... -- 17:05:35.746 DEBUG [11549]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:35.746 SQL [11549]: pgsql_db_connect() -- 17:05:35.750 DEBUG [11549]: Database connection successful -- 17:05:35.750 INFO [11549]: _SERVER found -- 17:05:35.750 INFO [11549]: REMOTE_ADDR = 192.168.1.13 -- 17:05:35.750 INFO [11549]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:35.750 INFO [11549]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=dlokvnjsam2bscbh1018pob433t42nm5 -- 17:05:35.750 INFO [11549]: QUERY_STRING = /member/viewCardAddAction -- 17:05:35.750 INFO [11549]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:05:35.780 INFO [11549]: COREGRADE is stopping... -- 17:05:35.780 DEBUG [11549]: Closing database connection -- 17:05:35.780 SQL [11549]: pgsql_close() -- 17:21:21.571 INFO [13451]: COREGRADE is starting... -- 17:21:21.571 INFO [13451]: Version from config: 1.0 -- 17:21:21.571 DEBUG [13451]: Connecting to database... -- 17:21:21.571 DEBUG [13451]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:21:21.571 SQL [13451]: pgsql_db_connect() -- 17:21:21.612 INFO [13451]: COREGRADE is starting... -- 17:21:21.613 INFO [13451]: Version from config: 1.0 -- 17:21:21.613 DEBUG [13451]: Connecting to database... -- 17:21:21.613 DEBUG [13451]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:21:21.613 SQL [13451]: pgsql_db_connect() -- 17:21:21.617 DEBUG [13451]: Database connection successful -- 17:21:21.617 INFO [13451]: _SERVER found -- 17:21:21.617 INFO [13451]: REMOTE_ADDR = 192.168.1.13 -- 17:21:21.617 INFO [13451]: SERVER_NAME = oameye.works.coregrade.com -- 17:21:21.617 INFO [13451]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=dlokvnjsam2bscbh1018pob433t42nm5 -- 17:21:21.617 INFO [13451]: QUERY_STRING = -- 17:21:21.617 INFO [13451]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:21:21.617 INFO [13451]: SystemStatus()09-09-********~************ -- 17:21:21.617 INFO [13451]: long coregrade_api_main(CVars in, CVars &out) -- 17:21:21.617 INFO [13451]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 17:21:21.617 INFO [13451]: account calls -- 17:21:21.617 INFO [13451]: account_calls() -- 17:21:21.617 INFO [13451]: LoginCoreGradeAccount() -- 17:21:21.617 FLOG_MAX [13451]: REQ_STRING(username) -- 17:21:21.617 FLOG_MAX [13451]: REQ_STRING(password) -- 17:21:21.617 FLOG_MAX [13451]: REQ_STRING(sessionid) -- 17:21:21.617 FLOG_MAX [13451]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:21:21.617 SQL [13451]: pgsql_query() -- 17:21:21.617 SQL [13451]: About to run query: -- 17:21:21.617 SQL [13451]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 17:21:21.621 SQL [13451]: Found rows: 1 -- 17:21:21.621 FLOG_MAX [13451]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 17:21:21.621 INFO [13451]: long SessionCheck(long uid, const char *sessionid, int create ) -- 17:21:21.621 SQL [13451]: pgsql_exec() -- 17:21:21.621 SQL [13451]: About to run query: -- 17:21:21.621 SQL [13451]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 17:21:21.622 SQL [13451]: PQcmdTuples: 0 -- 17:21:21.622 SQL [13451]: Affected rows: 0 -- 17:21:21.622 SQL [13451]: pgsql_exec() -- 17:21:21.622 SQL [13451]: About to run query: -- 17:21:21.622 SQL [13451]: DELETE FROM members_session WHERE member_id=5 -- 17:21:21.623 SQL [13451]: PQcmdTuples: 1 -- 17:21:21.623 SQL [13451]: Affected rows: 1 -- 17:21:21.623 SQL [13451]: pgsql_query() -- 17:21:21.623 SQL [13451]: About to run query: -- 17:21:21.623 SQL [13451]: SELECT * FROM members_session WHERE member_id=5 AND session<>'A6B279CD27939CED7A0B082899CB5679' -- 17:21:21.623 SQL [13451]: Found rows: 0 -- 17:21:21.623 SQL [13451]: Found rows: 0 -- 17:21:21.623 FLOG_MAX [13451]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:21:21.623 SQL [13451]: pgsql_query() -- 17:21:21.623 SQL [13451]: About to run query: -- 17:21:21.623 SQL [13451]: SELECT * FROM members_session WHERE member_id=5 AND session='A6B279CD27939CED7A0B082899CB5679' -- 17:21:21.624 SQL [13451]: Found rows: 0 -- 17:21:21.624 SQL [13451]: Found rows: 0 -- 17:21:21.624 FLOG_MAX [13451]: insert_db_record() -- 17:21:21.624 SQL [13451]: pgsql_exec() -- 17:21:21.624 SQL [13451]: About to run query: -- 17:21:21.624 SQL [13451]: INSERT INTO members_session (member_id,session) VALUES ('5','A6B279CD27939CED7A0B082899CB5679') -- 17:21:21.626 SQL [13451]: PQcmdTuples: 1 -- 17:21:21.626 SQL [13451]: Affected rows: 1 -- 17:21:21.626 FLOG_MAX [13451]: SELECT currval('members_session_id_seq') -- 17:21:21.626 SQL [13451]: pgsql_query() -- 17:21:21.626 SQL [13451]: About to run query: -- 17:21:21.626 SQL [13451]: SELECT currval('members_session_id_seq') -- 17:21:21.626 SQL [13451]: Found rows: 1 -- 17:21:21.626 INFO [13451]: CreateDefaultPage() -- 17:21:21.626 FLOG_MAX [13451]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:21:21.626 SQL [13451]: pgsql_query() -- 17:21:21.626 SQL [13451]: About to run query: -- 17:21:21.626 SQL [13451]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 17:21:21.626 SQL [13451]: Found rows: 1 -- 17:21:21.626 FLOG_MAX [13451]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 17:21:21.626 SQL [13451]: pgsql_query() -- 17:21:21.626 SQL [13451]: About to run query: -- 17:21:21.626 SQL [13451]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 17:21:21.627 SQL [13451]: Found rows: 1 -- 17:21:21.627 INFO [13451]: /CreateDefaultPage() -- 17:21:21.627 INFO [13451]: /LoginCoreGradeAccount() -- 17:21:21.627 INFO [13451]: RET: added=2020-02-05 06:47:23.982154 -- 17:21:21.627 INFO [13451]: RET: email=ameye+11@chiefsoft.com -- 17:21:21.627 INFO [13451]: RET: firstname=Olu -- 17:21:21.627 INFO [13451]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 17:21:21.627 INFO [13451]: RET: id=5 -- 17:21:21.627 INFO [13451]: RET: last_login= -- 17:21:21.627 INFO [13451]: RET: lastname=Amey -- 17:21:21.627 INFO [13451]: RET: loc=192.168.1.13 -- 17:21:21.627 INFO [13451]: RET: member_id=5 -- 17:21:21.627 INFO [13451]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 17:21:21.627 INFO [13451]: RET: phone= -- 17:21:21.627 INFO [13451]: RET: pid= -- 17:21:21.627 INFO [13451]: RET: result=YES I GET TO BACK END -- 17:21:21.627 INFO [13451]: RET: sessionid=A6B279CD27939CED7A0B082899CB5679 -- 17:21:21.627 INFO [13451]: RET: status=1 -- 17:21:21.627 INFO [13451]: RET: stauts=OK -- 17:21:21.627 INFO [13451]: RET: username=ameye+11@chiefsoft.com -- 17:21:21.627 INFO [13451]: RET: verified= -- 17:21:21.629 INFO [13451]: COREGRADE is stopping... -- 17:21:21.629 DEBUG [13451]: Closing database connection -- 17:21:21.629 SQL [13451]: pgsql_close() -- 17:21:21.576 DEBUG [13451]: Database connection successful -- 17:21:21.576 INFO [13451]: _SERVER found -- 17:21:21.576 INFO [13451]: REMOTE_ADDR = 192.168.1.13 -- 17:21:21.576 INFO [13451]: SERVER_NAME = oameye.works.coregrade.com -- 17:21:21.576 INFO [13451]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=dlokvnjsam2bscbh1018pob433t42nm5 -- 17:21:21.576 INFO [13451]: QUERY_STRING = /auth -- 17:21:21.576 INFO [13451]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:21:21.629 INFO [13451]: COREGRADE is stopping... -- 17:21:21.629 DEBUG [13451]: Closing database connection -- 17:21:21.629 SQL [13451]: pgsql_close() -- 17:21:21.646 INFO [13451]: COREGRADE is starting... -- 17:21:21.646 INFO [13451]: Version from config: 1.0 -- 17:21:21.646 DEBUG [13451]: Connecting to database... -- 17:21:21.646 DEBUG [13451]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:21:21.646 SQL [13451]: pgsql_db_connect() -- 17:21:21.650 DEBUG [13451]: Database connection successful -- 17:21:21.650 INFO [13451]: _SERVER found -- 17:21:21.650 INFO [13451]: REMOTE_ADDR = 192.168.1.13 -- 17:21:21.650 INFO [13451]: SERVER_NAME = oameye.works.coregrade.com -- 17:21:21.650 INFO [13451]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=mj14fvqsqfivuuo36auua5en1tkrn29o -- 17:21:21.650 INFO [13451]: QUERY_STRING = /member/index -- 17:21:21.650 INFO [13451]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:21:21.691 INFO [13451]: COREGRADE is stopping... -- 17:21:21.691 DEBUG [13451]: Closing database connection -- 17:21:21.691 SQL [13451]: pgsql_close() -- 17:21:21.953 INFO [13455]: COREGRADE is starting... -- 17:21:21.954 INFO [13455]: Version from config: 1.0 -- 17:21:21.954 DEBUG [13455]: Connecting to database... -- 17:21:21.954 DEBUG [13455]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:21:21.954 SQL [13455]: pgsql_db_connect() -- 17:21:21.958 DEBUG [13455]: Database connection successful -- 17:21:21.958 INFO [13455]: _SERVER found -- 17:21:21.958 INFO [13455]: REMOTE_ADDR = 192.168.1.13 -- 17:21:21.958 INFO [13455]: SERVER_NAME = oameye.works.coregrade.com -- 17:21:21.958 INFO [13455]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=mj14fvqsqfivuuo36auua5en1tkrn29o -- 17:21:21.958 INFO [13455]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:21:21.958 INFO [13455]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:21:21.970 INFO [13455]: COREGRADE is stopping... -- 17:21:21.970 DEBUG [13455]: Closing database connection -- 17:21:21.970 SQL [13455]: pgsql_close() -- 17:21:22.012 INFO [13455]: COREGRADE is starting... -- 17:21:22.012 INFO [13455]: Version from config: 1.0 -- 17:21:22.012 DEBUG [13455]: Connecting to database... -- 17:21:22.012 DEBUG [13455]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:21:22.012 SQL [13455]: pgsql_db_connect() -- 17:21:22.016 DEBUG [13455]: Database connection successful -- 17:21:22.016 INFO [13455]: _SERVER found -- 17:21:22.016 INFO [13455]: REMOTE_ADDR = 192.168.1.13 -- 17:21:22.016 INFO [13455]: SERVER_NAME = oameye.works.coregrade.com -- 17:21:22.016 INFO [13455]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=mj14fvqsqfivuuo36auua5en1tkrn29o -- 17:21:22.016 INFO [13455]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:21:22.016 INFO [13455]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:21:22.027 INFO [13455]: COREGRADE is stopping... -- 17:21:22.027 DEBUG [13455]: Closing database connection -- 17:21:22.027 SQL [13455]: pgsql_close() -- 17:21:23.976 INFO [13455]: COREGRADE is starting... -- 17:21:23.976 INFO [13455]: Version from config: 1.0 -- 17:21:23.976 DEBUG [13455]: Connecting to database... -- 17:21:23.976 DEBUG [13455]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:21:23.976 SQL [13455]: pgsql_db_connect() -- 17:21:23.980 DEBUG [13455]: Database connection successful -- 17:21:23.980 INFO [13455]: _SERVER found -- 17:21:23.980 INFO [13455]: REMOTE_ADDR = 192.168.1.13 -- 17:21:23.980 INFO [13455]: SERVER_NAME = oameye.works.coregrade.com -- 17:21:23.980 INFO [13455]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=mj14fvqsqfivuuo36auua5en1tkrn29o -- 17:21:23.980 INFO [13455]: QUERY_STRING = /member/page -- 17:21:23.980 INFO [13455]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:21:24.023 INFO [13455]: COREGRADE is stopping... -- 17:21:24.023 DEBUG [13455]: Closing database connection -- 17:21:24.023 SQL [13455]: pgsql_close() -- 17:21:24.183 INFO [13451]: COREGRADE is starting... -- 17:21:24.183 INFO [13451]: Version from config: 1.0 -- 17:21:24.183 DEBUG [13451]: Connecting to database... -- 17:21:24.183 DEBUG [13451]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:21:24.183 SQL [13451]: pgsql_db_connect() -- 17:21:24.187 DEBUG [13451]: Database connection successful -- 17:21:24.187 INFO [13451]: _SERVER found -- 17:21:24.187 INFO [13451]: REMOTE_ADDR = 192.168.1.13 -- 17:21:24.187 INFO [13451]: SERVER_NAME = oameye.works.coregrade.com -- 17:21:24.187 INFO [13451]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=mj14fvqsqfivuuo36auua5en1tkrn29o -- 17:21:24.187 INFO [13451]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:21:24.187 INFO [13451]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:21:24.198 INFO [13451]: COREGRADE is stopping... -- 17:21:24.198 DEBUG [13451]: Closing database connection -- 17:21:24.198 SQL [13451]: pgsql_close() -- 17:21:24.295 INFO [19554]: COREGRADE is starting... -- 17:21:24.295 INFO [19554]: Version from config: 1.0 -- 17:21:24.295 DEBUG [19554]: Connecting to database... -- 17:21:24.295 DEBUG [19554]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:21:24.295 SQL [19554]: pgsql_db_connect() -- 17:21:24.299 DEBUG [19554]: Database connection successful -- 17:21:24.299 INFO [19554]: _SERVER found -- 17:21:24.299 INFO [19554]: REMOTE_ADDR = 192.168.1.13 -- 17:21:24.299 INFO [19554]: SERVER_NAME = oameye.works.coregrade.com -- 17:21:24.299 INFO [19554]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=mj14fvqsqfivuuo36auua5en1tkrn29o -- 17:21:24.299 INFO [19554]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:21:24.299 INFO [19554]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:21:24.312 INFO [19554]: COREGRADE is stopping... -- 17:21:24.312 DEBUG [19554]: Closing database connection -- 17:21:24.312 SQL [19554]: pgsql_close() -- 18:23:35.735 INFO [11550]: COREGRADE is starting... -- 18:23:35.736 INFO [11550]: Version from config: 1.0 -- 18:23:35.736 DEBUG [11550]: Connecting to database... -- 18:23:35.736 DEBUG [11550]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:23:35.736 SQL [11550]: pgsql_db_connect() -- 18:23:35.740 DEBUG [11550]: Database connection successful -- 18:23:35.740 INFO [11550]: _SERVER found -- 18:23:35.740 INFO [11550]: REMOTE_ADDR = 192.168.1.13 -- 18:23:35.740 INFO [11550]: SERVER_NAME = oameye.works.coregrade.com -- 18:23:35.740 INFO [11550]: QUERY_STRING = /Telerik.Web.UI.WebResource.axd -- 18:23:35.740 INFO [11550]: HTTP_X_FORWARDED_FOR = 128.14.134.134 -- 18:23:35.755 INFO [11550]: COREGRADE is stopping... -- 18:23:35.755 DEBUG [11550]: Closing database connection -- 18:23:35.755 SQL [11550]: pgsql_close() -- 18:47:42.925 INFO [11549]: COREGRADE is starting... -- 18:47:42.926 INFO [11549]: Version from config: 1.0 -- 18:47:42.926 DEBUG [11549]: Connecting to database... -- 18:47:42.926 DEBUG [11549]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:42.926 SQL [11549]: pgsql_db_connect() -- 18:47:42.930 DEBUG [11549]: Database connection successful -- 18:47:42.930 INFO [11549]: _SERVER found -- 18:47:42.930 INFO [11549]: REMOTE_ADDR = 192.168.1.13 -- 18:47:42.930 INFO [11549]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:47:42.930 INFO [11549]: HTTP_COOKIE = _ga=GA1.2.701787883.1578778832 -- 18:47:42.930 INFO [11549]: QUERY_STRING = -- 18:47:42.930 INFO [11549]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:47:42.966 INFO [11549]: COREGRADE is stopping... -- 18:47:42.966 DEBUG [11549]: Closing database connection -- 18:47:42.966 SQL [11549]: pgsql_close() -- 18:47:43.668 INFO [13455]: COREGRADE is starting... -- 18:47:43.668 INFO [13455]: Version from config: 1.0 -- 18:47:43.668 DEBUG [13455]: Connecting to database... -- 18:47:43.668 DEBUG [13455]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:43.668 SQL [13455]: pgsql_db_connect() -- 18:47:43.672 DEBUG [13455]: Database connection successful -- 18:47:43.672 INFO [13455]: _SERVER found -- 18:47:43.672 INFO [13455]: REMOTE_ADDR = 192.168.1.13 -- 18:47:43.672 INFO [13455]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:47:43.672 INFO [13455]: HTTP_COOKIE = _ga=GA1.2.701787883.1578778832; ci_session=ugc9vs2g76s24gstknu8391bhk3gb99f -- 18:47:43.672 INFO [13455]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:47:43.672 INFO [13455]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:47:43.684 INFO [13455]: COREGRADE is stopping... -- 18:47:43.684 DEBUG [13455]: Closing database connection -- 18:47:43.684 SQL [13455]: pgsql_close() -- 18:47:43.715 INFO [11548]: COREGRADE is starting... -- 18:47:43.715 INFO [11548]: Version from config: 1.0 -- 18:47:43.715 DEBUG [11548]: Connecting to database... -- 18:47:43.715 DEBUG [11548]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:43.715 SQL [11548]: pgsql_db_connect() -- 18:47:43.719 DEBUG [11548]: Database connection successful -- 18:47:43.719 INFO [11548]: _SERVER found -- 18:47:43.719 INFO [11548]: REMOTE_ADDR = 192.168.1.13 -- 18:47:43.719 INFO [11548]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:47:43.719 INFO [11548]: HTTP_COOKIE = _ga=GA1.2.701787883.1578778832; ci_session=ugc9vs2g76s24gstknu8391bhk3gb99f -- 18:47:43.719 INFO [11548]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:47:43.719 INFO [11548]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:47:43.731 INFO [11548]: COREGRADE is stopping... -- 18:47:43.731 DEBUG [11548]: Closing database connection -- 18:47:43.731 SQL [11548]: pgsql_close() -- 18:47:45.473 INFO [11548]: COREGRADE is starting... -- 18:47:45.473 INFO [11548]: Version from config: 1.0 -- 18:47:45.473 DEBUG [11548]: Connecting to database... -- 18:47:45.473 DEBUG [11548]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:45.473 SQL [11548]: pgsql_db_connect() -- 18:47:45.487 INFO [13455]: COREGRADE is starting... -- 18:47:45.487 INFO [13455]: Version from config: 1.0 -- 18:47:45.487 DEBUG [13455]: Connecting to database... -- 18:47:45.487 DEBUG [13455]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:45.487 SQL [13455]: pgsql_db_connect() -- 18:47:45.477 DEBUG [11548]: Database connection successful -- 18:47:45.477 INFO [11548]: _SERVER found -- 18:47:45.477 INFO [11548]: REMOTE_ADDR = 192.168.1.13 -- 18:47:45.477 INFO [11548]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:47:45.477 INFO [11548]: HTTP_COOKIE = _ga=GA1.2.701787883.1578778832; ci_session=ugc9vs2g76s24gstknu8391bhk3gb99f; _gid=GA1.2.1101736530.1582588065; _gat_gtag_UA_54829827_2=1 -- 18:47:45.477 INFO [11548]: QUERY_STRING = /welcome/viewLogin -- 18:47:45.477 INFO [11548]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:47:45.508 INFO [11548]: COREGRADE is stopping... -- 18:47:45.509 DEBUG [11548]: Closing database connection -- 18:47:45.509 SQL [11548]: pgsql_close() -- 18:47:45.491 DEBUG [13455]: Database connection successful -- 18:47:45.491 INFO [13455]: _SERVER found -- 18:47:45.491 INFO [13455]: REMOTE_ADDR = 192.168.1.13 -- 18:47:45.491 INFO [13455]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:47:45.491 INFO [13455]: HTTP_COOKIE = _ga=GA1.2.701787883.1578778832; ci_session=ugc9vs2g76s24gstknu8391bhk3gb99f; _gid=GA1.2.1101736530.1582588065; _gat_gtag_UA_54829827_2=1 -- 18:47:45.491 INFO [13455]: QUERY_STRING = /auth -- 18:47:45.491 INFO [13455]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:47:45.523 INFO [13455]: COREGRADE is stopping... -- 18:47:45.524 DEBUG [13455]: Closing database connection -- 18:47:45.524 SQL [13455]: pgsql_close() -- 18:47:45.841 INFO [13455]: COREGRADE is starting... -- 18:47:45.841 INFO [13455]: Version from config: 1.0 -- 18:47:45.841 DEBUG [13455]: Connecting to database... -- 18:47:45.841 DEBUG [13455]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:45.841 SQL [13455]: pgsql_db_connect() -- 18:47:45.845 DEBUG [13455]: Database connection successful -- 18:47:45.845 INFO [13455]: _SERVER found -- 18:47:45.845 INFO [13455]: REMOTE_ADDR = 192.168.1.13 -- 18:47:45.845 INFO [13455]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:47:45.845 INFO [13455]: HTTP_COOKIE = _ga=GA1.2.701787883.1578778832; ci_session=ugc9vs2g76s24gstknu8391bhk3gb99f; _gid=GA1.2.1101736530.1582588065; _gat_gtag_UA_54829827_2=1 -- 18:47:45.845 INFO [13455]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:47:45.845 INFO [13455]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:47:45.856 INFO [13455]: COREGRADE is stopping... -- 18:47:45.856 DEBUG [13455]: Closing database connection -- 18:47:45.856 SQL [13455]: pgsql_close() -- 18:47:46.149 INFO [11548]: COREGRADE is starting... -- 18:47:46.150 INFO [11548]: Version from config: 1.0 -- 18:47:46.150 DEBUG [11548]: Connecting to database... -- 18:47:46.150 DEBUG [11548]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:46.150 SQL [11548]: pgsql_db_connect() -- 18:47:46.154 DEBUG [11548]: Database connection successful -- 18:47:46.154 INFO [11548]: _SERVER found -- 18:47:46.154 INFO [11548]: REMOTE_ADDR = 192.168.1.13 -- 18:47:46.154 INFO [11548]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:47:46.154 INFO [11548]: HTTP_COOKIE = _ga=GA1.2.701787883.1578778832; ci_session=ugc9vs2g76s24gstknu8391bhk3gb99f; _gid=GA1.2.1101736530.1582588065; _gat_gtag_UA_54829827_2=1 -- 18:47:46.154 INFO [11548]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 18:47:46.154 INFO [11548]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:47:46.165 INFO [11548]: COREGRADE is stopping... -- 18:47:46.165 DEBUG [11548]: Closing database connection -- 18:47:46.165 SQL [11548]: pgsql_close() -- 18:47:46.187 INFO [11548]: COREGRADE is starting... -- 18:47:46.188 INFO [11548]: Version from config: 1.0 -- 18:47:46.188 DEBUG [11548]: Connecting to database... -- 18:47:46.188 DEBUG [11548]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:46.188 SQL [11548]: pgsql_db_connect() -- 18:47:46.191 DEBUG [11548]: Database connection successful -- 18:47:46.191 INFO [11548]: _SERVER found -- 18:47:46.191 INFO [11548]: REMOTE_ADDR = 192.168.1.13 -- 18:47:46.191 INFO [11548]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:47:46.191 INFO [11548]: HTTP_COOKIE = _ga=GA1.2.701787883.1578778832; ci_session=ugc9vs2g76s24gstknu8391bhk3gb99f; _gid=GA1.2.1101736530.1582588065; _gat_gtag_UA_54829827_2=1 -- 18:47:46.191 INFO [11548]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:47:46.191 INFO [11548]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:47:46.202 INFO [11548]: COREGRADE is stopping... -- 18:47:46.203 DEBUG [11548]: Closing database connection -- 18:47:46.203 SQL [11548]: pgsql_close() -- 18:47:57.770 INFO [19554]: COREGRADE is starting... -- 18:47:57.770 INFO [19554]: Version from config: 1.0 -- 18:47:57.770 DEBUG [19554]: Connecting to database... -- 18:47:57.770 DEBUG [19554]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:57.770 SQL [19554]: pgsql_db_connect() -- 18:47:57.775 DEBUG [19554]: Database connection successful -- 18:47:57.775 INFO [19554]: _SERVER found -- 18:47:57.775 INFO [19554]: REMOTE_ADDR = 192.168.1.13 -- 18:47:57.775 INFO [19554]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:47:57.775 INFO [19554]: HTTP_COOKIE = _ga=GA1.2.701787883.1578778832; ci_session=ugc9vs2g76s24gstknu8391bhk3gb99f; _gid=GA1.2.1101736530.1582588065; _gat_gtag_UA_54829827_2=1 -- 18:47:57.775 INFO [19554]: QUERY_STRING = /auth -- 18:47:57.775 INFO [19554]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:47:58.032 INFO [19554]: COREGRADE is starting... -- 18:47:58.032 INFO [19554]: Version from config: 1.0 -- 18:47:58.032 DEBUG [19554]: Connecting to database... -- 18:47:58.032 DEBUG [19554]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:58.032 SQL [19554]: pgsql_db_connect() -- 18:47:58.036 DEBUG [19554]: Database connection successful -- 18:47:58.036 INFO [19554]: _SERVER found -- 18:47:58.036 INFO [19554]: REMOTE_ADDR = 192.168.1.13 -- 18:47:58.036 INFO [19554]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:47:58.036 INFO [19554]: HTTP_COOKIE = _ga=GA1.2.701787883.1578778832; ci_session=ugc9vs2g76s24gstknu8391bhk3gb99f; _gid=GA1.2.1101736530.1582588065; _gat_gtag_UA_54829827_2=1 -- 18:47:58.036 INFO [19554]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:47:58.036 INFO [19554]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:47:58.047 INFO [19554]: COREGRADE is stopping... -- 18:47:58.047 DEBUG [19554]: Closing database connection -- 18:47:58.047 SQL [19554]: pgsql_close() -- 18:47:58.105 INFO [19554]: COREGRADE is starting... -- 18:47:58.105 INFO [19554]: Version from config: 1.0 -- 18:47:58.105 DEBUG [19554]: Connecting to database... -- 18:47:58.105 DEBUG [19554]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:58.106 SQL [19554]: pgsql_db_connect() -- 18:47:58.109 DEBUG [19554]: Database connection successful -- 18:47:58.109 INFO [19554]: _SERVER found -- 18:47:58.109 INFO [19554]: REMOTE_ADDR = 192.168.1.13 -- 18:47:58.109 INFO [19554]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:47:58.109 INFO [19554]: HTTP_COOKIE = _ga=GA1.2.701787883.1578778832; ci_session=ugc9vs2g76s24gstknu8391bhk3gb99f; _gid=GA1.2.1101736530.1582588065; _gat_gtag_UA_54829827_2=1 -- 18:47:58.109 INFO [19554]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:47:58.109 INFO [19554]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:47:58.120 INFO [19554]: COREGRADE is stopping... -- 18:47:58.120 DEBUG [19554]: Closing database connection -- 18:47:58.120 SQL [19554]: pgsql_close() -- 18:48:07.700 INFO [11575]: COREGRADE is starting... -- 18:48:07.700 INFO [11575]: Version from config: 1.0 -- 18:48:07.700 DEBUG [11575]: Connecting to database... -- 18:48:07.700 DEBUG [11575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:07.700 SQL [11575]: pgsql_db_connect() -- 18:48:07.704 DEBUG [11575]: Database connection successful -- 18:48:07.704 INFO [11575]: _SERVER found -- 18:48:07.704 INFO [11575]: REMOTE_ADDR = 192.168.1.13 -- 18:48:07.704 INFO [11575]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:48:07.704 INFO [11575]: HTTP_COOKIE = _ga=GA1.2.701787883.1578778832; ci_session=ugc9vs2g76s24gstknu8391bhk3gb99f; _gid=GA1.2.1101736530.1582588065; _gat_gtag_UA_54829827_2=1 -- 18:48:07.704 INFO [11575]: QUERY_STRING = /auth -- 18:48:07.704 INFO [11575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:48:07.787 INFO [11575]: COREGRADE is starting... -- 18:48:07.787 INFO [11575]: Version from config: 1.0 -- 18:48:07.787 DEBUG [11575]: Connecting to database... -- 18:48:07.787 DEBUG [11575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:07.787 SQL [11575]: pgsql_db_connect() -- 18:48:07.791 DEBUG [11575]: Database connection successful -- 18:48:07.791 INFO [11575]: _SERVER found -- 18:48:07.791 INFO [11575]: REMOTE_ADDR = 192.168.1.13 -- 18:48:07.791 INFO [11575]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:48:07.791 INFO [11575]: HTTP_COOKIE = _ga=GA1.2.701787883.1578778832; ci_session=ugc9vs2g76s24gstknu8391bhk3gb99f; _gid=GA1.2.1101736530.1582588065; _gat_gtag_UA_54829827_2=1 -- 18:48:07.791 INFO [11575]: QUERY_STRING = /member/index -- 18:48:07.791 INFO [11575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:48:07.802 INFO [11575]: COREGRADE is stopping... -- 18:48:07.802 DEBUG [11575]: Closing database connection -- 18:48:07.802 SQL [11575]: pgsql_close() -- 18:48:07.932 INFO [11575]: COREGRADE is starting... -- 18:48:07.932 INFO [11575]: Version from config: 1.0 -- 18:48:07.932 DEBUG [11575]: Connecting to database... -- 18:48:07.932 DEBUG [11575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:07.932 SQL [11575]: pgsql_db_connect() -- 18:48:07.936 DEBUG [11575]: Database connection successful -- 18:48:07.936 INFO [11575]: _SERVER found -- 18:48:07.936 INFO [11575]: REMOTE_ADDR = 192.168.1.13 -- 18:48:07.936 INFO [11575]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:48:07.936 INFO [11575]: HTTP_COOKIE = _ga=GA1.2.701787883.1578778832; ci_session=ugc9vs2g76s24gstknu8391bhk3gb99f; _gid=GA1.2.1101736530.1582588065; _gat_gtag_UA_54829827_2=1 -- 18:48:07.936 INFO [11575]: QUERY_STRING = /favicon.ico -- 18:48:07.936 INFO [11575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:48:07.947 INFO [11575]: COREGRADE is stopping... -- 18:48:07.947 DEBUG [11575]: Closing database connection -- 18:48:07.947 SQL [11575]: pgsql_close() -- 18:48:21.681 INFO [11550]: COREGRADE is starting... -- 18:48:21.681 INFO [11550]: Version from config: 1.0 -- 18:48:21.681 DEBUG [11550]: Connecting to database... -- 18:48:21.681 DEBUG [11550]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:21.681 SQL [11550]: pgsql_db_connect() -- 18:48:21.685 DEBUG [11550]: Database connection successful -- 18:48:21.685 INFO [11550]: _SERVER found -- 18:48:21.685 INFO [11550]: REMOTE_ADDR = 192.168.1.13 -- 18:48:21.685 INFO [11550]: SERVER_NAME = oameye.works.coregrade.com -- 18:48:21.685 INFO [11550]: HTTP_COOKIE = _ga=GA1.2.701787883.1578778832; _gid=GA1.2.1101736530.1582588065; _gat_gtag_UA_54829827_2=1 -- 18:48:21.685 INFO [11550]: QUERY_STRING = -- 18:48:21.685 INFO [11550]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:48:21.719 INFO [11550]: COREGRADE is stopping... -- 18:48:21.719 DEBUG [11550]: Closing database connection -- 18:48:21.719 SQL [11550]: pgsql_close() -- 18:48:22.338 INFO [21593]: COREGRADE is starting... -- 18:48:22.338 INFO [21593]: Version from config: 1.0 -- 18:48:22.338 DEBUG [21593]: Connecting to database... -- 18:48:22.338 DEBUG [21593]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:22.338 SQL [21593]: pgsql_db_connect() -- 18:48:22.343 DEBUG [21593]: Database connection successful -- 18:48:22.343 INFO [21593]: _SERVER found -- 18:48:22.343 INFO [21593]: REMOTE_ADDR = 192.168.1.13 -- 18:48:22.343 INFO [21593]: SERVER_NAME = oameye.works.coregrade.com -- 18:48:22.343 INFO [21593]: HTTP_COOKIE = _ga=GA1.2.701787883.1578778832; _gid=GA1.2.1101736530.1582588065; _gat_gtag_UA_54829827_2=1; ci_session=s7ei4atlgo25gvqn35bpf8ufl5pormps -- 18:48:22.343 INFO [21593]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:48:22.343 INFO [21593]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:48:22.357 INFO [21593]: COREGRADE is stopping... -- 18:48:22.357 DEBUG [21593]: Closing database connection -- 18:48:22.357 SQL [21593]: pgsql_close() -- 18:48:22.429 INFO [21593]: COREGRADE is starting... -- 18:48:22.429 INFO [21593]: Version from config: 1.0 -- 18:48:22.429 DEBUG [21593]: Connecting to database... -- 18:48:22.430 DEBUG [21593]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:22.430 SQL [21593]: pgsql_db_connect() -- 18:48:22.434 DEBUG [21593]: Database connection successful -- 18:48:22.434 INFO [21593]: _SERVER found -- 18:48:22.434 INFO [21593]: REMOTE_ADDR = 192.168.1.13 -- 18:48:22.434 INFO [21593]: SERVER_NAME = oameye.works.coregrade.com -- 18:48:22.434 INFO [21593]: HTTP_COOKIE = _ga=GA1.2.701787883.1578778832; _gid=GA1.2.1101736530.1582588065; _gat_gtag_UA_54829827_2=1; ci_session=s7ei4atlgo25gvqn35bpf8ufl5pormps -- 18:48:22.434 INFO [21593]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:48:22.434 INFO [21593]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:48:22.445 INFO [21593]: COREGRADE is stopping... -- 18:48:22.445 DEBUG [21593]: Closing database connection -- 18:48:22.445 SQL [21593]: pgsql_close() -- 18:48:24.068 INFO [21593]: COREGRADE is starting... -- 18:48:24.069 INFO [21593]: Version from config: 1.0 -- 18:48:24.069 DEBUG [21593]: Connecting to database... -- 18:48:24.069 DEBUG [21593]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:24.069 SQL [21593]: pgsql_db_connect() -- 18:48:24.087 INFO [11550]: COREGRADE is starting... -- 18:48:24.087 INFO [11550]: Version from config: 1.0 -- 18:48:24.087 DEBUG [11550]: Connecting to database... -- 18:48:24.087 DEBUG [11550]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:24.087 SQL [11550]: pgsql_db_connect() -- 18:48:24.073 DEBUG [21593]: Database connection successful -- 18:48:24.073 INFO [21593]: _SERVER found -- 18:48:24.073 INFO [21593]: REMOTE_ADDR = 192.168.1.13 -- 18:48:24.073 INFO [21593]: SERVER_NAME = oameye.works.coregrade.com -- 18:48:24.073 INFO [21593]: HTTP_COOKIE = _ga=GA1.2.701787883.1578778832; _gid=GA1.2.1101736530.1582588065; _gat_gtag_UA_54829827_2=1; ci_session=s7ei4atlgo25gvqn35bpf8ufl5pormps -- 18:48:24.073 INFO [21593]: QUERY_STRING = /welcome/viewLogin -- 18:48:24.073 INFO [21593]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:48:24.106 INFO [21593]: COREGRADE is stopping... -- 18:48:24.106 DEBUG [21593]: Closing database connection -- 18:48:24.106 SQL [21593]: pgsql_close() -- 18:48:24.091 DEBUG [11550]: Database connection successful -- 18:48:24.091 INFO [11550]: _SERVER found -- 18:48:24.091 INFO [11550]: REMOTE_ADDR = 192.168.1.13 -- 18:48:24.091 INFO [11550]: SERVER_NAME = oameye.works.coregrade.com -- 18:48:24.091 INFO [11550]: HTTP_COOKIE = _ga=GA1.2.701787883.1578778832; _gid=GA1.2.1101736530.1582588065; _gat_gtag_UA_54829827_2=1; ci_session=s7ei4atlgo25gvqn35bpf8ufl5pormps -- 18:48:24.091 INFO [11550]: QUERY_STRING = /auth -- 18:48:24.091 INFO [11550]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:48:24.123 INFO [11550]: COREGRADE is stopping... -- 18:48:24.123 DEBUG [11550]: Closing database connection -- 18:48:24.123 SQL [11550]: pgsql_close() -- 18:48:24.473 INFO [11550]: COREGRADE is starting... -- 18:48:24.473 INFO [11550]: Version from config: 1.0 -- 18:48:24.473 DEBUG [11550]: Connecting to database... -- 18:48:24.473 DEBUG [11550]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:24.473 SQL [11550]: pgsql_db_connect() -- 18:48:24.477 DEBUG [11550]: Database connection successful -- 18:48:24.477 INFO [11550]: _SERVER found -- 18:48:24.477 INFO [11550]: REMOTE_ADDR = 192.168.1.13 -- 18:48:24.477 INFO [11550]: SERVER_NAME = oameye.works.coregrade.com -- 18:48:24.477 INFO [11550]: HTTP_COOKIE = _ga=GA1.2.701787883.1578778832; _gid=GA1.2.1101736530.1582588065; _gat_gtag_UA_54829827_2=1; ci_session=s7ei4atlgo25gvqn35bpf8ufl5pormps -- 18:48:24.477 INFO [11550]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:48:24.477 INFO [11550]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:48:24.488 INFO [11550]: COREGRADE is stopping... -- 18:48:24.488 DEBUG [11550]: Closing database connection -- 18:48:24.488 SQL [11550]: pgsql_close() -- 18:48:24.859 INFO [11549]: COREGRADE is starting... -- 18:48:24.860 INFO [11549]: Version from config: 1.0 -- 18:48:24.860 DEBUG [11549]: Connecting to database... -- 18:48:24.860 DEBUG [11549]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:24.860 SQL [11549]: pgsql_db_connect() -- 18:48:24.864 DEBUG [11549]: Database connection successful -- 18:48:24.864 INFO [11549]: _SERVER found -- 18:48:24.864 INFO [11549]: REMOTE_ADDR = 192.168.1.13 -- 18:48:24.864 INFO [11549]: SERVER_NAME = oameye.works.coregrade.com -- 18:48:24.864 INFO [11549]: HTTP_COOKIE = _ga=GA1.2.701787883.1578778832; _gid=GA1.2.1101736530.1582588065; _gat_gtag_UA_54829827_2=1; ci_session=s7ei4atlgo25gvqn35bpf8ufl5pormps -- 18:48:24.864 INFO [11549]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 18:48:24.864 INFO [11549]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:48:24.876 INFO [11549]: COREGRADE is stopping... -- 18:48:24.876 DEBUG [11549]: Closing database connection -- 18:48:24.876 SQL [11549]: pgsql_close() -- 18:48:24.877 INFO [11550]: COREGRADE is starting... -- 18:48:24.878 INFO [11550]: Version from config: 1.0 -- 18:48:24.878 DEBUG [11550]: Connecting to database... -- 18:48:24.878 DEBUG [11550]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:24.878 SQL [11550]: pgsql_db_connect() -- 18:48:24.881 DEBUG [11550]: Database connection successful -- 18:48:24.881 INFO [11550]: _SERVER found -- 18:48:24.881 INFO [11550]: REMOTE_ADDR = 192.168.1.13 -- 18:48:24.881 INFO [11550]: SERVER_NAME = oameye.works.coregrade.com -- 18:48:24.881 INFO [11550]: HTTP_COOKIE = _ga=GA1.2.701787883.1578778832; _gid=GA1.2.1101736530.1582588065; _gat_gtag_UA_54829827_2=1; ci_session=s7ei4atlgo25gvqn35bpf8ufl5pormps -- 18:48:24.881 INFO [11550]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:48:24.881 INFO [11550]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:48:24.892 INFO [11550]: COREGRADE is stopping... -- 18:48:24.893 DEBUG [11550]: Closing database connection -- 18:48:24.893 SQL [11550]: pgsql_close() -- 18:48:33.101 INFO [11547]: COREGRADE is starting... -- 18:48:33.101 INFO [11547]: Version from config: 1.0 -- 18:48:33.101 DEBUG [11547]: Connecting to database... -- 18:48:33.101 DEBUG [11547]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:33.101 SQL [11547]: pgsql_db_connect() -- 18:48:33.139 INFO [11547]: COREGRADE is starting... -- 18:48:33.139 INFO [11547]: Version from config: 1.0 -- 18:48:33.139 DEBUG [11547]: Connecting to database... -- 18:48:33.139 DEBUG [11547]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:33.139 SQL [11547]: pgsql_db_connect() -- 18:48:33.143 DEBUG [11547]: Database connection successful -- 18:48:33.143 INFO [11547]: _SERVER found -- 18:48:33.143 INFO [11547]: REMOTE_ADDR = 192.168.1.13 -- 18:48:33.143 INFO [11547]: SERVER_NAME = oameye.works.coregrade.com -- 18:48:33.143 INFO [11547]: HTTP_COOKIE = _ga=GA1.2.701787883.1578778832; _gid=GA1.2.1101736530.1582588065; _gat_gtag_UA_54829827_2=1; ci_session=s7ei4atlgo25gvqn35bpf8ufl5pormps -- 18:48:33.143 INFO [11547]: QUERY_STRING = -- 18:48:33.143 INFO [11547]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:48:33.143 INFO [11547]: SystemStatus()09-09-********~************ -- 18:48:33.143 INFO [11547]: long coregrade_api_main(CVars in, CVars &out) -- 18:48:33.143 INFO [11547]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 18:48:33.143 INFO [11547]: account calls -- 18:48:33.143 INFO [11547]: account_calls() -- 18:48:33.143 INFO [11547]: LoginCoreGradeAccount() -- 18:48:33.143 FLOG_MAX [11547]: REQ_STRING(username) -- 18:48:33.143 FLOG_MAX [11547]: REQ_STRING(password) -- 18:48:33.143 FLOG_MAX [11547]: REQ_STRING(sessionid) -- 18:48:33.143 FLOG_MAX [11547]: long load_db_record( CVars &rec, const char * query, ... ) -- 18:48:33.143 SQL [11547]: pgsql_query() -- 18:48:33.143 SQL [11547]: About to run query: -- 18:48:33.143 SQL [11547]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 18:48:33.147 SQL [11547]: Found rows: 1 -- 18:48:33.147 FLOG_MAX [11547]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=16 -- 18:48:33.147 INFO [11547]: long SessionCheck(long uid, const char *sessionid, int create ) -- 18:48:33.147 SQL [11547]: pgsql_exec() -- 18:48:33.147 SQL [11547]: About to run query: -- 18:48:33.147 SQL [11547]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 18:48:33.147 SQL [11547]: PQcmdTuples: 0 -- 18:48:33.148 SQL [11547]: Affected rows: 0 -- 18:48:33.148 SQL [11547]: pgsql_exec() -- 18:48:33.148 SQL [11547]: About to run query: -- 18:48:33.148 SQL [11547]: DELETE FROM members_session WHERE member_id=7 -- 18:48:33.148 SQL [11547]: PQcmdTuples: 1 -- 18:48:33.148 SQL [11547]: Affected rows: 1 -- 18:48:33.148 SQL [11547]: pgsql_query() -- 18:48:33.148 SQL [11547]: About to run query: -- 18:48:33.148 SQL [11547]: SELECT * FROM members_session WHERE member_id=7 AND session<>'2BB769BF880BDBBBC12325774E188655' -- 18:48:33.149 SQL [11547]: Found rows: 0 -- 18:48:33.149 SQL [11547]: Found rows: 0 -- 18:48:33.149 FLOG_MAX [11547]: long load_db_record( CVars &rec, const char * query, ... ) -- 18:48:33.149 SQL [11547]: pgsql_query() -- 18:48:33.149 SQL [11547]: About to run query: -- 18:48:33.149 SQL [11547]: SELECT * FROM members_session WHERE member_id=7 AND session='2BB769BF880BDBBBC12325774E188655' -- 18:48:33.149 SQL [11547]: Found rows: 0 -- 18:48:33.149 SQL [11547]: Found rows: 0 -- 18:48:33.149 FLOG_MAX [11547]: insert_db_record() -- 18:48:33.149 SQL [11547]: pgsql_exec() -- 18:48:33.149 SQL [11547]: About to run query: -- 18:48:33.149 SQL [11547]: INSERT INTO members_session (member_id,session) VALUES ('7','2BB769BF880BDBBBC12325774E188655') -- 18:48:33.151 SQL [11547]: PQcmdTuples: 1 -- 18:48:33.151 SQL [11547]: Affected rows: 1 -- 18:48:33.151 FLOG_MAX [11547]: SELECT currval('members_session_id_seq') -- 18:48:33.151 SQL [11547]: pgsql_query() -- 18:48:33.151 SQL [11547]: About to run query: -- 18:48:33.151 SQL [11547]: SELECT currval('members_session_id_seq') -- 18:48:33.151 SQL [11547]: Found rows: 1 -- 18:48:33.151 INFO [11547]: CreateDefaultPage() -- 18:48:33.151 FLOG_MAX [11547]: long load_db_record( CVars &rec, const char * query, ... ) -- 18:48:33.151 SQL [11547]: pgsql_query() -- 18:48:33.151 SQL [11547]: About to run query: -- 18:48:33.151 SQL [11547]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 18:48:33.151 SQL [11547]: Found rows: 1 -- 18:48:33.151 FLOG_MAX [11547]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 18:48:33.151 SQL [11547]: pgsql_query() -- 18:48:33.152 SQL [11547]: About to run query: -- 18:48:33.152 SQL [11547]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 18:48:33.152 SQL [11547]: Found rows: 1 -- 18:48:33.152 INFO [11547]: /CreateDefaultPage() -- 18:48:33.152 INFO [11547]: /LoginCoreGradeAccount() -- 18:48:33.152 INFO [11547]: RET: added=2020-02-05 09:42:12.816064 -- 18:48:33.152 INFO [11547]: RET: email=tokslaw@chiefsoft.com -- 18:48:33.152 INFO [11547]: RET: firstname=Tokunbo -- 18:48:33.152 INFO [11547]: RET: folder=5D06B187B1E2285A63AD1D0ECB670D98 -- 18:48:33.152 INFO [11547]: RET: id=7 -- 18:48:33.152 INFO [11547]: RET: last_login= -- 18:48:33.152 INFO [11547]: RET: lastname=Lawal -- 18:48:33.152 INFO [11547]: RET: loc=192.168.1.13 -- 18:48:33.152 INFO [11547]: RET: member_id=7 -- 18:48:33.152 INFO [11547]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 18:48:33.152 INFO [11547]: RET: phone= -- 18:48:33.152 INFO [11547]: RET: pid= -- 18:48:33.152 INFO [11547]: RET: result=YES I GET TO BACK END -- 18:48:33.152 INFO [11547]: RET: sessionid=2BB769BF880BDBBBC12325774E188655 -- 18:48:33.152 INFO [11547]: RET: status=1 -- 18:48:33.152 INFO [11547]: RET: stauts=OK -- 18:48:33.152 INFO [11547]: RET: username=tokslaw@chiefsoft.com -- 18:48:33.152 INFO [11547]: RET: verified= -- 18:48:33.154 INFO [11547]: COREGRADE is stopping... -- 18:48:33.154 DEBUG [11547]: Closing database connection -- 18:48:33.154 SQL [11547]: pgsql_close() -- 18:48:33.105 DEBUG [11547]: Database connection successful -- 18:48:33.105 INFO [11547]: _SERVER found -- 18:48:33.105 INFO [11547]: REMOTE_ADDR = 192.168.1.13 -- 18:48:33.105 INFO [11547]: SERVER_NAME = oameye.works.coregrade.com -- 18:48:33.105 INFO [11547]: HTTP_COOKIE = _ga=GA1.2.701787883.1578778832; _gid=GA1.2.1101736530.1582588065; _gat_gtag_UA_54829827_2=1; ci_session=s7ei4atlgo25gvqn35bpf8ufl5pormps -- 18:48:33.105 INFO [11547]: QUERY_STRING = /auth -- 18:48:33.105 INFO [11547]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:48:33.154 INFO [11547]: COREGRADE is stopping... -- 18:48:33.154 DEBUG [11547]: Closing database connection -- 18:48:33.154 SQL [11547]: pgsql_close() -- 18:48:33.183 INFO [11547]: COREGRADE is starting... -- 18:48:33.183 INFO [11547]: Version from config: 1.0 -- 18:48:33.183 DEBUG [11547]: Connecting to database... -- 18:48:33.183 DEBUG [11547]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:33.183 SQL [11547]: pgsql_db_connect() -- 18:48:33.187 DEBUG [11547]: Database connection successful -- 18:48:33.187 INFO [11547]: _SERVER found -- 18:48:33.187 INFO [11547]: REMOTE_ADDR = 192.168.1.13 -- 18:48:33.187 INFO [11547]: SERVER_NAME = oameye.works.coregrade.com -- 18:48:33.187 INFO [11547]: HTTP_COOKIE = _ga=GA1.2.701787883.1578778832; _gid=GA1.2.1101736530.1582588065; _gat_gtag_UA_54829827_2=1; ci_session=s7ei4atlgo25gvqn35bpf8ufl5pormps -- 18:48:33.187 INFO [11547]: QUERY_STRING = /member/index -- 18:48:33.187 INFO [11547]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:48:33.227 INFO [11547]: COREGRADE is stopping... -- 18:48:33.227 DEBUG [11547]: Closing database connection -- 18:48:33.227 SQL [11547]: pgsql_close() -- 18:48:34.209 INFO [11546]: COREGRADE is starting... -- 18:48:34.209 INFO [11546]: Version from config: 1.0 -- 18:48:34.209 DEBUG [11546]: Connecting to database... -- 18:48:34.209 DEBUG [11546]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:34.209 SQL [11546]: pgsql_db_connect() -- 18:48:34.213 DEBUG [11546]: Database connection successful -- 18:48:34.213 INFO [11546]: _SERVER found -- 18:48:34.213 INFO [11546]: REMOTE_ADDR = 192.168.1.13 -- 18:48:34.213 INFO [11546]: SERVER_NAME = oameye.works.coregrade.com -- 18:48:34.213 INFO [11546]: HTTP_COOKIE = _ga=GA1.2.701787883.1578778832; _gid=GA1.2.1101736530.1582588065; _gat_gtag_UA_54829827_2=1; ci_session=s7ei4atlgo25gvqn35bpf8ufl5pormps -- 18:48:34.213 INFO [11546]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:48:34.213 INFO [11546]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:48:34.226 INFO [11546]: COREGRADE is stopping... -- 18:48:34.226 DEBUG [11546]: Closing database connection -- 18:48:34.226 SQL [11546]: pgsql_close() -- 18:48:34.577 INFO [13455]: COREGRADE is starting... -- 18:48:34.577 INFO [13455]: Version from config: 1.0 -- 18:48:34.577 DEBUG [13455]: Connecting to database... -- 18:48:34.577 DEBUG [13455]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:34.577 SQL [13455]: pgsql_db_connect() -- 18:48:34.581 DEBUG [13455]: Database connection successful -- 18:48:34.581 INFO [13455]: _SERVER found -- 18:48:34.581 INFO [13455]: REMOTE_ADDR = 192.168.1.13 -- 18:48:34.581 INFO [13455]: SERVER_NAME = oameye.works.coregrade.com -- 18:48:34.581 INFO [13455]: HTTP_COOKIE = _ga=GA1.2.701787883.1578778832; _gid=GA1.2.1101736530.1582588065; _gat_gtag_UA_54829827_2=1; ci_session=s7ei4atlgo25gvqn35bpf8ufl5pormps -- 18:48:34.581 INFO [13455]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:48:34.581 INFO [13455]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:48:34.593 INFO [13455]: COREGRADE is stopping... -- 18:48:34.593 DEBUG [13455]: Closing database connection -- 18:48:34.593 SQL [13455]: pgsql_close() -- 18:49:18.095 INFO [21593]: COREGRADE is starting... -- 18:49:18.096 INFO [21593]: Version from config: 1.0 -- 18:49:18.096 DEBUG [21593]: Connecting to database... -- 18:49:18.096 DEBUG [21593]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:49:18.096 SQL [21593]: pgsql_db_connect() -- 18:49:18.100 DEBUG [21593]: Database connection successful -- 18:49:18.100 INFO [21593]: _SERVER found -- 18:49:18.100 INFO [21593]: REMOTE_ADDR = 192.168.1.13 -- 18:49:18.100 INFO [21593]: SERVER_NAME = oameye.works.coregrade.com -- 18:49:18.100 INFO [21593]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171 -- 18:49:18.100 INFO [21593]: QUERY_STRING = -- 18:49:18.100 INFO [21593]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:49:18.137 INFO [21593]: COREGRADE is stopping... -- 18:49:18.137 DEBUG [21593]: Closing database connection -- 18:49:18.137 SQL [21593]: pgsql_close() -- 18:49:18.851 INFO [11549]: COREGRADE is starting... -- 18:49:18.851 INFO [11549]: Version from config: 1.0 -- 18:49:18.851 DEBUG [11549]: Connecting to database... -- 18:49:18.851 DEBUG [11549]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:49:18.851 SQL [11549]: pgsql_db_connect() -- 18:49:18.855 DEBUG [11549]: Database connection successful -- 18:49:18.855 INFO [11549]: _SERVER found -- 18:49:18.855 INFO [11549]: REMOTE_ADDR = 192.168.1.13 -- 18:49:18.855 INFO [11549]: SERVER_NAME = oameye.works.coregrade.com -- 18:49:18.855 INFO [11549]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=r71ug32a1fufu0boiv5i6h6v5v3v7f9e -- 18:49:18.855 INFO [11549]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:49:18.855 INFO [11549]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:49:18.866 INFO [11549]: COREGRADE is stopping... -- 18:49:18.866 DEBUG [11549]: Closing database connection -- 18:49:18.866 SQL [11549]: pgsql_close() -- 18:49:18.869 INFO [21630]: COREGRADE is starting... -- 18:49:18.870 INFO [21630]: Version from config: 1.0 -- 18:49:18.870 DEBUG [21630]: Connecting to database... -- 18:49:18.870 DEBUG [21630]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:49:18.870 SQL [21630]: pgsql_db_connect() -- 18:49:18.874 DEBUG [21630]: Database connection successful -- 18:49:18.874 INFO [21630]: _SERVER found -- 18:49:18.874 INFO [21630]: REMOTE_ADDR = 192.168.1.13 -- 18:49:18.874 INFO [21630]: SERVER_NAME = oameye.works.coregrade.com -- 18:49:18.874 INFO [21630]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; ci_session=r71ug32a1fufu0boiv5i6h6v5v3v7f9e -- 18:49:18.874 INFO [21630]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:49:18.874 INFO [21630]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:49:18.888 INFO [21630]: COREGRADE is stopping... -- 18:49:18.888 DEBUG [21630]: Closing database connection -- 18:49:18.888 SQL [21630]: pgsql_close() -- 18:49:20.380 INFO [21593]: COREGRADE is starting... -- 18:49:20.380 INFO [21593]: Version from config: 1.0 -- 18:49:20.380 DEBUG [21593]: Connecting to database... -- 18:49:20.380 DEBUG [21593]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:49:20.380 SQL [21593]: pgsql_db_connect() -- 18:49:20.404 INFO [21630]: COREGRADE is starting... -- 18:49:20.404 INFO [21630]: Version from config: 1.0 -- 18:49:20.404 DEBUG [21630]: Connecting to database... -- 18:49:20.404 DEBUG [21630]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:49:20.404 SQL [21630]: pgsql_db_connect() -- 18:49:20.384 DEBUG [21593]: Database connection successful -- 18:49:20.384 INFO [21593]: _SERVER found -- 18:49:20.384 INFO [21593]: REMOTE_ADDR = 192.168.1.13 -- 18:49:20.384 INFO [21593]: SERVER_NAME = oameye.works.coregrade.com -- 18:49:20.384 INFO [21593]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; _gid=GA1.2.1788648129.1582588160; _gat_gtag_UA_54829827_2=1; ci_session=r71ug32a1fufu0boiv5i6h6v5v3v7f9e -- 18:49:20.384 INFO [21593]: QUERY_STRING = /welcome/viewLogin -- 18:49:20.384 INFO [21593]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:49:20.414 INFO [21593]: COREGRADE is stopping... -- 18:49:20.414 DEBUG [21593]: Closing database connection -- 18:49:20.414 SQL [21593]: pgsql_close() -- 18:49:20.425 INFO [21593]: COREGRADE is starting... -- 18:49:20.425 INFO [21593]: Version from config: 1.0 -- 18:49:20.425 DEBUG [21593]: Connecting to database... -- 18:49:20.425 DEBUG [21593]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:49:20.425 SQL [21593]: pgsql_db_connect() -- 18:49:20.408 DEBUG [21630]: Database connection successful -- 18:49:20.408 INFO [21630]: _SERVER found -- 18:49:20.408 INFO [21630]: REMOTE_ADDR = 192.168.1.13 -- 18:49:20.408 INFO [21630]: SERVER_NAME = oameye.works.coregrade.com -- 18:49:20.408 INFO [21630]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; _gid=GA1.2.1788648129.1582588160; _gat_gtag_UA_54829827_2=1; ci_session=r71ug32a1fufu0boiv5i6h6v5v3v7f9e -- 18:49:20.408 INFO [21630]: QUERY_STRING = /auth -- 18:49:20.408 INFO [21630]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:49:20.443 INFO [21630]: COREGRADE is stopping... -- 18:49:20.443 DEBUG [21630]: Closing database connection -- 18:49:20.443 SQL [21630]: pgsql_close() -- 18:49:20.429 DEBUG [21593]: Database connection successful -- 18:49:20.429 INFO [21593]: _SERVER found -- 18:49:20.429 INFO [21593]: REMOTE_ADDR = 192.168.1.13 -- 18:49:20.429 INFO [21593]: SERVER_NAME = oameye.works.coregrade.com -- 18:49:20.429 INFO [21593]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; _gid=GA1.2.1788648129.1582588160; _gat_gtag_UA_54829827_2=1; ci_session=r71ug32a1fufu0boiv5i6h6v5v3v7f9e -- 18:49:20.429 INFO [21593]: QUERY_STRING = /auth/index -- 18:49:20.429 INFO [21593]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:49:20.460 INFO [21593]: COREGRADE is stopping... -- 18:49:20.460 DEBUG [21593]: Closing database connection -- 18:49:20.460 SQL [21593]: pgsql_close() -- 18:49:20.827 INFO [21593]: COREGRADE is starting... -- 18:49:20.828 INFO [21593]: Version from config: 1.0 -- 18:49:20.828 DEBUG [21593]: Connecting to database... -- 18:49:20.828 DEBUG [21593]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:49:20.828 SQL [21593]: pgsql_db_connect() -- 18:49:20.832 DEBUG [21593]: Database connection successful -- 18:49:20.832 INFO [21593]: _SERVER found -- 18:49:20.832 INFO [21593]: REMOTE_ADDR = 192.168.1.13 -- 18:49:20.832 INFO [21593]: SERVER_NAME = oameye.works.coregrade.com -- 18:49:20.832 INFO [21593]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; _gid=GA1.2.1788648129.1582588160; _gat_gtag_UA_54829827_2=1; ci_session=r71ug32a1fufu0boiv5i6h6v5v3v7f9e -- 18:49:20.832 INFO [21593]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:49:20.832 INFO [21593]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:49:20.843 INFO [21593]: COREGRADE is stopping... -- 18:49:20.843 DEBUG [21593]: Closing database connection -- 18:49:20.843 SQL [21593]: pgsql_close() -- 18:49:20.882 INFO [21593]: COREGRADE is starting... -- 18:49:20.882 INFO [21593]: Version from config: 1.0 -- 18:49:20.882 DEBUG [21593]: Connecting to database... -- 18:49:20.882 DEBUG [21593]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:49:20.882 SQL [21593]: pgsql_db_connect() -- 18:49:20.886 DEBUG [21593]: Database connection successful -- 18:49:20.886 INFO [21593]: _SERVER found -- 18:49:20.886 INFO [21593]: REMOTE_ADDR = 192.168.1.13 -- 18:49:20.886 INFO [21593]: SERVER_NAME = oameye.works.coregrade.com -- 18:49:20.886 INFO [21593]: HTTP_COOKIE = _ga=GA1.2.1639397498.1581373171; _gid=GA1.2.1788648129.1582588160; _gat_gtag_UA_54829827_2=1; ci_session=r71ug32a1fufu0boiv5i6h6v5v3v7f9e -- 18:49:20.886 INFO [21593]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:49:20.886 INFO [21593]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:49:20.897 INFO [21593]: COREGRADE is stopping... -- 18:49:20.897 DEBUG [21593]: Closing database connection -- 18:49:20.897 SQL [21593]: pgsql_close() -- 18:50:22.078 INFO [11547]: COREGRADE is starting... -- 18:50:22.078 INFO [11547]: Version from config: 1.0 -- 18:50:22.078 DEBUG [11547]: Connecting to database... -- 18:50:22.078 DEBUG [11547]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:50:22.078 SQL [11547]: pgsql_db_connect() -- 18:50:22.083 DEBUG [11547]: Database connection successful -- 18:50:22.083 INFO [11547]: _SERVER found -- 18:50:22.083 INFO [11547]: REMOTE_ADDR = 192.168.1.13 -- 18:50:22.083 INFO [11547]: SERVER_NAME = oameye.works.coregrade.com -- 18:50:22.083 INFO [11547]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=mj14fvqsqfivuuo36auua5en1tkrn29o -- 18:50:22.083 INFO [11547]: QUERY_STRING = /member/page -- 18:50:22.083 INFO [11547]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:50:22.126 INFO [11547]: COREGRADE is stopping... -- 18:50:22.126 DEBUG [11547]: Closing database connection -- 18:50:22.126 SQL [11547]: pgsql_close() -- 18:50:22.239 INFO [11548]: COREGRADE is starting... -- 18:50:22.239 INFO [11548]: Version from config: 1.0 -- 18:50:22.239 DEBUG [11548]: Connecting to database... -- 18:50:22.239 DEBUG [11548]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:50:22.239 SQL [11548]: pgsql_db_connect() -- 18:50:22.244 DEBUG [11548]: Database connection successful -- 18:50:22.244 INFO [11548]: _SERVER found -- 18:50:22.244 INFO [11548]: REMOTE_ADDR = 192.168.1.13 -- 18:50:22.244 INFO [11548]: SERVER_NAME = oameye.works.coregrade.com -- 18:50:22.244 INFO [11548]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=bgi36c9fau6p4rructnco82nas0fo0kt -- 18:50:22.244 INFO [11548]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:50:22.244 INFO [11548]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:50:22.255 INFO [11548]: COREGRADE is stopping... -- 18:50:22.255 DEBUG [11548]: Closing database connection -- 18:50:22.255 SQL [11548]: pgsql_close() -- 18:50:22.489 INFO [11548]: COREGRADE is starting... -- 18:50:22.489 INFO [11548]: Version from config: 1.0 -- 18:50:22.489 DEBUG [11548]: Connecting to database... -- 18:50:22.489 DEBUG [11548]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:50:22.489 SQL [11548]: pgsql_db_connect() -- 18:50:22.493 DEBUG [11548]: Database connection successful -- 18:50:22.493 INFO [11548]: _SERVER found -- 18:50:22.493 INFO [11548]: REMOTE_ADDR = 192.168.1.13 -- 18:50:22.493 INFO [11548]: SERVER_NAME = oameye.works.coregrade.com -- 18:50:22.493 INFO [11548]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=bgi36c9fau6p4rructnco82nas0fo0kt -- 18:50:22.493 INFO [11548]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:50:22.493 INFO [11548]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:50:22.504 INFO [11548]: COREGRADE is stopping... -- 18:50:22.504 DEBUG [11548]: Closing database connection -- 18:50:22.504 SQL [11548]: pgsql_close() -- 18:50:28.470 INFO [19554]: COREGRADE is starting... -- 18:50:28.471 INFO [19554]: Version from config: 1.0 -- 18:50:28.471 DEBUG [19554]: Connecting to database... -- 18:50:28.471 DEBUG [19554]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:50:28.471 SQL [19554]: pgsql_db_connect() -- 18:50:28.475 DEBUG [19554]: Database connection successful -- 18:50:28.475 INFO [19554]: _SERVER found -- 18:50:28.475 INFO [19554]: REMOTE_ADDR = 192.168.1.13 -- 18:50:28.475 INFO [19554]: SERVER_NAME = oameye.works.coregrade.com -- 18:50:28.475 INFO [19554]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=bgi36c9fau6p4rructnco82nas0fo0kt -- 18:50:28.475 INFO [19554]: QUERY_STRING = /member/viewCardAddAction -- 18:50:28.475 INFO [19554]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:50:28.509 INFO [19554]: COREGRADE is stopping... -- 18:50:28.509 DEBUG [19554]: Closing database connection -- 18:50:28.509 SQL [19554]: pgsql_close() -- 18:50:54.670 INFO [18754]: COREGRADE is starting... -- 18:50:54.671 INFO [18754]: Version from config: 1.0 -- 18:50:54.671 DEBUG [18754]: Connecting to database... -- 18:50:54.671 DEBUG [18754]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:50:54.671 SQL [18754]: pgsql_db_connect() -- 18:50:54.706 INFO [18754]: COREGRADE is starting... -- 18:50:54.707 INFO [18754]: Version from config: 1.0 -- 18:50:54.707 DEBUG [18754]: Connecting to database... -- 18:50:54.707 DEBUG [18754]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:50:54.707 SQL [18754]: pgsql_db_connect() -- 18:50:54.711 DEBUG [18754]: Database connection successful -- 18:50:54.711 INFO [18754]: _SERVER found -- 18:50:54.711 INFO [18754]: REMOTE_ADDR = 192.168.1.13 -- 18:50:54.711 INFO [18754]: SERVER_NAME = oameye.works.coregrade.com -- 18:50:54.711 INFO [18754]: HTTP_COOKIE = _gid=GA1.2.1788648129.1582588160; _ga=GA1.2.1639397498.1581373171; ci_session=r71ug32a1fufu0boiv5i6h6v5v3v7f9e -- 18:50:54.711 INFO [18754]: QUERY_STRING = -- 18:50:54.711 INFO [18754]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:50:54.711 INFO [18754]: SystemStatus()09-09-********~************ -- 18:50:54.711 INFO [18754]: long coregrade_api_main(CVars in, CVars &out) -- 18:50:54.711 INFO [18754]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 18:50:54.711 INFO [18754]: account calls -- 18:50:54.711 INFO [18754]: account_calls() -- 18:50:54.711 INFO [18754]: LoginCoreGradeAccount() -- 18:50:54.711 FLOG_MAX [18754]: REQ_STRING(username) -- 18:50:54.711 FLOG_MAX [18754]: REQ_STRING(password) -- 18:50:54.711 FLOG_MAX [18754]: REQ_STRING(sessionid) -- 18:50:54.711 FLOG_MAX [18754]: long load_db_record( CVars &rec, const char * query, ... ) -- 18:50:54.711 SQL [18754]: pgsql_query() -- 18:50:54.711 SQL [18754]: About to run query: -- 18:50:54.711 SQL [18754]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 18:50:54.714 SQL [18754]: Found rows: 1 -- 18:50:54.714 FLOG_MAX [18754]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=16 -- 18:50:54.714 INFO [18754]: long SessionCheck(long uid, const char *sessionid, int create ) -- 18:50:54.714 SQL [18754]: pgsql_exec() -- 18:50:54.714 SQL [18754]: About to run query: -- 18:50:54.714 SQL [18754]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 18:50:54.715 SQL [18754]: PQcmdTuples: 0 -- 18:50:54.715 SQL [18754]: Affected rows: 0 -- 18:50:54.715 SQL [18754]: pgsql_exec() -- 18:50:54.715 SQL [18754]: About to run query: -- 18:50:54.715 SQL [18754]: DELETE FROM members_session WHERE member_id=7 -- 18:50:54.717 SQL [18754]: PQcmdTuples: 1 -- 18:50:54.717 SQL [18754]: Affected rows: 1 -- 18:50:54.717 SQL [18754]: pgsql_query() -- 18:50:54.717 SQL [18754]: About to run query: -- 18:50:54.717 SQL [18754]: SELECT * FROM members_session WHERE member_id=7 AND session<>'959E05B2E2FDB224DEF02D22366BA3F6' -- 18:50:54.717 SQL [18754]: Found rows: 0 -- 18:50:54.717 SQL [18754]: Found rows: 0 -- 18:50:54.717 FLOG_MAX [18754]: long load_db_record( CVars &rec, const char * query, ... ) -- 18:50:54.717 SQL [18754]: pgsql_query() -- 18:50:54.717 SQL [18754]: About to run query: -- 18:50:54.717 SQL [18754]: SELECT * FROM members_session WHERE member_id=7 AND session='959E05B2E2FDB224DEF02D22366BA3F6' -- 18:50:54.718 SQL [18754]: Found rows: 0 -- 18:50:54.718 SQL [18754]: Found rows: 0 -- 18:50:54.718 FLOG_MAX [18754]: insert_db_record() -- 18:50:54.718 SQL [18754]: pgsql_exec() -- 18:50:54.718 SQL [18754]: About to run query: -- 18:50:54.718 SQL [18754]: INSERT INTO members_session (member_id,session) VALUES ('7','959E05B2E2FDB224DEF02D22366BA3F6') -- 18:50:54.719 SQL [18754]: PQcmdTuples: 1 -- 18:50:54.719 SQL [18754]: Affected rows: 1 -- 18:50:54.719 FLOG_MAX [18754]: SELECT currval('members_session_id_seq') -- 18:50:54.719 SQL [18754]: pgsql_query() -- 18:50:54.720 SQL [18754]: About to run query: -- 18:50:54.720 SQL [18754]: SELECT currval('members_session_id_seq') -- 18:50:54.720 SQL [18754]: Found rows: 1 -- 18:50:54.720 INFO [18754]: CreateDefaultPage() -- 18:50:54.720 FLOG_MAX [18754]: long load_db_record( CVars &rec, const char * query, ... ) -- 18:50:54.720 SQL [18754]: pgsql_query() -- 18:50:54.720 SQL [18754]: About to run query: -- 18:50:54.720 SQL [18754]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 18:50:54.720 SQL [18754]: Found rows: 1 -- 18:50:54.720 FLOG_MAX [18754]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 18:50:54.720 SQL [18754]: pgsql_query() -- 18:50:54.720 SQL [18754]: About to run query: -- 18:50:54.720 SQL [18754]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 18:50:54.721 SQL [18754]: Found rows: 1 -- 18:50:54.721 INFO [18754]: /CreateDefaultPage() -- 18:50:54.721 INFO [18754]: /LoginCoreGradeAccount() -- 18:50:54.721 INFO [18754]: RET: added=2020-02-05 09:42:12.816064 -- 18:50:54.721 INFO [18754]: RET: email=tokslaw@chiefsoft.com -- 18:50:54.721 INFO [18754]: RET: firstname=Tokunbo -- 18:50:54.721 INFO [18754]: RET: folder=5D06B187B1E2285A63AD1D0ECB670D98 -- 18:50:54.721 INFO [18754]: RET: id=7 -- 18:50:54.721 INFO [18754]: RET: last_login= -- 18:50:54.721 INFO [18754]: RET: lastname=Lawal -- 18:50:54.721 INFO [18754]: RET: loc=192.168.1.13 -- 18:50:54.721 INFO [18754]: RET: member_id=7 -- 18:50:54.721 INFO [18754]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 18:50:54.721 INFO [18754]: RET: phone= -- 18:50:54.721 INFO [18754]: RET: pid= -- 18:50:54.721 INFO [18754]: RET: result=YES I GET TO BACK END -- 18:50:54.721 INFO [18754]: RET: sessionid=959E05B2E2FDB224DEF02D22366BA3F6 -- 18:50:54.721 INFO [18754]: RET: status=1 -- 18:50:54.721 INFO [18754]: RET: stauts=OK -- 18:50:54.721 INFO [18754]: RET: username=tokslaw@chiefsoft.com -- 18:50:54.721 INFO [18754]: RET: verified= -- 18:50:54.722 INFO [18754]: COREGRADE is stopping... -- 18:50:54.722 DEBUG [18754]: Closing database connection -- 18:50:54.722 SQL [18754]: pgsql_close() -- 18:50:54.675 DEBUG [18754]: Database connection successful -- 18:50:54.675 INFO [18754]: _SERVER found -- 18:50:54.675 INFO [18754]: REMOTE_ADDR = 192.168.1.13 -- 18:50:54.675 INFO [18754]: SERVER_NAME = oameye.works.coregrade.com -- 18:50:54.675 INFO [18754]: HTTP_COOKIE = _gid=GA1.2.1788648129.1582588160; _ga=GA1.2.1639397498.1581373171; ci_session=r71ug32a1fufu0boiv5i6h6v5v3v7f9e -- 18:50:54.675 INFO [18754]: QUERY_STRING = /auth -- 18:50:54.675 INFO [18754]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:50:54.723 INFO [18754]: COREGRADE is stopping... -- 18:50:54.723 DEBUG [18754]: Closing database connection -- 18:50:54.723 SQL [18754]: pgsql_close() -- 18:50:54.762 INFO [18754]: COREGRADE is starting... -- 18:50:54.762 INFO [18754]: Version from config: 1.0 -- 18:50:54.762 DEBUG [18754]: Connecting to database... -- 18:50:54.762 DEBUG [18754]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:50:54.762 SQL [18754]: pgsql_db_connect() -- 18:50:54.766 DEBUG [18754]: Database connection successful -- 18:50:54.766 INFO [18754]: _SERVER found -- 18:50:54.766 INFO [18754]: REMOTE_ADDR = 192.168.1.13 -- 18:50:54.766 INFO [18754]: SERVER_NAME = oameye.works.coregrade.com -- 18:50:54.766 INFO [18754]: HTTP_COOKIE = _gid=GA1.2.1788648129.1582588160; _ga=GA1.2.1639397498.1581373171; ci_session=r71ug32a1fufu0boiv5i6h6v5v3v7f9e -- 18:50:54.766 INFO [18754]: QUERY_STRING = /member/index -- 18:50:54.766 INFO [18754]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:50:54.805 INFO [18754]: COREGRADE is stopping... -- 18:50:54.805 DEBUG [18754]: Closing database connection -- 18:50:54.805 SQL [18754]: pgsql_close() -- 18:50:55.062 INFO [13455]: COREGRADE is starting... -- 18:50:55.062 INFO [13455]: Version from config: 1.0 -- 18:50:55.062 DEBUG [13455]: Connecting to database... -- 18:50:55.062 DEBUG [13455]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:50:55.062 SQL [13455]: pgsql_db_connect() -- 18:50:55.066 DEBUG [13455]: Database connection successful -- 18:50:55.066 INFO [13455]: _SERVER found -- 18:50:55.066 INFO [13455]: REMOTE_ADDR = 192.168.1.13 -- 18:50:55.066 INFO [13455]: SERVER_NAME = oameye.works.coregrade.com -- 18:50:55.066 INFO [13455]: HTTP_COOKIE = _gid=GA1.2.1788648129.1582588160; _ga=GA1.2.1639397498.1581373171; ci_session=r71ug32a1fufu0boiv5i6h6v5v3v7f9e -- 18:50:55.066 INFO [13455]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:50:55.066 INFO [13455]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:50:55.078 INFO [13455]: COREGRADE is stopping... -- 18:50:55.078 DEBUG [13455]: Closing database connection -- 18:50:55.078 SQL [13455]: pgsql_close() -- 18:50:55.330 INFO [13455]: COREGRADE is starting... -- 18:50:55.330 INFO [13455]: Version from config: 1.0 -- 18:50:55.330 DEBUG [13455]: Connecting to database... -- 18:50:55.330 DEBUG [13455]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:50:55.330 SQL [13455]: pgsql_db_connect() -- 18:50:55.335 DEBUG [13455]: Database connection successful -- 18:50:55.335 INFO [13455]: _SERVER found -- 18:50:55.335 INFO [13455]: REMOTE_ADDR = 192.168.1.13 -- 18:50:55.335 INFO [13455]: SERVER_NAME = oameye.works.coregrade.com -- 18:50:55.335 INFO [13455]: HTTP_COOKIE = _gid=GA1.2.1788648129.1582588160; _ga=GA1.2.1639397498.1581373171; ci_session=r71ug32a1fufu0boiv5i6h6v5v3v7f9e -- 18:50:55.335 INFO [13455]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:50:55.335 INFO [13455]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:50:55.346 INFO [13455]: COREGRADE is stopping... -- 18:50:55.346 DEBUG [13455]: Closing database connection -- 18:50:55.346 SQL [13455]: pgsql_close() -- 18:51:04.253 INFO [11549]: COREGRADE is starting... -- 18:51:04.254 INFO [11549]: Version from config: 1.0 -- 18:51:04.254 DEBUG [11549]: Connecting to database... -- 18:51:04.254 DEBUG [11549]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:04.254 SQL [11549]: pgsql_db_connect() -- 18:51:04.258 DEBUG [11549]: Database connection successful -- 18:51:04.258 INFO [11549]: _SERVER found -- 18:51:04.258 INFO [11549]: REMOTE_ADDR = 192.168.1.13 -- 18:51:04.258 INFO [11549]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:51:04.258 INFO [11549]: HTTP_COOKIE = _gid=GA1.2.1788648129.1582588160; _ga=GA1.2.1639397498.1581373171 -- 18:51:04.258 INFO [11549]: QUERY_STRING = -- 18:51:04.258 INFO [11549]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:04.290 INFO [11549]: COREGRADE is stopping... -- 18:51:04.290 DEBUG [11549]: Closing database connection -- 18:51:04.290 SQL [11549]: pgsql_close() -- 18:51:04.776 INFO [11550]: COREGRADE is starting... -- 18:51:04.776 INFO [11550]: Version from config: 1.0 -- 18:51:04.776 DEBUG [11550]: Connecting to database... -- 18:51:04.776 DEBUG [11550]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:04.776 SQL [11550]: pgsql_db_connect() -- 18:51:04.776 INFO [21630]: COREGRADE is starting... -- 18:51:04.777 INFO [21630]: Version from config: 1.0 -- 18:51:04.777 DEBUG [21630]: Connecting to database... -- 18:51:04.777 DEBUG [21630]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:04.777 SQL [21630]: pgsql_db_connect() -- 18:51:04.780 DEBUG [21630]: Database connection successful -- 18:51:04.780 INFO [21630]: _SERVER found -- 18:51:04.780 INFO [21630]: REMOTE_ADDR = 192.168.1.13 -- 18:51:04.780 INFO [21630]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:51:04.780 INFO [21630]: HTTP_COOKIE = _gid=GA1.2.1788648129.1582588160; _ga=GA1.2.1639397498.1581373171; ci_session=q3q05s3i5pr8ahcg3sv0vvch9ec5e062 -- 18:51:04.780 INFO [21630]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:51:04.780 INFO [21630]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:04.792 INFO [21630]: COREGRADE is stopping... -- 18:51:04.792 DEBUG [21630]: Closing database connection -- 18:51:04.792 SQL [21630]: pgsql_close() -- 18:51:04.780 DEBUG [11550]: Database connection successful -- 18:51:04.780 INFO [11550]: _SERVER found -- 18:51:04.780 INFO [11550]: REMOTE_ADDR = 192.168.1.13 -- 18:51:04.780 INFO [11550]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:51:04.780 INFO [11550]: HTTP_COOKIE = _gid=GA1.2.1788648129.1582588160; _ga=GA1.2.1639397498.1581373171; ci_session=q3q05s3i5pr8ahcg3sv0vvch9ec5e062 -- 18:51:04.780 INFO [11550]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:51:04.780 INFO [11550]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:04.792 INFO [11550]: COREGRADE is stopping... -- 18:51:04.792 DEBUG [11550]: Closing database connection -- 18:51:04.792 SQL [11550]: pgsql_close() -- 18:51:06.244 INFO [11550]: COREGRADE is starting... -- 18:51:06.244 INFO [11550]: Version from config: 1.0 -- 18:51:06.244 DEBUG [11550]: Connecting to database... -- 18:51:06.244 DEBUG [11550]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:06.244 SQL [11550]: pgsql_db_connect() -- 18:51:06.258 INFO [21593]: COREGRADE is starting... -- 18:51:06.259 INFO [21593]: Version from config: 1.0 -- 18:51:06.259 DEBUG [21593]: Connecting to database... -- 18:51:06.259 DEBUG [21593]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:06.259 SQL [21593]: pgsql_db_connect() -- 18:51:06.248 DEBUG [11550]: Database connection successful -- 18:51:06.248 INFO [11550]: _SERVER found -- 18:51:06.248 INFO [11550]: REMOTE_ADDR = 192.168.1.13 -- 18:51:06.248 INFO [11550]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:51:06.248 INFO [11550]: HTTP_COOKIE = _gid=GA1.2.1788648129.1582588160; _ga=GA1.2.1639397498.1581373171; _gat_gtag_UA_54829827_2=1; ci_session=q3q05s3i5pr8ahcg3sv0vvch9ec5e062 -- 18:51:06.248 INFO [11550]: QUERY_STRING = /welcome/viewLogin -- 18:51:06.248 INFO [11550]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:06.278 INFO [11550]: COREGRADE is stopping... -- 18:51:06.278 DEBUG [11550]: Closing database connection -- 18:51:06.279 SQL [11550]: pgsql_close() -- 18:51:06.288 INFO [11550]: COREGRADE is starting... -- 18:51:06.289 INFO [11550]: Version from config: 1.0 -- 18:51:06.289 DEBUG [11550]: Connecting to database... -- 18:51:06.289 DEBUG [11550]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:06.289 SQL [11550]: pgsql_db_connect() -- 18:51:06.263 DEBUG [21593]: Database connection successful -- 18:51:06.263 INFO [21593]: _SERVER found -- 18:51:06.263 INFO [21593]: REMOTE_ADDR = 192.168.1.13 -- 18:51:06.263 INFO [21593]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:51:06.263 INFO [21593]: HTTP_COOKIE = _gid=GA1.2.1788648129.1582588160; _ga=GA1.2.1639397498.1581373171; _gat_gtag_UA_54829827_2=1; ci_session=q3q05s3i5pr8ahcg3sv0vvch9ec5e062 -- 18:51:06.263 INFO [21593]: QUERY_STRING = /auth -- 18:51:06.263 INFO [21593]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:06.295 INFO [21593]: COREGRADE is stopping... -- 18:51:06.295 DEBUG [21593]: Closing database connection -- 18:51:06.295 SQL [21593]: pgsql_close() -- 18:51:06.292 DEBUG [11550]: Database connection successful -- 18:51:06.292 INFO [11550]: _SERVER found -- 18:51:06.292 INFO [11550]: REMOTE_ADDR = 192.168.1.13 -- 18:51:06.292 INFO [11550]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:51:06.292 INFO [11550]: HTTP_COOKIE = _gid=GA1.2.1788648129.1582588160; _ga=GA1.2.1639397498.1581373171; _gat_gtag_UA_54829827_2=1; ci_session=q3q05s3i5pr8ahcg3sv0vvch9ec5e062 -- 18:51:06.292 INFO [11550]: QUERY_STRING = /auth/index -- 18:51:06.292 INFO [11550]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:06.324 INFO [11550]: COREGRADE is stopping... -- 18:51:06.324 DEBUG [11550]: Closing database connection -- 18:51:06.324 SQL [11550]: pgsql_close() -- 18:51:06.497 INFO [11550]: COREGRADE is starting... -- 18:51:06.498 INFO [11550]: Version from config: 1.0 -- 18:51:06.498 DEBUG [11550]: Connecting to database... -- 18:51:06.498 DEBUG [11550]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:06.498 SQL [11550]: pgsql_db_connect() -- 18:51:06.502 DEBUG [11550]: Database connection successful -- 18:51:06.502 INFO [11550]: _SERVER found -- 18:51:06.502 INFO [11550]: REMOTE_ADDR = 192.168.1.13 -- 18:51:06.502 INFO [11550]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:51:06.502 INFO [11550]: HTTP_COOKIE = _gid=GA1.2.1788648129.1582588160; _ga=GA1.2.1639397498.1581373171; _gat_gtag_UA_54829827_2=1; ci_session=q3q05s3i5pr8ahcg3sv0vvch9ec5e062 -- 18:51:06.502 INFO [11550]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:51:06.502 INFO [11550]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:06.513 INFO [11550]: COREGRADE is stopping... -- 18:51:06.513 DEBUG [11550]: Closing database connection -- 18:51:06.513 SQL [11550]: pgsql_close() -- 18:51:06.820 INFO [11550]: COREGRADE is starting... -- 18:51:06.820 INFO [11550]: Version from config: 1.0 -- 18:51:06.820 DEBUG [11550]: Connecting to database... -- 18:51:06.820 DEBUG [11550]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:06.820 SQL [11550]: pgsql_db_connect() -- 18:51:06.824 DEBUG [11550]: Database connection successful -- 18:51:06.824 INFO [11550]: _SERVER found -- 18:51:06.824 INFO [11550]: REMOTE_ADDR = 192.168.1.13 -- 18:51:06.824 INFO [11550]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:51:06.824 INFO [11550]: HTTP_COOKIE = _gid=GA1.2.1788648129.1582588160; _ga=GA1.2.1639397498.1581373171; _gat_gtag_UA_54829827_2=1; ci_session=q3q05s3i5pr8ahcg3sv0vvch9ec5e062 -- 18:51:06.824 INFO [11550]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:51:06.824 INFO [11550]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:06.835 INFO [11550]: COREGRADE is stopping... -- 18:51:06.835 DEBUG [11550]: Closing database connection -- 18:51:06.835 SQL [11550]: pgsql_close() -- 18:51:21.154 INFO [18754]: COREGRADE is starting... -- 18:51:21.155 INFO [18754]: Version from config: 1.0 -- 18:51:21.155 DEBUG [18754]: Connecting to database... -- 18:51:21.155 DEBUG [18754]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:21.155 SQL [18754]: pgsql_db_connect() -- 18:51:21.159 DEBUG [18754]: Database connection successful -- 18:51:21.159 INFO [18754]: _SERVER found -- 18:51:21.159 INFO [18754]: REMOTE_ADDR = 192.168.1.13 -- 18:51:21.159 INFO [18754]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:51:21.159 INFO [18754]: HTTP_COOKIE = _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1788648129.1582588160; _ga=GA1.2.1639397498.1581373171; ci_session=q3q05s3i5pr8ahcg3sv0vvch9ec5e062 -- 18:51:21.159 INFO [18754]: QUERY_STRING = /auth -- 18:51:21.159 INFO [18754]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:21.237 INFO [18754]: COREGRADE is starting... -- 18:51:21.237 INFO [18754]: Version from config: 1.0 -- 18:51:21.237 DEBUG [18754]: Connecting to database... -- 18:51:21.237 DEBUG [18754]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:21.237 SQL [18754]: pgsql_db_connect() -- 18:51:21.241 DEBUG [18754]: Database connection successful -- 18:51:21.241 INFO [18754]: _SERVER found -- 18:51:21.241 INFO [18754]: REMOTE_ADDR = 192.168.1.13 -- 18:51:21.241 INFO [18754]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:51:21.241 INFO [18754]: HTTP_COOKIE = _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1788648129.1582588160; _ga=GA1.2.1639397498.1581373171; ci_session=q3q05s3i5pr8ahcg3sv0vvch9ec5e062 -- 18:51:21.241 INFO [18754]: QUERY_STRING = /member/index -- 18:51:21.241 INFO [18754]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:21.252 INFO [18754]: COREGRADE is stopping... -- 18:51:21.252 DEBUG [18754]: Closing database connection -- 18:51:21.252 SQL [18754]: pgsql_close() -- 18:51:21.375 INFO [18754]: COREGRADE is starting... -- 18:51:21.375 INFO [18754]: Version from config: 1.0 -- 18:51:21.375 DEBUG [18754]: Connecting to database... -- 18:51:21.375 DEBUG [18754]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:21.375 SQL [18754]: pgsql_db_connect() -- 18:51:21.379 DEBUG [18754]: Database connection successful -- 18:51:21.379 INFO [18754]: _SERVER found -- 18:51:21.379 INFO [18754]: REMOTE_ADDR = 192.168.1.13 -- 18:51:21.379 INFO [18754]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:51:21.379 INFO [18754]: QUERY_STRING = /favicon.ico -- 18:51:21.379 INFO [18754]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:21.390 INFO [18754]: COREGRADE is stopping... -- 18:51:21.390 DEBUG [18754]: Closing database connection -- 18:51:21.390 SQL [18754]: pgsql_close() -- 18:51:30.073 INFO [11546]: COREGRADE is starting... -- 18:51:30.073 INFO [11546]: Version from config: 1.0 -- 18:51:30.073 DEBUG [11546]: Connecting to database... -- 18:51:30.073 DEBUG [11546]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:30.073 SQL [11546]: pgsql_db_connect() -- 18:51:30.077 DEBUG [11546]: Database connection successful -- 18:51:30.077 INFO [11546]: _SERVER found -- 18:51:30.077 INFO [11546]: REMOTE_ADDR = 192.168.1.13 -- 18:51:30.077 INFO [11546]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:30.077 INFO [11546]: HTTP_COOKIE = _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1788648129.1582588160; _ga=GA1.2.1639397498.1581373171; ci_session=r71ug32a1fufu0boiv5i6h6v5v3v7f9e -- 18:51:30.077 INFO [11546]: QUERY_STRING = /member/page -- 18:51:30.077 INFO [11546]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:30.122 INFO [11546]: COREGRADE is stopping... -- 18:51:30.122 DEBUG [11546]: Closing database connection -- 18:51:30.122 SQL [11546]: pgsql_close() -- 18:51:30.396 INFO [11546]: COREGRADE is starting... -- 18:51:30.397 INFO [11546]: Version from config: 1.0 -- 18:51:30.397 DEBUG [11546]: Connecting to database... -- 18:51:30.397 DEBUG [11546]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:30.397 SQL [11546]: pgsql_db_connect() -- 18:51:30.401 DEBUG [11546]: Database connection successful -- 18:51:30.401 INFO [11546]: _SERVER found -- 18:51:30.401 INFO [11546]: REMOTE_ADDR = 192.168.1.13 -- 18:51:30.401 INFO [11546]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:30.401 INFO [11546]: HTTP_COOKIE = _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1788648129.1582588160; _ga=GA1.2.1639397498.1581373171; ci_session=r71ug32a1fufu0boiv5i6h6v5v3v7f9e -- 18:51:30.401 INFO [11546]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:51:30.401 INFO [11546]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:30.412 INFO [11546]: COREGRADE is stopping... -- 18:51:30.412 DEBUG [11546]: Closing database connection -- 18:51:30.412 SQL [11546]: pgsql_close() -- 18:51:30.731 INFO [11546]: COREGRADE is starting... -- 18:51:30.731 INFO [11546]: Version from config: 1.0 -- 18:51:30.731 DEBUG [11546]: Connecting to database... -- 18:51:30.731 DEBUG [11546]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:30.731 SQL [11546]: pgsql_db_connect() -- 18:51:30.735 DEBUG [11546]: Database connection successful -- 18:51:30.735 INFO [11546]: _SERVER found -- 18:51:30.735 INFO [11546]: REMOTE_ADDR = 192.168.1.13 -- 18:51:30.735 INFO [11546]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:30.735 INFO [11546]: HTTP_COOKIE = _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1788648129.1582588160; _ga=GA1.2.1639397498.1581373171; ci_session=r71ug32a1fufu0boiv5i6h6v5v3v7f9e -- 18:51:30.735 INFO [11546]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:51:30.735 INFO [11546]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:30.746 INFO [11546]: COREGRADE is stopping... -- 18:51:30.746 DEBUG [11546]: Closing database connection -- 18:51:30.746 SQL [11546]: pgsql_close() -- 18:51:33.683 INFO [11546]: COREGRADE is starting... -- 18:51:33.683 INFO [11546]: Version from config: 1.0 -- 18:51:33.683 DEBUG [11546]: Connecting to database... -- 18:51:33.683 DEBUG [11546]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:33.683 SQL [11546]: pgsql_db_connect() -- 18:51:33.687 DEBUG [11546]: Database connection successful -- 18:51:33.687 INFO [11546]: _SERVER found -- 18:51:33.687 INFO [11546]: REMOTE_ADDR = 192.168.1.13 -- 18:51:33.687 INFO [11546]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:33.687 INFO [11546]: HTTP_COOKIE = _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1788648129.1582588160; _ga=GA1.2.1639397498.1581373171; ci_session=r71ug32a1fufu0boiv5i6h6v5v3v7f9e -- 18:51:33.687 INFO [11546]: QUERY_STRING = /member/configure -- 18:51:33.687 INFO [11546]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:33.729 INFO [11546]: COREGRADE is stopping... -- 18:51:33.729 DEBUG [11546]: Closing database connection -- 18:51:33.729 SQL [11546]: pgsql_close() -- 18:51:34.042 INFO [11546]: COREGRADE is starting... -- 18:51:34.042 INFO [13455]: COREGRADE is starting... -- 18:51:34.043 INFO [11546]: Version from config: 1.0 -- 18:51:34.043 DEBUG [11546]: Connecting to database... -- 18:51:34.043 INFO [13455]: Version from config: 1.0 -- 18:51:34.043 DEBUG [13455]: Connecting to database... -- 18:51:34.043 DEBUG [11546]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:34.043 DEBUG [13455]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:34.043 SQL [11546]: pgsql_db_connect() -- 18:51:34.043 SQL [13455]: pgsql_db_connect() -- 18:51:34.047 DEBUG [11546]: Database connection successful -- 18:51:34.047 INFO [11546]: _SERVER found -- 18:51:34.047 INFO [11546]: REMOTE_ADDR = 192.168.1.13 -- 18:51:34.047 INFO [11546]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:34.047 INFO [11546]: HTTP_COOKIE = _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1788648129.1582588160; _ga=GA1.2.1639397498.1581373171; ci_session=r71ug32a1fufu0boiv5i6h6v5v3v7f9e -- 18:51:34.047 INFO [11546]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 18:51:34.047 INFO [11546]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:34.058 INFO [11546]: COREGRADE is stopping... -- 18:51:34.047 DEBUG [13455]: Database connection successful -- 18:51:34.047 INFO [13455]: _SERVER found -- 18:51:34.047 INFO [13455]: REMOTE_ADDR = 192.168.1.13 -- 18:51:34.047 INFO [13455]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:34.047 INFO [13455]: HTTP_COOKIE = _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1788648129.1582588160; _ga=GA1.2.1639397498.1581373171; ci_session=r71ug32a1fufu0boiv5i6h6v5v3v7f9e -- 18:51:34.047 INFO [13455]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:51:34.047 INFO [13455]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:34.058 INFO [13455]: COREGRADE is stopping... -- 18:51:34.058 DEBUG [11546]: Closing database connection -- 18:51:34.058 DEBUG [13455]: Closing database connection -- 18:51:34.058 SQL [11546]: pgsql_close() -- 18:51:34.058 SQL [13455]: pgsql_close() -- 18:51:34.262 INFO [13455]: COREGRADE is starting... -- 18:51:34.262 INFO [13455]: Version from config: 1.0 -- 18:51:34.262 DEBUG [13455]: Connecting to database... -- 18:51:34.262 DEBUG [13455]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:34.262 SQL [13455]: pgsql_db_connect() -- 18:51:34.266 DEBUG [13455]: Database connection successful -- 18:51:34.266 INFO [13455]: _SERVER found -- 18:51:34.266 INFO [13455]: REMOTE_ADDR = 192.168.1.13 -- 18:51:34.266 INFO [13455]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:34.266 INFO [13455]: HTTP_COOKIE = _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1788648129.1582588160; _ga=GA1.2.1639397498.1581373171; ci_session=r71ug32a1fufu0boiv5i6h6v5v3v7f9e -- 18:51:34.266 INFO [13455]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:51:34.266 INFO [13455]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:34.277 INFO [13455]: COREGRADE is stopping... -- 18:51:34.277 DEBUG [13455]: Closing database connection -- 18:51:34.277 SQL [13455]: pgsql_close() -- 18:52:22.071 INFO [21675]: COREGRADE is starting... -- 18:52:22.072 INFO [21675]: Version from config: 1.0 -- 18:52:22.072 DEBUG [21675]: Connecting to database... -- 18:52:22.072 DEBUG [21675]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:52:22.072 SQL [21675]: pgsql_db_connect() -- 18:52:22.076 DEBUG [21675]: Database connection successful -- 18:52:22.076 INFO [21675]: _SERVER found -- 18:52:22.076 INFO [21675]: REMOTE_ADDR = 192.168.1.13 -- 18:52:22.076 INFO [21675]: SERVER_NAME = oameye.works.coregrade.com -- 18:52:22.076 INFO [21675]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=bgi36c9fau6p4rructnco82nas0fo0kt -- 18:52:22.076 INFO [21675]: QUERY_STRING = /member/upload -- 18:52:22.076 INFO [21675]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:52:22.114 INFO [21675]: COREGRADE is stopping... -- 18:52:22.114 DEBUG [21675]: Closing database connection -- 18:52:22.114 SQL [21675]: pgsql_close() -- 18:52:44.381 INFO [21593]: COREGRADE is starting... -- 18:52:44.381 INFO [21593]: Version from config: 1.0 -- 18:52:44.381 DEBUG [21593]: Connecting to database... -- 18:52:44.381 DEBUG [21593]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:52:44.381 SQL [21593]: pgsql_db_connect() -- 18:52:44.385 DEBUG [21593]: Database connection successful -- 18:52:44.385 INFO [21593]: _SERVER found -- 18:52:44.385 INFO [21593]: REMOTE_ADDR = 192.168.1.13 -- 18:52:44.385 INFO [21593]: SERVER_NAME = oameye.works.coregrade.com -- 18:52:44.385 INFO [21593]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=bgi36c9fau6p4rructnco82nas0fo0kt -- 18:52:44.385 INFO [21593]: QUERY_STRING = /favicon.ico -- 18:52:44.385 INFO [21593]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:52:44.397 INFO [21593]: COREGRADE is stopping... -- 18:52:44.397 DEBUG [21593]: Closing database connection -- 18:52:44.397 SQL [21593]: pgsql_close() -- 18:55:34.740 INFO [11547]: COREGRADE is starting... -- 18:55:34.740 INFO [11547]: Version from config: 1.0 -- 18:55:34.740 DEBUG [11547]: Connecting to database... -- 18:55:34.741 DEBUG [11547]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:34.741 SQL [11547]: pgsql_db_connect() -- 18:55:34.745 DEBUG [11547]: Database connection successful -- 18:55:34.745 INFO [11547]: _SERVER found -- 18:55:34.745 INFO [11547]: REMOTE_ADDR = 192.168.1.13 -- 18:55:34.745 INFO [11547]: SERVER_NAME = oameye.works.coregrade.com -- 18:55:34.745 INFO [11547]: HTTP_COOKIE = _ga=GA1.2.701787883.1578778832; _gid=GA1.2.1101736530.1582588065; ci_session=s7ei4atlgo25gvqn35bpf8ufl5pormps -- 18:55:34.745 INFO [11547]: QUERY_STRING = /member/myprofile -- 18:55:34.745 INFO [11547]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:55:34.785 INFO [11547]: COREGRADE is stopping... -- 18:55:34.785 DEBUG [11547]: Closing database connection -- 18:55:34.785 SQL [11547]: pgsql_close() -- 18:55:34.952 INFO [21630]: COREGRADE is starting... -- 18:55:34.952 INFO [21630]: Version from config: 1.0 -- 18:55:34.952 DEBUG [21630]: Connecting to database... -- 18:55:34.952 DEBUG [21630]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:34.952 SQL [21630]: pgsql_db_connect() -- 18:55:34.956 DEBUG [21630]: Database connection successful -- 18:55:34.956 INFO [21630]: _SERVER found -- 18:55:34.956 INFO [21630]: REMOTE_ADDR = 192.168.1.13 -- 18:55:34.956 INFO [21630]: SERVER_NAME = oameye.works.coregrade.com -- 18:55:34.956 INFO [21630]: HTTP_COOKIE = _ga=GA1.2.701787883.1578778832; _gid=GA1.2.1101736530.1582588065; ci_session=uoqsmvgr8bids3v1lenilpa2so133qca -- 18:55:34.956 INFO [21630]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:55:34.956 INFO [21630]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:55:34.968 INFO [21630]: COREGRADE is stopping... -- 18:55:34.968 DEBUG [21630]: Closing database connection -- 18:55:34.968 SQL [21630]: pgsql_close() -- 18:55:35.097 INFO [21630]: COREGRADE is starting... -- 18:55:35.097 INFO [21630]: Version from config: 1.0 -- 18:55:35.097 DEBUG [21630]: Connecting to database... -- 18:55:35.097 DEBUG [21630]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:35.097 SQL [21630]: pgsql_db_connect() -- 18:55:35.101 DEBUG [21630]: Database connection successful -- 18:55:35.101 INFO [21630]: _SERVER found -- 18:55:35.101 INFO [21630]: REMOTE_ADDR = 192.168.1.13 -- 18:55:35.101 INFO [21630]: SERVER_NAME = oameye.works.coregrade.com -- 18:55:35.101 INFO [21630]: HTTP_COOKIE = _ga=GA1.2.701787883.1578778832; _gid=GA1.2.1101736530.1582588065; ci_session=uoqsmvgr8bids3v1lenilpa2so133qca -- 18:55:35.101 INFO [21630]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:55:35.101 INFO [21630]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:55:35.112 INFO [21630]: COREGRADE is stopping... -- 18:55:35.112 DEBUG [21630]: Closing database connection -- 18:55:35.112 SQL [21630]: pgsql_close() -- 18:55:38.230 INFO [21630]: COREGRADE is starting... -- 18:55:38.230 INFO [21630]: Version from config: 1.0 -- 18:55:38.230 DEBUG [21630]: Connecting to database... -- 18:55:38.230 DEBUG [21630]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:38.230 SQL [21630]: pgsql_db_connect() -- 18:55:38.234 DEBUG [21630]: Database connection successful -- 18:55:38.234 INFO [21630]: _SERVER found -- 18:55:38.234 INFO [21630]: REMOTE_ADDR = 192.168.1.13 -- 18:55:38.234 INFO [21630]: SERVER_NAME = oameye.works.coregrade.com -- 18:55:38.234 INFO [21630]: HTTP_COOKIE = _ga=GA1.2.701787883.1578778832; _gid=GA1.2.1101736530.1582588065; ci_session=uoqsmvgr8bids3v1lenilpa2so133qca -- 18:55:38.234 INFO [21630]: QUERY_STRING = /member/index -- 18:55:38.234 INFO [21630]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:55:38.276 INFO [21630]: COREGRADE is stopping... -- 18:55:38.276 DEBUG [21630]: Closing database connection -- 18:55:38.276 SQL [21630]: pgsql_close() -- 18:55:38.511 INFO [21630]: COREGRADE is starting... -- 18:55:38.512 INFO [21630]: Version from config: 1.0 -- 18:55:38.512 DEBUG [21630]: Connecting to database... -- 18:55:38.512 DEBUG [21630]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:38.512 SQL [21630]: pgsql_db_connect() -- 18:55:38.516 DEBUG [21630]: Database connection successful -- 18:55:38.516 INFO [21630]: _SERVER found -- 18:55:38.516 INFO [21630]: REMOTE_ADDR = 192.168.1.13 -- 18:55:38.516 INFO [21630]: SERVER_NAME = oameye.works.coregrade.com -- 18:55:38.516 INFO [21630]: HTTP_COOKIE = _ga=GA1.2.701787883.1578778832; _gid=GA1.2.1101736530.1582588065; ci_session=uoqsmvgr8bids3v1lenilpa2so133qca -- 18:55:38.516 INFO [21630]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:55:38.516 INFO [21630]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:55:38.527 INFO [21630]: COREGRADE is stopping... -- 18:55:38.527 DEBUG [21630]: Closing database connection -- 18:55:38.527 SQL [21630]: pgsql_close() -- 18:56:41.847 INFO [11549]: COREGRADE is starting... -- 18:56:41.848 INFO [11549]: Version from config: 1.0 -- 18:56:41.848 DEBUG [11549]: Connecting to database... -- 18:56:41.848 DEBUG [11549]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:56:41.848 SQL [11549]: pgsql_db_connect() -- 18:56:41.852 DEBUG [11549]: Database connection successful -- 18:56:41.852 INFO [11549]: _SERVER found -- 18:56:41.852 INFO [11549]: REMOTE_ADDR = 192.168.1.13 -- 18:56:41.852 INFO [11549]: SERVER_NAME = oameye.works.coregrade.com -- 18:56:41.852 INFO [11549]: HTTP_COOKIE = _ga=GA1.2.701787883.1578778832; _gid=GA1.2.1101736530.1582588065; ci_session=uoqsmvgr8bids3v1lenilpa2so133qca -- 18:56:41.852 INFO [11549]: QUERY_STRING = /member/page -- 18:56:41.852 INFO [11549]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:56:41.894 INFO [11549]: COREGRADE is stopping... -- 18:56:41.895 DEBUG [11549]: Closing database connection -- 18:56:41.895 SQL [11549]: pgsql_close() -- 18:56:42.177 INFO [11546]: COREGRADE is starting... -- 18:56:42.177 INFO [11546]: Version from config: 1.0 -- 18:56:42.177 DEBUG [11546]: Connecting to database... -- 18:56:42.177 DEBUG [11546]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:56:42.177 SQL [11546]: pgsql_db_connect() -- 18:56:42.183 DEBUG [11546]: Database connection successful -- 18:56:42.183 INFO [11546]: _SERVER found -- 18:56:42.183 INFO [11546]: REMOTE_ADDR = 192.168.1.13 -- 18:56:42.183 INFO [11546]: SERVER_NAME = oameye.works.coregrade.com -- 18:56:42.183 INFO [11546]: HTTP_COOKIE = _ga=GA1.2.701787883.1578778832; _gid=GA1.2.1101736530.1582588065; ci_session=uoqsmvgr8bids3v1lenilpa2so133qca -- 18:56:42.183 INFO [11546]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:56:42.183 INFO [11546]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:56:42.195 INFO [11546]: COREGRADE is stopping... -- 18:56:42.196 DEBUG [11546]: Closing database connection -- 18:56:42.196 SQL [11546]: pgsql_close() -- 18:56:42.407 INFO [11546]: COREGRADE is starting... -- 18:56:42.407 INFO [11546]: Version from config: 1.0 -- 18:56:42.407 DEBUG [11546]: Connecting to database... -- 18:56:42.407 DEBUG [11546]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:56:42.407 SQL [11546]: pgsql_db_connect() -- 18:56:42.411 DEBUG [11546]: Database connection successful -- 18:56:42.411 INFO [11546]: _SERVER found -- 18:56:42.411 INFO [11546]: REMOTE_ADDR = 192.168.1.13 -- 18:56:42.411 INFO [11546]: SERVER_NAME = oameye.works.coregrade.com -- 18:56:42.411 INFO [11546]: HTTP_COOKIE = _ga=GA1.2.701787883.1578778832; _gid=GA1.2.1101736530.1582588065; ci_session=uoqsmvgr8bids3v1lenilpa2so133qca -- 18:56:42.411 INFO [11546]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:56:42.411 INFO [11546]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:56:42.422 INFO [11546]: COREGRADE is stopping... -- 18:56:42.422 DEBUG [11546]: Closing database connection -- 18:56:42.422 SQL [11546]: pgsql_close() -- 18:56:56.967 INFO [13455]: COREGRADE is starting... -- 18:56:56.967 INFO [13455]: Version from config: 1.0 -- 18:56:56.967 DEBUG [13455]: Connecting to database... -- 18:56:56.967 DEBUG [13455]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:56:56.967 SQL [13455]: pgsql_db_connect() -- 18:56:56.971 DEBUG [13455]: Database connection successful -- 18:56:56.971 INFO [13455]: _SERVER found -- 18:56:56.971 INFO [13455]: REMOTE_ADDR = 192.168.1.13 -- 18:56:56.971 INFO [13455]: SERVER_NAME = oameye.works.coregrade.com -- 18:56:56.971 INFO [13455]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=bgi36c9fau6p4rructnco82nas0fo0kt -- 18:56:56.971 INFO [13455]: QUERY_STRING = /member/page -- 18:56:56.971 INFO [13455]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:56:57.013 INFO [13455]: COREGRADE is stopping... -- 18:56:57.013 DEBUG [13455]: Closing database connection -- 18:56:57.013 SQL [13455]: pgsql_close() -- 18:56:57.465 INFO [13455]: COREGRADE is starting... -- 18:56:57.465 INFO [13455]: Version from config: 1.0 -- 18:56:57.465 DEBUG [13455]: Connecting to database... -- 18:56:57.465 DEBUG [13455]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:56:57.465 SQL [13455]: pgsql_db_connect() -- 18:56:57.469 DEBUG [13455]: Database connection successful -- 18:56:57.469 INFO [13455]: _SERVER found -- 18:56:57.469 INFO [13455]: REMOTE_ADDR = 192.168.1.13 -- 18:56:57.469 INFO [13455]: SERVER_NAME = oameye.works.coregrade.com -- 18:56:57.469 INFO [13455]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=pcmij355dtfr6be9db0vftdo7d15mlc4 -- 18:56:57.469 INFO [13455]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:56:57.469 INFO [13455]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:56:57.481 INFO [13455]: COREGRADE is stopping... -- 18:56:57.481 DEBUG [13455]: Closing database connection -- 18:56:57.481 SQL [13455]: pgsql_close() -- 18:57:00.703 INFO [13455]: COREGRADE is starting... -- 18:57:00.703 INFO [13455]: Version from config: 1.0 -- 18:57:00.703 DEBUG [13455]: Connecting to database... -- 18:57:00.703 DEBUG [13455]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:57:00.703 SQL [13455]: pgsql_db_connect() -- 18:57:00.707 DEBUG [13455]: Database connection successful -- 18:57:00.707 INFO [13455]: _SERVER found -- 18:57:00.707 INFO [13455]: REMOTE_ADDR = 192.168.1.13 -- 18:57:00.707 INFO [13455]: SERVER_NAME = oameye.works.coregrade.com -- 18:57:00.707 INFO [13455]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=pcmij355dtfr6be9db0vftdo7d15mlc4 -- 18:57:00.707 INFO [13455]: QUERY_STRING = /member/viewCardAddAction -- 18:57:00.707 INFO [13455]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:57:00.738 INFO [13455]: COREGRADE is stopping... -- 18:57:00.738 DEBUG [13455]: Closing database connection -- 18:57:00.738 SQL [13455]: pgsql_close() -- 18:57:05.259 INFO [13455]: COREGRADE is starting... -- 18:57:05.259 INFO [13455]: Version from config: 1.0 -- 18:57:05.259 DEBUG [13455]: Connecting to database... -- 18:57:05.259 DEBUG [13455]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:57:05.259 SQL [13455]: pgsql_db_connect() -- 18:57:05.263 DEBUG [13455]: Database connection successful -- 18:57:05.263 INFO [13455]: _SERVER found -- 18:57:05.263 INFO [13455]: REMOTE_ADDR = 192.168.1.13 -- 18:57:05.263 INFO [13455]: SERVER_NAME = oameye.works.coregrade.com -- 18:57:05.263 INFO [13455]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=pcmij355dtfr6be9db0vftdo7d15mlc4 -- 18:57:05.263 INFO [13455]: QUERY_STRING = /member/upload -- 18:57:05.263 INFO [13455]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:57:05.294 INFO [13455]: COREGRADE is stopping... -- 18:57:05.294 DEBUG [13455]: Closing database connection -- 18:57:05.294 SQL [13455]: pgsql_close() -- 18:57:14.708 INFO [21675]: COREGRADE is starting... -- 18:57:14.708 INFO [21675]: Version from config: 1.0 -- 18:57:14.708 DEBUG [21675]: Connecting to database... -- 18:57:14.708 DEBUG [21675]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:57:14.708 SQL [21675]: pgsql_db_connect() -- 18:57:14.712 DEBUG [21675]: Database connection successful -- 18:57:14.712 INFO [21675]: _SERVER found -- 18:57:14.712 INFO [21675]: REMOTE_ADDR = 192.168.1.13 -- 18:57:14.712 INFO [21675]: SERVER_NAME = oameye.works.coregrade.com -- 18:57:14.712 INFO [21675]: HTTP_COOKIE = _ga=GA1.2.701787883.1578778832; _gid=GA1.2.1101736530.1582588065; ci_session=uoqsmvgr8bids3v1lenilpa2so133qca -- 18:57:14.712 INFO [21675]: QUERY_STRING = /member/viewCardAddAction -- 18:57:14.712 INFO [21675]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:57:14.744 INFO [21675]: COREGRADE is stopping... -- 18:57:14.744 DEBUG [21675]: Closing database connection -- 18:57:14.744 SQL [21675]: pgsql_close() -- 18:57:27.617 INFO [21593]: COREGRADE is starting... -- 18:57:27.617 INFO [21593]: Version from config: 1.0 -- 18:57:27.617 DEBUG [21593]: Connecting to database... -- 18:57:27.617 DEBUG [21593]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:57:27.617 SQL [21593]: pgsql_db_connect() -- 18:57:27.621 DEBUG [21593]: Database connection successful -- 18:57:27.621 INFO [21593]: _SERVER found -- 18:57:27.621 INFO [21593]: REMOTE_ADDR = 192.168.1.13 -- 18:57:27.621 INFO [21593]: SERVER_NAME = oameye.works.coregrade.com -- 18:57:27.621 INFO [21593]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=pcmij355dtfr6be9db0vftdo7d15mlc4 -- 18:57:27.621 INFO [21593]: QUERY_STRING = /member/upload -- 18:57:27.621 INFO [21593]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:57:27.653 INFO [21593]: COREGRADE is stopping... -- 18:57:27.653 DEBUG [21593]: Closing database connection -- 18:57:27.653 SQL [21593]: pgsql_close() -- 18:58:13.823 INFO [11547]: COREGRADE is starting... -- 18:58:13.823 INFO [11547]: Version from config: 1.0 -- 18:58:13.823 DEBUG [11547]: Connecting to database... -- 18:58:13.823 DEBUG [11547]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:58:13.823 SQL [11547]: pgsql_db_connect() -- 18:58:13.827 DEBUG [11547]: Database connection successful -- 18:58:13.827 INFO [11547]: _SERVER found -- 18:58:13.827 INFO [11547]: REMOTE_ADDR = 192.168.1.13 -- 18:58:13.827 INFO [11547]: SERVER_NAME = oameye.works.coregrade.com -- 18:58:13.827 INFO [11547]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=pcmij355dtfr6be9db0vftdo7d15mlc4 -- 18:58:13.827 INFO [11547]: QUERY_STRING = /member/page -- 18:58:13.827 INFO [11547]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:58:13.869 INFO [11547]: COREGRADE is stopping... -- 18:58:13.869 DEBUG [11547]: Closing database connection -- 18:58:13.869 SQL [11547]: pgsql_close() -- 18:58:14.304 INFO [11547]: COREGRADE is starting... -- 18:58:14.304 INFO [11547]: Version from config: 1.0 -- 18:58:14.304 DEBUG [11547]: Connecting to database... -- 18:58:14.304 DEBUG [11547]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:58:14.304 SQL [11547]: pgsql_db_connect() -- 18:58:14.308 DEBUG [11547]: Database connection successful -- 18:58:14.308 INFO [11547]: _SERVER found -- 18:58:14.308 INFO [11547]: REMOTE_ADDR = 192.168.1.13 -- 18:58:14.308 INFO [11547]: SERVER_NAME = oameye.works.coregrade.com -- 18:58:14.308 INFO [11547]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=pcmij355dtfr6be9db0vftdo7d15mlc4 -- 18:58:14.308 INFO [11547]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:58:14.308 INFO [11547]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:58:14.319 INFO [11547]: COREGRADE is stopping... -- 18:58:14.319 DEBUG [11547]: Closing database connection -- 18:58:14.319 SQL [11547]: pgsql_close() -- 19:00:50.840 INFO [11548]: COREGRADE is starting... -- 19:00:50.840 INFO [11548]: Version from config: 1.0 -- 19:00:50.840 DEBUG [11548]: Connecting to database... -- 19:00:50.840 DEBUG [11548]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:00:50.840 SQL [11548]: pgsql_db_connect() -- 19:00:50.844 DEBUG [11548]: Database connection successful -- 19:00:50.844 INFO [11548]: _SERVER found -- 19:00:50.844 INFO [11548]: REMOTE_ADDR = 192.168.1.13 -- 19:00:50.844 INFO [11548]: SERVER_NAME = oameye.works.coregrade.com -- 19:00:50.844 INFO [11548]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=pcmij355dtfr6be9db0vftdo7d15mlc4 -- 19:00:50.844 INFO [11548]: QUERY_STRING = /member/viewCardAddAction -- 19:00:50.844 INFO [11548]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:00:50.877 INFO [11548]: COREGRADE is stopping... -- 19:00:50.877 DEBUG [11548]: Closing database connection -- 19:00:50.877 SQL [11548]: pgsql_close() -- 19:00:54.947 INFO [11548]: COREGRADE is starting... -- 19:00:54.947 INFO [11548]: Version from config: 1.0 -- 19:00:54.947 DEBUG [11548]: Connecting to database... -- 19:00:54.947 DEBUG [11548]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:00:54.947 SQL [11548]: pgsql_db_connect() -- 19:00:54.951 DEBUG [11548]: Database connection successful -- 19:00:54.951 INFO [11548]: _SERVER found -- 19:00:54.951 INFO [11548]: REMOTE_ADDR = 192.168.1.13 -- 19:00:54.951 INFO [11548]: SERVER_NAME = oameye.works.coregrade.com -- 19:00:54.951 INFO [11548]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=pcmij355dtfr6be9db0vftdo7d15mlc4 -- 19:00:54.951 INFO [11548]: QUERY_STRING = /member/upload -- 19:00:54.951 INFO [11548]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:00:54.981 INFO [11548]: COREGRADE is stopping... -- 19:00:54.982 DEBUG [11548]: Closing database connection -- 19:00:54.982 SQL [11548]: pgsql_close() -- 19:01:17.366 INFO [21630]: COREGRADE is starting... -- 19:01:17.367 INFO [21630]: Version from config: 1.0 -- 19:01:17.367 DEBUG [21630]: Connecting to database... -- 19:01:17.367 DEBUG [21630]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:01:17.367 SQL [21630]: pgsql_db_connect() -- 19:01:17.371 DEBUG [21630]: Database connection successful -- 19:01:17.371 INFO [21630]: _SERVER found -- 19:01:17.371 INFO [21630]: REMOTE_ADDR = 192.168.1.13 -- 19:01:17.371 INFO [21630]: SERVER_NAME = oameye.works.coregrade.com -- 19:01:17.371 INFO [21630]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=pcmij355dtfr6be9db0vftdo7d15mlc4 -- 19:01:17.371 INFO [21630]: QUERY_STRING = /member/upload -- 19:01:17.371 INFO [21630]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:01:17.402 INFO [21630]: COREGRADE is stopping... -- 19:01:17.402 DEBUG [21630]: Closing database connection -- 19:01:17.402 SQL [21630]: pgsql_close() -- 19:02:48.833 INFO [21955]: COREGRADE is starting... -- 19:02:48.833 INFO [21955]: Version from config: 1.0 -- 19:02:48.833 DEBUG [21955]: Connecting to database... -- 19:02:48.833 DEBUG [21955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:02:48.833 SQL [21955]: pgsql_db_connect() -- 19:02:48.838 DEBUG [21955]: Database connection successful -- 19:02:48.838 INFO [21955]: _SERVER found -- 19:02:48.838 INFO [21955]: REMOTE_ADDR = 192.168.1.13 -- 19:02:48.838 INFO [21955]: SERVER_NAME = oameye.works.coregrade.com -- 19:02:48.838 INFO [21955]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=pcmij355dtfr6be9db0vftdo7d15mlc4 -- 19:02:48.838 INFO [21955]: QUERY_STRING = /member/page -- 19:02:48.838 INFO [21955]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:02:48.887 INFO [21955]: COREGRADE is stopping... -- 19:02:48.888 DEBUG [21955]: Closing database connection -- 19:02:48.888 SQL [21955]: pgsql_close() -- 19:02:52.021 INFO [21955]: COREGRADE is starting... -- 19:02:52.021 INFO [21955]: Version from config: 1.0 -- 19:02:52.021 DEBUG [21955]: Connecting to database... -- 19:02:52.021 DEBUG [21955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:02:52.021 SQL [21955]: pgsql_db_connect() -- 19:02:52.025 DEBUG [21955]: Database connection successful -- 19:02:52.025 INFO [21955]: _SERVER found -- 19:02:52.025 INFO [21955]: REMOTE_ADDR = 192.168.1.13 -- 19:02:52.025 INFO [21955]: SERVER_NAME = oameye.works.coregrade.com -- 19:02:52.025 INFO [21955]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=l7lk2sl16l1qrgft4vhh5hg6bgc37neb -- 19:02:52.025 INFO [21955]: QUERY_STRING = /member/viewCardAddAction -- 19:02:52.025 INFO [21955]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:02:52.059 INFO [21955]: COREGRADE is stopping... -- 19:02:52.059 DEBUG [21955]: Closing database connection -- 19:02:52.059 SQL [21955]: pgsql_close() -- 19:02:56.961 INFO [21955]: COREGRADE is starting... -- 19:02:56.961 INFO [21955]: Version from config: 1.0 -- 19:02:56.961 DEBUG [21955]: Connecting to database... -- 19:02:56.961 DEBUG [21955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:02:56.961 SQL [21955]: pgsql_db_connect() -- 19:02:56.965 DEBUG [21955]: Database connection successful -- 19:02:56.965 INFO [21955]: _SERVER found -- 19:02:56.965 INFO [21955]: REMOTE_ADDR = 192.168.1.13 -- 19:02:56.965 INFO [21955]: SERVER_NAME = oameye.works.coregrade.com -- 19:02:56.965 INFO [21955]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=l7lk2sl16l1qrgft4vhh5hg6bgc37neb -- 19:02:56.965 INFO [21955]: QUERY_STRING = /member/upload -- 19:02:56.965 INFO [21955]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:02:56.996 INFO [21955]: COREGRADE is stopping... -- 19:02:56.996 DEBUG [21955]: Closing database connection -- 19:02:56.996 SQL [21955]: pgsql_close() -- 19:03:19.408 INFO [21957]: COREGRADE is starting... -- 19:03:19.409 INFO [21957]: Version from config: 1.0 -- 19:03:19.409 DEBUG [21957]: Connecting to database... -- 19:03:19.409 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:03:19.409 SQL [21957]: pgsql_db_connect() -- 19:03:19.413 DEBUG [21957]: Database connection successful -- 19:03:19.413 INFO [21957]: _SERVER found -- 19:03:19.413 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 19:03:19.413 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 19:03:19.413 INFO [21957]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=l7lk2sl16l1qrgft4vhh5hg6bgc37neb -- 19:03:19.413 INFO [21957]: QUERY_STRING = /member/upload -- 19:03:19.413 INFO [21957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:03:19.450 INFO [21957]: COREGRADE is stopping... -- 19:03:19.450 DEBUG [21957]: Closing database connection -- 19:03:19.451 SQL [21957]: pgsql_close() -- 19:12:09.266 INFO [21958]: COREGRADE is starting... -- 19:12:09.267 INFO [21958]: Version from config: 1.0 -- 19:12:09.267 DEBUG [21958]: Connecting to database... -- 19:12:09.267 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:12:09.267 SQL [21958]: pgsql_db_connect() -- 19:12:09.271 DEBUG [21958]: Database connection successful -- 19:12:09.271 INFO [21958]: _SERVER found -- 19:12:09.271 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 19:12:09.271 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 19:12:09.271 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=l7lk2sl16l1qrgft4vhh5hg6bgc37neb -- 19:12:09.271 INFO [21958]: QUERY_STRING = /auth -- 19:12:09.271 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:12:09.312 INFO [21958]: COREGRADE is stopping... -- 19:12:09.312 DEBUG [21958]: Closing database connection -- 19:12:09.312 SQL [21958]: pgsql_close() -- 19:12:09.414 INFO [21958]: COREGRADE is starting... -- 19:12:09.414 INFO [21958]: Version from config: 1.0 -- 19:12:09.414 DEBUG [21958]: Connecting to database... -- 19:12:09.414 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:12:09.414 SQL [21958]: pgsql_db_connect() -- 19:12:09.418 DEBUG [21958]: Database connection successful -- 19:12:09.418 INFO [21958]: _SERVER found -- 19:12:09.418 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 19:12:09.418 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 19:12:09.418 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=3qv09t7re3dni6d90bbpcj4m52o23pb3 -- 19:12:09.418 INFO [21958]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 19:12:09.418 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:12:09.431 INFO [21958]: COREGRADE is stopping... -- 19:12:09.431 DEBUG [21958]: Closing database connection -- 19:12:09.431 SQL [21958]: pgsql_close() -- 19:12:09.454 INFO [21959]: COREGRADE is starting... -- 19:12:09.454 INFO [21959]: Version from config: 1.0 -- 19:12:09.454 DEBUG [21959]: Connecting to database... -- 19:12:09.454 DEBUG [21959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:12:09.454 SQL [21959]: pgsql_db_connect() -- 19:12:09.458 DEBUG [21959]: Database connection successful -- 19:12:09.458 INFO [21959]: _SERVER found -- 19:12:09.458 INFO [21959]: REMOTE_ADDR = 192.168.1.13 -- 19:12:09.458 INFO [21959]: SERVER_NAME = oameye.works.coregrade.com -- 19:12:09.458 INFO [21959]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=3qv09t7re3dni6d90bbpcj4m52o23pb3 -- 19:12:09.458 INFO [21959]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:12:09.458 INFO [21959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:12:09.472 INFO [21959]: COREGRADE is stopping... -- 19:12:09.472 DEBUG [21959]: Closing database connection -- 19:12:09.472 SQL [21959]: pgsql_close() -- 19:45:28.866 INFO [21962]: COREGRADE is starting... -- 19:45:28.866 INFO [21962]: Version from config: 1.0 -- 19:45:28.866 DEBUG [21962]: Connecting to database... -- 19:45:28.866 DEBUG [21962]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:45:28.866 SQL [21962]: pgsql_db_connect() -- 19:45:28.871 DEBUG [21962]: Database connection successful -- 19:45:28.871 INFO [21962]: _SERVER found -- 19:45:28.871 INFO [21962]: REMOTE_ADDR = 192.168.1.13 -- 19:45:28.871 INFO [21962]: SERVER_NAME = oameye.works.coregrade.com -- 19:45:28.871 INFO [21962]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124 -- 19:45:28.871 INFO [21962]: QUERY_STRING = -- 19:45:28.871 INFO [21962]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:45:28.918 INFO [21962]: COREGRADE is stopping... -- 19:45:28.918 DEBUG [21962]: Closing database connection -- 19:45:28.918 SQL [21962]: pgsql_close() -- 19:45:29.532 INFO [21962]: COREGRADE is starting... -- 19:45:29.532 INFO [21962]: Version from config: 1.0 -- 19:45:29.532 DEBUG [21962]: Connecting to database... -- 19:45:29.532 DEBUG [21962]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:45:29.532 SQL [21962]: pgsql_db_connect() -- 19:45:29.536 DEBUG [21962]: Database connection successful -- 19:45:29.536 INFO [21962]: _SERVER found -- 19:45:29.536 INFO [21962]: REMOTE_ADDR = 192.168.1.13 -- 19:45:29.536 INFO [21962]: SERVER_NAME = oameye.works.coregrade.com -- 19:45:29.537 INFO [21962]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=8q1tubu3h9asegpbhk82j9io1el8muv5 -- 19:45:29.537 INFO [21962]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 19:45:29.537 INFO [21962]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:45:29.549 INFO [21962]: COREGRADE is stopping... -- 19:45:29.549 DEBUG [21962]: Closing database connection -- 19:45:29.549 SQL [21962]: pgsql_close() -- 19:45:29.557 INFO [21963]: COREGRADE is starting... -- 19:45:29.557 INFO [21963]: Version from config: 1.0 -- 19:45:29.557 DEBUG [21963]: Connecting to database... -- 19:45:29.557 DEBUG [21963]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:45:29.557 SQL [21963]: pgsql_db_connect() -- 19:45:29.562 DEBUG [21963]: Database connection successful -- 19:45:29.562 INFO [21963]: _SERVER found -- 19:45:29.562 INFO [21963]: REMOTE_ADDR = 192.168.1.13 -- 19:45:29.562 INFO [21963]: SERVER_NAME = oameye.works.coregrade.com -- 19:45:29.562 INFO [21963]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=8q1tubu3h9asegpbhk82j9io1el8muv5 -- 19:45:29.562 INFO [21963]: QUERY_STRING = /assets/img/footer_1.jpg -- 19:45:29.562 INFO [21963]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:45:29.577 INFO [21963]: COREGRADE is stopping... -- 19:45:29.577 DEBUG [21963]: Closing database connection -- 19:45:29.577 SQL [21963]: pgsql_close() -- 19:45:30.955 INFO [21963]: COREGRADE is starting... -- 19:45:30.955 INFO [21963]: Version from config: 1.0 -- 19:45:30.955 DEBUG [21963]: Connecting to database... -- 19:45:30.955 DEBUG [21963]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:45:30.955 SQL [21963]: pgsql_db_connect() -- 19:45:30.957 INFO [21962]: COREGRADE is starting... -- 19:45:30.957 INFO [21962]: Version from config: 1.0 -- 19:45:30.957 DEBUG [21962]: Connecting to database... -- 19:45:30.957 DEBUG [21962]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:45:30.957 SQL [21962]: pgsql_db_connect() -- 19:45:30.962 DEBUG [21962]: Database connection successful -- 19:45:30.962 INFO [21962]: _SERVER found -- 19:45:30.962 INFO [21962]: REMOTE_ADDR = 192.168.1.13 -- 19:45:30.962 INFO [21962]: SERVER_NAME = oameye.works.coregrade.com -- 19:45:30.962 INFO [21962]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=8q1tubu3h9asegpbhk82j9io1el8muv5; _gat_gtag_UA_54829827_2=1 -- 19:45:30.962 INFO [21962]: QUERY_STRING = /auth -- 19:45:30.962 INFO [21962]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:45:30.998 INFO [21962]: COREGRADE is stopping... -- 19:45:30.998 DEBUG [21962]: Closing database connection -- 19:45:30.998 SQL [21962]: pgsql_close() -- 19:45:30.960 DEBUG [21963]: Database connection successful -- 19:45:30.960 INFO [21963]: _SERVER found -- 19:45:30.960 INFO [21963]: REMOTE_ADDR = 192.168.1.13 -- 19:45:30.960 INFO [21963]: SERVER_NAME = oameye.works.coregrade.com -- 19:45:30.960 INFO [21963]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=8q1tubu3h9asegpbhk82j9io1el8muv5; _gat_gtag_UA_54829827_2=1 -- 19:45:30.960 INFO [21963]: QUERY_STRING = /welcome/viewLogin -- 19:45:30.960 INFO [21963]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:45:30.000 INFO [21963]: COREGRADE is stopping... -- 19:45:30.000 DEBUG [21963]: Closing database connection -- 19:45:30.000 SQL [21963]: pgsql_close() -- 19:45:31.032 INFO [21963]: COREGRADE is starting... -- 19:45:31.032 INFO [21963]: Version from config: 1.0 -- 19:45:31.032 DEBUG [21963]: Connecting to database... -- 19:45:31.032 DEBUG [21963]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:45:31.032 SQL [21963]: pgsql_db_connect() -- 19:45:31.036 DEBUG [21963]: Database connection successful -- 19:45:31.036 INFO [21963]: _SERVER found -- 19:45:31.036 INFO [21963]: REMOTE_ADDR = 192.168.1.13 -- 19:45:31.036 INFO [21963]: SERVER_NAME = oameye.works.coregrade.com -- 19:45:31.036 INFO [21963]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=8q1tubu3h9asegpbhk82j9io1el8muv5; _gat_gtag_UA_54829827_2=1 -- 19:45:31.036 INFO [21963]: QUERY_STRING = /auth/index -- 19:45:31.036 INFO [21963]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:45:31.068 INFO [21963]: COREGRADE is stopping... -- 19:45:31.068 DEBUG [21963]: Closing database connection -- 19:45:31.068 SQL [21963]: pgsql_close() -- 19:45:31.223 INFO [21962]: COREGRADE is starting... -- 19:45:31.223 INFO [21962]: Version from config: 1.0 -- 19:45:31.223 DEBUG [21962]: Connecting to database... -- 19:45:31.223 DEBUG [21962]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:45:31.223 SQL [21962]: pgsql_db_connect() -- 19:45:31.236 INFO [21964]: COREGRADE is starting... -- 19:45:31.237 INFO [21964]: Version from config: 1.0 -- 19:45:31.237 DEBUG [21964]: Connecting to database... -- 19:45:31.237 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:45:31.237 SQL [21964]: pgsql_db_connect() -- 19:45:31.227 DEBUG [21962]: Database connection successful -- 19:45:31.227 INFO [21962]: _SERVER found -- 19:45:31.227 INFO [21962]: REMOTE_ADDR = 192.168.1.13 -- 19:45:31.227 INFO [21962]: SERVER_NAME = oameye.works.coregrade.com -- 19:45:31.227 INFO [21962]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=8q1tubu3h9asegpbhk82j9io1el8muv5; _gat_gtag_UA_54829827_2=1 -- 19:45:31.227 INFO [21962]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 19:45:31.227 INFO [21962]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:45:31.239 INFO [21962]: COREGRADE is stopping... -- 19:45:31.239 DEBUG [21962]: Closing database connection -- 19:45:31.239 SQL [21962]: pgsql_close() -- 19:45:31.241 DEBUG [21964]: Database connection successful -- 19:45:31.241 INFO [21964]: _SERVER found -- 19:45:31.241 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 19:45:31.241 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 19:45:31.241 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=8q1tubu3h9asegpbhk82j9io1el8muv5; _gat_gtag_UA_54829827_2=1 -- 19:45:31.241 INFO [21964]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:45:31.241 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:45:31.255 INFO [21964]: COREGRADE is stopping... -- 19:45:31.255 DEBUG [21964]: Closing database connection -- 19:45:31.255 SQL [21964]: pgsql_close() -- 19:45:32.487 INFO [21964]: COREGRADE is starting... -- 19:45:32.488 INFO [21964]: Version from config: 1.0 -- 19:45:32.488 DEBUG [21964]: Connecting to database... -- 19:45:32.488 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:45:32.488 SQL [21964]: pgsql_db_connect() -- 19:45:32.526 INFO [21964]: COREGRADE is starting... -- 19:45:32.526 INFO [21964]: Version from config: 1.0 -- 19:45:32.526 DEBUG [21964]: Connecting to database... -- 19:45:32.527 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:45:32.527 SQL [21964]: pgsql_db_connect() -- 19:45:32.531 DEBUG [21964]: Database connection successful -- 19:45:32.531 INFO [21964]: _SERVER found -- 19:45:32.531 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 19:45:32.531 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 19:45:32.531 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=8q1tubu3h9asegpbhk82j9io1el8muv5; _gat_gtag_UA_54829827_2=1 -- 19:45:32.531 INFO [21964]: QUERY_STRING = -- 19:45:32.531 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:45:32.531 INFO [21964]: SystemStatus()09-09-********~************ -- 19:45:32.531 INFO [21964]: long coregrade_api_main(CVars in, CVars &out) -- 19:45:32.531 INFO [21964]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 19:45:32.531 INFO [21964]: account calls -- 19:45:32.531 INFO [21964]: account_calls() -- 19:45:32.531 INFO [21964]: LoginCoreGradeAccount() -- 19:45:32.531 FLOG_MAX [21964]: REQ_STRING(username) -- 19:45:32.531 FLOG_MAX [21964]: REQ_STRING(password) -- 19:45:32.531 FLOG_MAX [21964]: REQ_STRING(sessionid) -- 19:45:32.531 FLOG_MAX [21964]: long load_db_record( CVars &rec, const char * query, ... ) -- 19:45:32.531 SQL [21964]: pgsql_query() -- 19:45:32.531 SQL [21964]: About to run query: -- 19:45:32.531 SQL [21964]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 19:45:32.535 SQL [21964]: Found rows: 1 -- 19:45:32.535 FLOG_MAX [21964]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=16 -- 19:45:32.535 INFO [21964]: long SessionCheck(long uid, const char *sessionid, int create ) -- 19:45:32.535 SQL [21964]: pgsql_exec() -- 19:45:32.535 SQL [21964]: About to run query: -- 19:45:32.535 SQL [21964]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 19:45:32.602 SQL [21964]: PQcmdTuples: 1 -- 19:45:32.602 SQL [21964]: Affected rows: 1 -- 19:45:32.602 SQL [21964]: pgsql_exec() -- 19:45:32.602 SQL [21964]: About to run query: -- 19:45:32.602 SQL [21964]: DELETE FROM members_session WHERE member_id=7 -- 19:45:32.602 SQL [21964]: PQcmdTuples: 0 -- 19:45:32.602 SQL [21964]: Affected rows: 0 -- 19:45:32.602 SQL [21964]: pgsql_query() -- 19:45:32.602 SQL [21964]: About to run query: -- 19:45:32.603 SQL [21964]: SELECT * FROM members_session WHERE member_id=7 AND session<>'FFC8AFD39DBFA410098E860302E4E4AE' -- 19:45:32.603 SQL [21964]: Found rows: 0 -- 19:45:32.603 SQL [21964]: Found rows: 0 -- 19:45:32.603 FLOG_MAX [21964]: long load_db_record( CVars &rec, const char * query, ... ) -- 19:45:32.603 SQL [21964]: pgsql_query() -- 19:45:32.603 SQL [21964]: About to run query: -- 19:45:32.603 SQL [21964]: SELECT * FROM members_session WHERE member_id=7 AND session='FFC8AFD39DBFA410098E860302E4E4AE' -- 19:45:32.604 SQL [21964]: Found rows: 0 -- 19:45:32.604 SQL [21964]: Found rows: 0 -- 19:45:32.604 FLOG_MAX [21964]: insert_db_record() -- 19:45:32.604 SQL [21964]: pgsql_exec() -- 19:45:32.604 SQL [21964]: About to run query: -- 19:45:32.604 SQL [21964]: INSERT INTO members_session (member_id,session) VALUES ('7','FFC8AFD39DBFA410098E860302E4E4AE') -- 19:45:32.614 SQL [21964]: PQcmdTuples: 1 -- 19:45:32.614 SQL [21964]: Affected rows: 1 -- 19:45:32.614 FLOG_MAX [21964]: SELECT currval('members_session_id_seq') -- 19:45:32.614 SQL [21964]: pgsql_query() -- 19:45:32.614 SQL [21964]: About to run query: -- 19:45:32.614 SQL [21964]: SELECT currval('members_session_id_seq') -- 19:45:32.614 SQL [21964]: Found rows: 1 -- 19:45:32.615 INFO [21964]: CreateDefaultPage() -- 19:45:32.615 FLOG_MAX [21964]: long load_db_record( CVars &rec, const char * query, ... ) -- 19:45:32.615 SQL [21964]: pgsql_query() -- 19:45:32.615 SQL [21964]: About to run query: -- 19:45:32.615 SQL [21964]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 19:45:32.615 SQL [21964]: Found rows: 1 -- 19:45:32.615 FLOG_MAX [21964]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 19:45:32.615 SQL [21964]: pgsql_query() -- 19:45:32.615 SQL [21964]: About to run query: -- 19:45:32.615 SQL [21964]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 19:45:32.615 SQL [21964]: Found rows: 1 -- 19:45:32.615 INFO [21964]: /CreateDefaultPage() -- 19:45:32.615 INFO [21964]: /LoginCoreGradeAccount() -- 19:45:32.615 INFO [21964]: RET: added=2020-02-05 09:42:12.816064 -- 19:45:32.615 INFO [21964]: RET: email=tokslaw@chiefsoft.com -- 19:45:32.615 INFO [21964]: RET: firstname=Tokunbo -- 19:45:32.615 INFO [21964]: RET: folder=5D06B187B1E2285A63AD1D0ECB670D98 -- 19:45:32.615 INFO [21964]: RET: id=7 -- 19:45:32.615 INFO [21964]: RET: last_login= -- 19:45:32.615 INFO [21964]: RET: lastname=Lawal -- 19:45:32.615 INFO [21964]: RET: loc=192.168.1.13 -- 19:45:32.615 INFO [21964]: RET: member_id=7 -- 19:45:32.615 INFO [21964]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 19:45:32.615 INFO [21964]: RET: phone= -- 19:45:32.615 INFO [21964]: RET: pid= -- 19:45:32.615 INFO [21964]: RET: result=YES I GET TO BACK END -- 19:45:32.615 INFO [21964]: RET: sessionid=FFC8AFD39DBFA410098E860302E4E4AE -- 19:45:32.615 INFO [21964]: RET: status=1 -- 19:45:32.615 INFO [21964]: RET: stauts=OK -- 19:45:32.615 INFO [21964]: RET: username=tokslaw@chiefsoft.com -- 19:45:32.615 INFO [21964]: RET: verified= -- 19:45:32.617 INFO [21964]: COREGRADE is stopping... -- 19:45:32.617 DEBUG [21964]: Closing database connection -- 19:45:32.617 SQL [21964]: pgsql_close() -- 19:45:32.492 DEBUG [21964]: Database connection successful -- 19:45:32.492 INFO [21964]: _SERVER found -- 19:45:32.492 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 19:45:32.492 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 19:45:32.492 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=8q1tubu3h9asegpbhk82j9io1el8muv5; _gat_gtag_UA_54829827_2=1 -- 19:45:32.492 INFO [21964]: QUERY_STRING = /auth -- 19:45:32.492 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:45:32.617 INFO [21964]: COREGRADE is stopping... -- 19:45:32.617 DEBUG [21964]: Closing database connection -- 19:45:32.617 SQL [21964]: pgsql_close() -- 19:45:32.884 INFO [21964]: COREGRADE is starting... -- 19:45:32.884 INFO [21964]: Version from config: 1.0 -- 19:45:32.884 DEBUG [21964]: Connecting to database... -- 19:45:32.884 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:45:32.884 SQL [21964]: pgsql_db_connect() -- 19:45:32.888 DEBUG [21964]: Database connection successful -- 19:45:32.888 INFO [21964]: _SERVER found -- 19:45:32.888 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 19:45:32.888 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 19:45:32.888 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=8q1tubu3h9asegpbhk82j9io1el8muv5; _gat_gtag_UA_54829827_2=1 -- 19:45:32.888 INFO [21964]: QUERY_STRING = /member/index -- 19:45:32.888 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:45:32.934 INFO [21964]: COREGRADE is stopping... -- 19:45:32.934 DEBUG [21964]: Closing database connection -- 19:45:32.934 SQL [21964]: pgsql_close() -- 19:45:33.207 INFO [21964]: COREGRADE is starting... -- 19:45:33.207 INFO [21964]: Version from config: 1.0 -- 19:45:33.207 DEBUG [21964]: Connecting to database... -- 19:45:33.207 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:45:33.207 SQL [21964]: pgsql_db_connect() -- 19:45:33.211 DEBUG [21964]: Database connection successful -- 19:45:33.211 INFO [21964]: _SERVER found -- 19:45:33.211 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 19:45:33.211 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 19:45:33.211 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=8q1tubu3h9asegpbhk82j9io1el8muv5; _gat_gtag_UA_54829827_2=1 -- 19:45:33.211 INFO [21964]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:45:33.211 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:45:33.223 INFO [21964]: COREGRADE is stopping... -- 19:45:33.223 DEBUG [21964]: Closing database connection -- 19:45:33.223 SQL [21964]: pgsql_close() -- 19:45:33.244 INFO [21964]: COREGRADE is starting... -- 19:45:33.244 INFO [21964]: Version from config: 1.0 -- 19:45:33.244 DEBUG [21964]: Connecting to database... -- 19:45:33.244 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:45:33.244 SQL [21964]: pgsql_db_connect() -- 19:45:33.248 DEBUG [21964]: Database connection successful -- 19:45:33.248 INFO [21964]: _SERVER found -- 19:45:33.248 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 19:45:33.248 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 19:45:33.248 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=8q1tubu3h9asegpbhk82j9io1el8muv5; _gat_gtag_UA_54829827_2=1 -- 19:45:33.248 INFO [21964]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:45:33.248 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:45:33.260 INFO [21964]: COREGRADE is stopping... -- 19:45:33.260 DEBUG [21964]: Closing database connection -- 19:45:33.260 SQL [21964]: pgsql_close() -- 19:45:44.398 INFO [21956]: COREGRADE is starting... -- 19:45:44.398 INFO [21956]: Version from config: 1.0 -- 19:45:44.398 DEBUG [21956]: Connecting to database... -- 19:45:44.398 DEBUG [21956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:45:44.398 SQL [21956]: pgsql_db_connect() -- 19:45:44.402 DEBUG [21956]: Database connection successful -- 19:45:44.402 INFO [21956]: _SERVER found -- 19:45:44.402 INFO [21956]: REMOTE_ADDR = 192.168.1.13 -- 19:45:44.402 INFO [21956]: SERVER_NAME = oameye.works.coregrade.com -- 19:45:44.402 INFO [21956]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=8q1tubu3h9asegpbhk82j9io1el8muv5; _gat_gtag_UA_54829827_2=1 -- 19:45:44.402 INFO [21956]: QUERY_STRING = /member/page -- 19:45:44.402 INFO [21956]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:45:44.452 INFO [21956]: COREGRADE is stopping... -- 19:45:44.452 DEBUG [21956]: Closing database connection -- 19:45:44.452 SQL [21956]: pgsql_close() -- 19:45:44.690 INFO [21955]: COREGRADE is starting... -- 19:45:44.690 INFO [21955]: Version from config: 1.0 -- 19:45:44.690 DEBUG [21955]: Connecting to database... -- 19:45:44.690 DEBUG [21955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:45:44.690 SQL [21955]: pgsql_db_connect() -- 19:45:44.694 DEBUG [21955]: Database connection successful -- 19:45:44.694 INFO [21955]: _SERVER found -- 19:45:44.694 INFO [21955]: REMOTE_ADDR = 192.168.1.13 -- 19:45:44.694 INFO [21955]: SERVER_NAME = oameye.works.coregrade.com -- 19:45:44.694 INFO [21955]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=8q1tubu3h9asegpbhk82j9io1el8muv5; _gat_gtag_UA_54829827_2=1 -- 19:45:44.694 INFO [21955]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:45:44.694 INFO [21955]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:45:44.706 INFO [21955]: COREGRADE is stopping... -- 19:45:44.706 DEBUG [21955]: Closing database connection -- 19:45:44.706 SQL [21955]: pgsql_close() -- 19:45:44.816 INFO [21955]: COREGRADE is starting... -- 19:45:44.816 INFO [21955]: Version from config: 1.0 -- 19:45:44.816 DEBUG [21955]: Connecting to database... -- 19:45:44.816 DEBUG [21955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:45:44.816 SQL [21955]: pgsql_db_connect() -- 19:45:44.820 DEBUG [21955]: Database connection successful -- 19:45:44.820 INFO [21955]: _SERVER found -- 19:45:44.820 INFO [21955]: REMOTE_ADDR = 192.168.1.13 -- 19:45:44.820 INFO [21955]: SERVER_NAME = oameye.works.coregrade.com -- 19:45:44.820 INFO [21955]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=8q1tubu3h9asegpbhk82j9io1el8muv5; _gat_gtag_UA_54829827_2=1 -- 19:45:44.820 INFO [21955]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:45:44.820 INFO [21955]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:45:44.831 INFO [21955]: COREGRADE is stopping... -- 19:45:44.831 DEBUG [21955]: Closing database connection -- 19:45:44.831 SQL [21955]: pgsql_close() -- 19:45:50.474 INFO [21957]: COREGRADE is starting... -- 19:45:50.474 INFO [21957]: Version from config: 1.0 -- 19:45:50.474 DEBUG [21957]: Connecting to database... -- 19:45:50.475 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:45:50.475 SQL [21957]: pgsql_db_connect() -- 19:45:50.479 DEBUG [21957]: Database connection successful -- 19:45:50.479 INFO [21957]: _SERVER found -- 19:45:50.479 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 19:45:50.479 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 19:45:50.479 INFO [21957]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=8q1tubu3h9asegpbhk82j9io1el8muv5; _gat_gtag_UA_54829827_2=1 -- 19:45:50.479 INFO [21957]: QUERY_STRING = /member/viewCardAddAction -- 19:45:50.479 INFO [21957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:45:50.511 INFO [21957]: COREGRADE is stopping... -- 19:45:50.512 DEBUG [21957]: Closing database connection -- 19:45:50.512 SQL [21957]: pgsql_close() -- 20:01:24.382 INFO [21962]: COREGRADE is starting... -- 20:01:24.383 INFO [21962]: Version from config: 1.0 -- 20:01:24.383 DEBUG [21962]: Connecting to database... -- 20:01:24.383 DEBUG [21962]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:01:24.383 SQL [21962]: pgsql_db_connect() -- 20:01:24.387 DEBUG [21962]: Database connection successful -- 20:01:24.387 INFO [21962]: _SERVER found -- 20:01:24.387 INFO [21962]: REMOTE_ADDR = 192.168.1.13 -- 20:01:24.387 INFO [21962]: SERVER_NAME = oameye.works.coregrade.com -- 20:01:24.387 INFO [21962]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=3qv09t7re3dni6d90bbpcj4m52o23pb3 -- 20:01:24.387 INFO [21962]: QUERY_STRING = /auth -- 20:01:24.387 INFO [21962]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:01:24.424 INFO [21962]: COREGRADE is stopping... -- 20:01:24.424 DEBUG [21962]: Closing database connection -- 20:01:24.424 SQL [21962]: pgsql_close() -- 20:01:24.559 INFO [21962]: COREGRADE is starting... -- 20:01:24.559 INFO [21962]: Version from config: 1.0 -- 20:01:24.559 DEBUG [21962]: Connecting to database... -- 20:01:24.559 DEBUG [21962]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:01:24.559 SQL [21962]: pgsql_db_connect() -- 20:01:24.563 DEBUG [21962]: Database connection successful -- 20:01:24.563 INFO [21962]: _SERVER found -- 20:01:24.563 INFO [21962]: REMOTE_ADDR = 192.168.1.13 -- 20:01:24.563 INFO [21962]: SERVER_NAME = oameye.works.coregrade.com -- 20:01:24.563 INFO [21962]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=i4fngdg8ljh5u3sgavjff01u92fq2on3 -- 20:01:24.563 INFO [21962]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 20:01:24.563 INFO [21962]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:01:24.575 INFO [21962]: COREGRADE is stopping... -- 20:01:24.575 DEBUG [21962]: Closing database connection -- 20:01:24.575 SQL [21962]: pgsql_close() -- 20:01:25.222 INFO [21962]: COREGRADE is starting... -- 20:01:25.222 INFO [21962]: Version from config: 1.0 -- 20:01:25.222 DEBUG [21962]: Connecting to database... -- 20:01:25.222 DEBUG [21962]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:01:25.222 SQL [21962]: pgsql_db_connect() -- 20:01:25.227 DEBUG [21962]: Database connection successful -- 20:01:25.227 INFO [21962]: _SERVER found -- 20:01:25.227 INFO [21962]: REMOTE_ADDR = 192.168.1.13 -- 20:01:25.227 INFO [21962]: SERVER_NAME = oameye.works.coregrade.com -- 20:01:25.227 INFO [21962]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1656748877.1582544494; ci_session=i4fngdg8ljh5u3sgavjff01u92fq2on3 -- 20:01:25.227 INFO [21962]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:01:25.227 INFO [21962]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:01:25.239 INFO [21962]: COREGRADE is stopping... -- 20:01:25.239 DEBUG [21962]: Closing database connection -- 20:01:25.239 SQL [21962]: pgsql_close() -- 20:10:22.178 INFO [21964]: COREGRADE is starting... -- 20:10:22.179 INFO [21964]: Version from config: 1.0 -- 20:10:22.179 DEBUG [21964]: Connecting to database... -- 20:10:22.179 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:10:22.179 SQL [21964]: pgsql_db_connect() -- 20:10:22.183 DEBUG [21964]: Database connection successful -- 20:10:22.183 INFO [21964]: _SERVER found -- 20:10:22.183 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 20:10:22.183 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 20:10:22.183 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=8q1tubu3h9asegpbhk82j9io1el8muv5 -- 20:10:22.183 INFO [21964]: QUERY_STRING = -- 20:10:22.183 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:10:22.226 INFO [21964]: COREGRADE is stopping... -- 20:10:22.226 DEBUG [21964]: Closing database connection -- 20:10:22.226 SQL [21964]: pgsql_close() -- 20:10:22.702 INFO [21964]: COREGRADE is starting... -- 20:10:22.703 INFO [21964]: Version from config: 1.0 -- 20:10:22.703 DEBUG [21964]: Connecting to database... -- 20:10:22.703 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:10:22.703 SQL [21964]: pgsql_db_connect() -- 20:10:22.707 DEBUG [21964]: Database connection successful -- 20:10:22.707 INFO [21964]: _SERVER found -- 20:10:22.707 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 20:10:22.707 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 20:10:22.707 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=4a5601qi63v4801hhc2bur55tk9j63e1 -- 20:10:22.707 INFO [21964]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 20:10:22.707 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:10:22.718 INFO [21964]: COREGRADE is stopping... -- 20:10:22.718 DEBUG [21964]: Closing database connection -- 20:10:22.718 SQL [21964]: pgsql_close() -- 20:10:22.727 INFO [21955]: COREGRADE is starting... -- 20:10:22.728 INFO [21955]: Version from config: 1.0 -- 20:10:22.728 DEBUG [21955]: Connecting to database... -- 20:10:22.728 DEBUG [21955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:10:22.728 SQL [21955]: pgsql_db_connect() -- 20:10:22.732 DEBUG [21955]: Database connection successful -- 20:10:22.732 INFO [21955]: _SERVER found -- 20:10:22.732 INFO [21955]: REMOTE_ADDR = 192.168.1.13 -- 20:10:22.732 INFO [21955]: SERVER_NAME = oameye.works.coregrade.com -- 20:10:22.732 INFO [21955]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=4a5601qi63v4801hhc2bur55tk9j63e1 -- 20:10:22.732 INFO [21955]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:10:22.732 INFO [21955]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:10:22.744 INFO [21955]: COREGRADE is stopping... -- 20:10:22.744 DEBUG [21955]: Closing database connection -- 20:10:22.744 SQL [21955]: pgsql_close() -- 21:00:31.667 INFO [21956]: COREGRADE is starting... -- 21:00:31.668 INFO [21956]: Version from config: 1.0 -- 21:00:31.668 DEBUG [21956]: Connecting to database... -- 21:00:31.668 DEBUG [21956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:31.668 SQL [21956]: pgsql_db_connect() -- 21:00:31.672 DEBUG [21956]: Database connection successful -- 21:00:31.672 INFO [21956]: _SERVER found -- 21:00:31.672 INFO [21956]: REMOTE_ADDR = 192.168.1.13 -- 21:00:31.672 INFO [21956]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:00:31.672 INFO [21956]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124 -- 21:00:31.672 INFO [21956]: QUERY_STRING = -- 21:00:31.672 INFO [21956]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:00:31.717 INFO [21956]: COREGRADE is stopping... -- 21:00:31.717 DEBUG [21956]: Closing database connection -- 21:00:31.717 SQL [21956]: pgsql_close() -- 21:00:32.049 INFO [21956]: COREGRADE is starting... -- 21:00:32.049 INFO [21956]: Version from config: 1.0 -- 21:00:32.049 DEBUG [21956]: Connecting to database... -- 21:00:32.049 DEBUG [21956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:32.049 SQL [21956]: pgsql_db_connect() -- 21:00:32.053 DEBUG [21956]: Database connection successful -- 21:00:32.053 INFO [21956]: _SERVER found -- 21:00:32.053 INFO [21956]: REMOTE_ADDR = 192.168.1.13 -- 21:00:32.053 INFO [21956]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:00:32.053 INFO [21956]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=k1nud01db7bhbugeju5uo61vcs3gd35i -- 21:00:32.053 INFO [21956]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 21:00:32.053 INFO [21956]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:00:32.065 INFO [21956]: COREGRADE is stopping... -- 21:00:32.065 DEBUG [21956]: Closing database connection -- 21:00:32.065 SQL [21956]: pgsql_close() -- 21:00:32.068 INFO [21956]: COREGRADE is starting... -- 21:00:32.069 INFO [21956]: Version from config: 1.0 -- 21:00:32.069 DEBUG [21956]: Connecting to database... -- 21:00:32.069 DEBUG [21956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:32.069 SQL [21956]: pgsql_db_connect() -- 21:00:32.072 DEBUG [21956]: Database connection successful -- 21:00:32.072 INFO [21956]: _SERVER found -- 21:00:32.072 INFO [21956]: REMOTE_ADDR = 192.168.1.13 -- 21:00:32.072 INFO [21956]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:00:32.072 INFO [21956]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=k1nud01db7bhbugeju5uo61vcs3gd35i -- 21:00:32.072 INFO [21956]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:00:32.072 INFO [21956]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:00:32.083 INFO [21956]: COREGRADE is stopping... -- 21:00:32.084 DEBUG [21956]: Closing database connection -- 21:00:32.084 SQL [21956]: pgsql_close() -- 21:00:33.551 INFO [21956]: COREGRADE is starting... -- 21:00:33.551 INFO [21956]: Version from config: 1.0 -- 21:00:33.551 DEBUG [21956]: Connecting to database... -- 21:00:33.551 DEBUG [21956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:33.551 SQL [21956]: pgsql_db_connect() -- 21:00:33.563 INFO [21957]: COREGRADE is starting... -- 21:00:33.564 INFO [21957]: Version from config: 1.0 -- 21:00:33.564 DEBUG [21957]: Connecting to database... -- 21:00:33.564 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:33.564 SQL [21957]: pgsql_db_connect() -- 21:00:33.555 DEBUG [21956]: Database connection successful -- 21:00:33.555 INFO [21956]: _SERVER found -- 21:00:33.555 INFO [21956]: REMOTE_ADDR = 192.168.1.13 -- 21:00:33.555 INFO [21956]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:00:33.555 INFO [21956]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=k1nud01db7bhbugeju5uo61vcs3gd35i; _gat_gtag_UA_54829827_2=1 -- 21:00:33.555 INFO [21956]: QUERY_STRING = /welcome/viewLogin -- 21:00:33.555 INFO [21956]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:00:33.586 INFO [21956]: COREGRADE is stopping... -- 21:00:33.586 DEBUG [21956]: Closing database connection -- 21:00:33.586 SQL [21956]: pgsql_close() -- 21:00:33.596 INFO [21956]: COREGRADE is starting... -- 21:00:33.596 INFO [21956]: Version from config: 1.0 -- 21:00:33.596 DEBUG [21956]: Connecting to database... -- 21:00:33.596 DEBUG [21956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:33.596 SQL [21956]: pgsql_db_connect() -- 21:00:33.568 DEBUG [21957]: Database connection successful -- 21:00:33.568 INFO [21957]: _SERVER found -- 21:00:33.568 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 21:00:33.568 INFO [21957]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:00:33.568 INFO [21957]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=k1nud01db7bhbugeju5uo61vcs3gd35i; _gat_gtag_UA_54829827_2=1 -- 21:00:33.568 INFO [21957]: QUERY_STRING = /auth -- 21:00:33.568 INFO [21957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:00:33.603 INFO [21957]: COREGRADE is stopping... -- 21:00:33.603 DEBUG [21957]: Closing database connection -- 21:00:33.603 SQL [21957]: pgsql_close() -- 21:00:33.600 DEBUG [21956]: Database connection successful -- 21:00:33.600 INFO [21956]: _SERVER found -- 21:00:33.600 INFO [21956]: REMOTE_ADDR = 192.168.1.13 -- 21:00:33.600 INFO [21956]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:00:33.600 INFO [21956]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=k1nud01db7bhbugeju5uo61vcs3gd35i; _gat_gtag_UA_54829827_2=1 -- 21:00:33.600 INFO [21956]: QUERY_STRING = /auth/index -- 21:00:33.600 INFO [21956]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:00:33.632 INFO [21956]: COREGRADE is stopping... -- 21:00:33.632 DEBUG [21956]: Closing database connection -- 21:00:33.632 SQL [21956]: pgsql_close() -- 21:00:33.751 INFO [21956]: COREGRADE is starting... -- 21:00:33.752 INFO [21956]: Version from config: 1.0 -- 21:00:33.752 DEBUG [21956]: Connecting to database... -- 21:00:33.752 DEBUG [21956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:33.752 SQL [21956]: pgsql_db_connect() -- 21:00:33.756 DEBUG [21956]: Database connection successful -- 21:00:33.756 INFO [21956]: _SERVER found -- 21:00:33.756 INFO [21956]: REMOTE_ADDR = 192.168.1.13 -- 21:00:33.756 INFO [21956]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:00:33.756 INFO [21956]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=k1nud01db7bhbugeju5uo61vcs3gd35i; _gat_gtag_UA_54829827_2=1 -- 21:00:33.756 INFO [21956]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:00:33.756 INFO [21956]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:00:33.767 INFO [21956]: COREGRADE is stopping... -- 21:00:33.767 DEBUG [21956]: Closing database connection -- 21:00:33.767 SQL [21956]: pgsql_close() -- 21:00:33.810 INFO [21956]: COREGRADE is starting... -- 21:00:33.810 INFO [21956]: Version from config: 1.0 -- 21:00:33.810 DEBUG [21956]: Connecting to database... -- 21:00:33.810 DEBUG [21956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:33.810 SQL [21956]: pgsql_db_connect() -- 21:00:33.814 DEBUG [21956]: Database connection successful -- 21:00:33.814 INFO [21956]: _SERVER found -- 21:00:33.814 INFO [21956]: REMOTE_ADDR = 192.168.1.13 -- 21:00:33.814 INFO [21956]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:00:33.814 INFO [21956]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=k1nud01db7bhbugeju5uo61vcs3gd35i; _gat_gtag_UA_54829827_2=1 -- 21:00:33.814 INFO [21956]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:00:33.814 INFO [21956]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:00:33.825 INFO [21956]: COREGRADE is stopping... -- 21:00:33.825 DEBUG [21956]: Closing database connection -- 21:00:33.825 SQL [21956]: pgsql_close() -- 21:00:35.247 INFO [21956]: COREGRADE is starting... -- 21:00:35.248 INFO [21956]: Version from config: 1.0 -- 21:00:35.248 DEBUG [21956]: Connecting to database... -- 21:00:35.248 DEBUG [21956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:35.248 SQL [21956]: pgsql_db_connect() -- 21:00:35.252 DEBUG [21956]: Database connection successful -- 21:00:35.252 INFO [21956]: _SERVER found -- 21:00:35.252 INFO [21956]: REMOTE_ADDR = 192.168.1.13 -- 21:00:35.252 INFO [21956]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:00:35.252 INFO [21956]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=k1nud01db7bhbugeju5uo61vcs3gd35i; _gat_gtag_UA_54829827_2=1 -- 21:00:35.252 INFO [21956]: QUERY_STRING = /auth -- 21:00:35.252 INFO [21956]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:00:35.309 INFO [21956]: COREGRADE is starting... -- 21:00:35.309 INFO [21956]: Version from config: 1.0 -- 21:00:35.309 DEBUG [21956]: Connecting to database... -- 21:00:35.309 DEBUG [21956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:35.309 SQL [21956]: pgsql_db_connect() -- 21:00:35.313 DEBUG [21956]: Database connection successful -- 21:00:35.313 INFO [21956]: _SERVER found -- 21:00:35.313 INFO [21956]: REMOTE_ADDR = 192.168.1.13 -- 21:00:35.313 INFO [21956]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:00:35.313 INFO [21956]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=k1nud01db7bhbugeju5uo61vcs3gd35i; _gat_gtag_UA_54829827_2=1 -- 21:00:35.313 INFO [21956]: QUERY_STRING = /member/index -- 21:00:35.313 INFO [21956]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:00:35.324 INFO [21956]: COREGRADE is stopping... -- 21:00:35.324 DEBUG [21956]: Closing database connection -- 21:00:35.324 SQL [21956]: pgsql_close() -- 21:00:35.419 INFO [21956]: COREGRADE is starting... -- 21:00:35.419 INFO [21956]: Version from config: 1.0 -- 21:00:35.419 DEBUG [21956]: Connecting to database... -- 21:00:35.419 DEBUG [21956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:35.419 SQL [21956]: pgsql_db_connect() -- 21:00:35.423 DEBUG [21956]: Database connection successful -- 21:00:35.423 INFO [21956]: _SERVER found -- 21:00:35.423 INFO [21956]: REMOTE_ADDR = 192.168.1.13 -- 21:00:35.423 INFO [21956]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:00:35.423 INFO [21956]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=k1nud01db7bhbugeju5uo61vcs3gd35i; _gat_gtag_UA_54829827_2=1 -- 21:00:35.423 INFO [21956]: QUERY_STRING = /favicon.ico -- 21:00:35.423 INFO [21956]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:00:35.434 INFO [21956]: COREGRADE is stopping... -- 21:00:35.434 DEBUG [21956]: Closing database connection -- 21:00:35.434 SQL [21956]: pgsql_close() -- 21:06:24.183 INFO [21963]: COREGRADE is starting... -- 21:06:24.183 INFO [21963]: Version from config: 1.0 -- 21:06:24.183 DEBUG [21963]: Connecting to database... -- 21:06:24.183 DEBUG [21963]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:06:24.183 SQL [21963]: pgsql_db_connect() -- 21:06:24.188 DEBUG [21963]: Database connection successful -- 21:06:24.188 INFO [21963]: _SERVER found -- 21:06:24.188 INFO [21963]: REMOTE_ADDR = 192.168.1.13 -- 21:06:24.188 INFO [21963]: SERVER_NAME = oameye.works.coregrade.com -- 21:06:24.188 INFO [21963]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=4a5601qi63v4801hhc2bur55tk9j63e1 -- 21:06:24.188 INFO [21963]: QUERY_STRING = -- 21:06:24.188 INFO [21963]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:06:24.230 INFO [21963]: COREGRADE is stopping... -- 21:06:24.230 DEBUG [21963]: Closing database connection -- 21:06:24.230 SQL [21963]: pgsql_close() -- 21:06:24.542 INFO [21963]: COREGRADE is starting... -- 21:06:24.543 INFO [21963]: Version from config: 1.0 -- 21:06:24.543 DEBUG [21963]: Connecting to database... -- 21:06:24.543 DEBUG [21963]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:06:24.543 SQL [21963]: pgsql_db_connect() -- 21:06:24.547 DEBUG [21963]: Database connection successful -- 21:06:24.547 INFO [21963]: _SERVER found -- 21:06:24.547 INFO [21963]: REMOTE_ADDR = 192.168.1.13 -- 21:06:24.547 INFO [21963]: SERVER_NAME = oameye.works.coregrade.com -- 21:06:24.547 INFO [21963]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=s67tuej9hskulm123ng7taq29iru2v9q -- 21:06:24.547 INFO [21963]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 21:06:24.547 INFO [21963]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:06:24.559 INFO [21963]: COREGRADE is stopping... -- 21:06:24.559 DEBUG [21963]: Closing database connection -- 21:06:24.559 SQL [21963]: pgsql_close() -- 21:06:24.569 INFO [21958]: COREGRADE is starting... -- 21:06:24.569 INFO [21958]: Version from config: 1.0 -- 21:06:24.569 DEBUG [21958]: Connecting to database... -- 21:06:24.569 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:06:24.569 SQL [21958]: pgsql_db_connect() -- 21:06:24.574 DEBUG [21958]: Database connection successful -- 21:06:24.574 INFO [21958]: _SERVER found -- 21:06:24.574 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 21:06:24.574 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 21:06:24.574 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=s67tuej9hskulm123ng7taq29iru2v9q -- 21:06:24.574 INFO [21958]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:06:24.574 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:06:24.587 INFO [21958]: COREGRADE is stopping... -- 21:06:24.587 DEBUG [21958]: Closing database connection -- 21:06:24.587 SQL [21958]: pgsql_close() -- 21:16:39.756 INFO [21959]: COREGRADE is starting... -- 21:16:39.756 INFO [21959]: Version from config: 1.0 -- 21:16:39.756 DEBUG [21959]: Connecting to database... -- 21:16:39.756 DEBUG [21959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:39.756 SQL [21959]: pgsql_db_connect() -- 21:16:39.762 INFO [21962]: COREGRADE is starting... -- 21:16:39.762 INFO [21962]: Version from config: 1.0 -- 21:16:39.762 DEBUG [21962]: Connecting to database... -- 21:16:39.762 DEBUG [21962]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:39.762 SQL [21962]: pgsql_db_connect() -- 21:16:39.763 DEBUG [21959]: Database connection successful -- 21:16:39.763 INFO [21959]: _SERVER found -- 21:16:39.763 INFO [21959]: REMOTE_ADDR = 192.168.1.13 -- 21:16:39.763 INFO [21959]: SERVER_NAME = oameye.works.coregrade.com -- 21:16:39.763 INFO [21959]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=s67tuej9hskulm123ng7taq29iru2v9q -- 21:16:39.763 INFO [21959]: QUERY_STRING = /welcome/viewLogin -- 21:16:39.763 INFO [21959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:39.806 INFO [21959]: COREGRADE is stopping... -- 21:16:39.806 DEBUG [21959]: Closing database connection -- 21:16:39.806 SQL [21959]: pgsql_close() -- 21:16:39.767 DEBUG [21962]: Database connection successful -- 21:16:39.767 INFO [21962]: _SERVER found -- 21:16:39.767 INFO [21962]: REMOTE_ADDR = 192.168.1.13 -- 21:16:39.767 INFO [21962]: SERVER_NAME = oameye.works.coregrade.com -- 21:16:39.767 INFO [21962]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=s67tuej9hskulm123ng7taq29iru2v9q -- 21:16:39.767 INFO [21962]: QUERY_STRING = /auth -- 21:16:39.767 INFO [21962]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:39.810 INFO [21962]: COREGRADE is stopping... -- 21:16:39.810 DEBUG [21962]: Closing database connection -- 21:16:39.810 SQL [21962]: pgsql_close() -- 21:16:39.934 INFO [21962]: COREGRADE is starting... -- 21:16:39.934 INFO [21962]: Version from config: 1.0 -- 21:16:39.934 DEBUG [21962]: Connecting to database... -- 21:16:39.934 DEBUG [21962]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:39.934 SQL [21962]: pgsql_db_connect() -- 21:16:39.938 DEBUG [21962]: Database connection successful -- 21:16:39.938 INFO [21962]: _SERVER found -- 21:16:39.938 INFO [21962]: REMOTE_ADDR = 192.168.1.13 -- 21:16:39.938 INFO [21962]: SERVER_NAME = oameye.works.coregrade.com -- 21:16:39.938 INFO [21962]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=qj5gkh22dcst0hqupkp8rdtagodkar5r -- 21:16:39.938 INFO [21962]: QUERY_STRING = /auth/index -- 21:16:39.938 INFO [21962]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:39.972 INFO [21962]: COREGRADE is stopping... -- 21:16:39.972 DEBUG [21962]: Closing database connection -- 21:16:39.972 SQL [21962]: pgsql_close() -- 21:16:40.155 INFO [21962]: COREGRADE is starting... -- 21:16:40.155 INFO [21962]: Version from config: 1.0 -- 21:16:40.155 DEBUG [21962]: Connecting to database... -- 21:16:40.155 DEBUG [21962]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:40.155 SQL [21962]: pgsql_db_connect() -- 21:16:40.159 DEBUG [21962]: Database connection successful -- 21:16:40.159 INFO [21962]: _SERVER found -- 21:16:40.159 INFO [21962]: REMOTE_ADDR = 192.168.1.13 -- 21:16:40.159 INFO [21962]: SERVER_NAME = oameye.works.coregrade.com -- 21:16:40.159 INFO [21962]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=qj5gkh22dcst0hqupkp8rdtagodkar5r -- 21:16:40.159 INFO [21962]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:16:40.159 INFO [21962]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:40.171 INFO [21962]: COREGRADE is stopping... -- 21:16:40.171 DEBUG [21962]: Closing database connection -- 21:16:40.171 SQL [21962]: pgsql_close() -- 21:16:40.191 INFO [21962]: COREGRADE is starting... -- 21:16:40.192 INFO [21962]: Version from config: 1.0 -- 21:16:40.192 DEBUG [21962]: Connecting to database... -- 21:16:40.192 DEBUG [21962]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:40.192 SQL [21962]: pgsql_db_connect() -- 21:16:40.195 DEBUG [21962]: Database connection successful -- 21:16:40.195 INFO [21962]: _SERVER found -- 21:16:40.195 INFO [21962]: REMOTE_ADDR = 192.168.1.13 -- 21:16:40.195 INFO [21962]: SERVER_NAME = oameye.works.coregrade.com -- 21:16:40.195 INFO [21962]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=qj5gkh22dcst0hqupkp8rdtagodkar5r -- 21:16:40.195 INFO [21962]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:16:40.195 INFO [21962]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:40.207 INFO [21962]: COREGRADE is stopping... -- 21:16:40.207 DEBUG [21962]: Closing database connection -- 21:16:40.207 SQL [21962]: pgsql_close() -- 21:16:45.140 INFO [21962]: COREGRADE is starting... -- 21:16:45.141 INFO [21962]: Version from config: 1.0 -- 21:16:45.141 DEBUG [21962]: Connecting to database... -- 21:16:45.141 DEBUG [21962]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:45.141 SQL [21962]: pgsql_db_connect() -- 21:16:45.178 INFO [21962]: COREGRADE is starting... -- 21:16:45.178 INFO [21962]: Version from config: 1.0 -- 21:16:45.178 DEBUG [21962]: Connecting to database... -- 21:16:45.178 DEBUG [21962]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:45.178 SQL [21962]: pgsql_db_connect() -- 21:16:45.182 DEBUG [21962]: Database connection successful -- 21:16:45.182 INFO [21962]: _SERVER found -- 21:16:45.182 INFO [21962]: REMOTE_ADDR = 192.168.1.13 -- 21:16:45.182 INFO [21962]: SERVER_NAME = oameye.works.coregrade.com -- 21:16:45.182 INFO [21962]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=qj5gkh22dcst0hqupkp8rdtagodkar5r -- 21:16:45.182 INFO [21962]: QUERY_STRING = -- 21:16:45.182 INFO [21962]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:45.182 INFO [21962]: SystemStatus()09-09-********~************ -- 21:16:45.182 INFO [21962]: long coregrade_api_main(CVars in, CVars &out) -- 21:16:45.182 INFO [21962]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 21:16:45.182 INFO [21962]: account calls -- 21:16:45.182 INFO [21962]: account_calls() -- 21:16:45.182 INFO [21962]: LoginCoreGradeAccount() -- 21:16:45.182 FLOG_MAX [21962]: REQ_STRING(username) -- 21:16:45.182 FLOG_MAX [21962]: REQ_STRING(password) -- 21:16:45.182 FLOG_MAX [21962]: REQ_STRING(sessionid) -- 21:16:45.183 FLOG_MAX [21962]: long load_db_record( CVars &rec, const char * query, ... ) -- 21:16:45.183 SQL [21962]: pgsql_query() -- 21:16:45.183 SQL [21962]: About to run query: -- 21:16:45.183 SQL [21962]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 21:16:45.186 SQL [21962]: Found rows: 1 -- 21:16:45.186 FLOG_MAX [21962]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=16 -- 21:16:45.186 INFO [21962]: long SessionCheck(long uid, const char *sessionid, int create ) -- 21:16:45.186 SQL [21962]: pgsql_exec() -- 21:16:45.186 SQL [21962]: About to run query: -- 21:16:45.186 SQL [21962]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 21:16:45.187 SQL [21962]: PQcmdTuples: 0 -- 21:16:45.187 SQL [21962]: Affected rows: 0 -- 21:16:45.187 SQL [21962]: pgsql_exec() -- 21:16:45.187 SQL [21962]: About to run query: -- 21:16:45.187 SQL [21962]: DELETE FROM members_session WHERE member_id=7 -- 21:16:45.188 SQL [21962]: PQcmdTuples: 1 -- 21:16:45.188 SQL [21962]: Affected rows: 1 -- 21:16:45.188 SQL [21962]: pgsql_query() -- 21:16:45.188 SQL [21962]: About to run query: -- 21:16:45.188 SQL [21962]: SELECT * FROM members_session WHERE member_id=7 AND session<>'8D8082A3898C8B9407CA79DFCBAADB66' -- 21:16:45.188 SQL [21962]: Found rows: 0 -- 21:16:45.188 SQL [21962]: Found rows: 0 -- 21:16:45.188 FLOG_MAX [21962]: long load_db_record( CVars &rec, const char * query, ... ) -- 21:16:45.188 SQL [21962]: pgsql_query() -- 21:16:45.188 SQL [21962]: About to run query: -- 21:16:45.188 SQL [21962]: SELECT * FROM members_session WHERE member_id=7 AND session='8D8082A3898C8B9407CA79DFCBAADB66' -- 21:16:45.189 SQL [21962]: Found rows: 0 -- 21:16:45.189 SQL [21962]: Found rows: 0 -- 21:16:45.189 FLOG_MAX [21962]: insert_db_record() -- 21:16:45.189 SQL [21962]: pgsql_exec() -- 21:16:45.189 SQL [21962]: About to run query: -- 21:16:45.189 SQL [21962]: INSERT INTO members_session (member_id,session) VALUES ('7','8D8082A3898C8B9407CA79DFCBAADB66') -- 21:16:45.190 SQL [21962]: PQcmdTuples: 1 -- 21:16:45.190 SQL [21962]: Affected rows: 1 -- 21:16:45.190 FLOG_MAX [21962]: SELECT currval('members_session_id_seq') -- 21:16:45.190 SQL [21962]: pgsql_query() -- 21:16:45.190 SQL [21962]: About to run query: -- 21:16:45.190 SQL [21962]: SELECT currval('members_session_id_seq') -- 21:16:45.191 SQL [21962]: Found rows: 1 -- 21:16:45.191 INFO [21962]: CreateDefaultPage() -- 21:16:45.191 FLOG_MAX [21962]: long load_db_record( CVars &rec, const char * query, ... ) -- 21:16:45.191 SQL [21962]: pgsql_query() -- 21:16:45.191 SQL [21962]: About to run query: -- 21:16:45.191 SQL [21962]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 21:16:45.191 SQL [21962]: Found rows: 1 -- 21:16:45.191 FLOG_MAX [21962]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 21:16:45.191 SQL [21962]: pgsql_query() -- 21:16:45.191 SQL [21962]: About to run query: -- 21:16:45.191 SQL [21962]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 21:16:45.192 SQL [21962]: Found rows: 1 -- 21:16:45.192 INFO [21962]: /CreateDefaultPage() -- 21:16:45.192 INFO [21962]: /LoginCoreGradeAccount() -- 21:16:45.192 INFO [21962]: RET: added=2020-02-05 09:42:12.816064 -- 21:16:45.192 INFO [21962]: RET: email=tokslaw@chiefsoft.com -- 21:16:45.192 INFO [21962]: RET: firstname=Tokunbo -- 21:16:45.192 INFO [21962]: RET: folder=5D06B187B1E2285A63AD1D0ECB670D98 -- 21:16:45.192 INFO [21962]: RET: id=7 -- 21:16:45.192 INFO [21962]: RET: last_login= -- 21:16:45.192 INFO [21962]: RET: lastname=Lawal -- 21:16:45.192 INFO [21962]: RET: loc=192.168.1.13 -- 21:16:45.192 INFO [21962]: RET: member_id=7 -- 21:16:45.192 INFO [21962]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 21:16:45.192 INFO [21962]: RET: phone= -- 21:16:45.192 INFO [21962]: RET: pid= -- 21:16:45.192 INFO [21962]: RET: result=YES I GET TO BACK END -- 21:16:45.192 INFO [21962]: RET: sessionid=8D8082A3898C8B9407CA79DFCBAADB66 -- 21:16:45.192 INFO [21962]: RET: status=1 -- 21:16:45.192 INFO [21962]: RET: stauts=OK -- 21:16:45.192 INFO [21962]: RET: username=tokslaw@chiefsoft.com -- 21:16:45.192 INFO [21962]: RET: verified= -- 21:16:45.193 INFO [21962]: COREGRADE is stopping... -- 21:16:45.193 DEBUG [21962]: Closing database connection -- 21:16:45.193 SQL [21962]: pgsql_close() -- 21:16:45.145 DEBUG [21962]: Database connection successful -- 21:16:45.145 INFO [21962]: _SERVER found -- 21:16:45.145 INFO [21962]: REMOTE_ADDR = 192.168.1.13 -- 21:16:45.145 INFO [21962]: SERVER_NAME = oameye.works.coregrade.com -- 21:16:45.145 INFO [21962]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=qj5gkh22dcst0hqupkp8rdtagodkar5r -- 21:16:45.145 INFO [21962]: QUERY_STRING = /auth -- 21:16:45.145 INFO [21962]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:45.194 INFO [21962]: COREGRADE is stopping... -- 21:16:45.194 DEBUG [21962]: Closing database connection -- 21:16:45.194 SQL [21962]: pgsql_close() -- 21:16:45.203 INFO [21962]: COREGRADE is starting... -- 21:16:45.203 INFO [21962]: Version from config: 1.0 -- 21:16:45.203 DEBUG [21962]: Connecting to database... -- 21:16:45.203 DEBUG [21962]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:45.203 SQL [21962]: pgsql_db_connect() -- 21:16:45.207 DEBUG [21962]: Database connection successful -- 21:16:45.207 INFO [21962]: _SERVER found -- 21:16:45.207 INFO [21962]: REMOTE_ADDR = 192.168.1.13 -- 21:16:45.207 INFO [21962]: SERVER_NAME = oameye.works.coregrade.com -- 21:16:45.207 INFO [21962]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=qj5gkh22dcst0hqupkp8rdtagodkar5r -- 21:16:45.207 INFO [21962]: QUERY_STRING = /member/index -- 21:16:45.207 INFO [21962]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:45.248 INFO [21962]: COREGRADE is stopping... -- 21:16:45.248 DEBUG [21962]: Closing database connection -- 21:16:45.248 SQL [21962]: pgsql_close() -- 21:16:45.522 INFO [21962]: COREGRADE is starting... -- 21:16:45.522 INFO [21962]: Version from config: 1.0 -- 21:16:45.522 DEBUG [21962]: Connecting to database... -- 21:16:45.522 DEBUG [21962]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:45.523 SQL [21962]: pgsql_db_connect() -- 21:16:45.527 DEBUG [21962]: Database connection successful -- 21:16:45.527 INFO [21962]: _SERVER found -- 21:16:45.527 INFO [21962]: REMOTE_ADDR = 192.168.1.13 -- 21:16:45.527 INFO [21962]: SERVER_NAME = oameye.works.coregrade.com -- 21:16:45.527 INFO [21962]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=qj5gkh22dcst0hqupkp8rdtagodkar5r -- 21:16:45.527 INFO [21962]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:16:45.527 INFO [21962]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:45.538 INFO [21962]: COREGRADE is stopping... -- 21:16:45.538 DEBUG [21962]: Closing database connection -- 21:16:45.538 SQL [21962]: pgsql_close() -- 21:16:45.658 INFO [21964]: COREGRADE is starting... -- 21:16:45.658 INFO [21964]: Version from config: 1.0 -- 21:16:45.658 DEBUG [21964]: Connecting to database... -- 21:16:45.658 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:45.658 SQL [21964]: pgsql_db_connect() -- 21:16:45.662 DEBUG [21964]: Database connection successful -- 21:16:45.662 INFO [21964]: _SERVER found -- 21:16:45.662 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 21:16:45.662 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 21:16:45.662 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=qj5gkh22dcst0hqupkp8rdtagodkar5r -- 21:16:45.662 INFO [21964]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:16:45.662 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:45.674 INFO [21964]: COREGRADE is stopping... -- 21:16:45.674 DEBUG [21964]: Closing database connection -- 21:16:45.674 SQL [21964]: pgsql_close() -- 21:16:52.835 INFO [21955]: COREGRADE is starting... -- 21:16:52.835 INFO [21955]: Version from config: 1.0 -- 21:16:52.835 DEBUG [21955]: Connecting to database... -- 21:16:52.836 DEBUG [21955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:52.836 SQL [21955]: pgsql_db_connect() -- 21:16:52.840 DEBUG [21955]: Database connection successful -- 21:16:52.840 INFO [21955]: _SERVER found -- 21:16:52.840 INFO [21955]: REMOTE_ADDR = 192.168.1.13 -- 21:16:52.840 INFO [21955]: SERVER_NAME = oameye.works.coregrade.com -- 21:16:52.840 INFO [21955]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=qj5gkh22dcst0hqupkp8rdtagodkar5r -- 21:16:52.840 INFO [21955]: QUERY_STRING = /member/configure -- 21:16:52.840 INFO [21955]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:52.885 INFO [21955]: COREGRADE is stopping... -- 21:16:52.885 DEBUG [21955]: Closing database connection -- 21:16:52.885 SQL [21955]: pgsql_close() -- 21:16:53.077 INFO [21955]: COREGRADE is starting... -- 21:16:53.077 INFO [21955]: Version from config: 1.0 -- 21:16:53.077 DEBUG [21955]: Connecting to database... -- 21:16:53.078 DEBUG [21955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:53.078 SQL [21955]: pgsql_db_connect() -- 21:16:53.085 INFO [21957]: COREGRADE is starting... -- 21:16:53.086 INFO [21957]: Version from config: 1.0 -- 21:16:53.086 DEBUG [21957]: Connecting to database... -- 21:16:53.086 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:53.086 SQL [21957]: pgsql_db_connect() -- 21:16:53.082 DEBUG [21955]: Database connection successful -- 21:16:53.082 INFO [21955]: _SERVER found -- 21:16:53.082 INFO [21955]: REMOTE_ADDR = 192.168.1.13 -- 21:16:53.082 INFO [21955]: SERVER_NAME = oameye.works.coregrade.com -- 21:16:53.082 INFO [21955]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=qj5gkh22dcst0hqupkp8rdtagodkar5r -- 21:16:53.082 INFO [21955]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:16:53.082 INFO [21955]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:53.093 INFO [21955]: COREGRADE is stopping... -- 21:16:53.093 DEBUG [21955]: Closing database connection -- 21:16:53.093 SQL [21955]: pgsql_close() -- 21:16:53.089 DEBUG [21957]: Database connection successful -- 21:16:53.089 INFO [21957]: _SERVER found -- 21:16:53.089 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 21:16:53.089 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 21:16:53.089 INFO [21957]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=qj5gkh22dcst0hqupkp8rdtagodkar5r -- 21:16:53.089 INFO [21957]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 21:16:53.089 INFO [21957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:53.102 INFO [21957]: COREGRADE is stopping... -- 21:16:53.102 DEBUG [21957]: Closing database connection -- 21:16:53.102 SQL [21957]: pgsql_close() -- 21:16:53.112 INFO [21957]: COREGRADE is starting... -- 21:16:53.113 INFO [21957]: Version from config: 1.0 -- 21:16:53.113 DEBUG [21957]: Connecting to database... -- 21:16:53.113 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:53.113 SQL [21957]: pgsql_db_connect() -- 21:16:53.117 DEBUG [21957]: Database connection successful -- 21:16:53.117 INFO [21957]: _SERVER found -- 21:16:53.117 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 21:16:53.117 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 21:16:53.117 INFO [21957]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=qj5gkh22dcst0hqupkp8rdtagodkar5r -- 21:16:53.117 INFO [21957]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:16:53.117 INFO [21957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:53.128 INFO [21957]: COREGRADE is stopping... -- 21:16:53.128 DEBUG [21957]: Closing database connection -- 21:16:53.128 SQL [21957]: pgsql_close() -- 21:16:58.778 INFO [21956]: COREGRADE is starting... -- 21:16:58.778 INFO [21956]: Version from config: 1.0 -- 21:16:58.778 DEBUG [21956]: Connecting to database... -- 21:16:58.778 DEBUG [21956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:58.778 SQL [21956]: pgsql_db_connect() -- 21:16:58.782 DEBUG [21956]: Database connection successful -- 21:16:58.782 INFO [21956]: _SERVER found -- 21:16:58.782 INFO [21956]: REMOTE_ADDR = 192.168.1.13 -- 21:16:58.782 INFO [21956]: SERVER_NAME = oameye.works.coregrade.com -- 21:16:58.782 INFO [21956]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=qj5gkh22dcst0hqupkp8rdtagodkar5r -- 21:16:58.782 INFO [21956]: QUERY_STRING = /member -- 21:16:58.782 INFO [21956]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:58.823 INFO [21956]: COREGRADE is stopping... -- 21:16:58.823 DEBUG [21956]: Closing database connection -- 21:16:58.823 SQL [21956]: pgsql_close() -- 21:16:59.009 INFO [21956]: COREGRADE is starting... -- 21:16:59.009 INFO [21956]: Version from config: 1.0 -- 21:16:59.009 DEBUG [21956]: Connecting to database... -- 21:16:59.009 DEBUG [21956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:59.009 SQL [21956]: pgsql_db_connect() -- 21:16:59.013 DEBUG [21956]: Database connection successful -- 21:16:59.013 INFO [21956]: _SERVER found -- 21:16:59.013 INFO [21956]: REMOTE_ADDR = 192.168.1.13 -- 21:16:59.013 INFO [21956]: SERVER_NAME = oameye.works.coregrade.com -- 21:16:59.013 INFO [21956]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=qj5gkh22dcst0hqupkp8rdtagodkar5r -- 21:16:59.013 INFO [21956]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:16:59.013 INFO [21956]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:59.025 INFO [21956]: COREGRADE is stopping... -- 21:16:59.025 DEBUG [21956]: Closing database connection -- 21:16:59.025 SQL [21956]: pgsql_close() -- 21:16:59.025 INFO [21963]: COREGRADE is starting... -- 21:16:59.025 INFO [21963]: Version from config: 1.0 -- 21:16:59.025 DEBUG [21963]: Connecting to database... -- 21:16:59.025 DEBUG [21963]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:59.025 SQL [21963]: pgsql_db_connect() -- 21:16:59.029 DEBUG [21963]: Database connection successful -- 21:16:59.029 INFO [21963]: _SERVER found -- 21:16:59.029 INFO [21963]: REMOTE_ADDR = 192.168.1.13 -- 21:16:59.029 INFO [21963]: SERVER_NAME = oameye.works.coregrade.com -- 21:16:59.029 INFO [21963]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=qj5gkh22dcst0hqupkp8rdtagodkar5r -- 21:16:59.029 INFO [21963]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:16:59.029 INFO [21963]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:59.041 INFO [21963]: COREGRADE is stopping... -- 21:16:59.041 DEBUG [21963]: Closing database connection -- 21:16:59.041 SQL [21963]: pgsql_close() -- 21:16:59.796 INFO [21963]: COREGRADE is starting... -- 21:16:59.797 INFO [21963]: Version from config: 1.0 -- 21:16:59.797 DEBUG [21963]: Connecting to database... -- 21:16:59.797 DEBUG [21963]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:59.797 SQL [21963]: pgsql_db_connect() -- 21:16:59.801 DEBUG [21963]: Database connection successful -- 21:16:59.801 INFO [21963]: _SERVER found -- 21:16:59.801 INFO [21963]: REMOTE_ADDR = 192.168.1.13 -- 21:16:59.801 INFO [21963]: SERVER_NAME = oameye.works.coregrade.com -- 21:16:59.801 INFO [21963]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=qj5gkh22dcst0hqupkp8rdtagodkar5r -- 21:16:59.801 INFO [21963]: QUERY_STRING = /member/page -- 21:16:59.801 INFO [21963]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:59.843 INFO [21963]: COREGRADE is stopping... -- 21:16:59.843 DEBUG [21963]: Closing database connection -- 21:16:59.843 SQL [21963]: pgsql_close() -- 21:17:00.027 INFO [21956]: COREGRADE is starting... -- 21:17:00.027 INFO [21956]: Version from config: 1.0 -- 21:17:00.027 DEBUG [21956]: Connecting to database... -- 21:17:00.027 DEBUG [21956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:17:00.027 SQL [21956]: pgsql_db_connect() -- 21:17:00.032 DEBUG [21956]: Database connection successful -- 21:17:00.032 INFO [21956]: _SERVER found -- 21:17:00.032 INFO [21956]: REMOTE_ADDR = 192.168.1.13 -- 21:17:00.032 INFO [21956]: SERVER_NAME = oameye.works.coregrade.com -- 21:17:00.032 INFO [21956]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=qj5gkh22dcst0hqupkp8rdtagodkar5r -- 21:17:00.032 INFO [21956]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:17:00.032 INFO [21956]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:17:00.043 INFO [21956]: COREGRADE is stopping... -- 21:17:00.043 DEBUG [21956]: Closing database connection -- 21:17:00.043 SQL [21956]: pgsql_close() -- 21:17:00.150 INFO [21956]: COREGRADE is starting... -- 21:17:00.150 INFO [21956]: Version from config: 1.0 -- 21:17:00.150 DEBUG [21956]: Connecting to database... -- 21:17:00.150 DEBUG [21956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:17:00.150 SQL [21956]: pgsql_db_connect() -- 21:17:00.154 DEBUG [21956]: Database connection successful -- 21:17:00.154 INFO [21956]: _SERVER found -- 21:17:00.154 INFO [21956]: REMOTE_ADDR = 192.168.1.13 -- 21:17:00.154 INFO [21956]: SERVER_NAME = oameye.works.coregrade.com -- 21:17:00.154 INFO [21956]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=qj5gkh22dcst0hqupkp8rdtagodkar5r -- 21:17:00.154 INFO [21956]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:17:00.154 INFO [21956]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:17:00.165 INFO [21956]: COREGRADE is stopping... -- 21:17:00.165 DEBUG [21956]: Closing database connection -- 21:17:00.165 SQL [21956]: pgsql_close() -- 21:17:08.463 INFO [21958]: COREGRADE is starting... -- 21:17:08.463 INFO [21958]: Version from config: 1.0 -- 21:17:08.463 DEBUG [21958]: Connecting to database... -- 21:17:08.463 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:17:08.463 SQL [21958]: pgsql_db_connect() -- 21:17:08.468 DEBUG [21958]: Database connection successful -- 21:17:08.468 INFO [21958]: _SERVER found -- 21:17:08.468 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 21:17:08.468 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 21:17:08.468 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=qj5gkh22dcst0hqupkp8rdtagodkar5r -- 21:17:08.468 INFO [21958]: QUERY_STRING = /member/configure -- 21:17:08.468 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:17:08.516 INFO [21958]: COREGRADE is stopping... -- 21:17:08.516 DEBUG [21958]: Closing database connection -- 21:17:08.516 SQL [21958]: pgsql_close() -- 21:17:08.676 INFO [21958]: COREGRADE is starting... -- 21:17:08.676 INFO [21958]: Version from config: 1.0 -- 21:17:08.676 DEBUG [21958]: Connecting to database... -- 21:17:08.676 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:17:08.676 SQL [21958]: pgsql_db_connect() -- 21:17:08.683 INFO [21959]: COREGRADE is starting... -- 21:17:08.683 INFO [21959]: Version from config: 1.0 -- 21:17:08.683 DEBUG [21959]: Connecting to database... -- 21:17:08.683 DEBUG [21959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:17:08.683 SQL [21959]: pgsql_db_connect() -- 21:17:08.680 DEBUG [21958]: Database connection successful -- 21:17:08.680 INFO [21958]: _SERVER found -- 21:17:08.680 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 21:17:08.680 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 21:17:08.680 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=qj5gkh22dcst0hqupkp8rdtagodkar5r -- 21:17:08.680 INFO [21958]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:17:08.680 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:17:08.693 INFO [21958]: COREGRADE is stopping... -- 21:17:08.693 DEBUG [21958]: Closing database connection -- 21:17:08.693 SQL [21958]: pgsql_close() -- 21:17:08.687 DEBUG [21959]: Database connection successful -- 21:17:08.687 INFO [21959]: _SERVER found -- 21:17:08.687 INFO [21959]: REMOTE_ADDR = 192.168.1.13 -- 21:17:08.687 INFO [21959]: SERVER_NAME = oameye.works.coregrade.com -- 21:17:08.687 INFO [21959]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=qj5gkh22dcst0hqupkp8rdtagodkar5r -- 21:17:08.687 INFO [21959]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 21:17:08.687 INFO [21959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:17:08.698 INFO [21959]: COREGRADE is stopping... -- 21:17:08.698 DEBUG [21959]: Closing database connection -- 21:17:08.698 SQL [21959]: pgsql_close() -- 21:17:08.774 INFO [21959]: COREGRADE is starting... -- 21:17:08.774 INFO [21959]: Version from config: 1.0 -- 21:17:08.774 DEBUG [21959]: Connecting to database... -- 21:17:08.774 DEBUG [21959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:17:08.774 SQL [21959]: pgsql_db_connect() -- 21:17:08.778 DEBUG [21959]: Database connection successful -- 21:17:08.778 INFO [21959]: _SERVER found -- 21:17:08.778 INFO [21959]: REMOTE_ADDR = 192.168.1.13 -- 21:17:08.778 INFO [21959]: SERVER_NAME = oameye.works.coregrade.com -- 21:17:08.778 INFO [21959]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=qj5gkh22dcst0hqupkp8rdtagodkar5r -- 21:17:08.778 INFO [21959]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:17:08.778 INFO [21959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:17:08.789 INFO [21959]: COREGRADE is stopping... -- 21:17:08.789 DEBUG [21959]: Closing database connection -- 21:17:08.789 SQL [21959]: pgsql_close() -- 21:17:11.764 INFO [21959]: COREGRADE is starting... -- 21:17:11.764 INFO [21959]: Version from config: 1.0 -- 21:17:11.764 DEBUG [21959]: Connecting to database... -- 21:17:11.764 DEBUG [21959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:17:11.764 SQL [21959]: pgsql_db_connect() -- 21:17:11.768 DEBUG [21959]: Database connection successful -- 21:17:11.768 INFO [21959]: _SERVER found -- 21:17:11.768 INFO [21959]: REMOTE_ADDR = 192.168.1.13 -- 21:17:11.768 INFO [21959]: SERVER_NAME = oameye.works.coregrade.com -- 21:17:11.768 INFO [21959]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=qj5gkh22dcst0hqupkp8rdtagodkar5r -- 21:17:11.768 INFO [21959]: QUERY_STRING = /member/viewSharePage -- 21:17:11.768 INFO [21959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:17:11.803 INFO [21959]: COREGRADE is stopping... -- 21:17:11.803 DEBUG [21959]: Closing database connection -- 21:17:11.803 SQL [21959]: pgsql_close() -- 21:27:00.992 INFO [21962]: COREGRADE is starting... -- 21:27:00.992 INFO [21962]: Version from config: 1.0 -- 21:27:00.992 DEBUG [21962]: Connecting to database... -- 21:27:00.992 DEBUG [21962]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:00.992 SQL [21962]: pgsql_db_connect() -- 21:27:00.996 DEBUG [21962]: Database connection successful -- 21:27:00.996 INFO [21962]: _SERVER found -- 21:27:00.996 INFO [21962]: REMOTE_ADDR = 192.168.1.13 -- 21:27:00.996 INFO [21962]: SERVER_NAME = oameye.works.coregrade.com -- 21:27:00.996 INFO [21962]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=qj5gkh22dcst0hqupkp8rdtagodkar5r -- 21:27:00.996 INFO [21962]: QUERY_STRING = /member/page -- 21:27:00.996 INFO [21962]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:27:01.042 INFO [21962]: COREGRADE is stopping... -- 21:27:01.042 DEBUG [21962]: Closing database connection -- 21:27:01.042 SQL [21962]: pgsql_close() -- 21:27:01.271 INFO [21962]: COREGRADE is starting... -- 21:27:01.271 INFO [21962]: Version from config: 1.0 -- 21:27:01.271 DEBUG [21962]: Connecting to database... -- 21:27:01.271 DEBUG [21962]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:01.271 SQL [21962]: pgsql_db_connect() -- 21:27:01.275 DEBUG [21962]: Database connection successful -- 21:27:01.275 INFO [21962]: _SERVER found -- 21:27:01.275 INFO [21962]: REMOTE_ADDR = 192.168.1.13 -- 21:27:01.275 INFO [21962]: SERVER_NAME = oameye.works.coregrade.com -- 21:27:01.275 INFO [21962]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=c7v8sja8g2dp3mspeug8dbq8g09k9s6h -- 21:27:01.275 INFO [21962]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:27:01.275 INFO [21962]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:27:01.286 INFO [21962]: COREGRADE is stopping... -- 21:27:01.287 DEBUG [21962]: Closing database connection -- 21:27:01.287 SQL [21962]: pgsql_close() -- 21:27:01.400 INFO [21962]: COREGRADE is starting... -- 21:27:01.400 INFO [21962]: Version from config: 1.0 -- 21:27:01.400 DEBUG [21962]: Connecting to database... -- 21:27:01.400 DEBUG [21962]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:01.400 SQL [21962]: pgsql_db_connect() -- 21:27:01.404 DEBUG [21962]: Database connection successful -- 21:27:01.404 INFO [21962]: _SERVER found -- 21:27:01.404 INFO [21962]: REMOTE_ADDR = 192.168.1.13 -- 21:27:01.404 INFO [21962]: SERVER_NAME = oameye.works.coregrade.com -- 21:27:01.404 INFO [21962]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=c7v8sja8g2dp3mspeug8dbq8g09k9s6h -- 21:27:01.404 INFO [21962]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:27:01.404 INFO [21962]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:27:01.415 INFO [21962]: COREGRADE is stopping... -- 21:27:01.415 DEBUG [21962]: Closing database connection -- 21:27:01.415 SQL [21962]: pgsql_close() -- 21:46:37.393 INFO [21959]: COREGRADE is starting... -- 21:46:37.394 INFO [21959]: Version from config: 1.0 -- 21:46:37.394 DEBUG [21959]: Connecting to database... -- 21:46:37.394 DEBUG [21959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:46:37.394 SQL [21959]: pgsql_db_connect() -- 21:46:37.398 DEBUG [21959]: Database connection successful -- 21:46:37.398 INFO [21959]: _SERVER found -- 21:46:37.398 INFO [21959]: REMOTE_ADDR = 192.168.1.13 -- 21:46:37.398 INFO [21959]: SERVER_NAME = oameye.works.coregrade.com -- 21:46:37.398 INFO [21959]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=c7v8sja8g2dp3mspeug8dbq8g09k9s6h -- 21:46:37.398 INFO [21959]: QUERY_STRING = /member/viewCardAddAction -- 21:46:37.398 INFO [21959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:46:37.434 INFO [21959]: COREGRADE is stopping... -- 21:46:37.434 DEBUG [21959]: Closing database connection -- 21:46:37.434 SQL [21959]: pgsql_close() -- 21:46:40.176 INFO [21959]: COREGRADE is starting... -- 21:46:40.176 INFO [21959]: Version from config: 1.0 -- 21:46:40.176 DEBUG [21959]: Connecting to database... -- 21:46:40.176 DEBUG [21959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:46:40.176 SQL [21959]: pgsql_db_connect() -- 21:46:40.181 DEBUG [21959]: Database connection successful -- 21:46:40.181 INFO [21959]: _SERVER found -- 21:46:40.181 INFO [21959]: REMOTE_ADDR = 192.168.1.13 -- 21:46:40.181 INFO [21959]: SERVER_NAME = oameye.works.coregrade.com -- 21:46:40.181 INFO [21959]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=c7v8sja8g2dp3mspeug8dbq8g09k9s6h -- 21:46:40.181 INFO [21959]: QUERY_STRING = /member/configure -- 21:46:40.181 INFO [21959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:46:40.225 INFO [21959]: COREGRADE is stopping... -- 21:46:40.225 DEBUG [21959]: Closing database connection -- 21:46:40.225 SQL [21959]: pgsql_close() -- 21:46:40.471 INFO [21959]: COREGRADE is starting... -- 21:46:40.471 INFO [21959]: Version from config: 1.0 -- 21:46:40.471 DEBUG [21959]: Connecting to database... -- 21:46:40.471 DEBUG [21959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:46:40.471 SQL [21959]: pgsql_db_connect() -- 21:46:40.478 INFO [21964]: COREGRADE is starting... -- 21:46:40.478 INFO [21964]: Version from config: 1.0 -- 21:46:40.478 DEBUG [21964]: Connecting to database... -- 21:46:40.478 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:46:40.478 SQL [21964]: pgsql_db_connect() -- 21:46:40.475 DEBUG [21959]: Database connection successful -- 21:46:40.475 INFO [21959]: _SERVER found -- 21:46:40.475 INFO [21959]: REMOTE_ADDR = 192.168.1.13 -- 21:46:40.475 INFO [21959]: SERVER_NAME = oameye.works.coregrade.com -- 21:46:40.475 INFO [21959]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=8naqk70raq0macfacure46u7lg6bpt2s -- 21:46:40.475 INFO [21959]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:46:40.475 INFO [21959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:46:40.487 INFO [21959]: COREGRADE is stopping... -- 21:46:40.487 DEBUG [21959]: Closing database connection -- 21:46:40.487 SQL [21959]: pgsql_close() -- 21:46:40.482 DEBUG [21964]: Database connection successful -- 21:46:40.482 INFO [21964]: _SERVER found -- 21:46:40.482 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 21:46:40.482 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 21:46:40.482 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=8naqk70raq0macfacure46u7lg6bpt2s -- 21:46:40.482 INFO [21964]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 21:46:40.482 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:46:40.494 INFO [21964]: COREGRADE is stopping... -- 21:46:40.494 DEBUG [21964]: Closing database connection -- 21:46:40.494 SQL [21964]: pgsql_close() -- 21:46:40.587 INFO [21964]: COREGRADE is starting... -- 21:46:40.587 INFO [21964]: Version from config: 1.0 -- 21:46:40.587 DEBUG [21964]: Connecting to database... -- 21:46:40.587 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:46:40.587 SQL [21964]: pgsql_db_connect() -- 21:46:40.591 DEBUG [21964]: Database connection successful -- 21:46:40.591 INFO [21964]: _SERVER found -- 21:46:40.591 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 21:46:40.591 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 21:46:40.591 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=8naqk70raq0macfacure46u7lg6bpt2s -- 21:46:40.591 INFO [21964]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:46:40.591 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:46:40.602 INFO [21964]: COREGRADE is stopping... -- 21:46:40.602 DEBUG [21964]: Closing database connection -- 21:46:40.602 SQL [21964]: pgsql_close() -- 21:54:31.893 INFO [21962]: COREGRADE is starting... -- 21:54:31.894 INFO [21962]: Version from config: 1.0 -- 21:54:31.894 DEBUG [21962]: Connecting to database... -- 21:54:31.894 DEBUG [21962]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:54:31.894 SQL [21962]: pgsql_db_connect() -- 21:54:31.898 DEBUG [21962]: Database connection successful -- 21:54:31.898 INFO [21962]: _SERVER found -- 21:54:31.898 INFO [21962]: REMOTE_ADDR = 192.168.1.13 -- 21:54:31.898 INFO [21962]: SERVER_NAME = oameye.works.coregrade.com -- 21:54:31.898 INFO [21962]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=8naqk70raq0macfacure46u7lg6bpt2s -- 21:54:31.898 INFO [21962]: QUERY_STRING = /member/myprofile -- 21:54:31.898 INFO [21962]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:54:31.940 INFO [21962]: COREGRADE is stopping... -- 21:54:31.940 DEBUG [21962]: Closing database connection -- 21:54:31.940 SQL [21962]: pgsql_close() -- 21:54:32.364 INFO [21962]: COREGRADE is starting... -- 21:54:32.365 INFO [21962]: Version from config: 1.0 -- 21:54:32.365 DEBUG [21962]: Connecting to database... -- 21:54:32.365 DEBUG [21962]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:54:32.365 SQL [21962]: pgsql_db_connect() -- 21:54:32.369 DEBUG [21962]: Database connection successful -- 21:54:32.369 INFO [21962]: _SERVER found -- 21:54:32.369 INFO [21962]: REMOTE_ADDR = 192.168.1.13 -- 21:54:32.369 INFO [21962]: SERVER_NAME = oameye.works.coregrade.com -- 21:54:32.369 INFO [21962]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=d934g82gee8bkqmeocsh5sasv0osa10a -- 21:54:32.369 INFO [21962]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:54:32.369 INFO [21962]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:54:32.380 INFO [21962]: COREGRADE is stopping... -- 21:54:32.380 DEBUG [21962]: Closing database connection -- 21:54:32.380 SQL [21962]: pgsql_close() -- 21:54:32.421 INFO [21962]: COREGRADE is starting... -- 21:54:32.421 INFO [21962]: Version from config: 1.0 -- 21:54:32.421 DEBUG [21962]: Connecting to database... -- 21:54:32.421 DEBUG [21962]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:54:32.421 SQL [21962]: pgsql_db_connect() -- 21:54:32.425 DEBUG [21962]: Database connection successful -- 21:54:32.425 INFO [21962]: _SERVER found -- 21:54:32.425 INFO [21962]: REMOTE_ADDR = 192.168.1.13 -- 21:54:32.425 INFO [21962]: SERVER_NAME = oameye.works.coregrade.com -- 21:54:32.425 INFO [21962]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=d934g82gee8bkqmeocsh5sasv0osa10a -- 21:54:32.425 INFO [21962]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:54:32.425 INFO [21962]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:54:32.436 INFO [21962]: COREGRADE is stopping... -- 21:54:32.436 DEBUG [21962]: Closing database connection -- 21:54:32.436 SQL [21962]: pgsql_close() -- 22:06:38.851 INFO [21955]: COREGRADE is starting... -- 22:06:38.851 INFO [21955]: Version from config: 1.0 -- 22:06:38.851 DEBUG [21955]: Connecting to database... -- 22:06:38.851 DEBUG [21955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:06:38.851 SQL [21955]: pgsql_db_connect() -- 22:06:38.856 DEBUG [21955]: Database connection successful -- 22:06:38.856 INFO [21955]: _SERVER found -- 22:06:38.856 INFO [21955]: REMOTE_ADDR = 192.168.1.13 -- 22:06:38.856 INFO [21955]: SERVER_NAME = oameye.works.coregrade.com -- 22:06:38.856 INFO [21955]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=d934g82gee8bkqmeocsh5sasv0osa10a -- 22:06:38.856 INFO [21955]: QUERY_STRING = /member/configure -- 22:06:38.856 INFO [21955]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:06:38.903 INFO [21955]: COREGRADE is stopping... -- 22:06:38.903 DEBUG [21955]: Closing database connection -- 22:06:38.903 SQL [21955]: pgsql_close() -- 22:06:39.116 INFO [21955]: COREGRADE is starting... -- 22:06:39.116 INFO [21955]: Version from config: 1.0 -- 22:06:39.116 DEBUG [21955]: Connecting to database... -- 22:06:39.116 DEBUG [21955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:06:39.116 SQL [21955]: pgsql_db_connect() -- 22:06:39.124 INFO [21957]: COREGRADE is starting... -- 22:06:39.124 INFO [21957]: Version from config: 1.0 -- 22:06:39.124 DEBUG [21957]: Connecting to database... -- 22:06:39.124 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:06:39.124 SQL [21957]: pgsql_db_connect() -- 22:06:39.120 DEBUG [21955]: Database connection successful -- 22:06:39.120 INFO [21955]: _SERVER found -- 22:06:39.120 INFO [21955]: REMOTE_ADDR = 192.168.1.13 -- 22:06:39.120 INFO [21955]: SERVER_NAME = oameye.works.coregrade.com -- 22:06:39.120 INFO [21955]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=11iur2pc95uvklaoje3hla7h48jdcaj0 -- 22:06:39.120 INFO [21955]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:06:39.120 INFO [21955]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:06:39.131 INFO [21955]: COREGRADE is stopping... -- 22:06:39.131 DEBUG [21955]: Closing database connection -- 22:06:39.131 SQL [21955]: pgsql_close() -- 22:06:39.128 DEBUG [21957]: Database connection successful -- 22:06:39.128 INFO [21957]: _SERVER found -- 22:06:39.128 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 22:06:39.128 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 22:06:39.128 INFO [21957]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=11iur2pc95uvklaoje3hla7h48jdcaj0 -- 22:06:39.128 INFO [21957]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 22:06:39.128 INFO [21957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:06:39.140 INFO [21957]: COREGRADE is stopping... -- 22:06:39.140 DEBUG [21957]: Closing database connection -- 22:06:39.140 SQL [21957]: pgsql_close() -- 22:06:39.342 INFO [21957]: COREGRADE is starting... -- 22:06:39.342 INFO [21957]: Version from config: 1.0 -- 22:06:39.342 DEBUG [21957]: Connecting to database... -- 22:06:39.342 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:06:39.342 SQL [21957]: pgsql_db_connect() -- 22:06:39.346 DEBUG [21957]: Database connection successful -- 22:06:39.346 INFO [21957]: _SERVER found -- 22:06:39.346 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 22:06:39.346 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 22:06:39.346 INFO [21957]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=11iur2pc95uvklaoje3hla7h48jdcaj0 -- 22:06:39.346 INFO [21957]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:06:39.346 INFO [21957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:06:39.358 INFO [21957]: COREGRADE is stopping... -- 22:06:39.358 DEBUG [21957]: Closing database connection -- 22:06:39.358 SQL [21957]: pgsql_close() -- 22:06:54.114 INFO [21963]: COREGRADE is starting... -- 22:06:54.114 INFO [21963]: Version from config: 1.0 -- 22:06:54.114 DEBUG [21963]: Connecting to database... -- 22:06:54.114 DEBUG [21963]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:06:54.114 SQL [21963]: pgsql_db_connect() -- 22:06:54.118 DEBUG [21963]: Database connection successful -- 22:06:54.118 INFO [21963]: _SERVER found -- 22:06:54.118 INFO [21963]: REMOTE_ADDR = 192.168.1.13 -- 22:06:54.118 INFO [21963]: SERVER_NAME = oameye.works.coregrade.com -- 22:06:54.118 INFO [21963]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=11iur2pc95uvklaoje3hla7h48jdcaj0 -- 22:06:54.118 INFO [21963]: QUERY_STRING = /member/page -- 22:06:54.118 INFO [21963]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:06:54.163 INFO [21963]: COREGRADE is stopping... -- 22:06:54.163 DEBUG [21963]: Closing database connection -- 22:06:54.163 SQL [21963]: pgsql_close() -- 22:06:54.394 INFO [21956]: COREGRADE is starting... -- 22:06:54.395 INFO [21956]: Version from config: 1.0 -- 22:06:54.395 DEBUG [21956]: Connecting to database... -- 22:06:54.395 DEBUG [21956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:06:54.395 SQL [21956]: pgsql_db_connect() -- 22:06:54.399 DEBUG [21956]: Database connection successful -- 22:06:54.399 INFO [21956]: _SERVER found -- 22:06:54.399 INFO [21956]: REMOTE_ADDR = 192.168.1.13 -- 22:06:54.399 INFO [21956]: SERVER_NAME = oameye.works.coregrade.com -- 22:06:54.399 INFO [21956]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=11iur2pc95uvklaoje3hla7h48jdcaj0 -- 22:06:54.399 INFO [21956]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:06:54.399 INFO [21956]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:06:54.411 INFO [21956]: COREGRADE is stopping... -- 22:06:54.411 DEBUG [21956]: Closing database connection -- 22:06:54.411 SQL [21956]: pgsql_close() -- 22:06:54.607 INFO [21956]: COREGRADE is starting... -- 22:06:54.607 INFO [21956]: Version from config: 1.0 -- 22:06:54.607 DEBUG [21956]: Connecting to database... -- 22:06:54.607 DEBUG [21956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:06:54.607 SQL [21956]: pgsql_db_connect() -- 22:06:54.612 DEBUG [21956]: Database connection successful -- 22:06:54.612 INFO [21956]: _SERVER found -- 22:06:54.612 INFO [21956]: REMOTE_ADDR = 192.168.1.13 -- 22:06:54.612 INFO [21956]: SERVER_NAME = oameye.works.coregrade.com -- 22:06:54.612 INFO [21956]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=11iur2pc95uvklaoje3hla7h48jdcaj0 -- 22:06:54.612 INFO [21956]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:06:54.612 INFO [21956]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:06:54.623 INFO [21956]: COREGRADE is stopping... -- 22:06:54.623 DEBUG [21956]: Closing database connection -- 22:06:54.623 SQL [21956]: pgsql_close() -- 22:07:09.318 INFO [21958]: COREGRADE is starting... -- 22:07:09.318 INFO [21958]: Version from config: 1.0 -- 22:07:09.318 DEBUG [21958]: Connecting to database... -- 22:07:09.318 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:09.318 SQL [21958]: pgsql_db_connect() -- 22:07:09.322 DEBUG [21958]: Database connection successful -- 22:07:09.322 INFO [21958]: _SERVER found -- 22:07:09.322 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 22:07:09.322 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 22:07:09.322 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=11iur2pc95uvklaoje3hla7h48jdcaj0 -- 22:07:09.322 INFO [21958]: QUERY_STRING = /member/configure -- 22:07:09.322 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:07:09.369 INFO [21958]: COREGRADE is stopping... -- 22:07:09.369 DEBUG [21958]: Closing database connection -- 22:07:09.369 SQL [21958]: pgsql_close() -- 22:07:09.607 INFO [21958]: COREGRADE is starting... -- 22:07:09.607 INFO [21958]: Version from config: 1.0 -- 22:07:09.607 DEBUG [21958]: Connecting to database... -- 22:07:09.607 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:09.607 SQL [21958]: pgsql_db_connect() -- 22:07:09.616 INFO [21959]: COREGRADE is starting... -- 22:07:09.616 INFO [21959]: Version from config: 1.0 -- 22:07:09.616 DEBUG [21959]: Connecting to database... -- 22:07:09.616 DEBUG [21959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:09.616 SQL [21959]: pgsql_db_connect() -- 22:07:09.611 DEBUG [21958]: Database connection successful -- 22:07:09.611 INFO [21958]: _SERVER found -- 22:07:09.611 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 22:07:09.611 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 22:07:09.611 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=11iur2pc95uvklaoje3hla7h48jdcaj0 -- 22:07:09.611 INFO [21958]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:07:09.611 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:07:09.622 INFO [21958]: COREGRADE is stopping... -- 22:07:09.622 DEBUG [21958]: Closing database connection -- 22:07:09.622 SQL [21958]: pgsql_close() -- 22:07:09.620 DEBUG [21959]: Database connection successful -- 22:07:09.620 INFO [21959]: _SERVER found -- 22:07:09.620 INFO [21959]: REMOTE_ADDR = 192.168.1.13 -- 22:07:09.620 INFO [21959]: SERVER_NAME = oameye.works.coregrade.com -- 22:07:09.620 INFO [21959]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=11iur2pc95uvklaoje3hla7h48jdcaj0 -- 22:07:09.620 INFO [21959]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 22:07:09.620 INFO [21959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:07:09.632 INFO [21959]: COREGRADE is stopping... -- 22:07:09.632 DEBUG [21959]: Closing database connection -- 22:07:09.632 SQL [21959]: pgsql_close() -- 22:07:09.727 INFO [21959]: COREGRADE is starting... -- 22:07:09.727 INFO [21959]: Version from config: 1.0 -- 22:07:09.727 DEBUG [21959]: Connecting to database... -- 22:07:09.727 DEBUG [21959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:09.727 SQL [21959]: pgsql_db_connect() -- 22:07:09.731 DEBUG [21959]: Database connection successful -- 22:07:09.731 INFO [21959]: _SERVER found -- 22:07:09.731 INFO [21959]: REMOTE_ADDR = 192.168.1.13 -- 22:07:09.731 INFO [21959]: SERVER_NAME = oameye.works.coregrade.com -- 22:07:09.731 INFO [21959]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=11iur2pc95uvklaoje3hla7h48jdcaj0 -- 22:07:09.731 INFO [21959]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:07:09.731 INFO [21959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:07:09.742 INFO [21959]: COREGRADE is stopping... -- 22:07:09.742 DEBUG [21959]: Closing database connection -- 22:07:09.742 SQL [21959]: pgsql_close() -- 22:07:12.713 INFO [21959]: COREGRADE is starting... -- 22:07:12.713 INFO [21959]: Version from config: 1.0 -- 22:07:12.713 DEBUG [21959]: Connecting to database... -- 22:07:12.713 DEBUG [21959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:12.713 SQL [21959]: pgsql_db_connect() -- 22:07:12.717 DEBUG [21959]: Database connection successful -- 22:07:12.717 INFO [21959]: _SERVER found -- 22:07:12.717 INFO [21959]: REMOTE_ADDR = 192.168.1.13 -- 22:07:12.717 INFO [21959]: SERVER_NAME = oameye.works.coregrade.com -- 22:07:12.717 INFO [21959]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=11iur2pc95uvklaoje3hla7h48jdcaj0 -- 22:07:12.717 INFO [21959]: QUERY_STRING = /member/page -- 22:07:12.717 INFO [21959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:07:12.760 INFO [21959]: COREGRADE is stopping... -- 22:07:12.760 DEBUG [21959]: Closing database connection -- 22:07:12.760 SQL [21959]: pgsql_close() -- 22:07:12.906 INFO [21959]: COREGRADE is starting... -- 22:07:12.906 INFO [21959]: Version from config: 1.0 -- 22:07:12.906 DEBUG [21959]: Connecting to database... -- 22:07:12.906 DEBUG [21959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:12.906 SQL [21959]: pgsql_db_connect() -- 22:07:12.910 DEBUG [21959]: Database connection successful -- 22:07:12.910 INFO [21959]: _SERVER found -- 22:07:12.910 INFO [21959]: REMOTE_ADDR = 192.168.1.13 -- 22:07:12.910 INFO [21959]: SERVER_NAME = oameye.works.coregrade.com -- 22:07:12.910 INFO [21959]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=11iur2pc95uvklaoje3hla7h48jdcaj0 -- 22:07:12.910 INFO [21959]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:07:12.910 INFO [21959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:07:12.921 INFO [21959]: COREGRADE is stopping... -- 22:07:12.921 DEBUG [21959]: Closing database connection -- 22:07:12.921 SQL [21959]: pgsql_close() -- 22:07:13.026 INFO [21959]: COREGRADE is starting... -- 22:07:13.026 INFO [21959]: Version from config: 1.0 -- 22:07:13.026 DEBUG [21959]: Connecting to database... -- 22:07:13.026 DEBUG [21959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:13.026 SQL [21959]: pgsql_db_connect() -- 22:07:13.030 DEBUG [21959]: Database connection successful -- 22:07:13.030 INFO [21959]: _SERVER found -- 22:07:13.030 INFO [21959]: REMOTE_ADDR = 192.168.1.13 -- 22:07:13.030 INFO [21959]: SERVER_NAME = oameye.works.coregrade.com -- 22:07:13.030 INFO [21959]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=11iur2pc95uvklaoje3hla7h48jdcaj0 -- 22:07:13.030 INFO [21959]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:07:13.030 INFO [21959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:07:13.041 INFO [21959]: COREGRADE is stopping... -- 22:07:13.041 DEBUG [21959]: Closing database connection -- 22:07:13.041 SQL [21959]: pgsql_close() -- 22:07:14.636 INFO [21959]: COREGRADE is starting... -- 22:07:14.636 INFO [21959]: Version from config: 1.0 -- 22:07:14.636 DEBUG [21959]: Connecting to database... -- 22:07:14.636 DEBUG [21959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:14.636 SQL [21959]: pgsql_db_connect() -- 22:07:14.640 DEBUG [21959]: Database connection successful -- 22:07:14.640 INFO [21959]: _SERVER found -- 22:07:14.640 INFO [21959]: REMOTE_ADDR = 192.168.1.13 -- 22:07:14.640 INFO [21959]: SERVER_NAME = oameye.works.coregrade.com -- 22:07:14.640 INFO [21959]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=11iur2pc95uvklaoje3hla7h48jdcaj0 -- 22:07:14.640 INFO [21959]: QUERY_STRING = /member/configure -- 22:07:14.640 INFO [21959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:07:14.683 INFO [21959]: COREGRADE is stopping... -- 22:07:14.683 DEBUG [21959]: Closing database connection -- 22:07:14.683 SQL [21959]: pgsql_close() -- 22:07:14.881 INFO [21959]: COREGRADE is starting... -- 22:07:14.882 INFO [21959]: Version from config: 1.0 -- 22:07:14.882 DEBUG [21959]: Connecting to database... -- 22:07:14.882 DEBUG [21959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:14.882 SQL [21959]: pgsql_db_connect() -- 22:07:14.882 INFO [21958]: COREGRADE is starting... -- 22:07:14.882 INFO [21958]: Version from config: 1.0 -- 22:07:14.882 DEBUG [21958]: Connecting to database... -- 22:07:14.882 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:14.882 SQL [21958]: pgsql_db_connect() -- 22:07:14.886 DEBUG [21959]: Database connection successful -- 22:07:14.886 INFO [21959]: _SERVER found -- 22:07:14.886 INFO [21959]: REMOTE_ADDR = 192.168.1.13 -- 22:07:14.886 INFO [21959]: SERVER_NAME = oameye.works.coregrade.com -- 22:07:14.886 INFO [21959]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=11iur2pc95uvklaoje3hla7h48jdcaj0 -- 22:07:14.886 INFO [21959]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:07:14.886 INFO [21959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:07:14.897 INFO [21959]: COREGRADE is stopping... -- 22:07:14.897 DEBUG [21959]: Closing database connection -- 22:07:14.897 SQL [21959]: pgsql_close() -- 22:07:14.886 DEBUG [21958]: Database connection successful -- 22:07:14.886 INFO [21958]: _SERVER found -- 22:07:14.886 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 22:07:14.886 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 22:07:14.886 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=11iur2pc95uvklaoje3hla7h48jdcaj0 -- 22:07:14.886 INFO [21958]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 22:07:14.886 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:07:14.897 INFO [21958]: COREGRADE is stopping... -- 22:07:14.897 DEBUG [21958]: Closing database connection -- 22:07:14.897 SQL [21958]: pgsql_close() -- 22:07:14.919 INFO [21958]: COREGRADE is starting... -- 22:07:14.919 INFO [21958]: Version from config: 1.0 -- 22:07:14.919 DEBUG [21958]: Connecting to database... -- 22:07:14.920 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:14.920 SQL [21958]: pgsql_db_connect() -- 22:07:14.923 DEBUG [21958]: Database connection successful -- 22:07:14.923 INFO [21958]: _SERVER found -- 22:07:14.923 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 22:07:14.923 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 22:07:14.923 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=11iur2pc95uvklaoje3hla7h48jdcaj0 -- 22:07:14.923 INFO [21958]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:07:14.923 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:07:14.934 INFO [21958]: COREGRADE is stopping... -- 22:07:14.934 DEBUG [21958]: Closing database connection -- 22:07:14.935 SQL [21958]: pgsql_close() -- 22:07:27.352 INFO [21964]: COREGRADE is starting... -- 22:07:27.352 INFO [21964]: Version from config: 1.0 -- 22:07:27.352 DEBUG [21964]: Connecting to database... -- 22:07:27.352 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:27.352 SQL [21964]: pgsql_db_connect() -- 22:07:27.356 DEBUG [21964]: Database connection successful -- 22:07:27.356 INFO [21964]: _SERVER found -- 22:07:27.356 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 22:07:27.356 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 22:07:27.356 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=11iur2pc95uvklaoje3hla7h48jdcaj0 -- 22:07:27.356 INFO [21964]: QUERY_STRING = /member/configure -- 22:07:27.356 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:07:27.400 INFO [21964]: COREGRADE is stopping... -- 22:07:27.400 DEBUG [21964]: Closing database connection -- 22:07:27.400 SQL [21964]: pgsql_close() -- 22:07:27.622 INFO [21964]: COREGRADE is starting... -- 22:07:27.622 INFO [21964]: Version from config: 1.0 -- 22:07:27.622 DEBUG [21964]: Connecting to database... -- 22:07:27.622 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:27.622 SQL [21964]: pgsql_db_connect() -- 22:07:27.629 INFO [21962]: COREGRADE is starting... -- 22:07:27.629 INFO [21962]: Version from config: 1.0 -- 22:07:27.629 DEBUG [21962]: Connecting to database... -- 22:07:27.629 DEBUG [21962]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:27.629 SQL [21962]: pgsql_db_connect() -- 22:07:27.626 DEBUG [21964]: Database connection successful -- 22:07:27.626 INFO [21964]: _SERVER found -- 22:07:27.626 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 22:07:27.626 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 22:07:27.626 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=11iur2pc95uvklaoje3hla7h48jdcaj0 -- 22:07:27.626 INFO [21964]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:07:27.626 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:07:27.637 INFO [21964]: COREGRADE is stopping... -- 22:07:27.637 DEBUG [21964]: Closing database connection -- 22:07:27.637 SQL [21964]: pgsql_close() -- 22:07:27.633 DEBUG [21962]: Database connection successful -- 22:07:27.633 INFO [21962]: _SERVER found -- 22:07:27.633 INFO [21962]: REMOTE_ADDR = 192.168.1.13 -- 22:07:27.633 INFO [21962]: SERVER_NAME = oameye.works.coregrade.com -- 22:07:27.633 INFO [21962]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=11iur2pc95uvklaoje3hla7h48jdcaj0 -- 22:07:27.633 INFO [21962]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 22:07:27.633 INFO [21962]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:07:27.645 INFO [21962]: COREGRADE is stopping... -- 22:07:27.645 DEBUG [21962]: Closing database connection -- 22:07:27.645 SQL [21962]: pgsql_close() -- 22:07:27.747 INFO [21962]: COREGRADE is starting... -- 22:07:27.747 INFO [21962]: Version from config: 1.0 -- 22:07:27.747 DEBUG [21962]: Connecting to database... -- 22:07:27.747 DEBUG [21962]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:27.748 SQL [21962]: pgsql_db_connect() -- 22:07:27.751 DEBUG [21962]: Database connection successful -- 22:07:27.751 INFO [21962]: _SERVER found -- 22:07:27.751 INFO [21962]: REMOTE_ADDR = 192.168.1.13 -- 22:07:27.751 INFO [21962]: SERVER_NAME = oameye.works.coregrade.com -- 22:07:27.751 INFO [21962]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.803327914.1582562124; ci_session=11iur2pc95uvklaoje3hla7h48jdcaj0 -- 22:07:27.751 INFO [21962]: QUERY_STRING = /app-assets/data/locales/en.json -- 22:07:27.751 INFO [21962]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:07:27.762 INFO [21962]: COREGRADE is stopping... -- 22:07:27.762 DEBUG [21962]: Closing database connection -- 22:07:27.762 SQL [21962]: pgsql_close() -- 04:26:44.867 INFO [21955]: COREGRADE is starting... -- 04:26:44.870 INFO [21957]: COREGRADE is starting... -- 04:26:44.873 INFO [21955]: Version from config: 1.0 -- 04:26:44.873 DEBUG [21955]: Connecting to database... -- 04:26:44.873 DEBUG [21955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:26:44.873 SQL [21955]: pgsql_db_connect() -- 04:26:44.873 INFO [21957]: Version from config: 1.0 -- 04:26:44.873 DEBUG [21957]: Connecting to database... -- 04:26:44.873 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:26:44.873 SQL [21957]: pgsql_db_connect() -- 04:26:44.876 INFO [21963]: COREGRADE is starting... -- 04:26:44.876 INFO [21963]: Version from config: 1.0 -- 04:26:44.876 DEBUG [21963]: Connecting to database... -- 04:26:44.876 DEBUG [21963]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:26:44.876 SQL [21963]: pgsql_db_connect() -- 04:26:44.882 DEBUG [21957]: Database connection successful -- 04:26:44.882 INFO [21957]: _SERVER found -- 04:26:44.882 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 04:26:44.882 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 04:26:44.882 INFO [21957]: QUERY_STRING = /v2/_catalog -- 04:26:44.882 INFO [21957]: HTTP_X_FORWARDED_FOR = 51.158.118.213 -- 04:26:44.909 INFO [21957]: COREGRADE is stopping... -- 04:26:44.909 DEBUG [21957]: Closing database connection -- 04:26:44.882 DEBUG [21955]: Database connection successful -- 04:26:44.882 INFO [21955]: _SERVER found -- 04:26:44.882 INFO [21955]: REMOTE_ADDR = 192.168.1.13 -- 04:26:44.882 INFO [21955]: SERVER_NAME = oameye.works.coregrade.com -- 04:26:44.882 INFO [21955]: QUERY_STRING = /.git/config -- 04:26:44.882 INFO [21955]: HTTP_X_FORWARDED_FOR = 51.158.118.213 -- 04:26:44.909 INFO [21955]: COREGRADE is stopping... -- 04:26:44.909 SQL [21957]: pgsql_close() -- 04:26:44.909 DEBUG [21955]: Closing database connection -- 04:26:44.909 SQL [21955]: pgsql_close() -- 04:26:44.882 DEBUG [21963]: Database connection successful -- 04:26:44.882 INFO [21963]: _SERVER found -- 04:26:44.882 INFO [21963]: REMOTE_ADDR = 192.168.1.13 -- 04:26:44.882 INFO [21963]: SERVER_NAME = oameye.works.coregrade.com -- 04:26:44.882 INFO [21963]: QUERY_STRING = /.env -- 04:26:44.882 INFO [21963]: HTTP_X_FORWARDED_FOR = 51.158.118.213 -- 04:26:44.910 INFO [21963]: COREGRADE is stopping... -- 04:26:44.910 DEBUG [21963]: Closing database connection -- 04:26:44.910 SQL [21963]: pgsql_close() -- 04:26:46.119 INFO [21963]: COREGRADE is starting... -- 04:26:46.119 INFO [21963]: Version from config: 1.0 -- 04:26:46.119 DEBUG [21963]: Connecting to database... -- 04:26:46.119 DEBUG [21963]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:26:46.119 SQL [21963]: pgsql_db_connect() -- 04:26:46.123 DEBUG [21963]: Database connection successful -- 04:26:46.123 INFO [21963]: _SERVER found -- 04:26:46.123 INFO [21963]: REMOTE_ADDR = 192.168.1.13 -- 04:26:46.123 INFO [21963]: SERVER_NAME = oameye.works.coregrade.com -- 04:26:46.123 INFO [21963]: QUERY_STRING = -- 04:26:46.123 INFO [21963]: HTTP_X_FORWARDED_FOR = 51.158.118.213 -- 04:26:46.158 INFO [21963]: COREGRADE is stopping... -- 04:26:46.158 DEBUG [21963]: Closing database connection -- 04:26:46.158 SQL [21963]: pgsql_close() -- 08:34:10.934 INFO [21956]: COREGRADE is starting... -- 08:34:10.934 INFO [21956]: Version from config: 1.0 -- 08:34:10.934 DEBUG [21956]: Connecting to database... -- 08:34:10.934 DEBUG [21956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:34:10.934 SQL [21956]: pgsql_db_connect() -- 08:34:10.939 DEBUG [21956]: Database connection successful -- 08:34:10.939 INFO [21956]: _SERVER found -- 08:34:10.939 INFO [21956]: REMOTE_ADDR = 192.168.1.13 -- 08:34:10.939 INFO [21956]: SERVER_NAME = oameye.works.coregrade.com -- 08:34:10.939 INFO [21956]: QUERY_STRING = /solr/admin/info/system -- 08:34:10.939 INFO [21956]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 08:34:10.954 INFO [21956]: COREGRADE is stopping... -- 08:34:10.954 DEBUG [21956]: Closing database connection -- 08:34:10.954 SQL [21956]: pgsql_close() -- 08:42:26.994 INFO [21959]: COREGRADE is starting... -- 08:42:26.995 INFO [21959]: Version from config: 1.0 -- 08:42:26.995 DEBUG [21959]: Connecting to database... -- 08:42:26.995 DEBUG [21959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:42:26.995 SQL [21959]: pgsql_db_connect() -- 08:42:26.999 DEBUG [21959]: Database connection successful -- 08:42:26.999 INFO [21959]: _SERVER found -- 08:42:26.999 INFO [21959]: REMOTE_ADDR = 192.168.1.13 -- 08:42:26.999 INFO [21959]: SERVER_NAME = oameye.works.coregrade.com -- 08:42:26.999 INFO [21959]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 08:42:26.999 INFO [21959]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 08:42:27.044 INFO [21959]: COREGRADE is stopping... -- 08:42:27.044 DEBUG [21959]: Closing database connection -- 08:42:27.044 SQL [21959]: pgsql_close() -- 08:42:27.973 INFO [21958]: COREGRADE is starting... -- 08:42:27.974 INFO [21958]: Version from config: 1.0 -- 08:42:27.974 DEBUG [21958]: Connecting to database... -- 08:42:27.974 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:42:27.974 SQL [21958]: pgsql_db_connect() -- 08:42:27.978 DEBUG [21958]: Database connection successful -- 08:42:27.978 INFO [21958]: _SERVER found -- 08:42:27.978 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 08:42:27.978 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 08:42:27.978 INFO [21958]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 08:42:27.978 INFO [21958]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 08:42:28.018 INFO [21958]: COREGRADE is stopping... -- 08:42:28.018 DEBUG [21958]: Closing database connection -- 08:42:28.018 SQL [21958]: pgsql_close() -- 08:45:26.494 INFO [21964]: COREGRADE is starting... -- 08:45:26.494 INFO [21964]: Version from config: 1.0 -- 08:45:26.494 DEBUG [21964]: Connecting to database... -- 08:45:26.494 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:45:26.494 SQL [21964]: pgsql_db_connect() -- 08:45:26.498 DEBUG [21964]: Database connection successful -- 08:45:26.498 INFO [21964]: _SERVER found -- 08:45:26.498 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 08:45:26.498 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 08:45:26.498 INFO [21964]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 08:45:26.498 INFO [21964]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 08:45:26.532 INFO [21964]: COREGRADE is stopping... -- 08:45:26.532 DEBUG [21964]: Closing database connection -- 08:45:26.532 SQL [21964]: pgsql_close() -- 09:57:03.433 INFO [21962]: COREGRADE is starting... -- 09:57:03.433 INFO [21962]: Version from config: 1.0 -- 09:57:03.433 DEBUG [21962]: Connecting to database... -- 09:57:03.433 DEBUG [21962]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:57:03.433 SQL [21962]: pgsql_db_connect() -- 09:57:03.438 DEBUG [21962]: Database connection successful -- 09:57:03.438 INFO [21962]: _SERVER found -- 09:57:03.438 INFO [21962]: REMOTE_ADDR = 192.168.1.13 -- 09:57:03.438 INFO [21962]: SERVER_NAME = oameye.works.coregrade.com -- 09:57:03.438 INFO [21962]: QUERY_STRING = -- 09:57:03.438 INFO [21962]: HTTP_X_FORWARDED_FOR = 210.52.224.18 -- 09:57:03.475 INFO [21962]: COREGRADE is stopping... -- 09:57:03.475 DEBUG [21962]: Closing database connection -- 09:57:03.475 SQL [21962]: pgsql_close() -- 11:22:36.924 INFO [21957]: COREGRADE is starting... -- 11:22:36.924 INFO [21957]: Version from config: 1.0 -- 11:22:36.924 DEBUG [21957]: Connecting to database... -- 11:22:36.924 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:22:36.924 SQL [21957]: pgsql_db_connect() -- 11:22:36.929 DEBUG [21957]: Database connection successful -- 11:22:36.929 INFO [21957]: _SERVER found -- 11:22:36.929 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 11:22:36.929 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 11:22:36.929 INFO [21957]: QUERY_STRING = -- 11:22:36.929 INFO [21957]: HTTP_X_FORWARDED_FOR = 198.108.66.176 -- 11:22:36.975 INFO [21957]: COREGRADE is stopping... -- 11:22:36.975 DEBUG [21957]: Closing database connection -- 11:22:36.975 SQL [21957]: pgsql_close() -- 15:05:55.302 INFO [21955]: COREGRADE is starting... -- 15:05:55.302 INFO [21955]: Version from config: 1.0 -- 15:05:55.302 DEBUG [21955]: Connecting to database... -- 15:05:55.302 DEBUG [21955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:05:55.302 SQL [21955]: pgsql_db_connect() -- 15:05:55.306 DEBUG [21955]: Database connection successful -- 15:05:55.306 INFO [21955]: _SERVER found -- 15:05:55.306 INFO [21955]: REMOTE_ADDR = 192.168.1.13 -- 15:05:55.306 INFO [21955]: SERVER_NAME = oameye.works.coregrade.com -- 15:05:55.306 INFO [21955]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 15:05:55.306 INFO [21955]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 15:05:55.321 INFO [21955]: COREGRADE is stopping... -- 15:05:55.321 DEBUG [21955]: Closing database connection -- 15:05:55.321 SQL [21955]: pgsql_close() -- 17:04:54.645 INFO [21963]: COREGRADE is starting... -- 17:04:54.646 INFO [21963]: Version from config: 1.0 -- 17:04:54.646 DEBUG [21963]: Connecting to database... -- 17:04:54.646 DEBUG [21963]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:54.646 SQL [21963]: pgsql_db_connect() -- 17:04:54.650 DEBUG [21963]: Database connection successful -- 17:04:54.650 INFO [21963]: _SERVER found -- 17:04:54.650 INFO [21963]: REMOTE_ADDR = 192.168.1.13 -- 17:04:54.650 INFO [21963]: SERVER_NAME = oameye.works.coregrade.com -- 17:04:54.650 INFO [21963]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 17:04:54.650 INFO [21963]: QUERY_STRING = -- 17:04:54.650 INFO [21963]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:04:54.690 INFO [21963]: COREGRADE is stopping... -- 17:04:54.690 DEBUG [21963]: Closing database connection -- 17:04:54.690 SQL [21963]: pgsql_close() -- 17:04:55.044 INFO [21963]: COREGRADE is starting... -- 17:04:55.044 INFO [21963]: Version from config: 1.0 -- 17:04:55.044 DEBUG [21963]: Connecting to database... -- 17:04:55.044 DEBUG [21963]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:55.044 SQL [21963]: pgsql_db_connect() -- 17:04:55.048 DEBUG [21963]: Database connection successful -- 17:04:55.048 INFO [21963]: _SERVER found -- 17:04:55.048 INFO [21963]: REMOTE_ADDR = 192.168.1.13 -- 17:04:55.048 INFO [21963]: SERVER_NAME = oameye.works.coregrade.com -- 17:04:55.048 INFO [21963]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=67ntg3llu0jk52a881ui1vj2r7p512je -- 17:04:55.048 INFO [21963]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 17:04:55.048 INFO [21963]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:04:55.060 INFO [21963]: COREGRADE is stopping... -- 17:04:55.060 DEBUG [21963]: Closing database connection -- 17:04:55.060 SQL [21963]: pgsql_close() -- 17:04:55.060 INFO [21958]: COREGRADE is starting... -- 17:04:55.061 INFO [21958]: Version from config: 1.0 -- 17:04:55.061 DEBUG [21958]: Connecting to database... -- 17:04:55.061 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:55.061 SQL [21958]: pgsql_db_connect() -- 17:04:55.064 DEBUG [21958]: Database connection successful -- 17:04:55.064 INFO [21958]: _SERVER found -- 17:04:55.064 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 17:04:55.064 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 17:04:55.064 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=67ntg3llu0jk52a881ui1vj2r7p512je -- 17:04:55.064 INFO [21958]: QUERY_STRING = /assets/img/footer_1.jpg -- 17:04:55.064 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:04:55.077 INFO [21958]: COREGRADE is stopping... -- 17:04:55.077 DEBUG [21958]: Closing database connection -- 17:04:55.077 SQL [21958]: pgsql_close() -- 17:05:03.139 INFO [21957]: COREGRADE is starting... -- 17:05:03.139 INFO [21957]: Version from config: 1.0 -- 17:05:03.139 DEBUG [21957]: Connecting to database... -- 17:05:03.139 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:03.139 SQL [21957]: pgsql_db_connect() -- 17:05:03.144 DEBUG [21957]: Database connection successful -- 17:05:03.144 INFO [21957]: _SERVER found -- 17:05:03.144 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 17:05:03.144 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:03.144 INFO [21957]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=67ntg3llu0jk52a881ui1vj2r7p512je; _gid=GA1.2.1791978288.1582668296; _gat_gtag_UA_54829827_2=1 -- 17:05:03.144 INFO [21957]: QUERY_STRING = /auth -- 17:05:03.144 INFO [21957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:05:03.179 INFO [21957]: COREGRADE is stopping... -- 17:05:03.179 DEBUG [21957]: Closing database connection -- 17:05:03.179 SQL [21957]: pgsql_close() -- 17:05:03.188 INFO [21955]: COREGRADE is starting... -- 17:05:03.188 INFO [21955]: Version from config: 1.0 -- 17:05:03.188 DEBUG [21955]: Connecting to database... -- 17:05:03.188 DEBUG [21955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:03.188 SQL [21955]: pgsql_db_connect() -- 17:05:03.192 DEBUG [21955]: Database connection successful -- 17:05:03.192 INFO [21955]: _SERVER found -- 17:05:03.192 INFO [21955]: REMOTE_ADDR = 192.168.1.13 -- 17:05:03.192 INFO [21955]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:03.192 INFO [21955]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=67ntg3llu0jk52a881ui1vj2r7p512je; _gid=GA1.2.1791978288.1582668296; _gat_gtag_UA_54829827_2=1 -- 17:05:03.192 INFO [21955]: QUERY_STRING = /welcome/viewLogin -- 17:05:03.192 INFO [21955]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:05:03.224 INFO [21955]: COREGRADE is stopping... -- 17:05:03.224 DEBUG [21955]: Closing database connection -- 17:05:03.224 SQL [21955]: pgsql_close() -- 17:05:03.484 INFO [21957]: COREGRADE is starting... -- 17:05:03.484 INFO [21957]: Version from config: 1.0 -- 17:05:03.484 DEBUG [21957]: Connecting to database... -- 17:05:03.484 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:03.484 SQL [21957]: pgsql_db_connect() -- 17:05:03.488 DEBUG [21957]: Database connection successful -- 17:05:03.488 INFO [21957]: _SERVER found -- 17:05:03.488 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 17:05:03.488 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:03.488 INFO [21957]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=67ntg3llu0jk52a881ui1vj2r7p512je; _gid=GA1.2.1791978288.1582668296; _gat_gtag_UA_54829827_2=1 -- 17:05:03.488 INFO [21957]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:05:03.488 INFO [21957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:05:03.499 INFO [21957]: COREGRADE is stopping... -- 17:05:03.499 DEBUG [21957]: Closing database connection -- 17:05:03.499 SQL [21957]: pgsql_close() -- 17:05:03.523 INFO [21957]: COREGRADE is starting... -- 17:05:03.524 INFO [21957]: Version from config: 1.0 -- 17:05:03.524 DEBUG [21957]: Connecting to database... -- 17:05:03.524 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:03.524 SQL [21957]: pgsql_db_connect() -- 17:05:03.527 DEBUG [21957]: Database connection successful -- 17:05:03.528 INFO [21957]: _SERVER found -- 17:05:03.528 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 17:05:03.528 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:03.528 INFO [21957]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=67ntg3llu0jk52a881ui1vj2r7p512je; _gid=GA1.2.1791978288.1582668296; _gat_gtag_UA_54829827_2=1 -- 17:05:03.528 INFO [21957]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:05:03.528 INFO [21957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:05:03.539 INFO [21957]: COREGRADE is stopping... -- 17:05:03.539 DEBUG [21957]: Closing database connection -- 17:05:03.539 SQL [21957]: pgsql_close() -- 17:05:04.881 INFO [21957]: COREGRADE is starting... -- 17:05:04.881 INFO [21957]: Version from config: 1.0 -- 17:05:04.881 DEBUG [21957]: Connecting to database... -- 17:05:04.881 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:04.881 SQL [21957]: pgsql_db_connect() -- 17:05:04.916 INFO [21957]: COREGRADE is starting... -- 17:05:04.916 INFO [21957]: Version from config: 1.0 -- 17:05:04.916 DEBUG [21957]: Connecting to database... -- 17:05:04.916 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:04.916 SQL [21957]: pgsql_db_connect() -- 17:05:04.920 DEBUG [21957]: Database connection successful -- 17:05:04.920 INFO [21957]: _SERVER found -- 17:05:04.920 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 17:05:04.920 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:04.920 INFO [21957]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=67ntg3llu0jk52a881ui1vj2r7p512je; _gid=GA1.2.1791978288.1582668296; _gat_gtag_UA_54829827_2=1 -- 17:05:04.920 INFO [21957]: QUERY_STRING = -- 17:05:04.920 INFO [21957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:05:04.920 INFO [21957]: SystemStatus()09-09-********~************ -- 17:05:04.920 INFO [21957]: long coregrade_api_main(CVars in, CVars &out) -- 17:05:04.920 INFO [21957]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 17:05:04.921 INFO [21957]: account calls -- 17:05:04.921 INFO [21957]: account_calls() -- 17:05:04.921 INFO [21957]: LoginCoreGradeAccount() -- 17:05:04.921 FLOG_MAX [21957]: REQ_STRING(username) -- 17:05:04.921 FLOG_MAX [21957]: REQ_STRING(password) -- 17:05:04.921 FLOG_MAX [21957]: REQ_STRING(sessionid) -- 17:05:04.921 FLOG_MAX [21957]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:05:04.921 SQL [21957]: pgsql_query() -- 17:05:04.921 SQL [21957]: About to run query: -- 17:05:04.921 SQL [21957]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 17:05:04.924 SQL [21957]: Found rows: 1 -- 17:05:04.924 FLOG_MAX [21957]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 17:05:04.924 INFO [21957]: long SessionCheck(long uid, const char *sessionid, int create ) -- 17:05:04.924 SQL [21957]: pgsql_exec() -- 17:05:04.924 SQL [21957]: About to run query: -- 17:05:04.924 SQL [21957]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 17:05:04.926 SQL [21957]: PQcmdTuples: 1 -- 17:05:04.926 SQL [21957]: Affected rows: 1 -- 17:05:04.926 SQL [21957]: pgsql_exec() -- 17:05:04.926 SQL [21957]: About to run query: -- 17:05:04.926 SQL [21957]: DELETE FROM members_session WHERE member_id=5 -- 17:05:04.926 SQL [21957]: PQcmdTuples: 0 -- 17:05:04.926 SQL [21957]: Affected rows: 0 -- 17:05:04.926 SQL [21957]: pgsql_query() -- 17:05:04.926 SQL [21957]: About to run query: -- 17:05:04.926 SQL [21957]: SELECT * FROM members_session WHERE member_id=5 AND session<>'AD7B41F02EA4D2B2721E56C5868EEC2C' -- 17:05:04.927 SQL [21957]: Found rows: 0 -- 17:05:04.927 SQL [21957]: Found rows: 0 -- 17:05:04.927 FLOG_MAX [21957]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:05:04.927 SQL [21957]: pgsql_query() -- 17:05:04.927 SQL [21957]: About to run query: -- 17:05:04.927 SQL [21957]: SELECT * FROM members_session WHERE member_id=5 AND session='AD7B41F02EA4D2B2721E56C5868EEC2C' -- 17:05:04.927 SQL [21957]: Found rows: 0 -- 17:05:04.927 SQL [21957]: Found rows: 0 -- 17:05:04.927 FLOG_MAX [21957]: insert_db_record() -- 17:05:04.927 SQL [21957]: pgsql_exec() -- 17:05:04.927 SQL [21957]: About to run query: -- 17:05:04.927 SQL [21957]: INSERT INTO members_session (member_id,session) VALUES ('5','AD7B41F02EA4D2B2721E56C5868EEC2C') -- 17:05:04.929 SQL [21957]: PQcmdTuples: 1 -- 17:05:04.929 SQL [21957]: Affected rows: 1 -- 17:05:04.929 FLOG_MAX [21957]: SELECT currval('members_session_id_seq') -- 17:05:04.929 SQL [21957]: pgsql_query() -- 17:05:04.929 SQL [21957]: About to run query: -- 17:05:04.929 SQL [21957]: SELECT currval('members_session_id_seq') -- 17:05:04.929 SQL [21957]: Found rows: 1 -- 17:05:04.929 INFO [21957]: CreateDefaultPage() -- 17:05:04.929 FLOG_MAX [21957]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:05:04.929 SQL [21957]: pgsql_query() -- 17:05:04.929 SQL [21957]: About to run query: -- 17:05:04.929 SQL [21957]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 17:05:04.930 SQL [21957]: Found rows: 1 -- 17:05:04.930 FLOG_MAX [21957]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 17:05:04.930 SQL [21957]: pgsql_query() -- 17:05:04.930 SQL [21957]: About to run query: -- 17:05:04.930 SQL [21957]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 17:05:04.930 SQL [21957]: Found rows: 1 -- 17:05:04.930 INFO [21957]: /CreateDefaultPage() -- 17:05:04.930 INFO [21957]: /LoginCoreGradeAccount() -- 17:05:04.930 INFO [21957]: RET: added=2020-02-05 06:47:23.982154 -- 17:05:04.930 INFO [21957]: RET: email=ameye+11@chiefsoft.com -- 17:05:04.930 INFO [21957]: RET: firstname=Olu -- 17:05:04.930 INFO [21957]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 17:05:04.930 INFO [21957]: RET: id=5 -- 17:05:04.930 INFO [21957]: RET: last_login= -- 17:05:04.930 INFO [21957]: RET: lastname=Amey -- 17:05:04.930 INFO [21957]: RET: loc=192.168.1.13 -- 17:05:04.930 INFO [21957]: RET: member_id=5 -- 17:05:04.930 INFO [21957]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 17:05:04.930 INFO [21957]: RET: phone= -- 17:05:04.930 INFO [21957]: RET: pid= -- 17:05:04.930 INFO [21957]: RET: result=YES I GET TO BACK END -- 17:05:04.930 INFO [21957]: RET: sessionid=AD7B41F02EA4D2B2721E56C5868EEC2C -- 17:05:04.930 INFO [21957]: RET: status=1 -- 17:05:04.930 INFO [21957]: RET: stauts=OK -- 17:05:04.930 INFO [21957]: RET: username=ameye+11@chiefsoft.com -- 17:05:04.930 INFO [21957]: RET: verified= -- 17:05:04.932 INFO [21957]: COREGRADE is stopping... -- 17:05:04.932 DEBUG [21957]: Closing database connection -- 17:05:04.932 SQL [21957]: pgsql_close() -- 17:05:04.885 DEBUG [21957]: Database connection successful -- 17:05:04.885 INFO [21957]: _SERVER found -- 17:05:04.885 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 17:05:04.885 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:04.885 INFO [21957]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=67ntg3llu0jk52a881ui1vj2r7p512je; _gid=GA1.2.1791978288.1582668296; _gat_gtag_UA_54829827_2=1 -- 17:05:04.885 INFO [21957]: QUERY_STRING = /auth -- 17:05:04.885 INFO [21957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:05:04.932 INFO [21957]: COREGRADE is stopping... -- 17:05:04.932 DEBUG [21957]: Closing database connection -- 17:05:04.932 SQL [21957]: pgsql_close() -- 17:05:04.942 INFO [21957]: COREGRADE is starting... -- 17:05:04.942 INFO [21957]: Version from config: 1.0 -- 17:05:04.942 DEBUG [21957]: Connecting to database... -- 17:05:04.942 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:04.942 SQL [21957]: pgsql_db_connect() -- 17:05:04.946 DEBUG [21957]: Database connection successful -- 17:05:04.946 INFO [21957]: _SERVER found -- 17:05:04.946 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 17:05:04.946 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:04.946 INFO [21957]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=67ntg3llu0jk52a881ui1vj2r7p512je; _gid=GA1.2.1791978288.1582668296; _gat_gtag_UA_54829827_2=1 -- 17:05:04.946 INFO [21957]: QUERY_STRING = /member/index -- 17:05:04.946 INFO [21957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:05:04.986 INFO [21957]: COREGRADE is stopping... -- 17:05:04.986 DEBUG [21957]: Closing database connection -- 17:05:04.986 SQL [21957]: pgsql_close() -- 17:05:05.364 INFO [27751]: COREGRADE is starting... -- 17:05:05.365 INFO [27751]: Version from config: 1.0 -- 17:05:05.365 DEBUG [27751]: Connecting to database... -- 17:05:05.365 DEBUG [27751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:05.365 SQL [27751]: pgsql_db_connect() -- 17:05:05.369 DEBUG [27751]: Database connection successful -- 17:05:05.369 INFO [27751]: _SERVER found -- 17:05:05.369 INFO [27751]: REMOTE_ADDR = 192.168.1.13 -- 17:05:05.369 INFO [27751]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:05.369 INFO [27751]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=67ntg3llu0jk52a881ui1vj2r7p512je; _gid=GA1.2.1791978288.1582668296; _gat_gtag_UA_54829827_2=1 -- 17:05:05.369 INFO [27751]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:05:05.369 INFO [27751]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:05:05.384 INFO [27751]: COREGRADE is stopping... -- 17:05:05.384 DEBUG [27751]: Closing database connection -- 17:05:05.384 SQL [27751]: pgsql_close() -- 17:05:05.511 INFO [21957]: COREGRADE is starting... -- 17:05:05.511 INFO [21957]: Version from config: 1.0 -- 17:05:05.511 DEBUG [21957]: Connecting to database... -- 17:05:05.511 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:05.512 SQL [21957]: pgsql_db_connect() -- 17:05:05.515 DEBUG [21957]: Database connection successful -- 17:05:05.515 INFO [21957]: _SERVER found -- 17:05:05.515 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 17:05:05.515 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:05.515 INFO [21957]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=67ntg3llu0jk52a881ui1vj2r7p512je; _gid=GA1.2.1791978288.1582668296; _gat_gtag_UA_54829827_2=1 -- 17:05:05.515 INFO [21957]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:05:05.515 INFO [21957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:05:05.527 INFO [21957]: COREGRADE is stopping... -- 17:05:05.527 DEBUG [21957]: Closing database connection -- 17:05:05.527 SQL [21957]: pgsql_close() -- 17:05:07.078 INFO [21957]: COREGRADE is starting... -- 17:05:07.078 INFO [21957]: Version from config: 1.0 -- 17:05:07.078 DEBUG [21957]: Connecting to database... -- 17:05:07.078 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:07.078 SQL [21957]: pgsql_db_connect() -- 17:05:07.082 DEBUG [21957]: Database connection successful -- 17:05:07.082 INFO [21957]: _SERVER found -- 17:05:07.082 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 17:05:07.082 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:07.082 INFO [21957]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=67ntg3llu0jk52a881ui1vj2r7p512je; _gid=GA1.2.1791978288.1582668296; _gat_gtag_UA_54829827_2=1 -- 17:05:07.082 INFO [21957]: QUERY_STRING = /member/page -- 17:05:07.082 INFO [21957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:05:07.125 INFO [21957]: COREGRADE is stopping... -- 17:05:07.125 DEBUG [21957]: Closing database connection -- 17:05:07.125 SQL [21957]: pgsql_close() -- 17:05:07.223 INFO [27751]: COREGRADE is starting... -- 17:05:07.223 INFO [27751]: Version from config: 1.0 -- 17:05:07.223 DEBUG [27751]: Connecting to database... -- 17:05:07.223 DEBUG [27751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:07.223 SQL [27751]: pgsql_db_connect() -- 17:05:07.227 DEBUG [27751]: Database connection successful -- 17:05:07.227 INFO [27751]: _SERVER found -- 17:05:07.227 INFO [27751]: REMOTE_ADDR = 192.168.1.13 -- 17:05:07.227 INFO [27751]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:07.227 INFO [27751]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=67ntg3llu0jk52a881ui1vj2r7p512je; _gid=GA1.2.1791978288.1582668296; _gat_gtag_UA_54829827_2=1 -- 17:05:07.227 INFO [27751]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:05:07.227 INFO [27751]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:05:07.240 INFO [27751]: COREGRADE is stopping... -- 17:05:07.240 DEBUG [27751]: Closing database connection -- 17:05:07.240 SQL [27751]: pgsql_close() -- 17:05:07.310 INFO [27751]: COREGRADE is starting... -- 17:05:07.310 INFO [27751]: Version from config: 1.0 -- 17:05:07.310 DEBUG [27751]: Connecting to database... -- 17:05:07.310 DEBUG [27751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:07.310 SQL [27751]: pgsql_db_connect() -- 17:05:07.314 DEBUG [27751]: Database connection successful -- 17:05:07.314 INFO [27751]: _SERVER found -- 17:05:07.314 INFO [27751]: REMOTE_ADDR = 192.168.1.13 -- 17:05:07.314 INFO [27751]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:07.314 INFO [27751]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=67ntg3llu0jk52a881ui1vj2r7p512je; _gid=GA1.2.1791978288.1582668296; _gat_gtag_UA_54829827_2=1 -- 17:05:07.314 INFO [27751]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:05:07.314 INFO [27751]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:05:07.326 INFO [27751]: COREGRADE is stopping... -- 17:05:07.326 DEBUG [27751]: Closing database connection -- 17:05:07.326 SQL [27751]: pgsql_close() -- 17:05:13.876 INFO [27752]: COREGRADE is starting... -- 17:05:13.877 INFO [27752]: Version from config: 1.0 -- 17:05:13.877 DEBUG [27752]: Connecting to database... -- 17:05:13.877 DEBUG [27752]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:13.877 SQL [27752]: pgsql_db_connect() -- 17:05:13.881 DEBUG [27752]: Database connection successful -- 17:05:13.881 INFO [27752]: _SERVER found -- 17:05:13.881 INFO [27752]: REMOTE_ADDR = 192.168.1.13 -- 17:05:13.881 INFO [27752]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:13.881 INFO [27752]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=67ntg3llu0jk52a881ui1vj2r7p512je; _gid=GA1.2.1791978288.1582668296; _gat_gtag_UA_54829827_2=1 -- 17:05:13.881 INFO [27752]: QUERY_STRING = /auth/logout -- 17:05:13.881 INFO [27752]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:05:13.920 INFO [27752]: COREGRADE is stopping... -- 17:05:13.920 DEBUG [27752]: Closing database connection -- 17:05:13.920 SQL [27752]: pgsql_close() -- 17:05:14.105 INFO [27752]: COREGRADE is starting... -- 17:05:14.105 INFO [27752]: Version from config: 1.0 -- 17:05:14.105 DEBUG [27752]: Connecting to database... -- 17:05:14.105 DEBUG [27752]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:14.105 SQL [27752]: pgsql_db_connect() -- 17:05:14.109 DEBUG [27752]: Database connection successful -- 17:05:14.109 INFO [27752]: _SERVER found -- 17:05:14.109 INFO [27752]: REMOTE_ADDR = 192.168.1.13 -- 17:05:14.109 INFO [27752]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:14.109 INFO [27752]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=67ntg3llu0jk52a881ui1vj2r7p512je; _gid=GA1.2.1791978288.1582668296; _gat_gtag_UA_54829827_2=1 -- 17:05:14.109 INFO [27752]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:05:14.109 INFO [27752]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:05:14.121 INFO [27752]: COREGRADE is stopping... -- 17:05:14.121 DEBUG [27752]: Closing database connection -- 17:05:14.121 SQL [27752]: pgsql_close() -- 17:05:14.137 INFO [27752]: COREGRADE is starting... -- 17:05:14.137 INFO [27752]: Version from config: 1.0 -- 17:05:14.137 DEBUG [27752]: Connecting to database... -- 17:05:14.137 DEBUG [27752]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:14.137 SQL [27752]: pgsql_db_connect() -- 17:05:14.141 DEBUG [27752]: Database connection successful -- 17:05:14.141 INFO [27752]: _SERVER found -- 17:05:14.141 INFO [27752]: REMOTE_ADDR = 192.168.1.13 -- 17:05:14.141 INFO [27752]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:14.141 INFO [27752]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=67ntg3llu0jk52a881ui1vj2r7p512je; _gid=GA1.2.1791978288.1582668296; _gat_gtag_UA_54829827_2=1 -- 17:05:14.141 INFO [27752]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:05:14.141 INFO [27752]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:05:14.152 INFO [27752]: COREGRADE is stopping... -- 17:05:14.152 DEBUG [27752]: Closing database connection -- 17:05:14.152 SQL [27752]: pgsql_close() -- 17:06:05.311 INFO [27753]: COREGRADE is starting... -- 17:06:05.312 INFO [27753]: Version from config: 1.0 -- 17:06:05.312 DEBUG [27753]: Connecting to database... -- 17:06:05.312 DEBUG [27753]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:05.312 SQL [27753]: pgsql_db_connect() -- 17:06:05.353 INFO [27753]: COREGRADE is starting... -- 17:06:05.353 INFO [27753]: Version from config: 1.0 -- 17:06:05.353 DEBUG [27753]: Connecting to database... -- 17:06:05.353 DEBUG [27753]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:05.353 SQL [27753]: pgsql_db_connect() -- 17:06:05.357 DEBUG [27753]: Database connection successful -- 17:06:05.357 INFO [27753]: _SERVER found -- 17:06:05.357 INFO [27753]: REMOTE_ADDR = 192.168.1.13 -- 17:06:05.357 INFO [27753]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:05.357 INFO [27753]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=67ntg3llu0jk52a881ui1vj2r7p512je; _gid=GA1.2.1791978288.1582668296 -- 17:06:05.357 INFO [27753]: QUERY_STRING = -- 17:06:05.357 INFO [27753]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:06:05.357 INFO [27753]: SystemStatus()09-09-********~************ -- 17:06:05.357 INFO [27753]: long coregrade_api_main(CVars in, CVars &out) -- 17:06:05.357 INFO [27753]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 17:06:05.357 INFO [27753]: account calls -- 17:06:05.357 INFO [27753]: account_calls() -- 17:06:05.357 INFO [27753]: LoginCoreGradeAccount() -- 17:06:05.357 FLOG_MAX [27753]: REQ_STRING(username) -- 17:06:05.357 FLOG_MAX [27753]: REQ_STRING(password) -- 17:06:05.357 FLOG_MAX [27753]: REQ_STRING(sessionid) -- 17:06:05.357 FLOG_MAX [27753]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:06:05.357 SQL [27753]: pgsql_query() -- 17:06:05.358 SQL [27753]: About to run query: -- 17:06:05.358 SQL [27753]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 17:06:05.361 SQL [27753]: Found rows: 1 -- 17:06:05.361 FLOG_MAX [27753]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 17:06:05.361 INFO [27753]: long SessionCheck(long uid, const char *sessionid, int create ) -- 17:06:05.361 SQL [27753]: pgsql_exec() -- 17:06:05.361 SQL [27753]: About to run query: -- 17:06:05.361 SQL [27753]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 17:06:05.362 SQL [27753]: PQcmdTuples: 0 -- 17:06:05.362 SQL [27753]: Affected rows: 0 -- 17:06:05.362 SQL [27753]: pgsql_exec() -- 17:06:05.362 SQL [27753]: About to run query: -- 17:06:05.362 SQL [27753]: DELETE FROM members_session WHERE member_id=5 -- 17:06:05.363 SQL [27753]: PQcmdTuples: 1 -- 17:06:05.363 SQL [27753]: Affected rows: 1 -- 17:06:05.363 SQL [27753]: pgsql_query() -- 17:06:05.363 SQL [27753]: About to run query: -- 17:06:05.363 SQL [27753]: SELECT * FROM members_session WHERE member_id=5 AND session<>'12CCAF253EDBD86B07708E984079DEF8' -- 17:06:05.363 SQL [27753]: Found rows: 0 -- 17:06:05.363 SQL [27753]: Found rows: 0 -- 17:06:05.363 FLOG_MAX [27753]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:06:05.363 SQL [27753]: pgsql_query() -- 17:06:05.363 SQL [27753]: About to run query: -- 17:06:05.363 SQL [27753]: SELECT * FROM members_session WHERE member_id=5 AND session='12CCAF253EDBD86B07708E984079DEF8' -- 17:06:05.364 SQL [27753]: Found rows: 0 -- 17:06:05.364 SQL [27753]: Found rows: 0 -- 17:06:05.364 FLOG_MAX [27753]: insert_db_record() -- 17:06:05.364 SQL [27753]: pgsql_exec() -- 17:06:05.364 SQL [27753]: About to run query: -- 17:06:05.364 SQL [27753]: INSERT INTO members_session (member_id,session) VALUES ('5','12CCAF253EDBD86B07708E984079DEF8') -- 17:06:05.365 SQL [27753]: PQcmdTuples: 1 -- 17:06:05.365 SQL [27753]: Affected rows: 1 -- 17:06:05.365 FLOG_MAX [27753]: SELECT currval('members_session_id_seq') -- 17:06:05.365 SQL [27753]: pgsql_query() -- 17:06:05.365 SQL [27753]: About to run query: -- 17:06:05.365 SQL [27753]: SELECT currval('members_session_id_seq') -- 17:06:05.365 SQL [27753]: Found rows: 1 -- 17:06:05.365 INFO [27753]: CreateDefaultPage() -- 17:06:05.365 FLOG_MAX [27753]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:06:05.365 SQL [27753]: pgsql_query() -- 17:06:05.365 SQL [27753]: About to run query: -- 17:06:05.365 SQL [27753]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 17:06:05.366 SQL [27753]: Found rows: 1 -- 17:06:05.366 FLOG_MAX [27753]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 17:06:05.366 SQL [27753]: pgsql_query() -- 17:06:05.366 SQL [27753]: About to run query: -- 17:06:05.366 SQL [27753]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 17:06:05.366 SQL [27753]: Found rows: 1 -- 17:06:05.366 INFO [27753]: /CreateDefaultPage() -- 17:06:05.366 INFO [27753]: /LoginCoreGradeAccount() -- 17:06:05.366 INFO [27753]: RET: added=2020-02-05 06:47:23.982154 -- 17:06:05.366 INFO [27753]: RET: email=ameye+11@chiefsoft.com -- 17:06:05.366 INFO [27753]: RET: firstname=Olu -- 17:06:05.366 INFO [27753]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 17:06:05.366 INFO [27753]: RET: id=5 -- 17:06:05.366 INFO [27753]: RET: last_login= -- 17:06:05.366 INFO [27753]: RET: lastname=Amey -- 17:06:05.366 INFO [27753]: RET: loc=192.168.1.13 -- 17:06:05.366 INFO [27753]: RET: member_id=5 -- 17:06:05.366 INFO [27753]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 17:06:05.366 INFO [27753]: RET: phone= -- 17:06:05.366 INFO [27753]: RET: pid= -- 17:06:05.366 INFO [27753]: RET: result=YES I GET TO BACK END -- 17:06:05.366 INFO [27753]: RET: sessionid=12CCAF253EDBD86B07708E984079DEF8 -- 17:06:05.366 INFO [27753]: RET: status=1 -- 17:06:05.366 INFO [27753]: RET: stauts=OK -- 17:06:05.366 INFO [27753]: RET: username=ameye+11@chiefsoft.com -- 17:06:05.366 INFO [27753]: RET: verified= -- 17:06:05.368 INFO [27753]: COREGRADE is stopping... -- 17:06:05.368 DEBUG [27753]: Closing database connection -- 17:06:05.368 SQL [27753]: pgsql_close() -- 17:06:05.316 DEBUG [27753]: Database connection successful -- 17:06:05.316 INFO [27753]: _SERVER found -- 17:06:05.316 INFO [27753]: REMOTE_ADDR = 192.168.1.13 -- 17:06:05.316 INFO [27753]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:05.316 INFO [27753]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=67ntg3llu0jk52a881ui1vj2r7p512je; _gid=GA1.2.1791978288.1582668296 -- 17:06:05.316 INFO [27753]: QUERY_STRING = /auth -- 17:06:05.316 INFO [27753]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:06:05.368 INFO [27753]: COREGRADE is stopping... -- 17:06:05.368 DEBUG [27753]: Closing database connection -- 17:06:05.368 SQL [27753]: pgsql_close() -- 17:06:05.594 INFO [27753]: COREGRADE is starting... -- 17:06:05.594 INFO [27753]: Version from config: 1.0 -- 17:06:05.594 DEBUG [27753]: Connecting to database... -- 17:06:05.594 DEBUG [27753]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:05.594 SQL [27753]: pgsql_db_connect() -- 17:06:05.599 DEBUG [27753]: Database connection successful -- 17:06:05.599 INFO [27753]: _SERVER found -- 17:06:05.599 INFO [27753]: REMOTE_ADDR = 192.168.1.13 -- 17:06:05.599 INFO [27753]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:05.599 INFO [27753]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=67ntg3llu0jk52a881ui1vj2r7p512je; _gid=GA1.2.1791978288.1582668296 -- 17:06:05.599 INFO [27753]: QUERY_STRING = /member/index -- 17:06:05.599 INFO [27753]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:06:05.642 INFO [27753]: COREGRADE is stopping... -- 17:06:05.642 DEBUG [27753]: Closing database connection -- 17:06:05.642 SQL [27753]: pgsql_close() -- 17:06:05.801 INFO [27753]: COREGRADE is starting... -- 17:06:05.802 INFO [27753]: Version from config: 1.0 -- 17:06:05.802 DEBUG [27753]: Connecting to database... -- 17:06:05.802 DEBUG [27753]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:05.802 SQL [27753]: pgsql_db_connect() -- 17:06:05.806 DEBUG [27753]: Database connection successful -- 17:06:05.806 INFO [27753]: _SERVER found -- 17:06:05.806 INFO [27753]: REMOTE_ADDR = 192.168.1.13 -- 17:06:05.806 INFO [27753]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:05.806 INFO [27753]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=67ntg3llu0jk52a881ui1vj2r7p512je; _gid=GA1.2.1791978288.1582668296 -- 17:06:05.806 INFO [27753]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:06:05.806 INFO [27753]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:06:05.817 INFO [27753]: COREGRADE is stopping... -- 17:06:05.817 DEBUG [27753]: Closing database connection -- 17:06:05.817 SQL [27753]: pgsql_close() -- 17:06:05.825 INFO [27753]: COREGRADE is starting... -- 17:06:05.825 INFO [27753]: Version from config: 1.0 -- 17:06:05.825 DEBUG [27753]: Connecting to database... -- 17:06:05.825 DEBUG [27753]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:05.825 SQL [27753]: pgsql_db_connect() -- 17:06:05.829 DEBUG [27753]: Database connection successful -- 17:06:05.829 INFO [27753]: _SERVER found -- 17:06:05.829 INFO [27753]: REMOTE_ADDR = 192.168.1.13 -- 17:06:05.829 INFO [27753]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:05.829 INFO [27753]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=67ntg3llu0jk52a881ui1vj2r7p512je; _gid=GA1.2.1791978288.1582668296 -- 17:06:05.829 INFO [27753]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:06:05.829 INFO [27753]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:06:05.840 INFO [27753]: COREGRADE is stopping... -- 17:06:05.840 DEBUG [27753]: Closing database connection -- 17:06:05.840 SQL [27753]: pgsql_close() -- 17:06:11.137 INFO [21959]: COREGRADE is starting... -- 17:06:11.137 INFO [21959]: Version from config: 1.0 -- 17:06:11.137 DEBUG [21959]: Connecting to database... -- 17:06:11.137 DEBUG [21959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:11.137 SQL [21959]: pgsql_db_connect() -- 17:06:11.141 DEBUG [21959]: Database connection successful -- 17:06:11.141 INFO [21959]: _SERVER found -- 17:06:11.141 INFO [21959]: REMOTE_ADDR = 192.168.1.13 -- 17:06:11.141 INFO [21959]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:11.141 INFO [21959]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=67ntg3llu0jk52a881ui1vj2r7p512je; _gid=GA1.2.1791978288.1582668296 -- 17:06:11.141 INFO [21959]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 17:06:11.141 INFO [21959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:06:11.154 INFO [21959]: COREGRADE is stopping... -- 17:06:11.154 DEBUG [21959]: Closing database connection -- 17:06:11.154 SQL [21959]: pgsql_close() -- 17:06:11.163 INFO [21959]: COREGRADE is starting... -- 17:06:11.163 INFO [21959]: Version from config: 1.0 -- 17:06:11.163 DEBUG [21959]: Connecting to database... -- 17:06:11.163 DEBUG [21959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:11.163 SQL [21959]: pgsql_db_connect() -- 17:06:11.167 DEBUG [21959]: Database connection successful -- 17:06:11.167 INFO [21959]: _SERVER found -- 17:06:11.167 INFO [21959]: REMOTE_ADDR = 192.168.1.13 -- 17:06:11.167 INFO [21959]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:11.167 INFO [21959]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=67ntg3llu0jk52a881ui1vj2r7p512je; _gid=GA1.2.1791978288.1582668296 -- 17:06:11.167 INFO [21959]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 17:06:11.167 INFO [21959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:06:11.178 INFO [21959]: COREGRADE is stopping... -- 17:06:11.178 DEBUG [21959]: Closing database connection -- 17:06:11.178 SQL [21959]: pgsql_close() -- 17:35:28.655 INFO [21956]: COREGRADE is starting... -- 17:35:28.655 INFO [21956]: Version from config: 1.0 -- 17:35:28.655 DEBUG [21956]: Connecting to database... -- 17:35:28.655 DEBUG [21956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:35:28.655 SQL [21956]: pgsql_db_connect() -- 17:35:28.660 DEBUG [21956]: Database connection successful -- 17:35:28.660 INFO [21956]: _SERVER found -- 17:35:28.660 INFO [21956]: REMOTE_ADDR = 192.168.1.13 -- 17:35:28.660 INFO [21956]: SERVER_NAME = oameye.works.coregrade.com -- 17:35:28.660 INFO [21956]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=67ntg3llu0jk52a881ui1vj2r7p512je; _gid=GA1.2.1791978288.1582668296 -- 17:35:28.660 INFO [21956]: QUERY_STRING = /member/page -- 17:35:28.660 INFO [21956]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:35:28.709 INFO [21956]: COREGRADE is stopping... -- 17:35:28.710 DEBUG [21956]: Closing database connection -- 17:35:28.710 SQL [21956]: pgsql_close() -- 17:35:28.902 INFO [21964]: COREGRADE is starting... -- 17:35:28.902 INFO [21964]: Version from config: 1.0 -- 17:35:28.902 DEBUG [21964]: Connecting to database... -- 17:35:28.902 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:35:28.902 SQL [21964]: pgsql_db_connect() -- 17:35:28.907 DEBUG [21964]: Database connection successful -- 17:35:28.907 INFO [21964]: _SERVER found -- 17:35:28.907 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 17:35:28.907 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 17:35:28.907 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=mjhc4tdffgo3lamnn4uod6dtig6lbutp -- 17:35:28.907 INFO [21964]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:35:28.907 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:35:28.919 INFO [21964]: COREGRADE is stopping... -- 17:35:28.919 DEBUG [21964]: Closing database connection -- 17:35:28.919 SQL [21964]: pgsql_close() -- 17:35:29.290 INFO [21964]: COREGRADE is starting... -- 17:35:29.290 INFO [21964]: Version from config: 1.0 -- 17:35:29.290 DEBUG [21964]: Connecting to database... -- 17:35:29.290 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:35:29.290 SQL [21964]: pgsql_db_connect() -- 17:35:29.291 INFO [21956]: COREGRADE is starting... -- 17:35:29.291 INFO [21956]: Version from config: 1.0 -- 17:35:29.291 DEBUG [21956]: Connecting to database... -- 17:35:29.291 DEBUG [21956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:35:29.291 SQL [21956]: pgsql_db_connect() -- 17:35:29.294 DEBUG [21964]: Database connection successful -- 17:35:29.294 INFO [21964]: _SERVER found -- 17:35:29.294 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 17:35:29.294 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 17:35:29.294 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=mjhc4tdffgo3lamnn4uod6dtig6lbutp -- 17:35:29.294 INFO [21964]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 17:35:29.294 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:35:29.306 INFO [21964]: COREGRADE is stopping... -- 17:35:29.306 DEBUG [21964]: Closing database connection -- 17:35:29.306 SQL [21964]: pgsql_close() -- 17:35:29.295 DEBUG [21956]: Database connection successful -- 17:35:29.295 INFO [21956]: _SERVER found -- 17:35:29.295 INFO [21956]: REMOTE_ADDR = 192.168.1.13 -- 17:35:29.295 INFO [21956]: SERVER_NAME = oameye.works.coregrade.com -- 17:35:29.295 INFO [21956]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=mjhc4tdffgo3lamnn4uod6dtig6lbutp -- 17:35:29.295 INFO [21956]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 17:35:29.295 INFO [21956]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:35:29.306 INFO [21956]: COREGRADE is stopping... -- 17:35:29.306 DEBUG [21956]: Closing database connection -- 17:35:29.306 SQL [21956]: pgsql_close() -- 17:35:29.361 INFO [21956]: COREGRADE is starting... -- 17:35:29.362 INFO [21956]: Version from config: 1.0 -- 17:35:29.362 DEBUG [21956]: Connecting to database... -- 17:35:29.362 DEBUG [21956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:35:29.362 SQL [21956]: pgsql_db_connect() -- 17:35:29.365 DEBUG [21956]: Database connection successful -- 17:35:29.365 INFO [21956]: _SERVER found -- 17:35:29.365 INFO [21956]: REMOTE_ADDR = 192.168.1.13 -- 17:35:29.365 INFO [21956]: SERVER_NAME = oameye.works.coregrade.com -- 17:35:29.365 INFO [21956]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=mjhc4tdffgo3lamnn4uod6dtig6lbutp -- 17:35:29.365 INFO [21956]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:35:29.365 INFO [21956]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:35:29.377 INFO [21956]: COREGRADE is stopping... -- 17:35:29.377 DEBUG [21956]: Closing database connection -- 17:35:29.377 SQL [21956]: pgsql_close() -- 17:37:40.707 INFO [21963]: COREGRADE is starting... -- 17:37:40.707 INFO [21963]: Version from config: 1.0 -- 17:37:40.707 DEBUG [21963]: Connecting to database... -- 17:37:40.707 DEBUG [21963]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:40.707 SQL [21963]: pgsql_db_connect() -- 17:37:40.711 DEBUG [21963]: Database connection successful -- 17:37:40.711 INFO [21963]: _SERVER found -- 17:37:40.711 INFO [21963]: REMOTE_ADDR = 192.168.1.13 -- 17:37:40.711 INFO [21963]: SERVER_NAME = oameye.works.coregrade.com -- 17:37:40.711 INFO [21963]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=mjhc4tdffgo3lamnn4uod6dtig6lbutp -- 17:37:40.711 INFO [21963]: QUERY_STRING = /member/page -- 17:37:40.711 INFO [21963]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:37:40.757 INFO [21963]: COREGRADE is stopping... -- 17:37:40.757 DEBUG [21963]: Closing database connection -- 17:37:40.757 SQL [21963]: pgsql_close() -- 17:37:40.940 INFO [21958]: COREGRADE is starting... -- 17:37:40.940 INFO [21958]: Version from config: 1.0 -- 17:37:40.940 DEBUG [21958]: Connecting to database... -- 17:37:40.940 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:40.940 SQL [21958]: pgsql_db_connect() -- 17:37:40.944 DEBUG [21958]: Database connection successful -- 17:37:40.944 INFO [21958]: _SERVER found -- 17:37:40.944 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 17:37:40.944 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 17:37:40.944 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=mjhc4tdffgo3lamnn4uod6dtig6lbutp -- 17:37:40.944 INFO [21958]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:37:40.944 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:37:40.957 INFO [21958]: COREGRADE is stopping... -- 17:37:40.957 DEBUG [21958]: Closing database connection -- 17:37:40.957 SQL [21958]: pgsql_close() -- 17:37:41.223 INFO [21958]: COREGRADE is starting... -- 17:37:41.224 INFO [21958]: Version from config: 1.0 -- 17:37:41.224 DEBUG [21958]: Connecting to database... -- 17:37:41.224 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:41.224 SQL [21958]: pgsql_db_connect() -- 17:37:41.235 INFO [21957]: COREGRADE is starting... -- 17:37:41.235 INFO [21957]: Version from config: 1.0 -- 17:37:41.236 DEBUG [21957]: Connecting to database... -- 17:37:41.236 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:41.236 SQL [21957]: pgsql_db_connect() -- 17:37:41.228 DEBUG [21958]: Database connection successful -- 17:37:41.228 INFO [21958]: _SERVER found -- 17:37:41.228 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 17:37:41.228 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 17:37:41.228 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=mjhc4tdffgo3lamnn4uod6dtig6lbutp -- 17:37:41.228 INFO [21958]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 17:37:41.228 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:37:41.239 INFO [21958]: COREGRADE is stopping... -- 17:37:41.239 DEBUG [21958]: Closing database connection -- 17:37:41.239 SQL [21958]: pgsql_close() -- 17:37:41.240 DEBUG [21957]: Database connection successful -- 17:37:41.240 INFO [21957]: _SERVER found -- 17:37:41.240 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 17:37:41.240 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 17:37:41.240 INFO [21957]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=mjhc4tdffgo3lamnn4uod6dtig6lbutp -- 17:37:41.240 INFO [21957]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 17:37:41.240 INFO [21957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:37:41.252 INFO [21957]: COREGRADE is stopping... -- 17:37:41.252 DEBUG [21957]: Closing database connection -- 17:37:41.252 SQL [21957]: pgsql_close() -- 17:37:41.314 INFO [21958]: COREGRADE is starting... -- 17:37:41.314 INFO [21958]: Version from config: 1.0 -- 17:37:41.314 DEBUG [21958]: Connecting to database... -- 17:37:41.314 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:41.314 SQL [21958]: pgsql_db_connect() -- 17:37:41.318 DEBUG [21958]: Database connection successful -- 17:37:41.318 INFO [21958]: _SERVER found -- 17:37:41.318 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 17:37:41.318 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 17:37:41.318 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=mjhc4tdffgo3lamnn4uod6dtig6lbutp -- 17:37:41.318 INFO [21958]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:37:41.318 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:37:41.330 INFO [21958]: COREGRADE is stopping... -- 17:37:41.330 DEBUG [21958]: Closing database connection -- 17:37:41.330 SQL [21958]: pgsql_close() -- 17:37:49.031 INFO [27751]: COREGRADE is starting... -- 17:37:49.031 INFO [27751]: Version from config: 1.0 -- 17:37:49.031 DEBUG [27751]: Connecting to database... -- 17:37:49.031 DEBUG [27751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:49.031 SQL [27751]: pgsql_db_connect() -- 17:37:49.035 DEBUG [27751]: Database connection successful -- 17:37:49.035 INFO [27751]: _SERVER found -- 17:37:49.035 INFO [27751]: REMOTE_ADDR = 192.168.1.13 -- 17:37:49.035 INFO [27751]: SERVER_NAME = oameye.works.coregrade.com -- 17:37:49.035 INFO [27751]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=mjhc4tdffgo3lamnn4uod6dtig6lbutp -- 17:37:49.035 INFO [27751]: QUERY_STRING = /member -- 17:37:49.035 INFO [27751]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:37:49.081 INFO [27751]: COREGRADE is stopping... -- 17:37:49.081 DEBUG [27751]: Closing database connection -- 17:37:49.081 SQL [27751]: pgsql_close() -- 17:37:49.323 INFO [27751]: COREGRADE is starting... -- 17:37:49.323 INFO [27751]: Version from config: 1.0 -- 17:37:49.323 DEBUG [27751]: Connecting to database... -- 17:37:49.323 DEBUG [27751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:49.323 SQL [27751]: pgsql_db_connect() -- 17:37:49.330 INFO [27752]: COREGRADE is starting... -- 17:37:49.331 INFO [27752]: Version from config: 1.0 -- 17:37:49.331 DEBUG [27752]: Connecting to database... -- 17:37:49.331 DEBUG [27752]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:49.331 SQL [27752]: pgsql_db_connect() -- 17:37:49.327 DEBUG [27751]: Database connection successful -- 17:37:49.327 INFO [27751]: _SERVER found -- 17:37:49.327 INFO [27751]: REMOTE_ADDR = 192.168.1.13 -- 17:37:49.327 INFO [27751]: SERVER_NAME = oameye.works.coregrade.com -- 17:37:49.327 INFO [27751]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=mjhc4tdffgo3lamnn4uod6dtig6lbutp -- 17:37:49.327 INFO [27751]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 17:37:49.327 INFO [27751]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:37:49.338 INFO [27751]: COREGRADE is stopping... -- 17:37:49.338 DEBUG [27751]: Closing database connection -- 17:37:49.338 SQL [27751]: pgsql_close() -- 17:37:49.334 DEBUG [27752]: Database connection successful -- 17:37:49.334 INFO [27752]: _SERVER found -- 17:37:49.334 INFO [27752]: REMOTE_ADDR = 192.168.1.13 -- 17:37:49.334 INFO [27752]: SERVER_NAME = oameye.works.coregrade.com -- 17:37:49.334 INFO [27752]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=mjhc4tdffgo3lamnn4uod6dtig6lbutp -- 17:37:49.334 INFO [27752]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 17:37:49.334 INFO [27752]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:37:49.346 INFO [27752]: COREGRADE is stopping... -- 17:37:49.346 DEBUG [27752]: Closing database connection -- 17:37:49.346 SQL [27752]: pgsql_close() -- 17:37:49.357 INFO [27752]: COREGRADE is starting... -- 17:37:49.358 INFO [27752]: Version from config: 1.0 -- 17:37:49.358 DEBUG [27752]: Connecting to database... -- 17:37:49.358 DEBUG [27752]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:49.358 SQL [27752]: pgsql_db_connect() -- 17:37:49.362 DEBUG [27752]: Database connection successful -- 17:37:49.362 INFO [27752]: _SERVER found -- 17:37:49.362 INFO [27752]: REMOTE_ADDR = 192.168.1.13 -- 17:37:49.362 INFO [27752]: SERVER_NAME = oameye.works.coregrade.com -- 17:37:49.362 INFO [27752]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=mjhc4tdffgo3lamnn4uod6dtig6lbutp -- 17:37:49.362 INFO [27752]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:37:49.362 INFO [27752]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:37:49.373 INFO [27752]: COREGRADE is stopping... -- 17:37:49.373 DEBUG [27752]: Closing database connection -- 17:37:49.373 SQL [27752]: pgsql_close() -- 17:37:49.495 INFO [27752]: COREGRADE is starting... -- 17:37:49.495 INFO [27752]: Version from config: 1.0 -- 17:37:49.495 DEBUG [27752]: Connecting to database... -- 17:37:49.495 DEBUG [27752]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:49.495 SQL [27752]: pgsql_db_connect() -- 17:37:49.499 DEBUG [27752]: Database connection successful -- 17:37:49.499 INFO [27752]: _SERVER found -- 17:37:49.499 INFO [27752]: REMOTE_ADDR = 192.168.1.13 -- 17:37:49.499 INFO [27752]: SERVER_NAME = oameye.works.coregrade.com -- 17:37:49.499 INFO [27752]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=mjhc4tdffgo3lamnn4uod6dtig6lbutp -- 17:37:49.499 INFO [27752]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:37:49.499 INFO [27752]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:37:49.510 INFO [27752]: COREGRADE is stopping... -- 17:37:49.510 DEBUG [27752]: Closing database connection -- 17:37:49.510 SQL [27752]: pgsql_close() -- 17:37:50.520 INFO [27752]: COREGRADE is starting... -- 17:37:50.520 INFO [27752]: Version from config: 1.0 -- 17:37:50.520 DEBUG [27752]: Connecting to database... -- 17:37:50.520 DEBUG [27752]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:50.520 SQL [27752]: pgsql_db_connect() -- 17:37:50.524 DEBUG [27752]: Database connection successful -- 17:37:50.524 INFO [27752]: _SERVER found -- 17:37:50.524 INFO [27752]: REMOTE_ADDR = 192.168.1.13 -- 17:37:50.524 INFO [27752]: SERVER_NAME = oameye.works.coregrade.com -- 17:37:50.524 INFO [27752]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=mjhc4tdffgo3lamnn4uod6dtig6lbutp -- 17:37:50.524 INFO [27752]: QUERY_STRING = /member/page -- 17:37:50.524 INFO [27752]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:37:50.567 INFO [27752]: COREGRADE is stopping... -- 17:37:50.567 DEBUG [27752]: Closing database connection -- 17:37:50.567 SQL [27752]: pgsql_close() -- 17:37:50.728 INFO [27753]: COREGRADE is starting... -- 17:37:50.728 INFO [27753]: Version from config: 1.0 -- 17:37:50.728 DEBUG [27753]: Connecting to database... -- 17:37:50.728 DEBUG [27753]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:50.728 SQL [27753]: pgsql_db_connect() -- 17:37:50.732 DEBUG [27753]: Database connection successful -- 17:37:50.732 INFO [27753]: _SERVER found -- 17:37:50.732 INFO [27753]: REMOTE_ADDR = 192.168.1.13 -- 17:37:50.732 INFO [27753]: SERVER_NAME = oameye.works.coregrade.com -- 17:37:50.732 INFO [27753]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=mjhc4tdffgo3lamnn4uod6dtig6lbutp -- 17:37:50.732 INFO [27753]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:37:50.732 INFO [27753]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:37:50.744 INFO [27753]: COREGRADE is stopping... -- 17:37:50.744 DEBUG [27753]: Closing database connection -- 17:37:50.744 SQL [27753]: pgsql_close() -- 17:37:50.951 INFO [27753]: COREGRADE is starting... -- 17:37:50.951 INFO [27751]: COREGRADE is starting... -- 17:37:50.951 INFO [27753]: Version from config: 1.0 -- 17:37:50.951 DEBUG [27753]: Connecting to database... -- 17:37:50.951 DEBUG [27753]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:50.951 SQL [27753]: pgsql_db_connect() -- 17:37:50.951 INFO [27751]: Version from config: 1.0 -- 17:37:50.951 DEBUG [27751]: Connecting to database... -- 17:37:50.951 DEBUG [27751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:50.951 SQL [27751]: pgsql_db_connect() -- 17:37:50.955 DEBUG [27753]: Database connection successful -- 17:37:50.955 INFO [27753]: _SERVER found -- 17:37:50.955 INFO [27753]: REMOTE_ADDR = 192.168.1.13 -- 17:37:50.955 INFO [27753]: SERVER_NAME = oameye.works.coregrade.com -- 17:37:50.955 INFO [27753]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=mjhc4tdffgo3lamnn4uod6dtig6lbutp -- 17:37:50.955 INFO [27753]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 17:37:50.955 INFO [27753]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:37:50.966 INFO [27753]: COREGRADE is stopping... -- 17:37:50.955 DEBUG [27751]: Database connection successful -- 17:37:50.955 INFO [27751]: _SERVER found -- 17:37:50.955 INFO [27751]: REMOTE_ADDR = 192.168.1.13 -- 17:37:50.955 INFO [27751]: SERVER_NAME = oameye.works.coregrade.com -- 17:37:50.955 INFO [27751]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=mjhc4tdffgo3lamnn4uod6dtig6lbutp -- 17:37:50.955 INFO [27751]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 17:37:50.955 INFO [27751]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:37:50.966 INFO [27751]: COREGRADE is stopping... -- 17:37:50.966 DEBUG [27753]: Closing database connection -- 17:37:50.966 DEBUG [27751]: Closing database connection -- 17:37:50.966 SQL [27753]: pgsql_close() -- 17:37:50.966 SQL [27751]: pgsql_close() -- 17:37:51.083 INFO [27751]: COREGRADE is starting... -- 17:37:51.083 INFO [27751]: Version from config: 1.0 -- 17:37:51.083 DEBUG [27751]: Connecting to database... -- 17:37:51.083 DEBUG [27751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:51.083 SQL [27751]: pgsql_db_connect() -- 17:37:51.087 DEBUG [27751]: Database connection successful -- 17:37:51.087 INFO [27751]: _SERVER found -- 17:37:51.087 INFO [27751]: REMOTE_ADDR = 192.168.1.13 -- 17:37:51.087 INFO [27751]: SERVER_NAME = oameye.works.coregrade.com -- 17:37:51.087 INFO [27751]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=mjhc4tdffgo3lamnn4uod6dtig6lbutp -- 17:37:51.087 INFO [27751]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:37:51.087 INFO [27751]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:37:51.099 INFO [27751]: COREGRADE is stopping... -- 17:37:51.099 DEBUG [27751]: Closing database connection -- 17:37:51.099 SQL [27751]: pgsql_close() -- 17:38:32.061 INFO [21964]: COREGRADE is starting... -- 17:38:32.062 INFO [21964]: Version from config: 1.0 -- 17:38:32.062 DEBUG [21964]: Connecting to database... -- 17:38:32.062 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:32.062 SQL [21964]: pgsql_db_connect() -- 17:38:32.066 DEBUG [21964]: Database connection successful -- 17:38:32.066 INFO [21964]: _SERVER found -- 17:38:32.066 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 17:38:32.066 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 17:38:32.066 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=mjhc4tdffgo3lamnn4uod6dtig6lbutp -- 17:38:32.066 INFO [21964]: QUERY_STRING = /member/page -- 17:38:32.066 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:38:32.109 INFO [21964]: COREGRADE is stopping... -- 17:38:32.109 DEBUG [21964]: Closing database connection -- 17:38:32.109 SQL [21964]: pgsql_close() -- 17:38:32.404 INFO [21956]: COREGRADE is starting... -- 17:38:32.405 INFO [21956]: Version from config: 1.0 -- 17:38:32.405 DEBUG [21956]: Connecting to database... -- 17:38:32.405 DEBUG [21956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:32.405 SQL [21956]: pgsql_db_connect() -- 17:38:32.410 DEBUG [21956]: Database connection successful -- 17:38:32.410 INFO [21956]: _SERVER found -- 17:38:32.410 INFO [21956]: REMOTE_ADDR = 192.168.1.13 -- 17:38:32.410 INFO [21956]: SERVER_NAME = oameye.works.coregrade.com -- 17:38:32.410 INFO [21956]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=mjhc4tdffgo3lamnn4uod6dtig6lbutp -- 17:38:32.410 INFO [21956]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:38:32.410 INFO [21956]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:38:32.421 INFO [21956]: COREGRADE is stopping... -- 17:38:32.421 DEBUG [21956]: Closing database connection -- 17:38:32.421 SQL [21956]: pgsql_close() -- 17:38:32.728 INFO [21956]: COREGRADE is starting... -- 17:38:32.729 INFO [21956]: Version from config: 1.0 -- 17:38:32.729 DEBUG [21956]: Connecting to database... -- 17:38:32.729 DEBUG [21956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:32.729 SQL [21956]: pgsql_db_connect() -- 17:38:32.733 DEBUG [21956]: Database connection successful -- 17:38:32.733 INFO [21956]: _SERVER found -- 17:38:32.733 INFO [21956]: REMOTE_ADDR = 192.168.1.13 -- 17:38:32.733 INFO [21956]: SERVER_NAME = oameye.works.coregrade.com -- 17:38:32.733 INFO [21956]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=mjhc4tdffgo3lamnn4uod6dtig6lbutp -- 17:38:32.733 INFO [21956]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 17:38:32.733 INFO [21956]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:38:32.744 INFO [21956]: COREGRADE is stopping... -- 17:38:32.744 DEBUG [21956]: Closing database connection -- 17:38:32.744 SQL [21956]: pgsql_close() -- 17:38:32.818 INFO [21956]: COREGRADE is starting... -- 17:38:32.819 INFO [21956]: Version from config: 1.0 -- 17:38:32.819 DEBUG [21956]: Connecting to database... -- 17:38:32.819 DEBUG [21956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:32.819 SQL [21956]: pgsql_db_connect() -- 17:38:32.823 DEBUG [21956]: Database connection successful -- 17:38:32.823 INFO [21956]: _SERVER found -- 17:38:32.823 INFO [21956]: REMOTE_ADDR = 192.168.1.13 -- 17:38:32.823 INFO [21956]: SERVER_NAME = oameye.works.coregrade.com -- 17:38:32.823 INFO [21956]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=mjhc4tdffgo3lamnn4uod6dtig6lbutp -- 17:38:32.823 INFO [21956]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 17:38:32.823 INFO [21956]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:38:32.834 INFO [21956]: COREGRADE is stopping... -- 17:38:32.834 DEBUG [21956]: Closing database connection -- 17:38:32.834 SQL [21956]: pgsql_close() -- 17:38:32.858 INFO [21956]: COREGRADE is starting... -- 17:38:32.859 INFO [21956]: Version from config: 1.0 -- 17:38:32.859 DEBUG [21956]: Connecting to database... -- 17:38:32.859 DEBUG [21956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:32.859 SQL [21956]: pgsql_db_connect() -- 17:38:32.862 DEBUG [21956]: Database connection successful -- 17:38:32.862 INFO [21956]: _SERVER found -- 17:38:32.862 INFO [21956]: REMOTE_ADDR = 192.168.1.13 -- 17:38:32.862 INFO [21956]: SERVER_NAME = oameye.works.coregrade.com -- 17:38:32.862 INFO [21956]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=mjhc4tdffgo3lamnn4uod6dtig6lbutp -- 17:38:32.862 INFO [21956]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:38:32.862 INFO [21956]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:38:32.873 INFO [21956]: COREGRADE is stopping... -- 17:38:32.874 DEBUG [21956]: Closing database connection -- 17:38:32.874 SQL [21956]: pgsql_close() -- 17:39:24.633 INFO [21963]: COREGRADE is starting... -- 17:39:24.634 INFO [21963]: Version from config: 1.0 -- 17:39:24.634 DEBUG [21963]: Connecting to database... -- 17:39:24.634 DEBUG [21963]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:39:24.634 SQL [21963]: pgsql_db_connect() -- 17:39:24.638 DEBUG [21963]: Database connection successful -- 17:39:24.638 INFO [21963]: _SERVER found -- 17:39:24.638 INFO [21963]: REMOTE_ADDR = 192.168.1.13 -- 17:39:24.638 INFO [21963]: SERVER_NAME = oameye.works.coregrade.com -- 17:39:24.638 INFO [21963]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=mjhc4tdffgo3lamnn4uod6dtig6lbutp -- 17:39:24.638 INFO [21963]: QUERY_STRING = /member/page -- 17:39:24.638 INFO [21963]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:39:24.683 INFO [21963]: COREGRADE is stopping... -- 17:39:24.683 DEBUG [21963]: Closing database connection -- 17:39:24.683 SQL [21963]: pgsql_close() -- 17:39:24.814 INFO [21958]: COREGRADE is starting... -- 17:39:24.814 INFO [21958]: Version from config: 1.0 -- 17:39:24.814 DEBUG [21958]: Connecting to database... -- 17:39:24.814 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:39:24.814 SQL [21958]: pgsql_db_connect() -- 17:39:24.818 DEBUG [21958]: Database connection successful -- 17:39:24.818 INFO [21958]: _SERVER found -- 17:39:24.818 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 17:39:24.818 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 17:39:24.818 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=mjhc4tdffgo3lamnn4uod6dtig6lbutp -- 17:39:24.818 INFO [21958]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:39:24.818 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:39:24.830 INFO [21958]: COREGRADE is stopping... -- 17:39:24.830 DEBUG [21958]: Closing database connection -- 17:39:24.830 SQL [21958]: pgsql_close() -- 17:39:25.019 INFO [21958]: COREGRADE is starting... -- 17:39:25.019 INFO [21958]: Version from config: 1.0 -- 17:39:25.019 DEBUG [21958]: Connecting to database... -- 17:39:25.019 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:39:25.019 SQL [21958]: pgsql_db_connect() -- 17:39:25.023 DEBUG [21958]: Database connection successful -- 17:39:25.023 INFO [21958]: _SERVER found -- 17:39:25.023 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 17:39:25.023 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 17:39:25.023 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=mjhc4tdffgo3lamnn4uod6dtig6lbutp -- 17:39:25.023 INFO [21958]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:39:25.023 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:39:25.035 INFO [21958]: COREGRADE is stopping... -- 17:39:25.035 DEBUG [21958]: Closing database connection -- 17:39:25.035 SQL [21958]: pgsql_close() -- 20:19:25.899 INFO [27752]: COREGRADE is starting... -- 20:19:25.900 INFO [27752]: Version from config: 1.0 -- 20:19:25.900 DEBUG [27752]: Connecting to database... -- 20:19:25.900 DEBUG [27752]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:19:25.900 SQL [27752]: pgsql_db_connect() -- 20:19:25.905 DEBUG [27752]: Database connection successful -- 20:19:25.905 INFO [27752]: _SERVER found -- 20:19:25.905 INFO [27752]: REMOTE_ADDR = 192.168.1.13 -- 20:19:25.905 INFO [27752]: SERVER_NAME = oameye.works.coregrade.com -- 20:19:25.905 INFO [27752]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296 -- 20:19:25.905 INFO [27752]: QUERY_STRING = /auth -- 20:19:25.905 INFO [27752]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:19:25.940 INFO [27752]: COREGRADE is stopping... -- 20:19:25.940 DEBUG [27752]: Closing database connection -- 20:19:25.940 SQL [27752]: pgsql_close() -- 20:19:26.075 INFO [27752]: COREGRADE is starting... -- 20:19:26.076 INFO [27752]: Version from config: 1.0 -- 20:19:26.076 DEBUG [27752]: Connecting to database... -- 20:19:26.076 DEBUG [27752]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:19:26.076 SQL [27752]: pgsql_db_connect() -- 20:19:26.080 DEBUG [27752]: Database connection successful -- 20:19:26.080 INFO [27752]: _SERVER found -- 20:19:26.080 INFO [27752]: REMOTE_ADDR = 192.168.1.13 -- 20:19:26.080 INFO [27752]: SERVER_NAME = oameye.works.coregrade.com -- 20:19:26.080 INFO [27752]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=j3ee3p5nk70c5s3mjfs3bi62sne123qn -- 20:19:26.080 INFO [27752]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 20:19:26.080 INFO [27752]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:19:26.091 INFO [27752]: COREGRADE is stopping... -- 20:19:26.091 DEBUG [27752]: Closing database connection -- 20:19:26.091 SQL [27752]: pgsql_close() -- 20:19:26.778 INFO [27752]: COREGRADE is starting... -- 20:19:26.779 INFO [27752]: Version from config: 1.0 -- 20:19:26.779 DEBUG [27752]: Connecting to database... -- 20:19:26.779 DEBUG [27752]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:19:26.779 SQL [27752]: pgsql_db_connect() -- 20:19:26.783 DEBUG [27752]: Database connection successful -- 20:19:26.783 INFO [27752]: _SERVER found -- 20:19:26.783 INFO [27752]: REMOTE_ADDR = 192.168.1.13 -- 20:19:26.783 INFO [27752]: SERVER_NAME = oameye.works.coregrade.com -- 20:19:26.783 INFO [27752]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=j3ee3p5nk70c5s3mjfs3bi62sne123qn -- 20:19:26.783 INFO [27752]: QUERY_STRING = /app-assets/data/locales/en.json -- 20:19:26.783 INFO [27752]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:19:26.794 INFO [27752]: COREGRADE is stopping... -- 20:19:26.794 DEBUG [27752]: Closing database connection -- 20:19:26.794 SQL [27752]: pgsql_close() -- 21:06:15.656 INFO [27751]: COREGRADE is starting... -- 21:06:15.657 INFO [27751]: Version from config: 1.0 -- 21:06:15.657 DEBUG [27751]: Connecting to database... -- 21:06:15.657 DEBUG [27751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:06:15.657 SQL [27751]: pgsql_db_connect() -- 21:06:15.661 DEBUG [27751]: Database connection successful -- 21:06:15.661 INFO [27751]: _SERVER found -- 21:06:15.661 INFO [27751]: REMOTE_ADDR = 192.168.1.13 -- 21:06:15.661 INFO [27751]: SERVER_NAME = oameye.works.coregrade.com -- 21:06:15.661 INFO [27751]: QUERY_STRING = /TP/public/index.php -- 21:06:15.661 INFO [27751]: HTTP_X_FORWARDED_FOR = 120.132.20.169 -- 21:06:15.674 INFO [27751]: COREGRADE is stopping... -- 21:06:15.675 DEBUG [27751]: Closing database connection -- 21:06:15.675 SQL [27751]: pgsql_close() -- 21:06:17.304 INFO [27753]: COREGRADE is starting... -- 21:06:17.304 INFO [27753]: Version from config: 1.0 -- 21:06:17.304 DEBUG [27753]: Connecting to database... -- 21:06:17.304 DEBUG [27753]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:06:17.304 SQL [27753]: pgsql_db_connect() -- 21:06:17.308 DEBUG [27753]: Database connection successful -- 21:06:17.308 INFO [27753]: _SERVER found -- 21:06:17.308 INFO [27753]: REMOTE_ADDR = 192.168.1.13 -- 21:06:17.308 INFO [27753]: SERVER_NAME = oameye.works.coregrade.com -- 21:06:17.308 INFO [27753]: QUERY_STRING = /TP/index.php -- 21:06:17.308 INFO [27753]: HTTP_X_FORWARDED_FOR = 120.132.20.169 -- 21:06:17.320 INFO [27753]: COREGRADE is stopping... -- 21:06:17.320 DEBUG [27753]: Closing database connection -- 21:06:17.320 SQL [27753]: pgsql_close() -- 21:06:21.734 INFO [27753]: COREGRADE is starting... -- 21:06:21.734 INFO [27753]: Version from config: 1.0 -- 21:06:21.734 DEBUG [27753]: Connecting to database... -- 21:06:21.734 DEBUG [27753]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:06:21.734 SQL [27753]: pgsql_db_connect() -- 21:06:21.739 DEBUG [27753]: Database connection successful -- 21:06:21.739 INFO [27753]: _SERVER found -- 21:06:21.739 INFO [27753]: REMOTE_ADDR = 192.168.1.13 -- 21:06:21.739 INFO [27753]: SERVER_NAME = oameye.works.coregrade.com -- 21:06:21.739 INFO [27753]: QUERY_STRING = /thinkphp/html/public/index.php -- 21:06:21.739 INFO [27753]: HTTP_X_FORWARDED_FOR = 120.132.20.169 -- 21:06:21.750 INFO [27753]: COREGRADE is stopping... -- 21:06:21.750 DEBUG [27753]: Closing database connection -- 21:06:21.750 SQL [27753]: pgsql_close() -- 21:06:24.881 INFO [27753]: COREGRADE is starting... -- 21:06:24.882 INFO [27753]: Version from config: 1.0 -- 21:06:24.882 DEBUG [27753]: Connecting to database... -- 21:06:24.882 DEBUG [27753]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:06:24.882 SQL [27753]: pgsql_db_connect() -- 21:06:24.886 DEBUG [27753]: Database connection successful -- 21:06:24.886 INFO [27753]: _SERVER found -- 21:06:24.886 INFO [27753]: REMOTE_ADDR = 192.168.1.13 -- 21:06:24.886 INFO [27753]: SERVER_NAME = oameye.works.coregrade.com -- 21:06:24.886 INFO [27753]: QUERY_STRING = /html/public/index.php -- 21:06:24.886 INFO [27753]: HTTP_X_FORWARDED_FOR = 120.132.20.169 -- 21:06:24.897 INFO [27753]: COREGRADE is stopping... -- 21:06:24.897 DEBUG [27753]: Closing database connection -- 21:06:24.897 SQL [27753]: pgsql_close() -- 21:06:26.212 INFO [21959]: COREGRADE is starting... -- 21:06:26.212 INFO [21959]: Version from config: 1.0 -- 21:06:26.212 DEBUG [21959]: Connecting to database... -- 21:06:26.212 DEBUG [21959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:06:26.212 SQL [21959]: pgsql_db_connect() -- 21:06:26.217 DEBUG [21959]: Database connection successful -- 21:06:26.217 INFO [21959]: _SERVER found -- 21:06:26.217 INFO [21959]: REMOTE_ADDR = 192.168.1.13 -- 21:06:26.217 INFO [21959]: SERVER_NAME = oameye.works.coregrade.com -- 21:06:26.217 INFO [21959]: QUERY_STRING = /public/index.php -- 21:06:26.217 INFO [21959]: HTTP_X_FORWARDED_FOR = 120.132.20.169 -- 21:06:26.231 INFO [21959]: COREGRADE is stopping... -- 21:06:26.231 DEBUG [21959]: Closing database connection -- 21:06:26.231 SQL [21959]: pgsql_close() -- 21:06:31.029 INFO [21964]: COREGRADE is starting... -- 21:06:31.030 INFO [21964]: Version from config: 1.0 -- 21:06:31.030 DEBUG [21964]: Connecting to database... -- 21:06:31.030 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:06:31.030 SQL [21964]: pgsql_db_connect() -- 21:06:31.034 DEBUG [21964]: Database connection successful -- 21:06:31.034 INFO [21964]: _SERVER found -- 21:06:31.034 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 21:06:31.034 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 21:06:31.034 INFO [21964]: QUERY_STRING = /TP/html/public/index.php -- 21:06:31.034 INFO [21964]: HTTP_X_FORWARDED_FOR = 120.132.20.169 -- 21:06:31.047 INFO [21964]: COREGRADE is stopping... -- 21:06:31.047 DEBUG [21964]: Closing database connection -- 21:06:31.047 SQL [21964]: pgsql_close() -- 21:06:33.584 INFO [21955]: COREGRADE is starting... -- 21:06:33.584 INFO [21955]: Version from config: 1.0 -- 21:06:33.584 DEBUG [21955]: Connecting to database... -- 21:06:33.584 DEBUG [21955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:06:33.584 SQL [21955]: pgsql_db_connect() -- 21:06:33.588 DEBUG [21955]: Database connection successful -- 21:06:33.588 INFO [21955]: _SERVER found -- 21:06:33.588 INFO [21955]: REMOTE_ADDR = 192.168.1.13 -- 21:06:33.588 INFO [21955]: SERVER_NAME = oameye.works.coregrade.com -- 21:06:33.588 INFO [21955]: QUERY_STRING = /elrekt.php -- 21:06:33.588 INFO [21955]: HTTP_X_FORWARDED_FOR = 120.132.20.169 -- 21:06:33.602 INFO [21955]: COREGRADE is stopping... -- 21:06:33.602 DEBUG [21955]: Closing database connection -- 21:06:33.602 SQL [21955]: pgsql_close() -- 21:06:35.902 INFO [21957]: COREGRADE is starting... -- 21:06:35.902 INFO [21957]: Version from config: 1.0 -- 21:06:35.902 DEBUG [21957]: Connecting to database... -- 21:06:35.902 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:06:35.902 SQL [21957]: pgsql_db_connect() -- 21:06:35.907 DEBUG [21957]: Database connection successful -- 21:06:35.907 INFO [21957]: _SERVER found -- 21:06:35.907 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 21:06:35.907 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 21:06:35.907 INFO [21957]: QUERY_STRING = -- 21:06:35.907 INFO [21957]: HTTP_X_FORWARDED_FOR = 120.132.20.169 -- 21:06:35.943 INFO [21957]: COREGRADE is stopping... -- 21:06:35.943 DEBUG [21957]: Closing database connection -- 21:06:35.943 SQL [21957]: pgsql_close() -- 21:06:39.658 INFO [21957]: COREGRADE is starting... -- 21:06:39.659 INFO [21957]: Version from config: 1.0 -- 21:06:39.659 DEBUG [21957]: Connecting to database... -- 21:06:39.659 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:06:39.659 SQL [21957]: pgsql_db_connect() -- 21:06:39.663 DEBUG [21957]: Database connection successful -- 21:06:39.663 INFO [21957]: _SERVER found -- 21:06:39.663 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 21:06:39.663 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 21:06:39.663 INFO [21957]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 21:06:39.663 INFO [21957]: HTTP_X_FORWARDED_FOR = 120.132.20.169 -- 21:06:39.694 INFO [21957]: COREGRADE is stopping... -- 21:06:39.695 DEBUG [21957]: Closing database connection -- 21:06:39.695 SQL [21957]: pgsql_close() -- 21:06:43.043 INFO [21957]: COREGRADE is starting... -- 21:06:43.043 INFO [21957]: Version from config: 1.0 -- 21:06:43.043 DEBUG [21957]: Connecting to database... -- 21:06:43.043 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:06:43.043 SQL [21957]: pgsql_db_connect() -- 21:06:43.047 DEBUG [21957]: Database connection successful -- 21:06:43.047 INFO [21957]: _SERVER found -- 21:06:43.047 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 21:06:43.047 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 21:06:43.047 INFO [21957]: QUERY_STRING = s=captcha -- 21:06:43.047 INFO [21957]: HTTP_X_FORWARDED_FOR = 120.132.20.169 -- 21:06:43.079 INFO [21957]: COREGRADE is stopping... -- 21:06:43.079 DEBUG [21957]: Closing database connection -- 21:06:43.079 SQL [21957]: pgsql_close() -- 21:06:48.570 INFO [21956]: COREGRADE is starting... -- 21:06:48.570 INFO [21956]: Version from config: 1.0 -- 21:06:48.570 DEBUG [21956]: Connecting to database... -- 21:06:48.570 DEBUG [21956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:06:48.570 SQL [21956]: pgsql_db_connect() -- 21:06:48.575 DEBUG [21956]: Database connection successful -- 21:06:48.575 INFO [21956]: _SERVER found -- 21:06:48.575 INFO [21956]: REMOTE_ADDR = 192.168.1.13 -- 21:06:48.575 INFO [21956]: SERVER_NAME = oameye.works.coregrade.com -- 21:06:48.575 INFO [21956]: QUERY_STRING = -- 21:06:48.575 INFO [21956]: HTTP_X_FORWARDED_FOR = 120.132.20.169 -- 21:06:48.609 INFO [21956]: COREGRADE is stopping... -- 21:06:48.609 DEBUG [21956]: Closing database connection -- 21:06:48.609 SQL [21956]: pgsql_close() -- 21:22:14.242 INFO [21958]: COREGRADE is starting... -- 21:22:14.242 INFO [21958]: Version from config: 1.0 -- 21:22:14.242 DEBUG [21958]: Connecting to database... -- 21:22:14.242 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:22:14.242 SQL [21958]: pgsql_db_connect() -- 21:22:14.282 INFO [21958]: COREGRADE is starting... -- 21:22:14.282 INFO [21958]: Version from config: 1.0 -- 21:22:14.282 DEBUG [21958]: Connecting to database... -- 21:22:14.282 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:22:14.282 SQL [21958]: pgsql_db_connect() -- 21:22:14.287 DEBUG [21958]: Database connection successful -- 21:22:14.287 INFO [21958]: _SERVER found -- 21:22:14.287 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 21:22:14.287 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 21:22:14.287 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=j3ee3p5nk70c5s3mjfs3bi62sne123qn -- 21:22:14.287 INFO [21958]: QUERY_STRING = -- 21:22:14.287 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:22:14.287 INFO [21958]: SystemStatus()09-09-********~************ -- 21:22:14.287 INFO [21958]: long coregrade_api_main(CVars in, CVars &out) -- 21:22:14.287 INFO [21958]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 21:22:14.287 INFO [21958]: account calls -- 21:22:14.287 INFO [21958]: account_calls() -- 21:22:14.287 INFO [21958]: LoginCoreGradeAccount() -- 21:22:14.287 FLOG_MAX [21958]: REQ_STRING(username) -- 21:22:14.287 FLOG_MAX [21958]: REQ_STRING(password) -- 21:22:14.287 FLOG_MAX [21958]: REQ_STRING(sessionid) -- 21:22:14.287 FLOG_MAX [21958]: long load_db_record( CVars &rec, const char * query, ... ) -- 21:22:14.287 SQL [21958]: pgsql_query() -- 21:22:14.287 SQL [21958]: About to run query: -- 21:22:14.287 SQL [21958]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 21:22:14.291 SQL [21958]: Found rows: 1 -- 21:22:14.291 FLOG_MAX [21958]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 21:22:14.291 INFO [21958]: long SessionCheck(long uid, const char *sessionid, int create ) -- 21:22:14.291 SQL [21958]: pgsql_exec() -- 21:22:14.291 SQL [21958]: About to run query: -- 21:22:14.291 SQL [21958]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 21:22:14.292 SQL [21958]: PQcmdTuples: 1 -- 21:22:14.292 SQL [21958]: Affected rows: 1 -- 21:22:14.292 SQL [21958]: pgsql_exec() -- 21:22:14.292 SQL [21958]: About to run query: -- 21:22:14.292 SQL [21958]: DELETE FROM members_session WHERE member_id=5 -- 21:22:14.292 SQL [21958]: PQcmdTuples: 0 -- 21:22:14.292 SQL [21958]: Affected rows: 0 -- 21:22:14.292 SQL [21958]: pgsql_query() -- 21:22:14.293 SQL [21958]: About to run query: -- 21:22:14.293 SQL [21958]: SELECT * FROM members_session WHERE member_id=5 AND session<>'97FB448245BBEF4BB562923C417FBE52' -- 21:22:14.293 SQL [21958]: Found rows: 0 -- 21:22:14.293 SQL [21958]: Found rows: 0 -- 21:22:14.293 FLOG_MAX [21958]: long load_db_record( CVars &rec, const char * query, ... ) -- 21:22:14.293 SQL [21958]: pgsql_query() -- 21:22:14.293 SQL [21958]: About to run query: -- 21:22:14.293 SQL [21958]: SELECT * FROM members_session WHERE member_id=5 AND session='97FB448245BBEF4BB562923C417FBE52' -- 21:22:14.294 SQL [21958]: Found rows: 0 -- 21:22:14.294 SQL [21958]: Found rows: 0 -- 21:22:14.294 FLOG_MAX [21958]: insert_db_record() -- 21:22:14.294 SQL [21958]: pgsql_exec() -- 21:22:14.294 SQL [21958]: About to run query: -- 21:22:14.294 SQL [21958]: INSERT INTO members_session (member_id,session) VALUES ('5','97FB448245BBEF4BB562923C417FBE52') -- 21:22:14.295 SQL [21958]: PQcmdTuples: 1 -- 21:22:14.296 SQL [21958]: Affected rows: 1 -- 21:22:14.296 FLOG_MAX [21958]: SELECT currval('members_session_id_seq') -- 21:22:14.296 SQL [21958]: pgsql_query() -- 21:22:14.296 SQL [21958]: About to run query: -- 21:22:14.296 SQL [21958]: SELECT currval('members_session_id_seq') -- 21:22:14.296 SQL [21958]: Found rows: 1 -- 21:22:14.296 INFO [21958]: CreateDefaultPage() -- 21:22:14.296 FLOG_MAX [21958]: long load_db_record( CVars &rec, const char * query, ... ) -- 21:22:14.296 SQL [21958]: pgsql_query() -- 21:22:14.296 SQL [21958]: About to run query: -- 21:22:14.296 SQL [21958]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 21:22:14.296 SQL [21958]: Found rows: 1 -- 21:22:14.296 FLOG_MAX [21958]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 21:22:14.296 SQL [21958]: pgsql_query() -- 21:22:14.296 SQL [21958]: About to run query: -- 21:22:14.296 SQL [21958]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 21:22:14.297 SQL [21958]: Found rows: 1 -- 21:22:14.297 INFO [21958]: /CreateDefaultPage() -- 21:22:14.297 INFO [21958]: /LoginCoreGradeAccount() -- 21:22:14.297 INFO [21958]: RET: added=2020-02-05 06:47:23.982154 -- 21:22:14.297 INFO [21958]: RET: email=ameye+11@chiefsoft.com -- 21:22:14.297 INFO [21958]: RET: firstname=Olu -- 21:22:14.297 INFO [21958]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 21:22:14.297 INFO [21958]: RET: id=5 -- 21:22:14.297 INFO [21958]: RET: last_login= -- 21:22:14.297 INFO [21958]: RET: lastname=Amey -- 21:22:14.297 INFO [21958]: RET: loc=192.168.1.13 -- 21:22:14.297 INFO [21958]: RET: member_id=5 -- 21:22:14.297 INFO [21958]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 21:22:14.297 INFO [21958]: RET: phone= -- 21:22:14.297 INFO [21958]: RET: pid= -- 21:22:14.297 INFO [21958]: RET: result=YES I GET TO BACK END -- 21:22:14.297 INFO [21958]: RET: sessionid=97FB448245BBEF4BB562923C417FBE52 -- 21:22:14.297 INFO [21958]: RET: status=1 -- 21:22:14.297 INFO [21958]: RET: stauts=OK -- 21:22:14.297 INFO [21958]: RET: username=ameye+11@chiefsoft.com -- 21:22:14.297 INFO [21958]: RET: verified= -- 21:22:14.299 INFO [21958]: COREGRADE is stopping... -- 21:22:14.299 DEBUG [21958]: Closing database connection -- 21:22:14.299 SQL [21958]: pgsql_close() -- 21:22:14.247 DEBUG [21958]: Database connection successful -- 21:22:14.247 INFO [21958]: _SERVER found -- 21:22:14.247 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 21:22:14.247 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 21:22:14.247 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=j3ee3p5nk70c5s3mjfs3bi62sne123qn -- 21:22:14.247 INFO [21958]: QUERY_STRING = /auth -- 21:22:14.247 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:22:14.299 INFO [21958]: COREGRADE is stopping... -- 21:22:14.299 DEBUG [21958]: Closing database connection -- 21:22:14.299 SQL [21958]: pgsql_close() -- 21:22:14.317 INFO [21958]: COREGRADE is starting... -- 21:22:14.317 INFO [21958]: Version from config: 1.0 -- 21:22:14.318 DEBUG [21958]: Connecting to database... -- 21:22:14.318 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:22:14.318 SQL [21958]: pgsql_db_connect() -- 21:22:14.321 DEBUG [21958]: Database connection successful -- 21:22:14.321 INFO [21958]: _SERVER found -- 21:22:14.321 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 21:22:14.321 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 21:22:14.321 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=1r8io0ii6qjknobo7hmsm958e3dc5elk -- 21:22:14.321 INFO [21958]: QUERY_STRING = /member/index -- 21:22:14.321 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:22:14.363 INFO [21958]: COREGRADE is stopping... -- 21:22:14.363 DEBUG [21958]: Closing database connection -- 21:22:14.363 SQL [21958]: pgsql_close() -- 21:22:14.626 INFO [21958]: COREGRADE is starting... -- 21:22:14.627 INFO [21958]: Version from config: 1.0 -- 21:22:14.627 DEBUG [21958]: Connecting to database... -- 21:22:14.627 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:22:14.627 SQL [21958]: pgsql_db_connect() -- 21:22:14.631 DEBUG [21958]: Database connection successful -- 21:22:14.631 INFO [21958]: _SERVER found -- 21:22:14.631 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 21:22:14.631 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 21:22:14.631 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=1r8io0ii6qjknobo7hmsm958e3dc5elk -- 21:22:14.631 INFO [21958]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:22:14.631 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:22:14.642 INFO [21958]: COREGRADE is stopping... -- 21:22:14.642 DEBUG [21958]: Closing database connection -- 21:22:14.642 SQL [21958]: pgsql_close() -- 21:22:14.667 INFO [21958]: COREGRADE is starting... -- 21:22:14.667 INFO [21958]: Version from config: 1.0 -- 21:22:14.667 DEBUG [21958]: Connecting to database... -- 21:22:14.667 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:22:14.667 SQL [21958]: pgsql_db_connect() -- 21:22:14.671 DEBUG [21958]: Database connection successful -- 21:22:14.671 INFO [21958]: _SERVER found -- 21:22:14.671 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 21:22:14.671 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 21:22:14.671 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=1r8io0ii6qjknobo7hmsm958e3dc5elk -- 21:22:14.671 INFO [21958]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:22:14.671 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:22:14.682 INFO [21958]: COREGRADE is stopping... -- 21:22:14.682 DEBUG [21958]: Closing database connection -- 21:22:14.682 SQL [21958]: pgsql_close() -- 21:22:15.999 INFO [21958]: COREGRADE is starting... -- 21:22:15.999 INFO [21958]: Version from config: 1.0 -- 21:22:15.999 DEBUG [21958]: Connecting to database... -- 21:22:15.999 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:22:15.999 SQL [21958]: pgsql_db_connect() -- 21:22:16.004 DEBUG [21958]: Database connection successful -- 21:22:16.004 INFO [21958]: _SERVER found -- 21:22:16.004 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 21:22:16.004 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 21:22:16.004 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=1r8io0ii6qjknobo7hmsm958e3dc5elk -- 21:22:16.004 INFO [21958]: QUERY_STRING = /member/page -- 21:22:16.004 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:22:16.047 INFO [21958]: COREGRADE is stopping... -- 21:22:16.047 DEBUG [21958]: Closing database connection -- 21:22:16.047 SQL [21958]: pgsql_close() -- 21:22:16.164 INFO [21958]: COREGRADE is starting... -- 21:22:16.165 INFO [21958]: Version from config: 1.0 -- 21:22:16.165 DEBUG [21958]: Connecting to database... -- 21:22:16.165 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:22:16.165 SQL [21958]: pgsql_db_connect() -- 21:22:16.169 DEBUG [21958]: Database connection successful -- 21:22:16.169 INFO [21958]: _SERVER found -- 21:22:16.169 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 21:22:16.169 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 21:22:16.169 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=1r8io0ii6qjknobo7hmsm958e3dc5elk -- 21:22:16.169 INFO [21958]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:22:16.169 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:22:16.183 INFO [21958]: COREGRADE is stopping... -- 21:22:16.183 DEBUG [21958]: Closing database connection -- 21:22:16.183 SQL [21958]: pgsql_close() -- 21:22:16.400 INFO [27752]: COREGRADE is starting... -- 21:22:16.400 INFO [27752]: Version from config: 1.0 -- 21:22:16.400 DEBUG [27752]: Connecting to database... -- 21:22:16.400 DEBUG [27752]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:22:16.400 SQL [27752]: pgsql_db_connect() -- 21:22:16.404 DEBUG [27752]: Database connection successful -- 21:22:16.404 INFO [27752]: _SERVER found -- 21:22:16.404 INFO [27752]: REMOTE_ADDR = 192.168.1.13 -- 21:22:16.404 INFO [27752]: SERVER_NAME = oameye.works.coregrade.com -- 21:22:16.404 INFO [27752]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=1r8io0ii6qjknobo7hmsm958e3dc5elk -- 21:22:16.404 INFO [27752]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:22:16.404 INFO [27752]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:22:16.416 INFO [27752]: COREGRADE is stopping... -- 21:22:16.416 DEBUG [27752]: Closing database connection -- 21:22:16.416 SQL [27752]: pgsql_close() -- 21:23:07.088 INFO [27751]: COREGRADE is starting... -- 21:23:07.088 INFO [27751]: Version from config: 1.0 -- 21:23:07.088 DEBUG [27751]: Connecting to database... -- 21:23:07.088 DEBUG [27751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:07.088 SQL [27751]: pgsql_db_connect() -- 21:23:07.092 DEBUG [27751]: Database connection successful -- 21:23:07.092 INFO [27751]: _SERVER found -- 21:23:07.092 INFO [27751]: REMOTE_ADDR = 192.168.1.13 -- 21:23:07.092 INFO [27751]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:07.092 INFO [27751]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=1r8io0ii6qjknobo7hmsm958e3dc5elk -- 21:23:07.092 INFO [27751]: QUERY_STRING = /member/page -- 21:23:07.092 INFO [27751]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:07.135 INFO [27751]: COREGRADE is stopping... -- 21:23:07.135 DEBUG [27751]: Closing database connection -- 21:23:07.135 SQL [27751]: pgsql_close() -- 21:23:07.300 INFO [27751]: COREGRADE is starting... -- 21:23:07.300 INFO [27751]: Version from config: 1.0 -- 21:23:07.300 DEBUG [27751]: Connecting to database... -- 21:23:07.300 DEBUG [27751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:07.300 SQL [27751]: pgsql_db_connect() -- 21:23:07.304 DEBUG [27751]: Database connection successful -- 21:23:07.304 INFO [27751]: _SERVER found -- 21:23:07.304 INFO [27751]: REMOTE_ADDR = 192.168.1.13 -- 21:23:07.304 INFO [27751]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:07.304 INFO [27751]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=1r8io0ii6qjknobo7hmsm958e3dc5elk -- 21:23:07.304 INFO [27751]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:23:07.304 INFO [27751]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:07.316 INFO [27751]: COREGRADE is stopping... -- 21:23:07.316 DEBUG [27751]: Closing database connection -- 21:23:07.316 SQL [27751]: pgsql_close() -- 21:23:07.475 INFO [27751]: COREGRADE is starting... -- 21:23:07.475 INFO [27751]: Version from config: 1.0 -- 21:23:07.475 DEBUG [27751]: Connecting to database... -- 21:23:07.475 DEBUG [27751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:07.475 SQL [27751]: pgsql_db_connect() -- 21:23:07.479 DEBUG [27751]: Database connection successful -- 21:23:07.479 INFO [27751]: _SERVER found -- 21:23:07.479 INFO [27751]: REMOTE_ADDR = 192.168.1.13 -- 21:23:07.479 INFO [27751]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:07.479 INFO [27751]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=1r8io0ii6qjknobo7hmsm958e3dc5elk -- 21:23:07.479 INFO [27751]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:23:07.479 INFO [27751]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:07.491 INFO [27751]: COREGRADE is stopping... -- 21:23:07.491 DEBUG [27751]: Closing database connection -- 21:23:07.491 SQL [27751]: pgsql_close() -- 21:23:42.037 INFO [27753]: COREGRADE is starting... -- 21:23:42.038 INFO [27753]: Version from config: 1.0 -- 21:23:42.038 DEBUG [27753]: Connecting to database... -- 21:23:42.038 DEBUG [27753]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:42.038 SQL [27753]: pgsql_db_connect() -- 21:23:42.042 DEBUG [27753]: Database connection successful -- 21:23:42.042 INFO [27753]: _SERVER found -- 21:23:42.042 INFO [27753]: REMOTE_ADDR = 192.168.1.13 -- 21:23:42.042 INFO [27753]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:42.042 INFO [27753]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=1r8io0ii6qjknobo7hmsm958e3dc5elk -- 21:23:42.042 INFO [27753]: QUERY_STRING = /member/page -- 21:23:42.042 INFO [27753]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:42.085 INFO [27753]: COREGRADE is stopping... -- 21:23:42.085 DEBUG [27753]: Closing database connection -- 21:23:42.085 SQL [27753]: pgsql_close() -- 21:23:42.180 INFO [27753]: COREGRADE is starting... -- 21:23:42.181 INFO [27753]: Version from config: 1.0 -- 21:23:42.181 DEBUG [27753]: Connecting to database... -- 21:23:42.181 DEBUG [27753]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:42.181 SQL [27753]: pgsql_db_connect() -- 21:23:42.185 DEBUG [27753]: Database connection successful -- 21:23:42.185 INFO [27753]: _SERVER found -- 21:23:42.185 INFO [27753]: REMOTE_ADDR = 192.168.1.13 -- 21:23:42.185 INFO [27753]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:42.185 INFO [27753]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=1r8io0ii6qjknobo7hmsm958e3dc5elk -- 21:23:42.185 INFO [27753]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:23:42.185 INFO [27753]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:42.196 INFO [27753]: COREGRADE is stopping... -- 21:23:42.196 DEBUG [27753]: Closing database connection -- 21:23:42.196 SQL [27753]: pgsql_close() -- 21:23:42.360 INFO [27753]: COREGRADE is starting... -- 21:23:42.360 INFO [27753]: Version from config: 1.0 -- 21:23:42.360 DEBUG [27753]: Connecting to database... -- 21:23:42.360 DEBUG [27753]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:42.360 SQL [27753]: pgsql_db_connect() -- 21:23:42.364 DEBUG [27753]: Database connection successful -- 21:23:42.364 INFO [27753]: _SERVER found -- 21:23:42.364 INFO [27753]: REMOTE_ADDR = 192.168.1.13 -- 21:23:42.364 INFO [27753]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:42.364 INFO [27753]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=1r8io0ii6qjknobo7hmsm958e3dc5elk -- 21:23:42.364 INFO [27753]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:23:42.364 INFO [27753]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:23:42.375 INFO [27753]: COREGRADE is stopping... -- 21:23:42.375 DEBUG [27753]: Closing database connection -- 21:23:42.375 SQL [27753]: pgsql_close() -- 21:24:01.342 INFO [21964]: COREGRADE is starting... -- 21:24:01.342 INFO [21964]: Version from config: 1.0 -- 21:24:01.342 DEBUG [21964]: Connecting to database... -- 21:24:01.342 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:24:01.342 SQL [21964]: pgsql_db_connect() -- 21:24:01.346 DEBUG [21964]: Database connection successful -- 21:24:01.346 INFO [21964]: _SERVER found -- 21:24:01.346 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 21:24:01.346 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 21:24:01.346 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=1r8io0ii6qjknobo7hmsm958e3dc5elk -- 21:24:01.346 INFO [21964]: QUERY_STRING = /auth/logout -- 21:24:01.346 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:24:01.379 INFO [21964]: COREGRADE is stopping... -- 21:24:01.379 DEBUG [21964]: Closing database connection -- 21:24:01.379 SQL [21964]: pgsql_close() -- 21:24:01.532 INFO [21964]: COREGRADE is starting... -- 21:24:01.532 INFO [21964]: Version from config: 1.0 -- 21:24:01.532 DEBUG [21964]: Connecting to database... -- 21:24:01.532 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:24:01.532 SQL [21964]: pgsql_db_connect() -- 21:24:01.536 DEBUG [21964]: Database connection successful -- 21:24:01.536 INFO [21964]: _SERVER found -- 21:24:01.536 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 21:24:01.536 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 21:24:01.536 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=1r8io0ii6qjknobo7hmsm958e3dc5elk -- 21:24:01.536 INFO [21964]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:24:01.536 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:24:01.547 INFO [21964]: COREGRADE is stopping... -- 21:24:01.547 DEBUG [21964]: Closing database connection -- 21:24:01.547 SQL [21964]: pgsql_close() -- 21:24:01.572 INFO [21955]: COREGRADE is starting... -- 21:24:01.572 INFO [21955]: Version from config: 1.0 -- 21:24:01.572 DEBUG [21955]: Connecting to database... -- 21:24:01.572 DEBUG [21955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:24:01.572 SQL [21955]: pgsql_db_connect() -- 21:24:01.576 DEBUG [21955]: Database connection successful -- 21:24:01.576 INFO [21955]: _SERVER found -- 21:24:01.576 INFO [21955]: REMOTE_ADDR = 192.168.1.13 -- 21:24:01.576 INFO [21955]: SERVER_NAME = oameye.works.coregrade.com -- 21:24:01.576 INFO [21955]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=1r8io0ii6qjknobo7hmsm958e3dc5elk -- 21:24:01.576 INFO [21955]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:24:01.576 INFO [21955]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:24:01.588 INFO [21955]: COREGRADE is stopping... -- 21:24:01.588 DEBUG [21955]: Closing database connection -- 21:24:01.588 SQL [21955]: pgsql_close() -- 21:24:02.935 INFO [21955]: COREGRADE is starting... -- 21:24:02.935 INFO [21955]: Version from config: 1.0 -- 21:24:02.935 DEBUG [21955]: Connecting to database... -- 21:24:02.935 DEBUG [21955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:24:02.935 SQL [21955]: pgsql_db_connect() -- 21:24:02.971 INFO [21955]: COREGRADE is starting... -- 21:24:02.972 INFO [21955]: Version from config: 1.0 -- 21:24:02.972 DEBUG [21955]: Connecting to database... -- 21:24:02.972 DEBUG [21955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:24:02.972 SQL [21955]: pgsql_db_connect() -- 21:24:02.976 DEBUG [21955]: Database connection successful -- 21:24:02.976 INFO [21955]: _SERVER found -- 21:24:02.976 INFO [21955]: REMOTE_ADDR = 192.168.1.13 -- 21:24:02.976 INFO [21955]: SERVER_NAME = oameye.works.coregrade.com -- 21:24:02.976 INFO [21955]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=1r8io0ii6qjknobo7hmsm958e3dc5elk -- 21:24:02.976 INFO [21955]: QUERY_STRING = -- 21:24:02.976 INFO [21955]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:24:02.976 INFO [21955]: SystemStatus()09-09-********~************ -- 21:24:02.976 INFO [21955]: long coregrade_api_main(CVars in, CVars &out) -- 21:24:02.976 INFO [21955]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 21:24:02.976 INFO [21955]: account calls -- 21:24:02.976 INFO [21955]: account_calls() -- 21:24:02.976 INFO [21955]: LoginCoreGradeAccount() -- 21:24:02.976 FLOG_MAX [21955]: REQ_STRING(username) -- 21:24:02.976 FLOG_MAX [21955]: REQ_STRING(password) -- 21:24:02.976 FLOG_MAX [21955]: REQ_STRING(sessionid) -- 21:24:02.976 FLOG_MAX [21955]: long load_db_record( CVars &rec, const char * query, ... ) -- 21:24:02.976 SQL [21955]: pgsql_query() -- 21:24:02.976 SQL [21955]: About to run query: -- 21:24:02.976 SQL [21955]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 21:24:02.979 SQL [21955]: Found rows: 1 -- 21:24:02.980 FLOG_MAX [21955]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 21:24:02.980 INFO [21955]: long SessionCheck(long uid, const char *sessionid, int create ) -- 21:24:02.980 SQL [21955]: pgsql_exec() -- 21:24:02.980 SQL [21955]: About to run query: -- 21:24:02.980 SQL [21955]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 21:24:02.980 SQL [21955]: PQcmdTuples: 0 -- 21:24:02.980 SQL [21955]: Affected rows: 0 -- 21:24:02.980 SQL [21955]: pgsql_exec() -- 21:24:02.980 SQL [21955]: About to run query: -- 21:24:02.980 SQL [21955]: DELETE FROM members_session WHERE member_id=5 -- 21:24:02.981 SQL [21955]: PQcmdTuples: 1 -- 21:24:02.981 SQL [21955]: Affected rows: 1 -- 21:24:02.981 SQL [21955]: pgsql_query() -- 21:24:02.981 SQL [21955]: About to run query: -- 21:24:02.981 SQL [21955]: SELECT * FROM members_session WHERE member_id=5 AND session<>'5CA4542FF5775A59FC5DD94D5E397BC8' -- 21:24:02.982 SQL [21955]: Found rows: 0 -- 21:24:02.982 SQL [21955]: Found rows: 0 -- 21:24:02.982 FLOG_MAX [21955]: long load_db_record( CVars &rec, const char * query, ... ) -- 21:24:02.982 SQL [21955]: pgsql_query() -- 21:24:02.982 SQL [21955]: About to run query: -- 21:24:02.982 SQL [21955]: SELECT * FROM members_session WHERE member_id=5 AND session='5CA4542FF5775A59FC5DD94D5E397BC8' -- 21:24:02.982 SQL [21955]: Found rows: 0 -- 21:24:02.982 SQL [21955]: Found rows: 0 -- 21:24:02.982 FLOG_MAX [21955]: insert_db_record() -- 21:24:02.982 SQL [21955]: pgsql_exec() -- 21:24:02.982 SQL [21955]: About to run query: -- 21:24:02.982 SQL [21955]: INSERT INTO members_session (member_id,session) VALUES ('5','5CA4542FF5775A59FC5DD94D5E397BC8') -- 21:24:02.984 SQL [21955]: PQcmdTuples: 1 -- 21:24:02.984 SQL [21955]: Affected rows: 1 -- 21:24:02.984 FLOG_MAX [21955]: SELECT currval('members_session_id_seq') -- 21:24:02.984 SQL [21955]: pgsql_query() -- 21:24:02.984 SQL [21955]: About to run query: -- 21:24:02.984 SQL [21955]: SELECT currval('members_session_id_seq') -- 21:24:02.984 SQL [21955]: Found rows: 1 -- 21:24:02.984 INFO [21955]: CreateDefaultPage() -- 21:24:02.984 FLOG_MAX [21955]: long load_db_record( CVars &rec, const char * query, ... ) -- 21:24:02.984 SQL [21955]: pgsql_query() -- 21:24:02.984 SQL [21955]: About to run query: -- 21:24:02.984 SQL [21955]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 21:24:02.985 SQL [21955]: Found rows: 1 -- 21:24:02.985 FLOG_MAX [21955]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 21:24:02.985 SQL [21955]: pgsql_query() -- 21:24:02.985 SQL [21955]: About to run query: -- 21:24:02.985 SQL [21955]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 21:24:02.985 SQL [21955]: Found rows: 1 -- 21:24:02.985 INFO [21955]: /CreateDefaultPage() -- 21:24:02.985 INFO [21955]: /LoginCoreGradeAccount() -- 21:24:02.985 INFO [21955]: RET: added=2020-02-05 06:47:23.982154 -- 21:24:02.985 INFO [21955]: RET: email=ameye+11@chiefsoft.com -- 21:24:02.985 INFO [21955]: RET: firstname=Olu -- 21:24:02.985 INFO [21955]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 21:24:02.985 INFO [21955]: RET: id=5 -- 21:24:02.985 INFO [21955]: RET: last_login= -- 21:24:02.985 INFO [21955]: RET: lastname=Amey -- 21:24:02.985 INFO [21955]: RET: loc=192.168.1.13 -- 21:24:02.985 INFO [21955]: RET: member_id=5 -- 21:24:02.985 INFO [21955]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 21:24:02.985 INFO [21955]: RET: phone= -- 21:24:02.985 INFO [21955]: RET: pid= -- 21:24:02.985 INFO [21955]: RET: result=YES I GET TO BACK END -- 21:24:02.985 INFO [21955]: RET: sessionid=5CA4542FF5775A59FC5DD94D5E397BC8 -- 21:24:02.985 INFO [21955]: RET: status=1 -- 21:24:02.985 INFO [21955]: RET: stauts=OK -- 21:24:02.985 INFO [21955]: RET: username=ameye+11@chiefsoft.com -- 21:24:02.985 INFO [21955]: RET: verified= -- 21:24:02.987 INFO [21955]: COREGRADE is stopping... -- 21:24:02.987 DEBUG [21955]: Closing database connection -- 21:24:02.987 SQL [21955]: pgsql_close() -- 21:24:02.939 DEBUG [21955]: Database connection successful -- 21:24:02.939 INFO [21955]: _SERVER found -- 21:24:02.939 INFO [21955]: REMOTE_ADDR = 192.168.1.13 -- 21:24:02.939 INFO [21955]: SERVER_NAME = oameye.works.coregrade.com -- 21:24:02.939 INFO [21955]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=1r8io0ii6qjknobo7hmsm958e3dc5elk -- 21:24:02.939 INFO [21955]: QUERY_STRING = /auth -- 21:24:02.939 INFO [21955]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:24:02.987 INFO [21955]: COREGRADE is stopping... -- 21:24:02.987 DEBUG [21955]: Closing database connection -- 21:24:02.987 SQL [21955]: pgsql_close() -- 21:24:03.003 INFO [21955]: COREGRADE is starting... -- 21:24:03.003 INFO [21955]: Version from config: 1.0 -- 21:24:03.003 DEBUG [21955]: Connecting to database... -- 21:24:03.003 DEBUG [21955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:24:03.003 SQL [21955]: pgsql_db_connect() -- 21:24:03.007 DEBUG [21955]: Database connection successful -- 21:24:03.007 INFO [21955]: _SERVER found -- 21:24:03.007 INFO [21955]: REMOTE_ADDR = 192.168.1.13 -- 21:24:03.007 INFO [21955]: SERVER_NAME = oameye.works.coregrade.com -- 21:24:03.007 INFO [21955]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=1r8io0ii6qjknobo7hmsm958e3dc5elk -- 21:24:03.007 INFO [21955]: QUERY_STRING = /member/index -- 21:24:03.007 INFO [21955]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:24:03.047 INFO [21955]: COREGRADE is stopping... -- 21:24:03.047 DEBUG [21955]: Closing database connection -- 21:24:03.047 SQL [21955]: pgsql_close() -- 21:24:03.246 INFO [21955]: COREGRADE is starting... -- 21:24:03.246 INFO [21955]: Version from config: 1.0 -- 21:24:03.246 DEBUG [21955]: Connecting to database... -- 21:24:03.246 DEBUG [21955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:24:03.246 SQL [21955]: pgsql_db_connect() -- 21:24:03.250 DEBUG [21955]: Database connection successful -- 21:24:03.250 INFO [21955]: _SERVER found -- 21:24:03.250 INFO [21955]: REMOTE_ADDR = 192.168.1.13 -- 21:24:03.250 INFO [21955]: SERVER_NAME = oameye.works.coregrade.com -- 21:24:03.250 INFO [21955]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=1r8io0ii6qjknobo7hmsm958e3dc5elk -- 21:24:03.250 INFO [21955]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:24:03.250 INFO [21955]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:24:03.261 INFO [21955]: COREGRADE is stopping... -- 21:24:03.261 DEBUG [21955]: Closing database connection -- 21:24:03.261 SQL [21955]: pgsql_close() -- 21:24:03.287 INFO [21955]: COREGRADE is starting... -- 21:24:03.287 INFO [21955]: Version from config: 1.0 -- 21:24:03.287 DEBUG [21955]: Connecting to database... -- 21:24:03.287 DEBUG [21955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:24:03.288 SQL [21955]: pgsql_db_connect() -- 21:24:03.293 DEBUG [21955]: Database connection successful -- 21:24:03.293 INFO [21955]: _SERVER found -- 21:24:03.293 INFO [21955]: REMOTE_ADDR = 192.168.1.13 -- 21:24:03.293 INFO [21955]: SERVER_NAME = oameye.works.coregrade.com -- 21:24:03.293 INFO [21955]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=1r8io0ii6qjknobo7hmsm958e3dc5elk -- 21:24:03.293 INFO [21955]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:24:03.293 INFO [21955]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:24:03.304 INFO [21955]: COREGRADE is stopping... -- 21:24:03.304 DEBUG [21955]: Closing database connection -- 21:24:03.304 SQL [21955]: pgsql_close() -- 21:24:04.781 INFO [21955]: COREGRADE is starting... -- 21:24:04.781 INFO [21955]: Version from config: 1.0 -- 21:24:04.781 DEBUG [21955]: Connecting to database... -- 21:24:04.781 DEBUG [21955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:24:04.781 SQL [21955]: pgsql_db_connect() -- 21:24:04.785 DEBUG [21955]: Database connection successful -- 21:24:04.785 INFO [21955]: _SERVER found -- 21:24:04.785 INFO [21955]: REMOTE_ADDR = 192.168.1.13 -- 21:24:04.785 INFO [21955]: SERVER_NAME = oameye.works.coregrade.com -- 21:24:04.785 INFO [21955]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=1r8io0ii6qjknobo7hmsm958e3dc5elk -- 21:24:04.785 INFO [21955]: QUERY_STRING = /member/page -- 21:24:04.785 INFO [21955]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:24:04.828 INFO [21955]: COREGRADE is stopping... -- 21:24:04.828 DEBUG [21955]: Closing database connection -- 21:24:04.828 SQL [21955]: pgsql_close() -- 21:24:04.930 INFO [21955]: COREGRADE is starting... -- 21:24:04.931 INFO [21955]: Version from config: 1.0 -- 21:24:04.931 DEBUG [21955]: Connecting to database... -- 21:24:04.931 DEBUG [21955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:24:04.931 SQL [21955]: pgsql_db_connect() -- 21:24:04.935 DEBUG [21955]: Database connection successful -- 21:24:04.935 INFO [21955]: _SERVER found -- 21:24:04.935 INFO [21955]: REMOTE_ADDR = 192.168.1.13 -- 21:24:04.935 INFO [21955]: SERVER_NAME = oameye.works.coregrade.com -- 21:24:04.935 INFO [21955]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=1r8io0ii6qjknobo7hmsm958e3dc5elk -- 21:24:04.935 INFO [21955]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:24:04.935 INFO [21955]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:24:04.946 INFO [21955]: COREGRADE is stopping... -- 21:24:04.946 DEBUG [21955]: Closing database connection -- 21:24:04.946 SQL [21955]: pgsql_close() -- 21:24:05.065 INFO [21955]: COREGRADE is starting... -- 21:24:05.065 INFO [21955]: Version from config: 1.0 -- 21:24:05.065 DEBUG [21955]: Connecting to database... -- 21:24:05.065 DEBUG [21955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:24:05.065 SQL [21955]: pgsql_db_connect() -- 21:24:05.069 DEBUG [21955]: Database connection successful -- 21:24:05.069 INFO [21955]: _SERVER found -- 21:24:05.069 INFO [21955]: REMOTE_ADDR = 192.168.1.13 -- 21:24:05.069 INFO [21955]: SERVER_NAME = oameye.works.coregrade.com -- 21:24:05.069 INFO [21955]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=1r8io0ii6qjknobo7hmsm958e3dc5elk -- 21:24:05.069 INFO [21955]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:24:05.069 INFO [21955]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:24:05.080 INFO [21955]: COREGRADE is stopping... -- 21:24:05.080 DEBUG [21955]: Closing database connection -- 21:24:05.080 SQL [21955]: pgsql_close() -- 21:25:00.268 INFO [21957]: COREGRADE is starting... -- 21:25:00.268 INFO [21957]: Version from config: 1.0 -- 21:25:00.268 DEBUG [21957]: Connecting to database... -- 21:25:00.268 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:25:00.268 SQL [21957]: pgsql_db_connect() -- 21:25:00.272 DEBUG [21957]: Database connection successful -- 21:25:00.272 INFO [21957]: _SERVER found -- 21:25:00.272 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 21:25:00.272 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 21:25:00.272 INFO [21957]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=1r8io0ii6qjknobo7hmsm958e3dc5elk -- 21:25:00.272 INFO [21957]: QUERY_STRING = /member/page -- 21:25:00.272 INFO [21957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:25:00.317 INFO [21957]: COREGRADE is stopping... -- 21:25:00.317 DEBUG [21957]: Closing database connection -- 21:25:00.317 SQL [21957]: pgsql_close() -- 21:25:00.496 INFO [21957]: COREGRADE is starting... -- 21:25:00.496 INFO [21957]: Version from config: 1.0 -- 21:25:00.496 DEBUG [21957]: Connecting to database... -- 21:25:00.496 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:25:00.496 SQL [21957]: pgsql_db_connect() -- 21:25:00.500 DEBUG [21957]: Database connection successful -- 21:25:00.500 INFO [21957]: _SERVER found -- 21:25:00.500 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 21:25:00.500 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 21:25:00.500 INFO [21957]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=1r8io0ii6qjknobo7hmsm958e3dc5elk -- 21:25:00.500 INFO [21957]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:25:00.500 INFO [21957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:25:00.511 INFO [21957]: COREGRADE is stopping... -- 21:25:00.512 DEBUG [21957]: Closing database connection -- 21:25:00.512 SQL [21957]: pgsql_close() -- 21:25:00.663 INFO [21957]: COREGRADE is starting... -- 21:25:00.664 INFO [21957]: Version from config: 1.0 -- 21:25:00.664 DEBUG [21957]: Connecting to database... -- 21:25:00.664 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:25:00.664 SQL [21957]: pgsql_db_connect() -- 21:25:00.668 DEBUG [21957]: Database connection successful -- 21:25:00.668 INFO [21957]: _SERVER found -- 21:25:00.668 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 21:25:00.668 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 21:25:00.668 INFO [21957]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=1r8io0ii6qjknobo7hmsm958e3dc5elk -- 21:25:00.668 INFO [21957]: QUERY_STRING = /app-assets/data/locales/en.json -- 21:25:00.668 INFO [21957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:25:00.679 INFO [21957]: COREGRADE is stopping... -- 21:25:00.679 DEBUG [21957]: Closing database connection -- 21:25:00.679 SQL [21957]: pgsql_close() -- 23:27:44.888 INFO [21963]: COREGRADE is starting... -- 23:27:44.889 INFO [21963]: Version from config: 1.0 -- 23:27:44.889 DEBUG [21963]: Connecting to database... -- 23:27:44.889 DEBUG [21963]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:44.889 SQL [21963]: pgsql_db_connect() -- 23:27:44.893 DEBUG [21963]: Database connection successful -- 23:27:44.893 INFO [21963]: _SERVER found -- 23:27:44.893 INFO [21963]: REMOTE_ADDR = 192.168.1.13 -- 23:27:44.893 INFO [21963]: SERVER_NAME = oameye.works.coregrade.com -- 23:27:44.893 INFO [21963]: QUERY_STRING = -- 23:27:44.893 INFO [21963]: HTTP_X_FORWARDED_FOR = 169.197.108.42 -- 23:27:44.932 INFO [21963]: COREGRADE is stopping... -- 23:27:44.932 DEBUG [21963]: Closing database connection -- 23:27:44.932 SQL [21963]: pgsql_close() -- 00:05:00.744 INFO [27752]: COREGRADE is starting... -- 00:05:00.744 INFO [27752]: Version from config: 1.0 -- 00:05:00.744 DEBUG [27752]: Connecting to database... -- 00:05:00.744 DEBUG [27752]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:05:00.744 SQL [27752]: pgsql_db_connect() -- 00:05:00.749 DEBUG [27752]: Database connection successful -- 00:05:00.749 INFO [27752]: _SERVER found -- 00:05:00.749 INFO [27752]: REMOTE_ADDR = 192.168.1.13 -- 00:05:00.749 INFO [27752]: SERVER_NAME = oameye.works.coregrade.com -- 00:05:00.749 INFO [27752]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296 -- 00:05:00.749 INFO [27752]: QUERY_STRING = /auth -- 00:05:00.749 INFO [27752]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:05:00.784 INFO [27752]: COREGRADE is stopping... -- 00:05:00.784 DEBUG [27752]: Closing database connection -- 00:05:00.784 SQL [27752]: pgsql_close() -- 00:05:00.934 INFO [27752]: COREGRADE is starting... -- 00:05:00.935 INFO [27752]: Version from config: 1.0 -- 00:05:00.935 DEBUG [27752]: Connecting to database... -- 00:05:00.935 DEBUG [27752]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:05:00.935 SQL [27752]: pgsql_db_connect() -- 00:05:00.939 DEBUG [27752]: Database connection successful -- 00:05:00.939 INFO [27752]: _SERVER found -- 00:05:00.939 INFO [27752]: REMOTE_ADDR = 192.168.1.13 -- 00:05:00.939 INFO [27752]: SERVER_NAME = oameye.works.coregrade.com -- 00:05:00.939 INFO [27752]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=i7igvaqq180agellgqe0v69ofognq0bo -- 00:05:00.939 INFO [27752]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 00:05:00.939 INFO [27752]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:05:00.950 INFO [27752]: COREGRADE is stopping... -- 00:05:00.950 DEBUG [27752]: Closing database connection -- 00:05:00.950 SQL [27752]: pgsql_close() -- 00:05:01.737 INFO [27752]: COREGRADE is starting... -- 00:05:01.738 INFO [27752]: Version from config: 1.0 -- 00:05:01.738 DEBUG [27752]: Connecting to database... -- 00:05:01.738 DEBUG [27752]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:05:01.738 SQL [27752]: pgsql_db_connect() -- 00:05:01.742 DEBUG [27752]: Database connection successful -- 00:05:01.742 INFO [27752]: _SERVER found -- 00:05:01.742 INFO [27752]: REMOTE_ADDR = 192.168.1.13 -- 00:05:01.742 INFO [27752]: SERVER_NAME = oameye.works.coregrade.com -- 00:05:01.742 INFO [27752]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1791978288.1582668296; ci_session=i7igvaqq180agellgqe0v69ofognq0bo -- 00:05:01.742 INFO [27752]: QUERY_STRING = /app-assets/data/locales/en.json -- 00:05:01.742 INFO [27752]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:05:01.753 INFO [27752]: COREGRADE is stopping... -- 00:05:01.753 DEBUG [27752]: Closing database connection -- 00:05:01.753 SQL [27752]: pgsql_close() -- 01:44:48.283 INFO [21958]: COREGRADE is starting... -- 01:44:48.283 INFO [21958]: Version from config: 1.0 -- 01:44:48.283 DEBUG [21958]: Connecting to database... -- 01:44:48.283 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:44:48.283 SQL [21958]: pgsql_db_connect() -- 01:44:48.290 DEBUG [21958]: Database connection successful -- 01:44:48.290 INFO [21958]: _SERVER found -- 01:44:48.290 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 01:44:48.290 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 01:44:48.290 INFO [21958]: QUERY_STRING = /.well-known/acme-challenge/u0exko_X0hA7kpebElRJaCvxhPFPsM-RRY8Ugv0YfzA -- 01:44:48.290 INFO [21958]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 01:44:48.309 INFO [21958]: COREGRADE is stopping... -- 01:44:48.309 DEBUG [21958]: Closing database connection -- 01:44:48.309 SQL [21958]: pgsql_close() -- 01:44:48.340 INFO [27753]: COREGRADE is starting... -- 01:44:48.340 INFO [27753]: Version from config: 1.0 -- 01:44:48.340 DEBUG [27753]: Connecting to database... -- 01:44:48.340 DEBUG [27753]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:44:48.340 SQL [27753]: pgsql_db_connect() -- 01:44:48.344 DEBUG [27753]: Database connection successful -- 01:44:48.344 INFO [27753]: _SERVER found -- 01:44:48.344 INFO [27753]: REMOTE_ADDR = 192.168.1.13 -- 01:44:48.344 INFO [27753]: SERVER_NAME = oameye.works.coregrade.com -- 01:44:48.344 INFO [27753]: QUERY_STRING = /.well-known/acme-challenge/u0exko_X0hA7kpebElRJaCvxhPFPsM-RRY8Ugv0YfzA -- 01:44:48.344 INFO [27753]: HTTP_X_FORWARDED_FOR = 34.222.229.130 -- 01:44:48.357 INFO [27753]: COREGRADE is stopping... -- 01:44:48.357 DEBUG [27753]: Closing database connection -- 01:44:48.357 SQL [27753]: pgsql_close() -- 01:44:48.423 INFO [27753]: COREGRADE is starting... -- 01:44:48.423 INFO [27753]: Version from config: 1.0 -- 01:44:48.423 DEBUG [27753]: Connecting to database... -- 01:44:48.423 DEBUG [27753]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:44:48.423 SQL [27753]: pgsql_db_connect() -- 01:44:48.427 DEBUG [27753]: Database connection successful -- 01:44:48.427 INFO [27753]: _SERVER found -- 01:44:48.427 INFO [27753]: REMOTE_ADDR = 192.168.1.13 -- 01:44:48.427 INFO [27753]: SERVER_NAME = oameye.works.coregrade.com -- 01:44:48.427 INFO [27753]: QUERY_STRING = /.well-known/acme-challenge/u0exko_X0hA7kpebElRJaCvxhPFPsM-RRY8Ugv0YfzA -- 01:44:48.427 INFO [27753]: HTTP_X_FORWARDED_FOR = 52.28.236.88 -- 01:44:48.438 INFO [27753]: COREGRADE is stopping... -- 01:44:48.438 DEBUG [27753]: Closing database connection -- 01:44:48.438 SQL [27753]: pgsql_close() -- 01:44:48.449 INFO [21957]: COREGRADE is starting... -- 01:44:48.449 INFO [21957]: Version from config: 1.0 -- 01:44:48.449 DEBUG [21957]: Connecting to database... -- 01:44:48.449 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:44:48.449 SQL [21957]: pgsql_db_connect() -- 01:44:48.453 DEBUG [21957]: Database connection successful -- 01:44:48.453 INFO [21957]: _SERVER found -- 01:44:48.453 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 01:44:48.453 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 01:44:48.453 INFO [21957]: QUERY_STRING = /.well-known/acme-challenge/u0exko_X0hA7kpebElRJaCvxhPFPsM-RRY8Ugv0YfzA -- 01:44:48.453 INFO [21957]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 01:44:48.466 INFO [21957]: COREGRADE is stopping... -- 01:44:48.466 DEBUG [21957]: Closing database connection -- 01:44:48.466 SQL [21957]: pgsql_close() -- 02:04:45.658 INFO [30055]: COREGRADE is starting... -- 02:04:45.658 INFO [30055]: Version from config: 1.0 -- 02:04:45.658 DEBUG [30055]: Connecting to database... -- 02:04:45.658 DEBUG [30055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:04:45.658 SQL [30055]: pgsql_db_connect() -- 02:04:45.663 DEBUG [30055]: Database connection successful -- 02:04:45.663 INFO [30055]: _SERVER found -- 02:04:45.663 INFO [30055]: REMOTE_ADDR = 192.168.1.13 -- 02:04:45.663 INFO [30055]: SERVER_NAME = oameye.works.coregrade.com -- 02:04:45.663 INFO [30055]: QUERY_STRING = -- 02:04:45.663 INFO [30055]: HTTP_X_FORWARDED_FOR = 209.17.97.18 -- 02:04:45.711 INFO [30055]: COREGRADE is stopping... -- 02:04:45.711 DEBUG [30055]: Closing database connection -- 02:04:45.711 SQL [30055]: pgsql_close() -- 08:49:10.571 INFO [30057]: COREGRADE is starting... -- 08:49:10.572 INFO [30057]: Version from config: 1.0 -- 08:49:10.572 DEBUG [30057]: Connecting to database... -- 08:49:10.572 DEBUG [30057]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:10.572 SQL [30057]: pgsql_db_connect() -- 08:49:10.577 DEBUG [30057]: Database connection successful -- 08:49:10.577 INFO [30057]: _SERVER found -- 08:49:10.577 INFO [30057]: REMOTE_ADDR = 192.168.1.13 -- 08:49:10.577 INFO [30057]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:10.577 INFO [30057]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586 -- 08:49:10.577 INFO [30057]: QUERY_STRING = -- 08:49:10.577 INFO [30057]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:10.624 INFO [30057]: COREGRADE is stopping... -- 08:49:10.624 DEBUG [30057]: Closing database connection -- 08:49:10.624 SQL [30057]: pgsql_close() -- 08:49:11.031 INFO [30057]: COREGRADE is starting... -- 08:49:11.031 INFO [30057]: Version from config: 1.0 -- 08:49:11.031 DEBUG [30057]: Connecting to database... -- 08:49:11.031 DEBUG [30057]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:11.031 SQL [30057]: pgsql_db_connect() -- 08:49:11.035 DEBUG [30057]: Database connection successful -- 08:49:11.035 INFO [30057]: _SERVER found -- 08:49:11.035 INFO [30057]: REMOTE_ADDR = 192.168.1.13 -- 08:49:11.035 INFO [30057]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:11.035 INFO [30057]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3 -- 08:49:11.035 INFO [30057]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 08:49:11.035 INFO [30057]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:11.048 INFO [30057]: COREGRADE is stopping... -- 08:49:11.048 DEBUG [30057]: Closing database connection -- 08:49:11.048 SQL [30057]: pgsql_close() -- 08:49:11.060 INFO [21958]: COREGRADE is starting... -- 08:49:11.060 INFO [21958]: Version from config: 1.0 -- 08:49:11.060 DEBUG [21958]: Connecting to database... -- 08:49:11.060 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:11.060 SQL [21958]: pgsql_db_connect() -- 08:49:11.065 DEBUG [21958]: Database connection successful -- 08:49:11.065 INFO [21958]: _SERVER found -- 08:49:11.065 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 08:49:11.065 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:11.065 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3 -- 08:49:11.065 INFO [21958]: QUERY_STRING = /assets/img/footer_1.jpg -- 08:49:11.065 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:11.078 INFO [21958]: COREGRADE is stopping... -- 08:49:11.078 DEBUG [21958]: Closing database connection -- 08:49:11.078 SQL [21958]: pgsql_close() -- 08:49:15.926 INFO [21958]: COREGRADE is starting... -- 08:49:15.927 INFO [21958]: Version from config: 1.0 -- 08:49:15.927 DEBUG [21958]: Connecting to database... -- 08:49:15.927 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:15.927 SQL [21958]: pgsql_db_connect() -- 08:49:15.927 INFO [30057]: COREGRADE is starting... -- 08:49:15.927 INFO [30057]: Version from config: 1.0 -- 08:49:15.927 DEBUG [30057]: Connecting to database... -- 08:49:15.927 DEBUG [30057]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:15.927 SQL [30057]: pgsql_db_connect() -- 08:49:15.931 DEBUG [21958]: Database connection successful -- 08:49:15.931 INFO [21958]: _SERVER found -- 08:49:15.931 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 08:49:15.931 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:15.931 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954; _gat_gtag_UA_54829827_2=1 -- 08:49:15.931 INFO [21958]: QUERY_STRING = /welcome/viewLogin -- 08:49:15.931 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:15.963 INFO [21958]: COREGRADE is stopping... -- 08:49:15.963 DEBUG [21958]: Closing database connection -- 08:49:15.963 SQL [21958]: pgsql_close() -- 08:49:15.931 DEBUG [30057]: Database connection successful -- 08:49:15.931 INFO [30057]: _SERVER found -- 08:49:15.931 INFO [30057]: REMOTE_ADDR = 192.168.1.13 -- 08:49:15.931 INFO [30057]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:15.931 INFO [30057]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954; _gat_gtag_UA_54829827_2=1 -- 08:49:15.931 INFO [30057]: QUERY_STRING = /auth -- 08:49:15.931 INFO [30057]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:15.967 INFO [30057]: COREGRADE is stopping... -- 08:49:15.967 DEBUG [30057]: Closing database connection -- 08:49:15.967 SQL [30057]: pgsql_close() -- 08:49:15.982 INFO [21958]: COREGRADE is starting... -- 08:49:15.982 INFO [21958]: Version from config: 1.0 -- 08:49:15.982 DEBUG [21958]: Connecting to database... -- 08:49:15.982 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:15.982 SQL [21958]: pgsql_db_connect() -- 08:49:15.986 DEBUG [21958]: Database connection successful -- 08:49:15.986 INFO [21958]: _SERVER found -- 08:49:15.986 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 08:49:15.986 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:15.986 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954; _gat_gtag_UA_54829827_2=1 -- 08:49:15.986 INFO [21958]: QUERY_STRING = /auth/index -- 08:49:15.986 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:16.018 INFO [21958]: COREGRADE is stopping... -- 08:49:16.018 DEBUG [21958]: Closing database connection -- 08:49:16.018 SQL [21958]: pgsql_close() -- 08:49:16.188 INFO [30057]: COREGRADE is starting... -- 08:49:16.188 INFO [30057]: Version from config: 1.0 -- 08:49:16.188 DEBUG [30057]: Connecting to database... -- 08:49:16.188 DEBUG [30057]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:16.188 SQL [30057]: pgsql_db_connect() -- 08:49:16.192 DEBUG [30057]: Database connection successful -- 08:49:16.192 INFO [30057]: _SERVER found -- 08:49:16.192 INFO [30057]: REMOTE_ADDR = 192.168.1.13 -- 08:49:16.192 INFO [30057]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:16.192 INFO [30057]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954; _gat_gtag_UA_54829827_2=1 -- 08:49:16.192 INFO [30057]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 08:49:16.192 INFO [30057]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:16.204 INFO [30057]: COREGRADE is stopping... -- 08:49:16.204 DEBUG [30057]: Closing database connection -- 08:49:16.204 SQL [30057]: pgsql_close() -- 08:49:16.236 INFO [30057]: COREGRADE is starting... -- 08:49:16.236 INFO [30057]: Version from config: 1.0 -- 08:49:16.236 DEBUG [30057]: Connecting to database... -- 08:49:16.236 DEBUG [30057]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:16.236 SQL [30057]: pgsql_db_connect() -- 08:49:16.240 DEBUG [30057]: Database connection successful -- 08:49:16.240 INFO [30057]: _SERVER found -- 08:49:16.240 INFO [30057]: REMOTE_ADDR = 192.168.1.13 -- 08:49:16.240 INFO [30057]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:16.240 INFO [30057]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954; _gat_gtag_UA_54829827_2=1 -- 08:49:16.240 INFO [30057]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:49:16.240 INFO [30057]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:16.252 INFO [30057]: COREGRADE is stopping... -- 08:49:16.252 DEBUG [30057]: Closing database connection -- 08:49:16.252 SQL [30057]: pgsql_close() -- 08:49:17.695 INFO [30057]: COREGRADE is starting... -- 08:49:17.695 INFO [30057]: Version from config: 1.0 -- 08:49:17.695 DEBUG [30057]: Connecting to database... -- 08:49:17.695 DEBUG [30057]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:17.695 SQL [30057]: pgsql_db_connect() -- 08:49:17.732 INFO [30057]: COREGRADE is starting... -- 08:49:17.733 INFO [30057]: Version from config: 1.0 -- 08:49:17.733 DEBUG [30057]: Connecting to database... -- 08:49:17.733 DEBUG [30057]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:17.733 SQL [30057]: pgsql_db_connect() -- 08:49:17.736 DEBUG [30057]: Database connection successful -- 08:49:17.736 INFO [30057]: _SERVER found -- 08:49:17.736 INFO [30057]: REMOTE_ADDR = 192.168.1.13 -- 08:49:17.736 INFO [30057]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:17.736 INFO [30057]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954; _gat_gtag_UA_54829827_2=1 -- 08:49:17.736 INFO [30057]: QUERY_STRING = -- 08:49:17.736 INFO [30057]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:17.736 INFO [30057]: SystemStatus()09-09-********~************ -- 08:49:17.736 INFO [30057]: long coregrade_api_main(CVars in, CVars &out) -- 08:49:17.736 INFO [30057]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 08:49:17.736 INFO [30057]: account calls -- 08:49:17.736 INFO [30057]: account_calls() -- 08:49:17.737 INFO [30057]: LoginCoreGradeAccount() -- 08:49:17.737 FLOG_MAX [30057]: REQ_STRING(username) -- 08:49:17.737 FLOG_MAX [30057]: REQ_STRING(password) -- 08:49:17.737 FLOG_MAX [30057]: REQ_STRING(sessionid) -- 08:49:17.737 FLOG_MAX [30057]: long load_db_record( CVars &rec, const char * query, ... ) -- 08:49:17.737 SQL [30057]: pgsql_query() -- 08:49:17.737 SQL [30057]: About to run query: -- 08:49:17.737 SQL [30057]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 08:49:17.740 SQL [30057]: Found rows: 1 -- 08:49:17.740 FLOG_MAX [30057]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=16 -- 08:49:17.740 INFO [30057]: long SessionCheck(long uid, const char *sessionid, int create ) -- 08:49:17.740 SQL [30057]: pgsql_exec() -- 08:49:17.740 SQL [30057]: About to run query: -- 08:49:17.741 SQL [30057]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 08:49:17.742 SQL [30057]: PQcmdTuples: 1 -- 08:49:17.742 SQL [30057]: Affected rows: 1 -- 08:49:17.742 SQL [30057]: pgsql_exec() -- 08:49:17.742 SQL [30057]: About to run query: -- 08:49:17.742 SQL [30057]: DELETE FROM members_session WHERE member_id=7 -- 08:49:17.742 SQL [30057]: PQcmdTuples: 0 -- 08:49:17.742 SQL [30057]: Affected rows: 0 -- 08:49:17.742 SQL [30057]: pgsql_query() -- 08:49:17.742 SQL [30057]: About to run query: -- 08:49:17.742 SQL [30057]: SELECT * FROM members_session WHERE member_id=7 AND session<>'088977EEAC72AF1F2101935E8A858E85' -- 08:49:17.743 SQL [30057]: Found rows: 0 -- 08:49:17.743 SQL [30057]: Found rows: 0 -- 08:49:17.743 FLOG_MAX [30057]: long load_db_record( CVars &rec, const char * query, ... ) -- 08:49:17.743 SQL [30057]: pgsql_query() -- 08:49:17.743 SQL [30057]: About to run query: -- 08:49:17.743 SQL [30057]: SELECT * FROM members_session WHERE member_id=7 AND session='088977EEAC72AF1F2101935E8A858E85' -- 08:49:17.743 SQL [30057]: Found rows: 0 -- 08:49:17.743 SQL [30057]: Found rows: 0 -- 08:49:17.743 FLOG_MAX [30057]: insert_db_record() -- 08:49:17.743 SQL [30057]: pgsql_exec() -- 08:49:17.743 SQL [30057]: About to run query: -- 08:49:17.743 SQL [30057]: INSERT INTO members_session (member_id,session) VALUES ('7','088977EEAC72AF1F2101935E8A858E85') -- 08:49:17.746 SQL [30057]: PQcmdTuples: 1 -- 08:49:17.746 SQL [30057]: Affected rows: 1 -- 08:49:17.746 FLOG_MAX [30057]: SELECT currval('members_session_id_seq') -- 08:49:17.746 SQL [30057]: pgsql_query() -- 08:49:17.746 SQL [30057]: About to run query: -- 08:49:17.746 SQL [30057]: SELECT currval('members_session_id_seq') -- 08:49:17.746 SQL [30057]: Found rows: 1 -- 08:49:17.746 INFO [30057]: CreateDefaultPage() -- 08:49:17.746 FLOG_MAX [30057]: long load_db_record( CVars &rec, const char * query, ... ) -- 08:49:17.746 SQL [30057]: pgsql_query() -- 08:49:17.746 SQL [30057]: About to run query: -- 08:49:17.746 SQL [30057]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 08:49:17.747 SQL [30057]: Found rows: 1 -- 08:49:17.747 FLOG_MAX [30057]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 08:49:17.747 SQL [30057]: pgsql_query() -- 08:49:17.747 SQL [30057]: About to run query: -- 08:49:17.747 SQL [30057]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 08:49:17.747 SQL [30057]: Found rows: 1 -- 08:49:17.747 INFO [30057]: /CreateDefaultPage() -- 08:49:17.747 INFO [30057]: /LoginCoreGradeAccount() -- 08:49:17.747 INFO [30057]: RET: added=2020-02-05 09:42:12.816064 -- 08:49:17.747 INFO [30057]: RET: email=tokslaw@chiefsoft.com -- 08:49:17.747 INFO [30057]: RET: firstname=Tokunbo -- 08:49:17.747 INFO [30057]: RET: folder=5D06B187B1E2285A63AD1D0ECB670D98 -- 08:49:17.747 INFO [30057]: RET: id=7 -- 08:49:17.747 INFO [30057]: RET: last_login= -- 08:49:17.747 INFO [30057]: RET: lastname=Lawal -- 08:49:17.747 INFO [30057]: RET: loc=192.168.1.13 -- 08:49:17.747 INFO [30057]: RET: member_id=7 -- 08:49:17.747 INFO [30057]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 08:49:17.747 INFO [30057]: RET: phone= -- 08:49:17.747 INFO [30057]: RET: pid= -- 08:49:17.747 INFO [30057]: RET: result=YES I GET TO BACK END -- 08:49:17.747 INFO [30057]: RET: sessionid=088977EEAC72AF1F2101935E8A858E85 -- 08:49:17.747 INFO [30057]: RET: status=1 -- 08:49:17.747 INFO [30057]: RET: stauts=OK -- 08:49:17.747 INFO [30057]: RET: username=tokslaw@chiefsoft.com -- 08:49:17.747 INFO [30057]: RET: verified= -- 08:49:17.749 INFO [30057]: COREGRADE is stopping... -- 08:49:17.749 DEBUG [30057]: Closing database connection -- 08:49:17.749 SQL [30057]: pgsql_close() -- 08:49:17.699 DEBUG [30057]: Database connection successful -- 08:49:17.699 INFO [30057]: _SERVER found -- 08:49:17.699 INFO [30057]: REMOTE_ADDR = 192.168.1.13 -- 08:49:17.699 INFO [30057]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:17.699 INFO [30057]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954; _gat_gtag_UA_54829827_2=1 -- 08:49:17.699 INFO [30057]: QUERY_STRING = /auth -- 08:49:17.699 INFO [30057]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:17.749 INFO [30057]: COREGRADE is stopping... -- 08:49:17.749 DEBUG [30057]: Closing database connection -- 08:49:17.749 SQL [30057]: pgsql_close() -- 08:49:17.765 INFO [30057]: COREGRADE is starting... -- 08:49:17.766 INFO [30057]: Version from config: 1.0 -- 08:49:17.766 DEBUG [30057]: Connecting to database... -- 08:49:17.766 DEBUG [30057]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:17.766 SQL [30057]: pgsql_db_connect() -- 08:49:17.769 DEBUG [30057]: Database connection successful -- 08:49:17.769 INFO [30057]: _SERVER found -- 08:49:17.769 INFO [30057]: REMOTE_ADDR = 192.168.1.13 -- 08:49:17.769 INFO [30057]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:17.769 INFO [30057]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954; _gat_gtag_UA_54829827_2=1 -- 08:49:17.769 INFO [30057]: QUERY_STRING = /member/index -- 08:49:17.769 INFO [30057]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:17.810 INFO [30057]: COREGRADE is stopping... -- 08:49:17.810 DEBUG [30057]: Closing database connection -- 08:49:17.810 SQL [30057]: pgsql_close() -- 08:49:18.271 INFO [30057]: COREGRADE is starting... -- 08:49:18.271 INFO [30057]: Version from config: 1.0 -- 08:49:18.272 DEBUG [30057]: Connecting to database... -- 08:49:18.272 DEBUG [30057]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:18.272 SQL [30057]: pgsql_db_connect() -- 08:49:18.276 DEBUG [30057]: Database connection successful -- 08:49:18.276 INFO [30057]: _SERVER found -- 08:49:18.276 INFO [30057]: REMOTE_ADDR = 192.168.1.13 -- 08:49:18.276 INFO [30057]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:18.276 INFO [30057]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954; _gat_gtag_UA_54829827_2=1 -- 08:49:18.276 INFO [30057]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 08:49:18.276 INFO [30057]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:18.287 INFO [30057]: COREGRADE is stopping... -- 08:49:18.287 DEBUG [30057]: Closing database connection -- 08:49:18.287 SQL [30057]: pgsql_close() -- 08:49:18.360 INFO [30057]: COREGRADE is starting... -- 08:49:18.360 INFO [30057]: Version from config: 1.0 -- 08:49:18.360 DEBUG [30057]: Connecting to database... -- 08:49:18.360 DEBUG [30057]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:18.360 SQL [30057]: pgsql_db_connect() -- 08:49:18.364 DEBUG [30057]: Database connection successful -- 08:49:18.364 INFO [30057]: _SERVER found -- 08:49:18.364 INFO [30057]: REMOTE_ADDR = 192.168.1.13 -- 08:49:18.364 INFO [30057]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:18.364 INFO [30057]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954; _gat_gtag_UA_54829827_2=1 -- 08:49:18.364 INFO [30057]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:49:18.364 INFO [30057]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:18.375 INFO [30057]: COREGRADE is stopping... -- 08:49:18.375 DEBUG [30057]: Closing database connection -- 08:49:18.375 SQL [30057]: pgsql_close() -- 08:49:22.534 INFO [30057]: COREGRADE is starting... -- 08:49:22.534 INFO [30057]: Version from config: 1.0 -- 08:49:22.534 DEBUG [30057]: Connecting to database... -- 08:49:22.534 DEBUG [30057]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:22.534 SQL [30057]: pgsql_db_connect() -- 08:49:22.538 DEBUG [30057]: Database connection successful -- 08:49:22.538 INFO [30057]: _SERVER found -- 08:49:22.538 INFO [30057]: REMOTE_ADDR = 192.168.1.13 -- 08:49:22.538 INFO [30057]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:22.538 INFO [30057]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954; _gat_gtag_UA_54829827_2=1 -- 08:49:22.538 INFO [30057]: QUERY_STRING = /member/configure -- 08:49:22.538 INFO [30057]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:22.580 INFO [30057]: COREGRADE is stopping... -- 08:49:22.580 DEBUG [30057]: Closing database connection -- 08:49:22.580 SQL [30057]: pgsql_close() -- 08:49:22.817 INFO [30057]: COREGRADE is starting... -- 08:49:22.817 INFO [30057]: Version from config: 1.0 -- 08:49:22.817 DEBUG [30057]: Connecting to database... -- 08:49:22.817 DEBUG [30057]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:22.817 SQL [30057]: pgsql_db_connect() -- 08:49:22.821 DEBUG [30057]: Database connection successful -- 08:49:22.821 INFO [30057]: _SERVER found -- 08:49:22.821 INFO [30057]: REMOTE_ADDR = 192.168.1.13 -- 08:49:22.821 INFO [30057]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:22.821 INFO [30057]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954; _gat_gtag_UA_54829827_2=1 -- 08:49:22.821 INFO [30057]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 08:49:22.821 INFO [30057]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:22.832 INFO [30057]: COREGRADE is stopping... -- 08:49:22.832 DEBUG [30057]: Closing database connection -- 08:49:22.832 SQL [30057]: pgsql_close() -- 08:49:22.922 INFO [30057]: COREGRADE is starting... -- 08:49:22.923 INFO [30057]: Version from config: 1.0 -- 08:49:22.923 DEBUG [30057]: Connecting to database... -- 08:49:22.923 DEBUG [30057]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:22.923 SQL [30057]: pgsql_db_connect() -- 08:49:22.926 DEBUG [30057]: Database connection successful -- 08:49:22.926 INFO [30057]: _SERVER found -- 08:49:22.926 INFO [30057]: REMOTE_ADDR = 192.168.1.13 -- 08:49:22.926 INFO [30057]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:22.926 INFO [30057]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954; _gat_gtag_UA_54829827_2=1 -- 08:49:22.926 INFO [30057]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:49:22.926 INFO [30057]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:22.937 INFO [30057]: COREGRADE is stopping... -- 08:49:22.937 DEBUG [30057]: Closing database connection -- 08:49:22.938 SQL [30057]: pgsql_close() -- 08:49:24.172 INFO [30057]: COREGRADE is starting... -- 08:49:24.172 INFO [30057]: Version from config: 1.0 -- 08:49:24.172 DEBUG [30057]: Connecting to database... -- 08:49:24.172 DEBUG [30057]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:24.172 SQL [30057]: pgsql_db_connect() -- 08:49:24.176 DEBUG [30057]: Database connection successful -- 08:49:24.176 INFO [30057]: _SERVER found -- 08:49:24.176 INFO [30057]: REMOTE_ADDR = 192.168.1.13 -- 08:49:24.176 INFO [30057]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:24.176 INFO [30057]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954; _gat_gtag_UA_54829827_2=1 -- 08:49:24.176 INFO [30057]: QUERY_STRING = /member/mycalendar -- 08:49:24.176 INFO [30057]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:24.213 INFO [30057]: COREGRADE is stopping... -- 08:49:24.213 DEBUG [30057]: Closing database connection -- 08:49:24.213 SQL [30057]: pgsql_close() -- 08:49:24.513 INFO [30057]: COREGRADE is starting... -- 08:49:24.513 INFO [30057]: Version from config: 1.0 -- 08:49:24.513 DEBUG [30057]: Connecting to database... -- 08:49:24.513 DEBUG [30057]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:24.513 SQL [30057]: pgsql_db_connect() -- 08:49:24.517 DEBUG [30057]: Database connection successful -- 08:49:24.517 INFO [30057]: _SERVER found -- 08:49:24.517 INFO [30057]: REMOTE_ADDR = 192.168.1.13 -- 08:49:24.517 INFO [30057]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:24.517 INFO [30057]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954; _gat_gtag_UA_54829827_2=1 -- 08:49:24.517 INFO [30057]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:49:24.517 INFO [30057]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:24.528 INFO [30057]: COREGRADE is stopping... -- 08:49:24.528 DEBUG [30057]: Closing database connection -- 08:49:24.528 SQL [30057]: pgsql_close() -- 08:49:25.766 INFO [30057]: COREGRADE is starting... -- 08:49:25.766 INFO [30057]: Version from config: 1.0 -- 08:49:25.766 DEBUG [30057]: Connecting to database... -- 08:49:25.766 DEBUG [30057]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:25.766 SQL [30057]: pgsql_db_connect() -- 08:49:25.770 DEBUG [30057]: Database connection successful -- 08:49:25.770 INFO [30057]: _SERVER found -- 08:49:25.770 INFO [30057]: REMOTE_ADDR = 192.168.1.13 -- 08:49:25.770 INFO [30057]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:25.770 INFO [30057]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954; _gat_gtag_UA_54829827_2=1 -- 08:49:25.770 INFO [30057]: QUERY_STRING = /member/configure -- 08:49:25.770 INFO [30057]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:25.813 INFO [30057]: COREGRADE is stopping... -- 08:49:25.813 DEBUG [30057]: Closing database connection -- 08:49:25.813 SQL [30057]: pgsql_close() -- 08:49:26.083 INFO [30057]: COREGRADE is starting... -- 08:49:26.083 INFO [30057]: Version from config: 1.0 -- 08:49:26.083 DEBUG [30057]: Connecting to database... -- 08:49:26.083 DEBUG [30057]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:26.083 SQL [30057]: pgsql_db_connect() -- 08:49:26.087 DEBUG [30057]: Database connection successful -- 08:49:26.087 INFO [30057]: _SERVER found -- 08:49:26.087 INFO [30057]: REMOTE_ADDR = 192.168.1.13 -- 08:49:26.087 INFO [30057]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:26.087 INFO [30057]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954; _gat_gtag_UA_54829827_2=1 -- 08:49:26.087 INFO [30057]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:49:26.087 INFO [30057]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:26.098 INFO [30057]: COREGRADE is stopping... -- 08:49:26.098 DEBUG [30057]: Closing database connection -- 08:49:26.098 SQL [30057]: pgsql_close() -- 08:49:26.357 INFO [30057]: COREGRADE is starting... -- 08:49:26.357 INFO [30057]: Version from config: 1.0 -- 08:49:26.357 DEBUG [30057]: Connecting to database... -- 08:49:26.357 DEBUG [30057]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:26.357 SQL [30057]: pgsql_db_connect() -- 08:49:26.361 DEBUG [30057]: Database connection successful -- 08:49:26.361 INFO [30057]: _SERVER found -- 08:49:26.361 INFO [30057]: REMOTE_ADDR = 192.168.1.13 -- 08:49:26.361 INFO [30057]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:26.361 INFO [30057]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954; _gat_gtag_UA_54829827_2=1 -- 08:49:26.361 INFO [30057]: QUERY_STRING = /member -- 08:49:26.361 INFO [30057]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:26.400 INFO [30057]: COREGRADE is stopping... -- 08:49:26.400 DEBUG [30057]: Closing database connection -- 08:49:26.400 SQL [30057]: pgsql_close() -- 08:49:26.720 INFO [30057]: COREGRADE is starting... -- 08:49:26.720 INFO [30057]: Version from config: 1.0 -- 08:49:26.720 DEBUG [30057]: Connecting to database... -- 08:49:26.721 DEBUG [30057]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:26.721 SQL [30057]: pgsql_db_connect() -- 08:49:26.724 DEBUG [30057]: Database connection successful -- 08:49:26.724 INFO [30057]: _SERVER found -- 08:49:26.724 INFO [30057]: REMOTE_ADDR = 192.168.1.13 -- 08:49:26.724 INFO [30057]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:26.724 INFO [30057]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954; _gat_gtag_UA_54829827_2=1 -- 08:49:26.724 INFO [30057]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:49:26.724 INFO [30057]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:26.735 INFO [30057]: COREGRADE is stopping... -- 08:49:26.736 DEBUG [30057]: Closing database connection -- 08:49:26.736 SQL [30057]: pgsql_close() -- 08:49:27.953 INFO [30057]: COREGRADE is starting... -- 08:49:27.953 INFO [30057]: Version from config: 1.0 -- 08:49:27.953 DEBUG [30057]: Connecting to database... -- 08:49:27.953 DEBUG [30057]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:27.953 SQL [30057]: pgsql_db_connect() -- 08:49:27.957 DEBUG [30057]: Database connection successful -- 08:49:27.957 INFO [30057]: _SERVER found -- 08:49:27.957 INFO [30057]: REMOTE_ADDR = 192.168.1.13 -- 08:49:27.957 INFO [30057]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:27.957 INFO [30057]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954; _gat_gtag_UA_54829827_2=1 -- 08:49:27.957 INFO [30057]: QUERY_STRING = /member/page -- 08:49:27.957 INFO [30057]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:27.998 INFO [30057]: COREGRADE is stopping... -- 08:49:27.998 DEBUG [30057]: Closing database connection -- 08:49:27.998 SQL [30057]: pgsql_close() -- 08:49:28.439 INFO [30057]: COREGRADE is starting... -- 08:49:28.439 INFO [30057]: Version from config: 1.0 -- 08:49:28.439 DEBUG [30057]: Connecting to database... -- 08:49:28.439 DEBUG [30057]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:28.439 SQL [30057]: pgsql_db_connect() -- 08:49:28.444 DEBUG [30057]: Database connection successful -- 08:49:28.444 INFO [30057]: _SERVER found -- 08:49:28.444 INFO [30057]: REMOTE_ADDR = 192.168.1.13 -- 08:49:28.444 INFO [30057]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:28.444 INFO [30057]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954; _gat_gtag_UA_54829827_2=1 -- 08:49:28.444 INFO [30057]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:49:28.444 INFO [30057]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:28.455 INFO [30057]: COREGRADE is stopping... -- 08:49:28.455 DEBUG [30057]: Closing database connection -- 08:49:28.455 SQL [30057]: pgsql_close() -- 08:49:54.198 INFO [27751]: COREGRADE is starting... -- 08:49:54.198 INFO [27751]: Version from config: 1.0 -- 08:49:54.198 DEBUG [27751]: Connecting to database... -- 08:49:54.198 DEBUG [27751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:54.198 SQL [27751]: pgsql_db_connect() -- 08:49:54.202 DEBUG [27751]: Database connection successful -- 08:49:54.202 INFO [27751]: _SERVER found -- 08:49:54.202 INFO [27751]: REMOTE_ADDR = 192.168.1.13 -- 08:49:54.202 INFO [27751]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:54.202 INFO [27751]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954; _gat_gtag_UA_54829827_2=1 -- 08:49:54.202 INFO [27751]: QUERY_STRING = /member/viewCardAddAction -- 08:49:54.202 INFO [27751]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:54.235 INFO [27751]: COREGRADE is stopping... -- 08:49:54.235 DEBUG [27751]: Closing database connection -- 08:49:54.235 SQL [27751]: pgsql_close() -- 08:49:56.705 INFO [27751]: COREGRADE is starting... -- 08:49:56.706 INFO [27751]: Version from config: 1.0 -- 08:49:56.706 DEBUG [27751]: Connecting to database... -- 08:49:56.706 DEBUG [27751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:56.706 SQL [27751]: pgsql_db_connect() -- 08:49:56.710 DEBUG [27751]: Database connection successful -- 08:49:56.710 INFO [27751]: _SERVER found -- 08:49:56.710 INFO [27751]: REMOTE_ADDR = 192.168.1.13 -- 08:49:56.710 INFO [27751]: SERVER_NAME = oameye.works.coregrade.com -- 08:49:56.710 INFO [27751]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954; _gat_gtag_UA_54829827_2=1 -- 08:49:56.710 INFO [27751]: QUERY_STRING = /member/viewCardAddAction -- 08:49:56.710 INFO [27751]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:49:56.741 INFO [27751]: COREGRADE is stopping... -- 08:49:56.741 DEBUG [27751]: Closing database connection -- 08:49:56.741 SQL [27751]: pgsql_close() -- 08:50:18.948 INFO [21959]: COREGRADE is starting... -- 08:50:18.948 INFO [21959]: Version from config: 1.0 -- 08:50:18.948 DEBUG [21959]: Connecting to database... -- 08:50:18.948 DEBUG [21959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:18.948 SQL [21959]: pgsql_db_connect() -- 08:50:18.952 DEBUG [21959]: Database connection successful -- 08:50:18.952 INFO [21959]: _SERVER found -- 08:50:18.952 INFO [21959]: REMOTE_ADDR = 192.168.1.13 -- 08:50:18.952 INFO [21959]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:18.952 INFO [21959]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:50:18.952 INFO [21959]: QUERY_STRING = /member/viewCardAddAction -- 08:50:18.952 INFO [21959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:50:18.988 INFO [21959]: COREGRADE is stopping... -- 08:50:18.988 DEBUG [21959]: Closing database connection -- 08:50:18.988 SQL [21959]: pgsql_close() -- 08:50:21.264 INFO [21959]: COREGRADE is starting... -- 08:50:21.264 INFO [21959]: Version from config: 1.0 -- 08:50:21.264 DEBUG [21959]: Connecting to database... -- 08:50:21.264 DEBUG [21959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:21.264 SQL [21959]: pgsql_db_connect() -- 08:50:21.268 DEBUG [21959]: Database connection successful -- 08:50:21.268 INFO [21959]: _SERVER found -- 08:50:21.268 INFO [21959]: REMOTE_ADDR = 192.168.1.13 -- 08:50:21.268 INFO [21959]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:21.268 INFO [21959]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:50:21.268 INFO [21959]: QUERY_STRING = /member/viewCardAddAction -- 08:50:21.268 INFO [21959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:50:21.300 INFO [21959]: COREGRADE is stopping... -- 08:50:21.300 DEBUG [21959]: Closing database connection -- 08:50:21.300 SQL [21959]: pgsql_close() -- 08:50:23.213 INFO [21959]: COREGRADE is starting... -- 08:50:23.213 INFO [21959]: Version from config: 1.0 -- 08:50:23.213 DEBUG [21959]: Connecting to database... -- 08:50:23.213 DEBUG [21959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:23.213 SQL [21959]: pgsql_db_connect() -- 08:50:23.217 DEBUG [21959]: Database connection successful -- 08:50:23.217 INFO [21959]: _SERVER found -- 08:50:23.217 INFO [21959]: REMOTE_ADDR = 192.168.1.13 -- 08:50:23.217 INFO [21959]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:23.217 INFO [21959]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:50:23.217 INFO [21959]: QUERY_STRING = /member/viewCardAddAction -- 08:50:23.217 INFO [21959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:50:23.248 INFO [21959]: COREGRADE is stopping... -- 08:50:23.248 DEBUG [21959]: Closing database connection -- 08:50:23.248 SQL [21959]: pgsql_close() -- 08:50:23.800 INFO [21959]: COREGRADE is starting... -- 08:50:23.800 INFO [21959]: Version from config: 1.0 -- 08:50:23.800 DEBUG [21959]: Connecting to database... -- 08:50:23.800 DEBUG [21959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:23.800 SQL [21959]: pgsql_db_connect() -- 08:50:23.804 DEBUG [21959]: Database connection successful -- 08:50:23.804 INFO [21959]: _SERVER found -- 08:50:23.804 INFO [21959]: REMOTE_ADDR = 192.168.1.13 -- 08:50:23.804 INFO [21959]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:23.804 INFO [21959]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:50:23.804 INFO [21959]: QUERY_STRING = /member/viewCardAddAction -- 08:50:23.804 INFO [21959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:50:23.835 INFO [21959]: COREGRADE is stopping... -- 08:50:23.835 DEBUG [21959]: Closing database connection -- 08:50:23.835 SQL [21959]: pgsql_close() -- 08:50:24.556 INFO [21959]: COREGRADE is starting... -- 08:50:24.557 INFO [21959]: Version from config: 1.0 -- 08:50:24.557 DEBUG [21959]: Connecting to database... -- 08:50:24.557 DEBUG [21959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:24.557 SQL [21959]: pgsql_db_connect() -- 08:50:24.561 DEBUG [21959]: Database connection successful -- 08:50:24.561 INFO [21959]: _SERVER found -- 08:50:24.561 INFO [21959]: REMOTE_ADDR = 192.168.1.13 -- 08:50:24.561 INFO [21959]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:24.561 INFO [21959]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:50:24.561 INFO [21959]: QUERY_STRING = /member/viewCardAddAction -- 08:50:24.561 INFO [21959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:50:24.592 INFO [21959]: COREGRADE is stopping... -- 08:50:24.592 DEBUG [21959]: Closing database connection -- 08:50:24.592 SQL [21959]: pgsql_close() -- 08:50:25.454 INFO [21959]: COREGRADE is starting... -- 08:50:25.454 INFO [21959]: Version from config: 1.0 -- 08:50:25.454 DEBUG [21959]: Connecting to database... -- 08:50:25.454 DEBUG [21959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:25.454 SQL [21959]: pgsql_db_connect() -- 08:50:25.458 DEBUG [21959]: Database connection successful -- 08:50:25.458 INFO [21959]: _SERVER found -- 08:50:25.458 INFO [21959]: REMOTE_ADDR = 192.168.1.13 -- 08:50:25.458 INFO [21959]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:25.458 INFO [21959]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:50:25.458 INFO [21959]: QUERY_STRING = /member/viewCardAddAction -- 08:50:25.458 INFO [21959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:50:25.489 INFO [21959]: COREGRADE is stopping... -- 08:50:25.489 DEBUG [21959]: Closing database connection -- 08:50:25.489 SQL [21959]: pgsql_close() -- 08:50:31.107 INFO [21964]: COREGRADE is starting... -- 08:50:31.107 INFO [21964]: Version from config: 1.0 -- 08:50:31.107 DEBUG [21964]: Connecting to database... -- 08:50:31.107 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:31.107 SQL [21964]: pgsql_db_connect() -- 08:50:31.111 DEBUG [21964]: Database connection successful -- 08:50:31.111 INFO [21964]: _SERVER found -- 08:50:31.111 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 08:50:31.111 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:31.111 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:50:31.111 INFO [21964]: QUERY_STRING = /member -- 08:50:31.111 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:50:31.154 INFO [21964]: COREGRADE is stopping... -- 08:50:31.154 DEBUG [21964]: Closing database connection -- 08:50:31.154 SQL [21964]: pgsql_close() -- 08:50:31.422 INFO [21964]: COREGRADE is starting... -- 08:50:31.422 INFO [21964]: Version from config: 1.0 -- 08:50:31.422 DEBUG [21964]: Connecting to database... -- 08:50:31.422 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:31.422 SQL [21964]: pgsql_db_connect() -- 08:50:31.426 DEBUG [21964]: Database connection successful -- 08:50:31.426 INFO [21964]: _SERVER found -- 08:50:31.426 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 08:50:31.426 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:31.426 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:50:31.426 INFO [21964]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:50:31.426 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:50:31.437 INFO [21964]: COREGRADE is stopping... -- 08:50:31.437 DEBUG [21964]: Closing database connection -- 08:50:31.437 SQL [21964]: pgsql_close() -- 08:50:32.685 INFO [21964]: COREGRADE is starting... -- 08:50:32.686 INFO [21964]: Version from config: 1.0 -- 08:50:32.686 DEBUG [21964]: Connecting to database... -- 08:50:32.686 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:32.686 SQL [21964]: pgsql_db_connect() -- 08:50:32.690 DEBUG [21964]: Database connection successful -- 08:50:32.690 INFO [21964]: _SERVER found -- 08:50:32.690 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 08:50:32.690 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:32.690 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:50:32.690 INFO [21964]: QUERY_STRING = /member/page -- 08:50:32.690 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:50:32.731 INFO [21964]: COREGRADE is stopping... -- 08:50:32.731 DEBUG [21964]: Closing database connection -- 08:50:32.731 SQL [21964]: pgsql_close() -- 08:50:32.974 INFO [21964]: COREGRADE is starting... -- 08:50:32.975 INFO [21964]: Version from config: 1.0 -- 08:50:32.975 DEBUG [21964]: Connecting to database... -- 08:50:32.975 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:32.975 SQL [21964]: pgsql_db_connect() -- 08:50:32.979 DEBUG [21964]: Database connection successful -- 08:50:32.979 INFO [21964]: _SERVER found -- 08:50:32.979 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 08:50:32.979 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:32.979 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:50:32.979 INFO [21964]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:50:32.979 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:50:32.990 INFO [21964]: COREGRADE is stopping... -- 08:50:32.990 DEBUG [21964]: Closing database connection -- 08:50:32.990 SQL [21964]: pgsql_close() -- 08:50:35.570 INFO [21964]: COREGRADE is starting... -- 08:50:35.570 INFO [21964]: Version from config: 1.0 -- 08:50:35.570 DEBUG [21964]: Connecting to database... -- 08:50:35.570 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:35.570 SQL [21964]: pgsql_db_connect() -- 08:50:35.574 DEBUG [21964]: Database connection successful -- 08:50:35.574 INFO [21964]: _SERVER found -- 08:50:35.574 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 08:50:35.574 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:35.574 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:50:35.574 INFO [21964]: QUERY_STRING = /member/configure -- 08:50:35.574 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:50:35.616 INFO [21964]: COREGRADE is stopping... -- 08:50:35.616 DEBUG [21964]: Closing database connection -- 08:50:35.616 SQL [21964]: pgsql_close() -- 08:50:35.854 INFO [21964]: COREGRADE is starting... -- 08:50:35.855 INFO [21964]: Version from config: 1.0 -- 08:50:35.855 DEBUG [21964]: Connecting to database... -- 08:50:35.855 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:35.855 SQL [21964]: pgsql_db_connect() -- 08:50:35.859 DEBUG [21964]: Database connection successful -- 08:50:35.859 INFO [21964]: _SERVER found -- 08:50:35.859 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 08:50:35.859 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:35.859 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:50:35.859 INFO [21964]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:50:35.859 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:50:35.870 INFO [21964]: COREGRADE is stopping... -- 08:50:35.870 DEBUG [21964]: Closing database connection -- 08:50:35.870 SQL [21964]: pgsql_close() -- 08:50:39.309 INFO [21964]: COREGRADE is starting... -- 08:50:39.310 INFO [21964]: Version from config: 1.0 -- 08:50:39.310 DEBUG [21964]: Connecting to database... -- 08:50:39.310 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:39.310 SQL [21964]: pgsql_db_connect() -- 08:50:39.314 DEBUG [21964]: Database connection successful -- 08:50:39.314 INFO [21964]: _SERVER found -- 08:50:39.314 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 08:50:39.314 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:39.314 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:50:39.314 INFO [21964]: QUERY_STRING = /member/configure -- 08:50:39.314 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:50:39.356 INFO [21964]: COREGRADE is stopping... -- 08:50:39.356 DEBUG [21964]: Closing database connection -- 08:50:39.356 SQL [21964]: pgsql_close() -- 08:50:39.759 INFO [21964]: COREGRADE is starting... -- 08:50:39.759 INFO [21964]: Version from config: 1.0 -- 08:50:39.759 DEBUG [21964]: Connecting to database... -- 08:50:39.759 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:39.759 SQL [21964]: pgsql_db_connect() -- 08:50:39.763 DEBUG [21964]: Database connection successful -- 08:50:39.763 INFO [21964]: _SERVER found -- 08:50:39.764 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 08:50:39.764 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:39.764 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:50:39.764 INFO [21964]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:50:39.764 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:50:39.775 INFO [21964]: COREGRADE is stopping... -- 08:50:39.775 DEBUG [21964]: Closing database connection -- 08:50:39.775 SQL [21964]: pgsql_close() -- 08:50:41.082 INFO [21964]: COREGRADE is starting... -- 08:50:41.082 INFO [21964]: Version from config: 1.0 -- 08:50:41.082 DEBUG [21964]: Connecting to database... -- 08:50:41.082 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:41.082 SQL [21964]: pgsql_db_connect() -- 08:50:41.086 DEBUG [21964]: Database connection successful -- 08:50:41.087 INFO [21964]: _SERVER found -- 08:50:41.087 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 08:50:41.087 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:41.087 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:50:41.087 INFO [21964]: QUERY_STRING = /member -- 08:50:41.087 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:50:41.126 INFO [21964]: COREGRADE is stopping... -- 08:50:41.126 DEBUG [21964]: Closing database connection -- 08:50:41.126 SQL [21964]: pgsql_close() -- 08:50:41.456 INFO [21964]: COREGRADE is starting... -- 08:50:41.456 INFO [21964]: Version from config: 1.0 -- 08:50:41.456 DEBUG [21964]: Connecting to database... -- 08:50:41.456 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:41.456 SQL [21964]: pgsql_db_connect() -- 08:50:41.460 DEBUG [21964]: Database connection successful -- 08:50:41.460 INFO [21964]: _SERVER found -- 08:50:41.460 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 08:50:41.460 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:41.460 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:50:41.460 INFO [21964]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:50:41.460 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:50:41.471 INFO [21964]: COREGRADE is stopping... -- 08:50:41.471 DEBUG [21964]: Closing database connection -- 08:50:41.471 SQL [21964]: pgsql_close() -- 08:50:47.876 INFO [27753]: COREGRADE is starting... -- 08:50:47.876 INFO [27753]: Version from config: 1.0 -- 08:50:47.876 DEBUG [27753]: Connecting to database... -- 08:50:47.876 DEBUG [27753]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:47.876 SQL [27753]: pgsql_db_connect() -- 08:50:47.880 DEBUG [27753]: Database connection successful -- 08:50:47.880 INFO [27753]: _SERVER found -- 08:50:47.880 INFO [27753]: REMOTE_ADDR = 192.168.1.13 -- 08:50:47.880 INFO [27753]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:47.880 INFO [27753]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:50:47.880 INFO [27753]: QUERY_STRING = /member/page -- 08:50:47.880 INFO [27753]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:50:47.923 INFO [27753]: COREGRADE is stopping... -- 08:50:47.923 DEBUG [27753]: Closing database connection -- 08:50:47.923 SQL [27753]: pgsql_close() -- 08:50:48.174 INFO [27753]: COREGRADE is starting... -- 08:50:48.174 INFO [27753]: Version from config: 1.0 -- 08:50:48.174 DEBUG [27753]: Connecting to database... -- 08:50:48.174 DEBUG [27753]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:48.174 SQL [27753]: pgsql_db_connect() -- 08:50:48.179 DEBUG [27753]: Database connection successful -- 08:50:48.179 INFO [27753]: _SERVER found -- 08:50:48.179 INFO [27753]: REMOTE_ADDR = 192.168.1.13 -- 08:50:48.179 INFO [27753]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:48.179 INFO [27753]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:50:48.179 INFO [27753]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:50:48.179 INFO [27753]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:50:48.190 INFO [27753]: COREGRADE is stopping... -- 08:50:48.190 DEBUG [27753]: Closing database connection -- 08:50:48.190 SQL [27753]: pgsql_close() -- 08:50:53.434 INFO [21955]: COREGRADE is starting... -- 08:50:53.435 INFO [21955]: Version from config: 1.0 -- 08:50:53.435 DEBUG [21955]: Connecting to database... -- 08:50:53.435 DEBUG [21955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:53.435 SQL [21955]: pgsql_db_connect() -- 08:50:53.439 DEBUG [21955]: Database connection successful -- 08:50:53.439 INFO [21955]: _SERVER found -- 08:50:53.439 INFO [21955]: REMOTE_ADDR = 192.168.1.13 -- 08:50:53.439 INFO [21955]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:53.439 INFO [21955]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:50:53.439 INFO [21955]: QUERY_STRING = /member/viewCardAddAction -- 08:50:53.439 INFO [21955]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:50:53.473 INFO [21955]: COREGRADE is stopping... -- 08:50:53.473 DEBUG [21955]: Closing database connection -- 08:50:53.473 SQL [21955]: pgsql_close() -- 08:51:16.282 INFO [21957]: COREGRADE is starting... -- 08:51:16.283 INFO [21957]: Version from config: 1.0 -- 08:51:16.283 DEBUG [21957]: Connecting to database... -- 08:51:16.283 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:51:16.283 SQL [21957]: pgsql_db_connect() -- 08:51:16.321 INFO [21957]: COREGRADE is starting... -- 08:51:16.321 INFO [21957]: Version from config: 1.0 -- 08:51:16.321 DEBUG [21957]: Connecting to database... -- 08:51:16.321 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:51:16.321 SQL [21957]: pgsql_db_connect() -- 08:51:16.325 DEBUG [21957]: Database connection successful -- 08:51:16.325 INFO [21957]: _SERVER found -- 08:51:16.325 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 08:51:16.325 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 08:51:16.325 INFO [21957]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:51:16.325 INFO [21957]: QUERY_STRING = -- 08:51:16.325 INFO [21957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:51:16.325 INFO [21957]: SystemStatus()09-09-********~************ -- 08:51:16.325 INFO [21957]: long coregrade_api_main(CVars in, CVars &out) -- 08:51:16.325 INFO [21957]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 08:51:16.325 INFO [21957]: account calls -- 08:51:16.325 INFO [21957]: account_calls() -- 08:51:16.325 INFO [21957]: AddPageCard() -- 08:51:16.325 FLOG_MAX [21957]: REQ_STRING(title) -- 08:51:16.325 FLOG_MAX [21957]: REQ_STRING(item_type) -- 08:51:16.325 FLOG_MAX [21957]: REQ_STRING(sessionid) -- 08:51:16.325 FLOG_MAX [21957]: REQ_STRING(detail) -- 08:51:16.325 FLOG_MAX [21957]: insert_db_record() -- 08:51:16.325 SQL [21957]: pgsql_exec() -- 08:51:16.325 SQL [21957]: About to run query: -- 08:51:16.325 SQL [21957]: INSERT INTO members_page_item (detail,item_type,member_id,page_id,title) VALUES ('hacking and penetration test','NOTECARD','7','14','RB') -- 08:51:16.330 SQL [21957]: PQcmdTuples: 1 -- 08:51:16.330 SQL [21957]: Affected rows: 1 -- 08:51:16.330 FLOG_MAX [21957]: SELECT currval('members_page_item_id_seq') -- 08:51:16.330 SQL [21957]: pgsql_query() -- 08:51:16.330 SQL [21957]: About to run query: -- 08:51:16.330 SQL [21957]: SELECT currval('members_page_item_id_seq') -- 08:51:16.330 SQL [21957]: Found rows: 1 -- 08:51:16.330 INFO [21957]: /AddPageCard() -- 08:51:16.330 INFO [21957]: RET: page_item_id=29 -- 08:51:16.330 INFO [21957]: RET: result=YES I GET TO BACK END -- 08:51:16.330 INFO [21957]: COREGRADE is stopping... -- 08:51:16.330 DEBUG [21957]: Closing database connection -- 08:51:16.330 SQL [21957]: pgsql_close() -- 08:51:16.287 DEBUG [21957]: Database connection successful -- 08:51:16.287 INFO [21957]: _SERVER found -- 08:51:16.287 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 08:51:16.287 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 08:51:16.287 INFO [21957]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:51:16.287 INFO [21957]: QUERY_STRING = /member/addNotecard -- 08:51:16.287 INFO [21957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:51:16.331 INFO [21957]: COREGRADE is stopping... -- 08:51:16.331 DEBUG [21957]: Closing database connection -- 08:51:16.331 SQL [21957]: pgsql_close() -- 08:51:18.197 INFO [21957]: COREGRADE is starting... -- 08:51:18.197 INFO [21957]: Version from config: 1.0 -- 08:51:18.197 DEBUG [21957]: Connecting to database... -- 08:51:18.197 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:51:18.197 SQL [21957]: pgsql_db_connect() -- 08:51:18.232 INFO [21957]: COREGRADE is starting... -- 08:51:18.232 INFO [21957]: Version from config: 1.0 -- 08:51:18.232 DEBUG [21957]: Connecting to database... -- 08:51:18.232 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:51:18.232 SQL [21957]: pgsql_db_connect() -- 08:51:18.236 DEBUG [21957]: Database connection successful -- 08:51:18.236 INFO [21957]: _SERVER found -- 08:51:18.236 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 08:51:18.236 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 08:51:18.236 INFO [21957]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:51:18.236 INFO [21957]: QUERY_STRING = -- 08:51:18.236 INFO [21957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:51:18.236 INFO [21957]: SystemStatus()09-09-********~************ -- 08:51:18.236 INFO [21957]: long coregrade_api_main(CVars in, CVars &out) -- 08:51:18.236 INFO [21957]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 08:51:18.236 INFO [21957]: account calls -- 08:51:18.236 INFO [21957]: account_calls() -- 08:51:18.236 INFO [21957]: AddPageCard() -- 08:51:18.236 FLOG_MAX [21957]: REQ_STRING(title) -- 08:51:18.236 FLOG_MAX [21957]: REQ_STRING(item_type) -- 08:51:18.236 FLOG_MAX [21957]: REQ_STRING(sessionid) -- 08:51:18.236 FLOG_MAX [21957]: REQ_STRING(detail) -- 08:51:18.236 FLOG_MAX [21957]: insert_db_record() -- 08:51:18.236 SQL [21957]: pgsql_exec() -- 08:51:18.236 SQL [21957]: About to run query: -- 08:51:18.236 SQL [21957]: INSERT INTO members_page_item (detail,item_type,member_id,page_id,title) VALUES ('hacking and penetration test','NOTECARD','7','14','RB') -- 08:51:18.241 SQL [21957]: PQcmdTuples: 1 -- 08:51:18.241 SQL [21957]: Affected rows: 1 -- 08:51:18.241 FLOG_MAX [21957]: SELECT currval('members_page_item_id_seq') -- 08:51:18.241 SQL [21957]: pgsql_query() -- 08:51:18.241 SQL [21957]: About to run query: -- 08:51:18.241 SQL [21957]: SELECT currval('members_page_item_id_seq') -- 08:51:18.241 SQL [21957]: Found rows: 1 -- 08:51:18.241 INFO [21957]: /AddPageCard() -- 08:51:18.241 INFO [21957]: RET: page_item_id=30 -- 08:51:18.241 INFO [21957]: RET: result=YES I GET TO BACK END -- 08:51:18.242 INFO [21957]: COREGRADE is stopping... -- 08:51:18.242 DEBUG [21957]: Closing database connection -- 08:51:18.242 SQL [21957]: pgsql_close() -- 08:51:18.201 DEBUG [21957]: Database connection successful -- 08:51:18.201 INFO [21957]: _SERVER found -- 08:51:18.201 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 08:51:18.201 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 08:51:18.201 INFO [21957]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:51:18.201 INFO [21957]: QUERY_STRING = /member/addNotecard -- 08:51:18.201 INFO [21957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:51:18.242 INFO [21957]: COREGRADE is stopping... -- 08:51:18.242 DEBUG [21957]: Closing database connection -- 08:51:18.242 SQL [21957]: pgsql_close() -- 08:51:19.459 INFO [21957]: COREGRADE is starting... -- 08:51:19.459 INFO [21957]: Version from config: 1.0 -- 08:51:19.459 DEBUG [21957]: Connecting to database... -- 08:51:19.459 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:51:19.459 SQL [21957]: pgsql_db_connect() -- 08:51:19.494 INFO [21957]: COREGRADE is starting... -- 08:51:19.494 INFO [21957]: Version from config: 1.0 -- 08:51:19.494 DEBUG [21957]: Connecting to database... -- 08:51:19.494 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:51:19.494 SQL [21957]: pgsql_db_connect() -- 08:51:19.498 DEBUG [21957]: Database connection successful -- 08:51:19.498 INFO [21957]: _SERVER found -- 08:51:19.498 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 08:51:19.498 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 08:51:19.498 INFO [21957]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:51:19.498 INFO [21957]: QUERY_STRING = -- 08:51:19.498 INFO [21957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:51:19.498 INFO [21957]: SystemStatus()09-09-********~************ -- 08:51:19.498 INFO [21957]: long coregrade_api_main(CVars in, CVars &out) -- 08:51:19.498 INFO [21957]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 08:51:19.498 INFO [21957]: account calls -- 08:51:19.498 INFO [21957]: account_calls() -- 08:51:19.498 INFO [21957]: AddPageCard() -- 08:51:19.498 FLOG_MAX [21957]: REQ_STRING(title) -- 08:51:19.498 FLOG_MAX [21957]: REQ_STRING(item_type) -- 08:51:19.498 FLOG_MAX [21957]: REQ_STRING(sessionid) -- 08:51:19.498 FLOG_MAX [21957]: REQ_STRING(detail) -- 08:51:19.498 FLOG_MAX [21957]: insert_db_record() -- 08:51:19.498 SQL [21957]: pgsql_exec() -- 08:51:19.498 SQL [21957]: About to run query: -- 08:51:19.498 SQL [21957]: INSERT INTO members_page_item (detail,item_type,member_id,page_id,title) VALUES ('hacking and penetration test','NOTECARD','7','14','RB') -- 08:51:19.503 SQL [21957]: PQcmdTuples: 1 -- 08:51:19.503 SQL [21957]: Affected rows: 1 -- 08:51:19.503 FLOG_MAX [21957]: SELECT currval('members_page_item_id_seq') -- 08:51:19.503 SQL [21957]: pgsql_query() -- 08:51:19.503 SQL [21957]: About to run query: -- 08:51:19.503 SQL [21957]: SELECT currval('members_page_item_id_seq') -- 08:51:19.504 SQL [21957]: Found rows: 1 -- 08:51:19.504 INFO [21957]: /AddPageCard() -- 08:51:19.504 INFO [21957]: RET: page_item_id=31 -- 08:51:19.504 INFO [21957]: RET: result=YES I GET TO BACK END -- 08:51:19.504 INFO [21957]: COREGRADE is stopping... -- 08:51:19.504 DEBUG [21957]: Closing database connection -- 08:51:19.504 SQL [21957]: pgsql_close() -- 08:51:19.463 DEBUG [21957]: Database connection successful -- 08:51:19.463 INFO [21957]: _SERVER found -- 08:51:19.463 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 08:51:19.463 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 08:51:19.463 INFO [21957]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:51:19.463 INFO [21957]: QUERY_STRING = /member/addNotecard -- 08:51:19.463 INFO [21957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:51:19.504 INFO [21957]: COREGRADE is stopping... -- 08:51:19.504 DEBUG [21957]: Closing database connection -- 08:51:19.504 SQL [21957]: pgsql_close() -- 08:51:24.949 INFO [30055]: COREGRADE is starting... -- 08:51:24.949 INFO [30055]: Version from config: 1.0 -- 08:51:24.949 DEBUG [30055]: Connecting to database... -- 08:51:24.949 DEBUG [30055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:51:24.949 SQL [30055]: pgsql_db_connect() -- 08:51:24.953 DEBUG [30055]: Database connection successful -- 08:51:24.953 INFO [30055]: _SERVER found -- 08:51:24.953 INFO [30055]: REMOTE_ADDR = 192.168.1.13 -- 08:51:24.953 INFO [30055]: SERVER_NAME = oameye.works.coregrade.com -- 08:51:24.953 INFO [30055]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:51:24.953 INFO [30055]: QUERY_STRING = /member/viewCardAddAction -- 08:51:24.953 INFO [30055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:51:24.987 INFO [30055]: COREGRADE is stopping... -- 08:51:24.987 DEBUG [30055]: Closing database connection -- 08:51:24.987 SQL [30055]: pgsql_close() -- 08:51:26.683 INFO [30055]: COREGRADE is starting... -- 08:51:26.684 INFO [30055]: Version from config: 1.0 -- 08:51:26.684 DEBUG [30055]: Connecting to database... -- 08:51:26.684 DEBUG [30055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:51:26.684 SQL [30055]: pgsql_db_connect() -- 08:51:26.688 DEBUG [30055]: Database connection successful -- 08:51:26.688 INFO [30055]: _SERVER found -- 08:51:26.688 INFO [30055]: REMOTE_ADDR = 192.168.1.13 -- 08:51:26.688 INFO [30055]: SERVER_NAME = oameye.works.coregrade.com -- 08:51:26.688 INFO [30055]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:51:26.688 INFO [30055]: QUERY_STRING = /member/viewCardAddAction -- 08:51:26.688 INFO [30055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:51:26.718 INFO [30055]: COREGRADE is stopping... -- 08:51:26.718 DEBUG [30055]: Closing database connection -- 08:51:26.718 SQL [30055]: pgsql_close() -- 08:51:33.437 INFO [30056]: COREGRADE is starting... -- 08:51:33.437 INFO [30056]: Version from config: 1.0 -- 08:51:33.437 DEBUG [30056]: Connecting to database... -- 08:51:33.437 DEBUG [30056]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:51:33.437 SQL [30056]: pgsql_db_connect() -- 08:51:33.441 DEBUG [30056]: Database connection successful -- 08:51:33.441 INFO [30056]: _SERVER found -- 08:51:33.441 INFO [30056]: REMOTE_ADDR = 192.168.1.13 -- 08:51:33.441 INFO [30056]: SERVER_NAME = oameye.works.coregrade.com -- 08:51:33.441 INFO [30056]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:51:33.441 INFO [30056]: QUERY_STRING = /member -- 08:51:33.441 INFO [30056]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:51:33.486 INFO [30056]: COREGRADE is stopping... -- 08:51:33.486 DEBUG [30056]: Closing database connection -- 08:51:33.486 SQL [30056]: pgsql_close() -- 08:51:34.019 INFO [30056]: COREGRADE is starting... -- 08:51:34.019 INFO [30056]: Version from config: 1.0 -- 08:51:34.019 DEBUG [30056]: Connecting to database... -- 08:51:34.019 DEBUG [30056]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:51:34.019 SQL [30056]: pgsql_db_connect() -- 08:51:34.023 DEBUG [30056]: Database connection successful -- 08:51:34.023 INFO [30056]: _SERVER found -- 08:51:34.023 INFO [30056]: REMOTE_ADDR = 192.168.1.13 -- 08:51:34.023 INFO [30056]: SERVER_NAME = oameye.works.coregrade.com -- 08:51:34.023 INFO [30056]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:51:34.023 INFO [30056]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:51:34.023 INFO [30056]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:51:34.034 INFO [30056]: COREGRADE is stopping... -- 08:51:34.034 DEBUG [30056]: Closing database connection -- 08:51:34.035 SQL [30056]: pgsql_close() -- 08:51:34.947 INFO [30056]: COREGRADE is starting... -- 08:51:34.947 INFO [30056]: Version from config: 1.0 -- 08:51:34.947 DEBUG [30056]: Connecting to database... -- 08:51:34.948 DEBUG [30056]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:51:34.948 SQL [30056]: pgsql_db_connect() -- 08:51:34.952 DEBUG [30056]: Database connection successful -- 08:51:34.952 INFO [30056]: _SERVER found -- 08:51:34.952 INFO [30056]: REMOTE_ADDR = 192.168.1.13 -- 08:51:34.952 INFO [30056]: SERVER_NAME = oameye.works.coregrade.com -- 08:51:34.952 INFO [30056]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:51:34.952 INFO [30056]: QUERY_STRING = /member/page -- 08:51:34.952 INFO [30056]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:51:34.993 INFO [30056]: COREGRADE is stopping... -- 08:51:34.993 DEBUG [30056]: Closing database connection -- 08:51:34.993 SQL [30056]: pgsql_close() -- 08:51:35.442 INFO [30056]: COREGRADE is starting... -- 08:51:35.442 INFO [30056]: Version from config: 1.0 -- 08:51:35.442 DEBUG [30056]: Connecting to database... -- 08:51:35.442 DEBUG [30056]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:51:35.442 SQL [30056]: pgsql_db_connect() -- 08:51:35.446 DEBUG [30056]: Database connection successful -- 08:51:35.446 INFO [30056]: _SERVER found -- 08:51:35.446 INFO [30056]: REMOTE_ADDR = 192.168.1.13 -- 08:51:35.446 INFO [30056]: SERVER_NAME = oameye.works.coregrade.com -- 08:51:35.446 INFO [30056]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:51:35.446 INFO [30056]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:51:35.446 INFO [30056]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:51:35.457 INFO [30056]: COREGRADE is stopping... -- 08:51:35.457 DEBUG [30056]: Closing database connection -- 08:51:35.457 SQL [30056]: pgsql_close() -- 08:51:55.604 INFO [21958]: COREGRADE is starting... -- 08:51:55.604 INFO [21958]: Version from config: 1.0 -- 08:51:55.604 DEBUG [21958]: Connecting to database... -- 08:51:55.604 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:51:55.604 SQL [21958]: pgsql_db_connect() -- 08:51:55.608 DEBUG [21958]: Database connection successful -- 08:51:55.608 INFO [21958]: _SERVER found -- 08:51:55.608 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 08:51:55.608 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 08:51:55.608 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:51:55.608 INFO [21958]: QUERY_STRING = /member/configure -- 08:51:55.608 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:51:55.653 INFO [21958]: COREGRADE is stopping... -- 08:51:55.653 DEBUG [21958]: Closing database connection -- 08:51:55.653 SQL [21958]: pgsql_close() -- 08:51:56.013 INFO [21958]: COREGRADE is starting... -- 08:51:56.013 INFO [21958]: Version from config: 1.0 -- 08:51:56.013 DEBUG [21958]: Connecting to database... -- 08:51:56.013 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:51:56.013 SQL [21958]: pgsql_db_connect() -- 08:51:56.017 DEBUG [21958]: Database connection successful -- 08:51:56.017 INFO [21958]: _SERVER found -- 08:51:56.017 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 08:51:56.017 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 08:51:56.017 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:51:56.017 INFO [21958]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:51:56.017 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:51:56.028 INFO [21958]: COREGRADE is stopping... -- 08:51:56.028 DEBUG [21958]: Closing database connection -- 08:51:56.028 SQL [21958]: pgsql_close() -- 08:53:16.054 INFO [30057]: COREGRADE is starting... -- 08:53:16.054 INFO [30057]: Version from config: 1.0 -- 08:53:16.054 DEBUG [30057]: Connecting to database... -- 08:53:16.054 DEBUG [30057]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:53:16.054 SQL [30057]: pgsql_db_connect() -- 08:53:16.058 DEBUG [30057]: Database connection successful -- 08:53:16.058 INFO [30057]: _SERVER found -- 08:53:16.058 INFO [30057]: REMOTE_ADDR = 192.168.1.13 -- 08:53:16.058 INFO [30057]: SERVER_NAME = oameye.works.coregrade.com -- 08:53:16.058 INFO [30057]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:53:16.058 INFO [30057]: QUERY_STRING = /member/viewSharePage -- 08:53:16.058 INFO [30057]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:53:16.092 INFO [30057]: COREGRADE is stopping... -- 08:53:16.092 DEBUG [30057]: Closing database connection -- 08:53:16.092 SQL [30057]: pgsql_close() -- 08:53:21.885 INFO [27751]: COREGRADE is starting... -- 08:53:21.885 INFO [27751]: Version from config: 1.0 -- 08:53:21.885 DEBUG [27751]: Connecting to database... -- 08:53:21.885 DEBUG [27751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:53:21.885 SQL [27751]: pgsql_db_connect() -- 08:53:21.889 DEBUG [27751]: Database connection successful -- 08:53:21.889 INFO [27751]: _SERVER found -- 08:53:21.889 INFO [27751]: REMOTE_ADDR = 192.168.1.13 -- 08:53:21.889 INFO [27751]: SERVER_NAME = oameye.works.coregrade.com -- 08:53:21.889 INFO [27751]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:53:21.889 INFO [27751]: QUERY_STRING = /member/page -- 08:53:21.889 INFO [27751]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:53:21.931 INFO [27751]: COREGRADE is stopping... -- 08:53:21.931 DEBUG [27751]: Closing database connection -- 08:53:21.931 SQL [27751]: pgsql_close() -- 08:53:22.224 INFO [27751]: COREGRADE is starting... -- 08:53:22.224 INFO [27751]: Version from config: 1.0 -- 08:53:22.224 DEBUG [27751]: Connecting to database... -- 08:53:22.224 DEBUG [27751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:53:22.224 SQL [27751]: pgsql_db_connect() -- 08:53:22.228 DEBUG [27751]: Database connection successful -- 08:53:22.228 INFO [27751]: _SERVER found -- 08:53:22.228 INFO [27751]: REMOTE_ADDR = 192.168.1.13 -- 08:53:22.228 INFO [27751]: SERVER_NAME = oameye.works.coregrade.com -- 08:53:22.228 INFO [27751]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:53:22.228 INFO [27751]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:53:22.228 INFO [27751]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:53:22.239 INFO [27751]: COREGRADE is stopping... -- 08:53:22.240 DEBUG [27751]: Closing database connection -- 08:53:22.240 SQL [27751]: pgsql_close() -- 08:53:26.971 INFO [27751]: COREGRADE is starting... -- 08:53:26.971 INFO [27751]: Version from config: 1.0 -- 08:53:26.971 DEBUG [27751]: Connecting to database... -- 08:53:26.971 DEBUG [27751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:53:26.971 SQL [27751]: pgsql_db_connect() -- 08:53:26.975 DEBUG [27751]: Database connection successful -- 08:53:26.975 INFO [27751]: _SERVER found -- 08:53:26.975 INFO [27751]: REMOTE_ADDR = 192.168.1.13 -- 08:53:26.975 INFO [27751]: SERVER_NAME = oameye.works.coregrade.com -- 08:53:26.975 INFO [27751]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:53:26.975 INFO [27751]: QUERY_STRING = /member/configure -- 08:53:26.975 INFO [27751]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:53:27.017 INFO [27751]: COREGRADE is stopping... -- 08:53:27.017 DEBUG [27751]: Closing database connection -- 08:53:27.017 SQL [27751]: pgsql_close() -- 08:53:27.508 INFO [27751]: COREGRADE is starting... -- 08:53:27.509 INFO [27751]: Version from config: 1.0 -- 08:53:27.509 DEBUG [27751]: Connecting to database... -- 08:53:27.509 DEBUG [27751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:53:27.509 SQL [27751]: pgsql_db_connect() -- 08:53:27.513 DEBUG [27751]: Database connection successful -- 08:53:27.513 INFO [27751]: _SERVER found -- 08:53:27.513 INFO [27751]: REMOTE_ADDR = 192.168.1.13 -- 08:53:27.513 INFO [27751]: SERVER_NAME = oameye.works.coregrade.com -- 08:53:27.513 INFO [27751]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:53:27.513 INFO [27751]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:53:27.513 INFO [27751]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:53:27.524 INFO [27751]: COREGRADE is stopping... -- 08:53:27.524 DEBUG [27751]: Closing database connection -- 08:53:27.524 SQL [27751]: pgsql_close() -- 08:53:30.417 INFO [27751]: COREGRADE is starting... -- 08:53:30.417 INFO [27751]: Version from config: 1.0 -- 08:53:30.417 DEBUG [27751]: Connecting to database... -- 08:53:30.417 DEBUG [27751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:53:30.417 SQL [27751]: pgsql_db_connect() -- 08:53:30.421 DEBUG [27751]: Database connection successful -- 08:53:30.421 INFO [27751]: _SERVER found -- 08:53:30.421 INFO [27751]: REMOTE_ADDR = 192.168.1.13 -- 08:53:30.421 INFO [27751]: SERVER_NAME = oameye.works.coregrade.com -- 08:53:30.421 INFO [27751]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:53:30.421 INFO [27751]: QUERY_STRING = /member/configure -- 08:53:30.421 INFO [27751]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:53:30.463 INFO [27751]: COREGRADE is stopping... -- 08:53:30.463 DEBUG [27751]: Closing database connection -- 08:53:30.463 SQL [27751]: pgsql_close() -- 08:53:30.832 INFO [27751]: COREGRADE is starting... -- 08:53:30.832 INFO [27751]: Version from config: 1.0 -- 08:53:30.832 DEBUG [27751]: Connecting to database... -- 08:53:30.832 DEBUG [27751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:53:30.832 SQL [27751]: pgsql_db_connect() -- 08:53:30.836 DEBUG [27751]: Database connection successful -- 08:53:30.836 INFO [27751]: _SERVER found -- 08:53:30.836 INFO [27751]: REMOTE_ADDR = 192.168.1.13 -- 08:53:30.836 INFO [27751]: SERVER_NAME = oameye.works.coregrade.com -- 08:53:30.836 INFO [27751]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:53:30.836 INFO [27751]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:53:30.836 INFO [27751]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:53:30.847 INFO [27751]: COREGRADE is stopping... -- 08:53:30.847 DEBUG [27751]: Closing database connection -- 08:53:30.847 SQL [27751]: pgsql_close() -- 08:53:32.069 INFO [27751]: COREGRADE is starting... -- 08:53:32.069 INFO [27751]: Version from config: 1.0 -- 08:53:32.069 DEBUG [27751]: Connecting to database... -- 08:53:32.069 DEBUG [27751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:53:32.069 SQL [27751]: pgsql_db_connect() -- 08:53:32.073 DEBUG [27751]: Database connection successful -- 08:53:32.073 INFO [27751]: _SERVER found -- 08:53:32.073 INFO [27751]: REMOTE_ADDR = 192.168.1.13 -- 08:53:32.073 INFO [27751]: SERVER_NAME = oameye.works.coregrade.com -- 08:53:32.073 INFO [27751]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:53:32.073 INFO [27751]: QUERY_STRING = /member/mycalendar -- 08:53:32.073 INFO [27751]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:53:32.110 INFO [27751]: COREGRADE is stopping... -- 08:53:32.110 DEBUG [27751]: Closing database connection -- 08:53:32.110 SQL [27751]: pgsql_close() -- 08:53:32.429 INFO [27751]: COREGRADE is starting... -- 08:53:32.430 INFO [27751]: Version from config: 1.0 -- 08:53:32.430 DEBUG [27751]: Connecting to database... -- 08:53:32.430 DEBUG [27751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:53:32.430 SQL [27751]: pgsql_db_connect() -- 08:53:32.434 DEBUG [27751]: Database connection successful -- 08:53:32.434 INFO [27751]: _SERVER found -- 08:53:32.434 INFO [27751]: REMOTE_ADDR = 192.168.1.13 -- 08:53:32.434 INFO [27751]: SERVER_NAME = oameye.works.coregrade.com -- 08:53:32.434 INFO [27751]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=ansibkpnbtcb9s15j0o1veofqs8qvkb3; _gid=GA1.2.271860010.1582724954 -- 08:53:32.434 INFO [27751]: QUERY_STRING = /app-assets/data/locales/en.json -- 08:53:32.434 INFO [27751]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:53:32.445 INFO [27751]: COREGRADE is stopping... -- 08:53:32.445 DEBUG [27751]: Closing database connection -- 08:53:32.445 SQL [27751]: pgsql_close() -- 11:29:56.328 INFO [21959]: COREGRADE is starting... -- 11:29:56.329 INFO [21959]: Version from config: 1.0 -- 11:29:56.329 DEBUG [21959]: Connecting to database... -- 11:29:56.329 DEBUG [21959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:56.329 SQL [21959]: pgsql_db_connect() -- 11:29:56.334 DEBUG [21959]: Database connection successful -- 11:29:56.334 INFO [21959]: _SERVER found -- 11:29:56.334 INFO [21959]: REMOTE_ADDR = 192.168.1.13 -- 11:29:56.334 INFO [21959]: SERVER_NAME = oameye.works.coregrade.com -- 11:29:56.334 INFO [21959]: QUERY_STRING = /solr/admin/info/system -- 11:29:56.334 INFO [21959]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 11:29:56.349 INFO [21959]: COREGRADE is stopping... -- 11:29:56.349 DEBUG [21959]: Closing database connection -- 11:29:56.349 SQL [21959]: pgsql_close() -- 11:31:22.392 INFO [21964]: COREGRADE is starting... -- 11:31:22.392 INFO [21964]: Version from config: 1.0 -- 11:31:22.392 DEBUG [21964]: Connecting to database... -- 11:31:22.392 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:31:22.392 SQL [21964]: pgsql_db_connect() -- 11:31:22.396 DEBUG [21964]: Database connection successful -- 11:31:22.396 INFO [21964]: _SERVER found -- 11:31:22.396 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 11:31:22.396 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 11:31:22.396 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.271860010.1582724954 -- 11:31:22.396 INFO [21964]: QUERY_STRING = /auth -- 11:31:22.396 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:31:22.433 INFO [21964]: COREGRADE is stopping... -- 11:31:22.433 DEBUG [21964]: Closing database connection -- 11:31:22.433 SQL [21964]: pgsql_close() -- 11:31:22.786 INFO [21964]: COREGRADE is starting... -- 11:31:22.787 INFO [21964]: Version from config: 1.0 -- 11:31:22.787 DEBUG [21964]: Connecting to database... -- 11:31:22.787 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:31:22.787 SQL [21964]: pgsql_db_connect() -- 11:31:22.791 DEBUG [21964]: Database connection successful -- 11:31:22.791 INFO [21964]: _SERVER found -- 11:31:22.791 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 11:31:22.791 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 11:31:22.791 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.271860010.1582724954; ci_session=gjeqoaovbrlp8o391490ptg237rioude -- 11:31:22.791 INFO [21964]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:31:22.791 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:31:22.802 INFO [21964]: COREGRADE is stopping... -- 11:31:22.802 DEBUG [21964]: Closing database connection -- 11:31:22.802 SQL [21964]: pgsql_close() -- 11:31:23.010 INFO [21964]: COREGRADE is starting... -- 11:31:23.010 INFO [21964]: Version from config: 1.0 -- 11:31:23.010 DEBUG [21964]: Connecting to database... -- 11:31:23.011 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:31:23.011 SQL [21964]: pgsql_db_connect() -- 11:31:23.014 DEBUG [21964]: Database connection successful -- 11:31:23.014 INFO [21964]: _SERVER found -- 11:31:23.014 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 11:31:23.014 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 11:31:23.014 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.271860010.1582724954; ci_session=gjeqoaovbrlp8o391490ptg237rioude -- 11:31:23.014 INFO [21964]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:31:23.014 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:31:23.026 INFO [21964]: COREGRADE is stopping... -- 11:31:23.026 DEBUG [21964]: Closing database connection -- 11:31:23.026 SQL [21964]: pgsql_close() -- 11:35:07.329 INFO [21957]: COREGRADE is starting... -- 11:35:07.330 INFO [21957]: Version from config: 1.0 -- 11:35:07.330 DEBUG [21957]: Connecting to database... -- 11:35:07.330 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:35:07.330 SQL [21957]: pgsql_db_connect() -- 11:35:07.334 DEBUG [21957]: Database connection successful -- 11:35:07.334 INFO [21957]: _SERVER found -- 11:35:07.334 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 11:35:07.334 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 11:35:07.334 INFO [21957]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 11:35:07.334 INFO [21957]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 11:35:07.370 INFO [21957]: COREGRADE is stopping... -- 11:35:07.370 DEBUG [21957]: Closing database connection -- 11:35:07.370 SQL [21957]: pgsql_close() -- 11:35:08.103 INFO [30055]: COREGRADE is starting... -- 11:35:08.104 INFO [30055]: Version from config: 1.0 -- 11:35:08.104 DEBUG [30055]: Connecting to database... -- 11:35:08.104 DEBUG [30055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:35:08.104 SQL [30055]: pgsql_db_connect() -- 11:35:08.108 DEBUG [30055]: Database connection successful -- 11:35:08.108 INFO [30055]: _SERVER found -- 11:35:08.108 INFO [30055]: REMOTE_ADDR = 192.168.1.13 -- 11:35:08.108 INFO [30055]: SERVER_NAME = oameye.works.coregrade.com -- 11:35:08.108 INFO [30055]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 11:35:08.108 INFO [30055]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 11:35:08.142 INFO [30055]: COREGRADE is stopping... -- 11:35:08.142 DEBUG [30055]: Closing database connection -- 11:35:08.142 SQL [30055]: pgsql_close() -- 11:36:47.459 INFO [30056]: COREGRADE is starting... -- 11:36:47.459 INFO [30056]: Version from config: 1.0 -- 11:36:47.459 DEBUG [30056]: Connecting to database... -- 11:36:47.459 DEBUG [30056]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:36:47.459 SQL [30056]: pgsql_db_connect() -- 11:36:47.463 DEBUG [30056]: Database connection successful -- 11:36:47.463 INFO [30056]: _SERVER found -- 11:36:47.463 INFO [30056]: REMOTE_ADDR = 192.168.1.13 -- 11:36:47.463 INFO [30056]: SERVER_NAME = oameye.works.coregrade.com -- 11:36:47.463 INFO [30056]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 11:36:47.463 INFO [30056]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 11:36:47.495 INFO [30056]: COREGRADE is stopping... -- 11:36:47.495 DEBUG [30056]: Closing database connection -- 11:36:47.495 SQL [30056]: pgsql_close() -- 11:56:24.481 INFO [21958]: COREGRADE is starting... -- 11:56:24.482 INFO [21958]: Version from config: 1.0 -- 11:56:24.482 DEBUG [21958]: Connecting to database... -- 11:56:24.482 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:24.482 SQL [21958]: pgsql_db_connect() -- 11:56:24.521 INFO [21958]: COREGRADE is starting... -- 11:56:24.522 INFO [21958]: Version from config: 1.0 -- 11:56:24.522 DEBUG [21958]: Connecting to database... -- 11:56:24.522 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:24.522 SQL [21958]: pgsql_db_connect() -- 11:56:24.526 DEBUG [21958]: Database connection successful -- 11:56:24.526 INFO [21958]: _SERVER found -- 11:56:24.526 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 11:56:24.526 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 11:56:24.526 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.271860010.1582724954; ci_session=gjeqoaovbrlp8o391490ptg237rioude -- 11:56:24.526 INFO [21958]: QUERY_STRING = -- 11:56:24.526 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:56:24.526 INFO [21958]: SystemStatus()09-09-********~************ -- 11:56:24.526 INFO [21958]: long coregrade_api_main(CVars in, CVars &out) -- 11:56:24.526 INFO [21958]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 11:56:24.526 INFO [21958]: account calls -- 11:56:24.526 INFO [21958]: account_calls() -- 11:56:24.526 INFO [21958]: LoginCoreGradeAccount() -- 11:56:24.526 FLOG_MAX [21958]: REQ_STRING(username) -- 11:56:24.526 FLOG_MAX [21958]: REQ_STRING(password) -- 11:56:24.526 FLOG_MAX [21958]: REQ_STRING(sessionid) -- 11:56:24.526 FLOG_MAX [21958]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:56:24.526 SQL [21958]: pgsql_query() -- 11:56:24.526 SQL [21958]: About to run query: -- 11:56:24.526 SQL [21958]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 11:56:24.530 SQL [21958]: Found rows: 1 -- 11:56:24.530 FLOG_MAX [21958]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=16 -- 11:56:24.530 INFO [21958]: long SessionCheck(long uid, const char *sessionid, int create ) -- 11:56:24.530 SQL [21958]: pgsql_exec() -- 11:56:24.530 SQL [21958]: About to run query: -- 11:56:24.530 SQL [21958]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 11:56:24.531 SQL [21958]: PQcmdTuples: 1 -- 11:56:24.531 SQL [21958]: Affected rows: 1 -- 11:56:24.531 SQL [21958]: pgsql_exec() -- 11:56:24.531 SQL [21958]: About to run query: -- 11:56:24.531 SQL [21958]: DELETE FROM members_session WHERE member_id=7 -- 11:56:24.531 SQL [21958]: PQcmdTuples: 0 -- 11:56:24.531 SQL [21958]: Affected rows: 0 -- 11:56:24.532 SQL [21958]: pgsql_query() -- 11:56:24.532 SQL [21958]: About to run query: -- 11:56:24.532 SQL [21958]: SELECT * FROM members_session WHERE member_id=7 AND session<>'F0272A80D0FAA79BDDE5325EA92C61E1' -- 11:56:24.532 SQL [21958]: Found rows: 0 -- 11:56:24.532 SQL [21958]: Found rows: 0 -- 11:56:24.532 FLOG_MAX [21958]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:56:24.532 SQL [21958]: pgsql_query() -- 11:56:24.532 SQL [21958]: About to run query: -- 11:56:24.532 SQL [21958]: SELECT * FROM members_session WHERE member_id=7 AND session='F0272A80D0FAA79BDDE5325EA92C61E1' -- 11:56:24.533 SQL [21958]: Found rows: 0 -- 11:56:24.533 SQL [21958]: Found rows: 0 -- 11:56:24.533 FLOG_MAX [21958]: insert_db_record() -- 11:56:24.533 SQL [21958]: pgsql_exec() -- 11:56:24.533 SQL [21958]: About to run query: -- 11:56:24.533 SQL [21958]: INSERT INTO members_session (member_id,session) VALUES ('7','F0272A80D0FAA79BDDE5325EA92C61E1') -- 11:56:24.534 SQL [21958]: PQcmdTuples: 1 -- 11:56:24.534 SQL [21958]: Affected rows: 1 -- 11:56:24.534 FLOG_MAX [21958]: SELECT currval('members_session_id_seq') -- 11:56:24.534 SQL [21958]: pgsql_query() -- 11:56:24.534 SQL [21958]: About to run query: -- 11:56:24.534 SQL [21958]: SELECT currval('members_session_id_seq') -- 11:56:24.535 SQL [21958]: Found rows: 1 -- 11:56:24.535 INFO [21958]: CreateDefaultPage() -- 11:56:24.535 FLOG_MAX [21958]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:56:24.535 SQL [21958]: pgsql_query() -- 11:56:24.535 SQL [21958]: About to run query: -- 11:56:24.535 SQL [21958]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 11:56:24.535 SQL [21958]: Found rows: 1 -- 11:56:24.535 FLOG_MAX [21958]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 11:56:24.535 SQL [21958]: pgsql_query() -- 11:56:24.535 SQL [21958]: About to run query: -- 11:56:24.535 SQL [21958]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 11:56:24.536 SQL [21958]: Found rows: 1 -- 11:56:24.536 INFO [21958]: /CreateDefaultPage() -- 11:56:24.536 INFO [21958]: /LoginCoreGradeAccount() -- 11:56:24.536 INFO [21958]: RET: added=2020-02-05 09:42:12.816064 -- 11:56:24.536 INFO [21958]: RET: email=tokslaw@chiefsoft.com -- 11:56:24.536 INFO [21958]: RET: firstname=Tokunbo -- 11:56:24.536 INFO [21958]: RET: folder=5D06B187B1E2285A63AD1D0ECB670D98 -- 11:56:24.536 INFO [21958]: RET: id=7 -- 11:56:24.536 INFO [21958]: RET: last_login= -- 11:56:24.536 INFO [21958]: RET: lastname=Lawal -- 11:56:24.536 INFO [21958]: RET: loc=192.168.1.13 -- 11:56:24.536 INFO [21958]: RET: member_id=7 -- 11:56:24.536 INFO [21958]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 11:56:24.536 INFO [21958]: RET: phone= -- 11:56:24.536 INFO [21958]: RET: pid= -- 11:56:24.536 INFO [21958]: RET: result=YES I GET TO BACK END -- 11:56:24.536 INFO [21958]: RET: sessionid=F0272A80D0FAA79BDDE5325EA92C61E1 -- 11:56:24.536 INFO [21958]: RET: status=1 -- 11:56:24.536 INFO [21958]: RET: stauts=OK -- 11:56:24.536 INFO [21958]: RET: username=tokslaw@chiefsoft.com -- 11:56:24.536 INFO [21958]: RET: verified= -- 11:56:24.538 INFO [21958]: COREGRADE is stopping... -- 11:56:24.538 DEBUG [21958]: Closing database connection -- 11:56:24.538 SQL [21958]: pgsql_close() -- 11:56:24.486 DEBUG [21958]: Database connection successful -- 11:56:24.486 INFO [21958]: _SERVER found -- 11:56:24.486 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 11:56:24.486 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 11:56:24.486 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.271860010.1582724954; ci_session=gjeqoaovbrlp8o391490ptg237rioude -- 11:56:24.486 INFO [21958]: QUERY_STRING = /auth -- 11:56:24.486 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:56:24.538 INFO [21958]: COREGRADE is stopping... -- 11:56:24.538 DEBUG [21958]: Closing database connection -- 11:56:24.538 SQL [21958]: pgsql_close() -- 11:56:24.590 INFO [21958]: COREGRADE is starting... -- 11:56:24.590 INFO [21958]: Version from config: 1.0 -- 11:56:24.590 DEBUG [21958]: Connecting to database... -- 11:56:24.590 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:24.590 SQL [21958]: pgsql_db_connect() -- 11:56:24.595 DEBUG [21958]: Database connection successful -- 11:56:24.595 INFO [21958]: _SERVER found -- 11:56:24.595 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 11:56:24.595 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 11:56:24.595 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.271860010.1582724954; ci_session=bi1phl7k1jg5n2p4h2t53io56d2nep92 -- 11:56:24.595 INFO [21958]: QUERY_STRING = /member/index -- 11:56:24.595 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:56:24.636 INFO [21958]: COREGRADE is stopping... -- 11:56:24.636 DEBUG [21958]: Closing database connection -- 11:56:24.636 SQL [21958]: pgsql_close() -- 11:56:25.245 INFO [21958]: COREGRADE is starting... -- 11:56:25.246 INFO [21958]: Version from config: 1.0 -- 11:56:25.246 DEBUG [21958]: Connecting to database... -- 11:56:25.246 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:25.246 SQL [21958]: pgsql_db_connect() -- 11:56:25.250 DEBUG [21958]: Database connection successful -- 11:56:25.250 INFO [21958]: _SERVER found -- 11:56:25.250 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 11:56:25.250 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 11:56:25.250 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.271860010.1582724954; ci_session=bi1phl7k1jg5n2p4h2t53io56d2nep92 -- 11:56:25.250 INFO [21958]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:56:25.250 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:56:25.261 INFO [21958]: COREGRADE is stopping... -- 11:56:25.261 DEBUG [21958]: Closing database connection -- 11:56:25.261 SQL [21958]: pgsql_close() -- 11:56:25.396 INFO [21958]: COREGRADE is starting... -- 11:56:25.396 INFO [21958]: Version from config: 1.0 -- 11:56:25.396 DEBUG [21958]: Connecting to database... -- 11:56:25.396 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:25.396 SQL [21958]: pgsql_db_connect() -- 11:56:25.400 DEBUG [21958]: Database connection successful -- 11:56:25.400 INFO [21958]: _SERVER found -- 11:56:25.400 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 11:56:25.400 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 11:56:25.400 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.271860010.1582724954; ci_session=bi1phl7k1jg5n2p4h2t53io56d2nep92 -- 11:56:25.400 INFO [21958]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:56:25.400 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:56:25.411 INFO [21958]: COREGRADE is stopping... -- 11:56:25.411 DEBUG [21958]: Closing database connection -- 11:56:25.411 SQL [21958]: pgsql_close() -- 11:56:26.299 INFO [21958]: COREGRADE is starting... -- 11:56:26.299 INFO [21958]: Version from config: 1.0 -- 11:56:26.299 DEBUG [21958]: Connecting to database... -- 11:56:26.299 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:26.299 SQL [21958]: pgsql_db_connect() -- 11:56:26.303 DEBUG [21958]: Database connection successful -- 11:56:26.303 INFO [21958]: _SERVER found -- 11:56:26.303 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 11:56:26.303 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 11:56:26.304 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.271860010.1582724954; ci_session=bi1phl7k1jg5n2p4h2t53io56d2nep92 -- 11:56:26.304 INFO [21958]: QUERY_STRING = /member/page -- 11:56:26.304 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:56:26.346 INFO [21958]: COREGRADE is stopping... -- 11:56:26.346 DEBUG [21958]: Closing database connection -- 11:56:26.346 SQL [21958]: pgsql_close() -- 11:56:26.736 INFO [21958]: COREGRADE is starting... -- 11:56:26.736 INFO [21958]: Version from config: 1.0 -- 11:56:26.736 DEBUG [21958]: Connecting to database... -- 11:56:26.736 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:26.736 SQL [21958]: pgsql_db_connect() -- 11:56:26.741 DEBUG [21958]: Database connection successful -- 11:56:26.741 INFO [21958]: _SERVER found -- 11:56:26.741 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 11:56:26.741 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 11:56:26.741 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.271860010.1582724954; ci_session=bi1phl7k1jg5n2p4h2t53io56d2nep92 -- 11:56:26.741 INFO [21958]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:56:26.741 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:56:26.752 INFO [21958]: COREGRADE is stopping... -- 11:56:26.752 DEBUG [21958]: Closing database connection -- 11:56:26.752 SQL [21958]: pgsql_close() -- 11:56:26.947 INFO [21958]: COREGRADE is starting... -- 11:56:26.947 INFO [21958]: Version from config: 1.0 -- 11:56:26.947 DEBUG [21958]: Connecting to database... -- 11:56:26.947 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:26.947 SQL [21958]: pgsql_db_connect() -- 11:56:26.951 DEBUG [21958]: Database connection successful -- 11:56:26.951 INFO [21958]: _SERVER found -- 11:56:26.951 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 11:56:26.951 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 11:56:26.951 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.271860010.1582724954; ci_session=bi1phl7k1jg5n2p4h2t53io56d2nep92 -- 11:56:26.951 INFO [21958]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:56:26.951 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:56:26.963 INFO [21958]: COREGRADE is stopping... -- 11:56:26.963 DEBUG [21958]: Closing database connection -- 11:56:26.963 SQL [21958]: pgsql_close() -- 11:56:31.875 INFO [21958]: COREGRADE is starting... -- 11:56:31.875 INFO [21958]: Version from config: 1.0 -- 11:56:31.875 DEBUG [21958]: Connecting to database... -- 11:56:31.875 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:31.875 SQL [21958]: pgsql_db_connect() -- 11:56:31.879 DEBUG [21958]: Database connection successful -- 11:56:31.879 INFO [21958]: _SERVER found -- 11:56:31.879 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 11:56:31.879 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 11:56:31.879 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.271860010.1582724954; ci_session=bi1phl7k1jg5n2p4h2t53io56d2nep92 -- 11:56:31.879 INFO [21958]: QUERY_STRING = /member/configure -- 11:56:31.879 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:56:31.922 INFO [21958]: COREGRADE is stopping... -- 11:56:31.922 DEBUG [21958]: Closing database connection -- 11:56:31.922 SQL [21958]: pgsql_close() -- 11:56:32.248 INFO [21958]: COREGRADE is starting... -- 11:56:32.249 INFO [21958]: Version from config: 1.0 -- 11:56:32.249 DEBUG [21958]: Connecting to database... -- 11:56:32.249 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:32.249 SQL [21958]: pgsql_db_connect() -- 11:56:32.253 DEBUG [21958]: Database connection successful -- 11:56:32.253 INFO [21958]: _SERVER found -- 11:56:32.253 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 11:56:32.253 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 11:56:32.253 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.271860010.1582724954; ci_session=bi1phl7k1jg5n2p4h2t53io56d2nep92 -- 11:56:32.253 INFO [21958]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:56:32.253 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:56:32.264 INFO [21958]: COREGRADE is stopping... -- 11:56:32.264 DEBUG [21958]: Closing database connection -- 11:56:32.264 SQL [21958]: pgsql_close() -- 11:56:32.266 INFO [30057]: COREGRADE is starting... -- 11:56:32.266 INFO [30057]: Version from config: 1.0 -- 11:56:32.266 DEBUG [30057]: Connecting to database... -- 11:56:32.266 DEBUG [30057]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:32.266 SQL [30057]: pgsql_db_connect() -- 11:56:32.270 DEBUG [30057]: Database connection successful -- 11:56:32.270 INFO [30057]: _SERVER found -- 11:56:32.270 INFO [30057]: REMOTE_ADDR = 192.168.1.13 -- 11:56:32.270 INFO [30057]: SERVER_NAME = oameye.works.coregrade.com -- 11:56:32.270 INFO [30057]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.271860010.1582724954; ci_session=bi1phl7k1jg5n2p4h2t53io56d2nep92 -- 11:56:32.270 INFO [30057]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 11:56:32.270 INFO [30057]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:56:32.282 INFO [30057]: COREGRADE is stopping... -- 11:56:32.282 DEBUG [30057]: Closing database connection -- 11:56:32.282 SQL [30057]: pgsql_close() -- 11:56:32.430 INFO [30057]: COREGRADE is starting... -- 11:56:32.431 INFO [30057]: Version from config: 1.0 -- 11:56:32.431 DEBUG [30057]: Connecting to database... -- 11:56:32.431 DEBUG [30057]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:32.431 SQL [30057]: pgsql_db_connect() -- 11:56:32.435 DEBUG [30057]: Database connection successful -- 11:56:32.435 INFO [30057]: _SERVER found -- 11:56:32.435 INFO [30057]: REMOTE_ADDR = 192.168.1.13 -- 11:56:32.435 INFO [30057]: SERVER_NAME = oameye.works.coregrade.com -- 11:56:32.435 INFO [30057]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.271860010.1582724954; ci_session=bi1phl7k1jg5n2p4h2t53io56d2nep92 -- 11:56:32.435 INFO [30057]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:56:32.435 INFO [30057]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:56:32.446 INFO [30057]: COREGRADE is stopping... -- 11:56:32.446 DEBUG [30057]: Closing database connection -- 11:56:32.446 SQL [30057]: pgsql_close() -- 11:56:39.563 INFO [27751]: COREGRADE is starting... -- 11:56:39.564 INFO [27751]: Version from config: 1.0 -- 11:56:39.564 DEBUG [27751]: Connecting to database... -- 11:56:39.564 DEBUG [27751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:39.564 SQL [27751]: pgsql_db_connect() -- 11:56:39.568 DEBUG [27751]: Database connection successful -- 11:56:39.568 INFO [27751]: _SERVER found -- 11:56:39.568 INFO [27751]: REMOTE_ADDR = 192.168.1.13 -- 11:56:39.568 INFO [27751]: SERVER_NAME = oameye.works.coregrade.com -- 11:56:39.568 INFO [27751]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.271860010.1582724954; ci_session=bi1phl7k1jg5n2p4h2t53io56d2nep92 -- 11:56:39.568 INFO [27751]: QUERY_STRING = /member/addcard -- 11:56:39.568 INFO [27751]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:56:39.611 INFO [27751]: COREGRADE is stopping... -- 11:56:39.611 DEBUG [27751]: Closing database connection -- 11:56:39.611 SQL [27751]: pgsql_close() -- 11:56:40.072 INFO [27751]: COREGRADE is starting... -- 11:56:40.073 INFO [27751]: Version from config: 1.0 -- 11:56:40.073 DEBUG [27751]: Connecting to database... -- 11:56:40.073 DEBUG [27751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:40.073 SQL [27751]: pgsql_db_connect() -- 11:56:40.082 INFO [21959]: COREGRADE is starting... -- 11:56:40.082 INFO [21959]: Version from config: 1.0 -- 11:56:40.082 DEBUG [21959]: Connecting to database... -- 11:56:40.082 DEBUG [21959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:40.082 SQL [21959]: pgsql_db_connect() -- 11:56:40.077 DEBUG [27751]: Database connection successful -- 11:56:40.077 INFO [27751]: _SERVER found -- 11:56:40.077 INFO [27751]: REMOTE_ADDR = 192.168.1.13 -- 11:56:40.077 INFO [27751]: SERVER_NAME = oameye.works.coregrade.com -- 11:56:40.077 INFO [27751]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.271860010.1582724954; ci_session=bi1phl7k1jg5n2p4h2t53io56d2nep92 -- 11:56:40.077 INFO [27751]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:56:40.077 INFO [27751]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:56:40.088 INFO [27751]: COREGRADE is stopping... -- 11:56:40.088 DEBUG [27751]: Closing database connection -- 11:56:40.088 SQL [27751]: pgsql_close() -- 11:56:40.086 DEBUG [21959]: Database connection successful -- 11:56:40.086 INFO [21959]: _SERVER found -- 11:56:40.086 INFO [21959]: REMOTE_ADDR = 192.168.1.13 -- 11:56:40.086 INFO [21959]: SERVER_NAME = oameye.works.coregrade.com -- 11:56:40.086 INFO [21959]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.271860010.1582724954; ci_session=bi1phl7k1jg5n2p4h2t53io56d2nep92 -- 11:56:40.086 INFO [21959]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 11:56:40.086 INFO [21959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:56:40.099 INFO [21959]: COREGRADE is stopping... -- 11:56:40.099 DEBUG [21959]: Closing database connection -- 11:56:40.099 SQL [21959]: pgsql_close() -- 11:56:40.171 INFO [21959]: COREGRADE is starting... -- 11:56:40.171 INFO [21959]: Version from config: 1.0 -- 11:56:40.171 DEBUG [21959]: Connecting to database... -- 11:56:40.171 DEBUG [21959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:40.171 SQL [21959]: pgsql_db_connect() -- 11:56:40.175 DEBUG [21959]: Database connection successful -- 11:56:40.175 INFO [21959]: _SERVER found -- 11:56:40.175 INFO [21959]: REMOTE_ADDR = 192.168.1.13 -- 11:56:40.175 INFO [21959]: SERVER_NAME = oameye.works.coregrade.com -- 11:56:40.175 INFO [21959]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.271860010.1582724954; ci_session=bi1phl7k1jg5n2p4h2t53io56d2nep92 -- 11:56:40.175 INFO [21959]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:56:40.175 INFO [21959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:56:40.186 INFO [21959]: COREGRADE is stopping... -- 11:56:40.186 DEBUG [21959]: Closing database connection -- 11:56:40.186 SQL [21959]: pgsql_close() -- 11:56:45.955 INFO [21964]: COREGRADE is starting... -- 11:56:45.956 INFO [21964]: Version from config: 1.0 -- 11:56:45.956 DEBUG [21964]: Connecting to database... -- 11:56:45.956 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:45.956 SQL [21964]: pgsql_db_connect() -- 11:56:45.960 DEBUG [21964]: Database connection successful -- 11:56:45.960 INFO [21964]: _SERVER found -- 11:56:45.960 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 11:56:45.960 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 11:56:45.960 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.271860010.1582724954; ci_session=bi1phl7k1jg5n2p4h2t53io56d2nep92 -- 11:56:45.960 INFO [21964]: QUERY_STRING = /member -- 11:56:45.960 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:56:46.001 INFO [21964]: COREGRADE is stopping... -- 11:56:46.001 DEBUG [21964]: Closing database connection -- 11:56:46.001 SQL [21964]: pgsql_close() -- 11:56:46.400 INFO [21964]: COREGRADE is starting... -- 11:56:46.400 INFO [21964]: Version from config: 1.0 -- 11:56:46.400 DEBUG [21964]: Connecting to database... -- 11:56:46.400 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:46.400 SQL [21964]: pgsql_db_connect() -- 11:56:46.404 DEBUG [21964]: Database connection successful -- 11:56:46.404 INFO [21964]: _SERVER found -- 11:56:46.404 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 11:56:46.404 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 11:56:46.404 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.271860010.1582724954; ci_session=bi1phl7k1jg5n2p4h2t53io56d2nep92 -- 11:56:46.404 INFO [21964]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:56:46.404 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:56:46.415 INFO [21964]: COREGRADE is stopping... -- 11:56:46.415 DEBUG [21964]: Closing database connection -- 11:56:46.415 SQL [21964]: pgsql_close() -- 11:56:46.447 INFO [21964]: COREGRADE is starting... -- 11:56:46.447 INFO [21964]: Version from config: 1.0 -- 11:56:46.447 DEBUG [21964]: Connecting to database... -- 11:56:46.447 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:46.447 SQL [21964]: pgsql_db_connect() -- 11:56:46.451 DEBUG [21964]: Database connection successful -- 11:56:46.451 INFO [21964]: _SERVER found -- 11:56:46.451 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 11:56:46.451 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 11:56:46.451 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.271860010.1582724954; ci_session=bi1phl7k1jg5n2p4h2t53io56d2nep92 -- 11:56:46.451 INFO [21964]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:56:46.451 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:56:46.462 INFO [21964]: COREGRADE is stopping... -- 11:56:46.462 DEBUG [21964]: Closing database connection -- 11:56:46.462 SQL [21964]: pgsql_close() -- 11:56:49.220 INFO [21964]: COREGRADE is starting... -- 11:56:49.220 INFO [21964]: Version from config: 1.0 -- 11:56:49.220 DEBUG [21964]: Connecting to database... -- 11:56:49.220 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:49.220 SQL [21964]: pgsql_db_connect() -- 11:56:49.224 DEBUG [21964]: Database connection successful -- 11:56:49.224 INFO [21964]: _SERVER found -- 11:56:49.224 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 11:56:49.224 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 11:56:49.224 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.271860010.1582724954; ci_session=bi1phl7k1jg5n2p4h2t53io56d2nep92 -- 11:56:49.224 INFO [21964]: QUERY_STRING = /member/configure -- 11:56:49.224 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:56:49.266 INFO [21964]: COREGRADE is stopping... -- 11:56:49.266 DEBUG [21964]: Closing database connection -- 11:56:49.266 SQL [21964]: pgsql_close() -- 11:56:49.594 INFO [21964]: COREGRADE is starting... -- 11:56:49.595 INFO [21964]: Version from config: 1.0 -- 11:56:49.595 DEBUG [21964]: Connecting to database... -- 11:56:49.595 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:49.595 SQL [21964]: pgsql_db_connect() -- 11:56:49.599 DEBUG [21964]: Database connection successful -- 11:56:49.599 INFO [21964]: _SERVER found -- 11:56:49.599 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 11:56:49.599 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 11:56:49.599 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.271860010.1582724954; ci_session=bi1phl7k1jg5n2p4h2t53io56d2nep92 -- 11:56:49.599 INFO [21964]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:56:49.599 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:56:49.610 INFO [21964]: COREGRADE is stopping... -- 11:56:49.610 DEBUG [21964]: Closing database connection -- 11:56:49.610 SQL [21964]: pgsql_close() -- 11:56:49.613 INFO [27753]: COREGRADE is starting... -- 11:56:49.613 INFO [27753]: Version from config: 1.0 -- 11:56:49.613 DEBUG [27753]: Connecting to database... -- 11:56:49.613 DEBUG [27753]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:49.613 SQL [27753]: pgsql_db_connect() -- 11:56:49.617 DEBUG [27753]: Database connection successful -- 11:56:49.617 INFO [27753]: _SERVER found -- 11:56:49.617 INFO [27753]: REMOTE_ADDR = 192.168.1.13 -- 11:56:49.617 INFO [27753]: SERVER_NAME = oameye.works.coregrade.com -- 11:56:49.617 INFO [27753]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.271860010.1582724954; ci_session=bi1phl7k1jg5n2p4h2t53io56d2nep92 -- 11:56:49.617 INFO [27753]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 11:56:49.617 INFO [27753]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:56:49.629 INFO [27753]: COREGRADE is stopping... -- 11:56:49.629 DEBUG [27753]: Closing database connection -- 11:56:49.629 SQL [27753]: pgsql_close() -- 11:56:49.709 INFO [27753]: COREGRADE is starting... -- 11:56:49.709 INFO [27753]: Version from config: 1.0 -- 11:56:49.709 DEBUG [27753]: Connecting to database... -- 11:56:49.709 DEBUG [27753]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:49.709 SQL [27753]: pgsql_db_connect() -- 11:56:49.713 DEBUG [27753]: Database connection successful -- 11:56:49.713 INFO [27753]: _SERVER found -- 11:56:49.713 INFO [27753]: REMOTE_ADDR = 192.168.1.13 -- 11:56:49.713 INFO [27753]: SERVER_NAME = oameye.works.coregrade.com -- 11:56:49.713 INFO [27753]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.271860010.1582724954; ci_session=bi1phl7k1jg5n2p4h2t53io56d2nep92 -- 11:56:49.713 INFO [27753]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:56:49.713 INFO [27753]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:56:49.724 INFO [27753]: COREGRADE is stopping... -- 11:56:49.724 DEBUG [27753]: Closing database connection -- 11:56:49.724 SQL [27753]: pgsql_close() -- 11:56:57.943 INFO [21955]: COREGRADE is starting... -- 11:56:57.943 INFO [21955]: Version from config: 1.0 -- 11:56:57.943 DEBUG [21955]: Connecting to database... -- 11:56:57.943 DEBUG [21955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:57.943 SQL [21955]: pgsql_db_connect() -- 11:56:57.947 DEBUG [21955]: Database connection successful -- 11:56:57.947 INFO [21955]: _SERVER found -- 11:56:57.947 INFO [21955]: REMOTE_ADDR = 192.168.1.13 -- 11:56:57.947 INFO [21955]: SERVER_NAME = oameye.works.coregrade.com -- 11:56:57.947 INFO [21955]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.271860010.1582724954; ci_session=bi1phl7k1jg5n2p4h2t53io56d2nep92 -- 11:56:57.947 INFO [21955]: QUERY_STRING = /member/page -- 11:56:57.947 INFO [21955]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:56:57.992 INFO [21955]: COREGRADE is stopping... -- 11:56:57.992 DEBUG [21955]: Closing database connection -- 11:56:57.992 SQL [21955]: pgsql_close() -- 11:56:58.418 INFO [21957]: COREGRADE is starting... -- 11:56:58.418 INFO [21957]: Version from config: 1.0 -- 11:56:58.418 DEBUG [21957]: Connecting to database... -- 11:56:58.418 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:58.418 SQL [21957]: pgsql_db_connect() -- 11:56:58.422 DEBUG [21957]: Database connection successful -- 11:56:58.422 INFO [21957]: _SERVER found -- 11:56:58.422 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 11:56:58.422 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 11:56:58.422 INFO [21957]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.271860010.1582724954; ci_session=bi1phl7k1jg5n2p4h2t53io56d2nep92 -- 11:56:58.422 INFO [21957]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:56:58.422 INFO [21957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:56:58.435 INFO [21957]: COREGRADE is stopping... -- 11:56:58.435 DEBUG [21957]: Closing database connection -- 11:56:58.435 SQL [21957]: pgsql_close() -- 11:56:58.658 INFO [21957]: COREGRADE is starting... -- 11:56:58.658 INFO [21957]: Version from config: 1.0 -- 11:56:58.658 DEBUG [21957]: Connecting to database... -- 11:56:58.658 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:58.658 SQL [21957]: pgsql_db_connect() -- 11:56:58.662 DEBUG [21957]: Database connection successful -- 11:56:58.662 INFO [21957]: _SERVER found -- 11:56:58.662 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 11:56:58.662 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 11:56:58.662 INFO [21957]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.271860010.1582724954; ci_session=bi1phl7k1jg5n2p4h2t53io56d2nep92 -- 11:56:58.662 INFO [21957]: QUERY_STRING = /app-assets/data/locales/en.json -- 11:56:58.662 INFO [21957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:56:58.673 INFO [21957]: COREGRADE is stopping... -- 11:56:58.673 DEBUG [21957]: Closing database connection -- 11:56:58.673 SQL [21957]: pgsql_close() -- 15:17:02.953 INFO [30055]: COREGRADE is starting... -- 15:17:02.953 INFO [30055]: Version from config: 1.0 -- 15:17:02.953 DEBUG [30055]: Connecting to database... -- 15:17:02.953 DEBUG [30055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:17:02.953 SQL [30055]: pgsql_db_connect() -- 15:17:02.958 DEBUG [30055]: Database connection successful -- 15:17:02.958 INFO [30055]: _SERVER found -- 15:17:02.958 INFO [30055]: REMOTE_ADDR = 192.168.1.13 -- 15:17:02.958 INFO [30055]: SERVER_NAME = oameye.works.coregrade.com -- 15:17:02.958 INFO [30055]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 15:17:02.958 INFO [30055]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 15:17:02.973 INFO [30055]: COREGRADE is stopping... -- 15:17:02.973 DEBUG [30055]: Closing database connection -- 15:17:02.973 SQL [30055]: pgsql_close() -- 17:27:51.229 INFO [30056]: COREGRADE is starting... -- 17:27:51.230 INFO [30056]: Version from config: 1.0 -- 17:27:51.230 DEBUG [30056]: Connecting to database... -- 17:27:51.230 DEBUG [30056]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:51.230 SQL [30056]: pgsql_db_connect() -- 17:27:51.234 DEBUG [30056]: Database connection successful -- 17:27:51.234 INFO [30056]: _SERVER found -- 17:27:51.234 INFO [30056]: REMOTE_ADDR = 192.168.1.13 -- 17:27:51.234 INFO [30056]: SERVER_NAME = oameye.works.coregrade.com -- 17:27:51.234 INFO [30056]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.271860010.1582724954 -- 17:27:51.234 INFO [30056]: QUERY_STRING = /auth -- 17:27:51.234 INFO [30056]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:27:51.270 INFO [30056]: COREGRADE is stopping... -- 17:27:51.270 DEBUG [30056]: Closing database connection -- 17:27:51.270 SQL [30056]: pgsql_close() -- 17:27:59.701 INFO [21958]: COREGRADE is starting... -- 17:27:59.701 INFO [21958]: Version from config: 1.0 -- 17:27:59.701 DEBUG [21958]: Connecting to database... -- 17:27:59.701 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:59.701 SQL [21958]: pgsql_db_connect() -- 17:27:59.717 INFO [30057]: COREGRADE is starting... -- 17:27:59.717 INFO [30057]: Version from config: 1.0 -- 17:27:59.717 DEBUG [30057]: Connecting to database... -- 17:27:59.717 DEBUG [30057]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:59.717 SQL [30057]: pgsql_db_connect() -- 17:27:59.706 DEBUG [21958]: Database connection successful -- 17:27:59.706 INFO [21958]: _SERVER found -- 17:27:59.706 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 17:27:59.706 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 17:27:59.706 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.271860010.1582724954; ci_session=3r4ll7dum7nrd1e46n0rd0uap8st5e1k -- 17:27:59.706 INFO [21958]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:27:59.706 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:27:59.720 INFO [21958]: COREGRADE is stopping... -- 17:27:59.720 DEBUG [21958]: Closing database connection -- 17:27:59.720 SQL [21958]: pgsql_close() -- 17:27:59.723 DEBUG [30057]: Database connection successful -- 17:27:59.723 INFO [30057]: _SERVER found -- 17:27:59.723 INFO [30057]: REMOTE_ADDR = 192.168.1.13 -- 17:27:59.723 INFO [30057]: SERVER_NAME = oameye.works.coregrade.com -- 17:27:59.723 INFO [30057]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.271860010.1582724954; ci_session=3r4ll7dum7nrd1e46n0rd0uap8st5e1k -- 17:27:59.723 INFO [30057]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:27:59.723 INFO [30057]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:27:59.735 INFO [30057]: COREGRADE is stopping... -- 17:27:59.735 DEBUG [30057]: Closing database connection -- 17:27:59.735 SQL [30057]: pgsql_close() -- 18:56:52.446 INFO [27751]: COREGRADE is starting... -- 18:56:52.447 INFO [27751]: Version from config: 1.0 -- 18:56:52.447 DEBUG [27751]: Connecting to database... -- 18:56:52.447 DEBUG [27751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:56:52.447 SQL [27751]: pgsql_db_connect() -- 18:56:52.451 DEBUG [27751]: Database connection successful -- 18:56:52.451 INFO [27751]: _SERVER found -- 18:56:52.451 INFO [27751]: REMOTE_ADDR = 192.168.1.13 -- 18:56:52.451 INFO [27751]: SERVER_NAME = oameye.works.coregrade.com -- 18:56:52.451 INFO [27751]: QUERY_STRING = -- 18:56:52.451 INFO [27751]: HTTP_X_FORWARDED_FOR = 198.143.158.178 -- 18:56:52.492 INFO [27751]: COREGRADE is stopping... -- 18:56:52.492 DEBUG [27751]: Closing database connection -- 18:56:52.492 SQL [27751]: pgsql_close() -- 19:48:32.709 INFO [21959]: COREGRADE is starting... -- 19:48:32.710 INFO [21959]: Version from config: 1.0 -- 19:48:32.710 DEBUG [21959]: Connecting to database... -- 19:48:32.710 DEBUG [21959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:48:32.710 SQL [21959]: pgsql_db_connect() -- 19:48:32.714 DEBUG [21959]: Database connection successful -- 19:48:32.714 INFO [21959]: _SERVER found -- 19:48:32.714 INFO [21959]: REMOTE_ADDR = 192.168.1.13 -- 19:48:32.714 INFO [21959]: SERVER_NAME = oameye.works.coregrade.com -- 19:48:32.714 INFO [21959]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194 -- 19:48:32.714 INFO [21959]: QUERY_STRING = -- 19:48:32.714 INFO [21959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:48:32.753 INFO [21959]: COREGRADE is stopping... -- 19:48:32.753 DEBUG [21959]: Closing database connection -- 19:48:32.753 SQL [21959]: pgsql_close() -- 19:48:34.016 INFO [21959]: COREGRADE is starting... -- 19:48:34.016 INFO [21959]: Version from config: 1.0 -- 19:48:34.016 DEBUG [21959]: Connecting to database... -- 19:48:34.017 DEBUG [21959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:48:34.017 SQL [21959]: pgsql_db_connect() -- 19:48:34.021 DEBUG [21959]: Database connection successful -- 19:48:34.021 INFO [21959]: _SERVER found -- 19:48:34.021 INFO [21959]: REMOTE_ADDR = 192.168.1.13 -- 19:48:34.021 INFO [21959]: SERVER_NAME = oameye.works.coregrade.com -- 19:48:34.021 INFO [21959]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; ci_session=65o0mo70fsecpfhod5jchrc8jb4meoo8; _gid=GA1.2.1703042570.1582764512; _gat_gtag_UA_54829827_2=1 -- 19:48:34.021 INFO [21959]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 19:48:34.021 INFO [21959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:48:34.032 INFO [21959]: COREGRADE is stopping... -- 19:48:34.032 DEBUG [21959]: Closing database connection -- 19:48:34.032 SQL [21959]: pgsql_close() -- 19:48:34.106 INFO [21959]: COREGRADE is starting... -- 19:48:34.106 INFO [21959]: Version from config: 1.0 -- 19:48:34.106 DEBUG [21959]: Connecting to database... -- 19:48:34.106 DEBUG [21959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:48:34.106 SQL [21959]: pgsql_db_connect() -- 19:48:34.110 DEBUG [21959]: Database connection successful -- 19:48:34.110 INFO [21959]: _SERVER found -- 19:48:34.110 INFO [21959]: REMOTE_ADDR = 192.168.1.13 -- 19:48:34.110 INFO [21959]: SERVER_NAME = oameye.works.coregrade.com -- 19:48:34.110 INFO [21959]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; ci_session=65o0mo70fsecpfhod5jchrc8jb4meoo8; _gid=GA1.2.1703042570.1582764512; _gat_gtag_UA_54829827_2=1 -- 19:48:34.110 INFO [21959]: QUERY_STRING = /assets/img/footer_1.jpg -- 19:48:34.110 INFO [21959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:48:34.121 INFO [21959]: COREGRADE is stopping... -- 19:48:34.121 DEBUG [21959]: Closing database connection -- 19:48:34.121 SQL [21959]: pgsql_close() -- 01:33:27.292 INFO [21957]: COREGRADE is starting... -- 01:33:27.292 INFO [21957]: Version from config: 1.0 -- 01:33:27.292 DEBUG [21957]: Connecting to database... -- 01:33:27.292 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:33:27.292 SQL [21957]: pgsql_db_connect() -- 01:33:27.298 DEBUG [21957]: Database connection successful -- 01:33:27.298 INFO [21957]: _SERVER found -- 01:33:27.298 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 01:33:27.298 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 01:33:27.298 INFO [21957]: QUERY_STRING = /TP/public/index.php -- 01:33:27.298 INFO [21957]: HTTP_X_FORWARDED_FOR = 111.229.64.151 -- 01:33:27.312 INFO [21957]: COREGRADE is stopping... -- 01:33:27.312 DEBUG [21957]: Closing database connection -- 01:33:27.312 SQL [21957]: pgsql_close() -- 01:33:31.944 INFO [30055]: COREGRADE is starting... -- 01:33:31.945 INFO [30055]: Version from config: 1.0 -- 01:33:31.945 DEBUG [30055]: Connecting to database... -- 01:33:31.945 DEBUG [30055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:33:31.945 SQL [30055]: pgsql_db_connect() -- 01:33:31.950 DEBUG [30055]: Database connection successful -- 01:33:31.950 INFO [30055]: _SERVER found -- 01:33:31.950 INFO [30055]: REMOTE_ADDR = 192.168.1.13 -- 01:33:31.950 INFO [30055]: SERVER_NAME = oameye.works.coregrade.com -- 01:33:31.950 INFO [30055]: QUERY_STRING = /TP/index.php -- 01:33:31.950 INFO [30055]: HTTP_X_FORWARDED_FOR = 111.229.64.151 -- 01:33:31.963 INFO [30055]: COREGRADE is stopping... -- 01:33:31.963 DEBUG [30055]: Closing database connection -- 01:33:31.963 SQL [30055]: pgsql_close() -- 01:33:35.199 INFO [30055]: COREGRADE is starting... -- 01:33:35.199 INFO [30055]: Version from config: 1.0 -- 01:33:35.199 DEBUG [30055]: Connecting to database... -- 01:33:35.199 DEBUG [30055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:33:35.199 SQL [30055]: pgsql_db_connect() -- 01:33:35.204 DEBUG [30055]: Database connection successful -- 01:33:35.204 INFO [30055]: _SERVER found -- 01:33:35.204 INFO [30055]: REMOTE_ADDR = 192.168.1.13 -- 01:33:35.204 INFO [30055]: SERVER_NAME = oameye.works.coregrade.com -- 01:33:35.204 INFO [30055]: QUERY_STRING = /thinkphp/html/public/index.php -- 01:33:35.204 INFO [30055]: HTTP_X_FORWARDED_FOR = 111.229.64.151 -- 01:33:35.216 INFO [30055]: COREGRADE is stopping... -- 01:33:35.216 DEBUG [30055]: Closing database connection -- 01:33:35.216 SQL [30055]: pgsql_close() -- 01:33:38.993 INFO [30055]: COREGRADE is starting... -- 01:33:38.993 INFO [30055]: Version from config: 1.0 -- 01:33:38.993 DEBUG [30055]: Connecting to database... -- 01:33:38.994 DEBUG [30055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:33:38.994 SQL [30055]: pgsql_db_connect() -- 01:33:38.999 DEBUG [30055]: Database connection successful -- 01:33:38.999 INFO [30055]: _SERVER found -- 01:33:38.999 INFO [30055]: REMOTE_ADDR = 192.168.1.13 -- 01:33:38.999 INFO [30055]: SERVER_NAME = oameye.works.coregrade.com -- 01:33:38.999 INFO [30055]: QUERY_STRING = /html/public/index.php -- 01:33:38.999 INFO [30055]: HTTP_X_FORWARDED_FOR = 111.229.64.151 -- 01:33:39.010 INFO [30055]: COREGRADE is stopping... -- 01:33:39.010 DEBUG [30055]: Closing database connection -- 01:33:39.010 SQL [30055]: pgsql_close() -- 01:33:53.635 INFO [30056]: COREGRADE is starting... -- 01:33:53.635 INFO [30056]: Version from config: 1.0 -- 01:33:53.635 DEBUG [30056]: Connecting to database... -- 01:33:53.635 DEBUG [30056]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:33:53.635 SQL [30056]: pgsql_db_connect() -- 01:33:53.640 DEBUG [30056]: Database connection successful -- 01:33:53.640 INFO [30056]: _SERVER found -- 01:33:53.640 INFO [30056]: REMOTE_ADDR = 192.168.1.13 -- 01:33:53.640 INFO [30056]: SERVER_NAME = oameye.works.coregrade.com -- 01:33:53.640 INFO [30056]: QUERY_STRING = -- 01:33:53.640 INFO [30056]: HTTP_X_FORWARDED_FOR = 111.229.64.151 -- 01:33:53.675 INFO [30056]: COREGRADE is stopping... -- 01:33:53.675 DEBUG [30056]: Closing database connection -- 01:33:53.675 SQL [30056]: pgsql_close() -- 03:54:30.341 INFO [21958]: COREGRADE is starting... -- 03:54:30.341 INFO [21958]: Version from config: 1.0 -- 03:54:30.341 DEBUG [21958]: Connecting to database... -- 03:54:30.341 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:54:30.341 SQL [21958]: pgsql_db_connect() -- 03:54:30.347 DEBUG [21958]: Database connection successful -- 03:54:30.347 INFO [21958]: _SERVER found -- 03:54:30.347 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 03:54:30.347 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 03:54:30.347 INFO [21958]: QUERY_STRING = /.well-known/acme-challenge/MzaHttCrhn92YahrfcGX7mkpkfXjGkVGZavhALnNteI -- 03:54:30.347 INFO [21958]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 03:54:30.361 INFO [21958]: COREGRADE is stopping... -- 03:54:30.361 DEBUG [21958]: Closing database connection -- 03:54:30.361 SQL [21958]: pgsql_close() -- 03:54:30.652 INFO [21958]: COREGRADE is starting... -- 03:54:30.653 INFO [21958]: Version from config: 1.0 -- 03:54:30.653 DEBUG [21958]: Connecting to database... -- 03:54:30.653 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:54:30.653 SQL [21958]: pgsql_db_connect() -- 03:54:30.658 DEBUG [21958]: Database connection successful -- 03:54:30.658 INFO [21958]: _SERVER found -- 03:54:30.658 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 03:54:30.658 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 03:54:30.658 INFO [21958]: QUERY_STRING = /.well-known/acme-challenge/MzaHttCrhn92YahrfcGX7mkpkfXjGkVGZavhALnNteI -- 03:54:30.658 INFO [21958]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 03:54:30.669 INFO [21958]: COREGRADE is stopping... -- 03:54:30.669 DEBUG [21958]: Closing database connection -- 03:54:30.669 SQL [21958]: pgsql_close() -- 03:54:30.717 INFO [21955]: COREGRADE is starting... -- 03:54:30.717 INFO [21955]: Version from config: 1.0 -- 03:54:30.717 DEBUG [21955]: Connecting to database... -- 03:54:30.717 DEBUG [21955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:54:30.717 SQL [21955]: pgsql_db_connect() -- 03:54:30.724 INFO [27753]: COREGRADE is starting... -- 03:54:30.724 INFO [27753]: Version from config: 1.0 -- 03:54:30.724 DEBUG [27753]: Connecting to database... -- 03:54:30.724 DEBUG [27753]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:54:30.724 SQL [27753]: pgsql_db_connect() -- 03:54:30.721 DEBUG [21955]: Database connection successful -- 03:54:30.721 INFO [21955]: _SERVER found -- 03:54:30.721 INFO [21955]: REMOTE_ADDR = 192.168.1.13 -- 03:54:30.721 INFO [21955]: SERVER_NAME = oameye.works.coregrade.com -- 03:54:30.721 INFO [21955]: QUERY_STRING = /.well-known/acme-challenge/MzaHttCrhn92YahrfcGX7mkpkfXjGkVGZavhALnNteI -- 03:54:30.721 INFO [21955]: HTTP_X_FORWARDED_FOR = 34.222.229.130 -- 03:54:30.735 INFO [21955]: COREGRADE is stopping... -- 03:54:30.735 DEBUG [21955]: Closing database connection -- 03:54:30.735 SQL [21955]: pgsql_close() -- 03:54:30.729 DEBUG [27753]: Database connection successful -- 03:54:30.729 INFO [27753]: _SERVER found -- 03:54:30.729 INFO [27753]: REMOTE_ADDR = 192.168.1.13 -- 03:54:30.729 INFO [27753]: SERVER_NAME = oameye.works.coregrade.com -- 03:54:30.729 INFO [27753]: QUERY_STRING = /.well-known/acme-challenge/MzaHttCrhn92YahrfcGX7mkpkfXjGkVGZavhALnNteI -- 03:54:30.729 INFO [27753]: HTTP_X_FORWARDED_FOR = 18.194.58.132 -- 03:54:30.741 INFO [27753]: COREGRADE is stopping... -- 03:54:30.741 DEBUG [27753]: Closing database connection -- 03:54:30.741 SQL [27753]: pgsql_close() -- 09:48:22.239 INFO [21964]: COREGRADE is starting... -- 09:48:22.240 INFO [21964]: Version from config: 1.0 -- 09:48:22.240 DEBUG [21964]: Connecting to database... -- 09:48:22.240 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:48:22.240 SQL [21964]: pgsql_db_connect() -- 09:48:22.244 DEBUG [21964]: Database connection successful -- 09:48:22.244 INFO [21964]: _SERVER found -- 09:48:22.244 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 09:48:22.244 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 09:48:22.244 INFO [21964]: QUERY_STRING = -- 09:48:22.244 INFO [21964]: HTTP_X_FORWARDED_FOR = 103.115.144.62 -- 09:48:22.284 INFO [21964]: COREGRADE is stopping... -- 09:48:22.284 DEBUG [21964]: Closing database connection -- 09:48:22.284 SQL [21964]: pgsql_close() -- 12:14:50.258 INFO [21959]: COREGRADE is starting... -- 12:14:50.259 INFO [21959]: Version from config: 1.0 -- 12:14:50.259 DEBUG [21959]: Connecting to database... -- 12:14:50.259 DEBUG [21959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:14:50.259 SQL [21959]: pgsql_db_connect() -- 12:14:50.264 DEBUG [21959]: Database connection successful -- 12:14:50.264 INFO [21959]: _SERVER found -- 12:14:50.264 INFO [21959]: REMOTE_ADDR = 192.168.1.13 -- 12:14:50.264 INFO [21959]: SERVER_NAME = oameye.works.coregrade.com -- 12:14:50.264 INFO [21959]: QUERY_STRING = /member -- 12:14:50.264 INFO [21959]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 12:14:50.302 INFO [21959]: COREGRADE is stopping... -- 12:14:50.302 DEBUG [21959]: Closing database connection -- 12:14:50.302 SQL [21959]: pgsql_close() -- 12:14:50.329 INFO [21959]: COREGRADE is starting... -- 12:14:50.330 INFO [21959]: Version from config: 1.0 -- 12:14:50.330 DEBUG [21959]: Connecting to database... -- 12:14:50.330 DEBUG [21959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:14:50.330 SQL [21959]: pgsql_db_connect() -- 12:14:50.334 DEBUG [21959]: Database connection successful -- 12:14:50.334 INFO [21959]: _SERVER found -- 12:14:50.334 INFO [21959]: REMOTE_ADDR = 192.168.1.13 -- 12:14:50.334 INFO [21959]: SERVER_NAME = oameye.works.coregrade.com -- 12:14:50.334 INFO [21959]: HTTP_COOKIE = ci_session=iv1kgv9teh9lhoiskilr4ctvjk5d9j30 -- 12:14:50.334 INFO [21959]: QUERY_STRING = -- 12:14:50.334 INFO [21959]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 12:14:50.365 INFO [21959]: COREGRADE is stopping... -- 12:14:50.365 DEBUG [21959]: Closing database connection -- 12:14:50.365 SQL [21959]: pgsql_close() -- 12:14:50.746 INFO [27751]: COREGRADE is starting... -- 12:14:50.746 INFO [27751]: Version from config: 1.0 -- 12:14:50.746 DEBUG [27751]: Connecting to database... -- 12:14:50.746 DEBUG [27751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:14:50.746 INFO [21957]: COREGRADE is starting... -- 12:14:50.746 SQL [27751]: pgsql_db_connect() -- 12:14:50.747 INFO [21957]: Version from config: 1.0 -- 12:14:50.747 DEBUG [21957]: Connecting to database... -- 12:14:50.747 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:14:50.747 SQL [21957]: pgsql_db_connect() -- 12:14:50.751 DEBUG [27751]: Database connection successful -- 12:14:50.751 INFO [27751]: _SERVER found -- 12:14:50.751 INFO [27751]: REMOTE_ADDR = 192.168.1.13 -- 12:14:50.751 INFO [27751]: SERVER_NAME = oameye.works.coregrade.com -- 12:14:50.751 INFO [27751]: HTTP_COOKIE = ci_session=iv1kgv9teh9lhoiskilr4ctvjk5d9j30 -- 12:14:50.751 INFO [27751]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 12:14:50.751 INFO [27751]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 12:14:50.766 INFO [27751]: COREGRADE is stopping... -- 12:14:50.766 DEBUG [27751]: Closing database connection -- 12:14:50.766 SQL [27751]: pgsql_close() -- 12:14:50.751 DEBUG [21957]: Database connection successful -- 12:14:50.751 INFO [21957]: _SERVER found -- 12:14:50.751 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 12:14:50.751 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 12:14:50.751 INFO [21957]: HTTP_COOKIE = ci_session=iv1kgv9teh9lhoiskilr4ctvjk5d9j30 -- 12:14:50.751 INFO [21957]: QUERY_STRING = /assets/img/footer_1.jpg -- 12:14:50.751 INFO [21957]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 12:14:50.766 INFO [21957]: COREGRADE is stopping... -- 12:14:50.766 DEBUG [21957]: Closing database connection -- 12:14:50.766 SQL [21957]: pgsql_close() -- 12:21:18.641 INFO [21958]: COREGRADE is starting... -- 12:21:18.641 INFO [21958]: Version from config: 1.0 -- 12:21:18.641 DEBUG [21958]: Connecting to database... -- 12:21:18.641 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:21:18.641 SQL [21958]: pgsql_db_connect() -- 12:21:18.646 DEBUG [21958]: Database connection successful -- 12:21:18.646 INFO [21958]: _SERVER found -- 12:21:18.646 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 12:21:18.646 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 12:21:18.646 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.245350731.1582823691; _gid=GA1.2.2020066428.1582823691; ci_session=iv1kgv9teh9lhoiskilr4ctvjk5d9j30 -- 12:21:18.646 INFO [21958]: QUERY_STRING = /home/howitworks -- 12:21:18.646 INFO [21958]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 12:21:18.682 INFO [21958]: COREGRADE is stopping... -- 12:21:18.682 DEBUG [21958]: Closing database connection -- 12:21:18.682 SQL [21958]: pgsql_close() -- 12:21:18.931 INFO [21958]: COREGRADE is starting... -- 12:21:18.931 INFO [21958]: Version from config: 1.0 -- 12:21:18.931 DEBUG [21958]: Connecting to database... -- 12:21:18.931 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:21:18.931 SQL [21958]: pgsql_db_connect() -- 12:21:18.935 DEBUG [21958]: Database connection successful -- 12:21:18.935 INFO [21958]: _SERVER found -- 12:21:18.935 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 12:21:18.935 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 12:21:18.935 INFO [21958]: HTTP_COOKIE = ci_session=t5rluedtrcrf7ksaatvcok11735plb0m; _ga=GA1.2.245350731.1582823691; _gid=GA1.2.2020066428.1582823691 -- 12:21:18.935 INFO [21958]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 12:21:18.935 INFO [21958]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 12:21:18.946 INFO [21958]: COREGRADE is stopping... -- 12:21:18.946 DEBUG [21958]: Closing database connection -- 12:21:18.946 SQL [21958]: pgsql_close() -- 12:21:19.035 INFO [21958]: COREGRADE is starting... -- 12:21:19.035 INFO [21958]: Version from config: 1.0 -- 12:21:19.035 DEBUG [21958]: Connecting to database... -- 12:21:19.035 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:21:19.035 SQL [21958]: pgsql_db_connect() -- 12:21:19.039 DEBUG [21958]: Database connection successful -- 12:21:19.039 INFO [21958]: _SERVER found -- 12:21:19.039 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 12:21:19.039 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 12:21:19.039 INFO [21958]: HTTP_COOKIE = ci_session=t5rluedtrcrf7ksaatvcok11735plb0m; _ga=GA1.2.245350731.1582823691; _gid=GA1.2.2020066428.1582823691 -- 12:21:19.039 INFO [21958]: QUERY_STRING = /app-assets/data/locales/en.json -- 12:21:19.039 INFO [21958]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 12:21:19.050 INFO [21958]: COREGRADE is stopping... -- 12:21:19.050 DEBUG [21958]: Closing database connection -- 12:21:19.050 SQL [21958]: pgsql_close() -- 12:21:49.984 INFO [21964]: COREGRADE is starting... -- 12:21:49.985 INFO [21964]: Version from config: 1.0 -- 12:21:49.985 DEBUG [21964]: Connecting to database... -- 12:21:49.985 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:21:49.985 SQL [21964]: pgsql_db_connect() -- 12:21:49.989 DEBUG [21964]: Database connection successful -- 12:21:49.989 INFO [21964]: _SERVER found -- 12:21:49.989 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 12:21:49.989 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 12:21:49.989 INFO [21964]: HTTP_COOKIE = ci_session=t5rluedtrcrf7ksaatvcok11735plb0m; _ga=GA1.2.245350731.1582823691; _gid=GA1.2.2020066428.1582823691 -- 12:21:49.989 INFO [21964]: QUERY_STRING = -- 12:21:49.989 INFO [21964]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 12:21:50.023 INFO [21964]: COREGRADE is stopping... -- 12:21:50.023 DEBUG [21964]: Closing database connection -- 12:21:50.023 SQL [21964]: pgsql_close() -- 15:36:50.086 INFO [30055]: COREGRADE is starting... -- 15:36:50.087 INFO [30055]: Version from config: 1.0 -- 15:36:50.087 DEBUG [30055]: Connecting to database... -- 15:36:50.087 DEBUG [30055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:36:50.087 SQL [30055]: pgsql_db_connect() -- 15:36:50.093 DEBUG [30055]: Database connection successful -- 15:36:50.093 INFO [30055]: _SERVER found -- 15:36:50.093 INFO [30055]: REMOTE_ADDR = 192.168.1.13 -- 15:36:50.093 INFO [30055]: SERVER_NAME = oameye.works.coregrade.com -- 15:36:50.093 INFO [30055]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965 -- 15:36:50.093 INFO [30055]: QUERY_STRING = -- 15:36:50.093 INFO [30055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:36:50.133 INFO [30055]: COREGRADE is stopping... -- 15:36:50.133 DEBUG [30055]: Closing database connection -- 15:36:50.133 SQL [30055]: pgsql_close() -- 15:36:50.386 INFO [30055]: COREGRADE is starting... -- 15:36:50.387 INFO [30055]: Version from config: 1.0 -- 15:36:50.387 DEBUG [30055]: Connecting to database... -- 15:36:50.387 DEBUG [30055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:36:50.387 SQL [30055]: pgsql_db_connect() -- 15:36:50.393 INFO [21959]: COREGRADE is starting... -- 15:36:50.394 INFO [21959]: Version from config: 1.0 -- 15:36:50.394 DEBUG [21959]: Connecting to database... -- 15:36:50.394 DEBUG [21959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:36:50.394 SQL [21959]: pgsql_db_connect() -- 15:36:50.393 DEBUG [30055]: Database connection successful -- 15:36:50.393 INFO [30055]: _SERVER found -- 15:36:50.393 INFO [30055]: REMOTE_ADDR = 192.168.1.13 -- 15:36:50.393 INFO [30055]: SERVER_NAME = oameye.works.coregrade.com -- 15:36:50.393 INFO [30055]: HTTP_COOKIE = ci_session=tibt7p90hufmj907o8iabidfj8rshis1; _ga=GA1.2.38091328.1580686965 -- 15:36:50.393 INFO [30055]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 15:36:50.393 INFO [30055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:36:50.405 INFO [30055]: COREGRADE is stopping... -- 15:36:50.405 DEBUG [30055]: Closing database connection -- 15:36:50.405 SQL [30055]: pgsql_close() -- 15:36:50.399 DEBUG [21959]: Database connection successful -- 15:36:50.399 INFO [21959]: _SERVER found -- 15:36:50.399 INFO [21959]: REMOTE_ADDR = 192.168.1.13 -- 15:36:50.399 INFO [21959]: SERVER_NAME = oameye.works.coregrade.com -- 15:36:50.399 INFO [21959]: HTTP_COOKIE = ci_session=tibt7p90hufmj907o8iabidfj8rshis1; _ga=GA1.2.38091328.1580686965 -- 15:36:50.399 INFO [21959]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:36:50.399 INFO [21959]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:36:50.413 INFO [21959]: COREGRADE is stopping... -- 15:36:50.413 DEBUG [21959]: Closing database connection -- 15:36:50.413 SQL [21959]: pgsql_close() -- 15:36:53.879 INFO [30056]: COREGRADE is starting... -- 15:36:53.880 INFO [30056]: Version from config: 1.0 -- 15:36:53.880 DEBUG [30056]: Connecting to database... -- 15:36:53.880 DEBUG [30056]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:36:53.880 SQL [30056]: pgsql_db_connect() -- 15:36:53.884 DEBUG [30056]: Database connection successful -- 15:36:53.884 INFO [30056]: _SERVER found -- 15:36:53.884 INFO [30056]: REMOTE_ADDR = 192.168.1.13 -- 15:36:53.884 INFO [30056]: SERVER_NAME = oameye.works.coregrade.com -- 15:36:53.884 INFO [30056]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.2039943866.1582835811; ci_session=tibt7p90hufmj907o8iabidfj8rshis1 -- 15:36:53.884 INFO [30056]: QUERY_STRING = /auth -- 15:36:53.884 INFO [30056]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:36:53.919 INFO [30056]: COREGRADE is stopping... -- 15:36:53.919 DEBUG [30056]: Closing database connection -- 15:36:53.919 SQL [30056]: pgsql_close() -- 15:36:54.469 INFO [27751]: COREGRADE is starting... -- 15:36:54.469 INFO [27751]: Version from config: 1.0 -- 15:36:54.469 DEBUG [27751]: Connecting to database... -- 15:36:54.469 DEBUG [27751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:36:54.469 SQL [27751]: pgsql_db_connect() -- 15:36:54.474 DEBUG [27751]: Database connection successful -- 15:36:54.474 INFO [27751]: _SERVER found -- 15:36:54.474 INFO [27751]: REMOTE_ADDR = 192.168.1.13 -- 15:36:54.474 INFO [27751]: SERVER_NAME = oameye.works.coregrade.com -- 15:36:54.474 INFO [27751]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.2039943866.1582835811; ci_session=tibt7p90hufmj907o8iabidfj8rshis1 -- 15:36:54.474 INFO [27751]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:36:54.474 INFO [27751]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:36:54.487 INFO [27751]: COREGRADE is stopping... -- 15:36:54.487 DEBUG [27751]: Closing database connection -- 15:36:54.487 SQL [27751]: pgsql_close() -- 15:36:54.656 INFO [21957]: COREGRADE is starting... -- 15:36:54.656 INFO [21957]: Version from config: 1.0 -- 15:36:54.656 DEBUG [21957]: Connecting to database... -- 15:36:54.656 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:36:54.656 SQL [21957]: pgsql_db_connect() -- 15:36:54.661 DEBUG [21957]: Database connection successful -- 15:36:54.661 INFO [21957]: _SERVER found -- 15:36:54.661 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 15:36:54.661 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 15:36:54.661 INFO [21957]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.2039943866.1582835811; ci_session=tibt7p90hufmj907o8iabidfj8rshis1 -- 15:36:54.661 INFO [21957]: QUERY_STRING = /app-assets/data/locales/en.json -- 15:36:54.661 INFO [21957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:36:54.673 INFO [21957]: COREGRADE is stopping... -- 15:36:54.673 DEBUG [21957]: Closing database connection -- 15:36:54.673 SQL [21957]: pgsql_close() -- 15:37:00.752 INFO [21955]: COREGRADE is starting... -- 15:37:00.753 INFO [21955]: Version from config: 1.0 -- 15:37:00.753 DEBUG [21955]: Connecting to database... -- 15:37:00.753 DEBUG [21955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:00.753 SQL [21955]: pgsql_db_connect() -- 15:37:00.792 INFO [21955]: COREGRADE is starting... -- 15:37:00.792 INFO [21955]: Version from config: 1.0 -- 15:37:00.792 DEBUG [21955]: Connecting to database... -- 15:37:00.792 DEBUG [21955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:00.792 SQL [21955]: pgsql_db_connect() -- 15:37:00.798 DEBUG [21955]: Database connection successful -- 15:37:00.798 INFO [21955]: _SERVER found -- 15:37:00.798 INFO [21955]: REMOTE_ADDR = 192.168.1.13 -- 15:37:00.798 INFO [21955]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:00.798 INFO [21955]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.2039943866.1582835811; ci_session=tibt7p90hufmj907o8iabidfj8rshis1 -- 15:37:00.798 INFO [21955]: QUERY_STRING = -- 15:37:00.798 INFO [21955]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:00.798 INFO [21955]: SystemStatus()09-09-********~************ -- 15:37:00.798 INFO [21955]: long coregrade_api_main(CVars in, CVars &out) -- 15:37:00.798 INFO [21955]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 15:37:00.798 INFO [21955]: account calls -- 15:37:00.798 INFO [21955]: account_calls() -- 15:37:00.798 INFO [21955]: LoginCoreGradeAccount() -- 15:37:00.798 FLOG_MAX [21955]: REQ_STRING(username) -- 15:37:00.798 FLOG_MAX [21955]: REQ_STRING(password) -- 15:37:00.798 FLOG_MAX [21955]: REQ_STRING(sessionid) -- 15:37:00.798 FLOG_MAX [21955]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:37:00.798 SQL [21955]: pgsql_query() -- 15:37:00.798 SQL [21955]: About to run query: -- 15:37:00.798 SQL [21955]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 15:37:00.802 SQL [21955]: Found rows: 1 -- 15:37:00.802 FLOG_MAX [21955]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 15:37:00.802 INFO [21955]: long SessionCheck(long uid, const char *sessionid, int create ) -- 15:37:00.802 SQL [21955]: pgsql_exec() -- 15:37:00.802 SQL [21955]: About to run query: -- 15:37:00.802 SQL [21955]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 15:37:00.804 SQL [21955]: PQcmdTuples: 1 -- 15:37:00.804 SQL [21955]: Affected rows: 1 -- 15:37:00.804 SQL [21955]: pgsql_exec() -- 15:37:00.804 SQL [21955]: About to run query: -- 15:37:00.804 SQL [21955]: DELETE FROM members_session WHERE member_id=5 -- 15:37:00.804 SQL [21955]: PQcmdTuples: 0 -- 15:37:00.804 SQL [21955]: Affected rows: 0 -- 15:37:00.804 SQL [21955]: pgsql_query() -- 15:37:00.804 SQL [21955]: About to run query: -- 15:37:00.804 SQL [21955]: SELECT * FROM members_session WHERE member_id=5 AND session<>'64699AB1C6ECAE15DCC25C5E2EF0921D' -- 15:37:00.805 SQL [21955]: Found rows: 0 -- 15:37:00.805 SQL [21955]: Found rows: 0 -- 15:37:00.805 FLOG_MAX [21955]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:37:00.805 SQL [21955]: pgsql_query() -- 15:37:00.805 SQL [21955]: About to run query: -- 15:37:00.805 SQL [21955]: SELECT * FROM members_session WHERE member_id=5 AND session='64699AB1C6ECAE15DCC25C5E2EF0921D' -- 15:37:00.805 SQL [21955]: Found rows: 0 -- 15:37:00.805 SQL [21955]: Found rows: 0 -- 15:37:00.805 FLOG_MAX [21955]: insert_db_record() -- 15:37:00.805 SQL [21955]: pgsql_exec() -- 15:37:00.805 SQL [21955]: About to run query: -- 15:37:00.805 SQL [21955]: INSERT INTO members_session (member_id,session) VALUES ('5','64699AB1C6ECAE15DCC25C5E2EF0921D') -- 15:37:00.807 SQL [21955]: PQcmdTuples: 1 -- 15:37:00.807 SQL [21955]: Affected rows: 1 -- 15:37:00.807 FLOG_MAX [21955]: SELECT currval('members_session_id_seq') -- 15:37:00.807 SQL [21955]: pgsql_query() -- 15:37:00.807 SQL [21955]: About to run query: -- 15:37:00.807 SQL [21955]: SELECT currval('members_session_id_seq') -- 15:37:00.807 SQL [21955]: Found rows: 1 -- 15:37:00.807 INFO [21955]: CreateDefaultPage() -- 15:37:00.807 FLOG_MAX [21955]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:37:00.807 SQL [21955]: pgsql_query() -- 15:37:00.807 SQL [21955]: About to run query: -- 15:37:00.807 SQL [21955]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 15:37:00.808 SQL [21955]: Found rows: 1 -- 15:37:00.808 FLOG_MAX [21955]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 15:37:00.808 SQL [21955]: pgsql_query() -- 15:37:00.808 SQL [21955]: About to run query: -- 15:37:00.808 SQL [21955]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 15:37:00.808 SQL [21955]: Found rows: 1 -- 15:37:00.808 INFO [21955]: /CreateDefaultPage() -- 15:37:00.808 INFO [21955]: /LoginCoreGradeAccount() -- 15:37:00.808 INFO [21955]: RET: added=2020-02-05 06:47:23.982154 -- 15:37:00.808 INFO [21955]: RET: email=ameye+11@chiefsoft.com -- 15:37:00.808 INFO [21955]: RET: firstname=Olu -- 15:37:00.808 INFO [21955]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 15:37:00.808 INFO [21955]: RET: id=5 -- 15:37:00.808 INFO [21955]: RET: last_login= -- 15:37:00.808 INFO [21955]: RET: lastname=Amey -- 15:37:00.808 INFO [21955]: RET: loc=192.168.1.13 -- 15:37:00.808 INFO [21955]: RET: member_id=5 -- 15:37:00.808 INFO [21955]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 15:37:00.808 INFO [21955]: RET: phone= -- 15:37:00.808 INFO [21955]: RET: pid= -- 15:37:00.808 INFO [21955]: RET: result=YES I GET TO BACK END -- 15:37:00.808 INFO [21955]: RET: sessionid=64699AB1C6ECAE15DCC25C5E2EF0921D -- 15:37:00.808 INFO [21955]: RET: status=1 -- 15:37:00.808 INFO [21955]: RET: stauts=OK -- 15:37:00.808 INFO [21955]: RET: username=ameye+11@chiefsoft.com -- 15:37:00.808 INFO [21955]: RET: verified= -- 15:37:00.810 INFO [21955]: COREGRADE is stopping... -- 15:37:00.810 DEBUG [21955]: Closing database connection -- 15:37:00.810 SQL [21955]: pgsql_close() -- 15:37:00.757 DEBUG [21955]: Database connection successful -- 15:37:00.757 INFO [21955]: _SERVER found -- 15:37:00.757 INFO [21955]: REMOTE_ADDR = 192.168.1.13 -- 15:37:00.757 INFO [21955]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:00.757 INFO [21955]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.2039943866.1582835811; ci_session=tibt7p90hufmj907o8iabidfj8rshis1 -- 15:37:00.757 INFO [21955]: QUERY_STRING = /auth -- 15:37:00.757 INFO [21955]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:00.810 INFO [21955]: COREGRADE is stopping... -- 15:37:00.810 DEBUG [21955]: Closing database connection -- 15:37:00.810 SQL [21955]: pgsql_close() -- 15:37:00.833 INFO [21955]: COREGRADE is starting... -- 15:37:00.833 INFO [21955]: Version from config: 1.0 -- 15:37:00.833 DEBUG [21955]: Connecting to database... -- 15:37:00.833 DEBUG [21955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:00.833 SQL [21955]: pgsql_db_connect() -- 15:37:00.838 DEBUG [21955]: Database connection successful -- 15:37:00.838 INFO [21955]: _SERVER found -- 15:37:00.838 INFO [21955]: REMOTE_ADDR = 192.168.1.13 -- 15:37:00.838 INFO [21955]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:00.838 INFO [21955]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.2039943866.1582835811; ci_session=tibt7p90hufmj907o8iabidfj8rshis1 -- 15:37:00.838 INFO [21955]: QUERY_STRING = /member/index -- 15:37:00.838 INFO [21955]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:00.879 INFO [21955]: COREGRADE is stopping... -- 15:37:00.879 DEBUG [21955]: Closing database connection -- 15:37:00.879 SQL [21955]: pgsql_close() -- 15:37:01.341 INFO [21964]: COREGRADE is starting... -- 15:37:01.342 INFO [21964]: Version from config: 1.0 -- 15:37:01.342 DEBUG [21964]: Connecting to database... -- 15:37:01.342 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:01.342 SQL [21964]: pgsql_db_connect() -- 15:37:01.346 DEBUG [21964]: Database connection successful -- 15:37:01.346 INFO [21964]: _SERVER found -- 15:37:01.346 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 15:37:01.346 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:01.346 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.2039943866.1582835811; ci_session=tibt7p90hufmj907o8iabidfj8rshis1 -- 15:37:01.346 INFO [21964]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:37:01.346 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:01.359 INFO [21964]: COREGRADE is stopping... -- 15:37:01.359 DEBUG [21964]: Closing database connection -- 15:37:01.359 SQL [21964]: pgsql_close() -- 15:37:01.817 INFO [21964]: COREGRADE is starting... -- 15:37:01.817 INFO [21964]: Version from config: 1.0 -- 15:37:01.817 DEBUG [21964]: Connecting to database... -- 15:37:01.817 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:01.817 SQL [21964]: pgsql_db_connect() -- 15:37:01.822 DEBUG [21964]: Database connection successful -- 15:37:01.822 INFO [21964]: _SERVER found -- 15:37:01.822 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 15:37:01.822 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:01.822 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.2039943866.1582835811; ci_session=tibt7p90hufmj907o8iabidfj8rshis1 -- 15:37:01.822 INFO [21964]: QUERY_STRING = /app-assets/data/locales/en.json -- 15:37:01.822 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:01.833 INFO [21964]: COREGRADE is stopping... -- 15:37:01.833 DEBUG [21964]: Closing database connection -- 15:37:01.833 SQL [21964]: pgsql_close() -- 15:37:02.829 INFO [21964]: COREGRADE is starting... -- 15:37:02.830 INFO [21964]: Version from config: 1.0 -- 15:37:02.830 DEBUG [21964]: Connecting to database... -- 15:37:02.830 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:02.830 SQL [21964]: pgsql_db_connect() -- 15:37:02.835 DEBUG [21964]: Database connection successful -- 15:37:02.835 INFO [21964]: _SERVER found -- 15:37:02.835 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 15:37:02.835 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:02.835 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.2039943866.1582835811; ci_session=tibt7p90hufmj907o8iabidfj8rshis1 -- 15:37:02.835 INFO [21964]: QUERY_STRING = /member/page -- 15:37:02.835 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:02.879 INFO [21964]: COREGRADE is stopping... -- 15:37:02.879 DEBUG [21964]: Closing database connection -- 15:37:02.879 SQL [21964]: pgsql_close() -- 15:37:02.979 INFO [21964]: COREGRADE is starting... -- 15:37:02.980 INFO [21964]: Version from config: 1.0 -- 15:37:02.980 DEBUG [21964]: Connecting to database... -- 15:37:02.980 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:02.980 SQL [21964]: pgsql_db_connect() -- 15:37:02.984 DEBUG [21964]: Database connection successful -- 15:37:02.984 INFO [21964]: _SERVER found -- 15:37:02.984 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 15:37:02.984 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:02.984 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.2039943866.1582835811; ci_session=tibt7p90hufmj907o8iabidfj8rshis1 -- 15:37:02.984 INFO [21964]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:37:02.984 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:02.995 INFO [21964]: COREGRADE is stopping... -- 15:37:02.995 DEBUG [21964]: Closing database connection -- 15:37:02.995 SQL [21964]: pgsql_close() -- 15:37:03.106 INFO [21964]: COREGRADE is starting... -- 15:37:03.106 INFO [21964]: Version from config: 1.0 -- 15:37:03.106 DEBUG [21964]: Connecting to database... -- 15:37:03.106 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:03.106 SQL [21964]: pgsql_db_connect() -- 15:37:03.110 DEBUG [21964]: Database connection successful -- 15:37:03.110 INFO [21964]: _SERVER found -- 15:37:03.110 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 15:37:03.110 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:03.110 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.2039943866.1582835811; ci_session=tibt7p90hufmj907o8iabidfj8rshis1 -- 15:37:03.110 INFO [21964]: QUERY_STRING = /app-assets/data/locales/en.json -- 15:37:03.110 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:03.122 INFO [21964]: COREGRADE is stopping... -- 15:37:03.122 DEBUG [21964]: Closing database connection -- 15:37:03.122 SQL [21964]: pgsql_close() -- 15:54:21.973 INFO [21964]: COREGRADE is starting... -- 15:54:21.973 INFO [21964]: Version from config: 1.0 -- 15:54:21.973 DEBUG [21964]: Connecting to database... -- 15:54:21.973 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:54:21.973 SQL [21964]: pgsql_db_connect() -- 15:54:21.978 DEBUG [21964]: Database connection successful -- 15:54:21.978 INFO [21964]: _SERVER found -- 15:54:21.978 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 15:54:21.978 INFO [21964]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:54:21.978 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 15:54:21.978 INFO [21964]: QUERY_STRING = /auth -- 15:54:21.978 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:54:22.013 INFO [21964]: COREGRADE is stopping... -- 15:54:22.013 DEBUG [21964]: Closing database connection -- 15:54:22.013 SQL [21964]: pgsql_close() -- 15:54:22.307 INFO [30057]: COREGRADE is starting... -- 15:54:22.307 INFO [30057]: Version from config: 1.0 -- 15:54:22.307 DEBUG [30057]: Connecting to database... -- 15:54:22.307 DEBUG [30057]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:54:22.307 SQL [30057]: pgsql_db_connect() -- 15:54:22.311 DEBUG [30057]: Database connection successful -- 15:54:22.311 INFO [30057]: _SERVER found -- 15:54:22.311 INFO [30057]: REMOTE_ADDR = 192.168.1.13 -- 15:54:22.311 INFO [30057]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:54:22.311 INFO [30057]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=6660fqciohiv48i506bmr6vodf2fre4g -- 15:54:22.311 INFO [30057]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:54:22.311 INFO [30057]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:54:22.323 INFO [30057]: COREGRADE is stopping... -- 15:54:22.323 DEBUG [30057]: Closing database connection -- 15:54:22.323 SQL [30057]: pgsql_close() -- 15:54:22.476 INFO [30057]: COREGRADE is starting... -- 15:54:22.476 INFO [30057]: Version from config: 1.0 -- 15:54:22.476 DEBUG [30057]: Connecting to database... -- 15:54:22.476 DEBUG [30057]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:54:22.476 SQL [30057]: pgsql_db_connect() -- 15:54:22.480 DEBUG [30057]: Database connection successful -- 15:54:22.480 INFO [30057]: _SERVER found -- 15:54:22.480 INFO [30057]: REMOTE_ADDR = 192.168.1.13 -- 15:54:22.480 INFO [30057]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:54:22.480 INFO [30057]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=6660fqciohiv48i506bmr6vodf2fre4g -- 15:54:22.480 INFO [30057]: QUERY_STRING = /app-assets/data/locales/en.json -- 15:54:22.480 INFO [30057]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:54:22.491 INFO [30057]: COREGRADE is stopping... -- 15:54:22.491 DEBUG [30057]: Closing database connection -- 15:54:22.492 SQL [30057]: pgsql_close() -- 15:54:24.056 INFO [30057]: COREGRADE is starting... -- 15:54:24.057 INFO [30057]: Version from config: 1.0 -- 15:54:24.057 DEBUG [30057]: Connecting to database... -- 15:54:24.057 DEBUG [30057]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:54:24.057 SQL [30057]: pgsql_db_connect() -- 15:54:24.061 DEBUG [30057]: Database connection successful -- 15:54:24.061 INFO [30057]: _SERVER found -- 15:54:24.061 INFO [30057]: REMOTE_ADDR = 192.168.1.13 -- 15:54:24.061 INFO [30057]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:54:24.061 INFO [30057]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=6660fqciohiv48i506bmr6vodf2fre4g -- 15:54:24.061 INFO [30057]: QUERY_STRING = /auth -- 15:54:24.061 INFO [30057]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:54:24.123 INFO [30057]: COREGRADE is starting... -- 15:54:24.123 INFO [30057]: Version from config: 1.0 -- 15:54:24.123 DEBUG [30057]: Connecting to database... -- 15:54:24.123 DEBUG [30057]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:54:24.123 SQL [30057]: pgsql_db_connect() -- 15:54:24.127 DEBUG [30057]: Database connection successful -- 15:54:24.127 INFO [30057]: _SERVER found -- 15:54:24.127 INFO [30057]: REMOTE_ADDR = 192.168.1.13 -- 15:54:24.127 INFO [30057]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:54:24.127 INFO [30057]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=6660fqciohiv48i506bmr6vodf2fre4g -- 15:54:24.127 INFO [30057]: QUERY_STRING = /member/index -- 15:54:24.127 INFO [30057]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:54:24.167 INFO [30057]: COREGRADE is stopping... -- 15:54:24.167 DEBUG [30057]: Closing database connection -- 15:54:24.167 SQL [30057]: pgsql_close() -- 15:54:24.487 INFO [21958]: COREGRADE is starting... -- 15:54:24.488 INFO [21958]: Version from config: 1.0 -- 15:54:24.488 DEBUG [21958]: Connecting to database... -- 15:54:24.488 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:54:24.488 SQL [21958]: pgsql_db_connect() -- 15:54:24.492 DEBUG [21958]: Database connection successful -- 15:54:24.492 INFO [21958]: _SERVER found -- 15:54:24.492 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 15:54:24.492 INFO [21958]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:54:24.492 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=6660fqciohiv48i506bmr6vodf2fre4g -- 15:54:24.492 INFO [21958]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:54:24.492 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:54:24.504 INFO [21958]: COREGRADE is stopping... -- 15:54:24.504 DEBUG [21958]: Closing database connection -- 15:54:24.504 SQL [21958]: pgsql_close() -- 15:54:24.910 INFO [21958]: COREGRADE is starting... -- 15:54:24.910 INFO [21958]: Version from config: 1.0 -- 15:54:24.910 DEBUG [21958]: Connecting to database... -- 15:54:24.910 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:54:24.910 SQL [21958]: pgsql_db_connect() -- 15:54:24.914 DEBUG [21958]: Database connection successful -- 15:54:24.914 INFO [21958]: _SERVER found -- 15:54:24.914 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 15:54:24.914 INFO [21958]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:54:24.914 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=6660fqciohiv48i506bmr6vodf2fre4g -- 15:54:24.914 INFO [21958]: QUERY_STRING = /app-assets/data/locales/en.json -- 15:54:24.914 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:54:24.925 INFO [21958]: COREGRADE is stopping... -- 15:54:24.925 DEBUG [21958]: Closing database connection -- 15:54:24.925 SQL [21958]: pgsql_close() -- 15:54:25.651 INFO [21958]: COREGRADE is starting... -- 15:54:25.651 INFO [21958]: Version from config: 1.0 -- 15:54:25.651 DEBUG [21958]: Connecting to database... -- 15:54:25.651 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:54:25.651 SQL [21958]: pgsql_db_connect() -- 15:54:25.655 DEBUG [21958]: Database connection successful -- 15:54:25.655 INFO [21958]: _SERVER found -- 15:54:25.655 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 15:54:25.655 INFO [21958]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:54:25.655 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=6660fqciohiv48i506bmr6vodf2fre4g -- 15:54:25.655 INFO [21958]: QUERY_STRING = /member/page -- 15:54:25.655 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:54:25.698 INFO [21958]: COREGRADE is stopping... -- 15:54:25.699 DEBUG [21958]: Closing database connection -- 15:54:25.699 SQL [21958]: pgsql_close() -- 15:54:25.807 INFO [21964]: COREGRADE is starting... -- 15:54:25.807 INFO [21964]: Version from config: 1.0 -- 15:54:25.807 DEBUG [21964]: Connecting to database... -- 15:54:25.807 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:54:25.807 SQL [21964]: pgsql_db_connect() -- 15:54:25.811 DEBUG [21964]: Database connection successful -- 15:54:25.811 INFO [21964]: _SERVER found -- 15:54:25.811 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 15:54:25.811 INFO [21964]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:54:25.811 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=6660fqciohiv48i506bmr6vodf2fre4g -- 15:54:25.811 INFO [21964]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:54:25.811 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:54:25.822 INFO [21964]: COREGRADE is stopping... -- 15:54:25.822 DEBUG [21964]: Closing database connection -- 15:54:25.822 SQL [21964]: pgsql_close() -- 15:54:25.945 INFO [21957]: COREGRADE is starting... -- 15:54:25.945 INFO [21957]: Version from config: 1.0 -- 15:54:25.945 DEBUG [21957]: Connecting to database... -- 15:54:25.945 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:54:25.945 SQL [21957]: pgsql_db_connect() -- 15:54:25.949 DEBUG [21957]: Database connection successful -- 15:54:25.949 INFO [21957]: _SERVER found -- 15:54:25.949 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 15:54:25.949 INFO [21957]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:54:25.949 INFO [21957]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=6660fqciohiv48i506bmr6vodf2fre4g -- 15:54:25.949 INFO [21957]: QUERY_STRING = /app-assets/data/locales/en.json -- 15:54:25.949 INFO [21957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:54:25.964 INFO [21957]: COREGRADE is stopping... -- 15:54:25.964 DEBUG [21957]: Closing database connection -- 15:54:25.964 SQL [21957]: pgsql_close() -- 16:09:59.138 INFO [7340]: COREGRADE is starting... -- 16:09:59.138 INFO [7340]: Version from config: 1.0 -- 16:09:59.139 DEBUG [7340]: Connecting to database... -- 16:09:59.139 DEBUG [7340]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:09:59.139 SQL [7340]: pgsql_db_connect() -- 16:09:59.143 DEBUG [7340]: Database connection successful -- 16:09:59.143 INFO [7340]: _SERVER found -- 16:09:59.143 INFO [7340]: REMOTE_ADDR = 192.168.1.13 -- 16:09:59.143 INFO [7340]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:09:59.143 INFO [7340]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=6660fqciohiv48i506bmr6vodf2fre4g -- 16:09:59.143 INFO [7340]: QUERY_STRING = /member/page -- 16:09:59.143 INFO [7340]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:09:59.197 INFO [7340]: COREGRADE is stopping... -- 16:09:59.197 DEBUG [7340]: Closing database connection -- 16:09:59.197 SQL [7340]: pgsql_close() -- 16:09:59.337 INFO [7340]: COREGRADE is starting... -- 16:09:59.337 INFO [7340]: Version from config: 1.0 -- 16:09:59.337 DEBUG [7340]: Connecting to database... -- 16:09:59.337 DEBUG [7340]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:09:59.337 SQL [7340]: pgsql_db_connect() -- 16:09:59.341 DEBUG [7340]: Database connection successful -- 16:09:59.341 INFO [7340]: _SERVER found -- 16:09:59.341 INFO [7340]: REMOTE_ADDR = 192.168.1.13 -- 16:09:59.341 INFO [7340]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:09:59.341 INFO [7340]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=dl1hq1lgj9h4nm3qeiivruo695t7q7bm -- 16:09:59.341 INFO [7340]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:09:59.341 INFO [7340]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:09:59.353 INFO [7340]: COREGRADE is stopping... -- 16:09:59.353 DEBUG [7340]: Closing database connection -- 16:09:59.353 SQL [7340]: pgsql_close() -- 16:09:59.482 INFO [7340]: COREGRADE is starting... -- 16:09:59.482 INFO [7340]: Version from config: 1.0 -- 16:09:59.482 DEBUG [7340]: Connecting to database... -- 16:09:59.482 DEBUG [7340]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:09:59.482 SQL [7340]: pgsql_db_connect() -- 16:09:59.486 DEBUG [7340]: Database connection successful -- 16:09:59.486 INFO [7340]: _SERVER found -- 16:09:59.486 INFO [7340]: REMOTE_ADDR = 192.168.1.13 -- 16:09:59.486 INFO [7340]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:09:59.486 INFO [7340]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=dl1hq1lgj9h4nm3qeiivruo695t7q7bm -- 16:09:59.486 INFO [7340]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:09:59.486 INFO [7340]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:09:59.498 INFO [7340]: COREGRADE is stopping... -- 16:09:59.498 DEBUG [7340]: Closing database connection -- 16:09:59.498 SQL [7340]: pgsql_close() -- 16:10:08.924 INFO [30056]: COREGRADE is starting... -- 16:10:08.924 INFO [30056]: Version from config: 1.0 -- 16:10:08.924 DEBUG [30056]: Connecting to database... -- 16:10:08.924 DEBUG [30056]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:10:08.924 SQL [30056]: pgsql_db_connect() -- 16:10:08.928 DEBUG [30056]: Database connection successful -- 16:10:08.928 INFO [30056]: _SERVER found -- 16:10:08.928 INFO [30056]: REMOTE_ADDR = 192.168.1.13 -- 16:10:08.928 INFO [30056]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:10:08.928 INFO [30056]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=dl1hq1lgj9h4nm3qeiivruo695t7q7bm -- 16:10:08.928 INFO [30056]: QUERY_STRING = /member/mycalendar -- 16:10:08.928 INFO [30056]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:10:08.967 INFO [30056]: COREGRADE is stopping... -- 16:10:08.967 DEBUG [30056]: Closing database connection -- 16:10:08.967 SQL [30056]: pgsql_close() -- 16:10:09.089 INFO [30056]: COREGRADE is starting... -- 16:10:09.089 INFO [30056]: Version from config: 1.0 -- 16:10:09.089 DEBUG [30056]: Connecting to database... -- 16:10:09.089 DEBUG [30056]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:10:09.089 SQL [30056]: pgsql_db_connect() -- 16:10:09.093 DEBUG [30056]: Database connection successful -- 16:10:09.093 INFO [30056]: _SERVER found -- 16:10:09.093 INFO [30056]: REMOTE_ADDR = 192.168.1.13 -- 16:10:09.093 INFO [30056]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:10:09.093 INFO [30056]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=dl1hq1lgj9h4nm3qeiivruo695t7q7bm -- 16:10:09.093 INFO [30056]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:10:09.093 INFO [30056]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:10:09.104 INFO [30056]: COREGRADE is stopping... -- 16:10:09.104 DEBUG [30056]: Closing database connection -- 16:10:09.104 SQL [30056]: pgsql_close() -- 16:10:09.120 INFO [30056]: COREGRADE is starting... -- 16:10:09.120 INFO [30056]: Version from config: 1.0 -- 16:10:09.120 DEBUG [30056]: Connecting to database... -- 16:10:09.120 DEBUG [30056]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:10:09.120 SQL [30056]: pgsql_db_connect() -- 16:10:09.124 DEBUG [30056]: Database connection successful -- 16:10:09.124 INFO [30056]: _SERVER found -- 16:10:09.124 INFO [30056]: REMOTE_ADDR = 192.168.1.13 -- 16:10:09.124 INFO [30056]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:10:09.124 INFO [30056]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=dl1hq1lgj9h4nm3qeiivruo695t7q7bm -- 16:10:09.124 INFO [30056]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:10:09.124 INFO [30056]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:10:09.135 INFO [30056]: COREGRADE is stopping... -- 16:10:09.135 DEBUG [30056]: Closing database connection -- 16:10:09.135 SQL [30056]: pgsql_close() -- 16:17:29.156 INFO [21958]: COREGRADE is starting... -- 16:17:29.157 INFO [21958]: Version from config: 1.0 -- 16:17:29.157 DEBUG [21958]: Connecting to database... -- 16:17:29.157 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:29.157 SQL [21958]: pgsql_db_connect() -- 16:17:29.161 DEBUG [21958]: Database connection successful -- 16:17:29.161 INFO [21958]: _SERVER found -- 16:17:29.161 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 16:17:29.161 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:29.161 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 16:17:29.161 INFO [21958]: QUERY_STRING = -- 16:17:29.161 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:29.196 INFO [21958]: COREGRADE is stopping... -- 16:17:29.196 DEBUG [21958]: Closing database connection -- 16:17:29.196 SQL [21958]: pgsql_close() -- 16:17:29.993 INFO [21958]: COREGRADE is starting... -- 16:17:29.993 INFO [21958]: Version from config: 1.0 -- 16:17:29.993 DEBUG [21958]: Connecting to database... -- 16:17:29.993 DEBUG [21958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:29.993 SQL [21958]: pgsql_db_connect() -- 16:17:29.997 DEBUG [21958]: Database connection successful -- 16:17:29.997 INFO [21958]: _SERVER found -- 16:17:29.997 INFO [21958]: REMOTE_ADDR = 192.168.1.13 -- 16:17:29.997 INFO [21958]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:29.997 INFO [21958]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vncgeve42qn34lg1qffrsctabs07hhmm; _gid=GA1.2.1422369660.1582838251; _gat_gtag_UA_54829827_2=1 -- 16:17:29.997 INFO [21958]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 16:17:29.997 INFO [21958]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:30.009 INFO [21958]: COREGRADE is stopping... -- 16:17:30.009 DEBUG [21958]: Closing database connection -- 16:17:30.009 SQL [21958]: pgsql_close() -- 16:17:30.034 INFO [21964]: COREGRADE is starting... -- 16:17:30.034 INFO [21964]: Version from config: 1.0 -- 16:17:30.034 DEBUG [21964]: Connecting to database... -- 16:17:30.034 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:30.034 SQL [21964]: pgsql_db_connect() -- 16:17:30.038 DEBUG [21964]: Database connection successful -- 16:17:30.038 INFO [21964]: _SERVER found -- 16:17:30.038 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 16:17:30.038 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:30.038 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vncgeve42qn34lg1qffrsctabs07hhmm; _gid=GA1.2.1422369660.1582838251; _gat_gtag_UA_54829827_2=1 -- 16:17:30.038 INFO [21964]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:17:30.038 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:30.053 INFO [21964]: COREGRADE is stopping... -- 16:17:30.053 DEBUG [21964]: Closing database connection -- 16:17:30.053 SQL [21964]: pgsql_close() -- 16:17:32.533 INFO [27753]: COREGRADE is starting... -- 16:17:32.533 INFO [27753]: Version from config: 1.0 -- 16:17:32.533 DEBUG [27753]: Connecting to database... -- 16:17:32.533 DEBUG [27753]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:32.533 SQL [27753]: pgsql_db_connect() -- 16:17:32.539 INFO [30055]: COREGRADE is starting... -- 16:17:32.539 INFO [30055]: Version from config: 1.0 -- 16:17:32.539 DEBUG [30055]: Connecting to database... -- 16:17:32.539 DEBUG [30055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:32.539 SQL [30055]: pgsql_db_connect() -- 16:17:32.537 DEBUG [27753]: Database connection successful -- 16:17:32.537 INFO [27753]: _SERVER found -- 16:17:32.537 INFO [27753]: REMOTE_ADDR = 192.168.1.13 -- 16:17:32.537 INFO [27753]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:32.537 INFO [27753]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vncgeve42qn34lg1qffrsctabs07hhmm; _gid=GA1.2.1422369660.1582838251; _gat_gtag_UA_54829827_2=1 -- 16:17:32.537 INFO [27753]: QUERY_STRING = /welcome/viewLogin -- 16:17:32.537 INFO [27753]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:32.571 INFO [27753]: COREGRADE is stopping... -- 16:17:32.571 DEBUG [27753]: Closing database connection -- 16:17:32.571 SQL [27753]: pgsql_close() -- 16:17:32.543 DEBUG [30055]: Database connection successful -- 16:17:32.543 INFO [30055]: _SERVER found -- 16:17:32.543 INFO [30055]: REMOTE_ADDR = 192.168.1.13 -- 16:17:32.543 INFO [30055]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:32.543 INFO [30055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vncgeve42qn34lg1qffrsctabs07hhmm; _gid=GA1.2.1422369660.1582838251; _gat_gtag_UA_54829827_2=1 -- 16:17:32.543 INFO [30055]: QUERY_STRING = /auth -- 16:17:32.543 INFO [30055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:32.578 INFO [30055]: COREGRADE is stopping... -- 16:17:32.578 DEBUG [30055]: Closing database connection -- 16:17:32.578 SQL [30055]: pgsql_close() -- 16:17:32.580 INFO [27753]: COREGRADE is starting... -- 16:17:32.581 INFO [27753]: Version from config: 1.0 -- 16:17:32.581 DEBUG [27753]: Connecting to database... -- 16:17:32.581 DEBUG [27753]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:32.581 SQL [27753]: pgsql_db_connect() -- 16:17:32.585 DEBUG [27753]: Database connection successful -- 16:17:32.585 INFO [27753]: _SERVER found -- 16:17:32.585 INFO [27753]: REMOTE_ADDR = 192.168.1.13 -- 16:17:32.585 INFO [27753]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:32.585 INFO [27753]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vncgeve42qn34lg1qffrsctabs07hhmm; _gid=GA1.2.1422369660.1582838251; _gat_gtag_UA_54829827_2=1 -- 16:17:32.585 INFO [27753]: QUERY_STRING = /auth/index -- 16:17:32.585 INFO [27753]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:32.616 INFO [27753]: COREGRADE is stopping... -- 16:17:32.616 DEBUG [27753]: Closing database connection -- 16:17:32.616 SQL [27753]: pgsql_close() -- 16:17:32.805 INFO [27753]: COREGRADE is starting... -- 16:17:32.806 INFO [27753]: Version from config: 1.0 -- 16:17:32.806 DEBUG [27753]: Connecting to database... -- 16:17:32.806 DEBUG [27753]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:32.806 SQL [27753]: pgsql_db_connect() -- 16:17:32.819 INFO [30055]: COREGRADE is starting... -- 16:17:32.819 INFO [30055]: Version from config: 1.0 -- 16:17:32.819 DEBUG [30055]: Connecting to database... -- 16:17:32.819 DEBUG [30055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:32.819 SQL [30055]: pgsql_db_connect() -- 16:17:32.810 DEBUG [27753]: Database connection successful -- 16:17:32.810 INFO [27753]: _SERVER found -- 16:17:32.810 INFO [27753]: REMOTE_ADDR = 192.168.1.13 -- 16:17:32.810 INFO [27753]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:32.810 INFO [27753]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vncgeve42qn34lg1qffrsctabs07hhmm; _gid=GA1.2.1422369660.1582838251; _gat_gtag_UA_54829827_2=1 -- 16:17:32.810 INFO [27753]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:17:32.810 INFO [27753]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:32.821 INFO [27753]: COREGRADE is stopping... -- 16:17:32.821 DEBUG [27753]: Closing database connection -- 16:17:32.821 SQL [27753]: pgsql_close() -- 16:17:32.823 DEBUG [30055]: Database connection successful -- 16:17:32.823 INFO [30055]: _SERVER found -- 16:17:32.823 INFO [30055]: REMOTE_ADDR = 192.168.1.13 -- 16:17:32.823 INFO [30055]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:32.823 INFO [30055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vncgeve42qn34lg1qffrsctabs07hhmm; _gid=GA1.2.1422369660.1582838251; _gat_gtag_UA_54829827_2=1 -- 16:17:32.823 INFO [30055]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:17:32.823 INFO [30055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:32.834 INFO [30055]: COREGRADE is stopping... -- 16:17:32.834 DEBUG [30055]: Closing database connection -- 16:17:32.834 SQL [30055]: pgsql_close() -- 16:17:34.118 INFO [30055]: COREGRADE is starting... -- 16:17:34.118 INFO [30055]: Version from config: 1.0 -- 16:17:34.118 DEBUG [30055]: Connecting to database... -- 16:17:34.118 DEBUG [30055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:34.118 SQL [30055]: pgsql_db_connect() -- 16:17:34.153 INFO [30055]: COREGRADE is starting... -- 16:17:34.153 INFO [30055]: Version from config: 1.0 -- 16:17:34.153 DEBUG [30055]: Connecting to database... -- 16:17:34.153 DEBUG [30055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:34.153 SQL [30055]: pgsql_db_connect() -- 16:17:34.158 DEBUG [30055]: Database connection successful -- 16:17:34.158 INFO [30055]: _SERVER found -- 16:17:34.158 INFO [30055]: REMOTE_ADDR = 192.168.1.13 -- 16:17:34.158 INFO [30055]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:34.158 INFO [30055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vncgeve42qn34lg1qffrsctabs07hhmm; _gid=GA1.2.1422369660.1582838251; _gat_gtag_UA_54829827_2=1 -- 16:17:34.158 INFO [30055]: QUERY_STRING = -- 16:17:34.158 INFO [30055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:34.158 INFO [30055]: SystemStatus()09-09-********~************ -- 16:17:34.158 INFO [30055]: long coregrade_api_main(CVars in, CVars &out) -- 16:17:34.158 INFO [30055]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 16:17:34.158 INFO [30055]: account calls -- 16:17:34.158 INFO [30055]: account_calls() -- 16:17:34.158 INFO [30055]: LoginCoreGradeAccount() -- 16:17:34.158 FLOG_MAX [30055]: REQ_STRING(username) -- 16:17:34.158 FLOG_MAX [30055]: REQ_STRING(password) -- 16:17:34.158 FLOG_MAX [30055]: REQ_STRING(sessionid) -- 16:17:34.158 FLOG_MAX [30055]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:17:34.158 SQL [30055]: pgsql_query() -- 16:17:34.158 SQL [30055]: About to run query: -- 16:17:34.158 SQL [30055]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 16:17:34.161 SQL [30055]: Found rows: 1 -- 16:17:34.161 FLOG_MAX [30055]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 16:17:34.161 INFO [30055]: long SessionCheck(long uid, const char *sessionid, int create ) -- 16:17:34.161 SQL [30055]: pgsql_exec() -- 16:17:34.161 SQL [30055]: About to run query: -- 16:17:34.161 SQL [30055]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 16:17:34.162 SQL [30055]: PQcmdTuples: 0 -- 16:17:34.162 SQL [30055]: Affected rows: 0 -- 16:17:34.162 SQL [30055]: pgsql_exec() -- 16:17:34.162 SQL [30055]: About to run query: -- 16:17:34.162 SQL [30055]: DELETE FROM members_session WHERE member_id=5 -- 16:17:34.163 SQL [30055]: PQcmdTuples: 1 -- 16:17:34.163 SQL [30055]: Affected rows: 1 -- 16:17:34.163 SQL [30055]: pgsql_query() -- 16:17:34.163 SQL [30055]: About to run query: -- 16:17:34.163 SQL [30055]: SELECT * FROM members_session WHERE member_id=5 AND session<>'F16F50096EB40C1BDF3FEA9748CAFC91' -- 16:17:34.164 SQL [30055]: Found rows: 0 -- 16:17:34.164 SQL [30055]: Found rows: 0 -- 16:17:34.164 FLOG_MAX [30055]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:17:34.164 SQL [30055]: pgsql_query() -- 16:17:34.164 SQL [30055]: About to run query: -- 16:17:34.164 SQL [30055]: SELECT * FROM members_session WHERE member_id=5 AND session='F16F50096EB40C1BDF3FEA9748CAFC91' -- 16:17:34.164 SQL [30055]: Found rows: 0 -- 16:17:34.164 SQL [30055]: Found rows: 0 -- 16:17:34.164 FLOG_MAX [30055]: insert_db_record() -- 16:17:34.164 SQL [30055]: pgsql_exec() -- 16:17:34.164 SQL [30055]: About to run query: -- 16:17:34.164 SQL [30055]: INSERT INTO members_session (member_id,session) VALUES ('5','F16F50096EB40C1BDF3FEA9748CAFC91') -- 16:17:34.166 SQL [30055]: PQcmdTuples: 1 -- 16:17:34.166 SQL [30055]: Affected rows: 1 -- 16:17:34.166 FLOG_MAX [30055]: SELECT currval('members_session_id_seq') -- 16:17:34.166 SQL [30055]: pgsql_query() -- 16:17:34.166 SQL [30055]: About to run query: -- 16:17:34.166 SQL [30055]: SELECT currval('members_session_id_seq') -- 16:17:34.166 SQL [30055]: Found rows: 1 -- 16:17:34.166 INFO [30055]: CreateDefaultPage() -- 16:17:34.166 FLOG_MAX [30055]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:17:34.166 SQL [30055]: pgsql_query() -- 16:17:34.166 SQL [30055]: About to run query: -- 16:17:34.166 SQL [30055]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 16:17:34.166 SQL [30055]: Found rows: 1 -- 16:17:34.166 FLOG_MAX [30055]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 16:17:34.166 SQL [30055]: pgsql_query() -- 16:17:34.166 SQL [30055]: About to run query: -- 16:17:34.166 SQL [30055]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 16:17:34.167 SQL [30055]: Found rows: 1 -- 16:17:34.167 INFO [30055]: /CreateDefaultPage() -- 16:17:34.167 INFO [30055]: /LoginCoreGradeAccount() -- 16:17:34.167 INFO [30055]: RET: added=2020-02-05 06:47:23.982154 -- 16:17:34.167 INFO [30055]: RET: email=ameye+11@chiefsoft.com -- 16:17:34.167 INFO [30055]: RET: firstname=Olu -- 16:17:34.167 INFO [30055]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 16:17:34.167 INFO [30055]: RET: id=5 -- 16:17:34.167 INFO [30055]: RET: last_login= -- 16:17:34.167 INFO [30055]: RET: lastname=Amey -- 16:17:34.167 INFO [30055]: RET: loc=192.168.1.13 -- 16:17:34.167 INFO [30055]: RET: member_id=5 -- 16:17:34.167 INFO [30055]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 16:17:34.167 INFO [30055]: RET: phone= -- 16:17:34.167 INFO [30055]: RET: pid= -- 16:17:34.167 INFO [30055]: RET: result=YES I GET TO BACK END -- 16:17:34.167 INFO [30055]: RET: sessionid=F16F50096EB40C1BDF3FEA9748CAFC91 -- 16:17:34.167 INFO [30055]: RET: status=1 -- 16:17:34.167 INFO [30055]: RET: stauts=OK -- 16:17:34.167 INFO [30055]: RET: username=ameye+11@chiefsoft.com -- 16:17:34.167 INFO [30055]: RET: verified= -- 16:17:34.168 INFO [30055]: COREGRADE is stopping... -- 16:17:34.168 DEBUG [30055]: Closing database connection -- 16:17:34.168 SQL [30055]: pgsql_close() -- 16:17:34.122 DEBUG [30055]: Database connection successful -- 16:17:34.122 INFO [30055]: _SERVER found -- 16:17:34.122 INFO [30055]: REMOTE_ADDR = 192.168.1.13 -- 16:17:34.122 INFO [30055]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:34.122 INFO [30055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vncgeve42qn34lg1qffrsctabs07hhmm; _gid=GA1.2.1422369660.1582838251; _gat_gtag_UA_54829827_2=1 -- 16:17:34.122 INFO [30055]: QUERY_STRING = /auth -- 16:17:34.122 INFO [30055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:34.169 INFO [30055]: COREGRADE is stopping... -- 16:17:34.169 DEBUG [30055]: Closing database connection -- 16:17:34.169 SQL [30055]: pgsql_close() -- 16:17:34.178 INFO [30055]: COREGRADE is starting... -- 16:17:34.178 INFO [30055]: Version from config: 1.0 -- 16:17:34.178 DEBUG [30055]: Connecting to database... -- 16:17:34.178 DEBUG [30055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:34.178 SQL [30055]: pgsql_db_connect() -- 16:17:34.182 DEBUG [30055]: Database connection successful -- 16:17:34.182 INFO [30055]: _SERVER found -- 16:17:34.182 INFO [30055]: REMOTE_ADDR = 192.168.1.13 -- 16:17:34.182 INFO [30055]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:34.182 INFO [30055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vncgeve42qn34lg1qffrsctabs07hhmm; _gid=GA1.2.1422369660.1582838251; _gat_gtag_UA_54829827_2=1 -- 16:17:34.182 INFO [30055]: QUERY_STRING = /member/index -- 16:17:34.182 INFO [30055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:34.222 INFO [30055]: COREGRADE is stopping... -- 16:17:34.222 DEBUG [30055]: Closing database connection -- 16:17:34.222 SQL [30055]: pgsql_close() -- 16:17:34.487 INFO [30055]: COREGRADE is starting... -- 16:17:34.487 INFO [30055]: Version from config: 1.0 -- 16:17:34.487 DEBUG [30055]: Connecting to database... -- 16:17:34.487 DEBUG [30055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:34.487 SQL [30055]: pgsql_db_connect() -- 16:17:34.491 DEBUG [30055]: Database connection successful -- 16:17:34.491 INFO [30055]: _SERVER found -- 16:17:34.491 INFO [30055]: REMOTE_ADDR = 192.168.1.13 -- 16:17:34.491 INFO [30055]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:34.491 INFO [30055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vncgeve42qn34lg1qffrsctabs07hhmm; _gid=GA1.2.1422369660.1582838251; _gat_gtag_UA_54829827_2=1 -- 16:17:34.491 INFO [30055]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:17:34.491 INFO [30055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:34.502 INFO [30055]: COREGRADE is stopping... -- 16:17:34.502 DEBUG [30055]: Closing database connection -- 16:17:34.502 SQL [30055]: pgsql_close() -- 16:17:34.602 INFO [30055]: COREGRADE is starting... -- 16:17:34.602 INFO [30055]: Version from config: 1.0 -- 16:17:34.602 DEBUG [30055]: Connecting to database... -- 16:17:34.602 DEBUG [30055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:34.602 SQL [30055]: pgsql_db_connect() -- 16:17:34.606 DEBUG [30055]: Database connection successful -- 16:17:34.606 INFO [30055]: _SERVER found -- 16:17:34.606 INFO [30055]: REMOTE_ADDR = 192.168.1.13 -- 16:17:34.606 INFO [30055]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:34.606 INFO [30055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vncgeve42qn34lg1qffrsctabs07hhmm; _gid=GA1.2.1422369660.1582838251; _gat_gtag_UA_54829827_2=1 -- 16:17:34.606 INFO [30055]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:17:34.606 INFO [30055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:34.617 INFO [30055]: COREGRADE is stopping... -- 16:17:34.617 DEBUG [30055]: Closing database connection -- 16:17:34.617 SQL [30055]: pgsql_close() -- 16:17:38.430 INFO [30055]: COREGRADE is starting... -- 16:17:38.431 INFO [30055]: Version from config: 1.0 -- 16:17:38.431 DEBUG [30055]: Connecting to database... -- 16:17:38.431 DEBUG [30055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:38.431 SQL [30055]: pgsql_db_connect() -- 16:17:38.435 DEBUG [30055]: Database connection successful -- 16:17:38.435 INFO [30055]: _SERVER found -- 16:17:38.435 INFO [30055]: REMOTE_ADDR = 192.168.1.13 -- 16:17:38.435 INFO [30055]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:38.435 INFO [30055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vncgeve42qn34lg1qffrsctabs07hhmm; _gid=GA1.2.1422369660.1582838251; _gat_gtag_UA_54829827_2=1 -- 16:17:38.435 INFO [30055]: QUERY_STRING = /member/mycalendar -- 16:17:38.435 INFO [30055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:38.472 INFO [30055]: COREGRADE is stopping... -- 16:17:38.472 DEBUG [30055]: Closing database connection -- 16:17:38.472 SQL [30055]: pgsql_close() -- 16:17:38.590 INFO [30055]: COREGRADE is starting... -- 16:17:38.590 INFO [30055]: Version from config: 1.0 -- 16:17:38.590 DEBUG [30055]: Connecting to database... -- 16:17:38.590 DEBUG [30055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:38.590 SQL [30055]: pgsql_db_connect() -- 16:17:38.595 DEBUG [30055]: Database connection successful -- 16:17:38.595 INFO [30055]: _SERVER found -- 16:17:38.595 INFO [30055]: REMOTE_ADDR = 192.168.1.13 -- 16:17:38.595 INFO [30055]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:38.595 INFO [30055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vncgeve42qn34lg1qffrsctabs07hhmm; _gid=GA1.2.1422369660.1582838251; _gat_gtag_UA_54829827_2=1 -- 16:17:38.595 INFO [30055]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:17:38.595 INFO [30055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:38.606 INFO [30055]: COREGRADE is stopping... -- 16:17:38.606 DEBUG [30055]: Closing database connection -- 16:17:38.606 SQL [30055]: pgsql_close() -- 16:17:38.612 INFO [21955]: COREGRADE is starting... -- 16:17:38.613 INFO [21955]: Version from config: 1.0 -- 16:17:38.613 DEBUG [21955]: Connecting to database... -- 16:17:38.613 DEBUG [21955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:38.613 SQL [21955]: pgsql_db_connect() -- 16:17:38.617 DEBUG [21955]: Database connection successful -- 16:17:38.617 INFO [21955]: _SERVER found -- 16:17:38.617 INFO [21955]: REMOTE_ADDR = 192.168.1.13 -- 16:17:38.617 INFO [21955]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:38.617 INFO [21955]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vncgeve42qn34lg1qffrsctabs07hhmm; _gid=GA1.2.1422369660.1582838251; _gat_gtag_UA_54829827_2=1 -- 16:17:38.617 INFO [21955]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:17:38.617 INFO [21955]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:38.629 INFO [21955]: COREGRADE is stopping... -- 16:17:38.629 DEBUG [21955]: Closing database connection -- 16:17:38.629 SQL [21955]: pgsql_close() -- 16:17:41.817 INFO [21955]: COREGRADE is starting... -- 16:17:41.818 INFO [21955]: Version from config: 1.0 -- 16:17:41.818 DEBUG [21955]: Connecting to database... -- 16:17:41.818 DEBUG [21955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:41.818 SQL [21955]: pgsql_db_connect() -- 16:17:41.818 INFO [30055]: COREGRADE is starting... -- 16:17:41.818 INFO [30055]: Version from config: 1.0 -- 16:17:41.818 DEBUG [30055]: Connecting to database... -- 16:17:41.818 DEBUG [30055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:41.818 SQL [30055]: pgsql_db_connect() -- 16:17:41.822 DEBUG [21955]: Database connection successful -- 16:17:41.822 INFO [21955]: _SERVER found -- 16:17:41.822 INFO [21955]: REMOTE_ADDR = 192.168.1.13 -- 16:17:41.822 INFO [21955]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:41.822 INFO [21955]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vncgeve42qn34lg1qffrsctabs07hhmm; _gid=GA1.2.1422369660.1582838251; _gat_gtag_UA_54829827_2=1 -- 16:17:41.822 INFO [21955]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 16:17:41.822 INFO [21955]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:41.833 INFO [21955]: COREGRADE is stopping... -- 16:17:41.833 DEBUG [21955]: Closing database connection -- 16:17:41.833 SQL [21955]: pgsql_close() -- 16:17:41.822 DEBUG [30055]: Database connection successful -- 16:17:41.822 INFO [30055]: _SERVER found -- 16:17:41.822 INFO [30055]: REMOTE_ADDR = 192.168.1.13 -- 16:17:41.822 INFO [30055]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:41.822 INFO [30055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vncgeve42qn34lg1qffrsctabs07hhmm; _gid=GA1.2.1422369660.1582838251; _gat_gtag_UA_54829827_2=1 -- 16:17:41.822 INFO [30055]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 16:17:41.822 INFO [30055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:41.833 INFO [30055]: COREGRADE is stopping... -- 16:17:41.833 DEBUG [30055]: Closing database connection -- 16:17:41.833 SQL [30055]: pgsql_close() -- 16:17:47.976 INFO [21957]: COREGRADE is starting... -- 16:17:47.977 INFO [21957]: Version from config: 1.0 -- 16:17:47.977 DEBUG [21957]: Connecting to database... -- 16:17:47.977 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:47.977 SQL [21957]: pgsql_db_connect() -- 16:17:47.981 DEBUG [21957]: Database connection successful -- 16:17:47.981 INFO [21957]: _SERVER found -- 16:17:47.981 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 16:17:47.981 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:47.981 INFO [21957]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vncgeve42qn34lg1qffrsctabs07hhmm; _gid=GA1.2.1422369660.1582838251; _gat_gtag_UA_54829827_2=1 -- 16:17:47.981 INFO [21957]: QUERY_STRING = /member/mycalendar -- 16:17:47.981 INFO [21957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:48.019 INFO [21957]: COREGRADE is stopping... -- 16:17:48.019 DEBUG [21957]: Closing database connection -- 16:17:48.019 SQL [21957]: pgsql_close() -- 16:17:48.241 INFO [21957]: COREGRADE is starting... -- 16:17:48.241 INFO [21957]: Version from config: 1.0 -- 16:17:48.241 DEBUG [21957]: Connecting to database... -- 16:17:48.241 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:48.241 SQL [21957]: pgsql_db_connect() -- 16:17:48.248 INFO [27751]: COREGRADE is starting... -- 16:17:48.248 INFO [27751]: Version from config: 1.0 -- 16:17:48.248 DEBUG [27751]: Connecting to database... -- 16:17:48.248 DEBUG [27751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:48.248 SQL [27751]: pgsql_db_connect() -- 16:17:48.245 DEBUG [21957]: Database connection successful -- 16:17:48.245 INFO [21957]: _SERVER found -- 16:17:48.245 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 16:17:48.245 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:48.245 INFO [21957]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vncgeve42qn34lg1qffrsctabs07hhmm; _gid=GA1.2.1422369660.1582838251; _gat_gtag_UA_54829827_2=1 -- 16:17:48.245 INFO [21957]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 16:17:48.245 INFO [21957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:48.256 INFO [21957]: COREGRADE is stopping... -- 16:17:48.256 DEBUG [21957]: Closing database connection -- 16:17:48.256 SQL [21957]: pgsql_close() -- 16:17:48.252 DEBUG [27751]: Database connection successful -- 16:17:48.252 INFO [27751]: _SERVER found -- 16:17:48.252 INFO [27751]: REMOTE_ADDR = 192.168.1.13 -- 16:17:48.252 INFO [27751]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:48.252 INFO [27751]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vncgeve42qn34lg1qffrsctabs07hhmm; _gid=GA1.2.1422369660.1582838251; _gat_gtag_UA_54829827_2=1 -- 16:17:48.252 INFO [27751]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 16:17:48.252 INFO [27751]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:48.264 INFO [27751]: COREGRADE is stopping... -- 16:17:48.264 DEBUG [27751]: Closing database connection -- 16:17:48.264 SQL [27751]: pgsql_close() -- 16:17:48.274 INFO [21957]: COREGRADE is starting... -- 16:17:48.274 INFO [21957]: Version from config: 1.0 -- 16:17:48.274 DEBUG [21957]: Connecting to database... -- 16:17:48.274 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:48.274 SQL [21957]: pgsql_db_connect() -- 16:17:48.278 DEBUG [21957]: Database connection successful -- 16:17:48.278 INFO [21957]: _SERVER found -- 16:17:48.278 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 16:17:48.278 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:48.278 INFO [21957]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vncgeve42qn34lg1qffrsctabs07hhmm; _gid=GA1.2.1422369660.1582838251; _gat_gtag_UA_54829827_2=1 -- 16:17:48.278 INFO [21957]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:17:48.278 INFO [21957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:48.289 INFO [21957]: COREGRADE is stopping... -- 16:17:48.289 DEBUG [21957]: Closing database connection -- 16:17:48.289 SQL [21957]: pgsql_close() -- 16:17:48.305 INFO [21957]: COREGRADE is starting... -- 16:17:48.305 INFO [21957]: Version from config: 1.0 -- 16:17:48.305 DEBUG [21957]: Connecting to database... -- 16:17:48.305 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:48.305 SQL [21957]: pgsql_db_connect() -- 16:17:48.309 DEBUG [21957]: Database connection successful -- 16:17:48.309 INFO [21957]: _SERVER found -- 16:17:48.309 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 16:17:48.309 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:48.309 INFO [21957]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vncgeve42qn34lg1qffrsctabs07hhmm; _gid=GA1.2.1422369660.1582838251; _gat_gtag_UA_54829827_2=1 -- 16:17:48.309 INFO [21957]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:17:48.309 INFO [21957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:17:48.320 INFO [21957]: COREGRADE is stopping... -- 16:17:48.320 DEBUG [21957]: Closing database connection -- 16:17:48.320 SQL [21957]: pgsql_close() -- 16:24:33.957 INFO [7340]: COREGRADE is starting... -- 16:24:33.958 INFO [7340]: Version from config: 1.0 -- 16:24:33.958 DEBUG [7340]: Connecting to database... -- 16:24:33.958 DEBUG [7340]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:24:33.958 SQL [7340]: pgsql_db_connect() -- 16:24:33.962 DEBUG [7340]: Database connection successful -- 16:24:33.962 INFO [7340]: _SERVER found -- 16:24:33.962 INFO [7340]: REMOTE_ADDR = 192.168.1.13 -- 16:24:33.962 INFO [7340]: SERVER_NAME = oameye.works.coregrade.com -- 16:24:33.962 INFO [7340]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vncgeve42qn34lg1qffrsctabs07hhmm; _gid=GA1.2.1422369660.1582838251 -- 16:24:33.962 INFO [7340]: QUERY_STRING = /member/mycalendar -- 16:24:33.962 INFO [7340]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:24:34.006 INFO [7340]: COREGRADE is stopping... -- 16:24:34.006 DEBUG [7340]: Closing database connection -- 16:24:34.006 SQL [7340]: pgsql_close() -- 16:24:34.182 INFO [7340]: COREGRADE is starting... -- 16:24:34.182 INFO [7340]: Version from config: 1.0 -- 16:24:34.182 DEBUG [7340]: Connecting to database... -- 16:24:34.182 DEBUG [7340]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:24:34.182 SQL [7340]: pgsql_db_connect() -- 16:24:34.189 INFO [30056]: COREGRADE is starting... -- 16:24:34.189 INFO [30056]: Version from config: 1.0 -- 16:24:34.189 DEBUG [30056]: Connecting to database... -- 16:24:34.189 DEBUG [30056]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:24:34.189 SQL [30056]: pgsql_db_connect() -- 16:24:34.187 DEBUG [7340]: Database connection successful -- 16:24:34.187 INFO [7340]: _SERVER found -- 16:24:34.187 INFO [7340]: REMOTE_ADDR = 192.168.1.13 -- 16:24:34.187 INFO [7340]: SERVER_NAME = oameye.works.coregrade.com -- 16:24:34.187 INFO [7340]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=hdipkrqgpgun39mlmr5u7o3bmrcvttbe -- 16:24:34.187 INFO [7340]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 16:24:34.187 INFO [7340]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:24:34.198 INFO [7340]: COREGRADE is stopping... -- 16:24:34.198 DEBUG [7340]: Closing database connection -- 16:24:34.198 SQL [7340]: pgsql_close() -- 16:24:34.193 DEBUG [30056]: Database connection successful -- 16:24:34.193 INFO [30056]: _SERVER found -- 16:24:34.193 INFO [30056]: REMOTE_ADDR = 192.168.1.13 -- 16:24:34.193 INFO [30056]: SERVER_NAME = oameye.works.coregrade.com -- 16:24:34.193 INFO [30056]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=hdipkrqgpgun39mlmr5u7o3bmrcvttbe -- 16:24:34.193 INFO [30056]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 16:24:34.193 INFO [30056]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:24:34.205 INFO [30056]: COREGRADE is stopping... -- 16:24:34.205 DEBUG [30056]: Closing database connection -- 16:24:34.205 SQL [30056]: pgsql_close() -- 16:24:34.215 INFO [7340]: COREGRADE is starting... -- 16:24:34.215 INFO [7340]: Version from config: 1.0 -- 16:24:34.215 DEBUG [7340]: Connecting to database... -- 16:24:34.215 DEBUG [7340]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:24:34.215 SQL [7340]: pgsql_db_connect() -- 16:24:34.219 DEBUG [7340]: Database connection successful -- 16:24:34.219 INFO [7340]: _SERVER found -- 16:24:34.219 INFO [7340]: REMOTE_ADDR = 192.168.1.13 -- 16:24:34.219 INFO [7340]: SERVER_NAME = oameye.works.coregrade.com -- 16:24:34.219 INFO [7340]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=hdipkrqgpgun39mlmr5u7o3bmrcvttbe -- 16:24:34.219 INFO [7340]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:24:34.219 INFO [7340]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:24:34.230 INFO [7340]: COREGRADE is stopping... -- 16:24:34.230 DEBUG [7340]: Closing database connection -- 16:24:34.230 SQL [7340]: pgsql_close() -- 16:24:34.277 INFO [7340]: COREGRADE is starting... -- 16:24:34.277 INFO [7340]: Version from config: 1.0 -- 16:24:34.277 DEBUG [7340]: Connecting to database... -- 16:24:34.277 DEBUG [7340]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:24:34.277 SQL [7340]: pgsql_db_connect() -- 16:24:34.281 DEBUG [7340]: Database connection successful -- 16:24:34.281 INFO [7340]: _SERVER found -- 16:24:34.281 INFO [7340]: REMOTE_ADDR = 192.168.1.13 -- 16:24:34.281 INFO [7340]: SERVER_NAME = oameye.works.coregrade.com -- 16:24:34.281 INFO [7340]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=hdipkrqgpgun39mlmr5u7o3bmrcvttbe -- 16:24:34.281 INFO [7340]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:24:34.281 INFO [7340]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:24:34.292 INFO [7340]: COREGRADE is stopping... -- 16:24:34.292 DEBUG [7340]: Closing database connection -- 16:24:34.292 SQL [7340]: pgsql_close() -- 16:24:44.787 INFO [30057]: COREGRADE is starting... -- 16:24:44.787 INFO [30057]: Version from config: 1.0 -- 16:24:44.787 DEBUG [30057]: Connecting to database... -- 16:24:44.787 DEBUG [30057]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:24:44.787 SQL [30057]: pgsql_db_connect() -- 16:24:44.791 DEBUG [30057]: Database connection successful -- 16:24:44.791 INFO [30057]: _SERVER found -- 16:24:44.791 INFO [30057]: REMOTE_ADDR = 192.168.1.13 -- 16:24:44.791 INFO [30057]: SERVER_NAME = oameye.works.coregrade.com -- 16:24:44.791 INFO [30057]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=hdipkrqgpgun39mlmr5u7o3bmrcvttbe -- 16:24:44.791 INFO [30057]: QUERY_STRING = /member/mycalendar -- 16:24:44.791 INFO [30057]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:24:44.829 INFO [30057]: COREGRADE is stopping... -- 16:24:44.829 DEBUG [30057]: Closing database connection -- 16:24:44.829 SQL [30057]: pgsql_close() -- 16:24:44.995 INFO [30057]: COREGRADE is starting... -- 16:24:44.995 INFO [30057]: Version from config: 1.0 -- 16:24:44.995 DEBUG [30057]: Connecting to database... -- 16:24:44.995 DEBUG [30057]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:24:44.995 SQL [30057]: pgsql_db_connect() -- 16:24:44.999 DEBUG [30057]: Database connection successful -- 16:24:44.999 INFO [30057]: _SERVER found -- 16:24:44.999 INFO [30057]: REMOTE_ADDR = 192.168.1.13 -- 16:24:44.999 INFO [30057]: SERVER_NAME = oameye.works.coregrade.com -- 16:24:44.999 INFO [30057]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=hdipkrqgpgun39mlmr5u7o3bmrcvttbe -- 16:24:44.999 INFO [30057]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 16:24:44.999 INFO [30057]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:24:45.010 INFO [30057]: COREGRADE is stopping... -- 16:24:45.011 DEBUG [30057]: Closing database connection -- 16:24:45.011 SQL [30057]: pgsql_close() -- 16:24:45.024 INFO [30057]: COREGRADE is starting... -- 16:24:45.024 INFO [30057]: Version from config: 1.0 -- 16:24:45.024 DEBUG [30057]: Connecting to database... -- 16:24:45.024 DEBUG [30057]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:24:45.024 SQL [30057]: pgsql_db_connect() -- 16:24:45.038 INFO [27753]: COREGRADE is starting... -- 16:24:45.038 INFO [27753]: Version from config: 1.0 -- 16:24:45.038 DEBUG [27753]: Connecting to database... -- 16:24:45.038 DEBUG [27753]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:24:45.038 SQL [27753]: pgsql_db_connect() -- 16:24:45.028 DEBUG [30057]: Database connection successful -- 16:24:45.028 INFO [30057]: _SERVER found -- 16:24:45.028 INFO [30057]: REMOTE_ADDR = 192.168.1.13 -- 16:24:45.028 INFO [30057]: SERVER_NAME = oameye.works.coregrade.com -- 16:24:45.028 INFO [30057]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=hdipkrqgpgun39mlmr5u7o3bmrcvttbe -- 16:24:45.028 INFO [30057]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:24:45.028 INFO [30057]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:24:45.039 INFO [30057]: COREGRADE is stopping... -- 16:24:45.039 DEBUG [30057]: Closing database connection -- 16:24:45.039 SQL [30057]: pgsql_close() -- 16:24:45.042 DEBUG [27753]: Database connection successful -- 16:24:45.042 INFO [27753]: _SERVER found -- 16:24:45.042 INFO [27753]: REMOTE_ADDR = 192.168.1.13 -- 16:24:45.042 INFO [27753]: SERVER_NAME = oameye.works.coregrade.com -- 16:24:45.042 INFO [27753]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=hdipkrqgpgun39mlmr5u7o3bmrcvttbe -- 16:24:45.042 INFO [27753]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 16:24:45.042 INFO [27753]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:24:45.054 INFO [27753]: COREGRADE is stopping... -- 16:24:45.054 DEBUG [27753]: Closing database connection -- 16:24:45.054 SQL [27753]: pgsql_close() -- 16:24:45.105 INFO [27753]: COREGRADE is starting... -- 16:24:45.106 INFO [27753]: Version from config: 1.0 -- 16:24:45.106 DEBUG [27753]: Connecting to database... -- 16:24:45.106 DEBUG [27753]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:24:45.106 SQL [27753]: pgsql_db_connect() -- 16:24:45.110 DEBUG [27753]: Database connection successful -- 16:24:45.110 INFO [27753]: _SERVER found -- 16:24:45.110 INFO [27753]: REMOTE_ADDR = 192.168.1.13 -- 16:24:45.110 INFO [27753]: SERVER_NAME = oameye.works.coregrade.com -- 16:24:45.110 INFO [27753]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=hdipkrqgpgun39mlmr5u7o3bmrcvttbe -- 16:24:45.110 INFO [27753]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:24:45.110 INFO [27753]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:24:45.121 INFO [27753]: COREGRADE is stopping... -- 16:24:45.121 DEBUG [27753]: Closing database connection -- 16:24:45.121 SQL [27753]: pgsql_close() -- 16:26:45.697 INFO [21964]: COREGRADE is starting... -- 16:26:45.697 INFO [21964]: Version from config: 1.0 -- 16:26:45.697 DEBUG [21964]: Connecting to database... -- 16:26:45.697 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:45.697 SQL [21964]: pgsql_db_connect() -- 16:26:45.701 DEBUG [21964]: Database connection successful -- 16:26:45.701 INFO [21964]: _SERVER found -- 16:26:45.701 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 16:26:45.701 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 16:26:45.701 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=hdipkrqgpgun39mlmr5u7o3bmrcvttbe -- 16:26:45.701 INFO [21964]: QUERY_STRING = /member/mycalendar -- 16:26:45.701 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:45.740 INFO [21964]: COREGRADE is stopping... -- 16:26:45.740 DEBUG [21964]: Closing database connection -- 16:26:45.740 SQL [21964]: pgsql_close() -- 16:26:45.865 INFO [21964]: COREGRADE is starting... -- 16:26:45.865 INFO [21964]: Version from config: 1.0 -- 16:26:45.865 DEBUG [21964]: Connecting to database... -- 16:26:45.865 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:45.865 SQL [21964]: pgsql_db_connect() -- 16:26:45.869 DEBUG [21964]: Database connection successful -- 16:26:45.869 INFO [21964]: _SERVER found -- 16:26:45.869 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 16:26:45.869 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 16:26:45.869 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=hdipkrqgpgun39mlmr5u7o3bmrcvttbe -- 16:26:45.869 INFO [21964]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:26:45.869 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:45.880 INFO [21964]: COREGRADE is stopping... -- 16:26:45.880 DEBUG [21964]: Closing database connection -- 16:26:45.880 SQL [21964]: pgsql_close() -- 16:26:45.888 INFO [21964]: COREGRADE is starting... -- 16:26:45.888 INFO [21964]: Version from config: 1.0 -- 16:26:45.888 DEBUG [21964]: Connecting to database... -- 16:26:45.888 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:45.888 SQL [21964]: pgsql_db_connect() -- 16:26:45.892 DEBUG [21964]: Database connection successful -- 16:26:45.892 INFO [21964]: _SERVER found -- 16:26:45.892 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 16:26:45.892 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 16:26:45.892 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=hdipkrqgpgun39mlmr5u7o3bmrcvttbe -- 16:26:45.892 INFO [21964]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:26:45.892 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:45.903 INFO [21964]: COREGRADE is stopping... -- 16:26:45.903 DEBUG [21964]: Closing database connection -- 16:26:45.903 SQL [21964]: pgsql_close() -- 16:26:48.353 INFO [21964]: COREGRADE is starting... -- 16:26:48.353 INFO [21964]: Version from config: 1.0 -- 16:26:48.353 DEBUG [21964]: Connecting to database... -- 16:26:48.354 DEBUG [21964]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:48.354 SQL [21964]: pgsql_db_connect() -- 16:26:48.358 DEBUG [21964]: Database connection successful -- 16:26:48.358 INFO [21964]: _SERVER found -- 16:26:48.358 INFO [21964]: REMOTE_ADDR = 192.168.1.13 -- 16:26:48.358 INFO [21964]: SERVER_NAME = oameye.works.coregrade.com -- 16:26:48.358 INFO [21964]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=hdipkrqgpgun39mlmr5u7o3bmrcvttbe -- 16:26:48.358 INFO [21964]: QUERY_STRING = /member/mycalendar -- 16:26:48.358 INFO [21964]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:48.395 INFO [21964]: COREGRADE is stopping... -- 16:26:48.395 DEBUG [21964]: Closing database connection -- 16:26:48.395 SQL [21964]: pgsql_close() -- 16:30:00.156 INFO [21955]: COREGRADE is starting... -- 16:30:00.156 INFO [21955]: Version from config: 1.0 -- 16:30:00.156 DEBUG [21955]: Connecting to database... -- 16:30:00.156 DEBUG [21955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:30:00.156 SQL [21955]: pgsql_db_connect() -- 16:30:00.161 DEBUG [21955]: Database connection successful -- 16:30:00.161 INFO [21955]: _SERVER found -- 16:30:00.161 INFO [21955]: REMOTE_ADDR = 192.168.1.13 -- 16:30:00.161 INFO [21955]: SERVER_NAME = oameye.works.coregrade.com -- 16:30:00.161 INFO [21955]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=hdipkrqgpgun39mlmr5u7o3bmrcvttbe -- 16:30:00.161 INFO [21955]: QUERY_STRING = /member/mycalendar -- 16:30:00.161 INFO [21955]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:30:00.202 INFO [21955]: COREGRADE is stopping... -- 16:30:00.202 DEBUG [21955]: Closing database connection -- 16:30:00.202 SQL [21955]: pgsql_close() -- 16:30:00.347 INFO [21955]: COREGRADE is starting... -- 16:30:00.347 INFO [21955]: Version from config: 1.0 -- 16:30:00.347 DEBUG [21955]: Connecting to database... -- 16:30:00.347 DEBUG [21955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:30:00.347 SQL [21955]: pgsql_db_connect() -- 16:30:00.351 DEBUG [21955]: Database connection successful -- 16:30:00.351 INFO [21955]: _SERVER found -- 16:30:00.351 INFO [21955]: REMOTE_ADDR = 192.168.1.13 -- 16:30:00.351 INFO [21955]: SERVER_NAME = oameye.works.coregrade.com -- 16:30:00.351 INFO [21955]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9udqj08ng332acevns1h79t3ot7g6obr -- 16:30:00.351 INFO [21955]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:30:00.351 INFO [21955]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:30:00.363 INFO [21955]: COREGRADE is stopping... -- 16:30:00.363 DEBUG [21955]: Closing database connection -- 16:30:00.363 SQL [21955]: pgsql_close() -- 16:30:00.589 INFO [21955]: COREGRADE is starting... -- 16:30:00.589 INFO [21955]: Version from config: 1.0 -- 16:30:00.589 DEBUG [21955]: Connecting to database... -- 16:30:00.589 DEBUG [21955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:30:00.589 SQL [21955]: pgsql_db_connect() -- 16:30:00.594 DEBUG [21955]: Database connection successful -- 16:30:00.594 INFO [21955]: _SERVER found -- 16:30:00.594 INFO [21955]: REMOTE_ADDR = 192.168.1.13 -- 16:30:00.594 INFO [21955]: SERVER_NAME = oameye.works.coregrade.com -- 16:30:00.594 INFO [21955]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9udqj08ng332acevns1h79t3ot7g6obr -- 16:30:00.594 INFO [21955]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:30:00.594 INFO [21955]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:30:00.605 INFO [21955]: COREGRADE is stopping... -- 16:30:00.605 DEBUG [21955]: Closing database connection -- 16:30:00.605 SQL [21955]: pgsql_close() -- 16:30:55.576 INFO [27751]: COREGRADE is starting... -- 16:30:55.576 INFO [27751]: Version from config: 1.0 -- 16:30:55.576 DEBUG [27751]: Connecting to database... -- 16:30:55.576 DEBUG [27751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:30:55.576 SQL [27751]: pgsql_db_connect() -- 16:30:55.580 DEBUG [27751]: Database connection successful -- 16:30:55.580 INFO [27751]: _SERVER found -- 16:30:55.580 INFO [27751]: REMOTE_ADDR = 192.168.1.13 -- 16:30:55.580 INFO [27751]: SERVER_NAME = oameye.works.coregrade.com -- 16:30:55.580 INFO [27751]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9udqj08ng332acevns1h79t3ot7g6obr -- 16:30:55.580 INFO [27751]: QUERY_STRING = /member/mycalendar -- 16:30:55.580 INFO [27751]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:30:55.618 INFO [27751]: COREGRADE is stopping... -- 16:30:55.618 DEBUG [27751]: Closing database connection -- 16:30:55.618 SQL [27751]: pgsql_close() -- 16:30:55.832 INFO [27751]: COREGRADE is starting... -- 16:30:55.833 INFO [27751]: Version from config: 1.0 -- 16:30:55.833 DEBUG [27751]: Connecting to database... -- 16:30:55.833 DEBUG [27751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:30:55.833 SQL [27751]: pgsql_db_connect() -- 16:30:55.837 DEBUG [27751]: Database connection successful -- 16:30:55.837 INFO [27751]: _SERVER found -- 16:30:55.837 INFO [27751]: REMOTE_ADDR = 192.168.1.13 -- 16:30:55.837 INFO [27751]: SERVER_NAME = oameye.works.coregrade.com -- 16:30:55.837 INFO [27751]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9udqj08ng332acevns1h79t3ot7g6obr -- 16:30:55.837 INFO [27751]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:30:55.837 INFO [27751]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:30:55.848 INFO [27751]: COREGRADE is stopping... -- 16:30:55.848 DEBUG [27751]: Closing database connection -- 16:30:55.848 SQL [27751]: pgsql_close() -- 16:30:55.894 INFO [27751]: COREGRADE is starting... -- 16:30:55.894 INFO [27751]: Version from config: 1.0 -- 16:30:55.894 DEBUG [27751]: Connecting to database... -- 16:30:55.894 DEBUG [27751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:30:55.894 SQL [27751]: pgsql_db_connect() -- 16:30:55.898 DEBUG [27751]: Database connection successful -- 16:30:55.898 INFO [27751]: _SERVER found -- 16:30:55.898 INFO [27751]: REMOTE_ADDR = 192.168.1.13 -- 16:30:55.898 INFO [27751]: SERVER_NAME = oameye.works.coregrade.com -- 16:30:55.898 INFO [27751]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9udqj08ng332acevns1h79t3ot7g6obr -- 16:30:55.898 INFO [27751]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:30:55.898 INFO [27751]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:30:55.909 INFO [27751]: COREGRADE is stopping... -- 16:30:55.909 DEBUG [27751]: Closing database connection -- 16:30:55.909 SQL [27751]: pgsql_close() -- 16:30:57.478 INFO [27751]: COREGRADE is starting... -- 16:30:57.478 INFO [27751]: Version from config: 1.0 -- 16:30:57.478 DEBUG [27751]: Connecting to database... -- 16:30:57.479 DEBUG [27751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:30:57.479 SQL [27751]: pgsql_db_connect() -- 16:30:57.483 DEBUG [27751]: Database connection successful -- 16:30:57.483 INFO [27751]: _SERVER found -- 16:30:57.483 INFO [27751]: REMOTE_ADDR = 192.168.1.13 -- 16:30:57.483 INFO [27751]: SERVER_NAME = oameye.works.coregrade.com -- 16:30:57.483 INFO [27751]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9udqj08ng332acevns1h79t3ot7g6obr -- 16:30:57.483 INFO [27751]: QUERY_STRING = /member -- 16:30:57.483 INFO [27751]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:30:57.523 INFO [27751]: COREGRADE is stopping... -- 16:30:57.523 DEBUG [27751]: Closing database connection -- 16:30:57.523 SQL [27751]: pgsql_close() -- 16:30:57.641 INFO [27751]: COREGRADE is starting... -- 16:30:57.642 INFO [27751]: Version from config: 1.0 -- 16:30:57.642 DEBUG [27751]: Connecting to database... -- 16:30:57.642 DEBUG [27751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:30:57.642 SQL [27751]: pgsql_db_connect() -- 16:30:57.646 DEBUG [27751]: Database connection successful -- 16:30:57.646 INFO [27751]: _SERVER found -- 16:30:57.646 INFO [27751]: REMOTE_ADDR = 192.168.1.13 -- 16:30:57.646 INFO [27751]: SERVER_NAME = oameye.works.coregrade.com -- 16:30:57.646 INFO [27751]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9udqj08ng332acevns1h79t3ot7g6obr -- 16:30:57.646 INFO [27751]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:30:57.646 INFO [27751]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:30:57.657 INFO [27751]: COREGRADE is stopping... -- 16:30:57.657 DEBUG [27751]: Closing database connection -- 16:30:57.657 SQL [27751]: pgsql_close() -- 16:30:57.667 INFO [21957]: COREGRADE is starting... -- 16:30:57.667 INFO [21957]: Version from config: 1.0 -- 16:30:57.667 DEBUG [21957]: Connecting to database... -- 16:30:57.667 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:30:57.667 SQL [21957]: pgsql_db_connect() -- 16:30:57.671 DEBUG [21957]: Database connection successful -- 16:30:57.671 INFO [21957]: _SERVER found -- 16:30:57.671 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 16:30:57.671 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 16:30:57.671 INFO [21957]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9udqj08ng332acevns1h79t3ot7g6obr -- 16:30:57.671 INFO [21957]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:30:57.671 INFO [21957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:30:57.683 INFO [21957]: COREGRADE is stopping... -- 16:30:57.683 DEBUG [21957]: Closing database connection -- 16:30:57.683 SQL [21957]: pgsql_close() -- 16:31:01.118 INFO [21957]: COREGRADE is starting... -- 16:31:01.118 INFO [21957]: Version from config: 1.0 -- 16:31:01.118 DEBUG [21957]: Connecting to database... -- 16:31:01.118 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:01.118 SQL [21957]: pgsql_db_connect() -- 16:31:01.122 DEBUG [21957]: Database connection successful -- 16:31:01.122 INFO [21957]: _SERVER found -- 16:31:01.122 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 16:31:01.122 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 16:31:01.122 INFO [21957]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9udqj08ng332acevns1h79t3ot7g6obr -- 16:31:01.122 INFO [21957]: QUERY_STRING = /member/page -- 16:31:01.122 INFO [21957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:31:01.165 INFO [21957]: COREGRADE is stopping... -- 16:31:01.165 DEBUG [21957]: Closing database connection -- 16:31:01.165 SQL [21957]: pgsql_close() -- 16:31:01.263 INFO [27751]: COREGRADE is starting... -- 16:31:01.263 INFO [27751]: Version from config: 1.0 -- 16:31:01.263 DEBUG [27751]: Connecting to database... -- 16:31:01.263 DEBUG [27751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:01.263 SQL [27751]: pgsql_db_connect() -- 16:31:01.267 DEBUG [27751]: Database connection successful -- 16:31:01.267 INFO [27751]: _SERVER found -- 16:31:01.267 INFO [27751]: REMOTE_ADDR = 192.168.1.13 -- 16:31:01.267 INFO [27751]: SERVER_NAME = oameye.works.coregrade.com -- 16:31:01.267 INFO [27751]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9udqj08ng332acevns1h79t3ot7g6obr -- 16:31:01.267 INFO [27751]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:31:01.267 INFO [27751]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:31:01.279 INFO [27751]: COREGRADE is stopping... -- 16:31:01.279 DEBUG [27751]: Closing database connection -- 16:31:01.279 SQL [27751]: pgsql_close() -- 16:31:01.334 INFO [27751]: COREGRADE is starting... -- 16:31:01.334 INFO [27751]: Version from config: 1.0 -- 16:31:01.334 DEBUG [27751]: Connecting to database... -- 16:31:01.334 DEBUG [27751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:01.334 SQL [27751]: pgsql_db_connect() -- 16:31:01.338 DEBUG [27751]: Database connection successful -- 16:31:01.338 INFO [27751]: _SERVER found -- 16:31:01.338 INFO [27751]: REMOTE_ADDR = 192.168.1.13 -- 16:31:01.338 INFO [27751]: SERVER_NAME = oameye.works.coregrade.com -- 16:31:01.338 INFO [27751]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9udqj08ng332acevns1h79t3ot7g6obr -- 16:31:01.338 INFO [27751]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:31:01.338 INFO [27751]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:31:01.349 INFO [27751]: COREGRADE is stopping... -- 16:31:01.349 DEBUG [27751]: Closing database connection -- 16:31:01.349 SQL [27751]: pgsql_close() -- 16:31:04.163 INFO [21957]: COREGRADE is starting... -- 16:31:04.163 INFO [21957]: Version from config: 1.0 -- 16:31:04.163 DEBUG [21957]: Connecting to database... -- 16:31:04.163 DEBUG [21957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:04.163 SQL [21957]: pgsql_db_connect() -- 16:31:04.167 DEBUG [21957]: Database connection successful -- 16:31:04.167 INFO [21957]: _SERVER found -- 16:31:04.167 INFO [21957]: REMOTE_ADDR = 192.168.1.13 -- 16:31:04.167 INFO [21957]: SERVER_NAME = oameye.works.coregrade.com -- 16:31:04.167 INFO [21957]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9udqj08ng332acevns1h79t3ot7g6obr -- 16:31:04.167 INFO [21957]: QUERY_STRING = /member/viewCardAddAction -- 16:31:04.167 INFO [21957]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:31:04.198 INFO [21957]: COREGRADE is stopping... -- 16:31:04.198 DEBUG [21957]: Closing database connection -- 16:31:04.198 SQL [21957]: pgsql_close() -- 16:31:30.440 INFO [30056]: COREGRADE is starting... -- 16:31:30.440 INFO [30056]: Version from config: 1.0 -- 16:31:30.440 DEBUG [30056]: Connecting to database... -- 16:31:30.440 DEBUG [30056]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:30.440 SQL [30056]: pgsql_db_connect() -- 16:31:30.444 DEBUG [30056]: Database connection successful -- 16:31:30.444 INFO [30056]: _SERVER found -- 16:31:30.444 INFO [30056]: REMOTE_ADDR = 192.168.1.13 -- 16:31:30.444 INFO [30056]: SERVER_NAME = oameye.works.coregrade.com -- 16:31:30.444 INFO [30056]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9udqj08ng332acevns1h79t3ot7g6obr -- 16:31:30.444 INFO [30056]: QUERY_STRING = /member/configure -- 16:31:30.444 INFO [30056]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:31:30.488 INFO [30056]: COREGRADE is stopping... -- 16:31:30.488 DEBUG [30056]: Closing database connection -- 16:31:30.488 SQL [30056]: pgsql_close() -- 16:31:30.638 INFO [30056]: COREGRADE is starting... -- 16:31:30.638 INFO [30056]: Version from config: 1.0 -- 16:31:30.638 DEBUG [30056]: Connecting to database... -- 16:31:30.638 DEBUG [30056]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:30.638 SQL [30056]: pgsql_db_connect() -- 16:31:30.645 INFO [7340]: COREGRADE is starting... -- 16:31:30.645 INFO [7340]: Version from config: 1.0 -- 16:31:30.645 DEBUG [7340]: Connecting to database... -- 16:31:30.645 DEBUG [7340]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:30.646 SQL [7340]: pgsql_db_connect() -- 16:31:30.642 DEBUG [30056]: Database connection successful -- 16:31:30.642 INFO [30056]: _SERVER found -- 16:31:30.642 INFO [30056]: REMOTE_ADDR = 192.168.1.13 -- 16:31:30.642 INFO [30056]: SERVER_NAME = oameye.works.coregrade.com -- 16:31:30.642 INFO [30056]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9udqj08ng332acevns1h79t3ot7g6obr -- 16:31:30.642 INFO [30056]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:31:30.642 INFO [30056]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:31:30.653 INFO [30056]: COREGRADE is stopping... -- 16:31:30.653 DEBUG [30056]: Closing database connection -- 16:31:30.653 SQL [30056]: pgsql_close() -- 16:31:30.649 DEBUG [7340]: Database connection successful -- 16:31:30.649 INFO [7340]: _SERVER found -- 16:31:30.649 INFO [7340]: REMOTE_ADDR = 192.168.1.13 -- 16:31:30.649 INFO [7340]: SERVER_NAME = oameye.works.coregrade.com -- 16:31:30.649 INFO [7340]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9udqj08ng332acevns1h79t3ot7g6obr -- 16:31:30.649 INFO [7340]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 16:31:30.649 INFO [7340]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:31:30.661 INFO [7340]: COREGRADE is stopping... -- 16:31:30.661 DEBUG [7340]: Closing database connection -- 16:31:30.661 SQL [7340]: pgsql_close() -- 16:31:30.741 INFO [7340]: COREGRADE is starting... -- 16:31:30.741 INFO [7340]: Version from config: 1.0 -- 16:31:30.741 DEBUG [7340]: Connecting to database... -- 16:31:30.741 DEBUG [7340]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:30.741 SQL [7340]: pgsql_db_connect() -- 16:31:30.745 DEBUG [7340]: Database connection successful -- 16:31:30.745 INFO [7340]: _SERVER found -- 16:31:30.745 INFO [7340]: REMOTE_ADDR = 192.168.1.13 -- 16:31:30.745 INFO [7340]: SERVER_NAME = oameye.works.coregrade.com -- 16:31:30.745 INFO [7340]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9udqj08ng332acevns1h79t3ot7g6obr -- 16:31:30.745 INFO [7340]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:31:30.745 INFO [7340]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:31:30.756 INFO [7340]: COREGRADE is stopping... -- 16:31:30.756 DEBUG [7340]: Closing database connection -- 16:31:30.756 SQL [7340]: pgsql_close() -- 16:31:33.912 INFO [7340]: COREGRADE is starting... -- 16:31:33.912 INFO [7340]: Version from config: 1.0 -- 16:31:33.912 DEBUG [7340]: Connecting to database... -- 16:31:33.912 DEBUG [7340]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:33.912 SQL [7340]: pgsql_db_connect() -- 16:31:33.917 DEBUG [7340]: Database connection successful -- 16:31:33.917 INFO [7340]: _SERVER found -- 16:31:33.917 INFO [7340]: REMOTE_ADDR = 192.168.1.13 -- 16:31:33.917 INFO [7340]: SERVER_NAME = oameye.works.coregrade.com -- 16:31:33.917 INFO [7340]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9udqj08ng332acevns1h79t3ot7g6obr -- 16:31:33.917 INFO [7340]: QUERY_STRING = /member/page -- 16:31:33.917 INFO [7340]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:31:33.959 INFO [7340]: COREGRADE is stopping... -- 16:31:33.959 DEBUG [7340]: Closing database connection -- 16:31:33.959 SQL [7340]: pgsql_close() -- 16:31:34.049 INFO [7340]: COREGRADE is starting... -- 16:31:34.049 INFO [7340]: Version from config: 1.0 -- 16:31:34.049 DEBUG [7340]: Connecting to database... -- 16:31:34.049 DEBUG [7340]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:34.049 SQL [7340]: pgsql_db_connect() -- 16:31:34.053 DEBUG [7340]: Database connection successful -- 16:31:34.053 INFO [7340]: _SERVER found -- 16:31:34.053 INFO [7340]: REMOTE_ADDR = 192.168.1.13 -- 16:31:34.053 INFO [7340]: SERVER_NAME = oameye.works.coregrade.com -- 16:31:34.053 INFO [7340]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9udqj08ng332acevns1h79t3ot7g6obr -- 16:31:34.053 INFO [7340]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:31:34.053 INFO [7340]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:31:34.065 INFO [7340]: COREGRADE is stopping... -- 16:31:34.065 DEBUG [7340]: Closing database connection -- 16:31:34.065 SQL [7340]: pgsql_close() -- 16:31:34.115 INFO [7340]: COREGRADE is starting... -- 16:31:34.116 INFO [7340]: Version from config: 1.0 -- 16:31:34.116 DEBUG [7340]: Connecting to database... -- 16:31:34.116 DEBUG [7340]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:34.116 SQL [7340]: pgsql_db_connect() -- 16:31:34.120 DEBUG [7340]: Database connection successful -- 16:31:34.120 INFO [7340]: _SERVER found -- 16:31:34.120 INFO [7340]: REMOTE_ADDR = 192.168.1.13 -- 16:31:34.120 INFO [7340]: SERVER_NAME = oameye.works.coregrade.com -- 16:31:34.120 INFO [7340]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9udqj08ng332acevns1h79t3ot7g6obr -- 16:31:34.120 INFO [7340]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:31:34.120 INFO [7340]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:31:34.131 INFO [7340]: COREGRADE is stopping... -- 16:31:34.131 DEBUG [7340]: Closing database connection -- 16:31:34.131 SQL [7340]: pgsql_close() -- 16:41:45.431 INFO [18559]: COREGRADE is starting... -- 16:41:45.432 INFO [18559]: Version from config: 1.0 -- 16:41:45.432 DEBUG [18559]: Connecting to database... -- 16:41:45.432 DEBUG [18559]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:41:45.432 SQL [18559]: pgsql_db_connect() -- 16:41:45.436 DEBUG [18559]: Database connection successful -- 16:41:45.436 INFO [18559]: _SERVER found -- 16:41:45.436 INFO [18559]: REMOTE_ADDR = 192.168.1.13 -- 16:41:45.436 INFO [18559]: SERVER_NAME = oameye.works.coregrade.com -- 16:41:45.436 INFO [18559]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9udqj08ng332acevns1h79t3ot7g6obr -- 16:41:45.436 INFO [18559]: QUERY_STRING = /member/page -- 16:41:45.436 INFO [18559]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:41:45.489 INFO [18559]: COREGRADE is stopping... -- 16:41:45.489 DEBUG [18559]: Closing database connection -- 16:41:45.489 SQL [18559]: pgsql_close() -- 16:41:46.294 INFO [18563]: COREGRADE is starting... -- 16:41:46.295 INFO [18563]: Version from config: 1.0 -- 16:41:46.295 DEBUG [18563]: Connecting to database... -- 16:41:46.295 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:41:46.295 SQL [18563]: pgsql_db_connect() -- 16:41:46.299 DEBUG [18563]: Database connection successful -- 16:41:46.299 INFO [18563]: _SERVER found -- 16:41:46.299 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 16:41:46.299 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 16:41:46.299 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=nbpp7d997s0mbg91ne56d0d5qs5l4u8e -- 16:41:46.299 INFO [18563]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:41:46.299 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:41:46.314 INFO [18563]: COREGRADE is stopping... -- 16:41:46.314 DEBUG [18563]: Closing database connection -- 16:41:46.314 SQL [18563]: pgsql_close() -- 16:41:46.944 INFO [18561]: COREGRADE is starting... -- 16:41:46.945 INFO [18561]: Version from config: 1.0 -- 16:41:46.945 DEBUG [18561]: Connecting to database... -- 16:41:46.945 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:41:46.945 SQL [18561]: pgsql_db_connect() -- 16:41:46.949 DEBUG [18561]: Database connection successful -- 16:41:46.949 INFO [18561]: _SERVER found -- 16:41:46.949 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 16:41:46.949 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 16:41:46.949 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=nbpp7d997s0mbg91ne56d0d5qs5l4u8e -- 16:41:46.949 INFO [18561]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:41:46.949 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:41:46.963 INFO [18561]: COREGRADE is stopping... -- 16:41:46.963 DEBUG [18561]: Closing database connection -- 16:41:46.963 SQL [18561]: pgsql_close() -- 16:41:49.128 INFO [18561]: COREGRADE is starting... -- 16:41:49.128 INFO [18561]: Version from config: 1.0 -- 16:41:49.128 DEBUG [18561]: Connecting to database... -- 16:41:49.128 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:41:49.128 SQL [18561]: pgsql_db_connect() -- 16:41:49.132 DEBUG [18561]: Database connection successful -- 16:41:49.132 INFO [18561]: _SERVER found -- 16:41:49.132 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 16:41:49.132 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 16:41:49.132 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=nbpp7d997s0mbg91ne56d0d5qs5l4u8e -- 16:41:49.132 INFO [18561]: QUERY_STRING = /member -- 16:41:49.132 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:41:49.177 INFO [18561]: COREGRADE is stopping... -- 16:41:49.177 DEBUG [18561]: Closing database connection -- 16:41:49.177 SQL [18561]: pgsql_close() -- 16:41:49.316 INFO [18561]: COREGRADE is starting... -- 16:41:49.317 INFO [18561]: Version from config: 1.0 -- 16:41:49.317 DEBUG [18561]: Connecting to database... -- 16:41:49.317 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:41:49.317 SQL [18561]: pgsql_db_connect() -- 16:41:49.321 DEBUG [18561]: Database connection successful -- 16:41:49.321 INFO [18561]: _SERVER found -- 16:41:49.321 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 16:41:49.321 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 16:41:49.321 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=nbpp7d997s0mbg91ne56d0d5qs5l4u8e -- 16:41:49.321 INFO [18561]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:41:49.321 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:41:49.332 INFO [18561]: COREGRADE is stopping... -- 16:41:49.332 DEBUG [18561]: Closing database connection -- 16:41:49.332 SQL [18561]: pgsql_close() -- 16:41:49.337 INFO [18561]: COREGRADE is starting... -- 16:41:49.337 INFO [18561]: Version from config: 1.0 -- 16:41:49.337 DEBUG [18561]: Connecting to database... -- 16:41:49.337 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:41:49.337 SQL [18561]: pgsql_db_connect() -- 16:41:49.341 DEBUG [18561]: Database connection successful -- 16:41:49.341 INFO [18561]: _SERVER found -- 16:41:49.341 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 16:41:49.341 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 16:41:49.341 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=nbpp7d997s0mbg91ne56d0d5qs5l4u8e -- 16:41:49.341 INFO [18561]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:41:49.341 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:41:49.352 INFO [18561]: COREGRADE is stopping... -- 16:41:49.352 DEBUG [18561]: Closing database connection -- 16:41:49.352 SQL [18561]: pgsql_close() -- 16:41:50.269 INFO [18561]: COREGRADE is starting... -- 16:41:50.269 INFO [18561]: Version from config: 1.0 -- 16:41:50.269 DEBUG [18561]: Connecting to database... -- 16:41:50.269 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:41:50.269 SQL [18561]: pgsql_db_connect() -- 16:41:50.273 DEBUG [18561]: Database connection successful -- 16:41:50.273 INFO [18561]: _SERVER found -- 16:41:50.273 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 16:41:50.273 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 16:41:50.273 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=nbpp7d997s0mbg91ne56d0d5qs5l4u8e -- 16:41:50.273 INFO [18561]: QUERY_STRING = /member/page -- 16:41:50.273 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:41:50.315 INFO [18561]: COREGRADE is stopping... -- 16:41:50.315 DEBUG [18561]: Closing database connection -- 16:41:50.315 SQL [18561]: pgsql_close() -- 16:41:50.453 INFO [18561]: COREGRADE is starting... -- 16:41:50.454 INFO [18561]: Version from config: 1.0 -- 16:41:50.454 DEBUG [18561]: Connecting to database... -- 16:41:50.454 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:41:50.454 SQL [18561]: pgsql_db_connect() -- 16:41:50.458 DEBUG [18561]: Database connection successful -- 16:41:50.458 INFO [18561]: _SERVER found -- 16:41:50.458 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 16:41:50.458 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 16:41:50.458 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=nbpp7d997s0mbg91ne56d0d5qs5l4u8e -- 16:41:50.458 INFO [18561]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:41:50.458 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:41:50.469 INFO [18561]: COREGRADE is stopping... -- 16:41:50.469 DEBUG [18561]: Closing database connection -- 16:41:50.469 SQL [18561]: pgsql_close() -- 16:41:50.576 INFO [18561]: COREGRADE is starting... -- 16:41:50.577 INFO [18561]: Version from config: 1.0 -- 16:41:50.577 DEBUG [18561]: Connecting to database... -- 16:41:50.577 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:41:50.577 SQL [18561]: pgsql_db_connect() -- 16:41:50.581 DEBUG [18561]: Database connection successful -- 16:41:50.581 INFO [18561]: _SERVER found -- 16:41:50.581 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 16:41:50.581 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 16:41:50.581 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=nbpp7d997s0mbg91ne56d0d5qs5l4u8e -- 16:41:50.581 INFO [18561]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:41:50.581 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:41:50.592 INFO [18561]: COREGRADE is stopping... -- 16:41:50.592 DEBUG [18561]: Closing database connection -- 16:41:50.592 SQL [18561]: pgsql_close() -- 16:41:53.715 INFO [18561]: COREGRADE is starting... -- 16:41:53.715 INFO [18561]: Version from config: 1.0 -- 16:41:53.715 DEBUG [18561]: Connecting to database... -- 16:41:53.715 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:41:53.715 SQL [18561]: pgsql_db_connect() -- 16:41:53.719 DEBUG [18561]: Database connection successful -- 16:41:53.719 INFO [18561]: _SERVER found -- 16:41:53.719 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 16:41:53.719 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 16:41:53.719 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=nbpp7d997s0mbg91ne56d0d5qs5l4u8e -- 16:41:53.719 INFO [18561]: QUERY_STRING = /member/viewCardAddAction -- 16:41:53.719 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:41:53.750 INFO [18561]: COREGRADE is stopping... -- 16:41:53.750 DEBUG [18561]: Closing database connection -- 16:41:53.750 SQL [18561]: pgsql_close() -- 16:42:04.238 INFO [18600]: COREGRADE is starting... -- 16:42:04.239 INFO [18600]: Version from config: 1.0 -- 16:42:04.239 DEBUG [18600]: Connecting to database... -- 16:42:04.239 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:42:04.239 SQL [18600]: pgsql_db_connect() -- 16:42:04.257 INFO [18602]: COREGRADE is starting... -- 16:42:04.257 INFO [18602]: Version from config: 1.0 -- 16:42:04.257 DEBUG [18602]: Connecting to database... -- 16:42:04.257 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:42:04.257 SQL [18602]: pgsql_db_connect() -- 16:42:04.243 DEBUG [18600]: Database connection successful -- 16:42:04.243 INFO [18600]: _SERVER found -- 16:42:04.243 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 16:42:04.243 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 16:42:04.243 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=nbpp7d997s0mbg91ne56d0d5qs5l4u8e -- 16:42:04.243 INFO [18600]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 16:42:04.243 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:42:04.257 INFO [18600]: COREGRADE is stopping... -- 16:42:04.257 DEBUG [18600]: Closing database connection -- 16:42:04.257 SQL [18600]: pgsql_close() -- 16:42:04.262 DEBUG [18602]: Database connection successful -- 16:42:04.262 INFO [18602]: _SERVER found -- 16:42:04.262 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 16:42:04.262 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 16:42:04.262 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=nbpp7d997s0mbg91ne56d0d5qs5l4u8e -- 16:42:04.262 INFO [18602]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 16:42:04.262 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:42:04.276 INFO [18602]: COREGRADE is stopping... -- 16:42:04.276 DEBUG [18602]: Closing database connection -- 16:42:04.276 SQL [18602]: pgsql_close() -- 16:43:45.109 INFO [18603]: COREGRADE is starting... -- 16:43:45.110 INFO [18603]: Version from config: 1.0 -- 16:43:45.110 DEBUG [18603]: Connecting to database... -- 16:43:45.110 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:43:45.110 SQL [18603]: pgsql_db_connect() -- 16:43:45.114 DEBUG [18603]: Database connection successful -- 16:43:45.114 INFO [18603]: _SERVER found -- 16:43:45.114 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 16:43:45.114 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 16:43:45.114 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=nbpp7d997s0mbg91ne56d0d5qs5l4u8e -- 16:43:45.114 INFO [18603]: QUERY_STRING = /member/page -- 16:43:45.114 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:43:45.166 INFO [18603]: COREGRADE is stopping... -- 16:43:45.166 DEBUG [18603]: Closing database connection -- 16:43:45.166 SQL [18603]: pgsql_close() -- 16:43:45.242 INFO [18603]: COREGRADE is starting... -- 16:43:45.242 INFO [18603]: Version from config: 1.0 -- 16:43:45.242 DEBUG [18603]: Connecting to database... -- 16:43:45.242 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:43:45.242 SQL [18603]: pgsql_db_connect() -- 16:43:45.247 DEBUG [18603]: Database connection successful -- 16:43:45.247 INFO [18603]: _SERVER found -- 16:43:45.247 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 16:43:45.247 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 16:43:45.247 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=nbpp7d997s0mbg91ne56d0d5qs5l4u8e -- 16:43:45.247 INFO [18603]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:43:45.247 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:43:45.259 INFO [18603]: COREGRADE is stopping... -- 16:43:45.259 DEBUG [18603]: Closing database connection -- 16:43:45.259 SQL [18603]: pgsql_close() -- 16:43:45.355 INFO [18603]: COREGRADE is starting... -- 16:43:45.355 INFO [18603]: Version from config: 1.0 -- 16:43:45.355 DEBUG [18603]: Connecting to database... -- 16:43:45.355 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:43:45.355 SQL [18603]: pgsql_db_connect() -- 16:43:45.360 DEBUG [18603]: Database connection successful -- 16:43:45.360 INFO [18603]: _SERVER found -- 16:43:45.360 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 16:43:45.360 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 16:43:45.360 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=nbpp7d997s0mbg91ne56d0d5qs5l4u8e -- 16:43:45.360 INFO [18603]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:43:45.360 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:43:45.371 INFO [18603]: COREGRADE is stopping... -- 16:43:45.371 DEBUG [18603]: Closing database connection -- 16:43:45.371 SQL [18603]: pgsql_close() -- 16:43:48.131 INFO [18603]: COREGRADE is starting... -- 16:43:48.132 INFO [18603]: Version from config: 1.0 -- 16:43:48.132 DEBUG [18603]: Connecting to database... -- 16:43:48.132 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:43:48.132 SQL [18603]: pgsql_db_connect() -- 16:43:48.136 DEBUG [18603]: Database connection successful -- 16:43:48.136 INFO [18603]: _SERVER found -- 16:43:48.136 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 16:43:48.136 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 16:43:48.136 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=nbpp7d997s0mbg91ne56d0d5qs5l4u8e -- 16:43:48.136 INFO [18603]: QUERY_STRING = /member/viewCardAddAction -- 16:43:48.136 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:43:48.171 INFO [18603]: COREGRADE is stopping... -- 16:43:48.171 DEBUG [18603]: Closing database connection -- 16:43:48.171 SQL [18603]: pgsql_close() -- 16:48:16.046 INFO [18604]: COREGRADE is starting... -- 16:48:16.046 INFO [18604]: Version from config: 1.0 -- 16:48:16.046 DEBUG [18604]: Connecting to database... -- 16:48:16.046 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:48:16.046 SQL [18604]: pgsql_db_connect() -- 16:48:16.051 DEBUG [18604]: Database connection successful -- 16:48:16.051 INFO [18604]: _SERVER found -- 16:48:16.051 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 16:48:16.051 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 16:48:16.051 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=nbpp7d997s0mbg91ne56d0d5qs5l4u8e -- 16:48:16.051 INFO [18604]: QUERY_STRING = /member/page -- 16:48:16.051 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:48:16.102 INFO [18604]: COREGRADE is stopping... -- 16:48:16.102 DEBUG [18604]: Closing database connection -- 16:48:16.102 SQL [18604]: pgsql_close() -- 16:48:16.228 INFO [18604]: COREGRADE is starting... -- 16:48:16.228 INFO [18604]: Version from config: 1.0 -- 16:48:16.228 DEBUG [18604]: Connecting to database... -- 16:48:16.228 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:48:16.228 SQL [18604]: pgsql_db_connect() -- 16:48:16.232 DEBUG [18604]: Database connection successful -- 16:48:16.232 INFO [18604]: _SERVER found -- 16:48:16.232 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 16:48:16.232 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 16:48:16.232 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=7l63db2ec7imdrapip6h7na0jcjlct5s -- 16:48:16.232 INFO [18604]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:48:16.232 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:48:16.244 INFO [18604]: COREGRADE is stopping... -- 16:48:16.244 DEBUG [18604]: Closing database connection -- 16:48:16.244 SQL [18604]: pgsql_close() -- 16:48:16.375 INFO [18604]: COREGRADE is starting... -- 16:48:16.376 INFO [18604]: Version from config: 1.0 -- 16:48:16.376 DEBUG [18604]: Connecting to database... -- 16:48:16.376 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:48:16.376 SQL [18604]: pgsql_db_connect() -- 16:48:16.380 DEBUG [18604]: Database connection successful -- 16:48:16.380 INFO [18604]: _SERVER found -- 16:48:16.380 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 16:48:16.380 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 16:48:16.380 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=7l63db2ec7imdrapip6h7na0jcjlct5s -- 16:48:16.380 INFO [18604]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:48:16.380 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:48:16.391 INFO [18604]: COREGRADE is stopping... -- 16:48:16.391 DEBUG [18604]: Closing database connection -- 16:48:16.391 SQL [18604]: pgsql_close() -- 16:48:20.744 INFO [18604]: COREGRADE is starting... -- 16:48:20.745 INFO [18604]: Version from config: 1.0 -- 16:48:20.745 DEBUG [18604]: Connecting to database... -- 16:48:20.745 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:48:20.745 SQL [18604]: pgsql_db_connect() -- 16:48:20.749 DEBUG [18604]: Database connection successful -- 16:48:20.749 INFO [18604]: _SERVER found -- 16:48:20.749 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 16:48:20.749 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 16:48:20.749 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=7l63db2ec7imdrapip6h7na0jcjlct5s -- 16:48:20.749 INFO [18604]: QUERY_STRING = /member/viewCardAddAction -- 16:48:20.749 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:48:20.783 INFO [18604]: COREGRADE is stopping... -- 16:48:20.783 DEBUG [18604]: Closing database connection -- 16:48:20.783 SQL [18604]: pgsql_close() -- 16:49:19.521 INFO [18562]: COREGRADE is starting... -- 16:49:19.521 INFO [18562]: Version from config: 1.0 -- 16:49:19.521 DEBUG [18562]: Connecting to database... -- 16:49:19.521 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:49:19.521 SQL [18562]: pgsql_db_connect() -- 16:49:19.525 DEBUG [18562]: Database connection successful -- 16:49:19.525 INFO [18562]: _SERVER found -- 16:49:19.525 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 16:49:19.525 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 16:49:19.525 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=7l63db2ec7imdrapip6h7na0jcjlct5s -- 16:49:19.525 INFO [18562]: QUERY_STRING = /member/page -- 16:49:19.525 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:49:19.576 INFO [18562]: COREGRADE is stopping... -- 16:49:19.576 DEBUG [18562]: Closing database connection -- 16:49:19.576 SQL [18562]: pgsql_close() -- 16:49:19.674 INFO [18562]: COREGRADE is starting... -- 16:49:19.674 INFO [18562]: Version from config: 1.0 -- 16:49:19.674 DEBUG [18562]: Connecting to database... -- 16:49:19.674 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:49:19.674 SQL [18562]: pgsql_db_connect() -- 16:49:19.678 DEBUG [18562]: Database connection successful -- 16:49:19.678 INFO [18562]: _SERVER found -- 16:49:19.678 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 16:49:19.678 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 16:49:19.678 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=7l63db2ec7imdrapip6h7na0jcjlct5s -- 16:49:19.678 INFO [18562]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:49:19.678 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:49:19.690 INFO [18562]: COREGRADE is stopping... -- 16:49:19.690 DEBUG [18562]: Closing database connection -- 16:49:19.690 SQL [18562]: pgsql_close() -- 16:49:19.850 INFO [18562]: COREGRADE is starting... -- 16:49:19.850 INFO [18562]: Version from config: 1.0 -- 16:49:19.850 DEBUG [18562]: Connecting to database... -- 16:49:19.850 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:49:19.850 SQL [18562]: pgsql_db_connect() -- 16:49:19.854 DEBUG [18562]: Database connection successful -- 16:49:19.854 INFO [18562]: _SERVER found -- 16:49:19.854 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 16:49:19.854 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 16:49:19.854 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=7l63db2ec7imdrapip6h7na0jcjlct5s -- 16:49:19.854 INFO [18562]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:49:19.854 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:49:19.866 INFO [18562]: COREGRADE is stopping... -- 16:49:19.866 DEBUG [18562]: Closing database connection -- 16:49:19.866 SQL [18562]: pgsql_close() -- 16:49:24.429 INFO [18559]: COREGRADE is starting... -- 16:49:24.430 INFO [18559]: Version from config: 1.0 -- 16:49:24.430 DEBUG [18559]: Connecting to database... -- 16:49:24.430 DEBUG [18559]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:49:24.430 SQL [18559]: pgsql_db_connect() -- 16:49:24.434 DEBUG [18559]: Database connection successful -- 16:49:24.434 INFO [18559]: _SERVER found -- 16:49:24.434 INFO [18559]: REMOTE_ADDR = 192.168.1.13 -- 16:49:24.434 INFO [18559]: SERVER_NAME = oameye.works.coregrade.com -- 16:49:24.434 INFO [18559]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=7l63db2ec7imdrapip6h7na0jcjlct5s -- 16:49:24.434 INFO [18559]: QUERY_STRING = /member/viewCardAddAction -- 16:49:24.434 INFO [18559]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:49:24.466 INFO [18559]: COREGRADE is stopping... -- 16:49:24.466 DEBUG [18559]: Closing database connection -- 16:49:24.466 SQL [18559]: pgsql_close() -- 16:49:30.029 INFO [18563]: COREGRADE is starting... -- 16:49:30.029 INFO [18563]: Version from config: 1.0 -- 16:49:30.029 DEBUG [18563]: Connecting to database... -- 16:49:30.029 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:49:30.029 SQL [18563]: pgsql_db_connect() -- 16:49:30.033 DEBUG [18563]: Database connection successful -- 16:49:30.033 INFO [18563]: _SERVER found -- 16:49:30.033 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 16:49:30.033 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 16:49:30.033 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=7l63db2ec7imdrapip6h7na0jcjlct5s -- 16:49:30.033 INFO [18563]: QUERY_STRING = /member/page -- 16:49:30.033 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:49:30.080 INFO [18563]: COREGRADE is stopping... -- 16:49:30.080 DEBUG [18563]: Closing database connection -- 16:49:30.080 SQL [18563]: pgsql_close() -- 16:49:30.398 INFO [18563]: COREGRADE is starting... -- 16:49:30.399 INFO [18563]: Version from config: 1.0 -- 16:49:30.399 DEBUG [18563]: Connecting to database... -- 16:49:30.399 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:49:30.399 SQL [18563]: pgsql_db_connect() -- 16:49:30.403 DEBUG [18563]: Database connection successful -- 16:49:30.403 INFO [18563]: _SERVER found -- 16:49:30.403 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 16:49:30.403 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 16:49:30.403 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=7l63db2ec7imdrapip6h7na0jcjlct5s -- 16:49:30.403 INFO [18563]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:49:30.403 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:49:30.414 INFO [18563]: COREGRADE is stopping... -- 16:49:30.414 DEBUG [18563]: Closing database connection -- 16:49:30.414 SQL [18563]: pgsql_close() -- 16:49:31.273 INFO [18602]: COREGRADE is starting... -- 16:49:31.274 INFO [18602]: Version from config: 1.0 -- 16:49:31.274 DEBUG [18602]: Connecting to database... -- 16:49:31.274 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:49:31.274 SQL [18602]: pgsql_db_connect() -- 16:49:31.278 DEBUG [18602]: Database connection successful -- 16:49:31.278 INFO [18602]: _SERVER found -- 16:49:31.278 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 16:49:31.278 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 16:49:31.278 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=7l63db2ec7imdrapip6h7na0jcjlct5s -- 16:49:31.278 INFO [18602]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:49:31.278 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:49:31.291 INFO [18602]: COREGRADE is stopping... -- 16:49:31.291 DEBUG [18602]: Closing database connection -- 16:49:31.291 SQL [18602]: pgsql_close() -- 16:49:33.534 INFO [18602]: COREGRADE is starting... -- 16:49:33.534 INFO [18602]: Version from config: 1.0 -- 16:49:33.534 DEBUG [18602]: Connecting to database... -- 16:49:33.534 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:49:33.534 SQL [18602]: pgsql_db_connect() -- 16:49:33.538 DEBUG [18602]: Database connection successful -- 16:49:33.538 INFO [18602]: _SERVER found -- 16:49:33.538 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 16:49:33.538 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 16:49:33.538 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=7l63db2ec7imdrapip6h7na0jcjlct5s -- 16:49:33.538 INFO [18602]: QUERY_STRING = /member/viewCardAddAction -- 16:49:33.538 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:49:33.574 INFO [18602]: COREGRADE is stopping... -- 16:49:33.574 DEBUG [18602]: Closing database connection -- 16:49:33.574 SQL [18602]: pgsql_close() -- 16:49:37.184 INFO [18602]: COREGRADE is starting... -- 16:49:37.184 INFO [18602]: Version from config: 1.0 -- 16:49:37.184 DEBUG [18602]: Connecting to database... -- 16:49:37.184 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:49:37.184 SQL [18602]: pgsql_db_connect() -- 16:49:37.188 DEBUG [18602]: Database connection successful -- 16:49:37.188 INFO [18602]: _SERVER found -- 16:49:37.188 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 16:49:37.188 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 16:49:37.188 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=7l63db2ec7imdrapip6h7na0jcjlct5s -- 16:49:37.188 INFO [18602]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 16:49:37.188 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:49:37.200 INFO [18602]: COREGRADE is stopping... -- 16:49:37.200 DEBUG [18602]: Closing database connection -- 16:49:37.200 SQL [18602]: pgsql_close() -- 16:49:37.211 INFO [18603]: COREGRADE is starting... -- 16:49:37.212 INFO [18603]: Version from config: 1.0 -- 16:49:37.212 DEBUG [18603]: Connecting to database... -- 16:49:37.212 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:49:37.212 SQL [18603]: pgsql_db_connect() -- 16:49:37.215 DEBUG [18603]: Database connection successful -- 16:49:37.215 INFO [18603]: _SERVER found -- 16:49:37.215 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 16:49:37.215 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 16:49:37.215 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=7l63db2ec7imdrapip6h7na0jcjlct5s -- 16:49:37.215 INFO [18603]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 16:49:37.215 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:49:37.227 INFO [18603]: COREGRADE is stopping... -- 16:49:37.227 DEBUG [18603]: Closing database connection -- 16:49:37.227 SQL [18603]: pgsql_close() -- 16:55:49.765 INFO [18604]: COREGRADE is starting... -- 16:55:49.766 INFO [18604]: Version from config: 1.0 -- 16:55:49.766 DEBUG [18604]: Connecting to database... -- 16:55:49.766 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:55:49.766 SQL [18604]: pgsql_db_connect() -- 16:55:49.770 DEBUG [18604]: Database connection successful -- 16:55:49.770 INFO [18604]: _SERVER found -- 16:55:49.770 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 16:55:49.770 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 16:55:49.770 INFO [18604]: QUERY_STRING = /owa/auth/logon.aspx -- 16:55:49.770 INFO [18604]: HTTP_X_FORWARDED_FOR = 169.197.108.22 -- 16:55:49.783 INFO [18604]: COREGRADE is stopping... -- 16:55:49.783 DEBUG [18604]: Closing database connection -- 16:55:49.783 SQL [18604]: pgsql_close() -- 16:58:51.839 INFO [18562]: COREGRADE is starting... -- 16:58:51.839 INFO [18562]: Version from config: 1.0 -- 16:58:51.839 DEBUG [18562]: Connecting to database... -- 16:58:51.839 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:51.839 SQL [18562]: pgsql_db_connect() -- 16:58:51.843 DEBUG [18562]: Database connection successful -- 16:58:51.843 INFO [18562]: _SERVER found -- 16:58:51.843 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 16:58:51.843 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 16:58:51.843 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=7l63db2ec7imdrapip6h7na0jcjlct5s -- 16:58:51.843 INFO [18562]: QUERY_STRING = /member/page -- 16:58:51.843 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:58:51.892 INFO [18562]: COREGRADE is stopping... -- 16:58:51.892 DEBUG [18562]: Closing database connection -- 16:58:51.892 SQL [18562]: pgsql_close() -- 16:58:52.019 INFO [18562]: COREGRADE is starting... -- 16:58:52.019 INFO [18562]: Version from config: 1.0 -- 16:58:52.019 DEBUG [18562]: Connecting to database... -- 16:58:52.019 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:52.019 SQL [18562]: pgsql_db_connect() -- 16:58:52.024 DEBUG [18562]: Database connection successful -- 16:58:52.024 INFO [18562]: _SERVER found -- 16:58:52.024 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 16:58:52.024 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 16:58:52.024 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=ihs1r18r1p19snfnbdihclufnef16hbi -- 16:58:52.024 INFO [18562]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:58:52.024 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:58:52.035 INFO [18562]: COREGRADE is stopping... -- 16:58:52.035 DEBUG [18562]: Closing database connection -- 16:58:52.035 SQL [18562]: pgsql_close() -- 16:58:52.365 INFO [18562]: COREGRADE is starting... -- 16:58:52.365 INFO [18562]: Version from config: 1.0 -- 16:58:52.365 DEBUG [18562]: Connecting to database... -- 16:58:52.365 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:52.365 SQL [18562]: pgsql_db_connect() -- 16:58:52.373 INFO [18664]: COREGRADE is starting... -- 16:58:52.374 INFO [18664]: Version from config: 1.0 -- 16:58:52.374 DEBUG [18664]: Connecting to database... -- 16:58:52.374 DEBUG [18664]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:52.374 SQL [18664]: pgsql_db_connect() -- 16:58:52.369 DEBUG [18562]: Database connection successful -- 16:58:52.369 INFO [18562]: _SERVER found -- 16:58:52.369 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 16:58:52.369 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 16:58:52.369 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=ihs1r18r1p19snfnbdihclufnef16hbi -- 16:58:52.369 INFO [18562]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 16:58:52.369 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:58:52.380 INFO [18562]: COREGRADE is stopping... -- 16:58:52.380 DEBUG [18562]: Closing database connection -- 16:58:52.380 SQL [18562]: pgsql_close() -- 16:58:52.378 DEBUG [18664]: Database connection successful -- 16:58:52.378 INFO [18664]: _SERVER found -- 16:58:52.378 INFO [18664]: REMOTE_ADDR = 192.168.1.13 -- 16:58:52.378 INFO [18664]: SERVER_NAME = oameye.works.coregrade.com -- 16:58:52.378 INFO [18664]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=ihs1r18r1p19snfnbdihclufnef16hbi -- 16:58:52.378 INFO [18664]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 16:58:52.378 INFO [18664]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:58:52.393 INFO [18664]: COREGRADE is stopping... -- 16:58:52.393 DEBUG [18664]: Closing database connection -- 16:58:52.393 SQL [18664]: pgsql_close() -- 16:58:52.418 INFO [18664]: COREGRADE is starting... -- 16:58:52.418 INFO [18664]: Version from config: 1.0 -- 16:58:52.418 DEBUG [18664]: Connecting to database... -- 16:58:52.418 DEBUG [18664]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:52.418 SQL [18664]: pgsql_db_connect() -- 16:58:52.422 DEBUG [18664]: Database connection successful -- 16:58:52.422 INFO [18664]: _SERVER found -- 16:58:52.422 INFO [18664]: REMOTE_ADDR = 192.168.1.13 -- 16:58:52.422 INFO [18664]: SERVER_NAME = oameye.works.coregrade.com -- 16:58:52.422 INFO [18664]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=ihs1r18r1p19snfnbdihclufnef16hbi -- 16:58:52.422 INFO [18664]: QUERY_STRING = /app-assets/data/locales/en.json -- 16:58:52.422 INFO [18664]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:58:52.435 INFO [18664]: COREGRADE is stopping... -- 16:58:52.435 DEBUG [18664]: Closing database connection -- 16:58:52.435 SQL [18664]: pgsql_close() -- 16:58:54.465 INFO [18664]: COREGRADE is starting... -- 16:58:54.465 INFO [18664]: Version from config: 1.0 -- 16:58:54.465 DEBUG [18664]: Connecting to database... -- 16:58:54.466 DEBUG [18664]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:54.466 SQL [18664]: pgsql_db_connect() -- 16:58:54.470 DEBUG [18664]: Database connection successful -- 16:58:54.470 INFO [18664]: _SERVER found -- 16:58:54.470 INFO [18664]: REMOTE_ADDR = 192.168.1.13 -- 16:58:54.470 INFO [18664]: SERVER_NAME = oameye.works.coregrade.com -- 16:58:54.470 INFO [18664]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=ihs1r18r1p19snfnbdihclufnef16hbi -- 16:58:54.470 INFO [18664]: QUERY_STRING = /member/viewCardAddAction -- 16:58:54.470 INFO [18664]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:58:54.506 INFO [18664]: COREGRADE is stopping... -- 16:58:54.506 DEBUG [18664]: Closing database connection -- 16:58:54.506 SQL [18664]: pgsql_close() -- 17:02:56.509 INFO [18559]: COREGRADE is starting... -- 17:02:56.509 INFO [18559]: Version from config: 1.0 -- 17:02:56.509 DEBUG [18559]: Connecting to database... -- 17:02:56.509 DEBUG [18559]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:02:56.509 SQL [18559]: pgsql_db_connect() -- 17:02:56.514 DEBUG [18559]: Database connection successful -- 17:02:56.514 INFO [18559]: _SERVER found -- 17:02:56.514 INFO [18559]: REMOTE_ADDR = 192.168.1.13 -- 17:02:56.514 INFO [18559]: SERVER_NAME = oameye.works.coregrade.com -- 17:02:56.514 INFO [18559]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=ihs1r18r1p19snfnbdihclufnef16hbi -- 17:02:56.514 INFO [18559]: QUERY_STRING = /member/page -- 17:02:56.514 INFO [18559]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:02:56.560 INFO [18559]: COREGRADE is stopping... -- 17:02:56.560 DEBUG [18559]: Closing database connection -- 17:02:56.560 SQL [18559]: pgsql_close() -- 17:02:56.711 INFO [18559]: COREGRADE is starting... -- 17:02:56.711 INFO [18559]: Version from config: 1.0 -- 17:02:56.711 DEBUG [18559]: Connecting to database... -- 17:02:56.711 DEBUG [18559]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:02:56.711 SQL [18559]: pgsql_db_connect() -- 17:02:56.715 DEBUG [18559]: Database connection successful -- 17:02:56.715 INFO [18559]: _SERVER found -- 17:02:56.715 INFO [18559]: REMOTE_ADDR = 192.168.1.13 -- 17:02:56.715 INFO [18559]: SERVER_NAME = oameye.works.coregrade.com -- 17:02:56.715 INFO [18559]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=ihs1r18r1p19snfnbdihclufnef16hbi -- 17:02:56.715 INFO [18559]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:02:56.715 INFO [18559]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:02:56.726 INFO [18559]: COREGRADE is stopping... -- 17:02:56.726 DEBUG [18559]: Closing database connection -- 17:02:56.727 SQL [18559]: pgsql_close() -- 17:02:56.959 INFO [18559]: COREGRADE is starting... -- 17:02:56.960 INFO [18559]: Version from config: 1.0 -- 17:02:56.960 DEBUG [18559]: Connecting to database... -- 17:02:56.960 DEBUG [18559]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:02:56.960 SQL [18559]: pgsql_db_connect() -- 17:02:56.969 INFO [18563]: COREGRADE is starting... -- 17:02:56.969 INFO [18563]: Version from config: 1.0 -- 17:02:56.969 DEBUG [18563]: Connecting to database... -- 17:02:56.969 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:02:56.969 SQL [18563]: pgsql_db_connect() -- 17:02:56.964 DEBUG [18559]: Database connection successful -- 17:02:56.964 INFO [18559]: _SERVER found -- 17:02:56.964 INFO [18559]: REMOTE_ADDR = 192.168.1.13 -- 17:02:56.964 INFO [18559]: SERVER_NAME = oameye.works.coregrade.com -- 17:02:56.964 INFO [18559]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=ihs1r18r1p19snfnbdihclufnef16hbi -- 17:02:56.964 INFO [18559]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 17:02:56.964 INFO [18559]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:02:56.975 INFO [18559]: COREGRADE is stopping... -- 17:02:56.975 DEBUG [18559]: Closing database connection -- 17:02:56.975 SQL [18559]: pgsql_close() -- 17:02:56.973 DEBUG [18563]: Database connection successful -- 17:02:56.973 INFO [18563]: _SERVER found -- 17:02:56.973 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 17:02:56.973 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 17:02:56.973 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=ihs1r18r1p19snfnbdihclufnef16hbi -- 17:02:56.973 INFO [18563]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 17:02:56.973 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:02:56.985 INFO [18563]: COREGRADE is stopping... -- 17:02:56.985 DEBUG [18563]: Closing database connection -- 17:02:56.985 SQL [18563]: pgsql_close() -- 17:02:57.023 INFO [18563]: COREGRADE is starting... -- 17:02:57.023 INFO [18563]: Version from config: 1.0 -- 17:02:57.023 DEBUG [18563]: Connecting to database... -- 17:02:57.023 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:02:57.023 SQL [18563]: pgsql_db_connect() -- 17:02:57.027 DEBUG [18563]: Database connection successful -- 17:02:57.027 INFO [18563]: _SERVER found -- 17:02:57.027 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 17:02:57.027 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 17:02:57.027 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=ihs1r18r1p19snfnbdihclufnef16hbi -- 17:02:57.027 INFO [18563]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:02:57.027 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:02:57.038 INFO [18563]: COREGRADE is stopping... -- 17:02:57.038 DEBUG [18563]: Closing database connection -- 17:02:57.038 SQL [18563]: pgsql_close() -- 17:02:59.556 INFO [18563]: COREGRADE is starting... -- 17:02:59.557 INFO [18563]: Version from config: 1.0 -- 17:02:59.557 DEBUG [18563]: Connecting to database... -- 17:02:59.557 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:02:59.557 SQL [18563]: pgsql_db_connect() -- 17:02:59.561 DEBUG [18563]: Database connection successful -- 17:02:59.561 INFO [18563]: _SERVER found -- 17:02:59.561 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 17:02:59.561 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 17:02:59.561 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=ihs1r18r1p19snfnbdihclufnef16hbi -- 17:02:59.561 INFO [18563]: QUERY_STRING = /member/viewCardAddAction -- 17:02:59.561 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:02:59.593 INFO [18563]: COREGRADE is stopping... -- 17:02:59.593 DEBUG [18563]: Closing database connection -- 17:02:59.593 SQL [18563]: pgsql_close() -- 17:05:39.908 INFO [18600]: COREGRADE is starting... -- 17:05:39.909 INFO [18600]: Version from config: 1.0 -- 17:05:39.909 DEBUG [18600]: Connecting to database... -- 17:05:39.909 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:39.909 SQL [18600]: pgsql_db_connect() -- 17:05:39.913 DEBUG [18600]: Database connection successful -- 17:05:39.913 INFO [18600]: _SERVER found -- 17:05:39.913 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 17:05:39.913 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:39.913 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=ihs1r18r1p19snfnbdihclufnef16hbi -- 17:05:39.913 INFO [18600]: QUERY_STRING = /member/page -- 17:05:39.913 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:05:39.964 INFO [18600]: COREGRADE is stopping... -- 17:05:39.964 DEBUG [18600]: Closing database connection -- 17:05:39.964 SQL [18600]: pgsql_close() -- 17:05:40.100 INFO [18600]: COREGRADE is starting... -- 17:05:40.100 INFO [18600]: Version from config: 1.0 -- 17:05:40.100 DEBUG [18600]: Connecting to database... -- 17:05:40.100 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:40.100 SQL [18600]: pgsql_db_connect() -- 17:05:40.104 DEBUG [18600]: Database connection successful -- 17:05:40.104 INFO [18600]: _SERVER found -- 17:05:40.104 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 17:05:40.104 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:40.104 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=n46domshr8vq4oge9qtdq5mtkvqho0nn -- 17:05:40.104 INFO [18600]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:05:40.104 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:05:40.115 INFO [18600]: COREGRADE is stopping... -- 17:05:40.115 DEBUG [18600]: Closing database connection -- 17:05:40.115 SQL [18600]: pgsql_close() -- 17:05:40.288 INFO [18600]: COREGRADE is starting... -- 17:05:40.288 INFO [18600]: Version from config: 1.0 -- 17:05:40.288 DEBUG [18600]: Connecting to database... -- 17:05:40.288 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:40.288 SQL [18600]: pgsql_db_connect() -- 17:05:40.300 INFO [18560]: COREGRADE is starting... -- 17:05:40.301 INFO [18560]: Version from config: 1.0 -- 17:05:40.301 DEBUG [18560]: Connecting to database... -- 17:05:40.301 DEBUG [18560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:40.301 SQL [18560]: pgsql_db_connect() -- 17:05:40.292 DEBUG [18600]: Database connection successful -- 17:05:40.292 INFO [18600]: _SERVER found -- 17:05:40.292 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 17:05:40.292 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:40.292 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=n46domshr8vq4oge9qtdq5mtkvqho0nn -- 17:05:40.292 INFO [18600]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 17:05:40.292 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:05:40.303 INFO [18600]: COREGRADE is stopping... -- 17:05:40.303 DEBUG [18600]: Closing database connection -- 17:05:40.303 SQL [18600]: pgsql_close() -- 17:05:40.305 DEBUG [18560]: Database connection successful -- 17:05:40.305 INFO [18560]: _SERVER found -- 17:05:40.305 INFO [18560]: REMOTE_ADDR = 192.168.1.13 -- 17:05:40.305 INFO [18560]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:40.305 INFO [18560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=n46domshr8vq4oge9qtdq5mtkvqho0nn -- 17:05:40.305 INFO [18560]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 17:05:40.305 INFO [18560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:05:40.320 INFO [18560]: COREGRADE is stopping... -- 17:05:40.320 DEBUG [18560]: Closing database connection -- 17:05:40.320 SQL [18560]: pgsql_close() -- 17:05:40.368 INFO [18560]: COREGRADE is starting... -- 17:05:40.368 INFO [18560]: Version from config: 1.0 -- 17:05:40.368 DEBUG [18560]: Connecting to database... -- 17:05:40.368 DEBUG [18560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:40.368 SQL [18560]: pgsql_db_connect() -- 17:05:40.372 DEBUG [18560]: Database connection successful -- 17:05:40.372 INFO [18560]: _SERVER found -- 17:05:40.372 INFO [18560]: REMOTE_ADDR = 192.168.1.13 -- 17:05:40.372 INFO [18560]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:40.372 INFO [18560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=n46domshr8vq4oge9qtdq5mtkvqho0nn -- 17:05:40.372 INFO [18560]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:05:40.372 INFO [18560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:05:40.385 INFO [18560]: COREGRADE is stopping... -- 17:05:40.385 DEBUG [18560]: Closing database connection -- 17:05:40.385 SQL [18560]: pgsql_close() -- 17:05:42.847 INFO [18560]: COREGRADE is starting... -- 17:05:42.847 INFO [18560]: Version from config: 1.0 -- 17:05:42.847 DEBUG [18560]: Connecting to database... -- 17:05:42.847 DEBUG [18560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:42.847 SQL [18560]: pgsql_db_connect() -- 17:05:42.851 DEBUG [18560]: Database connection successful -- 17:05:42.851 INFO [18560]: _SERVER found -- 17:05:42.851 INFO [18560]: REMOTE_ADDR = 192.168.1.13 -- 17:05:42.851 INFO [18560]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:42.851 INFO [18560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=n46domshr8vq4oge9qtdq5mtkvqho0nn -- 17:05:42.851 INFO [18560]: QUERY_STRING = /member/viewCardAddAction -- 17:05:42.851 INFO [18560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:05:42.888 INFO [18560]: COREGRADE is stopping... -- 17:05:42.888 DEBUG [18560]: Closing database connection -- 17:05:42.888 SQL [18560]: pgsql_close() -- 17:06:15.284 INFO [18561]: COREGRADE is starting... -- 17:06:15.285 INFO [18561]: Version from config: 1.0 -- 17:06:15.285 DEBUG [18561]: Connecting to database... -- 17:06:15.285 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:15.285 SQL [18561]: pgsql_db_connect() -- 17:06:15.289 DEBUG [18561]: Database connection successful -- 17:06:15.289 INFO [18561]: _SERVER found -- 17:06:15.289 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 17:06:15.289 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:15.289 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=n46domshr8vq4oge9qtdq5mtkvqho0nn -- 17:06:15.289 INFO [18561]: QUERY_STRING = /member/page -- 17:06:15.289 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:06:15.333 INFO [18561]: COREGRADE is stopping... -- 17:06:15.333 DEBUG [18561]: Closing database connection -- 17:06:15.333 SQL [18561]: pgsql_close() -- 17:06:15.916 INFO [18561]: COREGRADE is starting... -- 17:06:15.916 INFO [18561]: Version from config: 1.0 -- 17:06:15.916 DEBUG [18561]: Connecting to database... -- 17:06:15.916 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:15.916 SQL [18561]: pgsql_db_connect() -- 17:06:15.925 INFO [18602]: COREGRADE is starting... -- 17:06:15.926 INFO [18602]: Version from config: 1.0 -- 17:06:15.926 DEBUG [18602]: Connecting to database... -- 17:06:15.926 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:15.926 SQL [18602]: pgsql_db_connect() -- 17:06:15.921 DEBUG [18561]: Database connection successful -- 17:06:15.921 INFO [18561]: _SERVER found -- 17:06:15.921 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 17:06:15.921 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:15.921 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=n46domshr8vq4oge9qtdq5mtkvqho0nn -- 17:06:15.921 INFO [18561]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 17:06:15.921 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:06:15.932 INFO [18561]: COREGRADE is stopping... -- 17:06:15.932 DEBUG [18561]: Closing database connection -- 17:06:15.932 SQL [18561]: pgsql_close() -- 17:06:15.930 DEBUG [18602]: Database connection successful -- 17:06:15.930 INFO [18602]: _SERVER found -- 17:06:15.930 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 17:06:15.930 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:15.930 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=n46domshr8vq4oge9qtdq5mtkvqho0nn -- 17:06:15.930 INFO [18602]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 17:06:15.930 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:06:15.942 INFO [18602]: COREGRADE is stopping... -- 17:06:15.943 DEBUG [18602]: Closing database connection -- 17:06:15.943 SQL [18602]: pgsql_close() -- 17:06:16.025 INFO [18602]: COREGRADE is starting... -- 17:06:16.026 INFO [18602]: Version from config: 1.0 -- 17:06:16.026 DEBUG [18602]: Connecting to database... -- 17:06:16.026 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:16.026 SQL [18602]: pgsql_db_connect() -- 17:06:16.030 DEBUG [18602]: Database connection successful -- 17:06:16.030 INFO [18602]: _SERVER found -- 17:06:16.030 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 17:06:16.030 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:16.030 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=n46domshr8vq4oge9qtdq5mtkvqho0nn -- 17:06:16.030 INFO [18602]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:06:16.030 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:06:16.041 INFO [18602]: COREGRADE is stopping... -- 17:06:16.041 DEBUG [18602]: Closing database connection -- 17:06:16.041 SQL [18602]: pgsql_close() -- 17:06:18.948 INFO [18602]: COREGRADE is starting... -- 17:06:18.948 INFO [18602]: Version from config: 1.0 -- 17:06:18.948 DEBUG [18602]: Connecting to database... -- 17:06:18.948 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:18.948 SQL [18602]: pgsql_db_connect() -- 17:06:18.952 DEBUG [18602]: Database connection successful -- 17:06:18.952 INFO [18602]: _SERVER found -- 17:06:18.952 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 17:06:18.952 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:18.952 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=n46domshr8vq4oge9qtdq5mtkvqho0nn -- 17:06:18.952 INFO [18602]: QUERY_STRING = /member/viewCardAddAction -- 17:06:18.952 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:06:18.984 INFO [18602]: COREGRADE is stopping... -- 17:06:18.984 DEBUG [18602]: Closing database connection -- 17:06:18.984 SQL [18602]: pgsql_close() -- 17:08:08.990 INFO [18603]: COREGRADE is starting... -- 17:08:08.990 INFO [18603]: Version from config: 1.0 -- 17:08:08.990 DEBUG [18603]: Connecting to database... -- 17:08:08.990 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:08:08.990 SQL [18603]: pgsql_db_connect() -- 17:08:08.994 DEBUG [18603]: Database connection successful -- 17:08:08.994 INFO [18603]: _SERVER found -- 17:08:08.994 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 17:08:08.994 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 17:08:08.994 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=n46domshr8vq4oge9qtdq5mtkvqho0nn -- 17:08:08.994 INFO [18603]: QUERY_STRING = /member/page -- 17:08:08.994 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:08:09.040 INFO [18603]: COREGRADE is stopping... -- 17:08:09.040 DEBUG [18603]: Closing database connection -- 17:08:09.040 SQL [18603]: pgsql_close() -- 17:08:09.160 INFO [18603]: COREGRADE is starting... -- 17:08:09.161 INFO [18603]: Version from config: 1.0 -- 17:08:09.161 DEBUG [18603]: Connecting to database... -- 17:08:09.161 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:08:09.161 SQL [18603]: pgsql_db_connect() -- 17:08:09.165 DEBUG [18603]: Database connection successful -- 17:08:09.165 INFO [18603]: _SERVER found -- 17:08:09.165 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 17:08:09.165 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 17:08:09.165 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=n46domshr8vq4oge9qtdq5mtkvqho0nn -- 17:08:09.165 INFO [18603]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:08:09.165 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:08:09.176 INFO [18603]: COREGRADE is stopping... -- 17:08:09.176 DEBUG [18603]: Closing database connection -- 17:08:09.176 SQL [18603]: pgsql_close() -- 17:08:09.330 INFO [18603]: COREGRADE is starting... -- 17:08:09.330 INFO [18603]: Version from config: 1.0 -- 17:08:09.330 DEBUG [18603]: Connecting to database... -- 17:08:09.330 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:08:09.330 SQL [18603]: pgsql_db_connect() -- 17:08:09.341 INFO [18604]: COREGRADE is starting... -- 17:08:09.341 INFO [18604]: Version from config: 1.0 -- 17:08:09.341 DEBUG [18604]: Connecting to database... -- 17:08:09.341 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:08:09.341 SQL [18604]: pgsql_db_connect() -- 17:08:09.334 DEBUG [18603]: Database connection successful -- 17:08:09.334 INFO [18603]: _SERVER found -- 17:08:09.334 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 17:08:09.334 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 17:08:09.334 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=n46domshr8vq4oge9qtdq5mtkvqho0nn -- 17:08:09.334 INFO [18603]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 17:08:09.334 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:08:09.345 INFO [18603]: COREGRADE is stopping... -- 17:08:09.345 DEBUG [18603]: Closing database connection -- 17:08:09.346 SQL [18603]: pgsql_close() -- 17:08:09.345 DEBUG [18604]: Database connection successful -- 17:08:09.345 INFO [18604]: _SERVER found -- 17:08:09.345 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 17:08:09.345 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 17:08:09.345 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=n46domshr8vq4oge9qtdq5mtkvqho0nn -- 17:08:09.345 INFO [18604]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 17:08:09.345 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:08:09.357 INFO [18604]: COREGRADE is stopping... -- 17:08:09.357 DEBUG [18604]: Closing database connection -- 17:08:09.357 SQL [18604]: pgsql_close() -- 17:08:09.396 INFO [18604]: COREGRADE is starting... -- 17:08:09.396 INFO [18604]: Version from config: 1.0 -- 17:08:09.396 DEBUG [18604]: Connecting to database... -- 17:08:09.396 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:08:09.396 SQL [18604]: pgsql_db_connect() -- 17:08:09.401 DEBUG [18604]: Database connection successful -- 17:08:09.401 INFO [18604]: _SERVER found -- 17:08:09.401 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 17:08:09.401 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 17:08:09.401 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=n46domshr8vq4oge9qtdq5mtkvqho0nn -- 17:08:09.401 INFO [18604]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:08:09.401 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:08:09.412 INFO [18604]: COREGRADE is stopping... -- 17:08:09.412 DEBUG [18604]: Closing database connection -- 17:08:09.412 SQL [18604]: pgsql_close() -- 17:08:16.469 INFO [18562]: COREGRADE is starting... -- 17:08:16.469 INFO [18562]: Version from config: 1.0 -- 17:08:16.469 DEBUG [18562]: Connecting to database... -- 17:08:16.469 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:08:16.469 SQL [18562]: pgsql_db_connect() -- 17:08:16.473 DEBUG [18562]: Database connection successful -- 17:08:16.473 INFO [18562]: _SERVER found -- 17:08:16.473 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 17:08:16.473 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 17:08:16.473 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=n46domshr8vq4oge9qtdq5mtkvqho0nn -- 17:08:16.473 INFO [18562]: QUERY_STRING = /member/viewCardAddAction -- 17:08:16.473 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:08:16.505 INFO [18562]: COREGRADE is stopping... -- 17:08:16.505 DEBUG [18562]: Closing database connection -- 17:08:16.505 SQL [18562]: pgsql_close() -- 17:08:58.737 INFO [18664]: COREGRADE is starting... -- 17:08:58.737 INFO [18664]: Version from config: 1.0 -- 17:08:58.737 DEBUG [18664]: Connecting to database... -- 17:08:58.737 DEBUG [18664]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:08:58.737 SQL [18664]: pgsql_db_connect() -- 17:08:58.741 DEBUG [18664]: Database connection successful -- 17:08:58.741 INFO [18664]: _SERVER found -- 17:08:58.741 INFO [18664]: REMOTE_ADDR = 192.168.1.13 -- 17:08:58.741 INFO [18664]: SERVER_NAME = oameye.works.coregrade.com -- 17:08:58.741 INFO [18664]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=n46domshr8vq4oge9qtdq5mtkvqho0nn -- 17:08:58.741 INFO [18664]: QUERY_STRING = /member/page -- 17:08:58.741 INFO [18664]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:08:58.785 INFO [18664]: COREGRADE is stopping... -- 17:08:58.785 DEBUG [18664]: Closing database connection -- 17:08:58.785 SQL [18664]: pgsql_close() -- 17:08:58.999 INFO [18664]: COREGRADE is starting... -- 17:08:58.999 INFO [18664]: Version from config: 1.0 -- 17:08:58.999 DEBUG [18664]: Connecting to database... -- 17:08:58.999 DEBUG [18664]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:08:58.999 SQL [18664]: pgsql_db_connect() -- 17:08:59.003 DEBUG [18664]: Database connection successful -- 17:08:59.004 INFO [18664]: _SERVER found -- 17:08:59.004 INFO [18664]: REMOTE_ADDR = 192.168.1.13 -- 17:08:59.004 INFO [18664]: SERVER_NAME = oameye.works.coregrade.com -- 17:08:59.004 INFO [18664]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=n46domshr8vq4oge9qtdq5mtkvqho0nn -- 17:08:59.004 INFO [18664]: QUERY_STRING = /favicon.ico -- 17:08:59.004 INFO [18664]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:08:59.015 INFO [18664]: COREGRADE is stopping... -- 17:08:59.015 DEBUG [18664]: Closing database connection -- 17:08:59.015 SQL [18664]: pgsql_close() -- 17:13:12.294 INFO [18559]: COREGRADE is starting... -- 17:13:12.295 INFO [18559]: Version from config: 1.0 -- 17:13:12.295 DEBUG [18559]: Connecting to database... -- 17:13:12.295 DEBUG [18559]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:13:12.295 SQL [18559]: pgsql_db_connect() -- 17:13:12.299 DEBUG [18559]: Database connection successful -- 17:13:12.299 INFO [18559]: _SERVER found -- 17:13:12.299 INFO [18559]: REMOTE_ADDR = 192.168.1.13 -- 17:13:12.299 INFO [18559]: SERVER_NAME = oameye.works.coregrade.com -- 17:13:12.299 INFO [18559]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=n46domshr8vq4oge9qtdq5mtkvqho0nn -- 17:13:12.299 INFO [18559]: QUERY_STRING = /member/page -- 17:13:12.299 INFO [18559]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:13:12.344 INFO [18559]: COREGRADE is stopping... -- 17:13:12.344 DEBUG [18559]: Closing database connection -- 17:13:12.344 SQL [18559]: pgsql_close() -- 17:13:12.441 INFO [18559]: COREGRADE is starting... -- 17:13:12.441 INFO [18559]: Version from config: 1.0 -- 17:13:12.441 DEBUG [18559]: Connecting to database... -- 17:13:12.441 DEBUG [18559]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:13:12.441 SQL [18559]: pgsql_db_connect() -- 17:13:12.445 DEBUG [18559]: Database connection successful -- 17:13:12.445 INFO [18559]: _SERVER found -- 17:13:12.445 INFO [18559]: REMOTE_ADDR = 192.168.1.13 -- 17:13:12.445 INFO [18559]: SERVER_NAME = oameye.works.coregrade.com -- 17:13:12.445 INFO [18559]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9dtrh68jpil271v2d8eot9c0cee20e0f -- 17:13:12.445 INFO [18559]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:13:12.445 INFO [18559]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:13:12.456 INFO [18559]: COREGRADE is stopping... -- 17:13:12.456 DEBUG [18559]: Closing database connection -- 17:13:12.456 SQL [18559]: pgsql_close() -- 17:13:12.611 INFO [18559]: COREGRADE is starting... -- 17:13:12.611 INFO [18559]: Version from config: 1.0 -- 17:13:12.611 DEBUG [18559]: Connecting to database... -- 17:13:12.611 DEBUG [18559]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:13:12.611 SQL [18559]: pgsql_db_connect() -- 17:13:12.616 DEBUG [18559]: Database connection successful -- 17:13:12.616 INFO [18559]: _SERVER found -- 17:13:12.616 INFO [18559]: REMOTE_ADDR = 192.168.1.13 -- 17:13:12.616 INFO [18559]: SERVER_NAME = oameye.works.coregrade.com -- 17:13:12.616 INFO [18559]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9dtrh68jpil271v2d8eot9c0cee20e0f -- 17:13:12.616 INFO [18559]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:13:12.616 INFO [18559]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:13:12.627 INFO [18559]: COREGRADE is stopping... -- 17:13:12.627 DEBUG [18559]: Closing database connection -- 17:13:12.627 SQL [18559]: pgsql_close() -- 17:13:16.012 INFO [18559]: COREGRADE is starting... -- 17:13:16.012 INFO [18559]: Version from config: 1.0 -- 17:13:16.012 DEBUG [18559]: Connecting to database... -- 17:13:16.012 DEBUG [18559]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:13:16.012 SQL [18559]: pgsql_db_connect() -- 17:13:16.016 DEBUG [18559]: Database connection successful -- 17:13:16.016 INFO [18559]: _SERVER found -- 17:13:16.016 INFO [18559]: REMOTE_ADDR = 192.168.1.13 -- 17:13:16.016 INFO [18559]: SERVER_NAME = oameye.works.coregrade.com -- 17:13:16.016 INFO [18559]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9dtrh68jpil271v2d8eot9c0cee20e0f -- 17:13:16.016 INFO [18559]: QUERY_STRING = /member/viewCardAddAction -- 17:13:16.016 INFO [18559]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:13:16.048 INFO [18559]: COREGRADE is stopping... -- 17:13:16.048 DEBUG [18559]: Closing database connection -- 17:13:16.048 SQL [18559]: pgsql_close() -- 17:14:46.794 INFO [18563]: COREGRADE is starting... -- 17:14:46.794 INFO [18563]: Version from config: 1.0 -- 17:14:46.794 DEBUG [18563]: Connecting to database... -- 17:14:46.794 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:14:46.794 SQL [18563]: pgsql_db_connect() -- 17:14:46.798 DEBUG [18563]: Database connection successful -- 17:14:46.798 INFO [18563]: _SERVER found -- 17:14:46.798 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 17:14:46.798 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 17:14:46.798 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9dtrh68jpil271v2d8eot9c0cee20e0f -- 17:14:46.798 INFO [18563]: QUERY_STRING = /member/page -- 17:14:46.798 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:14:46.842 INFO [18563]: COREGRADE is stopping... -- 17:14:46.842 DEBUG [18563]: Closing database connection -- 17:14:46.842 SQL [18563]: pgsql_close() -- 17:14:46.963 INFO [18563]: COREGRADE is starting... -- 17:14:46.963 INFO [18563]: Version from config: 1.0 -- 17:14:46.963 DEBUG [18563]: Connecting to database... -- 17:14:46.963 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:14:46.963 SQL [18563]: pgsql_db_connect() -- 17:14:46.967 DEBUG [18563]: Database connection successful -- 17:14:46.967 INFO [18563]: _SERVER found -- 17:14:46.967 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 17:14:46.967 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 17:14:46.967 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9dtrh68jpil271v2d8eot9c0cee20e0f -- 17:14:46.967 INFO [18563]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:14:46.967 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:14:46.978 INFO [18563]: COREGRADE is stopping... -- 17:14:46.978 DEBUG [18563]: Closing database connection -- 17:14:46.978 SQL [18563]: pgsql_close() -- 17:14:47.123 INFO [18563]: COREGRADE is starting... -- 17:14:47.123 INFO [18563]: Version from config: 1.0 -- 17:14:47.123 DEBUG [18563]: Connecting to database... -- 17:14:47.123 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:14:47.123 SQL [18563]: pgsql_db_connect() -- 17:14:47.127 DEBUG [18563]: Database connection successful -- 17:14:47.127 INFO [18563]: _SERVER found -- 17:14:47.127 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 17:14:47.127 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 17:14:47.127 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9dtrh68jpil271v2d8eot9c0cee20e0f -- 17:14:47.127 INFO [18563]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:14:47.127 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:14:47.138 INFO [18563]: COREGRADE is stopping... -- 17:14:47.138 DEBUG [18563]: Closing database connection -- 17:14:47.138 SQL [18563]: pgsql_close() -- 17:14:49.212 INFO [18563]: COREGRADE is starting... -- 17:14:49.212 INFO [18563]: Version from config: 1.0 -- 17:14:49.212 DEBUG [18563]: Connecting to database... -- 17:14:49.212 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:14:49.212 SQL [18563]: pgsql_db_connect() -- 17:14:49.216 DEBUG [18563]: Database connection successful -- 17:14:49.216 INFO [18563]: _SERVER found -- 17:14:49.216 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 17:14:49.216 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 17:14:49.216 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9dtrh68jpil271v2d8eot9c0cee20e0f -- 17:14:49.216 INFO [18563]: QUERY_STRING = /member/viewCardAddAction -- 17:14:49.216 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:14:49.247 INFO [18563]: COREGRADE is stopping... -- 17:14:49.247 DEBUG [18563]: Closing database connection -- 17:14:49.247 SQL [18563]: pgsql_close() -- 17:15:48.661 INFO [18560]: COREGRADE is starting... -- 17:15:48.661 INFO [18560]: Version from config: 1.0 -- 17:15:48.661 DEBUG [18560]: Connecting to database... -- 17:15:48.661 DEBUG [18560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:15:48.661 SQL [18560]: pgsql_db_connect() -- 17:15:48.665 DEBUG [18560]: Database connection successful -- 17:15:48.665 INFO [18560]: _SERVER found -- 17:15:48.665 INFO [18560]: REMOTE_ADDR = 192.168.1.13 -- 17:15:48.665 INFO [18560]: SERVER_NAME = oameye.works.coregrade.com -- 17:15:48.665 INFO [18560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9dtrh68jpil271v2d8eot9c0cee20e0f -- 17:15:48.665 INFO [18560]: QUERY_STRING = /member/page -- 17:15:48.665 INFO [18560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:15:48.711 INFO [18560]: COREGRADE is stopping... -- 17:15:48.711 DEBUG [18560]: Closing database connection -- 17:15:48.711 SQL [18560]: pgsql_close() -- 17:15:48.806 INFO [18560]: COREGRADE is starting... -- 17:15:48.806 INFO [18560]: Version from config: 1.0 -- 17:15:48.806 DEBUG [18560]: Connecting to database... -- 17:15:48.806 DEBUG [18560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:15:48.806 SQL [18560]: pgsql_db_connect() -- 17:15:48.810 DEBUG [18560]: Database connection successful -- 17:15:48.810 INFO [18560]: _SERVER found -- 17:15:48.810 INFO [18560]: REMOTE_ADDR = 192.168.1.13 -- 17:15:48.810 INFO [18560]: SERVER_NAME = oameye.works.coregrade.com -- 17:15:48.810 INFO [18560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9dtrh68jpil271v2d8eot9c0cee20e0f -- 17:15:48.810 INFO [18560]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:15:48.810 INFO [18560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:15:48.821 INFO [18560]: COREGRADE is stopping... -- 17:15:48.821 DEBUG [18560]: Closing database connection -- 17:15:48.821 SQL [18560]: pgsql_close() -- 17:15:48.904 INFO [18560]: COREGRADE is starting... -- 17:15:48.904 INFO [18560]: Version from config: 1.0 -- 17:15:48.904 DEBUG [18560]: Connecting to database... -- 17:15:48.904 DEBUG [18560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:15:48.904 SQL [18560]: pgsql_db_connect() -- 17:15:48.908 DEBUG [18560]: Database connection successful -- 17:15:48.908 INFO [18560]: _SERVER found -- 17:15:48.908 INFO [18560]: REMOTE_ADDR = 192.168.1.13 -- 17:15:48.908 INFO [18560]: SERVER_NAME = oameye.works.coregrade.com -- 17:15:48.908 INFO [18560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9dtrh68jpil271v2d8eot9c0cee20e0f -- 17:15:48.908 INFO [18560]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:15:48.908 INFO [18560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:15:48.919 INFO [18560]: COREGRADE is stopping... -- 17:15:48.919 DEBUG [18560]: Closing database connection -- 17:15:48.919 SQL [18560]: pgsql_close() -- 17:15:52.160 INFO [18560]: COREGRADE is starting... -- 17:15:52.161 INFO [18560]: Version from config: 1.0 -- 17:15:52.161 DEBUG [18560]: Connecting to database... -- 17:15:52.161 DEBUG [18560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:15:52.161 SQL [18560]: pgsql_db_connect() -- 17:15:52.165 DEBUG [18560]: Database connection successful -- 17:15:52.165 INFO [18560]: _SERVER found -- 17:15:52.165 INFO [18560]: REMOTE_ADDR = 192.168.1.13 -- 17:15:52.165 INFO [18560]: SERVER_NAME = oameye.works.coregrade.com -- 17:15:52.165 INFO [18560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9dtrh68jpil271v2d8eot9c0cee20e0f -- 17:15:52.165 INFO [18560]: QUERY_STRING = /member/viewCardAddAction -- 17:15:52.165 INFO [18560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:15:52.196 INFO [18560]: COREGRADE is stopping... -- 17:15:52.196 DEBUG [18560]: Closing database connection -- 17:15:52.196 SQL [18560]: pgsql_close() -- 17:16:11.633 INFO [18602]: COREGRADE is starting... -- 17:16:11.633 INFO [18602]: Version from config: 1.0 -- 17:16:11.633 DEBUG [18602]: Connecting to database... -- 17:16:11.633 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:16:11.633 SQL [18602]: pgsql_db_connect() -- 17:16:11.637 DEBUG [18602]: Database connection successful -- 17:16:11.637 INFO [18602]: _SERVER found -- 17:16:11.637 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 17:16:11.637 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 17:16:11.637 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9dtrh68jpil271v2d8eot9c0cee20e0f -- 17:16:11.637 INFO [18602]: QUERY_STRING = /member/mycalendar -- 17:16:11.637 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:16:11.676 INFO [18602]: COREGRADE is stopping... -- 17:16:11.676 DEBUG [18602]: Closing database connection -- 17:16:11.676 SQL [18602]: pgsql_close() -- 17:16:11.813 INFO [18602]: COREGRADE is starting... -- 17:16:11.813 INFO [18602]: Version from config: 1.0 -- 17:16:11.813 DEBUG [18602]: Connecting to database... -- 17:16:11.813 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:16:11.813 SQL [18602]: pgsql_db_connect() -- 17:16:11.817 DEBUG [18602]: Database connection successful -- 17:16:11.817 INFO [18602]: _SERVER found -- 17:16:11.817 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 17:16:11.817 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 17:16:11.817 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9dtrh68jpil271v2d8eot9c0cee20e0f -- 17:16:11.817 INFO [18602]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:16:11.817 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:16:11.828 INFO [18602]: COREGRADE is stopping... -- 17:16:11.828 DEBUG [18602]: Closing database connection -- 17:16:11.828 SQL [18602]: pgsql_close() -- 17:16:11.883 INFO [18602]: COREGRADE is starting... -- 17:16:11.883 INFO [18602]: Version from config: 1.0 -- 17:16:11.883 DEBUG [18602]: Connecting to database... -- 17:16:11.883 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:16:11.883 SQL [18602]: pgsql_db_connect() -- 17:16:11.887 DEBUG [18602]: Database connection successful -- 17:16:11.887 INFO [18602]: _SERVER found -- 17:16:11.887 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 17:16:11.887 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 17:16:11.887 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9dtrh68jpil271v2d8eot9c0cee20e0f -- 17:16:11.887 INFO [18602]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:16:11.887 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:16:11.898 INFO [18602]: COREGRADE is stopping... -- 17:16:11.898 DEBUG [18602]: Closing database connection -- 17:16:11.898 SQL [18602]: pgsql_close() -- 17:16:15.603 INFO [18602]: COREGRADE is starting... -- 17:16:15.604 INFO [18602]: Version from config: 1.0 -- 17:16:15.604 DEBUG [18602]: Connecting to database... -- 17:16:15.604 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:16:15.604 SQL [18602]: pgsql_db_connect() -- 17:16:15.608 DEBUG [18602]: Database connection successful -- 17:16:15.608 INFO [18602]: _SERVER found -- 17:16:15.608 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 17:16:15.608 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 17:16:15.608 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9dtrh68jpil271v2d8eot9c0cee20e0f -- 17:16:15.608 INFO [18602]: QUERY_STRING = /member -- 17:16:15.608 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:16:15.648 INFO [18602]: COREGRADE is stopping... -- 17:16:15.648 DEBUG [18602]: Closing database connection -- 17:16:15.648 SQL [18602]: pgsql_close() -- 17:16:15.784 INFO [18602]: COREGRADE is starting... -- 17:16:15.784 INFO [18602]: Version from config: 1.0 -- 17:16:15.784 DEBUG [18602]: Connecting to database... -- 17:16:15.784 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:16:15.784 SQL [18602]: pgsql_db_connect() -- 17:16:15.788 DEBUG [18602]: Database connection successful -- 17:16:15.788 INFO [18602]: _SERVER found -- 17:16:15.788 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 17:16:15.788 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 17:16:15.788 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9dtrh68jpil271v2d8eot9c0cee20e0f -- 17:16:15.788 INFO [18602]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:16:15.788 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:16:15.799 INFO [18602]: COREGRADE is stopping... -- 17:16:15.799 DEBUG [18602]: Closing database connection -- 17:16:15.799 SQL [18602]: pgsql_close() -- 17:16:15.802 INFO [18602]: COREGRADE is starting... -- 17:16:15.802 INFO [18602]: Version from config: 1.0 -- 17:16:15.802 DEBUG [18602]: Connecting to database... -- 17:16:15.802 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:16:15.802 SQL [18602]: pgsql_db_connect() -- 17:16:15.806 DEBUG [18602]: Database connection successful -- 17:16:15.806 INFO [18602]: _SERVER found -- 17:16:15.806 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 17:16:15.806 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 17:16:15.806 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9dtrh68jpil271v2d8eot9c0cee20e0f -- 17:16:15.806 INFO [18602]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:16:15.806 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:16:15.817 INFO [18602]: COREGRADE is stopping... -- 17:16:15.817 DEBUG [18602]: Closing database connection -- 17:16:15.817 SQL [18602]: pgsql_close() -- 17:16:16.893 INFO [18602]: COREGRADE is starting... -- 17:16:16.893 INFO [18602]: Version from config: 1.0 -- 17:16:16.893 DEBUG [18602]: Connecting to database... -- 17:16:16.893 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:16:16.893 SQL [18602]: pgsql_db_connect() -- 17:16:16.897 DEBUG [18602]: Database connection successful -- 17:16:16.897 INFO [18602]: _SERVER found -- 17:16:16.897 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 17:16:16.897 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 17:16:16.897 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9dtrh68jpil271v2d8eot9c0cee20e0f -- 17:16:16.897 INFO [18602]: QUERY_STRING = /member/page -- 17:16:16.897 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:16:16.939 INFO [18602]: COREGRADE is stopping... -- 17:16:16.939 DEBUG [18602]: Closing database connection -- 17:16:16.939 SQL [18602]: pgsql_close() -- 17:16:17.028 INFO [18602]: COREGRADE is starting... -- 17:16:17.028 INFO [18602]: Version from config: 1.0 -- 17:16:17.028 DEBUG [18602]: Connecting to database... -- 17:16:17.028 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:16:17.028 SQL [18602]: pgsql_db_connect() -- 17:16:17.032 DEBUG [18602]: Database connection successful -- 17:16:17.032 INFO [18602]: _SERVER found -- 17:16:17.032 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 17:16:17.032 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 17:16:17.032 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9dtrh68jpil271v2d8eot9c0cee20e0f -- 17:16:17.032 INFO [18602]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:16:17.032 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:16:17.043 INFO [18602]: COREGRADE is stopping... -- 17:16:17.043 DEBUG [18602]: Closing database connection -- 17:16:17.043 SQL [18602]: pgsql_close() -- 17:16:17.100 INFO [18602]: COREGRADE is starting... -- 17:16:17.100 INFO [18602]: Version from config: 1.0 -- 17:16:17.100 DEBUG [18602]: Connecting to database... -- 17:16:17.100 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:16:17.100 SQL [18602]: pgsql_db_connect() -- 17:16:17.104 DEBUG [18602]: Database connection successful -- 17:16:17.104 INFO [18602]: _SERVER found -- 17:16:17.104 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 17:16:17.104 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 17:16:17.104 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9dtrh68jpil271v2d8eot9c0cee20e0f -- 17:16:17.104 INFO [18602]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:16:17.104 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:16:17.115 INFO [18602]: COREGRADE is stopping... -- 17:16:17.115 DEBUG [18602]: Closing database connection -- 17:16:17.115 SQL [18602]: pgsql_close() -- 17:16:19.600 INFO [18602]: COREGRADE is starting... -- 17:16:19.601 INFO [18602]: Version from config: 1.0 -- 17:16:19.601 DEBUG [18602]: Connecting to database... -- 17:16:19.601 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:16:19.601 SQL [18602]: pgsql_db_connect() -- 17:16:19.605 DEBUG [18602]: Database connection successful -- 17:16:19.605 INFO [18602]: _SERVER found -- 17:16:19.605 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 17:16:19.605 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 17:16:19.605 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9dtrh68jpil271v2d8eot9c0cee20e0f -- 17:16:19.605 INFO [18602]: QUERY_STRING = /member/viewCardAddAction -- 17:16:19.605 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:16:19.636 INFO [18602]: COREGRADE is stopping... -- 17:16:19.636 DEBUG [18602]: Closing database connection -- 17:16:19.636 SQL [18602]: pgsql_close() -- 17:17:25.224 INFO [18603]: COREGRADE is starting... -- 17:17:25.225 INFO [18603]: Version from config: 1.0 -- 17:17:25.225 DEBUG [18603]: Connecting to database... -- 17:17:25.225 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:25.225 SQL [18603]: pgsql_db_connect() -- 17:17:25.229 DEBUG [18603]: Database connection successful -- 17:17:25.229 INFO [18603]: _SERVER found -- 17:17:25.229 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 17:17:25.229 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:25.229 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9dtrh68jpil271v2d8eot9c0cee20e0f -- 17:17:25.229 INFO [18603]: QUERY_STRING = /member/page -- 17:17:25.229 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:17:25.272 INFO [18603]: COREGRADE is stopping... -- 17:17:25.272 DEBUG [18603]: Closing database connection -- 17:17:25.272 SQL [18603]: pgsql_close() -- 17:17:25.377 INFO [18603]: COREGRADE is starting... -- 17:17:25.377 INFO [18603]: Version from config: 1.0 -- 17:17:25.377 DEBUG [18603]: Connecting to database... -- 17:17:25.377 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:25.377 SQL [18603]: pgsql_db_connect() -- 17:17:25.382 DEBUG [18603]: Database connection successful -- 17:17:25.382 INFO [18603]: _SERVER found -- 17:17:25.382 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 17:17:25.382 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:25.382 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9dtrh68jpil271v2d8eot9c0cee20e0f -- 17:17:25.382 INFO [18603]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:17:25.382 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:17:25.393 INFO [18603]: COREGRADE is stopping... -- 17:17:25.393 DEBUG [18603]: Closing database connection -- 17:17:25.393 SQL [18603]: pgsql_close() -- 17:17:25.484 INFO [18603]: COREGRADE is starting... -- 17:17:25.484 INFO [18603]: Version from config: 1.0 -- 17:17:25.484 DEBUG [18603]: Connecting to database... -- 17:17:25.484 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:25.484 SQL [18603]: pgsql_db_connect() -- 17:17:25.488 DEBUG [18603]: Database connection successful -- 17:17:25.488 INFO [18603]: _SERVER found -- 17:17:25.488 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 17:17:25.488 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:25.488 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9dtrh68jpil271v2d8eot9c0cee20e0f -- 17:17:25.488 INFO [18603]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:17:25.488 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:17:25.499 INFO [18603]: COREGRADE is stopping... -- 17:17:25.499 DEBUG [18603]: Closing database connection -- 17:17:25.499 SQL [18603]: pgsql_close() -- 17:17:27.956 INFO [18604]: COREGRADE is starting... -- 17:17:27.956 INFO [18604]: Version from config: 1.0 -- 17:17:27.956 DEBUG [18604]: Connecting to database... -- 17:17:27.956 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:27.956 SQL [18604]: pgsql_db_connect() -- 17:17:27.960 DEBUG [18604]: Database connection successful -- 17:17:27.960 INFO [18604]: _SERVER found -- 17:17:27.960 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 17:17:27.960 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:27.960 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9dtrh68jpil271v2d8eot9c0cee20e0f -- 17:17:27.960 INFO [18604]: QUERY_STRING = /member/viewCardAddAction -- 17:17:27.960 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:17:27.993 INFO [18604]: COREGRADE is stopping... -- 17:17:27.993 DEBUG [18604]: Closing database connection -- 17:17:27.993 SQL [18604]: pgsql_close() -- 17:17:32.935 INFO [18604]: COREGRADE is starting... -- 17:17:32.935 INFO [18604]: Version from config: 1.0 -- 17:17:32.935 DEBUG [18604]: Connecting to database... -- 17:17:32.935 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:32.935 SQL [18604]: pgsql_db_connect() -- 17:17:32.939 DEBUG [18604]: Database connection successful -- 17:17:32.939 INFO [18604]: _SERVER found -- 17:17:32.939 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 17:17:32.939 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:32.939 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9dtrh68jpil271v2d8eot9c0cee20e0f -- 17:17:32.939 INFO [18604]: QUERY_STRING = /member/page -- 17:17:32.939 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:17:32.981 INFO [18604]: COREGRADE is stopping... -- 17:17:32.981 DEBUG [18604]: Closing database connection -- 17:17:32.981 SQL [18604]: pgsql_close() -- 17:17:39.235 INFO [18562]: COREGRADE is starting... -- 17:17:39.235 INFO [18562]: Version from config: 1.0 -- 17:17:39.235 DEBUG [18562]: Connecting to database... -- 17:17:39.235 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:39.235 SQL [18562]: pgsql_db_connect() -- 17:17:39.239 DEBUG [18562]: Database connection successful -- 17:17:39.239 INFO [18562]: _SERVER found -- 17:17:39.239 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 17:17:39.239 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:39.239 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9dtrh68jpil271v2d8eot9c0cee20e0f -- 17:17:39.239 INFO [18562]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 17:17:39.239 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:17:39.251 INFO [18562]: COREGRADE is stopping... -- 17:17:39.251 DEBUG [18562]: Closing database connection -- 17:17:39.251 SQL [18562]: pgsql_close() -- 17:17:39.262 INFO [18664]: COREGRADE is starting... -- 17:17:39.263 INFO [18664]: Version from config: 1.0 -- 17:17:39.263 DEBUG [18664]: Connecting to database... -- 17:17:39.263 DEBUG [18664]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:39.263 SQL [18664]: pgsql_db_connect() -- 17:17:39.266 DEBUG [18664]: Database connection successful -- 17:17:39.266 INFO [18664]: _SERVER found -- 17:17:39.266 INFO [18664]: REMOTE_ADDR = 192.168.1.13 -- 17:17:39.266 INFO [18664]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:39.266 INFO [18664]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9dtrh68jpil271v2d8eot9c0cee20e0f -- 17:17:39.266 INFO [18664]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 17:17:39.266 INFO [18664]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:17:39.278 INFO [18664]: COREGRADE is stopping... -- 17:17:39.278 DEBUG [18664]: Closing database connection -- 17:17:39.278 SQL [18664]: pgsql_close() -- 17:17:58.449 INFO [18559]: COREGRADE is starting... -- 17:17:58.450 INFO [18559]: Version from config: 1.0 -- 17:17:58.450 DEBUG [18559]: Connecting to database... -- 17:17:58.450 DEBUG [18559]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:58.450 SQL [18559]: pgsql_db_connect() -- 17:17:58.454 DEBUG [18559]: Database connection successful -- 17:17:58.454 INFO [18559]: _SERVER found -- 17:17:58.454 INFO [18559]: REMOTE_ADDR = 192.168.1.13 -- 17:17:58.454 INFO [18559]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:58.454 INFO [18559]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9dtrh68jpil271v2d8eot9c0cee20e0f -- 17:17:58.454 INFO [18559]: QUERY_STRING = /member/page -- 17:17:58.454 INFO [18559]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:17:58.498 INFO [18559]: COREGRADE is stopping... -- 17:17:58.498 DEBUG [18559]: Closing database connection -- 17:17:58.498 SQL [18559]: pgsql_close() -- 17:17:58.639 INFO [18559]: COREGRADE is starting... -- 17:17:58.639 INFO [18559]: Version from config: 1.0 -- 17:17:58.639 DEBUG [18559]: Connecting to database... -- 17:17:58.639 DEBUG [18559]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:58.639 SQL [18559]: pgsql_db_connect() -- 17:17:58.643 DEBUG [18559]: Database connection successful -- 17:17:58.643 INFO [18559]: _SERVER found -- 17:17:58.643 INFO [18559]: REMOTE_ADDR = 192.168.1.13 -- 17:17:58.643 INFO [18559]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:58.643 INFO [18559]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9dtrh68jpil271v2d8eot9c0cee20e0f -- 17:17:58.643 INFO [18559]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:17:58.643 INFO [18559]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:17:58.655 INFO [18559]: COREGRADE is stopping... -- 17:17:58.655 DEBUG [18559]: Closing database connection -- 17:17:58.655 SQL [18559]: pgsql_close() -- 17:17:58.865 INFO [18559]: COREGRADE is starting... -- 17:17:58.865 INFO [18559]: Version from config: 1.0 -- 17:17:58.865 DEBUG [18559]: Connecting to database... -- 17:17:58.865 DEBUG [18559]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:58.865 SQL [18559]: pgsql_db_connect() -- 17:17:58.876 INFO [18600]: COREGRADE is starting... -- 17:17:58.876 INFO [18600]: Version from config: 1.0 -- 17:17:58.876 DEBUG [18600]: Connecting to database... -- 17:17:58.876 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:58.876 SQL [18600]: pgsql_db_connect() -- 17:17:58.869 DEBUG [18559]: Database connection successful -- 17:17:58.869 INFO [18559]: _SERVER found -- 17:17:58.869 INFO [18559]: REMOTE_ADDR = 192.168.1.13 -- 17:17:58.869 INFO [18559]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:58.869 INFO [18559]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9dtrh68jpil271v2d8eot9c0cee20e0f -- 17:17:58.869 INFO [18559]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 17:17:58.869 INFO [18559]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:17:58.881 INFO [18559]: COREGRADE is stopping... -- 17:17:58.881 DEBUG [18559]: Closing database connection -- 17:17:58.881 SQL [18559]: pgsql_close() -- 17:17:58.880 DEBUG [18600]: Database connection successful -- 17:17:58.880 INFO [18600]: _SERVER found -- 17:17:58.880 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 17:17:58.880 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:58.880 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9dtrh68jpil271v2d8eot9c0cee20e0f -- 17:17:58.880 INFO [18600]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 17:17:58.880 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:17:58.892 INFO [18600]: COREGRADE is stopping... -- 17:17:58.892 DEBUG [18600]: Closing database connection -- 17:17:58.892 SQL [18600]: pgsql_close() -- 17:17:58.920 INFO [18600]: COREGRADE is starting... -- 17:17:58.920 INFO [18600]: Version from config: 1.0 -- 17:17:58.920 DEBUG [18600]: Connecting to database... -- 17:17:58.920 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:58.920 SQL [18600]: pgsql_db_connect() -- 17:17:58.924 DEBUG [18600]: Database connection successful -- 17:17:58.924 INFO [18600]: _SERVER found -- 17:17:58.924 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 17:17:58.924 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:58.924 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9dtrh68jpil271v2d8eot9c0cee20e0f -- 17:17:58.924 INFO [18600]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:17:58.924 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:17:58.935 INFO [18600]: COREGRADE is stopping... -- 17:17:58.935 DEBUG [18600]: Closing database connection -- 17:17:58.935 SQL [18600]: pgsql_close() -- 17:18:46.692 INFO [18563]: COREGRADE is starting... -- 17:18:46.692 INFO [18563]: Version from config: 1.0 -- 17:18:46.692 DEBUG [18563]: Connecting to database... -- 17:18:46.692 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:18:46.692 SQL [18563]: pgsql_db_connect() -- 17:18:46.696 DEBUG [18563]: Database connection successful -- 17:18:46.696 INFO [18563]: _SERVER found -- 17:18:46.696 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 17:18:46.696 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 17:18:46.696 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9dtrh68jpil271v2d8eot9c0cee20e0f -- 17:18:46.696 INFO [18563]: QUERY_STRING = /member/viewCardAddAction -- 17:18:46.696 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:18:46.728 INFO [18563]: COREGRADE is stopping... -- 17:18:46.728 DEBUG [18563]: Closing database connection -- 17:18:46.728 SQL [18563]: pgsql_close() -- 17:18:53.100 INFO [18561]: COREGRADE is starting... -- 17:18:53.100 INFO [18561]: Version from config: 1.0 -- 17:18:53.100 DEBUG [18561]: Connecting to database... -- 17:18:53.100 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:18:53.100 SQL [18561]: pgsql_db_connect() -- 17:18:53.104 DEBUG [18561]: Database connection successful -- 17:18:53.104 INFO [18561]: _SERVER found -- 17:18:53.104 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 17:18:53.104 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 17:18:53.104 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=9dtrh68jpil271v2d8eot9c0cee20e0f -- 17:18:53.104 INFO [18561]: QUERY_STRING = /member/page -- 17:18:53.104 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:18:53.147 INFO [18561]: COREGRADE is stopping... -- 17:18:53.147 DEBUG [18561]: Closing database connection -- 17:18:53.147 SQL [18561]: pgsql_close() -- 17:18:53.625 INFO [18561]: COREGRADE is starting... -- 17:18:53.625 INFO [18561]: Version from config: 1.0 -- 17:18:53.625 DEBUG [18561]: Connecting to database... -- 17:18:53.625 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:18:53.625 SQL [18561]: pgsql_db_connect() -- 17:18:53.629 DEBUG [18561]: Database connection successful -- 17:18:53.629 INFO [18561]: _SERVER found -- 17:18:53.629 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 17:18:53.629 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 17:18:53.629 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=imsp1em3k0p03o5q2j8tlh5kfsbnfmoq -- 17:18:53.629 INFO [18561]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:18:53.629 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:18:53.640 INFO [18561]: COREGRADE is stopping... -- 17:18:53.640 DEBUG [18561]: Closing database connection -- 17:18:53.640 SQL [18561]: pgsql_close() -- 17:18:53.922 INFO [18562]: COREGRADE is starting... -- 17:18:53.923 INFO [18562]: Version from config: 1.0 -- 17:18:53.923 DEBUG [18562]: Connecting to database... -- 17:18:53.923 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:18:53.923 SQL [18562]: pgsql_db_connect() -- 17:18:53.927 DEBUG [18562]: Database connection successful -- 17:18:53.927 INFO [18562]: _SERVER found -- 17:18:53.927 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 17:18:53.927 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 17:18:53.927 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=imsp1em3k0p03o5q2j8tlh5kfsbnfmoq -- 17:18:53.927 INFO [18562]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 17:18:53.927 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:18:53.939 INFO [18562]: COREGRADE is stopping... -- 17:18:53.939 DEBUG [18562]: Closing database connection -- 17:18:53.939 SQL [18562]: pgsql_close() -- 17:18:54.248 INFO [18560]: COREGRADE is starting... -- 17:18:54.249 INFO [18560]: Version from config: 1.0 -- 17:18:54.249 DEBUG [18560]: Connecting to database... -- 17:18:54.249 DEBUG [18560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:18:54.249 SQL [18560]: pgsql_db_connect() -- 17:18:54.253 DEBUG [18560]: Database connection successful -- 17:18:54.253 INFO [18560]: _SERVER found -- 17:18:54.253 INFO [18560]: REMOTE_ADDR = 192.168.1.13 -- 17:18:54.253 INFO [18560]: SERVER_NAME = oameye.works.coregrade.com -- 17:18:54.253 INFO [18560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=imsp1em3k0p03o5q2j8tlh5kfsbnfmoq -- 17:18:54.253 INFO [18560]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 17:18:54.253 INFO [18560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:18:54.264 INFO [18560]: COREGRADE is stopping... -- 17:18:54.264 DEBUG [18560]: Closing database connection -- 17:18:54.264 SQL [18560]: pgsql_close() -- 17:18:54.293 INFO [18562]: COREGRADE is starting... -- 17:18:54.293 INFO [18562]: Version from config: 1.0 -- 17:18:54.293 DEBUG [18562]: Connecting to database... -- 17:18:54.293 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:18:54.293 SQL [18562]: pgsql_db_connect() -- 17:18:54.297 DEBUG [18562]: Database connection successful -- 17:18:54.297 INFO [18562]: _SERVER found -- 17:18:54.297 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 17:18:54.297 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 17:18:54.297 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=imsp1em3k0p03o5q2j8tlh5kfsbnfmoq -- 17:18:54.297 INFO [18562]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:18:54.297 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:18:54.310 INFO [18562]: COREGRADE is stopping... -- 17:18:54.310 DEBUG [18562]: Closing database connection -- 17:18:54.310 SQL [18562]: pgsql_close() -- 17:18:57.191 INFO [18664]: COREGRADE is starting... -- 17:18:57.191 INFO [18664]: Version from config: 1.0 -- 17:18:57.191 DEBUG [18664]: Connecting to database... -- 17:18:57.191 DEBUG [18664]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:18:57.191 SQL [18664]: pgsql_db_connect() -- 17:18:57.195 DEBUG [18664]: Database connection successful -- 17:18:57.195 INFO [18664]: _SERVER found -- 17:18:57.195 INFO [18664]: REMOTE_ADDR = 192.168.1.13 -- 17:18:57.195 INFO [18664]: SERVER_NAME = oameye.works.coregrade.com -- 17:18:57.195 INFO [18664]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=imsp1em3k0p03o5q2j8tlh5kfsbnfmoq -- 17:18:57.195 INFO [18664]: QUERY_STRING = /member/viewCardAddAction -- 17:18:57.195 INFO [18664]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:18:57.227 INFO [18664]: COREGRADE is stopping... -- 17:18:57.227 DEBUG [18664]: Closing database connection -- 17:18:57.227 SQL [18664]: pgsql_close() -- 17:20:22.020 INFO [18600]: COREGRADE is starting... -- 17:20:22.020 INFO [18600]: Version from config: 1.0 -- 17:20:22.020 DEBUG [18600]: Connecting to database... -- 17:20:22.020 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:22.020 SQL [18600]: pgsql_db_connect() -- 17:20:22.024 DEBUG [18600]: Database connection successful -- 17:20:22.024 INFO [18600]: _SERVER found -- 17:20:22.024 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 17:20:22.024 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:22.024 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=imsp1em3k0p03o5q2j8tlh5kfsbnfmoq -- 17:20:22.024 INFO [18600]: QUERY_STRING = /member/page -- 17:20:22.024 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:20:22.067 INFO [18600]: COREGRADE is stopping... -- 17:20:22.067 DEBUG [18600]: Closing database connection -- 17:20:22.067 SQL [18600]: pgsql_close() -- 17:20:22.281 INFO [18897]: COREGRADE is starting... -- 17:20:22.282 INFO [18897]: Version from config: 1.0 -- 17:20:22.282 DEBUG [18897]: Connecting to database... -- 17:20:22.282 DEBUG [18897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:22.282 SQL [18897]: pgsql_db_connect() -- 17:20:22.286 DEBUG [18897]: Database connection successful -- 17:20:22.286 INFO [18897]: _SERVER found -- 17:20:22.286 INFO [18897]: REMOTE_ADDR = 192.168.1.13 -- 17:20:22.286 INFO [18897]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:22.286 INFO [18897]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=imsp1em3k0p03o5q2j8tlh5kfsbnfmoq -- 17:20:22.286 INFO [18897]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:20:22.286 INFO [18897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:20:22.300 INFO [18897]: COREGRADE is stopping... -- 17:20:22.300 DEBUG [18897]: Closing database connection -- 17:20:22.300 SQL [18897]: pgsql_close() -- 17:20:22.422 INFO [18897]: COREGRADE is starting... -- 17:20:22.423 INFO [18897]: Version from config: 1.0 -- 17:20:22.423 DEBUG [18897]: Connecting to database... -- 17:20:22.423 DEBUG [18897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:22.423 SQL [18897]: pgsql_db_connect() -- 17:20:22.427 DEBUG [18897]: Database connection successful -- 17:20:22.427 INFO [18897]: _SERVER found -- 17:20:22.427 INFO [18897]: REMOTE_ADDR = 192.168.1.13 -- 17:20:22.427 INFO [18897]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:22.427 INFO [18897]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=imsp1em3k0p03o5q2j8tlh5kfsbnfmoq -- 17:20:22.427 INFO [18897]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 17:20:22.427 INFO [18897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:20:22.440 INFO [18897]: COREGRADE is stopping... -- 17:20:22.440 DEBUG [18897]: Closing database connection -- 17:20:22.441 SQL [18897]: pgsql_close() -- 17:20:22.476 INFO [18897]: COREGRADE is starting... -- 17:20:22.477 INFO [18897]: Version from config: 1.0 -- 17:20:22.477 DEBUG [18897]: Connecting to database... -- 17:20:22.477 DEBUG [18897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:22.477 SQL [18897]: pgsql_db_connect() -- 17:20:22.482 INFO [18561]: COREGRADE is starting... -- 17:20:22.483 INFO [18561]: Version from config: 1.0 -- 17:20:22.483 DEBUG [18561]: Connecting to database... -- 17:20:22.483 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:22.483 SQL [18561]: pgsql_db_connect() -- 17:20:22.481 DEBUG [18897]: Database connection successful -- 17:20:22.481 INFO [18897]: _SERVER found -- 17:20:22.481 INFO [18897]: REMOTE_ADDR = 192.168.1.13 -- 17:20:22.481 INFO [18897]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:22.481 INFO [18897]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=imsp1em3k0p03o5q2j8tlh5kfsbnfmoq -- 17:20:22.481 INFO [18897]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 17:20:22.481 INFO [18897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:20:22.493 INFO [18897]: COREGRADE is stopping... -- 17:20:22.493 DEBUG [18897]: Closing database connection -- 17:20:22.493 SQL [18897]: pgsql_close() -- 17:20:22.486 DEBUG [18561]: Database connection successful -- 17:20:22.486 INFO [18561]: _SERVER found -- 17:20:22.486 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 17:20:22.486 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:22.486 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=imsp1em3k0p03o5q2j8tlh5kfsbnfmoq -- 17:20:22.486 INFO [18561]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:20:22.486 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:20:22.498 INFO [18561]: COREGRADE is stopping... -- 17:20:22.498 DEBUG [18561]: Closing database connection -- 17:20:22.498 SQL [18561]: pgsql_close() -- 17:20:24.928 INFO [18603]: COREGRADE is starting... -- 17:20:24.928 INFO [18603]: Version from config: 1.0 -- 17:20:24.928 DEBUG [18603]: Connecting to database... -- 17:20:24.928 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:24.928 SQL [18603]: pgsql_db_connect() -- 17:20:24.932 DEBUG [18603]: Database connection successful -- 17:20:24.932 INFO [18603]: _SERVER found -- 17:20:24.932 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 17:20:24.932 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:24.932 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=imsp1em3k0p03o5q2j8tlh5kfsbnfmoq -- 17:20:24.932 INFO [18603]: QUERY_STRING = /member/viewCardAddAction -- 17:20:24.932 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:20:24.965 INFO [18603]: COREGRADE is stopping... -- 17:20:24.965 DEBUG [18603]: Closing database connection -- 17:20:24.965 SQL [18603]: pgsql_close() -- 17:20:29.536 INFO [18603]: COREGRADE is starting... -- 17:20:29.536 INFO [18603]: Version from config: 1.0 -- 17:20:29.536 DEBUG [18603]: Connecting to database... -- 17:20:29.536 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:29.536 SQL [18603]: pgsql_db_connect() -- 17:20:29.540 DEBUG [18603]: Database connection successful -- 17:20:29.540 INFO [18603]: _SERVER found -- 17:20:29.540 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 17:20:29.540 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:29.540 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=imsp1em3k0p03o5q2j8tlh5kfsbnfmoq -- 17:20:29.540 INFO [18603]: QUERY_STRING = /member/page -- 17:20:29.540 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:20:29.582 INFO [18603]: COREGRADE is stopping... -- 17:20:29.582 DEBUG [18603]: Closing database connection -- 17:20:29.582 SQL [18603]: pgsql_close() -- 17:20:29.729 INFO [18603]: COREGRADE is starting... -- 17:20:29.730 INFO [18603]: Version from config: 1.0 -- 17:20:29.730 DEBUG [18603]: Connecting to database... -- 17:20:29.730 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:29.730 SQL [18603]: pgsql_db_connect() -- 17:20:29.734 DEBUG [18603]: Database connection successful -- 17:20:29.734 INFO [18603]: _SERVER found -- 17:20:29.734 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 17:20:29.734 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:29.734 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=imsp1em3k0p03o5q2j8tlh5kfsbnfmoq -- 17:20:29.734 INFO [18603]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:20:29.734 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:20:29.745 INFO [18603]: COREGRADE is stopping... -- 17:20:29.745 DEBUG [18603]: Closing database connection -- 17:20:29.745 SQL [18603]: pgsql_close() -- 17:20:29.918 INFO [18603]: COREGRADE is starting... -- 17:20:29.918 INFO [18603]: Version from config: 1.0 -- 17:20:29.918 DEBUG [18603]: Connecting to database... -- 17:20:29.919 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:29.919 SQL [18603]: pgsql_db_connect() -- 17:20:29.925 INFO [18562]: COREGRADE is starting... -- 17:20:29.926 INFO [18562]: Version from config: 1.0 -- 17:20:29.926 DEBUG [18562]: Connecting to database... -- 17:20:29.926 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:29.926 SQL [18562]: pgsql_db_connect() -- 17:20:29.922 DEBUG [18603]: Database connection successful -- 17:20:29.922 INFO [18603]: _SERVER found -- 17:20:29.922 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 17:20:29.922 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:29.922 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=imsp1em3k0p03o5q2j8tlh5kfsbnfmoq -- 17:20:29.922 INFO [18603]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 17:20:29.922 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:20:29.934 INFO [18603]: COREGRADE is stopping... -- 17:20:29.934 DEBUG [18603]: Closing database connection -- 17:20:29.934 SQL [18603]: pgsql_close() -- 17:20:29.929 DEBUG [18562]: Database connection successful -- 17:20:29.929 INFO [18562]: _SERVER found -- 17:20:29.929 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 17:20:29.929 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:29.929 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=imsp1em3k0p03o5q2j8tlh5kfsbnfmoq -- 17:20:29.929 INFO [18562]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 17:20:29.929 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:20:29.941 INFO [18562]: COREGRADE is stopping... -- 17:20:29.941 DEBUG [18562]: Closing database connection -- 17:20:29.941 SQL [18562]: pgsql_close() -- 17:20:29.968 INFO [18562]: COREGRADE is starting... -- 17:20:29.968 INFO [18562]: Version from config: 1.0 -- 17:20:29.968 DEBUG [18562]: Connecting to database... -- 17:20:29.968 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:29.968 SQL [18562]: pgsql_db_connect() -- 17:20:29.972 DEBUG [18562]: Database connection successful -- 17:20:29.972 INFO [18562]: _SERVER found -- 17:20:29.972 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 17:20:29.972 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:29.972 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=imsp1em3k0p03o5q2j8tlh5kfsbnfmoq -- 17:20:29.972 INFO [18562]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:20:29.972 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:20:29.983 INFO [18562]: COREGRADE is stopping... -- 17:20:29.983 DEBUG [18562]: Closing database connection -- 17:20:29.983 SQL [18562]: pgsql_close() -- 17:20:33.569 INFO [18562]: COREGRADE is starting... -- 17:20:33.569 INFO [18562]: Version from config: 1.0 -- 17:20:33.569 DEBUG [18562]: Connecting to database... -- 17:20:33.569 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:33.569 SQL [18562]: pgsql_db_connect() -- 17:20:33.573 DEBUG [18562]: Database connection successful -- 17:20:33.573 INFO [18562]: _SERVER found -- 17:20:33.573 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 17:20:33.573 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:33.573 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=imsp1em3k0p03o5q2j8tlh5kfsbnfmoq -- 17:20:33.573 INFO [18562]: QUERY_STRING = /member/viewCardAddAction -- 17:20:33.573 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:20:33.606 INFO [18562]: COREGRADE is stopping... -- 17:20:33.606 DEBUG [18562]: Closing database connection -- 17:20:33.606 SQL [18562]: pgsql_close() -- 17:20:35.717 INFO [18562]: COREGRADE is starting... -- 17:20:35.718 INFO [18562]: Version from config: 1.0 -- 17:20:35.718 DEBUG [18562]: Connecting to database... -- 17:20:35.718 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:35.718 SQL [18562]: pgsql_db_connect() -- 17:20:35.722 DEBUG [18562]: Database connection successful -- 17:20:35.722 INFO [18562]: _SERVER found -- 17:20:35.722 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 17:20:35.722 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:35.722 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=imsp1em3k0p03o5q2j8tlh5kfsbnfmoq -- 17:20:35.722 INFO [18562]: QUERY_STRING = /member/viewCardAddAction -- 17:20:35.722 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:20:35.757 INFO [18562]: COREGRADE is stopping... -- 17:20:35.757 DEBUG [18562]: Closing database connection -- 17:20:35.757 SQL [18562]: pgsql_close() -- 17:26:26.227 INFO [18604]: COREGRADE is starting... -- 17:26:26.227 INFO [18604]: Version from config: 1.0 -- 17:26:26.227 DEBUG [18604]: Connecting to database... -- 17:26:26.227 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:26:26.227 SQL [18604]: pgsql_db_connect() -- 17:26:26.231 DEBUG [18604]: Database connection successful -- 17:26:26.231 INFO [18604]: _SERVER found -- 17:26:26.231 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 17:26:26.231 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 17:26:26.231 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=imsp1em3k0p03o5q2j8tlh5kfsbnfmoq -- 17:26:26.231 INFO [18604]: QUERY_STRING = /member/viewCardAddAction -- 17:26:26.231 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:26:26.264 INFO [18604]: COREGRADE is stopping... -- 17:26:26.264 DEBUG [18604]: Closing database connection -- 17:26:26.264 SQL [18604]: pgsql_close() -- 17:38:38.154 INFO [18602]: COREGRADE is starting... -- 17:38:38.154 INFO [18602]: Version from config: 1.0 -- 17:38:38.154 DEBUG [18602]: Connecting to database... -- 17:38:38.154 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:38.154 SQL [18602]: pgsql_db_connect() -- 17:38:38.158 DEBUG [18602]: Database connection successful -- 17:38:38.158 INFO [18602]: _SERVER found -- 17:38:38.158 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 17:38:38.158 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 17:38:38.158 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=imsp1em3k0p03o5q2j8tlh5kfsbnfmoq -- 17:38:38.158 INFO [18602]: QUERY_STRING = /member/viewCardAddAction -- 17:38:38.158 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:38:38.193 INFO [18602]: COREGRADE is stopping... -- 17:38:38.193 DEBUG [18602]: Closing database connection -- 17:38:38.193 SQL [18602]: pgsql_close() -- 17:38:41.941 INFO [18602]: COREGRADE is starting... -- 17:38:41.942 INFO [18602]: Version from config: 1.0 -- 17:38:41.942 DEBUG [18602]: Connecting to database... -- 17:38:41.942 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:41.942 SQL [18602]: pgsql_db_connect() -- 17:38:41.946 DEBUG [18602]: Database connection successful -- 17:38:41.946 INFO [18602]: _SERVER found -- 17:38:41.946 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 17:38:41.946 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 17:38:41.946 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=imsp1em3k0p03o5q2j8tlh5kfsbnfmoq -- 17:38:41.946 INFO [18602]: QUERY_STRING = /member/viewCardAddAction -- 17:38:41.946 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:38:41.977 INFO [18602]: COREGRADE is stopping... -- 17:38:41.977 DEBUG [18602]: Closing database connection -- 17:38:41.977 SQL [18602]: pgsql_close() -- 17:43:33.745 INFO [18560]: COREGRADE is starting... -- 17:43:33.746 INFO [18560]: Version from config: 1.0 -- 17:43:33.746 DEBUG [18560]: Connecting to database... -- 17:43:33.746 DEBUG [18560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:43:33.746 SQL [18560]: pgsql_db_connect() -- 17:43:33.750 DEBUG [18560]: Database connection successful -- 17:43:33.750 INFO [18560]: _SERVER found -- 17:43:33.750 INFO [18560]: REMOTE_ADDR = 192.168.1.13 -- 17:43:33.750 INFO [18560]: SERVER_NAME = oameye.works.coregrade.com -- 17:43:33.750 INFO [18560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=imsp1em3k0p03o5q2j8tlh5kfsbnfmoq -- 17:43:33.750 INFO [18560]: QUERY_STRING = /member/page -- 17:43:33.750 INFO [18560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:43:33.796 INFO [18560]: COREGRADE is stopping... -- 17:43:33.796 DEBUG [18560]: Closing database connection -- 17:43:33.796 SQL [18560]: pgsql_close() -- 17:43:33.953 INFO [18560]: COREGRADE is starting... -- 17:43:33.953 INFO [18560]: Version from config: 1.0 -- 17:43:33.953 DEBUG [18560]: Connecting to database... -- 17:43:33.953 DEBUG [18560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:43:33.953 SQL [18560]: pgsql_db_connect() -- 17:43:33.957 DEBUG [18560]: Database connection successful -- 17:43:33.957 INFO [18560]: _SERVER found -- 17:43:33.957 INFO [18560]: REMOTE_ADDR = 192.168.1.13 -- 17:43:33.957 INFO [18560]: SERVER_NAME = oameye.works.coregrade.com -- 17:43:33.957 INFO [18560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2uvdst48pf4emotui26dadbsv9ab708g -- 17:43:33.957 INFO [18560]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:43:33.957 INFO [18560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:43:33.968 INFO [18560]: COREGRADE is stopping... -- 17:43:33.968 DEBUG [18560]: Closing database connection -- 17:43:33.968 SQL [18560]: pgsql_close() -- 17:43:34.143 INFO [18560]: COREGRADE is starting... -- 17:43:34.143 INFO [18560]: Version from config: 1.0 -- 17:43:34.143 DEBUG [18560]: Connecting to database... -- 17:43:34.143 DEBUG [18560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:43:34.143 SQL [18560]: pgsql_db_connect() -- 17:43:34.154 INFO [18664]: COREGRADE is starting... -- 17:43:34.154 INFO [18664]: Version from config: 1.0 -- 17:43:34.154 DEBUG [18664]: Connecting to database... -- 17:43:34.154 DEBUG [18664]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:43:34.154 SQL [18664]: pgsql_db_connect() -- 17:43:34.147 DEBUG [18560]: Database connection successful -- 17:43:34.147 INFO [18560]: _SERVER found -- 17:43:34.147 INFO [18560]: REMOTE_ADDR = 192.168.1.13 -- 17:43:34.147 INFO [18560]: SERVER_NAME = oameye.works.coregrade.com -- 17:43:34.147 INFO [18560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2uvdst48pf4emotui26dadbsv9ab708g -- 17:43:34.147 INFO [18560]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 17:43:34.147 INFO [18560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:43:34.158 INFO [18560]: COREGRADE is stopping... -- 17:43:34.158 DEBUG [18560]: Closing database connection -- 17:43:34.158 SQL [18560]: pgsql_close() -- 17:43:34.158 DEBUG [18664]: Database connection successful -- 17:43:34.158 INFO [18664]: _SERVER found -- 17:43:34.158 INFO [18664]: REMOTE_ADDR = 192.168.1.13 -- 17:43:34.158 INFO [18664]: SERVER_NAME = oameye.works.coregrade.com -- 17:43:34.158 INFO [18664]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2uvdst48pf4emotui26dadbsv9ab708g -- 17:43:34.158 INFO [18664]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 17:43:34.158 INFO [18664]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:43:34.170 INFO [18664]: COREGRADE is stopping... -- 17:43:34.170 DEBUG [18664]: Closing database connection -- 17:43:34.170 SQL [18664]: pgsql_close() -- 17:43:34.196 INFO [18664]: COREGRADE is starting... -- 17:43:34.197 INFO [18664]: Version from config: 1.0 -- 17:43:34.197 DEBUG [18664]: Connecting to database... -- 17:43:34.197 DEBUG [18664]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:43:34.197 SQL [18664]: pgsql_db_connect() -- 17:43:34.200 DEBUG [18664]: Database connection successful -- 17:43:34.200 INFO [18664]: _SERVER found -- 17:43:34.200 INFO [18664]: REMOTE_ADDR = 192.168.1.13 -- 17:43:34.200 INFO [18664]: SERVER_NAME = oameye.works.coregrade.com -- 17:43:34.200 INFO [18664]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2uvdst48pf4emotui26dadbsv9ab708g -- 17:43:34.200 INFO [18664]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:43:34.200 INFO [18664]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:43:34.212 INFO [18664]: COREGRADE is stopping... -- 17:43:34.212 DEBUG [18664]: Closing database connection -- 17:43:34.212 SQL [18664]: pgsql_close() -- 17:43:36.184 INFO [18600]: COREGRADE is starting... -- 17:43:36.184 INFO [18600]: Version from config: 1.0 -- 17:43:36.184 DEBUG [18600]: Connecting to database... -- 17:43:36.184 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:43:36.184 SQL [18600]: pgsql_db_connect() -- 17:43:36.188 DEBUG [18600]: Database connection successful -- 17:43:36.188 INFO [18600]: _SERVER found -- 17:43:36.188 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 17:43:36.188 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 17:43:36.188 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2uvdst48pf4emotui26dadbsv9ab708g -- 17:43:36.188 INFO [18600]: QUERY_STRING = /member/viewCardAddAction -- 17:43:36.188 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:43:36.222 INFO [18600]: COREGRADE is stopping... -- 17:43:36.222 DEBUG [18600]: Closing database connection -- 17:43:36.222 SQL [18600]: pgsql_close() -- 17:44:58.327 INFO [18563]: COREGRADE is starting... -- 17:44:58.327 INFO [18563]: Version from config: 1.0 -- 17:44:58.327 DEBUG [18563]: Connecting to database... -- 17:44:58.327 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:44:58.327 SQL [18563]: pgsql_db_connect() -- 17:44:58.331 DEBUG [18563]: Database connection successful -- 17:44:58.331 INFO [18563]: _SERVER found -- 17:44:58.331 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 17:44:58.331 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 17:44:58.331 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2uvdst48pf4emotui26dadbsv9ab708g -- 17:44:58.331 INFO [18563]: QUERY_STRING = /member/viewCardAddAction -- 17:44:58.331 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:44:58.364 INFO [18563]: COREGRADE is stopping... -- 17:44:58.365 DEBUG [18563]: Closing database connection -- 17:44:58.365 SQL [18563]: pgsql_close() -- 17:45:00.393 INFO [18563]: COREGRADE is starting... -- 17:45:00.393 INFO [18563]: Version from config: 1.0 -- 17:45:00.393 DEBUG [18563]: Connecting to database... -- 17:45:00.393 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:00.393 SQL [18563]: pgsql_db_connect() -- 17:45:00.397 DEBUG [18563]: Database connection successful -- 17:45:00.397 INFO [18563]: _SERVER found -- 17:45:00.397 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 17:45:00.397 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 17:45:00.397 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2uvdst48pf4emotui26dadbsv9ab708g -- 17:45:00.397 INFO [18563]: QUERY_STRING = /member/viewCardAddAction -- 17:45:00.397 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:00.428 INFO [18563]: COREGRADE is stopping... -- 17:45:00.428 DEBUG [18563]: Closing database connection -- 17:45:00.428 SQL [18563]: pgsql_close() -- 17:45:42.246 INFO [18897]: COREGRADE is starting... -- 17:45:42.247 INFO [18897]: Version from config: 1.0 -- 17:45:42.247 DEBUG [18897]: Connecting to database... -- 17:45:42.247 DEBUG [18897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:42.247 SQL [18897]: pgsql_db_connect() -- 17:45:42.251 DEBUG [18897]: Database connection successful -- 17:45:42.251 INFO [18897]: _SERVER found -- 17:45:42.251 INFO [18897]: REMOTE_ADDR = 192.168.1.13 -- 17:45:42.251 INFO [18897]: SERVER_NAME = oameye.works.coregrade.com -- 17:45:42.251 INFO [18897]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2uvdst48pf4emotui26dadbsv9ab708g -- 17:45:42.251 INFO [18897]: QUERY_STRING = /member/page -- 17:45:42.251 INFO [18897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:42.298 INFO [18897]: COREGRADE is stopping... -- 17:45:42.298 DEBUG [18897]: Closing database connection -- 17:45:42.298 SQL [18897]: pgsql_close() -- 17:45:42.393 INFO [18897]: COREGRADE is starting... -- 17:45:42.393 INFO [18897]: Version from config: 1.0 -- 17:45:42.393 DEBUG [18897]: Connecting to database... -- 17:45:42.393 DEBUG [18897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:42.393 SQL [18897]: pgsql_db_connect() -- 17:45:42.397 DEBUG [18897]: Database connection successful -- 17:45:42.397 INFO [18897]: _SERVER found -- 17:45:42.397 INFO [18897]: REMOTE_ADDR = 192.168.1.13 -- 17:45:42.397 INFO [18897]: SERVER_NAME = oameye.works.coregrade.com -- 17:45:42.397 INFO [18897]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2uvdst48pf4emotui26dadbsv9ab708g -- 17:45:42.397 INFO [18897]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:45:42.397 INFO [18897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:42.408 INFO [18897]: COREGRADE is stopping... -- 17:45:42.409 DEBUG [18897]: Closing database connection -- 17:45:42.409 SQL [18897]: pgsql_close() -- 17:45:42.546 INFO [18897]: COREGRADE is starting... -- 17:45:42.546 INFO [18897]: Version from config: 1.0 -- 17:45:42.546 DEBUG [18897]: Connecting to database... -- 17:45:42.546 DEBUG [18897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:42.546 SQL [18897]: pgsql_db_connect() -- 17:45:42.550 DEBUG [18897]: Database connection successful -- 17:45:42.550 INFO [18897]: _SERVER found -- 17:45:42.550 INFO [18897]: REMOTE_ADDR = 192.168.1.13 -- 17:45:42.550 INFO [18897]: SERVER_NAME = oameye.works.coregrade.com -- 17:45:42.550 INFO [18897]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2uvdst48pf4emotui26dadbsv9ab708g -- 17:45:42.550 INFO [18897]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:45:42.550 INFO [18897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:42.561 INFO [18897]: COREGRADE is stopping... -- 17:45:42.561 DEBUG [18897]: Closing database connection -- 17:45:42.561 SQL [18897]: pgsql_close() -- 17:45:46.282 INFO [18603]: COREGRADE is starting... -- 17:45:46.282 INFO [18603]: Version from config: 1.0 -- 17:45:46.283 DEBUG [18603]: Connecting to database... -- 17:45:46.283 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:46.283 SQL [18603]: pgsql_db_connect() -- 17:45:46.287 DEBUG [18603]: Database connection successful -- 17:45:46.287 INFO [18603]: _SERVER found -- 17:45:46.287 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 17:45:46.287 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 17:45:46.287 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2uvdst48pf4emotui26dadbsv9ab708g -- 17:45:46.287 INFO [18603]: QUERY_STRING = /member/viewCardAddAction -- 17:45:46.287 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:46.319 INFO [18603]: COREGRADE is stopping... -- 17:45:46.319 DEBUG [18603]: Closing database connection -- 17:45:46.319 SQL [18603]: pgsql_close() -- 17:46:36.020 INFO [18562]: COREGRADE is starting... -- 17:46:36.020 INFO [18562]: Version from config: 1.0 -- 17:46:36.020 DEBUG [18562]: Connecting to database... -- 17:46:36.020 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:36.020 SQL [18562]: pgsql_db_connect() -- 17:46:36.024 DEBUG [18562]: Database connection successful -- 17:46:36.024 INFO [18562]: _SERVER found -- 17:46:36.024 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 17:46:36.024 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 17:46:36.024 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2uvdst48pf4emotui26dadbsv9ab708g -- 17:46:36.024 INFO [18562]: QUERY_STRING = /member/viewCardAddAction -- 17:46:36.024 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:36.057 INFO [18562]: COREGRADE is stopping... -- 17:46:36.057 DEBUG [18562]: Closing database connection -- 17:46:36.057 SQL [18562]: pgsql_close() -- 17:46:36.692 INFO [18562]: COREGRADE is starting... -- 17:46:36.692 INFO [18562]: Version from config: 1.0 -- 17:46:36.692 DEBUG [18562]: Connecting to database... -- 17:46:36.692 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:36.692 SQL [18562]: pgsql_db_connect() -- 17:46:36.696 DEBUG [18562]: Database connection successful -- 17:46:36.696 INFO [18562]: _SERVER found -- 17:46:36.696 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 17:46:36.696 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 17:46:36.696 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2uvdst48pf4emotui26dadbsv9ab708g -- 17:46:36.696 INFO [18562]: QUERY_STRING = /member/viewCardAddAction -- 17:46:36.696 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:36.727 INFO [18562]: COREGRADE is stopping... -- 17:46:36.727 DEBUG [18562]: Closing database connection -- 17:46:36.727 SQL [18562]: pgsql_close() -- 17:47:31.603 INFO [18604]: COREGRADE is starting... -- 17:47:31.603 INFO [18604]: Version from config: 1.0 -- 17:47:31.603 DEBUG [18604]: Connecting to database... -- 17:47:31.603 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:31.603 SQL [18604]: pgsql_db_connect() -- 17:47:31.607 DEBUG [18604]: Database connection successful -- 17:47:31.607 INFO [18604]: _SERVER found -- 17:47:31.607 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 17:47:31.607 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 17:47:31.607 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2uvdst48pf4emotui26dadbsv9ab708g -- 17:47:31.607 INFO [18604]: QUERY_STRING = /member/page -- 17:47:31.607 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:47:31.651 INFO [18604]: COREGRADE is stopping... -- 17:47:31.651 DEBUG [18604]: Closing database connection -- 17:47:31.651 SQL [18604]: pgsql_close() -- 17:47:31.753 INFO [18604]: COREGRADE is starting... -- 17:47:31.753 INFO [18604]: Version from config: 1.0 -- 17:47:31.753 DEBUG [18604]: Connecting to database... -- 17:47:31.753 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:31.753 SQL [18604]: pgsql_db_connect() -- 17:47:31.758 DEBUG [18604]: Database connection successful -- 17:47:31.758 INFO [18604]: _SERVER found -- 17:47:31.758 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 17:47:31.758 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 17:47:31.758 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2uvdst48pf4emotui26dadbsv9ab708g -- 17:47:31.758 INFO [18604]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:47:31.758 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:47:31.769 INFO [18604]: COREGRADE is stopping... -- 17:47:31.769 DEBUG [18604]: Closing database connection -- 17:47:31.769 SQL [18604]: pgsql_close() -- 17:47:31.863 INFO [18604]: COREGRADE is starting... -- 17:47:31.863 INFO [18604]: Version from config: 1.0 -- 17:47:31.863 DEBUG [18604]: Connecting to database... -- 17:47:31.863 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:31.863 SQL [18604]: pgsql_db_connect() -- 17:47:31.868 DEBUG [18604]: Database connection successful -- 17:47:31.868 INFO [18604]: _SERVER found -- 17:47:31.868 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 17:47:31.868 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 17:47:31.868 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2uvdst48pf4emotui26dadbsv9ab708g -- 17:47:31.868 INFO [18604]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:47:31.868 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:47:31.879 INFO [18604]: COREGRADE is stopping... -- 17:47:31.879 DEBUG [18604]: Closing database connection -- 17:47:31.879 SQL [18604]: pgsql_close() -- 17:47:34.412 INFO [18664]: COREGRADE is starting... -- 17:47:34.412 INFO [18664]: Version from config: 1.0 -- 17:47:34.412 DEBUG [18664]: Connecting to database... -- 17:47:34.412 DEBUG [18664]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:34.412 SQL [18664]: pgsql_db_connect() -- 17:47:34.416 DEBUG [18664]: Database connection successful -- 17:47:34.416 INFO [18664]: _SERVER found -- 17:47:34.416 INFO [18664]: REMOTE_ADDR = 192.168.1.13 -- 17:47:34.416 INFO [18664]: SERVER_NAME = oameye.works.coregrade.com -- 17:47:34.416 INFO [18664]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2uvdst48pf4emotui26dadbsv9ab708g -- 17:47:34.416 INFO [18664]: QUERY_STRING = /member/viewCardAddAction -- 17:47:34.416 INFO [18664]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:47:34.449 INFO [18664]: COREGRADE is stopping... -- 17:47:34.449 DEBUG [18664]: Closing database connection -- 17:47:34.449 SQL [18664]: pgsql_close() -- 17:50:01.819 INFO [18560]: COREGRADE is starting... -- 17:50:01.820 INFO [18560]: Version from config: 1.0 -- 17:50:01.820 DEBUG [18560]: Connecting to database... -- 17:50:01.820 DEBUG [18560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:50:01.820 SQL [18560]: pgsql_db_connect() -- 17:50:01.824 DEBUG [18560]: Database connection successful -- 17:50:01.824 INFO [18560]: _SERVER found -- 17:50:01.824 INFO [18560]: REMOTE_ADDR = 192.168.1.13 -- 17:50:01.824 INFO [18560]: SERVER_NAME = oameye.works.coregrade.com -- 17:50:01.824 INFO [18560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2uvdst48pf4emotui26dadbsv9ab708g -- 17:50:01.824 INFO [18560]: QUERY_STRING = /member/page -- 17:50:01.824 INFO [18560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:50:01.868 INFO [18560]: COREGRADE is stopping... -- 17:50:01.868 DEBUG [18560]: Closing database connection -- 17:50:01.868 SQL [18560]: pgsql_close() -- 17:50:01.973 INFO [18560]: COREGRADE is starting... -- 17:50:01.974 INFO [18560]: Version from config: 1.0 -- 17:50:01.974 DEBUG [18560]: Connecting to database... -- 17:50:01.974 DEBUG [18560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:50:01.974 SQL [18560]: pgsql_db_connect() -- 17:50:01.978 DEBUG [18560]: Database connection successful -- 17:50:01.978 INFO [18560]: _SERVER found -- 17:50:01.978 INFO [18560]: REMOTE_ADDR = 192.168.1.13 -- 17:50:01.978 INFO [18560]: SERVER_NAME = oameye.works.coregrade.com -- 17:50:01.978 INFO [18560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=0qglqij16ef8dsvao5out5or1qcdottf -- 17:50:01.978 INFO [18560]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:50:01.978 INFO [18560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:50:01.989 INFO [18560]: COREGRADE is stopping... -- 17:50:01.989 DEBUG [18560]: Closing database connection -- 17:50:01.989 SQL [18560]: pgsql_close() -- 17:50:02.064 INFO [18560]: COREGRADE is starting... -- 17:50:02.065 INFO [18560]: Version from config: 1.0 -- 17:50:02.065 DEBUG [18560]: Connecting to database... -- 17:50:02.065 DEBUG [18560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:50:02.065 SQL [18560]: pgsql_db_connect() -- 17:50:02.069 DEBUG [18560]: Database connection successful -- 17:50:02.069 INFO [18560]: _SERVER found -- 17:50:02.069 INFO [18560]: REMOTE_ADDR = 192.168.1.13 -- 17:50:02.069 INFO [18560]: SERVER_NAME = oameye.works.coregrade.com -- 17:50:02.069 INFO [18560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=0qglqij16ef8dsvao5out5or1qcdottf -- 17:50:02.069 INFO [18560]: QUERY_STRING = /app-assets/data/locales/en.json -- 17:50:02.069 INFO [18560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:50:02.080 INFO [18560]: COREGRADE is stopping... -- 17:50:02.080 DEBUG [18560]: Closing database connection -- 17:50:02.080 SQL [18560]: pgsql_close() -- 17:50:04.594 INFO [18563]: COREGRADE is starting... -- 17:50:04.594 INFO [18563]: Version from config: 1.0 -- 17:50:04.594 DEBUG [18563]: Connecting to database... -- 17:50:04.594 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:50:04.594 SQL [18563]: pgsql_db_connect() -- 17:50:04.598 DEBUG [18563]: Database connection successful -- 17:50:04.598 INFO [18563]: _SERVER found -- 17:50:04.598 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 17:50:04.598 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 17:50:04.598 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=0qglqij16ef8dsvao5out5or1qcdottf -- 17:50:04.598 INFO [18563]: QUERY_STRING = /member/viewCardAddAction -- 17:50:04.598 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:50:04.631 INFO [18563]: COREGRADE is stopping... -- 17:50:04.631 DEBUG [18563]: Closing database connection -- 17:50:04.631 SQL [18563]: pgsql_close() -- 18:00:08.340 INFO [18561]: COREGRADE is starting... -- 18:00:08.340 INFO [18561]: Version from config: 1.0 -- 18:00:08.340 DEBUG [18561]: Connecting to database... -- 18:00:08.341 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:00:08.341 SQL [18561]: pgsql_db_connect() -- 18:00:08.345 DEBUG [18561]: Database connection successful -- 18:00:08.345 INFO [18561]: _SERVER found -- 18:00:08.345 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 18:00:08.345 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 18:00:08.345 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=0qglqij16ef8dsvao5out5or1qcdottf -- 18:00:08.345 INFO [18561]: QUERY_STRING = /member/page -- 18:00:08.345 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:00:08.390 INFO [18561]: COREGRADE is stopping... -- 18:00:08.390 DEBUG [18561]: Closing database connection -- 18:00:08.390 SQL [18561]: pgsql_close() -- 18:00:08.490 INFO [18561]: COREGRADE is starting... -- 18:00:08.490 INFO [18561]: Version from config: 1.0 -- 18:00:08.490 DEBUG [18561]: Connecting to database... -- 18:00:08.490 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:00:08.490 SQL [18561]: pgsql_db_connect() -- 18:00:08.494 DEBUG [18561]: Database connection successful -- 18:00:08.494 INFO [18561]: _SERVER found -- 18:00:08.494 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 18:00:08.494 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 18:00:08.494 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=lg4ut05ie2igt6i15c1216321httjjl4 -- 18:00:08.494 INFO [18561]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:00:08.494 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:00:08.505 INFO [18561]: COREGRADE is stopping... -- 18:00:08.505 DEBUG [18561]: Closing database connection -- 18:00:08.505 SQL [18561]: pgsql_close() -- 18:00:08.629 INFO [18561]: COREGRADE is starting... -- 18:00:08.629 INFO [18561]: Version from config: 1.0 -- 18:00:08.629 DEBUG [18561]: Connecting to database... -- 18:00:08.629 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:00:08.629 SQL [18561]: pgsql_db_connect() -- 18:00:08.633 DEBUG [18561]: Database connection successful -- 18:00:08.633 INFO [18561]: _SERVER found -- 18:00:08.633 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 18:00:08.633 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 18:00:08.633 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=lg4ut05ie2igt6i15c1216321httjjl4 -- 18:00:08.633 INFO [18561]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:00:08.633 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:00:08.645 INFO [18561]: COREGRADE is stopping... -- 18:00:08.645 DEBUG [18561]: Closing database connection -- 18:00:08.645 SQL [18561]: pgsql_close() -- 18:00:12.675 INFO [18603]: COREGRADE is starting... -- 18:00:12.675 INFO [18603]: Version from config: 1.0 -- 18:00:12.675 DEBUG [18603]: Connecting to database... -- 18:00:12.675 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:00:12.675 SQL [18603]: pgsql_db_connect() -- 18:00:12.679 DEBUG [18603]: Database connection successful -- 18:00:12.679 INFO [18603]: _SERVER found -- 18:00:12.679 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 18:00:12.679 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 18:00:12.679 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=lg4ut05ie2igt6i15c1216321httjjl4 -- 18:00:12.679 INFO [18603]: QUERY_STRING = /member/viewCardAddAction -- 18:00:12.679 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:00:12.711 INFO [18603]: COREGRADE is stopping... -- 18:00:12.711 DEBUG [18603]: Closing database connection -- 18:00:12.711 SQL [18603]: pgsql_close() -- 18:00:34.425 INFO [18562]: COREGRADE is starting... -- 18:00:34.426 INFO [18562]: Version from config: 1.0 -- 18:00:34.426 DEBUG [18562]: Connecting to database... -- 18:00:34.426 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:00:34.426 SQL [18562]: pgsql_db_connect() -- 18:00:34.434 INFO [18602]: COREGRADE is starting... -- 18:00:34.435 INFO [18602]: Version from config: 1.0 -- 18:00:34.435 DEBUG [18602]: Connecting to database... -- 18:00:34.435 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:00:34.435 SQL [18602]: pgsql_db_connect() -- 18:00:34.430 DEBUG [18562]: Database connection successful -- 18:00:34.430 INFO [18562]: _SERVER found -- 18:00:34.430 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 18:00:34.430 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 18:00:34.430 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=lg4ut05ie2igt6i15c1216321httjjl4 -- 18:00:34.430 INFO [18562]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 18:00:34.430 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:00:34.441 INFO [18562]: COREGRADE is stopping... -- 18:00:34.442 DEBUG [18562]: Closing database connection -- 18:00:34.442 SQL [18562]: pgsql_close() -- 18:00:34.438 DEBUG [18602]: Database connection successful -- 18:00:34.438 INFO [18602]: _SERVER found -- 18:00:34.438 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 18:00:34.438 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 18:00:34.438 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=lg4ut05ie2igt6i15c1216321httjjl4 -- 18:00:34.438 INFO [18602]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 18:00:34.438 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:00:34.450 INFO [18602]: COREGRADE is stopping... -- 18:00:34.450 DEBUG [18602]: Closing database connection -- 18:00:34.450 SQL [18602]: pgsql_close() -- 18:00:41.368 INFO [18604]: COREGRADE is starting... -- 18:00:41.369 INFO [18604]: Version from config: 1.0 -- 18:00:41.369 DEBUG [18604]: Connecting to database... -- 18:00:41.369 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:00:41.369 SQL [18604]: pgsql_db_connect() -- 18:00:41.373 DEBUG [18604]: Database connection successful -- 18:00:41.373 INFO [18604]: _SERVER found -- 18:00:41.373 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 18:00:41.373 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 18:00:41.373 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=lg4ut05ie2igt6i15c1216321httjjl4 -- 18:00:41.373 INFO [18604]: QUERY_STRING = /member/page -- 18:00:41.373 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:00:41.415 INFO [18604]: COREGRADE is stopping... -- 18:00:41.415 DEBUG [18604]: Closing database connection -- 18:00:41.415 SQL [18604]: pgsql_close() -- 18:00:41.498 INFO [18604]: COREGRADE is starting... -- 18:00:41.498 INFO [18604]: Version from config: 1.0 -- 18:00:41.498 DEBUG [18604]: Connecting to database... -- 18:00:41.498 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:00:41.498 SQL [18604]: pgsql_db_connect() -- 18:00:41.502 DEBUG [18604]: Database connection successful -- 18:00:41.502 INFO [18604]: _SERVER found -- 18:00:41.502 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 18:00:41.502 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 18:00:41.502 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=lg4ut05ie2igt6i15c1216321httjjl4 -- 18:00:41.502 INFO [18604]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:00:41.502 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:00:41.513 INFO [18604]: COREGRADE is stopping... -- 18:00:41.513 DEBUG [18604]: Closing database connection -- 18:00:41.513 SQL [18604]: pgsql_close() -- 18:00:41.727 INFO [18604]: COREGRADE is starting... -- 18:00:41.727 INFO [18604]: Version from config: 1.0 -- 18:00:41.727 DEBUG [18604]: Connecting to database... -- 18:00:41.727 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:00:41.727 SQL [18604]: pgsql_db_connect() -- 18:00:41.731 DEBUG [18604]: Database connection successful -- 18:00:41.731 INFO [18604]: _SERVER found -- 18:00:41.731 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 18:00:41.731 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 18:00:41.731 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=lg4ut05ie2igt6i15c1216321httjjl4 -- 18:00:41.731 INFO [18604]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 18:00:41.731 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:00:41.742 INFO [18604]: COREGRADE is stopping... -- 18:00:41.742 DEBUG [18604]: Closing database connection -- 18:00:41.742 SQL [18604]: pgsql_close() -- 18:00:41.833 INFO [18604]: COREGRADE is starting... -- 18:00:41.833 INFO [18604]: Version from config: 1.0 -- 18:00:41.833 DEBUG [18604]: Connecting to database... -- 18:00:41.833 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:00:41.833 SQL [18604]: pgsql_db_connect() -- 18:00:41.837 DEBUG [18604]: Database connection successful -- 18:00:41.837 INFO [18604]: _SERVER found -- 18:00:41.837 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 18:00:41.837 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 18:00:41.837 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=lg4ut05ie2igt6i15c1216321httjjl4 -- 18:00:41.837 INFO [18604]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 18:00:41.837 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:00:41.848 INFO [18604]: COREGRADE is stopping... -- 18:00:41.848 DEBUG [18604]: Closing database connection -- 18:00:41.848 SQL [18604]: pgsql_close() -- 18:00:41.883 INFO [18604]: COREGRADE is starting... -- 18:00:41.883 INFO [18604]: Version from config: 1.0 -- 18:00:41.883 DEBUG [18604]: Connecting to database... -- 18:00:41.883 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:00:41.883 SQL [18604]: pgsql_db_connect() -- 18:00:41.887 DEBUG [18604]: Database connection successful -- 18:00:41.887 INFO [18604]: _SERVER found -- 18:00:41.887 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 18:00:41.887 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 18:00:41.887 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=lg4ut05ie2igt6i15c1216321httjjl4 -- 18:00:41.887 INFO [18604]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:00:41.887 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:00:41.898 INFO [18604]: COREGRADE is stopping... -- 18:00:41.898 DEBUG [18604]: Closing database connection -- 18:00:41.898 SQL [18604]: pgsql_close() -- 18:00:49.330 INFO [18600]: COREGRADE is starting... -- 18:00:49.330 INFO [18600]: Version from config: 1.0 -- 18:00:49.330 DEBUG [18600]: Connecting to database... -- 18:00:49.330 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:00:49.330 SQL [18600]: pgsql_db_connect() -- 18:00:49.334 DEBUG [18600]: Database connection successful -- 18:00:49.334 INFO [18600]: _SERVER found -- 18:00:49.334 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 18:00:49.334 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 18:00:49.334 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=lg4ut05ie2igt6i15c1216321httjjl4 -- 18:00:49.334 INFO [18600]: QUERY_STRING = /member/viewCardAddAction -- 18:00:49.334 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:00:49.366 INFO [18600]: COREGRADE is stopping... -- 18:00:49.366 DEBUG [18600]: Closing database connection -- 18:00:49.366 SQL [18600]: pgsql_close() -- 18:02:01.925 INFO [18560]: COREGRADE is starting... -- 18:02:01.925 INFO [18560]: Version from config: 1.0 -- 18:02:01.925 DEBUG [18560]: Connecting to database... -- 18:02:01.925 DEBUG [18560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:02:01.925 SQL [18560]: pgsql_db_connect() -- 18:02:01.929 DEBUG [18560]: Database connection successful -- 18:02:01.929 INFO [18560]: _SERVER found -- 18:02:01.929 INFO [18560]: REMOTE_ADDR = 192.168.1.13 -- 18:02:01.929 INFO [18560]: SERVER_NAME = oameye.works.coregrade.com -- 18:02:01.929 INFO [18560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=lg4ut05ie2igt6i15c1216321httjjl4 -- 18:02:01.929 INFO [18560]: QUERY_STRING = /member/page -- 18:02:01.929 INFO [18560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:02:01.973 INFO [18560]: COREGRADE is stopping... -- 18:02:01.973 DEBUG [18560]: Closing database connection -- 18:02:01.973 SQL [18560]: pgsql_close() -- 18:02:02.086 INFO [18560]: COREGRADE is starting... -- 18:02:02.086 INFO [18560]: Version from config: 1.0 -- 18:02:02.086 DEBUG [18560]: Connecting to database... -- 18:02:02.086 DEBUG [18560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:02:02.086 SQL [18560]: pgsql_db_connect() -- 18:02:02.090 DEBUG [18560]: Database connection successful -- 18:02:02.090 INFO [18560]: _SERVER found -- 18:02:02.090 INFO [18560]: REMOTE_ADDR = 192.168.1.13 -- 18:02:02.090 INFO [18560]: SERVER_NAME = oameye.works.coregrade.com -- 18:02:02.090 INFO [18560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=lg4ut05ie2igt6i15c1216321httjjl4 -- 18:02:02.090 INFO [18560]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:02:02.090 INFO [18560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:02:02.102 INFO [18560]: COREGRADE is stopping... -- 18:02:02.102 DEBUG [18560]: Closing database connection -- 18:02:02.102 SQL [18560]: pgsql_close() -- 18:02:02.188 INFO [18560]: COREGRADE is starting... -- 18:02:02.188 INFO [18560]: Version from config: 1.0 -- 18:02:02.188 DEBUG [18560]: Connecting to database... -- 18:02:02.188 DEBUG [18560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:02:02.188 SQL [18560]: pgsql_db_connect() -- 18:02:02.192 DEBUG [18560]: Database connection successful -- 18:02:02.192 INFO [18560]: _SERVER found -- 18:02:02.192 INFO [18560]: REMOTE_ADDR = 192.168.1.13 -- 18:02:02.192 INFO [18560]: SERVER_NAME = oameye.works.coregrade.com -- 18:02:02.192 INFO [18560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=lg4ut05ie2igt6i15c1216321httjjl4 -- 18:02:02.192 INFO [18560]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 18:02:02.192 INFO [18560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:02:02.203 INFO [18560]: COREGRADE is stopping... -- 18:02:02.203 DEBUG [18560]: Closing database connection -- 18:02:02.203 SQL [18560]: pgsql_close() -- 18:02:02.235 INFO [18560]: COREGRADE is starting... -- 18:02:02.236 INFO [18560]: Version from config: 1.0 -- 18:02:02.236 DEBUG [18560]: Connecting to database... -- 18:02:02.236 DEBUG [18560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:02:02.236 SQL [18560]: pgsql_db_connect() -- 18:02:02.239 DEBUG [18560]: Database connection successful -- 18:02:02.239 INFO [18560]: _SERVER found -- 18:02:02.239 INFO [18560]: REMOTE_ADDR = 192.168.1.13 -- 18:02:02.239 INFO [18560]: SERVER_NAME = oameye.works.coregrade.com -- 18:02:02.239 INFO [18560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=lg4ut05ie2igt6i15c1216321httjjl4 -- 18:02:02.239 INFO [18560]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 18:02:02.240 INFO [18560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:02:02.251 INFO [18560]: COREGRADE is stopping... -- 18:02:02.251 DEBUG [18560]: Closing database connection -- 18:02:02.251 SQL [18560]: pgsql_close() -- 18:02:02.272 INFO [18560]: COREGRADE is starting... -- 18:02:02.272 INFO [18560]: Version from config: 1.0 -- 18:02:02.272 DEBUG [18560]: Connecting to database... -- 18:02:02.272 DEBUG [18560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:02:02.272 SQL [18560]: pgsql_db_connect() -- 18:02:02.276 DEBUG [18560]: Database connection successful -- 18:02:02.276 INFO [18560]: _SERVER found -- 18:02:02.276 INFO [18560]: REMOTE_ADDR = 192.168.1.13 -- 18:02:02.276 INFO [18560]: SERVER_NAME = oameye.works.coregrade.com -- 18:02:02.276 INFO [18560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=lg4ut05ie2igt6i15c1216321httjjl4 -- 18:02:02.276 INFO [18560]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:02:02.276 INFO [18560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:02:02.288 INFO [18560]: COREGRADE is stopping... -- 18:02:02.288 DEBUG [18560]: Closing database connection -- 18:02:02.288 SQL [18560]: pgsql_close() -- 18:02:05.572 INFO [18561]: COREGRADE is starting... -- 18:02:05.572 INFO [18561]: Version from config: 1.0 -- 18:02:05.572 DEBUG [18561]: Connecting to database... -- 18:02:05.572 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:02:05.572 SQL [18561]: pgsql_db_connect() -- 18:02:05.576 DEBUG [18561]: Database connection successful -- 18:02:05.576 INFO [18561]: _SERVER found -- 18:02:05.576 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 18:02:05.576 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 18:02:05.576 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=lg4ut05ie2igt6i15c1216321httjjl4 -- 18:02:05.576 INFO [18561]: QUERY_STRING = /member/viewCardAddAction -- 18:02:05.576 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:02:05.608 INFO [18561]: COREGRADE is stopping... -- 18:02:05.608 DEBUG [18561]: Closing database connection -- 18:02:05.608 SQL [18561]: pgsql_close() -- 18:02:18.696 INFO [18897]: COREGRADE is starting... -- 18:02:18.696 INFO [18897]: Version from config: 1.0 -- 18:02:18.696 DEBUG [18897]: Connecting to database... -- 18:02:18.696 DEBUG [18897]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:02:18.696 SQL [18897]: pgsql_db_connect() -- 18:02:18.700 DEBUG [18897]: Database connection successful -- 18:02:18.700 INFO [18897]: _SERVER found -- 18:02:18.700 INFO [18897]: REMOTE_ADDR = 192.168.1.13 -- 18:02:18.700 INFO [18897]: SERVER_NAME = oameye.works.coregrade.com -- 18:02:18.700 INFO [18897]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=lg4ut05ie2igt6i15c1216321httjjl4 -- 18:02:18.700 INFO [18897]: QUERY_STRING = /member/viewCardAddAction -- 18:02:18.700 INFO [18897]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:02:18.732 INFO [18897]: COREGRADE is stopping... -- 18:02:18.732 DEBUG [18897]: Closing database connection -- 18:02:18.732 SQL [18897]: pgsql_close() -- 18:18:00.129 INFO [18603]: COREGRADE is starting... -- 18:18:00.129 INFO [18603]: Version from config: 1.0 -- 18:18:00.129 DEBUG [18603]: Connecting to database... -- 18:18:00.129 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:18:00.129 SQL [18603]: pgsql_db_connect() -- 18:18:00.134 DEBUG [18603]: Database connection successful -- 18:18:00.134 INFO [18603]: _SERVER found -- 18:18:00.134 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 18:18:00.134 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 18:18:00.134 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.38091328.1580686965; _gid=GA1.2.2039943866.1582835811 -- 18:18:00.134 INFO [18603]: QUERY_STRING = /auth -- 18:18:00.134 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:18:00.171 INFO [18603]: COREGRADE is stopping... -- 18:18:00.171 DEBUG [18603]: Closing database connection -- 18:18:00.171 SQL [18603]: pgsql_close() -- 18:18:00.335 INFO [18603]: COREGRADE is starting... -- 18:18:00.335 INFO [18603]: Version from config: 1.0 -- 18:18:00.335 DEBUG [18603]: Connecting to database... -- 18:18:00.336 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:18:00.336 SQL [18603]: pgsql_db_connect() -- 18:18:00.339 DEBUG [18603]: Database connection successful -- 18:18:00.339 INFO [18603]: _SERVER found -- 18:18:00.339 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 18:18:00.339 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 18:18:00.339 INFO [18603]: HTTP_COOKIE = ci_session=te346u184e6v3ecqhecl5d7ot8is72oo; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.2039943866.1582835811 -- 18:18:00.339 INFO [18603]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:18:00.339 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:18:00.351 INFO [18603]: COREGRADE is stopping... -- 18:18:00.351 DEBUG [18603]: Closing database connection -- 18:18:00.351 SQL [18603]: pgsql_close() -- 18:18:00.362 INFO [18603]: COREGRADE is starting... -- 18:18:00.362 INFO [18603]: Version from config: 1.0 -- 18:18:00.362 DEBUG [18603]: Connecting to database... -- 18:18:00.362 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:18:00.362 SQL [18603]: pgsql_db_connect() -- 18:18:00.366 DEBUG [18603]: Database connection successful -- 18:18:00.366 INFO [18603]: _SERVER found -- 18:18:00.366 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 18:18:00.366 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 18:18:00.366 INFO [18603]: HTTP_COOKIE = ci_session=te346u184e6v3ecqhecl5d7ot8is72oo; _ga=GA1.2.38091328.1580686965; _gid=GA1.2.2039943866.1582835811 -- 18:18:00.366 INFO [18603]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:18:00.366 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:18:00.377 INFO [18603]: COREGRADE is stopping... -- 18:18:00.377 DEBUG [18603]: Closing database connection -- 18:18:00.377 SQL [18603]: pgsql_close() -- 18:37:20.481 INFO [18562]: COREGRADE is starting... -- 18:37:20.481 INFO [18562]: Version from config: 1.0 -- 18:37:20.481 DEBUG [18562]: Connecting to database... -- 18:37:20.481 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:37:20.481 SQL [18562]: pgsql_db_connect() -- 18:37:20.485 DEBUG [18562]: Database connection successful -- 18:37:20.485 INFO [18562]: _SERVER found -- 18:37:20.485 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 18:37:20.485 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 18:37:20.485 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=lg4ut05ie2igt6i15c1216321httjjl4 -- 18:37:20.485 INFO [18562]: QUERY_STRING = /member/page -- 18:37:20.485 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:37:20.533 INFO [18562]: COREGRADE is stopping... -- 18:37:20.533 DEBUG [18562]: Closing database connection -- 18:37:20.533 SQL [18562]: pgsql_close() -- 18:37:21.008 INFO [18600]: COREGRADE is starting... -- 18:37:21.009 INFO [18600]: Version from config: 1.0 -- 18:37:21.009 DEBUG [18600]: Connecting to database... -- 18:37:21.009 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:37:21.009 SQL [18600]: pgsql_db_connect() -- 18:37:21.013 DEBUG [18600]: Database connection successful -- 18:37:21.013 INFO [18600]: _SERVER found -- 18:37:21.013 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 18:37:21.013 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 18:37:21.013 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=fs726nd7q4sr0pms9igatpk5gvbsr9rf -- 18:37:21.013 INFO [18600]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:37:21.013 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:37:21.025 INFO [18600]: COREGRADE is stopping... -- 18:37:21.025 DEBUG [18600]: Closing database connection -- 18:37:21.025 SQL [18600]: pgsql_close() -- 18:37:21.129 INFO [18560]: COREGRADE is starting... -- 18:37:21.129 INFO [18560]: Version from config: 1.0 -- 18:37:21.129 DEBUG [18560]: Connecting to database... -- 18:37:21.129 DEBUG [18560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:37:21.129 SQL [18560]: pgsql_db_connect() -- 18:37:21.134 DEBUG [18560]: Database connection successful -- 18:37:21.134 INFO [18560]: _SERVER found -- 18:37:21.134 INFO [18560]: REMOTE_ADDR = 192.168.1.13 -- 18:37:21.134 INFO [18560]: SERVER_NAME = oameye.works.coregrade.com -- 18:37:21.134 INFO [18560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=fs726nd7q4sr0pms9igatpk5gvbsr9rf -- 18:37:21.134 INFO [18560]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 18:37:21.134 INFO [18560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:37:21.146 INFO [18560]: COREGRADE is stopping... -- 18:37:21.146 DEBUG [18560]: Closing database connection -- 18:37:21.146 SQL [18560]: pgsql_close() -- 18:37:21.641 INFO [18602]: COREGRADE is starting... -- 18:37:21.641 INFO [18602]: Version from config: 1.0 -- 18:37:21.641 DEBUG [18602]: Connecting to database... -- 18:37:21.641 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:37:21.641 SQL [18602]: pgsql_db_connect() -- 18:37:21.650 INFO [18562]: COREGRADE is starting... -- 18:37:21.650 INFO [18562]: Version from config: 1.0 -- 18:37:21.650 DEBUG [18562]: Connecting to database... -- 18:37:21.650 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:37:21.650 SQL [18562]: pgsql_db_connect() -- 18:37:21.645 DEBUG [18602]: Database connection successful -- 18:37:21.645 INFO [18602]: _SERVER found -- 18:37:21.645 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 18:37:21.645 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 18:37:21.645 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=fs726nd7q4sr0pms9igatpk5gvbsr9rf -- 18:37:21.645 INFO [18602]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 18:37:21.645 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:37:21.659 INFO [18602]: COREGRADE is stopping... -- 18:37:21.659 DEBUG [18602]: Closing database connection -- 18:37:21.659 SQL [18602]: pgsql_close() -- 18:37:21.655 DEBUG [18562]: Database connection successful -- 18:37:21.655 INFO [18562]: _SERVER found -- 18:37:21.655 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 18:37:21.655 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 18:37:21.655 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=fs726nd7q4sr0pms9igatpk5gvbsr9rf -- 18:37:21.655 INFO [18562]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:37:21.655 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:37:21.667 INFO [18562]: COREGRADE is stopping... -- 18:37:21.667 DEBUG [18562]: Closing database connection -- 18:37:21.667 SQL [18562]: pgsql_close() -- 18:37:25.891 INFO [18561]: COREGRADE is starting... -- 18:37:25.891 INFO [18561]: Version from config: 1.0 -- 18:37:25.891 DEBUG [18561]: Connecting to database... -- 18:37:25.891 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:37:25.892 SQL [18561]: pgsql_db_connect() -- 18:37:25.896 DEBUG [18561]: Database connection successful -- 18:37:25.896 INFO [18561]: _SERVER found -- 18:37:25.896 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 18:37:25.896 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 18:37:25.896 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=fs726nd7q4sr0pms9igatpk5gvbsr9rf -- 18:37:25.896 INFO [18561]: QUERY_STRING = /member/viewCardAddAction -- 18:37:25.896 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:37:25.929 INFO [18561]: COREGRADE is stopping... -- 18:37:25.929 DEBUG [18561]: Closing database connection -- 18:37:25.929 SQL [18561]: pgsql_close() -- 18:37:33.379 INFO [18603]: COREGRADE is starting... -- 18:37:33.379 INFO [18603]: Version from config: 1.0 -- 18:37:33.379 DEBUG [18603]: Connecting to database... -- 18:37:33.379 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:37:33.379 SQL [18603]: pgsql_db_connect() -- 18:37:33.383 DEBUG [18603]: Database connection successful -- 18:37:33.383 INFO [18603]: _SERVER found -- 18:37:33.383 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 18:37:33.383 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 18:37:33.383 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=fs726nd7q4sr0pms9igatpk5gvbsr9rf -- 18:37:33.383 INFO [18603]: QUERY_STRING = /member/page -- 18:37:33.383 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:37:33.426 INFO [18603]: COREGRADE is stopping... -- 18:37:33.426 DEBUG [18603]: Closing database connection -- 18:37:33.426 SQL [18603]: pgsql_close() -- 18:37:33.714 INFO [18603]: COREGRADE is starting... -- 18:37:33.714 INFO [18603]: Version from config: 1.0 -- 18:37:33.714 DEBUG [18603]: Connecting to database... -- 18:37:33.714 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:37:33.714 SQL [18603]: pgsql_db_connect() -- 18:37:33.718 DEBUG [18603]: Database connection successful -- 18:37:33.718 INFO [18603]: _SERVER found -- 18:37:33.718 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 18:37:33.718 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 18:37:33.718 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=fs726nd7q4sr0pms9igatpk5gvbsr9rf -- 18:37:33.718 INFO [18603]: QUERY_STRING = /favicon.ico -- 18:37:33.718 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:37:33.729 INFO [18603]: COREGRADE is stopping... -- 18:37:33.729 DEBUG [18603]: Closing database connection -- 18:37:33.729 SQL [18603]: pgsql_close() -- 18:42:07.761 INFO [19357]: COREGRADE is starting... -- 18:42:07.762 INFO [19357]: Version from config: 1.0 -- 18:42:07.762 DEBUG [19357]: Connecting to database... -- 18:42:07.762 DEBUG [19357]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:42:07.762 SQL [19357]: pgsql_db_connect() -- 18:42:07.766 DEBUG [19357]: Database connection successful -- 18:42:07.766 INFO [19357]: _SERVER found -- 18:42:07.766 INFO [19357]: REMOTE_ADDR = 192.168.1.13 -- 18:42:07.766 INFO [19357]: SERVER_NAME = oameye.works.coregrade.com -- 18:42:07.766 INFO [19357]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=fs726nd7q4sr0pms9igatpk5gvbsr9rf -- 18:42:07.766 INFO [19357]: QUERY_STRING = /member/page -- 18:42:07.766 INFO [19357]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:42:07.818 INFO [19357]: COREGRADE is stopping... -- 18:42:07.818 DEBUG [19357]: Closing database connection -- 18:42:07.818 SQL [19357]: pgsql_close() -- 18:42:28.490 INFO [18560]: COREGRADE is starting... -- 18:42:28.491 INFO [18560]: Version from config: 1.0 -- 18:42:28.491 DEBUG [18560]: Connecting to database... -- 18:42:28.491 DEBUG [18560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:42:28.491 SQL [18560]: pgsql_db_connect() -- 18:42:28.495 DEBUG [18560]: Database connection successful -- 18:42:28.495 INFO [18560]: _SERVER found -- 18:42:28.495 INFO [18560]: REMOTE_ADDR = 192.168.1.13 -- 18:42:28.495 INFO [18560]: SERVER_NAME = oameye.works.coregrade.com -- 18:42:28.495 INFO [18560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=fs726nd7q4sr0pms9igatpk5gvbsr9rf -- 18:42:28.495 INFO [18560]: QUERY_STRING = /member/mycalendar -- 18:42:28.495 INFO [18560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:42:28.534 INFO [18560]: COREGRADE is stopping... -- 18:42:28.534 DEBUG [18560]: Closing database connection -- 18:42:28.534 SQL [18560]: pgsql_close() -- 18:42:28.711 INFO [18560]: COREGRADE is starting... -- 18:42:28.712 INFO [18560]: Version from config: 1.0 -- 18:42:28.712 DEBUG [18560]: Connecting to database... -- 18:42:28.712 DEBUG [18560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:42:28.712 SQL [18560]: pgsql_db_connect() -- 18:42:28.716 DEBUG [18560]: Database connection successful -- 18:42:28.716 INFO [18560]: _SERVER found -- 18:42:28.716 INFO [18560]: REMOTE_ADDR = 192.168.1.13 -- 18:42:28.716 INFO [18560]: SERVER_NAME = oameye.works.coregrade.com -- 18:42:28.716 INFO [18560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=892b7q1un7u6ifq9o063216dsnt0j7nb -- 18:42:28.716 INFO [18560]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:42:28.716 INFO [18560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:42:28.727 INFO [18560]: COREGRADE is stopping... -- 18:42:28.727 DEBUG [18560]: Closing database connection -- 18:42:28.727 SQL [18560]: pgsql_close() -- 18:42:28.778 INFO [18560]: COREGRADE is starting... -- 18:42:28.778 INFO [18560]: Version from config: 1.0 -- 18:42:28.778 DEBUG [18560]: Connecting to database... -- 18:42:28.778 DEBUG [18560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:42:28.779 SQL [18560]: pgsql_db_connect() -- 18:42:28.783 DEBUG [18560]: Database connection successful -- 18:42:28.783 INFO [18560]: _SERVER found -- 18:42:28.783 INFO [18560]: REMOTE_ADDR = 192.168.1.13 -- 18:42:28.783 INFO [18560]: SERVER_NAME = oameye.works.coregrade.com -- 18:42:28.783 INFO [18560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=892b7q1un7u6ifq9o063216dsnt0j7nb -- 18:42:28.783 INFO [18560]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:42:28.783 INFO [18560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:42:28.794 INFO [18560]: COREGRADE is stopping... -- 18:42:28.794 DEBUG [18560]: Closing database connection -- 18:42:28.794 SQL [18560]: pgsql_close() -- 18:42:58.908 INFO [18604]: COREGRADE is starting... -- 18:42:58.908 INFO [18604]: Version from config: 1.0 -- 18:42:58.908 DEBUG [18604]: Connecting to database... -- 18:42:58.908 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:42:58.908 SQL [18604]: pgsql_db_connect() -- 18:42:58.912 DEBUG [18604]: Database connection successful -- 18:42:58.912 INFO [18604]: _SERVER found -- 18:42:58.912 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 18:42:58.912 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 18:42:58.912 INFO [18604]: QUERY_STRING = /member/mycalendar -- 18:42:58.912 INFO [18604]: HTTP_X_FORWARDED_FOR = 18.212.188.60 -- 18:42:58.944 INFO [18604]: COREGRADE is stopping... -- 18:42:58.944 DEBUG [18604]: Closing database connection -- 18:42:58.944 SQL [18604]: pgsql_close() -- 18:42:58.975 INFO [18604]: COREGRADE is starting... -- 18:42:58.976 INFO [18604]: Version from config: 1.0 -- 18:42:58.976 DEBUG [18604]: Connecting to database... -- 18:42:58.976 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:42:58.976 SQL [18604]: pgsql_db_connect() -- 18:42:58.980 DEBUG [18604]: Database connection successful -- 18:42:58.980 INFO [18604]: _SERVER found -- 18:42:58.980 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 18:42:58.980 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 18:42:58.980 INFO [18604]: QUERY_STRING = -- 18:42:58.980 INFO [18604]: HTTP_X_FORWARDED_FOR = 18.212.188.60 -- 18:42:59.016 INFO [18604]: COREGRADE is stopping... -- 18:42:59.016 DEBUG [18604]: Closing database connection -- 18:42:59.016 SQL [18604]: pgsql_close() -- 18:43:08.944 INFO [18664]: COREGRADE is starting... -- 18:43:08.944 INFO [18664]: Version from config: 1.0 -- 18:43:08.944 DEBUG [18664]: Connecting to database... -- 18:43:08.945 DEBUG [18664]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:43:08.945 SQL [18664]: pgsql_db_connect() -- 18:43:08.949 DEBUG [18664]: Database connection successful -- 18:43:08.949 INFO [18664]: _SERVER found -- 18:43:08.949 INFO [18664]: REMOTE_ADDR = 192.168.1.13 -- 18:43:08.949 INFO [18664]: SERVER_NAME = oameye.works.coregrade.com -- 18:43:08.949 INFO [18664]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=892b7q1un7u6ifq9o063216dsnt0j7nb -- 18:43:08.949 INFO [18664]: QUERY_STRING = /member -- 18:43:08.949 INFO [18664]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:43:08.990 INFO [18664]: COREGRADE is stopping... -- 18:43:08.990 DEBUG [18664]: Closing database connection -- 18:43:08.990 SQL [18664]: pgsql_close() -- 18:43:09.184 INFO [18664]: COREGRADE is starting... -- 18:43:09.184 INFO [18664]: Version from config: 1.0 -- 18:43:09.184 DEBUG [18664]: Connecting to database... -- 18:43:09.184 DEBUG [18664]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:43:09.184 SQL [18664]: pgsql_db_connect() -- 18:43:09.188 DEBUG [18664]: Database connection successful -- 18:43:09.188 INFO [18664]: _SERVER found -- 18:43:09.188 INFO [18664]: REMOTE_ADDR = 192.168.1.13 -- 18:43:09.188 INFO [18664]: SERVER_NAME = oameye.works.coregrade.com -- 18:43:09.188 INFO [18664]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=892b7q1un7u6ifq9o063216dsnt0j7nb -- 18:43:09.188 INFO [18664]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:43:09.188 INFO [18664]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:43:09.200 INFO [18664]: COREGRADE is stopping... -- 18:43:09.200 DEBUG [18664]: Closing database connection -- 18:43:09.200 SQL [18664]: pgsql_close() -- 18:43:09.207 INFO [18664]: COREGRADE is starting... -- 18:43:09.207 INFO [18664]: Version from config: 1.0 -- 18:43:09.207 DEBUG [18664]: Connecting to database... -- 18:43:09.207 DEBUG [18664]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:43:09.207 SQL [18664]: pgsql_db_connect() -- 18:43:09.211 DEBUG [18664]: Database connection successful -- 18:43:09.211 INFO [18664]: _SERVER found -- 18:43:09.211 INFO [18664]: REMOTE_ADDR = 192.168.1.13 -- 18:43:09.211 INFO [18664]: SERVER_NAME = oameye.works.coregrade.com -- 18:43:09.211 INFO [18664]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=892b7q1un7u6ifq9o063216dsnt0j7nb -- 18:43:09.211 INFO [18664]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:43:09.211 INFO [18664]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:43:09.222 INFO [18664]: COREGRADE is stopping... -- 18:43:09.222 DEBUG [18664]: Closing database connection -- 18:43:09.222 SQL [18664]: pgsql_close() -- 18:43:10.236 INFO [18664]: COREGRADE is starting... -- 18:43:10.237 INFO [18664]: Version from config: 1.0 -- 18:43:10.237 DEBUG [18664]: Connecting to database... -- 18:43:10.237 DEBUG [18664]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:43:10.237 SQL [18664]: pgsql_db_connect() -- 18:43:10.241 DEBUG [18664]: Database connection successful -- 18:43:10.241 INFO [18664]: _SERVER found -- 18:43:10.241 INFO [18664]: REMOTE_ADDR = 192.168.1.13 -- 18:43:10.241 INFO [18664]: SERVER_NAME = oameye.works.coregrade.com -- 18:43:10.241 INFO [18664]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=892b7q1un7u6ifq9o063216dsnt0j7nb -- 18:43:10.241 INFO [18664]: QUERY_STRING = /member/page -- 18:43:10.241 INFO [18664]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:43:10.283 INFO [18664]: COREGRADE is stopping... -- 18:43:10.283 DEBUG [18664]: Closing database connection -- 18:43:10.283 SQL [18664]: pgsql_close() -- 18:43:10.409 INFO [18602]: COREGRADE is starting... -- 18:43:10.409 INFO [18602]: Version from config: 1.0 -- 18:43:10.409 DEBUG [18602]: Connecting to database... -- 18:43:10.409 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:43:10.409 SQL [18602]: pgsql_db_connect() -- 18:43:10.413 DEBUG [18602]: Database connection successful -- 18:43:10.413 INFO [18602]: _SERVER found -- 18:43:10.413 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 18:43:10.413 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 18:43:10.413 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=892b7q1un7u6ifq9o063216dsnt0j7nb -- 18:43:10.413 INFO [18602]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:43:10.413 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:43:10.425 INFO [18602]: COREGRADE is stopping... -- 18:43:10.425 DEBUG [18602]: Closing database connection -- 18:43:10.425 SQL [18602]: pgsql_close() -- 18:43:10.497 INFO [18602]: COREGRADE is starting... -- 18:43:10.497 INFO [18602]: Version from config: 1.0 -- 18:43:10.497 DEBUG [18602]: Connecting to database... -- 18:43:10.497 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:43:10.497 SQL [18602]: pgsql_db_connect() -- 18:43:10.501 DEBUG [18602]: Database connection successful -- 18:43:10.501 INFO [18602]: _SERVER found -- 18:43:10.501 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 18:43:10.501 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 18:43:10.501 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=892b7q1un7u6ifq9o063216dsnt0j7nb -- 18:43:10.501 INFO [18602]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:43:10.501 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:43:10.512 INFO [18602]: COREGRADE is stopping... -- 18:43:10.512 DEBUG [18602]: Closing database connection -- 18:43:10.512 SQL [18602]: pgsql_close() -- 18:43:13.609 INFO [18563]: COREGRADE is starting... -- 18:43:13.610 INFO [18563]: Version from config: 1.0 -- 18:43:13.610 DEBUG [18563]: Connecting to database... -- 18:43:13.610 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:43:13.610 SQL [18563]: pgsql_db_connect() -- 18:43:13.614 DEBUG [18563]: Database connection successful -- 18:43:13.614 INFO [18563]: _SERVER found -- 18:43:13.614 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 18:43:13.614 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 18:43:13.614 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=892b7q1un7u6ifq9o063216dsnt0j7nb -- 18:43:13.614 INFO [18563]: QUERY_STRING = /member/viewCardAddAction -- 18:43:13.614 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:43:13.646 INFO [18563]: COREGRADE is stopping... -- 18:43:13.646 DEBUG [18563]: Closing database connection -- 18:43:13.646 SQL [18563]: pgsql_close() -- 18:47:58.436 INFO [18561]: COREGRADE is starting... -- 18:47:58.436 INFO [18561]: Version from config: 1.0 -- 18:47:58.436 DEBUG [18561]: Connecting to database... -- 18:47:58.436 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:58.436 SQL [18561]: pgsql_db_connect() -- 18:47:58.440 DEBUG [18561]: Database connection successful -- 18:47:58.440 INFO [18561]: _SERVER found -- 18:47:58.440 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 18:47:58.440 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 18:47:58.440 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=892b7q1un7u6ifq9o063216dsnt0j7nb -- 18:47:58.440 INFO [18561]: QUERY_STRING = /member/page -- 18:47:58.440 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:47:58.485 INFO [18561]: COREGRADE is stopping... -- 18:47:58.485 DEBUG [18561]: Closing database connection -- 18:47:58.485 SQL [18561]: pgsql_close() -- 18:47:58.579 INFO [18561]: COREGRADE is starting... -- 18:47:58.579 INFO [18561]: Version from config: 1.0 -- 18:47:58.579 DEBUG [18561]: Connecting to database... -- 18:47:58.579 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:58.579 SQL [18561]: pgsql_db_connect() -- 18:47:58.583 DEBUG [18561]: Database connection successful -- 18:47:58.583 INFO [18561]: _SERVER found -- 18:47:58.583 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 18:47:58.583 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 18:47:58.583 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=m6havafbqnoebmimk862n2lsidngnh7o -- 18:47:58.583 INFO [18561]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:47:58.583 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:47:58.594 INFO [18561]: COREGRADE is stopping... -- 18:47:58.594 DEBUG [18561]: Closing database connection -- 18:47:58.594 SQL [18561]: pgsql_close() -- 18:47:58.712 INFO [18561]: COREGRADE is starting... -- 18:47:58.713 INFO [18561]: Version from config: 1.0 -- 18:47:58.713 DEBUG [18561]: Connecting to database... -- 18:47:58.713 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:58.713 SQL [18561]: pgsql_db_connect() -- 18:47:58.716 DEBUG [18561]: Database connection successful -- 18:47:58.716 INFO [18561]: _SERVER found -- 18:47:58.716 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 18:47:58.716 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 18:47:58.716 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=m6havafbqnoebmimk862n2lsidngnh7o -- 18:47:58.716 INFO [18561]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:47:58.717 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:47:58.728 INFO [18561]: COREGRADE is stopping... -- 18:47:58.728 DEBUG [18561]: Closing database connection -- 18:47:58.728 SQL [18561]: pgsql_close() -- 18:48:01.321 INFO [19357]: COREGRADE is starting... -- 18:48:01.322 INFO [19357]: Version from config: 1.0 -- 18:48:01.322 DEBUG [19357]: Connecting to database... -- 18:48:01.322 DEBUG [19357]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:01.322 SQL [19357]: pgsql_db_connect() -- 18:48:01.326 DEBUG [19357]: Database connection successful -- 18:48:01.326 INFO [19357]: _SERVER found -- 18:48:01.326 INFO [19357]: REMOTE_ADDR = 192.168.1.13 -- 18:48:01.326 INFO [19357]: SERVER_NAME = oameye.works.coregrade.com -- 18:48:01.326 INFO [19357]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=m6havafbqnoebmimk862n2lsidngnh7o -- 18:48:01.326 INFO [19357]: QUERY_STRING = /member/viewCardAddAction -- 18:48:01.326 INFO [19357]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:48:01.361 INFO [19357]: COREGRADE is stopping... -- 18:48:01.361 DEBUG [19357]: Closing database connection -- 18:48:01.361 SQL [19357]: pgsql_close() -- 18:48:39.976 INFO [18560]: COREGRADE is starting... -- 18:48:39.976 INFO [18560]: Version from config: 1.0 -- 18:48:39.976 DEBUG [18560]: Connecting to database... -- 18:48:39.976 DEBUG [18560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:39.976 SQL [18560]: pgsql_db_connect() -- 18:48:39.980 DEBUG [18560]: Database connection successful -- 18:48:39.980 INFO [18560]: _SERVER found -- 18:48:39.980 INFO [18560]: REMOTE_ADDR = 192.168.1.13 -- 18:48:39.980 INFO [18560]: SERVER_NAME = oameye.works.coregrade.com -- 18:48:39.980 INFO [18560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=m6havafbqnoebmimk862n2lsidngnh7o -- 18:48:39.980 INFO [18560]: QUERY_STRING = /member/page -- 18:48:39.980 INFO [18560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:48:40.024 INFO [18560]: COREGRADE is stopping... -- 18:48:40.024 DEBUG [18560]: Closing database connection -- 18:48:40.024 SQL [18560]: pgsql_close() -- 18:48:40.478 INFO [18664]: COREGRADE is starting... -- 18:48:40.478 INFO [18664]: Version from config: 1.0 -- 18:48:40.478 DEBUG [18664]: Connecting to database... -- 18:48:40.478 DEBUG [18664]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:40.478 SQL [18664]: pgsql_db_connect() -- 18:48:40.482 DEBUG [18664]: Database connection successful -- 18:48:40.482 INFO [18664]: _SERVER found -- 18:48:40.482 INFO [18664]: REMOTE_ADDR = 192.168.1.13 -- 18:48:40.482 INFO [18664]: SERVER_NAME = oameye.works.coregrade.com -- 18:48:40.482 INFO [18664]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=m6havafbqnoebmimk862n2lsidngnh7o -- 18:48:40.482 INFO [18664]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:48:40.482 INFO [18664]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:48:40.494 INFO [18664]: COREGRADE is stopping... -- 18:48:40.494 DEBUG [18664]: Closing database connection -- 18:48:40.494 SQL [18664]: pgsql_close() -- 18:48:41.885 INFO [18602]: COREGRADE is starting... -- 18:48:41.885 INFO [18602]: Version from config: 1.0 -- 18:48:41.885 DEBUG [18602]: Connecting to database... -- 18:48:41.885 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:41.885 SQL [18602]: pgsql_db_connect() -- 18:48:41.889 DEBUG [18602]: Database connection successful -- 18:48:41.889 INFO [18602]: _SERVER found -- 18:48:41.889 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 18:48:41.889 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 18:48:41.889 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=m6havafbqnoebmimk862n2lsidngnh7o -- 18:48:41.889 INFO [18602]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:48:41.889 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:48:41.902 INFO [18602]: COREGRADE is stopping... -- 18:48:41.902 DEBUG [18602]: Closing database connection -- 18:48:41.902 SQL [18602]: pgsql_close() -- 18:48:44.890 INFO [18563]: COREGRADE is starting... -- 18:48:44.891 INFO [18563]: Version from config: 1.0 -- 18:48:44.891 DEBUG [18563]: Connecting to database... -- 18:48:44.891 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:44.891 SQL [18563]: pgsql_db_connect() -- 18:48:44.895 DEBUG [18563]: Database connection successful -- 18:48:44.895 INFO [18563]: _SERVER found -- 18:48:44.895 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 18:48:44.895 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 18:48:44.895 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=m6havafbqnoebmimk862n2lsidngnh7o -- 18:48:44.895 INFO [18563]: QUERY_STRING = /member/viewCardAddAction -- 18:48:44.895 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:48:44.927 INFO [18563]: COREGRADE is stopping... -- 18:48:44.927 DEBUG [18563]: Closing database connection -- 18:48:44.927 SQL [18563]: pgsql_close() -- 18:48:49.874 INFO [18563]: COREGRADE is starting... -- 18:48:49.874 INFO [18563]: Version from config: 1.0 -- 18:48:49.874 DEBUG [18563]: Connecting to database... -- 18:48:49.874 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:49.874 SQL [18563]: pgsql_db_connect() -- 18:48:49.878 DEBUG [18563]: Database connection successful -- 18:48:49.878 INFO [18563]: _SERVER found -- 18:48:49.878 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 18:48:49.878 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 18:48:49.878 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=m6havafbqnoebmimk862n2lsidngnh7o -- 18:48:49.878 INFO [18563]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 18:48:49.878 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:48:49.889 INFO [18563]: COREGRADE is stopping... -- 18:48:49.889 DEBUG [18563]: Closing database connection -- 18:48:49.889 SQL [18563]: pgsql_close() -- 18:48:49.900 INFO [18561]: COREGRADE is starting... -- 18:48:49.900 INFO [18561]: Version from config: 1.0 -- 18:48:49.900 DEBUG [18561]: Connecting to database... -- 18:48:49.900 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:49.900 SQL [18561]: pgsql_db_connect() -- 18:48:49.903 DEBUG [18561]: Database connection successful -- 18:48:49.904 INFO [18561]: _SERVER found -- 18:48:49.904 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 18:48:49.904 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 18:48:49.904 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=m6havafbqnoebmimk862n2lsidngnh7o -- 18:48:49.904 INFO [18561]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 18:48:49.904 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:48:49.915 INFO [18561]: COREGRADE is stopping... -- 18:48:49.915 DEBUG [18561]: Closing database connection -- 18:48:49.915 SQL [18561]: pgsql_close() -- 18:48:55.437 INFO [18603]: COREGRADE is starting... -- 18:48:55.437 INFO [18603]: Version from config: 1.0 -- 18:48:55.437 DEBUG [18603]: Connecting to database... -- 18:48:55.437 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:55.437 SQL [18603]: pgsql_db_connect() -- 18:48:55.441 DEBUG [18603]: Database connection successful -- 18:48:55.441 INFO [18603]: _SERVER found -- 18:48:55.441 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 18:48:55.441 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 18:48:55.441 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=m6havafbqnoebmimk862n2lsidngnh7o -- 18:48:55.441 INFO [18603]: QUERY_STRING = /member/page -- 18:48:55.441 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:48:55.484 INFO [18603]: COREGRADE is stopping... -- 18:48:55.484 DEBUG [18603]: Closing database connection -- 18:48:55.484 SQL [18603]: pgsql_close() -- 18:48:55.596 INFO [18603]: COREGRADE is starting... -- 18:48:55.596 INFO [18603]: Version from config: 1.0 -- 18:48:55.596 DEBUG [18603]: Connecting to database... -- 18:48:55.596 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:55.596 SQL [18603]: pgsql_db_connect() -- 18:48:55.600 DEBUG [18603]: Database connection successful -- 18:48:55.600 INFO [18603]: _SERVER found -- 18:48:55.600 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 18:48:55.600 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 18:48:55.600 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=m6havafbqnoebmimk862n2lsidngnh7o -- 18:48:55.600 INFO [18603]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:48:55.600 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:48:55.611 INFO [18603]: COREGRADE is stopping... -- 18:48:55.611 DEBUG [18603]: Closing database connection -- 18:48:55.611 SQL [18603]: pgsql_close() -- 18:48:55.918 INFO [18603]: COREGRADE is starting... -- 18:48:55.919 INFO [18603]: Version from config: 1.0 -- 18:48:55.919 DEBUG [18603]: Connecting to database... -- 18:48:55.919 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:55.919 SQL [18603]: pgsql_db_connect() -- 18:48:55.925 INFO [19357]: COREGRADE is starting... -- 18:48:55.925 INFO [19357]: Version from config: 1.0 -- 18:48:55.925 DEBUG [19357]: Connecting to database... -- 18:48:55.925 DEBUG [19357]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:55.925 SQL [19357]: pgsql_db_connect() -- 18:48:55.923 DEBUG [18603]: Database connection successful -- 18:48:55.923 INFO [18603]: _SERVER found -- 18:48:55.923 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 18:48:55.923 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 18:48:55.923 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=m6havafbqnoebmimk862n2lsidngnh7o -- 18:48:55.923 INFO [18603]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 18:48:55.923 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:48:55.934 INFO [18603]: COREGRADE is stopping... -- 18:48:55.934 DEBUG [18603]: Closing database connection -- 18:48:55.934 SQL [18603]: pgsql_close() -- 18:48:55.929 DEBUG [19357]: Database connection successful -- 18:48:55.929 INFO [19357]: _SERVER found -- 18:48:55.929 INFO [19357]: REMOTE_ADDR = 192.168.1.13 -- 18:48:55.929 INFO [19357]: SERVER_NAME = oameye.works.coregrade.com -- 18:48:55.929 INFO [19357]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=m6havafbqnoebmimk862n2lsidngnh7o -- 18:48:55.929 INFO [19357]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 18:48:55.929 INFO [19357]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:48:55.941 INFO [19357]: COREGRADE is stopping... -- 18:48:55.941 DEBUG [19357]: Closing database connection -- 18:48:55.941 SQL [19357]: pgsql_close() -- 18:48:56.004 INFO [19357]: COREGRADE is starting... -- 18:48:56.005 INFO [19357]: Version from config: 1.0 -- 18:48:56.005 DEBUG [19357]: Connecting to database... -- 18:48:56.005 DEBUG [19357]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:56.005 SQL [19357]: pgsql_db_connect() -- 18:48:56.008 DEBUG [19357]: Database connection successful -- 18:48:56.008 INFO [19357]: _SERVER found -- 18:48:56.008 INFO [19357]: REMOTE_ADDR = 192.168.1.13 -- 18:48:56.008 INFO [19357]: SERVER_NAME = oameye.works.coregrade.com -- 18:48:56.008 INFO [19357]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=m6havafbqnoebmimk862n2lsidngnh7o -- 18:48:56.008 INFO [19357]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:48:56.008 INFO [19357]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:48:56.020 INFO [19357]: COREGRADE is stopping... -- 18:48:56.020 DEBUG [19357]: Closing database connection -- 18:48:56.020 SQL [19357]: pgsql_close() -- 18:51:42.701 INFO [18562]: COREGRADE is starting... -- 18:51:42.702 INFO [18562]: Version from config: 1.0 -- 18:51:42.702 DEBUG [18562]: Connecting to database... -- 18:51:42.702 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:42.702 SQL [18562]: pgsql_db_connect() -- 18:51:42.706 DEBUG [18562]: Database connection successful -- 18:51:42.706 INFO [18562]: _SERVER found -- 18:51:42.706 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 18:51:42.706 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:42.706 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=m6havafbqnoebmimk862n2lsidngnh7o -- 18:51:42.706 INFO [18562]: QUERY_STRING = /member/page -- 18:51:42.706 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:42.751 INFO [18562]: COREGRADE is stopping... -- 18:51:42.751 DEBUG [18562]: Closing database connection -- 18:51:42.751 SQL [18562]: pgsql_close() -- 18:51:42.944 INFO [18600]: COREGRADE is starting... -- 18:51:42.945 INFO [18600]: Version from config: 1.0 -- 18:51:42.945 DEBUG [18600]: Connecting to database... -- 18:51:42.945 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:42.945 SQL [18600]: pgsql_db_connect() -- 18:51:42.949 DEBUG [18600]: Database connection successful -- 18:51:42.949 INFO [18600]: _SERVER found -- 18:51:42.949 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 18:51:42.949 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:42.949 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=m6havafbqnoebmimk862n2lsidngnh7o -- 18:51:42.949 INFO [18600]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:51:42.949 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:42.961 INFO [18600]: COREGRADE is stopping... -- 18:51:42.961 DEBUG [18600]: Closing database connection -- 18:51:42.961 SQL [18600]: pgsql_close() -- 18:51:43.195 INFO [18600]: COREGRADE is starting... -- 18:51:43.195 INFO [18600]: Version from config: 1.0 -- 18:51:43.195 DEBUG [18600]: Connecting to database... -- 18:51:43.196 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:43.196 SQL [18600]: pgsql_db_connect() -- 18:51:43.200 DEBUG [18600]: Database connection successful -- 18:51:43.200 INFO [18600]: _SERVER found -- 18:51:43.200 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 18:51:43.200 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:43.200 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=m6havafbqnoebmimk862n2lsidngnh7o -- 18:51:43.200 INFO [18600]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 18:51:43.200 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:43.212 INFO [18600]: COREGRADE is stopping... -- 18:51:43.212 DEBUG [18600]: Closing database connection -- 18:51:43.212 SQL [18600]: pgsql_close() -- 18:51:43.271 INFO [18600]: COREGRADE is starting... -- 18:51:43.272 INFO [18600]: Version from config: 1.0 -- 18:51:43.272 DEBUG [18600]: Connecting to database... -- 18:51:43.272 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:43.272 SQL [18600]: pgsql_db_connect() -- 18:51:43.275 DEBUG [18600]: Database connection successful -- 18:51:43.275 INFO [18600]: _SERVER found -- 18:51:43.275 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 18:51:43.275 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:43.275 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=m6havafbqnoebmimk862n2lsidngnh7o -- 18:51:43.275 INFO [18600]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:51:43.275 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:43.287 INFO [18600]: COREGRADE is stopping... -- 18:51:43.287 DEBUG [18600]: Closing database connection -- 18:51:43.287 SQL [18600]: pgsql_close() -- 18:51:43.370 INFO [18560]: COREGRADE is starting... -- 18:51:43.371 INFO [18560]: Version from config: 1.0 -- 18:51:43.371 DEBUG [18560]: Connecting to database... -- 18:51:43.371 DEBUG [18560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:43.371 SQL [18560]: pgsql_db_connect() -- 18:51:43.375 DEBUG [18560]: Database connection successful -- 18:51:43.375 INFO [18560]: _SERVER found -- 18:51:43.375 INFO [18560]: REMOTE_ADDR = 192.168.1.13 -- 18:51:43.375 INFO [18560]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:43.375 INFO [18560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=m6havafbqnoebmimk862n2lsidngnh7o -- 18:51:43.375 INFO [18560]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 18:51:43.375 INFO [18560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:43.387 INFO [18560]: COREGRADE is stopping... -- 18:51:43.387 DEBUG [18560]: Closing database connection -- 18:51:43.387 SQL [18560]: pgsql_close() -- 18:52:08.715 INFO [18602]: COREGRADE is starting... -- 18:52:08.715 INFO [18602]: Version from config: 1.0 -- 18:52:08.715 DEBUG [18602]: Connecting to database... -- 18:52:08.715 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:52:08.715 SQL [18602]: pgsql_db_connect() -- 18:52:08.719 DEBUG [18602]: Database connection successful -- 18:52:08.719 INFO [18602]: _SERVER found -- 18:52:08.719 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 18:52:08.719 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 18:52:08.719 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=m6havafbqnoebmimk862n2lsidngnh7o -- 18:52:08.719 INFO [18602]: QUERY_STRING = /member/viewCardAddAction -- 18:52:08.719 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:52:08.752 INFO [18602]: COREGRADE is stopping... -- 18:52:08.752 DEBUG [18602]: Closing database connection -- 18:52:08.752 SQL [18602]: pgsql_close() -- 18:52:37.153 INFO [18664]: COREGRADE is starting... -- 18:52:37.153 INFO [18664]: Version from config: 1.0 -- 18:52:37.153 DEBUG [18664]: Connecting to database... -- 18:52:37.153 DEBUG [18664]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:52:37.153 SQL [18664]: pgsql_db_connect() -- 18:52:37.157 DEBUG [18664]: Database connection successful -- 18:52:37.157 INFO [18664]: _SERVER found -- 18:52:37.157 INFO [18664]: REMOTE_ADDR = 192.168.1.13 -- 18:52:37.157 INFO [18664]: SERVER_NAME = oameye.works.coregrade.com -- 18:52:37.157 INFO [18664]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=m6havafbqnoebmimk862n2lsidngnh7o -- 18:52:37.157 INFO [18664]: QUERY_STRING = /member/page -- 18:52:37.157 INFO [18664]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:52:37.200 INFO [18664]: COREGRADE is stopping... -- 18:52:37.200 DEBUG [18664]: Closing database connection -- 18:52:37.200 SQL [18664]: pgsql_close() -- 18:52:37.705 INFO [18664]: COREGRADE is starting... -- 18:52:37.705 INFO [18664]: Version from config: 1.0 -- 18:52:37.705 DEBUG [18664]: Connecting to database... -- 18:52:37.705 DEBUG [18664]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:52:37.705 SQL [18664]: pgsql_db_connect() -- 18:52:37.719 INFO [18561]: COREGRADE is starting... -- 18:52:37.719 INFO [18561]: Version from config: 1.0 -- 18:52:37.719 DEBUG [18561]: Connecting to database... -- 18:52:37.719 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:52:37.719 SQL [18561]: pgsql_db_connect() -- 18:52:37.709 DEBUG [18664]: Database connection successful -- 18:52:37.709 INFO [18664]: _SERVER found -- 18:52:37.709 INFO [18664]: REMOTE_ADDR = 192.168.1.13 -- 18:52:37.709 INFO [18664]: SERVER_NAME = oameye.works.coregrade.com -- 18:52:37.709 INFO [18664]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=m6havafbqnoebmimk862n2lsidngnh7o -- 18:52:37.709 INFO [18664]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 18:52:37.709 INFO [18664]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:52:37.720 INFO [18664]: COREGRADE is stopping... -- 18:52:37.720 DEBUG [18664]: Closing database connection -- 18:52:37.720 SQL [18664]: pgsql_close() -- 18:52:37.723 DEBUG [18561]: Database connection successful -- 18:52:37.723 INFO [18561]: _SERVER found -- 18:52:37.723 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 18:52:37.723 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 18:52:37.723 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=m6havafbqnoebmimk862n2lsidngnh7o -- 18:52:37.723 INFO [18561]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 18:52:37.723 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:52:37.735 INFO [18561]: COREGRADE is stopping... -- 18:52:37.735 DEBUG [18561]: Closing database connection -- 18:52:37.735 SQL [18561]: pgsql_close() -- 18:52:37.798 INFO [18561]: COREGRADE is starting... -- 18:52:37.798 INFO [18561]: Version from config: 1.0 -- 18:52:37.798 DEBUG [18561]: Connecting to database... -- 18:52:37.798 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:52:37.798 SQL [18561]: pgsql_db_connect() -- 18:52:37.802 DEBUG [18561]: Database connection successful -- 18:52:37.802 INFO [18561]: _SERVER found -- 18:52:37.802 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 18:52:37.802 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 18:52:37.802 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=m6havafbqnoebmimk862n2lsidngnh7o -- 18:52:37.802 INFO [18561]: QUERY_STRING = /app-assets/data/locales/en.json -- 18:52:37.802 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:52:37.815 INFO [18561]: COREGRADE is stopping... -- 18:52:37.815 DEBUG [18561]: Closing database connection -- 18:52:37.815 SQL [18561]: pgsql_close() -- 18:52:42.457 INFO [19357]: COREGRADE is starting... -- 18:52:42.458 INFO [19357]: Version from config: 1.0 -- 18:52:42.458 DEBUG [19357]: Connecting to database... -- 18:52:42.458 DEBUG [19357]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:52:42.458 SQL [19357]: pgsql_db_connect() -- 18:52:42.462 DEBUG [19357]: Database connection successful -- 18:52:42.462 INFO [19357]: _SERVER found -- 18:52:42.462 INFO [19357]: REMOTE_ADDR = 192.168.1.13 -- 18:52:42.462 INFO [19357]: SERVER_NAME = oameye.works.coregrade.com -- 18:52:42.462 INFO [19357]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=m6havafbqnoebmimk862n2lsidngnh7o -- 18:52:42.462 INFO [19357]: QUERY_STRING = /member/viewCardAddAction -- 18:52:42.462 INFO [19357]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:52:42.494 INFO [19357]: COREGRADE is stopping... -- 18:52:42.494 DEBUG [19357]: Closing database connection -- 18:52:42.494 SQL [19357]: pgsql_close() -- 19:10:25.141 INFO [18563]: COREGRADE is starting... -- 19:10:25.141 INFO [18563]: Version from config: 1.0 -- 19:10:25.141 DEBUG [18563]: Connecting to database... -- 19:10:25.141 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:10:25.141 SQL [18563]: pgsql_db_connect() -- 19:10:25.146 DEBUG [18563]: Database connection successful -- 19:10:25.146 INFO [18563]: _SERVER found -- 19:10:25.146 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 19:10:25.146 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 19:10:25.146 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=m6havafbqnoebmimk862n2lsidngnh7o -- 19:10:25.146 INFO [18563]: QUERY_STRING = /member -- 19:10:25.146 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:10:25.191 INFO [18563]: COREGRADE is stopping... -- 19:10:25.192 DEBUG [18563]: Closing database connection -- 19:10:25.192 SQL [18563]: pgsql_close() -- 19:10:25.394 INFO [18563]: COREGRADE is starting... -- 19:10:25.394 INFO [18563]: Version from config: 1.0 -- 19:10:25.394 DEBUG [18563]: Connecting to database... -- 19:10:25.394 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:10:25.394 SQL [18563]: pgsql_db_connect() -- 19:10:25.398 DEBUG [18563]: Database connection successful -- 19:10:25.398 INFO [18563]: _SERVER found -- 19:10:25.398 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 19:10:25.398 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 19:10:25.398 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=r81h3laq7pn0pg2st3t90i4q6kects0c -- 19:10:25.398 INFO [18563]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 19:10:25.398 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:10:25.410 INFO [18563]: COREGRADE is stopping... -- 19:10:25.410 DEBUG [18563]: Closing database connection -- 19:10:25.410 SQL [18563]: pgsql_close() -- 19:10:25.433 INFO [18563]: COREGRADE is starting... -- 19:10:25.433 INFO [18603]: COREGRADE is starting... -- 19:10:25.433 INFO [18563]: Version from config: 1.0 -- 19:10:25.433 DEBUG [18563]: Connecting to database... -- 19:10:25.433 INFO [18603]: Version from config: 1.0 -- 19:10:25.433 DEBUG [18603]: Connecting to database... -- 19:10:25.433 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:10:25.433 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:10:25.433 SQL [18563]: pgsql_db_connect() -- 19:10:25.433 SQL [18603]: pgsql_db_connect() -- 19:10:25.438 DEBUG [18563]: Database connection successful -- 19:10:25.438 INFO [18563]: _SERVER found -- 19:10:25.438 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 19:10:25.438 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 19:10:25.438 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=r81h3laq7pn0pg2st3t90i4q6kects0c -- 19:10:25.438 INFO [18563]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 19:10:25.438 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:10:25.449 INFO [18563]: COREGRADE is stopping... -- 19:10:25.449 DEBUG [18563]: Closing database connection -- 19:10:25.449 SQL [18563]: pgsql_close() -- 19:10:25.439 DEBUG [18603]: Database connection successful -- 19:10:25.439 INFO [18603]: _SERVER found -- 19:10:25.439 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 19:10:25.439 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 19:10:25.439 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=r81h3laq7pn0pg2st3t90i4q6kects0c -- 19:10:25.439 INFO [18603]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:10:25.439 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:10:25.451 INFO [18603]: COREGRADE is stopping... -- 19:10:25.451 DEBUG [18603]: Closing database connection -- 19:10:25.451 SQL [18603]: pgsql_close() -- 19:10:25.507 INFO [18603]: COREGRADE is starting... -- 19:10:25.508 INFO [18603]: Version from config: 1.0 -- 19:10:25.508 DEBUG [18603]: Connecting to database... -- 19:10:25.508 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:10:25.508 SQL [18603]: pgsql_db_connect() -- 19:10:25.512 DEBUG [18603]: Database connection successful -- 19:10:25.512 INFO [18603]: _SERVER found -- 19:10:25.512 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 19:10:25.512 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 19:10:25.512 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=r81h3laq7pn0pg2st3t90i4q6kects0c -- 19:10:25.512 INFO [18603]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:10:25.512 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:10:25.523 INFO [18603]: COREGRADE is stopping... -- 19:10:25.523 DEBUG [18603]: Closing database connection -- 19:10:25.523 SQL [18603]: pgsql_close() -- 19:10:26.451 INFO [18603]: COREGRADE is starting... -- 19:10:26.451 INFO [18603]: Version from config: 1.0 -- 19:10:26.451 DEBUG [18603]: Connecting to database... -- 19:10:26.451 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:10:26.451 SQL [18603]: pgsql_db_connect() -- 19:10:26.456 DEBUG [18603]: Database connection successful -- 19:10:26.456 INFO [18603]: _SERVER found -- 19:10:26.456 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 19:10:26.456 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 19:10:26.456 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=r81h3laq7pn0pg2st3t90i4q6kects0c -- 19:10:26.456 INFO [18603]: QUERY_STRING = /member/page -- 19:10:26.456 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:10:26.499 INFO [18603]: COREGRADE is stopping... -- 19:10:26.499 DEBUG [18603]: Closing database connection -- 19:10:26.499 SQL [18603]: pgsql_close() -- 19:10:26.634 INFO [18603]: COREGRADE is starting... -- 19:10:26.634 INFO [18603]: Version from config: 1.0 -- 19:10:26.634 DEBUG [18603]: Connecting to database... -- 19:10:26.634 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:10:26.634 SQL [18603]: pgsql_db_connect() -- 19:10:26.638 DEBUG [18603]: Database connection successful -- 19:10:26.638 INFO [18603]: _SERVER found -- 19:10:26.638 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 19:10:26.638 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 19:10:26.638 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=r81h3laq7pn0pg2st3t90i4q6kects0c -- 19:10:26.638 INFO [18603]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:10:26.638 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:10:26.650 INFO [18603]: COREGRADE is stopping... -- 19:10:26.650 DEBUG [18603]: Closing database connection -- 19:10:26.650 SQL [18603]: pgsql_close() -- 19:10:26.766 INFO [18603]: COREGRADE is starting... -- 19:10:26.766 INFO [18603]: Version from config: 1.0 -- 19:10:26.766 DEBUG [18603]: Connecting to database... -- 19:10:26.766 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:10:26.766 SQL [18603]: pgsql_db_connect() -- 19:10:26.769 INFO [18563]: COREGRADE is starting... -- 19:10:26.770 INFO [18563]: Version from config: 1.0 -- 19:10:26.770 DEBUG [18563]: Connecting to database... -- 19:10:26.770 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:10:26.770 SQL [18563]: pgsql_db_connect() -- 19:10:26.770 DEBUG [18603]: Database connection successful -- 19:10:26.770 INFO [18603]: _SERVER found -- 19:10:26.770 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 19:10:26.770 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 19:10:26.771 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=r81h3laq7pn0pg2st3t90i4q6kects0c -- 19:10:26.771 INFO [18603]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 19:10:26.771 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:10:26.782 INFO [18603]: COREGRADE is stopping... -- 19:10:26.782 DEBUG [18603]: Closing database connection -- 19:10:26.782 SQL [18603]: pgsql_close() -- 19:10:26.774 DEBUG [18563]: Database connection successful -- 19:10:26.774 INFO [18563]: _SERVER found -- 19:10:26.774 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 19:10:26.774 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 19:10:26.774 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=r81h3laq7pn0pg2st3t90i4q6kects0c -- 19:10:26.774 INFO [18563]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 19:10:26.774 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:10:26.785 INFO [18563]: COREGRADE is stopping... -- 19:10:26.785 DEBUG [18563]: Closing database connection -- 19:10:26.785 SQL [18563]: pgsql_close() -- 19:10:26.813 INFO [18563]: COREGRADE is starting... -- 19:10:26.813 INFO [18563]: Version from config: 1.0 -- 19:10:26.813 DEBUG [18563]: Connecting to database... -- 19:10:26.813 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:10:26.813 SQL [18563]: pgsql_db_connect() -- 19:10:26.817 DEBUG [18563]: Database connection successful -- 19:10:26.817 INFO [18563]: _SERVER found -- 19:10:26.817 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 19:10:26.817 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 19:10:26.817 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=r81h3laq7pn0pg2st3t90i4q6kects0c -- 19:10:26.817 INFO [18563]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:10:26.817 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:10:26.829 INFO [18563]: COREGRADE is stopping... -- 19:10:26.829 DEBUG [18563]: Closing database connection -- 19:10:26.829 SQL [18563]: pgsql_close() -- 19:10:29.549 INFO [18562]: COREGRADE is starting... -- 19:10:29.549 INFO [18562]: Version from config: 1.0 -- 19:10:29.549 DEBUG [18562]: Connecting to database... -- 19:10:29.549 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:10:29.549 SQL [18562]: pgsql_db_connect() -- 19:10:29.553 DEBUG [18562]: Database connection successful -- 19:10:29.553 INFO [18562]: _SERVER found -- 19:10:29.553 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 19:10:29.553 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 19:10:29.553 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=r81h3laq7pn0pg2st3t90i4q6kects0c -- 19:10:29.553 INFO [18562]: QUERY_STRING = /member/viewCardAddAction -- 19:10:29.553 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:10:29.587 INFO [18562]: COREGRADE is stopping... -- 19:10:29.587 DEBUG [18562]: Closing database connection -- 19:10:29.587 SQL [18562]: pgsql_close() -- 19:16:51.132 INFO [18604]: COREGRADE is starting... -- 19:16:51.132 INFO [18604]: Version from config: 1.0 -- 19:16:51.132 DEBUG [18604]: Connecting to database... -- 19:16:51.132 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:16:51.132 SQL [18604]: pgsql_db_connect() -- 19:16:51.136 DEBUG [18604]: Database connection successful -- 19:16:51.136 INFO [18604]: _SERVER found -- 19:16:51.136 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 19:16:51.136 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 19:16:51.136 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=r81h3laq7pn0pg2st3t90i4q6kects0c -- 19:16:51.136 INFO [18604]: QUERY_STRING = /member/page -- 19:16:51.136 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:16:51.181 INFO [18604]: COREGRADE is stopping... -- 19:16:51.181 DEBUG [18604]: Closing database connection -- 19:16:51.181 SQL [18604]: pgsql_close() -- 19:16:51.331 INFO [18604]: COREGRADE is starting... -- 19:16:51.332 INFO [18604]: Version from config: 1.0 -- 19:16:51.332 DEBUG [18604]: Connecting to database... -- 19:16:51.332 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:16:51.332 SQL [18604]: pgsql_db_connect() -- 19:16:51.335 DEBUG [18604]: Database connection successful -- 19:16:51.335 INFO [18604]: _SERVER found -- 19:16:51.335 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 19:16:51.335 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 19:16:51.335 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=fvi14rgf192431u17iuvd2s7vmg1qjde -- 19:16:51.335 INFO [18604]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:16:51.335 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:16:51.347 INFO [18604]: COREGRADE is stopping... -- 19:16:51.347 DEBUG [18604]: Closing database connection -- 19:16:51.347 SQL [18604]: pgsql_close() -- 19:16:51.621 INFO [18604]: COREGRADE is starting... -- 19:16:51.622 INFO [18604]: Version from config: 1.0 -- 19:16:51.622 DEBUG [18604]: Connecting to database... -- 19:16:51.622 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:16:51.622 SQL [18604]: pgsql_db_connect() -- 19:16:51.634 INFO [18600]: COREGRADE is starting... -- 19:16:51.634 INFO [18600]: Version from config: 1.0 -- 19:16:51.634 DEBUG [18600]: Connecting to database... -- 19:16:51.634 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:16:51.634 SQL [18600]: pgsql_db_connect() -- 19:16:51.626 DEBUG [18604]: Database connection successful -- 19:16:51.626 INFO [18604]: _SERVER found -- 19:16:51.626 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 19:16:51.626 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 19:16:51.626 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=fvi14rgf192431u17iuvd2s7vmg1qjde -- 19:16:51.626 INFO [18604]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 19:16:51.626 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:16:51.637 INFO [18604]: COREGRADE is stopping... -- 19:16:51.637 DEBUG [18604]: Closing database connection -- 19:16:51.637 SQL [18604]: pgsql_close() -- 19:16:51.638 DEBUG [18600]: Database connection successful -- 19:16:51.638 INFO [18600]: _SERVER found -- 19:16:51.638 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 19:16:51.638 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 19:16:51.638 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=fvi14rgf192431u17iuvd2s7vmg1qjde -- 19:16:51.638 INFO [18600]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 19:16:51.638 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:16:51.650 INFO [18600]: COREGRADE is stopping... -- 19:16:51.650 DEBUG [18600]: Closing database connection -- 19:16:51.650 SQL [18600]: pgsql_close() -- 19:16:51.697 INFO [18600]: COREGRADE is starting... -- 19:16:51.697 INFO [18600]: Version from config: 1.0 -- 19:16:51.697 DEBUG [18600]: Connecting to database... -- 19:16:51.698 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:16:51.698 SQL [18600]: pgsql_db_connect() -- 19:16:51.701 DEBUG [18600]: Database connection successful -- 19:16:51.701 INFO [18600]: _SERVER found -- 19:16:51.701 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 19:16:51.701 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 19:16:51.701 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=fvi14rgf192431u17iuvd2s7vmg1qjde -- 19:16:51.701 INFO [18600]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:16:51.701 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:16:51.712 INFO [18600]: COREGRADE is stopping... -- 19:16:51.712 DEBUG [18600]: Closing database connection -- 19:16:51.712 SQL [18600]: pgsql_close() -- 19:16:55.406 INFO [18600]: COREGRADE is starting... -- 19:16:55.406 INFO [18600]: Version from config: 1.0 -- 19:16:55.406 DEBUG [18600]: Connecting to database... -- 19:16:55.406 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:16:55.406 SQL [18600]: pgsql_db_connect() -- 19:16:55.411 DEBUG [18600]: Database connection successful -- 19:16:55.411 INFO [18600]: _SERVER found -- 19:16:55.411 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 19:16:55.411 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 19:16:55.411 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=fvi14rgf192431u17iuvd2s7vmg1qjde -- 19:16:55.411 INFO [18600]: QUERY_STRING = /member/viewCardAddAction -- 19:16:55.411 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:16:55.443 INFO [18600]: COREGRADE is stopping... -- 19:16:55.443 DEBUG [18600]: Closing database connection -- 19:16:55.443 SQL [18600]: pgsql_close() -- 19:18:59.786 INFO [18560]: COREGRADE is starting... -- 19:18:59.786 INFO [18560]: Version from config: 1.0 -- 19:18:59.786 DEBUG [18560]: Connecting to database... -- 19:18:59.786 DEBUG [18560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:18:59.786 SQL [18560]: pgsql_db_connect() -- 19:18:59.790 DEBUG [18560]: Database connection successful -- 19:18:59.790 INFO [18560]: _SERVER found -- 19:18:59.790 INFO [18560]: REMOTE_ADDR = 192.168.1.13 -- 19:18:59.790 INFO [18560]: SERVER_NAME = oameye.works.coregrade.com -- 19:18:59.790 INFO [18560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=fvi14rgf192431u17iuvd2s7vmg1qjde -- 19:18:59.790 INFO [18560]: QUERY_STRING = /member/mycalendar -- 19:18:59.790 INFO [18560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:18:59.829 INFO [18560]: COREGRADE is stopping... -- 19:18:59.829 DEBUG [18560]: Closing database connection -- 19:18:59.829 SQL [18560]: pgsql_close() -- 19:18:59.960 INFO [18560]: COREGRADE is starting... -- 19:18:59.960 INFO [18560]: Version from config: 1.0 -- 19:18:59.960 DEBUG [18560]: Connecting to database... -- 19:18:59.960 DEBUG [18560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:18:59.960 SQL [18560]: pgsql_db_connect() -- 19:18:59.964 DEBUG [18560]: Database connection successful -- 19:18:59.964 INFO [18560]: _SERVER found -- 19:18:59.964 INFO [18560]: REMOTE_ADDR = 192.168.1.13 -- 19:18:59.964 INFO [18560]: SERVER_NAME = oameye.works.coregrade.com -- 19:18:59.964 INFO [18560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=fvi14rgf192431u17iuvd2s7vmg1qjde -- 19:18:59.964 INFO [18560]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:18:59.964 INFO [18560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:18:59.975 INFO [18560]: COREGRADE is stopping... -- 19:18:59.975 DEBUG [18560]: Closing database connection -- 19:18:59.975 SQL [18560]: pgsql_close() -- 19:19:00.165 INFO [18560]: COREGRADE is starting... -- 19:19:00.165 INFO [18560]: Version from config: 1.0 -- 19:19:00.165 DEBUG [18560]: Connecting to database... -- 19:19:00.165 DEBUG [18560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:19:00.165 SQL [18560]: pgsql_db_connect() -- 19:19:00.177 INFO [18602]: COREGRADE is starting... -- 19:19:00.178 INFO [18602]: Version from config: 1.0 -- 19:19:00.178 DEBUG [18602]: Connecting to database... -- 19:19:00.178 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:19:00.178 SQL [18602]: pgsql_db_connect() -- 19:19:00.169 DEBUG [18560]: Database connection successful -- 19:19:00.169 INFO [18560]: _SERVER found -- 19:19:00.169 INFO [18560]: REMOTE_ADDR = 192.168.1.13 -- 19:19:00.169 INFO [18560]: SERVER_NAME = oameye.works.coregrade.com -- 19:19:00.169 INFO [18560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=fvi14rgf192431u17iuvd2s7vmg1qjde -- 19:19:00.169 INFO [18560]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 19:19:00.169 INFO [18560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:19:00.180 INFO [18560]: COREGRADE is stopping... -- 19:19:00.181 DEBUG [18560]: Closing database connection -- 19:19:00.181 SQL [18560]: pgsql_close() -- 19:19:00.181 DEBUG [18602]: Database connection successful -- 19:19:00.181 INFO [18602]: _SERVER found -- 19:19:00.181 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 19:19:00.181 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 19:19:00.181 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=fvi14rgf192431u17iuvd2s7vmg1qjde -- 19:19:00.181 INFO [18602]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 19:19:00.181 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:19:00.193 INFO [18602]: COREGRADE is stopping... -- 19:19:00.193 DEBUG [18602]: Closing database connection -- 19:19:00.193 SQL [18602]: pgsql_close() -- 19:19:00.252 INFO [18602]: COREGRADE is starting... -- 19:19:00.252 INFO [18602]: Version from config: 1.0 -- 19:19:00.252 DEBUG [18602]: Connecting to database... -- 19:19:00.252 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:19:00.252 SQL [18602]: pgsql_db_connect() -- 19:19:00.256 DEBUG [18602]: Database connection successful -- 19:19:00.256 INFO [18602]: _SERVER found -- 19:19:00.256 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 19:19:00.256 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 19:19:00.256 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=fvi14rgf192431u17iuvd2s7vmg1qjde -- 19:19:00.256 INFO [18602]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:19:00.256 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:19:00.267 INFO [18602]: COREGRADE is stopping... -- 19:19:00.267 DEBUG [18602]: Closing database connection -- 19:19:00.267 SQL [18602]: pgsql_close() -- 19:19:04.280 INFO [18602]: COREGRADE is starting... -- 19:19:04.280 INFO [18602]: Version from config: 1.0 -- 19:19:04.280 DEBUG [18602]: Connecting to database... -- 19:19:04.280 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:19:04.280 SQL [18602]: pgsql_db_connect() -- 19:19:04.285 DEBUG [18602]: Database connection successful -- 19:19:04.285 INFO [18602]: _SERVER found -- 19:19:04.285 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 19:19:04.285 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 19:19:04.285 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=fvi14rgf192431u17iuvd2s7vmg1qjde -- 19:19:04.285 INFO [18602]: QUERY_STRING = /member -- 19:19:04.285 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:19:04.326 INFO [18602]: COREGRADE is stopping... -- 19:19:04.326 DEBUG [18602]: Closing database connection -- 19:19:04.326 SQL [18602]: pgsql_close() -- 19:19:04.531 INFO [18602]: COREGRADE is starting... -- 19:19:04.532 INFO [18602]: Version from config: 1.0 -- 19:19:04.532 DEBUG [18602]: Connecting to database... -- 19:19:04.532 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:19:04.532 SQL [18602]: pgsql_db_connect() -- 19:19:04.536 DEBUG [18602]: Database connection successful -- 19:19:04.536 INFO [18602]: _SERVER found -- 19:19:04.536 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 19:19:04.536 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 19:19:04.536 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=fvi14rgf192431u17iuvd2s7vmg1qjde -- 19:19:04.536 INFO [18602]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:19:04.536 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:19:04.547 INFO [18602]: COREGRADE is stopping... -- 19:19:04.547 DEBUG [18602]: Closing database connection -- 19:19:04.547 SQL [18602]: pgsql_close() -- 19:19:04.552 INFO [18602]: COREGRADE is starting... -- 19:19:04.552 INFO [18602]: Version from config: 1.0 -- 19:19:04.552 DEBUG [18602]: Connecting to database... -- 19:19:04.552 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:19:04.552 SQL [18602]: pgsql_db_connect() -- 19:19:04.556 INFO [18560]: COREGRADE is starting... -- 19:19:04.556 INFO [18560]: Version from config: 1.0 -- 19:19:04.556 DEBUG [18560]: Connecting to database... -- 19:19:04.556 DEBUG [18560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:19:04.557 SQL [18560]: pgsql_db_connect() -- 19:19:04.557 DEBUG [18602]: Database connection successful -- 19:19:04.557 INFO [18602]: _SERVER found -- 19:19:04.557 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 19:19:04.557 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 19:19:04.557 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=fvi14rgf192431u17iuvd2s7vmg1qjde -- 19:19:04.557 INFO [18602]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 19:19:04.557 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:19:04.568 INFO [18602]: COREGRADE is stopping... -- 19:19:04.568 DEBUG [18602]: Closing database connection -- 19:19:04.568 SQL [18602]: pgsql_close() -- 19:19:04.560 DEBUG [18560]: Database connection successful -- 19:19:04.560 INFO [18560]: _SERVER found -- 19:19:04.560 INFO [18560]: REMOTE_ADDR = 192.168.1.13 -- 19:19:04.560 INFO [18560]: SERVER_NAME = oameye.works.coregrade.com -- 19:19:04.560 INFO [18560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=fvi14rgf192431u17iuvd2s7vmg1qjde -- 19:19:04.560 INFO [18560]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 19:19:04.560 INFO [18560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:19:04.572 INFO [18560]: COREGRADE is stopping... -- 19:19:04.572 DEBUG [18560]: Closing database connection -- 19:19:04.572 SQL [18560]: pgsql_close() -- 19:19:04.623 INFO [18560]: COREGRADE is starting... -- 19:19:04.623 INFO [18560]: Version from config: 1.0 -- 19:19:04.623 DEBUG [18560]: Connecting to database... -- 19:19:04.623 DEBUG [18560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:19:04.623 SQL [18560]: pgsql_db_connect() -- 19:19:04.627 DEBUG [18560]: Database connection successful -- 19:19:04.627 INFO [18560]: _SERVER found -- 19:19:04.627 INFO [18560]: REMOTE_ADDR = 192.168.1.13 -- 19:19:04.627 INFO [18560]: SERVER_NAME = oameye.works.coregrade.com -- 19:19:04.627 INFO [18560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=fvi14rgf192431u17iuvd2s7vmg1qjde -- 19:19:04.627 INFO [18560]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:19:04.627 INFO [18560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:19:04.638 INFO [18560]: COREGRADE is stopping... -- 19:19:04.638 DEBUG [18560]: Closing database connection -- 19:19:04.638 SQL [18560]: pgsql_close() -- 19:19:05.427 INFO [18560]: COREGRADE is starting... -- 19:19:05.428 INFO [18560]: Version from config: 1.0 -- 19:19:05.428 DEBUG [18560]: Connecting to database... -- 19:19:05.428 DEBUG [18560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:19:05.428 SQL [18560]: pgsql_db_connect() -- 19:19:05.432 DEBUG [18560]: Database connection successful -- 19:19:05.432 INFO [18560]: _SERVER found -- 19:19:05.432 INFO [18560]: REMOTE_ADDR = 192.168.1.13 -- 19:19:05.432 INFO [18560]: SERVER_NAME = oameye.works.coregrade.com -- 19:19:05.432 INFO [18560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=fvi14rgf192431u17iuvd2s7vmg1qjde -- 19:19:05.432 INFO [18560]: QUERY_STRING = /member/page -- 19:19:05.432 INFO [18560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:19:05.474 INFO [18560]: COREGRADE is stopping... -- 19:19:05.474 DEBUG [18560]: Closing database connection -- 19:19:05.474 SQL [18560]: pgsql_close() -- 19:19:05.592 INFO [18560]: COREGRADE is starting... -- 19:19:05.592 INFO [18560]: Version from config: 1.0 -- 19:19:05.592 DEBUG [18560]: Connecting to database... -- 19:19:05.592 DEBUG [18560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:19:05.592 SQL [18560]: pgsql_db_connect() -- 19:19:05.596 DEBUG [18560]: Database connection successful -- 19:19:05.596 INFO [18560]: _SERVER found -- 19:19:05.596 INFO [18560]: REMOTE_ADDR = 192.168.1.13 -- 19:19:05.596 INFO [18560]: SERVER_NAME = oameye.works.coregrade.com -- 19:19:05.596 INFO [18560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=fvi14rgf192431u17iuvd2s7vmg1qjde -- 19:19:05.596 INFO [18560]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:19:05.596 INFO [18560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:19:05.607 INFO [18560]: COREGRADE is stopping... -- 19:19:05.607 DEBUG [18560]: Closing database connection -- 19:19:05.607 SQL [18560]: pgsql_close() -- 19:19:05.740 INFO [18560]: COREGRADE is starting... -- 19:19:05.740 INFO [18560]: Version from config: 1.0 -- 19:19:05.740 DEBUG [18560]: Connecting to database... -- 19:19:05.740 DEBUG [18560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:19:05.741 SQL [18560]: pgsql_db_connect() -- 19:19:05.745 INFO [18602]: COREGRADE is starting... -- 19:19:05.746 INFO [18602]: Version from config: 1.0 -- 19:19:05.746 DEBUG [18602]: Connecting to database... -- 19:19:05.746 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:19:05.746 SQL [18602]: pgsql_db_connect() -- 19:19:05.744 DEBUG [18560]: Database connection successful -- 19:19:05.744 INFO [18560]: _SERVER found -- 19:19:05.744 INFO [18560]: REMOTE_ADDR = 192.168.1.13 -- 19:19:05.744 INFO [18560]: SERVER_NAME = oameye.works.coregrade.com -- 19:19:05.744 INFO [18560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=fvi14rgf192431u17iuvd2s7vmg1qjde -- 19:19:05.744 INFO [18560]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 19:19:05.744 INFO [18560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:19:05.756 INFO [18560]: COREGRADE is stopping... -- 19:19:05.756 DEBUG [18560]: Closing database connection -- 19:19:05.756 SQL [18560]: pgsql_close() -- 19:19:05.749 DEBUG [18602]: Database connection successful -- 19:19:05.749 INFO [18602]: _SERVER found -- 19:19:05.749 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 19:19:05.749 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 19:19:05.749 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=fvi14rgf192431u17iuvd2s7vmg1qjde -- 19:19:05.749 INFO [18602]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 19:19:05.749 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:19:05.761 INFO [18602]: COREGRADE is stopping... -- 19:19:05.761 DEBUG [18602]: Closing database connection -- 19:19:05.761 SQL [18602]: pgsql_close() -- 19:19:05.790 INFO [18602]: COREGRADE is starting... -- 19:19:05.791 INFO [18602]: Version from config: 1.0 -- 19:19:05.791 DEBUG [18602]: Connecting to database... -- 19:19:05.791 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:19:05.791 SQL [18602]: pgsql_db_connect() -- 19:19:05.795 DEBUG [18602]: Database connection successful -- 19:19:05.795 INFO [18602]: _SERVER found -- 19:19:05.795 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 19:19:05.795 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 19:19:05.795 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=fvi14rgf192431u17iuvd2s7vmg1qjde -- 19:19:05.795 INFO [18602]: QUERY_STRING = /app-assets/data/locales/en.json -- 19:19:05.795 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:19:05.806 INFO [18602]: COREGRADE is stopping... -- 19:19:05.806 DEBUG [18602]: Closing database connection -- 19:19:05.806 SQL [18602]: pgsql_close() -- 19:19:07.841 INFO [18602]: COREGRADE is starting... -- 19:19:07.842 INFO [18602]: Version from config: 1.0 -- 19:19:07.842 DEBUG [18602]: Connecting to database... -- 19:19:07.842 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:19:07.842 SQL [18602]: pgsql_db_connect() -- 19:19:07.846 DEBUG [18602]: Database connection successful -- 19:19:07.846 INFO [18602]: _SERVER found -- 19:19:07.846 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 19:19:07.846 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 19:19:07.846 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=fvi14rgf192431u17iuvd2s7vmg1qjde -- 19:19:07.846 INFO [18602]: QUERY_STRING = /member/viewCardAddAction -- 19:19:07.846 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:19:07.877 INFO [18602]: COREGRADE is stopping... -- 19:19:07.877 DEBUG [18602]: Closing database connection -- 19:19:07.877 SQL [18602]: pgsql_close() -- 19:20:05.341 INFO [18664]: COREGRADE is starting... -- 19:20:05.341 INFO [18664]: Version from config: 1.0 -- 19:20:05.341 DEBUG [18664]: Connecting to database... -- 19:20:05.341 DEBUG [18664]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:05.341 SQL [18664]: pgsql_db_connect() -- 19:20:05.346 DEBUG [18664]: Database connection successful -- 19:20:05.346 INFO [18664]: _SERVER found -- 19:20:05.346 INFO [18664]: REMOTE_ADDR = 192.168.1.13 -- 19:20:05.346 INFO [18664]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:05.346 INFO [18664]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=fvi14rgf192431u17iuvd2s7vmg1qjde -- 19:20:05.346 INFO [18664]: QUERY_STRING = /member/page -- 19:20:05.346 INFO [18664]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:05.389 INFO [18664]: COREGRADE is stopping... -- 19:20:05.389 DEBUG [18664]: Closing database connection -- 19:20:05.389 SQL [18664]: pgsql_close() -- 19:20:06.006 INFO [18561]: COREGRADE is starting... -- 19:20:06.006 INFO [18561]: Version from config: 1.0 -- 19:20:06.006 DEBUG [18561]: Connecting to database... -- 19:20:06.006 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:06.006 SQL [18561]: pgsql_db_connect() -- 19:20:06.010 DEBUG [18561]: Database connection successful -- 19:20:06.010 INFO [18561]: _SERVER found -- 19:20:06.010 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 19:20:06.010 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:06.010 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=fvi14rgf192431u17iuvd2s7vmg1qjde -- 19:20:06.010 INFO [18561]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:20:06.010 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:06.021 INFO [18561]: COREGRADE is stopping... -- 19:20:06.022 DEBUG [18561]: Closing database connection -- 19:20:06.022 SQL [18561]: pgsql_close() -- 19:20:07.604 INFO [18664]: COREGRADE is starting... -- 19:20:07.604 INFO [18664]: Version from config: 1.0 -- 19:20:07.604 DEBUG [18664]: Connecting to database... -- 19:20:07.605 DEBUG [18664]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:07.605 SQL [18664]: pgsql_db_connect() -- 19:20:07.609 DEBUG [18664]: Database connection successful -- 19:20:07.609 INFO [18664]: _SERVER found -- 19:20:07.609 INFO [18664]: REMOTE_ADDR = 192.168.1.13 -- 19:20:07.609 INFO [18664]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:07.609 INFO [18664]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=fvi14rgf192431u17iuvd2s7vmg1qjde -- 19:20:07.609 INFO [18664]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 19:20:07.609 INFO [18664]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:07.620 INFO [18664]: COREGRADE is stopping... -- 19:20:07.620 DEBUG [18664]: Closing database connection -- 19:20:07.620 SQL [18664]: pgsql_close() -- 19:20:07.628 INFO [18563]: COREGRADE is starting... -- 19:20:07.628 INFO [18563]: Version from config: 1.0 -- 19:20:07.628 DEBUG [18563]: Connecting to database... -- 19:20:07.628 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:07.628 SQL [18563]: pgsql_db_connect() -- 19:20:07.632 DEBUG [18563]: Database connection successful -- 19:20:07.632 INFO [18563]: _SERVER found -- 19:20:07.632 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 19:20:07.632 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:07.632 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=fvi14rgf192431u17iuvd2s7vmg1qjde -- 19:20:07.632 INFO [18563]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 19:20:07.632 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:07.644 INFO [18563]: COREGRADE is stopping... -- 19:20:07.644 DEBUG [18563]: Closing database connection -- 19:20:07.644 SQL [18563]: pgsql_close() -- 19:20:07.661 INFO [18563]: COREGRADE is starting... -- 19:20:07.661 INFO [18563]: Version from config: 1.0 -- 19:20:07.661 DEBUG [18563]: Connecting to database... -- 19:20:07.661 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:07.661 SQL [18563]: pgsql_db_connect() -- 19:20:07.665 DEBUG [18563]: Database connection successful -- 19:20:07.665 INFO [18563]: _SERVER found -- 19:20:07.665 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 19:20:07.665 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:07.665 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=fvi14rgf192431u17iuvd2s7vmg1qjde -- 19:20:07.665 INFO [18563]: QUERY_STRING = /assets2/data/locales/en.json -- 19:20:07.665 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:07.677 INFO [18563]: COREGRADE is stopping... -- 19:20:07.677 DEBUG [18563]: Closing database connection -- 19:20:07.677 SQL [18563]: pgsql_close() -- 19:23:37.859 INFO [18562]: COREGRADE is starting... -- 19:23:37.859 INFO [18562]: Version from config: 1.0 -- 19:23:37.859 DEBUG [18562]: Connecting to database... -- 19:23:37.859 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:23:37.859 SQL [18562]: pgsql_db_connect() -- 19:23:37.863 DEBUG [18562]: Database connection successful -- 19:23:37.863 INFO [18562]: _SERVER found -- 19:23:37.863 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 19:23:37.863 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 19:23:37.863 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=fvi14rgf192431u17iuvd2s7vmg1qjde -- 19:23:37.863 INFO [18562]: QUERY_STRING = /member/page -- 19:23:37.863 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:23:37.909 INFO [18562]: COREGRADE is stopping... -- 19:23:37.909 DEBUG [18562]: Closing database connection -- 19:23:37.909 SQL [18562]: pgsql_close() -- 19:23:38.161 INFO [18600]: COREGRADE is starting... -- 19:23:38.162 INFO [18600]: Version from config: 1.0 -- 19:23:38.162 DEBUG [18600]: Connecting to database... -- 19:23:38.162 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:23:38.162 SQL [18600]: pgsql_db_connect() -- 19:23:38.166 DEBUG [18600]: Database connection successful -- 19:23:38.166 INFO [18600]: _SERVER found -- 19:23:38.166 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 19:23:38.166 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 19:23:38.166 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=jvn0dgv7v3km2p6bnuaftgmvj88u4238 -- 19:23:38.166 INFO [18600]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:23:38.166 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:23:38.177 INFO [18600]: COREGRADE is stopping... -- 19:23:38.178 DEBUG [18600]: Closing database connection -- 19:23:38.178 SQL [18600]: pgsql_close() -- 19:23:38.266 INFO [18600]: COREGRADE is starting... -- 19:23:38.267 INFO [18600]: Version from config: 1.0 -- 19:23:38.267 DEBUG [18600]: Connecting to database... -- 19:23:38.267 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:23:38.267 SQL [18600]: pgsql_db_connect() -- 19:23:38.270 DEBUG [18600]: Database connection successful -- 19:23:38.270 INFO [18600]: _SERVER found -- 19:23:38.270 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 19:23:38.270 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 19:23:38.270 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=jvn0dgv7v3km2p6bnuaftgmvj88u4238 -- 19:23:38.270 INFO [18600]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 19:23:38.270 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:23:38.282 INFO [18600]: COREGRADE is stopping... -- 19:23:38.282 DEBUG [18600]: Closing database connection -- 19:23:38.282 SQL [18600]: pgsql_close() -- 19:23:38.454 INFO [18600]: COREGRADE is starting... -- 19:23:38.454 INFO [18600]: Version from config: 1.0 -- 19:23:38.454 DEBUG [18600]: Connecting to database... -- 19:23:38.454 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:23:38.454 SQL [18600]: pgsql_db_connect() -- 19:23:38.459 DEBUG [18600]: Database connection successful -- 19:23:38.459 INFO [18600]: _SERVER found -- 19:23:38.459 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 19:23:38.459 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 19:23:38.459 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=jvn0dgv7v3km2p6bnuaftgmvj88u4238 -- 19:23:38.459 INFO [18600]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 19:23:38.459 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:23:38.470 INFO [18600]: COREGRADE is stopping... -- 19:23:38.470 DEBUG [18600]: Closing database connection -- 19:23:38.470 SQL [18600]: pgsql_close() -- 19:23:46.118 INFO [18602]: COREGRADE is starting... -- 19:23:46.119 INFO [18602]: Version from config: 1.0 -- 19:23:46.119 DEBUG [18602]: Connecting to database... -- 19:23:46.119 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:23:46.119 SQL [18602]: pgsql_db_connect() -- 19:23:46.123 DEBUG [18602]: Database connection successful -- 19:23:46.123 INFO [18602]: _SERVER found -- 19:23:46.123 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 19:23:46.123 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 19:23:46.123 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=jvn0dgv7v3km2p6bnuaftgmvj88u4238 -- 19:23:46.123 INFO [18602]: QUERY_STRING = /member/viewCardAddAction -- 19:23:46.123 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:23:46.154 INFO [18602]: COREGRADE is stopping... -- 19:23:46.155 DEBUG [18602]: Closing database connection -- 19:23:46.155 SQL [18602]: pgsql_close() -- 19:28:18.403 INFO [19357]: COREGRADE is starting... -- 19:28:18.403 INFO [19357]: Version from config: 1.0 -- 19:28:18.403 DEBUG [19357]: Connecting to database... -- 19:28:18.403 DEBUG [19357]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:28:18.403 SQL [19357]: pgsql_db_connect() -- 19:28:18.407 DEBUG [19357]: Database connection successful -- 19:28:18.407 INFO [19357]: _SERVER found -- 19:28:18.407 INFO [19357]: REMOTE_ADDR = 192.168.1.13 -- 19:28:18.407 INFO [19357]: SERVER_NAME = oameye.works.coregrade.com -- 19:28:18.407 INFO [19357]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=jvn0dgv7v3km2p6bnuaftgmvj88u4238 -- 19:28:18.407 INFO [19357]: QUERY_STRING = /member/page -- 19:28:18.407 INFO [19357]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:28:18.452 INFO [19357]: COREGRADE is stopping... -- 19:28:18.452 DEBUG [19357]: Closing database connection -- 19:28:18.452 SQL [19357]: pgsql_close() -- 19:28:18.592 INFO [19357]: COREGRADE is starting... -- 19:28:18.592 INFO [19357]: Version from config: 1.0 -- 19:28:18.592 DEBUG [19357]: Connecting to database... -- 19:28:18.592 DEBUG [19357]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:28:18.592 SQL [19357]: pgsql_db_connect() -- 19:28:18.596 DEBUG [19357]: Database connection successful -- 19:28:18.596 INFO [19357]: _SERVER found -- 19:28:18.596 INFO [19357]: REMOTE_ADDR = 192.168.1.13 -- 19:28:18.596 INFO [19357]: SERVER_NAME = oameye.works.coregrade.com -- 19:28:18.596 INFO [19357]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=jvn0dgv7v3km2p6bnuaftgmvj88u4238 -- 19:28:18.596 INFO [19357]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:28:18.596 INFO [19357]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:28:18.607 INFO [19357]: COREGRADE is stopping... -- 19:28:18.607 DEBUG [19357]: Closing database connection -- 19:28:18.607 SQL [19357]: pgsql_close() -- 19:28:18.810 INFO [19357]: COREGRADE is starting... -- 19:28:18.810 INFO [19357]: Version from config: 1.0 -- 19:28:18.810 DEBUG [19357]: Connecting to database... -- 19:28:18.810 DEBUG [19357]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:28:18.810 SQL [19357]: pgsql_db_connect() -- 19:28:18.819 INFO [18603]: COREGRADE is starting... -- 19:28:18.820 INFO [18603]: Version from config: 1.0 -- 19:28:18.820 DEBUG [18603]: Connecting to database... -- 19:28:18.820 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:28:18.820 SQL [18603]: pgsql_db_connect() -- 19:28:18.814 DEBUG [19357]: Database connection successful -- 19:28:18.814 INFO [19357]: _SERVER found -- 19:28:18.814 INFO [19357]: REMOTE_ADDR = 192.168.1.13 -- 19:28:18.814 INFO [19357]: SERVER_NAME = oameye.works.coregrade.com -- 19:28:18.814 INFO [19357]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=jvn0dgv7v3km2p6bnuaftgmvj88u4238 -- 19:28:18.814 INFO [19357]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 19:28:18.814 INFO [19357]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:28:18.825 INFO [19357]: COREGRADE is stopping... -- 19:28:18.825 DEBUG [19357]: Closing database connection -- 19:28:18.825 SQL [19357]: pgsql_close() -- 19:28:18.824 DEBUG [18603]: Database connection successful -- 19:28:18.824 INFO [18603]: _SERVER found -- 19:28:18.824 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 19:28:18.824 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 19:28:18.824 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=jvn0dgv7v3km2p6bnuaftgmvj88u4238 -- 19:28:18.824 INFO [18603]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 19:28:18.824 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:28:18.836 INFO [18603]: COREGRADE is stopping... -- 19:28:18.836 DEBUG [18603]: Closing database connection -- 19:28:18.836 SQL [18603]: pgsql_close() -- 19:28:21.907 INFO [18561]: COREGRADE is starting... -- 19:28:21.907 INFO [18561]: Version from config: 1.0 -- 19:28:21.907 DEBUG [18561]: Connecting to database... -- 19:28:21.907 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:28:21.907 SQL [18561]: pgsql_db_connect() -- 19:28:21.911 DEBUG [18561]: Database connection successful -- 19:28:21.911 INFO [18561]: _SERVER found -- 19:28:21.911 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 19:28:21.911 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 19:28:21.911 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=jvn0dgv7v3km2p6bnuaftgmvj88u4238 -- 19:28:21.911 INFO [18561]: QUERY_STRING = /member/viewCardAddAction -- 19:28:21.911 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:28:21.944 INFO [18561]: COREGRADE is stopping... -- 19:28:21.944 DEBUG [18561]: Closing database connection -- 19:28:21.944 SQL [18561]: pgsql_close() -- 19:28:52.154 INFO [18664]: COREGRADE is starting... -- 19:28:52.155 INFO [18664]: Version from config: 1.0 -- 19:28:52.155 DEBUG [18664]: Connecting to database... -- 19:28:52.155 DEBUG [18664]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:28:52.155 SQL [18664]: pgsql_db_connect() -- 19:28:52.159 DEBUG [18664]: Database connection successful -- 19:28:52.159 INFO [18664]: _SERVER found -- 19:28:52.159 INFO [18664]: REMOTE_ADDR = 192.168.1.13 -- 19:28:52.159 INFO [18664]: SERVER_NAME = oameye.works.coregrade.com -- 19:28:52.159 INFO [18664]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=jvn0dgv7v3km2p6bnuaftgmvj88u4238 -- 19:28:52.159 INFO [18664]: QUERY_STRING = /member/page -- 19:28:52.159 INFO [18664]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:28:52.202 INFO [18664]: COREGRADE is stopping... -- 19:28:52.202 DEBUG [18664]: Closing database connection -- 19:28:52.202 SQL [18664]: pgsql_close() -- 19:28:52.326 INFO [18664]: COREGRADE is starting... -- 19:28:52.326 INFO [18664]: Version from config: 1.0 -- 19:28:52.326 DEBUG [18664]: Connecting to database... -- 19:28:52.326 DEBUG [18664]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:28:52.326 SQL [18664]: pgsql_db_connect() -- 19:28:52.330 DEBUG [18664]: Database connection successful -- 19:28:52.330 INFO [18664]: _SERVER found -- 19:28:52.330 INFO [18664]: REMOTE_ADDR = 192.168.1.13 -- 19:28:52.330 INFO [18664]: SERVER_NAME = oameye.works.coregrade.com -- 19:28:52.330 INFO [18664]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=b7cgl1mrod6e8aph4k03evncn3q3hkt3 -- 19:28:52.330 INFO [18664]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:28:52.330 INFO [18664]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:28:52.341 INFO [18664]: COREGRADE is stopping... -- 19:28:52.341 DEBUG [18664]: Closing database connection -- 19:28:52.341 SQL [18664]: pgsql_close() -- 19:28:52.500 INFO [18664]: COREGRADE is starting... -- 19:28:52.500 INFO [18664]: Version from config: 1.0 -- 19:28:52.500 DEBUG [18664]: Connecting to database... -- 19:28:52.500 DEBUG [18664]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:28:52.500 SQL [18664]: pgsql_db_connect() -- 19:28:52.504 DEBUG [18664]: Database connection successful -- 19:28:52.504 INFO [18664]: _SERVER found -- 19:28:52.504 INFO [18664]: REMOTE_ADDR = 192.168.1.13 -- 19:28:52.504 INFO [18664]: SERVER_NAME = oameye.works.coregrade.com -- 19:28:52.504 INFO [18664]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=b7cgl1mrod6e8aph4k03evncn3q3hkt3 -- 19:28:52.504 INFO [18664]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 19:28:52.504 INFO [18664]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:28:52.515 INFO [18664]: COREGRADE is stopping... -- 19:28:52.515 DEBUG [18664]: Closing database connection -- 19:28:52.515 SQL [18664]: pgsql_close() -- 19:28:58.924 INFO [18563]: COREGRADE is starting... -- 19:28:58.924 INFO [18563]: Version from config: 1.0 -- 19:28:58.925 DEBUG [18563]: Connecting to database... -- 19:28:58.925 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:28:58.925 SQL [18563]: pgsql_db_connect() -- 19:28:58.929 DEBUG [18563]: Database connection successful -- 19:28:58.929 INFO [18563]: _SERVER found -- 19:28:58.929 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 19:28:58.929 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 19:28:58.929 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=b7cgl1mrod6e8aph4k03evncn3q3hkt3 -- 19:28:58.929 INFO [18563]: QUERY_STRING = /member/page -- 19:28:58.929 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:28:58.972 INFO [18563]: COREGRADE is stopping... -- 19:28:58.972 DEBUG [18563]: Closing database connection -- 19:28:58.972 SQL [18563]: pgsql_close() -- 19:28:59.139 INFO [18563]: COREGRADE is starting... -- 19:28:59.139 INFO [18563]: Version from config: 1.0 -- 19:28:59.139 DEBUG [18563]: Connecting to database... -- 19:28:59.139 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:28:59.139 SQL [18563]: pgsql_db_connect() -- 19:28:59.143 DEBUG [18563]: Database connection successful -- 19:28:59.143 INFO [18563]: _SERVER found -- 19:28:59.143 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 19:28:59.143 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 19:28:59.143 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=b7cgl1mrod6e8aph4k03evncn3q3hkt3 -- 19:28:59.143 INFO [18563]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:28:59.143 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:28:59.155 INFO [18563]: COREGRADE is stopping... -- 19:28:59.155 DEBUG [18563]: Closing database connection -- 19:28:59.155 SQL [18563]: pgsql_close() -- 19:28:59.367 INFO [18562]: COREGRADE is starting... -- 19:28:59.367 INFO [18562]: Version from config: 1.0 -- 19:28:59.367 DEBUG [18562]: Connecting to database... -- 19:28:59.367 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:28:59.367 SQL [18562]: pgsql_db_connect() -- 19:28:59.371 DEBUG [18562]: Database connection successful -- 19:28:59.371 INFO [18562]: _SERVER found -- 19:28:59.371 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 19:28:59.371 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 19:28:59.371 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=b7cgl1mrod6e8aph4k03evncn3q3hkt3 -- 19:28:59.371 INFO [18562]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 19:28:59.371 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:28:59.382 INFO [18562]: COREGRADE is stopping... -- 19:28:59.382 DEBUG [18562]: Closing database connection -- 19:28:59.382 SQL [18562]: pgsql_close() -- 19:29:40.344 INFO [18604]: COREGRADE is starting... -- 19:29:40.344 INFO [18604]: Version from config: 1.0 -- 19:29:40.344 DEBUG [18604]: Connecting to database... -- 19:29:40.344 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:40.344 SQL [18604]: pgsql_db_connect() -- 19:29:40.348 DEBUG [18604]: Database connection successful -- 19:29:40.348 INFO [18604]: _SERVER found -- 19:29:40.348 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 19:29:40.348 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 19:29:40.348 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=b7cgl1mrod6e8aph4k03evncn3q3hkt3 -- 19:29:40.348 INFO [18604]: QUERY_STRING = /member/page -- 19:29:40.348 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:29:40.392 INFO [18604]: COREGRADE is stopping... -- 19:29:40.392 DEBUG [18604]: Closing database connection -- 19:29:40.392 SQL [18604]: pgsql_close() -- 19:29:40.546 INFO [18604]: COREGRADE is starting... -- 19:29:40.546 INFO [18604]: Version from config: 1.0 -- 19:29:40.546 DEBUG [18604]: Connecting to database... -- 19:29:40.546 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:40.546 SQL [18604]: pgsql_db_connect() -- 19:29:40.550 DEBUG [18604]: Database connection successful -- 19:29:40.550 INFO [18604]: _SERVER found -- 19:29:40.550 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 19:29:40.550 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 19:29:40.550 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=b7cgl1mrod6e8aph4k03evncn3q3hkt3 -- 19:29:40.550 INFO [18604]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:29:40.550 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:29:40.561 INFO [18604]: COREGRADE is stopping... -- 19:29:40.562 DEBUG [18604]: Closing database connection -- 19:29:40.562 SQL [18604]: pgsql_close() -- 19:29:40.745 INFO [18604]: COREGRADE is starting... -- 19:29:40.746 INFO [18604]: Version from config: 1.0 -- 19:29:40.746 DEBUG [18604]: Connecting to database... -- 19:29:40.746 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:40.746 SQL [18604]: pgsql_db_connect() -- 19:29:40.754 INFO [18560]: COREGRADE is starting... -- 19:29:40.755 INFO [18560]: Version from config: 1.0 -- 19:29:40.755 DEBUG [18560]: Connecting to database... -- 19:29:40.755 DEBUG [18560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:40.755 SQL [18560]: pgsql_db_connect() -- 19:29:40.753 DEBUG [18604]: Database connection successful -- 19:29:40.753 INFO [18604]: _SERVER found -- 19:29:40.753 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 19:29:40.753 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 19:29:40.753 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=b7cgl1mrod6e8aph4k03evncn3q3hkt3 -- 19:29:40.753 INFO [18604]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 19:29:40.753 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:29:40.767 INFO [18604]: COREGRADE is stopping... -- 19:29:40.767 DEBUG [18604]: Closing database connection -- 19:29:40.767 SQL [18604]: pgsql_close() -- 19:29:40.767 DEBUG [18560]: Database connection successful -- 19:29:40.767 INFO [18560]: _SERVER found -- 19:29:40.767 INFO [18560]: REMOTE_ADDR = 192.168.1.13 -- 19:29:40.767 INFO [18560]: SERVER_NAME = oameye.works.coregrade.com -- 19:29:40.767 INFO [18560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=b7cgl1mrod6e8aph4k03evncn3q3hkt3 -- 19:29:40.767 INFO [18560]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 19:29:40.767 INFO [18560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:29:40.781 INFO [18560]: COREGRADE is stopping... -- 19:29:40.781 DEBUG [18560]: Closing database connection -- 19:29:40.781 SQL [18560]: pgsql_close() -- 19:29:43.383 INFO [18560]: COREGRADE is starting... -- 19:29:43.383 INFO [18560]: Version from config: 1.0 -- 19:29:43.383 DEBUG [18560]: Connecting to database... -- 19:29:43.383 DEBUG [18560]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:43.383 SQL [18560]: pgsql_db_connect() -- 19:29:43.387 DEBUG [18560]: Database connection successful -- 19:29:43.387 INFO [18560]: _SERVER found -- 19:29:43.387 INFO [18560]: REMOTE_ADDR = 192.168.1.13 -- 19:29:43.387 INFO [18560]: SERVER_NAME = oameye.works.coregrade.com -- 19:29:43.387 INFO [18560]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=b7cgl1mrod6e8aph4k03evncn3q3hkt3 -- 19:29:43.387 INFO [18560]: QUERY_STRING = /member/viewCardAddAction -- 19:29:43.387 INFO [18560]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:29:43.419 INFO [18560]: COREGRADE is stopping... -- 19:29:43.419 DEBUG [18560]: Closing database connection -- 19:29:43.419 SQL [18560]: pgsql_close() -- 19:30:20.751 INFO [18600]: COREGRADE is starting... -- 19:30:20.751 INFO [18600]: Version from config: 1.0 -- 19:30:20.751 DEBUG [18600]: Connecting to database... -- 19:30:20.751 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:30:20.751 SQL [18600]: pgsql_db_connect() -- 19:30:20.755 DEBUG [18600]: Database connection successful -- 19:30:20.755 INFO [18600]: _SERVER found -- 19:30:20.755 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 19:30:20.755 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 19:30:20.755 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=b7cgl1mrod6e8aph4k03evncn3q3hkt3 -- 19:30:20.755 INFO [18600]: QUERY_STRING = /member/page -- 19:30:20.755 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:30:20.798 INFO [18600]: COREGRADE is stopping... -- 19:30:20.798 DEBUG [18600]: Closing database connection -- 19:30:20.798 SQL [18600]: pgsql_close() -- 19:30:20.930 INFO [18600]: COREGRADE is starting... -- 19:30:20.930 INFO [18600]: Version from config: 1.0 -- 19:30:20.930 DEBUG [18600]: Connecting to database... -- 19:30:20.930 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:30:20.930 SQL [18600]: pgsql_db_connect() -- 19:30:20.934 DEBUG [18600]: Database connection successful -- 19:30:20.934 INFO [18600]: _SERVER found -- 19:30:20.934 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 19:30:20.934 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 19:30:20.934 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=b7cgl1mrod6e8aph4k03evncn3q3hkt3 -- 19:30:20.934 INFO [18600]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:30:20.934 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:30:20.945 INFO [18600]: COREGRADE is stopping... -- 19:30:20.945 DEBUG [18600]: Closing database connection -- 19:30:20.945 SQL [18600]: pgsql_close() -- 19:30:21.159 INFO [18600]: COREGRADE is starting... -- 19:30:21.159 INFO [18600]: Version from config: 1.0 -- 19:30:21.159 DEBUG [18600]: Connecting to database... -- 19:30:21.160 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:30:21.160 SQL [18600]: pgsql_db_connect() -- 19:30:21.168 INFO [18602]: COREGRADE is starting... -- 19:30:21.168 INFO [18602]: Version from config: 1.0 -- 19:30:21.168 DEBUG [18602]: Connecting to database... -- 19:30:21.168 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:30:21.168 SQL [18602]: pgsql_db_connect() -- 19:30:21.163 DEBUG [18600]: Database connection successful -- 19:30:21.163 INFO [18600]: _SERVER found -- 19:30:21.163 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 19:30:21.163 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 19:30:21.163 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=b7cgl1mrod6e8aph4k03evncn3q3hkt3 -- 19:30:21.163 INFO [18600]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 19:30:21.163 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:30:21.175 INFO [18600]: COREGRADE is stopping... -- 19:30:21.175 DEBUG [18600]: Closing database connection -- 19:30:21.175 SQL [18600]: pgsql_close() -- 19:30:21.172 DEBUG [18602]: Database connection successful -- 19:30:21.172 INFO [18602]: _SERVER found -- 19:30:21.172 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 19:30:21.172 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 19:30:21.172 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=b7cgl1mrod6e8aph4k03evncn3q3hkt3 -- 19:30:21.172 INFO [18602]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 19:30:21.172 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:30:21.184 INFO [18602]: COREGRADE is stopping... -- 19:30:21.184 DEBUG [18602]: Closing database connection -- 19:30:21.184 SQL [18602]: pgsql_close() -- 19:30:23.440 INFO [18602]: COREGRADE is starting... -- 19:30:23.440 INFO [18602]: Version from config: 1.0 -- 19:30:23.440 DEBUG [18602]: Connecting to database... -- 19:30:23.440 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:30:23.440 SQL [18602]: pgsql_db_connect() -- 19:30:23.444 DEBUG [18602]: Database connection successful -- 19:30:23.444 INFO [18602]: _SERVER found -- 19:30:23.444 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 19:30:23.444 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 19:30:23.444 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=b7cgl1mrod6e8aph4k03evncn3q3hkt3 -- 19:30:23.444 INFO [18602]: QUERY_STRING = /member/viewCardAddAction -- 19:30:23.444 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:30:23.475 INFO [18602]: COREGRADE is stopping... -- 19:30:23.475 DEBUG [18602]: Closing database connection -- 19:30:23.475 SQL [18602]: pgsql_close() -- 19:30:31.419 INFO [18603]: COREGRADE is starting... -- 19:30:31.419 INFO [18603]: Version from config: 1.0 -- 19:30:31.419 DEBUG [18603]: Connecting to database... -- 19:30:31.419 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:30:31.419 SQL [18603]: pgsql_db_connect() -- 19:30:31.423 DEBUG [18603]: Database connection successful -- 19:30:31.423 INFO [18603]: _SERVER found -- 19:30:31.423 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 19:30:31.423 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 19:30:31.423 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=b7cgl1mrod6e8aph4k03evncn3q3hkt3 -- 19:30:31.423 INFO [18603]: QUERY_STRING = /member/page -- 19:30:31.423 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:30:31.465 INFO [18603]: COREGRADE is stopping... -- 19:30:31.465 DEBUG [18603]: Closing database connection -- 19:30:31.465 SQL [18603]: pgsql_close() -- 19:30:31.774 INFO [18603]: COREGRADE is starting... -- 19:30:31.775 INFO [18603]: Version from config: 1.0 -- 19:30:31.775 DEBUG [18603]: Connecting to database... -- 19:30:31.775 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:30:31.775 SQL [18603]: pgsql_db_connect() -- 19:30:31.779 DEBUG [18603]: Database connection successful -- 19:30:31.779 INFO [18603]: _SERVER found -- 19:30:31.779 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 19:30:31.779 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 19:30:31.779 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=b7cgl1mrod6e8aph4k03evncn3q3hkt3 -- 19:30:31.779 INFO [18603]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:30:31.779 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:30:31.790 INFO [18603]: COREGRADE is stopping... -- 19:30:31.790 DEBUG [18603]: Closing database connection -- 19:30:31.790 SQL [18603]: pgsql_close() -- 19:30:31.996 INFO [18603]: COREGRADE is starting... -- 19:30:31.996 INFO [18603]: Version from config: 1.0 -- 19:30:31.996 DEBUG [18603]: Connecting to database... -- 19:30:31.996 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:30:31.996 SQL [18603]: pgsql_db_connect() -- 19:30:32.000 DEBUG [18603]: Database connection successful -- 19:30:32.000 INFO [18603]: _SERVER found -- 19:30:32.000 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 19:30:32.000 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 19:30:32.000 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=b7cgl1mrod6e8aph4k03evncn3q3hkt3 -- 19:30:32.000 INFO [18603]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 19:30:32.000 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:30:32.011 INFO [18603]: COREGRADE is stopping... -- 19:30:32.011 DEBUG [18603]: Closing database connection -- 19:30:32.011 SQL [18603]: pgsql_close() -- 19:30:32.181 INFO [18603]: COREGRADE is starting... -- 19:30:32.182 INFO [18603]: Version from config: 1.0 -- 19:30:32.182 DEBUG [18603]: Connecting to database... -- 19:30:32.182 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:30:32.182 SQL [18603]: pgsql_db_connect() -- 19:30:32.186 DEBUG [18603]: Database connection successful -- 19:30:32.186 INFO [18603]: _SERVER found -- 19:30:32.186 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 19:30:32.186 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 19:30:32.186 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=b7cgl1mrod6e8aph4k03evncn3q3hkt3 -- 19:30:32.186 INFO [18603]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 19:30:32.186 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:30:32.197 INFO [18603]: COREGRADE is stopping... -- 19:30:32.197 DEBUG [18603]: Closing database connection -- 19:30:32.197 SQL [18603]: pgsql_close() -- 19:30:34.340 INFO [18603]: COREGRADE is starting... -- 19:30:34.340 INFO [18603]: Version from config: 1.0 -- 19:30:34.340 DEBUG [18603]: Connecting to database... -- 19:30:34.340 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:30:34.340 SQL [18603]: pgsql_db_connect() -- 19:30:34.344 DEBUG [18603]: Database connection successful -- 19:30:34.344 INFO [18603]: _SERVER found -- 19:30:34.344 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 19:30:34.344 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 19:30:34.344 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=b7cgl1mrod6e8aph4k03evncn3q3hkt3 -- 19:30:34.344 INFO [18603]: QUERY_STRING = /member/viewCardAddAction -- 19:30:34.344 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:30:34.375 INFO [18603]: COREGRADE is stopping... -- 19:30:34.375 DEBUG [18603]: Closing database connection -- 19:30:34.375 SQL [18603]: pgsql_close() -- 19:31:40.110 INFO [19357]: COREGRADE is starting... -- 19:31:40.110 INFO [19357]: Version from config: 1.0 -- 19:31:40.110 DEBUG [19357]: Connecting to database... -- 19:31:40.110 DEBUG [19357]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:31:40.110 SQL [19357]: pgsql_db_connect() -- 19:31:40.114 DEBUG [19357]: Database connection successful -- 19:31:40.114 INFO [19357]: _SERVER found -- 19:31:40.114 INFO [19357]: REMOTE_ADDR = 192.168.1.13 -- 19:31:40.114 INFO [19357]: SERVER_NAME = oameye.works.coregrade.com -- 19:31:40.114 INFO [19357]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=b7cgl1mrod6e8aph4k03evncn3q3hkt3 -- 19:31:40.114 INFO [19357]: QUERY_STRING = /member/page -- 19:31:40.114 INFO [19357]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:31:40.157 INFO [19357]: COREGRADE is stopping... -- 19:31:40.157 DEBUG [19357]: Closing database connection -- 19:31:40.157 SQL [19357]: pgsql_close() -- 19:31:40.791 INFO [18604]: COREGRADE is starting... -- 19:31:40.792 INFO [18604]: Version from config: 1.0 -- 19:31:40.792 DEBUG [18604]: Connecting to database... -- 19:31:40.792 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:31:40.792 SQL [18604]: pgsql_db_connect() -- 19:31:40.796 DEBUG [18604]: Database connection successful -- 19:31:40.796 INFO [18604]: _SERVER found -- 19:31:40.796 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 19:31:40.796 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 19:31:40.796 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=b7cgl1mrod6e8aph4k03evncn3q3hkt3 -- 19:31:40.796 INFO [18604]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:31:40.796 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:31:40.807 INFO [18604]: COREGRADE is stopping... -- 19:31:40.807 DEBUG [18604]: Closing database connection -- 19:31:40.807 SQL [18604]: pgsql_close() -- 19:31:41.581 INFO [18562]: COREGRADE is starting... -- 19:31:41.581 INFO [18562]: Version from config: 1.0 -- 19:31:41.581 DEBUG [18562]: Connecting to database... -- 19:31:41.581 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:31:41.581 SQL [18562]: pgsql_db_connect() -- 19:31:41.585 DEBUG [18562]: Database connection successful -- 19:31:41.585 INFO [18562]: _SERVER found -- 19:31:41.585 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 19:31:41.585 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 19:31:41.585 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=b7cgl1mrod6e8aph4k03evncn3q3hkt3 -- 19:31:41.585 INFO [18562]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 19:31:41.585 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:31:41.601 INFO [18562]: COREGRADE is stopping... -- 19:31:41.601 DEBUG [18562]: Closing database connection -- 19:31:41.601 SQL [18562]: pgsql_close() -- 19:31:42.155 INFO [18562]: COREGRADE is starting... -- 19:31:42.155 INFO [18562]: Version from config: 1.0 -- 19:31:42.155 DEBUG [18562]: Connecting to database... -- 19:31:42.155 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:31:42.155 SQL [18562]: pgsql_db_connect() -- 19:31:42.159 DEBUG [18562]: Database connection successful -- 19:31:42.159 INFO [18562]: _SERVER found -- 19:31:42.159 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 19:31:42.159 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 19:31:42.159 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=b7cgl1mrod6e8aph4k03evncn3q3hkt3 -- 19:31:42.159 INFO [18562]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 19:31:42.159 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:31:42.170 INFO [18562]: COREGRADE is stopping... -- 19:31:42.170 DEBUG [18562]: Closing database connection -- 19:31:42.170 SQL [18562]: pgsql_close() -- 19:31:43.640 INFO [18563]: COREGRADE is starting... -- 19:31:43.641 INFO [18563]: Version from config: 1.0 -- 19:31:43.641 DEBUG [18563]: Connecting to database... -- 19:31:43.641 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:31:43.641 SQL [18563]: pgsql_db_connect() -- 19:31:43.645 DEBUG [18563]: Database connection successful -- 19:31:43.645 INFO [18563]: _SERVER found -- 19:31:43.645 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 19:31:43.645 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 19:31:43.645 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=b7cgl1mrod6e8aph4k03evncn3q3hkt3 -- 19:31:43.645 INFO [18563]: QUERY_STRING = /member/viewCardAddAction -- 19:31:43.645 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:31:43.676 INFO [18563]: COREGRADE is stopping... -- 19:31:43.676 DEBUG [18563]: Closing database connection -- 19:31:43.676 SQL [18563]: pgsql_close() -- 19:33:58.163 INFO [18600]: COREGRADE is starting... -- 19:33:58.164 INFO [18600]: Version from config: 1.0 -- 19:33:58.164 DEBUG [18600]: Connecting to database... -- 19:33:58.164 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:33:58.164 SQL [18600]: pgsql_db_connect() -- 19:33:58.168 DEBUG [18600]: Database connection successful -- 19:33:58.168 INFO [18600]: _SERVER found -- 19:33:58.168 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 19:33:58.168 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 19:33:58.168 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=b7cgl1mrod6e8aph4k03evncn3q3hkt3 -- 19:33:58.168 INFO [18600]: QUERY_STRING = /member/page -- 19:33:58.168 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:33:58.211 INFO [18600]: COREGRADE is stopping... -- 19:33:58.211 DEBUG [18600]: Closing database connection -- 19:33:58.211 SQL [18600]: pgsql_close() -- 19:33:58.469 INFO [18602]: COREGRADE is starting... -- 19:33:58.469 INFO [18602]: Version from config: 1.0 -- 19:33:58.469 DEBUG [18602]: Connecting to database... -- 19:33:58.469 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:33:58.469 SQL [18602]: pgsql_db_connect() -- 19:33:58.498 INFO [18603]: COREGRADE is starting... -- 19:33:58.498 INFO [18603]: Version from config: 1.0 -- 19:33:58.498 DEBUG [18603]: Connecting to database... -- 19:33:58.498 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:33:58.498 SQL [18603]: pgsql_db_connect() -- 19:33:58.473 DEBUG [18602]: Database connection successful -- 19:33:58.473 INFO [18602]: _SERVER found -- 19:33:58.473 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 19:33:58.473 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 19:33:58.473 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=avf8huiumkehj5b8c552t78t5d6am609 -- 19:33:58.473 INFO [18602]: QUERY_STRING = /member/page -- 19:33:58.473 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:33:58.517 INFO [18602]: COREGRADE is stopping... -- 19:33:58.517 DEBUG [18602]: Closing database connection -- 19:33:58.517 SQL [18602]: pgsql_close() -- 19:33:58.502 DEBUG [18603]: Database connection successful -- 19:33:58.502 INFO [18603]: _SERVER found -- 19:33:58.502 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 19:33:58.502 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 19:33:58.502 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=avf8huiumkehj5b8c552t78t5d6am609 -- 19:33:58.502 INFO [18603]: QUERY_STRING = /member/page -- 19:33:58.502 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:33:58.546 INFO [18603]: COREGRADE is stopping... -- 19:33:58.546 DEBUG [18603]: Closing database connection -- 19:33:58.546 SQL [18603]: pgsql_close() -- 19:33:58.665 INFO [18603]: COREGRADE is starting... -- 19:33:58.665 INFO [18603]: Version from config: 1.0 -- 19:33:58.665 DEBUG [18603]: Connecting to database... -- 19:33:58.665 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:33:58.665 SQL [18603]: pgsql_db_connect() -- 19:33:58.669 DEBUG [18603]: Database connection successful -- 19:33:58.669 INFO [18603]: _SERVER found -- 19:33:58.669 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 19:33:58.669 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 19:33:58.669 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=avf8huiumkehj5b8c552t78t5d6am609 -- 19:33:58.669 INFO [18603]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:33:58.669 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:33:58.681 INFO [18603]: COREGRADE is stopping... -- 19:33:58.681 DEBUG [18603]: Closing database connection -- 19:33:58.681 SQL [18603]: pgsql_close() -- 19:33:58.902 INFO [19761]: COREGRADE is starting... -- 19:33:58.903 INFO [19761]: Version from config: 1.0 -- 19:33:58.903 DEBUG [19761]: Connecting to database... -- 19:33:58.903 DEBUG [19761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:33:58.903 SQL [19761]: pgsql_db_connect() -- 19:33:58.907 DEBUG [19761]: Database connection successful -- 19:33:58.907 INFO [19761]: _SERVER found -- 19:33:58.907 INFO [19761]: REMOTE_ADDR = 192.168.1.13 -- 19:33:58.907 INFO [19761]: SERVER_NAME = oameye.works.coregrade.com -- 19:33:58.907 INFO [19761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=avf8huiumkehj5b8c552t78t5d6am609 -- 19:33:58.907 INFO [19761]: QUERY_STRING = /member/page -- 19:33:58.907 INFO [19761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:33:58.958 INFO [19761]: COREGRADE is stopping... -- 19:33:58.958 DEBUG [19761]: Closing database connection -- 19:33:58.958 SQL [19761]: pgsql_close() -- 19:33:59.542 INFO [19781]: COREGRADE is starting... -- 19:33:59.543 INFO [19781]: Version from config: 1.0 -- 19:33:59.543 DEBUG [19781]: Connecting to database... -- 19:33:59.543 DEBUG [19781]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:33:59.543 SQL [19781]: pgsql_db_connect() -- 19:33:59.547 DEBUG [19781]: Database connection successful -- 19:33:59.547 INFO [19781]: _SERVER found -- 19:33:59.547 INFO [19781]: REMOTE_ADDR = 192.168.1.13 -- 19:33:59.547 INFO [19781]: SERVER_NAME = oameye.works.coregrade.com -- 19:33:59.547 INFO [19781]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=avf8huiumkehj5b8c552t78t5d6am609 -- 19:33:59.547 INFO [19781]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:33:59.547 INFO [19781]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:33:59.561 INFO [19781]: COREGRADE is stopping... -- 19:33:59.561 DEBUG [19781]: Closing database connection -- 19:33:59.561 SQL [19781]: pgsql_close() -- 19:33:59.824 INFO [19761]: COREGRADE is starting... -- 19:33:59.825 INFO [19761]: Version from config: 1.0 -- 19:33:59.825 DEBUG [19761]: Connecting to database... -- 19:33:59.825 DEBUG [19761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:33:59.825 SQL [19761]: pgsql_db_connect() -- 19:33:59.829 DEBUG [19761]: Database connection successful -- 19:33:59.829 INFO [19761]: _SERVER found -- 19:33:59.829 INFO [19761]: REMOTE_ADDR = 192.168.1.13 -- 19:33:59.829 INFO [19761]: SERVER_NAME = oameye.works.coregrade.com -- 19:33:59.829 INFO [19761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=avf8huiumkehj5b8c552t78t5d6am609 -- 19:33:59.829 INFO [19761]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 19:33:59.829 INFO [19761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:33:59.844 INFO [19761]: COREGRADE is stopping... -- 19:33:59.844 DEBUG [19761]: Closing database connection -- 19:33:59.844 SQL [19761]: pgsql_close() -- 19:34:00.494 INFO [18562]: COREGRADE is starting... -- 19:34:00.494 INFO [18562]: Version from config: 1.0 -- 19:34:00.494 DEBUG [18562]: Connecting to database... -- 19:34:00.494 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:34:00.494 SQL [18562]: pgsql_db_connect() -- 19:34:00.498 DEBUG [18562]: Database connection successful -- 19:34:00.498 INFO [18562]: _SERVER found -- 19:34:00.498 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 19:34:00.498 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 19:34:00.498 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=avf8huiumkehj5b8c552t78t5d6am609 -- 19:34:00.498 INFO [18562]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 19:34:00.498 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:34:00.510 INFO [18562]: COREGRADE is stopping... -- 19:34:00.510 DEBUG [18562]: Closing database connection -- 19:34:00.510 SQL [18562]: pgsql_close() -- 19:34:02.471 INFO [18562]: COREGRADE is starting... -- 19:34:02.471 INFO [18562]: Version from config: 1.0 -- 19:34:02.471 DEBUG [18562]: Connecting to database... -- 19:34:02.471 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:34:02.471 SQL [18562]: pgsql_db_connect() -- 19:34:02.475 DEBUG [18562]: Database connection successful -- 19:34:02.475 INFO [18562]: _SERVER found -- 19:34:02.475 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 19:34:02.475 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 19:34:02.475 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=avf8huiumkehj5b8c552t78t5d6am609 -- 19:34:02.475 INFO [18562]: QUERY_STRING = /member/viewCardAddAction -- 19:34:02.475 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:34:02.507 INFO [18562]: COREGRADE is stopping... -- 19:34:02.507 DEBUG [18562]: Closing database connection -- 19:34:02.507 SQL [18562]: pgsql_close() -- 19:55:53.226 INFO [18561]: COREGRADE is starting... -- 19:55:53.227 INFO [18561]: Version from config: 1.0 -- 19:55:53.227 DEBUG [18561]: Connecting to database... -- 19:55:53.227 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:53.227 SQL [18561]: pgsql_db_connect() -- 19:55:53.231 DEBUG [18561]: Database connection successful -- 19:55:53.231 INFO [18561]: _SERVER found -- 19:55:53.231 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 19:55:53.231 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 19:55:53.231 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=avf8huiumkehj5b8c552t78t5d6am609 -- 19:55:53.231 INFO [18561]: QUERY_STRING = /member/page -- 19:55:53.231 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:55:53.279 INFO [18561]: COREGRADE is stopping... -- 19:55:53.279 DEBUG [18561]: Closing database connection -- 19:55:53.279 SQL [18561]: pgsql_close() -- 19:55:53.415 INFO [18561]: COREGRADE is starting... -- 19:55:53.415 INFO [18561]: Version from config: 1.0 -- 19:55:53.415 DEBUG [18561]: Connecting to database... -- 19:55:53.415 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:53.415 SQL [18561]: pgsql_db_connect() -- 19:55:53.419 DEBUG [18561]: Database connection successful -- 19:55:53.419 INFO [18561]: _SERVER found -- 19:55:53.419 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 19:55:53.419 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 19:55:53.419 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=oem2quk7he6ujj584n1j149d9mg8417v -- 19:55:53.419 INFO [18561]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:55:53.419 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:55:53.430 INFO [18561]: COREGRADE is stopping... -- 19:55:53.430 DEBUG [18561]: Closing database connection -- 19:55:53.430 SQL [18561]: pgsql_close() -- 19:55:53.689 INFO [18600]: COREGRADE is starting... -- 19:55:53.689 INFO [18600]: Version from config: 1.0 -- 19:55:53.689 DEBUG [18600]: Connecting to database... -- 19:55:53.689 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:53.689 SQL [18600]: pgsql_db_connect() -- 19:55:53.697 INFO [18664]: COREGRADE is starting... -- 19:55:53.698 INFO [18664]: Version from config: 1.0 -- 19:55:53.698 DEBUG [18664]: Connecting to database... -- 19:55:53.698 DEBUG [18664]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:53.698 SQL [18664]: pgsql_db_connect() -- 19:55:53.694 DEBUG [18600]: Database connection successful -- 19:55:53.694 INFO [18600]: _SERVER found -- 19:55:53.694 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 19:55:53.694 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 19:55:53.694 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=oem2quk7he6ujj584n1j149d9mg8417v -- 19:55:53.694 INFO [18600]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 19:55:53.694 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:55:53.706 INFO [18600]: COREGRADE is stopping... -- 19:55:53.706 DEBUG [18600]: Closing database connection -- 19:55:53.706 SQL [18600]: pgsql_close() -- 19:55:53.702 DEBUG [18664]: Database connection successful -- 19:55:53.702 INFO [18664]: _SERVER found -- 19:55:53.702 INFO [18664]: REMOTE_ADDR = 192.168.1.13 -- 19:55:53.702 INFO [18664]: SERVER_NAME = oameye.works.coregrade.com -- 19:55:53.702 INFO [18664]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=oem2quk7he6ujj584n1j149d9mg8417v -- 19:55:53.702 INFO [18664]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 19:55:53.702 INFO [18664]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:55:53.714 INFO [18664]: COREGRADE is stopping... -- 19:55:53.714 DEBUG [18664]: Closing database connection -- 19:55:53.714 SQL [18664]: pgsql_close() -- 19:55:55.904 INFO [18604]: COREGRADE is starting... -- 19:55:55.904 INFO [18604]: Version from config: 1.0 -- 19:55:55.904 DEBUG [18604]: Connecting to database... -- 19:55:55.904 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:55.904 SQL [18604]: pgsql_db_connect() -- 19:55:55.908 DEBUG [18604]: Database connection successful -- 19:55:55.908 INFO [18604]: _SERVER found -- 19:55:55.908 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 19:55:55.908 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 19:55:55.908 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=oem2quk7he6ujj584n1j149d9mg8417v -- 19:55:55.908 INFO [18604]: QUERY_STRING = /member/viewCardAddAction -- 19:55:55.908 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:55:55.941 INFO [18604]: COREGRADE is stopping... -- 19:55:55.941 DEBUG [18604]: Closing database connection -- 19:55:55.941 SQL [18604]: pgsql_close() -- 19:55:56.470 INFO [18604]: COREGRADE is starting... -- 19:55:56.470 INFO [18604]: Version from config: 1.0 -- 19:55:56.470 DEBUG [18604]: Connecting to database... -- 19:55:56.471 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:56.471 SQL [18604]: pgsql_db_connect() -- 19:55:56.474 DEBUG [18604]: Database connection successful -- 19:55:56.474 INFO [18604]: _SERVER found -- 19:55:56.474 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 19:55:56.474 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 19:55:56.474 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=oem2quk7he6ujj584n1j149d9mg8417v -- 19:55:56.474 INFO [18604]: QUERY_STRING = /member/viewCardAddAction -- 19:55:56.474 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:55:56.505 INFO [18604]: COREGRADE is stopping... -- 19:55:56.505 DEBUG [18604]: Closing database connection -- 19:55:56.505 SQL [18604]: pgsql_close() -- 20:00:49.456 INFO [18603]: COREGRADE is starting... -- 20:00:49.456 INFO [18603]: Version from config: 1.0 -- 20:00:49.456 DEBUG [18603]: Connecting to database... -- 20:00:49.456 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:00:49.456 SQL [18603]: pgsql_db_connect() -- 20:00:49.460 DEBUG [18603]: Database connection successful -- 20:00:49.460 INFO [18603]: _SERVER found -- 20:00:49.460 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 20:00:49.460 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 20:00:49.460 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=oem2quk7he6ujj584n1j149d9mg8417v -- 20:00:49.460 INFO [18603]: QUERY_STRING = /member/page -- 20:00:49.460 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:00:49.507 INFO [18603]: COREGRADE is stopping... -- 20:00:49.507 DEBUG [18603]: Closing database connection -- 20:00:49.507 SQL [18603]: pgsql_close() -- 20:00:49.672 INFO [18603]: COREGRADE is starting... -- 20:00:49.673 INFO [18603]: Version from config: 1.0 -- 20:00:49.673 DEBUG [18603]: Connecting to database... -- 20:00:49.673 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:00:49.673 SQL [18603]: pgsql_db_connect() -- 20:00:49.678 DEBUG [18603]: Database connection successful -- 20:00:49.678 INFO [18603]: _SERVER found -- 20:00:49.678 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 20:00:49.678 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 20:00:49.678 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=oem2quk7he6ujj584n1j149d9mg8417v -- 20:00:49.678 INFO [18603]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:00:49.678 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:00:49.689 INFO [18603]: COREGRADE is stopping... -- 20:00:49.689 DEBUG [18603]: Closing database connection -- 20:00:49.689 SQL [18603]: pgsql_close() -- 20:00:50.089 INFO [18603]: COREGRADE is starting... -- 20:00:50.089 INFO [18603]: Version from config: 1.0 -- 20:00:50.089 DEBUG [18603]: Connecting to database... -- 20:00:50.089 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:00:50.089 SQL [18603]: pgsql_db_connect() -- 20:00:50.100 INFO [18602]: COREGRADE is starting... -- 20:00:50.100 INFO [18602]: Version from config: 1.0 -- 20:00:50.100 DEBUG [18602]: Connecting to database... -- 20:00:50.100 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:00:50.100 SQL [18602]: pgsql_db_connect() -- 20:00:50.093 DEBUG [18603]: Database connection successful -- 20:00:50.093 INFO [18603]: _SERVER found -- 20:00:50.093 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 20:00:50.093 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 20:00:50.093 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=oem2quk7he6ujj584n1j149d9mg8417v -- 20:00:50.093 INFO [18603]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 20:00:50.093 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:00:50.105 INFO [18603]: COREGRADE is stopping... -- 20:00:50.105 DEBUG [18603]: Closing database connection -- 20:00:50.105 SQL [18603]: pgsql_close() -- 20:00:50.104 DEBUG [18602]: Database connection successful -- 20:00:50.104 INFO [18602]: _SERVER found -- 20:00:50.104 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 20:00:50.104 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 20:00:50.104 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=oem2quk7he6ujj584n1j149d9mg8417v -- 20:00:50.104 INFO [18602]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 20:00:50.104 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:00:50.116 INFO [18602]: COREGRADE is stopping... -- 20:00:50.116 DEBUG [18602]: Closing database connection -- 20:00:50.116 SQL [18602]: pgsql_close() -- 20:00:53.627 INFO [19761]: COREGRADE is starting... -- 20:00:53.628 INFO [19761]: Version from config: 1.0 -- 20:00:53.628 DEBUG [19761]: Connecting to database... -- 20:00:53.628 DEBUG [19761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:00:53.628 SQL [19761]: pgsql_db_connect() -- 20:00:53.632 DEBUG [19761]: Database connection successful -- 20:00:53.632 INFO [19761]: _SERVER found -- 20:00:53.632 INFO [19761]: REMOTE_ADDR = 192.168.1.13 -- 20:00:53.632 INFO [19761]: SERVER_NAME = oameye.works.coregrade.com -- 20:00:53.632 INFO [19761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=oem2quk7he6ujj584n1j149d9mg8417v -- 20:00:53.632 INFO [19761]: QUERY_STRING = /member/viewCardAddAction -- 20:00:53.632 INFO [19761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:00:53.664 INFO [19761]: COREGRADE is stopping... -- 20:00:53.664 DEBUG [19761]: Closing database connection -- 20:00:53.664 SQL [19761]: pgsql_close() -- 20:01:09.871 INFO [18563]: COREGRADE is starting... -- 20:01:09.872 INFO [18563]: Version from config: 1.0 -- 20:01:09.872 DEBUG [18563]: Connecting to database... -- 20:01:09.872 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:01:09.872 SQL [18563]: pgsql_db_connect() -- 20:01:09.876 DEBUG [18563]: Database connection successful -- 20:01:09.876 INFO [18563]: _SERVER found -- 20:01:09.876 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 20:01:09.876 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 20:01:09.876 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=oem2quk7he6ujj584n1j149d9mg8417v -- 20:01:09.876 INFO [18563]: QUERY_STRING = /member/page -- 20:01:09.876 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:01:09.921 INFO [18563]: COREGRADE is stopping... -- 20:01:09.921 DEBUG [18563]: Closing database connection -- 20:01:09.921 SQL [18563]: pgsql_close() -- 20:01:10.212 INFO [18561]: COREGRADE is starting... -- 20:01:10.212 INFO [18561]: Version from config: 1.0 -- 20:01:10.212 DEBUG [18561]: Connecting to database... -- 20:01:10.212 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:01:10.212 SQL [18561]: pgsql_db_connect() -- 20:01:10.218 DEBUG [18561]: Database connection successful -- 20:01:10.218 INFO [18561]: _SERVER found -- 20:01:10.218 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 20:01:10.218 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 20:01:10.218 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=5rp3pplob35hafnrt60l4k42menpilqj -- 20:01:10.218 INFO [18561]: QUERY_STRING = /member/page -- 20:01:10.218 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:01:10.262 INFO [18561]: COREGRADE is stopping... -- 20:01:10.262 DEBUG [18561]: Closing database connection -- 20:01:10.262 SQL [18561]: pgsql_close() -- 20:01:11.052 INFO [18563]: COREGRADE is starting... -- 20:01:11.052 INFO [18563]: Version from config: 1.0 -- 20:01:11.052 DEBUG [18563]: Connecting to database... -- 20:01:11.052 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:01:11.052 SQL [18563]: pgsql_db_connect() -- 20:01:11.057 DEBUG [18563]: Database connection successful -- 20:01:11.057 INFO [18563]: _SERVER found -- 20:01:11.057 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 20:01:11.057 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 20:01:11.057 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=5rp3pplob35hafnrt60l4k42menpilqj -- 20:01:11.057 INFO [18563]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:01:11.057 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:01:11.068 INFO [18563]: COREGRADE is stopping... -- 20:01:11.068 DEBUG [18563]: Closing database connection -- 20:01:11.068 SQL [18563]: pgsql_close() -- 20:01:11.631 INFO [18563]: COREGRADE is starting... -- 20:01:11.631 INFO [18563]: Version from config: 1.0 -- 20:01:11.631 DEBUG [18563]: Connecting to database... -- 20:01:11.631 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:01:11.632 SQL [18563]: pgsql_db_connect() -- 20:01:11.636 DEBUG [18563]: Database connection successful -- 20:01:11.636 INFO [18563]: _SERVER found -- 20:01:11.636 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 20:01:11.636 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 20:01:11.636 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=5rp3pplob35hafnrt60l4k42menpilqj -- 20:01:11.636 INFO [18563]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 20:01:11.636 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:01:11.648 INFO [18563]: COREGRADE is stopping... -- 20:01:11.648 DEBUG [18563]: Closing database connection -- 20:01:11.648 SQL [18563]: pgsql_close() -- 20:01:12.065 INFO [18561]: COREGRADE is starting... -- 20:01:12.065 INFO [18561]: Version from config: 1.0 -- 20:01:12.065 DEBUG [18561]: Connecting to database... -- 20:01:12.065 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:01:12.065 SQL [18561]: pgsql_db_connect() -- 20:01:12.069 DEBUG [18561]: Database connection successful -- 20:01:12.069 INFO [18561]: _SERVER found -- 20:01:12.069 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 20:01:12.069 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 20:01:12.069 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=5rp3pplob35hafnrt60l4k42menpilqj -- 20:01:12.069 INFO [18561]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 20:01:12.069 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:01:12.081 INFO [18561]: COREGRADE is stopping... -- 20:01:12.081 DEBUG [18561]: Closing database connection -- 20:01:12.081 SQL [18561]: pgsql_close() -- 20:01:17.613 INFO [19781]: COREGRADE is starting... -- 20:01:17.613 INFO [19781]: Version from config: 1.0 -- 20:01:17.613 DEBUG [19781]: Connecting to database... -- 20:01:17.613 DEBUG [19781]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:01:17.613 SQL [19781]: pgsql_db_connect() -- 20:01:17.617 DEBUG [19781]: Database connection successful -- 20:01:17.617 INFO [19781]: _SERVER found -- 20:01:17.617 INFO [19781]: REMOTE_ADDR = 192.168.1.13 -- 20:01:17.617 INFO [19781]: SERVER_NAME = oameye.works.coregrade.com -- 20:01:17.617 INFO [19781]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=5rp3pplob35hafnrt60l4k42menpilqj -- 20:01:17.617 INFO [19781]: QUERY_STRING = /member/viewCardAddAction -- 20:01:17.617 INFO [19781]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:01:17.655 INFO [19781]: COREGRADE is stopping... -- 20:01:17.655 DEBUG [19781]: Closing database connection -- 20:01:17.655 SQL [19781]: pgsql_close() -- 20:03:10.865 INFO [18664]: COREGRADE is starting... -- 20:03:10.865 INFO [18664]: Version from config: 1.0 -- 20:03:10.865 DEBUG [18664]: Connecting to database... -- 20:03:10.865 DEBUG [18664]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:03:10.865 SQL [18664]: pgsql_db_connect() -- 20:03:10.870 DEBUG [18664]: Database connection successful -- 20:03:10.870 INFO [18664]: _SERVER found -- 20:03:10.870 INFO [18664]: REMOTE_ADDR = 192.168.1.13 -- 20:03:10.870 INFO [18664]: SERVER_NAME = oameye.works.coregrade.com -- 20:03:10.870 INFO [18664]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=5rp3pplob35hafnrt60l4k42menpilqj -- 20:03:10.870 INFO [18664]: QUERY_STRING = /member/page -- 20:03:10.870 INFO [18664]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:03:10.915 INFO [18664]: COREGRADE is stopping... -- 20:03:10.915 DEBUG [18664]: Closing database connection -- 20:03:10.915 SQL [18664]: pgsql_close() -- 20:03:14.002 INFO [18603]: COREGRADE is starting... -- 20:03:14.003 INFO [18603]: Version from config: 1.0 -- 20:03:14.003 DEBUG [18603]: Connecting to database... -- 20:03:14.003 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:03:14.003 SQL [18603]: pgsql_db_connect() -- 20:03:14.007 DEBUG [18603]: Database connection successful -- 20:03:14.007 INFO [18603]: _SERVER found -- 20:03:14.007 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 20:03:14.007 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 20:03:14.007 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=5rp3pplob35hafnrt60l4k42menpilqj -- 20:03:14.007 INFO [18603]: QUERY_STRING = /member/viewCardAddAction -- 20:03:14.007 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:03:14.040 INFO [18603]: COREGRADE is stopping... -- 20:03:14.040 DEBUG [18603]: Closing database connection -- 20:03:14.040 SQL [18603]: pgsql_close() -- 20:27:02.008 INFO [18602]: COREGRADE is starting... -- 20:27:02.009 INFO [18602]: Version from config: 1.0 -- 20:27:02.009 DEBUG [18602]: Connecting to database... -- 20:27:02.009 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:02.009 SQL [18602]: pgsql_db_connect() -- 20:27:02.014 INFO [19761]: COREGRADE is starting... -- 20:27:02.014 INFO [19761]: Version from config: 1.0 -- 20:27:02.014 DEBUG [19761]: Connecting to database... -- 20:27:02.014 DEBUG [19761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:02.014 SQL [19761]: pgsql_db_connect() -- 20:27:02.014 DEBUG [18602]: Database connection successful -- 20:27:02.014 INFO [18602]: _SERVER found -- 20:27:02.014 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 20:27:02.014 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 20:27:02.014 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=5rp3pplob35hafnrt60l4k42menpilqj -- 20:27:02.014 INFO [18602]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 20:27:02.014 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:27:02.031 INFO [18602]: COREGRADE is stopping... -- 20:27:02.031 DEBUG [18602]: Closing database connection -- 20:27:02.031 SQL [18602]: pgsql_close() -- 20:27:02.020 DEBUG [19761]: Database connection successful -- 20:27:02.020 INFO [19761]: _SERVER found -- 20:27:02.020 INFO [19761]: REMOTE_ADDR = 192.168.1.13 -- 20:27:02.020 INFO [19761]: SERVER_NAME = oameye.works.coregrade.com -- 20:27:02.020 INFO [19761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=5rp3pplob35hafnrt60l4k42menpilqj -- 20:27:02.020 INFO [19761]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 20:27:02.020 INFO [19761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:27:02.034 INFO [19761]: COREGRADE is stopping... -- 20:27:02.034 DEBUG [19761]: Closing database connection -- 20:27:02.034 SQL [19761]: pgsql_close() -- 20:43:37.612 INFO [18562]: COREGRADE is starting... -- 20:43:37.612 INFO [18562]: Version from config: 1.0 -- 20:43:37.612 DEBUG [18562]: Connecting to database... -- 20:43:37.612 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:43:37.612 SQL [18562]: pgsql_db_connect() -- 20:43:37.617 DEBUG [18562]: Database connection successful -- 20:43:37.617 INFO [18562]: _SERVER found -- 20:43:37.617 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 20:43:37.617 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 20:43:37.617 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=5rp3pplob35hafnrt60l4k42menpilqj -- 20:43:37.617 INFO [18562]: QUERY_STRING = /member/page -- 20:43:37.617 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:43:37.664 INFO [18562]: COREGRADE is stopping... -- 20:43:37.664 DEBUG [18562]: Closing database connection -- 20:43:37.664 SQL [18562]: pgsql_close() -- 20:43:38.512 INFO [18563]: COREGRADE is starting... -- 20:43:38.512 INFO [18563]: Version from config: 1.0 -- 20:43:38.512 DEBUG [18563]: Connecting to database... -- 20:43:38.512 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:43:38.512 SQL [18563]: pgsql_db_connect() -- 20:43:38.517 DEBUG [18563]: Database connection successful -- 20:43:38.517 INFO [18563]: _SERVER found -- 20:43:38.517 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 20:43:38.517 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 20:43:38.517 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=1a64bn8c94skm8ep3uth93ahsvfq4a03 -- 20:43:38.517 INFO [18563]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 20:43:38.517 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:43:38.529 INFO [18563]: COREGRADE is stopping... -- 20:43:38.529 DEBUG [18563]: Closing database connection -- 20:43:38.529 SQL [18563]: pgsql_close() -- 20:43:39.079 INFO [18563]: COREGRADE is starting... -- 20:43:39.079 INFO [18563]: Version from config: 1.0 -- 20:43:39.079 DEBUG [18563]: Connecting to database... -- 20:43:39.079 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:43:39.079 SQL [18563]: pgsql_db_connect() -- 20:43:39.084 DEBUG [18563]: Database connection successful -- 20:43:39.084 INFO [18563]: _SERVER found -- 20:43:39.084 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 20:43:39.084 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 20:43:39.084 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=1a64bn8c94skm8ep3uth93ahsvfq4a03 -- 20:43:39.084 INFO [18563]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 20:43:39.084 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:43:39.095 INFO [18563]: COREGRADE is stopping... -- 20:43:39.095 DEBUG [18563]: Closing database connection -- 20:43:39.095 SQL [18563]: pgsql_close() -- 20:43:42.206 INFO [18604]: COREGRADE is starting... -- 20:43:42.206 INFO [18604]: Version from config: 1.0 -- 20:43:42.206 DEBUG [18604]: Connecting to database... -- 20:43:42.206 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:43:42.207 SQL [18604]: pgsql_db_connect() -- 20:43:42.211 DEBUG [18604]: Database connection successful -- 20:43:42.211 INFO [18604]: _SERVER found -- 20:43:42.211 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 20:43:42.211 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 20:43:42.211 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=1a64bn8c94skm8ep3uth93ahsvfq4a03 -- 20:43:42.211 INFO [18604]: QUERY_STRING = /member/viewCardAddAction -- 20:43:42.211 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:43:42.245 INFO [18604]: COREGRADE is stopping... -- 20:43:42.245 DEBUG [18604]: Closing database connection -- 20:43:42.245 SQL [18604]: pgsql_close() -- 20:43:54.942 INFO [18664]: COREGRADE is starting... -- 20:43:54.943 INFO [18664]: Version from config: 1.0 -- 20:43:54.943 DEBUG [18664]: Connecting to database... -- 20:43:54.943 DEBUG [18664]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:43:54.943 SQL [18664]: pgsql_db_connect() -- 20:43:54.947 DEBUG [18664]: Database connection successful -- 20:43:54.947 INFO [18664]: _SERVER found -- 20:43:54.947 INFO [18664]: REMOTE_ADDR = 192.168.1.13 -- 20:43:54.947 INFO [18664]: SERVER_NAME = oameye.works.coregrade.com -- 20:43:54.947 INFO [18664]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=1a64bn8c94skm8ep3uth93ahsvfq4a03 -- 20:43:54.947 INFO [18664]: QUERY_STRING = /member/page -- 20:43:54.947 INFO [18664]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:43:54.992 INFO [18664]: COREGRADE is stopping... -- 20:43:54.992 DEBUG [18664]: Closing database connection -- 20:43:54.992 SQL [18664]: pgsql_close() -- 20:43:55.408 INFO [18603]: COREGRADE is starting... -- 20:43:55.409 INFO [18603]: Version from config: 1.0 -- 20:43:55.409 DEBUG [18603]: Connecting to database... -- 20:43:55.409 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:43:55.409 SQL [18603]: pgsql_db_connect() -- 20:43:55.413 DEBUG [18603]: Database connection successful -- 20:43:55.413 INFO [18603]: _SERVER found -- 20:43:55.413 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 20:43:55.413 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 20:43:55.413 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=1a64bn8c94skm8ep3uth93ahsvfq4a03 -- 20:43:55.413 INFO [18603]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 20:43:55.413 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:43:55.426 INFO [18603]: COREGRADE is stopping... -- 20:43:55.426 DEBUG [18603]: Closing database connection -- 20:43:55.426 SQL [18603]: pgsql_close() -- 20:43:55.435 INFO [18603]: COREGRADE is starting... -- 20:43:55.435 INFO [18603]: Version from config: 1.0 -- 20:43:55.435 DEBUG [18603]: Connecting to database... -- 20:43:55.435 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:43:55.435 SQL [18603]: pgsql_db_connect() -- 20:43:55.439 DEBUG [18603]: Database connection successful -- 20:43:55.439 INFO [18603]: _SERVER found -- 20:43:55.439 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 20:43:55.439 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 20:43:55.439 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=1a64bn8c94skm8ep3uth93ahsvfq4a03 -- 20:43:55.439 INFO [18603]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 20:43:55.439 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:43:55.451 INFO [18603]: COREGRADE is stopping... -- 20:43:55.451 DEBUG [18603]: Closing database connection -- 20:43:55.451 SQL [18603]: pgsql_close() -- 20:45:19.727 INFO [19761]: COREGRADE is starting... -- 20:45:19.728 INFO [19761]: Version from config: 1.0 -- 20:45:19.728 DEBUG [19761]: Connecting to database... -- 20:45:19.728 DEBUG [19761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:45:19.728 SQL [19761]: pgsql_db_connect() -- 20:45:19.732 DEBUG [19761]: Database connection successful -- 20:45:19.732 INFO [19761]: _SERVER found -- 20:45:19.732 INFO [19761]: REMOTE_ADDR = 192.168.1.13 -- 20:45:19.732 INFO [19761]: SERVER_NAME = oameye.works.coregrade.com -- 20:45:19.732 INFO [19761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=1a64bn8c94skm8ep3uth93ahsvfq4a03 -- 20:45:19.732 INFO [19761]: QUERY_STRING = /member/page -- 20:45:19.732 INFO [19761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:45:19.776 INFO [19761]: COREGRADE is stopping... -- 20:45:19.776 DEBUG [19761]: Closing database connection -- 20:45:19.776 SQL [19761]: pgsql_close() -- 20:45:20.113 INFO [18561]: COREGRADE is starting... -- 20:45:20.114 INFO [18561]: Version from config: 1.0 -- 20:45:20.114 DEBUG [18561]: Connecting to database... -- 20:45:20.114 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:45:20.114 SQL [18561]: pgsql_db_connect() -- 20:45:20.118 DEBUG [18561]: Database connection successful -- 20:45:20.118 INFO [18561]: _SERVER found -- 20:45:20.118 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 20:45:20.118 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 20:45:20.118 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=1a64bn8c94skm8ep3uth93ahsvfq4a03 -- 20:45:20.118 INFO [18561]: QUERY_STRING = /member/page -- 20:45:20.118 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:45:20.164 INFO [18561]: COREGRADE is stopping... -- 20:45:20.164 DEBUG [18561]: Closing database connection -- 20:45:20.164 SQL [18561]: pgsql_close() -- 20:45:20.276 INFO [18562]: COREGRADE is starting... -- 20:45:20.276 INFO [18562]: Version from config: 1.0 -- 20:45:20.276 DEBUG [18562]: Connecting to database... -- 20:45:20.276 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:45:20.276 SQL [18562]: pgsql_db_connect() -- 20:45:20.280 DEBUG [18562]: Database connection successful -- 20:45:20.280 INFO [18562]: _SERVER found -- 20:45:20.280 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 20:45:20.280 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 20:45:20.280 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=1a64bn8c94skm8ep3uth93ahsvfq4a03 -- 20:45:20.280 INFO [18562]: QUERY_STRING = /member/page -- 20:45:20.280 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:45:20.322 INFO [18562]: COREGRADE is stopping... -- 20:45:20.322 DEBUG [18562]: Closing database connection -- 20:45:20.322 SQL [18562]: pgsql_close() -- 20:45:21.143 INFO [18604]: COREGRADE is starting... -- 20:45:21.143 INFO [18604]: Version from config: 1.0 -- 20:45:21.143 DEBUG [18604]: Connecting to database... -- 20:45:21.143 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:45:21.143 SQL [18604]: pgsql_db_connect() -- 20:45:21.147 DEBUG [18604]: Database connection successful -- 20:45:21.147 INFO [18604]: _SERVER found -- 20:45:21.147 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 20:45:21.147 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 20:45:21.147 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=1a64bn8c94skm8ep3uth93ahsvfq4a03 -- 20:45:21.147 INFO [18604]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 20:45:21.147 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:45:21.159 INFO [18604]: COREGRADE is stopping... -- 20:45:21.159 DEBUG [18604]: Closing database connection -- 20:45:21.159 SQL [18604]: pgsql_close() -- 20:45:22.133 INFO [18563]: COREGRADE is starting... -- 20:45:22.134 INFO [18563]: Version from config: 1.0 -- 20:45:22.134 DEBUG [18563]: Connecting to database... -- 20:45:22.134 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:45:22.134 SQL [18563]: pgsql_db_connect() -- 20:45:22.138 DEBUG [18563]: Database connection successful -- 20:45:22.138 INFO [18563]: _SERVER found -- 20:45:22.138 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 20:45:22.138 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 20:45:22.138 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=1a64bn8c94skm8ep3uth93ahsvfq4a03 -- 20:45:22.138 INFO [18563]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 20:45:22.138 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:45:22.149 INFO [18563]: COREGRADE is stopping... -- 20:45:22.149 DEBUG [18563]: Closing database connection -- 20:45:22.149 SQL [18563]: pgsql_close() -- 20:54:47.065 INFO [18603]: COREGRADE is starting... -- 20:54:47.065 INFO [18603]: Version from config: 1.0 -- 20:54:47.065 DEBUG [18603]: Connecting to database... -- 20:54:47.065 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:54:47.065 SQL [18603]: pgsql_db_connect() -- 20:54:47.069 DEBUG [18603]: Database connection successful -- 20:54:47.069 INFO [18603]: _SERVER found -- 20:54:47.069 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 20:54:47.069 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 20:54:47.069 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=1a64bn8c94skm8ep3uth93ahsvfq4a03 -- 20:54:47.069 INFO [18603]: QUERY_STRING = /member/viewCardAddAction -- 20:54:47.069 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:54:47.103 INFO [18603]: COREGRADE is stopping... -- 20:54:47.103 DEBUG [18603]: Closing database connection -- 20:54:47.103 SQL [18603]: pgsql_close() -- 20:57:17.544 INFO [20128]: COREGRADE is starting... -- 20:57:17.545 INFO [20128]: Version from config: 1.0 -- 20:57:17.545 DEBUG [20128]: Connecting to database... -- 20:57:17.545 DEBUG [20128]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:57:17.545 SQL [20128]: pgsql_db_connect() -- 20:57:17.549 DEBUG [20128]: Database connection successful -- 20:57:17.549 INFO [20128]: _SERVER found -- 20:57:17.549 INFO [20128]: REMOTE_ADDR = 192.168.1.13 -- 20:57:17.549 INFO [20128]: SERVER_NAME = oameye.works.coregrade.com -- 20:57:17.549 INFO [20128]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=1a64bn8c94skm8ep3uth93ahsvfq4a03 -- 20:57:17.549 INFO [20128]: QUERY_STRING = /member/page -- 20:57:17.549 INFO [20128]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:57:17.601 INFO [20128]: COREGRADE is stopping... -- 20:57:17.601 DEBUG [20128]: Closing database connection -- 20:57:17.601 SQL [20128]: pgsql_close() -- 20:57:18.114 INFO [18604]: COREGRADE is starting... -- 20:57:18.114 INFO [18604]: Version from config: 1.0 -- 20:57:18.114 DEBUG [18604]: Connecting to database... -- 20:57:18.115 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:57:18.115 SQL [18604]: pgsql_db_connect() -- 20:57:18.119 DEBUG [18604]: Database connection successful -- 20:57:18.119 INFO [18604]: _SERVER found -- 20:57:18.119 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 20:57:18.119 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 20:57:18.119 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=cie0fpcgeffia2m9rh60d3krg5b4acb3 -- 20:57:18.119 INFO [18604]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 20:57:18.119 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:57:18.131 INFO [18604]: COREGRADE is stopping... -- 20:57:18.131 DEBUG [18604]: Closing database connection -- 20:57:18.131 SQL [18604]: pgsql_close() -- 20:57:18.147 INFO [18604]: COREGRADE is starting... -- 20:57:18.147 INFO [18604]: Version from config: 1.0 -- 20:57:18.147 DEBUG [18604]: Connecting to database... -- 20:57:18.147 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:57:18.147 SQL [18604]: pgsql_db_connect() -- 20:57:18.151 DEBUG [18604]: Database connection successful -- 20:57:18.151 INFO [18604]: _SERVER found -- 20:57:18.151 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 20:57:18.151 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 20:57:18.151 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=cie0fpcgeffia2m9rh60d3krg5b4acb3 -- 20:57:18.151 INFO [18604]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 20:57:18.151 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:57:18.162 INFO [18604]: COREGRADE is stopping... -- 20:57:18.162 DEBUG [18604]: Closing database connection -- 20:57:18.162 SQL [18604]: pgsql_close() -- 20:57:24.547 INFO [18600]: COREGRADE is starting... -- 20:57:24.548 INFO [18600]: Version from config: 1.0 -- 20:57:24.548 DEBUG [18600]: Connecting to database... -- 20:57:24.548 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:57:24.548 SQL [18600]: pgsql_db_connect() -- 20:57:24.552 DEBUG [18600]: Database connection successful -- 20:57:24.552 INFO [18600]: _SERVER found -- 20:57:24.552 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 20:57:24.552 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 20:57:24.552 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=cie0fpcgeffia2m9rh60d3krg5b4acb3 -- 20:57:24.552 INFO [18600]: QUERY_STRING = /member/viewCardAddAction -- 20:57:24.552 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:57:24.585 INFO [18600]: COREGRADE is stopping... -- 20:57:24.585 DEBUG [18600]: Closing database connection -- 20:57:24.585 SQL [18600]: pgsql_close() -- 21:02:30.168 INFO [18563]: COREGRADE is starting... -- 21:02:30.168 INFO [18563]: Version from config: 1.0 -- 21:02:30.168 DEBUG [18563]: Connecting to database... -- 21:02:30.168 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:02:30.168 SQL [18563]: pgsql_db_connect() -- 21:02:30.172 DEBUG [18563]: Database connection successful -- 21:02:30.172 INFO [18563]: _SERVER found -- 21:02:30.172 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 21:02:30.172 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 21:02:30.172 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=cie0fpcgeffia2m9rh60d3krg5b4acb3 -- 21:02:30.172 INFO [18563]: QUERY_STRING = /member/page -- 21:02:30.172 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:02:30.217 INFO [18563]: COREGRADE is stopping... -- 21:02:30.217 DEBUG [18563]: Closing database connection -- 21:02:30.217 SQL [18563]: pgsql_close() -- 21:02:30.674 INFO [18563]: COREGRADE is starting... -- 21:02:30.674 INFO [18563]: Version from config: 1.0 -- 21:02:30.674 DEBUG [18563]: Connecting to database... -- 21:02:30.674 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:02:30.674 SQL [18563]: pgsql_db_connect() -- 21:02:30.684 INFO [18561]: COREGRADE is starting... -- 21:02:30.684 INFO [18561]: Version from config: 1.0 -- 21:02:30.684 DEBUG [18561]: Connecting to database... -- 21:02:30.684 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:02:30.684 SQL [18561]: pgsql_db_connect() -- 21:02:30.678 DEBUG [18563]: Database connection successful -- 21:02:30.678 INFO [18563]: _SERVER found -- 21:02:30.678 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 21:02:30.678 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 21:02:30.678 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=ljboghno02o1tj3tfpoag9l7v6aaf2c4 -- 21:02:30.678 INFO [18563]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 21:02:30.678 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:02:30.690 INFO [18563]: COREGRADE is stopping... -- 21:02:30.690 DEBUG [18563]: Closing database connection -- 21:02:30.690 SQL [18563]: pgsql_close() -- 21:02:30.689 DEBUG [18561]: Database connection successful -- 21:02:30.689 INFO [18561]: _SERVER found -- 21:02:30.689 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 21:02:30.689 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 21:02:30.689 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=ljboghno02o1tj3tfpoag9l7v6aaf2c4 -- 21:02:30.689 INFO [18561]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 21:02:30.689 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:02:30.700 INFO [18561]: COREGRADE is stopping... -- 21:02:30.700 DEBUG [18561]: Closing database connection -- 21:02:30.700 SQL [18561]: pgsql_close() -- 21:02:33.974 INFO [18562]: COREGRADE is starting... -- 21:02:33.974 INFO [18562]: Version from config: 1.0 -- 21:02:33.974 DEBUG [18562]: Connecting to database... -- 21:02:33.974 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:02:33.974 SQL [18562]: pgsql_db_connect() -- 21:02:33.978 DEBUG [18562]: Database connection successful -- 21:02:33.978 INFO [18562]: _SERVER found -- 21:02:33.978 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 21:02:33.978 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 21:02:33.978 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=ljboghno02o1tj3tfpoag9l7v6aaf2c4 -- 21:02:33.978 INFO [18562]: QUERY_STRING = /member/viewCardAddAction -- 21:02:33.978 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:02:34.010 INFO [18562]: COREGRADE is stopping... -- 21:02:34.010 DEBUG [18562]: Closing database connection -- 21:02:34.010 SQL [18562]: pgsql_close() -- 21:46:21.931 INFO [19761]: COREGRADE is starting... -- 21:46:21.932 INFO [19761]: Version from config: 1.0 -- 21:46:21.932 DEBUG [19761]: Connecting to database... -- 21:46:21.932 DEBUG [19761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:46:21.932 SQL [19761]: pgsql_db_connect() -- 21:46:21.937 DEBUG [19761]: Database connection successful -- 21:46:21.937 INFO [19761]: _SERVER found -- 21:46:21.937 INFO [19761]: REMOTE_ADDR = 192.168.1.13 -- 21:46:21.937 INFO [19761]: SERVER_NAME = oameye.works.coregrade.com -- 21:46:21.937 INFO [19761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=ljboghno02o1tj3tfpoag9l7v6aaf2c4 -- 21:46:21.937 INFO [19761]: QUERY_STRING = /member/page -- 21:46:21.937 INFO [19761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:46:21.986 INFO [19761]: COREGRADE is stopping... -- 21:46:21.987 DEBUG [19761]: Closing database connection -- 21:46:21.987 SQL [19761]: pgsql_close() -- 21:46:22.418 INFO [19761]: COREGRADE is starting... -- 21:46:22.418 INFO [19761]: Version from config: 1.0 -- 21:46:22.418 DEBUG [19761]: Connecting to database... -- 21:46:22.418 DEBUG [19761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:46:22.418 SQL [19761]: pgsql_db_connect() -- 21:46:22.422 DEBUG [19761]: Database connection successful -- 21:46:22.422 INFO [19761]: _SERVER found -- 21:46:22.422 INFO [19761]: REMOTE_ADDR = 192.168.1.13 -- 21:46:22.422 INFO [19761]: SERVER_NAME = oameye.works.coregrade.com -- 21:46:22.422 INFO [19761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=hj1hd1fatdm0ii9dd99i7gvn112cktml -- 21:46:22.422 INFO [19761]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 21:46:22.422 INFO [19761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:46:22.433 INFO [19761]: COREGRADE is stopping... -- 21:46:22.433 DEBUG [19761]: Closing database connection -- 21:46:22.433 SQL [19761]: pgsql_close() -- 21:46:22.435 INFO [18602]: COREGRADE is starting... -- 21:46:22.435 INFO [18602]: Version from config: 1.0 -- 21:46:22.435 DEBUG [18602]: Connecting to database... -- 21:46:22.435 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:46:22.435 SQL [18602]: pgsql_db_connect() -- 21:46:22.439 DEBUG [18602]: Database connection successful -- 21:46:22.439 INFO [18602]: _SERVER found -- 21:46:22.439 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 21:46:22.439 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 21:46:22.439 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=hj1hd1fatdm0ii9dd99i7gvn112cktml -- 21:46:22.439 INFO [18602]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 21:46:22.439 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:46:22.452 INFO [18602]: COREGRADE is stopping... -- 21:46:22.452 DEBUG [18602]: Closing database connection -- 21:46:22.452 SQL [18602]: pgsql_close() -- 21:46:33.387 INFO [18603]: COREGRADE is starting... -- 21:46:33.388 INFO [18603]: Version from config: 1.0 -- 21:46:33.388 DEBUG [18603]: Connecting to database... -- 21:46:33.388 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:46:33.388 SQL [18603]: pgsql_db_connect() -- 21:46:33.392 DEBUG [18603]: Database connection successful -- 21:46:33.392 INFO [18603]: _SERVER found -- 21:46:33.392 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 21:46:33.392 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 21:46:33.392 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=hj1hd1fatdm0ii9dd99i7gvn112cktml -- 21:46:33.392 INFO [18603]: QUERY_STRING = /member/viewCardAddAction -- 21:46:33.392 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:46:33.426 INFO [18603]: COREGRADE is stopping... -- 21:46:33.426 DEBUG [18603]: Closing database connection -- 21:46:33.426 SQL [18603]: pgsql_close() -- 21:46:53.843 INFO [18604]: COREGRADE is starting... -- 21:46:53.843 INFO [18604]: Version from config: 1.0 -- 21:46:53.843 DEBUG [18604]: Connecting to database... -- 21:46:53.843 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:46:53.843 SQL [18604]: pgsql_db_connect() -- 21:46:53.847 DEBUG [18604]: Database connection successful -- 21:46:53.847 INFO [18604]: _SERVER found -- 21:46:53.847 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 21:46:53.847 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 21:46:53.847 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=hj1hd1fatdm0ii9dd99i7gvn112cktml -- 21:46:53.847 INFO [18604]: QUERY_STRING = /member/page -- 21:46:53.847 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:46:53.891 INFO [18604]: COREGRADE is stopping... -- 21:46:53.891 DEBUG [18604]: Closing database connection -- 21:46:53.891 SQL [18604]: pgsql_close() -- 21:46:54.276 INFO [18604]: COREGRADE is starting... -- 21:46:54.276 INFO [18604]: Version from config: 1.0 -- 21:46:54.276 DEBUG [18604]: Connecting to database... -- 21:46:54.276 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:46:54.276 SQL [18604]: pgsql_db_connect() -- 21:46:54.284 INFO [19781]: COREGRADE is starting... -- 21:46:54.285 INFO [19781]: Version from config: 1.0 -- 21:46:54.285 DEBUG [19781]: Connecting to database... -- 21:46:54.285 DEBUG [19781]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:46:54.285 SQL [19781]: pgsql_db_connect() -- 21:46:54.280 DEBUG [18604]: Database connection successful -- 21:46:54.280 INFO [18604]: _SERVER found -- 21:46:54.280 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 21:46:54.280 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 21:46:54.280 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=hj1hd1fatdm0ii9dd99i7gvn112cktml -- 21:46:54.280 INFO [18604]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 21:46:54.280 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:46:54.291 INFO [18604]: COREGRADE is stopping... -- 21:46:54.291 DEBUG [18604]: Closing database connection -- 21:46:54.292 SQL [18604]: pgsql_close() -- 21:46:54.288 DEBUG [19781]: Database connection successful -- 21:46:54.288 INFO [19781]: _SERVER found -- 21:46:54.288 INFO [19781]: REMOTE_ADDR = 192.168.1.13 -- 21:46:54.288 INFO [19781]: SERVER_NAME = oameye.works.coregrade.com -- 21:46:54.288 INFO [19781]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=hj1hd1fatdm0ii9dd99i7gvn112cktml -- 21:46:54.288 INFO [19781]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 21:46:54.288 INFO [19781]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:46:54.301 INFO [19781]: COREGRADE is stopping... -- 21:46:54.301 DEBUG [19781]: Closing database connection -- 21:46:54.301 SQL [19781]: pgsql_close() -- 21:48:14.761 INFO [20128]: COREGRADE is starting... -- 21:48:14.761 INFO [20128]: Version from config: 1.0 -- 21:48:14.761 DEBUG [20128]: Connecting to database... -- 21:48:14.761 DEBUG [20128]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:48:14.761 SQL [20128]: pgsql_db_connect() -- 21:48:14.765 DEBUG [20128]: Database connection successful -- 21:48:14.765 INFO [20128]: _SERVER found -- 21:48:14.765 INFO [20128]: REMOTE_ADDR = 192.168.1.13 -- 21:48:14.765 INFO [20128]: SERVER_NAME = oameye.works.coregrade.com -- 21:48:14.765 INFO [20128]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=hj1hd1fatdm0ii9dd99i7gvn112cktml -- 21:48:14.765 INFO [20128]: QUERY_STRING = /member/viewCardAddAction -- 21:48:14.765 INFO [20128]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:48:14.802 INFO [20128]: COREGRADE is stopping... -- 21:48:14.802 DEBUG [20128]: Closing database connection -- 21:48:14.802 SQL [20128]: pgsql_close() -- 21:48:21.818 INFO [18600]: COREGRADE is starting... -- 21:48:21.818 INFO [18600]: Version from config: 1.0 -- 21:48:21.818 DEBUG [18600]: Connecting to database... -- 21:48:21.818 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:48:21.818 SQL [18600]: pgsql_db_connect() -- 21:48:21.822 DEBUG [18600]: Database connection successful -- 21:48:21.822 INFO [18600]: _SERVER found -- 21:48:21.822 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 21:48:21.822 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 21:48:21.822 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=hj1hd1fatdm0ii9dd99i7gvn112cktml -- 21:48:21.822 INFO [18600]: QUERY_STRING = /member/page -- 21:48:21.822 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:48:21.866 INFO [18600]: COREGRADE is stopping... -- 21:48:21.866 DEBUG [18600]: Closing database connection -- 21:48:21.866 SQL [18600]: pgsql_close() -- 21:48:22.189 INFO [18600]: COREGRADE is starting... -- 21:48:22.189 INFO [18600]: Version from config: 1.0 -- 21:48:22.189 DEBUG [18600]: Connecting to database... -- 21:48:22.189 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:48:22.189 SQL [18600]: pgsql_db_connect() -- 21:48:22.203 INFO [18563]: COREGRADE is starting... -- 21:48:22.203 INFO [18563]: Version from config: 1.0 -- 21:48:22.203 DEBUG [18563]: Connecting to database... -- 21:48:22.203 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:48:22.203 SQL [18563]: pgsql_db_connect() -- 21:48:22.193 DEBUG [18600]: Database connection successful -- 21:48:22.193 INFO [18600]: _SERVER found -- 21:48:22.193 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 21:48:22.193 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 21:48:22.193 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=hj1hd1fatdm0ii9dd99i7gvn112cktml -- 21:48:22.193 INFO [18600]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 21:48:22.193 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:48:22.204 INFO [18600]: COREGRADE is stopping... -- 21:48:22.204 DEBUG [18600]: Closing database connection -- 21:48:22.204 SQL [18600]: pgsql_close() -- 21:48:22.207 DEBUG [18563]: Database connection successful -- 21:48:22.207 INFO [18563]: _SERVER found -- 21:48:22.207 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 21:48:22.207 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 21:48:22.207 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=hj1hd1fatdm0ii9dd99i7gvn112cktml -- 21:48:22.207 INFO [18563]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 21:48:22.207 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:48:22.219 INFO [18563]: COREGRADE is stopping... -- 21:48:22.220 DEBUG [18563]: Closing database connection -- 21:48:22.220 SQL [18563]: pgsql_close() -- 21:48:26.098 INFO [18563]: COREGRADE is starting... -- 21:48:26.099 INFO [18563]: Version from config: 1.0 -- 21:48:26.099 DEBUG [18563]: Connecting to database... -- 21:48:26.099 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:48:26.099 SQL [18563]: pgsql_db_connect() -- 21:48:26.103 DEBUG [18563]: Database connection successful -- 21:48:26.103 INFO [18563]: _SERVER found -- 21:48:26.103 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 21:48:26.103 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 21:48:26.103 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=hj1hd1fatdm0ii9dd99i7gvn112cktml -- 21:48:26.103 INFO [18563]: QUERY_STRING = /member/viewCardAddAction -- 21:48:26.103 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:48:26.135 INFO [18563]: COREGRADE is stopping... -- 21:48:26.135 DEBUG [18563]: Closing database connection -- 21:48:26.135 SQL [18563]: pgsql_close() -- 21:58:39.036 INFO [18561]: COREGRADE is starting... -- 21:58:39.036 INFO [18561]: Version from config: 1.0 -- 21:58:39.036 DEBUG [18561]: Connecting to database... -- 21:58:39.036 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:58:39.036 SQL [18561]: pgsql_db_connect() -- 21:58:39.040 DEBUG [18561]: Database connection successful -- 21:58:39.041 INFO [18561]: _SERVER found -- 21:58:39.041 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 21:58:39.041 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 21:58:39.041 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=hj1hd1fatdm0ii9dd99i7gvn112cktml -- 21:58:39.041 INFO [18561]: QUERY_STRING = /member/page -- 21:58:39.041 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:58:39.087 INFO [18561]: COREGRADE is stopping... -- 21:58:39.087 DEBUG [18561]: Closing database connection -- 21:58:39.087 SQL [18561]: pgsql_close() -- 21:58:39.510 INFO [18561]: COREGRADE is starting... -- 21:58:39.510 INFO [18561]: Version from config: 1.0 -- 21:58:39.510 DEBUG [18561]: Connecting to database... -- 21:58:39.510 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:58:39.510 SQL [18561]: pgsql_db_connect() -- 21:58:39.521 INFO [18562]: COREGRADE is starting... -- 21:58:39.521 INFO [18562]: Version from config: 1.0 -- 21:58:39.521 DEBUG [18562]: Connecting to database... -- 21:58:39.521 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:58:39.521 SQL [18562]: pgsql_db_connect() -- 21:58:39.514 DEBUG [18561]: Database connection successful -- 21:58:39.514 INFO [18561]: _SERVER found -- 21:58:39.514 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 21:58:39.514 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 21:58:39.514 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=el56tf8ij7oj8pjbj9bn4mp08l0uu5qh -- 21:58:39.514 INFO [18561]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 21:58:39.514 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:58:39.525 INFO [18561]: COREGRADE is stopping... -- 21:58:39.526 DEBUG [18561]: Closing database connection -- 21:58:39.526 SQL [18561]: pgsql_close() -- 21:58:39.526 DEBUG [18562]: Database connection successful -- 21:58:39.526 INFO [18562]: _SERVER found -- 21:58:39.526 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 21:58:39.526 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 21:58:39.526 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=el56tf8ij7oj8pjbj9bn4mp08l0uu5qh -- 21:58:39.526 INFO [18562]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 21:58:39.526 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:58:39.537 INFO [18562]: COREGRADE is stopping... -- 21:58:39.537 DEBUG [18562]: Closing database connection -- 21:58:39.538 SQL [18562]: pgsql_close() -- 21:59:33.568 INFO [19761]: COREGRADE is starting... -- 21:59:33.569 INFO [19761]: Version from config: 1.0 -- 21:59:33.569 DEBUG [19761]: Connecting to database... -- 21:59:33.569 DEBUG [19761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:59:33.569 SQL [19761]: pgsql_db_connect() -- 21:59:33.573 DEBUG [19761]: Database connection successful -- 21:59:33.573 INFO [19761]: _SERVER found -- 21:59:33.573 INFO [19761]: REMOTE_ADDR = 192.168.1.13 -- 21:59:33.573 INFO [19761]: SERVER_NAME = oameye.works.coregrade.com -- 21:59:33.573 INFO [19761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=el56tf8ij7oj8pjbj9bn4mp08l0uu5qh -- 21:59:33.573 INFO [19761]: QUERY_STRING = /member/page -- 21:59:33.573 INFO [19761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:59:33.618 INFO [19761]: COREGRADE is stopping... -- 21:59:33.618 DEBUG [19761]: Closing database connection -- 21:59:33.618 SQL [19761]: pgsql_close() -- 21:59:34.706 INFO [18603]: COREGRADE is starting... -- 21:59:34.706 INFO [18603]: Version from config: 1.0 -- 21:59:34.707 DEBUG [18603]: Connecting to database... -- 21:59:34.707 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:59:34.707 SQL [18603]: pgsql_db_connect() -- 21:59:34.711 DEBUG [18603]: Database connection successful -- 21:59:34.711 INFO [18603]: _SERVER found -- 21:59:34.711 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 21:59:34.711 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 21:59:34.711 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=el56tf8ij7oj8pjbj9bn4mp08l0uu5qh -- 21:59:34.711 INFO [18603]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 21:59:34.711 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:59:34.723 INFO [18603]: COREGRADE is stopping... -- 21:59:34.723 DEBUG [18603]: Closing database connection -- 21:59:34.723 SQL [18603]: pgsql_close() -- 21:59:35.203 INFO [18602]: COREGRADE is starting... -- 21:59:35.203 INFO [18602]: Version from config: 1.0 -- 21:59:35.203 DEBUG [18602]: Connecting to database... -- 21:59:35.203 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:59:35.203 SQL [18602]: pgsql_db_connect() -- 21:59:35.207 DEBUG [18602]: Database connection successful -- 21:59:35.207 INFO [18602]: _SERVER found -- 21:59:35.207 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 21:59:35.207 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 21:59:35.207 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=el56tf8ij7oj8pjbj9bn4mp08l0uu5qh -- 21:59:35.207 INFO [18602]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 21:59:35.207 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:59:35.219 INFO [18602]: COREGRADE is stopping... -- 21:59:35.219 DEBUG [18602]: Closing database connection -- 21:59:35.219 SQL [18602]: pgsql_close() -- 21:59:40.063 INFO [20128]: COREGRADE is starting... -- 21:59:40.063 INFO [20128]: Version from config: 1.0 -- 21:59:40.063 DEBUG [20128]: Connecting to database... -- 21:59:40.063 DEBUG [20128]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:59:40.063 SQL [20128]: pgsql_db_connect() -- 21:59:40.068 DEBUG [20128]: Database connection successful -- 21:59:40.068 INFO [20128]: _SERVER found -- 21:59:40.068 INFO [20128]: REMOTE_ADDR = 192.168.1.13 -- 21:59:40.068 INFO [20128]: SERVER_NAME = oameye.works.coregrade.com -- 21:59:40.068 INFO [20128]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=el56tf8ij7oj8pjbj9bn4mp08l0uu5qh -- 21:59:40.068 INFO [20128]: QUERY_STRING = /member/viewCardAddAction -- 21:59:40.068 INFO [20128]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:59:40.100 INFO [20128]: COREGRADE is stopping... -- 21:59:40.101 DEBUG [20128]: Closing database connection -- 21:59:40.101 SQL [20128]: pgsql_close() -- 22:02:51.525 INFO [18600]: COREGRADE is starting... -- 22:02:51.526 INFO [18600]: Version from config: 1.0 -- 22:02:51.526 DEBUG [18600]: Connecting to database... -- 22:02:51.526 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:02:51.526 SQL [18600]: pgsql_db_connect() -- 22:02:51.530 DEBUG [18600]: Database connection successful -- 22:02:51.530 INFO [18600]: _SERVER found -- 22:02:51.530 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 22:02:51.530 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 22:02:51.530 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=el56tf8ij7oj8pjbj9bn4mp08l0uu5qh -- 22:02:51.530 INFO [18600]: QUERY_STRING = /member/page -- 22:02:51.530 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:02:51.574 INFO [18600]: COREGRADE is stopping... -- 22:02:51.574 DEBUG [18600]: Closing database connection -- 22:02:51.574 SQL [18600]: pgsql_close() -- 22:02:52.011 INFO [18562]: COREGRADE is starting... -- 22:02:52.012 INFO [18562]: Version from config: 1.0 -- 22:02:52.012 DEBUG [18562]: Connecting to database... -- 22:02:52.012 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:02:52.012 SQL [18562]: pgsql_db_connect() -- 22:02:52.016 DEBUG [18562]: Database connection successful -- 22:02:52.016 INFO [18562]: _SERVER found -- 22:02:52.016 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 22:02:52.016 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 22:02:52.016 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=el56tf8ij7oj8pjbj9bn4mp08l0uu5qh -- 22:02:52.016 INFO [18562]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 22:02:52.016 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:02:52.028 INFO [18562]: COREGRADE is stopping... -- 22:02:52.028 DEBUG [18562]: Closing database connection -- 22:02:52.029 SQL [18562]: pgsql_close() -- 22:02:52.100 INFO [18562]: COREGRADE is starting... -- 22:02:52.100 INFO [18562]: Version from config: 1.0 -- 22:02:52.100 DEBUG [18562]: Connecting to database... -- 22:02:52.100 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:02:52.100 SQL [18562]: pgsql_db_connect() -- 22:02:52.104 DEBUG [18562]: Database connection successful -- 22:02:52.104 INFO [18562]: _SERVER found -- 22:02:52.104 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 22:02:52.104 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 22:02:52.104 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=el56tf8ij7oj8pjbj9bn4mp08l0uu5qh -- 22:02:52.104 INFO [18562]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 22:02:52.104 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:02:52.115 INFO [18562]: COREGRADE is stopping... -- 22:02:52.115 DEBUG [18562]: Closing database connection -- 22:02:52.115 SQL [18562]: pgsql_close() -- 22:02:54.781 INFO [18603]: COREGRADE is starting... -- 22:02:54.782 INFO [18603]: Version from config: 1.0 -- 22:02:54.782 DEBUG [18603]: Connecting to database... -- 22:02:54.782 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:02:54.782 SQL [18603]: pgsql_db_connect() -- 22:02:54.786 DEBUG [18603]: Database connection successful -- 22:02:54.786 INFO [18603]: _SERVER found -- 22:02:54.786 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 22:02:54.786 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 22:02:54.786 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=el56tf8ij7oj8pjbj9bn4mp08l0uu5qh -- 22:02:54.786 INFO [18603]: QUERY_STRING = /member/viewCardAddAction -- 22:02:54.786 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:02:54.818 INFO [18603]: COREGRADE is stopping... -- 22:02:54.818 DEBUG [18603]: Closing database connection -- 22:02:54.818 SQL [18603]: pgsql_close() -- 22:05:16.534 INFO [19761]: COREGRADE is starting... -- 22:05:16.535 INFO [19761]: Version from config: 1.0 -- 22:05:16.535 DEBUG [19761]: Connecting to database... -- 22:05:16.535 DEBUG [19761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:05:16.535 SQL [19761]: pgsql_db_connect() -- 22:05:16.539 DEBUG [19761]: Database connection successful -- 22:05:16.539 INFO [19761]: _SERVER found -- 22:05:16.539 INFO [19761]: REMOTE_ADDR = 192.168.1.13 -- 22:05:16.539 INFO [19761]: SERVER_NAME = oameye.works.coregrade.com -- 22:05:16.539 INFO [19761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=el56tf8ij7oj8pjbj9bn4mp08l0uu5qh -- 22:05:16.539 INFO [19761]: QUERY_STRING = /member/page -- 22:05:16.539 INFO [19761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:05:16.583 INFO [19761]: COREGRADE is stopping... -- 22:05:16.583 DEBUG [19761]: Closing database connection -- 22:05:16.583 SQL [19761]: pgsql_close() -- 22:05:16.884 INFO [19761]: COREGRADE is starting... -- 22:05:16.885 INFO [19761]: Version from config: 1.0 -- 22:05:16.885 DEBUG [19761]: Connecting to database... -- 22:05:16.885 DEBUG [19761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:05:16.885 SQL [19761]: pgsql_db_connect() -- 22:05:16.894 INFO [18602]: COREGRADE is starting... -- 22:05:16.894 INFO [18602]: Version from config: 1.0 -- 22:05:16.894 DEBUG [18602]: Connecting to database... -- 22:05:16.894 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:05:16.894 SQL [18602]: pgsql_db_connect() -- 22:05:16.889 DEBUG [19761]: Database connection successful -- 22:05:16.889 INFO [19761]: _SERVER found -- 22:05:16.889 INFO [19761]: REMOTE_ADDR = 192.168.1.13 -- 22:05:16.889 INFO [19761]: SERVER_NAME = oameye.works.coregrade.com -- 22:05:16.889 INFO [19761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=p6iptsijo4gtdqm5fvl68hannnidbthc -- 22:05:16.889 INFO [19761]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 22:05:16.889 INFO [19761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:05:16.901 INFO [19761]: COREGRADE is stopping... -- 22:05:16.901 DEBUG [19761]: Closing database connection -- 22:05:16.901 SQL [19761]: pgsql_close() -- 22:05:16.899 DEBUG [18602]: Database connection successful -- 22:05:16.899 INFO [18602]: _SERVER found -- 22:05:16.899 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 22:05:16.899 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 22:05:16.899 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=p6iptsijo4gtdqm5fvl68hannnidbthc -- 22:05:16.899 INFO [18602]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 22:05:16.899 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:05:16.910 INFO [18602]: COREGRADE is stopping... -- 22:05:16.911 DEBUG [18602]: Closing database connection -- 22:05:16.911 SQL [18602]: pgsql_close() -- 22:05:21.770 INFO [19781]: COREGRADE is starting... -- 22:05:21.771 INFO [19781]: Version from config: 1.0 -- 22:05:21.771 DEBUG [19781]: Connecting to database... -- 22:05:21.771 DEBUG [19781]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:05:21.771 SQL [19781]: pgsql_db_connect() -- 22:05:21.775 DEBUG [19781]: Database connection successful -- 22:05:21.775 INFO [19781]: _SERVER found -- 22:05:21.775 INFO [19781]: REMOTE_ADDR = 192.168.1.13 -- 22:05:21.775 INFO [19781]: SERVER_NAME = oameye.works.coregrade.com -- 22:05:21.775 INFO [19781]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=p6iptsijo4gtdqm5fvl68hannnidbthc -- 22:05:21.775 INFO [19781]: QUERY_STRING = /member/viewCardAddAction -- 22:05:21.775 INFO [19781]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:05:21.808 INFO [19781]: COREGRADE is stopping... -- 22:05:21.808 DEBUG [19781]: Closing database connection -- 22:05:21.808 SQL [19781]: pgsql_close() -- 22:10:16.600 INFO [20128]: COREGRADE is starting... -- 22:10:16.600 INFO [20128]: Version from config: 1.0 -- 22:10:16.600 DEBUG [20128]: Connecting to database... -- 22:10:16.600 DEBUG [20128]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:10:16.600 SQL [20128]: pgsql_db_connect() -- 22:10:16.604 DEBUG [20128]: Database connection successful -- 22:10:16.604 INFO [20128]: _SERVER found -- 22:10:16.604 INFO [20128]: REMOTE_ADDR = 192.168.1.13 -- 22:10:16.604 INFO [20128]: SERVER_NAME = oameye.works.coregrade.com -- 22:10:16.604 INFO [20128]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=p6iptsijo4gtdqm5fvl68hannnidbthc -- 22:10:16.604 INFO [20128]: QUERY_STRING = /member/page -- 22:10:16.604 INFO [20128]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:10:16.648 INFO [20128]: COREGRADE is stopping... -- 22:10:16.648 DEBUG [20128]: Closing database connection -- 22:10:16.648 SQL [20128]: pgsql_close() -- 22:10:16.951 INFO [20128]: COREGRADE is starting... -- 22:10:16.952 INFO [20128]: Version from config: 1.0 -- 22:10:16.952 DEBUG [20128]: Connecting to database... -- 22:10:16.952 DEBUG [20128]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:10:16.952 SQL [20128]: pgsql_db_connect() -- 22:10:16.958 INFO [18600]: COREGRADE is starting... -- 22:10:16.958 INFO [18600]: Version from config: 1.0 -- 22:10:16.958 DEBUG [18600]: Connecting to database... -- 22:10:16.958 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:10:16.958 SQL [18600]: pgsql_db_connect() -- 22:10:16.956 DEBUG [20128]: Database connection successful -- 22:10:16.956 INFO [20128]: _SERVER found -- 22:10:16.956 INFO [20128]: REMOTE_ADDR = 192.168.1.13 -- 22:10:16.956 INFO [20128]: SERVER_NAME = oameye.works.coregrade.com -- 22:10:16.956 INFO [20128]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=p6iptsijo4gtdqm5fvl68hannnidbthc -- 22:10:16.956 INFO [20128]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 22:10:16.956 INFO [20128]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:10:16.967 INFO [20128]: COREGRADE is stopping... -- 22:10:16.967 DEBUG [20128]: Closing database connection -- 22:10:16.967 SQL [20128]: pgsql_close() -- 22:10:16.962 DEBUG [18600]: Database connection successful -- 22:10:16.962 INFO [18600]: _SERVER found -- 22:10:16.962 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 22:10:16.962 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 22:10:16.962 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=p6iptsijo4gtdqm5fvl68hannnidbthc -- 22:10:16.962 INFO [18600]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 22:10:16.962 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:10:16.974 INFO [18600]: COREGRADE is stopping... -- 22:10:16.974 DEBUG [18600]: Closing database connection -- 22:10:16.974 SQL [18600]: pgsql_close() -- 22:10:21.431 INFO [18561]: COREGRADE is starting... -- 22:10:21.431 INFO [18561]: Version from config: 1.0 -- 22:10:21.431 DEBUG [18561]: Connecting to database... -- 22:10:21.431 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:10:21.431 SQL [18561]: pgsql_db_connect() -- 22:10:21.436 DEBUG [18561]: Database connection successful -- 22:10:21.436 INFO [18561]: _SERVER found -- 22:10:21.436 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 22:10:21.436 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 22:10:21.436 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=p6iptsijo4gtdqm5fvl68hannnidbthc -- 22:10:21.436 INFO [18561]: QUERY_STRING = /member/viewCardAddAction -- 22:10:21.436 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:10:21.468 INFO [18561]: COREGRADE is stopping... -- 22:10:21.468 DEBUG [18561]: Closing database connection -- 22:10:21.468 SQL [18561]: pgsql_close() -- 22:29:00.124 INFO [18563]: COREGRADE is starting... -- 22:29:00.124 INFO [18563]: Version from config: 1.0 -- 22:29:00.124 DEBUG [18563]: Connecting to database... -- 22:29:00.124 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:29:00.124 SQL [18563]: pgsql_db_connect() -- 22:29:00.128 DEBUG [18563]: Database connection successful -- 22:29:00.128 INFO [18563]: _SERVER found -- 22:29:00.128 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 22:29:00.128 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 22:29:00.128 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=p6iptsijo4gtdqm5fvl68hannnidbthc -- 22:29:00.128 INFO [18563]: QUERY_STRING = /member/page -- 22:29:00.128 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:29:00.175 INFO [18563]: COREGRADE is stopping... -- 22:29:00.175 DEBUG [18563]: Closing database connection -- 22:29:00.175 SQL [18563]: pgsql_close() -- 22:29:01.227 INFO [18562]: COREGRADE is starting... -- 22:29:01.227 INFO [18562]: Version from config: 1.0 -- 22:29:01.227 DEBUG [18562]: Connecting to database... -- 22:29:01.227 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:29:01.227 SQL [18562]: pgsql_db_connect() -- 22:29:01.232 DEBUG [18562]: Database connection successful -- 22:29:01.232 INFO [18562]: _SERVER found -- 22:29:01.232 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 22:29:01.232 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 22:29:01.232 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=v92sdel98qfk2im4l3dvn9812fmvtsvm -- 22:29:01.232 INFO [18562]: QUERY_STRING = /app-assets/vendors/js/waves.min.js.map -- 22:29:01.232 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:29:01.244 INFO [18562]: COREGRADE is stopping... -- 22:29:01.244 DEBUG [18562]: Closing database connection -- 22:29:01.244 SQL [18562]: pgsql_close() -- 22:29:01.381 INFO [18562]: COREGRADE is starting... -- 22:29:01.382 INFO [18562]: Version from config: 1.0 -- 22:29:01.382 DEBUG [18562]: Connecting to database... -- 22:29:01.382 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:29:01.382 SQL [18562]: pgsql_db_connect() -- 22:29:01.386 DEBUG [18562]: Database connection successful -- 22:29:01.386 INFO [18562]: _SERVER found -- 22:29:01.386 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 22:29:01.386 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 22:29:01.386 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=v92sdel98qfk2im4l3dvn9812fmvtsvm -- 22:29:01.386 INFO [18562]: QUERY_STRING = /app-assets/vendors/js/extensions/shepherd.min.js.map -- 22:29:01.386 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:29:01.401 INFO [18562]: COREGRADE is stopping... -- 22:29:01.401 DEBUG [18562]: Closing database connection -- 22:29:01.401 SQL [18562]: pgsql_close() -- 22:29:05.453 INFO [19761]: COREGRADE is starting... -- 22:29:05.453 INFO [19761]: Version from config: 1.0 -- 22:29:05.453 DEBUG [19761]: Connecting to database... -- 22:29:05.453 DEBUG [19761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:29:05.453 SQL [19761]: pgsql_db_connect() -- 22:29:05.458 DEBUG [19761]: Database connection successful -- 22:29:05.458 INFO [19761]: _SERVER found -- 22:29:05.458 INFO [19761]: REMOTE_ADDR = 192.168.1.13 -- 22:29:05.458 INFO [19761]: SERVER_NAME = oameye.works.coregrade.com -- 22:29:05.458 INFO [19761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=v92sdel98qfk2im4l3dvn9812fmvtsvm -- 22:29:05.458 INFO [19761]: QUERY_STRING = /member/viewCardAddAction -- 22:29:05.458 INFO [19761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:29:05.490 INFO [19761]: COREGRADE is stopping... -- 22:29:05.490 DEBUG [19761]: Closing database connection -- 22:29:05.490 SQL [19761]: pgsql_close() -- 22:30:18.740 INFO [19781]: COREGRADE is starting... -- 22:30:18.740 INFO [19781]: Version from config: 1.0 -- 22:30:18.740 DEBUG [19781]: Connecting to database... -- 22:30:18.740 DEBUG [19781]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:30:18.740 SQL [19781]: pgsql_db_connect() -- 22:30:18.744 DEBUG [19781]: Database connection successful -- 22:30:18.744 INFO [19781]: _SERVER found -- 22:30:18.744 INFO [19781]: REMOTE_ADDR = 192.168.1.13 -- 22:30:18.744 INFO [19781]: SERVER_NAME = oameye.works.coregrade.com -- 22:30:18.744 INFO [19781]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=v92sdel98qfk2im4l3dvn9812fmvtsvm -- 22:30:18.744 INFO [19781]: QUERY_STRING = /member/page -- 22:30:18.744 INFO [19781]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:30:18.789 INFO [19781]: COREGRADE is stopping... -- 22:30:18.789 DEBUG [19781]: Closing database connection -- 22:30:18.789 SQL [19781]: pgsql_close() -- 22:30:19.202 INFO [20128]: COREGRADE is starting... -- 22:30:19.202 INFO [20128]: Version from config: 1.0 -- 22:30:19.202 DEBUG [20128]: Connecting to database... -- 22:30:19.202 DEBUG [20128]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:30:19.202 SQL [20128]: pgsql_db_connect() -- 22:30:19.207 INFO [18561]: COREGRADE is starting... -- 22:30:19.207 INFO [18561]: Version from config: 1.0 -- 22:30:19.207 DEBUG [18561]: Connecting to database... -- 22:30:19.207 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:30:19.207 SQL [18561]: pgsql_db_connect() -- 22:30:19.206 DEBUG [20128]: Database connection successful -- 22:30:19.206 INFO [20128]: _SERVER found -- 22:30:19.206 INFO [20128]: REMOTE_ADDR = 192.168.1.13 -- 22:30:19.206 INFO [20128]: SERVER_NAME = oameye.works.coregrade.com -- 22:30:19.206 INFO [20128]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=v92sdel98qfk2im4l3dvn9812fmvtsvm -- 22:30:19.206 INFO [20128]: QUERY_STRING = /app-assets/css/style.css -- 22:30:19.206 INFO [20128]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:30:19.218 INFO [20128]: COREGRADE is stopping... -- 22:30:19.218 DEBUG [20128]: Closing database connection -- 22:30:19.218 SQL [20128]: pgsql_close() -- 22:30:19.211 DEBUG [18561]: Database connection successful -- 22:30:19.211 INFO [18561]: _SERVER found -- 22:30:19.211 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 22:30:19.211 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 22:30:19.211 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=v92sdel98qfk2im4l3dvn9812fmvtsvm -- 22:30:19.211 INFO [18561]: QUERY_STRING = /app-assets/images/profile/profile-avatar.jpg -- 22:30:19.211 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:30:19.223 INFO [18561]: COREGRADE is stopping... -- 22:30:19.223 DEBUG [18561]: Closing database connection -- 22:30:19.223 SQL [18561]: pgsql_close() -- 22:30:19.582 INFO [18600]: COREGRADE is starting... -- 22:30:19.583 INFO [18600]: Version from config: 1.0 -- 22:30:19.583 DEBUG [18600]: Connecting to database... -- 22:30:19.583 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:30:19.583 SQL [18600]: pgsql_db_connect() -- 22:30:19.589 INFO [18603]: COREGRADE is starting... -- 22:30:19.589 INFO [18603]: Version from config: 1.0 -- 22:30:19.589 DEBUG [18603]: Connecting to database... -- 22:30:19.589 DEBUG [18603]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:30:19.589 SQL [18603]: pgsql_db_connect() -- 22:30:19.587 DEBUG [18600]: Database connection successful -- 22:30:19.587 INFO [18600]: _SERVER found -- 22:30:19.587 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 22:30:19.587 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 22:30:19.587 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=v92sdel98qfk2im4l3dvn9812fmvtsvm -- 22:30:19.587 INFO [18600]: QUERY_STRING = /app-assets/vendors/js/waves.min.js.map -- 22:30:19.587 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:30:19.599 INFO [18600]: COREGRADE is stopping... -- 22:30:19.599 DEBUG [18600]: Closing database connection -- 22:30:19.599 SQL [18600]: pgsql_close() -- 22:30:19.594 DEBUG [18603]: Database connection successful -- 22:30:19.594 INFO [18603]: _SERVER found -- 22:30:19.594 INFO [18603]: REMOTE_ADDR = 192.168.1.13 -- 22:30:19.594 INFO [18603]: SERVER_NAME = oameye.works.coregrade.com -- 22:30:19.594 INFO [18603]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=v92sdel98qfk2im4l3dvn9812fmvtsvm -- 22:30:19.594 INFO [18603]: QUERY_STRING = /app-assets/vendors/js/extensions/shepherd.min.js.map -- 22:30:19.594 INFO [18603]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:30:19.606 INFO [18603]: COREGRADE is stopping... -- 22:30:19.606 DEBUG [18603]: Closing database connection -- 22:30:19.606 SQL [18603]: pgsql_close() -- 22:30:23.903 INFO [18602]: COREGRADE is starting... -- 22:30:23.903 INFO [18602]: Version from config: 1.0 -- 22:30:23.903 DEBUG [18602]: Connecting to database... -- 22:30:23.903 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:30:23.903 SQL [18602]: pgsql_db_connect() -- 22:30:23.907 DEBUG [18602]: Database connection successful -- 22:30:23.907 INFO [18602]: _SERVER found -- 22:30:23.907 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 22:30:23.907 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 22:30:23.907 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=v92sdel98qfk2im4l3dvn9812fmvtsvm -- 22:30:23.907 INFO [18602]: QUERY_STRING = /member/viewCardAddAction -- 22:30:23.907 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:30:23.940 INFO [18602]: COREGRADE is stopping... -- 22:30:23.940 DEBUG [18602]: Closing database connection -- 22:30:23.940 SQL [18602]: pgsql_close() -- 22:30:38.732 INFO [18562]: COREGRADE is starting... -- 22:30:38.732 INFO [18562]: Version from config: 1.0 -- 22:30:38.732 DEBUG [18562]: Connecting to database... -- 22:30:38.732 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:30:38.732 SQL [18562]: pgsql_db_connect() -- 22:30:38.736 DEBUG [18562]: Database connection successful -- 22:30:38.736 INFO [18562]: _SERVER found -- 22:30:38.736 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 22:30:38.736 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 22:30:38.736 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=v92sdel98qfk2im4l3dvn9812fmvtsvm -- 22:30:38.736 INFO [18562]: QUERY_STRING = /member/page -- 22:30:38.736 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:30:38.779 INFO [18562]: COREGRADE is stopping... -- 22:30:38.779 DEBUG [18562]: Closing database connection -- 22:30:38.779 SQL [18562]: pgsql_close() -- 22:30:39.021 INFO [19761]: COREGRADE is starting... -- 22:30:39.021 INFO [19761]: Version from config: 1.0 -- 22:30:39.021 DEBUG [19761]: Connecting to database... -- 22:30:39.021 DEBUG [19761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:30:39.021 SQL [19761]: pgsql_db_connect() -- 22:30:39.025 DEBUG [19761]: Database connection successful -- 22:30:39.025 INFO [19761]: _SERVER found -- 22:30:39.025 INFO [19761]: REMOTE_ADDR = 192.168.1.13 -- 22:30:39.025 INFO [19761]: SERVER_NAME = oameye.works.coregrade.com -- 22:30:39.025 INFO [19761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=v92sdel98qfk2im4l3dvn9812fmvtsvm -- 22:30:39.025 INFO [19761]: QUERY_STRING = /app-assets/css/style.css -- 22:30:39.025 INFO [19761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:30:39.036 INFO [19761]: COREGRADE is stopping... -- 22:30:39.036 DEBUG [19761]: Closing database connection -- 22:30:39.036 SQL [19761]: pgsql_close() -- 22:30:39.248 INFO [20128]: COREGRADE is starting... -- 22:30:39.249 INFO [20128]: Version from config: 1.0 -- 22:30:39.249 DEBUG [20128]: Connecting to database... -- 22:30:39.249 DEBUG [20128]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:30:39.249 SQL [20128]: pgsql_db_connect() -- 22:30:39.253 DEBUG [20128]: Database connection successful -- 22:30:39.253 INFO [20128]: _SERVER found -- 22:30:39.253 INFO [20128]: REMOTE_ADDR = 192.168.1.13 -- 22:30:39.253 INFO [20128]: SERVER_NAME = oameye.works.coregrade.com -- 22:30:39.253 INFO [20128]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=v92sdel98qfk2im4l3dvn9812fmvtsvm -- 22:30:39.253 INFO [20128]: QUERY_STRING = /app-assets/images/profile/profile-avatar.jpg -- 22:30:39.253 INFO [20128]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:30:39.265 INFO [20128]: COREGRADE is stopping... -- 22:30:39.265 DEBUG [20128]: Closing database connection -- 22:30:39.265 SQL [20128]: pgsql_close() -- 22:30:39.696 INFO [19781]: COREGRADE is starting... -- 22:30:39.696 INFO [19781]: Version from config: 1.0 -- 22:30:39.696 DEBUG [19781]: Connecting to database... -- 22:30:39.696 DEBUG [19781]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:30:39.696 SQL [19781]: pgsql_db_connect() -- 22:30:39.701 DEBUG [19781]: Database connection successful -- 22:30:39.701 INFO [19781]: _SERVER found -- 22:30:39.701 INFO [19781]: REMOTE_ADDR = 192.168.1.13 -- 22:30:39.701 INFO [19781]: SERVER_NAME = oameye.works.coregrade.com -- 22:30:39.701 INFO [19781]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=v92sdel98qfk2im4l3dvn9812fmvtsvm -- 22:30:39.701 INFO [19781]: QUERY_STRING = /app-assets/vendors/js/waves.min.js.map -- 22:30:39.701 INFO [19781]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:30:39.712 INFO [19781]: COREGRADE is stopping... -- 22:30:39.712 DEBUG [19781]: Closing database connection -- 22:30:39.712 SQL [19781]: pgsql_close() -- 22:30:40.624 INFO [18600]: COREGRADE is starting... -- 22:30:40.625 INFO [18600]: Version from config: 1.0 -- 22:30:40.625 DEBUG [18600]: Connecting to database... -- 22:30:40.625 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:30:40.625 SQL [18600]: pgsql_db_connect() -- 22:30:40.629 DEBUG [18600]: Database connection successful -- 22:30:40.629 INFO [18600]: _SERVER found -- 22:30:40.629 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 22:30:40.629 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 22:30:40.629 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=v92sdel98qfk2im4l3dvn9812fmvtsvm -- 22:30:40.629 INFO [18600]: QUERY_STRING = /app-assets/vendors/js/extensions/shepherd.min.js.map -- 22:30:40.629 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:30:40.640 INFO [18600]: COREGRADE is stopping... -- 22:30:40.640 DEBUG [18600]: Closing database connection -- 22:30:40.640 SQL [18600]: pgsql_close() -- 22:32:14.624 INFO [18604]: COREGRADE is starting... -- 22:32:14.624 INFO [18604]: Version from config: 1.0 -- 22:32:14.624 DEBUG [18604]: Connecting to database... -- 22:32:14.624 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:32:14.624 SQL [18604]: pgsql_db_connect() -- 22:32:14.629 DEBUG [18604]: Database connection successful -- 22:32:14.629 INFO [18604]: _SERVER found -- 22:32:14.629 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 22:32:14.629 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 22:32:14.629 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=v92sdel98qfk2im4l3dvn9812fmvtsvm -- 22:32:14.629 INFO [18604]: QUERY_STRING = /member/page -- 22:32:14.629 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:32:14.674 INFO [18604]: COREGRADE is stopping... -- 22:32:14.674 DEBUG [18604]: Closing database connection -- 22:32:14.674 SQL [18604]: pgsql_close() -- 22:32:14.748 INFO [18604]: COREGRADE is starting... -- 22:32:14.748 INFO [18604]: Version from config: 1.0 -- 22:32:14.748 DEBUG [18604]: Connecting to database... -- 22:32:14.748 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:32:14.748 SQL [18604]: pgsql_db_connect() -- 22:32:14.752 DEBUG [18604]: Database connection successful -- 22:32:14.752 INFO [18604]: _SERVER found -- 22:32:14.752 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 22:32:14.752 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 22:32:14.752 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=v92sdel98qfk2im4l3dvn9812fmvtsvm -- 22:32:14.752 INFO [18604]: QUERY_STRING = /app-assets/css/style.css -- 22:32:14.752 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:32:14.763 INFO [18604]: COREGRADE is stopping... -- 22:32:14.763 DEBUG [18604]: Closing database connection -- 22:32:14.763 SQL [18604]: pgsql_close() -- 22:32:14.768 INFO [18602]: COREGRADE is starting... -- 22:32:14.768 INFO [18602]: Version from config: 1.0 -- 22:32:14.768 DEBUG [18602]: Connecting to database... -- 22:32:14.768 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:32:14.769 SQL [18602]: pgsql_db_connect() -- 22:32:14.772 DEBUG [18602]: Database connection successful -- 22:32:14.772 INFO [18602]: _SERVER found -- 22:32:14.772 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 22:32:14.772 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 22:32:14.772 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=v92sdel98qfk2im4l3dvn9812fmvtsvm -- 22:32:14.772 INFO [18602]: QUERY_STRING = /app-assets/images/profile/profile-avatar.jpg -- 22:32:14.772 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:32:14.784 INFO [18602]: COREGRADE is stopping... -- 22:32:14.784 DEBUG [18602]: Closing database connection -- 22:32:14.784 SQL [18602]: pgsql_close() -- 22:32:15.121 INFO [20641]: COREGRADE is starting... -- 22:32:15.122 INFO [20641]: Version from config: 1.0 -- 22:32:15.122 DEBUG [20641]: Connecting to database... -- 22:32:15.122 DEBUG [20641]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:32:15.122 SQL [20641]: pgsql_db_connect() -- 22:32:15.126 DEBUG [20641]: Database connection successful -- 22:32:15.126 INFO [20641]: _SERVER found -- 22:32:15.126 INFO [20641]: REMOTE_ADDR = 192.168.1.13 -- 22:32:15.126 INFO [20641]: SERVER_NAME = oameye.works.coregrade.com -- 22:32:15.126 INFO [20641]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=v92sdel98qfk2im4l3dvn9812fmvtsvm -- 22:32:15.126 INFO [20641]: QUERY_STRING = /app-assets/vendors/js/waves.min.js.map -- 22:32:15.126 INFO [20641]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:32:15.140 INFO [20641]: COREGRADE is stopping... -- 22:32:15.140 DEBUG [20641]: Closing database connection -- 22:32:15.140 SQL [20641]: pgsql_close() -- 22:32:15.150 INFO [20641]: COREGRADE is starting... -- 22:32:15.150 INFO [20641]: Version from config: 1.0 -- 22:32:15.150 DEBUG [20641]: Connecting to database... -- 22:32:15.150 DEBUG [20641]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:32:15.150 SQL [20641]: pgsql_db_connect() -- 22:32:15.154 DEBUG [20641]: Database connection successful -- 22:32:15.154 INFO [20641]: _SERVER found -- 22:32:15.154 INFO [20641]: REMOTE_ADDR = 192.168.1.13 -- 22:32:15.154 INFO [20641]: SERVER_NAME = oameye.works.coregrade.com -- 22:32:15.154 INFO [20641]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=v92sdel98qfk2im4l3dvn9812fmvtsvm -- 22:32:15.154 INFO [20641]: QUERY_STRING = /app-assets/vendors/js/extensions/shepherd.min.js.map -- 22:32:15.154 INFO [20641]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:32:15.167 INFO [20641]: COREGRADE is stopping... -- 22:32:15.167 DEBUG [20641]: Closing database connection -- 22:32:15.167 SQL [20641]: pgsql_close() -- 22:32:19.197 INFO [18563]: COREGRADE is starting... -- 22:32:19.197 INFO [18563]: Version from config: 1.0 -- 22:32:19.197 DEBUG [18563]: Connecting to database... -- 22:32:19.197 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:32:19.197 SQL [18563]: pgsql_db_connect() -- 22:32:19.201 DEBUG [18563]: Database connection successful -- 22:32:19.201 INFO [18563]: _SERVER found -- 22:32:19.201 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 22:32:19.201 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 22:32:19.201 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=v92sdel98qfk2im4l3dvn9812fmvtsvm -- 22:32:19.201 INFO [18563]: QUERY_STRING = /member/viewCardAddAction -- 22:32:19.201 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:32:19.234 INFO [18563]: COREGRADE is stopping... -- 22:32:19.234 DEBUG [18563]: Closing database connection -- 22:32:19.234 SQL [18563]: pgsql_close() -- 22:39:55.015 INFO [18561]: COREGRADE is starting... -- 22:39:55.016 INFO [18561]: Version from config: 1.0 -- 22:39:55.016 DEBUG [18561]: Connecting to database... -- 22:39:55.016 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:39:55.016 SQL [18561]: pgsql_db_connect() -- 22:39:55.020 DEBUG [18561]: Database connection successful -- 22:39:55.020 INFO [18561]: _SERVER found -- 22:39:55.020 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 22:39:55.020 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 22:39:55.020 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=v92sdel98qfk2im4l3dvn9812fmvtsvm -- 22:39:55.020 INFO [18561]: QUERY_STRING = /member/page -- 22:39:55.020 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:39:55.065 INFO [18561]: COREGRADE is stopping... -- 22:39:55.065 DEBUG [18561]: Closing database connection -- 22:39:55.065 SQL [18561]: pgsql_close() -- 22:39:55.131 INFO [18561]: COREGRADE is starting... -- 22:39:55.131 INFO [18561]: Version from config: 1.0 -- 22:39:55.131 DEBUG [18561]: Connecting to database... -- 22:39:55.131 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:39:55.131 SQL [18561]: pgsql_db_connect() -- 22:39:55.135 DEBUG [18561]: Database connection successful -- 22:39:55.135 INFO [18561]: _SERVER found -- 22:39:55.135 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 22:39:55.135 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 22:39:55.135 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=c0cupo3m7ok4m0qos8q9cqckog17p0be -- 22:39:55.135 INFO [18561]: QUERY_STRING = /app-assets/css/style.css -- 22:39:55.135 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:39:55.146 INFO [18561]: COREGRADE is stopping... -- 22:39:55.146 DEBUG [18561]: Closing database connection -- 22:39:55.146 SQL [18561]: pgsql_close() -- 22:39:55.148 INFO [18562]: COREGRADE is starting... -- 22:39:55.148 INFO [18562]: Version from config: 1.0 -- 22:39:55.148 DEBUG [18562]: Connecting to database... -- 22:39:55.148 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:39:55.148 SQL [18562]: pgsql_db_connect() -- 22:39:55.158 INFO [18561]: COREGRADE is starting... -- 22:39:55.159 INFO [18561]: Version from config: 1.0 -- 22:39:55.159 DEBUG [18561]: Connecting to database... -- 22:39:55.159 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:39:55.159 SQL [18561]: pgsql_db_connect() -- 22:39:55.152 DEBUG [18562]: Database connection successful -- 22:39:55.152 INFO [18562]: _SERVER found -- 22:39:55.152 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 22:39:55.152 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 22:39:55.152 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=c0cupo3m7ok4m0qos8q9cqckog17p0be -- 22:39:55.152 INFO [18562]: QUERY_STRING = /member/app-assets/vendors/js/extensions/dropzone.min.js -- 22:39:55.152 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:39:55.164 INFO [18562]: COREGRADE is stopping... -- 22:39:55.164 DEBUG [18562]: Closing database connection -- 22:39:55.164 SQL [18562]: pgsql_close() -- 22:39:55.163 DEBUG [18561]: Database connection successful -- 22:39:55.163 INFO [18561]: _SERVER found -- 22:39:55.163 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 22:39:55.163 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 22:39:55.163 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=c0cupo3m7ok4m0qos8q9cqckog17p0be -- 22:39:55.163 INFO [18561]: QUERY_STRING = /app-assets/images/profile/profile-avatar.jpg -- 22:39:55.163 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:39:55.174 INFO [18561]: COREGRADE is stopping... -- 22:39:55.174 DEBUG [18561]: Closing database connection -- 22:39:55.174 SQL [18561]: pgsql_close() -- 22:39:55.338 INFO [18561]: COREGRADE is starting... -- 22:39:55.338 INFO [18561]: Version from config: 1.0 -- 22:39:55.338 DEBUG [18561]: Connecting to database... -- 22:39:55.338 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:39:55.338 SQL [18561]: pgsql_db_connect() -- 22:39:55.342 DEBUG [18561]: Database connection successful -- 22:39:55.342 INFO [18561]: _SERVER found -- 22:39:55.342 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 22:39:55.342 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 22:39:55.342 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=c0cupo3m7ok4m0qos8q9cqckog17p0be -- 22:39:55.342 INFO [18561]: QUERY_STRING = /app-assets/vendors/js/waves.min.js.map -- 22:39:55.342 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:39:55.353 INFO [18561]: COREGRADE is stopping... -- 22:39:55.353 DEBUG [18561]: Closing database connection -- 22:39:55.353 SQL [18561]: pgsql_close() -- 22:39:55.415 INFO [18561]: COREGRADE is starting... -- 22:39:55.415 INFO [18561]: Version from config: 1.0 -- 22:39:55.415 DEBUG [18561]: Connecting to database... -- 22:39:55.415 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:39:55.415 SQL [18561]: pgsql_db_connect() -- 22:39:55.419 DEBUG [18561]: Database connection successful -- 22:39:55.419 INFO [18561]: _SERVER found -- 22:39:55.419 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 22:39:55.419 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 22:39:55.419 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=c0cupo3m7ok4m0qos8q9cqckog17p0be -- 22:39:55.419 INFO [18561]: QUERY_STRING = /app-assets/vendors/js/extensions/shepherd.min.js.map -- 22:39:55.419 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:39:55.430 INFO [18561]: COREGRADE is stopping... -- 22:39:55.430 DEBUG [18561]: Closing database connection -- 22:39:55.430 SQL [18561]: pgsql_close() -- 22:42:08.238 INFO [19761]: COREGRADE is starting... -- 22:42:08.239 INFO [19761]: Version from config: 1.0 -- 22:42:08.239 DEBUG [19761]: Connecting to database... -- 22:42:08.239 DEBUG [19761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:42:08.239 SQL [19761]: pgsql_db_connect() -- 22:42:08.243 DEBUG [19761]: Database connection successful -- 22:42:08.243 INFO [19761]: _SERVER found -- 22:42:08.243 INFO [19761]: REMOTE_ADDR = 192.168.1.13 -- 22:42:08.243 INFO [19761]: SERVER_NAME = oameye.works.coregrade.com -- 22:42:08.243 INFO [19761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=c0cupo3m7ok4m0qos8q9cqckog17p0be -- 22:42:08.243 INFO [19761]: QUERY_STRING = /member/page -- 22:42:08.243 INFO [19761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:42:08.288 INFO [19761]: COREGRADE is stopping... -- 22:42:08.288 DEBUG [19761]: Closing database connection -- 22:42:08.288 SQL [19761]: pgsql_close() -- 22:42:08.631 INFO [19761]: COREGRADE is starting... -- 22:42:08.631 INFO [19761]: Version from config: 1.0 -- 22:42:08.631 DEBUG [19761]: Connecting to database... -- 22:42:08.631 DEBUG [19761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:42:08.631 SQL [19761]: pgsql_db_connect() -- 22:42:08.640 INFO [20128]: COREGRADE is starting... -- 22:42:08.640 INFO [20128]: Version from config: 1.0 -- 22:42:08.640 DEBUG [20128]: Connecting to database... -- 22:42:08.640 DEBUG [20128]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:42:08.640 SQL [20128]: pgsql_db_connect() -- 22:42:08.635 DEBUG [19761]: Database connection successful -- 22:42:08.635 INFO [19761]: _SERVER found -- 22:42:08.635 INFO [19761]: REMOTE_ADDR = 192.168.1.13 -- 22:42:08.635 INFO [19761]: SERVER_NAME = oameye.works.coregrade.com -- 22:42:08.635 INFO [19761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=c0cupo3m7ok4m0qos8q9cqckog17p0be -- 22:42:08.635 INFO [19761]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 22:42:08.635 INFO [19761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:42:08.647 INFO [19761]: COREGRADE is stopping... -- 22:42:08.647 DEBUG [19761]: Closing database connection -- 22:42:08.647 SQL [19761]: pgsql_close() -- 22:42:08.644 DEBUG [20128]: Database connection successful -- 22:42:08.644 INFO [20128]: _SERVER found -- 22:42:08.644 INFO [20128]: REMOTE_ADDR = 192.168.1.13 -- 22:42:08.644 INFO [20128]: SERVER_NAME = oameye.works.coregrade.com -- 22:42:08.644 INFO [20128]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=c0cupo3m7ok4m0qos8q9cqckog17p0be -- 22:42:08.644 INFO [20128]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 22:42:08.644 INFO [20128]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:42:08.656 INFO [20128]: COREGRADE is stopping... -- 22:42:08.656 DEBUG [20128]: Closing database connection -- 22:42:08.656 SQL [20128]: pgsql_close() -- 22:42:14.475 INFO [19781]: COREGRADE is starting... -- 22:42:14.476 INFO [19781]: Version from config: 1.0 -- 22:42:14.476 DEBUG [19781]: Connecting to database... -- 22:42:14.476 DEBUG [19781]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:42:14.476 SQL [19781]: pgsql_db_connect() -- 22:42:14.480 DEBUG [19781]: Database connection successful -- 22:42:14.480 INFO [19781]: _SERVER found -- 22:42:14.480 INFO [19781]: REMOTE_ADDR = 192.168.1.13 -- 22:42:14.480 INFO [19781]: SERVER_NAME = oameye.works.coregrade.com -- 22:42:14.480 INFO [19781]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=c0cupo3m7ok4m0qos8q9cqckog17p0be -- 22:42:14.480 INFO [19781]: QUERY_STRING = /member/viewCardAddAction -- 22:42:14.480 INFO [19781]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:42:14.512 INFO [19781]: COREGRADE is stopping... -- 22:42:14.512 DEBUG [19781]: Closing database connection -- 22:42:14.512 SQL [19781]: pgsql_close() -- 22:42:44.484 INFO [18600]: COREGRADE is starting... -- 22:42:44.484 INFO [18600]: Version from config: 1.0 -- 22:42:44.484 DEBUG [18600]: Connecting to database... -- 22:42:44.484 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:42:44.484 SQL [18600]: pgsql_db_connect() -- 22:42:44.488 DEBUG [18600]: Database connection successful -- 22:42:44.488 INFO [18600]: _SERVER found -- 22:42:44.488 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 22:42:44.488 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 22:42:44.488 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=c0cupo3m7ok4m0qos8q9cqckog17p0be -- 22:42:44.488 INFO [18600]: QUERY_STRING = /member/page -- 22:42:44.488 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:42:44.532 INFO [18600]: COREGRADE is stopping... -- 22:42:44.532 DEBUG [18600]: Closing database connection -- 22:42:44.532 SQL [18600]: pgsql_close() -- 22:42:45.599 INFO [20641]: COREGRADE is starting... -- 22:42:45.599 INFO [20641]: Version from config: 1.0 -- 22:42:45.599 DEBUG [20641]: Connecting to database... -- 22:42:45.599 DEBUG [20641]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:42:45.599 SQL [20641]: pgsql_db_connect() -- 22:42:45.604 DEBUG [20641]: Database connection successful -- 22:42:45.604 INFO [20641]: _SERVER found -- 22:42:45.604 INFO [20641]: REMOTE_ADDR = 192.168.1.13 -- 22:42:45.604 INFO [20641]: SERVER_NAME = oameye.works.coregrade.com -- 22:42:45.604 INFO [20641]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=c0cupo3m7ok4m0qos8q9cqckog17p0be -- 22:42:45.604 INFO [20641]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 22:42:45.604 INFO [20641]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:42:45.617 INFO [20641]: COREGRADE is stopping... -- 22:42:45.617 DEBUG [20641]: Closing database connection -- 22:42:45.617 SQL [20641]: pgsql_close() -- 22:42:46.847 INFO [18562]: COREGRADE is starting... -- 22:42:46.847 INFO [18562]: Version from config: 1.0 -- 22:42:46.847 DEBUG [18562]: Connecting to database... -- 22:42:46.847 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:42:46.847 SQL [18562]: pgsql_db_connect() -- 22:42:46.851 DEBUG [18562]: Database connection successful -- 22:42:46.851 INFO [18562]: _SERVER found -- 22:42:46.851 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 22:42:46.851 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 22:42:46.851 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=c0cupo3m7ok4m0qos8q9cqckog17p0be -- 22:42:46.851 INFO [18562]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 22:42:46.851 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:42:46.863 INFO [18562]: COREGRADE is stopping... -- 22:42:46.863 DEBUG [18562]: Closing database connection -- 22:42:46.863 SQL [18562]: pgsql_close() -- 22:42:54.161 INFO [18561]: COREGRADE is starting... -- 22:42:54.162 INFO [18561]: Version from config: 1.0 -- 22:42:54.162 DEBUG [18561]: Connecting to database... -- 22:42:54.162 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:42:54.162 SQL [18561]: pgsql_db_connect() -- 22:42:54.166 DEBUG [18561]: Database connection successful -- 22:42:54.166 INFO [18561]: _SERVER found -- 22:42:54.166 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 22:42:54.166 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 22:42:54.166 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=c0cupo3m7ok4m0qos8q9cqckog17p0be -- 22:42:54.166 INFO [18561]: QUERY_STRING = /member/viewCardAddAction -- 22:42:54.166 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:42:54.197 INFO [18561]: COREGRADE is stopping... -- 22:42:54.197 DEBUG [18561]: Closing database connection -- 22:42:54.197 SQL [18561]: pgsql_close() -- 22:44:42.174 INFO [20128]: COREGRADE is starting... -- 22:44:42.174 INFO [20128]: Version from config: 1.0 -- 22:44:42.174 DEBUG [20128]: Connecting to database... -- 22:44:42.174 DEBUG [20128]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:44:42.174 SQL [20128]: pgsql_db_connect() -- 22:44:42.178 DEBUG [20128]: Database connection successful -- 22:44:42.178 INFO [20128]: _SERVER found -- 22:44:42.178 INFO [20128]: REMOTE_ADDR = 192.168.1.13 -- 22:44:42.178 INFO [20128]: SERVER_NAME = oameye.works.coregrade.com -- 22:44:42.178 INFO [20128]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=c0cupo3m7ok4m0qos8q9cqckog17p0be -- 22:44:42.178 INFO [20128]: QUERY_STRING = /member/page -- 22:44:42.178 INFO [20128]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:44:42.222 INFO [20128]: COREGRADE is stopping... -- 22:44:42.222 DEBUG [20128]: Closing database connection -- 22:44:42.222 SQL [20128]: pgsql_close() -- 22:44:43.525 INFO [18600]: COREGRADE is starting... -- 22:44:43.526 INFO [18600]: Version from config: 1.0 -- 22:44:43.526 DEBUG [18600]: Connecting to database... -- 22:44:43.526 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:44:43.526 SQL [18600]: pgsql_db_connect() -- 22:44:43.530 DEBUG [18600]: Database connection successful -- 22:44:43.530 INFO [18600]: _SERVER found -- 22:44:43.530 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 22:44:43.530 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 22:44:43.530 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=c0cupo3m7ok4m0qos8q9cqckog17p0be -- 22:44:43.530 INFO [18600]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 22:44:43.530 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:44:43.541 INFO [18600]: COREGRADE is stopping... -- 22:44:43.541 DEBUG [18600]: Closing database connection -- 22:44:43.541 SQL [18600]: pgsql_close() -- 22:44:44.324 INFO [18563]: COREGRADE is starting... -- 22:44:44.325 INFO [18563]: Version from config: 1.0 -- 22:44:44.325 DEBUG [18563]: Connecting to database... -- 22:44:44.325 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:44:44.325 SQL [18563]: pgsql_db_connect() -- 22:44:44.329 DEBUG [18563]: Database connection successful -- 22:44:44.329 INFO [18563]: _SERVER found -- 22:44:44.329 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 22:44:44.329 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 22:44:44.329 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=c0cupo3m7ok4m0qos8q9cqckog17p0be -- 22:44:44.329 INFO [18563]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 22:44:44.329 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:44:44.340 INFO [18563]: COREGRADE is stopping... -- 22:44:44.341 DEBUG [18563]: Closing database connection -- 22:44:44.341 SQL [18563]: pgsql_close() -- 22:44:53.336 INFO [18602]: COREGRADE is starting... -- 22:44:53.336 INFO [18602]: Version from config: 1.0 -- 22:44:53.336 DEBUG [18602]: Connecting to database... -- 22:44:53.336 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:44:53.336 SQL [18602]: pgsql_db_connect() -- 22:44:53.340 DEBUG [18602]: Database connection successful -- 22:44:53.340 INFO [18602]: _SERVER found -- 22:44:53.340 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 22:44:53.340 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 22:44:53.340 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=c0cupo3m7ok4m0qos8q9cqckog17p0be -- 22:44:53.340 INFO [18602]: QUERY_STRING = /member/viewCardAddAction -- 22:44:53.340 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:44:53.372 INFO [18602]: COREGRADE is stopping... -- 22:44:53.372 DEBUG [18602]: Closing database connection -- 22:44:53.372 SQL [18602]: pgsql_close() -- 22:46:37.036 INFO [20641]: COREGRADE is starting... -- 22:46:37.036 INFO [20641]: Version from config: 1.0 -- 22:46:37.036 DEBUG [20641]: Connecting to database... -- 22:46:37.036 DEBUG [20641]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:46:37.037 SQL [20641]: pgsql_db_connect() -- 22:46:37.040 DEBUG [20641]: Database connection successful -- 22:46:37.040 INFO [20641]: _SERVER found -- 22:46:37.040 INFO [20641]: REMOTE_ADDR = 192.168.1.13 -- 22:46:37.040 INFO [20641]: SERVER_NAME = oameye.works.coregrade.com -- 22:46:37.040 INFO [20641]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=c0cupo3m7ok4m0qos8q9cqckog17p0be -- 22:46:37.040 INFO [20641]: QUERY_STRING = /member/page -- 22:46:37.040 INFO [20641]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:46:37.087 INFO [20641]: COREGRADE is stopping... -- 22:46:37.087 DEBUG [20641]: Closing database connection -- 22:46:37.087 SQL [20641]: pgsql_close() -- 22:46:37.570 INFO [18561]: COREGRADE is starting... -- 22:46:37.570 INFO [18561]: Version from config: 1.0 -- 22:46:37.570 DEBUG [18561]: Connecting to database... -- 22:46:37.570 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:46:37.570 SQL [18561]: pgsql_db_connect() -- 22:46:37.576 INFO [19761]: COREGRADE is starting... -- 22:46:37.576 INFO [19761]: Version from config: 1.0 -- 22:46:37.576 DEBUG [19761]: Connecting to database... -- 22:46:37.576 DEBUG [19761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:46:37.576 SQL [19761]: pgsql_db_connect() -- 22:46:37.574 DEBUG [18561]: Database connection successful -- 22:46:37.574 INFO [18561]: _SERVER found -- 22:46:37.574 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 22:46:37.574 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 22:46:37.574 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2unnctu1hhn72akngms4o3tje43j0h6o -- 22:46:37.574 INFO [18561]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 22:46:37.574 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:46:37.586 INFO [18561]: COREGRADE is stopping... -- 22:46:37.586 DEBUG [18561]: Closing database connection -- 22:46:37.586 SQL [18561]: pgsql_close() -- 22:46:37.580 DEBUG [19761]: Database connection successful -- 22:46:37.580 INFO [19761]: _SERVER found -- 22:46:37.580 INFO [19761]: REMOTE_ADDR = 192.168.1.13 -- 22:46:37.580 INFO [19761]: SERVER_NAME = oameye.works.coregrade.com -- 22:46:37.580 INFO [19761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2unnctu1hhn72akngms4o3tje43j0h6o -- 22:46:37.580 INFO [19761]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 22:46:37.580 INFO [19761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:46:37.592 INFO [19761]: COREGRADE is stopping... -- 22:46:37.592 DEBUG [19761]: Closing database connection -- 22:46:37.592 SQL [19761]: pgsql_close() -- 22:46:42.803 INFO [20128]: COREGRADE is starting... -- 22:46:42.804 INFO [20128]: Version from config: 1.0 -- 22:46:42.804 DEBUG [20128]: Connecting to database... -- 22:46:42.804 DEBUG [20128]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:46:42.804 SQL [20128]: pgsql_db_connect() -- 22:46:42.808 DEBUG [20128]: Database connection successful -- 22:46:42.808 INFO [20128]: _SERVER found -- 22:46:42.808 INFO [20128]: REMOTE_ADDR = 192.168.1.13 -- 22:46:42.808 INFO [20128]: SERVER_NAME = oameye.works.coregrade.com -- 22:46:42.808 INFO [20128]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2unnctu1hhn72akngms4o3tje43j0h6o -- 22:46:42.808 INFO [20128]: QUERY_STRING = /member/viewCardAddAction -- 22:46:42.808 INFO [20128]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:46:42.839 INFO [20128]: COREGRADE is stopping... -- 22:46:42.839 DEBUG [20128]: Closing database connection -- 22:46:42.839 SQL [20128]: pgsql_close() -- 22:47:25.510 INFO [19781]: COREGRADE is starting... -- 22:47:25.510 INFO [19781]: Version from config: 1.0 -- 22:47:25.510 DEBUG [19781]: Connecting to database... -- 22:47:25.510 DEBUG [19781]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:25.510 SQL [19781]: pgsql_db_connect() -- 22:47:25.515 DEBUG [19781]: Database connection successful -- 22:47:25.515 INFO [19781]: _SERVER found -- 22:47:25.515 INFO [19781]: REMOTE_ADDR = 192.168.1.13 -- 22:47:25.515 INFO [19781]: SERVER_NAME = oameye.works.coregrade.com -- 22:47:25.515 INFO [19781]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2unnctu1hhn72akngms4o3tje43j0h6o -- 22:47:25.515 INFO [19781]: QUERY_STRING = /member/page -- 22:47:25.515 INFO [19781]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:47:25.558 INFO [19781]: COREGRADE is stopping... -- 22:47:25.558 DEBUG [19781]: Closing database connection -- 22:47:25.558 SQL [19781]: pgsql_close() -- 22:47:25.892 INFO [19781]: COREGRADE is starting... -- 22:47:25.893 INFO [19781]: Version from config: 1.0 -- 22:47:25.893 DEBUG [19781]: Connecting to database... -- 22:47:25.893 DEBUG [19781]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:25.893 SQL [19781]: pgsql_db_connect() -- 22:47:25.901 INFO [18563]: COREGRADE is starting... -- 22:47:25.901 INFO [18563]: Version from config: 1.0 -- 22:47:25.901 DEBUG [18563]: Connecting to database... -- 22:47:25.901 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:25.901 SQL [18563]: pgsql_db_connect() -- 22:47:25.897 DEBUG [19781]: Database connection successful -- 22:47:25.897 INFO [19781]: _SERVER found -- 22:47:25.897 INFO [19781]: REMOTE_ADDR = 192.168.1.13 -- 22:47:25.897 INFO [19781]: SERVER_NAME = oameye.works.coregrade.com -- 22:47:25.897 INFO [19781]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2unnctu1hhn72akngms4o3tje43j0h6o -- 22:47:25.897 INFO [19781]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 22:47:25.897 INFO [19781]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:47:25.908 INFO [19781]: COREGRADE is stopping... -- 22:47:25.908 DEBUG [19781]: Closing database connection -- 22:47:25.908 SQL [19781]: pgsql_close() -- 22:47:25.905 DEBUG [18563]: Database connection successful -- 22:47:25.905 INFO [18563]: _SERVER found -- 22:47:25.905 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 22:47:25.905 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 22:47:25.905 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2unnctu1hhn72akngms4o3tje43j0h6o -- 22:47:25.905 INFO [18563]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 22:47:25.905 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:47:25.917 INFO [18563]: COREGRADE is stopping... -- 22:47:25.917 DEBUG [18563]: Closing database connection -- 22:47:25.917 SQL [18563]: pgsql_close() -- 22:47:30.808 INFO [18600]: COREGRADE is starting... -- 22:47:30.809 INFO [18600]: Version from config: 1.0 -- 22:47:30.809 DEBUG [18600]: Connecting to database... -- 22:47:30.809 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:30.809 SQL [18600]: pgsql_db_connect() -- 22:47:30.813 DEBUG [18600]: Database connection successful -- 22:47:30.813 INFO [18600]: _SERVER found -- 22:47:30.813 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 22:47:30.813 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 22:47:30.813 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2unnctu1hhn72akngms4o3tje43j0h6o -- 22:47:30.813 INFO [18600]: QUERY_STRING = /member/viewCardAddAction -- 22:47:30.813 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:47:30.845 INFO [18600]: COREGRADE is stopping... -- 22:47:30.845 DEBUG [18600]: Closing database connection -- 22:47:30.845 SQL [18600]: pgsql_close() -- 22:47:31.322 INFO [18600]: COREGRADE is starting... -- 22:47:31.322 INFO [18600]: Version from config: 1.0 -- 22:47:31.322 DEBUG [18600]: Connecting to database... -- 22:47:31.322 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:31.322 SQL [18600]: pgsql_db_connect() -- 22:47:31.326 DEBUG [18600]: Database connection successful -- 22:47:31.326 INFO [18600]: _SERVER found -- 22:47:31.326 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 22:47:31.326 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 22:47:31.326 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2unnctu1hhn72akngms4o3tje43j0h6o -- 22:47:31.326 INFO [18600]: QUERY_STRING = /member/viewCardAddAction -- 22:47:31.326 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:47:31.357 INFO [18600]: COREGRADE is stopping... -- 22:47:31.357 DEBUG [18600]: Closing database connection -- 22:47:31.357 SQL [18600]: pgsql_close() -- 22:48:10.027 INFO [18604]: COREGRADE is starting... -- 22:48:10.027 INFO [18604]: Version from config: 1.0 -- 22:48:10.027 DEBUG [18604]: Connecting to database... -- 22:48:10.027 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:48:10.027 SQL [18604]: pgsql_db_connect() -- 22:48:10.031 DEBUG [18604]: Database connection successful -- 22:48:10.031 INFO [18604]: _SERVER found -- 22:48:10.031 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 22:48:10.031 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 22:48:10.031 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2unnctu1hhn72akngms4o3tje43j0h6o -- 22:48:10.031 INFO [18604]: QUERY_STRING = /member/page -- 22:48:10.031 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:48:10.075 INFO [18604]: COREGRADE is stopping... -- 22:48:10.075 DEBUG [18604]: Closing database connection -- 22:48:10.075 SQL [18604]: pgsql_close() -- 22:48:10.384 INFO [18604]: COREGRADE is starting... -- 22:48:10.384 INFO [18604]: Version from config: 1.0 -- 22:48:10.384 DEBUG [18604]: Connecting to database... -- 22:48:10.384 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:48:10.384 SQL [18604]: pgsql_db_connect() -- 22:48:10.389 DEBUG [18604]: Database connection successful -- 22:48:10.389 INFO [18604]: _SERVER found -- 22:48:10.389 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 22:48:10.389 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 22:48:10.389 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2unnctu1hhn72akngms4o3tje43j0h6o -- 22:48:10.389 INFO [18604]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 22:48:10.389 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:48:10.400 INFO [18604]: COREGRADE is stopping... -- 22:48:10.400 DEBUG [18604]: Closing database connection -- 22:48:10.400 SQL [18604]: pgsql_close() -- 22:48:10.414 INFO [18602]: COREGRADE is starting... -- 22:48:10.415 INFO [18602]: Version from config: 1.0 -- 22:48:10.415 DEBUG [18602]: Connecting to database... -- 22:48:10.415 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:48:10.415 SQL [18602]: pgsql_db_connect() -- 22:48:10.418 DEBUG [18602]: Database connection successful -- 22:48:10.418 INFO [18602]: _SERVER found -- 22:48:10.418 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 22:48:10.418 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 22:48:10.418 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2unnctu1hhn72akngms4o3tje43j0h6o -- 22:48:10.418 INFO [18602]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 22:48:10.418 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:48:10.430 INFO [18602]: COREGRADE is stopping... -- 22:48:10.430 DEBUG [18602]: Closing database connection -- 22:48:10.430 SQL [18602]: pgsql_close() -- 22:48:14.871 INFO [18562]: COREGRADE is starting... -- 22:48:14.871 INFO [18562]: Version from config: 1.0 -- 22:48:14.871 DEBUG [18562]: Connecting to database... -- 22:48:14.871 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:48:14.871 SQL [18562]: pgsql_db_connect() -- 22:48:14.875 DEBUG [18562]: Database connection successful -- 22:48:14.875 INFO [18562]: _SERVER found -- 22:48:14.875 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 22:48:14.875 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 22:48:14.875 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2unnctu1hhn72akngms4o3tje43j0h6o -- 22:48:14.875 INFO [18562]: QUERY_STRING = /member/viewCardAddAction -- 22:48:14.875 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:48:14.907 INFO [18562]: COREGRADE is stopping... -- 22:48:14.907 DEBUG [18562]: Closing database connection -- 22:48:14.907 SQL [18562]: pgsql_close() -- 22:48:50.387 INFO [19761]: COREGRADE is starting... -- 22:48:50.387 INFO [19761]: Version from config: 1.0 -- 22:48:50.387 DEBUG [19761]: Connecting to database... -- 22:48:50.387 DEBUG [19761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:48:50.387 SQL [19761]: pgsql_db_connect() -- 22:48:50.391 DEBUG [19761]: Database connection successful -- 22:48:50.391 INFO [19761]: _SERVER found -- 22:48:50.391 INFO [19761]: REMOTE_ADDR = 192.168.1.13 -- 22:48:50.391 INFO [19761]: SERVER_NAME = oameye.works.coregrade.com -- 22:48:50.391 INFO [19761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2unnctu1hhn72akngms4o3tje43j0h6o -- 22:48:50.391 INFO [19761]: QUERY_STRING = /member/page -- 22:48:50.391 INFO [19761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:48:50.434 INFO [19761]: COREGRADE is stopping... -- 22:48:50.434 DEBUG [19761]: Closing database connection -- 22:48:50.434 SQL [19761]: pgsql_close() -- 22:48:50.757 INFO [19761]: COREGRADE is starting... -- 22:48:50.757 INFO [19761]: Version from config: 1.0 -- 22:48:50.757 DEBUG [19761]: Connecting to database... -- 22:48:50.757 DEBUG [19761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:48:50.757 SQL [19761]: pgsql_db_connect() -- 22:48:50.766 INFO [18561]: COREGRADE is starting... -- 22:48:50.767 INFO [18561]: Version from config: 1.0 -- 22:48:50.767 DEBUG [18561]: Connecting to database... -- 22:48:50.767 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:48:50.767 SQL [18561]: pgsql_db_connect() -- 22:48:50.761 DEBUG [19761]: Database connection successful -- 22:48:50.761 INFO [19761]: _SERVER found -- 22:48:50.761 INFO [19761]: REMOTE_ADDR = 192.168.1.13 -- 22:48:50.761 INFO [19761]: SERVER_NAME = oameye.works.coregrade.com -- 22:48:50.761 INFO [19761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2unnctu1hhn72akngms4o3tje43j0h6o -- 22:48:50.761 INFO [19761]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 22:48:50.761 INFO [19761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:48:50.772 INFO [19761]: COREGRADE is stopping... -- 22:48:50.772 DEBUG [19761]: Closing database connection -- 22:48:50.772 SQL [19761]: pgsql_close() -- 22:48:50.770 DEBUG [18561]: Database connection successful -- 22:48:50.770 INFO [18561]: _SERVER found -- 22:48:50.770 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 22:48:50.770 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 22:48:50.770 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2unnctu1hhn72akngms4o3tje43j0h6o -- 22:48:50.771 INFO [18561]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 22:48:50.771 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:48:50.782 INFO [18561]: COREGRADE is stopping... -- 22:48:50.782 DEBUG [18561]: Closing database connection -- 22:48:50.782 SQL [18561]: pgsql_close() -- 22:49:01.644 INFO [20128]: COREGRADE is starting... -- 22:49:01.645 INFO [20128]: Version from config: 1.0 -- 22:49:01.645 DEBUG [20128]: Connecting to database... -- 22:49:01.645 DEBUG [20128]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:49:01.645 SQL [20128]: pgsql_db_connect() -- 22:49:01.649 DEBUG [20128]: Database connection successful -- 22:49:01.649 INFO [20128]: _SERVER found -- 22:49:01.649 INFO [20128]: REMOTE_ADDR = 192.168.1.13 -- 22:49:01.649 INFO [20128]: SERVER_NAME = oameye.works.coregrade.com -- 22:49:01.649 INFO [20128]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2unnctu1hhn72akngms4o3tje43j0h6o -- 22:49:01.649 INFO [20128]: QUERY_STRING = /member/viewCardAddAction -- 22:49:01.649 INFO [20128]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:49:01.681 INFO [20128]: COREGRADE is stopping... -- 22:49:01.681 DEBUG [20128]: Closing database connection -- 22:49:01.681 SQL [20128]: pgsql_close() -- 22:49:02.420 INFO [20128]: COREGRADE is starting... -- 22:49:02.421 INFO [20128]: Version from config: 1.0 -- 22:49:02.421 DEBUG [20128]: Connecting to database... -- 22:49:02.421 DEBUG [20128]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:49:02.421 SQL [20128]: pgsql_db_connect() -- 22:49:02.425 DEBUG [20128]: Database connection successful -- 22:49:02.425 INFO [20128]: _SERVER found -- 22:49:02.425 INFO [20128]: REMOTE_ADDR = 192.168.1.13 -- 22:49:02.425 INFO [20128]: SERVER_NAME = oameye.works.coregrade.com -- 22:49:02.425 INFO [20128]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2unnctu1hhn72akngms4o3tje43j0h6o -- 22:49:02.425 INFO [20128]: QUERY_STRING = /member/viewCardAddAction -- 22:49:02.425 INFO [20128]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:49:02.456 INFO [20128]: COREGRADE is stopping... -- 22:49:02.456 DEBUG [20128]: Closing database connection -- 22:49:02.456 SQL [20128]: pgsql_close() -- 22:51:10.411 INFO [19781]: COREGRADE is starting... -- 22:51:10.411 INFO [19781]: Version from config: 1.0 -- 22:51:10.411 DEBUG [19781]: Connecting to database... -- 22:51:10.411 DEBUG [19781]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:51:10.411 SQL [19781]: pgsql_db_connect() -- 22:51:10.416 DEBUG [19781]: Database connection successful -- 22:51:10.416 INFO [19781]: _SERVER found -- 22:51:10.416 INFO [19781]: REMOTE_ADDR = 192.168.1.13 -- 22:51:10.416 INFO [19781]: SERVER_NAME = oameye.works.coregrade.com -- 22:51:10.416 INFO [19781]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2unnctu1hhn72akngms4o3tje43j0h6o -- 22:51:10.416 INFO [19781]: QUERY_STRING = /member/page -- 22:51:10.416 INFO [19781]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:51:10.460 INFO [19781]: COREGRADE is stopping... -- 22:51:10.460 DEBUG [19781]: Closing database connection -- 22:51:10.460 SQL [19781]: pgsql_close() -- 22:51:10.786 INFO [19781]: COREGRADE is starting... -- 22:51:10.787 INFO [19781]: Version from config: 1.0 -- 22:51:10.787 DEBUG [19781]: Connecting to database... -- 22:51:10.787 DEBUG [19781]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:51:10.787 SQL [19781]: pgsql_db_connect() -- 22:51:10.797 INFO [18563]: COREGRADE is starting... -- 22:51:10.797 INFO [18563]: Version from config: 1.0 -- 22:51:10.797 DEBUG [18563]: Connecting to database... -- 22:51:10.797 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:51:10.797 SQL [18563]: pgsql_db_connect() -- 22:51:10.791 DEBUG [19781]: Database connection successful -- 22:51:10.791 INFO [19781]: _SERVER found -- 22:51:10.791 INFO [19781]: REMOTE_ADDR = 192.168.1.13 -- 22:51:10.791 INFO [19781]: SERVER_NAME = oameye.works.coregrade.com -- 22:51:10.791 INFO [19781]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2unnctu1hhn72akngms4o3tje43j0h6o -- 22:51:10.791 INFO [19781]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 22:51:10.791 INFO [19781]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:51:10.802 INFO [19781]: COREGRADE is stopping... -- 22:51:10.802 DEBUG [19781]: Closing database connection -- 22:51:10.802 SQL [19781]: pgsql_close() -- 22:51:10.801 DEBUG [18563]: Database connection successful -- 22:51:10.801 INFO [18563]: _SERVER found -- 22:51:10.801 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 22:51:10.801 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 22:51:10.801 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2unnctu1hhn72akngms4o3tje43j0h6o -- 22:51:10.801 INFO [18563]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 22:51:10.801 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:51:10.813 INFO [18563]: COREGRADE is stopping... -- 22:51:10.813 DEBUG [18563]: Closing database connection -- 22:51:10.813 SQL [18563]: pgsql_close() -- 22:51:18.031 INFO [18600]: COREGRADE is starting... -- 22:51:18.031 INFO [18600]: Version from config: 1.0 -- 22:51:18.031 DEBUG [18600]: Connecting to database... -- 22:51:18.031 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:51:18.031 SQL [18600]: pgsql_db_connect() -- 22:51:18.035 DEBUG [18600]: Database connection successful -- 22:51:18.035 INFO [18600]: _SERVER found -- 22:51:18.035 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 22:51:18.035 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 22:51:18.035 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2unnctu1hhn72akngms4o3tje43j0h6o -- 22:51:18.035 INFO [18600]: QUERY_STRING = /member/viewCardAddAction -- 22:51:18.035 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:51:18.067 INFO [18600]: COREGRADE is stopping... -- 22:51:18.067 DEBUG [18600]: Closing database connection -- 22:51:18.067 SQL [18600]: pgsql_close() -- 22:53:27.533 INFO [18602]: COREGRADE is starting... -- 22:53:27.533 INFO [18602]: Version from config: 1.0 -- 22:53:27.533 DEBUG [18602]: Connecting to database... -- 22:53:27.533 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:53:27.533 SQL [18602]: pgsql_db_connect() -- 22:53:27.537 DEBUG [18602]: Database connection successful -- 22:53:27.537 INFO [18602]: _SERVER found -- 22:53:27.537 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 22:53:27.537 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 22:53:27.537 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=2unnctu1hhn72akngms4o3tje43j0h6o -- 22:53:27.537 INFO [18602]: QUERY_STRING = /member/page -- 22:53:27.537 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:53:27.582 INFO [18602]: COREGRADE is stopping... -- 22:53:27.582 DEBUG [18602]: Closing database connection -- 22:53:27.582 SQL [18602]: pgsql_close() -- 22:53:28.471 INFO [18561]: COREGRADE is starting... -- 22:53:28.471 INFO [18561]: Version from config: 1.0 -- 22:53:28.471 DEBUG [18561]: Connecting to database... -- 22:53:28.471 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:53:28.471 SQL [18561]: pgsql_db_connect() -- 22:53:28.476 DEBUG [18561]: Database connection successful -- 22:53:28.476 INFO [18561]: _SERVER found -- 22:53:28.476 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 22:53:28.476 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 22:53:28.476 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=7o09mvu0f976fofftd1qbp2bfmaqb2n6 -- 22:53:28.476 INFO [18561]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 22:53:28.476 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:53:28.488 INFO [18561]: COREGRADE is stopping... -- 22:53:28.488 DEBUG [18561]: Closing database connection -- 22:53:28.488 SQL [18561]: pgsql_close() -- 22:53:28.001 INFO [20641]: COREGRADE is starting... -- 22:53:29.001 INFO [20641]: Version from config: 1.0 -- 22:53:29.001 DEBUG [20641]: Connecting to database... -- 22:53:29.001 DEBUG [20641]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:53:29.001 SQL [20641]: pgsql_db_connect() -- 22:53:29.005 DEBUG [20641]: Database connection successful -- 22:53:29.005 INFO [20641]: _SERVER found -- 22:53:29.005 INFO [20641]: REMOTE_ADDR = 192.168.1.13 -- 22:53:29.005 INFO [20641]: SERVER_NAME = oameye.works.coregrade.com -- 22:53:29.005 INFO [20641]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=7o09mvu0f976fofftd1qbp2bfmaqb2n6 -- 22:53:29.005 INFO [20641]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 22:53:29.005 INFO [20641]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:53:29.017 INFO [20641]: COREGRADE is stopping... -- 22:53:29.017 DEBUG [20641]: Closing database connection -- 22:53:29.017 SQL [20641]: pgsql_close() -- 22:53:37.719 INFO [19761]: COREGRADE is starting... -- 22:53:37.720 INFO [19761]: Version from config: 1.0 -- 22:53:37.720 DEBUG [19761]: Connecting to database... -- 22:53:37.720 DEBUG [19761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:53:37.720 SQL [19761]: pgsql_db_connect() -- 22:53:37.724 DEBUG [19761]: Database connection successful -- 22:53:37.724 INFO [19761]: _SERVER found -- 22:53:37.724 INFO [19761]: REMOTE_ADDR = 192.168.1.13 -- 22:53:37.724 INFO [19761]: SERVER_NAME = oameye.works.coregrade.com -- 22:53:37.724 INFO [19761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=7o09mvu0f976fofftd1qbp2bfmaqb2n6 -- 22:53:37.724 INFO [19761]: QUERY_STRING = /member/viewCardAddAction -- 22:53:37.724 INFO [19761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:53:37.756 INFO [19761]: COREGRADE is stopping... -- 22:53:37.756 DEBUG [19761]: Closing database connection -- 22:53:37.756 SQL [19761]: pgsql_close() -- 22:54:32.247 INFO [20128]: COREGRADE is starting... -- 22:54:32.248 INFO [20128]: Version from config: 1.0 -- 22:54:32.248 DEBUG [20128]: Connecting to database... -- 22:54:32.248 DEBUG [20128]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:54:32.248 SQL [20128]: pgsql_db_connect() -- 22:54:32.252 DEBUG [20128]: Database connection successful -- 22:54:32.252 INFO [20128]: _SERVER found -- 22:54:32.252 INFO [20128]: REMOTE_ADDR = 192.168.1.13 -- 22:54:32.252 INFO [20128]: SERVER_NAME = oameye.works.coregrade.com -- 22:54:32.252 INFO [20128]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=7o09mvu0f976fofftd1qbp2bfmaqb2n6 -- 22:54:32.252 INFO [20128]: QUERY_STRING = /member -- 22:54:32.252 INFO [20128]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:54:32.294 INFO [20128]: COREGRADE is stopping... -- 22:54:32.294 DEBUG [20128]: Closing database connection -- 22:54:32.294 SQL [20128]: pgsql_close() -- 22:54:32.549 INFO [20128]: COREGRADE is starting... -- 22:54:32.549 INFO [20128]: Version from config: 1.0 -- 22:54:32.549 DEBUG [20128]: Connecting to database... -- 22:54:32.549 DEBUG [20128]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:54:32.549 SQL [20128]: pgsql_db_connect() -- 22:54:32.556 INFO [19781]: COREGRADE is starting... -- 22:54:32.556 INFO [19781]: Version from config: 1.0 -- 22:54:32.556 DEBUG [19781]: Connecting to database... -- 22:54:32.556 DEBUG [19781]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:54:32.556 SQL [19781]: pgsql_db_connect() -- 22:54:32.553 DEBUG [20128]: Database connection successful -- 22:54:32.553 INFO [20128]: _SERVER found -- 22:54:32.553 INFO [20128]: REMOTE_ADDR = 192.168.1.13 -- 22:54:32.553 INFO [20128]: SERVER_NAME = oameye.works.coregrade.com -- 22:54:32.553 INFO [20128]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=7o09mvu0f976fofftd1qbp2bfmaqb2n6 -- 22:54:32.553 INFO [20128]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 22:54:32.553 INFO [20128]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:54:32.565 INFO [20128]: COREGRADE is stopping... -- 22:54:32.565 DEBUG [20128]: Closing database connection -- 22:54:32.565 SQL [20128]: pgsql_close() -- 22:54:32.560 DEBUG [19781]: Database connection successful -- 22:54:32.560 INFO [19781]: _SERVER found -- 22:54:32.560 INFO [19781]: REMOTE_ADDR = 192.168.1.13 -- 22:54:32.560 INFO [19781]: SERVER_NAME = oameye.works.coregrade.com -- 22:54:32.560 INFO [19781]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=7o09mvu0f976fofftd1qbp2bfmaqb2n6 -- 22:54:32.560 INFO [19781]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 22:54:32.560 INFO [19781]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:54:32.571 INFO [19781]: COREGRADE is stopping... -- 22:54:32.571 DEBUG [19781]: Closing database connection -- 22:54:32.571 SQL [19781]: pgsql_close() -- 22:54:39.279 INFO [18563]: COREGRADE is starting... -- 22:54:39.279 INFO [18563]: Version from config: 1.0 -- 22:54:39.279 DEBUG [18563]: Connecting to database... -- 22:54:39.279 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:54:39.279 SQL [18563]: pgsql_db_connect() -- 22:54:39.284 DEBUG [18563]: Database connection successful -- 22:54:39.284 INFO [18563]: _SERVER found -- 22:54:39.284 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 22:54:39.284 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 22:54:39.284 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=7o09mvu0f976fofftd1qbp2bfmaqb2n6 -- 22:54:39.284 INFO [18563]: QUERY_STRING = /member -- 22:54:39.284 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:54:39.325 INFO [18563]: COREGRADE is stopping... -- 22:54:39.325 DEBUG [18563]: Closing database connection -- 22:54:39.325 SQL [18563]: pgsql_close() -- 22:54:40.619 INFO [18562]: COREGRADE is starting... -- 22:54:40.619 INFO [18562]: Version from config: 1.0 -- 22:54:40.619 DEBUG [18562]: Connecting to database... -- 22:54:40.620 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:54:40.620 SQL [18562]: pgsql_db_connect() -- 22:54:40.624 DEBUG [18562]: Database connection successful -- 22:54:40.624 INFO [18562]: _SERVER found -- 22:54:40.624 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 22:54:40.624 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 22:54:40.624 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=7o09mvu0f976fofftd1qbp2bfmaqb2n6 -- 22:54:40.624 INFO [18562]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 22:54:40.624 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:54:40.635 INFO [18562]: COREGRADE is stopping... -- 22:54:40.635 DEBUG [18562]: Closing database connection -- 22:54:40.635 SQL [18562]: pgsql_close() -- 22:54:40.950 INFO [18563]: COREGRADE is starting... -- 22:54:40.950 INFO [18563]: Version from config: 1.0 -- 22:54:40.950 DEBUG [18563]: Connecting to database... -- 22:54:40.950 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:54:40.950 SQL [18563]: pgsql_db_connect() -- 22:54:40.954 DEBUG [18563]: Database connection successful -- 22:54:40.954 INFO [18563]: _SERVER found -- 22:54:40.954 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 22:54:40.954 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 22:54:40.954 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=7o09mvu0f976fofftd1qbp2bfmaqb2n6 -- 22:54:40.954 INFO [18563]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 22:54:40.954 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:54:40.966 INFO [18563]: COREGRADE is stopping... -- 22:54:40.966 DEBUG [18563]: Closing database connection -- 22:54:40.966 SQL [18563]: pgsql_close() -- 22:57:41.309 INFO [18604]: COREGRADE is starting... -- 22:57:41.309 INFO [18604]: Version from config: 1.0 -- 22:57:41.309 DEBUG [18604]: Connecting to database... -- 22:57:41.309 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:57:41.309 SQL [18604]: pgsql_db_connect() -- 22:57:41.313 DEBUG [18604]: Database connection successful -- 22:57:41.313 INFO [18604]: _SERVER found -- 22:57:41.313 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 22:57:41.313 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 22:57:41.313 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=7o09mvu0f976fofftd1qbp2bfmaqb2n6 -- 22:57:41.313 INFO [18604]: QUERY_STRING = /member -- 22:57:41.313 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:57:41.356 INFO [18604]: COREGRADE is stopping... -- 22:57:41.356 DEBUG [18604]: Closing database connection -- 22:57:41.356 SQL [18604]: pgsql_close() -- 22:57:41.687 INFO [18604]: COREGRADE is starting... -- 22:57:41.687 INFO [18604]: Version from config: 1.0 -- 22:57:41.687 DEBUG [18604]: Connecting to database... -- 22:57:41.687 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:57:41.688 SQL [18604]: pgsql_db_connect() -- 22:57:41.703 INFO [20641]: COREGRADE is starting... -- 22:57:41.691 DEBUG [18604]: Database connection successful -- 22:57:41.691 INFO [18604]: _SERVER found -- 22:57:41.691 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 22:57:41.691 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 22:57:41.691 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=7o09mvu0f976fofftd1qbp2bfmaqb2n6 -- 22:57:41.691 INFO [18604]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 22:57:41.691 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:57:41.703 INFO [18604]: COREGRADE is stopping... -- 22:57:41.703 DEBUG [18604]: Closing database connection -- 22:57:41.703 SQL [18604]: pgsql_close() -- 22:57:41.703 INFO [20641]: Version from config: 1.0 -- 22:57:41.703 DEBUG [20641]: Connecting to database... -- 22:57:41.703 DEBUG [20641]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:57:41.703 SQL [20641]: pgsql_db_connect() -- 22:57:41.707 DEBUG [20641]: Database connection successful -- 22:57:41.707 INFO [20641]: _SERVER found -- 22:57:41.707 INFO [20641]: REMOTE_ADDR = 192.168.1.13 -- 22:57:41.707 INFO [20641]: SERVER_NAME = oameye.works.coregrade.com -- 22:57:41.707 INFO [20641]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=7o09mvu0f976fofftd1qbp2bfmaqb2n6 -- 22:57:41.707 INFO [20641]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 22:57:41.707 INFO [20641]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:57:41.719 INFO [20641]: COREGRADE is stopping... -- 22:57:41.719 DEBUG [20641]: Closing database connection -- 22:57:41.719 SQL [20641]: pgsql_close() -- 22:57:44.298 INFO [20641]: COREGRADE is starting... -- 22:57:44.298 INFO [20641]: Version from config: 1.0 -- 22:57:44.298 DEBUG [20641]: Connecting to database... -- 22:57:44.299 DEBUG [20641]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:57:44.299 SQL [20641]: pgsql_db_connect() -- 22:57:44.303 DEBUG [20641]: Database connection successful -- 22:57:44.303 INFO [20641]: _SERVER found -- 22:57:44.303 INFO [20641]: REMOTE_ADDR = 192.168.1.13 -- 22:57:44.303 INFO [20641]: SERVER_NAME = oameye.works.coregrade.com -- 22:57:44.303 INFO [20641]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=7o09mvu0f976fofftd1qbp2bfmaqb2n6 -- 22:57:44.303 INFO [20641]: QUERY_STRING = /member/page -- 22:57:44.303 INFO [20641]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:57:44.345 INFO [20641]: COREGRADE is stopping... -- 22:57:44.345 DEBUG [20641]: Closing database connection -- 22:57:44.345 SQL [20641]: pgsql_close() -- 22:57:44.649 INFO [20641]: COREGRADE is starting... -- 22:57:44.649 INFO [20641]: Version from config: 1.0 -- 22:57:44.649 DEBUG [20641]: Connecting to database... -- 22:57:44.649 DEBUG [20641]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:57:44.649 SQL [20641]: pgsql_db_connect() -- 22:57:44.650 INFO [18604]: COREGRADE is starting... -- 22:57:44.651 INFO [18604]: Version from config: 1.0 -- 22:57:44.651 DEBUG [18604]: Connecting to database... -- 22:57:44.651 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:57:44.651 SQL [18604]: pgsql_db_connect() -- 22:57:44.653 DEBUG [20641]: Database connection successful -- 22:57:44.653 INFO [20641]: _SERVER found -- 22:57:44.653 INFO [20641]: REMOTE_ADDR = 192.168.1.13 -- 22:57:44.653 INFO [20641]: SERVER_NAME = oameye.works.coregrade.com -- 22:57:44.653 INFO [20641]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=7o09mvu0f976fofftd1qbp2bfmaqb2n6 -- 22:57:44.653 INFO [20641]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 22:57:44.653 INFO [20641]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:57:44.665 INFO [20641]: COREGRADE is stopping... -- 22:57:44.665 DEBUG [20641]: Closing database connection -- 22:57:44.665 SQL [20641]: pgsql_close() -- 22:57:44.655 DEBUG [18604]: Database connection successful -- 22:57:44.655 INFO [18604]: _SERVER found -- 22:57:44.655 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 22:57:44.655 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 22:57:44.655 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=7o09mvu0f976fofftd1qbp2bfmaqb2n6 -- 22:57:44.655 INFO [18604]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 22:57:44.655 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:57:44.667 INFO [18604]: COREGRADE is stopping... -- 22:57:44.667 DEBUG [18604]: Closing database connection -- 22:57:44.667 SQL [18604]: pgsql_close() -- 22:57:47.423 INFO [19761]: COREGRADE is starting... -- 22:57:47.423 INFO [19761]: Version from config: 1.0 -- 22:57:47.423 DEBUG [19761]: Connecting to database... -- 22:57:47.423 DEBUG [19761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:57:47.423 SQL [19761]: pgsql_db_connect() -- 22:57:47.427 DEBUG [19761]: Database connection successful -- 22:57:47.427 INFO [19761]: _SERVER found -- 22:57:47.427 INFO [19761]: REMOTE_ADDR = 192.168.1.13 -- 22:57:47.427 INFO [19761]: SERVER_NAME = oameye.works.coregrade.com -- 22:57:47.427 INFO [19761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=7o09mvu0f976fofftd1qbp2bfmaqb2n6 -- 22:57:47.427 INFO [19761]: QUERY_STRING = /member/viewCardAddAction -- 22:57:47.427 INFO [19761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:57:47.459 INFO [19761]: COREGRADE is stopping... -- 22:57:47.459 DEBUG [19761]: Closing database connection -- 22:57:47.459 SQL [19761]: pgsql_close() -- 22:58:51.758 INFO [19781]: COREGRADE is starting... -- 22:58:51.758 INFO [19781]: Version from config: 1.0 -- 22:58:51.759 DEBUG [19781]: Connecting to database... -- 22:58:51.759 DEBUG [19781]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:58:51.759 SQL [19781]: pgsql_db_connect() -- 22:58:51.762 DEBUG [19781]: Database connection successful -- 22:58:51.762 INFO [19781]: _SERVER found -- 22:58:51.762 INFO [19781]: REMOTE_ADDR = 192.168.1.13 -- 22:58:51.762 INFO [19781]: SERVER_NAME = oameye.works.coregrade.com -- 22:58:51.762 INFO [19781]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=7o09mvu0f976fofftd1qbp2bfmaqb2n6 -- 22:58:51.762 INFO [19781]: QUERY_STRING = /member/page -- 22:58:51.762 INFO [19781]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:58:51.806 INFO [19781]: COREGRADE is stopping... -- 22:58:51.807 DEBUG [19781]: Closing database connection -- 22:58:51.807 SQL [19781]: pgsql_close() -- 22:58:52.119 INFO [19781]: COREGRADE is starting... -- 22:58:52.119 INFO [19781]: Version from config: 1.0 -- 22:58:52.119 DEBUG [19781]: Connecting to database... -- 22:58:52.119 DEBUG [19781]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:58:52.119 SQL [19781]: pgsql_db_connect() -- 22:58:52.123 DEBUG [19781]: Database connection successful -- 22:58:52.123 INFO [19781]: _SERVER found -- 22:58:52.123 INFO [19781]: REMOTE_ADDR = 192.168.1.13 -- 22:58:52.123 INFO [19781]: SERVER_NAME = oameye.works.coregrade.com -- 22:58:52.123 INFO [19781]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 22:58:52.123 INFO [19781]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 22:58:52.123 INFO [19781]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:58:52.135 INFO [19781]: COREGRADE is stopping... -- 22:58:52.135 DEBUG [19781]: Closing database connection -- 22:58:52.135 SQL [19781]: pgsql_close() -- 22:58:52.138 INFO [20128]: COREGRADE is starting... -- 22:58:52.138 INFO [20128]: Version from config: 1.0 -- 22:58:52.138 DEBUG [20128]: Connecting to database... -- 22:58:52.138 DEBUG [20128]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:58:52.138 SQL [20128]: pgsql_db_connect() -- 22:58:52.142 DEBUG [20128]: Database connection successful -- 22:58:52.142 INFO [20128]: _SERVER found -- 22:58:52.142 INFO [20128]: REMOTE_ADDR = 192.168.1.13 -- 22:58:52.142 INFO [20128]: SERVER_NAME = oameye.works.coregrade.com -- 22:58:52.142 INFO [20128]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 22:58:52.142 INFO [20128]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 22:58:52.142 INFO [20128]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:58:52.153 INFO [20128]: COREGRADE is stopping... -- 22:58:52.153 DEBUG [20128]: Closing database connection -- 22:58:52.153 SQL [20128]: pgsql_close() -- 22:58:59.188 INFO [18602]: COREGRADE is starting... -- 22:58:59.188 INFO [18602]: Version from config: 1.0 -- 22:58:59.188 DEBUG [18602]: Connecting to database... -- 22:58:59.188 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:58:59.188 SQL [18602]: pgsql_db_connect() -- 22:58:59.192 DEBUG [18602]: Database connection successful -- 22:58:59.192 INFO [18602]: _SERVER found -- 22:58:59.192 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 22:58:59.192 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 22:58:59.192 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 22:58:59.192 INFO [18602]: QUERY_STRING = /member/viewCardAddAction -- 22:58:59.192 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:58:59.224 INFO [18602]: COREGRADE is stopping... -- 22:58:59.224 DEBUG [18602]: Closing database connection -- 22:58:59.224 SQL [18602]: pgsql_close() -- 23:00:56.254 INFO [18562]: COREGRADE is starting... -- 23:00:56.254 INFO [18562]: Version from config: 1.0 -- 23:00:56.254 DEBUG [18562]: Connecting to database... -- 23:00:56.254 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:00:56.254 SQL [18562]: pgsql_db_connect() -- 23:00:56.258 DEBUG [18562]: Database connection successful -- 23:00:56.258 INFO [18562]: _SERVER found -- 23:00:56.258 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 23:00:56.258 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 23:00:56.258 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:00:56.258 INFO [18562]: QUERY_STRING = /member/page -- 23:00:56.258 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:00:56.302 INFO [18562]: COREGRADE is stopping... -- 23:00:56.302 DEBUG [18562]: Closing database connection -- 23:00:56.302 SQL [18562]: pgsql_close() -- 23:00:56.620 INFO [18562]: COREGRADE is starting... -- 23:00:56.620 INFO [18562]: Version from config: 1.0 -- 23:00:56.620 DEBUG [18562]: Connecting to database... -- 23:00:56.620 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:00:56.620 SQL [18562]: pgsql_db_connect() -- 23:00:56.632 INFO [18563]: COREGRADE is starting... -- 23:00:56.632 INFO [18563]: Version from config: 1.0 -- 23:00:56.632 DEBUG [18563]: Connecting to database... -- 23:00:56.632 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:00:56.632 SQL [18563]: pgsql_db_connect() -- 23:00:56.624 DEBUG [18562]: Database connection successful -- 23:00:56.624 INFO [18562]: _SERVER found -- 23:00:56.624 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 23:00:56.624 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 23:00:56.624 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:00:56.624 INFO [18562]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 23:00:56.624 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:00:56.636 INFO [18562]: COREGRADE is stopping... -- 23:00:56.636 DEBUG [18562]: Closing database connection -- 23:00:56.636 SQL [18562]: pgsql_close() -- 23:00:56.636 DEBUG [18563]: Database connection successful -- 23:00:56.636 INFO [18563]: _SERVER found -- 23:00:56.636 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 23:00:56.636 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 23:00:56.636 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:00:56.636 INFO [18563]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 23:00:56.636 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:00:56.648 INFO [18563]: COREGRADE is stopping... -- 23:00:56.648 DEBUG [18563]: Closing database connection -- 23:00:56.648 SQL [18563]: pgsql_close() -- 23:01:01.770 INFO [18604]: COREGRADE is starting... -- 23:01:01.771 INFO [18604]: Version from config: 1.0 -- 23:01:01.771 DEBUG [18604]: Connecting to database... -- 23:01:01.771 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:01:01.771 SQL [18604]: pgsql_db_connect() -- 23:01:01.775 DEBUG [18604]: Database connection successful -- 23:01:01.775 INFO [18604]: _SERVER found -- 23:01:01.775 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 23:01:01.775 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 23:01:01.775 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:01:01.775 INFO [18604]: QUERY_STRING = /member/viewCardAddAction -- 23:01:01.775 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:01:01.820 INFO [18604]: COREGRADE is stopping... -- 23:01:01.820 DEBUG [18604]: Closing database connection -- 23:01:01.820 SQL [18604]: pgsql_close() -- 23:02:43.944 INFO [18561]: COREGRADE is starting... -- 23:02:43.945 INFO [18561]: Version from config: 1.0 -- 23:02:43.945 DEBUG [18561]: Connecting to database... -- 23:02:43.945 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:43.945 SQL [18561]: pgsql_db_connect() -- 23:02:43.949 DEBUG [18561]: Database connection successful -- 23:02:43.949 INFO [18561]: _SERVER found -- 23:02:43.949 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 23:02:43.949 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:43.949 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:02:43.949 INFO [18561]: QUERY_STRING = /member/page -- 23:02:43.949 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:43.993 INFO [18561]: COREGRADE is stopping... -- 23:02:43.993 DEBUG [18561]: Closing database connection -- 23:02:43.993 SQL [18561]: pgsql_close() -- 23:02:45.091 INFO [19781]: COREGRADE is starting... -- 23:02:45.091 INFO [19781]: Version from config: 1.0 -- 23:02:45.091 DEBUG [19781]: Connecting to database... -- 23:02:45.092 DEBUG [19781]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:45.092 SQL [19781]: pgsql_db_connect() -- 23:02:45.096 DEBUG [19781]: Database connection successful -- 23:02:45.096 INFO [19781]: _SERVER found -- 23:02:45.096 INFO [19781]: REMOTE_ADDR = 192.168.1.13 -- 23:02:45.096 INFO [19781]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:45.096 INFO [19781]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:02:45.096 INFO [19781]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 23:02:45.096 INFO [19781]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:45.109 INFO [19781]: COREGRADE is stopping... -- 23:02:45.109 DEBUG [19781]: Closing database connection -- 23:02:45.109 SQL [19781]: pgsql_close() -- 23:02:45.635 INFO [19781]: COREGRADE is starting... -- 23:02:45.635 INFO [19781]: Version from config: 1.0 -- 23:02:45.635 DEBUG [19781]: Connecting to database... -- 23:02:45.635 DEBUG [19781]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:45.635 SQL [19781]: pgsql_db_connect() -- 23:02:45.639 DEBUG [19781]: Database connection successful -- 23:02:45.639 INFO [19781]: _SERVER found -- 23:02:45.639 INFO [19781]: REMOTE_ADDR = 192.168.1.13 -- 23:02:45.639 INFO [19781]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:45.639 INFO [19781]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:02:45.639 INFO [19781]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 23:02:45.639 INFO [19781]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:45.650 INFO [19781]: COREGRADE is stopping... -- 23:02:45.650 DEBUG [19781]: Closing database connection -- 23:02:45.650 SQL [19781]: pgsql_close() -- 23:02:51.449 INFO [18602]: COREGRADE is starting... -- 23:02:51.449 INFO [18602]: Version from config: 1.0 -- 23:02:51.449 DEBUG [18602]: Connecting to database... -- 23:02:51.449 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:51.450 SQL [18602]: pgsql_db_connect() -- 23:02:51.454 DEBUG [18602]: Database connection successful -- 23:02:51.454 INFO [18602]: _SERVER found -- 23:02:51.454 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 23:02:51.454 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:51.454 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:02:51.454 INFO [18602]: QUERY_STRING = /member/viewCardAddAction -- 23:02:51.454 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:51.485 INFO [18602]: COREGRADE is stopping... -- 23:02:51.485 DEBUG [18602]: Closing database connection -- 23:02:51.485 SQL [18602]: pgsql_close() -- 23:02:57.675 INFO [18563]: COREGRADE is starting... -- 23:02:57.675 INFO [18563]: Version from config: 1.0 -- 23:02:57.675 DEBUG [18563]: Connecting to database... -- 23:02:57.675 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:57.675 SQL [18563]: pgsql_db_connect() -- 23:02:57.679 DEBUG [18563]: Database connection successful -- 23:02:57.679 INFO [18563]: _SERVER found -- 23:02:57.679 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 23:02:57.679 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:57.679 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:02:57.679 INFO [18563]: QUERY_STRING = /member/page -- 23:02:57.679 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:57.720 INFO [18563]: COREGRADE is stopping... -- 23:02:57.720 DEBUG [18563]: Closing database connection -- 23:02:57.720 SQL [18563]: pgsql_close() -- 23:02:57.934 INFO [18604]: COREGRADE is starting... -- 23:02:57.935 INFO [18604]: Version from config: 1.0 -- 23:02:57.935 DEBUG [18604]: Connecting to database... -- 23:02:57.935 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:57.935 SQL [18604]: pgsql_db_connect() -- 23:02:57.939 DEBUG [18604]: Database connection successful -- 23:02:57.939 INFO [18604]: _SERVER found -- 23:02:57.939 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 23:02:57.939 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:57.939 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:02:57.939 INFO [18604]: QUERY_STRING = /member/page -- 23:02:57.939 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:57.978 INFO [18604]: COREGRADE is stopping... -- 23:02:57.978 DEBUG [18604]: Closing database connection -- 23:02:57.978 SQL [18604]: pgsql_close() -- 23:02:58.064 INFO [18563]: COREGRADE is starting... -- 23:02:58.064 INFO [18563]: Version from config: 1.0 -- 23:02:58.064 DEBUG [18563]: Connecting to database... -- 23:02:58.065 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:58.065 SQL [18563]: pgsql_db_connect() -- 23:02:58.068 DEBUG [18563]: Database connection successful -- 23:02:58.068 INFO [18563]: _SERVER found -- 23:02:58.068 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 23:02:58.068 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:58.068 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:02:58.068 INFO [18563]: QUERY_STRING = /member/page -- 23:02:58.069 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:58.108 INFO [18563]: COREGRADE is stopping... -- 23:02:58.108 DEBUG [18563]: Closing database connection -- 23:02:58.108 SQL [18563]: pgsql_close() -- 23:02:58.863 INFO [18604]: COREGRADE is starting... -- 23:02:58.863 INFO [18604]: Version from config: 1.0 -- 23:02:58.863 DEBUG [18604]: Connecting to database... -- 23:02:58.863 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:58.863 SQL [18604]: pgsql_db_connect() -- 23:02:58.867 DEBUG [18604]: Database connection successful -- 23:02:58.867 INFO [18604]: _SERVER found -- 23:02:58.867 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 23:02:58.867 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:58.867 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:02:58.867 INFO [18604]: QUERY_STRING = /member/page -- 23:02:58.867 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:58.906 INFO [18604]: COREGRADE is stopping... -- 23:02:58.906 DEBUG [18604]: Closing database connection -- 23:02:58.906 SQL [18604]: pgsql_close() -- 23:02:59.651 INFO [18604]: COREGRADE is starting... -- 23:02:59.651 INFO [18604]: Version from config: 1.0 -- 23:02:59.651 DEBUG [18604]: Connecting to database... -- 23:02:59.651 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:02:59.651 SQL [18604]: pgsql_db_connect() -- 23:02:59.655 DEBUG [18604]: Database connection successful -- 23:02:59.655 INFO [18604]: _SERVER found -- 23:02:59.655 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 23:02:59.655 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 23:02:59.655 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:02:59.655 INFO [18604]: QUERY_STRING = /member/page -- 23:02:59.655 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:02:59.695 INFO [18604]: COREGRADE is stopping... -- 23:02:59.695 DEBUG [18604]: Closing database connection -- 23:02:59.695 SQL [18604]: pgsql_close() -- 23:03:00.545 INFO [18563]: COREGRADE is starting... -- 23:03:00.546 INFO [18563]: Version from config: 1.0 -- 23:03:00.546 DEBUG [18563]: Connecting to database... -- 23:03:00.546 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:03:00.546 SQL [18563]: pgsql_db_connect() -- 23:03:00.550 DEBUG [18563]: Database connection successful -- 23:03:00.550 INFO [18563]: _SERVER found -- 23:03:00.550 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 23:03:00.550 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 23:03:00.550 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:03:00.550 INFO [18563]: QUERY_STRING = /member/page -- 23:03:00.550 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:03:00.589 INFO [18563]: COREGRADE is stopping... -- 23:03:00.589 DEBUG [18563]: Closing database connection -- 23:03:00.589 SQL [18563]: pgsql_close() -- 23:03:36.232 INFO [18561]: COREGRADE is starting... -- 23:03:36.232 INFO [18561]: Version from config: 1.0 -- 23:03:36.232 DEBUG [18561]: Connecting to database... -- 23:03:36.232 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:03:36.232 SQL [18561]: pgsql_db_connect() -- 23:03:36.243 INFO [18600]: COREGRADE is starting... -- 23:03:36.243 INFO [18600]: Version from config: 1.0 -- 23:03:36.243 DEBUG [18600]: Connecting to database... -- 23:03:36.243 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:03:36.243 SQL [18600]: pgsql_db_connect() -- 23:03:36.236 DEBUG [18561]: Database connection successful -- 23:03:36.236 INFO [18561]: _SERVER found -- 23:03:36.236 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 23:03:36.236 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 23:03:36.236 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:03:36.236 INFO [18561]: QUERY_STRING = /member/page -- 23:03:36.236 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:03:36.277 INFO [18561]: COREGRADE is stopping... -- 23:03:36.277 DEBUG [18561]: Closing database connection -- 23:03:36.277 SQL [18561]: pgsql_close() -- 23:03:36.247 DEBUG [18600]: Database connection successful -- 23:03:36.247 INFO [18600]: _SERVER found -- 23:03:36.247 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 23:03:36.247 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 23:03:36.247 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:03:36.247 INFO [18600]: QUERY_STRING = /member/page -- 23:03:36.247 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:03:36.289 INFO [18600]: COREGRADE is stopping... -- 23:03:36.289 DEBUG [18600]: Closing database connection -- 23:03:36.289 SQL [18600]: pgsql_close() -- 23:03:51.295 INFO [18600]: COREGRADE is starting... -- 23:03:51.295 INFO [18600]: Version from config: 1.0 -- 23:03:51.295 DEBUG [18600]: Connecting to database... -- 23:03:51.296 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:03:51.296 SQL [18600]: pgsql_db_connect() -- 23:03:51.300 DEBUG [18600]: Database connection successful -- 23:03:51.300 INFO [18600]: _SERVER found -- 23:03:51.300 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 23:03:51.300 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 23:03:51.300 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:03:51.300 INFO [18600]: QUERY_STRING = /member/page -- 23:03:51.300 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:03:51.340 INFO [18600]: COREGRADE is stopping... -- 23:03:51.340 DEBUG [18600]: Closing database connection -- 23:03:51.340 SQL [18600]: pgsql_close() -- 23:03:57.077 INFO [18600]: COREGRADE is starting... -- 23:03:57.077 INFO [18600]: Version from config: 1.0 -- 23:03:57.077 DEBUG [18600]: Connecting to database... -- 23:03:57.077 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:03:57.077 SQL [18600]: pgsql_db_connect() -- 23:03:57.081 DEBUG [18600]: Database connection successful -- 23:03:57.081 INFO [18600]: _SERVER found -- 23:03:57.081 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 23:03:57.081 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 23:03:57.081 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:03:57.081 INFO [18600]: QUERY_STRING = /member/page -- 23:03:57.081 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:03:57.120 INFO [18600]: COREGRADE is stopping... -- 23:03:57.120 DEBUG [18600]: Closing database connection -- 23:03:57.120 SQL [18600]: pgsql_close() -- 23:04:02.903 INFO [20641]: COREGRADE is starting... -- 23:04:02.903 INFO [20641]: Version from config: 1.0 -- 23:04:02.903 DEBUG [20641]: Connecting to database... -- 23:04:02.903 DEBUG [20641]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:02.903 SQL [20641]: pgsql_db_connect() -- 23:04:02.907 DEBUG [20641]: Database connection successful -- 23:04:02.907 INFO [20641]: _SERVER found -- 23:04:02.907 INFO [20641]: REMOTE_ADDR = 192.168.1.13 -- 23:04:02.907 INFO [20641]: SERVER_NAME = oameye.works.coregrade.com -- 23:04:02.907 INFO [20641]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:04:02.907 INFO [20641]: QUERY_STRING = /member/page -- 23:04:02.907 INFO [20641]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:04:02.948 INFO [20641]: COREGRADE is stopping... -- 23:04:02.948 DEBUG [20641]: Closing database connection -- 23:04:02.948 SQL [20641]: pgsql_close() -- 23:04:06.907 INFO [20641]: COREGRADE is starting... -- 23:04:06.907 INFO [20641]: Version from config: 1.0 -- 23:04:06.907 DEBUG [20641]: Connecting to database... -- 23:04:06.907 DEBUG [20641]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:06.907 SQL [20641]: pgsql_db_connect() -- 23:04:06.912 DEBUG [20641]: Database connection successful -- 23:04:06.912 INFO [20641]: _SERVER found -- 23:04:06.912 INFO [20641]: REMOTE_ADDR = 192.168.1.13 -- 23:04:06.912 INFO [20641]: SERVER_NAME = oameye.works.coregrade.com -- 23:04:06.912 INFO [20641]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:04:06.912 INFO [20641]: QUERY_STRING = /member/page -- 23:04:06.912 INFO [20641]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:04:06.952 INFO [20641]: COREGRADE is stopping... -- 23:04:06.952 DEBUG [20641]: Closing database connection -- 23:04:06.952 SQL [20641]: pgsql_close() -- 23:04:11.600 INFO [18600]: COREGRADE is starting... -- 23:04:11.600 INFO [18600]: Version from config: 1.0 -- 23:04:11.600 DEBUG [18600]: Connecting to database... -- 23:04:11.600 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:11.600 SQL [18600]: pgsql_db_connect() -- 23:04:11.604 DEBUG [18600]: Database connection successful -- 23:04:11.604 INFO [18600]: _SERVER found -- 23:04:11.604 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 23:04:11.604 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 23:04:11.604 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:04:11.604 INFO [18600]: QUERY_STRING = /member/page -- 23:04:11.604 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:04:11.644 INFO [18600]: COREGRADE is stopping... -- 23:04:11.644 DEBUG [18600]: Closing database connection -- 23:04:11.644 SQL [18600]: pgsql_close() -- 23:04:11.940 INFO [18600]: COREGRADE is starting... -- 23:04:11.941 INFO [18600]: Version from config: 1.0 -- 23:04:11.941 DEBUG [18600]: Connecting to database... -- 23:04:11.941 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:11.941 SQL [18600]: pgsql_db_connect() -- 23:04:11.945 DEBUG [18600]: Database connection successful -- 23:04:11.945 INFO [18600]: _SERVER found -- 23:04:11.945 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 23:04:11.945 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 23:04:11.945 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:04:11.945 INFO [18600]: QUERY_STRING = /member/page -- 23:04:11.945 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:04:11.985 INFO [18600]: COREGRADE is stopping... -- 23:04:11.985 DEBUG [18600]: Closing database connection -- 23:04:11.985 SQL [18600]: pgsql_close() -- 23:04:12.719 INFO [20641]: COREGRADE is starting... -- 23:04:12.719 INFO [20641]: Version from config: 1.0 -- 23:04:12.719 DEBUG [20641]: Connecting to database... -- 23:04:12.719 DEBUG [20641]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:12.719 SQL [20641]: pgsql_db_connect() -- 23:04:12.723 DEBUG [20641]: Database connection successful -- 23:04:12.723 INFO [20641]: _SERVER found -- 23:04:12.723 INFO [20641]: REMOTE_ADDR = 192.168.1.13 -- 23:04:12.723 INFO [20641]: SERVER_NAME = oameye.works.coregrade.com -- 23:04:12.723 INFO [20641]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:04:12.723 INFO [20641]: QUERY_STRING = /member/page -- 23:04:12.723 INFO [20641]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:04:12.762 INFO [20641]: COREGRADE is stopping... -- 23:04:12.762 DEBUG [20641]: Closing database connection -- 23:04:12.762 SQL [20641]: pgsql_close() -- 23:04:17.682 INFO [20641]: COREGRADE is starting... -- 23:04:17.682 INFO [20641]: Version from config: 1.0 -- 23:04:17.682 DEBUG [20641]: Connecting to database... -- 23:04:17.682 DEBUG [20641]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:17.682 SQL [20641]: pgsql_db_connect() -- 23:04:17.686 DEBUG [20641]: Database connection successful -- 23:04:17.686 INFO [20641]: _SERVER found -- 23:04:17.686 INFO [20641]: REMOTE_ADDR = 192.168.1.13 -- 23:04:17.686 INFO [20641]: SERVER_NAME = oameye.works.coregrade.com -- 23:04:17.686 INFO [20641]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:04:17.686 INFO [20641]: QUERY_STRING = /member/page -- 23:04:17.686 INFO [20641]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:04:17.726 INFO [20641]: COREGRADE is stopping... -- 23:04:17.726 DEBUG [20641]: Closing database connection -- 23:04:17.726 SQL [20641]: pgsql_close() -- 23:04:24.645 INFO [20641]: COREGRADE is starting... -- 23:04:24.645 INFO [20641]: Version from config: 1.0 -- 23:04:24.645 DEBUG [20641]: Connecting to database... -- 23:04:24.645 DEBUG [20641]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:24.645 SQL [20641]: pgsql_db_connect() -- 23:04:24.649 DEBUG [20641]: Database connection successful -- 23:04:24.649 INFO [20641]: _SERVER found -- 23:04:24.649 INFO [20641]: REMOTE_ADDR = 192.168.1.13 -- 23:04:24.649 INFO [20641]: SERVER_NAME = oameye.works.coregrade.com -- 23:04:24.649 INFO [20641]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:04:24.649 INFO [20641]: QUERY_STRING = /member/page -- 23:04:24.649 INFO [20641]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:04:24.688 INFO [20641]: COREGRADE is stopping... -- 23:04:24.688 DEBUG [20641]: Closing database connection -- 23:04:24.688 SQL [20641]: pgsql_close() -- 23:04:24.965 INFO [20641]: COREGRADE is starting... -- 23:04:24.965 INFO [20641]: Version from config: 1.0 -- 23:04:24.965 DEBUG [20641]: Connecting to database... -- 23:04:24.965 DEBUG [20641]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:24.965 SQL [20641]: pgsql_db_connect() -- 23:04:24.969 DEBUG [20641]: Database connection successful -- 23:04:24.969 INFO [20641]: _SERVER found -- 23:04:24.969 INFO [20641]: REMOTE_ADDR = 192.168.1.13 -- 23:04:24.969 INFO [20641]: SERVER_NAME = oameye.works.coregrade.com -- 23:04:24.969 INFO [20641]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:04:24.969 INFO [20641]: QUERY_STRING = /member/page -- 23:04:24.969 INFO [20641]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:04:25.009 INFO [20641]: COREGRADE is stopping... -- 23:04:25.009 DEBUG [20641]: Closing database connection -- 23:04:25.009 SQL [20641]: pgsql_close() -- 23:04:29.418 INFO [18600]: COREGRADE is starting... -- 23:04:29.419 INFO [18600]: Version from config: 1.0 -- 23:04:29.419 DEBUG [18600]: Connecting to database... -- 23:04:29.419 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:29.419 SQL [18600]: pgsql_db_connect() -- 23:04:29.423 DEBUG [18600]: Database connection successful -- 23:04:29.423 INFO [18600]: _SERVER found -- 23:04:29.423 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 23:04:29.423 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 23:04:29.423 INFO [18600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:04:29.423 INFO [18600]: QUERY_STRING = /member/page -- 23:04:29.423 INFO [18600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:04:29.462 INFO [18600]: COREGRADE is stopping... -- 23:04:29.463 DEBUG [18600]: Closing database connection -- 23:04:29.463 SQL [18600]: pgsql_close() -- 23:04:36.702 INFO [20641]: COREGRADE is starting... -- 23:04:36.702 INFO [20641]: Version from config: 1.0 -- 23:04:36.702 DEBUG [20641]: Connecting to database... -- 23:04:36.702 DEBUG [20641]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:36.702 SQL [20641]: pgsql_db_connect() -- 23:04:36.706 DEBUG [20641]: Database connection successful -- 23:04:36.706 INFO [20641]: _SERVER found -- 23:04:36.706 INFO [20641]: REMOTE_ADDR = 192.168.1.13 -- 23:04:36.706 INFO [20641]: SERVER_NAME = oameye.works.coregrade.com -- 23:04:36.706 INFO [20641]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:04:36.706 INFO [20641]: QUERY_STRING = /member/page -- 23:04:36.706 INFO [20641]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:04:36.745 INFO [20641]: COREGRADE is stopping... -- 23:04:36.746 DEBUG [20641]: Closing database connection -- 23:04:36.746 SQL [20641]: pgsql_close() -- 23:04:59.106 INFO [20128]: COREGRADE is starting... -- 23:04:59.106 INFO [20128]: Version from config: 1.0 -- 23:04:59.106 DEBUG [20128]: Connecting to database... -- 23:04:59.106 DEBUG [20128]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:59.106 SQL [20128]: pgsql_db_connect() -- 23:04:59.110 DEBUG [20128]: Database connection successful -- 23:04:59.110 INFO [20128]: _SERVER found -- 23:04:59.110 INFO [20128]: REMOTE_ADDR = 192.168.1.13 -- 23:04:59.110 INFO [20128]: SERVER_NAME = oameye.works.coregrade.com -- 23:04:59.110 INFO [20128]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:04:59.110 INFO [20128]: QUERY_STRING = /member/page -- 23:04:59.110 INFO [20128]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:04:59.151 INFO [20128]: COREGRADE is stopping... -- 23:04:59.151 DEBUG [20128]: Closing database connection -- 23:04:59.151 SQL [20128]: pgsql_close() -- 23:45:42.499 INFO [19781]: COREGRADE is starting... -- 23:45:42.499 INFO [19781]: Version from config: 1.0 -- 23:45:42.499 DEBUG [19781]: Connecting to database... -- 23:45:42.499 DEBUG [19781]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:45:42.499 SQL [19781]: pgsql_db_connect() -- 23:45:42.504 DEBUG [19781]: Database connection successful -- 23:45:42.504 INFO [19781]: _SERVER found -- 23:45:42.504 INFO [19781]: REMOTE_ADDR = 192.168.1.13 -- 23:45:42.504 INFO [19781]: SERVER_NAME = oameye.works.coregrade.com -- 23:45:42.504 INFO [19781]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:45:42.504 INFO [19781]: QUERY_STRING = /member/page -- 23:45:42.504 INFO [19781]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:45:42.549 INFO [19781]: COREGRADE is stopping... -- 23:45:42.549 DEBUG [19781]: Closing database connection -- 23:45:42.549 SQL [19781]: pgsql_close() -- 23:46:05.192 INFO [19761]: COREGRADE is starting... -- 23:46:05.193 INFO [19761]: Version from config: 1.0 -- 23:46:05.193 DEBUG [19761]: Connecting to database... -- 23:46:05.193 DEBUG [19761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:46:05.193 SQL [19761]: pgsql_db_connect() -- 23:46:05.199 INFO [18602]: COREGRADE is starting... -- 23:46:05.199 INFO [18602]: Version from config: 1.0 -- 23:46:05.199 DEBUG [18602]: Connecting to database... -- 23:46:05.199 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:46:05.199 SQL [18602]: pgsql_db_connect() -- 23:46:05.197 DEBUG [19761]: Database connection successful -- 23:46:05.197 INFO [19761]: _SERVER found -- 23:46:05.197 INFO [19761]: REMOTE_ADDR = 192.168.1.13 -- 23:46:05.197 INFO [19761]: SERVER_NAME = oameye.works.coregrade.com -- 23:46:05.197 INFO [19761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:46:05.197 INFO [19761]: QUERY_STRING = /member/page -- 23:46:05.197 INFO [19761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:46:05.241 INFO [19761]: COREGRADE is stopping... -- 23:46:05.241 DEBUG [19761]: Closing database connection -- 23:46:05.241 SQL [19761]: pgsql_close() -- 23:46:05.203 DEBUG [18602]: Database connection successful -- 23:46:05.203 INFO [18602]: _SERVER found -- 23:46:05.203 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 23:46:05.203 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 23:46:05.203 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:46:05.203 INFO [18602]: QUERY_STRING = /member/page -- 23:46:05.203 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:46:05.252 INFO [18602]: COREGRADE is stopping... -- 23:46:05.252 DEBUG [18602]: Closing database connection -- 23:46:05.252 SQL [18602]: pgsql_close() -- 23:46:05.346 INFO [18602]: COREGRADE is starting... -- 23:46:05.346 INFO [18602]: Version from config: 1.0 -- 23:46:05.346 DEBUG [18602]: Connecting to database... -- 23:46:05.346 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:46:05.346 SQL [18602]: pgsql_db_connect() -- 23:46:05.347 INFO [19761]: COREGRADE is starting... -- 23:46:05.347 INFO [19761]: Version from config: 1.0 -- 23:46:05.347 DEBUG [19761]: Connecting to database... -- 23:46:05.347 DEBUG [19761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:46:05.347 SQL [19761]: pgsql_db_connect() -- 23:46:05.350 DEBUG [18602]: Database connection successful -- 23:46:05.350 INFO [18602]: _SERVER found -- 23:46:05.350 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 23:46:05.350 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 23:46:05.350 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:46:05.350 INFO [18602]: QUERY_STRING = /member/page -- 23:46:05.350 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:46:05.390 INFO [18602]: COREGRADE is stopping... -- 23:46:05.390 DEBUG [18602]: Closing database connection -- 23:46:05.390 SQL [18602]: pgsql_close() -- 23:46:05.351 DEBUG [19761]: Database connection successful -- 23:46:05.351 INFO [19761]: _SERVER found -- 23:46:05.351 INFO [19761]: REMOTE_ADDR = 192.168.1.13 -- 23:46:05.351 INFO [19761]: SERVER_NAME = oameye.works.coregrade.com -- 23:46:05.351 INFO [19761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:46:05.351 INFO [19761]: QUERY_STRING = /member/page -- 23:46:05.351 INFO [19761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:46:05.402 INFO [19761]: COREGRADE is stopping... -- 23:46:05.402 DEBUG [19761]: Closing database connection -- 23:46:05.402 SQL [19761]: pgsql_close() -- 23:46:05.481 INFO [19761]: COREGRADE is starting... -- 23:46:05.481 INFO [19761]: Version from config: 1.0 -- 23:46:05.481 DEBUG [19761]: Connecting to database... -- 23:46:05.481 DEBUG [19761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:46:05.481 SQL [19761]: pgsql_db_connect() -- 23:46:05.485 DEBUG [19761]: Database connection successful -- 23:46:05.485 INFO [19761]: _SERVER found -- 23:46:05.485 INFO [19761]: REMOTE_ADDR = 192.168.1.13 -- 23:46:05.485 INFO [19761]: SERVER_NAME = oameye.works.coregrade.com -- 23:46:05.485 INFO [19761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:46:05.485 INFO [19761]: QUERY_STRING = /member/page -- 23:46:05.485 INFO [19761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:46:05.525 INFO [19761]: COREGRADE is stopping... -- 23:46:05.525 DEBUG [19761]: Closing database connection -- 23:46:05.525 SQL [19761]: pgsql_close() -- 23:46:05.575 INFO [18602]: COREGRADE is starting... -- 23:46:05.575 INFO [18602]: Version from config: 1.0 -- 23:46:05.575 DEBUG [18602]: Connecting to database... -- 23:46:05.575 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:46:05.575 SQL [18602]: pgsql_db_connect() -- 23:46:05.579 DEBUG [18602]: Database connection successful -- 23:46:05.579 INFO [18602]: _SERVER found -- 23:46:05.579 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 23:46:05.579 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 23:46:05.579 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:46:05.579 INFO [18602]: QUERY_STRING = /member/page -- 23:46:05.579 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:46:05.618 INFO [18602]: COREGRADE is stopping... -- 23:46:05.618 DEBUG [18602]: Closing database connection -- 23:46:05.618 SQL [18602]: pgsql_close() -- 23:46:05.649 INFO [19761]: COREGRADE is starting... -- 23:46:05.649 INFO [19761]: Version from config: 1.0 -- 23:46:05.649 DEBUG [19761]: Connecting to database... -- 23:46:05.649 DEBUG [19761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:46:05.649 SQL [19761]: pgsql_db_connect() -- 23:46:05.653 DEBUG [19761]: Database connection successful -- 23:46:05.653 INFO [19761]: _SERVER found -- 23:46:05.653 INFO [19761]: REMOTE_ADDR = 192.168.1.13 -- 23:46:05.653 INFO [19761]: SERVER_NAME = oameye.works.coregrade.com -- 23:46:05.653 INFO [19761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:46:05.653 INFO [19761]: QUERY_STRING = /member/page -- 23:46:05.653 INFO [19761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:46:05.692 INFO [19761]: COREGRADE is stopping... -- 23:46:05.692 DEBUG [19761]: Closing database connection -- 23:46:05.693 SQL [19761]: pgsql_close() -- 23:46:05.725 INFO [19761]: COREGRADE is starting... -- 23:46:05.725 INFO [19761]: Version from config: 1.0 -- 23:46:05.725 DEBUG [19761]: Connecting to database... -- 23:46:05.725 DEBUG [19761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:46:05.725 SQL [19761]: pgsql_db_connect() -- 23:46:05.729 DEBUG [19761]: Database connection successful -- 23:46:05.729 INFO [19761]: _SERVER found -- 23:46:05.729 INFO [19761]: REMOTE_ADDR = 192.168.1.13 -- 23:46:05.729 INFO [19761]: SERVER_NAME = oameye.works.coregrade.com -- 23:46:05.729 INFO [19761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:46:05.729 INFO [19761]: QUERY_STRING = /member/page -- 23:46:05.729 INFO [19761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:46:05.768 INFO [19761]: COREGRADE is stopping... -- 23:46:05.768 DEBUG [19761]: Closing database connection -- 23:46:05.768 SQL [19761]: pgsql_close() -- 23:46:05.772 INFO [18602]: COREGRADE is starting... -- 23:46:05.773 INFO [18602]: Version from config: 1.0 -- 23:46:05.773 DEBUG [18602]: Connecting to database... -- 23:46:05.773 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:46:05.773 SQL [18602]: pgsql_db_connect() -- 23:46:05.777 DEBUG [18602]: Database connection successful -- 23:46:05.777 INFO [18602]: _SERVER found -- 23:46:05.777 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 23:46:05.777 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 23:46:05.777 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:46:05.777 INFO [18602]: QUERY_STRING = /member/page -- 23:46:05.777 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:46:05.816 INFO [18602]: COREGRADE is stopping... -- 23:46:05.816 DEBUG [18602]: Closing database connection -- 23:46:05.816 SQL [18602]: pgsql_close() -- 23:46:05.845 INFO [18602]: COREGRADE is starting... -- 23:46:05.845 INFO [18602]: Version from config: 1.0 -- 23:46:05.845 DEBUG [18602]: Connecting to database... -- 23:46:05.845 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:46:05.845 SQL [18602]: pgsql_db_connect() -- 23:46:05.853 INFO [19761]: COREGRADE is starting... -- 23:46:05.853 INFO [19761]: Version from config: 1.0 -- 23:46:05.853 DEBUG [19761]: Connecting to database... -- 23:46:05.853 DEBUG [19761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:46:05.853 SQL [19761]: pgsql_db_connect() -- 23:46:05.849 DEBUG [18602]: Database connection successful -- 23:46:05.849 INFO [18602]: _SERVER found -- 23:46:05.849 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 23:46:05.849 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 23:46:05.849 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:46:05.849 INFO [18602]: QUERY_STRING = /member/page -- 23:46:05.849 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:46:05.888 INFO [18602]: COREGRADE is stopping... -- 23:46:05.888 DEBUG [18602]: Closing database connection -- 23:46:05.888 SQL [18602]: pgsql_close() -- 23:46:05.857 DEBUG [19761]: Database connection successful -- 23:46:05.857 INFO [19761]: _SERVER found -- 23:46:05.857 INFO [19761]: REMOTE_ADDR = 192.168.1.13 -- 23:46:05.857 INFO [19761]: SERVER_NAME = oameye.works.coregrade.com -- 23:46:05.857 INFO [19761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:46:05.857 INFO [19761]: QUERY_STRING = /member/page -- 23:46:05.857 INFO [19761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:46:05.900 INFO [19761]: COREGRADE is stopping... -- 23:46:05.900 DEBUG [19761]: Closing database connection -- 23:46:05.900 SQL [19761]: pgsql_close() -- 23:46:05.941 INFO [19761]: COREGRADE is starting... -- 23:46:05.941 INFO [19761]: Version from config: 1.0 -- 23:46:05.941 DEBUG [19761]: Connecting to database... -- 23:46:05.941 DEBUG [19761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:46:05.941 SQL [19761]: pgsql_db_connect() -- 23:46:05.945 DEBUG [19761]: Database connection successful -- 23:46:05.945 INFO [19761]: _SERVER found -- 23:46:05.945 INFO [19761]: REMOTE_ADDR = 192.168.1.13 -- 23:46:05.945 INFO [19761]: SERVER_NAME = oameye.works.coregrade.com -- 23:46:05.945 INFO [19761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:46:05.945 INFO [19761]: QUERY_STRING = /member/page -- 23:46:05.945 INFO [19761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:46:05.988 INFO [19761]: COREGRADE is stopping... -- 23:46:05.988 DEBUG [19761]: Closing database connection -- 23:46:05.988 SQL [19761]: pgsql_close() -- 23:56:01.912 INFO [18562]: COREGRADE is starting... -- 23:56:01.913 INFO [18562]: Version from config: 1.0 -- 23:56:01.913 DEBUG [18562]: Connecting to database... -- 23:56:01.913 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:56:01.913 SQL [18562]: pgsql_db_connect() -- 23:56:01.917 DEBUG [18562]: Database connection successful -- 23:56:01.917 INFO [18562]: _SERVER found -- 23:56:01.917 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 23:56:01.917 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 23:56:01.917 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:56:01.917 INFO [18562]: QUERY_STRING = /member/viewCardAddAction -- 23:56:01.917 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:56:01.950 INFO [18562]: COREGRADE is stopping... -- 23:56:01.950 DEBUG [18562]: Closing database connection -- 23:56:01.950 SQL [18562]: pgsql_close() -- 23:56:08.628 INFO [18604]: COREGRADE is starting... -- 23:56:08.629 INFO [18604]: Version from config: 1.0 -- 23:56:08.629 DEBUG [18604]: Connecting to database... -- 23:56:08.629 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:56:08.629 SQL [18604]: pgsql_db_connect() -- 23:56:08.633 DEBUG [18604]: Database connection successful -- 23:56:08.633 INFO [18604]: _SERVER found -- 23:56:08.633 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 23:56:08.633 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 23:56:08.633 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:56:08.633 INFO [18604]: QUERY_STRING = /member/viewCardAddAction -- 23:56:08.633 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:56:08.667 INFO [18604]: COREGRADE is stopping... -- 23:56:08.668 DEBUG [18604]: Closing database connection -- 23:56:08.668 SQL [18604]: pgsql_close() -- 23:56:10.176 INFO [18604]: COREGRADE is starting... -- 23:56:10.176 INFO [18604]: Version from config: 1.0 -- 23:56:10.176 DEBUG [18604]: Connecting to database... -- 23:56:10.176 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:56:10.176 SQL [18604]: pgsql_db_connect() -- 23:56:10.180 DEBUG [18604]: Database connection successful -- 23:56:10.180 INFO [18604]: _SERVER found -- 23:56:10.180 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 23:56:10.180 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 23:56:10.180 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:56:10.180 INFO [18604]: QUERY_STRING = /member/viewCardAddAction -- 23:56:10.180 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:56:10.211 INFO [18604]: COREGRADE is stopping... -- 23:56:10.211 DEBUG [18604]: Closing database connection -- 23:56:10.211 SQL [18604]: pgsql_close() -- 23:56:20.885 INFO [18563]: COREGRADE is starting... -- 23:56:20.885 INFO [18563]: Version from config: 1.0 -- 23:56:20.885 DEBUG [18563]: Connecting to database... -- 23:56:20.885 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:56:20.885 SQL [18563]: pgsql_db_connect() -- 23:56:20.889 DEBUG [18563]: Database connection successful -- 23:56:20.889 INFO [18563]: _SERVER found -- 23:56:20.889 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 23:56:20.889 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 23:56:20.889 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=3d2vohj5j9vqkpkrodpa010ilhdjb6so -- 23:56:20.889 INFO [18563]: QUERY_STRING = /member/page -- 23:56:20.889 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:56:20.934 INFO [18563]: COREGRADE is stopping... -- 23:56:20.934 DEBUG [18563]: Closing database connection -- 23:56:20.934 SQL [18563]: pgsql_close() -- 23:56:21.398 INFO [20128]: COREGRADE is starting... -- 23:56:21.398 INFO [20128]: Version from config: 1.0 -- 23:56:21.398 DEBUG [20128]: Connecting to database... -- 23:56:21.398 DEBUG [20128]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:56:21.398 SQL [20128]: pgsql_db_connect() -- 23:56:21.402 DEBUG [20128]: Database connection successful -- 23:56:21.402 INFO [20128]: _SERVER found -- 23:56:21.402 INFO [20128]: REMOTE_ADDR = 192.168.1.13 -- 23:56:21.402 INFO [20128]: SERVER_NAME = oameye.works.coregrade.com -- 23:56:21.402 INFO [20128]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=slrb9c67nch3u94vltjsg4sie2rsvc73 -- 23:56:21.402 INFO [20128]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:56:21.402 INFO [20128]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:56:21.414 INFO [20128]: COREGRADE is stopping... -- 23:56:21.414 DEBUG [20128]: Closing database connection -- 23:56:21.414 SQL [20128]: pgsql_close() -- 23:56:25.900 INFO [19781]: COREGRADE is starting... -- 23:56:25.900 INFO [19781]: Version from config: 1.0 -- 23:56:25.900 DEBUG [19781]: Connecting to database... -- 23:56:25.900 DEBUG [19781]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:56:25.900 SQL [19781]: pgsql_db_connect() -- 23:56:25.904 DEBUG [19781]: Database connection successful -- 23:56:25.904 INFO [19781]: _SERVER found -- 23:56:25.904 INFO [19781]: REMOTE_ADDR = 192.168.1.13 -- 23:56:25.904 INFO [19781]: SERVER_NAME = oameye.works.coregrade.com -- 23:56:25.904 INFO [19781]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=slrb9c67nch3u94vltjsg4sie2rsvc73 -- 23:56:25.904 INFO [19781]: QUERY_STRING = /member/viewCardAddAction -- 23:56:25.904 INFO [19781]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:56:25.937 INFO [19781]: COREGRADE is stopping... -- 23:56:25.937 DEBUG [19781]: Closing database connection -- 23:56:25.937 SQL [19781]: pgsql_close() -- 23:56:33.347 INFO [18602]: COREGRADE is starting... -- 23:56:33.347 INFO [18602]: Version from config: 1.0 -- 23:56:33.347 DEBUG [18602]: Connecting to database... -- 23:56:33.347 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:56:33.347 SQL [18602]: pgsql_db_connect() -- 23:56:33.351 DEBUG [18602]: Database connection successful -- 23:56:33.351 INFO [18602]: _SERVER found -- 23:56:33.351 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 23:56:33.351 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 23:56:33.351 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=slrb9c67nch3u94vltjsg4sie2rsvc73 -- 23:56:33.351 INFO [18602]: QUERY_STRING = /member/page -- 23:56:33.351 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:56:33.393 INFO [18602]: COREGRADE is stopping... -- 23:56:33.393 DEBUG [18602]: Closing database connection -- 23:56:33.393 SQL [18602]: pgsql_close() -- 23:56:33.666 INFO [19761]: COREGRADE is starting... -- 23:56:33.666 INFO [19761]: Version from config: 1.0 -- 23:56:33.666 DEBUG [19761]: Connecting to database... -- 23:56:33.666 DEBUG [19761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:56:33.666 SQL [19761]: pgsql_db_connect() -- 23:56:33.670 DEBUG [19761]: Database connection successful -- 23:56:33.670 INFO [19761]: _SERVER found -- 23:56:33.670 INFO [19761]: REMOTE_ADDR = 192.168.1.13 -- 23:56:33.670 INFO [19761]: SERVER_NAME = oameye.works.coregrade.com -- 23:56:33.670 INFO [19761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=slrb9c67nch3u94vltjsg4sie2rsvc73 -- 23:56:33.670 INFO [19761]: QUERY_STRING = /member/page -- 23:56:33.670 INFO [19761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:56:33.712 INFO [19761]: COREGRADE is stopping... -- 23:56:33.712 DEBUG [19761]: Closing database connection -- 23:56:33.712 SQL [19761]: pgsql_close() -- 23:56:33.722 INFO [18602]: COREGRADE is starting... -- 23:56:33.722 INFO [18602]: Version from config: 1.0 -- 23:56:33.722 DEBUG [18602]: Connecting to database... -- 23:56:33.722 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:56:33.722 SQL [18602]: pgsql_db_connect() -- 23:56:33.726 DEBUG [18602]: Database connection successful -- 23:56:33.726 INFO [18602]: _SERVER found -- 23:56:33.726 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 23:56:33.726 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 23:56:33.726 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=slrb9c67nch3u94vltjsg4sie2rsvc73 -- 23:56:33.726 INFO [18602]: QUERY_STRING = /member/page -- 23:56:33.726 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:56:33.765 INFO [18602]: COREGRADE is stopping... -- 23:56:33.765 DEBUG [18602]: Closing database connection -- 23:56:33.765 SQL [18602]: pgsql_close() -- 23:56:33.953 INFO [18602]: COREGRADE is starting... -- 23:56:33.954 INFO [18602]: Version from config: 1.0 -- 23:56:33.954 DEBUG [18602]: Connecting to database... -- 23:56:33.954 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:56:33.954 SQL [18602]: pgsql_db_connect() -- 23:56:33.958 DEBUG [18602]: Database connection successful -- 23:56:33.958 INFO [18602]: _SERVER found -- 23:56:33.958 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 23:56:33.958 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 23:56:33.958 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=slrb9c67nch3u94vltjsg4sie2rsvc73 -- 23:56:33.958 INFO [18602]: QUERY_STRING = /member/page -- 23:56:33.958 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:56:33.997 INFO [18602]: COREGRADE is stopping... -- 23:56:33.997 DEBUG [18602]: Closing database connection -- 23:56:33.997 SQL [18602]: pgsql_close() -- 23:56:34.119 INFO [19761]: COREGRADE is starting... -- 23:56:34.119 INFO [19761]: Version from config: 1.0 -- 23:56:34.119 DEBUG [19761]: Connecting to database... -- 23:56:34.120 DEBUG [19761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:56:34.120 SQL [19761]: pgsql_db_connect() -- 23:56:34.124 DEBUG [19761]: Database connection successful -- 23:56:34.124 INFO [19761]: _SERVER found -- 23:56:34.124 INFO [19761]: REMOTE_ADDR = 192.168.1.13 -- 23:56:34.124 INFO [19761]: SERVER_NAME = oameye.works.coregrade.com -- 23:56:34.124 INFO [19761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=slrb9c67nch3u94vltjsg4sie2rsvc73 -- 23:56:34.124 INFO [19761]: QUERY_STRING = /member/page -- 23:56:34.124 INFO [19761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:56:34.163 INFO [19761]: COREGRADE is stopping... -- 23:56:34.164 DEBUG [19761]: Closing database connection -- 23:56:34.164 SQL [19761]: pgsql_close() -- 23:58:11.341 INFO [18562]: COREGRADE is starting... -- 23:58:11.341 INFO [18562]: Version from config: 1.0 -- 23:58:11.341 DEBUG [18562]: Connecting to database... -- 23:58:11.341 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:58:11.341 SQL [18562]: pgsql_db_connect() -- 23:58:11.345 DEBUG [18562]: Database connection successful -- 23:58:11.345 INFO [18562]: _SERVER found -- 23:58:11.345 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 23:58:11.345 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 23:58:11.345 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=slrb9c67nch3u94vltjsg4sie2rsvc73 -- 23:58:11.345 INFO [18562]: QUERY_STRING = /member/page -- 23:58:11.345 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:58:11.389 INFO [18562]: COREGRADE is stopping... -- 23:58:11.389 DEBUG [18562]: Closing database connection -- 23:58:11.389 SQL [18562]: pgsql_close() -- 23:58:11.647 INFO [20128]: COREGRADE is starting... -- 23:58:11.647 INFO [20128]: Version from config: 1.0 -- 23:58:11.647 DEBUG [20128]: Connecting to database... -- 23:58:11.647 DEBUG [20128]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:58:11.647 SQL [20128]: pgsql_db_connect() -- 23:58:11.651 DEBUG [20128]: Database connection successful -- 23:58:11.651 INFO [20128]: _SERVER found -- 23:58:11.651 INFO [20128]: REMOTE_ADDR = 192.168.1.13 -- 23:58:11.651 INFO [20128]: SERVER_NAME = oameye.works.coregrade.com -- 23:58:11.651 INFO [20128]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=slrb9c67nch3u94vltjsg4sie2rsvc73 -- 23:58:11.651 INFO [20128]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:58:11.651 INFO [20128]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:58:11.662 INFO [20128]: COREGRADE is stopping... -- 23:58:11.663 DEBUG [20128]: Closing database connection -- 23:58:11.663 SQL [20128]: pgsql_close() -- 23:58:14.157 INFO [18563]: COREGRADE is starting... -- 23:58:14.158 INFO [18563]: Version from config: 1.0 -- 23:58:14.158 DEBUG [18563]: Connecting to database... -- 23:58:14.158 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:58:14.158 SQL [18563]: pgsql_db_connect() -- 23:58:14.162 DEBUG [18563]: Database connection successful -- 23:58:14.162 INFO [18563]: _SERVER found -- 23:58:14.162 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 23:58:14.162 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 23:58:14.162 INFO [18563]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=slrb9c67nch3u94vltjsg4sie2rsvc73 -- 23:58:14.162 INFO [18563]: QUERY_STRING = /member/viewCardAddAction -- 23:58:14.162 INFO [18563]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:58:14.193 INFO [18563]: COREGRADE is stopping... -- 23:58:14.193 DEBUG [18563]: Closing database connection -- 23:58:14.193 SQL [18563]: pgsql_close() -- 23:58:22.610 INFO [18561]: COREGRADE is starting... -- 23:58:22.610 INFO [18561]: Version from config: 1.0 -- 23:58:22.610 DEBUG [18561]: Connecting to database... -- 23:58:22.610 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:58:22.610 SQL [18561]: pgsql_db_connect() -- 23:58:22.614 DEBUG [18561]: Database connection successful -- 23:58:22.614 INFO [18561]: _SERVER found -- 23:58:22.614 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 23:58:22.614 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 23:58:22.614 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=slrb9c67nch3u94vltjsg4sie2rsvc73 -- 23:58:22.614 INFO [18561]: QUERY_STRING = /member/upload -- 23:58:22.614 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:58:22.647 INFO [18561]: COREGRADE is stopping... -- 23:58:22.647 DEBUG [18561]: Closing database connection -- 23:58:22.647 SQL [18561]: pgsql_close() -- 23:58:22.746 INFO [18561]: COREGRADE is starting... -- 23:58:22.746 INFO [18561]: Version from config: 1.0 -- 23:58:22.746 DEBUG [18561]: Connecting to database... -- 23:58:22.746 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:58:22.746 SQL [18561]: pgsql_db_connect() -- 23:58:22.753 INFO [20641]: COREGRADE is starting... -- 23:58:22.753 INFO [20641]: Version from config: 1.0 -- 23:58:22.753 DEBUG [20641]: Connecting to database... -- 23:58:22.753 DEBUG [20641]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:58:22.753 SQL [20641]: pgsql_db_connect() -- 23:58:22.757 DEBUG [20641]: Database connection successful -- 23:58:22.757 INFO [20641]: _SERVER found -- 23:58:22.757 INFO [20641]: REMOTE_ADDR = 192.168.1.13 -- 23:58:22.757 INFO [20641]: SERVER_NAME = oameye.works.coregrade.com -- 23:58:22.757 INFO [20641]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=slrb9c67nch3u94vltjsg4sie2rsvc73 -- 23:58:22.757 INFO [20641]: QUERY_STRING = /favicon.ico -- 23:58:22.757 INFO [20641]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:58:22.769 INFO [20641]: COREGRADE is stopping... -- 23:58:22.769 DEBUG [20641]: Closing database connection -- 23:58:22.769 SQL [20641]: pgsql_close() -- 23:58:22.750 DEBUG [18561]: Database connection successful -- 23:58:22.750 INFO [18561]: _SERVER found -- 23:58:22.750 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 23:58:22.750 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 23:58:22.750 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=slrb9c67nch3u94vltjsg4sie2rsvc73 -- 23:58:22.750 INFO [18561]: QUERY_STRING = /member/page -- 23:58:22.750 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:58:22.790 INFO [18561]: COREGRADE is stopping... -- 23:58:22.790 DEBUG [18561]: Closing database connection -- 23:58:22.790 SQL [18561]: pgsql_close() -- 23:58:22.986 INFO [18561]: COREGRADE is starting... -- 23:58:22.986 INFO [18561]: Version from config: 1.0 -- 23:58:22.986 DEBUG [18561]: Connecting to database... -- 23:58:22.986 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:58:22.986 SQL [18561]: pgsql_db_connect() -- 23:58:22.990 DEBUG [18561]: Database connection successful -- 23:58:22.990 INFO [18561]: _SERVER found -- 23:58:22.990 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 23:58:22.990 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 23:58:22.990 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=slrb9c67nch3u94vltjsg4sie2rsvc73 -- 23:58:22.990 INFO [18561]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:58:22.990 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:58:23.002 INFO [18561]: COREGRADE is stopping... -- 23:58:23.002 DEBUG [18561]: Closing database connection -- 23:58:23.002 SQL [18561]: pgsql_close() -- 00:00:23.848 INFO [19781]: COREGRADE is starting... -- 00:00:23.848 INFO [19781]: Version from config: 1.0 -- 00:00:23.848 DEBUG [19781]: Connecting to database... -- 00:00:23.848 DEBUG [19781]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:00:23.848 SQL [19781]: pgsql_db_connect() -- 00:00:23.852 DEBUG [19781]: Database connection successful -- 00:00:23.852 INFO [19781]: _SERVER found -- 00:00:23.852 INFO [19781]: REMOTE_ADDR = 192.168.1.13 -- 00:00:23.852 INFO [19781]: SERVER_NAME = oameye.works.coregrade.com -- 00:00:23.852 INFO [19781]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=slrb9c67nch3u94vltjsg4sie2rsvc73 -- 00:00:23.852 INFO [19781]: QUERY_STRING = /member/page -- 00:00:23.852 INFO [19781]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:00:23.896 INFO [19781]: COREGRADE is stopping... -- 00:00:23.896 DEBUG [19781]: Closing database connection -- 00:00:23.896 SQL [19781]: pgsql_close() -- 00:00:24.025 INFO [19781]: COREGRADE is starting... -- 00:00:24.025 INFO [19781]: Version from config: 1.0 -- 00:00:24.025 DEBUG [19781]: Connecting to database... -- 00:00:24.025 DEBUG [19781]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:00:24.025 SQL [19781]: pgsql_db_connect() -- 00:00:24.029 DEBUG [19781]: Database connection successful -- 00:00:24.029 INFO [19781]: _SERVER found -- 00:00:24.029 INFO [19781]: REMOTE_ADDR = 192.168.1.13 -- 00:00:24.029 INFO [19781]: SERVER_NAME = oameye.works.coregrade.com -- 00:00:24.029 INFO [19781]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=slrb9c67nch3u94vltjsg4sie2rsvc73 -- 00:00:24.029 INFO [19781]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:00:24.029 INFO [19781]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:00:24.040 INFO [19781]: COREGRADE is stopping... -- 00:00:24.040 DEBUG [19781]: Closing database connection -- 00:00:24.040 SQL [19781]: pgsql_close() -- 00:00:26.569 INFO [19761]: COREGRADE is starting... -- 00:00:26.569 INFO [19761]: Version from config: 1.0 -- 00:00:26.569 DEBUG [19761]: Connecting to database... -- 00:00:26.569 DEBUG [19761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:00:26.569 SQL [19761]: pgsql_db_connect() -- 00:00:26.573 DEBUG [19761]: Database connection successful -- 00:00:26.573 INFO [19761]: _SERVER found -- 00:00:26.573 INFO [19761]: REMOTE_ADDR = 192.168.1.13 -- 00:00:26.573 INFO [19761]: SERVER_NAME = oameye.works.coregrade.com -- 00:00:26.573 INFO [19761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=slrb9c67nch3u94vltjsg4sie2rsvc73 -- 00:00:26.573 INFO [19761]: QUERY_STRING = /member/viewCardAddAction -- 00:00:26.573 INFO [19761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:00:26.605 INFO [19761]: COREGRADE is stopping... -- 00:00:26.605 DEBUG [19761]: Closing database connection -- 00:00:26.605 SQL [19761]: pgsql_close() -- 00:00:28.309 INFO [19761]: COREGRADE is starting... -- 00:00:28.309 INFO [19761]: Version from config: 1.0 -- 00:00:28.309 DEBUG [19761]: Connecting to database... -- 00:00:28.309 DEBUG [19761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:00:28.309 SQL [19761]: pgsql_db_connect() -- 00:00:28.313 DEBUG [19761]: Database connection successful -- 00:00:28.313 INFO [19761]: _SERVER found -- 00:00:28.313 INFO [19761]: REMOTE_ADDR = 192.168.1.13 -- 00:00:28.313 INFO [19761]: SERVER_NAME = oameye.works.coregrade.com -- 00:00:28.313 INFO [19761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=slrb9c67nch3u94vltjsg4sie2rsvc73 -- 00:00:28.313 INFO [19761]: QUERY_STRING = /member/upload -- 00:00:28.313 INFO [19761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:00:28.344 INFO [19761]: COREGRADE is stopping... -- 00:00:28.344 DEBUG [19761]: Closing database connection -- 00:00:28.344 SQL [19761]: pgsql_close() -- 00:00:37.194 INFO [18562]: COREGRADE is starting... -- 00:00:37.194 INFO [18562]: Version from config: 1.0 -- 00:00:37.194 DEBUG [18562]: Connecting to database... -- 00:00:37.194 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:00:37.194 SQL [18562]: pgsql_db_connect() -- 00:00:37.198 DEBUG [18562]: Database connection successful -- 00:00:37.198 INFO [18562]: _SERVER found -- 00:00:37.198 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 00:00:37.198 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 00:00:37.198 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=slrb9c67nch3u94vltjsg4sie2rsvc73 -- 00:00:37.198 INFO [18562]: QUERY_STRING = /member/page -- 00:00:37.198 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:00:37.240 INFO [18562]: COREGRADE is stopping... -- 00:00:37.240 DEBUG [18562]: Closing database connection -- 00:00:37.240 SQL [18562]: pgsql_close() -- 00:00:37.571 INFO [20128]: COREGRADE is starting... -- 00:00:37.571 INFO [20128]: Version from config: 1.0 -- 00:00:37.571 DEBUG [20128]: Connecting to database... -- 00:00:37.571 DEBUG [20128]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:00:37.571 SQL [20128]: pgsql_db_connect() -- 00:00:37.575 DEBUG [20128]: Database connection successful -- 00:00:37.575 INFO [20128]: _SERVER found -- 00:00:37.575 INFO [20128]: REMOTE_ADDR = 192.168.1.13 -- 00:00:37.575 INFO [20128]: SERVER_NAME = oameye.works.coregrade.com -- 00:00:37.575 INFO [20128]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=slrb9c67nch3u94vltjsg4sie2rsvc73 -- 00:00:37.575 INFO [20128]: QUERY_STRING = /member/page -- 00:00:37.575 INFO [20128]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:00:37.617 INFO [20128]: COREGRADE is stopping... -- 00:00:37.617 DEBUG [20128]: Closing database connection -- 00:00:37.617 SQL [20128]: pgsql_close() -- 00:00:37.665 INFO [18562]: COREGRADE is starting... -- 00:00:37.665 INFO [18562]: Version from config: 1.0 -- 00:00:37.665 DEBUG [18562]: Connecting to database... -- 00:00:37.665 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:00:37.665 SQL [18562]: pgsql_db_connect() -- 00:00:37.669 DEBUG [18562]: Database connection successful -- 00:00:37.669 INFO [18562]: _SERVER found -- 00:00:37.669 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 00:00:37.669 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 00:00:37.669 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=slrb9c67nch3u94vltjsg4sie2rsvc73 -- 00:00:37.669 INFO [18562]: QUERY_STRING = /member/page -- 00:00:37.669 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:00:37.709 INFO [18562]: COREGRADE is stopping... -- 00:00:37.709 DEBUG [18562]: Closing database connection -- 00:00:37.709 SQL [18562]: pgsql_close() -- 00:00:38.111 INFO [20128]: COREGRADE is starting... -- 00:00:38.112 INFO [20128]: Version from config: 1.0 -- 00:00:38.112 DEBUG [20128]: Connecting to database... -- 00:00:38.112 DEBUG [20128]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:00:38.112 SQL [20128]: pgsql_db_connect() -- 00:00:38.116 DEBUG [20128]: Database connection successful -- 00:00:38.116 INFO [20128]: _SERVER found -- 00:00:38.116 INFO [20128]: REMOTE_ADDR = 192.168.1.13 -- 00:00:38.116 INFO [20128]: SERVER_NAME = oameye.works.coregrade.com -- 00:00:38.116 INFO [20128]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=slrb9c67nch3u94vltjsg4sie2rsvc73 -- 00:00:38.116 INFO [20128]: QUERY_STRING = /member/page -- 00:00:38.116 INFO [20128]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:00:38.155 INFO [20128]: COREGRADE is stopping... -- 00:00:38.155 DEBUG [20128]: Closing database connection -- 00:00:38.155 SQL [20128]: pgsql_close() -- 00:00:38.184 INFO [20128]: COREGRADE is starting... -- 00:00:38.184 INFO [20128]: Version from config: 1.0 -- 00:00:38.184 DEBUG [20128]: Connecting to database... -- 00:00:38.184 DEBUG [20128]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:00:38.184 SQL [20128]: pgsql_db_connect() -- 00:00:38.188 DEBUG [20128]: Database connection successful -- 00:00:38.188 INFO [20128]: _SERVER found -- 00:00:38.188 INFO [20128]: REMOTE_ADDR = 192.168.1.13 -- 00:00:38.188 INFO [20128]: SERVER_NAME = oameye.works.coregrade.com -- 00:00:38.188 INFO [20128]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=slrb9c67nch3u94vltjsg4sie2rsvc73 -- 00:00:38.188 INFO [20128]: QUERY_STRING = /member/upload -- 00:00:38.188 INFO [20128]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:00:38.219 INFO [20128]: COREGRADE is stopping... -- 00:00:38.219 DEBUG [20128]: Closing database connection -- 00:00:38.219 SQL [20128]: pgsql_close() -- 00:00:38.595 INFO [18562]: COREGRADE is starting... -- 00:00:38.596 INFO [18562]: Version from config: 1.0 -- 00:00:38.596 DEBUG [18562]: Connecting to database... -- 00:00:38.596 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:00:38.596 SQL [18562]: pgsql_db_connect() -- 00:00:38.600 DEBUG [18562]: Database connection successful -- 00:00:38.600 INFO [18562]: _SERVER found -- 00:00:38.600 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 00:00:38.600 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 00:00:38.600 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=slrb9c67nch3u94vltjsg4sie2rsvc73 -- 00:00:38.600 INFO [18562]: QUERY_STRING = /member/page -- 00:00:38.600 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:00:38.639 INFO [18562]: COREGRADE is stopping... -- 00:00:38.639 DEBUG [18562]: Closing database connection -- 00:00:38.639 SQL [18562]: pgsql_close() -- 01:49:52.034 INFO [18604]: COREGRADE is starting... -- 01:49:52.034 INFO [18604]: Version from config: 1.0 -- 01:49:52.034 DEBUG [18604]: Connecting to database... -- 01:49:52.034 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:49:52.034 SQL [18604]: pgsql_db_connect() -- 01:49:52.040 DEBUG [18604]: Database connection successful -- 01:49:52.040 INFO [18604]: _SERVER found -- 01:49:52.040 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 01:49:52.040 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 01:49:52.040 INFO [18604]: QUERY_STRING = -- 01:49:52.040 INFO [18604]: HTTP_X_FORWARDED_FOR = 209.17.96.98 -- 01:49:52.078 INFO [18604]: COREGRADE is stopping... -- 01:49:52.078 DEBUG [18604]: Closing database connection -- 01:49:52.078 SQL [18604]: pgsql_close() -- 01:54:14.201 INFO [18600]: COREGRADE is starting... -- 01:54:14.201 INFO [18600]: Version from config: 1.0 -- 01:54:14.201 DEBUG [18600]: Connecting to database... -- 01:54:14.201 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:54:14.201 SQL [18600]: pgsql_db_connect() -- 01:54:14.206 DEBUG [18600]: Database connection successful -- 01:54:14.206 INFO [18600]: _SERVER found -- 01:54:14.206 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 01:54:14.206 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 01:54:14.206 INFO [18600]: QUERY_STRING = /TP/public/index.php -- 01:54:14.206 INFO [18600]: HTTP_X_FORWARDED_FOR = 120.132.7.61 -- 01:54:14.219 INFO [18600]: COREGRADE is stopping... -- 01:54:14.219 DEBUG [18600]: Closing database connection -- 01:54:14.219 SQL [18600]: pgsql_close() -- 01:54:16.777 INFO [18563]: COREGRADE is starting... -- 01:54:16.777 INFO [18563]: Version from config: 1.0 -- 01:54:16.777 DEBUG [18563]: Connecting to database... -- 01:54:16.778 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:54:16.778 SQL [18563]: pgsql_db_connect() -- 01:54:16.782 DEBUG [18563]: Database connection successful -- 01:54:16.782 INFO [18563]: _SERVER found -- 01:54:16.782 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 01:54:16.782 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 01:54:16.782 INFO [18563]: QUERY_STRING = /TP/index.php -- 01:54:16.782 INFO [18563]: HTTP_X_FORWARDED_FOR = 120.132.7.61 -- 01:54:16.794 INFO [18563]: COREGRADE is stopping... -- 01:54:16.794 DEBUG [18563]: Closing database connection -- 01:54:16.794 SQL [18563]: pgsql_close() -- 01:54:18.446 INFO [18563]: COREGRADE is starting... -- 01:54:18.447 INFO [18563]: Version from config: 1.0 -- 01:54:18.447 DEBUG [18563]: Connecting to database... -- 01:54:18.447 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:54:18.447 SQL [18563]: pgsql_db_connect() -- 01:54:18.451 DEBUG [18563]: Database connection successful -- 01:54:18.451 INFO [18563]: _SERVER found -- 01:54:18.451 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 01:54:18.451 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 01:54:18.451 INFO [18563]: QUERY_STRING = /thinkphp/html/public/index.php -- 01:54:18.451 INFO [18563]: HTTP_X_FORWARDED_FOR = 120.132.7.61 -- 01:54:18.462 INFO [18563]: COREGRADE is stopping... -- 01:54:18.462 DEBUG [18563]: Closing database connection -- 01:54:18.462 SQL [18563]: pgsql_close() -- 01:54:19.820 INFO [18563]: COREGRADE is starting... -- 01:54:19.820 INFO [18563]: Version from config: 1.0 -- 01:54:19.820 DEBUG [18563]: Connecting to database... -- 01:54:19.820 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:54:19.820 SQL [18563]: pgsql_db_connect() -- 01:54:19.825 DEBUG [18563]: Database connection successful -- 01:54:19.825 INFO [18563]: _SERVER found -- 01:54:19.825 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 01:54:19.825 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 01:54:19.825 INFO [18563]: QUERY_STRING = /html/public/index.php -- 01:54:19.825 INFO [18563]: HTTP_X_FORWARDED_FOR = 120.132.7.61 -- 01:54:19.836 INFO [18563]: COREGRADE is stopping... -- 01:54:19.836 DEBUG [18563]: Closing database connection -- 01:54:19.836 SQL [18563]: pgsql_close() -- 01:54:21.630 INFO [18563]: COREGRADE is starting... -- 01:54:21.631 INFO [18563]: Version from config: 1.0 -- 01:54:21.631 DEBUG [18563]: Connecting to database... -- 01:54:21.631 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:54:21.631 SQL [18563]: pgsql_db_connect() -- 01:54:21.635 DEBUG [18563]: Database connection successful -- 01:54:21.635 INFO [18563]: _SERVER found -- 01:54:21.635 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 01:54:21.635 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 01:54:21.635 INFO [18563]: QUERY_STRING = /public/index.php -- 01:54:21.635 INFO [18563]: HTTP_X_FORWARDED_FOR = 120.132.7.61 -- 01:54:21.646 INFO [18563]: COREGRADE is stopping... -- 01:54:21.646 DEBUG [18563]: Closing database connection -- 01:54:21.646 SQL [18563]: pgsql_close() -- 01:54:24.486 INFO [18563]: COREGRADE is starting... -- 01:54:24.486 INFO [18563]: Version from config: 1.0 -- 01:54:24.486 DEBUG [18563]: Connecting to database... -- 01:54:24.486 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:54:24.486 SQL [18563]: pgsql_db_connect() -- 01:54:24.490 DEBUG [18563]: Database connection successful -- 01:54:24.490 INFO [18563]: _SERVER found -- 01:54:24.490 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 01:54:24.490 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 01:54:24.490 INFO [18563]: QUERY_STRING = /TP/html/public/index.php -- 01:54:24.490 INFO [18563]: HTTP_X_FORWARDED_FOR = 120.132.7.61 -- 01:54:24.502 INFO [18563]: COREGRADE is stopping... -- 01:54:24.502 DEBUG [18563]: Closing database connection -- 01:54:24.502 SQL [18563]: pgsql_close() -- 01:54:33.540 INFO [20641]: COREGRADE is starting... -- 01:54:33.541 INFO [20641]: Version from config: 1.0 -- 01:54:33.541 DEBUG [20641]: Connecting to database... -- 01:54:33.541 DEBUG [20641]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:54:33.541 SQL [20641]: pgsql_db_connect() -- 01:54:33.545 DEBUG [20641]: Database connection successful -- 01:54:33.545 INFO [20641]: _SERVER found -- 01:54:33.545 INFO [20641]: REMOTE_ADDR = 192.168.1.13 -- 01:54:33.545 INFO [20641]: SERVER_NAME = oameye.works.coregrade.com -- 01:54:33.545 INFO [20641]: QUERY_STRING = -- 01:54:33.545 INFO [20641]: HTTP_X_FORWARDED_FOR = 120.132.7.61 -- 01:54:33.585 INFO [20641]: COREGRADE is stopping... -- 01:54:33.585 DEBUG [20641]: Closing database connection -- 01:54:33.585 SQL [20641]: pgsql_close() -- 02:33:56.128 INFO [18561]: COREGRADE is starting... -- 02:33:56.129 INFO [18561]: Version from config: 1.0 -- 02:33:56.129 DEBUG [18561]: Connecting to database... -- 02:33:56.129 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:33:56.129 SQL [18561]: pgsql_db_connect() -- 02:33:56.133 DEBUG [18561]: Database connection successful -- 02:33:56.133 INFO [18561]: _SERVER found -- 02:33:56.133 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 02:33:56.133 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 02:33:56.133 INFO [18561]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 02:33:56.133 INFO [18561]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 02:33:56.147 INFO [18561]: COREGRADE is stopping... -- 02:33:56.147 DEBUG [18561]: Closing database connection -- 02:33:56.147 SQL [18561]: pgsql_close() -- 02:38:53.856 INFO [19781]: COREGRADE is starting... -- 02:38:53.856 INFO [19781]: Version from config: 1.0 -- 02:38:53.856 DEBUG [19781]: Connecting to database... -- 02:38:53.856 DEBUG [19781]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:38:53.856 SQL [19781]: pgsql_db_connect() -- 02:38:53.860 DEBUG [19781]: Database connection successful -- 02:38:53.860 INFO [19781]: _SERVER found -- 02:38:53.860 INFO [19781]: REMOTE_ADDR = 192.168.1.13 -- 02:38:53.860 INFO [19781]: SERVER_NAME = oameye.works.coregrade.com -- 02:38:53.860 INFO [19781]: QUERY_STRING = /solr/admin/info/system -- 02:38:53.860 INFO [19781]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 02:38:53.874 INFO [19781]: COREGRADE is stopping... -- 02:38:53.874 DEBUG [19781]: Closing database connection -- 02:38:53.874 SQL [19781]: pgsql_close() -- 02:42:31.693 INFO [18602]: COREGRADE is starting... -- 02:42:31.693 INFO [18602]: Version from config: 1.0 -- 02:42:31.693 DEBUG [18602]: Connecting to database... -- 02:42:31.693 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:42:31.693 SQL [18602]: pgsql_db_connect() -- 02:42:31.697 DEBUG [18602]: Database connection successful -- 02:42:31.697 INFO [18602]: _SERVER found -- 02:42:31.697 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 02:42:31.697 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 02:42:31.697 INFO [18602]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 02:42:31.697 INFO [18602]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 02:42:31.738 INFO [18602]: COREGRADE is stopping... -- 02:42:31.738 DEBUG [18602]: Closing database connection -- 02:42:31.738 SQL [18602]: pgsql_close() -- 02:48:01.926 INFO [19761]: COREGRADE is starting... -- 02:48:01.926 INFO [19761]: Version from config: 1.0 -- 02:48:01.926 DEBUG [19761]: Connecting to database... -- 02:48:01.926 DEBUG [19761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:01.926 SQL [19761]: pgsql_db_connect() -- 02:48:01.931 DEBUG [19761]: Database connection successful -- 02:48:01.931 INFO [19761]: _SERVER found -- 02:48:01.931 INFO [19761]: REMOTE_ADDR = 192.168.1.13 -- 02:48:01.931 INFO [19761]: SERVER_NAME = oameye.works.coregrade.com -- 02:48:01.931 INFO [19761]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 02:48:01.931 INFO [19761]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 02:48:01.972 INFO [19761]: COREGRADE is stopping... -- 02:48:01.972 DEBUG [19761]: Closing database connection -- 02:48:01.972 SQL [19761]: pgsql_close() -- 02:50:50.936 INFO [20128]: COREGRADE is starting... -- 02:50:50.936 INFO [20128]: Version from config: 1.0 -- 02:50:50.936 DEBUG [20128]: Connecting to database... -- 02:50:50.936 DEBUG [20128]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:50:50.937 SQL [20128]: pgsql_db_connect() -- 02:50:50.941 DEBUG [20128]: Database connection successful -- 02:50:50.941 INFO [20128]: _SERVER found -- 02:50:50.941 INFO [20128]: REMOTE_ADDR = 192.168.1.13 -- 02:50:50.941 INFO [20128]: SERVER_NAME = oameye.works.coregrade.com -- 02:50:50.941 INFO [20128]: QUERY_STRING = /.well-known/acme-challenge/r4YFaKpZB8Onbr8ohlljok9HTbzFC2pFmbsj5r0Xoyg -- 02:50:50.941 INFO [20128]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 02:50:50.954 INFO [20128]: COREGRADE is stopping... -- 02:50:50.954 DEBUG [20128]: Closing database connection -- 02:50:50.954 SQL [20128]: pgsql_close() -- 02:50:51.166 INFO [20128]: COREGRADE is starting... -- 02:50:51.166 INFO [20128]: Version from config: 1.0 -- 02:50:51.166 DEBUG [20128]: Connecting to database... -- 02:50:51.166 DEBUG [20128]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:50:51.166 SQL [20128]: pgsql_db_connect() -- 02:50:51.175 INFO [18600]: COREGRADE is starting... -- 02:50:51.175 INFO [18600]: Version from config: 1.0 -- 02:50:51.175 DEBUG [18600]: Connecting to database... -- 02:50:51.175 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:50:51.175 SQL [18600]: pgsql_db_connect() -- 02:50:51.171 DEBUG [20128]: Database connection successful -- 02:50:51.171 INFO [20128]: _SERVER found -- 02:50:51.171 INFO [20128]: REMOTE_ADDR = 192.168.1.13 -- 02:50:51.171 INFO [20128]: SERVER_NAME = oameye.works.coregrade.com -- 02:50:51.171 INFO [20128]: QUERY_STRING = /.well-known/acme-challenge/r4YFaKpZB8Onbr8ohlljok9HTbzFC2pFmbsj5r0Xoyg -- 02:50:51.171 INFO [20128]: HTTP_X_FORWARDED_FOR = 52.28.236.88 -- 02:50:51.182 INFO [20128]: COREGRADE is stopping... -- 02:50:51.182 DEBUG [20128]: Closing database connection -- 02:50:51.182 SQL [20128]: pgsql_close() -- 02:50:51.188 INFO [18563]: COREGRADE is starting... -- 02:50:51.188 INFO [18563]: Version from config: 1.0 -- 02:50:51.188 DEBUG [18563]: Connecting to database... -- 02:50:51.188 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:50:51.188 SQL [18563]: pgsql_db_connect() -- 02:50:51.181 DEBUG [18600]: Database connection successful -- 02:50:51.181 INFO [18600]: _SERVER found -- 02:50:51.181 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 02:50:51.181 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 02:50:51.181 INFO [18600]: QUERY_STRING = /.well-known/acme-challenge/r4YFaKpZB8Onbr8ohlljok9HTbzFC2pFmbsj5r0Xoyg -- 02:50:51.181 INFO [18600]: HTTP_X_FORWARDED_FOR = 34.222.229.130 -- 02:50:51.195 INFO [18600]: COREGRADE is stopping... -- 02:50:51.195 DEBUG [18600]: Closing database connection -- 02:50:51.195 SQL [18600]: pgsql_close() -- 02:50:51.192 DEBUG [18563]: Database connection successful -- 02:50:51.192 INFO [18563]: _SERVER found -- 02:50:51.192 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 02:50:51.192 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 02:50:51.192 INFO [18563]: QUERY_STRING = /.well-known/acme-challenge/r4YFaKpZB8Onbr8ohlljok9HTbzFC2pFmbsj5r0Xoyg -- 02:50:51.192 INFO [18563]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 02:50:51.205 INFO [18563]: COREGRADE is stopping... -- 02:50:51.205 DEBUG [18563]: Closing database connection -- 02:50:51.205 SQL [18563]: pgsql_close() -- 03:02:58.704 INFO [20641]: COREGRADE is starting... -- 03:02:58.705 INFO [20641]: Version from config: 1.0 -- 03:02:58.705 DEBUG [20641]: Connecting to database... -- 03:02:58.705 DEBUG [20641]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:02:58.705 SQL [20641]: pgsql_db_connect() -- 03:02:58.709 DEBUG [20641]: Database connection successful -- 03:02:58.709 INFO [20641]: _SERVER found -- 03:02:58.709 INFO [20641]: REMOTE_ADDR = 192.168.1.13 -- 03:02:58.709 INFO [20641]: SERVER_NAME = oameye.works.coregrade.com -- 03:02:58.709 INFO [20641]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 03:02:58.709 INFO [20641]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 03:02:58.744 INFO [20641]: COREGRADE is stopping... -- 03:02:58.744 DEBUG [20641]: Closing database connection -- 03:02:58.744 SQL [20641]: pgsql_close() -- 06:40:56.639 INFO [18561]: COREGRADE is starting... -- 06:40:56.639 INFO [18561]: Version from config: 1.0 -- 06:40:56.639 DEBUG [18561]: Connecting to database... -- 06:40:56.639 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:40:56.639 SQL [18561]: pgsql_db_connect() -- 06:40:56.644 DEBUG [18561]: Database connection successful -- 06:40:56.644 INFO [18561]: _SERVER found -- 06:40:56.644 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 06:40:56.644 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 06:40:56.644 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251 -- 06:40:56.644 INFO [18561]: QUERY_STRING = /auth -- 06:40:56.644 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:40:56.684 INFO [18561]: COREGRADE is stopping... -- 06:40:56.684 DEBUG [18561]: Closing database connection -- 06:40:56.684 SQL [18561]: pgsql_close() -- 06:40:56.847 INFO [18561]: COREGRADE is starting... -- 06:40:56.847 INFO [18561]: Version from config: 1.0 -- 06:40:56.847 DEBUG [18561]: Connecting to database... -- 06:40:56.847 DEBUG [18561]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:40:56.847 SQL [18561]: pgsql_db_connect() -- 06:40:56.851 DEBUG [18561]: Database connection successful -- 06:40:56.851 INFO [18561]: _SERVER found -- 06:40:56.851 INFO [18561]: REMOTE_ADDR = 192.168.1.13 -- 06:40:56.851 INFO [18561]: SERVER_NAME = oameye.works.coregrade.com -- 06:40:56.851 INFO [18561]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=8k92a5peftsv3k2fmm3n5raov47fr18l -- 06:40:56.851 INFO [18561]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 06:40:56.851 INFO [18561]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:40:56.863 INFO [18561]: COREGRADE is stopping... -- 06:40:56.863 DEBUG [18561]: Closing database connection -- 06:40:56.863 SQL [18561]: pgsql_close() -- 06:53:02.513 INFO [19781]: COREGRADE is starting... -- 06:53:02.513 INFO [19781]: Version from config: 1.0 -- 06:53:02.513 DEBUG [19781]: Connecting to database... -- 06:53:02.513 DEBUG [19781]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:53:02.513 SQL [19781]: pgsql_db_connect() -- 06:53:02.554 INFO [19781]: COREGRADE is starting... -- 06:53:02.554 INFO [19781]: Version from config: 1.0 -- 06:53:02.554 DEBUG [19781]: Connecting to database... -- 06:53:02.554 DEBUG [19781]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:53:02.554 SQL [19781]: pgsql_db_connect() -- 06:53:02.558 DEBUG [19781]: Database connection successful -- 06:53:02.558 INFO [19781]: _SERVER found -- 06:53:02.558 INFO [19781]: REMOTE_ADDR = 192.168.1.13 -- 06:53:02.558 INFO [19781]: SERVER_NAME = oameye.works.coregrade.com -- 06:53:02.558 INFO [19781]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=8k92a5peftsv3k2fmm3n5raov47fr18l -- 06:53:02.558 INFO [19781]: QUERY_STRING = -- 06:53:02.558 INFO [19781]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:53:02.558 INFO [19781]: SystemStatus()09-09-********~************ -- 06:53:02.558 INFO [19781]: long coregrade_api_main(CVars in, CVars &out) -- 06:53:02.558 INFO [19781]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 06:53:02.558 INFO [19781]: account calls -- 06:53:02.558 INFO [19781]: account_calls() -- 06:53:02.558 INFO [19781]: LoginCoreGradeAccount() -- 06:53:02.558 FLOG_MAX [19781]: REQ_STRING(username) -- 06:53:02.559 FLOG_MAX [19781]: REQ_STRING(password) -- 06:53:02.559 FLOG_MAX [19781]: REQ_STRING(sessionid) -- 06:53:02.559 FLOG_MAX [19781]: long load_db_record( CVars &rec, const char * query, ... ) -- 06:53:02.559 SQL [19781]: pgsql_query() -- 06:53:02.559 SQL [19781]: About to run query: -- 06:53:02.559 SQL [19781]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 06:53:02.563 SQL [19781]: Found rows: 1 -- 06:53:02.563 FLOG_MAX [19781]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 06:53:02.563 INFO [19781]: long SessionCheck(long uid, const char *sessionid, int create ) -- 06:53:02.563 SQL [19781]: pgsql_exec() -- 06:53:02.563 SQL [19781]: About to run query: -- 06:53:02.563 SQL [19781]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 06:53:02.564 SQL [19781]: PQcmdTuples: 1 -- 06:53:02.564 SQL [19781]: Affected rows: 1 -- 06:53:02.564 SQL [19781]: pgsql_exec() -- 06:53:02.565 SQL [19781]: About to run query: -- 06:53:02.565 SQL [19781]: DELETE FROM members_session WHERE member_id=5 -- 06:53:02.565 SQL [19781]: PQcmdTuples: 0 -- 06:53:02.565 SQL [19781]: Affected rows: 0 -- 06:53:02.565 SQL [19781]: pgsql_query() -- 06:53:02.565 SQL [19781]: About to run query: -- 06:53:02.565 SQL [19781]: SELECT * FROM members_session WHERE member_id=5 AND session<>'FD1734D3A74E3C348291F04B78EBCE52' -- 06:53:02.566 SQL [19781]: Found rows: 0 -- 06:53:02.566 SQL [19781]: Found rows: 0 -- 06:53:02.566 FLOG_MAX [19781]: long load_db_record( CVars &rec, const char * query, ... ) -- 06:53:02.566 SQL [19781]: pgsql_query() -- 06:53:02.566 SQL [19781]: About to run query: -- 06:53:02.566 SQL [19781]: SELECT * FROM members_session WHERE member_id=5 AND session='FD1734D3A74E3C348291F04B78EBCE52' -- 06:53:02.566 SQL [19781]: Found rows: 0 -- 06:53:02.566 SQL [19781]: Found rows: 0 -- 06:53:02.566 FLOG_MAX [19781]: insert_db_record() -- 06:53:02.566 SQL [19781]: pgsql_exec() -- 06:53:02.566 SQL [19781]: About to run query: -- 06:53:02.566 SQL [19781]: INSERT INTO members_session (member_id,session) VALUES ('5','FD1734D3A74E3C348291F04B78EBCE52') -- 06:53:02.568 SQL [19781]: PQcmdTuples: 1 -- 06:53:02.568 SQL [19781]: Affected rows: 1 -- 06:53:02.568 FLOG_MAX [19781]: SELECT currval('members_session_id_seq') -- 06:53:02.568 SQL [19781]: pgsql_query() -- 06:53:02.568 SQL [19781]: About to run query: -- 06:53:02.568 SQL [19781]: SELECT currval('members_session_id_seq') -- 06:53:02.568 SQL [19781]: Found rows: 1 -- 06:53:02.568 INFO [19781]: CreateDefaultPage() -- 06:53:02.568 FLOG_MAX [19781]: long load_db_record( CVars &rec, const char * query, ... ) -- 06:53:02.568 SQL [19781]: pgsql_query() -- 06:53:02.568 SQL [19781]: About to run query: -- 06:53:02.568 SQL [19781]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 06:53:02.569 SQL [19781]: Found rows: 1 -- 06:53:02.569 FLOG_MAX [19781]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 06:53:02.569 SQL [19781]: pgsql_query() -- 06:53:02.569 SQL [19781]: About to run query: -- 06:53:02.569 SQL [19781]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 06:53:02.569 SQL [19781]: Found rows: 1 -- 06:53:02.569 INFO [19781]: /CreateDefaultPage() -- 06:53:02.569 INFO [19781]: /LoginCoreGradeAccount() -- 06:53:02.569 INFO [19781]: RET: added=2020-02-05 06:47:23.982154 -- 06:53:02.569 INFO [19781]: RET: email=ameye+11@chiefsoft.com -- 06:53:02.569 INFO [19781]: RET: firstname=Olu -- 06:53:02.569 INFO [19781]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 06:53:02.569 INFO [19781]: RET: id=5 -- 06:53:02.569 INFO [19781]: RET: last_login= -- 06:53:02.569 INFO [19781]: RET: lastname=Amey -- 06:53:02.569 INFO [19781]: RET: loc=192.168.1.13 -- 06:53:02.569 INFO [19781]: RET: member_id=5 -- 06:53:02.569 INFO [19781]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 06:53:02.569 INFO [19781]: RET: phone= -- 06:53:02.569 INFO [19781]: RET: pid= -- 06:53:02.569 INFO [19781]: RET: result=YES I GET TO BACK END -- 06:53:02.569 INFO [19781]: RET: sessionid=FD1734D3A74E3C348291F04B78EBCE52 -- 06:53:02.569 INFO [19781]: RET: status=1 -- 06:53:02.569 INFO [19781]: RET: stauts=OK -- 06:53:02.569 INFO [19781]: RET: username=ameye+11@chiefsoft.com -- 06:53:02.569 INFO [19781]: RET: verified= -- 06:53:02.571 INFO [19781]: COREGRADE is stopping... -- 06:53:02.571 DEBUG [19781]: Closing database connection -- 06:53:02.571 SQL [19781]: pgsql_close() -- 06:53:02.518 DEBUG [19781]: Database connection successful -- 06:53:02.518 INFO [19781]: _SERVER found -- 06:53:02.518 INFO [19781]: REMOTE_ADDR = 192.168.1.13 -- 06:53:02.518 INFO [19781]: SERVER_NAME = oameye.works.coregrade.com -- 06:53:02.518 INFO [19781]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=8k92a5peftsv3k2fmm3n5raov47fr18l -- 06:53:02.518 INFO [19781]: QUERY_STRING = /auth -- 06:53:02.518 INFO [19781]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:53:02.571 INFO [19781]: COREGRADE is stopping... -- 06:53:02.571 DEBUG [19781]: Closing database connection -- 06:53:02.571 SQL [19781]: pgsql_close() -- 06:53:02.590 INFO [19781]: COREGRADE is starting... -- 06:53:02.590 INFO [19781]: Version from config: 1.0 -- 06:53:02.590 DEBUG [19781]: Connecting to database... -- 06:53:02.590 DEBUG [19781]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:53:02.590 SQL [19781]: pgsql_db_connect() -- 06:53:02.594 DEBUG [19781]: Database connection successful -- 06:53:02.594 INFO [19781]: _SERVER found -- 06:53:02.594 INFO [19781]: REMOTE_ADDR = 192.168.1.13 -- 06:53:02.594 INFO [19781]: SERVER_NAME = oameye.works.coregrade.com -- 06:53:02.594 INFO [19781]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=dhsjp6455pnf0lmr2pq39h82p02f64ds -- 06:53:02.594 INFO [19781]: QUERY_STRING = /member/index -- 06:53:02.594 INFO [19781]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:53:02.636 INFO [19781]: COREGRADE is stopping... -- 06:53:02.636 DEBUG [19781]: Closing database connection -- 06:53:02.636 SQL [19781]: pgsql_close() -- 06:53:02.922 INFO [19781]: COREGRADE is starting... -- 06:53:02.923 INFO [19781]: Version from config: 1.0 -- 06:53:02.923 DEBUG [19781]: Connecting to database... -- 06:53:02.923 DEBUG [19781]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:53:02.923 SQL [19781]: pgsql_db_connect() -- 06:53:02.927 DEBUG [19781]: Database connection successful -- 06:53:02.927 INFO [19781]: _SERVER found -- 06:53:02.927 INFO [19781]: REMOTE_ADDR = 192.168.1.13 -- 06:53:02.927 INFO [19781]: SERVER_NAME = oameye.works.coregrade.com -- 06:53:02.927 INFO [19781]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=dhsjp6455pnf0lmr2pq39h82p02f64ds -- 06:53:02.927 INFO [19781]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 06:53:02.927 INFO [19781]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:53:02.938 INFO [19781]: COREGRADE is stopping... -- 06:53:02.938 DEBUG [19781]: Closing database connection -- 06:53:02.938 SQL [19781]: pgsql_close() -- 06:53:05.050 INFO [19781]: COREGRADE is starting... -- 06:53:05.051 INFO [19781]: Version from config: 1.0 -- 06:53:05.051 DEBUG [19781]: Connecting to database... -- 06:53:05.051 DEBUG [19781]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:53:05.051 SQL [19781]: pgsql_db_connect() -- 06:53:05.055 DEBUG [19781]: Database connection successful -- 06:53:05.055 INFO [19781]: _SERVER found -- 06:53:05.055 INFO [19781]: REMOTE_ADDR = 192.168.1.13 -- 06:53:05.055 INFO [19781]: SERVER_NAME = oameye.works.coregrade.com -- 06:53:05.055 INFO [19781]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=dhsjp6455pnf0lmr2pq39h82p02f64ds -- 06:53:05.055 INFO [19781]: QUERY_STRING = /member/page -- 06:53:05.055 INFO [19781]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:53:05.098 INFO [19781]: COREGRADE is stopping... -- 06:53:05.098 DEBUG [19781]: Closing database connection -- 06:53:05.098 SQL [19781]: pgsql_close() -- 06:53:05.218 INFO [19781]: COREGRADE is starting... -- 06:53:05.219 INFO [19781]: Version from config: 1.0 -- 06:53:05.219 DEBUG [19781]: Connecting to database... -- 06:53:05.219 DEBUG [19781]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:53:05.219 SQL [19781]: pgsql_db_connect() -- 06:53:05.223 DEBUG [19781]: Database connection successful -- 06:53:05.223 INFO [19781]: _SERVER found -- 06:53:05.223 INFO [19781]: REMOTE_ADDR = 192.168.1.13 -- 06:53:05.223 INFO [19781]: SERVER_NAME = oameye.works.coregrade.com -- 06:53:05.223 INFO [19781]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=dhsjp6455pnf0lmr2pq39h82p02f64ds -- 06:53:05.223 INFO [19781]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 06:53:05.223 INFO [19781]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:53:05.234 INFO [19781]: COREGRADE is stopping... -- 06:53:05.234 DEBUG [19781]: Closing database connection -- 06:53:05.234 SQL [19781]: pgsql_close() -- 06:53:11.913 INFO [18602]: COREGRADE is starting... -- 06:53:11.914 INFO [18602]: Version from config: 1.0 -- 06:53:11.914 DEBUG [18602]: Connecting to database... -- 06:53:11.914 DEBUG [18602]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:53:11.914 SQL [18602]: pgsql_db_connect() -- 06:53:11.918 DEBUG [18602]: Database connection successful -- 06:53:11.918 INFO [18602]: _SERVER found -- 06:53:11.918 INFO [18602]: REMOTE_ADDR = 192.168.1.13 -- 06:53:11.918 INFO [18602]: SERVER_NAME = oameye.works.coregrade.com -- 06:53:11.918 INFO [18602]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=dhsjp6455pnf0lmr2pq39h82p02f64ds -- 06:53:11.918 INFO [18602]: QUERY_STRING = /member/viewCardAddAction -- 06:53:11.918 INFO [18602]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:53:11.952 INFO [18602]: COREGRADE is stopping... -- 06:53:11.952 DEBUG [18602]: Closing database connection -- 06:53:11.952 SQL [18602]: pgsql_close() -- 06:53:18.465 INFO [19761]: COREGRADE is starting... -- 06:53:18.465 INFO [19761]: Version from config: 1.0 -- 06:53:18.465 DEBUG [19761]: Connecting to database... -- 06:53:18.465 DEBUG [19761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:53:18.465 SQL [19761]: pgsql_db_connect() -- 06:53:18.469 DEBUG [19761]: Database connection successful -- 06:53:18.469 INFO [19761]: _SERVER found -- 06:53:18.469 INFO [19761]: REMOTE_ADDR = 192.168.1.13 -- 06:53:18.469 INFO [19761]: SERVER_NAME = oameye.works.coregrade.com -- 06:53:18.469 INFO [19761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=dhsjp6455pnf0lmr2pq39h82p02f64ds -- 06:53:18.469 INFO [19761]: QUERY_STRING = /member/page -- 06:53:18.469 INFO [19761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:53:18.513 INFO [19761]: COREGRADE is stopping... -- 06:53:18.513 DEBUG [19761]: Closing database connection -- 06:53:18.513 SQL [19761]: pgsql_close() -- 06:53:18.764 INFO [18562]: COREGRADE is starting... -- 06:53:18.765 INFO [18562]: Version from config: 1.0 -- 06:53:18.765 DEBUG [18562]: Connecting to database... -- 06:53:18.765 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:53:18.765 SQL [18562]: pgsql_db_connect() -- 06:53:18.769 DEBUG [18562]: Database connection successful -- 06:53:18.769 INFO [18562]: _SERVER found -- 06:53:18.769 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 06:53:18.769 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 06:53:18.769 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=dhsjp6455pnf0lmr2pq39h82p02f64ds -- 06:53:18.769 INFO [18562]: QUERY_STRING = /member/page -- 06:53:18.769 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:53:18.811 INFO [18562]: COREGRADE is stopping... -- 06:53:18.811 DEBUG [18562]: Closing database connection -- 06:53:18.811 SQL [18562]: pgsql_close() -- 06:53:18.951 INFO [19761]: COREGRADE is starting... -- 06:53:18.952 INFO [19761]: Version from config: 1.0 -- 06:53:18.952 DEBUG [19761]: Connecting to database... -- 06:53:18.952 DEBUG [19761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:53:18.952 SQL [19761]: pgsql_db_connect() -- 06:53:18.956 DEBUG [19761]: Database connection successful -- 06:53:18.956 INFO [19761]: _SERVER found -- 06:53:18.956 INFO [19761]: REMOTE_ADDR = 192.168.1.13 -- 06:53:18.956 INFO [19761]: SERVER_NAME = oameye.works.coregrade.com -- 06:53:18.956 INFO [19761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=dhsjp6455pnf0lmr2pq39h82p02f64ds -- 06:53:18.956 INFO [19761]: QUERY_STRING = /member/page -- 06:53:18.956 INFO [19761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:53:18.996 INFO [19761]: COREGRADE is stopping... -- 06:53:18.996 DEBUG [19761]: Closing database connection -- 06:53:18.996 SQL [19761]: pgsql_close() -- 06:53:19.351 INFO [18562]: COREGRADE is starting... -- 06:53:19.351 INFO [18562]: Version from config: 1.0 -- 06:53:19.351 DEBUG [18562]: Connecting to database... -- 06:53:19.351 DEBUG [18562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:53:19.351 SQL [18562]: pgsql_db_connect() -- 06:53:19.355 DEBUG [18562]: Database connection successful -- 06:53:19.355 INFO [18562]: _SERVER found -- 06:53:19.355 INFO [18562]: REMOTE_ADDR = 192.168.1.13 -- 06:53:19.355 INFO [18562]: SERVER_NAME = oameye.works.coregrade.com -- 06:53:19.355 INFO [18562]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=dhsjp6455pnf0lmr2pq39h82p02f64ds -- 06:53:19.355 INFO [18562]: QUERY_STRING = /member/page -- 06:53:19.355 INFO [18562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:53:19.395 INFO [18562]: COREGRADE is stopping... -- 06:53:19.395 DEBUG [18562]: Closing database connection -- 06:53:19.395 SQL [18562]: pgsql_close() -- 06:53:19.789 INFO [19761]: COREGRADE is starting... -- 06:53:19.790 INFO [19761]: Version from config: 1.0 -- 06:53:19.790 DEBUG [19761]: Connecting to database... -- 06:53:19.790 DEBUG [19761]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:53:19.790 SQL [19761]: pgsql_db_connect() -- 06:53:19.794 DEBUG [19761]: Database connection successful -- 06:53:19.794 INFO [19761]: _SERVER found -- 06:53:19.794 INFO [19761]: REMOTE_ADDR = 192.168.1.13 -- 06:53:19.794 INFO [19761]: SERVER_NAME = oameye.works.coregrade.com -- 06:53:19.794 INFO [19761]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=dhsjp6455pnf0lmr2pq39h82p02f64ds -- 06:53:19.794 INFO [19761]: QUERY_STRING = /member/page -- 06:53:19.794 INFO [19761]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:53:19.834 INFO [19761]: COREGRADE is stopping... -- 06:53:19.834 DEBUG [19761]: Closing database connection -- 06:53:19.834 SQL [19761]: pgsql_close() -- 08:39:03.865 INFO [18600]: COREGRADE is starting... -- 08:39:03.866 INFO [18600]: Version from config: 1.0 -- 08:39:03.866 DEBUG [18600]: Connecting to database... -- 08:39:03.866 DEBUG [18600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:39:03.866 SQL [18600]: pgsql_db_connect() -- 08:39:03.870 DEBUG [18600]: Database connection successful -- 08:39:03.870 INFO [18600]: _SERVER found -- 08:39:03.870 INFO [18600]: REMOTE_ADDR = 192.168.1.13 -- 08:39:03.870 INFO [18600]: SERVER_NAME = oameye.works.coregrade.com -- 08:39:03.870 INFO [18600]: QUERY_STRING = -- 08:39:03.870 INFO [18600]: HTTP_X_FORWARDED_FOR = 63.33.66.92 -- 08:39:03.914 INFO [18600]: COREGRADE is stopping... -- 08:39:03.914 DEBUG [18600]: Closing database connection -- 08:39:03.914 SQL [18600]: pgsql_close() -- 08:58:36.718 INFO [18563]: COREGRADE is starting... -- 08:58:36.719 INFO [18563]: Version from config: 1.0 -- 08:58:36.719 DEBUG [18563]: Connecting to database... -- 08:58:36.719 DEBUG [18563]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:58:36.719 SQL [18563]: pgsql_db_connect() -- 08:58:36.724 DEBUG [18563]: Database connection successful -- 08:58:36.724 INFO [18563]: _SERVER found -- 08:58:36.724 INFO [18563]: REMOTE_ADDR = 192.168.1.13 -- 08:58:36.724 INFO [18563]: SERVER_NAME = oameye.works.coregrade.com -- 08:58:36.724 INFO [18563]: QUERY_STRING = -- 08:58:36.724 INFO [18563]: HTTP_X_FORWARDED_FOR = 128.14.209.234 -- 08:58:36.766 INFO [18563]: COREGRADE is stopping... -- 08:58:36.766 DEBUG [18563]: Closing database connection -- 08:58:36.766 SQL [18563]: pgsql_close() -- 09:33:05.363 INFO [18604]: COREGRADE is starting... -- 09:33:05.363 INFO [18604]: Version from config: 1.0 -- 09:33:05.363 DEBUG [18604]: Connecting to database... -- 09:33:05.363 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:33:05.363 SQL [18604]: pgsql_db_connect() -- 09:33:05.367 DEBUG [18604]: Database connection successful -- 09:33:05.367 INFO [18604]: _SERVER found -- 09:33:05.367 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 09:33:05.367 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 09:33:05.367 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251 -- 09:33:05.367 INFO [18604]: QUERY_STRING = /auth -- 09:33:05.367 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:33:05.407 INFO [18604]: COREGRADE is stopping... -- 09:33:05.407 DEBUG [18604]: Closing database connection -- 09:33:05.407 SQL [18604]: pgsql_close() -- 09:33:05.566 INFO [18604]: COREGRADE is starting... -- 09:33:05.567 INFO [18604]: Version from config: 1.0 -- 09:33:05.567 DEBUG [18604]: Connecting to database... -- 09:33:05.567 DEBUG [18604]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:33:05.567 SQL [18604]: pgsql_db_connect() -- 09:33:05.571 DEBUG [18604]: Database connection successful -- 09:33:05.571 INFO [18604]: _SERVER found -- 09:33:05.571 INFO [18604]: REMOTE_ADDR = 192.168.1.13 -- 09:33:05.571 INFO [18604]: SERVER_NAME = oameye.works.coregrade.com -- 09:33:05.571 INFO [18604]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1422369660.1582838251; ci_session=j7o8nv81l1t225u0k3l09k7nqs2scrk2 -- 09:33:05.571 INFO [18604]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 09:33:05.571 INFO [18604]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:33:05.582 INFO [18604]: COREGRADE is stopping... -- 09:33:05.582 DEBUG [18604]: Closing database connection -- 09:33:05.582 SQL [18604]: pgsql_close() -- 14:09:38.799 INFO [2776]: COREGRADE is starting... -- 14:09:38.799 INFO [2776]: Version from config: 1.0 -- 14:09:38.799 DEBUG [2776]: Connecting to database... -- 14:09:38.799 DEBUG [2776]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:09:38.799 SQL [2776]: pgsql_db_connect() -- 14:09:38.805 DEBUG [2776]: Database connection successful -- 14:09:38.805 INFO [2776]: _SERVER found -- 14:09:38.805 INFO [2776]: REMOTE_ADDR = 192.168.1.13 -- 14:09:38.805 INFO [2776]: SERVER_NAME = oameye.works.coregrade.com -- 14:09:38.805 INFO [2776]: QUERY_STRING = /TP/public/index.php -- 14:09:38.805 INFO [2776]: HTTP_X_FORWARDED_FOR = 152.136.61.152 -- 14:09:38.823 INFO [2776]: COREGRADE is stopping... -- 14:09:38.823 DEBUG [2776]: Closing database connection -- 14:09:38.823 SQL [2776]: pgsql_close() -- 14:09:40.562 INFO [2777]: COREGRADE is starting... -- 14:09:40.563 INFO [2777]: Version from config: 1.0 -- 14:09:40.563 DEBUG [2777]: Connecting to database... -- 14:09:40.563 DEBUG [2777]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:09:40.563 SQL [2777]: pgsql_db_connect() -- 14:09:40.568 DEBUG [2777]: Database connection successful -- 14:09:40.568 INFO [2777]: _SERVER found -- 14:09:40.568 INFO [2777]: REMOTE_ADDR = 192.168.1.13 -- 14:09:40.568 INFO [2777]: SERVER_NAME = oameye.works.coregrade.com -- 14:09:40.568 INFO [2777]: QUERY_STRING = /TP/index.php -- 14:09:40.568 INFO [2777]: HTTP_X_FORWARDED_FOR = 152.136.61.152 -- 14:09:40.585 INFO [2777]: COREGRADE is stopping... -- 14:09:40.585 DEBUG [2777]: Closing database connection -- 14:09:40.585 SQL [2777]: pgsql_close() -- 14:09:44.655 INFO [2778]: COREGRADE is starting... -- 14:09:44.655 INFO [2778]: Version from config: 1.0 -- 14:09:44.655 DEBUG [2778]: Connecting to database... -- 14:09:44.655 DEBUG [2778]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:09:44.655 SQL [2778]: pgsql_db_connect() -- 14:09:44.660 DEBUG [2778]: Database connection successful -- 14:09:44.660 INFO [2778]: _SERVER found -- 14:09:44.660 INFO [2778]: REMOTE_ADDR = 192.168.1.13 -- 14:09:44.660 INFO [2778]: SERVER_NAME = oameye.works.coregrade.com -- 14:09:44.660 INFO [2778]: QUERY_STRING = /thinkphp/html/public/index.php -- 14:09:44.660 INFO [2778]: HTTP_X_FORWARDED_FOR = 152.136.61.152 -- 14:09:44.677 INFO [2778]: COREGRADE is stopping... -- 14:09:44.677 DEBUG [2778]: Closing database connection -- 14:09:44.677 SQL [2778]: pgsql_close() -- 14:09:48.051 INFO [2781]: COREGRADE is starting... -- 14:09:48.051 INFO [2781]: Version from config: 1.0 -- 14:09:48.051 DEBUG [2781]: Connecting to database... -- 14:09:48.051 DEBUG [2781]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:09:48.051 SQL [2781]: pgsql_db_connect() -- 14:09:48.056 DEBUG [2781]: Database connection successful -- 14:09:48.056 INFO [2781]: _SERVER found -- 14:09:48.056 INFO [2781]: REMOTE_ADDR = 192.168.1.13 -- 14:09:48.056 INFO [2781]: SERVER_NAME = oameye.works.coregrade.com -- 14:09:48.056 INFO [2781]: QUERY_STRING = -- 14:09:48.056 INFO [2781]: HTTP_X_FORWARDED_FOR = 152.136.61.152 -- 14:09:48.106 INFO [2781]: COREGRADE is stopping... -- 14:09:48.106 DEBUG [2781]: Closing database connection -- 14:09:48.106 SQL [2781]: pgsql_close() -- 19:20:28.570 INFO [2774]: COREGRADE is starting... -- 19:20:28.571 INFO [2774]: Version from config: 1.0 -- 19:20:28.571 DEBUG [2774]: Connecting to database... -- 19:20:28.571 DEBUG [2774]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:28.571 SQL [2774]: pgsql_db_connect() -- 19:20:28.575 DEBUG [2774]: Database connection successful -- 19:20:28.575 INFO [2774]: _SERVER found -- 19:20:28.575 INFO [2774]: REMOTE_ADDR = 192.168.1.13 -- 19:20:28.575 INFO [2774]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:28.575 INFO [2774]: QUERY_STRING = /solr/admin/info/system -- 19:20:28.575 INFO [2774]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 19:20:28.592 INFO [2774]: COREGRADE is stopping... -- 19:20:28.592 DEBUG [2774]: Closing database connection -- 19:20:28.592 SQL [2774]: pgsql_close() -- 19:26:16.227 INFO [2775]: COREGRADE is starting... -- 19:26:16.228 INFO [2775]: Version from config: 1.0 -- 19:26:16.228 DEBUG [2775]: Connecting to database... -- 19:26:16.228 DEBUG [2775]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:26:16.228 SQL [2775]: pgsql_db_connect() -- 19:26:16.232 DEBUG [2775]: Database connection successful -- 19:26:16.232 INFO [2775]: _SERVER found -- 19:26:16.232 INFO [2775]: REMOTE_ADDR = 192.168.1.13 -- 19:26:16.232 INFO [2775]: SERVER_NAME = oameye.works.coregrade.com -- 19:26:16.232 INFO [2775]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 19:26:16.232 INFO [2775]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 19:26:16.281 INFO [2775]: COREGRADE is stopping... -- 19:26:16.281 DEBUG [2775]: Closing database connection -- 19:26:16.281 SQL [2775]: pgsql_close() -- 19:26:17.490 INFO [3362]: COREGRADE is starting... -- 19:26:17.491 INFO [3362]: Version from config: 1.0 -- 19:26:17.491 DEBUG [3362]: Connecting to database... -- 19:26:17.491 DEBUG [3362]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:26:17.491 SQL [3362]: pgsql_db_connect() -- 19:26:17.495 DEBUG [3362]: Database connection successful -- 19:26:17.495 INFO [3362]: _SERVER found -- 19:26:17.495 INFO [3362]: REMOTE_ADDR = 192.168.1.13 -- 19:26:17.495 INFO [3362]: SERVER_NAME = oameye.works.coregrade.com -- 19:26:17.495 INFO [3362]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 19:26:17.495 INFO [3362]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 19:26:17.540 INFO [3362]: COREGRADE is stopping... -- 19:26:17.540 DEBUG [3362]: Closing database connection -- 19:26:17.540 SQL [3362]: pgsql_close() -- 19:29:05.015 INFO [3364]: COREGRADE is starting... -- 19:29:05.016 INFO [3364]: Version from config: 1.0 -- 19:29:05.016 DEBUG [3364]: Connecting to database... -- 19:29:05.016 DEBUG [3364]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:05.016 SQL [3364]: pgsql_db_connect() -- 19:29:05.020 DEBUG [3364]: Database connection successful -- 19:29:05.020 INFO [3364]: _SERVER found -- 19:29:05.020 INFO [3364]: REMOTE_ADDR = 192.168.1.13 -- 19:29:05.020 INFO [3364]: SERVER_NAME = oameye.works.coregrade.com -- 19:29:05.020 INFO [3364]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 19:29:05.020 INFO [3364]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 19:29:05.066 INFO [3364]: COREGRADE is stopping... -- 19:29:05.066 DEBUG [3364]: Closing database connection -- 19:29:05.066 SQL [3364]: pgsql_close() -- 21:52:30.026 INFO [2776]: COREGRADE is starting... -- 21:52:30.027 INFO [2776]: Version from config: 1.0 -- 21:52:30.027 DEBUG [2776]: Connecting to database... -- 21:52:30.027 DEBUG [2776]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:52:30.027 SQL [2776]: pgsql_db_connect() -- 21:52:30.032 DEBUG [2776]: Database connection successful -- 21:52:30.032 INFO [2776]: _SERVER found -- 21:52:30.032 INFO [2776]: REMOTE_ADDR = 192.168.1.13 -- 21:52:30.032 INFO [2776]: SERVER_NAME = oameye.works.coregrade.com -- 21:52:30.032 INFO [2776]: QUERY_STRING = -- 21:52:30.032 INFO [2776]: HTTP_X_FORWARDED_FOR = 192.241.242.213 -- 21:52:30.081 INFO [2776]: COREGRADE is stopping... -- 21:52:30.081 DEBUG [2776]: Closing database connection -- 21:52:30.081 SQL [2776]: pgsql_close() -- 21:52:32.084 INFO [2776]: COREGRADE is starting... -- 21:52:32.085 INFO [2776]: Version from config: 1.0 -- 21:52:32.085 DEBUG [2776]: Connecting to database... -- 21:52:32.085 DEBUG [2776]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:52:32.085 SQL [2776]: pgsql_db_connect() -- 21:52:32.089 DEBUG [2776]: Database connection successful -- 21:52:32.089 INFO [2776]: _SERVER found -- 21:52:32.089 INFO [2776]: REMOTE_ADDR = 192.168.1.13 -- 21:52:32.089 INFO [2776]: SERVER_NAME = oameye.works.coregrade.com -- 21:52:32.089 INFO [2776]: HTTP_COOKIE = ci_session=0t9sokcftptdu45sch5j1gu6i5tfi9sk -- 21:52:32.089 INFO [2776]: QUERY_STRING = /favicon.ico -- 21:52:32.089 INFO [2776]: HTTP_X_FORWARDED_FOR = 192.241.242.213 -- 21:52:32.100 INFO [2776]: COREGRADE is stopping... -- 21:52:32.101 DEBUG [2776]: Closing database connection -- 21:52:32.101 SQL [2776]: pgsql_close() -- 23:40:39.329 INFO [2781]: COREGRADE is starting... -- 23:40:39.329 INFO [2781]: Version from config: 1.0 -- 23:40:39.329 DEBUG [2781]: Connecting to database... -- 23:40:39.329 DEBUG [2781]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:40:39.329 SQL [2781]: pgsql_db_connect() -- 23:40:39.333 DEBUG [2781]: Database connection successful -- 23:40:39.333 INFO [2781]: _SERVER found -- 23:40:39.333 INFO [2781]: REMOTE_ADDR = 192.168.1.13 -- 23:40:39.333 INFO [2781]: SERVER_NAME = oameye.works.coregrade.com -- 23:40:39.333 INFO [2781]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 23:40:39.333 INFO [2781]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 23:40:39.348 INFO [2781]: COREGRADE is stopping... -- 23:40:39.348 DEBUG [2781]: Closing database connection -- 23:40:39.348 SQL [2781]: pgsql_close() -- 00:55:42.960 INFO [2774]: COREGRADE is starting... -- 00:55:42.961 INFO [2774]: Version from config: 1.0 -- 00:55:42.961 DEBUG [2774]: Connecting to database... -- 00:55:42.961 DEBUG [2774]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:55:42.961 SQL [2774]: pgsql_db_connect() -- 00:55:42.965 DEBUG [2774]: Database connection successful -- 00:55:42.965 INFO [2774]: _SERVER found -- 00:55:42.965 INFO [2774]: REMOTE_ADDR = 192.168.1.13 -- 00:55:42.965 INFO [2774]: SERVER_NAME = oameye.works.coregrade.com -- 00:55:42.965 INFO [2774]: QUERY_STRING = /.well-known/acme-challenge/7wXRwTepgkF01W73ZlEqhBYFV5Do8s6fW_O7rwryuUQ -- 00:55:42.965 INFO [2774]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 00:55:42.980 INFO [2774]: COREGRADE is stopping... -- 00:55:42.980 DEBUG [2774]: Closing database connection -- 00:55:42.980 SQL [2774]: pgsql_close() -- 00:55:43.385 INFO [2774]: COREGRADE is starting... -- 00:55:43.385 INFO [2774]: Version from config: 1.0 -- 00:55:43.385 DEBUG [2774]: Connecting to database... -- 00:55:43.385 DEBUG [2774]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:55:43.385 SQL [2774]: pgsql_db_connect() -- 00:55:43.394 INFO [3362]: COREGRADE is starting... -- 00:55:43.394 INFO [3362]: Version from config: 1.0 -- 00:55:43.394 DEBUG [3362]: Connecting to database... -- 00:55:43.394 DEBUG [3362]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:55:43.394 SQL [3362]: pgsql_db_connect() -- 00:55:43.389 DEBUG [2774]: Database connection successful -- 00:55:43.389 INFO [2774]: _SERVER found -- 00:55:43.389 INFO [2774]: REMOTE_ADDR = 192.168.1.13 -- 00:55:43.389 INFO [2774]: SERVER_NAME = oameye.works.coregrade.com -- 00:55:43.389 INFO [2774]: QUERY_STRING = /.well-known/acme-challenge/7wXRwTepgkF01W73ZlEqhBYFV5Do8s6fW_O7rwryuUQ -- 00:55:43.389 INFO [2774]: HTTP_X_FORWARDED_FOR = 18.194.58.132 -- 00:55:43.404 INFO [2774]: COREGRADE is stopping... -- 00:55:43.404 DEBUG [2774]: Closing database connection -- 00:55:43.404 SQL [2774]: pgsql_close() -- 00:55:43.399 DEBUG [3362]: Database connection successful -- 00:55:43.399 INFO [3362]: _SERVER found -- 00:55:43.399 INFO [3362]: REMOTE_ADDR = 192.168.1.13 -- 00:55:43.399 INFO [3362]: SERVER_NAME = oameye.works.coregrade.com -- 00:55:43.399 INFO [3362]: QUERY_STRING = /.well-known/acme-challenge/7wXRwTepgkF01W73ZlEqhBYFV5Do8s6fW_O7rwryuUQ -- 00:55:43.399 INFO [3362]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 00:55:43.413 INFO [3362]: COREGRADE is stopping... -- 00:55:43.413 DEBUG [3362]: Closing database connection -- 00:55:43.413 SQL [3362]: pgsql_close() -- 03:03:42.883 INFO [2776]: COREGRADE is starting... -- 03:03:42.883 INFO [2776]: Version from config: 1.0 -- 03:03:42.883 DEBUG [2776]: Connecting to database... -- 03:03:42.883 DEBUG [2776]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:03:42.883 SQL [2776]: pgsql_db_connect() -- 03:03:42.888 DEBUG [2776]: Database connection successful -- 03:03:42.888 INFO [2776]: _SERVER found -- 03:03:42.888 INFO [2776]: REMOTE_ADDR = 192.168.1.13 -- 03:03:42.888 INFO [2776]: SERVER_NAME = oameye.works.coregrade.com -- 03:03:42.888 INFO [2776]: QUERY_STRING = /robots.txt -- 03:03:42.888 INFO [2776]: HTTP_X_FORWARDED_FOR = 66.249.65.134 -- 03:03:42.902 INFO [2776]: COREGRADE is stopping... -- 03:03:42.902 DEBUG [2776]: Closing database connection -- 03:03:42.902 SQL [2776]: pgsql_close() -- 03:03:43.010 INFO [2776]: COREGRADE is starting... -- 03:03:43.010 INFO [2776]: Version from config: 1.0 -- 03:03:43.010 DEBUG [2776]: Connecting to database... -- 03:03:43.010 DEBUG [2776]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:03:43.010 SQL [2776]: pgsql_db_connect() -- 03:03:43.014 DEBUG [2776]: Database connection successful -- 03:03:43.014 INFO [2776]: _SERVER found -- 03:03:43.014 INFO [2776]: REMOTE_ADDR = 192.168.1.13 -- 03:03:43.014 INFO [2776]: SERVER_NAME = oameye.works.coregrade.com -- 03:03:43.014 INFO [2776]: QUERY_STRING = -- 03:03:43.014 INFO [2776]: HTTP_X_FORWARDED_FOR = 66.249.65.136 -- 03:03:43.049 INFO [2776]: COREGRADE is stopping... -- 03:03:43.049 DEBUG [2776]: Closing database connection -- 03:03:43.049 SQL [2776]: pgsql_close() -- 07:34:56.392 INFO [2777]: COREGRADE is starting... -- 07:34:56.392 INFO [2777]: Version from config: 1.0 -- 07:34:56.392 DEBUG [2777]: Connecting to database... -- 07:34:56.392 DEBUG [2777]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:34:56.392 SQL [2777]: pgsql_db_connect() -- 07:34:56.397 DEBUG [2777]: Database connection successful -- 07:34:56.397 INFO [2777]: _SERVER found -- 07:34:56.397 INFO [2777]: REMOTE_ADDR = 192.168.1.13 -- 07:34:56.398 INFO [2777]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:34:56.398 INFO [2777]: HTTP_COOKIE = _ga=GA1.2.999502521.1564229676 -- 07:34:56.398 INFO [2777]: QUERY_STRING = -- 07:34:56.398 INFO [2777]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:34:56.445 INFO [2777]: COREGRADE is stopping... -- 07:34:56.445 DEBUG [2777]: Closing database connection -- 07:34:56.445 SQL [2777]: pgsql_close() -- 07:34:57.518 INFO [2781]: COREGRADE is starting... -- 07:34:57.519 INFO [2781]: Version from config: 1.0 -- 07:34:57.519 DEBUG [2781]: Connecting to database... -- 07:34:57.519 DEBUG [2781]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:34:57.519 SQL [2781]: pgsql_db_connect() -- 07:34:57.523 DEBUG [2781]: Database connection successful -- 07:34:57.523 INFO [2781]: _SERVER found -- 07:34:57.523 INFO [2781]: REMOTE_ADDR = 192.168.1.13 -- 07:34:57.523 INFO [2781]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:34:57.523 INFO [2781]: HTTP_COOKIE = _ga=GA1.2.999502521.1564229676; ci_session=0oudbfu408i5ohjmoul2avmcub7vk585; _gid=GA1.2.1028469049.1582979696; _gat_gtag_UA_54829827_2=1 -- 07:34:57.523 INFO [2781]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:34:57.523 INFO [2781]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:34:57.537 INFO [2781]: COREGRADE is stopping... -- 07:34:57.537 DEBUG [2781]: Closing database connection -- 07:34:57.537 SQL [2781]: pgsql_close() -- 07:34:57.600 INFO [2781]: COREGRADE is starting... -- 07:34:57.601 INFO [2781]: Version from config: 1.0 -- 07:34:57.601 DEBUG [2781]: Connecting to database... -- 07:34:57.601 DEBUG [2781]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:34:57.601 SQL [2781]: pgsql_db_connect() -- 07:34:57.605 DEBUG [2781]: Database connection successful -- 07:34:57.605 INFO [2781]: _SERVER found -- 07:34:57.605 INFO [2781]: REMOTE_ADDR = 192.168.1.13 -- 07:34:57.605 INFO [2781]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:34:57.605 INFO [2781]: HTTP_COOKIE = _ga=GA1.2.999502521.1564229676; ci_session=0oudbfu408i5ohjmoul2avmcub7vk585; _gid=GA1.2.1028469049.1582979696; _gat_gtag_UA_54829827_2=1 -- 07:34:57.605 INFO [2781]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:34:57.605 INFO [2781]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:34:57.617 INFO [2781]: COREGRADE is stopping... -- 07:34:57.617 DEBUG [2781]: Closing database connection -- 07:34:57.617 SQL [2781]: pgsql_close() -- 07:34:59.994 INFO [2781]: COREGRADE is starting... -- 07:34:59.995 INFO [2781]: Version from config: 1.0 -- 07:34:59.995 DEBUG [2781]: Connecting to database... -- 07:34:59.995 DEBUG [2781]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:34:59.995 SQL [2781]: pgsql_db_connect() -- 07:34:59.997 INFO [2778]: COREGRADE is starting... -- 07:34:59.997 INFO [2778]: Version from config: 1.0 -- 07:34:59.997 DEBUG [2778]: Connecting to database... -- 07:34:59.997 DEBUG [2778]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:34:59.997 SQL [2778]: pgsql_db_connect() -- 07:34:59.999 DEBUG [2781]: Database connection successful -- 07:34:59.999 INFO [2781]: _SERVER found -- 07:34:59.999 INFO [2781]: REMOTE_ADDR = 192.168.1.13 -- 07:34:59.999 INFO [2781]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:34:59.999 INFO [2781]: HTTP_COOKIE = _ga=GA1.2.999502521.1564229676; ci_session=0oudbfu408i5ohjmoul2avmcub7vk585; _gid=GA1.2.1028469049.1582979696; _gat_gtag_UA_54829827_2=1 -- 07:34:59.999 INFO [2781]: QUERY_STRING = /welcome/viewLogin -- 07:34:59.999 INFO [2781]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:35:00.034 INFO [2781]: COREGRADE is stopping... -- 07:35:00.034 DEBUG [2781]: Closing database connection -- 07:35:00.034 SQL [2781]: pgsql_close() -- 07:35:00.061 INFO [2781]: COREGRADE is starting... -- 07:35:00.062 INFO [2781]: Version from config: 1.0 -- 07:35:00.062 DEBUG [2781]: Connecting to database... -- 07:35:00.062 DEBUG [2781]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:35:00.062 SQL [2781]: pgsql_db_connect() -- 07:35:00.001 DEBUG [2778]: Database connection successful -- 07:35:00.001 INFO [2778]: _SERVER found -- 07:35:00.001 INFO [2778]: REMOTE_ADDR = 192.168.1.13 -- 07:35:00.001 INFO [2778]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:35:00.001 INFO [2778]: HTTP_COOKIE = _ga=GA1.2.999502521.1564229676; ci_session=0oudbfu408i5ohjmoul2avmcub7vk585; _gid=GA1.2.1028469049.1582979696; _gat_gtag_UA_54829827_2=1 -- 07:35:00.001 INFO [2778]: QUERY_STRING = /auth -- 07:35:00.001 INFO [2778]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:35:00.068 INFO [2778]: COREGRADE is stopping... -- 07:35:00.068 DEBUG [2778]: Closing database connection -- 07:35:00.068 SQL [2778]: pgsql_close() -- 07:35:00.066 DEBUG [2781]: Database connection successful -- 07:35:00.066 INFO [2781]: _SERVER found -- 07:35:00.066 INFO [2781]: REMOTE_ADDR = 192.168.1.13 -- 07:35:00.066 INFO [2781]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:35:00.066 INFO [2781]: HTTP_COOKIE = _ga=GA1.2.999502521.1564229676; ci_session=0oudbfu408i5ohjmoul2avmcub7vk585; _gid=GA1.2.1028469049.1582979696; _gat_gtag_UA_54829827_2=1 -- 07:35:00.066 INFO [2781]: QUERY_STRING = /auth/index -- 07:35:00.066 INFO [2781]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:35:00.098 INFO [2781]: COREGRADE is stopping... -- 07:35:00.098 DEBUG [2781]: Closing database connection -- 07:35:00.098 SQL [2781]: pgsql_close() -- 07:35:00.366 INFO [3362]: COREGRADE is starting... -- 07:35:00.366 INFO [3362]: Version from config: 1.0 -- 07:35:00.366 DEBUG [3362]: Connecting to database... -- 07:35:00.366 DEBUG [3362]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:35:00.366 SQL [3362]: pgsql_db_connect() -- 07:35:00.370 DEBUG [3362]: Database connection successful -- 07:35:00.370 INFO [3362]: _SERVER found -- 07:35:00.370 INFO [3362]: REMOTE_ADDR = 192.168.1.13 -- 07:35:00.370 INFO [3362]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:35:00.370 INFO [3362]: HTTP_COOKIE = _ga=GA1.2.999502521.1564229676; ci_session=0oudbfu408i5ohjmoul2avmcub7vk585; _gid=GA1.2.1028469049.1582979696; _gat_gtag_UA_54829827_2=1 -- 07:35:00.370 INFO [3362]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 07:35:00.370 INFO [3362]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:35:00.383 INFO [3362]: COREGRADE is stopping... -- 07:35:00.383 DEBUG [3362]: Closing database connection -- 07:35:00.383 SQL [3362]: pgsql_close() -- 07:35:00.543 INFO [2778]: COREGRADE is starting... -- 07:35:00.543 INFO [2778]: Version from config: 1.0 -- 07:35:00.543 DEBUG [2778]: Connecting to database... -- 07:35:00.543 DEBUG [2778]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:35:00.543 SQL [2778]: pgsql_db_connect() -- 07:35:00.547 DEBUG [2778]: Database connection successful -- 07:35:00.547 INFO [2778]: _SERVER found -- 07:35:00.547 INFO [2778]: REMOTE_ADDR = 192.168.1.13 -- 07:35:00.547 INFO [2778]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:35:00.547 INFO [2778]: HTTP_COOKIE = _ga=GA1.2.999502521.1564229676; ci_session=0oudbfu408i5ohjmoul2avmcub7vk585; _gid=GA1.2.1028469049.1582979696; _gat_gtag_UA_54829827_2=1 -- 07:35:00.547 INFO [2778]: QUERY_STRING = /assets2/data/locales/en.json -- 07:35:00.547 INFO [2778]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:35:00.558 INFO [2778]: COREGRADE is stopping... -- 07:35:00.558 DEBUG [2778]: Closing database connection -- 07:35:00.558 SQL [2778]: pgsql_close() -- 07:35:24.130 INFO [7718]: COREGRADE is starting... -- 07:35:24.131 INFO [7718]: Version from config: 1.0 -- 07:35:24.131 DEBUG [7718]: Connecting to database... -- 07:35:24.131 DEBUG [7718]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:35:24.131 SQL [7718]: pgsql_db_connect() -- 07:35:24.136 DEBUG [7718]: Database connection successful -- 07:35:24.136 INFO [7718]: _SERVER found -- 07:35:24.136 INFO [7718]: REMOTE_ADDR = 192.168.1.13 -- 07:35:24.136 INFO [7718]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:35:24.136 INFO [7718]: HTTP_COOKIE = _ga=GA1.2.999502521.1564229676; ci_session=0oudbfu408i5ohjmoul2avmcub7vk585; _gid=GA1.2.1028469049.1582979696; _gat_gtag_UA_54829827_2=1 -- 07:35:24.136 INFO [7718]: QUERY_STRING = /auth -- 07:35:24.136 INFO [7718]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:35:24.322 INFO [7718]: COREGRADE is starting... -- 07:35:24.322 INFO [7718]: Version from config: 1.0 -- 07:35:24.322 DEBUG [7718]: Connecting to database... -- 07:35:24.322 DEBUG [7718]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:35:24.322 SQL [7718]: pgsql_db_connect() -- 07:35:24.338 INFO [7720]: COREGRADE is starting... -- 07:35:24.338 INFO [7720]: Version from config: 1.0 -- 07:35:24.338 DEBUG [7720]: Connecting to database... -- 07:35:24.338 DEBUG [7720]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:35:24.338 SQL [7720]: pgsql_db_connect() -- 07:35:24.326 DEBUG [7718]: Database connection successful -- 07:35:24.326 INFO [7718]: _SERVER found -- 07:35:24.326 INFO [7718]: REMOTE_ADDR = 192.168.1.13 -- 07:35:24.326 INFO [7718]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:35:24.326 INFO [7718]: HTTP_COOKIE = _ga=GA1.2.999502521.1564229676; ci_session=0oudbfu408i5ohjmoul2avmcub7vk585; _gid=GA1.2.1028469049.1582979696; _gat_gtag_UA_54829827_2=1 -- 07:35:24.326 INFO [7718]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 07:35:24.326 INFO [7718]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:35:24.339 INFO [7718]: COREGRADE is stopping... -- 07:35:24.339 DEBUG [7718]: Closing database connection -- 07:35:24.339 SQL [7718]: pgsql_close() -- 07:35:24.342 DEBUG [7720]: Database connection successful -- 07:35:24.342 INFO [7720]: _SERVER found -- 07:35:24.342 INFO [7720]: REMOTE_ADDR = 192.168.1.13 -- 07:35:24.342 INFO [7720]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:35:24.342 INFO [7720]: HTTP_COOKIE = _ga=GA1.2.999502521.1564229676; ci_session=0oudbfu408i5ohjmoul2avmcub7vk585; _gid=GA1.2.1028469049.1582979696; _gat_gtag_UA_54829827_2=1 -- 07:35:24.342 INFO [7720]: QUERY_STRING = /assets2/data/locales/en.json -- 07:35:24.342 INFO [7720]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:35:24.357 INFO [7720]: COREGRADE is stopping... -- 07:35:24.357 DEBUG [7720]: Closing database connection -- 07:35:24.357 SQL [7720]: pgsql_close() -- 07:35:34.169 INFO [7721]: COREGRADE is starting... -- 07:35:34.169 INFO [7721]: Version from config: 1.0 -- 07:35:34.169 DEBUG [7721]: Connecting to database... -- 07:35:34.169 DEBUG [7721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:35:34.169 SQL [7721]: pgsql_db_connect() -- 07:35:34.173 DEBUG [7721]: Database connection successful -- 07:35:34.173 INFO [7721]: _SERVER found -- 07:35:34.173 INFO [7721]: REMOTE_ADDR = 192.168.1.13 -- 07:35:34.173 INFO [7721]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:35:34.173 INFO [7721]: HTTP_COOKIE = _ga=GA1.2.999502521.1564229676; ci_session=0oudbfu408i5ohjmoul2avmcub7vk585; _gid=GA1.2.1028469049.1582979696; _gat_gtag_UA_54829827_2=1 -- 07:35:34.173 INFO [7721]: QUERY_STRING = /auth -- 07:35:34.173 INFO [7721]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:35:34.244 INFO [7721]: COREGRADE is starting... -- 07:35:34.245 INFO [7721]: Version from config: 1.0 -- 07:35:34.245 DEBUG [7721]: Connecting to database... -- 07:35:34.245 DEBUG [7721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:35:34.245 SQL [7721]: pgsql_db_connect() -- 07:35:34.248 DEBUG [7721]: Database connection successful -- 07:35:34.248 INFO [7721]: _SERVER found -- 07:35:34.248 INFO [7721]: REMOTE_ADDR = 192.168.1.13 -- 07:35:34.248 INFO [7721]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:35:34.248 INFO [7721]: HTTP_COOKIE = _ga=GA1.2.999502521.1564229676; ci_session=0oudbfu408i5ohjmoul2avmcub7vk585; _gid=GA1.2.1028469049.1582979696; _gat_gtag_UA_54829827_2=1 -- 07:35:34.248 INFO [7721]: QUERY_STRING = /member/index -- 07:35:34.248 INFO [7721]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:35:34.292 INFO [7721]: COREGRADE is stopping... -- 07:35:34.292 DEBUG [7721]: Closing database connection -- 07:35:34.292 SQL [7721]: pgsql_close() -- 07:35:34.601 INFO [7721]: COREGRADE is starting... -- 07:35:34.601 INFO [7721]: Version from config: 1.0 -- 07:35:34.601 DEBUG [7721]: Connecting to database... -- 07:35:34.601 DEBUG [7721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:35:34.601 SQL [7721]: pgsql_db_connect() -- 07:35:34.605 DEBUG [7721]: Database connection successful -- 07:35:34.605 INFO [7721]: _SERVER found -- 07:35:34.605 INFO [7721]: REMOTE_ADDR = 192.168.1.13 -- 07:35:34.605 INFO [7721]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:35:34.605 INFO [7721]: HTTP_COOKIE = _ga=GA1.2.999502521.1564229676; ci_session=0oudbfu408i5ohjmoul2avmcub7vk585; _gid=GA1.2.1028469049.1582979696; _gat_gtag_UA_54829827_2=1 -- 07:35:34.605 INFO [7721]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 07:35:34.605 INFO [7721]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:35:34.617 INFO [7721]: COREGRADE is stopping... -- 07:35:34.617 DEBUG [7721]: Closing database connection -- 07:35:34.617 SQL [7721]: pgsql_close() -- 07:35:35.532 INFO [7721]: COREGRADE is starting... -- 07:35:35.532 INFO [7721]: Version from config: 1.0 -- 07:35:35.532 DEBUG [7721]: Connecting to database... -- 07:35:35.532 DEBUG [7721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:35:35.532 SQL [7721]: pgsql_db_connect() -- 07:35:35.536 DEBUG [7721]: Database connection successful -- 07:35:35.536 INFO [7721]: _SERVER found -- 07:35:35.536 INFO [7721]: REMOTE_ADDR = 192.168.1.13 -- 07:35:35.536 INFO [7721]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:35:35.536 INFO [7721]: HTTP_COOKIE = _ga=GA1.2.999502521.1564229676; ci_session=0oudbfu408i5ohjmoul2avmcub7vk585; _gid=GA1.2.1028469049.1582979696; _gat_gtag_UA_54829827_2=1 -- 07:35:35.536 INFO [7721]: QUERY_STRING = /assets2/data/locales/en.json -- 07:35:35.536 INFO [7721]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:35:35.548 INFO [7721]: COREGRADE is stopping... -- 07:35:35.548 DEBUG [7721]: Closing database connection -- 07:35:35.548 SQL [7721]: pgsql_close() -- 07:35:53.085 INFO [5999]: COREGRADE is starting... -- 07:35:53.085 INFO [5999]: Version from config: 1.0 -- 07:35:53.085 DEBUG [5999]: Connecting to database... -- 07:35:53.085 DEBUG [5999]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:35:53.085 SQL [5999]: pgsql_db_connect() -- 07:35:53.089 DEBUG [5999]: Database connection successful -- 07:35:53.089 INFO [5999]: _SERVER found -- 07:35:53.089 INFO [5999]: REMOTE_ADDR = 192.168.1.13 -- 07:35:53.089 INFO [5999]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:35:53.089 INFO [5999]: HTTP_COOKIE = _ga=GA1.2.999502521.1564229676; ci_session=0oudbfu408i5ohjmoul2avmcub7vk585; _gid=GA1.2.1028469049.1582979696; _gat_gtag_UA_54829827_2=1 -- 07:35:53.089 INFO [5999]: QUERY_STRING = -- 07:35:53.089 INFO [5999]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:35:53.132 INFO [5999]: COREGRADE is stopping... -- 07:35:53.132 DEBUG [5999]: Closing database connection -- 07:35:53.132 SQL [5999]: pgsql_close() -- 07:35:53.309 INFO [5999]: COREGRADE is starting... -- 07:35:53.309 INFO [5999]: Version from config: 1.0 -- 07:35:53.309 DEBUG [5999]: Connecting to database... -- 07:35:53.309 DEBUG [5999]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:35:53.309 SQL [5999]: pgsql_db_connect() -- 07:35:53.316 INFO [2775]: COREGRADE is starting... -- 07:35:53.317 INFO [2775]: Version from config: 1.0 -- 07:35:53.317 DEBUG [2775]: Connecting to database... -- 07:35:53.317 DEBUG [2775]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:35:53.317 SQL [2775]: pgsql_db_connect() -- 07:35:53.313 DEBUG [5999]: Database connection successful -- 07:35:53.313 INFO [5999]: _SERVER found -- 07:35:53.313 INFO [5999]: REMOTE_ADDR = 192.168.1.13 -- 07:35:53.313 INFO [5999]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:35:53.313 INFO [5999]: HTTP_COOKIE = _ga=GA1.2.999502521.1564229676; ci_session=0oudbfu408i5ohjmoul2avmcub7vk585; _gid=GA1.2.1028469049.1582979696; _gat_gtag_UA_54829827_2=1 -- 07:35:53.313 INFO [5999]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 07:35:53.313 INFO [5999]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:35:53.325 INFO [5999]: COREGRADE is stopping... -- 07:35:53.325 DEBUG [5999]: Closing database connection -- 07:35:53.325 SQL [5999]: pgsql_close() -- 07:35:53.320 DEBUG [2775]: Database connection successful -- 07:35:53.320 INFO [2775]: _SERVER found -- 07:35:53.320 INFO [2775]: REMOTE_ADDR = 192.168.1.13 -- 07:35:53.320 INFO [2775]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:35:53.320 INFO [2775]: HTTP_COOKIE = _ga=GA1.2.999502521.1564229676; ci_session=0oudbfu408i5ohjmoul2avmcub7vk585; _gid=GA1.2.1028469049.1582979696; _gat_gtag_UA_54829827_2=1 -- 07:35:53.320 INFO [2775]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:35:53.320 INFO [2775]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:35:53.333 INFO [2775]: COREGRADE is stopping... -- 07:35:53.333 DEBUG [2775]: Closing database connection -- 07:35:53.333 SQL [2775]: pgsql_close() -- 07:36:07.722 INFO [3362]: COREGRADE is starting... -- 07:36:07.722 INFO [3362]: Version from config: 1.0 -- 07:36:07.722 DEBUG [3362]: Connecting to database... -- 07:36:07.722 DEBUG [3362]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:36:07.722 SQL [3362]: pgsql_db_connect() -- 07:36:07.726 DEBUG [3362]: Database connection successful -- 07:36:07.726 INFO [3362]: _SERVER found -- 07:36:07.726 INFO [3362]: REMOTE_ADDR = 192.168.1.13 -- 07:36:07.726 INFO [3362]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:36:07.726 INFO [3362]: HTTP_COOKIE = _ga=GA1.2.999502521.1564229676; ci_session=0oudbfu408i5ohjmoul2avmcub7vk585; _gid=GA1.2.1028469049.1582979696 -- 07:36:07.726 INFO [3362]: QUERY_STRING = /member/page -- 07:36:07.726 INFO [3362]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:36:07.771 INFO [3362]: COREGRADE is stopping... -- 07:36:07.771 DEBUG [3362]: Closing database connection -- 07:36:07.771 SQL [3362]: pgsql_close() -- 07:36:07.945 INFO [7720]: COREGRADE is starting... -- 07:36:07.946 INFO [7720]: Version from config: 1.0 -- 07:36:07.946 DEBUG [7720]: Connecting to database... -- 07:36:07.946 DEBUG [7720]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:36:07.946 SQL [7720]: pgsql_db_connect() -- 07:36:07.950 DEBUG [7720]: Database connection successful -- 07:36:07.950 INFO [7720]: _SERVER found -- 07:36:07.950 INFO [7720]: REMOTE_ADDR = 192.168.1.13 -- 07:36:07.950 INFO [7720]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:36:07.950 INFO [7720]: HTTP_COOKIE = _ga=GA1.2.999502521.1564229676; ci_session=0oudbfu408i5ohjmoul2avmcub7vk585; _gid=GA1.2.1028469049.1582979696 -- 07:36:07.950 INFO [7720]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 07:36:07.950 INFO [7720]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:36:07.962 INFO [7720]: COREGRADE is stopping... -- 07:36:07.962 DEBUG [7720]: Closing database connection -- 07:36:07.963 SQL [7720]: pgsql_close() -- 07:36:08.140 INFO [7720]: COREGRADE is starting... -- 07:36:08.140 INFO [7720]: Version from config: 1.0 -- 07:36:08.140 DEBUG [7720]: Connecting to database... -- 07:36:08.140 DEBUG [7720]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:36:08.140 SQL [7720]: pgsql_db_connect() -- 07:36:08.145 DEBUG [7720]: Database connection successful -- 07:36:08.145 INFO [7720]: _SERVER found -- 07:36:08.145 INFO [7720]: REMOTE_ADDR = 192.168.1.13 -- 07:36:08.145 INFO [7720]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:36:08.145 INFO [7720]: HTTP_COOKIE = _ga=GA1.2.999502521.1564229676; ci_session=0oudbfu408i5ohjmoul2avmcub7vk585; _gid=GA1.2.1028469049.1582979696 -- 07:36:08.145 INFO [7720]: QUERY_STRING = /assets2/data/locales/en.json -- 07:36:08.145 INFO [7720]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:36:08.157 INFO [7720]: COREGRADE is stopping... -- 07:36:08.157 DEBUG [7720]: Closing database connection -- 07:36:08.157 SQL [7720]: pgsql_close() -- 07:36:17.147 INFO [2781]: COREGRADE is starting... -- 07:36:17.147 INFO [2781]: Version from config: 1.0 -- 07:36:17.147 DEBUG [2781]: Connecting to database... -- 07:36:17.147 DEBUG [2781]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:36:17.147 SQL [2781]: pgsql_db_connect() -- 07:36:17.151 DEBUG [2781]: Database connection successful -- 07:36:17.151 INFO [2781]: _SERVER found -- 07:36:17.151 INFO [2781]: REMOTE_ADDR = 192.168.1.13 -- 07:36:17.151 INFO [2781]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:36:17.151 INFO [2781]: HTTP_COOKIE = _ga=GA1.2.999502521.1564229676; ci_session=0oudbfu408i5ohjmoul2avmcub7vk585; _gid=GA1.2.1028469049.1582979696 -- 07:36:17.151 INFO [2781]: QUERY_STRING = /member -- 07:36:17.151 INFO [2781]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:36:17.193 INFO [2781]: COREGRADE is stopping... -- 07:36:17.193 DEBUG [2781]: Closing database connection -- 07:36:17.193 SQL [2781]: pgsql_close() -- 07:36:17.362 INFO [2781]: COREGRADE is starting... -- 07:36:17.363 INFO [2781]: Version from config: 1.0 -- 07:36:17.363 DEBUG [2781]: Connecting to database... -- 07:36:17.363 DEBUG [2781]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:36:17.363 SQL [2781]: pgsql_db_connect() -- 07:36:17.367 DEBUG [2781]: Database connection successful -- 07:36:17.367 INFO [2781]: _SERVER found -- 07:36:17.367 INFO [2781]: REMOTE_ADDR = 192.168.1.13 -- 07:36:17.367 INFO [2781]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:36:17.367 INFO [2781]: HTTP_COOKIE = _ga=GA1.2.999502521.1564229676; ci_session=0oudbfu408i5ohjmoul2avmcub7vk585; _gid=GA1.2.1028469049.1582979696 -- 07:36:17.367 INFO [2781]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 07:36:17.367 INFO [2781]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:36:17.378 INFO [2781]: COREGRADE is stopping... -- 07:36:17.378 DEBUG [2781]: Closing database connection -- 07:36:17.378 SQL [2781]: pgsql_close() -- 07:36:17.397 INFO [2781]: COREGRADE is starting... -- 07:36:17.397 INFO [2781]: Version from config: 1.0 -- 07:36:17.397 DEBUG [2781]: Connecting to database... -- 07:36:17.397 DEBUG [2781]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:36:17.397 SQL [2781]: pgsql_db_connect() -- 07:36:17.401 DEBUG [2781]: Database connection successful -- 07:36:17.401 INFO [2781]: _SERVER found -- 07:36:17.401 INFO [2781]: REMOTE_ADDR = 192.168.1.13 -- 07:36:17.401 INFO [2781]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:36:17.401 INFO [2781]: HTTP_COOKIE = _ga=GA1.2.999502521.1564229676; ci_session=0oudbfu408i5ohjmoul2avmcub7vk585; _gid=GA1.2.1028469049.1582979696 -- 07:36:17.401 INFO [2781]: QUERY_STRING = /assets2/data/locales/en.json -- 07:36:17.401 INFO [2781]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:36:17.412 INFO [2781]: COREGRADE is stopping... -- 07:36:17.412 DEBUG [2781]: Closing database connection -- 07:36:17.412 SQL [2781]: pgsql_close() -- 07:36:27.646 INFO [2777]: COREGRADE is starting... -- 07:36:27.646 INFO [2777]: Version from config: 1.0 -- 07:36:27.646 DEBUG [2777]: Connecting to database... -- 07:36:27.646 DEBUG [2777]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:36:27.646 SQL [2777]: pgsql_db_connect() -- 07:36:27.650 DEBUG [2777]: Database connection successful -- 07:36:27.650 INFO [2777]: _SERVER found -- 07:36:27.650 INFO [2777]: REMOTE_ADDR = 192.168.1.13 -- 07:36:27.650 INFO [2777]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:36:27.650 INFO [2777]: HTTP_COOKIE = _ga=GA1.2.999502521.1564229676; ci_session=0oudbfu408i5ohjmoul2avmcub7vk585; _gid=GA1.2.1028469049.1582979696 -- 07:36:27.650 INFO [2777]: QUERY_STRING = /member/page -- 07:36:27.650 INFO [2777]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:36:27.695 INFO [2777]: COREGRADE is stopping... -- 07:36:27.695 DEBUG [2777]: Closing database connection -- 07:36:27.695 SQL [2777]: pgsql_close() -- 07:36:27.834 INFO [2777]: COREGRADE is starting... -- 07:36:27.834 INFO [2777]: Version from config: 1.0 -- 07:36:27.834 DEBUG [2777]: Connecting to database... -- 07:36:27.834 DEBUG [2777]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:36:27.834 SQL [2777]: pgsql_db_connect() -- 07:36:27.838 DEBUG [2777]: Database connection successful -- 07:36:27.838 INFO [2777]: _SERVER found -- 07:36:27.838 INFO [2777]: REMOTE_ADDR = 192.168.1.13 -- 07:36:27.838 INFO [2777]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:36:27.838 INFO [2777]: HTTP_COOKIE = _ga=GA1.2.999502521.1564229676; ci_session=0oudbfu408i5ohjmoul2avmcub7vk585; _gid=GA1.2.1028469049.1582979696 -- 07:36:27.838 INFO [2777]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 07:36:27.838 INFO [2777]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:36:27.849 INFO [2777]: COREGRADE is stopping... -- 07:36:27.849 DEBUG [2777]: Closing database connection -- 07:36:27.849 SQL [2777]: pgsql_close() -- 07:36:27.974 INFO [2777]: COREGRADE is starting... -- 07:36:27.974 INFO [2777]: Version from config: 1.0 -- 07:36:27.974 DEBUG [2777]: Connecting to database... -- 07:36:27.974 DEBUG [2777]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:36:27.974 SQL [2777]: pgsql_db_connect() -- 07:36:27.978 DEBUG [2777]: Database connection successful -- 07:36:27.978 INFO [2777]: _SERVER found -- 07:36:27.978 INFO [2777]: REMOTE_ADDR = 192.168.1.13 -- 07:36:27.978 INFO [2777]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:36:27.978 INFO [2777]: HTTP_COOKIE = _ga=GA1.2.999502521.1564229676; ci_session=0oudbfu408i5ohjmoul2avmcub7vk585; _gid=GA1.2.1028469049.1582979696 -- 07:36:27.978 INFO [2777]: QUERY_STRING = /assets2/data/locales/en.json -- 07:36:27.978 INFO [2777]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:36:27.989 INFO [2777]: COREGRADE is stopping... -- 07:36:27.989 DEBUG [2777]: Closing database connection -- 07:36:27.989 SQL [2777]: pgsql_close() -- 07:36:35.752 INFO [2774]: COREGRADE is starting... -- 07:36:35.752 INFO [2774]: Version from config: 1.0 -- 07:36:35.752 DEBUG [2774]: Connecting to database... -- 07:36:35.752 DEBUG [2774]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:36:35.752 SQL [2774]: pgsql_db_connect() -- 07:36:35.756 DEBUG [2774]: Database connection successful -- 07:36:35.756 INFO [2774]: _SERVER found -- 07:36:35.756 INFO [2774]: REMOTE_ADDR = 192.168.1.13 -- 07:36:35.756 INFO [2774]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:36:35.756 INFO [2774]: HTTP_COOKIE = _ga=GA1.2.999502521.1564229676; ci_session=0oudbfu408i5ohjmoul2avmcub7vk585; _gid=GA1.2.1028469049.1582979696 -- 07:36:35.756 INFO [2774]: QUERY_STRING = /member/viewCardAddAction -- 07:36:35.756 INFO [2774]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:36:35.793 INFO [2774]: COREGRADE is stopping... -- 07:36:35.793 DEBUG [2774]: Closing database connection -- 07:36:35.793 SQL [2774]: pgsql_close() -- 07:36:42.228 INFO [7721]: COREGRADE is starting... -- 07:36:42.229 INFO [7721]: Version from config: 1.0 -- 07:36:42.229 DEBUG [7721]: Connecting to database... -- 07:36:42.229 DEBUG [7721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:36:42.229 SQL [7721]: pgsql_db_connect() -- 07:36:42.233 DEBUG [7721]: Database connection successful -- 07:36:42.233 INFO [7721]: _SERVER found -- 07:36:42.233 INFO [7721]: REMOTE_ADDR = 192.168.1.13 -- 07:36:42.233 INFO [7721]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:36:42.233 INFO [7721]: HTTP_COOKIE = _ga=GA1.2.999502521.1564229676; ci_session=0oudbfu408i5ohjmoul2avmcub7vk585; _gid=GA1.2.1028469049.1582979696 -- 07:36:42.233 INFO [7721]: QUERY_STRING = /member/viewCardAddAction -- 07:36:42.233 INFO [7721]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:36:42.267 INFO [7721]: COREGRADE is stopping... -- 07:36:42.267 DEBUG [7721]: Closing database connection -- 07:36:42.267 SQL [7721]: pgsql_close() -- 15:37:41.194 INFO [3362]: COREGRADE is starting... -- 15:37:41.194 INFO [3362]: Version from config: 1.0 -- 15:37:41.194 DEBUG [3362]: Connecting to database... -- 15:37:41.194 DEBUG [3362]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:41.194 SQL [3362]: pgsql_db_connect() -- 15:37:41.199 DEBUG [3362]: Database connection successful -- 15:37:41.199 INFO [3362]: _SERVER found -- 15:37:41.199 INFO [3362]: REMOTE_ADDR = 192.168.1.13 -- 15:37:41.199 INFO [3362]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:41.199 INFO [3362]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1334173575.1583008659; _gat_gtag_UA_54829827_2=1 -- 15:37:41.199 INFO [3362]: QUERY_STRING = -- 15:37:41.199 INFO [3362]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:41.246 INFO [3362]: COREGRADE is stopping... -- 15:37:41.246 DEBUG [3362]: Closing database connection -- 15:37:41.246 SQL [3362]: pgsql_close() -- 15:37:41.978 INFO [7718]: COREGRADE is starting... -- 15:37:41.978 INFO [7718]: Version from config: 1.0 -- 15:37:41.978 DEBUG [7718]: Connecting to database... -- 15:37:41.978 DEBUG [7718]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:41.978 SQL [7718]: pgsql_db_connect() -- 15:37:41.983 DEBUG [7718]: Database connection successful -- 15:37:41.983 INFO [7718]: _SERVER found -- 15:37:41.983 INFO [7718]: REMOTE_ADDR = 192.168.1.13 -- 15:37:41.983 INFO [7718]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:41.983 INFO [7718]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1334173575.1583008659; _gat_gtag_UA_54829827_2=1; ci_session=h7ifb4cms1g6fr4sbrjfej9ckc0etmah -- 15:37:41.983 INFO [7718]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 15:37:41.983 INFO [7718]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:41.996 INFO [7718]: COREGRADE is stopping... -- 15:37:41.996 DEBUG [7718]: Closing database connection -- 15:37:41.997 SQL [7718]: pgsql_close() -- 15:37:42.052 INFO [7718]: COREGRADE is starting... -- 15:37:42.052 INFO [7718]: Version from config: 1.0 -- 15:37:42.052 DEBUG [7718]: Connecting to database... -- 15:37:42.052 DEBUG [7718]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:42.052 SQL [7718]: pgsql_db_connect() -- 15:37:42.056 DEBUG [7718]: Database connection successful -- 15:37:42.056 INFO [7718]: _SERVER found -- 15:37:42.056 INFO [7718]: REMOTE_ADDR = 192.168.1.13 -- 15:37:42.056 INFO [7718]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:42.056 INFO [7718]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1334173575.1583008659; _gat_gtag_UA_54829827_2=1; ci_session=h7ifb4cms1g6fr4sbrjfej9ckc0etmah -- 15:37:42.056 INFO [7718]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:37:42.056 INFO [7718]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:42.069 INFO [7718]: COREGRADE is stopping... -- 15:37:42.069 DEBUG [7718]: Closing database connection -- 15:37:42.069 SQL [7718]: pgsql_close() -- 15:37:43.437 INFO [7718]: COREGRADE is starting... -- 15:37:43.437 INFO [7718]: Version from config: 1.0 -- 15:37:43.437 DEBUG [7718]: Connecting to database... -- 15:37:43.437 DEBUG [7718]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:43.437 SQL [7718]: pgsql_db_connect() -- 15:37:43.445 INFO [3362]: COREGRADE is starting... -- 15:37:43.445 INFO [3362]: Version from config: 1.0 -- 15:37:43.445 DEBUG [3362]: Connecting to database... -- 15:37:43.445 DEBUG [3362]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:43.445 SQL [3362]: pgsql_db_connect() -- 15:37:43.442 DEBUG [7718]: Database connection successful -- 15:37:43.442 INFO [7718]: _SERVER found -- 15:37:43.442 INFO [7718]: REMOTE_ADDR = 192.168.1.13 -- 15:37:43.442 INFO [7718]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:43.442 INFO [7718]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1334173575.1583008659; _gat_gtag_UA_54829827_2=1; ci_session=h7ifb4cms1g6fr4sbrjfej9ckc0etmah -- 15:37:43.442 INFO [7718]: QUERY_STRING = /welcome/viewLogin -- 15:37:43.442 INFO [7718]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:43.480 INFO [7718]: COREGRADE is stopping... -- 15:37:43.480 DEBUG [7718]: Closing database connection -- 15:37:43.480 SQL [7718]: pgsql_close() -- 15:37:43.452 DEBUG [3362]: Database connection successful -- 15:37:43.452 INFO [3362]: _SERVER found -- 15:37:43.452 INFO [3362]: REMOTE_ADDR = 192.168.1.13 -- 15:37:43.452 INFO [3362]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:43.452 INFO [3362]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1334173575.1583008659; _gat_gtag_UA_54829827_2=1; ci_session=h7ifb4cms1g6fr4sbrjfej9ckc0etmah -- 15:37:43.452 INFO [3362]: QUERY_STRING = /auth -- 15:37:43.452 INFO [3362]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:43.484 INFO [3362]: COREGRADE is stopping... -- 15:37:43.484 DEBUG [3362]: Closing database connection -- 15:37:43.484 SQL [3362]: pgsql_close() -- 15:37:43.490 INFO [3362]: COREGRADE is starting... -- 15:37:43.490 INFO [3362]: Version from config: 1.0 -- 15:37:43.490 DEBUG [3362]: Connecting to database... -- 15:37:43.490 DEBUG [3362]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:43.490 SQL [3362]: pgsql_db_connect() -- 15:37:43.494 DEBUG [3362]: Database connection successful -- 15:37:43.494 INFO [3362]: _SERVER found -- 15:37:43.494 INFO [3362]: REMOTE_ADDR = 192.168.1.13 -- 15:37:43.494 INFO [3362]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:43.494 INFO [3362]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1334173575.1583008659; _gat_gtag_UA_54829827_2=1; ci_session=h7ifb4cms1g6fr4sbrjfej9ckc0etmah -- 15:37:43.494 INFO [3362]: QUERY_STRING = /auth/index -- 15:37:43.494 INFO [3362]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:43.525 INFO [3362]: COREGRADE is stopping... -- 15:37:43.525 DEBUG [3362]: Closing database connection -- 15:37:43.525 SQL [3362]: pgsql_close() -- 15:37:43.735 INFO [3362]: COREGRADE is starting... -- 15:37:43.735 INFO [3362]: Version from config: 1.0 -- 15:37:43.735 DEBUG [3362]: Connecting to database... -- 15:37:43.735 DEBUG [3362]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:43.735 SQL [3362]: pgsql_db_connect() -- 15:37:43.739 DEBUG [3362]: Database connection successful -- 15:37:43.739 INFO [3362]: _SERVER found -- 15:37:43.739 INFO [3362]: REMOTE_ADDR = 192.168.1.13 -- 15:37:43.739 INFO [3362]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:43.739 INFO [3362]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1334173575.1583008659; _gat_gtag_UA_54829827_2=1; ci_session=h7ifb4cms1g6fr4sbrjfej9ckc0etmah -- 15:37:43.739 INFO [3362]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:37:43.739 INFO [3362]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:43.750 INFO [3362]: COREGRADE is stopping... -- 15:37:43.750 DEBUG [3362]: Closing database connection -- 15:37:43.750 SQL [3362]: pgsql_close() -- 15:37:45.129 INFO [3362]: COREGRADE is starting... -- 15:37:45.129 INFO [3362]: Version from config: 1.0 -- 15:37:45.129 DEBUG [3362]: Connecting to database... -- 15:37:45.130 DEBUG [3362]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:45.130 SQL [3362]: pgsql_db_connect() -- 15:37:45.164 INFO [3362]: COREGRADE is starting... -- 15:37:45.164 INFO [3362]: Version from config: 1.0 -- 15:37:45.164 DEBUG [3362]: Connecting to database... -- 15:37:45.164 DEBUG [3362]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:45.164 SQL [3362]: pgsql_db_connect() -- 15:37:45.168 DEBUG [3362]: Database connection successful -- 15:37:45.168 INFO [3362]: _SERVER found -- 15:37:45.168 INFO [3362]: REMOTE_ADDR = 192.168.1.13 -- 15:37:45.168 INFO [3362]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:45.168 INFO [3362]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1334173575.1583008659; _gat_gtag_UA_54829827_2=1; ci_session=h7ifb4cms1g6fr4sbrjfej9ckc0etmah -- 15:37:45.168 INFO [3362]: QUERY_STRING = -- 15:37:45.168 INFO [3362]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:45.168 INFO [3362]: SystemStatus()09-09-********~************ -- 15:37:45.168 INFO [3362]: long coregrade_api_main(CVars in, CVars &out) -- 15:37:45.168 INFO [3362]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 15:37:45.168 INFO [3362]: account calls -- 15:37:45.168 INFO [3362]: account_calls() -- 15:37:45.168 INFO [3362]: LoginCoreGradeAccount() -- 15:37:45.168 FLOG_MAX [3362]: REQ_STRING(username) -- 15:37:45.168 FLOG_MAX [3362]: REQ_STRING(password) -- 15:37:45.168 FLOG_MAX [3362]: REQ_STRING(sessionid) -- 15:37:45.168 FLOG_MAX [3362]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:37:45.168 SQL [3362]: pgsql_query() -- 15:37:45.168 SQL [3362]: About to run query: -- 15:37:45.168 SQL [3362]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 15:37:45.172 SQL [3362]: Found rows: 1 -- 15:37:45.172 FLOG_MAX [3362]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 15:37:45.172 INFO [3362]: long SessionCheck(long uid, const char *sessionid, int create ) -- 15:37:45.172 SQL [3362]: pgsql_exec() -- 15:37:45.172 SQL [3362]: About to run query: -- 15:37:45.172 SQL [3362]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 15:37:45.174 SQL [3362]: PQcmdTuples: 1 -- 15:37:45.174 SQL [3362]: Affected rows: 1 -- 15:37:45.174 SQL [3362]: pgsql_exec() -- 15:37:45.174 SQL [3362]: About to run query: -- 15:37:45.174 SQL [3362]: DELETE FROM members_session WHERE member_id=5 -- 15:37:45.174 SQL [3362]: PQcmdTuples: 0 -- 15:37:45.174 SQL [3362]: Affected rows: 0 -- 15:37:45.174 SQL [3362]: pgsql_query() -- 15:37:45.174 SQL [3362]: About to run query: -- 15:37:45.174 SQL [3362]: SELECT * FROM members_session WHERE member_id=5 AND session<>'52AF9AC7A7F492466F87C9E6CBDDEFC7' -- 15:37:45.175 SQL [3362]: Found rows: 0 -- 15:37:45.175 SQL [3362]: Found rows: 0 -- 15:37:45.175 FLOG_MAX [3362]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:37:45.175 SQL [3362]: pgsql_query() -- 15:37:45.175 SQL [3362]: About to run query: -- 15:37:45.175 SQL [3362]: SELECT * FROM members_session WHERE member_id=5 AND session='52AF9AC7A7F492466F87C9E6CBDDEFC7' -- 15:37:45.175 SQL [3362]: Found rows: 0 -- 15:37:45.175 SQL [3362]: Found rows: 0 -- 15:37:45.175 FLOG_MAX [3362]: insert_db_record() -- 15:37:45.175 SQL [3362]: pgsql_exec() -- 15:37:45.175 SQL [3362]: About to run query: -- 15:37:45.175 SQL [3362]: INSERT INTO members_session (member_id,session) VALUES ('5','52AF9AC7A7F492466F87C9E6CBDDEFC7') -- 15:37:45.177 SQL [3362]: PQcmdTuples: 1 -- 15:37:45.177 SQL [3362]: Affected rows: 1 -- 15:37:45.177 FLOG_MAX [3362]: SELECT currval('members_session_id_seq') -- 15:37:45.177 SQL [3362]: pgsql_query() -- 15:37:45.177 SQL [3362]: About to run query: -- 15:37:45.177 SQL [3362]: SELECT currval('members_session_id_seq') -- 15:37:45.177 SQL [3362]: Found rows: 1 -- 15:37:45.177 INFO [3362]: CreateDefaultPage() -- 15:37:45.177 FLOG_MAX [3362]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:37:45.177 SQL [3362]: pgsql_query() -- 15:37:45.177 SQL [3362]: About to run query: -- 15:37:45.177 SQL [3362]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 15:37:45.177 SQL [3362]: Found rows: 1 -- 15:37:45.177 FLOG_MAX [3362]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 15:37:45.177 SQL [3362]: pgsql_query() -- 15:37:45.177 SQL [3362]: About to run query: -- 15:37:45.178 SQL [3362]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 15:37:45.178 SQL [3362]: Found rows: 1 -- 15:37:45.178 INFO [3362]: /CreateDefaultPage() -- 15:37:45.178 INFO [3362]: /LoginCoreGradeAccount() -- 15:37:45.178 INFO [3362]: RET: added=2020-02-05 06:47:23.982154 -- 15:37:45.178 INFO [3362]: RET: email=ameye+11@chiefsoft.com -- 15:37:45.178 INFO [3362]: RET: firstname=Olu -- 15:37:45.178 INFO [3362]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 15:37:45.178 INFO [3362]: RET: id=5 -- 15:37:45.178 INFO [3362]: RET: last_login= -- 15:37:45.178 INFO [3362]: RET: lastname=Amey -- 15:37:45.178 INFO [3362]: RET: loc=192.168.1.13 -- 15:37:45.178 INFO [3362]: RET: member_id=5 -- 15:37:45.178 INFO [3362]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 15:37:45.178 INFO [3362]: RET: phone= -- 15:37:45.178 INFO [3362]: RET: pid= -- 15:37:45.178 INFO [3362]: RET: result=YES I GET TO BACK END -- 15:37:45.178 INFO [3362]: RET: sessionid=52AF9AC7A7F492466F87C9E6CBDDEFC7 -- 15:37:45.178 INFO [3362]: RET: status=1 -- 15:37:45.178 INFO [3362]: RET: stauts=OK -- 15:37:45.178 INFO [3362]: RET: username=ameye+11@chiefsoft.com -- 15:37:45.178 INFO [3362]: RET: verified= -- 15:37:45.180 INFO [3362]: COREGRADE is stopping... -- 15:37:45.180 DEBUG [3362]: Closing database connection -- 15:37:45.180 SQL [3362]: pgsql_close() -- 15:37:45.134 DEBUG [3362]: Database connection successful -- 15:37:45.134 INFO [3362]: _SERVER found -- 15:37:45.134 INFO [3362]: REMOTE_ADDR = 192.168.1.13 -- 15:37:45.134 INFO [3362]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:45.134 INFO [3362]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1334173575.1583008659; _gat_gtag_UA_54829827_2=1; ci_session=h7ifb4cms1g6fr4sbrjfej9ckc0etmah -- 15:37:45.134 INFO [3362]: QUERY_STRING = /auth -- 15:37:45.134 INFO [3362]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:45.180 INFO [3362]: COREGRADE is stopping... -- 15:37:45.180 DEBUG [3362]: Closing database connection -- 15:37:45.180 SQL [3362]: pgsql_close() -- 15:37:45.193 INFO [3362]: COREGRADE is starting... -- 15:37:45.193 INFO [3362]: Version from config: 1.0 -- 15:37:45.193 DEBUG [3362]: Connecting to database... -- 15:37:45.193 DEBUG [3362]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:45.193 SQL [3362]: pgsql_db_connect() -- 15:37:45.197 DEBUG [3362]: Database connection successful -- 15:37:45.197 INFO [3362]: _SERVER found -- 15:37:45.197 INFO [3362]: REMOTE_ADDR = 192.168.1.13 -- 15:37:45.197 INFO [3362]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:45.197 INFO [3362]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1334173575.1583008659; _gat_gtag_UA_54829827_2=1; ci_session=h7ifb4cms1g6fr4sbrjfej9ckc0etmah -- 15:37:45.197 INFO [3362]: QUERY_STRING = /member/index -- 15:37:45.197 INFO [3362]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:45.237 INFO [3362]: COREGRADE is stopping... -- 15:37:45.237 DEBUG [3362]: Closing database connection -- 15:37:45.237 SQL [3362]: pgsql_close() -- 15:37:45.597 INFO [3362]: COREGRADE is starting... -- 15:37:45.597 INFO [3362]: Version from config: 1.0 -- 15:37:45.597 DEBUG [3362]: Connecting to database... -- 15:37:45.597 DEBUG [3362]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:45.597 SQL [3362]: pgsql_db_connect() -- 15:37:45.601 DEBUG [3362]: Database connection successful -- 15:37:45.601 INFO [3362]: _SERVER found -- 15:37:45.601 INFO [3362]: REMOTE_ADDR = 192.168.1.13 -- 15:37:45.601 INFO [3362]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:45.601 INFO [3362]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1334173575.1583008659; _gat_gtag_UA_54829827_2=1; ci_session=h7ifb4cms1g6fr4sbrjfej9ckc0etmah -- 15:37:45.601 INFO [3362]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:37:45.601 INFO [3362]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:45.612 INFO [3362]: COREGRADE is stopping... -- 15:37:45.612 DEBUG [3362]: Closing database connection -- 15:37:45.612 SQL [3362]: pgsql_close() -- 15:37:46.879 INFO [3362]: COREGRADE is starting... -- 15:37:46.879 INFO [3362]: Version from config: 1.0 -- 15:37:46.879 DEBUG [3362]: Connecting to database... -- 15:37:46.879 DEBUG [3362]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:46.879 SQL [3362]: pgsql_db_connect() -- 15:37:46.883 DEBUG [3362]: Database connection successful -- 15:37:46.883 INFO [3362]: _SERVER found -- 15:37:46.883 INFO [3362]: REMOTE_ADDR = 192.168.1.13 -- 15:37:46.883 INFO [3362]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:46.883 INFO [3362]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1334173575.1583008659; _gat_gtag_UA_54829827_2=1; ci_session=h7ifb4cms1g6fr4sbrjfej9ckc0etmah -- 15:37:46.883 INFO [3362]: QUERY_STRING = /member/page -- 15:37:46.883 INFO [3362]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:46.925 INFO [3362]: COREGRADE is stopping... -- 15:37:46.925 DEBUG [3362]: Closing database connection -- 15:37:46.925 SQL [3362]: pgsql_close() -- 15:37:47.080 INFO [3362]: COREGRADE is starting... -- 15:37:47.081 INFO [3362]: Version from config: 1.0 -- 15:37:47.081 DEBUG [3362]: Connecting to database... -- 15:37:47.081 DEBUG [3362]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:47.081 SQL [3362]: pgsql_db_connect() -- 15:37:47.085 DEBUG [3362]: Database connection successful -- 15:37:47.085 INFO [3362]: _SERVER found -- 15:37:47.085 INFO [3362]: REMOTE_ADDR = 192.168.1.13 -- 15:37:47.085 INFO [3362]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:47.085 INFO [3362]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1334173575.1583008659; _gat_gtag_UA_54829827_2=1; ci_session=h7ifb4cms1g6fr4sbrjfej9ckc0etmah -- 15:37:47.085 INFO [3362]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:37:47.085 INFO [3362]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:47.096 INFO [3362]: COREGRADE is stopping... -- 15:37:47.096 DEBUG [3362]: Closing database connection -- 15:37:47.096 SQL [3362]: pgsql_close() -- 15:37:51.767 INFO [3362]: COREGRADE is starting... -- 15:37:51.768 INFO [3362]: Version from config: 1.0 -- 15:37:51.768 DEBUG [3362]: Connecting to database... -- 15:37:51.768 DEBUG [3362]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:51.768 SQL [3362]: pgsql_db_connect() -- 15:37:51.772 DEBUG [3362]: Database connection successful -- 15:37:51.772 INFO [3362]: _SERVER found -- 15:37:51.772 INFO [3362]: REMOTE_ADDR = 192.168.1.13 -- 15:37:51.772 INFO [3362]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:51.772 INFO [3362]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1334173575.1583008659; _gat_gtag_UA_54829827_2=1; ci_session=h7ifb4cms1g6fr4sbrjfej9ckc0etmah -- 15:37:51.772 INFO [3362]: QUERY_STRING = /member/viewCardAddAction -- 15:37:51.772 INFO [3362]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:51.803 INFO [3362]: COREGRADE is stopping... -- 15:37:51.803 DEBUG [3362]: Closing database connection -- 15:37:51.803 SQL [3362]: pgsql_close() -- 15:37:56.442 INFO [3362]: COREGRADE is starting... -- 15:37:56.442 INFO [3362]: Version from config: 1.0 -- 15:37:56.442 DEBUG [3362]: Connecting to database... -- 15:37:56.442 DEBUG [3362]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:56.442 SQL [3362]: pgsql_db_connect() -- 15:37:56.446 DEBUG [3362]: Database connection successful -- 15:37:56.446 INFO [3362]: _SERVER found -- 15:37:56.446 INFO [3362]: REMOTE_ADDR = 192.168.1.13 -- 15:37:56.446 INFO [3362]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:56.446 INFO [3362]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1334173575.1583008659; _gat_gtag_UA_54829827_2=1; ci_session=h7ifb4cms1g6fr4sbrjfej9ckc0etmah -- 15:37:56.446 INFO [3362]: QUERY_STRING = /member/page -- 15:37:56.446 INFO [3362]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:56.486 INFO [3362]: COREGRADE is stopping... -- 15:37:56.486 DEBUG [3362]: Closing database connection -- 15:37:56.486 SQL [3362]: pgsql_close() -- 15:37:56.721 INFO [3362]: COREGRADE is starting... -- 15:37:56.721 INFO [3362]: Version from config: 1.0 -- 15:37:56.721 DEBUG [3362]: Connecting to database... -- 15:37:56.721 DEBUG [3362]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:56.721 SQL [3362]: pgsql_db_connect() -- 15:37:56.725 DEBUG [3362]: Database connection successful -- 15:37:56.725 INFO [3362]: _SERVER found -- 15:37:56.725 INFO [3362]: REMOTE_ADDR = 192.168.1.13 -- 15:37:56.725 INFO [3362]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:56.725 INFO [3362]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1334173575.1583008659; _gat_gtag_UA_54829827_2=1; ci_session=h7ifb4cms1g6fr4sbrjfej9ckc0etmah -- 15:37:56.725 INFO [3362]: QUERY_STRING = /member/page -- 15:37:56.725 INFO [3362]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:56.765 INFO [3362]: COREGRADE is stopping... -- 15:37:56.765 DEBUG [3362]: Closing database connection -- 15:37:56.765 SQL [3362]: pgsql_close() -- 15:37:56.812 INFO [2778]: COREGRADE is starting... -- 15:37:56.813 INFO [2778]: Version from config: 1.0 -- 15:37:56.813 DEBUG [2778]: Connecting to database... -- 15:37:56.813 DEBUG [2778]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:56.813 SQL [2778]: pgsql_db_connect() -- 15:37:56.817 DEBUG [2778]: Database connection successful -- 15:37:56.817 INFO [2778]: _SERVER found -- 15:37:56.817 INFO [2778]: REMOTE_ADDR = 192.168.1.13 -- 15:37:56.817 INFO [2778]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:56.817 INFO [2778]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1334173575.1583008659; _gat_gtag_UA_54829827_2=1; ci_session=h7ifb4cms1g6fr4sbrjfej9ckc0etmah -- 15:37:56.817 INFO [2778]: QUERY_STRING = /member/page -- 15:37:56.817 INFO [2778]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:56.862 INFO [2778]: COREGRADE is stopping... -- 15:37:56.862 DEBUG [2778]: Closing database connection -- 15:37:56.862 SQL [2778]: pgsql_close() -- 15:37:56.972 INFO [3362]: COREGRADE is starting... -- 15:37:56.972 INFO [3362]: Version from config: 1.0 -- 15:37:56.972 DEBUG [3362]: Connecting to database... -- 15:37:56.972 DEBUG [3362]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:56.972 SQL [3362]: pgsql_db_connect() -- 15:37:56.976 DEBUG [3362]: Database connection successful -- 15:37:56.976 INFO [3362]: _SERVER found -- 15:37:56.976 INFO [3362]: REMOTE_ADDR = 192.168.1.13 -- 15:37:56.976 INFO [3362]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:56.976 INFO [3362]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1334173575.1583008659; _gat_gtag_UA_54829827_2=1; ci_session=h7ifb4cms1g6fr4sbrjfej9ckc0etmah -- 15:37:56.976 INFO [3362]: QUERY_STRING = /member/page -- 15:37:56.976 INFO [3362]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:57.016 INFO [3362]: COREGRADE is stopping... -- 15:37:57.016 DEBUG [3362]: Closing database connection -- 15:37:57.016 SQL [3362]: pgsql_close() -- 15:37:57.529 INFO [3362]: COREGRADE is starting... -- 15:37:57.529 INFO [3362]: Version from config: 1.0 -- 15:37:57.529 DEBUG [3362]: Connecting to database... -- 15:37:57.530 DEBUG [3362]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:57.530 SQL [3362]: pgsql_db_connect() -- 15:37:57.534 DEBUG [3362]: Database connection successful -- 15:37:57.534 INFO [3362]: _SERVER found -- 15:37:57.534 INFO [3362]: REMOTE_ADDR = 192.168.1.13 -- 15:37:57.534 INFO [3362]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:57.534 INFO [3362]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1334173575.1583008659; _gat_gtag_UA_54829827_2=1; ci_session=h7ifb4cms1g6fr4sbrjfej9ckc0etmah -- 15:37:57.534 INFO [3362]: QUERY_STRING = /member/upload -- 15:37:57.534 INFO [3362]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:57.565 INFO [3362]: COREGRADE is stopping... -- 15:37:57.565 DEBUG [3362]: Closing database connection -- 15:37:57.565 SQL [3362]: pgsql_close() -- 18:17:47.322 INFO [7720]: COREGRADE is starting... -- 18:17:47.322 INFO [7720]: Version from config: 1.0 -- 18:17:47.322 DEBUG [7720]: Connecting to database... -- 18:17:47.322 DEBUG [7720]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:47.322 SQL [7720]: pgsql_db_connect() -- 18:17:47.327 DEBUG [7720]: Database connection successful -- 18:17:47.327 INFO [7720]: _SERVER found -- 18:17:47.327 INFO [7720]: REMOTE_ADDR = 192.168.1.13 -- 18:17:47.327 INFO [7720]: SERVER_NAME = oameye.works.coregrade.com -- 18:17:47.327 INFO [7720]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1334173575.1583008659 -- 18:17:47.327 INFO [7720]: QUERY_STRING = /auth -- 18:17:47.327 INFO [7720]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:17:47.369 INFO [7720]: COREGRADE is stopping... -- 18:17:47.369 DEBUG [7720]: Closing database connection -- 18:17:47.369 SQL [7720]: pgsql_close() -- 18:17:47.571 INFO [7720]: COREGRADE is starting... -- 18:17:47.571 INFO [7720]: Version from config: 1.0 -- 18:17:47.571 DEBUG [7720]: Connecting to database... -- 18:17:47.571 DEBUG [7720]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:47.571 SQL [7720]: pgsql_db_connect() -- 18:17:47.575 DEBUG [7720]: Database connection successful -- 18:17:47.575 INFO [7720]: _SERVER found -- 18:17:47.575 INFO [7720]: REMOTE_ADDR = 192.168.1.13 -- 18:17:47.575 INFO [7720]: SERVER_NAME = oameye.works.coregrade.com -- 18:17:47.575 INFO [7720]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1334173575.1583008659; ci_session=b9vu3q4pr0nlch2di3hqo6mk6bvq8vko -- 18:17:47.575 INFO [7720]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:17:47.575 INFO [7720]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:17:47.587 INFO [7720]: COREGRADE is stopping... -- 18:17:47.587 DEBUG [7720]: Closing database connection -- 18:17:47.587 SQL [7720]: pgsql_close() -- 23:12:48.007 INFO [2781]: COREGRADE is starting... -- 23:12:48.007 INFO [2781]: Version from config: 1.0 -- 23:12:48.007 DEBUG [2781]: Connecting to database... -- 23:12:48.007 DEBUG [2781]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:12:48.007 SQL [2781]: pgsql_db_connect() -- 23:12:48.012 DEBUG [2781]: Database connection successful -- 23:12:48.012 INFO [2781]: _SERVER found -- 23:12:48.012 INFO [2781]: REMOTE_ADDR = 192.168.1.13 -- 23:12:48.012 INFO [2781]: SERVER_NAME = oameye.works.coregrade.com -- 23:12:48.012 INFO [2781]: QUERY_STRING = -- 23:12:48.012 INFO [2781]: HTTP_X_FORWARDED_FOR = 128.14.133.58 -- 23:12:48.050 INFO [2781]: COREGRADE is stopping... -- 23:12:48.050 DEBUG [2781]: Closing database connection -- 23:12:48.050 SQL [2781]: pgsql_close() -- 00:08:31.498 INFO [2777]: COREGRADE is starting... -- 00:08:31.499 INFO [2777]: Version from config: 1.0 -- 00:08:31.499 DEBUG [2777]: Connecting to database... -- 00:08:31.499 DEBUG [2777]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:31.499 SQL [2777]: pgsql_db_connect() -- 00:08:31.503 DEBUG [2777]: Database connection successful -- 00:08:31.503 INFO [2777]: _SERVER found -- 00:08:31.503 INFO [2777]: REMOTE_ADDR = 192.168.1.13 -- 00:08:31.503 INFO [2777]: SERVER_NAME = oameye.works.coregrade.com -- 00:08:31.503 INFO [2777]: QUERY_STRING = /solr/admin/info/system -- 00:08:31.503 INFO [2777]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 00:08:31.518 INFO [2777]: COREGRADE is stopping... -- 00:08:31.518 DEBUG [2777]: Closing database connection -- 00:08:31.518 SQL [2777]: pgsql_close() -- 00:17:07.384 INFO [2774]: COREGRADE is starting... -- 00:17:07.384 INFO [2774]: Version from config: 1.0 -- 00:17:07.384 DEBUG [2774]: Connecting to database... -- 00:17:07.385 DEBUG [2774]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:17:07.385 SQL [2774]: pgsql_db_connect() -- 00:17:07.389 DEBUG [2774]: Database connection successful -- 00:17:07.389 INFO [2774]: _SERVER found -- 00:17:07.389 INFO [2774]: REMOTE_ADDR = 192.168.1.13 -- 00:17:07.389 INFO [2774]: SERVER_NAME = oameye.works.coregrade.com -- 00:17:07.389 INFO [2774]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 00:17:07.389 INFO [2774]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 00:17:07.433 INFO [2774]: COREGRADE is stopping... -- 00:17:07.433 DEBUG [2774]: Closing database connection -- 00:17:07.433 SQL [2774]: pgsql_close() -- 00:17:08.377 INFO [2774]: COREGRADE is starting... -- 00:17:08.377 INFO [2774]: Version from config: 1.0 -- 00:17:08.377 DEBUG [2774]: Connecting to database... -- 00:17:08.377 DEBUG [2774]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:17:08.377 SQL [2774]: pgsql_db_connect() -- 00:17:08.381 DEBUG [2774]: Database connection successful -- 00:17:08.381 INFO [2774]: _SERVER found -- 00:17:08.381 INFO [2774]: REMOTE_ADDR = 192.168.1.13 -- 00:17:08.381 INFO [2774]: SERVER_NAME = oameye.works.coregrade.com -- 00:17:08.381 INFO [2774]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 00:17:08.381 INFO [2774]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 00:17:08.413 INFO [2774]: COREGRADE is stopping... -- 00:17:08.413 DEBUG [2774]: Closing database connection -- 00:17:08.413 SQL [2774]: pgsql_close() -- 00:21:15.903 INFO [7721]: COREGRADE is starting... -- 00:21:15.903 INFO [7721]: Version from config: 1.0 -- 00:21:15.903 DEBUG [7721]: Connecting to database... -- 00:21:15.903 DEBUG [7721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:21:15.903 SQL [7721]: pgsql_db_connect() -- 00:21:15.907 DEBUG [7721]: Database connection successful -- 00:21:15.907 INFO [7721]: _SERVER found -- 00:21:15.907 INFO [7721]: REMOTE_ADDR = 192.168.1.13 -- 00:21:15.907 INFO [7721]: SERVER_NAME = oameye.works.coregrade.com -- 00:21:15.907 INFO [7721]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 00:21:15.907 INFO [7721]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 00:21:15.951 INFO [7721]: COREGRADE is stopping... -- 00:21:15.951 DEBUG [7721]: Closing database connection -- 00:21:15.951 SQL [7721]: pgsql_close() -- 00:43:16.115 INFO [5999]: COREGRADE is starting... -- 00:43:16.115 INFO [5999]: Version from config: 1.0 -- 00:43:16.115 DEBUG [5999]: Connecting to database... -- 00:43:16.116 DEBUG [5999]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:43:16.116 SQL [5999]: pgsql_db_connect() -- 00:43:16.120 DEBUG [5999]: Database connection successful -- 00:43:16.120 INFO [5999]: _SERVER found -- 00:43:16.120 INFO [5999]: REMOTE_ADDR = 192.168.1.13 -- 00:43:16.120 INFO [5999]: SERVER_NAME = oameye.works.coregrade.com -- 00:43:16.120 INFO [5999]: QUERY_STRING = -- 00:43:16.120 INFO [5999]: HTTP_X_FORWARDED_FOR = 167.172.25.63 -- 00:43:16.159 INFO [5999]: COREGRADE is stopping... -- 00:43:16.159 DEBUG [5999]: Closing database connection -- 00:43:16.159 SQL [5999]: pgsql_close() -- 02:53:52.015 INFO [2775]: COREGRADE is starting... -- 02:53:52.015 INFO [2775]: Version from config: 1.0 -- 02:53:52.015 DEBUG [2775]: Connecting to database... -- 02:53:52.015 DEBUG [2775]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:53:52.015 SQL [2775]: pgsql_db_connect() -- 02:53:52.020 DEBUG [2775]: Database connection successful -- 02:53:52.020 INFO [2775]: _SERVER found -- 02:53:52.020 INFO [2775]: REMOTE_ADDR = 192.168.1.13 -- 02:53:52.020 INFO [2775]: SERVER_NAME = oameye.works.coregrade.com -- 02:53:52.020 INFO [2775]: QUERY_STRING = /.well-known/acme-challenge/7xz18lym3Z8rzconjuqVQoDqFbmCy2SChwoOBUNHI44 -- 02:53:52.020 INFO [2775]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 02:53:52.061 INFO [2775]: COREGRADE is stopping... -- 02:53:52.061 DEBUG [2775]: Closing database connection -- 02:53:52.061 SQL [2775]: pgsql_close() -- 02:53:52.152 INFO [2775]: COREGRADE is starting... -- 02:53:52.152 INFO [2775]: Version from config: 1.0 -- 02:53:52.152 DEBUG [2775]: Connecting to database... -- 02:53:52.152 DEBUG [2775]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:53:52.152 SQL [2775]: pgsql_db_connect() -- 02:53:52.157 DEBUG [2775]: Database connection successful -- 02:53:52.157 INFO [2775]: _SERVER found -- 02:53:52.157 INFO [2775]: REMOTE_ADDR = 192.168.1.13 -- 02:53:52.157 INFO [2775]: SERVER_NAME = oameye.works.coregrade.com -- 02:53:52.157 INFO [2775]: QUERY_STRING = /.well-known/acme-challenge/7xz18lym3Z8rzconjuqVQoDqFbmCy2SChwoOBUNHI44 -- 02:53:52.157 INFO [2775]: HTTP_X_FORWARDED_FOR = 34.222.229.130 -- 02:53:52.168 INFO [2775]: COREGRADE is stopping... -- 02:53:52.168 DEBUG [2775]: Closing database connection -- 02:53:52.168 SQL [2775]: pgsql_close() -- 02:53:52.282 INFO [3362]: COREGRADE is starting... -- 02:53:52.282 INFO [3362]: Version from config: 1.0 -- 02:53:52.282 DEBUG [3362]: Connecting to database... -- 02:53:52.282 DEBUG [3362]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:53:52.282 SQL [3362]: pgsql_db_connect() -- 02:53:52.286 DEBUG [3362]: Database connection successful -- 02:53:52.286 INFO [3362]: _SERVER found -- 02:53:52.286 INFO [3362]: REMOTE_ADDR = 192.168.1.13 -- 02:53:52.286 INFO [3362]: SERVER_NAME = oameye.works.coregrade.com -- 02:53:52.286 INFO [3362]: QUERY_STRING = /.well-known/acme-challenge/7xz18lym3Z8rzconjuqVQoDqFbmCy2SChwoOBUNHI44 -- 02:53:52.286 INFO [3362]: HTTP_X_FORWARDED_FOR = 52.28.236.88 -- 02:53:52.299 INFO [3362]: COREGRADE is stopping... -- 02:53:52.299 DEBUG [3362]: Closing database connection -- 02:53:52.299 SQL [3362]: pgsql_close() -- 02:53:52.425 INFO [3362]: COREGRADE is starting... -- 02:53:52.425 INFO [3362]: Version from config: 1.0 -- 02:53:52.425 DEBUG [3362]: Connecting to database... -- 02:53:52.425 DEBUG [3362]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:53:52.425 SQL [3362]: pgsql_db_connect() -- 02:53:52.429 DEBUG [3362]: Database connection successful -- 02:53:52.429 INFO [3362]: _SERVER found -- 02:53:52.429 INFO [3362]: REMOTE_ADDR = 192.168.1.13 -- 02:53:52.429 INFO [3362]: SERVER_NAME = oameye.works.coregrade.com -- 02:53:52.429 INFO [3362]: QUERY_STRING = /.well-known/acme-challenge/7xz18lym3Z8rzconjuqVQoDqFbmCy2SChwoOBUNHI44 -- 02:53:52.429 INFO [3362]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 02:53:52.440 INFO [3362]: COREGRADE is stopping... -- 02:53:52.440 DEBUG [3362]: Closing database connection -- 02:53:52.440 SQL [3362]: pgsql_close() -- 03:49:34.871 INFO [13051]: COREGRADE is starting... -- 03:49:34.872 INFO [13051]: Version from config: 1.0 -- 03:49:34.872 DEBUG [13051]: Connecting to database... -- 03:49:34.872 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:49:34.872 SQL [13051]: pgsql_db_connect() -- 03:49:34.877 DEBUG [13051]: Database connection successful -- 03:49:34.877 INFO [13051]: _SERVER found -- 03:49:34.877 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 03:49:34.877 INFO [13051]: SERVER_NAME = tokslaw.works.coregrade.com -- 03:49:34.877 INFO [13051]: QUERY_STRING = -- 03:49:34.877 INFO [13051]: HTTP_X_FORWARDED_FOR = 167.71.110.62 -- 03:49:34.924 INFO [13051]: COREGRADE is stopping... -- 03:49:34.924 DEBUG [13051]: Closing database connection -- 03:49:34.924 SQL [13051]: pgsql_close() -- 06:50:55.917 INFO [13052]: COREGRADE is starting... -- 06:50:55.918 INFO [13052]: Version from config: 1.0 -- 06:50:55.918 DEBUG [13052]: Connecting to database... -- 06:50:55.918 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:50:55.918 SQL [13052]: pgsql_db_connect() -- 06:50:55.923 DEBUG [13052]: Database connection successful -- 06:50:55.923 INFO [13052]: _SERVER found -- 06:50:55.923 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 06:50:55.923 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 06:50:55.923 INFO [13052]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 06:50:55.923 INFO [13052]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 06:50:55.942 INFO [13052]: COREGRADE is stopping... -- 06:50:55.942 DEBUG [13052]: Closing database connection -- 06:50:55.942 SQL [13052]: pgsql_close() -- 16:01:08.974 INFO [13053]: COREGRADE is starting... -- 16:01:08.974 INFO [13053]: Version from config: 1.0 -- 16:01:08.974 DEBUG [13053]: Connecting to database... -- 16:01:08.974 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:01:08.974 SQL [13053]: pgsql_db_connect() -- 16:01:09.029 INFO [13053]: COREGRADE is starting... -- 16:01:09.029 INFO [13053]: Version from config: 1.0 -- 16:01:09.029 DEBUG [13053]: Connecting to database... -- 16:01:09.029 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:01:09.029 SQL [13053]: pgsql_db_connect() -- 16:01:09.034 DEBUG [13053]: Database connection successful -- 16:01:09.034 INFO [13053]: _SERVER found -- 16:01:09.034 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 16:01:09.034 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 16:01:09.034 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 16:01:09.034 INFO [13053]: QUERY_STRING = -- 16:01:09.034 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:01:09.034 INFO [13053]: SystemStatus()09-09-********~************ -- 16:01:09.034 INFO [13053]: long coregrade_api_main(CVars in, CVars &out) -- 16:01:09.034 INFO [13053]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 16:01:09.034 INFO [13053]: account calls -- 16:01:09.034 INFO [13053]: account_calls() -- 16:01:09.034 INFO [13053]: LoginCoreGradeAccount() -- 16:01:09.035 FLOG_MAX [13053]: REQ_STRING(username) -- 16:01:09.035 FLOG_MAX [13053]: REQ_STRING(password) -- 16:01:09.035 FLOG_MAX [13053]: REQ_STRING(sessionid) -- 16:01:09.035 FLOG_MAX [13053]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:01:09.035 SQL [13053]: pgsql_query() -- 16:01:09.035 SQL [13053]: About to run query: -- 16:01:09.035 SQL [13053]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 16:01:09.039 SQL [13053]: Found rows: 1 -- 16:01:09.039 FLOG_MAX [13053]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 16:01:09.039 INFO [13053]: long SessionCheck(long uid, const char *sessionid, int create ) -- 16:01:09.039 SQL [13053]: pgsql_exec() -- 16:01:09.039 SQL [13053]: About to run query: -- 16:01:09.039 SQL [13053]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 16:01:09.040 SQL [13053]: PQcmdTuples: 1 -- 16:01:09.040 SQL [13053]: Affected rows: 1 -- 16:01:09.040 SQL [13053]: pgsql_exec() -- 16:01:09.040 SQL [13053]: About to run query: -- 16:01:09.040 SQL [13053]: DELETE FROM members_session WHERE member_id=5 -- 16:01:09.040 SQL [13053]: PQcmdTuples: 0 -- 16:01:09.040 SQL [13053]: Affected rows: 0 -- 16:01:09.040 SQL [13053]: pgsql_query() -- 16:01:09.040 SQL [13053]: About to run query: -- 16:01:09.040 SQL [13053]: SELECT * FROM members_session WHERE member_id=5 AND session<>'CEA1719CB66540EC485BBF588BC80CEE' -- 16:01:09.041 SQL [13053]: Found rows: 0 -- 16:01:09.041 SQL [13053]: Found rows: 0 -- 16:01:09.041 FLOG_MAX [13053]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:01:09.041 SQL [13053]: pgsql_query() -- 16:01:09.041 SQL [13053]: About to run query: -- 16:01:09.041 SQL [13053]: SELECT * FROM members_session WHERE member_id=5 AND session='CEA1719CB66540EC485BBF588BC80CEE' -- 16:01:09.042 SQL [13053]: Found rows: 0 -- 16:01:09.042 SQL [13053]: Found rows: 0 -- 16:01:09.042 FLOG_MAX [13053]: insert_db_record() -- 16:01:09.042 SQL [13053]: pgsql_exec() -- 16:01:09.042 SQL [13053]: About to run query: -- 16:01:09.042 SQL [13053]: INSERT INTO members_session (member_id,session) VALUES ('5','CEA1719CB66540EC485BBF588BC80CEE') -- 16:01:09.043 SQL [13053]: PQcmdTuples: 1 -- 16:01:09.043 SQL [13053]: Affected rows: 1 -- 16:01:09.043 FLOG_MAX [13053]: SELECT currval('members_session_id_seq') -- 16:01:09.043 SQL [13053]: pgsql_query() -- 16:01:09.043 SQL [13053]: About to run query: -- 16:01:09.043 SQL [13053]: SELECT currval('members_session_id_seq') -- 16:01:09.044 SQL [13053]: Found rows: 1 -- 16:01:09.044 INFO [13053]: CreateDefaultPage() -- 16:01:09.044 FLOG_MAX [13053]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:01:09.044 SQL [13053]: pgsql_query() -- 16:01:09.044 SQL [13053]: About to run query: -- 16:01:09.044 SQL [13053]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 16:01:09.044 SQL [13053]: Found rows: 1 -- 16:01:09.044 FLOG_MAX [13053]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 16:01:09.044 SQL [13053]: pgsql_query() -- 16:01:09.044 SQL [13053]: About to run query: -- 16:01:09.044 SQL [13053]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 16:01:09.045 SQL [13053]: Found rows: 1 -- 16:01:09.045 INFO [13053]: /CreateDefaultPage() -- 16:01:09.045 INFO [13053]: /LoginCoreGradeAccount() -- 16:01:09.045 INFO [13053]: RET: added=2020-02-05 06:47:23.982154 -- 16:01:09.045 INFO [13053]: RET: email=ameye+11@chiefsoft.com -- 16:01:09.045 INFO [13053]: RET: firstname=Olu -- 16:01:09.045 INFO [13053]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 16:01:09.045 INFO [13053]: RET: id=5 -- 16:01:09.045 INFO [13053]: RET: last_login= -- 16:01:09.045 INFO [13053]: RET: lastname=Amey -- 16:01:09.045 INFO [13053]: RET: loc=192.168.1.13 -- 16:01:09.045 INFO [13053]: RET: member_id=5 -- 16:01:09.045 INFO [13053]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 16:01:09.045 INFO [13053]: RET: phone= -- 16:01:09.045 INFO [13053]: RET: pid= -- 16:01:09.045 INFO [13053]: RET: result=YES I GET TO BACK END -- 16:01:09.045 INFO [13053]: RET: sessionid=CEA1719CB66540EC485BBF588BC80CEE -- 16:01:09.045 INFO [13053]: RET: status=1 -- 16:01:09.045 INFO [13053]: RET: stauts=OK -- 16:01:09.045 INFO [13053]: RET: username=ameye+11@chiefsoft.com -- 16:01:09.045 INFO [13053]: RET: verified= -- 16:01:09.046 INFO [13053]: COREGRADE is stopping... -- 16:01:09.046 DEBUG [13053]: Closing database connection -- 16:01:09.046 SQL [13053]: pgsql_close() -- 16:01:08.980 DEBUG [13053]: Database connection successful -- 16:01:08.980 INFO [13053]: _SERVER found -- 16:01:08.980 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 16:01:08.980 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 16:01:08.980 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 16:01:08.980 INFO [13053]: QUERY_STRING = /auth -- 16:01:08.980 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:01:09.047 INFO [13053]: COREGRADE is stopping... -- 16:01:09.047 DEBUG [13053]: Closing database connection -- 16:01:09.047 SQL [13053]: pgsql_close() -- 16:01:09.064 INFO [13053]: COREGRADE is starting... -- 16:01:09.065 INFO [13053]: Version from config: 1.0 -- 16:01:09.065 DEBUG [13053]: Connecting to database... -- 16:01:09.065 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:01:09.065 SQL [13053]: pgsql_db_connect() -- 16:01:09.068 DEBUG [13053]: Database connection successful -- 16:01:09.068 INFO [13053]: _SERVER found -- 16:01:09.068 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 16:01:09.068 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 16:01:09.068 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=j5oho4uhdkvrg485mvj46j06mu3k1nb9 -- 16:01:09.068 INFO [13053]: QUERY_STRING = /member/index -- 16:01:09.068 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:01:09.112 INFO [13053]: COREGRADE is stopping... -- 16:01:09.112 DEBUG [13053]: Closing database connection -- 16:01:09.112 SQL [13053]: pgsql_close() -- 16:01:09.609 INFO [13053]: COREGRADE is starting... -- 16:01:09.609 INFO [13053]: Version from config: 1.0 -- 16:01:09.609 DEBUG [13053]: Connecting to database... -- 16:01:09.609 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:01:09.609 SQL [13053]: pgsql_db_connect() -- 16:01:09.613 DEBUG [13053]: Database connection successful -- 16:01:09.614 INFO [13053]: _SERVER found -- 16:01:09.614 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 16:01:09.614 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 16:01:09.614 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=j5oho4uhdkvrg485mvj46j06mu3k1nb9 -- 16:01:09.614 INFO [13053]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:01:09.614 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:01:09.625 INFO [13053]: COREGRADE is stopping... -- 16:01:09.625 DEBUG [13053]: Closing database connection -- 16:01:09.625 SQL [13053]: pgsql_close() -- 16:01:10.757 INFO [13053]: COREGRADE is starting... -- 16:01:10.757 INFO [13053]: Version from config: 1.0 -- 16:01:10.757 DEBUG [13053]: Connecting to database... -- 16:01:10.757 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:01:10.757 SQL [13053]: pgsql_db_connect() -- 16:01:10.761 DEBUG [13053]: Database connection successful -- 16:01:10.761 INFO [13053]: _SERVER found -- 16:01:10.761 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 16:01:10.761 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 16:01:10.761 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=j5oho4uhdkvrg485mvj46j06mu3k1nb9 -- 16:01:10.761 INFO [13053]: QUERY_STRING = /member/page -- 16:01:10.761 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:01:10.804 INFO [13053]: COREGRADE is stopping... -- 16:01:10.804 DEBUG [13053]: Closing database connection -- 16:01:10.804 SQL [13053]: pgsql_close() -- 16:01:10.941 INFO [13123]: COREGRADE is starting... -- 16:01:10.941 INFO [13123]: Version from config: 1.0 -- 16:01:10.941 DEBUG [13123]: Connecting to database... -- 16:01:10.941 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:01:10.941 SQL [13123]: pgsql_db_connect() -- 16:01:10.946 DEBUG [13123]: Database connection successful -- 16:01:10.946 INFO [13123]: _SERVER found -- 16:01:10.946 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 16:01:10.946 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 16:01:10.946 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=j5oho4uhdkvrg485mvj46j06mu3k1nb9 -- 16:01:10.946 INFO [13123]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:01:10.946 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:01:10.961 INFO [13123]: COREGRADE is stopping... -- 16:01:10.961 DEBUG [13123]: Closing database connection -- 16:01:10.961 SQL [13123]: pgsql_close() -- 16:25:39.297 INFO [13051]: COREGRADE is starting... -- 16:25:39.297 INFO [13051]: Version from config: 1.0 -- 16:25:39.297 DEBUG [13051]: Connecting to database... -- 16:25:39.298 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:39.298 SQL [13051]: pgsql_db_connect() -- 16:25:39.302 DEBUG [13051]: Database connection successful -- 16:25:39.302 INFO [13051]: _SERVER found -- 16:25:39.302 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 16:25:39.302 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 16:25:39.302 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=j5oho4uhdkvrg485mvj46j06mu3k1nb9 -- 16:25:39.302 INFO [13051]: QUERY_STRING = /member/viewCardAddAction -- 16:25:39.302 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:39.339 INFO [13051]: COREGRADE is stopping... -- 16:25:39.339 DEBUG [13051]: Closing database connection -- 16:25:39.339 SQL [13051]: pgsql_close() -- 16:30:59.053 INFO [13052]: COREGRADE is starting... -- 16:30:59.053 INFO [13052]: Version from config: 1.0 -- 16:30:59.053 DEBUG [13052]: Connecting to database... -- 16:30:59.053 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:30:59.053 SQL [13052]: pgsql_db_connect() -- 16:30:59.058 DEBUG [13052]: Database connection successful -- 16:30:59.058 INFO [13052]: _SERVER found -- 16:30:59.058 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 16:30:59.058 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 16:30:59.058 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=j5oho4uhdkvrg485mvj46j06mu3k1nb9; _gid=GA1.2.1633405250.1583097974 -- 16:30:59.058 INFO [13052]: QUERY_STRING = /member/page -- 16:30:59.058 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:30:59.108 INFO [13052]: COREGRADE is stopping... -- 16:30:59.109 DEBUG [13052]: Closing database connection -- 16:30:59.109 SQL [13052]: pgsql_close() -- 16:30:59.453 INFO [16100]: COREGRADE is starting... -- 16:30:59.454 INFO [16100]: Version from config: 1.0 -- 16:30:59.454 DEBUG [16100]: Connecting to database... -- 16:30:59.454 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:30:59.454 SQL [16100]: pgsql_db_connect() -- 16:30:59.458 DEBUG [16100]: Database connection successful -- 16:30:59.458 INFO [16100]: _SERVER found -- 16:30:59.458 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 16:30:59.458 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 16:30:59.458 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=o8hpq4kp5ft9irft9q47qugq501u0id7 -- 16:30:59.458 INFO [16100]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:30:59.458 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:30:59.473 INFO [16100]: COREGRADE is stopping... -- 16:30:59.473 DEBUG [16100]: Closing database connection -- 16:30:59.474 SQL [16100]: pgsql_close() -- 16:34:50.262 INFO [16105]: COREGRADE is starting... -- 16:34:50.263 INFO [16105]: Version from config: 1.0 -- 16:34:50.263 DEBUG [16105]: Connecting to database... -- 16:34:50.263 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:34:50.263 SQL [16105]: pgsql_db_connect() -- 16:34:50.267 DEBUG [16105]: Database connection successful -- 16:34:50.267 INFO [16105]: _SERVER found -- 16:34:50.267 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 16:34:50.267 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 16:34:50.267 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=o8hpq4kp5ft9irft9q47qugq501u0id7 -- 16:34:50.267 INFO [16105]: QUERY_STRING = /member/viewCardAddAction -- 16:34:50.267 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:34:50.308 INFO [16105]: COREGRADE is stopping... -- 16:34:50.308 DEBUG [16105]: Closing database connection -- 16:34:50.308 SQL [16105]: pgsql_close() -- 16:34:56.240 INFO [13055]: COREGRADE is starting... -- 16:34:56.240 INFO [13055]: Version from config: 1.0 -- 16:34:56.240 DEBUG [13055]: Connecting to database... -- 16:34:56.240 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:34:56.240 SQL [13055]: pgsql_db_connect() -- 16:34:56.245 DEBUG [13055]: Database connection successful -- 16:34:56.245 INFO [13055]: _SERVER found -- 16:34:56.245 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 16:34:56.245 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 16:34:56.245 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=o8hpq4kp5ft9irft9q47qugq501u0id7 -- 16:34:56.245 INFO [13055]: QUERY_STRING = /member/page -- 16:34:56.245 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:34:56.292 INFO [13055]: COREGRADE is stopping... -- 16:34:56.292 DEBUG [13055]: Closing database connection -- 16:34:56.292 SQL [13055]: pgsql_close() -- 16:34:58.818 INFO [13055]: COREGRADE is starting... -- 16:34:58.818 INFO [13055]: Version from config: 1.0 -- 16:34:58.818 DEBUG [13055]: Connecting to database... -- 16:34:58.818 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:34:58.818 SQL [13055]: pgsql_db_connect() -- 16:34:58.822 DEBUG [13055]: Database connection successful -- 16:34:58.822 INFO [13055]: _SERVER found -- 16:34:58.822 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 16:34:58.822 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 16:34:58.822 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=o8hpq4kp5ft9irft9q47qugq501u0id7 -- 16:34:58.822 INFO [13055]: QUERY_STRING = /member/upload -- 16:34:58.822 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:34:58.853 INFO [13055]: COREGRADE is stopping... -- 16:34:58.853 DEBUG [13055]: Closing database connection -- 16:34:58.853 SQL [13055]: pgsql_close() -- 16:45:37.533 INFO [13054]: COREGRADE is starting... -- 16:45:37.534 INFO [13054]: Version from config: 1.0 -- 16:45:37.534 DEBUG [13054]: Connecting to database... -- 16:45:37.534 DEBUG [13054]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:45:37.534 SQL [13054]: pgsql_db_connect() -- 16:45:37.538 DEBUG [13054]: Database connection successful -- 16:45:37.538 INFO [13054]: _SERVER found -- 16:45:37.538 INFO [13054]: REMOTE_ADDR = 192.168.1.13 -- 16:45:37.538 INFO [13054]: SERVER_NAME = oameye.works.coregrade.com -- 16:45:37.538 INFO [13054]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=o8hpq4kp5ft9irft9q47qugq501u0id7 -- 16:45:37.538 INFO [13054]: QUERY_STRING = /member/page -- 16:45:37.538 INFO [13054]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:45:37.589 INFO [13054]: COREGRADE is stopping... -- 16:45:37.589 DEBUG [13054]: Closing database connection -- 16:45:37.589 SQL [13054]: pgsql_close() -- 16:45:37.779 INFO [13123]: COREGRADE is starting... -- 16:45:37.779 INFO [13123]: Version from config: 1.0 -- 16:45:37.779 DEBUG [13123]: Connecting to database... -- 16:45:37.779 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:45:37.779 SQL [13123]: pgsql_db_connect() -- 16:45:37.783 DEBUG [13123]: Database connection successful -- 16:45:37.783 INFO [13123]: _SERVER found -- 16:45:37.783 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 16:45:37.783 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 16:45:37.783 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=o8hpq4kp5ft9irft9q47qugq501u0id7 -- 16:45:37.783 INFO [13123]: QUERY_STRING = /member/page -- 16:45:37.783 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:45:37.829 INFO [13123]: COREGRADE is stopping... -- 16:45:37.829 DEBUG [13123]: Closing database connection -- 16:45:37.829 SQL [13123]: pgsql_close() -- 16:59:59.813 INFO [13051]: COREGRADE is starting... -- 16:59:59.813 INFO [13051]: Version from config: 1.0 -- 16:59:59.813 DEBUG [13051]: Connecting to database... -- 16:59:59.813 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:59:59.813 SQL [13051]: pgsql_db_connect() -- 16:59:59.818 DEBUG [13051]: Database connection successful -- 16:59:59.818 INFO [13051]: _SERVER found -- 16:59:59.818 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 16:59:59.818 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 16:59:59.818 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=o8hpq4kp5ft9irft9q47qugq501u0id7 -- 16:59:59.818 INFO [13051]: QUERY_STRING = /member/page -- 16:59:59.818 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:59:59.866 INFO [13051]: COREGRADE is stopping... -- 16:59:59.866 DEBUG [13051]: Closing database connection -- 16:59:59.866 SQL [13051]: pgsql_close() -- 16:59:59.989 INFO [13051]: COREGRADE is starting... -- 16:59:59.989 INFO [13051]: Version from config: 1.0 -- 16:59:59.989 DEBUG [13051]: Connecting to database... -- 16:59:59.989 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:59:59.989 SQL [13051]: pgsql_db_connect() -- 16:59:59.993 DEBUG [13051]: Database connection successful -- 16:59:59.993 INFO [13051]: _SERVER found -- 16:59:59.993 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 16:59:59.993 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 16:59:59.993 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fgicmjob28s994tcj65etl00070ml7t7 -- 16:59:59.993 INFO [13051]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:59:59.993 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:00:00.004 INFO [13051]: COREGRADE is stopping... -- 17:00:00.004 DEBUG [13051]: Closing database connection -- 17:00:00.004 SQL [13051]: pgsql_close() -- 17:00:03.288 INFO [16100]: COREGRADE is starting... -- 17:00:03.288 INFO [16100]: Version from config: 1.0 -- 17:00:03.288 DEBUG [16100]: Connecting to database... -- 17:00:03.288 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:03.288 SQL [16100]: pgsql_db_connect() -- 17:00:03.293 DEBUG [16100]: Database connection successful -- 17:00:03.293 INFO [16100]: _SERVER found -- 17:00:03.293 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 17:00:03.293 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 17:00:03.293 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fgicmjob28s994tcj65etl00070ml7t7 -- 17:00:03.293 INFO [16100]: QUERY_STRING = /member/viewCardAddAction -- 17:00:03.293 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:00:03.330 INFO [16100]: COREGRADE is stopping... -- 17:00:03.330 DEBUG [16100]: Closing database connection -- 17:00:03.330 SQL [16100]: pgsql_close() -- 17:00:03.364 INFO [16100]: COREGRADE is starting... -- 17:00:03.364 INFO [16100]: Version from config: 1.0 -- 17:00:03.364 DEBUG [16100]: Connecting to database... -- 17:00:03.364 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:03.365 SQL [16100]: pgsql_db_connect() -- 17:00:03.368 DEBUG [16100]: Database connection successful -- 17:00:03.368 INFO [16100]: _SERVER found -- 17:00:03.368 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 17:00:03.368 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 17:00:03.368 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fgicmjob28s994tcj65etl00070ml7t7 -- 17:00:03.368 INFO [16100]: QUERY_STRING = /member/upload.php -- 17:00:03.368 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:00:03.380 INFO [16100]: COREGRADE is stopping... -- 17:00:03.380 DEBUG [16100]: Closing database connection -- 17:00:03.380 SQL [16100]: pgsql_close() -- 17:00:07.535 INFO [16100]: COREGRADE is starting... -- 17:00:07.535 INFO [16100]: Version from config: 1.0 -- 17:00:07.535 DEBUG [16100]: Connecting to database... -- 17:00:07.535 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:07.535 SQL [16100]: pgsql_db_connect() -- 17:00:07.539 DEBUG [16100]: Database connection successful -- 17:00:07.539 INFO [16100]: _SERVER found -- 17:00:07.539 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 17:00:07.539 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 17:00:07.539 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fgicmjob28s994tcj65etl00070ml7t7 -- 17:00:07.539 INFO [16100]: QUERY_STRING = /member/page -- 17:00:07.539 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:00:07.582 INFO [16100]: COREGRADE is stopping... -- 17:00:07.582 DEBUG [16100]: Closing database connection -- 17:00:07.582 SQL [16100]: pgsql_close() -- 17:01:38.709 INFO [13053]: COREGRADE is starting... -- 17:01:38.710 INFO [13053]: Version from config: 1.0 -- 17:01:38.710 DEBUG [13053]: Connecting to database... -- 17:01:38.710 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:01:38.710 SQL [13053]: pgsql_db_connect() -- 17:01:38.714 DEBUG [13053]: Database connection successful -- 17:01:38.714 INFO [13053]: _SERVER found -- 17:01:38.714 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 17:01:38.714 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 17:01:38.714 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fgicmjob28s994tcj65etl00070ml7t7 -- 17:01:38.714 INFO [13053]: QUERY_STRING = /member/page -- 17:01:38.714 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:01:38.759 INFO [13053]: COREGRADE is stopping... -- 17:01:38.759 DEBUG [13053]: Closing database connection -- 17:01:38.759 SQL [13053]: pgsql_close() -- 17:01:38.880 INFO [13053]: COREGRADE is starting... -- 17:01:38.881 INFO [13053]: Version from config: 1.0 -- 17:01:38.881 DEBUG [13053]: Connecting to database... -- 17:01:38.881 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:01:38.881 SQL [13053]: pgsql_db_connect() -- 17:01:38.885 DEBUG [13053]: Database connection successful -- 17:01:38.885 INFO [13053]: _SERVER found -- 17:01:38.885 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 17:01:38.885 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 17:01:38.885 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fgicmjob28s994tcj65etl00070ml7t7 -- 17:01:38.885 INFO [13053]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:01:38.885 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:01:38.896 INFO [13053]: COREGRADE is stopping... -- 17:01:38.896 DEBUG [13053]: Closing database connection -- 17:01:38.896 SQL [13053]: pgsql_close() -- 17:01:41.786 INFO [13053]: COREGRADE is starting... -- 17:01:41.786 INFO [13053]: Version from config: 1.0 -- 17:01:41.786 DEBUG [13053]: Connecting to database... -- 17:01:41.787 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:01:41.787 SQL [13053]: pgsql_db_connect() -- 17:01:41.791 DEBUG [13053]: Database connection successful -- 17:01:41.791 INFO [13053]: _SERVER found -- 17:01:41.791 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 17:01:41.791 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 17:01:41.791 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fgicmjob28s994tcj65etl00070ml7t7 -- 17:01:41.791 INFO [13053]: QUERY_STRING = /member/viewCardAddAction -- 17:01:41.791 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:01:41.822 INFO [13053]: COREGRADE is stopping... -- 17:01:41.822 DEBUG [13053]: Closing database connection -- 17:01:41.822 SQL [13053]: pgsql_close() -- 17:01:41.850 INFO [13053]: COREGRADE is starting... -- 17:01:41.850 INFO [13053]: Version from config: 1.0 -- 17:01:41.850 DEBUG [13053]: Connecting to database... -- 17:01:41.850 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:01:41.850 SQL [13053]: pgsql_db_connect() -- 17:01:41.854 DEBUG [13053]: Database connection successful -- 17:01:41.854 INFO [13053]: _SERVER found -- 17:01:41.854 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 17:01:41.854 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 17:01:41.854 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fgicmjob28s994tcj65etl00070ml7t7 -- 17:01:41.854 INFO [13053]: QUERY_STRING = /member/upload.php -- 17:01:41.854 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:01:41.865 INFO [13053]: COREGRADE is stopping... -- 17:01:41.865 DEBUG [13053]: Closing database connection -- 17:01:41.866 SQL [13053]: pgsql_close() -- 17:01:45.809 INFO [13053]: COREGRADE is starting... -- 17:01:45.809 INFO [13053]: Version from config: 1.0 -- 17:01:45.809 DEBUG [13053]: Connecting to database... -- 17:01:45.809 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:01:45.810 SQL [13053]: pgsql_db_connect() -- 17:01:45.814 DEBUG [13053]: Database connection successful -- 17:01:45.814 INFO [13053]: _SERVER found -- 17:01:45.814 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 17:01:45.814 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 17:01:45.814 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fgicmjob28s994tcj65etl00070ml7t7 -- 17:01:45.814 INFO [13053]: QUERY_STRING = /member/page -- 17:01:45.814 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:01:45.852 INFO [13053]: COREGRADE is stopping... -- 17:01:45.853 DEBUG [13053]: Closing database connection -- 17:01:45.853 SQL [13053]: pgsql_close() -- 17:09:39.185 INFO [16105]: COREGRADE is starting... -- 17:09:39.185 INFO [16105]: Version from config: 1.0 -- 17:09:39.185 DEBUG [16105]: Connecting to database... -- 17:09:39.185 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:09:39.185 SQL [16105]: pgsql_db_connect() -- 17:09:39.189 DEBUG [16105]: Database connection successful -- 17:09:39.189 INFO [16105]: _SERVER found -- 17:09:39.189 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 17:09:39.189 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 17:09:39.189 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fgicmjob28s994tcj65etl00070ml7t7 -- 17:09:39.189 INFO [16105]: QUERY_STRING = /member/page -- 17:09:39.189 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:09:39.236 INFO [16105]: COREGRADE is stopping... -- 17:09:39.236 DEBUG [16105]: Closing database connection -- 17:09:39.236 SQL [16105]: pgsql_close() -- 17:09:39.363 INFO [16105]: COREGRADE is starting... -- 17:09:39.363 INFO [16105]: Version from config: 1.0 -- 17:09:39.363 DEBUG [16105]: Connecting to database... -- 17:09:39.363 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:09:39.363 SQL [16105]: pgsql_db_connect() -- 17:09:39.367 DEBUG [16105]: Database connection successful -- 17:09:39.367 INFO [16105]: _SERVER found -- 17:09:39.367 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 17:09:39.368 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 17:09:39.368 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=d1esu2rtdno2h3nbvri8engspi0q2gbu -- 17:09:39.368 INFO [16105]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:09:39.368 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:09:39.379 INFO [16105]: COREGRADE is stopping... -- 17:09:39.379 DEBUG [16105]: Closing database connection -- 17:09:39.379 SQL [16105]: pgsql_close() -- 17:09:41.856 INFO [16105]: COREGRADE is starting... -- 17:09:41.856 INFO [16105]: Version from config: 1.0 -- 17:09:41.856 DEBUG [16105]: Connecting to database... -- 17:09:41.856 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:09:41.856 SQL [16105]: pgsql_db_connect() -- 17:09:41.860 DEBUG [16105]: Database connection successful -- 17:09:41.860 INFO [16105]: _SERVER found -- 17:09:41.860 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 17:09:41.860 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 17:09:41.860 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=d1esu2rtdno2h3nbvri8engspi0q2gbu -- 17:09:41.860 INFO [16105]: QUERY_STRING = /member/viewCardAddAction -- 17:09:41.860 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:09:41.892 INFO [16105]: COREGRADE is stopping... -- 17:09:41.892 DEBUG [16105]: Closing database connection -- 17:09:41.892 SQL [16105]: pgsql_close() -- 17:09:41.917 INFO [16105]: COREGRADE is starting... -- 17:09:41.917 INFO [16105]: Version from config: 1.0 -- 17:09:41.917 DEBUG [16105]: Connecting to database... -- 17:09:41.917 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:09:41.917 SQL [16105]: pgsql_db_connect() -- 17:09:41.921 DEBUG [16105]: Database connection successful -- 17:09:41.921 INFO [16105]: _SERVER found -- 17:09:41.921 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 17:09:41.921 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 17:09:41.921 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=d1esu2rtdno2h3nbvri8engspi0q2gbu -- 17:09:41.921 INFO [16105]: QUERY_STRING = /member/upload.php -- 17:09:41.921 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:09:41.932 INFO [16105]: COREGRADE is stopping... -- 17:09:41.933 DEBUG [16105]: Closing database connection -- 17:09:41.933 SQL [16105]: pgsql_close() -- 17:09:47.076 INFO [13055]: COREGRADE is starting... -- 17:09:47.077 INFO [13055]: Version from config: 1.0 -- 17:09:47.077 DEBUG [13055]: Connecting to database... -- 17:09:47.077 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:09:47.077 SQL [13055]: pgsql_db_connect() -- 17:09:47.081 DEBUG [13055]: Database connection successful -- 17:09:47.081 INFO [13055]: _SERVER found -- 17:09:47.081 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 17:09:47.081 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 17:09:47.081 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=d1esu2rtdno2h3nbvri8engspi0q2gbu -- 17:09:47.081 INFO [13055]: QUERY_STRING = /member/page -- 17:09:47.081 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:09:47.122 INFO [13055]: COREGRADE is stopping... -- 17:09:47.122 DEBUG [13055]: Closing database connection -- 17:09:47.122 SQL [13055]: pgsql_close() -- 17:09:47.520 INFO [13054]: COREGRADE is starting... -- 17:09:47.520 INFO [13054]: Version from config: 1.0 -- 17:09:47.520 DEBUG [13054]: Connecting to database... -- 17:09:47.520 DEBUG [13054]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:09:47.520 SQL [13054]: pgsql_db_connect() -- 17:09:47.524 DEBUG [13054]: Database connection successful -- 17:09:47.524 INFO [13054]: _SERVER found -- 17:09:47.524 INFO [13054]: REMOTE_ADDR = 192.168.1.13 -- 17:09:47.524 INFO [13054]: SERVER_NAME = oameye.works.coregrade.com -- 17:09:47.524 INFO [13054]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=d1esu2rtdno2h3nbvri8engspi0q2gbu -- 17:09:47.524 INFO [13054]: QUERY_STRING = /member/page -- 17:09:47.524 INFO [13054]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:09:47.565 INFO [13054]: COREGRADE is stopping... -- 17:09:47.565 DEBUG [13054]: Closing database connection -- 17:09:47.565 SQL [13054]: pgsql_close() -- 17:11:33.923 INFO [13123]: COREGRADE is starting... -- 17:11:33.923 INFO [13123]: Version from config: 1.0 -- 17:11:33.923 DEBUG [13123]: Connecting to database... -- 17:11:33.923 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:33.923 SQL [13123]: pgsql_db_connect() -- 17:11:33.927 DEBUG [13123]: Database connection successful -- 17:11:33.927 INFO [13123]: _SERVER found -- 17:11:33.927 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 17:11:33.927 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 17:11:33.927 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=d1esu2rtdno2h3nbvri8engspi0q2gbu -- 17:11:33.927 INFO [13123]: QUERY_STRING = /member/page -- 17:11:33.927 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:11:33.974 INFO [13123]: COREGRADE is stopping... -- 17:11:33.974 DEBUG [13123]: Closing database connection -- 17:11:33.974 SQL [13123]: pgsql_close() -- 17:11:34.069 INFO [13123]: COREGRADE is starting... -- 17:11:34.069 INFO [13123]: Version from config: 1.0 -- 17:11:34.069 DEBUG [13123]: Connecting to database... -- 17:11:34.069 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:34.069 SQL [13123]: pgsql_db_connect() -- 17:11:34.073 DEBUG [13123]: Database connection successful -- 17:11:34.073 INFO [13123]: _SERVER found -- 17:11:34.073 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 17:11:34.073 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 17:11:34.073 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=d1esu2rtdno2h3nbvri8engspi0q2gbu -- 17:11:34.073 INFO [13123]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:11:34.073 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:11:34.084 INFO [13123]: COREGRADE is stopping... -- 17:11:34.084 DEBUG [13123]: Closing database connection -- 17:11:34.084 SQL [13123]: pgsql_close() -- 17:11:38.185 INFO [13123]: COREGRADE is starting... -- 17:11:38.185 INFO [13123]: Version from config: 1.0 -- 17:11:38.185 DEBUG [13123]: Connecting to database... -- 17:11:38.185 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:38.185 SQL [13123]: pgsql_db_connect() -- 17:11:38.189 DEBUG [13123]: Database connection successful -- 17:11:38.189 INFO [13123]: _SERVER found -- 17:11:38.189 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 17:11:38.189 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 17:11:38.189 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=d1esu2rtdno2h3nbvri8engspi0q2gbu -- 17:11:38.189 INFO [13123]: QUERY_STRING = /member/viewCardAddAction -- 17:11:38.189 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:11:38.223 INFO [13123]: COREGRADE is stopping... -- 17:11:38.223 DEBUG [13123]: Closing database connection -- 17:11:38.223 SQL [13123]: pgsql_close() -- 17:12:54.550 INFO [13052]: COREGRADE is starting... -- 17:12:54.550 INFO [13052]: Version from config: 1.0 -- 17:12:54.550 DEBUG [13052]: Connecting to database... -- 17:12:54.550 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:12:54.550 SQL [13052]: pgsql_db_connect() -- 17:12:54.554 DEBUG [13052]: Database connection successful -- 17:12:54.554 INFO [13052]: _SERVER found -- 17:12:54.554 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 17:12:54.554 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 17:12:54.554 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=d1esu2rtdno2h3nbvri8engspi0q2gbu -- 17:12:54.554 INFO [13052]: QUERY_STRING = /member/page -- 17:12:54.554 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:12:54.600 INFO [13052]: COREGRADE is stopping... -- 17:12:54.600 DEBUG [13052]: Closing database connection -- 17:12:54.600 SQL [13052]: pgsql_close() -- 17:12:54.696 INFO [13052]: COREGRADE is starting... -- 17:12:54.696 INFO [13052]: Version from config: 1.0 -- 17:12:54.696 DEBUG [13052]: Connecting to database... -- 17:12:54.696 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:12:54.696 SQL [13052]: pgsql_db_connect() -- 17:12:54.700 DEBUG [13052]: Database connection successful -- 17:12:54.700 INFO [13052]: _SERVER found -- 17:12:54.700 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 17:12:54.700 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 17:12:54.700 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=d1esu2rtdno2h3nbvri8engspi0q2gbu -- 17:12:54.700 INFO [13052]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:12:54.700 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:12:54.712 INFO [13052]: COREGRADE is stopping... -- 17:12:54.712 DEBUG [13052]: Closing database connection -- 17:12:54.712 SQL [13052]: pgsql_close() -- 17:12:58.366 INFO [13052]: COREGRADE is starting... -- 17:12:58.366 INFO [13052]: Version from config: 1.0 -- 17:12:58.366 DEBUG [13052]: Connecting to database... -- 17:12:58.366 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:12:58.366 SQL [13052]: pgsql_db_connect() -- 17:12:58.370 DEBUG [13052]: Database connection successful -- 17:12:58.370 INFO [13052]: _SERVER found -- 17:12:58.370 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 17:12:58.370 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 17:12:58.370 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=d1esu2rtdno2h3nbvri8engspi0q2gbu -- 17:12:58.371 INFO [13052]: QUERY_STRING = /member/viewCardAddAction -- 17:12:58.371 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:12:58.404 INFO [13052]: COREGRADE is stopping... -- 17:12:58.404 DEBUG [13052]: Closing database connection -- 17:12:58.404 SQL [13052]: pgsql_close() -- 17:12:58.430 INFO [13052]: COREGRADE is starting... -- 17:12:58.430 INFO [13052]: Version from config: 1.0 -- 17:12:58.430 DEBUG [13052]: Connecting to database... -- 17:12:58.431 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:12:58.431 SQL [13052]: pgsql_db_connect() -- 17:12:58.434 DEBUG [13052]: Database connection successful -- 17:12:58.434 INFO [13052]: _SERVER found -- 17:12:58.434 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 17:12:58.434 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 17:12:58.434 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=d1esu2rtdno2h3nbvri8engspi0q2gbu -- 17:12:58.434 INFO [13052]: QUERY_STRING = /member/upload.php -- 17:12:58.434 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:12:58.446 INFO [13052]: COREGRADE is stopping... -- 17:12:58.446 DEBUG [13052]: Closing database connection -- 17:12:58.446 SQL [13052]: pgsql_close() -- 17:13:02.166 INFO [13052]: COREGRADE is starting... -- 17:13:02.166 INFO [13052]: Version from config: 1.0 -- 17:13:02.166 DEBUG [13052]: Connecting to database... -- 17:13:02.166 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:13:02.166 SQL [13052]: pgsql_db_connect() -- 17:13:02.170 DEBUG [13052]: Database connection successful -- 17:13:02.170 INFO [13052]: _SERVER found -- 17:13:02.170 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 17:13:02.170 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 17:13:02.170 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=d1esu2rtdno2h3nbvri8engspi0q2gbu -- 17:13:02.170 INFO [13052]: QUERY_STRING = /member/page -- 17:13:02.170 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:13:02.212 INFO [13052]: COREGRADE is stopping... -- 17:13:02.212 DEBUG [13052]: Closing database connection -- 17:13:02.212 SQL [13052]: pgsql_close() -- 17:14:36.265 INFO [13051]: COREGRADE is starting... -- 17:14:36.265 INFO [13051]: Version from config: 1.0 -- 17:14:36.265 DEBUG [13051]: Connecting to database... -- 17:14:36.265 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:14:36.265 SQL [13051]: pgsql_db_connect() -- 17:14:36.269 DEBUG [13051]: Database connection successful -- 17:14:36.269 INFO [13051]: _SERVER found -- 17:14:36.269 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 17:14:36.269 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 17:14:36.269 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=d1esu2rtdno2h3nbvri8engspi0q2gbu -- 17:14:36.269 INFO [13051]: QUERY_STRING = /member/page -- 17:14:36.269 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:14:36.313 INFO [13051]: COREGRADE is stopping... -- 17:14:36.313 DEBUG [13051]: Closing database connection -- 17:14:36.313 SQL [13051]: pgsql_close() -- 17:14:36.423 INFO [13051]: COREGRADE is starting... -- 17:14:36.423 INFO [13051]: Version from config: 1.0 -- 17:14:36.423 DEBUG [13051]: Connecting to database... -- 17:14:36.423 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:14:36.423 SQL [13051]: pgsql_db_connect() -- 17:14:36.427 DEBUG [13051]: Database connection successful -- 17:14:36.427 INFO [13051]: _SERVER found -- 17:14:36.427 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 17:14:36.427 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 17:14:36.427 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=d1esu2rtdno2h3nbvri8engspi0q2gbu -- 17:14:36.427 INFO [13051]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:14:36.427 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:14:36.438 INFO [13051]: COREGRADE is stopping... -- 17:14:36.438 DEBUG [13051]: Closing database connection -- 17:14:36.438 SQL [13051]: pgsql_close() -- 17:14:40.115 INFO [13051]: COREGRADE is starting... -- 17:14:40.116 INFO [13051]: Version from config: 1.0 -- 17:14:40.116 DEBUG [13051]: Connecting to database... -- 17:14:40.116 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:14:40.116 SQL [13051]: pgsql_db_connect() -- 17:14:40.120 DEBUG [13051]: Database connection successful -- 17:14:40.120 INFO [13051]: _SERVER found -- 17:14:40.120 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 17:14:40.120 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 17:14:40.120 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=d1esu2rtdno2h3nbvri8engspi0q2gbu -- 17:14:40.120 INFO [13051]: QUERY_STRING = /member/viewCardAddAction -- 17:14:40.120 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:14:40.151 INFO [13051]: COREGRADE is stopping... -- 17:14:40.151 DEBUG [13051]: Closing database connection -- 17:14:40.151 SQL [13051]: pgsql_close() -- 17:14:40.176 INFO [13051]: COREGRADE is starting... -- 17:14:40.176 INFO [13051]: Version from config: 1.0 -- 17:14:40.176 DEBUG [13051]: Connecting to database... -- 17:14:40.176 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:14:40.176 SQL [13051]: pgsql_db_connect() -- 17:14:40.180 DEBUG [13051]: Database connection successful -- 17:14:40.180 INFO [13051]: _SERVER found -- 17:14:40.180 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 17:14:40.180 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 17:14:40.180 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=d1esu2rtdno2h3nbvri8engspi0q2gbu -- 17:14:40.180 INFO [13051]: QUERY_STRING = /member/upload.php -- 17:14:40.180 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:14:40.192 INFO [13051]: COREGRADE is stopping... -- 17:14:40.192 DEBUG [13051]: Closing database connection -- 17:14:40.192 SQL [13051]: pgsql_close() -- 17:14:44.825 INFO [13051]: COREGRADE is starting... -- 17:14:44.825 INFO [13051]: Version from config: 1.0 -- 17:14:44.825 DEBUG [13051]: Connecting to database... -- 17:14:44.825 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:14:44.825 SQL [13051]: pgsql_db_connect() -- 17:14:44.829 DEBUG [13051]: Database connection successful -- 17:14:44.829 INFO [13051]: _SERVER found -- 17:14:44.829 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 17:14:44.829 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 17:14:44.829 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=d1esu2rtdno2h3nbvri8engspi0q2gbu -- 17:14:44.829 INFO [13051]: QUERY_STRING = /member/page -- 17:14:44.829 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:14:44.869 INFO [13051]: COREGRADE is stopping... -- 17:14:44.869 DEBUG [13051]: Closing database connection -- 17:14:44.869 SQL [13051]: pgsql_close() -- 17:14:45.114 INFO [16100]: COREGRADE is starting... -- 17:14:45.114 INFO [16100]: Version from config: 1.0 -- 17:14:45.114 DEBUG [16100]: Connecting to database... -- 17:14:45.114 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:14:45.114 SQL [16100]: pgsql_db_connect() -- 17:14:45.118 DEBUG [16100]: Database connection successful -- 17:14:45.118 INFO [16100]: _SERVER found -- 17:14:45.118 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 17:14:45.118 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 17:14:45.118 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=d1esu2rtdno2h3nbvri8engspi0q2gbu -- 17:14:45.118 INFO [16100]: QUERY_STRING = /member/page -- 17:14:45.118 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:14:45.162 INFO [16100]: COREGRADE is stopping... -- 17:14:45.162 DEBUG [16100]: Closing database connection -- 17:14:45.162 SQL [16100]: pgsql_close() -- 17:16:21.128 INFO [13053]: COREGRADE is starting... -- 17:16:21.128 INFO [13053]: Version from config: 1.0 -- 17:16:21.128 DEBUG [13053]: Connecting to database... -- 17:16:21.128 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:16:21.128 SQL [13053]: pgsql_db_connect() -- 17:16:21.132 DEBUG [13053]: Database connection successful -- 17:16:21.132 INFO [13053]: _SERVER found -- 17:16:21.132 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 17:16:21.132 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 17:16:21.132 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=d1esu2rtdno2h3nbvri8engspi0q2gbu -- 17:16:21.132 INFO [13053]: QUERY_STRING = /member/upload -- 17:16:21.132 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:16:21.166 INFO [13053]: COREGRADE is stopping... -- 17:16:21.166 DEBUG [13053]: Closing database connection -- 17:16:21.166 SQL [13053]: pgsql_close() -- 17:16:24.570 INFO [13053]: COREGRADE is starting... -- 17:16:24.570 INFO [13053]: Version from config: 1.0 -- 17:16:24.570 DEBUG [13053]: Connecting to database... -- 17:16:24.570 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:16:24.570 SQL [13053]: pgsql_db_connect() -- 17:16:24.574 DEBUG [13053]: Database connection successful -- 17:16:24.574 INFO [13053]: _SERVER found -- 17:16:24.574 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 17:16:24.574 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 17:16:24.574 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=d1esu2rtdno2h3nbvri8engspi0q2gbu -- 17:16:24.574 INFO [13053]: QUERY_STRING = /member/upload -- 17:16:24.574 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:16:24.606 INFO [13053]: COREGRADE is stopping... -- 17:16:24.606 DEBUG [13053]: Closing database connection -- 17:16:24.606 SQL [13053]: pgsql_close() -- 17:17:39.381 INFO [16105]: COREGRADE is starting... -- 17:17:39.382 INFO [16105]: Version from config: 1.0 -- 17:17:39.382 DEBUG [16105]: Connecting to database... -- 17:17:39.382 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:39.382 SQL [16105]: pgsql_db_connect() -- 17:17:39.386 DEBUG [16105]: Database connection successful -- 17:17:39.386 INFO [16105]: _SERVER found -- 17:17:39.386 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 17:17:39.386 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:39.386 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=d1esu2rtdno2h3nbvri8engspi0q2gbu -- 17:17:39.386 INFO [16105]: QUERY_STRING = /member -- 17:17:39.386 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:17:39.427 INFO [16105]: COREGRADE is stopping... -- 17:17:39.427 DEBUG [16105]: Closing database connection -- 17:17:39.427 SQL [16105]: pgsql_close() -- 17:17:39.591 INFO [16105]: COREGRADE is starting... -- 17:17:39.591 INFO [16105]: Version from config: 1.0 -- 17:17:39.591 DEBUG [16105]: Connecting to database... -- 17:17:39.591 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:39.591 SQL [16105]: pgsql_db_connect() -- 17:17:39.595 DEBUG [16105]: Database connection successful -- 17:17:39.595 INFO [16105]: _SERVER found -- 17:17:39.595 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 17:17:39.595 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:39.595 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2igvse6lntb4ivgfnguhmckdbt1o45mv -- 17:17:39.595 INFO [16105]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:17:39.595 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:17:39.606 INFO [16105]: COREGRADE is stopping... -- 17:17:39.606 DEBUG [16105]: Closing database connection -- 17:17:39.606 SQL [16105]: pgsql_close() -- 17:17:41.540 INFO [16105]: COREGRADE is starting... -- 17:17:41.541 INFO [16105]: Version from config: 1.0 -- 17:17:41.541 DEBUG [16105]: Connecting to database... -- 17:17:41.541 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:41.541 SQL [16105]: pgsql_db_connect() -- 17:17:41.545 DEBUG [16105]: Database connection successful -- 17:17:41.545 INFO [16105]: _SERVER found -- 17:17:41.545 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 17:17:41.545 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:41.545 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2igvse6lntb4ivgfnguhmckdbt1o45mv -- 17:17:41.545 INFO [16105]: QUERY_STRING = /member/page -- 17:17:41.545 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:17:41.586 INFO [16105]: COREGRADE is stopping... -- 17:17:41.586 DEBUG [16105]: Closing database connection -- 17:17:41.586 SQL [16105]: pgsql_close() -- 17:17:41.721 INFO [16105]: COREGRADE is starting... -- 17:17:41.721 INFO [16105]: Version from config: 1.0 -- 17:17:41.721 DEBUG [16105]: Connecting to database... -- 17:17:41.721 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:41.721 SQL [16105]: pgsql_db_connect() -- 17:17:41.725 DEBUG [16105]: Database connection successful -- 17:17:41.725 INFO [16105]: _SERVER found -- 17:17:41.725 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 17:17:41.725 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:41.725 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2igvse6lntb4ivgfnguhmckdbt1o45mv -- 17:17:41.725 INFO [16105]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:17:41.725 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:17:41.736 INFO [16105]: COREGRADE is stopping... -- 17:17:41.736 DEBUG [16105]: Closing database connection -- 17:17:41.736 SQL [16105]: pgsql_close() -- 17:17:44.735 INFO [16105]: COREGRADE is starting... -- 17:17:44.735 INFO [16105]: Version from config: 1.0 -- 17:17:44.735 DEBUG [16105]: Connecting to database... -- 17:17:44.735 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:44.735 SQL [16105]: pgsql_db_connect() -- 17:17:44.739 DEBUG [16105]: Database connection successful -- 17:17:44.739 INFO [16105]: _SERVER found -- 17:17:44.739 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 17:17:44.739 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:44.739 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2igvse6lntb4ivgfnguhmckdbt1o45mv -- 17:17:44.739 INFO [16105]: QUERY_STRING = /member/viewCardAddAction -- 17:17:44.739 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:17:44.770 INFO [16105]: COREGRADE is stopping... -- 17:17:44.770 DEBUG [16105]: Closing database connection -- 17:17:44.770 SQL [16105]: pgsql_close() -- 17:17:44.794 INFO [16105]: COREGRADE is starting... -- 17:17:44.794 INFO [16105]: Version from config: 1.0 -- 17:17:44.794 DEBUG [16105]: Connecting to database... -- 17:17:44.794 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:44.794 SQL [16105]: pgsql_db_connect() -- 17:17:44.798 DEBUG [16105]: Database connection successful -- 17:17:44.798 INFO [16105]: _SERVER found -- 17:17:44.798 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 17:17:44.798 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:44.798 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2igvse6lntb4ivgfnguhmckdbt1o45mv -- 17:17:44.798 INFO [16105]: QUERY_STRING = /member/upload.php -- 17:17:44.798 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:17:44.810 INFO [16105]: COREGRADE is stopping... -- 17:17:44.810 DEBUG [16105]: Closing database connection -- 17:17:44.810 SQL [16105]: pgsql_close() -- 17:17:52.036 INFO [13055]: COREGRADE is starting... -- 17:17:52.037 INFO [13055]: Version from config: 1.0 -- 17:17:52.037 DEBUG [13055]: Connecting to database... -- 17:17:52.037 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:52.037 SQL [13055]: pgsql_db_connect() -- 17:17:52.041 DEBUG [13055]: Database connection successful -- 17:17:52.041 INFO [13055]: _SERVER found -- 17:17:52.041 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 17:17:52.041 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:52.041 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2igvse6lntb4ivgfnguhmckdbt1o45mv -- 17:17:52.041 INFO [13055]: QUERY_STRING = /member/page -- 17:17:52.041 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:17:52.081 INFO [13055]: COREGRADE is stopping... -- 17:17:52.082 DEBUG [13055]: Closing database connection -- 17:17:52.082 SQL [13055]: pgsql_close() -- 17:17:52.294 INFO [13054]: COREGRADE is starting... -- 17:17:52.295 INFO [13054]: Version from config: 1.0 -- 17:17:52.295 DEBUG [13054]: Connecting to database... -- 17:17:52.295 DEBUG [13054]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:52.295 SQL [13054]: pgsql_db_connect() -- 17:17:52.299 DEBUG [13054]: Database connection successful -- 17:17:52.299 INFO [13054]: _SERVER found -- 17:17:52.299 INFO [13054]: REMOTE_ADDR = 192.168.1.13 -- 17:17:52.299 INFO [13054]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:52.299 INFO [13054]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2igvse6lntb4ivgfnguhmckdbt1o45mv -- 17:17:52.299 INFO [13054]: QUERY_STRING = /member/page -- 17:17:52.299 INFO [13054]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:17:52.340 INFO [13054]: COREGRADE is stopping... -- 17:17:52.340 DEBUG [13054]: Closing database connection -- 17:17:52.340 SQL [13054]: pgsql_close() -- 17:17:52.367 INFO [13055]: COREGRADE is starting... -- 17:17:52.367 INFO [13055]: Version from config: 1.0 -- 17:17:52.367 DEBUG [13055]: Connecting to database... -- 17:17:52.367 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:52.367 SQL [13055]: pgsql_db_connect() -- 17:17:52.371 DEBUG [13055]: Database connection successful -- 17:17:52.371 INFO [13055]: _SERVER found -- 17:17:52.371 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 17:17:52.371 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:52.371 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2igvse6lntb4ivgfnguhmckdbt1o45mv -- 17:17:52.371 INFO [13055]: QUERY_STRING = /member/page -- 17:17:52.371 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:17:52.410 INFO [13055]: COREGRADE is stopping... -- 17:17:52.410 DEBUG [13055]: Closing database connection -- 17:17:52.410 SQL [13055]: pgsql_close() -- 17:18:13.290 INFO [13123]: COREGRADE is starting... -- 17:18:13.290 INFO [13123]: Version from config: 1.0 -- 17:18:13.290 DEBUG [13123]: Connecting to database... -- 17:18:13.290 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:18:13.290 SQL [13123]: pgsql_db_connect() -- 17:18:13.294 DEBUG [13123]: Database connection successful -- 17:18:13.294 INFO [13123]: _SERVER found -- 17:18:13.294 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 17:18:13.294 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 17:18:13.294 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2igvse6lntb4ivgfnguhmckdbt1o45mv -- 17:18:13.294 INFO [13123]: QUERY_STRING = /member/upload -- 17:18:13.294 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:18:13.328 INFO [13123]: COREGRADE is stopping... -- 17:18:13.328 DEBUG [13123]: Closing database connection -- 17:18:13.328 SQL [13123]: pgsql_close() -- 17:30:05.262 INFO [13052]: COREGRADE is starting... -- 17:30:05.262 INFO [13052]: Version from config: 1.0 -- 17:30:05.262 DEBUG [13052]: Connecting to database... -- 17:30:05.262 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:30:05.262 SQL [13052]: pgsql_db_connect() -- 17:30:05.267 DEBUG [13052]: Database connection successful -- 17:30:05.267 INFO [13052]: _SERVER found -- 17:30:05.267 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 17:30:05.267 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 17:30:05.267 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2igvse6lntb4ivgfnguhmckdbt1o45mv -- 17:30:05.267 INFO [13052]: QUERY_STRING = /member/page -- 17:30:05.267 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:30:05.315 INFO [13052]: COREGRADE is stopping... -- 17:30:05.315 DEBUG [13052]: Closing database connection -- 17:30:05.315 SQL [13052]: pgsql_close() -- 17:30:05.433 INFO [13052]: COREGRADE is starting... -- 17:30:05.433 INFO [13052]: Version from config: 1.0 -- 17:30:05.433 DEBUG [13052]: Connecting to database... -- 17:30:05.434 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:30:05.434 SQL [13052]: pgsql_db_connect() -- 17:30:05.437 DEBUG [13052]: Database connection successful -- 17:30:05.437 INFO [13052]: _SERVER found -- 17:30:05.437 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 17:30:05.437 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 17:30:05.437 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8nklal2pl1c0q8avg0ej73ro1nffocu8 -- 17:30:05.437 INFO [13052]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:30:05.437 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:30:05.449 INFO [13052]: COREGRADE is stopping... -- 17:30:05.449 DEBUG [13052]: Closing database connection -- 17:30:05.449 SQL [13052]: pgsql_close() -- 17:30:08.144 INFO [13052]: COREGRADE is starting... -- 17:30:08.145 INFO [13052]: Version from config: 1.0 -- 17:30:08.145 DEBUG [13052]: Connecting to database... -- 17:30:08.145 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:30:08.145 SQL [13052]: pgsql_db_connect() -- 17:30:08.148 DEBUG [13052]: Database connection successful -- 17:30:08.149 INFO [13052]: _SERVER found -- 17:30:08.149 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 17:30:08.149 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 17:30:08.149 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8nklal2pl1c0q8avg0ej73ro1nffocu8 -- 17:30:08.149 INFO [13052]: QUERY_STRING = /member/viewCardAddAction -- 17:30:08.149 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:30:08.182 INFO [13052]: COREGRADE is stopping... -- 17:30:08.182 DEBUG [13052]: Closing database connection -- 17:30:08.182 SQL [13052]: pgsql_close() -- 17:30:08.215 INFO [13052]: COREGRADE is starting... -- 17:30:08.216 INFO [13052]: Version from config: 1.0 -- 17:30:08.216 DEBUG [13052]: Connecting to database... -- 17:30:08.216 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:30:08.216 SQL [13052]: pgsql_db_connect() -- 17:30:08.219 DEBUG [13052]: Database connection successful -- 17:30:08.219 INFO [13052]: _SERVER found -- 17:30:08.219 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 17:30:08.219 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 17:30:08.219 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8nklal2pl1c0q8avg0ej73ro1nffocu8 -- 17:30:08.219 INFO [13052]: QUERY_STRING = /member/upload -- 17:30:08.219 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:30:08.253 INFO [13052]: COREGRADE is stopping... -- 17:30:08.253 DEBUG [13052]: Closing database connection -- 17:30:08.253 SQL [13052]: pgsql_close() -- 17:30:08.264 INFO [13052]: COREGRADE is starting... -- 17:30:08.264 INFO [13052]: Version from config: 1.0 -- 17:30:08.264 DEBUG [13052]: Connecting to database... -- 17:30:08.264 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:30:08.264 SQL [13052]: pgsql_db_connect() -- 17:30:08.268 DEBUG [13052]: Database connection successful -- 17:30:08.268 INFO [13052]: _SERVER found -- 17:30:08.268 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 17:30:08.268 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 17:30:08.268 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8nklal2pl1c0q8avg0ej73ro1nffocu8 -- 17:30:08.268 INFO [13052]: QUERY_STRING = /home/uploads/E5AB5CE0D4C24E4B9D968204658128F3/WhatEthernetCable.mp4 -- 17:30:08.268 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:30:08.279 INFO [13052]: COREGRADE is stopping... -- 17:30:08.280 DEBUG [13052]: Closing database connection -- 17:30:08.280 SQL [13052]: pgsql_close() -- 17:30:13.756 INFO [13051]: COREGRADE is starting... -- 17:30:13.756 INFO [13051]: Version from config: 1.0 -- 17:30:13.756 DEBUG [13051]: Connecting to database... -- 17:30:13.756 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:30:13.756 SQL [13051]: pgsql_db_connect() -- 17:30:13.760 DEBUG [13051]: Database connection successful -- 17:30:13.761 INFO [13051]: _SERVER found -- 17:30:13.761 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 17:30:13.761 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 17:30:13.761 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8nklal2pl1c0q8avg0ej73ro1nffocu8 -- 17:30:13.761 INFO [13051]: QUERY_STRING = /member/page -- 17:30:13.761 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:30:13.804 INFO [13051]: COREGRADE is stopping... -- 17:30:13.804 DEBUG [13051]: Closing database connection -- 17:30:13.804 SQL [13051]: pgsql_close() -- 17:30:14.052 INFO [13051]: COREGRADE is starting... -- 17:30:14.052 INFO [13051]: Version from config: 1.0 -- 17:30:14.052 DEBUG [13051]: Connecting to database... -- 17:30:14.052 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:30:14.052 SQL [13051]: pgsql_db_connect() -- 17:30:14.062 INFO [16100]: COREGRADE is starting... -- 17:30:14.062 INFO [16100]: Version from config: 1.0 -- 17:30:14.062 DEBUG [16100]: Connecting to database... -- 17:30:14.062 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:30:14.062 SQL [16100]: pgsql_db_connect() -- 17:30:14.056 DEBUG [13051]: Database connection successful -- 17:30:14.056 INFO [13051]: _SERVER found -- 17:30:14.056 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 17:30:14.056 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 17:30:14.056 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8nklal2pl1c0q8avg0ej73ro1nffocu8 -- 17:30:14.056 INFO [13051]: QUERY_STRING = /member/page -- 17:30:14.056 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:30:14.097 INFO [13051]: COREGRADE is stopping... -- 17:30:14.097 DEBUG [13051]: Closing database connection -- 17:30:14.097 SQL [13051]: pgsql_close() -- 17:30:14.066 DEBUG [16100]: Database connection successful -- 17:30:14.066 INFO [16100]: _SERVER found -- 17:30:14.066 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 17:30:14.066 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 17:30:14.066 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8nklal2pl1c0q8avg0ej73ro1nffocu8 -- 17:30:14.066 INFO [16100]: QUERY_STRING = /member/page -- 17:30:14.066 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:30:14.111 INFO [16100]: COREGRADE is stopping... -- 17:30:14.111 DEBUG [16100]: Closing database connection -- 17:30:14.111 SQL [16100]: pgsql_close() -- 17:30:34.956 INFO [13053]: COREGRADE is starting... -- 17:30:34.956 INFO [13053]: Version from config: 1.0 -- 17:30:34.956 DEBUG [13053]: Connecting to database... -- 17:30:34.956 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:30:34.956 SQL [13053]: pgsql_db_connect() -- 17:30:34.960 DEBUG [13053]: Database connection successful -- 17:30:34.960 INFO [13053]: _SERVER found -- 17:30:34.960 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 17:30:34.960 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 17:30:34.960 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8nklal2pl1c0q8avg0ej73ro1nffocu8 -- 17:30:34.960 INFO [13053]: QUERY_STRING = /member/upload -- 17:30:34.960 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:30:34.993 INFO [13053]: COREGRADE is stopping... -- 17:30:34.993 DEBUG [13053]: Closing database connection -- 17:30:34.993 SQL [13053]: pgsql_close() -- 17:30:51.751 INFO [16105]: COREGRADE is starting... -- 17:30:51.752 INFO [16105]: Version from config: 1.0 -- 17:30:51.752 DEBUG [16105]: Connecting to database... -- 17:30:51.752 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:30:51.752 SQL [16105]: pgsql_db_connect() -- 17:30:51.756 DEBUG [16105]: Database connection successful -- 17:30:51.756 INFO [16105]: _SERVER found -- 17:30:51.756 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 17:30:51.756 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 17:30:51.756 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8nklal2pl1c0q8avg0ej73ro1nffocu8 -- 17:30:51.756 INFO [16105]: QUERY_STRING = /member/upload -- 17:30:51.756 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:30:51.797 INFO [16105]: COREGRADE is stopping... -- 17:30:51.797 DEBUG [16105]: Closing database connection -- 17:30:51.797 SQL [16105]: pgsql_close() -- 17:30:51.816 INFO [16105]: COREGRADE is starting... -- 17:30:51.816 INFO [16105]: Version from config: 1.0 -- 17:30:51.816 DEBUG [16105]: Connecting to database... -- 17:30:51.816 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:30:51.816 SQL [16105]: pgsql_db_connect() -- 17:30:51.820 DEBUG [16105]: Database connection successful -- 17:30:51.820 INFO [16105]: _SERVER found -- 17:30:51.820 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 17:30:51.820 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 17:30:51.820 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8nklal2pl1c0q8avg0ej73ro1nffocu8 -- 17:30:51.820 INFO [16105]: QUERY_STRING = /member/upload -- 17:30:51.820 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:30:51.851 INFO [16105]: COREGRADE is stopping... -- 17:30:51.851 DEBUG [16105]: Closing database connection -- 17:30:51.851 SQL [16105]: pgsql_close() -- 17:30:51.870 INFO [16105]: COREGRADE is starting... -- 17:30:51.870 INFO [16105]: Version from config: 1.0 -- 17:30:51.870 DEBUG [16105]: Connecting to database... -- 17:30:51.870 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:30:51.870 SQL [16105]: pgsql_db_connect() -- 17:30:51.874 DEBUG [16105]: Database connection successful -- 17:30:51.874 INFO [16105]: _SERVER found -- 17:30:51.874 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 17:30:51.874 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 17:30:51.874 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8nklal2pl1c0q8avg0ej73ro1nffocu8 -- 17:30:51.874 INFO [16105]: QUERY_STRING = /home/uploads/E5AB5CE0D4C24E4B9D968204658128F3/WhatEthernetCable.mp4 -- 17:30:51.874 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:30:51.885 INFO [16105]: COREGRADE is stopping... -- 17:30:51.886 DEBUG [16105]: Closing database connection -- 17:30:51.886 SQL [16105]: pgsql_close() -- 17:30:57.270 INFO [13054]: COREGRADE is starting... -- 17:30:57.271 INFO [13054]: Version from config: 1.0 -- 17:30:57.271 DEBUG [13054]: Connecting to database... -- 17:30:57.271 DEBUG [13054]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:30:57.271 SQL [13054]: pgsql_db_connect() -- 17:30:57.275 DEBUG [13054]: Database connection successful -- 17:30:57.275 INFO [13054]: _SERVER found -- 17:30:57.275 INFO [13054]: REMOTE_ADDR = 192.168.1.13 -- 17:30:57.275 INFO [13054]: SERVER_NAME = oameye.works.coregrade.com -- 17:30:57.275 INFO [13054]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8nklal2pl1c0q8avg0ej73ro1nffocu8 -- 17:30:57.275 INFO [13054]: QUERY_STRING = /member/upload -- 17:30:57.275 INFO [13054]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:30:57.307 INFO [13054]: COREGRADE is stopping... -- 17:30:57.307 DEBUG [13054]: Closing database connection -- 17:30:57.307 SQL [13054]: pgsql_close() -- 17:31:29.012 INFO [13055]: COREGRADE is starting... -- 17:31:29.012 INFO [13055]: Version from config: 1.0 -- 17:31:29.012 DEBUG [13055]: Connecting to database... -- 17:31:29.012 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:29.012 SQL [13055]: pgsql_db_connect() -- 17:31:29.016 DEBUG [13055]: Database connection successful -- 17:31:29.016 INFO [13055]: _SERVER found -- 17:31:29.016 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 17:31:29.016 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 17:31:29.016 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8nklal2pl1c0q8avg0ej73ro1nffocu8 -- 17:31:29.016 INFO [13055]: QUERY_STRING = /member/upload -- 17:31:29.016 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:31:29.048 INFO [13055]: COREGRADE is stopping... -- 17:31:29.049 DEBUG [13055]: Closing database connection -- 17:31:29.049 SQL [13055]: pgsql_close() -- 17:31:31.052 INFO [13055]: COREGRADE is starting... -- 17:31:31.052 INFO [13055]: Version from config: 1.0 -- 17:31:31.052 DEBUG [13055]: Connecting to database... -- 17:31:31.052 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:31.052 SQL [13055]: pgsql_db_connect() -- 17:31:31.056 DEBUG [13055]: Database connection successful -- 17:31:31.056 INFO [13055]: _SERVER found -- 17:31:31.056 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 17:31:31.056 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 17:31:31.056 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8nklal2pl1c0q8avg0ej73ro1nffocu8 -- 17:31:31.056 INFO [13055]: QUERY_STRING = /member/upload -- 17:31:31.056 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:31:31.086 INFO [13055]: COREGRADE is stopping... -- 17:31:31.086 DEBUG [13055]: Closing database connection -- 17:31:31.086 SQL [13055]: pgsql_close() -- 17:31:35.541 INFO [13055]: COREGRADE is starting... -- 17:31:35.542 INFO [13055]: Version from config: 1.0 -- 17:31:35.542 DEBUG [13055]: Connecting to database... -- 17:31:35.542 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:35.542 SQL [13055]: pgsql_db_connect() -- 17:31:35.546 DEBUG [13055]: Database connection successful -- 17:31:35.546 INFO [13055]: _SERVER found -- 17:31:35.546 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 17:31:35.546 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 17:31:35.546 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8nklal2pl1c0q8avg0ej73ro1nffocu8 -- 17:31:35.546 INFO [13055]: QUERY_STRING = /member/page -- 17:31:35.546 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:31:35.587 INFO [13055]: COREGRADE is stopping... -- 17:31:35.587 DEBUG [13055]: Closing database connection -- 17:31:35.587 SQL [13055]: pgsql_close() -- 17:31:35.689 INFO [13055]: COREGRADE is starting... -- 17:31:35.690 INFO [13055]: Version from config: 1.0 -- 17:31:35.690 DEBUG [13055]: Connecting to database... -- 17:31:35.690 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:35.690 SQL [13055]: pgsql_db_connect() -- 17:31:35.693 DEBUG [13055]: Database connection successful -- 17:31:35.693 INFO [13055]: _SERVER found -- 17:31:35.694 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 17:31:35.694 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 17:31:35.694 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8nklal2pl1c0q8avg0ej73ro1nffocu8 -- 17:31:35.694 INFO [13055]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:31:35.694 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:31:35.705 INFO [13055]: COREGRADE is stopping... -- 17:31:35.705 DEBUG [13055]: Closing database connection -- 17:31:35.705 SQL [13055]: pgsql_close() -- 17:31:38.554 INFO [13055]: COREGRADE is starting... -- 17:31:38.554 INFO [13055]: Version from config: 1.0 -- 17:31:38.554 DEBUG [13055]: Connecting to database... -- 17:31:38.554 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:38.554 SQL [13055]: pgsql_db_connect() -- 17:31:38.558 DEBUG [13055]: Database connection successful -- 17:31:38.558 INFO [13055]: _SERVER found -- 17:31:38.558 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 17:31:38.558 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 17:31:38.558 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8nklal2pl1c0q8avg0ej73ro1nffocu8 -- 17:31:38.558 INFO [13055]: QUERY_STRING = /member/viewCardAddAction -- 17:31:38.558 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:31:38.590 INFO [13055]: COREGRADE is stopping... -- 17:31:38.590 DEBUG [13055]: Closing database connection -- 17:31:38.590 SQL [13055]: pgsql_close() -- 17:31:38.616 INFO [13055]: COREGRADE is starting... -- 17:31:38.616 INFO [13055]: Version from config: 1.0 -- 17:31:38.616 DEBUG [13055]: Connecting to database... -- 17:31:38.616 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:38.616 SQL [13055]: pgsql_db_connect() -- 17:31:38.620 DEBUG [13055]: Database connection successful -- 17:31:38.620 INFO [13055]: _SERVER found -- 17:31:38.620 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 17:31:38.620 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 17:31:38.620 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8nklal2pl1c0q8avg0ej73ro1nffocu8 -- 17:31:38.620 INFO [13055]: QUERY_STRING = /member/upload -- 17:31:38.620 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:31:38.650 INFO [13055]: COREGRADE is stopping... -- 17:31:38.650 DEBUG [13055]: Closing database connection -- 17:31:38.650 SQL [13055]: pgsql_close() -- 17:31:38.673 INFO [13055]: COREGRADE is starting... -- 17:31:38.673 INFO [13055]: Version from config: 1.0 -- 17:31:38.673 DEBUG [13055]: Connecting to database... -- 17:31:38.673 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:38.673 SQL [13055]: pgsql_db_connect() -- 17:31:38.677 DEBUG [13055]: Database connection successful -- 17:31:38.677 INFO [13055]: _SERVER found -- 17:31:38.677 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 17:31:38.677 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 17:31:38.677 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8nklal2pl1c0q8avg0ej73ro1nffocu8 -- 17:31:38.677 INFO [13055]: QUERY_STRING = /home/uploads/E5AB5CE0D4C24E4B9D968204658128F3/WhatEthernetCable.mp4 -- 17:31:38.677 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:31:38.689 INFO [13055]: COREGRADE is stopping... -- 17:31:38.689 DEBUG [13055]: Closing database connection -- 17:31:38.689 SQL [13055]: pgsql_close() -- 17:31:47.104 INFO [13123]: COREGRADE is starting... -- 17:31:47.104 INFO [13123]: Version from config: 1.0 -- 17:31:47.104 DEBUG [13123]: Connecting to database... -- 17:31:47.104 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:47.104 SQL [13123]: pgsql_db_connect() -- 17:31:47.108 DEBUG [13123]: Database connection successful -- 17:31:47.108 INFO [13123]: _SERVER found -- 17:31:47.108 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 17:31:47.108 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 17:31:47.108 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8nklal2pl1c0q8avg0ej73ro1nffocu8 -- 17:31:47.108 INFO [13123]: QUERY_STRING = /member/page -- 17:31:47.108 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:31:47.149 INFO [13123]: COREGRADE is stopping... -- 17:31:47.149 DEBUG [13123]: Closing database connection -- 17:31:47.149 SQL [13123]: pgsql_close() -- 17:31:47.619 INFO [13123]: COREGRADE is starting... -- 17:31:47.620 INFO [13123]: Version from config: 1.0 -- 17:31:47.620 DEBUG [13123]: Connecting to database... -- 17:31:47.620 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:47.620 SQL [13123]: pgsql_db_connect() -- 17:31:47.620 INFO [13052]: COREGRADE is starting... -- 17:31:47.620 INFO [13052]: Version from config: 1.0 -- 17:31:47.620 DEBUG [13052]: Connecting to database... -- 17:31:47.620 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:47.620 SQL [13052]: pgsql_db_connect() -- 17:31:47.624 DEBUG [13052]: Database connection successful -- 17:31:47.624 INFO [13052]: _SERVER found -- 17:31:47.624 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 17:31:47.624 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 17:31:47.624 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8nklal2pl1c0q8avg0ej73ro1nffocu8 -- 17:31:47.624 INFO [13052]: QUERY_STRING = /member/page -- 17:31:47.624 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:31:47.664 INFO [13052]: COREGRADE is stopping... -- 17:31:47.664 DEBUG [13052]: Closing database connection -- 17:31:47.664 SQL [13052]: pgsql_close() -- 17:31:47.624 DEBUG [13123]: Database connection successful -- 17:31:47.624 INFO [13123]: _SERVER found -- 17:31:47.624 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 17:31:47.624 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 17:31:47.624 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8nklal2pl1c0q8avg0ej73ro1nffocu8 -- 17:31:47.624 INFO [13123]: QUERY_STRING = /member/page -- 17:31:47.624 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:31:47.676 INFO [13123]: COREGRADE is stopping... -- 17:31:47.676 DEBUG [13123]: Closing database connection -- 17:31:47.676 SQL [13123]: pgsql_close() -- 17:31:47.810 INFO [13052]: COREGRADE is starting... -- 17:31:47.810 INFO [13052]: Version from config: 1.0 -- 17:31:47.810 DEBUG [13052]: Connecting to database... -- 17:31:47.810 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:47.810 SQL [13052]: pgsql_db_connect() -- 17:31:47.814 DEBUG [13052]: Database connection successful -- 17:31:47.814 INFO [13052]: _SERVER found -- 17:31:47.814 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 17:31:47.814 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 17:31:47.814 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8nklal2pl1c0q8avg0ej73ro1nffocu8 -- 17:31:47.814 INFO [13052]: QUERY_STRING = /member/page -- 17:31:47.814 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:31:47.856 INFO [13052]: COREGRADE is stopping... -- 17:31:47.856 DEBUG [13052]: Closing database connection -- 17:31:47.856 SQL [13052]: pgsql_close() -- 17:31:49.106 INFO [13052]: COREGRADE is starting... -- 17:31:49.106 INFO [13052]: Version from config: 1.0 -- 17:31:49.106 DEBUG [13052]: Connecting to database... -- 17:31:49.106 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:49.106 SQL [13052]: pgsql_db_connect() -- 17:31:49.110 DEBUG [13052]: Database connection successful -- 17:31:49.110 INFO [13052]: _SERVER found -- 17:31:49.110 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 17:31:49.110 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 17:31:49.110 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8nklal2pl1c0q8avg0ej73ro1nffocu8 -- 17:31:49.110 INFO [13052]: QUERY_STRING = /member/upload -- 17:31:49.110 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:31:49.143 INFO [13052]: COREGRADE is stopping... -- 17:31:49.143 DEBUG [13052]: Closing database connection -- 17:31:49.143 SQL [13052]: pgsql_close() -- 17:32:41.659 INFO [13051]: COREGRADE is starting... -- 17:32:41.659 INFO [13051]: Version from config: 1.0 -- 17:32:41.659 DEBUG [13051]: Connecting to database... -- 17:32:41.659 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:32:41.659 SQL [13051]: pgsql_db_connect() -- 17:32:41.663 DEBUG [13051]: Database connection successful -- 17:32:41.663 INFO [13051]: _SERVER found -- 17:32:41.663 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 17:32:41.663 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 17:32:41.663 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8nklal2pl1c0q8avg0ej73ro1nffocu8 -- 17:32:41.663 INFO [13051]: QUERY_STRING = /member/upload -- 17:32:41.663 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:32:41.695 INFO [13051]: COREGRADE is stopping... -- 17:32:41.695 DEBUG [13051]: Closing database connection -- 17:32:41.695 SQL [13051]: pgsql_close() -- 17:32:44.118 INFO [13051]: COREGRADE is starting... -- 17:32:44.118 INFO [13051]: Version from config: 1.0 -- 17:32:44.118 DEBUG [13051]: Connecting to database... -- 17:32:44.118 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:32:44.118 SQL [13051]: pgsql_db_connect() -- 17:32:44.122 DEBUG [13051]: Database connection successful -- 17:32:44.122 INFO [13051]: _SERVER found -- 17:32:44.122 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 17:32:44.122 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 17:32:44.122 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8nklal2pl1c0q8avg0ej73ro1nffocu8 -- 17:32:44.122 INFO [13051]: QUERY_STRING = /member/viewCardAddAction -- 17:32:44.122 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:32:44.154 INFO [13051]: COREGRADE is stopping... -- 17:32:44.154 DEBUG [13051]: Closing database connection -- 17:32:44.154 SQL [13051]: pgsql_close() -- 17:32:51.505 INFO [16100]: COREGRADE is starting... -- 17:32:51.506 INFO [16100]: Version from config: 1.0 -- 17:32:51.506 DEBUG [16100]: Connecting to database... -- 17:32:51.506 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:32:51.506 SQL [16100]: pgsql_db_connect() -- 17:32:51.510 DEBUG [16100]: Database connection successful -- 17:32:51.510 INFO [16100]: _SERVER found -- 17:32:51.510 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 17:32:51.510 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 17:32:51.510 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8nklal2pl1c0q8avg0ej73ro1nffocu8 -- 17:32:51.510 INFO [16100]: QUERY_STRING = /member/page -- 17:32:51.510 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:32:51.555 INFO [16100]: COREGRADE is stopping... -- 17:32:51.555 DEBUG [16100]: Closing database connection -- 17:32:51.555 SQL [16100]: pgsql_close() -- 17:32:51.708 INFO [16100]: COREGRADE is starting... -- 17:32:51.708 INFO [16100]: Version from config: 1.0 -- 17:32:51.708 DEBUG [16100]: Connecting to database... -- 17:32:51.708 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:32:51.708 SQL [16100]: pgsql_db_connect() -- 17:32:51.712 DEBUG [16100]: Database connection successful -- 17:32:51.712 INFO [16100]: _SERVER found -- 17:32:51.712 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 17:32:51.712 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 17:32:51.712 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8nklal2pl1c0q8avg0ej73ro1nffocu8 -- 17:32:51.712 INFO [16100]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:32:51.712 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:32:51.723 INFO [16100]: COREGRADE is stopping... -- 17:32:51.723 DEBUG [16100]: Closing database connection -- 17:32:51.723 SQL [16100]: pgsql_close() -- 17:32:54.793 INFO [16100]: COREGRADE is starting... -- 17:32:54.793 INFO [16100]: Version from config: 1.0 -- 17:32:54.793 DEBUG [16100]: Connecting to database... -- 17:32:54.793 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:32:54.793 SQL [16100]: pgsql_db_connect() -- 17:32:54.797 DEBUG [16100]: Database connection successful -- 17:32:54.797 INFO [16100]: _SERVER found -- 17:32:54.797 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 17:32:54.797 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 17:32:54.797 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8nklal2pl1c0q8avg0ej73ro1nffocu8 -- 17:32:54.797 INFO [16100]: QUERY_STRING = /member/viewCardAddAction -- 17:32:54.797 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:32:54.831 INFO [16100]: COREGRADE is stopping... -- 17:32:54.831 DEBUG [16100]: Closing database connection -- 17:32:54.831 SQL [16100]: pgsql_close() -- 17:32:54.852 INFO [16100]: COREGRADE is starting... -- 17:32:54.852 INFO [16100]: Version from config: 1.0 -- 17:32:54.852 DEBUG [16100]: Connecting to database... -- 17:32:54.852 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:32:54.853 SQL [16100]: pgsql_db_connect() -- 17:32:54.856 DEBUG [16100]: Database connection successful -- 17:32:54.856 INFO [16100]: _SERVER found -- 17:32:54.856 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 17:32:54.856 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 17:32:54.856 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8nklal2pl1c0q8avg0ej73ro1nffocu8 -- 17:32:54.856 INFO [16100]: QUERY_STRING = /member/upload -- 17:32:54.856 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:32:54.889 INFO [16100]: COREGRADE is stopping... -- 17:32:54.889 DEBUG [16100]: Closing database connection -- 17:32:54.889 SQL [16100]: pgsql_close() -- 17:32:54.899 INFO [16100]: COREGRADE is starting... -- 17:32:54.899 INFO [16100]: Version from config: 1.0 -- 17:32:54.899 DEBUG [16100]: Connecting to database... -- 17:32:54.899 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:32:54.899 SQL [16100]: pgsql_db_connect() -- 17:32:54.903 DEBUG [16100]: Database connection successful -- 17:32:54.903 INFO [16100]: _SERVER found -- 17:32:54.903 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 17:32:54.903 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 17:32:54.903 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8nklal2pl1c0q8avg0ej73ro1nffocu8 -- 17:32:54.903 INFO [16100]: QUERY_STRING = /home/uploads/E5AB5CE0D4C24E4B9D968204658128F3/WhatEthernetCable.mp4 -- 17:32:54.903 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:32:54.915 INFO [16100]: COREGRADE is stopping... -- 17:32:54.915 DEBUG [16100]: Closing database connection -- 17:32:54.915 SQL [16100]: pgsql_close() -- 17:32:59.780 INFO [16100]: COREGRADE is starting... -- 17:32:59.780 INFO [16100]: Version from config: 1.0 -- 17:32:59.780 DEBUG [16100]: Connecting to database... -- 17:32:59.780 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:32:59.780 SQL [16100]: pgsql_db_connect() -- 17:32:59.784 DEBUG [16100]: Database connection successful -- 17:32:59.784 INFO [16100]: _SERVER found -- 17:32:59.784 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 17:32:59.784 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 17:32:59.784 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8nklal2pl1c0q8avg0ej73ro1nffocu8 -- 17:32:59.784 INFO [16100]: QUERY_STRING = /member/page -- 17:32:59.784 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:32:59.824 INFO [16100]: COREGRADE is stopping... -- 17:32:59.825 DEBUG [16100]: Closing database connection -- 17:32:59.825 SQL [16100]: pgsql_close() -- 17:33:00.246 INFO [13053]: COREGRADE is starting... -- 17:33:00.246 INFO [13053]: Version from config: 1.0 -- 17:33:00.246 DEBUG [13053]: Connecting to database... -- 17:33:00.246 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:00.246 SQL [13053]: pgsql_db_connect() -- 17:33:00.250 DEBUG [13053]: Database connection successful -- 17:33:00.250 INFO [13053]: _SERVER found -- 17:33:00.250 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 17:33:00.250 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 17:33:00.250 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8nklal2pl1c0q8avg0ej73ro1nffocu8 -- 17:33:00.250 INFO [13053]: QUERY_STRING = /member/page -- 17:33:00.250 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:33:00.290 INFO [13053]: COREGRADE is stopping... -- 17:33:00.290 DEBUG [13053]: Closing database connection -- 17:33:00.290 SQL [13053]: pgsql_close() -- 17:33:02.093 INFO [13053]: COREGRADE is starting... -- 17:33:02.093 INFO [13053]: Version from config: 1.0 -- 17:33:02.093 DEBUG [13053]: Connecting to database... -- 17:33:02.093 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:02.093 SQL [13053]: pgsql_db_connect() -- 17:33:02.098 DEBUG [13053]: Database connection successful -- 17:33:02.098 INFO [13053]: _SERVER found -- 17:33:02.098 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 17:33:02.098 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 17:33:02.098 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8nklal2pl1c0q8avg0ej73ro1nffocu8 -- 17:33:02.098 INFO [13053]: QUERY_STRING = /member/upload -- 17:33:02.098 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:33:02.128 INFO [13053]: COREGRADE is stopping... -- 17:33:02.128 DEBUG [13053]: Closing database connection -- 17:33:02.128 SQL [13053]: pgsql_close() -- 17:33:34.396 INFO [16105]: COREGRADE is starting... -- 17:33:34.396 INFO [16105]: Version from config: 1.0 -- 17:33:34.396 DEBUG [16105]: Connecting to database... -- 17:33:34.396 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:34.396 SQL [16105]: pgsql_db_connect() -- 17:33:34.400 DEBUG [16105]: Database connection successful -- 17:33:34.400 INFO [16105]: _SERVER found -- 17:33:34.400 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 17:33:34.400 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 17:33:34.400 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8nklal2pl1c0q8avg0ej73ro1nffocu8 -- 17:33:34.400 INFO [16105]: QUERY_STRING = /member/upload -- 17:33:34.400 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:33:34.433 INFO [16105]: COREGRADE is stopping... -- 17:33:34.433 DEBUG [16105]: Closing database connection -- 17:33:34.433 SQL [16105]: pgsql_close() -- 17:35:49.665 INFO [13054]: COREGRADE is starting... -- 17:35:49.665 INFO [13054]: Version from config: 1.0 -- 17:35:49.665 DEBUG [13054]: Connecting to database... -- 17:35:49.665 DEBUG [13054]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:35:49.666 SQL [13054]: pgsql_db_connect() -- 17:35:49.670 DEBUG [13054]: Database connection successful -- 17:35:49.670 INFO [13054]: _SERVER found -- 17:35:49.670 INFO [13054]: REMOTE_ADDR = 192.168.1.13 -- 17:35:49.670 INFO [13054]: SERVER_NAME = oameye.works.coregrade.com -- 17:35:49.670 INFO [13054]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8nklal2pl1c0q8avg0ej73ro1nffocu8 -- 17:35:49.670 INFO [13054]: QUERY_STRING = /member/page -- 17:35:49.670 INFO [13054]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:35:49.712 INFO [13054]: COREGRADE is stopping... -- 17:35:49.712 DEBUG [13054]: Closing database connection -- 17:35:49.712 SQL [13054]: pgsql_close() -- 17:36:50.661 INFO [13055]: COREGRADE is starting... -- 17:36:50.661 INFO [13055]: Version from config: 1.0 -- 17:36:50.661 DEBUG [13055]: Connecting to database... -- 17:36:50.661 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:50.661 SQL [13055]: pgsql_db_connect() -- 17:36:50.665 DEBUG [13055]: Database connection successful -- 17:36:50.665 INFO [13055]: _SERVER found -- 17:36:50.665 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 17:36:50.665 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 17:36:50.665 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8nklal2pl1c0q8avg0ej73ro1nffocu8 -- 17:36:50.665 INFO [13055]: QUERY_STRING = /member/page -- 17:36:50.665 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:50.710 INFO [13055]: COREGRADE is stopping... -- 17:36:50.710 DEBUG [13055]: Closing database connection -- 17:36:50.710 SQL [13055]: pgsql_close() -- 17:36:50.889 INFO [13055]: COREGRADE is starting... -- 17:36:50.890 INFO [13055]: Version from config: 1.0 -- 17:36:50.890 DEBUG [13055]: Connecting to database... -- 17:36:50.890 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:50.890 SQL [13055]: pgsql_db_connect() -- 17:36:50.894 DEBUG [13055]: Database connection successful -- 17:36:50.894 INFO [13055]: _SERVER found -- 17:36:50.894 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 17:36:50.894 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 17:36:50.894 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=l50g6nvvo2ds1irgl45ld8urqu7084kb -- 17:36:50.894 INFO [13055]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:36:50.894 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:50.906 INFO [13055]: COREGRADE is stopping... -- 17:36:50.906 DEBUG [13055]: Closing database connection -- 17:36:50.906 SQL [13055]: pgsql_close() -- 17:36:53.474 INFO [13055]: COREGRADE is starting... -- 17:36:53.475 INFO [13055]: Version from config: 1.0 -- 17:36:53.475 DEBUG [13055]: Connecting to database... -- 17:36:53.475 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:53.475 SQL [13055]: pgsql_db_connect() -- 17:36:53.479 DEBUG [13055]: Database connection successful -- 17:36:53.479 INFO [13055]: _SERVER found -- 17:36:53.479 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 17:36:53.479 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 17:36:53.479 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=l50g6nvvo2ds1irgl45ld8urqu7084kb -- 17:36:53.479 INFO [13055]: QUERY_STRING = /member/viewCardAddAction -- 17:36:53.479 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:53.511 INFO [13055]: COREGRADE is stopping... -- 17:36:53.511 DEBUG [13055]: Closing database connection -- 17:36:53.511 SQL [13055]: pgsql_close() -- 17:36:53.541 INFO [13055]: COREGRADE is starting... -- 17:36:53.542 INFO [13055]: Version from config: 1.0 -- 17:36:53.542 DEBUG [13055]: Connecting to database... -- 17:36:53.542 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:53.542 SQL [13055]: pgsql_db_connect() -- 17:36:53.546 DEBUG [13055]: Database connection successful -- 17:36:53.546 INFO [13055]: _SERVER found -- 17:36:53.546 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 17:36:53.546 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 17:36:53.546 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=l50g6nvvo2ds1irgl45ld8urqu7084kb -- 17:36:53.546 INFO [13055]: QUERY_STRING = /member/upload -- 17:36:53.546 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:53.578 INFO [13055]: COREGRADE is stopping... -- 17:36:53.578 DEBUG [13055]: Closing database connection -- 17:36:53.578 SQL [13055]: pgsql_close() -- 17:36:53.590 INFO [13055]: COREGRADE is starting... -- 17:36:53.590 INFO [13055]: Version from config: 1.0 -- 17:36:53.590 DEBUG [13055]: Connecting to database... -- 17:36:53.590 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:36:53.590 SQL [13055]: pgsql_db_connect() -- 17:36:53.594 DEBUG [13055]: Database connection successful -- 17:36:53.594 INFO [13055]: _SERVER found -- 17:36:53.594 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 17:36:53.594 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 17:36:53.594 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=l50g6nvvo2ds1irgl45ld8urqu7084kb -- 17:36:53.594 INFO [13055]: QUERY_STRING = /home/uploads/E5AB5CE0D4C24E4B9D968204658128F3/WhatEthernetCable.mp4 -- 17:36:53.594 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:36:53.606 INFO [13055]: COREGRADE is stopping... -- 17:36:53.606 DEBUG [13055]: Closing database connection -- 17:36:53.606 SQL [13055]: pgsql_close() -- 17:37:01.627 INFO [13123]: COREGRADE is starting... -- 17:37:01.628 INFO [13123]: Version from config: 1.0 -- 17:37:01.628 DEBUG [13123]: Connecting to database... -- 17:37:01.628 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:01.628 SQL [13123]: pgsql_db_connect() -- 17:37:01.632 DEBUG [13123]: Database connection successful -- 17:37:01.632 INFO [13123]: _SERVER found -- 17:37:01.632 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 17:37:01.632 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 17:37:01.632 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=l50g6nvvo2ds1irgl45ld8urqu7084kb -- 17:37:01.632 INFO [13123]: QUERY_STRING = /member/page -- 17:37:01.632 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:37:01.677 INFO [13123]: COREGRADE is stopping... -- 17:37:01.677 DEBUG [13123]: Closing database connection -- 17:37:01.677 SQL [13123]: pgsql_close() -- 17:41:46.274 INFO [13052]: COREGRADE is starting... -- 17:41:46.274 INFO [13052]: Version from config: 1.0 -- 17:41:46.274 DEBUG [13052]: Connecting to database... -- 17:41:46.274 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:46.274 SQL [13052]: pgsql_db_connect() -- 17:41:46.278 DEBUG [13052]: Database connection successful -- 17:41:46.278 INFO [13052]: _SERVER found -- 17:41:46.278 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 17:41:46.278 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:46.278 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=l50g6nvvo2ds1irgl45ld8urqu7084kb -- 17:41:46.278 INFO [13052]: QUERY_STRING = /member/page -- 17:41:46.278 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:41:46.324 INFO [13052]: COREGRADE is stopping... -- 17:41:46.324 DEBUG [13052]: Closing database connection -- 17:41:46.324 SQL [13052]: pgsql_close() -- 17:41:46.466 INFO [13052]: COREGRADE is starting... -- 17:41:46.466 INFO [13052]: Version from config: 1.0 -- 17:41:46.466 DEBUG [13052]: Connecting to database... -- 17:41:46.466 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:46.466 SQL [13052]: pgsql_db_connect() -- 17:41:46.470 DEBUG [13052]: Database connection successful -- 17:41:46.470 INFO [13052]: _SERVER found -- 17:41:46.470 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 17:41:46.470 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:46.470 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=l50g6nvvo2ds1irgl45ld8urqu7084kb -- 17:41:46.470 INFO [13052]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:41:46.470 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:41:46.481 INFO [13052]: COREGRADE is stopping... -- 17:41:46.481 DEBUG [13052]: Closing database connection -- 17:41:46.481 SQL [13052]: pgsql_close() -- 17:41:50.153 INFO [13052]: COREGRADE is starting... -- 17:41:50.153 INFO [13052]: Version from config: 1.0 -- 17:41:50.153 DEBUG [13052]: Connecting to database... -- 17:41:50.153 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:50.153 SQL [13052]: pgsql_db_connect() -- 17:41:50.158 DEBUG [13052]: Database connection successful -- 17:41:50.158 INFO [13052]: _SERVER found -- 17:41:50.158 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 17:41:50.158 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:50.158 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=l50g6nvvo2ds1irgl45ld8urqu7084kb -- 17:41:50.158 INFO [13052]: QUERY_STRING = /member/viewCardAddAction -- 17:41:50.158 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:41:50.192 INFO [13052]: COREGRADE is stopping... -- 17:41:50.192 DEBUG [13052]: Closing database connection -- 17:41:50.192 SQL [13052]: pgsql_close() -- 17:41:50.221 INFO [13052]: COREGRADE is starting... -- 17:41:50.222 INFO [13052]: Version from config: 1.0 -- 17:41:50.222 DEBUG [13052]: Connecting to database... -- 17:41:50.222 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:50.222 SQL [13052]: pgsql_db_connect() -- 17:41:50.226 DEBUG [13052]: Database connection successful -- 17:41:50.226 INFO [13052]: _SERVER found -- 17:41:50.226 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 17:41:50.226 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:50.226 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=l50g6nvvo2ds1irgl45ld8urqu7084kb -- 17:41:50.226 INFO [13052]: QUERY_STRING = /member/upload -- 17:41:50.226 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:41:50.258 INFO [13052]: COREGRADE is stopping... -- 17:41:50.258 DEBUG [13052]: Closing database connection -- 17:41:50.258 SQL [13052]: pgsql_close() -- 17:41:50.277 INFO [13052]: COREGRADE is starting... -- 17:41:50.277 INFO [13052]: Version from config: 1.0 -- 17:41:50.277 DEBUG [13052]: Connecting to database... -- 17:41:50.277 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:50.277 SQL [13052]: pgsql_db_connect() -- 17:41:50.281 DEBUG [13052]: Database connection successful -- 17:41:50.281 INFO [13052]: _SERVER found -- 17:41:50.281 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 17:41:50.281 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:50.281 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=l50g6nvvo2ds1irgl45ld8urqu7084kb -- 17:41:50.281 INFO [13052]: QUERY_STRING = /home/uploads/E5AB5CE0D4C24E4B9D968204658128F3/WhatEthernetCable.mp4 -- 17:41:50.281 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:41:50.293 INFO [13052]: COREGRADE is stopping... -- 17:41:50.293 DEBUG [13052]: Closing database connection -- 17:41:50.293 SQL [13052]: pgsql_close() -- 17:41:57.430 INFO [13051]: COREGRADE is starting... -- 17:41:57.431 INFO [13051]: Version from config: 1.0 -- 17:41:57.431 DEBUG [13051]: Connecting to database... -- 17:41:57.431 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:57.431 SQL [13051]: pgsql_db_connect() -- 17:41:57.435 DEBUG [13051]: Database connection successful -- 17:41:57.435 INFO [13051]: _SERVER found -- 17:41:57.435 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 17:41:57.435 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:57.435 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=l50g6nvvo2ds1irgl45ld8urqu7084kb -- 17:41:57.435 INFO [13051]: QUERY_STRING = /member/page -- 17:41:57.435 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:41:57.477 INFO [13051]: COREGRADE is stopping... -- 17:41:57.477 DEBUG [13051]: Closing database connection -- 17:41:57.477 SQL [13051]: pgsql_close() -- 17:41:57.736 INFO [16100]: COREGRADE is starting... -- 17:41:57.737 INFO [16100]: Version from config: 1.0 -- 17:41:57.737 DEBUG [16100]: Connecting to database... -- 17:41:57.737 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:57.737 SQL [16100]: pgsql_db_connect() -- 17:41:57.741 DEBUG [16100]: Database connection successful -- 17:41:57.741 INFO [16100]: _SERVER found -- 17:41:57.741 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 17:41:57.741 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:57.741 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=l50g6nvvo2ds1irgl45ld8urqu7084kb -- 17:41:57.741 INFO [16100]: QUERY_STRING = /member/page -- 17:41:57.741 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:41:57.785 INFO [16100]: COREGRADE is stopping... -- 17:41:57.785 DEBUG [16100]: Closing database connection -- 17:41:57.785 SQL [16100]: pgsql_close() -- 17:41:57.793 INFO [13051]: COREGRADE is starting... -- 17:41:57.793 INFO [13051]: Version from config: 1.0 -- 17:41:57.793 DEBUG [13051]: Connecting to database... -- 17:41:57.793 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:57.793 SQL [13051]: pgsql_db_connect() -- 17:41:57.797 DEBUG [13051]: Database connection successful -- 17:41:57.797 INFO [13051]: _SERVER found -- 17:41:57.797 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 17:41:57.797 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:57.797 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=l50g6nvvo2ds1irgl45ld8urqu7084kb -- 17:41:57.797 INFO [13051]: QUERY_STRING = /member/page -- 17:41:57.797 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:41:57.836 INFO [13051]: COREGRADE is stopping... -- 17:41:57.836 DEBUG [13051]: Closing database connection -- 17:41:57.836 SQL [13051]: pgsql_close() -- 17:43:00.577 INFO [13053]: COREGRADE is starting... -- 17:43:00.577 INFO [13053]: Version from config: 1.0 -- 17:43:00.577 DEBUG [13053]: Connecting to database... -- 17:43:00.577 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:43:00.577 SQL [13053]: pgsql_db_connect() -- 17:43:00.582 DEBUG [13053]: Database connection successful -- 17:43:00.582 INFO [13053]: _SERVER found -- 17:43:00.582 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 17:43:00.582 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 17:43:00.582 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=l50g6nvvo2ds1irgl45ld8urqu7084kb -- 17:43:00.582 INFO [13053]: QUERY_STRING = /member/page -- 17:43:00.582 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:43:00.625 INFO [13053]: COREGRADE is stopping... -- 17:43:00.625 DEBUG [13053]: Closing database connection -- 17:43:00.625 SQL [13053]: pgsql_close() -- 17:43:00.746 INFO [13053]: COREGRADE is starting... -- 17:43:00.746 INFO [13053]: Version from config: 1.0 -- 17:43:00.746 DEBUG [13053]: Connecting to database... -- 17:43:00.746 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:43:00.746 SQL [13053]: pgsql_db_connect() -- 17:43:00.750 DEBUG [13053]: Database connection successful -- 17:43:00.750 INFO [13053]: _SERVER found -- 17:43:00.750 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 17:43:00.750 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 17:43:00.750 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=d0gh0etsgd74p48nlrrgrmqeamntptma -- 17:43:00.750 INFO [13053]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:43:00.750 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:43:00.761 INFO [13053]: COREGRADE is stopping... -- 17:43:00.761 DEBUG [13053]: Closing database connection -- 17:43:00.761 SQL [13053]: pgsql_close() -- 17:43:03.393 INFO [13053]: COREGRADE is starting... -- 17:43:03.393 INFO [13053]: Version from config: 1.0 -- 17:43:03.393 DEBUG [13053]: Connecting to database... -- 17:43:03.393 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:43:03.393 SQL [13053]: pgsql_db_connect() -- 17:43:03.397 DEBUG [13053]: Database connection successful -- 17:43:03.397 INFO [13053]: _SERVER found -- 17:43:03.397 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 17:43:03.397 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 17:43:03.397 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=d0gh0etsgd74p48nlrrgrmqeamntptma -- 17:43:03.397 INFO [13053]: QUERY_STRING = /member/viewCardAddAction -- 17:43:03.397 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:43:03.428 INFO [13053]: COREGRADE is stopping... -- 17:43:03.428 DEBUG [13053]: Closing database connection -- 17:43:03.428 SQL [13053]: pgsql_close() -- 17:43:03.458 INFO [13053]: COREGRADE is starting... -- 17:43:03.458 INFO [13053]: Version from config: 1.0 -- 17:43:03.458 DEBUG [13053]: Connecting to database... -- 17:43:03.458 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:43:03.458 SQL [13053]: pgsql_db_connect() -- 17:43:03.462 DEBUG [13053]: Database connection successful -- 17:43:03.462 INFO [13053]: _SERVER found -- 17:43:03.462 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 17:43:03.462 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 17:43:03.462 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=d0gh0etsgd74p48nlrrgrmqeamntptma -- 17:43:03.462 INFO [13053]: QUERY_STRING = /member/upload -- 17:43:03.462 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:43:03.493 INFO [13053]: COREGRADE is stopping... -- 17:43:03.493 DEBUG [13053]: Closing database connection -- 17:43:03.493 SQL [13053]: pgsql_close() -- 17:43:03.503 INFO [13053]: COREGRADE is starting... -- 17:43:03.504 INFO [13053]: Version from config: 1.0 -- 17:43:03.504 DEBUG [13053]: Connecting to database... -- 17:43:03.504 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:43:03.504 SQL [13053]: pgsql_db_connect() -- 17:43:03.508 DEBUG [13053]: Database connection successful -- 17:43:03.508 INFO [13053]: _SERVER found -- 17:43:03.508 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 17:43:03.508 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 17:43:03.508 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=d0gh0etsgd74p48nlrrgrmqeamntptma -- 17:43:03.508 INFO [13053]: QUERY_STRING = /home/uploads/E5AB5CE0D4C24E4B9D968204658128F3/WhatEthernetCable.mp4 -- 17:43:03.508 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:43:03.519 INFO [13053]: COREGRADE is stopping... -- 17:43:03.519 DEBUG [13053]: Closing database connection -- 17:43:03.519 SQL [13053]: pgsql_close() -- 17:43:08.209 INFO [13053]: COREGRADE is starting... -- 17:43:08.209 INFO [13053]: Version from config: 1.0 -- 17:43:08.209 DEBUG [13053]: Connecting to database... -- 17:43:08.209 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:43:08.209 SQL [13053]: pgsql_db_connect() -- 17:43:08.213 DEBUG [13053]: Database connection successful -- 17:43:08.213 INFO [13053]: _SERVER found -- 17:43:08.213 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 17:43:08.213 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 17:43:08.213 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=d0gh0etsgd74p48nlrrgrmqeamntptma -- 17:43:08.213 INFO [13053]: QUERY_STRING = /member/page -- 17:43:08.213 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:43:08.253 INFO [13053]: COREGRADE is stopping... -- 17:43:08.253 DEBUG [13053]: Closing database connection -- 17:43:08.253 SQL [13053]: pgsql_close() -- 17:43:08.752 INFO [16105]: COREGRADE is starting... -- 17:43:08.752 INFO [16105]: Version from config: 1.0 -- 17:43:08.752 DEBUG [16105]: Connecting to database... -- 17:43:08.752 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:43:08.752 SQL [16105]: pgsql_db_connect() -- 17:43:08.781 INFO [13053]: COREGRADE is starting... -- 17:43:08.781 INFO [13053]: Version from config: 1.0 -- 17:43:08.781 DEBUG [13053]: Connecting to database... -- 17:43:08.781 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:43:08.781 SQL [13053]: pgsql_db_connect() -- 17:43:08.756 DEBUG [16105]: Database connection successful -- 17:43:08.756 INFO [16105]: _SERVER found -- 17:43:08.756 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 17:43:08.756 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 17:43:08.756 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=d0gh0etsgd74p48nlrrgrmqeamntptma -- 17:43:08.756 INFO [16105]: QUERY_STRING = /member/page -- 17:43:08.756 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:43:08.797 INFO [16105]: COREGRADE is stopping... -- 17:43:08.797 DEBUG [16105]: Closing database connection -- 17:43:08.797 SQL [16105]: pgsql_close() -- 17:43:08.785 DEBUG [13053]: Database connection successful -- 17:43:08.785 INFO [13053]: _SERVER found -- 17:43:08.785 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 17:43:08.785 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 17:43:08.785 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=d0gh0etsgd74p48nlrrgrmqeamntptma -- 17:43:08.785 INFO [13053]: QUERY_STRING = /member/page -- 17:43:08.785 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:43:08.825 INFO [13053]: COREGRADE is stopping... -- 17:43:08.825 DEBUG [13053]: Closing database connection -- 17:43:08.825 SQL [13053]: pgsql_close() -- 17:45:50.263 INFO [13054]: COREGRADE is starting... -- 17:45:50.263 INFO [13054]: Version from config: 1.0 -- 17:45:50.263 DEBUG [13054]: Connecting to database... -- 17:45:50.263 DEBUG [13054]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:50.263 SQL [13054]: pgsql_db_connect() -- 17:45:50.267 DEBUG [13054]: Database connection successful -- 17:45:50.267 INFO [13054]: _SERVER found -- 17:45:50.267 INFO [13054]: REMOTE_ADDR = 192.168.1.13 -- 17:45:50.267 INFO [13054]: SERVER_NAME = oameye.works.coregrade.com -- 17:45:50.267 INFO [13054]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=d0gh0etsgd74p48nlrrgrmqeamntptma -- 17:45:50.267 INFO [13054]: QUERY_STRING = /member/viewCardAddAction -- 17:45:50.267 INFO [13054]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:50.300 INFO [13054]: COREGRADE is stopping... -- 17:45:50.300 DEBUG [13054]: Closing database connection -- 17:45:50.300 SQL [13054]: pgsql_close() -- 17:45:51.030 INFO [13054]: COREGRADE is starting... -- 17:45:51.030 INFO [13054]: Version from config: 1.0 -- 17:45:51.030 DEBUG [13054]: Connecting to database... -- 17:45:51.030 DEBUG [13054]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:51.030 SQL [13054]: pgsql_db_connect() -- 17:45:51.034 DEBUG [13054]: Database connection successful -- 17:45:51.034 INFO [13054]: _SERVER found -- 17:45:51.034 INFO [13054]: REMOTE_ADDR = 192.168.1.13 -- 17:45:51.034 INFO [13054]: SERVER_NAME = oameye.works.coregrade.com -- 17:45:51.034 INFO [13054]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=d0gh0etsgd74p48nlrrgrmqeamntptma -- 17:45:51.034 INFO [13054]: QUERY_STRING = /member/viewCardAddAction -- 17:45:51.034 INFO [13054]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:51.066 INFO [13054]: COREGRADE is stopping... -- 17:45:51.066 DEBUG [13054]: Closing database connection -- 17:45:51.066 SQL [13054]: pgsql_close() -- 17:45:51.096 INFO [13054]: COREGRADE is starting... -- 17:45:51.097 INFO [13054]: Version from config: 1.0 -- 17:45:51.097 DEBUG [13054]: Connecting to database... -- 17:45:51.097 DEBUG [13054]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:51.097 SQL [13054]: pgsql_db_connect() -- 17:45:51.100 DEBUG [13054]: Database connection successful -- 17:45:51.100 INFO [13054]: _SERVER found -- 17:45:51.100 INFO [13054]: REMOTE_ADDR = 192.168.1.13 -- 17:45:51.100 INFO [13054]: SERVER_NAME = oameye.works.coregrade.com -- 17:45:51.100 INFO [13054]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=d0gh0etsgd74p48nlrrgrmqeamntptma -- 17:45:51.100 INFO [13054]: QUERY_STRING = /member/upload -- 17:45:51.100 INFO [13054]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:51.132 INFO [13054]: COREGRADE is stopping... -- 17:45:51.132 DEBUG [13054]: Closing database connection -- 17:45:51.132 SQL [13054]: pgsql_close() -- 17:45:51.143 INFO [13054]: COREGRADE is starting... -- 17:45:51.143 INFO [13054]: Version from config: 1.0 -- 17:45:51.143 DEBUG [13054]: Connecting to database... -- 17:45:51.143 DEBUG [13054]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:51.143 SQL [13054]: pgsql_db_connect() -- 17:45:51.147 DEBUG [13054]: Database connection successful -- 17:45:51.147 INFO [13054]: _SERVER found -- 17:45:51.147 INFO [13054]: REMOTE_ADDR = 192.168.1.13 -- 17:45:51.147 INFO [13054]: SERVER_NAME = oameye.works.coregrade.com -- 17:45:51.147 INFO [13054]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=d0gh0etsgd74p48nlrrgrmqeamntptma -- 17:45:51.147 INFO [13054]: QUERY_STRING = /home/uploads/E5AB5CE0D4C24E4B9D968204658128F3/page/WhatEthernetCable.mp4 -- 17:45:51.147 INFO [13054]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:51.159 INFO [13054]: COREGRADE is stopping... -- 17:45:51.159 DEBUG [13054]: Closing database connection -- 17:45:51.159 SQL [13054]: pgsql_close() -- 17:48:19.082 INFO [13055]: COREGRADE is starting... -- 17:48:19.083 INFO [13055]: Version from config: 1.0 -- 17:48:19.083 DEBUG [13055]: Connecting to database... -- 17:48:19.083 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:48:19.083 SQL [13055]: pgsql_db_connect() -- 17:48:19.087 DEBUG [13055]: Database connection successful -- 17:48:19.087 INFO [13055]: _SERVER found -- 17:48:19.087 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 17:48:19.087 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 17:48:19.087 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=d0gh0etsgd74p48nlrrgrmqeamntptma -- 17:48:19.087 INFO [13055]: QUERY_STRING = /member/page -- 17:48:19.087 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:48:19.131 INFO [13055]: COREGRADE is stopping... -- 17:48:19.131 DEBUG [13055]: Closing database connection -- 17:48:19.131 SQL [13055]: pgsql_close() -- 17:48:19.269 INFO [13055]: COREGRADE is starting... -- 17:48:19.269 INFO [13055]: Version from config: 1.0 -- 17:48:19.269 DEBUG [13055]: Connecting to database... -- 17:48:19.269 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:48:19.269 SQL [13055]: pgsql_db_connect() -- 17:48:19.273 DEBUG [13055]: Database connection successful -- 17:48:19.273 INFO [13055]: _SERVER found -- 17:48:19.273 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 17:48:19.273 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 17:48:19.273 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fjr25q1vrda4iok0dmklsfnvk05be0b9 -- 17:48:19.273 INFO [13055]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:48:19.273 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:48:19.285 INFO [13055]: COREGRADE is stopping... -- 17:48:19.285 DEBUG [13055]: Closing database connection -- 17:48:19.285 SQL [13055]: pgsql_close() -- 17:48:21.893 INFO [13055]: COREGRADE is starting... -- 17:48:21.893 INFO [13055]: Version from config: 1.0 -- 17:48:21.893 DEBUG [13055]: Connecting to database... -- 17:48:21.893 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:48:21.893 SQL [13055]: pgsql_db_connect() -- 17:48:21.897 DEBUG [13055]: Database connection successful -- 17:48:21.897 INFO [13055]: _SERVER found -- 17:48:21.897 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 17:48:21.897 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 17:48:21.897 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fjr25q1vrda4iok0dmklsfnvk05be0b9 -- 17:48:21.897 INFO [13055]: QUERY_STRING = /member/viewCardAddAction -- 17:48:21.897 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:48:21.929 INFO [13055]: COREGRADE is stopping... -- 17:48:21.929 DEBUG [13055]: Closing database connection -- 17:48:21.929 SQL [13055]: pgsql_close() -- 17:48:21.957 INFO [13055]: COREGRADE is starting... -- 17:48:21.957 INFO [13055]: Version from config: 1.0 -- 17:48:21.957 DEBUG [13055]: Connecting to database... -- 17:48:21.957 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:48:21.957 SQL [13055]: pgsql_db_connect() -- 17:48:21.961 DEBUG [13055]: Database connection successful -- 17:48:21.961 INFO [13055]: _SERVER found -- 17:48:21.961 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 17:48:21.961 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 17:48:21.961 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fjr25q1vrda4iok0dmklsfnvk05be0b9 -- 17:48:21.961 INFO [13055]: QUERY_STRING = /member/upload -- 17:48:21.961 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:48:21.993 INFO [13055]: COREGRADE is stopping... -- 17:48:21.993 DEBUG [13055]: Closing database connection -- 17:48:21.993 SQL [13055]: pgsql_close() -- 17:48:22.007 INFO [13055]: COREGRADE is starting... -- 17:48:22.007 INFO [13055]: Version from config: 1.0 -- 17:48:22.007 DEBUG [13055]: Connecting to database... -- 17:48:22.007 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:48:22.007 SQL [13055]: pgsql_db_connect() -- 17:48:22.011 DEBUG [13055]: Database connection successful -- 17:48:22.011 INFO [13055]: _SERVER found -- 17:48:22.011 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 17:48:22.011 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 17:48:22.011 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fjr25q1vrda4iok0dmklsfnvk05be0b9 -- 17:48:22.011 INFO [13055]: QUERY_STRING = /home/uploads/E5AB5CE0D4C24E4B9D968204658128F3/page/WhatEthernetCable.mp4 -- 17:48:22.011 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:48:22.022 INFO [13055]: COREGRADE is stopping... -- 17:48:22.022 DEBUG [13055]: Closing database connection -- 17:48:22.022 SQL [13055]: pgsql_close() -- 17:48:28.225 INFO [13123]: COREGRADE is starting... -- 17:48:28.226 INFO [13123]: Version from config: 1.0 -- 17:48:28.226 DEBUG [13123]: Connecting to database... -- 17:48:28.226 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:48:28.226 SQL [13123]: pgsql_db_connect() -- 17:48:28.230 DEBUG [13123]: Database connection successful -- 17:48:28.230 INFO [13123]: _SERVER found -- 17:48:28.230 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 17:48:28.230 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 17:48:28.230 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fjr25q1vrda4iok0dmklsfnvk05be0b9 -- 17:48:28.230 INFO [13123]: QUERY_STRING = /member/page -- 17:48:28.230 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:48:28.275 INFO [13123]: COREGRADE is stopping... -- 17:48:28.275 DEBUG [13123]: Closing database connection -- 17:48:28.275 SQL [13123]: pgsql_close() -- 17:48:28.528 INFO [13123]: COREGRADE is starting... -- 17:48:28.528 INFO [13123]: Version from config: 1.0 -- 17:48:28.528 DEBUG [13123]: Connecting to database... -- 17:48:28.528 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:48:28.528 SQL [13123]: pgsql_db_connect() -- 17:48:28.532 DEBUG [13123]: Database connection successful -- 17:48:28.532 INFO [13123]: _SERVER found -- 17:48:28.532 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 17:48:28.532 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 17:48:28.532 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fjr25q1vrda4iok0dmklsfnvk05be0b9 -- 17:48:28.532 INFO [13123]: QUERY_STRING = /member/page -- 17:48:28.532 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:48:28.574 INFO [13123]: COREGRADE is stopping... -- 17:48:28.574 DEBUG [13123]: Closing database connection -- 17:48:28.574 SQL [13123]: pgsql_close() -- 17:48:28.649 INFO [13052]: COREGRADE is starting... -- 17:48:28.649 INFO [13052]: Version from config: 1.0 -- 17:48:28.649 DEBUG [13052]: Connecting to database... -- 17:48:28.649 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:48:28.649 SQL [13052]: pgsql_db_connect() -- 17:48:28.653 DEBUG [13052]: Database connection successful -- 17:48:28.653 INFO [13052]: _SERVER found -- 17:48:28.653 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 17:48:28.653 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 17:48:28.653 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fjr25q1vrda4iok0dmklsfnvk05be0b9 -- 17:48:28.653 INFO [13052]: QUERY_STRING = /member/page -- 17:48:28.653 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:48:28.694 INFO [13052]: COREGRADE is stopping... -- 17:48:28.694 DEBUG [13052]: Closing database connection -- 17:48:28.694 SQL [13052]: pgsql_close() -- 17:48:32.825 INFO [13052]: COREGRADE is starting... -- 17:48:32.825 INFO [13052]: Version from config: 1.0 -- 17:48:32.825 DEBUG [13052]: Connecting to database... -- 17:48:32.825 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:48:32.825 SQL [13052]: pgsql_db_connect() -- 17:48:32.829 DEBUG [13052]: Database connection successful -- 17:48:32.829 INFO [13052]: _SERVER found -- 17:48:32.829 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 17:48:32.829 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 17:48:32.829 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fjr25q1vrda4iok0dmklsfnvk05be0b9 -- 17:48:32.829 INFO [13052]: QUERY_STRING = /member/page -- 17:48:32.829 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:48:32.871 INFO [13052]: COREGRADE is stopping... -- 17:48:32.871 DEBUG [13052]: Closing database connection -- 17:48:32.871 SQL [13052]: pgsql_close() -- 17:48:42.817 INFO [16100]: COREGRADE is starting... -- 17:48:42.818 INFO [16100]: Version from config: 1.0 -- 17:48:42.818 DEBUG [16100]: Connecting to database... -- 17:48:42.818 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:48:42.818 SQL [16100]: pgsql_db_connect() -- 17:48:42.822 DEBUG [16100]: Database connection successful -- 17:48:42.822 INFO [16100]: _SERVER found -- 17:48:42.822 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 17:48:42.822 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 17:48:42.822 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fjr25q1vrda4iok0dmklsfnvk05be0b9 -- 17:48:42.822 INFO [16100]: QUERY_STRING = /member/upload -- 17:48:42.822 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:48:42.859 INFO [16100]: COREGRADE is stopping... -- 17:48:42.859 DEBUG [16100]: Closing database connection -- 17:48:42.859 SQL [16100]: pgsql_close() -- 17:48:42.879 INFO [16100]: COREGRADE is starting... -- 17:48:42.879 INFO [16100]: Version from config: 1.0 -- 17:48:42.879 DEBUG [16100]: Connecting to database... -- 17:48:42.879 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:48:42.879 SQL [16100]: pgsql_db_connect() -- 17:48:42.883 DEBUG [16100]: Database connection successful -- 17:48:42.883 INFO [16100]: _SERVER found -- 17:48:42.883 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 17:48:42.883 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 17:48:42.883 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fjr25q1vrda4iok0dmklsfnvk05be0b9 -- 17:48:42.883 INFO [16100]: QUERY_STRING = /member/upload -- 17:48:42.883 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:48:42.914 INFO [16100]: COREGRADE is stopping... -- 17:48:42.914 DEBUG [16100]: Closing database connection -- 17:48:42.914 SQL [16100]: pgsql_close() -- 17:48:42.937 INFO [16100]: COREGRADE is starting... -- 17:48:42.937 INFO [16100]: Version from config: 1.0 -- 17:48:42.937 DEBUG [16100]: Connecting to database... -- 17:48:42.937 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:48:42.937 SQL [16100]: pgsql_db_connect() -- 17:48:42.941 DEBUG [16100]: Database connection successful -- 17:48:42.941 INFO [16100]: _SERVER found -- 17:48:42.941 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 17:48:42.941 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 17:48:42.941 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fjr25q1vrda4iok0dmklsfnvk05be0b9 -- 17:48:42.941 INFO [16100]: QUERY_STRING = /home/uploads/E5AB5CE0D4C24E4B9D968204658128F3/page/WhatEthernetCable.mp4 -- 17:48:42.941 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:48:42.953 INFO [16100]: COREGRADE is stopping... -- 17:48:42.953 DEBUG [16100]: Closing database connection -- 17:48:42.953 SQL [16100]: pgsql_close() -- 18:03:40.504 INFO [13051]: COREGRADE is starting... -- 18:03:40.505 INFO [13051]: Version from config: 1.0 -- 18:03:40.505 DEBUG [13051]: Connecting to database... -- 18:03:40.505 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:03:40.505 SQL [13051]: pgsql_db_connect() -- 18:03:40.510 DEBUG [13051]: Database connection successful -- 18:03:40.510 INFO [13051]: _SERVER found -- 18:03:40.510 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 18:03:40.510 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 18:03:40.510 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fjr25q1vrda4iok0dmklsfnvk05be0b9 -- 18:03:40.510 INFO [13051]: QUERY_STRING = /member/page -- 18:03:40.510 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:03:40.553 INFO [13051]: COREGRADE is stopping... -- 18:03:40.553 DEBUG [13051]: Closing database connection -- 18:03:40.553 SQL [13051]: pgsql_close() -- 18:05:37.056 INFO [16105]: COREGRADE is starting... -- 18:05:37.056 INFO [16105]: Version from config: 1.0 -- 18:05:37.056 DEBUG [16105]: Connecting to database... -- 18:05:37.056 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:05:37.057 SQL [16105]: pgsql_db_connect() -- 18:05:37.061 DEBUG [16105]: Database connection successful -- 18:05:37.061 INFO [16105]: _SERVER found -- 18:05:37.061 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 18:05:37.061 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 18:05:37.061 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fjr25q1vrda4iok0dmklsfnvk05be0b9 -- 18:05:37.061 INFO [16105]: QUERY_STRING = /member/viewCardAddAction -- 18:05:37.061 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:05:37.094 INFO [16105]: COREGRADE is stopping... -- 18:05:37.095 DEBUG [16105]: Closing database connection -- 18:05:37.095 SQL [16105]: pgsql_close() -- 18:05:38.669 INFO [16105]: COREGRADE is starting... -- 18:05:38.669 INFO [16105]: Version from config: 1.0 -- 18:05:38.669 DEBUG [16105]: Connecting to database... -- 18:05:38.669 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:05:38.669 SQL [16105]: pgsql_db_connect() -- 18:05:38.673 DEBUG [16105]: Database connection successful -- 18:05:38.673 INFO [16105]: _SERVER found -- 18:05:38.673 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 18:05:38.673 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 18:05:38.673 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fjr25q1vrda4iok0dmklsfnvk05be0b9 -- 18:05:38.673 INFO [16105]: QUERY_STRING = /member/upload -- 18:05:38.673 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:05:38.711 INFO [16105]: COREGRADE is stopping... -- 18:05:38.711 DEBUG [16105]: Closing database connection -- 18:05:38.711 SQL [16105]: pgsql_close() -- 18:05:38.729 INFO [16105]: COREGRADE is starting... -- 18:05:38.729 INFO [16105]: Version from config: 1.0 -- 18:05:38.729 DEBUG [16105]: Connecting to database... -- 18:05:38.730 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:05:38.730 SQL [16105]: pgsql_db_connect() -- 18:05:38.733 DEBUG [16105]: Database connection successful -- 18:05:38.733 INFO [16105]: _SERVER found -- 18:05:38.733 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 18:05:38.733 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 18:05:38.733 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fjr25q1vrda4iok0dmklsfnvk05be0b9 -- 18:05:38.733 INFO [16105]: QUERY_STRING = /home/uploads/E5AB5CE0D4C24E4B9D968204658128F3/page/WhatEthernetCable.mp4 -- 18:05:38.733 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:05:38.745 INFO [16105]: COREGRADE is stopping... -- 18:05:38.745 DEBUG [16105]: Closing database connection -- 18:05:38.745 SQL [16105]: pgsql_close() -- 18:05:46.510 INFO [13053]: COREGRADE is starting... -- 18:05:46.510 INFO [13053]: Version from config: 1.0 -- 18:05:46.510 DEBUG [13053]: Connecting to database... -- 18:05:46.510 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:05:46.510 SQL [13053]: pgsql_db_connect() -- 18:05:46.514 DEBUG [13053]: Database connection successful -- 18:05:46.514 INFO [13053]: _SERVER found -- 18:05:46.514 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 18:05:46.514 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 18:05:46.514 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fjr25q1vrda4iok0dmklsfnvk05be0b9 -- 18:05:46.514 INFO [13053]: QUERY_STRING = /member/page -- 18:05:46.514 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:05:46.558 INFO [13053]: COREGRADE is stopping... -- 18:05:46.558 DEBUG [13053]: Closing database connection -- 18:05:46.558 SQL [13053]: pgsql_close() -- 18:05:46.724 INFO [13053]: COREGRADE is starting... -- 18:05:46.724 INFO [13053]: Version from config: 1.0 -- 18:05:46.724 DEBUG [13053]: Connecting to database... -- 18:05:46.724 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:05:46.724 SQL [13053]: pgsql_db_connect() -- 18:05:46.728 DEBUG [13053]: Database connection successful -- 18:05:46.728 INFO [13053]: _SERVER found -- 18:05:46.728 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 18:05:46.728 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 18:05:46.728 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fhc86ltt1o293f3hvd2pauva6o05j3iu -- 18:05:46.728 INFO [13053]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:05:46.728 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:05:46.739 INFO [13053]: COREGRADE is stopping... -- 18:05:46.739 DEBUG [13053]: Closing database connection -- 18:05:46.739 SQL [13053]: pgsql_close() -- 18:05:50.222 INFO [13053]: COREGRADE is starting... -- 18:05:50.222 INFO [13053]: Version from config: 1.0 -- 18:05:50.222 DEBUG [13053]: Connecting to database... -- 18:05:50.222 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:05:50.222 SQL [13053]: pgsql_db_connect() -- 18:05:50.226 DEBUG [13053]: Database connection successful -- 18:05:50.226 INFO [13053]: _SERVER found -- 18:05:50.226 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 18:05:50.226 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 18:05:50.226 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fhc86ltt1o293f3hvd2pauva6o05j3iu -- 18:05:50.226 INFO [13053]: QUERY_STRING = /member/viewCardAddAction -- 18:05:50.226 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:05:50.257 INFO [13053]: COREGRADE is stopping... -- 18:05:50.257 DEBUG [13053]: Closing database connection -- 18:05:50.257 SQL [13053]: pgsql_close() -- 18:05:52.022 INFO [13053]: COREGRADE is starting... -- 18:05:52.022 INFO [13053]: Version from config: 1.0 -- 18:05:52.022 DEBUG [13053]: Connecting to database... -- 18:05:52.022 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:05:52.022 SQL [13053]: pgsql_db_connect() -- 18:05:52.026 DEBUG [13053]: Database connection successful -- 18:05:52.026 INFO [13053]: _SERVER found -- 18:05:52.026 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 18:05:52.026 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 18:05:52.026 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fhc86ltt1o293f3hvd2pauva6o05j3iu -- 18:05:52.026 INFO [13053]: QUERY_STRING = /member/upload -- 18:05:52.026 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:05:52.058 INFO [13053]: COREGRADE is stopping... -- 18:05:52.058 DEBUG [13053]: Closing database connection -- 18:05:52.058 SQL [13053]: pgsql_close() -- 18:05:52.070 INFO [13053]: COREGRADE is starting... -- 18:05:52.070 INFO [13053]: Version from config: 1.0 -- 18:05:52.070 DEBUG [13053]: Connecting to database... -- 18:05:52.070 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:05:52.070 SQL [13053]: pgsql_db_connect() -- 18:05:52.074 DEBUG [13053]: Database connection successful -- 18:05:52.074 INFO [13053]: _SERVER found -- 18:05:52.074 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 18:05:52.074 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 18:05:52.074 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fhc86ltt1o293f3hvd2pauva6o05j3iu -- 18:05:52.074 INFO [13053]: QUERY_STRING = /home/uploads/E5AB5CE0D4C24E4B9D968204658128F3/page/WhatEthernetCable.mp4 -- 18:05:52.074 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:05:52.086 INFO [13053]: COREGRADE is stopping... -- 18:05:52.086 DEBUG [13053]: Closing database connection -- 18:05:52.086 SQL [13053]: pgsql_close() -- 18:05:58.879 INFO [13054]: COREGRADE is starting... -- 18:05:58.880 INFO [13054]: Version from config: 1.0 -- 18:05:58.880 DEBUG [13054]: Connecting to database... -- 18:05:58.880 DEBUG [13054]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:05:58.880 SQL [13054]: pgsql_db_connect() -- 18:05:58.884 DEBUG [13054]: Database connection successful -- 18:05:58.884 INFO [13054]: _SERVER found -- 18:05:58.884 INFO [13054]: REMOTE_ADDR = 192.168.1.13 -- 18:05:58.884 INFO [13054]: SERVER_NAME = oameye.works.coregrade.com -- 18:05:58.884 INFO [13054]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fhc86ltt1o293f3hvd2pauva6o05j3iu -- 18:05:58.884 INFO [13054]: QUERY_STRING = /member/page -- 18:05:58.884 INFO [13054]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:05:58.926 INFO [13054]: COREGRADE is stopping... -- 18:05:58.926 DEBUG [13054]: Closing database connection -- 18:05:58.926 SQL [13054]: pgsql_close() -- 18:05:59.204 INFO [13055]: COREGRADE is starting... -- 18:05:59.204 INFO [13055]: Version from config: 1.0 -- 18:05:59.204 DEBUG [13055]: Connecting to database... -- 18:05:59.204 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:05:59.204 SQL [13055]: pgsql_db_connect() -- 18:05:59.208 DEBUG [13055]: Database connection successful -- 18:05:59.208 INFO [13055]: _SERVER found -- 18:05:59.208 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 18:05:59.208 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 18:05:59.208 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fhc86ltt1o293f3hvd2pauva6o05j3iu -- 18:05:59.208 INFO [13055]: QUERY_STRING = /member/page -- 18:05:59.208 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:05:59.248 INFO [13055]: COREGRADE is stopping... -- 18:05:59.248 DEBUG [13055]: Closing database connection -- 18:05:59.248 SQL [13055]: pgsql_close() -- 18:05:59.415 INFO [13054]: COREGRADE is starting... -- 18:05:59.416 INFO [13054]: Version from config: 1.0 -- 18:05:59.416 DEBUG [13054]: Connecting to database... -- 18:05:59.416 DEBUG [13054]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:05:59.416 SQL [13054]: pgsql_db_connect() -- 18:05:59.420 DEBUG [13054]: Database connection successful -- 18:05:59.420 INFO [13054]: _SERVER found -- 18:05:59.420 INFO [13054]: REMOTE_ADDR = 192.168.1.13 -- 18:05:59.420 INFO [13054]: SERVER_NAME = oameye.works.coregrade.com -- 18:05:59.420 INFO [13054]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fhc86ltt1o293f3hvd2pauva6o05j3iu -- 18:05:59.420 INFO [13054]: QUERY_STRING = /member/page -- 18:05:59.420 INFO [13054]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:05:59.459 INFO [13054]: COREGRADE is stopping... -- 18:05:59.459 DEBUG [13054]: Closing database connection -- 18:05:59.459 SQL [13054]: pgsql_close() -- 18:06:55.168 INFO [13123]: COREGRADE is starting... -- 18:06:55.169 INFO [13123]: Version from config: 1.0 -- 18:06:55.169 DEBUG [13123]: Connecting to database... -- 18:06:55.169 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:55.169 SQL [13123]: pgsql_db_connect() -- 18:06:55.173 DEBUG [13123]: Database connection successful -- 18:06:55.173 INFO [13123]: _SERVER found -- 18:06:55.173 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 18:06:55.173 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 18:06:55.173 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fhc86ltt1o293f3hvd2pauva6o05j3iu -- 18:06:55.173 INFO [13123]: QUERY_STRING = /member/page -- 18:06:55.173 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:06:55.220 INFO [13123]: COREGRADE is stopping... -- 18:06:55.220 DEBUG [13123]: Closing database connection -- 18:06:55.220 SQL [13123]: pgsql_close() -- 18:06:55.341 INFO [13123]: COREGRADE is starting... -- 18:06:55.342 INFO [13123]: Version from config: 1.0 -- 18:06:55.342 DEBUG [13123]: Connecting to database... -- 18:06:55.342 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:55.342 SQL [13123]: pgsql_db_connect() -- 18:06:55.346 DEBUG [13123]: Database connection successful -- 18:06:55.346 INFO [13123]: _SERVER found -- 18:06:55.346 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 18:06:55.346 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 18:06:55.346 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fhc86ltt1o293f3hvd2pauva6o05j3iu -- 18:06:55.346 INFO [13123]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:06:55.346 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:06:55.357 INFO [13123]: COREGRADE is stopping... -- 18:06:55.358 DEBUG [13123]: Closing database connection -- 18:06:55.358 SQL [13123]: pgsql_close() -- 18:06:57.431 INFO [13123]: COREGRADE is starting... -- 18:06:57.431 INFO [13123]: Version from config: 1.0 -- 18:06:57.431 DEBUG [13123]: Connecting to database... -- 18:06:57.431 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:57.431 SQL [13123]: pgsql_db_connect() -- 18:06:57.435 DEBUG [13123]: Database connection successful -- 18:06:57.435 INFO [13123]: _SERVER found -- 18:06:57.435 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 18:06:57.435 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 18:06:57.435 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fhc86ltt1o293f3hvd2pauva6o05j3iu -- 18:06:57.435 INFO [13123]: QUERY_STRING = /member/viewCardAddAction -- 18:06:57.435 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:06:57.471 INFO [13123]: COREGRADE is stopping... -- 18:06:57.471 DEBUG [13123]: Closing database connection -- 18:06:57.471 SQL [13123]: pgsql_close() -- 18:06:57.498 INFO [13123]: COREGRADE is starting... -- 18:06:57.499 INFO [13123]: Version from config: 1.0 -- 18:06:57.499 DEBUG [13123]: Connecting to database... -- 18:06:57.499 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:57.499 SQL [13123]: pgsql_db_connect() -- 18:06:57.503 DEBUG [13123]: Database connection successful -- 18:06:57.503 INFO [13123]: _SERVER found -- 18:06:57.503 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 18:06:57.503 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 18:06:57.503 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fhc86ltt1o293f3hvd2pauva6o05j3iu -- 18:06:57.503 INFO [13123]: QUERY_STRING = /member/upload -- 18:06:57.503 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:06:57.538 INFO [13123]: COREGRADE is stopping... -- 18:06:57.538 DEBUG [13123]: Closing database connection -- 18:06:57.538 SQL [13123]: pgsql_close() -- 18:06:57.550 INFO [13123]: COREGRADE is starting... -- 18:06:57.550 INFO [13123]: Version from config: 1.0 -- 18:06:57.550 DEBUG [13123]: Connecting to database... -- 18:06:57.550 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:57.550 SQL [13123]: pgsql_db_connect() -- 18:06:57.554 DEBUG [13123]: Database connection successful -- 18:06:57.554 INFO [13123]: _SERVER found -- 18:06:57.554 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 18:06:57.554 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 18:06:57.554 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fhc86ltt1o293f3hvd2pauva6o05j3iu -- 18:06:57.554 INFO [13123]: QUERY_STRING = /home/uploads/E5AB5CE0D4C24E4B9D968204658128F3/page/WhatEthernetCable.mp4 -- 18:06:57.554 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:06:57.566 INFO [13123]: COREGRADE is stopping... -- 18:06:57.566 DEBUG [13123]: Closing database connection -- 18:06:57.566 SQL [13123]: pgsql_close() -- 18:07:02.495 INFO [13123]: COREGRADE is starting... -- 18:07:02.495 INFO [13123]: Version from config: 1.0 -- 18:07:02.495 DEBUG [13123]: Connecting to database... -- 18:07:02.495 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:02.495 SQL [13123]: pgsql_db_connect() -- 18:07:02.500 DEBUG [13123]: Database connection successful -- 18:07:02.500 INFO [13123]: _SERVER found -- 18:07:02.500 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 18:07:02.500 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 18:07:02.500 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fhc86ltt1o293f3hvd2pauva6o05j3iu -- 18:07:02.500 INFO [13123]: QUERY_STRING = /member/page -- 18:07:02.500 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:07:02.541 INFO [13123]: COREGRADE is stopping... -- 18:07:02.541 DEBUG [13123]: Closing database connection -- 18:07:02.541 SQL [13123]: pgsql_close() -- 18:07:02.892 INFO [13123]: COREGRADE is starting... -- 18:07:02.892 INFO [13123]: Version from config: 1.0 -- 18:07:02.892 DEBUG [13123]: Connecting to database... -- 18:07:02.892 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:02.892 SQL [13123]: pgsql_db_connect() -- 18:07:02.897 DEBUG [13123]: Database connection successful -- 18:07:02.897 INFO [13123]: _SERVER found -- 18:07:02.897 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 18:07:02.897 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 18:07:02.897 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fhc86ltt1o293f3hvd2pauva6o05j3iu -- 18:07:02.897 INFO [13123]: QUERY_STRING = /member/page -- 18:07:02.897 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:07:02.940 INFO [13123]: COREGRADE is stopping... -- 18:07:02.940 DEBUG [13123]: Closing database connection -- 18:07:02.940 SQL [13123]: pgsql_close() -- 18:07:03.005 INFO [13052]: COREGRADE is starting... -- 18:07:03.005 INFO [13052]: Version from config: 1.0 -- 18:07:03.005 DEBUG [13052]: Connecting to database... -- 18:07:03.005 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:03.005 SQL [13052]: pgsql_db_connect() -- 18:07:03.010 DEBUG [13052]: Database connection successful -- 18:07:03.010 INFO [13052]: _SERVER found -- 18:07:03.010 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 18:07:03.010 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 18:07:03.010 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fhc86ltt1o293f3hvd2pauva6o05j3iu -- 18:07:03.010 INFO [13052]: QUERY_STRING = /member/page -- 18:07:03.010 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:07:03.054 INFO [13052]: COREGRADE is stopping... -- 18:07:03.054 DEBUG [13052]: Closing database connection -- 18:07:03.054 SQL [13052]: pgsql_close() -- 18:07:07.431 INFO [13052]: COREGRADE is starting... -- 18:07:07.432 INFO [13052]: Version from config: 1.0 -- 18:07:07.432 DEBUG [13052]: Connecting to database... -- 18:07:07.432 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:07.432 SQL [13052]: pgsql_db_connect() -- 18:07:07.436 DEBUG [13052]: Database connection successful -- 18:07:07.436 INFO [13052]: _SERVER found -- 18:07:07.436 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 18:07:07.436 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 18:07:07.436 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fhc86ltt1o293f3hvd2pauva6o05j3iu -- 18:07:07.436 INFO [13052]: QUERY_STRING = /member/upload -- 18:07:07.436 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:07:07.471 INFO [13052]: COREGRADE is stopping... -- 18:07:07.471 DEBUG [13052]: Closing database connection -- 18:07:07.471 SQL [13052]: pgsql_close() -- 18:07:57.283 INFO [16100]: COREGRADE is starting... -- 18:07:57.284 INFO [16100]: Version from config: 1.0 -- 18:07:57.284 DEBUG [16100]: Connecting to database... -- 18:07:57.284 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:57.284 SQL [16100]: pgsql_db_connect() -- 18:07:57.288 DEBUG [16100]: Database connection successful -- 18:07:57.288 INFO [16100]: _SERVER found -- 18:07:57.288 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 18:07:57.288 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 18:07:57.288 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fhc86ltt1o293f3hvd2pauva6o05j3iu -- 18:07:57.288 INFO [16100]: QUERY_STRING = /member/page -- 18:07:57.288 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:07:57.332 INFO [16100]: COREGRADE is stopping... -- 18:07:57.332 DEBUG [16100]: Closing database connection -- 18:07:57.332 SQL [16100]: pgsql_close() -- 18:09:18.694 INFO [13051]: COREGRADE is starting... -- 18:09:18.694 INFO [13051]: Version from config: 1.0 -- 18:09:18.694 DEBUG [13051]: Connecting to database... -- 18:09:18.694 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:09:18.694 SQL [13051]: pgsql_db_connect() -- 18:09:18.699 DEBUG [13051]: Database connection successful -- 18:09:18.699 INFO [13051]: _SERVER found -- 18:09:18.699 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 18:09:18.699 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 18:09:18.699 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fhc86ltt1o293f3hvd2pauva6o05j3iu -- 18:09:18.699 INFO [13051]: QUERY_STRING = /member/page -- 18:09:18.699 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:09:18.744 INFO [13051]: COREGRADE is stopping... -- 18:09:18.744 DEBUG [13051]: Closing database connection -- 18:09:18.744 SQL [13051]: pgsql_close() -- 18:09:18.873 INFO [13051]: COREGRADE is starting... -- 18:09:18.873 INFO [13051]: Version from config: 1.0 -- 18:09:18.873 DEBUG [13051]: Connecting to database... -- 18:09:18.873 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:09:18.873 SQL [13051]: pgsql_db_connect() -- 18:09:18.878 DEBUG [13051]: Database connection successful -- 18:09:18.878 INFO [13051]: _SERVER found -- 18:09:18.878 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 18:09:18.878 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 18:09:18.878 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fhc86ltt1o293f3hvd2pauva6o05j3iu -- 18:09:18.878 INFO [13051]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:09:18.878 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:09:18.889 INFO [13051]: COREGRADE is stopping... -- 18:09:18.889 DEBUG [13051]: Closing database connection -- 18:09:18.889 SQL [13051]: pgsql_close() -- 18:09:23.255 INFO [13051]: COREGRADE is starting... -- 18:09:23.256 INFO [13051]: Version from config: 1.0 -- 18:09:23.256 DEBUG [13051]: Connecting to database... -- 18:09:23.256 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:09:23.256 SQL [13051]: pgsql_db_connect() -- 18:09:23.260 DEBUG [13051]: Database connection successful -- 18:09:23.260 INFO [13051]: _SERVER found -- 18:09:23.260 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 18:09:23.260 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 18:09:23.260 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fhc86ltt1o293f3hvd2pauva6o05j3iu -- 18:09:23.260 INFO [13051]: QUERY_STRING = /member/viewCardAddAction -- 18:09:23.260 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:09:23.292 INFO [13051]: COREGRADE is stopping... -- 18:09:23.292 DEBUG [13051]: Closing database connection -- 18:09:23.292 SQL [13051]: pgsql_close() -- 18:09:23.322 INFO [13051]: COREGRADE is starting... -- 18:09:23.322 INFO [13051]: Version from config: 1.0 -- 18:09:23.322 DEBUG [13051]: Connecting to database... -- 18:09:23.322 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:09:23.322 SQL [13051]: pgsql_db_connect() -- 18:09:23.326 DEBUG [13051]: Database connection successful -- 18:09:23.326 INFO [13051]: _SERVER found -- 18:09:23.326 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 18:09:23.326 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 18:09:23.326 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fhc86ltt1o293f3hvd2pauva6o05j3iu -- 18:09:23.326 INFO [13051]: QUERY_STRING = /member/upload -- 18:09:23.326 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:09:23.359 INFO [13051]: COREGRADE is stopping... -- 18:09:23.359 DEBUG [13051]: Closing database connection -- 18:09:23.359 SQL [13051]: pgsql_close() -- 18:09:23.370 INFO [13051]: COREGRADE is starting... -- 18:09:23.370 INFO [13051]: Version from config: 1.0 -- 18:09:23.370 DEBUG [13051]: Connecting to database... -- 18:09:23.370 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:09:23.370 SQL [13051]: pgsql_db_connect() -- 18:09:23.375 DEBUG [13051]: Database connection successful -- 18:09:23.375 INFO [13051]: _SERVER found -- 18:09:23.375 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 18:09:23.375 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 18:09:23.375 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fhc86ltt1o293f3hvd2pauva6o05j3iu -- 18:09:23.375 INFO [13051]: QUERY_STRING = /home/uploads/E5AB5CE0D4C24E4B9D968204658128F3/page/WhatEthernetCable.mp4 -- 18:09:23.375 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:09:23.387 INFO [13051]: COREGRADE is stopping... -- 18:09:23.387 DEBUG [13051]: Closing database connection -- 18:09:23.387 SQL [13051]: pgsql_close() -- 18:09:28.382 INFO [13051]: COREGRADE is starting... -- 18:09:28.383 INFO [13051]: Version from config: 1.0 -- 18:09:28.383 DEBUG [13051]: Connecting to database... -- 18:09:28.383 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:09:28.383 SQL [13051]: pgsql_db_connect() -- 18:09:28.387 DEBUG [13051]: Database connection successful -- 18:09:28.387 INFO [13051]: _SERVER found -- 18:09:28.387 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 18:09:28.387 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 18:09:28.387 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fhc86ltt1o293f3hvd2pauva6o05j3iu -- 18:09:28.387 INFO [13051]: QUERY_STRING = /member/page -- 18:09:28.387 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:09:28.428 INFO [13051]: COREGRADE is stopping... -- 18:09:28.428 DEBUG [13051]: Closing database connection -- 18:09:28.428 SQL [13051]: pgsql_close() -- 18:09:28.680 INFO [13051]: COREGRADE is starting... -- 18:09:28.680 INFO [13051]: Version from config: 1.0 -- 18:09:28.680 DEBUG [13051]: Connecting to database... -- 18:09:28.680 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:09:28.680 SQL [13051]: pgsql_db_connect() -- 18:09:28.718 INFO [16105]: COREGRADE is starting... -- 18:09:28.718 INFO [16105]: Version from config: 1.0 -- 18:09:28.718 DEBUG [16105]: Connecting to database... -- 18:09:28.718 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:09:28.718 SQL [16105]: pgsql_db_connect() -- 18:09:28.685 DEBUG [13051]: Database connection successful -- 18:09:28.685 INFO [13051]: _SERVER found -- 18:09:28.685 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 18:09:28.685 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 18:09:28.685 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fhc86ltt1o293f3hvd2pauva6o05j3iu -- 18:09:28.685 INFO [13051]: QUERY_STRING = /member/page -- 18:09:28.685 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:09:28.725 INFO [13051]: COREGRADE is stopping... -- 18:09:28.725 DEBUG [13051]: Closing database connection -- 18:09:28.725 SQL [13051]: pgsql_close() -- 18:09:28.722 DEBUG [16105]: Database connection successful -- 18:09:28.722 INFO [16105]: _SERVER found -- 18:09:28.722 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 18:09:28.722 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 18:09:28.722 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fhc86ltt1o293f3hvd2pauva6o05j3iu -- 18:09:28.722 INFO [16105]: QUERY_STRING = /member/page -- 18:09:28.722 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:09:28.764 INFO [16105]: COREGRADE is stopping... -- 18:09:28.764 DEBUG [16105]: Closing database connection -- 18:09:28.764 SQL [16105]: pgsql_close() -- 18:09:35.105 INFO [13053]: COREGRADE is starting... -- 18:09:35.105 INFO [13053]: Version from config: 1.0 -- 18:09:35.105 DEBUG [13053]: Connecting to database... -- 18:09:35.105 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:09:35.105 SQL [13053]: pgsql_db_connect() -- 18:09:35.109 DEBUG [13053]: Database connection successful -- 18:09:35.109 INFO [13053]: _SERVER found -- 18:09:35.109 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 18:09:35.109 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 18:09:35.109 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fhc86ltt1o293f3hvd2pauva6o05j3iu -- 18:09:35.110 INFO [13053]: QUERY_STRING = /member/page -- 18:09:35.110 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:09:35.153 INFO [13053]: COREGRADE is stopping... -- 18:09:35.153 DEBUG [13053]: Closing database connection -- 18:09:35.153 SQL [13053]: pgsql_close() -- 18:10:48.810 INFO [13055]: COREGRADE is starting... -- 18:10:48.810 INFO [13055]: Version from config: 1.0 -- 18:10:48.810 DEBUG [13055]: Connecting to database... -- 18:10:48.810 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:10:48.810 SQL [13055]: pgsql_db_connect() -- 18:10:48.814 DEBUG [13055]: Database connection successful -- 18:10:48.814 INFO [13055]: _SERVER found -- 18:10:48.814 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 18:10:48.814 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 18:10:48.814 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=fhc86ltt1o293f3hvd2pauva6o05j3iu -- 18:10:48.814 INFO [13055]: QUERY_STRING = /member/page -- 18:10:48.814 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:10:48.858 INFO [13055]: COREGRADE is stopping... -- 18:10:48.858 DEBUG [13055]: Closing database connection -- 18:10:48.858 SQL [13055]: pgsql_close() -- 18:10:48.990 INFO [13055]: COREGRADE is starting... -- 18:10:48.991 INFO [13055]: Version from config: 1.0 -- 18:10:48.991 DEBUG [13055]: Connecting to database... -- 18:10:48.991 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:10:48.991 SQL [13055]: pgsql_db_connect() -- 18:10:48.995 DEBUG [13055]: Database connection successful -- 18:10:48.995 INFO [13055]: _SERVER found -- 18:10:48.995 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 18:10:48.995 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 18:10:48.995 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:10:48.995 INFO [13055]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:10:48.995 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:10:49.006 INFO [13055]: COREGRADE is stopping... -- 18:10:49.006 DEBUG [13055]: Closing database connection -- 18:10:49.006 SQL [13055]: pgsql_close() -- 18:10:53.903 INFO [13055]: COREGRADE is starting... -- 18:10:53.903 INFO [13055]: Version from config: 1.0 -- 18:10:53.903 DEBUG [13055]: Connecting to database... -- 18:10:53.903 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:10:53.903 SQL [13055]: pgsql_db_connect() -- 18:10:53.907 DEBUG [13055]: Database connection successful -- 18:10:53.907 INFO [13055]: _SERVER found -- 18:10:53.907 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 18:10:53.907 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 18:10:53.907 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:10:53.907 INFO [13055]: QUERY_STRING = /member/viewCardAddAction -- 18:10:53.907 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:10:53.938 INFO [13055]: COREGRADE is stopping... -- 18:10:53.938 DEBUG [13055]: Closing database connection -- 18:10:53.938 SQL [13055]: pgsql_close() -- 18:11:00.388 INFO [13054]: COREGRADE is starting... -- 18:11:00.388 INFO [13054]: Version from config: 1.0 -- 18:11:00.388 DEBUG [13054]: Connecting to database... -- 18:11:00.388 DEBUG [13054]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:11:00.388 SQL [13054]: pgsql_db_connect() -- 18:11:00.392 DEBUG [13054]: Database connection successful -- 18:11:00.392 INFO [13054]: _SERVER found -- 18:11:00.392 INFO [13054]: REMOTE_ADDR = 192.168.1.13 -- 18:11:00.392 INFO [13054]: SERVER_NAME = oameye.works.coregrade.com -- 18:11:00.392 INFO [13054]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:11:00.392 INFO [13054]: QUERY_STRING = /member/page -- 18:11:00.392 INFO [13054]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:11:00.434 INFO [13054]: COREGRADE is stopping... -- 18:11:00.435 DEBUG [13054]: Closing database connection -- 18:11:00.435 SQL [13054]: pgsql_close() -- 18:11:00.574 INFO [13054]: COREGRADE is starting... -- 18:11:00.574 INFO [13054]: Version from config: 1.0 -- 18:11:00.574 DEBUG [13054]: Connecting to database... -- 18:11:00.574 DEBUG [13054]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:11:00.574 SQL [13054]: pgsql_db_connect() -- 18:11:00.578 DEBUG [13054]: Database connection successful -- 18:11:00.578 INFO [13054]: _SERVER found -- 18:11:00.578 INFO [13054]: REMOTE_ADDR = 192.168.1.13 -- 18:11:00.578 INFO [13054]: SERVER_NAME = oameye.works.coregrade.com -- 18:11:00.578 INFO [13054]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:11:00.578 INFO [13054]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:11:00.578 INFO [13054]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:11:00.589 INFO [13054]: COREGRADE is stopping... -- 18:11:00.589 DEBUG [13054]: Closing database connection -- 18:11:00.589 SQL [13054]: pgsql_close() -- 18:11:03.010 INFO [13054]: COREGRADE is starting... -- 18:11:03.010 INFO [13054]: Version from config: 1.0 -- 18:11:03.010 DEBUG [13054]: Connecting to database... -- 18:11:03.010 DEBUG [13054]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:11:03.010 SQL [13054]: pgsql_db_connect() -- 18:11:03.014 DEBUG [13054]: Database connection successful -- 18:11:03.014 INFO [13054]: _SERVER found -- 18:11:03.014 INFO [13054]: REMOTE_ADDR = 192.168.1.13 -- 18:11:03.014 INFO [13054]: SERVER_NAME = oameye.works.coregrade.com -- 18:11:03.014 INFO [13054]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:11:03.014 INFO [13054]: QUERY_STRING = /member/viewCardAddAction -- 18:11:03.014 INFO [13054]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:11:03.045 INFO [13054]: COREGRADE is stopping... -- 18:11:03.045 DEBUG [13054]: Closing database connection -- 18:11:03.045 SQL [13054]: pgsql_close() -- 18:11:49.674 INFO [13123]: COREGRADE is starting... -- 18:11:49.674 INFO [13123]: Version from config: 1.0 -- 18:11:49.674 DEBUG [13123]: Connecting to database... -- 18:11:49.674 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:11:49.674 SQL [13123]: pgsql_db_connect() -- 18:11:49.678 DEBUG [13123]: Database connection successful -- 18:11:49.678 INFO [13123]: _SERVER found -- 18:11:49.678 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 18:11:49.678 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 18:11:49.678 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:11:49.678 INFO [13123]: QUERY_STRING = /member/page -- 18:11:49.678 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:11:49.724 INFO [13123]: COREGRADE is stopping... -- 18:11:49.724 DEBUG [13123]: Closing database connection -- 18:11:49.724 SQL [13123]: pgsql_close() -- 18:11:49.930 INFO [13123]: COREGRADE is starting... -- 18:11:49.930 INFO [13123]: Version from config: 1.0 -- 18:11:49.930 DEBUG [13123]: Connecting to database... -- 18:11:49.930 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:11:49.930 SQL [13123]: pgsql_db_connect() -- 18:11:49.934 DEBUG [13123]: Database connection successful -- 18:11:49.934 INFO [13123]: _SERVER found -- 18:11:49.934 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 18:11:49.934 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 18:11:49.934 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:11:49.934 INFO [13123]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:11:49.934 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:11:49.945 INFO [13123]: COREGRADE is stopping... -- 18:11:49.946 DEBUG [13123]: Closing database connection -- 18:11:49.946 SQL [13123]: pgsql_close() -- 18:11:52.861 INFO [13123]: COREGRADE is starting... -- 18:11:52.861 INFO [13123]: Version from config: 1.0 -- 18:11:52.861 DEBUG [13123]: Connecting to database... -- 18:11:52.861 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:11:52.861 SQL [13123]: pgsql_db_connect() -- 18:11:52.865 DEBUG [13123]: Database connection successful -- 18:11:52.865 INFO [13123]: _SERVER found -- 18:11:52.865 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 18:11:52.865 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 18:11:52.865 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:11:52.865 INFO [13123]: QUERY_STRING = /member/viewCardAddAction -- 18:11:52.865 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:11:52.899 INFO [13123]: COREGRADE is stopping... -- 18:11:52.899 DEBUG [13123]: Closing database connection -- 18:11:52.899 SQL [13123]: pgsql_close() -- 18:11:52.941 INFO [13123]: COREGRADE is starting... -- 18:11:52.941 INFO [13123]: Version from config: 1.0 -- 18:11:52.941 DEBUG [13123]: Connecting to database... -- 18:11:52.941 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:11:52.941 SQL [13123]: pgsql_db_connect() -- 18:11:52.945 DEBUG [13123]: Database connection successful -- 18:11:52.945 INFO [13123]: _SERVER found -- 18:11:52.945 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 18:11:52.945 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 18:11:52.945 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:11:52.945 INFO [13123]: QUERY_STRING = /member/upload -- 18:11:52.945 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:11:52.980 INFO [13123]: COREGRADE is stopping... -- 18:11:52.980 DEBUG [13123]: Closing database connection -- 18:11:52.980 SQL [13123]: pgsql_close() -- 18:11:52.991 INFO [13123]: COREGRADE is starting... -- 18:11:52.991 INFO [13123]: Version from config: 1.0 -- 18:11:52.991 DEBUG [13123]: Connecting to database... -- 18:11:52.991 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:11:52.991 SQL [13123]: pgsql_db_connect() -- 18:11:52.995 DEBUG [13123]: Database connection successful -- 18:11:52.995 INFO [13123]: _SERVER found -- 18:11:52.995 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 18:11:52.995 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 18:11:52.995 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:11:52.995 INFO [13123]: QUERY_STRING = /home/uploads/E5AB5CE0D4C24E4B9D968204658128F3/page/WhatEthernetCable.mp4 -- 18:11:52.995 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:11:53.006 INFO [13123]: COREGRADE is stopping... -- 18:11:53.006 DEBUG [13123]: Closing database connection -- 18:11:53.006 SQL [13123]: pgsql_close() -- 18:11:57.419 INFO [13123]: COREGRADE is starting... -- 18:11:57.419 INFO [13123]: Version from config: 1.0 -- 18:11:57.419 DEBUG [13123]: Connecting to database... -- 18:11:57.419 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:11:57.419 SQL [13123]: pgsql_db_connect() -- 18:11:57.423 DEBUG [13123]: Database connection successful -- 18:11:57.423 INFO [13123]: _SERVER found -- 18:11:57.423 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 18:11:57.423 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 18:11:57.423 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:11:57.423 INFO [13123]: QUERY_STRING = /member/page -- 18:11:57.423 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:11:57.463 INFO [13123]: COREGRADE is stopping... -- 18:11:57.463 DEBUG [13123]: Closing database connection -- 18:11:57.463 SQL [13123]: pgsql_close() -- 18:11:57.677 INFO [13052]: COREGRADE is starting... -- 18:11:57.677 INFO [13052]: Version from config: 1.0 -- 18:11:57.677 DEBUG [13052]: Connecting to database... -- 18:11:57.677 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:11:57.677 SQL [13052]: pgsql_db_connect() -- 18:11:57.681 DEBUG [13052]: Database connection successful -- 18:11:57.681 INFO [13052]: _SERVER found -- 18:11:57.681 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 18:11:57.681 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 18:11:57.681 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:11:57.681 INFO [13052]: QUERY_STRING = /member/page -- 18:11:57.681 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:11:57.722 INFO [13052]: COREGRADE is stopping... -- 18:11:57.722 DEBUG [13052]: Closing database connection -- 18:11:57.722 SQL [13052]: pgsql_close() -- 18:12:01.010 INFO [13052]: COREGRADE is starting... -- 18:12:01.010 INFO [13052]: Version from config: 1.0 -- 18:12:01.010 DEBUG [13052]: Connecting to database... -- 18:12:01.010 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:12:01.010 SQL [13052]: pgsql_db_connect() -- 18:12:01.014 DEBUG [13052]: Database connection successful -- 18:12:01.014 INFO [13052]: _SERVER found -- 18:12:01.014 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 18:12:01.014 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 18:12:01.014 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:12:01.014 INFO [13052]: QUERY_STRING = /member/upload -- 18:12:01.014 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:12:01.054 INFO [13052]: COREGRADE is stopping... -- 18:12:01.054 DEBUG [13052]: Closing database connection -- 18:12:01.054 SQL [13052]: pgsql_close() -- 18:12:16.298 INFO [16100]: COREGRADE is starting... -- 18:12:16.298 INFO [16100]: Version from config: 1.0 -- 18:12:16.298 DEBUG [16100]: Connecting to database... -- 18:12:16.298 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:12:16.298 SQL [16100]: pgsql_db_connect() -- 18:12:16.302 DEBUG [16100]: Database connection successful -- 18:12:16.303 INFO [16100]: _SERVER found -- 18:12:16.303 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 18:12:16.303 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 18:12:16.303 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:12:16.303 INFO [16100]: QUERY_STRING = /member/page -- 18:12:16.303 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:12:16.348 INFO [16100]: COREGRADE is stopping... -- 18:12:16.348 DEBUG [16100]: Closing database connection -- 18:12:16.348 SQL [16100]: pgsql_close() -- 18:12:16.475 INFO [16100]: COREGRADE is starting... -- 18:12:16.475 INFO [16100]: Version from config: 1.0 -- 18:12:16.475 DEBUG [16100]: Connecting to database... -- 18:12:16.475 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:12:16.475 SQL [16100]: pgsql_db_connect() -- 18:12:16.479 DEBUG [16100]: Database connection successful -- 18:12:16.479 INFO [16100]: _SERVER found -- 18:12:16.479 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 18:12:16.479 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 18:12:16.479 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:12:16.479 INFO [16100]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:12:16.479 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:12:16.490 INFO [16100]: COREGRADE is stopping... -- 18:12:16.490 DEBUG [16100]: Closing database connection -- 18:12:16.490 SQL [16100]: pgsql_close() -- 18:12:18.862 INFO [16100]: COREGRADE is starting... -- 18:12:18.862 INFO [16100]: Version from config: 1.0 -- 18:12:18.862 DEBUG [16100]: Connecting to database... -- 18:12:18.862 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:12:18.862 SQL [16100]: pgsql_db_connect() -- 18:12:18.866 DEBUG [16100]: Database connection successful -- 18:12:18.866 INFO [16100]: _SERVER found -- 18:12:18.866 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 18:12:18.866 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 18:12:18.866 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:12:18.866 INFO [16100]: QUERY_STRING = /member/viewCardAddAction -- 18:12:18.866 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:12:18.900 INFO [16100]: COREGRADE is stopping... -- 18:12:18.900 DEBUG [16100]: Closing database connection -- 18:12:18.900 SQL [16100]: pgsql_close() -- 18:12:18.956 INFO [16100]: COREGRADE is starting... -- 18:12:18.956 INFO [16100]: Version from config: 1.0 -- 18:12:18.956 DEBUG [16100]: Connecting to database... -- 18:12:18.956 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:12:18.956 SQL [16100]: pgsql_db_connect() -- 18:12:18.960 DEBUG [16100]: Database connection successful -- 18:12:18.960 INFO [16100]: _SERVER found -- 18:12:18.960 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 18:12:18.960 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 18:12:18.960 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:12:18.960 INFO [16100]: QUERY_STRING = /member/upload -- 18:12:18.960 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:12:18.997 INFO [16100]: COREGRADE is stopping... -- 18:12:18.997 DEBUG [16100]: Closing database connection -- 18:12:18.997 SQL [16100]: pgsql_close() -- 18:12:19.012 INFO [16100]: COREGRADE is starting... -- 18:12:19.012 INFO [16100]: Version from config: 1.0 -- 18:12:19.012 DEBUG [16100]: Connecting to database... -- 18:12:19.012 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:12:19.012 SQL [16100]: pgsql_db_connect() -- 18:12:19.016 DEBUG [16100]: Database connection successful -- 18:12:19.016 INFO [16100]: _SERVER found -- 18:12:19.016 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 18:12:19.016 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 18:12:19.016 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:12:19.016 INFO [16100]: QUERY_STRING = /home/uploads/E5AB5CE0D4C24E4B9D968204658128F3/page/WhatEthernetCable.mp4 -- 18:12:19.016 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:12:19.028 INFO [16100]: COREGRADE is stopping... -- 18:12:19.028 DEBUG [16100]: Closing database connection -- 18:12:19.028 SQL [16100]: pgsql_close() -- 18:12:23.650 INFO [16100]: COREGRADE is starting... -- 18:12:23.650 INFO [16100]: Version from config: 1.0 -- 18:12:23.650 DEBUG [16100]: Connecting to database... -- 18:12:23.650 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:12:23.650 SQL [16100]: pgsql_db_connect() -- 18:12:23.654 DEBUG [16100]: Database connection successful -- 18:12:23.654 INFO [16100]: _SERVER found -- 18:12:23.654 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 18:12:23.654 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 18:12:23.654 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:12:23.654 INFO [16100]: QUERY_STRING = /member/page -- 18:12:23.654 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:12:23.694 INFO [16100]: COREGRADE is stopping... -- 18:12:23.694 DEBUG [16100]: Closing database connection -- 18:12:23.694 SQL [16100]: pgsql_close() -- 18:12:23.918 INFO [13051]: COREGRADE is starting... -- 18:12:23.919 INFO [13051]: Version from config: 1.0 -- 18:12:23.919 DEBUG [13051]: Connecting to database... -- 18:12:23.919 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:12:23.919 SQL [13051]: pgsql_db_connect() -- 18:12:23.923 DEBUG [13051]: Database connection successful -- 18:12:23.923 INFO [13051]: _SERVER found -- 18:12:23.923 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 18:12:23.923 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 18:12:23.923 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:12:23.923 INFO [13051]: QUERY_STRING = /member/page -- 18:12:23.923 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:12:23.963 INFO [13051]: COREGRADE is stopping... -- 18:12:23.963 DEBUG [13051]: Closing database connection -- 18:12:23.963 SQL [13051]: pgsql_close() -- 18:12:26.434 INFO [13051]: COREGRADE is starting... -- 18:12:26.434 INFO [13051]: Version from config: 1.0 -- 18:12:26.434 DEBUG [13051]: Connecting to database... -- 18:12:26.434 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:12:26.434 SQL [13051]: pgsql_db_connect() -- 18:12:26.438 DEBUG [13051]: Database connection successful -- 18:12:26.438 INFO [13051]: _SERVER found -- 18:12:26.438 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 18:12:26.438 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 18:12:26.438 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:12:26.438 INFO [13051]: QUERY_STRING = /member/upload -- 18:12:26.438 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:12:26.476 INFO [13051]: COREGRADE is stopping... -- 18:12:26.476 DEBUG [13051]: Closing database connection -- 18:12:26.476 SQL [13051]: pgsql_close() -- 18:12:29.052 INFO [13051]: COREGRADE is starting... -- 18:12:29.053 INFO [13051]: Version from config: 1.0 -- 18:12:29.053 DEBUG [13051]: Connecting to database... -- 18:12:29.053 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:12:29.053 SQL [13051]: pgsql_db_connect() -- 18:12:29.057 DEBUG [13051]: Database connection successful -- 18:12:29.057 INFO [13051]: _SERVER found -- 18:12:29.057 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 18:12:29.057 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 18:12:29.057 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:12:29.057 INFO [13051]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 18:12:29.057 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:12:29.068 INFO [13051]: COREGRADE is stopping... -- 18:12:29.068 DEBUG [13051]: Closing database connection -- 18:12:29.068 SQL [13051]: pgsql_close() -- 18:12:29.080 INFO [16105]: COREGRADE is starting... -- 18:12:29.080 INFO [16105]: Version from config: 1.0 -- 18:12:29.080 DEBUG [16105]: Connecting to database... -- 18:12:29.080 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:12:29.080 SQL [16105]: pgsql_db_connect() -- 18:12:29.084 DEBUG [16105]: Database connection successful -- 18:12:29.084 INFO [16105]: _SERVER found -- 18:12:29.084 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 18:12:29.084 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 18:12:29.084 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:12:29.084 INFO [16105]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 18:12:29.084 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:12:29.095 INFO [16105]: COREGRADE is stopping... -- 18:12:29.095 DEBUG [16105]: Closing database connection -- 18:12:29.095 SQL [16105]: pgsql_close() -- 18:12:44.645 INFO [13053]: COREGRADE is starting... -- 18:12:44.645 INFO [13053]: Version from config: 1.0 -- 18:12:44.645 DEBUG [13053]: Connecting to database... -- 18:12:44.645 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:12:44.645 SQL [13053]: pgsql_db_connect() -- 18:12:44.649 DEBUG [13053]: Database connection successful -- 18:12:44.649 INFO [13053]: _SERVER found -- 18:12:44.649 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 18:12:44.649 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 18:12:44.649 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:12:44.649 INFO [13053]: QUERY_STRING = /member/viewCardAddAction -- 18:12:44.649 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:12:44.681 INFO [13053]: COREGRADE is stopping... -- 18:12:44.681 DEBUG [13053]: Closing database connection -- 18:12:44.681 SQL [13053]: pgsql_close() -- 18:12:45.736 INFO [13053]: COREGRADE is starting... -- 18:12:45.737 INFO [13053]: Version from config: 1.0 -- 18:12:45.737 DEBUG [13053]: Connecting to database... -- 18:12:45.737 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:12:45.737 SQL [13053]: pgsql_db_connect() -- 18:12:45.741 DEBUG [13053]: Database connection successful -- 18:12:45.741 INFO [13053]: _SERVER found -- 18:12:45.741 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 18:12:45.741 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 18:12:45.741 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:12:45.741 INFO [13053]: QUERY_STRING = /member/viewCardAddAction -- 18:12:45.741 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:12:45.772 INFO [13053]: COREGRADE is stopping... -- 18:12:45.772 DEBUG [13053]: Closing database connection -- 18:12:45.772 SQL [13053]: pgsql_close() -- 18:12:45.847 INFO [13053]: COREGRADE is starting... -- 18:12:45.848 INFO [13053]: Version from config: 1.0 -- 18:12:45.848 DEBUG [13053]: Connecting to database... -- 18:12:45.848 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:12:45.848 SQL [13053]: pgsql_db_connect() -- 18:12:45.852 DEBUG [13053]: Database connection successful -- 18:12:45.852 INFO [13053]: _SERVER found -- 18:12:45.852 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 18:12:45.852 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 18:12:45.852 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:12:45.852 INFO [13053]: QUERY_STRING = /member/upload -- 18:12:45.852 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:12:45.883 INFO [13053]: COREGRADE is stopping... -- 18:12:45.883 DEBUG [13053]: Closing database connection -- 18:12:45.883 SQL [13053]: pgsql_close() -- 18:12:45.925 INFO [13053]: COREGRADE is starting... -- 18:12:45.926 INFO [13053]: Version from config: 1.0 -- 18:12:45.926 DEBUG [13053]: Connecting to database... -- 18:12:45.926 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:12:45.926 SQL [13053]: pgsql_db_connect() -- 18:12:45.929 DEBUG [13053]: Database connection successful -- 18:12:45.929 INFO [13053]: _SERVER found -- 18:12:45.930 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 18:12:45.930 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 18:12:45.930 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:12:45.930 INFO [13053]: QUERY_STRING = /home/uploads/E5AB5CE0D4C24E4B9D968204658128F3/page/WhatEthernetCable.mp4 -- 18:12:45.930 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:12:45.941 INFO [13053]: COREGRADE is stopping... -- 18:12:45.941 DEBUG [13053]: Closing database connection -- 18:12:45.941 SQL [13053]: pgsql_close() -- 18:13:38.270 INFO [13055]: COREGRADE is starting... -- 18:13:38.271 INFO [13055]: Version from config: 1.0 -- 18:13:38.271 DEBUG [13055]: Connecting to database... -- 18:13:38.271 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:13:38.271 SQL [13055]: pgsql_db_connect() -- 18:13:38.275 DEBUG [13055]: Database connection successful -- 18:13:38.275 INFO [13055]: _SERVER found -- 18:13:38.275 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 18:13:38.275 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 18:13:38.275 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:13:38.275 INFO [13055]: QUERY_STRING = /member/page -- 18:13:38.275 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:13:38.317 INFO [13055]: COREGRADE is stopping... -- 18:13:38.317 DEBUG [13055]: Closing database connection -- 18:13:38.317 SQL [13055]: pgsql_close() -- 18:13:38.480 INFO [13055]: COREGRADE is starting... -- 18:13:38.481 INFO [13055]: Version from config: 1.0 -- 18:13:38.481 DEBUG [13055]: Connecting to database... -- 18:13:38.481 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:13:38.481 SQL [13055]: pgsql_db_connect() -- 18:13:38.485 DEBUG [13055]: Database connection successful -- 18:13:38.485 INFO [13055]: _SERVER found -- 18:13:38.485 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 18:13:38.485 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 18:13:38.485 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:13:38.485 INFO [13055]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:13:38.485 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:13:38.496 INFO [13055]: COREGRADE is stopping... -- 18:13:38.496 DEBUG [13055]: Closing database connection -- 18:13:38.496 SQL [13055]: pgsql_close() -- 18:13:38.714 INFO [13055]: COREGRADE is starting... -- 18:13:38.714 INFO [13055]: Version from config: 1.0 -- 18:13:38.714 DEBUG [13055]: Connecting to database... -- 18:13:38.714 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:13:38.714 SQL [13055]: pgsql_db_connect() -- 18:13:38.723 INFO [13054]: COREGRADE is starting... -- 18:13:38.723 INFO [13054]: Version from config: 1.0 -- 18:13:38.723 DEBUG [13054]: Connecting to database... -- 18:13:38.723 DEBUG [13054]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:13:38.723 SQL [13054]: pgsql_db_connect() -- 18:13:38.718 DEBUG [13055]: Database connection successful -- 18:13:38.718 INFO [13055]: _SERVER found -- 18:13:38.718 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 18:13:38.718 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 18:13:38.718 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:13:38.718 INFO [13055]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 18:13:38.718 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:13:38.729 INFO [13055]: COREGRADE is stopping... -- 18:13:38.729 DEBUG [13055]: Closing database connection -- 18:13:38.729 SQL [13055]: pgsql_close() -- 18:13:38.727 DEBUG [13054]: Database connection successful -- 18:13:38.727 INFO [13054]: _SERVER found -- 18:13:38.727 INFO [13054]: REMOTE_ADDR = 192.168.1.13 -- 18:13:38.727 INFO [13054]: SERVER_NAME = oameye.works.coregrade.com -- 18:13:38.727 INFO [13054]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:13:38.727 INFO [13054]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 18:13:38.727 INFO [13054]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:13:38.739 INFO [13054]: COREGRADE is stopping... -- 18:13:38.739 DEBUG [13054]: Closing database connection -- 18:13:38.739 SQL [13054]: pgsql_close() -- 18:13:45.729 INFO [13123]: COREGRADE is starting... -- 18:13:45.729 INFO [13123]: Version from config: 1.0 -- 18:13:45.729 DEBUG [13123]: Connecting to database... -- 18:13:45.729 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:13:45.729 SQL [13123]: pgsql_db_connect() -- 18:13:45.733 DEBUG [13123]: Database connection successful -- 18:13:45.733 INFO [13123]: _SERVER found -- 18:13:45.733 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 18:13:45.733 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 18:13:45.733 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:13:45.733 INFO [13123]: QUERY_STRING = /member/viewCardAddAction -- 18:13:45.733 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:13:45.767 INFO [13123]: COREGRADE is stopping... -- 18:13:45.767 DEBUG [13123]: Closing database connection -- 18:13:45.767 SQL [13123]: pgsql_close() -- 18:13:45.821 INFO [13123]: COREGRADE is starting... -- 18:13:45.822 INFO [13123]: Version from config: 1.0 -- 18:13:45.822 DEBUG [13123]: Connecting to database... -- 18:13:45.822 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:13:45.822 SQL [13123]: pgsql_db_connect() -- 18:13:45.825 DEBUG [13123]: Database connection successful -- 18:13:45.825 INFO [13123]: _SERVER found -- 18:13:45.825 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 18:13:45.825 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 18:13:45.825 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:13:45.825 INFO [13123]: QUERY_STRING = /member/upload -- 18:13:45.825 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:13:45.860 INFO [13123]: COREGRADE is stopping... -- 18:13:45.860 DEBUG [13123]: Closing database connection -- 18:13:45.860 SQL [13123]: pgsql_close() -- 18:13:45.879 INFO [13123]: COREGRADE is starting... -- 18:13:45.879 INFO [13123]: Version from config: 1.0 -- 18:13:45.879 DEBUG [13123]: Connecting to database... -- 18:13:45.879 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:13:45.879 SQL [13123]: pgsql_db_connect() -- 18:13:45.883 DEBUG [13123]: Database connection successful -- 18:13:45.883 INFO [13123]: _SERVER found -- 18:13:45.883 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 18:13:45.883 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 18:13:45.883 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:13:45.883 INFO [13123]: QUERY_STRING = /home/uploads/E5AB5CE0D4C24E4B9D968204658128F3/page/WhatEthernetCable.mp4 -- 18:13:45.883 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:13:45.895 INFO [13123]: COREGRADE is stopping... -- 18:13:45.895 DEBUG [13123]: Closing database connection -- 18:13:45.895 SQL [13123]: pgsql_close() -- 18:13:59.673 INFO [13052]: COREGRADE is starting... -- 18:13:59.673 INFO [13052]: Version from config: 1.0 -- 18:13:59.673 DEBUG [13052]: Connecting to database... -- 18:13:59.673 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:13:59.673 SQL [13052]: pgsql_db_connect() -- 18:13:59.677 DEBUG [13052]: Database connection successful -- 18:13:59.677 INFO [13052]: _SERVER found -- 18:13:59.677 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 18:13:59.677 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 18:13:59.677 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:13:59.677 INFO [13052]: QUERY_STRING = /member/page -- 18:13:59.677 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:13:59.718 INFO [13052]: COREGRADE is stopping... -- 18:13:59.718 DEBUG [13052]: Closing database connection -- 18:13:59.718 SQL [13052]: pgsql_close() -- 18:14:00.048 INFO [13052]: COREGRADE is starting... -- 18:14:00.048 INFO [13052]: Version from config: 1.0 -- 18:14:00.048 DEBUG [13052]: Connecting to database... -- 18:14:00.048 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:14:00.048 SQL [13052]: pgsql_db_connect() -- 18:14:00.088 INFO [16100]: COREGRADE is starting... -- 18:14:00.089 INFO [16100]: Version from config: 1.0 -- 18:14:00.089 DEBUG [16100]: Connecting to database... -- 18:14:00.089 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:14:00.089 SQL [16100]: pgsql_db_connect() -- 18:14:00.053 DEBUG [13052]: Database connection successful -- 18:14:00.053 INFO [13052]: _SERVER found -- 18:14:00.053 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 18:14:00.053 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 18:14:00.053 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:14:00.053 INFO [13052]: QUERY_STRING = /member/page -- 18:14:00.053 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:14:00.096 INFO [13052]: COREGRADE is stopping... -- 18:14:00.096 DEBUG [13052]: Closing database connection -- 18:14:00.096 SQL [13052]: pgsql_close() -- 18:14:00.092 DEBUG [16100]: Database connection successful -- 18:14:00.092 INFO [16100]: _SERVER found -- 18:14:00.092 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 18:14:00.092 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 18:14:00.092 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:14:00.092 INFO [16100]: QUERY_STRING = /member/page -- 18:14:00.092 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:14:00.135 INFO [16100]: COREGRADE is stopping... -- 18:14:00.135 DEBUG [16100]: Closing database connection -- 18:14:00.135 SQL [16100]: pgsql_close() -- 18:14:03.440 INFO [16100]: COREGRADE is starting... -- 18:14:03.441 INFO [16100]: Version from config: 1.0 -- 18:14:03.441 DEBUG [16100]: Connecting to database... -- 18:14:03.441 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:14:03.441 SQL [16100]: pgsql_db_connect() -- 18:14:03.445 DEBUG [16100]: Database connection successful -- 18:14:03.445 INFO [16100]: _SERVER found -- 18:14:03.445 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 18:14:03.445 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 18:14:03.445 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:14:03.445 INFO [16100]: QUERY_STRING = /member/upload -- 18:14:03.445 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:14:03.479 INFO [16100]: COREGRADE is stopping... -- 18:14:03.479 DEBUG [16100]: Closing database connection -- 18:14:03.479 SQL [16100]: pgsql_close() -- 18:14:46.732 INFO [13051]: COREGRADE is starting... -- 18:14:46.733 INFO [13051]: Version from config: 1.0 -- 18:14:46.733 DEBUG [13051]: Connecting to database... -- 18:14:46.733 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:14:46.733 SQL [13051]: pgsql_db_connect() -- 18:14:46.737 DEBUG [13051]: Database connection successful -- 18:14:46.737 INFO [13051]: _SERVER found -- 18:14:46.737 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 18:14:46.737 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 18:14:46.737 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:14:46.737 INFO [13051]: QUERY_STRING = /TEST/upload.php -- 18:14:46.737 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:14:46.749 INFO [13051]: COREGRADE is stopping... -- 18:14:46.749 DEBUG [13051]: Closing database connection -- 18:14:46.749 SQL [13051]: pgsql_close() -- 18:14:59.730 INFO [16105]: COREGRADE is starting... -- 18:14:59.730 INFO [16105]: Version from config: 1.0 -- 18:14:59.730 DEBUG [16105]: Connecting to database... -- 18:14:59.730 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:14:59.730 SQL [16105]: pgsql_db_connect() -- 18:14:59.734 DEBUG [16105]: Database connection successful -- 18:14:59.734 INFO [16105]: _SERVER found -- 18:14:59.734 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 18:14:59.734 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 18:14:59.734 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:14:59.734 INFO [16105]: QUERY_STRING = /TEST/upload.php -- 18:14:59.734 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:14:59.746 INFO [16105]: COREGRADE is stopping... -- 18:14:59.746 DEBUG [16105]: Closing database connection -- 18:14:59.746 SQL [16105]: pgsql_close() -- 18:14:59.882 INFO [16105]: COREGRADE is starting... -- 18:14:59.882 INFO [16105]: Version from config: 1.0 -- 18:14:59.882 DEBUG [16105]: Connecting to database... -- 18:14:59.882 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:14:59.882 SQL [16105]: pgsql_db_connect() -- 18:14:59.886 DEBUG [16105]: Database connection successful -- 18:14:59.886 INFO [16105]: _SERVER found -- 18:14:59.886 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 18:14:59.886 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 18:14:59.886 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:14:59.886 INFO [16105]: QUERY_STRING = /TEST/upload.php -- 18:14:59.886 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:14:59.898 INFO [16105]: COREGRADE is stopping... -- 18:14:59.898 DEBUG [16105]: Closing database connection -- 18:14:59.898 SQL [16105]: pgsql_close() -- 18:14:59.975 INFO [13053]: COREGRADE is starting... -- 18:14:59.975 INFO [13053]: Version from config: 1.0 -- 18:14:59.975 DEBUG [13053]: Connecting to database... -- 18:14:59.975 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:14:59.975 SQL [13053]: pgsql_db_connect() -- 18:14:59.979 DEBUG [13053]: Database connection successful -- 18:14:59.979 INFO [13053]: _SERVER found -- 18:14:59.979 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 18:14:59.979 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 18:14:59.979 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:14:59.979 INFO [13053]: QUERY_STRING = /TEST/upload.php -- 18:14:59.979 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:14:59.991 INFO [13053]: COREGRADE is stopping... -- 18:14:59.991 DEBUG [13053]: Closing database connection -- 18:14:59.991 SQL [13053]: pgsql_close() -- 18:15:00.001 INFO [13053]: COREGRADE is starting... -- 18:15:00.001 INFO [13053]: Version from config: 1.0 -- 18:15:00.001 DEBUG [13053]: Connecting to database... -- 18:15:00.001 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:15:00.001 SQL [13053]: pgsql_db_connect() -- 18:15:00.005 DEBUG [13053]: Database connection successful -- 18:15:00.005 INFO [13053]: _SERVER found -- 18:15:00.005 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 18:15:00.005 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 18:15:00.005 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:15:00.005 INFO [13053]: QUERY_STRING = /TEST/upload.php -- 18:15:00.005 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:15:00.016 INFO [13053]: COREGRADE is stopping... -- 18:15:00.016 DEBUG [13053]: Closing database connection -- 18:15:00.016 SQL [13053]: pgsql_close() -- 18:15:03.862 INFO [13053]: COREGRADE is starting... -- 18:15:03.862 INFO [13053]: Version from config: 1.0 -- 18:15:03.862 DEBUG [13053]: Connecting to database... -- 18:15:03.862 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:15:03.862 SQL [13053]: pgsql_db_connect() -- 18:15:03.866 DEBUG [13053]: Database connection successful -- 18:15:03.866 INFO [13053]: _SERVER found -- 18:15:03.866 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 18:15:03.866 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 18:15:03.866 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:15:03.866 INFO [13053]: QUERY_STRING = /TEST/upload.php -- 18:15:03.866 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:15:03.877 INFO [13053]: COREGRADE is stopping... -- 18:15:03.878 DEBUG [13053]: Closing database connection -- 18:15:03.878 SQL [13053]: pgsql_close() -- 18:15:03.898 INFO [13053]: COREGRADE is starting... -- 18:15:03.899 INFO [13053]: Version from config: 1.0 -- 18:15:03.899 DEBUG [13053]: Connecting to database... -- 18:15:03.899 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:15:03.899 SQL [13053]: pgsql_db_connect() -- 18:15:03.903 DEBUG [13053]: Database connection successful -- 18:15:03.903 INFO [13053]: _SERVER found -- 18:15:03.903 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 18:15:03.903 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 18:15:03.903 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:15:03.903 INFO [13053]: QUERY_STRING = /TEST/upload.php -- 18:15:03.903 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:15:03.914 INFO [13053]: COREGRADE is stopping... -- 18:15:03.914 DEBUG [13053]: Closing database connection -- 18:15:03.914 SQL [13053]: pgsql_close() -- 18:15:17.238 INFO [13055]: COREGRADE is starting... -- 18:15:17.238 INFO [13055]: Version from config: 1.0 -- 18:15:17.238 DEBUG [13055]: Connecting to database... -- 18:15:17.238 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:15:17.238 SQL [13055]: pgsql_db_connect() -- 18:15:17.242 DEBUG [13055]: Database connection successful -- 18:15:17.242 INFO [13055]: _SERVER found -- 18:15:17.242 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 18:15:17.242 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 18:15:17.242 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:15:17.242 INFO [13055]: QUERY_STRING = /TEST/upload.php -- 18:15:17.242 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:15:17.254 INFO [13055]: COREGRADE is stopping... -- 18:15:17.254 DEBUG [13055]: Closing database connection -- 18:15:17.254 SQL [13055]: pgsql_close() -- 18:15:17.333 INFO [13055]: COREGRADE is starting... -- 18:15:17.334 INFO [13055]: Version from config: 1.0 -- 18:15:17.334 DEBUG [13055]: Connecting to database... -- 18:15:17.334 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:15:17.334 SQL [13055]: pgsql_db_connect() -- 18:15:17.338 DEBUG [13055]: Database connection successful -- 18:15:17.338 INFO [13055]: _SERVER found -- 18:15:17.338 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 18:15:17.338 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 18:15:17.338 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:15:17.338 INFO [13055]: QUERY_STRING = /TEST/upload.php -- 18:15:17.338 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:15:17.349 INFO [13055]: COREGRADE is stopping... -- 18:15:17.349 DEBUG [13055]: Closing database connection -- 18:15:17.349 SQL [13055]: pgsql_close() -- 18:15:17.531 INFO [13054]: COREGRADE is starting... -- 18:15:17.531 INFO [13054]: Version from config: 1.0 -- 18:15:17.531 DEBUG [13054]: Connecting to database... -- 18:15:17.531 DEBUG [13054]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:15:17.531 SQL [13054]: pgsql_db_connect() -- 18:15:17.535 DEBUG [13054]: Database connection successful -- 18:15:17.535 INFO [13054]: _SERVER found -- 18:15:17.535 INFO [13054]: REMOTE_ADDR = 192.168.1.13 -- 18:15:17.535 INFO [13054]: SERVER_NAME = oameye.works.coregrade.com -- 18:15:17.535 INFO [13054]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:15:17.535 INFO [13054]: QUERY_STRING = /TEST/upload.php -- 18:15:17.535 INFO [13054]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:15:17.546 INFO [13054]: COREGRADE is stopping... -- 18:15:17.547 DEBUG [13054]: Closing database connection -- 18:15:17.547 SQL [13054]: pgsql_close() -- 18:15:17.558 INFO [13054]: COREGRADE is starting... -- 18:15:17.558 INFO [13054]: Version from config: 1.0 -- 18:15:17.558 DEBUG [13054]: Connecting to database... -- 18:15:17.558 DEBUG [13054]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:15:17.558 SQL [13054]: pgsql_db_connect() -- 18:15:17.562 DEBUG [13054]: Database connection successful -- 18:15:17.562 INFO [13054]: _SERVER found -- 18:15:17.562 INFO [13054]: REMOTE_ADDR = 192.168.1.13 -- 18:15:17.562 INFO [13054]: SERVER_NAME = oameye.works.coregrade.com -- 18:15:17.562 INFO [13054]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:15:17.562 INFO [13054]: QUERY_STRING = /TEST/upload.php -- 18:15:17.562 INFO [13054]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:15:17.573 INFO [13054]: COREGRADE is stopping... -- 18:15:17.573 DEBUG [13054]: Closing database connection -- 18:15:17.573 SQL [13054]: pgsql_close() -- 18:18:32.798 INFO [13123]: COREGRADE is starting... -- 18:18:32.798 INFO [13123]: Version from config: 1.0 -- 18:18:32.798 DEBUG [13123]: Connecting to database... -- 18:18:32.798 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:18:32.798 SQL [13123]: pgsql_db_connect() -- 18:18:32.802 DEBUG [13123]: Database connection successful -- 18:18:32.802 INFO [13123]: _SERVER found -- 18:18:32.802 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 18:18:32.802 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 18:18:32.802 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=74evfktahjse3cmo5k37vr5u7jb2odo9 -- 18:18:32.802 INFO [13123]: QUERY_STRING = /member/page -- 18:18:32.802 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:18:32.847 INFO [13123]: COREGRADE is stopping... -- 18:18:32.847 DEBUG [13123]: Closing database connection -- 18:18:32.847 SQL [13123]: pgsql_close() -- 18:18:33.012 INFO [13123]: COREGRADE is starting... -- 18:18:33.012 INFO [13123]: Version from config: 1.0 -- 18:18:33.012 DEBUG [13123]: Connecting to database... -- 18:18:33.012 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:18:33.012 SQL [13123]: pgsql_db_connect() -- 18:18:33.016 DEBUG [13123]: Database connection successful -- 18:18:33.016 INFO [13123]: _SERVER found -- 18:18:33.016 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 18:18:33.016 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 18:18:33.016 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ckaq3dqd2ksrgj9m4au2j8pb2e7rhrqv -- 18:18:33.016 INFO [13123]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:18:33.016 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:18:33.027 INFO [13123]: COREGRADE is stopping... -- 18:18:33.027 DEBUG [13123]: Closing database connection -- 18:18:33.027 SQL [13123]: pgsql_close() -- 18:18:33.210 INFO [13123]: COREGRADE is starting... -- 18:18:33.210 INFO [13123]: Version from config: 1.0 -- 18:18:33.210 DEBUG [13123]: Connecting to database... -- 18:18:33.210 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:18:33.210 SQL [13123]: pgsql_db_connect() -- 18:18:33.218 INFO [13052]: COREGRADE is starting... -- 18:18:33.218 INFO [13052]: Version from config: 1.0 -- 18:18:33.218 DEBUG [13052]: Connecting to database... -- 18:18:33.218 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:18:33.218 SQL [13052]: pgsql_db_connect() -- 18:18:33.214 DEBUG [13123]: Database connection successful -- 18:18:33.214 INFO [13123]: _SERVER found -- 18:18:33.214 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 18:18:33.214 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 18:18:33.214 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ckaq3dqd2ksrgj9m4au2j8pb2e7rhrqv -- 18:18:33.214 INFO [13123]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 18:18:33.214 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:18:33.226 INFO [13123]: COREGRADE is stopping... -- 18:18:33.226 DEBUG [13123]: Closing database connection -- 18:18:33.226 SQL [13123]: pgsql_close() -- 18:18:33.222 DEBUG [13052]: Database connection successful -- 18:18:33.222 INFO [13052]: _SERVER found -- 18:18:33.222 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 18:18:33.222 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 18:18:33.222 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ckaq3dqd2ksrgj9m4au2j8pb2e7rhrqv -- 18:18:33.222 INFO [13052]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 18:18:33.222 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:18:33.234 INFO [13052]: COREGRADE is stopping... -- 18:18:33.234 DEBUG [13052]: Closing database connection -- 18:18:33.234 SQL [13052]: pgsql_close() -- 18:18:37.180 INFO [13052]: COREGRADE is starting... -- 18:18:37.180 INFO [13052]: Version from config: 1.0 -- 18:18:37.180 DEBUG [13052]: Connecting to database... -- 18:18:37.180 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:18:37.180 SQL [13052]: pgsql_db_connect() -- 18:18:37.184 DEBUG [13052]: Database connection successful -- 18:18:37.184 INFO [13052]: _SERVER found -- 18:18:37.184 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 18:18:37.184 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 18:18:37.184 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ckaq3dqd2ksrgj9m4au2j8pb2e7rhrqv -- 18:18:37.184 INFO [13052]: QUERY_STRING = /member/viewCardAddAction -- 18:18:37.184 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:18:37.219 INFO [13052]: COREGRADE is stopping... -- 18:18:37.219 DEBUG [13052]: Closing database connection -- 18:18:37.219 SQL [13052]: pgsql_close() -- 18:18:37.241 INFO [13052]: COREGRADE is starting... -- 18:18:37.242 INFO [13052]: Version from config: 1.0 -- 18:18:37.242 DEBUG [13052]: Connecting to database... -- 18:18:37.242 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:18:37.242 SQL [13052]: pgsql_db_connect() -- 18:18:37.246 DEBUG [13052]: Database connection successful -- 18:18:37.246 INFO [13052]: _SERVER found -- 18:18:37.246 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 18:18:37.246 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 18:18:37.246 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ckaq3dqd2ksrgj9m4au2j8pb2e7rhrqv -- 18:18:37.246 INFO [13052]: QUERY_STRING = /member/upload -- 18:18:37.246 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:18:37.293 INFO [13052]: COREGRADE is stopping... -- 18:18:37.293 DEBUG [13052]: Closing database connection -- 18:18:37.293 SQL [13052]: pgsql_close() -- 18:18:37.307 INFO [13052]: COREGRADE is starting... -- 18:18:37.307 INFO [13052]: Version from config: 1.0 -- 18:18:37.307 DEBUG [13052]: Connecting to database... -- 18:18:37.307 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:18:37.308 SQL [13052]: pgsql_db_connect() -- 18:18:37.311 DEBUG [13052]: Database connection successful -- 18:18:37.311 INFO [13052]: _SERVER found -- 18:18:37.311 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 18:18:37.311 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 18:18:37.311 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ckaq3dqd2ksrgj9m4au2j8pb2e7rhrqv -- 18:18:37.311 INFO [13052]: QUERY_STRING = /home/uploads/E5AB5CE0D4C24E4B9D968204658128F3/page/WhatEthernetCable.mp4 -- 18:18:37.311 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:18:37.323 INFO [13052]: COREGRADE is stopping... -- 18:18:37.323 DEBUG [13052]: Closing database connection -- 18:18:37.323 SQL [13052]: pgsql_close() -- 18:18:47.000 INFO [16100]: COREGRADE is starting... -- 18:18:47.000 INFO [16100]: Version from config: 1.0 -- 18:18:47.000 DEBUG [16100]: Connecting to database... -- 18:18:47.000 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:18:47.000 SQL [16100]: pgsql_db_connect() -- 18:18:48.004 DEBUG [16100]: Database connection successful -- 18:18:48.004 INFO [16100]: _SERVER found -- 18:18:48.004 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 18:18:48.004 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 18:18:48.004 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ckaq3dqd2ksrgj9m4au2j8pb2e7rhrqv -- 18:18:48.004 INFO [16100]: QUERY_STRING = /member/page -- 18:18:48.004 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:18:48.045 INFO [16100]: COREGRADE is stopping... -- 18:18:48.045 DEBUG [16100]: Closing database connection -- 18:18:48.045 SQL [16100]: pgsql_close() -- 18:18:48.365 INFO [13051]: COREGRADE is starting... -- 18:18:48.365 INFO [13051]: Version from config: 1.0 -- 18:18:48.365 DEBUG [13051]: Connecting to database... -- 18:18:48.365 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:18:48.365 SQL [13051]: pgsql_db_connect() -- 18:18:48.369 DEBUG [13051]: Database connection successful -- 18:18:48.369 INFO [13051]: _SERVER found -- 18:18:48.369 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 18:18:48.369 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 18:18:48.369 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ckaq3dqd2ksrgj9m4au2j8pb2e7rhrqv -- 18:18:48.369 INFO [13051]: QUERY_STRING = /member/page -- 18:18:48.369 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:18:48.410 INFO [13051]: COREGRADE is stopping... -- 18:18:48.410 DEBUG [13051]: Closing database connection -- 18:18:48.410 SQL [13051]: pgsql_close() -- 18:19:22.008 INFO [16105]: COREGRADE is starting... -- 18:19:22.008 INFO [16105]: Version from config: 1.0 -- 18:19:22.008 DEBUG [16105]: Connecting to database... -- 18:19:22.008 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:19:22.008 SQL [16105]: pgsql_db_connect() -- 18:19:22.013 DEBUG [16105]: Database connection successful -- 18:19:22.013 INFO [16105]: _SERVER found -- 18:19:22.013 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 18:19:22.013 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 18:19:22.013 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ckaq3dqd2ksrgj9m4au2j8pb2e7rhrqv -- 18:19:22.013 INFO [16105]: QUERY_STRING = /member/page -- 18:19:22.013 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:19:22.055 INFO [16105]: COREGRADE is stopping... -- 18:19:22.055 DEBUG [16105]: Closing database connection -- 18:19:22.055 SQL [16105]: pgsql_close() -- 18:20:07.933 INFO [13053]: COREGRADE is starting... -- 18:20:07.933 INFO [13053]: Version from config: 1.0 -- 18:20:07.933 DEBUG [13053]: Connecting to database... -- 18:20:07.933 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:20:07.933 SQL [13053]: pgsql_db_connect() -- 18:20:07.937 DEBUG [13053]: Database connection successful -- 18:20:07.937 INFO [13053]: _SERVER found -- 18:20:07.937 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 18:20:07.937 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 18:20:07.937 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ckaq3dqd2ksrgj9m4au2j8pb2e7rhrqv -- 18:20:07.937 INFO [13053]: QUERY_STRING = /member/page -- 18:20:07.937 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:20:07.980 INFO [13053]: COREGRADE is stopping... -- 18:20:07.980 DEBUG [13053]: Closing database connection -- 18:20:07.980 SQL [13053]: pgsql_close() -- 18:20:08.082 INFO [13053]: COREGRADE is starting... -- 18:20:08.082 INFO [13053]: Version from config: 1.0 -- 18:20:08.082 DEBUG [13053]: Connecting to database... -- 18:20:08.082 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:20:08.082 SQL [13053]: pgsql_db_connect() -- 18:20:08.086 DEBUG [13053]: Database connection successful -- 18:20:08.086 INFO [13053]: _SERVER found -- 18:20:08.086 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 18:20:08.086 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 18:20:08.086 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ckaq3dqd2ksrgj9m4au2j8pb2e7rhrqv -- 18:20:08.086 INFO [13053]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:20:08.086 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:20:08.097 INFO [13053]: COREGRADE is stopping... -- 18:20:08.097 DEBUG [13053]: Closing database connection -- 18:20:08.097 SQL [13053]: pgsql_close() -- 18:20:11.122 INFO [13053]: COREGRADE is starting... -- 18:20:11.122 INFO [13053]: Version from config: 1.0 -- 18:20:11.122 DEBUG [13053]: Connecting to database... -- 18:20:11.122 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:20:11.122 SQL [13053]: pgsql_db_connect() -- 18:20:11.126 DEBUG [13053]: Database connection successful -- 18:20:11.126 INFO [13053]: _SERVER found -- 18:20:11.126 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 18:20:11.126 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 18:20:11.126 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ckaq3dqd2ksrgj9m4au2j8pb2e7rhrqv -- 18:20:11.126 INFO [13053]: QUERY_STRING = /member/viewCardAddAction -- 18:20:11.126 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:20:11.157 INFO [13053]: COREGRADE is stopping... -- 18:20:11.157 DEBUG [13053]: Closing database connection -- 18:20:11.157 SQL [13053]: pgsql_close() -- 18:20:11.180 INFO [13053]: COREGRADE is starting... -- 18:20:11.181 INFO [13053]: Version from config: 1.0 -- 18:20:11.181 DEBUG [13053]: Connecting to database... -- 18:20:11.181 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:20:11.181 SQL [13053]: pgsql_db_connect() -- 18:20:11.185 DEBUG [13053]: Database connection successful -- 18:20:11.185 INFO [13053]: _SERVER found -- 18:20:11.185 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 18:20:11.185 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 18:20:11.185 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ckaq3dqd2ksrgj9m4au2j8pb2e7rhrqv -- 18:20:11.185 INFO [13053]: QUERY_STRING = /member/upload -- 18:20:11.185 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:20:11.217 INFO [13053]: COREGRADE is stopping... -- 18:20:11.217 DEBUG [13053]: Closing database connection -- 18:20:11.217 SQL [13053]: pgsql_close() -- 18:20:11.232 INFO [13053]: COREGRADE is starting... -- 18:20:11.233 INFO [13053]: Version from config: 1.0 -- 18:20:11.233 DEBUG [13053]: Connecting to database... -- 18:20:11.233 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:20:11.233 SQL [13053]: pgsql_db_connect() -- 18:20:11.237 DEBUG [13053]: Database connection successful -- 18:20:11.237 INFO [13053]: _SERVER found -- 18:20:11.237 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 18:20:11.237 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 18:20:11.237 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ckaq3dqd2ksrgj9m4au2j8pb2e7rhrqv -- 18:20:11.237 INFO [13053]: QUERY_STRING = /home/uploads/E5AB5CE0D4C24E4B9D968204658128F3/page/WhatEthernetCable.mp4 -- 18:20:11.237 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:20:11.248 INFO [13053]: COREGRADE is stopping... -- 18:20:11.248 DEBUG [13053]: Closing database connection -- 18:20:11.248 SQL [13053]: pgsql_close() -- 18:20:21.189 INFO [13055]: COREGRADE is starting... -- 18:20:21.189 INFO [13055]: Version from config: 1.0 -- 18:20:21.189 DEBUG [13055]: Connecting to database... -- 18:20:21.189 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:20:21.189 SQL [13055]: pgsql_db_connect() -- 18:20:21.193 DEBUG [13055]: Database connection successful -- 18:20:21.193 INFO [13055]: _SERVER found -- 18:20:21.193 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 18:20:21.193 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 18:20:21.193 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ckaq3dqd2ksrgj9m4au2j8pb2e7rhrqv -- 18:20:21.193 INFO [13055]: QUERY_STRING = /member/page -- 18:20:21.193 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:20:21.234 INFO [13055]: COREGRADE is stopping... -- 18:20:21.234 DEBUG [13055]: Closing database connection -- 18:20:21.234 SQL [13055]: pgsql_close() -- 18:20:59.806 INFO [13054]: COREGRADE is starting... -- 18:20:59.806 INFO [13054]: Version from config: 1.0 -- 18:20:59.806 DEBUG [13054]: Connecting to database... -- 18:20:59.806 DEBUG [13054]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:20:59.806 SQL [13054]: pgsql_db_connect() -- 18:20:59.810 DEBUG [13054]: Database connection successful -- 18:20:59.810 INFO [13054]: _SERVER found -- 18:20:59.810 INFO [13054]: REMOTE_ADDR = 192.168.1.13 -- 18:20:59.810 INFO [13054]: SERVER_NAME = oameye.works.coregrade.com -- 18:20:59.810 INFO [13054]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ckaq3dqd2ksrgj9m4au2j8pb2e7rhrqv -- 18:20:59.810 INFO [13054]: QUERY_STRING = /member/page -- 18:20:59.810 INFO [13054]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:20:59.853 INFO [13054]: COREGRADE is stopping... -- 18:20:59.853 DEBUG [13054]: Closing database connection -- 18:20:59.853 SQL [13054]: pgsql_close() -- 18:20:59.957 INFO [13054]: COREGRADE is starting... -- 18:20:59.957 INFO [13054]: Version from config: 1.0 -- 18:20:59.957 DEBUG [13054]: Connecting to database... -- 18:20:59.957 DEBUG [13054]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:20:59.957 SQL [13054]: pgsql_db_connect() -- 18:20:59.961 DEBUG [13054]: Database connection successful -- 18:20:59.961 INFO [13054]: _SERVER found -- 18:20:59.961 INFO [13054]: REMOTE_ADDR = 192.168.1.13 -- 18:20:59.961 INFO [13054]: SERVER_NAME = oameye.works.coregrade.com -- 18:20:59.961 INFO [13054]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ckaq3dqd2ksrgj9m4au2j8pb2e7rhrqv -- 18:20:59.961 INFO [13054]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:20:59.961 INFO [13054]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:20:59.972 INFO [13054]: COREGRADE is stopping... -- 18:20:59.972 DEBUG [13054]: Closing database connection -- 18:20:59.972 SQL [13054]: pgsql_close() -- 18:21:03.934 INFO [13054]: COREGRADE is starting... -- 18:21:03.934 INFO [13054]: Version from config: 1.0 -- 18:21:03.934 DEBUG [13054]: Connecting to database... -- 18:21:03.934 DEBUG [13054]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:21:03.934 SQL [13054]: pgsql_db_connect() -- 18:21:03.939 DEBUG [13054]: Database connection successful -- 18:21:03.939 INFO [13054]: _SERVER found -- 18:21:03.939 INFO [13054]: REMOTE_ADDR = 192.168.1.13 -- 18:21:03.939 INFO [13054]: SERVER_NAME = oameye.works.coregrade.com -- 18:21:03.939 INFO [13054]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ckaq3dqd2ksrgj9m4au2j8pb2e7rhrqv -- 18:21:03.939 INFO [13054]: QUERY_STRING = /member/viewCardAddAction -- 18:21:03.939 INFO [13054]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:21:03.970 INFO [13054]: COREGRADE is stopping... -- 18:21:03.970 DEBUG [13054]: Closing database connection -- 18:21:03.970 SQL [13054]: pgsql_close() -- 18:21:03.992 INFO [13054]: COREGRADE is starting... -- 18:21:03.992 INFO [13054]: Version from config: 1.0 -- 18:21:03.992 DEBUG [13054]: Connecting to database... -- 18:21:03.992 DEBUG [13054]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:21:03.992 SQL [13054]: pgsql_db_connect() -- 18:21:03.996 DEBUG [13054]: Database connection successful -- 18:21:03.996 INFO [13054]: _SERVER found -- 18:21:03.996 INFO [13054]: REMOTE_ADDR = 192.168.1.13 -- 18:21:03.996 INFO [13054]: SERVER_NAME = oameye.works.coregrade.com -- 18:21:03.996 INFO [13054]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ckaq3dqd2ksrgj9m4au2j8pb2e7rhrqv -- 18:21:03.996 INFO [13054]: QUERY_STRING = /member/upload -- 18:21:03.996 INFO [13054]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:21:04.037 INFO [13054]: COREGRADE is stopping... -- 18:21:04.037 DEBUG [13054]: Closing database connection -- 18:21:04.037 SQL [13054]: pgsql_close() -- 18:21:04.052 INFO [13054]: COREGRADE is starting... -- 18:21:04.053 INFO [13054]: Version from config: 1.0 -- 18:21:04.053 DEBUG [13054]: Connecting to database... -- 18:21:04.053 DEBUG [13054]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:21:04.053 SQL [13054]: pgsql_db_connect() -- 18:21:04.057 DEBUG [13054]: Database connection successful -- 18:21:04.057 INFO [13054]: _SERVER found -- 18:21:04.057 INFO [13054]: REMOTE_ADDR = 192.168.1.13 -- 18:21:04.057 INFO [13054]: SERVER_NAME = oameye.works.coregrade.com -- 18:21:04.057 INFO [13054]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ckaq3dqd2ksrgj9m4au2j8pb2e7rhrqv -- 18:21:04.057 INFO [13054]: QUERY_STRING = /home/uploads/E5AB5CE0D4C24E4B9D968204658128F3/page/WhatEthernetCable.mp4 -- 18:21:04.057 INFO [13054]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:21:04.068 INFO [13054]: COREGRADE is stopping... -- 18:21:04.068 DEBUG [13054]: Closing database connection -- 18:21:04.068 SQL [13054]: pgsql_close() -- 18:21:09.746 INFO [13123]: COREGRADE is starting... -- 18:21:09.746 INFO [13123]: Version from config: 1.0 -- 18:21:09.746 DEBUG [13123]: Connecting to database... -- 18:21:09.746 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:21:09.746 SQL [13123]: pgsql_db_connect() -- 18:21:09.751 DEBUG [13123]: Database connection successful -- 18:21:09.751 INFO [13123]: _SERVER found -- 18:21:09.751 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 18:21:09.751 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 18:21:09.751 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ckaq3dqd2ksrgj9m4au2j8pb2e7rhrqv -- 18:21:09.751 INFO [13123]: QUERY_STRING = /member/page -- 18:21:09.751 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:21:09.794 INFO [13123]: COREGRADE is stopping... -- 18:21:09.794 DEBUG [13123]: Closing database connection -- 18:21:09.794 SQL [13123]: pgsql_close() -- 18:22:22.007 INFO [13052]: COREGRADE is starting... -- 18:22:22.007 INFO [13052]: Version from config: 1.0 -- 18:22:22.007 DEBUG [13052]: Connecting to database... -- 18:22:22.007 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:22:22.007 SQL [13052]: pgsql_db_connect() -- 18:22:22.011 DEBUG [13052]: Database connection successful -- 18:22:22.011 INFO [13052]: _SERVER found -- 18:22:22.011 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 18:22:22.011 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 18:22:22.011 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ckaq3dqd2ksrgj9m4au2j8pb2e7rhrqv -- 18:22:22.011 INFO [13052]: QUERY_STRING = /member/page -- 18:22:22.011 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:22:22.055 INFO [13052]: COREGRADE is stopping... -- 18:22:22.055 DEBUG [13052]: Closing database connection -- 18:22:22.055 SQL [13052]: pgsql_close() -- 18:22:22.182 INFO [13052]: COREGRADE is starting... -- 18:22:22.182 INFO [13052]: Version from config: 1.0 -- 18:22:22.182 DEBUG [13052]: Connecting to database... -- 18:22:22.182 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:22:22.182 SQL [13052]: pgsql_db_connect() -- 18:22:22.186 DEBUG [13052]: Database connection successful -- 18:22:22.186 INFO [13052]: _SERVER found -- 18:22:22.186 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 18:22:22.186 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 18:22:22.186 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ckaq3dqd2ksrgj9m4au2j8pb2e7rhrqv -- 18:22:22.186 INFO [13052]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:22:22.186 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:22:22.198 INFO [13052]: COREGRADE is stopping... -- 18:22:22.198 DEBUG [13052]: Closing database connection -- 18:22:22.198 SQL [13052]: pgsql_close() -- 18:22:26.531 INFO [13052]: COREGRADE is starting... -- 18:22:26.531 INFO [13052]: Version from config: 1.0 -- 18:22:26.531 DEBUG [13052]: Connecting to database... -- 18:22:26.531 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:22:26.531 SQL [13052]: pgsql_db_connect() -- 18:22:26.535 DEBUG [13052]: Database connection successful -- 18:22:26.535 INFO [13052]: _SERVER found -- 18:22:26.535 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 18:22:26.535 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 18:22:26.535 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ckaq3dqd2ksrgj9m4au2j8pb2e7rhrqv -- 18:22:26.535 INFO [13052]: QUERY_STRING = /member/viewCardAddAction -- 18:22:26.535 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:22:26.570 INFO [13052]: COREGRADE is stopping... -- 18:22:26.570 DEBUG [13052]: Closing database connection -- 18:22:26.570 SQL [13052]: pgsql_close() -- 18:22:26.588 INFO [13052]: COREGRADE is starting... -- 18:22:26.588 INFO [13052]: Version from config: 1.0 -- 18:22:26.588 DEBUG [13052]: Connecting to database... -- 18:22:26.588 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:22:26.588 SQL [13052]: pgsql_db_connect() -- 18:22:26.592 DEBUG [13052]: Database connection successful -- 18:22:26.592 INFO [13052]: _SERVER found -- 18:22:26.592 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 18:22:26.592 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 18:22:26.592 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ckaq3dqd2ksrgj9m4au2j8pb2e7rhrqv -- 18:22:26.592 INFO [13052]: QUERY_STRING = /member/upload -- 18:22:26.592 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:22:26.633 INFO [13052]: COREGRADE is stopping... -- 18:22:26.633 DEBUG [13052]: Closing database connection -- 18:22:26.633 SQL [13052]: pgsql_close() -- 18:22:26.644 INFO [13052]: COREGRADE is starting... -- 18:22:26.644 INFO [13052]: Version from config: 1.0 -- 18:22:26.644 DEBUG [13052]: Connecting to database... -- 18:22:26.644 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:22:26.644 SQL [13052]: pgsql_db_connect() -- 18:22:26.648 DEBUG [13052]: Database connection successful -- 18:22:26.648 INFO [13052]: _SERVER found -- 18:22:26.648 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 18:22:26.648 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 18:22:26.648 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ckaq3dqd2ksrgj9m4au2j8pb2e7rhrqv -- 18:22:26.648 INFO [13052]: QUERY_STRING = /home/uploads/E5AB5CE0D4C24E4B9D968204658128F3/page/WhatEthernetCable.mp4 -- 18:22:26.648 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:22:26.660 INFO [13052]: COREGRADE is stopping... -- 18:22:26.660 DEBUG [13052]: Closing database connection -- 18:22:26.660 SQL [13052]: pgsql_close() -- 18:22:37.197 INFO [16100]: COREGRADE is starting... -- 18:22:37.197 INFO [16100]: Version from config: 1.0 -- 18:22:37.197 DEBUG [16100]: Connecting to database... -- 18:22:37.197 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:22:37.197 SQL [16100]: pgsql_db_connect() -- 18:22:37.201 DEBUG [16100]: Database connection successful -- 18:22:37.201 INFO [16100]: _SERVER found -- 18:22:37.201 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 18:22:37.201 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 18:22:37.201 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ckaq3dqd2ksrgj9m4au2j8pb2e7rhrqv -- 18:22:37.201 INFO [16100]: QUERY_STRING = /member/page -- 18:22:37.201 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:22:37.245 INFO [16100]: COREGRADE is stopping... -- 18:22:37.245 DEBUG [16100]: Closing database connection -- 18:22:37.245 SQL [16100]: pgsql_close() -- 18:22:37.510 INFO [13051]: COREGRADE is starting... -- 18:22:37.510 INFO [13051]: Version from config: 1.0 -- 18:22:37.510 DEBUG [13051]: Connecting to database... -- 18:22:37.510 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:22:37.510 SQL [13051]: pgsql_db_connect() -- 18:22:37.514 DEBUG [13051]: Database connection successful -- 18:22:37.514 INFO [13051]: _SERVER found -- 18:22:37.514 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 18:22:37.514 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 18:22:37.514 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ckaq3dqd2ksrgj9m4au2j8pb2e7rhrqv -- 18:22:37.514 INFO [13051]: QUERY_STRING = /member/page -- 18:22:37.514 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:22:37.554 INFO [13051]: COREGRADE is stopping... -- 18:22:37.554 DEBUG [13051]: Closing database connection -- 18:22:37.554 SQL [13051]: pgsql_close() -- 18:22:37.563 INFO [16100]: COREGRADE is starting... -- 18:22:37.564 INFO [16100]: Version from config: 1.0 -- 18:22:37.564 DEBUG [16100]: Connecting to database... -- 18:22:37.564 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:22:37.564 SQL [16100]: pgsql_db_connect() -- 18:22:37.567 DEBUG [16100]: Database connection successful -- 18:22:37.567 INFO [16100]: _SERVER found -- 18:22:37.567 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 18:22:37.567 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 18:22:37.567 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ckaq3dqd2ksrgj9m4au2j8pb2e7rhrqv -- 18:22:37.567 INFO [16100]: QUERY_STRING = /member/page -- 18:22:37.567 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:22:37.610 INFO [16100]: COREGRADE is stopping... -- 18:22:37.610 DEBUG [16100]: Closing database connection -- 18:22:37.610 SQL [16100]: pgsql_close() -- 18:22:37.699 INFO [13051]: COREGRADE is starting... -- 18:22:37.699 INFO [13051]: Version from config: 1.0 -- 18:22:37.699 DEBUG [13051]: Connecting to database... -- 18:22:37.699 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:22:37.699 SQL [13051]: pgsql_db_connect() -- 18:22:37.703 DEBUG [13051]: Database connection successful -- 18:22:37.703 INFO [13051]: _SERVER found -- 18:22:37.703 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 18:22:37.703 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 18:22:37.703 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ckaq3dqd2ksrgj9m4au2j8pb2e7rhrqv -- 18:22:37.703 INFO [13051]: QUERY_STRING = /member/page -- 18:22:37.703 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:22:37.743 INFO [13051]: COREGRADE is stopping... -- 18:22:37.743 DEBUG [13051]: Closing database connection -- 18:22:37.743 SQL [13051]: pgsql_close() -- 18:25:45.943 INFO [16105]: COREGRADE is starting... -- 18:25:45.943 INFO [16105]: Version from config: 1.0 -- 18:25:45.943 DEBUG [16105]: Connecting to database... -- 18:25:45.943 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:25:45.943 SQL [16105]: pgsql_db_connect() -- 18:25:45.947 DEBUG [16105]: Database connection successful -- 18:25:45.947 INFO [16105]: _SERVER found -- 18:25:45.947 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 18:25:45.947 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 18:25:45.947 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ckaq3dqd2ksrgj9m4au2j8pb2e7rhrqv -- 18:25:45.947 INFO [16105]: QUERY_STRING = /member/upload -- 18:25:45.947 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:25:45.982 INFO [16105]: COREGRADE is stopping... -- 18:25:45.982 DEBUG [16105]: Closing database connection -- 18:25:45.982 SQL [16105]: pgsql_close() -- 18:26:40.714 INFO [13053]: COREGRADE is starting... -- 18:26:40.715 INFO [13053]: Version from config: 1.0 -- 18:26:40.715 DEBUG [13053]: Connecting to database... -- 18:26:40.715 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:26:40.715 SQL [13053]: pgsql_db_connect() -- 18:26:40.719 DEBUG [13053]: Database connection successful -- 18:26:40.719 INFO [13053]: _SERVER found -- 18:26:40.719 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 18:26:40.719 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 18:26:40.719 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ckaq3dqd2ksrgj9m4au2j8pb2e7rhrqv -- 18:26:40.719 INFO [13053]: QUERY_STRING = /TEST/upload.php -- 18:26:40.719 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:26:40.731 INFO [13053]: COREGRADE is stopping... -- 18:26:40.731 DEBUG [13053]: Closing database connection -- 18:26:40.731 SQL [13053]: pgsql_close() -- 18:28:03.879 INFO [13055]: COREGRADE is starting... -- 18:28:03.880 INFO [13055]: Version from config: 1.0 -- 18:28:03.880 DEBUG [13055]: Connecting to database... -- 18:28:03.880 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:28:03.880 SQL [13055]: pgsql_db_connect() -- 18:28:03.884 DEBUG [13055]: Database connection successful -- 18:28:03.884 INFO [13055]: _SERVER found -- 18:28:03.884 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 18:28:03.884 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 18:28:03.884 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ckaq3dqd2ksrgj9m4au2j8pb2e7rhrqv -- 18:28:03.884 INFO [13055]: QUERY_STRING = /member/page -- 18:28:03.884 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:28:03.927 INFO [13055]: COREGRADE is stopping... -- 18:28:03.927 DEBUG [13055]: Closing database connection -- 18:28:03.927 SQL [13055]: pgsql_close() -- 18:28:04.039 INFO [13055]: COREGRADE is starting... -- 18:28:04.040 INFO [13055]: Version from config: 1.0 -- 18:28:04.040 DEBUG [13055]: Connecting to database... -- 18:28:04.040 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:28:04.040 SQL [13055]: pgsql_db_connect() -- 18:28:04.043 DEBUG [13055]: Database connection successful -- 18:28:04.043 INFO [13055]: _SERVER found -- 18:28:04.043 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 18:28:04.043 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 18:28:04.043 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8k409aemb4hf0jk0r51hv4m88r9p4m9p -- 18:28:04.043 INFO [13055]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:28:04.043 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:28:04.055 INFO [13055]: COREGRADE is stopping... -- 18:28:04.055 DEBUG [13055]: Closing database connection -- 18:28:04.055 SQL [13055]: pgsql_close() -- 18:28:06.662 INFO [13055]: COREGRADE is starting... -- 18:28:06.663 INFO [13055]: Version from config: 1.0 -- 18:28:06.663 DEBUG [13055]: Connecting to database... -- 18:28:06.663 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:28:06.663 SQL [13055]: pgsql_db_connect() -- 18:28:06.667 DEBUG [13055]: Database connection successful -- 18:28:06.667 INFO [13055]: _SERVER found -- 18:28:06.667 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 18:28:06.667 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 18:28:06.667 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8k409aemb4hf0jk0r51hv4m88r9p4m9p -- 18:28:06.667 INFO [13055]: QUERY_STRING = /member/viewCardAddAction -- 18:28:06.667 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:28:06.698 INFO [13055]: COREGRADE is stopping... -- 18:28:06.698 DEBUG [13055]: Closing database connection -- 18:28:06.698 SQL [13055]: pgsql_close() -- 18:28:06.725 INFO [13055]: COREGRADE is starting... -- 18:28:06.725 INFO [13055]: Version from config: 1.0 -- 18:28:06.725 DEBUG [13055]: Connecting to database... -- 18:28:06.725 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:28:06.725 SQL [13055]: pgsql_db_connect() -- 18:28:06.730 DEBUG [13055]: Database connection successful -- 18:28:06.730 INFO [13055]: _SERVER found -- 18:28:06.730 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 18:28:06.730 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 18:28:06.730 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8k409aemb4hf0jk0r51hv4m88r9p4m9p -- 18:28:06.730 INFO [13055]: QUERY_STRING = /member/upload -- 18:28:06.730 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:28:06.762 INFO [13055]: COREGRADE is stopping... -- 18:28:06.762 DEBUG [13055]: Closing database connection -- 18:28:06.762 SQL [13055]: pgsql_close() -- 18:28:06.773 INFO [13055]: COREGRADE is starting... -- 18:28:06.773 INFO [13055]: Version from config: 1.0 -- 18:28:06.773 DEBUG [13055]: Connecting to database... -- 18:28:06.773 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:28:06.773 SQL [13055]: pgsql_db_connect() -- 18:28:06.777 DEBUG [13055]: Database connection successful -- 18:28:06.777 INFO [13055]: _SERVER found -- 18:28:06.777 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 18:28:06.777 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 18:28:06.777 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8k409aemb4hf0jk0r51hv4m88r9p4m9p -- 18:28:06.777 INFO [13055]: QUERY_STRING = /home/uploads/E5AB5CE0D4C24E4B9D968204658128F3/page/WhatEthernetCable.mp4 -- 18:28:06.777 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:28:06.789 INFO [13055]: COREGRADE is stopping... -- 18:28:06.789 DEBUG [13055]: Closing database connection -- 18:28:06.789 SQL [13055]: pgsql_close() -- 18:29:11.935 INFO [13054]: COREGRADE is starting... -- 18:29:11.935 INFO [13054]: Version from config: 1.0 -- 18:29:11.935 DEBUG [13054]: Connecting to database... -- 18:29:11.935 DEBUG [13054]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:29:11.935 SQL [13054]: pgsql_db_connect() -- 18:29:11.939 DEBUG [13054]: Database connection successful -- 18:29:11.939 INFO [13054]: _SERVER found -- 18:29:11.939 INFO [13054]: REMOTE_ADDR = 192.168.1.13 -- 18:29:11.939 INFO [13054]: SERVER_NAME = oameye.works.coregrade.com -- 18:29:11.939 INFO [13054]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8k409aemb4hf0jk0r51hv4m88r9p4m9p -- 18:29:11.939 INFO [13054]: QUERY_STRING = /member/page -- 18:29:11.939 INFO [13054]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:29:11.982 INFO [13054]: COREGRADE is stopping... -- 18:29:11.982 DEBUG [13054]: Closing database connection -- 18:29:11.982 SQL [13054]: pgsql_close() -- 18:29:15.173 INFO [13054]: COREGRADE is starting... -- 18:29:15.173 INFO [13054]: Version from config: 1.0 -- 18:29:15.173 DEBUG [13054]: Connecting to database... -- 18:29:15.173 DEBUG [13054]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:29:15.173 SQL [13054]: pgsql_db_connect() -- 18:29:15.178 DEBUG [13054]: Database connection successful -- 18:29:15.178 INFO [13054]: _SERVER found -- 18:29:15.178 INFO [13054]: REMOTE_ADDR = 192.168.1.13 -- 18:29:15.178 INFO [13054]: SERVER_NAME = oameye.works.coregrade.com -- 18:29:15.178 INFO [13054]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8k409aemb4hf0jk0r51hv4m88r9p4m9p -- 18:29:15.178 INFO [13054]: QUERY_STRING = /member/viewCardAddAction -- 18:29:15.178 INFO [13054]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:29:15.210 INFO [13054]: COREGRADE is stopping... -- 18:29:15.210 DEBUG [13054]: Closing database connection -- 18:29:15.210 SQL [13054]: pgsql_close() -- 18:29:15.227 INFO [13054]: COREGRADE is starting... -- 18:29:15.227 INFO [13054]: Version from config: 1.0 -- 18:29:15.227 DEBUG [13054]: Connecting to database... -- 18:29:15.227 DEBUG [13054]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:29:15.227 SQL [13054]: pgsql_db_connect() -- 18:29:15.231 DEBUG [13054]: Database connection successful -- 18:29:15.231 INFO [13054]: _SERVER found -- 18:29:15.231 INFO [13054]: REMOTE_ADDR = 192.168.1.13 -- 18:29:15.231 INFO [13054]: SERVER_NAME = oameye.works.coregrade.com -- 18:29:15.231 INFO [13054]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8k409aemb4hf0jk0r51hv4m88r9p4m9p -- 18:29:15.231 INFO [13054]: QUERY_STRING = /member/upload -- 18:29:15.231 INFO [13054]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:29:15.270 INFO [13054]: COREGRADE is stopping... -- 18:29:15.270 DEBUG [13054]: Closing database connection -- 18:29:15.270 SQL [13054]: pgsql_close() -- 18:29:15.281 INFO [13054]: COREGRADE is starting... -- 18:29:15.281 INFO [13054]: Version from config: 1.0 -- 18:29:15.281 DEBUG [13054]: Connecting to database... -- 18:29:15.281 DEBUG [13054]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:29:15.281 SQL [13054]: pgsql_db_connect() -- 18:29:15.285 DEBUG [13054]: Database connection successful -- 18:29:15.285 INFO [13054]: _SERVER found -- 18:29:15.285 INFO [13054]: REMOTE_ADDR = 192.168.1.13 -- 18:29:15.285 INFO [13054]: SERVER_NAME = oameye.works.coregrade.com -- 18:29:15.285 INFO [13054]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8k409aemb4hf0jk0r51hv4m88r9p4m9p -- 18:29:15.285 INFO [13054]: QUERY_STRING = /home/uploads/E5AB5CE0D4C24E4B9D968204658128F3/page/WhatEthernetCable.mp4 -- 18:29:15.285 INFO [13054]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:29:15.296 INFO [13054]: COREGRADE is stopping... -- 18:29:15.296 DEBUG [13054]: Closing database connection -- 18:29:15.296 SQL [13054]: pgsql_close() -- 18:33:29.565 INFO [13123]: COREGRADE is starting... -- 18:33:29.565 INFO [13123]: Version from config: 1.0 -- 18:33:29.565 DEBUG [13123]: Connecting to database... -- 18:33:29.565 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:33:29.565 SQL [13123]: pgsql_db_connect() -- 18:33:29.569 DEBUG [13123]: Database connection successful -- 18:33:29.569 INFO [13123]: _SERVER found -- 18:33:29.569 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 18:33:29.569 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 18:33:29.569 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8k409aemb4hf0jk0r51hv4m88r9p4m9p -- 18:33:29.569 INFO [13123]: QUERY_STRING = /member/page -- 18:33:29.569 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:33:29.617 INFO [13123]: COREGRADE is stopping... -- 18:33:29.617 DEBUG [13123]: Closing database connection -- 18:33:29.617 SQL [13123]: pgsql_close() -- 18:33:29.742 INFO [13123]: COREGRADE is starting... -- 18:33:29.743 INFO [13123]: Version from config: 1.0 -- 18:33:29.743 DEBUG [13123]: Connecting to database... -- 18:33:29.743 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:33:29.743 SQL [13123]: pgsql_db_connect() -- 18:33:29.747 DEBUG [13123]: Database connection successful -- 18:33:29.747 INFO [13123]: _SERVER found -- 18:33:29.747 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 18:33:29.747 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 18:33:29.747 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=odv0ksps2pqfftnhd6a7b0t7el2l8ppl -- 18:33:29.747 INFO [13123]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:33:29.747 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:33:29.758 INFO [13123]: COREGRADE is stopping... -- 18:33:29.758 DEBUG [13123]: Closing database connection -- 18:33:29.758 SQL [13123]: pgsql_close() -- 18:33:31.830 INFO [13123]: COREGRADE is starting... -- 18:33:31.830 INFO [13123]: Version from config: 1.0 -- 18:33:31.830 DEBUG [13123]: Connecting to database... -- 18:33:31.830 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:33:31.830 SQL [13123]: pgsql_db_connect() -- 18:33:31.834 DEBUG [13123]: Database connection successful -- 18:33:31.834 INFO [13123]: _SERVER found -- 18:33:31.834 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 18:33:31.834 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 18:33:31.834 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=odv0ksps2pqfftnhd6a7b0t7el2l8ppl -- 18:33:31.834 INFO [13123]: QUERY_STRING = /member/viewCardAddAction -- 18:33:31.834 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:33:31.869 INFO [13123]: COREGRADE is stopping... -- 18:33:31.869 DEBUG [13123]: Closing database connection -- 18:33:31.869 SQL [13123]: pgsql_close() -- 18:33:31.888 INFO [13123]: COREGRADE is starting... -- 18:33:31.888 INFO [13123]: Version from config: 1.0 -- 18:33:31.888 DEBUG [13123]: Connecting to database... -- 18:33:31.889 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:33:31.889 SQL [13123]: pgsql_db_connect() -- 18:33:31.892 DEBUG [13123]: Database connection successful -- 18:33:31.892 INFO [13123]: _SERVER found -- 18:33:31.892 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 18:33:31.892 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 18:33:31.892 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=odv0ksps2pqfftnhd6a7b0t7el2l8ppl -- 18:33:31.892 INFO [13123]: QUERY_STRING = /member/upload -- 18:33:31.892 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:33:31.927 INFO [13123]: COREGRADE is stopping... -- 18:33:31.927 DEBUG [13123]: Closing database connection -- 18:33:31.927 SQL [13123]: pgsql_close() -- 18:33:31.940 INFO [13123]: COREGRADE is starting... -- 18:33:31.940 INFO [13123]: Version from config: 1.0 -- 18:33:31.940 DEBUG [13123]: Connecting to database... -- 18:33:31.940 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:33:31.940 SQL [13123]: pgsql_db_connect() -- 18:33:31.944 DEBUG [13123]: Database connection successful -- 18:33:31.944 INFO [13123]: _SERVER found -- 18:33:31.944 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 18:33:31.944 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 18:33:31.944 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=odv0ksps2pqfftnhd6a7b0t7el2l8ppl -- 18:33:31.944 INFO [13123]: QUERY_STRING = /home/uploads/E5AB5CE0D4C24E4B9D968204658128F3/page/WhatEthernetCable.mp4 -- 18:33:31.944 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:33:31.955 INFO [13123]: COREGRADE is stopping... -- 18:33:31.955 DEBUG [13123]: Closing database connection -- 18:33:31.955 SQL [13123]: pgsql_close() -- 18:33:43.007 INFO [13052]: COREGRADE is starting... -- 18:33:43.007 INFO [13052]: Version from config: 1.0 -- 18:33:43.007 DEBUG [13052]: Connecting to database... -- 18:33:43.007 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:33:43.007 SQL [13052]: pgsql_db_connect() -- 18:33:43.011 DEBUG [13052]: Database connection successful -- 18:33:43.011 INFO [13052]: _SERVER found -- 18:33:43.011 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 18:33:43.011 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 18:33:43.011 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=odv0ksps2pqfftnhd6a7b0t7el2l8ppl -- 18:33:43.011 INFO [13052]: QUERY_STRING = /member/page -- 18:33:43.011 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:33:43.055 INFO [13052]: COREGRADE is stopping... -- 18:33:43.055 DEBUG [13052]: Closing database connection -- 18:33:43.055 SQL [13052]: pgsql_close() -- 18:33:43.476 INFO [13052]: COREGRADE is starting... -- 18:33:43.476 INFO [13052]: Version from config: 1.0 -- 18:33:43.476 DEBUG [13052]: Connecting to database... -- 18:33:43.476 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:33:43.476 SQL [13052]: pgsql_db_connect() -- 18:33:43.480 DEBUG [13052]: Database connection successful -- 18:33:43.480 INFO [13052]: _SERVER found -- 18:33:43.480 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 18:33:43.480 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 18:33:43.480 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=odv0ksps2pqfftnhd6a7b0t7el2l8ppl -- 18:33:43.480 INFO [13052]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:33:43.480 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:33:43.491 INFO [13052]: COREGRADE is stopping... -- 18:33:43.491 DEBUG [13052]: Closing database connection -- 18:33:43.491 SQL [13052]: pgsql_close() -- 18:33:47.119 INFO [13053]: COREGRADE is starting... -- 18:33:47.119 INFO [13053]: Version from config: 1.0 -- 18:33:47.119 DEBUG [13053]: Connecting to database... -- 18:33:47.119 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:33:47.119 SQL [13053]: pgsql_db_connect() -- 18:33:47.123 DEBUG [13053]: Database connection successful -- 18:33:47.123 INFO [13053]: _SERVER found -- 18:33:47.123 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 18:33:47.123 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 18:33:47.123 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=odv0ksps2pqfftnhd6a7b0t7el2l8ppl -- 18:33:47.123 INFO [13053]: QUERY_STRING = /member/viewCardAddAction -- 18:33:47.123 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:33:47.156 INFO [13053]: COREGRADE is stopping... -- 18:33:47.156 DEBUG [13053]: Closing database connection -- 18:33:47.156 SQL [13053]: pgsql_close() -- 18:33:47.186 INFO [13053]: COREGRADE is starting... -- 18:33:47.186 INFO [13053]: Version from config: 1.0 -- 18:33:47.186 DEBUG [13053]: Connecting to database... -- 18:33:47.186 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:33:47.186 SQL [13053]: pgsql_db_connect() -- 18:33:47.190 DEBUG [13053]: Database connection successful -- 18:33:47.190 INFO [13053]: _SERVER found -- 18:33:47.190 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 18:33:47.190 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 18:33:47.190 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=odv0ksps2pqfftnhd6a7b0t7el2l8ppl -- 18:33:47.190 INFO [13053]: QUERY_STRING = /member/upload -- 18:33:47.190 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:33:47.222 INFO [13053]: COREGRADE is stopping... -- 18:33:47.222 DEBUG [13053]: Closing database connection -- 18:33:47.222 SQL [13053]: pgsql_close() -- 18:33:47.233 INFO [13053]: COREGRADE is starting... -- 18:33:47.233 INFO [13053]: Version from config: 1.0 -- 18:33:47.233 DEBUG [13053]: Connecting to database... -- 18:33:47.233 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:33:47.233 SQL [13053]: pgsql_db_connect() -- 18:33:47.237 DEBUG [13053]: Database connection successful -- 18:33:47.237 INFO [13053]: _SERVER found -- 18:33:47.237 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 18:33:47.237 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 18:33:47.237 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=odv0ksps2pqfftnhd6a7b0t7el2l8ppl -- 18:33:47.237 INFO [13053]: QUERY_STRING = /home/uploads/E5AB5CE0D4C24E4B9D968204658128F3/page/WhatEthernetCable.mp4 -- 18:33:47.237 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:33:47.249 INFO [13053]: COREGRADE is stopping... -- 18:33:47.249 DEBUG [13053]: Closing database connection -- 18:33:47.249 SQL [13053]: pgsql_close() -- 18:35:29.882 INFO [13055]: COREGRADE is starting... -- 18:35:29.882 INFO [13055]: Version from config: 1.0 -- 18:35:29.882 DEBUG [13055]: Connecting to database... -- 18:35:29.882 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:35:29.882 SQL [13055]: pgsql_db_connect() -- 18:35:29.886 DEBUG [13055]: Database connection successful -- 18:35:29.886 INFO [13055]: _SERVER found -- 18:35:29.886 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 18:35:29.886 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 18:35:29.886 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=odv0ksps2pqfftnhd6a7b0t7el2l8ppl -- 18:35:29.886 INFO [13055]: QUERY_STRING = /member/page -- 18:35:29.886 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:35:29.929 INFO [13055]: COREGRADE is stopping... -- 18:35:29.929 DEBUG [13055]: Closing database connection -- 18:35:29.929 SQL [13055]: pgsql_close() -- 18:35:30.085 INFO [13055]: COREGRADE is starting... -- 18:35:30.085 INFO [13055]: Version from config: 1.0 -- 18:35:30.085 DEBUG [13055]: Connecting to database... -- 18:35:30.085 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:35:30.085 SQL [13055]: pgsql_db_connect() -- 18:35:30.089 DEBUG [13055]: Database connection successful -- 18:35:30.089 INFO [13055]: _SERVER found -- 18:35:30.089 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 18:35:30.089 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 18:35:30.089 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=odv0ksps2pqfftnhd6a7b0t7el2l8ppl -- 18:35:30.089 INFO [13055]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:35:30.089 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:35:30.100 INFO [13055]: COREGRADE is stopping... -- 18:35:30.100 DEBUG [13055]: Closing database connection -- 18:35:30.100 SQL [13055]: pgsql_close() -- 18:35:32.768 INFO [13055]: COREGRADE is starting... -- 18:35:32.769 INFO [13055]: Version from config: 1.0 -- 18:35:32.769 DEBUG [13055]: Connecting to database... -- 18:35:32.769 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:35:32.769 SQL [13055]: pgsql_db_connect() -- 18:35:32.773 DEBUG [13055]: Database connection successful -- 18:35:32.773 INFO [13055]: _SERVER found -- 18:35:32.773 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 18:35:32.773 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 18:35:32.773 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=odv0ksps2pqfftnhd6a7b0t7el2l8ppl -- 18:35:32.773 INFO [13055]: QUERY_STRING = /member/viewCardAddAction -- 18:35:32.773 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:35:32.804 INFO [13055]: COREGRADE is stopping... -- 18:35:32.804 DEBUG [13055]: Closing database connection -- 18:35:32.804 SQL [13055]: pgsql_close() -- 18:35:32.860 INFO [13055]: COREGRADE is starting... -- 18:35:32.860 INFO [13055]: Version from config: 1.0 -- 18:35:32.860 DEBUG [13055]: Connecting to database... -- 18:35:32.860 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:35:32.860 SQL [13055]: pgsql_db_connect() -- 18:35:32.864 DEBUG [13055]: Database connection successful -- 18:35:32.864 INFO [13055]: _SERVER found -- 18:35:32.864 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 18:35:32.864 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 18:35:32.864 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=odv0ksps2pqfftnhd6a7b0t7el2l8ppl -- 18:35:32.864 INFO [13055]: QUERY_STRING = /member/upload -- 18:35:32.864 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:35:32.902 INFO [13055]: COREGRADE is stopping... -- 18:35:32.902 DEBUG [13055]: Closing database connection -- 18:35:32.902 SQL [13055]: pgsql_close() -- 18:35:32.913 INFO [13055]: COREGRADE is starting... -- 18:35:32.914 INFO [13055]: Version from config: 1.0 -- 18:35:32.914 DEBUG [13055]: Connecting to database... -- 18:35:32.914 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:35:32.914 SQL [13055]: pgsql_db_connect() -- 18:35:32.917 DEBUG [13055]: Database connection successful -- 18:35:32.917 INFO [13055]: _SERVER found -- 18:35:32.917 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 18:35:32.917 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 18:35:32.917 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=odv0ksps2pqfftnhd6a7b0t7el2l8ppl -- 18:35:32.917 INFO [13055]: QUERY_STRING = /home/uploads/E5AB5CE0D4C24E4B9D968204658128F3/page/WhatEthernetCable.mp4 -- 18:35:32.917 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:35:32.929 INFO [13055]: COREGRADE is stopping... -- 18:35:32.929 DEBUG [13055]: Closing database connection -- 18:35:32.929 SQL [13055]: pgsql_close() -- 18:35:39.848 INFO [13054]: COREGRADE is starting... -- 18:35:39.848 INFO [13054]: Version from config: 1.0 -- 18:35:39.848 DEBUG [13054]: Connecting to database... -- 18:35:39.848 DEBUG [13054]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:35:39.848 SQL [13054]: pgsql_db_connect() -- 18:35:39.852 DEBUG [13054]: Database connection successful -- 18:35:39.852 INFO [13054]: _SERVER found -- 18:35:39.852 INFO [13054]: REMOTE_ADDR = 192.168.1.13 -- 18:35:39.852 INFO [13054]: SERVER_NAME = oameye.works.coregrade.com -- 18:35:39.852 INFO [13054]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=odv0ksps2pqfftnhd6a7b0t7el2l8ppl -- 18:35:39.852 INFO [13054]: QUERY_STRING = /member/page -- 18:35:39.852 INFO [13054]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:35:39.893 INFO [13054]: COREGRADE is stopping... -- 18:35:39.893 DEBUG [13054]: Closing database connection -- 18:35:39.893 SQL [13054]: pgsql_close() -- 18:35:40.200 INFO [13123]: COREGRADE is starting... -- 18:35:40.200 INFO [13123]: Version from config: 1.0 -- 18:35:40.200 DEBUG [13123]: Connecting to database... -- 18:35:40.200 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:35:40.200 SQL [13123]: pgsql_db_connect() -- 18:35:40.204 DEBUG [13123]: Database connection successful -- 18:35:40.204 INFO [13123]: _SERVER found -- 18:35:40.204 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 18:35:40.204 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 18:35:40.204 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=odv0ksps2pqfftnhd6a7b0t7el2l8ppl -- 18:35:40.204 INFO [13123]: QUERY_STRING = /member/page -- 18:35:40.204 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:35:40.248 INFO [13123]: COREGRADE is stopping... -- 18:35:40.248 DEBUG [13123]: Closing database connection -- 18:35:40.248 SQL [13123]: pgsql_close() -- 18:35:46.177 INFO [17227]: COREGRADE is starting... -- 18:35:46.177 INFO [17227]: Version from config: 1.0 -- 18:35:46.177 DEBUG [17227]: Connecting to database... -- 18:35:46.177 DEBUG [17227]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:35:46.177 SQL [17227]: pgsql_db_connect() -- 18:35:46.181 DEBUG [17227]: Database connection successful -- 18:35:46.181 INFO [17227]: _SERVER found -- 18:35:46.181 INFO [17227]: REMOTE_ADDR = 192.168.1.13 -- 18:35:46.181 INFO [17227]: SERVER_NAME = oameye.works.coregrade.com -- 18:35:46.181 INFO [17227]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=odv0ksps2pqfftnhd6a7b0t7el2l8ppl -- 18:35:46.181 INFO [17227]: QUERY_STRING = /member/upload -- 18:35:46.181 INFO [17227]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:35:46.221 INFO [17227]: COREGRADE is stopping... -- 18:35:46.221 DEBUG [17227]: Closing database connection -- 18:35:46.221 SQL [17227]: pgsql_close() -- 18:35:47.956 INFO [17227]: COREGRADE is starting... -- 18:35:47.956 INFO [17227]: Version from config: 1.0 -- 18:35:47.956 DEBUG [17227]: Connecting to database... -- 18:35:47.956 DEBUG [17227]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:35:47.956 SQL [17227]: pgsql_db_connect() -- 18:35:47.960 DEBUG [17227]: Database connection successful -- 18:35:47.960 INFO [17227]: _SERVER found -- 18:35:47.960 INFO [17227]: REMOTE_ADDR = 192.168.1.13 -- 18:35:47.960 INFO [17227]: SERVER_NAME = oameye.works.coregrade.com -- 18:35:47.960 INFO [17227]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=odv0ksps2pqfftnhd6a7b0t7el2l8ppl -- 18:35:47.960 INFO [17227]: QUERY_STRING = /member/page -- 18:35:47.960 INFO [17227]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:35:47.000 INFO [17227]: COREGRADE is stopping... -- 18:35:47.000 DEBUG [17227]: Closing database connection -- 18:35:47.000 SQL [17227]: pgsql_close() -- 18:36:14.183 INFO [17228]: COREGRADE is starting... -- 18:36:14.183 INFO [17228]: Version from config: 1.0 -- 18:36:14.183 DEBUG [17228]: Connecting to database... -- 18:36:14.183 DEBUG [17228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:36:14.183 SQL [17228]: pgsql_db_connect() -- 18:36:14.187 DEBUG [17228]: Database connection successful -- 18:36:14.187 INFO [17228]: _SERVER found -- 18:36:14.187 INFO [17228]: REMOTE_ADDR = 192.168.1.13 -- 18:36:14.187 INFO [17228]: SERVER_NAME = oameye.works.coregrade.com -- 18:36:14.187 INFO [17228]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=odv0ksps2pqfftnhd6a7b0t7el2l8ppl -- 18:36:14.187 INFO [17228]: QUERY_STRING = /member/page -- 18:36:14.187 INFO [17228]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:36:14.236 INFO [17228]: COREGRADE is stopping... -- 18:36:14.236 DEBUG [17228]: Closing database connection -- 18:36:14.236 SQL [17228]: pgsql_close() -- 18:36:14.524 INFO [13051]: COREGRADE is starting... -- 18:36:14.524 INFO [13051]: Version from config: 1.0 -- 18:36:14.524 DEBUG [13051]: Connecting to database... -- 18:36:14.524 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:36:14.524 SQL [13051]: pgsql_db_connect() -- 18:36:14.528 DEBUG [13051]: Database connection successful -- 18:36:14.528 INFO [13051]: _SERVER found -- 18:36:14.528 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 18:36:14.528 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 18:36:14.528 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=odv0ksps2pqfftnhd6a7b0t7el2l8ppl -- 18:36:14.528 INFO [13051]: QUERY_STRING = /member/page -- 18:36:14.528 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:36:14.569 INFO [13051]: COREGRADE is stopping... -- 18:36:14.569 DEBUG [13051]: Closing database connection -- 18:36:14.569 SQL [13051]: pgsql_close() -- 18:37:58.549 INFO [16100]: COREGRADE is starting... -- 18:37:58.550 INFO [16100]: Version from config: 1.0 -- 18:37:58.550 DEBUG [16100]: Connecting to database... -- 18:37:58.550 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:37:58.550 SQL [16100]: pgsql_db_connect() -- 18:37:58.554 DEBUG [16100]: Database connection successful -- 18:37:58.554 INFO [16100]: _SERVER found -- 18:37:58.554 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 18:37:58.554 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 18:37:58.554 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=odv0ksps2pqfftnhd6a7b0t7el2l8ppl -- 18:37:58.554 INFO [16100]: QUERY_STRING = /member/page -- 18:37:58.554 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:37:58.600 INFO [16100]: COREGRADE is stopping... -- 18:37:58.600 DEBUG [16100]: Closing database connection -- 18:37:58.600 SQL [16100]: pgsql_close() -- 18:37:58.717 INFO [16100]: COREGRADE is starting... -- 18:37:58.718 INFO [16100]: Version from config: 1.0 -- 18:37:58.718 DEBUG [16100]: Connecting to database... -- 18:37:58.718 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:37:58.718 SQL [16100]: pgsql_db_connect() -- 18:37:58.721 DEBUG [16100]: Database connection successful -- 18:37:58.721 INFO [16100]: _SERVER found -- 18:37:58.721 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 18:37:58.721 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 18:37:58.722 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=odv0ksps2pqfftnhd6a7b0t7el2l8ppl -- 18:37:58.722 INFO [16100]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:37:58.722 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:37:58.733 INFO [16100]: COREGRADE is stopping... -- 18:37:58.733 DEBUG [16100]: Closing database connection -- 18:37:58.733 SQL [16100]: pgsql_close() -- 18:38:01.843 INFO [16100]: COREGRADE is starting... -- 18:38:01.844 INFO [16100]: Version from config: 1.0 -- 18:38:01.844 DEBUG [16100]: Connecting to database... -- 18:38:01.844 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:38:01.844 SQL [16100]: pgsql_db_connect() -- 18:38:01.848 DEBUG [16100]: Database connection successful -- 18:38:01.848 INFO [16100]: _SERVER found -- 18:38:01.848 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 18:38:01.848 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 18:38:01.848 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=odv0ksps2pqfftnhd6a7b0t7el2l8ppl -- 18:38:01.848 INFO [16100]: QUERY_STRING = /member/viewCardAddAction -- 18:38:01.848 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:38:01.882 INFO [16100]: COREGRADE is stopping... -- 18:38:01.882 DEBUG [16100]: Closing database connection -- 18:38:01.882 SQL [16100]: pgsql_close() -- 18:38:01.899 INFO [16100]: COREGRADE is starting... -- 18:38:01.899 INFO [16100]: Version from config: 1.0 -- 18:38:01.899 DEBUG [16100]: Connecting to database... -- 18:38:01.899 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:38:01.899 SQL [16100]: pgsql_db_connect() -- 18:38:01.903 DEBUG [16100]: Database connection successful -- 18:38:01.903 INFO [16100]: _SERVER found -- 18:38:01.903 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 18:38:01.903 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 18:38:01.903 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=odv0ksps2pqfftnhd6a7b0t7el2l8ppl -- 18:38:01.903 INFO [16100]: QUERY_STRING = /member/upload -- 18:38:01.903 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:38:01.937 INFO [16100]: COREGRADE is stopping... -- 18:38:01.937 DEBUG [16100]: Closing database connection -- 18:38:01.937 SQL [16100]: pgsql_close() -- 18:38:01.951 INFO [16100]: COREGRADE is starting... -- 18:38:01.951 INFO [16100]: Version from config: 1.0 -- 18:38:01.951 DEBUG [16100]: Connecting to database... -- 18:38:01.951 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:38:01.951 SQL [16100]: pgsql_db_connect() -- 18:38:01.955 DEBUG [16100]: Database connection successful -- 18:38:01.955 INFO [16100]: _SERVER found -- 18:38:01.955 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 18:38:01.955 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 18:38:01.955 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=odv0ksps2pqfftnhd6a7b0t7el2l8ppl -- 18:38:01.955 INFO [16100]: QUERY_STRING = /home/uploads/E5AB5CE0D4C24E4B9D968204658128F3/page/WhatEthernetCable.mp4 -- 18:38:01.955 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:38:01.967 INFO [16100]: COREGRADE is stopping... -- 18:38:01.967 DEBUG [16100]: Closing database connection -- 18:38:01.967 SQL [16100]: pgsql_close() -- 18:38:36.552 INFO [16105]: COREGRADE is starting... -- 18:38:36.552 INFO [16105]: Version from config: 1.0 -- 18:38:36.552 DEBUG [16105]: Connecting to database... -- 18:38:36.552 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:38:36.552 SQL [16105]: pgsql_db_connect() -- 18:38:36.557 DEBUG [16105]: Database connection successful -- 18:38:36.557 INFO [16105]: _SERVER found -- 18:38:36.557 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 18:38:36.557 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 18:38:36.557 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=odv0ksps2pqfftnhd6a7b0t7el2l8ppl -- 18:38:36.557 INFO [16105]: QUERY_STRING = /member/page -- 18:38:36.557 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:38:36.598 INFO [16105]: COREGRADE is stopping... -- 18:38:36.598 DEBUG [16105]: Closing database connection -- 18:38:36.598 SQL [16105]: pgsql_close() -- 18:38:36.696 INFO [13052]: COREGRADE is starting... -- 18:38:36.696 INFO [13052]: Version from config: 1.0 -- 18:38:36.696 DEBUG [13052]: Connecting to database... -- 18:38:36.696 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:38:36.696 SQL [13052]: pgsql_db_connect() -- 18:38:36.700 DEBUG [13052]: Database connection successful -- 18:38:36.700 INFO [13052]: _SERVER found -- 18:38:36.700 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 18:38:36.700 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 18:38:36.700 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=odv0ksps2pqfftnhd6a7b0t7el2l8ppl -- 18:38:36.700 INFO [13052]: QUERY_STRING = /member/page -- 18:38:36.700 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:38:36.743 INFO [13052]: COREGRADE is stopping... -- 18:38:36.743 DEBUG [13052]: Closing database connection -- 18:38:36.743 SQL [13052]: pgsql_close() -- 18:39:10.651 INFO [13053]: COREGRADE is starting... -- 18:39:10.651 INFO [13053]: Version from config: 1.0 -- 18:39:10.651 DEBUG [13053]: Connecting to database... -- 18:39:10.651 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:10.651 SQL [13053]: pgsql_db_connect() -- 18:39:10.655 DEBUG [13053]: Database connection successful -- 18:39:10.655 INFO [13053]: _SERVER found -- 18:39:10.655 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 18:39:10.655 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:10.655 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=odv0ksps2pqfftnhd6a7b0t7el2l8ppl -- 18:39:10.655 INFO [13053]: QUERY_STRING = /member/viewCardAddAction -- 18:39:10.655 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:39:10.687 INFO [13053]: COREGRADE is stopping... -- 18:39:10.687 DEBUG [13053]: Closing database connection -- 18:39:10.687 SQL [13053]: pgsql_close() -- 18:39:10.716 INFO [13053]: COREGRADE is starting... -- 18:39:10.716 INFO [13053]: Version from config: 1.0 -- 18:39:10.716 DEBUG [13053]: Connecting to database... -- 18:39:10.716 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:10.716 SQL [13053]: pgsql_db_connect() -- 18:39:10.720 DEBUG [13053]: Database connection successful -- 18:39:10.720 INFO [13053]: _SERVER found -- 18:39:10.720 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 18:39:10.720 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:10.720 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=odv0ksps2pqfftnhd6a7b0t7el2l8ppl -- 18:39:10.720 INFO [13053]: QUERY_STRING = /member/upload -- 18:39:10.720 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:39:10.752 INFO [13053]: COREGRADE is stopping... -- 18:39:10.752 DEBUG [13053]: Closing database connection -- 18:39:10.752 SQL [13053]: pgsql_close() -- 18:39:10.775 INFO [13053]: COREGRADE is starting... -- 18:39:10.775 INFO [13053]: Version from config: 1.0 -- 18:39:10.775 DEBUG [13053]: Connecting to database... -- 18:39:10.775 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:10.775 SQL [13053]: pgsql_db_connect() -- 18:39:10.779 DEBUG [13053]: Database connection successful -- 18:39:10.779 INFO [13053]: _SERVER found -- 18:39:10.779 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 18:39:10.779 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:10.779 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=odv0ksps2pqfftnhd6a7b0t7el2l8ppl -- 18:39:10.779 INFO [13053]: QUERY_STRING = /home/uploads/E5AB5CE0D4C24E4B9D968204658128F3/page/WhatEthernetCable.mp4 -- 18:39:10.779 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:39:10.791 INFO [13053]: COREGRADE is stopping... -- 18:39:10.791 DEBUG [13053]: Closing database connection -- 18:39:10.791 SQL [13053]: pgsql_close() -- 18:39:20.295 INFO [13055]: COREGRADE is starting... -- 18:39:20.296 INFO [13055]: Version from config: 1.0 -- 18:39:20.296 DEBUG [13055]: Connecting to database... -- 18:39:20.296 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:20.296 SQL [13055]: pgsql_db_connect() -- 18:39:20.300 DEBUG [13055]: Database connection successful -- 18:39:20.300 INFO [13055]: _SERVER found -- 18:39:20.300 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 18:39:20.300 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:20.300 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=odv0ksps2pqfftnhd6a7b0t7el2l8ppl -- 18:39:20.300 INFO [13055]: QUERY_STRING = /member/viewCardAddAction -- 18:39:20.300 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:39:20.332 INFO [13055]: COREGRADE is stopping... -- 18:39:20.332 DEBUG [13055]: Closing database connection -- 18:39:20.332 SQL [13055]: pgsql_close() -- 18:39:21.014 INFO [13055]: COREGRADE is starting... -- 18:39:21.014 INFO [13055]: Version from config: 1.0 -- 18:39:21.014 DEBUG [13055]: Connecting to database... -- 18:39:21.014 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:21.014 SQL [13055]: pgsql_db_connect() -- 18:39:21.018 DEBUG [13055]: Database connection successful -- 18:39:21.018 INFO [13055]: _SERVER found -- 18:39:21.018 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 18:39:21.018 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:21.018 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=odv0ksps2pqfftnhd6a7b0t7el2l8ppl -- 18:39:21.018 INFO [13055]: QUERY_STRING = /member/viewCardAddAction -- 18:39:21.018 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:39:21.049 INFO [13055]: COREGRADE is stopping... -- 18:39:21.049 DEBUG [13055]: Closing database connection -- 18:39:21.049 SQL [13055]: pgsql_close() -- 18:39:21.076 INFO [13055]: COREGRADE is starting... -- 18:39:21.077 INFO [13055]: Version from config: 1.0 -- 18:39:21.077 DEBUG [13055]: Connecting to database... -- 18:39:21.077 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:21.077 SQL [13055]: pgsql_db_connect() -- 18:39:21.080 DEBUG [13055]: Database connection successful -- 18:39:21.080 INFO [13055]: _SERVER found -- 18:39:21.080 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 18:39:21.080 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:21.080 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=odv0ksps2pqfftnhd6a7b0t7el2l8ppl -- 18:39:21.080 INFO [13055]: QUERY_STRING = /member/upload -- 18:39:21.080 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:39:21.112 INFO [13055]: COREGRADE is stopping... -- 18:39:21.113 DEBUG [13055]: Closing database connection -- 18:39:21.113 SQL [13055]: pgsql_close() -- 18:39:21.125 INFO [13055]: COREGRADE is starting... -- 18:39:21.125 INFO [13055]: Version from config: 1.0 -- 18:39:21.125 DEBUG [13055]: Connecting to database... -- 18:39:21.125 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:21.125 SQL [13055]: pgsql_db_connect() -- 18:39:21.129 DEBUG [13055]: Database connection successful -- 18:39:21.129 INFO [13055]: _SERVER found -- 18:39:21.129 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 18:39:21.129 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:21.129 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=odv0ksps2pqfftnhd6a7b0t7el2l8ppl -- 18:39:21.129 INFO [13055]: QUERY_STRING = /home/uploads/E5AB5CE0D4C24E4B9D968204658128F3/page/WhatEthernetCable.mp4 -- 18:39:21.129 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:39:21.140 INFO [13055]: COREGRADE is stopping... -- 18:39:21.141 DEBUG [13055]: Closing database connection -- 18:39:21.141 SQL [13055]: pgsql_close() -- 18:39:26.839 INFO [13054]: COREGRADE is starting... -- 18:39:26.839 INFO [13054]: Version from config: 1.0 -- 18:39:26.839 DEBUG [13054]: Connecting to database... -- 18:39:26.839 DEBUG [13054]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:26.839 SQL [13054]: pgsql_db_connect() -- 18:39:26.843 DEBUG [13054]: Database connection successful -- 18:39:26.843 INFO [13054]: _SERVER found -- 18:39:26.843 INFO [13054]: REMOTE_ADDR = 192.168.1.13 -- 18:39:26.843 INFO [13054]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:26.843 INFO [13054]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=odv0ksps2pqfftnhd6a7b0t7el2l8ppl -- 18:39:26.843 INFO [13054]: QUERY_STRING = /member/page -- 18:39:26.843 INFO [13054]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:39:26.886 INFO [13054]: COREGRADE is stopping... -- 18:39:26.886 DEBUG [13054]: Closing database connection -- 18:39:26.886 SQL [13054]: pgsql_close() -- 18:39:27.004 INFO [13054]: COREGRADE is starting... -- 18:39:27.004 INFO [13054]: Version from config: 1.0 -- 18:39:27.004 DEBUG [13054]: Connecting to database... -- 18:39:27.004 DEBUG [13054]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:27.004 SQL [13054]: pgsql_db_connect() -- 18:39:27.008 DEBUG [13054]: Database connection successful -- 18:39:27.008 INFO [13054]: _SERVER found -- 18:39:27.008 INFO [13054]: REMOTE_ADDR = 192.168.1.13 -- 18:39:27.008 INFO [13054]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:27.008 INFO [13054]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=hevlog2q683d0pjel1rv6i7jq3k9binv -- 18:39:27.008 INFO [13054]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:39:27.008 INFO [13054]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:39:27.019 INFO [13054]: COREGRADE is stopping... -- 18:39:27.019 DEBUG [13054]: Closing database connection -- 18:39:27.019 SQL [13054]: pgsql_close() -- 18:39:29.600 INFO [13054]: COREGRADE is starting... -- 18:39:29.600 INFO [13054]: Version from config: 1.0 -- 18:39:29.600 DEBUG [13054]: Connecting to database... -- 18:39:29.600 DEBUG [13054]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:29.600 SQL [13054]: pgsql_db_connect() -- 18:39:29.604 DEBUG [13054]: Database connection successful -- 18:39:29.604 INFO [13054]: _SERVER found -- 18:39:29.604 INFO [13054]: REMOTE_ADDR = 192.168.1.13 -- 18:39:29.604 INFO [13054]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:29.604 INFO [13054]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=hevlog2q683d0pjel1rv6i7jq3k9binv -- 18:39:29.604 INFO [13054]: QUERY_STRING = /member/viewCardAddAction -- 18:39:29.604 INFO [13054]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:39:29.635 INFO [13054]: COREGRADE is stopping... -- 18:39:29.635 DEBUG [13054]: Closing database connection -- 18:39:29.635 SQL [13054]: pgsql_close() -- 18:39:29.668 INFO [13054]: COREGRADE is starting... -- 18:39:29.668 INFO [13054]: Version from config: 1.0 -- 18:39:29.668 DEBUG [13054]: Connecting to database... -- 18:39:29.668 DEBUG [13054]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:29.668 SQL [13054]: pgsql_db_connect() -- 18:39:29.672 DEBUG [13054]: Database connection successful -- 18:39:29.672 INFO [13054]: _SERVER found -- 18:39:29.672 INFO [13054]: REMOTE_ADDR = 192.168.1.13 -- 18:39:29.672 INFO [13054]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:29.672 INFO [13054]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=hevlog2q683d0pjel1rv6i7jq3k9binv -- 18:39:29.672 INFO [13054]: QUERY_STRING = /member/upload -- 18:39:29.672 INFO [13054]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:39:29.709 INFO [13054]: COREGRADE is stopping... -- 18:39:29.709 DEBUG [13054]: Closing database connection -- 18:39:29.709 SQL [13054]: pgsql_close() -- 18:39:29.724 INFO [13054]: COREGRADE is starting... -- 18:39:29.724 INFO [13054]: Version from config: 1.0 -- 18:39:29.724 DEBUG [13054]: Connecting to database... -- 18:39:29.724 DEBUG [13054]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:29.724 SQL [13054]: pgsql_db_connect() -- 18:39:29.728 DEBUG [13054]: Database connection successful -- 18:39:29.728 INFO [13054]: _SERVER found -- 18:39:29.728 INFO [13054]: REMOTE_ADDR = 192.168.1.13 -- 18:39:29.728 INFO [13054]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:29.728 INFO [13054]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=hevlog2q683d0pjel1rv6i7jq3k9binv -- 18:39:29.728 INFO [13054]: QUERY_STRING = /home/uploads/E5AB5CE0D4C24E4B9D968204658128F3/page/WhatEthernetCable.mp4 -- 18:39:29.728 INFO [13054]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:39:29.739 INFO [13054]: COREGRADE is stopping... -- 18:39:29.739 DEBUG [13054]: Closing database connection -- 18:39:29.739 SQL [13054]: pgsql_close() -- 18:40:07.355 INFO [13123]: COREGRADE is starting... -- 18:40:07.355 INFO [13123]: Version from config: 1.0 -- 18:40:07.355 DEBUG [13123]: Connecting to database... -- 18:40:07.355 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:40:07.355 SQL [13123]: pgsql_db_connect() -- 18:40:07.359 DEBUG [13123]: Database connection successful -- 18:40:07.359 INFO [13123]: _SERVER found -- 18:40:07.359 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 18:40:07.359 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 18:40:07.359 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=hevlog2q683d0pjel1rv6i7jq3k9binv -- 18:40:07.359 INFO [13123]: QUERY_STRING = /member/page -- 18:40:07.359 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:40:07.403 INFO [13123]: COREGRADE is stopping... -- 18:40:07.403 DEBUG [13123]: Closing database connection -- 18:40:07.403 SQL [13123]: pgsql_close() -- 18:40:07.657 INFO [17227]: COREGRADE is starting... -- 18:40:07.657 INFO [17227]: Version from config: 1.0 -- 18:40:07.657 DEBUG [17227]: Connecting to database... -- 18:40:07.657 DEBUG [17227]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:40:07.657 SQL [17227]: pgsql_db_connect() -- 18:40:07.661 DEBUG [17227]: Database connection successful -- 18:40:07.661 INFO [17227]: _SERVER found -- 18:40:07.661 INFO [17227]: REMOTE_ADDR = 192.168.1.13 -- 18:40:07.661 INFO [17227]: SERVER_NAME = oameye.works.coregrade.com -- 18:40:07.661 INFO [17227]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=hevlog2q683d0pjel1rv6i7jq3k9binv -- 18:40:07.661 INFO [17227]: QUERY_STRING = /member/page -- 18:40:07.661 INFO [17227]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:40:07.701 INFO [17227]: COREGRADE is stopping... -- 18:40:07.701 DEBUG [17227]: Closing database connection -- 18:40:07.701 SQL [17227]: pgsql_close() -- 18:40:13.121 INFO [17228]: COREGRADE is starting... -- 18:40:13.121 INFO [17228]: Version from config: 1.0 -- 18:40:13.121 DEBUG [17228]: Connecting to database... -- 18:40:13.121 DEBUG [17228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:40:13.121 SQL [17228]: pgsql_db_connect() -- 18:40:13.125 DEBUG [17228]: Database connection successful -- 18:40:13.125 INFO [17228]: _SERVER found -- 18:40:13.125 INFO [17228]: REMOTE_ADDR = 192.168.1.13 -- 18:40:13.125 INFO [17228]: SERVER_NAME = oameye.works.coregrade.com -- 18:40:13.125 INFO [17228]: QUERY_STRING = /TP/public/index.php -- 18:40:13.125 INFO [17228]: HTTP_X_FORWARDED_FOR = 130.61.82.118 -- 18:40:13.137 INFO [17228]: COREGRADE is stopping... -- 18:40:13.137 DEBUG [17228]: Closing database connection -- 18:40:13.137 SQL [17228]: pgsql_close() -- 18:40:13.802 INFO [13051]: COREGRADE is starting... -- 18:40:13.803 INFO [13051]: Version from config: 1.0 -- 18:40:13.803 DEBUG [13051]: Connecting to database... -- 18:40:13.803 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:40:13.803 SQL [13051]: pgsql_db_connect() -- 18:40:13.806 DEBUG [13051]: Database connection successful -- 18:40:13.806 INFO [13051]: _SERVER found -- 18:40:13.806 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 18:40:13.806 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 18:40:13.806 INFO [13051]: QUERY_STRING = /TP/index.php -- 18:40:13.806 INFO [13051]: HTTP_X_FORWARDED_FOR = 130.61.82.118 -- 18:40:13.818 INFO [13051]: COREGRADE is stopping... -- 18:40:13.818 DEBUG [13051]: Closing database connection -- 18:40:13.818 SQL [13051]: pgsql_close() -- 18:40:14.479 INFO [16100]: COREGRADE is starting... -- 18:40:14.480 INFO [16100]: Version from config: 1.0 -- 18:40:14.480 DEBUG [16100]: Connecting to database... -- 18:40:14.480 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:40:14.480 SQL [16100]: pgsql_db_connect() -- 18:40:14.484 DEBUG [16100]: Database connection successful -- 18:40:14.484 INFO [16100]: _SERVER found -- 18:40:14.484 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 18:40:14.484 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 18:40:14.484 INFO [16100]: QUERY_STRING = /thinkphp/html/public/index.php -- 18:40:14.484 INFO [16100]: HTTP_X_FORWARDED_FOR = 130.61.82.118 -- 18:40:14.495 INFO [16100]: COREGRADE is stopping... -- 18:40:14.495 DEBUG [16100]: Closing database connection -- 18:40:14.495 SQL [16100]: pgsql_close() -- 18:40:15.140 INFO [17228]: COREGRADE is starting... -- 18:40:15.140 INFO [17228]: Version from config: 1.0 -- 18:40:15.140 DEBUG [17228]: Connecting to database... -- 18:40:15.140 DEBUG [17228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:40:15.140 SQL [17228]: pgsql_db_connect() -- 18:40:15.144 DEBUG [17228]: Database connection successful -- 18:40:15.144 INFO [17228]: _SERVER found -- 18:40:15.144 INFO [17228]: REMOTE_ADDR = 192.168.1.13 -- 18:40:15.144 INFO [17228]: SERVER_NAME = oameye.works.coregrade.com -- 18:40:15.144 INFO [17228]: QUERY_STRING = /html/public/index.php -- 18:40:15.144 INFO [17228]: HTTP_X_FORWARDED_FOR = 130.61.82.118 -- 18:40:15.155 INFO [17228]: COREGRADE is stopping... -- 18:40:15.155 DEBUG [17228]: Closing database connection -- 18:40:15.155 SQL [17228]: pgsql_close() -- 18:40:15.825 INFO [13051]: COREGRADE is starting... -- 18:40:15.826 INFO [13051]: Version from config: 1.0 -- 18:40:15.826 DEBUG [13051]: Connecting to database... -- 18:40:15.826 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:40:15.826 SQL [13051]: pgsql_db_connect() -- 18:40:15.830 DEBUG [13051]: Database connection successful -- 18:40:15.830 INFO [13051]: _SERVER found -- 18:40:15.830 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 18:40:15.830 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 18:40:15.830 INFO [13051]: QUERY_STRING = /public/index.php -- 18:40:15.830 INFO [13051]: HTTP_X_FORWARDED_FOR = 130.61.82.118 -- 18:40:15.841 INFO [13051]: COREGRADE is stopping... -- 18:40:15.841 DEBUG [13051]: Closing database connection -- 18:40:15.841 SQL [13051]: pgsql_close() -- 18:40:16.516 INFO [17228]: COREGRADE is starting... -- 18:40:16.517 INFO [17228]: Version from config: 1.0 -- 18:40:16.517 DEBUG [17228]: Connecting to database... -- 18:40:16.517 DEBUG [17228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:40:16.517 SQL [17228]: pgsql_db_connect() -- 18:40:16.521 DEBUG [17228]: Database connection successful -- 18:40:16.521 INFO [17228]: _SERVER found -- 18:40:16.521 INFO [17228]: REMOTE_ADDR = 192.168.1.13 -- 18:40:16.521 INFO [17228]: SERVER_NAME = oameye.works.coregrade.com -- 18:40:16.521 INFO [17228]: QUERY_STRING = /TP/html/public/index.php -- 18:40:16.521 INFO [17228]: HTTP_X_FORWARDED_FOR = 130.61.82.118 -- 18:40:16.532 INFO [17228]: COREGRADE is stopping... -- 18:40:16.532 DEBUG [17228]: Closing database connection -- 18:40:16.532 SQL [17228]: pgsql_close() -- 18:40:17.176 INFO [17228]: COREGRADE is starting... -- 18:40:17.176 INFO [17228]: Version from config: 1.0 -- 18:40:17.176 DEBUG [17228]: Connecting to database... -- 18:40:17.176 DEBUG [17228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:40:17.176 SQL [17228]: pgsql_db_connect() -- 18:40:17.180 DEBUG [17228]: Database connection successful -- 18:40:17.180 INFO [17228]: _SERVER found -- 18:40:17.180 INFO [17228]: REMOTE_ADDR = 192.168.1.13 -- 18:40:17.180 INFO [17228]: SERVER_NAME = oameye.works.coregrade.com -- 18:40:17.180 INFO [17228]: QUERY_STRING = /elrekt.php -- 18:40:17.180 INFO [17228]: HTTP_X_FORWARDED_FOR = 130.61.82.118 -- 18:40:17.191 INFO [17228]: COREGRADE is stopping... -- 18:40:17.192 DEBUG [17228]: Closing database connection -- 18:40:17.192 SQL [17228]: pgsql_close() -- 18:40:17.835 INFO [17228]: COREGRADE is starting... -- 18:40:17.836 INFO [17228]: Version from config: 1.0 -- 18:40:17.836 DEBUG [17228]: Connecting to database... -- 18:40:17.836 DEBUG [17228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:40:17.836 SQL [17228]: pgsql_db_connect() -- 18:40:17.840 DEBUG [17228]: Database connection successful -- 18:40:17.840 INFO [17228]: _SERVER found -- 18:40:17.840 INFO [17228]: REMOTE_ADDR = 192.168.1.13 -- 18:40:17.840 INFO [17228]: SERVER_NAME = oameye.works.coregrade.com -- 18:40:17.840 INFO [17228]: QUERY_STRING = -- 18:40:17.840 INFO [17228]: HTTP_X_FORWARDED_FOR = 130.61.82.118 -- 18:40:17.878 INFO [17228]: COREGRADE is stopping... -- 18:40:17.878 DEBUG [17228]: Closing database connection -- 18:40:17.878 SQL [17228]: pgsql_close() -- 18:40:18.526 INFO [17228]: COREGRADE is starting... -- 18:40:18.527 INFO [17228]: Version from config: 1.0 -- 18:40:18.527 DEBUG [17228]: Connecting to database... -- 18:40:18.527 DEBUG [17228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:40:18.527 SQL [17228]: pgsql_db_connect() -- 18:40:18.531 DEBUG [17228]: Database connection successful -- 18:40:18.531 INFO [17228]: _SERVER found -- 18:40:18.531 INFO [17228]: REMOTE_ADDR = 192.168.1.13 -- 18:40:18.531 INFO [17228]: SERVER_NAME = oameye.works.coregrade.com -- 18:40:18.531 INFO [17228]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 18:40:18.531 INFO [17228]: HTTP_X_FORWARDED_FOR = 130.61.82.118 -- 18:40:18.562 INFO [17228]: COREGRADE is stopping... -- 18:40:18.562 DEBUG [17228]: Closing database connection -- 18:40:18.562 SQL [17228]: pgsql_close() -- 18:40:19.210 INFO [17228]: COREGRADE is starting... -- 18:40:19.210 INFO [17228]: Version from config: 1.0 -- 18:40:19.210 DEBUG [17228]: Connecting to database... -- 18:40:19.210 DEBUG [17228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:40:19.210 SQL [17228]: pgsql_db_connect() -- 18:40:19.214 DEBUG [17228]: Database connection successful -- 18:40:19.214 INFO [17228]: _SERVER found -- 18:40:19.214 INFO [17228]: REMOTE_ADDR = 192.168.1.13 -- 18:40:19.214 INFO [17228]: SERVER_NAME = oameye.works.coregrade.com -- 18:40:19.214 INFO [17228]: QUERY_STRING = s=captcha -- 18:40:19.214 INFO [17228]: HTTP_X_FORWARDED_FOR = 130.61.82.118 -- 18:40:19.245 INFO [17228]: COREGRADE is stopping... -- 18:40:19.245 DEBUG [17228]: Closing database connection -- 18:40:19.245 SQL [17228]: pgsql_close() -- 18:40:19.959 INFO [17228]: COREGRADE is starting... -- 18:40:19.959 INFO [17228]: Version from config: 1.0 -- 18:40:19.959 DEBUG [17228]: Connecting to database... -- 18:40:19.959 DEBUG [17228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:40:19.959 SQL [17228]: pgsql_db_connect() -- 18:40:19.963 DEBUG [17228]: Database connection successful -- 18:40:19.963 INFO [17228]: _SERVER found -- 18:40:19.963 INFO [17228]: REMOTE_ADDR = 192.168.1.13 -- 18:40:19.963 INFO [17228]: SERVER_NAME = oameye.works.coregrade.com -- 18:40:19.963 INFO [17228]: QUERY_STRING = -- 18:40:19.963 INFO [17228]: HTTP_X_FORWARDED_FOR = 130.61.82.118 -- 18:40:19.995 INFO [17228]: COREGRADE is stopping... -- 18:40:19.995 DEBUG [17228]: Closing database connection -- 18:40:19.995 SQL [17228]: pgsql_close() -- 18:41:36.167 INFO [16105]: COREGRADE is starting... -- 18:41:36.167 INFO [16105]: Version from config: 1.0 -- 18:41:36.167 DEBUG [16105]: Connecting to database... -- 18:41:36.167 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:41:36.167 SQL [16105]: pgsql_db_connect() -- 18:41:36.171 DEBUG [16105]: Database connection successful -- 18:41:36.171 INFO [16105]: _SERVER found -- 18:41:36.171 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 18:41:36.171 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 18:41:36.171 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=hevlog2q683d0pjel1rv6i7jq3k9binv -- 18:41:36.171 INFO [16105]: QUERY_STRING = s=index/\\think\\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 18:41:36.171 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:41:36.208 INFO [16105]: COREGRADE is stopping... -- 18:41:36.208 DEBUG [16105]: Closing database connection -- 18:41:36.208 SQL [16105]: pgsql_close() -- 18:41:36.860 INFO [13053]: COREGRADE is starting... -- 18:41:36.861 INFO [13053]: Version from config: 1.0 -- 18:41:36.861 DEBUG [13053]: Connecting to database... -- 18:41:36.861 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:41:36.861 SQL [13053]: pgsql_db_connect() -- 18:41:36.865 DEBUG [13053]: Database connection successful -- 18:41:36.865 INFO [13053]: _SERVER found -- 18:41:36.865 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 18:41:36.865 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 18:41:36.865 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=hevlog2q683d0pjel1rv6i7jq3k9binv; _gat_gtag_UA_54829827_2=1 -- 18:41:36.865 INFO [13053]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:41:36.865 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:41:36.876 INFO [13053]: COREGRADE is stopping... -- 18:41:36.876 DEBUG [13053]: Closing database connection -- 18:41:36.876 SQL [13053]: pgsql_close() -- 18:41:36.916 INFO [13053]: COREGRADE is starting... -- 18:41:36.917 INFO [13053]: Version from config: 1.0 -- 18:41:36.917 DEBUG [13053]: Connecting to database... -- 18:41:36.917 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:41:36.917 SQL [13053]: pgsql_db_connect() -- 18:41:36.921 DEBUG [13053]: Database connection successful -- 18:41:36.921 INFO [13053]: _SERVER found -- 18:41:36.921 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 18:41:36.921 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 18:41:36.921 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=hevlog2q683d0pjel1rv6i7jq3k9binv; _gat_gtag_UA_54829827_2=1 -- 18:41:36.921 INFO [13053]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:41:36.921 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:41:36.932 INFO [13053]: COREGRADE is stopping... -- 18:41:36.932 DEBUG [13053]: Closing database connection -- 18:41:36.932 SQL [13053]: pgsql_close() -- 18:42:19.527 INFO [13123]: COREGRADE is starting... -- 18:42:19.527 INFO [13123]: Version from config: 1.0 -- 18:42:19.527 DEBUG [13123]: Connecting to database... -- 18:42:19.527 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:42:19.527 SQL [13123]: pgsql_db_connect() -- 18:42:19.531 DEBUG [13123]: Database connection successful -- 18:42:19.531 INFO [13123]: _SERVER found -- 18:42:19.531 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 18:42:19.531 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 18:42:19.531 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=hevlog2q683d0pjel1rv6i7jq3k9binv; _gat_gtag_UA_54829827_2=1 -- 18:42:19.531 INFO [13123]: QUERY_STRING = /member/page -- 18:42:19.531 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:42:19.575 INFO [13123]: COREGRADE is stopping... -- 18:42:19.575 DEBUG [13123]: Closing database connection -- 18:42:19.575 SQL [13123]: pgsql_close() -- 18:42:19.588 INFO [17227]: COREGRADE is starting... -- 18:42:19.588 INFO [17227]: Version from config: 1.0 -- 18:42:19.588 DEBUG [17227]: Connecting to database... -- 18:42:19.588 DEBUG [17227]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:42:19.588 SQL [17227]: pgsql_db_connect() -- 18:42:19.592 DEBUG [17227]: Database connection successful -- 18:42:19.592 INFO [17227]: _SERVER found -- 18:42:19.592 INFO [17227]: REMOTE_ADDR = 192.168.1.13 -- 18:42:19.592 INFO [17227]: SERVER_NAME = oameye.works.coregrade.com -- 18:42:19.592 INFO [17227]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=hevlog2q683d0pjel1rv6i7jq3k9binv; _gat_gtag_UA_54829827_2=1 -- 18:42:19.592 INFO [17227]: QUERY_STRING = /member/page -- 18:42:19.592 INFO [17227]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:42:19.632 INFO [17227]: COREGRADE is stopping... -- 18:42:19.632 DEBUG [17227]: Closing database connection -- 18:42:19.632 SQL [17227]: pgsql_close() -- 18:43:48.477 INFO [16100]: COREGRADE is starting... -- 18:43:48.477 INFO [16100]: Version from config: 1.0 -- 18:43:48.477 DEBUG [16100]: Connecting to database... -- 18:43:48.477 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:43:48.477 SQL [16100]: pgsql_db_connect() -- 18:43:48.481 DEBUG [16100]: Database connection successful -- 18:43:48.481 INFO [16100]: _SERVER found -- 18:43:48.481 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 18:43:48.481 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 18:43:48.481 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=hevlog2q683d0pjel1rv6i7jq3k9binv -- 18:43:48.481 INFO [16100]: QUERY_STRING = /member/page -- 18:43:48.481 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:43:48.528 INFO [16100]: COREGRADE is stopping... -- 18:43:48.528 DEBUG [16100]: Closing database connection -- 18:43:48.528 SQL [16100]: pgsql_close() -- 18:43:48.664 INFO [16100]: COREGRADE is starting... -- 18:43:48.664 INFO [16100]: Version from config: 1.0 -- 18:43:48.664 DEBUG [16100]: Connecting to database... -- 18:43:48.664 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:43:48.664 SQL [16100]: pgsql_db_connect() -- 18:43:48.668 DEBUG [16100]: Database connection successful -- 18:43:48.668 INFO [16100]: _SERVER found -- 18:43:48.668 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 18:43:48.668 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 18:43:48.668 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=hevlog2q683d0pjel1rv6i7jq3k9binv -- 18:43:48.668 INFO [16100]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:43:48.668 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:43:48.679 INFO [16100]: COREGRADE is stopping... -- 18:43:48.679 DEBUG [16100]: Closing database connection -- 18:43:48.679 SQL [16100]: pgsql_close() -- 18:43:53.681 INFO [16100]: COREGRADE is starting... -- 18:43:53.681 INFO [16100]: Version from config: 1.0 -- 18:43:53.681 DEBUG [16100]: Connecting to database... -- 18:43:53.681 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:43:53.681 SQL [16100]: pgsql_db_connect() -- 18:43:53.685 DEBUG [16100]: Database connection successful -- 18:43:53.685 INFO [16100]: _SERVER found -- 18:43:53.685 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 18:43:53.685 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 18:43:53.685 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=hevlog2q683d0pjel1rv6i7jq3k9binv -- 18:43:53.685 INFO [16100]: QUERY_STRING = /member/viewCardAddAction -- 18:43:53.685 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:43:53.719 INFO [16100]: COREGRADE is stopping... -- 18:43:53.719 DEBUG [16100]: Closing database connection -- 18:43:53.719 SQL [16100]: pgsql_close() -- 18:44:02.181 INFO [13051]: COREGRADE is starting... -- 18:44:02.181 INFO [13051]: Version from config: 1.0 -- 18:44:02.181 DEBUG [13051]: Connecting to database... -- 18:44:02.181 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:44:02.181 SQL [13051]: pgsql_db_connect() -- 18:44:02.185 DEBUG [13051]: Database connection successful -- 18:44:02.185 INFO [13051]: _SERVER found -- 18:44:02.185 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 18:44:02.185 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 18:44:02.185 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=hevlog2q683d0pjel1rv6i7jq3k9binv -- 18:44:02.185 INFO [13051]: QUERY_STRING = /member/page -- 18:44:02.185 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:44:02.228 INFO [13051]: COREGRADE is stopping... -- 18:44:02.228 DEBUG [13051]: Closing database connection -- 18:44:02.228 SQL [13051]: pgsql_close() -- 18:44:02.374 INFO [13051]: COREGRADE is starting... -- 18:44:02.374 INFO [13051]: Version from config: 1.0 -- 18:44:02.374 DEBUG [13051]: Connecting to database... -- 18:44:02.374 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:44:02.374 SQL [13051]: pgsql_db_connect() -- 18:44:02.378 DEBUG [13051]: Database connection successful -- 18:44:02.378 INFO [13051]: _SERVER found -- 18:44:02.378 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 18:44:02.378 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 18:44:02.378 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=hevlog2q683d0pjel1rv6i7jq3k9binv -- 18:44:02.378 INFO [13051]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:44:02.378 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:44:02.389 INFO [13051]: COREGRADE is stopping... -- 18:44:02.389 DEBUG [13051]: Closing database connection -- 18:44:02.389 SQL [13051]: pgsql_close() -- 18:44:05.048 INFO [13051]: COREGRADE is starting... -- 18:44:05.049 INFO [13051]: Version from config: 1.0 -- 18:44:05.049 DEBUG [13051]: Connecting to database... -- 18:44:05.049 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:44:05.049 SQL [13051]: pgsql_db_connect() -- 18:44:05.053 DEBUG [13051]: Database connection successful -- 18:44:05.053 INFO [13051]: _SERVER found -- 18:44:05.053 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 18:44:05.053 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 18:44:05.053 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=hevlog2q683d0pjel1rv6i7jq3k9binv -- 18:44:05.053 INFO [13051]: QUERY_STRING = /member/viewCardAddAction -- 18:44:05.053 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:44:05.084 INFO [13051]: COREGRADE is stopping... -- 18:44:05.084 DEBUG [13051]: Closing database connection -- 18:44:05.084 SQL [13051]: pgsql_close() -- 18:45:27.694 INFO [17228]: COREGRADE is starting... -- 18:45:27.694 INFO [17228]: Version from config: 1.0 -- 18:45:27.694 DEBUG [17228]: Connecting to database... -- 18:45:27.694 DEBUG [17228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:45:27.694 SQL [17228]: pgsql_db_connect() -- 18:45:27.698 DEBUG [17228]: Database connection successful -- 18:45:27.698 INFO [17228]: _SERVER found -- 18:45:27.698 INFO [17228]: REMOTE_ADDR = 192.168.1.13 -- 18:45:27.698 INFO [17228]: SERVER_NAME = oameye.works.coregrade.com -- 18:45:27.698 INFO [17228]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=hevlog2q683d0pjel1rv6i7jq3k9binv -- 18:45:27.698 INFO [17228]: QUERY_STRING = /member/page -- 18:45:27.698 INFO [17228]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:45:27.742 INFO [17228]: COREGRADE is stopping... -- 18:45:27.742 DEBUG [17228]: Closing database connection -- 18:45:27.742 SQL [17228]: pgsql_close() -- 18:45:27.902 INFO [17228]: COREGRADE is starting... -- 18:45:27.902 INFO [17228]: Version from config: 1.0 -- 18:45:27.902 DEBUG [17228]: Connecting to database... -- 18:45:27.902 DEBUG [17228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:45:27.902 SQL [17228]: pgsql_db_connect() -- 18:45:27.906 DEBUG [17228]: Database connection successful -- 18:45:27.906 INFO [17228]: _SERVER found -- 18:45:27.906 INFO [17228]: REMOTE_ADDR = 192.168.1.13 -- 18:45:27.906 INFO [17228]: SERVER_NAME = oameye.works.coregrade.com -- 18:45:27.906 INFO [17228]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=dasjqp981orkf1ums6ale2a5bj4qkk4n -- 18:45:27.906 INFO [17228]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:45:27.906 INFO [17228]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:45:27.917 INFO [17228]: COREGRADE is stopping... -- 18:45:27.917 DEBUG [17228]: Closing database connection -- 18:45:27.917 SQL [17228]: pgsql_close() -- 18:45:30.270 INFO [17228]: COREGRADE is starting... -- 18:45:30.271 INFO [17228]: Version from config: 1.0 -- 18:45:30.271 DEBUG [17228]: Connecting to database... -- 18:45:30.271 DEBUG [17228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:45:30.271 SQL [17228]: pgsql_db_connect() -- 18:45:30.275 DEBUG [17228]: Database connection successful -- 18:45:30.275 INFO [17228]: _SERVER found -- 18:45:30.275 INFO [17228]: REMOTE_ADDR = 192.168.1.13 -- 18:45:30.275 INFO [17228]: SERVER_NAME = oameye.works.coregrade.com -- 18:45:30.275 INFO [17228]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=dasjqp981orkf1ums6ale2a5bj4qkk4n -- 18:45:30.275 INFO [17228]: QUERY_STRING = /member/viewCardAddAction -- 18:45:30.275 INFO [17228]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:45:30.306 INFO [17228]: COREGRADE is stopping... -- 18:45:30.306 DEBUG [17228]: Closing database connection -- 18:45:30.306 SQL [17228]: pgsql_close() -- 18:45:30.325 INFO [17228]: COREGRADE is starting... -- 18:45:30.325 INFO [17228]: Version from config: 1.0 -- 18:45:30.325 DEBUG [17228]: Connecting to database... -- 18:45:30.325 DEBUG [17228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:45:30.325 SQL [17228]: pgsql_db_connect() -- 18:45:30.329 DEBUG [17228]: Database connection successful -- 18:45:30.329 INFO [17228]: _SERVER found -- 18:45:30.329 INFO [17228]: REMOTE_ADDR = 192.168.1.13 -- 18:45:30.329 INFO [17228]: SERVER_NAME = oameye.works.coregrade.com -- 18:45:30.329 INFO [17228]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=dasjqp981orkf1ums6ale2a5bj4qkk4n -- 18:45:30.329 INFO [17228]: QUERY_STRING = /member/upload -- 18:45:30.329 INFO [17228]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:45:30.367 INFO [17228]: COREGRADE is stopping... -- 18:45:30.367 DEBUG [17228]: Closing database connection -- 18:45:30.367 SQL [17228]: pgsql_close() -- 18:45:30.382 INFO [17228]: COREGRADE is starting... -- 18:45:30.382 INFO [17228]: Version from config: 1.0 -- 18:45:30.382 DEBUG [17228]: Connecting to database... -- 18:45:30.382 DEBUG [17228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:45:30.382 SQL [17228]: pgsql_db_connect() -- 18:45:30.386 DEBUG [17228]: Database connection successful -- 18:45:30.386 INFO [17228]: _SERVER found -- 18:45:30.386 INFO [17228]: REMOTE_ADDR = 192.168.1.13 -- 18:45:30.386 INFO [17228]: SERVER_NAME = oameye.works.coregrade.com -- 18:45:30.386 INFO [17228]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=dasjqp981orkf1ums6ale2a5bj4qkk4n -- 18:45:30.386 INFO [17228]: QUERY_STRING = /home/uploads/E5AB5CE0D4C24E4B9D968204658128F3/page/WhatEthernetCable.mp4 -- 18:45:30.386 INFO [17228]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:45:30.397 INFO [17228]: COREGRADE is stopping... -- 18:45:30.398 DEBUG [17228]: Closing database connection -- 18:45:30.398 SQL [17228]: pgsql_close() -- 18:46:40.861 INFO [13055]: COREGRADE is starting... -- 18:46:40.861 INFO [13055]: Version from config: 1.0 -- 18:46:40.861 DEBUG [13055]: Connecting to database... -- 18:46:40.861 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:46:40.861 SQL [13055]: pgsql_db_connect() -- 18:46:40.865 DEBUG [13055]: Database connection successful -- 18:46:40.866 INFO [13055]: _SERVER found -- 18:46:40.866 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 18:46:40.866 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 18:46:40.866 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=dasjqp981orkf1ums6ale2a5bj4qkk4n -- 18:46:40.866 INFO [13055]: QUERY_STRING = /mermber/upload -- 18:46:40.866 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:46:40.878 INFO [13055]: COREGRADE is stopping... -- 18:46:40.878 DEBUG [13055]: Closing database connection -- 18:46:40.878 SQL [13055]: pgsql_close() -- 18:46:41.080 INFO [13052]: COREGRADE is starting... -- 18:46:41.080 INFO [13052]: Version from config: 1.0 -- 18:46:41.080 DEBUG [13052]: Connecting to database... -- 18:46:41.080 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:46:41.080 SQL [13052]: pgsql_db_connect() -- 18:46:41.085 DEBUG [13052]: Database connection successful -- 18:46:41.085 INFO [13052]: _SERVER found -- 18:46:41.085 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 18:46:41.085 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 18:46:41.085 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=dasjqp981orkf1ums6ale2a5bj4qkk4n -- 18:46:41.085 INFO [13052]: QUERY_STRING = /mermber/upload -- 18:46:41.085 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:46:41.096 INFO [13052]: COREGRADE is stopping... -- 18:46:41.096 DEBUG [13052]: Closing database connection -- 18:46:41.096 SQL [13052]: pgsql_close() -- 18:51:04.325 INFO [16105]: COREGRADE is starting... -- 18:51:04.325 INFO [16105]: Version from config: 1.0 -- 18:51:04.325 DEBUG [16105]: Connecting to database... -- 18:51:04.325 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:04.325 SQL [16105]: pgsql_db_connect() -- 18:51:04.329 DEBUG [16105]: Database connection successful -- 18:51:04.329 INFO [16105]: _SERVER found -- 18:51:04.329 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 18:51:04.329 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:04.329 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=dasjqp981orkf1ums6ale2a5bj4qkk4n -- 18:51:04.329 INFO [16105]: QUERY_STRING = /member/viewCardAddAction -- 18:51:04.329 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:04.363 INFO [16105]: COREGRADE is stopping... -- 18:51:04.363 DEBUG [16105]: Closing database connection -- 18:51:04.363 SQL [16105]: pgsql_close() -- 18:51:04.392 INFO [16105]: COREGRADE is starting... -- 18:51:04.392 INFO [16105]: Version from config: 1.0 -- 18:51:04.392 DEBUG [16105]: Connecting to database... -- 18:51:04.392 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:04.392 SQL [16105]: pgsql_db_connect() -- 18:51:04.396 DEBUG [16105]: Database connection successful -- 18:51:04.396 INFO [16105]: _SERVER found -- 18:51:04.396 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 18:51:04.396 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:04.396 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=dasjqp981orkf1ums6ale2a5bj4qkk4n -- 18:51:04.396 INFO [16105]: QUERY_STRING = /member/upload -- 18:51:04.396 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:04.428 INFO [16105]: COREGRADE is stopping... -- 18:51:04.428 DEBUG [16105]: Closing database connection -- 18:51:04.428 SQL [16105]: pgsql_close() -- 18:51:04.448 INFO [16105]: COREGRADE is starting... -- 18:51:04.448 INFO [16105]: Version from config: 1.0 -- 18:51:04.448 DEBUG [16105]: Connecting to database... -- 18:51:04.448 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:04.448 SQL [16105]: pgsql_db_connect() -- 18:51:04.452 DEBUG [16105]: Database connection successful -- 18:51:04.452 INFO [16105]: _SERVER found -- 18:51:04.452 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 18:51:04.452 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:04.452 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=dasjqp981orkf1ums6ale2a5bj4qkk4n -- 18:51:04.452 INFO [16105]: QUERY_STRING = /home/uploads/E5AB5CE0D4C24E4B9D968204658128F3/page/WhatEthernetCable.mp4 -- 18:51:04.452 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:04.463 INFO [16105]: COREGRADE is stopping... -- 18:51:04.463 DEBUG [16105]: Closing database connection -- 18:51:04.463 SQL [16105]: pgsql_close() -- 18:51:07.949 INFO [16105]: COREGRADE is starting... -- 18:51:07.949 INFO [16105]: Version from config: 1.0 -- 18:51:07.949 DEBUG [16105]: Connecting to database... -- 18:51:07.949 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:07.949 SQL [16105]: pgsql_db_connect() -- 18:51:07.953 DEBUG [16105]: Database connection successful -- 18:51:07.953 INFO [16105]: _SERVER found -- 18:51:07.953 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 18:51:07.953 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:07.953 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=dasjqp981orkf1ums6ale2a5bj4qkk4n -- 18:51:07.953 INFO [16105]: QUERY_STRING = /member/viewCardAddAction -- 18:51:07.953 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:07.984 INFO [16105]: COREGRADE is stopping... -- 18:51:07.984 DEBUG [16105]: Closing database connection -- 18:51:07.984 SQL [16105]: pgsql_close() -- 18:51:08.537 INFO [16105]: COREGRADE is starting... -- 18:51:08.537 INFO [16105]: Version from config: 1.0 -- 18:51:08.538 DEBUG [16105]: Connecting to database... -- 18:51:08.538 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:08.538 SQL [16105]: pgsql_db_connect() -- 18:51:08.541 DEBUG [16105]: Database connection successful -- 18:51:08.542 INFO [16105]: _SERVER found -- 18:51:08.542 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 18:51:08.542 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:08.542 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=dasjqp981orkf1ums6ale2a5bj4qkk4n -- 18:51:08.542 INFO [16105]: QUERY_STRING = /member/viewCardAddAction -- 18:51:08.542 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:08.573 INFO [16105]: COREGRADE is stopping... -- 18:51:08.573 DEBUG [16105]: Closing database connection -- 18:51:08.573 SQL [16105]: pgsql_close() -- 18:51:08.592 INFO [16105]: COREGRADE is starting... -- 18:51:08.593 INFO [16105]: Version from config: 1.0 -- 18:51:08.593 DEBUG [16105]: Connecting to database... -- 18:51:08.593 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:08.593 SQL [16105]: pgsql_db_connect() -- 18:51:08.596 DEBUG [16105]: Database connection successful -- 18:51:08.596 INFO [16105]: _SERVER found -- 18:51:08.596 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 18:51:08.596 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:08.596 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=dasjqp981orkf1ums6ale2a5bj4qkk4n -- 18:51:08.596 INFO [16105]: QUERY_STRING = /member/upload -- 18:51:08.596 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:08.628 INFO [16105]: COREGRADE is stopping... -- 18:51:08.628 DEBUG [16105]: Closing database connection -- 18:51:08.628 SQL [16105]: pgsql_close() -- 18:51:08.641 INFO [16105]: COREGRADE is starting... -- 18:51:08.641 INFO [16105]: Version from config: 1.0 -- 18:51:08.641 DEBUG [16105]: Connecting to database... -- 18:51:08.641 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:08.642 SQL [16105]: pgsql_db_connect() -- 18:51:08.645 DEBUG [16105]: Database connection successful -- 18:51:08.645 INFO [16105]: _SERVER found -- 18:51:08.645 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 18:51:08.645 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:08.645 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=dasjqp981orkf1ums6ale2a5bj4qkk4n -- 18:51:08.645 INFO [16105]: QUERY_STRING = /home/uploads/E5AB5CE0D4C24E4B9D968204658128F3/page/WhatEthernetCable.mp4 -- 18:51:08.645 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:08.657 INFO [16105]: COREGRADE is stopping... -- 18:51:08.657 DEBUG [16105]: Closing database connection -- 18:51:08.657 SQL [16105]: pgsql_close() -- 18:51:11.605 INFO [16105]: COREGRADE is starting... -- 18:51:11.605 INFO [16105]: Version from config: 1.0 -- 18:51:11.605 DEBUG [16105]: Connecting to database... -- 18:51:11.605 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:11.605 SQL [16105]: pgsql_db_connect() -- 18:51:11.609 DEBUG [16105]: Database connection successful -- 18:51:11.609 INFO [16105]: _SERVER found -- 18:51:11.609 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 18:51:11.609 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:11.609 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=dasjqp981orkf1ums6ale2a5bj4qkk4n -- 18:51:11.609 INFO [16105]: QUERY_STRING = /member/page -- 18:51:11.609 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:11.651 INFO [16105]: COREGRADE is stopping... -- 18:51:11.651 DEBUG [16105]: Closing database connection -- 18:51:11.651 SQL [16105]: pgsql_close() -- 18:51:11.765 INFO [16105]: COREGRADE is starting... -- 18:51:11.766 INFO [16105]: Version from config: 1.0 -- 18:51:11.766 DEBUG [16105]: Connecting to database... -- 18:51:11.766 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:11.766 SQL [16105]: pgsql_db_connect() -- 18:51:11.770 DEBUG [16105]: Database connection successful -- 18:51:11.770 INFO [16105]: _SERVER found -- 18:51:11.770 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 18:51:11.770 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:11.770 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5bgj3ooe09dnq1culkq44mqh8hrflre -- 18:51:11.770 INFO [16105]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:51:11.770 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:11.781 INFO [16105]: COREGRADE is stopping... -- 18:51:11.781 DEBUG [16105]: Closing database connection -- 18:51:11.781 SQL [16105]: pgsql_close() -- 18:51:14.237 INFO [16105]: COREGRADE is starting... -- 18:51:14.237 INFO [16105]: Version from config: 1.0 -- 18:51:14.237 DEBUG [16105]: Connecting to database... -- 18:51:14.237 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:14.237 SQL [16105]: pgsql_db_connect() -- 18:51:14.241 DEBUG [16105]: Database connection successful -- 18:51:14.241 INFO [16105]: _SERVER found -- 18:51:14.241 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 18:51:14.241 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:14.241 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5bgj3ooe09dnq1culkq44mqh8hrflre -- 18:51:14.241 INFO [16105]: QUERY_STRING = /member/viewCardAddAction -- 18:51:14.241 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:14.272 INFO [16105]: COREGRADE is stopping... -- 18:51:14.272 DEBUG [16105]: Closing database connection -- 18:51:14.272 SQL [16105]: pgsql_close() -- 18:51:14.288 INFO [16105]: COREGRADE is starting... -- 18:51:14.288 INFO [16105]: Version from config: 1.0 -- 18:51:14.288 DEBUG [16105]: Connecting to database... -- 18:51:14.288 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:14.288 SQL [16105]: pgsql_db_connect() -- 18:51:14.292 DEBUG [16105]: Database connection successful -- 18:51:14.292 INFO [16105]: _SERVER found -- 18:51:14.292 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 18:51:14.292 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:14.292 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5bgj3ooe09dnq1culkq44mqh8hrflre -- 18:51:14.292 INFO [16105]: QUERY_STRING = /member/upload -- 18:51:14.292 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:14.330 INFO [16105]: COREGRADE is stopping... -- 18:51:14.330 DEBUG [16105]: Closing database connection -- 18:51:14.330 SQL [16105]: pgsql_close() -- 18:51:14.342 INFO [16105]: COREGRADE is starting... -- 18:51:14.342 INFO [16105]: Version from config: 1.0 -- 18:51:14.342 DEBUG [16105]: Connecting to database... -- 18:51:14.342 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:14.342 SQL [16105]: pgsql_db_connect() -- 18:51:14.346 DEBUG [16105]: Database connection successful -- 18:51:14.346 INFO [16105]: _SERVER found -- 18:51:14.346 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 18:51:14.346 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:14.346 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5bgj3ooe09dnq1culkq44mqh8hrflre -- 18:51:14.346 INFO [16105]: QUERY_STRING = /home/uploads/E5AB5CE0D4C24E4B9D968204658128F3/page/WhatEthernetCable.mp4 -- 18:51:14.346 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:14.358 INFO [16105]: COREGRADE is stopping... -- 18:51:14.358 DEBUG [16105]: Closing database connection -- 18:51:14.358 SQL [16105]: pgsql_close() -- 18:51:21.093 INFO [13054]: COREGRADE is starting... -- 18:51:21.093 INFO [13054]: Version from config: 1.0 -- 18:51:21.093 DEBUG [13054]: Connecting to database... -- 18:51:21.093 DEBUG [13054]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:21.093 SQL [13054]: pgsql_db_connect() -- 18:51:21.097 DEBUG [13054]: Database connection successful -- 18:51:21.097 INFO [13054]: _SERVER found -- 18:51:21.097 INFO [13054]: REMOTE_ADDR = 192.168.1.13 -- 18:51:21.097 INFO [13054]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:21.097 INFO [13054]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5bgj3ooe09dnq1culkq44mqh8hrflre -- 18:51:21.097 INFO [13054]: QUERY_STRING = /member/upload -- 18:51:21.097 INFO [13054]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:21.191 INFO [13054]: COREGRADE is stopping... -- 18:51:21.191 DEBUG [13054]: Closing database connection -- 18:51:21.191 SQL [13054]: pgsql_close() -- 18:51:21.412 INFO [13053]: COREGRADE is starting... -- 18:51:21.412 INFO [13053]: Version from config: 1.0 -- 18:51:21.412 DEBUG [13053]: Connecting to database... -- 18:51:21.412 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:21.412 SQL [13053]: pgsql_db_connect() -- 18:51:21.416 DEBUG [13053]: Database connection successful -- 18:51:21.416 INFO [13053]: _SERVER found -- 18:51:21.416 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 18:51:21.416 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:21.416 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5bgj3ooe09dnq1culkq44mqh8hrflre -- 18:51:21.416 INFO [13053]: QUERY_STRING = /member/upload -- 18:51:21.416 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:51:21.486 INFO [13053]: COREGRADE is stopping... -- 18:51:21.486 DEBUG [13053]: Closing database connection -- 18:51:21.486 SQL [13053]: pgsql_close() -- 18:53:40.095 INFO [13123]: COREGRADE is starting... -- 18:53:40.096 INFO [13123]: Version from config: 1.0 -- 18:53:40.096 DEBUG [13123]: Connecting to database... -- 18:53:40.096 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:53:40.096 SQL [13123]: pgsql_db_connect() -- 18:53:40.100 DEBUG [13123]: Database connection successful -- 18:53:40.100 INFO [13123]: _SERVER found -- 18:53:40.100 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 18:53:40.100 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 18:53:40.100 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5bgj3ooe09dnq1culkq44mqh8hrflre -- 18:53:40.100 INFO [13123]: QUERY_STRING = /member/page -- 18:53:40.100 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:53:40.149 INFO [13123]: COREGRADE is stopping... -- 18:53:40.149 DEBUG [13123]: Closing database connection -- 18:53:40.149 SQL [13123]: pgsql_close() -- 18:53:40.256 INFO [13123]: COREGRADE is starting... -- 18:53:40.257 INFO [13123]: Version from config: 1.0 -- 18:53:40.257 DEBUG [13123]: Connecting to database... -- 18:53:40.257 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:53:40.257 SQL [13123]: pgsql_db_connect() -- 18:53:40.261 DEBUG [13123]: Database connection successful -- 18:53:40.261 INFO [13123]: _SERVER found -- 18:53:40.261 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 18:53:40.261 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 18:53:40.261 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5bgj3ooe09dnq1culkq44mqh8hrflre -- 18:53:40.261 INFO [13123]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:53:40.261 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:53:40.273 INFO [13123]: COREGRADE is stopping... -- 18:53:40.273 DEBUG [13123]: Closing database connection -- 18:53:40.273 SQL [13123]: pgsql_close() -- 18:53:42.731 INFO [13123]: COREGRADE is starting... -- 18:53:42.731 INFO [13123]: Version from config: 1.0 -- 18:53:42.731 DEBUG [13123]: Connecting to database... -- 18:53:42.731 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:53:42.731 SQL [13123]: pgsql_db_connect() -- 18:53:42.736 DEBUG [13123]: Database connection successful -- 18:53:42.736 INFO [13123]: _SERVER found -- 18:53:42.736 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 18:53:42.736 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 18:53:42.736 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5bgj3ooe09dnq1culkq44mqh8hrflre -- 18:53:42.736 INFO [13123]: QUERY_STRING = /member/viewCardAddAction -- 18:53:42.736 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:53:42.772 INFO [13123]: COREGRADE is stopping... -- 18:53:42.772 DEBUG [13123]: Closing database connection -- 18:53:42.772 SQL [13123]: pgsql_close() -- 18:53:42.792 INFO [13123]: COREGRADE is starting... -- 18:53:42.793 INFO [13123]: Version from config: 1.0 -- 18:53:42.793 DEBUG [13123]: Connecting to database... -- 18:53:42.793 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:53:42.793 SQL [13123]: pgsql_db_connect() -- 18:53:42.797 DEBUG [13123]: Database connection successful -- 18:53:42.797 INFO [13123]: _SERVER found -- 18:53:42.797 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 18:53:42.797 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 18:53:42.797 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5bgj3ooe09dnq1culkq44mqh8hrflre -- 18:53:42.797 INFO [13123]: QUERY_STRING = /member/upload -- 18:53:42.797 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:53:42.834 INFO [13123]: COREGRADE is stopping... -- 18:53:42.834 DEBUG [13123]: Closing database connection -- 18:53:42.834 SQL [13123]: pgsql_close() -- 18:53:49.858 INFO [17227]: COREGRADE is starting... -- 18:53:49.858 INFO [17227]: Version from config: 1.0 -- 18:53:49.858 DEBUG [17227]: Connecting to database... -- 18:53:49.858 DEBUG [17227]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:53:49.858 SQL [17227]: pgsql_db_connect() -- 18:53:50.099 INFO [16100]: COREGRADE is starting... -- 18:53:50.099 INFO [16100]: Version from config: 1.0 -- 18:53:50.099 DEBUG [16100]: Connecting to database... -- 18:53:50.099 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:53:50.099 SQL [16100]: pgsql_db_connect() -- 18:53:49.863 DEBUG [17227]: Database connection successful -- 18:53:49.863 INFO [17227]: _SERVER found -- 18:53:49.863 INFO [17227]: REMOTE_ADDR = 192.168.1.13 -- 18:53:49.863 INFO [17227]: SERVER_NAME = oameye.works.coregrade.com -- 18:53:49.863 INFO [17227]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5bgj3ooe09dnq1culkq44mqh8hrflre -- 18:53:49.863 INFO [17227]: QUERY_STRING = /member/upload -- 18:53:49.863 INFO [17227]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:53:50.206 INFO [17227]: COREGRADE is stopping... -- 18:53:50.206 DEBUG [17227]: Closing database connection -- 18:53:50.206 SQL [17227]: pgsql_close() -- 18:53:50.104 DEBUG [16100]: Database connection successful -- 18:53:50.104 INFO [16100]: _SERVER found -- 18:53:50.104 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 18:53:50.104 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 18:53:50.104 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5bgj3ooe09dnq1culkq44mqh8hrflre -- 18:53:50.104 INFO [16100]: QUERY_STRING = /member/upload -- 18:53:50.104 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:53:50.241 INFO [16100]: COREGRADE is stopping... -- 18:53:50.241 DEBUG [16100]: Closing database connection -- 18:53:50.241 SQL [16100]: pgsql_close() -- 18:55:07.186 INFO [13051]: COREGRADE is starting... -- 18:55:07.186 INFO [13051]: Version from config: 1.0 -- 18:55:07.186 DEBUG [13051]: Connecting to database... -- 18:55:07.186 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:07.186 SQL [13051]: pgsql_db_connect() -- 18:55:07.191 DEBUG [13051]: Database connection successful -- 18:55:07.191 INFO [13051]: _SERVER found -- 18:55:07.191 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 18:55:07.191 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 18:55:07.191 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5bgj3ooe09dnq1culkq44mqh8hrflre -- 18:55:07.191 INFO [13051]: QUERY_STRING = /member/page -- 18:55:07.191 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:55:07.236 INFO [13051]: COREGRADE is stopping... -- 18:55:07.236 DEBUG [13051]: Closing database connection -- 18:55:07.236 SQL [13051]: pgsql_close() -- 18:55:07.346 INFO [13051]: COREGRADE is starting... -- 18:55:07.347 INFO [13051]: Version from config: 1.0 -- 18:55:07.347 DEBUG [13051]: Connecting to database... -- 18:55:07.347 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:07.347 SQL [13051]: pgsql_db_connect() -- 18:55:07.351 DEBUG [13051]: Database connection successful -- 18:55:07.351 INFO [13051]: _SERVER found -- 18:55:07.351 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 18:55:07.351 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 18:55:07.351 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5bgj3ooe09dnq1culkq44mqh8hrflre -- 18:55:07.351 INFO [13051]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:55:07.351 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:55:07.363 INFO [13051]: COREGRADE is stopping... -- 18:55:07.363 DEBUG [13051]: Closing database connection -- 18:55:07.363 SQL [13051]: pgsql_close() -- 18:55:10.139 INFO [13051]: COREGRADE is starting... -- 18:55:10.139 INFO [13051]: Version from config: 1.0 -- 18:55:10.139 DEBUG [13051]: Connecting to database... -- 18:55:10.139 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:10.139 SQL [13051]: pgsql_db_connect() -- 18:55:10.144 DEBUG [13051]: Database connection successful -- 18:55:10.144 INFO [13051]: _SERVER found -- 18:55:10.144 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 18:55:10.144 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 18:55:10.144 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5bgj3ooe09dnq1culkq44mqh8hrflre -- 18:55:10.144 INFO [13051]: QUERY_STRING = /member/viewCardAddAction -- 18:55:10.144 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:55:10.176 INFO [13051]: COREGRADE is stopping... -- 18:55:10.176 DEBUG [13051]: Closing database connection -- 18:55:10.176 SQL [13051]: pgsql_close() -- 18:55:10.196 INFO [13051]: COREGRADE is starting... -- 18:55:10.196 INFO [13051]: Version from config: 1.0 -- 18:55:10.196 DEBUG [13051]: Connecting to database... -- 18:55:10.196 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:10.196 SQL [13051]: pgsql_db_connect() -- 18:55:10.201 DEBUG [13051]: Database connection successful -- 18:55:10.201 INFO [13051]: _SERVER found -- 18:55:10.201 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 18:55:10.201 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 18:55:10.201 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5bgj3ooe09dnq1culkq44mqh8hrflre -- 18:55:10.201 INFO [13051]: QUERY_STRING = /member/upload -- 18:55:10.201 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:55:10.234 INFO [13051]: COREGRADE is stopping... -- 18:55:10.234 DEBUG [13051]: Closing database connection -- 18:55:10.234 SQL [13051]: pgsql_close() -- 18:55:15.988 INFO [17228]: COREGRADE is starting... -- 18:55:15.988 INFO [17228]: Version from config: 1.0 -- 18:55:15.988 DEBUG [17228]: Connecting to database... -- 18:55:15.989 DEBUG [17228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:15.989 SQL [17228]: pgsql_db_connect() -- 18:55:15.994 DEBUG [17228]: Database connection successful -- 18:55:15.994 INFO [17228]: _SERVER found -- 18:55:15.994 INFO [17228]: REMOTE_ADDR = 192.168.1.13 -- 18:55:15.994 INFO [17228]: SERVER_NAME = oameye.works.coregrade.com -- 18:55:15.994 INFO [17228]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5bgj3ooe09dnq1culkq44mqh8hrflre -- 18:55:15.994 INFO [17228]: QUERY_STRING = /member/upload -- 18:55:15.994 INFO [17228]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:55:16.037 INFO [17228]: COREGRADE is stopping... -- 18:55:16.037 DEBUG [17228]: Closing database connection -- 18:55:16.037 SQL [17228]: pgsql_close() -- 18:55:16.294 INFO [13055]: COREGRADE is starting... -- 18:55:16.294 INFO [13055]: Version from config: 1.0 -- 18:55:16.294 DEBUG [13055]: Connecting to database... -- 18:55:16.294 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:55:16.294 SQL [13055]: pgsql_db_connect() -- 18:55:16.299 DEBUG [13055]: Database connection successful -- 18:55:16.299 INFO [13055]: _SERVER found -- 18:55:16.299 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 18:55:16.299 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 18:55:16.299 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5bgj3ooe09dnq1culkq44mqh8hrflre -- 18:55:16.299 INFO [13055]: QUERY_STRING = /member/upload -- 18:55:16.299 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:55:16.383 INFO [13055]: COREGRADE is stopping... -- 18:55:16.383 DEBUG [13055]: Closing database connection -- 18:55:16.383 SQL [13055]: pgsql_close() -- 18:56:28.058 INFO [13052]: COREGRADE is starting... -- 18:56:28.058 INFO [13052]: Version from config: 1.0 -- 18:56:28.058 DEBUG [13052]: Connecting to database... -- 18:56:28.058 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:56:28.058 SQL [13052]: pgsql_db_connect() -- 18:56:28.063 DEBUG [13052]: Database connection successful -- 18:56:28.063 INFO [13052]: _SERVER found -- 18:56:28.063 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 18:56:28.063 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 18:56:28.063 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5bgj3ooe09dnq1culkq44mqh8hrflre -- 18:56:28.063 INFO [13052]: QUERY_STRING = /member/page -- 18:56:28.063 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:56:28.110 INFO [13052]: COREGRADE is stopping... -- 18:56:28.110 DEBUG [13052]: Closing database connection -- 18:56:28.110 SQL [13052]: pgsql_close() -- 18:56:28.227 INFO [13052]: COREGRADE is starting... -- 18:56:28.227 INFO [13052]: Version from config: 1.0 -- 18:56:28.227 DEBUG [13052]: Connecting to database... -- 18:56:28.227 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:56:28.227 SQL [13052]: pgsql_db_connect() -- 18:56:28.232 DEBUG [13052]: Database connection successful -- 18:56:28.232 INFO [13052]: _SERVER found -- 18:56:28.232 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 18:56:28.232 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 18:56:28.232 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=edoqb2qgf17vrm8oqutfv6l9c4eh1sjg -- 18:56:28.232 INFO [13052]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:56:28.232 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:56:28.243 INFO [13052]: COREGRADE is stopping... -- 18:56:28.243 DEBUG [13052]: Closing database connection -- 18:56:28.243 SQL [13052]: pgsql_close() -- 18:56:30.969 INFO [13052]: COREGRADE is starting... -- 18:56:30.969 INFO [13052]: Version from config: 1.0 -- 18:56:30.969 DEBUG [13052]: Connecting to database... -- 18:56:30.969 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:56:30.969 SQL [13052]: pgsql_db_connect() -- 18:56:30.974 DEBUG [13052]: Database connection successful -- 18:56:30.974 INFO [13052]: _SERVER found -- 18:56:30.974 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 18:56:30.974 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 18:56:30.974 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=edoqb2qgf17vrm8oqutfv6l9c4eh1sjg -- 18:56:30.974 INFO [13052]: QUERY_STRING = /member/viewCardAddAction -- 18:56:30.974 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:56:31.010 INFO [13052]: COREGRADE is stopping... -- 18:56:31.011 DEBUG [13052]: Closing database connection -- 18:56:31.011 SQL [13052]: pgsql_close() -- 18:56:31.032 INFO [13052]: COREGRADE is starting... -- 18:56:31.033 INFO [13052]: Version from config: 1.0 -- 18:56:31.033 DEBUG [13052]: Connecting to database... -- 18:56:31.033 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:56:31.033 SQL [13052]: pgsql_db_connect() -- 18:56:31.037 DEBUG [13052]: Database connection successful -- 18:56:31.037 INFO [13052]: _SERVER found -- 18:56:31.037 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 18:56:31.037 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 18:56:31.037 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=edoqb2qgf17vrm8oqutfv6l9c4eh1sjg -- 18:56:31.037 INFO [13052]: QUERY_STRING = /member/upload -- 18:56:31.037 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:56:31.073 INFO [13052]: COREGRADE is stopping... -- 18:56:31.073 DEBUG [13052]: Closing database connection -- 18:56:31.073 SQL [13052]: pgsql_close() -- 18:56:38.340 INFO [16105]: COREGRADE is starting... -- 18:56:38.341 INFO [16105]: Version from config: 1.0 -- 18:56:38.341 DEBUG [16105]: Connecting to database... -- 18:56:38.341 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:56:38.341 SQL [16105]: pgsql_db_connect() -- 18:56:38.588 INFO [13054]: COREGRADE is starting... -- 18:56:38.588 INFO [13054]: Version from config: 1.0 -- 18:56:38.588 DEBUG [13054]: Connecting to database... -- 18:56:38.588 DEBUG [13054]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:56:38.588 SQL [13054]: pgsql_db_connect() -- 18:56:38.345 DEBUG [16105]: Database connection successful -- 18:56:38.345 INFO [16105]: _SERVER found -- 18:56:38.345 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 18:56:38.345 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 18:56:38.345 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=edoqb2qgf17vrm8oqutfv6l9c4eh1sjg -- 18:56:38.345 INFO [16105]: QUERY_STRING = /member/upload -- 18:56:38.345 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:56:38.683 INFO [16105]: COREGRADE is stopping... -- 18:56:38.684 DEBUG [16105]: Closing database connection -- 18:56:38.684 SQL [16105]: pgsql_close() -- 18:56:38.593 DEBUG [13054]: Database connection successful -- 18:56:38.593 INFO [13054]: _SERVER found -- 18:56:38.593 INFO [13054]: REMOTE_ADDR = 192.168.1.13 -- 18:56:38.593 INFO [13054]: SERVER_NAME = oameye.works.coregrade.com -- 18:56:38.593 INFO [13054]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=edoqb2qgf17vrm8oqutfv6l9c4eh1sjg -- 18:56:38.593 INFO [13054]: QUERY_STRING = /member/upload -- 18:56:38.593 INFO [13054]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:56:38.719 INFO [13054]: COREGRADE is stopping... -- 18:56:38.719 DEBUG [13054]: Closing database connection -- 18:56:38.719 SQL [13054]: pgsql_close() -- 18:58:18.292 INFO [13053]: COREGRADE is starting... -- 18:58:18.292 INFO [13053]: Version from config: 1.0 -- 18:58:18.292 DEBUG [13053]: Connecting to database... -- 18:58:18.292 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:58:18.292 SQL [13053]: pgsql_db_connect() -- 18:58:18.296 DEBUG [13053]: Database connection successful -- 18:58:18.296 INFO [13053]: _SERVER found -- 18:58:18.296 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 18:58:18.296 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 18:58:18.296 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=edoqb2qgf17vrm8oqutfv6l9c4eh1sjg -- 18:58:18.296 INFO [13053]: QUERY_STRING = /member/page -- 18:58:18.296 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:58:18.339 INFO [13053]: COREGRADE is stopping... -- 18:58:18.339 DEBUG [13053]: Closing database connection -- 18:58:18.339 SQL [13053]: pgsql_close() -- 18:58:18.440 INFO [13053]: COREGRADE is starting... -- 18:58:18.440 INFO [13053]: Version from config: 1.0 -- 18:58:18.440 DEBUG [13053]: Connecting to database... -- 18:58:18.440 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:58:18.440 SQL [13053]: pgsql_db_connect() -- 18:58:18.444 DEBUG [13053]: Database connection successful -- 18:58:18.444 INFO [13053]: _SERVER found -- 18:58:18.444 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 18:58:18.444 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 18:58:18.444 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=edoqb2qgf17vrm8oqutfv6l9c4eh1sjg -- 18:58:18.444 INFO [13053]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:58:18.444 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:58:18.455 INFO [13053]: COREGRADE is stopping... -- 18:58:18.455 DEBUG [13053]: Closing database connection -- 18:58:18.455 SQL [13053]: pgsql_close() -- 18:58:21.049 INFO [13053]: COREGRADE is starting... -- 18:58:21.049 INFO [13053]: Version from config: 1.0 -- 18:58:21.049 DEBUG [13053]: Connecting to database... -- 18:58:21.049 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:58:21.049 SQL [13053]: pgsql_db_connect() -- 18:58:21.053 DEBUG [13053]: Database connection successful -- 18:58:21.053 INFO [13053]: _SERVER found -- 18:58:21.053 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 18:58:21.053 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 18:58:21.053 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=edoqb2qgf17vrm8oqutfv6l9c4eh1sjg -- 18:58:21.053 INFO [13053]: QUERY_STRING = /member/viewCardAddAction -- 18:58:21.053 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:58:21.084 INFO [13053]: COREGRADE is stopping... -- 18:58:21.084 DEBUG [13053]: Closing database connection -- 18:58:21.084 SQL [13053]: pgsql_close() -- 18:58:21.103 INFO [13053]: COREGRADE is starting... -- 18:58:21.103 INFO [13053]: Version from config: 1.0 -- 18:58:21.103 DEBUG [13053]: Connecting to database... -- 18:58:21.103 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:58:21.103 SQL [13053]: pgsql_db_connect() -- 18:58:21.107 DEBUG [13053]: Database connection successful -- 18:58:21.107 INFO [13053]: _SERVER found -- 18:58:21.107 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 18:58:21.107 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 18:58:21.107 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=edoqb2qgf17vrm8oqutfv6l9c4eh1sjg -- 18:58:21.107 INFO [13053]: QUERY_STRING = /member/upload -- 18:58:21.107 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:58:21.146 INFO [13053]: COREGRADE is stopping... -- 18:58:21.146 DEBUG [13053]: Closing database connection -- 18:58:21.146 SQL [13053]: pgsql_close() -- 18:58:27.784 INFO [13123]: COREGRADE is starting... -- 18:58:27.784 INFO [13123]: Version from config: 1.0 -- 18:58:27.784 DEBUG [13123]: Connecting to database... -- 18:58:27.784 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:58:27.785 SQL [13123]: pgsql_db_connect() -- 18:58:28.080 INFO [17227]: COREGRADE is starting... -- 18:58:28.080 INFO [17227]: Version from config: 1.0 -- 18:58:28.081 DEBUG [17227]: Connecting to database... -- 18:58:28.081 DEBUG [17227]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:58:28.081 SQL [17227]: pgsql_db_connect() -- 18:58:27.788 DEBUG [13123]: Database connection successful -- 18:58:27.788 INFO [13123]: _SERVER found -- 18:58:27.788 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 18:58:27.788 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 18:58:27.788 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=edoqb2qgf17vrm8oqutfv6l9c4eh1sjg -- 18:58:27.788 INFO [13123]: QUERY_STRING = /member/upload -- 18:58:27.788 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:58:28.289 INFO [13123]: COREGRADE is stopping... -- 18:58:28.289 DEBUG [13123]: Closing database connection -- 18:58:28.289 SQL [13123]: pgsql_close() -- 18:58:28.085 DEBUG [17227]: Database connection successful -- 18:58:28.085 INFO [17227]: _SERVER found -- 18:58:28.085 INFO [17227]: REMOTE_ADDR = 192.168.1.13 -- 18:58:28.085 INFO [17227]: SERVER_NAME = oameye.works.coregrade.com -- 18:58:28.085 INFO [17227]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=edoqb2qgf17vrm8oqutfv6l9c4eh1sjg -- 18:58:28.085 INFO [17227]: QUERY_STRING = /member/upload -- 18:58:28.085 INFO [17227]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:58:28.330 INFO [17227]: COREGRADE is stopping... -- 18:58:28.330 DEBUG [17227]: Closing database connection -- 18:58:28.330 SQL [17227]: pgsql_close() -- 18:58:58.776 INFO [16100]: COREGRADE is starting... -- 18:58:58.776 INFO [16100]: Version from config: 1.0 -- 18:58:58.776 DEBUG [16100]: Connecting to database... -- 18:58:58.776 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:58:58.776 SQL [16100]: pgsql_db_connect() -- 18:58:58.780 DEBUG [16100]: Database connection successful -- 18:58:58.780 INFO [16100]: _SERVER found -- 18:58:58.780 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 18:58:58.780 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 18:58:58.780 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=edoqb2qgf17vrm8oqutfv6l9c4eh1sjg -- 18:58:58.780 INFO [16100]: QUERY_STRING = /member/viewCardAddAction -- 18:58:58.780 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:58:58.812 INFO [16100]: COREGRADE is stopping... -- 18:58:58.812 DEBUG [16100]: Closing database connection -- 18:58:58.812 SQL [16100]: pgsql_close() -- 18:58:59.381 INFO [16100]: COREGRADE is starting... -- 18:58:59.381 INFO [16100]: Version from config: 1.0 -- 18:58:59.381 DEBUG [16100]: Connecting to database... -- 18:58:59.381 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:58:59.381 SQL [16100]: pgsql_db_connect() -- 18:58:59.385 DEBUG [16100]: Database connection successful -- 18:58:59.385 INFO [16100]: _SERVER found -- 18:58:59.385 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 18:58:59.385 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 18:58:59.385 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=edoqb2qgf17vrm8oqutfv6l9c4eh1sjg -- 18:58:59.385 INFO [16100]: QUERY_STRING = /member/viewCardAddAction -- 18:58:59.385 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:58:59.416 INFO [16100]: COREGRADE is stopping... -- 18:58:59.416 DEBUG [16100]: Closing database connection -- 18:58:59.416 SQL [16100]: pgsql_close() -- 18:58:59.441 INFO [16100]: COREGRADE is starting... -- 18:58:59.442 INFO [16100]: Version from config: 1.0 -- 18:58:59.442 DEBUG [16100]: Connecting to database... -- 18:58:59.442 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:58:59.442 SQL [16100]: pgsql_db_connect() -- 18:58:59.445 DEBUG [16100]: Database connection successful -- 18:58:59.445 INFO [16100]: _SERVER found -- 18:58:59.445 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 18:58:59.445 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 18:58:59.445 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=edoqb2qgf17vrm8oqutfv6l9c4eh1sjg -- 18:58:59.445 INFO [16100]: QUERY_STRING = /member/upload -- 18:58:59.445 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:58:59.487 INFO [16100]: COREGRADE is stopping... -- 18:58:59.487 DEBUG [16100]: Closing database connection -- 18:58:59.487 SQL [16100]: pgsql_close() -- 18:59:08.132 INFO [13051]: COREGRADE is starting... -- 18:59:08.133 INFO [13051]: Version from config: 1.0 -- 18:59:08.133 DEBUG [13051]: Connecting to database... -- 18:59:08.133 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:59:08.133 SQL [13051]: pgsql_db_connect() -- 18:59:08.137 DEBUG [13051]: Database connection successful -- 18:59:08.137 INFO [13051]: _SERVER found -- 18:59:08.137 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 18:59:08.137 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 18:59:08.137 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=edoqb2qgf17vrm8oqutfv6l9c4eh1sjg -- 18:59:08.137 INFO [13051]: QUERY_STRING = /member/page -- 18:59:08.137 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:59:08.179 INFO [13051]: COREGRADE is stopping... -- 18:59:08.179 DEBUG [13051]: Closing database connection -- 18:59:08.179 SQL [13051]: pgsql_close() -- 18:59:08.362 INFO [13051]: COREGRADE is starting... -- 18:59:08.363 INFO [13051]: Version from config: 1.0 -- 18:59:08.363 DEBUG [13051]: Connecting to database... -- 18:59:08.363 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:59:08.363 SQL [13051]: pgsql_db_connect() -- 18:59:08.367 DEBUG [13051]: Database connection successful -- 18:59:08.367 INFO [13051]: _SERVER found -- 18:59:08.367 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 18:59:08.367 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 18:59:08.367 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=edoqb2qgf17vrm8oqutfv6l9c4eh1sjg -- 18:59:08.367 INFO [13051]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:59:08.367 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:59:08.378 INFO [13051]: COREGRADE is stopping... -- 18:59:08.378 DEBUG [13051]: Closing database connection -- 18:59:08.378 SQL [13051]: pgsql_close() -- 18:59:11.389 INFO [13051]: COREGRADE is starting... -- 18:59:11.390 INFO [13051]: Version from config: 1.0 -- 18:59:11.390 DEBUG [13051]: Connecting to database... -- 18:59:11.390 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:59:11.390 SQL [13051]: pgsql_db_connect() -- 18:59:11.393 DEBUG [13051]: Database connection successful -- 18:59:11.393 INFO [13051]: _SERVER found -- 18:59:11.393 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 18:59:11.393 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 18:59:11.393 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=edoqb2qgf17vrm8oqutfv6l9c4eh1sjg -- 18:59:11.393 INFO [13051]: QUERY_STRING = /member/viewCardAddAction -- 18:59:11.393 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:59:11.424 INFO [13051]: COREGRADE is stopping... -- 18:59:11.424 DEBUG [13051]: Closing database connection -- 18:59:11.424 SQL [13051]: pgsql_close() -- 18:59:11.441 INFO [13051]: COREGRADE is starting... -- 18:59:11.441 INFO [13051]: Version from config: 1.0 -- 18:59:11.441 DEBUG [13051]: Connecting to database... -- 18:59:11.441 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:59:11.441 SQL [13051]: pgsql_db_connect() -- 18:59:11.445 DEBUG [13051]: Database connection successful -- 18:59:11.445 INFO [13051]: _SERVER found -- 18:59:11.445 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 18:59:11.445 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 18:59:11.445 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=edoqb2qgf17vrm8oqutfv6l9c4eh1sjg -- 18:59:11.445 INFO [13051]: QUERY_STRING = /member/upload -- 18:59:11.445 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:59:11.477 INFO [13051]: COREGRADE is stopping... -- 18:59:11.477 DEBUG [13051]: Closing database connection -- 18:59:11.477 SQL [13051]: pgsql_close() -- 18:59:17.728 INFO [17228]: COREGRADE is starting... -- 18:59:17.729 INFO [17228]: Version from config: 1.0 -- 18:59:17.729 DEBUG [17228]: Connecting to database... -- 18:59:17.729 DEBUG [17228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:59:17.729 SQL [17228]: pgsql_db_connect() -- 18:59:17.733 DEBUG [17228]: Database connection successful -- 18:59:17.733 INFO [17228]: _SERVER found -- 18:59:17.733 INFO [17228]: REMOTE_ADDR = 192.168.1.13 -- 18:59:17.733 INFO [17228]: SERVER_NAME = oameye.works.coregrade.com -- 18:59:17.733 INFO [17228]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=edoqb2qgf17vrm8oqutfv6l9c4eh1sjg -- 18:59:17.733 INFO [17228]: QUERY_STRING = /member/upload -- 18:59:17.733 INFO [17228]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:59:17.812 INFO [17228]: COREGRADE is stopping... -- 18:59:17.812 DEBUG [17228]: Closing database connection -- 18:59:17.812 SQL [17228]: pgsql_close() -- 18:59:18.472 INFO [13055]: COREGRADE is starting... -- 18:59:18.473 INFO [13055]: Version from config: 1.0 -- 18:59:18.473 DEBUG [13055]: Connecting to database... -- 18:59:18.473 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:59:18.473 SQL [13055]: pgsql_db_connect() -- 18:59:18.477 DEBUG [13055]: Database connection successful -- 18:59:18.477 INFO [13055]: _SERVER found -- 18:59:18.477 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 18:59:18.477 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 18:59:18.477 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=edoqb2qgf17vrm8oqutfv6l9c4eh1sjg -- 18:59:18.477 INFO [13055]: QUERY_STRING = /member/upload -- 18:59:18.477 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:59:18.649 INFO [13055]: COREGRADE is stopping... -- 18:59:18.649 DEBUG [13055]: Closing database connection -- 18:59:18.649 SQL [13055]: pgsql_close() -- 19:00:06.467 INFO [13052]: COREGRADE is starting... -- 19:00:06.467 INFO [13052]: Version from config: 1.0 -- 19:00:06.467 DEBUG [13052]: Connecting to database... -- 19:00:06.467 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:00:06.467 SQL [13052]: pgsql_db_connect() -- 19:00:06.471 DEBUG [13052]: Database connection successful -- 19:00:06.471 INFO [13052]: _SERVER found -- 19:00:06.471 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 19:00:06.471 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 19:00:06.471 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=edoqb2qgf17vrm8oqutfv6l9c4eh1sjg -- 19:00:06.471 INFO [13052]: QUERY_STRING = /member/page -- 19:00:06.471 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:00:06.514 INFO [13052]: COREGRADE is stopping... -- 19:00:06.514 DEBUG [13052]: Closing database connection -- 19:00:06.514 SQL [13052]: pgsql_close() -- 19:00:06.615 INFO [13052]: COREGRADE is starting... -- 19:00:06.615 INFO [13052]: Version from config: 1.0 -- 19:00:06.615 DEBUG [13052]: Connecting to database... -- 19:00:06.615 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:00:06.615 SQL [13052]: pgsql_db_connect() -- 19:00:06.619 DEBUG [13052]: Database connection successful -- 19:00:06.619 INFO [13052]: _SERVER found -- 19:00:06.619 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 19:00:06.619 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 19:00:06.619 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=edoqb2qgf17vrm8oqutfv6l9c4eh1sjg -- 19:00:06.619 INFO [13052]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:00:06.619 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:00:06.631 INFO [13052]: COREGRADE is stopping... -- 19:00:06.631 DEBUG [13052]: Closing database connection -- 19:00:06.631 SQL [13052]: pgsql_close() -- 19:00:09.281 INFO [13052]: COREGRADE is starting... -- 19:00:09.281 INFO [13052]: Version from config: 1.0 -- 19:00:09.281 DEBUG [13052]: Connecting to database... -- 19:00:09.281 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:00:09.282 SQL [13052]: pgsql_db_connect() -- 19:00:09.286 DEBUG [13052]: Database connection successful -- 19:00:09.286 INFO [13052]: _SERVER found -- 19:00:09.286 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 19:00:09.286 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 19:00:09.286 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=edoqb2qgf17vrm8oqutfv6l9c4eh1sjg -- 19:00:09.286 INFO [13052]: QUERY_STRING = /member/viewCardAddAction -- 19:00:09.286 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:00:09.319 INFO [13052]: COREGRADE is stopping... -- 19:00:09.319 DEBUG [13052]: Closing database connection -- 19:00:09.319 SQL [13052]: pgsql_close() -- 19:00:09.343 INFO [13052]: COREGRADE is starting... -- 19:00:09.343 INFO [13052]: Version from config: 1.0 -- 19:00:09.343 DEBUG [13052]: Connecting to database... -- 19:00:09.343 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:00:09.343 SQL [13052]: pgsql_db_connect() -- 19:00:09.347 DEBUG [13052]: Database connection successful -- 19:00:09.347 INFO [13052]: _SERVER found -- 19:00:09.347 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 19:00:09.347 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 19:00:09.347 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=edoqb2qgf17vrm8oqutfv6l9c4eh1sjg -- 19:00:09.347 INFO [13052]: QUERY_STRING = /member/upload -- 19:00:09.347 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:00:09.379 INFO [13052]: COREGRADE is stopping... -- 19:00:09.379 DEBUG [13052]: Closing database connection -- 19:00:09.379 SQL [13052]: pgsql_close() -- 19:00:24.352 INFO [16105]: COREGRADE is starting... -- 19:00:24.352 INFO [16105]: Version from config: 1.0 -- 19:00:24.352 DEBUG [16105]: Connecting to database... -- 19:00:24.352 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:00:24.352 SQL [16105]: pgsql_db_connect() -- 19:00:24.357 DEBUG [16105]: Database connection successful -- 19:00:24.357 INFO [16105]: _SERVER found -- 19:00:24.357 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 19:00:24.357 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 19:00:24.357 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=edoqb2qgf17vrm8oqutfv6l9c4eh1sjg -- 19:00:24.357 INFO [16105]: QUERY_STRING = /member/upload -- 19:00:24.357 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:00:24.390 INFO [16105]: COREGRADE is stopping... -- 19:00:24.390 DEBUG [16105]: Closing database connection -- 19:00:24.390 SQL [16105]: pgsql_close() -- 19:01:15.459 INFO [13054]: COREGRADE is starting... -- 19:01:15.459 INFO [13054]: Version from config: 1.0 -- 19:01:15.459 DEBUG [13054]: Connecting to database... -- 19:01:15.459 DEBUG [13054]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:01:15.459 SQL [13054]: pgsql_db_connect() -- 19:01:15.463 DEBUG [13054]: Database connection successful -- 19:01:15.463 INFO [13054]: _SERVER found -- 19:01:15.463 INFO [13054]: REMOTE_ADDR = 192.168.1.13 -- 19:01:15.463 INFO [13054]: SERVER_NAME = oameye.works.coregrade.com -- 19:01:15.463 INFO [13054]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=edoqb2qgf17vrm8oqutfv6l9c4eh1sjg -- 19:01:15.463 INFO [13054]: QUERY_STRING = /member/upload -- 19:01:15.463 INFO [13054]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:01:15.496 INFO [13054]: COREGRADE is stopping... -- 19:01:15.497 DEBUG [13054]: Closing database connection -- 19:01:15.497 SQL [13054]: pgsql_close() -- 19:02:24.424 INFO [13053]: COREGRADE is starting... -- 19:02:24.424 INFO [13053]: Version from config: 1.0 -- 19:02:24.424 DEBUG [13053]: Connecting to database... -- 19:02:24.424 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:02:24.424 SQL [13053]: pgsql_db_connect() -- 19:02:24.428 DEBUG [13053]: Database connection successful -- 19:02:24.428 INFO [13053]: _SERVER found -- 19:02:24.428 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 19:02:24.428 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 19:02:24.428 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=edoqb2qgf17vrm8oqutfv6l9c4eh1sjg -- 19:02:24.428 INFO [13053]: QUERY_STRING = /member -- 19:02:24.428 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:02:24.469 INFO [13053]: COREGRADE is stopping... -- 19:02:24.469 DEBUG [13053]: Closing database connection -- 19:02:24.469 SQL [13053]: pgsql_close() -- 19:02:24.587 INFO [13053]: COREGRADE is starting... -- 19:02:24.587 INFO [13053]: Version from config: 1.0 -- 19:02:24.587 DEBUG [13053]: Connecting to database... -- 19:02:24.587 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:02:24.587 SQL [13053]: pgsql_db_connect() -- 19:02:24.591 DEBUG [13053]: Database connection successful -- 19:02:24.591 INFO [13053]: _SERVER found -- 19:02:24.591 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 19:02:24.591 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 19:02:24.591 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=a4g8lh8avkonssfsdjfkelld4no9edfc -- 19:02:24.591 INFO [13053]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:02:24.591 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:02:24.602 INFO [13053]: COREGRADE is stopping... -- 19:02:24.602 DEBUG [13053]: Closing database connection -- 19:02:24.602 SQL [13053]: pgsql_close() -- 19:02:25.722 INFO [13053]: COREGRADE is starting... -- 19:02:25.722 INFO [13053]: Version from config: 1.0 -- 19:02:25.722 DEBUG [13053]: Connecting to database... -- 19:02:25.722 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:02:25.722 SQL [13053]: pgsql_db_connect() -- 19:02:25.726 DEBUG [13053]: Database connection successful -- 19:02:25.726 INFO [13053]: _SERVER found -- 19:02:25.726 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 19:02:25.726 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 19:02:25.726 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=a4g8lh8avkonssfsdjfkelld4no9edfc -- 19:02:25.726 INFO [13053]: QUERY_STRING = /member/page -- 19:02:25.726 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:02:25.767 INFO [13053]: COREGRADE is stopping... -- 19:02:25.767 DEBUG [13053]: Closing database connection -- 19:02:25.767 SQL [13053]: pgsql_close() -- 19:02:25.874 INFO [13053]: COREGRADE is starting... -- 19:02:25.875 INFO [13053]: Version from config: 1.0 -- 19:02:25.875 DEBUG [13053]: Connecting to database... -- 19:02:25.875 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:02:25.875 SQL [13053]: pgsql_db_connect() -- 19:02:25.879 DEBUG [13053]: Database connection successful -- 19:02:25.879 INFO [13053]: _SERVER found -- 19:02:25.879 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 19:02:25.879 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 19:02:25.879 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=a4g8lh8avkonssfsdjfkelld4no9edfc -- 19:02:25.879 INFO [13053]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:02:25.879 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:02:25.890 INFO [13053]: COREGRADE is stopping... -- 19:02:25.890 DEBUG [13053]: Closing database connection -- 19:02:25.890 SQL [13053]: pgsql_close() -- 19:02:28.543 INFO [13053]: COREGRADE is starting... -- 19:02:28.543 INFO [13053]: Version from config: 1.0 -- 19:02:28.543 DEBUG [13053]: Connecting to database... -- 19:02:28.543 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:02:28.543 SQL [13053]: pgsql_db_connect() -- 19:02:28.547 DEBUG [13053]: Database connection successful -- 19:02:28.547 INFO [13053]: _SERVER found -- 19:02:28.547 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 19:02:28.547 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 19:02:28.547 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=a4g8lh8avkonssfsdjfkelld4no9edfc -- 19:02:28.547 INFO [13053]: QUERY_STRING = /member/viewCardAddAction -- 19:02:28.547 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:02:28.578 INFO [13053]: COREGRADE is stopping... -- 19:02:28.578 DEBUG [13053]: Closing database connection -- 19:02:28.578 SQL [13053]: pgsql_close() -- 19:02:28.596 INFO [13053]: COREGRADE is starting... -- 19:02:28.597 INFO [13053]: Version from config: 1.0 -- 19:02:28.597 DEBUG [13053]: Connecting to database... -- 19:02:28.597 DEBUG [13053]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:02:28.597 SQL [13053]: pgsql_db_connect() -- 19:02:28.600 DEBUG [13053]: Database connection successful -- 19:02:28.600 INFO [13053]: _SERVER found -- 19:02:28.600 INFO [13053]: REMOTE_ADDR = 192.168.1.13 -- 19:02:28.600 INFO [13053]: SERVER_NAME = oameye.works.coregrade.com -- 19:02:28.600 INFO [13053]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=a4g8lh8avkonssfsdjfkelld4no9edfc -- 19:02:28.600 INFO [13053]: QUERY_STRING = /member/upload -- 19:02:28.600 INFO [13053]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:02:28.632 INFO [13053]: COREGRADE is stopping... -- 19:02:28.632 DEBUG [13053]: Closing database connection -- 19:02:28.632 SQL [13053]: pgsql_close() -- 19:02:38.709 INFO [13123]: COREGRADE is starting... -- 19:02:38.710 INFO [13123]: Version from config: 1.0 -- 19:02:38.710 DEBUG [13123]: Connecting to database... -- 19:02:38.710 DEBUG [13123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:02:38.710 SQL [13123]: pgsql_db_connect() -- 19:02:38.714 DEBUG [13123]: Database connection successful -- 19:02:38.714 INFO [13123]: _SERVER found -- 19:02:38.714 INFO [13123]: REMOTE_ADDR = 192.168.1.13 -- 19:02:38.714 INFO [13123]: SERVER_NAME = oameye.works.coregrade.com -- 19:02:38.714 INFO [13123]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=a4g8lh8avkonssfsdjfkelld4no9edfc -- 19:02:38.714 INFO [13123]: QUERY_STRING = /member/upload -- 19:02:38.714 INFO [13123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:02:38.838 INFO [13123]: COREGRADE is stopping... -- 19:02:38.838 DEBUG [13123]: Closing database connection -- 19:02:38.838 SQL [13123]: pgsql_close() -- 19:10:02.015 INFO [17227]: COREGRADE is starting... -- 19:10:02.016 INFO [17227]: Version from config: 1.0 -- 19:10:02.016 DEBUG [17227]: Connecting to database... -- 19:10:02.016 DEBUG [17227]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:10:02.016 SQL [17227]: pgsql_db_connect() -- 19:10:02.022 DEBUG [17227]: Database connection successful -- 19:10:02.022 INFO [17227]: _SERVER found -- 19:10:02.022 INFO [17227]: REMOTE_ADDR = 192.168.1.13 -- 19:10:02.022 INFO [17227]: SERVER_NAME = oameye.works.coregrade.com -- 19:10:02.022 INFO [17227]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=a4g8lh8avkonssfsdjfkelld4no9edfc -- 19:10:02.022 INFO [17227]: QUERY_STRING = /member/page -- 19:10:02.022 INFO [17227]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:10:02.071 INFO [17227]: COREGRADE is stopping... -- 19:10:02.071 DEBUG [17227]: Closing database connection -- 19:10:02.071 SQL [17227]: pgsql_close() -- 19:10:02.180 INFO [17227]: COREGRADE is starting... -- 19:10:02.181 INFO [17227]: Version from config: 1.0 -- 19:10:02.181 DEBUG [17227]: Connecting to database... -- 19:10:02.181 DEBUG [17227]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:10:02.181 SQL [17227]: pgsql_db_connect() -- 19:10:02.185 DEBUG [17227]: Database connection successful -- 19:10:02.185 INFO [17227]: _SERVER found -- 19:10:02.185 INFO [17227]: REMOTE_ADDR = 192.168.1.13 -- 19:10:02.185 INFO [17227]: SERVER_NAME = oameye.works.coregrade.com -- 19:10:02.185 INFO [17227]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=nmimd67dip8cplj9oeomf0sfrqihgknt -- 19:10:02.185 INFO [17227]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:10:02.185 INFO [17227]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:10:02.196 INFO [17227]: COREGRADE is stopping... -- 19:10:02.196 DEBUG [17227]: Closing database connection -- 19:10:02.196 SQL [17227]: pgsql_close() -- 19:10:04.971 INFO [17227]: COREGRADE is starting... -- 19:10:04.971 INFO [17227]: Version from config: 1.0 -- 19:10:04.971 DEBUG [17227]: Connecting to database... -- 19:10:04.971 DEBUG [17227]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:10:04.971 SQL [17227]: pgsql_db_connect() -- 19:10:04.976 DEBUG [17227]: Database connection successful -- 19:10:04.976 INFO [17227]: _SERVER found -- 19:10:04.976 INFO [17227]: REMOTE_ADDR = 192.168.1.13 -- 19:10:04.976 INFO [17227]: SERVER_NAME = oameye.works.coregrade.com -- 19:10:04.976 INFO [17227]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=nmimd67dip8cplj9oeomf0sfrqihgknt -- 19:10:04.976 INFO [17227]: QUERY_STRING = /member/viewCardAddAction -- 19:10:04.976 INFO [17227]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:10:05.007 INFO [17227]: COREGRADE is stopping... -- 19:10:05.007 DEBUG [17227]: Closing database connection -- 19:10:05.007 SQL [17227]: pgsql_close() -- 19:10:05.031 INFO [17227]: COREGRADE is starting... -- 19:10:05.031 INFO [17227]: Version from config: 1.0 -- 19:10:05.031 DEBUG [17227]: Connecting to database... -- 19:10:05.031 DEBUG [17227]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:10:05.031 SQL [17227]: pgsql_db_connect() -- 19:10:05.035 DEBUG [17227]: Database connection successful -- 19:10:05.035 INFO [17227]: _SERVER found -- 19:10:05.035 INFO [17227]: REMOTE_ADDR = 192.168.1.13 -- 19:10:05.035 INFO [17227]: SERVER_NAME = oameye.works.coregrade.com -- 19:10:05.035 INFO [17227]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=nmimd67dip8cplj9oeomf0sfrqihgknt -- 19:10:05.035 INFO [17227]: QUERY_STRING = /member/upload -- 19:10:05.035 INFO [17227]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:10:05.069 INFO [17227]: COREGRADE is stopping... -- 19:10:05.069 DEBUG [17227]: Closing database connection -- 19:10:05.069 SQL [17227]: pgsql_close() -- 19:10:18.271 INFO [16105]: COREGRADE is starting... -- 19:10:18.272 INFO [16105]: Version from config: 1.0 -- 19:10:18.272 DEBUG [16105]: Connecting to database... -- 19:10:18.272 DEBUG [16105]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:10:18.272 SQL [16105]: pgsql_db_connect() -- 19:10:18.276 DEBUG [16105]: Database connection successful -- 19:10:18.276 INFO [16105]: _SERVER found -- 19:10:18.276 INFO [16105]: REMOTE_ADDR = 192.168.1.13 -- 19:10:18.276 INFO [16105]: SERVER_NAME = oameye.works.coregrade.com -- 19:10:18.276 INFO [16105]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=nmimd67dip8cplj9oeomf0sfrqihgknt -- 19:10:18.276 INFO [16105]: QUERY_STRING = /member/upload -- 19:10:18.276 INFO [16105]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:10:18.313 INFO [16105]: COREGRADE is stopping... -- 19:10:18.313 DEBUG [16105]: Closing database connection -- 19:10:18.313 SQL [16105]: pgsql_close() -- 19:10:24.068 INFO [13055]: COREGRADE is starting... -- 19:10:24.068 INFO [13055]: Version from config: 1.0 -- 19:10:24.068 DEBUG [13055]: Connecting to database... -- 19:10:24.068 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:10:24.068 SQL [13055]: pgsql_db_connect() -- 19:10:24.073 DEBUG [13055]: Database connection successful -- 19:10:24.073 INFO [13055]: _SERVER found -- 19:10:24.073 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 19:10:24.073 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 19:10:24.073 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=nmimd67dip8cplj9oeomf0sfrqihgknt -- 19:10:24.073 INFO [13055]: QUERY_STRING = /member/upload -- 19:10:24.073 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:10:24.160 INFO [13055]: COREGRADE is stopping... -- 19:10:24.160 DEBUG [13055]: Closing database connection -- 19:10:24.160 SQL [13055]: pgsql_close() -- 19:10:32.723 INFO [16100]: COREGRADE is starting... -- 19:10:32.723 INFO [16100]: Version from config: 1.0 -- 19:10:32.723 DEBUG [16100]: Connecting to database... -- 19:10:32.724 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:10:32.724 SQL [16100]: pgsql_db_connect() -- 19:10:32.728 DEBUG [16100]: Database connection successful -- 19:10:32.728 INFO [16100]: _SERVER found -- 19:10:32.728 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 19:10:32.728 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 19:10:32.728 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=nmimd67dip8cplj9oeomf0sfrqihgknt -- 19:10:32.728 INFO [16100]: QUERY_STRING = /member/upload -- 19:10:32.728 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:10:33.225 INFO [16100]: COREGRADE is stopping... -- 19:10:33.225 DEBUG [16100]: Closing database connection -- 19:10:33.225 SQL [16100]: pgsql_close() -- 19:10:34.495 INFO [13055]: COREGRADE is starting... -- 19:10:34.496 INFO [13055]: Version from config: 1.0 -- 19:10:34.496 DEBUG [13055]: Connecting to database... -- 19:10:34.496 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:10:34.496 SQL [13055]: pgsql_db_connect() -- 19:10:34.500 DEBUG [13055]: Database connection successful -- 19:10:34.500 INFO [13055]: _SERVER found -- 19:10:34.500 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 19:10:34.500 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 19:10:34.500 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=nmimd67dip8cplj9oeomf0sfrqihgknt -- 19:10:34.500 INFO [13055]: QUERY_STRING = /member/upload -- 19:10:34.500 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:10:34.894 INFO [13055]: COREGRADE is stopping... -- 19:10:34.894 DEBUG [13055]: Closing database connection -- 19:10:34.894 SQL [13055]: pgsql_close() -- 19:10:38.062 INFO [13051]: COREGRADE is starting... -- 19:10:38.062 INFO [13051]: Version from config: 1.0 -- 19:10:38.062 DEBUG [13051]: Connecting to database... -- 19:10:38.062 DEBUG [13051]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:10:38.062 SQL [13051]: pgsql_db_connect() -- 19:10:38.066 DEBUG [13051]: Database connection successful -- 19:10:38.066 INFO [13051]: _SERVER found -- 19:10:38.066 INFO [13051]: REMOTE_ADDR = 192.168.1.13 -- 19:10:38.066 INFO [13051]: SERVER_NAME = oameye.works.coregrade.com -- 19:10:38.066 INFO [13051]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=nmimd67dip8cplj9oeomf0sfrqihgknt -- 19:10:38.066 INFO [13051]: QUERY_STRING = /member/upload -- 19:10:38.066 INFO [13051]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:10:38.100 INFO [13051]: COREGRADE is stopping... -- 19:10:38.100 DEBUG [13051]: Closing database connection -- 19:10:38.100 SQL [13051]: pgsql_close() -- 19:10:38.237 INFO [13052]: COREGRADE is starting... -- 19:10:38.237 INFO [13052]: Version from config: 1.0 -- 19:10:38.237 DEBUG [13052]: Connecting to database... -- 19:10:38.237 DEBUG [13052]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:10:38.237 SQL [13052]: pgsql_db_connect() -- 19:10:38.241 DEBUG [13052]: Database connection successful -- 19:10:38.241 INFO [13052]: _SERVER found -- 19:10:38.241 INFO [13052]: REMOTE_ADDR = 192.168.1.13 -- 19:10:38.241 INFO [13052]: SERVER_NAME = oameye.works.coregrade.com -- 19:10:38.241 INFO [13052]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=nmimd67dip8cplj9oeomf0sfrqihgknt -- 19:10:38.241 INFO [13052]: QUERY_STRING = /member/upload -- 19:10:38.241 INFO [13052]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:10:38.273 INFO [13052]: COREGRADE is stopping... -- 19:10:38.273 DEBUG [13052]: Closing database connection -- 19:10:38.273 SQL [13052]: pgsql_close() -- 19:10:38.768 INFO [13055]: COREGRADE is starting... -- 19:10:38.768 INFO [13055]: Version from config: 1.0 -- 19:10:38.768 DEBUG [13055]: Connecting to database... -- 19:10:38.768 DEBUG [13055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:10:38.768 SQL [13055]: pgsql_db_connect() -- 19:10:38.772 DEBUG [13055]: Database connection successful -- 19:10:38.772 INFO [13055]: _SERVER found -- 19:10:38.772 INFO [13055]: REMOTE_ADDR = 192.168.1.13 -- 19:10:38.772 INFO [13055]: SERVER_NAME = oameye.works.coregrade.com -- 19:10:38.772 INFO [13055]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=nmimd67dip8cplj9oeomf0sfrqihgknt -- 19:10:38.772 INFO [13055]: QUERY_STRING = /member/upload -- 19:10:38.772 INFO [13055]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:10:38.803 INFO [13055]: COREGRADE is stopping... -- 19:10:38.803 DEBUG [13055]: Closing database connection -- 19:10:38.803 SQL [13055]: pgsql_close() -- 19:10:38.828 INFO [17228]: COREGRADE is starting... -- 19:10:38.828 INFO [17228]: Version from config: 1.0 -- 19:10:38.828 DEBUG [17228]: Connecting to database... -- 19:10:38.828 DEBUG [17228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:10:38.828 SQL [17228]: pgsql_db_connect() -- 19:10:38.832 DEBUG [17228]: Database connection successful -- 19:10:38.832 INFO [17228]: _SERVER found -- 19:10:38.832 INFO [17228]: REMOTE_ADDR = 192.168.1.13 -- 19:10:38.832 INFO [17228]: SERVER_NAME = oameye.works.coregrade.com -- 19:10:38.832 INFO [17228]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=nmimd67dip8cplj9oeomf0sfrqihgknt -- 19:10:38.832 INFO [17228]: QUERY_STRING = /member/upload -- 19:10:38.832 INFO [17228]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:10:38.863 INFO [17228]: COREGRADE is stopping... -- 19:10:38.863 DEBUG [17228]: Closing database connection -- 19:10:38.863 SQL [17228]: pgsql_close() -- 19:10:39.843 INFO [13054]: COREGRADE is starting... -- 19:10:39.843 INFO [13054]: Version from config: 1.0 -- 19:10:39.843 DEBUG [13054]: Connecting to database... -- 19:10:39.843 DEBUG [13054]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:10:39.843 SQL [13054]: pgsql_db_connect() -- 19:10:39.847 DEBUG [13054]: Database connection successful -- 19:10:39.847 INFO [13054]: _SERVER found -- 19:10:39.847 INFO [13054]: REMOTE_ADDR = 192.168.1.13 -- 19:10:39.847 INFO [13054]: SERVER_NAME = oameye.works.coregrade.com -- 19:10:39.847 INFO [13054]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=nmimd67dip8cplj9oeomf0sfrqihgknt -- 19:10:39.847 INFO [13054]: QUERY_STRING = /member/upload -- 19:10:39.847 INFO [13054]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:10:39.883 INFO [13054]: COREGRADE is stopping... -- 19:10:39.883 DEBUG [13054]: Closing database connection -- 19:10:39.883 SQL [13054]: pgsql_close() -- 19:10:47.369 INFO [16100]: COREGRADE is starting... -- 19:10:47.369 INFO [16100]: Version from config: 1.0 -- 19:10:47.369 DEBUG [16100]: Connecting to database... -- 19:10:47.369 DEBUG [16100]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:10:47.369 SQL [16100]: pgsql_db_connect() -- 19:10:47.373 DEBUG [16100]: Database connection successful -- 19:10:47.373 INFO [16100]: _SERVER found -- 19:10:47.373 INFO [16100]: REMOTE_ADDR = 192.168.1.13 -- 19:10:47.373 INFO [16100]: SERVER_NAME = oameye.works.coregrade.com -- 19:10:47.373 INFO [16100]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=nmimd67dip8cplj9oeomf0sfrqihgknt -- 19:10:47.373 INFO [16100]: QUERY_STRING = /member/upload -- 19:10:47.373 INFO [16100]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:10:47.683 INFO [16100]: COREGRADE is stopping... -- 19:10:47.683 DEBUG [16100]: Closing database connection -- 19:10:47.683 SQL [16100]: pgsql_close() -- 19:14:11.968 INFO [25976]: COREGRADE is starting... -- 19:14:11.968 INFO [25976]: Version from config: 1.0 -- 19:14:11.968 DEBUG [25976]: Connecting to database... -- 19:14:11.968 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:14:11.968 SQL [25976]: pgsql_db_connect() -- 19:14:11.973 DEBUG [25976]: Database connection successful -- 19:14:11.973 INFO [25976]: _SERVER found -- 19:14:11.973 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 19:14:11.973 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 19:14:11.973 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=nmimd67dip8cplj9oeomf0sfrqihgknt -- 19:14:11.973 INFO [25976]: QUERY_STRING = /member/page -- 19:14:11.973 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:14:12.023 INFO [25976]: COREGRADE is stopping... -- 19:14:12.023 DEBUG [25976]: Closing database connection -- 19:14:12.023 SQL [25976]: pgsql_close() -- 19:14:12.152 INFO [25976]: COREGRADE is starting... -- 19:14:12.153 INFO [25976]: Version from config: 1.0 -- 19:14:12.153 DEBUG [25976]: Connecting to database... -- 19:14:12.153 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:14:12.153 SQL [25976]: pgsql_db_connect() -- 19:14:12.157 DEBUG [25976]: Database connection successful -- 19:14:12.157 INFO [25976]: _SERVER found -- 19:14:12.157 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 19:14:12.157 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 19:14:12.157 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=nmimd67dip8cplj9oeomf0sfrqihgknt -- 19:14:12.157 INFO [25976]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:14:12.157 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:14:12.168 INFO [25976]: COREGRADE is stopping... -- 19:14:12.168 DEBUG [25976]: Closing database connection -- 19:14:12.168 SQL [25976]: pgsql_close() -- 19:14:14.912 INFO [25976]: COREGRADE is starting... -- 19:14:14.912 INFO [25976]: Version from config: 1.0 -- 19:14:14.912 DEBUG [25976]: Connecting to database... -- 19:14:14.912 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:14:14.912 SQL [25976]: pgsql_db_connect() -- 19:14:14.916 DEBUG [25976]: Database connection successful -- 19:14:14.916 INFO [25976]: _SERVER found -- 19:14:14.916 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 19:14:14.916 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 19:14:14.916 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=nmimd67dip8cplj9oeomf0sfrqihgknt -- 19:14:14.916 INFO [25976]: QUERY_STRING = /member/viewCardAddAction -- 19:14:14.916 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:14:14.950 INFO [25976]: COREGRADE is stopping... -- 19:14:14.950 DEBUG [25976]: Closing database connection -- 19:14:14.950 SQL [25976]: pgsql_close() -- 19:14:14.971 INFO [25976]: COREGRADE is starting... -- 19:14:14.971 INFO [25976]: Version from config: 1.0 -- 19:14:14.971 DEBUG [25976]: Connecting to database... -- 19:14:14.971 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:14:14.971 SQL [25976]: pgsql_db_connect() -- 19:14:14.975 DEBUG [25976]: Database connection successful -- 19:14:14.975 INFO [25976]: _SERVER found -- 19:14:14.975 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 19:14:14.975 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 19:14:14.975 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=nmimd67dip8cplj9oeomf0sfrqihgknt -- 19:14:14.975 INFO [25976]: QUERY_STRING = /member/upload -- 19:14:14.975 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:14:15.007 INFO [25976]: COREGRADE is stopping... -- 19:14:15.007 DEBUG [25976]: Closing database connection -- 19:14:15.007 SQL [25976]: pgsql_close() -- 19:15:47.672 INFO [25977]: COREGRADE is starting... -- 19:15:47.673 INFO [25977]: Version from config: 1.0 -- 19:15:47.673 DEBUG [25977]: Connecting to database... -- 19:15:47.673 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:15:47.673 SQL [25977]: pgsql_db_connect() -- 19:15:47.679 DEBUG [25977]: Database connection successful -- 19:15:47.679 INFO [25977]: _SERVER found -- 19:15:47.679 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 19:15:47.679 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 19:15:47.679 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=nmimd67dip8cplj9oeomf0sfrqihgknt -- 19:15:47.679 INFO [25977]: QUERY_STRING = /member/page -- 19:15:47.679 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:15:47.730 INFO [25977]: COREGRADE is stopping... -- 19:15:47.730 DEBUG [25977]: Closing database connection -- 19:15:47.730 SQL [25977]: pgsql_close() -- 19:15:47.822 INFO [25977]: COREGRADE is starting... -- 19:15:47.823 INFO [25977]: Version from config: 1.0 -- 19:15:47.823 DEBUG [25977]: Connecting to database... -- 19:15:47.823 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:15:47.823 SQL [25977]: pgsql_db_connect() -- 19:15:47.827 DEBUG [25977]: Database connection successful -- 19:15:47.827 INFO [25977]: _SERVER found -- 19:15:47.827 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 19:15:47.827 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 19:15:47.827 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5463ujevn0drkhva87loo36lrvemqpo -- 19:15:47.827 INFO [25977]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:15:47.827 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:15:47.839 INFO [25977]: COREGRADE is stopping... -- 19:15:47.839 DEBUG [25977]: Closing database connection -- 19:15:47.839 SQL [25977]: pgsql_close() -- 19:15:50.090 INFO [25977]: COREGRADE is starting... -- 19:15:50.090 INFO [25977]: Version from config: 1.0 -- 19:15:50.090 DEBUG [25977]: Connecting to database... -- 19:15:50.090 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:15:50.090 SQL [25977]: pgsql_db_connect() -- 19:15:50.094 DEBUG [25977]: Database connection successful -- 19:15:50.094 INFO [25977]: _SERVER found -- 19:15:50.094 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 19:15:50.094 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 19:15:50.094 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5463ujevn0drkhva87loo36lrvemqpo -- 19:15:50.094 INFO [25977]: QUERY_STRING = /member/viewCardAddAction -- 19:15:50.094 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:15:50.128 INFO [25977]: COREGRADE is stopping... -- 19:15:50.128 DEBUG [25977]: Closing database connection -- 19:15:50.128 SQL [25977]: pgsql_close() -- 19:15:50.151 INFO [25977]: COREGRADE is starting... -- 19:15:50.151 INFO [25977]: Version from config: 1.0 -- 19:15:50.151 DEBUG [25977]: Connecting to database... -- 19:15:50.151 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:15:50.151 SQL [25977]: pgsql_db_connect() -- 19:15:50.155 DEBUG [25977]: Database connection successful -- 19:15:50.155 INFO [25977]: _SERVER found -- 19:15:50.155 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 19:15:50.155 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 19:15:50.155 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5463ujevn0drkhva87loo36lrvemqpo -- 19:15:50.155 INFO [25977]: QUERY_STRING = /member/upload -- 19:15:50.155 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:15:50.188 INFO [25977]: COREGRADE is stopping... -- 19:15:50.188 DEBUG [25977]: Closing database connection -- 19:15:50.188 SQL [25977]: pgsql_close() -- 19:18:01.618 INFO [25979]: COREGRADE is starting... -- 19:18:01.619 INFO [25979]: Version from config: 1.0 -- 19:18:01.619 DEBUG [25979]: Connecting to database... -- 19:18:01.619 DEBUG [25979]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:18:01.619 SQL [25979]: pgsql_db_connect() -- 19:18:01.623 DEBUG [25979]: Database connection successful -- 19:18:01.623 INFO [25979]: _SERVER found -- 19:18:01.623 INFO [25979]: REMOTE_ADDR = 192.168.1.13 -- 19:18:01.623 INFO [25979]: SERVER_NAME = oameye.works.coregrade.com -- 19:18:01.623 INFO [25979]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5463ujevn0drkhva87loo36lrvemqpo -- 19:18:01.623 INFO [25979]: QUERY_STRING = /member/page -- 19:18:01.623 INFO [25979]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:18:01.673 INFO [25979]: COREGRADE is stopping... -- 19:18:01.673 DEBUG [25979]: Closing database connection -- 19:18:01.673 SQL [25979]: pgsql_close() -- 19:18:01.786 INFO [25979]: COREGRADE is starting... -- 19:18:01.786 INFO [25979]: Version from config: 1.0 -- 19:18:01.786 DEBUG [25979]: Connecting to database... -- 19:18:01.786 DEBUG [25979]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:18:01.786 SQL [25979]: pgsql_db_connect() -- 19:18:01.790 DEBUG [25979]: Database connection successful -- 19:18:01.790 INFO [25979]: _SERVER found -- 19:18:01.790 INFO [25979]: REMOTE_ADDR = 192.168.1.13 -- 19:18:01.790 INFO [25979]: SERVER_NAME = oameye.works.coregrade.com -- 19:18:01.790 INFO [25979]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5463ujevn0drkhva87loo36lrvemqpo -- 19:18:01.791 INFO [25979]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:18:01.791 INFO [25979]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:18:01.802 INFO [25979]: COREGRADE is stopping... -- 19:18:01.802 DEBUG [25979]: Closing database connection -- 19:18:01.802 SQL [25979]: pgsql_close() -- 19:18:04.292 INFO [25979]: COREGRADE is starting... -- 19:18:04.292 INFO [25979]: Version from config: 1.0 -- 19:18:04.292 DEBUG [25979]: Connecting to database... -- 19:18:04.292 DEBUG [25979]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:18:04.292 SQL [25979]: pgsql_db_connect() -- 19:18:04.296 DEBUG [25979]: Database connection successful -- 19:18:04.296 INFO [25979]: _SERVER found -- 19:18:04.296 INFO [25979]: REMOTE_ADDR = 192.168.1.13 -- 19:18:04.296 INFO [25979]: SERVER_NAME = oameye.works.coregrade.com -- 19:18:04.296 INFO [25979]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5463ujevn0drkhva87loo36lrvemqpo -- 19:18:04.296 INFO [25979]: QUERY_STRING = /member/viewCardAddAction -- 19:18:04.296 INFO [25979]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:18:04.330 INFO [25979]: COREGRADE is stopping... -- 19:18:04.330 DEBUG [25979]: Closing database connection -- 19:18:04.330 SQL [25979]: pgsql_close() -- 19:18:04.348 INFO [25979]: COREGRADE is starting... -- 19:18:04.348 INFO [25979]: Version from config: 1.0 -- 19:18:04.348 DEBUG [25979]: Connecting to database... -- 19:18:04.348 DEBUG [25979]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:18:04.348 SQL [25979]: pgsql_db_connect() -- 19:18:04.352 DEBUG [25979]: Database connection successful -- 19:18:04.352 INFO [25979]: _SERVER found -- 19:18:04.352 INFO [25979]: REMOTE_ADDR = 192.168.1.13 -- 19:18:04.352 INFO [25979]: SERVER_NAME = oameye.works.coregrade.com -- 19:18:04.352 INFO [25979]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5463ujevn0drkhva87loo36lrvemqpo -- 19:18:04.352 INFO [25979]: QUERY_STRING = /member/upload -- 19:18:04.352 INFO [25979]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:18:04.384 INFO [25979]: COREGRADE is stopping... -- 19:18:04.384 DEBUG [25979]: Closing database connection -- 19:18:04.384 SQL [25979]: pgsql_close() -- 19:19:13.686 INFO [25978]: COREGRADE is starting... -- 19:19:13.687 INFO [25978]: Version from config: 1.0 -- 19:19:13.687 DEBUG [25978]: Connecting to database... -- 19:19:13.687 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:19:13.687 SQL [25978]: pgsql_db_connect() -- 19:19:13.691 DEBUG [25978]: Database connection successful -- 19:19:13.691 INFO [25978]: _SERVER found -- 19:19:13.691 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 19:19:13.691 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 19:19:13.691 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5463ujevn0drkhva87loo36lrvemqpo -- 19:19:13.691 INFO [25978]: QUERY_STRING = /member/viewCardAddAction -- 19:19:13.691 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:19:13.729 INFO [25978]: COREGRADE is stopping... -- 19:19:13.729 DEBUG [25978]: Closing database connection -- 19:19:13.730 SQL [25978]: pgsql_close() -- 19:19:14.265 INFO [25978]: COREGRADE is starting... -- 19:19:14.266 INFO [25978]: Version from config: 1.0 -- 19:19:14.266 DEBUG [25978]: Connecting to database... -- 19:19:14.266 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:19:14.266 SQL [25978]: pgsql_db_connect() -- 19:19:14.270 DEBUG [25978]: Database connection successful -- 19:19:14.270 INFO [25978]: _SERVER found -- 19:19:14.270 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 19:19:14.270 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 19:19:14.270 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5463ujevn0drkhva87loo36lrvemqpo -- 19:19:14.270 INFO [25978]: QUERY_STRING = /member/viewCardAddAction -- 19:19:14.270 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:19:14.304 INFO [25978]: COREGRADE is stopping... -- 19:19:14.304 DEBUG [25978]: Closing database connection -- 19:19:14.304 SQL [25978]: pgsql_close() -- 19:19:14.330 INFO [25978]: COREGRADE is starting... -- 19:19:14.330 INFO [25978]: Version from config: 1.0 -- 19:19:14.330 DEBUG [25978]: Connecting to database... -- 19:19:14.330 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:19:14.330 SQL [25978]: pgsql_db_connect() -- 19:19:14.334 DEBUG [25978]: Database connection successful -- 19:19:14.334 INFO [25978]: _SERVER found -- 19:19:14.334 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 19:19:14.334 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 19:19:14.334 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5463ujevn0drkhva87loo36lrvemqpo -- 19:19:14.334 INFO [25978]: QUERY_STRING = /member/upload -- 19:19:14.334 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:19:14.397 INFO [25978]: COREGRADE is stopping... -- 19:19:14.397 DEBUG [25978]: Closing database connection -- 19:19:14.397 SQL [25978]: pgsql_close() -- 19:19:21.509 INFO [25980]: COREGRADE is starting... -- 19:19:21.510 INFO [25980]: Version from config: 1.0 -- 19:19:21.510 DEBUG [25980]: Connecting to database... -- 19:19:21.510 DEBUG [25980]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:19:21.510 SQL [25980]: pgsql_db_connect() -- 19:19:21.515 DEBUG [25980]: Database connection successful -- 19:19:21.515 INFO [25980]: _SERVER found -- 19:19:21.515 INFO [25980]: REMOTE_ADDR = 192.168.1.13 -- 19:19:21.515 INFO [25980]: SERVER_NAME = oameye.works.coregrade.com -- 19:19:21.515 INFO [25980]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5463ujevn0drkhva87loo36lrvemqpo -- 19:19:21.515 INFO [25980]: QUERY_STRING = /member/page -- 19:19:21.515 INFO [25980]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:19:21.568 INFO [25980]: COREGRADE is stopping... -- 19:19:21.568 DEBUG [25980]: Closing database connection -- 19:19:21.568 SQL [25980]: pgsql_close() -- 19:19:21.915 INFO [25977]: COREGRADE is starting... -- 19:19:21.915 INFO [25977]: Version from config: 1.0 -- 19:19:21.915 DEBUG [25977]: Connecting to database... -- 19:19:21.915 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:19:21.915 SQL [25977]: pgsql_db_connect() -- 19:19:21.920 DEBUG [25977]: Database connection successful -- 19:19:21.920 INFO [25977]: _SERVER found -- 19:19:21.920 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 19:19:21.920 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 19:19:21.920 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5463ujevn0drkhva87loo36lrvemqpo -- 19:19:21.920 INFO [25977]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:19:21.920 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:19:21.932 INFO [25977]: COREGRADE is stopping... -- 19:19:21.932 DEBUG [25977]: Closing database connection -- 19:19:21.932 SQL [25977]: pgsql_close() -- 19:19:25.897 INFO [26029]: COREGRADE is starting... -- 19:19:25.898 INFO [26029]: Version from config: 1.0 -- 19:19:25.898 DEBUG [26029]: Connecting to database... -- 19:19:25.898 DEBUG [26029]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:19:25.898 SQL [26029]: pgsql_db_connect() -- 19:19:25.903 DEBUG [26029]: Database connection successful -- 19:19:25.903 INFO [26029]: _SERVER found -- 19:19:25.903 INFO [26029]: REMOTE_ADDR = 192.168.1.13 -- 19:19:25.903 INFO [26029]: SERVER_NAME = oameye.works.coregrade.com -- 19:19:25.903 INFO [26029]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5463ujevn0drkhva87loo36lrvemqpo -- 19:19:25.903 INFO [26029]: QUERY_STRING = /member/viewCardAddAction -- 19:19:25.903 INFO [26029]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:19:25.943 INFO [26029]: COREGRADE is stopping... -- 19:19:25.943 DEBUG [26029]: Closing database connection -- 19:19:25.943 SQL [26029]: pgsql_close() -- 19:19:25.978 INFO [26029]: COREGRADE is starting... -- 19:19:25.979 INFO [26029]: Version from config: 1.0 -- 19:19:25.979 DEBUG [26029]: Connecting to database... -- 19:19:25.979 DEBUG [26029]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:19:25.979 SQL [26029]: pgsql_db_connect() -- 19:19:25.983 DEBUG [26029]: Database connection successful -- 19:19:25.983 INFO [26029]: _SERVER found -- 19:19:25.983 INFO [26029]: REMOTE_ADDR = 192.168.1.13 -- 19:19:25.983 INFO [26029]: SERVER_NAME = oameye.works.coregrade.com -- 19:19:25.983 INFO [26029]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5463ujevn0drkhva87loo36lrvemqpo -- 19:19:25.983 INFO [26029]: QUERY_STRING = /member/upload -- 19:19:25.983 INFO [26029]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:19:26.028 INFO [26029]: COREGRADE is stopping... -- 19:19:26.028 DEBUG [26029]: Closing database connection -- 19:19:26.028 SQL [26029]: pgsql_close() -- 19:19:36.293 INFO [25980]: COREGRADE is starting... -- 19:19:36.294 INFO [25980]: Version from config: 1.0 -- 19:19:36.294 DEBUG [25980]: Connecting to database... -- 19:19:36.294 DEBUG [25980]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:19:36.294 SQL [25980]: pgsql_db_connect() -- 19:19:36.302 INFO [25976]: COREGRADE is starting... -- 19:19:36.303 INFO [25976]: Version from config: 1.0 -- 19:19:36.303 DEBUG [25976]: Connecting to database... -- 19:19:36.303 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:19:36.303 SQL [25976]: pgsql_db_connect() -- 19:19:36.298 DEBUG [25980]: Database connection successful -- 19:19:36.298 INFO [25980]: _SERVER found -- 19:19:36.298 INFO [25980]: REMOTE_ADDR = 192.168.1.13 -- 19:19:36.298 INFO [25980]: SERVER_NAME = oameye.works.coregrade.com -- 19:19:36.298 INFO [25980]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5463ujevn0drkhva87loo36lrvemqpo -- 19:19:36.298 INFO [25980]: QUERY_STRING = /member/upload -- 19:19:36.298 INFO [25980]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:19:36.333 INFO [25980]: COREGRADE is stopping... -- 19:19:36.333 DEBUG [25980]: Closing database connection -- 19:19:36.333 SQL [25980]: pgsql_close() -- 19:19:36.307 DEBUG [25976]: Database connection successful -- 19:19:36.307 INFO [25976]: _SERVER found -- 19:19:36.307 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 19:19:36.307 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 19:19:36.307 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5463ujevn0drkhva87loo36lrvemqpo -- 19:19:36.307 INFO [25976]: QUERY_STRING = /member/upload -- 19:19:36.307 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:19:36.341 INFO [25976]: COREGRADE is stopping... -- 19:19:36.341 DEBUG [25976]: Closing database connection -- 19:19:36.341 SQL [25976]: pgsql_close() -- 19:19:48.013 INFO [25983]: COREGRADE is starting... -- 19:19:48.014 INFO [25983]: Version from config: 1.0 -- 19:19:48.014 DEBUG [25983]: Connecting to database... -- 19:19:48.014 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:19:48.014 SQL [25983]: pgsql_db_connect() -- 19:19:48.019 DEBUG [25983]: Database connection successful -- 19:19:48.019 INFO [25983]: _SERVER found -- 19:19:48.019 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 19:19:48.019 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 19:19:48.019 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5463ujevn0drkhva87loo36lrvemqpo -- 19:19:48.019 INFO [25983]: QUERY_STRING = /member/upload -- 19:19:48.019 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:19:48.563 INFO [25983]: COREGRADE is stopping... -- 19:19:48.563 DEBUG [25983]: Closing database connection -- 19:19:48.563 SQL [25983]: pgsql_close() -- 19:19:53.134 INFO [26030]: COREGRADE is starting... -- 19:19:53.135 INFO [26030]: Version from config: 1.0 -- 19:19:53.135 DEBUG [26030]: Connecting to database... -- 19:19:53.135 DEBUG [26030]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:19:53.135 SQL [26030]: pgsql_db_connect() -- 19:19:53.139 DEBUG [26030]: Database connection successful -- 19:19:53.139 INFO [26030]: _SERVER found -- 19:19:53.139 INFO [26030]: REMOTE_ADDR = 192.168.1.13 -- 19:19:53.139 INFO [26030]: SERVER_NAME = oameye.works.coregrade.com -- 19:19:53.139 INFO [26030]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5463ujevn0drkhva87loo36lrvemqpo -- 19:19:53.139 INFO [26030]: QUERY_STRING = /member/upload -- 19:19:53.139 INFO [26030]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:19:53.911 INFO [26030]: COREGRADE is stopping... -- 19:19:53.911 DEBUG [26030]: Closing database connection -- 19:19:53.911 SQL [26030]: pgsql_close() -- 19:19:56.258 INFO [25977]: COREGRADE is starting... -- 19:19:56.258 INFO [25977]: Version from config: 1.0 -- 19:19:56.258 DEBUG [25977]: Connecting to database... -- 19:19:56.258 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:19:56.259 SQL [25977]: pgsql_db_connect() -- 19:19:56.267 INFO [26031]: COREGRADE is starting... -- 19:19:56.268 INFO [26031]: Version from config: 1.0 -- 19:19:56.268 DEBUG [26031]: Connecting to database... -- 19:19:56.268 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:19:56.268 SQL [26031]: pgsql_db_connect() -- 19:19:56.263 DEBUG [25977]: Database connection successful -- 19:19:56.263 INFO [25977]: _SERVER found -- 19:19:56.263 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 19:19:56.263 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 19:19:56.263 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5463ujevn0drkhva87loo36lrvemqpo -- 19:19:56.263 INFO [25977]: QUERY_STRING = /member/upload -- 19:19:56.263 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:19:56.297 INFO [25977]: COREGRADE is stopping... -- 19:19:56.297 DEBUG [25977]: Closing database connection -- 19:19:56.298 SQL [25977]: pgsql_close() -- 19:19:56.272 DEBUG [26031]: Database connection successful -- 19:19:56.272 INFO [26031]: _SERVER found -- 19:19:56.272 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 19:19:56.272 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 19:19:56.272 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5463ujevn0drkhva87loo36lrvemqpo -- 19:19:56.272 INFO [26031]: QUERY_STRING = /member/upload -- 19:19:56.272 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:19:56.311 INFO [26031]: COREGRADE is stopping... -- 19:19:56.311 DEBUG [26031]: Closing database connection -- 19:19:56.311 SQL [26031]: pgsql_close() -- 19:19:59.306 INFO [25978]: COREGRADE is starting... -- 19:19:59.306 INFO [25978]: Version from config: 1.0 -- 19:19:59.306 DEBUG [25978]: Connecting to database... -- 19:19:59.306 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:19:59.306 SQL [25978]: pgsql_db_connect() -- 19:19:59.311 DEBUG [25978]: Database connection successful -- 19:19:59.311 INFO [25978]: _SERVER found -- 19:19:59.311 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 19:19:59.311 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 19:19:59.311 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5463ujevn0drkhva87loo36lrvemqpo -- 19:19:59.311 INFO [25978]: QUERY_STRING = /member/upload -- 19:19:59.311 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:19:59.357 INFO [25978]: COREGRADE is stopping... -- 19:19:59.357 DEBUG [25978]: Closing database connection -- 19:19:59.357 SQL [25978]: pgsql_close() -- 19:19:59.382 INFO [26029]: COREGRADE is starting... -- 19:19:59.383 INFO [26029]: Version from config: 1.0 -- 19:19:59.383 DEBUG [26029]: Connecting to database... -- 19:19:59.383 DEBUG [26029]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:19:59.383 SQL [26029]: pgsql_db_connect() -- 19:19:59.387 DEBUG [26029]: Database connection successful -- 19:19:59.387 INFO [26029]: _SERVER found -- 19:19:59.387 INFO [26029]: REMOTE_ADDR = 192.168.1.13 -- 19:19:59.387 INFO [26029]: SERVER_NAME = oameye.works.coregrade.com -- 19:19:59.387 INFO [26029]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5463ujevn0drkhva87loo36lrvemqpo -- 19:19:59.387 INFO [26029]: QUERY_STRING = /member/upload -- 19:19:59.387 INFO [26029]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:19:59.423 INFO [26029]: COREGRADE is stopping... -- 19:19:59.423 DEBUG [26029]: Closing database connection -- 19:19:59.423 SQL [26029]: pgsql_close() -- 19:20:06.314 INFO [26030]: COREGRADE is starting... -- 19:20:06.314 INFO [26030]: Version from config: 1.0 -- 19:20:06.314 DEBUG [26030]: Connecting to database... -- 19:20:06.314 DEBUG [26030]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:06.314 SQL [26030]: pgsql_db_connect() -- 19:20:06.319 DEBUG [26030]: Database connection successful -- 19:20:06.319 INFO [26030]: _SERVER found -- 19:20:06.319 INFO [26030]: REMOTE_ADDR = 192.168.1.13 -- 19:20:06.319 INFO [26030]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:06.319 INFO [26030]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5463ujevn0drkhva87loo36lrvemqpo -- 19:20:06.319 INFO [26030]: QUERY_STRING = /member/upload -- 19:20:06.319 INFO [26030]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:06.542 INFO [26030]: COREGRADE is stopping... -- 19:20:06.542 DEBUG [26030]: Closing database connection -- 19:20:06.542 SQL [26030]: pgsql_close() -- 19:20:06.873 INFO [26030]: COREGRADE is starting... -- 19:20:06.873 INFO [26030]: Version from config: 1.0 -- 19:20:06.873 DEBUG [26030]: Connecting to database... -- 19:20:06.873 DEBUG [26030]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:06.873 SQL [26030]: pgsql_db_connect() -- 19:20:06.878 DEBUG [26030]: Database connection successful -- 19:20:06.878 INFO [26030]: _SERVER found -- 19:20:06.878 INFO [26030]: REMOTE_ADDR = 192.168.1.13 -- 19:20:06.878 INFO [26030]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:06.878 INFO [26030]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5463ujevn0drkhva87loo36lrvemqpo -- 19:20:06.878 INFO [26030]: QUERY_STRING = /member/upload -- 19:20:06.878 INFO [26030]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:06.914 INFO [26030]: COREGRADE is stopping... -- 19:20:06.914 DEBUG [26030]: Closing database connection -- 19:20:06.914 SQL [26030]: pgsql_close() -- 19:20:09.082 INFO [25983]: COREGRADE is starting... -- 19:20:09.082 INFO [25983]: Version from config: 1.0 -- 19:20:09.082 DEBUG [25983]: Connecting to database... -- 19:20:09.082 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:09.083 SQL [25983]: pgsql_db_connect() -- 19:20:09.087 DEBUG [25983]: Database connection successful -- 19:20:09.087 INFO [25983]: _SERVER found -- 19:20:09.087 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 19:20:09.087 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:09.087 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5463ujevn0drkhva87loo36lrvemqpo -- 19:20:09.087 INFO [25983]: QUERY_STRING = /member/upload -- 19:20:09.087 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:09.129 INFO [25983]: COREGRADE is stopping... -- 19:20:09.129 DEBUG [25983]: Closing database connection -- 19:20:09.129 SQL [25983]: pgsql_close() -- 19:20:10.308 INFO [25979]: COREGRADE is starting... -- 19:20:10.309 INFO [25979]: Version from config: 1.0 -- 19:20:10.309 DEBUG [25979]: Connecting to database... -- 19:20:10.309 DEBUG [25979]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:10.309 SQL [25979]: pgsql_db_connect() -- 19:20:10.313 DEBUG [25979]: Database connection successful -- 19:20:10.313 INFO [25979]: _SERVER found -- 19:20:10.313 INFO [25979]: REMOTE_ADDR = 192.168.1.13 -- 19:20:10.313 INFO [25979]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:10.313 INFO [25979]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5463ujevn0drkhva87loo36lrvemqpo -- 19:20:10.313 INFO [25979]: QUERY_STRING = /member/upload -- 19:20:10.313 INFO [25979]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:10.947 INFO [25979]: COREGRADE is stopping... -- 19:20:10.947 DEBUG [25979]: Closing database connection -- 19:20:10.947 SQL [25979]: pgsql_close() -- 19:20:12.960 INFO [25980]: COREGRADE is starting... -- 19:20:12.960 INFO [25980]: Version from config: 1.0 -- 19:20:12.960 DEBUG [25980]: Connecting to database... -- 19:20:12.960 DEBUG [25980]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:12.960 SQL [25980]: pgsql_db_connect() -- 19:20:12.965 DEBUG [25980]: Database connection successful -- 19:20:12.965 INFO [25980]: _SERVER found -- 19:20:12.965 INFO [25980]: REMOTE_ADDR = 192.168.1.13 -- 19:20:12.965 INFO [25980]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:12.965 INFO [25980]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5463ujevn0drkhva87loo36lrvemqpo -- 19:20:12.965 INFO [25980]: QUERY_STRING = /member/upload -- 19:20:12.965 INFO [25980]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:12.999 INFO [25980]: COREGRADE is stopping... -- 19:20:12.999 DEBUG [25980]: Closing database connection -- 19:20:12.999 SQL [25980]: pgsql_close() -- 19:20:19.839 INFO [25979]: COREGRADE is starting... -- 19:20:19.839 INFO [25979]: Version from config: 1.0 -- 19:20:19.839 DEBUG [25979]: Connecting to database... -- 19:20:19.839 DEBUG [25979]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:19.839 SQL [25979]: pgsql_db_connect() -- 19:20:19.844 DEBUG [25979]: Database connection successful -- 19:20:19.844 INFO [25979]: _SERVER found -- 19:20:19.844 INFO [25979]: REMOTE_ADDR = 192.168.1.13 -- 19:20:19.844 INFO [25979]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:19.844 INFO [25979]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5463ujevn0drkhva87loo36lrvemqpo -- 19:20:19.844 INFO [25979]: QUERY_STRING = /member/upload -- 19:20:19.844 INFO [25979]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:20.012 INFO [25979]: COREGRADE is stopping... -- 19:20:20.012 DEBUG [25979]: Closing database connection -- 19:20:20.012 SQL [25979]: pgsql_close() -- 19:20:24.373 INFO [25978]: COREGRADE is starting... -- 19:20:24.373 INFO [25978]: Version from config: 1.0 -- 19:20:24.373 DEBUG [25978]: Connecting to database... -- 19:20:24.373 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:20:24.373 SQL [25978]: pgsql_db_connect() -- 19:20:24.378 DEBUG [25978]: Database connection successful -- 19:20:24.378 INFO [25978]: _SERVER found -- 19:20:24.378 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 19:20:24.378 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 19:20:24.378 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5463ujevn0drkhva87loo36lrvemqpo -- 19:20:24.378 INFO [25978]: QUERY_STRING = /member/upload -- 19:20:24.378 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:20:24.539 INFO [25978]: COREGRADE is stopping... -- 19:20:24.539 DEBUG [25978]: Closing database connection -- 19:20:24.539 SQL [25978]: pgsql_close() -- 19:28:10.817 INFO [26043]: COREGRADE is starting... -- 19:28:10.817 INFO [26043]: Version from config: 1.0 -- 19:28:10.817 DEBUG [26043]: Connecting to database... -- 19:28:10.817 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:28:10.817 SQL [26043]: pgsql_db_connect() -- 19:28:10.822 DEBUG [26043]: Database connection successful -- 19:28:10.822 INFO [26043]: _SERVER found -- 19:28:10.822 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 19:28:10.822 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 19:28:10.822 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=r5463ujevn0drkhva87loo36lrvemqpo -- 19:28:10.822 INFO [26043]: QUERY_STRING = /member/page -- 19:28:10.822 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:28:10.875 INFO [26043]: COREGRADE is stopping... -- 19:28:10.875 DEBUG [26043]: Closing database connection -- 19:28:10.875 SQL [26043]: pgsql_close() -- 19:28:10.988 INFO [26043]: COREGRADE is starting... -- 19:28:10.988 INFO [26043]: Version from config: 1.0 -- 19:28:10.988 DEBUG [26043]: Connecting to database... -- 19:28:10.988 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:28:10.988 SQL [26043]: pgsql_db_connect() -- 19:28:10.992 DEBUG [26043]: Database connection successful -- 19:28:10.992 INFO [26043]: _SERVER found -- 19:28:10.992 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 19:28:10.992 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 19:28:10.992 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ofltvalrchgth67qdohfb5uj0q9aqaro -- 19:28:10.992 INFO [26043]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:28:10.992 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:28:11.004 INFO [26043]: COREGRADE is stopping... -- 19:28:11.004 DEBUG [26043]: Closing database connection -- 19:28:11.004 SQL [26043]: pgsql_close() -- 19:28:13.965 INFO [25976]: COREGRADE is starting... -- 19:28:13.966 INFO [25976]: Version from config: 1.0 -- 19:28:13.966 DEBUG [25976]: Connecting to database... -- 19:28:13.966 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:28:13.966 SQL [25976]: pgsql_db_connect() -- 19:28:13.970 DEBUG [25976]: Database connection successful -- 19:28:13.970 INFO [25976]: _SERVER found -- 19:28:13.970 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 19:28:13.970 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 19:28:13.970 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ofltvalrchgth67qdohfb5uj0q9aqaro -- 19:28:13.970 INFO [25976]: QUERY_STRING = /member/viewCardAddAction -- 19:28:13.970 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:28:14.003 INFO [25976]: COREGRADE is stopping... -- 19:28:14.003 DEBUG [25976]: Closing database connection -- 19:28:14.003 SQL [25976]: pgsql_close() -- 19:28:14.037 INFO [25976]: COREGRADE is starting... -- 19:28:14.037 INFO [25976]: Version from config: 1.0 -- 19:28:14.037 DEBUG [25976]: Connecting to database... -- 19:28:14.037 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:28:14.037 SQL [25976]: pgsql_db_connect() -- 19:28:14.041 DEBUG [25976]: Database connection successful -- 19:28:14.041 INFO [25976]: _SERVER found -- 19:28:14.041 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 19:28:14.041 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 19:28:14.041 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ofltvalrchgth67qdohfb5uj0q9aqaro -- 19:28:14.041 INFO [25976]: QUERY_STRING = /member/upload -- 19:28:14.041 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:28:14.073 INFO [25976]: COREGRADE is stopping... -- 19:28:14.073 DEBUG [25976]: Closing database connection -- 19:28:14.073 SQL [25976]: pgsql_close() -- 19:29:06.888 INFO [25983]: COREGRADE is starting... -- 19:29:06.888 INFO [25983]: Version from config: 1.0 -- 19:29:06.888 DEBUG [25983]: Connecting to database... -- 19:29:06.888 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:06.888 SQL [25983]: pgsql_db_connect() -- 19:29:06.893 DEBUG [25983]: Database connection successful -- 19:29:06.893 INFO [25983]: _SERVER found -- 19:29:06.893 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 19:29:06.893 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 19:29:06.893 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ofltvalrchgth67qdohfb5uj0q9aqaro -- 19:29:06.893 INFO [25983]: QUERY_STRING = /member/page -- 19:29:06.893 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:29:06.940 INFO [25983]: COREGRADE is stopping... -- 19:29:06.940 DEBUG [25983]: Closing database connection -- 19:29:06.940 SQL [25983]: pgsql_close() -- 19:29:07.040 INFO [25983]: COREGRADE is starting... -- 19:29:07.040 INFO [25983]: Version from config: 1.0 -- 19:29:07.040 DEBUG [25983]: Connecting to database... -- 19:29:07.040 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:07.040 SQL [25983]: pgsql_db_connect() -- 19:29:07.044 DEBUG [25983]: Database connection successful -- 19:29:07.044 INFO [25983]: _SERVER found -- 19:29:07.044 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 19:29:07.044 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 19:29:07.044 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ofltvalrchgth67qdohfb5uj0q9aqaro -- 19:29:07.044 INFO [25983]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:29:07.044 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:29:07.057 INFO [25983]: COREGRADE is stopping... -- 19:29:07.057 DEBUG [25983]: Closing database connection -- 19:29:07.057 SQL [25983]: pgsql_close() -- 19:29:09.424 INFO [26029]: COREGRADE is starting... -- 19:29:09.424 INFO [26029]: Version from config: 1.0 -- 19:29:09.424 DEBUG [26029]: Connecting to database... -- 19:29:09.424 DEBUG [26029]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:09.424 SQL [26029]: pgsql_db_connect() -- 19:29:09.428 DEBUG [26029]: Database connection successful -- 19:29:09.428 INFO [26029]: _SERVER found -- 19:29:09.428 INFO [26029]: REMOTE_ADDR = 192.168.1.13 -- 19:29:09.428 INFO [26029]: SERVER_NAME = oameye.works.coregrade.com -- 19:29:09.428 INFO [26029]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ofltvalrchgth67qdohfb5uj0q9aqaro -- 19:29:09.428 INFO [26029]: QUERY_STRING = /member/viewCardAddAction -- 19:29:09.428 INFO [26029]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:29:09.464 INFO [26029]: COREGRADE is stopping... -- 19:29:09.464 DEBUG [26029]: Closing database connection -- 19:29:09.465 SQL [26029]: pgsql_close() -- 19:29:09.488 INFO [26029]: COREGRADE is starting... -- 19:29:09.488 INFO [26029]: Version from config: 1.0 -- 19:29:09.488 DEBUG [26029]: Connecting to database... -- 19:29:09.488 DEBUG [26029]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:09.488 SQL [26029]: pgsql_db_connect() -- 19:29:09.492 DEBUG [26029]: Database connection successful -- 19:29:09.492 INFO [26029]: _SERVER found -- 19:29:09.492 INFO [26029]: REMOTE_ADDR = 192.168.1.13 -- 19:29:09.492 INFO [26029]: SERVER_NAME = oameye.works.coregrade.com -- 19:29:09.492 INFO [26029]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ofltvalrchgth67qdohfb5uj0q9aqaro -- 19:29:09.492 INFO [26029]: QUERY_STRING = /member/upload -- 19:29:09.492 INFO [26029]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:29:09.528 INFO [26029]: COREGRADE is stopping... -- 19:29:09.528 DEBUG [26029]: Closing database connection -- 19:29:09.528 SQL [26029]: pgsql_close() -- 19:32:07.341 INFO [25979]: COREGRADE is starting... -- 19:32:07.342 INFO [25979]: Version from config: 1.0 -- 19:32:07.342 DEBUG [25979]: Connecting to database... -- 19:32:07.342 DEBUG [25979]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:32:07.342 SQL [25979]: pgsql_db_connect() -- 19:32:07.346 DEBUG [25979]: Database connection successful -- 19:32:07.346 INFO [25979]: _SERVER found -- 19:32:07.346 INFO [25979]: REMOTE_ADDR = 192.168.1.13 -- 19:32:07.346 INFO [25979]: SERVER_NAME = oameye.works.coregrade.com -- 19:32:07.346 INFO [25979]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ofltvalrchgth67qdohfb5uj0q9aqaro -- 19:32:07.346 INFO [25979]: QUERY_STRING = /member/viewCardAddAction -- 19:32:07.346 INFO [25979]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:32:07.381 INFO [25979]: COREGRADE is stopping... -- 19:32:07.381 DEBUG [25979]: Closing database connection -- 19:32:07.381 SQL [25979]: pgsql_close() -- 19:32:07.947 INFO [25979]: COREGRADE is starting... -- 19:32:07.947 INFO [25979]: Version from config: 1.0 -- 19:32:07.947 DEBUG [25979]: Connecting to database... -- 19:32:07.947 DEBUG [25979]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:32:07.947 SQL [25979]: pgsql_db_connect() -- 19:32:07.952 DEBUG [25979]: Database connection successful -- 19:32:07.952 INFO [25979]: _SERVER found -- 19:32:07.952 INFO [25979]: REMOTE_ADDR = 192.168.1.13 -- 19:32:07.952 INFO [25979]: SERVER_NAME = oameye.works.coregrade.com -- 19:32:07.952 INFO [25979]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ofltvalrchgth67qdohfb5uj0q9aqaro -- 19:32:07.952 INFO [25979]: QUERY_STRING = /member/viewCardAddAction -- 19:32:07.952 INFO [25979]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:32:07.984 INFO [25979]: COREGRADE is stopping... -- 19:32:07.984 DEBUG [25979]: Closing database connection -- 19:32:07.984 SQL [25979]: pgsql_close() -- 19:32:08.010 INFO [25979]: COREGRADE is starting... -- 19:32:08.010 INFO [25979]: Version from config: 1.0 -- 19:32:08.010 DEBUG [25979]: Connecting to database... -- 19:32:08.010 DEBUG [25979]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:32:08.010 SQL [25979]: pgsql_db_connect() -- 19:32:08.014 DEBUG [25979]: Database connection successful -- 19:32:08.015 INFO [25979]: _SERVER found -- 19:32:08.015 INFO [25979]: REMOTE_ADDR = 192.168.1.13 -- 19:32:08.015 INFO [25979]: SERVER_NAME = oameye.works.coregrade.com -- 19:32:08.015 INFO [25979]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ofltvalrchgth67qdohfb5uj0q9aqaro -- 19:32:08.015 INFO [25979]: QUERY_STRING = /member/upload -- 19:32:08.015 INFO [25979]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:32:08.047 INFO [25979]: COREGRADE is stopping... -- 19:32:08.048 DEBUG [25979]: Closing database connection -- 19:32:08.048 SQL [25979]: pgsql_close() -- 19:40:22.109 INFO [26030]: COREGRADE is starting... -- 19:40:22.110 INFO [26030]: Version from config: 1.0 -- 19:40:22.110 DEBUG [26030]: Connecting to database... -- 19:40:22.110 DEBUG [26030]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:40:22.110 SQL [26030]: pgsql_db_connect() -- 19:40:22.115 DEBUG [26030]: Database connection successful -- 19:40:22.115 INFO [26030]: _SERVER found -- 19:40:22.115 INFO [26030]: REMOTE_ADDR = 192.168.1.13 -- 19:40:22.115 INFO [26030]: SERVER_NAME = oameye.works.coregrade.com -- 19:40:22.115 INFO [26030]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ofltvalrchgth67qdohfb5uj0q9aqaro -- 19:40:22.115 INFO [26030]: QUERY_STRING = /member/viewCardAddAction -- 19:40:22.115 INFO [26030]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:40:22.153 INFO [26030]: COREGRADE is stopping... -- 19:40:22.153 DEBUG [26030]: Closing database connection -- 19:40:22.153 SQL [26030]: pgsql_close() -- 19:40:23.142 INFO [26030]: COREGRADE is starting... -- 19:40:23.142 INFO [26030]: Version from config: 1.0 -- 19:40:23.142 DEBUG [26030]: Connecting to database... -- 19:40:23.142 DEBUG [26030]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:40:23.142 SQL [26030]: pgsql_db_connect() -- 19:40:23.147 DEBUG [26030]: Database connection successful -- 19:40:23.147 INFO [26030]: _SERVER found -- 19:40:23.147 INFO [26030]: REMOTE_ADDR = 192.168.1.13 -- 19:40:23.147 INFO [26030]: SERVER_NAME = oameye.works.coregrade.com -- 19:40:23.147 INFO [26030]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ofltvalrchgth67qdohfb5uj0q9aqaro -- 19:40:23.147 INFO [26030]: QUERY_STRING = /member/viewCardAddAction -- 19:40:23.147 INFO [26030]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:40:23.178 INFO [26030]: COREGRADE is stopping... -- 19:40:23.178 DEBUG [26030]: Closing database connection -- 19:40:23.178 SQL [26030]: pgsql_close() -- 19:51:22.375 INFO [25978]: COREGRADE is starting... -- 19:51:22.376 INFO [25978]: Version from config: 1.0 -- 19:51:22.376 DEBUG [25978]: Connecting to database... -- 19:51:22.376 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:51:22.376 SQL [25978]: pgsql_db_connect() -- 19:51:22.381 DEBUG [25978]: Database connection successful -- 19:51:22.381 INFO [25978]: _SERVER found -- 19:51:22.381 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 19:51:22.381 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 19:51:22.381 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=ofltvalrchgth67qdohfb5uj0q9aqaro -- 19:51:22.381 INFO [25978]: QUERY_STRING = /member -- 19:51:22.381 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:51:22.427 INFO [25978]: COREGRADE is stopping... -- 19:51:22.427 DEBUG [25978]: Closing database connection -- 19:51:22.427 SQL [25978]: pgsql_close() -- 19:51:22.581 INFO [25978]: COREGRADE is starting... -- 19:51:22.581 INFO [25978]: Version from config: 1.0 -- 19:51:22.581 DEBUG [25978]: Connecting to database... -- 19:51:22.581 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:51:22.581 SQL [25978]: pgsql_db_connect() -- 19:51:22.586 DEBUG [25978]: Database connection successful -- 19:51:22.586 INFO [25978]: _SERVER found -- 19:51:22.586 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 19:51:22.586 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 19:51:22.586 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:51:22.586 INFO [25978]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:51:22.586 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:51:22.598 INFO [25978]: COREGRADE is stopping... -- 19:51:22.598 DEBUG [25978]: Closing database connection -- 19:51:22.598 SQL [25978]: pgsql_close() -- 19:51:23.749 INFO [25978]: COREGRADE is starting... -- 19:51:23.749 INFO [25978]: Version from config: 1.0 -- 19:51:23.749 DEBUG [25978]: Connecting to database... -- 19:51:23.749 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:51:23.749 SQL [25978]: pgsql_db_connect() -- 19:51:23.753 DEBUG [25978]: Database connection successful -- 19:51:23.753 INFO [25978]: _SERVER found -- 19:51:23.753 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 19:51:23.753 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 19:51:23.753 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:51:23.753 INFO [25978]: QUERY_STRING = /member/page -- 19:51:23.753 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:51:23.797 INFO [25978]: COREGRADE is stopping... -- 19:51:23.797 DEBUG [25978]: Closing database connection -- 19:51:23.797 SQL [25978]: pgsql_close() -- 19:51:23.903 INFO [25978]: COREGRADE is starting... -- 19:51:23.903 INFO [25978]: Version from config: 1.0 -- 19:51:23.903 DEBUG [25978]: Connecting to database... -- 19:51:23.903 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:51:23.903 SQL [25978]: pgsql_db_connect() -- 19:51:23.908 DEBUG [25978]: Database connection successful -- 19:51:23.908 INFO [25978]: _SERVER found -- 19:51:23.908 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 19:51:23.908 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 19:51:23.908 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:51:23.908 INFO [25978]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:51:23.908 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:51:23.919 INFO [25978]: COREGRADE is stopping... -- 19:51:23.919 DEBUG [25978]: Closing database connection -- 19:51:23.919 SQL [25978]: pgsql_close() -- 19:51:26.239 INFO [26031]: COREGRADE is starting... -- 19:51:26.239 INFO [26031]: Version from config: 1.0 -- 19:51:26.239 DEBUG [26031]: Connecting to database... -- 19:51:26.239 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:51:26.239 SQL [26031]: pgsql_db_connect() -- 19:51:26.244 DEBUG [26031]: Database connection successful -- 19:51:26.244 INFO [26031]: _SERVER found -- 19:51:26.244 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 19:51:26.244 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 19:51:26.244 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:51:26.244 INFO [26031]: QUERY_STRING = /member/viewCardAddAction -- 19:51:26.244 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:51:26.282 INFO [26031]: COREGRADE is stopping... -- 19:51:26.282 DEBUG [26031]: Closing database connection -- 19:51:26.282 SQL [26031]: pgsql_close() -- 19:51:26.309 INFO [26031]: COREGRADE is starting... -- 19:51:26.309 INFO [26031]: Version from config: 1.0 -- 19:51:26.309 DEBUG [26031]: Connecting to database... -- 19:51:26.309 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:51:26.309 SQL [26031]: pgsql_db_connect() -- 19:51:26.314 DEBUG [26031]: Database connection successful -- 19:51:26.314 INFO [26031]: _SERVER found -- 19:51:26.314 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 19:51:26.314 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 19:51:26.314 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:51:26.314 INFO [26031]: QUERY_STRING = /member/upload -- 19:51:26.314 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:51:26.347 INFO [26031]: COREGRADE is stopping... -- 19:51:26.347 DEBUG [26031]: Closing database connection -- 19:51:26.347 SQL [26031]: pgsql_close() -- 19:51:40.994 INFO [26043]: COREGRADE is starting... -- 19:51:40.995 INFO [26043]: Version from config: 1.0 -- 19:51:40.995 DEBUG [26043]: Connecting to database... -- 19:51:40.995 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:51:40.995 SQL [26043]: pgsql_db_connect() -- 19:51:40.999 DEBUG [26043]: Database connection successful -- 19:51:40.999 INFO [26043]: _SERVER found -- 19:51:40.999 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 19:51:40.999 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 19:51:40.999 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:51:40.999 INFO [26043]: QUERY_STRING = /member/page -- 19:51:40.999 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:51:41.047 INFO [26043]: COREGRADE is stopping... -- 19:51:41.047 DEBUG [26043]: Closing database connection -- 19:51:41.047 SQL [26043]: pgsql_close() -- 19:51:41.151 INFO [26043]: COREGRADE is starting... -- 19:51:41.151 INFO [26043]: Version from config: 1.0 -- 19:51:41.151 DEBUG [26043]: Connecting to database... -- 19:51:41.151 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:51:41.151 SQL [26043]: pgsql_db_connect() -- 19:51:41.156 DEBUG [26043]: Database connection successful -- 19:51:41.156 INFO [26043]: _SERVER found -- 19:51:41.156 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 19:51:41.156 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 19:51:41.156 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:51:41.156 INFO [26043]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:51:41.156 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:51:41.168 INFO [26043]: COREGRADE is stopping... -- 19:51:41.168 DEBUG [26043]: Closing database connection -- 19:51:41.168 SQL [26043]: pgsql_close() -- 19:51:42.581 INFO [26043]: COREGRADE is starting... -- 19:51:42.581 INFO [26043]: Version from config: 1.0 -- 19:51:42.581 DEBUG [26043]: Connecting to database... -- 19:51:42.581 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:51:42.581 SQL [26043]: pgsql_db_connect() -- 19:51:42.586 DEBUG [26043]: Database connection successful -- 19:51:42.586 INFO [26043]: _SERVER found -- 19:51:42.586 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 19:51:42.586 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 19:51:42.586 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:51:42.586 INFO [26043]: QUERY_STRING = /member/page -- 19:51:42.586 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:51:42.629 INFO [26043]: COREGRADE is stopping... -- 19:51:42.629 DEBUG [26043]: Closing database connection -- 19:51:42.629 SQL [26043]: pgsql_close() -- 19:51:42.742 INFO [26043]: COREGRADE is starting... -- 19:51:42.742 INFO [26043]: Version from config: 1.0 -- 19:51:42.742 DEBUG [26043]: Connecting to database... -- 19:51:42.742 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:51:42.742 SQL [26043]: pgsql_db_connect() -- 19:51:42.746 DEBUG [26043]: Database connection successful -- 19:51:42.746 INFO [26043]: _SERVER found -- 19:51:42.746 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 19:51:42.746 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 19:51:42.746 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:51:42.746 INFO [26043]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:51:42.746 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:51:42.758 INFO [26043]: COREGRADE is stopping... -- 19:51:42.758 DEBUG [26043]: Closing database connection -- 19:51:42.758 SQL [26043]: pgsql_close() -- 19:53:48.093 INFO [25976]: COREGRADE is starting... -- 19:53:48.093 INFO [25976]: Version from config: 1.0 -- 19:53:48.093 DEBUG [25976]: Connecting to database... -- 19:53:48.093 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:53:48.093 SQL [25976]: pgsql_db_connect() -- 19:53:48.097 DEBUG [25976]: Database connection successful -- 19:53:48.097 INFO [25976]: _SERVER found -- 19:53:48.097 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 19:53:48.097 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 19:53:48.097 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:53:48.097 INFO [25976]: QUERY_STRING = /member/viewCardAddAction -- 19:53:48.097 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:53:48.131 INFO [25976]: COREGRADE is stopping... -- 19:53:48.131 DEBUG [25976]: Closing database connection -- 19:53:48.131 SQL [25976]: pgsql_close() -- 19:53:48.780 INFO [25976]: COREGRADE is starting... -- 19:53:48.780 INFO [25976]: Version from config: 1.0 -- 19:53:48.780 DEBUG [25976]: Connecting to database... -- 19:53:48.780 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:53:48.780 SQL [25976]: pgsql_db_connect() -- 19:53:48.784 DEBUG [25976]: Database connection successful -- 19:53:48.784 INFO [25976]: _SERVER found -- 19:53:48.784 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 19:53:48.784 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 19:53:48.784 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:53:48.784 INFO [25976]: QUERY_STRING = /member/viewCardAddAction -- 19:53:48.784 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:53:48.816 INFO [25976]: COREGRADE is stopping... -- 19:53:48.816 DEBUG [25976]: Closing database connection -- 19:53:48.816 SQL [25976]: pgsql_close() -- 19:53:50.590 INFO [25976]: COREGRADE is starting... -- 19:53:50.590 INFO [25976]: Version from config: 1.0 -- 19:53:50.590 DEBUG [25976]: Connecting to database... -- 19:53:50.590 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:53:50.590 SQL [25976]: pgsql_db_connect() -- 19:53:50.594 DEBUG [25976]: Database connection successful -- 19:53:50.594 INFO [25976]: _SERVER found -- 19:53:50.594 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 19:53:50.594 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 19:53:50.594 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:53:50.594 INFO [25976]: QUERY_STRING = /member/addNotecard -- 19:53:50.594 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:53:50.625 INFO [25976]: COREGRADE is stopping... -- 19:53:50.626 DEBUG [25976]: Closing database connection -- 19:53:50.626 SQL [25976]: pgsql_close() -- 19:53:51.905 INFO [25976]: COREGRADE is starting... -- 19:53:51.905 INFO [25976]: Version from config: 1.0 -- 19:53:51.905 DEBUG [25976]: Connecting to database... -- 19:53:51.905 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:53:51.905 SQL [25976]: pgsql_db_connect() -- 19:53:51.909 DEBUG [25976]: Database connection successful -- 19:53:51.909 INFO [25976]: _SERVER found -- 19:53:51.909 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 19:53:51.909 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 19:53:51.909 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:53:51.909 INFO [25976]: QUERY_STRING = /member/addNotecard -- 19:53:51.909 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:53:51.940 INFO [25976]: COREGRADE is stopping... -- 19:53:51.940 DEBUG [25976]: Closing database connection -- 19:53:51.940 SQL [25976]: pgsql_close() -- 19:53:52.194 INFO [25976]: COREGRADE is starting... -- 19:53:52.194 INFO [25976]: Version from config: 1.0 -- 19:53:52.195 DEBUG [25976]: Connecting to database... -- 19:53:52.195 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:53:52.195 SQL [25976]: pgsql_db_connect() -- 19:53:52.199 DEBUG [25976]: Database connection successful -- 19:53:52.199 INFO [25976]: _SERVER found -- 19:53:52.199 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 19:53:52.199 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 19:53:52.199 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:53:52.199 INFO [25976]: QUERY_STRING = /member/addNotecard -- 19:53:52.199 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:53:52.230 INFO [25976]: COREGRADE is stopping... -- 19:53:52.230 DEBUG [25976]: Closing database connection -- 19:53:52.230 SQL [25976]: pgsql_close() -- 19:53:52.725 INFO [25976]: COREGRADE is starting... -- 19:53:52.726 INFO [25976]: Version from config: 1.0 -- 19:53:52.726 DEBUG [25976]: Connecting to database... -- 19:53:52.726 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:53:52.726 SQL [25976]: pgsql_db_connect() -- 19:53:52.730 DEBUG [25976]: Database connection successful -- 19:53:52.730 INFO [25976]: _SERVER found -- 19:53:52.730 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 19:53:52.730 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 19:53:52.730 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:53:52.730 INFO [25976]: QUERY_STRING = /member/addNotecard -- 19:53:52.730 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:53:52.761 INFO [25976]: COREGRADE is stopping... -- 19:53:52.761 DEBUG [25976]: Closing database connection -- 19:53:52.761 SQL [25976]: pgsql_close() -- 19:53:56.237 INFO [25976]: COREGRADE is starting... -- 19:53:56.237 INFO [25976]: Version from config: 1.0 -- 19:53:56.237 DEBUG [25976]: Connecting to database... -- 19:53:56.237 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:53:56.237 SQL [25976]: pgsql_db_connect() -- 19:53:56.241 DEBUG [25976]: Database connection successful -- 19:53:56.241 INFO [25976]: _SERVER found -- 19:53:56.241 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 19:53:56.241 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 19:53:56.241 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:53:56.241 INFO [25976]: QUERY_STRING = /member/addNotecard -- 19:53:56.241 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:53:56.272 INFO [25976]: COREGRADE is stopping... -- 19:53:56.272 DEBUG [25976]: Closing database connection -- 19:53:56.272 SQL [25976]: pgsql_close() -- 19:53:57.770 INFO [25976]: COREGRADE is starting... -- 19:53:57.770 INFO [25976]: Version from config: 1.0 -- 19:53:57.770 DEBUG [25976]: Connecting to database... -- 19:53:57.770 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:53:57.770 SQL [25976]: pgsql_db_connect() -- 19:53:57.774 DEBUG [25976]: Database connection successful -- 19:53:57.774 INFO [25976]: _SERVER found -- 19:53:57.774 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 19:53:57.774 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 19:53:57.774 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:53:57.774 INFO [25976]: QUERY_STRING = /member/viewCardAddAction -- 19:53:57.774 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:53:57.805 INFO [25976]: COREGRADE is stopping... -- 19:53:57.805 DEBUG [25976]: Closing database connection -- 19:53:57.805 SQL [25976]: pgsql_close() -- 19:53:59.937 INFO [25976]: COREGRADE is starting... -- 19:53:59.937 INFO [25976]: Version from config: 1.0 -- 19:53:59.937 DEBUG [25976]: Connecting to database... -- 19:53:59.937 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:53:59.937 SQL [25976]: pgsql_db_connect() -- 19:53:59.941 DEBUG [25976]: Database connection successful -- 19:53:59.941 INFO [25976]: _SERVER found -- 19:53:59.941 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 19:53:59.941 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 19:53:59.941 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:53:59.941 INFO [25976]: QUERY_STRING = /member/addNotecard -- 19:53:59.941 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:53:59.972 INFO [25976]: COREGRADE is stopping... -- 19:53:59.972 DEBUG [25976]: Closing database connection -- 19:53:59.972 SQL [25976]: pgsql_close() -- 19:54:03.675 INFO [25976]: COREGRADE is starting... -- 19:54:03.675 INFO [25976]: Version from config: 1.0 -- 19:54:03.675 DEBUG [25976]: Connecting to database... -- 19:54:03.675 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:54:03.675 SQL [25976]: pgsql_db_connect() -- 19:54:03.711 INFO [25976]: COREGRADE is starting... -- 19:54:03.711 INFO [25976]: Version from config: 1.0 -- 19:54:03.711 DEBUG [25976]: Connecting to database... -- 19:54:03.711 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:54:03.711 SQL [25976]: pgsql_db_connect() -- 19:54:03.715 DEBUG [25976]: Database connection successful -- 19:54:03.715 INFO [25976]: _SERVER found -- 19:54:03.715 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 19:54:03.715 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 19:54:03.715 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:54:03.715 INFO [25976]: QUERY_STRING = -- 19:54:03.715 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:54:03.715 INFO [25976]: SystemStatus()09-09-********~************ -- 19:54:03.715 INFO [25976]: long coregrade_api_main(CVars in, CVars &out) -- 19:54:03.715 INFO [25976]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 19:54:03.715 INFO [25976]: account calls -- 19:54:03.715 INFO [25976]: account_calls() -- 19:54:03.715 INFO [25976]: AddPageCard() -- 19:54:03.715 FLOG_MAX [25976]: REQ_STRING(title) -- 19:54:03.715 FLOG_MAX [25976]: REQ_STRING(item_type) -- 19:54:03.715 FLOG_MAX [25976]: REQ_STRING(sessionid) -- 19:54:03.715 FLOG_MAX [25976]: REQ_STRING(detail) -- 19:54:03.715 FLOG_MAX [25976]: insert_db_record() -- 19:54:03.715 SQL [25976]: pgsql_exec() -- 19:54:03.715 SQL [25976]: About to run query: -- 19:54:03.715 SQL [25976]: INSERT INTO members_page_item (detail,item_type,member_id,page_id,title) VALUES ('dhdhdd','NOTECARD','5','7','dddddh') -- 19:54:03.720 SQL [25976]: PQcmdTuples: 1 -- 19:54:03.720 SQL [25976]: Affected rows: 1 -- 19:54:03.720 FLOG_MAX [25976]: SELECT currval('members_page_item_id_seq') -- 19:54:03.720 SQL [25976]: pgsql_query() -- 19:54:03.720 SQL [25976]: About to run query: -- 19:54:03.720 SQL [25976]: SELECT currval('members_page_item_id_seq') -- 19:54:03.720 SQL [25976]: Found rows: 1 -- 19:54:03.720 INFO [25976]: /AddPageCard() -- 19:54:03.720 INFO [25976]: RET: page_item_id=32 -- 19:54:03.720 INFO [25976]: RET: result=YES I GET TO BACK END -- 19:54:03.720 INFO [25976]: COREGRADE is stopping... -- 19:54:03.720 DEBUG [25976]: Closing database connection -- 19:54:03.720 SQL [25976]: pgsql_close() -- 19:54:03.679 DEBUG [25976]: Database connection successful -- 19:54:03.679 INFO [25976]: _SERVER found -- 19:54:03.679 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 19:54:03.679 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 19:54:03.679 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:54:03.679 INFO [25976]: QUERY_STRING = /member/addNotecard -- 19:54:03.679 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:54:03.721 INFO [25976]: COREGRADE is stopping... -- 19:54:03.721 DEBUG [25976]: Closing database connection -- 19:54:03.721 SQL [25976]: pgsql_close() -- 19:54:07.721 INFO [25976]: COREGRADE is starting... -- 19:54:07.721 INFO [25976]: Version from config: 1.0 -- 19:54:07.721 DEBUG [25976]: Connecting to database... -- 19:54:07.721 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:54:07.721 SQL [25976]: pgsql_db_connect() -- 19:54:07.756 INFO [25976]: COREGRADE is starting... -- 19:54:07.757 INFO [25976]: Version from config: 1.0 -- 19:54:07.757 DEBUG [25976]: Connecting to database... -- 19:54:07.757 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:54:07.757 SQL [25976]: pgsql_db_connect() -- 19:54:07.761 DEBUG [25976]: Database connection successful -- 19:54:07.761 INFO [25976]: _SERVER found -- 19:54:07.761 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 19:54:07.761 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 19:54:07.761 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:54:07.761 INFO [25976]: QUERY_STRING = -- 19:54:07.761 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:54:07.761 INFO [25976]: SystemStatus()09-09-********~************ -- 19:54:07.761 INFO [25976]: long coregrade_api_main(CVars in, CVars &out) -- 19:54:07.761 INFO [25976]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 19:54:07.761 INFO [25976]: account calls -- 19:54:07.761 INFO [25976]: account_calls() -- 19:54:07.761 INFO [25976]: AddPageCard() -- 19:54:07.761 FLOG_MAX [25976]: REQ_STRING(title) -- 19:54:07.761 FLOG_MAX [25976]: REQ_STRING(item_type) -- 19:54:07.761 FLOG_MAX [25976]: REQ_STRING(sessionid) -- 19:54:07.761 FLOG_MAX [25976]: REQ_STRING(detail) -- 19:54:07.761 FLOG_MAX [25976]: insert_db_record() -- 19:54:07.761 SQL [25976]: pgsql_exec() -- 19:54:07.761 SQL [25976]: About to run query: -- 19:54:07.761 SQL [25976]: INSERT INTO members_page_item (detail,item_type,member_id,page_id,title) VALUES ('dhdhdd','NOTECARD','5','7','dddddh') -- 19:54:07.766 SQL [25976]: PQcmdTuples: 1 -- 19:54:07.766 SQL [25976]: Affected rows: 1 -- 19:54:07.766 FLOG_MAX [25976]: SELECT currval('members_page_item_id_seq') -- 19:54:07.766 SQL [25976]: pgsql_query() -- 19:54:07.766 SQL [25976]: About to run query: -- 19:54:07.766 SQL [25976]: SELECT currval('members_page_item_id_seq') -- 19:54:07.766 SQL [25976]: Found rows: 1 -- 19:54:07.766 INFO [25976]: /AddPageCard() -- 19:54:07.766 INFO [25976]: RET: page_item_id=33 -- 19:54:07.766 INFO [25976]: RET: result=YES I GET TO BACK END -- 19:54:07.767 INFO [25976]: COREGRADE is stopping... -- 19:54:07.767 DEBUG [25976]: Closing database connection -- 19:54:07.767 SQL [25976]: pgsql_close() -- 19:54:07.725 DEBUG [25976]: Database connection successful -- 19:54:07.725 INFO [25976]: _SERVER found -- 19:54:07.725 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 19:54:07.725 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 19:54:07.725 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:54:07.725 INFO [25976]: QUERY_STRING = /member/addNotecard -- 19:54:07.725 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:54:07.767 INFO [25976]: COREGRADE is stopping... -- 19:54:07.767 DEBUG [25976]: Closing database connection -- 19:54:07.767 SQL [25976]: pgsql_close() -- 19:54:08.276 INFO [25976]: COREGRADE is starting... -- 19:54:08.276 INFO [25976]: Version from config: 1.0 -- 19:54:08.276 DEBUG [25976]: Connecting to database... -- 19:54:08.276 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:54:08.276 SQL [25976]: pgsql_db_connect() -- 19:54:08.312 INFO [25976]: COREGRADE is starting... -- 19:54:08.312 INFO [25976]: Version from config: 1.0 -- 19:54:08.312 DEBUG [25976]: Connecting to database... -- 19:54:08.312 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:54:08.312 SQL [25976]: pgsql_db_connect() -- 19:54:08.316 DEBUG [25976]: Database connection successful -- 19:54:08.316 INFO [25976]: _SERVER found -- 19:54:08.316 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 19:54:08.316 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 19:54:08.316 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:54:08.316 INFO [25976]: QUERY_STRING = -- 19:54:08.316 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:54:08.316 INFO [25976]: SystemStatus()09-09-********~************ -- 19:54:08.316 INFO [25976]: long coregrade_api_main(CVars in, CVars &out) -- 19:54:08.316 INFO [25976]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 19:54:08.316 INFO [25976]: account calls -- 19:54:08.316 INFO [25976]: account_calls() -- 19:54:08.316 INFO [25976]: AddPageCard() -- 19:54:08.316 FLOG_MAX [25976]: REQ_STRING(title) -- 19:54:08.316 FLOG_MAX [25976]: REQ_STRING(item_type) -- 19:54:08.316 FLOG_MAX [25976]: REQ_STRING(sessionid) -- 19:54:08.316 FLOG_MAX [25976]: REQ_STRING(detail) -- 19:54:08.316 FLOG_MAX [25976]: insert_db_record() -- 19:54:08.316 SQL [25976]: pgsql_exec() -- 19:54:08.316 SQL [25976]: About to run query: -- 19:54:08.316 SQL [25976]: INSERT INTO members_page_item (detail,item_type,member_id,page_id,title) VALUES ('dhdhdd','NOTECARD','5','7','dddddh') -- 19:54:08.321 SQL [25976]: PQcmdTuples: 1 -- 19:54:08.321 SQL [25976]: Affected rows: 1 -- 19:54:08.321 FLOG_MAX [25976]: SELECT currval('members_page_item_id_seq') -- 19:54:08.321 SQL [25976]: pgsql_query() -- 19:54:08.321 SQL [25976]: About to run query: -- 19:54:08.321 SQL [25976]: SELECT currval('members_page_item_id_seq') -- 19:54:08.321 SQL [25976]: Found rows: 1 -- 19:54:08.321 INFO [25976]: /AddPageCard() -- 19:54:08.321 INFO [25976]: RET: page_item_id=34 -- 19:54:08.321 INFO [25976]: RET: result=YES I GET TO BACK END -- 19:54:08.321 INFO [25976]: COREGRADE is stopping... -- 19:54:08.321 DEBUG [25976]: Closing database connection -- 19:54:08.321 SQL [25976]: pgsql_close() -- 19:54:08.280 DEBUG [25976]: Database connection successful -- 19:54:08.280 INFO [25976]: _SERVER found -- 19:54:08.280 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 19:54:08.280 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 19:54:08.280 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:54:08.280 INFO [25976]: QUERY_STRING = /member/addNotecard -- 19:54:08.280 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:54:08.322 INFO [25976]: COREGRADE is stopping... -- 19:54:08.322 DEBUG [25976]: Closing database connection -- 19:54:08.322 SQL [25976]: pgsql_close() -- 19:55:26.437 INFO [25980]: COREGRADE is starting... -- 19:55:26.438 INFO [25980]: Version from config: 1.0 -- 19:55:26.438 DEBUG [25980]: Connecting to database... -- 19:55:26.438 DEBUG [25980]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:26.438 SQL [25980]: pgsql_db_connect() -- 19:55:26.442 DEBUG [25980]: Database connection successful -- 19:55:26.442 INFO [25980]: _SERVER found -- 19:55:26.442 INFO [25980]: REMOTE_ADDR = 192.168.1.13 -- 19:55:26.442 INFO [25980]: SERVER_NAME = oameye.works.coregrade.com -- 19:55:26.442 INFO [25980]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:55:26.442 INFO [25980]: QUERY_STRING = /member/page -- 19:55:26.442 INFO [25980]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:55:26.487 INFO [25980]: COREGRADE is stopping... -- 19:55:26.488 DEBUG [25980]: Closing database connection -- 19:55:26.488 SQL [25980]: pgsql_close() -- 19:55:26.584 INFO [25980]: COREGRADE is starting... -- 19:55:26.584 INFO [25980]: Version from config: 1.0 -- 19:55:26.584 DEBUG [25980]: Connecting to database... -- 19:55:26.584 DEBUG [25980]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:26.584 SQL [25980]: pgsql_db_connect() -- 19:55:26.588 DEBUG [25980]: Database connection successful -- 19:55:26.588 INFO [25980]: _SERVER found -- 19:55:26.588 INFO [25980]: REMOTE_ADDR = 192.168.1.13 -- 19:55:26.588 INFO [25980]: SERVER_NAME = oameye.works.coregrade.com -- 19:55:26.588 INFO [25980]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:55:26.588 INFO [25980]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:55:26.588 INFO [25980]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:55:26.600 INFO [25980]: COREGRADE is stopping... -- 19:55:26.600 DEBUG [25980]: Closing database connection -- 19:55:26.600 SQL [25980]: pgsql_close() -- 19:55:33.505 INFO [25983]: COREGRADE is starting... -- 19:55:33.505 INFO [25983]: Version from config: 1.0 -- 19:55:33.505 DEBUG [25983]: Connecting to database... -- 19:55:33.505 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:33.505 SQL [25983]: pgsql_db_connect() -- 19:55:33.509 DEBUG [25983]: Database connection successful -- 19:55:33.509 INFO [25983]: _SERVER found -- 19:55:33.509 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 19:55:33.509 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 19:55:33.509 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:55:33.509 INFO [25983]: QUERY_STRING = /member/viewCardAddAction -- 19:55:33.509 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:55:33.544 INFO [25983]: COREGRADE is stopping... -- 19:55:33.545 DEBUG [25983]: Closing database connection -- 19:55:33.545 SQL [25983]: pgsql_close() -- 19:55:33.568 INFO [25983]: COREGRADE is starting... -- 19:55:33.568 INFO [25983]: Version from config: 1.0 -- 19:55:33.568 DEBUG [25983]: Connecting to database... -- 19:55:33.568 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:33.568 SQL [25983]: pgsql_db_connect() -- 19:55:33.572 DEBUG [25983]: Database connection successful -- 19:55:33.572 INFO [25983]: _SERVER found -- 19:55:33.572 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 19:55:33.572 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 19:55:33.572 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:55:33.572 INFO [25983]: QUERY_STRING = /member/upload -- 19:55:33.572 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:55:33.607 INFO [25983]: COREGRADE is stopping... -- 19:55:33.607 DEBUG [25983]: Closing database connection -- 19:55:33.607 SQL [25983]: pgsql_close() -- 19:55:40.012 INFO [26029]: COREGRADE is starting... -- 19:55:40.012 INFO [26029]: Version from config: 1.0 -- 19:55:40.012 DEBUG [26029]: Connecting to database... -- 19:55:40.012 DEBUG [26029]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:40.012 SQL [26029]: pgsql_db_connect() -- 19:55:40.017 DEBUG [26029]: Database connection successful -- 19:55:40.017 INFO [26029]: _SERVER found -- 19:55:40.017 INFO [26029]: REMOTE_ADDR = 192.168.1.13 -- 19:55:40.017 INFO [26029]: SERVER_NAME = oameye.works.coregrade.com -- 19:55:40.017 INFO [26029]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:55:40.017 INFO [26029]: QUERY_STRING = /member/page -- 19:55:40.017 INFO [26029]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:55:40.063 INFO [26029]: COREGRADE is stopping... -- 19:55:40.063 DEBUG [26029]: Closing database connection -- 19:55:40.063 SQL [26029]: pgsql_close() -- 19:55:40.191 INFO [26029]: COREGRADE is starting... -- 19:55:40.191 INFO [26029]: Version from config: 1.0 -- 19:55:40.191 DEBUG [26029]: Connecting to database... -- 19:55:40.191 DEBUG [26029]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:40.191 SQL [26029]: pgsql_db_connect() -- 19:55:40.195 DEBUG [26029]: Database connection successful -- 19:55:40.195 INFO [26029]: _SERVER found -- 19:55:40.195 INFO [26029]: REMOTE_ADDR = 192.168.1.13 -- 19:55:40.195 INFO [26029]: SERVER_NAME = oameye.works.coregrade.com -- 19:55:40.195 INFO [26029]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:55:40.195 INFO [26029]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:55:40.195 INFO [26029]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:55:40.206 INFO [26029]: COREGRADE is stopping... -- 19:55:40.206 DEBUG [26029]: Closing database connection -- 19:55:40.206 SQL [26029]: pgsql_close() -- 19:55:41.818 INFO [26029]: COREGRADE is starting... -- 19:55:41.818 INFO [26029]: Version from config: 1.0 -- 19:55:41.818 DEBUG [26029]: Connecting to database... -- 19:55:41.818 DEBUG [26029]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:41.818 SQL [26029]: pgsql_db_connect() -- 19:55:41.822 DEBUG [26029]: Database connection successful -- 19:55:41.822 INFO [26029]: _SERVER found -- 19:55:41.822 INFO [26029]: REMOTE_ADDR = 192.168.1.13 -- 19:55:41.822 INFO [26029]: SERVER_NAME = oameye.works.coregrade.com -- 19:55:41.822 INFO [26029]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:55:41.822 INFO [26029]: QUERY_STRING = /member/page -- 19:55:41.822 INFO [26029]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:55:41.863 INFO [26029]: COREGRADE is stopping... -- 19:55:41.863 DEBUG [26029]: Closing database connection -- 19:55:41.863 SQL [26029]: pgsql_close() -- 19:55:41.951 INFO [26029]: COREGRADE is starting... -- 19:55:41.951 INFO [26029]: Version from config: 1.0 -- 19:55:41.951 DEBUG [26029]: Connecting to database... -- 19:55:41.951 DEBUG [26029]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:41.951 SQL [26029]: pgsql_db_connect() -- 19:55:41.955 DEBUG [26029]: Database connection successful -- 19:55:41.955 INFO [26029]: _SERVER found -- 19:55:41.955 INFO [26029]: REMOTE_ADDR = 192.168.1.13 -- 19:55:41.955 INFO [26029]: SERVER_NAME = oameye.works.coregrade.com -- 19:55:41.955 INFO [26029]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:55:41.955 INFO [26029]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:55:41.955 INFO [26029]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:55:41.966 INFO [26029]: COREGRADE is stopping... -- 19:55:41.966 DEBUG [26029]: Closing database connection -- 19:55:41.966 SQL [26029]: pgsql_close() -- 19:55:56.840 INFO [25979]: COREGRADE is starting... -- 19:55:56.841 INFO [25979]: Version from config: 1.0 -- 19:55:56.841 DEBUG [25979]: Connecting to database... -- 19:55:56.841 DEBUG [25979]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:56.841 SQL [25979]: pgsql_db_connect() -- 19:55:56.845 DEBUG [25979]: Database connection successful -- 19:55:56.845 INFO [25979]: _SERVER found -- 19:55:56.845 INFO [25979]: REMOTE_ADDR = 192.168.1.13 -- 19:55:56.845 INFO [25979]: SERVER_NAME = oameye.works.coregrade.com -- 19:55:56.845 INFO [25979]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:55:56.845 INFO [25979]: QUERY_STRING = /member/viewCardAddAction -- 19:55:56.845 INFO [25979]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:55:56.877 INFO [25979]: COREGRADE is stopping... -- 19:55:56.877 DEBUG [25979]: Closing database connection -- 19:55:56.877 SQL [25979]: pgsql_close() -- 19:56:07.789 INFO [26030]: COREGRADE is starting... -- 19:56:07.789 INFO [26030]: Version from config: 1.0 -- 19:56:07.789 DEBUG [26030]: Connecting to database... -- 19:56:07.789 DEBUG [26030]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:07.789 SQL [26030]: pgsql_db_connect() -- 19:56:07.825 INFO [26030]: COREGRADE is starting... -- 19:56:07.825 INFO [26030]: Version from config: 1.0 -- 19:56:07.825 DEBUG [26030]: Connecting to database... -- 19:56:07.825 DEBUG [26030]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:07.825 SQL [26030]: pgsql_db_connect() -- 19:56:07.829 DEBUG [26030]: Database connection successful -- 19:56:07.829 INFO [26030]: _SERVER found -- 19:56:07.829 INFO [26030]: REMOTE_ADDR = 192.168.1.13 -- 19:56:07.829 INFO [26030]: SERVER_NAME = oameye.works.coregrade.com -- 19:56:07.829 INFO [26030]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:56:07.829 INFO [26030]: QUERY_STRING = -- 19:56:07.829 INFO [26030]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:07.829 INFO [26030]: SystemStatus()09-09-********~************ -- 19:56:07.829 INFO [26030]: long coregrade_api_main(CVars in, CVars &out) -- 19:56:07.829 INFO [26030]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 19:56:07.829 INFO [26030]: account calls -- 19:56:07.829 INFO [26030]: account_calls() -- 19:56:07.829 INFO [26030]: AddPageCard() -- 19:56:07.829 FLOG_MAX [26030]: REQ_STRING(title) -- 19:56:07.829 FLOG_MAX [26030]: REQ_STRING(item_type) -- 19:56:07.829 FLOG_MAX [26030]: REQ_STRING(sessionid) -- 19:56:07.829 FLOG_MAX [26030]: REQ_STRING(detail) -- 19:56:07.829 FLOG_MAX [26030]: insert_db_record() -- 19:56:07.829 SQL [26030]: pgsql_exec() -- 19:56:07.829 SQL [26030]: About to run query: -- 19:56:07.829 SQL [26030]: INSERT INTO members_page_item (detail,item_type,member_id,page_id,title) VALUES ('This is a new note','NOTECARD','5','7','This is a new notw') -- 19:56:07.834 SQL [26030]: PQcmdTuples: 1 -- 19:56:07.834 SQL [26030]: Affected rows: 1 -- 19:56:07.834 FLOG_MAX [26030]: SELECT currval('members_page_item_id_seq') -- 19:56:07.834 SQL [26030]: pgsql_query() -- 19:56:07.834 SQL [26030]: About to run query: -- 19:56:07.834 SQL [26030]: SELECT currval('members_page_item_id_seq') -- 19:56:07.834 SQL [26030]: Found rows: 1 -- 19:56:07.834 INFO [26030]: /AddPageCard() -- 19:56:07.834 INFO [26030]: RET: page_item_id=35 -- 19:56:07.834 INFO [26030]: RET: result=YES I GET TO BACK END -- 19:56:07.834 INFO [26030]: COREGRADE is stopping... -- 19:56:07.834 DEBUG [26030]: Closing database connection -- 19:56:07.834 SQL [26030]: pgsql_close() -- 19:56:07.793 DEBUG [26030]: Database connection successful -- 19:56:07.793 INFO [26030]: _SERVER found -- 19:56:07.793 INFO [26030]: REMOTE_ADDR = 192.168.1.13 -- 19:56:07.793 INFO [26030]: SERVER_NAME = oameye.works.coregrade.com -- 19:56:07.793 INFO [26030]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:56:07.793 INFO [26030]: QUERY_STRING = /member/addNotecard -- 19:56:07.793 INFO [26030]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:07.835 INFO [26030]: COREGRADE is stopping... -- 19:56:07.835 DEBUG [26030]: Closing database connection -- 19:56:07.835 SQL [26030]: pgsql_close() -- 19:56:09.082 INFO [26030]: COREGRADE is starting... -- 19:56:09.082 INFO [26030]: Version from config: 1.0 -- 19:56:09.082 DEBUG [26030]: Connecting to database... -- 19:56:09.082 DEBUG [26030]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:09.082 SQL [26030]: pgsql_db_connect() -- 19:56:09.117 INFO [26030]: COREGRADE is starting... -- 19:56:09.117 INFO [26030]: Version from config: 1.0 -- 19:56:09.117 DEBUG [26030]: Connecting to database... -- 19:56:09.117 DEBUG [26030]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:09.117 SQL [26030]: pgsql_db_connect() -- 19:56:09.121 DEBUG [26030]: Database connection successful -- 19:56:09.121 INFO [26030]: _SERVER found -- 19:56:09.121 INFO [26030]: REMOTE_ADDR = 192.168.1.13 -- 19:56:09.121 INFO [26030]: SERVER_NAME = oameye.works.coregrade.com -- 19:56:09.121 INFO [26030]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:56:09.121 INFO [26030]: QUERY_STRING = -- 19:56:09.121 INFO [26030]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:09.121 INFO [26030]: SystemStatus()09-09-********~************ -- 19:56:09.121 INFO [26030]: long coregrade_api_main(CVars in, CVars &out) -- 19:56:09.121 INFO [26030]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 19:56:09.121 INFO [26030]: account calls -- 19:56:09.121 INFO [26030]: account_calls() -- 19:56:09.121 INFO [26030]: AddPageCard() -- 19:56:09.121 FLOG_MAX [26030]: REQ_STRING(title) -- 19:56:09.121 FLOG_MAX [26030]: REQ_STRING(item_type) -- 19:56:09.121 FLOG_MAX [26030]: REQ_STRING(sessionid) -- 19:56:09.121 FLOG_MAX [26030]: REQ_STRING(detail) -- 19:56:09.121 FLOG_MAX [26030]: insert_db_record() -- 19:56:09.121 SQL [26030]: pgsql_exec() -- 19:56:09.121 SQL [26030]: About to run query: -- 19:56:09.121 SQL [26030]: INSERT INTO members_page_item (detail,item_type,member_id,page_id,title) VALUES ('This is a new note','NOTECARD','5','7','This is a new notw') -- 19:56:09.126 SQL [26030]: PQcmdTuples: 1 -- 19:56:09.126 SQL [26030]: Affected rows: 1 -- 19:56:09.126 FLOG_MAX [26030]: SELECT currval('members_page_item_id_seq') -- 19:56:09.126 SQL [26030]: pgsql_query() -- 19:56:09.126 SQL [26030]: About to run query: -- 19:56:09.126 SQL [26030]: SELECT currval('members_page_item_id_seq') -- 19:56:09.126 SQL [26030]: Found rows: 1 -- 19:56:09.126 INFO [26030]: /AddPageCard() -- 19:56:09.126 INFO [26030]: RET: page_item_id=36 -- 19:56:09.126 INFO [26030]: RET: result=YES I GET TO BACK END -- 19:56:09.126 INFO [26030]: COREGRADE is stopping... -- 19:56:09.127 DEBUG [26030]: Closing database connection -- 19:56:09.127 SQL [26030]: pgsql_close() -- 19:56:09.086 DEBUG [26030]: Database connection successful -- 19:56:09.086 INFO [26030]: _SERVER found -- 19:56:09.086 INFO [26030]: REMOTE_ADDR = 192.168.1.13 -- 19:56:09.086 INFO [26030]: SERVER_NAME = oameye.works.coregrade.com -- 19:56:09.086 INFO [26030]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:56:09.086 INFO [26030]: QUERY_STRING = /member/addNotecard -- 19:56:09.086 INFO [26030]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:09.127 INFO [26030]: COREGRADE is stopping... -- 19:56:09.127 DEBUG [26030]: Closing database connection -- 19:56:09.127 SQL [26030]: pgsql_close() -- 19:56:23.903 INFO [25978]: COREGRADE is starting... -- 19:56:23.904 INFO [25978]: Version from config: 1.0 -- 19:56:23.904 DEBUG [25978]: Connecting to database... -- 19:56:23.904 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:23.904 SQL [25978]: pgsql_db_connect() -- 19:56:23.908 DEBUG [25978]: Database connection successful -- 19:56:23.908 INFO [25978]: _SERVER found -- 19:56:23.908 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 19:56:23.908 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 19:56:23.908 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=iqlvm5ra3cutu49g7bkefi9h0ivihutp -- 19:56:23.908 INFO [25978]: QUERY_STRING = /member/page -- 19:56:23.908 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:23.952 INFO [25978]: COREGRADE is stopping... -- 19:56:23.952 DEBUG [25978]: Closing database connection -- 19:56:23.952 SQL [25978]: pgsql_close() -- 19:56:24.062 INFO [25978]: COREGRADE is starting... -- 19:56:24.062 INFO [25978]: Version from config: 1.0 -- 19:56:24.062 DEBUG [25978]: Connecting to database... -- 19:56:24.062 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:24.063 SQL [25978]: pgsql_db_connect() -- 19:56:24.066 DEBUG [25978]: Database connection successful -- 19:56:24.066 INFO [25978]: _SERVER found -- 19:56:24.066 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 19:56:24.066 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 19:56:24.066 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=5go4m4v5jm8tgfv8d7a6ria3nr6koms7 -- 19:56:24.066 INFO [25978]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:56:24.066 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:24.078 INFO [25978]: COREGRADE is stopping... -- 19:56:24.078 DEBUG [25978]: Closing database connection -- 19:56:24.078 SQL [25978]: pgsql_close() -- 19:56:27.677 INFO [25978]: COREGRADE is starting... -- 19:56:27.678 INFO [25978]: Version from config: 1.0 -- 19:56:27.678 DEBUG [25978]: Connecting to database... -- 19:56:27.678 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:27.678 SQL [25978]: pgsql_db_connect() -- 19:56:27.682 DEBUG [25978]: Database connection successful -- 19:56:27.682 INFO [25978]: _SERVER found -- 19:56:27.682 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 19:56:27.682 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 19:56:27.682 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=5go4m4v5jm8tgfv8d7a6ria3nr6koms7 -- 19:56:27.682 INFO [25978]: QUERY_STRING = /member/viewCardAddAction -- 19:56:27.682 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:27.713 INFO [25978]: COREGRADE is stopping... -- 19:56:27.713 DEBUG [25978]: Closing database connection -- 19:56:27.713 SQL [25978]: pgsql_close() -- 19:58:29.767 INFO [25977]: COREGRADE is starting... -- 19:58:29.767 INFO [25977]: Version from config: 1.0 -- 19:58:29.767 DEBUG [25977]: Connecting to database... -- 19:58:29.767 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:29.767 SQL [25977]: pgsql_db_connect() -- 19:58:29.771 DEBUG [25977]: Database connection successful -- 19:58:29.771 INFO [25977]: _SERVER found -- 19:58:29.771 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 19:58:29.771 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:29.771 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=5go4m4v5jm8tgfv8d7a6ria3nr6koms7 -- 19:58:29.771 INFO [25977]: QUERY_STRING = /member -- 19:58:29.771 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:29.815 INFO [25977]: COREGRADE is stopping... -- 19:58:29.815 DEBUG [25977]: Closing database connection -- 19:58:29.815 SQL [25977]: pgsql_close() -- 19:58:29.939 INFO [25977]: COREGRADE is starting... -- 19:58:29.939 INFO [25977]: Version from config: 1.0 -- 19:58:29.939 DEBUG [25977]: Connecting to database... -- 19:58:29.939 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:29.939 SQL [25977]: pgsql_db_connect() -- 19:58:29.943 DEBUG [25977]: Database connection successful -- 19:58:29.943 INFO [25977]: _SERVER found -- 19:58:29.943 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 19:58:29.943 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:29.943 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=5go4m4v5jm8tgfv8d7a6ria3nr6koms7 -- 19:58:29.943 INFO [25977]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:58:29.943 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:29.954 INFO [25977]: COREGRADE is stopping... -- 19:58:29.954 DEBUG [25977]: Closing database connection -- 19:58:29.954 SQL [25977]: pgsql_close() -- 19:58:31.061 INFO [25977]: COREGRADE is starting... -- 19:58:31.062 INFO [25977]: Version from config: 1.0 -- 19:58:31.062 DEBUG [25977]: Connecting to database... -- 19:58:31.062 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:31.062 SQL [25977]: pgsql_db_connect() -- 19:58:31.066 DEBUG [25977]: Database connection successful -- 19:58:31.066 INFO [25977]: _SERVER found -- 19:58:31.066 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 19:58:31.066 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:31.066 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=5go4m4v5jm8tgfv8d7a6ria3nr6koms7 -- 19:58:31.066 INFO [25977]: QUERY_STRING = /member/page -- 19:58:31.066 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:31.108 INFO [25977]: COREGRADE is stopping... -- 19:58:31.108 DEBUG [25977]: Closing database connection -- 19:58:31.108 SQL [25977]: pgsql_close() -- 19:58:31.213 INFO [25977]: COREGRADE is starting... -- 19:58:31.214 INFO [25977]: Version from config: 1.0 -- 19:58:31.214 DEBUG [25977]: Connecting to database... -- 19:58:31.214 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:31.214 SQL [25977]: pgsql_db_connect() -- 19:58:31.218 DEBUG [25977]: Database connection successful -- 19:58:31.218 INFO [25977]: _SERVER found -- 19:58:31.218 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 19:58:31.218 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:31.218 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=5go4m4v5jm8tgfv8d7a6ria3nr6koms7 -- 19:58:31.218 INFO [25977]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:58:31.218 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:31.229 INFO [25977]: COREGRADE is stopping... -- 19:58:31.229 DEBUG [25977]: Closing database connection -- 19:58:31.229 SQL [25977]: pgsql_close() -- 19:58:33.755 INFO [25977]: COREGRADE is starting... -- 19:58:33.755 INFO [25977]: Version from config: 1.0 -- 19:58:33.755 DEBUG [25977]: Connecting to database... -- 19:58:33.755 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:33.755 SQL [25977]: pgsql_db_connect() -- 19:58:33.759 DEBUG [25977]: Database connection successful -- 19:58:33.759 INFO [25977]: _SERVER found -- 19:58:33.759 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 19:58:33.759 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:33.759 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=5go4m4v5jm8tgfv8d7a6ria3nr6koms7 -- 19:58:33.759 INFO [25977]: QUERY_STRING = /member/viewCardAddAction -- 19:58:33.759 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:33.790 INFO [25977]: COREGRADE is stopping... -- 19:58:33.790 DEBUG [25977]: Closing database connection -- 19:58:33.790 SQL [25977]: pgsql_close() -- 19:58:37.358 INFO [25977]: COREGRADE is starting... -- 19:58:37.358 INFO [25977]: Version from config: 1.0 -- 19:58:37.358 DEBUG [25977]: Connecting to database... -- 19:58:37.358 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:37.358 SQL [25977]: pgsql_db_connect() -- 19:58:37.393 INFO [25977]: COREGRADE is starting... -- 19:58:37.393 INFO [25977]: Version from config: 1.0 -- 19:58:37.393 DEBUG [25977]: Connecting to database... -- 19:58:37.393 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:37.393 SQL [25977]: pgsql_db_connect() -- 19:58:37.397 DEBUG [25977]: Database connection successful -- 19:58:37.397 INFO [25977]: _SERVER found -- 19:58:37.397 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 19:58:37.397 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:37.397 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=5go4m4v5jm8tgfv8d7a6ria3nr6koms7 -- 19:58:37.397 INFO [25977]: QUERY_STRING = -- 19:58:37.397 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:37.397 INFO [25977]: SystemStatus()09-09-********~************ -- 19:58:37.397 INFO [25977]: long coregrade_api_main(CVars in, CVars &out) -- 19:58:37.397 INFO [25977]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 19:58:37.397 INFO [25977]: account calls -- 19:58:37.397 INFO [25977]: account_calls() -- 19:58:37.397 INFO [25977]: AddPageCard() -- 19:58:37.397 FLOG_MAX [25977]: REQ_STRING(title) -- 19:58:37.397 FLOG_MAX [25977]: REQ_STRING(item_type) -- 19:58:37.397 FLOG_MAX [25977]: REQ_STRING(sessionid) -- 19:58:37.397 FLOG_MAX [25977]: REQ_STRING(detail) -- 19:58:37.397 FLOG_MAX [25977]: insert_db_record() -- 19:58:37.397 SQL [25977]: pgsql_exec() -- 19:58:37.397 SQL [25977]: About to run query: -- 19:58:37.397 SQL [25977]: INSERT INTO members_page_item (detail,item_type,member_id,page_id,title) VALUES ('xvvxbxxnxn','NOTECARD','5','7','Kids Technology Class') -- 19:58:37.402 SQL [25977]: PQcmdTuples: 1 -- 19:58:37.402 SQL [25977]: Affected rows: 1 -- 19:58:37.402 FLOG_MAX [25977]: SELECT currval('members_page_item_id_seq') -- 19:58:37.402 SQL [25977]: pgsql_query() -- 19:58:37.402 SQL [25977]: About to run query: -- 19:58:37.402 SQL [25977]: SELECT currval('members_page_item_id_seq') -- 19:58:37.402 SQL [25977]: Found rows: 1 -- 19:58:37.402 INFO [25977]: /AddPageCard() -- 19:58:37.402 INFO [25977]: RET: page_item_id=37 -- 19:58:37.402 INFO [25977]: RET: result=YES I GET TO BACK END -- 19:58:37.403 INFO [25977]: COREGRADE is stopping... -- 19:58:37.403 DEBUG [25977]: Closing database connection -- 19:58:37.403 SQL [25977]: pgsql_close() -- 19:58:37.362 DEBUG [25977]: Database connection successful -- 19:58:37.362 INFO [25977]: _SERVER found -- 19:58:37.362 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 19:58:37.362 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:37.362 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=5go4m4v5jm8tgfv8d7a6ria3nr6koms7 -- 19:58:37.362 INFO [25977]: QUERY_STRING = /member/addNotecard -- 19:58:37.362 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:37.403 INFO [25977]: COREGRADE is stopping... -- 19:58:37.403 DEBUG [25977]: Closing database connection -- 19:58:37.403 SQL [25977]: pgsql_close() -- 19:58:38.799 INFO [25977]: COREGRADE is starting... -- 19:58:38.799 INFO [25977]: Version from config: 1.0 -- 19:58:38.799 DEBUG [25977]: Connecting to database... -- 19:58:38.799 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:38.799 SQL [25977]: pgsql_db_connect() -- 19:58:38.803 DEBUG [25977]: Database connection successful -- 19:58:38.803 INFO [25977]: _SERVER found -- 19:58:38.803 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 19:58:38.803 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:38.803 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=5go4m4v5jm8tgfv8d7a6ria3nr6koms7 -- 19:58:38.803 INFO [25977]: QUERY_STRING = /member/addNotecard -- 19:58:38.803 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:38.834 INFO [25977]: COREGRADE is stopping... -- 19:58:38.834 DEBUG [25977]: Closing database connection -- 19:58:38.834 SQL [25977]: pgsql_close() -- 19:58:39.916 INFO [25977]: COREGRADE is starting... -- 19:58:39.916 INFO [25977]: Version from config: 1.0 -- 19:58:39.916 DEBUG [25977]: Connecting to database... -- 19:58:39.916 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:39.916 SQL [25977]: pgsql_db_connect() -- 19:58:39.920 DEBUG [25977]: Database connection successful -- 19:58:39.920 INFO [25977]: _SERVER found -- 19:58:39.920 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 19:58:39.920 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:39.920 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=5go4m4v5jm8tgfv8d7a6ria3nr6koms7 -- 19:58:39.920 INFO [25977]: QUERY_STRING = /member/addNotecard -- 19:58:39.920 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:39.951 INFO [25977]: COREGRADE is stopping... -- 19:58:39.951 DEBUG [25977]: Closing database connection -- 19:58:39.951 SQL [25977]: pgsql_close() -- 19:58:43.942 INFO [25977]: COREGRADE is starting... -- 19:58:43.943 INFO [25977]: Version from config: 1.0 -- 19:58:43.943 DEBUG [25977]: Connecting to database... -- 19:58:43.943 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:43.943 SQL [25977]: pgsql_db_connect() -- 19:58:43.947 DEBUG [25977]: Database connection successful -- 19:58:43.947 INFO [25977]: _SERVER found -- 19:58:43.947 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 19:58:43.947 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:43.947 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=5go4m4v5jm8tgfv8d7a6ria3nr6koms7 -- 19:58:43.947 INFO [25977]: QUERY_STRING = /member/page -- 19:58:43.947 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:43.989 INFO [25977]: COREGRADE is stopping... -- 19:58:43.989 DEBUG [25977]: Closing database connection -- 19:58:43.989 SQL [25977]: pgsql_close() -- 19:58:44.105 INFO [25977]: COREGRADE is starting... -- 19:58:44.106 INFO [25977]: Version from config: 1.0 -- 19:58:44.106 DEBUG [25977]: Connecting to database... -- 19:58:44.106 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:44.106 SQL [25977]: pgsql_db_connect() -- 19:58:44.110 DEBUG [25977]: Database connection successful -- 19:58:44.110 INFO [25977]: _SERVER found -- 19:58:44.110 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 19:58:44.110 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:44.110 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=5go4m4v5jm8tgfv8d7a6ria3nr6koms7 -- 19:58:44.110 INFO [25977]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:58:44.110 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:44.121 INFO [25977]: COREGRADE is stopping... -- 19:58:44.121 DEBUG [25977]: Closing database connection -- 19:58:44.121 SQL [25977]: pgsql_close() -- 19:58:51.545 INFO [26031]: COREGRADE is starting... -- 19:58:51.546 INFO [26031]: Version from config: 1.0 -- 19:58:51.546 DEBUG [26031]: Connecting to database... -- 19:58:51.546 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:51.546 SQL [26031]: pgsql_db_connect() -- 19:58:51.550 DEBUG [26031]: Database connection successful -- 19:58:51.550 INFO [26031]: _SERVER found -- 19:58:51.550 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 19:58:51.550 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:51.550 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=5go4m4v5jm8tgfv8d7a6ria3nr6koms7 -- 19:58:51.550 INFO [26031]: QUERY_STRING = /member -- 19:58:51.550 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:51.591 INFO [26031]: COREGRADE is stopping... -- 19:58:51.591 DEBUG [26031]: Closing database connection -- 19:58:51.591 SQL [26031]: pgsql_close() -- 19:58:51.723 INFO [26031]: COREGRADE is starting... -- 19:58:51.723 INFO [26031]: Version from config: 1.0 -- 19:58:51.723 DEBUG [26031]: Connecting to database... -- 19:58:51.723 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:51.723 SQL [26031]: pgsql_db_connect() -- 19:58:51.727 DEBUG [26031]: Database connection successful -- 19:58:51.727 INFO [26031]: _SERVER found -- 19:58:51.727 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 19:58:51.727 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:51.727 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=5go4m4v5jm8tgfv8d7a6ria3nr6koms7 -- 19:58:51.727 INFO [26031]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:58:51.727 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:51.738 INFO [26031]: COREGRADE is stopping... -- 19:58:51.738 DEBUG [26031]: Closing database connection -- 19:58:51.738 SQL [26031]: pgsql_close() -- 19:58:52.809 INFO [26031]: COREGRADE is starting... -- 19:58:52.809 INFO [26031]: Version from config: 1.0 -- 19:58:52.809 DEBUG [26031]: Connecting to database... -- 19:58:52.809 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:52.809 SQL [26031]: pgsql_db_connect() -- 19:58:52.813 DEBUG [26031]: Database connection successful -- 19:58:52.813 INFO [26031]: _SERVER found -- 19:58:52.813 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 19:58:52.813 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:52.813 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=5go4m4v5jm8tgfv8d7a6ria3nr6koms7 -- 19:58:52.813 INFO [26031]: QUERY_STRING = /member/page -- 19:58:52.813 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:52.855 INFO [26031]: COREGRADE is stopping... -- 19:58:52.855 DEBUG [26031]: Closing database connection -- 19:58:52.855 SQL [26031]: pgsql_close() -- 19:58:52.939 INFO [26031]: COREGRADE is starting... -- 19:58:52.940 INFO [26031]: Version from config: 1.0 -- 19:58:52.940 DEBUG [26031]: Connecting to database... -- 19:58:52.940 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:52.940 SQL [26031]: pgsql_db_connect() -- 19:58:52.944 DEBUG [26031]: Database connection successful -- 19:58:52.944 INFO [26031]: _SERVER found -- 19:58:52.944 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 19:58:52.944 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:52.944 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=5go4m4v5jm8tgfv8d7a6ria3nr6koms7 -- 19:58:52.944 INFO [26031]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:58:52.944 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:52.955 INFO [26031]: COREGRADE is stopping... -- 19:58:52.955 DEBUG [26031]: Closing database connection -- 19:58:52.955 SQL [26031]: pgsql_close() -- 19:58:55.098 INFO [26031]: COREGRADE is starting... -- 19:58:55.098 INFO [26031]: Version from config: 1.0 -- 19:58:55.098 DEBUG [26031]: Connecting to database... -- 19:58:55.098 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:55.098 SQL [26031]: pgsql_db_connect() -- 19:58:55.102 DEBUG [26031]: Database connection successful -- 19:58:55.102 INFO [26031]: _SERVER found -- 19:58:55.102 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 19:58:55.102 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:55.102 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=5go4m4v5jm8tgfv8d7a6ria3nr6koms7 -- 19:58:55.102 INFO [26031]: QUERY_STRING = /member/viewCardAddAction -- 19:58:55.102 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:55.133 INFO [26031]: COREGRADE is stopping... -- 19:58:55.133 DEBUG [26031]: Closing database connection -- 19:58:55.133 SQL [26031]: pgsql_close() -- 19:58:55.160 INFO [26031]: COREGRADE is starting... -- 19:58:55.161 INFO [26031]: Version from config: 1.0 -- 19:58:55.161 DEBUG [26031]: Connecting to database... -- 19:58:55.161 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:55.161 SQL [26031]: pgsql_db_connect() -- 19:58:55.165 DEBUG [26031]: Database connection successful -- 19:58:55.165 INFO [26031]: _SERVER found -- 19:58:55.165 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 19:58:55.165 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:55.165 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=5go4m4v5jm8tgfv8d7a6ria3nr6koms7 -- 19:58:55.165 INFO [26031]: QUERY_STRING = /member/upload -- 19:58:55.165 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:58:55.197 INFO [26031]: COREGRADE is stopping... -- 19:58:55.197 DEBUG [26031]: Closing database connection -- 19:58:55.197 SQL [26031]: pgsql_close() -- 20:01:26.769 INFO [26043]: COREGRADE is starting... -- 20:01:26.770 INFO [26043]: Version from config: 1.0 -- 20:01:26.770 DEBUG [26043]: Connecting to database... -- 20:01:26.770 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:01:26.770 SQL [26043]: pgsql_db_connect() -- 20:01:26.774 DEBUG [26043]: Database connection successful -- 20:01:26.774 INFO [26043]: _SERVER found -- 20:01:26.774 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 20:01:26.774 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 20:01:26.774 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=5go4m4v5jm8tgfv8d7a6ria3nr6koms7 -- 20:01:26.774 INFO [26043]: QUERY_STRING = /member -- 20:01:26.774 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:01:26.816 INFO [26043]: COREGRADE is stopping... -- 20:01:26.816 DEBUG [26043]: Closing database connection -- 20:01:26.816 SQL [26043]: pgsql_close() -- 20:01:26.943 INFO [26043]: COREGRADE is starting... -- 20:01:26.943 INFO [26043]: Version from config: 1.0 -- 20:01:26.943 DEBUG [26043]: Connecting to database... -- 20:01:26.943 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:01:26.943 SQL [26043]: pgsql_db_connect() -- 20:01:26.947 DEBUG [26043]: Database connection successful -- 20:01:26.947 INFO [26043]: _SERVER found -- 20:01:26.947 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 20:01:26.947 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 20:01:26.947 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=i2v5qrnm3mvlssobtj72s5r02iktptsk -- 20:01:26.947 INFO [26043]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:01:26.947 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:01:26.958 INFO [26043]: COREGRADE is stopping... -- 20:01:26.958 DEBUG [26043]: Closing database connection -- 20:01:26.958 SQL [26043]: pgsql_close() -- 20:01:28.814 INFO [26043]: COREGRADE is starting... -- 20:01:28.814 INFO [26043]: Version from config: 1.0 -- 20:01:28.814 DEBUG [26043]: Connecting to database... -- 20:01:28.814 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:01:28.814 SQL [26043]: pgsql_db_connect() -- 20:01:28.818 DEBUG [26043]: Database connection successful -- 20:01:28.818 INFO [26043]: _SERVER found -- 20:01:28.818 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 20:01:28.818 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 20:01:28.818 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=i2v5qrnm3mvlssobtj72s5r02iktptsk -- 20:01:28.818 INFO [26043]: QUERY_STRING = /member/page -- 20:01:28.818 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:01:28.860 INFO [26043]: COREGRADE is stopping... -- 20:01:28.860 DEBUG [26043]: Closing database connection -- 20:01:28.860 SQL [26043]: pgsql_close() -- 20:01:28.966 INFO [26043]: COREGRADE is starting... -- 20:01:28.967 INFO [26043]: Version from config: 1.0 -- 20:01:28.967 DEBUG [26043]: Connecting to database... -- 20:01:28.967 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:01:28.967 SQL [26043]: pgsql_db_connect() -- 20:01:28.971 DEBUG [26043]: Database connection successful -- 20:01:28.971 INFO [26043]: _SERVER found -- 20:01:28.971 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 20:01:28.971 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 20:01:28.971 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=i2v5qrnm3mvlssobtj72s5r02iktptsk -- 20:01:28.971 INFO [26043]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:01:28.971 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:01:28.982 INFO [26043]: COREGRADE is stopping... -- 20:01:28.982 DEBUG [26043]: Closing database connection -- 20:01:28.982 SQL [26043]: pgsql_close() -- 20:01:31.167 INFO [26043]: COREGRADE is starting... -- 20:01:31.167 INFO [26043]: Version from config: 1.0 -- 20:01:31.167 DEBUG [26043]: Connecting to database... -- 20:01:31.167 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:01:31.167 SQL [26043]: pgsql_db_connect() -- 20:01:31.171 DEBUG [26043]: Database connection successful -- 20:01:31.171 INFO [26043]: _SERVER found -- 20:01:31.171 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 20:01:31.171 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 20:01:31.171 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=i2v5qrnm3mvlssobtj72s5r02iktptsk -- 20:01:31.171 INFO [26043]: QUERY_STRING = /member/viewCardAddAction -- 20:01:31.171 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:01:31.202 INFO [26043]: COREGRADE is stopping... -- 20:01:31.202 DEBUG [26043]: Closing database connection -- 20:01:31.202 SQL [26043]: pgsql_close() -- 20:01:31.219 INFO [26043]: COREGRADE is starting... -- 20:01:31.219 INFO [26043]: Version from config: 1.0 -- 20:01:31.219 DEBUG [26043]: Connecting to database... -- 20:01:31.219 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:01:31.219 SQL [26043]: pgsql_db_connect() -- 20:01:31.223 DEBUG [26043]: Database connection successful -- 20:01:31.223 INFO [26043]: _SERVER found -- 20:01:31.223 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 20:01:31.223 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 20:01:31.223 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=i2v5qrnm3mvlssobtj72s5r02iktptsk -- 20:01:31.223 INFO [26043]: QUERY_STRING = /member/upload -- 20:01:31.223 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:01:31.255 INFO [26043]: COREGRADE is stopping... -- 20:01:31.255 DEBUG [26043]: Closing database connection -- 20:01:31.255 SQL [26043]: pgsql_close() -- 20:01:34.796 INFO [26043]: COREGRADE is starting... -- 20:01:34.796 INFO [26043]: Version from config: 1.0 -- 20:01:34.796 DEBUG [26043]: Connecting to database... -- 20:01:34.796 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:01:34.796 SQL [26043]: pgsql_db_connect() -- 20:01:34.800 DEBUG [26043]: Database connection successful -- 20:01:34.800 INFO [26043]: _SERVER found -- 20:01:34.800 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 20:01:34.800 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 20:01:34.800 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=i2v5qrnm3mvlssobtj72s5r02iktptsk -- 20:01:34.800 INFO [26043]: QUERY_STRING = /member/page -- 20:01:34.800 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:01:34.840 INFO [26043]: COREGRADE is stopping... -- 20:01:34.840 DEBUG [26043]: Closing database connection -- 20:01:34.840 SQL [26043]: pgsql_close() -- 20:01:34.965 INFO [26043]: COREGRADE is starting... -- 20:01:34.965 INFO [26043]: Version from config: 1.0 -- 20:01:34.965 DEBUG [26043]: Connecting to database... -- 20:01:34.965 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:01:34.965 SQL [26043]: pgsql_db_connect() -- 20:01:34.969 DEBUG [26043]: Database connection successful -- 20:01:34.969 INFO [26043]: _SERVER found -- 20:01:34.969 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 20:01:34.969 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 20:01:34.969 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=i2v5qrnm3mvlssobtj72s5r02iktptsk -- 20:01:34.969 INFO [26043]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:01:34.969 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:01:34.980 INFO [26043]: COREGRADE is stopping... -- 20:01:34.980 DEBUG [26043]: Closing database connection -- 20:01:34.980 SQL [26043]: pgsql_close() -- 20:01:36.280 INFO [26043]: COREGRADE is starting... -- 20:01:36.281 INFO [26043]: Version from config: 1.0 -- 20:01:36.281 DEBUG [26043]: Connecting to database... -- 20:01:36.281 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:01:36.281 SQL [26043]: pgsql_db_connect() -- 20:01:36.285 DEBUG [26043]: Database connection successful -- 20:01:36.285 INFO [26043]: _SERVER found -- 20:01:36.285 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 20:01:36.285 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 20:01:36.285 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=i2v5qrnm3mvlssobtj72s5r02iktptsk -- 20:01:36.285 INFO [26043]: QUERY_STRING = /member/page -- 20:01:36.285 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:01:36.327 INFO [26043]: COREGRADE is stopping... -- 20:01:36.327 DEBUG [26043]: Closing database connection -- 20:01:36.327 SQL [26043]: pgsql_close() -- 20:01:36.408 INFO [26043]: COREGRADE is starting... -- 20:01:36.408 INFO [26043]: Version from config: 1.0 -- 20:01:36.408 DEBUG [26043]: Connecting to database... -- 20:01:36.408 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:01:36.408 SQL [26043]: pgsql_db_connect() -- 20:01:36.412 DEBUG [26043]: Database connection successful -- 20:01:36.412 INFO [26043]: _SERVER found -- 20:01:36.412 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 20:01:36.412 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 20:01:36.412 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=i2v5qrnm3mvlssobtj72s5r02iktptsk -- 20:01:36.412 INFO [26043]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:01:36.412 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:01:36.423 INFO [26043]: COREGRADE is stopping... -- 20:01:36.423 DEBUG [26043]: Closing database connection -- 20:01:36.423 SQL [26043]: pgsql_close() -- 20:28:31.936 INFO [25976]: COREGRADE is starting... -- 20:28:31.937 INFO [25976]: Version from config: 1.0 -- 20:28:31.937 DEBUG [25976]: Connecting to database... -- 20:28:31.937 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:28:31.937 SQL [25976]: pgsql_db_connect() -- 20:28:31.942 DEBUG [25976]: Database connection successful -- 20:28:31.942 INFO [25976]: _SERVER found -- 20:28:31.942 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 20:28:31.942 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 20:28:31.942 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=i2v5qrnm3mvlssobtj72s5r02iktptsk -- 20:28:31.942 INFO [25976]: QUERY_STRING = /member/viewCardAddAction -- 20:28:31.942 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:28:31.980 INFO [25976]: COREGRADE is stopping... -- 20:28:31.980 DEBUG [25976]: Closing database connection -- 20:28:31.980 SQL [25976]: pgsql_close() -- 20:50:06.562 INFO [25980]: COREGRADE is starting... -- 20:50:06.563 INFO [25980]: Version from config: 1.0 -- 20:50:06.563 DEBUG [25980]: Connecting to database... -- 20:50:06.563 DEBUG [25980]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:50:06.563 SQL [25980]: pgsql_db_connect() -- 20:50:06.567 DEBUG [25980]: Database connection successful -- 20:50:06.567 INFO [25980]: _SERVER found -- 20:50:06.567 INFO [25980]: REMOTE_ADDR = 192.168.1.13 -- 20:50:06.567 INFO [25980]: SERVER_NAME = oameye.works.coregrade.com -- 20:50:06.567 INFO [25980]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=i2v5qrnm3mvlssobtj72s5r02iktptsk -- 20:50:06.567 INFO [25980]: QUERY_STRING = /member/viewCardAddAction -- 20:50:06.567 INFO [25980]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:50:06.604 INFO [25980]: COREGRADE is stopping... -- 20:50:06.604 DEBUG [25980]: Closing database connection -- 20:50:06.604 SQL [25980]: pgsql_close() -- 20:50:08.032 INFO [25980]: COREGRADE is starting... -- 20:50:08.032 INFO [25980]: Version from config: 1.0 -- 20:50:08.032 DEBUG [25980]: Connecting to database... -- 20:50:08.032 DEBUG [25980]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:50:08.032 SQL [25980]: pgsql_db_connect() -- 20:50:08.036 DEBUG [25980]: Database connection successful -- 20:50:08.036 INFO [25980]: _SERVER found -- 20:50:08.036 INFO [25980]: REMOTE_ADDR = 192.168.1.13 -- 20:50:08.036 INFO [25980]: SERVER_NAME = oameye.works.coregrade.com -- 20:50:08.036 INFO [25980]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=i2v5qrnm3mvlssobtj72s5r02iktptsk -- 20:50:08.036 INFO [25980]: QUERY_STRING = /member/viewCardAddAction -- 20:50:08.036 INFO [25980]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:50:08.068 INFO [25980]: COREGRADE is stopping... -- 20:50:08.068 DEBUG [25980]: Closing database connection -- 20:50:08.068 SQL [25980]: pgsql_close() -- 20:50:12.837 INFO [25980]: COREGRADE is starting... -- 20:50:12.837 INFO [25980]: Version from config: 1.0 -- 20:50:12.837 DEBUG [25980]: Connecting to database... -- 20:50:12.837 DEBUG [25980]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:50:12.837 SQL [25980]: pgsql_db_connect() -- 20:50:12.841 DEBUG [25980]: Database connection successful -- 20:50:12.841 INFO [25980]: _SERVER found -- 20:50:12.841 INFO [25980]: REMOTE_ADDR = 192.168.1.13 -- 20:50:12.841 INFO [25980]: SERVER_NAME = oameye.works.coregrade.com -- 20:50:12.841 INFO [25980]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=i2v5qrnm3mvlssobtj72s5r02iktptsk -- 20:50:12.841 INFO [25980]: QUERY_STRING = /member/addNotecard -- 20:50:12.841 INFO [25980]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:50:12.873 INFO [25980]: COREGRADE is stopping... -- 20:50:12.873 DEBUG [25980]: Closing database connection -- 20:50:12.873 SQL [25980]: pgsql_close() -- 20:50:13.505 INFO [25980]: COREGRADE is starting... -- 20:50:13.506 INFO [25980]: Version from config: 1.0 -- 20:50:13.506 DEBUG [25980]: Connecting to database... -- 20:50:13.506 DEBUG [25980]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:50:13.506 SQL [25980]: pgsql_db_connect() -- 20:50:13.510 DEBUG [25980]: Database connection successful -- 20:50:13.510 INFO [25980]: _SERVER found -- 20:50:13.510 INFO [25980]: REMOTE_ADDR = 192.168.1.13 -- 20:50:13.510 INFO [25980]: SERVER_NAME = oameye.works.coregrade.com -- 20:50:13.510 INFO [25980]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=i2v5qrnm3mvlssobtj72s5r02iktptsk -- 20:50:13.510 INFO [25980]: QUERY_STRING = /member/addNotecard -- 20:50:13.510 INFO [25980]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:50:13.541 INFO [25980]: COREGRADE is stopping... -- 20:50:13.541 DEBUG [25980]: Closing database connection -- 20:50:13.541 SQL [25980]: pgsql_close() -- 20:50:14.107 INFO [25980]: COREGRADE is starting... -- 20:50:14.108 INFO [25980]: Version from config: 1.0 -- 20:50:14.108 DEBUG [25980]: Connecting to database... -- 20:50:14.108 DEBUG [25980]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:50:14.108 SQL [25980]: pgsql_db_connect() -- 20:50:14.112 DEBUG [25980]: Database connection successful -- 20:50:14.112 INFO [25980]: _SERVER found -- 20:50:14.112 INFO [25980]: REMOTE_ADDR = 192.168.1.13 -- 20:50:14.112 INFO [25980]: SERVER_NAME = oameye.works.coregrade.com -- 20:50:14.112 INFO [25980]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=i2v5qrnm3mvlssobtj72s5r02iktptsk -- 20:50:14.112 INFO [25980]: QUERY_STRING = /member/addNotecard -- 20:50:14.112 INFO [25980]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:50:14.143 INFO [25980]: COREGRADE is stopping... -- 20:50:14.143 DEBUG [25980]: Closing database connection -- 20:50:14.143 SQL [25980]: pgsql_close() -- 20:50:14.676 INFO [25980]: COREGRADE is starting... -- 20:50:14.677 INFO [25980]: Version from config: 1.0 -- 20:50:14.677 DEBUG [25980]: Connecting to database... -- 20:50:14.677 DEBUG [25980]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:50:14.677 SQL [25980]: pgsql_db_connect() -- 20:50:14.681 DEBUG [25980]: Database connection successful -- 20:50:14.681 INFO [25980]: _SERVER found -- 20:50:14.681 INFO [25980]: REMOTE_ADDR = 192.168.1.13 -- 20:50:14.681 INFO [25980]: SERVER_NAME = oameye.works.coregrade.com -- 20:50:14.681 INFO [25980]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=i2v5qrnm3mvlssobtj72s5r02iktptsk -- 20:50:14.681 INFO [25980]: QUERY_STRING = /member/addNotecard -- 20:50:14.681 INFO [25980]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:50:14.712 INFO [25980]: COREGRADE is stopping... -- 20:50:14.712 DEBUG [25980]: Closing database connection -- 20:50:14.712 SQL [25980]: pgsql_close() -- 20:50:21.752 INFO [25983]: COREGRADE is starting... -- 20:50:21.752 INFO [25983]: Version from config: 1.0 -- 20:50:21.752 DEBUG [25983]: Connecting to database... -- 20:50:21.752 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:50:21.752 SQL [25983]: pgsql_db_connect() -- 20:50:21.756 DEBUG [25983]: Database connection successful -- 20:50:21.756 INFO [25983]: _SERVER found -- 20:50:21.756 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 20:50:21.756 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 20:50:21.756 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=i2v5qrnm3mvlssobtj72s5r02iktptsk -- 20:50:21.756 INFO [25983]: QUERY_STRING = /member -- 20:50:21.756 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:50:21.803 INFO [25983]: COREGRADE is stopping... -- 20:50:21.803 DEBUG [25983]: Closing database connection -- 20:50:21.803 SQL [25983]: pgsql_close() -- 20:50:21.970 INFO [25983]: COREGRADE is starting... -- 20:50:21.971 INFO [25983]: Version from config: 1.0 -- 20:50:21.971 DEBUG [25983]: Connecting to database... -- 20:50:21.971 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:50:21.971 SQL [25983]: pgsql_db_connect() -- 20:50:21.975 DEBUG [25983]: Database connection successful -- 20:50:21.975 INFO [25983]: _SERVER found -- 20:50:21.975 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 20:50:21.975 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 20:50:21.975 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=4clu3e3cilm9mhl1iuvb9df947ptv4mc -- 20:50:21.975 INFO [25983]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:50:21.975 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:50:21.987 INFO [25983]: COREGRADE is stopping... -- 20:50:21.987 DEBUG [25983]: Closing database connection -- 20:50:21.987 SQL [25983]: pgsql_close() -- 20:50:23.050 INFO [25983]: COREGRADE is starting... -- 20:50:23.050 INFO [25983]: Version from config: 1.0 -- 20:50:23.050 DEBUG [25983]: Connecting to database... -- 20:50:23.050 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:50:23.050 SQL [25983]: pgsql_db_connect() -- 20:50:23.055 DEBUG [25983]: Database connection successful -- 20:50:23.055 INFO [25983]: _SERVER found -- 20:50:23.055 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 20:50:23.055 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 20:50:23.055 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=4clu3e3cilm9mhl1iuvb9df947ptv4mc -- 20:50:23.055 INFO [25983]: QUERY_STRING = /member/page -- 20:50:23.055 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:50:23.103 INFO [25983]: COREGRADE is stopping... -- 20:50:23.103 DEBUG [25983]: Closing database connection -- 20:50:23.103 SQL [25983]: pgsql_close() -- 20:50:23.189 INFO [25983]: COREGRADE is starting... -- 20:50:23.190 INFO [25983]: Version from config: 1.0 -- 20:50:23.190 DEBUG [25983]: Connecting to database... -- 20:50:23.190 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:50:23.190 SQL [25983]: pgsql_db_connect() -- 20:50:23.194 DEBUG [25983]: Database connection successful -- 20:50:23.194 INFO [25983]: _SERVER found -- 20:50:23.194 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 20:50:23.194 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 20:50:23.194 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=4clu3e3cilm9mhl1iuvb9df947ptv4mc -- 20:50:23.194 INFO [25983]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:50:23.194 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:50:23.206 INFO [25983]: COREGRADE is stopping... -- 20:50:23.206 DEBUG [25983]: Closing database connection -- 20:50:23.206 SQL [25983]: pgsql_close() -- 20:50:25.857 INFO [25983]: COREGRADE is starting... -- 20:50:25.858 INFO [25983]: Version from config: 1.0 -- 20:50:25.858 DEBUG [25983]: Connecting to database... -- 20:50:25.858 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:50:25.858 SQL [25983]: pgsql_db_connect() -- 20:50:25.862 DEBUG [25983]: Database connection successful -- 20:50:25.862 INFO [25983]: _SERVER found -- 20:50:25.862 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 20:50:25.862 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 20:50:25.862 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=4clu3e3cilm9mhl1iuvb9df947ptv4mc -- 20:50:25.862 INFO [25983]: QUERY_STRING = /member/viewCardAddAction -- 20:50:25.862 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:50:25.897 INFO [25983]: COREGRADE is stopping... -- 20:50:25.897 DEBUG [25983]: Closing database connection -- 20:50:25.897 SQL [25983]: pgsql_close() -- 20:50:26.899 INFO [25983]: COREGRADE is starting... -- 20:50:26.899 INFO [25983]: Version from config: 1.0 -- 20:50:26.899 DEBUG [25983]: Connecting to database... -- 20:50:26.899 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:50:26.899 SQL [25983]: pgsql_db_connect() -- 20:50:26.903 DEBUG [25983]: Database connection successful -- 20:50:26.903 INFO [25983]: _SERVER found -- 20:50:26.903 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 20:50:26.903 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 20:50:26.903 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=4clu3e3cilm9mhl1iuvb9df947ptv4mc -- 20:50:26.903 INFO [25983]: QUERY_STRING = /member/addNotecard -- 20:50:26.903 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:50:26.938 INFO [25983]: COREGRADE is stopping... -- 20:50:26.938 DEBUG [25983]: Closing database connection -- 20:50:26.938 SQL [25983]: pgsql_close() -- 20:50:27.496 INFO [25983]: COREGRADE is starting... -- 20:50:27.496 INFO [25983]: Version from config: 1.0 -- 20:50:27.496 DEBUG [25983]: Connecting to database... -- 20:50:27.496 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:50:27.496 SQL [25983]: pgsql_db_connect() -- 20:50:27.500 DEBUG [25983]: Database connection successful -- 20:50:27.500 INFO [25983]: _SERVER found -- 20:50:27.500 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 20:50:27.500 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 20:50:27.500 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=4clu3e3cilm9mhl1iuvb9df947ptv4mc -- 20:50:27.500 INFO [25983]: QUERY_STRING = /member/addNotecard -- 20:50:27.500 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:50:27.535 INFO [25983]: COREGRADE is stopping... -- 20:50:27.535 DEBUG [25983]: Closing database connection -- 20:50:27.535 SQL [25983]: pgsql_close() -- 20:50:28.016 INFO [25983]: COREGRADE is starting... -- 20:50:28.016 INFO [25983]: Version from config: 1.0 -- 20:50:28.016 DEBUG [25983]: Connecting to database... -- 20:50:28.016 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:50:28.016 SQL [25983]: pgsql_db_connect() -- 20:50:28.020 DEBUG [25983]: Database connection successful -- 20:50:28.020 INFO [25983]: _SERVER found -- 20:50:28.020 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 20:50:28.020 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 20:50:28.020 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=4clu3e3cilm9mhl1iuvb9df947ptv4mc -- 20:50:28.020 INFO [25983]: QUERY_STRING = /member/addNotecard -- 20:50:28.020 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:50:28.054 INFO [25983]: COREGRADE is stopping... -- 20:50:28.054 DEBUG [25983]: Closing database connection -- 20:50:28.054 SQL [25983]: pgsql_close() -- 20:50:31.451 INFO [25983]: COREGRADE is starting... -- 20:50:31.451 INFO [25983]: Version from config: 1.0 -- 20:50:31.451 DEBUG [25983]: Connecting to database... -- 20:50:31.451 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:50:31.451 SQL [25983]: pgsql_db_connect() -- 20:50:31.455 DEBUG [25983]: Database connection successful -- 20:50:31.455 INFO [25983]: _SERVER found -- 20:50:31.455 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 20:50:31.455 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 20:50:31.455 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=4clu3e3cilm9mhl1iuvb9df947ptv4mc -- 20:50:31.455 INFO [25983]: QUERY_STRING = /member/page -- 20:50:31.455 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:50:31.501 INFO [25983]: COREGRADE is stopping... -- 20:50:31.501 DEBUG [25983]: Closing database connection -- 20:50:31.501 SQL [25983]: pgsql_close() -- 20:50:31.614 INFO [25983]: COREGRADE is starting... -- 20:50:31.614 INFO [25983]: Version from config: 1.0 -- 20:50:31.614 DEBUG [25983]: Connecting to database... -- 20:50:31.614 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:50:31.615 SQL [25983]: pgsql_db_connect() -- 20:50:31.619 DEBUG [25983]: Database connection successful -- 20:50:31.619 INFO [25983]: _SERVER found -- 20:50:31.619 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 20:50:31.619 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 20:50:31.619 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=4clu3e3cilm9mhl1iuvb9df947ptv4mc -- 20:50:31.619 INFO [25983]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:50:31.619 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:50:31.631 INFO [25983]: COREGRADE is stopping... -- 20:50:31.631 DEBUG [25983]: Closing database connection -- 20:50:31.631 SQL [25983]: pgsql_close() -- 20:50:38.067 INFO [26029]: COREGRADE is starting... -- 20:50:38.068 INFO [26029]: Version from config: 1.0 -- 20:50:38.068 DEBUG [26029]: Connecting to database... -- 20:50:38.068 DEBUG [26029]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:50:38.068 SQL [26029]: pgsql_db_connect() -- 20:50:38.072 DEBUG [26029]: Database connection successful -- 20:50:38.072 INFO [26029]: _SERVER found -- 20:50:38.072 INFO [26029]: REMOTE_ADDR = 192.168.1.13 -- 20:50:38.072 INFO [26029]: SERVER_NAME = oameye.works.coregrade.com -- 20:50:38.072 INFO [26029]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=4clu3e3cilm9mhl1iuvb9df947ptv4mc -- 20:50:38.072 INFO [26029]: QUERY_STRING = /member/viewCardAddAction -- 20:50:38.072 INFO [26029]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:50:38.106 INFO [26029]: COREGRADE is stopping... -- 20:50:38.106 DEBUG [26029]: Closing database connection -- 20:50:38.106 SQL [26029]: pgsql_close() -- 20:50:38.133 INFO [26029]: COREGRADE is starting... -- 20:50:38.133 INFO [26029]: Version from config: 1.0 -- 20:50:38.133 DEBUG [26029]: Connecting to database... -- 20:50:38.133 DEBUG [26029]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:50:38.133 SQL [26029]: pgsql_db_connect() -- 20:50:38.137 DEBUG [26029]: Database connection successful -- 20:50:38.137 INFO [26029]: _SERVER found -- 20:50:38.137 INFO [26029]: REMOTE_ADDR = 192.168.1.13 -- 20:50:38.137 INFO [26029]: SERVER_NAME = oameye.works.coregrade.com -- 20:50:38.137 INFO [26029]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=4clu3e3cilm9mhl1iuvb9df947ptv4mc -- 20:50:38.137 INFO [26029]: QUERY_STRING = /member/upload -- 20:50:38.137 INFO [26029]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:50:38.169 INFO [26029]: COREGRADE is stopping... -- 20:50:38.169 DEBUG [26029]: Closing database connection -- 20:50:38.169 SQL [26029]: pgsql_close() -- 20:50:55.993 INFO [25979]: COREGRADE is starting... -- 20:50:55.993 INFO [25979]: Version from config: 1.0 -- 20:50:55.993 DEBUG [25979]: Connecting to database... -- 20:50:55.993 DEBUG [25979]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:50:55.993 SQL [25979]: pgsql_db_connect() -- 20:50:55.997 DEBUG [25979]: Database connection successful -- 20:50:55.997 INFO [25979]: _SERVER found -- 20:50:55.997 INFO [25979]: REMOTE_ADDR = 192.168.1.13 -- 20:50:55.997 INFO [25979]: SERVER_NAME = oameye.works.coregrade.com -- 20:50:55.997 INFO [25979]: QUERY_STRING = -- 20:50:55.997 INFO [25979]: HTTP_X_FORWARDED_FOR = 198.20.103.242 -- 20:50:56.037 INFO [25979]: COREGRADE is stopping... -- 20:50:56.037 DEBUG [25979]: Closing database connection -- 20:50:56.037 SQL [25979]: pgsql_close() -- 20:52:30.316 INFO [26030]: COREGRADE is starting... -- 20:52:30.317 INFO [26030]: Version from config: 1.0 -- 20:52:30.317 DEBUG [26030]: Connecting to database... -- 20:52:30.317 DEBUG [26030]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:52:30.317 SQL [26030]: pgsql_db_connect() -- 20:52:30.321 DEBUG [26030]: Database connection successful -- 20:52:30.321 INFO [26030]: _SERVER found -- 20:52:30.321 INFO [26030]: REMOTE_ADDR = 192.168.1.13 -- 20:52:30.321 INFO [26030]: SERVER_NAME = oameye.works.coregrade.com -- 20:52:30.321 INFO [26030]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=4clu3e3cilm9mhl1iuvb9df947ptv4mc -- 20:52:30.321 INFO [26030]: QUERY_STRING = /member/page -- 20:52:30.321 INFO [26030]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:52:30.364 INFO [26030]: COREGRADE is stopping... -- 20:52:30.364 DEBUG [26030]: Closing database connection -- 20:52:30.364 SQL [26030]: pgsql_close() -- 20:52:30.488 INFO [26030]: COREGRADE is starting... -- 20:52:30.488 INFO [26030]: Version from config: 1.0 -- 20:52:30.488 DEBUG [26030]: Connecting to database... -- 20:52:30.488 DEBUG [26030]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:52:30.488 SQL [26030]: pgsql_db_connect() -- 20:52:30.493 DEBUG [26030]: Database connection successful -- 20:52:30.493 INFO [26030]: _SERVER found -- 20:52:30.493 INFO [26030]: REMOTE_ADDR = 192.168.1.13 -- 20:52:30.493 INFO [26030]: SERVER_NAME = oameye.works.coregrade.com -- 20:52:30.493 INFO [26030]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=4clu3e3cilm9mhl1iuvb9df947ptv4mc -- 20:52:30.493 INFO [26030]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:52:30.493 INFO [26030]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:52:30.504 INFO [26030]: COREGRADE is stopping... -- 20:52:30.504 DEBUG [26030]: Closing database connection -- 20:52:30.504 SQL [26030]: pgsql_close() -- 20:52:31.981 INFO [26030]: COREGRADE is starting... -- 20:52:31.981 INFO [26030]: Version from config: 1.0 -- 20:52:31.981 DEBUG [26030]: Connecting to database... -- 20:52:31.981 DEBUG [26030]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:52:31.981 SQL [26030]: pgsql_db_connect() -- 20:52:31.985 DEBUG [26030]: Database connection successful -- 20:52:31.985 INFO [26030]: _SERVER found -- 20:52:31.985 INFO [26030]: REMOTE_ADDR = 192.168.1.13 -- 20:52:31.985 INFO [26030]: SERVER_NAME = oameye.works.coregrade.com -- 20:52:31.985 INFO [26030]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=4clu3e3cilm9mhl1iuvb9df947ptv4mc -- 20:52:31.985 INFO [26030]: QUERY_STRING = /member/page -- 20:52:31.985 INFO [26030]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:52:32.028 INFO [26030]: COREGRADE is stopping... -- 20:52:32.028 DEBUG [26030]: Closing database connection -- 20:52:32.028 SQL [26030]: pgsql_close() -- 20:52:32.126 INFO [26030]: COREGRADE is starting... -- 20:52:32.127 INFO [26030]: Version from config: 1.0 -- 20:52:32.127 DEBUG [26030]: Connecting to database... -- 20:52:32.127 DEBUG [26030]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:52:32.127 SQL [26030]: pgsql_db_connect() -- 20:52:32.131 DEBUG [26030]: Database connection successful -- 20:52:32.131 INFO [26030]: _SERVER found -- 20:52:32.131 INFO [26030]: REMOTE_ADDR = 192.168.1.13 -- 20:52:32.131 INFO [26030]: SERVER_NAME = oameye.works.coregrade.com -- 20:52:32.131 INFO [26030]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=4clu3e3cilm9mhl1iuvb9df947ptv4mc -- 20:52:32.131 INFO [26030]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:52:32.131 INFO [26030]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:52:32.142 INFO [26030]: COREGRADE is stopping... -- 20:52:32.142 DEBUG [26030]: Closing database connection -- 20:52:32.142 SQL [26030]: pgsql_close() -- 20:52:34.800 INFO [26030]: COREGRADE is starting... -- 20:52:34.801 INFO [26030]: Version from config: 1.0 -- 20:52:34.801 DEBUG [26030]: Connecting to database... -- 20:52:34.801 DEBUG [26030]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:52:34.801 SQL [26030]: pgsql_db_connect() -- 20:52:34.805 DEBUG [26030]: Database connection successful -- 20:52:34.805 INFO [26030]: _SERVER found -- 20:52:34.805 INFO [26030]: REMOTE_ADDR = 192.168.1.13 -- 20:52:34.805 INFO [26030]: SERVER_NAME = oameye.works.coregrade.com -- 20:52:34.805 INFO [26030]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=4clu3e3cilm9mhl1iuvb9df947ptv4mc -- 20:52:34.805 INFO [26030]: QUERY_STRING = /member/viewCardAddAction -- 20:52:34.805 INFO [26030]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:52:34.837 INFO [26030]: COREGRADE is stopping... -- 20:52:34.837 DEBUG [26030]: Closing database connection -- 20:52:34.837 SQL [26030]: pgsql_close() -- 20:52:34.851 INFO [26030]: COREGRADE is starting... -- 20:52:34.851 INFO [26030]: Version from config: 1.0 -- 20:52:34.851 DEBUG [26030]: Connecting to database... -- 20:52:34.851 DEBUG [26030]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:52:34.851 SQL [26030]: pgsql_db_connect() -- 20:52:34.855 DEBUG [26030]: Database connection successful -- 20:52:34.855 INFO [26030]: _SERVER found -- 20:52:34.855 INFO [26030]: REMOTE_ADDR = 192.168.1.13 -- 20:52:34.855 INFO [26030]: SERVER_NAME = oameye.works.coregrade.com -- 20:52:34.855 INFO [26030]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=4clu3e3cilm9mhl1iuvb9df947ptv4mc -- 20:52:34.855 INFO [26030]: QUERY_STRING = /member/upload -- 20:52:34.855 INFO [26030]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:52:34.887 INFO [26030]: COREGRADE is stopping... -- 20:52:34.887 DEBUG [26030]: Closing database connection -- 20:52:34.887 SQL [26030]: pgsql_close() -- 20:52:40.182 INFO [25978]: COREGRADE is starting... -- 20:52:40.182 INFO [25978]: Version from config: 1.0 -- 20:52:40.182 DEBUG [25978]: Connecting to database... -- 20:52:40.182 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:52:40.182 SQL [25978]: pgsql_db_connect() -- 20:52:40.186 DEBUG [25978]: Database connection successful -- 20:52:40.186 INFO [25978]: _SERVER found -- 20:52:40.186 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 20:52:40.186 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 20:52:40.186 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=4clu3e3cilm9mhl1iuvb9df947ptv4mc -- 20:52:40.186 INFO [25978]: QUERY_STRING = /member/page -- 20:52:40.186 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:52:40.228 INFO [25978]: COREGRADE is stopping... -- 20:52:40.228 DEBUG [25978]: Closing database connection -- 20:52:40.228 SQL [25978]: pgsql_close() -- 20:52:40.355 INFO [25978]: COREGRADE is starting... -- 20:52:40.355 INFO [25978]: Version from config: 1.0 -- 20:52:40.355 DEBUG [25978]: Connecting to database... -- 20:52:40.355 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:52:40.355 SQL [25978]: pgsql_db_connect() -- 20:52:40.359 DEBUG [25978]: Database connection successful -- 20:52:40.359 INFO [25978]: _SERVER found -- 20:52:40.359 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 20:52:40.359 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 20:52:40.359 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=4clu3e3cilm9mhl1iuvb9df947ptv4mc -- 20:52:40.359 INFO [25978]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:52:40.359 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:52:40.371 INFO [25978]: COREGRADE is stopping... -- 20:52:40.371 DEBUG [25978]: Closing database connection -- 20:52:40.371 SQL [25978]: pgsql_close() -- 20:52:42.260 INFO [25978]: COREGRADE is starting... -- 20:52:42.261 INFO [25978]: Version from config: 1.0 -- 20:52:42.261 DEBUG [25978]: Connecting to database... -- 20:52:42.261 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:52:42.261 SQL [25978]: pgsql_db_connect() -- 20:52:42.265 DEBUG [25978]: Database connection successful -- 20:52:42.265 INFO [25978]: _SERVER found -- 20:52:42.265 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 20:52:42.265 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 20:52:42.265 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=4clu3e3cilm9mhl1iuvb9df947ptv4mc -- 20:52:42.265 INFO [25978]: QUERY_STRING = /member/page -- 20:52:42.265 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:52:42.307 INFO [25978]: COREGRADE is stopping... -- 20:52:42.307 DEBUG [25978]: Closing database connection -- 20:52:42.307 SQL [25978]: pgsql_close() -- 20:52:42.385 INFO [25978]: COREGRADE is starting... -- 20:52:42.385 INFO [25978]: Version from config: 1.0 -- 20:52:42.386 DEBUG [25978]: Connecting to database... -- 20:52:42.386 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:52:42.386 SQL [25978]: pgsql_db_connect() -- 20:52:42.390 DEBUG [25978]: Database connection successful -- 20:52:42.390 INFO [25978]: _SERVER found -- 20:52:42.390 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 20:52:42.390 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 20:52:42.390 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=4clu3e3cilm9mhl1iuvb9df947ptv4mc -- 20:52:42.390 INFO [25978]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:52:42.390 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:52:42.401 INFO [25978]: COREGRADE is stopping... -- 20:52:42.401 DEBUG [25978]: Closing database connection -- 20:52:42.401 SQL [25978]: pgsql_close() -- 20:54:22.892 INFO [25977]: COREGRADE is starting... -- 20:54:22.892 INFO [25977]: Version from config: 1.0 -- 20:54:22.892 DEBUG [25977]: Connecting to database... -- 20:54:22.892 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:54:22.892 SQL [25977]: pgsql_db_connect() -- 20:54:22.897 DEBUG [25977]: Database connection successful -- 20:54:22.897 INFO [25977]: _SERVER found -- 20:54:22.897 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 20:54:22.897 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 20:54:22.897 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=4clu3e3cilm9mhl1iuvb9df947ptv4mc -- 20:54:22.897 INFO [25977]: QUERY_STRING = /member/viewCardAddAction -- 20:54:22.897 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:54:22.931 INFO [25977]: COREGRADE is stopping... -- 20:54:22.931 DEBUG [25977]: Closing database connection -- 20:54:22.931 SQL [25977]: pgsql_close() -- 20:54:25.603 INFO [25977]: COREGRADE is starting... -- 20:54:25.603 INFO [25977]: Version from config: 1.0 -- 20:54:25.603 DEBUG [25977]: Connecting to database... -- 20:54:25.604 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:54:25.604 SQL [25977]: pgsql_db_connect() -- 20:54:25.608 DEBUG [25977]: Database connection successful -- 20:54:25.608 INFO [25977]: _SERVER found -- 20:54:25.608 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 20:54:25.608 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 20:54:25.608 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=4clu3e3cilm9mhl1iuvb9df947ptv4mc -- 20:54:25.608 INFO [25977]: QUERY_STRING = /member/addNotecard -- 20:54:25.608 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:54:25.639 INFO [25977]: COREGRADE is stopping... -- 20:54:25.639 DEBUG [25977]: Closing database connection -- 20:54:25.639 SQL [25977]: pgsql_close() -- 20:54:26.333 INFO [25977]: COREGRADE is starting... -- 20:54:26.333 INFO [25977]: Version from config: 1.0 -- 20:54:26.333 DEBUG [25977]: Connecting to database... -- 20:54:26.334 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:54:26.334 SQL [25977]: pgsql_db_connect() -- 20:54:26.338 DEBUG [25977]: Database connection successful -- 20:54:26.338 INFO [25977]: _SERVER found -- 20:54:26.338 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 20:54:26.338 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 20:54:26.338 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=4clu3e3cilm9mhl1iuvb9df947ptv4mc -- 20:54:26.338 INFO [25977]: QUERY_STRING = /member/addNotecard -- 20:54:26.338 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:54:26.369 INFO [25977]: COREGRADE is stopping... -- 20:54:26.369 DEBUG [25977]: Closing database connection -- 20:54:26.369 SQL [25977]: pgsql_close() -- 20:54:28.456 INFO [25977]: COREGRADE is starting... -- 20:54:28.456 INFO [25977]: Version from config: 1.0 -- 20:54:28.456 DEBUG [25977]: Connecting to database... -- 20:54:28.456 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:54:28.456 SQL [25977]: pgsql_db_connect() -- 20:54:28.460 DEBUG [25977]: Database connection successful -- 20:54:28.460 INFO [25977]: _SERVER found -- 20:54:28.460 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 20:54:28.460 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 20:54:28.460 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=4clu3e3cilm9mhl1iuvb9df947ptv4mc -- 20:54:28.460 INFO [25977]: QUERY_STRING = /member/viewCardAddAction -- 20:54:28.460 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:54:28.492 INFO [25977]: COREGRADE is stopping... -- 20:54:28.492 DEBUG [25977]: Closing database connection -- 20:54:28.492 SQL [25977]: pgsql_close() -- 20:54:29.420 INFO [25977]: COREGRADE is starting... -- 20:54:29.420 INFO [25977]: Version from config: 1.0 -- 20:54:29.420 DEBUG [25977]: Connecting to database... -- 20:54:29.420 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:54:29.420 SQL [25977]: pgsql_db_connect() -- 20:54:29.425 DEBUG [25977]: Database connection successful -- 20:54:29.425 INFO [25977]: _SERVER found -- 20:54:29.425 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 20:54:29.425 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 20:54:29.425 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=4clu3e3cilm9mhl1iuvb9df947ptv4mc -- 20:54:29.425 INFO [25977]: QUERY_STRING = /member/addNotecard -- 20:54:29.425 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:54:29.455 INFO [25977]: COREGRADE is stopping... -- 20:54:29.456 DEBUG [25977]: Closing database connection -- 20:54:29.456 SQL [25977]: pgsql_close() -- 20:55:31.878 INFO [26031]: COREGRADE is starting... -- 20:55:31.879 INFO [26031]: Version from config: 1.0 -- 20:55:31.879 DEBUG [26031]: Connecting to database... -- 20:55:31.879 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:55:31.879 SQL [26031]: pgsql_db_connect() -- 20:55:31.883 DEBUG [26031]: Database connection successful -- 20:55:31.883 INFO [26031]: _SERVER found -- 20:55:31.883 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 20:55:31.883 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 20:55:31.883 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=4clu3e3cilm9mhl1iuvb9df947ptv4mc -- 20:55:31.883 INFO [26031]: QUERY_STRING = /member -- 20:55:31.883 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:55:31.926 INFO [26031]: COREGRADE is stopping... -- 20:55:31.926 DEBUG [26031]: Closing database connection -- 20:55:31.926 SQL [26031]: pgsql_close() -- 20:55:32.028 INFO [26031]: COREGRADE is starting... -- 20:55:32.029 INFO [26031]: Version from config: 1.0 -- 20:55:32.029 DEBUG [26031]: Connecting to database... -- 20:55:32.029 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:55:32.029 SQL [26031]: pgsql_db_connect() -- 20:55:32.033 DEBUG [26031]: Database connection successful -- 20:55:32.033 INFO [26031]: _SERVER found -- 20:55:32.033 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 20:55:32.033 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 20:55:32.033 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=3cllipniqtt898sghus74svl179ih728 -- 20:55:32.033 INFO [26031]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:55:32.033 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:55:32.044 INFO [26031]: COREGRADE is stopping... -- 20:55:32.044 DEBUG [26031]: Closing database connection -- 20:55:32.044 SQL [26031]: pgsql_close() -- 20:55:33.030 INFO [26031]: COREGRADE is starting... -- 20:55:33.030 INFO [26031]: Version from config: 1.0 -- 20:55:33.030 DEBUG [26031]: Connecting to database... -- 20:55:33.030 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:55:33.030 SQL [26031]: pgsql_db_connect() -- 20:55:33.035 DEBUG [26031]: Database connection successful -- 20:55:33.035 INFO [26031]: _SERVER found -- 20:55:33.035 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 20:55:33.035 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 20:55:33.035 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=3cllipniqtt898sghus74svl179ih728 -- 20:55:33.035 INFO [26031]: QUERY_STRING = /member/page -- 20:55:33.035 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:55:33.077 INFO [26031]: COREGRADE is stopping... -- 20:55:33.077 DEBUG [26031]: Closing database connection -- 20:55:33.077 SQL [26031]: pgsql_close() -- 20:55:33.181 INFO [26031]: COREGRADE is starting... -- 20:55:33.181 INFO [26031]: Version from config: 1.0 -- 20:55:33.181 DEBUG [26031]: Connecting to database... -- 20:55:33.182 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:55:33.182 SQL [26031]: pgsql_db_connect() -- 20:55:33.185 DEBUG [26031]: Database connection successful -- 20:55:33.186 INFO [26031]: _SERVER found -- 20:55:33.186 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 20:55:33.186 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 20:55:33.186 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=3cllipniqtt898sghus74svl179ih728 -- 20:55:33.186 INFO [26031]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:55:33.186 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:55:33.197 INFO [26031]: COREGRADE is stopping... -- 20:55:33.197 DEBUG [26031]: Closing database connection -- 20:55:33.197 SQL [26031]: pgsql_close() -- 20:55:35.726 INFO [26031]: COREGRADE is starting... -- 20:55:35.726 INFO [26031]: Version from config: 1.0 -- 20:55:35.726 DEBUG [26031]: Connecting to database... -- 20:55:35.726 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:55:35.726 SQL [26031]: pgsql_db_connect() -- 20:55:35.731 DEBUG [26031]: Database connection successful -- 20:55:35.731 INFO [26031]: _SERVER found -- 20:55:35.731 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 20:55:35.731 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 20:55:35.731 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=3cllipniqtt898sghus74svl179ih728 -- 20:55:35.731 INFO [26031]: QUERY_STRING = /member/viewCardAddAction -- 20:55:35.731 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:55:35.762 INFO [26031]: COREGRADE is stopping... -- 20:55:35.762 DEBUG [26031]: Closing database connection -- 20:55:35.762 SQL [26031]: pgsql_close() -- 20:55:35.785 INFO [26031]: COREGRADE is starting... -- 20:55:35.785 INFO [26031]: Version from config: 1.0 -- 20:55:35.785 DEBUG [26031]: Connecting to database... -- 20:55:35.785 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:55:35.785 SQL [26031]: pgsql_db_connect() -- 20:55:35.789 DEBUG [26031]: Database connection successful -- 20:55:35.789 INFO [26031]: _SERVER found -- 20:55:35.789 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 20:55:35.789 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 20:55:35.789 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=3cllipniqtt898sghus74svl179ih728 -- 20:55:35.789 INFO [26031]: QUERY_STRING = /member/upload -- 20:55:35.789 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:55:35.821 INFO [26031]: COREGRADE is stopping... -- 20:55:35.821 DEBUG [26031]: Closing database connection -- 20:55:35.822 SQL [26031]: pgsql_close() -- 20:55:38.431 INFO [26031]: COREGRADE is starting... -- 20:55:38.431 INFO [26031]: Version from config: 1.0 -- 20:55:38.431 DEBUG [26031]: Connecting to database... -- 20:55:38.431 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:55:38.431 SQL [26031]: pgsql_db_connect() -- 20:55:38.435 DEBUG [26031]: Database connection successful -- 20:55:38.435 INFO [26031]: _SERVER found -- 20:55:38.435 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 20:55:38.435 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 20:55:38.435 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=3cllipniqtt898sghus74svl179ih728 -- 20:55:38.435 INFO [26031]: QUERY_STRING = /member/addPageCards -- 20:55:38.435 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:55:38.466 INFO [26031]: COREGRADE is stopping... -- 20:55:38.466 DEBUG [26031]: Closing database connection -- 20:55:38.466 SQL [26031]: pgsql_close() -- 20:57:45.218 INFO [26043]: COREGRADE is starting... -- 20:57:45.218 INFO [26043]: Version from config: 1.0 -- 20:57:45.218 DEBUG [26043]: Connecting to database... -- 20:57:45.218 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:57:45.218 SQL [26043]: pgsql_db_connect() -- 20:57:45.223 DEBUG [26043]: Database connection successful -- 20:57:45.223 INFO [26043]: _SERVER found -- 20:57:45.223 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 20:57:45.223 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 20:57:45.223 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=3cllipniqtt898sghus74svl179ih728 -- 20:57:45.223 INFO [26043]: QUERY_STRING = /member -- 20:57:45.223 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:57:45.265 INFO [26043]: COREGRADE is stopping... -- 20:57:45.265 DEBUG [26043]: Closing database connection -- 20:57:45.265 SQL [26043]: pgsql_close() -- 20:57:45.388 INFO [26043]: COREGRADE is starting... -- 20:57:45.389 INFO [26043]: Version from config: 1.0 -- 20:57:45.389 DEBUG [26043]: Connecting to database... -- 20:57:45.389 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:57:45.389 SQL [26043]: pgsql_db_connect() -- 20:57:45.393 DEBUG [26043]: Database connection successful -- 20:57:45.393 INFO [26043]: _SERVER found -- 20:57:45.393 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 20:57:45.393 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 20:57:45.393 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=3cllipniqtt898sghus74svl179ih728 -- 20:57:45.393 INFO [26043]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:57:45.393 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:57:45.404 INFO [26043]: COREGRADE is stopping... -- 20:57:45.404 DEBUG [26043]: Closing database connection -- 20:57:45.404 SQL [26043]: pgsql_close() -- 20:57:46.490 INFO [26043]: COREGRADE is starting... -- 20:57:46.491 INFO [26043]: Version from config: 1.0 -- 20:57:46.491 DEBUG [26043]: Connecting to database... -- 20:57:46.491 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:57:46.491 SQL [26043]: pgsql_db_connect() -- 20:57:46.495 DEBUG [26043]: Database connection successful -- 20:57:46.495 INFO [26043]: _SERVER found -- 20:57:46.495 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 20:57:46.495 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 20:57:46.495 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=3cllipniqtt898sghus74svl179ih728 -- 20:57:46.495 INFO [26043]: QUERY_STRING = /member/page -- 20:57:46.495 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:57:46.537 INFO [26043]: COREGRADE is stopping... -- 20:57:46.537 DEBUG [26043]: Closing database connection -- 20:57:46.537 SQL [26043]: pgsql_close() -- 20:57:46.617 INFO [26043]: COREGRADE is starting... -- 20:57:46.617 INFO [26043]: Version from config: 1.0 -- 20:57:46.617 DEBUG [26043]: Connecting to database... -- 20:57:46.617 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:57:46.617 SQL [26043]: pgsql_db_connect() -- 20:57:46.621 DEBUG [26043]: Database connection successful -- 20:57:46.621 INFO [26043]: _SERVER found -- 20:57:46.621 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 20:57:46.621 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 20:57:46.621 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=3cllipniqtt898sghus74svl179ih728 -- 20:57:46.621 INFO [26043]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:57:46.621 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:57:46.632 INFO [26043]: COREGRADE is stopping... -- 20:57:46.632 DEBUG [26043]: Closing database connection -- 20:57:46.632 SQL [26043]: pgsql_close() -- 20:57:50.826 INFO [26043]: COREGRADE is starting... -- 20:57:50.826 INFO [26043]: Version from config: 1.0 -- 20:57:50.826 DEBUG [26043]: Connecting to database... -- 20:57:50.827 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:57:50.827 SQL [26043]: pgsql_db_connect() -- 20:57:50.831 DEBUG [26043]: Database connection successful -- 20:57:50.831 INFO [26043]: _SERVER found -- 20:57:50.831 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 20:57:50.831 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 20:57:50.831 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=3cllipniqtt898sghus74svl179ih728 -- 20:57:50.831 INFO [26043]: QUERY_STRING = /member/viewCardAddAction -- 20:57:50.831 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:57:50.862 INFO [26043]: COREGRADE is stopping... -- 20:57:50.862 DEBUG [26043]: Closing database connection -- 20:57:50.862 SQL [26043]: pgsql_close() -- 20:57:50.883 INFO [26043]: COREGRADE is starting... -- 20:57:50.883 INFO [26043]: Version from config: 1.0 -- 20:57:50.883 DEBUG [26043]: Connecting to database... -- 20:57:50.883 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:57:50.883 SQL [26043]: pgsql_db_connect() -- 20:57:50.887 DEBUG [26043]: Database connection successful -- 20:57:50.887 INFO [26043]: _SERVER found -- 20:57:50.887 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 20:57:50.887 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 20:57:50.887 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=3cllipniqtt898sghus74svl179ih728 -- 20:57:50.887 INFO [26043]: QUERY_STRING = /member/upload -- 20:57:50.887 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:57:50.919 INFO [26043]: COREGRADE is stopping... -- 20:57:50.919 DEBUG [26043]: Closing database connection -- 20:57:50.919 SQL [26043]: pgsql_close() -- 20:57:53.879 INFO [26043]: COREGRADE is starting... -- 20:57:53.880 INFO [26043]: Version from config: 1.0 -- 20:57:53.880 DEBUG [26043]: Connecting to database... -- 20:57:53.880 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:57:53.880 SQL [26043]: pgsql_db_connect() -- 20:57:53.884 DEBUG [26043]: Database connection successful -- 20:57:53.884 INFO [26043]: _SERVER found -- 20:57:53.884 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 20:57:53.884 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 20:57:53.884 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=3cllipniqtt898sghus74svl179ih728 -- 20:57:53.884 INFO [26043]: QUERY_STRING = /member/addPageCards -- 20:57:53.884 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:57:53.914 INFO [26043]: COREGRADE is stopping... -- 20:57:53.914 DEBUG [26043]: Closing database connection -- 20:57:53.914 SQL [26043]: pgsql_close() -- 20:58:22.383 INFO [25976]: COREGRADE is starting... -- 20:58:22.383 INFO [25976]: Version from config: 1.0 -- 20:58:22.383 DEBUG [25976]: Connecting to database... -- 20:58:22.383 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:58:22.384 SQL [25976]: pgsql_db_connect() -- 20:58:22.388 DEBUG [25976]: Database connection successful -- 20:58:22.388 INFO [25976]: _SERVER found -- 20:58:22.388 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 20:58:22.388 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 20:58:22.388 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=3cllipniqtt898sghus74svl179ih728 -- 20:58:22.388 INFO [25976]: QUERY_STRING = /member/page -- 20:58:22.388 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:58:22.431 INFO [25976]: COREGRADE is stopping... -- 20:58:22.431 DEBUG [25976]: Closing database connection -- 20:58:22.431 SQL [25976]: pgsql_close() -- 20:58:22.527 INFO [25976]: COREGRADE is starting... -- 20:58:22.527 INFO [25976]: Version from config: 1.0 -- 20:58:22.527 DEBUG [25976]: Connecting to database... -- 20:58:22.527 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:58:22.527 SQL [25976]: pgsql_db_connect() -- 20:58:22.531 DEBUG [25976]: Database connection successful -- 20:58:22.531 INFO [25976]: _SERVER found -- 20:58:22.531 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 20:58:22.531 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 20:58:22.531 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=3cllipniqtt898sghus74svl179ih728 -- 20:58:22.531 INFO [25976]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:58:22.531 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:58:22.542 INFO [25976]: COREGRADE is stopping... -- 20:58:22.542 DEBUG [25976]: Closing database connection -- 20:58:22.542 SQL [25976]: pgsql_close() -- 20:58:25.616 INFO [25976]: COREGRADE is starting... -- 20:58:25.616 INFO [25976]: Version from config: 1.0 -- 20:58:25.616 DEBUG [25976]: Connecting to database... -- 20:58:25.616 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:58:25.616 SQL [25976]: pgsql_db_connect() -- 20:58:25.620 DEBUG [25976]: Database connection successful -- 20:58:25.620 INFO [25976]: _SERVER found -- 20:58:25.620 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 20:58:25.620 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 20:58:25.620 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=3cllipniqtt898sghus74svl179ih728 -- 20:58:25.620 INFO [25976]: QUERY_STRING = /member/page -- 20:58:25.620 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:58:25.666 INFO [25976]: COREGRADE is stopping... -- 20:58:25.666 DEBUG [25976]: Closing database connection -- 20:58:25.666 SQL [25976]: pgsql_close() -- 20:58:25.773 INFO [25976]: COREGRADE is starting... -- 20:58:25.773 INFO [25976]: Version from config: 1.0 -- 20:58:25.773 DEBUG [25976]: Connecting to database... -- 20:58:25.773 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:58:25.773 SQL [25976]: pgsql_db_connect() -- 20:58:25.777 DEBUG [25976]: Database connection successful -- 20:58:25.777 INFO [25976]: _SERVER found -- 20:58:25.777 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 20:58:25.777 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 20:58:25.777 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=3cllipniqtt898sghus74svl179ih728 -- 20:58:25.777 INFO [25976]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:58:25.777 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:58:25.789 INFO [25976]: COREGRADE is stopping... -- 20:58:25.789 DEBUG [25976]: Closing database connection -- 20:58:25.789 SQL [25976]: pgsql_close() -- 20:58:31.647 INFO [25980]: COREGRADE is starting... -- 20:58:31.647 INFO [25980]: Version from config: 1.0 -- 20:58:31.647 DEBUG [25980]: Connecting to database... -- 20:58:31.647 DEBUG [25980]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:58:31.647 SQL [25980]: pgsql_db_connect() -- 20:58:31.651 DEBUG [25980]: Database connection successful -- 20:58:31.651 INFO [25980]: _SERVER found -- 20:58:31.651 INFO [25980]: REMOTE_ADDR = 192.168.1.13 -- 20:58:31.651 INFO [25980]: SERVER_NAME = oameye.works.coregrade.com -- 20:58:31.651 INFO [25980]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=3cllipniqtt898sghus74svl179ih728 -- 20:58:31.651 INFO [25980]: QUERY_STRING = /member/viewCardAddAction -- 20:58:31.651 INFO [25980]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:58:31.684 INFO [25980]: COREGRADE is stopping... -- 20:58:31.684 DEBUG [25980]: Closing database connection -- 20:58:31.684 SQL [25980]: pgsql_close() -- 20:58:31.709 INFO [25980]: COREGRADE is starting... -- 20:58:31.710 INFO [25980]: Version from config: 1.0 -- 20:58:31.710 DEBUG [25980]: Connecting to database... -- 20:58:31.710 DEBUG [25980]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:58:31.710 SQL [25980]: pgsql_db_connect() -- 20:58:31.713 DEBUG [25980]: Database connection successful -- 20:58:31.713 INFO [25980]: _SERVER found -- 20:58:31.713 INFO [25980]: REMOTE_ADDR = 192.168.1.13 -- 20:58:31.713 INFO [25980]: SERVER_NAME = oameye.works.coregrade.com -- 20:58:31.713 INFO [25980]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=3cllipniqtt898sghus74svl179ih728 -- 20:58:31.713 INFO [25980]: QUERY_STRING = /member/upload -- 20:58:31.713 INFO [25980]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:58:31.761 INFO [25980]: COREGRADE is stopping... -- 20:58:31.761 DEBUG [25980]: Closing database connection -- 20:58:31.761 SQL [25980]: pgsql_close() -- 21:01:13.928 INFO [25983]: COREGRADE is starting... -- 21:01:13.929 INFO [25983]: Version from config: 1.0 -- 21:01:13.929 DEBUG [25983]: Connecting to database... -- 21:01:13.929 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:01:13.929 SQL [25983]: pgsql_db_connect() -- 21:01:13.933 DEBUG [25983]: Database connection successful -- 21:01:13.933 INFO [25983]: _SERVER found -- 21:01:13.933 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 21:01:13.933 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 21:01:13.933 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=3cllipniqtt898sghus74svl179ih728 -- 21:01:13.933 INFO [25983]: QUERY_STRING = /member -- 21:01:13.933 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:01:13.978 INFO [25983]: COREGRADE is stopping... -- 21:01:13.978 DEBUG [25983]: Closing database connection -- 21:01:13.978 SQL [25983]: pgsql_close() -- 21:01:14.113 INFO [25983]: COREGRADE is starting... -- 21:01:14.114 INFO [25983]: Version from config: 1.0 -- 21:01:14.114 DEBUG [25983]: Connecting to database... -- 21:01:14.114 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:01:14.114 SQL [25983]: pgsql_db_connect() -- 21:01:14.118 DEBUG [25983]: Database connection successful -- 21:01:14.118 INFO [25983]: _SERVER found -- 21:01:14.118 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 21:01:14.118 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 21:01:14.118 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2ro57osgfbguu7j4kggcvnr5m5k3374e -- 21:01:14.118 INFO [25983]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:01:14.118 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:01:14.130 INFO [25983]: COREGRADE is stopping... -- 21:01:14.130 DEBUG [25983]: Closing database connection -- 21:01:14.130 SQL [25983]: pgsql_close() -- 21:01:15.268 INFO [25983]: COREGRADE is starting... -- 21:01:15.268 INFO [25983]: Version from config: 1.0 -- 21:01:15.268 DEBUG [25983]: Connecting to database... -- 21:01:15.268 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:01:15.269 SQL [25983]: pgsql_db_connect() -- 21:01:15.273 DEBUG [25983]: Database connection successful -- 21:01:15.273 INFO [25983]: _SERVER found -- 21:01:15.273 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 21:01:15.273 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 21:01:15.273 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2ro57osgfbguu7j4kggcvnr5m5k3374e -- 21:01:15.273 INFO [25983]: QUERY_STRING = /member/page -- 21:01:15.273 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:01:15.319 INFO [25983]: COREGRADE is stopping... -- 21:01:15.319 DEBUG [25983]: Closing database connection -- 21:01:15.319 SQL [25983]: pgsql_close() -- 21:01:15.403 INFO [25983]: COREGRADE is starting... -- 21:01:15.403 INFO [25983]: Version from config: 1.0 -- 21:01:15.403 DEBUG [25983]: Connecting to database... -- 21:01:15.403 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:01:15.403 SQL [25983]: pgsql_db_connect() -- 21:01:15.407 DEBUG [25983]: Database connection successful -- 21:01:15.407 INFO [25983]: _SERVER found -- 21:01:15.407 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 21:01:15.407 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 21:01:15.407 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2ro57osgfbguu7j4kggcvnr5m5k3374e -- 21:01:15.407 INFO [25983]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:01:15.407 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:01:15.419 INFO [25983]: COREGRADE is stopping... -- 21:01:15.419 DEBUG [25983]: Closing database connection -- 21:01:15.419 SQL [25983]: pgsql_close() -- 21:01:17.966 INFO [25983]: COREGRADE is starting... -- 21:01:17.967 INFO [25983]: Version from config: 1.0 -- 21:01:17.967 DEBUG [25983]: Connecting to database... -- 21:01:17.967 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:01:17.967 SQL [25983]: pgsql_db_connect() -- 21:01:17.971 DEBUG [25983]: Database connection successful -- 21:01:17.971 INFO [25983]: _SERVER found -- 21:01:17.971 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 21:01:17.971 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 21:01:17.971 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2ro57osgfbguu7j4kggcvnr5m5k3374e -- 21:01:17.971 INFO [25983]: QUERY_STRING = /member/viewCardAddAction -- 21:01:17.971 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:01:18.005 INFO [25983]: COREGRADE is stopping... -- 21:01:18.005 DEBUG [25983]: Closing database connection -- 21:01:18.005 SQL [25983]: pgsql_close() -- 21:01:18.028 INFO [25983]: COREGRADE is starting... -- 21:01:18.028 INFO [25983]: Version from config: 1.0 -- 21:01:18.028 DEBUG [25983]: Connecting to database... -- 21:01:18.028 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:01:18.028 SQL [25983]: pgsql_db_connect() -- 21:01:18.032 DEBUG [25983]: Database connection successful -- 21:01:18.032 INFO [25983]: _SERVER found -- 21:01:18.032 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 21:01:18.032 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 21:01:18.032 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2ro57osgfbguu7j4kggcvnr5m5k3374e -- 21:01:18.032 INFO [25983]: QUERY_STRING = /member/upload -- 21:01:18.032 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:01:18.068 INFO [25983]: COREGRADE is stopping... -- 21:01:18.068 DEBUG [25983]: Closing database connection -- 21:01:18.068 SQL [25983]: pgsql_close() -- 21:01:22.696 INFO [25983]: COREGRADE is starting... -- 21:01:22.697 INFO [25983]: Version from config: 1.0 -- 21:01:22.697 DEBUG [25983]: Connecting to database... -- 21:01:22.697 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:01:22.697 SQL [25983]: pgsql_db_connect() -- 21:01:22.701 DEBUG [25983]: Database connection successful -- 21:01:22.701 INFO [25983]: _SERVER found -- 21:01:22.701 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 21:01:22.701 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 21:01:22.701 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2ro57osgfbguu7j4kggcvnr5m5k3374e -- 21:01:22.701 INFO [25983]: QUERY_STRING = /member/addPageCards -- 21:01:22.701 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:01:22.736 INFO [25983]: COREGRADE is stopping... -- 21:01:22.736 DEBUG [25983]: Closing database connection -- 21:01:22.736 SQL [25983]: pgsql_close() -- 21:02:12.940 INFO [26029]: COREGRADE is starting... -- 21:02:12.940 INFO [26029]: Version from config: 1.0 -- 21:02:12.940 DEBUG [26029]: Connecting to database... -- 21:02:12.940 DEBUG [26029]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:02:12.940 SQL [26029]: pgsql_db_connect() -- 21:02:12.944 DEBUG [26029]: Database connection successful -- 21:02:12.944 INFO [26029]: _SERVER found -- 21:02:12.944 INFO [26029]: REMOTE_ADDR = 192.168.1.13 -- 21:02:12.944 INFO [26029]: SERVER_NAME = oameye.works.coregrade.com -- 21:02:12.944 INFO [26029]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2ro57osgfbguu7j4kggcvnr5m5k3374e -- 21:02:12.944 INFO [26029]: QUERY_STRING = /member/viewCardAddAction -- 21:02:12.944 INFO [26029]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:02:12.977 INFO [26029]: COREGRADE is stopping... -- 21:02:12.977 DEBUG [26029]: Closing database connection -- 21:02:12.977 SQL [26029]: pgsql_close() -- 21:02:17.272 INFO [26029]: COREGRADE is starting... -- 21:02:17.273 INFO [26029]: Version from config: 1.0 -- 21:02:17.273 DEBUG [26029]: Connecting to database... -- 21:02:17.273 DEBUG [26029]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:02:17.273 SQL [26029]: pgsql_db_connect() -- 21:02:17.277 DEBUG [26029]: Database connection successful -- 21:02:17.277 INFO [26029]: _SERVER found -- 21:02:17.277 INFO [26029]: REMOTE_ADDR = 192.168.1.13 -- 21:02:17.277 INFO [26029]: SERVER_NAME = oameye.works.coregrade.com -- 21:02:17.277 INFO [26029]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2ro57osgfbguu7j4kggcvnr5m5k3374e -- 21:02:17.277 INFO [26029]: QUERY_STRING = /member/addPageCards -- 21:02:17.277 INFO [26029]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:02:17.308 INFO [26029]: COREGRADE is stopping... -- 21:02:17.308 DEBUG [26029]: Closing database connection -- 21:02:17.308 SQL [26029]: pgsql_close() -- 21:02:49.003 INFO [25979]: COREGRADE is starting... -- 21:02:49.003 INFO [25979]: Version from config: 1.0 -- 21:02:49.003 DEBUG [25979]: Connecting to database... -- 21:02:49.003 DEBUG [25979]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:02:49.003 SQL [25979]: pgsql_db_connect() -- 21:02:49.009 DEBUG [25979]: Database connection successful -- 21:02:49.009 INFO [25979]: _SERVER found -- 21:02:49.009 INFO [25979]: REMOTE_ADDR = 192.168.1.13 -- 21:02:49.009 INFO [25979]: SERVER_NAME = oameye.works.coregrade.com -- 21:02:49.009 INFO [25979]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2ro57osgfbguu7j4kggcvnr5m5k3374e -- 21:02:49.009 INFO [25979]: QUERY_STRING = /member -- 21:02:49.009 INFO [25979]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:02:49.051 INFO [25979]: COREGRADE is stopping... -- 21:02:49.051 DEBUG [25979]: Closing database connection -- 21:02:49.051 SQL [25979]: pgsql_close() -- 21:02:49.135 INFO [25979]: COREGRADE is starting... -- 21:02:49.136 INFO [25979]: Version from config: 1.0 -- 21:02:49.136 DEBUG [25979]: Connecting to database... -- 21:02:49.136 DEBUG [25979]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:02:49.136 SQL [25979]: pgsql_db_connect() -- 21:02:49.140 DEBUG [25979]: Database connection successful -- 21:02:49.140 INFO [25979]: _SERVER found -- 21:02:49.140 INFO [25979]: REMOTE_ADDR = 192.168.1.13 -- 21:02:49.140 INFO [25979]: SERVER_NAME = oameye.works.coregrade.com -- 21:02:49.140 INFO [25979]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2ro57osgfbguu7j4kggcvnr5m5k3374e -- 21:02:49.140 INFO [25979]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:02:49.140 INFO [25979]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:02:49.151 INFO [25979]: COREGRADE is stopping... -- 21:02:49.151 DEBUG [25979]: Closing database connection -- 21:02:49.151 SQL [25979]: pgsql_close() -- 21:02:50.200 INFO [25979]: COREGRADE is starting... -- 21:02:50.200 INFO [25979]: Version from config: 1.0 -- 21:02:50.200 DEBUG [25979]: Connecting to database... -- 21:02:50.200 DEBUG [25979]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:02:50.200 SQL [25979]: pgsql_db_connect() -- 21:02:50.204 DEBUG [25979]: Database connection successful -- 21:02:50.204 INFO [25979]: _SERVER found -- 21:02:50.204 INFO [25979]: REMOTE_ADDR = 192.168.1.13 -- 21:02:50.204 INFO [25979]: SERVER_NAME = oameye.works.coregrade.com -- 21:02:50.204 INFO [25979]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2ro57osgfbguu7j4kggcvnr5m5k3374e -- 21:02:50.204 INFO [25979]: QUERY_STRING = /member/page -- 21:02:50.204 INFO [25979]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:02:50.246 INFO [25979]: COREGRADE is stopping... -- 21:02:50.246 DEBUG [25979]: Closing database connection -- 21:02:50.246 SQL [25979]: pgsql_close() -- 21:02:50.345 INFO [25979]: COREGRADE is starting... -- 21:02:50.345 INFO [25979]: Version from config: 1.0 -- 21:02:50.345 DEBUG [25979]: Connecting to database... -- 21:02:50.345 DEBUG [25979]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:02:50.345 SQL [25979]: pgsql_db_connect() -- 21:02:50.349 DEBUG [25979]: Database connection successful -- 21:02:50.349 INFO [25979]: _SERVER found -- 21:02:50.349 INFO [25979]: REMOTE_ADDR = 192.168.1.13 -- 21:02:50.349 INFO [25979]: SERVER_NAME = oameye.works.coregrade.com -- 21:02:50.349 INFO [25979]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2ro57osgfbguu7j4kggcvnr5m5k3374e -- 21:02:50.349 INFO [25979]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:02:50.349 INFO [25979]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:02:50.360 INFO [25979]: COREGRADE is stopping... -- 21:02:50.360 DEBUG [25979]: Closing database connection -- 21:02:50.360 SQL [25979]: pgsql_close() -- 21:02:52.747 INFO [25979]: COREGRADE is starting... -- 21:02:52.747 INFO [25979]: Version from config: 1.0 -- 21:02:52.747 DEBUG [25979]: Connecting to database... -- 21:02:52.747 DEBUG [25979]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:02:52.747 SQL [25979]: pgsql_db_connect() -- 21:02:52.751 DEBUG [25979]: Database connection successful -- 21:02:52.751 INFO [25979]: _SERVER found -- 21:02:52.751 INFO [25979]: REMOTE_ADDR = 192.168.1.13 -- 21:02:52.751 INFO [25979]: SERVER_NAME = oameye.works.coregrade.com -- 21:02:52.751 INFO [25979]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2ro57osgfbguu7j4kggcvnr5m5k3374e -- 21:02:52.751 INFO [25979]: QUERY_STRING = /member/viewCardAddAction -- 21:02:52.751 INFO [25979]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:02:52.783 INFO [25979]: COREGRADE is stopping... -- 21:02:52.783 DEBUG [25979]: Closing database connection -- 21:02:52.783 SQL [25979]: pgsql_close() -- 21:02:52.809 INFO [25979]: COREGRADE is starting... -- 21:02:52.810 INFO [25979]: Version from config: 1.0 -- 21:02:52.810 DEBUG [25979]: Connecting to database... -- 21:02:52.810 DEBUG [25979]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:02:52.810 SQL [25979]: pgsql_db_connect() -- 21:02:52.814 DEBUG [25979]: Database connection successful -- 21:02:52.814 INFO [25979]: _SERVER found -- 21:02:52.814 INFO [25979]: REMOTE_ADDR = 192.168.1.13 -- 21:02:52.814 INFO [25979]: SERVER_NAME = oameye.works.coregrade.com -- 21:02:52.814 INFO [25979]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2ro57osgfbguu7j4kggcvnr5m5k3374e -- 21:02:52.814 INFO [25979]: QUERY_STRING = /member/upload -- 21:02:52.814 INFO [25979]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:02:52.871 INFO [25979]: COREGRADE is stopping... -- 21:02:52.871 DEBUG [25979]: Closing database connection -- 21:02:52.872 SQL [25979]: pgsql_close() -- 21:02:57.866 INFO [25979]: COREGRADE is starting... -- 21:02:57.866 INFO [25979]: Version from config: 1.0 -- 21:02:57.866 DEBUG [25979]: Connecting to database... -- 21:02:57.866 DEBUG [25979]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:02:57.866 SQL [25979]: pgsql_db_connect() -- 21:02:57.870 DEBUG [25979]: Database connection successful -- 21:02:57.870 INFO [25979]: _SERVER found -- 21:02:57.870 INFO [25979]: REMOTE_ADDR = 192.168.1.13 -- 21:02:57.870 INFO [25979]: SERVER_NAME = oameye.works.coregrade.com -- 21:02:57.870 INFO [25979]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2ro57osgfbguu7j4kggcvnr5m5k3374e -- 21:02:57.870 INFO [25979]: QUERY_STRING = /member/addPageCards -- 21:02:57.870 INFO [25979]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:02:57.901 INFO [25979]: COREGRADE is stopping... -- 21:02:57.901 DEBUG [25979]: Closing database connection -- 21:02:57.901 SQL [25979]: pgsql_close() -- 21:14:27.309 INFO [26030]: COREGRADE is starting... -- 21:14:27.310 INFO [26030]: Version from config: 1.0 -- 21:14:27.310 DEBUG [26030]: Connecting to database... -- 21:14:27.310 DEBUG [26030]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:14:27.310 SQL [26030]: pgsql_db_connect() -- 21:14:27.315 DEBUG [26030]: Database connection successful -- 21:14:27.315 INFO [26030]: _SERVER found -- 21:14:27.315 INFO [26030]: REMOTE_ADDR = 192.168.1.13 -- 21:14:27.315 INFO [26030]: SERVER_NAME = oameye.works.coregrade.com -- 21:14:27.315 INFO [26030]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2ro57osgfbguu7j4kggcvnr5m5k3374e -- 21:14:27.315 INFO [26030]: QUERY_STRING = /member/viewCardAddAction -- 21:14:27.315 INFO [26030]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:14:27.350 INFO [26030]: COREGRADE is stopping... -- 21:14:27.350 DEBUG [26030]: Closing database connection -- 21:14:27.350 SQL [26030]: pgsql_close() -- 21:14:35.081 INFO [25978]: COREGRADE is starting... -- 21:14:35.081 INFO [25978]: Version from config: 1.0 -- 21:14:35.081 DEBUG [25978]: Connecting to database... -- 21:14:35.081 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:14:35.081 SQL [25978]: pgsql_db_connect() -- 21:14:35.086 DEBUG [25978]: Database connection successful -- 21:14:35.086 INFO [25978]: _SERVER found -- 21:14:35.086 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 21:14:35.086 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 21:14:35.086 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2ro57osgfbguu7j4kggcvnr5m5k3374e -- 21:14:35.086 INFO [25978]: QUERY_STRING = /member/addPageCards -- 21:14:35.086 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:14:35.120 INFO [25978]: COREGRADE is stopping... -- 21:14:35.120 DEBUG [25978]: Closing database connection -- 21:14:35.120 SQL [25978]: pgsql_close() -- 22:18:45.849 INFO [25977]: COREGRADE is starting... -- 22:18:45.849 INFO [25977]: Version from config: 1.0 -- 22:18:45.849 DEBUG [25977]: Connecting to database... -- 22:18:45.849 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:18:45.849 SQL [25977]: pgsql_db_connect() -- 22:18:45.854 DEBUG [25977]: Database connection successful -- 22:18:45.854 INFO [25977]: _SERVER found -- 22:18:45.854 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 22:18:45.854 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 22:18:45.854 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2ro57osgfbguu7j4kggcvnr5m5k3374e -- 22:18:45.854 INFO [25977]: QUERY_STRING = /member/viewCardAddAction -- 22:18:45.854 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:18:45.893 INFO [25977]: COREGRADE is stopping... -- 22:18:45.893 DEBUG [25977]: Closing database connection -- 22:18:45.893 SQL [25977]: pgsql_close() -- 22:18:51.104 INFO [26031]: COREGRADE is starting... -- 22:18:51.105 INFO [26031]: Version from config: 1.0 -- 22:18:51.105 DEBUG [26031]: Connecting to database... -- 22:18:51.105 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:18:51.105 SQL [26031]: pgsql_db_connect() -- 22:18:51.109 DEBUG [26031]: Database connection successful -- 22:18:51.109 INFO [26031]: _SERVER found -- 22:18:51.109 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 22:18:51.109 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 22:18:51.109 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2ro57osgfbguu7j4kggcvnr5m5k3374e -- 22:18:51.109 INFO [26031]: QUERY_STRING = /member/addPageCards -- 22:18:51.109 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:18:51.144 INFO [26031]: COREGRADE is stopping... -- 22:18:51.144 DEBUG [26031]: Closing database connection -- 22:18:51.144 SQL [26031]: pgsql_close() -- 22:19:47.755 INFO [26043]: COREGRADE is starting... -- 22:19:47.755 INFO [26043]: Version from config: 1.0 -- 22:19:47.755 DEBUG [26043]: Connecting to database... -- 22:19:47.755 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:19:47.755 SQL [26043]: pgsql_db_connect() -- 22:19:47.759 DEBUG [26043]: Database connection successful -- 22:19:47.759 INFO [26043]: _SERVER found -- 22:19:47.759 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 22:19:47.759 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 22:19:47.759 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2ro57osgfbguu7j4kggcvnr5m5k3374e -- 22:19:47.759 INFO [26043]: QUERY_STRING = /member/viewCardAddAction -- 22:19:47.759 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:19:47.794 INFO [26043]: COREGRADE is stopping... -- 22:19:47.794 DEBUG [26043]: Closing database connection -- 22:19:47.794 SQL [26043]: pgsql_close() -- 22:19:51.971 INFO [26043]: COREGRADE is starting... -- 22:19:51.972 INFO [26043]: Version from config: 1.0 -- 22:19:51.972 DEBUG [26043]: Connecting to database... -- 22:19:51.972 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:19:51.972 SQL [26043]: pgsql_db_connect() -- 22:19:51.976 DEBUG [26043]: Database connection successful -- 22:19:51.976 INFO [26043]: _SERVER found -- 22:19:51.976 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 22:19:51.976 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 22:19:51.976 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2ro57osgfbguu7j4kggcvnr5m5k3374e -- 22:19:51.976 INFO [26043]: QUERY_STRING = /member/addPageCards -- 22:19:51.976 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:19:52.007 INFO [26043]: COREGRADE is stopping... -- 22:19:52.007 DEBUG [26043]: Closing database connection -- 22:19:52.007 SQL [26043]: pgsql_close() -- 22:28:11.616 INFO [25976]: COREGRADE is starting... -- 22:28:11.617 INFO [25976]: Version from config: 1.0 -- 22:28:11.617 DEBUG [25976]: Connecting to database... -- 22:28:11.617 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:28:11.617 SQL [25976]: pgsql_db_connect() -- 22:28:11.621 DEBUG [25976]: Database connection successful -- 22:28:11.621 INFO [25976]: _SERVER found -- 22:28:11.621 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 22:28:11.621 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 22:28:11.621 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2ro57osgfbguu7j4kggcvnr5m5k3374e -- 22:28:11.621 INFO [25976]: QUERY_STRING = /member -- 22:28:11.621 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:28:11.668 INFO [25976]: COREGRADE is stopping... -- 22:28:11.668 DEBUG [25976]: Closing database connection -- 22:28:11.668 SQL [25976]: pgsql_close() -- 22:28:11.782 INFO [25976]: COREGRADE is starting... -- 22:28:11.782 INFO [25976]: Version from config: 1.0 -- 22:28:11.782 DEBUG [25976]: Connecting to database... -- 22:28:11.782 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:28:11.782 SQL [25976]: pgsql_db_connect() -- 22:28:11.786 DEBUG [25976]: Database connection successful -- 22:28:11.786 INFO [25976]: _SERVER found -- 22:28:11.786 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 22:28:11.786 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 22:28:11.786 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=lppmmvi6u72615otq762fb0j99sih7v6 -- 22:28:11.786 INFO [25976]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:28:11.786 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:28:11.797 INFO [25976]: COREGRADE is stopping... -- 22:28:11.797 DEBUG [25976]: Closing database connection -- 22:28:11.797 SQL [25976]: pgsql_close() -- 22:28:12.897 INFO [25976]: COREGRADE is starting... -- 22:28:12.897 INFO [25976]: Version from config: 1.0 -- 22:28:12.897 DEBUG [25976]: Connecting to database... -- 22:28:12.897 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:28:12.897 SQL [25976]: pgsql_db_connect() -- 22:28:12.901 DEBUG [25976]: Database connection successful -- 22:28:12.901 INFO [25976]: _SERVER found -- 22:28:12.901 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 22:28:12.901 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 22:28:12.901 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=lppmmvi6u72615otq762fb0j99sih7v6 -- 22:28:12.901 INFO [25976]: QUERY_STRING = /member/page -- 22:28:12.901 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:28:12.945 INFO [25976]: COREGRADE is stopping... -- 22:28:12.945 DEBUG [25976]: Closing database connection -- 22:28:12.945 SQL [25976]: pgsql_close() -- 22:28:13.056 INFO [25976]: COREGRADE is starting... -- 22:28:13.056 INFO [25976]: Version from config: 1.0 -- 22:28:13.056 DEBUG [25976]: Connecting to database... -- 22:28:13.057 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:28:13.057 SQL [25976]: pgsql_db_connect() -- 22:28:13.061 DEBUG [25976]: Database connection successful -- 22:28:13.061 INFO [25976]: _SERVER found -- 22:28:13.061 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 22:28:13.061 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 22:28:13.061 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=lppmmvi6u72615otq762fb0j99sih7v6 -- 22:28:13.061 INFO [25976]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:28:13.061 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:28:13.072 INFO [25976]: COREGRADE is stopping... -- 22:28:13.072 DEBUG [25976]: Closing database connection -- 22:28:13.072 SQL [25976]: pgsql_close() -- 22:28:15.506 INFO [25976]: COREGRADE is starting... -- 22:28:15.506 INFO [25976]: Version from config: 1.0 -- 22:28:15.506 DEBUG [25976]: Connecting to database... -- 22:28:15.506 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:28:15.506 SQL [25976]: pgsql_db_connect() -- 22:28:15.510 DEBUG [25976]: Database connection successful -- 22:28:15.510 INFO [25976]: _SERVER found -- 22:28:15.510 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 22:28:15.510 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 22:28:15.510 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=lppmmvi6u72615otq762fb0j99sih7v6 -- 22:28:15.510 INFO [25976]: QUERY_STRING = /member/viewCardAddAction -- 22:28:15.510 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:28:15.542 INFO [25976]: COREGRADE is stopping... -- 22:28:15.542 DEBUG [25976]: Closing database connection -- 22:28:15.542 SQL [25976]: pgsql_close() -- 22:28:15.565 INFO [25976]: COREGRADE is starting... -- 22:28:15.566 INFO [25976]: Version from config: 1.0 -- 22:28:15.566 DEBUG [25976]: Connecting to database... -- 22:28:15.566 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:28:15.566 SQL [25976]: pgsql_db_connect() -- 22:28:15.570 DEBUG [25976]: Database connection successful -- 22:28:15.570 INFO [25976]: _SERVER found -- 22:28:15.570 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 22:28:15.570 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 22:28:15.570 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=lppmmvi6u72615otq762fb0j99sih7v6 -- 22:28:15.570 INFO [25976]: QUERY_STRING = /member/upload -- 22:28:15.570 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:28:15.602 INFO [25976]: COREGRADE is stopping... -- 22:28:15.602 DEBUG [25976]: Closing database connection -- 22:28:15.602 SQL [25976]: pgsql_close() -- 22:28:20.962 INFO [25980]: COREGRADE is starting... -- 22:28:20.962 INFO [25980]: Version from config: 1.0 -- 22:28:20.962 DEBUG [25980]: Connecting to database... -- 22:28:20.962 DEBUG [25980]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:28:20.962 SQL [25980]: pgsql_db_connect() -- 22:28:20.966 DEBUG [25980]: Database connection successful -- 22:28:20.966 INFO [25980]: _SERVER found -- 22:28:20.966 INFO [25980]: REMOTE_ADDR = 192.168.1.13 -- 22:28:20.966 INFO [25980]: SERVER_NAME = oameye.works.coregrade.com -- 22:28:20.966 INFO [25980]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=lppmmvi6u72615otq762fb0j99sih7v6 -- 22:28:20.966 INFO [25980]: QUERY_STRING = /member/addPageCards -- 22:28:20.966 INFO [25980]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:28:21.001 INFO [25980]: COREGRADE is stopping... -- 22:28:21.001 DEBUG [25980]: Closing database connection -- 22:28:21.001 SQL [25980]: pgsql_close() -- 22:29:14.440 INFO [25983]: COREGRADE is starting... -- 22:29:14.440 INFO [25983]: Version from config: 1.0 -- 22:29:14.440 DEBUG [25983]: Connecting to database... -- 22:29:14.440 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:29:14.440 SQL [25983]: pgsql_db_connect() -- 22:29:14.445 DEBUG [25983]: Database connection successful -- 22:29:14.445 INFO [25983]: _SERVER found -- 22:29:14.445 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 22:29:14.445 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 22:29:14.445 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=lppmmvi6u72615otq762fb0j99sih7v6 -- 22:29:14.445 INFO [25983]: QUERY_STRING = /member/viewCardAddAction -- 22:29:14.445 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:29:14.481 INFO [25983]: COREGRADE is stopping... -- 22:29:14.481 DEBUG [25983]: Closing database connection -- 22:29:14.481 SQL [25983]: pgsql_close() -- 22:29:18.761 INFO [25983]: COREGRADE is starting... -- 22:29:18.761 INFO [25983]: Version from config: 1.0 -- 22:29:18.761 DEBUG [25983]: Connecting to database... -- 22:29:18.761 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:29:18.761 SQL [25983]: pgsql_db_connect() -- 22:29:18.765 DEBUG [25983]: Database connection successful -- 22:29:18.766 INFO [25983]: _SERVER found -- 22:29:18.766 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 22:29:18.766 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 22:29:18.766 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=lppmmvi6u72615otq762fb0j99sih7v6 -- 22:29:18.766 INFO [25983]: QUERY_STRING = /member/addPageCards -- 22:29:18.766 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:29:18.801 INFO [25983]: COREGRADE is stopping... -- 22:29:18.801 DEBUG [25983]: Closing database connection -- 22:29:18.801 SQL [25983]: pgsql_close() -- 22:30:10.286 INFO [26029]: COREGRADE is starting... -- 22:30:10.287 INFO [26029]: Version from config: 1.0 -- 22:30:10.287 DEBUG [26029]: Connecting to database... -- 22:30:10.287 DEBUG [26029]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:30:10.287 SQL [26029]: pgsql_db_connect() -- 22:30:10.291 DEBUG [26029]: Database connection successful -- 22:30:10.291 INFO [26029]: _SERVER found -- 22:30:10.291 INFO [26029]: REMOTE_ADDR = 192.168.1.13 -- 22:30:10.291 INFO [26029]: SERVER_NAME = oameye.works.coregrade.com -- 22:30:10.291 INFO [26029]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=lppmmvi6u72615otq762fb0j99sih7v6 -- 22:30:10.291 INFO [26029]: QUERY_STRING = /member/page -- 22:30:10.291 INFO [26029]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:30:10.336 INFO [26029]: COREGRADE is stopping... -- 22:30:10.336 DEBUG [26029]: Closing database connection -- 22:30:10.336 SQL [26029]: pgsql_close() -- 22:30:10.433 INFO [26029]: COREGRADE is starting... -- 22:30:10.433 INFO [26029]: Version from config: 1.0 -- 22:30:10.433 DEBUG [26029]: Connecting to database... -- 22:30:10.433 DEBUG [26029]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:30:10.433 SQL [26029]: pgsql_db_connect() -- 22:30:10.437 DEBUG [26029]: Database connection successful -- 22:30:10.437 INFO [26029]: _SERVER found -- 22:30:10.437 INFO [26029]: REMOTE_ADDR = 192.168.1.13 -- 22:30:10.437 INFO [26029]: SERVER_NAME = oameye.works.coregrade.com -- 22:30:10.437 INFO [26029]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=lppmmvi6u72615otq762fb0j99sih7v6 -- 22:30:10.437 INFO [26029]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:30:10.437 INFO [26029]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:30:10.448 INFO [26029]: COREGRADE is stopping... -- 22:30:10.448 DEBUG [26029]: Closing database connection -- 22:30:10.448 SQL [26029]: pgsql_close() -- 22:30:13.144 INFO [26029]: COREGRADE is starting... -- 22:30:13.144 INFO [26029]: Version from config: 1.0 -- 22:30:13.144 DEBUG [26029]: Connecting to database... -- 22:30:13.144 DEBUG [26029]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:30:13.144 SQL [26029]: pgsql_db_connect() -- 22:30:13.149 DEBUG [26029]: Database connection successful -- 22:30:13.149 INFO [26029]: _SERVER found -- 22:30:13.149 INFO [26029]: REMOTE_ADDR = 192.168.1.13 -- 22:30:13.149 INFO [26029]: SERVER_NAME = oameye.works.coregrade.com -- 22:30:13.149 INFO [26029]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=lppmmvi6u72615otq762fb0j99sih7v6 -- 22:30:13.149 INFO [26029]: QUERY_STRING = /member/viewCardAddAction -- 22:30:13.149 INFO [26029]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:30:13.180 INFO [26029]: COREGRADE is stopping... -- 22:30:13.180 DEBUG [26029]: Closing database connection -- 22:30:13.180 SQL [26029]: pgsql_close() -- 22:30:13.198 INFO [26029]: COREGRADE is starting... -- 22:30:13.198 INFO [26029]: Version from config: 1.0 -- 22:30:13.198 DEBUG [26029]: Connecting to database... -- 22:30:13.198 DEBUG [26029]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:30:13.198 SQL [26029]: pgsql_db_connect() -- 22:30:13.202 DEBUG [26029]: Database connection successful -- 22:30:13.202 INFO [26029]: _SERVER found -- 22:30:13.202 INFO [26029]: REMOTE_ADDR = 192.168.1.13 -- 22:30:13.202 INFO [26029]: SERVER_NAME = oameye.works.coregrade.com -- 22:30:13.202 INFO [26029]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=lppmmvi6u72615otq762fb0j99sih7v6 -- 22:30:13.202 INFO [26029]: QUERY_STRING = /member/upload -- 22:30:13.202 INFO [26029]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:30:13.241 INFO [26029]: COREGRADE is stopping... -- 22:30:13.242 DEBUG [26029]: Closing database connection -- 22:30:13.242 SQL [26029]: pgsql_close() -- 22:30:19.914 INFO [25979]: COREGRADE is starting... -- 22:30:19.915 INFO [25979]: Version from config: 1.0 -- 22:30:19.915 DEBUG [25979]: Connecting to database... -- 22:30:19.915 DEBUG [25979]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:30:19.915 SQL [25979]: pgsql_db_connect() -- 22:30:19.919 DEBUG [25979]: Database connection successful -- 22:30:19.919 INFO [25979]: _SERVER found -- 22:30:19.919 INFO [25979]: REMOTE_ADDR = 192.168.1.13 -- 22:30:19.919 INFO [25979]: SERVER_NAME = oameye.works.coregrade.com -- 22:30:19.919 INFO [25979]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=lppmmvi6u72615otq762fb0j99sih7v6 -- 22:30:19.919 INFO [25979]: QUERY_STRING = /member/addPageCards -- 22:30:19.919 INFO [25979]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:30:19.951 INFO [25979]: COREGRADE is stopping... -- 22:30:19.951 DEBUG [25979]: Closing database connection -- 22:30:19.951 SQL [25979]: pgsql_close() -- 22:30:24.433 INFO [25979]: COREGRADE is starting... -- 22:30:24.433 INFO [25979]: Version from config: 1.0 -- 22:30:24.433 DEBUG [25979]: Connecting to database... -- 22:30:24.433 DEBUG [25979]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:30:24.433 SQL [25979]: pgsql_db_connect() -- 22:30:24.437 DEBUG [25979]: Database connection successful -- 22:30:24.437 INFO [25979]: _SERVER found -- 22:30:24.437 INFO [25979]: REMOTE_ADDR = 192.168.1.13 -- 22:30:24.437 INFO [25979]: SERVER_NAME = oameye.works.coregrade.com -- 22:30:24.437 INFO [25979]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=lppmmvi6u72615otq762fb0j99sih7v6 -- 22:30:24.437 INFO [25979]: QUERY_STRING = /member/page -- 22:30:24.437 INFO [25979]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:30:24.477 INFO [25979]: COREGRADE is stopping... -- 22:30:24.477 DEBUG [25979]: Closing database connection -- 22:30:24.477 SQL [25979]: pgsql_close() -- 22:30:24.611 INFO [25979]: COREGRADE is starting... -- 22:30:24.611 INFO [25979]: Version from config: 1.0 -- 22:30:24.611 DEBUG [25979]: Connecting to database... -- 22:30:24.611 DEBUG [25979]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:30:24.611 SQL [25979]: pgsql_db_connect() -- 22:30:24.615 DEBUG [25979]: Database connection successful -- 22:30:24.615 INFO [25979]: _SERVER found -- 22:30:24.615 INFO [25979]: REMOTE_ADDR = 192.168.1.13 -- 22:30:24.615 INFO [25979]: SERVER_NAME = oameye.works.coregrade.com -- 22:30:24.615 INFO [25979]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=lppmmvi6u72615otq762fb0j99sih7v6 -- 22:30:24.615 INFO [25979]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:30:24.615 INFO [25979]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:30:24.627 INFO [25979]: COREGRADE is stopping... -- 22:30:24.627 DEBUG [25979]: Closing database connection -- 22:30:24.627 SQL [25979]: pgsql_close() -- 22:30:26.297 INFO [25979]: COREGRADE is starting... -- 22:30:26.297 INFO [25979]: Version from config: 1.0 -- 22:30:26.297 DEBUG [25979]: Connecting to database... -- 22:30:26.297 DEBUG [25979]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:30:26.297 SQL [25979]: pgsql_db_connect() -- 22:30:26.302 DEBUG [25979]: Database connection successful -- 22:30:26.302 INFO [25979]: _SERVER found -- 22:30:26.302 INFO [25979]: REMOTE_ADDR = 192.168.1.13 -- 22:30:26.302 INFO [25979]: SERVER_NAME = oameye.works.coregrade.com -- 22:30:26.302 INFO [25979]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=lppmmvi6u72615otq762fb0j99sih7v6 -- 22:30:26.302 INFO [25979]: QUERY_STRING = /member/page -- 22:30:26.302 INFO [25979]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:30:26.345 INFO [25979]: COREGRADE is stopping... -- 22:30:26.345 DEBUG [25979]: Closing database connection -- 22:30:26.345 SQL [25979]: pgsql_close() -- 22:30:26.424 INFO [25979]: COREGRADE is starting... -- 22:30:26.424 INFO [25979]: Version from config: 1.0 -- 22:30:26.424 DEBUG [25979]: Connecting to database... -- 22:30:26.424 DEBUG [25979]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:30:26.424 SQL [25979]: pgsql_db_connect() -- 22:30:26.428 DEBUG [25979]: Database connection successful -- 22:30:26.428 INFO [25979]: _SERVER found -- 22:30:26.428 INFO [25979]: REMOTE_ADDR = 192.168.1.13 -- 22:30:26.428 INFO [25979]: SERVER_NAME = oameye.works.coregrade.com -- 22:30:26.428 INFO [25979]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=lppmmvi6u72615otq762fb0j99sih7v6 -- 22:30:26.428 INFO [25979]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:30:26.428 INFO [25979]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:30:26.440 INFO [25979]: COREGRADE is stopping... -- 22:30:26.440 DEBUG [25979]: Closing database connection -- 22:30:26.440 SQL [25979]: pgsql_close() -- 22:30:29.166 INFO [25979]: COREGRADE is starting... -- 22:30:29.166 INFO [25979]: Version from config: 1.0 -- 22:30:29.166 DEBUG [25979]: Connecting to database... -- 22:30:29.166 DEBUG [25979]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:30:29.166 SQL [25979]: pgsql_db_connect() -- 22:30:29.170 DEBUG [25979]: Database connection successful -- 22:30:29.170 INFO [25979]: _SERVER found -- 22:30:29.170 INFO [25979]: REMOTE_ADDR = 192.168.1.13 -- 22:30:29.170 INFO [25979]: SERVER_NAME = oameye.works.coregrade.com -- 22:30:29.170 INFO [25979]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=lppmmvi6u72615otq762fb0j99sih7v6 -- 22:30:29.170 INFO [25979]: QUERY_STRING = /member/viewCardAddAction -- 22:30:29.170 INFO [25979]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:30:29.201 INFO [25979]: COREGRADE is stopping... -- 22:30:29.201 DEBUG [25979]: Closing database connection -- 22:30:29.201 SQL [25979]: pgsql_close() -- 22:30:29.222 INFO [25979]: COREGRADE is starting... -- 22:30:29.222 INFO [25979]: Version from config: 1.0 -- 22:30:29.222 DEBUG [25979]: Connecting to database... -- 22:30:29.222 DEBUG [25979]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:30:29.222 SQL [25979]: pgsql_db_connect() -- 22:30:29.226 DEBUG [25979]: Database connection successful -- 22:30:29.226 INFO [25979]: _SERVER found -- 22:30:29.226 INFO [25979]: REMOTE_ADDR = 192.168.1.13 -- 22:30:29.226 INFO [25979]: SERVER_NAME = oameye.works.coregrade.com -- 22:30:29.226 INFO [25979]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=lppmmvi6u72615otq762fb0j99sih7v6 -- 22:30:29.226 INFO [25979]: QUERY_STRING = /member/upload -- 22:30:29.226 INFO [25979]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:30:29.258 INFO [25979]: COREGRADE is stopping... -- 22:30:29.259 DEBUG [25979]: Closing database connection -- 22:30:29.259 SQL [25979]: pgsql_close() -- 22:30:34.889 INFO [26030]: COREGRADE is starting... -- 22:30:34.889 INFO [26030]: Version from config: 1.0 -- 22:30:34.889 DEBUG [26030]: Connecting to database... -- 22:30:34.889 DEBUG [26030]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:30:34.889 SQL [26030]: pgsql_db_connect() -- 22:30:34.893 DEBUG [26030]: Database connection successful -- 22:30:34.893 INFO [26030]: _SERVER found -- 22:30:34.893 INFO [26030]: REMOTE_ADDR = 192.168.1.13 -- 22:30:34.893 INFO [26030]: SERVER_NAME = oameye.works.coregrade.com -- 22:30:34.893 INFO [26030]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=lppmmvi6u72615otq762fb0j99sih7v6 -- 22:30:34.893 INFO [26030]: QUERY_STRING = /member/addPageCards -- 22:30:34.893 INFO [26030]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:30:34.926 INFO [26030]: COREGRADE is stopping... -- 22:30:34.926 DEBUG [26030]: Closing database connection -- 22:30:34.926 SQL [26030]: pgsql_close() -- 22:32:23.352 INFO [25978]: COREGRADE is starting... -- 22:32:23.352 INFO [25978]: Version from config: 1.0 -- 22:32:23.352 DEBUG [25978]: Connecting to database... -- 22:32:23.352 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:32:23.352 SQL [25978]: pgsql_db_connect() -- 22:32:23.356 DEBUG [25978]: Database connection successful -- 22:32:23.356 INFO [25978]: _SERVER found -- 22:32:23.356 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 22:32:23.356 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 22:32:23.356 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=lppmmvi6u72615otq762fb0j99sih7v6 -- 22:32:23.356 INFO [25978]: QUERY_STRING = /member/page -- 22:32:23.356 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:32:23.398 INFO [25978]: COREGRADE is stopping... -- 22:32:23.398 DEBUG [25978]: Closing database connection -- 22:32:23.398 SQL [25978]: pgsql_close() -- 22:32:23.509 INFO [25978]: COREGRADE is starting... -- 22:32:23.509 INFO [25978]: Version from config: 1.0 -- 22:32:23.509 DEBUG [25978]: Connecting to database... -- 22:32:23.509 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:32:23.509 SQL [25978]: pgsql_db_connect() -- 22:32:23.513 DEBUG [25978]: Database connection successful -- 22:32:23.513 INFO [25978]: _SERVER found -- 22:32:23.513 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 22:32:23.513 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 22:32:23.513 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=lppmmvi6u72615otq762fb0j99sih7v6 -- 22:32:23.513 INFO [25978]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:32:23.513 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:32:23.525 INFO [25978]: COREGRADE is stopping... -- 22:32:23.525 DEBUG [25978]: Closing database connection -- 22:32:23.525 SQL [25978]: pgsql_close() -- 22:32:25.631 INFO [25978]: COREGRADE is starting... -- 22:32:25.631 INFO [25978]: Version from config: 1.0 -- 22:32:25.631 DEBUG [25978]: Connecting to database... -- 22:32:25.631 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:32:25.631 SQL [25978]: pgsql_db_connect() -- 22:32:25.636 DEBUG [25978]: Database connection successful -- 22:32:25.636 INFO [25978]: _SERVER found -- 22:32:25.636 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 22:32:25.636 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 22:32:25.636 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=lppmmvi6u72615otq762fb0j99sih7v6 -- 22:32:25.636 INFO [25978]: QUERY_STRING = /member/page -- 22:32:25.636 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:32:25.679 INFO [25978]: COREGRADE is stopping... -- 22:32:25.679 DEBUG [25978]: Closing database connection -- 22:32:25.679 SQL [25978]: pgsql_close() -- 22:32:25.799 INFO [25978]: COREGRADE is starting... -- 22:32:25.799 INFO [25978]: Version from config: 1.0 -- 22:32:25.799 DEBUG [25978]: Connecting to database... -- 22:32:25.799 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:32:25.799 SQL [25978]: pgsql_db_connect() -- 22:32:25.803 DEBUG [25978]: Database connection successful -- 22:32:25.803 INFO [25978]: _SERVER found -- 22:32:25.803 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 22:32:25.803 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 22:32:25.803 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=lppmmvi6u72615otq762fb0j99sih7v6 -- 22:32:25.803 INFO [25978]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:32:25.803 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:32:25.814 INFO [25978]: COREGRADE is stopping... -- 22:32:25.814 DEBUG [25978]: Closing database connection -- 22:32:25.814 SQL [25978]: pgsql_close() -- 22:32:31.822 INFO [25977]: COREGRADE is starting... -- 22:32:31.822 INFO [25977]: Version from config: 1.0 -- 22:32:31.822 DEBUG [25977]: Connecting to database... -- 22:32:31.822 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:32:31.822 SQL [25977]: pgsql_db_connect() -- 22:32:31.826 DEBUG [25977]: Database connection successful -- 22:32:31.826 INFO [25977]: _SERVER found -- 22:32:31.826 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 22:32:31.826 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 22:32:31.826 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=lppmmvi6u72615otq762fb0j99sih7v6 -- 22:32:31.826 INFO [25977]: QUERY_STRING = /member/viewCardAddAction -- 22:32:31.826 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:32:31.859 INFO [25977]: COREGRADE is stopping... -- 22:32:31.859 DEBUG [25977]: Closing database connection -- 22:32:31.859 SQL [25977]: pgsql_close() -- 22:32:31.881 INFO [25977]: COREGRADE is starting... -- 22:32:31.881 INFO [25977]: Version from config: 1.0 -- 22:32:31.881 DEBUG [25977]: Connecting to database... -- 22:32:31.881 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:32:31.881 SQL [25977]: pgsql_db_connect() -- 22:32:31.885 DEBUG [25977]: Database connection successful -- 22:32:31.885 INFO [25977]: _SERVER found -- 22:32:31.885 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 22:32:31.885 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 22:32:31.885 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=lppmmvi6u72615otq762fb0j99sih7v6 -- 22:32:31.885 INFO [25977]: QUERY_STRING = /member/upload -- 22:32:31.885 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:32:31.950 INFO [25977]: COREGRADE is stopping... -- 22:32:31.950 DEBUG [25977]: Closing database connection -- 22:32:31.950 SQL [25977]: pgsql_close() -- 22:32:45.454 INFO [26031]: COREGRADE is starting... -- 22:32:45.454 INFO [26031]: Version from config: 1.0 -- 22:32:45.454 DEBUG [26031]: Connecting to database... -- 22:32:45.454 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:32:45.454 SQL [26031]: pgsql_db_connect() -- 22:32:45.458 DEBUG [26031]: Database connection successful -- 22:32:45.458 INFO [26031]: _SERVER found -- 22:32:45.458 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 22:32:45.458 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 22:32:45.458 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=lppmmvi6u72615otq762fb0j99sih7v6 -- 22:32:45.458 INFO [26031]: QUERY_STRING = /member/addPageCards -- 22:32:45.458 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:32:45.491 INFO [26031]: COREGRADE is stopping... -- 22:32:45.491 DEBUG [26031]: Closing database connection -- 22:32:45.491 SQL [26031]: pgsql_close() -- 22:32:48.051 INFO [26031]: COREGRADE is starting... -- 22:32:48.052 INFO [26031]: Version from config: 1.0 -- 22:32:48.052 DEBUG [26031]: Connecting to database... -- 22:32:48.052 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:32:48.052 SQL [26031]: pgsql_db_connect() -- 22:32:48.056 DEBUG [26031]: Database connection successful -- 22:32:48.056 INFO [26031]: _SERVER found -- 22:32:48.056 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 22:32:48.056 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 22:32:48.056 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=lppmmvi6u72615otq762fb0j99sih7v6 -- 22:32:48.056 INFO [26031]: QUERY_STRING = /member/page -- 22:32:48.056 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:32:48.095 INFO [26031]: COREGRADE is stopping... -- 22:32:48.096 DEBUG [26031]: Closing database connection -- 22:32:48.096 SQL [26031]: pgsql_close() -- 22:32:48.214 INFO [26031]: COREGRADE is starting... -- 22:32:48.214 INFO [26031]: Version from config: 1.0 -- 22:32:48.214 DEBUG [26031]: Connecting to database... -- 22:32:48.214 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:32:48.214 SQL [26031]: pgsql_db_connect() -- 22:32:48.218 DEBUG [26031]: Database connection successful -- 22:32:48.218 INFO [26031]: _SERVER found -- 22:32:48.218 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 22:32:48.218 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 22:32:48.218 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=lppmmvi6u72615otq762fb0j99sih7v6 -- 22:32:48.218 INFO [26031]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:32:48.218 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:32:48.229 INFO [26031]: COREGRADE is stopping... -- 22:32:48.229 DEBUG [26031]: Closing database connection -- 22:32:48.229 SQL [26031]: pgsql_close() -- 22:34:42.493 INFO [26043]: COREGRADE is starting... -- 22:34:42.493 INFO [26043]: Version from config: 1.0 -- 22:34:42.493 DEBUG [26043]: Connecting to database... -- 22:34:42.493 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:34:42.493 SQL [26043]: pgsql_db_connect() -- 22:34:42.497 DEBUG [26043]: Database connection successful -- 22:34:42.497 INFO [26043]: _SERVER found -- 22:34:42.497 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 22:34:42.497 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 22:34:42.497 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=lppmmvi6u72615otq762fb0j99sih7v6 -- 22:34:42.497 INFO [26043]: QUERY_STRING = /member/page -- 22:34:42.497 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:34:42.542 INFO [26043]: COREGRADE is stopping... -- 22:34:42.542 DEBUG [26043]: Closing database connection -- 22:34:42.542 SQL [26043]: pgsql_close() -- 22:34:42.675 INFO [26043]: COREGRADE is starting... -- 22:34:42.675 INFO [26043]: Version from config: 1.0 -- 22:34:42.675 DEBUG [26043]: Connecting to database... -- 22:34:42.675 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:34:42.675 SQL [26043]: pgsql_db_connect() -- 22:34:42.679 DEBUG [26043]: Database connection successful -- 22:34:42.679 INFO [26043]: _SERVER found -- 22:34:42.679 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 22:34:42.679 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 22:34:42.679 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8df9g821cap5qlre2cogmma3eg56eata -- 22:34:42.679 INFO [26043]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:34:42.679 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:34:42.690 INFO [26043]: COREGRADE is stopping... -- 22:34:42.690 DEBUG [26043]: Closing database connection -- 22:34:42.690 SQL [26043]: pgsql_close() -- 22:34:45.088 INFO [26043]: COREGRADE is starting... -- 22:34:45.088 INFO [26043]: Version from config: 1.0 -- 22:34:45.088 DEBUG [26043]: Connecting to database... -- 22:34:45.088 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:34:45.088 SQL [26043]: pgsql_db_connect() -- 22:34:45.092 DEBUG [26043]: Database connection successful -- 22:34:45.092 INFO [26043]: _SERVER found -- 22:34:45.092 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 22:34:45.092 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 22:34:45.092 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8df9g821cap5qlre2cogmma3eg56eata -- 22:34:45.092 INFO [26043]: QUERY_STRING = /member/viewCardAddAction -- 22:34:45.092 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:34:45.123 INFO [26043]: COREGRADE is stopping... -- 22:34:45.123 DEBUG [26043]: Closing database connection -- 22:34:45.123 SQL [26043]: pgsql_close() -- 22:34:45.138 INFO [26043]: COREGRADE is starting... -- 22:34:45.138 INFO [26043]: Version from config: 1.0 -- 22:34:45.138 DEBUG [26043]: Connecting to database... -- 22:34:45.139 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:34:45.139 SQL [26043]: pgsql_db_connect() -- 22:34:45.142 DEBUG [26043]: Database connection successful -- 22:34:45.142 INFO [26043]: _SERVER found -- 22:34:45.142 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 22:34:45.142 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 22:34:45.142 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8df9g821cap5qlre2cogmma3eg56eata -- 22:34:45.142 INFO [26043]: QUERY_STRING = /member/upload -- 22:34:45.142 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:34:45.181 INFO [26043]: COREGRADE is stopping... -- 22:34:45.181 DEBUG [26043]: Closing database connection -- 22:34:45.181 SQL [26043]: pgsql_close() -- 22:34:50.241 INFO [25976]: COREGRADE is starting... -- 22:34:50.241 INFO [25976]: Version from config: 1.0 -- 22:34:50.241 DEBUG [25976]: Connecting to database... -- 22:34:50.241 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:34:50.241 SQL [25976]: pgsql_db_connect() -- 22:34:50.245 DEBUG [25976]: Database connection successful -- 22:34:50.245 INFO [25976]: _SERVER found -- 22:34:50.245 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 22:34:50.245 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 22:34:50.245 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8df9g821cap5qlre2cogmma3eg56eata -- 22:34:50.245 INFO [25976]: QUERY_STRING = /member/addPageCards -- 22:34:50.245 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:34:50.278 INFO [25976]: COREGRADE is stopping... -- 22:34:50.278 DEBUG [25976]: Closing database connection -- 22:34:50.278 SQL [25976]: pgsql_close() -- 22:36:16.624 INFO [25980]: COREGRADE is starting... -- 22:36:16.624 INFO [25980]: Version from config: 1.0 -- 22:36:16.624 DEBUG [25980]: Connecting to database... -- 22:36:16.624 DEBUG [25980]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:36:16.624 SQL [25980]: pgsql_db_connect() -- 22:36:16.628 DEBUG [25980]: Database connection successful -- 22:36:16.628 INFO [25980]: _SERVER found -- 22:36:16.628 INFO [25980]: REMOTE_ADDR = 192.168.1.13 -- 22:36:16.628 INFO [25980]: SERVER_NAME = oameye.works.coregrade.com -- 22:36:16.628 INFO [25980]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8df9g821cap5qlre2cogmma3eg56eata -- 22:36:16.628 INFO [25980]: QUERY_STRING = /member/page -- 22:36:16.628 INFO [25980]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:36:16.673 INFO [25980]: COREGRADE is stopping... -- 22:36:16.673 DEBUG [25980]: Closing database connection -- 22:36:16.673 SQL [25980]: pgsql_close() -- 22:36:16.769 INFO [25980]: COREGRADE is starting... -- 22:36:16.769 INFO [25980]: Version from config: 1.0 -- 22:36:16.769 DEBUG [25980]: Connecting to database... -- 22:36:16.769 DEBUG [25980]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:36:16.769 SQL [25980]: pgsql_db_connect() -- 22:36:16.773 DEBUG [25980]: Database connection successful -- 22:36:16.773 INFO [25980]: _SERVER found -- 22:36:16.773 INFO [25980]: REMOTE_ADDR = 192.168.1.13 -- 22:36:16.773 INFO [25980]: SERVER_NAME = oameye.works.coregrade.com -- 22:36:16.773 INFO [25980]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8df9g821cap5qlre2cogmma3eg56eata -- 22:36:16.773 INFO [25980]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:36:16.773 INFO [25980]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:36:16.784 INFO [25980]: COREGRADE is stopping... -- 22:36:16.784 DEBUG [25980]: Closing database connection -- 22:36:16.784 SQL [25980]: pgsql_close() -- 22:36:19.125 INFO [25980]: COREGRADE is starting... -- 22:36:19.125 INFO [25980]: Version from config: 1.0 -- 22:36:19.125 DEBUG [25980]: Connecting to database... -- 22:36:19.125 DEBUG [25980]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:36:19.125 SQL [25980]: pgsql_db_connect() -- 22:36:19.129 DEBUG [25980]: Database connection successful -- 22:36:19.129 INFO [25980]: _SERVER found -- 22:36:19.129 INFO [25980]: REMOTE_ADDR = 192.168.1.13 -- 22:36:19.129 INFO [25980]: SERVER_NAME = oameye.works.coregrade.com -- 22:36:19.129 INFO [25980]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8df9g821cap5qlre2cogmma3eg56eata -- 22:36:19.129 INFO [25980]: QUERY_STRING = /member/viewCardAddAction -- 22:36:19.129 INFO [25980]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:36:19.160 INFO [25980]: COREGRADE is stopping... -- 22:36:19.160 DEBUG [25980]: Closing database connection -- 22:36:19.161 SQL [25980]: pgsql_close() -- 22:36:19.174 INFO [25980]: COREGRADE is starting... -- 22:36:19.174 INFO [25980]: Version from config: 1.0 -- 22:36:19.174 DEBUG [25980]: Connecting to database... -- 22:36:19.174 DEBUG [25980]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:36:19.174 SQL [25980]: pgsql_db_connect() -- 22:36:19.178 DEBUG [25980]: Database connection successful -- 22:36:19.178 INFO [25980]: _SERVER found -- 22:36:19.178 INFO [25980]: REMOTE_ADDR = 192.168.1.13 -- 22:36:19.178 INFO [25980]: SERVER_NAME = oameye.works.coregrade.com -- 22:36:19.178 INFO [25980]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8df9g821cap5qlre2cogmma3eg56eata -- 22:36:19.178 INFO [25980]: QUERY_STRING = /member/upload -- 22:36:19.178 INFO [25980]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:36:19.211 INFO [25980]: COREGRADE is stopping... -- 22:36:19.211 DEBUG [25980]: Closing database connection -- 22:36:19.211 SQL [25980]: pgsql_close() -- 22:36:23.947 INFO [25980]: COREGRADE is starting... -- 22:36:23.948 INFO [25980]: Version from config: 1.0 -- 22:36:23.948 DEBUG [25980]: Connecting to database... -- 22:36:23.948 DEBUG [25980]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:36:23.948 SQL [25980]: pgsql_db_connect() -- 22:36:23.952 DEBUG [25980]: Database connection successful -- 22:36:23.952 INFO [25980]: _SERVER found -- 22:36:23.952 INFO [25980]: REMOTE_ADDR = 192.168.1.13 -- 22:36:23.952 INFO [25980]: SERVER_NAME = oameye.works.coregrade.com -- 22:36:23.952 INFO [25980]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8df9g821cap5qlre2cogmma3eg56eata -- 22:36:23.952 INFO [25980]: QUERY_STRING = /member/addPageCards -- 22:36:23.952 INFO [25980]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:36:23.983 INFO [25980]: COREGRADE is stopping... -- 22:36:23.983 DEBUG [25980]: Closing database connection -- 22:36:23.983 SQL [25980]: pgsql_close() -- 22:36:55.862 INFO [25983]: COREGRADE is starting... -- 22:36:55.862 INFO [25983]: Version from config: 1.0 -- 22:36:55.862 DEBUG [25983]: Connecting to database... -- 22:36:55.863 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:36:55.863 SQL [25983]: pgsql_db_connect() -- 22:36:55.871 INFO [26029]: COREGRADE is starting... -- 22:36:55.871 INFO [26029]: Version from config: 1.0 -- 22:36:55.871 DEBUG [26029]: Connecting to database... -- 22:36:55.871 DEBUG [26029]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:36:55.871 SQL [26029]: pgsql_db_connect() -- 22:36:55.867 DEBUG [25983]: Database connection successful -- 22:36:55.867 INFO [25983]: _SERVER found -- 22:36:55.867 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 22:36:55.867 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 22:36:55.867 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8df9g821cap5qlre2cogmma3eg56eata -- 22:36:55.867 INFO [25983]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 22:36:55.867 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:36:55.881 INFO [25983]: COREGRADE is stopping... -- 22:36:55.881 DEBUG [25983]: Closing database connection -- 22:36:55.881 SQL [25983]: pgsql_close() -- 22:36:55.875 DEBUG [26029]: Database connection successful -- 22:36:55.875 INFO [26029]: _SERVER found -- 22:36:55.875 INFO [26029]: REMOTE_ADDR = 192.168.1.13 -- 22:36:55.875 INFO [26029]: SERVER_NAME = oameye.works.coregrade.com -- 22:36:55.875 INFO [26029]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8df9g821cap5qlre2cogmma3eg56eata -- 22:36:55.875 INFO [26029]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 22:36:55.875 INFO [26029]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:36:55.887 INFO [26029]: COREGRADE is stopping... -- 22:36:55.887 DEBUG [26029]: Closing database connection -- 22:36:55.887 SQL [26029]: pgsql_close() -- 22:37:09.470 INFO [25979]: COREGRADE is starting... -- 22:37:09.471 INFO [25979]: Version from config: 1.0 -- 22:37:09.471 DEBUG [25979]: Connecting to database... -- 22:37:09.471 DEBUG [25979]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:37:09.471 SQL [25979]: pgsql_db_connect() -- 22:37:09.475 DEBUG [25979]: Database connection successful -- 22:37:09.475 INFO [25979]: _SERVER found -- 22:37:09.475 INFO [25979]: REMOTE_ADDR = 192.168.1.13 -- 22:37:09.475 INFO [25979]: SERVER_NAME = oameye.works.coregrade.com -- 22:37:09.475 INFO [25979]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8df9g821cap5qlre2cogmma3eg56eata -- 22:37:09.475 INFO [25979]: QUERY_STRING = /member/viewCardAddAction -- 22:37:09.475 INFO [25979]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:37:09.507 INFO [25979]: COREGRADE is stopping... -- 22:37:09.507 DEBUG [25979]: Closing database connection -- 22:37:09.507 SQL [25979]: pgsql_close() -- 22:37:21.718 INFO [26030]: COREGRADE is starting... -- 22:37:21.718 INFO [26030]: Version from config: 1.0 -- 22:37:21.718 DEBUG [26030]: Connecting to database... -- 22:37:21.718 DEBUG [26030]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:37:21.718 SQL [26030]: pgsql_db_connect() -- 22:37:21.722 DEBUG [26030]: Database connection successful -- 22:37:21.722 INFO [26030]: _SERVER found -- 22:37:21.722 INFO [26030]: REMOTE_ADDR = 192.168.1.13 -- 22:37:21.722 INFO [26030]: SERVER_NAME = oameye.works.coregrade.com -- 22:37:21.722 INFO [26030]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8df9g821cap5qlre2cogmma3eg56eata -- 22:37:21.722 INFO [26030]: QUERY_STRING = /member/addPageCards -- 22:37:21.722 INFO [26030]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:37:21.755 INFO [26030]: COREGRADE is stopping... -- 22:37:21.755 DEBUG [26030]: Closing database connection -- 22:37:21.755 SQL [26030]: pgsql_close() -- 22:37:58.423 INFO [25978]: COREGRADE is starting... -- 22:37:58.423 INFO [25978]: Version from config: 1.0 -- 22:37:58.423 DEBUG [25978]: Connecting to database... -- 22:37:58.424 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:37:58.424 SQL [25978]: pgsql_db_connect() -- 22:37:58.428 DEBUG [25978]: Database connection successful -- 22:37:58.428 INFO [25978]: _SERVER found -- 22:37:58.428 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 22:37:58.428 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 22:37:58.428 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8df9g821cap5qlre2cogmma3eg56eata -- 22:37:58.428 INFO [25978]: QUERY_STRING = /member/page -- 22:37:58.428 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:37:58.472 INFO [25978]: COREGRADE is stopping... -- 22:37:58.472 DEBUG [25978]: Closing database connection -- 22:37:58.472 SQL [25978]: pgsql_close() -- 22:37:58.617 INFO [25978]: COREGRADE is starting... -- 22:37:58.617 INFO [25978]: Version from config: 1.0 -- 22:37:58.617 DEBUG [25978]: Connecting to database... -- 22:37:58.617 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:37:58.617 SQL [25978]: pgsql_db_connect() -- 22:37:58.622 DEBUG [25978]: Database connection successful -- 22:37:58.622 INFO [25978]: _SERVER found -- 22:37:58.622 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 22:37:58.622 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 22:37:58.622 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8df9g821cap5qlre2cogmma3eg56eata -- 22:37:58.622 INFO [25978]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:37:58.622 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:37:58.633 INFO [25978]: COREGRADE is stopping... -- 22:37:58.633 DEBUG [25978]: Closing database connection -- 22:37:58.633 SQL [25978]: pgsql_close() -- 22:37:58.810 INFO [25978]: COREGRADE is starting... -- 22:37:58.810 INFO [25978]: Version from config: 1.0 -- 22:37:58.810 DEBUG [25978]: Connecting to database... -- 22:37:58.810 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:37:58.810 SQL [25978]: pgsql_db_connect() -- 22:37:58.816 INFO [25977]: COREGRADE is starting... -- 22:37:58.816 INFO [25977]: Version from config: 1.0 -- 22:37:58.816 DEBUG [25977]: Connecting to database... -- 22:37:58.816 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:37:58.816 SQL [25977]: pgsql_db_connect() -- 22:37:58.814 DEBUG [25978]: Database connection successful -- 22:37:58.814 INFO [25978]: _SERVER found -- 22:37:58.814 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 22:37:58.814 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 22:37:58.814 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8df9g821cap5qlre2cogmma3eg56eata -- 22:37:58.814 INFO [25978]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 22:37:58.814 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:37:58.825 INFO [25978]: COREGRADE is stopping... -- 22:37:58.825 DEBUG [25978]: Closing database connection -- 22:37:58.825 SQL [25978]: pgsql_close() -- 22:37:58.820 DEBUG [25977]: Database connection successful -- 22:37:58.820 INFO [25977]: _SERVER found -- 22:37:58.820 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 22:37:58.820 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 22:37:58.820 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8df9g821cap5qlre2cogmma3eg56eata -- 22:37:58.820 INFO [25977]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 22:37:58.820 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:37:58.832 INFO [25977]: COREGRADE is stopping... -- 22:37:58.832 DEBUG [25977]: Closing database connection -- 22:37:58.832 SQL [25977]: pgsql_close() -- 22:38:03.725 INFO [25977]: COREGRADE is starting... -- 22:38:03.725 INFO [25977]: Version from config: 1.0 -- 22:38:03.725 DEBUG [25977]: Connecting to database... -- 22:38:03.725 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:38:03.725 SQL [25977]: pgsql_db_connect() -- 22:38:03.729 DEBUG [25977]: Database connection successful -- 22:38:03.729 INFO [25977]: _SERVER found -- 22:38:03.729 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 22:38:03.729 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 22:38:03.729 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8df9g821cap5qlre2cogmma3eg56eata -- 22:38:03.729 INFO [25977]: QUERY_STRING = /member/viewCardAddAction -- 22:38:03.729 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:38:03.760 INFO [25977]: COREGRADE is stopping... -- 22:38:03.760 DEBUG [25977]: Closing database connection -- 22:38:03.760 SQL [25977]: pgsql_close() -- 22:38:03.784 INFO [25977]: COREGRADE is starting... -- 22:38:03.784 INFO [25977]: Version from config: 1.0 -- 22:38:03.784 DEBUG [25977]: Connecting to database... -- 22:38:03.784 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:38:03.784 SQL [25977]: pgsql_db_connect() -- 22:38:03.788 DEBUG [25977]: Database connection successful -- 22:38:03.788 INFO [25977]: _SERVER found -- 22:38:03.788 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 22:38:03.788 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 22:38:03.788 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8df9g821cap5qlre2cogmma3eg56eata -- 22:38:03.788 INFO [25977]: QUERY_STRING = /member/upload -- 22:38:03.788 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:38:03.820 INFO [25977]: COREGRADE is stopping... -- 22:38:03.820 DEBUG [25977]: Closing database connection -- 22:38:03.820 SQL [25977]: pgsql_close() -- 22:38:08.858 INFO [26031]: COREGRADE is starting... -- 22:38:08.858 INFO [26031]: Version from config: 1.0 -- 22:38:08.858 DEBUG [26031]: Connecting to database... -- 22:38:08.858 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:38:08.858 SQL [26031]: pgsql_db_connect() -- 22:38:08.862 DEBUG [26031]: Database connection successful -- 22:38:08.862 INFO [26031]: _SERVER found -- 22:38:08.862 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 22:38:08.862 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 22:38:08.862 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8df9g821cap5qlre2cogmma3eg56eata -- 22:38:08.862 INFO [26031]: QUERY_STRING = /member/addPageCards -- 22:38:08.862 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:38:08.894 INFO [26031]: COREGRADE is stopping... -- 22:38:08.894 DEBUG [26031]: Closing database connection -- 22:38:08.894 SQL [26031]: pgsql_close() -- 22:38:08.933 INFO [26031]: COREGRADE is starting... -- 22:38:08.933 INFO [26031]: Version from config: 1.0 -- 22:38:08.933 DEBUG [26031]: Connecting to database... -- 22:38:08.933 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:38:08.933 SQL [26031]: pgsql_db_connect() -- 22:38:08.937 DEBUG [26031]: Database connection successful -- 22:38:08.937 INFO [26031]: _SERVER found -- 22:38:08.937 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 22:38:08.937 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 22:38:08.937 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8df9g821cap5qlre2cogmma3eg56eata -- 22:38:08.937 INFO [26031]: QUERY_STRING = /member/upload -- 22:38:08.937 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:38:08.969 INFO [26031]: COREGRADE is stopping... -- 22:38:08.969 DEBUG [26031]: Closing database connection -- 22:38:08.969 SQL [26031]: pgsql_close() -- 22:40:41.202 INFO [26043]: COREGRADE is starting... -- 22:40:41.202 INFO [26043]: Version from config: 1.0 -- 22:40:41.202 DEBUG [26043]: Connecting to database... -- 22:40:41.202 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:40:41.202 SQL [26043]: pgsql_db_connect() -- 22:40:41.206 DEBUG [26043]: Database connection successful -- 22:40:41.206 INFO [26043]: _SERVER found -- 22:40:41.206 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 22:40:41.206 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 22:40:41.206 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=8df9g821cap5qlre2cogmma3eg56eata -- 22:40:41.206 INFO [26043]: QUERY_STRING = /member -- 22:40:41.206 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:40:41.249 INFO [26043]: COREGRADE is stopping... -- 22:40:41.249 DEBUG [26043]: Closing database connection -- 22:40:41.249 SQL [26043]: pgsql_close() -- 22:40:41.401 INFO [26043]: COREGRADE is starting... -- 22:40:41.401 INFO [26043]: Version from config: 1.0 -- 22:40:41.401 DEBUG [26043]: Connecting to database... -- 22:40:41.401 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:40:41.401 SQL [26043]: pgsql_db_connect() -- 22:40:41.405 DEBUG [26043]: Database connection successful -- 22:40:41.405 INFO [26043]: _SERVER found -- 22:40:41.405 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 22:40:41.405 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 22:40:41.405 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=jl0s3ct2297j71abo9nd5slb57qkn27u -- 22:40:41.405 INFO [26043]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:40:41.405 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:40:41.417 INFO [26043]: COREGRADE is stopping... -- 22:40:41.417 DEBUG [26043]: Closing database connection -- 22:40:41.417 SQL [26043]: pgsql_close() -- 22:40:41.526 INFO [26043]: COREGRADE is starting... -- 22:40:41.526 INFO [26043]: Version from config: 1.0 -- 22:40:41.526 DEBUG [26043]: Connecting to database... -- 22:40:41.526 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:40:41.526 SQL [26043]: pgsql_db_connect() -- 22:40:41.534 INFO [25976]: COREGRADE is starting... -- 22:40:41.534 INFO [25976]: Version from config: 1.0 -- 22:40:41.534 DEBUG [25976]: Connecting to database... -- 22:40:41.534 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:40:41.534 SQL [25976]: pgsql_db_connect() -- 22:40:41.530 DEBUG [26043]: Database connection successful -- 22:40:41.530 INFO [26043]: _SERVER found -- 22:40:41.530 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 22:40:41.530 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 22:40:41.530 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=jl0s3ct2297j71abo9nd5slb57qkn27u -- 22:40:41.530 INFO [26043]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 22:40:41.530 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:40:41.541 INFO [26043]: COREGRADE is stopping... -- 22:40:41.541 DEBUG [26043]: Closing database connection -- 22:40:41.541 SQL [26043]: pgsql_close() -- 22:40:41.538 DEBUG [25976]: Database connection successful -- 22:40:41.538 INFO [25976]: _SERVER found -- 22:40:41.538 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 22:40:41.538 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 22:40:41.538 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=jl0s3ct2297j71abo9nd5slb57qkn27u -- 22:40:41.538 INFO [25976]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 22:40:41.538 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:40:41.550 INFO [25976]: COREGRADE is stopping... -- 22:40:41.550 DEBUG [25976]: Closing database connection -- 22:40:41.550 SQL [25976]: pgsql_close() -- 22:40:42.414 INFO [25976]: COREGRADE is starting... -- 22:40:42.414 INFO [25976]: Version from config: 1.0 -- 22:40:42.414 DEBUG [25976]: Connecting to database... -- 22:40:42.415 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:40:42.415 SQL [25976]: pgsql_db_connect() -- 22:40:42.419 DEBUG [25976]: Database connection successful -- 22:40:42.419 INFO [25976]: _SERVER found -- 22:40:42.419 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 22:40:42.419 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 22:40:42.419 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=jl0s3ct2297j71abo9nd5slb57qkn27u -- 22:40:42.419 INFO [25976]: QUERY_STRING = /member/page -- 22:40:42.419 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:40:42.462 INFO [25976]: COREGRADE is stopping... -- 22:40:42.462 DEBUG [25976]: Closing database connection -- 22:40:42.462 SQL [25976]: pgsql_close() -- 22:40:42.667 INFO [25976]: COREGRADE is starting... -- 22:40:42.667 INFO [25976]: Version from config: 1.0 -- 22:40:42.667 DEBUG [25976]: Connecting to database... -- 22:40:42.667 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:40:42.667 SQL [25976]: pgsql_db_connect() -- 22:40:42.671 DEBUG [25976]: Database connection successful -- 22:40:42.671 INFO [25976]: _SERVER found -- 22:40:42.671 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 22:40:42.671 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 22:40:42.671 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=jl0s3ct2297j71abo9nd5slb57qkn27u -- 22:40:42.671 INFO [25976]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:40:42.671 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:40:42.682 INFO [25976]: COREGRADE is stopping... -- 22:40:42.682 DEBUG [25976]: Closing database connection -- 22:40:42.682 SQL [25976]: pgsql_close() -- 22:40:42.811 INFO [25976]: COREGRADE is starting... -- 22:40:42.811 INFO [25976]: Version from config: 1.0 -- 22:40:42.811 DEBUG [25976]: Connecting to database... -- 22:40:42.811 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:40:42.811 SQL [25976]: pgsql_db_connect() -- 22:40:42.817 INFO [26043]: COREGRADE is starting... -- 22:40:42.818 INFO [26043]: Version from config: 1.0 -- 22:40:42.818 DEBUG [26043]: Connecting to database... -- 22:40:42.818 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:40:42.818 SQL [26043]: pgsql_db_connect() -- 22:40:42.821 DEBUG [26043]: Database connection successful -- 22:40:42.821 INFO [26043]: _SERVER found -- 22:40:42.821 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 22:40:42.821 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 22:40:42.821 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=jl0s3ct2297j71abo9nd5slb57qkn27u -- 22:40:42.821 INFO [26043]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 22:40:42.821 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:40:42.832 INFO [26043]: COREGRADE is stopping... -- 22:40:42.832 DEBUG [26043]: Closing database connection -- 22:40:42.832 SQL [26043]: pgsql_close() -- 22:40:42.847 INFO [25980]: COREGRADE is starting... -- 22:40:42.847 INFO [25980]: Version from config: 1.0 -- 22:40:42.847 DEBUG [25980]: Connecting to database... -- 22:40:42.847 DEBUG [25980]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:40:42.847 SQL [25980]: pgsql_db_connect() -- 22:40:42.851 DEBUG [25980]: Database connection successful -- 22:40:42.851 INFO [25980]: _SERVER found -- 22:40:42.851 INFO [25980]: REMOTE_ADDR = 192.168.1.13 -- 22:40:42.851 INFO [25980]: SERVER_NAME = oameye.works.coregrade.com -- 22:40:42.851 INFO [25980]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=jl0s3ct2297j71abo9nd5slb57qkn27u -- 22:40:42.851 INFO [25980]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 22:40:42.851 INFO [25980]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:40:42.863 INFO [25980]: COREGRADE is stopping... -- 22:40:42.863 DEBUG [25980]: Closing database connection -- 22:40:42.863 SQL [25980]: pgsql_close() -- 22:40:42.815 DEBUG [25976]: Database connection successful -- 22:40:42.815 INFO [25976]: _SERVER found -- 22:40:42.815 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 22:40:42.815 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 22:40:42.815 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=jl0s3ct2297j71abo9nd5slb57qkn27u -- 22:40:42.815 INFO [25976]: QUERY_STRING = /member/upload -- 22:40:42.815 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:40:42.895 INFO [25976]: COREGRADE is stopping... -- 22:40:42.895 DEBUG [25976]: Closing database connection -- 22:40:42.895 SQL [25976]: pgsql_close() -- 22:40:45.185 INFO [25976]: COREGRADE is starting... -- 22:40:45.185 INFO [25976]: Version from config: 1.0 -- 22:40:45.185 DEBUG [25976]: Connecting to database... -- 22:40:45.185 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:40:45.185 SQL [25976]: pgsql_db_connect() -- 22:40:45.189 DEBUG [25976]: Database connection successful -- 22:40:45.189 INFO [25976]: _SERVER found -- 22:40:45.189 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 22:40:45.189 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 22:40:45.189 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=jl0s3ct2297j71abo9nd5slb57qkn27u -- 22:40:45.189 INFO [25976]: QUERY_STRING = /member/viewCardAddAction -- 22:40:45.189 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:40:45.221 INFO [25976]: COREGRADE is stopping... -- 22:40:45.221 DEBUG [25976]: Closing database connection -- 22:40:45.221 SQL [25976]: pgsql_close() -- 22:40:52.292 INFO [25983]: COREGRADE is starting... -- 22:40:52.293 INFO [25983]: Version from config: 1.0 -- 22:40:52.293 DEBUG [25983]: Connecting to database... -- 22:40:52.293 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:40:52.293 SQL [25983]: pgsql_db_connect() -- 22:40:52.297 DEBUG [25983]: Database connection successful -- 22:40:52.297 INFO [25983]: _SERVER found -- 22:40:52.297 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 22:40:52.297 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 22:40:52.297 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=jl0s3ct2297j71abo9nd5slb57qkn27u -- 22:40:52.297 INFO [25983]: QUERY_STRING = /member/addPageCards -- 22:40:52.297 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:40:52.332 INFO [25983]: COREGRADE is stopping... -- 22:40:52.332 DEBUG [25983]: Closing database connection -- 22:40:52.332 SQL [25983]: pgsql_close() -- 22:59:22.651 INFO [26029]: COREGRADE is starting... -- 22:59:22.652 INFO [26029]: Version from config: 1.0 -- 22:59:22.652 DEBUG [26029]: Connecting to database... -- 22:59:22.652 DEBUG [26029]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:59:22.652 SQL [26029]: pgsql_db_connect() -- 22:59:22.657 DEBUG [26029]: Database connection successful -- 22:59:22.657 INFO [26029]: _SERVER found -- 22:59:22.657 INFO [26029]: REMOTE_ADDR = 192.168.1.13 -- 22:59:22.657 INFO [26029]: SERVER_NAME = oameye.works.coregrade.com -- 22:59:22.657 INFO [26029]: QUERY_STRING = /.well-known/acme-challenge/eS8CFNapohvH0z-p5z0Sg0sAZS4M3DtQpXYR8xUJO-4 -- 22:59:22.657 INFO [26029]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 22:59:22.671 INFO [26029]: COREGRADE is stopping... -- 22:59:22.671 DEBUG [26029]: Closing database connection -- 22:59:22.671 SQL [26029]: pgsql_close() -- 22:59:23.066 INFO [26030]: COREGRADE is starting... -- 22:59:23.066 INFO [26030]: Version from config: 1.0 -- 22:59:23.066 DEBUG [26030]: Connecting to database... -- 22:59:23.066 DEBUG [26030]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:59:23.066 SQL [26030]: pgsql_db_connect() -- 22:59:23.071 DEBUG [26030]: Database connection successful -- 22:59:23.071 INFO [26030]: _SERVER found -- 22:59:23.071 INFO [26030]: REMOTE_ADDR = 192.168.1.13 -- 22:59:23.071 INFO [26030]: SERVER_NAME = oameye.works.coregrade.com -- 22:59:23.071 INFO [26030]: QUERY_STRING = /.well-known/acme-challenge/eS8CFNapohvH0z-p5z0Sg0sAZS4M3DtQpXYR8xUJO-4 -- 22:59:23.071 INFO [26030]: HTTP_X_FORWARDED_FOR = 18.194.58.132 -- 22:59:23.084 INFO [26030]: COREGRADE is stopping... -- 22:59:23.084 DEBUG [26030]: Closing database connection -- 22:59:23.084 SQL [26030]: pgsql_close() -- 22:59:23.109 INFO [26030]: COREGRADE is starting... -- 22:59:23.110 INFO [26030]: Version from config: 1.0 -- 22:59:23.110 DEBUG [26030]: Connecting to database... -- 22:59:23.110 DEBUG [26030]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:59:23.110 SQL [26030]: pgsql_db_connect() -- 22:59:23.114 DEBUG [26030]: Database connection successful -- 22:59:23.114 INFO [26030]: _SERVER found -- 22:59:23.114 INFO [26030]: REMOTE_ADDR = 192.168.1.13 -- 22:59:23.114 INFO [26030]: SERVER_NAME = oameye.works.coregrade.com -- 22:59:23.114 INFO [26030]: QUERY_STRING = /.well-known/acme-challenge/eS8CFNapohvH0z-p5z0Sg0sAZS4M3DtQpXYR8xUJO-4 -- 22:59:23.114 INFO [26030]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 22:59:23.125 INFO [26030]: COREGRADE is stopping... -- 22:59:23.125 DEBUG [26030]: Closing database connection -- 22:59:23.125 SQL [26030]: pgsql_close() -- 22:59:23.208 INFO [26030]: COREGRADE is starting... -- 22:59:23.208 INFO [26030]: Version from config: 1.0 -- 22:59:23.208 DEBUG [26030]: Connecting to database... -- 22:59:23.208 DEBUG [26030]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:59:23.208 SQL [26030]: pgsql_db_connect() -- 22:59:23.212 DEBUG [26030]: Database connection successful -- 22:59:23.212 INFO [26030]: _SERVER found -- 22:59:23.212 INFO [26030]: REMOTE_ADDR = 192.168.1.13 -- 22:59:23.212 INFO [26030]: SERVER_NAME = oameye.works.coregrade.com -- 22:59:23.212 INFO [26030]: QUERY_STRING = /.well-known/acme-challenge/eS8CFNapohvH0z-p5z0Sg0sAZS4M3DtQpXYR8xUJO-4 -- 22:59:23.212 INFO [26030]: HTTP_X_FORWARDED_FOR = 34.209.232.166 -- 22:59:23.224 INFO [26030]: COREGRADE is stopping... -- 22:59:23.224 DEBUG [26030]: Closing database connection -- 22:59:23.224 SQL [26030]: pgsql_close() -- 23:00:19.401 INFO [26031]: COREGRADE is starting... -- 23:00:19.401 INFO [26031]: Version from config: 1.0 -- 23:00:19.401 DEBUG [26031]: Connecting to database... -- 23:00:19.401 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:00:19.401 SQL [26031]: pgsql_db_connect() -- 23:00:19.406 DEBUG [26031]: Database connection successful -- 23:00:19.406 INFO [26031]: _SERVER found -- 23:00:19.406 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 23:00:19.406 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 23:00:19.406 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=jl0s3ct2297j71abo9nd5slb57qkn27u -- 23:00:19.406 INFO [26031]: QUERY_STRING = /member -- 23:00:19.406 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:00:19.450 INFO [26031]: COREGRADE is stopping... -- 23:00:19.450 DEBUG [26031]: Closing database connection -- 23:00:19.450 SQL [26031]: pgsql_close() -- 23:00:19.576 INFO [26031]: COREGRADE is starting... -- 23:00:19.576 INFO [26031]: Version from config: 1.0 -- 23:00:19.576 DEBUG [26031]: Connecting to database... -- 23:00:19.576 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:00:19.576 SQL [26031]: pgsql_db_connect() -- 23:00:19.581 DEBUG [26031]: Database connection successful -- 23:00:19.581 INFO [26031]: _SERVER found -- 23:00:19.581 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 23:00:19.581 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 23:00:19.581 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:00:19.581 INFO [26031]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:00:19.581 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:00:19.592 INFO [26031]: COREGRADE is stopping... -- 23:00:19.592 DEBUG [26031]: Closing database connection -- 23:00:19.592 SQL [26031]: pgsql_close() -- 23:00:19.805 INFO [26031]: COREGRADE is starting... -- 23:00:19.805 INFO [26031]: Version from config: 1.0 -- 23:00:19.805 DEBUG [26031]: Connecting to database... -- 23:00:19.805 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:00:19.805 SQL [26031]: pgsql_db_connect() -- 23:00:19.813 INFO [26043]: COREGRADE is starting... -- 23:00:19.814 INFO [26043]: Version from config: 1.0 -- 23:00:19.814 DEBUG [26043]: Connecting to database... -- 23:00:19.814 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:00:19.814 SQL [26043]: pgsql_db_connect() -- 23:00:19.810 DEBUG [26031]: Database connection successful -- 23:00:19.810 INFO [26031]: _SERVER found -- 23:00:19.810 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 23:00:19.810 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 23:00:19.810 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:00:19.810 INFO [26031]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 23:00:19.810 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:00:19.822 INFO [26031]: COREGRADE is stopping... -- 23:00:19.822 DEBUG [26031]: Closing database connection -- 23:00:19.822 SQL [26031]: pgsql_close() -- 23:00:19.818 DEBUG [26043]: Database connection successful -- 23:00:19.818 INFO [26043]: _SERVER found -- 23:00:19.818 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 23:00:19.818 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 23:00:19.818 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:00:19.818 INFO [26043]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 23:00:19.818 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:00:19.831 INFO [26043]: COREGRADE is stopping... -- 23:00:19.831 DEBUG [26043]: Closing database connection -- 23:00:19.831 SQL [26043]: pgsql_close() -- 23:00:20.890 INFO [26043]: COREGRADE is starting... -- 23:00:20.890 INFO [26043]: Version from config: 1.0 -- 23:00:20.890 DEBUG [26043]: Connecting to database... -- 23:00:20.890 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:00:20.890 SQL [26043]: pgsql_db_connect() -- 23:00:20.895 DEBUG [26043]: Database connection successful -- 23:00:20.895 INFO [26043]: _SERVER found -- 23:00:20.895 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 23:00:20.895 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 23:00:20.895 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:00:20.895 INFO [26043]: QUERY_STRING = /member/page -- 23:00:20.895 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:00:20.939 INFO [26043]: COREGRADE is stopping... -- 23:00:20.939 DEBUG [26043]: Closing database connection -- 23:00:20.939 SQL [26043]: pgsql_close() -- 23:00:21.091 INFO [26043]: COREGRADE is starting... -- 23:00:21.091 INFO [26043]: Version from config: 1.0 -- 23:00:21.091 DEBUG [26043]: Connecting to database... -- 23:00:21.091 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:00:21.091 SQL [26043]: pgsql_db_connect() -- 23:00:21.096 DEBUG [26043]: Database connection successful -- 23:00:21.096 INFO [26043]: _SERVER found -- 23:00:21.096 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 23:00:21.096 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 23:00:21.096 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:00:21.096 INFO [26043]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:00:21.096 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:00:21.107 INFO [26043]: COREGRADE is stopping... -- 23:00:21.107 DEBUG [26043]: Closing database connection -- 23:00:21.107 SQL [26043]: pgsql_close() -- 23:00:21.342 INFO [26043]: COREGRADE is starting... -- 23:00:21.342 INFO [26043]: Version from config: 1.0 -- 23:00:21.342 DEBUG [26043]: Connecting to database... -- 23:00:21.342 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:00:21.342 SQL [26043]: pgsql_db_connect() -- 23:00:21.370 INFO [26031]: COREGRADE is starting... -- 23:00:21.370 INFO [26031]: Version from config: 1.0 -- 23:00:21.370 DEBUG [26031]: Connecting to database... -- 23:00:21.370 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:00:21.370 SQL [26031]: pgsql_db_connect() -- 23:00:21.346 DEBUG [26043]: Database connection successful -- 23:00:21.347 INFO [26043]: _SERVER found -- 23:00:21.347 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 23:00:21.347 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 23:00:21.347 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:00:21.347 INFO [26043]: QUERY_STRING = /member/upload -- 23:00:21.347 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:00:21.380 INFO [26043]: COREGRADE is stopping... -- 23:00:21.380 DEBUG [26043]: Closing database connection -- 23:00:21.380 SQL [26043]: pgsql_close() -- 23:00:21.374 DEBUG [26031]: Database connection successful -- 23:00:21.374 INFO [26031]: _SERVER found -- 23:00:21.374 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 23:00:21.374 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 23:00:21.374 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:00:21.374 INFO [26031]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 23:00:21.374 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:00:21.386 INFO [26031]: COREGRADE is stopping... -- 23:00:21.386 DEBUG [26031]: Closing database connection -- 23:00:21.386 SQL [26031]: pgsql_close() -- 23:00:21.393 INFO [26031]: COREGRADE is starting... -- 23:00:21.394 INFO [26031]: Version from config: 1.0 -- 23:00:21.394 DEBUG [26031]: Connecting to database... -- 23:00:21.394 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:00:21.394 SQL [26031]: pgsql_db_connect() -- 23:00:21.398 DEBUG [26031]: Database connection successful -- 23:00:21.398 INFO [26031]: _SERVER found -- 23:00:21.398 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 23:00:21.398 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 23:00:21.398 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:00:21.398 INFO [26031]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 23:00:21.398 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:00:21.410 INFO [26031]: COREGRADE is stopping... -- 23:00:21.410 DEBUG [26031]: Closing database connection -- 23:00:21.410 SQL [26031]: pgsql_close() -- 23:00:23.174 INFO [26031]: COREGRADE is starting... -- 23:00:23.174 INFO [26031]: Version from config: 1.0 -- 23:00:23.174 DEBUG [26031]: Connecting to database... -- 23:00:23.174 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:00:23.174 SQL [26031]: pgsql_db_connect() -- 23:00:23.179 DEBUG [26031]: Database connection successful -- 23:00:23.179 INFO [26031]: _SERVER found -- 23:00:23.179 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 23:00:23.179 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 23:00:23.179 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:00:23.179 INFO [26031]: QUERY_STRING = /member/viewCardAddAction -- 23:00:23.179 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:00:23.211 INFO [26031]: COREGRADE is stopping... -- 23:00:23.211 DEBUG [26031]: Closing database connection -- 23:00:23.211 SQL [26031]: pgsql_close() -- 23:00:28.640 INFO [25980]: COREGRADE is starting... -- 23:00:28.640 INFO [25980]: Version from config: 1.0 -- 23:00:28.640 DEBUG [25980]: Connecting to database... -- 23:00:28.640 DEBUG [25980]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:00:28.640 SQL [25980]: pgsql_db_connect() -- 23:00:28.645 DEBUG [25980]: Database connection successful -- 23:00:28.645 INFO [25980]: _SERVER found -- 23:00:28.645 INFO [25980]: REMOTE_ADDR = 192.168.1.13 -- 23:00:28.645 INFO [25980]: SERVER_NAME = oameye.works.coregrade.com -- 23:00:28.645 INFO [25980]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:00:28.645 INFO [25980]: QUERY_STRING = /member/addPageCards -- 23:00:28.645 INFO [25980]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:00:28.680 INFO [25980]: COREGRADE is stopping... -- 23:00:28.680 DEBUG [25980]: Closing database connection -- 23:00:28.680 SQL [25980]: pgsql_close() -- 23:01:46.340 INFO [25976]: COREGRADE is starting... -- 23:01:46.340 INFO [25976]: Version from config: 1.0 -- 23:01:46.340 DEBUG [25976]: Connecting to database... -- 23:01:46.341 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:01:46.341 SQL [25976]: pgsql_db_connect() -- 23:01:46.345 DEBUG [25976]: Database connection successful -- 23:01:46.345 INFO [25976]: _SERVER found -- 23:01:46.345 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 23:01:46.345 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 23:01:46.345 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:01:46.345 INFO [25976]: QUERY_STRING = /member/page -- 23:01:46.345 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:01:46.389 INFO [25976]: COREGRADE is stopping... -- 23:01:46.389 DEBUG [25976]: Closing database connection -- 23:01:46.389 SQL [25976]: pgsql_close() -- 23:01:46.586 INFO [25976]: COREGRADE is starting... -- 23:01:46.586 INFO [25976]: Version from config: 1.0 -- 23:01:46.586 DEBUG [25976]: Connecting to database... -- 23:01:46.586 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:01:46.586 SQL [25976]: pgsql_db_connect() -- 23:01:46.590 DEBUG [25976]: Database connection successful -- 23:01:46.590 INFO [25976]: _SERVER found -- 23:01:46.590 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 23:01:46.590 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 23:01:46.590 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:01:46.590 INFO [25976]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:01:46.590 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:01:46.601 INFO [25976]: COREGRADE is stopping... -- 23:01:46.601 DEBUG [25976]: Closing database connection -- 23:01:46.601 SQL [25976]: pgsql_close() -- 23:01:46.880 INFO [25976]: COREGRADE is starting... -- 23:01:46.880 INFO [25976]: Version from config: 1.0 -- 23:01:46.880 DEBUG [25976]: Connecting to database... -- 23:01:46.880 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:01:46.880 SQL [25976]: pgsql_db_connect() -- 23:01:46.889 INFO [25983]: COREGRADE is starting... -- 23:01:46.889 INFO [25983]: Version from config: 1.0 -- 23:01:46.889 DEBUG [25983]: Connecting to database... -- 23:01:46.889 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:01:46.889 SQL [25983]: pgsql_db_connect() -- 23:01:46.885 DEBUG [25976]: Database connection successful -- 23:01:46.885 INFO [25976]: _SERVER found -- 23:01:46.885 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 23:01:46.885 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 23:01:46.885 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:01:46.885 INFO [25976]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 23:01:46.885 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:01:46.896 INFO [25976]: COREGRADE is stopping... -- 23:01:46.896 DEBUG [25976]: Closing database connection -- 23:01:46.896 SQL [25976]: pgsql_close() -- 23:01:46.893 DEBUG [25983]: Database connection successful -- 23:01:46.893 INFO [25983]: _SERVER found -- 23:01:46.893 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 23:01:46.893 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 23:01:46.893 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:01:46.893 INFO [25983]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 23:01:46.893 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:01:46.906 INFO [25983]: COREGRADE is stopping... -- 23:01:46.906 DEBUG [25983]: Closing database connection -- 23:01:46.906 SQL [25983]: pgsql_close() -- 23:01:49.446 INFO [25983]: COREGRADE is starting... -- 23:01:49.446 INFO [25983]: Version from config: 1.0 -- 23:01:49.446 DEBUG [25983]: Connecting to database... -- 23:01:49.446 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:01:49.446 SQL [25983]: pgsql_db_connect() -- 23:01:49.451 DEBUG [25983]: Database connection successful -- 23:01:49.451 INFO [25983]: _SERVER found -- 23:01:49.451 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 23:01:49.451 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 23:01:49.451 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:01:49.451 INFO [25983]: QUERY_STRING = /member/viewCardAddAction -- 23:01:49.451 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:01:49.486 INFO [25983]: COREGRADE is stopping... -- 23:01:49.486 DEBUG [25983]: Closing database connection -- 23:01:49.486 SQL [25983]: pgsql_close() -- 23:01:49.506 INFO [25983]: COREGRADE is starting... -- 23:01:49.506 INFO [25983]: Version from config: 1.0 -- 23:01:49.506 DEBUG [25983]: Connecting to database... -- 23:01:49.506 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:01:49.506 SQL [25983]: pgsql_db_connect() -- 23:01:49.510 DEBUG [25983]: Database connection successful -- 23:01:49.510 INFO [25983]: _SERVER found -- 23:01:49.510 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 23:01:49.510 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 23:01:49.510 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:01:49.510 INFO [25983]: QUERY_STRING = /member/upload -- 23:01:49.510 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:01:49.545 INFO [25983]: COREGRADE is stopping... -- 23:01:49.545 DEBUG [25983]: Closing database connection -- 23:01:49.545 SQL [25983]: pgsql_close() -- 23:01:55.932 INFO [26029]: COREGRADE is starting... -- 23:01:55.932 INFO [26029]: Version from config: 1.0 -- 23:01:55.932 DEBUG [26029]: Connecting to database... -- 23:01:55.932 DEBUG [26029]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:01:55.932 SQL [26029]: pgsql_db_connect() -- 23:01:55.936 DEBUG [26029]: Database connection successful -- 23:01:55.936 INFO [26029]: _SERVER found -- 23:01:55.937 INFO [26029]: REMOTE_ADDR = 192.168.1.13 -- 23:01:55.937 INFO [26029]: SERVER_NAME = oameye.works.coregrade.com -- 23:01:55.937 INFO [26029]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:01:55.937 INFO [26029]: QUERY_STRING = /member/addPageCards -- 23:01:55.937 INFO [26029]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:01:55.969 INFO [26029]: COREGRADE is stopping... -- 23:01:55.969 DEBUG [26029]: Closing database connection -- 23:01:55.969 SQL [26029]: pgsql_close() -- 23:01:55.999 INFO [26029]: COREGRADE is starting... -- 23:01:55.999 INFO [26029]: Version from config: 1.0 -- 23:01:55.999 DEBUG [26029]: Connecting to database... -- 23:01:55.999 DEBUG [26029]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:01:55.999 SQL [26029]: pgsql_db_connect() -- 23:01:56.003 DEBUG [26029]: Database connection successful -- 23:01:56.003 INFO [26029]: _SERVER found -- 23:01:56.003 INFO [26029]: REMOTE_ADDR = 192.168.1.13 -- 23:01:56.003 INFO [26029]: SERVER_NAME = oameye.works.coregrade.com -- 23:01:56.003 INFO [26029]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:01:56.003 INFO [26029]: QUERY_STRING = /member/upload -- 23:01:56.003 INFO [26029]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:01:56.035 INFO [26029]: COREGRADE is stopping... -- 23:01:56.035 DEBUG [26029]: Closing database connection -- 23:01:56.035 SQL [26029]: pgsql_close() -- 23:03:00.110 INFO [25979]: COREGRADE is starting... -- 23:03:00.110 INFO [25979]: Version from config: 1.0 -- 23:03:00.110 DEBUG [25979]: Connecting to database... -- 23:03:00.110 DEBUG [25979]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:03:00.110 SQL [25979]: pgsql_db_connect() -- 23:03:00.114 DEBUG [25979]: Database connection successful -- 23:03:00.114 INFO [25979]: _SERVER found -- 23:03:00.114 INFO [25979]: REMOTE_ADDR = 192.168.1.13 -- 23:03:00.114 INFO [25979]: SERVER_NAME = oameye.works.coregrade.com -- 23:03:00.114 INFO [25979]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:03:00.114 INFO [25979]: QUERY_STRING = /member/page -- 23:03:00.114 INFO [25979]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:03:00.158 INFO [25979]: COREGRADE is stopping... -- 23:03:00.158 DEBUG [25979]: Closing database connection -- 23:03:00.158 SQL [25979]: pgsql_close() -- 23:03:00.295 INFO [25979]: COREGRADE is starting... -- 23:03:00.295 INFO [25979]: Version from config: 1.0 -- 23:03:00.295 DEBUG [25979]: Connecting to database... -- 23:03:00.295 DEBUG [25979]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:03:00.295 SQL [25979]: pgsql_db_connect() -- 23:03:00.299 DEBUG [25979]: Database connection successful -- 23:03:00.299 INFO [25979]: _SERVER found -- 23:03:00.299 INFO [25979]: REMOTE_ADDR = 192.168.1.13 -- 23:03:00.299 INFO [25979]: SERVER_NAME = oameye.works.coregrade.com -- 23:03:00.299 INFO [25979]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:03:00.299 INFO [25979]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:03:00.299 INFO [25979]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:03:00.310 INFO [25979]: COREGRADE is stopping... -- 23:03:00.310 DEBUG [25979]: Closing database connection -- 23:03:00.310 SQL [25979]: pgsql_close() -- 23:03:00.489 INFO [25979]: COREGRADE is starting... -- 23:03:00.489 INFO [25979]: Version from config: 1.0 -- 23:03:00.489 DEBUG [25979]: Connecting to database... -- 23:03:00.489 DEBUG [25979]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:03:00.489 SQL [25979]: pgsql_db_connect() -- 23:03:00.498 INFO [25978]: COREGRADE is starting... -- 23:03:00.498 INFO [25978]: Version from config: 1.0 -- 23:03:00.498 DEBUG [25978]: Connecting to database... -- 23:03:00.498 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:03:00.498 SQL [25978]: pgsql_db_connect() -- 23:03:00.493 DEBUG [25979]: Database connection successful -- 23:03:00.493 INFO [25979]: _SERVER found -- 23:03:00.493 INFO [25979]: REMOTE_ADDR = 192.168.1.13 -- 23:03:00.493 INFO [25979]: SERVER_NAME = oameye.works.coregrade.com -- 23:03:00.493 INFO [25979]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:03:00.493 INFO [25979]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 23:03:00.493 INFO [25979]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:03:00.505 INFO [25979]: COREGRADE is stopping... -- 23:03:00.505 DEBUG [25979]: Closing database connection -- 23:03:00.505 SQL [25979]: pgsql_close() -- 23:03:00.502 DEBUG [25978]: Database connection successful -- 23:03:00.502 INFO [25978]: _SERVER found -- 23:03:00.502 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 23:03:00.502 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 23:03:00.502 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:03:00.502 INFO [25978]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 23:03:00.502 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:03:00.514 INFO [25978]: COREGRADE is stopping... -- 23:03:00.514 DEBUG [25978]: Closing database connection -- 23:03:00.514 SQL [25978]: pgsql_close() -- 23:03:02.714 INFO [25978]: COREGRADE is starting... -- 23:03:02.714 INFO [25978]: Version from config: 1.0 -- 23:03:02.714 DEBUG [25978]: Connecting to database... -- 23:03:02.714 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:03:02.714 SQL [25978]: pgsql_db_connect() -- 23:03:02.718 DEBUG [25978]: Database connection successful -- 23:03:02.718 INFO [25978]: _SERVER found -- 23:03:02.718 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 23:03:02.718 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 23:03:02.718 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:03:02.718 INFO [25978]: QUERY_STRING = /member/viewCardAddAction -- 23:03:02.718 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:03:02.750 INFO [25978]: COREGRADE is stopping... -- 23:03:02.750 DEBUG [25978]: Closing database connection -- 23:03:02.750 SQL [25978]: pgsql_close() -- 23:03:02.770 INFO [25978]: COREGRADE is starting... -- 23:03:02.770 INFO [25978]: Version from config: 1.0 -- 23:03:02.770 DEBUG [25978]: Connecting to database... -- 23:03:02.770 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:03:02.770 SQL [25978]: pgsql_db_connect() -- 23:03:02.774 DEBUG [25978]: Database connection successful -- 23:03:02.774 INFO [25978]: _SERVER found -- 23:03:02.774 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 23:03:02.774 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 23:03:02.774 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:03:02.774 INFO [25978]: QUERY_STRING = /member/upload -- 23:03:02.774 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:03:02.806 INFO [25978]: COREGRADE is stopping... -- 23:03:02.806 DEBUG [25978]: Closing database connection -- 23:03:02.806 SQL [25978]: pgsql_close() -- 23:03:08.979 INFO [25977]: COREGRADE is starting... -- 23:03:08.979 INFO [25977]: Version from config: 1.0 -- 23:03:08.979 DEBUG [25977]: Connecting to database... -- 23:03:08.979 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:03:08.979 SQL [25977]: pgsql_db_connect() -- 23:03:08.983 DEBUG [25977]: Database connection successful -- 23:03:08.983 INFO [25977]: _SERVER found -- 23:03:08.983 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 23:03:08.983 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 23:03:08.983 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:03:08.983 INFO [25977]: QUERY_STRING = /member/addPageCards -- 23:03:08.983 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:03:09.016 INFO [25977]: COREGRADE is stopping... -- 23:03:09.016 DEBUG [25977]: Closing database connection -- 23:03:09.016 SQL [25977]: pgsql_close() -- 23:03:09.057 INFO [25977]: COREGRADE is starting... -- 23:03:09.058 INFO [25977]: Version from config: 1.0 -- 23:03:09.058 DEBUG [25977]: Connecting to database... -- 23:03:09.058 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:03:09.058 SQL [25977]: pgsql_db_connect() -- 23:03:09.062 DEBUG [25977]: Database connection successful -- 23:03:09.062 INFO [25977]: _SERVER found -- 23:03:09.062 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 23:03:09.062 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 23:03:09.062 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:03:09.062 INFO [25977]: QUERY_STRING = /member/upload -- 23:03:09.062 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:03:09.094 INFO [25977]: COREGRADE is stopping... -- 23:03:09.094 DEBUG [25977]: Closing database connection -- 23:03:09.094 SQL [25977]: pgsql_close() -- 23:04:07.266 INFO [26030]: COREGRADE is starting... -- 23:04:07.266 INFO [26030]: Version from config: 1.0 -- 23:04:07.266 DEBUG [26030]: Connecting to database... -- 23:04:07.266 DEBUG [26030]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:07.266 SQL [26030]: pgsql_db_connect() -- 23:04:07.270 DEBUG [26030]: Database connection successful -- 23:04:07.270 INFO [26030]: _SERVER found -- 23:04:07.270 INFO [26030]: REMOTE_ADDR = 192.168.1.13 -- 23:04:07.270 INFO [26030]: SERVER_NAME = oameye.works.coregrade.com -- 23:04:07.270 INFO [26030]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:04:07.270 INFO [26030]: QUERY_STRING = /member/page -- 23:04:07.270 INFO [26030]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:04:07.314 INFO [26030]: COREGRADE is stopping... -- 23:04:07.314 DEBUG [26030]: Closing database connection -- 23:04:07.314 SQL [26030]: pgsql_close() -- 23:04:07.431 INFO [26030]: COREGRADE is starting... -- 23:04:07.431 INFO [26030]: Version from config: 1.0 -- 23:04:07.431 DEBUG [26030]: Connecting to database... -- 23:04:07.431 DEBUG [26030]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:07.431 SQL [26030]: pgsql_db_connect() -- 23:04:07.435 DEBUG [26030]: Database connection successful -- 23:04:07.435 INFO [26030]: _SERVER found -- 23:04:07.435 INFO [26030]: REMOTE_ADDR = 192.168.1.13 -- 23:04:07.435 INFO [26030]: SERVER_NAME = oameye.works.coregrade.com -- 23:04:07.435 INFO [26030]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:04:07.435 INFO [26030]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:04:07.435 INFO [26030]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:04:07.446 INFO [26030]: COREGRADE is stopping... -- 23:04:07.446 DEBUG [26030]: Closing database connection -- 23:04:07.446 SQL [26030]: pgsql_close() -- 23:04:07.680 INFO [26030]: COREGRADE is starting... -- 23:04:07.680 INFO [26030]: Version from config: 1.0 -- 23:04:07.680 DEBUG [26030]: Connecting to database... -- 23:04:07.680 DEBUG [26030]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:07.680 SQL [26030]: pgsql_db_connect() -- 23:04:07.688 INFO [26043]: COREGRADE is starting... -- 23:04:07.688 INFO [26043]: Version from config: 1.0 -- 23:04:07.688 DEBUG [26043]: Connecting to database... -- 23:04:07.689 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:07.689 SQL [26043]: pgsql_db_connect() -- 23:04:07.684 DEBUG [26030]: Database connection successful -- 23:04:07.684 INFO [26030]: _SERVER found -- 23:04:07.684 INFO [26030]: REMOTE_ADDR = 192.168.1.13 -- 23:04:07.684 INFO [26030]: SERVER_NAME = oameye.works.coregrade.com -- 23:04:07.684 INFO [26030]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:04:07.684 INFO [26030]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 23:04:07.684 INFO [26030]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:04:07.696 INFO [26030]: COREGRADE is stopping... -- 23:04:07.696 DEBUG [26030]: Closing database connection -- 23:04:07.696 SQL [26030]: pgsql_close() -- 23:04:07.693 DEBUG [26043]: Database connection successful -- 23:04:07.693 INFO [26043]: _SERVER found -- 23:04:07.693 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 23:04:07.693 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 23:04:07.693 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:04:07.693 INFO [26043]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 23:04:07.693 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:04:07.704 INFO [26043]: COREGRADE is stopping... -- 23:04:07.704 DEBUG [26043]: Closing database connection -- 23:04:07.704 SQL [26043]: pgsql_close() -- 23:04:11.026 INFO [26043]: COREGRADE is starting... -- 23:04:11.026 INFO [26043]: Version from config: 1.0 -- 23:04:11.026 DEBUG [26043]: Connecting to database... -- 23:04:11.026 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:11.026 SQL [26043]: pgsql_db_connect() -- 23:04:11.030 DEBUG [26043]: Database connection successful -- 23:04:11.030 INFO [26043]: _SERVER found -- 23:04:11.030 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 23:04:11.030 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 23:04:11.030 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:04:11.030 INFO [26043]: QUERY_STRING = /member/viewCardAddAction -- 23:04:11.030 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:04:11.062 INFO [26043]: COREGRADE is stopping... -- 23:04:11.062 DEBUG [26043]: Closing database connection -- 23:04:11.062 SQL [26043]: pgsql_close() -- 23:04:11.107 INFO [26043]: COREGRADE is starting... -- 23:04:11.107 INFO [26043]: Version from config: 1.0 -- 23:04:11.107 DEBUG [26043]: Connecting to database... -- 23:04:11.107 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:11.107 SQL [26043]: pgsql_db_connect() -- 23:04:11.111 DEBUG [26043]: Database connection successful -- 23:04:11.111 INFO [26043]: _SERVER found -- 23:04:11.111 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 23:04:11.111 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 23:04:11.111 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:04:11.111 INFO [26043]: QUERY_STRING = /member/upload -- 23:04:11.111 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:04:11.143 INFO [26043]: COREGRADE is stopping... -- 23:04:11.143 DEBUG [26043]: Closing database connection -- 23:04:11.143 SQL [26043]: pgsql_close() -- 23:04:15.888 INFO [26043]: COREGRADE is starting... -- 23:04:15.888 INFO [26043]: Version from config: 1.0 -- 23:04:15.888 DEBUG [26043]: Connecting to database... -- 23:04:15.888 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:15.888 SQL [26043]: pgsql_db_connect() -- 23:04:15.892 DEBUG [26043]: Database connection successful -- 23:04:15.892 INFO [26043]: _SERVER found -- 23:04:15.892 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 23:04:15.892 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 23:04:15.892 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:04:15.892 INFO [26043]: QUERY_STRING = /member/addPageCards -- 23:04:15.892 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:04:15.923 INFO [26043]: COREGRADE is stopping... -- 23:04:15.923 DEBUG [26043]: Closing database connection -- 23:04:15.923 SQL [26043]: pgsql_close() -- 23:04:15.966 INFO [26043]: COREGRADE is starting... -- 23:04:15.966 INFO [26043]: Version from config: 1.0 -- 23:04:15.966 DEBUG [26043]: Connecting to database... -- 23:04:15.966 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:15.966 SQL [26043]: pgsql_db_connect() -- 23:04:15.970 DEBUG [26043]: Database connection successful -- 23:04:15.970 INFO [26043]: _SERVER found -- 23:04:15.970 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 23:04:15.970 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 23:04:15.970 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:04:15.970 INFO [26043]: QUERY_STRING = /member/upload -- 23:04:15.970 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:04:16.002 INFO [26043]: COREGRADE is stopping... -- 23:04:16.002 DEBUG [26043]: Closing database connection -- 23:04:16.002 SQL [26043]: pgsql_close() -- 23:04:27.154 INFO [26031]: COREGRADE is starting... -- 23:04:27.154 INFO [26031]: Version from config: 1.0 -- 23:04:27.154 DEBUG [26031]: Connecting to database... -- 23:04:27.154 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:27.154 SQL [26031]: pgsql_db_connect() -- 23:04:27.158 DEBUG [26031]: Database connection successful -- 23:04:27.158 INFO [26031]: _SERVER found -- 23:04:27.158 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 23:04:27.158 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 23:04:27.158 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:04:27.158 INFO [26031]: QUERY_STRING = /member/page -- 23:04:27.158 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:04:27.201 INFO [26031]: COREGRADE is stopping... -- 23:04:27.201 DEBUG [26031]: Closing database connection -- 23:04:27.201 SQL [26031]: pgsql_close() -- 23:04:27.337 INFO [26031]: COREGRADE is starting... -- 23:04:27.338 INFO [26031]: Version from config: 1.0 -- 23:04:27.338 DEBUG [26031]: Connecting to database... -- 23:04:27.338 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:27.338 SQL [26031]: pgsql_db_connect() -- 23:04:27.342 DEBUG [26031]: Database connection successful -- 23:04:27.342 INFO [26031]: _SERVER found -- 23:04:27.342 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 23:04:27.342 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 23:04:27.342 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:04:27.342 INFO [26031]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:04:27.342 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:04:27.353 INFO [26031]: COREGRADE is stopping... -- 23:04:27.353 DEBUG [26031]: Closing database connection -- 23:04:27.353 SQL [26031]: pgsql_close() -- 23:04:27.487 INFO [26031]: COREGRADE is starting... -- 23:04:27.487 INFO [26031]: Version from config: 1.0 -- 23:04:27.487 DEBUG [26031]: Connecting to database... -- 23:04:27.487 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:27.487 SQL [26031]: pgsql_db_connect() -- 23:04:27.494 INFO [25980]: COREGRADE is starting... -- 23:04:27.494 INFO [25980]: Version from config: 1.0 -- 23:04:27.494 DEBUG [25980]: Connecting to database... -- 23:04:27.494 DEBUG [25980]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:27.494 SQL [25980]: pgsql_db_connect() -- 23:04:27.491 DEBUG [26031]: Database connection successful -- 23:04:27.491 INFO [26031]: _SERVER found -- 23:04:27.491 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 23:04:27.491 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 23:04:27.491 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:04:27.491 INFO [26031]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 23:04:27.491 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:04:27.502 INFO [26031]: COREGRADE is stopping... -- 23:04:27.502 DEBUG [26031]: Closing database connection -- 23:04:27.502 SQL [26031]: pgsql_close() -- 23:04:27.498 DEBUG [25980]: Database connection successful -- 23:04:27.498 INFO [25980]: _SERVER found -- 23:04:27.498 INFO [25980]: REMOTE_ADDR = 192.168.1.13 -- 23:04:27.498 INFO [25980]: SERVER_NAME = oameye.works.coregrade.com -- 23:04:27.498 INFO [25980]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:04:27.498 INFO [25980]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 23:04:27.498 INFO [25980]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:04:27.510 INFO [25980]: COREGRADE is stopping... -- 23:04:27.510 DEBUG [25980]: Closing database connection -- 23:04:27.510 SQL [25980]: pgsql_close() -- 23:04:41.293 INFO [25976]: COREGRADE is starting... -- 23:04:41.294 INFO [25976]: Version from config: 1.0 -- 23:04:41.294 DEBUG [25976]: Connecting to database... -- 23:04:41.294 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:41.294 SQL [25976]: pgsql_db_connect() -- 23:04:41.298 DEBUG [25976]: Database connection successful -- 23:04:41.298 INFO [25976]: _SERVER found -- 23:04:41.298 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 23:04:41.298 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 23:04:41.298 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:04:41.298 INFO [25976]: QUERY_STRING = /member/viewCardAddAction -- 23:04:41.298 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:04:41.330 INFO [25976]: COREGRADE is stopping... -- 23:04:41.330 DEBUG [25976]: Closing database connection -- 23:04:41.330 SQL [25976]: pgsql_close() -- 23:04:41.375 INFO [25976]: COREGRADE is starting... -- 23:04:41.375 INFO [25976]: Version from config: 1.0 -- 23:04:41.375 DEBUG [25976]: Connecting to database... -- 23:04:41.375 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:41.375 SQL [25976]: pgsql_db_connect() -- 23:04:41.379 DEBUG [25976]: Database connection successful -- 23:04:41.379 INFO [25976]: _SERVER found -- 23:04:41.379 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 23:04:41.379 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 23:04:41.379 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:04:41.379 INFO [25976]: QUERY_STRING = /member/upload -- 23:04:41.379 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:04:41.411 INFO [25976]: COREGRADE is stopping... -- 23:04:41.411 DEBUG [25976]: Closing database connection -- 23:04:41.411 SQL [25976]: pgsql_close() -- 23:05:55.769 INFO [25983]: COREGRADE is starting... -- 23:05:55.769 INFO [25983]: Version from config: 1.0 -- 23:05:55.769 DEBUG [25983]: Connecting to database... -- 23:05:55.769 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:05:55.769 SQL [25983]: pgsql_db_connect() -- 23:05:55.773 DEBUG [25983]: Database connection successful -- 23:05:55.773 INFO [25983]: _SERVER found -- 23:05:55.773 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 23:05:55.773 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 23:05:55.773 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=cathr01uk6gf70u2c5300f6mpujfa7kg -- 23:05:55.773 INFO [25983]: QUERY_STRING = /member/page -- 23:05:55.773 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:05:55.822 INFO [25983]: COREGRADE is stopping... -- 23:05:55.822 DEBUG [25983]: Closing database connection -- 23:05:55.822 SQL [25983]: pgsql_close() -- 23:05:55.955 INFO [25983]: COREGRADE is starting... -- 23:05:55.955 INFO [25983]: Version from config: 1.0 -- 23:05:55.955 DEBUG [25983]: Connecting to database... -- 23:05:55.955 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:05:55.955 SQL [25983]: pgsql_db_connect() -- 23:05:55.959 DEBUG [25983]: Database connection successful -- 23:05:55.959 INFO [25983]: _SERVER found -- 23:05:55.959 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 23:05:55.959 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 23:05:55.959 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=gd25vs31fblfdnmqo2p3aiqvh8leh4eb -- 23:05:55.959 INFO [25983]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:05:55.959 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:05:55.972 INFO [25983]: COREGRADE is stopping... -- 23:05:55.972 DEBUG [25983]: Closing database connection -- 23:05:55.972 SQL [25983]: pgsql_close() -- 23:05:56.111 INFO [25983]: COREGRADE is starting... -- 23:05:56.112 INFO [25983]: Version from config: 1.0 -- 23:05:56.112 DEBUG [25983]: Connecting to database... -- 23:05:56.112 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:05:56.112 SQL [25983]: pgsql_db_connect() -- 23:05:56.119 INFO [26029]: COREGRADE is starting... -- 23:05:56.119 INFO [26029]: Version from config: 1.0 -- 23:05:56.119 DEBUG [26029]: Connecting to database... -- 23:05:56.119 DEBUG [26029]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:05:56.119 SQL [26029]: pgsql_db_connect() -- 23:05:56.116 DEBUG [25983]: Database connection successful -- 23:05:56.116 INFO [25983]: _SERVER found -- 23:05:56.116 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 23:05:56.116 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 23:05:56.116 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=gd25vs31fblfdnmqo2p3aiqvh8leh4eb -- 23:05:56.116 INFO [25983]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 23:05:56.116 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:05:56.128 INFO [25983]: COREGRADE is stopping... -- 23:05:56.128 DEBUG [25983]: Closing database connection -- 23:05:56.128 SQL [25983]: pgsql_close() -- 23:05:56.124 DEBUG [26029]: Database connection successful -- 23:05:56.124 INFO [26029]: _SERVER found -- 23:05:56.124 INFO [26029]: REMOTE_ADDR = 192.168.1.13 -- 23:05:56.124 INFO [26029]: SERVER_NAME = oameye.works.coregrade.com -- 23:05:56.124 INFO [26029]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=gd25vs31fblfdnmqo2p3aiqvh8leh4eb -- 23:05:56.124 INFO [26029]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 23:05:56.124 INFO [26029]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:05:56.137 INFO [26029]: COREGRADE is stopping... -- 23:05:56.137 DEBUG [26029]: Closing database connection -- 23:05:56.137 SQL [26029]: pgsql_close() -- 23:05:58.194 INFO [26029]: COREGRADE is starting... -- 23:05:58.195 INFO [26029]: Version from config: 1.0 -- 23:05:58.195 DEBUG [26029]: Connecting to database... -- 23:05:58.195 DEBUG [26029]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:05:58.195 SQL [26029]: pgsql_db_connect() -- 23:05:58.199 DEBUG [26029]: Database connection successful -- 23:05:58.199 INFO [26029]: _SERVER found -- 23:05:58.199 INFO [26029]: REMOTE_ADDR = 192.168.1.13 -- 23:05:58.199 INFO [26029]: SERVER_NAME = oameye.works.coregrade.com -- 23:05:58.199 INFO [26029]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=gd25vs31fblfdnmqo2p3aiqvh8leh4eb -- 23:05:58.199 INFO [26029]: QUERY_STRING = /member/viewCardAddAction -- 23:05:58.199 INFO [26029]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:05:58.230 INFO [26029]: COREGRADE is stopping... -- 23:05:58.231 DEBUG [26029]: Closing database connection -- 23:05:58.231 SQL [26029]: pgsql_close() -- 23:05:58.277 INFO [26029]: COREGRADE is starting... -- 23:05:58.278 INFO [26029]: Version from config: 1.0 -- 23:05:58.278 DEBUG [26029]: Connecting to database... -- 23:05:58.278 DEBUG [26029]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:05:58.278 SQL [26029]: pgsql_db_connect() -- 23:05:58.281 DEBUG [26029]: Database connection successful -- 23:05:58.281 INFO [26029]: _SERVER found -- 23:05:58.281 INFO [26029]: REMOTE_ADDR = 192.168.1.13 -- 23:05:58.281 INFO [26029]: SERVER_NAME = oameye.works.coregrade.com -- 23:05:58.281 INFO [26029]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=gd25vs31fblfdnmqo2p3aiqvh8leh4eb -- 23:05:58.281 INFO [26029]: QUERY_STRING = /member/upload -- 23:05:58.281 INFO [26029]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:05:58.313 INFO [26029]: COREGRADE is stopping... -- 23:05:58.313 DEBUG [26029]: Closing database connection -- 23:05:58.313 SQL [26029]: pgsql_close() -- 23:06:03.645 INFO [25979]: COREGRADE is starting... -- 23:06:03.645 INFO [25979]: Version from config: 1.0 -- 23:06:03.645 DEBUG [25979]: Connecting to database... -- 23:06:03.645 DEBUG [25979]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:06:03.645 SQL [25979]: pgsql_db_connect() -- 23:06:03.649 DEBUG [25979]: Database connection successful -- 23:06:03.649 INFO [25979]: _SERVER found -- 23:06:03.649 INFO [25979]: REMOTE_ADDR = 192.168.1.13 -- 23:06:03.649 INFO [25979]: SERVER_NAME = oameye.works.coregrade.com -- 23:06:03.649 INFO [25979]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=gd25vs31fblfdnmqo2p3aiqvh8leh4eb -- 23:06:03.649 INFO [25979]: QUERY_STRING = /member/addPageCards -- 23:06:03.649 INFO [25979]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:06:03.681 INFO [25979]: COREGRADE is stopping... -- 23:06:03.681 DEBUG [25979]: Closing database connection -- 23:06:03.681 SQL [25979]: pgsql_close() -- 23:06:03.768 INFO [25979]: COREGRADE is starting... -- 23:06:03.768 INFO [25979]: Version from config: 1.0 -- 23:06:03.768 DEBUG [25979]: Connecting to database... -- 23:06:03.768 DEBUG [25979]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:06:03.768 SQL [25979]: pgsql_db_connect() -- 23:06:03.772 DEBUG [25979]: Database connection successful -- 23:06:03.772 INFO [25979]: _SERVER found -- 23:06:03.772 INFO [25979]: REMOTE_ADDR = 192.168.1.13 -- 23:06:03.772 INFO [25979]: SERVER_NAME = oameye.works.coregrade.com -- 23:06:03.772 INFO [25979]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=gd25vs31fblfdnmqo2p3aiqvh8leh4eb -- 23:06:03.772 INFO [25979]: QUERY_STRING = /member/upload -- 23:06:03.772 INFO [25979]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:06:03.804 INFO [25979]: COREGRADE is stopping... -- 23:06:03.804 DEBUG [25979]: Closing database connection -- 23:06:03.804 SQL [25979]: pgsql_close() -- 23:07:46.154 INFO [25978]: COREGRADE is starting... -- 23:07:46.155 INFO [25978]: Version from config: 1.0 -- 23:07:46.155 DEBUG [25978]: Connecting to database... -- 23:07:46.155 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:46.155 SQL [25978]: pgsql_db_connect() -- 23:07:46.159 DEBUG [25978]: Database connection successful -- 23:07:46.159 INFO [25978]: _SERVER found -- 23:07:46.159 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 23:07:46.159 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 23:07:46.159 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=gd25vs31fblfdnmqo2p3aiqvh8leh4eb -- 23:07:46.159 INFO [25978]: QUERY_STRING = /member -- 23:07:46.159 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:07:46.201 INFO [25978]: COREGRADE is stopping... -- 23:07:46.201 DEBUG [25978]: Closing database connection -- 23:07:46.201 SQL [25978]: pgsql_close() -- 23:07:46.381 INFO [25978]: COREGRADE is starting... -- 23:07:46.381 INFO [25978]: Version from config: 1.0 -- 23:07:46.381 DEBUG [25978]: Connecting to database... -- 23:07:46.381 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:46.381 SQL [25978]: pgsql_db_connect() -- 23:07:46.385 DEBUG [25978]: Database connection successful -- 23:07:46.385 INFO [25978]: _SERVER found -- 23:07:46.385 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 23:07:46.385 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 23:07:46.385 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=gd25vs31fblfdnmqo2p3aiqvh8leh4eb -- 23:07:46.385 INFO [25978]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:07:46.385 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:07:46.396 INFO [25978]: COREGRADE is stopping... -- 23:07:46.397 DEBUG [25978]: Closing database connection -- 23:07:46.397 SQL [25978]: pgsql_close() -- 23:07:46.498 INFO [25978]: COREGRADE is starting... -- 23:07:46.498 INFO [25978]: Version from config: 1.0 -- 23:07:46.498 DEBUG [25978]: Connecting to database... -- 23:07:46.498 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:46.498 SQL [25978]: pgsql_db_connect() -- 23:07:46.506 INFO [25977]: COREGRADE is starting... -- 23:07:46.506 INFO [25977]: Version from config: 1.0 -- 23:07:46.506 DEBUG [25977]: Connecting to database... -- 23:07:46.506 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:46.506 SQL [25977]: pgsql_db_connect() -- 23:07:46.502 DEBUG [25978]: Database connection successful -- 23:07:46.502 INFO [25978]: _SERVER found -- 23:07:46.502 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 23:07:46.502 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 23:07:46.502 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=gd25vs31fblfdnmqo2p3aiqvh8leh4eb -- 23:07:46.502 INFO [25978]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 23:07:46.502 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:07:46.514 INFO [25978]: COREGRADE is stopping... -- 23:07:46.514 DEBUG [25978]: Closing database connection -- 23:07:46.514 SQL [25978]: pgsql_close() -- 23:07:46.510 DEBUG [25977]: Database connection successful -- 23:07:46.510 INFO [25977]: _SERVER found -- 23:07:46.510 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 23:07:46.510 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 23:07:46.510 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=gd25vs31fblfdnmqo2p3aiqvh8leh4eb -- 23:07:46.510 INFO [25977]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 23:07:46.510 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:07:46.522 INFO [25977]: COREGRADE is stopping... -- 23:07:46.522 DEBUG [25977]: Closing database connection -- 23:07:46.522 SQL [25977]: pgsql_close() -- 23:07:47.446 INFO [25977]: COREGRADE is starting... -- 23:07:47.446 INFO [25977]: Version from config: 1.0 -- 23:07:47.446 DEBUG [25977]: Connecting to database... -- 23:07:47.446 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:47.446 SQL [25977]: pgsql_db_connect() -- 23:07:47.450 DEBUG [25977]: Database connection successful -- 23:07:47.451 INFO [25977]: _SERVER found -- 23:07:47.451 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 23:07:47.451 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 23:07:47.451 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=gd25vs31fblfdnmqo2p3aiqvh8leh4eb -- 23:07:47.451 INFO [25977]: QUERY_STRING = /member/page -- 23:07:47.451 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:07:47.494 INFO [25977]: COREGRADE is stopping... -- 23:07:47.494 DEBUG [25977]: Closing database connection -- 23:07:47.494 SQL [25977]: pgsql_close() -- 23:07:47.627 INFO [25977]: COREGRADE is starting... -- 23:07:47.628 INFO [25977]: Version from config: 1.0 -- 23:07:47.628 DEBUG [25977]: Connecting to database... -- 23:07:47.628 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:47.628 SQL [25977]: pgsql_db_connect() -- 23:07:47.632 DEBUG [25977]: Database connection successful -- 23:07:47.632 INFO [25977]: _SERVER found -- 23:07:47.632 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 23:07:47.632 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 23:07:47.632 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=gd25vs31fblfdnmqo2p3aiqvh8leh4eb -- 23:07:47.632 INFO [25977]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:07:47.632 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:07:47.643 INFO [25977]: COREGRADE is stopping... -- 23:07:47.643 DEBUG [25977]: Closing database connection -- 23:07:47.643 SQL [25977]: pgsql_close() -- 23:07:47.764 INFO [25977]: COREGRADE is starting... -- 23:07:47.764 INFO [25977]: Version from config: 1.0 -- 23:07:47.764 DEBUG [25977]: Connecting to database... -- 23:07:47.764 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:47.764 SQL [25977]: pgsql_db_connect() -- 23:07:47.766 INFO [25978]: COREGRADE is starting... -- 23:07:47.766 INFO [25978]: Version from config: 1.0 -- 23:07:47.766 DEBUG [25978]: Connecting to database... -- 23:07:47.766 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:47.766 SQL [25978]: pgsql_db_connect() -- 23:07:47.768 DEBUG [25977]: Database connection successful -- 23:07:47.768 INFO [25977]: _SERVER found -- 23:07:47.768 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 23:07:47.768 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 23:07:47.768 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=gd25vs31fblfdnmqo2p3aiqvh8leh4eb -- 23:07:47.768 INFO [25977]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 23:07:47.768 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:07:47.779 INFO [25977]: COREGRADE is stopping... -- 23:07:47.779 DEBUG [25977]: Closing database connection -- 23:07:47.779 SQL [25977]: pgsql_close() -- 23:07:47.770 DEBUG [25978]: Database connection successful -- 23:07:47.770 INFO [25978]: _SERVER found -- 23:07:47.770 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 23:07:47.770 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 23:07:47.770 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=gd25vs31fblfdnmqo2p3aiqvh8leh4eb -- 23:07:47.770 INFO [25978]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 23:07:47.770 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:07:47.781 INFO [25978]: COREGRADE is stopping... -- 23:07:47.781 DEBUG [25978]: Closing database connection -- 23:07:47.781 SQL [25978]: pgsql_close() -- 23:07:50.164 INFO [25978]: COREGRADE is starting... -- 23:07:50.164 INFO [25978]: Version from config: 1.0 -- 23:07:50.164 DEBUG [25978]: Connecting to database... -- 23:07:50.164 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:50.164 SQL [25978]: pgsql_db_connect() -- 23:07:50.168 DEBUG [25978]: Database connection successful -- 23:07:50.168 INFO [25978]: _SERVER found -- 23:07:50.168 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 23:07:50.168 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 23:07:50.168 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=gd25vs31fblfdnmqo2p3aiqvh8leh4eb -- 23:07:50.168 INFO [25978]: QUERY_STRING = /member/viewCardAddAction -- 23:07:50.168 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:07:50.199 INFO [25978]: COREGRADE is stopping... -- 23:07:50.199 DEBUG [25978]: Closing database connection -- 23:07:50.199 SQL [25978]: pgsql_close() -- 23:07:50.221 INFO [25978]: COREGRADE is starting... -- 23:07:50.221 INFO [25978]: Version from config: 1.0 -- 23:07:50.221 DEBUG [25978]: Connecting to database... -- 23:07:50.221 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:50.221 SQL [25978]: pgsql_db_connect() -- 23:07:50.225 DEBUG [25978]: Database connection successful -- 23:07:50.225 INFO [25978]: _SERVER found -- 23:07:50.225 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 23:07:50.225 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 23:07:50.225 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=gd25vs31fblfdnmqo2p3aiqvh8leh4eb -- 23:07:50.225 INFO [25978]: QUERY_STRING = /member/upload -- 23:07:50.225 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:07:50.265 INFO [25978]: COREGRADE is stopping... -- 23:07:50.265 DEBUG [25978]: Closing database connection -- 23:07:50.265 SQL [25978]: pgsql_close() -- 23:07:54.642 INFO [25978]: COREGRADE is starting... -- 23:07:54.643 INFO [25978]: Version from config: 1.0 -- 23:07:54.643 DEBUG [25978]: Connecting to database... -- 23:07:54.643 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:54.643 SQL [25978]: pgsql_db_connect() -- 23:07:54.647 DEBUG [25978]: Database connection successful -- 23:07:54.647 INFO [25978]: _SERVER found -- 23:07:54.647 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 23:07:54.647 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 23:07:54.647 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=gd25vs31fblfdnmqo2p3aiqvh8leh4eb -- 23:07:54.647 INFO [25978]: QUERY_STRING = /member/addPageCards -- 23:07:54.647 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:07:54.678 INFO [25978]: COREGRADE is stopping... -- 23:07:54.678 DEBUG [25978]: Closing database connection -- 23:07:54.678 SQL [25978]: pgsql_close() -- 23:07:54.697 INFO [25978]: COREGRADE is starting... -- 23:07:54.697 INFO [25978]: Version from config: 1.0 -- 23:07:54.697 DEBUG [25978]: Connecting to database... -- 23:07:54.697 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:54.697 SQL [25978]: pgsql_db_connect() -- 23:07:54.701 DEBUG [25978]: Database connection successful -- 23:07:54.701 INFO [25978]: _SERVER found -- 23:07:54.701 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 23:07:54.701 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 23:07:54.701 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=gd25vs31fblfdnmqo2p3aiqvh8leh4eb -- 23:07:54.701 INFO [25978]: QUERY_STRING = /member/upload -- 23:07:54.701 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:07:54.733 INFO [25978]: COREGRADE is stopping... -- 23:07:54.733 DEBUG [25978]: Closing database connection -- 23:07:54.733 SQL [25978]: pgsql_close() -- 23:10:09.625 INFO [26030]: COREGRADE is starting... -- 23:10:09.625 INFO [26030]: Version from config: 1.0 -- 23:10:09.625 DEBUG [26030]: Connecting to database... -- 23:10:09.625 DEBUG [26030]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:10:09.625 SQL [26030]: pgsql_db_connect() -- 23:10:09.630 DEBUG [26030]: Database connection successful -- 23:10:09.630 INFO [26030]: _SERVER found -- 23:10:09.630 INFO [26030]: REMOTE_ADDR = 192.168.1.13 -- 23:10:09.630 INFO [26030]: SERVER_NAME = oameye.works.coregrade.com -- 23:10:09.630 INFO [26030]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=gd25vs31fblfdnmqo2p3aiqvh8leh4eb -- 23:10:09.630 INFO [26030]: QUERY_STRING = /member/page -- 23:10:09.630 INFO [26030]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:10:09.674 INFO [26030]: COREGRADE is stopping... -- 23:10:09.674 DEBUG [26030]: Closing database connection -- 23:10:09.674 SQL [26030]: pgsql_close() -- 23:10:09.843 INFO [26030]: COREGRADE is starting... -- 23:10:09.843 INFO [26030]: Version from config: 1.0 -- 23:10:09.843 DEBUG [26030]: Connecting to database... -- 23:10:09.843 DEBUG [26030]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:10:09.843 SQL [26030]: pgsql_db_connect() -- 23:10:09.847 DEBUG [26030]: Database connection successful -- 23:10:09.847 INFO [26030]: _SERVER found -- 23:10:09.847 INFO [26030]: REMOTE_ADDR = 192.168.1.13 -- 23:10:09.847 INFO [26030]: SERVER_NAME = oameye.works.coregrade.com -- 23:10:09.847 INFO [26030]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=gd25vs31fblfdnmqo2p3aiqvh8leh4eb -- 23:10:09.847 INFO [26030]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:10:09.847 INFO [26030]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:10:09.858 INFO [26030]: COREGRADE is stopping... -- 23:10:09.858 DEBUG [26030]: Closing database connection -- 23:10:09.858 SQL [26030]: pgsql_close() -- 23:10:09.989 INFO [26030]: COREGRADE is starting... -- 23:10:09.990 INFO [26030]: Version from config: 1.0 -- 23:10:09.990 DEBUG [26030]: Connecting to database... -- 23:10:09.990 DEBUG [26030]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:10:09.990 SQL [26030]: pgsql_db_connect() -- 23:10:10.028 INFO [26043]: COREGRADE is starting... -- 23:10:10.028 INFO [26043]: Version from config: 1.0 -- 23:10:10.028 DEBUG [26043]: Connecting to database... -- 23:10:10.028 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:10:10.028 SQL [26043]: pgsql_db_connect() -- 23:10:09.994 DEBUG [26030]: Database connection successful -- 23:10:09.994 INFO [26030]: _SERVER found -- 23:10:09.994 INFO [26030]: REMOTE_ADDR = 192.168.1.13 -- 23:10:09.994 INFO [26030]: SERVER_NAME = oameye.works.coregrade.com -- 23:10:09.994 INFO [26030]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=gd25vs31fblfdnmqo2p3aiqvh8leh4eb -- 23:10:09.994 INFO [26030]: QUERY_STRING = /member/upload -- 23:10:09.994 INFO [26030]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:10:10.032 INFO [26030]: COREGRADE is stopping... -- 23:10:10.032 DEBUG [26030]: Closing database connection -- 23:10:10.032 SQL [26030]: pgsql_close() -- 23:10:10.032 DEBUG [26043]: Database connection successful -- 23:10:10.032 INFO [26043]: _SERVER found -- 23:10:10.032 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 23:10:10.032 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 23:10:10.032 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=gd25vs31fblfdnmqo2p3aiqvh8leh4eb -- 23:10:10.032 INFO [26043]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 23:10:10.032 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:10:10.044 INFO [26043]: COREGRADE is stopping... -- 23:10:10.044 DEBUG [26043]: Closing database connection -- 23:10:10.044 SQL [26043]: pgsql_close() -- 23:10:10.056 INFO [26031]: COREGRADE is starting... -- 23:10:10.057 INFO [26031]: Version from config: 1.0 -- 23:10:10.057 DEBUG [26031]: Connecting to database... -- 23:10:10.057 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:10:10.057 SQL [26031]: pgsql_db_connect() -- 23:10:10.060 DEBUG [26031]: Database connection successful -- 23:10:10.060 INFO [26031]: _SERVER found -- 23:10:10.060 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 23:10:10.060 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 23:10:10.060 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=gd25vs31fblfdnmqo2p3aiqvh8leh4eb -- 23:10:10.060 INFO [26031]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 23:10:10.060 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:10:10.072 INFO [26031]: COREGRADE is stopping... -- 23:10:10.072 DEBUG [26031]: Closing database connection -- 23:10:10.072 SQL [26031]: pgsql_close() -- 23:10:11.681 INFO [26031]: COREGRADE is starting... -- 23:10:11.681 INFO [26031]: Version from config: 1.0 -- 23:10:11.681 DEBUG [26031]: Connecting to database... -- 23:10:11.681 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:10:11.681 SQL [26031]: pgsql_db_connect() -- 23:10:11.685 DEBUG [26031]: Database connection successful -- 23:10:11.685 INFO [26031]: _SERVER found -- 23:10:11.685 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 23:10:11.685 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 23:10:11.685 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=gd25vs31fblfdnmqo2p3aiqvh8leh4eb -- 23:10:11.685 INFO [26031]: QUERY_STRING = /member/viewCardAddAction -- 23:10:11.685 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:10:11.716 INFO [26031]: COREGRADE is stopping... -- 23:10:11.717 DEBUG [26031]: Closing database connection -- 23:10:11.717 SQL [26031]: pgsql_close() -- 23:10:16.796 INFO [25980]: COREGRADE is starting... -- 23:10:16.796 INFO [25980]: Version from config: 1.0 -- 23:10:16.796 DEBUG [25980]: Connecting to database... -- 23:10:16.796 DEBUG [25980]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:10:16.796 SQL [25980]: pgsql_db_connect() -- 23:10:16.800 DEBUG [25980]: Database connection successful -- 23:10:16.800 INFO [25980]: _SERVER found -- 23:10:16.800 INFO [25980]: REMOTE_ADDR = 192.168.1.13 -- 23:10:16.800 INFO [25980]: SERVER_NAME = oameye.works.coregrade.com -- 23:10:16.800 INFO [25980]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=gd25vs31fblfdnmqo2p3aiqvh8leh4eb -- 23:10:16.800 INFO [25980]: QUERY_STRING = /member/addPageCards -- 23:10:16.800 INFO [25980]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:10:16.833 INFO [25980]: COREGRADE is stopping... -- 23:10:16.833 DEBUG [25980]: Closing database connection -- 23:10:16.833 SQL [25980]: pgsql_close() -- 23:20:24.531 INFO [25976]: COREGRADE is starting... -- 23:20:24.531 INFO [25976]: Version from config: 1.0 -- 23:20:24.531 DEBUG [25976]: Connecting to database... -- 23:20:24.531 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:20:24.531 SQL [25976]: pgsql_db_connect() -- 23:20:24.535 DEBUG [25976]: Database connection successful -- 23:20:24.535 INFO [25976]: _SERVER found -- 23:20:24.535 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 23:20:24.535 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 23:20:24.535 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=gd25vs31fblfdnmqo2p3aiqvh8leh4eb -- 23:20:24.535 INFO [25976]: QUERY_STRING = /member -- 23:20:24.535 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:20:24.581 INFO [25976]: COREGRADE is stopping... -- 23:20:24.581 DEBUG [25976]: Closing database connection -- 23:20:24.581 SQL [25976]: pgsql_close() -- 23:20:24.733 INFO [25976]: COREGRADE is starting... -- 23:20:24.734 INFO [25976]: Version from config: 1.0 -- 23:20:24.734 DEBUG [25976]: Connecting to database... -- 23:20:24.734 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:20:24.734 SQL [25976]: pgsql_db_connect() -- 23:20:24.738 DEBUG [25976]: Database connection successful -- 23:20:24.738 INFO [25976]: _SERVER found -- 23:20:24.738 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 23:20:24.738 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 23:20:24.738 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=l3ouuov88k3he5thj7664nrlikafhgvh -- 23:20:24.738 INFO [25976]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:20:24.738 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:20:24.749 INFO [25976]: COREGRADE is stopping... -- 23:20:24.749 DEBUG [25976]: Closing database connection -- 23:20:24.749 SQL [25976]: pgsql_close() -- 23:20:24.887 INFO [25976]: COREGRADE is starting... -- 23:20:24.887 INFO [25976]: Version from config: 1.0 -- 23:20:24.887 DEBUG [25976]: Connecting to database... -- 23:20:24.887 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:20:24.887 SQL [25976]: pgsql_db_connect() -- 23:20:24.894 INFO [25983]: COREGRADE is starting... -- 23:20:24.895 INFO [25983]: Version from config: 1.0 -- 23:20:24.895 DEBUG [25983]: Connecting to database... -- 23:20:24.895 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:20:24.895 SQL [25983]: pgsql_db_connect() -- 23:20:24.891 DEBUG [25976]: Database connection successful -- 23:20:24.891 INFO [25976]: _SERVER found -- 23:20:24.891 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 23:20:24.891 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 23:20:24.891 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=l3ouuov88k3he5thj7664nrlikafhgvh -- 23:20:24.891 INFO [25976]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 23:20:24.891 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:20:24.903 INFO [25976]: COREGRADE is stopping... -- 23:20:24.903 DEBUG [25976]: Closing database connection -- 23:20:24.903 SQL [25976]: pgsql_close() -- 23:20:24.899 DEBUG [25983]: Database connection successful -- 23:20:24.899 INFO [25983]: _SERVER found -- 23:20:24.899 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 23:20:24.899 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 23:20:24.899 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=l3ouuov88k3he5thj7664nrlikafhgvh -- 23:20:24.899 INFO [25983]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 23:20:24.899 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:20:24.912 INFO [25983]: COREGRADE is stopping... -- 23:20:24.912 DEBUG [25983]: Closing database connection -- 23:20:24.912 SQL [25983]: pgsql_close() -- 23:20:25.716 INFO [25983]: COREGRADE is starting... -- 23:20:25.716 INFO [25983]: Version from config: 1.0 -- 23:20:25.716 DEBUG [25983]: Connecting to database... -- 23:20:25.716 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:20:25.716 SQL [25983]: pgsql_db_connect() -- 23:20:25.720 DEBUG [25983]: Database connection successful -- 23:20:25.720 INFO [25983]: _SERVER found -- 23:20:25.720 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 23:20:25.720 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 23:20:25.720 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=l3ouuov88k3he5thj7664nrlikafhgvh -- 23:20:25.720 INFO [25983]: QUERY_STRING = /member/page -- 23:20:25.720 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:20:25.768 INFO [25983]: COREGRADE is stopping... -- 23:20:25.768 DEBUG [25983]: Closing database connection -- 23:20:25.768 SQL [25983]: pgsql_close() -- 23:20:25.916 INFO [25983]: COREGRADE is starting... -- 23:20:25.916 INFO [25983]: Version from config: 1.0 -- 23:20:25.916 DEBUG [25983]: Connecting to database... -- 23:20:25.916 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:20:25.916 SQL [25983]: pgsql_db_connect() -- 23:20:25.920 DEBUG [25983]: Database connection successful -- 23:20:25.920 INFO [25983]: _SERVER found -- 23:20:25.920 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 23:20:25.920 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 23:20:25.920 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=l3ouuov88k3he5thj7664nrlikafhgvh -- 23:20:25.920 INFO [25983]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:20:25.920 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:20:25.932 INFO [25983]: COREGRADE is stopping... -- 23:20:25.932 DEBUG [25983]: Closing database connection -- 23:20:25.932 SQL [25983]: pgsql_close() -- 23:20:26.063 INFO [25983]: COREGRADE is starting... -- 23:20:26.063 INFO [25983]: Version from config: 1.0 -- 23:20:26.063 DEBUG [25983]: Connecting to database... -- 23:20:26.063 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:20:26.063 SQL [25983]: pgsql_db_connect() -- 23:20:26.085 INFO [25976]: COREGRADE is starting... -- 23:20:26.085 INFO [25976]: Version from config: 1.0 -- 23:20:26.085 DEBUG [25976]: Connecting to database... -- 23:20:26.085 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:20:26.085 SQL [25976]: pgsql_db_connect() -- 23:20:26.089 DEBUG [25976]: Database connection successful -- 23:20:26.089 INFO [25976]: _SERVER found -- 23:20:26.089 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 23:20:26.089 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 23:20:26.089 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=l3ouuov88k3he5thj7664nrlikafhgvh -- 23:20:26.089 INFO [25976]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 23:20:26.089 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:20:26.100 INFO [25976]: COREGRADE is stopping... -- 23:20:26.100 DEBUG [25976]: Closing database connection -- 23:20:26.100 SQL [25976]: pgsql_close() -- 23:20:26.067 DEBUG [25983]: Database connection successful -- 23:20:26.067 INFO [25983]: _SERVER found -- 23:20:26.067 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 23:20:26.067 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 23:20:26.067 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=l3ouuov88k3he5thj7664nrlikafhgvh -- 23:20:26.067 INFO [25983]: QUERY_STRING = /member/upload -- 23:20:26.067 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:20:26.103 INFO [25983]: COREGRADE is stopping... -- 23:20:26.103 DEBUG [25983]: Closing database connection -- 23:20:26.103 SQL [25983]: pgsql_close() -- 23:20:26.112 INFO [26029]: COREGRADE is starting... -- 23:20:26.113 INFO [26029]: Version from config: 1.0 -- 23:20:26.113 DEBUG [26029]: Connecting to database... -- 23:20:26.113 DEBUG [26029]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:20:26.113 SQL [26029]: pgsql_db_connect() -- 23:20:26.116 DEBUG [26029]: Database connection successful -- 23:20:26.116 INFO [26029]: _SERVER found -- 23:20:26.116 INFO [26029]: REMOTE_ADDR = 192.168.1.13 -- 23:20:26.116 INFO [26029]: SERVER_NAME = oameye.works.coregrade.com -- 23:20:26.116 INFO [26029]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=l3ouuov88k3he5thj7664nrlikafhgvh -- 23:20:26.116 INFO [26029]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 23:20:26.116 INFO [26029]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:20:26.128 INFO [26029]: COREGRADE is stopping... -- 23:20:26.128 DEBUG [26029]: Closing database connection -- 23:20:26.128 SQL [26029]: pgsql_close() -- 23:20:28.797 INFO [26029]: COREGRADE is starting... -- 23:20:28.797 INFO [26029]: Version from config: 1.0 -- 23:20:28.797 DEBUG [26029]: Connecting to database... -- 23:20:28.797 DEBUG [26029]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:20:28.797 SQL [26029]: pgsql_db_connect() -- 23:20:28.801 DEBUG [26029]: Database connection successful -- 23:20:28.801 INFO [26029]: _SERVER found -- 23:20:28.801 INFO [26029]: REMOTE_ADDR = 192.168.1.13 -- 23:20:28.801 INFO [26029]: SERVER_NAME = oameye.works.coregrade.com -- 23:20:28.801 INFO [26029]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=l3ouuov88k3he5thj7664nrlikafhgvh -- 23:20:28.801 INFO [26029]: QUERY_STRING = /member/viewCardAddAction -- 23:20:28.801 INFO [26029]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:20:28.834 INFO [26029]: COREGRADE is stopping... -- 23:20:28.834 DEBUG [26029]: Closing database connection -- 23:20:28.834 SQL [26029]: pgsql_close() -- 23:20:34.251 INFO [25979]: COREGRADE is starting... -- 23:20:34.251 INFO [25979]: Version from config: 1.0 -- 23:20:34.251 DEBUG [25979]: Connecting to database... -- 23:20:34.251 DEBUG [25979]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:20:34.251 SQL [25979]: pgsql_db_connect() -- 23:20:34.255 DEBUG [25979]: Database connection successful -- 23:20:34.255 INFO [25979]: _SERVER found -- 23:20:34.255 INFO [25979]: REMOTE_ADDR = 192.168.1.13 -- 23:20:34.255 INFO [25979]: SERVER_NAME = oameye.works.coregrade.com -- 23:20:34.255 INFO [25979]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=l3ouuov88k3he5thj7664nrlikafhgvh -- 23:20:34.255 INFO [25979]: QUERY_STRING = /member/addPageCards -- 23:20:34.255 INFO [25979]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:20:34.288 INFO [25979]: COREGRADE is stopping... -- 23:20:34.288 DEBUG [25979]: Closing database connection -- 23:20:34.288 SQL [25979]: pgsql_close() -- 23:25:15.535 INFO [25977]: COREGRADE is starting... -- 23:25:15.535 INFO [25977]: Version from config: 1.0 -- 23:25:15.535 DEBUG [25977]: Connecting to database... -- 23:25:15.535 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:25:15.535 SQL [25977]: pgsql_db_connect() -- 23:25:15.539 DEBUG [25977]: Database connection successful -- 23:25:15.539 INFO [25977]: _SERVER found -- 23:25:15.539 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 23:25:15.539 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 23:25:15.539 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=l3ouuov88k3he5thj7664nrlikafhgvh -- 23:25:15.539 INFO [25977]: QUERY_STRING = /member/page -- 23:25:15.539 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:25:15.585 INFO [25977]: COREGRADE is stopping... -- 23:25:15.585 DEBUG [25977]: Closing database connection -- 23:25:15.585 SQL [25977]: pgsql_close() -- 23:25:15.725 INFO [25977]: COREGRADE is starting... -- 23:25:15.725 INFO [25977]: Version from config: 1.0 -- 23:25:15.725 DEBUG [25977]: Connecting to database... -- 23:25:15.725 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:25:15.725 SQL [25977]: pgsql_db_connect() -- 23:25:15.729 DEBUG [25977]: Database connection successful -- 23:25:15.729 INFO [25977]: _SERVER found -- 23:25:15.729 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 23:25:15.729 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 23:25:15.729 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=l3ouuov88k3he5thj7664nrlikafhgvh -- 23:25:15.729 INFO [25977]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:25:15.729 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:25:15.741 INFO [25977]: COREGRADE is stopping... -- 23:25:15.741 DEBUG [25977]: Closing database connection -- 23:25:15.741 SQL [25977]: pgsql_close() -- 23:25:15.957 INFO [25977]: COREGRADE is starting... -- 23:25:15.957 INFO [25977]: Version from config: 1.0 -- 23:25:15.957 DEBUG [25977]: Connecting to database... -- 23:25:15.957 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:25:15.957 SQL [25977]: pgsql_db_connect() -- 23:25:15.964 INFO [25978]: COREGRADE is starting... -- 23:25:15.964 INFO [25978]: Version from config: 1.0 -- 23:25:15.964 DEBUG [25978]: Connecting to database... -- 23:25:15.964 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:25:15.964 SQL [25978]: pgsql_db_connect() -- 23:25:15.961 DEBUG [25977]: Database connection successful -- 23:25:15.961 INFO [25977]: _SERVER found -- 23:25:15.961 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 23:25:15.961 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 23:25:15.961 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=l3ouuov88k3he5thj7664nrlikafhgvh -- 23:25:15.961 INFO [25977]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 23:25:15.961 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:25:15.973 INFO [25977]: COREGRADE is stopping... -- 23:25:15.973 DEBUG [25977]: Closing database connection -- 23:25:15.973 SQL [25977]: pgsql_close() -- 23:25:15.968 DEBUG [25978]: Database connection successful -- 23:25:15.968 INFO [25978]: _SERVER found -- 23:25:15.968 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 23:25:15.968 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 23:25:15.968 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=l3ouuov88k3he5thj7664nrlikafhgvh -- 23:25:15.968 INFO [25978]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 23:25:15.968 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:25:15.980 INFO [25978]: COREGRADE is stopping... -- 23:25:15.980 DEBUG [25978]: Closing database connection -- 23:25:15.980 SQL [25978]: pgsql_close() -- 23:25:18.425 INFO [25978]: COREGRADE is starting... -- 23:25:18.425 INFO [25978]: Version from config: 1.0 -- 23:25:18.425 DEBUG [25978]: Connecting to database... -- 23:25:18.425 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:25:18.425 SQL [25978]: pgsql_db_connect() -- 23:25:18.430 DEBUG [25978]: Database connection successful -- 23:25:18.430 INFO [25978]: _SERVER found -- 23:25:18.430 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 23:25:18.430 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 23:25:18.430 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=l3ouuov88k3he5thj7664nrlikafhgvh -- 23:25:18.430 INFO [25978]: QUERY_STRING = /member/viewCardAddAction -- 23:25:18.430 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:25:18.462 INFO [25978]: COREGRADE is stopping... -- 23:25:18.462 DEBUG [25978]: Closing database connection -- 23:25:18.462 SQL [25978]: pgsql_close() -- 23:25:18.486 INFO [25978]: COREGRADE is starting... -- 23:25:18.486 INFO [25978]: Version from config: 1.0 -- 23:25:18.486 DEBUG [25978]: Connecting to database... -- 23:25:18.486 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:25:18.486 SQL [25978]: pgsql_db_connect() -- 23:25:18.490 DEBUG [25978]: Database connection successful -- 23:25:18.490 INFO [25978]: _SERVER found -- 23:25:18.490 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 23:25:18.490 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 23:25:18.490 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=l3ouuov88k3he5thj7664nrlikafhgvh -- 23:25:18.490 INFO [25978]: QUERY_STRING = /member/upload -- 23:25:18.490 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:25:18.529 INFO [25978]: COREGRADE is stopping... -- 23:25:18.529 DEBUG [25978]: Closing database connection -- 23:25:18.529 SQL [25978]: pgsql_close() -- 23:25:24.965 INFO [26043]: COREGRADE is starting... -- 23:25:24.965 INFO [26043]: Version from config: 1.0 -- 23:25:24.965 DEBUG [26043]: Connecting to database... -- 23:25:24.965 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:25:24.965 SQL [26043]: pgsql_db_connect() -- 23:25:24.969 DEBUG [26043]: Database connection successful -- 23:25:24.969 INFO [26043]: _SERVER found -- 23:25:24.969 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 23:25:24.969 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 23:25:24.969 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=l3ouuov88k3he5thj7664nrlikafhgvh -- 23:25:24.969 INFO [26043]: QUERY_STRING = /member/addPageCards -- 23:25:24.969 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:25:25.002 INFO [26043]: COREGRADE is stopping... -- 23:25:25.002 DEBUG [26043]: Closing database connection -- 23:25:25.002 SQL [26043]: pgsql_close() -- 23:25:25.036 INFO [26043]: COREGRADE is starting... -- 23:25:25.036 INFO [26043]: Version from config: 1.0 -- 23:25:25.036 DEBUG [26043]: Connecting to database... -- 23:25:25.036 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:25:25.036 SQL [26043]: pgsql_db_connect() -- 23:25:25.040 DEBUG [26043]: Database connection successful -- 23:25:25.040 INFO [26043]: _SERVER found -- 23:25:25.040 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 23:25:25.040 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 23:25:25.040 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=l3ouuov88k3he5thj7664nrlikafhgvh -- 23:25:25.040 INFO [26043]: QUERY_STRING = /member/upload -- 23:25:25.040 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:25:25.072 INFO [26043]: COREGRADE is stopping... -- 23:25:25.072 DEBUG [26043]: Closing database connection -- 23:25:25.072 SQL [26043]: pgsql_close() -- 23:26:15.424 INFO [26030]: COREGRADE is starting... -- 23:26:15.424 INFO [26030]: Version from config: 1.0 -- 23:26:15.424 DEBUG [26030]: Connecting to database... -- 23:26:15.424 DEBUG [26030]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:26:15.424 SQL [26030]: pgsql_db_connect() -- 23:26:15.428 DEBUG [26030]: Database connection successful -- 23:26:15.428 INFO [26030]: _SERVER found -- 23:26:15.428 INFO [26030]: REMOTE_ADDR = 192.168.1.13 -- 23:26:15.428 INFO [26030]: SERVER_NAME = oameye.works.coregrade.com -- 23:26:15.428 INFO [26030]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=l3ouuov88k3he5thj7664nrlikafhgvh -- 23:26:15.428 INFO [26030]: QUERY_STRING = /member/page -- 23:26:15.428 INFO [26030]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:26:15.472 INFO [26030]: COREGRADE is stopping... -- 23:26:15.472 DEBUG [26030]: Closing database connection -- 23:26:15.472 SQL [26030]: pgsql_close() -- 23:26:15.654 INFO [26030]: COREGRADE is starting... -- 23:26:15.654 INFO [26030]: Version from config: 1.0 -- 23:26:15.654 DEBUG [26030]: Connecting to database... -- 23:26:15.654 DEBUG [26030]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:26:15.654 SQL [26030]: pgsql_db_connect() -- 23:26:15.658 DEBUG [26030]: Database connection successful -- 23:26:15.658 INFO [26030]: _SERVER found -- 23:26:15.658 INFO [26030]: REMOTE_ADDR = 192.168.1.13 -- 23:26:15.658 INFO [26030]: SERVER_NAME = oameye.works.coregrade.com -- 23:26:15.658 INFO [26030]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=n5hahrda5av9fr09ttrm3bu508utnnrp -- 23:26:15.658 INFO [26030]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 23:26:15.658 INFO [26030]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:26:15.669 INFO [26030]: COREGRADE is stopping... -- 23:26:15.669 DEBUG [26030]: Closing database connection -- 23:26:15.669 SQL [26030]: pgsql_close() -- 23:26:15.906 INFO [26030]: COREGRADE is starting... -- 23:26:15.906 INFO [26030]: Version from config: 1.0 -- 23:26:15.906 DEBUG [26030]: Connecting to database... -- 23:26:15.906 DEBUG [26030]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:26:15.906 SQL [26030]: pgsql_db_connect() -- 23:26:15.918 INFO [26031]: COREGRADE is starting... -- 23:26:15.919 INFO [26031]: Version from config: 1.0 -- 23:26:15.919 DEBUG [26031]: Connecting to database... -- 23:26:15.919 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:26:15.919 SQL [26031]: pgsql_db_connect() -- 23:26:15.910 DEBUG [26030]: Database connection successful -- 23:26:15.910 INFO [26030]: _SERVER found -- 23:26:15.910 INFO [26030]: REMOTE_ADDR = 192.168.1.13 -- 23:26:15.910 INFO [26030]: SERVER_NAME = oameye.works.coregrade.com -- 23:26:15.910 INFO [26030]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=n5hahrda5av9fr09ttrm3bu508utnnrp -- 23:26:15.910 INFO [26030]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 23:26:15.910 INFO [26030]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:26:15.921 INFO [26030]: COREGRADE is stopping... -- 23:26:15.921 DEBUG [26030]: Closing database connection -- 23:26:15.921 SQL [26030]: pgsql_close() -- 23:26:15.922 DEBUG [26031]: Database connection successful -- 23:26:15.922 INFO [26031]: _SERVER found -- 23:26:15.923 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 23:26:15.923 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 23:26:15.923 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=n5hahrda5av9fr09ttrm3bu508utnnrp -- 23:26:15.923 INFO [26031]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 23:26:15.923 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:26:15.934 INFO [26031]: COREGRADE is stopping... -- 23:26:15.934 DEBUG [26031]: Closing database connection -- 23:26:15.934 SQL [26031]: pgsql_close() -- 23:26:18.448 INFO [26031]: COREGRADE is starting... -- 23:26:18.448 INFO [26031]: Version from config: 1.0 -- 23:26:18.448 DEBUG [26031]: Connecting to database... -- 23:26:18.448 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:26:18.448 SQL [26031]: pgsql_db_connect() -- 23:26:18.452 DEBUG [26031]: Database connection successful -- 23:26:18.452 INFO [26031]: _SERVER found -- 23:26:18.452 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 23:26:18.452 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 23:26:18.452 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=n5hahrda5av9fr09ttrm3bu508utnnrp -- 23:26:18.452 INFO [26031]: QUERY_STRING = /member/viewCardAddAction -- 23:26:18.452 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:26:18.484 INFO [26031]: COREGRADE is stopping... -- 23:26:18.484 DEBUG [26031]: Closing database connection -- 23:26:18.484 SQL [26031]: pgsql_close() -- 23:26:25.899 INFO [25980]: COREGRADE is starting... -- 23:26:25.899 INFO [25980]: Version from config: 1.0 -- 23:26:25.899 DEBUG [25980]: Connecting to database... -- 23:26:25.899 DEBUG [25980]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:26:25.899 SQL [25980]: pgsql_db_connect() -- 23:26:25.903 DEBUG [25980]: Database connection successful -- 23:26:25.903 INFO [25980]: _SERVER found -- 23:26:25.903 INFO [25980]: REMOTE_ADDR = 192.168.1.13 -- 23:26:25.903 INFO [25980]: SERVER_NAME = oameye.works.coregrade.com -- 23:26:25.903 INFO [25980]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=n5hahrda5av9fr09ttrm3bu508utnnrp -- 23:26:25.903 INFO [25980]: QUERY_STRING = /member/addPageCards -- 23:26:25.903 INFO [25980]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:26:25.936 INFO [25980]: COREGRADE is stopping... -- 23:26:25.936 DEBUG [25980]: Closing database connection -- 23:26:25.936 SQL [25980]: pgsql_close() -- 23:26:25.986 INFO [25980]: COREGRADE is starting... -- 23:26:25.986 INFO [25980]: Version from config: 1.0 -- 23:26:25.986 DEBUG [25980]: Connecting to database... -- 23:26:25.986 DEBUG [25980]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:26:25.986 SQL [25980]: pgsql_db_connect() -- 23:26:25.990 DEBUG [25980]: Database connection successful -- 23:26:25.990 INFO [25980]: _SERVER found -- 23:26:25.990 INFO [25980]: REMOTE_ADDR = 192.168.1.13 -- 23:26:25.990 INFO [25980]: SERVER_NAME = oameye.works.coregrade.com -- 23:26:25.990 INFO [25980]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=n5hahrda5av9fr09ttrm3bu508utnnrp -- 23:26:25.990 INFO [25980]: QUERY_STRING = /member/upload -- 23:26:25.990 INFO [25980]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:26:26.022 INFO [25980]: COREGRADE is stopping... -- 23:26:26.022 DEBUG [25980]: Closing database connection -- 23:26:26.022 SQL [25980]: pgsql_close() -- 23:26:34.529 INFO [25976]: COREGRADE is starting... -- 23:26:34.529 INFO [25976]: Version from config: 1.0 -- 23:26:34.529 DEBUG [25976]: Connecting to database... -- 23:26:34.529 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:26:34.529 SQL [25976]: pgsql_db_connect() -- 23:26:34.537 INFO [25983]: COREGRADE is starting... -- 23:26:34.537 INFO [25983]: Version from config: 1.0 -- 23:26:34.537 DEBUG [25983]: Connecting to database... -- 23:26:34.537 DEBUG [25983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:26:34.537 SQL [25983]: pgsql_db_connect() -- 23:26:34.533 DEBUG [25976]: Database connection successful -- 23:26:34.533 INFO [25976]: _SERVER found -- 23:26:34.533 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 23:26:34.533 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 23:26:34.533 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=n5hahrda5av9fr09ttrm3bu508utnnrp -- 23:26:34.533 INFO [25976]: QUERY_STRING = /member/upload -- 23:26:34.533 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:26:34.569 INFO [25976]: COREGRADE is stopping... -- 23:26:34.569 DEBUG [25976]: Closing database connection -- 23:26:34.569 SQL [25976]: pgsql_close() -- 23:26:34.541 DEBUG [25983]: Database connection successful -- 23:26:34.541 INFO [25983]: _SERVER found -- 23:26:34.541 INFO [25983]: REMOTE_ADDR = 192.168.1.13 -- 23:26:34.541 INFO [25983]: SERVER_NAME = oameye.works.coregrade.com -- 23:26:34.541 INFO [25983]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=n5hahrda5av9fr09ttrm3bu508utnnrp -- 23:26:34.541 INFO [25983]: QUERY_STRING = /member/upload -- 23:26:34.541 INFO [25983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:26:34.578 INFO [25983]: COREGRADE is stopping... -- 23:26:34.578 DEBUG [25983]: Closing database connection -- 23:26:34.578 SQL [25983]: pgsql_close() -- 23:26:43.113 INFO [25977]: COREGRADE is starting... -- 23:26:43.113 INFO [25977]: Version from config: 1.0 -- 23:26:43.113 DEBUG [25977]: Connecting to database... -- 23:26:43.113 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:26:43.113 SQL [25977]: pgsql_db_connect() -- 23:26:43.117 DEBUG [25977]: Database connection successful -- 23:26:43.117 INFO [25977]: _SERVER found -- 23:26:43.117 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 23:26:43.117 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 23:26:43.117 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=n5hahrda5av9fr09ttrm3bu508utnnrp -- 23:26:43.117 INFO [25977]: QUERY_STRING = /member/upload -- 23:26:43.117 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:26:43.250 INFO [25977]: COREGRADE is stopping... -- 23:26:43.250 DEBUG [25977]: Closing database connection -- 23:26:43.250 SQL [25977]: pgsql_close() -- 23:26:44.203 INFO [25979]: COREGRADE is starting... -- 23:26:44.203 INFO [25979]: Version from config: 1.0 -- 23:26:44.203 DEBUG [25979]: Connecting to database... -- 23:26:44.203 DEBUG [25979]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:26:44.203 SQL [25979]: pgsql_db_connect() -- 23:26:44.207 DEBUG [25979]: Database connection successful -- 23:26:44.207 INFO [25979]: _SERVER found -- 23:26:44.207 INFO [25979]: REMOTE_ADDR = 192.168.1.13 -- 23:26:44.207 INFO [25979]: SERVER_NAME = oameye.works.coregrade.com -- 23:26:44.207 INFO [25979]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=n5hahrda5av9fr09ttrm3bu508utnnrp -- 23:26:44.207 INFO [25979]: QUERY_STRING = /member/upload -- 23:26:44.207 INFO [25979]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:26:44.354 INFO [25979]: COREGRADE is stopping... -- 23:26:44.354 DEBUG [25979]: Closing database connection -- 23:26:44.354 SQL [25979]: pgsql_close() -- 23:26:44.544 INFO [25979]: COREGRADE is starting... -- 23:26:44.544 INFO [25979]: Version from config: 1.0 -- 23:26:44.544 DEBUG [25979]: Connecting to database... -- 23:26:44.544 DEBUG [25979]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:26:44.544 SQL [25979]: pgsql_db_connect() -- 23:26:44.548 DEBUG [25979]: Database connection successful -- 23:26:44.548 INFO [25979]: _SERVER found -- 23:26:44.548 INFO [25979]: REMOTE_ADDR = 192.168.1.13 -- 23:26:44.548 INFO [25979]: SERVER_NAME = oameye.works.coregrade.com -- 23:26:44.548 INFO [25979]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=n5hahrda5av9fr09ttrm3bu508utnnrp -- 23:26:44.548 INFO [25979]: QUERY_STRING = /member/upload -- 23:26:44.548 INFO [25979]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:26:44.579 INFO [25979]: COREGRADE is stopping... -- 23:26:44.579 DEBUG [25979]: Closing database connection -- 23:26:44.579 SQL [25979]: pgsql_close() -- 23:26:54.507 INFO [25978]: COREGRADE is starting... -- 23:26:54.507 INFO [25978]: Version from config: 1.0 -- 23:26:54.507 DEBUG [25978]: Connecting to database... -- 23:26:54.507 DEBUG [25978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:26:54.507 SQL [25978]: pgsql_db_connect() -- 23:26:54.528 INFO [26029]: COREGRADE is starting... -- 23:26:54.528 INFO [26029]: Version from config: 1.0 -- 23:26:54.528 DEBUG [26029]: Connecting to database... -- 23:26:54.528 DEBUG [26029]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:26:54.528 SQL [26029]: pgsql_db_connect() -- 23:26:54.511 DEBUG [25978]: Database connection successful -- 23:26:54.511 INFO [25978]: _SERVER found -- 23:26:54.511 INFO [25978]: REMOTE_ADDR = 192.168.1.13 -- 23:26:54.511 INFO [25978]: SERVER_NAME = oameye.works.coregrade.com -- 23:26:54.511 INFO [25978]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=n5hahrda5av9fr09ttrm3bu508utnnrp -- 23:26:54.511 INFO [25978]: QUERY_STRING = /member/upload -- 23:26:54.511 INFO [25978]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:26:54.544 INFO [25978]: COREGRADE is stopping... -- 23:26:54.544 DEBUG [25978]: Closing database connection -- 23:26:54.544 SQL [25978]: pgsql_close() -- 23:26:54.532 DEBUG [26029]: Database connection successful -- 23:26:54.532 INFO [26029]: _SERVER found -- 23:26:54.532 INFO [26029]: REMOTE_ADDR = 192.168.1.13 -- 23:26:54.532 INFO [26029]: SERVER_NAME = oameye.works.coregrade.com -- 23:26:54.532 INFO [26029]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=n5hahrda5av9fr09ttrm3bu508utnnrp -- 23:26:54.532 INFO [26029]: QUERY_STRING = /member/upload -- 23:26:54.532 INFO [26029]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:26:54.563 INFO [26029]: COREGRADE is stopping... -- 23:26:54.563 DEBUG [26029]: Closing database connection -- 23:26:54.563 SQL [26029]: pgsql_close() -- 23:26:57.322 INFO [25980]: COREGRADE is starting... -- 23:26:57.323 INFO [25980]: Version from config: 1.0 -- 23:26:57.323 DEBUG [25980]: Connecting to database... -- 23:26:57.323 DEBUG [25980]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:26:57.323 SQL [25980]: pgsql_db_connect() -- 23:26:57.327 DEBUG [25980]: Database connection successful -- 23:26:57.327 INFO [25980]: _SERVER found -- 23:26:57.327 INFO [25980]: REMOTE_ADDR = 192.168.1.13 -- 23:26:57.327 INFO [25980]: SERVER_NAME = oameye.works.coregrade.com -- 23:26:57.327 INFO [25980]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=n5hahrda5av9fr09ttrm3bu508utnnrp -- 23:26:57.327 INFO [25980]: QUERY_STRING = /member/upload -- 23:26:57.327 INFO [25980]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:26:57.360 INFO [25980]: COREGRADE is stopping... -- 23:26:57.360 DEBUG [25980]: Closing database connection -- 23:26:57.360 SQL [25980]: pgsql_close() -- 23:27:03.603 INFO [25977]: COREGRADE is starting... -- 23:27:03.603 INFO [25977]: Version from config: 1.0 -- 23:27:03.603 DEBUG [25977]: Connecting to database... -- 23:27:03.603 DEBUG [25977]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:03.603 SQL [25977]: pgsql_db_connect() -- 23:27:03.607 DEBUG [25977]: Database connection successful -- 23:27:03.607 INFO [25977]: _SERVER found -- 23:27:03.607 INFO [25977]: REMOTE_ADDR = 192.168.1.13 -- 23:27:03.607 INFO [25977]: SERVER_NAME = oameye.works.coregrade.com -- 23:27:03.607 INFO [25977]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=n5hahrda5av9fr09ttrm3bu508utnnrp -- 23:27:03.607 INFO [25977]: QUERY_STRING = /member/upload -- 23:27:03.607 INFO [25977]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:27:03.646 INFO [25977]: COREGRADE is stopping... -- 23:27:03.646 DEBUG [25977]: Closing database connection -- 23:27:03.646 SQL [25977]: pgsql_close() -- 23:27:05.836 INFO [27594]: COREGRADE is starting... -- 23:27:05.836 INFO [27594]: Version from config: 1.0 -- 23:27:05.836 DEBUG [27594]: Connecting to database... -- 23:27:05.836 DEBUG [27594]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:05.836 SQL [27594]: pgsql_db_connect() -- 23:27:05.840 DEBUG [27594]: Database connection successful -- 23:27:05.840 INFO [27594]: _SERVER found -- 23:27:05.840 INFO [27594]: REMOTE_ADDR = 192.168.1.13 -- 23:27:05.840 INFO [27594]: SERVER_NAME = oameye.works.coregrade.com -- 23:27:05.840 INFO [27594]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=n5hahrda5av9fr09ttrm3bu508utnnrp -- 23:27:05.840 INFO [27594]: QUERY_STRING = /member/upload -- 23:27:05.840 INFO [27594]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:27:05.885 INFO [27594]: COREGRADE is stopping... -- 23:27:05.886 DEBUG [27594]: Closing database connection -- 23:27:05.886 SQL [27594]: pgsql_close() -- 23:27:12.982 INFO [26031]: COREGRADE is starting... -- 23:27:12.982 INFO [26031]: Version from config: 1.0 -- 23:27:12.982 DEBUG [26031]: Connecting to database... -- 23:27:12.982 DEBUG [26031]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:12.982 SQL [26031]: pgsql_db_connect() -- 23:27:13.089 INFO [26030]: COREGRADE is starting... -- 23:27:13.089 INFO [26030]: Version from config: 1.0 -- 23:27:13.089 DEBUG [26030]: Connecting to database... -- 23:27:13.089 DEBUG [26030]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:13.089 SQL [26030]: pgsql_db_connect() -- 23:27:12.986 DEBUG [26031]: Database connection successful -- 23:27:12.986 INFO [26031]: _SERVER found -- 23:27:12.986 INFO [26031]: REMOTE_ADDR = 192.168.1.13 -- 23:27:12.986 INFO [26031]: SERVER_NAME = oameye.works.coregrade.com -- 23:27:12.986 INFO [26031]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=n5hahrda5av9fr09ttrm3bu508utnnrp -- 23:27:12.986 INFO [26031]: QUERY_STRING = /member/upload -- 23:27:12.986 INFO [26031]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:27:13.475 INFO [26031]: COREGRADE is stopping... -- 23:27:13.475 DEBUG [26031]: Closing database connection -- 23:27:13.475 SQL [26031]: pgsql_close() -- 23:27:13.094 DEBUG [26030]: Database connection successful -- 23:27:13.094 INFO [26030]: _SERVER found -- 23:27:13.094 INFO [26030]: REMOTE_ADDR = 192.168.1.13 -- 23:27:13.094 INFO [26030]: SERVER_NAME = oameye.works.coregrade.com -- 23:27:13.094 INFO [26030]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=n5hahrda5av9fr09ttrm3bu508utnnrp -- 23:27:13.094 INFO [26030]: QUERY_STRING = /member/upload -- 23:27:13.094 INFO [26030]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:27:13.587 INFO [26030]: COREGRADE is stopping... -- 23:27:13.587 DEBUG [26030]: Closing database connection -- 23:27:13.587 SQL [26030]: pgsql_close() -- 23:27:13.671 INFO [26030]: COREGRADE is starting... -- 23:27:13.671 INFO [26030]: Version from config: 1.0 -- 23:27:13.671 DEBUG [26030]: Connecting to database... -- 23:27:13.671 DEBUG [26030]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:13.671 SQL [26030]: pgsql_db_connect() -- 23:27:13.675 DEBUG [26030]: Database connection successful -- 23:27:13.675 INFO [26030]: _SERVER found -- 23:27:13.675 INFO [26030]: REMOTE_ADDR = 192.168.1.13 -- 23:27:13.675 INFO [26030]: SERVER_NAME = oameye.works.coregrade.com -- 23:27:13.675 INFO [26030]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=n5hahrda5av9fr09ttrm3bu508utnnrp -- 23:27:13.675 INFO [26030]: QUERY_STRING = /member/upload -- 23:27:13.675 INFO [26030]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:27:13.706 INFO [26030]: COREGRADE is stopping... -- 23:27:13.706 DEBUG [26030]: Closing database connection -- 23:27:13.706 SQL [26030]: pgsql_close() -- 23:27:13.840 INFO [26043]: COREGRADE is starting... -- 23:27:13.840 INFO [26043]: Version from config: 1.0 -- 23:27:13.840 DEBUG [26043]: Connecting to database... -- 23:27:13.840 DEBUG [26043]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:13.840 SQL [26043]: pgsql_db_connect() -- 23:27:13.844 DEBUG [26043]: Database connection successful -- 23:27:13.844 INFO [26043]: _SERVER found -- 23:27:13.844 INFO [26043]: REMOTE_ADDR = 192.168.1.13 -- 23:27:13.844 INFO [26043]: SERVER_NAME = oameye.works.coregrade.com -- 23:27:13.844 INFO [26043]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=n5hahrda5av9fr09ttrm3bu508utnnrp -- 23:27:13.844 INFO [26043]: QUERY_STRING = /member/upload -- 23:27:13.844 INFO [26043]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:27:14.029 INFO [26043]: COREGRADE is stopping... -- 23:27:14.029 DEBUG [26043]: Closing database connection -- 23:27:14.029 SQL [26043]: pgsql_close() -- 23:27:14.709 INFO [25976]: COREGRADE is starting... -- 23:27:14.709 INFO [25976]: Version from config: 1.0 -- 23:27:14.709 DEBUG [25976]: Connecting to database... -- 23:27:14.709 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:14.709 SQL [25976]: pgsql_db_connect() -- 23:27:14.713 DEBUG [25976]: Database connection successful -- 23:27:14.713 INFO [25976]: _SERVER found -- 23:27:14.713 INFO [25976]: REMOTE_ADDR = 192.168.1.13 -- 23:27:14.713 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 23:27:14.713 INFO [25976]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=n5hahrda5av9fr09ttrm3bu508utnnrp -- 23:27:14.713 INFO [25976]: QUERY_STRING = /member/upload -- 23:27:14.713 INFO [25976]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:27:14.885 INFO [25976]: COREGRADE is stopping... -- 23:27:14.886 DEBUG [25976]: Closing database connection -- 23:27:14.886 SQL [25976]: pgsql_close() -- 02:06:16.098 INFO [5580]: COREGRADE is starting... -- 02:06:16.099 INFO [5580]: Version from config: 1.0 -- 02:06:16.099 DEBUG [5580]: Connecting to database... -- 02:06:16.099 DEBUG [5580]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:06:16.099 SQL [5580]: pgsql_db_connect() -- 02:06:16.103 DEBUG [5580]: Database connection successful -- 02:06:16.103 INFO [5580]: _SERVER found -- 02:06:16.103 INFO [5580]: REMOTE_ADDR = 192.168.1.13 -- 02:06:16.103 INFO [5580]: SERVER_NAME = oameye.works.coregrade.com -- 02:06:16.103 INFO [5580]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974 -- 02:06:16.103 INFO [5580]: QUERY_STRING = /auth -- 02:06:16.103 INFO [5580]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:06:16.150 INFO [5580]: COREGRADE is stopping... -- 02:06:16.150 DEBUG [5580]: Closing database connection -- 02:06:16.150 SQL [5580]: pgsql_close() -- 02:06:16.297 INFO [5580]: COREGRADE is starting... -- 02:06:16.297 INFO [5580]: Version from config: 1.0 -- 02:06:16.297 DEBUG [5580]: Connecting to database... -- 02:06:16.297 DEBUG [5580]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:06:16.297 SQL [5580]: pgsql_db_connect() -- 02:06:16.301 DEBUG [5580]: Database connection successful -- 02:06:16.301 INFO [5580]: _SERVER found -- 02:06:16.301 INFO [5580]: REMOTE_ADDR = 192.168.1.13 -- 02:06:16.301 INFO [5580]: SERVER_NAME = oameye.works.coregrade.com -- 02:06:16.301 INFO [5580]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=pear004i1m3p5smmhoj51235u6sig9db -- 02:06:16.301 INFO [5580]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 02:06:16.301 INFO [5580]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:06:16.314 INFO [5580]: COREGRADE is stopping... -- 02:06:16.314 DEBUG [5580]: Closing database connection -- 02:06:16.314 SQL [5580]: pgsql_close() -- 02:06:16.339 INFO [5580]: COREGRADE is starting... -- 02:06:16.339 INFO [5580]: Version from config: 1.0 -- 02:06:16.339 DEBUG [5580]: Connecting to database... -- 02:06:16.339 DEBUG [5580]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:06:16.339 SQL [5580]: pgsql_db_connect() -- 02:06:16.343 DEBUG [5580]: Database connection successful -- 02:06:16.343 INFO [5580]: _SERVER found -- 02:06:16.343 INFO [5580]: REMOTE_ADDR = 192.168.1.13 -- 02:06:16.343 INFO [5580]: SERVER_NAME = oameye.works.coregrade.com -- 02:06:16.343 INFO [5580]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=pear004i1m3p5smmhoj51235u6sig9db -- 02:06:16.343 INFO [5580]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 02:06:16.343 INFO [5580]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 02:06:16.355 INFO [5580]: COREGRADE is stopping... -- 02:06:16.355 DEBUG [5580]: Closing database connection -- 02:06:16.355 SQL [5580]: pgsql_close() -- 09:34:54.685 INFO [5582]: COREGRADE is starting... -- 09:34:54.686 INFO [5582]: Version from config: 1.0 -- 09:34:54.686 DEBUG [5582]: Connecting to database... -- 09:34:54.686 DEBUG [5582]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:34:54.686 SQL [5582]: pgsql_db_connect() -- 09:34:54.692 DEBUG [5582]: Database connection successful -- 09:34:54.692 INFO [5582]: _SERVER found -- 09:34:54.692 INFO [5582]: REMOTE_ADDR = 192.168.1.13 -- 09:34:54.692 INFO [5582]: SERVER_NAME = oameye.works.coregrade.com -- 09:34:54.692 INFO [5582]: QUERY_STRING = /TP/public/index.php -- 09:34:54.692 INFO [5582]: HTTP_X_FORWARDED_FOR = 124.89.91.39 -- 09:34:54.709 INFO [5582]: COREGRADE is stopping... -- 09:34:54.709 DEBUG [5582]: Closing database connection -- 09:34:54.709 SQL [5582]: pgsql_close() -- 09:34:57.316 INFO [5582]: COREGRADE is starting... -- 09:34:57.317 INFO [5582]: Version from config: 1.0 -- 09:34:57.317 DEBUG [5582]: Connecting to database... -- 09:34:57.317 DEBUG [5582]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:34:57.317 SQL [5582]: pgsql_db_connect() -- 09:34:57.321 DEBUG [5582]: Database connection successful -- 09:34:57.321 INFO [5582]: _SERVER found -- 09:34:57.321 INFO [5582]: REMOTE_ADDR = 192.168.1.13 -- 09:34:57.321 INFO [5582]: SERVER_NAME = oameye.works.coregrade.com -- 09:34:57.321 INFO [5582]: QUERY_STRING = /TP/index.php -- 09:34:57.321 INFO [5582]: HTTP_X_FORWARDED_FOR = 124.89.91.39 -- 09:34:57.334 INFO [5582]: COREGRADE is stopping... -- 09:34:57.334 DEBUG [5582]: Closing database connection -- 09:34:57.334 SQL [5582]: pgsql_close() -- 09:35:04.761 INFO [5583]: COREGRADE is starting... -- 09:35:04.761 INFO [5583]: Version from config: 1.0 -- 09:35:04.761 DEBUG [5583]: Connecting to database... -- 09:35:04.761 DEBUG [5583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:35:04.761 SQL [5583]: pgsql_db_connect() -- 09:35:04.766 DEBUG [5583]: Database connection successful -- 09:35:04.766 INFO [5583]: _SERVER found -- 09:35:04.766 INFO [5583]: REMOTE_ADDR = 192.168.1.13 -- 09:35:04.766 INFO [5583]: SERVER_NAME = oameye.works.coregrade.com -- 09:35:04.766 INFO [5583]: QUERY_STRING = -- 09:35:04.766 INFO [5583]: HTTP_X_FORWARDED_FOR = 124.89.91.39 -- 09:35:04.815 INFO [5583]: COREGRADE is stopping... -- 09:35:04.815 DEBUG [5583]: Closing database connection -- 09:35:04.815 SQL [5583]: pgsql_close() -- 13:41:00.006 INFO [5581]: COREGRADE is starting... -- 13:41:00.006 INFO [5581]: Version from config: 1.0 -- 13:41:00.006 DEBUG [5581]: Connecting to database... -- 13:41:00.006 DEBUG [5581]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:41:00.006 SQL [5581]: pgsql_db_connect() -- 13:41:00.013 DEBUG [5581]: Database connection successful -- 13:41:00.013 INFO [5581]: _SERVER found -- 13:41:00.013 INFO [5581]: REMOTE_ADDR = 192.168.1.13 -- 13:41:00.013 INFO [5581]: SERVER_NAME = oameye.works.coregrade.com -- 13:41:00.013 INFO [5581]: QUERY_STRING = /favicon.ico -- 13:41:00.013 INFO [5581]: HTTP_X_FORWARDED_FOR = 93.174.95.106 -- 13:41:00.030 INFO [5581]: COREGRADE is stopping... -- 13:41:00.030 DEBUG [5581]: Closing database connection -- 13:41:00.030 SQL [5581]: pgsql_close() -- 14:01:07.276 INFO [6120]: COREGRADE is starting... -- 14:01:07.276 INFO [6120]: Version from config: 1.0 -- 14:01:07.276 DEBUG [6120]: Connecting to database... -- 14:01:07.277 DEBUG [6120]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:01:07.277 SQL [6120]: pgsql_db_connect() -- 14:01:07.281 DEBUG [6120]: Database connection successful -- 14:01:07.281 INFO [6120]: _SERVER found -- 14:01:07.281 INFO [6120]: REMOTE_ADDR = 192.168.1.13 -- 14:01:07.281 INFO [6120]: SERVER_NAME = oameye.works.coregrade.com -- 14:01:07.281 INFO [6120]: QUERY_STRING = /owa/auth/logon.aspx -- 14:01:07.281 INFO [6120]: HTTP_X_FORWARDED_FOR = 169.197.108.30 -- 14:01:07.296 INFO [6120]: COREGRADE is stopping... -- 14:01:07.297 DEBUG [6120]: Closing database connection -- 14:01:07.297 SQL [6120]: pgsql_close() -- 14:30:50.082 INFO [5579]: COREGRADE is starting... -- 14:30:50.082 INFO [5579]: Version from config: 1.0 -- 14:30:50.082 DEBUG [5579]: Connecting to database... -- 14:30:50.082 DEBUG [5579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:50.082 SQL [5579]: pgsql_db_connect() -- 14:30:50.127 INFO [5579]: COREGRADE is starting... -- 14:30:50.127 INFO [5579]: Version from config: 1.0 -- 14:30:50.128 DEBUG [5579]: Connecting to database... -- 14:30:50.128 DEBUG [5579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:50.128 SQL [5579]: pgsql_db_connect() -- 14:30:50.131 DEBUG [5579]: Database connection successful -- 14:30:50.131 INFO [5579]: _SERVER found -- 14:30:50.131 INFO [5579]: REMOTE_ADDR = 192.168.1.13 -- 14:30:50.131 INFO [5579]: SERVER_NAME = oameye.works.coregrade.com -- 14:30:50.131 INFO [5579]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974 -- 14:30:50.131 INFO [5579]: QUERY_STRING = -- 14:30:50.131 INFO [5579]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:30:50.131 INFO [5579]: SystemStatus()09-09-********~************ -- 14:30:50.131 INFO [5579]: long coregrade_api_main(CVars in, CVars &out) -- 14:30:50.131 INFO [5579]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 14:30:50.131 INFO [5579]: account calls -- 14:30:50.131 INFO [5579]: account_calls() -- 14:30:50.131 INFO [5579]: LoginCoreGradeAccount() -- 14:30:50.131 FLOG_MAX [5579]: REQ_STRING(username) -- 14:30:50.132 FLOG_MAX [5579]: REQ_STRING(password) -- 14:30:50.132 FLOG_MAX [5579]: REQ_STRING(sessionid) -- 14:30:50.132 FLOG_MAX [5579]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:30:50.132 SQL [5579]: pgsql_query() -- 14:30:50.132 SQL [5579]: About to run query: -- 14:30:50.132 SQL [5579]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 14:30:50.135 SQL [5579]: Found rows: 1 -- 14:30:50.135 FLOG_MAX [5579]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 14:30:50.136 INFO [5579]: long SessionCheck(long uid, const char *sessionid, int create ) -- 14:30:50.136 SQL [5579]: pgsql_exec() -- 14:30:50.136 SQL [5579]: About to run query: -- 14:30:50.136 SQL [5579]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 14:30:50.137 SQL [5579]: PQcmdTuples: 1 -- 14:30:50.137 SQL [5579]: Affected rows: 1 -- 14:30:50.137 SQL [5579]: pgsql_exec() -- 14:30:50.137 SQL [5579]: About to run query: -- 14:30:50.137 SQL [5579]: DELETE FROM members_session WHERE member_id=5 -- 14:30:50.137 SQL [5579]: PQcmdTuples: 0 -- 14:30:50.137 SQL [5579]: Affected rows: 0 -- 14:30:50.137 SQL [5579]: pgsql_query() -- 14:30:50.137 SQL [5579]: About to run query: -- 14:30:50.137 SQL [5579]: SELECT * FROM members_session WHERE member_id=5 AND session<>'EE068ED0C2B95C5146E0191AE94201B6' -- 14:30:50.138 SQL [5579]: Found rows: 0 -- 14:30:50.138 SQL [5579]: Found rows: 0 -- 14:30:50.138 FLOG_MAX [5579]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:30:50.138 SQL [5579]: pgsql_query() -- 14:30:50.138 SQL [5579]: About to run query: -- 14:30:50.138 SQL [5579]: SELECT * FROM members_session WHERE member_id=5 AND session='EE068ED0C2B95C5146E0191AE94201B6' -- 14:30:50.139 SQL [5579]: Found rows: 0 -- 14:30:50.139 SQL [5579]: Found rows: 0 -- 14:30:50.139 FLOG_MAX [5579]: insert_db_record() -- 14:30:50.139 SQL [5579]: pgsql_exec() -- 14:30:50.139 SQL [5579]: About to run query: -- 14:30:50.139 SQL [5579]: INSERT INTO members_session (member_id,session) VALUES ('5','EE068ED0C2B95C5146E0191AE94201B6') -- 14:30:50.140 SQL [5579]: PQcmdTuples: 1 -- 14:30:50.140 SQL [5579]: Affected rows: 1 -- 14:30:50.140 FLOG_MAX [5579]: SELECT currval('members_session_id_seq') -- 14:30:50.140 SQL [5579]: pgsql_query() -- 14:30:50.140 SQL [5579]: About to run query: -- 14:30:50.140 SQL [5579]: SELECT currval('members_session_id_seq') -- 14:30:50.141 SQL [5579]: Found rows: 1 -- 14:30:50.141 INFO [5579]: CreateDefaultPage() -- 14:30:50.141 FLOG_MAX [5579]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:30:50.141 SQL [5579]: pgsql_query() -- 14:30:50.141 SQL [5579]: About to run query: -- 14:30:50.141 SQL [5579]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 14:30:50.141 SQL [5579]: Found rows: 1 -- 14:30:50.141 FLOG_MAX [5579]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 14:30:50.141 SQL [5579]: pgsql_query() -- 14:30:50.141 SQL [5579]: About to run query: -- 14:30:50.141 SQL [5579]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 14:30:50.142 SQL [5579]: Found rows: 1 -- 14:30:50.142 INFO [5579]: /CreateDefaultPage() -- 14:30:50.142 INFO [5579]: /LoginCoreGradeAccount() -- 14:30:50.142 INFO [5579]: RET: added=2020-02-05 06:47:23.982154 -- 14:30:50.142 INFO [5579]: RET: email=ameye+11@chiefsoft.com -- 14:30:50.142 INFO [5579]: RET: firstname=Olu -- 14:30:50.142 INFO [5579]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 14:30:50.142 INFO [5579]: RET: id=5 -- 14:30:50.142 INFO [5579]: RET: last_login= -- 14:30:50.142 INFO [5579]: RET: lastname=Amey -- 14:30:50.142 INFO [5579]: RET: loc=192.168.1.13 -- 14:30:50.142 INFO [5579]: RET: member_id=5 -- 14:30:50.142 INFO [5579]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 14:30:50.142 INFO [5579]: RET: phone= -- 14:30:50.142 INFO [5579]: RET: pid= -- 14:30:50.142 INFO [5579]: RET: result=YES I GET TO BACK END -- 14:30:50.142 INFO [5579]: RET: sessionid=EE068ED0C2B95C5146E0191AE94201B6 -- 14:30:50.142 INFO [5579]: RET: status=1 -- 14:30:50.142 INFO [5579]: RET: stauts=OK -- 14:30:50.142 INFO [5579]: RET: username=ameye+11@chiefsoft.com -- 14:30:50.142 INFO [5579]: RET: verified= -- 14:30:50.144 INFO [5579]: COREGRADE is stopping... -- 14:30:50.144 DEBUG [5579]: Closing database connection -- 14:30:50.144 SQL [5579]: pgsql_close() -- 14:30:50.087 DEBUG [5579]: Database connection successful -- 14:30:50.087 INFO [5579]: _SERVER found -- 14:30:50.087 INFO [5579]: REMOTE_ADDR = 192.168.1.13 -- 14:30:50.087 INFO [5579]: SERVER_NAME = oameye.works.coregrade.com -- 14:30:50.087 INFO [5579]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974 -- 14:30:50.087 INFO [5579]: QUERY_STRING = /auth -- 14:30:50.087 INFO [5579]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:30:50.144 INFO [5579]: COREGRADE is stopping... -- 14:30:50.144 DEBUG [5579]: Closing database connection -- 14:30:50.144 SQL [5579]: pgsql_close() -- 14:30:50.162 INFO [5579]: COREGRADE is starting... -- 14:30:50.162 INFO [5579]: Version from config: 1.0 -- 14:30:50.162 DEBUG [5579]: Connecting to database... -- 14:30:50.162 DEBUG [5579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:50.162 SQL [5579]: pgsql_db_connect() -- 14:30:50.166 DEBUG [5579]: Database connection successful -- 14:30:50.166 INFO [5579]: _SERVER found -- 14:30:50.166 INFO [5579]: REMOTE_ADDR = 192.168.1.13 -- 14:30:50.166 INFO [5579]: SERVER_NAME = oameye.works.coregrade.com -- 14:30:50.166 INFO [5579]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2j1ufln4p6neu3kdo3e1q0d92io8ntmc -- 14:30:50.166 INFO [5579]: QUERY_STRING = /member/index -- 14:30:50.166 INFO [5579]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:30:50.207 INFO [5579]: COREGRADE is stopping... -- 14:30:50.207 DEBUG [5579]: Closing database connection -- 14:30:50.207 SQL [5579]: pgsql_close() -- 14:30:50.736 INFO [5579]: COREGRADE is starting... -- 14:30:50.736 INFO [5579]: Version from config: 1.0 -- 14:30:50.736 DEBUG [5579]: Connecting to database... -- 14:30:50.736 DEBUG [5579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:50.736 SQL [5579]: pgsql_db_connect() -- 14:30:50.740 DEBUG [5579]: Database connection successful -- 14:30:50.740 INFO [5579]: _SERVER found -- 14:30:50.740 INFO [5579]: REMOTE_ADDR = 192.168.1.13 -- 14:30:50.740 INFO [5579]: SERVER_NAME = oameye.works.coregrade.com -- 14:30:50.740 INFO [5579]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2j1ufln4p6neu3kdo3e1q0d92io8ntmc -- 14:30:50.740 INFO [5579]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 14:30:50.740 INFO [5579]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:30:50.751 INFO [5579]: COREGRADE is stopping... -- 14:30:50.751 DEBUG [5579]: Closing database connection -- 14:30:50.751 SQL [5579]: pgsql_close() -- 14:30:50.801 INFO [5583]: COREGRADE is starting... -- 14:30:50.801 INFO [5583]: Version from config: 1.0 -- 14:30:50.801 DEBUG [5583]: Connecting to database... -- 14:30:50.801 DEBUG [5583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:50.802 SQL [5583]: pgsql_db_connect() -- 14:30:50.806 DEBUG [5583]: Database connection successful -- 14:30:50.806 INFO [5583]: _SERVER found -- 14:30:50.806 INFO [5583]: REMOTE_ADDR = 192.168.1.13 -- 14:30:50.806 INFO [5583]: SERVER_NAME = oameye.works.coregrade.com -- 14:30:50.806 INFO [5583]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2j1ufln4p6neu3kdo3e1q0d92io8ntmc -- 14:30:50.806 INFO [5583]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:30:50.806 INFO [5583]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:30:50.820 INFO [5583]: COREGRADE is stopping... -- 14:30:50.820 DEBUG [5583]: Closing database connection -- 14:30:50.820 SQL [5583]: pgsql_close() -- 14:30:51.138 INFO [5580]: COREGRADE is starting... -- 14:30:51.139 INFO [5580]: Version from config: 1.0 -- 14:30:51.139 DEBUG [5580]: Connecting to database... -- 14:30:51.139 DEBUG [5580]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:51.139 SQL [5580]: pgsql_db_connect() -- 14:30:51.143 DEBUG [5580]: Database connection successful -- 14:30:51.143 INFO [5580]: _SERVER found -- 14:30:51.143 INFO [5580]: REMOTE_ADDR = 192.168.1.13 -- 14:30:51.143 INFO [5580]: SERVER_NAME = oameye.works.coregrade.com -- 14:30:51.143 INFO [5580]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2j1ufln4p6neu3kdo3e1q0d92io8ntmc -- 14:30:51.143 INFO [5580]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 14:30:51.143 INFO [5580]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:30:51.157 INFO [5580]: COREGRADE is stopping... -- 14:30:51.157 DEBUG [5580]: Closing database connection -- 14:30:51.157 SQL [5580]: pgsql_close() -- 14:30:52.523 INFO [5580]: COREGRADE is starting... -- 14:30:52.523 INFO [5580]: Version from config: 1.0 -- 14:30:52.523 DEBUG [5580]: Connecting to database... -- 14:30:52.523 DEBUG [5580]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:52.523 SQL [5580]: pgsql_db_connect() -- 14:30:52.527 DEBUG [5580]: Database connection successful -- 14:30:52.527 INFO [5580]: _SERVER found -- 14:30:52.527 INFO [5580]: REMOTE_ADDR = 192.168.1.13 -- 14:30:52.527 INFO [5580]: SERVER_NAME = oameye.works.coregrade.com -- 14:30:52.527 INFO [5580]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2j1ufln4p6neu3kdo3e1q0d92io8ntmc -- 14:30:52.527 INFO [5580]: QUERY_STRING = /member/page -- 14:30:52.527 INFO [5580]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:30:52.575 INFO [5580]: COREGRADE is stopping... -- 14:30:52.575 DEBUG [5580]: Closing database connection -- 14:30:52.575 SQL [5580]: pgsql_close() -- 14:30:52.726 INFO [5580]: COREGRADE is starting... -- 14:30:52.726 INFO [5580]: Version from config: 1.0 -- 14:30:52.726 DEBUG [5580]: Connecting to database... -- 14:30:52.726 DEBUG [5580]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:52.726 SQL [5580]: pgsql_db_connect() -- 14:30:52.730 DEBUG [5580]: Database connection successful -- 14:30:52.730 INFO [5580]: _SERVER found -- 14:30:52.730 INFO [5580]: REMOTE_ADDR = 192.168.1.13 -- 14:30:52.730 INFO [5580]: SERVER_NAME = oameye.works.coregrade.com -- 14:30:52.730 INFO [5580]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2j1ufln4p6neu3kdo3e1q0d92io8ntmc -- 14:30:52.730 INFO [5580]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:30:52.730 INFO [5580]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:30:52.742 INFO [5580]: COREGRADE is stopping... -- 14:30:52.743 DEBUG [5580]: Closing database connection -- 14:30:52.743 SQL [5580]: pgsql_close() -- 14:30:52.940 INFO [5580]: COREGRADE is starting... -- 14:30:52.940 INFO [5580]: Version from config: 1.0 -- 14:30:52.940 DEBUG [5580]: Connecting to database... -- 14:30:52.940 DEBUG [5580]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:52.940 SQL [5580]: pgsql_db_connect() -- 14:30:52.943 INFO [5582]: COREGRADE is starting... -- 14:30:52.943 INFO [5582]: Version from config: 1.0 -- 14:30:52.943 DEBUG [5582]: Connecting to database... -- 14:30:52.943 DEBUG [5582]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:52.943 SQL [5582]: pgsql_db_connect() -- 14:30:52.944 DEBUG [5580]: Database connection successful -- 14:30:52.944 INFO [5580]: _SERVER found -- 14:30:52.944 INFO [5580]: REMOTE_ADDR = 192.168.1.13 -- 14:30:52.944 INFO [5580]: SERVER_NAME = oameye.works.coregrade.com -- 14:30:52.944 INFO [5580]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2j1ufln4p6neu3kdo3e1q0d92io8ntmc -- 14:30:52.944 INFO [5580]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 14:30:52.944 INFO [5580]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:30:52.957 INFO [5580]: COREGRADE is stopping... -- 14:30:52.957 DEBUG [5580]: Closing database connection -- 14:30:52.957 SQL [5580]: pgsql_close() -- 14:30:52.947 DEBUG [5582]: Database connection successful -- 14:30:52.947 INFO [5582]: _SERVER found -- 14:30:52.947 INFO [5582]: REMOTE_ADDR = 192.168.1.13 -- 14:30:52.947 INFO [5582]: SERVER_NAME = oameye.works.coregrade.com -- 14:30:52.947 INFO [5582]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2j1ufln4p6neu3kdo3e1q0d92io8ntmc -- 14:30:52.947 INFO [5582]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 14:30:52.947 INFO [5582]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:30:52.961 INFO [5582]: COREGRADE is stopping... -- 14:30:52.961 DEBUG [5582]: Closing database connection -- 14:30:52.961 SQL [5582]: pgsql_close() -- 14:31:05.122 INFO [5581]: COREGRADE is starting... -- 14:31:05.122 INFO [5581]: Version from config: 1.0 -- 14:31:05.122 DEBUG [5581]: Connecting to database... -- 14:31:05.122 DEBUG [5581]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:31:05.122 SQL [5581]: pgsql_db_connect() -- 14:31:05.126 DEBUG [5581]: Database connection successful -- 14:31:05.126 INFO [5581]: _SERVER found -- 14:31:05.126 INFO [5581]: REMOTE_ADDR = 192.168.1.13 -- 14:31:05.126 INFO [5581]: SERVER_NAME = oameye.works.coregrade.com -- 14:31:05.126 INFO [5581]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2j1ufln4p6neu3kdo3e1q0d92io8ntmc -- 14:31:05.126 INFO [5581]: QUERY_STRING = /member/viewCardAddAction -- 14:31:05.126 INFO [5581]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:31:05.163 INFO [5581]: COREGRADE is stopping... -- 14:31:05.163 DEBUG [5581]: Closing database connection -- 14:31:05.163 SQL [5581]: pgsql_close() -- 14:31:10.288 INFO [6120]: COREGRADE is starting... -- 14:31:10.289 INFO [6120]: Version from config: 1.0 -- 14:31:10.289 DEBUG [6120]: Connecting to database... -- 14:31:10.289 DEBUG [6120]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:31:10.289 SQL [6120]: pgsql_db_connect() -- 14:31:10.293 DEBUG [6120]: Database connection successful -- 14:31:10.293 INFO [6120]: _SERVER found -- 14:31:10.293 INFO [6120]: REMOTE_ADDR = 192.168.1.13 -- 14:31:10.293 INFO [6120]: SERVER_NAME = oameye.works.coregrade.com -- 14:31:10.293 INFO [6120]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2j1ufln4p6neu3kdo3e1q0d92io8ntmc -- 14:31:10.293 INFO [6120]: QUERY_STRING = /member/addPageCards -- 14:31:10.293 INFO [6120]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:31:10.329 INFO [6120]: COREGRADE is stopping... -- 14:31:10.329 DEBUG [6120]: Closing database connection -- 14:31:10.329 SQL [6120]: pgsql_close() -- 14:31:10.380 INFO [6120]: COREGRADE is starting... -- 14:31:10.381 INFO [6120]: Version from config: 1.0 -- 14:31:10.381 DEBUG [6120]: Connecting to database... -- 14:31:10.381 DEBUG [6120]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:31:10.381 SQL [6120]: pgsql_db_connect() -- 14:31:10.384 DEBUG [6120]: Database connection successful -- 14:31:10.384 INFO [6120]: _SERVER found -- 14:31:10.384 INFO [6120]: REMOTE_ADDR = 192.168.1.13 -- 14:31:10.384 INFO [6120]: SERVER_NAME = oameye.works.coregrade.com -- 14:31:10.384 INFO [6120]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2j1ufln4p6neu3kdo3e1q0d92io8ntmc -- 14:31:10.384 INFO [6120]: QUERY_STRING = /member/upload -- 14:31:10.384 INFO [6120]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:31:10.417 INFO [6120]: COREGRADE is stopping... -- 14:31:10.417 DEBUG [6120]: Closing database connection -- 14:31:10.417 SQL [6120]: pgsql_close() -- 14:31:44.962 INFO [9338]: COREGRADE is starting... -- 14:31:44.963 INFO [9338]: Version from config: 1.0 -- 14:31:44.963 DEBUG [9338]: Connecting to database... -- 14:31:44.963 DEBUG [9338]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:31:44.963 SQL [9338]: pgsql_db_connect() -- 14:31:44.977 INFO [9339]: COREGRADE is starting... -- 14:31:44.977 INFO [9339]: Version from config: 1.0 -- 14:31:44.977 DEBUG [9339]: Connecting to database... -- 14:31:44.977 DEBUG [9339]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:31:44.977 SQL [9339]: pgsql_db_connect() -- 14:31:44.988 INFO [5579]: COREGRADE is starting... -- 14:31:44.988 INFO [5579]: Version from config: 1.0 -- 14:31:44.988 DEBUG [5579]: Connecting to database... -- 14:31:44.988 DEBUG [5579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:31:44.988 SQL [5579]: pgsql_db_connect() -- 14:31:44.999 INFO [5583]: COREGRADE is starting... -- 14:31:44.999 INFO [5583]: Version from config: 1.0 -- 14:31:44.999 DEBUG [5583]: Connecting to database... -- 14:31:44.999 DEBUG [5583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:31:44.999 SQL [5583]: pgsql_db_connect() -- 14:31:45.020 INFO [5580]: COREGRADE is starting... -- 14:31:45.020 INFO [5580]: Version from config: 1.0 -- 14:31:45.020 DEBUG [5580]: Connecting to database... -- 14:31:45.020 DEBUG [5580]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:31:45.020 SQL [5580]: pgsql_db_connect() -- 14:31:45.034 INFO [5582]: COREGRADE is starting... -- 14:31:45.035 INFO [5582]: Version from config: 1.0 -- 14:31:45.035 DEBUG [5582]: Connecting to database... -- 14:31:45.035 DEBUG [5582]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:31:45.035 SQL [5582]: pgsql_db_connect() -- 14:31:44.967 DEBUG [9338]: Database connection successful -- 14:31:44.967 INFO [9338]: _SERVER found -- 14:31:44.967 INFO [9338]: REMOTE_ADDR = 192.168.1.13 -- 14:31:44.967 INFO [9338]: SERVER_NAME = oameye.works.coregrade.com -- 14:31:44.967 INFO [9338]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2j1ufln4p6neu3kdo3e1q0d92io8ntmc -- 14:31:44.967 INFO [9338]: QUERY_STRING = /member/upload -- 14:31:44.967 INFO [9338]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:31:45.042 INFO [9338]: COREGRADE is stopping... -- 14:31:45.042 DEBUG [9338]: Closing database connection -- 14:31:45.042 SQL [9338]: pgsql_close() -- 14:31:44.992 DEBUG [5579]: Database connection successful -- 14:31:44.992 INFO [5579]: _SERVER found -- 14:31:44.992 INFO [5579]: REMOTE_ADDR = 192.168.1.13 -- 14:31:44.992 INFO [5579]: SERVER_NAME = oameye.works.coregrade.com -- 14:31:44.992 INFO [5579]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2j1ufln4p6neu3kdo3e1q0d92io8ntmc -- 14:31:44.992 INFO [5579]: QUERY_STRING = /member/upload -- 14:31:44.992 INFO [5579]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:31:45.049 INFO [5579]: COREGRADE is stopping... -- 14:31:45.049 DEBUG [5579]: Closing database connection -- 14:31:45.049 SQL [5579]: pgsql_close() -- 14:31:45.003 DEBUG [5583]: Database connection successful -- 14:31:45.003 INFO [5583]: _SERVER found -- 14:31:45.003 INFO [5583]: REMOTE_ADDR = 192.168.1.13 -- 14:31:45.003 INFO [5583]: SERVER_NAME = oameye.works.coregrade.com -- 14:31:45.003 INFO [5583]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2j1ufln4p6neu3kdo3e1q0d92io8ntmc -- 14:31:45.003 INFO [5583]: QUERY_STRING = /member/upload -- 14:31:45.003 INFO [5583]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:31:45.057 INFO [5583]: COREGRADE is stopping... -- 14:31:45.057 DEBUG [5583]: Closing database connection -- 14:31:45.057 SQL [5583]: pgsql_close() -- 14:31:44.981 DEBUG [9339]: Database connection successful -- 14:31:44.981 INFO [9339]: _SERVER found -- 14:31:44.981 INFO [9339]: REMOTE_ADDR = 192.168.1.13 -- 14:31:44.981 INFO [9339]: SERVER_NAME = oameye.works.coregrade.com -- 14:31:44.981 INFO [9339]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2j1ufln4p6neu3kdo3e1q0d92io8ntmc -- 14:31:44.981 INFO [9339]: QUERY_STRING = /member/upload -- 14:31:44.981 INFO [9339]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:31:45.065 INFO [9339]: COREGRADE is stopping... -- 14:31:45.065 DEBUG [9339]: Closing database connection -- 14:31:45.065 SQL [9339]: pgsql_close() -- 14:31:45.025 DEBUG [5580]: Database connection successful -- 14:31:45.025 INFO [5580]: _SERVER found -- 14:31:45.025 INFO [5580]: REMOTE_ADDR = 192.168.1.13 -- 14:31:45.025 INFO [5580]: SERVER_NAME = oameye.works.coregrade.com -- 14:31:45.025 INFO [5580]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2j1ufln4p6neu3kdo3e1q0d92io8ntmc -- 14:31:45.025 INFO [5580]: QUERY_STRING = /member/upload -- 14:31:45.025 INFO [5580]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:31:45.072 INFO [5580]: COREGRADE is stopping... -- 14:31:45.072 DEBUG [5580]: Closing database connection -- 14:31:45.072 SQL [5580]: pgsql_close() -- 14:31:45.074 INFO [5583]: COREGRADE is starting... -- 14:31:45.074 INFO [5583]: Version from config: 1.0 -- 14:31:45.074 DEBUG [5583]: Connecting to database... -- 14:31:45.074 DEBUG [5583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:31:45.074 SQL [5583]: pgsql_db_connect() -- 14:31:45.078 INFO [9339]: COREGRADE is starting... -- 14:31:45.078 INFO [9339]: Version from config: 1.0 -- 14:31:45.078 DEBUG [9339]: Connecting to database... -- 14:31:45.078 DEBUG [9339]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:31:45.078 SQL [9339]: pgsql_db_connect() -- 14:31:45.040 DEBUG [5582]: Database connection successful -- 14:31:45.040 INFO [5582]: _SERVER found -- 14:31:45.040 INFO [5582]: REMOTE_ADDR = 192.168.1.13 -- 14:31:45.040 INFO [5582]: SERVER_NAME = oameye.works.coregrade.com -- 14:31:45.040 INFO [5582]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2j1ufln4p6neu3kdo3e1q0d92io8ntmc -- 14:31:45.040 INFO [5582]: QUERY_STRING = /member/upload -- 14:31:45.040 INFO [5582]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:31:45.083 INFO [5582]: COREGRADE is stopping... -- 14:31:45.083 DEBUG [5582]: Closing database connection -- 14:31:45.083 SQL [5582]: pgsql_close() -- 14:31:45.078 DEBUG [5583]: Database connection successful -- 14:31:45.078 INFO [5583]: _SERVER found -- 14:31:45.078 INFO [5583]: REMOTE_ADDR = 192.168.1.13 -- 14:31:45.078 INFO [5583]: SERVER_NAME = oameye.works.coregrade.com -- 14:31:45.078 INFO [5583]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2j1ufln4p6neu3kdo3e1q0d92io8ntmc -- 14:31:45.078 INFO [5583]: QUERY_STRING = /member/upload -- 14:31:45.078 INFO [5583]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:31:45.127 INFO [5583]: COREGRADE is stopping... -- 14:31:45.127 DEBUG [5583]: Closing database connection -- 14:31:45.127 SQL [5583]: pgsql_close() -- 14:31:45.082 DEBUG [9339]: Database connection successful -- 14:31:45.082 INFO [9339]: _SERVER found -- 14:31:45.082 INFO [9339]: REMOTE_ADDR = 192.168.1.13 -- 14:31:45.082 INFO [9339]: SERVER_NAME = oameye.works.coregrade.com -- 14:31:45.082 INFO [9339]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=2j1ufln4p6neu3kdo3e1q0d92io8ntmc -- 14:31:45.082 INFO [9339]: QUERY_STRING = /member/upload -- 14:31:45.082 INFO [9339]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:31:45.135 INFO [9339]: COREGRADE is stopping... -- 14:31:45.135 DEBUG [9339]: Closing database connection -- 14:31:45.135 SQL [9339]: pgsql_close() -- 17:10:53.065 INFO [9363]: COREGRADE is starting... -- 17:10:53.065 INFO [9363]: Version from config: 1.0 -- 17:10:53.065 DEBUG [9363]: Connecting to database... -- 17:10:53.065 DEBUG [9363]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:10:53.065 SQL [9363]: pgsql_db_connect() -- 17:10:53.070 DEBUG [9363]: Database connection successful -- 17:10:53.070 INFO [9363]: _SERVER found -- 17:10:53.070 INFO [9363]: REMOTE_ADDR = 192.168.1.13 -- 17:10:53.070 INFO [9363]: SERVER_NAME = oameye.works.coregrade.com -- 17:10:53.070 INFO [9363]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974 -- 17:10:53.070 INFO [9363]: QUERY_STRING = /auth -- 17:10:53.070 INFO [9363]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:10:53.116 INFO [9363]: COREGRADE is stopping... -- 17:10:53.116 DEBUG [9363]: Closing database connection -- 17:10:53.116 SQL [9363]: pgsql_close() -- 17:10:53.300 INFO [9363]: COREGRADE is starting... -- 17:10:53.300 INFO [9363]: Version from config: 1.0 -- 17:10:53.300 DEBUG [9363]: Connecting to database... -- 17:10:53.300 DEBUG [9363]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:10:53.300 SQL [9363]: pgsql_db_connect() -- 17:10:53.304 DEBUG [9363]: Database connection successful -- 17:10:53.304 INFO [9363]: _SERVER found -- 17:10:53.304 INFO [9363]: REMOTE_ADDR = 192.168.1.13 -- 17:10:53.304 INFO [9363]: SERVER_NAME = oameye.works.coregrade.com -- 17:10:53.304 INFO [9363]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=in8ciq86rtkfp9ialg3q1lfe61nsoe90 -- 17:10:53.304 INFO [9363]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:10:53.304 INFO [9363]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:10:53.317 INFO [9363]: COREGRADE is stopping... -- 17:10:53.317 DEBUG [9363]: Closing database connection -- 17:10:53.317 SQL [9363]: pgsql_close() -- 17:10:53.360 INFO [9363]: COREGRADE is starting... -- 17:10:53.360 INFO [9363]: Version from config: 1.0 -- 17:10:53.360 DEBUG [9363]: Connecting to database... -- 17:10:53.360 DEBUG [9363]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:10:53.360 SQL [9363]: pgsql_db_connect() -- 17:10:53.364 DEBUG [9363]: Database connection successful -- 17:10:53.364 INFO [9363]: _SERVER found -- 17:10:53.364 INFO [9363]: REMOTE_ADDR = 192.168.1.13 -- 17:10:53.364 INFO [9363]: SERVER_NAME = oameye.works.coregrade.com -- 17:10:53.364 INFO [9363]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1633405250.1583097974; ci_session=in8ciq86rtkfp9ialg3q1lfe61nsoe90 -- 17:10:53.364 INFO [9363]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 17:10:53.364 INFO [9363]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:10:53.377 INFO [9363]: COREGRADE is stopping... -- 17:10:53.377 DEBUG [9363]: Closing database connection -- 17:10:53.377 SQL [9363]: pgsql_close() -- 22:15:11.662 INFO [9336]: COREGRADE is starting... -- 22:15:11.662 INFO [9336]: Version from config: 1.0 -- 22:15:11.662 DEBUG [9336]: Connecting to database... -- 22:15:11.662 DEBUG [9336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:15:11.662 SQL [9336]: pgsql_db_connect() -- 22:15:11.667 DEBUG [9336]: Database connection successful -- 22:15:11.667 INFO [9336]: _SERVER found -- 22:15:11.667 INFO [9336]: REMOTE_ADDR = 192.168.1.13 -- 22:15:11.667 INFO [9336]: SERVER_NAME = oameye.works.coregrade.com -- 22:15:11.667 INFO [9336]: QUERY_STRING = -- 22:15:11.667 INFO [9336]: HTTP_X_FORWARDED_FOR = 198.108.66.208 -- 22:15:11.718 INFO [9336]: COREGRADE is stopping... -- 22:15:11.718 DEBUG [9336]: Closing database connection -- 22:15:11.718 SQL [9336]: pgsql_close() -- 00:02:03.824 INFO [9338]: COREGRADE is starting... -- 00:02:03.824 INFO [9338]: Version from config: 1.0 -- 00:02:03.824 DEBUG [9338]: Connecting to database... -- 00:02:03.824 DEBUG [9338]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:03.824 SQL [9338]: pgsql_db_connect() -- 00:02:03.829 DEBUG [9338]: Database connection successful -- 00:02:03.829 INFO [9338]: _SERVER found -- 00:02:03.829 INFO [9338]: REMOTE_ADDR = 192.168.1.13 -- 00:02:03.829 INFO [9338]: SERVER_NAME = oameye.works.coregrade.com -- 00:02:03.829 INFO [9338]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 00:02:03.829 INFO [9338]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 00:02:03.843 INFO [9338]: COREGRADE is stopping... -- 00:02:03.843 DEBUG [9338]: Closing database connection -- 00:02:03.843 SQL [9338]: pgsql_close() -- 00:36:12.003 INFO [5579]: COREGRADE is starting... -- 00:36:12.004 INFO [5579]: Version from config: 1.0 -- 00:36:12.004 DEBUG [5579]: Connecting to database... -- 00:36:12.004 DEBUG [5579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:36:12.004 SQL [5579]: pgsql_db_connect() -- 00:36:12.008 DEBUG [5579]: Database connection successful -- 00:36:12.008 INFO [5579]: _SERVER found -- 00:36:12.008 INFO [5579]: REMOTE_ADDR = 192.168.1.13 -- 00:36:12.008 INFO [5579]: SERVER_NAME = oameye.works.coregrade.com -- 00:36:12.008 INFO [5579]: QUERY_STRING = /solr/admin/info/system -- 00:36:12.008 INFO [5579]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 00:36:12.022 INFO [5579]: COREGRADE is stopping... -- 00:36:12.022 DEBUG [5579]: Closing database connection -- 00:36:12.022 SQL [5579]: pgsql_close() -- 00:57:43.950 INFO [5580]: COREGRADE is starting... -- 00:57:43.950 INFO [5580]: Version from config: 1.0 -- 00:57:43.950 DEBUG [5580]: Connecting to database... -- 00:57:43.950 DEBUG [5580]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:57:43.950 SQL [5580]: pgsql_db_connect() -- 00:57:43.955 DEBUG [5580]: Database connection successful -- 00:57:43.955 INFO [5580]: _SERVER found -- 00:57:43.955 INFO [5580]: REMOTE_ADDR = 192.168.1.13 -- 00:57:43.955 INFO [5580]: SERVER_NAME = oameye.works.coregrade.com -- 00:57:43.955 INFO [5580]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 00:57:43.955 INFO [5580]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 00:57:43.999 INFO [5580]: COREGRADE is stopping... -- 00:57:43.999 DEBUG [5580]: Closing database connection -- 00:57:43.999 SQL [5580]: pgsql_close() -- 01:29:01.473 INFO [5582]: COREGRADE is starting... -- 01:29:01.473 INFO [5582]: Version from config: 1.0 -- 01:29:01.473 DEBUG [5582]: Connecting to database... -- 01:29:01.473 DEBUG [5582]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:29:01.473 SQL [5582]: pgsql_db_connect() -- 01:29:01.478 DEBUG [5582]: Database connection successful -- 01:29:01.478 INFO [5582]: _SERVER found -- 01:29:01.478 INFO [5582]: REMOTE_ADDR = 192.168.1.13 -- 01:29:01.478 INFO [5582]: SERVER_NAME = oameye.works.coregrade.com -- 01:29:01.478 INFO [5582]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 01:29:01.478 INFO [5582]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 01:29:01.523 INFO [5582]: COREGRADE is stopping... -- 01:29:01.523 DEBUG [5582]: Closing database connection -- 01:29:01.523 SQL [5582]: pgsql_close() -- 02:09:08.484 INFO [9339]: COREGRADE is starting... -- 02:09:08.484 INFO [9339]: Version from config: 1.0 -- 02:09:08.484 DEBUG [9339]: Connecting to database... -- 02:09:08.484 DEBUG [9339]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:09:08.484 SQL [9339]: pgsql_db_connect() -- 02:09:08.490 DEBUG [9339]: Database connection successful -- 02:09:08.490 INFO [9339]: _SERVER found -- 02:09:08.490 INFO [9339]: REMOTE_ADDR = 192.168.1.13 -- 02:09:08.490 INFO [9339]: SERVER_NAME = oameye.works.coregrade.com -- 02:09:08.490 INFO [9339]: QUERY_STRING = /.well-known/acme-challenge/BfvmXFAEsbW6XOW0ont_3cQD0Q4-NUneYsWYm7Fo4jE -- 02:09:08.490 INFO [9339]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 02:09:08.504 INFO [9339]: COREGRADE is stopping... -- 02:09:08.504 DEBUG [9339]: Closing database connection -- 02:09:08.504 SQL [9339]: pgsql_close() -- 02:09:08.639 INFO [9339]: COREGRADE is starting... -- 02:09:08.639 INFO [9339]: Version from config: 1.0 -- 02:09:08.639 DEBUG [9339]: Connecting to database... -- 02:09:08.639 DEBUG [9339]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:09:08.639 SQL [9339]: pgsql_db_connect() -- 02:09:08.643 DEBUG [9339]: Database connection successful -- 02:09:08.643 INFO [9339]: _SERVER found -- 02:09:08.643 INFO [9339]: REMOTE_ADDR = 192.168.1.13 -- 02:09:08.643 INFO [9339]: SERVER_NAME = oameye.works.coregrade.com -- 02:09:08.643 INFO [9339]: QUERY_STRING = /.well-known/acme-challenge/BfvmXFAEsbW6XOW0ont_3cQD0Q4-NUneYsWYm7Fo4jE -- 02:09:08.643 INFO [9339]: HTTP_X_FORWARDED_FOR = 18.194.58.132 -- 02:09:08.654 INFO [9339]: COREGRADE is stopping... -- 02:09:08.654 DEBUG [9339]: Closing database connection -- 02:09:08.654 SQL [9339]: pgsql_close() -- 02:09:08.737 INFO [9363]: COREGRADE is starting... -- 02:09:08.737 INFO [9363]: Version from config: 1.0 -- 02:09:08.737 DEBUG [9363]: Connecting to database... -- 02:09:08.737 DEBUG [9363]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:09:08.737 SQL [9363]: pgsql_db_connect() -- 02:09:08.741 DEBUG [9363]: Database connection successful -- 02:09:08.741 INFO [9363]: _SERVER found -- 02:09:08.741 INFO [9363]: REMOTE_ADDR = 192.168.1.13 -- 02:09:08.741 INFO [9363]: SERVER_NAME = oameye.works.coregrade.com -- 02:09:08.741 INFO [9363]: QUERY_STRING = /.well-known/acme-challenge/BfvmXFAEsbW6XOW0ont_3cQD0Q4-NUneYsWYm7Fo4jE -- 02:09:08.741 INFO [9363]: HTTP_X_FORWARDED_FOR = 34.222.229.130 -- 02:09:08.755 INFO [9363]: COREGRADE is stopping... -- 02:09:08.755 DEBUG [9363]: Closing database connection -- 02:09:08.755 SQL [9363]: pgsql_close() -- 02:09:08.842 INFO [9372]: COREGRADE is starting... -- 02:09:08.842 INFO [9372]: Version from config: 1.0 -- 02:09:08.842 DEBUG [9372]: Connecting to database... -- 02:09:08.842 DEBUG [9372]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:09:08.842 SQL [9372]: pgsql_db_connect() -- 02:09:08.847 DEBUG [9372]: Database connection successful -- 02:09:08.847 INFO [9372]: _SERVER found -- 02:09:08.847 INFO [9372]: REMOTE_ADDR = 192.168.1.13 -- 02:09:08.847 INFO [9372]: SERVER_NAME = oameye.works.coregrade.com -- 02:09:08.847 INFO [9372]: QUERY_STRING = /.well-known/acme-challenge/BfvmXFAEsbW6XOW0ont_3cQD0Q4-NUneYsWYm7Fo4jE -- 02:09:08.847 INFO [9372]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 02:09:08.862 INFO [9372]: COREGRADE is stopping... -- 02:09:08.862 DEBUG [9372]: Closing database connection -- 02:09:08.862 SQL [9372]: pgsql_close() -- 03:01:54.990 INFO [9373]: COREGRADE is starting... -- 03:01:54.991 INFO [9373]: Version from config: 1.0 -- 03:01:54.991 DEBUG [9373]: Connecting to database... -- 03:01:54.991 DEBUG [9373]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:01:54.991 SQL [9373]: pgsql_db_connect() -- 03:01:54.996 DEBUG [9373]: Database connection successful -- 03:01:54.996 INFO [9373]: _SERVER found -- 03:01:54.996 INFO [9373]: REMOTE_ADDR = 192.168.1.13 -- 03:01:54.996 INFO [9373]: SERVER_NAME = oameye.works.coregrade.com -- 03:01:54.996 INFO [9373]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 03:01:54.996 INFO [9373]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 03:01:55.046 INFO [9373]: COREGRADE is stopping... -- 03:01:55.046 DEBUG [9373]: Closing database connection -- 03:01:55.046 SQL [9373]: pgsql_close() -- 07:38:17.242 INFO [9338]: COREGRADE is starting... -- 07:38:17.243 INFO [9338]: Version from config: 1.0 -- 07:38:17.243 DEBUG [9338]: Connecting to database... -- 07:38:17.243 DEBUG [9338]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:38:17.243 SQL [9338]: pgsql_db_connect() -- 07:38:17.249 DEBUG [9338]: Database connection successful -- 07:38:17.249 INFO [9338]: _SERVER found -- 07:38:17.249 INFO [9338]: REMOTE_ADDR = 192.168.1.13 -- 07:38:17.249 INFO [9338]: SERVER_NAME = oameye.works.coregrade.com -- 07:38:17.249 INFO [9338]: QUERY_STRING = /solr/admin/info/system -- 07:38:17.249 INFO [9338]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 07:38:17.265 INFO [9338]: COREGRADE is stopping... -- 07:38:17.265 DEBUG [9338]: Closing database connection -- 07:38:17.265 SQL [9338]: pgsql_close() -- 07:46:45.967 INFO [5579]: COREGRADE is starting... -- 07:46:45.967 INFO [5579]: Version from config: 1.0 -- 07:46:45.967 DEBUG [5579]: Connecting to database... -- 07:46:45.967 DEBUG [5579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:46:45.967 SQL [5579]: pgsql_db_connect() -- 07:46:45.972 DEBUG [5579]: Database connection successful -- 07:46:45.972 INFO [5579]: _SERVER found -- 07:46:45.972 INFO [5579]: REMOTE_ADDR = 192.168.1.13 -- 07:46:45.972 INFO [5579]: SERVER_NAME = oameye.works.coregrade.com -- 07:46:45.972 INFO [5579]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 07:46:45.972 INFO [5579]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 07:46:46.008 INFO [5579]: COREGRADE is stopping... -- 07:46:46.008 DEBUG [5579]: Closing database connection -- 07:46:46.008 SQL [5579]: pgsql_close() -- 07:46:47.633 INFO [5579]: COREGRADE is starting... -- 07:46:47.633 INFO [5579]: Version from config: 1.0 -- 07:46:47.633 DEBUG [5579]: Connecting to database... -- 07:46:47.633 DEBUG [5579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:46:47.633 SQL [5579]: pgsql_db_connect() -- 07:46:47.637 DEBUG [5579]: Database connection successful -- 07:46:47.637 INFO [5579]: _SERVER found -- 07:46:47.637 INFO [5579]: REMOTE_ADDR = 192.168.1.13 -- 07:46:47.637 INFO [5579]: SERVER_NAME = oameye.works.coregrade.com -- 07:46:47.637 INFO [5579]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 07:46:47.637 INFO [5579]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 07:46:47.668 INFO [5579]: COREGRADE is stopping... -- 07:46:47.668 DEBUG [5579]: Closing database connection -- 07:46:47.668 SQL [5579]: pgsql_close() -- 07:50:40.213 INFO [5580]: COREGRADE is starting... -- 07:50:40.213 INFO [5580]: Version from config: 1.0 -- 07:50:40.213 DEBUG [5580]: Connecting to database... -- 07:50:40.213 DEBUG [5580]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:50:40.213 SQL [5580]: pgsql_db_connect() -- 07:50:40.218 DEBUG [5580]: Database connection successful -- 07:50:40.218 INFO [5580]: _SERVER found -- 07:50:40.218 INFO [5580]: REMOTE_ADDR = 192.168.1.13 -- 07:50:40.218 INFO [5580]: SERVER_NAME = oameye.works.coregrade.com -- 07:50:40.218 INFO [5580]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 07:50:40.218 INFO [5580]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 07:50:40.254 INFO [5580]: COREGRADE is stopping... -- 07:50:40.254 DEBUG [5580]: Closing database connection -- 07:50:40.254 SQL [5580]: pgsql_close() -- 11:09:25.071 INFO [5582]: COREGRADE is starting... -- 11:09:25.072 INFO [5582]: Version from config: 1.0 -- 11:09:25.072 DEBUG [5582]: Connecting to database... -- 11:09:25.072 DEBUG [5582]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:25.072 SQL [5582]: pgsql_db_connect() -- 11:09:25.076 DEBUG [5582]: Database connection successful -- 11:09:25.076 INFO [5582]: _SERVER found -- 11:09:25.076 INFO [5582]: REMOTE_ADDR = 192.168.1.13 -- 11:09:25.076 INFO [5582]: SERVER_NAME = oameye.works.coregrade.com -- 11:09:25.076 INFO [5582]: QUERY_STRING = /.env -- 11:09:25.076 INFO [5582]: HTTP_X_FORWARDED_FOR = 185.234.218.174 -- 11:09:25.092 INFO [5582]: COREGRADE is stopping... -- 11:09:25.092 DEBUG [5582]: Closing database connection -- 11:09:25.092 SQL [5582]: pgsql_close() -- 14:17:32.069 INFO [9339]: COREGRADE is starting... -- 14:17:32.069 INFO [9339]: Version from config: 1.0 -- 14:17:32.069 DEBUG [9339]: Connecting to database... -- 14:17:32.069 DEBUG [9339]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:17:32.069 SQL [9339]: pgsql_db_connect() -- 14:17:32.075 DEBUG [9339]: Database connection successful -- 14:17:32.075 INFO [9339]: _SERVER found -- 14:17:32.075 INFO [9339]: REMOTE_ADDR = 192.168.1.13 -- 14:17:32.075 INFO [9339]: SERVER_NAME = oameye.works.coregrade.com -- 14:17:32.075 INFO [9339]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 14:17:32.075 INFO [9339]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 14:17:32.088 INFO [9339]: COREGRADE is stopping... -- 14:17:32.088 DEBUG [9339]: Closing database connection -- 14:17:32.088 SQL [9339]: pgsql_close() -- 03:38:02.803 INFO [9336]: COREGRADE is starting... -- 03:38:02.804 INFO [9336]: Version from config: 1.0 -- 03:38:02.804 DEBUG [9336]: Connecting to database... -- 03:38:02.804 DEBUG [9336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:38:02.804 SQL [9336]: pgsql_db_connect() -- 03:38:02.808 DEBUG [9336]: Database connection successful -- 03:38:02.808 INFO [9336]: _SERVER found -- 03:38:02.808 INFO [9336]: REMOTE_ADDR = 192.168.1.13 -- 03:38:02.808 INFO [9336]: SERVER_NAME = oameye.works.coregrade.com -- 03:38:02.808 INFO [9336]: QUERY_STRING = /.well-known/acme-challenge/Ch_XKzj_-zV8DI3wQhr1h79MlM8JAuKE9zgaa2jLSA8 -- 03:38:02.808 INFO [9336]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 03:38:02.824 INFO [9336]: COREGRADE is stopping... -- 03:38:02.824 DEBUG [9336]: Closing database connection -- 03:38:02.824 SQL [9336]: pgsql_close() -- 03:38:03.170 INFO [9336]: COREGRADE is starting... -- 03:38:03.170 INFO [9336]: Version from config: 1.0 -- 03:38:03.171 DEBUG [9336]: Connecting to database... -- 03:38:03.171 DEBUG [9336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:38:03.171 SQL [9336]: pgsql_db_connect() -- 03:38:03.175 DEBUG [9336]: Database connection successful -- 03:38:03.175 INFO [9336]: _SERVER found -- 03:38:03.175 INFO [9336]: REMOTE_ADDR = 192.168.1.13 -- 03:38:03.175 INFO [9336]: SERVER_NAME = oameye.works.coregrade.com -- 03:38:03.175 INFO [9336]: QUERY_STRING = /.well-known/acme-challenge/Ch_XKzj_-zV8DI3wQhr1h79MlM8JAuKE9zgaa2jLSA8 -- 03:38:03.175 INFO [9336]: HTTP_X_FORWARDED_FOR = 18.194.58.132 -- 03:38:03.186 INFO [9336]: COREGRADE is stopping... -- 03:38:03.186 DEBUG [9336]: Closing database connection -- 03:38:03.186 SQL [9336]: pgsql_close() -- 03:38:03.212 INFO [9336]: COREGRADE is starting... -- 03:38:03.212 INFO [9336]: Version from config: 1.0 -- 03:38:03.212 DEBUG [9336]: Connecting to database... -- 03:38:03.212 DEBUG [9336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:38:03.212 SQL [9336]: pgsql_db_connect() -- 03:38:03.216 DEBUG [9336]: Database connection successful -- 03:38:03.216 INFO [9336]: _SERVER found -- 03:38:03.216 INFO [9336]: REMOTE_ADDR = 192.168.1.13 -- 03:38:03.216 INFO [9336]: SERVER_NAME = oameye.works.coregrade.com -- 03:38:03.216 INFO [9336]: QUERY_STRING = /.well-known/acme-challenge/Ch_XKzj_-zV8DI3wQhr1h79MlM8JAuKE9zgaa2jLSA8 -- 03:38:03.216 INFO [9336]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 03:38:03.227 INFO [9336]: COREGRADE is stopping... -- 03:38:03.228 DEBUG [9336]: Closing database connection -- 03:38:03.228 SQL [9336]: pgsql_close() -- 03:38:03.270 INFO [9373]: COREGRADE is starting... -- 03:38:03.270 INFO [9373]: Version from config: 1.0 -- 03:38:03.270 DEBUG [9373]: Connecting to database... -- 03:38:03.270 DEBUG [9373]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:38:03.270 SQL [9373]: pgsql_db_connect() -- 03:38:03.274 DEBUG [9373]: Database connection successful -- 03:38:03.274 INFO [9373]: _SERVER found -- 03:38:03.274 INFO [9373]: REMOTE_ADDR = 192.168.1.13 -- 03:38:03.274 INFO [9373]: SERVER_NAME = oameye.works.coregrade.com -- 03:38:03.274 INFO [9373]: QUERY_STRING = /.well-known/acme-challenge/Ch_XKzj_-zV8DI3wQhr1h79MlM8JAuKE9zgaa2jLSA8 -- 03:38:03.274 INFO [9373]: HTTP_X_FORWARDED_FOR = 34.222.229.130 -- 03:38:03.288 INFO [9373]: COREGRADE is stopping... -- 03:38:03.288 DEBUG [9373]: Closing database connection -- 03:38:03.288 SQL [9373]: pgsql_close() -- 03:39:09.215 INFO [9338]: COREGRADE is starting... -- 03:39:09.216 INFO [9338]: Version from config: 1.0 -- 03:39:09.216 DEBUG [9338]: Connecting to database... -- 03:39:09.216 DEBUG [9338]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:39:09.216 SQL [9338]: pgsql_db_connect() -- 03:39:09.220 DEBUG [9338]: Database connection successful -- 03:39:09.220 INFO [9338]: _SERVER found -- 03:39:09.220 INFO [9338]: REMOTE_ADDR = 192.168.1.13 -- 03:39:09.220 INFO [9338]: SERVER_NAME = oameye.works.coregrade.com -- 03:39:09.220 INFO [9338]: QUERY_STRING = -- 03:39:09.220 INFO [9338]: HTTP_X_FORWARDED_FOR = 209.17.97.66 -- 03:39:09.263 INFO [9338]: COREGRADE is stopping... -- 03:39:09.263 DEBUG [9338]: Closing database connection -- 03:39:09.263 SQL [9338]: pgsql_close() -- 08:16:29.497 INFO [5579]: COREGRADE is starting... -- 08:16:29.497 INFO [5579]: Version from config: 1.0 -- 08:16:29.497 DEBUG [5579]: Connecting to database... -- 08:16:29.497 DEBUG [5579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:16:29.498 SQL [5579]: pgsql_db_connect() -- 08:16:29.539 INFO [5579]: COREGRADE is starting... -- 08:16:29.540 INFO [5579]: Version from config: 1.0 -- 08:16:29.540 DEBUG [5579]: Connecting to database... -- 08:16:29.540 DEBUG [5579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:16:29.540 SQL [5579]: pgsql_db_connect() -- 08:16:29.544 DEBUG [5579]: Database connection successful -- 08:16:29.544 INFO [5579]: _SERVER found -- 08:16:29.544 INFO [5579]: REMOTE_ADDR = 192.168.1.13 -- 08:16:29.544 INFO [5579]: SERVER_NAME = oameye.works.coregrade.com -- 08:16:29.544 INFO [5579]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 08:16:29.544 INFO [5579]: QUERY_STRING = -- 08:16:29.544 INFO [5579]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:16:29.544 INFO [5579]: SystemStatus()09-09-********~************ -- 08:16:29.544 INFO [5579]: long coregrade_api_main(CVars in, CVars &out) -- 08:16:29.544 INFO [5579]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 08:16:29.544 INFO [5579]: account calls -- 08:16:29.544 INFO [5579]: account_calls() -- 08:16:29.544 INFO [5579]: LoginCoreGradeAccount() -- 08:16:29.544 FLOG_MAX [5579]: REQ_STRING(username) -- 08:16:29.544 FLOG_MAX [5579]: REQ_STRING(password) -- 08:16:29.544 FLOG_MAX [5579]: REQ_STRING(sessionid) -- 08:16:29.544 FLOG_MAX [5579]: long load_db_record( CVars &rec, const char * query, ... ) -- 08:16:29.544 SQL [5579]: pgsql_query() -- 08:16:29.544 SQL [5579]: About to run query: -- 08:16:29.544 SQL [5579]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 08:16:29.548 SQL [5579]: Found rows: 1 -- 08:16:29.548 FLOG_MAX [5579]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 08:16:29.548 INFO [5579]: long SessionCheck(long uid, const char *sessionid, int create ) -- 08:16:29.548 SQL [5579]: pgsql_exec() -- 08:16:29.548 SQL [5579]: About to run query: -- 08:16:29.548 SQL [5579]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 08:16:29.550 SQL [5579]: PQcmdTuples: 1 -- 08:16:29.550 SQL [5579]: Affected rows: 1 -- 08:16:29.550 SQL [5579]: pgsql_exec() -- 08:16:29.550 SQL [5579]: About to run query: -- 08:16:29.550 SQL [5579]: DELETE FROM members_session WHERE member_id=5 -- 08:16:29.550 SQL [5579]: PQcmdTuples: 0 -- 08:16:29.550 SQL [5579]: Affected rows: 0 -- 08:16:29.550 SQL [5579]: pgsql_query() -- 08:16:29.550 SQL [5579]: About to run query: -- 08:16:29.550 SQL [5579]: SELECT * FROM members_session WHERE member_id=5 AND session<>'E645F0886D25213E016479A9E12A7008' -- 08:16:29.551 SQL [5579]: Found rows: 0 -- 08:16:29.551 SQL [5579]: Found rows: 0 -- 08:16:29.551 FLOG_MAX [5579]: long load_db_record( CVars &rec, const char * query, ... ) -- 08:16:29.551 SQL [5579]: pgsql_query() -- 08:16:29.551 SQL [5579]: About to run query: -- 08:16:29.551 SQL [5579]: SELECT * FROM members_session WHERE member_id=5 AND session='E645F0886D25213E016479A9E12A7008' -- 08:16:29.551 SQL [5579]: Found rows: 0 -- 08:16:29.551 SQL [5579]: Found rows: 0 -- 08:16:29.551 FLOG_MAX [5579]: insert_db_record() -- 08:16:29.551 SQL [5579]: pgsql_exec() -- 08:16:29.551 SQL [5579]: About to run query: -- 08:16:29.551 SQL [5579]: INSERT INTO members_session (member_id,session) VALUES ('5','E645F0886D25213E016479A9E12A7008') -- 08:16:29.553 SQL [5579]: PQcmdTuples: 1 -- 08:16:29.553 SQL [5579]: Affected rows: 1 -- 08:16:29.553 FLOG_MAX [5579]: SELECT currval('members_session_id_seq') -- 08:16:29.553 SQL [5579]: pgsql_query() -- 08:16:29.553 SQL [5579]: About to run query: -- 08:16:29.553 SQL [5579]: SELECT currval('members_session_id_seq') -- 08:16:29.553 SQL [5579]: Found rows: 1 -- 08:16:29.553 INFO [5579]: CreateDefaultPage() -- 08:16:29.553 FLOG_MAX [5579]: long load_db_record( CVars &rec, const char * query, ... ) -- 08:16:29.553 SQL [5579]: pgsql_query() -- 08:16:29.553 SQL [5579]: About to run query: -- 08:16:29.553 SQL [5579]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 08:16:29.554 SQL [5579]: Found rows: 1 -- 08:16:29.554 FLOG_MAX [5579]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 08:16:29.554 SQL [5579]: pgsql_query() -- 08:16:29.554 SQL [5579]: About to run query: -- 08:16:29.554 SQL [5579]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 08:16:29.554 SQL [5579]: Found rows: 1 -- 08:16:29.554 INFO [5579]: /CreateDefaultPage() -- 08:16:29.554 INFO [5579]: /LoginCoreGradeAccount() -- 08:16:29.554 INFO [5579]: RET: added=2020-02-05 06:47:23.982154 -- 08:16:29.554 INFO [5579]: RET: email=ameye+11@chiefsoft.com -- 08:16:29.554 INFO [5579]: RET: firstname=Olu -- 08:16:29.554 INFO [5579]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 08:16:29.554 INFO [5579]: RET: id=5 -- 08:16:29.554 INFO [5579]: RET: last_login= -- 08:16:29.554 INFO [5579]: RET: lastname=Amey -- 08:16:29.554 INFO [5579]: RET: loc=192.168.1.13 -- 08:16:29.554 INFO [5579]: RET: member_id=5 -- 08:16:29.554 INFO [5579]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 08:16:29.554 INFO [5579]: RET: phone= -- 08:16:29.554 INFO [5579]: RET: pid= -- 08:16:29.554 INFO [5579]: RET: result=YES I GET TO BACK END -- 08:16:29.554 INFO [5579]: RET: sessionid=E645F0886D25213E016479A9E12A7008 -- 08:16:29.554 INFO [5579]: RET: status=1 -- 08:16:29.554 INFO [5579]: RET: stauts=OK -- 08:16:29.554 INFO [5579]: RET: username=ameye+11@chiefsoft.com -- 08:16:29.554 INFO [5579]: RET: verified= -- 08:16:29.556 INFO [5579]: COREGRADE is stopping... -- 08:16:29.556 DEBUG [5579]: Closing database connection -- 08:16:29.556 SQL [5579]: pgsql_close() -- 08:16:29.503 DEBUG [5579]: Database connection successful -- 08:16:29.503 INFO [5579]: _SERVER found -- 08:16:29.503 INFO [5579]: REMOTE_ADDR = 192.168.1.13 -- 08:16:29.503 INFO [5579]: SERVER_NAME = oameye.works.coregrade.com -- 08:16:29.503 INFO [5579]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 08:16:29.503 INFO [5579]: QUERY_STRING = /auth -- 08:16:29.503 INFO [5579]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:16:29.556 INFO [5579]: COREGRADE is stopping... -- 08:16:29.556 DEBUG [5579]: Closing database connection -- 08:16:29.556 SQL [5579]: pgsql_close() -- 08:16:29.577 INFO [5579]: COREGRADE is starting... -- 08:16:29.578 INFO [5579]: Version from config: 1.0 -- 08:16:29.578 DEBUG [5579]: Connecting to database... -- 08:16:29.578 DEBUG [5579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:16:29.578 SQL [5579]: pgsql_db_connect() -- 08:16:29.582 DEBUG [5579]: Database connection successful -- 08:16:29.582 INFO [5579]: _SERVER found -- 08:16:29.582 INFO [5579]: REMOTE_ADDR = 192.168.1.13 -- 08:16:29.582 INFO [5579]: SERVER_NAME = oameye.works.coregrade.com -- 08:16:29.582 INFO [5579]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=rbpem92j3de1c45a2ljtitn476pjovga -- 08:16:29.582 INFO [5579]: QUERY_STRING = /member/index -- 08:16:29.582 INFO [5579]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:16:29.622 INFO [5579]: COREGRADE is stopping... -- 08:16:29.622 DEBUG [5579]: Closing database connection -- 08:16:29.622 SQL [5579]: pgsql_close() -- 08:16:30.335 INFO [5580]: COREGRADE is starting... -- 08:16:30.336 INFO [5580]: Version from config: 1.0 -- 08:16:30.336 DEBUG [5580]: Connecting to database... -- 08:16:30.336 DEBUG [5580]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:16:30.336 SQL [5580]: pgsql_db_connect() -- 08:16:30.340 DEBUG [5580]: Database connection successful -- 08:16:30.340 INFO [5580]: _SERVER found -- 08:16:30.340 INFO [5580]: REMOTE_ADDR = 192.168.1.13 -- 08:16:30.340 INFO [5580]: SERVER_NAME = oameye.works.coregrade.com -- 08:16:30.340 INFO [5580]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=rbpem92j3de1c45a2ljtitn476pjovga -- 08:16:30.340 INFO [5580]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 08:16:30.340 INFO [5580]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:16:30.353 INFO [5580]: COREGRADE is stopping... -- 08:16:30.353 DEBUG [5580]: Closing database connection -- 08:16:30.353 SQL [5580]: pgsql_close() -- 08:16:30.358 INFO [9363]: COREGRADE is starting... -- 08:16:30.358 INFO [9363]: Version from config: 1.0 -- 08:16:30.358 DEBUG [9363]: Connecting to database... -- 08:16:30.358 DEBUG [9363]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:16:30.358 SQL [9363]: pgsql_db_connect() -- 08:16:30.362 DEBUG [9363]: Database connection successful -- 08:16:30.362 INFO [9363]: _SERVER found -- 08:16:30.362 INFO [9363]: REMOTE_ADDR = 192.168.1.13 -- 08:16:30.362 INFO [9363]: SERVER_NAME = oameye.works.coregrade.com -- 08:16:30.362 INFO [9363]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=rbpem92j3de1c45a2ljtitn476pjovga -- 08:16:30.362 INFO [9363]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 08:16:30.362 INFO [9363]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:16:30.374 INFO [9363]: COREGRADE is stopping... -- 08:16:30.375 DEBUG [9363]: Closing database connection -- 08:16:30.375 SQL [9363]: pgsql_close() -- 08:16:30.710 INFO [9339]: COREGRADE is starting... -- 08:16:30.711 INFO [9339]: Version from config: 1.0 -- 08:16:30.711 DEBUG [9339]: Connecting to database... -- 08:16:30.711 DEBUG [9339]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:16:30.711 SQL [9339]: pgsql_db_connect() -- 08:16:30.715 DEBUG [9339]: Database connection successful -- 08:16:30.715 INFO [9339]: _SERVER found -- 08:16:30.715 INFO [9339]: REMOTE_ADDR = 192.168.1.13 -- 08:16:30.715 INFO [9339]: SERVER_NAME = oameye.works.coregrade.com -- 08:16:30.715 INFO [9339]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=rbpem92j3de1c45a2ljtitn476pjovga -- 08:16:30.715 INFO [9339]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 08:16:30.715 INFO [9339]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:16:30.727 INFO [9339]: COREGRADE is stopping... -- 08:16:30.727 DEBUG [9339]: Closing database connection -- 08:16:30.727 SQL [9339]: pgsql_close() -- 08:16:31.864 INFO [9339]: COREGRADE is starting... -- 08:16:31.865 INFO [9339]: Version from config: 1.0 -- 08:16:31.865 DEBUG [9339]: Connecting to database... -- 08:16:31.865 DEBUG [9339]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:16:31.865 SQL [9339]: pgsql_db_connect() -- 08:16:31.869 DEBUG [9339]: Database connection successful -- 08:16:31.869 INFO [9339]: _SERVER found -- 08:16:31.869 INFO [9339]: REMOTE_ADDR = 192.168.1.13 -- 08:16:31.869 INFO [9339]: SERVER_NAME = oameye.works.coregrade.com -- 08:16:31.869 INFO [9339]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=rbpem92j3de1c45a2ljtitn476pjovga -- 08:16:31.869 INFO [9339]: QUERY_STRING = /member/page -- 08:16:31.869 INFO [9339]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:16:31.913 INFO [9339]: COREGRADE is stopping... -- 08:16:31.913 DEBUG [9339]: Closing database connection -- 08:16:31.913 SQL [9339]: pgsql_close() -- 08:16:32.169 INFO [9339]: COREGRADE is starting... -- 08:16:32.169 INFO [9339]: Version from config: 1.0 -- 08:16:32.169 DEBUG [9339]: Connecting to database... -- 08:16:32.169 DEBUG [9339]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:16:32.169 SQL [9339]: pgsql_db_connect() -- 08:16:32.173 DEBUG [9339]: Database connection successful -- 08:16:32.173 INFO [9339]: _SERVER found -- 08:16:32.173 INFO [9339]: REMOTE_ADDR = 192.168.1.13 -- 08:16:32.173 INFO [9339]: SERVER_NAME = oameye.works.coregrade.com -- 08:16:32.173 INFO [9339]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=rbpem92j3de1c45a2ljtitn476pjovga -- 08:16:32.173 INFO [9339]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 08:16:32.173 INFO [9339]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:16:32.185 INFO [9339]: COREGRADE is stopping... -- 08:16:32.185 DEBUG [9339]: Closing database connection -- 08:16:32.185 SQL [9339]: pgsql_close() -- 08:16:32.559 INFO [9339]: COREGRADE is starting... -- 08:16:32.559 INFO [9363]: COREGRADE is starting... -- 08:16:32.559 INFO [9339]: Version from config: 1.0 -- 08:16:32.559 DEBUG [9339]: Connecting to database... -- 08:16:32.559 DEBUG [9339]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:16:32.559 SQL [9339]: pgsql_db_connect() -- 08:16:32.559 INFO [9363]: Version from config: 1.0 -- 08:16:32.559 DEBUG [9363]: Connecting to database... -- 08:16:32.559 DEBUG [9363]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:16:32.559 SQL [9363]: pgsql_db_connect() -- 08:16:32.564 DEBUG [9339]: Database connection successful -- 08:16:32.564 INFO [9339]: _SERVER found -- 08:16:32.564 INFO [9339]: REMOTE_ADDR = 192.168.1.13 -- 08:16:32.564 INFO [9339]: SERVER_NAME = oameye.works.coregrade.com -- 08:16:32.564 INFO [9339]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=rbpem92j3de1c45a2ljtitn476pjovga -- 08:16:32.564 INFO [9339]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 08:16:32.564 INFO [9339]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:16:32.575 INFO [9339]: COREGRADE is stopping... -- 08:16:32.575 DEBUG [9339]: Closing database connection -- 08:16:32.575 SQL [9339]: pgsql_close() -- 08:16:32.564 DEBUG [9363]: Database connection successful -- 08:16:32.564 INFO [9363]: _SERVER found -- 08:16:32.564 INFO [9363]: REMOTE_ADDR = 192.168.1.13 -- 08:16:32.564 INFO [9363]: SERVER_NAME = oameye.works.coregrade.com -- 08:16:32.564 INFO [9363]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=rbpem92j3de1c45a2ljtitn476pjovga -- 08:16:32.564 INFO [9363]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 08:16:32.564 INFO [9363]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:16:32.575 INFO [9363]: COREGRADE is stopping... -- 08:16:32.575 DEBUG [9363]: Closing database connection -- 08:16:32.575 SQL [9363]: pgsql_close() -- 08:16:41.867 INFO [5583]: COREGRADE is starting... -- 08:16:41.867 INFO [5583]: Version from config: 1.0 -- 08:16:41.867 DEBUG [5583]: Connecting to database... -- 08:16:41.867 DEBUG [5583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:16:41.867 SQL [5583]: pgsql_db_connect() -- 08:16:41.871 DEBUG [5583]: Database connection successful -- 08:16:41.871 INFO [5583]: _SERVER found -- 08:16:41.871 INFO [5583]: REMOTE_ADDR = 192.168.1.13 -- 08:16:41.871 INFO [5583]: SERVER_NAME = oameye.works.coregrade.com -- 08:16:41.871 INFO [5583]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=rbpem92j3de1c45a2ljtitn476pjovga -- 08:16:41.871 INFO [5583]: QUERY_STRING = /member/viewCardAddAction -- 08:16:41.871 INFO [5583]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:16:41.907 INFO [5583]: COREGRADE is stopping... -- 08:16:41.907 DEBUG [5583]: Closing database connection -- 08:16:41.907 SQL [5583]: pgsql_close() -- 10:56:32.664 INFO [9336]: COREGRADE is starting... -- 10:56:32.664 INFO [9336]: Version from config: 1.0 -- 10:56:32.664 DEBUG [9336]: Connecting to database... -- 10:56:32.665 DEBUG [9336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:56:32.665 SQL [9336]: pgsql_db_connect() -- 10:56:32.669 DEBUG [9336]: Database connection successful -- 10:56:32.669 INFO [9336]: _SERVER found -- 10:56:32.669 INFO [9336]: REMOTE_ADDR = 192.168.1.13 -- 10:56:32.669 INFO [9336]: SERVER_NAME = oameye.works.coregrade.com -- 10:56:32.669 INFO [9336]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 10:56:32.670 INFO [9336]: QUERY_STRING = /auth -- 10:56:32.670 INFO [9336]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:56:32.717 INFO [9336]: COREGRADE is stopping... -- 10:56:32.717 DEBUG [9336]: Closing database connection -- 10:56:32.717 SQL [9336]: pgsql_close() -- 10:56:33.076 INFO [9336]: COREGRADE is starting... -- 10:56:33.077 INFO [9336]: Version from config: 1.0 -- 10:56:33.077 DEBUG [9336]: Connecting to database... -- 10:56:33.077 DEBUG [9336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:56:33.077 SQL [9336]: pgsql_db_connect() -- 10:56:33.081 DEBUG [9336]: Database connection successful -- 10:56:33.081 INFO [9336]: _SERVER found -- 10:56:33.081 INFO [9336]: REMOTE_ADDR = 192.168.1.13 -- 10:56:33.081 INFO [9336]: SERVER_NAME = oameye.works.coregrade.com -- 10:56:33.081 INFO [9336]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=o2c7jiha3kogbl1njmnojrk8hto9ciub -- 10:56:33.081 INFO [9336]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:56:33.081 INFO [9336]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:56:33.092 INFO [9336]: COREGRADE is stopping... -- 10:56:33.092 DEBUG [9336]: Closing database connection -- 10:56:33.092 SQL [9336]: pgsql_close() -- 10:56:33.220 INFO [9336]: COREGRADE is starting... -- 10:56:33.220 INFO [9336]: Version from config: 1.0 -- 10:56:33.220 DEBUG [9336]: Connecting to database... -- 10:56:33.220 DEBUG [9336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:56:33.220 SQL [9336]: pgsql_db_connect() -- 10:56:33.224 DEBUG [9336]: Database connection successful -- 10:56:33.224 INFO [9336]: _SERVER found -- 10:56:33.224 INFO [9336]: REMOTE_ADDR = 192.168.1.13 -- 10:56:33.224 INFO [9336]: SERVER_NAME = oameye.works.coregrade.com -- 10:56:33.224 INFO [9336]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=o2c7jiha3kogbl1njmnojrk8hto9ciub -- 10:56:33.224 INFO [9336]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:56:33.224 INFO [9336]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:56:33.235 INFO [9336]: COREGRADE is stopping... -- 10:56:33.235 DEBUG [9336]: Closing database connection -- 10:56:33.235 SQL [9336]: pgsql_close() -- 11:04:24.209 INFO [9373]: COREGRADE is starting... -- 11:04:24.210 INFO [9373]: Version from config: 1.0 -- 11:04:24.210 DEBUG [9373]: Connecting to database... -- 11:04:24.210 DEBUG [9373]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:04:24.210 SQL [9373]: pgsql_db_connect() -- 11:04:24.214 DEBUG [9373]: Database connection successful -- 11:04:24.214 INFO [9373]: _SERVER found -- 11:04:24.214 INFO [9373]: REMOTE_ADDR = 192.168.1.13 -- 11:04:24.214 INFO [9373]: SERVER_NAME = oameye.works.coregrade.com -- 11:04:24.214 INFO [9373]: QUERY_STRING = /solr/admin/info/system -- 11:04:24.214 INFO [9373]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 11:04:24.229 INFO [9373]: COREGRADE is stopping... -- 11:04:24.229 DEBUG [9373]: Closing database connection -- 11:04:24.229 SQL [9373]: pgsql_close() -- 11:12:08.626 INFO [9372]: COREGRADE is starting... -- 11:12:08.627 INFO [9372]: Version from config: 1.0 -- 11:12:08.627 DEBUG [9372]: Connecting to database... -- 11:12:08.627 DEBUG [9372]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:12:08.627 SQL [9372]: pgsql_db_connect() -- 11:12:08.631 DEBUG [9372]: Database connection successful -- 11:12:08.631 INFO [9372]: _SERVER found -- 11:12:08.631 INFO [9372]: REMOTE_ADDR = 192.168.1.13 -- 11:12:08.631 INFO [9372]: SERVER_NAME = oameye.works.coregrade.com -- 11:12:08.631 INFO [9372]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 11:12:08.631 INFO [9372]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 11:12:08.676 INFO [9372]: COREGRADE is stopping... -- 11:12:08.676 DEBUG [9372]: Closing database connection -- 11:12:08.676 SQL [9372]: pgsql_close() -- 11:12:10.079 INFO [9338]: COREGRADE is starting... -- 11:12:10.079 INFO [9338]: Version from config: 1.0 -- 11:12:10.079 DEBUG [9338]: Connecting to database... -- 11:12:10.079 DEBUG [9338]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:12:10.079 SQL [9338]: pgsql_db_connect() -- 11:12:10.083 DEBUG [9338]: Database connection successful -- 11:12:10.083 INFO [9338]: _SERVER found -- 11:12:10.083 INFO [9338]: REMOTE_ADDR = 192.168.1.13 -- 11:12:10.084 INFO [9338]: SERVER_NAME = oameye.works.coregrade.com -- 11:12:10.084 INFO [9338]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 11:12:10.084 INFO [9338]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 11:12:10.117 INFO [9338]: COREGRADE is stopping... -- 11:12:10.117 DEBUG [9338]: Closing database connection -- 11:12:10.117 SQL [9338]: pgsql_close() -- 11:15:21.996 INFO [5582]: COREGRADE is starting... -- 11:15:21.996 INFO [5582]: Version from config: 1.0 -- 11:15:21.996 DEBUG [5582]: Connecting to database... -- 11:15:21.996 DEBUG [5582]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:15:21.996 SQL [5582]: pgsql_db_connect() -- 11:15:22.000 DEBUG [5582]: Database connection successful -- 11:15:22.000 INFO [5582]: _SERVER found -- 11:15:22.000 INFO [5582]: REMOTE_ADDR = 192.168.1.13 -- 11:15:22.000 INFO [5582]: SERVER_NAME = oameye.works.coregrade.com -- 11:15:22.000 INFO [5582]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 11:15:22.000 INFO [5582]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 11:15:22.038 INFO [5582]: COREGRADE is stopping... -- 11:15:22.038 DEBUG [5582]: Closing database connection -- 11:15:22.038 SQL [5582]: pgsql_close() -- 11:26:42.333 INFO [5580]: COREGRADE is starting... -- 11:26:42.333 INFO [5580]: Version from config: 1.0 -- 11:26:42.333 DEBUG [5580]: Connecting to database... -- 11:26:42.333 DEBUG [5580]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:26:42.333 SQL [5580]: pgsql_db_connect() -- 11:26:42.338 DEBUG [5580]: Database connection successful -- 11:26:42.338 INFO [5580]: _SERVER found -- 11:26:42.338 INFO [5580]: REMOTE_ADDR = 192.168.1.13 -- 11:26:42.338 INFO [5580]: SERVER_NAME = oameye.works.coregrade.com -- 11:26:42.338 INFO [5580]: QUERY_STRING = -- 11:26:42.338 INFO [5580]: HTTP_X_FORWARDED_FOR = 51.15.27.138 -- 11:26:42.372 INFO [5580]: COREGRADE is stopping... -- 11:26:42.372 DEBUG [5580]: Closing database connection -- 11:26:42.372 SQL [5580]: pgsql_close() -- 11:26:43.009 INFO [5580]: COREGRADE is starting... -- 11:26:43.009 INFO [5580]: Version from config: 1.0 -- 11:26:43.009 DEBUG [5580]: Connecting to database... -- 11:26:43.009 DEBUG [5580]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:26:43.009 SQL [5580]: pgsql_db_connect() -- 11:26:43.013 DEBUG [5580]: Database connection successful -- 11:26:43.013 INFO [5580]: _SERVER found -- 11:26:43.013 INFO [5580]: REMOTE_ADDR = 192.168.1.13 -- 11:26:43.013 INFO [5580]: SERVER_NAME = oameye.works.coregrade.com -- 11:26:43.013 INFO [5580]: QUERY_STRING = -- 11:26:43.013 INFO [5580]: HTTP_X_FORWARDED_FOR = 51.15.27.138 -- 11:26:43.043 INFO [5580]: COREGRADE is stopping... -- 11:26:43.043 DEBUG [5580]: Closing database connection -- 11:26:43.043 SQL [5580]: pgsql_close() -- 13:11:34.682 INFO [5579]: COREGRADE is starting... -- 13:11:34.683 INFO [5579]: Version from config: 1.0 -- 13:11:34.683 DEBUG [5579]: Connecting to database... -- 13:11:34.683 DEBUG [5579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:11:34.683 SQL [5579]: pgsql_db_connect() -- 13:11:34.688 DEBUG [5579]: Database connection successful -- 13:11:34.688 INFO [5579]: _SERVER found -- 13:11:34.688 INFO [5579]: REMOTE_ADDR = 192.168.1.13 -- 13:11:34.688 INFO [5579]: SERVER_NAME = oameye.works.coregrade.com -- 13:11:34.688 INFO [5579]: QUERY_STRING = /member/mycalendar -- 13:11:34.688 INFO [5579]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:11:34.725 INFO [5579]: COREGRADE is stopping... -- 13:11:34.725 DEBUG [5579]: Closing database connection -- 13:11:34.725 SQL [5579]: pgsql_close() -- 13:11:34.777 INFO [5579]: COREGRADE is starting... -- 13:11:34.777 INFO [5579]: Version from config: 1.0 -- 13:11:34.777 DEBUG [5579]: Connecting to database... -- 13:11:34.777 DEBUG [5579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:11:34.777 SQL [5579]: pgsql_db_connect() -- 13:11:34.782 DEBUG [5579]: Database connection successful -- 13:11:34.782 INFO [5579]: _SERVER found -- 13:11:34.782 INFO [5579]: REMOTE_ADDR = 192.168.1.13 -- 13:11:34.782 INFO [5579]: SERVER_NAME = oameye.works.coregrade.com -- 13:11:34.782 INFO [5579]: HTTP_COOKIE = ci_session=1vitgmj1gkehk60v39unvhciro4rob7u -- 13:11:34.782 INFO [5579]: QUERY_STRING = -- 13:11:34.782 INFO [5579]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:11:34.813 INFO [5579]: COREGRADE is stopping... -- 13:11:34.814 DEBUG [5579]: Closing database connection -- 13:11:34.814 SQL [5579]: pgsql_close() -- 13:11:35.702 INFO [9363]: COREGRADE is starting... -- 13:11:35.702 INFO [9363]: Version from config: 1.0 -- 13:11:35.702 DEBUG [9363]: Connecting to database... -- 13:11:35.702 DEBUG [9363]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:11:35.702 SQL [9363]: pgsql_db_connect() -- 13:11:35.707 DEBUG [9363]: Database connection successful -- 13:11:35.707 INFO [9363]: _SERVER found -- 13:11:35.707 INFO [9363]: REMOTE_ADDR = 192.168.1.13 -- 13:11:35.707 INFO [9363]: SERVER_NAME = oameye.works.coregrade.com -- 13:11:35.707 INFO [9363]: HTTP_COOKIE = ci_session=1vitgmj1gkehk60v39unvhciro4rob7u -- 13:11:35.707 INFO [9363]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 13:11:35.707 INFO [9363]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:11:35.719 INFO [9363]: COREGRADE is stopping... -- 13:11:35.720 DEBUG [9363]: Closing database connection -- 13:11:35.720 SQL [9363]: pgsql_close() -- 13:11:35.782 INFO [9363]: COREGRADE is starting... -- 13:11:35.782 INFO [9363]: Version from config: 1.0 -- 13:11:35.782 DEBUG [9363]: Connecting to database... -- 13:11:35.782 DEBUG [9363]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:11:35.782 SQL [9363]: pgsql_db_connect() -- 13:11:35.787 DEBUG [9363]: Database connection successful -- 13:11:35.787 INFO [9363]: _SERVER found -- 13:11:35.787 INFO [9363]: REMOTE_ADDR = 192.168.1.13 -- 13:11:35.787 INFO [9363]: SERVER_NAME = oameye.works.coregrade.com -- 13:11:35.787 INFO [9363]: HTTP_COOKIE = ci_session=1vitgmj1gkehk60v39unvhciro4rob7u -- 13:11:35.787 INFO [9363]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:11:35.787 INFO [9363]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:11:35.798 INFO [9363]: COREGRADE is stopping... -- 13:11:35.798 DEBUG [9363]: Closing database connection -- 13:11:35.798 SQL [9363]: pgsql_close() -- 13:16:25.639 INFO [9336]: COREGRADE is starting... -- 13:16:25.639 INFO [9336]: Version from config: 1.0 -- 13:16:25.639 DEBUG [9336]: Connecting to database... -- 13:16:25.639 DEBUG [9336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:16:25.639 SQL [9336]: pgsql_db_connect() -- 13:16:25.646 INFO [9373]: COREGRADE is starting... -- 13:16:25.646 INFO [9373]: Version from config: 1.0 -- 13:16:25.646 DEBUG [9373]: Connecting to database... -- 13:16:25.646 DEBUG [9373]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:16:25.646 SQL [9373]: pgsql_db_connect() -- 13:16:25.646 DEBUG [9336]: Database connection successful -- 13:16:25.646 INFO [9336]: _SERVER found -- 13:16:25.646 INFO [9336]: REMOTE_ADDR = 192.168.1.13 -- 13:16:25.646 INFO [9336]: SERVER_NAME = oameye.works.coregrade.com -- 13:16:25.646 INFO [9336]: HTTP_COOKIE = ci_session=1vitgmj1gkehk60v39unvhciro4rob7u; _gid=GA1.2.906415667.1583345490; _ga=GA1.2.784606705.1583345490 -- 13:16:25.646 INFO [9336]: QUERY_STRING = /welcome/viewLogin -- 13:16:25.646 INFO [9336]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:16:25.685 INFO [9336]: COREGRADE is stopping... -- 13:16:25.685 DEBUG [9336]: Closing database connection -- 13:16:25.685 SQL [9336]: pgsql_close() -- 13:16:25.651 DEBUG [9373]: Database connection successful -- 13:16:25.651 INFO [9373]: _SERVER found -- 13:16:25.651 INFO [9373]: REMOTE_ADDR = 192.168.1.13 -- 13:16:25.651 INFO [9373]: SERVER_NAME = oameye.works.coregrade.com -- 13:16:25.651 INFO [9373]: HTTP_COOKIE = ci_session=1vitgmj1gkehk60v39unvhciro4rob7u; _gid=GA1.2.906415667.1583345490; _ga=GA1.2.784606705.1583345490 -- 13:16:25.651 INFO [9373]: QUERY_STRING = /auth -- 13:16:25.651 INFO [9373]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:16:25.693 INFO [9373]: COREGRADE is stopping... -- 13:16:25.694 DEBUG [9373]: Closing database connection -- 13:16:25.694 SQL [9373]: pgsql_close() -- 13:16:25.720 INFO [9373]: COREGRADE is starting... -- 13:16:25.720 INFO [9373]: Version from config: 1.0 -- 13:16:25.720 DEBUG [9373]: Connecting to database... -- 13:16:25.720 DEBUG [9373]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:16:25.720 SQL [9373]: pgsql_db_connect() -- 13:16:25.725 DEBUG [9373]: Database connection successful -- 13:16:25.725 INFO [9373]: _SERVER found -- 13:16:25.725 INFO [9373]: REMOTE_ADDR = 192.168.1.13 -- 13:16:25.725 INFO [9373]: SERVER_NAME = oameye.works.coregrade.com -- 13:16:25.725 INFO [9373]: HTTP_COOKIE = ci_session=1vitgmj1gkehk60v39unvhciro4rob7u; _gid=GA1.2.906415667.1583345490; _ga=GA1.2.784606705.1583345490 -- 13:16:25.725 INFO [9373]: QUERY_STRING = /auth/index -- 13:16:25.725 INFO [9373]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:16:25.764 INFO [9373]: COREGRADE is stopping... -- 13:16:25.764 DEBUG [9373]: Closing database connection -- 13:16:25.764 SQL [9373]: pgsql_close() -- 13:16:26.272 INFO [9372]: COREGRADE is starting... -- 13:16:26.272 INFO [9372]: Version from config: 1.0 -- 13:16:26.272 DEBUG [9372]: Connecting to database... -- 13:16:26.272 DEBUG [9372]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:16:26.272 SQL [9372]: pgsql_db_connect() -- 13:16:26.277 DEBUG [9372]: Database connection successful -- 13:16:26.277 INFO [9372]: _SERVER found -- 13:16:26.277 INFO [9372]: REMOTE_ADDR = 192.168.1.13 -- 13:16:26.277 INFO [9372]: SERVER_NAME = oameye.works.coregrade.com -- 13:16:26.277 INFO [9372]: HTTP_COOKIE = ci_session=1vitgmj1gkehk60v39unvhciro4rob7u; _gid=GA1.2.906415667.1583345490; _ga=GA1.2.784606705.1583345490 -- 13:16:26.277 INFO [9372]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:16:26.277 INFO [9372]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:16:26.290 INFO [9372]: COREGRADE is stopping... -- 13:16:26.290 DEBUG [9372]: Closing database connection -- 13:16:26.290 SQL [9372]: pgsql_close() -- 13:16:40.867 INFO [5580]: COREGRADE is starting... -- 13:16:40.867 INFO [5580]: Version from config: 1.0 -- 13:16:40.867 DEBUG [5580]: Connecting to database... -- 13:16:40.867 DEBUG [5580]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:16:40.867 SQL [5580]: pgsql_db_connect() -- 13:16:40.871 DEBUG [5580]: Database connection successful -- 13:16:40.871 INFO [5580]: _SERVER found -- 13:16:40.871 INFO [5580]: REMOTE_ADDR = 192.168.1.13 -- 13:16:40.871 INFO [5580]: SERVER_NAME = oameye.works.coregrade.com -- 13:16:40.871 INFO [5580]: HTTP_COOKIE = _ga=GA1.2.1272433689.1578861338 -- 13:16:40.871 INFO [5580]: QUERY_STRING = /auth -- 13:16:40.871 INFO [5580]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:16:40.904 INFO [5580]: COREGRADE is stopping... -- 13:16:40.904 DEBUG [5580]: Closing database connection -- 13:16:40.904 SQL [5580]: pgsql_close() -- 13:16:41.402 INFO [5579]: COREGRADE is starting... -- 13:16:41.403 INFO [5579]: Version from config: 1.0 -- 13:16:41.403 DEBUG [5579]: Connecting to database... -- 13:16:41.403 DEBUG [5579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:16:41.403 SQL [5579]: pgsql_db_connect() -- 13:16:41.407 DEBUG [5579]: Database connection successful -- 13:16:41.407 INFO [5579]: _SERVER found -- 13:16:41.407 INFO [5579]: REMOTE_ADDR = 192.168.1.13 -- 13:16:41.407 INFO [5579]: SERVER_NAME = oameye.works.coregrade.com -- 13:16:41.407 INFO [5579]: HTTP_COOKIE = _ga=GA1.2.1272433689.1578861338; ci_session=k78qm5imu8k36am72s5a1vuuqurvtbra -- 13:16:41.407 INFO [5579]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:16:41.407 INFO [5579]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:16:41.418 INFO [5579]: COREGRADE is stopping... -- 13:16:41.419 DEBUG [5579]: Closing database connection -- 13:16:41.419 SQL [5579]: pgsql_close() -- 13:16:51.759 INFO [9339]: COREGRADE is starting... -- 13:16:51.759 INFO [9339]: Version from config: 1.0 -- 13:16:51.759 DEBUG [9339]: Connecting to database... -- 13:16:51.759 DEBUG [9339]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:16:51.759 SQL [9339]: pgsql_db_connect() -- 13:16:51.794 INFO [9339]: COREGRADE is starting... -- 13:16:51.794 INFO [9339]: Version from config: 1.0 -- 13:16:51.794 DEBUG [9339]: Connecting to database... -- 13:16:51.794 DEBUG [9339]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:16:51.794 SQL [9339]: pgsql_db_connect() -- 13:16:51.798 DEBUG [9339]: Database connection successful -- 13:16:51.798 INFO [9339]: _SERVER found -- 13:16:51.798 INFO [9339]: REMOTE_ADDR = 192.168.1.13 -- 13:16:51.798 INFO [9339]: SERVER_NAME = oameye.works.coregrade.com -- 13:16:51.798 INFO [9339]: HTTP_COOKIE = _ga=GA1.2.1272433689.1578861338; ci_session=k78qm5imu8k36am72s5a1vuuqurvtbra -- 13:16:51.798 INFO [9339]: QUERY_STRING = -- 13:16:51.798 INFO [9339]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:16:51.798 INFO [9339]: SystemStatus()09-09-********~************ -- 13:16:51.798 INFO [9339]: long coregrade_api_main(CVars in, CVars &out) -- 13:16:51.798 INFO [9339]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 13:16:51.798 INFO [9339]: account calls -- 13:16:51.798 INFO [9339]: account_calls() -- 13:16:51.798 INFO [9339]: LoginCoreGradeAccount() -- 13:16:51.798 FLOG_MAX [9339]: REQ_STRING(username) -- 13:16:51.798 FLOG_MAX [9339]: REQ_STRING(password) -- 13:16:51.798 FLOG_MAX [9339]: REQ_STRING(sessionid) -- 13:16:51.798 FLOG_MAX [9339]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:16:51.798 SQL [9339]: pgsql_query() -- 13:16:51.798 SQL [9339]: About to run query: -- 13:16:51.798 SQL [9339]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw') AND password= md5('tokslaw001!') -- 13:16:51.802 SQL [9339]: Found rows: 0 -- 13:16:51.802 SQL [9339]: Found rows: 0 -- 13:16:51.802 INFO [9339]: long SessionCheck(long uid, const char *sessionid, int create ) -- 13:16:51.802 FLOG_MAX [9339]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:16:51.802 SQL [9339]: pgsql_query() -- 13:16:51.802 SQL [9339]: About to run query: -- 13:16:51.802 SQL [9339]: SELECT upper(md5( now()::text )) AS folder -- 13:16:51.803 SQL [9339]: Found rows: 1 -- 13:16:51.803 FLOG_MAX [9339]: load_db_record(SELECT upper(md5( now()::text )) AS folder) num_cols=1 -- 13:16:51.803 FLOG_MAX [9339]: update_db_record() -- 13:16:51.803 FLOG_MAX [9339]: Bad parameter exception: 'id' -- 13:16:51.803 INFO [9339]: RET: folder=7B3B37F55510E5BA3245A056065F73F3 -- 13:16:51.803 INFO [9339]: RET: member_id= -- 13:16:51.803 INFO [9339]: RET: result=YES I GET TO BACK END -- 13:16:51.803 INFO [9339]: RET: sessionid= -- 13:16:51.803 INFO [9339]: RET: status=Incorrect input parameter -- 13:16:51.804 INFO [9339]: COREGRADE is stopping... -- 13:16:51.804 DEBUG [9339]: Closing database connection -- 13:16:51.804 SQL [9339]: pgsql_close() -- 13:16:51.763 DEBUG [9339]: Database connection successful -- 13:16:51.763 INFO [9339]: _SERVER found -- 13:16:51.763 INFO [9339]: REMOTE_ADDR = 192.168.1.13 -- 13:16:51.763 INFO [9339]: SERVER_NAME = oameye.works.coregrade.com -- 13:16:51.763 INFO [9339]: HTTP_COOKIE = _ga=GA1.2.1272433689.1578861338; ci_session=k78qm5imu8k36am72s5a1vuuqurvtbra -- 13:16:51.763 INFO [9339]: QUERY_STRING = /auth -- 13:16:51.763 INFO [9339]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:16:51.805 INFO [9339]: COREGRADE is stopping... -- 13:16:51.805 DEBUG [9339]: Closing database connection -- 13:16:51.805 SQL [9339]: pgsql_close() -- 13:16:52.024 INFO [9339]: COREGRADE is starting... -- 13:16:52.025 INFO [9339]: Version from config: 1.0 -- 13:16:52.025 DEBUG [9339]: Connecting to database... -- 13:16:52.025 DEBUG [9339]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:16:52.025 SQL [9339]: pgsql_db_connect() -- 13:16:52.029 DEBUG [9339]: Database connection successful -- 13:16:52.029 INFO [9339]: _SERVER found -- 13:16:52.029 INFO [9339]: REMOTE_ADDR = 192.168.1.13 -- 13:16:52.029 INFO [9339]: SERVER_NAME = oameye.works.coregrade.com -- 13:16:52.029 INFO [9339]: HTTP_COOKIE = _ga=GA1.2.1272433689.1578861338; ci_session=k78qm5imu8k36am72s5a1vuuqurvtbra -- 13:16:52.029 INFO [9339]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:16:52.029 INFO [9339]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:16:52.040 INFO [9339]: COREGRADE is stopping... -- 13:16:52.040 DEBUG [9339]: Closing database connection -- 13:16:52.040 SQL [9339]: pgsql_close() -- 13:16:59.678 INFO [5583]: COREGRADE is starting... -- 13:16:59.678 INFO [5583]: Version from config: 1.0 -- 13:16:59.678 DEBUG [5583]: Connecting to database... -- 13:16:59.678 DEBUG [5583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:16:59.678 SQL [5583]: pgsql_db_connect() -- 13:16:59.715 INFO [5583]: COREGRADE is starting... -- 13:16:59.715 INFO [5583]: Version from config: 1.0 -- 13:16:59.715 DEBUG [5583]: Connecting to database... -- 13:16:59.715 DEBUG [5583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:16:59.715 SQL [5583]: pgsql_db_connect() -- 13:16:59.719 DEBUG [5583]: Database connection successful -- 13:16:59.719 INFO [5583]: _SERVER found -- 13:16:59.719 INFO [5583]: REMOTE_ADDR = 192.168.1.13 -- 13:16:59.719 INFO [5583]: SERVER_NAME = oameye.works.coregrade.com -- 13:16:59.719 INFO [5583]: HTTP_COOKIE = _ga=GA1.2.1272433689.1578861338; ci_session=k78qm5imu8k36am72s5a1vuuqurvtbra -- 13:16:59.719 INFO [5583]: QUERY_STRING = -- 13:16:59.719 INFO [5583]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:16:59.719 INFO [5583]: SystemStatus()09-09-********~************ -- 13:16:59.719 INFO [5583]: long coregrade_api_main(CVars in, CVars &out) -- 13:16:59.719 INFO [5583]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 13:16:59.719 INFO [5583]: account calls -- 13:16:59.719 INFO [5583]: account_calls() -- 13:16:59.719 INFO [5583]: LoginCoreGradeAccount() -- 13:16:59.719 FLOG_MAX [5583]: REQ_STRING(username) -- 13:16:59.719 FLOG_MAX [5583]: REQ_STRING(password) -- 13:16:59.719 FLOG_MAX [5583]: REQ_STRING(sessionid) -- 13:16:59.719 FLOG_MAX [5583]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:16:59.719 SQL [5583]: pgsql_query() -- 13:16:59.719 SQL [5583]: About to run query: -- 13:16:59.719 SQL [5583]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw') AND password= md5('tokslaw001') -- 13:16:59.722 SQL [5583]: Found rows: 0 -- 13:16:59.722 SQL [5583]: Found rows: 0 -- 13:16:59.723 INFO [5583]: long SessionCheck(long uid, const char *sessionid, int create ) -- 13:16:59.723 FLOG_MAX [5583]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:16:59.723 SQL [5583]: pgsql_query() -- 13:16:59.723 SQL [5583]: About to run query: -- 13:16:59.723 SQL [5583]: SELECT upper(md5( now()::text )) AS folder -- 13:16:59.723 SQL [5583]: Found rows: 1 -- 13:16:59.723 FLOG_MAX [5583]: load_db_record(SELECT upper(md5( now()::text )) AS folder) num_cols=1 -- 13:16:59.723 FLOG_MAX [5583]: update_db_record() -- 13:16:59.723 FLOG_MAX [5583]: Bad parameter exception: 'id' -- 13:16:59.723 INFO [5583]: RET: folder=4065DCFA2392538E3DE38EB647D8C760 -- 13:16:59.723 INFO [5583]: RET: member_id= -- 13:16:59.723 INFO [5583]: RET: result=YES I GET TO BACK END -- 13:16:59.723 INFO [5583]: RET: sessionid= -- 13:16:59.723 INFO [5583]: RET: status=Incorrect input parameter -- 13:16:59.724 INFO [5583]: COREGRADE is stopping... -- 13:16:59.724 DEBUG [5583]: Closing database connection -- 13:16:59.724 SQL [5583]: pgsql_close() -- 13:16:59.682 DEBUG [5583]: Database connection successful -- 13:16:59.682 INFO [5583]: _SERVER found -- 13:16:59.682 INFO [5583]: REMOTE_ADDR = 192.168.1.13 -- 13:16:59.682 INFO [5583]: SERVER_NAME = oameye.works.coregrade.com -- 13:16:59.682 INFO [5583]: HTTP_COOKIE = _ga=GA1.2.1272433689.1578861338; ci_session=k78qm5imu8k36am72s5a1vuuqurvtbra -- 13:16:59.682 INFO [5583]: QUERY_STRING = /auth -- 13:16:59.682 INFO [5583]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:16:59.725 INFO [5583]: COREGRADE is stopping... -- 13:16:59.725 DEBUG [5583]: Closing database connection -- 13:16:59.725 SQL [5583]: pgsql_close() -- 13:17:09.611 INFO [9363]: COREGRADE is starting... -- 13:17:09.611 INFO [9363]: Version from config: 1.0 -- 13:17:09.611 DEBUG [9363]: Connecting to database... -- 13:17:09.611 DEBUG [9363]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:17:09.611 SQL [9363]: pgsql_db_connect() -- 13:17:09.647 INFO [9363]: COREGRADE is starting... -- 13:17:09.647 INFO [9363]: Version from config: 1.0 -- 13:17:09.647 DEBUG [9363]: Connecting to database... -- 13:17:09.647 DEBUG [9363]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:17:09.647 SQL [9363]: pgsql_db_connect() -- 13:17:09.651 DEBUG [9363]: Database connection successful -- 13:17:09.651 INFO [9363]: _SERVER found -- 13:17:09.651 INFO [9363]: REMOTE_ADDR = 192.168.1.13 -- 13:17:09.651 INFO [9363]: SERVER_NAME = oameye.works.coregrade.com -- 13:17:09.651 INFO [9363]: HTTP_COOKIE = _ga=GA1.2.1272433689.1578861338; ci_session=k78qm5imu8k36am72s5a1vuuqurvtbra -- 13:17:09.651 INFO [9363]: QUERY_STRING = -- 13:17:09.651 INFO [9363]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:17:09.651 INFO [9363]: SystemStatus()09-09-********~************ -- 13:17:09.651 INFO [9363]: long coregrade_api_main(CVars in, CVars &out) -- 13:17:09.651 INFO [9363]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 13:17:09.651 INFO [9363]: account calls -- 13:17:09.651 INFO [9363]: account_calls() -- 13:17:09.651 INFO [9363]: LoginCoreGradeAccount() -- 13:17:09.651 FLOG_MAX [9363]: REQ_STRING(username) -- 13:17:09.651 FLOG_MAX [9363]: REQ_STRING(password) -- 13:17:09.651 FLOG_MAX [9363]: REQ_STRING(sessionid) -- 13:17:09.651 FLOG_MAX [9363]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:17:09.651 SQL [9363]: pgsql_query() -- 13:17:09.651 SQL [9363]: About to run query: -- 13:17:09.651 SQL [9363]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw') AND password= md5('tokslaw001!x') -- 13:17:09.654 SQL [9363]: Found rows: 0 -- 13:17:09.654 SQL [9363]: Found rows: 0 -- 13:17:09.654 INFO [9363]: long SessionCheck(long uid, const char *sessionid, int create ) -- 13:17:09.654 FLOG_MAX [9363]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:17:09.654 SQL [9363]: pgsql_query() -- 13:17:09.654 SQL [9363]: About to run query: -- 13:17:09.654 SQL [9363]: SELECT upper(md5( now()::text )) AS folder -- 13:17:09.654 SQL [9363]: Found rows: 1 -- 13:17:09.654 FLOG_MAX [9363]: load_db_record(SELECT upper(md5( now()::text )) AS folder) num_cols=1 -- 13:17:09.654 FLOG_MAX [9363]: update_db_record() -- 13:17:09.654 FLOG_MAX [9363]: Bad parameter exception: 'id' -- 13:17:09.655 INFO [9363]: RET: folder=4DA10FC29236BF40E6AC1B3FA0B4D152 -- 13:17:09.655 INFO [9363]: RET: member_id= -- 13:17:09.655 INFO [9363]: RET: result=YES I GET TO BACK END -- 13:17:09.655 INFO [9363]: RET: sessionid= -- 13:17:09.655 INFO [9363]: RET: status=Incorrect input parameter -- 13:17:09.656 INFO [9363]: COREGRADE is stopping... -- 13:17:09.656 DEBUG [9363]: Closing database connection -- 13:17:09.656 SQL [9363]: pgsql_close() -- 13:17:09.615 DEBUG [9363]: Database connection successful -- 13:17:09.615 INFO [9363]: _SERVER found -- 13:17:09.615 INFO [9363]: REMOTE_ADDR = 192.168.1.13 -- 13:17:09.615 INFO [9363]: SERVER_NAME = oameye.works.coregrade.com -- 13:17:09.615 INFO [9363]: HTTP_COOKIE = _ga=GA1.2.1272433689.1578861338; ci_session=k78qm5imu8k36am72s5a1vuuqurvtbra -- 13:17:09.615 INFO [9363]: QUERY_STRING = /auth -- 13:17:09.615 INFO [9363]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:17:09.656 INFO [9363]: COREGRADE is stopping... -- 13:17:09.656 DEBUG [9363]: Closing database connection -- 13:17:09.656 SQL [9363]: pgsql_close() -- 13:17:18.429 INFO [9373]: COREGRADE is starting... -- 13:17:18.429 INFO [9373]: Version from config: 1.0 -- 13:17:18.429 DEBUG [9373]: Connecting to database... -- 13:17:18.429 DEBUG [9373]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:17:18.429 SQL [9373]: pgsql_db_connect() -- 13:17:18.467 INFO [9373]: COREGRADE is starting... -- 13:17:18.467 INFO [9373]: Version from config: 1.0 -- 13:17:18.467 DEBUG [9373]: Connecting to database... -- 13:17:18.467 DEBUG [9373]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:17:18.467 SQL [9373]: pgsql_db_connect() -- 13:17:18.471 DEBUG [9373]: Database connection successful -- 13:17:18.471 INFO [9373]: _SERVER found -- 13:17:18.471 INFO [9373]: REMOTE_ADDR = 192.168.1.13 -- 13:17:18.471 INFO [9373]: SERVER_NAME = oameye.works.coregrade.com -- 13:17:18.471 INFO [9373]: HTTP_COOKIE = _ga=GA1.2.1272433689.1578861338; ci_session=k78qm5imu8k36am72s5a1vuuqurvtbra -- 13:17:18.471 INFO [9373]: QUERY_STRING = -- 13:17:18.471 INFO [9373]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:17:18.471 INFO [9373]: SystemStatus()09-09-********~************ -- 13:17:18.471 INFO [9373]: long coregrade_api_main(CVars in, CVars &out) -- 13:17:18.471 INFO [9373]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 13:17:18.471 INFO [9373]: account calls -- 13:17:18.471 INFO [9373]: account_calls() -- 13:17:18.471 INFO [9373]: LoginCoreGradeAccount() -- 13:17:18.471 FLOG_MAX [9373]: REQ_STRING(username) -- 13:17:18.471 FLOG_MAX [9373]: REQ_STRING(password) -- 13:17:18.471 FLOG_MAX [9373]: REQ_STRING(sessionid) -- 13:17:18.471 FLOG_MAX [9373]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:17:18.471 SQL [9373]: pgsql_query() -- 13:17:18.471 SQL [9373]: About to run query: -- 13:17:18.471 SQL [9373]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw') AND password= md5('tokslaw001') -- 13:17:18.474 SQL [9373]: Found rows: 0 -- 13:17:18.474 SQL [9373]: Found rows: 0 -- 13:17:18.474 INFO [9373]: long SessionCheck(long uid, const char *sessionid, int create ) -- 13:17:18.474 FLOG_MAX [9373]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:17:18.474 SQL [9373]: pgsql_query() -- 13:17:18.474 SQL [9373]: About to run query: -- 13:17:18.474 SQL [9373]: SELECT upper(md5( now()::text )) AS folder -- 13:17:18.474 SQL [9373]: Found rows: 1 -- 13:17:18.474 FLOG_MAX [9373]: load_db_record(SELECT upper(md5( now()::text )) AS folder) num_cols=1 -- 13:17:18.474 FLOG_MAX [9373]: update_db_record() -- 13:17:18.474 FLOG_MAX [9373]: Bad parameter exception: 'id' -- 13:17:18.475 INFO [9373]: RET: folder=0BEFF74137C08CD57DBFF20D49553005 -- 13:17:18.475 INFO [9373]: RET: member_id= -- 13:17:18.475 INFO [9373]: RET: result=YES I GET TO BACK END -- 13:17:18.475 INFO [9373]: RET: sessionid= -- 13:17:18.475 INFO [9373]: RET: status=Incorrect input parameter -- 13:17:18.476 INFO [9373]: COREGRADE is stopping... -- 13:17:18.476 DEBUG [9373]: Closing database connection -- 13:17:18.476 SQL [9373]: pgsql_close() -- 13:17:18.433 DEBUG [9373]: Database connection successful -- 13:17:18.433 INFO [9373]: _SERVER found -- 13:17:18.433 INFO [9373]: REMOTE_ADDR = 192.168.1.13 -- 13:17:18.433 INFO [9373]: SERVER_NAME = oameye.works.coregrade.com -- 13:17:18.433 INFO [9373]: HTTP_COOKIE = _ga=GA1.2.1272433689.1578861338; ci_session=k78qm5imu8k36am72s5a1vuuqurvtbra -- 13:17:18.433 INFO [9373]: QUERY_STRING = /auth -- 13:17:18.433 INFO [9373]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:17:18.476 INFO [9373]: COREGRADE is stopping... -- 13:17:18.476 DEBUG [9373]: Closing database connection -- 13:17:18.476 SQL [9373]: pgsql_close() -- 13:17:31.663 INFO [9338]: COREGRADE is starting... -- 13:17:31.663 INFO [9338]: Version from config: 1.0 -- 13:17:31.663 DEBUG [9338]: Connecting to database... -- 13:17:31.663 DEBUG [9338]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:17:31.663 SQL [9338]: pgsql_db_connect() -- 13:17:31.698 INFO [9338]: COREGRADE is starting... -- 13:17:31.699 INFO [9338]: Version from config: 1.0 -- 13:17:31.699 DEBUG [9338]: Connecting to database... -- 13:17:31.699 DEBUG [9338]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:17:31.699 SQL [9338]: pgsql_db_connect() -- 13:17:31.702 DEBUG [9338]: Database connection successful -- 13:17:31.702 INFO [9338]: _SERVER found -- 13:17:31.702 INFO [9338]: REMOTE_ADDR = 192.168.1.13 -- 13:17:31.702 INFO [9338]: SERVER_NAME = oameye.works.coregrade.com -- 13:17:31.702 INFO [9338]: HTTP_COOKIE = _ga=GA1.2.1272433689.1578861338; ci_session=k78qm5imu8k36am72s5a1vuuqurvtbra -- 13:17:31.702 INFO [9338]: QUERY_STRING = -- 13:17:31.702 INFO [9338]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:17:31.702 INFO [9338]: SystemStatus()09-09-********~************ -- 13:17:31.702 INFO [9338]: long coregrade_api_main(CVars in, CVars &out) -- 13:17:31.702 INFO [9338]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 13:17:31.702 INFO [9338]: account calls -- 13:17:31.702 INFO [9338]: account_calls() -- 13:17:31.702 INFO [9338]: LoginCoreGradeAccount() -- 13:17:31.702 FLOG_MAX [9338]: REQ_STRING(username) -- 13:17:31.703 FLOG_MAX [9338]: REQ_STRING(password) -- 13:17:31.703 FLOG_MAX [9338]: REQ_STRING(sessionid) -- 13:17:31.703 FLOG_MAX [9338]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:17:31.703 SQL [9338]: pgsql_query() -- 13:17:31.703 SQL [9338]: About to run query: -- 13:17:31.703 SQL [9338]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw') AND password= md5('tokslaw001') -- 13:17:31.706 SQL [9338]: Found rows: 0 -- 13:17:31.706 SQL [9338]: Found rows: 0 -- 13:17:31.706 INFO [9338]: long SessionCheck(long uid, const char *sessionid, int create ) -- 13:17:31.706 FLOG_MAX [9338]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:17:31.706 SQL [9338]: pgsql_query() -- 13:17:31.706 SQL [9338]: About to run query: -- 13:17:31.706 SQL [9338]: SELECT upper(md5( now()::text )) AS folder -- 13:17:31.706 SQL [9338]: Found rows: 1 -- 13:17:31.706 FLOG_MAX [9338]: load_db_record(SELECT upper(md5( now()::text )) AS folder) num_cols=1 -- 13:17:31.706 FLOG_MAX [9338]: update_db_record() -- 13:17:31.706 FLOG_MAX [9338]: Bad parameter exception: 'id' -- 13:17:31.706 INFO [9338]: RET: folder=E3FAF1E9DA2D18E7DF533E0C0065A860 -- 13:17:31.706 INFO [9338]: RET: member_id= -- 13:17:31.706 INFO [9338]: RET: result=YES I GET TO BACK END -- 13:17:31.706 INFO [9338]: RET: sessionid= -- 13:17:31.706 INFO [9338]: RET: status=Incorrect input parameter -- 13:17:31.707 INFO [9338]: COREGRADE is stopping... -- 13:17:31.707 DEBUG [9338]: Closing database connection -- 13:17:31.708 SQL [9338]: pgsql_close() -- 13:17:31.667 DEBUG [9338]: Database connection successful -- 13:17:31.667 INFO [9338]: _SERVER found -- 13:17:31.667 INFO [9338]: REMOTE_ADDR = 192.168.1.13 -- 13:17:31.667 INFO [9338]: SERVER_NAME = oameye.works.coregrade.com -- 13:17:31.667 INFO [9338]: HTTP_COOKIE = _ga=GA1.2.1272433689.1578861338; ci_session=k78qm5imu8k36am72s5a1vuuqurvtbra -- 13:17:31.667 INFO [9338]: QUERY_STRING = /auth -- 13:17:31.667 INFO [9338]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:17:31.708 INFO [9338]: COREGRADE is stopping... -- 13:17:31.708 DEBUG [9338]: Closing database connection -- 13:17:31.708 SQL [9338]: pgsql_close() -- 13:17:37.088 INFO [9336]: COREGRADE is starting... -- 13:17:37.088 INFO [9336]: Version from config: 1.0 -- 13:17:37.088 DEBUG [9336]: Connecting to database... -- 13:17:37.088 DEBUG [9336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:17:37.088 SQL [9336]: pgsql_db_connect() -- 13:17:37.092 DEBUG [9336]: Database connection successful -- 13:17:37.092 INFO [9336]: _SERVER found -- 13:17:37.092 INFO [9336]: REMOTE_ADDR = 192.168.1.13 -- 13:17:37.092 INFO [9336]: SERVER_NAME = oameye.works.coregrade.com -- 13:17:37.092 INFO [9336]: HTTP_COOKIE = _ga=GA1.2.1272433689.1578861338; ci_session=k78qm5imu8k36am72s5a1vuuqurvtbra -- 13:17:37.092 INFO [9336]: QUERY_STRING = /auth/resetpass -- 13:17:37.092 INFO [9336]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:17:37.125 INFO [9336]: COREGRADE is stopping... -- 13:17:37.125 DEBUG [9336]: Closing database connection -- 13:17:37.125 SQL [9336]: pgsql_close() -- 13:17:39.043 INFO [9336]: COREGRADE is starting... -- 13:17:39.044 INFO [9336]: Version from config: 1.0 -- 13:17:39.044 DEBUG [9336]: Connecting to database... -- 13:17:39.044 DEBUG [9336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:17:39.044 SQL [9336]: pgsql_db_connect() -- 13:17:39.048 DEBUG [9336]: Database connection successful -- 13:17:39.048 INFO [9336]: _SERVER found -- 13:17:39.048 INFO [9336]: REMOTE_ADDR = 192.168.1.13 -- 13:17:39.048 INFO [9336]: SERVER_NAME = oameye.works.coregrade.com -- 13:17:39.048 INFO [9336]: HTTP_COOKIE = _ga=GA1.2.1272433689.1578861338; ci_session=k78qm5imu8k36am72s5a1vuuqurvtbra -- 13:17:39.048 INFO [9336]: QUERY_STRING = /auth -- 13:17:39.048 INFO [9336]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:17:39.079 INFO [9336]: COREGRADE is stopping... -- 13:17:39.079 DEBUG [9336]: Closing database connection -- 13:17:39.079 SQL [9336]: pgsql_close() -- 17:15:36.587 INFO [5580]: COREGRADE is starting... -- 17:15:36.587 INFO [5580]: Version from config: 1.0 -- 17:15:36.588 DEBUG [5580]: Connecting to database... -- 17:15:36.588 DEBUG [5580]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:15:36.588 SQL [5580]: pgsql_db_connect() -- 17:15:36.592 DEBUG [5580]: Database connection successful -- 17:15:36.592 INFO [5580]: _SERVER found -- 17:15:36.592 INFO [5580]: REMOTE_ADDR = 192.168.1.13 -- 17:15:36.592 INFO [5580]: SERVER_NAME = oameye.works.coregrade.com -- 17:15:36.592 INFO [5580]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 17:15:36.592 INFO [5580]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 17:15:36.607 INFO [5580]: COREGRADE is stopping... -- 17:15:36.607 DEBUG [5580]: Closing database connection -- 17:15:36.607 SQL [5580]: pgsql_close() -- 19:40:00.007 INFO [9339]: COREGRADE is starting... -- 19:40:00.007 INFO [9339]: Version from config: 1.0 -- 19:40:00.007 DEBUG [9339]: Connecting to database... -- 19:40:00.007 DEBUG [9339]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:40:00.007 SQL [9339]: pgsql_db_connect() -- 19:40:00.013 DEBUG [9339]: Database connection successful -- 19:40:00.013 INFO [9339]: _SERVER found -- 19:40:00.013 INFO [9339]: REMOTE_ADDR = 192.168.1.13 -- 19:40:00.013 INFO [9339]: SERVER_NAME = tokslaw.works.coregrade.com -- 19:40:00.013 INFO [9339]: QUERY_STRING = -- 19:40:00.013 INFO [9339]: HTTP_X_FORWARDED_FOR = 64.225.13.154 -- 19:40:00.068 INFO [9339]: COREGRADE is stopping... -- 19:40:00.069 DEBUG [9339]: Closing database connection -- 19:40:00.069 SQL [9339]: pgsql_close() -- 19:40:52.322 INFO [5583]: COREGRADE is starting... -- 19:40:52.323 INFO [5583]: Version from config: 1.0 -- 19:40:52.323 DEBUG [5583]: Connecting to database... -- 19:40:52.323 DEBUG [5583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:40:52.323 SQL [5583]: pgsql_db_connect() -- 19:40:52.327 DEBUG [5583]: Database connection successful -- 19:40:52.327 INFO [5583]: _SERVER found -- 19:40:52.327 INFO [5583]: REMOTE_ADDR = 192.168.1.13 -- 19:40:52.327 INFO [5583]: SERVER_NAME = oameye.works.coregrade.com -- 19:40:52.327 INFO [5583]: QUERY_STRING = -- 19:40:52.327 INFO [5583]: HTTP_X_FORWARDED_FOR = 167.172.241.53 -- 19:40:52.360 INFO [5583]: COREGRADE is stopping... -- 19:40:52.360 DEBUG [5583]: Closing database connection -- 19:40:52.360 SQL [5583]: pgsql_close() -- 22:20:35.237 INFO [9363]: COREGRADE is starting... -- 22:20:35.238 INFO [9363]: Version from config: 1.0 -- 22:20:35.238 DEBUG [9363]: Connecting to database... -- 22:20:35.238 DEBUG [9363]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:20:35.238 SQL [9363]: pgsql_db_connect() -- 22:20:35.243 DEBUG [9363]: Database connection successful -- 22:20:35.243 INFO [9363]: _SERVER found -- 22:20:35.243 INFO [9363]: REMOTE_ADDR = 192.168.1.13 -- 22:20:35.243 INFO [9363]: SERVER_NAME = oameye.works.coregrade.com -- 22:20:35.243 INFO [9363]: QUERY_STRING = -- 22:20:35.243 INFO [9363]: HTTP_X_FORWARDED_FOR = 47.100.46.147 -- 22:20:35.278 INFO [9363]: COREGRADE is stopping... -- 22:20:35.278 DEBUG [9363]: Closing database connection -- 22:20:35.278 SQL [9363]: pgsql_close() -- 01:32:08.967 INFO [9373]: COREGRADE is starting... -- 01:32:08.967 INFO [9373]: Version from config: 1.0 -- 01:32:08.967 DEBUG [9373]: Connecting to database... -- 01:32:08.967 DEBUG [9373]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:32:08.967 SQL [9373]: pgsql_db_connect() -- 01:32:08.972 DEBUG [9373]: Database connection successful -- 01:32:08.972 INFO [9373]: _SERVER found -- 01:32:08.972 INFO [9373]: REMOTE_ADDR = 192.168.1.13 -- 01:32:08.972 INFO [9373]: SERVER_NAME = oameye.works.coregrade.com -- 01:32:08.972 INFO [9373]: QUERY_STRING = /.well-known/acme-challenge/eDGiIZ_ELZ_vF_TFkKitwDtxDEiXxe3kv0udfvScPOg -- 01:32:08.972 INFO [9373]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 01:32:08.987 INFO [9373]: COREGRADE is stopping... -- 01:32:08.987 DEBUG [9373]: Closing database connection -- 01:32:08.987 SQL [9373]: pgsql_close() -- 01:32:09.175 INFO [9373]: COREGRADE is starting... -- 01:32:09.175 INFO [9373]: Version from config: 1.0 -- 01:32:09.175 DEBUG [9373]: Connecting to database... -- 01:32:09.175 DEBUG [9373]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:32:09.175 SQL [9373]: pgsql_db_connect() -- 01:32:09.179 DEBUG [9373]: Database connection successful -- 01:32:09.179 INFO [9373]: _SERVER found -- 01:32:09.179 INFO [9373]: REMOTE_ADDR = 192.168.1.13 -- 01:32:09.179 INFO [9373]: SERVER_NAME = oameye.works.coregrade.com -- 01:32:09.179 INFO [9373]: QUERY_STRING = /.well-known/acme-challenge/eDGiIZ_ELZ_vF_TFkKitwDtxDEiXxe3kv0udfvScPOg -- 01:32:09.179 INFO [9373]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 01:32:09.190 INFO [9373]: COREGRADE is stopping... -- 01:32:09.190 DEBUG [9373]: Closing database connection -- 01:32:09.190 SQL [9373]: pgsql_close() -- 01:32:09.273 INFO [9373]: COREGRADE is starting... -- 01:32:09.273 INFO [9373]: Version from config: 1.0 -- 01:32:09.273 DEBUG [9373]: Connecting to database... -- 01:32:09.273 DEBUG [9373]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:32:09.273 SQL [9373]: pgsql_db_connect() -- 01:32:09.277 DEBUG [9373]: Database connection successful -- 01:32:09.277 INFO [9373]: _SERVER found -- 01:32:09.277 INFO [9373]: REMOTE_ADDR = 192.168.1.13 -- 01:32:09.277 INFO [9373]: SERVER_NAME = oameye.works.coregrade.com -- 01:32:09.277 INFO [9373]: QUERY_STRING = /.well-known/acme-challenge/eDGiIZ_ELZ_vF_TFkKitwDtxDEiXxe3kv0udfvScPOg -- 01:32:09.277 INFO [9373]: HTTP_X_FORWARDED_FOR = 18.194.58.132 -- 01:32:09.288 INFO [9373]: COREGRADE is stopping... -- 01:32:09.288 DEBUG [9373]: Closing database connection -- 01:32:09.288 SQL [9373]: pgsql_close() -- 06:22:05.795 INFO [9336]: COREGRADE is starting... -- 06:22:05.796 INFO [9336]: Version from config: 1.0 -- 06:22:05.796 DEBUG [9336]: Connecting to database... -- 06:22:05.796 DEBUG [9336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:22:05.796 SQL [9336]: pgsql_db_connect() -- 06:22:05.801 DEBUG [9336]: Database connection successful -- 06:22:05.801 INFO [9336]: _SERVER found -- 06:22:05.801 INFO [9336]: REMOTE_ADDR = 192.168.1.13 -- 06:22:05.801 INFO [9336]: SERVER_NAME = oameye.works.coregrade.com -- 06:22:05.801 INFO [9336]: QUERY_STRING = -- 06:22:05.801 INFO [9336]: HTTP_X_FORWARDED_FOR = 35.223.184.17 -- 06:22:05.840 INFO [9336]: COREGRADE is stopping... -- 06:22:05.840 DEBUG [9336]: Closing database connection -- 06:22:05.840 SQL [9336]: pgsql_close() -- 07:17:35.352 INFO [9372]: COREGRADE is starting... -- 07:17:35.352 INFO [9372]: Version from config: 1.0 -- 07:17:35.352 DEBUG [9372]: Connecting to database... -- 07:17:35.352 DEBUG [9372]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:17:35.352 SQL [9372]: pgsql_db_connect() -- 07:17:35.357 DEBUG [9372]: Database connection successful -- 07:17:35.357 INFO [9372]: _SERVER found -- 07:17:35.357 INFO [9372]: REMOTE_ADDR = 192.168.1.13 -- 07:17:35.357 INFO [9372]: SERVER_NAME = oameye.works.coregrade.com -- 07:17:35.357 INFO [9372]: QUERY_STRING = -- 07:17:35.357 INFO [9372]: HTTP_X_FORWARDED_FOR = 35.223.26.93 -- 07:17:35.395 INFO [9372]: COREGRADE is stopping... -- 07:17:35.395 DEBUG [9372]: Closing database connection -- 07:17:35.395 SQL [9372]: pgsql_close() -- 09:45:37.849 INFO [5582]: COREGRADE is starting... -- 09:45:37.850 INFO [5582]: Version from config: 1.0 -- 09:45:37.850 DEBUG [5582]: Connecting to database... -- 09:45:37.850 DEBUG [5582]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:45:37.850 SQL [5582]: pgsql_db_connect() -- 09:45:37.855 DEBUG [5582]: Database connection successful -- 09:45:37.855 INFO [5582]: _SERVER found -- 09:45:37.855 INFO [5582]: REMOTE_ADDR = 192.168.1.13 -- 09:45:37.855 INFO [5582]: SERVER_NAME = oameye.works.coregrade.com -- 09:45:37.855 INFO [5582]: QUERY_STRING = -- 09:45:37.855 INFO [5582]: HTTP_X_FORWARDED_FOR = 45.143.221.50 -- 09:45:37.895 INFO [5582]: COREGRADE is stopping... -- 09:45:37.895 DEBUG [5582]: Closing database connection -- 09:45:37.895 SQL [5582]: pgsql_close() -- 09:45:39.037 INFO [5582]: COREGRADE is starting... -- 09:45:39.037 INFO [5582]: Version from config: 1.0 -- 09:45:39.037 DEBUG [5582]: Connecting to database... -- 09:45:39.037 DEBUG [5582]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:45:39.037 SQL [5582]: pgsql_db_connect() -- 09:45:39.041 DEBUG [5582]: Database connection successful -- 09:45:39.041 INFO [5582]: _SERVER found -- 09:45:39.041 INFO [5582]: REMOTE_ADDR = 192.168.1.13 -- 09:45:39.041 INFO [5582]: SERVER_NAME = oameye.works.coregrade.com -- 09:45:39.041 INFO [5582]: QUERY_STRING = /vtigercrm/vtigerservice.php -- 09:45:39.041 INFO [5582]: HTTP_X_FORWARDED_FOR = 45.143.221.50 -- 09:45:39.053 INFO [5582]: COREGRADE is stopping... -- 09:45:39.053 DEBUG [5582]: Closing database connection -- 09:45:39.053 SQL [5582]: pgsql_close() -- 09:45:40.857 INFO [5582]: COREGRADE is starting... -- 09:45:40.857 INFO [5582]: Version from config: 1.0 -- 09:45:40.857 DEBUG [5582]: Connecting to database... -- 09:45:40.857 DEBUG [5582]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:45:40.857 SQL [5582]: pgsql_db_connect() -- 09:45:40.861 DEBUG [5582]: Database connection successful -- 09:45:40.861 INFO [5582]: _SERVER found -- 09:45:40.861 INFO [5582]: REMOTE_ADDR = 192.168.1.13 -- 09:45:40.861 INFO [5582]: SERVER_NAME = oameye.works.coregrade.com -- 09:45:40.861 INFO [5582]: QUERY_STRING = /a2billing/admin/Public/index.php -- 09:45:40.861 INFO [5582]: HTTP_X_FORWARDED_FOR = 45.143.221.50 -- 09:45:40.872 INFO [5582]: COREGRADE is stopping... -- 09:45:40.872 DEBUG [5582]: Closing database connection -- 09:45:40.872 SQL [5582]: pgsql_close() -- 13:05:39.852 INFO [5580]: COREGRADE is starting... -- 13:05:39.852 INFO [5580]: Version from config: 1.0 -- 13:05:39.852 DEBUG [5580]: Connecting to database... -- 13:05:39.852 DEBUG [5580]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:05:39.852 SQL [5580]: pgsql_db_connect() -- 13:05:39.857 DEBUG [5580]: Database connection successful -- 13:05:39.857 INFO [5580]: _SERVER found -- 13:05:39.857 INFO [5580]: REMOTE_ADDR = 192.168.1.13 -- 13:05:39.857 INFO [5580]: SERVER_NAME = oameye.works.coregrade.com -- 13:05:39.857 INFO [5580]: QUERY_STRING = -- 13:05:39.857 INFO [5580]: HTTP_X_FORWARDED_FOR = 195.154.63.222 -- 13:05:39.895 INFO [5580]: COREGRADE is stopping... -- 13:05:39.895 DEBUG [5580]: Closing database connection -- 13:05:39.895 SQL [5580]: pgsql_close() -- 16:14:13.985 INFO [5579]: COREGRADE is starting... -- 16:14:13.985 INFO [5579]: Version from config: 1.0 -- 16:14:13.985 DEBUG [5579]: Connecting to database... -- 16:14:13.985 DEBUG [5579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:14:13.985 SQL [5579]: pgsql_db_connect() -- 16:14:13.990 DEBUG [5579]: Database connection successful -- 16:14:13.990 INFO [5579]: _SERVER found -- 16:14:13.990 INFO [5579]: REMOTE_ADDR = 192.168.1.13 -- 16:14:13.990 INFO [5579]: SERVER_NAME = oameye.works.coregrade.com -- 16:14:13.990 INFO [5579]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.35110541.1583442849; _gat_gtag_UA_54829827_2=1 -- 16:14:13.990 INFO [5579]: QUERY_STRING = -- 16:14:13.990 INFO [5579]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:14:14.028 INFO [5579]: COREGRADE is stopping... -- 16:14:14.028 DEBUG [5579]: Closing database connection -- 16:14:14.028 SQL [5579]: pgsql_close() -- 16:14:14.457 INFO [9339]: COREGRADE is starting... -- 16:14:14.457 INFO [9339]: Version from config: 1.0 -- 16:14:14.457 DEBUG [9339]: Connecting to database... -- 16:14:14.457 DEBUG [9339]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:14:14.457 SQL [9339]: pgsql_db_connect() -- 16:14:14.462 DEBUG [9339]: Database connection successful -- 16:14:14.462 INFO [9339]: _SERVER found -- 16:14:14.462 INFO [9339]: REMOTE_ADDR = 192.168.1.13 -- 16:14:14.462 INFO [9339]: SERVER_NAME = oameye.works.coregrade.com -- 16:14:14.462 INFO [9339]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.35110541.1583442849; _gat_gtag_UA_54829827_2=1; ci_session=ldhpiibe0obd1lgr79684spk41rfju72 -- 16:14:14.462 INFO [9339]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 16:14:14.462 INFO [9339]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:14:14.474 INFO [9339]: COREGRADE is stopping... -- 16:14:14.474 DEBUG [9339]: Closing database connection -- 16:14:14.474 SQL [9339]: pgsql_close() -- 16:14:14.492 INFO [9363]: COREGRADE is starting... -- 16:14:14.492 INFO [9363]: Version from config: 1.0 -- 16:14:14.492 DEBUG [9363]: Connecting to database... -- 16:14:14.492 DEBUG [9363]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:14:14.492 SQL [9363]: pgsql_db_connect() -- 16:14:14.496 DEBUG [9363]: Database connection successful -- 16:14:14.496 INFO [9363]: _SERVER found -- 16:14:14.496 INFO [9363]: REMOTE_ADDR = 192.168.1.13 -- 16:14:14.496 INFO [9363]: SERVER_NAME = oameye.works.coregrade.com -- 16:14:14.496 INFO [9363]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.35110541.1583442849; _gat_gtag_UA_54829827_2=1; ci_session=ldhpiibe0obd1lgr79684spk41rfju72 -- 16:14:14.496 INFO [9363]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:14:14.496 INFO [9363]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:14:14.510 INFO [9363]: COREGRADE is stopping... -- 16:14:14.510 DEBUG [9363]: Closing database connection -- 16:14:14.510 SQL [9363]: pgsql_close() -- 19:23:23.996 INFO [9372]: COREGRADE is starting... -- 19:23:23.997 INFO [9372]: Version from config: 1.0 -- 19:23:23.997 DEBUG [9372]: Connecting to database... -- 19:23:23.997 DEBUG [9372]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:23:23.997 SQL [9372]: pgsql_db_connect() -- 19:23:24.001 DEBUG [9372]: Database connection successful -- 19:23:24.002 INFO [9372]: _SERVER found -- 19:23:24.002 INFO [9372]: REMOTE_ADDR = 192.168.1.13 -- 19:23:24.002 INFO [9372]: SERVER_NAME = oameye.works.coregrade.com -- 19:23:24.002 INFO [9372]: QUERY_STRING = /TP/public/index.php -- 19:23:24.002 INFO [9372]: HTTP_X_FORWARDED_FOR = 106.13.220.170 -- 19:23:24.016 INFO [9372]: COREGRADE is stopping... -- 19:23:24.016 DEBUG [9372]: Closing database connection -- 19:23:24.016 SQL [9372]: pgsql_close() -- 19:23:40.028 INFO [5582]: COREGRADE is starting... -- 19:23:40.028 INFO [5582]: Version from config: 1.0 -- 19:23:40.028 DEBUG [5582]: Connecting to database... -- 19:23:40.028 DEBUG [5582]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:23:40.028 SQL [5582]: pgsql_db_connect() -- 19:23:40.032 DEBUG [5582]: Database connection successful -- 19:23:40.032 INFO [5582]: _SERVER found -- 19:23:40.032 INFO [5582]: REMOTE_ADDR = 192.168.1.13 -- 19:23:40.032 INFO [5582]: SERVER_NAME = oameye.works.coregrade.com -- 19:23:40.032 INFO [5582]: QUERY_STRING = -- 19:23:40.032 INFO [5582]: HTTP_X_FORWARDED_FOR = 106.13.220.170 -- 19:23:40.074 INFO [5582]: COREGRADE is stopping... -- 19:23:40.074 DEBUG [5582]: Closing database connection -- 19:23:40.074 SQL [5582]: pgsql_close() -- 22:19:58.547 INFO [27883]: COREGRADE is starting... -- 22:19:58.547 INFO [27883]: Version from config: 1.0 -- 22:19:58.547 DEBUG [27883]: Connecting to database... -- 22:19:58.547 DEBUG [27883]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:19:58.547 SQL [27883]: pgsql_db_connect() -- 22:19:58.551 DEBUG [27883]: Database connection successful -- 22:19:58.551 INFO [27883]: _SERVER found -- 22:19:58.551 INFO [27883]: REMOTE_ADDR = 192.168.1.13 -- 22:19:58.551 INFO [27883]: SERVER_NAME = oameye.works.coregrade.com -- 22:19:58.551 INFO [27883]: QUERY_STRING = /.well-known/acme-challenge/bJvVPBdoM0nZzFok6ICMFMBEjYFZ-uD9NTzPGg5t1pc -- 22:19:58.551 INFO [27883]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 22:19:58.566 INFO [27883]: COREGRADE is stopping... -- 22:19:58.566 DEBUG [27883]: Closing database connection -- 22:19:58.566 SQL [27883]: pgsql_close() -- 22:19:58.702 INFO [27883]: COREGRADE is starting... -- 22:19:58.703 INFO [27883]: Version from config: 1.0 -- 22:19:58.703 DEBUG [27883]: Connecting to database... -- 22:19:58.703 DEBUG [27883]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:19:58.703 SQL [27883]: pgsql_db_connect() -- 22:19:58.707 DEBUG [27883]: Database connection successful -- 22:19:58.707 INFO [27883]: _SERVER found -- 22:19:58.707 INFO [27883]: REMOTE_ADDR = 192.168.1.13 -- 22:19:58.707 INFO [27883]: SERVER_NAME = oameye.works.coregrade.com -- 22:19:58.707 INFO [27883]: QUERY_STRING = /.well-known/acme-challenge/bJvVPBdoM0nZzFok6ICMFMBEjYFZ-uD9NTzPGg5t1pc -- 22:19:58.707 INFO [27883]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 22:19:58.719 INFO [27883]: COREGRADE is stopping... -- 22:19:58.720 DEBUG [27883]: Closing database connection -- 22:19:58.720 SQL [27883]: pgsql_close() -- 22:19:58.757 INFO [27883]: COREGRADE is starting... -- 22:19:58.757 INFO [27883]: Version from config: 1.0 -- 22:19:58.757 DEBUG [27883]: Connecting to database... -- 22:19:58.757 DEBUG [27883]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:19:58.757 SQL [27883]: pgsql_db_connect() -- 22:19:58.762 DEBUG [27883]: Database connection successful -- 22:19:58.762 INFO [27883]: _SERVER found -- 22:19:58.762 INFO [27883]: REMOTE_ADDR = 192.168.1.13 -- 22:19:58.762 INFO [27883]: SERVER_NAME = oameye.works.coregrade.com -- 22:19:58.762 INFO [27883]: QUERY_STRING = /.well-known/acme-challenge/bJvVPBdoM0nZzFok6ICMFMBEjYFZ-uD9NTzPGg5t1pc -- 22:19:58.762 INFO [27883]: HTTP_X_FORWARDED_FOR = 34.222.229.130 -- 22:19:58.776 INFO [27883]: COREGRADE is stopping... -- 22:19:58.776 DEBUG [27883]: Closing database connection -- 22:19:58.776 SQL [27883]: pgsql_close() -- 23:35:58.183 INFO [9373]: COREGRADE is starting... -- 23:35:58.184 INFO [9373]: Version from config: 1.0 -- 23:35:58.184 DEBUG [9373]: Connecting to database... -- 23:35:58.184 DEBUG [9373]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:35:58.184 SQL [9373]: pgsql_db_connect() -- 23:35:58.189 DEBUG [9373]: Database connection successful -- 23:35:58.189 INFO [9373]: _SERVER found -- 23:35:58.189 INFO [9373]: REMOTE_ADDR = 192.168.1.13 -- 23:35:58.189 INFO [9373]: SERVER_NAME = oameye.works.coregrade.com -- 23:35:58.189 INFO [9373]: QUERY_STRING = -- 23:35:58.189 INFO [9373]: HTTP_X_FORWARDED_FOR = 169.197.108.6 -- 23:35:58.227 INFO [9373]: COREGRADE is stopping... -- 23:35:58.227 DEBUG [9373]: Closing database connection -- 23:35:58.227 SQL [9373]: pgsql_close() -- 05:46:36.821 INFO [5579]: COREGRADE is starting... -- 05:46:36.822 INFO [5579]: Version from config: 1.0 -- 05:46:36.822 DEBUG [5579]: Connecting to database... -- 05:46:36.822 DEBUG [5579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:46:36.822 SQL [5579]: pgsql_db_connect() -- 05:46:36.827 DEBUG [5579]: Database connection successful -- 05:46:36.827 INFO [5579]: _SERVER found -- 05:46:36.827 INFO [5579]: REMOTE_ADDR = 192.168.1.13 -- 05:46:36.827 INFO [5579]: SERVER_NAME = oameye.works.coregrade.com -- 05:46:36.827 INFO [5579]: QUERY_STRING = -- 05:46:36.827 INFO [5579]: HTTP_X_FORWARDED_FOR = 221.192.134.90 -- 05:46:36.863 INFO [5579]: COREGRADE is stopping... -- 05:46:36.863 DEBUG [5579]: Closing database connection -- 05:46:36.863 SQL [5579]: pgsql_close() -- 17:39:12.051 INFO [9338]: COREGRADE is starting... -- 17:39:12.052 INFO [9338]: Version from config: 1.0 -- 17:39:12.052 DEBUG [9338]: Connecting to database... -- 17:39:12.052 DEBUG [9338]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:39:12.052 SQL [9338]: pgsql_db_connect() -- 17:39:12.056 DEBUG [9338]: Database connection successful -- 17:39:12.056 INFO [9338]: _SERVER found -- 17:39:12.056 INFO [9338]: REMOTE_ADDR = 192.168.1.13 -- 17:39:12.056 INFO [9338]: SERVER_NAME = oameye.works.coregrade.com -- 17:39:12.056 INFO [9338]: QUERY_STRING = -- 17:39:12.056 INFO [9338]: HTTP_X_FORWARDED_FOR = 195.142.115.111 -- 17:39:12.092 INFO [9338]: COREGRADE is stopping... -- 17:39:12.092 DEBUG [9338]: Closing database connection -- 17:39:12.092 SQL [9338]: pgsql_close() -- 19:56:54.160 INFO [9363]: COREGRADE is starting... -- 19:56:54.160 INFO [9363]: Version from config: 1.0 -- 19:56:54.160 DEBUG [9363]: Connecting to database... -- 19:56:54.160 DEBUG [9363]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:54.160 SQL [9363]: pgsql_db_connect() -- 19:56:54.165 DEBUG [9363]: Database connection successful -- 19:56:54.165 INFO [9363]: _SERVER found -- 19:56:54.165 INFO [9363]: REMOTE_ADDR = 192.168.1.13 -- 19:56:54.165 INFO [9363]: SERVER_NAME = oameye.works.coregrade.com -- 19:56:54.165 INFO [9363]: QUERY_STRING = -- 19:56:54.165 INFO [9363]: HTTP_X_FORWARDED_FOR = 122.228.19.79 -- 19:56:54.201 INFO [9363]: COREGRADE is stopping... -- 19:56:54.201 DEBUG [9363]: Closing database connection -- 19:56:54.201 SQL [9363]: pgsql_close() -- 20:31:04.452 INFO [5582]: COREGRADE is starting... -- 20:31:04.453 INFO [5582]: Version from config: 1.0 -- 20:31:04.453 DEBUG [5582]: Connecting to database... -- 20:31:04.453 DEBUG [5582]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:31:04.453 SQL [5582]: pgsql_db_connect() -- 20:31:04.457 DEBUG [5582]: Database connection successful -- 20:31:04.457 INFO [5582]: _SERVER found -- 20:31:04.457 INFO [5582]: REMOTE_ADDR = 192.168.1.13 -- 20:31:04.457 INFO [5582]: SERVER_NAME = oameye.works.coregrade.com -- 20:31:04.457 INFO [5582]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 20:31:04.457 INFO [5582]: QUERY_STRING = -- 20:31:04.457 INFO [5582]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:31:04.496 INFO [5582]: COREGRADE is stopping... -- 20:31:04.496 DEBUG [5582]: Closing database connection -- 20:31:04.496 SQL [5582]: pgsql_close() -- 20:31:05.082 INFO [27883]: COREGRADE is starting... -- 20:31:05.082 INFO [27883]: Version from config: 1.0 -- 20:31:05.083 DEBUG [27883]: Connecting to database... -- 20:31:05.083 DEBUG [27883]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:31:05.083 SQL [27883]: pgsql_db_connect() -- 20:31:05.087 DEBUG [27883]: Database connection successful -- 20:31:05.087 INFO [27883]: _SERVER found -- 20:31:05.087 INFO [27883]: REMOTE_ADDR = 192.168.1.13 -- 20:31:05.087 INFO [27883]: SERVER_NAME = oameye.works.coregrade.com -- 20:31:05.087 INFO [27883]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=9o45qlpt0fqlt2dfetfillvhmbss5b98 -- 20:31:05.087 INFO [27883]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 20:31:05.087 INFO [27883]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:31:05.100 INFO [27883]: COREGRADE is stopping... -- 20:31:05.100 DEBUG [27883]: Closing database connection -- 20:31:05.100 SQL [27883]: pgsql_close() -- 20:31:05.104 INFO [27883]: COREGRADE is starting... -- 20:31:05.105 INFO [27883]: Version from config: 1.0 -- 20:31:05.105 DEBUG [27883]: Connecting to database... -- 20:31:05.105 DEBUG [27883]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:31:05.105 SQL [27883]: pgsql_db_connect() -- 20:31:05.109 DEBUG [27883]: Database connection successful -- 20:31:05.109 INFO [27883]: _SERVER found -- 20:31:05.109 INFO [27883]: REMOTE_ADDR = 192.168.1.13 -- 20:31:05.109 INFO [27883]: SERVER_NAME = oameye.works.coregrade.com -- 20:31:05.109 INFO [27883]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=9o45qlpt0fqlt2dfetfillvhmbss5b98 -- 20:31:05.109 INFO [27883]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:31:05.109 INFO [27883]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:31:05.121 INFO [27883]: COREGRADE is stopping... -- 20:31:05.121 DEBUG [27883]: Closing database connection -- 20:31:05.121 SQL [27883]: pgsql_close() -- 20:31:09.543 INFO [27883]: COREGRADE is starting... -- 20:31:09.543 INFO [27883]: Version from config: 1.0 -- 20:31:09.543 DEBUG [27883]: Connecting to database... -- 20:31:09.543 DEBUG [27883]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:31:09.543 SQL [27883]: pgsql_db_connect() -- 20:31:09.548 INFO [5583]: COREGRADE is starting... -- 20:31:09.548 INFO [5583]: Version from config: 1.0 -- 20:31:09.548 DEBUG [5583]: Connecting to database... -- 20:31:09.548 DEBUG [5583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:31:09.548 SQL [5583]: pgsql_db_connect() -- 20:31:09.547 DEBUG [27883]: Database connection successful -- 20:31:09.547 INFO [27883]: _SERVER found -- 20:31:09.547 INFO [27883]: REMOTE_ADDR = 192.168.1.13 -- 20:31:09.547 INFO [27883]: SERVER_NAME = oameye.works.coregrade.com -- 20:31:09.547 INFO [27883]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=9o45qlpt0fqlt2dfetfillvhmbss5b98; _gid=GA1.2.1498242409.1583544667; _gat_gtag_UA_54829827_2=1 -- 20:31:09.547 INFO [27883]: QUERY_STRING = /welcome/viewLogin -- 20:31:09.547 INFO [27883]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:31:09.583 INFO [27883]: COREGRADE is stopping... -- 20:31:09.583 DEBUG [27883]: Closing database connection -- 20:31:09.583 SQL [27883]: pgsql_close() -- 20:31:09.553 DEBUG [5583]: Database connection successful -- 20:31:09.553 INFO [5583]: _SERVER found -- 20:31:09.553 INFO [5583]: REMOTE_ADDR = 192.168.1.13 -- 20:31:09.553 INFO [5583]: SERVER_NAME = oameye.works.coregrade.com -- 20:31:09.553 INFO [5583]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=9o45qlpt0fqlt2dfetfillvhmbss5b98; _gid=GA1.2.1498242409.1583544667; _gat_gtag_UA_54829827_2=1 -- 20:31:09.553 INFO [5583]: QUERY_STRING = /auth -- 20:31:09.553 INFO [5583]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:31:09.587 INFO [5583]: COREGRADE is stopping... -- 20:31:09.587 DEBUG [5583]: Closing database connection -- 20:31:09.587 SQL [5583]: pgsql_close() -- 20:31:09.598 INFO [5583]: COREGRADE is starting... -- 20:31:09.599 INFO [5583]: Version from config: 1.0 -- 20:31:09.599 DEBUG [5583]: Connecting to database... -- 20:31:09.599 DEBUG [5583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:31:09.599 SQL [5583]: pgsql_db_connect() -- 20:31:09.603 DEBUG [5583]: Database connection successful -- 20:31:09.603 INFO [5583]: _SERVER found -- 20:31:09.603 INFO [5583]: REMOTE_ADDR = 192.168.1.13 -- 20:31:09.603 INFO [5583]: SERVER_NAME = oameye.works.coregrade.com -- 20:31:09.603 INFO [5583]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=9o45qlpt0fqlt2dfetfillvhmbss5b98; _gid=GA1.2.1498242409.1583544667; _gat_gtag_UA_54829827_2=1 -- 20:31:09.603 INFO [5583]: QUERY_STRING = /auth/index -- 20:31:09.603 INFO [5583]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:31:09.634 INFO [5583]: COREGRADE is stopping... -- 20:31:09.634 DEBUG [5583]: Closing database connection -- 20:31:09.634 SQL [5583]: pgsql_close() -- 20:31:09.837 INFO [5583]: COREGRADE is starting... -- 20:31:09.837 INFO [5583]: Version from config: 1.0 -- 20:31:09.837 DEBUG [5583]: Connecting to database... -- 20:31:09.837 DEBUG [5583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:31:09.837 SQL [5583]: pgsql_db_connect() -- 20:31:09.841 DEBUG [5583]: Database connection successful -- 20:31:09.841 INFO [5583]: _SERVER found -- 20:31:09.841 INFO [5583]: REMOTE_ADDR = 192.168.1.13 -- 20:31:09.841 INFO [5583]: SERVER_NAME = oameye.works.coregrade.com -- 20:31:09.841 INFO [5583]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=9o45qlpt0fqlt2dfetfillvhmbss5b98; _gid=GA1.2.1498242409.1583544667; _gat_gtag_UA_54829827_2=1 -- 20:31:09.841 INFO [5583]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 20:31:09.841 INFO [5583]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:31:09.852 INFO [5583]: COREGRADE is stopping... -- 20:31:09.852 DEBUG [5583]: Closing database connection -- 20:31:09.853 SQL [5583]: pgsql_close() -- 20:31:11.595 INFO [5583]: COREGRADE is starting... -- 20:31:11.595 INFO [5583]: Version from config: 1.0 -- 20:31:11.595 DEBUG [5583]: Connecting to database... -- 20:31:11.595 DEBUG [5583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:31:11.595 SQL [5583]: pgsql_db_connect() -- 20:31:11.630 INFO [5583]: COREGRADE is starting... -- 20:31:11.631 INFO [5583]: Version from config: 1.0 -- 20:31:11.631 DEBUG [5583]: Connecting to database... -- 20:31:11.631 DEBUG [5583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:31:11.631 SQL [5583]: pgsql_db_connect() -- 20:31:11.635 DEBUG [5583]: Database connection successful -- 20:31:11.635 INFO [5583]: _SERVER found -- 20:31:11.635 INFO [5583]: REMOTE_ADDR = 192.168.1.13 -- 20:31:11.635 INFO [5583]: SERVER_NAME = oameye.works.coregrade.com -- 20:31:11.635 INFO [5583]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=9o45qlpt0fqlt2dfetfillvhmbss5b98; _gid=GA1.2.1498242409.1583544667; _gat_gtag_UA_54829827_2=1 -- 20:31:11.635 INFO [5583]: QUERY_STRING = -- 20:31:11.635 INFO [5583]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:31:11.635 INFO [5583]: SystemStatus()09-09-********~************ -- 20:31:11.635 INFO [5583]: long coregrade_api_main(CVars in, CVars &out) -- 20:31:11.635 INFO [5583]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 20:31:11.635 INFO [5583]: account calls -- 20:31:11.635 INFO [5583]: account_calls() -- 20:31:11.635 INFO [5583]: LoginCoreGradeAccount() -- 20:31:11.635 FLOG_MAX [5583]: REQ_STRING(username) -- 20:31:11.635 FLOG_MAX [5583]: REQ_STRING(password) -- 20:31:11.635 FLOG_MAX [5583]: REQ_STRING(sessionid) -- 20:31:11.635 FLOG_MAX [5583]: long load_db_record( CVars &rec, const char * query, ... ) -- 20:31:11.635 SQL [5583]: pgsql_query() -- 20:31:11.635 SQL [5583]: About to run query: -- 20:31:11.635 SQL [5583]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 20:31:11.639 SQL [5583]: Found rows: 1 -- 20:31:11.639 FLOG_MAX [5583]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 20:31:11.639 INFO [5583]: long SessionCheck(long uid, const char *sessionid, int create ) -- 20:31:11.639 SQL [5583]: pgsql_exec() -- 20:31:11.639 SQL [5583]: About to run query: -- 20:31:11.639 SQL [5583]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 20:31:11.660 SQL [5583]: PQcmdTuples: 1 -- 20:31:11.660 SQL [5583]: Affected rows: 1 -- 20:31:11.660 SQL [5583]: pgsql_exec() -- 20:31:11.660 SQL [5583]: About to run query: -- 20:31:11.660 SQL [5583]: DELETE FROM members_session WHERE member_id=5 -- 20:31:11.660 SQL [5583]: PQcmdTuples: 0 -- 20:31:11.660 SQL [5583]: Affected rows: 0 -- 20:31:11.660 SQL [5583]: pgsql_query() -- 20:31:11.660 SQL [5583]: About to run query: -- 20:31:11.660 SQL [5583]: SELECT * FROM members_session WHERE member_id=5 AND session<>'42D413C42D96714454E87AA9EF0DA26A' -- 20:31:11.661 SQL [5583]: Found rows: 0 -- 20:31:11.661 SQL [5583]: Found rows: 0 -- 20:31:11.661 FLOG_MAX [5583]: long load_db_record( CVars &rec, const char * query, ... ) -- 20:31:11.661 SQL [5583]: pgsql_query() -- 20:31:11.661 SQL [5583]: About to run query: -- 20:31:11.661 SQL [5583]: SELECT * FROM members_session WHERE member_id=5 AND session='42D413C42D96714454E87AA9EF0DA26A' -- 20:31:11.661 SQL [5583]: Found rows: 0 -- 20:31:11.661 SQL [5583]: Found rows: 0 -- 20:31:11.661 FLOG_MAX [5583]: insert_db_record() -- 20:31:11.661 SQL [5583]: pgsql_exec() -- 20:31:11.661 SQL [5583]: About to run query: -- 20:31:11.661 SQL [5583]: INSERT INTO members_session (member_id,session) VALUES ('5','42D413C42D96714454E87AA9EF0DA26A') -- 20:31:11.670 SQL [5583]: PQcmdTuples: 1 -- 20:31:11.670 SQL [5583]: Affected rows: 1 -- 20:31:11.670 FLOG_MAX [5583]: SELECT currval('members_session_id_seq') -- 20:31:11.670 SQL [5583]: pgsql_query() -- 20:31:11.670 SQL [5583]: About to run query: -- 20:31:11.670 SQL [5583]: SELECT currval('members_session_id_seq') -- 20:31:11.670 SQL [5583]: Found rows: 1 -- 20:31:11.670 INFO [5583]: CreateDefaultPage() -- 20:31:11.670 FLOG_MAX [5583]: long load_db_record( CVars &rec, const char * query, ... ) -- 20:31:11.670 SQL [5583]: pgsql_query() -- 20:31:11.670 SQL [5583]: About to run query: -- 20:31:11.670 SQL [5583]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 20:31:11.670 SQL [5583]: Found rows: 1 -- 20:31:11.670 FLOG_MAX [5583]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 20:31:11.670 SQL [5583]: pgsql_query() -- 20:31:11.670 SQL [5583]: About to run query: -- 20:31:11.670 SQL [5583]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 20:31:11.671 SQL [5583]: Found rows: 1 -- 20:31:11.671 INFO [5583]: /CreateDefaultPage() -- 20:31:11.671 INFO [5583]: /LoginCoreGradeAccount() -- 20:31:11.671 INFO [5583]: RET: added=2020-02-05 06:47:23.982154 -- 20:31:11.671 INFO [5583]: RET: email=ameye+11@chiefsoft.com -- 20:31:11.671 INFO [5583]: RET: firstname=Olu -- 20:31:11.671 INFO [5583]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 20:31:11.671 INFO [5583]: RET: id=5 -- 20:31:11.671 INFO [5583]: RET: last_login= -- 20:31:11.671 INFO [5583]: RET: lastname=Amey -- 20:31:11.671 INFO [5583]: RET: loc=192.168.1.13 -- 20:31:11.671 INFO [5583]: RET: member_id=5 -- 20:31:11.671 INFO [5583]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 20:31:11.671 INFO [5583]: RET: phone= -- 20:31:11.671 INFO [5583]: RET: pid= -- 20:31:11.671 INFO [5583]: RET: result=YES I GET TO BACK END -- 20:31:11.671 INFO [5583]: RET: sessionid=42D413C42D96714454E87AA9EF0DA26A -- 20:31:11.671 INFO [5583]: RET: status=1 -- 20:31:11.671 INFO [5583]: RET: stauts=OK -- 20:31:11.671 INFO [5583]: RET: username=ameye+11@chiefsoft.com -- 20:31:11.671 INFO [5583]: RET: verified= -- 20:31:11.673 INFO [5583]: COREGRADE is stopping... -- 20:31:11.673 DEBUG [5583]: Closing database connection -- 20:31:11.673 SQL [5583]: pgsql_close() -- 20:31:11.600 DEBUG [5583]: Database connection successful -- 20:31:11.600 INFO [5583]: _SERVER found -- 20:31:11.600 INFO [5583]: REMOTE_ADDR = 192.168.1.13 -- 20:31:11.600 INFO [5583]: SERVER_NAME = oameye.works.coregrade.com -- 20:31:11.600 INFO [5583]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=9o45qlpt0fqlt2dfetfillvhmbss5b98; _gid=GA1.2.1498242409.1583544667; _gat_gtag_UA_54829827_2=1 -- 20:31:11.600 INFO [5583]: QUERY_STRING = /auth -- 20:31:11.600 INFO [5583]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:31:11.673 INFO [5583]: COREGRADE is stopping... -- 20:31:11.673 DEBUG [5583]: Closing database connection -- 20:31:11.673 SQL [5583]: pgsql_close() -- 20:31:11.682 INFO [5583]: COREGRADE is starting... -- 20:31:11.682 INFO [5583]: Version from config: 1.0 -- 20:31:11.683 DEBUG [5583]: Connecting to database... -- 20:31:11.683 DEBUG [5583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:31:11.683 SQL [5583]: pgsql_db_connect() -- 20:31:11.686 DEBUG [5583]: Database connection successful -- 20:31:11.686 INFO [5583]: _SERVER found -- 20:31:11.686 INFO [5583]: REMOTE_ADDR = 192.168.1.13 -- 20:31:11.686 INFO [5583]: SERVER_NAME = oameye.works.coregrade.com -- 20:31:11.686 INFO [5583]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=9o45qlpt0fqlt2dfetfillvhmbss5b98; _gid=GA1.2.1498242409.1583544667; _gat_gtag_UA_54829827_2=1 -- 20:31:11.686 INFO [5583]: QUERY_STRING = /member/index -- 20:31:11.686 INFO [5583]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:31:11.727 INFO [5583]: COREGRADE is stopping... -- 20:31:11.727 DEBUG [5583]: Closing database connection -- 20:31:11.727 SQL [5583]: pgsql_close() -- 20:31:12.149 INFO [5583]: COREGRADE is starting... -- 20:31:12.149 INFO [5583]: Version from config: 1.0 -- 20:31:12.149 DEBUG [5583]: Connecting to database... -- 20:31:12.149 DEBUG [5583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:31:12.149 SQL [5583]: pgsql_db_connect() -- 20:31:12.153 DEBUG [5583]: Database connection successful -- 20:31:12.153 INFO [5583]: _SERVER found -- 20:31:12.153 INFO [5583]: REMOTE_ADDR = 192.168.1.13 -- 20:31:12.153 INFO [5583]: SERVER_NAME = oameye.works.coregrade.com -- 20:31:12.153 INFO [5583]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=9o45qlpt0fqlt2dfetfillvhmbss5b98; _gid=GA1.2.1498242409.1583544667; _gat_gtag_UA_54829827_2=1 -- 20:31:12.153 INFO [5583]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:31:12.153 INFO [5583]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:31:12.164 INFO [5583]: COREGRADE is stopping... -- 20:31:12.164 DEBUG [5583]: Closing database connection -- 20:31:12.164 SQL [5583]: pgsql_close() -- 20:32:35.909 INFO [5580]: COREGRADE is starting... -- 20:32:35.910 INFO [5580]: Version from config: 1.0 -- 20:32:35.910 DEBUG [5580]: Connecting to database... -- 20:32:35.910 DEBUG [5580]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:32:35.910 SQL [5580]: pgsql_db_connect() -- 20:32:35.914 DEBUG [5580]: Database connection successful -- 20:32:35.914 INFO [5580]: _SERVER found -- 20:32:35.914 INFO [5580]: REMOTE_ADDR = 192.168.1.13 -- 20:32:35.914 INFO [5580]: SERVER_NAME = oameye.works.coregrade.com -- 20:32:35.914 INFO [5580]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=9o45qlpt0fqlt2dfetfillvhmbss5b98; _gid=GA1.2.1498242409.1583544667 -- 20:32:35.914 INFO [5580]: QUERY_STRING = /member/index -- 20:32:35.914 INFO [5580]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:32:35.957 INFO [5580]: COREGRADE is stopping... -- 20:32:35.957 DEBUG [5580]: Closing database connection -- 20:32:35.957 SQL [5580]: pgsql_close() -- 20:32:37.907 INFO [5580]: COREGRADE is starting... -- 20:32:37.907 INFO [5580]: Version from config: 1.0 -- 20:32:37.907 DEBUG [5580]: Connecting to database... -- 20:32:37.907 DEBUG [5580]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:32:37.907 SQL [5580]: pgsql_db_connect() -- 20:32:37.911 DEBUG [5580]: Database connection successful -- 20:32:37.911 INFO [5580]: _SERVER found -- 20:32:37.911 INFO [5580]: REMOTE_ADDR = 192.168.1.13 -- 20:32:37.911 INFO [5580]: SERVER_NAME = oameye.works.coregrade.com -- 20:32:37.911 INFO [5580]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=9o45qlpt0fqlt2dfetfillvhmbss5b98; _gid=GA1.2.1498242409.1583544667 -- 20:32:37.911 INFO [5580]: QUERY_STRING = /member/page -- 20:32:37.911 INFO [5580]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:32:37.953 INFO [5580]: COREGRADE is stopping... -- 20:32:37.953 DEBUG [5580]: Closing database connection -- 20:32:37.953 SQL [5580]: pgsql_close() -- 20:32:41.023 INFO [5580]: COREGRADE is starting... -- 20:32:41.024 INFO [5580]: Version from config: 1.0 -- 20:32:41.024 DEBUG [5580]: Connecting to database... -- 20:32:41.024 DEBUG [5580]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:32:41.024 SQL [5580]: pgsql_db_connect() -- 20:32:41.028 DEBUG [5580]: Database connection successful -- 20:32:41.028 INFO [5580]: _SERVER found -- 20:32:41.028 INFO [5580]: REMOTE_ADDR = 192.168.1.13 -- 20:32:41.028 INFO [5580]: SERVER_NAME = oameye.works.coregrade.com -- 20:32:41.028 INFO [5580]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=9o45qlpt0fqlt2dfetfillvhmbss5b98; _gid=GA1.2.1498242409.1583544667 -- 20:32:41.028 INFO [5580]: QUERY_STRING = /member/viewCardAddAction -- 20:32:41.028 INFO [5580]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:32:41.059 INFO [5580]: COREGRADE is stopping... -- 20:32:41.059 DEBUG [5580]: Closing database connection -- 20:32:41.059 SQL [5580]: pgsql_close() -- 20:32:57.260 INFO [5582]: COREGRADE is starting... -- 20:32:57.261 INFO [5582]: Version from config: 1.0 -- 20:32:57.261 DEBUG [5582]: Connecting to database... -- 20:32:57.261 DEBUG [5582]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:32:57.261 SQL [5582]: pgsql_db_connect() -- 20:32:57.265 DEBUG [5582]: Database connection successful -- 20:32:57.265 INFO [5582]: _SERVER found -- 20:32:57.265 INFO [5582]: REMOTE_ADDR = 192.168.1.13 -- 20:32:57.265 INFO [5582]: SERVER_NAME = oameye.works.coregrade.com -- 20:32:57.265 INFO [5582]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=9o45qlpt0fqlt2dfetfillvhmbss5b98; _gid=GA1.2.1498242409.1583544667 -- 20:32:57.265 INFO [5582]: QUERY_STRING = /member/addPageCards -- 20:32:57.265 INFO [5582]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:32:57.299 INFO [5582]: COREGRADE is stopping... -- 20:32:57.299 DEBUG [5582]: Closing database connection -- 20:32:57.299 SQL [5582]: pgsql_close() -- 20:32:57.365 INFO [5582]: COREGRADE is starting... -- 20:32:57.365 INFO [5582]: Version from config: 1.0 -- 20:32:57.365 DEBUG [5582]: Connecting to database... -- 20:32:57.365 DEBUG [5582]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:32:57.365 SQL [5582]: pgsql_db_connect() -- 20:32:57.369 DEBUG [5582]: Database connection successful -- 20:32:57.369 INFO [5582]: _SERVER found -- 20:32:57.369 INFO [5582]: REMOTE_ADDR = 192.168.1.13 -- 20:32:57.369 INFO [5582]: SERVER_NAME = oameye.works.coregrade.com -- 20:32:57.369 INFO [5582]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=9o45qlpt0fqlt2dfetfillvhmbss5b98; _gid=GA1.2.1498242409.1583544667 -- 20:32:57.369 INFO [5582]: QUERY_STRING = /member/upload -- 20:32:57.369 INFO [5582]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:32:57.432 INFO [5582]: COREGRADE is stopping... -- 20:32:57.432 DEBUG [5582]: Closing database connection -- 20:32:57.432 SQL [5582]: pgsql_close() -- 22:55:13.647 INFO [27883]: COREGRADE is starting... -- 22:55:13.647 INFO [27883]: Version from config: 1.0 -- 22:55:13.647 DEBUG [27883]: Connecting to database... -- 22:55:13.647 DEBUG [27883]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:55:13.647 SQL [27883]: pgsql_db_connect() -- 22:55:13.652 DEBUG [27883]: Database connection successful -- 22:55:13.652 INFO [27883]: _SERVER found -- 22:55:13.652 INFO [27883]: REMOTE_ADDR = 192.168.1.13 -- 22:55:13.652 INFO [27883]: SERVER_NAME = tokslaw.works.coregrade.com -- 22:55:13.652 INFO [27883]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194 -- 22:55:13.652 INFO [27883]: QUERY_STRING = -- 22:55:13.652 INFO [27883]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:55:13.694 INFO [27883]: COREGRADE is stopping... -- 22:55:13.694 DEBUG [27883]: Closing database connection -- 22:55:13.694 SQL [27883]: pgsql_close() -- 22:55:14.471 INFO [9338]: COREGRADE is starting... -- 22:55:14.471 INFO [9338]: Version from config: 1.0 -- 22:55:14.471 DEBUG [9338]: Connecting to database... -- 22:55:14.472 DEBUG [9338]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:55:14.472 SQL [9338]: pgsql_db_connect() -- 22:55:14.476 DEBUG [9338]: Database connection successful -- 22:55:14.476 INFO [9338]: _SERVER found -- 22:55:14.476 INFO [9338]: REMOTE_ADDR = 192.168.1.13 -- 22:55:14.476 INFO [9338]: SERVER_NAME = tokslaw.works.coregrade.com -- 22:55:14.476 INFO [9338]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; ci_session=eoccmn7ullqcnkk4ji9g5djfvr4c0mql; _gid=GA1.2.1619635686.1583553314; _gat_gtag_UA_54829827_2=1 -- 22:55:14.476 INFO [9338]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 22:55:14.476 INFO [9338]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:55:14.488 INFO [9338]: COREGRADE is stopping... -- 22:55:14.488 DEBUG [9338]: Closing database connection -- 22:55:14.488 SQL [9338]: pgsql_close() -- 22:55:14.527 INFO [9338]: COREGRADE is starting... -- 22:55:14.527 INFO [9338]: Version from config: 1.0 -- 22:55:14.527 DEBUG [9338]: Connecting to database... -- 22:55:14.527 DEBUG [9338]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:55:14.527 SQL [9338]: pgsql_db_connect() -- 22:55:14.531 DEBUG [9338]: Database connection successful -- 22:55:14.531 INFO [9338]: _SERVER found -- 22:55:14.531 INFO [9338]: REMOTE_ADDR = 192.168.1.13 -- 22:55:14.531 INFO [9338]: SERVER_NAME = tokslaw.works.coregrade.com -- 22:55:14.531 INFO [9338]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; ci_session=eoccmn7ullqcnkk4ji9g5djfvr4c0mql; _gid=GA1.2.1619635686.1583553314; _gat_gtag_UA_54829827_2=1 -- 22:55:14.531 INFO [9338]: QUERY_STRING = /assets/img/footer_1.jpg -- 22:55:14.531 INFO [9338]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:55:14.542 INFO [9338]: COREGRADE is stopping... -- 22:55:14.543 DEBUG [9338]: Closing database connection -- 22:55:14.543 SQL [9338]: pgsql_close() -- 22:55:17.899 INFO [27883]: COREGRADE is starting... -- 22:55:17.900 INFO [27883]: Version from config: 1.0 -- 22:55:17.900 DEBUG [27883]: Connecting to database... -- 22:55:17.900 DEBUG [27883]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:55:17.900 SQL [27883]: pgsql_db_connect() -- 22:55:17.916 INFO [9338]: COREGRADE is starting... -- 22:55:17.916 INFO [9338]: Version from config: 1.0 -- 22:55:17.916 DEBUG [9338]: Connecting to database... -- 22:55:17.916 DEBUG [9338]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:55:17.916 SQL [9338]: pgsql_db_connect() -- 22:55:17.904 DEBUG [27883]: Database connection successful -- 22:55:17.904 INFO [27883]: _SERVER found -- 22:55:17.904 INFO [27883]: REMOTE_ADDR = 192.168.1.13 -- 22:55:17.904 INFO [27883]: SERVER_NAME = tokslaw.works.coregrade.com -- 22:55:17.904 INFO [27883]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; ci_session=eoccmn7ullqcnkk4ji9g5djfvr4c0mql; _gid=GA1.2.1619635686.1583553314; _gat_gtag_UA_54829827_2=1 -- 22:55:17.904 INFO [27883]: QUERY_STRING = /welcome/viewLogin -- 22:55:17.904 INFO [27883]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:55:17.934 INFO [27883]: COREGRADE is stopping... -- 22:55:17.934 DEBUG [27883]: Closing database connection -- 22:55:17.934 SQL [27883]: pgsql_close() -- 22:55:17.920 DEBUG [9338]: Database connection successful -- 22:55:17.920 INFO [9338]: _SERVER found -- 22:55:17.920 INFO [9338]: REMOTE_ADDR = 192.168.1.13 -- 22:55:17.920 INFO [9338]: SERVER_NAME = tokslaw.works.coregrade.com -- 22:55:17.920 INFO [9338]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; ci_session=eoccmn7ullqcnkk4ji9g5djfvr4c0mql; _gid=GA1.2.1619635686.1583553314; _gat_gtag_UA_54829827_2=1 -- 22:55:17.920 INFO [9338]: QUERY_STRING = /auth -- 22:55:17.920 INFO [9338]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:55:17.953 INFO [9338]: COREGRADE is stopping... -- 22:55:17.953 DEBUG [9338]: Closing database connection -- 22:55:17.953 SQL [9338]: pgsql_close() -- 22:55:18.009 INFO [27883]: COREGRADE is starting... -- 22:55:18.009 INFO [27883]: Version from config: 1.0 -- 22:55:18.009 DEBUG [27883]: Connecting to database... -- 22:55:18.009 DEBUG [27883]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:55:18.009 SQL [27883]: pgsql_db_connect() -- 22:55:18.013 DEBUG [27883]: Database connection successful -- 22:55:18.013 INFO [27883]: _SERVER found -- 22:55:18.013 INFO [27883]: REMOTE_ADDR = 192.168.1.13 -- 22:55:18.013 INFO [27883]: SERVER_NAME = tokslaw.works.coregrade.com -- 22:55:18.013 INFO [27883]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; ci_session=eoccmn7ullqcnkk4ji9g5djfvr4c0mql; _gid=GA1.2.1619635686.1583553314; _gat_gtag_UA_54829827_2=1 -- 22:55:18.013 INFO [27883]: QUERY_STRING = /auth/index -- 22:55:18.013 INFO [27883]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:55:18.045 INFO [27883]: COREGRADE is stopping... -- 22:55:18.045 DEBUG [27883]: Closing database connection -- 22:55:18.045 SQL [27883]: pgsql_close() -- 22:55:18.306 INFO [9373]: COREGRADE is starting... -- 22:55:18.306 INFO [9373]: Version from config: 1.0 -- 22:55:18.306 DEBUG [9373]: Connecting to database... -- 22:55:18.306 DEBUG [9373]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:55:18.306 SQL [9373]: pgsql_db_connect() -- 22:55:18.310 DEBUG [9373]: Database connection successful -- 22:55:18.310 INFO [9373]: _SERVER found -- 22:55:18.310 INFO [9373]: REMOTE_ADDR = 192.168.1.13 -- 22:55:18.310 INFO [9373]: SERVER_NAME = tokslaw.works.coregrade.com -- 22:55:18.310 INFO [9373]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; ci_session=eoccmn7ullqcnkk4ji9g5djfvr4c0mql; _gid=GA1.2.1619635686.1583553314; _gat_gtag_UA_54829827_2=1 -- 22:55:18.310 INFO [9373]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:55:18.310 INFO [9373]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:55:18.323 INFO [9373]: COREGRADE is stopping... -- 22:55:18.323 DEBUG [9373]: Closing database connection -- 22:55:18.323 SQL [9373]: pgsql_close() -- 22:55:18.611 INFO [9373]: COREGRADE is starting... -- 22:55:18.611 INFO [9373]: Version from config: 1.0 -- 22:55:18.611 DEBUG [9373]: Connecting to database... -- 22:55:18.611 DEBUG [9373]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:55:18.611 SQL [9373]: pgsql_db_connect() -- 22:55:18.615 DEBUG [9373]: Database connection successful -- 22:55:18.615 INFO [9373]: _SERVER found -- 22:55:18.615 INFO [9373]: REMOTE_ADDR = 192.168.1.13 -- 22:55:18.615 INFO [9373]: SERVER_NAME = tokslaw.works.coregrade.com -- 22:55:18.615 INFO [9373]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; ci_session=eoccmn7ullqcnkk4ji9g5djfvr4c0mql; _gid=GA1.2.1619635686.1583553314; _gat_gtag_UA_54829827_2=1 -- 22:55:18.615 INFO [9373]: QUERY_STRING = /assets2/data/locales/en.json -- 22:55:18.615 INFO [9373]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:55:18.626 INFO [9373]: COREGRADE is stopping... -- 22:55:18.626 DEBUG [9373]: Closing database connection -- 22:55:18.626 SQL [9373]: pgsql_close() -- 23:12:38.295 INFO [3134]: COREGRADE is starting... -- 23:12:38.295 INFO [3134]: Version from config: 1.0 -- 23:12:38.295 DEBUG [3134]: Connecting to database... -- 23:12:38.295 DEBUG [3134]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:12:38.295 SQL [3134]: pgsql_db_connect() -- 23:12:38.300 DEBUG [3134]: Database connection successful -- 23:12:38.300 INFO [3134]: _SERVER found -- 23:12:38.300 INFO [3134]: REMOTE_ADDR = 192.168.1.13 -- 23:12:38.300 INFO [3134]: SERVER_NAME = oameye.works.coregrade.com -- 23:12:38.300 INFO [3134]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667 -- 23:12:38.300 INFO [3134]: QUERY_STRING = /auth -- 23:12:38.300 INFO [3134]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:12:38.342 INFO [3134]: COREGRADE is stopping... -- 23:12:38.342 DEBUG [3134]: Closing database connection -- 23:12:38.342 SQL [3134]: pgsql_close() -- 23:12:38.473 INFO [3134]: COREGRADE is starting... -- 23:12:38.473 INFO [3134]: Version from config: 1.0 -- 23:12:38.473 DEBUG [3134]: Connecting to database... -- 23:12:38.473 DEBUG [3134]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:12:38.473 SQL [3134]: pgsql_db_connect() -- 23:12:38.477 DEBUG [3134]: Database connection successful -- 23:12:38.477 INFO [3134]: _SERVER found -- 23:12:38.477 INFO [3134]: REMOTE_ADDR = 192.168.1.13 -- 23:12:38.477 INFO [3134]: SERVER_NAME = oameye.works.coregrade.com -- 23:12:38.477 INFO [3134]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=elao9ie8g32h3l1ur6nq3d15mfv5pvc2 -- 23:12:38.477 INFO [3134]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 23:12:38.477 INFO [3134]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:12:38.490 INFO [3134]: COREGRADE is stopping... -- 23:12:38.490 DEBUG [3134]: Closing database connection -- 23:12:38.490 SQL [3134]: pgsql_close() -- 01:16:23.229 INFO [3136]: COREGRADE is starting... -- 01:16:23.229 INFO [3136]: Version from config: 1.0 -- 01:16:23.229 DEBUG [3136]: Connecting to database... -- 01:16:23.229 DEBUG [3136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:16:23.229 SQL [3136]: pgsql_db_connect() -- 01:16:23.234 DEBUG [3136]: Database connection successful -- 01:16:23.234 INFO [3136]: _SERVER found -- 01:16:23.234 INFO [3136]: REMOTE_ADDR = 192.168.1.13 -- 01:16:23.234 INFO [3136]: SERVER_NAME = oameye.works.coregrade.com -- 01:16:23.234 INFO [3136]: QUERY_STRING = /.well-known/acme-challenge/A6vv3vHH5jTPqQeySitGU_HiSRwbl-RExTpBEkBVt2Q -- 01:16:23.234 INFO [3136]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 01:16:23.252 INFO [3136]: COREGRADE is stopping... -- 01:16:23.252 DEBUG [3136]: Closing database connection -- 01:16:23.252 SQL [3136]: pgsql_close() -- 01:16:23.510 INFO [27883]: COREGRADE is starting... -- 01:16:23.510 INFO [27883]: Version from config: 1.0 -- 01:16:23.510 DEBUG [27883]: Connecting to database... -- 01:16:23.510 DEBUG [27883]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:16:23.510 SQL [27883]: pgsql_db_connect() -- 01:16:23.515 DEBUG [27883]: Database connection successful -- 01:16:23.515 INFO [27883]: _SERVER found -- 01:16:23.515 INFO [27883]: REMOTE_ADDR = 192.168.1.13 -- 01:16:23.515 INFO [27883]: SERVER_NAME = oameye.works.coregrade.com -- 01:16:23.515 INFO [27883]: QUERY_STRING = /.well-known/acme-challenge/A6vv3vHH5jTPqQeySitGU_HiSRwbl-RExTpBEkBVt2Q -- 01:16:23.515 INFO [27883]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 01:16:23.527 INFO [27883]: COREGRADE is stopping... -- 01:16:23.527 DEBUG [27883]: Closing database connection -- 01:16:23.527 SQL [27883]: pgsql_close() -- 01:16:23.598 INFO [3136]: COREGRADE is starting... -- 01:16:23.599 INFO [3136]: Version from config: 1.0 -- 01:16:23.599 DEBUG [3136]: Connecting to database... -- 01:16:23.599 DEBUG [3136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:16:23.599 SQL [3136]: pgsql_db_connect() -- 01:16:23.603 DEBUG [3136]: Database connection successful -- 01:16:23.603 INFO [3136]: _SERVER found -- 01:16:23.603 INFO [3136]: REMOTE_ADDR = 192.168.1.13 -- 01:16:23.603 INFO [3136]: SERVER_NAME = oameye.works.coregrade.com -- 01:16:23.603 INFO [3136]: QUERY_STRING = /.well-known/acme-challenge/A6vv3vHH5jTPqQeySitGU_HiSRwbl-RExTpBEkBVt2Q -- 01:16:23.603 INFO [3136]: HTTP_X_FORWARDED_FOR = 34.209.232.166 -- 01:16:23.616 INFO [3136]: COREGRADE is stopping... -- 01:16:23.616 DEBUG [3136]: Closing database connection -- 01:16:23.616 SQL [3136]: pgsql_close() -- 03:21:48.933 INFO [5583]: COREGRADE is starting... -- 03:21:48.934 INFO [5583]: Version from config: 1.0 -- 03:21:48.934 DEBUG [5583]: Connecting to database... -- 03:21:48.934 DEBUG [5583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:21:48.934 SQL [5583]: pgsql_db_connect() -- 03:21:48.939 DEBUG [5583]: Database connection successful -- 03:21:48.939 INFO [5583]: _SERVER found -- 03:21:48.939 INFO [5583]: REMOTE_ADDR = 192.168.1.13 -- 03:21:48.939 INFO [5583]: SERVER_NAME = oameye.works.coregrade.com -- 03:21:48.939 INFO [5583]: QUERY_STRING = -- 03:21:48.939 INFO [5583]: HTTP_X_FORWARDED_FOR = 209.17.96.66 -- 03:21:48.972 INFO [5583]: COREGRADE is stopping... -- 03:21:48.972 DEBUG [5583]: Closing database connection -- 03:21:48.972 SQL [5583]: pgsql_close() -- 05:46:18.411 INFO [9338]: COREGRADE is starting... -- 05:46:18.411 INFO [9338]: Version from config: 1.0 -- 05:46:18.411 DEBUG [9338]: Connecting to database... -- 05:46:18.411 DEBUG [9338]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:46:18.411 SQL [9338]: pgsql_db_connect() -- 05:46:18.416 DEBUG [9338]: Database connection successful -- 05:46:18.416 INFO [9338]: _SERVER found -- 05:46:18.416 INFO [9338]: REMOTE_ADDR = 192.168.1.13 -- 05:46:18.416 INFO [9338]: SERVER_NAME = tokslaw.works.coregrade.com -- 05:46:18.416 INFO [9338]: QUERY_STRING = -- 05:46:18.416 INFO [9338]: HTTP_X_FORWARDED_FOR = 163.172.70.242 -- 05:46:18.449 INFO [9338]: COREGRADE is stopping... -- 05:46:18.449 DEBUG [9338]: Closing database connection -- 05:46:18.449 SQL [9338]: pgsql_close() -- 06:54:42.168 INFO [9363]: COREGRADE is starting... -- 06:54:42.169 INFO [9363]: Version from config: 1.0 -- 06:54:42.169 DEBUG [9363]: Connecting to database... -- 06:54:42.169 DEBUG [9363]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:54:42.169 SQL [9363]: pgsql_db_connect() -- 06:54:42.173 DEBUG [9363]: Database connection successful -- 06:54:42.173 INFO [9363]: _SERVER found -- 06:54:42.173 INFO [9363]: REMOTE_ADDR = 192.168.1.13 -- 06:54:42.173 INFO [9363]: SERVER_NAME = oameye.works.coregrade.com -- 06:54:42.173 INFO [9363]: QUERY_STRING = -- 06:54:42.173 INFO [9363]: HTTP_X_FORWARDED_FOR = 62.210.5.253 -- 06:54:42.209 INFO [9363]: COREGRADE is stopping... -- 06:54:42.209 DEBUG [9363]: Closing database connection -- 06:54:42.209 SQL [9363]: pgsql_close() -- 16:09:12.830 INFO [9373]: COREGRADE is starting... -- 16:09:12.830 INFO [9373]: Version from config: 1.0 -- 16:09:12.830 DEBUG [9373]: Connecting to database... -- 16:09:12.830 DEBUG [9373]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:09:12.830 SQL [9373]: pgsql_db_connect() -- 16:09:12.835 DEBUG [9373]: Database connection successful -- 16:09:12.835 INFO [9373]: _SERVER found -- 16:09:12.835 INFO [9373]: REMOTE_ADDR = 192.168.1.13 -- 16:09:12.835 INFO [9373]: SERVER_NAME = oameye.works.coregrade.com -- 16:09:12.835 INFO [9373]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667 -- 16:09:12.835 INFO [9373]: QUERY_STRING = -- 16:09:12.835 INFO [9373]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:09:12.872 INFO [9373]: COREGRADE is stopping... -- 16:09:12.872 DEBUG [9373]: Closing database connection -- 16:09:12.872 SQL [9373]: pgsql_close() -- 16:09:13.567 INFO [27883]: COREGRADE is starting... -- 16:09:13.567 INFO [27883]: Version from config: 1.0 -- 16:09:13.567 DEBUG [27883]: Connecting to database... -- 16:09:13.567 DEBUG [27883]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:09:13.567 SQL [27883]: pgsql_db_connect() -- 16:09:13.571 DEBUG [27883]: Database connection successful -- 16:09:13.571 INFO [27883]: _SERVER found -- 16:09:13.571 INFO [27883]: REMOTE_ADDR = 192.168.1.13 -- 16:09:13.571 INFO [27883]: SERVER_NAME = oameye.works.coregrade.com -- 16:09:13.571 INFO [27883]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=k2dbgh10gsecjhhvcsn222rchdqeetoh -- 16:09:13.571 INFO [27883]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 16:09:13.571 INFO [27883]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:09:13.583 INFO [27883]: COREGRADE is stopping... -- 16:09:13.583 DEBUG [27883]: Closing database connection -- 16:09:13.583 SQL [27883]: pgsql_close() -- 16:09:13.607 INFO [27883]: COREGRADE is starting... -- 16:09:13.607 INFO [27883]: Version from config: 1.0 -- 16:09:13.607 DEBUG [27883]: Connecting to database... -- 16:09:13.607 DEBUG [27883]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:09:13.607 SQL [27883]: pgsql_db_connect() -- 16:09:13.611 DEBUG [27883]: Database connection successful -- 16:09:13.611 INFO [27883]: _SERVER found -- 16:09:13.611 INFO [27883]: REMOTE_ADDR = 192.168.1.13 -- 16:09:13.611 INFO [27883]: SERVER_NAME = oameye.works.coregrade.com -- 16:09:13.611 INFO [27883]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=k2dbgh10gsecjhhvcsn222rchdqeetoh -- 16:09:13.611 INFO [27883]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:09:13.611 INFO [27883]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:09:13.622 INFO [27883]: COREGRADE is stopping... -- 16:09:13.622 DEBUG [27883]: Closing database connection -- 16:09:13.622 SQL [27883]: pgsql_close() -- 03:17:09.871 INFO [3136]: COREGRADE is starting... -- 03:17:09.872 INFO [3136]: Version from config: 1.0 -- 03:17:09.872 DEBUG [3136]: Connecting to database... -- 03:17:09.872 DEBUG [3136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:17:09.872 SQL [3136]: pgsql_db_connect() -- 03:17:09.877 DEBUG [3136]: Database connection successful -- 03:17:09.877 INFO [3136]: _SERVER found -- 03:17:09.877 INFO [3136]: REMOTE_ADDR = 192.168.1.13 -- 03:17:09.877 INFO [3136]: SERVER_NAME = oameye.works.coregrade.com -- 03:17:09.877 INFO [3136]: QUERY_STRING = /.well-known/acme-challenge/BJ_U4NJ9qlj_2e1pljhYkkgrdHJol2nzMUdQkX4sjTc -- 03:17:09.877 INFO [3136]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 03:17:09.894 INFO [3136]: COREGRADE is stopping... -- 03:17:09.894 DEBUG [3136]: Closing database connection -- 03:17:09.894 SQL [3136]: pgsql_close() -- 03:17:10.163 INFO [3136]: COREGRADE is starting... -- 03:17:10.163 INFO [3136]: Version from config: 1.0 -- 03:17:10.163 DEBUG [3136]: Connecting to database... -- 03:17:10.163 DEBUG [3136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:17:10.163 SQL [3136]: pgsql_db_connect() -- 03:17:10.167 DEBUG [3136]: Database connection successful -- 03:17:10.167 INFO [3136]: _SERVER found -- 03:17:10.167 INFO [3136]: REMOTE_ADDR = 192.168.1.13 -- 03:17:10.167 INFO [3136]: SERVER_NAME = oameye.works.coregrade.com -- 03:17:10.167 INFO [3136]: QUERY_STRING = /.well-known/acme-challenge/BJ_U4NJ9qlj_2e1pljhYkkgrdHJol2nzMUdQkX4sjTc -- 03:17:10.167 INFO [3136]: HTTP_X_FORWARDED_FOR = 34.222.229.130 -- 03:17:10.180 INFO [3136]: COREGRADE is stopping... -- 03:17:10.180 DEBUG [3136]: Closing database connection -- 03:17:10.180 SQL [3136]: pgsql_close() -- 03:17:10.233 INFO [3136]: COREGRADE is starting... -- 03:17:10.233 INFO [3136]: Version from config: 1.0 -- 03:17:10.233 DEBUG [3136]: Connecting to database... -- 03:17:10.233 DEBUG [3136]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:17:10.233 SQL [3136]: pgsql_db_connect() -- 03:17:10.238 DEBUG [3136]: Database connection successful -- 03:17:10.238 INFO [3136]: _SERVER found -- 03:17:10.238 INFO [3136]: REMOTE_ADDR = 192.168.1.13 -- 03:17:10.238 INFO [3136]: SERVER_NAME = oameye.works.coregrade.com -- 03:17:10.238 INFO [3136]: QUERY_STRING = /.well-known/acme-challenge/BJ_U4NJ9qlj_2e1pljhYkkgrdHJol2nzMUdQkX4sjTc -- 03:17:10.238 INFO [3136]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 03:17:10.252 INFO [3136]: COREGRADE is stopping... -- 03:17:10.252 DEBUG [3136]: Closing database connection -- 03:17:10.252 SQL [3136]: pgsql_close() -- 05:56:15.843 INFO [10234]: COREGRADE is starting... -- 05:56:15.843 INFO [10234]: Version from config: 1.0 -- 05:56:15.843 DEBUG [10234]: Connecting to database... -- 05:56:15.843 DEBUG [10234]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:56:15.843 SQL [10234]: pgsql_db_connect() -- 05:56:15.849 DEBUG [10234]: Database connection successful -- 05:56:15.849 INFO [10234]: _SERVER found -- 05:56:15.849 INFO [10234]: REMOTE_ADDR = 192.168.1.13 -- 05:56:15.849 INFO [10234]: SERVER_NAME = oameye.works.coregrade.com -- 05:56:15.849 INFO [10234]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667 -- 05:56:15.849 INFO [10234]: QUERY_STRING = /auth -- 05:56:15.849 INFO [10234]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:56:15.895 INFO [10234]: COREGRADE is stopping... -- 05:56:15.895 DEBUG [10234]: Closing database connection -- 05:56:15.895 SQL [10234]: pgsql_close() -- 05:56:16.192 INFO [10234]: COREGRADE is starting... -- 05:56:16.192 INFO [10234]: Version from config: 1.0 -- 05:56:16.192 DEBUG [10234]: Connecting to database... -- 05:56:16.192 DEBUG [10234]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:56:16.192 SQL [10234]: pgsql_db_connect() -- 05:56:16.197 DEBUG [10234]: Database connection successful -- 05:56:16.197 INFO [10234]: _SERVER found -- 05:56:16.197 INFO [10234]: REMOTE_ADDR = 192.168.1.13 -- 05:56:16.197 INFO [10234]: SERVER_NAME = oameye.works.coregrade.com -- 05:56:16.197 INFO [10234]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=b9hf035un6s89frpkk31ahjd3hag6j3j -- 05:56:16.197 INFO [10234]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 05:56:16.197 INFO [10234]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:56:16.208 INFO [10234]: COREGRADE is stopping... -- 05:56:16.208 DEBUG [10234]: Closing database connection -- 05:56:16.208 SQL [10234]: pgsql_close() -- 05:56:16.300 INFO [10235]: COREGRADE is starting... -- 05:56:16.301 INFO [10235]: Version from config: 1.0 -- 05:56:16.301 DEBUG [10235]: Connecting to database... -- 05:56:16.301 DEBUG [10235]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:56:16.301 SQL [10235]: pgsql_db_connect() -- 05:56:16.305 DEBUG [10235]: Database connection successful -- 05:56:16.305 INFO [10235]: _SERVER found -- 05:56:16.305 INFO [10235]: REMOTE_ADDR = 192.168.1.13 -- 05:56:16.305 INFO [10235]: SERVER_NAME = oameye.works.coregrade.com -- 05:56:16.305 INFO [10235]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=b9hf035un6s89frpkk31ahjd3hag6j3j -- 05:56:16.305 INFO [10235]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 05:56:16.305 INFO [10235]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:56:16.321 INFO [10235]: COREGRADE is stopping... -- 05:56:16.321 DEBUG [10235]: Closing database connection -- 05:56:16.321 SQL [10235]: pgsql_close() -- 06:05:28.251 INFO [10236]: COREGRADE is starting... -- 06:05:28.251 INFO [10236]: Version from config: 1.0 -- 06:05:28.251 DEBUG [10236]: Connecting to database... -- 06:05:28.252 DEBUG [10236]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:05:28.252 SQL [10236]: pgsql_db_connect() -- 06:05:28.256 DEBUG [10236]: Database connection successful -- 06:05:28.256 INFO [10236]: _SERVER found -- 06:05:28.256 INFO [10236]: REMOTE_ADDR = 192.168.1.13 -- 06:05:28.256 INFO [10236]: SERVER_NAME = oameye.works.coregrade.com -- 06:05:28.256 INFO [10236]: QUERY_STRING = /TP/public/index.php -- 06:05:28.256 INFO [10236]: HTTP_X_FORWARDED_FOR = 52.157.90.150 -- 06:05:28.272 INFO [10236]: COREGRADE is stopping... -- 06:05:28.272 DEBUG [10236]: Closing database connection -- 06:05:28.272 SQL [10236]: pgsql_close() -- 06:05:28.917 INFO [10237]: COREGRADE is starting... -- 06:05:28.917 INFO [10237]: Version from config: 1.0 -- 06:05:28.917 DEBUG [10237]: Connecting to database... -- 06:05:28.918 DEBUG [10237]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:05:28.918 SQL [10237]: pgsql_db_connect() -- 06:05:28.922 DEBUG [10237]: Database connection successful -- 06:05:28.922 INFO [10237]: _SERVER found -- 06:05:28.922 INFO [10237]: REMOTE_ADDR = 192.168.1.13 -- 06:05:28.922 INFO [10237]: SERVER_NAME = oameye.works.coregrade.com -- 06:05:28.922 INFO [10237]: QUERY_STRING = /TP/index.php -- 06:05:28.922 INFO [10237]: HTTP_X_FORWARDED_FOR = 52.157.90.150 -- 06:05:28.938 INFO [10237]: COREGRADE is stopping... -- 06:05:28.938 DEBUG [10237]: Closing database connection -- 06:05:28.938 SQL [10237]: pgsql_close() -- 06:05:29.588 INFO [10236]: COREGRADE is starting... -- 06:05:29.588 INFO [10236]: Version from config: 1.0 -- 06:05:29.588 DEBUG [10236]: Connecting to database... -- 06:05:29.588 DEBUG [10236]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:05:29.588 SQL [10236]: pgsql_db_connect() -- 06:05:29.592 DEBUG [10236]: Database connection successful -- 06:05:29.592 INFO [10236]: _SERVER found -- 06:05:29.592 INFO [10236]: REMOTE_ADDR = 192.168.1.13 -- 06:05:29.592 INFO [10236]: SERVER_NAME = oameye.works.coregrade.com -- 06:05:29.592 INFO [10236]: QUERY_STRING = /thinkphp/html/public/index.php -- 06:05:29.592 INFO [10236]: HTTP_X_FORWARDED_FOR = 52.157.90.150 -- 06:05:29.604 INFO [10236]: COREGRADE is stopping... -- 06:05:29.604 DEBUG [10236]: Closing database connection -- 06:05:29.604 SQL [10236]: pgsql_close() -- 06:05:30.237 INFO [10237]: COREGRADE is starting... -- 06:05:30.238 INFO [10237]: Version from config: 1.0 -- 06:05:30.238 DEBUG [10237]: Connecting to database... -- 06:05:30.238 DEBUG [10237]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:05:30.238 SQL [10237]: pgsql_db_connect() -- 06:05:30.242 DEBUG [10237]: Database connection successful -- 06:05:30.242 INFO [10237]: _SERVER found -- 06:05:30.242 INFO [10237]: REMOTE_ADDR = 192.168.1.13 -- 06:05:30.242 INFO [10237]: SERVER_NAME = oameye.works.coregrade.com -- 06:05:30.242 INFO [10237]: QUERY_STRING = /html/public/index.php -- 06:05:30.242 INFO [10237]: HTTP_X_FORWARDED_FOR = 52.157.90.150 -- 06:05:30.253 INFO [10237]: COREGRADE is stopping... -- 06:05:30.253 DEBUG [10237]: Closing database connection -- 06:05:30.253 SQL [10237]: pgsql_close() -- 06:05:30.892 INFO [10236]: COREGRADE is starting... -- 06:05:30.892 INFO [10236]: Version from config: 1.0 -- 06:05:30.892 DEBUG [10236]: Connecting to database... -- 06:05:30.892 DEBUG [10236]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:05:30.892 SQL [10236]: pgsql_db_connect() -- 06:05:30.896 DEBUG [10236]: Database connection successful -- 06:05:30.896 INFO [10236]: _SERVER found -- 06:05:30.896 INFO [10236]: REMOTE_ADDR = 192.168.1.13 -- 06:05:30.896 INFO [10236]: SERVER_NAME = oameye.works.coregrade.com -- 06:05:30.896 INFO [10236]: QUERY_STRING = /public/index.php -- 06:05:30.896 INFO [10236]: HTTP_X_FORWARDED_FOR = 52.157.90.150 -- 06:05:30.908 INFO [10236]: COREGRADE is stopping... -- 06:05:30.908 DEBUG [10236]: Closing database connection -- 06:05:30.908 SQL [10236]: pgsql_close() -- 06:05:31.530 INFO [10236]: COREGRADE is starting... -- 06:05:31.530 INFO [10236]: Version from config: 1.0 -- 06:05:31.530 DEBUG [10236]: Connecting to database... -- 06:05:31.530 DEBUG [10236]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:05:31.530 SQL [10236]: pgsql_db_connect() -- 06:05:31.534 DEBUG [10236]: Database connection successful -- 06:05:31.534 INFO [10236]: _SERVER found -- 06:05:31.534 INFO [10236]: REMOTE_ADDR = 192.168.1.13 -- 06:05:31.534 INFO [10236]: SERVER_NAME = oameye.works.coregrade.com -- 06:05:31.534 INFO [10236]: QUERY_STRING = /TP/html/public/index.php -- 06:05:31.534 INFO [10236]: HTTP_X_FORWARDED_FOR = 52.157.90.150 -- 06:05:31.545 INFO [10236]: COREGRADE is stopping... -- 06:05:31.545 DEBUG [10236]: Closing database connection -- 06:05:31.545 SQL [10236]: pgsql_close() -- 06:05:32.177 INFO [10236]: COREGRADE is starting... -- 06:05:32.177 INFO [10236]: Version from config: 1.0 -- 06:05:32.177 DEBUG [10236]: Connecting to database... -- 06:05:32.177 DEBUG [10236]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:05:32.178 SQL [10236]: pgsql_db_connect() -- 06:05:32.182 DEBUG [10236]: Database connection successful -- 06:05:32.182 INFO [10236]: _SERVER found -- 06:05:32.182 INFO [10236]: REMOTE_ADDR = 192.168.1.13 -- 06:05:32.182 INFO [10236]: SERVER_NAME = oameye.works.coregrade.com -- 06:05:32.182 INFO [10236]: QUERY_STRING = /elrekt.php -- 06:05:32.182 INFO [10236]: HTTP_X_FORWARDED_FOR = 52.157.90.150 -- 06:05:32.193 INFO [10236]: COREGRADE is stopping... -- 06:05:32.193 DEBUG [10236]: Closing database connection -- 06:05:32.193 SQL [10236]: pgsql_close() -- 06:05:32.810 INFO [10236]: COREGRADE is starting... -- 06:05:32.810 INFO [10236]: Version from config: 1.0 -- 06:05:32.810 DEBUG [10236]: Connecting to database... -- 06:05:32.810 DEBUG [10236]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:05:32.810 SQL [10236]: pgsql_db_connect() -- 06:05:32.814 DEBUG [10236]: Database connection successful -- 06:05:32.814 INFO [10236]: _SERVER found -- 06:05:32.814 INFO [10236]: REMOTE_ADDR = 192.168.1.13 -- 06:05:32.814 INFO [10236]: SERVER_NAME = oameye.works.coregrade.com -- 06:05:32.814 INFO [10236]: QUERY_STRING = -- 06:05:32.814 INFO [10236]: HTTP_X_FORWARDED_FOR = 52.157.90.150 -- 06:05:32.860 INFO [10236]: COREGRADE is stopping... -- 06:05:32.860 DEBUG [10236]: Closing database connection -- 06:05:32.860 SQL [10236]: pgsql_close() -- 06:05:33.500 INFO [10236]: COREGRADE is starting... -- 06:05:33.500 INFO [10236]: Version from config: 1.0 -- 06:05:33.500 DEBUG [10236]: Connecting to database... -- 06:05:33.500 DEBUG [10236]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:05:33.500 SQL [10236]: pgsql_db_connect() -- 06:05:33.505 DEBUG [10236]: Database connection successful -- 06:05:33.505 INFO [10236]: _SERVER found -- 06:05:33.505 INFO [10236]: REMOTE_ADDR = 192.168.1.13 -- 06:05:33.505 INFO [10236]: SERVER_NAME = oameye.works.coregrade.com -- 06:05:33.505 INFO [10236]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 06:05:33.505 INFO [10236]: HTTP_X_FORWARDED_FOR = 52.157.90.150 -- 06:05:33.539 INFO [10236]: COREGRADE is stopping... -- 06:05:33.539 DEBUG [10236]: Closing database connection -- 06:05:33.539 SQL [10236]: pgsql_close() -- 06:05:34.176 INFO [10238]: COREGRADE is starting... -- 06:05:34.176 INFO [10238]: Version from config: 1.0 -- 06:05:34.176 DEBUG [10238]: Connecting to database... -- 06:05:34.176 DEBUG [10238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:05:34.176 SQL [10238]: pgsql_db_connect() -- 06:05:34.181 DEBUG [10238]: Database connection successful -- 06:05:34.181 INFO [10238]: _SERVER found -- 06:05:34.181 INFO [10238]: REMOTE_ADDR = 192.168.1.13 -- 06:05:34.181 INFO [10238]: SERVER_NAME = oameye.works.coregrade.com -- 06:05:34.181 INFO [10238]: QUERY_STRING = s=captcha -- 06:05:34.181 INFO [10238]: HTTP_X_FORWARDED_FOR = 52.157.90.150 -- 06:05:34.224 INFO [10238]: COREGRADE is stopping... -- 06:05:34.224 DEBUG [10238]: Closing database connection -- 06:05:34.224 SQL [10238]: pgsql_close() -- 06:05:34.857 INFO [10238]: COREGRADE is starting... -- 06:05:34.858 INFO [10238]: Version from config: 1.0 -- 06:05:34.858 DEBUG [10238]: Connecting to database... -- 06:05:34.858 DEBUG [10238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:05:34.858 SQL [10238]: pgsql_db_connect() -- 06:05:34.862 DEBUG [10238]: Database connection successful -- 06:05:34.862 INFO [10238]: _SERVER found -- 06:05:34.862 INFO [10238]: REMOTE_ADDR = 192.168.1.13 -- 06:05:34.862 INFO [10238]: SERVER_NAME = oameye.works.coregrade.com -- 06:05:34.862 INFO [10238]: QUERY_STRING = -- 06:05:34.862 INFO [10238]: HTTP_X_FORWARDED_FOR = 52.157.90.150 -- 06:05:34.893 INFO [10238]: COREGRADE is stopping... -- 06:05:34.893 DEBUG [10238]: Closing database connection -- 06:05:34.893 SQL [10238]: pgsql_close() -- 06:45:53.842 INFO [10816]: COREGRADE is starting... -- 06:45:53.842 INFO [10816]: Version from config: 1.0 -- 06:45:53.842 DEBUG [10816]: Connecting to database... -- 06:45:53.842 DEBUG [10816]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:45:53.842 SQL [10816]: pgsql_db_connect() -- 06:45:53.847 DEBUG [10816]: Database connection successful -- 06:45:53.847 INFO [10816]: _SERVER found -- 06:45:53.847 INFO [10816]: REMOTE_ADDR = 192.168.1.13 -- 06:45:53.847 INFO [10816]: SERVER_NAME = oameye.works.coregrade.com -- 06:45:53.847 INFO [10816]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=b9hf035un6s89frpkk31ahjd3hag6j3j -- 06:45:53.847 INFO [10816]: QUERY_STRING = -- 06:45:53.847 INFO [10816]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:45:53.894 INFO [10816]: COREGRADE is stopping... -- 06:45:53.894 DEBUG [10816]: Closing database connection -- 06:45:53.894 SQL [10816]: pgsql_close() -- 06:45:54.220 INFO [10816]: COREGRADE is starting... -- 06:45:54.221 INFO [10816]: Version from config: 1.0 -- 06:45:54.221 DEBUG [10816]: Connecting to database... -- 06:45:54.221 DEBUG [10816]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:45:54.221 SQL [10816]: pgsql_db_connect() -- 06:45:54.228 INFO [10817]: COREGRADE is starting... -- 06:45:54.229 INFO [10817]: Version from config: 1.0 -- 06:45:54.229 DEBUG [10817]: Connecting to database... -- 06:45:54.229 DEBUG [10817]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:45:54.229 SQL [10817]: pgsql_db_connect() -- 06:45:54.225 DEBUG [10816]: Database connection successful -- 06:45:54.225 INFO [10816]: _SERVER found -- 06:45:54.225 INFO [10816]: REMOTE_ADDR = 192.168.1.13 -- 06:45:54.225 INFO [10816]: SERVER_NAME = oameye.works.coregrade.com -- 06:45:54.225 INFO [10816]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=f1p87gdrt9oilv37vj1v2citvtoao7i3 -- 06:45:54.225 INFO [10816]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 06:45:54.225 INFO [10816]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:45:54.237 INFO [10816]: COREGRADE is stopping... -- 06:45:54.237 DEBUG [10816]: Closing database connection -- 06:45:54.237 SQL [10816]: pgsql_close() -- 06:45:54.233 DEBUG [10817]: Database connection successful -- 06:45:54.233 INFO [10817]: _SERVER found -- 06:45:54.233 INFO [10817]: REMOTE_ADDR = 192.168.1.13 -- 06:45:54.233 INFO [10817]: SERVER_NAME = oameye.works.coregrade.com -- 06:45:54.233 INFO [10817]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=f1p87gdrt9oilv37vj1v2citvtoao7i3 -- 06:45:54.233 INFO [10817]: QUERY_STRING = /assets/img/footer_1.jpg -- 06:45:54.233 INFO [10817]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:45:54.248 INFO [10817]: COREGRADE is stopping... -- 06:45:54.248 DEBUG [10817]: Closing database connection -- 06:45:54.248 SQL [10817]: pgsql_close() -- 06:46:20.122 INFO [10235]: COREGRADE is starting... -- 06:46:20.123 INFO [10235]: Version from config: 1.0 -- 06:46:20.123 DEBUG [10235]: Connecting to database... -- 06:46:20.123 DEBUG [10235]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:46:20.123 SQL [10235]: pgsql_db_connect() -- 06:46:20.127 DEBUG [10235]: Database connection successful -- 06:46:20.127 INFO [10235]: _SERVER found -- 06:46:20.127 INFO [10235]: REMOTE_ADDR = 192.168.1.13 -- 06:46:20.127 INFO [10235]: SERVER_NAME = oameye.works.coregrade.com -- 06:46:20.127 INFO [10235]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=f1p87gdrt9oilv37vj1v2citvtoao7i3; _gat_gtag_UA_54829827_2=1 -- 06:46:20.127 INFO [10235]: QUERY_STRING = /home/security -- 06:46:20.127 INFO [10235]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:46:20.163 INFO [10235]: COREGRADE is stopping... -- 06:46:20.163 DEBUG [10235]: Closing database connection -- 06:46:20.163 SQL [10235]: pgsql_close() -- 06:46:20.406 INFO [10235]: COREGRADE is starting... -- 06:46:20.406 INFO [10235]: Version from config: 1.0 -- 06:46:20.406 DEBUG [10235]: Connecting to database... -- 06:46:20.407 DEBUG [10235]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:46:20.407 SQL [10235]: pgsql_db_connect() -- 06:46:20.410 DEBUG [10235]: Database connection successful -- 06:46:20.410 INFO [10235]: _SERVER found -- 06:46:20.410 INFO [10235]: REMOTE_ADDR = 192.168.1.13 -- 06:46:20.410 INFO [10235]: SERVER_NAME = oameye.works.coregrade.com -- 06:46:20.410 INFO [10235]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=f1p87gdrt9oilv37vj1v2citvtoao7i3; _gat_gtag_UA_54829827_2=1 -- 06:46:20.410 INFO [10235]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 06:46:20.410 INFO [10235]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:46:20.422 INFO [10235]: COREGRADE is stopping... -- 06:46:20.422 DEBUG [10235]: Closing database connection -- 06:46:20.422 SQL [10235]: pgsql_close() -- 06:46:24.598 INFO [10235]: COREGRADE is starting... -- 06:46:24.598 INFO [10235]: Version from config: 1.0 -- 06:46:24.598 DEBUG [10235]: Connecting to database... -- 06:46:24.598 DEBUG [10235]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:46:24.598 SQL [10235]: pgsql_db_connect() -- 06:46:24.603 DEBUG [10235]: Database connection successful -- 06:46:24.603 INFO [10235]: _SERVER found -- 06:46:24.603 INFO [10235]: REMOTE_ADDR = 192.168.1.13 -- 06:46:24.603 INFO [10235]: SERVER_NAME = oameye.works.coregrade.com -- 06:46:24.603 INFO [10235]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=f1p87gdrt9oilv37vj1v2citvtoao7i3; _gat_gtag_UA_54829827_2=1 -- 06:46:24.603 INFO [10235]: QUERY_STRING = -- 06:46:24.603 INFO [10235]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:46:24.640 INFO [10235]: COREGRADE is stopping... -- 06:46:24.640 DEBUG [10235]: Closing database connection -- 06:46:24.640 SQL [10235]: pgsql_close() -- 06:46:34.834 INFO [10234]: COREGRADE is starting... -- 06:46:34.834 INFO [10234]: Version from config: 1.0 -- 06:46:34.834 DEBUG [10234]: Connecting to database... -- 06:46:34.834 DEBUG [10234]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:46:34.834 SQL [10234]: pgsql_db_connect() -- 06:46:34.838 DEBUG [10234]: Database connection successful -- 06:46:34.838 INFO [10234]: _SERVER found -- 06:46:34.838 INFO [10234]: REMOTE_ADDR = 192.168.1.13 -- 06:46:34.838 INFO [10234]: SERVER_NAME = oameye.works.coregrade.com -- 06:46:34.838 INFO [10234]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=f1p87gdrt9oilv37vj1v2citvtoao7i3; _gat_gtag_UA_54829827_2=1 -- 06:46:34.838 INFO [10234]: QUERY_STRING = -- 06:46:34.838 INFO [10234]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:46:34.876 INFO [10234]: COREGRADE is stopping... -- 06:46:34.876 DEBUG [10234]: Closing database connection -- 06:46:34.876 SQL [10234]: pgsql_close() -- 06:46:58.624 INFO [10887]: COREGRADE is starting... -- 06:46:58.624 INFO [10887]: Version from config: 1.0 -- 06:46:58.624 DEBUG [10887]: Connecting to database... -- 06:46:58.625 DEBUG [10887]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:46:58.625 SQL [10887]: pgsql_db_connect() -- 06:46:58.629 DEBUG [10887]: Database connection successful -- 06:46:58.629 INFO [10887]: _SERVER found -- 06:46:58.629 INFO [10887]: REMOTE_ADDR = 192.168.1.13 -- 06:46:58.629 INFO [10887]: SERVER_NAME = oameye.works.coregrade.com -- 06:46:58.629 INFO [10887]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=f1p87gdrt9oilv37vj1v2citvtoao7i3 -- 06:46:58.629 INFO [10887]: QUERY_STRING = /home/howitworks -- 06:46:58.629 INFO [10887]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:46:58.666 INFO [10887]: COREGRADE is stopping... -- 06:46:58.666 DEBUG [10887]: Closing database connection -- 06:46:58.666 SQL [10887]: pgsql_close() -- 06:46:58.952 INFO [10887]: COREGRADE is starting... -- 06:46:58.952 INFO [10887]: Version from config: 1.0 -- 06:46:58.952 DEBUG [10887]: Connecting to database... -- 06:46:58.952 DEBUG [10887]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:46:58.952 SQL [10887]: pgsql_db_connect() -- 06:46:58.956 DEBUG [10887]: Database connection successful -- 06:46:58.956 INFO [10887]: _SERVER found -- 06:46:58.956 INFO [10887]: REMOTE_ADDR = 192.168.1.13 -- 06:46:58.956 INFO [10887]: SERVER_NAME = oameye.works.coregrade.com -- 06:46:58.956 INFO [10887]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=f1p87gdrt9oilv37vj1v2citvtoao7i3 -- 06:46:58.956 INFO [10887]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 06:46:58.956 INFO [10887]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:46:58.967 INFO [10887]: COREGRADE is stopping... -- 06:46:58.967 DEBUG [10887]: Closing database connection -- 06:46:58.967 SQL [10887]: pgsql_close() -- 06:47:04.646 INFO [10237]: COREGRADE is starting... -- 06:47:04.647 INFO [10237]: Version from config: 1.0 -- 06:47:04.647 DEBUG [10237]: Connecting to database... -- 06:47:04.647 DEBUG [10237]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:47:04.647 SQL [10237]: pgsql_db_connect() -- 06:47:04.651 DEBUG [10237]: Database connection successful -- 06:47:04.651 INFO [10237]: _SERVER found -- 06:47:04.651 INFO [10237]: REMOTE_ADDR = 192.168.1.13 -- 06:47:04.651 INFO [10237]: SERVER_NAME = oameye.works.coregrade.com -- 06:47:04.651 INFO [10237]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=f1p87gdrt9oilv37vj1v2citvtoao7i3 -- 06:47:04.651 INFO [10237]: QUERY_STRING = -- 06:47:04.651 INFO [10237]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:47:04.691 INFO [10237]: COREGRADE is stopping... -- 06:47:04.691 DEBUG [10237]: Closing database connection -- 06:47:04.691 SQL [10237]: pgsql_close() -- 06:51:00.402 INFO [10236]: COREGRADE is starting... -- 06:51:00.402 INFO [10236]: Version from config: 1.0 -- 06:51:00.402 DEBUG [10236]: Connecting to database... -- 06:51:00.402 DEBUG [10236]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:51:00.402 SQL [10236]: pgsql_db_connect() -- 06:51:00.407 DEBUG [10236]: Database connection successful -- 06:51:00.407 INFO [10236]: _SERVER found -- 06:51:00.407 INFO [10236]: REMOTE_ADDR = 192.168.1.13 -- 06:51:00.407 INFO [10236]: SERVER_NAME = oameye.works.coregrade.com -- 06:51:00.407 INFO [10236]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=f1p87gdrt9oilv37vj1v2citvtoao7i3 -- 06:51:00.407 INFO [10236]: QUERY_STRING = -- 06:51:00.407 INFO [10236]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:51:00.443 INFO [10236]: COREGRADE is stopping... -- 06:51:00.443 DEBUG [10236]: Closing database connection -- 06:51:00.444 SQL [10236]: pgsql_close() -- 06:51:00.625 INFO [10236]: COREGRADE is starting... -- 06:51:00.625 INFO [10236]: Version from config: 1.0 -- 06:51:00.625 DEBUG [10236]: Connecting to database... -- 06:51:00.625 DEBUG [10236]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:51:00.625 SQL [10236]: pgsql_db_connect() -- 06:51:00.631 INFO [10238]: COREGRADE is starting... -- 06:51:00.631 INFO [10238]: Version from config: 1.0 -- 06:51:00.631 DEBUG [10238]: Connecting to database... -- 06:51:00.631 DEBUG [10238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:51:00.631 SQL [10238]: pgsql_db_connect() -- 06:51:00.629 DEBUG [10236]: Database connection successful -- 06:51:00.629 INFO [10236]: _SERVER found -- 06:51:00.629 INFO [10236]: REMOTE_ADDR = 192.168.1.13 -- 06:51:00.629 INFO [10236]: SERVER_NAME = oameye.works.coregrade.com -- 06:51:00.629 INFO [10236]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=jnuia97pnk04a7jl0i04j8ntm8pnku0i -- 06:51:00.629 INFO [10236]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 06:51:00.629 INFO [10236]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:51:00.641 INFO [10236]: COREGRADE is stopping... -- 06:51:00.641 DEBUG [10236]: Closing database connection -- 06:51:00.641 SQL [10236]: pgsql_close() -- 06:51:00.635 DEBUG [10238]: Database connection successful -- 06:51:00.635 INFO [10238]: _SERVER found -- 06:51:00.635 INFO [10238]: REMOTE_ADDR = 192.168.1.13 -- 06:51:00.635 INFO [10238]: SERVER_NAME = oameye.works.coregrade.com -- 06:51:00.635 INFO [10238]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=jnuia97pnk04a7jl0i04j8ntm8pnku0i -- 06:51:00.635 INFO [10238]: QUERY_STRING = /assets/img/footer_1.jpg -- 06:51:00.635 INFO [10238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:51:00.647 INFO [10238]: COREGRADE is stopping... -- 06:51:00.647 DEBUG [10238]: Closing database connection -- 06:51:00.648 SQL [10238]: pgsql_close() -- 06:51:10.303 INFO [10816]: COREGRADE is starting... -- 06:51:10.303 INFO [10816]: Version from config: 1.0 -- 06:51:10.303 DEBUG [10816]: Connecting to database... -- 06:51:10.303 DEBUG [10816]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:51:10.303 SQL [10816]: pgsql_db_connect() -- 06:51:10.307 DEBUG [10816]: Database connection successful -- 06:51:10.307 INFO [10816]: _SERVER found -- 06:51:10.308 INFO [10816]: REMOTE_ADDR = 192.168.1.13 -- 06:51:10.308 INFO [10816]: SERVER_NAME = oameye.works.coregrade.com -- 06:51:10.308 INFO [10816]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=jnuia97pnk04a7jl0i04j8ntm8pnku0i; _gat_gtag_UA_54829827_2=1 -- 06:51:10.308 INFO [10816]: QUERY_STRING = -- 06:51:10.308 INFO [10816]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:51:10.339 INFO [10816]: COREGRADE is stopping... -- 06:51:10.339 DEBUG [10816]: Closing database connection -- 06:51:10.339 SQL [10816]: pgsql_close() -- 06:51:16.654 INFO [10817]: COREGRADE is starting... -- 06:51:16.654 INFO [10817]: Version from config: 1.0 -- 06:51:16.654 DEBUG [10817]: Connecting to database... -- 06:51:16.654 DEBUG [10817]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:51:16.654 SQL [10817]: pgsql_db_connect() -- 06:51:16.658 DEBUG [10817]: Database connection successful -- 06:51:16.658 INFO [10817]: _SERVER found -- 06:51:16.659 INFO [10817]: REMOTE_ADDR = 192.168.1.13 -- 06:51:16.659 INFO [10817]: SERVER_NAME = oameye.works.coregrade.com -- 06:51:16.659 INFO [10817]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=jnuia97pnk04a7jl0i04j8ntm8pnku0i; _gat_gtag_UA_54829827_2=1 -- 06:51:16.659 INFO [10817]: QUERY_STRING = -- 06:51:16.659 INFO [10817]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:51:16.700 INFO [10817]: COREGRADE is stopping... -- 06:51:16.700 DEBUG [10817]: Closing database connection -- 06:51:16.700 SQL [10817]: pgsql_close() -- 06:54:35.863 INFO [10235]: COREGRADE is starting... -- 06:54:35.864 INFO [10235]: Version from config: 1.0 -- 06:54:35.864 DEBUG [10235]: Connecting to database... -- 06:54:35.864 DEBUG [10235]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:54:35.864 SQL [10235]: pgsql_db_connect() -- 06:54:35.870 INFO [10234]: COREGRADE is starting... -- 06:54:35.870 INFO [10234]: Version from config: 1.0 -- 06:54:35.870 DEBUG [10234]: Connecting to database... -- 06:54:35.870 DEBUG [10234]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:54:35.870 SQL [10234]: pgsql_db_connect() -- 06:54:35.868 DEBUG [10235]: Database connection successful -- 06:54:35.868 INFO [10235]: _SERVER found -- 06:54:35.868 INFO [10235]: REMOTE_ADDR = 192.168.1.13 -- 06:54:35.868 INFO [10235]: SERVER_NAME = oameye.works.coregrade.com -- 06:54:35.868 INFO [10235]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=jnuia97pnk04a7jl0i04j8ntm8pnku0i -- 06:54:35.868 INFO [10235]: QUERY_STRING = /auth -- 06:54:35.868 INFO [10235]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:54:35.903 INFO [10235]: COREGRADE is stopping... -- 06:54:35.903 DEBUG [10235]: Closing database connection -- 06:54:35.903 SQL [10235]: pgsql_close() -- 06:54:35.875 DEBUG [10234]: Database connection successful -- 06:54:35.875 INFO [10234]: _SERVER found -- 06:54:35.875 INFO [10234]: REMOTE_ADDR = 192.168.1.13 -- 06:54:35.875 INFO [10234]: SERVER_NAME = oameye.works.coregrade.com -- 06:54:35.875 INFO [10234]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=jnuia97pnk04a7jl0i04j8ntm8pnku0i -- 06:54:35.875 INFO [10234]: QUERY_STRING = /welcome/viewLogin -- 06:54:35.875 INFO [10234]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:54:35.906 INFO [10234]: COREGRADE is stopping... -- 06:54:35.906 DEBUG [10234]: Closing database connection -- 06:54:35.906 SQL [10234]: pgsql_close() -- 06:54:35.946 INFO [10234]: COREGRADE is starting... -- 06:54:35.947 INFO [10234]: Version from config: 1.0 -- 06:54:35.947 DEBUG [10234]: Connecting to database... -- 06:54:35.947 DEBUG [10234]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:54:35.947 SQL [10234]: pgsql_db_connect() -- 06:54:35.951 DEBUG [10234]: Database connection successful -- 06:54:35.951 INFO [10234]: _SERVER found -- 06:54:35.951 INFO [10234]: REMOTE_ADDR = 192.168.1.13 -- 06:54:35.951 INFO [10234]: SERVER_NAME = oameye.works.coregrade.com -- 06:54:35.951 INFO [10234]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=jnuia97pnk04a7jl0i04j8ntm8pnku0i -- 06:54:35.951 INFO [10234]: QUERY_STRING = /auth/index -- 06:54:35.951 INFO [10234]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:54:35.982 INFO [10234]: COREGRADE is stopping... -- 06:54:35.982 DEBUG [10234]: Closing database connection -- 06:54:35.982 SQL [10234]: pgsql_close() -- 06:54:36.078 INFO [10234]: COREGRADE is starting... -- 06:54:36.078 INFO [10234]: Version from config: 1.0 -- 06:54:36.078 DEBUG [10234]: Connecting to database... -- 06:54:36.078 DEBUG [10234]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:54:36.078 SQL [10234]: pgsql_db_connect() -- 06:54:36.082 DEBUG [10234]: Database connection successful -- 06:54:36.082 INFO [10234]: _SERVER found -- 06:54:36.082 INFO [10234]: REMOTE_ADDR = 192.168.1.13 -- 06:54:36.082 INFO [10234]: SERVER_NAME = oameye.works.coregrade.com -- 06:54:36.082 INFO [10234]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=jnuia97pnk04a7jl0i04j8ntm8pnku0i -- 06:54:36.082 INFO [10234]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 06:54:36.082 INFO [10234]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:54:36.094 INFO [10234]: COREGRADE is stopping... -- 06:54:36.094 DEBUG [10234]: Closing database connection -- 06:54:36.094 SQL [10234]: pgsql_close() -- 07:00:25.021 INFO [10887]: COREGRADE is starting... -- 07:00:25.021 INFO [10887]: Version from config: 1.0 -- 07:00:25.021 DEBUG [10887]: Connecting to database... -- 07:00:25.021 DEBUG [10887]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:00:25.021 SQL [10887]: pgsql_db_connect() -- 07:00:25.026 DEBUG [10887]: Database connection successful -- 07:00:25.026 INFO [10887]: _SERVER found -- 07:00:25.026 INFO [10887]: REMOTE_ADDR = 192.168.1.13 -- 07:00:25.026 INFO [10887]: SERVER_NAME = oameye.works.coregrade.com -- 07:00:25.026 INFO [10887]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=jnuia97pnk04a7jl0i04j8ntm8pnku0i -- 07:00:25.026 INFO [10887]: QUERY_STRING = /auth/newuser -- 07:00:25.026 INFO [10887]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:00:25.061 INFO [10887]: COREGRADE is stopping... -- 07:00:25.061 DEBUG [10887]: Closing database connection -- 07:00:25.061 SQL [10887]: pgsql_close() -- 07:00:25.231 INFO [10887]: COREGRADE is starting... -- 07:00:25.231 INFO [10887]: Version from config: 1.0 -- 07:00:25.231 DEBUG [10887]: Connecting to database... -- 07:00:25.231 DEBUG [10887]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:00:25.231 SQL [10887]: pgsql_db_connect() -- 07:00:25.235 DEBUG [10887]: Database connection successful -- 07:00:25.235 INFO [10887]: _SERVER found -- 07:00:25.235 INFO [10887]: REMOTE_ADDR = 192.168.1.13 -- 07:00:25.235 INFO [10887]: SERVER_NAME = oameye.works.coregrade.com -- 07:00:25.235 INFO [10887]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=17s99dloq5hcguc7sqe439gf2vek7mpl -- 07:00:25.235 INFO [10887]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 07:00:25.235 INFO [10887]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:00:25.247 INFO [10887]: COREGRADE is stopping... -- 07:00:25.247 DEBUG [10887]: Closing database connection -- 07:00:25.247 SQL [10887]: pgsql_close() -- 07:00:44.967 INFO [10237]: COREGRADE is starting... -- 07:00:44.967 INFO [10237]: Version from config: 1.0 -- 07:00:44.967 DEBUG [10237]: Connecting to database... -- 07:00:44.967 DEBUG [10237]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:00:44.967 SQL [10237]: pgsql_db_connect() -- 07:00:45.007 INFO [10237]: COREGRADE is starting... -- 07:00:45.008 INFO [10237]: Version from config: 1.0 -- 07:00:45.008 DEBUG [10237]: Connecting to database... -- 07:00:45.008 DEBUG [10237]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:00:45.008 SQL [10237]: pgsql_db_connect() -- 07:00:45.012 DEBUG [10237]: Database connection successful -- 07:00:45.012 INFO [10237]: _SERVER found -- 07:00:45.012 INFO [10237]: REMOTE_ADDR = 192.168.1.13 -- 07:00:45.012 INFO [10237]: SERVER_NAME = oameye.works.coregrade.com -- 07:00:45.012 INFO [10237]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=17s99dloq5hcguc7sqe439gf2vek7mpl -- 07:00:45.012 INFO [10237]: QUERY_STRING = -- 07:00:45.012 INFO [10237]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:00:45.012 INFO [10237]: SystemStatus()09-09-********~************ -- 07:00:45.012 INFO [10237]: long coregrade_api_main(CVars in, CVars &out) -- 07:00:45.012 INFO [10237]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 07:00:45.012 INFO [10237]: account calls -- 07:00:45.012 INFO [10237]: account_calls() -- 07:00:45.013 FLOG_MAX [10237]: REQ_STRING(username) -- 07:00:45.013 FLOG_MAX [10237]: REQ_STRING(firstname) -- 07:00:45.013 FLOG_MAX [10237]: REQ_STRING(lastname) -- 07:00:45.013 FLOG_MAX [10237]: REQ_STRING(email) -- 07:00:45.013 SQL [10237]: pgsql_query() -- 07:00:45.013 SQL [10237]: About to run query: -- 07:00:45.013 SQL [10237]: SELECT * FROM members WHERE LOWER(username) = LOWER('ameye+12@chiefsoft.com') -- 07:00:45.016 SQL [10237]: Found rows: 0 -- 07:00:45.016 SQL [10237]: Found rows: 0 -- 07:00:45.016 FLOG_MAX [10237]: insert_db_record() -- 07:00:45.016 SQL [10237]: pgsql_exec() -- 07:00:45.016 SQL [10237]: About to run query: -- 07:00:45.016 SQL [10237]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ameye+12@chiefsoft.com','Olu','Amey','192.168.1.13','','ameye+12@chiefsoft.com','RS-000594944-1971032064-2111881216') -- 07:00:45.018 SQL [10237]: PQcmdTuples: 1 -- 07:00:45.018 SQL [10237]: Affected rows: 1 -- 07:00:45.018 FLOG_MAX [10237]: SELECT currval('members_pending_id_seq') -- 07:00:45.018 SQL [10237]: pgsql_query() -- 07:00:45.018 SQL [10237]: About to run query: -- 07:00:45.018 SQL [10237]: SELECT currval('members_pending_id_seq') -- 07:00:45.018 SQL [10237]: Found rows: 1 -- 07:00:45.018 SQL [10237]: pgsql_query() -- 07:00:45.018 SQL [10237]: About to run query: -- 07:00:45.018 SQL [10237]: UPDATE members_pending SET password = md5('may12002') WHERE id = 29 -- 07:00:45.019 SQL [10237]: Found rows: 0 -- 07:00:45.019 SQL [10237]: Found rows: 0 -- 07:00:45.019 FLOG_MAX [10237]: long load_db_record( CVars &rec, const char * query, ... ) -- 07:00:45.019 SQL [10237]: pgsql_query() -- 07:00:45.019 SQL [10237]: About to run query: -- 07:00:45.019 SQL [10237]: SELECT * FROM members_pending WHERE id = 29 -- 07:00:45.020 SQL [10237]: Found rows: 1 -- 07:00:45.020 FLOG_MAX [10237]: load_db_record(SELECT * FROM members_pending WHERE id = 29 ) num_cols=13 -- 07:00:45.020 FLOG_MAX [10237]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 07:00:45.020 FLOG_MAX [10237]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1454 bytes -- 07:00:45.020 FLOG_MAX [10237]: Returning from FormFile() -- 07:00:45.020 FLOG_MAX [10237]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 07:00:45.020 FLOG_MAX [10237]: ESMTP( 10.0.0.23, support@coregrade.com, ameye+12@chiefsoft.com ) -- 07:00:45.020 FLOG_MAX [10237]: Prepare body -- 07:00:45.020 FLOG_MAX [10237]: Locate & extract subject -- 07:00:45.020 FLOG_MAX [10237]: Found subject: CoreGrade - Pending Signup - Verify ameye+12@chiefsoft.com -- 07:00:45.020 FLOG_MAX [10237]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t ameye+12@chiefsoft.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'CoreGrade - Pending Signup - Verify ameye+12@chiefsoft.com' -M ' - - - -
-
- - - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to verify your email. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-000594944-1971032064-2111881216 -
-CoreGrade,your personalized learning in one place with tools to make it happen. CoreGrade makes it easy to track due dates of goals set, focus plans with e-alerts in your workspace and dashboard. - -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/home/contactus?vlnk=RS-000594944-1971032064-2111881216 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-
-
- -
- - - - - -' -- 07:00:45.107 FLOG_MAX [10237]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Pending Signup - Verify ameye+12@chiefsoft.com -From: CoreGrade Support -Date: Sun, 08 Mar 2020 07:00:45 -0400 -To: ameye+12@chiefsoft.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="UDNqFq2yvP/pSBlx" -Mime-version: 1.0 - - ---UDNqFq2yvP/pSBlx -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
- - - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to verify your email. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-000594944-1971032064-2111881216 -
-CoreGrade,your personalized learning in one place with tools to make it happen. CoreGrade makes it easy to track due dates of goals set, focus plans with e-alerts in your workspace and dashboard. - -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/home/contactus?vlnk=RS-000594944-1971032064-2111881216 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-
-
- -
- - - - - - - - ---UDNqFq2yvP/pSBlx-- - -[C] . -[S] 250 2.0.0 Ok: queued as 199612113083 -[C] QUIT -[S] 221 2.0.0 Bye -³U -- 07:00:45.107 FLOG_MAX [10237]: - -END OF PIPE OUTPUT - - -- 07:00:45.107 FLOG_MAX [10237]: /ESMTP() -- 07:00:45.107 INFO [10237]: RET: action=11010 -- 07:00:45.107 INFO [10237]: RET: email=ameye+12@chiefsoft.com -- 07:00:45.107 INFO [10237]: RET: firstname=Olu -- 07:00:45.107 INFO [10237]: RET: lastname=Amey -- 07:00:45.107 INFO [10237]: RET: password=may12002 -- 07:00:45.107 INFO [10237]: RET: pending_id=29 -- 07:00:45.107 INFO [10237]: RET: pid=100 -- 07:00:45.107 INFO [10237]: RET: status_message=Pending -- 07:00:45.107 INFO [10237]: RET: username=ameye+12@chiefsoft.com -- 07:00:45.109 INFO [10237]: COREGRADE is stopping... -- 07:00:45.110 DEBUG [10237]: Closing database connection -- 07:00:45.110 SQL [10237]: pgsql_close() -- 07:00:44.971 DEBUG [10237]: Database connection successful -- 07:00:44.971 INFO [10237]: _SERVER found -- 07:00:44.971 INFO [10237]: REMOTE_ADDR = 192.168.1.13 -- 07:00:44.971 INFO [10237]: SERVER_NAME = oameye.works.coregrade.com -- 07:00:44.972 INFO [10237]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=17s99dloq5hcguc7sqe439gf2vek7mpl -- 07:00:44.972 INFO [10237]: QUERY_STRING = /auth/newuser -- 07:00:44.972 INFO [10237]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:00:45.110 INFO [10237]: COREGRADE is stopping... -- 07:00:45.110 DEBUG [10237]: Closing database connection -- 07:00:45.110 SQL [10237]: pgsql_close() -- 07:00:45.344 INFO [10237]: COREGRADE is starting... -- 07:00:45.345 INFO [10237]: Version from config: 1.0 -- 07:00:45.345 DEBUG [10237]: Connecting to database... -- 07:00:45.345 DEBUG [10237]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:00:45.345 SQL [10237]: pgsql_db_connect() -- 07:00:45.349 DEBUG [10237]: Database connection successful -- 07:00:45.349 INFO [10237]: _SERVER found -- 07:00:45.349 INFO [10237]: REMOTE_ADDR = 192.168.1.13 -- 07:00:45.349 INFO [10237]: SERVER_NAME = oameye.works.coregrade.com -- 07:00:45.349 INFO [10237]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=17s99dloq5hcguc7sqe439gf2vek7mpl -- 07:00:45.349 INFO [10237]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 07:00:45.349 INFO [10237]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:00:45.361 INFO [10237]: COREGRADE is stopping... -- 07:00:45.361 DEBUG [10237]: Closing database connection -- 07:00:45.361 SQL [10237]: pgsql_close() -- 07:01:32.841 INFO [10236]: COREGRADE is starting... -- 07:01:32.841 INFO [10236]: Version from config: 1.0 -- 07:01:32.841 DEBUG [10236]: Connecting to database... -- 07:01:32.841 DEBUG [10236]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:01:32.841 SQL [10236]: pgsql_db_connect() -- 07:01:32.846 DEBUG [10236]: Database connection successful -- 07:01:32.846 INFO [10236]: _SERVER found -- 07:01:32.846 INFO [10236]: REMOTE_ADDR = 192.168.1.13 -- 07:01:32.846 INFO [10236]: SERVER_NAME = oameye.works.coregrade.com -- 07:01:32.846 INFO [10236]: QUERY_STRING = /img/logo-email.png -- 07:01:32.846 INFO [10236]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:01:32.858 INFO [10236]: COREGRADE is stopping... -- 07:01:32.858 DEBUG [10236]: Closing database connection -- 07:01:32.858 SQL [10236]: pgsql_close() -- 07:02:10.261 INFO [10238]: COREGRADE is starting... -- 07:02:10.261 INFO [10238]: Version from config: 1.0 -- 07:02:10.261 DEBUG [10238]: Connecting to database... -- 07:02:10.261 DEBUG [10238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:02:10.261 SQL [10238]: pgsql_db_connect() -- 07:02:10.299 INFO [10238]: COREGRADE is starting... -- 07:02:10.299 INFO [10238]: Version from config: 1.0 -- 07:02:10.299 DEBUG [10238]: Connecting to database... -- 07:02:10.299 DEBUG [10238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:02:10.299 SQL [10238]: pgsql_db_connect() -- 07:02:10.304 DEBUG [10238]: Database connection successful -- 07:02:10.304 INFO [10238]: _SERVER found -- 07:02:10.304 INFO [10238]: REMOTE_ADDR = 192.168.1.13 -- 07:02:10.304 INFO [10238]: SERVER_NAME = oameye.works.coregrade.com -- 07:02:10.304 INFO [10238]: QUERY_STRING = vlnk=RS-000594944-1971032064-2111881216 -- 07:02:10.304 INFO [10238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:02:10.304 INFO [10238]: SystemStatus()09-09-********~************ -- 07:02:10.304 INFO [10238]: long coregrade_api_main(CVars in, CVars &out) -- 07:02:10.304 INFO [10238]: long coregrade_api_main(CVars in, CVars &out) action =11020 -- 07:02:10.304 INFO [10238]: account calls -- 07:02:10.304 INFO [10238]: account_calls() -- 07:02:10.304 INFO [10238]: CreateCoreGradeAccount() -- 07:02:10.304 FLOG_MAX [10238]: REQ_STRING(verify_link) -- 07:02:10.304 FLOG_MAX [10238]: long load_db_record( CVars &rec, const char * query, ... ) -- 07:02:10.304 SQL [10238]: pgsql_query() -- 07:02:10.304 SQL [10238]: About to run query: -- 07:02:10.304 SQL [10238]: SELECT *,id AS pending_id FROM members_pending WHERE verify_link ='RS-000594944-1971032064-2111881216' AND expire > now() LIMIT 1 -- 07:02:10.307 SQL [10238]: Found rows: 1 -- 07:02:10.307 FLOG_MAX [10238]: load_db_record(SELECT *,id AS pending_id FROM members_pending WHERE verify_link ='RS-000594944-1971032064-2111881216' AND expire > now() LIMIT 1) num_cols=14 -- 07:02:10.307 FLOG_MAX [10238]: insert_db_record() -- 07:02:10.307 SQL [10238]: pgsql_exec() -- 07:02:10.307 SQL [10238]: About to run query: -- 07:02:10.307 SQL [10238]: INSERT INTO members (email,firstname,lastname,loc,password,phone,username) VALUES ('ameye+12@chiefsoft.com','Olu','Amey','192.168.1.13','d0fbea2563b377ea7074bced45c88dcb','','ameye+12@chiefsoft.com') -- 07:02:10.309 SQL [10238]: PQcmdTuples: 1 -- 07:02:10.309 SQL [10238]: Affected rows: 1 -- 07:02:10.309 FLOG_MAX [10238]: SELECT currval('members_id_seq') -- 07:02:10.309 SQL [10238]: pgsql_query() -- 07:02:10.309 SQL [10238]: About to run query: -- 07:02:10.309 SQL [10238]: SELECT currval('members_id_seq') -- 07:02:10.310 SQL [10238]: Found rows: 1 -- 07:02:10.310 SQL [10238]: pgsql_query() -- 07:02:10.310 SQL [10238]: About to run query: -- 07:02:10.310 SQL [10238]: UPDATE members_pending SET status = 5,verified=now() WHERE id = 29 -- 07:02:10.311 SQL [10238]: Found rows: 0 -- 07:02:10.311 SQL [10238]: Found rows: 0 -- 07:02:10.311 INFO [10238]: /CreateCoreGradeAccount() -- 07:02:10.311 INFO [10238]: RET: added=2020-03-08 07:00:45.016577 -- 07:02:10.311 INFO [10238]: RET: email=ameye+12@chiefsoft.com -- 07:02:10.311 INFO [10238]: RET: expire=2020-03-10 07:00:45.016577 -- 07:02:10.311 INFO [10238]: RET: firstname=Olu -- 07:02:10.311 INFO [10238]: RET: id=29 -- 07:02:10.311 INFO [10238]: RET: lastname=Amey -- 07:02:10.311 INFO [10238]: RET: loc=192.168.1.13 -- 07:02:10.311 INFO [10238]: RET: member_id=16 -- 07:02:10.311 INFO [10238]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 07:02:10.311 INFO [10238]: RET: pending_id=29 -- 07:02:10.311 INFO [10238]: RET: phone= -- 07:02:10.311 INFO [10238]: RET: result=YES I GET TO BACK END -- 07:02:10.311 INFO [10238]: RET: status=prepare to create account -- 07:02:10.311 INFO [10238]: RET: username=ameye+12@chiefsoft.com -- 07:02:10.311 INFO [10238]: RET: verified= -- 07:02:10.311 INFO [10238]: RET: verify_link=RS-000594944-1971032064-2111881216 -- 07:02:10.312 INFO [10238]: COREGRADE is stopping... -- 07:02:10.312 DEBUG [10238]: Closing database connection -- 07:02:10.312 SQL [10238]: pgsql_close() -- 07:02:10.266 DEBUG [10238]: Database connection successful -- 07:02:10.266 INFO [10238]: _SERVER found -- 07:02:10.266 INFO [10238]: REMOTE_ADDR = 192.168.1.13 -- 07:02:10.266 INFO [10238]: SERVER_NAME = oameye.works.coregrade.com -- 07:02:10.266 INFO [10238]: QUERY_STRING = /vemail -- 07:02:10.266 INFO [10238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:02:10.312 INFO [10238]: COREGRADE is stopping... -- 07:02:10.312 DEBUG [10238]: Closing database connection -- 07:02:10.312 SQL [10238]: pgsql_close() -- 07:02:10.986 INFO [10816]: COREGRADE is starting... -- 07:02:10.986 INFO [10816]: Version from config: 1.0 -- 07:02:10.986 DEBUG [10816]: Connecting to database... -- 07:02:10.986 DEBUG [10816]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:02:10.986 SQL [10816]: pgsql_db_connect() -- 07:02:10.991 DEBUG [10816]: Database connection successful -- 07:02:10.991 INFO [10816]: _SERVER found -- 07:02:10.991 INFO [10816]: REMOTE_ADDR = 192.168.1.13 -- 07:02:10.991 INFO [10816]: SERVER_NAME = oameye.works.coregrade.com -- 07:02:10.991 INFO [10816]: HTTP_COOKIE = ci_session=1ndtoel4o47n6oti9qbavmcn771nij88 -- 07:02:10.991 INFO [10816]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 07:02:10.991 INFO [10816]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:02:11.003 INFO [10816]: COREGRADE is stopping... -- 07:02:11.003 DEBUG [10816]: Closing database connection -- 07:02:11.003 SQL [10816]: pgsql_close() -- 07:03:24.761 INFO [10817]: COREGRADE is starting... -- 07:03:24.761 INFO [10817]: Version from config: 1.0 -- 07:03:24.761 DEBUG [10817]: Connecting to database... -- 07:03:24.761 DEBUG [10817]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:03:24.761 SQL [10817]: pgsql_db_connect() -- 07:03:24.765 DEBUG [10817]: Database connection successful -- 07:03:24.765 INFO [10817]: _SERVER found -- 07:03:24.765 INFO [10817]: REMOTE_ADDR = 192.168.1.13 -- 07:03:24.765 INFO [10817]: SERVER_NAME = oameye.works.coregrade.com -- 07:03:24.765 INFO [10817]: QUERY_STRING = /img/logo-email.png -- 07:03:24.765 INFO [10817]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:03:24.778 INFO [10817]: COREGRADE is stopping... -- 07:03:24.778 DEBUG [10817]: Closing database connection -- 07:03:24.778 SQL [10817]: pgsql_close() -- 07:03:36.720 INFO [10235]: COREGRADE is starting... -- 07:03:36.720 INFO [10235]: Version from config: 1.0 -- 07:03:36.720 DEBUG [10235]: Connecting to database... -- 07:03:36.720 DEBUG [10235]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:03:36.720 SQL [10235]: pgsql_db_connect() -- 07:03:36.724 DEBUG [10235]: Database connection successful -- 07:03:36.724 INFO [10235]: _SERVER found -- 07:03:36.724 INFO [10235]: REMOTE_ADDR = 192.168.1.13 -- 07:03:36.724 INFO [10235]: SERVER_NAME = oameye.works.coregrade.com -- 07:03:36.724 INFO [10235]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=17s99dloq5hcguc7sqe439gf2vek7mpl -- 07:03:36.724 INFO [10235]: QUERY_STRING = /auth -- 07:03:36.724 INFO [10235]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:03:36.756 INFO [10235]: COREGRADE is stopping... -- 07:03:36.756 DEBUG [10235]: Closing database connection -- 07:03:36.756 SQL [10235]: pgsql_close() -- 07:03:42.431 INFO [10234]: COREGRADE is starting... -- 07:03:42.431 INFO [10234]: Version from config: 1.0 -- 07:03:42.431 DEBUG [10234]: Connecting to database... -- 07:03:42.431 DEBUG [10234]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:03:42.432 SQL [10234]: pgsql_db_connect() -- 07:03:42.436 DEBUG [10234]: Database connection successful -- 07:03:42.436 INFO [10234]: _SERVER found -- 07:03:42.436 INFO [10234]: REMOTE_ADDR = 192.168.1.13 -- 07:03:42.436 INFO [10234]: SERVER_NAME = oameye.works.coregrade.com -- 07:03:42.436 INFO [10234]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=17s99dloq5hcguc7sqe439gf2vek7mpl -- 07:03:42.436 INFO [10234]: QUERY_STRING = /auth/newuser -- 07:03:42.436 INFO [10234]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:03:42.468 INFO [10234]: COREGRADE is stopping... -- 07:03:42.468 DEBUG [10234]: Closing database connection -- 07:03:42.468 SQL [10234]: pgsql_close() -- 07:04:04.287 INFO [10887]: COREGRADE is starting... -- 07:04:04.287 INFO [10887]: Version from config: 1.0 -- 07:04:04.287 DEBUG [10887]: Connecting to database... -- 07:04:04.287 DEBUG [10887]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:04:04.287 SQL [10887]: pgsql_db_connect() -- 07:04:04.328 INFO [10887]: COREGRADE is starting... -- 07:04:04.328 INFO [10887]: Version from config: 1.0 -- 07:04:04.328 DEBUG [10887]: Connecting to database... -- 07:04:04.328 DEBUG [10887]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:04:04.328 SQL [10887]: pgsql_db_connect() -- 07:04:04.332 DEBUG [10887]: Database connection successful -- 07:04:04.332 INFO [10887]: _SERVER found -- 07:04:04.332 INFO [10887]: REMOTE_ADDR = 192.168.1.13 -- 07:04:04.332 INFO [10887]: SERVER_NAME = oameye.works.coregrade.com -- 07:04:04.332 INFO [10887]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=17s99dloq5hcguc7sqe439gf2vek7mpl -- 07:04:04.332 INFO [10887]: QUERY_STRING = -- 07:04:04.332 INFO [10887]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:04:04.332 INFO [10887]: SystemStatus()09-09-********~************ -- 07:04:04.332 INFO [10887]: long coregrade_api_main(CVars in, CVars &out) -- 07:04:04.332 INFO [10887]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 07:04:04.332 INFO [10887]: account calls -- 07:04:04.332 INFO [10887]: account_calls() -- 07:04:04.332 FLOG_MAX [10887]: REQ_STRING(username) -- 07:04:04.332 FLOG_MAX [10887]: REQ_STRING(firstname) -- 07:04:04.332 FLOG_MAX [10887]: REQ_STRING(lastname) -- 07:04:04.332 FLOG_MAX [10887]: REQ_STRING(email) -- 07:04:04.332 SQL [10887]: pgsql_query() -- 07:04:04.332 SQL [10887]: About to run query: -- 07:04:04.333 SQL [10887]: SELECT * FROM members WHERE LOWER(username) = LOWER('ameye+13@chiefsoft.com') -- 07:04:04.335 SQL [10887]: Found rows: 0 -- 07:04:04.335 SQL [10887]: Found rows: 0 -- 07:04:04.335 FLOG_MAX [10887]: insert_db_record() -- 07:04:04.335 SQL [10887]: pgsql_exec() -- 07:04:04.335 SQL [10887]: About to run query: -- 07:04:04.335 SQL [10887]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ameye+13@chiefsoft.com','Olu','Amey','192.168.1.13','','ameye+13@chiefsoft.com','RS-959172096-490060800-672512000') -- 07:04:04.336 SQL [10887]: PQcmdTuples: 1 -- 07:04:04.336 SQL [10887]: Affected rows: 1 -- 07:04:04.336 FLOG_MAX [10887]: SELECT currval('members_pending_id_seq') -- 07:04:04.336 SQL [10887]: pgsql_query() -- 07:04:04.336 SQL [10887]: About to run query: -- 07:04:04.336 SQL [10887]: SELECT currval('members_pending_id_seq') -- 07:04:04.337 SQL [10887]: Found rows: 1 -- 07:04:04.337 SQL [10887]: pgsql_query() -- 07:04:04.337 SQL [10887]: About to run query: -- 07:04:04.337 SQL [10887]: UPDATE members_pending SET password = md5('may12002') WHERE id = 30 -- 07:04:04.338 SQL [10887]: Found rows: 0 -- 07:04:04.338 SQL [10887]: Found rows: 0 -- 07:04:04.338 FLOG_MAX [10887]: long load_db_record( CVars &rec, const char * query, ... ) -- 07:04:04.338 SQL [10887]: pgsql_query() -- 07:04:04.338 SQL [10887]: About to run query: -- 07:04:04.338 SQL [10887]: SELECT * FROM members_pending WHERE id = 30 -- 07:04:04.338 SQL [10887]: Found rows: 1 -- 07:04:04.338 FLOG_MAX [10887]: load_db_record(SELECT * FROM members_pending WHERE id = 30 ) num_cols=13 -- 07:04:04.338 FLOG_MAX [10887]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 07:04:04.338 FLOG_MAX [10887]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1454 bytes -- 07:04:04.338 FLOG_MAX [10887]: Returning from FormFile() -- 07:04:04.338 FLOG_MAX [10887]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 07:04:04.338 FLOG_MAX [10887]: ESMTP( 10.0.0.23, support@coregrade.com, ameye+13@chiefsoft.com ) -- 07:04:04.338 FLOG_MAX [10887]: Prepare body -- 07:04:04.338 FLOG_MAX [10887]: Locate & extract subject -- 07:04:04.338 FLOG_MAX [10887]: Found subject: CoreGrade - Pending Signup - Verify ameye+13@chiefsoft.com -- 07:04:04.338 FLOG_MAX [10887]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t ameye+13@chiefsoft.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'CoreGrade - Pending Signup - Verify ameye+13@chiefsoft.com' -M ' - - - -
-
- - - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to verify your email. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-959172096-490060800-672512000 -
-CoreGrade,your personalized learning in one place with tools to make it happen. CoreGrade makes it easy to track due dates of goals set, focus plans with e-alerts in your workspace and dashboard. - -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/home/contactus?vlnk=RS-959172096-490060800-672512000 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-
-
- -
- - - - - -' -- 07:04:04.412 FLOG_MAX [10887]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Pending Signup - Verify ameye+13@chiefsoft.com -From: CoreGrade Support -Date: Sun, 08 Mar 2020 07:04:04 -0400 -To: ameye+13@chiefsoft.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="yAaZn2jMbk7lURc8" -Mime-version: 1.0 - - ---yAaZn2jMbk7lURc8 -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
- - - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to verify your email. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-959172096-490060800-672512000 -
-CoreGrade,your personalized learning in one place with tools to make it happen. CoreGrade makes it easy to track due dates of goals set, focus plans with e-alerts in your workspace and dashboard. - -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/home/contactus?vlnk=RS-959172096-490060800-672512000 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-
-
- -
- - - - - - - - ---yAaZn2jMbk7lURc8-- - -[C] . -[S] 250 2.0.0 Ok: queued as 646C02113083 -[C] QUIT -[S] 221 2.0.0 Bye - -- 07:04:04.412 FLOG_MAX [10887]: - -END OF PIPE OUTPUT - - -- 07:04:04.413 FLOG_MAX [10887]: /ESMTP() -- 07:04:04.413 INFO [10887]: RET: action=11010 -- 07:04:04.413 INFO [10887]: RET: email=ameye+13@chiefsoft.com -- 07:04:04.413 INFO [10887]: RET: firstname=Olu -- 07:04:04.413 INFO [10887]: RET: lastname=Amey -- 07:04:04.413 INFO [10887]: RET: password=may12002 -- 07:04:04.413 INFO [10887]: RET: pending_id=30 -- 07:04:04.413 INFO [10887]: RET: pid=100 -- 07:04:04.413 INFO [10887]: RET: status_message=Pending -- 07:04:04.413 INFO [10887]: RET: username=ameye+13@chiefsoft.com -- 07:04:04.415 INFO [10887]: COREGRADE is stopping... -- 07:04:04.415 DEBUG [10887]: Closing database connection -- 07:04:04.415 SQL [10887]: pgsql_close() -- 07:04:04.291 DEBUG [10887]: Database connection successful -- 07:04:04.291 INFO [10887]: _SERVER found -- 07:04:04.291 INFO [10887]: REMOTE_ADDR = 192.168.1.13 -- 07:04:04.291 INFO [10887]: SERVER_NAME = oameye.works.coregrade.com -- 07:04:04.291 INFO [10887]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=17s99dloq5hcguc7sqe439gf2vek7mpl -- 07:04:04.291 INFO [10887]: QUERY_STRING = /auth/newuser -- 07:04:04.291 INFO [10887]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:04:04.415 INFO [10887]: COREGRADE is stopping... -- 07:04:04.415 DEBUG [10887]: Closing database connection -- 07:04:04.415 SQL [10887]: pgsql_close() -- 07:04:08.138 INFO [10887]: COREGRADE is starting... -- 07:04:08.138 INFO [10887]: Version from config: 1.0 -- 07:04:08.138 DEBUG [10887]: Connecting to database... -- 07:04:08.138 DEBUG [10887]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:04:08.138 SQL [10887]: pgsql_db_connect() -- 07:04:08.142 DEBUG [10887]: Database connection successful -- 07:04:08.142 INFO [10887]: _SERVER found -- 07:04:08.142 INFO [10887]: REMOTE_ADDR = 192.168.1.13 -- 07:04:08.142 INFO [10887]: SERVER_NAME = oameye.works.coregrade.com -- 07:04:08.142 INFO [10887]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=17s99dloq5hcguc7sqe439gf2vek7mpl -- 07:04:08.142 INFO [10887]: QUERY_STRING = /auth -- 07:04:08.142 INFO [10887]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:04:08.174 INFO [10887]: COREGRADE is stopping... -- 07:04:08.174 DEBUG [10887]: Closing database connection -- 07:04:08.174 SQL [10887]: pgsql_close() -- 07:04:25.224 INFO [10237]: COREGRADE is starting... -- 07:04:25.224 INFO [10237]: Version from config: 1.0 -- 07:04:25.224 DEBUG [10237]: Connecting to database... -- 07:04:25.224 DEBUG [10237]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:04:25.224 SQL [10237]: pgsql_db_connect() -- 07:04:25.228 DEBUG [10237]: Database connection successful -- 07:04:25.228 INFO [10237]: _SERVER found -- 07:04:25.228 INFO [10237]: REMOTE_ADDR = 192.168.1.13 -- 07:04:25.228 INFO [10237]: SERVER_NAME = oameye.works.coregrade.com -- 07:04:25.228 INFO [10237]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=17s99dloq5hcguc7sqe439gf2vek7mpl -- 07:04:25.228 INFO [10237]: QUERY_STRING = /auth/newuser -- 07:04:25.228 INFO [10237]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:04:25.260 INFO [10237]: COREGRADE is stopping... -- 07:04:25.261 DEBUG [10237]: Closing database connection -- 07:04:25.261 SQL [10237]: pgsql_close() -- 07:04:43.102 INFO [10236]: COREGRADE is starting... -- 07:04:43.102 INFO [10236]: Version from config: 1.0 -- 07:04:43.102 DEBUG [10236]: Connecting to database... -- 07:04:43.102 DEBUG [10236]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:04:43.102 SQL [10236]: pgsql_db_connect() -- 07:04:43.140 INFO [10236]: COREGRADE is starting... -- 07:04:43.140 INFO [10236]: Version from config: 1.0 -- 07:04:43.140 DEBUG [10236]: Connecting to database... -- 07:04:43.140 DEBUG [10236]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:04:43.140 SQL [10236]: pgsql_db_connect() -- 07:04:43.144 DEBUG [10236]: Database connection successful -- 07:04:43.144 INFO [10236]: _SERVER found -- 07:04:43.144 INFO [10236]: REMOTE_ADDR = 192.168.1.13 -- 07:04:43.144 INFO [10236]: SERVER_NAME = oameye.works.coregrade.com -- 07:04:43.144 INFO [10236]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=17s99dloq5hcguc7sqe439gf2vek7mpl -- 07:04:43.144 INFO [10236]: QUERY_STRING = -- 07:04:43.144 INFO [10236]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:04:43.144 INFO [10236]: SystemStatus()09-09-********~************ -- 07:04:43.144 INFO [10236]: long coregrade_api_main(CVars in, CVars &out) -- 07:04:43.144 INFO [10236]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 07:04:43.144 INFO [10236]: account calls -- 07:04:43.144 INFO [10236]: account_calls() -- 07:04:43.144 FLOG_MAX [10236]: REQ_STRING(username) -- 07:04:43.144 FLOG_MAX [10236]: REQ_STRING(firstname) -- 07:04:43.144 FLOG_MAX [10236]: REQ_STRING(lastname) -- 07:04:43.145 FLOG_MAX [10236]: REQ_STRING(email) -- 07:04:43.145 SQL [10236]: pgsql_query() -- 07:04:43.145 SQL [10236]: About to run query: -- 07:04:43.145 SQL [10236]: SELECT * FROM members WHERE LOWER(username) = LOWER('ses66181+10@gmail.com') -- 07:04:43.147 SQL [10236]: Found rows: 0 -- 07:04:43.147 SQL [10236]: Found rows: 0 -- 07:04:43.147 FLOG_MAX [10236]: insert_db_record() -- 07:04:43.147 SQL [10236]: pgsql_exec() -- 07:04:43.147 SQL [10236]: About to run query: -- 07:04:43.147 SQL [10236]: INSERT INTO members_pending (email,firstname,lastname,loc,phone,username,verify_link) VALUES ('ses66181+10@gmail.com','Olu','Amey','192.168.1.13','','ses66181+10@gmail.com','RS-1207224320-82067456-2054029312') -- 07:04:43.149 SQL [10236]: PQcmdTuples: 1 -- 07:04:43.149 SQL [10236]: Affected rows: 1 -- 07:04:43.149 FLOG_MAX [10236]: SELECT currval('members_pending_id_seq') -- 07:04:43.149 SQL [10236]: pgsql_query() -- 07:04:43.149 SQL [10236]: About to run query: -- 07:04:43.149 SQL [10236]: SELECT currval('members_pending_id_seq') -- 07:04:43.149 SQL [10236]: Found rows: 1 -- 07:04:43.149 SQL [10236]: pgsql_query() -- 07:04:43.149 SQL [10236]: About to run query: -- 07:04:43.149 SQL [10236]: UPDATE members_pending SET password = md5('may12002') WHERE id = 31 -- 07:04:43.150 SQL [10236]: Found rows: 0 -- 07:04:43.150 SQL [10236]: Found rows: 0 -- 07:04:43.150 FLOG_MAX [10236]: long load_db_record( CVars &rec, const char * query, ... ) -- 07:04:43.150 SQL [10236]: pgsql_query() -- 07:04:43.150 SQL [10236]: About to run query: -- 07:04:43.150 SQL [10236]: SELECT * FROM members_pending WHERE id = 31 -- 07:04:43.151 SQL [10236]: Found rows: 1 -- 07:04:43.151 FLOG_MAX [10236]: load_db_record(SELECT * FROM members_pending WHERE id = 31 ) num_cols=13 -- 07:04:43.151 FLOG_MAX [10236]: CGI Parsing: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 07:04:43.151 FLOG_MAX [10236]: Template '/home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile' loaded: 1454 bytes -- 07:04:43.151 FLOG_MAX [10236]: Returning from FormFile() -- 07:04:43.151 FLOG_MAX [10236]: Template parsed: /home/oameye/coregrade/coregrade/email//ACCOUNT/member_pending.mailfile -- 07:04:43.151 FLOG_MAX [10236]: ESMTP( 10.0.0.23, support@coregrade.com, ses66181+10@gmail.com ) -- 07:04:43.151 FLOG_MAX [10236]: Prepare body -- 07:04:43.151 FLOG_MAX [10236]: Locate & extract subject -- 07:04:43.151 FLOG_MAX [10236]: Found subject: CoreGrade - Pending Signup - Verify ses66181+10@gmail.com -- 07:04:43.151 FLOG_MAX [10236]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t ses66181+10@gmail.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'CoreGrade - Pending Signup - Verify ses66181+10@gmail.com' -M ' - - - -
-
- - - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to verify your email. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-1207224320-82067456-2054029312 -
-CoreGrade,your personalized learning in one place with tools to make it happen. CoreGrade makes it easy to track due dates of goals set, focus plans with e-alerts in your workspace and dashboard. - -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/home/contactus?vlnk=RS-1207224320-82067456-2054029312 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-
-
- -
- - - - - -' -- 07:04:43.184 FLOG_MAX [10236]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Pending Signup - Verify ses66181+10@gmail.com -From: CoreGrade Support -Date: Sun, 08 Mar 2020 07:04:43 -0400 -To: ses66181+10@gmail.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="49Elte9QCUcqhVc/" -Mime-version: 1.0 - - ---49Elte9QCUcqhVc/ -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
- - - - - - - -
CoreGrade
-Dear Olu, -
-Welcome to CoreGrade!. In order to complete your registration , click or copy the link below into the browser to verify your email. -
-Click Link : https://oameye.works.coregrade.com/vemail?vlnk=RS-1207224320-82067456-2054029312 -
-CoreGrade,your personalized learning in one place with tools to make it happen. CoreGrade makes it easy to track due dates of goals set, focus plans with e-alerts in your workspace and dashboard. - -
- -
-Get in touch if you need further support at https://oameye.works.coregrade.com/home/contactus?vlnk=RS-1207224320-82067456-2054029312 -
-CoreGrade Team -
-oameye.works.coregrade.com -
-
-
- -
- - - - - - - - ---49Elte9QCUcqhVc/-- - -[C] . -[S] 250 2.0.0 Ok: queued as 2CB3C2113083 -[C] QUIT -[S] 221 2.0.0 Bye - -- 07:04:43.184 FLOG_MAX [10236]: - -END OF PIPE OUTPUT - - -- 07:04:43.184 FLOG_MAX [10236]: /ESMTP() -- 07:04:43.185 INFO [10236]: RET: action=11010 -- 07:04:43.185 INFO [10236]: RET: email=ses66181+10@gmail.com -- 07:04:43.185 INFO [10236]: RET: firstname=Olu -- 07:04:43.185 INFO [10236]: RET: lastname=Amey -- 07:04:43.185 INFO [10236]: RET: password=may12002 -- 07:04:43.185 INFO [10236]: RET: pending_id=31 -- 07:04:43.185 INFO [10236]: RET: pid=100 -- 07:04:43.185 INFO [10236]: RET: status_message=Pending -- 07:04:43.185 INFO [10236]: RET: username=ses66181+10@gmail.com -- 07:04:43.187 INFO [10236]: COREGRADE is stopping... -- 07:04:43.187 DEBUG [10236]: Closing database connection -- 07:04:43.187 SQL [10236]: pgsql_close() -- 07:04:43.106 DEBUG [10236]: Database connection successful -- 07:04:43.106 INFO [10236]: _SERVER found -- 07:04:43.106 INFO [10236]: REMOTE_ADDR = 192.168.1.13 -- 07:04:43.106 INFO [10236]: SERVER_NAME = oameye.works.coregrade.com -- 07:04:43.106 INFO [10236]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=17s99dloq5hcguc7sqe439gf2vek7mpl -- 07:04:43.106 INFO [10236]: QUERY_STRING = /auth/newuser -- 07:04:43.106 INFO [10236]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:04:43.188 INFO [10236]: COREGRADE is stopping... -- 07:04:43.188 DEBUG [10236]: Closing database connection -- 07:04:43.188 SQL [10236]: pgsql_close() -- 07:05:41.673 INFO [10816]: COREGRADE is starting... -- 07:05:41.674 INFO [10816]: Version from config: 1.0 -- 07:05:41.674 DEBUG [10816]: Connecting to database... -- 07:05:41.674 DEBUG [10816]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:05:41.674 SQL [10816]: pgsql_db_connect() -- 07:05:41.709 INFO [10816]: COREGRADE is starting... -- 07:05:41.709 INFO [10816]: Version from config: 1.0 -- 07:05:41.709 DEBUG [10816]: Connecting to database... -- 07:05:41.709 DEBUG [10816]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:05:41.709 SQL [10816]: pgsql_db_connect() -- 07:05:41.713 DEBUG [10816]: Database connection successful -- 07:05:41.713 INFO [10816]: _SERVER found -- 07:05:41.713 INFO [10816]: REMOTE_ADDR = 192.168.1.13 -- 07:05:41.713 INFO [10816]: SERVER_NAME = oameye.works.coregrade.com -- 07:05:41.713 INFO [10816]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=17s99dloq5hcguc7sqe439gf2vek7mpl -- 07:05:41.713 INFO [10816]: QUERY_STRING = vlnk=RS-1207224320-82067456-2054029312 -- 07:05:41.713 INFO [10816]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:05:41.713 INFO [10816]: SystemStatus()09-09-********~************ -- 07:05:41.713 INFO [10816]: long coregrade_api_main(CVars in, CVars &out) -- 07:05:41.713 INFO [10816]: long coregrade_api_main(CVars in, CVars &out) action =11020 -- 07:05:41.713 INFO [10816]: account calls -- 07:05:41.713 INFO [10816]: account_calls() -- 07:05:41.713 INFO [10816]: CreateCoreGradeAccount() -- 07:05:41.713 FLOG_MAX [10816]: REQ_STRING(verify_link) -- 07:05:41.714 FLOG_MAX [10816]: long load_db_record( CVars &rec, const char * query, ... ) -- 07:05:41.714 SQL [10816]: pgsql_query() -- 07:05:41.714 SQL [10816]: About to run query: -- 07:05:41.714 SQL [10816]: SELECT *,id AS pending_id FROM members_pending WHERE verify_link ='RS-1207224320-82067456-2054029312' AND expire > now() LIMIT 1 -- 07:05:41.717 SQL [10816]: Found rows: 1 -- 07:05:41.717 FLOG_MAX [10816]: load_db_record(SELECT *,id AS pending_id FROM members_pending WHERE verify_link ='RS-1207224320-82067456-2054029312' AND expire > now() LIMIT 1) num_cols=14 -- 07:05:41.717 FLOG_MAX [10816]: insert_db_record() -- 07:05:41.717 SQL [10816]: pgsql_exec() -- 07:05:41.717 SQL [10816]: About to run query: -- 07:05:41.717 SQL [10816]: INSERT INTO members (email,firstname,lastname,loc,password,phone,username) VALUES ('ses66181+10@gmail.com','Olu','Amey','192.168.1.13','d0fbea2563b377ea7074bced45c88dcb','','ses66181+10@gmail.com') -- 07:05:41.719 SQL [10816]: PQcmdTuples: 1 -- 07:05:41.719 SQL [10816]: Affected rows: 1 -- 07:05:41.719 FLOG_MAX [10816]: SELECT currval('members_id_seq') -- 07:05:41.719 SQL [10816]: pgsql_query() -- 07:05:41.719 SQL [10816]: About to run query: -- 07:05:41.719 SQL [10816]: SELECT currval('members_id_seq') -- 07:05:41.719 SQL [10816]: Found rows: 1 -- 07:05:41.719 SQL [10816]: pgsql_query() -- 07:05:41.719 SQL [10816]: About to run query: -- 07:05:41.719 SQL [10816]: UPDATE members_pending SET status = 5,verified=now() WHERE id = 31 -- 07:05:41.720 SQL [10816]: Found rows: 0 -- 07:05:41.720 SQL [10816]: Found rows: 0 -- 07:05:41.720 INFO [10816]: /CreateCoreGradeAccount() -- 07:05:41.720 INFO [10816]: RET: added=2020-03-08 07:04:43.147807 -- 07:05:41.720 INFO [10816]: RET: email=ses66181+10@gmail.com -- 07:05:41.720 INFO [10816]: RET: expire=2020-03-10 07:04:43.147807 -- 07:05:41.720 INFO [10816]: RET: firstname=Olu -- 07:05:41.720 INFO [10816]: RET: id=31 -- 07:05:41.720 INFO [10816]: RET: lastname=Amey -- 07:05:41.720 INFO [10816]: RET: loc=192.168.1.13 -- 07:05:41.720 INFO [10816]: RET: member_id=17 -- 07:05:41.720 INFO [10816]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 07:05:41.720 INFO [10816]: RET: pending_id=31 -- 07:05:41.720 INFO [10816]: RET: phone= -- 07:05:41.720 INFO [10816]: RET: result=YES I GET TO BACK END -- 07:05:41.720 INFO [10816]: RET: status=prepare to create account -- 07:05:41.720 INFO [10816]: RET: username=ses66181+10@gmail.com -- 07:05:41.720 INFO [10816]: RET: verified= -- 07:05:41.720 INFO [10816]: RET: verify_link=RS-1207224320-82067456-2054029312 -- 07:05:41.721 INFO [10816]: COREGRADE is stopping... -- 07:05:41.721 DEBUG [10816]: Closing database connection -- 07:05:41.721 SQL [10816]: pgsql_close() -- 07:05:41.678 DEBUG [10816]: Database connection successful -- 07:05:41.678 INFO [10816]: _SERVER found -- 07:05:41.678 INFO [10816]: REMOTE_ADDR = 192.168.1.13 -- 07:05:41.678 INFO [10816]: SERVER_NAME = oameye.works.coregrade.com -- 07:05:41.678 INFO [10816]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=17s99dloq5hcguc7sqe439gf2vek7mpl -- 07:05:41.678 INFO [10816]: QUERY_STRING = /vemail -- 07:05:41.678 INFO [10816]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:05:41.722 INFO [10816]: COREGRADE is stopping... -- 07:05:41.722 DEBUG [10816]: Closing database connection -- 07:05:41.722 SQL [10816]: pgsql_close() -- 07:05:56.977 INFO [10238]: COREGRADE is starting... -- 07:05:56.977 INFO [10238]: Version from config: 1.0 -- 07:05:56.977 DEBUG [10238]: Connecting to database... -- 07:05:56.977 DEBUG [10238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:05:56.977 SQL [10238]: pgsql_db_connect() -- 07:05:56.981 DEBUG [10238]: Database connection successful -- 07:05:56.981 INFO [10238]: _SERVER found -- 07:05:56.981 INFO [10238]: REMOTE_ADDR = 192.168.1.13 -- 07:05:56.981 INFO [10238]: SERVER_NAME = oameye.works.coregrade.com -- 07:05:56.981 INFO [10238]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=7r3k3sia4gstcm2o3u37b6udikn2d8j5 -- 07:05:56.981 INFO [10238]: QUERY_STRING = /auth/resetpass -- 07:05:56.981 INFO [10238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:05:57.012 INFO [10238]: COREGRADE is stopping... -- 07:05:57.012 DEBUG [10238]: Closing database connection -- 07:05:57.012 SQL [10238]: pgsql_close() -- 07:05:59.774 INFO [10238]: COREGRADE is starting... -- 07:05:59.774 INFO [10238]: Version from config: 1.0 -- 07:05:59.774 DEBUG [10238]: Connecting to database... -- 07:05:59.774 DEBUG [10238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:05:59.774 SQL [10238]: pgsql_db_connect() -- 07:05:59.778 DEBUG [10238]: Database connection successful -- 07:05:59.778 INFO [10238]: _SERVER found -- 07:05:59.778 INFO [10238]: REMOTE_ADDR = 192.168.1.13 -- 07:05:59.778 INFO [10238]: SERVER_NAME = oameye.works.coregrade.com -- 07:05:59.778 INFO [10238]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=7r3k3sia4gstcm2o3u37b6udikn2d8j5 -- 07:05:59.778 INFO [10238]: QUERY_STRING = /auth/resetpass -- 07:05:59.778 INFO [10238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:05:59.809 INFO [10238]: COREGRADE is stopping... -- 07:05:59.809 DEBUG [10238]: Closing database connection -- 07:05:59.809 SQL [10238]: pgsql_close() -- 07:07:34.291 INFO [10817]: COREGRADE is starting... -- 07:07:34.291 INFO [10817]: Version from config: 1.0 -- 07:07:34.291 DEBUG [10817]: Connecting to database... -- 07:07:34.291 DEBUG [10817]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:07:34.291 SQL [10817]: pgsql_db_connect() -- 07:07:34.296 DEBUG [10817]: Database connection successful -- 07:07:34.296 INFO [10817]: _SERVER found -- 07:07:34.296 INFO [10817]: REMOTE_ADDR = 192.168.1.13 -- 07:07:34.296 INFO [10817]: SERVER_NAME = oameye.works.coregrade.com -- 07:07:34.296 INFO [10817]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=7r3k3sia4gstcm2o3u37b6udikn2d8j5 -- 07:07:34.296 INFO [10817]: QUERY_STRING = /auth -- 07:07:34.296 INFO [10817]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:07:34.330 INFO [10817]: COREGRADE is stopping... -- 07:07:34.330 DEBUG [10817]: Closing database connection -- 07:07:34.330 SQL [10817]: pgsql_close() -- 07:07:34.455 INFO [10817]: COREGRADE is starting... -- 07:07:34.455 INFO [10817]: Version from config: 1.0 -- 07:07:34.455 DEBUG [10817]: Connecting to database... -- 07:07:34.455 DEBUG [10817]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:07:34.455 SQL [10817]: pgsql_db_connect() -- 07:07:34.459 DEBUG [10817]: Database connection successful -- 07:07:34.459 INFO [10817]: _SERVER found -- 07:07:34.459 INFO [10817]: REMOTE_ADDR = 192.168.1.13 -- 07:07:34.459 INFO [10817]: SERVER_NAME = oameye.works.coregrade.com -- 07:07:34.459 INFO [10817]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=7r3k3sia4gstcm2o3u37b6udikn2d8j5 -- 07:07:34.459 INFO [10817]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 07:07:34.459 INFO [10817]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:07:34.470 INFO [10817]: COREGRADE is stopping... -- 07:07:34.470 DEBUG [10817]: Closing database connection -- 07:07:34.470 SQL [10817]: pgsql_close() -- 07:07:35.917 INFO [10817]: COREGRADE is starting... -- 07:07:35.917 INFO [10817]: Version from config: 1.0 -- 07:07:35.917 DEBUG [10817]: Connecting to database... -- 07:07:35.917 DEBUG [10817]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:07:35.917 SQL [10817]: pgsql_db_connect() -- 07:07:35.955 INFO [10817]: COREGRADE is starting... -- 07:07:35.955 INFO [10817]: Version from config: 1.0 -- 07:07:35.955 DEBUG [10817]: Connecting to database... -- 07:07:35.955 DEBUG [10817]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:07:35.955 SQL [10817]: pgsql_db_connect() -- 07:07:35.959 DEBUG [10817]: Database connection successful -- 07:07:35.959 INFO [10817]: _SERVER found -- 07:07:35.959 INFO [10817]: REMOTE_ADDR = 192.168.1.13 -- 07:07:35.959 INFO [10817]: SERVER_NAME = oameye.works.coregrade.com -- 07:07:35.959 INFO [10817]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=7r3k3sia4gstcm2o3u37b6udikn2d8j5 -- 07:07:35.959 INFO [10817]: QUERY_STRING = -- 07:07:35.959 INFO [10817]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:07:35.959 INFO [10817]: SystemStatus()09-09-********~************ -- 07:07:35.959 INFO [10817]: long coregrade_api_main(CVars in, CVars &out) -- 07:07:35.959 INFO [10817]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 07:07:35.959 INFO [10817]: account calls -- 07:07:35.959 INFO [10817]: account_calls() -- 07:07:35.959 INFO [10817]: LoginCoreGradeAccount() -- 07:07:35.959 FLOG_MAX [10817]: REQ_STRING(username) -- 07:07:35.959 FLOG_MAX [10817]: REQ_STRING(password) -- 07:07:35.959 FLOG_MAX [10817]: REQ_STRING(sessionid) -- 07:07:35.959 FLOG_MAX [10817]: long load_db_record( CVars &rec, const char * query, ... ) -- 07:07:35.959 SQL [10817]: pgsql_query() -- 07:07:35.959 SQL [10817]: About to run query: -- 07:07:35.959 SQL [10817]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 07:07:35.963 SQL [10817]: Found rows: 1 -- 07:07:35.963 FLOG_MAX [10817]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 07:07:35.963 INFO [10817]: long SessionCheck(long uid, const char *sessionid, int create ) -- 07:07:35.963 SQL [10817]: pgsql_exec() -- 07:07:35.963 SQL [10817]: About to run query: -- 07:07:35.963 SQL [10817]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 07:07:35.964 SQL [10817]: PQcmdTuples: 1 -- 07:07:35.964 SQL [10817]: Affected rows: 1 -- 07:07:35.964 SQL [10817]: pgsql_exec() -- 07:07:35.964 SQL [10817]: About to run query: -- 07:07:35.964 SQL [10817]: DELETE FROM members_session WHERE member_id=5 -- 07:07:35.964 SQL [10817]: PQcmdTuples: 0 -- 07:07:35.964 SQL [10817]: Affected rows: 0 -- 07:07:35.964 SQL [10817]: pgsql_query() -- 07:07:35.964 SQL [10817]: About to run query: -- 07:07:35.964 SQL [10817]: SELECT * FROM members_session WHERE member_id=5 AND session<>'B3D3F672F79CC983F87AF8339C109690' -- 07:07:35.965 SQL [10817]: Found rows: 0 -- 07:07:35.965 SQL [10817]: Found rows: 0 -- 07:07:35.965 FLOG_MAX [10817]: long load_db_record( CVars &rec, const char * query, ... ) -- 07:07:35.965 SQL [10817]: pgsql_query() -- 07:07:35.965 SQL [10817]: About to run query: -- 07:07:35.965 SQL [10817]: SELECT * FROM members_session WHERE member_id=5 AND session='B3D3F672F79CC983F87AF8339C109690' -- 07:07:35.966 SQL [10817]: Found rows: 0 -- 07:07:35.966 SQL [10817]: Found rows: 0 -- 07:07:35.966 FLOG_MAX [10817]: insert_db_record() -- 07:07:35.966 SQL [10817]: pgsql_exec() -- 07:07:35.966 SQL [10817]: About to run query: -- 07:07:35.966 SQL [10817]: INSERT INTO members_session (member_id,session) VALUES ('5','B3D3F672F79CC983F87AF8339C109690') -- 07:07:35.967 SQL [10817]: PQcmdTuples: 1 -- 07:07:35.967 SQL [10817]: Affected rows: 1 -- 07:07:35.967 FLOG_MAX [10817]: SELECT currval('members_session_id_seq') -- 07:07:35.967 SQL [10817]: pgsql_query() -- 07:07:35.967 SQL [10817]: About to run query: -- 07:07:35.967 SQL [10817]: SELECT currval('members_session_id_seq') -- 07:07:35.968 SQL [10817]: Found rows: 1 -- 07:07:35.968 INFO [10817]: CreateDefaultPage() -- 07:07:35.968 FLOG_MAX [10817]: long load_db_record( CVars &rec, const char * query, ... ) -- 07:07:35.968 SQL [10817]: pgsql_query() -- 07:07:35.968 SQL [10817]: About to run query: -- 07:07:35.968 SQL [10817]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 07:07:35.968 SQL [10817]: Found rows: 1 -- 07:07:35.968 FLOG_MAX [10817]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 07:07:35.968 SQL [10817]: pgsql_query() -- 07:07:35.968 SQL [10817]: About to run query: -- 07:07:35.968 SQL [10817]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 07:07:35.969 SQL [10817]: Found rows: 1 -- 07:07:35.969 INFO [10817]: /CreateDefaultPage() -- 07:07:35.969 INFO [10817]: /LoginCoreGradeAccount() -- 07:07:35.969 INFO [10817]: RET: added=2020-02-05 06:47:23.982154 -- 07:07:35.969 INFO [10817]: RET: email=ameye+11@chiefsoft.com -- 07:07:35.969 INFO [10817]: RET: firstname=Olu -- 07:07:35.969 INFO [10817]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 07:07:35.969 INFO [10817]: RET: id=5 -- 07:07:35.969 INFO [10817]: RET: last_login= -- 07:07:35.969 INFO [10817]: RET: lastname=Amey -- 07:07:35.969 INFO [10817]: RET: loc=192.168.1.13 -- 07:07:35.969 INFO [10817]: RET: member_id=5 -- 07:07:35.969 INFO [10817]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 07:07:35.969 INFO [10817]: RET: phone= -- 07:07:35.969 INFO [10817]: RET: pid= -- 07:07:35.969 INFO [10817]: RET: result=YES I GET TO BACK END -- 07:07:35.969 INFO [10817]: RET: sessionid=B3D3F672F79CC983F87AF8339C109690 -- 07:07:35.969 INFO [10817]: RET: status=1 -- 07:07:35.969 INFO [10817]: RET: stauts=OK -- 07:07:35.969 INFO [10817]: RET: username=ameye+11@chiefsoft.com -- 07:07:35.969 INFO [10817]: RET: verified= -- 07:07:35.970 INFO [10817]: COREGRADE is stopping... -- 07:07:35.970 DEBUG [10817]: Closing database connection -- 07:07:35.970 SQL [10817]: pgsql_close() -- 07:07:35.921 DEBUG [10817]: Database connection successful -- 07:07:35.921 INFO [10817]: _SERVER found -- 07:07:35.921 INFO [10817]: REMOTE_ADDR = 192.168.1.13 -- 07:07:35.921 INFO [10817]: SERVER_NAME = oameye.works.coregrade.com -- 07:07:35.921 INFO [10817]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=7r3k3sia4gstcm2o3u37b6udikn2d8j5 -- 07:07:35.921 INFO [10817]: QUERY_STRING = /auth -- 07:07:35.921 INFO [10817]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:07:35.971 INFO [10817]: COREGRADE is stopping... -- 07:07:35.971 DEBUG [10817]: Closing database connection -- 07:07:35.971 SQL [10817]: pgsql_close() -- 07:07:35.987 INFO [10817]: COREGRADE is starting... -- 07:07:35.987 INFO [10817]: Version from config: 1.0 -- 07:07:35.987 DEBUG [10817]: Connecting to database... -- 07:07:35.987 DEBUG [10817]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:07:35.987 SQL [10817]: pgsql_db_connect() -- 07:07:35.991 DEBUG [10817]: Database connection successful -- 07:07:35.991 INFO [10817]: _SERVER found -- 07:07:35.991 INFO [10817]: REMOTE_ADDR = 192.168.1.13 -- 07:07:35.991 INFO [10817]: SERVER_NAME = oameye.works.coregrade.com -- 07:07:35.991 INFO [10817]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=7r3k3sia4gstcm2o3u37b6udikn2d8j5 -- 07:07:35.991 INFO [10817]: QUERY_STRING = /member/index -- 07:07:35.991 INFO [10817]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:07:36.032 INFO [10817]: COREGRADE is stopping... -- 07:07:36.032 DEBUG [10817]: Closing database connection -- 07:07:36.032 SQL [10817]: pgsql_close() -- 07:07:36.434 INFO [10235]: COREGRADE is starting... -- 07:07:36.434 INFO [10235]: Version from config: 1.0 -- 07:07:36.434 DEBUG [10235]: Connecting to database... -- 07:07:36.434 DEBUG [10235]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:07:36.435 SQL [10235]: pgsql_db_connect() -- 07:07:36.438 DEBUG [10235]: Database connection successful -- 07:07:36.438 INFO [10235]: _SERVER found -- 07:07:36.438 INFO [10235]: REMOTE_ADDR = 192.168.1.13 -- 07:07:36.438 INFO [10235]: SERVER_NAME = oameye.works.coregrade.com -- 07:07:36.438 INFO [10235]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=7r3k3sia4gstcm2o3u37b6udikn2d8j5 -- 07:07:36.438 INFO [10235]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 07:07:36.438 INFO [10235]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:07:36.451 INFO [10235]: COREGRADE is stopping... -- 07:07:36.451 DEBUG [10235]: Closing database connection -- 07:07:36.451 SQL [10235]: pgsql_close() -- 07:07:38.370 INFO [10817]: COREGRADE is starting... -- 07:07:38.370 INFO [10817]: Version from config: 1.0 -- 07:07:38.370 DEBUG [10817]: Connecting to database... -- 07:07:38.370 DEBUG [10817]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:07:38.370 SQL [10817]: pgsql_db_connect() -- 07:07:38.374 DEBUG [10817]: Database connection successful -- 07:07:38.374 INFO [10817]: _SERVER found -- 07:07:38.374 INFO [10817]: REMOTE_ADDR = 192.168.1.13 -- 07:07:38.374 INFO [10817]: SERVER_NAME = oameye.works.coregrade.com -- 07:07:38.374 INFO [10817]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=7r3k3sia4gstcm2o3u37b6udikn2d8j5 -- 07:07:38.374 INFO [10817]: QUERY_STRING = /member/page -- 07:07:38.374 INFO [10817]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:07:38.416 INFO [10817]: COREGRADE is stopping... -- 07:07:38.416 DEBUG [10817]: Closing database connection -- 07:07:38.416 SQL [10817]: pgsql_close() -- 07:07:38.607 INFO [10817]: COREGRADE is starting... -- 07:07:38.607 INFO [10817]: Version from config: 1.0 -- 07:07:38.607 DEBUG [10817]: Connecting to database... -- 07:07:38.607 DEBUG [10817]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:07:38.607 SQL [10817]: pgsql_db_connect() -- 07:07:38.611 DEBUG [10817]: Database connection successful -- 07:07:38.611 INFO [10817]: _SERVER found -- 07:07:38.611 INFO [10817]: REMOTE_ADDR = 192.168.1.13 -- 07:07:38.611 INFO [10817]: SERVER_NAME = oameye.works.coregrade.com -- 07:07:38.611 INFO [10817]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=7r3k3sia4gstcm2o3u37b6udikn2d8j5 -- 07:07:38.611 INFO [10817]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 07:07:38.611 INFO [10817]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:07:38.622 INFO [10817]: COREGRADE is stopping... -- 07:07:38.622 DEBUG [10817]: Closing database connection -- 07:07:38.623 SQL [10817]: pgsql_close() -- 07:38:09.465 INFO [10887]: COREGRADE is starting... -- 07:38:09.465 INFO [10887]: Version from config: 1.0 -- 07:38:09.465 DEBUG [10887]: Connecting to database... -- 07:38:09.465 DEBUG [10887]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:38:09.465 SQL [10887]: pgsql_db_connect() -- 07:38:09.469 DEBUG [10887]: Database connection successful -- 07:38:09.469 INFO [10887]: _SERVER found -- 07:38:09.469 INFO [10887]: REMOTE_ADDR = 192.168.1.13 -- 07:38:09.469 INFO [10887]: SERVER_NAME = oameye.works.coregrade.com -- 07:38:09.469 INFO [10887]: QUERY_STRING = /.env -- 07:38:09.469 INFO [10887]: HTTP_X_FORWARDED_FOR = 51.159.0.151 -- 07:38:09.482 INFO [10887]: COREGRADE is stopping... -- 07:38:09.482 DEBUG [10887]: Closing database connection -- 07:38:09.482 SQL [10887]: pgsql_close() -- 09:47:38.912 INFO [10237]: COREGRADE is starting... -- 09:47:38.912 INFO [10237]: Version from config: 1.0 -- 09:47:38.912 DEBUG [10237]: Connecting to database... -- 09:47:38.912 DEBUG [10237]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:47:38.912 SQL [10237]: pgsql_db_connect() -- 09:47:38.917 DEBUG [10237]: Database connection successful -- 09:47:38.917 INFO [10237]: _SERVER found -- 09:47:38.917 INFO [10237]: REMOTE_ADDR = 192.168.1.13 -- 09:47:38.917 INFO [10237]: SERVER_NAME = oameye.works.coregrade.com -- 09:47:38.917 INFO [10237]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667 -- 09:47:38.917 INFO [10237]: QUERY_STRING = /auth -- 09:47:38.917 INFO [10237]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:47:38.954 INFO [10237]: COREGRADE is stopping... -- 09:47:38.954 DEBUG [10237]: Closing database connection -- 09:47:38.954 SQL [10237]: pgsql_close() -- 09:47:39.055 INFO [10237]: COREGRADE is starting... -- 09:47:39.055 INFO [10237]: Version from config: 1.0 -- 09:47:39.055 DEBUG [10237]: Connecting to database... -- 09:47:39.055 DEBUG [10237]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:47:39.056 SQL [10237]: pgsql_db_connect() -- 09:47:39.060 DEBUG [10237]: Database connection successful -- 09:47:39.060 INFO [10237]: _SERVER found -- 09:47:39.060 INFO [10237]: REMOTE_ADDR = 192.168.1.13 -- 09:47:39.060 INFO [10237]: SERVER_NAME = oameye.works.coregrade.com -- 09:47:39.060 INFO [10237]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1498242409.1583544667; ci_session=rip5kms78gac5p0ds1ql68n1d0d87pnc -- 09:47:39.060 INFO [10237]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 09:47:39.060 INFO [10237]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:47:39.071 INFO [10237]: COREGRADE is stopping... -- 09:47:39.071 DEBUG [10237]: Closing database connection -- 09:47:39.071 SQL [10237]: pgsql_close() -- 13:27:47.863 INFO [10236]: COREGRADE is starting... -- 13:27:47.863 INFO [10236]: Version from config: 1.0 -- 13:27:47.863 DEBUG [10236]: Connecting to database... -- 13:27:47.863 DEBUG [10236]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:27:47.863 SQL [10236]: pgsql_db_connect() -- 13:27:47.868 DEBUG [10236]: Database connection successful -- 13:27:47.868 INFO [10236]: _SERVER found -- 13:27:47.868 INFO [10236]: REMOTE_ADDR = 192.168.1.13 -- 13:27:47.868 INFO [10236]: SERVER_NAME = oameye.works.coregrade.com -- 13:27:47.868 INFO [10236]: QUERY_STRING = /img/logo-email.png -- 13:27:47.868 INFO [10236]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:27:47.886 INFO [10236]: COREGRADE is stopping... -- 13:27:47.886 DEBUG [10236]: Closing database connection -- 13:27:47.886 SQL [10236]: pgsql_close() -- 00:16:45.944 INFO [10816]: COREGRADE is starting... -- 00:16:45.945 INFO [10816]: Version from config: 1.0 -- 00:16:45.945 DEBUG [10816]: Connecting to database... -- 00:16:45.945 DEBUG [10816]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:16:45.945 SQL [10816]: pgsql_db_connect() -- 00:16:45.964 INFO [10238]: COREGRADE is starting... -- 00:16:45.965 INFO [10238]: Version from config: 1.0 -- 00:16:45.965 DEBUG [10238]: Connecting to database... -- 00:16:45.965 DEBUG [10238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:16:45.965 SQL [10238]: pgsql_db_connect() -- 00:16:45.950 DEBUG [10816]: Database connection successful -- 00:16:45.950 INFO [10816]: _SERVER found -- 00:16:45.950 INFO [10816]: REMOTE_ADDR = 192.168.1.13 -- 00:16:45.950 INFO [10816]: SERVER_NAME = oameye.works.coregrade.com -- 00:16:45.950 INFO [10816]: QUERY_STRING = /.well-known/acme-challenge/fKp-teWy1c9V4AVE7FFwnMTQY3Jmg99TmiL2qXNcdPU -- 00:16:45.950 INFO [10816]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 00:16:45.966 INFO [10816]: COREGRADE is stopping... -- 00:16:45.966 DEBUG [10816]: Closing database connection -- 00:16:45.966 SQL [10816]: pgsql_close() -- 00:16:45.971 DEBUG [10238]: Database connection successful -- 00:16:45.971 INFO [10238]: _SERVER found -- 00:16:45.971 INFO [10238]: REMOTE_ADDR = 192.168.1.13 -- 00:16:45.971 INFO [10238]: SERVER_NAME = oameye.works.coregrade.com -- 00:16:45.971 INFO [10238]: QUERY_STRING = /.well-known/acme-challenge/fKp-teWy1c9V4AVE7FFwnMTQY3Jmg99TmiL2qXNcdPU -- 00:16:45.971 INFO [10238]: HTTP_X_FORWARDED_FOR = 34.209.232.166 -- 00:16:45.984 INFO [10238]: COREGRADE is stopping... -- 00:16:45.984 DEBUG [10238]: Closing database connection -- 00:16:45.984 SQL [10238]: pgsql_close() -- 03:10:53.846 INFO [10817]: COREGRADE is starting... -- 03:10:53.846 INFO [10817]: Version from config: 1.0 -- 03:10:53.846 DEBUG [10817]: Connecting to database... -- 03:10:53.846 DEBUG [10817]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:10:53.846 SQL [10817]: pgsql_db_connect() -- 03:10:53.852 DEBUG [10817]: Database connection successful -- 03:10:53.852 INFO [10817]: _SERVER found -- 03:10:53.852 INFO [10817]: REMOTE_ADDR = 192.168.1.13 -- 03:10:53.852 INFO [10817]: SERVER_NAME = oameye.works.coregrade.com -- 03:10:53.852 INFO [10817]: QUERY_STRING = -- 03:10:53.852 INFO [10817]: HTTP_X_FORWARDED_FOR = 223.71.167.163 -- 03:10:53.888 INFO [10817]: COREGRADE is stopping... -- 03:10:53.888 DEBUG [10817]: Closing database connection -- 03:10:53.888 SQL [10817]: pgsql_close() -- 06:13:49.850 INFO [10887]: COREGRADE is starting... -- 06:13:49.850 INFO [10887]: Version from config: 1.0 -- 06:13:49.850 DEBUG [10887]: Connecting to database... -- 06:13:49.850 DEBUG [10887]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:13:49.850 SQL [10887]: pgsql_db_connect() -- 06:13:49.856 DEBUG [10887]: Database connection successful -- 06:13:49.856 INFO [10887]: _SERVER found -- 06:13:49.856 INFO [10887]: REMOTE_ADDR = 192.168.1.13 -- 06:13:49.856 INFO [10887]: SERVER_NAME = oameye.works.coregrade.com -- 06:13:49.856 INFO [10887]: QUERY_STRING = -- 06:13:49.856 INFO [10887]: HTTP_X_FORWARDED_FOR = 169.197.108.42 -- 06:13:49.899 INFO [10887]: COREGRADE is stopping... -- 06:13:49.899 DEBUG [10887]: Closing database connection -- 06:13:49.899 SQL [10887]: pgsql_close() -- 06:39:43.292 INFO [10237]: COREGRADE is starting... -- 06:39:43.293 INFO [10237]: Version from config: 1.0 -- 06:39:43.293 DEBUG [10237]: Connecting to database... -- 06:39:43.293 DEBUG [10237]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:39:43.293 SQL [10237]: pgsql_db_connect() -- 06:39:43.297 DEBUG [10237]: Database connection successful -- 06:39:43.297 INFO [10237]: _SERVER found -- 06:39:43.297 INFO [10237]: REMOTE_ADDR = 192.168.1.13 -- 06:39:43.297 INFO [10237]: SERVER_NAME = tokslaw.works.coregrade.com -- 06:39:43.297 INFO [10237]: QUERY_STRING = -- 06:39:43.297 INFO [10237]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:39:43.332 INFO [10237]: COREGRADE is stopping... -- 06:39:43.332 DEBUG [10237]: Closing database connection -- 06:39:43.332 SQL [10237]: pgsql_close() -- 07:35:07.271 INFO [10238]: COREGRADE is starting... -- 07:35:07.271 INFO [10238]: Version from config: 1.0 -- 07:35:07.271 DEBUG [10238]: Connecting to database... -- 07:35:07.271 DEBUG [10238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:35:07.271 SQL [10238]: pgsql_db_connect() -- 07:35:07.275 DEBUG [10238]: Database connection successful -- 07:35:07.276 INFO [10238]: _SERVER found -- 07:35:07.276 INFO [10238]: REMOTE_ADDR = 192.168.1.13 -- 07:35:07.276 INFO [10238]: SERVER_NAME = oameye.works.coregrade.com -- 07:35:07.276 INFO [10238]: QUERY_STRING = /solr/admin/info/system -- 07:35:07.276 INFO [10238]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 07:35:07.289 INFO [10238]: COREGRADE is stopping... -- 07:35:07.289 DEBUG [10238]: Closing database connection -- 07:35:07.289 SQL [10238]: pgsql_close() -- 08:44:58.759 INFO [10235]: COREGRADE is starting... -- 08:44:58.760 INFO [10235]: Version from config: 1.0 -- 08:44:58.760 DEBUG [10235]: Connecting to database... -- 08:44:58.760 DEBUG [10235]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:44:58.760 SQL [10235]: pgsql_db_connect() -- 08:44:58.764 DEBUG [10235]: Database connection successful -- 08:44:58.764 INFO [10235]: _SERVER found -- 08:44:58.764 INFO [10235]: REMOTE_ADDR = 192.168.1.13 -- 08:44:58.764 INFO [10235]: SERVER_NAME = oameye.works.coregrade.com -- 08:44:58.764 INFO [10235]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 08:44:58.764 INFO [10235]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 08:44:58.802 INFO [10235]: COREGRADE is stopping... -- 08:44:58.802 DEBUG [10235]: Closing database connection -- 08:44:58.802 SQL [10235]: pgsql_close() -- 09:41:42.202 INFO [10234]: COREGRADE is starting... -- 09:41:42.203 INFO [10234]: Version from config: 1.0 -- 09:41:42.203 DEBUG [10234]: Connecting to database... -- 09:41:42.203 DEBUG [10234]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:41:42.203 SQL [10234]: pgsql_db_connect() -- 09:41:42.207 DEBUG [10234]: Database connection successful -- 09:41:42.207 INFO [10234]: _SERVER found -- 09:41:42.207 INFO [10234]: REMOTE_ADDR = 192.168.1.13 -- 09:41:42.207 INFO [10234]: SERVER_NAME = oameye.works.coregrade.com -- 09:41:42.207 INFO [10234]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 09:41:42.207 INFO [10234]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 09:41:42.221 INFO [10234]: COREGRADE is stopping... -- 09:41:42.221 DEBUG [10234]: Closing database connection -- 09:41:42.221 SQL [10234]: pgsql_close() -- 10:12:35.879 INFO [10817]: COREGRADE is starting... -- 10:12:35.879 INFO [10817]: Version from config: 1.0 -- 10:12:35.879 DEBUG [10817]: Connecting to database... -- 10:12:35.879 DEBUG [10817]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:12:35.879 SQL [10817]: pgsql_db_connect() -- 10:12:35.884 DEBUG [10817]: Database connection successful -- 10:12:35.884 INFO [10817]: _SERVER found -- 10:12:35.884 INFO [10817]: REMOTE_ADDR = 192.168.1.13 -- 10:12:35.884 INFO [10817]: SERVER_NAME = oameye.works.coregrade.com -- 10:12:35.884 INFO [10817]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 10:12:35.884 INFO [10817]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 10:12:35.920 INFO [10817]: COREGRADE is stopping... -- 10:12:35.920 DEBUG [10817]: Closing database connection -- 10:12:35.920 SQL [10817]: pgsql_close() -- 14:02:16.832 INFO [10887]: COREGRADE is starting... -- 14:02:16.833 INFO [10887]: Version from config: 1.0 -- 14:02:16.833 DEBUG [10887]: Connecting to database... -- 14:02:16.833 DEBUG [10887]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:02:16.833 SQL [10887]: pgsql_db_connect() -- 14:02:16.838 DEBUG [10887]: Database connection successful -- 14:02:16.838 INFO [10887]: _SERVER found -- 14:02:16.838 INFO [10887]: REMOTE_ADDR = 192.168.1.13 -- 14:02:16.838 INFO [10887]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:02:16.838 INFO [10887]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; _gat_gtag_UA_54829827_2=1 -- 14:02:16.838 INFO [10887]: QUERY_STRING = -- 14:02:16.838 INFO [10887]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:02:16.875 INFO [10887]: COREGRADE is stopping... -- 14:02:16.875 DEBUG [10887]: Closing database connection -- 14:02:16.875 SQL [10887]: pgsql_close() -- 14:02:17.206 INFO [10887]: COREGRADE is starting... -- 14:02:17.206 INFO [10887]: Version from config: 1.0 -- 14:02:17.206 DEBUG [10887]: Connecting to database... -- 14:02:17.206 DEBUG [10887]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:02:17.206 SQL [10887]: pgsql_db_connect() -- 14:02:17.221 INFO [15409]: COREGRADE is starting... -- 14:02:17.221 INFO [15409]: Version from config: 1.0 -- 14:02:17.221 DEBUG [15409]: Connecting to database... -- 14:02:17.221 DEBUG [15409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:02:17.221 SQL [15409]: pgsql_db_connect() -- 14:02:17.211 DEBUG [10887]: Database connection successful -- 14:02:17.211 INFO [10887]: _SERVER found -- 14:02:17.211 INFO [10887]: REMOTE_ADDR = 192.168.1.13 -- 14:02:17.211 INFO [10887]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:02:17.211 INFO [10887]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; _gat_gtag_UA_54829827_2=1; ci_session=oonp3doce1agrpck9rtqcso3svcjqsep -- 14:02:17.211 INFO [10887]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 14:02:17.211 INFO [10887]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:02:17.222 INFO [10887]: COREGRADE is stopping... -- 14:02:17.222 DEBUG [10887]: Closing database connection -- 14:02:17.222 SQL [10887]: pgsql_close() -- 14:02:17.226 DEBUG [15409]: Database connection successful -- 14:02:17.226 INFO [15409]: _SERVER found -- 14:02:17.226 INFO [15409]: REMOTE_ADDR = 192.168.1.13 -- 14:02:17.226 INFO [15409]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:02:17.226 INFO [15409]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; _gat_gtag_UA_54829827_2=1; ci_session=oonp3doce1agrpck9rtqcso3svcjqsep -- 14:02:17.226 INFO [15409]: QUERY_STRING = /assets/img/footer_1.jpg -- 14:02:17.226 INFO [15409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:02:17.241 INFO [15409]: COREGRADE is stopping... -- 14:02:17.241 DEBUG [15409]: Closing database connection -- 14:02:17.241 SQL [15409]: pgsql_close() -- 14:02:22.038 INFO [15409]: COREGRADE is starting... -- 14:02:22.039 INFO [15409]: Version from config: 1.0 -- 14:02:22.039 DEBUG [15409]: Connecting to database... -- 14:02:22.039 DEBUG [15409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:02:22.039 SQL [15409]: pgsql_db_connect() -- 14:02:22.045 INFO [10887]: COREGRADE is starting... -- 14:02:22.045 INFO [10887]: Version from config: 1.0 -- 14:02:22.045 DEBUG [10887]: Connecting to database... -- 14:02:22.045 DEBUG [10887]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:02:22.045 SQL [10887]: pgsql_db_connect() -- 14:02:22.043 DEBUG [15409]: Database connection successful -- 14:02:22.043 INFO [15409]: _SERVER found -- 14:02:22.043 INFO [15409]: REMOTE_ADDR = 192.168.1.13 -- 14:02:22.043 INFO [15409]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:02:22.043 INFO [15409]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=oonp3doce1agrpck9rtqcso3svcjqsep -- 14:02:22.043 INFO [15409]: QUERY_STRING = /welcome/viewLogin -- 14:02:22.043 INFO [15409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:02:22.076 INFO [15409]: COREGRADE is stopping... -- 14:02:22.076 DEBUG [15409]: Closing database connection -- 14:02:22.076 SQL [15409]: pgsql_close() -- 14:02:22.049 DEBUG [10887]: Database connection successful -- 14:02:22.049 INFO [10887]: _SERVER found -- 14:02:22.049 INFO [10887]: REMOTE_ADDR = 192.168.1.13 -- 14:02:22.049 INFO [10887]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:02:22.049 INFO [10887]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=oonp3doce1agrpck9rtqcso3svcjqsep -- 14:02:22.049 INFO [10887]: QUERY_STRING = /auth -- 14:02:22.049 INFO [10887]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:02:22.079 INFO [10887]: COREGRADE is stopping... -- 14:02:22.079 DEBUG [10887]: Closing database connection -- 14:02:22.079 SQL [10887]: pgsql_close() -- 14:02:22.094 INFO [10887]: COREGRADE is starting... -- 14:02:22.094 INFO [10887]: Version from config: 1.0 -- 14:02:22.094 DEBUG [10887]: Connecting to database... -- 14:02:22.094 DEBUG [10887]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:02:22.094 SQL [10887]: pgsql_db_connect() -- 14:02:22.098 DEBUG [10887]: Database connection successful -- 14:02:22.098 INFO [10887]: _SERVER found -- 14:02:22.098 INFO [10887]: REMOTE_ADDR = 192.168.1.13 -- 14:02:22.098 INFO [10887]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:02:22.098 INFO [10887]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=oonp3doce1agrpck9rtqcso3svcjqsep -- 14:02:22.098 INFO [10887]: QUERY_STRING = /auth/index -- 14:02:22.098 INFO [10887]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:02:22.129 INFO [10887]: COREGRADE is stopping... -- 14:02:22.129 DEBUG [10887]: Closing database connection -- 14:02:22.129 SQL [10887]: pgsql_close() -- 14:02:22.563 INFO [10887]: COREGRADE is starting... -- 14:02:22.563 INFO [10887]: Version from config: 1.0 -- 14:02:22.563 DEBUG [10887]: Connecting to database... -- 14:02:22.563 DEBUG [10887]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:02:22.563 SQL [10887]: pgsql_db_connect() -- 14:02:22.567 DEBUG [10887]: Database connection successful -- 14:02:22.567 INFO [10887]: _SERVER found -- 14:02:22.567 INFO [10887]: REMOTE_ADDR = 192.168.1.13 -- 14:02:22.567 INFO [10887]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:02:22.567 INFO [10887]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=oonp3doce1agrpck9rtqcso3svcjqsep -- 14:02:22.567 INFO [10887]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:02:22.567 INFO [10887]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:02:22.578 INFO [10887]: COREGRADE is stopping... -- 14:02:22.578 DEBUG [10887]: Closing database connection -- 14:02:22.578 SQL [10887]: pgsql_close() -- 14:02:22.601 INFO [10887]: COREGRADE is starting... -- 14:02:22.601 INFO [10887]: Version from config: 1.0 -- 14:02:22.601 DEBUG [10887]: Connecting to database... -- 14:02:22.601 DEBUG [10887]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:02:22.601 SQL [10887]: pgsql_db_connect() -- 14:02:22.605 DEBUG [10887]: Database connection successful -- 14:02:22.605 INFO [10887]: _SERVER found -- 14:02:22.605 INFO [10887]: REMOTE_ADDR = 192.168.1.13 -- 14:02:22.605 INFO [10887]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:02:22.605 INFO [10887]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=oonp3doce1agrpck9rtqcso3svcjqsep -- 14:02:22.605 INFO [10887]: QUERY_STRING = /assets2/data/locales/en.json -- 14:02:22.605 INFO [10887]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:02:22.616 INFO [10887]: COREGRADE is stopping... -- 14:02:22.616 DEBUG [10887]: Closing database connection -- 14:02:22.616 SQL [10887]: pgsql_close() -- 14:02:26.984 INFO [10887]: COREGRADE is starting... -- 14:02:26.984 INFO [10887]: Version from config: 1.0 -- 14:02:26.984 DEBUG [10887]: Connecting to database... -- 14:02:26.984 DEBUG [10887]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:02:26.984 SQL [10887]: pgsql_db_connect() -- 14:02:26.988 DEBUG [10887]: Database connection successful -- 14:02:26.988 INFO [10887]: _SERVER found -- 14:02:26.988 INFO [10887]: REMOTE_ADDR = 192.168.1.13 -- 14:02:26.988 INFO [10887]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:02:26.988 INFO [10887]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=oonp3doce1agrpck9rtqcso3svcjqsep -- 14:02:26.988 INFO [10887]: QUERY_STRING = /auth -- 14:02:26.988 INFO [10887]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:02:27.052 INFO [10887]: COREGRADE is starting... -- 14:02:27.052 INFO [10887]: Version from config: 1.0 -- 14:02:27.052 DEBUG [10887]: Connecting to database... -- 14:02:27.052 DEBUG [10887]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:02:27.052 SQL [10887]: pgsql_db_connect() -- 14:02:27.056 DEBUG [10887]: Database connection successful -- 14:02:27.056 INFO [10887]: _SERVER found -- 14:02:27.056 INFO [10887]: REMOTE_ADDR = 192.168.1.13 -- 14:02:27.056 INFO [10887]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:02:27.056 INFO [10887]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=oonp3doce1agrpck9rtqcso3svcjqsep -- 14:02:27.056 INFO [10887]: QUERY_STRING = /member/index -- 14:02:27.056 INFO [10887]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:02:27.097 INFO [10887]: COREGRADE is stopping... -- 14:02:27.097 DEBUG [10887]: Closing database connection -- 14:02:27.097 SQL [10887]: pgsql_close() -- 14:02:27.479 INFO [10235]: COREGRADE is starting... -- 14:02:27.479 INFO [10235]: Version from config: 1.0 -- 14:02:27.479 DEBUG [10235]: Connecting to database... -- 14:02:27.479 DEBUG [10235]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:02:27.479 SQL [10235]: pgsql_db_connect() -- 14:02:27.483 DEBUG [10235]: Database connection successful -- 14:02:27.483 INFO [10235]: _SERVER found -- 14:02:27.483 INFO [10235]: REMOTE_ADDR = 192.168.1.13 -- 14:02:27.483 INFO [10235]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:02:27.483 INFO [10235]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=oonp3doce1agrpck9rtqcso3svcjqsep -- 14:02:27.483 INFO [10235]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:02:27.483 INFO [10235]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:02:27.496 INFO [10235]: COREGRADE is stopping... -- 14:02:27.496 DEBUG [10235]: Closing database connection -- 14:02:27.496 SQL [10235]: pgsql_close() -- 14:02:27.942 INFO [10238]: COREGRADE is starting... -- 14:02:27.942 INFO [10238]: Version from config: 1.0 -- 14:02:27.942 DEBUG [10238]: Connecting to database... -- 14:02:27.942 DEBUG [10238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:02:27.942 SQL [10238]: pgsql_db_connect() -- 14:02:27.946 DEBUG [10238]: Database connection successful -- 14:02:27.946 INFO [10238]: _SERVER found -- 14:02:27.946 INFO [10238]: REMOTE_ADDR = 192.168.1.13 -- 14:02:27.946 INFO [10238]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:02:27.946 INFO [10238]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=oonp3doce1agrpck9rtqcso3svcjqsep -- 14:02:27.946 INFO [10238]: QUERY_STRING = /assets2/data/locales/en.json -- 14:02:27.946 INFO [10238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:02:27.959 INFO [10238]: COREGRADE is stopping... -- 14:02:27.959 DEBUG [10238]: Closing database connection -- 14:02:27.959 SQL [10238]: pgsql_close() -- 14:02:28.975 INFO [10238]: COREGRADE is starting... -- 14:02:28.976 INFO [10238]: Version from config: 1.0 -- 14:02:28.976 DEBUG [10238]: Connecting to database... -- 14:02:28.976 DEBUG [10238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:02:28.976 SQL [10238]: pgsql_db_connect() -- 14:02:28.980 DEBUG [10238]: Database connection successful -- 14:02:28.980 INFO [10238]: _SERVER found -- 14:02:28.980 INFO [10238]: REMOTE_ADDR = 192.168.1.13 -- 14:02:28.980 INFO [10238]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:02:28.980 INFO [10238]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=oonp3doce1agrpck9rtqcso3svcjqsep -- 14:02:28.980 INFO [10238]: QUERY_STRING = /member/page -- 14:02:28.980 INFO [10238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:02:29.022 INFO [10238]: COREGRADE is stopping... -- 14:02:29.022 DEBUG [10238]: Closing database connection -- 14:02:29.022 SQL [10238]: pgsql_close() -- 14:02:29.373 INFO [10238]: COREGRADE is starting... -- 14:02:29.373 INFO [10238]: Version from config: 1.0 -- 14:02:29.373 DEBUG [10238]: Connecting to database... -- 14:02:29.374 DEBUG [10238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:02:29.374 SQL [10238]: pgsql_db_connect() -- 14:02:29.377 DEBUG [10238]: Database connection successful -- 14:02:29.377 INFO [10238]: _SERVER found -- 14:02:29.377 INFO [10238]: REMOTE_ADDR = 192.168.1.13 -- 14:02:29.377 INFO [10238]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:02:29.377 INFO [10238]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=oonp3doce1agrpck9rtqcso3svcjqsep -- 14:02:29.377 INFO [10238]: QUERY_STRING = /assets2/data/locales/en.json -- 14:02:29.377 INFO [10238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:02:29.389 INFO [10238]: COREGRADE is stopping... -- 14:02:29.389 DEBUG [10238]: Closing database connection -- 14:02:29.389 SQL [10238]: pgsql_close() -- 16:43:35.866 INFO [10816]: COREGRADE is starting... -- 16:43:35.867 INFO [10816]: Version from config: 1.0 -- 16:43:35.867 DEBUG [10816]: Connecting to database... -- 16:43:35.867 DEBUG [10816]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:43:35.867 SQL [10816]: pgsql_db_connect() -- 16:43:35.872 DEBUG [10816]: Database connection successful -- 16:43:35.872 INFO [10816]: _SERVER found -- 16:43:35.872 INFO [10816]: REMOTE_ADDR = 192.168.1.13 -- 16:43:35.872 INFO [10816]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:43:35.872 INFO [10816]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882 -- 16:43:35.872 INFO [10816]: QUERY_STRING = /auth -- 16:43:35.872 INFO [10816]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:43:35.908 INFO [10816]: COREGRADE is stopping... -- 16:43:35.908 DEBUG [10816]: Closing database connection -- 16:43:35.908 SQL [10816]: pgsql_close() -- 16:43:36.124 INFO [10816]: COREGRADE is starting... -- 16:43:36.124 INFO [10816]: Version from config: 1.0 -- 16:43:36.124 DEBUG [10816]: Connecting to database... -- 16:43:36.124 DEBUG [10816]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:43:36.125 SQL [10816]: pgsql_db_connect() -- 16:43:36.129 DEBUG [10816]: Database connection successful -- 16:43:36.129 INFO [10816]: _SERVER found -- 16:43:36.129 INFO [10816]: REMOTE_ADDR = 192.168.1.13 -- 16:43:36.129 INFO [10816]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:43:36.129 INFO [10816]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=qhin9fla63vl32jkqhsdvg9g5bnsoonp -- 16:43:36.129 INFO [10816]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:43:36.129 INFO [10816]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:43:36.140 INFO [10816]: COREGRADE is stopping... -- 16:43:36.140 DEBUG [10816]: Closing database connection -- 16:43:36.140 SQL [10816]: pgsql_close() -- 16:43:36.185 INFO [10816]: COREGRADE is starting... -- 16:43:36.185 INFO [10816]: Version from config: 1.0 -- 16:43:36.185 DEBUG [10816]: Connecting to database... -- 16:43:36.185 DEBUG [10816]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:43:36.185 SQL [10816]: pgsql_db_connect() -- 16:43:36.190 DEBUG [10816]: Database connection successful -- 16:43:36.190 INFO [10816]: _SERVER found -- 16:43:36.190 INFO [10816]: REMOTE_ADDR = 192.168.1.13 -- 16:43:36.190 INFO [10816]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:43:36.190 INFO [10816]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=qhin9fla63vl32jkqhsdvg9g5bnsoonp -- 16:43:36.190 INFO [10816]: QUERY_STRING = /assets2/data/locales/en.json -- 16:43:36.190 INFO [10816]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:43:36.201 INFO [10816]: COREGRADE is stopping... -- 16:43:36.201 DEBUG [10816]: Closing database connection -- 16:43:36.201 SQL [10816]: pgsql_close() -- 18:39:13.185 INFO [10236]: COREGRADE is starting... -- 18:39:13.185 INFO [10236]: Version from config: 1.0 -- 18:39:13.185 DEBUG [10236]: Connecting to database... -- 18:39:13.185 DEBUG [10236]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:13.185 SQL [10236]: pgsql_db_connect() -- 18:39:13.190 DEBUG [10236]: Database connection successful -- 18:39:13.190 INFO [10236]: _SERVER found -- 18:39:13.190 INFO [10236]: REMOTE_ADDR = 192.168.1.13 -- 18:39:13.190 INFO [10236]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:39:13.190 INFO [10236]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699 -- 18:39:13.190 INFO [10236]: QUERY_STRING = -- 18:39:13.190 INFO [10236]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:39:13.232 INFO [10236]: COREGRADE is stopping... -- 18:39:13.232 DEBUG [10236]: Closing database connection -- 18:39:13.232 SQL [10236]: pgsql_close() -- 18:39:14.275 INFO [18855]: COREGRADE is starting... -- 18:39:14.276 INFO [18855]: Version from config: 1.0 -- 18:39:14.276 DEBUG [18855]: Connecting to database... -- 18:39:14.276 DEBUG [18855]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:14.276 SQL [18855]: pgsql_db_connect() -- 18:39:14.280 DEBUG [18855]: Database connection successful -- 18:39:14.280 INFO [18855]: _SERVER found -- 18:39:14.280 INFO [18855]: REMOTE_ADDR = 192.168.1.13 -- 18:39:14.280 INFO [18855]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:39:14.280 INFO [18855]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=mcfpan47l71b6rjqpe17sckf35d7bsba -- 18:39:14.280 INFO [18855]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:39:14.280 INFO [18855]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:39:14.294 INFO [18855]: COREGRADE is stopping... -- 18:39:14.294 DEBUG [18855]: Closing database connection -- 18:39:14.294 SQL [18855]: pgsql_close() -- 18:39:14.320 INFO [15409]: COREGRADE is starting... -- 18:39:14.320 INFO [15409]: Version from config: 1.0 -- 18:39:14.320 DEBUG [15409]: Connecting to database... -- 18:39:14.320 DEBUG [15409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:14.320 SQL [15409]: pgsql_db_connect() -- 18:39:14.324 DEBUG [15409]: Database connection successful -- 18:39:14.324 INFO [15409]: _SERVER found -- 18:39:14.324 INFO [15409]: REMOTE_ADDR = 192.168.1.13 -- 18:39:14.324 INFO [15409]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:39:14.324 INFO [15409]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=mcfpan47l71b6rjqpe17sckf35d7bsba -- 18:39:14.324 INFO [15409]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:39:14.324 INFO [15409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:39:14.336 INFO [15409]: COREGRADE is stopping... -- 18:39:14.336 DEBUG [15409]: Closing database connection -- 18:39:14.336 SQL [15409]: pgsql_close() -- 20:45:55.036 INFO [10234]: COREGRADE is starting... -- 20:45:55.036 INFO [10234]: Version from config: 1.0 -- 20:45:55.036 DEBUG [10234]: Connecting to database... -- 20:45:55.036 DEBUG [10234]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:45:55.036 SQL [10234]: pgsql_db_connect() -- 20:45:55.041 DEBUG [10234]: Database connection successful -- 20:45:55.041 INFO [10234]: _SERVER found -- 20:45:55.041 INFO [10234]: REMOTE_ADDR = 192.168.1.13 -- 20:45:55.041 INFO [10234]: SERVER_NAME = tokslaw.works.coregrade.com -- 20:45:55.041 INFO [10234]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371 -- 20:45:55.041 INFO [10234]: QUERY_STRING = /auth -- 20:45:55.041 INFO [10234]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:45:55.079 INFO [10234]: COREGRADE is stopping... -- 20:45:55.079 DEBUG [10234]: Closing database connection -- 20:45:55.079 SQL [10234]: pgsql_close() -- 20:45:55.629 INFO [10238]: COREGRADE is starting... -- 20:45:55.629 INFO [10238]: Version from config: 1.0 -- 20:45:55.629 DEBUG [10238]: Connecting to database... -- 20:45:55.629 DEBUG [10238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:45:55.629 SQL [10238]: pgsql_db_connect() -- 20:45:55.633 DEBUG [10238]: Database connection successful -- 20:45:55.633 INFO [10238]: _SERVER found -- 20:45:55.633 INFO [10238]: REMOTE_ADDR = 192.168.1.13 -- 20:45:55.633 INFO [10238]: SERVER_NAME = tokslaw.works.coregrade.com -- 20:45:55.633 INFO [10238]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; ci_session=k45orsdgl6nvgiqad3f1p55mnu6a607t -- 20:45:55.633 INFO [10238]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 20:45:55.633 INFO [10238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:45:55.646 INFO [10238]: COREGRADE is stopping... -- 20:45:55.646 DEBUG [10238]: Closing database connection -- 20:45:55.646 SQL [10238]: pgsql_close() -- 20:45:56.643 INFO [10238]: COREGRADE is starting... -- 20:45:56.643 INFO [10238]: Version from config: 1.0 -- 20:45:56.643 DEBUG [10238]: Connecting to database... -- 20:45:56.643 DEBUG [10238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:45:56.643 SQL [10238]: pgsql_db_connect() -- 20:45:56.647 DEBUG [10238]: Database connection successful -- 20:45:56.647 INFO [10238]: _SERVER found -- 20:45:56.647 INFO [10238]: REMOTE_ADDR = 192.168.1.13 -- 20:45:56.647 INFO [10238]: SERVER_NAME = tokslaw.works.coregrade.com -- 20:45:56.647 INFO [10238]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; ci_session=k45orsdgl6nvgiqad3f1p55mnu6a607t -- 20:45:56.647 INFO [10238]: QUERY_STRING = /assets2/data/locales/en.json -- 20:45:56.647 INFO [10238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:45:56.658 INFO [10238]: COREGRADE is stopping... -- 20:45:56.658 DEBUG [10238]: Closing database connection -- 20:45:56.658 SQL [10238]: pgsql_close() -- 20:46:11.638 INFO [10235]: COREGRADE is starting... -- 20:46:11.638 INFO [10235]: Version from config: 1.0 -- 20:46:11.638 DEBUG [10235]: Connecting to database... -- 20:46:11.638 DEBUG [10235]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:46:11.638 SQL [10235]: pgsql_db_connect() -- 20:46:11.642 DEBUG [10235]: Database connection successful -- 20:46:11.642 INFO [10235]: _SERVER found -- 20:46:11.642 INFO [10235]: REMOTE_ADDR = 192.168.1.13 -- 20:46:11.642 INFO [10235]: SERVER_NAME = tokslaw.works.coregrade.com -- 20:46:11.642 INFO [10235]: HTTP_COOKIE = ci_session=k45orsdgl6nvgiqad3f1p55mnu6a607t; _ga=GA1.2.1126635332.1581100371 -- 20:46:11.642 INFO [10235]: QUERY_STRING = /auth -- 20:46:11.642 INFO [10235]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:46:11.676 INFO [10235]: COREGRADE is stopping... -- 20:46:11.676 DEBUG [10235]: Closing database connection -- 20:46:11.676 SQL [10235]: pgsql_close() -- 20:46:11.780 INFO [10235]: COREGRADE is starting... -- 20:46:11.780 INFO [10235]: Version from config: 1.0 -- 20:46:11.780 DEBUG [10235]: Connecting to database... -- 20:46:11.780 DEBUG [10235]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:46:11.780 SQL [10235]: pgsql_db_connect() -- 20:46:11.784 DEBUG [10235]: Database connection successful -- 20:46:11.784 INFO [10235]: _SERVER found -- 20:46:11.784 INFO [10235]: REMOTE_ADDR = 192.168.1.13 -- 20:46:11.784 INFO [10235]: SERVER_NAME = tokslaw.works.coregrade.com -- 20:46:11.784 INFO [10235]: HTTP_COOKIE = ci_session=k45orsdgl6nvgiqad3f1p55mnu6a607t; _ga=GA1.2.1126635332.1581100371 -- 20:46:11.784 INFO [10235]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 20:46:11.784 INFO [10235]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:46:11.795 INFO [10235]: COREGRADE is stopping... -- 20:46:11.795 DEBUG [10235]: Closing database connection -- 20:46:11.795 SQL [10235]: pgsql_close() -- 20:46:12.495 INFO [10235]: COREGRADE is starting... -- 20:46:12.495 INFO [10235]: Version from config: 1.0 -- 20:46:12.495 DEBUG [10235]: Connecting to database... -- 20:46:12.495 DEBUG [10235]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:46:12.495 SQL [10235]: pgsql_db_connect() -- 20:46:12.499 DEBUG [10235]: Database connection successful -- 20:46:12.499 INFO [10235]: _SERVER found -- 20:46:12.499 INFO [10235]: REMOTE_ADDR = 192.168.1.13 -- 20:46:12.499 INFO [10235]: SERVER_NAME = tokslaw.works.coregrade.com -- 20:46:12.499 INFO [10235]: HTTP_COOKIE = ci_session=k45orsdgl6nvgiqad3f1p55mnu6a607t; _ga=GA1.2.1126635332.1581100371 -- 20:46:12.499 INFO [10235]: QUERY_STRING = /assets2/data/locales/en.json -- 20:46:12.499 INFO [10235]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:46:12.510 INFO [10235]: COREGRADE is stopping... -- 20:46:12.510 DEBUG [10235]: Closing database connection -- 20:46:12.510 SQL [10235]: pgsql_close() -- 21:48:50.823 INFO [10238]: COREGRADE is starting... -- 21:48:50.824 INFO [10238]: Version from config: 1.0 -- 21:48:50.824 DEBUG [10238]: Connecting to database... -- 21:48:50.824 DEBUG [10238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:48:50.824 SQL [10238]: pgsql_db_connect() -- 21:48:50.828 DEBUG [10238]: Database connection successful -- 21:48:50.828 INFO [10238]: _SERVER found -- 21:48:50.828 INFO [10238]: REMOTE_ADDR = 192.168.1.13 -- 21:48:50.828 INFO [10238]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:48:50.828 INFO [10238]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882 -- 21:48:50.828 INFO [10238]: QUERY_STRING = /auth -- 21:48:50.828 INFO [10238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:48:50.921 INFO [10238]: COREGRADE is starting... -- 21:48:50.922 INFO [10238]: Version from config: 1.0 -- 21:48:50.922 DEBUG [10238]: Connecting to database... -- 21:48:50.922 DEBUG [10238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:48:50.922 SQL [10238]: pgsql_db_connect() -- 21:48:50.926 DEBUG [10238]: Database connection successful -- 21:48:50.926 INFO [10238]: _SERVER found -- 21:48:50.926 INFO [10238]: REMOTE_ADDR = 192.168.1.13 -- 21:48:50.926 INFO [10238]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:48:50.926 INFO [10238]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:48:50.926 INFO [10238]: QUERY_STRING = /member/index -- 21:48:50.926 INFO [10238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:48:50.966 INFO [10238]: COREGRADE is stopping... -- 21:48:50.966 DEBUG [10238]: Closing database connection -- 21:48:50.966 SQL [10238]: pgsql_close() -- 21:48:51.429 INFO [10238]: COREGRADE is starting... -- 21:48:51.429 INFO [10238]: Version from config: 1.0 -- 21:48:51.429 DEBUG [10238]: Connecting to database... -- 21:48:51.429 DEBUG [10238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:48:51.429 SQL [10238]: pgsql_db_connect() -- 21:48:51.433 DEBUG [10238]: Database connection successful -- 21:48:51.433 INFO [10238]: _SERVER found -- 21:48:51.433 INFO [10238]: REMOTE_ADDR = 192.168.1.13 -- 21:48:51.433 INFO [10238]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:48:51.433 INFO [10238]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:48:51.433 INFO [10238]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:48:51.433 INFO [10238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:48:51.445 INFO [10238]: COREGRADE is stopping... -- 21:48:51.445 DEBUG [10238]: Closing database connection -- 21:48:51.445 SQL [10238]: pgsql_close() -- 21:48:51.814 INFO [10238]: COREGRADE is starting... -- 21:48:51.814 INFO [10238]: Version from config: 1.0 -- 21:48:51.814 DEBUG [10238]: Connecting to database... -- 21:48:51.815 DEBUG [10238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:48:51.815 SQL [10238]: pgsql_db_connect() -- 21:48:51.818 DEBUG [10238]: Database connection successful -- 21:48:51.818 INFO [10238]: _SERVER found -- 21:48:51.818 INFO [10238]: REMOTE_ADDR = 192.168.1.13 -- 21:48:51.818 INFO [10238]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:48:51.818 INFO [10238]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:48:51.818 INFO [10238]: QUERY_STRING = /assets2/data/locales/en.json -- 21:48:51.818 INFO [10238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:48:51.830 INFO [10238]: COREGRADE is stopping... -- 21:48:51.830 DEBUG [10238]: Closing database connection -- 21:48:51.830 SQL [10238]: pgsql_close() -- 21:49:00.322 INFO [20751]: COREGRADE is starting... -- 21:49:00.323 INFO [20751]: Version from config: 1.0 -- 21:49:00.323 DEBUG [20751]: Connecting to database... -- 21:49:00.323 DEBUG [20751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:49:00.323 SQL [20751]: pgsql_db_connect() -- 21:49:00.327 DEBUG [20751]: Database connection successful -- 21:49:00.327 INFO [20751]: _SERVER found -- 21:49:00.327 INFO [20751]: REMOTE_ADDR = 192.168.1.13 -- 21:49:00.327 INFO [20751]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:49:00.327 INFO [20751]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:49:00.327 INFO [20751]: QUERY_STRING = /member/configure -- 21:49:00.327 INFO [20751]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:49:00.380 INFO [20751]: COREGRADE is stopping... -- 21:49:00.380 DEBUG [20751]: Closing database connection -- 21:49:00.380 SQL [20751]: pgsql_close() -- 21:49:00.562 INFO [20751]: COREGRADE is starting... -- 21:49:00.562 INFO [20751]: Version from config: 1.0 -- 21:49:00.562 DEBUG [20751]: Connecting to database... -- 21:49:00.563 DEBUG [20751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:49:00.563 SQL [20751]: pgsql_db_connect() -- 21:49:00.571 INFO [20755]: COREGRADE is starting... -- 21:49:00.571 INFO [20755]: Version from config: 1.0 -- 21:49:00.571 DEBUG [20755]: Connecting to database... -- 21:49:00.571 DEBUG [20755]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:49:00.571 SQL [20755]: pgsql_db_connect() -- 21:49:00.566 DEBUG [20751]: Database connection successful -- 21:49:00.566 INFO [20751]: _SERVER found -- 21:49:00.566 INFO [20751]: REMOTE_ADDR = 192.168.1.13 -- 21:49:00.566 INFO [20751]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:49:00.566 INFO [20751]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:49:00.566 INFO [20751]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:49:00.566 INFO [20751]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:49:00.578 INFO [20751]: COREGRADE is stopping... -- 21:49:00.578 DEBUG [20751]: Closing database connection -- 21:49:00.578 SQL [20751]: pgsql_close() -- 21:49:00.575 DEBUG [20755]: Database connection successful -- 21:49:00.575 INFO [20755]: _SERVER found -- 21:49:00.575 INFO [20755]: REMOTE_ADDR = 192.168.1.13 -- 21:49:00.575 INFO [20755]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:49:00.575 INFO [20755]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:49:00.575 INFO [20755]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 21:49:00.575 INFO [20755]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:49:00.589 INFO [20755]: COREGRADE is stopping... -- 21:49:00.589 DEBUG [20755]: Closing database connection -- 21:49:00.589 SQL [20755]: pgsql_close() -- 21:49:00.722 INFO [20755]: COREGRADE is starting... -- 21:49:00.722 INFO [20755]: Version from config: 1.0 -- 21:49:00.722 DEBUG [20755]: Connecting to database... -- 21:49:00.722 DEBUG [20755]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:49:00.722 SQL [20755]: pgsql_db_connect() -- 21:49:00.726 DEBUG [20755]: Database connection successful -- 21:49:00.726 INFO [20755]: _SERVER found -- 21:49:00.726 INFO [20755]: REMOTE_ADDR = 192.168.1.13 -- 21:49:00.726 INFO [20755]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:49:00.726 INFO [20755]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:49:00.726 INFO [20755]: QUERY_STRING = /assets2/data/locales/en.json -- 21:49:00.726 INFO [20755]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:49:00.738 INFO [20755]: COREGRADE is stopping... -- 21:49:00.738 DEBUG [20755]: Closing database connection -- 21:49:00.738 SQL [20755]: pgsql_close() -- 21:49:09.624 INFO [18855]: COREGRADE is starting... -- 21:49:09.624 INFO [18855]: Version from config: 1.0 -- 21:49:09.624 DEBUG [18855]: Connecting to database... -- 21:49:09.624 DEBUG [18855]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:49:09.624 SQL [18855]: pgsql_db_connect() -- 21:49:09.628 DEBUG [18855]: Database connection successful -- 21:49:09.628 INFO [18855]: _SERVER found -- 21:49:09.628 INFO [18855]: REMOTE_ADDR = 192.168.1.13 -- 21:49:09.628 INFO [18855]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:49:09.628 INFO [18855]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:49:09.628 INFO [18855]: QUERY_STRING = /member/addcard -- 21:49:09.628 INFO [18855]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:49:09.676 INFO [18855]: COREGRADE is stopping... -- 21:49:09.676 DEBUG [18855]: Closing database connection -- 21:49:09.676 SQL [18855]: pgsql_close() -- 21:49:10.008 INFO [18855]: COREGRADE is starting... -- 21:49:10.008 INFO [18855]: Version from config: 1.0 -- 21:49:10.008 DEBUG [18855]: Connecting to database... -- 21:49:10.008 DEBUG [18855]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:49:10.008 SQL [18855]: pgsql_db_connect() -- 21:49:10.017 INFO [15409]: COREGRADE is starting... -- 21:49:10.017 INFO [15409]: Version from config: 1.0 -- 21:49:10.017 DEBUG [15409]: Connecting to database... -- 21:49:10.017 DEBUG [15409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:49:10.017 SQL [15409]: pgsql_db_connect() -- 21:49:10.012 DEBUG [18855]: Database connection successful -- 21:49:10.012 INFO [18855]: _SERVER found -- 21:49:10.012 INFO [18855]: REMOTE_ADDR = 192.168.1.13 -- 21:49:10.012 INFO [18855]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:49:10.012 INFO [18855]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:49:10.012 INFO [18855]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:49:10.012 INFO [18855]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:49:10.023 INFO [18855]: COREGRADE is stopping... -- 21:49:10.023 DEBUG [18855]: Closing database connection -- 21:49:10.023 SQL [18855]: pgsql_close() -- 21:49:10.021 DEBUG [15409]: Database connection successful -- 21:49:10.021 INFO [15409]: _SERVER found -- 21:49:10.021 INFO [15409]: REMOTE_ADDR = 192.168.1.13 -- 21:49:10.021 INFO [15409]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:49:10.021 INFO [15409]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:49:10.021 INFO [15409]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 21:49:10.021 INFO [15409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:49:10.033 INFO [15409]: COREGRADE is stopping... -- 21:49:10.033 DEBUG [15409]: Closing database connection -- 21:49:10.033 SQL [15409]: pgsql_close() -- 21:49:10.038 INFO [18855]: COREGRADE is starting... -- 21:49:10.039 INFO [18855]: Version from config: 1.0 -- 21:49:10.039 DEBUG [18855]: Connecting to database... -- 21:49:10.039 DEBUG [18855]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:49:10.039 SQL [18855]: pgsql_db_connect() -- 21:49:10.042 DEBUG [18855]: Database connection successful -- 21:49:10.042 INFO [18855]: _SERVER found -- 21:49:10.042 INFO [18855]: REMOTE_ADDR = 192.168.1.13 -- 21:49:10.042 INFO [18855]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:49:10.042 INFO [18855]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:49:10.042 INFO [18855]: QUERY_STRING = /assets2/data/locales/en.json -- 21:49:10.042 INFO [18855]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:49:10.053 INFO [18855]: COREGRADE is stopping... -- 21:49:10.053 DEBUG [18855]: Closing database connection -- 21:49:10.053 SQL [18855]: pgsql_close() -- 21:49:15.342 INFO [10236]: COREGRADE is starting... -- 21:49:15.342 INFO [10236]: Version from config: 1.0 -- 21:49:15.342 DEBUG [10236]: Connecting to database... -- 21:49:15.342 DEBUG [10236]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:49:15.342 SQL [10236]: pgsql_db_connect() -- 21:49:15.346 DEBUG [10236]: Database connection successful -- 21:49:15.346 INFO [10236]: _SERVER found -- 21:49:15.346 INFO [10236]: REMOTE_ADDR = 192.168.1.13 -- 21:49:15.346 INFO [10236]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:49:15.346 INFO [10236]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:49:15.346 INFO [10236]: QUERY_STRING = /member/configure -- 21:49:15.346 INFO [10236]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:49:15.391 INFO [10236]: COREGRADE is stopping... -- 21:49:15.392 DEBUG [10236]: Closing database connection -- 21:49:15.392 SQL [10236]: pgsql_close() -- 21:49:15.582 INFO [10236]: COREGRADE is starting... -- 21:49:15.583 INFO [10236]: Version from config: 1.0 -- 21:49:15.583 DEBUG [10236]: Connecting to database... -- 21:49:15.583 DEBUG [10236]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:49:15.583 SQL [10236]: pgsql_db_connect() -- 21:49:15.591 INFO [10237]: COREGRADE is starting... -- 21:49:15.591 INFO [10237]: Version from config: 1.0 -- 21:49:15.591 DEBUG [10237]: Connecting to database... -- 21:49:15.591 DEBUG [10237]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:49:15.591 SQL [10237]: pgsql_db_connect() -- 21:49:15.587 DEBUG [10236]: Database connection successful -- 21:49:15.587 INFO [10236]: _SERVER found -- 21:49:15.587 INFO [10236]: REMOTE_ADDR = 192.168.1.13 -- 21:49:15.587 INFO [10236]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:49:15.587 INFO [10236]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:49:15.587 INFO [10236]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:49:15.587 INFO [10236]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:49:15.598 INFO [10236]: COREGRADE is stopping... -- 21:49:15.598 DEBUG [10236]: Closing database connection -- 21:49:15.598 SQL [10236]: pgsql_close() -- 21:49:15.595 DEBUG [10237]: Database connection successful -- 21:49:15.595 INFO [10237]: _SERVER found -- 21:49:15.595 INFO [10237]: REMOTE_ADDR = 192.168.1.13 -- 21:49:15.595 INFO [10237]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:49:15.595 INFO [10237]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:49:15.595 INFO [10237]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 21:49:15.595 INFO [10237]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:49:15.607 INFO [10237]: COREGRADE is stopping... -- 21:49:15.607 DEBUG [10237]: Closing database connection -- 21:49:15.607 SQL [10237]: pgsql_close() -- 21:49:15.724 INFO [10237]: COREGRADE is starting... -- 21:49:15.724 INFO [10237]: Version from config: 1.0 -- 21:49:15.724 DEBUG [10237]: Connecting to database... -- 21:49:15.724 DEBUG [10237]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:49:15.724 SQL [10237]: pgsql_db_connect() -- 21:49:15.728 DEBUG [10237]: Database connection successful -- 21:49:15.728 INFO [10237]: _SERVER found -- 21:49:15.728 INFO [10237]: REMOTE_ADDR = 192.168.1.13 -- 21:49:15.728 INFO [10237]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:49:15.728 INFO [10237]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:49:15.728 INFO [10237]: QUERY_STRING = /assets2/data/locales/en.json -- 21:49:15.728 INFO [10237]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:49:15.739 INFO [10237]: COREGRADE is stopping... -- 21:49:15.739 DEBUG [10237]: Closing database connection -- 21:49:15.739 SQL [10237]: pgsql_close() -- 21:49:19.823 INFO [10237]: COREGRADE is starting... -- 21:49:19.824 INFO [10237]: Version from config: 1.0 -- 21:49:19.824 DEBUG [10237]: Connecting to database... -- 21:49:19.824 DEBUG [10237]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:49:19.824 SQL [10237]: pgsql_db_connect() -- 21:49:19.828 DEBUG [10237]: Database connection successful -- 21:49:19.828 INFO [10237]: _SERVER found -- 21:49:19.828 INFO [10237]: REMOTE_ADDR = 192.168.1.13 -- 21:49:19.828 INFO [10237]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:49:19.828 INFO [10237]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:49:19.828 INFO [10237]: QUERY_STRING = /member/mycalendar -- 21:49:19.828 INFO [10237]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:49:19.865 INFO [10237]: COREGRADE is stopping... -- 21:49:19.865 DEBUG [10237]: Closing database connection -- 21:49:19.865 SQL [10237]: pgsql_close() -- 21:49:20.083 INFO [10237]: COREGRADE is starting... -- 21:49:20.084 INFO [10237]: Version from config: 1.0 -- 21:49:20.084 DEBUG [10237]: Connecting to database... -- 21:49:20.084 DEBUG [10237]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:49:20.084 SQL [10237]: pgsql_db_connect() -- 21:49:20.088 DEBUG [10237]: Database connection successful -- 21:49:20.088 INFO [10237]: _SERVER found -- 21:49:20.088 INFO [10237]: REMOTE_ADDR = 192.168.1.13 -- 21:49:20.088 INFO [10237]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:49:20.088 INFO [10237]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:49:20.088 INFO [10237]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:49:20.088 INFO [10237]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:49:20.099 INFO [10237]: COREGRADE is stopping... -- 21:49:20.099 DEBUG [10237]: Closing database connection -- 21:49:20.099 SQL [10237]: pgsql_close() -- 21:49:20.333 INFO [10237]: COREGRADE is starting... -- 21:49:20.333 INFO [10237]: Version from config: 1.0 -- 21:49:20.333 DEBUG [10237]: Connecting to database... -- 21:49:20.333 DEBUG [10237]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:49:20.333 SQL [10237]: pgsql_db_connect() -- 21:49:20.337 DEBUG [10237]: Database connection successful -- 21:49:20.337 INFO [10237]: _SERVER found -- 21:49:20.337 INFO [10237]: REMOTE_ADDR = 192.168.1.13 -- 21:49:20.337 INFO [10237]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:49:20.337 INFO [10237]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:49:20.337 INFO [10237]: QUERY_STRING = /assets2/data/locales/en.json -- 21:49:20.337 INFO [10237]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:49:20.348 INFO [10237]: COREGRADE is stopping... -- 21:49:20.348 DEBUG [10237]: Closing database connection -- 21:49:20.348 SQL [10237]: pgsql_close() -- 21:50:05.375 INFO [10816]: COREGRADE is starting... -- 21:50:05.375 INFO [10816]: Version from config: 1.0 -- 21:50:05.375 DEBUG [10816]: Connecting to database... -- 21:50:05.375 DEBUG [10816]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:50:05.375 SQL [10816]: pgsql_db_connect() -- 21:50:05.380 DEBUG [10816]: Database connection successful -- 21:50:05.380 INFO [10816]: _SERVER found -- 21:50:05.380 INFO [10816]: REMOTE_ADDR = 192.168.1.13 -- 21:50:05.380 INFO [10816]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:50:05.380 INFO [10816]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:50:05.380 INFO [10816]: QUERY_STRING = /member/configure -- 21:50:05.380 INFO [10816]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:50:05.424 INFO [10816]: COREGRADE is stopping... -- 21:50:05.424 DEBUG [10816]: Closing database connection -- 21:50:05.424 SQL [10816]: pgsql_close() -- 21:50:05.691 INFO [10816]: COREGRADE is starting... -- 21:50:05.691 INFO [10816]: Version from config: 1.0 -- 21:50:05.691 DEBUG [10816]: Connecting to database... -- 21:50:05.691 DEBUG [10816]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:50:05.691 SQL [10816]: pgsql_db_connect() -- 21:50:05.699 INFO [10234]: COREGRADE is starting... -- 21:50:05.699 INFO [10234]: Version from config: 1.0 -- 21:50:05.699 DEBUG [10234]: Connecting to database... -- 21:50:05.699 DEBUG [10234]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:50:05.699 SQL [10234]: pgsql_db_connect() -- 21:50:05.695 DEBUG [10816]: Database connection successful -- 21:50:05.695 INFO [10816]: _SERVER found -- 21:50:05.695 INFO [10816]: REMOTE_ADDR = 192.168.1.13 -- 21:50:05.695 INFO [10816]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:50:05.695 INFO [10816]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:50:05.695 INFO [10816]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:50:05.695 INFO [10816]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:50:05.707 INFO [10816]: COREGRADE is stopping... -- 21:50:05.707 DEBUG [10816]: Closing database connection -- 21:50:05.707 SQL [10816]: pgsql_close() -- 21:50:05.703 DEBUG [10234]: Database connection successful -- 21:50:05.703 INFO [10234]: _SERVER found -- 21:50:05.703 INFO [10234]: REMOTE_ADDR = 192.168.1.13 -- 21:50:05.703 INFO [10234]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:50:05.703 INFO [10234]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:50:05.703 INFO [10234]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 21:50:05.703 INFO [10234]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:50:05.715 INFO [10234]: COREGRADE is stopping... -- 21:50:05.715 DEBUG [10234]: Closing database connection -- 21:50:05.715 SQL [10234]: pgsql_close() -- 21:50:05.811 INFO [10234]: COREGRADE is starting... -- 21:50:05.811 INFO [10234]: Version from config: 1.0 -- 21:50:05.811 DEBUG [10234]: Connecting to database... -- 21:50:05.811 DEBUG [10234]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:50:05.811 SQL [10234]: pgsql_db_connect() -- 21:50:05.815 DEBUG [10234]: Database connection successful -- 21:50:05.815 INFO [10234]: _SERVER found -- 21:50:05.815 INFO [10234]: REMOTE_ADDR = 192.168.1.13 -- 21:50:05.815 INFO [10234]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:50:05.815 INFO [10234]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:50:05.815 INFO [10234]: QUERY_STRING = /assets2/data/locales/en.json -- 21:50:05.815 INFO [10234]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:50:05.826 INFO [10234]: COREGRADE is stopping... -- 21:50:05.826 DEBUG [10234]: Closing database connection -- 21:50:05.826 SQL [10234]: pgsql_close() -- 21:50:26.367 INFO [10235]: COREGRADE is starting... -- 21:50:26.368 INFO [10235]: Version from config: 1.0 -- 21:50:26.368 DEBUG [10235]: Connecting to database... -- 21:50:26.368 DEBUG [10235]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:50:26.368 SQL [10235]: pgsql_db_connect() -- 21:50:26.372 DEBUG [10235]: Database connection successful -- 21:50:26.372 INFO [10235]: _SERVER found -- 21:50:26.372 INFO [10235]: REMOTE_ADDR = 192.168.1.13 -- 21:50:26.372 INFO [10235]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:50:26.372 INFO [10235]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:50:26.372 INFO [10235]: QUERY_STRING = /member/configure -- 21:50:26.372 INFO [10235]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:50:26.415 INFO [10235]: COREGRADE is stopping... -- 21:50:26.415 DEBUG [10235]: Closing database connection -- 21:50:26.415 SQL [10235]: pgsql_close() -- 21:50:26.598 INFO [10235]: COREGRADE is starting... -- 21:50:26.598 INFO [10235]: Version from config: 1.0 -- 21:50:26.598 DEBUG [10235]: Connecting to database... -- 21:50:26.598 DEBUG [10235]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:50:26.598 SQL [10235]: pgsql_db_connect() -- 21:50:26.605 INFO [10238]: COREGRADE is starting... -- 21:50:26.605 INFO [10238]: Version from config: 1.0 -- 21:50:26.605 DEBUG [10238]: Connecting to database... -- 21:50:26.605 DEBUG [10238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:50:26.605 SQL [10238]: pgsql_db_connect() -- 21:50:26.602 DEBUG [10235]: Database connection successful -- 21:50:26.602 INFO [10235]: _SERVER found -- 21:50:26.602 INFO [10235]: REMOTE_ADDR = 192.168.1.13 -- 21:50:26.602 INFO [10235]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:50:26.602 INFO [10235]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:50:26.602 INFO [10235]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:50:26.602 INFO [10235]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:50:26.613 INFO [10235]: COREGRADE is stopping... -- 21:50:26.613 DEBUG [10235]: Closing database connection -- 21:50:26.613 SQL [10235]: pgsql_close() -- 21:50:26.609 DEBUG [10238]: Database connection successful -- 21:50:26.609 INFO [10238]: _SERVER found -- 21:50:26.609 INFO [10238]: REMOTE_ADDR = 192.168.1.13 -- 21:50:26.609 INFO [10238]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:50:26.609 INFO [10238]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:50:26.609 INFO [10238]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 21:50:26.609 INFO [10238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:50:26.620 INFO [10238]: COREGRADE is stopping... -- 21:50:26.620 DEBUG [10238]: Closing database connection -- 21:50:26.620 SQL [10238]: pgsql_close() -- 21:50:26.741 INFO [10238]: COREGRADE is starting... -- 21:50:26.741 INFO [10238]: Version from config: 1.0 -- 21:50:26.741 DEBUG [10238]: Connecting to database... -- 21:50:26.741 DEBUG [10238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:50:26.741 SQL [10238]: pgsql_db_connect() -- 21:50:26.745 DEBUG [10238]: Database connection successful -- 21:50:26.745 INFO [10238]: _SERVER found -- 21:50:26.745 INFO [10238]: REMOTE_ADDR = 192.168.1.13 -- 21:50:26.745 INFO [10238]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:50:26.745 INFO [10238]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:50:26.745 INFO [10238]: QUERY_STRING = /assets2/data/locales/en.json -- 21:50:26.745 INFO [10238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:50:26.756 INFO [10238]: COREGRADE is stopping... -- 21:50:26.756 DEBUG [10238]: Closing database connection -- 21:50:26.756 SQL [10238]: pgsql_close() -- 21:50:27.654 INFO [10238]: COREGRADE is starting... -- 21:50:27.654 INFO [10238]: Version from config: 1.0 -- 21:50:27.654 DEBUG [10238]: Connecting to database... -- 21:50:27.654 DEBUG [10238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:50:27.654 SQL [10238]: pgsql_db_connect() -- 21:50:27.659 DEBUG [10238]: Database connection successful -- 21:50:27.659 INFO [10238]: _SERVER found -- 21:50:27.659 INFO [10238]: REMOTE_ADDR = 192.168.1.13 -- 21:50:27.659 INFO [10238]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:50:27.659 INFO [10238]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:50:27.659 INFO [10238]: QUERY_STRING = /member -- 21:50:27.659 INFO [10238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:50:27.698 INFO [10238]: COREGRADE is stopping... -- 21:50:27.698 DEBUG [10238]: Closing database connection -- 21:50:27.698 SQL [10238]: pgsql_close() -- 21:50:27.942 INFO [10238]: COREGRADE is starting... -- 21:50:27.942 INFO [10238]: Version from config: 1.0 -- 21:50:27.942 DEBUG [10238]: Connecting to database... -- 21:50:27.942 DEBUG [10238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:50:27.942 SQL [10238]: pgsql_db_connect() -- 21:50:27.946 DEBUG [10238]: Database connection successful -- 21:50:27.946 INFO [10238]: _SERVER found -- 21:50:27.946 INFO [10238]: REMOTE_ADDR = 192.168.1.13 -- 21:50:27.946 INFO [10238]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:50:27.946 INFO [10238]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:50:27.946 INFO [10238]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:50:27.946 INFO [10238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:50:27.957 INFO [10238]: COREGRADE is stopping... -- 21:50:27.957 DEBUG [10238]: Closing database connection -- 21:50:27.957 SQL [10238]: pgsql_close() -- 21:50:28.074 INFO [10238]: COREGRADE is starting... -- 21:50:28.075 INFO [10238]: Version from config: 1.0 -- 21:50:28.075 DEBUG [10238]: Connecting to database... -- 21:50:28.075 DEBUG [10238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:50:28.075 SQL [10238]: pgsql_db_connect() -- 21:50:28.078 DEBUG [10238]: Database connection successful -- 21:50:28.078 INFO [10238]: _SERVER found -- 21:50:28.078 INFO [10238]: REMOTE_ADDR = 192.168.1.13 -- 21:50:28.078 INFO [10238]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:50:28.078 INFO [10238]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:50:28.078 INFO [10238]: QUERY_STRING = /assets2/data/locales/en.json -- 21:50:28.078 INFO [10238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:50:28.090 INFO [10238]: COREGRADE is stopping... -- 21:50:28.090 DEBUG [10238]: Closing database connection -- 21:50:28.090 SQL [10238]: pgsql_close() -- 21:50:30.019 INFO [10238]: COREGRADE is starting... -- 21:50:30.019 INFO [10238]: Version from config: 1.0 -- 21:50:30.019 DEBUG [10238]: Connecting to database... -- 21:50:30.019 DEBUG [10238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:50:30.019 SQL [10238]: pgsql_db_connect() -- 21:50:30.023 DEBUG [10238]: Database connection successful -- 21:50:30.023 INFO [10238]: _SERVER found -- 21:50:30.023 INFO [10238]: REMOTE_ADDR = 192.168.1.13 -- 21:50:30.023 INFO [10238]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:50:30.023 INFO [10238]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:50:30.023 INFO [10238]: QUERY_STRING = /member/page -- 21:50:30.023 INFO [10238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:50:30.064 INFO [10238]: COREGRADE is stopping... -- 21:50:30.064 DEBUG [10238]: Closing database connection -- 21:50:30.064 SQL [10238]: pgsql_close() -- 21:50:30.250 INFO [10238]: COREGRADE is starting... -- 21:50:30.250 INFO [10238]: Version from config: 1.0 -- 21:50:30.250 DEBUG [10238]: Connecting to database... -- 21:50:30.250 DEBUG [10238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:50:30.250 SQL [10238]: pgsql_db_connect() -- 21:50:30.254 DEBUG [10238]: Database connection successful -- 21:50:30.254 INFO [10238]: _SERVER found -- 21:50:30.254 INFO [10238]: REMOTE_ADDR = 192.168.1.13 -- 21:50:30.254 INFO [10238]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:50:30.254 INFO [10238]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:50:30.254 INFO [10238]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:50:30.254 INFO [10238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:50:30.265 INFO [10238]: COREGRADE is stopping... -- 21:50:30.265 DEBUG [10238]: Closing database connection -- 21:50:30.265 SQL [10238]: pgsql_close() -- 21:50:30.442 INFO [10238]: COREGRADE is starting... -- 21:50:30.443 INFO [10238]: Version from config: 1.0 -- 21:50:30.443 DEBUG [10238]: Connecting to database... -- 21:50:30.443 DEBUG [10238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:50:30.443 SQL [10238]: pgsql_db_connect() -- 21:50:30.447 DEBUG [10238]: Database connection successful -- 21:50:30.447 INFO [10238]: _SERVER found -- 21:50:30.447 INFO [10238]: REMOTE_ADDR = 192.168.1.13 -- 21:50:30.447 INFO [10238]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:50:30.447 INFO [10238]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:50:30.447 INFO [10238]: QUERY_STRING = /assets2/data/locales/en.json -- 21:50:30.447 INFO [10238]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:50:30.458 INFO [10238]: COREGRADE is stopping... -- 21:50:30.458 DEBUG [10238]: Closing database connection -- 21:50:30.458 SQL [10238]: pgsql_close() -- 21:50:43.697 INFO [20751]: COREGRADE is starting... -- 21:50:43.697 INFO [20751]: Version from config: 1.0 -- 21:50:43.697 DEBUG [20751]: Connecting to database... -- 21:50:43.697 DEBUG [20751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:50:43.697 SQL [20751]: pgsql_db_connect() -- 21:50:43.702 DEBUG [20751]: Database connection successful -- 21:50:43.702 INFO [20751]: _SERVER found -- 21:50:43.702 INFO [20751]: REMOTE_ADDR = 192.168.1.13 -- 21:50:43.702 INFO [20751]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:50:43.702 INFO [20751]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:50:43.702 INFO [20751]: QUERY_STRING = /member/viewCardAddAction -- 21:50:43.702 INFO [20751]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:50:43.734 INFO [20751]: COREGRADE is stopping... -- 21:50:43.734 DEBUG [20751]: Closing database connection -- 21:50:43.734 SQL [20751]: pgsql_close() -- 21:51:03.711 INFO [20755]: COREGRADE is starting... -- 21:51:03.712 INFO [20755]: Version from config: 1.0 -- 21:51:03.712 DEBUG [20755]: Connecting to database... -- 21:51:03.712 DEBUG [20755]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:03.712 SQL [20755]: pgsql_db_connect() -- 21:51:03.715 DEBUG [20755]: Database connection successful -- 21:51:03.715 INFO [20755]: _SERVER found -- 21:51:03.715 INFO [20755]: REMOTE_ADDR = 192.168.1.13 -- 21:51:03.715 INFO [20755]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:03.715 INFO [20755]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:51:03.715 INFO [20755]: QUERY_STRING = /member/viewCardAddAction -- 21:51:03.715 INFO [20755]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:03.750 INFO [20755]: COREGRADE is stopping... -- 21:51:03.750 DEBUG [20755]: Closing database connection -- 21:51:03.750 SQL [20755]: pgsql_close() -- 21:51:07.118 INFO [18855]: COREGRADE is starting... -- 21:51:07.118 INFO [18855]: Version from config: 1.0 -- 21:51:07.118 DEBUG [18855]: Connecting to database... -- 21:51:07.118 DEBUG [18855]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:07.118 SQL [18855]: pgsql_db_connect() -- 21:51:07.122 DEBUG [18855]: Database connection successful -- 21:51:07.122 INFO [18855]: _SERVER found -- 21:51:07.122 INFO [18855]: REMOTE_ADDR = 192.168.1.13 -- 21:51:07.122 INFO [18855]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:07.122 INFO [18855]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:51:07.122 INFO [18855]: QUERY_STRING = /member/viewCardAddAction -- 21:51:07.122 INFO [18855]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:07.154 INFO [18855]: COREGRADE is stopping... -- 21:51:07.154 DEBUG [18855]: Closing database connection -- 21:51:07.154 SQL [18855]: pgsql_close() -- 21:51:08.326 INFO [18855]: COREGRADE is starting... -- 21:51:08.326 INFO [18855]: Version from config: 1.0 -- 21:51:08.326 DEBUG [18855]: Connecting to database... -- 21:51:08.326 DEBUG [18855]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:08.326 SQL [18855]: pgsql_db_connect() -- 21:51:08.330 DEBUG [18855]: Database connection successful -- 21:51:08.330 INFO [18855]: _SERVER found -- 21:51:08.330 INFO [18855]: REMOTE_ADDR = 192.168.1.13 -- 21:51:08.330 INFO [18855]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:08.330 INFO [18855]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:51:08.330 INFO [18855]: QUERY_STRING = /member/viewCardAddAction -- 21:51:08.330 INFO [18855]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:08.361 INFO [18855]: COREGRADE is stopping... -- 21:51:08.361 DEBUG [18855]: Closing database connection -- 21:51:08.361 SQL [18855]: pgsql_close() -- 21:51:09.425 INFO [18855]: COREGRADE is starting... -- 21:51:09.425 INFO [18855]: Version from config: 1.0 -- 21:51:09.425 DEBUG [18855]: Connecting to database... -- 21:51:09.425 DEBUG [18855]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:09.425 SQL [18855]: pgsql_db_connect() -- 21:51:09.429 DEBUG [18855]: Database connection successful -- 21:51:09.429 INFO [18855]: _SERVER found -- 21:51:09.429 INFO [18855]: REMOTE_ADDR = 192.168.1.13 -- 21:51:09.429 INFO [18855]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:09.429 INFO [18855]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:51:09.429 INFO [18855]: QUERY_STRING = /member/viewCardAddAction -- 21:51:09.429 INFO [18855]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:09.460 INFO [18855]: COREGRADE is stopping... -- 21:51:09.460 DEBUG [18855]: Closing database connection -- 21:51:09.460 SQL [18855]: pgsql_close() -- 21:51:10.783 INFO [18855]: COREGRADE is starting... -- 21:51:10.783 INFO [18855]: Version from config: 1.0 -- 21:51:10.783 DEBUG [18855]: Connecting to database... -- 21:51:10.783 DEBUG [18855]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:10.783 SQL [18855]: pgsql_db_connect() -- 21:51:10.787 DEBUG [18855]: Database connection successful -- 21:51:10.787 INFO [18855]: _SERVER found -- 21:51:10.787 INFO [18855]: REMOTE_ADDR = 192.168.1.13 -- 21:51:10.787 INFO [18855]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:10.787 INFO [18855]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:51:10.787 INFO [18855]: QUERY_STRING = /member/viewCardAddAction -- 21:51:10.787 INFO [18855]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:10.818 INFO [18855]: COREGRADE is stopping... -- 21:51:10.818 DEBUG [18855]: Closing database connection -- 21:51:10.818 SQL [18855]: pgsql_close() -- 21:51:12.776 INFO [18855]: COREGRADE is starting... -- 21:51:12.777 INFO [18855]: Version from config: 1.0 -- 21:51:12.777 DEBUG [18855]: Connecting to database... -- 21:51:12.777 DEBUG [18855]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:12.777 SQL [18855]: pgsql_db_connect() -- 21:51:12.780 DEBUG [18855]: Database connection successful -- 21:51:12.780 INFO [18855]: _SERVER found -- 21:51:12.780 INFO [18855]: REMOTE_ADDR = 192.168.1.13 -- 21:51:12.780 INFO [18855]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:12.780 INFO [18855]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:51:12.780 INFO [18855]: QUERY_STRING = /member/viewCardAddAction -- 21:51:12.780 INFO [18855]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:12.811 INFO [18855]: COREGRADE is stopping... -- 21:51:12.811 DEBUG [18855]: Closing database connection -- 21:51:12.811 SQL [18855]: pgsql_close() -- 21:51:19.667 INFO [15409]: COREGRADE is starting... -- 21:51:19.667 INFO [15409]: Version from config: 1.0 -- 21:51:19.667 DEBUG [15409]: Connecting to database... -- 21:51:19.668 DEBUG [15409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:19.668 SQL [15409]: pgsql_db_connect() -- 21:51:19.671 DEBUG [15409]: Database connection successful -- 21:51:19.672 INFO [15409]: _SERVER found -- 21:51:19.672 INFO [15409]: REMOTE_ADDR = 192.168.1.13 -- 21:51:19.672 INFO [15409]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:19.672 INFO [15409]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:51:19.672 INFO [15409]: QUERY_STRING = /member/configure -- 21:51:19.672 INFO [15409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:19.716 INFO [15409]: COREGRADE is stopping... -- 21:51:19.716 DEBUG [15409]: Closing database connection -- 21:51:19.716 SQL [15409]: pgsql_close() -- 21:51:19.968 INFO [15409]: COREGRADE is starting... -- 21:51:19.968 INFO [15409]: Version from config: 1.0 -- 21:51:19.968 DEBUG [15409]: Connecting to database... -- 21:51:19.968 DEBUG [15409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:19.968 SQL [15409]: pgsql_db_connect() -- 21:51:19.976 INFO [10236]: COREGRADE is starting... -- 21:51:19.976 INFO [10236]: Version from config: 1.0 -- 21:51:19.976 DEBUG [10236]: Connecting to database... -- 21:51:19.976 DEBUG [10236]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:19.976 SQL [10236]: pgsql_db_connect() -- 21:51:19.972 DEBUG [15409]: Database connection successful -- 21:51:19.972 INFO [15409]: _SERVER found -- 21:51:19.972 INFO [15409]: REMOTE_ADDR = 192.168.1.13 -- 21:51:19.972 INFO [15409]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:19.972 INFO [15409]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:51:19.972 INFO [15409]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:51:19.972 INFO [15409]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:19.984 INFO [15409]: COREGRADE is stopping... -- 21:51:19.984 DEBUG [15409]: Closing database connection -- 21:51:19.984 SQL [15409]: pgsql_close() -- 21:51:19.979 DEBUG [10236]: Database connection successful -- 21:51:19.979 INFO [10236]: _SERVER found -- 21:51:19.979 INFO [10236]: REMOTE_ADDR = 192.168.1.13 -- 21:51:19.979 INFO [10236]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:19.979 INFO [10236]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:51:19.979 INFO [10236]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 21:51:19.979 INFO [10236]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:19.991 INFO [10236]: COREGRADE is stopping... -- 21:51:19.991 DEBUG [10236]: Closing database connection -- 21:51:19.991 SQL [10236]: pgsql_close() -- 21:51:20.113 INFO [10236]: COREGRADE is starting... -- 21:51:20.113 INFO [10236]: Version from config: 1.0 -- 21:51:20.113 DEBUG [10236]: Connecting to database... -- 21:51:20.113 DEBUG [10236]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:20.113 SQL [10236]: pgsql_db_connect() -- 21:51:20.117 DEBUG [10236]: Database connection successful -- 21:51:20.117 INFO [10236]: _SERVER found -- 21:51:20.117 INFO [10236]: REMOTE_ADDR = 192.168.1.13 -- 21:51:20.117 INFO [10236]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:20.117 INFO [10236]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:51:20.117 INFO [10236]: QUERY_STRING = /assets2/data/locales/en.json -- 21:51:20.117 INFO [10236]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:20.129 INFO [10236]: COREGRADE is stopping... -- 21:51:20.129 DEBUG [10236]: Closing database connection -- 21:51:20.129 SQL [10236]: pgsql_close() -- 21:51:23.723 INFO [10236]: COREGRADE is starting... -- 21:51:23.724 INFO [10236]: Version from config: 1.0 -- 21:51:23.724 DEBUG [10236]: Connecting to database... -- 21:51:23.724 DEBUG [10236]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:23.724 SQL [10236]: pgsql_db_connect() -- 21:51:23.728 DEBUG [10236]: Database connection successful -- 21:51:23.728 INFO [10236]: _SERVER found -- 21:51:23.728 INFO [10236]: REMOTE_ADDR = 192.168.1.13 -- 21:51:23.728 INFO [10236]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:23.728 INFO [10236]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:51:23.728 INFO [10236]: QUERY_STRING = /member/page -- 21:51:23.728 INFO [10236]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:23.769 INFO [10236]: COREGRADE is stopping... -- 21:51:23.769 DEBUG [10236]: Closing database connection -- 21:51:23.769 SQL [10236]: pgsql_close() -- 21:51:23.972 INFO [10236]: COREGRADE is starting... -- 21:51:23.972 INFO [10236]: Version from config: 1.0 -- 21:51:23.972 DEBUG [10236]: Connecting to database... -- 21:51:23.972 DEBUG [10236]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:23.972 SQL [10236]: pgsql_db_connect() -- 21:51:23.976 DEBUG [10236]: Database connection successful -- 21:51:23.976 INFO [10236]: _SERVER found -- 21:51:23.976 INFO [10236]: REMOTE_ADDR = 192.168.1.13 -- 21:51:23.976 INFO [10236]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:23.976 INFO [10236]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:51:23.976 INFO [10236]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:51:23.976 INFO [10236]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:23.987 INFO [10236]: COREGRADE is stopping... -- 21:51:23.987 DEBUG [10236]: Closing database connection -- 21:51:23.987 SQL [10236]: pgsql_close() -- 21:51:24.093 INFO [10236]: COREGRADE is starting... -- 21:51:24.093 INFO [10236]: Version from config: 1.0 -- 21:51:24.093 DEBUG [10236]: Connecting to database... -- 21:51:24.093 DEBUG [10236]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:24.093 SQL [10236]: pgsql_db_connect() -- 21:51:24.097 DEBUG [10236]: Database connection successful -- 21:51:24.097 INFO [10236]: _SERVER found -- 21:51:24.097 INFO [10236]: REMOTE_ADDR = 192.168.1.13 -- 21:51:24.097 INFO [10236]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:24.097 INFO [10236]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:51:24.097 INFO [10236]: QUERY_STRING = /assets2/data/locales/en.json -- 21:51:24.097 INFO [10236]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:24.108 INFO [10236]: COREGRADE is stopping... -- 21:51:24.108 DEBUG [10236]: Closing database connection -- 21:51:24.108 SQL [10236]: pgsql_close() -- 21:51:33.661 INFO [10237]: COREGRADE is starting... -- 21:51:33.661 INFO [10237]: Version from config: 1.0 -- 21:51:33.661 DEBUG [10237]: Connecting to database... -- 21:51:33.661 DEBUG [10237]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:33.661 SQL [10237]: pgsql_db_connect() -- 21:51:33.665 DEBUG [10237]: Database connection successful -- 21:51:33.665 INFO [10237]: _SERVER found -- 21:51:33.665 INFO [10237]: REMOTE_ADDR = 192.168.1.13 -- 21:51:33.665 INFO [10237]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:33.665 INFO [10237]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:51:33.665 INFO [10237]: QUERY_STRING = /member/configure -- 21:51:33.665 INFO [10237]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:33.708 INFO [10237]: COREGRADE is stopping... -- 21:51:33.708 DEBUG [10237]: Closing database connection -- 21:51:33.708 SQL [10237]: pgsql_close() -- 21:51:34.008 INFO [10237]: COREGRADE is starting... -- 21:51:34.009 INFO [10237]: Version from config: 1.0 -- 21:51:34.009 DEBUG [10237]: Connecting to database... -- 21:51:34.009 DEBUG [10237]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:34.009 SQL [10237]: pgsql_db_connect() -- 21:51:34.018 INFO [10816]: COREGRADE is starting... -- 21:51:34.018 INFO [10816]: Version from config: 1.0 -- 21:51:34.018 DEBUG [10816]: Connecting to database... -- 21:51:34.018 DEBUG [10816]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:34.018 SQL [10816]: pgsql_db_connect() -- 21:51:34.013 DEBUG [10237]: Database connection successful -- 21:51:34.013 INFO [10237]: _SERVER found -- 21:51:34.013 INFO [10237]: REMOTE_ADDR = 192.168.1.13 -- 21:51:34.013 INFO [10237]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:34.013 INFO [10237]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:51:34.013 INFO [10237]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:51:34.013 INFO [10237]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:34.024 INFO [10237]: COREGRADE is stopping... -- 21:51:34.024 DEBUG [10237]: Closing database connection -- 21:51:34.024 SQL [10237]: pgsql_close() -- 21:51:34.021 DEBUG [10816]: Database connection successful -- 21:51:34.021 INFO [10816]: _SERVER found -- 21:51:34.021 INFO [10816]: REMOTE_ADDR = 192.168.1.13 -- 21:51:34.021 INFO [10816]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:34.021 INFO [10816]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:51:34.021 INFO [10816]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 21:51:34.021 INFO [10816]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:34.033 INFO [10816]: COREGRADE is stopping... -- 21:51:34.033 DEBUG [10816]: Closing database connection -- 21:51:34.033 SQL [10816]: pgsql_close() -- 21:51:34.211 INFO [10816]: COREGRADE is starting... -- 21:51:34.211 INFO [10816]: Version from config: 1.0 -- 21:51:34.211 DEBUG [10816]: Connecting to database... -- 21:51:34.211 DEBUG [10816]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:34.211 SQL [10816]: pgsql_db_connect() -- 21:51:34.215 DEBUG [10816]: Database connection successful -- 21:51:34.215 INFO [10816]: _SERVER found -- 21:51:34.215 INFO [10816]: REMOTE_ADDR = 192.168.1.13 -- 21:51:34.215 INFO [10816]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:34.215 INFO [10816]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:51:34.215 INFO [10816]: QUERY_STRING = /assets2/data/locales/en.json -- 21:51:34.215 INFO [10816]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:34.226 INFO [10816]: COREGRADE is stopping... -- 21:51:34.226 DEBUG [10816]: Closing database connection -- 21:51:34.226 SQL [10816]: pgsql_close() -- 21:51:39.103 INFO [10816]: COREGRADE is starting... -- 21:51:39.104 INFO [10816]: Version from config: 1.0 -- 21:51:39.104 DEBUG [10816]: Connecting to database... -- 21:51:39.104 DEBUG [10816]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:39.104 SQL [10816]: pgsql_db_connect() -- 21:51:39.107 DEBUG [10816]: Database connection successful -- 21:51:39.107 INFO [10816]: _SERVER found -- 21:51:39.107 INFO [10816]: REMOTE_ADDR = 192.168.1.13 -- 21:51:39.107 INFO [10816]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:39.107 INFO [10816]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:51:39.107 INFO [10816]: QUERY_STRING = /member -- 21:51:39.107 INFO [10816]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:39.146 INFO [10816]: COREGRADE is stopping... -- 21:51:39.146 DEBUG [10816]: Closing database connection -- 21:51:39.146 SQL [10816]: pgsql_close() -- 21:51:39.310 INFO [10816]: COREGRADE is starting... -- 21:51:39.310 INFO [10816]: Version from config: 1.0 -- 21:51:39.310 DEBUG [10816]: Connecting to database... -- 21:51:39.310 DEBUG [10816]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:39.310 SQL [10816]: pgsql_db_connect() -- 21:51:39.314 DEBUG [10816]: Database connection successful -- 21:51:39.314 INFO [10816]: _SERVER found -- 21:51:39.314 INFO [10816]: REMOTE_ADDR = 192.168.1.13 -- 21:51:39.314 INFO [10816]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:39.314 INFO [10816]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:51:39.314 INFO [10816]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:51:39.314 INFO [10816]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:39.325 INFO [10816]: COREGRADE is stopping... -- 21:51:39.325 DEBUG [10816]: Closing database connection -- 21:51:39.325 SQL [10816]: pgsql_close() -- 21:51:39.460 INFO [10816]: COREGRADE is starting... -- 21:51:39.460 INFO [10816]: Version from config: 1.0 -- 21:51:39.460 DEBUG [10816]: Connecting to database... -- 21:51:39.460 DEBUG [10816]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:39.460 SQL [10816]: pgsql_db_connect() -- 21:51:39.464 DEBUG [10816]: Database connection successful -- 21:51:39.464 INFO [10816]: _SERVER found -- 21:51:39.464 INFO [10816]: REMOTE_ADDR = 192.168.1.13 -- 21:51:39.464 INFO [10816]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:39.464 INFO [10816]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:51:39.464 INFO [10816]: QUERY_STRING = /assets2/data/locales/en.json -- 21:51:39.464 INFO [10816]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:39.475 INFO [10816]: COREGRADE is stopping... -- 21:51:39.475 DEBUG [10816]: Closing database connection -- 21:51:39.475 SQL [10816]: pgsql_close() -- 21:51:52.889 INFO [10234]: COREGRADE is starting... -- 21:51:52.889 INFO [10234]: Version from config: 1.0 -- 21:51:52.889 DEBUG [10234]: Connecting to database... -- 21:51:52.889 DEBUG [10234]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:52.889 SQL [10234]: pgsql_db_connect() -- 21:51:52.893 DEBUG [10234]: Database connection successful -- 21:51:52.893 INFO [10234]: _SERVER found -- 21:51:52.893 INFO [10234]: REMOTE_ADDR = 192.168.1.13 -- 21:51:52.893 INFO [10234]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:52.893 INFO [10234]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:51:52.893 INFO [10234]: QUERY_STRING = /member -- 21:51:52.893 INFO [10234]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:52.934 INFO [10234]: COREGRADE is stopping... -- 21:51:52.935 DEBUG [10234]: Closing database connection -- 21:51:52.935 SQL [10234]: pgsql_close() -- 21:51:53.136 INFO [10234]: COREGRADE is starting... -- 21:51:53.137 INFO [10234]: Version from config: 1.0 -- 21:51:53.137 DEBUG [10234]: Connecting to database... -- 21:51:53.137 DEBUG [10234]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:53.137 SQL [10234]: pgsql_db_connect() -- 21:51:53.141 DEBUG [10234]: Database connection successful -- 21:51:53.141 INFO [10234]: _SERVER found -- 21:51:53.141 INFO [10234]: REMOTE_ADDR = 192.168.1.13 -- 21:51:53.141 INFO [10234]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:53.141 INFO [10234]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:51:53.141 INFO [10234]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:51:53.141 INFO [10234]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:53.152 INFO [10234]: COREGRADE is stopping... -- 21:51:53.152 DEBUG [10234]: Closing database connection -- 21:51:53.152 SQL [10234]: pgsql_close() -- 21:51:53.328 INFO [10234]: COREGRADE is starting... -- 21:51:53.328 INFO [10234]: Version from config: 1.0 -- 21:51:53.328 DEBUG [10234]: Connecting to database... -- 21:51:53.328 DEBUG [10234]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:53.328 SQL [10234]: pgsql_db_connect() -- 21:51:53.332 DEBUG [10234]: Database connection successful -- 21:51:53.332 INFO [10234]: _SERVER found -- 21:51:53.332 INFO [10234]: REMOTE_ADDR = 192.168.1.13 -- 21:51:53.332 INFO [10234]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:53.332 INFO [10234]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; _gid=GA1.2.1446937691.1583776882; ci_session=0va5sr291djqtadfjdipted9ltkk2nt7 -- 21:51:53.332 INFO [10234]: QUERY_STRING = /assets2/data/locales/en.json -- 21:51:53.332 INFO [10234]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:53.343 INFO [10234]: COREGRADE is stopping... -- 21:51:53.343 DEBUG [10234]: Closing database connection -- 21:51:53.343 SQL [10234]: pgsql_close() -- 00:06:33.365 INFO [10238]: COREGRADE is starting... -- 00:06:33.366 INFO [10238]: Version from config: 1.0 -- 00:06:33.366 DEBUG [10238]: Connecting to database... -- 00:06:33.366 DEBUG [10238]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:06:33.366 SQL [10238]: pgsql_db_connect() -- 00:06:33.370 DEBUG [10238]: Database connection successful -- 00:06:33.370 INFO [10238]: _SERVER found -- 00:06:33.370 INFO [10238]: REMOTE_ADDR = 192.168.1.13 -- 00:06:33.370 INFO [10238]: SERVER_NAME = oameye.works.coregrade.com -- 00:06:33.370 INFO [10238]: QUERY_STRING = /.well-known/acme-challenge/LHgjsRWUztMhrL2GWEKiNe-DM-gF-vtHCPsNuXuEJ8w -- 00:06:33.370 INFO [10238]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 00:06:33.384 INFO [10238]: COREGRADE is stopping... -- 00:06:33.384 DEBUG [10238]: Closing database connection -- 00:06:33.384 SQL [10238]: pgsql_close() -- 00:06:33.526 INFO [20751]: COREGRADE is starting... -- 00:06:33.526 INFO [20751]: Version from config: 1.0 -- 00:06:33.526 DEBUG [20751]: Connecting to database... -- 00:06:33.526 DEBUG [20751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:06:33.526 SQL [20751]: pgsql_db_connect() -- 00:06:33.530 DEBUG [20751]: Database connection successful -- 00:06:33.530 INFO [20751]: _SERVER found -- 00:06:33.530 INFO [20751]: REMOTE_ADDR = 192.168.1.13 -- 00:06:33.530 INFO [20751]: SERVER_NAME = oameye.works.coregrade.com -- 00:06:33.530 INFO [20751]: QUERY_STRING = /.well-known/acme-challenge/LHgjsRWUztMhrL2GWEKiNe-DM-gF-vtHCPsNuXuEJ8w -- 00:06:33.530 INFO [20751]: HTTP_X_FORWARDED_FOR = 34.209.232.166 -- 00:06:33.543 INFO [20751]: COREGRADE is stopping... -- 00:06:33.543 DEBUG [20751]: Closing database connection -- 00:06:33.543 SQL [20751]: pgsql_close() -- 00:06:33.600 INFO [20751]: COREGRADE is starting... -- 00:06:33.601 INFO [20751]: Version from config: 1.0 -- 00:06:33.601 DEBUG [20751]: Connecting to database... -- 00:06:33.601 DEBUG [20751]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:06:33.601 SQL [20751]: pgsql_db_connect() -- 00:06:33.604 DEBUG [20751]: Database connection successful -- 00:06:33.605 INFO [20751]: _SERVER found -- 00:06:33.605 INFO [20751]: REMOTE_ADDR = 192.168.1.13 -- 00:06:33.605 INFO [20751]: SERVER_NAME = oameye.works.coregrade.com -- 00:06:33.605 INFO [20751]: QUERY_STRING = /.well-known/acme-challenge/LHgjsRWUztMhrL2GWEKiNe-DM-gF-vtHCPsNuXuEJ8w -- 00:06:33.605 INFO [20751]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 00:06:33.616 INFO [20751]: COREGRADE is stopping... -- 00:06:33.616 DEBUG [20751]: Closing database connection -- 00:06:33.616 SQL [20751]: pgsql_close() -- 00:52:38.366 INFO [15409]: COREGRADE is starting... -- 00:52:38.367 INFO [15409]: Version from config: 1.0 -- 00:52:38.367 DEBUG [15409]: Connecting to database... -- 00:52:38.367 DEBUG [15409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:52:38.367 SQL [15409]: pgsql_db_connect() -- 00:52:38.371 DEBUG [15409]: Database connection successful -- 00:52:38.371 INFO [15409]: _SERVER found -- 00:52:38.371 INFO [15409]: REMOTE_ADDR = 192.168.1.13 -- 00:52:38.371 INFO [15409]: SERVER_NAME = oameye.works.coregrade.com -- 00:52:38.371 INFO [15409]: QUERY_STRING = -- 00:52:38.371 INFO [15409]: HTTP_X_FORWARDED_FOR = 169.197.108.6 -- 00:52:38.414 INFO [15409]: COREGRADE is stopping... -- 00:52:38.414 DEBUG [15409]: Closing database connection -- 00:52:38.414 SQL [15409]: pgsql_close() -- 07:34:42.827 INFO [22839]: COREGRADE is starting... -- 07:34:42.827 INFO [22839]: Version from config: 1.0 -- 07:34:42.827 DEBUG [22839]: Connecting to database... -- 07:34:42.827 DEBUG [22839]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:34:42.827 SQL [22839]: pgsql_db_connect() -- 07:34:42.833 DEBUG [22839]: Database connection successful -- 07:34:42.833 INFO [22839]: _SERVER found -- 07:34:42.833 INFO [22839]: REMOTE_ADDR = 192.168.1.13 -- 07:34:42.833 INFO [22839]: SERVER_NAME = oameye.works.coregrade.com -- 07:34:42.833 INFO [22839]: QUERY_STRING = -- 07:34:42.833 INFO [22839]: HTTP_X_FORWARDED_FOR = 209.17.96.106 -- 07:34:42.883 INFO [22839]: COREGRADE is stopping... -- 07:34:42.883 DEBUG [22839]: Closing database connection -- 07:34:42.883 SQL [22839]: pgsql_close() -- 10:56:16.317 INFO [22840]: COREGRADE is starting... -- 10:56:16.317 INFO [22840]: Version from config: 1.0 -- 10:56:16.317 DEBUG [22840]: Connecting to database... -- 10:56:16.317 DEBUG [22840]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:56:16.317 SQL [22840]: pgsql_db_connect() -- 10:56:16.322 DEBUG [22840]: Database connection successful -- 10:56:16.322 INFO [22840]: _SERVER found -- 10:56:16.322 INFO [22840]: REMOTE_ADDR = 192.168.1.13 -- 10:56:16.322 INFO [22840]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:56:16.322 INFO [22840]: HTTP_COOKIE = _gid=GA1.2.1815532778.1583801486; _ga=GA1.2.1126635332.1581100371 -- 10:56:16.322 INFO [22840]: QUERY_STRING = /auth -- 10:56:16.322 INFO [22840]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:56:16.370 INFO [22840]: COREGRADE is stopping... -- 10:56:16.370 DEBUG [22840]: Closing database connection -- 10:56:16.370 SQL [22840]: pgsql_close() -- 10:56:16.732 INFO [22842]: COREGRADE is starting... -- 10:56:16.732 INFO [22842]: Version from config: 1.0 -- 10:56:16.732 DEBUG [22842]: Connecting to database... -- 10:56:16.732 DEBUG [22842]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:56:16.732 SQL [22842]: pgsql_db_connect() -- 10:56:16.738 DEBUG [22842]: Database connection successful -- 10:56:16.738 INFO [22842]: _SERVER found -- 10:56:16.738 INFO [22842]: REMOTE_ADDR = 192.168.1.13 -- 10:56:16.738 INFO [22842]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:56:16.738 INFO [22842]: HTTP_COOKIE = _gid=GA1.2.1815532778.1583801486; _ga=GA1.2.1126635332.1581100371; ci_session=c0vhtk1q9ss6t37ud1n7op940bvndg8d -- 10:56:16.738 INFO [22842]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:56:16.738 INFO [22842]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:56:16.753 INFO [22842]: COREGRADE is stopping... -- 10:56:16.753 DEBUG [22842]: Closing database connection -- 10:56:16.753 SQL [22842]: pgsql_close() -- 10:56:17.141 INFO [22842]: COREGRADE is starting... -- 10:56:17.141 INFO [22842]: Version from config: 1.0 -- 10:56:17.141 DEBUG [22842]: Connecting to database... -- 10:56:17.141 DEBUG [22842]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:56:17.141 SQL [22842]: pgsql_db_connect() -- 10:56:17.145 DEBUG [22842]: Database connection successful -- 10:56:17.145 INFO [22842]: _SERVER found -- 10:56:17.145 INFO [22842]: REMOTE_ADDR = 192.168.1.13 -- 10:56:17.145 INFO [22842]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:56:17.145 INFO [22842]: HTTP_COOKIE = _gid=GA1.2.1815532778.1583801486; _ga=GA1.2.1126635332.1581100371; ci_session=c0vhtk1q9ss6t37ud1n7op940bvndg8d -- 10:56:17.145 INFO [22842]: QUERY_STRING = /assets2/data/locales/en.json -- 10:56:17.145 INFO [22842]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:56:17.157 INFO [22842]: COREGRADE is stopping... -- 10:56:17.157 DEBUG [22842]: Closing database connection -- 10:56:17.157 SQL [22842]: pgsql_close() -- 10:56:32.450 INFO [22841]: COREGRADE is starting... -- 10:56:32.450 INFO [22841]: Version from config: 1.0 -- 10:56:32.450 DEBUG [22841]: Connecting to database... -- 10:56:32.450 DEBUG [22841]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:56:32.450 SQL [22841]: pgsql_db_connect() -- 10:56:32.455 DEBUG [22841]: Database connection successful -- 10:56:32.455 INFO [22841]: _SERVER found -- 10:56:32.455 INFO [22841]: REMOTE_ADDR = 192.168.1.13 -- 10:56:32.455 INFO [22841]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:56:32.455 INFO [22841]: HTTP_COOKIE = ci_session=c0vhtk1q9ss6t37ud1n7op940bvndg8d; _gid=GA1.2.1815532778.1583801486; _ga=GA1.2.1126635332.1581100371 -- 10:56:32.455 INFO [22841]: QUERY_STRING = /auth -- 10:56:32.455 INFO [22841]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:56:32.494 INFO [22841]: COREGRADE is stopping... -- 10:56:32.494 DEBUG [22841]: Closing database connection -- 10:56:32.494 SQL [22841]: pgsql_close() -- 10:56:32.625 INFO [22841]: COREGRADE is starting... -- 10:56:32.626 INFO [22841]: Version from config: 1.0 -- 10:56:32.626 DEBUG [22841]: Connecting to database... -- 10:56:32.626 DEBUG [22841]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:56:32.626 SQL [22841]: pgsql_db_connect() -- 10:56:32.630 DEBUG [22841]: Database connection successful -- 10:56:32.630 INFO [22841]: _SERVER found -- 10:56:32.630 INFO [22841]: REMOTE_ADDR = 192.168.1.13 -- 10:56:32.630 INFO [22841]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:56:32.630 INFO [22841]: HTTP_COOKIE = ci_session=c0vhtk1q9ss6t37ud1n7op940bvndg8d; _gid=GA1.2.1815532778.1583801486; _ga=GA1.2.1126635332.1581100371 -- 10:56:32.630 INFO [22841]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:56:32.630 INFO [22841]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:56:32.641 INFO [22841]: COREGRADE is stopping... -- 10:56:32.641 DEBUG [22841]: Closing database connection -- 10:56:32.641 SQL [22841]: pgsql_close() -- 10:56:33.299 INFO [22841]: COREGRADE is starting... -- 10:56:33.300 INFO [22841]: Version from config: 1.0 -- 10:56:33.300 DEBUG [22841]: Connecting to database... -- 10:56:33.300 DEBUG [22841]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:56:33.300 SQL [22841]: pgsql_db_connect() -- 10:56:33.304 DEBUG [22841]: Database connection successful -- 10:56:33.304 INFO [22841]: _SERVER found -- 10:56:33.304 INFO [22841]: REMOTE_ADDR = 192.168.1.13 -- 10:56:33.304 INFO [22841]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:56:33.304 INFO [22841]: HTTP_COOKIE = ci_session=c0vhtk1q9ss6t37ud1n7op940bvndg8d; _gid=GA1.2.1815532778.1583801486; _ga=GA1.2.1126635332.1581100371 -- 10:56:33.304 INFO [22841]: QUERY_STRING = /assets2/data/locales/en.json -- 10:56:33.304 INFO [22841]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:56:33.315 INFO [22841]: COREGRADE is stopping... -- 10:56:33.315 DEBUG [22841]: Closing database connection -- 10:56:33.315 SQL [22841]: pgsql_close() -- 23:46:37.021 INFO [24653]: COREGRADE is starting... -- 23:46:37.021 INFO [24653]: Version from config: 1.0 -- 23:46:37.021 DEBUG [24653]: Connecting to database... -- 23:46:37.021 DEBUG [24653]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:46:37.021 SQL [24653]: pgsql_db_connect() -- 23:46:37.026 DEBUG [24653]: Database connection successful -- 23:46:37.026 INFO [24653]: _SERVER found -- 23:46:37.026 INFO [24653]: REMOTE_ADDR = 192.168.1.13 -- 23:46:37.026 INFO [24653]: SERVER_NAME = oameye.works.coregrade.com -- 23:46:37.026 INFO [24653]: QUERY_STRING = /TP/public/index.php -- 23:46:37.026 INFO [24653]: HTTP_X_FORWARDED_FOR = 111.229.1.215 -- 23:46:37.044 INFO [24653]: COREGRADE is stopping... -- 23:46:37.044 DEBUG [24653]: Closing database connection -- 23:46:37.044 SQL [24653]: pgsql_close() -- 23:46:38.495 INFO [24653]: COREGRADE is starting... -- 23:46:38.496 INFO [24653]: Version from config: 1.0 -- 23:46:38.496 DEBUG [24653]: Connecting to database... -- 23:46:38.496 DEBUG [24653]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:46:38.496 SQL [24653]: pgsql_db_connect() -- 23:46:38.500 DEBUG [24653]: Database connection successful -- 23:46:38.500 INFO [24653]: _SERVER found -- 23:46:38.500 INFO [24653]: REMOTE_ADDR = 192.168.1.13 -- 23:46:38.500 INFO [24653]: SERVER_NAME = oameye.works.coregrade.com -- 23:46:38.500 INFO [24653]: QUERY_STRING = /TP/index.php -- 23:46:38.500 INFO [24653]: HTTP_X_FORWARDED_FOR = 111.229.1.215 -- 23:46:38.511 INFO [24653]: COREGRADE is stopping... -- 23:46:38.511 DEBUG [24653]: Closing database connection -- 23:46:38.511 SQL [24653]: pgsql_close() -- 23:46:40.833 INFO [24653]: COREGRADE is starting... -- 23:46:40.834 INFO [24653]: Version from config: 1.0 -- 23:46:40.834 DEBUG [24653]: Connecting to database... -- 23:46:40.834 DEBUG [24653]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:46:40.834 SQL [24653]: pgsql_db_connect() -- 23:46:40.838 DEBUG [24653]: Database connection successful -- 23:46:40.838 INFO [24653]: _SERVER found -- 23:46:40.838 INFO [24653]: REMOTE_ADDR = 192.168.1.13 -- 23:46:40.838 INFO [24653]: SERVER_NAME = oameye.works.coregrade.com -- 23:46:40.838 INFO [24653]: QUERY_STRING = /thinkphp/html/public/index.php -- 23:46:40.838 INFO [24653]: HTTP_X_FORWARDED_FOR = 111.229.1.215 -- 23:46:40.849 INFO [24653]: COREGRADE is stopping... -- 23:46:40.849 DEBUG [24653]: Closing database connection -- 23:46:40.849 SQL [24653]: pgsql_close() -- 23:46:47.794 INFO [22839]: COREGRADE is starting... -- 23:46:47.795 INFO [22839]: Version from config: 1.0 -- 23:46:47.795 DEBUG [22839]: Connecting to database... -- 23:46:47.795 DEBUG [22839]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:46:47.795 SQL [22839]: pgsql_db_connect() -- 23:46:47.799 DEBUG [22839]: Database connection successful -- 23:46:47.799 INFO [22839]: _SERVER found -- 23:46:47.799 INFO [22839]: REMOTE_ADDR = 192.168.1.13 -- 23:46:47.799 INFO [22839]: SERVER_NAME = oameye.works.coregrade.com -- 23:46:47.799 INFO [22839]: QUERY_STRING = -- 23:46:47.799 INFO [22839]: HTTP_X_FORWARDED_FOR = 111.229.1.215 -- 23:46:47.834 INFO [22839]: COREGRADE is stopping... -- 23:46:47.834 DEBUG [22839]: Closing database connection -- 23:46:47.834 SQL [22839]: pgsql_close() -- 00:16:33.277 INFO [24638]: COREGRADE is starting... -- 00:16:33.277 INFO [24638]: Version from config: 1.0 -- 00:16:33.277 DEBUG [24638]: Connecting to database... -- 00:16:33.277 DEBUG [24638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:16:33.277 SQL [24638]: pgsql_db_connect() -- 00:16:33.282 DEBUG [24638]: Database connection successful -- 00:16:33.282 INFO [24638]: _SERVER found -- 00:16:33.282 INFO [24638]: REMOTE_ADDR = 192.168.1.13 -- 00:16:33.282 INFO [24638]: SERVER_NAME = oameye.works.coregrade.com -- 00:16:33.282 INFO [24638]: QUERY_STRING = /.well-known/acme-challenge/QPUBXXdSUoHTN5CUso9m47dhuYlRTE013WrTrMvi22U -- 00:16:33.282 INFO [24638]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 00:16:33.295 INFO [24638]: COREGRADE is stopping... -- 00:16:33.296 DEBUG [24638]: Closing database connection -- 00:16:33.296 SQL [24638]: pgsql_close() -- 00:16:33.581 INFO [24638]: COREGRADE is starting... -- 00:16:33.581 INFO [24638]: Version from config: 1.0 -- 00:16:33.581 DEBUG [24638]: Connecting to database... -- 00:16:33.581 DEBUG [24638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:16:33.581 SQL [24638]: pgsql_db_connect() -- 00:16:33.585 DEBUG [24638]: Database connection successful -- 00:16:33.585 INFO [24638]: _SERVER found -- 00:16:33.585 INFO [24638]: REMOTE_ADDR = 192.168.1.13 -- 00:16:33.585 INFO [24638]: SERVER_NAME = oameye.works.coregrade.com -- 00:16:33.585 INFO [24638]: QUERY_STRING = /.well-known/acme-challenge/QPUBXXdSUoHTN5CUso9m47dhuYlRTE013WrTrMvi22U -- 00:16:33.585 INFO [24638]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 00:16:33.596 INFO [24638]: COREGRADE is stopping... -- 00:16:33.596 DEBUG [24638]: Closing database connection -- 00:16:33.596 SQL [24638]: pgsql_close() -- 00:16:33.716 INFO [24641]: COREGRADE is starting... -- 00:16:33.717 INFO [24641]: Version from config: 1.0 -- 00:16:33.717 DEBUG [24641]: Connecting to database... -- 00:16:33.717 DEBUG [24641]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:16:33.717 SQL [24641]: pgsql_db_connect() -- 00:16:33.721 DEBUG [24641]: Database connection successful -- 00:16:33.721 INFO [24641]: _SERVER found -- 00:16:33.721 INFO [24641]: REMOTE_ADDR = 192.168.1.13 -- 00:16:33.721 INFO [24641]: SERVER_NAME = oameye.works.coregrade.com -- 00:16:33.721 INFO [24641]: QUERY_STRING = /.well-known/acme-challenge/QPUBXXdSUoHTN5CUso9m47dhuYlRTE013WrTrMvi22U -- 00:16:33.721 INFO [24641]: HTTP_X_FORWARDED_FOR = 34.209.232.166 -- 00:16:33.735 INFO [24641]: COREGRADE is stopping... -- 00:16:33.735 DEBUG [24641]: Closing database connection -- 00:16:33.735 SQL [24641]: pgsql_close() -- 03:42:46.061 INFO [23814]: COREGRADE is starting... -- 03:42:46.061 INFO [23814]: Version from config: 1.0 -- 03:42:46.061 DEBUG [23814]: Connecting to database... -- 03:42:46.061 DEBUG [23814]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:42:46.061 SQL [23814]: pgsql_db_connect() -- 03:42:46.066 DEBUG [23814]: Database connection successful -- 03:42:46.066 INFO [23814]: _SERVER found -- 03:42:46.066 INFO [23814]: REMOTE_ADDR = 192.168.1.13 -- 03:42:46.066 INFO [23814]: SERVER_NAME = oameye.works.coregrade.com -- 03:42:46.066 INFO [23814]: QUERY_STRING = -- 03:42:46.066 INFO [23814]: HTTP_X_FORWARDED_FOR = 128.14.209.178 -- 03:42:46.114 INFO [23814]: COREGRADE is stopping... -- 03:42:46.114 DEBUG [23814]: Closing database connection -- 03:42:46.114 SQL [23814]: pgsql_close() -- 06:25:15.860 INFO [22840]: COREGRADE is starting... -- 06:25:15.860 INFO [22840]: Version from config: 1.0 -- 06:25:15.860 DEBUG [22840]: Connecting to database... -- 06:25:15.860 DEBUG [22840]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:25:15.860 SQL [22840]: pgsql_db_connect() -- 06:25:15.865 DEBUG [22840]: Database connection successful -- 06:25:15.865 INFO [22840]: _SERVER found -- 06:25:15.865 INFO [22840]: REMOTE_ADDR = 192.168.1.13 -- 06:25:15.865 INFO [22840]: SERVER_NAME = oameye.works.coregrade.com -- 06:25:15.865 INFO [22840]: QUERY_STRING = /solr/admin/info/system -- 06:25:15.865 INFO [22840]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 06:25:15.881 INFO [22840]: COREGRADE is stopping... -- 06:25:15.881 DEBUG [22840]: Closing database connection -- 06:25:15.881 SQL [22840]: pgsql_close() -- 06:31:38.214 INFO [24640]: COREGRADE is starting... -- 06:31:38.214 INFO [24640]: Version from config: 1.0 -- 06:31:38.214 DEBUG [24640]: Connecting to database... -- 06:31:38.214 DEBUG [24640]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:31:38.214 SQL [24640]: pgsql_db_connect() -- 06:31:38.219 DEBUG [24640]: Database connection successful -- 06:31:38.219 INFO [24640]: _SERVER found -- 06:31:38.219 INFO [24640]: REMOTE_ADDR = 192.168.1.13 -- 06:31:38.219 INFO [24640]: SERVER_NAME = oameye.works.coregrade.com -- 06:31:38.219 INFO [24640]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 06:31:38.219 INFO [24640]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 06:31:38.264 INFO [24640]: COREGRADE is stopping... -- 06:31:38.264 DEBUG [24640]: Closing database connection -- 06:31:38.264 SQL [24640]: pgsql_close() -- 06:31:39.709 INFO [24640]: COREGRADE is starting... -- 06:31:39.710 INFO [24640]: Version from config: 1.0 -- 06:31:39.710 DEBUG [24640]: Connecting to database... -- 06:31:39.710 DEBUG [24640]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:31:39.710 SQL [24640]: pgsql_db_connect() -- 06:31:39.714 DEBUG [24640]: Database connection successful -- 06:31:39.714 INFO [24640]: _SERVER found -- 06:31:39.714 INFO [24640]: REMOTE_ADDR = 192.168.1.13 -- 06:31:39.714 INFO [24640]: SERVER_NAME = oameye.works.coregrade.com -- 06:31:39.714 INFO [24640]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 06:31:39.714 INFO [24640]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 06:31:39.746 INFO [24640]: COREGRADE is stopping... -- 06:31:39.746 DEBUG [24640]: Closing database connection -- 06:31:39.746 SQL [24640]: pgsql_close() -- 06:34:50.812 INFO [22841]: COREGRADE is starting... -- 06:34:50.812 INFO [22841]: Version from config: 1.0 -- 06:34:50.812 DEBUG [22841]: Connecting to database... -- 06:34:50.812 DEBUG [22841]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:34:50.812 SQL [22841]: pgsql_db_connect() -- 06:34:50.817 DEBUG [22841]: Database connection successful -- 06:34:50.817 INFO [22841]: _SERVER found -- 06:34:50.817 INFO [22841]: REMOTE_ADDR = 192.168.1.13 -- 06:34:50.817 INFO [22841]: SERVER_NAME = oameye.works.coregrade.com -- 06:34:50.817 INFO [22841]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 06:34:50.817 INFO [22841]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 06:34:50.862 INFO [22841]: COREGRADE is stopping... -- 06:34:50.863 DEBUG [22841]: Closing database connection -- 06:34:50.863 SQL [22841]: pgsql_close() -- 11:39:31.023 INFO [24652]: COREGRADE is starting... -- 11:39:31.023 INFO [24652]: Version from config: 1.0 -- 11:39:31.023 DEBUG [24652]: Connecting to database... -- 11:39:31.024 DEBUG [24652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:39:31.024 SQL [24652]: pgsql_db_connect() -- 11:39:31.028 DEBUG [24652]: Database connection successful -- 11:39:31.028 INFO [24652]: _SERVER found -- 11:39:31.028 INFO [24652]: REMOTE_ADDR = 192.168.1.13 -- 11:39:31.028 INFO [24652]: SERVER_NAME = oameye.works.coregrade.com -- 11:39:31.028 INFO [24652]: QUERY_STRING = /robots.txt -- 11:39:31.028 INFO [24652]: HTTP_X_FORWARDED_FOR = 66.249.64.184 -- 11:39:31.045 INFO [24652]: COREGRADE is stopping... -- 11:39:31.045 DEBUG [24652]: Closing database connection -- 11:39:31.045 SQL [24652]: pgsql_close() -- 11:39:31.160 INFO [24653]: COREGRADE is starting... -- 11:39:31.161 INFO [24653]: Version from config: 1.0 -- 11:39:31.161 DEBUG [24653]: Connecting to database... -- 11:39:31.161 DEBUG [24653]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:39:31.161 SQL [24653]: pgsql_db_connect() -- 11:39:31.165 DEBUG [24653]: Database connection successful -- 11:39:31.165 INFO [24653]: _SERVER found -- 11:39:31.165 INFO [24653]: REMOTE_ADDR = 192.168.1.13 -- 11:39:31.165 INFO [24653]: SERVER_NAME = oameye.works.coregrade.com -- 11:39:31.165 INFO [24653]: QUERY_STRING = -- 11:39:31.165 INFO [24653]: HTTP_X_FORWARDED_FOR = 66.249.64.180 -- 11:39:31.211 INFO [24653]: COREGRADE is stopping... -- 11:39:31.211 DEBUG [24653]: Closing database connection -- 11:39:31.211 SQL [24653]: pgsql_close() -- 11:40:07.613 INFO [22839]: COREGRADE is starting... -- 11:40:07.613 INFO [22839]: Version from config: 1.0 -- 11:40:07.613 DEBUG [22839]: Connecting to database... -- 11:40:07.613 DEBUG [22839]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:40:07.613 SQL [22839]: pgsql_db_connect() -- 11:40:07.617 DEBUG [22839]: Database connection successful -- 11:40:07.617 INFO [22839]: _SERVER found -- 11:40:07.617 INFO [22839]: REMOTE_ADDR = 192.168.1.13 -- 11:40:07.617 INFO [22839]: SERVER_NAME = oameye.works.coregrade.com -- 11:40:07.617 INFO [22839]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 11:40:07.617 INFO [22839]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 11:40:07.631 INFO [22839]: COREGRADE is stopping... -- 11:40:07.631 DEBUG [22839]: Closing database connection -- 11:40:07.631 SQL [22839]: pgsql_close() -- 12:13:29.714 INFO [24638]: COREGRADE is starting... -- 12:13:29.714 INFO [24638]: Version from config: 1.0 -- 12:13:29.714 DEBUG [24638]: Connecting to database... -- 12:13:29.714 DEBUG [24638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:13:29.714 SQL [24638]: pgsql_db_connect() -- 12:13:29.718 DEBUG [24638]: Database connection successful -- 12:13:29.718 INFO [24638]: _SERVER found -- 12:13:29.718 INFO [24638]: REMOTE_ADDR = 192.168.1.13 -- 12:13:29.718 INFO [24638]: SERVER_NAME = oameye.works.coregrade.com -- 12:13:29.718 INFO [24638]: QUERY_STRING = -- 12:13:29.718 INFO [24638]: HTTP_X_FORWARDED_FOR = 185.234.217.184 -- 12:13:29.759 INFO [24638]: COREGRADE is stopping... -- 12:13:29.759 DEBUG [24638]: Closing database connection -- 12:13:29.759 SQL [24638]: pgsql_close() -- 14:10:43.644 INFO [24639]: COREGRADE is starting... -- 14:10:43.644 INFO [24639]: Version from config: 1.0 -- 14:10:43.644 DEBUG [24639]: Connecting to database... -- 14:10:43.644 DEBUG [24639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:43.644 SQL [24639]: pgsql_db_connect() -- 14:10:43.649 DEBUG [24639]: Database connection successful -- 14:10:43.649 INFO [24639]: _SERVER found -- 14:10:43.649 INFO [24639]: REMOTE_ADDR = 192.168.1.13 -- 14:10:43.649 INFO [24639]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:10:43.649 INFO [24639]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699 -- 14:10:43.649 INFO [24639]: QUERY_STRING = -- 14:10:43.649 INFO [24639]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:10:43.696 INFO [24639]: COREGRADE is stopping... -- 14:10:43.696 DEBUG [24639]: Closing database connection -- 14:10:43.696 SQL [24639]: pgsql_close() -- 15:13:54.076 INFO [23814]: COREGRADE is starting... -- 15:13:54.077 INFO [23814]: Version from config: 1.0 -- 15:13:54.077 DEBUG [23814]: Connecting to database... -- 15:13:54.077 DEBUG [23814]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:13:54.077 SQL [23814]: pgsql_db_connect() -- 15:13:54.082 DEBUG [23814]: Database connection successful -- 15:13:54.082 INFO [23814]: _SERVER found -- 15:13:54.082 INFO [23814]: REMOTE_ADDR = 192.168.1.13 -- 15:13:54.082 INFO [23814]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:13:54.082 INFO [23814]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371 -- 15:13:54.082 INFO [23814]: QUERY_STRING = /auth -- 15:13:54.082 INFO [23814]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:13:54.121 INFO [23814]: COREGRADE is stopping... -- 15:13:54.121 DEBUG [23814]: Closing database connection -- 15:13:54.121 SQL [23814]: pgsql_close() -- 15:13:54.668 INFO [24640]: COREGRADE is starting... -- 15:13:54.668 INFO [24640]: Version from config: 1.0 -- 15:13:54.668 DEBUG [24640]: Connecting to database... -- 15:13:54.668 DEBUG [24640]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:13:54.668 SQL [24640]: pgsql_db_connect() -- 15:13:54.672 DEBUG [24640]: Database connection successful -- 15:13:54.672 INFO [24640]: _SERVER found -- 15:13:54.673 INFO [24640]: REMOTE_ADDR = 192.168.1.13 -- 15:13:54.673 INFO [24640]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:13:54.673 INFO [24640]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; ci_session=g9lr89vj2qbviokasfe5oee7k8rcc5eh -- 15:13:54.673 INFO [24640]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:13:54.673 INFO [24640]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:13:54.685 INFO [24640]: COREGRADE is stopping... -- 15:13:54.685 DEBUG [24640]: Closing database connection -- 15:13:54.685 SQL [24640]: pgsql_close() -- 15:13:54.921 INFO [24640]: COREGRADE is starting... -- 15:13:54.921 INFO [24640]: Version from config: 1.0 -- 15:13:54.921 DEBUG [24640]: Connecting to database... -- 15:13:54.921 DEBUG [24640]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:13:54.921 SQL [24640]: pgsql_db_connect() -- 15:13:54.925 DEBUG [24640]: Database connection successful -- 15:13:54.925 INFO [24640]: _SERVER found -- 15:13:54.925 INFO [24640]: REMOTE_ADDR = 192.168.1.13 -- 15:13:54.925 INFO [24640]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:13:54.925 INFO [24640]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; ci_session=g9lr89vj2qbviokasfe5oee7k8rcc5eh -- 15:13:54.925 INFO [24640]: QUERY_STRING = /assets2/data/locales/en.json -- 15:13:54.925 INFO [24640]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:13:54.936 INFO [24640]: COREGRADE is stopping... -- 15:13:54.936 DEBUG [24640]: Closing database connection -- 15:13:54.936 SQL [24640]: pgsql_close() -- 15:13:56.318 INFO [24640]: COREGRADE is starting... -- 15:13:56.318 INFO [24640]: Version from config: 1.0 -- 15:13:56.318 DEBUG [24640]: Connecting to database... -- 15:13:56.318 DEBUG [24640]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:13:56.318 SQL [24640]: pgsql_db_connect() -- 15:13:56.322 DEBUG [24640]: Database connection successful -- 15:13:56.322 INFO [24640]: _SERVER found -- 15:13:56.322 INFO [24640]: REMOTE_ADDR = 192.168.1.13 -- 15:13:56.322 INFO [24640]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:13:56.322 INFO [24640]: HTTP_COOKIE = ci_session=g9lr89vj2qbviokasfe5oee7k8rcc5eh; _ga=GA1.2.1126635332.1581100371 -- 15:13:56.322 INFO [24640]: QUERY_STRING = /auth -- 15:13:56.322 INFO [24640]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:13:56.355 INFO [24640]: COREGRADE is stopping... -- 15:13:56.355 DEBUG [24640]: Closing database connection -- 15:13:56.355 SQL [24640]: pgsql_close() -- 15:13:56.437 INFO [24640]: COREGRADE is starting... -- 15:13:56.437 INFO [24640]: Version from config: 1.0 -- 15:13:56.437 DEBUG [24640]: Connecting to database... -- 15:13:56.437 DEBUG [24640]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:13:56.437 SQL [24640]: pgsql_db_connect() -- 15:13:56.441 DEBUG [24640]: Database connection successful -- 15:13:56.441 INFO [24640]: _SERVER found -- 15:13:56.441 INFO [24640]: REMOTE_ADDR = 192.168.1.13 -- 15:13:56.441 INFO [24640]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:13:56.441 INFO [24640]: HTTP_COOKIE = ci_session=g9lr89vj2qbviokasfe5oee7k8rcc5eh; _ga=GA1.2.1126635332.1581100371 -- 15:13:56.441 INFO [24640]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:13:56.441 INFO [24640]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:13:56.452 INFO [24640]: COREGRADE is stopping... -- 15:13:56.452 DEBUG [24640]: Closing database connection -- 15:13:56.452 SQL [24640]: pgsql_close() -- 15:13:57.253 INFO [24640]: COREGRADE is starting... -- 15:13:57.253 INFO [24640]: Version from config: 1.0 -- 15:13:57.254 DEBUG [24640]: Connecting to database... -- 15:13:57.254 DEBUG [24640]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:13:57.254 SQL [24640]: pgsql_db_connect() -- 15:13:57.257 DEBUG [24640]: Database connection successful -- 15:13:57.258 INFO [24640]: _SERVER found -- 15:13:57.258 INFO [24640]: REMOTE_ADDR = 192.168.1.13 -- 15:13:57.258 INFO [24640]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:13:57.258 INFO [24640]: HTTP_COOKIE = ci_session=g9lr89vj2qbviokasfe5oee7k8rcc5eh; _ga=GA1.2.1126635332.1581100371 -- 15:13:57.258 INFO [24640]: QUERY_STRING = /assets2/data/locales/en.json -- 15:13:57.258 INFO [24640]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:13:57.269 INFO [24640]: COREGRADE is stopping... -- 15:13:57.269 DEBUG [24640]: Closing database connection -- 15:13:57.269 SQL [24640]: pgsql_close() -- 21:15:32.185 INFO [23814]: COREGRADE is starting... -- 21:15:32.186 INFO [23814]: Version from config: 1.0 -- 21:15:32.186 DEBUG [23814]: Connecting to database... -- 21:15:32.186 DEBUG [23814]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:15:32.186 SQL [23814]: pgsql_db_connect() -- 21:15:32.191 DEBUG [23814]: Database connection successful -- 21:15:32.191 INFO [23814]: _SERVER found -- 21:15:32.191 INFO [23814]: REMOTE_ADDR = 192.168.1.13 -- 21:15:32.191 INFO [23814]: SERVER_NAME = oameye.works.coregrade.com -- 21:15:32.191 INFO [23814]: QUERY_STRING = /solr/admin/info/system -- 21:15:32.191 INFO [23814]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 21:15:32.206 INFO [23814]: COREGRADE is stopping... -- 21:15:32.206 DEBUG [23814]: Closing database connection -- 21:15:32.206 SQL [23814]: pgsql_close() -- 21:31:18.759 INFO [22840]: COREGRADE is starting... -- 21:31:18.759 INFO [22840]: Version from config: 1.0 -- 21:31:18.759 DEBUG [22840]: Connecting to database... -- 21:31:18.760 DEBUG [22840]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:31:18.760 SQL [22840]: pgsql_db_connect() -- 21:31:18.764 DEBUG [22840]: Database connection successful -- 21:31:18.764 INFO [22840]: _SERVER found -- 21:31:18.764 INFO [22840]: REMOTE_ADDR = 192.168.1.13 -- 21:31:18.764 INFO [22840]: SERVER_NAME = oameye.works.coregrade.com -- 21:31:18.764 INFO [22840]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 21:31:18.764 INFO [22840]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 21:31:18.806 INFO [22840]: COREGRADE is stopping... -- 21:31:18.806 DEBUG [22840]: Closing database connection -- 21:31:18.806 SQL [22840]: pgsql_close() -- 21:42:14.221 INFO [24652]: COREGRADE is starting... -- 21:42:14.221 INFO [24652]: Version from config: 1.0 -- 21:42:14.221 DEBUG [24652]: Connecting to database... -- 21:42:14.221 DEBUG [24652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:42:14.221 SQL [24652]: pgsql_db_connect() -- 21:42:14.226 DEBUG [24652]: Database connection successful -- 21:42:14.226 INFO [24652]: _SERVER found -- 21:42:14.226 INFO [24652]: REMOTE_ADDR = 192.168.1.13 -- 21:42:14.226 INFO [24652]: SERVER_NAME = oameye.works.coregrade.com -- 21:42:14.226 INFO [24652]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 21:42:14.226 INFO [24652]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 21:42:14.240 INFO [24652]: COREGRADE is stopping... -- 21:42:14.241 DEBUG [24652]: Closing database connection -- 21:42:14.241 SQL [24652]: pgsql_close() -- 22:00:36.591 INFO [22841]: COREGRADE is starting... -- 22:00:36.591 INFO [22841]: Version from config: 1.0 -- 22:00:36.591 DEBUG [22841]: Connecting to database... -- 22:00:36.592 DEBUG [22841]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:00:36.592 SQL [22841]: pgsql_db_connect() -- 22:00:36.596 DEBUG [22841]: Database connection successful -- 22:00:36.596 INFO [22841]: _SERVER found -- 22:00:36.596 INFO [22841]: REMOTE_ADDR = 192.168.1.13 -- 22:00:36.596 INFO [22841]: SERVER_NAME = oameye.works.coregrade.com -- 22:00:36.596 INFO [22841]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 22:00:36.596 INFO [22841]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 22:00:36.630 INFO [22841]: COREGRADE is stopping... -- 22:00:36.630 DEBUG [22841]: Closing database connection -- 22:00:36.630 SQL [22841]: pgsql_close() -- 23:30:06.151 INFO [22839]: COREGRADE is starting... -- 23:30:06.151 INFO [22839]: Version from config: 1.0 -- 23:30:06.151 DEBUG [22839]: Connecting to database... -- 23:30:06.151 DEBUG [22839]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:30:06.151 SQL [22839]: pgsql_db_connect() -- 23:30:06.156 DEBUG [22839]: Database connection successful -- 23:30:06.156 INFO [22839]: _SERVER found -- 23:30:06.156 INFO [22839]: REMOTE_ADDR = 192.168.1.13 -- 23:30:06.156 INFO [22839]: SERVER_NAME = oameye.works.coregrade.com -- 23:30:06.156 INFO [22839]: QUERY_STRING = -- 23:30:06.156 INFO [22839]: HTTP_X_FORWARDED_FOR = 92.246.84.210 -- 23:30:06.191 INFO [22839]: COREGRADE is stopping... -- 23:30:06.191 DEBUG [22839]: Closing database connection -- 23:30:06.191 SQL [22839]: pgsql_close() -- 00:23:49.983 INFO [24638]: COREGRADE is starting... -- 00:23:49.983 INFO [24638]: Version from config: 1.0 -- 00:23:49.983 DEBUG [24638]: Connecting to database... -- 00:23:49.983 DEBUG [24638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:23:49.983 SQL [24638]: pgsql_db_connect() -- 00:23:49.988 DEBUG [24638]: Database connection successful -- 00:23:49.988 INFO [24638]: _SERVER found -- 00:23:49.988 INFO [24638]: REMOTE_ADDR = 192.168.1.13 -- 00:23:49.988 INFO [24638]: SERVER_NAME = oameye.works.coregrade.com -- 00:23:49.988 INFO [24638]: QUERY_STRING = -- 00:23:49.988 INFO [24638]: HTTP_X_FORWARDED_FOR = 52.152.241.185 -- 00:23:50.025 INFO [24638]: COREGRADE is stopping... -- 00:23:50.025 DEBUG [24638]: Closing database connection -- 00:23:50.025 SQL [24638]: pgsql_close() -- 01:23:04.086 INFO [24639]: COREGRADE is starting... -- 01:23:04.086 INFO [24639]: Version from config: 1.0 -- 01:23:04.086 DEBUG [24639]: Connecting to database... -- 01:23:04.086 DEBUG [24639]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:23:04.086 SQL [24639]: pgsql_db_connect() -- 01:23:04.091 DEBUG [24639]: Database connection successful -- 01:23:04.091 INFO [24639]: _SERVER found -- 01:23:04.091 INFO [24639]: REMOTE_ADDR = 192.168.1.13 -- 01:23:04.091 INFO [24639]: SERVER_NAME = oameye.works.coregrade.com -- 01:23:04.091 INFO [24639]: QUERY_STRING = /.well-known/acme-challenge/uh56ck1CNaTi_dp5clLB1aN-fBfSLO_N-gXqL2a5RjY -- 01:23:04.091 INFO [24639]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 01:23:04.106 INFO [24639]: COREGRADE is stopping... -- 01:23:04.106 DEBUG [24639]: Closing database connection -- 01:23:04.106 SQL [24639]: pgsql_close() -- 01:23:04.373 INFO [24641]: COREGRADE is starting... -- 01:23:04.374 INFO [24641]: Version from config: 1.0 -- 01:23:04.374 DEBUG [24641]: Connecting to database... -- 01:23:04.374 DEBUG [24641]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:23:04.374 SQL [24641]: pgsql_db_connect() -- 01:23:04.378 DEBUG [24641]: Database connection successful -- 01:23:04.378 INFO [24641]: _SERVER found -- 01:23:04.378 INFO [24641]: REMOTE_ADDR = 192.168.1.13 -- 01:23:04.378 INFO [24641]: SERVER_NAME = oameye.works.coregrade.com -- 01:23:04.378 INFO [24641]: QUERY_STRING = /.well-known/acme-challenge/uh56ck1CNaTi_dp5clLB1aN-fBfSLO_N-gXqL2a5RjY -- 01:23:04.378 INFO [24641]: HTTP_X_FORWARDED_FOR = 34.209.232.166 -- 01:23:04.390 INFO [24641]: COREGRADE is stopping... -- 01:23:04.390 DEBUG [24641]: Closing database connection -- 01:23:04.390 SQL [24641]: pgsql_close() -- 01:23:04.430 INFO [23814]: COREGRADE is starting... -- 01:23:04.430 INFO [23814]: Version from config: 1.0 -- 01:23:04.430 DEBUG [23814]: Connecting to database... -- 01:23:04.430 DEBUG [23814]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:23:04.431 SQL [23814]: pgsql_db_connect() -- 01:23:04.435 DEBUG [23814]: Database connection successful -- 01:23:04.435 INFO [23814]: _SERVER found -- 01:23:04.435 INFO [23814]: REMOTE_ADDR = 192.168.1.13 -- 01:23:04.435 INFO [23814]: SERVER_NAME = oameye.works.coregrade.com -- 01:23:04.435 INFO [23814]: QUERY_STRING = /.well-known/acme-challenge/uh56ck1CNaTi_dp5clLB1aN-fBfSLO_N-gXqL2a5RjY -- 01:23:04.435 INFO [23814]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 01:23:04.448 INFO [23814]: COREGRADE is stopping... -- 01:23:04.448 DEBUG [23814]: Closing database connection -- 01:23:04.448 SQL [23814]: pgsql_close() -- 03:06:31.281 INFO [22840]: COREGRADE is starting... -- 03:06:31.281 INFO [22840]: Version from config: 1.0 -- 03:06:31.281 DEBUG [22840]: Connecting to database... -- 03:06:31.281 DEBUG [22840]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:06:31.281 SQL [22840]: pgsql_db_connect() -- 03:06:31.285 DEBUG [22840]: Database connection successful -- 03:06:31.285 INFO [22840]: _SERVER found -- 03:06:31.285 INFO [22840]: REMOTE_ADDR = 192.168.1.13 -- 03:06:31.285 INFO [22840]: SERVER_NAME = oameye.works.coregrade.com -- 03:06:31.285 INFO [22840]: QUERY_STRING = -- 03:06:31.285 INFO [22840]: HTTP_X_FORWARDED_FOR = 128.14.133.58 -- 03:06:31.322 INFO [22840]: COREGRADE is stopping... -- 03:06:31.322 DEBUG [22840]: Closing database connection -- 03:06:31.322 SQL [22840]: pgsql_close() -- 08:38:26.331 INFO [24652]: COREGRADE is starting... -- 08:38:26.331 INFO [24652]: Version from config: 1.0 -- 08:38:26.331 DEBUG [24652]: Connecting to database... -- 08:38:26.331 DEBUG [24652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:38:26.332 SQL [24652]: pgsql_db_connect() -- 08:38:26.336 DEBUG [24652]: Database connection successful -- 08:38:26.336 INFO [24652]: _SERVER found -- 08:38:26.336 INFO [24652]: REMOTE_ADDR = 192.168.1.13 -- 08:38:26.336 INFO [24652]: SERVER_NAME = oameye.works.coregrade.com -- 08:38:26.336 INFO [24652]: QUERY_STRING = -- 08:38:26.336 INFO [24652]: HTTP_X_FORWARDED_FOR = 198.143.158.82 -- 08:38:26.376 INFO [24652]: COREGRADE is stopping... -- 08:38:26.376 DEBUG [24652]: Closing database connection -- 08:38:26.376 SQL [24652]: pgsql_close() -- 08:50:42.426 INFO [22841]: COREGRADE is starting... -- 08:50:42.427 INFO [22841]: Version from config: 1.0 -- 08:50:42.427 DEBUG [22841]: Connecting to database... -- 08:50:42.427 DEBUG [22841]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:42.427 SQL [22841]: pgsql_db_connect() -- 08:50:42.431 DEBUG [22841]: Database connection successful -- 08:50:42.431 INFO [22841]: _SERVER found -- 08:50:42.431 INFO [22841]: REMOTE_ADDR = 192.168.1.13 -- 08:50:42.431 INFO [22841]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:42.431 INFO [22841]: QUERY_STRING = /admin/config.php -- 08:50:42.431 INFO [22841]: HTTP_X_FORWARDED_FOR = 54.36.60.191 -- 08:50:42.445 INFO [22841]: COREGRADE is stopping... -- 08:50:42.445 DEBUG [22841]: Closing database connection -- 08:50:42.445 SQL [22841]: pgsql_close() -- 09:57:41.970 INFO [22839]: COREGRADE is starting... -- 09:57:41.970 INFO [22839]: Version from config: 1.0 -- 09:57:41.970 DEBUG [22839]: Connecting to database... -- 09:57:41.970 DEBUG [22839]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:57:41.970 SQL [22839]: pgsql_db_connect() -- 09:57:41.975 DEBUG [22839]: Database connection successful -- 09:57:41.975 INFO [22839]: _SERVER found -- 09:57:41.975 INFO [22839]: REMOTE_ADDR = 192.168.1.13 -- 09:57:41.975 INFO [22839]: SERVER_NAME = oameye.works.coregrade.com -- 09:57:41.975 INFO [22839]: QUERY_STRING = -- 09:57:41.975 INFO [22839]: HTTP_X_FORWARDED_FOR = 61.144.244.32 -- 09:57:42.014 INFO [22839]: COREGRADE is stopping... -- 09:57:42.014 DEBUG [22839]: Closing database connection -- 09:57:42.014 SQL [22839]: pgsql_close() -- 10:55:43.177 INFO [24638]: COREGRADE is starting... -- 10:55:43.177 INFO [24638]: Version from config: 1.0 -- 10:55:43.177 DEBUG [24638]: Connecting to database... -- 10:55:43.177 DEBUG [24638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:55:43.177 SQL [24638]: pgsql_db_connect() -- 10:55:43.182 DEBUG [24638]: Database connection successful -- 10:55:43.182 INFO [24638]: _SERVER found -- 10:55:43.182 INFO [24638]: REMOTE_ADDR = 192.168.1.13 -- 10:55:43.182 INFO [24638]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:55:43.182 INFO [24638]: HTTP_COOKIE = _gid=GA1.2.1808231143.1583954055; _ga=GA1.2.1126635332.1581100371 -- 10:55:43.182 INFO [24638]: QUERY_STRING = /auth -- 10:55:43.182 INFO [24638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:55:43.218 INFO [24638]: COREGRADE is stopping... -- 10:55:43.218 DEBUG [24638]: Closing database connection -- 10:55:43.218 SQL [24638]: pgsql_close() -- 10:55:43.952 INFO [24638]: COREGRADE is starting... -- 10:55:43.952 INFO [24638]: Version from config: 1.0 -- 10:55:43.952 DEBUG [24638]: Connecting to database... -- 10:55:43.952 DEBUG [24638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:55:43.952 SQL [24638]: pgsql_db_connect() -- 10:55:43.957 DEBUG [24638]: Database connection successful -- 10:55:43.957 INFO [24638]: _SERVER found -- 10:55:43.957 INFO [24638]: REMOTE_ADDR = 192.168.1.13 -- 10:55:43.957 INFO [24638]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:55:43.957 INFO [24638]: HTTP_COOKIE = _gid=GA1.2.1808231143.1583954055; _ga=GA1.2.1126635332.1581100371; ci_session=kb9deed62hfprv84lqp5bfuqh5uqbq9l -- 10:55:43.957 INFO [24638]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:55:43.957 INFO [24638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:55:43.968 INFO [24638]: COREGRADE is stopping... -- 10:55:43.968 DEBUG [24638]: Closing database connection -- 10:55:43.968 SQL [24638]: pgsql_close() -- 10:55:44.061 INFO [24640]: COREGRADE is starting... -- 10:55:44.061 INFO [24640]: Version from config: 1.0 -- 10:55:44.061 DEBUG [24640]: Connecting to database... -- 10:55:44.061 DEBUG [24640]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:55:44.061 SQL [24640]: pgsql_db_connect() -- 10:55:44.065 DEBUG [24640]: Database connection successful -- 10:55:44.065 INFO [24640]: _SERVER found -- 10:55:44.065 INFO [24640]: REMOTE_ADDR = 192.168.1.13 -- 10:55:44.065 INFO [24640]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:55:44.065 INFO [24640]: HTTP_COOKIE = _gid=GA1.2.1808231143.1583954055; _ga=GA1.2.1126635332.1581100371; ci_session=kb9deed62hfprv84lqp5bfuqh5uqbq9l -- 10:55:44.065 INFO [24640]: QUERY_STRING = /assets2/data/locales/en.json -- 10:55:44.065 INFO [24640]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:55:44.077 INFO [24640]: COREGRADE is stopping... -- 10:55:44.077 DEBUG [24640]: Closing database connection -- 10:55:44.077 SQL [24640]: pgsql_close() -- 10:55:54.578 INFO [4216]: COREGRADE is starting... -- 10:55:54.578 INFO [4216]: Version from config: 1.0 -- 10:55:54.578 DEBUG [4216]: Connecting to database... -- 10:55:54.579 DEBUG [4216]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:55:54.579 SQL [4216]: pgsql_db_connect() -- 10:55:54.583 DEBUG [4216]: Database connection successful -- 10:55:54.583 INFO [4216]: _SERVER found -- 10:55:54.583 INFO [4216]: REMOTE_ADDR = 192.168.1.13 -- 10:55:54.583 INFO [4216]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:55:54.583 INFO [4216]: HTTP_COOKIE = ci_session=kb9deed62hfprv84lqp5bfuqh5uqbq9l; _gid=GA1.2.1808231143.1583954055; _ga=GA1.2.1126635332.1581100371 -- 10:55:54.583 INFO [4216]: QUERY_STRING = /auth -- 10:55:54.583 INFO [4216]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:55:54.620 INFO [4216]: COREGRADE is stopping... -- 10:55:54.620 DEBUG [4216]: Closing database connection -- 10:55:54.620 SQL [4216]: pgsql_close() -- 10:55:54.709 INFO [4216]: COREGRADE is starting... -- 10:55:54.710 INFO [4216]: Version from config: 1.0 -- 10:55:54.710 DEBUG [4216]: Connecting to database... -- 10:55:54.710 DEBUG [4216]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:55:54.710 SQL [4216]: pgsql_db_connect() -- 10:55:54.714 DEBUG [4216]: Database connection successful -- 10:55:54.714 INFO [4216]: _SERVER found -- 10:55:54.714 INFO [4216]: REMOTE_ADDR = 192.168.1.13 -- 10:55:54.714 INFO [4216]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:55:54.714 INFO [4216]: HTTP_COOKIE = ci_session=kb9deed62hfprv84lqp5bfuqh5uqbq9l; _gid=GA1.2.1808231143.1583954055; _ga=GA1.2.1126635332.1581100371 -- 10:55:54.714 INFO [4216]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:55:54.714 INFO [4216]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:55:54.725 INFO [4216]: COREGRADE is stopping... -- 10:55:54.725 DEBUG [4216]: Closing database connection -- 10:55:54.725 SQL [4216]: pgsql_close() -- 10:55:55.468 INFO [4216]: COREGRADE is starting... -- 10:55:55.469 INFO [4216]: Version from config: 1.0 -- 10:55:55.469 DEBUG [4216]: Connecting to database... -- 10:55:55.469 DEBUG [4216]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:55:55.469 SQL [4216]: pgsql_db_connect() -- 10:55:55.473 DEBUG [4216]: Database connection successful -- 10:55:55.473 INFO [4216]: _SERVER found -- 10:55:55.473 INFO [4216]: REMOTE_ADDR = 192.168.1.13 -- 10:55:55.473 INFO [4216]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:55:55.473 INFO [4216]: HTTP_COOKIE = ci_session=kb9deed62hfprv84lqp5bfuqh5uqbq9l; _gid=GA1.2.1808231143.1583954055; _ga=GA1.2.1126635332.1581100371 -- 10:55:55.473 INFO [4216]: QUERY_STRING = /assets2/data/locales/en.json -- 10:55:55.473 INFO [4216]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:55:55.484 INFO [4216]: COREGRADE is stopping... -- 10:55:55.484 DEBUG [4216]: Closing database connection -- 10:55:55.484 SQL [4216]: pgsql_close() -- 12:47:41.368 INFO [24638]: COREGRADE is starting... -- 12:47:41.368 INFO [24638]: Version from config: 1.0 -- 12:47:41.368 DEBUG [24638]: Connecting to database... -- 12:47:41.368 DEBUG [24638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:47:41.368 SQL [24638]: pgsql_db_connect() -- 12:47:41.374 DEBUG [24638]: Database connection successful -- 12:47:41.374 INFO [24638]: _SERVER found -- 12:47:41.374 INFO [24638]: REMOTE_ADDR = 192.168.1.13 -- 12:47:41.374 INFO [24638]: SERVER_NAME = oameye.works.coregrade.com -- 12:47:41.374 INFO [24638]: QUERY_STRING = -- 12:47:41.374 INFO [24638]: HTTP_X_FORWARDED_FOR = 157.245.74.254 -- 12:47:41.422 INFO [24638]: COREGRADE is stopping... -- 12:47:41.422 DEBUG [24638]: Closing database connection -- 12:47:41.422 SQL [24638]: pgsql_close() -- 12:47:41.586 INFO [24638]: COREGRADE is starting... -- 12:47:41.586 INFO [24638]: Version from config: 1.0 -- 12:47:41.586 DEBUG [24638]: Connecting to database... -- 12:47:41.586 DEBUG [24638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:47:41.586 SQL [24638]: pgsql_db_connect() -- 12:47:41.590 DEBUG [24638]: Database connection successful -- 12:47:41.590 INFO [24638]: _SERVER found -- 12:47:41.590 INFO [24638]: REMOTE_ADDR = 192.168.1.13 -- 12:47:41.590 INFO [24638]: SERVER_NAME = oameye.works.coregrade.com -- 12:47:41.590 INFO [24638]: HTTP_COOKIE = ci_session=8m0bg5lt5tkjimc3ap3ihutbc70ilo0m -- 12:47:41.590 INFO [24638]: QUERY_STRING = /favicon.ico -- 12:47:41.590 INFO [24638]: HTTP_X_FORWARDED_FOR = 157.245.74.254 -- 12:47:41.601 INFO [24638]: COREGRADE is stopping... -- 12:47:41.601 DEBUG [24638]: Closing database connection -- 12:47:41.601 SQL [24638]: pgsql_close() -- 13:40:32.379 INFO [24640]: COREGRADE is starting... -- 13:40:32.380 INFO [24640]: Version from config: 1.0 -- 13:40:32.380 DEBUG [24640]: Connecting to database... -- 13:40:32.380 DEBUG [24640]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:40:32.380 SQL [24640]: pgsql_db_connect() -- 13:40:32.385 DEBUG [24640]: Database connection successful -- 13:40:32.385 INFO [24640]: _SERVER found -- 13:40:32.385 INFO [24640]: REMOTE_ADDR = 192.168.1.13 -- 13:40:32.385 INFO [24640]: SERVER_NAME = oameye.works.coregrade.com -- 13:40:32.385 INFO [24640]: QUERY_STRING = /solr/admin/info/system -- 13:40:32.385 INFO [24640]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 13:40:32.398 INFO [24640]: COREGRADE is stopping... -- 13:40:32.398 DEBUG [24640]: Closing database connection -- 13:40:32.398 SQL [24640]: pgsql_close() -- 13:56:34.164 INFO [24653]: COREGRADE is starting... -- 13:56:34.164 INFO [24653]: Version from config: 1.0 -- 13:56:34.164 DEBUG [24653]: Connecting to database... -- 13:56:34.164 DEBUG [24653]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:56:34.164 SQL [24653]: pgsql_db_connect() -- 13:56:34.169 DEBUG [24653]: Database connection successful -- 13:56:34.169 INFO [24653]: _SERVER found -- 13:56:34.169 INFO [24653]: REMOTE_ADDR = 192.168.1.13 -- 13:56:34.169 INFO [24653]: SERVER_NAME = oameye.works.coregrade.com -- 13:56:34.169 INFO [24653]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 13:56:34.169 INFO [24653]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 13:56:34.209 INFO [24653]: COREGRADE is stopping... -- 13:56:34.209 DEBUG [24653]: Closing database connection -- 13:56:34.209 SQL [24653]: pgsql_close() -- 13:56:34.695 INFO [24653]: COREGRADE is starting... -- 13:56:34.695 INFO [24653]: Version from config: 1.0 -- 13:56:34.695 DEBUG [24653]: Connecting to database... -- 13:56:34.695 DEBUG [24653]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:56:34.695 SQL [24653]: pgsql_db_connect() -- 13:56:34.699 DEBUG [24653]: Database connection successful -- 13:56:34.699 INFO [24653]: _SERVER found -- 13:56:34.699 INFO [24653]: REMOTE_ADDR = 192.168.1.13 -- 13:56:34.699 INFO [24653]: SERVER_NAME = oameye.works.coregrade.com -- 13:56:34.699 INFO [24653]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 13:56:34.699 INFO [24653]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 13:56:34.733 INFO [24653]: COREGRADE is stopping... -- 13:56:34.733 DEBUG [24653]: Closing database connection -- 13:56:34.733 SQL [24653]: pgsql_close() -- 14:05:51.590 INFO [24652]: COREGRADE is starting... -- 14:05:51.590 INFO [24652]: Version from config: 1.0 -- 14:05:51.590 DEBUG [24652]: Connecting to database... -- 14:05:51.590 DEBUG [24652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:05:51.590 SQL [24652]: pgsql_db_connect() -- 14:05:51.595 DEBUG [24652]: Database connection successful -- 14:05:51.595 INFO [24652]: _SERVER found -- 14:05:51.595 INFO [24652]: REMOTE_ADDR = 192.168.1.13 -- 14:05:51.595 INFO [24652]: SERVER_NAME = oameye.works.coregrade.com -- 14:05:51.595 INFO [24652]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 14:05:51.595 INFO [24652]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 14:05:51.631 INFO [24652]: COREGRADE is stopping... -- 14:05:51.631 DEBUG [24652]: Closing database connection -- 14:05:51.631 SQL [24652]: pgsql_close() -- 21:26:10.670 INFO [22841]: COREGRADE is starting... -- 21:26:10.671 INFO [22841]: Version from config: 1.0 -- 21:26:10.671 DEBUG [22841]: Connecting to database... -- 21:26:10.671 DEBUG [22841]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:26:10.671 SQL [22841]: pgsql_db_connect() -- 21:26:10.675 DEBUG [22841]: Database connection successful -- 21:26:10.675 INFO [22841]: _SERVER found -- 21:26:10.675 INFO [22841]: REMOTE_ADDR = 192.168.1.13 -- 21:26:10.675 INFO [22841]: SERVER_NAME = oameye.works.coregrade.com -- 21:26:10.675 INFO [22841]: QUERY_STRING = /.env -- 21:26:10.675 INFO [22841]: HTTP_X_FORWARDED_FOR = 139.162.170.47 -- 21:26:10.690 INFO [22841]: COREGRADE is stopping... -- 21:26:10.690 DEBUG [22841]: Closing database connection -- 21:26:10.690 SQL [22841]: pgsql_close() -- 22:41:14.929 INFO [22839]: COREGRADE is starting... -- 22:41:14.930 INFO [22839]: Version from config: 1.0 -- 22:41:14.930 DEBUG [22839]: Connecting to database... -- 22:41:14.930 DEBUG [22839]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:41:14.930 SQL [22839]: pgsql_db_connect() -- 22:41:14.935 DEBUG [22839]: Database connection successful -- 22:41:14.935 INFO [22839]: _SERVER found -- 22:41:14.935 INFO [22839]: REMOTE_ADDR = 192.168.1.13 -- 22:41:14.935 INFO [22839]: SERVER_NAME = oameye.works.coregrade.com -- 22:41:14.935 INFO [22839]: QUERY_STRING = /auth -- 22:41:14.935 INFO [22839]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:41:14.974 INFO [22839]: COREGRADE is stopping... -- 22:41:14.974 DEBUG [22839]: Closing database connection -- 22:41:14.974 SQL [22839]: pgsql_close() -- 22:41:15.400 INFO [4207]: COREGRADE is starting... -- 22:41:15.401 INFO [4207]: Version from config: 1.0 -- 22:41:15.401 DEBUG [4207]: Connecting to database... -- 22:41:15.401 DEBUG [4207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:41:15.401 SQL [4207]: pgsql_db_connect() -- 22:41:15.405 DEBUG [4207]: Database connection successful -- 22:41:15.405 INFO [4207]: _SERVER found -- 22:41:15.405 INFO [4207]: REMOTE_ADDR = 192.168.1.13 -- 22:41:15.405 INFO [4207]: SERVER_NAME = oameye.works.coregrade.com -- 22:41:15.405 INFO [4207]: HTTP_COOKIE = ci_session=h2bneqroq7clnp2s5af3oqjc52ieioeb -- 22:41:15.405 INFO [4207]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:41:15.405 INFO [4207]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:41:15.420 INFO [4207]: COREGRADE is stopping... -- 22:41:15.421 DEBUG [4207]: Closing database connection -- 22:41:15.421 SQL [4207]: pgsql_close() -- 00:42:23.037 INFO [4216]: COREGRADE is starting... -- 00:42:23.038 INFO [4216]: Version from config: 1.0 -- 00:42:23.038 DEBUG [4216]: Connecting to database... -- 00:42:23.038 DEBUG [4216]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:42:23.038 SQL [4216]: pgsql_db_connect() -- 00:42:23.043 DEBUG [4216]: Database connection successful -- 00:42:23.043 INFO [4216]: _SERVER found -- 00:42:23.043 INFO [4216]: REMOTE_ADDR = 192.168.1.13 -- 00:42:23.043 INFO [4216]: SERVER_NAME = oameye.works.coregrade.com -- 00:42:23.043 INFO [4216]: QUERY_STRING = /Telerik.Web.UI.WebResource.axd -- 00:42:23.043 INFO [4216]: HTTP_X_FORWARDED_FOR = 169.197.108.38 -- 00:42:23.055 INFO [4216]: COREGRADE is stopping... -- 00:42:23.055 DEBUG [4216]: Closing database connection -- 00:42:23.055 SQL [4216]: pgsql_close() -- 01:00:40.816 INFO [24638]: COREGRADE is starting... -- 01:00:40.816 INFO [24638]: Version from config: 1.0 -- 01:00:40.816 DEBUG [24638]: Connecting to database... -- 01:00:40.816 DEBUG [24638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:00:40.816 SQL [24638]: pgsql_db_connect() -- 01:00:40.821 DEBUG [24638]: Database connection successful -- 01:00:40.821 INFO [24638]: _SERVER found -- 01:00:40.821 INFO [24638]: REMOTE_ADDR = 192.168.1.13 -- 01:00:40.821 INFO [24638]: SERVER_NAME = oameye.works.coregrade.com -- 01:00:40.821 INFO [24638]: QUERY_STRING = /.well-known/acme-challenge/dCT9QTUWDHCrqjlzpjKzkAl16Nd6XEWZgmqQTmFxpYE -- 01:00:40.821 INFO [24638]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 01:00:40.835 INFO [24638]: COREGRADE is stopping... -- 01:00:40.835 DEBUG [24638]: Closing database connection -- 01:00:40.835 SQL [24638]: pgsql_close() -- 01:00:41.096 INFO [24638]: COREGRADE is starting... -- 01:00:41.096 INFO [24638]: Version from config: 1.0 -- 01:00:41.096 DEBUG [24638]: Connecting to database... -- 01:00:41.096 DEBUG [24638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:00:41.096 SQL [24638]: pgsql_db_connect() -- 01:00:41.104 INFO [24653]: COREGRADE is starting... -- 01:00:41.104 INFO [24653]: Version from config: 1.0 -- 01:00:41.104 DEBUG [24653]: Connecting to database... -- 01:00:41.104 DEBUG [24653]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:00:41.104 SQL [24653]: pgsql_db_connect() -- 01:00:41.100 DEBUG [24638]: Database connection successful -- 01:00:41.100 INFO [24638]: _SERVER found -- 01:00:41.100 INFO [24638]: REMOTE_ADDR = 192.168.1.13 -- 01:00:41.100 INFO [24638]: SERVER_NAME = oameye.works.coregrade.com -- 01:00:41.100 INFO [24638]: QUERY_STRING = /.well-known/acme-challenge/dCT9QTUWDHCrqjlzpjKzkAl16Nd6XEWZgmqQTmFxpYE -- 01:00:41.100 INFO [24638]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 01:00:41.112 INFO [24638]: COREGRADE is stopping... -- 01:00:41.112 DEBUG [24638]: Closing database connection -- 01:00:41.112 SQL [24638]: pgsql_close() -- 01:00:41.109 DEBUG [24653]: Database connection successful -- 01:00:41.109 INFO [24653]: _SERVER found -- 01:00:41.109 INFO [24653]: REMOTE_ADDR = 192.168.1.13 -- 01:00:41.109 INFO [24653]: SERVER_NAME = oameye.works.coregrade.com -- 01:00:41.109 INFO [24653]: QUERY_STRING = /.well-known/acme-challenge/dCT9QTUWDHCrqjlzpjKzkAl16Nd6XEWZgmqQTmFxpYE -- 01:00:41.109 INFO [24653]: HTTP_X_FORWARDED_FOR = 34.209.232.166 -- 01:00:41.130 INFO [24653]: COREGRADE is stopping... -- 01:00:41.130 DEBUG [24653]: Closing database connection -- 01:00:41.130 SQL [24653]: pgsql_close() -- 02:28:58.214 INFO [22840]: COREGRADE is starting... -- 02:28:58.215 INFO [22840]: Version from config: 1.0 -- 02:28:58.215 DEBUG [22840]: Connecting to database... -- 02:28:58.215 DEBUG [22840]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:58.215 SQL [22840]: pgsql_db_connect() -- 02:28:58.219 DEBUG [22840]: Database connection successful -- 02:28:58.219 INFO [22840]: _SERVER found -- 02:28:58.219 INFO [22840]: REMOTE_ADDR = 192.168.1.13 -- 02:28:58.219 INFO [22840]: SERVER_NAME = oameye.works.coregrade.com -- 02:28:58.219 INFO [22840]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 02:28:58.219 INFO [22840]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 02:28:58.235 INFO [22840]: COREGRADE is stopping... -- 02:28:58.235 DEBUG [22840]: Closing database connection -- 02:28:58.235 SQL [22840]: pgsql_close() -- 07:00:46.548 INFO [4210]: COREGRADE is starting... -- 07:00:46.548 INFO [4210]: Version from config: 1.0 -- 07:00:46.548 DEBUG [4210]: Connecting to database... -- 07:00:46.548 DEBUG [4210]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:00:46.548 SQL [4210]: pgsql_db_connect() -- 07:00:46.553 DEBUG [4210]: Database connection successful -- 07:00:46.553 INFO [4210]: _SERVER found -- 07:00:46.553 INFO [4210]: REMOTE_ADDR = 192.168.1.13 -- 07:00:46.553 INFO [4210]: SERVER_NAME = oameye.works.coregrade.com -- 07:00:46.553 INFO [4210]: QUERY_STRING = -- 07:00:46.553 INFO [4210]: HTTP_X_FORWARDED_FOR = 209.17.97.122 -- 07:00:46.598 INFO [4210]: COREGRADE is stopping... -- 07:00:46.598 DEBUG [4210]: Closing database connection -- 07:00:46.598 SQL [4210]: pgsql_close() -- 10:25:07.233 INFO [4207]: COREGRADE is starting... -- 10:25:07.233 INFO [4207]: Version from config: 1.0 -- 10:25:07.233 DEBUG [4207]: Connecting to database... -- 10:25:07.233 DEBUG [4207]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:25:07.233 SQL [4207]: pgsql_db_connect() -- 10:25:07.238 DEBUG [4207]: Database connection successful -- 10:25:07.238 INFO [4207]: _SERVER found -- 10:25:07.238 INFO [4207]: REMOTE_ADDR = 192.168.1.13 -- 10:25:07.238 INFO [4207]: SERVER_NAME = oameye.works.coregrade.com -- 10:25:07.238 INFO [4207]: QUERY_STRING = /.env.applelama -- 10:25:07.238 INFO [4207]: HTTP_X_FORWARDED_FOR = 185.234.217.32 -- 10:25:07.254 INFO [4207]: COREGRADE is stopping... -- 10:25:07.254 DEBUG [4207]: Closing database connection -- 10:25:07.254 SQL [4207]: pgsql_close() -- 10:25:07.742 INFO [22839]: COREGRADE is starting... -- 10:25:07.742 INFO [22839]: Version from config: 1.0 -- 10:25:07.742 DEBUG [22839]: Connecting to database... -- 10:25:07.742 DEBUG [22839]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:25:07.742 SQL [22839]: pgsql_db_connect() -- 10:25:07.746 DEBUG [22839]: Database connection successful -- 10:25:07.746 INFO [22839]: _SERVER found -- 10:25:07.746 INFO [22839]: REMOTE_ADDR = 192.168.1.13 -- 10:25:07.746 INFO [22839]: SERVER_NAME = oameye.works.coregrade.com -- 10:25:07.746 INFO [22839]: QUERY_STRING = /.env -- 10:25:07.746 INFO [22839]: HTTP_X_FORWARDED_FOR = 185.234.217.32 -- 10:25:07.761 INFO [22839]: COREGRADE is stopping... -- 10:25:07.761 DEBUG [22839]: Closing database connection -- 10:25:07.761 SQL [22839]: pgsql_close() -- 17:22:07.323 INFO [24638]: COREGRADE is starting... -- 17:22:07.324 INFO [24638]: Version from config: 1.0 -- 17:22:07.324 DEBUG [24638]: Connecting to database... -- 17:22:07.324 DEBUG [24638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:22:07.324 SQL [24638]: pgsql_db_connect() -- 17:22:07.328 DEBUG [24638]: Database connection successful -- 17:22:07.328 INFO [24638]: _SERVER found -- 17:22:07.328 INFO [24638]: REMOTE_ADDR = 192.168.1.13 -- 17:22:07.328 INFO [24638]: SERVER_NAME = oameye.works.coregrade.com -- 17:22:07.328 INFO [24638]: QUERY_STRING = -- 17:22:07.328 INFO [24638]: HTTP_X_FORWARDED_FOR = 169.197.108.38 -- 17:22:07.365 INFO [24638]: COREGRADE is stopping... -- 17:22:07.365 DEBUG [24638]: Closing database connection -- 17:22:07.365 SQL [24638]: pgsql_close() -- 17:45:48.706 INFO [24653]: COREGRADE is starting... -- 17:45:48.706 INFO [24653]: Version from config: 1.0 -- 17:45:48.706 DEBUG [24653]: Connecting to database... -- 17:45:48.706 DEBUG [24653]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:48.706 SQL [24653]: pgsql_db_connect() -- 17:45:48.711 DEBUG [24653]: Database connection successful -- 17:45:48.711 INFO [24653]: _SERVER found -- 17:45:48.711 INFO [24653]: REMOTE_ADDR = 192.168.1.13 -- 17:45:48.711 INFO [24653]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:45:48.711 INFO [24653]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371 -- 17:45:48.711 INFO [24653]: QUERY_STRING = /auth -- 17:45:48.711 INFO [24653]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:48.752 INFO [24653]: COREGRADE is stopping... -- 17:45:48.752 DEBUG [24653]: Closing database connection -- 17:45:48.752 SQL [24653]: pgsql_close() -- 17:45:49.484 INFO [24653]: COREGRADE is starting... -- 17:45:49.484 INFO [24653]: Version from config: 1.0 -- 17:45:49.484 DEBUG [24653]: Connecting to database... -- 17:45:49.484 DEBUG [24653]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:49.484 SQL [24653]: pgsql_db_connect() -- 17:45:49.488 DEBUG [24653]: Database connection successful -- 17:45:49.488 INFO [24653]: _SERVER found -- 17:45:49.488 INFO [24653]: REMOTE_ADDR = 192.168.1.13 -- 17:45:49.488 INFO [24653]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:45:49.488 INFO [24653]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; ci_session=e7nnigkibel6unmmhji5reuvnneek5ea -- 17:45:49.488 INFO [24653]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:45:49.488 INFO [24653]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:49.500 INFO [24653]: COREGRADE is stopping... -- 17:45:49.500 DEBUG [24653]: Closing database connection -- 17:45:49.500 SQL [24653]: pgsql_close() -- 17:45:50.451 INFO [24653]: COREGRADE is starting... -- 17:45:50.451 INFO [24653]: Version from config: 1.0 -- 17:45:50.451 DEBUG [24653]: Connecting to database... -- 17:45:50.451 DEBUG [24653]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:45:50.451 SQL [24653]: pgsql_db_connect() -- 17:45:50.455 DEBUG [24653]: Database connection successful -- 17:45:50.455 INFO [24653]: _SERVER found -- 17:45:50.455 INFO [24653]: REMOTE_ADDR = 192.168.1.13 -- 17:45:50.455 INFO [24653]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:45:50.455 INFO [24653]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; ci_session=e7nnigkibel6unmmhji5reuvnneek5ea -- 17:45:50.455 INFO [24653]: QUERY_STRING = /assets2/data/locales/en.json -- 17:45:50.455 INFO [24653]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:45:50.467 INFO [24653]: COREGRADE is stopping... -- 17:45:50.467 DEBUG [24653]: Closing database connection -- 17:45:50.467 SQL [24653]: pgsql_close() -- 17:46:06.469 INFO [22841]: COREGRADE is starting... -- 17:46:06.469 INFO [22841]: Version from config: 1.0 -- 17:46:06.469 DEBUG [22841]: Connecting to database... -- 17:46:06.469 DEBUG [22841]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:06.469 SQL [22841]: pgsql_db_connect() -- 17:46:06.473 DEBUG [22841]: Database connection successful -- 17:46:06.473 INFO [22841]: _SERVER found -- 17:46:06.473 INFO [22841]: REMOTE_ADDR = 192.168.1.13 -- 17:46:06.473 INFO [22841]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:46:06.473 INFO [22841]: HTTP_COOKIE = ci_session=e7nnigkibel6unmmhji5reuvnneek5ea; _ga=GA1.2.1126635332.1581100371 -- 17:46:06.473 INFO [22841]: QUERY_STRING = /auth -- 17:46:06.473 INFO [22841]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:06.507 INFO [22841]: COREGRADE is stopping... -- 17:46:06.507 DEBUG [22841]: Closing database connection -- 17:46:06.507 SQL [22841]: pgsql_close() -- 17:46:06.657 INFO [22841]: COREGRADE is starting... -- 17:46:06.657 INFO [22841]: Version from config: 1.0 -- 17:46:06.657 DEBUG [22841]: Connecting to database... -- 17:46:06.657 DEBUG [22841]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:06.657 SQL [22841]: pgsql_db_connect() -- 17:46:06.661 DEBUG [22841]: Database connection successful -- 17:46:06.661 INFO [22841]: _SERVER found -- 17:46:06.661 INFO [22841]: REMOTE_ADDR = 192.168.1.13 -- 17:46:06.661 INFO [22841]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:46:06.661 INFO [22841]: HTTP_COOKIE = ci_session=e7nnigkibel6unmmhji5reuvnneek5ea; _ga=GA1.2.1126635332.1581100371 -- 17:46:06.661 INFO [22841]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:46:06.661 INFO [22841]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:06.672 INFO [22841]: COREGRADE is stopping... -- 17:46:06.673 DEBUG [22841]: Closing database connection -- 17:46:06.673 SQL [22841]: pgsql_close() -- 17:46:07.248 INFO [22841]: COREGRADE is starting... -- 17:46:07.248 INFO [22841]: Version from config: 1.0 -- 17:46:07.248 DEBUG [22841]: Connecting to database... -- 17:46:07.248 DEBUG [22841]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:07.248 SQL [22841]: pgsql_db_connect() -- 17:46:07.252 DEBUG [22841]: Database connection successful -- 17:46:07.252 INFO [22841]: _SERVER found -- 17:46:07.252 INFO [22841]: REMOTE_ADDR = 192.168.1.13 -- 17:46:07.252 INFO [22841]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:46:07.252 INFO [22841]: HTTP_COOKIE = ci_session=e7nnigkibel6unmmhji5reuvnneek5ea; _ga=GA1.2.1126635332.1581100371 -- 17:46:07.252 INFO [22841]: QUERY_STRING = /assets2/data/locales/en.json -- 17:46:07.252 INFO [22841]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:46:07.264 INFO [22841]: COREGRADE is stopping... -- 17:46:07.264 DEBUG [22841]: Closing database connection -- 17:46:07.264 SQL [22841]: pgsql_close() -- 20:14:27.330 INFO [11823]: COREGRADE is starting... -- 20:14:27.330 INFO [11823]: Version from config: 1.0 -- 20:14:27.330 DEBUG [11823]: Connecting to database... -- 20:14:27.330 DEBUG [11823]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:14:27.330 SQL [11823]: pgsql_db_connect() -- 20:14:27.335 DEBUG [11823]: Database connection successful -- 20:14:27.335 INFO [11823]: _SERVER found -- 20:14:27.335 INFO [11823]: REMOTE_ADDR = 192.168.1.13 -- 20:14:27.335 INFO [11823]: SERVER_NAME = oameye.works.coregrade.com -- 20:14:27.335 INFO [11823]: QUERY_STRING = /robots.txt -- 20:14:27.335 INFO [11823]: HTTP_X_FORWARDED_FOR = 66.249.64.184 -- 20:14:27.352 INFO [11823]: COREGRADE is stopping... -- 20:14:27.352 DEBUG [11823]: Closing database connection -- 20:14:27.352 SQL [11823]: pgsql_close() -- 20:14:27.455 INFO [11823]: COREGRADE is starting... -- 20:14:27.455 INFO [11823]: Version from config: 1.0 -- 20:14:27.455 DEBUG [11823]: Connecting to database... -- 20:14:27.455 DEBUG [11823]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:14:27.455 SQL [11823]: pgsql_db_connect() -- 20:14:27.460 DEBUG [11823]: Database connection successful -- 20:14:27.460 INFO [11823]: _SERVER found -- 20:14:27.460 INFO [11823]: REMOTE_ADDR = 192.168.1.13 -- 20:14:27.460 INFO [11823]: SERVER_NAME = oameye.works.coregrade.com -- 20:14:27.460 INFO [11823]: QUERY_STRING = -- 20:14:27.460 INFO [11823]: HTTP_X_FORWARDED_FOR = 66.249.64.180 -- 20:14:27.506 INFO [11823]: COREGRADE is stopping... -- 20:14:27.506 DEBUG [11823]: Closing database connection -- 20:14:27.506 SQL [11823]: pgsql_close() -- 00:31:32.844 INFO [24640]: COREGRADE is starting... -- 00:31:32.844 INFO [24640]: Version from config: 1.0 -- 00:31:32.844 DEBUG [24640]: Connecting to database... -- 00:31:32.844 DEBUG [24640]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:31:32.844 SQL [24640]: pgsql_db_connect() -- 00:31:32.849 DEBUG [24640]: Database connection successful -- 00:31:32.849 INFO [24640]: _SERVER found -- 00:31:32.849 INFO [24640]: REMOTE_ADDR = 192.168.1.13 -- 00:31:32.849 INFO [24640]: SERVER_NAME = oameye.works.coregrade.com -- 00:31:32.849 INFO [24640]: QUERY_STRING = -- 00:31:32.849 INFO [24640]: HTTP_X_FORWARDED_FOR = 207.154.254.15 -- 00:31:32.887 INFO [24640]: COREGRADE is stopping... -- 00:31:32.887 DEBUG [24640]: Closing database connection -- 00:31:32.887 SQL [24640]: pgsql_close() -- 02:06:18.422 INFO [24638]: COREGRADE is starting... -- 02:06:18.422 INFO [24638]: Version from config: 1.0 -- 02:06:18.422 DEBUG [24638]: Connecting to database... -- 02:06:18.422 DEBUG [24638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:06:18.422 SQL [24638]: pgsql_db_connect() -- 02:06:18.427 DEBUG [24638]: Database connection successful -- 02:06:18.427 INFO [24638]: _SERVER found -- 02:06:18.427 INFO [24638]: REMOTE_ADDR = 192.168.1.13 -- 02:06:18.427 INFO [24638]: SERVER_NAME = oameye.works.coregrade.com -- 02:06:18.427 INFO [24638]: QUERY_STRING = -- 02:06:18.427 INFO [24638]: HTTP_X_FORWARDED_FOR = 171.67.70.112 -- 02:06:18.463 INFO [24638]: COREGRADE is stopping... -- 02:06:18.463 DEBUG [24638]: Closing database connection -- 02:06:18.463 SQL [24638]: pgsql_close() -- 04:21:21.998 INFO [11818]: COREGRADE is starting... -- 04:21:21.998 INFO [11818]: Version from config: 1.0 -- 04:21:21.998 DEBUG [11818]: Connecting to database... -- 04:21:21.998 DEBUG [11818]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:21:21.999 SQL [11818]: pgsql_db_connect() -- 04:21:22.004 DEBUG [11818]: Database connection successful -- 04:21:22.004 INFO [11818]: _SERVER found -- 04:21:22.004 INFO [11818]: REMOTE_ADDR = 192.168.1.13 -- 04:21:22.004 INFO [11818]: SERVER_NAME = oameye.works.coregrade.com -- 04:21:22.004 INFO [11818]: QUERY_STRING = /solr/admin/info/system -- 04:21:22.004 INFO [11818]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 04:21:22.020 INFO [11818]: COREGRADE is stopping... -- 04:21:22.020 DEBUG [11818]: Closing database connection -- 04:21:22.020 SQL [11818]: pgsql_close() -- 04:47:41.625 INFO [24652]: COREGRADE is starting... -- 04:47:41.626 INFO [24652]: Version from config: 1.0 -- 04:47:41.626 DEBUG [24652]: Connecting to database... -- 04:47:41.626 DEBUG [24652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:47:41.626 SQL [24652]: pgsql_db_connect() -- 04:47:41.630 DEBUG [24652]: Database connection successful -- 04:47:41.630 INFO [24652]: _SERVER found -- 04:47:41.630 INFO [24652]: REMOTE_ADDR = 192.168.1.13 -- 04:47:41.630 INFO [24652]: SERVER_NAME = oameye.works.coregrade.com -- 04:47:41.630 INFO [24652]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 04:47:41.630 INFO [24652]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 04:47:41.667 INFO [24652]: COREGRADE is stopping... -- 04:47:41.667 DEBUG [24652]: Closing database connection -- 04:47:41.667 SQL [24652]: pgsql_close() -- 05:07:13.794 INFO [4216]: COREGRADE is starting... -- 05:07:13.794 INFO [4216]: Version from config: 1.0 -- 05:07:13.794 DEBUG [4216]: Connecting to database... -- 05:07:13.794 DEBUG [4216]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:07:13.794 SQL [4216]: pgsql_db_connect() -- 05:07:13.799 DEBUG [4216]: Database connection successful -- 05:07:13.799 INFO [4216]: _SERVER found -- 05:07:13.799 INFO [4216]: REMOTE_ADDR = 192.168.1.13 -- 05:07:13.799 INFO [4216]: SERVER_NAME = oameye.works.coregrade.com -- 05:07:13.799 INFO [4216]: QUERY_STRING = /.well-known/acme-challenge/-MdUYgob39eMX1soOAPVtm6E8iw-ZtHZyyfzwFaY9y4 -- 05:07:13.799 INFO [4216]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 05:07:13.812 INFO [4216]: COREGRADE is stopping... -- 05:07:13.812 DEBUG [4216]: Closing database connection -- 05:07:13.812 SQL [4216]: pgsql_close() -- 05:07:14.028 INFO [22841]: COREGRADE is starting... -- 05:07:14.028 INFO [22841]: Version from config: 1.0 -- 05:07:14.028 DEBUG [22841]: Connecting to database... -- 05:07:14.028 DEBUG [22841]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:07:14.028 SQL [22841]: pgsql_db_connect() -- 05:07:14.032 DEBUG [22841]: Database connection successful -- 05:07:14.032 INFO [22841]: _SERVER found -- 05:07:14.032 INFO [22841]: REMOTE_ADDR = 192.168.1.13 -- 05:07:14.032 INFO [22841]: SERVER_NAME = oameye.works.coregrade.com -- 05:07:14.032 INFO [22841]: QUERY_STRING = /.well-known/acme-challenge/-MdUYgob39eMX1soOAPVtm6E8iw-ZtHZyyfzwFaY9y4 -- 05:07:14.032 INFO [22841]: HTTP_X_FORWARDED_FOR = 34.209.232.166 -- 05:07:14.045 INFO [22841]: COREGRADE is stopping... -- 05:07:14.045 DEBUG [22841]: Closing database connection -- 05:07:14.045 SQL [22841]: pgsql_close() -- 05:07:14.150 INFO [11828]: COREGRADE is starting... -- 05:07:14.150 INFO [11828]: Version from config: 1.0 -- 05:07:14.151 DEBUG [11828]: Connecting to database... -- 05:07:14.151 DEBUG [11828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:07:14.151 SQL [11828]: pgsql_db_connect() -- 05:07:14.154 DEBUG [11828]: Database connection successful -- 05:07:14.154 INFO [11828]: _SERVER found -- 05:07:14.154 INFO [11828]: REMOTE_ADDR = 192.168.1.13 -- 05:07:14.154 INFO [11828]: SERVER_NAME = oameye.works.coregrade.com -- 05:07:14.154 INFO [11828]: QUERY_STRING = /.well-known/acme-challenge/-MdUYgob39eMX1soOAPVtm6E8iw-ZtHZyyfzwFaY9y4 -- 05:07:14.154 INFO [11828]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 05:07:14.169 INFO [11828]: COREGRADE is stopping... -- 05:07:14.169 DEBUG [11828]: Closing database connection -- 05:07:14.169 SQL [11828]: pgsql_close() -- 05:12:15.246 INFO [11829]: COREGRADE is starting... -- 05:12:15.246 INFO [11829]: Version from config: 1.0 -- 05:12:15.246 DEBUG [11829]: Connecting to database... -- 05:12:15.246 DEBUG [11829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:12:15.246 SQL [11829]: pgsql_db_connect() -- 05:12:15.251 DEBUG [11829]: Database connection successful -- 05:12:15.251 INFO [11829]: _SERVER found -- 05:12:15.251 INFO [11829]: REMOTE_ADDR = 192.168.1.13 -- 05:12:15.251 INFO [11829]: SERVER_NAME = oameye.works.coregrade.com -- 05:12:15.251 INFO [11829]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 05:12:15.251 INFO [11829]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 05:12:15.265 INFO [11829]: COREGRADE is stopping... -- 05:12:15.265 DEBUG [11829]: Closing database connection -- 05:12:15.265 SQL [11829]: pgsql_close() -- 05:25:24.662 INFO [24640]: COREGRADE is starting... -- 05:25:24.662 INFO [24640]: Version from config: 1.0 -- 05:25:24.662 DEBUG [24640]: Connecting to database... -- 05:25:24.662 DEBUG [24640]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:25:24.662 SQL [24640]: pgsql_db_connect() -- 05:25:24.667 DEBUG [24640]: Database connection successful -- 05:25:24.667 INFO [24640]: _SERVER found -- 05:25:24.667 INFO [24640]: REMOTE_ADDR = 192.168.1.13 -- 05:25:24.667 INFO [24640]: SERVER_NAME = oameye.works.coregrade.com -- 05:25:24.667 INFO [24640]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 05:25:24.667 INFO [24640]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 05:25:24.703 INFO [24640]: COREGRADE is stopping... -- 05:25:24.703 DEBUG [24640]: Closing database connection -- 05:25:24.703 SQL [24640]: pgsql_close() -- 09:15:27.346 INFO [24638]: COREGRADE is starting... -- 09:15:27.346 INFO [24638]: Version from config: 1.0 -- 09:15:27.346 DEBUG [24638]: Connecting to database... -- 09:15:27.346 DEBUG [24638]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:15:27.346 SQL [24638]: pgsql_db_connect() -- 09:15:27.351 DEBUG [24638]: Database connection successful -- 09:15:27.351 INFO [24638]: _SERVER found -- 09:15:27.351 INFO [24638]: REMOTE_ADDR = 192.168.1.13 -- 09:15:27.351 INFO [24638]: SERVER_NAME = oameye.works.coregrade.com -- 09:15:27.351 INFO [24638]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 09:15:27.351 INFO [24638]: QUERY_STRING = -- 09:15:27.351 INFO [24638]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:15:27.389 INFO [24638]: COREGRADE is stopping... -- 09:15:27.389 DEBUG [24638]: Closing database connection -- 09:15:27.389 SQL [24638]: pgsql_close() -- 09:15:28.249 INFO [11818]: COREGRADE is starting... -- 09:15:28.249 INFO [11818]: Version from config: 1.0 -- 09:15:28.249 DEBUG [11818]: Connecting to database... -- 09:15:28.249 DEBUG [11818]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:15:28.249 SQL [11818]: pgsql_db_connect() -- 09:15:28.253 DEBUG [11818]: Database connection successful -- 09:15:28.253 INFO [11818]: _SERVER found -- 09:15:28.253 INFO [11818]: REMOTE_ADDR = 192.168.1.13 -- 09:15:28.253 INFO [11818]: SERVER_NAME = oameye.works.coregrade.com -- 09:15:28.253 INFO [11818]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=5usbkpovsdr49sn8fpircdbqhi28e6ed; _gid=GA1.2.1337171926.1584191728; _gat_gtag_UA_54829827_2=1 -- 09:15:28.253 INFO [11818]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:15:28.253 INFO [11818]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:15:28.266 INFO [11818]: COREGRADE is stopping... -- 09:15:28.266 DEBUG [11818]: Closing database connection -- 09:15:28.266 SQL [11818]: pgsql_close() -- 09:15:28.273 INFO [4216]: COREGRADE is starting... -- 09:15:28.274 INFO [4216]: Version from config: 1.0 -- 09:15:28.274 DEBUG [4216]: Connecting to database... -- 09:15:28.274 DEBUG [4216]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:15:28.274 SQL [4216]: pgsql_db_connect() -- 09:15:28.278 DEBUG [4216]: Database connection successful -- 09:15:28.278 INFO [4216]: _SERVER found -- 09:15:28.278 INFO [4216]: REMOTE_ADDR = 192.168.1.13 -- 09:15:28.278 INFO [4216]: SERVER_NAME = oameye.works.coregrade.com -- 09:15:28.278 INFO [4216]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=5usbkpovsdr49sn8fpircdbqhi28e6ed; _gid=GA1.2.1337171926.1584191728; _gat_gtag_UA_54829827_2=1 -- 09:15:28.278 INFO [4216]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:15:28.278 INFO [4216]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:15:28.290 INFO [4216]: COREGRADE is stopping... -- 09:15:28.290 DEBUG [4216]: Closing database connection -- 09:15:28.290 SQL [4216]: pgsql_close() -- 10:30:18.439 INFO [22841]: COREGRADE is starting... -- 10:30:18.439 INFO [22841]: Version from config: 1.0 -- 10:30:18.439 DEBUG [22841]: Connecting to database... -- 10:30:18.439 DEBUG [22841]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:30:18.440 SQL [22841]: pgsql_db_connect() -- 10:30:18.444 DEBUG [22841]: Database connection successful -- 10:30:18.444 INFO [22841]: _SERVER found -- 10:30:18.444 INFO [22841]: REMOTE_ADDR = 192.168.1.13 -- 10:30:18.444 INFO [22841]: SERVER_NAME = oameye.works.coregrade.com -- 10:30:18.444 INFO [22841]: QUERY_STRING = -- 10:30:18.444 INFO [22841]: HTTP_X_FORWARDED_FOR = 171.67.70.81 -- 10:30:18.481 INFO [22841]: COREGRADE is stopping... -- 10:30:18.481 DEBUG [22841]: Closing database connection -- 10:30:18.481 SQL [22841]: pgsql_close() -- 15:48:12.369 INFO [22840]: COREGRADE is starting... -- 15:48:12.370 INFO [22840]: Version from config: 1.0 -- 15:48:12.370 DEBUG [22840]: Connecting to database... -- 15:48:12.370 DEBUG [22840]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:48:12.370 SQL [22840]: pgsql_db_connect() -- 15:48:12.374 DEBUG [22840]: Database connection successful -- 15:48:12.374 INFO [22840]: _SERVER found -- 15:48:12.374 INFO [22840]: REMOTE_ADDR = 192.168.1.13 -- 15:48:12.374 INFO [22840]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:48:12.374 INFO [22840]: QUERY_STRING = /.env.applelama -- 15:48:12.374 INFO [22840]: HTTP_X_FORWARDED_FOR = 185.234.217.32 -- 15:48:12.389 INFO [22840]: COREGRADE is stopping... -- 15:48:12.389 DEBUG [22840]: Closing database connection -- 15:48:12.389 SQL [22840]: pgsql_close() -- 15:48:12.826 INFO [11823]: COREGRADE is starting... -- 15:48:12.827 INFO [11823]: Version from config: 1.0 -- 15:48:12.827 DEBUG [11823]: Connecting to database... -- 15:48:12.827 DEBUG [11823]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:48:12.827 SQL [11823]: pgsql_db_connect() -- 15:48:12.831 DEBUG [11823]: Database connection successful -- 15:48:12.831 INFO [11823]: _SERVER found -- 15:48:12.831 INFO [11823]: REMOTE_ADDR = 192.168.1.13 -- 15:48:12.831 INFO [11823]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:48:12.831 INFO [11823]: QUERY_STRING = /.env -- 15:48:12.831 INFO [11823]: HTTP_X_FORWARDED_FOR = 185.234.217.32 -- 15:48:12.846 INFO [11823]: COREGRADE is stopping... -- 15:48:12.846 DEBUG [11823]: Closing database connection -- 15:48:12.846 SQL [11823]: pgsql_close() -- 01:01:26.496 INFO [11829]: COREGRADE is starting... -- 01:01:26.497 INFO [11829]: Version from config: 1.0 -- 01:01:26.497 DEBUG [11829]: Connecting to database... -- 01:01:26.497 DEBUG [11829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:01:26.497 SQL [11829]: pgsql_db_connect() -- 01:01:26.501 DEBUG [11829]: Database connection successful -- 01:01:26.501 INFO [11829]: _SERVER found -- 01:01:26.501 INFO [11829]: REMOTE_ADDR = 192.168.1.13 -- 01:01:26.501 INFO [11829]: SERVER_NAME = oameye.works.coregrade.com -- 01:01:26.501 INFO [11829]: QUERY_STRING = -- 01:01:26.501 INFO [11829]: HTTP_X_FORWARDED_FOR = 169.197.108.42 -- 01:01:26.547 INFO [11829]: COREGRADE is stopping... -- 01:01:26.547 DEBUG [11829]: Closing database connection -- 01:01:26.547 SQL [11829]: pgsql_close() -- 03:08:32.663 INFO [24640]: COREGRADE is starting... -- 03:08:32.664 INFO [24640]: Version from config: 1.0 -- 03:08:32.664 DEBUG [24640]: Connecting to database... -- 03:08:32.664 DEBUG [24640]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:32.664 SQL [24640]: pgsql_db_connect() -- 03:08:32.669 DEBUG [24640]: Database connection successful -- 03:08:32.669 INFO [24640]: _SERVER found -- 03:08:32.669 INFO [24640]: REMOTE_ADDR = 192.168.1.13 -- 03:08:32.669 INFO [24640]: SERVER_NAME = oameye.works.coregrade.com -- 03:08:32.669 INFO [24640]: QUERY_STRING = /.well-known/acme-challenge/xVXCp0HMfkSJz8KTiJtTzzFdXmIibHE0QF7-UwzpAmg -- 03:08:32.669 INFO [24640]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 03:08:32.683 INFO [24640]: COREGRADE is stopping... -- 03:08:32.683 DEBUG [24640]: Closing database connection -- 03:08:32.683 SQL [24640]: pgsql_close() -- 03:08:33.124 INFO [24640]: COREGRADE is starting... -- 03:08:33.124 INFO [24640]: Version from config: 1.0 -- 03:08:33.124 DEBUG [24640]: Connecting to database... -- 03:08:33.124 DEBUG [24640]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:33.124 SQL [24640]: pgsql_db_connect() -- 03:08:33.137 INFO [24652]: COREGRADE is starting... -- 03:08:33.137 INFO [24652]: Version from config: 1.0 -- 03:08:33.137 DEBUG [24652]: Connecting to database... -- 03:08:33.137 DEBUG [24652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:33.137 SQL [24652]: pgsql_db_connect() -- 03:08:33.128 DEBUG [24640]: Database connection successful -- 03:08:33.128 INFO [24640]: _SERVER found -- 03:08:33.128 INFO [24640]: REMOTE_ADDR = 192.168.1.13 -- 03:08:33.128 INFO [24640]: SERVER_NAME = oameye.works.coregrade.com -- 03:08:33.128 INFO [24640]: QUERY_STRING = /.well-known/acme-challenge/xVXCp0HMfkSJz8KTiJtTzzFdXmIibHE0QF7-UwzpAmg -- 03:08:33.128 INFO [24640]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 03:08:33.140 INFO [24640]: COREGRADE is stopping... -- 03:08:33.140 DEBUG [24640]: Closing database connection -- 03:08:33.140 SQL [24640]: pgsql_close() -- 03:08:33.142 DEBUG [24652]: Database connection successful -- 03:08:33.142 INFO [24652]: _SERVER found -- 03:08:33.142 INFO [24652]: REMOTE_ADDR = 192.168.1.13 -- 03:08:33.142 INFO [24652]: SERVER_NAME = oameye.works.coregrade.com -- 03:08:33.142 INFO [24652]: QUERY_STRING = /.well-known/acme-challenge/xVXCp0HMfkSJz8KTiJtTzzFdXmIibHE0QF7-UwzpAmg -- 03:08:33.142 INFO [24652]: HTTP_X_FORWARDED_FOR = 34.222.229.130 -- 03:08:33.156 INFO [24652]: COREGRADE is stopping... -- 03:08:33.156 DEBUG [24652]: Closing database connection -- 03:08:33.156 SQL [24652]: pgsql_close() -- 05:22:26.189 INFO [20321]: COREGRADE is starting... -- 05:22:26.190 INFO [20321]: Version from config: 1.0 -- 05:22:26.190 DEBUG [20321]: Connecting to database... -- 05:22:26.190 DEBUG [20321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:22:26.190 SQL [20321]: pgsql_db_connect() -- 05:22:26.195 DEBUG [20321]: Database connection successful -- 05:22:26.195 INFO [20321]: _SERVER found -- 05:22:26.195 INFO [20321]: REMOTE_ADDR = 192.168.1.13 -- 05:22:26.195 INFO [20321]: SERVER_NAME = oameye.works.coregrade.com -- 05:22:26.195 INFO [20321]: QUERY_STRING = -- 05:22:26.195 INFO [20321]: HTTP_X_FORWARDED_FOR = 45.195.146.140 -- 05:22:26.248 INFO [20321]: COREGRADE is stopping... -- 05:22:26.248 DEBUG [20321]: Closing database connection -- 05:22:26.248 SQL [20321]: pgsql_close() -- 08:03:37.716 INFO [20322]: COREGRADE is starting... -- 08:03:37.716 INFO [20322]: Version from config: 1.0 -- 08:03:37.716 DEBUG [20322]: Connecting to database... -- 08:03:37.716 DEBUG [20322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:03:37.716 SQL [20322]: pgsql_db_connect() -- 08:03:37.722 DEBUG [20322]: Database connection successful -- 08:03:37.722 INFO [20322]: _SERVER found -- 08:03:37.722 INFO [20322]: REMOTE_ADDR = 192.168.1.13 -- 08:03:37.722 INFO [20322]: SERVER_NAME = oameye.works.coregrade.com -- 08:03:37.722 INFO [20322]: QUERY_STRING = /TP/public/index.php -- 08:03:37.722 INFO [20322]: HTTP_X_FORWARDED_FOR = 119.29.174.199 -- 08:03:37.741 INFO [20322]: COREGRADE is stopping... -- 08:03:37.741 DEBUG [20322]: Closing database connection -- 08:03:37.741 SQL [20322]: pgsql_close() -- 08:03:39.506 INFO [20322]: COREGRADE is starting... -- 08:03:39.506 INFO [20322]: Version from config: 1.0 -- 08:03:39.506 DEBUG [20322]: Connecting to database... -- 08:03:39.506 DEBUG [20322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:03:39.506 SQL [20322]: pgsql_db_connect() -- 08:03:39.511 DEBUG [20322]: Database connection successful -- 08:03:39.511 INFO [20322]: _SERVER found -- 08:03:39.511 INFO [20322]: REMOTE_ADDR = 192.168.1.13 -- 08:03:39.511 INFO [20322]: SERVER_NAME = oameye.works.coregrade.com -- 08:03:39.511 INFO [20322]: QUERY_STRING = /TP/index.php -- 08:03:39.511 INFO [20322]: HTTP_X_FORWARDED_FOR = 119.29.174.199 -- 08:03:39.522 INFO [20322]: COREGRADE is stopping... -- 08:03:39.522 DEBUG [20322]: Closing database connection -- 08:03:39.522 SQL [20322]: pgsql_close() -- 08:03:42.328 INFO [20323]: COREGRADE is starting... -- 08:03:42.328 INFO [20323]: Version from config: 1.0 -- 08:03:42.328 DEBUG [20323]: Connecting to database... -- 08:03:42.328 DEBUG [20323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:03:42.328 SQL [20323]: pgsql_db_connect() -- 08:03:42.333 DEBUG [20323]: Database connection successful -- 08:03:42.333 INFO [20323]: _SERVER found -- 08:03:42.333 INFO [20323]: REMOTE_ADDR = 192.168.1.13 -- 08:03:42.333 INFO [20323]: SERVER_NAME = oameye.works.coregrade.com -- 08:03:42.333 INFO [20323]: QUERY_STRING = /thinkphp/html/public/index.php -- 08:03:42.333 INFO [20323]: HTTP_X_FORWARDED_FOR = 119.29.174.199 -- 08:03:42.351 INFO [20323]: COREGRADE is stopping... -- 08:03:42.351 DEBUG [20323]: Closing database connection -- 08:03:42.351 SQL [20323]: pgsql_close() -- 08:03:46.965 INFO [20324]: COREGRADE is starting... -- 08:03:46.965 INFO [20324]: Version from config: 1.0 -- 08:03:46.965 DEBUG [20324]: Connecting to database... -- 08:03:46.965 DEBUG [20324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:03:46.965 SQL [20324]: pgsql_db_connect() -- 08:03:46.970 DEBUG [20324]: Database connection successful -- 08:03:46.970 INFO [20324]: _SERVER found -- 08:03:46.970 INFO [20324]: REMOTE_ADDR = 192.168.1.13 -- 08:03:46.970 INFO [20324]: SERVER_NAME = oameye.works.coregrade.com -- 08:03:46.970 INFO [20324]: QUERY_STRING = /html/public/index.php -- 08:03:46.970 INFO [20324]: HTTP_X_FORWARDED_FOR = 119.29.174.199 -- 08:03:46.985 INFO [20324]: COREGRADE is stopping... -- 08:03:46.985 DEBUG [20324]: Closing database connection -- 08:03:46.985 SQL [20324]: pgsql_close() -- 08:03:49.338 INFO [20325]: COREGRADE is starting... -- 08:03:49.338 INFO [20325]: Version from config: 1.0 -- 08:03:49.338 DEBUG [20325]: Connecting to database... -- 08:03:49.338 DEBUG [20325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:03:49.338 SQL [20325]: pgsql_db_connect() -- 08:03:49.343 DEBUG [20325]: Database connection successful -- 08:03:49.343 INFO [20325]: _SERVER found -- 08:03:49.343 INFO [20325]: REMOTE_ADDR = 192.168.1.13 -- 08:03:49.343 INFO [20325]: SERVER_NAME = oameye.works.coregrade.com -- 08:03:49.343 INFO [20325]: QUERY_STRING = /public/index.php -- 08:03:49.343 INFO [20325]: HTTP_X_FORWARDED_FOR = 119.29.174.199 -- 08:03:49.359 INFO [20325]: COREGRADE is stopping... -- 08:03:49.359 DEBUG [20325]: Closing database connection -- 08:03:49.359 SQL [20325]: pgsql_close() -- 08:03:56.276 INFO [20823]: COREGRADE is starting... -- 08:03:56.276 INFO [20823]: Version from config: 1.0 -- 08:03:56.276 DEBUG [20823]: Connecting to database... -- 08:03:56.276 DEBUG [20823]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:03:56.276 SQL [20823]: pgsql_db_connect() -- 08:03:56.281 DEBUG [20823]: Database connection successful -- 08:03:56.281 INFO [20823]: _SERVER found -- 08:03:56.281 INFO [20823]: REMOTE_ADDR = 192.168.1.13 -- 08:03:56.281 INFO [20823]: SERVER_NAME = oameye.works.coregrade.com -- 08:03:56.281 INFO [20823]: QUERY_STRING = -- 08:03:56.281 INFO [20823]: HTTP_X_FORWARDED_FOR = 119.29.174.199 -- 08:03:56.329 INFO [20823]: COREGRADE is stopping... -- 08:03:56.329 DEBUG [20823]: Closing database connection -- 08:03:56.329 SQL [20823]: pgsql_close() -- 11:16:10.341 INFO [21486]: COREGRADE is starting... -- 11:16:10.342 INFO [21486]: Version from config: 1.0 -- 11:16:10.342 DEBUG [21486]: Connecting to database... -- 11:16:10.342 DEBUG [21486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:16:10.342 SQL [21486]: pgsql_db_connect() -- 11:16:10.346 DEBUG [21486]: Database connection successful -- 11:16:10.346 INFO [21486]: _SERVER found -- 11:16:10.346 INFO [21486]: REMOTE_ADDR = 192.168.1.13 -- 11:16:10.346 INFO [21486]: SERVER_NAME = oameye.works.coregrade.com -- 11:16:10.346 INFO [21486]: QUERY_STRING = /TP/public/index.php -- 11:16:10.346 INFO [21486]: HTTP_X_FORWARDED_FOR = 114.118.31.36 -- 11:16:10.362 INFO [21486]: COREGRADE is stopping... -- 11:16:10.362 DEBUG [21486]: Closing database connection -- 11:16:10.362 SQL [21486]: pgsql_close() -- 11:16:12.320 INFO [20322]: COREGRADE is starting... -- 11:16:12.320 INFO [20322]: Version from config: 1.0 -- 11:16:12.320 DEBUG [20322]: Connecting to database... -- 11:16:12.320 DEBUG [20322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:16:12.320 SQL [20322]: pgsql_db_connect() -- 11:16:12.324 DEBUG [20322]: Database connection successful -- 11:16:12.324 INFO [20322]: _SERVER found -- 11:16:12.324 INFO [20322]: REMOTE_ADDR = 192.168.1.13 -- 11:16:12.324 INFO [20322]: SERVER_NAME = oameye.works.coregrade.com -- 11:16:12.324 INFO [20322]: QUERY_STRING = /TP/index.php -- 11:16:12.324 INFO [20322]: HTTP_X_FORWARDED_FOR = 114.118.31.36 -- 11:16:12.339 INFO [20322]: COREGRADE is stopping... -- 11:16:12.339 DEBUG [20322]: Closing database connection -- 11:16:12.339 SQL [20322]: pgsql_close() -- 11:16:14.785 INFO [20322]: COREGRADE is starting... -- 11:16:14.785 INFO [20322]: Version from config: 1.0 -- 11:16:14.785 DEBUG [20322]: Connecting to database... -- 11:16:14.785 DEBUG [20322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:16:14.785 SQL [20322]: pgsql_db_connect() -- 11:16:14.789 DEBUG [20322]: Database connection successful -- 11:16:14.789 INFO [20322]: _SERVER found -- 11:16:14.789 INFO [20322]: REMOTE_ADDR = 192.168.1.13 -- 11:16:14.789 INFO [20322]: SERVER_NAME = oameye.works.coregrade.com -- 11:16:14.789 INFO [20322]: QUERY_STRING = /thinkphp/html/public/index.php -- 11:16:14.789 INFO [20322]: HTTP_X_FORWARDED_FOR = 114.118.31.36 -- 11:16:14.800 INFO [20322]: COREGRADE is stopping... -- 11:16:14.800 DEBUG [20322]: Closing database connection -- 11:16:14.800 SQL [20322]: pgsql_close() -- 11:16:17.686 INFO [20322]: COREGRADE is starting... -- 11:16:17.687 INFO [20322]: Version from config: 1.0 -- 11:16:17.687 DEBUG [20322]: Connecting to database... -- 11:16:17.687 DEBUG [20322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:16:17.687 SQL [20322]: pgsql_db_connect() -- 11:16:17.691 DEBUG [20322]: Database connection successful -- 11:16:17.691 INFO [20322]: _SERVER found -- 11:16:17.691 INFO [20322]: REMOTE_ADDR = 192.168.1.13 -- 11:16:17.691 INFO [20322]: SERVER_NAME = oameye.works.coregrade.com -- 11:16:17.691 INFO [20322]: QUERY_STRING = /html/public/index.php -- 11:16:17.691 INFO [20322]: HTTP_X_FORWARDED_FOR = 114.118.31.36 -- 11:16:17.702 INFO [20322]: COREGRADE is stopping... -- 11:16:17.703 DEBUG [20322]: Closing database connection -- 11:16:17.703 SQL [20322]: pgsql_close() -- 11:16:21.829 INFO [20323]: COREGRADE is starting... -- 11:16:21.830 INFO [20323]: Version from config: 1.0 -- 11:16:21.830 DEBUG [20323]: Connecting to database... -- 11:16:21.830 DEBUG [20323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:16:21.830 SQL [20323]: pgsql_db_connect() -- 11:16:21.834 DEBUG [20323]: Database connection successful -- 11:16:21.834 INFO [20323]: _SERVER found -- 11:16:21.834 INFO [20323]: REMOTE_ADDR = 192.168.1.13 -- 11:16:21.834 INFO [20323]: SERVER_NAME = oameye.works.coregrade.com -- 11:16:21.834 INFO [20323]: QUERY_STRING = /public/index.php -- 11:16:21.834 INFO [20323]: HTTP_X_FORWARDED_FOR = 114.118.31.36 -- 11:16:21.848 INFO [20323]: COREGRADE is stopping... -- 11:16:21.848 DEBUG [20323]: Closing database connection -- 11:16:21.848 SQL [20323]: pgsql_close() -- 11:16:26.219 INFO [20324]: COREGRADE is starting... -- 11:16:26.219 INFO [20324]: Version from config: 1.0 -- 11:16:26.219 DEBUG [20324]: Connecting to database... -- 11:16:26.219 DEBUG [20324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:16:26.219 SQL [20324]: pgsql_db_connect() -- 11:16:26.223 DEBUG [20324]: Database connection successful -- 11:16:26.223 INFO [20324]: _SERVER found -- 11:16:26.223 INFO [20324]: REMOTE_ADDR = 192.168.1.13 -- 11:16:26.223 INFO [20324]: SERVER_NAME = oameye.works.coregrade.com -- 11:16:26.223 INFO [20324]: QUERY_STRING = /TP/html/public/index.php -- 11:16:26.223 INFO [20324]: HTTP_X_FORWARDED_FOR = 114.118.31.36 -- 11:16:26.235 INFO [20324]: COREGRADE is stopping... -- 11:16:26.235 DEBUG [20324]: Closing database connection -- 11:16:26.235 SQL [20324]: pgsql_close() -- 11:16:31.080 INFO [20325]: COREGRADE is starting... -- 11:16:31.080 INFO [20325]: Version from config: 1.0 -- 11:16:31.080 DEBUG [20325]: Connecting to database... -- 11:16:31.081 DEBUG [20325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:16:31.081 SQL [20325]: pgsql_db_connect() -- 11:16:31.084 DEBUG [20325]: Database connection successful -- 11:16:31.085 INFO [20325]: _SERVER found -- 11:16:31.085 INFO [20325]: REMOTE_ADDR = 192.168.1.13 -- 11:16:31.085 INFO [20325]: SERVER_NAME = oameye.works.coregrade.com -- 11:16:31.085 INFO [20325]: QUERY_STRING = /elrekt.php -- 11:16:31.085 INFO [20325]: HTTP_X_FORWARDED_FOR = 114.118.31.36 -- 11:16:31.098 INFO [20325]: COREGRADE is stopping... -- 11:16:31.098 DEBUG [20325]: Closing database connection -- 11:16:31.098 SQL [20325]: pgsql_close() -- 11:16:33.029 INFO [20325]: COREGRADE is starting... -- 11:16:33.029 INFO [20325]: Version from config: 1.0 -- 11:16:33.029 DEBUG [20325]: Connecting to database... -- 11:16:33.029 DEBUG [20325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:16:33.029 SQL [20325]: pgsql_db_connect() -- 11:16:33.033 DEBUG [20325]: Database connection successful -- 11:16:33.033 INFO [20325]: _SERVER found -- 11:16:33.033 INFO [20325]: REMOTE_ADDR = 192.168.1.13 -- 11:16:33.033 INFO [20325]: SERVER_NAME = oameye.works.coregrade.com -- 11:16:33.033 INFO [20325]: QUERY_STRING = -- 11:16:33.033 INFO [20325]: HTTP_X_FORWARDED_FOR = 114.118.31.36 -- 11:16:33.075 INFO [20325]: COREGRADE is stopping... -- 11:16:33.075 DEBUG [20325]: Closing database connection -- 11:16:33.075 SQL [20325]: pgsql_close() -- 11:16:35.908 INFO [20325]: COREGRADE is starting... -- 11:16:35.909 INFO [20325]: Version from config: 1.0 -- 11:16:35.909 DEBUG [20325]: Connecting to database... -- 11:16:35.909 DEBUG [20325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:16:35.909 SQL [20325]: pgsql_db_connect() -- 11:16:35.913 DEBUG [20325]: Database connection successful -- 11:16:35.913 INFO [20325]: _SERVER found -- 11:16:35.913 INFO [20325]: REMOTE_ADDR = 192.168.1.13 -- 11:16:35.913 INFO [20325]: SERVER_NAME = oameye.works.coregrade.com -- 11:16:35.913 INFO [20325]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 11:16:35.913 INFO [20325]: HTTP_X_FORWARDED_FOR = 114.118.31.36 -- 11:16:35.948 INFO [20325]: COREGRADE is stopping... -- 11:16:35.948 DEBUG [20325]: Closing database connection -- 11:16:35.948 SQL [20325]: pgsql_close() -- 11:16:37.941 INFO [20325]: COREGRADE is starting... -- 11:16:37.941 INFO [20325]: Version from config: 1.0 -- 11:16:37.941 DEBUG [20325]: Connecting to database... -- 11:16:37.941 DEBUG [20325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:16:37.941 SQL [20325]: pgsql_db_connect() -- 11:16:37.946 DEBUG [20325]: Database connection successful -- 11:16:37.946 INFO [20325]: _SERVER found -- 11:16:37.946 INFO [20325]: REMOTE_ADDR = 192.168.1.13 -- 11:16:37.946 INFO [20325]: SERVER_NAME = oameye.works.coregrade.com -- 11:16:37.946 INFO [20325]: QUERY_STRING = s=captcha -- 11:16:37.946 INFO [20325]: HTTP_X_FORWARDED_FOR = 114.118.31.36 -- 11:16:37.979 INFO [20325]: COREGRADE is stopping... -- 11:16:37.979 DEBUG [20325]: Closing database connection -- 11:16:37.979 SQL [20325]: pgsql_close() -- 11:16:38.478 INFO [20325]: COREGRADE is starting... -- 11:16:38.478 INFO [20325]: Version from config: 1.0 -- 11:16:38.478 DEBUG [20325]: Connecting to database... -- 11:16:38.478 DEBUG [20325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:16:38.478 SQL [20325]: pgsql_db_connect() -- 11:16:38.482 DEBUG [20325]: Database connection successful -- 11:16:38.482 INFO [20325]: _SERVER found -- 11:16:38.482 INFO [20325]: REMOTE_ADDR = 192.168.1.13 -- 11:16:38.482 INFO [20325]: SERVER_NAME = oameye.works.coregrade.com -- 11:16:38.482 INFO [20325]: HTTP_COOKIE = _ga=GA1.2.784606705.1583345490 -- 11:16:38.482 INFO [20325]: QUERY_STRING = /auth -- 11:16:38.482 INFO [20325]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:16:38.516 INFO [20325]: COREGRADE is stopping... -- 11:16:38.516 DEBUG [20325]: Closing database connection -- 11:16:38.516 SQL [20325]: pgsql_close() -- 11:16:39.183 INFO [20323]: COREGRADE is starting... -- 11:16:39.183 INFO [20323]: Version from config: 1.0 -- 11:16:39.183 DEBUG [20323]: Connecting to database... -- 11:16:39.183 DEBUG [20323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:16:39.183 SQL [20323]: pgsql_db_connect() -- 11:16:39.187 DEBUG [20323]: Database connection successful -- 11:16:39.187 INFO [20323]: _SERVER found -- 11:16:39.187 INFO [20323]: REMOTE_ADDR = 192.168.1.13 -- 11:16:39.187 INFO [20323]: SERVER_NAME = oameye.works.coregrade.com -- 11:16:39.187 INFO [20323]: HTTP_COOKIE = _ga=GA1.2.784606705.1583345490; ci_session=d4ml2mr9eao8pfi356mi4k8gt90ii9ro -- 11:16:39.187 INFO [20323]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:16:39.187 INFO [20323]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:16:39.199 INFO [20323]: COREGRADE is stopping... -- 11:16:39.199 DEBUG [20323]: Closing database connection -- 11:16:39.199 SQL [20323]: pgsql_close() -- 11:16:39.907 INFO [20323]: COREGRADE is starting... -- 11:16:39.907 INFO [20323]: Version from config: 1.0 -- 11:16:39.907 DEBUG [20323]: Connecting to database... -- 11:16:39.907 DEBUG [20323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:16:39.907 SQL [20323]: pgsql_db_connect() -- 11:16:39.911 DEBUG [20323]: Database connection successful -- 11:16:39.911 INFO [20323]: _SERVER found -- 11:16:39.911 INFO [20323]: REMOTE_ADDR = 192.168.1.13 -- 11:16:39.911 INFO [20323]: SERVER_NAME = oameye.works.coregrade.com -- 11:16:39.911 INFO [20323]: QUERY_STRING = -- 11:16:39.911 INFO [20323]: HTTP_X_FORWARDED_FOR = 114.118.31.36 -- 11:16:39.950 INFO [20323]: COREGRADE is stopping... -- 11:16:39.951 DEBUG [20323]: Closing database connection -- 11:16:39.951 SQL [20323]: pgsql_close() -- 11:43:47.550 INFO [22285]: COREGRADE is starting... -- 11:43:47.551 INFO [22285]: Version from config: 1.0 -- 11:43:47.551 DEBUG [22285]: Connecting to database... -- 11:43:47.551 DEBUG [22285]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:43:47.551 SQL [22285]: pgsql_db_connect() -- 11:43:47.555 DEBUG [22285]: Database connection successful -- 11:43:47.555 INFO [22285]: _SERVER found -- 11:43:47.555 INFO [22285]: REMOTE_ADDR = 192.168.1.13 -- 11:43:47.555 INFO [22285]: SERVER_NAME = oameye.works.coregrade.com -- 11:43:47.555 INFO [22285]: QUERY_STRING = /solr/admin/info/system -- 11:43:47.555 INFO [22285]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 11:43:47.571 INFO [22285]: COREGRADE is stopping... -- 11:43:47.571 DEBUG [22285]: Closing database connection -- 11:43:47.571 SQL [22285]: pgsql_close() -- 11:45:07.918 INFO [22288]: COREGRADE is starting... -- 11:45:07.919 INFO [22288]: Version from config: 1.0 -- 11:45:07.919 DEBUG [22288]: Connecting to database... -- 11:45:07.919 DEBUG [22288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:45:07.919 SQL [22288]: pgsql_db_connect() -- 11:45:07.923 DEBUG [22288]: Database connection successful -- 11:45:07.923 INFO [22288]: _SERVER found -- 11:45:07.923 INFO [22288]: REMOTE_ADDR = 192.168.1.13 -- 11:45:07.923 INFO [22288]: SERVER_NAME = oameye.works.coregrade.com -- 11:45:07.923 INFO [22288]: QUERY_STRING = -- 11:45:07.923 INFO [22288]: HTTP_X_FORWARDED_FOR = 223.71.167.163 -- 11:45:07.969 INFO [22288]: COREGRADE is stopping... -- 11:45:07.969 DEBUG [22288]: Closing database connection -- 11:45:07.969 SQL [22288]: pgsql_close() -- 11:46:13.162 INFO [22289]: COREGRADE is starting... -- 11:46:13.162 INFO [22289]: Version from config: 1.0 -- 11:46:13.162 DEBUG [22289]: Connecting to database... -- 11:46:13.162 DEBUG [22289]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:46:13.162 SQL [22289]: pgsql_db_connect() -- 11:46:13.167 DEBUG [22289]: Database connection successful -- 11:46:13.167 INFO [22289]: _SERVER found -- 11:46:13.167 INFO [22289]: REMOTE_ADDR = 192.168.1.13 -- 11:46:13.167 INFO [22289]: SERVER_NAME = oameye.works.coregrade.com -- 11:46:13.167 INFO [22289]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 11:46:13.167 INFO [22289]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 11:46:13.181 INFO [22289]: COREGRADE is stopping... -- 11:46:13.181 DEBUG [22289]: Closing database connection -- 11:46:13.181 SQL [22289]: pgsql_close() -- 18:42:44.886 INFO [22290]: COREGRADE is starting... -- 18:42:44.887 INFO [22290]: Version from config: 1.0 -- 18:42:44.887 DEBUG [22290]: Connecting to database... -- 18:42:44.887 DEBUG [22290]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:42:44.887 SQL [22290]: pgsql_db_connect() -- 18:42:44.892 DEBUG [22290]: Database connection successful -- 18:42:44.892 INFO [22290]: _SERVER found -- 18:42:44.892 INFO [22290]: REMOTE_ADDR = 192.168.1.13 -- 18:42:44.892 INFO [22290]: SERVER_NAME = oameye.works.coregrade.com -- 18:42:44.892 INFO [22290]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1337171926.1584191728 -- 18:42:44.892 INFO [22290]: QUERY_STRING = /auth -- 18:42:44.892 INFO [22290]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:42:44.934 INFO [22290]: COREGRADE is stopping... -- 18:42:44.934 DEBUG [22290]: Closing database connection -- 18:42:44.935 SQL [22290]: pgsql_close() -- 18:42:45.367 INFO [20325]: COREGRADE is starting... -- 18:42:45.368 INFO [20325]: Version from config: 1.0 -- 18:42:45.368 DEBUG [20325]: Connecting to database... -- 18:42:45.368 DEBUG [20325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:42:45.368 SQL [20325]: pgsql_db_connect() -- 18:42:45.372 DEBUG [20325]: Database connection successful -- 18:42:45.372 INFO [20325]: _SERVER found -- 18:42:45.372 INFO [20325]: REMOTE_ADDR = 192.168.1.13 -- 18:42:45.372 INFO [20325]: SERVER_NAME = oameye.works.coregrade.com -- 18:42:45.372 INFO [20325]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1337171926.1584191728; ci_session=t8ea30h3805v5fun8ldd2t9v739mql5k -- 18:42:45.372 INFO [20325]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:42:45.372 INFO [20325]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:42:45.386 INFO [20325]: COREGRADE is stopping... -- 18:42:45.386 DEBUG [20325]: Closing database connection -- 18:42:45.386 SQL [20325]: pgsql_close() -- 19:00:49.304 INFO [20321]: COREGRADE is starting... -- 19:00:49.304 INFO [20321]: Version from config: 1.0 -- 19:00:49.304 DEBUG [20321]: Connecting to database... -- 19:00:49.304 DEBUG [20321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:00:49.304 SQL [20321]: pgsql_db_connect() -- 19:00:49.308 DEBUG [20321]: Database connection successful -- 19:00:49.308 INFO [20321]: _SERVER found -- 19:00:49.308 INFO [20321]: REMOTE_ADDR = 192.168.1.13 -- 19:00:49.308 INFO [20321]: SERVER_NAME = oameye.works.coregrade.com -- 19:00:49.308 INFO [20321]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1337171926.1584191728; ci_session=t8ea30h3805v5fun8ldd2t9v739mql5k -- 19:00:49.308 INFO [20321]: QUERY_STRING = -- 19:00:49.308 INFO [20321]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:00:49.351 INFO [20321]: COREGRADE is stopping... -- 19:00:49.351 DEBUG [20321]: Closing database connection -- 19:00:49.351 SQL [20321]: pgsql_close() -- 19:00:50.149 INFO [20321]: COREGRADE is starting... -- 19:00:50.149 INFO [20321]: Version from config: 1.0 -- 19:00:50.149 DEBUG [20321]: Connecting to database... -- 19:00:50.150 DEBUG [20321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:00:50.150 SQL [20321]: pgsql_db_connect() -- 19:00:50.154 DEBUG [20321]: Database connection successful -- 19:00:50.154 INFO [20321]: _SERVER found -- 19:00:50.154 INFO [20321]: REMOTE_ADDR = 192.168.1.13 -- 19:00:50.154 INFO [20321]: SERVER_NAME = oameye.works.coregrade.com -- 19:00:50.154 INFO [20321]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1337171926.1584191728; ci_session=ibnjnfv2lbtoun7nn3ldj1s4r9tlc2ck; _gat_gtag_UA_54829827_2=1 -- 19:00:50.154 INFO [20321]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 19:00:50.154 INFO [20321]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:00:50.165 INFO [20321]: COREGRADE is stopping... -- 19:00:50.165 DEBUG [20321]: Closing database connection -- 19:00:50.165 SQL [20321]: pgsql_close() -- 19:00:50.355 INFO [20323]: COREGRADE is starting... -- 19:00:50.355 INFO [20323]: Version from config: 1.0 -- 19:00:50.355 DEBUG [20323]: Connecting to database... -- 19:00:50.355 DEBUG [20323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:00:50.355 SQL [20323]: pgsql_db_connect() -- 19:00:50.359 DEBUG [20323]: Database connection successful -- 19:00:50.359 INFO [20323]: _SERVER found -- 19:00:50.359 INFO [20323]: REMOTE_ADDR = 192.168.1.13 -- 19:00:50.359 INFO [20323]: SERVER_NAME = oameye.works.coregrade.com -- 19:00:50.359 INFO [20323]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1337171926.1584191728; ci_session=ibnjnfv2lbtoun7nn3ldj1s4r9tlc2ck; _gat_gtag_UA_54829827_2=1 -- 19:00:50.359 INFO [20323]: QUERY_STRING = /assets/img/footer_1.jpg -- 19:00:50.359 INFO [20323]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:00:50.372 INFO [20323]: COREGRADE is stopping... -- 19:00:50.372 DEBUG [20323]: Closing database connection -- 19:00:50.372 SQL [20323]: pgsql_close() -- 19:01:05.031 INFO [22285]: COREGRADE is starting... -- 19:01:05.031 INFO [22285]: Version from config: 1.0 -- 19:01:05.031 DEBUG [22285]: Connecting to database... -- 19:01:05.031 DEBUG [22285]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:01:05.031 SQL [22285]: pgsql_db_connect() -- 19:01:05.035 DEBUG [22285]: Database connection successful -- 19:01:05.035 INFO [22285]: _SERVER found -- 19:01:05.035 INFO [22285]: REMOTE_ADDR = 192.168.1.13 -- 19:01:05.035 INFO [22285]: SERVER_NAME = oameye.works.coregrade.com -- 19:01:05.035 INFO [22285]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1337171926.1584191728; ci_session=ibnjnfv2lbtoun7nn3ldj1s4r9tlc2ck; _gat_gtag_UA_54829827_2=1 -- 19:01:05.035 INFO [22285]: QUERY_STRING = -- 19:01:05.035 INFO [22285]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:01:05.077 INFO [22285]: COREGRADE is stopping... -- 19:01:05.077 DEBUG [22285]: Closing database connection -- 19:01:05.077 SQL [22285]: pgsql_close() -- 19:07:07.452 INFO [22288]: COREGRADE is starting... -- 19:07:07.452 INFO [22288]: Version from config: 1.0 -- 19:07:07.453 DEBUG [22288]: Connecting to database... -- 19:07:07.453 DEBUG [22288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:07.453 SQL [22288]: pgsql_db_connect() -- 19:07:07.457 DEBUG [22288]: Database connection successful -- 19:07:07.457 INFO [22288]: _SERVER found -- 19:07:07.457 INFO [22288]: REMOTE_ADDR = 192.168.1.13 -- 19:07:07.457 INFO [22288]: SERVER_NAME = oameye.works.coregrade.com -- 19:07:07.457 INFO [22288]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1337171926.1584191728; ci_session=ibnjnfv2lbtoun7nn3ldj1s4r9tlc2ck; _gat_gtag_UA_54829827_2=1 -- 19:07:07.457 INFO [22288]: QUERY_STRING = -- 19:07:07.457 INFO [22288]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:07:07.491 INFO [22288]: COREGRADE is stopping... -- 19:07:07.491 DEBUG [22288]: Closing database connection -- 19:07:07.491 SQL [22288]: pgsql_close() -- 19:07:07.973 INFO [22288]: COREGRADE is starting... -- 19:07:07.973 INFO [22288]: Version from config: 1.0 -- 19:07:07.973 DEBUG [22288]: Connecting to database... -- 19:07:07.973 DEBUG [22288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:07.973 SQL [22288]: pgsql_db_connect() -- 19:07:07.979 INFO [22289]: COREGRADE is starting... -- 19:07:07.979 INFO [22289]: Version from config: 1.0 -- 19:07:07.979 DEBUG [22289]: Connecting to database... -- 19:07:07.979 DEBUG [22289]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:07.979 SQL [22289]: pgsql_db_connect() -- 19:07:07.977 DEBUG [22288]: Database connection successful -- 19:07:07.977 INFO [22288]: _SERVER found -- 19:07:07.977 INFO [22288]: REMOTE_ADDR = 192.168.1.13 -- 19:07:07.977 INFO [22288]: SERVER_NAME = oameye.works.coregrade.com -- 19:07:07.977 INFO [22288]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1337171926.1584191728; _gat_gtag_UA_54829827_2=1; ci_session=2jfl4rjs59dngkdba63btvdcm0nt3h4m -- 19:07:07.977 INFO [22288]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 19:07:07.977 INFO [22288]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:07:07.988 INFO [22288]: COREGRADE is stopping... -- 19:07:07.989 DEBUG [22288]: Closing database connection -- 19:07:07.989 SQL [22288]: pgsql_close() -- 19:07:07.983 DEBUG [22289]: Database connection successful -- 19:07:07.983 INFO [22289]: _SERVER found -- 19:07:07.983 INFO [22289]: REMOTE_ADDR = 192.168.1.13 -- 19:07:07.983 INFO [22289]: SERVER_NAME = oameye.works.coregrade.com -- 19:07:07.983 INFO [22289]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1337171926.1584191728; _gat_gtag_UA_54829827_2=1; ci_session=2jfl4rjs59dngkdba63btvdcm0nt3h4m -- 19:07:07.983 INFO [22289]: QUERY_STRING = /assets/img/footer_1.jpg -- 19:07:07.983 INFO [22289]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:07:07.995 INFO [22289]: COREGRADE is stopping... -- 19:07:07.995 DEBUG [22289]: Closing database connection -- 19:07:07.995 SQL [22289]: pgsql_close() -- 19:08:14.951 INFO [22290]: COREGRADE is starting... -- 19:08:14.952 INFO [22290]: Version from config: 1.0 -- 19:08:14.952 DEBUG [22290]: Connecting to database... -- 19:08:14.952 DEBUG [22290]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:08:14.952 SQL [22290]: pgsql_db_connect() -- 19:08:14.956 DEBUG [22290]: Database connection successful -- 19:08:14.956 INFO [22290]: _SERVER found -- 19:08:14.956 INFO [22290]: REMOTE_ADDR = 192.168.1.13 -- 19:08:14.956 INFO [22290]: SERVER_NAME = oameye.works.coregrade.com -- 19:08:14.956 INFO [22290]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1337171926.1584191728; ci_session=2jfl4rjs59dngkdba63btvdcm0nt3h4m -- 19:08:14.956 INFO [22290]: QUERY_STRING = -- 19:08:14.956 INFO [22290]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:08:14.993 INFO [22290]: COREGRADE is stopping... -- 19:08:14.993 DEBUG [22290]: Closing database connection -- 19:08:14.993 SQL [22290]: pgsql_close() -- 19:08:15.140 INFO [22290]: COREGRADE is starting... -- 19:08:15.140 INFO [22290]: Version from config: 1.0 -- 19:08:15.140 DEBUG [22290]: Connecting to database... -- 19:08:15.140 DEBUG [22290]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:08:15.140 SQL [22290]: pgsql_db_connect() -- 19:08:15.147 INFO [20823]: COREGRADE is starting... -- 19:08:15.148 INFO [20823]: Version from config: 1.0 -- 19:08:15.148 DEBUG [20823]: Connecting to database... -- 19:08:15.148 DEBUG [20823]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:08:15.148 SQL [20823]: pgsql_db_connect() -- 19:08:15.144 DEBUG [22290]: Database connection successful -- 19:08:15.144 INFO [22290]: _SERVER found -- 19:08:15.144 INFO [22290]: REMOTE_ADDR = 192.168.1.13 -- 19:08:15.144 INFO [22290]: SERVER_NAME = oameye.works.coregrade.com -- 19:08:15.144 INFO [22290]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1337171926.1584191728; ci_session=2jfl4rjs59dngkdba63btvdcm0nt3h4m -- 19:08:15.144 INFO [22290]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 19:08:15.144 INFO [22290]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:08:15.155 INFO [22290]: COREGRADE is stopping... -- 19:08:15.155 DEBUG [22290]: Closing database connection -- 19:08:15.155 SQL [22290]: pgsql_close() -- 19:08:15.152 DEBUG [20823]: Database connection successful -- 19:08:15.152 INFO [20823]: _SERVER found -- 19:08:15.152 INFO [20823]: REMOTE_ADDR = 192.168.1.13 -- 19:08:15.152 INFO [20823]: SERVER_NAME = oameye.works.coregrade.com -- 19:08:15.152 INFO [20823]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1337171926.1584191728; ci_session=2jfl4rjs59dngkdba63btvdcm0nt3h4m -- 19:08:15.152 INFO [20823]: QUERY_STRING = /assets/img/footer_1.jpg -- 19:08:15.152 INFO [20823]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:08:15.164 INFO [20823]: COREGRADE is stopping... -- 19:08:15.165 DEBUG [20823]: Closing database connection -- 19:08:15.165 SQL [20823]: pgsql_close() -- 19:08:16.778 INFO [20823]: COREGRADE is starting... -- 19:08:16.778 INFO [20823]: Version from config: 1.0 -- 19:08:16.778 DEBUG [20823]: Connecting to database... -- 19:08:16.778 DEBUG [20823]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:08:16.778 SQL [20823]: pgsql_db_connect() -- 19:08:16.782 DEBUG [20823]: Database connection successful -- 19:08:16.782 INFO [20823]: _SERVER found -- 19:08:16.782 INFO [20823]: REMOTE_ADDR = 192.168.1.13 -- 19:08:16.782 INFO [20823]: SERVER_NAME = oameye.works.coregrade.com -- 19:08:16.782 INFO [20823]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1337171926.1584191728; ci_session=2jfl4rjs59dngkdba63btvdcm0nt3h4m; _gat_gtag_UA_54829827_2=1 -- 19:08:16.782 INFO [20823]: QUERY_STRING = /home/howitworks -- 19:08:16.782 INFO [20823]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:08:16.814 INFO [20823]: COREGRADE is stopping... -- 19:08:16.814 DEBUG [20823]: Closing database connection -- 19:08:16.814 SQL [20823]: pgsql_close() -- 19:08:17.054 INFO [20823]: COREGRADE is starting... -- 19:08:17.055 INFO [20823]: Version from config: 1.0 -- 19:08:17.055 DEBUG [20823]: Connecting to database... -- 19:08:17.055 DEBUG [20823]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:08:17.055 SQL [20823]: pgsql_db_connect() -- 19:08:17.059 DEBUG [20823]: Database connection successful -- 19:08:17.059 INFO [20823]: _SERVER found -- 19:08:17.059 INFO [20823]: REMOTE_ADDR = 192.168.1.13 -- 19:08:17.059 INFO [20823]: SERVER_NAME = oameye.works.coregrade.com -- 19:08:17.059 INFO [20823]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1337171926.1584191728; ci_session=2jfl4rjs59dngkdba63btvdcm0nt3h4m; _gat_gtag_UA_54829827_2=1 -- 19:08:17.059 INFO [20823]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 19:08:17.059 INFO [20823]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:08:17.070 INFO [20823]: COREGRADE is stopping... -- 19:08:17.070 DEBUG [20823]: Closing database connection -- 19:08:17.070 SQL [20823]: pgsql_close() -- 19:08:18.737 INFO [20823]: COREGRADE is starting... -- 19:08:18.738 INFO [20823]: Version from config: 1.0 -- 19:08:18.738 DEBUG [20823]: Connecting to database... -- 19:08:18.738 DEBUG [20823]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:08:18.738 SQL [20823]: pgsql_db_connect() -- 19:08:18.742 DEBUG [20823]: Database connection successful -- 19:08:18.742 INFO [20823]: _SERVER found -- 19:08:18.742 INFO [20823]: REMOTE_ADDR = 192.168.1.13 -- 19:08:18.742 INFO [20823]: SERVER_NAME = oameye.works.coregrade.com -- 19:08:18.742 INFO [20823]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1337171926.1584191728; ci_session=2jfl4rjs59dngkdba63btvdcm0nt3h4m; _gat_gtag_UA_54829827_2=1 -- 19:08:18.742 INFO [20823]: QUERY_STRING = -- 19:08:18.742 INFO [20823]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:08:18.773 INFO [20823]: COREGRADE is stopping... -- 19:08:18.773 DEBUG [20823]: Closing database connection -- 19:08:18.773 SQL [20823]: pgsql_close() -- 19:33:09.890 INFO [21486]: COREGRADE is starting... -- 19:33:09.890 INFO [21486]: Version from config: 1.0 -- 19:33:09.890 DEBUG [21486]: Connecting to database... -- 19:33:09.890 DEBUG [21486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:33:09.890 SQL [21486]: pgsql_db_connect() -- 19:33:09.895 DEBUG [21486]: Database connection successful -- 19:33:09.895 INFO [21486]: _SERVER found -- 19:33:09.895 INFO [21486]: REMOTE_ADDR = 192.168.1.13 -- 19:33:09.895 INFO [21486]: SERVER_NAME = oameye.works.coregrade.com -- 19:33:09.895 INFO [21486]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1337171926.1584191728; ci_session=2jfl4rjs59dngkdba63btvdcm0nt3h4m -- 19:33:09.895 INFO [21486]: QUERY_STRING = -- 19:33:09.895 INFO [21486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:33:09.941 INFO [21486]: COREGRADE is stopping... -- 19:33:09.941 DEBUG [21486]: Closing database connection -- 19:33:09.941 SQL [21486]: pgsql_close() -- 19:33:10.168 INFO [21486]: COREGRADE is starting... -- 19:33:10.168 INFO [21486]: Version from config: 1.0 -- 19:33:10.168 DEBUG [21486]: Connecting to database... -- 19:33:10.168 DEBUG [21486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:33:10.168 SQL [21486]: pgsql_db_connect() -- 19:33:10.181 INFO [20325]: COREGRADE is starting... -- 19:33:10.181 INFO [20325]: Version from config: 1.0 -- 19:33:10.181 DEBUG [20325]: Connecting to database... -- 19:33:10.181 DEBUG [20325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:33:10.181 SQL [20325]: pgsql_db_connect() -- 19:33:10.173 DEBUG [21486]: Database connection successful -- 19:33:10.173 INFO [21486]: _SERVER found -- 19:33:10.173 INFO [21486]: REMOTE_ADDR = 192.168.1.13 -- 19:33:10.173 INFO [21486]: SERVER_NAME = oameye.works.coregrade.com -- 19:33:10.173 INFO [21486]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1337171926.1584191728; ci_session=oie0rv295639tg338mfbjost9tk36eve -- 19:33:10.173 INFO [21486]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 19:33:10.173 INFO [21486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:33:10.185 INFO [21486]: COREGRADE is stopping... -- 19:33:10.185 DEBUG [21486]: Closing database connection -- 19:33:10.185 SQL [21486]: pgsql_close() -- 19:33:10.186 DEBUG [20325]: Database connection successful -- 19:33:10.186 INFO [20325]: _SERVER found -- 19:33:10.186 INFO [20325]: REMOTE_ADDR = 192.168.1.13 -- 19:33:10.186 INFO [20325]: SERVER_NAME = oameye.works.coregrade.com -- 19:33:10.186 INFO [20325]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1337171926.1584191728; ci_session=oie0rv295639tg338mfbjost9tk36eve -- 19:33:10.186 INFO [20325]: QUERY_STRING = /assets/img/footer_1.jpg -- 19:33:10.186 INFO [20325]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:33:10.200 INFO [20325]: COREGRADE is stopping... -- 19:33:10.200 DEBUG [20325]: Closing database connection -- 19:33:10.200 SQL [20325]: pgsql_close() -- 19:41:07.274 INFO [20322]: COREGRADE is starting... -- 19:41:07.274 INFO [20322]: Version from config: 1.0 -- 19:41:07.274 DEBUG [20322]: Connecting to database... -- 19:41:07.274 DEBUG [20322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:41:07.274 SQL [20322]: pgsql_db_connect() -- 19:41:07.279 DEBUG [20322]: Database connection successful -- 19:41:07.279 INFO [20322]: _SERVER found -- 19:41:07.279 INFO [20322]: REMOTE_ADDR = 192.168.1.13 -- 19:41:07.279 INFO [20322]: SERVER_NAME = oameye.works.coregrade.com -- 19:41:07.279 INFO [20322]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1337171926.1584191728; ci_session=oie0rv295639tg338mfbjost9tk36eve -- 19:41:07.279 INFO [20322]: QUERY_STRING = -- 19:41:07.279 INFO [20322]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:41:07.323 INFO [20322]: COREGRADE is stopping... -- 19:41:07.323 DEBUG [20322]: Closing database connection -- 19:41:07.323 SQL [20322]: pgsql_close() -- 19:41:07.616 INFO [20322]: COREGRADE is starting... -- 19:41:07.616 INFO [20322]: Version from config: 1.0 -- 19:41:07.616 DEBUG [20322]: Connecting to database... -- 19:41:07.616 DEBUG [20322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:41:07.616 SQL [20322]: pgsql_db_connect() -- 19:41:07.628 INFO [20321]: COREGRADE is starting... -- 19:41:07.628 INFO [20321]: Version from config: 1.0 -- 19:41:07.628 DEBUG [20321]: Connecting to database... -- 19:41:07.629 DEBUG [20321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:41:07.629 SQL [20321]: pgsql_db_connect() -- 19:41:07.620 DEBUG [20322]: Database connection successful -- 19:41:07.620 INFO [20322]: _SERVER found -- 19:41:07.620 INFO [20322]: REMOTE_ADDR = 192.168.1.13 -- 19:41:07.620 INFO [20322]: SERVER_NAME = oameye.works.coregrade.com -- 19:41:07.620 INFO [20322]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1337171926.1584191728; ci_session=292vh1fbpkjtf9hfvbm7cv0pdu7h501u -- 19:41:07.620 INFO [20322]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 19:41:07.620 INFO [20322]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:41:07.632 INFO [20322]: COREGRADE is stopping... -- 19:41:07.632 DEBUG [20322]: Closing database connection -- 19:41:07.632 SQL [20322]: pgsql_close() -- 19:41:07.633 DEBUG [20321]: Database connection successful -- 19:41:07.633 INFO [20321]: _SERVER found -- 19:41:07.633 INFO [20321]: REMOTE_ADDR = 192.168.1.13 -- 19:41:07.633 INFO [20321]: SERVER_NAME = oameye.works.coregrade.com -- 19:41:07.633 INFO [20321]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1337171926.1584191728; ci_session=292vh1fbpkjtf9hfvbm7cv0pdu7h501u -- 19:41:07.633 INFO [20321]: QUERY_STRING = /assets/img/footer_1.jpg -- 19:41:07.633 INFO [20321]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:41:07.646 INFO [20321]: COREGRADE is stopping... -- 19:41:07.646 DEBUG [20321]: Closing database connection -- 19:41:07.646 SQL [20321]: pgsql_close() -- 22:13:20.763 INFO [20323]: COREGRADE is starting... -- 22:13:20.763 INFO [20323]: Version from config: 1.0 -- 22:13:20.763 DEBUG [20323]: Connecting to database... -- 22:13:20.763 DEBUG [20323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:13:20.763 SQL [20323]: pgsql_db_connect() -- 22:13:20.768 DEBUG [20323]: Database connection successful -- 22:13:20.768 INFO [20323]: _SERVER found -- 22:13:20.768 INFO [20323]: REMOTE_ADDR = 192.168.1.13 -- 22:13:20.768 INFO [20323]: SERVER_NAME = oameye.works.coregrade.com -- 22:13:20.768 INFO [20323]: QUERY_STRING = /solr/admin/info/system -- 22:13:20.768 INFO [20323]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 22:13:20.784 INFO [20323]: COREGRADE is stopping... -- 22:13:20.784 DEBUG [20323]: Closing database connection -- 22:13:20.784 SQL [20323]: pgsql_close() -- 22:19:19.180 INFO [22285]: COREGRADE is starting... -- 22:19:19.180 INFO [22285]: Version from config: 1.0 -- 22:19:19.180 DEBUG [22285]: Connecting to database... -- 22:19:19.180 DEBUG [22285]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:19:19.180 SQL [22285]: pgsql_db_connect() -- 22:19:19.185 DEBUG [22285]: Database connection successful -- 22:19:19.185 INFO [22285]: _SERVER found -- 22:19:19.185 INFO [22285]: REMOTE_ADDR = 192.168.1.13 -- 22:19:19.185 INFO [22285]: SERVER_NAME = oameye.works.coregrade.com -- 22:19:19.185 INFO [22285]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 22:19:19.185 INFO [22285]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 22:19:19.224 INFO [22285]: COREGRADE is stopping... -- 22:19:19.224 DEBUG [22285]: Closing database connection -- 22:19:19.224 SQL [22285]: pgsql_close() -- 22:19:20.212 INFO [22285]: COREGRADE is starting... -- 22:19:20.212 INFO [22285]: Version from config: 1.0 -- 22:19:20.212 DEBUG [22285]: Connecting to database... -- 22:19:20.212 DEBUG [22285]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:19:20.212 SQL [22285]: pgsql_db_connect() -- 22:19:20.216 DEBUG [22285]: Database connection successful -- 22:19:20.216 INFO [22285]: _SERVER found -- 22:19:20.216 INFO [22285]: REMOTE_ADDR = 192.168.1.13 -- 22:19:20.216 INFO [22285]: SERVER_NAME = oameye.works.coregrade.com -- 22:19:20.216 INFO [22285]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 22:19:20.216 INFO [22285]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 22:19:20.250 INFO [22285]: COREGRADE is stopping... -- 22:19:20.250 DEBUG [22285]: Closing database connection -- 22:19:20.250 SQL [22285]: pgsql_close() -- 22:21:50.733 INFO [22288]: COREGRADE is starting... -- 22:21:50.733 INFO [22288]: Version from config: 1.0 -- 22:21:50.733 DEBUG [22288]: Connecting to database... -- 22:21:50.733 DEBUG [22288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:21:50.733 SQL [22288]: pgsql_db_connect() -- 22:21:50.737 DEBUG [22288]: Database connection successful -- 22:21:50.737 INFO [22288]: _SERVER found -- 22:21:50.737 INFO [22288]: REMOTE_ADDR = 192.168.1.13 -- 22:21:50.737 INFO [22288]: SERVER_NAME = oameye.works.coregrade.com -- 22:21:50.737 INFO [22288]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 22:21:50.737 INFO [22288]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 22:21:50.770 INFO [22288]: COREGRADE is stopping... -- 22:21:50.771 DEBUG [22288]: Closing database connection -- 22:21:50.771 SQL [22288]: pgsql_close() -- 00:56:09.814 INFO [22289]: COREGRADE is starting... -- 00:56:09.815 INFO [22289]: Version from config: 1.0 -- 00:56:09.815 DEBUG [22289]: Connecting to database... -- 00:56:09.815 DEBUG [22289]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:56:09.815 SQL [22289]: pgsql_db_connect() -- 00:56:09.821 DEBUG [22289]: Database connection successful -- 00:56:09.821 INFO [22289]: _SERVER found -- 00:56:09.821 INFO [22289]: REMOTE_ADDR = 192.168.1.13 -- 00:56:09.821 INFO [22289]: SERVER_NAME = oameye.works.coregrade.com -- 00:56:09.821 INFO [22289]: QUERY_STRING = /.well-known/acme-challenge/lSojDy9geC0Irn9sPNq2qtyqfCx1nMCc7ThZ1I9axtM -- 00:56:09.821 INFO [22289]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 00:56:09.834 INFO [22289]: COREGRADE is stopping... -- 00:56:09.834 DEBUG [22289]: Closing database connection -- 00:56:09.834 SQL [22289]: pgsql_close() -- 00:56:09.979 INFO [22289]: COREGRADE is starting... -- 00:56:09.979 INFO [22289]: Version from config: 1.0 -- 00:56:09.979 DEBUG [22289]: Connecting to database... -- 00:56:09.979 DEBUG [22289]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:56:09.979 SQL [22289]: pgsql_db_connect() -- 00:56:09.983 DEBUG [22289]: Database connection successful -- 00:56:09.983 INFO [22289]: _SERVER found -- 00:56:09.983 INFO [22289]: REMOTE_ADDR = 192.168.1.13 -- 00:56:09.983 INFO [22289]: SERVER_NAME = oameye.works.coregrade.com -- 00:56:09.983 INFO [22289]: QUERY_STRING = /.well-known/acme-challenge/lSojDy9geC0Irn9sPNq2qtyqfCx1nMCc7ThZ1I9axtM -- 00:56:09.983 INFO [22289]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 00:56:09.994 INFO [22289]: COREGRADE is stopping... -- 00:56:09.994 DEBUG [22289]: Closing database connection -- 00:56:09.994 SQL [22289]: pgsql_close() -- 02:45:22.537 INFO [21486]: COREGRADE is starting... -- 02:45:22.538 INFO [21486]: Version from config: 1.0 -- 02:45:22.538 DEBUG [21486]: Connecting to database... -- 02:45:22.538 DEBUG [21486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:45:22.538 SQL [21486]: pgsql_db_connect() -- 02:45:22.542 DEBUG [21486]: Database connection successful -- 02:45:22.542 INFO [21486]: _SERVER found -- 02:45:22.542 INFO [21486]: REMOTE_ADDR = 192.168.1.13 -- 02:45:22.542 INFO [21486]: SERVER_NAME = oameye.works.coregrade.com -- 02:45:22.542 INFO [21486]: QUERY_STRING = -- 02:45:22.542 INFO [21486]: HTTP_X_FORWARDED_FOR = 67.205.179.118 -- 02:45:22.581 INFO [21486]: COREGRADE is stopping... -- 02:45:22.581 DEBUG [21486]: Closing database connection -- 02:45:22.581 SQL [21486]: pgsql_close() -- 03:10:20.373 INFO [20325]: COREGRADE is starting... -- 03:10:20.373 INFO [20325]: Version from config: 1.0 -- 03:10:20.373 DEBUG [20325]: Connecting to database... -- 03:10:20.373 DEBUG [20325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:10:20.374 SQL [20325]: pgsql_db_connect() -- 03:10:20.378 DEBUG [20325]: Database connection successful -- 03:10:20.378 INFO [20325]: _SERVER found -- 03:10:20.378 INFO [20325]: REMOTE_ADDR = 192.168.1.13 -- 03:10:20.378 INFO [20325]: SERVER_NAME = oameye.works.coregrade.com -- 03:10:20.378 INFO [20325]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 03:10:20.378 INFO [20325]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 03:10:20.394 INFO [20325]: COREGRADE is stopping... -- 03:10:20.394 DEBUG [20325]: Closing database connection -- 03:10:20.394 SQL [20325]: pgsql_close() -- 13:40:29.977 INFO [20322]: COREGRADE is starting... -- 13:40:29.977 INFO [20322]: Version from config: 1.0 -- 13:40:29.977 DEBUG [20322]: Connecting to database... -- 13:40:29.977 DEBUG [20322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:40:29.978 SQL [20322]: pgsql_db_connect() -- 13:40:29.983 DEBUG [20322]: Database connection successful -- 13:40:29.983 INFO [20322]: _SERVER found -- 13:40:29.983 INFO [20322]: REMOTE_ADDR = 192.168.1.13 -- 13:40:29.983 INFO [20322]: SERVER_NAME = oameye.works.coregrade.com -- 13:40:29.983 INFO [20322]: QUERY_STRING = /TP/public/index.php -- 13:40:29.983 INFO [20322]: HTTP_X_FORWARDED_FOR = 120.131.0.158 -- 13:40:29.998 INFO [20322]: COREGRADE is stopping... -- 13:40:29.998 DEBUG [20322]: Closing database connection -- 13:40:29.998 SQL [20322]: pgsql_close() -- 13:40:35.927 INFO [20321]: COREGRADE is starting... -- 13:40:35.928 INFO [20321]: Version from config: 1.0 -- 13:40:35.928 DEBUG [20321]: Connecting to database... -- 13:40:35.928 DEBUG [20321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:40:35.928 SQL [20321]: pgsql_db_connect() -- 13:40:35.932 DEBUG [20321]: Database connection successful -- 13:40:35.932 INFO [20321]: _SERVER found -- 13:40:35.932 INFO [20321]: REMOTE_ADDR = 192.168.1.13 -- 13:40:35.932 INFO [20321]: SERVER_NAME = oameye.works.coregrade.com -- 13:40:35.932 INFO [20321]: QUERY_STRING = /TP/index.php -- 13:40:35.932 INFO [20321]: HTTP_X_FORWARDED_FOR = 120.131.0.158 -- 13:40:35.947 INFO [20321]: COREGRADE is stopping... -- 13:40:35.947 DEBUG [20321]: Closing database connection -- 13:40:35.947 SQL [20321]: pgsql_close() -- 13:40:39.712 INFO [20321]: COREGRADE is starting... -- 13:40:39.712 INFO [20321]: Version from config: 1.0 -- 13:40:39.712 DEBUG [20321]: Connecting to database... -- 13:40:39.712 DEBUG [20321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:40:39.712 SQL [20321]: pgsql_db_connect() -- 13:40:39.717 DEBUG [20321]: Database connection successful -- 13:40:39.717 INFO [20321]: _SERVER found -- 13:40:39.717 INFO [20321]: REMOTE_ADDR = 192.168.1.13 -- 13:40:39.717 INFO [20321]: SERVER_NAME = oameye.works.coregrade.com -- 13:40:39.717 INFO [20321]: QUERY_STRING = /thinkphp/html/public/index.php -- 13:40:39.717 INFO [20321]: HTTP_X_FORWARDED_FOR = 120.131.0.158 -- 13:40:39.728 INFO [20321]: COREGRADE is stopping... -- 13:40:39.728 DEBUG [20321]: Closing database connection -- 13:40:39.728 SQL [20321]: pgsql_close() -- 23:47:49.730 INFO [20323]: COREGRADE is starting... -- 23:47:49.731 INFO [20323]: Version from config: 1.0 -- 23:47:49.731 DEBUG [20323]: Connecting to database... -- 23:47:49.731 DEBUG [20323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:49.731 SQL [20323]: pgsql_db_connect() -- 23:47:49.736 DEBUG [20323]: Database connection successful -- 23:47:49.736 INFO [20323]: _SERVER found -- 23:47:49.736 INFO [20323]: REMOTE_ADDR = 192.168.1.13 -- 23:47:49.736 INFO [20323]: SERVER_NAME = oameye.works.coregrade.com -- 23:47:49.736 INFO [20323]: QUERY_STRING = -- 23:47:49.736 INFO [20323]: HTTP_X_FORWARDED_FOR = 47.101.137.162 -- 23:47:49.778 INFO [20323]: COREGRADE is stopping... -- 23:47:49.778 DEBUG [20323]: Closing database connection -- 23:47:49.778 SQL [20323]: pgsql_close() -- 02:40:49.279 INFO [22285]: COREGRADE is starting... -- 02:40:49.279 INFO [22285]: Version from config: 1.0 -- 02:40:49.279 DEBUG [22285]: Connecting to database... -- 02:40:49.279 DEBUG [22285]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:40:49.279 SQL [22285]: pgsql_db_connect() -- 02:40:49.284 DEBUG [22285]: Database connection successful -- 02:40:49.284 INFO [22285]: _SERVER found -- 02:40:49.284 INFO [22285]: REMOTE_ADDR = 192.168.1.13 -- 02:40:49.284 INFO [22285]: SERVER_NAME = oameye.works.coregrade.com -- 02:40:49.284 INFO [22285]: QUERY_STRING = /.env -- 02:40:49.284 INFO [22285]: HTTP_X_FORWARDED_FOR = 129.213.87.134 -- 02:40:49.299 INFO [22285]: COREGRADE is stopping... -- 02:40:49.299 DEBUG [22285]: Closing database connection -- 02:40:49.299 SQL [22285]: pgsql_close() -- 02:50:05.113 INFO [22288]: COREGRADE is starting... -- 02:50:05.113 INFO [22288]: Version from config: 1.0 -- 02:50:05.113 DEBUG [22288]: Connecting to database... -- 02:50:05.113 DEBUG [22288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:50:05.113 SQL [22288]: pgsql_db_connect() -- 02:50:05.118 DEBUG [22288]: Database connection successful -- 02:50:05.118 INFO [22288]: _SERVER found -- 02:50:05.118 INFO [22288]: REMOTE_ADDR = 192.168.1.13 -- 02:50:05.118 INFO [22288]: SERVER_NAME = oameye.works.coregrade.com -- 02:50:05.118 INFO [22288]: QUERY_STRING = /.well-known/acme-challenge/MjmEzhwCF_QTsfuIxnnSM0EcCqvk6XtRbXhX183bTJ4 -- 02:50:05.118 INFO [22288]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 02:50:05.131 INFO [22288]: COREGRADE is stopping... -- 02:50:05.131 DEBUG [22288]: Closing database connection -- 02:50:05.131 SQL [22288]: pgsql_close() -- 02:50:05.624 INFO [20823]: COREGRADE is starting... -- 02:50:05.624 INFO [20823]: Version from config: 1.0 -- 02:50:05.624 DEBUG [20823]: Connecting to database... -- 02:50:05.624 DEBUG [20823]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:50:05.624 SQL [20823]: pgsql_db_connect() -- 02:50:05.629 DEBUG [20823]: Database connection successful -- 02:50:05.629 INFO [20823]: _SERVER found -- 02:50:05.629 INFO [20823]: REMOTE_ADDR = 192.168.1.13 -- 02:50:05.629 INFO [20823]: SERVER_NAME = oameye.works.coregrade.com -- 02:50:05.629 INFO [20823]: QUERY_STRING = /.well-known/acme-challenge/MjmEzhwCF_QTsfuIxnnSM0EcCqvk6XtRbXhX183bTJ4 -- 02:50:05.629 INFO [20823]: HTTP_X_FORWARDED_FOR = 34.209.232.166 -- 02:50:05.642 INFO [20823]: COREGRADE is stopping... -- 02:50:05.643 DEBUG [20823]: Closing database connection -- 02:50:05.643 SQL [20823]: pgsql_close() -- 02:50:06.028 INFO [20823]: COREGRADE is starting... -- 02:50:06.028 INFO [20823]: Version from config: 1.0 -- 02:50:06.028 DEBUG [20823]: Connecting to database... -- 02:50:06.028 DEBUG [20823]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:50:06.028 SQL [20823]: pgsql_db_connect() -- 02:50:06.033 DEBUG [20823]: Database connection successful -- 02:50:06.033 INFO [20823]: _SERVER found -- 02:50:06.033 INFO [20823]: REMOTE_ADDR = 192.168.1.13 -- 02:50:06.033 INFO [20823]: SERVER_NAME = oameye.works.coregrade.com -- 02:50:06.033 INFO [20823]: QUERY_STRING = /.well-known/acme-challenge/MjmEzhwCF_QTsfuIxnnSM0EcCqvk6XtRbXhX183bTJ4 -- 02:50:06.033 INFO [20823]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 02:50:06.044 INFO [20823]: COREGRADE is stopping... -- 02:50:06.044 DEBUG [20823]: Closing database connection -- 02:50:06.044 SQL [20823]: pgsql_close() -- 03:35:10.359 INFO [21486]: COREGRADE is starting... -- 03:35:10.359 INFO [21486]: Version from config: 1.0 -- 03:35:10.359 DEBUG [21486]: Connecting to database... -- 03:35:10.359 DEBUG [21486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:35:10.359 SQL [21486]: pgsql_db_connect() -- 03:35:10.364 DEBUG [21486]: Database connection successful -- 03:35:10.364 INFO [21486]: _SERVER found -- 03:35:10.364 INFO [21486]: REMOTE_ADDR = 192.168.1.13 -- 03:35:10.364 INFO [21486]: SERVER_NAME = oameye.works.coregrade.com -- 03:35:10.364 INFO [21486]: QUERY_STRING = -- 03:35:10.364 INFO [21486]: HTTP_X_FORWARDED_FOR = 198.108.66.208 -- 03:35:10.401 INFO [21486]: COREGRADE is stopping... -- 03:35:10.401 DEBUG [21486]: Closing database connection -- 03:35:10.401 SQL [21486]: pgsql_close() -- 06:16:49.109 INFO [20325]: COREGRADE is starting... -- 06:16:49.111 INFO [20325]: Version from config: 1.0 -- 06:16:49.111 DEBUG [20325]: Connecting to database... -- 06:16:49.111 DEBUG [20325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:16:49.111 SQL [20325]: pgsql_db_connect() -- 06:16:49.116 DEBUG [20325]: Database connection successful -- 06:16:49.116 INFO [20325]: _SERVER found -- 06:16:49.116 INFO [20325]: REMOTE_ADDR = 192.168.1.13 -- 06:16:49.116 INFO [20325]: SERVER_NAME = oameye.works.coregrade.com -- 06:16:49.116 INFO [20325]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 06:16:49.116 INFO [20325]: QUERY_STRING = -- 06:16:49.116 INFO [20325]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:16:49.156 INFO [20325]: COREGRADE is stopping... -- 06:16:49.156 DEBUG [20325]: Closing database connection -- 06:16:49.156 SQL [20325]: pgsql_close() -- 06:16:49.846 INFO [22285]: COREGRADE is starting... -- 06:16:49.847 INFO [22285]: Version from config: 1.0 -- 06:16:49.847 DEBUG [22285]: Connecting to database... -- 06:16:49.847 DEBUG [22285]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:16:49.847 SQL [22285]: pgsql_db_connect() -- 06:16:49.851 DEBUG [22285]: Database connection successful -- 06:16:49.851 INFO [22285]: _SERVER found -- 06:16:49.851 INFO [22285]: REMOTE_ADDR = 192.168.1.13 -- 06:16:49.851 INFO [22285]: SERVER_NAME = oameye.works.coregrade.com -- 06:16:49.851 INFO [22285]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kutm4fg6eqo0t2i5e6a5m84va1ejctc1; _gid=GA1.2.1576981746.1584440209; _gat_gtag_UA_54829827_2=1 -- 06:16:49.851 INFO [22285]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 06:16:49.851 INFO [22285]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:16:49.863 INFO [22285]: COREGRADE is stopping... -- 06:16:49.863 DEBUG [22285]: Closing database connection -- 06:16:49.863 SQL [22285]: pgsql_close() -- 06:16:49.946 INFO [22288]: COREGRADE is starting... -- 06:16:49.946 INFO [22288]: Version from config: 1.0 -- 06:16:49.946 DEBUG [22288]: Connecting to database... -- 06:16:49.946 DEBUG [22288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:16:49.946 SQL [22288]: pgsql_db_connect() -- 06:16:49.950 DEBUG [22288]: Database connection successful -- 06:16:49.950 INFO [22288]: _SERVER found -- 06:16:49.950 INFO [22288]: REMOTE_ADDR = 192.168.1.13 -- 06:16:49.950 INFO [22288]: SERVER_NAME = oameye.works.coregrade.com -- 06:16:49.950 INFO [22288]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kutm4fg6eqo0t2i5e6a5m84va1ejctc1; _gid=GA1.2.1576981746.1584440209; _gat_gtag_UA_54829827_2=1 -- 06:16:49.950 INFO [22288]: QUERY_STRING = /assets/img/footer_1.jpg -- 06:16:49.950 INFO [22288]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:16:49.963 INFO [22288]: COREGRADE is stopping... -- 06:16:49.963 DEBUG [22288]: Closing database connection -- 06:16:49.963 SQL [22288]: pgsql_close() -- 06:16:53.354 INFO [20323]: COREGRADE is starting... -- 06:16:53.355 INFO [20323]: Version from config: 1.0 -- 06:16:53.355 DEBUG [20323]: Connecting to database... -- 06:16:53.355 DEBUG [20323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:16:53.355 SQL [20323]: pgsql_db_connect() -- 06:16:53.356 INFO [20325]: COREGRADE is starting... -- 06:16:53.356 INFO [20325]: Version from config: 1.0 -- 06:16:53.356 DEBUG [20325]: Connecting to database... -- 06:16:53.356 DEBUG [20325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:16:53.356 SQL [20325]: pgsql_db_connect() -- 06:16:53.360 DEBUG [20325]: Database connection successful -- 06:16:53.360 INFO [20325]: _SERVER found -- 06:16:53.360 INFO [20325]: REMOTE_ADDR = 192.168.1.13 -- 06:16:53.360 INFO [20325]: SERVER_NAME = oameye.works.coregrade.com -- 06:16:53.360 INFO [20325]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kutm4fg6eqo0t2i5e6a5m84va1ejctc1; _gid=GA1.2.1576981746.1584440209; _gat_gtag_UA_54829827_2=1 -- 06:16:53.360 INFO [20325]: QUERY_STRING = /auth -- 06:16:53.360 INFO [20325]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:16:53.395 INFO [20325]: COREGRADE is stopping... -- 06:16:53.395 DEBUG [20325]: Closing database connection -- 06:16:53.395 SQL [20325]: pgsql_close() -- 06:16:53.359 DEBUG [20323]: Database connection successful -- 06:16:53.359 INFO [20323]: _SERVER found -- 06:16:53.359 INFO [20323]: REMOTE_ADDR = 192.168.1.13 -- 06:16:53.359 INFO [20323]: SERVER_NAME = oameye.works.coregrade.com -- 06:16:53.359 INFO [20323]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kutm4fg6eqo0t2i5e6a5m84va1ejctc1; _gid=GA1.2.1576981746.1584440209; _gat_gtag_UA_54829827_2=1 -- 06:16:53.359 INFO [20323]: QUERY_STRING = /welcome/viewLogin -- 06:16:53.359 INFO [20323]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:16:53.398 INFO [20323]: COREGRADE is stopping... -- 06:16:53.398 DEBUG [20323]: Closing database connection -- 06:16:53.398 SQL [20323]: pgsql_close() -- 06:16:53.417 INFO [20323]: COREGRADE is starting... -- 06:16:53.417 INFO [20323]: Version from config: 1.0 -- 06:16:53.417 DEBUG [20323]: Connecting to database... -- 06:16:53.417 DEBUG [20323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:16:53.417 SQL [20323]: pgsql_db_connect() -- 06:16:53.421 DEBUG [20323]: Database connection successful -- 06:16:53.421 INFO [20323]: _SERVER found -- 06:16:53.421 INFO [20323]: REMOTE_ADDR = 192.168.1.13 -- 06:16:53.421 INFO [20323]: SERVER_NAME = oameye.works.coregrade.com -- 06:16:53.421 INFO [20323]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kutm4fg6eqo0t2i5e6a5m84va1ejctc1; _gid=GA1.2.1576981746.1584440209; _gat_gtag_UA_54829827_2=1 -- 06:16:53.421 INFO [20323]: QUERY_STRING = /auth/index -- 06:16:53.421 INFO [20323]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:16:53.457 INFO [20323]: COREGRADE is stopping... -- 06:16:53.457 DEBUG [20323]: Closing database connection -- 06:16:53.457 SQL [20323]: pgsql_close() -- 06:16:53.798 INFO [22290]: COREGRADE is starting... -- 06:16:53.798 INFO [22290]: Version from config: 1.0 -- 06:16:53.798 DEBUG [22290]: Connecting to database... -- 06:16:53.798 DEBUG [22290]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:16:53.798 SQL [22290]: pgsql_db_connect() -- 06:16:53.802 DEBUG [22290]: Database connection successful -- 06:16:53.802 INFO [22290]: _SERVER found -- 06:16:53.802 INFO [22290]: REMOTE_ADDR = 192.168.1.13 -- 06:16:53.802 INFO [22290]: SERVER_NAME = oameye.works.coregrade.com -- 06:16:53.802 INFO [22290]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kutm4fg6eqo0t2i5e6a5m84va1ejctc1; _gid=GA1.2.1576981746.1584440209; _gat_gtag_UA_54829827_2=1 -- 06:16:53.802 INFO [22290]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 06:16:53.802 INFO [22290]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:16:53.814 INFO [22290]: COREGRADE is stopping... -- 06:16:53.814 DEBUG [22290]: Closing database connection -- 06:16:53.814 SQL [22290]: pgsql_close() -- 06:16:55.283 INFO [20323]: COREGRADE is starting... -- 06:16:55.283 INFO [20323]: Version from config: 1.0 -- 06:16:55.283 DEBUG [20323]: Connecting to database... -- 06:16:55.283 DEBUG [20323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:16:55.283 SQL [20323]: pgsql_db_connect() -- 06:16:55.318 INFO [20323]: COREGRADE is starting... -- 06:16:55.318 INFO [20323]: Version from config: 1.0 -- 06:16:55.318 DEBUG [20323]: Connecting to database... -- 06:16:55.318 DEBUG [20323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:16:55.318 SQL [20323]: pgsql_db_connect() -- 06:16:55.322 DEBUG [20323]: Database connection successful -- 06:16:55.322 INFO [20323]: _SERVER found -- 06:16:55.322 INFO [20323]: REMOTE_ADDR = 192.168.1.13 -- 06:16:55.322 INFO [20323]: SERVER_NAME = oameye.works.coregrade.com -- 06:16:55.322 INFO [20323]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kutm4fg6eqo0t2i5e6a5m84va1ejctc1; _gid=GA1.2.1576981746.1584440209; _gat_gtag_UA_54829827_2=1 -- 06:16:55.322 INFO [20323]: QUERY_STRING = -- 06:16:55.322 INFO [20323]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:16:55.322 INFO [20323]: SystemStatus()09-09-********~************ -- 06:16:55.322 INFO [20323]: long coregrade_api_main(CVars in, CVars &out) -- 06:16:55.322 INFO [20323]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 06:16:55.322 INFO [20323]: account calls -- 06:16:55.322 INFO [20323]: account_calls() -- 06:16:55.322 INFO [20323]: LoginCoreGradeAccount() -- 06:16:55.322 FLOG_MAX [20323]: REQ_STRING(username) -- 06:16:55.322 FLOG_MAX [20323]: REQ_STRING(password) -- 06:16:55.322 FLOG_MAX [20323]: REQ_STRING(sessionid) -- 06:16:55.322 FLOG_MAX [20323]: long load_db_record( CVars &rec, const char * query, ... ) -- 06:16:55.322 SQL [20323]: pgsql_query() -- 06:16:55.322 SQL [20323]: About to run query: -- 06:16:55.322 SQL [20323]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 06:16:55.326 SQL [20323]: Found rows: 1 -- 06:16:55.326 FLOG_MAX [20323]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 06:16:55.326 INFO [20323]: long SessionCheck(long uid, const char *sessionid, int create ) -- 06:16:55.326 SQL [20323]: pgsql_exec() -- 06:16:55.326 SQL [20323]: About to run query: -- 06:16:55.326 SQL [20323]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 06:16:55.327 SQL [20323]: PQcmdTuples: 1 -- 06:16:55.327 SQL [20323]: Affected rows: 1 -- 06:16:55.327 SQL [20323]: pgsql_exec() -- 06:16:55.327 SQL [20323]: About to run query: -- 06:16:55.327 SQL [20323]: DELETE FROM members_session WHERE member_id=5 -- 06:16:55.327 SQL [20323]: PQcmdTuples: 0 -- 06:16:55.328 SQL [20323]: Affected rows: 0 -- 06:16:55.328 SQL [20323]: pgsql_query() -- 06:16:55.328 SQL [20323]: About to run query: -- 06:16:55.328 SQL [20323]: SELECT * FROM members_session WHERE member_id=5 AND session<>'70F48DDAE3A39C3291A698AC316829F3' -- 06:16:55.328 SQL [20323]: Found rows: 0 -- 06:16:55.328 SQL [20323]: Found rows: 0 -- 06:16:55.328 FLOG_MAX [20323]: long load_db_record( CVars &rec, const char * query, ... ) -- 06:16:55.328 SQL [20323]: pgsql_query() -- 06:16:55.328 SQL [20323]: About to run query: -- 06:16:55.328 SQL [20323]: SELECT * FROM members_session WHERE member_id=5 AND session='70F48DDAE3A39C3291A698AC316829F3' -- 06:16:55.329 SQL [20323]: Found rows: 0 -- 06:16:55.329 SQL [20323]: Found rows: 0 -- 06:16:55.329 FLOG_MAX [20323]: insert_db_record() -- 06:16:55.329 SQL [20323]: pgsql_exec() -- 06:16:55.329 SQL [20323]: About to run query: -- 06:16:55.329 SQL [20323]: INSERT INTO members_session (member_id,session) VALUES ('5','70F48DDAE3A39C3291A698AC316829F3') -- 06:16:55.330 SQL [20323]: PQcmdTuples: 1 -- 06:16:55.330 SQL [20323]: Affected rows: 1 -- 06:16:55.330 FLOG_MAX [20323]: SELECT currval('members_session_id_seq') -- 06:16:55.330 SQL [20323]: pgsql_query() -- 06:16:55.330 SQL [20323]: About to run query: -- 06:16:55.330 SQL [20323]: SELECT currval('members_session_id_seq') -- 06:16:55.331 SQL [20323]: Found rows: 1 -- 06:16:55.331 INFO [20323]: CreateDefaultPage() -- 06:16:55.331 FLOG_MAX [20323]: long load_db_record( CVars &rec, const char * query, ... ) -- 06:16:55.331 SQL [20323]: pgsql_query() -- 06:16:55.331 SQL [20323]: About to run query: -- 06:16:55.331 SQL [20323]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 06:16:55.331 SQL [20323]: Found rows: 1 -- 06:16:55.331 FLOG_MAX [20323]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 06:16:55.331 SQL [20323]: pgsql_query() -- 06:16:55.331 SQL [20323]: About to run query: -- 06:16:55.331 SQL [20323]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 06:16:55.332 SQL [20323]: Found rows: 1 -- 06:16:55.332 INFO [20323]: /CreateDefaultPage() -- 06:16:55.332 INFO [20323]: /LoginCoreGradeAccount() -- 06:16:55.332 INFO [20323]: RET: added=2020-02-05 06:47:23.982154 -- 06:16:55.332 INFO [20323]: RET: email=ameye+11@chiefsoft.com -- 06:16:55.332 INFO [20323]: RET: firstname=Olu -- 06:16:55.332 INFO [20323]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 06:16:55.332 INFO [20323]: RET: id=5 -- 06:16:55.332 INFO [20323]: RET: last_login= -- 06:16:55.332 INFO [20323]: RET: lastname=Amey -- 06:16:55.332 INFO [20323]: RET: loc=192.168.1.13 -- 06:16:55.332 INFO [20323]: RET: member_id=5 -- 06:16:55.332 INFO [20323]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 06:16:55.332 INFO [20323]: RET: phone= -- 06:16:55.332 INFO [20323]: RET: pid= -- 06:16:55.332 INFO [20323]: RET: result=YES I GET TO BACK END -- 06:16:55.332 INFO [20323]: RET: sessionid=70F48DDAE3A39C3291A698AC316829F3 -- 06:16:55.332 INFO [20323]: RET: status=1 -- 06:16:55.332 INFO [20323]: RET: stauts=OK -- 06:16:55.332 INFO [20323]: RET: username=ameye+11@chiefsoft.com -- 06:16:55.332 INFO [20323]: RET: verified= -- 06:16:55.333 INFO [20323]: COREGRADE is stopping... -- 06:16:55.333 DEBUG [20323]: Closing database connection -- 06:16:55.333 SQL [20323]: pgsql_close() -- 06:16:55.287 DEBUG [20323]: Database connection successful -- 06:16:55.287 INFO [20323]: _SERVER found -- 06:16:55.287 INFO [20323]: REMOTE_ADDR = 192.168.1.13 -- 06:16:55.287 INFO [20323]: SERVER_NAME = oameye.works.coregrade.com -- 06:16:55.287 INFO [20323]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kutm4fg6eqo0t2i5e6a5m84va1ejctc1; _gid=GA1.2.1576981746.1584440209; _gat_gtag_UA_54829827_2=1 -- 06:16:55.287 INFO [20323]: QUERY_STRING = /auth -- 06:16:55.287 INFO [20323]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:16:55.334 INFO [20323]: COREGRADE is stopping... -- 06:16:55.334 DEBUG [20323]: Closing database connection -- 06:16:55.334 SQL [20323]: pgsql_close() -- 06:16:55.346 INFO [20323]: COREGRADE is starting... -- 06:16:55.346 INFO [20323]: Version from config: 1.0 -- 06:16:55.346 DEBUG [20323]: Connecting to database... -- 06:16:55.346 DEBUG [20323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:16:55.346 SQL [20323]: pgsql_db_connect() -- 06:16:55.351 DEBUG [20323]: Database connection successful -- 06:16:55.351 INFO [20323]: _SERVER found -- 06:16:55.351 INFO [20323]: REMOTE_ADDR = 192.168.1.13 -- 06:16:55.351 INFO [20323]: SERVER_NAME = oameye.works.coregrade.com -- 06:16:55.351 INFO [20323]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kutm4fg6eqo0t2i5e6a5m84va1ejctc1; _gid=GA1.2.1576981746.1584440209; _gat_gtag_UA_54829827_2=1 -- 06:16:55.351 INFO [20323]: QUERY_STRING = /member/index -- 06:16:55.351 INFO [20323]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:16:55.391 INFO [20323]: COREGRADE is stopping... -- 06:16:55.391 DEBUG [20323]: Closing database connection -- 06:16:55.391 SQL [20323]: pgsql_close() -- 06:16:55.685 INFO [20323]: COREGRADE is starting... -- 06:16:55.685 INFO [20323]: Version from config: 1.0 -- 06:16:55.685 DEBUG [20323]: Connecting to database... -- 06:16:55.685 DEBUG [20323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:16:55.685 SQL [20323]: pgsql_db_connect() -- 06:16:55.689 DEBUG [20323]: Database connection successful -- 06:16:55.689 INFO [20323]: _SERVER found -- 06:16:55.689 INFO [20323]: REMOTE_ADDR = 192.168.1.13 -- 06:16:55.689 INFO [20323]: SERVER_NAME = oameye.works.coregrade.com -- 06:16:55.689 INFO [20323]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kutm4fg6eqo0t2i5e6a5m84va1ejctc1; _gid=GA1.2.1576981746.1584440209; _gat_gtag_UA_54829827_2=1 -- 06:16:55.689 INFO [20323]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 06:16:55.689 INFO [20323]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:16:55.701 INFO [20323]: COREGRADE is stopping... -- 06:16:55.701 DEBUG [20323]: Closing database connection -- 06:16:55.701 SQL [20323]: pgsql_close() -- 06:16:57.449 INFO [20321]: COREGRADE is starting... -- 06:16:57.449 INFO [20321]: Version from config: 1.0 -- 06:16:57.449 DEBUG [20321]: Connecting to database... -- 06:16:57.449 DEBUG [20321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:16:57.449 SQL [20321]: pgsql_db_connect() -- 06:16:57.453 DEBUG [20321]: Database connection successful -- 06:16:57.453 INFO [20321]: _SERVER found -- 06:16:57.453 INFO [20321]: REMOTE_ADDR = 192.168.1.13 -- 06:16:57.453 INFO [20321]: SERVER_NAME = oameye.works.coregrade.com -- 06:16:57.453 INFO [20321]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kutm4fg6eqo0t2i5e6a5m84va1ejctc1; _gid=GA1.2.1576981746.1584440209; _gat_gtag_UA_54829827_2=1 -- 06:16:57.453 INFO [20321]: QUERY_STRING = /member/page -- 06:16:57.453 INFO [20321]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:16:57.498 INFO [20321]: COREGRADE is stopping... -- 06:16:57.498 DEBUG [20321]: Closing database connection -- 06:16:57.498 SQL [20321]: pgsql_close() -- 06:17:08.816 INFO [592]: COREGRADE is starting... -- 06:17:08.816 INFO [592]: Version from config: 1.0 -- 06:17:08.816 DEBUG [592]: Connecting to database... -- 06:17:08.816 DEBUG [592]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:17:08.816 SQL [592]: pgsql_db_connect() -- 06:17:08.820 DEBUG [592]: Database connection successful -- 06:17:08.820 INFO [592]: _SERVER found -- 06:17:08.820 INFO [592]: REMOTE_ADDR = 192.168.1.13 -- 06:17:08.820 INFO [592]: SERVER_NAME = oameye.works.coregrade.com -- 06:17:08.820 INFO [592]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kutm4fg6eqo0t2i5e6a5m84va1ejctc1; _gid=GA1.2.1576981746.1584440209; _gat_gtag_UA_54829827_2=1 -- 06:17:08.820 INFO [592]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 06:17:08.820 INFO [592]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:17:08.835 INFO [592]: COREGRADE is stopping... -- 06:17:08.835 DEBUG [592]: Closing database connection -- 06:17:08.835 SQL [592]: pgsql_close() -- 06:17:08.846 INFO [600]: COREGRADE is starting... -- 06:17:08.847 INFO [600]: Version from config: 1.0 -- 06:17:08.847 DEBUG [600]: Connecting to database... -- 06:17:08.847 DEBUG [600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:17:08.847 SQL [600]: pgsql_db_connect() -- 06:17:08.851 DEBUG [600]: Database connection successful -- 06:17:08.851 INFO [600]: _SERVER found -- 06:17:08.851 INFO [600]: REMOTE_ADDR = 192.168.1.13 -- 06:17:08.851 INFO [600]: SERVER_NAME = oameye.works.coregrade.com -- 06:17:08.851 INFO [600]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kutm4fg6eqo0t2i5e6a5m84va1ejctc1; _gid=GA1.2.1576981746.1584440209; _gat_gtag_UA_54829827_2=1 -- 06:17:08.851 INFO [600]: QUERY_STRING = /assets2/vendors/js/extensions/shepherd.min.js.map -- 06:17:08.851 INFO [600]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:17:08.865 INFO [600]: COREGRADE is stopping... -- 06:17:08.865 DEBUG [600]: Closing database connection -- 06:17:08.865 SQL [600]: pgsql_close() -- 06:17:21.703 INFO [22285]: COREGRADE is starting... -- 06:17:21.703 INFO [22285]: Version from config: 1.0 -- 06:17:21.703 DEBUG [22285]: Connecting to database... -- 06:17:21.703 DEBUG [22285]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:17:21.703 SQL [22285]: pgsql_db_connect() -- 06:17:21.707 DEBUG [22285]: Database connection successful -- 06:17:21.707 INFO [22285]: _SERVER found -- 06:17:21.707 INFO [22285]: REMOTE_ADDR = 192.168.1.13 -- 06:17:21.707 INFO [22285]: SERVER_NAME = oameye.works.coregrade.com -- 06:17:21.707 INFO [22285]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kutm4fg6eqo0t2i5e6a5m84va1ejctc1; _gid=GA1.2.1576981746.1584440209; _gat_gtag_UA_54829827_2=1 -- 06:17:21.707 INFO [22285]: QUERY_STRING = /member/page -- 06:17:21.707 INFO [22285]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:17:21.753 INFO [22285]: COREGRADE is stopping... -- 06:17:21.753 DEBUG [22285]: Closing database connection -- 06:17:21.753 SQL [22285]: pgsql_close() -- 06:17:22.072 INFO [22285]: COREGRADE is starting... -- 06:17:22.072 INFO [22285]: Version from config: 1.0 -- 06:17:22.072 DEBUG [22285]: Connecting to database... -- 06:17:22.072 DEBUG [22285]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:17:22.072 SQL [22285]: pgsql_db_connect() -- 06:17:22.076 DEBUG [22285]: Database connection successful -- 06:17:22.076 INFO [22285]: _SERVER found -- 06:17:22.076 INFO [22285]: REMOTE_ADDR = 192.168.1.13 -- 06:17:22.076 INFO [22285]: SERVER_NAME = oameye.works.coregrade.com -- 06:17:22.076 INFO [22285]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=kutm4fg6eqo0t2i5e6a5m84va1ejctc1; _gid=GA1.2.1576981746.1584440209; _gat_gtag_UA_54829827_2=1 -- 06:17:22.076 INFO [22285]: QUERY_STRING = /favicon.ico -- 06:17:22.076 INFO [22285]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:17:22.087 INFO [22285]: COREGRADE is stopping... -- 06:17:22.087 DEBUG [22285]: Closing database connection -- 06:17:22.087 SQL [22285]: pgsql_close() -- 08:56:58.951 INFO [22288]: COREGRADE is starting... -- 08:56:58.951 INFO [22288]: Version from config: 1.0 -- 08:56:58.951 DEBUG [22288]: Connecting to database... -- 08:56:58.951 DEBUG [22288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:56:58.951 SQL [22288]: pgsql_db_connect() -- 08:56:58.956 DEBUG [22288]: Database connection successful -- 08:56:58.956 INFO [22288]: _SERVER found -- 08:56:58.956 INFO [22288]: REMOTE_ADDR = 192.168.1.13 -- 08:56:58.956 INFO [22288]: SERVER_NAME = oameye.works.coregrade.com -- 08:56:58.956 INFO [22288]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1576981746.1584440209 -- 08:56:58.956 INFO [22288]: QUERY_STRING = /auth -- 08:56:58.956 INFO [22288]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:56:58.993 INFO [22288]: COREGRADE is stopping... -- 08:56:58.993 DEBUG [22288]: Closing database connection -- 08:56:58.993 SQL [22288]: pgsql_close() -- 08:56:59.386 INFO [22288]: COREGRADE is starting... -- 08:56:59.386 INFO [22288]: Version from config: 1.0 -- 08:56:59.386 DEBUG [22288]: Connecting to database... -- 08:56:59.386 DEBUG [22288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:56:59.386 SQL [22288]: pgsql_db_connect() -- 08:56:59.390 DEBUG [22288]: Database connection successful -- 08:56:59.390 INFO [22288]: _SERVER found -- 08:56:59.390 INFO [22288]: REMOTE_ADDR = 192.168.1.13 -- 08:56:59.390 INFO [22288]: SERVER_NAME = oameye.works.coregrade.com -- 08:56:59.390 INFO [22288]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1576981746.1584440209; ci_session=ce6fue93j4qlmm4alhipcfs20olcuiht -- 08:56:59.390 INFO [22288]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 08:56:59.390 INFO [22288]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:56:59.401 INFO [22288]: COREGRADE is stopping... -- 08:56:59.401 DEBUG [22288]: Closing database connection -- 08:56:59.401 SQL [22288]: pgsql_close() -- 08:56:59.411 INFO [22288]: COREGRADE is starting... -- 08:56:59.412 INFO [22288]: Version from config: 1.0 -- 08:56:59.412 DEBUG [22288]: Connecting to database... -- 08:56:59.412 DEBUG [22288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:56:59.412 SQL [22288]: pgsql_db_connect() -- 08:56:59.415 DEBUG [22288]: Database connection successful -- 08:56:59.415 INFO [22288]: _SERVER found -- 08:56:59.415 INFO [22288]: REMOTE_ADDR = 192.168.1.13 -- 08:56:59.415 INFO [22288]: SERVER_NAME = oameye.works.coregrade.com -- 08:56:59.415 INFO [22288]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1576981746.1584440209; ci_session=ce6fue93j4qlmm4alhipcfs20olcuiht -- 08:56:59.415 INFO [22288]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 08:56:59.415 INFO [22288]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:56:59.426 INFO [22288]: COREGRADE is stopping... -- 08:56:59.426 DEBUG [22288]: Closing database connection -- 08:56:59.426 SQL [22288]: pgsql_close() -- 10:02:28.874 INFO [592]: COREGRADE is starting... -- 10:02:28.875 INFO [592]: Version from config: 1.0 -- 10:02:28.875 DEBUG [592]: Connecting to database... -- 10:02:28.875 DEBUG [592]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:02:28.875 SQL [592]: pgsql_db_connect() -- 10:02:28.879 DEBUG [592]: Database connection successful -- 10:02:28.879 INFO [592]: _SERVER found -- 10:02:28.879 INFO [592]: REMOTE_ADDR = 192.168.1.13 -- 10:02:28.879 INFO [592]: SERVER_NAME = oameye.works.coregrade.com -- 10:02:28.879 INFO [592]: QUERY_STRING = /solr/admin/info/system -- 10:02:28.879 INFO [592]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 10:02:28.893 INFO [592]: COREGRADE is stopping... -- 10:02:28.893 DEBUG [592]: Closing database connection -- 10:02:28.893 SQL [592]: pgsql_close() -- 10:02:45.041 INFO [600]: COREGRADE is starting... -- 10:02:45.041 INFO [600]: Version from config: 1.0 -- 10:02:45.041 DEBUG [600]: Connecting to database... -- 10:02:45.041 DEBUG [600]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:02:45.041 SQL [600]: pgsql_db_connect() -- 10:02:45.045 DEBUG [600]: Database connection successful -- 10:02:45.045 INFO [600]: _SERVER found -- 10:02:45.045 INFO [600]: REMOTE_ADDR = 192.168.1.13 -- 10:02:45.045 INFO [600]: SERVER_NAME = oameye.works.coregrade.com -- 10:02:45.045 INFO [600]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 10:02:45.045 INFO [600]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 10:02:45.057 INFO [600]: COREGRADE is stopping... -- 10:02:45.057 DEBUG [600]: Closing database connection -- 10:02:45.057 SQL [600]: pgsql_close() -- 14:27:51.528 INFO [21486]: COREGRADE is starting... -- 14:27:51.528 INFO [21486]: Version from config: 1.0 -- 14:27:51.528 DEBUG [21486]: Connecting to database... -- 14:27:51.528 DEBUG [21486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:27:51.528 SQL [21486]: pgsql_db_connect() -- 14:27:51.573 INFO [21486]: COREGRADE is starting... -- 14:27:51.573 INFO [21486]: Version from config: 1.0 -- 14:27:51.573 DEBUG [21486]: Connecting to database... -- 14:27:51.573 DEBUG [21486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:27:51.573 SQL [21486]: pgsql_db_connect() -- 14:27:51.577 DEBUG [21486]: Database connection successful -- 14:27:51.577 INFO [21486]: _SERVER found -- 14:27:51.577 INFO [21486]: REMOTE_ADDR = 192.168.1.13 -- 14:27:51.577 INFO [21486]: SERVER_NAME = oameye.works.coregrade.com -- 14:27:51.577 INFO [21486]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586 -- 14:27:51.577 INFO [21486]: QUERY_STRING = vlnk=RS-1472309248-772161536-510001152 -- 14:27:51.577 INFO [21486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:27:51.578 INFO [21486]: SystemStatus()09-09-********~************ -- 14:27:51.578 INFO [21486]: long coregrade_api_main(CVars in, CVars &out) -- 14:27:51.578 INFO [21486]: long coregrade_api_main(CVars in, CVars &out) action =11020 -- 14:27:51.578 INFO [21486]: account calls -- 14:27:51.578 INFO [21486]: account_calls() -- 14:27:51.578 INFO [21486]: CreateCoreGradeAccount() -- 14:27:51.578 FLOG_MAX [21486]: REQ_STRING(verify_link) -- 14:27:51.578 FLOG_MAX [21486]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:27:51.578 SQL [21486]: pgsql_query() -- 14:27:51.578 SQL [21486]: About to run query: -- 14:27:51.578 SQL [21486]: SELECT *,id AS pending_id FROM members_pending WHERE verify_link ='RS-1472309248-772161536-510001152' AND expire > now() LIMIT 1 -- 14:27:51.581 SQL [21486]: Found rows: 0 -- 14:27:51.581 SQL [21486]: Found rows: 0 -- 14:27:51.581 FLOG_MAX [21486]: insert_db_record() -- 14:27:51.581 SQL [21486]: pgsql_exec() -- 14:27:51.581 SQL [21486]: About to run query: -- 14:27:51.581 SQL [21486]: INSERT INTO members (email,firstname,lastname,loc,password,phone,username) VALUES ('','','','192.168.1.13','','','') -- 14:27:51.583 SQL [21486]: Affected rows: ERROR -- 14:27:51.583 FLOG_MAX [21486]: SELECT currval('members_id_seq') -- 14:27:51.583 SQL [21486]: pgsql_query() -- 14:27:51.583 SQL [21486]: About to run query: -- 14:27:51.583 SQL [21486]: SELECT currval('members_id_seq') -- 14:27:51.583 SQL [21486]: Found rows: 1 -- 14:27:51.583 SQL [21486]: pgsql_query() -- 14:27:51.583 SQL [21486]: About to run query: -- 14:27:51.583 SQL [21486]: UPDATE members_pending SET status = 5,verified=now() WHERE id = 0 -- 14:27:51.583 SQL [21486]: Found rows: 0 -- 14:27:51.583 SQL [21486]: Found rows: 0 -- 14:27:51.584 INFO [21486]: /CreateCoreGradeAccount() -- 14:27:51.584 INFO [21486]: RET: email= -- 14:27:51.584 INFO [21486]: RET: firstname= -- 14:27:51.584 INFO [21486]: RET: lastname= -- 14:27:51.584 INFO [21486]: RET: member_id=18 -- 14:27:51.584 INFO [21486]: RET: password= -- 14:27:51.584 INFO [21486]: RET: pending_id= -- 14:27:51.584 INFO [21486]: RET: phone= -- 14:27:51.584 INFO [21486]: RET: result=YES I GET TO BACK END -- 14:27:51.584 INFO [21486]: RET: status=prepare to create account -- 14:27:51.584 INFO [21486]: RET: username= -- 14:27:51.585 INFO [21486]: COREGRADE is stopping... -- 14:27:51.585 DEBUG [21486]: Closing database connection -- 14:27:51.585 SQL [21486]: pgsql_close() -- 14:27:51.533 DEBUG [21486]: Database connection successful -- 14:27:51.533 INFO [21486]: _SERVER found -- 14:27:51.533 INFO [21486]: REMOTE_ADDR = 192.168.1.13 -- 14:27:51.533 INFO [21486]: SERVER_NAME = oameye.works.coregrade.com -- 14:27:51.533 INFO [21486]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586 -- 14:27:51.533 INFO [21486]: QUERY_STRING = /vemail -- 14:27:51.533 INFO [21486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:27:51.585 INFO [21486]: COREGRADE is stopping... -- 14:27:51.585 DEBUG [21486]: Closing database connection -- 14:27:51.585 SQL [21486]: pgsql_close() -- 14:27:52.272 INFO [21486]: COREGRADE is starting... -- 14:27:52.272 INFO [21486]: Version from config: 1.0 -- 14:27:52.272 DEBUG [21486]: Connecting to database... -- 14:27:52.272 DEBUG [21486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:27:52.272 SQL [21486]: pgsql_db_connect() -- 14:27:52.276 DEBUG [21486]: Database connection successful -- 14:27:52.276 INFO [21486]: _SERVER found -- 14:27:52.276 INFO [21486]: REMOTE_ADDR = 192.168.1.13 -- 14:27:52.276 INFO [21486]: SERVER_NAME = oameye.works.coregrade.com -- 14:27:52.276 INFO [21486]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=rltbi0es62dlqq7d1qbpc2uejs0e820e -- 14:27:52.276 INFO [21486]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:27:52.276 INFO [21486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:27:52.287 INFO [21486]: COREGRADE is stopping... -- 14:27:52.287 DEBUG [21486]: Closing database connection -- 14:27:52.287 SQL [21486]: pgsql_close() -- 14:27:56.198 INFO [21486]: COREGRADE is starting... -- 14:27:56.199 INFO [21486]: Version from config: 1.0 -- 14:27:56.199 DEBUG [21486]: Connecting to database... -- 14:27:56.199 DEBUG [21486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:27:56.199 SQL [21486]: pgsql_db_connect() -- 14:27:56.234 INFO [21486]: COREGRADE is starting... -- 14:27:56.234 INFO [21486]: Version from config: 1.0 -- 14:27:56.234 DEBUG [21486]: Connecting to database... -- 14:27:56.234 DEBUG [21486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:27:56.234 SQL [21486]: pgsql_db_connect() -- 14:27:56.238 DEBUG [21486]: Database connection successful -- 14:27:56.238 INFO [21486]: _SERVER found -- 14:27:56.238 INFO [21486]: REMOTE_ADDR = 192.168.1.13 -- 14:27:56.238 INFO [21486]: SERVER_NAME = oameye.works.coregrade.com -- 14:27:56.238 INFO [21486]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=rltbi0es62dlqq7d1qbpc2uejs0e820e -- 14:27:56.238 INFO [21486]: QUERY_STRING = -- 14:27:56.238 INFO [21486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:27:56.238 INFO [21486]: SystemStatus()09-09-********~************ -- 14:27:56.238 INFO [21486]: long coregrade_api_main(CVars in, CVars &out) -- 14:27:56.238 INFO [21486]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 14:27:56.238 INFO [21486]: account calls -- 14:27:56.238 INFO [21486]: account_calls() -- 14:27:56.238 INFO [21486]: LoginCoreGradeAccount() -- 14:27:56.238 FLOG_MAX [21486]: REQ_STRING(username) -- 14:27:56.238 FLOG_MAX [21486]: REQ_STRING(password) -- 14:27:56.238 FLOG_MAX [21486]: REQ_STRING(sessionid) -- 14:27:56.238 FLOG_MAX [21486]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:27:56.238 SQL [21486]: pgsql_query() -- 14:27:56.238 SQL [21486]: About to run query: -- 14:27:56.238 SQL [21486]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!') -- 14:27:56.241 SQL [21486]: Found rows: 1 -- 14:27:56.241 FLOG_MAX [21486]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001!')) num_cols=16 -- 14:27:56.241 INFO [21486]: long SessionCheck(long uid, const char *sessionid, int create ) -- 14:27:56.241 SQL [21486]: pgsql_exec() -- 14:27:56.241 SQL [21486]: About to run query: -- 14:27:56.241 SQL [21486]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 14:27:56.243 SQL [21486]: PQcmdTuples: 1 -- 14:27:56.243 SQL [21486]: Affected rows: 1 -- 14:27:56.243 SQL [21486]: pgsql_exec() -- 14:27:56.243 SQL [21486]: About to run query: -- 14:27:56.243 SQL [21486]: DELETE FROM members_session WHERE member_id=7 -- 14:27:56.243 SQL [21486]: PQcmdTuples: 0 -- 14:27:56.243 SQL [21486]: Affected rows: 0 -- 14:27:56.243 SQL [21486]: pgsql_query() -- 14:27:56.243 SQL [21486]: About to run query: -- 14:27:56.243 SQL [21486]: SELECT * FROM members_session WHERE member_id=7 AND session<>'1805EEAAA5FD4A15160F3D8AF9D1A6BE' -- 14:27:56.244 SQL [21486]: Found rows: 0 -- 14:27:56.244 SQL [21486]: Found rows: 0 -- 14:27:56.244 FLOG_MAX [21486]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:27:56.244 SQL [21486]: pgsql_query() -- 14:27:56.244 SQL [21486]: About to run query: -- 14:27:56.244 SQL [21486]: SELECT * FROM members_session WHERE member_id=7 AND session='1805EEAAA5FD4A15160F3D8AF9D1A6BE' -- 14:27:56.245 SQL [21486]: Found rows: 0 -- 14:27:56.245 SQL [21486]: Found rows: 0 -- 14:27:56.245 FLOG_MAX [21486]: insert_db_record() -- 14:27:56.245 SQL [21486]: pgsql_exec() -- 14:27:56.245 SQL [21486]: About to run query: -- 14:27:56.245 SQL [21486]: INSERT INTO members_session (member_id,session) VALUES ('7','1805EEAAA5FD4A15160F3D8AF9D1A6BE') -- 14:27:56.246 SQL [21486]: PQcmdTuples: 1 -- 14:27:56.246 SQL [21486]: Affected rows: 1 -- 14:27:56.246 FLOG_MAX [21486]: SELECT currval('members_session_id_seq') -- 14:27:56.246 SQL [21486]: pgsql_query() -- 14:27:56.246 SQL [21486]: About to run query: -- 14:27:56.246 SQL [21486]: SELECT currval('members_session_id_seq') -- 14:27:56.246 SQL [21486]: Found rows: 1 -- 14:27:56.247 INFO [21486]: CreateDefaultPage() -- 14:27:56.247 FLOG_MAX [21486]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:27:56.247 SQL [21486]: pgsql_query() -- 14:27:56.247 SQL [21486]: About to run query: -- 14:27:56.247 SQL [21486]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 14:27:56.247 SQL [21486]: Found rows: 1 -- 14:27:56.247 FLOG_MAX [21486]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 14:27:56.247 SQL [21486]: pgsql_query() -- 14:27:56.247 SQL [21486]: About to run query: -- 14:27:56.247 SQL [21486]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 14:27:56.247 SQL [21486]: Found rows: 1 -- 14:27:56.247 INFO [21486]: /CreateDefaultPage() -- 14:27:56.247 INFO [21486]: /LoginCoreGradeAccount() -- 14:27:56.247 INFO [21486]: RET: added=2020-02-05 09:42:12.816064 -- 14:27:56.247 INFO [21486]: RET: email=tokslaw@chiefsoft.com -- 14:27:56.247 INFO [21486]: RET: firstname=Tokunbo -- 14:27:56.247 INFO [21486]: RET: folder=5D06B187B1E2285A63AD1D0ECB670D98 -- 14:27:56.247 INFO [21486]: RET: id=7 -- 14:27:56.247 INFO [21486]: RET: last_login= -- 14:27:56.247 INFO [21486]: RET: lastname=Lawal -- 14:27:56.247 INFO [21486]: RET: loc=192.168.1.13 -- 14:27:56.247 INFO [21486]: RET: member_id=7 -- 14:27:56.247 INFO [21486]: RET: password=da144d7793a4a43c8d87bd47dfa3c801 -- 14:27:56.247 INFO [21486]: RET: phone= -- 14:27:56.247 INFO [21486]: RET: pid= -- 14:27:56.247 INFO [21486]: RET: result=YES I GET TO BACK END -- 14:27:56.247 INFO [21486]: RET: sessionid=1805EEAAA5FD4A15160F3D8AF9D1A6BE -- 14:27:56.247 INFO [21486]: RET: status=1 -- 14:27:56.247 INFO [21486]: RET: stauts=OK -- 14:27:56.247 INFO [21486]: RET: username=tokslaw@chiefsoft.com -- 14:27:56.247 INFO [21486]: RET: verified= -- 14:27:56.249 INFO [21486]: COREGRADE is stopping... -- 14:27:56.249 DEBUG [21486]: Closing database connection -- 14:27:56.249 SQL [21486]: pgsql_close() -- 14:27:56.203 DEBUG [21486]: Database connection successful -- 14:27:56.203 INFO [21486]: _SERVER found -- 14:27:56.203 INFO [21486]: REMOTE_ADDR = 192.168.1.13 -- 14:27:56.203 INFO [21486]: SERVER_NAME = oameye.works.coregrade.com -- 14:27:56.203 INFO [21486]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=rltbi0es62dlqq7d1qbpc2uejs0e820e -- 14:27:56.203 INFO [21486]: QUERY_STRING = /auth -- 14:27:56.203 INFO [21486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:27:56.249 INFO [21486]: COREGRADE is stopping... -- 14:27:56.249 DEBUG [21486]: Closing database connection -- 14:27:56.249 SQL [21486]: pgsql_close() -- 14:27:56.259 INFO [21486]: COREGRADE is starting... -- 14:27:56.260 INFO [21486]: Version from config: 1.0 -- 14:27:56.260 DEBUG [21486]: Connecting to database... -- 14:27:56.260 DEBUG [21486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:27:56.260 SQL [21486]: pgsql_db_connect() -- 14:27:56.264 DEBUG [21486]: Database connection successful -- 14:27:56.264 INFO [21486]: _SERVER found -- 14:27:56.264 INFO [21486]: REMOTE_ADDR = 192.168.1.13 -- 14:27:56.264 INFO [21486]: SERVER_NAME = oameye.works.coregrade.com -- 14:27:56.264 INFO [21486]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=rltbi0es62dlqq7d1qbpc2uejs0e820e -- 14:27:56.264 INFO [21486]: QUERY_STRING = /member/index -- 14:27:56.264 INFO [21486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:27:56.305 INFO [21486]: COREGRADE is stopping... -- 14:27:56.305 DEBUG [21486]: Closing database connection -- 14:27:56.305 SQL [21486]: pgsql_close() -- 14:27:56.745 INFO [20322]: COREGRADE is starting... -- 14:27:56.746 INFO [20322]: Version from config: 1.0 -- 14:27:56.746 DEBUG [20322]: Connecting to database... -- 14:27:56.746 DEBUG [20322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:27:56.746 SQL [20322]: pgsql_db_connect() -- 14:27:56.750 DEBUG [20322]: Database connection successful -- 14:27:56.750 INFO [20322]: _SERVER found -- 14:27:56.750 INFO [20322]: REMOTE_ADDR = 192.168.1.13 -- 14:27:56.750 INFO [20322]: SERVER_NAME = oameye.works.coregrade.com -- 14:27:56.750 INFO [20322]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=rltbi0es62dlqq7d1qbpc2uejs0e820e -- 14:27:56.750 INFO [20322]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:27:56.750 INFO [20322]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:27:56.763 INFO [20322]: COREGRADE is stopping... -- 14:27:56.763 DEBUG [20322]: Closing database connection -- 14:27:56.763 SQL [20322]: pgsql_close() -- 14:28:01.917 INFO [20325]: COREGRADE is starting... -- 14:28:01.917 INFO [20325]: Version from config: 1.0 -- 14:28:01.917 DEBUG [20325]: Connecting to database... -- 14:28:01.917 DEBUG [20325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:28:01.917 SQL [20325]: pgsql_db_connect() -- 14:28:01.921 DEBUG [20325]: Database connection successful -- 14:28:01.921 INFO [20325]: _SERVER found -- 14:28:01.921 INFO [20325]: REMOTE_ADDR = 192.168.1.13 -- 14:28:01.921 INFO [20325]: SERVER_NAME = oameye.works.coregrade.com -- 14:28:01.921 INFO [20325]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=rltbi0es62dlqq7d1qbpc2uejs0e820e -- 14:28:01.921 INFO [20325]: QUERY_STRING = /member/configure -- 14:28:01.921 INFO [20325]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:28:01.970 INFO [20325]: COREGRADE is stopping... -- 14:28:01.970 DEBUG [20325]: Closing database connection -- 14:28:01.970 SQL [20325]: pgsql_close() -- 14:28:02.182 INFO [20325]: COREGRADE is starting... -- 14:28:02.182 INFO [20325]: Version from config: 1.0 -- 14:28:02.182 DEBUG [20325]: Connecting to database... -- 14:28:02.182 DEBUG [20325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:28:02.182 SQL [20325]: pgsql_db_connect() -- 14:28:02.186 DEBUG [20325]: Database connection successful -- 14:28:02.186 INFO [20325]: _SERVER found -- 14:28:02.186 INFO [20325]: REMOTE_ADDR = 192.168.1.13 -- 14:28:02.186 INFO [20325]: SERVER_NAME = oameye.works.coregrade.com -- 14:28:02.186 INFO [20325]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=rltbi0es62dlqq7d1qbpc2uejs0e820e -- 14:28:02.186 INFO [20325]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 14:28:02.186 INFO [20325]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:28:02.197 INFO [20325]: COREGRADE is stopping... -- 14:28:02.197 DEBUG [20325]: Closing database connection -- 14:28:02.197 SQL [20325]: pgsql_close() -- 15:36:23.099 INFO [22288]: COREGRADE is starting... -- 15:36:23.099 INFO [22288]: Version from config: 1.0 -- 15:36:23.099 DEBUG [22288]: Connecting to database... -- 15:36:23.099 DEBUG [22288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:36:23.099 SQL [22288]: pgsql_db_connect() -- 15:36:23.142 INFO [22288]: COREGRADE is starting... -- 15:36:23.142 INFO [22288]: Version from config: 1.0 -- 15:36:23.142 DEBUG [22288]: Connecting to database... -- 15:36:23.142 DEBUG [22288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:36:23.142 SQL [22288]: pgsql_db_connect() -- 15:36:23.147 DEBUG [22288]: Database connection successful -- 15:36:23.147 INFO [22288]: _SERVER found -- 15:36:23.147 INFO [22288]: REMOTE_ADDR = 192.168.1.13 -- 15:36:23.147 INFO [22288]: SERVER_NAME = oameye.works.coregrade.com -- 15:36:23.147 INFO [22288]: QUERY_STRING = vlnk=RS-1472309248-772161536-510001152 -- 15:36:23.147 INFO [22288]: HTTP_X_FORWARDED_FOR = 66.102.8.120 -- 15:36:23.147 INFO [22288]: SystemStatus()09-09-********~************ -- 15:36:23.147 INFO [22288]: long coregrade_api_main(CVars in, CVars &out) -- 15:36:23.147 INFO [22288]: long coregrade_api_main(CVars in, CVars &out) action =11020 -- 15:36:23.147 INFO [22288]: account calls -- 15:36:23.147 INFO [22288]: account_calls() -- 15:36:23.147 INFO [22288]: CreateCoreGradeAccount() -- 15:36:23.147 FLOG_MAX [22288]: REQ_STRING(verify_link) -- 15:36:23.147 FLOG_MAX [22288]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:36:23.147 SQL [22288]: pgsql_query() -- 15:36:23.147 SQL [22288]: About to run query: -- 15:36:23.147 SQL [22288]: SELECT *,id AS pending_id FROM members_pending WHERE verify_link ='RS-1472309248-772161536-510001152' AND expire > now() LIMIT 1 -- 15:36:23.151 SQL [22288]: Found rows: 0 -- 15:36:23.151 SQL [22288]: Found rows: 0 -- 15:36:23.151 FLOG_MAX [22288]: insert_db_record() -- 15:36:23.151 SQL [22288]: pgsql_exec() -- 15:36:23.151 SQL [22288]: About to run query: -- 15:36:23.151 SQL [22288]: INSERT INTO members (email,firstname,lastname,loc,password,phone,username) VALUES ('','','','192.168.1.13','','','') -- 15:36:23.152 SQL [22288]: Affected rows: ERROR -- 15:36:23.152 FLOG_MAX [22288]: SELECT currval('members_id_seq') -- 15:36:23.152 SQL [22288]: pgsql_query() -- 15:36:23.152 SQL [22288]: About to run query: -- 15:36:23.152 SQL [22288]: SELECT currval('members_id_seq') -- 15:36:23.153 SQL [22288]: Found rows: 1 -- 15:36:23.153 SQL [22288]: pgsql_query() -- 15:36:23.153 SQL [22288]: About to run query: -- 15:36:23.153 SQL [22288]: UPDATE members_pending SET status = 5,verified=now() WHERE id = 0 -- 15:36:23.153 SQL [22288]: Found rows: 0 -- 15:36:23.153 SQL [22288]: Found rows: 0 -- 15:36:23.153 INFO [22288]: /CreateCoreGradeAccount() -- 15:36:23.153 INFO [22288]: RET: email= -- 15:36:23.153 INFO [22288]: RET: firstname= -- 15:36:23.153 INFO [22288]: RET: lastname= -- 15:36:23.153 INFO [22288]: RET: member_id=19 -- 15:36:23.153 INFO [22288]: RET: password= -- 15:36:23.153 INFO [22288]: RET: pending_id= -- 15:36:23.153 INFO [22288]: RET: phone= -- 15:36:23.153 INFO [22288]: RET: result=YES I GET TO BACK END -- 15:36:23.153 INFO [22288]: RET: status=prepare to create account -- 15:36:23.153 INFO [22288]: RET: username= -- 15:36:23.155 INFO [22288]: COREGRADE is stopping... -- 15:36:23.155 DEBUG [22288]: Closing database connection -- 15:36:23.155 SQL [22288]: pgsql_close() -- 15:36:23.105 DEBUG [22288]: Database connection successful -- 15:36:23.105 INFO [22288]: _SERVER found -- 15:36:23.105 INFO [22288]: REMOTE_ADDR = 192.168.1.13 -- 15:36:23.105 INFO [22288]: SERVER_NAME = oameye.works.coregrade.com -- 15:36:23.105 INFO [22288]: QUERY_STRING = /vemail -- 15:36:23.105 INFO [22288]: HTTP_X_FORWARDED_FOR = 66.102.8.120 -- 15:36:23.155 INFO [22288]: COREGRADE is stopping... -- 15:36:23.155 DEBUG [22288]: Closing database connection -- 15:36:23.155 SQL [22288]: pgsql_close() -- 15:36:23.788 INFO [22290]: COREGRADE is starting... -- 15:36:23.788 INFO [22290]: Version from config: 1.0 -- 15:36:23.788 DEBUG [22290]: Connecting to database... -- 15:36:23.788 DEBUG [22290]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:36:23.788 SQL [22290]: pgsql_db_connect() -- 15:36:23.792 DEBUG [22290]: Database connection successful -- 15:36:23.792 INFO [22290]: _SERVER found -- 15:36:23.792 INFO [22290]: REMOTE_ADDR = 192.168.1.13 -- 15:36:23.792 INFO [22290]: SERVER_NAME = oameye.works.coregrade.com -- 15:36:23.792 INFO [22290]: HTTP_COOKIE = ci_session=n9nf6sot285npd1ak3s501a4c3714fup -- 15:36:23.792 INFO [22290]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:36:23.792 INFO [22290]: HTTP_X_FORWARDED_FOR = 66.102.8.118 -- 15:36:23.804 INFO [22290]: COREGRADE is stopping... -- 15:36:23.804 DEBUG [22290]: Closing database connection -- 15:36:23.804 SQL [22290]: pgsql_close() -- 20:44:00.672 INFO [20322]: COREGRADE is starting... -- 20:44:00.673 INFO [20322]: Version from config: 1.0 -- 20:44:00.673 DEBUG [20322]: Connecting to database... -- 20:44:00.673 DEBUG [20322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:44:00.673 SQL [20322]: pgsql_db_connect() -- 20:44:00.679 DEBUG [20322]: Database connection successful -- 20:44:00.679 INFO [20322]: _SERVER found -- 20:44:00.679 INFO [20322]: REMOTE_ADDR = 192.168.1.13 -- 20:44:00.679 INFO [20322]: SERVER_NAME = oameye.works.coregrade.com -- 20:44:00.679 INFO [20322]: QUERY_STRING = -- 20:44:00.679 INFO [20322]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 20:44:00.718 INFO [20322]: COREGRADE is stopping... -- 20:44:00.718 DEBUG [20322]: Closing database connection -- 20:44:00.718 SQL [20322]: pgsql_close() -- 21:51:33.138 INFO [20323]: COREGRADE is starting... -- 21:51:33.138 INFO [20323]: Version from config: 1.0 -- 21:51:33.138 DEBUG [20323]: Connecting to database... -- 21:51:33.138 DEBUG [20323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:33.138 SQL [20323]: pgsql_db_connect() -- 21:51:33.143 DEBUG [20323]: Database connection successful -- 21:51:33.143 INFO [20323]: _SERVER found -- 21:51:33.143 INFO [20323]: REMOTE_ADDR = 192.168.1.13 -- 21:51:33.143 INFO [20323]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:33.143 INFO [20323]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586 -- 21:51:33.143 INFO [20323]: QUERY_STRING = -- 21:51:33.143 INFO [20323]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:33.181 INFO [20323]: COREGRADE is stopping... -- 21:51:33.181 DEBUG [20323]: Closing database connection -- 21:51:33.181 SQL [20323]: pgsql_close() -- 21:51:33.668 INFO [22285]: COREGRADE is starting... -- 21:51:33.669 INFO [22285]: Version from config: 1.0 -- 21:51:33.669 DEBUG [22285]: Connecting to database... -- 21:51:33.669 DEBUG [22285]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:33.669 SQL [22285]: pgsql_db_connect() -- 21:51:33.671 INFO [21486]: COREGRADE is starting... -- 21:51:33.671 INFO [21486]: Version from config: 1.0 -- 21:51:33.671 DEBUG [21486]: Connecting to database... -- 21:51:33.671 DEBUG [21486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:33.671 SQL [21486]: pgsql_db_connect() -- 21:51:33.674 DEBUG [22285]: Database connection successful -- 21:51:33.674 INFO [22285]: _SERVER found -- 21:51:33.674 INFO [22285]: REMOTE_ADDR = 192.168.1.13 -- 21:51:33.674 INFO [22285]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:33.674 INFO [22285]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=fiue75kv9iis93sevilbclhbeuaj19uk -- 21:51:33.674 INFO [22285]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 21:51:33.674 INFO [22285]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:33.688 INFO [22285]: COREGRADE is stopping... -- 21:51:33.688 DEBUG [22285]: Closing database connection -- 21:51:33.688 SQL [22285]: pgsql_close() -- 21:51:33.676 DEBUG [21486]: Database connection successful -- 21:51:33.676 INFO [21486]: _SERVER found -- 21:51:33.676 INFO [21486]: REMOTE_ADDR = 192.168.1.13 -- 21:51:33.676 INFO [21486]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:33.676 INFO [21486]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=fiue75kv9iis93sevilbclhbeuaj19uk -- 21:51:33.676 INFO [21486]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:51:33.676 INFO [21486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:33.689 INFO [21486]: COREGRADE is stopping... -- 21:51:33.689 DEBUG [21486]: Closing database connection -- 21:51:33.689 SQL [21486]: pgsql_close() -- 21:51:35.211 INFO [21486]: COREGRADE is starting... -- 21:51:35.211 INFO [21486]: Version from config: 1.0 -- 21:51:35.211 DEBUG [21486]: Connecting to database... -- 21:51:35.211 DEBUG [21486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:35.211 SQL [21486]: pgsql_db_connect() -- 21:51:35.219 INFO [22285]: COREGRADE is starting... -- 21:51:35.219 INFO [22285]: Version from config: 1.0 -- 21:51:35.219 DEBUG [22285]: Connecting to database... -- 21:51:35.219 DEBUG [22285]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:35.219 SQL [22285]: pgsql_db_connect() -- 21:51:35.215 DEBUG [21486]: Database connection successful -- 21:51:35.215 INFO [21486]: _SERVER found -- 21:51:35.215 INFO [21486]: REMOTE_ADDR = 192.168.1.13 -- 21:51:35.215 INFO [21486]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:35.215 INFO [21486]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=fiue75kv9iis93sevilbclhbeuaj19uk; _gid=GA1.2.1013682261.1584496293; _gat_gtag_UA_54829827_2=1 -- 21:51:35.215 INFO [21486]: QUERY_STRING = /welcome/viewLogin -- 21:51:35.215 INFO [21486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:35.246 INFO [21486]: COREGRADE is stopping... -- 21:51:35.246 DEBUG [21486]: Closing database connection -- 21:51:35.246 SQL [21486]: pgsql_close() -- 21:51:35.223 DEBUG [22285]: Database connection successful -- 21:51:35.223 INFO [22285]: _SERVER found -- 21:51:35.223 INFO [22285]: REMOTE_ADDR = 192.168.1.13 -- 21:51:35.223 INFO [22285]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:35.223 INFO [22285]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=fiue75kv9iis93sevilbclhbeuaj19uk; _gid=GA1.2.1013682261.1584496293; _gat_gtag_UA_54829827_2=1 -- 21:51:35.223 INFO [22285]: QUERY_STRING = /auth -- 21:51:35.223 INFO [22285]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:35.257 INFO [22285]: COREGRADE is stopping... -- 21:51:35.257 DEBUG [22285]: Closing database connection -- 21:51:35.257 SQL [22285]: pgsql_close() -- 21:51:35.260 INFO [21486]: COREGRADE is starting... -- 21:51:35.260 INFO [21486]: Version from config: 1.0 -- 21:51:35.260 DEBUG [21486]: Connecting to database... -- 21:51:35.260 DEBUG [21486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:35.260 SQL [21486]: pgsql_db_connect() -- 21:51:35.264 DEBUG [21486]: Database connection successful -- 21:51:35.264 INFO [21486]: _SERVER found -- 21:51:35.264 INFO [21486]: REMOTE_ADDR = 192.168.1.13 -- 21:51:35.264 INFO [21486]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:35.264 INFO [21486]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=fiue75kv9iis93sevilbclhbeuaj19uk; _gid=GA1.2.1013682261.1584496293; _gat_gtag_UA_54829827_2=1 -- 21:51:35.264 INFO [21486]: QUERY_STRING = /auth/index -- 21:51:35.264 INFO [21486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:35.296 INFO [21486]: COREGRADE is stopping... -- 21:51:35.296 DEBUG [21486]: Closing database connection -- 21:51:35.296 SQL [21486]: pgsql_close() -- 21:51:35.566 INFO [21486]: COREGRADE is starting... -- 21:51:35.566 INFO [21486]: Version from config: 1.0 -- 21:51:35.566 DEBUG [21486]: Connecting to database... -- 21:51:35.566 DEBUG [21486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:35.566 SQL [21486]: pgsql_db_connect() -- 21:51:35.575 INFO [20321]: COREGRADE is starting... -- 21:51:35.575 INFO [20321]: Version from config: 1.0 -- 21:51:35.575 DEBUG [20321]: Connecting to database... -- 21:51:35.575 DEBUG [20321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:35.575 SQL [20321]: pgsql_db_connect() -- 21:51:35.570 DEBUG [21486]: Database connection successful -- 21:51:35.570 INFO [21486]: _SERVER found -- 21:51:35.570 INFO [21486]: REMOTE_ADDR = 192.168.1.13 -- 21:51:35.570 INFO [21486]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:35.570 INFO [21486]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=fiue75kv9iis93sevilbclhbeuaj19uk; _gid=GA1.2.1013682261.1584496293; _gat_gtag_UA_54829827_2=1 -- 21:51:35.570 INFO [21486]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:51:35.570 INFO [21486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:35.582 INFO [21486]: COREGRADE is stopping... -- 21:51:35.582 DEBUG [21486]: Closing database connection -- 21:51:35.582 SQL [21486]: pgsql_close() -- 21:51:35.579 DEBUG [20321]: Database connection successful -- 21:51:35.579 INFO [20321]: _SERVER found -- 21:51:35.579 INFO [20321]: REMOTE_ADDR = 192.168.1.13 -- 21:51:35.579 INFO [20321]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:35.579 INFO [20321]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=fiue75kv9iis93sevilbclhbeuaj19uk; _gid=GA1.2.1013682261.1584496293; _gat_gtag_UA_54829827_2=1 -- 21:51:35.579 INFO [20321]: QUERY_STRING = /assets2/data/locales/en.json -- 21:51:35.579 INFO [20321]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:35.592 INFO [20321]: COREGRADE is stopping... -- 21:51:35.592 DEBUG [20321]: Closing database connection -- 21:51:35.592 SQL [20321]: pgsql_close() -- 21:51:36.959 INFO [20321]: COREGRADE is starting... -- 21:51:36.959 INFO [20321]: Version from config: 1.0 -- 21:51:36.959 DEBUG [20321]: Connecting to database... -- 21:51:36.959 DEBUG [20321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:36.959 SQL [20321]: pgsql_db_connect() -- 21:51:36.963 DEBUG [20321]: Database connection successful -- 21:51:36.963 INFO [20321]: _SERVER found -- 21:51:36.963 INFO [20321]: REMOTE_ADDR = 192.168.1.13 -- 21:51:36.963 INFO [20321]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:36.963 INFO [20321]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=fiue75kv9iis93sevilbclhbeuaj19uk; _gid=GA1.2.1013682261.1584496293; _gat_gtag_UA_54829827_2=1 -- 21:51:36.963 INFO [20321]: QUERY_STRING = /auth -- 21:51:36.963 INFO [20321]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:37.038 INFO [20321]: COREGRADE is starting... -- 21:51:37.038 INFO [20321]: Version from config: 1.0 -- 21:51:37.038 DEBUG [20321]: Connecting to database... -- 21:51:37.038 DEBUG [20321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:37.038 SQL [20321]: pgsql_db_connect() -- 21:51:37.042 DEBUG [20321]: Database connection successful -- 21:51:37.042 INFO [20321]: _SERVER found -- 21:51:37.042 INFO [20321]: REMOTE_ADDR = 192.168.1.13 -- 21:51:37.042 INFO [20321]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:37.042 INFO [20321]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=fiue75kv9iis93sevilbclhbeuaj19uk; _gid=GA1.2.1013682261.1584496293; _gat_gtag_UA_54829827_2=1 -- 21:51:37.042 INFO [20321]: QUERY_STRING = /member/index -- 21:51:37.042 INFO [20321]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:37.083 INFO [20321]: COREGRADE is stopping... -- 21:51:37.083 DEBUG [20321]: Closing database connection -- 21:51:37.083 SQL [20321]: pgsql_close() -- 21:51:37.435 INFO [21486]: COREGRADE is starting... -- 21:51:37.435 INFO [21486]: Version from config: 1.0 -- 21:51:37.435 DEBUG [21486]: Connecting to database... -- 21:51:37.435 DEBUG [21486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:37.435 SQL [21486]: pgsql_db_connect() -- 21:51:37.439 DEBUG [21486]: Database connection successful -- 21:51:37.439 INFO [21486]: _SERVER found -- 21:51:37.439 INFO [21486]: REMOTE_ADDR = 192.168.1.13 -- 21:51:37.439 INFO [21486]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:37.439 INFO [21486]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=fiue75kv9iis93sevilbclhbeuaj19uk; _gid=GA1.2.1013682261.1584496293; _gat_gtag_UA_54829827_2=1 -- 21:51:37.439 INFO [21486]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:51:37.439 INFO [21486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:37.451 INFO [21486]: COREGRADE is stopping... -- 21:51:37.451 DEBUG [21486]: Closing database connection -- 21:51:37.451 SQL [21486]: pgsql_close() -- 21:51:37.938 INFO [20321]: COREGRADE is starting... -- 21:51:37.938 INFO [20321]: Version from config: 1.0 -- 21:51:37.938 DEBUG [20321]: Connecting to database... -- 21:51:37.938 DEBUG [20321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:37.938 SQL [20321]: pgsql_db_connect() -- 21:51:37.942 DEBUG [20321]: Database connection successful -- 21:51:37.942 INFO [20321]: _SERVER found -- 21:51:37.942 INFO [20321]: REMOTE_ADDR = 192.168.1.13 -- 21:51:37.942 INFO [20321]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:37.942 INFO [20321]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=fiue75kv9iis93sevilbclhbeuaj19uk; _gid=GA1.2.1013682261.1584496293; _gat_gtag_UA_54829827_2=1 -- 21:51:37.942 INFO [20321]: QUERY_STRING = /assets2/data/locales/en.json -- 21:51:37.942 INFO [20321]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:37.953 INFO [20321]: COREGRADE is stopping... -- 21:51:37.953 DEBUG [20321]: Closing database connection -- 21:51:37.953 SQL [20321]: pgsql_close() -- 21:51:42.683 INFO [20321]: COREGRADE is starting... -- 21:51:42.684 INFO [20321]: Version from config: 1.0 -- 21:51:42.684 DEBUG [20321]: Connecting to database... -- 21:51:42.684 DEBUG [20321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:42.684 SQL [20321]: pgsql_db_connect() -- 21:51:42.688 DEBUG [20321]: Database connection successful -- 21:51:42.688 INFO [20321]: _SERVER found -- 21:51:42.688 INFO [20321]: REMOTE_ADDR = 192.168.1.13 -- 21:51:42.688 INFO [20321]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:42.688 INFO [20321]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=fiue75kv9iis93sevilbclhbeuaj19uk; _gid=GA1.2.1013682261.1584496293; _gat_gtag_UA_54829827_2=1 -- 21:51:42.688 INFO [20321]: QUERY_STRING = /member/page -- 21:51:42.688 INFO [20321]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:42.729 INFO [20321]: COREGRADE is stopping... -- 21:51:42.729 DEBUG [20321]: Closing database connection -- 21:51:42.729 SQL [20321]: pgsql_close() -- 21:51:42.927 INFO [20321]: COREGRADE is starting... -- 21:51:42.927 INFO [20321]: Version from config: 1.0 -- 21:51:42.927 DEBUG [20321]: Connecting to database... -- 21:51:42.927 DEBUG [20321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:42.927 SQL [20321]: pgsql_db_connect() -- 21:51:42.931 DEBUG [20321]: Database connection successful -- 21:51:42.931 INFO [20321]: _SERVER found -- 21:51:42.931 INFO [20321]: REMOTE_ADDR = 192.168.1.13 -- 21:51:42.931 INFO [20321]: SERVER_NAME = tokslaw.works.coregrade.com -- 21:51:42.931 INFO [20321]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=fiue75kv9iis93sevilbclhbeuaj19uk; _gid=GA1.2.1013682261.1584496293; _gat_gtag_UA_54829827_2=1 -- 21:51:42.931 INFO [20321]: QUERY_STRING = /assets2/data/locales/en.json -- 21:51:42.931 INFO [20321]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:42.942 INFO [20321]: COREGRADE is stopping... -- 21:51:42.942 DEBUG [20321]: Closing database connection -- 21:51:42.942 SQL [20321]: pgsql_close() -- 02:44:23.744 INFO [22288]: COREGRADE is starting... -- 02:44:23.745 INFO [22288]: Version from config: 1.0 -- 02:44:23.745 DEBUG [22288]: Connecting to database... -- 02:44:23.745 DEBUG [22288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:44:23.745 SQL [22288]: pgsql_db_connect() -- 02:44:23.750 DEBUG [22288]: Database connection successful -- 02:44:23.750 INFO [22288]: _SERVER found -- 02:44:23.750 INFO [22288]: REMOTE_ADDR = 192.168.1.13 -- 02:44:23.750 INFO [22288]: SERVER_NAME = oameye.works.coregrade.com -- 02:44:23.750 INFO [22288]: QUERY_STRING = -- 02:44:23.750 INFO [22288]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 02:44:23.785 INFO [22288]: COREGRADE is stopping... -- 02:44:23.785 DEBUG [22288]: Closing database connection -- 02:44:23.785 SQL [22288]: pgsql_close() -- 04:13:53.575 INFO [22290]: COREGRADE is starting... -- 04:13:53.576 INFO [22290]: Version from config: 1.0 -- 04:13:53.576 DEBUG [22290]: Connecting to database... -- 04:13:53.576 DEBUG [22290]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:13:53.576 SQL [22290]: pgsql_db_connect() -- 04:13:53.580 DEBUG [22290]: Database connection successful -- 04:13:53.580 INFO [22290]: _SERVER found -- 04:13:53.580 INFO [22290]: REMOTE_ADDR = 192.168.1.13 -- 04:13:53.580 INFO [22290]: SERVER_NAME = oameye.works.coregrade.com -- 04:13:53.580 INFO [22290]: QUERY_STRING = /.well-known/acme-challenge/wCB6c2GNU_4MGlUj1bpmmrRSgdOuMJgH57v_Rrd2lIs -- 04:13:53.580 INFO [22290]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 04:13:53.593 INFO [22290]: COREGRADE is stopping... -- 04:13:53.593 DEBUG [22290]: Closing database connection -- 04:13:53.593 SQL [22290]: pgsql_close() -- 04:13:54.352 INFO [20325]: COREGRADE is starting... -- 04:13:54.352 INFO [20325]: Version from config: 1.0 -- 04:13:54.352 DEBUG [20325]: Connecting to database... -- 04:13:54.352 DEBUG [20325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:13:54.352 SQL [20325]: pgsql_db_connect() -- 04:13:54.367 INFO [592]: COREGRADE is starting... -- 04:13:54.367 INFO [592]: Version from config: 1.0 -- 04:13:54.367 DEBUG [592]: Connecting to database... -- 04:13:54.367 DEBUG [592]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:13:54.367 SQL [592]: pgsql_db_connect() -- 04:13:54.356 DEBUG [20325]: Database connection successful -- 04:13:54.356 INFO [20325]: _SERVER found -- 04:13:54.356 INFO [20325]: REMOTE_ADDR = 192.168.1.13 -- 04:13:54.356 INFO [20325]: SERVER_NAME = oameye.works.coregrade.com -- 04:13:54.356 INFO [20325]: QUERY_STRING = /.well-known/acme-challenge/wCB6c2GNU_4MGlUj1bpmmrRSgdOuMJgH57v_Rrd2lIs -- 04:13:54.356 INFO [20325]: HTTP_X_FORWARDED_FOR = 18.194.58.132 -- 04:13:54.370 INFO [20325]: COREGRADE is stopping... -- 04:13:54.370 DEBUG [20325]: Closing database connection -- 04:13:54.370 SQL [20325]: pgsql_close() -- 04:13:54.391 INFO [21486]: COREGRADE is starting... -- 04:13:54.392 INFO [21486]: Version from config: 1.0 -- 04:13:54.392 DEBUG [21486]: Connecting to database... -- 04:13:54.392 DEBUG [21486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:13:54.392 SQL [21486]: pgsql_db_connect() -- 04:13:54.371 DEBUG [592]: Database connection successful -- 04:13:54.371 INFO [592]: _SERVER found -- 04:13:54.371 INFO [592]: REMOTE_ADDR = 192.168.1.13 -- 04:13:54.371 INFO [592]: SERVER_NAME = oameye.works.coregrade.com -- 04:13:54.371 INFO [592]: QUERY_STRING = /.well-known/acme-challenge/wCB6c2GNU_4MGlUj1bpmmrRSgdOuMJgH57v_Rrd2lIs -- 04:13:54.371 INFO [592]: HTTP_X_FORWARDED_FOR = 34.222.229.130 -- 04:13:54.392 INFO [592]: COREGRADE is stopping... -- 04:13:54.392 DEBUG [592]: Closing database connection -- 04:13:54.392 SQL [592]: pgsql_close() -- 04:13:54.396 DEBUG [21486]: Database connection successful -- 04:13:54.396 INFO [21486]: _SERVER found -- 04:13:54.396 INFO [21486]: REMOTE_ADDR = 192.168.1.13 -- 04:13:54.396 INFO [21486]: SERVER_NAME = oameye.works.coregrade.com -- 04:13:54.396 INFO [21486]: QUERY_STRING = /.well-known/acme-challenge/wCB6c2GNU_4MGlUj1bpmmrRSgdOuMJgH57v_Rrd2lIs -- 04:13:54.396 INFO [21486]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 04:13:54.408 INFO [21486]: COREGRADE is stopping... -- 04:13:54.408 DEBUG [21486]: Closing database connection -- 04:13:54.408 SQL [21486]: pgsql_close() -- 05:46:48.082 INFO [22288]: COREGRADE is starting... -- 05:46:48.083 INFO [22288]: Version from config: 1.0 -- 05:46:48.083 DEBUG [22288]: Connecting to database... -- 05:46:48.083 DEBUG [22288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:46:48.083 SQL [22288]: pgsql_db_connect() -- 05:46:48.088 DEBUG [22288]: Database connection successful -- 05:46:48.088 INFO [22288]: _SERVER found -- 05:46:48.088 INFO [22288]: REMOTE_ADDR = 192.168.1.13 -- 05:46:48.088 INFO [22288]: SERVER_NAME = oameye.works.coregrade.com -- 05:46:48.088 INFO [22288]: QUERY_STRING = /solr/admin/info/system -- 05:46:48.088 INFO [22288]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 05:46:48.101 INFO [22288]: COREGRADE is stopping... -- 05:46:48.101 DEBUG [22288]: Closing database connection -- 05:46:48.101 SQL [22288]: pgsql_close() -- 05:55:33.466 INFO [6143]: COREGRADE is starting... -- 05:55:33.467 INFO [6143]: Version from config: 1.0 -- 05:55:33.467 DEBUG [6143]: Connecting to database... -- 05:55:33.467 DEBUG [6143]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:55:33.467 SQL [6143]: pgsql_db_connect() -- 05:55:33.471 DEBUG [6143]: Database connection successful -- 05:55:33.471 INFO [6143]: _SERVER found -- 05:55:33.471 INFO [6143]: REMOTE_ADDR = 192.168.1.13 -- 05:55:33.471 INFO [6143]: SERVER_NAME = oameye.works.coregrade.com -- 05:55:33.471 INFO [6143]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 05:55:33.471 INFO [6143]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 05:55:33.520 INFO [6143]: COREGRADE is stopping... -- 05:55:33.520 DEBUG [6143]: Closing database connection -- 05:55:33.520 SQL [6143]: pgsql_close() -- 05:55:34.402 INFO [6143]: COREGRADE is starting... -- 05:55:34.402 INFO [6143]: Version from config: 1.0 -- 05:55:34.403 DEBUG [6143]: Connecting to database... -- 05:55:34.403 DEBUG [6143]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:55:34.403 SQL [6143]: pgsql_db_connect() -- 05:55:34.407 DEBUG [6143]: Database connection successful -- 05:55:34.407 INFO [6143]: _SERVER found -- 05:55:34.407 INFO [6143]: REMOTE_ADDR = 192.168.1.13 -- 05:55:34.407 INFO [6143]: SERVER_NAME = oameye.works.coregrade.com -- 05:55:34.407 INFO [6143]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 05:55:34.407 INFO [6143]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 05:55:34.439 INFO [6143]: COREGRADE is stopping... -- 05:55:34.439 DEBUG [6143]: Closing database connection -- 05:55:34.439 SQL [6143]: pgsql_close() -- 06:01:23.889 INFO [6144]: COREGRADE is starting... -- 06:01:23.889 INFO [6144]: Version from config: 1.0 -- 06:01:23.889 DEBUG [6144]: Connecting to database... -- 06:01:23.889 DEBUG [6144]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:01:23.889 SQL [6144]: pgsql_db_connect() -- 06:01:23.893 DEBUG [6144]: Database connection successful -- 06:01:23.893 INFO [6144]: _SERVER found -- 06:01:23.893 INFO [6144]: REMOTE_ADDR = 192.168.1.13 -- 06:01:23.893 INFO [6144]: SERVER_NAME = oameye.works.coregrade.com -- 06:01:23.893 INFO [6144]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 06:01:23.893 INFO [6144]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 06:01:23.938 INFO [6144]: COREGRADE is stopping... -- 06:01:23.938 DEBUG [6144]: Closing database connection -- 06:01:23.938 SQL [6144]: pgsql_close() -- 07:52:30.275 INFO [22290]: COREGRADE is starting... -- 07:52:30.275 INFO [22290]: Version from config: 1.0 -- 07:52:30.275 DEBUG [22290]: Connecting to database... -- 07:52:30.275 DEBUG [22290]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:52:30.275 SQL [22290]: pgsql_db_connect() -- 07:52:30.280 DEBUG [22290]: Database connection successful -- 07:52:30.280 INFO [22290]: _SERVER found -- 07:52:30.280 INFO [22290]: REMOTE_ADDR = 192.168.1.13 -- 07:52:30.280 INFO [22290]: SERVER_NAME = oameye.works.coregrade.com -- 07:52:30.280 INFO [22290]: QUERY_STRING = -- 07:52:30.280 INFO [22290]: HTTP_X_FORWARDED_FOR = 209.17.96.98 -- 07:52:30.315 INFO [22290]: COREGRADE is stopping... -- 07:52:30.315 DEBUG [22290]: Closing database connection -- 07:52:30.315 SQL [22290]: pgsql_close() -- 08:38:49.136 INFO [20322]: COREGRADE is starting... -- 08:38:49.137 INFO [20322]: Version from config: 1.0 -- 08:38:49.137 DEBUG [20322]: Connecting to database... -- 08:38:49.137 DEBUG [20322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:38:49.137 SQL [20322]: pgsql_db_connect() -- 08:38:49.141 DEBUG [20322]: Database connection successful -- 08:38:49.141 INFO [20322]: _SERVER found -- 08:38:49.141 INFO [20322]: REMOTE_ADDR = 192.168.1.13 -- 08:38:49.141 INFO [20322]: SERVER_NAME = oameye.works.coregrade.com -- 08:38:49.141 INFO [20322]: QUERY_STRING = -- 08:38:49.141 INFO [20322]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 08:38:49.181 INFO [20322]: COREGRADE is stopping... -- 08:38:49.181 DEBUG [20322]: Closing database connection -- 08:38:49.181 SQL [20322]: pgsql_close() -- 11:25:51.700 INFO [4472]: COREGRADE is starting... -- 11:25:51.701 INFO [4472]: Version from config: 1.0 -- 11:25:51.701 DEBUG [4472]: Connecting to database... -- 11:25:51.701 DEBUG [4472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:25:51.701 SQL [4472]: pgsql_db_connect() -- 11:25:51.706 DEBUG [4472]: Database connection successful -- 11:25:51.706 INFO [4472]: _SERVER found -- 11:25:51.706 INFO [4472]: REMOTE_ADDR = 192.168.1.13 -- 11:25:51.706 INFO [4472]: SERVER_NAME = oameye.works.coregrade.com -- 11:25:51.706 INFO [4472]: QUERY_STRING = -- 11:25:51.706 INFO [4472]: HTTP_X_FORWARDED_FOR = 128.14.134.170 -- 11:25:51.752 INFO [4472]: COREGRADE is stopping... -- 11:25:51.752 DEBUG [4472]: Closing database connection -- 11:25:51.752 SQL [4472]: pgsql_close() -- 13:45:11.229 INFO [20325]: COREGRADE is starting... -- 13:45:11.229 INFO [20325]: Version from config: 1.0 -- 13:45:11.230 DEBUG [20325]: Connecting to database... -- 13:45:11.230 DEBUG [20325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:45:11.230 SQL [20325]: pgsql_db_connect() -- 13:45:11.234 DEBUG [20325]: Database connection successful -- 13:45:11.234 INFO [20325]: _SERVER found -- 13:45:11.234 INFO [20325]: REMOTE_ADDR = 192.168.1.13 -- 13:45:11.234 INFO [20325]: SERVER_NAME = oameye.works.coregrade.com -- 13:45:11.234 INFO [20325]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 13:45:11.234 INFO [20325]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 13:45:11.250 INFO [20325]: COREGRADE is stopping... -- 13:45:11.250 DEBUG [20325]: Closing database connection -- 13:45:11.250 SQL [20325]: pgsql_close() -- 14:11:06.989 INFO [592]: COREGRADE is starting... -- 14:11:06.990 INFO [592]: Version from config: 1.0 -- 14:11:06.990 DEBUG [592]: Connecting to database... -- 14:11:06.990 DEBUG [592]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:11:06.990 SQL [592]: pgsql_db_connect() -- 14:11:06.994 DEBUG [592]: Database connection successful -- 14:11:06.994 INFO [592]: _SERVER found -- 14:11:06.994 INFO [592]: REMOTE_ADDR = 192.168.1.13 -- 14:11:06.994 INFO [592]: SERVER_NAME = oameye.works.coregrade.com -- 14:11:06.994 INFO [592]: QUERY_STRING = -- 14:11:06.994 INFO [592]: HTTP_X_FORWARDED_FOR = 128.14.209.242 -- 14:11:07.039 INFO [592]: COREGRADE is stopping... -- 14:11:07.040 DEBUG [592]: Closing database connection -- 14:11:07.040 SQL [592]: pgsql_close() -- 14:39:03.462 INFO [20323]: COREGRADE is starting... -- 14:39:03.463 INFO [20323]: Version from config: 1.0 -- 14:39:03.463 DEBUG [20323]: Connecting to database... -- 14:39:03.463 DEBUG [20323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:39:03.463 SQL [20323]: pgsql_db_connect() -- 14:39:03.467 DEBUG [20323]: Database connection successful -- 14:39:03.467 INFO [20323]: _SERVER found -- 14:39:03.467 INFO [20323]: REMOTE_ADDR = 192.168.1.13 -- 14:39:03.467 INFO [20323]: SERVER_NAME = oameye.works.coregrade.com -- 14:39:03.467 INFO [20323]: QUERY_STRING = -- 14:39:03.467 INFO [20323]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 14:39:03.504 INFO [20323]: COREGRADE is stopping... -- 14:39:03.504 DEBUG [20323]: Closing database connection -- 14:39:03.504 SQL [20323]: pgsql_close() -- 20:44:51.451 INFO [21486]: COREGRADE is starting... -- 20:44:51.452 INFO [21486]: Version from config: 1.0 -- 20:44:51.452 DEBUG [21486]: Connecting to database... -- 20:44:51.452 DEBUG [21486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:44:51.452 SQL [21486]: pgsql_db_connect() -- 20:44:51.457 DEBUG [21486]: Database connection successful -- 20:44:51.457 INFO [21486]: _SERVER found -- 20:44:51.457 INFO [21486]: REMOTE_ADDR = 192.168.1.13 -- 20:44:51.457 INFO [21486]: SERVER_NAME = oameye.works.coregrade.com -- 20:44:51.457 INFO [21486]: QUERY_STRING = -- 20:44:51.457 INFO [21486]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 20:44:51.491 INFO [21486]: COREGRADE is stopping... -- 20:44:51.491 DEBUG [21486]: Closing database connection -- 20:44:51.491 SQL [21486]: pgsql_close() -- 21:12:30.624 INFO [22288]: COREGRADE is starting... -- 21:12:30.624 INFO [22288]: Version from config: 1.0 -- 21:12:30.624 DEBUG [22288]: Connecting to database... -- 21:12:30.624 DEBUG [22288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:12:30.624 SQL [22288]: pgsql_db_connect() -- 21:12:30.629 DEBUG [22288]: Database connection successful -- 21:12:30.629 INFO [22288]: _SERVER found -- 21:12:30.629 INFO [22288]: REMOTE_ADDR = 192.168.1.13 -- 21:12:30.629 INFO [22288]: SERVER_NAME = oameye.works.coregrade.com -- 21:12:30.629 INFO [22288]: QUERY_STRING = -- 21:12:30.629 INFO [22288]: HTTP_X_FORWARDED_FOR = 198.20.103.178 -- 21:12:30.663 INFO [22288]: COREGRADE is stopping... -- 21:12:30.663 DEBUG [22288]: Closing database connection -- 21:12:30.663 SQL [22288]: pgsql_close() -- 22:25:08.971 INFO [6143]: COREGRADE is starting... -- 22:25:08.971 INFO [6143]: Version from config: 1.0 -- 22:25:08.971 DEBUG [6143]: Connecting to database... -- 22:25:08.971 DEBUG [6143]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:25:08.971 SQL [6143]: pgsql_db_connect() -- 22:25:08.978 DEBUG [6143]: Database connection successful -- 22:25:08.978 INFO [6143]: _SERVER found -- 22:25:08.978 INFO [6143]: REMOTE_ADDR = 192.168.1.13 -- 22:25:08.978 INFO [6143]: SERVER_NAME = oameye.works.coregrade.com -- 22:25:08.978 INFO [6143]: QUERY_STRING = /robots.txt -- 22:25:08.978 INFO [6143]: HTTP_X_FORWARDED_FOR = 66.249.64.180 -- 22:25:08.992 INFO [6143]: COREGRADE is stopping... -- 22:25:08.992 DEBUG [6143]: Closing database connection -- 22:25:08.992 SQL [6143]: pgsql_close() -- 22:25:09.026 INFO [6143]: COREGRADE is starting... -- 22:25:09.026 INFO [6143]: Version from config: 1.0 -- 22:25:09.026 DEBUG [6143]: Connecting to database... -- 22:25:09.026 DEBUG [6143]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:25:09.026 SQL [6143]: pgsql_db_connect() -- 22:25:09.031 DEBUG [6143]: Database connection successful -- 22:25:09.031 INFO [6143]: _SERVER found -- 22:25:09.031 INFO [6143]: REMOTE_ADDR = 192.168.1.13 -- 22:25:09.031 INFO [6143]: SERVER_NAME = oameye.works.coregrade.com -- 22:25:09.031 INFO [6143]: QUERY_STRING = -- 22:25:09.031 INFO [6143]: HTTP_X_FORWARDED_FOR = 66.249.64.180 -- 22:25:09.063 INFO [6143]: COREGRADE is stopping... -- 22:25:09.063 DEBUG [6143]: Closing database connection -- 22:25:09.063 SQL [6143]: pgsql_close() -- 01:28:18.924 INFO [22290]: COREGRADE is starting... -- 01:28:18.924 INFO [22290]: Version from config: 1.0 -- 01:28:18.924 DEBUG [22290]: Connecting to database... -- 01:28:18.924 DEBUG [22290]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:18.924 SQL [22290]: pgsql_db_connect() -- 01:28:18.930 DEBUG [22290]: Database connection successful -- 01:28:18.930 INFO [22290]: _SERVER found -- 01:28:18.930 INFO [22290]: REMOTE_ADDR = 192.168.1.13 -- 01:28:18.930 INFO [22290]: SERVER_NAME = oameye.works.coregrade.com -- 01:28:18.930 INFO [22290]: QUERY_STRING = /favicon.ico -- 01:28:18.930 INFO [22290]: HTTP_X_FORWARDED_FOR = 94.102.49.193 -- 01:28:18.943 INFO [22290]: COREGRADE is stopping... -- 01:28:18.943 DEBUG [22290]: Closing database connection -- 01:28:18.943 SQL [22290]: pgsql_close() -- 02:39:27.997 INFO [20322]: COREGRADE is starting... -- 02:39:27.998 INFO [20322]: Version from config: 1.0 -- 02:39:27.998 DEBUG [20322]: Connecting to database... -- 02:39:27.998 DEBUG [20322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:39:27.998 SQL [20322]: pgsql_db_connect() -- 02:39:28.003 DEBUG [20322]: Database connection successful -- 02:39:28.003 INFO [20322]: _SERVER found -- 02:39:28.003 INFO [20322]: REMOTE_ADDR = 192.168.1.13 -- 02:39:28.003 INFO [20322]: SERVER_NAME = oameye.works.coregrade.com -- 02:39:28.003 INFO [20322]: QUERY_STRING = -- 02:39:28.003 INFO [20322]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 02:39:28.044 INFO [20322]: COREGRADE is stopping... -- 02:39:28.044 DEBUG [20322]: Closing database connection -- 02:39:28.044 SQL [20322]: pgsql_close() -- 03:39:42.137 INFO [4472]: COREGRADE is starting... -- 03:39:42.137 INFO [4472]: Version from config: 1.0 -- 03:39:42.137 DEBUG [4472]: Connecting to database... -- 03:39:42.137 DEBUG [4472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:39:42.137 SQL [4472]: pgsql_db_connect() -- 03:39:42.142 DEBUG [4472]: Database connection successful -- 03:39:42.142 INFO [4472]: _SERVER found -- 03:39:42.142 INFO [4472]: REMOTE_ADDR = 192.168.1.13 -- 03:39:42.142 INFO [4472]: SERVER_NAME = oameye.works.coregrade.com -- 03:39:42.142 INFO [4472]: QUERY_STRING = /.well-known/acme-challenge/JUNIwzYsYd4yeUsWDeSTKGDQ2RBobVxI0AjMyb6t0P0 -- 03:39:42.142 INFO [4472]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 03:39:42.154 INFO [4472]: COREGRADE is stopping... -- 03:39:42.154 DEBUG [4472]: Closing database connection -- 03:39:42.154 SQL [4472]: pgsql_close() -- 03:39:42.661 INFO [20323]: COREGRADE is starting... -- 03:39:42.661 INFO [20323]: Version from config: 1.0 -- 03:39:42.661 DEBUG [20323]: Connecting to database... -- 03:39:42.661 DEBUG [20323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:39:42.661 SQL [20323]: pgsql_db_connect() -- 03:39:42.666 DEBUG [20323]: Database connection successful -- 03:39:42.666 INFO [20323]: _SERVER found -- 03:39:42.666 INFO [20323]: REMOTE_ADDR = 192.168.1.13 -- 03:39:42.666 INFO [20323]: SERVER_NAME = oameye.works.coregrade.com -- 03:39:42.666 INFO [20323]: QUERY_STRING = /.well-known/acme-challenge/JUNIwzYsYd4yeUsWDeSTKGDQ2RBobVxI0AjMyb6t0P0 -- 03:39:42.666 INFO [20323]: HTTP_X_FORWARDED_FOR = 18.194.58.132 -- 03:39:42.678 INFO [20323]: COREGRADE is stopping... -- 03:39:42.678 DEBUG [20323]: Closing database connection -- 03:39:42.678 SQL [20323]: pgsql_close() -- 03:39:42.683 INFO [21486]: COREGRADE is starting... -- 03:39:42.684 INFO [21486]: Version from config: 1.0 -- 03:39:42.684 DEBUG [21486]: Connecting to database... -- 03:39:42.684 DEBUG [21486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:39:42.684 SQL [21486]: pgsql_db_connect() -- 03:39:42.698 INFO [20323]: COREGRADE is starting... -- 03:39:42.698 INFO [20323]: Version from config: 1.0 -- 03:39:42.698 DEBUG [20323]: Connecting to database... -- 03:39:42.698 DEBUG [20323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:39:42.698 SQL [20323]: pgsql_db_connect() -- 03:39:42.687 DEBUG [21486]: Database connection successful -- 03:39:42.687 INFO [21486]: _SERVER found -- 03:39:42.687 INFO [21486]: REMOTE_ADDR = 192.168.1.13 -- 03:39:42.687 INFO [21486]: SERVER_NAME = oameye.works.coregrade.com -- 03:39:42.687 INFO [21486]: QUERY_STRING = /.well-known/acme-challenge/JUNIwzYsYd4yeUsWDeSTKGDQ2RBobVxI0AjMyb6t0P0 -- 03:39:42.687 INFO [21486]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 03:39:42.699 INFO [21486]: COREGRADE is stopping... -- 03:39:42.699 DEBUG [21486]: Closing database connection -- 03:39:42.699 SQL [21486]: pgsql_close() -- 03:39:42.702 DEBUG [20323]: Database connection successful -- 03:39:42.702 INFO [20323]: _SERVER found -- 03:39:42.702 INFO [20323]: REMOTE_ADDR = 192.168.1.13 -- 03:39:42.702 INFO [20323]: SERVER_NAME = oameye.works.coregrade.com -- 03:39:42.702 INFO [20323]: QUERY_STRING = /.well-known/acme-challenge/JUNIwzYsYd4yeUsWDeSTKGDQ2RBobVxI0AjMyb6t0P0 -- 03:39:42.702 INFO [20323]: HTTP_X_FORWARDED_FOR = 34.209.232.166 -- 03:39:42.713 INFO [20323]: COREGRADE is stopping... -- 03:39:42.713 DEBUG [20323]: Closing database connection -- 03:39:42.713 SQL [20323]: pgsql_close() -- 08:41:26.899 INFO [22288]: COREGRADE is starting... -- 08:41:26.899 INFO [22288]: Version from config: 1.0 -- 08:41:26.899 DEBUG [22288]: Connecting to database... -- 08:41:26.899 DEBUG [22288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:41:26.899 SQL [22288]: pgsql_db_connect() -- 08:41:26.904 DEBUG [22288]: Database connection successful -- 08:41:26.904 INFO [22288]: _SERVER found -- 08:41:26.904 INFO [22288]: REMOTE_ADDR = 192.168.1.13 -- 08:41:26.904 INFO [22288]: SERVER_NAME = oameye.works.coregrade.com -- 08:41:26.904 INFO [22288]: QUERY_STRING = -- 08:41:26.904 INFO [22288]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 08:41:26.941 INFO [22288]: COREGRADE is stopping... -- 08:41:26.941 DEBUG [22288]: Closing database connection -- 08:41:26.941 SQL [22288]: pgsql_close() -- 09:58:41.365 INFO [6143]: COREGRADE is starting... -- 09:58:41.365 INFO [6143]: Version from config: 1.0 -- 09:58:41.365 DEBUG [6143]: Connecting to database... -- 09:58:41.365 DEBUG [6143]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:58:41.365 SQL [6143]: pgsql_db_connect() -- 09:58:41.370 DEBUG [6143]: Database connection successful -- 09:58:41.370 INFO [6143]: _SERVER found -- 09:58:41.370 INFO [6143]: REMOTE_ADDR = 192.168.1.13 -- 09:58:41.370 INFO [6143]: SERVER_NAME = oameye.works.coregrade.com -- 09:58:41.370 INFO [6143]: QUERY_STRING = -- 09:58:41.370 INFO [6143]: HTTP_X_FORWARDED_FOR = 128.14.134.170 -- 09:58:41.406 INFO [6143]: COREGRADE is stopping... -- 09:58:41.406 DEBUG [6143]: Closing database connection -- 09:58:41.406 SQL [6143]: pgsql_close() -- 10:03:10.744 INFO [6144]: COREGRADE is starting... -- 10:03:10.745 INFO [6144]: Version from config: 1.0 -- 10:03:10.745 DEBUG [6144]: Connecting to database... -- 10:03:10.745 DEBUG [6144]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:03:10.745 SQL [6144]: pgsql_db_connect() -- 10:03:10.749 DEBUG [6144]: Database connection successful -- 10:03:10.749 INFO [6144]: _SERVER found -- 10:03:10.749 INFO [6144]: REMOTE_ADDR = 192.168.1.13 -- 10:03:10.749 INFO [6144]: SERVER_NAME = oameye.works.coregrade.com -- 10:03:10.749 INFO [6144]: QUERY_STRING = /solr/admin/info/system -- 10:03:10.749 INFO [6144]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 10:03:10.763 INFO [6144]: COREGRADE is stopping... -- 10:03:10.763 DEBUG [6144]: Closing database connection -- 10:03:10.763 SQL [6144]: pgsql_close() -- 10:11:55.529 INFO [22290]: COREGRADE is starting... -- 10:11:55.530 INFO [22290]: Version from config: 1.0 -- 10:11:55.530 DEBUG [22290]: Connecting to database... -- 10:11:55.530 DEBUG [22290]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:11:55.530 SQL [22290]: pgsql_db_connect() -- 10:11:55.534 DEBUG [22290]: Database connection successful -- 10:11:55.534 INFO [22290]: _SERVER found -- 10:11:55.534 INFO [22290]: REMOTE_ADDR = 192.168.1.13 -- 10:11:55.534 INFO [22290]: SERVER_NAME = oameye.works.coregrade.com -- 10:11:55.534 INFO [22290]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 10:11:55.534 INFO [22290]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 10:11:55.566 INFO [22290]: COREGRADE is stopping... -- 10:11:55.566 DEBUG [22290]: Closing database connection -- 10:11:55.566 SQL [22290]: pgsql_close() -- 10:11:55.906 INFO [20322]: COREGRADE is starting... -- 10:11:55.906 INFO [20322]: Version from config: 1.0 -- 10:11:55.906 DEBUG [20322]: Connecting to database... -- 10:11:55.906 DEBUG [20322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:11:55.906 SQL [20322]: pgsql_db_connect() -- 10:11:55.910 DEBUG [20322]: Database connection successful -- 10:11:55.910 INFO [20322]: _SERVER found -- 10:11:55.910 INFO [20322]: REMOTE_ADDR = 192.168.1.13 -- 10:11:55.910 INFO [20322]: SERVER_NAME = oameye.works.coregrade.com -- 10:11:55.910 INFO [20322]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 10:11:55.910 INFO [20322]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 10:11:55.948 INFO [20322]: COREGRADE is stopping... -- 10:11:55.948 DEBUG [20322]: Closing database connection -- 10:11:55.948 SQL [20322]: pgsql_close() -- 10:19:04.094 INFO [4472]: COREGRADE is starting... -- 10:19:04.095 INFO [4472]: Version from config: 1.0 -- 10:19:04.095 DEBUG [4472]: Connecting to database... -- 10:19:04.095 DEBUG [4472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:19:04.095 SQL [4472]: pgsql_db_connect() -- 10:19:04.099 DEBUG [4472]: Database connection successful -- 10:19:04.099 INFO [4472]: _SERVER found -- 10:19:04.099 INFO [4472]: REMOTE_ADDR = 192.168.1.13 -- 10:19:04.099 INFO [4472]: SERVER_NAME = oameye.works.coregrade.com -- 10:19:04.099 INFO [4472]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 10:19:04.099 INFO [4472]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 10:19:04.135 INFO [4472]: COREGRADE is stopping... -- 10:19:04.135 DEBUG [4472]: Closing database connection -- 10:19:04.135 SQL [4472]: pgsql_close() -- 13:23:23.645 INFO [21486]: COREGRADE is starting... -- 13:23:23.647 INFO [21486]: Version from config: 1.0 -- 13:23:23.647 DEBUG [21486]: Connecting to database... -- 13:23:23.647 DEBUG [21486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:23:23.647 SQL [21486]: pgsql_db_connect() -- 13:23:23.654 INFO [20323]: COREGRADE is starting... -- 13:23:23.654 INFO [20323]: Version from config: 1.0 -- 13:23:23.654 DEBUG [20323]: Connecting to database... -- 13:23:23.654 DEBUG [20323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:23:23.655 SQL [20323]: pgsql_db_connect() -- 13:23:23.657 DEBUG [21486]: Database connection successful -- 13:23:23.657 INFO [21486]: _SERVER found -- 13:23:23.657 INFO [21486]: REMOTE_ADDR = 192.168.1.13 -- 13:23:23.657 INFO [21486]: SERVER_NAME = oameye.works.coregrade.com -- 13:23:23.657 INFO [21486]: QUERY_STRING = -- 13:23:23.657 INFO [21486]: HTTP_X_FORWARDED_FOR = 49.51.12.221 -- 13:23:23.697 INFO [21486]: COREGRADE is stopping... -- 13:23:23.697 DEBUG [21486]: Closing database connection -- 13:23:23.697 SQL [21486]: pgsql_close() -- 13:23:23.660 DEBUG [20323]: Database connection successful -- 13:23:23.660 INFO [20323]: _SERVER found -- 13:23:23.660 INFO [20323]: REMOTE_ADDR = 192.168.1.13 -- 13:23:23.660 INFO [20323]: SERVER_NAME = oameye.works.coregrade.com -- 13:23:23.660 INFO [20323]: QUERY_STRING = -- 13:23:23.660 INFO [20323]: HTTP_X_FORWARDED_FOR = 49.51.12.221 -- 13:23:23.701 INFO [20323]: COREGRADE is stopping... -- 13:23:23.701 DEBUG [20323]: Closing database connection -- 13:23:23.701 SQL [20323]: pgsql_close() -- 14:38:27.193 INFO [592]: COREGRADE is starting... -- 14:38:27.193 INFO [592]: Version from config: 1.0 -- 14:38:27.193 DEBUG [592]: Connecting to database... -- 14:38:27.193 DEBUG [592]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:38:27.193 SQL [592]: pgsql_db_connect() -- 14:38:27.199 DEBUG [592]: Database connection successful -- 14:38:27.199 INFO [592]: _SERVER found -- 14:38:27.199 INFO [592]: REMOTE_ADDR = 192.168.1.13 -- 14:38:27.199 INFO [592]: SERVER_NAME = oameye.works.coregrade.com -- 14:38:27.199 INFO [592]: QUERY_STRING = -- 14:38:27.199 INFO [592]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 14:38:27.238 INFO [592]: COREGRADE is stopping... -- 14:38:27.238 DEBUG [592]: Closing database connection -- 14:38:27.238 SQL [592]: pgsql_close() -- 16:11:03.716 INFO [20325]: COREGRADE is starting... -- 16:11:03.717 INFO [20325]: Version from config: 1.0 -- 16:11:03.717 DEBUG [20325]: Connecting to database... -- 16:11:03.717 DEBUG [20325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:03.717 SQL [20325]: pgsql_db_connect() -- 16:11:03.721 DEBUG [20325]: Database connection successful -- 16:11:03.721 INFO [20325]: _SERVER found -- 16:11:03.721 INFO [20325]: REMOTE_ADDR = 192.168.1.13 -- 16:11:03.721 INFO [20325]: SERVER_NAME = oameye.works.coregrade.com -- 16:11:03.721 INFO [20325]: QUERY_STRING = -- 16:11:03.721 INFO [20325]: HTTP_X_FORWARDED_FOR = 62.173.149.38 -- 16:11:03.760 INFO [20325]: COREGRADE is stopping... -- 16:11:03.760 DEBUG [20325]: Closing database connection -- 16:11:03.760 SQL [20325]: pgsql_close() -- 16:40:28.101 INFO [22288]: COREGRADE is starting... -- 16:40:28.101 INFO [22288]: Version from config: 1.0 -- 16:40:28.102 DEBUG [22288]: Connecting to database... -- 16:40:28.102 DEBUG [22288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:40:28.102 SQL [22288]: pgsql_db_connect() -- 16:40:28.106 DEBUG [22288]: Database connection successful -- 16:40:28.106 INFO [22288]: _SERVER found -- 16:40:28.106 INFO [22288]: REMOTE_ADDR = 192.168.1.13 -- 16:40:28.106 INFO [22288]: SERVER_NAME = oameye.works.coregrade.com -- 16:40:28.106 INFO [22288]: QUERY_STRING = -- 16:40:28.106 INFO [22288]: HTTP_X_FORWARDED_FOR = 122.228.19.79 -- 16:40:28.142 INFO [22288]: COREGRADE is stopping... -- 16:40:28.142 DEBUG [22288]: Closing database connection -- 16:40:28.142 SQL [22288]: pgsql_close() -- 17:37:01.747 INFO [6143]: COREGRADE is starting... -- 17:37:01.748 INFO [6143]: Version from config: 1.0 -- 17:37:01.748 DEBUG [6143]: Connecting to database... -- 17:37:01.748 DEBUG [6143]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:01.748 SQL [6143]: pgsql_db_connect() -- 17:37:01.753 DEBUG [6143]: Database connection successful -- 17:37:01.753 INFO [6143]: _SERVER found -- 17:37:01.753 INFO [6143]: REMOTE_ADDR = 192.168.1.13 -- 17:37:01.753 INFO [6143]: SERVER_NAME = oameye.works.coregrade.com -- 17:37:01.753 INFO [6143]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 17:37:01.753 INFO [6143]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 17:37:01.767 INFO [6143]: COREGRADE is stopping... -- 17:37:01.767 DEBUG [6143]: Closing database connection -- 17:37:01.767 SQL [6143]: pgsql_close() -- 20:38:36.179 INFO [6144]: COREGRADE is starting... -- 20:38:36.179 INFO [6144]: Version from config: 1.0 -- 20:38:36.179 DEBUG [6144]: Connecting to database... -- 20:38:36.179 DEBUG [6144]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:38:36.179 SQL [6144]: pgsql_db_connect() -- 20:38:36.184 DEBUG [6144]: Database connection successful -- 20:38:36.184 INFO [6144]: _SERVER found -- 20:38:36.184 INFO [6144]: REMOTE_ADDR = 192.168.1.13 -- 20:38:36.184 INFO [6144]: SERVER_NAME = oameye.works.coregrade.com -- 20:38:36.184 INFO [6144]: QUERY_STRING = -- 20:38:36.184 INFO [6144]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 20:38:36.221 INFO [6144]: COREGRADE is stopping... -- 20:38:36.221 DEBUG [6144]: Closing database connection -- 20:38:36.221 SQL [6144]: pgsql_close() -- 02:38:27.314 INFO [22290]: COREGRADE is starting... -- 02:38:27.314 INFO [22290]: Version from config: 1.0 -- 02:38:27.314 DEBUG [22290]: Connecting to database... -- 02:38:27.314 DEBUG [22290]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:38:27.314 SQL [22290]: pgsql_db_connect() -- 02:38:27.318 DEBUG [22290]: Database connection successful -- 02:38:27.318 INFO [22290]: _SERVER found -- 02:38:27.318 INFO [22290]: REMOTE_ADDR = 192.168.1.13 -- 02:38:27.318 INFO [22290]: SERVER_NAME = oameye.works.coregrade.com -- 02:38:27.318 INFO [22290]: QUERY_STRING = -- 02:38:27.318 INFO [22290]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 02:38:27.353 INFO [22290]: COREGRADE is stopping... -- 02:38:27.353 DEBUG [22290]: Closing database connection -- 02:38:27.353 SQL [22290]: pgsql_close() -- 04:35:13.092 INFO [4472]: COREGRADE is starting... -- 04:35:13.092 INFO [4472]: Version from config: 1.0 -- 04:35:13.092 DEBUG [4472]: Connecting to database... -- 04:35:13.092 DEBUG [4472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:35:13.092 SQL [4472]: pgsql_db_connect() -- 04:35:13.097 DEBUG [4472]: Database connection successful -- 04:35:13.097 INFO [4472]: _SERVER found -- 04:35:13.097 INFO [4472]: REMOTE_ADDR = 192.168.1.13 -- 04:35:13.097 INFO [4472]: SERVER_NAME = oameye.works.coregrade.com -- 04:35:13.097 INFO [4472]: QUERY_STRING = /.well-known/acme-challenge/pE-vL0NsCRwvGXjjDCB1C8bWugJgiyM7f3PYejug9gc -- 04:35:13.097 INFO [4472]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 04:35:13.110 INFO [4472]: COREGRADE is stopping... -- 04:35:13.110 DEBUG [4472]: Closing database connection -- 04:35:13.110 SQL [4472]: pgsql_close() -- 04:35:13.324 INFO [4472]: COREGRADE is starting... -- 04:35:13.324 INFO [4472]: Version from config: 1.0 -- 04:35:13.324 DEBUG [4472]: Connecting to database... -- 04:35:13.324 DEBUG [4472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:35:13.325 SQL [4472]: pgsql_db_connect() -- 04:35:13.329 DEBUG [4472]: Database connection successful -- 04:35:13.329 INFO [4472]: _SERVER found -- 04:35:13.329 INFO [4472]: REMOTE_ADDR = 192.168.1.13 -- 04:35:13.329 INFO [4472]: SERVER_NAME = oameye.works.coregrade.com -- 04:35:13.329 INFO [4472]: QUERY_STRING = /.well-known/acme-challenge/pE-vL0NsCRwvGXjjDCB1C8bWugJgiyM7f3PYejug9gc -- 04:35:13.329 INFO [4472]: HTTP_X_FORWARDED_FOR = 34.222.229.130 -- 04:35:13.340 INFO [4472]: COREGRADE is stopping... -- 04:35:13.340 DEBUG [4472]: Closing database connection -- 04:35:13.340 SQL [4472]: pgsql_close() -- 04:35:13.356 INFO [21486]: COREGRADE is starting... -- 04:35:13.356 INFO [21486]: Version from config: 1.0 -- 04:35:13.356 DEBUG [21486]: Connecting to database... -- 04:35:13.356 DEBUG [21486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:35:13.356 SQL [21486]: pgsql_db_connect() -- 04:35:13.360 DEBUG [21486]: Database connection successful -- 04:35:13.360 INFO [21486]: _SERVER found -- 04:35:13.360 INFO [21486]: REMOTE_ADDR = 192.168.1.13 -- 04:35:13.360 INFO [21486]: SERVER_NAME = oameye.works.coregrade.com -- 04:35:13.360 INFO [21486]: QUERY_STRING = /.well-known/acme-challenge/pE-vL0NsCRwvGXjjDCB1C8bWugJgiyM7f3PYejug9gc -- 04:35:13.360 INFO [21486]: HTTP_X_FORWARDED_FOR = 18.194.58.132 -- 04:35:13.372 INFO [21486]: COREGRADE is stopping... -- 04:35:13.372 DEBUG [21486]: Closing database connection -- 04:35:13.372 SQL [21486]: pgsql_close() -- 04:35:14.580 INFO [21486]: COREGRADE is starting... -- 04:35:14.580 INFO [21486]: Version from config: 1.0 -- 04:35:14.580 DEBUG [21486]: Connecting to database... -- 04:35:14.580 DEBUG [21486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:35:14.580 SQL [21486]: pgsql_db_connect() -- 04:35:14.584 DEBUG [21486]: Database connection successful -- 04:35:14.584 INFO [21486]: _SERVER found -- 04:35:14.584 INFO [21486]: REMOTE_ADDR = 192.168.1.13 -- 04:35:14.584 INFO [21486]: SERVER_NAME = oameye.works.coregrade.com -- 04:35:14.584 INFO [21486]: QUERY_STRING = /.well-known/acme-challenge/pE-vL0NsCRwvGXjjDCB1C8bWugJgiyM7f3PYejug9gc -- 04:35:14.584 INFO [21486]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 04:35:14.596 INFO [21486]: COREGRADE is stopping... -- 04:35:14.596 DEBUG [21486]: Closing database connection -- 04:35:14.596 SQL [21486]: pgsql_close() -- 08:38:59.042 INFO [20325]: COREGRADE is starting... -- 08:38:59.042 INFO [20325]: Version from config: 1.0 -- 08:38:59.042 DEBUG [20325]: Connecting to database... -- 08:38:59.042 DEBUG [20325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:38:59.042 SQL [20325]: pgsql_db_connect() -- 08:38:59.047 DEBUG [20325]: Database connection successful -- 08:38:59.047 INFO [20325]: _SERVER found -- 08:38:59.047 INFO [20325]: REMOTE_ADDR = 192.168.1.13 -- 08:38:59.047 INFO [20325]: SERVER_NAME = oameye.works.coregrade.com -- 08:38:59.047 INFO [20325]: QUERY_STRING = -- 08:38:59.047 INFO [20325]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 08:38:59.087 INFO [20325]: COREGRADE is stopping... -- 08:38:59.087 DEBUG [20325]: Closing database connection -- 08:38:59.087 SQL [20325]: pgsql_close() -- 12:01:59.282 INFO [22288]: COREGRADE is starting... -- 12:01:59.283 INFO [22288]: Version from config: 1.0 -- 12:01:59.283 DEBUG [22288]: Connecting to database... -- 12:01:59.283 DEBUG [22288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:01:59.283 SQL [22288]: pgsql_db_connect() -- 12:01:59.287 DEBUG [22288]: Database connection successful -- 12:01:59.287 INFO [22288]: _SERVER found -- 12:01:59.287 INFO [22288]: REMOTE_ADDR = 192.168.1.13 -- 12:01:59.287 INFO [22288]: SERVER_NAME = oameye.works.coregrade.com -- 12:01:59.287 INFO [22288]: QUERY_STRING = -- 12:01:59.287 INFO [22288]: HTTP_X_FORWARDED_FOR = 192.81.210.206 -- 12:01:59.324 INFO [22288]: COREGRADE is stopping... -- 12:01:59.324 DEBUG [22288]: Closing database connection -- 12:01:59.324 SQL [22288]: pgsql_close() -- 12:59:59.047 INFO [6143]: COREGRADE is starting... -- 12:59:59.048 INFO [6143]: Version from config: 1.0 -- 12:59:59.048 DEBUG [6143]: Connecting to database... -- 12:59:59.048 DEBUG [6143]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:59:59.048 SQL [6143]: pgsql_db_connect() -- 12:59:59.052 DEBUG [6143]: Database connection successful -- 12:59:59.052 INFO [6143]: _SERVER found -- 12:59:59.052 INFO [6143]: REMOTE_ADDR = 192.168.1.13 -- 12:59:59.052 INFO [6143]: SERVER_NAME = oameye.works.coregrade.com -- 12:59:59.052 INFO [6143]: QUERY_STRING = /TP/public/index.php -- 12:59:59.052 INFO [6143]: HTTP_X_FORWARDED_FOR = 61.160.251.82 -- 12:59:59.065 INFO [6143]: COREGRADE is stopping... -- 12:59:59.065 DEBUG [6143]: Closing database connection -- 12:59:59.065 SQL [6143]: pgsql_close() -- 13:00:03.813 INFO [6144]: COREGRADE is starting... -- 13:00:03.813 INFO [6144]: Version from config: 1.0 -- 13:00:03.813 DEBUG [6144]: Connecting to database... -- 13:00:03.813 DEBUG [6144]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:00:03.813 SQL [6144]: pgsql_db_connect() -- 13:00:03.817 DEBUG [6144]: Database connection successful -- 13:00:03.817 INFO [6144]: _SERVER found -- 13:00:03.817 INFO [6144]: REMOTE_ADDR = 192.168.1.13 -- 13:00:03.817 INFO [6144]: SERVER_NAME = oameye.works.coregrade.com -- 13:00:03.817 INFO [6144]: QUERY_STRING = /TP/index.php -- 13:00:03.817 INFO [6144]: HTTP_X_FORWARDED_FOR = 61.160.251.82 -- 13:00:03.831 INFO [6144]: COREGRADE is stopping... -- 13:00:03.831 DEBUG [6144]: Closing database connection -- 13:00:03.831 SQL [6144]: pgsql_close() -- 13:00:07.447 INFO [6144]: COREGRADE is starting... -- 13:00:07.447 INFO [6144]: Version from config: 1.0 -- 13:00:07.447 DEBUG [6144]: Connecting to database... -- 13:00:07.447 DEBUG [6144]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:00:07.447 SQL [6144]: pgsql_db_connect() -- 13:00:07.452 DEBUG [6144]: Database connection successful -- 13:00:07.452 INFO [6144]: _SERVER found -- 13:00:07.452 INFO [6144]: REMOTE_ADDR = 192.168.1.13 -- 13:00:07.452 INFO [6144]: SERVER_NAME = oameye.works.coregrade.com -- 13:00:07.452 INFO [6144]: QUERY_STRING = /thinkphp/html/public/index.php -- 13:00:07.452 INFO [6144]: HTTP_X_FORWARDED_FOR = 61.160.251.82 -- 13:00:07.463 INFO [6144]: COREGRADE is stopping... -- 13:00:07.463 DEBUG [6144]: Closing database connection -- 13:00:07.463 SQL [6144]: pgsql_close() -- 13:00:09.150 INFO [22290]: COREGRADE is starting... -- 13:00:09.150 INFO [22290]: Version from config: 1.0 -- 13:00:09.150 DEBUG [22290]: Connecting to database... -- 13:00:09.150 DEBUG [22290]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:00:09.150 SQL [22290]: pgsql_db_connect() -- 13:00:09.155 DEBUG [22290]: Database connection successful -- 13:00:09.155 INFO [22290]: _SERVER found -- 13:00:09.155 INFO [22290]: REMOTE_ADDR = 192.168.1.13 -- 13:00:09.155 INFO [22290]: SERVER_NAME = oameye.works.coregrade.com -- 13:00:09.155 INFO [22290]: QUERY_STRING = /html/public/index.php -- 13:00:09.155 INFO [22290]: HTTP_X_FORWARDED_FOR = 61.160.251.82 -- 13:00:09.166 INFO [22290]: COREGRADE is stopping... -- 13:00:09.166 DEBUG [22290]: Closing database connection -- 13:00:09.166 SQL [22290]: pgsql_close() -- 13:00:12.388 INFO [22290]: COREGRADE is starting... -- 13:00:12.388 INFO [22290]: Version from config: 1.0 -- 13:00:12.388 DEBUG [22290]: Connecting to database... -- 13:00:12.388 DEBUG [22290]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:00:12.388 SQL [22290]: pgsql_db_connect() -- 13:00:12.392 DEBUG [22290]: Database connection successful -- 13:00:12.392 INFO [22290]: _SERVER found -- 13:00:12.392 INFO [22290]: REMOTE_ADDR = 192.168.1.13 -- 13:00:12.392 INFO [22290]: SERVER_NAME = oameye.works.coregrade.com -- 13:00:12.392 INFO [22290]: QUERY_STRING = /public/index.php -- 13:00:12.392 INFO [22290]: HTTP_X_FORWARDED_FOR = 61.160.251.82 -- 13:00:12.403 INFO [22290]: COREGRADE is stopping... -- 13:00:12.403 DEBUG [22290]: Closing database connection -- 13:00:12.403 SQL [22290]: pgsql_close() -- 13:00:17.651 INFO [4472]: COREGRADE is starting... -- 13:00:17.651 INFO [4472]: Version from config: 1.0 -- 13:00:17.651 DEBUG [4472]: Connecting to database... -- 13:00:17.651 DEBUG [4472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:00:17.651 SQL [4472]: pgsql_db_connect() -- 13:00:17.655 DEBUG [4472]: Database connection successful -- 13:00:17.655 INFO [4472]: _SERVER found -- 13:00:17.655 INFO [4472]: REMOTE_ADDR = 192.168.1.13 -- 13:00:17.655 INFO [4472]: SERVER_NAME = oameye.works.coregrade.com -- 13:00:17.655 INFO [4472]: QUERY_STRING = /TP/html/public/index.php -- 13:00:17.655 INFO [4472]: HTTP_X_FORWARDED_FOR = 61.160.251.82 -- 13:00:17.667 INFO [4472]: COREGRADE is stopping... -- 13:00:17.667 DEBUG [4472]: Closing database connection -- 13:00:17.667 SQL [4472]: pgsql_close() -- 13:00:21.548 INFO [4472]: COREGRADE is starting... -- 13:00:21.548 INFO [4472]: Version from config: 1.0 -- 13:00:21.548 DEBUG [4472]: Connecting to database... -- 13:00:21.548 DEBUG [4472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:00:21.548 SQL [4472]: pgsql_db_connect() -- 13:00:21.552 DEBUG [4472]: Database connection successful -- 13:00:21.552 INFO [4472]: _SERVER found -- 13:00:21.552 INFO [4472]: REMOTE_ADDR = 192.168.1.13 -- 13:00:21.552 INFO [4472]: SERVER_NAME = oameye.works.coregrade.com -- 13:00:21.552 INFO [4472]: QUERY_STRING = /elrekt.php -- 13:00:21.552 INFO [4472]: HTTP_X_FORWARDED_FOR = 61.160.251.82 -- 13:00:21.563 INFO [4472]: COREGRADE is stopping... -- 13:00:21.563 DEBUG [4472]: Closing database connection -- 13:00:21.563 SQL [4472]: pgsql_close() -- 13:00:23.986 INFO [20322]: COREGRADE is starting... -- 13:00:23.986 INFO [20322]: Version from config: 1.0 -- 13:00:23.986 DEBUG [20322]: Connecting to database... -- 13:00:23.986 DEBUG [20322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:00:23.986 SQL [20322]: pgsql_db_connect() -- 13:00:23.990 DEBUG [20322]: Database connection successful -- 13:00:23.990 INFO [20322]: _SERVER found -- 13:00:23.990 INFO [20322]: REMOTE_ADDR = 192.168.1.13 -- 13:00:23.990 INFO [20322]: SERVER_NAME = oameye.works.coregrade.com -- 13:00:23.990 INFO [20322]: QUERY_STRING = -- 13:00:23.990 INFO [20322]: HTTP_X_FORWARDED_FOR = 61.160.251.82 -- 13:00:24.028 INFO [20322]: COREGRADE is stopping... -- 13:00:24.028 DEBUG [20322]: Closing database connection -- 13:00:24.028 SQL [20322]: pgsql_close() -- 13:00:26.292 INFO [20322]: COREGRADE is starting... -- 13:00:26.292 INFO [20322]: Version from config: 1.0 -- 13:00:26.292 DEBUG [20322]: Connecting to database... -- 13:00:26.292 DEBUG [20322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:00:26.292 SQL [20322]: pgsql_db_connect() -- 13:00:26.296 DEBUG [20322]: Database connection successful -- 13:00:26.296 INFO [20322]: _SERVER found -- 13:00:26.296 INFO [20322]: REMOTE_ADDR = 192.168.1.13 -- 13:00:26.296 INFO [20322]: SERVER_NAME = oameye.works.coregrade.com -- 13:00:26.296 INFO [20322]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 13:00:26.296 INFO [20322]: HTTP_X_FORWARDED_FOR = 61.160.251.82 -- 13:00:26.330 INFO [20322]: COREGRADE is stopping... -- 13:00:26.330 DEBUG [20322]: Closing database connection -- 13:00:26.330 SQL [20322]: pgsql_close() -- 13:00:28.406 INFO [20322]: COREGRADE is starting... -- 13:00:28.406 INFO [20322]: Version from config: 1.0 -- 13:00:28.406 DEBUG [20322]: Connecting to database... -- 13:00:28.406 DEBUG [20322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:00:28.406 SQL [20322]: pgsql_db_connect() -- 13:00:28.410 DEBUG [20322]: Database connection successful -- 13:00:28.410 INFO [20322]: _SERVER found -- 13:00:28.410 INFO [20322]: REMOTE_ADDR = 192.168.1.13 -- 13:00:28.410 INFO [20322]: SERVER_NAME = oameye.works.coregrade.com -- 13:00:28.410 INFO [20322]: QUERY_STRING = s=captcha -- 13:00:28.410 INFO [20322]: HTTP_X_FORWARDED_FOR = 61.160.251.82 -- 13:00:28.444 INFO [20322]: COREGRADE is stopping... -- 13:00:28.444 DEBUG [20322]: Closing database connection -- 13:00:28.444 SQL [20322]: pgsql_close() -- 13:00:33.642 INFO [21486]: COREGRADE is starting... -- 13:00:33.643 INFO [21486]: Version from config: 1.0 -- 13:00:33.643 DEBUG [21486]: Connecting to database... -- 13:00:33.643 DEBUG [21486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:00:33.643 SQL [21486]: pgsql_db_connect() -- 13:00:33.647 DEBUG [21486]: Database connection successful -- 13:00:33.647 INFO [21486]: _SERVER found -- 13:00:33.647 INFO [21486]: REMOTE_ADDR = 192.168.1.13 -- 13:00:33.647 INFO [21486]: SERVER_NAME = oameye.works.coregrade.com -- 13:00:33.647 INFO [21486]: QUERY_STRING = -- 13:00:33.647 INFO [21486]: HTTP_X_FORWARDED_FOR = 61.160.251.82 -- 13:00:33.678 INFO [21486]: COREGRADE is stopping... -- 13:00:33.678 DEBUG [21486]: Closing database connection -- 13:00:33.678 SQL [21486]: pgsql_close() -- 14:23:43.517 INFO [20323]: COREGRADE is starting... -- 14:23:43.518 INFO [20323]: Version from config: 1.0 -- 14:23:43.518 DEBUG [20323]: Connecting to database... -- 14:23:43.518 DEBUG [20323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:23:43.518 SQL [20323]: pgsql_db_connect() -- 14:23:43.523 DEBUG [20323]: Database connection successful -- 14:23:43.523 INFO [20323]: _SERVER found -- 14:23:43.523 INFO [20323]: REMOTE_ADDR = 192.168.1.13 -- 14:23:43.523 INFO [20323]: SERVER_NAME = oameye.works.coregrade.com -- 14:23:43.523 INFO [20323]: QUERY_STRING = /solr/admin/info/system -- 14:23:43.523 INFO [20323]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 14:23:43.539 INFO [20323]: COREGRADE is stopping... -- 14:23:43.539 DEBUG [20323]: Closing database connection -- 14:23:43.539 SQL [20323]: pgsql_close() -- 14:32:19.575 INFO [592]: COREGRADE is starting... -- 14:32:19.576 INFO [592]: Version from config: 1.0 -- 14:32:19.576 DEBUG [592]: Connecting to database... -- 14:32:19.576 DEBUG [592]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:32:19.576 SQL [592]: pgsql_db_connect() -- 14:32:19.580 DEBUG [592]: Database connection successful -- 14:32:19.580 INFO [592]: _SERVER found -- 14:32:19.580 INFO [592]: REMOTE_ADDR = 192.168.1.13 -- 14:32:19.580 INFO [592]: SERVER_NAME = oameye.works.coregrade.com -- 14:32:19.580 INFO [592]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 14:32:19.580 INFO [592]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 14:32:19.616 INFO [592]: COREGRADE is stopping... -- 14:32:19.616 DEBUG [592]: Closing database connection -- 14:32:19.616 SQL [592]: pgsql_close() -- 14:32:21.610 INFO [592]: COREGRADE is starting... -- 14:32:21.611 INFO [592]: Version from config: 1.0 -- 14:32:21.611 DEBUG [592]: Connecting to database... -- 14:32:21.611 DEBUG [592]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:32:21.611 SQL [592]: pgsql_db_connect() -- 14:32:21.615 DEBUG [592]: Database connection successful -- 14:32:21.615 INFO [592]: _SERVER found -- 14:32:21.615 INFO [592]: REMOTE_ADDR = 192.168.1.13 -- 14:32:21.615 INFO [592]: SERVER_NAME = oameye.works.coregrade.com -- 14:32:21.615 INFO [592]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 14:32:21.615 INFO [592]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 14:32:21.650 INFO [592]: COREGRADE is stopping... -- 14:32:21.650 DEBUG [592]: Closing database connection -- 14:32:21.650 SQL [592]: pgsql_close() -- 14:38:12.421 INFO [20325]: COREGRADE is starting... -- 14:38:12.422 INFO [20325]: Version from config: 1.0 -- 14:38:12.422 DEBUG [20325]: Connecting to database... -- 14:38:12.422 DEBUG [20325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:38:12.422 SQL [20325]: pgsql_db_connect() -- 14:38:12.426 DEBUG [20325]: Database connection successful -- 14:38:12.426 INFO [20325]: _SERVER found -- 14:38:12.426 INFO [20325]: REMOTE_ADDR = 192.168.1.13 -- 14:38:12.426 INFO [20325]: SERVER_NAME = oameye.works.coregrade.com -- 14:38:12.426 INFO [20325]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 14:38:12.426 INFO [20325]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 14:38:12.461 INFO [20325]: COREGRADE is stopping... -- 14:38:12.461 DEBUG [20325]: Closing database connection -- 14:38:12.461 SQL [20325]: pgsql_close() -- 14:38:51.265 INFO [22288]: COREGRADE is starting... -- 14:38:51.265 INFO [22288]: Version from config: 1.0 -- 14:38:51.265 DEBUG [22288]: Connecting to database... -- 14:38:51.265 DEBUG [22288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:38:51.265 SQL [22288]: pgsql_db_connect() -- 14:38:51.269 DEBUG [22288]: Database connection successful -- 14:38:51.269 INFO [22288]: _SERVER found -- 14:38:51.269 INFO [22288]: REMOTE_ADDR = 192.168.1.13 -- 14:38:51.269 INFO [22288]: SERVER_NAME = oameye.works.coregrade.com -- 14:38:51.269 INFO [22288]: QUERY_STRING = -- 14:38:51.269 INFO [22288]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 14:38:51.302 INFO [22288]: COREGRADE is stopping... -- 14:38:51.302 DEBUG [22288]: Closing database connection -- 14:38:51.302 SQL [22288]: pgsql_close() -- 17:10:31.440 INFO [6143]: COREGRADE is starting... -- 17:10:31.440 INFO [6143]: Version from config: 1.0 -- 17:10:31.441 DEBUG [6143]: Connecting to database... -- 17:10:31.441 DEBUG [6143]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:10:31.441 SQL [6143]: pgsql_db_connect() -- 17:10:31.445 DEBUG [6143]: Database connection successful -- 17:10:31.445 INFO [6143]: _SERVER found -- 17:10:31.445 INFO [6143]: REMOTE_ADDR = 192.168.1.13 -- 17:10:31.445 INFO [6143]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:10:31.445 INFO [6143]: HTTP_COOKIE = _ga=GA1.2.1772984813.1583596204 -- 17:10:31.445 INFO [6143]: QUERY_STRING = -- 17:10:31.445 INFO [6143]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:10:31.481 INFO [6143]: COREGRADE is stopping... -- 17:10:31.481 DEBUG [6143]: Closing database connection -- 17:10:31.481 SQL [6143]: pgsql_close() -- 17:10:32.570 INFO [6143]: COREGRADE is starting... -- 17:10:32.570 INFO [6143]: Version from config: 1.0 -- 17:10:32.570 DEBUG [6143]: Connecting to database... -- 17:10:32.570 DEBUG [6143]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:10:32.570 SQL [6143]: pgsql_db_connect() -- 17:10:32.574 DEBUG [6143]: Database connection successful -- 17:10:32.574 INFO [6143]: _SERVER found -- 17:10:32.574 INFO [6143]: REMOTE_ADDR = 192.168.1.13 -- 17:10:32.574 INFO [6143]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:10:32.574 INFO [6143]: HTTP_COOKIE = _ga=GA1.2.1772984813.1583596204; ci_session=gccraco9l97ppcqs1f9t41n7ilbgqmf3 -- 17:10:32.574 INFO [6143]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 17:10:32.574 INFO [6143]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:10:32.586 INFO [6143]: COREGRADE is stopping... -- 17:10:32.586 DEBUG [6143]: Closing database connection -- 17:10:32.586 SQL [6143]: pgsql_close() -- 17:10:32.636 INFO [6143]: COREGRADE is starting... -- 17:10:32.636 INFO [6143]: Version from config: 1.0 -- 17:10:32.636 DEBUG [6143]: Connecting to database... -- 17:10:32.636 DEBUG [6143]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:10:32.636 SQL [6143]: pgsql_db_connect() -- 17:10:32.640 DEBUG [6143]: Database connection successful -- 17:10:32.640 INFO [6143]: _SERVER found -- 17:10:32.640 INFO [6143]: REMOTE_ADDR = 192.168.1.13 -- 17:10:32.640 INFO [6143]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:10:32.640 INFO [6143]: HTTP_COOKIE = _ga=GA1.2.1772984813.1583596204; ci_session=gccraco9l97ppcqs1f9t41n7ilbgqmf3 -- 17:10:32.640 INFO [6143]: QUERY_STRING = /assets/img/footer_1.jpg -- 17:10:32.640 INFO [6143]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:10:32.651 INFO [6143]: COREGRADE is stopping... -- 17:10:32.651 DEBUG [6143]: Closing database connection -- 17:10:32.651 SQL [6143]: pgsql_close() -- 17:10:40.300 INFO [22290]: COREGRADE is starting... -- 17:10:40.300 INFO [22290]: Version from config: 1.0 -- 17:10:40.300 DEBUG [22290]: Connecting to database... -- 17:10:40.300 DEBUG [22290]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:10:40.300 SQL [22290]: pgsql_db_connect() -- 17:10:40.305 DEBUG [22290]: Database connection successful -- 17:10:40.305 INFO [22290]: _SERVER found -- 17:10:40.305 INFO [22290]: REMOTE_ADDR = 192.168.1.13 -- 17:10:40.305 INFO [22290]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:10:40.305 INFO [22290]: HTTP_COOKIE = _ga=GA1.2.1772984813.1583596204; ci_session=gccraco9l97ppcqs1f9t41n7ilbgqmf3; _gid=GA1.2.307560346.1584738633; _gat_gtag_UA_54829827_2=1 -- 17:10:40.305 INFO [22290]: QUERY_STRING = -- 17:10:40.305 INFO [22290]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:10:40.338 INFO [22290]: COREGRADE is stopping... -- 17:10:40.338 DEBUG [22290]: Closing database connection -- 17:10:40.338 SQL [22290]: pgsql_close() -- 17:38:14.333 INFO [4472]: COREGRADE is starting... -- 17:38:14.333 INFO [4472]: Version from config: 1.0 -- 17:38:14.333 DEBUG [4472]: Connecting to database... -- 17:38:14.333 DEBUG [4472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:14.333 SQL [4472]: pgsql_db_connect() -- 17:38:14.338 DEBUG [4472]: Database connection successful -- 17:38:14.338 INFO [4472]: _SERVER found -- 17:38:14.338 INFO [4472]: REMOTE_ADDR = 192.168.1.13 -- 17:38:14.338 INFO [4472]: SERVER_NAME = oameye.works.coregrade.com -- 17:38:14.338 INFO [4472]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 17:38:14.338 INFO [4472]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 17:38:14.351 INFO [4472]: COREGRADE is stopping... -- 17:38:14.351 DEBUG [4472]: Closing database connection -- 17:38:14.351 SQL [4472]: pgsql_close() -- 18:02:50.685 INFO [20322]: COREGRADE is starting... -- 18:02:50.686 INFO [20322]: Version from config: 1.0 -- 18:02:50.686 DEBUG [20322]: Connecting to database... -- 18:02:50.686 DEBUG [20322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:02:50.686 SQL [20322]: pgsql_db_connect() -- 18:02:50.690 DEBUG [20322]: Database connection successful -- 18:02:50.690 INFO [20322]: _SERVER found -- 18:02:50.690 INFO [20322]: REMOTE_ADDR = 192.168.1.13 -- 18:02:50.690 INFO [20322]: SERVER_NAME = oameye.works.coregrade.com -- 18:02:50.690 INFO [20322]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 18:02:50.690 INFO [20322]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 18:02:50.729 INFO [20322]: COREGRADE is stopping... -- 18:02:50.729 DEBUG [20322]: Closing database connection -- 18:02:50.729 SQL [20322]: pgsql_close() -- 20:38:37.830 INFO [21486]: COREGRADE is starting... -- 20:38:37.831 INFO [21486]: Version from config: 1.0 -- 20:38:37.831 DEBUG [21486]: Connecting to database... -- 20:38:37.831 DEBUG [21486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:38:37.831 SQL [21486]: pgsql_db_connect() -- 20:38:37.836 DEBUG [21486]: Database connection successful -- 20:38:37.836 INFO [21486]: _SERVER found -- 20:38:37.836 INFO [21486]: REMOTE_ADDR = 192.168.1.13 -- 20:38:37.836 INFO [21486]: SERVER_NAME = oameye.works.coregrade.com -- 20:38:37.836 INFO [21486]: QUERY_STRING = -- 20:38:37.836 INFO [21486]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 20:38:37.870 INFO [21486]: COREGRADE is stopping... -- 20:38:37.870 DEBUG [21486]: Closing database connection -- 20:38:37.870 SQL [21486]: pgsql_close() -- 20:46:49.366 INFO [20323]: COREGRADE is starting... -- 20:46:49.366 INFO [20323]: Version from config: 1.0 -- 20:46:49.366 DEBUG [20323]: Connecting to database... -- 20:46:49.366 DEBUG [20323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:46:49.366 SQL [20323]: pgsql_db_connect() -- 20:46:49.371 DEBUG [20323]: Database connection successful -- 20:46:49.371 INFO [20323]: _SERVER found -- 20:46:49.371 INFO [20323]: REMOTE_ADDR = 192.168.1.13 -- 20:46:49.371 INFO [20323]: SERVER_NAME = oameye.works.coregrade.com -- 20:46:49.371 INFO [20323]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 20:46:49.371 INFO [20323]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 20:46:49.409 INFO [20323]: COREGRADE is stopping... -- 20:46:49.409 DEBUG [20323]: Closing database connection -- 20:46:49.409 SQL [20323]: pgsql_close() -- 21:38:32.809 INFO [592]: COREGRADE is starting... -- 21:38:32.809 INFO [592]: Version from config: 1.0 -- 21:38:32.809 DEBUG [592]: Connecting to database... -- 21:38:32.809 DEBUG [592]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:38:32.809 SQL [592]: pgsql_db_connect() -- 21:38:32.814 DEBUG [592]: Database connection successful -- 21:38:32.814 INFO [592]: _SERVER found -- 21:38:32.814 INFO [592]: REMOTE_ADDR = 192.168.1.13 -- 21:38:32.814 INFO [592]: SERVER_NAME = oameye.works.coregrade.com -- 21:38:32.814 INFO [592]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 21:38:32.814 INFO [592]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 21:38:32.827 INFO [592]: COREGRADE is stopping... -- 21:38:32.827 DEBUG [592]: Closing database connection -- 21:38:32.828 SQL [592]: pgsql_close() -- 00:06:35.767 INFO [20325]: COREGRADE is starting... -- 00:06:35.768 INFO [20325]: Version from config: 1.0 -- 00:06:35.768 DEBUG [20325]: Connecting to database... -- 00:06:35.768 DEBUG [20325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:06:35.768 SQL [20325]: pgsql_db_connect() -- 00:06:35.773 DEBUG [20325]: Database connection successful -- 00:06:35.773 INFO [20325]: _SERVER found -- 00:06:35.773 INFO [20325]: REMOTE_ADDR = 192.168.1.13 -- 00:06:35.773 INFO [20325]: SERVER_NAME = oameye.works.coregrade.com -- 00:06:35.773 INFO [20325]: QUERY_STRING = -- 00:06:35.773 INFO [20325]: HTTP_X_FORWARDED_FOR = 209.17.96.146 -- 00:06:35.809 INFO [20325]: COREGRADE is stopping... -- 00:06:35.809 DEBUG [20325]: Closing database connection -- 00:06:35.810 SQL [20325]: pgsql_close() -- 01:50:06.671 INFO [22288]: COREGRADE is starting... -- 01:50:06.672 INFO [22288]: Version from config: 1.0 -- 01:50:06.672 DEBUG [22288]: Connecting to database... -- 01:50:06.672 DEBUG [22288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:50:06.672 SQL [22288]: pgsql_db_connect() -- 01:50:06.676 DEBUG [22288]: Database connection successful -- 01:50:06.676 INFO [22288]: _SERVER found -- 01:50:06.676 INFO [22288]: REMOTE_ADDR = 192.168.1.13 -- 01:50:06.676 INFO [22288]: SERVER_NAME = oameye.works.coregrade.com -- 01:50:06.676 INFO [22288]: QUERY_STRING = /.well-known/acme-challenge/KWRWQhOxP6J_vxnlcokksyWRAbiR7XF64dYORPbjaz4 -- 01:50:06.676 INFO [22288]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 01:50:06.689 INFO [22288]: COREGRADE is stopping... -- 01:50:06.689 DEBUG [22288]: Closing database connection -- 01:50:06.689 SQL [22288]: pgsql_close() -- 01:50:07.029 INFO [22288]: COREGRADE is starting... -- 01:50:07.029 INFO [22288]: Version from config: 1.0 -- 01:50:07.029 DEBUG [22288]: Connecting to database... -- 01:50:07.029 DEBUG [22288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:50:07.029 SQL [22288]: pgsql_db_connect() -- 01:50:07.033 DEBUG [22288]: Database connection successful -- 01:50:07.033 INFO [22288]: _SERVER found -- 01:50:07.033 INFO [22288]: REMOTE_ADDR = 192.168.1.13 -- 01:50:07.033 INFO [22288]: SERVER_NAME = oameye.works.coregrade.com -- 01:50:07.033 INFO [22288]: QUERY_STRING = /.well-known/acme-challenge/KWRWQhOxP6J_vxnlcokksyWRAbiR7XF64dYORPbjaz4 -- 01:50:07.033 INFO [22288]: HTTP_X_FORWARDED_FOR = 18.194.58.132 -- 01:50:07.044 INFO [22288]: COREGRADE is stopping... -- 01:50:07.044 DEBUG [22288]: Closing database connection -- 01:50:07.044 SQL [22288]: pgsql_close() -- 01:50:07.053 INFO [6143]: COREGRADE is starting... -- 01:50:07.053 INFO [6143]: Version from config: 1.0 -- 01:50:07.053 DEBUG [6143]: Connecting to database... -- 01:50:07.053 DEBUG [6143]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:50:07.053 SQL [6143]: pgsql_db_connect() -- 01:50:07.057 DEBUG [6143]: Database connection successful -- 01:50:07.057 INFO [6143]: _SERVER found -- 01:50:07.057 INFO [6143]: REMOTE_ADDR = 192.168.1.13 -- 01:50:07.057 INFO [6143]: SERVER_NAME = oameye.works.coregrade.com -- 01:50:07.057 INFO [6143]: QUERY_STRING = /.well-known/acme-challenge/KWRWQhOxP6J_vxnlcokksyWRAbiR7XF64dYORPbjaz4 -- 01:50:07.057 INFO [6143]: HTTP_X_FORWARDED_FOR = 34.222.229.130 -- 01:50:07.069 INFO [6143]: COREGRADE is stopping... -- 01:50:07.070 DEBUG [6143]: Closing database connection -- 01:50:07.070 SQL [6143]: pgsql_close() -- 01:50:09.032 INFO [4472]: COREGRADE is starting... -- 01:50:09.032 INFO [4472]: Version from config: 1.0 -- 01:50:09.032 DEBUG [4472]: Connecting to database... -- 01:50:09.032 DEBUG [4472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:50:09.032 SQL [4472]: pgsql_db_connect() -- 01:50:09.036 DEBUG [4472]: Database connection successful -- 01:50:09.036 INFO [4472]: _SERVER found -- 01:50:09.036 INFO [4472]: REMOTE_ADDR = 192.168.1.13 -- 01:50:09.036 INFO [4472]: SERVER_NAME = oameye.works.coregrade.com -- 01:50:09.036 INFO [4472]: QUERY_STRING = /.well-known/acme-challenge/KWRWQhOxP6J_vxnlcokksyWRAbiR7XF64dYORPbjaz4 -- 01:50:09.036 INFO [4472]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 01:50:09.048 INFO [4472]: COREGRADE is stopping... -- 01:50:09.048 DEBUG [4472]: Closing database connection -- 01:50:09.048 SQL [4472]: pgsql_close() -- 02:38:42.359 INFO [20322]: COREGRADE is starting... -- 02:38:42.360 INFO [20322]: Version from config: 1.0 -- 02:38:42.360 DEBUG [20322]: Connecting to database... -- 02:38:42.360 DEBUG [20322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:38:42.360 SQL [20322]: pgsql_db_connect() -- 02:38:42.365 DEBUG [20322]: Database connection successful -- 02:38:42.365 INFO [20322]: _SERVER found -- 02:38:42.365 INFO [20322]: REMOTE_ADDR = 192.168.1.13 -- 02:38:42.365 INFO [20322]: SERVER_NAME = oameye.works.coregrade.com -- 02:38:42.365 INFO [20322]: QUERY_STRING = -- 02:38:42.365 INFO [20322]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 02:38:42.409 INFO [20322]: COREGRADE is stopping... -- 02:38:42.409 DEBUG [20322]: Closing database connection -- 02:38:42.409 SQL [20322]: pgsql_close() -- 08:38:17.279 INFO [21486]: COREGRADE is starting... -- 08:38:17.279 INFO [21486]: Version from config: 1.0 -- 08:38:17.279 DEBUG [21486]: Connecting to database... -- 08:38:17.279 DEBUG [21486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:38:17.279 SQL [21486]: pgsql_db_connect() -- 08:38:17.284 DEBUG [21486]: Database connection successful -- 08:38:17.284 INFO [21486]: _SERVER found -- 08:38:17.284 INFO [21486]: REMOTE_ADDR = 192.168.1.13 -- 08:38:17.284 INFO [21486]: SERVER_NAME = oameye.works.coregrade.com -- 08:38:17.284 INFO [21486]: QUERY_STRING = -- 08:38:17.284 INFO [21486]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 08:38:17.320 INFO [21486]: COREGRADE is stopping... -- 08:38:17.320 DEBUG [21486]: Closing database connection -- 08:38:17.320 SQL [21486]: pgsql_close() -- 10:23:31.374 INFO [20323]: COREGRADE is starting... -- 10:23:31.374 INFO [20323]: Version from config: 1.0 -- 10:23:31.374 DEBUG [20323]: Connecting to database... -- 10:23:31.374 DEBUG [20323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:23:31.374 SQL [20323]: pgsql_db_connect() -- 10:23:31.379 DEBUG [20323]: Database connection successful -- 10:23:31.379 INFO [20323]: _SERVER found -- 10:23:31.379 INFO [20323]: REMOTE_ADDR = 192.168.1.13 -- 10:23:31.379 INFO [20323]: SERVER_NAME = oameye.works.coregrade.com -- 10:23:31.379 INFO [20323]: QUERY_STRING = -- 10:23:31.379 INFO [20323]: HTTP_X_FORWARDED_FOR = 169.197.108.38 -- 10:23:31.417 INFO [20323]: COREGRADE is stopping... -- 10:23:31.417 DEBUG [20323]: Closing database connection -- 10:23:31.417 SQL [20323]: pgsql_close() -- 13:51:47.848 INFO [592]: COREGRADE is starting... -- 13:51:47.848 INFO [592]: Version from config: 1.0 -- 13:51:47.848 DEBUG [592]: Connecting to database... -- 13:51:47.848 DEBUG [592]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:51:47.848 SQL [592]: pgsql_db_connect() -- 13:51:47.853 DEBUG [592]: Database connection successful -- 13:51:47.853 INFO [592]: _SERVER found -- 13:51:47.853 INFO [592]: REMOTE_ADDR = 192.168.1.13 -- 13:51:47.853 INFO [592]: SERVER_NAME = oameye.works.coregrade.com -- 13:51:47.853 INFO [592]: QUERY_STRING = /TP/public/index.php -- 13:51:47.853 INFO [592]: HTTP_X_FORWARDED_FOR = 49.234.111.93 -- 13:51:47.867 INFO [592]: COREGRADE is stopping... -- 13:51:47.867 DEBUG [592]: Closing database connection -- 13:51:47.867 SQL [592]: pgsql_close() -- 13:51:51.122 INFO [592]: COREGRADE is starting... -- 13:51:51.122 INFO [592]: Version from config: 1.0 -- 13:51:51.122 DEBUG [592]: Connecting to database... -- 13:51:51.122 DEBUG [592]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:51:51.122 SQL [592]: pgsql_db_connect() -- 13:51:51.126 DEBUG [592]: Database connection successful -- 13:51:51.126 INFO [592]: _SERVER found -- 13:51:51.126 INFO [592]: REMOTE_ADDR = 192.168.1.13 -- 13:51:51.126 INFO [592]: SERVER_NAME = oameye.works.coregrade.com -- 13:51:51.126 INFO [592]: QUERY_STRING = /TP/index.php -- 13:51:51.126 INFO [592]: HTTP_X_FORWARDED_FOR = 49.234.111.93 -- 13:51:51.137 INFO [592]: COREGRADE is stopping... -- 13:51:51.137 DEBUG [592]: Closing database connection -- 13:51:51.137 SQL [592]: pgsql_close() -- 13:51:54.824 INFO [20325]: COREGRADE is starting... -- 13:51:54.824 INFO [20325]: Version from config: 1.0 -- 13:51:54.825 DEBUG [20325]: Connecting to database... -- 13:51:54.825 DEBUG [20325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:51:54.825 SQL [20325]: pgsql_db_connect() -- 13:51:54.829 DEBUG [20325]: Database connection successful -- 13:51:54.829 INFO [20325]: _SERVER found -- 13:51:54.829 INFO [20325]: REMOTE_ADDR = 192.168.1.13 -- 13:51:54.829 INFO [20325]: SERVER_NAME = oameye.works.coregrade.com -- 13:51:54.829 INFO [20325]: QUERY_STRING = /thinkphp/html/public/index.php -- 13:51:54.829 INFO [20325]: HTTP_X_FORWARDED_FOR = 49.234.111.93 -- 13:51:54.844 INFO [20325]: COREGRADE is stopping... -- 13:51:54.844 DEBUG [20325]: Closing database connection -- 13:51:54.844 SQL [20325]: pgsql_close() -- 13:51:57.386 INFO [20325]: COREGRADE is starting... -- 13:51:57.386 INFO [20325]: Version from config: 1.0 -- 13:51:57.386 DEBUG [20325]: Connecting to database... -- 13:51:57.386 DEBUG [20325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:51:57.386 SQL [20325]: pgsql_db_connect() -- 13:51:57.390 DEBUG [20325]: Database connection successful -- 13:51:57.390 INFO [20325]: _SERVER found -- 13:51:57.390 INFO [20325]: REMOTE_ADDR = 192.168.1.13 -- 13:51:57.390 INFO [20325]: SERVER_NAME = oameye.works.coregrade.com -- 13:51:57.390 INFO [20325]: QUERY_STRING = /html/public/index.php -- 13:51:57.390 INFO [20325]: HTTP_X_FORWARDED_FOR = 49.234.111.93 -- 13:51:57.401 INFO [20325]: COREGRADE is stopping... -- 13:51:57.402 DEBUG [20325]: Closing database connection -- 13:51:57.402 SQL [20325]: pgsql_close() -- 13:51:58.990 INFO [20325]: COREGRADE is starting... -- 13:51:58.990 INFO [20325]: Version from config: 1.0 -- 13:51:58.990 DEBUG [20325]: Connecting to database... -- 13:51:58.990 DEBUG [20325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:51:58.990 SQL [20325]: pgsql_db_connect() -- 13:51:58.994 DEBUG [20325]: Database connection successful -- 13:51:58.994 INFO [20325]: _SERVER found -- 13:51:58.994 INFO [20325]: REMOTE_ADDR = 192.168.1.13 -- 13:51:58.994 INFO [20325]: SERVER_NAME = oameye.works.coregrade.com -- 13:51:58.994 INFO [20325]: QUERY_STRING = /public/index.php -- 13:51:58.994 INFO [20325]: HTTP_X_FORWARDED_FOR = 49.234.111.93 -- 13:51:59.005 INFO [20325]: COREGRADE is stopping... -- 13:51:59.005 DEBUG [20325]: Closing database connection -- 13:51:59.005 SQL [20325]: pgsql_close() -- 13:52:00.677 INFO [22288]: COREGRADE is starting... -- 13:52:00.677 INFO [22288]: Version from config: 1.0 -- 13:52:00.677 DEBUG [22288]: Connecting to database... -- 13:52:00.677 DEBUG [22288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:52:00.677 SQL [22288]: pgsql_db_connect() -- 13:52:00.682 DEBUG [22288]: Database connection successful -- 13:52:00.682 INFO [22288]: _SERVER found -- 13:52:00.682 INFO [22288]: REMOTE_ADDR = 192.168.1.13 -- 13:52:00.682 INFO [22288]: SERVER_NAME = oameye.works.coregrade.com -- 13:52:00.682 INFO [22288]: QUERY_STRING = /TP/html/public/index.php -- 13:52:00.682 INFO [22288]: HTTP_X_FORWARDED_FOR = 49.234.111.93 -- 13:52:00.695 INFO [22288]: COREGRADE is stopping... -- 13:52:00.695 DEBUG [22288]: Closing database connection -- 13:52:00.695 SQL [22288]: pgsql_close() -- 13:52:03.571 INFO [22288]: COREGRADE is starting... -- 13:52:03.571 INFO [22288]: Version from config: 1.0 -- 13:52:03.571 DEBUG [22288]: Connecting to database... -- 13:52:03.571 DEBUG [22288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:52:03.571 SQL [22288]: pgsql_db_connect() -- 13:52:03.575 DEBUG [22288]: Database connection successful -- 13:52:03.575 INFO [22288]: _SERVER found -- 13:52:03.575 INFO [22288]: REMOTE_ADDR = 192.168.1.13 -- 13:52:03.575 INFO [22288]: SERVER_NAME = oameye.works.coregrade.com -- 13:52:03.575 INFO [22288]: QUERY_STRING = /elrekt.php -- 13:52:03.575 INFO [22288]: HTTP_X_FORWARDED_FOR = 49.234.111.93 -- 13:52:03.586 INFO [22288]: COREGRADE is stopping... -- 13:52:03.586 DEBUG [22288]: Closing database connection -- 13:52:03.586 SQL [22288]: pgsql_close() -- 13:52:07.631 INFO [6143]: COREGRADE is starting... -- 13:52:07.631 INFO [6143]: Version from config: 1.0 -- 13:52:07.631 DEBUG [6143]: Connecting to database... -- 13:52:07.631 DEBUG [6143]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:52:07.631 SQL [6143]: pgsql_db_connect() -- 13:52:07.635 DEBUG [6143]: Database connection successful -- 13:52:07.635 INFO [6143]: _SERVER found -- 13:52:07.635 INFO [6143]: REMOTE_ADDR = 192.168.1.13 -- 13:52:07.635 INFO [6143]: SERVER_NAME = oameye.works.coregrade.com -- 13:52:07.635 INFO [6143]: QUERY_STRING = -- 13:52:07.635 INFO [6143]: HTTP_X_FORWARDED_FOR = 49.234.111.93 -- 13:52:07.669 INFO [6143]: COREGRADE is stopping... -- 13:52:07.669 DEBUG [6143]: Closing database connection -- 13:52:07.669 SQL [6143]: pgsql_close() -- 13:52:15.086 INFO [6144]: COREGRADE is starting... -- 13:52:15.086 INFO [6144]: Version from config: 1.0 -- 13:52:15.086 DEBUG [6144]: Connecting to database... -- 13:52:15.086 DEBUG [6144]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:52:15.086 SQL [6144]: pgsql_db_connect() -- 13:52:15.090 DEBUG [6144]: Database connection successful -- 13:52:15.090 INFO [6144]: _SERVER found -- 13:52:15.090 INFO [6144]: REMOTE_ADDR = 192.168.1.13 -- 13:52:15.090 INFO [6144]: SERVER_NAME = oameye.works.coregrade.com -- 13:52:15.090 INFO [6144]: QUERY_STRING = s=captcha -- 13:52:15.090 INFO [6144]: HTTP_X_FORWARDED_FOR = 49.234.111.93 -- 13:52:15.123 INFO [6144]: COREGRADE is stopping... -- 13:52:15.123 DEBUG [6144]: Closing database connection -- 13:52:15.123 SQL [6144]: pgsql_close() -- 13:52:17.938 INFO [22290]: COREGRADE is starting... -- 13:52:17.938 INFO [22290]: Version from config: 1.0 -- 13:52:17.938 DEBUG [22290]: Connecting to database... -- 13:52:17.938 DEBUG [22290]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:52:17.938 SQL [22290]: pgsql_db_connect() -- 13:52:17.942 DEBUG [22290]: Database connection successful -- 13:52:17.942 INFO [22290]: _SERVER found -- 13:52:17.942 INFO [22290]: REMOTE_ADDR = 192.168.1.13 -- 13:52:17.942 INFO [22290]: SERVER_NAME = oameye.works.coregrade.com -- 13:52:17.942 INFO [22290]: QUERY_STRING = -- 13:52:17.942 INFO [22290]: HTTP_X_FORWARDED_FOR = 49.234.111.93 -- 13:52:17.975 INFO [22290]: COREGRADE is stopping... -- 13:52:17.975 DEBUG [22290]: Closing database connection -- 13:52:17.975 SQL [22290]: pgsql_close() -- 14:22:24.736 INFO [4472]: COREGRADE is starting... -- 14:22:24.736 INFO [4472]: Version from config: 1.0 -- 14:22:24.736 DEBUG [4472]: Connecting to database... -- 14:22:24.736 DEBUG [4472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:22:24.736 SQL [4472]: pgsql_db_connect() -- 14:22:24.741 DEBUG [4472]: Database connection successful -- 14:22:24.741 INFO [4472]: _SERVER found -- 14:22:24.741 INFO [4472]: REMOTE_ADDR = 192.168.1.13 -- 14:22:24.741 INFO [4472]: SERVER_NAME = oameye.works.coregrade.com -- 14:22:24.741 INFO [4472]: QUERY_STRING = -- 14:22:24.741 INFO [4472]: HTTP_X_FORWARDED_FOR = 195.142.115.111 -- 14:22:24.778 INFO [4472]: COREGRADE is stopping... -- 14:22:24.778 DEBUG [4472]: Closing database connection -- 14:22:24.778 SQL [4472]: pgsql_close() -- 14:38:08.196 INFO [20322]: COREGRADE is starting... -- 14:38:08.197 INFO [20322]: Version from config: 1.0 -- 14:38:08.197 DEBUG [20322]: Connecting to database... -- 14:38:08.197 DEBUG [20322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:38:08.197 SQL [20322]: pgsql_db_connect() -- 14:38:08.201 DEBUG [20322]: Database connection successful -- 14:38:08.201 INFO [20322]: _SERVER found -- 14:38:08.201 INFO [20322]: REMOTE_ADDR = 192.168.1.13 -- 14:38:08.201 INFO [20322]: SERVER_NAME = oameye.works.coregrade.com -- 14:38:08.201 INFO [20322]: QUERY_STRING = -- 14:38:08.201 INFO [20322]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 14:38:08.240 INFO [20322]: COREGRADE is stopping... -- 14:38:08.240 DEBUG [20322]: Closing database connection -- 14:38:08.240 SQL [20322]: pgsql_close() -- 17:34:25.888 INFO [21486]: COREGRADE is starting... -- 17:34:25.889 INFO [21486]: Version from config: 1.0 -- 17:34:25.889 DEBUG [21486]: Connecting to database... -- 17:34:25.889 DEBUG [21486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:34:25.889 SQL [21486]: pgsql_db_connect() -- 17:34:25.893 DEBUG [21486]: Database connection successful -- 17:34:25.893 INFO [21486]: _SERVER found -- 17:34:25.893 INFO [21486]: REMOTE_ADDR = 192.168.1.13 -- 17:34:25.893 INFO [21486]: SERVER_NAME = oameye.works.coregrade.com -- 17:34:25.893 INFO [21486]: QUERY_STRING = /TP/public/index.php -- 17:34:25.893 INFO [21486]: HTTP_X_FORWARDED_FOR = 5.42.233.17 -- 17:34:25.907 INFO [21486]: COREGRADE is stopping... -- 17:34:25.907 DEBUG [21486]: Closing database connection -- 17:34:25.907 SQL [21486]: pgsql_close() -- 17:34:27.071 INFO [21486]: COREGRADE is starting... -- 17:34:27.071 INFO [21486]: Version from config: 1.0 -- 17:34:27.071 DEBUG [21486]: Connecting to database... -- 17:34:27.071 DEBUG [21486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:34:27.071 SQL [21486]: pgsql_db_connect() -- 17:34:27.075 DEBUG [21486]: Database connection successful -- 17:34:27.075 INFO [21486]: _SERVER found -- 17:34:27.075 INFO [21486]: REMOTE_ADDR = 192.168.1.13 -- 17:34:27.075 INFO [21486]: SERVER_NAME = oameye.works.coregrade.com -- 17:34:27.075 INFO [21486]: QUERY_STRING = /TP/index.php -- 17:34:27.075 INFO [21486]: HTTP_X_FORWARDED_FOR = 5.42.233.17 -- 17:34:27.087 INFO [21486]: COREGRADE is stopping... -- 17:34:27.087 DEBUG [21486]: Closing database connection -- 17:34:27.087 SQL [21486]: pgsql_close() -- 17:34:28.283 INFO [21486]: COREGRADE is starting... -- 17:34:28.283 INFO [21486]: Version from config: 1.0 -- 17:34:28.284 DEBUG [21486]: Connecting to database... -- 17:34:28.284 DEBUG [21486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:34:28.284 SQL [21486]: pgsql_db_connect() -- 17:34:28.288 DEBUG [21486]: Database connection successful -- 17:34:28.288 INFO [21486]: _SERVER found -- 17:34:28.288 INFO [21486]: REMOTE_ADDR = 192.168.1.13 -- 17:34:28.288 INFO [21486]: SERVER_NAME = oameye.works.coregrade.com -- 17:34:28.288 INFO [21486]: QUERY_STRING = /thinkphp/html/public/index.php -- 17:34:28.288 INFO [21486]: HTTP_X_FORWARDED_FOR = 5.42.233.17 -- 17:34:28.299 INFO [21486]: COREGRADE is stopping... -- 17:34:28.299 DEBUG [21486]: Closing database connection -- 17:34:28.299 SQL [21486]: pgsql_close() -- 17:34:29.787 INFO [20323]: COREGRADE is starting... -- 17:34:29.787 INFO [20323]: Version from config: 1.0 -- 17:34:29.787 DEBUG [20323]: Connecting to database... -- 17:34:29.787 DEBUG [20323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:34:29.787 SQL [20323]: pgsql_db_connect() -- 17:34:29.792 DEBUG [20323]: Database connection successful -- 17:34:29.792 INFO [20323]: _SERVER found -- 17:34:29.792 INFO [20323]: REMOTE_ADDR = 192.168.1.13 -- 17:34:29.792 INFO [20323]: SERVER_NAME = oameye.works.coregrade.com -- 17:34:29.792 INFO [20323]: QUERY_STRING = /html/public/index.php -- 17:34:29.792 INFO [20323]: HTTP_X_FORWARDED_FOR = 5.42.233.17 -- 17:34:29.805 INFO [20323]: COREGRADE is stopping... -- 17:34:29.805 DEBUG [20323]: Closing database connection -- 17:34:29.805 SQL [20323]: pgsql_close() -- 17:34:30.967 INFO [20323]: COREGRADE is starting... -- 17:34:30.967 INFO [20323]: Version from config: 1.0 -- 17:34:30.967 DEBUG [20323]: Connecting to database... -- 17:34:30.967 DEBUG [20323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:34:30.967 SQL [20323]: pgsql_db_connect() -- 17:34:30.971 DEBUG [20323]: Database connection successful -- 17:34:30.971 INFO [20323]: _SERVER found -- 17:34:30.971 INFO [20323]: REMOTE_ADDR = 192.168.1.13 -- 17:34:30.971 INFO [20323]: SERVER_NAME = oameye.works.coregrade.com -- 17:34:30.971 INFO [20323]: QUERY_STRING = /public/index.php -- 17:34:30.971 INFO [20323]: HTTP_X_FORWARDED_FOR = 5.42.233.17 -- 17:34:30.982 INFO [20323]: COREGRADE is stopping... -- 17:34:30.982 DEBUG [20323]: Closing database connection -- 17:34:30.982 SQL [20323]: pgsql_close() -- 17:34:33.613 INFO [20323]: COREGRADE is starting... -- 17:34:33.613 INFO [20323]: Version from config: 1.0 -- 17:34:33.613 DEBUG [20323]: Connecting to database... -- 17:34:33.613 DEBUG [20323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:34:33.613 SQL [20323]: pgsql_db_connect() -- 17:34:33.617 DEBUG [20323]: Database connection successful -- 17:34:33.617 INFO [20323]: _SERVER found -- 17:34:33.617 INFO [20323]: REMOTE_ADDR = 192.168.1.13 -- 17:34:33.617 INFO [20323]: SERVER_NAME = oameye.works.coregrade.com -- 17:34:33.617 INFO [20323]: QUERY_STRING = /TP/html/public/index.php -- 17:34:33.617 INFO [20323]: HTTP_X_FORWARDED_FOR = 5.42.233.17 -- 17:34:33.628 INFO [20323]: COREGRADE is stopping... -- 17:34:33.628 DEBUG [20323]: Closing database connection -- 17:34:33.628 SQL [20323]: pgsql_close() -- 17:34:34.788 INFO [20323]: COREGRADE is starting... -- 17:34:34.788 INFO [20323]: Version from config: 1.0 -- 17:34:34.788 DEBUG [20323]: Connecting to database... -- 17:34:34.788 DEBUG [20323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:34:34.788 SQL [20323]: pgsql_db_connect() -- 17:34:34.793 DEBUG [20323]: Database connection successful -- 17:34:34.793 INFO [20323]: _SERVER found -- 17:34:34.793 INFO [20323]: REMOTE_ADDR = 192.168.1.13 -- 17:34:34.793 INFO [20323]: SERVER_NAME = oameye.works.coregrade.com -- 17:34:34.793 INFO [20323]: QUERY_STRING = /elrekt.php -- 17:34:34.793 INFO [20323]: HTTP_X_FORWARDED_FOR = 5.42.233.17 -- 17:34:34.804 INFO [20323]: COREGRADE is stopping... -- 17:34:34.804 DEBUG [20323]: Closing database connection -- 17:34:34.804 SQL [20323]: pgsql_close() -- 17:34:36.248 INFO [20323]: COREGRADE is starting... -- 17:34:36.248 INFO [20323]: Version from config: 1.0 -- 17:34:36.248 DEBUG [20323]: Connecting to database... -- 17:34:36.248 DEBUG [20323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:34:36.248 SQL [20323]: pgsql_db_connect() -- 17:34:36.252 DEBUG [20323]: Database connection successful -- 17:34:36.252 INFO [20323]: _SERVER found -- 17:34:36.252 INFO [20323]: REMOTE_ADDR = 192.168.1.13 -- 17:34:36.252 INFO [20323]: SERVER_NAME = oameye.works.coregrade.com -- 17:34:36.252 INFO [20323]: QUERY_STRING = -- 17:34:36.252 INFO [20323]: HTTP_X_FORWARDED_FOR = 5.42.233.17 -- 17:34:36.285 INFO [20323]: COREGRADE is stopping... -- 17:34:36.285 DEBUG [20323]: Closing database connection -- 17:34:36.285 SQL [20323]: pgsql_close() -- 17:34:37.471 INFO [20323]: COREGRADE is starting... -- 17:34:37.471 INFO [20323]: Version from config: 1.0 -- 17:34:37.471 DEBUG [20323]: Connecting to database... -- 17:34:37.471 DEBUG [20323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:34:37.471 SQL [20323]: pgsql_db_connect() -- 17:34:37.475 DEBUG [20323]: Database connection successful -- 17:34:37.475 INFO [20323]: _SERVER found -- 17:34:37.475 INFO [20323]: REMOTE_ADDR = 192.168.1.13 -- 17:34:37.475 INFO [20323]: SERVER_NAME = oameye.works.coregrade.com -- 17:34:37.475 INFO [20323]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 17:34:37.475 INFO [20323]: HTTP_X_FORWARDED_FOR = 5.42.233.17 -- 17:34:37.506 INFO [20323]: COREGRADE is stopping... -- 17:34:37.506 DEBUG [20323]: Closing database connection -- 17:34:37.506 SQL [20323]: pgsql_close() -- 17:34:38.659 INFO [20323]: COREGRADE is starting... -- 17:34:38.660 INFO [20323]: Version from config: 1.0 -- 17:34:38.660 DEBUG [20323]: Connecting to database... -- 17:34:38.660 DEBUG [20323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:34:38.660 SQL [20323]: pgsql_db_connect() -- 17:34:38.664 DEBUG [20323]: Database connection successful -- 17:34:38.664 INFO [20323]: _SERVER found -- 17:34:38.664 INFO [20323]: REMOTE_ADDR = 192.168.1.13 -- 17:34:38.664 INFO [20323]: SERVER_NAME = oameye.works.coregrade.com -- 17:34:38.664 INFO [20323]: QUERY_STRING = s=captcha -- 17:34:38.664 INFO [20323]: HTTP_X_FORWARDED_FOR = 5.42.233.17 -- 17:34:38.695 INFO [20323]: COREGRADE is stopping... -- 17:34:38.695 DEBUG [20323]: Closing database connection -- 17:34:38.695 SQL [20323]: pgsql_close() -- 17:34:39.860 INFO [20323]: COREGRADE is starting... -- 17:34:39.861 INFO [20323]: Version from config: 1.0 -- 17:34:39.861 DEBUG [20323]: Connecting to database... -- 17:34:39.861 DEBUG [20323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:34:39.861 SQL [20323]: pgsql_db_connect() -- 17:34:39.865 DEBUG [20323]: Database connection successful -- 17:34:39.865 INFO [20323]: _SERVER found -- 17:34:39.865 INFO [20323]: REMOTE_ADDR = 192.168.1.13 -- 17:34:39.865 INFO [20323]: SERVER_NAME = oameye.works.coregrade.com -- 17:34:39.865 INFO [20323]: QUERY_STRING = -- 17:34:39.865 INFO [20323]: HTTP_X_FORWARDED_FOR = 5.42.233.17 -- 17:34:39.896 INFO [20323]: COREGRADE is stopping... -- 17:34:39.896 DEBUG [20323]: Closing database connection -- 17:34:39.896 SQL [20323]: pgsql_close() -- 18:02:15.391 INFO [592]: COREGRADE is starting... -- 18:02:15.391 INFO [592]: Version from config: 1.0 -- 18:02:15.391 DEBUG [592]: Connecting to database... -- 18:02:15.391 DEBUG [592]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:02:15.391 SQL [592]: pgsql_db_connect() -- 18:02:15.396 DEBUG [592]: Database connection successful -- 18:02:15.396 INFO [592]: _SERVER found -- 18:02:15.396 INFO [592]: REMOTE_ADDR = 192.168.1.13 -- 18:02:15.396 INFO [592]: SERVER_NAME = oameye.works.coregrade.com -- 18:02:15.396 INFO [592]: QUERY_STRING = /solr/admin/info/system -- 18:02:15.396 INFO [592]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 18:02:15.409 INFO [592]: COREGRADE is stopping... -- 18:02:15.409 DEBUG [592]: Closing database connection -- 18:02:15.409 SQL [592]: pgsql_close() -- 18:09:30.716 INFO [20325]: COREGRADE is starting... -- 18:09:30.716 INFO [20325]: Version from config: 1.0 -- 18:09:30.716 DEBUG [20325]: Connecting to database... -- 18:09:30.716 DEBUG [20325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:09:30.716 SQL [20325]: pgsql_db_connect() -- 18:09:30.721 DEBUG [20325]: Database connection successful -- 18:09:30.721 INFO [20325]: _SERVER found -- 18:09:30.721 INFO [20325]: REMOTE_ADDR = 192.168.1.13 -- 18:09:30.721 INFO [20325]: SERVER_NAME = oameye.works.coregrade.com -- 18:09:30.721 INFO [20325]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 18:09:30.721 INFO [20325]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 18:09:30.756 INFO [20325]: COREGRADE is stopping... -- 18:09:30.756 DEBUG [20325]: Closing database connection -- 18:09:30.756 SQL [20325]: pgsql_close() -- 18:09:39.036 INFO [22288]: COREGRADE is starting... -- 18:09:39.037 INFO [22288]: Version from config: 1.0 -- 18:09:39.037 DEBUG [22288]: Connecting to database... -- 18:09:39.037 DEBUG [22288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:09:39.037 SQL [22288]: pgsql_db_connect() -- 18:09:39.041 DEBUG [22288]: Database connection successful -- 18:09:39.041 INFO [22288]: _SERVER found -- 18:09:39.041 INFO [22288]: REMOTE_ADDR = 192.168.1.13 -- 18:09:39.041 INFO [22288]: SERVER_NAME = oameye.works.coregrade.com -- 18:09:39.041 INFO [22288]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 18:09:39.041 INFO [22288]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 18:09:39.074 INFO [22288]: COREGRADE is stopping... -- 18:09:39.074 DEBUG [22288]: Closing database connection -- 18:09:39.074 SQL [22288]: pgsql_close() -- 18:15:39.892 INFO [6143]: COREGRADE is starting... -- 18:15:39.893 INFO [6143]: Version from config: 1.0 -- 18:15:39.893 DEBUG [6143]: Connecting to database... -- 18:15:39.893 DEBUG [6143]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:15:39.893 SQL [6143]: pgsql_db_connect() -- 18:15:39.897 DEBUG [6143]: Database connection successful -- 18:15:39.897 INFO [6143]: _SERVER found -- 18:15:39.897 INFO [6143]: REMOTE_ADDR = 192.168.1.13 -- 18:15:39.897 INFO [6143]: SERVER_NAME = oameye.works.coregrade.com -- 18:15:39.897 INFO [6143]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 18:15:39.897 INFO [6143]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 18:15:39.931 INFO [6143]: COREGRADE is stopping... -- 18:15:39.931 DEBUG [6143]: Closing database connection -- 18:15:39.931 SQL [6143]: pgsql_close() -- 20:38:41.979 INFO [6144]: COREGRADE is starting... -- 20:38:41.980 INFO [6144]: Version from config: 1.0 -- 20:38:41.980 DEBUG [6144]: Connecting to database... -- 20:38:41.980 DEBUG [6144]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:38:41.980 SQL [6144]: pgsql_db_connect() -- 20:38:41.984 DEBUG [6144]: Database connection successful -- 20:38:41.984 INFO [6144]: _SERVER found -- 20:38:41.984 INFO [6144]: REMOTE_ADDR = 192.168.1.13 -- 20:38:41.984 INFO [6144]: SERVER_NAME = oameye.works.coregrade.com -- 20:38:41.984 INFO [6144]: QUERY_STRING = -- 20:38:41.984 INFO [6144]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 20:38:42.020 INFO [6144]: COREGRADE is stopping... -- 20:38:42.020 DEBUG [6144]: Closing database connection -- 20:38:42.020 SQL [6144]: pgsql_close() -- 00:08:41.317 INFO [22290]: COREGRADE is starting... -- 00:08:41.318 INFO [22290]: Version from config: 1.0 -- 00:08:41.318 DEBUG [22290]: Connecting to database... -- 00:08:41.318 DEBUG [22290]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:41.318 SQL [22290]: pgsql_db_connect() -- 00:08:41.322 DEBUG [22290]: Database connection successful -- 00:08:41.322 INFO [22290]: _SERVER found -- 00:08:41.322 INFO [22290]: REMOTE_ADDR = 192.168.1.13 -- 00:08:41.322 INFO [22290]: SERVER_NAME = oameye.works.coregrade.com -- 00:08:41.322 INFO [22290]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 00:08:41.322 INFO [22290]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 00:08:41.335 INFO [22290]: COREGRADE is stopping... -- 00:08:41.335 DEBUG [22290]: Closing database connection -- 00:08:41.335 SQL [22290]: pgsql_close() -- 01:02:09.441 INFO [4472]: COREGRADE is starting... -- 01:02:09.441 INFO [4472]: Version from config: 1.0 -- 01:02:09.441 DEBUG [4472]: Connecting to database... -- 01:02:09.441 DEBUG [4472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:02:09.441 SQL [4472]: pgsql_db_connect() -- 01:02:09.446 DEBUG [4472]: Database connection successful -- 01:02:09.446 INFO [4472]: _SERVER found -- 01:02:09.446 INFO [4472]: REMOTE_ADDR = 192.168.1.13 -- 01:02:09.446 INFO [4472]: SERVER_NAME = oameye.works.coregrade.com -- 01:02:09.446 INFO [4472]: QUERY_STRING = /.well-known/acme-challenge/TFTG1l7hI6hWyDTsNeOgjkt1iZS7_0lCCVXP_F-_Qfg -- 01:02:09.446 INFO [4472]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 01:02:09.459 INFO [4472]: COREGRADE is stopping... -- 01:02:09.460 DEBUG [4472]: Closing database connection -- 01:02:09.460 SQL [4472]: pgsql_close() -- 01:02:09.990 INFO [21486]: COREGRADE is starting... -- 01:02:09.990 INFO [21486]: Version from config: 1.0 -- 01:02:09.990 DEBUG [21486]: Connecting to database... -- 01:02:09.990 DEBUG [21486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:02:09.991 SQL [21486]: pgsql_db_connect() -- 01:02:09.995 DEBUG [21486]: Database connection successful -- 01:02:09.995 INFO [21486]: _SERVER found -- 01:02:09.995 INFO [21486]: REMOTE_ADDR = 192.168.1.13 -- 01:02:09.995 INFO [21486]: SERVER_NAME = oameye.works.coregrade.com -- 01:02:09.995 INFO [21486]: QUERY_STRING = /.well-known/acme-challenge/TFTG1l7hI6hWyDTsNeOgjkt1iZS7_0lCCVXP_F-_Qfg -- 01:02:09.995 INFO [21486]: HTTP_X_FORWARDED_FOR = 18.194.58.132 -- 01:02:10.007 INFO [21486]: COREGRADE is stopping... -- 01:02:10.007 DEBUG [21486]: Closing database connection -- 01:02:10.007 SQL [21486]: pgsql_close() -- 01:02:10.025 INFO [4472]: COREGRADE is starting... -- 01:02:10.026 INFO [4472]: Version from config: 1.0 -- 01:02:10.026 DEBUG [4472]: Connecting to database... -- 01:02:10.026 DEBUG [4472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:02:10.026 SQL [4472]: pgsql_db_connect() -- 01:02:10.029 DEBUG [4472]: Database connection successful -- 01:02:10.029 INFO [4472]: _SERVER found -- 01:02:10.029 INFO [4472]: REMOTE_ADDR = 192.168.1.13 -- 01:02:10.029 INFO [4472]: SERVER_NAME = oameye.works.coregrade.com -- 01:02:10.029 INFO [4472]: QUERY_STRING = /.well-known/acme-challenge/TFTG1l7hI6hWyDTsNeOgjkt1iZS7_0lCCVXP_F-_Qfg -- 01:02:10.029 INFO [4472]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 01:02:10.041 INFO [4472]: COREGRADE is stopping... -- 01:02:10.041 DEBUG [4472]: Closing database connection -- 01:02:10.041 SQL [4472]: pgsql_close() -- 01:02:10.111 INFO [592]: COREGRADE is starting... -- 01:02:10.111 INFO [592]: Version from config: 1.0 -- 01:02:10.111 DEBUG [592]: Connecting to database... -- 01:02:10.111 DEBUG [592]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:02:10.111 SQL [592]: pgsql_db_connect() -- 01:02:10.115 DEBUG [592]: Database connection successful -- 01:02:10.115 INFO [592]: _SERVER found -- 01:02:10.115 INFO [592]: REMOTE_ADDR = 192.168.1.13 -- 01:02:10.115 INFO [592]: SERVER_NAME = oameye.works.coregrade.com -- 01:02:10.115 INFO [592]: QUERY_STRING = /.well-known/acme-challenge/TFTG1l7hI6hWyDTsNeOgjkt1iZS7_0lCCVXP_F-_Qfg -- 01:02:10.115 INFO [592]: HTTP_X_FORWARDED_FOR = 34.222.229.130 -- 01:02:10.128 INFO [592]: COREGRADE is stopping... -- 01:02:10.128 DEBUG [592]: Closing database connection -- 01:02:10.128 SQL [592]: pgsql_close() -- 02:12:25.002 INFO [20325]: COREGRADE is starting... -- 02:12:25.002 INFO [20325]: Version from config: 1.0 -- 02:12:25.002 DEBUG [20325]: Connecting to database... -- 02:12:25.002 DEBUG [20325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:12:25.002 SQL [20325]: pgsql_db_connect() -- 02:12:25.008 DEBUG [20325]: Database connection successful -- 02:12:25.008 INFO [20325]: _SERVER found -- 02:12:25.008 INFO [20325]: REMOTE_ADDR = 192.168.1.13 -- 02:12:25.008 INFO [20325]: SERVER_NAME = oameye.works.coregrade.com -- 02:12:25.008 INFO [20325]: QUERY_STRING = /wp-login.php -- 02:12:25.008 INFO [20325]: HTTP_X_FORWARDED_FOR = 91.121.183.15 -- 02:12:25.022 INFO [20325]: COREGRADE is stopping... -- 02:12:25.023 DEBUG [20325]: Closing database connection -- 02:12:25.023 SQL [20325]: pgsql_close() -- 02:18:10.503 INFO [22288]: COREGRADE is starting... -- 02:18:10.503 INFO [22288]: Version from config: 1.0 -- 02:18:10.503 DEBUG [22288]: Connecting to database... -- 02:18:10.503 DEBUG [22288]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:18:10.503 SQL [22288]: pgsql_db_connect() -- 02:18:10.507 DEBUG [22288]: Database connection successful -- 02:18:10.507 INFO [22288]: _SERVER found -- 02:18:10.507 INFO [22288]: REMOTE_ADDR = 192.168.1.13 -- 02:18:10.507 INFO [22288]: SERVER_NAME = oameye.works.coregrade.com -- 02:18:10.507 INFO [22288]: QUERY_STRING = /robots.txt -- 02:18:10.507 INFO [22288]: HTTP_X_FORWARDED_FOR = 91.121.183.15 -- 02:18:10.520 INFO [22288]: COREGRADE is stopping... -- 02:18:10.520 DEBUG [22288]: Closing database connection -- 02:18:10.520 SQL [22288]: pgsql_close() -- 02:38:57.441 INFO [6143]: COREGRADE is starting... -- 02:38:57.441 INFO [6143]: Version from config: 1.0 -- 02:38:57.441 DEBUG [6143]: Connecting to database... -- 02:38:57.441 DEBUG [6143]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:38:57.441 SQL [6143]: pgsql_db_connect() -- 02:38:57.446 DEBUG [6143]: Database connection successful -- 02:38:57.446 INFO [6143]: _SERVER found -- 02:38:57.446 INFO [6143]: REMOTE_ADDR = 192.168.1.13 -- 02:38:57.446 INFO [6143]: SERVER_NAME = oameye.works.coregrade.com -- 02:38:57.446 INFO [6143]: QUERY_STRING = -- 02:38:57.446 INFO [6143]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 02:38:57.482 INFO [6143]: COREGRADE is stopping... -- 02:38:57.482 DEBUG [6143]: Closing database connection -- 02:38:57.482 SQL [6143]: pgsql_close() -- 06:14:37.676 INFO [29858]: COREGRADE is starting... -- 06:14:37.677 INFO [29858]: Version from config: 1.0 -- 06:14:37.677 DEBUG [29858]: Connecting to database... -- 06:14:37.677 DEBUG [29858]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:14:37.677 SQL [29858]: pgsql_db_connect() -- 06:14:37.682 DEBUG [29858]: Database connection successful -- 06:14:37.682 INFO [29858]: _SERVER found -- 06:14:37.682 INFO [29858]: REMOTE_ADDR = 192.168.1.13 -- 06:14:37.682 INFO [29858]: SERVER_NAME = oameye.works.coregrade.com -- 06:14:37.682 INFO [29858]: QUERY_STRING = -- 06:14:37.682 INFO [29858]: HTTP_X_FORWARDED_FOR = 45.93.19.2 -- 06:14:37.733 INFO [29858]: COREGRADE is stopping... -- 06:14:37.733 DEBUG [29858]: Closing database connection -- 06:14:37.733 SQL [29858]: pgsql_close() -- 06:14:38.892 INFO [29858]: COREGRADE is starting... -- 06:14:38.892 INFO [29858]: Version from config: 1.0 -- 06:14:38.892 DEBUG [29858]: Connecting to database... -- 06:14:38.892 DEBUG [29858]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:14:38.892 SQL [29858]: pgsql_db_connect() -- 06:14:38.896 DEBUG [29858]: Database connection successful -- 06:14:38.896 INFO [29858]: _SERVER found -- 06:14:38.896 INFO [29858]: REMOTE_ADDR = 192.168.1.13 -- 06:14:38.896 INFO [29858]: SERVER_NAME = oameye.works.coregrade.com -- 06:14:38.896 INFO [29858]: QUERY_STRING = /public/index.php -- 06:14:38.896 INFO [29858]: HTTP_X_FORWARDED_FOR = 45.93.19.2 -- 06:14:38.908 INFO [29858]: COREGRADE is stopping... -- 06:14:38.908 DEBUG [29858]: Closing database connection -- 06:14:38.908 SQL [29858]: pgsql_close() -- 06:14:39.351 INFO [29858]: COREGRADE is starting... -- 06:14:39.352 INFO [29858]: Version from config: 1.0 -- 06:14:39.352 DEBUG [29858]: Connecting to database... -- 06:14:39.352 DEBUG [29858]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:14:39.352 SQL [29858]: pgsql_db_connect() -- 06:14:39.356 DEBUG [29858]: Database connection successful -- 06:14:39.356 INFO [29858]: _SERVER found -- 06:14:39.356 INFO [29858]: REMOTE_ADDR = 192.168.1.13 -- 06:14:39.356 INFO [29858]: SERVER_NAME = oameye.works.coregrade.com -- 06:14:39.356 INFO [29858]: QUERY_STRING = -- 06:14:39.356 INFO [29858]: HTTP_X_FORWARDED_FOR = 45.93.19.2 -- 06:14:39.388 INFO [29858]: COREGRADE is stopping... -- 06:14:39.388 DEBUG [29858]: Closing database connection -- 06:14:39.388 SQL [29858]: pgsql_close() -- 06:15:00.000 INFO [29859]: COREGRADE is starting... -- 06:15:00.000 INFO [29859]: Version from config: 1.0 -- 06:15:00.000 DEBUG [29859]: Connecting to database... -- 06:15:00.000 DEBUG [29859]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:15:00.000 SQL [29859]: pgsql_db_connect() -- 06:15:01.005 DEBUG [29859]: Database connection successful -- 06:15:01.005 INFO [29859]: _SERVER found -- 06:15:01.005 INFO [29859]: REMOTE_ADDR = 192.168.1.13 -- 06:15:01.005 INFO [29859]: SERVER_NAME = oameye.works.coregrade.com -- 06:15:01.005 INFO [29859]: QUERY_STRING = /public/index.php -- 06:15:01.005 INFO [29859]: HTTP_X_FORWARDED_FOR = 45.93.19.2 -- 06:15:01.020 INFO [29859]: COREGRADE is stopping... -- 06:15:01.020 DEBUG [29859]: Closing database connection -- 06:15:01.020 SQL [29859]: pgsql_close() -- 06:15:01.457 INFO [29859]: COREGRADE is starting... -- 06:15:01.457 INFO [29859]: Version from config: 1.0 -- 06:15:01.457 DEBUG [29859]: Connecting to database... -- 06:15:01.457 DEBUG [29859]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:15:01.457 SQL [29859]: pgsql_db_connect() -- 06:15:01.462 DEBUG [29859]: Database connection successful -- 06:15:01.462 INFO [29859]: _SERVER found -- 06:15:01.462 INFO [29859]: REMOTE_ADDR = 192.168.1.13 -- 06:15:01.462 INFO [29859]: SERVER_NAME = oameye.works.coregrade.com -- 06:15:01.462 INFO [29859]: QUERY_STRING = /public/index.php -- 06:15:01.462 INFO [29859]: HTTP_X_FORWARDED_FOR = 45.93.19.2 -- 06:15:01.473 INFO [29859]: COREGRADE is stopping... -- 06:15:01.473 DEBUG [29859]: Closing database connection -- 06:15:01.473 SQL [29859]: pgsql_close() -- 06:15:01.909 INFO [29859]: COREGRADE is starting... -- 06:15:01.909 INFO [29859]: Version from config: 1.0 -- 06:15:01.909 DEBUG [29859]: Connecting to database... -- 06:15:01.909 DEBUG [29859]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:15:01.909 SQL [29859]: pgsql_db_connect() -- 06:15:01.913 DEBUG [29859]: Database connection successful -- 06:15:01.913 INFO [29859]: _SERVER found -- 06:15:01.913 INFO [29859]: REMOTE_ADDR = 192.168.1.13 -- 06:15:01.913 INFO [29859]: SERVER_NAME = oameye.works.coregrade.com -- 06:15:01.913 INFO [29859]: QUERY_STRING = /public/index.php -- 06:15:01.913 INFO [29859]: HTTP_X_FORWARDED_FOR = 45.93.19.2 -- 06:15:01.925 INFO [29859]: COREGRADE is stopping... -- 06:15:01.925 DEBUG [29859]: Closing database connection -- 06:15:01.925 SQL [29859]: pgsql_close() -- 06:15:02.365 INFO [29859]: COREGRADE is starting... -- 06:15:02.365 INFO [29859]: Version from config: 1.0 -- 06:15:02.365 DEBUG [29859]: Connecting to database... -- 06:15:02.365 DEBUG [29859]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:15:02.365 SQL [29859]: pgsql_db_connect() -- 06:15:02.369 DEBUG [29859]: Database connection successful -- 06:15:02.369 INFO [29859]: _SERVER found -- 06:15:02.369 INFO [29859]: REMOTE_ADDR = 192.168.1.13 -- 06:15:02.369 INFO [29859]: SERVER_NAME = oameye.works.coregrade.com -- 06:15:02.369 INFO [29859]: QUERY_STRING = -- 06:15:02.369 INFO [29859]: HTTP_X_FORWARDED_FOR = 45.93.19.2 -- 06:15:02.410 INFO [29859]: COREGRADE is stopping... -- 06:15:02.410 DEBUG [29859]: Closing database connection -- 06:15:02.410 SQL [29859]: pgsql_close() -- 06:15:03.523 INFO [29860]: COREGRADE is starting... -- 06:15:03.523 INFO [29860]: Version from config: 1.0 -- 06:15:03.523 DEBUG [29860]: Connecting to database... -- 06:15:03.523 DEBUG [29860]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:15:03.523 SQL [29860]: pgsql_db_connect() -- 06:15:03.528 DEBUG [29860]: Database connection successful -- 06:15:03.528 INFO [29860]: _SERVER found -- 06:15:03.528 INFO [29860]: REMOTE_ADDR = 192.168.1.13 -- 06:15:03.528 INFO [29860]: SERVER_NAME = oameye.works.coregrade.com -- 06:15:03.528 INFO [29860]: QUERY_STRING = s=captcha -- 06:15:03.528 INFO [29860]: HTTP_X_FORWARDED_FOR = 45.93.19.2 -- 06:15:03.571 INFO [29860]: COREGRADE is stopping... -- 06:15:03.571 DEBUG [29860]: Closing database connection -- 06:15:03.571 SQL [29860]: pgsql_close() -- 06:15:04.473 INFO [29861]: COREGRADE is starting... -- 06:15:04.473 INFO [29861]: Version from config: 1.0 -- 06:15:04.473 DEBUG [29861]: Connecting to database... -- 06:15:04.474 DEBUG [29861]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:15:04.474 SQL [29861]: pgsql_db_connect() -- 06:15:04.478 DEBUG [29861]: Database connection successful -- 06:15:04.478 INFO [29861]: _SERVER found -- 06:15:04.478 INFO [29861]: REMOTE_ADDR = 192.168.1.13 -- 06:15:04.478 INFO [29861]: SERVER_NAME = oameye.works.coregrade.com -- 06:15:04.478 INFO [29861]: HTTP_COOKIE = ci_session=h95fn5pq0fs0ad0uacni9pmfasmm56pb -- 06:15:04.478 INFO [29861]: QUERY_STRING = s=captcha -- 06:15:04.478 INFO [29861]: HTTP_X_FORWARDED_FOR = 45.93.19.2 -- 06:15:04.521 INFO [29861]: COREGRADE is stopping... -- 06:15:04.521 DEBUG [29861]: Closing database connection -- 06:15:04.521 SQL [29861]: pgsql_close() -- 06:15:05.405 INFO [29860]: COREGRADE is starting... -- 06:15:05.406 INFO [29860]: Version from config: 1.0 -- 06:15:05.406 DEBUG [29860]: Connecting to database... -- 06:15:05.406 DEBUG [29860]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:15:05.406 SQL [29860]: pgsql_db_connect() -- 06:15:05.410 DEBUG [29860]: Database connection successful -- 06:15:05.410 INFO [29860]: _SERVER found -- 06:15:05.410 INFO [29860]: REMOTE_ADDR = 192.168.1.13 -- 06:15:05.410 INFO [29860]: SERVER_NAME = oameye.works.coregrade.com -- 06:15:05.410 INFO [29860]: HTTP_COOKIE = ci_session=h95fn5pq0fs0ad0uacni9pmfasmm56pb -- 06:15:05.410 INFO [29860]: QUERY_STRING = s=captcha -- 06:15:05.410 INFO [29860]: HTTP_X_FORWARDED_FOR = 45.93.19.2 -- 06:15:05.440 INFO [29860]: COREGRADE is stopping... -- 06:15:05.440 DEBUG [29860]: Closing database connection -- 06:15:05.440 SQL [29860]: pgsql_close() -- 06:15:06.337 INFO [29860]: COREGRADE is starting... -- 06:15:06.337 INFO [29860]: Version from config: 1.0 -- 06:15:06.337 DEBUG [29860]: Connecting to database... -- 06:15:06.337 DEBUG [29860]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:15:06.337 SQL [29860]: pgsql_db_connect() -- 06:15:06.341 DEBUG [29860]: Database connection successful -- 06:15:06.341 INFO [29860]: _SERVER found -- 06:15:06.341 INFO [29860]: REMOTE_ADDR = 192.168.1.13 -- 06:15:06.341 INFO [29860]: SERVER_NAME = oameye.works.coregrade.com -- 06:15:06.341 INFO [29860]: HTTP_COOKIE = ci_session=h95fn5pq0fs0ad0uacni9pmfasmm56pb -- 06:15:06.341 INFO [29860]: QUERY_STRING = s=index/%5Cthink%5Ctemplate%5Cdriver%5Cfile/write&cacheFile=spread.php&content=%3C?php%20@eval($_POST%5Bspread%5D);?%3E -- 06:15:06.341 INFO [29860]: HTTP_X_FORWARDED_FOR = 45.93.19.2 -- 06:15:06.371 INFO [29860]: COREGRADE is stopping... -- 06:15:06.371 DEBUG [29860]: Closing database connection -- 06:15:06.371 SQL [29860]: pgsql_close() -- 06:15:07.270 INFO [29861]: COREGRADE is starting... -- 06:15:07.271 INFO [29861]: Version from config: 1.0 -- 06:15:07.271 DEBUG [29861]: Connecting to database... -- 06:15:07.271 DEBUG [29861]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:15:07.271 SQL [29861]: pgsql_db_connect() -- 06:15:07.275 DEBUG [29861]: Database connection successful -- 06:15:07.275 INFO [29861]: _SERVER found -- 06:15:07.275 INFO [29861]: REMOTE_ADDR = 192.168.1.13 -- 06:15:07.275 INFO [29861]: SERVER_NAME = oameye.works.coregrade.com -- 06:15:07.275 INFO [29861]: HTTP_COOKIE = ci_session=h95fn5pq0fs0ad0uacni9pmfasmm56pb -- 06:15:07.275 INFO [29861]: QUERY_STRING = s=index/%5Cthink%5Capp/invokefunction&function=call_user_func_array&vars%5B0%5D=file_put_contents&vars%5B1%5D%5B%5D=spread.php&vars%5B1%5D%5B%5D=%3C?php%20@eval($_POST%5Bspread%5D);?%3E -- 06:15:07.275 INFO [29861]: HTTP_X_FORWARDED_FOR = 45.93.19.2 -- 06:15:07.306 INFO [29861]: COREGRADE is stopping... -- 06:15:07.306 DEBUG [29861]: Closing database connection -- 06:15:07.306 SQL [29861]: pgsql_close() -- 06:15:08.174 INFO [29861]: COREGRADE is starting... -- 06:15:08.174 INFO [29861]: Version from config: 1.0 -- 06:15:08.174 DEBUG [29861]: Connecting to database... -- 06:15:08.174 DEBUG [29861]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:15:08.174 SQL [29861]: pgsql_db_connect() -- 06:15:08.178 DEBUG [29861]: Database connection successful -- 06:15:08.178 INFO [29861]: _SERVER found -- 06:15:08.178 INFO [29861]: REMOTE_ADDR = 192.168.1.13 -- 06:15:08.178 INFO [29861]: SERVER_NAME = oameye.works.coregrade.com -- 06:15:08.178 INFO [29861]: HTTP_COOKIE = ci_session=h95fn5pq0fs0ad0uacni9pmfasmm56pb -- 06:15:08.178 INFO [29861]: QUERY_STRING = s=index/%5Cthink%5CContainer/invokefunction&function=call_user_func_array&vars%5B0%5D=file_put_contents&vars%5B1%5D%5B%5D=spread.php&vars%5B1%5D%5B%5D=%3C?php%20@eval($_POST%5Bspread%5D);?%3E -- 06:15:08.178 INFO [29861]: HTTP_X_FORWARDED_FOR = 45.93.19.2 -- 06:15:08.208 INFO [29861]: COREGRADE is stopping... -- 06:15:08.208 DEBUG [29861]: Closing database connection -- 06:15:08.208 SQL [29861]: pgsql_close() -- 06:15:09.121 INFO [29861]: COREGRADE is starting... -- 06:15:09.121 INFO [29861]: Version from config: 1.0 -- 06:15:09.122 DEBUG [29861]: Connecting to database... -- 06:15:09.122 DEBUG [29861]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:15:09.122 SQL [29861]: pgsql_db_connect() -- 06:15:09.126 DEBUG [29861]: Database connection successful -- 06:15:09.126 INFO [29861]: _SERVER found -- 06:15:09.126 INFO [29861]: REMOTE_ADDR = 192.168.1.13 -- 06:15:09.126 INFO [29861]: SERVER_NAME = oameye.works.coregrade.com -- 06:15:09.126 INFO [29861]: HTTP_COOKIE = ci_session=h95fn5pq0fs0ad0uacni9pmfasmm56pb -- 06:15:09.126 INFO [29861]: QUERY_STRING = s=index/%5Cthink%5CContainer/invokefunction&function=call_user_func_array&vars%5B0%5D=file_put_contents&vars%5B1%5D%5B%5D=spread.php&vars%5B1%5D%5B1%5D=%3C?php%20@eval($_POST%5Bspread%5D);?%3E -- 06:15:09.126 INFO [29861]: HTTP_X_FORWARDED_FOR = 45.93.19.2 -- 06:15:09.155 INFO [29861]: COREGRADE is stopping... -- 06:15:09.155 DEBUG [29861]: Closing database connection -- 06:15:09.155 SQL [29861]: pgsql_close() -- 06:15:10.059 INFO [29861]: COREGRADE is starting... -- 06:15:10.059 INFO [29861]: Version from config: 1.0 -- 06:15:10.059 DEBUG [29861]: Connecting to database... -- 06:15:10.059 DEBUG [29861]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:15:10.059 SQL [29861]: pgsql_db_connect() -- 06:15:10.063 DEBUG [29861]: Database connection successful -- 06:15:10.063 INFO [29861]: _SERVER found -- 06:15:10.063 INFO [29861]: REMOTE_ADDR = 192.168.1.13 -- 06:15:10.063 INFO [29861]: SERVER_NAME = oameye.works.coregrade.com -- 06:15:10.063 INFO [29861]: HTTP_COOKIE = ci_session=h95fn5pq0fs0ad0uacni9pmfasmm56pb -- 06:15:10.063 INFO [29861]: QUERY_STRING = s=index/%5Cthink%5CRequest/input&cacheFile=spread.php&content=%3C?php%20@eval($_POST%5Bspread%5D);?%3E -- 06:15:10.063 INFO [29861]: HTTP_X_FORWARDED_FOR = 45.93.19.2 -- 06:15:10.093 INFO [29861]: COREGRADE is stopping... -- 06:15:10.093 DEBUG [29861]: Closing database connection -- 06:15:10.093 SQL [29861]: pgsql_close() -- 06:15:11.003 INFO [29861]: COREGRADE is starting... -- 06:15:11.003 INFO [29861]: Version from config: 1.0 -- 06:15:11.003 DEBUG [29861]: Connecting to database... -- 06:15:11.003 DEBUG [29861]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:15:11.003 SQL [29861]: pgsql_db_connect() -- 06:15:11.007 DEBUG [29861]: Database connection successful -- 06:15:11.007 INFO [29861]: _SERVER found -- 06:15:11.007 INFO [29861]: REMOTE_ADDR = 192.168.1.13 -- 06:15:11.007 INFO [29861]: SERVER_NAME = oameye.works.coregrade.com -- 06:15:11.007 INFO [29861]: HTTP_COOKIE = ci_session=h95fn5pq0fs0ad0uacni9pmfasmm56pb -- 06:15:11.007 INFO [29861]: QUERY_STRING = s=index/%5Cthink%5Cview%5Cdriver%5CPhp/display&cacheFile=spread.php&content=%3C?php%20@eval($_POST%5Bspread%5D);?%3E -- 06:15:11.007 INFO [29861]: HTTP_X_FORWARDED_FOR = 45.93.19.2 -- 06:15:11.037 INFO [29861]: COREGRADE is stopping... -- 06:15:11.037 DEBUG [29861]: Closing database connection -- 06:15:11.037 SQL [29861]: pgsql_close() -- 06:15:11.963 INFO [29862]: COREGRADE is starting... -- 06:15:11.963 INFO [29862]: Version from config: 1.0 -- 06:15:11.963 DEBUG [29862]: Connecting to database... -- 06:15:11.963 DEBUG [29862]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:15:11.963 SQL [29862]: pgsql_db_connect() -- 06:15:11.967 DEBUG [29862]: Database connection successful -- 06:15:11.967 INFO [29862]: _SERVER found -- 06:15:11.967 INFO [29862]: REMOTE_ADDR = 192.168.1.13 -- 06:15:11.967 INFO [29862]: SERVER_NAME = oameye.works.coregrade.com -- 06:15:11.967 INFO [29862]: HTTP_COOKIE = ci_session=h95fn5pq0fs0ad0uacni9pmfasmm56pb -- 06:15:11.967 INFO [29862]: QUERY_STRING = a=fetch&templateFile=public/index&prefix=''&content=%3Cphp%3Efile_put_contents('spread.php','%3C?php%20@eval($_POST%5Bspread%5D);?%3E') -- 06:15:11.967 INFO [29862]: HTTP_X_FORWARDED_FOR = 45.93.19.2 -- 06:15:12.010 INFO [29862]: COREGRADE is stopping... -- 06:15:12.010 DEBUG [29862]: Closing database connection -- 06:15:12.010 SQL [29862]: pgsql_close() -- 06:15:13.173 INFO [30490]: COREGRADE is starting... -- 06:15:13.174 INFO [30490]: Version from config: 1.0 -- 06:15:13.174 DEBUG [30490]: Connecting to database... -- 06:15:13.174 DEBUG [30490]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:15:13.174 SQL [30490]: pgsql_db_connect() -- 06:15:13.178 DEBUG [30490]: Database connection successful -- 06:15:13.178 INFO [30490]: _SERVER found -- 06:15:13.178 INFO [30490]: REMOTE_ADDR = 192.168.1.13 -- 06:15:13.178 INFO [30490]: SERVER_NAME = oameye.works.coregrade.com -- 06:15:13.178 INFO [30490]: QUERY_STRING = /spread.php -- 06:15:13.178 INFO [30490]: HTTP_X_FORWARDED_FOR = 45.93.19.2 -- 06:15:13.192 INFO [30490]: COREGRADE is stopping... -- 06:15:13.192 DEBUG [30490]: Closing database connection -- 06:15:13.192 SQL [30490]: pgsql_close() -- 06:15:13.633 INFO [30490]: COREGRADE is starting... -- 06:15:13.633 INFO [30490]: Version from config: 1.0 -- 06:15:13.633 DEBUG [30490]: Connecting to database... -- 06:15:13.633 DEBUG [30490]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:15:13.633 SQL [30490]: pgsql_db_connect() -- 06:15:13.637 DEBUG [30490]: Database connection successful -- 06:15:13.637 INFO [30490]: _SERVER found -- 06:15:13.637 INFO [30490]: REMOTE_ADDR = 192.168.1.13 -- 06:15:13.637 INFO [30490]: SERVER_NAME = oameye.works.coregrade.com -- 06:15:13.637 INFO [30490]: QUERY_STRING = /spread.php -- 06:15:13.637 INFO [30490]: HTTP_X_FORWARDED_FOR = 45.93.19.2 -- 06:15:13.649 INFO [30490]: COREGRADE is stopping... -- 06:15:13.649 DEBUG [30490]: Closing database connection -- 06:15:13.649 SQL [30490]: pgsql_close() -- 06:15:14.085 INFO [30490]: COREGRADE is starting... -- 06:15:14.085 INFO [30490]: Version from config: 1.0 -- 06:15:14.085 DEBUG [30490]: Connecting to database... -- 06:15:14.085 DEBUG [30490]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:15:14.085 SQL [30490]: pgsql_db_connect() -- 06:15:14.089 DEBUG [30490]: Database connection successful -- 06:15:14.089 INFO [30490]: _SERVER found -- 06:15:14.089 INFO [30490]: REMOTE_ADDR = 192.168.1.13 -- 06:15:14.089 INFO [30490]: SERVER_NAME = oameye.works.coregrade.com -- 06:15:14.089 INFO [30490]: QUERY_STRING = /phpmyadmin/index.php -- 06:15:14.089 INFO [30490]: HTTP_X_FORWARDED_FOR = 45.93.19.2 -- 06:15:14.100 INFO [30490]: COREGRADE is stopping... -- 06:15:14.100 DEBUG [30490]: Closing database connection -- 06:15:14.100 SQL [30490]: pgsql_close() -- 06:15:14.538 INFO [30490]: COREGRADE is starting... -- 06:15:14.538 INFO [30490]: Version from config: 1.0 -- 06:15:14.538 DEBUG [30490]: Connecting to database... -- 06:15:14.538 DEBUG [30490]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:15:14.538 SQL [30490]: pgsql_db_connect() -- 06:15:14.542 DEBUG [30490]: Database connection successful -- 06:15:14.542 INFO [30490]: _SERVER found -- 06:15:14.542 INFO [30490]: REMOTE_ADDR = 192.168.1.13 -- 06:15:14.542 INFO [30490]: SERVER_NAME = oameye.works.coregrade.com -- 06:15:14.542 INFO [30490]: QUERY_STRING = -- 06:15:14.542 INFO [30490]: HTTP_X_FORWARDED_FOR = 45.93.19.2 -- 06:15:14.581 INFO [30490]: COREGRADE is stopping... -- 06:15:14.581 DEBUG [30490]: Closing database connection -- 06:15:14.581 SQL [30490]: pgsql_close() -- 08:38:21.415 INFO [29858]: COREGRADE is starting... -- 08:38:21.416 INFO [29858]: Version from config: 1.0 -- 08:38:21.416 DEBUG [29858]: Connecting to database... -- 08:38:21.416 DEBUG [29858]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:38:21.416 SQL [29858]: pgsql_db_connect() -- 08:38:21.420 DEBUG [29858]: Database connection successful -- 08:38:21.421 INFO [29858]: _SERVER found -- 08:38:21.421 INFO [29858]: REMOTE_ADDR = 192.168.1.13 -- 08:38:21.421 INFO [29858]: SERVER_NAME = oameye.works.coregrade.com -- 08:38:21.421 INFO [29858]: QUERY_STRING = -- 08:38:21.421 INFO [29858]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 08:38:21.459 INFO [29858]: COREGRADE is stopping... -- 08:38:21.459 DEBUG [29858]: Closing database connection -- 08:38:21.459 SQL [29858]: pgsql_close() -- 10:34:09.724 INFO [30504]: COREGRADE is starting... -- 10:34:09.725 INFO [30504]: Version from config: 1.0 -- 10:34:09.725 DEBUG [30504]: Connecting to database... -- 10:34:09.725 DEBUG [30504]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:34:09.725 SQL [30504]: pgsql_db_connect() -- 10:34:09.730 DEBUG [30504]: Database connection successful -- 10:34:09.730 INFO [30504]: _SERVER found -- 10:34:09.730 INFO [30504]: REMOTE_ADDR = 192.168.1.13 -- 10:34:09.730 INFO [30504]: SERVER_NAME = oameye.works.coregrade.com -- 10:34:09.730 INFO [30504]: QUERY_STRING = -- 10:34:09.730 INFO [30504]: HTTP_X_FORWARDED_FOR = 104.238.220.208 -- 10:34:09.779 INFO [30504]: COREGRADE is stopping... -- 10:34:09.779 DEBUG [30504]: Closing database connection -- 10:34:09.779 SQL [30504]: pgsql_close() -- 14:38:25.916 INFO [30507]: COREGRADE is starting... -- 14:38:25.917 INFO [30507]: Version from config: 1.0 -- 14:38:25.917 DEBUG [30507]: Connecting to database... -- 14:38:25.917 DEBUG [30507]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:38:25.917 SQL [30507]: pgsql_db_connect() -- 14:38:25.922 DEBUG [30507]: Database connection successful -- 14:38:25.922 INFO [30507]: _SERVER found -- 14:38:25.922 INFO [30507]: REMOTE_ADDR = 192.168.1.13 -- 14:38:25.922 INFO [30507]: SERVER_NAME = oameye.works.coregrade.com -- 14:38:25.922 INFO [30507]: QUERY_STRING = -- 14:38:25.922 INFO [30507]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 14:38:25.975 INFO [30507]: COREGRADE is stopping... -- 14:38:25.975 DEBUG [30507]: Closing database connection -- 14:38:25.975 SQL [30507]: pgsql_close() -- 16:56:57.593 INFO [29859]: COREGRADE is starting... -- 16:56:57.593 INFO [29859]: Version from config: 1.0 -- 16:56:57.593 DEBUG [29859]: Connecting to database... -- 16:56:57.593 DEBUG [29859]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:57.593 SQL [29859]: pgsql_db_connect() -- 16:56:57.598 DEBUG [29859]: Database connection successful -- 16:56:57.598 INFO [29859]: _SERVER found -- 16:56:57.598 INFO [29859]: REMOTE_ADDR = 192.168.1.13 -- 16:56:57.598 INFO [29859]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:56:57.598 INFO [29859]: HTTP_COOKIE = _ga=GA1.2.1272433689.1578861338 -- 16:56:57.598 INFO [29859]: QUERY_STRING = -- 16:56:57.598 INFO [29859]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:56:57.641 INFO [29859]: COREGRADE is stopping... -- 16:56:57.641 DEBUG [29859]: Closing database connection -- 16:56:57.641 SQL [29859]: pgsql_close() -- 16:57:00.648 INFO [29859]: COREGRADE is starting... -- 16:57:00.649 INFO [29859]: Version from config: 1.0 -- 16:57:00.649 DEBUG [29859]: Connecting to database... -- 16:57:00.649 DEBUG [29859]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:00.649 SQL [29859]: pgsql_db_connect() -- 16:57:00.653 DEBUG [29859]: Database connection successful -- 16:57:00.653 INFO [29859]: _SERVER found -- 16:57:00.653 INFO [29859]: REMOTE_ADDR = 192.168.1.13 -- 16:57:00.653 INFO [29859]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:57:00.653 INFO [29859]: HTTP_COOKIE = _ga=GA1.2.1272433689.1578861338; ci_session=s9aruls8vskq4tpv1gr27as2of8735od; _gid=GA1.2.1901878921.1584910618; _gat_gtag_UA_54829827_2=1 -- 16:57:00.653 INFO [29859]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 16:57:00.653 INFO [29859]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:00.665 INFO [29859]: COREGRADE is stopping... -- 16:57:00.665 DEBUG [29859]: Closing database connection -- 16:57:00.665 SQL [29859]: pgsql_close() -- 16:57:00.770 INFO [29860]: COREGRADE is starting... -- 16:57:00.770 INFO [29860]: Version from config: 1.0 -- 16:57:00.770 DEBUG [29860]: Connecting to database... -- 16:57:00.770 DEBUG [29860]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:00.770 SQL [29860]: pgsql_db_connect() -- 16:57:00.774 DEBUG [29860]: Database connection successful -- 16:57:00.774 INFO [29860]: _SERVER found -- 16:57:00.774 INFO [29860]: REMOTE_ADDR = 192.168.1.13 -- 16:57:00.774 INFO [29860]: SERVER_NAME = tokslaw.works.coregrade.com -- 16:57:00.774 INFO [29860]: HTTP_COOKIE = _ga=GA1.2.1272433689.1578861338; ci_session=s9aruls8vskq4tpv1gr27as2of8735od; _gid=GA1.2.1901878921.1584910618; _gat_gtag_UA_54829827_2=1 -- 16:57:00.774 INFO [29860]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:57:00.774 INFO [29860]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:57:00.787 INFO [29860]: COREGRADE is stopping... -- 16:57:00.787 DEBUG [29860]: Closing database connection -- 16:57:00.787 SQL [29860]: pgsql_close() -- 20:38:58.486 INFO [30490]: COREGRADE is starting... -- 20:38:58.486 INFO [30490]: Version from config: 1.0 -- 20:38:58.486 DEBUG [30490]: Connecting to database... -- 20:38:58.486 DEBUG [30490]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:38:58.486 SQL [30490]: pgsql_db_connect() -- 20:38:58.492 DEBUG [30490]: Database connection successful -- 20:38:58.492 INFO [30490]: _SERVER found -- 20:38:58.492 INFO [30490]: REMOTE_ADDR = 192.168.1.13 -- 20:38:58.492 INFO [30490]: SERVER_NAME = oameye.works.coregrade.com -- 20:38:58.492 INFO [30490]: QUERY_STRING = -- 20:38:58.492 INFO [30490]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 20:38:58.532 INFO [30490]: COREGRADE is stopping... -- 20:38:58.533 DEBUG [30490]: Closing database connection -- 20:38:58.533 SQL [30490]: pgsql_close() -- 22:18:29.221 INFO [29858]: COREGRADE is starting... -- 22:18:29.222 INFO [29858]: Version from config: 1.0 -- 22:18:29.222 DEBUG [29858]: Connecting to database... -- 22:18:29.222 DEBUG [29858]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:18:29.222 SQL [29858]: pgsql_db_connect() -- 22:18:29.227 DEBUG [29858]: Database connection successful -- 22:18:29.227 INFO [29858]: _SERVER found -- 22:18:29.227 INFO [29858]: REMOTE_ADDR = 192.168.1.13 -- 22:18:29.227 INFO [29858]: SERVER_NAME = oameye.works.coregrade.com -- 22:18:29.227 INFO [29858]: QUERY_STRING = -- 22:18:29.227 INFO [29858]: HTTP_X_FORWARDED_FOR = 169.197.108.42 -- 22:18:29.265 INFO [29858]: COREGRADE is stopping... -- 22:18:29.265 DEBUG [29858]: Closing database connection -- 22:18:29.265 SQL [29858]: pgsql_close() -- 23:39:53.954 INFO [30504]: COREGRADE is starting... -- 23:39:53.954 INFO [30504]: Version from config: 1.0 -- 23:39:53.954 DEBUG [30504]: Connecting to database... -- 23:39:53.954 DEBUG [30504]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:39:53.954 SQL [30504]: pgsql_db_connect() -- 23:39:53.959 DEBUG [30504]: Database connection successful -- 23:39:53.959 INFO [30504]: _SERVER found -- 23:39:53.959 INFO [30504]: REMOTE_ADDR = 192.168.1.13 -- 23:39:53.959 INFO [30504]: SERVER_NAME = oameye.works.coregrade.com -- 23:39:53.959 INFO [30504]: QUERY_STRING = /wp-login.php -- 23:39:53.959 INFO [30504]: HTTP_X_FORWARDED_FOR = 167.172.108.188 -- 23:39:53.974 INFO [30504]: COREGRADE is stopping... -- 23:39:53.974 DEBUG [30504]: Closing database connection -- 23:39:53.974 SQL [30504]: pgsql_close() -- 01:00:02.933 INFO [30507]: COREGRADE is starting... -- 01:00:02.933 INFO [30507]: Version from config: 1.0 -- 01:00:02.933 DEBUG [30507]: Connecting to database... -- 01:00:02.933 DEBUG [30507]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:00:02.934 SQL [30507]: pgsql_db_connect() -- 01:00:02.939 DEBUG [30507]: Database connection successful -- 01:00:02.939 INFO [30507]: _SERVER found -- 01:00:02.939 INFO [30507]: REMOTE_ADDR = 192.168.1.13 -- 01:00:02.939 INFO [30507]: SERVER_NAME = oameye.works.coregrade.com -- 01:00:02.939 INFO [30507]: QUERY_STRING = /solr/admin/info/system -- 01:00:02.939 INFO [30507]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 01:00:02.953 INFO [30507]: COREGRADE is stopping... -- 01:00:02.953 DEBUG [30507]: Closing database connection -- 01:00:02.953 SQL [30507]: pgsql_close() -- 01:16:22.608 INFO [686]: COREGRADE is starting... -- 01:16:22.608 INFO [686]: Version from config: 1.0 -- 01:16:22.608 DEBUG [686]: Connecting to database... -- 01:16:22.608 DEBUG [686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:16:22.608 SQL [686]: pgsql_db_connect() -- 01:16:22.613 DEBUG [686]: Database connection successful -- 01:16:22.613 INFO [686]: _SERVER found -- 01:16:22.613 INFO [686]: REMOTE_ADDR = 192.168.1.13 -- 01:16:22.613 INFO [686]: SERVER_NAME = oameye.works.coregrade.com -- 01:16:22.613 INFO [686]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 01:16:22.613 INFO [686]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 01:16:22.661 INFO [686]: COREGRADE is stopping... -- 01:16:22.661 DEBUG [686]: Closing database connection -- 01:16:22.661 SQL [686]: pgsql_close() -- 01:16:23.470 INFO [686]: COREGRADE is starting... -- 01:16:23.470 INFO [686]: Version from config: 1.0 -- 01:16:23.470 DEBUG [686]: Connecting to database... -- 01:16:23.470 DEBUG [686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:16:23.470 SQL [686]: pgsql_db_connect() -- 01:16:23.474 DEBUG [686]: Database connection successful -- 01:16:23.474 INFO [686]: _SERVER found -- 01:16:23.474 INFO [686]: REMOTE_ADDR = 192.168.1.13 -- 01:16:23.474 INFO [686]: SERVER_NAME = oameye.works.coregrade.com -- 01:16:23.474 INFO [686]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 01:16:23.474 INFO [686]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 01:16:23.506 INFO [686]: COREGRADE is stopping... -- 01:16:23.506 DEBUG [686]: Closing database connection -- 01:16:23.506 SQL [686]: pgsql_close() -- 01:28:09.554 INFO [29859]: COREGRADE is starting... -- 01:28:09.554 INFO [29859]: Version from config: 1.0 -- 01:28:09.554 DEBUG [29859]: Connecting to database... -- 01:28:09.554 DEBUG [29859]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:09.554 SQL [29859]: pgsql_db_connect() -- 01:28:09.558 DEBUG [29859]: Database connection successful -- 01:28:09.558 INFO [29859]: _SERVER found -- 01:28:09.558 INFO [29859]: REMOTE_ADDR = 192.168.1.13 -- 01:28:09.558 INFO [29859]: SERVER_NAME = oameye.works.coregrade.com -- 01:28:09.558 INFO [29859]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 01:28:09.558 INFO [29859]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 01:28:09.598 INFO [29859]: COREGRADE is stopping... -- 01:28:09.598 DEBUG [29859]: Closing database connection -- 01:28:09.598 SQL [29859]: pgsql_close() -- 02:38:21.060 INFO [29862]: COREGRADE is starting... -- 02:38:21.060 INFO [29862]: Version from config: 1.0 -- 02:38:21.060 DEBUG [29862]: Connecting to database... -- 02:38:21.060 DEBUG [29862]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:38:21.060 SQL [29862]: pgsql_db_connect() -- 02:38:21.065 DEBUG [29862]: Database connection successful -- 02:38:21.065 INFO [29862]: _SERVER found -- 02:38:21.065 INFO [29862]: REMOTE_ADDR = 192.168.1.13 -- 02:38:21.065 INFO [29862]: SERVER_NAME = oameye.works.coregrade.com -- 02:38:21.065 INFO [29862]: QUERY_STRING = -- 02:38:21.065 INFO [29862]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 02:38:21.103 INFO [29862]: COREGRADE is stopping... -- 02:38:21.103 DEBUG [29862]: Closing database connection -- 02:38:21.103 SQL [29862]: pgsql_close() -- 03:00:17.407 INFO [29860]: COREGRADE is starting... -- 03:00:17.407 INFO [29860]: Version from config: 1.0 -- 03:00:17.407 DEBUG [29860]: Connecting to database... -- 03:00:17.407 DEBUG [29860]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:00:17.407 SQL [29860]: pgsql_db_connect() -- 03:00:17.412 DEBUG [29860]: Database connection successful -- 03:00:17.412 INFO [29860]: _SERVER found -- 03:00:17.412 INFO [29860]: REMOTE_ADDR = 192.168.1.13 -- 03:00:17.412 INFO [29860]: SERVER_NAME = oameye.works.coregrade.com -- 03:00:17.412 INFO [29860]: QUERY_STRING = /.well-known/acme-challenge/qVTh0_523A7pA5oIrjYw26gkslikQ_D3kBZWdmo5Ux0 -- 03:00:17.412 INFO [29860]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 03:00:17.429 INFO [29860]: COREGRADE is stopping... -- 03:00:17.429 DEBUG [29860]: Closing database connection -- 03:00:17.429 SQL [29860]: pgsql_close() -- 03:00:17.760 INFO [30490]: COREGRADE is starting... -- 03:00:17.760 INFO [30490]: Version from config: 1.0 -- 03:00:17.760 DEBUG [30490]: Connecting to database... -- 03:00:17.760 DEBUG [30490]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:00:17.760 SQL [30490]: pgsql_db_connect() -- 03:00:17.764 DEBUG [30490]: Database connection successful -- 03:00:17.764 INFO [30490]: _SERVER found -- 03:00:17.764 INFO [30490]: REMOTE_ADDR = 192.168.1.13 -- 03:00:17.764 INFO [30490]: SERVER_NAME = oameye.works.coregrade.com -- 03:00:17.764 INFO [30490]: QUERY_STRING = /.well-known/acme-challenge/qVTh0_523A7pA5oIrjYw26gkslikQ_D3kBZWdmo5Ux0 -- 03:00:17.764 INFO [30490]: HTTP_X_FORWARDED_FOR = 52.28.236.88 -- 03:00:17.777 INFO [30490]: COREGRADE is stopping... -- 03:00:17.777 DEBUG [30490]: Closing database connection -- 03:00:17.777 SQL [30490]: pgsql_close() -- 03:00:17.856 INFO [30490]: COREGRADE is starting... -- 03:00:17.856 INFO [30490]: Version from config: 1.0 -- 03:00:17.856 DEBUG [30490]: Connecting to database... -- 03:00:17.856 DEBUG [30490]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:00:17.856 SQL [30490]: pgsql_db_connect() -- 03:00:17.860 DEBUG [30490]: Database connection successful -- 03:00:17.860 INFO [30490]: _SERVER found -- 03:00:17.860 INFO [30490]: REMOTE_ADDR = 192.168.1.13 -- 03:00:17.860 INFO [30490]: SERVER_NAME = oameye.works.coregrade.com -- 03:00:17.860 INFO [30490]: QUERY_STRING = /.well-known/acme-challenge/qVTh0_523A7pA5oIrjYw26gkslikQ_D3kBZWdmo5Ux0 -- 03:00:17.860 INFO [30490]: HTTP_X_FORWARDED_FOR = 34.222.229.130 -- 03:00:17.872 INFO [30490]: COREGRADE is stopping... -- 03:00:17.872 DEBUG [30490]: Closing database connection -- 03:00:17.872 SQL [30490]: pgsql_close() -- 03:00:18.166 INFO [30490]: COREGRADE is starting... -- 03:00:18.167 INFO [30490]: Version from config: 1.0 -- 03:00:18.167 DEBUG [30490]: Connecting to database... -- 03:00:18.167 DEBUG [30490]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:00:18.167 SQL [30490]: pgsql_db_connect() -- 03:00:18.171 DEBUG [30490]: Database connection successful -- 03:00:18.171 INFO [30490]: _SERVER found -- 03:00:18.171 INFO [30490]: REMOTE_ADDR = 192.168.1.13 -- 03:00:18.171 INFO [30490]: SERVER_NAME = oameye.works.coregrade.com -- 03:00:18.171 INFO [30490]: QUERY_STRING = /.well-known/acme-challenge/qVTh0_523A7pA5oIrjYw26gkslikQ_D3kBZWdmo5Ux0 -- 03:00:18.171 INFO [30490]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 03:00:18.182 INFO [30490]: COREGRADE is stopping... -- 03:00:18.182 DEBUG [30490]: Closing database connection -- 03:00:18.182 SQL [30490]: pgsql_close() -- 06:15:08.355 INFO [29859]: COREGRADE is starting... -- 06:15:08.356 INFO [29859]: Version from config: 1.0 -- 06:15:08.356 DEBUG [29859]: Connecting to database... -- 06:15:08.356 DEBUG [29859]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:15:08.356 SQL [29859]: pgsql_db_connect() -- 06:15:08.361 DEBUG [29859]: Database connection successful -- 06:15:08.361 INFO [29859]: _SERVER found -- 06:15:08.361 INFO [29859]: REMOTE_ADDR = 192.168.1.13 -- 06:15:08.361 INFO [29859]: SERVER_NAME = oameye.works.coregrade.com -- 06:15:08.361 INFO [29859]: QUERY_STRING = /.env -- 06:15:08.361 INFO [29859]: HTTP_X_FORWARDED_FOR = 132.145.197.81 -- 06:15:08.377 INFO [29859]: COREGRADE is stopping... -- 06:15:08.377 DEBUG [29859]: Closing database connection -- 06:15:08.377 SQL [29859]: pgsql_close() -- 08:39:18.831 INFO [29862]: COREGRADE is starting... -- 08:39:18.831 INFO [29862]: Version from config: 1.0 -- 08:39:18.831 DEBUG [29862]: Connecting to database... -- 08:39:18.831 DEBUG [29862]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:39:18.831 SQL [29862]: pgsql_db_connect() -- 08:39:18.837 DEBUG [29862]: Database connection successful -- 08:39:18.837 INFO [29862]: _SERVER found -- 08:39:18.837 INFO [29862]: REMOTE_ADDR = 192.168.1.13 -- 08:39:18.837 INFO [29862]: SERVER_NAME = oameye.works.coregrade.com -- 08:39:18.837 INFO [29862]: QUERY_STRING = -- 08:39:18.837 INFO [29862]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 08:39:18.873 INFO [29862]: COREGRADE is stopping... -- 08:39:18.873 DEBUG [29862]: Closing database connection -- 08:39:18.873 SQL [29862]: pgsql_close() -- 12:14:20.853 INFO [3250]: COREGRADE is starting... -- 12:14:20.853 INFO [3250]: Version from config: 1.0 -- 12:14:20.853 DEBUG [3250]: Connecting to database... -- 12:14:20.853 DEBUG [3250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:14:20.853 SQL [3250]: pgsql_db_connect() -- 12:14:20.859 DEBUG [3250]: Database connection successful -- 12:14:20.859 INFO [3250]: _SERVER found -- 12:14:20.859 INFO [3250]: REMOTE_ADDR = 192.168.1.13 -- 12:14:20.859 INFO [3250]: SERVER_NAME = oameye.works.coregrade.com -- 12:14:20.859 INFO [3250]: QUERY_STRING = /solr/admin/info/system -- 12:14:20.859 INFO [3250]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 12:14:20.876 INFO [3250]: COREGRADE is stopping... -- 12:14:20.876 DEBUG [3250]: Closing database connection -- 12:14:20.876 SQL [3250]: pgsql_close() -- 12:19:29.776 INFO [3252]: COREGRADE is starting... -- 12:19:29.776 INFO [3252]: Version from config: 1.0 -- 12:19:29.776 DEBUG [3252]: Connecting to database... -- 12:19:29.776 DEBUG [3252]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:19:29.776 SQL [3252]: pgsql_db_connect() -- 12:19:29.780 DEBUG [3252]: Database connection successful -- 12:19:29.780 INFO [3252]: _SERVER found -- 12:19:29.780 INFO [3252]: REMOTE_ADDR = 192.168.1.13 -- 12:19:29.780 INFO [3252]: SERVER_NAME = oameye.works.coregrade.com -- 12:19:29.780 INFO [3252]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 12:19:29.780 INFO [3252]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 12:19:29.795 INFO [3252]: COREGRADE is stopping... -- 12:19:29.795 DEBUG [3252]: Closing database connection -- 12:19:29.795 SQL [3252]: pgsql_close() -- 12:21:52.760 INFO [29860]: COREGRADE is starting... -- 12:21:52.761 INFO [29860]: Version from config: 1.0 -- 12:21:52.761 DEBUG [29860]: Connecting to database... -- 12:21:52.761 DEBUG [29860]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:21:52.761 SQL [29860]: pgsql_db_connect() -- 12:21:52.765 DEBUG [29860]: Database connection successful -- 12:21:52.765 INFO [29860]: _SERVER found -- 12:21:52.765 INFO [29860]: REMOTE_ADDR = 192.168.1.13 -- 12:21:52.765 INFO [29860]: SERVER_NAME = oameye.works.coregrade.com -- 12:21:52.765 INFO [29860]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 12:21:52.765 INFO [29860]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 12:21:52.800 INFO [29860]: COREGRADE is stopping... -- 12:21:52.800 DEBUG [29860]: Closing database connection -- 12:21:52.800 SQL [29860]: pgsql_close() -- 12:31:12.669 INFO [29861]: COREGRADE is starting... -- 12:31:12.669 INFO [29861]: Version from config: 1.0 -- 12:31:12.669 DEBUG [29861]: Connecting to database... -- 12:31:12.669 DEBUG [29861]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:31:12.669 SQL [29861]: pgsql_db_connect() -- 12:31:12.673 DEBUG [29861]: Database connection successful -- 12:31:12.673 INFO [29861]: _SERVER found -- 12:31:12.673 INFO [29861]: REMOTE_ADDR = 192.168.1.13 -- 12:31:12.673 INFO [29861]: SERVER_NAME = oameye.works.coregrade.com -- 12:31:12.673 INFO [29861]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 12:31:12.673 INFO [29861]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 12:31:12.707 INFO [29861]: COREGRADE is stopping... -- 12:31:12.707 DEBUG [29861]: Closing database connection -- 12:31:12.707 SQL [29861]: pgsql_close() -- 12:56:27.444 INFO [29858]: COREGRADE is starting... -- 12:56:27.444 INFO [29858]: Version from config: 1.0 -- 12:56:27.444 DEBUG [29858]: Connecting to database... -- 12:56:27.444 DEBUG [29858]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:56:27.444 SQL [29858]: pgsql_db_connect() -- 12:56:27.449 DEBUG [29858]: Database connection successful -- 12:56:27.449 INFO [29858]: _SERVER found -- 12:56:27.449 INFO [29858]: REMOTE_ADDR = 192.168.1.13 -- 12:56:27.449 INFO [29858]: SERVER_NAME = oameye.works.coregrade.com -- 12:56:27.449 INFO [29858]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 12:56:27.449 INFO [29858]: HTTP_X_FORWARDED_FOR = 193.57.40.38 -- 12:56:27.486 INFO [29858]: COREGRADE is stopping... -- 12:56:27.486 DEBUG [29858]: Closing database connection -- 12:56:27.486 SQL [29858]: pgsql_close() -- 14:38:42.577 INFO [30504]: COREGRADE is starting... -- 14:38:42.578 INFO [30504]: Version from config: 1.0 -- 14:38:42.578 DEBUG [30504]: Connecting to database... -- 14:38:42.578 DEBUG [30504]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:38:42.578 SQL [30504]: pgsql_db_connect() -- 14:38:42.582 DEBUG [30504]: Database connection successful -- 14:38:42.582 INFO [30504]: _SERVER found -- 14:38:42.582 INFO [30504]: REMOTE_ADDR = 192.168.1.13 -- 14:38:42.582 INFO [30504]: SERVER_NAME = oameye.works.coregrade.com -- 14:38:42.582 INFO [30504]: QUERY_STRING = -- 14:38:42.582 INFO [30504]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 14:38:42.622 INFO [30504]: COREGRADE is stopping... -- 14:38:42.622 DEBUG [30504]: Closing database connection -- 14:38:42.622 SQL [30504]: pgsql_close() -- 14:44:07.271 INFO [30490]: COREGRADE is starting... -- 14:44:07.272 INFO [30490]: Version from config: 1.0 -- 14:44:07.272 DEBUG [30490]: Connecting to database... -- 14:44:07.272 DEBUG [30490]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:44:07.272 SQL [30490]: pgsql_db_connect() -- 14:44:07.276 DEBUG [30490]: Database connection successful -- 14:44:07.276 INFO [30490]: _SERVER found -- 14:44:07.276 INFO [30490]: REMOTE_ADDR = 192.168.1.13 -- 14:44:07.276 INFO [30490]: SERVER_NAME = oameye.works.coregrade.com -- 14:44:07.276 INFO [30490]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 14:44:07.276 INFO [30490]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 14:44:07.288 INFO [30490]: COREGRADE is stopping... -- 14:44:07.288 DEBUG [30490]: Closing database connection -- 14:44:07.288 SQL [30490]: pgsql_close() -- 20:43:31.948 INFO [29859]: COREGRADE is starting... -- 20:43:31.949 INFO [29859]: Version from config: 1.0 -- 20:43:31.949 DEBUG [29859]: Connecting to database... -- 20:43:31.949 DEBUG [29859]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:43:31.949 SQL [29859]: pgsql_db_connect() -- 20:43:31.954 DEBUG [29859]: Database connection successful -- 20:43:31.954 INFO [29859]: _SERVER found -- 20:43:31.954 INFO [29859]: REMOTE_ADDR = 192.168.1.13 -- 20:43:31.954 INFO [29859]: SERVER_NAME = oameye.works.coregrade.com -- 20:43:31.954 INFO [29859]: QUERY_STRING = -- 20:43:31.954 INFO [29859]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 20:43:31.995 INFO [29859]: COREGRADE is stopping... -- 20:43:31.995 DEBUG [29859]: Closing database connection -- 20:43:31.995 SQL [29859]: pgsql_close() -- 20:54:46.609 INFO [29862]: COREGRADE is starting... -- 20:54:46.609 INFO [29862]: Version from config: 1.0 -- 20:54:46.609 DEBUG [29862]: Connecting to database... -- 20:54:46.609 DEBUG [29862]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:54:46.609 SQL [29862]: pgsql_db_connect() -- 20:54:46.613 DEBUG [29862]: Database connection successful -- 20:54:46.613 INFO [29862]: _SERVER found -- 20:54:46.613 INFO [29862]: REMOTE_ADDR = 192.168.1.13 -- 20:54:46.613 INFO [29862]: SERVER_NAME = oameye.works.coregrade.com -- 20:54:46.613 INFO [29862]: QUERY_STRING = -- 20:54:46.613 INFO [29862]: HTTP_X_FORWARDED_FOR = 13.95.14.242 -- 20:54:46.647 INFO [29862]: COREGRADE is stopping... -- 20:54:46.647 DEBUG [29862]: Closing database connection -- 20:54:46.647 SQL [29862]: pgsql_close() -- 01:00:51.351 INFO [3250]: COREGRADE is starting... -- 01:00:51.351 INFO [3250]: Version from config: 1.0 -- 01:00:51.351 DEBUG [3250]: Connecting to database... -- 01:00:51.351 DEBUG [3250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:00:51.351 SQL [3250]: pgsql_db_connect() -- 01:00:51.356 DEBUG [3250]: Database connection successful -- 01:00:51.356 INFO [3250]: _SERVER found -- 01:00:51.356 INFO [3250]: REMOTE_ADDR = 192.168.1.13 -- 01:00:51.356 INFO [3250]: SERVER_NAME = oameye.works.coregrade.com -- 01:00:51.356 INFO [3250]: QUERY_STRING = /admin/config.php -- 01:00:51.356 INFO [3250]: HTTP_X_FORWARDED_FOR = 45.143.221.47 -- 01:00:51.371 INFO [3250]: COREGRADE is stopping... -- 01:00:51.371 DEBUG [3250]: Closing database connection -- 01:00:51.371 SQL [3250]: pgsql_close() -- 01:23:36.988 INFO [3252]: COREGRADE is starting... -- 01:23:36.989 INFO [3252]: Version from config: 1.0 -- 01:23:36.989 DEBUG [3252]: Connecting to database... -- 01:23:36.989 DEBUG [3252]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:23:36.989 SQL [3252]: pgsql_db_connect() -- 01:23:36.993 DEBUG [3252]: Database connection successful -- 01:23:36.993 INFO [3252]: _SERVER found -- 01:23:36.993 INFO [3252]: REMOTE_ADDR = 192.168.1.13 -- 01:23:36.993 INFO [3252]: SERVER_NAME = oameye.works.coregrade.com -- 01:23:36.993 INFO [3252]: QUERY_STRING = /login_sid.lua -- 01:23:36.993 INFO [3252]: HTTP_X_FORWARDED_FOR = 45.143.221.47 -- 01:23:37.006 INFO [3252]: COREGRADE is stopping... -- 01:23:37.006 DEBUG [3252]: Closing database connection -- 01:23:37.006 SQL [3252]: pgsql_close() -- 01:51:37.280 INFO [29860]: COREGRADE is starting... -- 01:51:37.280 INFO [29860]: Version from config: 1.0 -- 01:51:37.280 DEBUG [29860]: Connecting to database... -- 01:51:37.280 DEBUG [29860]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:51:37.280 SQL [29860]: pgsql_db_connect() -- 01:51:37.285 DEBUG [29860]: Database connection successful -- 01:51:37.285 INFO [29860]: _SERVER found -- 01:51:37.285 INFO [29860]: REMOTE_ADDR = 192.168.1.13 -- 01:51:37.285 INFO [29860]: SERVER_NAME = oameye.works.coregrade.com -- 01:51:37.285 INFO [29860]: QUERY_STRING = /Telerik.Web.UI.WebResource.axd -- 01:51:37.285 INFO [29860]: HTTP_X_FORWARDED_FOR = 169.197.108.38 -- 01:51:37.298 INFO [29860]: COREGRADE is stopping... -- 01:51:37.298 DEBUG [29860]: Closing database connection -- 01:51:37.298 SQL [29860]: pgsql_close() -- 02:23:06.012 INFO [29861]: COREGRADE is starting... -- 02:23:06.012 INFO [29861]: Version from config: 1.0 -- 02:23:06.012 DEBUG [29861]: Connecting to database... -- 02:23:06.012 DEBUG [29861]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:23:06.012 SQL [29861]: pgsql_db_connect() -- 02:23:06.017 DEBUG [29861]: Database connection successful -- 02:23:06.017 INFO [29861]: _SERVER found -- 02:23:06.017 INFO [29861]: REMOTE_ADDR = 192.168.1.13 -- 02:23:06.017 INFO [29861]: SERVER_NAME = oameye.works.coregrade.com -- 02:23:06.017 INFO [29861]: QUERY_STRING = /.well-known/acme-challenge/6GMAmYG3gI81vQ5pAmiz-lSBsdSs6KjuMvuO5xyFDE0 -- 02:23:06.017 INFO [29861]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 02:23:06.030 INFO [29861]: COREGRADE is stopping... -- 02:23:06.030 DEBUG [29861]: Closing database connection -- 02:23:06.030 SQL [29861]: pgsql_close() -- 02:23:06.391 INFO [30504]: COREGRADE is starting... -- 02:23:06.391 INFO [30504]: Version from config: 1.0 -- 02:23:06.391 DEBUG [30504]: Connecting to database... -- 02:23:06.391 DEBUG [30504]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:23:06.391 SQL [30504]: pgsql_db_connect() -- 02:23:06.400 INFO [30490]: COREGRADE is starting... -- 02:23:06.400 INFO [30490]: Version from config: 1.0 -- 02:23:06.400 DEBUG [30490]: Connecting to database... -- 02:23:06.400 DEBUG [30490]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:23:06.400 SQL [30490]: pgsql_db_connect() -- 02:23:06.395 DEBUG [30504]: Database connection successful -- 02:23:06.395 INFO [30504]: _SERVER found -- 02:23:06.395 INFO [30504]: REMOTE_ADDR = 192.168.1.13 -- 02:23:06.395 INFO [30504]: SERVER_NAME = oameye.works.coregrade.com -- 02:23:06.395 INFO [30504]: QUERY_STRING = /.well-known/acme-challenge/6GMAmYG3gI81vQ5pAmiz-lSBsdSs6KjuMvuO5xyFDE0 -- 02:23:06.395 INFO [30504]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 02:23:06.412 INFO [30504]: COREGRADE is stopping... -- 02:23:06.412 DEBUG [30504]: Closing database connection -- 02:23:06.412 SQL [30504]: pgsql_close() -- 02:23:06.404 DEBUG [30490]: Database connection successful -- 02:23:06.404 INFO [30490]: _SERVER found -- 02:23:06.404 INFO [30490]: REMOTE_ADDR = 192.168.1.13 -- 02:23:06.404 INFO [30490]: SERVER_NAME = oameye.works.coregrade.com -- 02:23:06.404 INFO [30490]: QUERY_STRING = /.well-known/acme-challenge/6GMAmYG3gI81vQ5pAmiz-lSBsdSs6KjuMvuO5xyFDE0 -- 02:23:06.404 INFO [30490]: HTTP_X_FORWARDED_FOR = 18.194.58.132 -- 02:23:06.418 INFO [30490]: COREGRADE is stopping... -- 02:23:06.418 DEBUG [30490]: Closing database connection -- 02:23:06.418 SQL [30490]: pgsql_close() -- 02:23:06.503 INFO [30490]: COREGRADE is starting... -- 02:23:06.504 INFO [30490]: Version from config: 1.0 -- 02:23:06.504 DEBUG [30490]: Connecting to database... -- 02:23:06.504 DEBUG [30490]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:23:06.504 SQL [30490]: pgsql_db_connect() -- 02:23:06.507 DEBUG [30490]: Database connection successful -- 02:23:06.507 INFO [30490]: _SERVER found -- 02:23:06.507 INFO [30490]: REMOTE_ADDR = 192.168.1.13 -- 02:23:06.507 INFO [30490]: SERVER_NAME = oameye.works.coregrade.com -- 02:23:06.507 INFO [30490]: QUERY_STRING = /.well-known/acme-challenge/6GMAmYG3gI81vQ5pAmiz-lSBsdSs6KjuMvuO5xyFDE0 -- 02:23:06.507 INFO [30490]: HTTP_X_FORWARDED_FOR = 34.209.232.166 -- 02:23:06.519 INFO [30490]: COREGRADE is stopping... -- 02:23:06.519 DEBUG [30490]: Closing database connection -- 02:23:06.519 SQL [30490]: pgsql_close() -- 02:30:45.351 INFO [29860]: COREGRADE is starting... -- 02:30:45.351 INFO [29860]: Version from config: 1.0 -- 02:30:45.351 DEBUG [29860]: Connecting to database... -- 02:30:45.351 DEBUG [29860]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:30:45.351 SQL [29860]: pgsql_db_connect() -- 02:30:45.356 DEBUG [29860]: Database connection successful -- 02:30:45.356 INFO [29860]: _SERVER found -- 02:30:45.356 INFO [29860]: REMOTE_ADDR = 192.168.1.13 -- 02:30:45.356 INFO [29860]: SERVER_NAME = oameye.works.coregrade.com -- 02:30:45.356 INFO [29860]: QUERY_STRING = -- 02:30:45.356 INFO [29860]: HTTP_X_FORWARDED_FOR = 198.108.66.208 -- 02:30:45.389 INFO [29860]: COREGRADE is stopping... -- 02:30:45.389 DEBUG [29860]: Closing database connection -- 02:30:45.389 SQL [29860]: pgsql_close() -- 02:38:34.819 INFO [9194]: COREGRADE is starting... -- 02:38:34.819 INFO [9194]: Version from config: 1.0 -- 02:38:34.819 DEBUG [9194]: Connecting to database... -- 02:38:34.819 DEBUG [9194]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:38:34.819 SQL [9194]: pgsql_db_connect() -- 02:38:34.823 DEBUG [9194]: Database connection successful -- 02:38:34.823 INFO [9194]: _SERVER found -- 02:38:34.823 INFO [9194]: REMOTE_ADDR = 192.168.1.13 -- 02:38:34.823 INFO [9194]: SERVER_NAME = oameye.works.coregrade.com -- 02:38:34.823 INFO [9194]: QUERY_STRING = -- 02:38:34.823 INFO [9194]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 02:38:34.871 INFO [9194]: COREGRADE is stopping... -- 02:38:34.871 DEBUG [9194]: Closing database connection -- 02:38:34.871 SQL [9194]: pgsql_close() -- 04:21:20.592 INFO [9529]: COREGRADE is starting... -- 04:21:20.592 INFO [9529]: Version from config: 1.0 -- 04:21:20.592 DEBUG [9529]: Connecting to database... -- 04:21:20.592 DEBUG [9529]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:21:20.592 SQL [9529]: pgsql_db_connect() -- 04:21:20.597 DEBUG [9529]: Database connection successful -- 04:21:20.597 INFO [9529]: _SERVER found -- 04:21:20.597 INFO [9529]: REMOTE_ADDR = 192.168.1.13 -- 04:21:20.597 INFO [9529]: SERVER_NAME = oameye.works.coregrade.com -- 04:21:20.597 INFO [9529]: QUERY_STRING = /login_sid.lua -- 04:21:20.597 INFO [9529]: HTTP_X_FORWARDED_FOR = 45.143.221.47 -- 04:21:20.614 INFO [9529]: COREGRADE is stopping... -- 04:21:20.614 DEBUG [9529]: Closing database connection -- 04:21:20.614 SQL [9529]: pgsql_close() -- 06:53:46.060 INFO [9530]: COREGRADE is starting... -- 06:53:46.061 INFO [9530]: Version from config: 1.0 -- 06:53:46.061 DEBUG [9530]: Connecting to database... -- 06:53:46.061 DEBUG [9530]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:53:46.061 SQL [9530]: pgsql_db_connect() -- 06:53:46.066 DEBUG [9530]: Database connection successful -- 06:53:46.066 INFO [9530]: _SERVER found -- 06:53:46.066 INFO [9530]: REMOTE_ADDR = 192.168.1.13 -- 06:53:46.066 INFO [9530]: SERVER_NAME = oameye.works.coregrade.com -- 06:53:46.066 INFO [9530]: QUERY_STRING = /robots.txt -- 06:53:46.066 INFO [9530]: HTTP_X_FORWARDED_FOR = 66.249.65.138 -- 06:53:46.083 INFO [9530]: COREGRADE is stopping... -- 06:53:46.083 DEBUG [9530]: Closing database connection -- 06:53:46.084 SQL [9530]: pgsql_close() -- 06:53:46.118 INFO [9530]: COREGRADE is starting... -- 06:53:46.119 INFO [9530]: Version from config: 1.0 -- 06:53:46.119 DEBUG [9530]: Connecting to database... -- 06:53:46.119 DEBUG [9530]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:53:46.119 SQL [9530]: pgsql_db_connect() -- 06:53:46.123 DEBUG [9530]: Database connection successful -- 06:53:46.123 INFO [9530]: _SERVER found -- 06:53:46.123 INFO [9530]: REMOTE_ADDR = 192.168.1.13 -- 06:53:46.123 INFO [9530]: SERVER_NAME = oameye.works.coregrade.com -- 06:53:46.123 INFO [9530]: QUERY_STRING = /home/contactus -- 06:53:46.123 INFO [9530]: HTTP_X_FORWARDED_FOR = 66.249.65.138 -- 06:53:46.162 INFO [9530]: COREGRADE is stopping... -- 06:53:46.162 DEBUG [9530]: Closing database connection -- 06:53:46.162 SQL [9530]: pgsql_close() -- 08:38:36.626 INFO [9532]: COREGRADE is starting... -- 08:38:36.627 INFO [9532]: Version from config: 1.0 -- 08:38:36.627 DEBUG [9532]: Connecting to database... -- 08:38:36.627 DEBUG [9532]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:38:36.627 SQL [9532]: pgsql_db_connect() -- 08:38:36.632 DEBUG [9532]: Database connection successful -- 08:38:36.632 INFO [9532]: _SERVER found -- 08:38:36.632 INFO [9532]: REMOTE_ADDR = 192.168.1.13 -- 08:38:36.632 INFO [9532]: SERVER_NAME = oameye.works.coregrade.com -- 08:38:36.632 INFO [9532]: QUERY_STRING = -- 08:38:36.632 INFO [9532]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 08:38:36.685 INFO [9532]: COREGRADE is stopping... -- 08:38:36.685 DEBUG [9532]: Closing database connection -- 08:38:36.685 SQL [9532]: pgsql_close() -- 13:01:55.383 INFO [9533]: COREGRADE is starting... -- 13:01:55.384 INFO [9533]: Version from config: 1.0 -- 13:01:55.384 DEBUG [9533]: Connecting to database... -- 13:01:55.384 DEBUG [9533]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:01:55.384 SQL [9533]: pgsql_db_connect() -- 13:01:55.388 DEBUG [9533]: Database connection successful -- 13:01:55.388 INFO [9533]: _SERVER found -- 13:01:55.388 INFO [9533]: REMOTE_ADDR = 192.168.1.13 -- 13:01:55.388 INFO [9533]: SERVER_NAME = oameye.works.coregrade.com -- 13:01:55.388 INFO [9533]: QUERY_STRING = -- 13:01:55.388 INFO [9533]: HTTP_X_FORWARDED_FOR = 122.228.19.79 -- 13:01:55.436 INFO [9533]: COREGRADE is stopping... -- 13:01:55.436 DEBUG [9533]: Closing database connection -- 13:01:55.436 SQL [9533]: pgsql_close() -- 14:38:11.582 INFO [9773]: COREGRADE is starting... -- 14:38:11.582 INFO [9773]: Version from config: 1.0 -- 14:38:11.582 DEBUG [9773]: Connecting to database... -- 14:38:11.582 DEBUG [9773]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:38:11.582 SQL [9773]: pgsql_db_connect() -- 14:38:11.587 DEBUG [9773]: Database connection successful -- 14:38:11.587 INFO [9773]: _SERVER found -- 14:38:11.587 INFO [9773]: REMOTE_ADDR = 192.168.1.13 -- 14:38:11.587 INFO [9773]: SERVER_NAME = oameye.works.coregrade.com -- 14:38:11.587 INFO [9773]: QUERY_STRING = -- 14:38:11.587 INFO [9773]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 14:38:11.639 INFO [9773]: COREGRADE is stopping... -- 14:38:11.639 DEBUG [9773]: Closing database connection -- 14:38:11.639 SQL [9773]: pgsql_close() -- 20:38:48.709 INFO [9529]: COREGRADE is starting... -- 20:38:48.709 INFO [9529]: Version from config: 1.0 -- 20:38:48.709 DEBUG [9529]: Connecting to database... -- 20:38:48.710 DEBUG [9529]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:38:48.710 SQL [9529]: pgsql_db_connect() -- 20:38:48.714 DEBUG [9529]: Database connection successful -- 20:38:48.714 INFO [9529]: _SERVER found -- 20:38:48.714 INFO [9529]: REMOTE_ADDR = 192.168.1.13 -- 20:38:48.714 INFO [9529]: SERVER_NAME = oameye.works.coregrade.com -- 20:38:48.714 INFO [9529]: QUERY_STRING = -- 20:38:48.714 INFO [9529]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 20:38:48.761 INFO [9529]: COREGRADE is stopping... -- 20:38:48.761 DEBUG [9529]: Closing database connection -- 20:38:48.761 SQL [9529]: pgsql_close() -- 21:14:15.243 INFO [10382]: COREGRADE is starting... -- 21:14:15.243 INFO [10382]: Version from config: 1.0 -- 21:14:15.243 DEBUG [10382]: Connecting to database... -- 21:14:15.243 DEBUG [10382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:14:15.243 SQL [10382]: pgsql_db_connect() -- 21:14:15.248 DEBUG [10382]: Database connection successful -- 21:14:15.248 INFO [10382]: _SERVER found -- 21:14:15.248 INFO [10382]: REMOTE_ADDR = 192.168.1.13 -- 21:14:15.248 INFO [10382]: SERVER_NAME = oameye.works.coregrade.com -- 21:14:15.248 INFO [10382]: QUERY_STRING = /TP/public/index.php -- 21:14:15.248 INFO [10382]: HTTP_X_FORWARDED_FOR = 197.232.243.36 -- 21:14:15.265 INFO [10382]: COREGRADE is stopping... -- 21:14:15.265 DEBUG [10382]: Closing database connection -- 21:14:15.265 SQL [10382]: pgsql_close() -- 21:14:16.848 INFO [10382]: COREGRADE is starting... -- 21:14:16.848 INFO [10382]: Version from config: 1.0 -- 21:14:16.848 DEBUG [10382]: Connecting to database... -- 21:14:16.848 DEBUG [10382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:14:16.848 SQL [10382]: pgsql_db_connect() -- 21:14:16.853 DEBUG [10382]: Database connection successful -- 21:14:16.853 INFO [10382]: _SERVER found -- 21:14:16.853 INFO [10382]: REMOTE_ADDR = 192.168.1.13 -- 21:14:16.853 INFO [10382]: SERVER_NAME = oameye.works.coregrade.com -- 21:14:16.853 INFO [10382]: QUERY_STRING = /TP/index.php -- 21:14:16.853 INFO [10382]: HTTP_X_FORWARDED_FOR = 197.232.243.36 -- 21:14:16.864 INFO [10382]: COREGRADE is stopping... -- 21:14:16.864 DEBUG [10382]: Closing database connection -- 21:14:16.864 SQL [10382]: pgsql_close() -- 21:14:18.424 INFO [10382]: COREGRADE is starting... -- 21:14:18.424 INFO [10382]: Version from config: 1.0 -- 21:14:18.424 DEBUG [10382]: Connecting to database... -- 21:14:18.424 DEBUG [10382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:14:18.424 SQL [10382]: pgsql_db_connect() -- 21:14:18.428 DEBUG [10382]: Database connection successful -- 21:14:18.428 INFO [10382]: _SERVER found -- 21:14:18.428 INFO [10382]: REMOTE_ADDR = 192.168.1.13 -- 21:14:18.428 INFO [10382]: SERVER_NAME = oameye.works.coregrade.com -- 21:14:18.428 INFO [10382]: QUERY_STRING = /thinkphp/html/public/index.php -- 21:14:18.428 INFO [10382]: HTTP_X_FORWARDED_FOR = 197.232.243.36 -- 21:14:18.442 INFO [10382]: COREGRADE is stopping... -- 21:14:18.442 DEBUG [10382]: Closing database connection -- 21:14:18.442 SQL [10382]: pgsql_close() -- 21:14:20.035 INFO [10382]: COREGRADE is starting... -- 21:14:20.035 INFO [10382]: Version from config: 1.0 -- 21:14:20.035 DEBUG [10382]: Connecting to database... -- 21:14:20.035 DEBUG [10382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:14:20.035 SQL [10382]: pgsql_db_connect() -- 21:14:20.039 DEBUG [10382]: Database connection successful -- 21:14:20.039 INFO [10382]: _SERVER found -- 21:14:20.039 INFO [10382]: REMOTE_ADDR = 192.168.1.13 -- 21:14:20.039 INFO [10382]: SERVER_NAME = oameye.works.coregrade.com -- 21:14:20.039 INFO [10382]: QUERY_STRING = /html/public/index.php -- 21:14:20.039 INFO [10382]: HTTP_X_FORWARDED_FOR = 197.232.243.36 -- 21:14:20.050 INFO [10382]: COREGRADE is stopping... -- 21:14:20.051 DEBUG [10382]: Closing database connection -- 21:14:20.051 SQL [10382]: pgsql_close() -- 21:14:21.620 INFO [10382]: COREGRADE is starting... -- 21:14:21.620 INFO [10382]: Version from config: 1.0 -- 21:14:21.620 DEBUG [10382]: Connecting to database... -- 21:14:21.620 DEBUG [10382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:14:21.620 SQL [10382]: pgsql_db_connect() -- 21:14:21.624 DEBUG [10382]: Database connection successful -- 21:14:21.624 INFO [10382]: _SERVER found -- 21:14:21.624 INFO [10382]: REMOTE_ADDR = 192.168.1.13 -- 21:14:21.624 INFO [10382]: SERVER_NAME = oameye.works.coregrade.com -- 21:14:21.624 INFO [10382]: QUERY_STRING = /public/index.php -- 21:14:21.624 INFO [10382]: HTTP_X_FORWARDED_FOR = 197.232.243.36 -- 21:14:21.635 INFO [10382]: COREGRADE is stopping... -- 21:14:21.635 DEBUG [10382]: Closing database connection -- 21:14:21.635 SQL [10382]: pgsql_close() -- 21:14:23.259 INFO [9530]: COREGRADE is starting... -- 21:14:23.259 INFO [9530]: Version from config: 1.0 -- 21:14:23.259 DEBUG [9530]: Connecting to database... -- 21:14:23.259 DEBUG [9530]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:14:23.259 SQL [9530]: pgsql_db_connect() -- 21:14:23.263 DEBUG [9530]: Database connection successful -- 21:14:23.263 INFO [9530]: _SERVER found -- 21:14:23.263 INFO [9530]: REMOTE_ADDR = 192.168.1.13 -- 21:14:23.263 INFO [9530]: SERVER_NAME = oameye.works.coregrade.com -- 21:14:23.263 INFO [9530]: QUERY_STRING = /TP/html/public/index.php -- 21:14:23.263 INFO [9530]: HTTP_X_FORWARDED_FOR = 197.232.243.36 -- 21:14:23.277 INFO [9530]: COREGRADE is stopping... -- 21:14:23.277 DEBUG [9530]: Closing database connection -- 21:14:23.277 SQL [9530]: pgsql_close() -- 21:14:27.838 INFO [9530]: COREGRADE is starting... -- 21:14:27.839 INFO [9530]: Version from config: 1.0 -- 21:14:27.839 DEBUG [9530]: Connecting to database... -- 21:14:27.839 DEBUG [9530]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:14:27.839 SQL [9530]: pgsql_db_connect() -- 21:14:27.843 DEBUG [9530]: Database connection successful -- 21:14:27.843 INFO [9530]: _SERVER found -- 21:14:27.843 INFO [9530]: REMOTE_ADDR = 192.168.1.13 -- 21:14:27.843 INFO [9530]: SERVER_NAME = oameye.works.coregrade.com -- 21:14:27.843 INFO [9530]: QUERY_STRING = /elrekt.php -- 21:14:27.843 INFO [9530]: HTTP_X_FORWARDED_FOR = 197.232.243.36 -- 21:14:27.854 INFO [9530]: COREGRADE is stopping... -- 21:14:27.854 DEBUG [9530]: Closing database connection -- 21:14:27.854 SQL [9530]: pgsql_close() -- 21:14:29.440 INFO [9530]: COREGRADE is starting... -- 21:14:29.441 INFO [9530]: Version from config: 1.0 -- 21:14:29.441 DEBUG [9530]: Connecting to database... -- 21:14:29.441 DEBUG [9530]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:14:29.441 SQL [9530]: pgsql_db_connect() -- 21:14:29.445 DEBUG [9530]: Database connection successful -- 21:14:29.445 INFO [9530]: _SERVER found -- 21:14:29.445 INFO [9530]: REMOTE_ADDR = 192.168.1.13 -- 21:14:29.445 INFO [9530]: SERVER_NAME = oameye.works.coregrade.com -- 21:14:29.445 INFO [9530]: QUERY_STRING = -- 21:14:29.445 INFO [9530]: HTTP_X_FORWARDED_FOR = 197.232.243.36 -- 21:14:29.483 INFO [9530]: COREGRADE is stopping... -- 21:14:29.483 DEBUG [9530]: Closing database connection -- 21:14:29.483 SQL [9530]: pgsql_close() -- 21:14:31.071 INFO [9530]: COREGRADE is starting... -- 21:14:31.071 INFO [9530]: Version from config: 1.0 -- 21:14:31.071 DEBUG [9530]: Connecting to database... -- 21:14:31.071 DEBUG [9530]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:14:31.071 SQL [9530]: pgsql_db_connect() -- 21:14:31.075 DEBUG [9530]: Database connection successful -- 21:14:31.075 INFO [9530]: _SERVER found -- 21:14:31.075 INFO [9530]: REMOTE_ADDR = 192.168.1.13 -- 21:14:31.075 INFO [9530]: SERVER_NAME = oameye.works.coregrade.com -- 21:14:31.075 INFO [9530]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 21:14:31.075 INFO [9530]: HTTP_X_FORWARDED_FOR = 197.232.243.36 -- 21:14:31.110 INFO [9530]: COREGRADE is stopping... -- 21:14:31.110 DEBUG [9530]: Closing database connection -- 21:14:31.110 SQL [9530]: pgsql_close() -- 21:14:33.480 INFO [9531]: COREGRADE is starting... -- 21:14:33.480 INFO [9531]: Version from config: 1.0 -- 21:14:33.480 DEBUG [9531]: Connecting to database... -- 21:14:33.480 DEBUG [9531]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:14:33.480 SQL [9531]: pgsql_db_connect() -- 21:14:33.484 DEBUG [9531]: Database connection successful -- 21:14:33.484 INFO [9531]: _SERVER found -- 21:14:33.484 INFO [9531]: REMOTE_ADDR = 192.168.1.13 -- 21:14:33.484 INFO [9531]: SERVER_NAME = oameye.works.coregrade.com -- 21:14:33.484 INFO [9531]: QUERY_STRING = s=captcha -- 21:14:33.484 INFO [9531]: HTTP_X_FORWARDED_FOR = 197.232.243.36 -- 21:14:33.528 INFO [9531]: COREGRADE is stopping... -- 21:14:33.528 DEBUG [9531]: Closing database connection -- 21:14:33.528 SQL [9531]: pgsql_close() -- 21:14:35.128 INFO [9531]: COREGRADE is starting... -- 21:14:35.128 INFO [9531]: Version from config: 1.0 -- 21:14:35.128 DEBUG [9531]: Connecting to database... -- 21:14:35.128 DEBUG [9531]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:14:35.128 SQL [9531]: pgsql_db_connect() -- 21:14:35.132 DEBUG [9531]: Database connection successful -- 21:14:35.132 INFO [9531]: _SERVER found -- 21:14:35.132 INFO [9531]: REMOTE_ADDR = 192.168.1.13 -- 21:14:35.132 INFO [9531]: SERVER_NAME = oameye.works.coregrade.com -- 21:14:35.132 INFO [9531]: QUERY_STRING = -- 21:14:35.132 INFO [9531]: HTTP_X_FORWARDED_FOR = 197.232.243.36 -- 21:14:35.163 INFO [9531]: COREGRADE is stopping... -- 21:14:35.163 DEBUG [9531]: Closing database connection -- 21:14:35.163 SQL [9531]: pgsql_close() -- 23:31:17.149 INFO [9532]: COREGRADE is starting... -- 23:31:17.149 INFO [9532]: Version from config: 1.0 -- 23:31:17.149 DEBUG [9532]: Connecting to database... -- 23:31:17.149 DEBUG [9532]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:31:17.149 SQL [9532]: pgsql_db_connect() -- 23:31:17.154 DEBUG [9532]: Database connection successful -- 23:31:17.154 INFO [9532]: _SERVER found -- 23:31:17.154 INFO [9532]: REMOTE_ADDR = 192.168.1.13 -- 23:31:17.154 INFO [9532]: SERVER_NAME = oameye.works.coregrade.com -- 23:31:17.154 INFO [9532]: QUERY_STRING = -- 23:31:17.154 INFO [9532]: HTTP_X_FORWARDED_FOR = 209.17.97.90 -- 23:31:17.193 INFO [9532]: COREGRADE is stopping... -- 23:31:17.193 DEBUG [9532]: Closing database connection -- 23:31:17.193 SQL [9532]: pgsql_close() -- 23:39:23.219 INFO [9533]: COREGRADE is starting... -- 23:39:23.220 INFO [9533]: Version from config: 1.0 -- 23:39:23.220 DEBUG [9533]: Connecting to database... -- 23:39:23.220 DEBUG [9533]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:39:23.220 SQL [9533]: pgsql_db_connect() -- 23:39:23.224 DEBUG [9533]: Database connection successful -- 23:39:23.224 INFO [9533]: _SERVER found -- 23:39:23.224 INFO [9533]: REMOTE_ADDR = 192.168.1.13 -- 23:39:23.224 INFO [9533]: SERVER_NAME = oameye.works.coregrade.com -- 23:39:23.224 INFO [9533]: QUERY_STRING = -- 23:39:23.224 INFO [9533]: HTTP_X_FORWARDED_FOR = 129.146.96.33 -- 23:39:23.260 INFO [9533]: COREGRADE is stopping... -- 23:39:23.260 DEBUG [9533]: Closing database connection -- 23:39:23.260 SQL [9533]: pgsql_close() -- 02:33:41.893 INFO [9531]: COREGRADE is starting... -- 02:33:41.893 INFO [9531]: Version from config: 1.0 -- 02:33:41.893 DEBUG [9531]: Connecting to database... -- 02:33:41.893 DEBUG [9531]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:33:41.893 SQL [9531]: pgsql_db_connect() -- 02:33:41.897 DEBUG [9531]: Database connection successful -- 02:33:41.897 INFO [9531]: _SERVER found -- 02:33:41.897 INFO [9531]: REMOTE_ADDR = 192.168.1.13 -- 02:33:41.897 INFO [9531]: SERVER_NAME = oameye.works.coregrade.com -- 02:33:41.897 INFO [9531]: QUERY_STRING = /.well-known/acme-challenge/PznosKGA9Gp4xHIlX5IeLCruppZg3TtZQLjNQn5jYcM -- 02:33:41.897 INFO [9531]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 02:33:41.910 INFO [9531]: COREGRADE is stopping... -- 02:33:41.910 DEBUG [9531]: Closing database connection -- 02:33:41.910 SQL [9531]: pgsql_close() -- 02:33:41.964 INFO [9531]: COREGRADE is starting... -- 02:33:41.964 INFO [9531]: Version from config: 1.0 -- 02:33:41.964 DEBUG [9531]: Connecting to database... -- 02:33:41.964 DEBUG [9531]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:33:41.964 SQL [9531]: pgsql_db_connect() -- 02:33:41.970 DEBUG [9531]: Database connection successful -- 02:33:41.970 INFO [9531]: _SERVER found -- 02:33:41.970 INFO [9531]: REMOTE_ADDR = 192.168.1.13 -- 02:33:41.970 INFO [9531]: SERVER_NAME = oameye.works.coregrade.com -- 02:33:41.970 INFO [9531]: QUERY_STRING = /.well-known/acme-challenge/PznosKGA9Gp4xHIlX5IeLCruppZg3TtZQLjNQn5jYcM -- 02:33:41.970 INFO [9531]: HTTP_X_FORWARDED_FOR = 34.222.229.130 -- 02:33:41.981 INFO [9531]: COREGRADE is stopping... -- 02:33:41.981 DEBUG [9531]: Closing database connection -- 02:33:41.981 SQL [9531]: pgsql_close() -- 02:33:41.988 INFO [9532]: COREGRADE is starting... -- 02:33:41.988 INFO [9532]: Version from config: 1.0 -- 02:33:41.988 DEBUG [9532]: Connecting to database... -- 02:33:41.988 DEBUG [9532]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:33:41.988 SQL [9532]: pgsql_db_connect() -- 02:33:41.992 DEBUG [9532]: Database connection successful -- 02:33:41.992 INFO [9532]: _SERVER found -- 02:33:41.992 INFO [9532]: REMOTE_ADDR = 192.168.1.13 -- 02:33:41.992 INFO [9532]: SERVER_NAME = oameye.works.coregrade.com -- 02:33:41.992 INFO [9532]: QUERY_STRING = /.well-known/acme-challenge/PznosKGA9Gp4xHIlX5IeLCruppZg3TtZQLjNQn5jYcM -- 02:33:41.992 INFO [9532]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 02:33:42.005 INFO [9532]: COREGRADE is stopping... -- 02:33:42.005 DEBUG [9532]: Closing database connection -- 02:33:42.005 SQL [9532]: pgsql_close() -- 02:33:42.015 INFO [9532]: COREGRADE is starting... -- 02:33:42.015 INFO [9532]: Version from config: 1.0 -- 02:33:42.015 DEBUG [9532]: Connecting to database... -- 02:33:42.015 DEBUG [9532]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:33:42.015 SQL [9532]: pgsql_db_connect() -- 02:33:42.019 DEBUG [9532]: Database connection successful -- 02:33:42.019 INFO [9532]: _SERVER found -- 02:33:42.019 INFO [9532]: REMOTE_ADDR = 192.168.1.13 -- 02:33:42.019 INFO [9532]: SERVER_NAME = oameye.works.coregrade.com -- 02:33:42.019 INFO [9532]: QUERY_STRING = /.well-known/acme-challenge/PznosKGA9Gp4xHIlX5IeLCruppZg3TtZQLjNQn5jYcM -- 02:33:42.019 INFO [9532]: HTTP_X_FORWARDED_FOR = 18.194.58.132 -- 02:33:42.030 INFO [9532]: COREGRADE is stopping... -- 02:33:42.030 DEBUG [9532]: Closing database connection -- 02:33:42.030 SQL [9532]: pgsql_close() -- 02:38:17.379 INFO [9773]: COREGRADE is starting... -- 02:38:17.380 INFO [9773]: Version from config: 1.0 -- 02:38:17.380 DEBUG [9773]: Connecting to database... -- 02:38:17.380 DEBUG [9773]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:38:17.380 SQL [9773]: pgsql_db_connect() -- 02:38:17.384 DEBUG [9773]: Database connection successful -- 02:38:17.384 INFO [9773]: _SERVER found -- 02:38:17.384 INFO [9773]: REMOTE_ADDR = 192.168.1.13 -- 02:38:17.384 INFO [9773]: SERVER_NAME = oameye.works.coregrade.com -- 02:38:17.384 INFO [9773]: QUERY_STRING = -- 02:38:17.384 INFO [9773]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 02:38:17.420 INFO [9773]: COREGRADE is stopping... -- 02:38:17.420 DEBUG [9773]: Closing database connection -- 02:38:17.420 SQL [9773]: pgsql_close() -- 07:47:04.535 INFO [9529]: COREGRADE is starting... -- 07:47:04.536 INFO [9529]: Version from config: 1.0 -- 07:47:04.536 DEBUG [9529]: Connecting to database... -- 07:47:04.536 DEBUG [9529]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:47:04.536 SQL [9529]: pgsql_db_connect() -- 07:47:04.541 DEBUG [9529]: Database connection successful -- 07:47:04.541 INFO [9529]: _SERVER found -- 07:47:04.541 INFO [9529]: REMOTE_ADDR = 192.168.1.13 -- 07:47:04.541 INFO [9529]: SERVER_NAME = oameye.works.coregrade.com -- 07:47:04.541 INFO [9529]: QUERY_STRING = /solr/admin/info/system -- 07:47:04.541 INFO [9529]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 07:47:04.557 INFO [9529]: COREGRADE is stopping... -- 07:47:04.557 DEBUG [9529]: Closing database connection -- 07:47:04.557 SQL [9529]: pgsql_close() -- 07:49:50.553 INFO [15227]: COREGRADE is starting... -- 07:49:50.554 INFO [15227]: Version from config: 1.0 -- 07:49:50.554 DEBUG [15227]: Connecting to database... -- 07:49:50.554 DEBUG [15227]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:50.554 SQL [15227]: pgsql_db_connect() -- 07:49:50.558 DEBUG [15227]: Database connection successful -- 07:49:50.558 INFO [15227]: _SERVER found -- 07:49:50.558 INFO [15227]: REMOTE_ADDR = 192.168.1.13 -- 07:49:50.558 INFO [15227]: SERVER_NAME = oameye.works.coregrade.com -- 07:49:50.558 INFO [15227]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 07:49:50.558 INFO [15227]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 07:49:50.607 INFO [15227]: COREGRADE is stopping... -- 07:49:50.607 DEBUG [15227]: Closing database connection -- 07:49:50.607 SQL [15227]: pgsql_close() -- 07:49:52.984 INFO [15227]: COREGRADE is starting... -- 07:49:52.984 INFO [15227]: Version from config: 1.0 -- 07:49:52.984 DEBUG [15227]: Connecting to database... -- 07:49:52.984 DEBUG [15227]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:52.984 SQL [15227]: pgsql_db_connect() -- 07:49:52.988 DEBUG [15227]: Database connection successful -- 07:49:52.988 INFO [15227]: _SERVER found -- 07:49:52.988 INFO [15227]: REMOTE_ADDR = 192.168.1.13 -- 07:49:52.988 INFO [15227]: SERVER_NAME = oameye.works.coregrade.com -- 07:49:52.988 INFO [15227]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 07:49:52.988 INFO [15227]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 07:49:53.020 INFO [15227]: COREGRADE is stopping... -- 07:49:53.020 DEBUG [15227]: Closing database connection -- 07:49:53.020 SQL [15227]: pgsql_close() -- 07:52:13.975 INFO [15228]: COREGRADE is starting... -- 07:52:13.976 INFO [15228]: Version from config: 1.0 -- 07:52:13.976 DEBUG [15228]: Connecting to database... -- 07:52:13.976 DEBUG [15228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:52:13.976 SQL [15228]: pgsql_db_connect() -- 07:52:13.980 DEBUG [15228]: Database connection successful -- 07:52:13.980 INFO [15228]: _SERVER found -- 07:52:13.980 INFO [15228]: REMOTE_ADDR = 192.168.1.13 -- 07:52:13.980 INFO [15228]: SERVER_NAME = oameye.works.coregrade.com -- 07:52:13.980 INFO [15228]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 07:52:13.980 INFO [15228]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 07:52:14.026 INFO [15228]: COREGRADE is stopping... -- 07:52:14.026 DEBUG [15228]: Closing database connection -- 07:52:14.026 SQL [15228]: pgsql_close() -- 08:01:20.269 INFO [15229]: COREGRADE is starting... -- 08:01:20.269 INFO [15229]: Version from config: 1.0 -- 08:01:20.269 DEBUG [15229]: Connecting to database... -- 08:01:20.269 DEBUG [15229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:01:20.269 SQL [15229]: pgsql_db_connect() -- 08:01:20.273 DEBUG [15229]: Database connection successful -- 08:01:20.273 INFO [15229]: _SERVER found -- 08:01:20.273 INFO [15229]: REMOTE_ADDR = 192.168.1.13 -- 08:01:20.273 INFO [15229]: SERVER_NAME = tokslaw.works.coregrade.com -- 08:01:20.273 INFO [15229]: QUERY_STRING = /wp-login.php -- 08:01:20.273 INFO [15229]: HTTP_X_FORWARDED_FOR = 198.27.80.123 -- 08:01:20.289 INFO [15229]: COREGRADE is stopping... -- 08:01:20.290 DEBUG [15229]: Closing database connection -- 08:01:20.290 SQL [15229]: pgsql_close() -- 08:01:34.736 INFO [10382]: COREGRADE is starting... -- 08:01:34.736 INFO [10382]: Version from config: 1.0 -- 08:01:34.736 DEBUG [10382]: Connecting to database... -- 08:01:34.736 DEBUG [10382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:01:34.736 SQL [10382]: pgsql_db_connect() -- 08:01:34.741 DEBUG [10382]: Database connection successful -- 08:01:34.741 INFO [10382]: _SERVER found -- 08:01:34.741 INFO [10382]: REMOTE_ADDR = 192.168.1.13 -- 08:01:34.741 INFO [10382]: SERVER_NAME = tokslaw.works.coregrade.com -- 08:01:34.741 INFO [10382]: QUERY_STRING = /robots.txt -- 08:01:34.741 INFO [10382]: HTTP_X_FORWARDED_FOR = 198.27.80.123 -- 08:01:34.753 INFO [10382]: COREGRADE is stopping... -- 08:01:34.753 DEBUG [10382]: Closing database connection -- 08:01:34.753 SQL [10382]: pgsql_close() -- 08:33:54.729 INFO [9530]: COREGRADE is starting... -- 08:33:54.729 INFO [9530]: Version from config: 1.0 -- 08:33:54.729 DEBUG [9530]: Connecting to database... -- 08:33:54.729 DEBUG [9530]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:33:54.729 SQL [9530]: pgsql_db_connect() -- 08:33:54.734 DEBUG [9530]: Database connection successful -- 08:33:54.734 INFO [9530]: _SERVER found -- 08:33:54.734 INFO [9530]: REMOTE_ADDR = 192.168.1.13 -- 08:33:54.734 INFO [9530]: SERVER_NAME = oameye.works.coregrade.com -- 08:33:54.734 INFO [9530]: QUERY_STRING = /auth -- 08:33:54.734 INFO [9530]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:33:54.774 INFO [9530]: COREGRADE is stopping... -- 08:33:54.774 DEBUG [9530]: Closing database connection -- 08:33:54.774 SQL [9530]: pgsql_close() -- 08:33:55.464 INFO [9531]: COREGRADE is starting... -- 08:33:55.464 INFO [9531]: Version from config: 1.0 -- 08:33:55.464 DEBUG [9531]: Connecting to database... -- 08:33:55.464 DEBUG [9531]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:33:55.464 SQL [9531]: pgsql_db_connect() -- 08:33:55.468 DEBUG [9531]: Database connection successful -- 08:33:55.468 INFO [9531]: _SERVER found -- 08:33:55.468 INFO [9531]: REMOTE_ADDR = 192.168.1.13 -- 08:33:55.468 INFO [9531]: SERVER_NAME = oameye.works.coregrade.com -- 08:33:55.468 INFO [9531]: HTTP_COOKIE = ci_session=slbe77f5etelafqr6v8kgjal90o4p32n -- 08:33:55.468 INFO [9531]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 08:33:55.468 INFO [9531]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:33:55.481 INFO [9531]: COREGRADE is stopping... -- 08:33:55.481 DEBUG [9531]: Closing database connection -- 08:33:55.481 SQL [9531]: pgsql_close() -- 08:38:30.007 INFO [9773]: COREGRADE is starting... -- 08:38:30.008 INFO [9773]: Version from config: 1.0 -- 08:38:30.008 DEBUG [9773]: Connecting to database... -- 08:38:30.008 DEBUG [9773]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:38:30.008 SQL [9773]: pgsql_db_connect() -- 08:38:30.012 DEBUG [9773]: Database connection successful -- 08:38:30.012 INFO [9773]: _SERVER found -- 08:38:30.012 INFO [9773]: REMOTE_ADDR = 192.168.1.13 -- 08:38:30.012 INFO [9773]: SERVER_NAME = oameye.works.coregrade.com -- 08:38:30.012 INFO [9773]: QUERY_STRING = -- 08:38:30.012 INFO [9773]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 08:38:30.047 INFO [9773]: COREGRADE is stopping... -- 08:38:30.047 DEBUG [9773]: Closing database connection -- 08:38:30.047 SQL [9773]: pgsql_close() -- 14:22:21.897 INFO [9529]: COREGRADE is starting... -- 14:22:21.897 INFO [9529]: Version from config: 1.0 -- 14:22:21.897 DEBUG [9529]: Connecting to database... -- 14:22:21.897 DEBUG [9529]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:22:21.897 SQL [9529]: pgsql_db_connect() -- 14:22:21.902 DEBUG [9529]: Database connection successful -- 14:22:21.902 INFO [9529]: _SERVER found -- 14:22:21.902 INFO [9529]: REMOTE_ADDR = 192.168.1.13 -- 14:22:21.902 INFO [9529]: SERVER_NAME = oameye.works.coregrade.com -- 14:22:21.902 INFO [9529]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 14:22:21.902 INFO [9529]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 14:22:21.918 INFO [9529]: COREGRADE is stopping... -- 14:22:21.918 DEBUG [9529]: Closing database connection -- 14:22:21.918 SQL [9529]: pgsql_close() -- 14:39:09.919 INFO [15227]: COREGRADE is starting... -- 14:39:09.920 INFO [15227]: Version from config: 1.0 -- 14:39:09.920 DEBUG [15227]: Connecting to database... -- 14:39:09.920 DEBUG [15227]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:39:09.920 SQL [15227]: pgsql_db_connect() -- 14:39:09.924 DEBUG [15227]: Database connection successful -- 14:39:09.924 INFO [15227]: _SERVER found -- 14:39:09.924 INFO [15227]: REMOTE_ADDR = 192.168.1.13 -- 14:39:09.924 INFO [15227]: SERVER_NAME = oameye.works.coregrade.com -- 14:39:09.924 INFO [15227]: QUERY_STRING = -- 14:39:09.924 INFO [15227]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 14:39:09.961 INFO [15227]: COREGRADE is stopping... -- 14:39:09.961 DEBUG [15227]: Closing database connection -- 14:39:09.961 SQL [15227]: pgsql_close() -- 15:53:45.685 INFO [15228]: COREGRADE is starting... -- 15:53:45.685 INFO [15228]: Version from config: 1.0 -- 15:53:45.685 DEBUG [15228]: Connecting to database... -- 15:53:45.685 DEBUG [15228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:53:45.686 SQL [15228]: pgsql_db_connect() -- 15:53:45.690 DEBUG [15228]: Database connection successful -- 15:53:45.690 INFO [15228]: _SERVER found -- 15:53:45.690 INFO [15228]: REMOTE_ADDR = 192.168.1.13 -- 15:53:45.690 INFO [15228]: SERVER_NAME = oameye.works.coregrade.com -- 15:53:45.690 INFO [15228]: QUERY_STRING = -- 15:53:45.690 INFO [15228]: HTTP_X_FORWARDED_FOR = 157.245.171.105 -- 15:53:45.729 INFO [15228]: COREGRADE is stopping... -- 15:53:45.729 DEBUG [15228]: Closing database connection -- 15:53:45.729 SQL [15228]: pgsql_close() -- 16:26:42.555 INFO [15229]: COREGRADE is starting... -- 16:26:42.556 INFO [15229]: Version from config: 1.0 -- 16:26:42.556 DEBUG [15229]: Connecting to database... -- 16:26:42.556 DEBUG [15229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:42.556 SQL [15229]: pgsql_db_connect() -- 16:26:42.560 DEBUG [15229]: Database connection successful -- 16:26:42.560 INFO [15229]: _SERVER found -- 16:26:42.560 INFO [15229]: REMOTE_ADDR = 192.168.1.13 -- 16:26:42.560 INFO [15229]: SERVER_NAME = oameye.works.coregrade.com -- 16:26:42.560 INFO [15229]: QUERY_STRING = -- 16:26:42.560 INFO [15229]: HTTP_X_FORWARDED_FOR = 169.197.108.42 -- 16:26:42.606 INFO [15229]: COREGRADE is stopping... -- 16:26:42.606 DEBUG [15229]: Closing database connection -- 16:26:42.606 SQL [15229]: pgsql_close() -- 20:38:52.601 INFO [9530]: COREGRADE is starting... -- 20:38:52.602 INFO [9530]: Version from config: 1.0 -- 20:38:52.602 DEBUG [9530]: Connecting to database... -- 20:38:52.602 DEBUG [9530]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:38:52.602 SQL [9530]: pgsql_db_connect() -- 20:38:52.606 DEBUG [9530]: Database connection successful -- 20:38:52.606 INFO [9530]: _SERVER found -- 20:38:52.606 INFO [9530]: REMOTE_ADDR = 192.168.1.13 -- 20:38:52.606 INFO [9530]: SERVER_NAME = oameye.works.coregrade.com -- 20:38:52.606 INFO [9530]: QUERY_STRING = -- 20:38:52.606 INFO [9530]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 20:38:52.646 INFO [9530]: COREGRADE is stopping... -- 20:38:52.646 DEBUG [9530]: Closing database connection -- 20:38:52.646 SQL [9530]: pgsql_close() -- 02:38:28.997 INFO [9532]: COREGRADE is starting... -- 02:38:28.998 INFO [9532]: Version from config: 1.0 -- 02:38:28.998 DEBUG [9532]: Connecting to database... -- 02:38:28.998 DEBUG [9532]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:38:28.998 SQL [9532]: pgsql_db_connect() -- 02:38:29.005 DEBUG [9532]: Database connection successful -- 02:38:29.005 INFO [9532]: _SERVER found -- 02:38:29.005 INFO [9532]: REMOTE_ADDR = 192.168.1.13 -- 02:38:29.005 INFO [9532]: SERVER_NAME = oameye.works.coregrade.com -- 02:38:29.005 INFO [9532]: QUERY_STRING = -- 02:38:29.005 INFO [9532]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 02:38:29.042 INFO [9532]: COREGRADE is stopping... -- 02:38:29.042 DEBUG [9532]: Closing database connection -- 02:38:29.042 SQL [9532]: pgsql_close() -- 04:11:23.756 INFO [9531]: COREGRADE is starting... -- 04:11:23.756 INFO [9531]: Version from config: 1.0 -- 04:11:23.756 DEBUG [9531]: Connecting to database... -- 04:11:23.756 DEBUG [9531]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:11:23.756 SQL [9531]: pgsql_db_connect() -- 04:11:23.762 DEBUG [9531]: Database connection successful -- 04:11:23.762 INFO [9531]: _SERVER found -- 04:11:23.762 INFO [9531]: REMOTE_ADDR = 192.168.1.13 -- 04:11:23.762 INFO [9531]: SERVER_NAME = oameye.works.coregrade.com -- 04:11:23.762 INFO [9531]: QUERY_STRING = /polycom/ztp/64167f0e0555.cfg -- 04:11:23.762 INFO [9531]: HTTP_X_FORWARDED_FOR = 212.83.171.224 -- 04:11:23.775 INFO [9531]: COREGRADE is stopping... -- 04:11:23.775 DEBUG [9531]: Closing database connection -- 04:11:23.775 SQL [9531]: pgsql_close() -- 05:10:52.971 INFO [9533]: COREGRADE is starting... -- 05:10:52.971 INFO [9533]: Version from config: 1.0 -- 05:10:52.971 DEBUG [9533]: Connecting to database... -- 05:10:52.971 DEBUG [9533]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:10:52.971 SQL [9533]: pgsql_db_connect() -- 05:10:52.976 DEBUG [9533]: Database connection successful -- 05:10:52.976 INFO [9533]: _SERVER found -- 05:10:52.976 INFO [9533]: REMOTE_ADDR = 192.168.1.13 -- 05:10:52.976 INFO [9533]: SERVER_NAME = oameye.works.coregrade.com -- 05:10:52.976 INFO [9533]: QUERY_STRING = /p/H6dZZuBDDt2XfpuHRdvd/0004f2af547c-settings.cfg -- 05:10:52.976 INFO [9533]: HTTP_X_FORWARDED_FOR = 212.83.171.224 -- 05:10:52.990 INFO [9533]: COREGRADE is stopping... -- 05:10:52.990 DEBUG [9533]: Closing database connection -- 05:10:52.990 SQL [9533]: pgsql_close() -- 05:34:12.565 INFO [9773]: COREGRADE is starting... -- 05:34:12.566 INFO [9773]: Version from config: 1.0 -- 05:34:12.566 DEBUG [9773]: Connecting to database... -- 05:34:12.566 DEBUG [9773]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:34:12.566 SQL [9773]: pgsql_db_connect() -- 05:34:12.570 DEBUG [9773]: Database connection successful -- 05:34:12.570 INFO [9773]: _SERVER found -- 05:34:12.570 INFO [9773]: REMOTE_ADDR = 192.168.1.13 -- 05:34:12.570 INFO [9773]: SERVER_NAME = oameye.works.coregrade.com -- 05:34:12.570 INFO [9773]: QUERY_STRING = /.well-known/acme-challenge/LkRFPlGxlzjRSY7i5SRW6dMBN8QtzAc5w8wdormSb_8 -- 05:34:12.570 INFO [9773]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 05:34:12.584 INFO [9773]: COREGRADE is stopping... -- 05:34:12.584 DEBUG [9773]: Closing database connection -- 05:34:12.584 SQL [9773]: pgsql_close() -- 05:34:12.920 INFO [9773]: COREGRADE is starting... -- 05:34:12.921 INFO [9773]: Version from config: 1.0 -- 05:34:12.921 DEBUG [9773]: Connecting to database... -- 05:34:12.921 DEBUG [9773]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:34:12.921 SQL [9773]: pgsql_db_connect() -- 05:34:12.929 INFO [15228]: COREGRADE is starting... -- 05:34:12.930 INFO [15228]: Version from config: 1.0 -- 05:34:12.930 DEBUG [15228]: Connecting to database... -- 05:34:12.930 DEBUG [15228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:34:12.930 SQL [15228]: pgsql_db_connect() -- 05:34:12.925 DEBUG [9773]: Database connection successful -- 05:34:12.925 INFO [9773]: _SERVER found -- 05:34:12.925 INFO [9773]: REMOTE_ADDR = 192.168.1.13 -- 05:34:12.925 INFO [9773]: SERVER_NAME = oameye.works.coregrade.com -- 05:34:12.925 INFO [9773]: QUERY_STRING = /.well-known/acme-challenge/LkRFPlGxlzjRSY7i5SRW6dMBN8QtzAc5w8wdormSb_8 -- 05:34:12.925 INFO [9773]: HTTP_X_FORWARDED_FOR = 52.28.236.88 -- 05:34:12.936 INFO [9773]: COREGRADE is stopping... -- 05:34:12.936 DEBUG [9773]: Closing database connection -- 05:34:12.936 SQL [9773]: pgsql_close() -- 05:34:12.934 DEBUG [15228]: Database connection successful -- 05:34:12.934 INFO [15228]: _SERVER found -- 05:34:12.934 INFO [15228]: REMOTE_ADDR = 192.168.1.13 -- 05:34:12.934 INFO [15228]: SERVER_NAME = oameye.works.coregrade.com -- 05:34:12.934 INFO [15228]: QUERY_STRING = /.well-known/acme-challenge/LkRFPlGxlzjRSY7i5SRW6dMBN8QtzAc5w8wdormSb_8 -- 05:34:12.934 INFO [15228]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 05:34:12.947 INFO [15228]: COREGRADE is stopping... -- 05:34:12.947 DEBUG [15228]: Closing database connection -- 05:34:12.947 SQL [15228]: pgsql_close() -- 05:34:13.008 INFO [15228]: COREGRADE is starting... -- 05:34:13.008 INFO [15228]: Version from config: 1.0 -- 05:34:13.008 DEBUG [15228]: Connecting to database... -- 05:34:13.008 DEBUG [15228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:34:13.008 SQL [15228]: pgsql_db_connect() -- 05:34:13.012 DEBUG [15228]: Database connection successful -- 05:34:13.012 INFO [15228]: _SERVER found -- 05:34:13.012 INFO [15228]: REMOTE_ADDR = 192.168.1.13 -- 05:34:13.012 INFO [15228]: SERVER_NAME = oameye.works.coregrade.com -- 05:34:13.012 INFO [15228]: QUERY_STRING = /.well-known/acme-challenge/LkRFPlGxlzjRSY7i5SRW6dMBN8QtzAc5w8wdormSb_8 -- 05:34:13.012 INFO [15228]: HTTP_X_FORWARDED_FOR = 34.209.232.166 -- 05:34:13.023 INFO [15228]: COREGRADE is stopping... -- 05:34:13.023 DEBUG [15228]: Closing database connection -- 05:34:13.023 SQL [15228]: pgsql_close() -- 06:20:22.149 INFO [15229]: COREGRADE is starting... -- 06:20:22.150 INFO [15229]: Version from config: 1.0 -- 06:20:22.150 DEBUG [15229]: Connecting to database... -- 06:20:22.150 DEBUG [15229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:20:22.150 SQL [15229]: pgsql_db_connect() -- 06:20:22.154 DEBUG [15229]: Database connection successful -- 06:20:22.154 INFO [15229]: _SERVER found -- 06:20:22.154 INFO [15229]: REMOTE_ADDR = 192.168.1.13 -- 06:20:22.154 INFO [15229]: SERVER_NAME = oameye.works.coregrade.com -- 06:20:22.154 INFO [15229]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 06:20:22.154 INFO [15229]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 06:20:22.169 INFO [15229]: COREGRADE is stopping... -- 06:20:22.170 DEBUG [15229]: Closing database connection -- 06:20:22.170 SQL [15229]: pgsql_close() -- 07:05:39.862 INFO [10382]: COREGRADE is starting... -- 07:05:39.862 INFO [10382]: Version from config: 1.0 -- 07:05:39.862 DEBUG [10382]: Connecting to database... -- 07:05:39.862 DEBUG [10382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:05:39.862 SQL [10382]: pgsql_db_connect() -- 07:05:39.867 DEBUG [10382]: Database connection successful -- 07:05:39.867 INFO [10382]: _SERVER found -- 07:05:39.867 INFO [10382]: REMOTE_ADDR = 192.168.1.13 -- 07:05:39.867 INFO [10382]: SERVER_NAME = oameye.works.coregrade.com -- 07:05:39.867 INFO [10382]: QUERY_STRING = -- 07:05:39.867 INFO [10382]: HTTP_X_FORWARDED_FOR = 94.102.56.151 -- 07:05:39.902 INFO [10382]: COREGRADE is stopping... -- 07:05:39.902 DEBUG [10382]: Closing database connection -- 07:05:39.902 SQL [10382]: pgsql_close() -- 08:38:39.491 INFO [9530]: COREGRADE is starting... -- 08:38:39.492 INFO [9530]: Version from config: 1.0 -- 08:38:39.492 DEBUG [9530]: Connecting to database... -- 08:38:39.492 DEBUG [9530]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:38:39.492 SQL [9530]: pgsql_db_connect() -- 08:38:39.496 DEBUG [9530]: Database connection successful -- 08:38:39.496 INFO [9530]: _SERVER found -- 08:38:39.496 INFO [9530]: REMOTE_ADDR = 192.168.1.13 -- 08:38:39.496 INFO [9530]: SERVER_NAME = oameye.works.coregrade.com -- 08:38:39.496 INFO [9530]: QUERY_STRING = -- 08:38:39.496 INFO [9530]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 08:38:39.537 INFO [9530]: COREGRADE is stopping... -- 08:38:39.537 DEBUG [9530]: Closing database connection -- 08:38:39.537 SQL [9530]: pgsql_close() -- 10:06:55.729 INFO [9532]: COREGRADE is starting... -- 10:06:55.729 INFO [9532]: Version from config: 1.0 -- 10:06:55.729 DEBUG [9532]: Connecting to database... -- 10:06:55.729 DEBUG [9532]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:06:55.729 SQL [9532]: pgsql_db_connect() -- 10:06:55.734 DEBUG [9532]: Database connection successful -- 10:06:55.734 INFO [9532]: _SERVER found -- 10:06:55.734 INFO [9532]: REMOTE_ADDR = 192.168.1.13 -- 10:06:55.734 INFO [9532]: SERVER_NAME = oameye.works.coregrade.com -- 10:06:55.734 INFO [9532]: QUERY_STRING = /favicon.ico -- 10:06:55.734 INFO [9532]: HTTP_X_FORWARDED_FOR = 185.220.103.8 -- 10:06:55.748 INFO [9532]: COREGRADE is stopping... -- 10:06:55.748 DEBUG [9532]: Closing database connection -- 10:06:55.748 SQL [9532]: pgsql_close() -- 13:45:47.482 INFO [9531]: COREGRADE is starting... -- 13:45:47.483 INFO [9531]: Version from config: 1.0 -- 13:45:47.483 DEBUG [9531]: Connecting to database... -- 13:45:47.483 DEBUG [9531]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:45:47.483 SQL [9531]: pgsql_db_connect() -- 13:45:47.487 DEBUG [9531]: Database connection successful -- 13:45:47.487 INFO [9531]: _SERVER found -- 13:45:47.487 INFO [9531]: REMOTE_ADDR = 192.168.1.13 -- 13:45:47.487 INFO [9531]: SERVER_NAME = oameye.works.coregrade.com -- 13:45:47.487 INFO [9531]: QUERY_STRING = /TP/public/index.php -- 13:45:47.487 INFO [9531]: HTTP_X_FORWARDED_FOR = 223.240.88.127 -- 13:45:47.502 INFO [9531]: COREGRADE is stopping... -- 13:45:47.502 DEBUG [9531]: Closing database connection -- 13:45:47.502 SQL [9531]: pgsql_close() -- 13:45:50.521 INFO [9533]: COREGRADE is starting... -- 13:45:50.521 INFO [9533]: Version from config: 1.0 -- 13:45:50.521 DEBUG [9533]: Connecting to database... -- 13:45:50.521 DEBUG [9533]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:45:50.521 SQL [9533]: pgsql_db_connect() -- 13:45:50.525 DEBUG [9533]: Database connection successful -- 13:45:50.525 INFO [9533]: _SERVER found -- 13:45:50.525 INFO [9533]: REMOTE_ADDR = 192.168.1.13 -- 13:45:50.525 INFO [9533]: SERVER_NAME = oameye.works.coregrade.com -- 13:45:50.525 INFO [9533]: QUERY_STRING = /TP/index.php -- 13:45:50.525 INFO [9533]: HTTP_X_FORWARDED_FOR = 223.240.88.127 -- 13:45:50.539 INFO [9533]: COREGRADE is stopping... -- 13:45:50.539 DEBUG [9533]: Closing database connection -- 13:45:50.539 SQL [9533]: pgsql_close() -- 13:45:52.678 INFO [9533]: COREGRADE is starting... -- 13:45:52.678 INFO [9533]: Version from config: 1.0 -- 13:45:52.678 DEBUG [9533]: Connecting to database... -- 13:45:52.678 DEBUG [9533]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:45:52.678 SQL [9533]: pgsql_db_connect() -- 13:45:52.682 DEBUG [9533]: Database connection successful -- 13:45:52.682 INFO [9533]: _SERVER found -- 13:45:52.682 INFO [9533]: REMOTE_ADDR = 192.168.1.13 -- 13:45:52.682 INFO [9533]: SERVER_NAME = oameye.works.coregrade.com -- 13:45:52.682 INFO [9533]: QUERY_STRING = /thinkphp/html/public/index.php -- 13:45:52.682 INFO [9533]: HTTP_X_FORWARDED_FOR = 223.240.88.127 -- 13:45:52.693 INFO [9533]: COREGRADE is stopping... -- 13:45:52.693 DEBUG [9533]: Closing database connection -- 13:45:52.693 SQL [9533]: pgsql_close() -- 13:45:55.472 INFO [9533]: COREGRADE is starting... -- 13:45:55.472 INFO [9533]: Version from config: 1.0 -- 13:45:55.472 DEBUG [9533]: Connecting to database... -- 13:45:55.472 DEBUG [9533]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:45:55.472 SQL [9533]: pgsql_db_connect() -- 13:45:55.476 DEBUG [9533]: Database connection successful -- 13:45:55.476 INFO [9533]: _SERVER found -- 13:45:55.476 INFO [9533]: REMOTE_ADDR = 192.168.1.13 -- 13:45:55.476 INFO [9533]: SERVER_NAME = oameye.works.coregrade.com -- 13:45:55.476 INFO [9533]: QUERY_STRING = /html/public/index.php -- 13:45:55.476 INFO [9533]: HTTP_X_FORWARDED_FOR = 223.240.88.127 -- 13:45:55.487 INFO [9533]: COREGRADE is stopping... -- 13:45:55.487 DEBUG [9533]: Closing database connection -- 13:45:55.487 SQL [9533]: pgsql_close() -- 13:45:58.286 INFO [9533]: COREGRADE is starting... -- 13:45:58.286 INFO [9533]: Version from config: 1.0 -- 13:45:58.286 DEBUG [9533]: Connecting to database... -- 13:45:58.286 DEBUG [9533]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:45:58.286 SQL [9533]: pgsql_db_connect() -- 13:45:58.290 DEBUG [9533]: Database connection successful -- 13:45:58.290 INFO [9533]: _SERVER found -- 13:45:58.290 INFO [9533]: REMOTE_ADDR = 192.168.1.13 -- 13:45:58.290 INFO [9533]: SERVER_NAME = oameye.works.coregrade.com -- 13:45:58.290 INFO [9533]: QUERY_STRING = /public/index.php -- 13:45:58.290 INFO [9533]: HTTP_X_FORWARDED_FOR = 223.240.88.127 -- 13:45:58.301 INFO [9533]: COREGRADE is stopping... -- 13:45:58.301 DEBUG [9533]: Closing database connection -- 13:45:58.301 SQL [9533]: pgsql_close() -- 14:48:15.274 INFO [9773]: COREGRADE is starting... -- 14:48:15.274 INFO [9773]: Version from config: 1.0 -- 14:48:15.274 DEBUG [9773]: Connecting to database... -- 14:48:15.274 DEBUG [9773]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:48:15.274 SQL [9773]: pgsql_db_connect() -- 14:48:15.280 DEBUG [9773]: Database connection successful -- 14:48:15.280 INFO [9773]: _SERVER found -- 14:48:15.280 INFO [9773]: REMOTE_ADDR = 192.168.1.13 -- 14:48:15.280 INFO [9773]: SERVER_NAME = oameye.works.coregrade.com -- 14:48:15.280 INFO [9773]: QUERY_STRING = -- 14:48:15.280 INFO [9773]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 14:48:15.317 INFO [9773]: COREGRADE is stopping... -- 14:48:15.317 DEBUG [9773]: Closing database connection -- 14:48:15.317 SQL [9773]: pgsql_close() -- 15:29:15.136 INFO [9529]: COREGRADE is starting... -- 15:29:15.136 INFO [9529]: Version from config: 1.0 -- 15:29:15.136 DEBUG [9529]: Connecting to database... -- 15:29:15.136 DEBUG [9529]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:29:15.136 SQL [9529]: pgsql_db_connect() -- 15:29:15.141 DEBUG [9529]: Database connection successful -- 15:29:15.141 INFO [9529]: _SERVER found -- 15:29:15.141 INFO [9529]: REMOTE_ADDR = 192.168.1.13 -- 15:29:15.141 INFO [9529]: SERVER_NAME = oameye.works.coregrade.com -- 15:29:15.141 INFO [9529]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 15:29:15.141 INFO [9529]: QUERY_STRING = -- 15:29:15.141 INFO [9529]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:29:15.182 INFO [9529]: COREGRADE is stopping... -- 15:29:15.182 DEBUG [9529]: Closing database connection -- 15:29:15.182 SQL [9529]: pgsql_close() -- 15:29:16.522 INFO [9529]: COREGRADE is starting... -- 15:29:16.522 INFO [9529]: Version from config: 1.0 -- 15:29:16.522 DEBUG [9529]: Connecting to database... -- 15:29:16.522 DEBUG [9529]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:29:16.522 SQL [9529]: pgsql_db_connect() -- 15:29:16.526 DEBUG [9529]: Database connection successful -- 15:29:16.526 INFO [9529]: _SERVER found -- 15:29:16.526 INFO [9529]: REMOTE_ADDR = 192.168.1.13 -- 15:29:16.526 INFO [9529]: SERVER_NAME = oameye.works.coregrade.com -- 15:29:16.526 INFO [9529]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=ilu0n820qi5llud5bsvtopb3l0dq7rlj; _gid=GA1.2.1386341167.1585250955; _gat_gtag_UA_54829827_2=1 -- 15:29:16.526 INFO [9529]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 15:29:16.526 INFO [9529]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:29:16.538 INFO [9529]: COREGRADE is stopping... -- 15:29:16.538 DEBUG [9529]: Closing database connection -- 15:29:16.538 SQL [9529]: pgsql_close() -- 15:29:16.547 INFO [15229]: COREGRADE is starting... -- 15:29:16.547 INFO [15229]: Version from config: 1.0 -- 15:29:16.547 DEBUG [15229]: Connecting to database... -- 15:29:16.547 DEBUG [15229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:29:16.547 SQL [15229]: pgsql_db_connect() -- 15:29:16.551 DEBUG [15229]: Database connection successful -- 15:29:16.551 INFO [15229]: _SERVER found -- 15:29:16.551 INFO [15229]: REMOTE_ADDR = 192.168.1.13 -- 15:29:16.551 INFO [15229]: SERVER_NAME = oameye.works.coregrade.com -- 15:29:16.551 INFO [15229]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=ilu0n820qi5llud5bsvtopb3l0dq7rlj; _gid=GA1.2.1386341167.1585250955; _gat_gtag_UA_54829827_2=1 -- 15:29:16.551 INFO [15229]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:29:16.551 INFO [15229]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:29:16.564 INFO [15229]: COREGRADE is stopping... -- 15:29:16.565 DEBUG [15229]: Closing database connection -- 15:29:16.565 SQL [15229]: pgsql_close() -- 20:46:35.531 INFO [10382]: COREGRADE is starting... -- 20:46:35.531 INFO [10382]: Version from config: 1.0 -- 20:46:35.531 DEBUG [10382]: Connecting to database... -- 20:46:35.531 DEBUG [10382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:46:35.531 SQL [10382]: pgsql_db_connect() -- 20:46:35.535 DEBUG [10382]: Database connection successful -- 20:46:35.535 INFO [10382]: _SERVER found -- 20:46:35.535 INFO [10382]: REMOTE_ADDR = 192.168.1.13 -- 20:46:35.535 INFO [10382]: SERVER_NAME = oameye.works.coregrade.com -- 20:46:35.535 INFO [10382]: QUERY_STRING = -- 20:46:35.535 INFO [10382]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 20:46:35.570 INFO [10382]: COREGRADE is stopping... -- 20:46:35.570 DEBUG [10382]: Closing database connection -- 20:46:35.570 SQL [10382]: pgsql_close() -- 00:34:05.935 INFO [9530]: COREGRADE is starting... -- 00:34:05.935 INFO [9530]: Version from config: 1.0 -- 00:34:05.935 DEBUG [9530]: Connecting to database... -- 00:34:05.935 DEBUG [9530]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:05.935 SQL [9530]: pgsql_db_connect() -- 00:34:05.940 DEBUG [9530]: Database connection successful -- 00:34:05.940 INFO [9530]: _SERVER found -- 00:34:05.940 INFO [9530]: REMOTE_ADDR = 192.168.1.13 -- 00:34:05.940 INFO [9530]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:05.940 INFO [9530]: QUERY_STRING = -- 00:34:05.940 INFO [9530]: HTTP_X_FORWARDED_FOR = 198.108.66.240 -- 00:34:05.979 INFO [9530]: COREGRADE is stopping... -- 00:34:05.979 DEBUG [9530]: Closing database connection -- 00:34:05.979 SQL [9530]: pgsql_close() -- 02:45:39.611 INFO [9532]: COREGRADE is starting... -- 02:45:39.611 INFO [9532]: Version from config: 1.0 -- 02:45:39.611 DEBUG [9532]: Connecting to database... -- 02:45:39.611 DEBUG [9532]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:45:39.611 SQL [9532]: pgsql_db_connect() -- 02:45:39.616 DEBUG [9532]: Database connection successful -- 02:45:39.616 INFO [9532]: _SERVER found -- 02:45:39.616 INFO [9532]: REMOTE_ADDR = 192.168.1.13 -- 02:45:39.616 INFO [9532]: SERVER_NAME = oameye.works.coregrade.com -- 02:45:39.616 INFO [9532]: QUERY_STRING = /.well-known/acme-challenge/sPnBih2-gLv_wLj79tgKossLAE9mqScobQ4SXcdbPm8 -- 02:45:39.616 INFO [9532]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 02:45:39.630 INFO [9532]: COREGRADE is stopping... -- 02:45:39.630 DEBUG [9532]: Closing database connection -- 02:45:39.630 SQL [9532]: pgsql_close() -- 02:45:39.655 INFO [9531]: COREGRADE is starting... -- 02:45:39.655 INFO [9531]: Version from config: 1.0 -- 02:45:39.655 DEBUG [9531]: Connecting to database... -- 02:45:39.655 DEBUG [9531]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:45:39.655 SQL [9531]: pgsql_db_connect() -- 02:45:39.659 DEBUG [9531]: Database connection successful -- 02:45:39.659 INFO [9531]: _SERVER found -- 02:45:39.659 INFO [9531]: REMOTE_ADDR = 192.168.1.13 -- 02:45:39.659 INFO [9531]: SERVER_NAME = oameye.works.coregrade.com -- 02:45:39.659 INFO [9531]: QUERY_STRING = /.well-known/acme-challenge/sPnBih2-gLv_wLj79tgKossLAE9mqScobQ4SXcdbPm8 -- 02:45:39.659 INFO [9531]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 02:45:39.672 INFO [9531]: COREGRADE is stopping... -- 02:45:39.672 DEBUG [9531]: Closing database connection -- 02:45:39.672 SQL [9531]: pgsql_close() -- 02:45:39.755 INFO [9532]: COREGRADE is starting... -- 02:45:39.755 INFO [9532]: Version from config: 1.0 -- 02:45:39.755 DEBUG [9532]: Connecting to database... -- 02:45:39.755 DEBUG [9532]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:45:39.755 SQL [9532]: pgsql_db_connect() -- 02:45:39.759 DEBUG [9532]: Database connection successful -- 02:45:39.759 INFO [9532]: _SERVER found -- 02:45:39.759 INFO [9532]: REMOTE_ADDR = 192.168.1.13 -- 02:45:39.759 INFO [9532]: SERVER_NAME = oameye.works.coregrade.com -- 02:45:39.759 INFO [9532]: QUERY_STRING = /.well-known/acme-challenge/sPnBih2-gLv_wLj79tgKossLAE9mqScobQ4SXcdbPm8 -- 02:45:39.759 INFO [9532]: HTTP_X_FORWARDED_FOR = 52.28.236.88 -- 02:45:39.770 INFO [9532]: COREGRADE is stopping... -- 02:45:39.770 DEBUG [9532]: Closing database connection -- 02:45:39.770 SQL [9532]: pgsql_close() -- 02:45:39.785 INFO [9533]: COREGRADE is starting... -- 02:45:39.785 INFO [9533]: Version from config: 1.0 -- 02:45:39.785 DEBUG [9533]: Connecting to database... -- 02:45:39.785 DEBUG [9533]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:45:39.785 SQL [9533]: pgsql_db_connect() -- 02:45:39.789 DEBUG [9533]: Database connection successful -- 02:45:39.789 INFO [9533]: _SERVER found -- 02:45:39.789 INFO [9533]: REMOTE_ADDR = 192.168.1.13 -- 02:45:39.789 INFO [9533]: SERVER_NAME = oameye.works.coregrade.com -- 02:45:39.789 INFO [9533]: QUERY_STRING = /.well-known/acme-challenge/sPnBih2-gLv_wLj79tgKossLAE9mqScobQ4SXcdbPm8 -- 02:45:39.789 INFO [9533]: HTTP_X_FORWARDED_FOR = 34.209.232.166 -- 02:45:39.811 INFO [9533]: COREGRADE is stopping... -- 02:45:39.811 DEBUG [9533]: Closing database connection -- 02:45:39.811 SQL [9533]: pgsql_close() -- 02:59:05.094 INFO [15229]: COREGRADE is starting... -- 02:59:05.094 INFO [15229]: Version from config: 1.0 -- 02:59:05.094 DEBUG [15229]: Connecting to database... -- 02:59:05.094 DEBUG [15229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:59:05.094 SQL [15229]: pgsql_db_connect() -- 02:59:05.099 DEBUG [15229]: Database connection successful -- 02:59:05.099 INFO [15229]: _SERVER found -- 02:59:05.099 INFO [15229]: REMOTE_ADDR = 192.168.1.13 -- 02:59:05.099 INFO [15229]: SERVER_NAME = oameye.works.coregrade.com -- 02:59:05.099 INFO [15229]: QUERY_STRING = -- 02:59:05.099 INFO [15229]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 02:59:05.139 INFO [15229]: COREGRADE is stopping... -- 02:59:05.139 DEBUG [15229]: Closing database connection -- 02:59:05.139 SQL [15229]: pgsql_close() -- 04:54:24.301 INFO [9530]: COREGRADE is starting... -- 04:54:24.301 INFO [9530]: Version from config: 1.0 -- 04:54:24.301 DEBUG [9530]: Connecting to database... -- 04:54:24.301 DEBUG [9530]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:54:24.301 SQL [9530]: pgsql_db_connect() -- 04:54:24.306 DEBUG [9530]: Database connection successful -- 04:54:24.306 INFO [9530]: _SERVER found -- 04:54:24.306 INFO [9530]: REMOTE_ADDR = 192.168.1.13 -- 04:54:24.306 INFO [9530]: SERVER_NAME = oameye.works.coregrade.com -- 04:54:24.306 INFO [9530]: QUERY_STRING = /TP/public/index.php -- 04:54:24.306 INFO [9530]: HTTP_X_FORWARDED_FOR = 212.64.21.128 -- 04:54:24.320 INFO [9530]: COREGRADE is stopping... -- 04:54:24.320 DEBUG [9530]: Closing database connection -- 04:54:24.320 SQL [9530]: pgsql_close() -- 04:54:28.611 INFO [27161]: COREGRADE is starting... -- 04:54:28.612 INFO [27161]: Version from config: 1.0 -- 04:54:28.612 DEBUG [27161]: Connecting to database... -- 04:54:28.612 DEBUG [27161]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:54:28.612 SQL [27161]: pgsql_db_connect() -- 04:54:28.616 DEBUG [27161]: Database connection successful -- 04:54:28.616 INFO [27161]: _SERVER found -- 04:54:28.616 INFO [27161]: REMOTE_ADDR = 192.168.1.13 -- 04:54:28.616 INFO [27161]: SERVER_NAME = oameye.works.coregrade.com -- 04:54:28.616 INFO [27161]: QUERY_STRING = /TP/index.php -- 04:54:28.616 INFO [27161]: HTTP_X_FORWARDED_FOR = 212.64.21.128 -- 04:54:28.631 INFO [27161]: COREGRADE is stopping... -- 04:54:28.631 DEBUG [27161]: Closing database connection -- 04:54:28.631 SQL [27161]: pgsql_close() -- 04:54:30.505 INFO [27161]: COREGRADE is starting... -- 04:54:30.505 INFO [27161]: Version from config: 1.0 -- 04:54:30.506 DEBUG [27161]: Connecting to database... -- 04:54:30.506 DEBUG [27161]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:54:30.506 SQL [27161]: pgsql_db_connect() -- 04:54:30.510 DEBUG [27161]: Database connection successful -- 04:54:30.510 INFO [27161]: _SERVER found -- 04:54:30.510 INFO [27161]: REMOTE_ADDR = 192.168.1.13 -- 04:54:30.510 INFO [27161]: SERVER_NAME = oameye.works.coregrade.com -- 04:54:30.510 INFO [27161]: QUERY_STRING = /thinkphp/html/public/index.php -- 04:54:30.510 INFO [27161]: HTTP_X_FORWARDED_FOR = 212.64.21.128 -- 04:54:30.521 INFO [27161]: COREGRADE is stopping... -- 04:54:30.521 DEBUG [27161]: Closing database connection -- 04:54:30.521 SQL [27161]: pgsql_close() -- 04:54:32.157 INFO [27161]: COREGRADE is starting... -- 04:54:32.157 INFO [27161]: Version from config: 1.0 -- 04:54:32.157 DEBUG [27161]: Connecting to database... -- 04:54:32.157 DEBUG [27161]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:54:32.157 SQL [27161]: pgsql_db_connect() -- 04:54:32.161 DEBUG [27161]: Database connection successful -- 04:54:32.161 INFO [27161]: _SERVER found -- 04:54:32.161 INFO [27161]: REMOTE_ADDR = 192.168.1.13 -- 04:54:32.161 INFO [27161]: SERVER_NAME = oameye.works.coregrade.com -- 04:54:32.161 INFO [27161]: QUERY_STRING = /html/public/index.php -- 04:54:32.161 INFO [27161]: HTTP_X_FORWARDED_FOR = 212.64.21.128 -- 04:54:32.173 INFO [27161]: COREGRADE is stopping... -- 04:54:32.173 DEBUG [27161]: Closing database connection -- 04:54:32.173 SQL [27161]: pgsql_close() -- 04:54:34.611 INFO [9531]: COREGRADE is starting... -- 04:54:34.611 INFO [9531]: Version from config: 1.0 -- 04:54:34.611 DEBUG [9531]: Connecting to database... -- 04:54:34.611 DEBUG [9531]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:54:34.611 SQL [9531]: pgsql_db_connect() -- 04:54:34.615 DEBUG [9531]: Database connection successful -- 04:54:34.616 INFO [9531]: _SERVER found -- 04:54:34.616 INFO [9531]: REMOTE_ADDR = 192.168.1.13 -- 04:54:34.616 INFO [9531]: SERVER_NAME = oameye.works.coregrade.com -- 04:54:34.616 INFO [9531]: QUERY_STRING = /public/index.php -- 04:54:34.616 INFO [9531]: HTTP_X_FORWARDED_FOR = 212.64.21.128 -- 04:54:34.629 INFO [9531]: COREGRADE is stopping... -- 04:54:34.629 DEBUG [9531]: Closing database connection -- 04:54:34.629 SQL [9531]: pgsql_close() -- 04:54:41.855 INFO [9532]: COREGRADE is starting... -- 04:54:41.855 INFO [9532]: Version from config: 1.0 -- 04:54:41.855 DEBUG [9532]: Connecting to database... -- 04:54:41.855 DEBUG [9532]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:54:41.855 SQL [9532]: pgsql_db_connect() -- 04:54:41.859 DEBUG [9532]: Database connection successful -- 04:54:41.859 INFO [9532]: _SERVER found -- 04:54:41.859 INFO [9532]: REMOTE_ADDR = 192.168.1.13 -- 04:54:41.859 INFO [9532]: SERVER_NAME = oameye.works.coregrade.com -- 04:54:41.859 INFO [9532]: QUERY_STRING = -- 04:54:41.859 INFO [9532]: HTTP_X_FORWARDED_FOR = 212.64.21.128 -- 04:54:41.892 INFO [9532]: COREGRADE is stopping... -- 04:54:41.892 DEBUG [9532]: Closing database connection -- 04:54:41.892 SQL [9532]: pgsql_close() -- 08:58:55.493 INFO [9533]: COREGRADE is starting... -- 08:58:55.494 INFO [9533]: Version from config: 1.0 -- 08:58:55.494 DEBUG [9533]: Connecting to database... -- 08:58:55.494 DEBUG [9533]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:58:55.494 SQL [9533]: pgsql_db_connect() -- 08:58:55.499 DEBUG [9533]: Database connection successful -- 08:58:55.499 INFO [9533]: _SERVER found -- 08:58:55.499 INFO [9533]: REMOTE_ADDR = 192.168.1.13 -- 08:58:55.499 INFO [9533]: SERVER_NAME = oameye.works.coregrade.com -- 08:58:55.499 INFO [9533]: QUERY_STRING = -- 08:58:55.499 INFO [9533]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 08:58:55.537 INFO [9533]: COREGRADE is stopping... -- 08:58:55.537 DEBUG [9533]: Closing database connection -- 08:58:55.537 SQL [9533]: pgsql_close() -- 11:32:58.912 INFO [9773]: COREGRADE is starting... -- 11:32:58.912 INFO [9773]: Version from config: 1.0 -- 11:32:58.912 DEBUG [9773]: Connecting to database... -- 11:32:58.912 DEBUG [9773]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:32:58.913 SQL [9773]: pgsql_db_connect() -- 11:32:58.917 DEBUG [9773]: Database connection successful -- 11:32:58.917 INFO [9773]: _SERVER found -- 11:32:58.917 INFO [9773]: REMOTE_ADDR = 192.168.1.13 -- 11:32:58.917 INFO [9773]: SERVER_NAME = oameye.works.coregrade.com -- 11:32:58.917 INFO [9773]: QUERY_STRING = /TP/public/index.php -- 11:32:58.917 INFO [9773]: HTTP_X_FORWARDED_FOR = 49.234.36.227 -- 11:32:58.932 INFO [9773]: COREGRADE is stopping... -- 11:32:58.932 DEBUG [9773]: Closing database connection -- 11:32:58.932 SQL [9773]: pgsql_close() -- 11:33:03.960 INFO [15227]: COREGRADE is starting... -- 11:33:03.960 INFO [15227]: Version from config: 1.0 -- 11:33:03.960 DEBUG [15227]: Connecting to database... -- 11:33:03.960 DEBUG [15227]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:33:03.960 SQL [15227]: pgsql_db_connect() -- 11:33:03.964 DEBUG [15227]: Database connection successful -- 11:33:03.964 INFO [15227]: _SERVER found -- 11:33:03.964 INFO [15227]: REMOTE_ADDR = 192.168.1.13 -- 11:33:03.964 INFO [15227]: SERVER_NAME = oameye.works.coregrade.com -- 11:33:03.964 INFO [15227]: QUERY_STRING = /TP/index.php -- 11:33:03.964 INFO [15227]: HTTP_X_FORWARDED_FOR = 49.234.36.227 -- 11:33:03.978 INFO [15227]: COREGRADE is stopping... -- 11:33:03.978 DEBUG [15227]: Closing database connection -- 11:33:03.978 SQL [15227]: pgsql_close() -- 11:33:10.830 INFO [15228]: COREGRADE is starting... -- 11:33:10.830 INFO [15228]: Version from config: 1.0 -- 11:33:10.830 DEBUG [15228]: Connecting to database... -- 11:33:10.830 DEBUG [15228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:33:10.830 SQL [15228]: pgsql_db_connect() -- 11:33:10.835 DEBUG [15228]: Database connection successful -- 11:33:10.835 INFO [15228]: _SERVER found -- 11:33:10.835 INFO [15228]: REMOTE_ADDR = 192.168.1.13 -- 11:33:10.835 INFO [15228]: SERVER_NAME = oameye.works.coregrade.com -- 11:33:10.835 INFO [15228]: QUERY_STRING = -- 11:33:10.835 INFO [15228]: HTTP_X_FORWARDED_FOR = 49.234.36.227 -- 11:33:10.870 INFO [15228]: COREGRADE is stopping... -- 11:33:10.870 DEBUG [15228]: Closing database connection -- 11:33:10.870 SQL [15228]: pgsql_close() -- 14:59:44.763 INFO [15229]: COREGRADE is starting... -- 14:59:44.763 INFO [15229]: Version from config: 1.0 -- 14:59:44.763 DEBUG [15229]: Connecting to database... -- 14:59:44.763 DEBUG [15229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:59:44.763 SQL [15229]: pgsql_db_connect() -- 14:59:44.769 DEBUG [15229]: Database connection successful -- 14:59:44.769 INFO [15229]: _SERVER found -- 14:59:44.769 INFO [15229]: REMOTE_ADDR = 192.168.1.13 -- 14:59:44.769 INFO [15229]: SERVER_NAME = oameye.works.coregrade.com -- 14:59:44.769 INFO [15229]: QUERY_STRING = -- 14:59:44.769 INFO [15229]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 14:59:44.811 INFO [15229]: COREGRADE is stopping... -- 14:59:44.811 DEBUG [15229]: Closing database connection -- 14:59:44.811 SQL [15229]: pgsql_close() -- 21:01:13.796 INFO [10382]: COREGRADE is starting... -- 21:01:13.796 INFO [10382]: Version from config: 1.0 -- 21:01:13.796 DEBUG [10382]: Connecting to database... -- 21:01:13.796 DEBUG [10382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:01:13.796 SQL [10382]: pgsql_db_connect() -- 21:01:13.801 DEBUG [10382]: Database connection successful -- 21:01:13.801 INFO [10382]: _SERVER found -- 21:01:13.801 INFO [10382]: REMOTE_ADDR = 192.168.1.13 -- 21:01:13.801 INFO [10382]: SERVER_NAME = oameye.works.coregrade.com -- 21:01:13.801 INFO [10382]: QUERY_STRING = -- 21:01:13.801 INFO [10382]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 21:01:13.836 INFO [10382]: COREGRADE is stopping... -- 21:01:13.836 DEBUG [10382]: Closing database connection -- 21:01:13.836 SQL [10382]: pgsql_close() -- 22:15:34.168 INFO [9530]: COREGRADE is starting... -- 22:15:34.169 INFO [9530]: Version from config: 1.0 -- 22:15:34.169 DEBUG [9530]: Connecting to database... -- 22:15:34.169 DEBUG [9530]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:15:34.169 SQL [9530]: pgsql_db_connect() -- 22:15:34.173 DEBUG [9530]: Database connection successful -- 22:15:34.173 INFO [9530]: _SERVER found -- 22:15:34.173 INFO [9530]: REMOTE_ADDR = 192.168.1.13 -- 22:15:34.173 INFO [9530]: SERVER_NAME = oameye.works.coregrade.com -- 22:15:34.173 INFO [9530]: QUERY_STRING = -- 22:15:34.173 INFO [9530]: HTTP_X_FORWARDED_FOR = 45.195.146.140 -- 22:15:34.213 INFO [9530]: COREGRADE is stopping... -- 22:15:34.213 DEBUG [9530]: Closing database connection -- 22:15:34.213 SQL [9530]: pgsql_close() -- 02:49:57.493 INFO [27161]: COREGRADE is starting... -- 02:49:57.493 INFO [27161]: Version from config: 1.0 -- 02:49:57.493 DEBUG [27161]: Connecting to database... -- 02:49:57.493 DEBUG [27161]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:49:57.493 SQL [27161]: pgsql_db_connect() -- 02:49:57.498 DEBUG [27161]: Database connection successful -- 02:49:57.498 INFO [27161]: _SERVER found -- 02:49:57.498 INFO [27161]: REMOTE_ADDR = 192.168.1.13 -- 02:49:57.498 INFO [27161]: SERVER_NAME = oameye.works.coregrade.com -- 02:49:57.498 INFO [27161]: QUERY_STRING = /.well-known/acme-challenge/NA9uyWdrQrd7hVayFMQkIQCqBZt5OuYlhAqeSpfaGQY -- 02:49:57.498 INFO [27161]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 02:49:57.512 INFO [27161]: COREGRADE is stopping... -- 02:49:57.512 DEBUG [27161]: Closing database connection -- 02:49:57.512 SQL [27161]: pgsql_close() -- 02:49:57.819 INFO [9532]: COREGRADE is starting... -- 02:49:57.819 INFO [9532]: Version from config: 1.0 -- 02:49:57.819 DEBUG [9532]: Connecting to database... -- 02:49:57.819 DEBUG [9532]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:49:57.819 SQL [9532]: pgsql_db_connect() -- 02:49:57.832 INFO [9533]: COREGRADE is starting... -- 02:49:57.832 INFO [9533]: Version from config: 1.0 -- 02:49:57.832 DEBUG [9533]: Connecting to database... -- 02:49:57.832 DEBUG [9533]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:49:57.832 SQL [9533]: pgsql_db_connect() -- 02:49:57.824 DEBUG [9532]: Database connection successful -- 02:49:57.824 INFO [9532]: _SERVER found -- 02:49:57.824 INFO [9532]: REMOTE_ADDR = 192.168.1.13 -- 02:49:57.824 INFO [9532]: SERVER_NAME = oameye.works.coregrade.com -- 02:49:57.824 INFO [9532]: QUERY_STRING = /.well-known/acme-challenge/NA9uyWdrQrd7hVayFMQkIQCqBZt5OuYlhAqeSpfaGQY -- 02:49:57.824 INFO [9532]: HTTP_X_FORWARDED_FOR = 34.222.229.130 -- 02:49:57.841 INFO [9532]: COREGRADE is stopping... -- 02:49:57.841 DEBUG [9532]: Closing database connection -- 02:49:57.841 SQL [9532]: pgsql_close() -- 02:49:57.838 DEBUG [9533]: Database connection successful -- 02:49:57.838 INFO [9533]: _SERVER found -- 02:49:57.838 INFO [9533]: REMOTE_ADDR = 192.168.1.13 -- 02:49:57.838 INFO [9533]: SERVER_NAME = oameye.works.coregrade.com -- 02:49:57.838 INFO [9533]: QUERY_STRING = /.well-known/acme-challenge/NA9uyWdrQrd7hVayFMQkIQCqBZt5OuYlhAqeSpfaGQY -- 02:49:57.838 INFO [9533]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 02:49:57.852 INFO [9533]: COREGRADE is stopping... -- 02:49:57.852 DEBUG [9533]: Closing database connection -- 02:49:57.852 SQL [9533]: pgsql_close() -- 02:49:57.862 INFO [9532]: COREGRADE is starting... -- 02:49:57.863 INFO [9532]: Version from config: 1.0 -- 02:49:57.863 DEBUG [9532]: Connecting to database... -- 02:49:57.863 DEBUG [9532]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:49:57.863 SQL [9532]: pgsql_db_connect() -- 02:49:57.867 DEBUG [9532]: Database connection successful -- 02:49:57.867 INFO [9532]: _SERVER found -- 02:49:57.867 INFO [9532]: REMOTE_ADDR = 192.168.1.13 -- 02:49:57.867 INFO [9532]: SERVER_NAME = oameye.works.coregrade.com -- 02:49:57.867 INFO [9532]: QUERY_STRING = /.well-known/acme-challenge/NA9uyWdrQrd7hVayFMQkIQCqBZt5OuYlhAqeSpfaGQY -- 02:49:57.867 INFO [9532]: HTTP_X_FORWARDED_FOR = 52.28.236.88 -- 02:49:57.878 INFO [9532]: COREGRADE is stopping... -- 02:49:57.878 DEBUG [9532]: Closing database connection -- 02:49:57.878 SQL [9532]: pgsql_close() -- 03:00:23.540 INFO [15227]: COREGRADE is starting... -- 03:00:23.541 INFO [15227]: Version from config: 1.0 -- 03:00:23.541 DEBUG [15227]: Connecting to database... -- 03:00:23.541 DEBUG [15227]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:00:23.541 SQL [15227]: pgsql_db_connect() -- 03:00:23.545 DEBUG [15227]: Database connection successful -- 03:00:23.545 INFO [15227]: _SERVER found -- 03:00:23.545 INFO [15227]: REMOTE_ADDR = 192.168.1.13 -- 03:00:23.545 INFO [15227]: SERVER_NAME = oameye.works.coregrade.com -- 03:00:23.545 INFO [15227]: QUERY_STRING = -- 03:00:23.545 INFO [15227]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 03:00:23.579 INFO [15227]: COREGRADE is stopping... -- 03:00:23.579 DEBUG [15227]: Closing database connection -- 03:00:23.579 SQL [15227]: pgsql_close() -- 04:55:36.452 INFO [15228]: COREGRADE is starting... -- 04:55:36.454 INFO [15228]: Version from config: 1.0 -- 04:55:36.454 DEBUG [15228]: Connecting to database... -- 04:55:36.454 DEBUG [15228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:55:36.454 SQL [15228]: pgsql_db_connect() -- 04:55:36.458 DEBUG [15228]: Database connection successful -- 04:55:36.458 INFO [15228]: _SERVER found -- 04:55:36.458 INFO [15228]: REMOTE_ADDR = 192.168.1.13 -- 04:55:36.458 INFO [15228]: SERVER_NAME = oameye.works.coregrade.com -- 04:55:36.458 INFO [15228]: QUERY_STRING = -- 04:55:36.458 INFO [15228]: HTTP_X_FORWARDED_FOR = 209.17.96.242 -- 04:55:36.496 INFO [15228]: COREGRADE is stopping... -- 04:55:36.496 DEBUG [15228]: Closing database connection -- 04:55:36.496 SQL [15228]: pgsql_close() -- 06:09:38.430 INFO [15229]: COREGRADE is starting... -- 06:09:38.430 INFO [15229]: Version from config: 1.0 -- 06:09:38.430 DEBUG [15229]: Connecting to database... -- 06:09:38.430 DEBUG [15229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:09:38.430 SQL [15229]: pgsql_db_connect() -- 06:09:38.435 DEBUG [15229]: Database connection successful -- 06:09:38.435 INFO [15229]: _SERVER found -- 06:09:38.435 INFO [15229]: REMOTE_ADDR = 192.168.1.13 -- 06:09:38.435 INFO [15229]: SERVER_NAME = oameye.works.coregrade.com -- 06:09:38.435 INFO [15229]: QUERY_STRING = -- 06:09:38.435 INFO [15229]: HTTP_X_FORWARDED_FOR = 107.6.171.130 -- 06:09:38.477 INFO [15229]: COREGRADE is stopping... -- 06:09:38.477 DEBUG [15229]: Closing database connection -- 06:09:38.477 SQL [15229]: pgsql_close() -- 07:12:25.816 INFO [10382]: COREGRADE is starting... -- 07:12:25.816 INFO [10382]: Version from config: 1.0 -- 07:12:25.816 DEBUG [10382]: Connecting to database... -- 07:12:25.816 DEBUG [10382]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:12:25.816 SQL [10382]: pgsql_db_connect() -- 07:12:25.821 DEBUG [10382]: Database connection successful -- 07:12:25.821 INFO [10382]: _SERVER found -- 07:12:25.821 INFO [10382]: REMOTE_ADDR = 192.168.1.13 -- 07:12:25.821 INFO [10382]: SERVER_NAME = oameye.works.coregrade.com -- 07:12:25.821 INFO [10382]: QUERY_STRING = -- 07:12:25.821 INFO [10382]: HTTP_X_FORWARDED_FOR = 45.55.145.46 -- 07:12:25.854 INFO [10382]: COREGRADE is stopping... -- 07:12:25.854 DEBUG [10382]: Closing database connection -- 07:12:25.854 SQL [10382]: pgsql_close() -- 09:01:13.320 INFO [9530]: COREGRADE is starting... -- 09:01:13.321 INFO [9530]: Version from config: 1.0 -- 09:01:13.321 DEBUG [9530]: Connecting to database... -- 09:01:13.321 DEBUG [9530]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:01:13.321 SQL [9530]: pgsql_db_connect() -- 09:01:13.325 DEBUG [9530]: Database connection successful -- 09:01:13.325 INFO [9530]: _SERVER found -- 09:01:13.325 INFO [9530]: REMOTE_ADDR = 192.168.1.13 -- 09:01:13.325 INFO [9530]: SERVER_NAME = oameye.works.coregrade.com -- 09:01:13.325 INFO [9530]: QUERY_STRING = -- 09:01:13.325 INFO [9530]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 09:01:13.364 INFO [9530]: COREGRADE is stopping... -- 09:01:13.365 DEBUG [9530]: Closing database connection -- 09:01:13.365 SQL [9530]: pgsql_close() -- 14:59:14.951 INFO [27161]: COREGRADE is starting... -- 14:59:14.951 INFO [27161]: Version from config: 1.0 -- 14:59:14.951 DEBUG [27161]: Connecting to database... -- 14:59:14.951 DEBUG [27161]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:59:14.951 SQL [27161]: pgsql_db_connect() -- 14:59:14.956 DEBUG [27161]: Database connection successful -- 14:59:14.956 INFO [27161]: _SERVER found -- 14:59:14.956 INFO [27161]: REMOTE_ADDR = 192.168.1.13 -- 14:59:14.956 INFO [27161]: SERVER_NAME = oameye.works.coregrade.com -- 14:59:14.956 INFO [27161]: QUERY_STRING = -- 14:59:14.956 INFO [27161]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 14:59:15.002 INFO [27161]: COREGRADE is stopping... -- 14:59:15.002 DEBUG [27161]: Closing database connection -- 14:59:15.002 SQL [27161]: pgsql_close() -- 20:58:50.273 INFO [9531]: COREGRADE is starting... -- 20:58:50.273 INFO [9531]: Version from config: 1.0 -- 20:58:50.273 DEBUG [9531]: Connecting to database... -- 20:58:50.273 DEBUG [9531]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:58:50.273 SQL [9531]: pgsql_db_connect() -- 20:58:50.278 DEBUG [9531]: Database connection successful -- 20:58:50.278 INFO [9531]: _SERVER found -- 20:58:50.278 INFO [9531]: REMOTE_ADDR = 192.168.1.13 -- 20:58:50.278 INFO [9531]: SERVER_NAME = oameye.works.coregrade.com -- 20:58:50.278 INFO [9531]: QUERY_STRING = -- 20:58:50.278 INFO [9531]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 20:58:50.315 INFO [9531]: COREGRADE is stopping... -- 20:58:50.315 DEBUG [9531]: Closing database connection -- 20:58:50.315 SQL [9531]: pgsql_close() -- 02:58:34.496 INFO [9533]: COREGRADE is starting... -- 02:58:34.496 INFO [9533]: Version from config: 1.0 -- 02:58:34.496 DEBUG [9533]: Connecting to database... -- 02:58:34.496 DEBUG [9533]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:58:34.496 SQL [9533]: pgsql_db_connect() -- 02:58:34.501 DEBUG [9533]: Database connection successful -- 02:58:34.501 INFO [9533]: _SERVER found -- 02:58:34.501 INFO [9533]: REMOTE_ADDR = 192.168.1.13 -- 02:58:34.501 INFO [9533]: SERVER_NAME = oameye.works.coregrade.com -- 02:58:34.501 INFO [9533]: QUERY_STRING = -- 02:58:34.501 INFO [9533]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 02:58:34.540 INFO [9533]: COREGRADE is stopping... -- 02:58:34.540 DEBUG [9533]: Closing database connection -- 02:58:34.540 SQL [9533]: pgsql_close() -- 04:33:55.408 INFO [7228]: COREGRADE is starting... -- 04:33:55.409 INFO [7228]: Version from config: 1.0 -- 04:33:55.409 DEBUG [7228]: Connecting to database... -- 04:33:55.409 DEBUG [7228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:33:55.409 SQL [7228]: pgsql_db_connect() -- 04:33:55.414 DEBUG [7228]: Database connection successful -- 04:33:55.414 INFO [7228]: _SERVER found -- 04:33:55.414 INFO [7228]: REMOTE_ADDR = 192.168.1.13 -- 04:33:55.414 INFO [7228]: SERVER_NAME = oameye.works.coregrade.com -- 04:33:55.414 INFO [7228]: QUERY_STRING = -- 04:33:55.414 INFO [7228]: HTTP_X_FORWARDED_FOR = 38.108.68.162 -- 04:33:55.465 INFO [7228]: COREGRADE is stopping... -- 04:33:55.465 DEBUG [7228]: Closing database connection -- 04:33:55.465 SQL [7228]: pgsql_close() -- 04:55:37.082 INFO [7229]: COREGRADE is starting... -- 04:55:37.083 INFO [7229]: Version from config: 1.0 -- 04:55:37.083 DEBUG [7229]: Connecting to database... -- 04:55:37.083 DEBUG [7229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:55:37.083 SQL [7229]: pgsql_db_connect() -- 04:55:37.089 DEBUG [7229]: Database connection successful -- 04:55:37.089 INFO [7229]: _SERVER found -- 04:55:37.089 INFO [7229]: REMOTE_ADDR = 192.168.1.13 -- 04:55:37.089 INFO [7229]: SERVER_NAME = oameye.works.coregrade.com -- 04:55:37.089 INFO [7229]: QUERY_STRING = /robots.txt -- 04:55:37.089 INFO [7229]: HTTP_X_FORWARDED_FOR = 66.249.66.212 -- 04:55:37.106 INFO [7229]: COREGRADE is stopping... -- 04:55:37.106 DEBUG [7229]: Closing database connection -- 04:55:37.106 SQL [7229]: pgsql_close() -- 04:55:37.532 INFO [7230]: COREGRADE is starting... -- 04:55:37.532 INFO [7230]: Version from config: 1.0 -- 04:55:37.532 DEBUG [7230]: Connecting to database... -- 04:55:37.532 DEBUG [7230]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:55:37.532 SQL [7230]: pgsql_db_connect() -- 04:55:37.537 DEBUG [7230]: Database connection successful -- 04:55:37.537 INFO [7230]: _SERVER found -- 04:55:37.537 INFO [7230]: REMOTE_ADDR = 192.168.1.13 -- 04:55:37.537 INFO [7230]: SERVER_NAME = oameye.works.coregrade.com -- 04:55:37.537 INFO [7230]: QUERY_STRING = /home/aboutus -- 04:55:37.537 INFO [7230]: HTTP_X_FORWARDED_FOR = 66.249.66.216 -- 04:55:37.579 INFO [7230]: COREGRADE is stopping... -- 04:55:37.579 DEBUG [7230]: Closing database connection -- 04:55:37.579 SQL [7230]: pgsql_close() -- 08:35:41.028 INFO [7232]: COREGRADE is starting... -- 08:35:41.029 INFO [7232]: Version from config: 1.0 -- 08:35:41.029 DEBUG [7232]: Connecting to database... -- 08:35:41.029 DEBUG [7232]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:35:41.029 SQL [7232]: pgsql_db_connect() -- 08:35:41.034 DEBUG [7232]: Database connection successful -- 08:35:41.034 INFO [7232]: _SERVER found -- 08:35:41.034 INFO [7232]: REMOTE_ADDR = 192.168.1.13 -- 08:35:41.034 INFO [7232]: SERVER_NAME = oameye.works.coregrade.com -- 08:35:41.034 INFO [7232]: QUERY_STRING = -- 08:35:41.034 INFO [7232]: HTTP_X_FORWARDED_FOR = 128.14.134.134 -- 08:35:41.084 INFO [7232]: COREGRADE is stopping... -- 08:35:41.084 DEBUG [7232]: Closing database connection -- 08:35:41.084 SQL [7232]: pgsql_close() -- 08:59:45.433 INFO [7486]: COREGRADE is starting... -- 08:59:45.433 INFO [7486]: Version from config: 1.0 -- 08:59:45.433 DEBUG [7486]: Connecting to database... -- 08:59:45.433 DEBUG [7486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:59:45.433 SQL [7486]: pgsql_db_connect() -- 08:59:45.438 DEBUG [7486]: Database connection successful -- 08:59:45.438 INFO [7486]: _SERVER found -- 08:59:45.438 INFO [7486]: REMOTE_ADDR = 192.168.1.13 -- 08:59:45.438 INFO [7486]: SERVER_NAME = oameye.works.coregrade.com -- 08:59:45.438 INFO [7486]: QUERY_STRING = -- 08:59:45.438 INFO [7486]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 08:59:45.485 INFO [7486]: COREGRADE is stopping... -- 08:59:45.485 DEBUG [7486]: Closing database connection -- 08:59:45.486 SQL [7486]: pgsql_close() -- 09:20:55.750 INFO [7228]: COREGRADE is starting... -- 09:20:55.750 INFO [7228]: Version from config: 1.0 -- 09:20:55.750 DEBUG [7228]: Connecting to database... -- 09:20:55.750 DEBUG [7228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:20:55.751 SQL [7228]: pgsql_db_connect() -- 09:20:55.755 DEBUG [7228]: Database connection successful -- 09:20:55.755 INFO [7228]: _SERVER found -- 09:20:55.755 INFO [7228]: REMOTE_ADDR = 192.168.1.13 -- 09:20:55.755 INFO [7228]: SERVER_NAME = oameye.works.coregrade.com -- 09:20:55.755 INFO [7228]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 09:20:55.755 INFO [7228]: QUERY_STRING = -- 09:20:55.755 INFO [7228]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:20:55.794 INFO [7228]: COREGRADE is stopping... -- 09:20:55.794 DEBUG [7228]: Closing database connection -- 09:20:55.794 SQL [7228]: pgsql_close() -- 09:20:57.700 INFO [7230]: COREGRADE is starting... -- 09:20:57.700 INFO [7230]: Version from config: 1.0 -- 09:20:57.700 DEBUG [7230]: Connecting to database... -- 09:20:57.700 DEBUG [7230]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:20:57.700 SQL [7230]: pgsql_db_connect() -- 09:20:57.701 INFO [7571]: COREGRADE is starting... -- 09:20:57.701 INFO [7571]: Version from config: 1.0 -- 09:20:57.701 DEBUG [7571]: Connecting to database... -- 09:20:57.701 DEBUG [7571]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:20:57.701 SQL [7571]: pgsql_db_connect() -- 09:20:57.704 DEBUG [7230]: Database connection successful -- 09:20:57.704 INFO [7230]: _SERVER found -- 09:20:57.704 INFO [7230]: REMOTE_ADDR = 192.168.1.13 -- 09:20:57.704 INFO [7230]: SERVER_NAME = oameye.works.coregrade.com -- 09:20:57.704 INFO [7230]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vrthiv5dk86ojb4udsh3ppnt3qglt0ne -- 09:20:57.704 INFO [7230]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:20:57.704 INFO [7230]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:20:57.717 INFO [7230]: COREGRADE is stopping... -- 09:20:57.717 DEBUG [7230]: Closing database connection -- 09:20:57.717 SQL [7230]: pgsql_close() -- 09:20:57.705 DEBUG [7571]: Database connection successful -- 09:20:57.705 INFO [7571]: _SERVER found -- 09:20:57.705 INFO [7571]: REMOTE_ADDR = 192.168.1.13 -- 09:20:57.705 INFO [7571]: SERVER_NAME = oameye.works.coregrade.com -- 09:20:57.705 INFO [7571]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=vrthiv5dk86ojb4udsh3ppnt3qglt0ne -- 09:20:57.705 INFO [7571]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:20:57.705 INFO [7571]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:20:57.720 INFO [7571]: COREGRADE is stopping... -- 09:20:57.720 DEBUG [7571]: Closing database connection -- 09:20:57.720 SQL [7571]: pgsql_close() -- 14:46:40.281 INFO [7231]: COREGRADE is starting... -- 14:46:40.281 INFO [7231]: Version from config: 1.0 -- 14:46:40.281 DEBUG [7231]: Connecting to database... -- 14:46:40.281 DEBUG [7231]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:46:40.281 SQL [7231]: pgsql_db_connect() -- 14:46:40.286 DEBUG [7231]: Database connection successful -- 14:46:40.286 INFO [7231]: _SERVER found -- 14:46:40.286 INFO [7231]: REMOTE_ADDR = 192.168.1.13 -- 14:46:40.286 INFO [7231]: SERVER_NAME = oameye.works.coregrade.com -- 14:46:40.286 INFO [7231]: QUERY_STRING = -- 14:46:40.286 INFO [7231]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 14:46:40.336 INFO [7231]: COREGRADE is stopping... -- 14:46:40.336 DEBUG [7231]: Closing database connection -- 14:46:40.336 SQL [7231]: pgsql_close() -- 08:57:54.351 INFO [7232]: COREGRADE is starting... -- 08:57:54.352 INFO [7232]: Version from config: 1.0 -- 08:57:54.352 DEBUG [7232]: Connecting to database... -- 08:57:54.352 DEBUG [7232]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:57:54.352 SQL [7232]: pgsql_db_connect() -- 08:57:54.357 DEBUG [7232]: Database connection successful -- 08:57:54.357 INFO [7232]: _SERVER found -- 08:57:54.357 INFO [7232]: REMOTE_ADDR = 192.168.1.13 -- 08:57:54.357 INFO [7232]: SERVER_NAME = oameye.works.coregrade.com -- 08:57:54.357 INFO [7232]: QUERY_STRING = -- 08:57:54.357 INFO [7232]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 08:57:54.400 INFO [7232]: COREGRADE is stopping... -- 08:57:54.400 DEBUG [7232]: Closing database connection -- 08:57:54.400 SQL [7232]: pgsql_close() -- 19:23:36.997 INFO [7486]: COREGRADE is starting... -- 19:23:36.997 INFO [7486]: Version from config: 1.0 -- 19:23:36.997 DEBUG [7486]: Connecting to database... -- 19:23:36.997 DEBUG [7486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:23:36.997 SQL [7486]: pgsql_db_connect() -- 19:23:37.003 DEBUG [7486]: Database connection successful -- 19:23:37.003 INFO [7486]: _SERVER found -- 19:23:37.003 INFO [7486]: REMOTE_ADDR = 192.168.1.13 -- 19:23:37.003 INFO [7486]: SERVER_NAME = oameye.works.coregrade.com -- 19:23:37.003 INFO [7486]: QUERY_STRING = -- 19:23:37.003 INFO [7486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:23:37.042 INFO [7486]: COREGRADE is stopping... -- 19:23:37.042 DEBUG [7486]: Closing database connection -- 19:23:37.042 SQL [7486]: pgsql_close() -- 19:23:38.180 INFO [7230]: COREGRADE is starting... -- 19:23:38.181 INFO [7230]: Version from config: 1.0 -- 19:23:38.181 DEBUG [7230]: Connecting to database... -- 19:23:38.181 DEBUG [7230]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:23:38.181 SQL [7230]: pgsql_db_connect() -- 19:23:38.185 DEBUG [7230]: Database connection successful -- 19:23:38.185 INFO [7230]: _SERVER found -- 19:23:38.185 INFO [7230]: REMOTE_ADDR = 192.168.1.13 -- 19:23:38.185 INFO [7230]: SERVER_NAME = oameye.works.coregrade.com -- 19:23:38.185 INFO [7230]: HTTP_COOKIE = ci_session=pr0m79i8p0ihr857of2h6jpcea3rba7r -- 19:23:38.185 INFO [7230]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 19:23:38.185 INFO [7230]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:23:38.198 INFO [7230]: COREGRADE is stopping... -- 19:23:38.198 DEBUG [7230]: Closing database connection -- 19:23:38.198 SQL [7230]: pgsql_close() -- 19:23:38.206 INFO [7486]: COREGRADE is starting... -- 19:23:38.207 INFO [7486]: Version from config: 1.0 -- 19:23:38.207 DEBUG [7486]: Connecting to database... -- 19:23:38.207 DEBUG [7486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:23:38.207 SQL [7486]: pgsql_db_connect() -- 19:23:38.211 DEBUG [7486]: Database connection successful -- 19:23:38.211 INFO [7486]: _SERVER found -- 19:23:38.211 INFO [7486]: REMOTE_ADDR = 192.168.1.13 -- 19:23:38.211 INFO [7486]: SERVER_NAME = oameye.works.coregrade.com -- 19:23:38.211 INFO [7486]: HTTP_COOKIE = ci_session=pr0m79i8p0ihr857of2h6jpcea3rba7r -- 19:23:38.211 INFO [7486]: QUERY_STRING = /assets/img/footer_1.jpg -- 19:23:38.211 INFO [7486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:23:38.222 INFO [7486]: COREGRADE is stopping... -- 19:23:38.222 DEBUG [7486]: Closing database connection -- 19:23:38.222 SQL [7486]: pgsql_close() -- 19:23:44.431 INFO [7571]: COREGRADE is starting... -- 19:23:44.432 INFO [7571]: Version from config: 1.0 -- 19:23:44.432 DEBUG [7571]: Connecting to database... -- 19:23:44.432 DEBUG [7571]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:23:44.432 SQL [7571]: pgsql_db_connect() -- 19:23:44.436 DEBUG [7571]: Database connection successful -- 19:23:44.436 INFO [7571]: _SERVER found -- 19:23:44.436 INFO [7571]: REMOTE_ADDR = 192.168.1.13 -- 19:23:44.436 INFO [7571]: SERVER_NAME = oameye.works.coregrade.com -- 19:23:44.436 INFO [7571]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.2052894695.1585610624; ci_session=pr0m79i8p0ihr857of2h6jpcea3rba7r -- 19:23:44.436 INFO [7571]: QUERY_STRING = /welcome/viewLogin -- 19:23:44.436 INFO [7571]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:23:44.471 INFO [7571]: COREGRADE is stopping... -- 19:23:44.471 DEBUG [7571]: Closing database connection -- 19:23:44.471 SQL [7571]: pgsql_close() -- 19:23:44.475 INFO [7231]: COREGRADE is starting... -- 19:23:44.475 INFO [7231]: Version from config: 1.0 -- 19:23:44.475 DEBUG [7231]: Connecting to database... -- 19:23:44.475 DEBUG [7231]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:23:44.475 SQL [7231]: pgsql_db_connect() -- 19:23:44.479 DEBUG [7231]: Database connection successful -- 19:23:44.479 INFO [7231]: _SERVER found -- 19:23:44.479 INFO [7231]: REMOTE_ADDR = 192.168.1.13 -- 19:23:44.479 INFO [7231]: SERVER_NAME = oameye.works.coregrade.com -- 19:23:44.479 INFO [7231]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.2052894695.1585610624; ci_session=pr0m79i8p0ihr857of2h6jpcea3rba7r -- 19:23:44.479 INFO [7231]: QUERY_STRING = /auth -- 19:23:44.479 INFO [7231]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:23:44.515 INFO [7231]: COREGRADE is stopping... -- 19:23:44.515 DEBUG [7231]: Closing database connection -- 19:23:44.515 SQL [7231]: pgsql_close() -- 19:23:44.763 INFO [7231]: COREGRADE is starting... -- 19:23:44.764 INFO [7231]: Version from config: 1.0 -- 19:23:44.764 DEBUG [7231]: Connecting to database... -- 19:23:44.764 DEBUG [7231]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:23:44.764 SQL [7231]: pgsql_db_connect() -- 19:23:44.768 DEBUG [7231]: Database connection successful -- 19:23:44.768 INFO [7231]: _SERVER found -- 19:23:44.768 INFO [7231]: REMOTE_ADDR = 192.168.1.13 -- 19:23:44.768 INFO [7231]: SERVER_NAME = oameye.works.coregrade.com -- 19:23:44.768 INFO [7231]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.2052894695.1585610624; ci_session=pr0m79i8p0ihr857of2h6jpcea3rba7r -- 19:23:44.768 INFO [7231]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 19:23:44.768 INFO [7231]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:23:44.779 INFO [7231]: COREGRADE is stopping... -- 19:23:44.779 DEBUG [7231]: Closing database connection -- 19:23:44.779 SQL [7231]: pgsql_close() -- 19:23:52.457 INFO [17456]: COREGRADE is starting... -- 19:23:52.458 INFO [17456]: Version from config: 1.0 -- 19:23:52.458 DEBUG [17456]: Connecting to database... -- 19:23:52.458 DEBUG [17456]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:23:52.458 SQL [17456]: pgsql_db_connect() -- 19:23:52.499 INFO [17456]: COREGRADE is starting... -- 19:23:52.500 INFO [17456]: Version from config: 1.0 -- 19:23:52.500 DEBUG [17456]: Connecting to database... -- 19:23:52.500 DEBUG [17456]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:23:52.500 SQL [17456]: pgsql_db_connect() -- 19:23:52.504 DEBUG [17456]: Database connection successful -- 19:23:52.504 INFO [17456]: _SERVER found -- 19:23:52.504 INFO [17456]: REMOTE_ADDR = 192.168.1.13 -- 19:23:52.504 INFO [17456]: SERVER_NAME = oameye.works.coregrade.com -- 19:23:52.504 INFO [17456]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.2052894695.1585610624; ci_session=pr0m79i8p0ihr857of2h6jpcea3rba7r -- 19:23:52.504 INFO [17456]: QUERY_STRING = -- 19:23:52.504 INFO [17456]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:23:52.504 INFO [17456]: SystemStatus()09-09-********~************ -- 19:23:52.504 INFO [17456]: long coregrade_api_main(CVars in, CVars &out) -- 19:23:52.504 INFO [17456]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 19:23:52.504 INFO [17456]: account calls -- 19:23:52.504 INFO [17456]: account_calls() -- 19:23:52.504 INFO [17456]: LoginCoreGradeAccount() -- 19:23:52.504 FLOG_MAX [17456]: REQ_STRING(username) -- 19:23:52.504 FLOG_MAX [17456]: REQ_STRING(password) -- 19:23:52.504 FLOG_MAX [17456]: REQ_STRING(sessionid) -- 19:23:52.504 FLOG_MAX [17456]: long load_db_record( CVars &rec, const char * query, ... ) -- 19:23:52.504 SQL [17456]: pgsql_query() -- 19:23:52.504 SQL [17456]: About to run query: -- 19:23:52.504 SQL [17456]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 19:23:52.508 SQL [17456]: Found rows: 1 -- 19:23:52.508 FLOG_MAX [17456]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 19:23:52.508 INFO [17456]: long SessionCheck(long uid, const char *sessionid, int create ) -- 19:23:52.508 SQL [17456]: pgsql_exec() -- 19:23:52.508 SQL [17456]: About to run query: -- 19:23:52.508 SQL [17456]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 19:23:52.509 SQL [17456]: PQcmdTuples: 1 -- 19:23:52.509 SQL [17456]: Affected rows: 1 -- 19:23:52.509 SQL [17456]: pgsql_exec() -- 19:23:52.509 SQL [17456]: About to run query: -- 19:23:52.509 SQL [17456]: DELETE FROM members_session WHERE member_id=5 -- 19:23:52.509 SQL [17456]: PQcmdTuples: 0 -- 19:23:52.509 SQL [17456]: Affected rows: 0 -- 19:23:52.509 SQL [17456]: pgsql_query() -- 19:23:52.509 SQL [17456]: About to run query: -- 19:23:52.509 SQL [17456]: SELECT * FROM members_session WHERE member_id=5 AND session<>'D05979276E8770F084665A051C258715' -- 19:23:52.510 SQL [17456]: Found rows: 0 -- 19:23:52.510 SQL [17456]: Found rows: 0 -- 19:23:52.510 FLOG_MAX [17456]: long load_db_record( CVars &rec, const char * query, ... ) -- 19:23:52.510 SQL [17456]: pgsql_query() -- 19:23:52.511 SQL [17456]: About to run query: -- 19:23:52.511 SQL [17456]: SELECT * FROM members_session WHERE member_id=5 AND session='D05979276E8770F084665A051C258715' -- 19:23:52.511 SQL [17456]: Found rows: 0 -- 19:23:52.511 SQL [17456]: Found rows: 0 -- 19:23:52.511 FLOG_MAX [17456]: insert_db_record() -- 19:23:52.511 SQL [17456]: pgsql_exec() -- 19:23:52.511 SQL [17456]: About to run query: -- 19:23:52.511 SQL [17456]: INSERT INTO members_session (member_id,session) VALUES ('5','D05979276E8770F084665A051C258715') -- 19:23:52.512 SQL [17456]: PQcmdTuples: 1 -- 19:23:52.513 SQL [17456]: Affected rows: 1 -- 19:23:52.513 FLOG_MAX [17456]: SELECT currval('members_session_id_seq') -- 19:23:52.513 SQL [17456]: pgsql_query() -- 19:23:52.513 SQL [17456]: About to run query: -- 19:23:52.513 SQL [17456]: SELECT currval('members_session_id_seq') -- 19:23:52.513 SQL [17456]: Found rows: 1 -- 19:23:52.513 INFO [17456]: CreateDefaultPage() -- 19:23:52.513 FLOG_MAX [17456]: long load_db_record( CVars &rec, const char * query, ... ) -- 19:23:52.513 SQL [17456]: pgsql_query() -- 19:23:52.513 SQL [17456]: About to run query: -- 19:23:52.513 SQL [17456]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 19:23:52.513 SQL [17456]: Found rows: 1 -- 19:23:52.513 FLOG_MAX [17456]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 19:23:52.513 SQL [17456]: pgsql_query() -- 19:23:52.513 SQL [17456]: About to run query: -- 19:23:52.513 SQL [17456]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 19:23:52.514 SQL [17456]: Found rows: 1 -- 19:23:52.514 INFO [17456]: /CreateDefaultPage() -- 19:23:52.514 INFO [17456]: /LoginCoreGradeAccount() -- 19:23:52.514 INFO [17456]: RET: added=2020-02-05 06:47:23.982154 -- 19:23:52.514 INFO [17456]: RET: email=ameye+11@chiefsoft.com -- 19:23:52.514 INFO [17456]: RET: firstname=Olu -- 19:23:52.514 INFO [17456]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 19:23:52.514 INFO [17456]: RET: id=5 -- 19:23:52.514 INFO [17456]: RET: last_login= -- 19:23:52.514 INFO [17456]: RET: lastname=Amey -- 19:23:52.514 INFO [17456]: RET: loc=192.168.1.13 -- 19:23:52.514 INFO [17456]: RET: member_id=5 -- 19:23:52.514 INFO [17456]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 19:23:52.514 INFO [17456]: RET: phone= -- 19:23:52.514 INFO [17456]: RET: pid= -- 19:23:52.514 INFO [17456]: RET: result=YES I GET TO BACK END -- 19:23:52.514 INFO [17456]: RET: sessionid=D05979276E8770F084665A051C258715 -- 19:23:52.514 INFO [17456]: RET: status=1 -- 19:23:52.514 INFO [17456]: RET: stauts=OK -- 19:23:52.514 INFO [17456]: RET: username=ameye+11@chiefsoft.com -- 19:23:52.514 INFO [17456]: RET: verified= -- 19:23:52.515 INFO [17456]: COREGRADE is stopping... -- 19:23:52.515 DEBUG [17456]: Closing database connection -- 19:23:52.515 SQL [17456]: pgsql_close() -- 19:23:52.462 DEBUG [17456]: Database connection successful -- 19:23:52.462 INFO [17456]: _SERVER found -- 19:23:52.462 INFO [17456]: REMOTE_ADDR = 192.168.1.13 -- 19:23:52.462 INFO [17456]: SERVER_NAME = oameye.works.coregrade.com -- 19:23:52.462 INFO [17456]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.2052894695.1585610624; ci_session=pr0m79i8p0ihr857of2h6jpcea3rba7r -- 19:23:52.462 INFO [17456]: QUERY_STRING = /auth -- 19:23:52.462 INFO [17456]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:23:52.516 INFO [17456]: COREGRADE is stopping... -- 19:23:52.516 DEBUG [17456]: Closing database connection -- 19:23:52.516 SQL [17456]: pgsql_close() -- 19:23:52.533 INFO [17456]: COREGRADE is starting... -- 19:23:52.533 INFO [17456]: Version from config: 1.0 -- 19:23:52.533 DEBUG [17456]: Connecting to database... -- 19:23:52.533 DEBUG [17456]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:23:52.533 SQL [17456]: pgsql_db_connect() -- 19:23:52.537 DEBUG [17456]: Database connection successful -- 19:23:52.537 INFO [17456]: _SERVER found -- 19:23:52.537 INFO [17456]: REMOTE_ADDR = 192.168.1.13 -- 19:23:52.537 INFO [17456]: SERVER_NAME = oameye.works.coregrade.com -- 19:23:52.537 INFO [17456]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.2052894695.1585610624; ci_session=pr0m79i8p0ihr857of2h6jpcea3rba7r -- 19:23:52.537 INFO [17456]: QUERY_STRING = /member/index -- 19:23:52.537 INFO [17456]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:23:52.578 INFO [17456]: COREGRADE is stopping... -- 19:23:52.578 DEBUG [17456]: Closing database connection -- 19:23:52.578 SQL [17456]: pgsql_close() -- 19:23:53.221 INFO [17456]: COREGRADE is starting... -- 19:23:53.222 INFO [17456]: Version from config: 1.0 -- 19:23:53.222 DEBUG [17456]: Connecting to database... -- 19:23:53.222 DEBUG [17456]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:23:53.222 SQL [17456]: pgsql_db_connect() -- 19:23:53.226 DEBUG [17456]: Database connection successful -- 19:23:53.226 INFO [17456]: _SERVER found -- 19:23:53.226 INFO [17456]: REMOTE_ADDR = 192.168.1.13 -- 19:23:53.226 INFO [17456]: SERVER_NAME = oameye.works.coregrade.com -- 19:23:53.226 INFO [17456]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.2052894695.1585610624; ci_session=pr0m79i8p0ihr857of2h6jpcea3rba7r -- 19:23:53.226 INFO [17456]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:23:53.226 INFO [17456]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:23:53.237 INFO [17456]: COREGRADE is stopping... -- 19:23:53.237 DEBUG [17456]: Closing database connection -- 19:23:53.237 SQL [17456]: pgsql_close() -- 19:24:36.880 INFO [7228]: COREGRADE is starting... -- 19:24:36.881 INFO [7228]: Version from config: 1.0 -- 19:24:36.881 DEBUG [7228]: Connecting to database... -- 19:24:36.881 DEBUG [7228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:24:36.881 SQL [7228]: pgsql_db_connect() -- 19:24:36.885 DEBUG [7228]: Database connection successful -- 19:24:36.885 INFO [7228]: _SERVER found -- 19:24:36.885 INFO [7228]: REMOTE_ADDR = 192.168.1.13 -- 19:24:36.885 INFO [7228]: SERVER_NAME = oameye.works.coregrade.com -- 19:24:36.885 INFO [7228]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.2052894695.1585610624; ci_session=pr0m79i8p0ihr857of2h6jpcea3rba7r -- 19:24:36.885 INFO [7228]: QUERY_STRING = /member/page -- 19:24:36.885 INFO [7228]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:24:36.929 INFO [7228]: COREGRADE is stopping... -- 19:24:36.929 DEBUG [7228]: Closing database connection -- 19:24:36.929 SQL [7228]: pgsql_close() -- 19:24:37.208 INFO [7228]: COREGRADE is starting... -- 19:24:37.208 INFO [7228]: Version from config: 1.0 -- 19:24:37.208 DEBUG [7228]: Connecting to database... -- 19:24:37.208 DEBUG [7228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:24:37.208 SQL [7228]: pgsql_db_connect() -- 19:24:37.212 DEBUG [7228]: Database connection successful -- 19:24:37.212 INFO [7228]: _SERVER found -- 19:24:37.212 INFO [7228]: REMOTE_ADDR = 192.168.1.13 -- 19:24:37.212 INFO [7228]: SERVER_NAME = oameye.works.coregrade.com -- 19:24:37.212 INFO [7228]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.2052894695.1585610624; ci_session=pr0m79i8p0ihr857of2h6jpcea3rba7r -- 19:24:37.212 INFO [7228]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:24:37.212 INFO [7228]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:24:37.223 INFO [7228]: COREGRADE is stopping... -- 19:24:37.223 DEBUG [7228]: Closing database connection -- 19:24:37.223 SQL [7228]: pgsql_close() -- 19:25:48.569 INFO [8707]: COREGRADE is starting... -- 19:25:48.569 INFO [8707]: Version from config: 1.0 -- 19:25:48.569 DEBUG [8707]: Connecting to database... -- 19:25:48.569 DEBUG [8707]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:25:48.569 SQL [8707]: pgsql_db_connect() -- 19:25:48.573 DEBUG [8707]: Database connection successful -- 19:25:48.573 INFO [8707]: _SERVER found -- 19:25:48.573 INFO [8707]: REMOTE_ADDR = 192.168.1.13 -- 19:25:48.573 INFO [8707]: SERVER_NAME = oameye.works.coregrade.com -- 19:25:48.573 INFO [8707]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.2052894695.1585610624; ci_session=pr0m79i8p0ihr857of2h6jpcea3rba7r -- 19:25:48.573 INFO [8707]: QUERY_STRING = /member -- 19:25:48.573 INFO [8707]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:25:48.620 INFO [8707]: COREGRADE is stopping... -- 19:25:48.620 DEBUG [8707]: Closing database connection -- 19:25:48.620 SQL [8707]: pgsql_close() -- 19:25:48.767 INFO [8707]: COREGRADE is starting... -- 19:25:48.768 INFO [8707]: Version from config: 1.0 -- 19:25:48.768 DEBUG [8707]: Connecting to database... -- 19:25:48.768 DEBUG [8707]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:25:48.768 SQL [8707]: pgsql_db_connect() -- 19:25:48.771 DEBUG [8707]: Database connection successful -- 19:25:48.771 INFO [8707]: _SERVER found -- 19:25:48.771 INFO [8707]: REMOTE_ADDR = 192.168.1.13 -- 19:25:48.771 INFO [8707]: SERVER_NAME = oameye.works.coregrade.com -- 19:25:48.771 INFO [8707]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.2052894695.1585610624; ci_session=pr0m79i8p0ihr857of2h6jpcea3rba7r -- 19:25:48.771 INFO [8707]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:25:48.771 INFO [8707]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:25:48.783 INFO [8707]: COREGRADE is stopping... -- 19:25:48.783 DEBUG [8707]: Closing database connection -- 19:25:48.783 SQL [8707]: pgsql_close() -- 19:26:00.397 INFO [8704]: COREGRADE is starting... -- 19:26:00.398 INFO [8704]: Version from config: 1.0 -- 19:26:00.398 DEBUG [8704]: Connecting to database... -- 19:26:00.398 DEBUG [8704]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:26:00.398 SQL [8704]: pgsql_db_connect() -- 19:26:00.402 DEBUG [8704]: Database connection successful -- 19:26:00.402 INFO [8704]: _SERVER found -- 19:26:00.402 INFO [8704]: REMOTE_ADDR = 192.168.1.13 -- 19:26:00.402 INFO [8704]: SERVER_NAME = oameye.works.coregrade.com -- 19:26:00.402 INFO [8704]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.2052894695.1585610624; ci_session=pr0m79i8p0ihr857of2h6jpcea3rba7r -- 19:26:00.402 INFO [8704]: QUERY_STRING = -- 19:26:00.402 INFO [8704]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:26:00.445 INFO [8704]: COREGRADE is stopping... -- 19:26:00.445 DEBUG [8704]: Closing database connection -- 19:26:00.445 SQL [8704]: pgsql_close() -- 19:26:00.548 INFO [8704]: COREGRADE is starting... -- 19:26:00.548 INFO [8704]: Version from config: 1.0 -- 19:26:00.548 DEBUG [8704]: Connecting to database... -- 19:26:00.548 DEBUG [8704]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:26:00.548 SQL [8704]: pgsql_db_connect() -- 19:26:00.552 DEBUG [8704]: Database connection successful -- 19:26:00.552 INFO [8704]: _SERVER found -- 19:26:00.552 INFO [8704]: REMOTE_ADDR = 192.168.1.13 -- 19:26:00.552 INFO [8704]: SERVER_NAME = oameye.works.coregrade.com -- 19:26:00.552 INFO [8704]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.2052894695.1585610624; ci_session=pr0m79i8p0ihr857of2h6jpcea3rba7r -- 19:26:00.552 INFO [8704]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 19:26:00.552 INFO [8704]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:26:00.564 INFO [8704]: COREGRADE is stopping... -- 19:26:00.564 DEBUG [8704]: Closing database connection -- 19:26:00.564 SQL [8704]: pgsql_close() -- 19:26:00.569 INFO [17456]: COREGRADE is starting... -- 19:26:00.569 INFO [17456]: Version from config: 1.0 -- 19:26:00.569 DEBUG [17456]: Connecting to database... -- 19:26:00.569 DEBUG [17456]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:26:00.569 SQL [17456]: pgsql_db_connect() -- 19:26:00.573 DEBUG [17456]: Database connection successful -- 19:26:00.573 INFO [17456]: _SERVER found -- 19:26:00.573 INFO [17456]: REMOTE_ADDR = 192.168.1.13 -- 19:26:00.573 INFO [17456]: SERVER_NAME = oameye.works.coregrade.com -- 19:26:00.573 INFO [17456]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.2052894695.1585610624; ci_session=pr0m79i8p0ihr857of2h6jpcea3rba7r -- 19:26:00.573 INFO [17456]: QUERY_STRING = /assets/img/footer_1.jpg -- 19:26:00.573 INFO [17456]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:26:00.584 INFO [17456]: COREGRADE is stopping... -- 19:26:00.584 DEBUG [17456]: Closing database connection -- 19:26:00.584 SQL [17456]: pgsql_close() -- 19:38:32.863 INFO [7228]: COREGRADE is starting... -- 19:38:32.863 INFO [7228]: Version from config: 1.0 -- 19:38:32.863 DEBUG [7228]: Connecting to database... -- 19:38:32.863 DEBUG [7228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:38:32.863 SQL [7228]: pgsql_db_connect() -- 19:38:32.868 DEBUG [7228]: Database connection successful -- 19:38:32.868 INFO [7228]: _SERVER found -- 19:38:32.868 INFO [7228]: REMOTE_ADDR = 192.168.1.13 -- 19:38:32.868 INFO [7228]: SERVER_NAME = oameye.works.coregrade.com -- 19:38:32.868 INFO [7228]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.2052894695.1585610624; ci_session=pr0m79i8p0ihr857of2h6jpcea3rba7r -- 19:38:32.868 INFO [7228]: QUERY_STRING = -- 19:38:32.868 INFO [7228]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:38:32.902 INFO [7228]: COREGRADE is stopping... -- 19:38:32.902 DEBUG [7228]: Closing database connection -- 19:38:32.902 SQL [7228]: pgsql_close() -- 19:38:33.069 INFO [7228]: COREGRADE is starting... -- 19:38:33.069 INFO [7228]: Version from config: 1.0 -- 19:38:33.069 DEBUG [7228]: Connecting to database... -- 19:38:33.069 DEBUG [7228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:38:33.069 SQL [7228]: pgsql_db_connect() -- 19:38:33.073 DEBUG [7228]: Database connection successful -- 19:38:33.073 INFO [7228]: _SERVER found -- 19:38:33.073 INFO [7228]: REMOTE_ADDR = 192.168.1.13 -- 19:38:33.073 INFO [7228]: SERVER_NAME = oameye.works.coregrade.com -- 19:38:33.073 INFO [7228]: HTTP_COOKIE = ci_session=l34vchlann0l2kclt4omprc8j7ljs46f; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.2052894695.1585610624 -- 19:38:33.073 INFO [7228]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 19:38:33.073 INFO [7228]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:38:33.084 INFO [7228]: COREGRADE is stopping... -- 19:38:33.084 DEBUG [7228]: Closing database connection -- 19:38:33.084 SQL [7228]: pgsql_close() -- 19:38:33.094 INFO [7229]: COREGRADE is starting... -- 19:38:33.095 INFO [7229]: Version from config: 1.0 -- 19:38:33.095 DEBUG [7229]: Connecting to database... -- 19:38:33.095 DEBUG [7229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:38:33.095 SQL [7229]: pgsql_db_connect() -- 19:38:33.098 DEBUG [7229]: Database connection successful -- 19:38:33.098 INFO [7229]: _SERVER found -- 19:38:33.098 INFO [7229]: REMOTE_ADDR = 192.168.1.13 -- 19:38:33.098 INFO [7229]: SERVER_NAME = oameye.works.coregrade.com -- 19:38:33.098 INFO [7229]: HTTP_COOKIE = ci_session=l34vchlann0l2kclt4omprc8j7ljs46f; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.2052894695.1585610624 -- 19:38:33.098 INFO [7229]: QUERY_STRING = /assets/img/footer_1.jpg -- 19:38:33.098 INFO [7229]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:38:33.111 INFO [7229]: COREGRADE is stopping... -- 19:38:33.111 DEBUG [7229]: Closing database connection -- 19:38:33.111 SQL [7229]: pgsql_close() -- 19:39:02.591 INFO [7486]: COREGRADE is starting... -- 19:39:02.591 INFO [7486]: Version from config: 1.0 -- 19:39:02.591 DEBUG [7486]: Connecting to database... -- 19:39:02.591 DEBUG [7486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:39:02.591 SQL [7486]: pgsql_db_connect() -- 19:39:02.613 INFO [7230]: COREGRADE is starting... -- 19:39:02.613 INFO [7230]: Version from config: 1.0 -- 19:39:02.613 DEBUG [7230]: Connecting to database... -- 19:39:02.613 DEBUG [7230]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:39:02.613 SQL [7230]: pgsql_db_connect() -- 19:39:02.595 DEBUG [7486]: Database connection successful -- 19:39:02.595 INFO [7486]: _SERVER found -- 19:39:02.595 INFO [7486]: REMOTE_ADDR = 192.168.1.13 -- 19:39:02.595 INFO [7486]: SERVER_NAME = oameye.works.coregrade.com -- 19:39:02.595 INFO [7486]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.2052894695.1585610624; ci_session=l34vchlann0l2kclt4omprc8j7ljs46f -- 19:39:02.595 INFO [7486]: QUERY_STRING = -- 19:39:02.595 INFO [7486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:39:02.628 INFO [7486]: COREGRADE is stopping... -- 19:39:02.628 DEBUG [7486]: Closing database connection -- 19:39:02.628 SQL [7486]: pgsql_close() -- 19:39:02.617 DEBUG [7230]: Database connection successful -- 19:39:02.617 INFO [7230]: _SERVER found -- 19:39:02.617 INFO [7230]: REMOTE_ADDR = 192.168.1.13 -- 19:39:02.617 INFO [7230]: SERVER_NAME = oameye.works.coregrade.com -- 19:39:02.617 INFO [7230]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.2052894695.1585610624; ci_session=l34vchlann0l2kclt4omprc8j7ljs46f -- 19:39:02.617 INFO [7230]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 19:39:02.617 INFO [7230]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:39:02.630 INFO [7230]: COREGRADE is stopping... -- 19:39:02.630 DEBUG [7230]: Closing database connection -- 19:39:02.630 SQL [7230]: pgsql_close() -- 19:39:02.631 INFO [7231]: COREGRADE is starting... -- 19:39:02.632 INFO [7231]: Version from config: 1.0 -- 19:39:02.632 DEBUG [7231]: Connecting to database... -- 19:39:02.632 DEBUG [7231]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:39:02.632 SQL [7231]: pgsql_db_connect() -- 19:39:02.636 DEBUG [7231]: Database connection successful -- 19:39:02.636 INFO [7231]: _SERVER found -- 19:39:02.636 INFO [7231]: REMOTE_ADDR = 192.168.1.13 -- 19:39:02.636 INFO [7231]: SERVER_NAME = oameye.works.coregrade.com -- 19:39:02.636 INFO [7231]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.2052894695.1585610624; ci_session=l34vchlann0l2kclt4omprc8j7ljs46f -- 19:39:02.636 INFO [7231]: QUERY_STRING = /assets/img/footer_1.jpg -- 19:39:02.636 INFO [7231]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:39:02.648 INFO [7231]: COREGRADE is stopping... -- 19:39:02.648 DEBUG [7231]: Closing database connection -- 19:39:02.648 SQL [7231]: pgsql_close() -- 19:39:12.031 INFO [7232]: COREGRADE is starting... -- 19:39:12.031 INFO [7232]: Version from config: 1.0 -- 19:39:12.031 DEBUG [7232]: Connecting to database... -- 19:39:12.031 DEBUG [7232]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:39:12.031 SQL [7232]: pgsql_db_connect() -- 19:39:12.037 INFO [7571]: COREGRADE is starting... -- 19:39:12.037 INFO [7571]: Version from config: 1.0 -- 19:39:12.037 DEBUG [7571]: Connecting to database... -- 19:39:12.037 DEBUG [7571]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:39:12.037 SQL [7571]: pgsql_db_connect() -- 19:39:12.047 INFO [8707]: COREGRADE is starting... -- 19:39:12.048 INFO [8707]: Version from config: 1.0 -- 19:39:12.048 DEBUG [8707]: Connecting to database... -- 19:39:12.048 DEBUG [8707]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:39:12.048 SQL [8707]: pgsql_db_connect() -- 19:39:12.041 DEBUG [7571]: Database connection successful -- 19:39:12.041 INFO [7571]: _SERVER found -- 19:39:12.041 INFO [7571]: REMOTE_ADDR = 192.168.1.13 -- 19:39:12.041 INFO [7571]: SERVER_NAME = oameye.works.coregrade.com -- 19:39:12.041 INFO [7571]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.2052894695.1585610624; _gat_gtag_UA_54829827_2=1; ci_session=l34vchlann0l2kclt4omprc8j7ljs46f -- 19:39:12.041 INFO [7571]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 19:39:12.041 INFO [7571]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:39:12.053 INFO [7571]: COREGRADE is stopping... -- 19:39:12.053 DEBUG [7571]: Closing database connection -- 19:39:12.053 SQL [7571]: pgsql_close() -- 19:39:12.051 DEBUG [8707]: Database connection successful -- 19:39:12.051 INFO [8707]: _SERVER found -- 19:39:12.051 INFO [8707]: REMOTE_ADDR = 192.168.1.13 -- 19:39:12.051 INFO [8707]: SERVER_NAME = oameye.works.coregrade.com -- 19:39:12.051 INFO [8707]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.2052894695.1585610624; _gat_gtag_UA_54829827_2=1; ci_session=l34vchlann0l2kclt4omprc8j7ljs46f -- 19:39:12.051 INFO [8707]: QUERY_STRING = /assets/img/footer_1.jpg -- 19:39:12.051 INFO [8707]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:39:12.063 INFO [8707]: COREGRADE is stopping... -- 19:39:12.063 DEBUG [8707]: Closing database connection -- 19:39:12.063 SQL [8707]: pgsql_close() -- 19:39:12.035 DEBUG [7232]: Database connection successful -- 19:39:12.035 INFO [7232]: _SERVER found -- 19:39:12.035 INFO [7232]: REMOTE_ADDR = 192.168.1.13 -- 19:39:12.035 INFO [7232]: SERVER_NAME = oameye.works.coregrade.com -- 19:39:12.035 INFO [7232]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.2052894695.1585610624; _gat_gtag_UA_54829827_2=1; ci_session=l34vchlann0l2kclt4omprc8j7ljs46f -- 19:39:12.035 INFO [7232]: QUERY_STRING = -- 19:39:12.035 INFO [7232]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:39:12.069 INFO [7232]: COREGRADE is stopping... -- 19:39:12.069 DEBUG [7232]: Closing database connection -- 19:39:12.069 SQL [7232]: pgsql_close() -- 10:29:17.065 INFO [8704]: COREGRADE is starting... -- 10:29:17.065 INFO [8704]: Version from config: 1.0 -- 10:29:17.065 DEBUG [8704]: Connecting to database... -- 10:29:17.065 DEBUG [8704]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:17.065 SQL [8704]: pgsql_db_connect() -- 10:29:17.071 DEBUG [8704]: Database connection successful -- 10:29:17.071 INFO [8704]: _SERVER found -- 10:29:17.071 INFO [8704]: REMOTE_ADDR = 192.168.1.13 -- 10:29:17.071 INFO [8704]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:17.071 INFO [8704]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.2052894695.1585610624 -- 10:29:17.071 INFO [8704]: QUERY_STRING = /auth -- 10:29:17.071 INFO [8704]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:29:17.110 INFO [8704]: COREGRADE is stopping... -- 10:29:17.110 DEBUG [8704]: Closing database connection -- 10:29:17.110 SQL [8704]: pgsql_close() -- 10:29:17.660 INFO [8704]: COREGRADE is starting... -- 10:29:17.661 INFO [8704]: Version from config: 1.0 -- 10:29:17.661 DEBUG [8704]: Connecting to database... -- 10:29:17.661 DEBUG [8704]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:17.661 SQL [8704]: pgsql_db_connect() -- 10:29:17.665 DEBUG [8704]: Database connection successful -- 10:29:17.665 INFO [8704]: _SERVER found -- 10:29:17.665 INFO [8704]: REMOTE_ADDR = 192.168.1.13 -- 10:29:17.665 INFO [8704]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:17.665 INFO [8704]: HTTP_COOKIE = ci_session=6va0tne28gl4qbkiit923bo6scrhrrq6; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.2052894695.1585610624 -- 10:29:17.665 INFO [8704]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:29:17.665 INFO [8704]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:29:17.676 INFO [8704]: COREGRADE is stopping... -- 10:29:17.676 DEBUG [8704]: Closing database connection -- 10:29:17.676 SQL [8704]: pgsql_close() -- 10:48:21.669 INFO [7486]: COREGRADE is starting... -- 10:48:21.669 INFO [7486]: Version from config: 1.0 -- 10:48:21.669 DEBUG [7486]: Connecting to database... -- 10:48:21.669 DEBUG [7486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:48:21.669 SQL [7486]: pgsql_db_connect() -- 10:48:21.674 DEBUG [7486]: Database connection successful -- 10:48:21.674 INFO [7486]: _SERVER found -- 10:48:21.674 INFO [7486]: REMOTE_ADDR = 192.168.1.13 -- 10:48:21.674 INFO [7486]: SERVER_NAME = tokslaw.works.coregrade.com -- 10:48:21.674 INFO [7486]: QUERY_STRING = -- 10:48:21.674 INFO [7486]: HTTP_X_FORWARDED_FOR = 68.183.149.28 -- 10:48:21.710 INFO [7486]: COREGRADE is stopping... -- 10:48:21.710 DEBUG [7486]: Closing database connection -- 10:48:21.710 SQL [7486]: pgsql_close() -- 13:20:03.703 INFO [7230]: COREGRADE is starting... -- 13:20:03.704 INFO [7230]: Version from config: 1.0 -- 13:20:03.704 DEBUG [7230]: Connecting to database... -- 13:20:03.704 DEBUG [7230]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:20:03.704 SQL [7230]: pgsql_db_connect() -- 13:20:03.709 DEBUG [7230]: Database connection successful -- 13:20:03.709 INFO [7230]: _SERVER found -- 13:20:03.709 INFO [7230]: REMOTE_ADDR = 192.168.1.13 -- 13:20:03.709 INFO [7230]: SERVER_NAME = oameye.works.coregrade.com -- 13:20:03.709 INFO [7230]: QUERY_STRING = -- 13:20:03.709 INFO [7230]: HTTP_X_FORWARDED_FOR = 198.50.130.112 -- 13:20:03.753 INFO [7230]: COREGRADE is stopping... -- 13:20:03.753 DEBUG [7230]: Closing database connection -- 13:20:03.753 SQL [7230]: pgsql_close() -- 14:58:29.184 INFO [7231]: COREGRADE is starting... -- 14:58:29.185 INFO [7231]: Version from config: 1.0 -- 14:58:29.185 DEBUG [7231]: Connecting to database... -- 14:58:29.185 DEBUG [7231]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:58:29.185 SQL [7231]: pgsql_db_connect() -- 14:58:29.190 DEBUG [7231]: Database connection successful -- 14:58:29.190 INFO [7231]: _SERVER found -- 14:58:29.190 INFO [7231]: REMOTE_ADDR = 192.168.1.13 -- 14:58:29.190 INFO [7231]: SERVER_NAME = oameye.works.coregrade.com -- 14:58:29.190 INFO [7231]: QUERY_STRING = -- 14:58:29.190 INFO [7231]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 14:58:29.227 INFO [7231]: COREGRADE is stopping... -- 14:58:29.227 DEBUG [7231]: Closing database connection -- 14:58:29.228 SQL [7231]: pgsql_close() -- 15:02:46.929 INFO [7571]: COREGRADE is starting... -- 15:02:46.929 INFO [7571]: Version from config: 1.0 -- 15:02:46.929 DEBUG [7571]: Connecting to database... -- 15:02:46.929 DEBUG [7571]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:02:46.929 SQL [7571]: pgsql_db_connect() -- 15:02:46.933 DEBUG [7571]: Database connection successful -- 15:02:46.933 INFO [7571]: _SERVER found -- 15:02:46.933 INFO [7571]: REMOTE_ADDR = 192.168.1.13 -- 15:02:46.933 INFO [7571]: SERVER_NAME = oameye.works.coregrade.com -- 15:02:46.933 INFO [7571]: QUERY_STRING = -- 15:02:46.933 INFO [7571]: HTTP_X_FORWARDED_FOR = 64.225.5.168 -- 15:02:46.975 INFO [7571]: COREGRADE is stopping... -- 15:02:46.975 DEBUG [7571]: Closing database connection -- 15:02:46.975 SQL [7571]: pgsql_close() -- 16:28:16.249 INFO [7232]: COREGRADE is starting... -- 16:28:16.250 INFO [7232]: Version from config: 1.0 -- 16:28:16.250 DEBUG [7232]: Connecting to database... -- 16:28:16.250 DEBUG [7232]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:28:16.250 SQL [7232]: pgsql_db_connect() -- 16:28:16.254 DEBUG [7232]: Database connection successful -- 16:28:16.254 INFO [7232]: _SERVER found -- 16:28:16.254 INFO [7232]: REMOTE_ADDR = 192.168.1.13 -- 16:28:16.254 INFO [7232]: SERVER_NAME = oameye.works.coregrade.com -- 16:28:16.254 INFO [7232]: QUERY_STRING = /robots.txt -- 16:28:16.254 INFO [7232]: HTTP_X_FORWARDED_FOR = 66.249.65.138 -- 16:28:16.268 INFO [7232]: COREGRADE is stopping... -- 16:28:16.268 DEBUG [7232]: Closing database connection -- 16:28:16.268 SQL [7232]: pgsql_close() -- 16:28:16.428 INFO [7228]: COREGRADE is starting... -- 16:28:16.429 INFO [7228]: Version from config: 1.0 -- 16:28:16.429 DEBUG [7228]: Connecting to database... -- 16:28:16.429 DEBUG [7228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:28:16.429 SQL [7228]: pgsql_db_connect() -- 16:28:16.433 DEBUG [7228]: Database connection successful -- 16:28:16.433 INFO [7228]: _SERVER found -- 16:28:16.433 INFO [7228]: REMOTE_ADDR = 192.168.1.13 -- 16:28:16.433 INFO [7228]: SERVER_NAME = oameye.works.coregrade.com -- 16:28:16.433 INFO [7228]: QUERY_STRING = /home/terms -- 16:28:16.433 INFO [7228]: HTTP_X_FORWARDED_FOR = 66.249.65.136 -- 16:28:16.469 INFO [7228]: COREGRADE is stopping... -- 16:28:16.469 DEBUG [7228]: Closing database connection -- 16:28:16.469 SQL [7228]: pgsql_close() -- 18:48:51.953 INFO [7229]: COREGRADE is starting... -- 18:48:51.954 INFO [7229]: Version from config: 1.0 -- 18:48:51.954 DEBUG [7229]: Connecting to database... -- 18:48:51.954 DEBUG [7229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:51.954 SQL [7229]: pgsql_db_connect() -- 18:48:51.958 DEBUG [7229]: Database connection successful -- 18:48:51.958 INFO [7229]: _SERVER found -- 18:48:51.958 INFO [7229]: REMOTE_ADDR = 192.168.1.13 -- 18:48:51.958 INFO [7229]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:48:51.958 INFO [7229]: QUERY_STRING = -- 18:48:51.958 INFO [7229]: HTTP_X_FORWARDED_FOR = 51.15.247.217 -- 18:48:52.006 INFO [7229]: COREGRADE is stopping... -- 18:48:52.006 DEBUG [7229]: Closing database connection -- 18:48:52.006 SQL [7229]: pgsql_close() -- 20:59:00.652 INFO [17456]: COREGRADE is starting... -- 20:59:00.652 INFO [17456]: Version from config: 1.0 -- 20:59:00.652 DEBUG [17456]: Connecting to database... -- 20:59:00.652 DEBUG [17456]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:59:00.652 SQL [17456]: pgsql_db_connect() -- 20:59:00.657 DEBUG [17456]: Database connection successful -- 20:59:00.657 INFO [17456]: _SERVER found -- 20:59:00.657 INFO [17456]: REMOTE_ADDR = 192.168.1.13 -- 20:59:00.657 INFO [17456]: SERVER_NAME = oameye.works.coregrade.com -- 20:59:00.657 INFO [17456]: QUERY_STRING = -- 20:59:00.657 INFO [17456]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 20:59:00.700 INFO [17456]: COREGRADE is stopping... -- 20:59:00.700 DEBUG [17456]: Closing database connection -- 20:59:00.700 SQL [17456]: pgsql_close() -- 22:22:14.463 INFO [8704]: COREGRADE is starting... -- 22:22:14.463 INFO [8704]: Version from config: 1.0 -- 22:22:14.463 DEBUG [8704]: Connecting to database... -- 22:22:14.463 DEBUG [8704]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:22:14.463 SQL [8704]: pgsql_db_connect() -- 22:22:14.468 DEBUG [8704]: Database connection successful -- 22:22:14.468 INFO [8704]: _SERVER found -- 22:22:14.468 INFO [8704]: REMOTE_ADDR = 192.168.1.13 -- 22:22:14.468 INFO [8704]: SERVER_NAME = oameye.works.coregrade.com -- 22:22:14.468 INFO [8704]: QUERY_STRING = -- 22:22:14.468 INFO [8704]: HTTP_X_FORWARDED_FOR = 198.108.66.144 -- 22:22:14.504 INFO [8704]: COREGRADE is stopping... -- 22:22:14.504 DEBUG [8704]: Closing database connection -- 22:22:14.504 SQL [8704]: pgsql_close() -- 03:22:26.030 INFO [7486]: COREGRADE is starting... -- 03:22:26.030 INFO [7486]: Version from config: 1.0 -- 03:22:26.030 DEBUG [7486]: Connecting to database... -- 03:22:26.030 DEBUG [7486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:22:26.030 SQL [7486]: pgsql_db_connect() -- 03:22:26.035 DEBUG [7486]: Database connection successful -- 03:22:26.035 INFO [7486]: _SERVER found -- 03:22:26.035 INFO [7486]: REMOTE_ADDR = 192.168.1.13 -- 03:22:26.035 INFO [7486]: SERVER_NAME = oameye.works.coregrade.com -- 03:22:26.035 INFO [7486]: QUERY_STRING = -- 03:22:26.035 INFO [7486]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 03:22:26.070 INFO [7486]: COREGRADE is stopping... -- 03:22:26.070 DEBUG [7486]: Closing database connection -- 03:22:26.070 SQL [7486]: pgsql_close() -- 04:21:53.051 INFO [7230]: COREGRADE is starting... -- 04:21:53.051 INFO [7230]: Version from config: 1.0 -- 04:21:53.051 DEBUG [7230]: Connecting to database... -- 04:21:53.051 DEBUG [7230]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:21:53.051 SQL [7230]: pgsql_db_connect() -- 04:21:53.056 DEBUG [7230]: Database connection successful -- 04:21:53.056 INFO [7230]: _SERVER found -- 04:21:53.056 INFO [7230]: REMOTE_ADDR = 192.168.1.13 -- 04:21:53.056 INFO [7230]: SERVER_NAME = oameye.works.coregrade.com -- 04:21:53.056 INFO [7230]: QUERY_STRING = /.well-known/acme-challenge/xz_vcKoewk4ssdYB4BoNy7uUAv-tJAJxpnlXCh9dBxI -- 04:21:53.056 INFO [7230]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 04:21:53.071 INFO [7230]: COREGRADE is stopping... -- 04:21:53.071 DEBUG [7230]: Closing database connection -- 04:21:53.071 SQL [7230]: pgsql_close() -- 04:21:53.193 INFO [7230]: COREGRADE is starting... -- 04:21:53.193 INFO [7230]: Version from config: 1.0 -- 04:21:53.193 DEBUG [7230]: Connecting to database... -- 04:21:53.193 DEBUG [7230]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:21:53.193 SQL [7230]: pgsql_db_connect() -- 04:21:53.198 DEBUG [7230]: Database connection successful -- 04:21:53.198 INFO [7230]: _SERVER found -- 04:21:53.198 INFO [7230]: REMOTE_ADDR = 192.168.1.13 -- 04:21:53.198 INFO [7230]: SERVER_NAME = oameye.works.coregrade.com -- 04:21:53.198 INFO [7230]: QUERY_STRING = /.well-known/acme-challenge/xz_vcKoewk4ssdYB4BoNy7uUAv-tJAJxpnlXCh9dBxI -- 04:21:53.198 INFO [7230]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 04:21:53.209 INFO [7230]: COREGRADE is stopping... -- 04:21:53.209 DEBUG [7230]: Closing database connection -- 04:21:53.209 SQL [7230]: pgsql_close() -- 05:18:25.565 INFO [8707]: COREGRADE is starting... -- 05:18:25.566 INFO [8707]: Version from config: 1.0 -- 05:18:25.566 DEBUG [8707]: Connecting to database... -- 05:18:25.566 DEBUG [8707]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:18:25.566 SQL [8707]: pgsql_db_connect() -- 05:18:25.570 DEBUG [8707]: Database connection successful -- 05:18:25.570 INFO [8707]: _SERVER found -- 05:18:25.570 INFO [8707]: REMOTE_ADDR = 192.168.1.13 -- 05:18:25.570 INFO [8707]: SERVER_NAME = oameye.works.coregrade.com -- 05:18:25.570 INFO [8707]: QUERY_STRING = -- 05:18:25.570 INFO [8707]: HTTP_X_FORWARDED_FOR = 209.17.96.74 -- 05:18:25.603 INFO [8707]: COREGRADE is stopping... -- 05:18:25.603 DEBUG [8707]: Closing database connection -- 05:18:25.603 SQL [8707]: pgsql_close() -- 05:58:11.078 INFO [7228]: COREGRADE is starting... -- 05:58:11.079 INFO [7228]: Version from config: 1.0 -- 05:58:11.079 DEBUG [7228]: Connecting to database... -- 05:58:11.079 DEBUG [7228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:58:11.079 SQL [7228]: pgsql_db_connect() -- 05:58:11.083 DEBUG [7228]: Database connection successful -- 05:58:11.083 INFO [7228]: _SERVER found -- 05:58:11.083 INFO [7228]: REMOTE_ADDR = 192.168.1.13 -- 05:58:11.083 INFO [7228]: SERVER_NAME = oameye.works.coregrade.com -- 05:58:11.083 INFO [7228]: QUERY_STRING = -- 05:58:11.083 INFO [7228]: HTTP_X_FORWARDED_FOR = 51.158.114.198 -- 05:58:11.121 INFO [7228]: COREGRADE is stopping... -- 05:58:11.121 DEBUG [7228]: Closing database connection -- 05:58:11.121 SQL [7228]: pgsql_close() -- 07:17:21.935 INFO [7232]: COREGRADE is starting... -- 07:17:21.935 INFO [7232]: Version from config: 1.0 -- 07:17:21.935 DEBUG [7232]: Connecting to database... -- 07:17:21.935 DEBUG [7232]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:17:21.935 SQL [7232]: pgsql_db_connect() -- 07:17:21.940 DEBUG [7232]: Database connection successful -- 07:17:21.940 INFO [7232]: _SERVER found -- 07:17:21.940 INFO [7232]: REMOTE_ADDR = 192.168.1.13 -- 07:17:21.940 INFO [7232]: SERVER_NAME = oameye.works.coregrade.com -- 07:17:21.940 INFO [7232]: QUERY_STRING = /TP/public/index.php -- 07:17:21.940 INFO [7232]: HTTP_X_FORWARDED_FOR = 118.24.121.69 -- 07:17:21.955 INFO [7232]: COREGRADE is stopping... -- 07:17:21.955 DEBUG [7232]: Closing database connection -- 07:17:21.955 SQL [7232]: pgsql_close() -- 07:17:23.820 INFO [7229]: COREGRADE is starting... -- 07:17:23.820 INFO [7229]: Version from config: 1.0 -- 07:17:23.820 DEBUG [7229]: Connecting to database... -- 07:17:23.820 DEBUG [7229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:17:23.820 SQL [7229]: pgsql_db_connect() -- 07:17:23.825 DEBUG [7229]: Database connection successful -- 07:17:23.825 INFO [7229]: _SERVER found -- 07:17:23.825 INFO [7229]: REMOTE_ADDR = 192.168.1.13 -- 07:17:23.825 INFO [7229]: SERVER_NAME = oameye.works.coregrade.com -- 07:17:23.825 INFO [7229]: QUERY_STRING = /TP/index.php -- 07:17:23.825 INFO [7229]: HTTP_X_FORWARDED_FOR = 118.24.121.69 -- 07:17:23.839 INFO [7229]: COREGRADE is stopping... -- 07:17:23.839 DEBUG [7229]: Closing database connection -- 07:17:23.839 SQL [7229]: pgsql_close() -- 07:17:26.929 INFO [7232]: COREGRADE is starting... -- 07:17:26.929 INFO [7232]: Version from config: 1.0 -- 07:17:26.929 DEBUG [7232]: Connecting to database... -- 07:17:26.929 DEBUG [7232]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:17:26.929 SQL [7232]: pgsql_db_connect() -- 07:17:26.934 DEBUG [7232]: Database connection successful -- 07:17:26.934 INFO [7232]: _SERVER found -- 07:17:26.934 INFO [7232]: REMOTE_ADDR = 192.168.1.13 -- 07:17:26.934 INFO [7232]: SERVER_NAME = oameye.works.coregrade.com -- 07:17:26.934 INFO [7232]: QUERY_STRING = /thinkphp/html/public/index.php -- 07:17:26.934 INFO [7232]: HTTP_X_FORWARDED_FOR = 118.24.121.69 -- 07:17:26.945 INFO [7232]: COREGRADE is stopping... -- 07:17:26.945 DEBUG [7232]: Closing database connection -- 07:17:26.945 SQL [7232]: pgsql_close() -- 07:17:28.689 INFO [7232]: COREGRADE is starting... -- 07:17:28.689 INFO [7232]: Version from config: 1.0 -- 07:17:28.689 DEBUG [7232]: Connecting to database... -- 07:17:28.689 DEBUG [7232]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:17:28.689 SQL [7232]: pgsql_db_connect() -- 07:17:28.694 DEBUG [7232]: Database connection successful -- 07:17:28.694 INFO [7232]: _SERVER found -- 07:17:28.694 INFO [7232]: REMOTE_ADDR = 192.168.1.13 -- 07:17:28.694 INFO [7232]: SERVER_NAME = oameye.works.coregrade.com -- 07:17:28.694 INFO [7232]: QUERY_STRING = /html/public/index.php -- 07:17:28.694 INFO [7232]: HTTP_X_FORWARDED_FOR = 118.24.121.69 -- 07:17:28.705 INFO [7232]: COREGRADE is stopping... -- 07:17:28.705 DEBUG [7232]: Closing database connection -- 07:17:28.705 SQL [7232]: pgsql_close() -- 07:17:31.826 INFO [7232]: COREGRADE is starting... -- 07:17:31.826 INFO [7232]: Version from config: 1.0 -- 07:17:31.826 DEBUG [7232]: Connecting to database... -- 07:17:31.826 DEBUG [7232]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:17:31.827 SQL [7232]: pgsql_db_connect() -- 07:17:31.831 DEBUG [7232]: Database connection successful -- 07:17:31.831 INFO [7232]: _SERVER found -- 07:17:31.831 INFO [7232]: REMOTE_ADDR = 192.168.1.13 -- 07:17:31.831 INFO [7232]: SERVER_NAME = oameye.works.coregrade.com -- 07:17:31.831 INFO [7232]: QUERY_STRING = /public/index.php -- 07:17:31.831 INFO [7232]: HTTP_X_FORWARDED_FOR = 118.24.121.69 -- 07:17:31.842 INFO [7232]: COREGRADE is stopping... -- 07:17:31.843 DEBUG [7232]: Closing database connection -- 07:17:31.843 SQL [7232]: pgsql_close() -- 07:17:33.691 INFO [7232]: COREGRADE is starting... -- 07:17:33.692 INFO [7232]: Version from config: 1.0 -- 07:17:33.692 DEBUG [7232]: Connecting to database... -- 07:17:33.692 DEBUG [7232]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:17:33.692 SQL [7232]: pgsql_db_connect() -- 07:17:33.696 DEBUG [7232]: Database connection successful -- 07:17:33.696 INFO [7232]: _SERVER found -- 07:17:33.696 INFO [7232]: REMOTE_ADDR = 192.168.1.13 -- 07:17:33.696 INFO [7232]: SERVER_NAME = oameye.works.coregrade.com -- 07:17:33.696 INFO [7232]: QUERY_STRING = /TP/html/public/index.php -- 07:17:33.696 INFO [7232]: HTTP_X_FORWARDED_FOR = 118.24.121.69 -- 07:17:33.708 INFO [7232]: COREGRADE is stopping... -- 07:17:33.708 DEBUG [7232]: Closing database connection -- 07:17:33.708 SQL [7232]: pgsql_close() -- 07:17:37.556 INFO [7232]: COREGRADE is starting... -- 07:17:37.557 INFO [7232]: Version from config: 1.0 -- 07:17:37.557 DEBUG [7232]: Connecting to database... -- 07:17:37.557 DEBUG [7232]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:17:37.557 SQL [7232]: pgsql_db_connect() -- 07:17:37.561 DEBUG [7232]: Database connection successful -- 07:17:37.561 INFO [7232]: _SERVER found -- 07:17:37.561 INFO [7232]: REMOTE_ADDR = 192.168.1.13 -- 07:17:37.561 INFO [7232]: SERVER_NAME = oameye.works.coregrade.com -- 07:17:37.561 INFO [7232]: QUERY_STRING = /elrekt.php -- 07:17:37.561 INFO [7232]: HTTP_X_FORWARDED_FOR = 118.24.121.69 -- 07:17:37.573 INFO [7232]: COREGRADE is stopping... -- 07:17:37.573 DEBUG [7232]: Closing database connection -- 07:17:37.573 SQL [7232]: pgsql_close() -- 09:24:48.103 INFO [17456]: COREGRADE is starting... -- 09:24:48.103 INFO [17456]: Version from config: 1.0 -- 09:24:48.103 DEBUG [17456]: Connecting to database... -- 09:24:48.103 DEBUG [17456]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:24:48.103 SQL [17456]: pgsql_db_connect() -- 09:24:48.109 DEBUG [17456]: Database connection successful -- 09:24:48.109 INFO [17456]: _SERVER found -- 09:24:48.109 INFO [17456]: REMOTE_ADDR = 192.168.1.13 -- 09:24:48.109 INFO [17456]: SERVER_NAME = oameye.works.coregrade.com -- 09:24:48.109 INFO [17456]: QUERY_STRING = -- 09:24:48.109 INFO [17456]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 09:24:48.146 INFO [17456]: COREGRADE is stopping... -- 09:24:48.146 DEBUG [17456]: Closing database connection -- 09:24:48.146 SQL [17456]: pgsql_close() -- 09:35:53.718 INFO [8704]: COREGRADE is starting... -- 09:35:53.718 INFO [8704]: Version from config: 1.0 -- 09:35:53.718 DEBUG [8704]: Connecting to database... -- 09:35:53.718 DEBUG [8704]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:35:53.718 SQL [8704]: pgsql_db_connect() -- 09:35:53.723 DEBUG [8704]: Database connection successful -- 09:35:53.723 INFO [8704]: _SERVER found -- 09:35:53.723 INFO [8704]: REMOTE_ADDR = 192.168.1.13 -- 09:35:53.723 INFO [8704]: SERVER_NAME = oameye.works.coregrade.com -- 09:35:53.723 INFO [8704]: QUERY_STRING = -- 09:35:53.723 INFO [8704]: HTTP_X_FORWARDED_FOR = 223.71.167.163 -- 09:35:53.758 INFO [8704]: COREGRADE is stopping... -- 09:35:53.758 DEBUG [8704]: Closing database connection -- 09:35:53.758 SQL [8704]: pgsql_close() -- 09:39:07.319 INFO [7486]: COREGRADE is starting... -- 09:39:07.319 INFO [7486]: Version from config: 1.0 -- 09:39:07.319 DEBUG [7486]: Connecting to database... -- 09:39:07.319 DEBUG [7486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:39:07.319 SQL [7486]: pgsql_db_connect() -- 09:39:07.323 DEBUG [7486]: Database connection successful -- 09:39:07.323 INFO [7486]: _SERVER found -- 09:39:07.323 INFO [7486]: REMOTE_ADDR = 192.168.1.13 -- 09:39:07.323 INFO [7486]: SERVER_NAME = oameye.works.coregrade.com -- 09:39:07.323 INFO [7486]: QUERY_STRING = -- 09:39:07.323 INFO [7486]: HTTP_X_FORWARDED_FOR = 169.197.108.42 -- 09:39:07.358 INFO [7486]: COREGRADE is stopping... -- 09:39:07.358 DEBUG [7486]: Closing database connection -- 09:39:07.358 SQL [7486]: pgsql_close() -- 12:14:18.654 INFO [7231]: COREGRADE is starting... -- 12:14:18.655 INFO [7231]: Version from config: 1.0 -- 12:14:18.655 DEBUG [7231]: Connecting to database... -- 12:14:18.655 DEBUG [7231]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:14:18.655 SQL [7231]: pgsql_db_connect() -- 12:14:18.659 DEBUG [7231]: Database connection successful -- 12:14:18.659 INFO [7231]: _SERVER found -- 12:14:18.659 INFO [7231]: REMOTE_ADDR = 192.168.1.13 -- 12:14:18.659 INFO [7231]: SERVER_NAME = oameye.works.coregrade.com -- 12:14:18.659 INFO [7231]: QUERY_STRING = /solr/admin/info/system -- 12:14:18.659 INFO [7231]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 12:14:18.674 INFO [7231]: COREGRADE is stopping... -- 12:14:18.674 DEBUG [7231]: Closing database connection -- 12:14:18.674 SQL [7231]: pgsql_close() -- 12:15:12.563 INFO [7571]: COREGRADE is starting... -- 12:15:12.563 INFO [7571]: Version from config: 1.0 -- 12:15:12.563 DEBUG [7571]: Connecting to database... -- 12:15:12.563 DEBUG [7571]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:15:12.563 SQL [7571]: pgsql_db_connect() -- 12:15:12.567 DEBUG [7571]: Database connection successful -- 12:15:12.567 INFO [7571]: _SERVER found -- 12:15:12.567 INFO [7571]: REMOTE_ADDR = 192.168.1.13 -- 12:15:12.567 INFO [7571]: SERVER_NAME = oameye.works.coregrade.com -- 12:15:12.567 INFO [7571]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 12:15:12.567 INFO [7571]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 12:15:12.602 INFO [7571]: COREGRADE is stopping... -- 12:15:12.602 DEBUG [7571]: Closing database connection -- 12:15:12.602 SQL [7571]: pgsql_close() -- 12:15:13.132 INFO [7571]: COREGRADE is starting... -- 12:15:13.132 INFO [7571]: Version from config: 1.0 -- 12:15:13.132 DEBUG [7571]: Connecting to database... -- 12:15:13.132 DEBUG [7571]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:15:13.132 SQL [7571]: pgsql_db_connect() -- 12:15:13.136 DEBUG [7571]: Database connection successful -- 12:15:13.136 INFO [7571]: _SERVER found -- 12:15:13.136 INFO [7571]: REMOTE_ADDR = 192.168.1.13 -- 12:15:13.136 INFO [7571]: SERVER_NAME = oameye.works.coregrade.com -- 12:15:13.136 INFO [7571]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 12:15:13.136 INFO [7571]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 12:15:13.168 INFO [7571]: COREGRADE is stopping... -- 12:15:13.168 DEBUG [7571]: Closing database connection -- 12:15:13.168 SQL [7571]: pgsql_close() -- 12:15:34.347 INFO [8707]: COREGRADE is starting... -- 12:15:34.347 INFO [8707]: Version from config: 1.0 -- 12:15:34.347 DEBUG [8707]: Connecting to database... -- 12:15:34.347 DEBUG [8707]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:15:34.347 SQL [8707]: pgsql_db_connect() -- 12:15:34.351 DEBUG [8707]: Database connection successful -- 12:15:34.351 INFO [8707]: _SERVER found -- 12:15:34.351 INFO [8707]: REMOTE_ADDR = 192.168.1.13 -- 12:15:34.351 INFO [8707]: SERVER_NAME = oameye.works.coregrade.com -- 12:15:34.351 INFO [8707]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 12:15:34.351 INFO [8707]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 12:15:34.383 INFO [8707]: COREGRADE is stopping... -- 12:15:34.384 DEBUG [8707]: Closing database connection -- 12:15:34.384 SQL [8707]: pgsql_close() -- 12:57:44.098 INFO [7228]: COREGRADE is starting... -- 12:57:44.099 INFO [7228]: Version from config: 1.0 -- 12:57:44.099 DEBUG [7228]: Connecting to database... -- 12:57:44.099 DEBUG [7228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:57:44.099 SQL [7228]: pgsql_db_connect() -- 12:57:44.104 DEBUG [7228]: Database connection successful -- 12:57:44.104 INFO [7228]: _SERVER found -- 12:57:44.104 INFO [7228]: REMOTE_ADDR = 192.168.1.13 -- 12:57:44.104 INFO [7228]: SERVER_NAME = oameye.works.coregrade.com -- 12:57:44.104 INFO [7228]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 12:57:44.104 INFO [7228]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 12:57:44.118 INFO [7228]: COREGRADE is stopping... -- 12:57:44.118 DEBUG [7228]: Closing database connection -- 12:57:44.118 SQL [7228]: pgsql_close() -- 13:04:10.273 INFO [7229]: COREGRADE is starting... -- 13:04:10.274 INFO [7229]: Version from config: 1.0 -- 13:04:10.274 DEBUG [7229]: Connecting to database... -- 13:04:10.274 DEBUG [7229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:04:10.274 SQL [7229]: pgsql_db_connect() -- 13:04:10.278 DEBUG [7229]: Database connection successful -- 13:04:10.278 INFO [7229]: _SERVER found -- 13:04:10.278 INFO [7229]: REMOTE_ADDR = 192.168.1.13 -- 13:04:10.278 INFO [7229]: SERVER_NAME = oameye.works.coregrade.com -- 13:04:10.278 INFO [7229]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 13:04:10.278 INFO [7229]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 13:04:10.292 INFO [7229]: COREGRADE is stopping... -- 13:04:10.292 DEBUG [7229]: Closing database connection -- 13:04:10.292 SQL [7229]: pgsql_close() -- 15:25:18.636 INFO [7232]: COREGRADE is starting... -- 15:25:18.637 INFO [7232]: Version from config: 1.0 -- 15:25:18.637 DEBUG [7232]: Connecting to database... -- 15:25:18.637 DEBUG [7232]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:18.637 SQL [7232]: pgsql_db_connect() -- 15:25:18.642 DEBUG [7232]: Database connection successful -- 15:25:18.642 INFO [7232]: _SERVER found -- 15:25:18.642 INFO [7232]: REMOTE_ADDR = 192.168.1.13 -- 15:25:18.642 INFO [7232]: SERVER_NAME = oameye.works.coregrade.com -- 15:25:18.642 INFO [7232]: QUERY_STRING = -- 15:25:18.642 INFO [7232]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 15:25:18.681 INFO [7232]: COREGRADE is stopping... -- 15:25:18.681 DEBUG [7232]: Closing database connection -- 15:25:18.681 SQL [7232]: pgsql_close() -- 15:29:03.744 INFO [17456]: COREGRADE is starting... -- 15:29:03.745 INFO [17456]: Version from config: 1.0 -- 15:29:03.745 DEBUG [17456]: Connecting to database... -- 15:29:03.745 DEBUG [17456]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:29:03.745 SQL [17456]: pgsql_db_connect() -- 15:29:03.749 DEBUG [17456]: Database connection successful -- 15:29:03.749 INFO [17456]: _SERVER found -- 15:29:03.749 INFO [17456]: REMOTE_ADDR = 192.168.1.13 -- 15:29:03.749 INFO [17456]: SERVER_NAME = oameye.works.coregrade.com -- 15:29:03.749 INFO [17456]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.2052894695.1585610624 -- 15:29:03.749 INFO [17456]: QUERY_STRING = -- 15:29:03.749 INFO [17456]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:29:03.782 INFO [17456]: COREGRADE is stopping... -- 15:29:03.782 DEBUG [17456]: Closing database connection -- 15:29:03.782 SQL [17456]: pgsql_close() -- 15:29:33.340 INFO [8704]: COREGRADE is starting... -- 15:29:33.340 INFO [8704]: Version from config: 1.0 -- 15:29:33.340 DEBUG [8704]: Connecting to database... -- 15:29:33.340 DEBUG [8704]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:29:33.340 SQL [8704]: pgsql_db_connect() -- 15:29:33.344 DEBUG [8704]: Database connection successful -- 15:29:33.344 INFO [8704]: _SERVER found -- 15:29:33.344 INFO [8704]: REMOTE_ADDR = 192.168.1.13 -- 15:29:33.344 INFO [8704]: SERVER_NAME = oameye.works.coregrade.com -- 15:29:33.344 INFO [8704]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.2052894695.1585610624; ci_session=5jfd5kaa4bjoidqm3t7nng7qubpo53sv -- 15:29:33.344 INFO [8704]: QUERY_STRING = -- 15:29:33.344 INFO [8704]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:29:33.378 INFO [8704]: COREGRADE is stopping... -- 15:29:33.378 DEBUG [8704]: Closing database connection -- 15:29:33.378 SQL [8704]: pgsql_close() -- 15:33:58.453 INFO [7486]: COREGRADE is starting... -- 15:33:58.454 INFO [7486]: Version from config: 1.0 -- 15:33:58.454 DEBUG [7486]: Connecting to database... -- 15:33:58.454 DEBUG [7486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:33:58.454 SQL [7486]: pgsql_db_connect() -- 15:33:58.458 DEBUG [7486]: Database connection successful -- 15:33:58.458 INFO [7486]: _SERVER found -- 15:33:58.458 INFO [7486]: REMOTE_ADDR = 192.168.1.13 -- 15:33:58.458 INFO [7486]: SERVER_NAME = oameye.works.coregrade.com -- 15:33:58.458 INFO [7486]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.2052894695.1585610624; ci_session=5jfd5kaa4bjoidqm3t7nng7qubpo53sv -- 15:33:58.458 INFO [7486]: QUERY_STRING = -- 15:33:58.458 INFO [7486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:33:58.492 INFO [7486]: COREGRADE is stopping... -- 15:33:58.492 DEBUG [7486]: Closing database connection -- 15:33:58.492 SQL [7486]: pgsql_close() -- 15:34:01.243 INFO [7486]: COREGRADE is starting... -- 15:34:01.243 INFO [7486]: Version from config: 1.0 -- 15:34:01.243 DEBUG [7486]: Connecting to database... -- 15:34:01.243 DEBUG [7486]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:34:01.243 SQL [7486]: pgsql_db_connect() -- 15:34:01.247 DEBUG [7486]: Database connection successful -- 15:34:01.247 INFO [7486]: _SERVER found -- 15:34:01.247 INFO [7486]: REMOTE_ADDR = 192.168.1.13 -- 15:34:01.247 INFO [7486]: SERVER_NAME = oameye.works.coregrade.com -- 15:34:01.247 INFO [7486]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.2052894695.1585610624; ci_session=5jfd5kaa4bjoidqm3t7nng7qubpo53sv -- 15:34:01.247 INFO [7486]: QUERY_STRING = -- 15:34:01.247 INFO [7486]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:34:01.278 INFO [7486]: COREGRADE is stopping... -- 15:34:01.278 DEBUG [7486]: Closing database connection -- 15:34:01.278 SQL [7486]: pgsql_close() -- 15:34:55.869 INFO [29115]: COREGRADE is starting... -- 15:34:55.869 INFO [29115]: Version from config: 1.0 -- 15:34:55.869 DEBUG [29115]: Connecting to database... -- 15:34:55.869 DEBUG [29115]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:34:55.869 SQL [29115]: pgsql_db_connect() -- 15:34:55.874 DEBUG [29115]: Database connection successful -- 15:34:55.874 INFO [29115]: _SERVER found -- 15:34:55.874 INFO [29115]: REMOTE_ADDR = 192.168.1.13 -- 15:34:55.874 INFO [29115]: SERVER_NAME = oameye.works.coregrade.com -- 15:34:55.874 INFO [29115]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.2052894695.1585610624; ci_session=5jfd5kaa4bjoidqm3t7nng7qubpo53sv -- 15:34:55.874 INFO [29115]: QUERY_STRING = -- 15:34:55.874 INFO [29115]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:34:55.918 INFO [29115]: COREGRADE is stopping... -- 15:34:55.918 DEBUG [29115]: Closing database connection -- 15:34:55.918 SQL [29115]: pgsql_close() -- 15:35:23.567 INFO [29116]: COREGRADE is starting... -- 15:35:23.568 INFO [29116]: Version from config: 1.0 -- 15:35:23.568 DEBUG [29116]: Connecting to database... -- 15:35:23.568 DEBUG [29116]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:35:23.568 SQL [29116]: pgsql_db_connect() -- 15:35:23.572 DEBUG [29116]: Database connection successful -- 15:35:23.572 INFO [29116]: _SERVER found -- 15:35:23.572 INFO [29116]: REMOTE_ADDR = 192.168.1.13 -- 15:35:23.572 INFO [29116]: SERVER_NAME = oameye.works.coregrade.com -- 15:35:23.572 INFO [29116]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.2052894695.1585610624; ci_session=gqr2le498umnm1o0oap0mgfv84tp73ag -- 15:35:23.572 INFO [29116]: QUERY_STRING = /auth -- 15:35:23.572 INFO [29116]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:35:23.610 INFO [29116]: COREGRADE is stopping... -- 15:35:23.610 DEBUG [29116]: Closing database connection -- 15:35:23.610 SQL [29116]: pgsql_close() -- 15:38:39.294 INFO [29118]: COREGRADE is starting... -- 15:38:39.295 INFO [29118]: Version from config: 1.0 -- 15:38:39.295 DEBUG [29118]: Connecting to database... -- 15:38:39.295 DEBUG [29118]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:38:39.295 SQL [29118]: pgsql_db_connect() -- 15:38:39.300 DEBUG [29118]: Database connection successful -- 15:38:39.300 INFO [29118]: _SERVER found -- 15:38:39.300 INFO [29118]: REMOTE_ADDR = 192.168.1.13 -- 15:38:39.300 INFO [29118]: SERVER_NAME = oameye.works.coregrade.com -- 15:38:39.300 INFO [29118]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.2052894695.1585610624; ci_session=gqr2le498umnm1o0oap0mgfv84tp73ag -- 15:38:39.300 INFO [29118]: QUERY_STRING = /auth -- 15:38:39.300 INFO [29118]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:38:39.340 INFO [29118]: COREGRADE is stopping... -- 15:38:39.340 DEBUG [29118]: Closing database connection -- 15:38:39.340 SQL [29118]: pgsql_close() -- 16:30:56.401 INFO [29117]: COREGRADE is starting... -- 16:30:56.401 INFO [29117]: Version from config: 1.0 -- 16:30:56.401 DEBUG [29117]: Connecting to database... -- 16:30:56.401 DEBUG [29117]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:30:56.401 SQL [29117]: pgsql_db_connect() -- 16:30:56.406 DEBUG [29117]: Database connection successful -- 16:30:56.406 INFO [29117]: _SERVER found -- 16:30:56.406 INFO [29117]: REMOTE_ADDR = 192.168.1.13 -- 16:30:56.406 INFO [29117]: SERVER_NAME = oameye.works.coregrade.com -- 16:30:56.406 INFO [29117]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.2052894695.1585610624; ci_session=gqr2le498umnm1o0oap0mgfv84tp73ag -- 16:30:56.406 INFO [29117]: QUERY_STRING = /auth -- 16:30:56.406 INFO [29117]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:30:56.451 INFO [29117]: COREGRADE is stopping... -- 16:30:56.451 DEBUG [29117]: Closing database connection -- 16:30:56.451 SQL [29117]: pgsql_close() -- 16:32:14.800 INFO [29115]: COREGRADE is starting... -- 16:32:14.800 INFO [29115]: Version from config: 1.0 -- 16:32:14.800 DEBUG [29115]: Connecting to database... -- 16:32:14.800 DEBUG [29115]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:32:14.800 SQL [29115]: pgsql_db_connect() -- 16:32:14.805 DEBUG [29115]: Database connection successful -- 16:32:14.805 INFO [29115]: _SERVER found -- 16:32:14.805 INFO [29115]: REMOTE_ADDR = 192.168.1.13 -- 16:32:14.805 INFO [29115]: SERVER_NAME = oameye.works.coregrade.com -- 16:32:14.805 INFO [29115]: HTTP_COOKIE = ci_session=6cd6qvpge07grp46saffk9gdombnoahh; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.2052894695.1585610624 -- 16:32:14.805 INFO [29115]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:32:14.805 INFO [29115]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:32:14.819 INFO [29115]: COREGRADE is stopping... -- 16:32:14.819 DEBUG [29115]: Closing database connection -- 16:32:14.819 SQL [29115]: pgsql_close() -- 02:31:14.486 INFO [29116]: COREGRADE is starting... -- 02:31:14.487 INFO [29116]: Version from config: 1.0 -- 02:31:14.487 DEBUG [29116]: Connecting to database... -- 02:31:14.487 DEBUG [29116]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:31:14.487 SQL [29116]: pgsql_db_connect() -- 02:31:14.491 DEBUG [29116]: Database connection successful -- 02:31:14.491 INFO [29116]: _SERVER found -- 02:31:14.491 INFO [29116]: REMOTE_ADDR = 192.168.1.13 -- 02:31:14.491 INFO [29116]: SERVER_NAME = oameye.works.coregrade.com -- 02:31:14.491 INFO [29116]: QUERY_STRING = /TP/public/index.php -- 02:31:14.491 INFO [29116]: HTTP_X_FORWARDED_FOR = 114.67.83.154 -- 02:31:14.508 INFO [29116]: COREGRADE is stopping... -- 02:31:14.508 DEBUG [29116]: Closing database connection -- 02:31:14.508 SQL [29116]: pgsql_close() -- 02:31:19.535 INFO [29117]: COREGRADE is starting... -- 02:31:19.535 INFO [29117]: Version from config: 1.0 -- 02:31:19.535 DEBUG [29117]: Connecting to database... -- 02:31:19.535 DEBUG [29117]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:31:19.535 SQL [29117]: pgsql_db_connect() -- 02:31:19.539 DEBUG [29117]: Database connection successful -- 02:31:19.539 INFO [29117]: _SERVER found -- 02:31:19.539 INFO [29117]: REMOTE_ADDR = 192.168.1.13 -- 02:31:19.539 INFO [29117]: SERVER_NAME = oameye.works.coregrade.com -- 02:31:19.539 INFO [29117]: QUERY_STRING = /TP/index.php -- 02:31:19.539 INFO [29117]: HTTP_X_FORWARDED_FOR = 114.67.83.154 -- 02:31:19.553 INFO [29117]: COREGRADE is stopping... -- 02:31:19.553 DEBUG [29117]: Closing database connection -- 02:31:19.553 SQL [29117]: pgsql_close() -- 02:31:22.269 INFO [29117]: COREGRADE is starting... -- 02:31:22.270 INFO [29117]: Version from config: 1.0 -- 02:31:22.270 DEBUG [29117]: Connecting to database... -- 02:31:22.270 DEBUG [29117]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:31:22.270 SQL [29117]: pgsql_db_connect() -- 02:31:22.274 DEBUG [29117]: Database connection successful -- 02:31:22.274 INFO [29117]: _SERVER found -- 02:31:22.274 INFO [29117]: REMOTE_ADDR = 192.168.1.13 -- 02:31:22.274 INFO [29117]: SERVER_NAME = oameye.works.coregrade.com -- 02:31:22.274 INFO [29117]: QUERY_STRING = /thinkphp/html/public/index.php -- 02:31:22.274 INFO [29117]: HTTP_X_FORWARDED_FOR = 114.67.83.154 -- 02:31:22.287 INFO [29117]: COREGRADE is stopping... -- 02:31:22.287 DEBUG [29117]: Closing database connection -- 02:31:22.287 SQL [29117]: pgsql_close() -- 02:31:23.797 INFO [29117]: COREGRADE is starting... -- 02:31:23.797 INFO [29117]: Version from config: 1.0 -- 02:31:23.797 DEBUG [29117]: Connecting to database... -- 02:31:23.797 DEBUG [29117]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:31:23.797 SQL [29117]: pgsql_db_connect() -- 02:31:23.802 DEBUG [29117]: Database connection successful -- 02:31:23.802 INFO [29117]: _SERVER found -- 02:31:23.802 INFO [29117]: REMOTE_ADDR = 192.168.1.13 -- 02:31:23.802 INFO [29117]: SERVER_NAME = oameye.works.coregrade.com -- 02:31:23.802 INFO [29117]: QUERY_STRING = /html/public/index.php -- 02:31:23.802 INFO [29117]: HTTP_X_FORWARDED_FOR = 114.67.83.154 -- 02:31:23.816 INFO [29117]: COREGRADE is stopping... -- 02:31:23.816 DEBUG [29117]: Closing database connection -- 02:31:23.816 SQL [29117]: pgsql_close() -- 02:31:25.687 INFO [29117]: COREGRADE is starting... -- 02:31:25.687 INFO [29117]: Version from config: 1.0 -- 02:31:25.687 DEBUG [29117]: Connecting to database... -- 02:31:25.687 DEBUG [29117]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:31:25.687 SQL [29117]: pgsql_db_connect() -- 02:31:25.691 DEBUG [29117]: Database connection successful -- 02:31:25.691 INFO [29117]: _SERVER found -- 02:31:25.691 INFO [29117]: REMOTE_ADDR = 192.168.1.13 -- 02:31:25.691 INFO [29117]: SERVER_NAME = oameye.works.coregrade.com -- 02:31:25.691 INFO [29117]: QUERY_STRING = /public/index.php -- 02:31:25.691 INFO [29117]: HTTP_X_FORWARDED_FOR = 114.67.83.154 -- 02:31:25.704 INFO [29117]: COREGRADE is stopping... -- 02:31:25.704 DEBUG [29117]: Closing database connection -- 02:31:25.704 SQL [29117]: pgsql_close() -- 02:31:28.187 INFO [29117]: COREGRADE is starting... -- 02:31:28.187 INFO [29117]: Version from config: 1.0 -- 02:31:28.187 DEBUG [29117]: Connecting to database... -- 02:31:28.187 DEBUG [29117]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:31:28.187 SQL [29117]: pgsql_db_connect() -- 02:31:28.191 DEBUG [29117]: Database connection successful -- 02:31:28.191 INFO [29117]: _SERVER found -- 02:31:28.191 INFO [29117]: REMOTE_ADDR = 192.168.1.13 -- 02:31:28.191 INFO [29117]: SERVER_NAME = oameye.works.coregrade.com -- 02:31:28.191 INFO [29117]: QUERY_STRING = /TP/html/public/index.php -- 02:31:28.191 INFO [29117]: HTTP_X_FORWARDED_FOR = 114.67.83.154 -- 02:31:28.204 INFO [29117]: COREGRADE is stopping... -- 02:31:28.204 DEBUG [29117]: Closing database connection -- 02:31:28.204 SQL [29117]: pgsql_close() -- 02:31:31.859 INFO [29117]: COREGRADE is starting... -- 02:31:31.860 INFO [29117]: Version from config: 1.0 -- 02:31:31.860 DEBUG [29117]: Connecting to database... -- 02:31:31.860 DEBUG [29117]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:31:31.860 SQL [29117]: pgsql_db_connect() -- 02:31:31.864 DEBUG [29117]: Database connection successful -- 02:31:31.864 INFO [29117]: _SERVER found -- 02:31:31.864 INFO [29117]: REMOTE_ADDR = 192.168.1.13 -- 02:31:31.864 INFO [29117]: SERVER_NAME = oameye.works.coregrade.com -- 02:31:31.864 INFO [29117]: QUERY_STRING = /elrekt.php -- 02:31:31.864 INFO [29117]: HTTP_X_FORWARDED_FOR = 114.67.83.154 -- 02:31:31.876 INFO [29117]: COREGRADE is stopping... -- 02:31:31.876 DEBUG [29117]: Closing database connection -- 02:31:31.876 SQL [29117]: pgsql_close() -- 02:31:35.178 INFO [29118]: COREGRADE is starting... -- 02:31:35.179 INFO [29118]: Version from config: 1.0 -- 02:31:35.179 DEBUG [29118]: Connecting to database... -- 02:31:35.179 DEBUG [29118]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:31:35.179 SQL [29118]: pgsql_db_connect() -- 02:31:35.183 DEBUG [29118]: Database connection successful -- 02:31:35.183 INFO [29118]: _SERVER found -- 02:31:35.183 INFO [29118]: REMOTE_ADDR = 192.168.1.13 -- 02:31:35.183 INFO [29118]: SERVER_NAME = oameye.works.coregrade.com -- 02:31:35.183 INFO [29118]: QUERY_STRING = -- 02:31:35.183 INFO [29118]: HTTP_X_FORWARDED_FOR = 114.67.83.154 -- 02:31:35.227 INFO [29118]: COREGRADE is stopping... -- 02:31:35.227 DEBUG [29118]: Closing database connection -- 02:31:35.227 SQL [29118]: pgsql_close() -- 02:31:38.429 INFO [29118]: COREGRADE is starting... -- 02:31:38.430 INFO [29118]: Version from config: 1.0 -- 02:31:38.430 DEBUG [29118]: Connecting to database... -- 02:31:38.430 DEBUG [29118]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:31:38.430 SQL [29118]: pgsql_db_connect() -- 02:31:38.434 DEBUG [29118]: Database connection successful -- 02:31:38.434 INFO [29118]: _SERVER found -- 02:31:38.434 INFO [29118]: REMOTE_ADDR = 192.168.1.13 -- 02:31:38.434 INFO [29118]: SERVER_NAME = oameye.works.coregrade.com -- 02:31:38.434 INFO [29118]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 02:31:38.434 INFO [29118]: HTTP_X_FORWARDED_FOR = 114.67.83.154 -- 02:31:38.466 INFO [29118]: COREGRADE is stopping... -- 02:31:38.466 DEBUG [29118]: Closing database connection -- 02:31:38.466 SQL [29118]: pgsql_close() -- 02:31:42.365 INFO [29119]: COREGRADE is starting... -- 02:31:42.365 INFO [29119]: Version from config: 1.0 -- 02:31:42.365 DEBUG [29119]: Connecting to database... -- 02:31:42.365 DEBUG [29119]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:31:42.365 SQL [29119]: pgsql_db_connect() -- 02:31:42.369 DEBUG [29119]: Database connection successful -- 02:31:42.369 INFO [29119]: _SERVER found -- 02:31:42.369 INFO [29119]: REMOTE_ADDR = 192.168.1.13 -- 02:31:42.369 INFO [29119]: SERVER_NAME = oameye.works.coregrade.com -- 02:31:42.369 INFO [29119]: QUERY_STRING = s=captcha -- 02:31:42.369 INFO [29119]: HTTP_X_FORWARDED_FOR = 114.67.83.154 -- 02:31:42.412 INFO [29119]: COREGRADE is stopping... -- 02:31:42.413 DEBUG [29119]: Closing database connection -- 02:31:42.413 SQL [29119]: pgsql_close() -- 02:31:46.844 INFO [29119]: COREGRADE is starting... -- 02:31:46.844 INFO [29119]: Version from config: 1.0 -- 02:31:46.844 DEBUG [29119]: Connecting to database... -- 02:31:46.844 DEBUG [29119]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:31:46.844 SQL [29119]: pgsql_db_connect() -- 02:31:46.848 DEBUG [29119]: Database connection successful -- 02:31:46.848 INFO [29119]: _SERVER found -- 02:31:46.848 INFO [29119]: REMOTE_ADDR = 192.168.1.13 -- 02:31:46.848 INFO [29119]: SERVER_NAME = oameye.works.coregrade.com -- 02:31:46.848 INFO [29119]: QUERY_STRING = -- 02:31:46.848 INFO [29119]: HTTP_X_FORWARDED_FOR = 114.67.83.154 -- 02:31:46.882 INFO [29119]: COREGRADE is stopping... -- 02:31:46.882 DEBUG [29119]: Closing database connection -- 02:31:46.882 SQL [29119]: pgsql_close() -- 03:18:16.094 INFO [29122]: COREGRADE is starting... -- 03:18:16.095 INFO [29122]: Version from config: 1.0 -- 03:18:16.095 DEBUG [29122]: Connecting to database... -- 03:18:16.095 DEBUG [29122]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:18:16.095 SQL [29122]: pgsql_db_connect() -- 03:18:16.099 DEBUG [29122]: Database connection successful -- 03:18:16.099 INFO [29122]: _SERVER found -- 03:18:16.099 INFO [29122]: REMOTE_ADDR = 192.168.1.13 -- 03:18:16.099 INFO [29122]: SERVER_NAME = oameye.works.coregrade.com -- 03:18:16.099 INFO [29122]: QUERY_STRING = /.well-known/acme-challenge/LxGFfjGVolJF3XEJmjC0lWtwxOv15ZB3wm4TSNaYCyA -- 03:18:16.099 INFO [29122]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 03:18:16.117 INFO [29122]: COREGRADE is stopping... -- 03:18:16.117 DEBUG [29122]: Closing database connection -- 03:18:16.117 SQL [29122]: pgsql_close() -- 03:18:16.262 INFO [29122]: COREGRADE is starting... -- 03:18:16.262 INFO [29122]: Version from config: 1.0 -- 03:18:16.262 DEBUG [29122]: Connecting to database... -- 03:18:16.262 DEBUG [29122]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:18:16.262 SQL [29122]: pgsql_db_connect() -- 03:18:16.266 DEBUG [29122]: Database connection successful -- 03:18:16.266 INFO [29122]: _SERVER found -- 03:18:16.266 INFO [29122]: REMOTE_ADDR = 192.168.1.13 -- 03:18:16.266 INFO [29122]: SERVER_NAME = oameye.works.coregrade.com -- 03:18:16.266 INFO [29122]: QUERY_STRING = /.well-known/acme-challenge/LxGFfjGVolJF3XEJmjC0lWtwxOv15ZB3wm4TSNaYCyA -- 03:18:16.266 INFO [29122]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 03:18:16.278 INFO [29122]: COREGRADE is stopping... -- 03:18:16.278 DEBUG [29122]: Closing database connection -- 03:18:16.278 SQL [29122]: pgsql_close() -- 03:18:16.299 INFO [29122]: COREGRADE is starting... -- 03:18:16.299 INFO [29122]: Version from config: 1.0 -- 03:18:16.299 DEBUG [29122]: Connecting to database... -- 03:18:16.299 DEBUG [29122]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:18:16.299 SQL [29122]: pgsql_db_connect() -- 03:18:16.303 DEBUG [29122]: Database connection successful -- 03:18:16.303 INFO [29122]: _SERVER found -- 03:18:16.303 INFO [29122]: REMOTE_ADDR = 192.168.1.13 -- 03:18:16.303 INFO [29122]: SERVER_NAME = oameye.works.coregrade.com -- 03:18:16.303 INFO [29122]: QUERY_STRING = /.well-known/acme-challenge/LxGFfjGVolJF3XEJmjC0lWtwxOv15ZB3wm4TSNaYCyA -- 03:18:16.303 INFO [29122]: HTTP_X_FORWARDED_FOR = 34.209.232.166 -- 03:18:16.317 INFO [29122]: COREGRADE is stopping... -- 03:18:16.317 DEBUG [29122]: Closing database connection -- 03:18:16.317 SQL [29122]: pgsql_close() -- 03:18:16.376 INFO [29122]: COREGRADE is starting... -- 03:18:16.377 INFO [29122]: Version from config: 1.0 -- 03:18:16.377 DEBUG [29122]: Connecting to database... -- 03:18:16.377 DEBUG [29122]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:18:16.377 SQL [29122]: pgsql_db_connect() -- 03:18:16.381 DEBUG [29122]: Database connection successful -- 03:18:16.381 INFO [29122]: _SERVER found -- 03:18:16.381 INFO [29122]: REMOTE_ADDR = 192.168.1.13 -- 03:18:16.381 INFO [29122]: SERVER_NAME = oameye.works.coregrade.com -- 03:18:16.381 INFO [29122]: QUERY_STRING = /.well-known/acme-challenge/LxGFfjGVolJF3XEJmjC0lWtwxOv15ZB3wm4TSNaYCyA -- 03:18:16.381 INFO [29122]: HTTP_X_FORWARDED_FOR = 52.28.236.88 -- 03:18:16.393 INFO [29122]: COREGRADE is stopping... -- 03:18:16.393 DEBUG [29122]: Closing database connection -- 03:18:16.393 SQL [29122]: pgsql_close() -- 04:30:10.490 INFO [29116]: COREGRADE is starting... -- 04:30:10.490 INFO [29116]: Version from config: 1.0 -- 04:30:10.490 DEBUG [29116]: Connecting to database... -- 04:30:10.490 DEBUG [29116]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:30:10.490 SQL [29116]: pgsql_db_connect() -- 04:30:10.495 DEBUG [29116]: Database connection successful -- 04:30:10.495 INFO [29116]: _SERVER found -- 04:30:10.495 INFO [29116]: REMOTE_ADDR = 192.168.1.13 -- 04:30:10.495 INFO [29116]: SERVER_NAME = oameye.works.coregrade.com -- 04:30:10.495 INFO [29116]: QUERY_STRING = -- 04:30:10.495 INFO [29116]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 04:30:10.544 INFO [29116]: COREGRADE is stopping... -- 04:30:10.544 DEBUG [29116]: Closing database connection -- 04:30:10.544 SQL [29116]: pgsql_close() -- 10:55:11.265 INFO [29117]: COREGRADE is starting... -- 10:55:11.266 INFO [29117]: Version from config: 1.0 -- 10:55:11.266 DEBUG [29117]: Connecting to database... -- 10:55:11.266 DEBUG [29117]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:55:11.266 SQL [29117]: pgsql_db_connect() -- 10:55:11.271 DEBUG [29117]: Database connection successful -- 10:55:11.271 INFO [29117]: _SERVER found -- 10:55:11.271 INFO [29117]: REMOTE_ADDR = 192.168.1.13 -- 10:55:11.271 INFO [29117]: SERVER_NAME = oameye.works.coregrade.com -- 10:55:11.271 INFO [29117]: QUERY_STRING = -- 10:55:11.271 INFO [29117]: HTTP_X_FORWARDED_FOR = 169.197.108.38 -- 10:55:11.322 INFO [29117]: COREGRADE is stopping... -- 10:55:11.322 DEBUG [29117]: Closing database connection -- 10:55:11.322 SQL [29117]: pgsql_close() -- 12:09:00.614 INFO [29118]: COREGRADE is starting... -- 12:09:00.615 INFO [29118]: Version from config: 1.0 -- 12:09:00.615 DEBUG [29118]: Connecting to database... -- 12:09:00.615 DEBUG [29118]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:00.615 SQL [29118]: pgsql_db_connect() -- 12:09:00.620 DEBUG [29118]: Database connection successful -- 12:09:00.620 INFO [29118]: _SERVER found -- 12:09:00.620 INFO [29118]: REMOTE_ADDR = 192.168.1.13 -- 12:09:00.620 INFO [29118]: SERVER_NAME = oameye.works.coregrade.com -- 12:09:00.620 INFO [29118]: QUERY_STRING = -- 12:09:00.620 INFO [29118]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 12:09:00.662 INFO [29118]: COREGRADE is stopping... -- 12:09:00.662 DEBUG [29118]: Closing database connection -- 12:09:00.662 SQL [29118]: pgsql_close() -- 12:44:09.686 INFO [29119]: COREGRADE is starting... -- 12:44:09.686 INFO [29119]: Version from config: 1.0 -- 12:44:09.686 DEBUG [29119]: Connecting to database... -- 12:44:09.686 DEBUG [29119]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:44:09.686 SQL [29119]: pgsql_db_connect() -- 12:44:09.691 DEBUG [29119]: Database connection successful -- 12:44:09.691 INFO [29119]: _SERVER found -- 12:44:09.691 INFO [29119]: REMOTE_ADDR = 192.168.1.13 -- 12:44:09.691 INFO [29119]: SERVER_NAME = oameye.works.coregrade.com -- 12:44:09.691 INFO [29119]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.2052894695.1585610624 -- 12:44:09.691 INFO [29119]: QUERY_STRING = /auth -- 12:44:09.691 INFO [29119]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:44:09.731 INFO [29119]: COREGRADE is stopping... -- 12:44:09.731 DEBUG [29119]: Closing database connection -- 12:44:09.731 SQL [29119]: pgsql_close() -- 12:44:13.821 INFO [29119]: COREGRADE is starting... -- 12:44:13.821 INFO [29119]: Version from config: 1.0 -- 12:44:13.821 DEBUG [29119]: Connecting to database... -- 12:44:13.821 DEBUG [29119]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:44:13.821 SQL [29119]: pgsql_db_connect() -- 12:44:13.826 DEBUG [29119]: Database connection successful -- 12:44:13.826 INFO [29119]: _SERVER found -- 12:44:13.826 INFO [29119]: REMOTE_ADDR = 192.168.1.13 -- 12:44:13.826 INFO [29119]: SERVER_NAME = oameye.works.coregrade.com -- 12:44:13.826 INFO [29119]: HTTP_COOKIE = ci_session=kotok0h0sv4hfsibfh3g7mn381umfopb; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.2052894695.1585610624 -- 12:44:13.826 INFO [29119]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 12:44:13.826 INFO [29119]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:44:13.837 INFO [29119]: COREGRADE is stopping... -- 12:44:13.837 DEBUG [29119]: Closing database connection -- 12:44:13.837 SQL [29119]: pgsql_close() -- 18:12:51.766 INFO [31922]: COREGRADE is starting... -- 18:12:51.766 INFO [31922]: Version from config: 1.0 -- 18:12:51.766 DEBUG [31922]: Connecting to database... -- 18:12:51.767 DEBUG [31922]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:12:51.767 SQL [31922]: pgsql_db_connect() -- 18:12:51.771 DEBUG [31922]: Database connection successful -- 18:12:51.771 INFO [31922]: _SERVER found -- 18:12:51.771 INFO [31922]: REMOTE_ADDR = 192.168.1.13 -- 18:12:51.771 INFO [31922]: SERVER_NAME = oameye.works.coregrade.com -- 18:12:51.771 INFO [31922]: QUERY_STRING = -- 18:12:51.771 INFO [31922]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 18:12:51.819 INFO [31922]: COREGRADE is stopping... -- 18:12:51.819 DEBUG [31922]: Closing database connection -- 18:12:51.819 SQL [31922]: pgsql_close() -- 18:23:46.889 INFO [29122]: COREGRADE is starting... -- 18:23:46.890 INFO [29122]: Version from config: 1.0 -- 18:23:46.890 DEBUG [29122]: Connecting to database... -- 18:23:46.890 DEBUG [29122]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:23:46.890 SQL [29122]: pgsql_db_connect() -- 18:23:46.894 DEBUG [29122]: Database connection successful -- 18:23:46.894 INFO [29122]: _SERVER found -- 18:23:46.894 INFO [29122]: REMOTE_ADDR = 192.168.1.13 -- 18:23:46.894 INFO [29122]: SERVER_NAME = oameye.works.coregrade.com -- 18:23:46.894 INFO [29122]: QUERY_STRING = /TP/public/index.php -- 18:23:46.894 INFO [29122]: HTTP_X_FORWARDED_FOR = 129.28.41.154 -- 18:23:46.908 INFO [29122]: COREGRADE is stopping... -- 18:23:46.908 DEBUG [29122]: Closing database connection -- 18:23:46.908 SQL [29122]: pgsql_close() -- 18:23:48.645 INFO [29122]: COREGRADE is starting... -- 18:23:48.645 INFO [29122]: Version from config: 1.0 -- 18:23:48.645 DEBUG [29122]: Connecting to database... -- 18:23:48.645 DEBUG [29122]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:23:48.645 SQL [29122]: pgsql_db_connect() -- 18:23:48.649 DEBUG [29122]: Database connection successful -- 18:23:48.649 INFO [29122]: _SERVER found -- 18:23:48.649 INFO [29122]: REMOTE_ADDR = 192.168.1.13 -- 18:23:48.649 INFO [29122]: SERVER_NAME = oameye.works.coregrade.com -- 18:23:48.649 INFO [29122]: QUERY_STRING = /TP/index.php -- 18:23:48.649 INFO [29122]: HTTP_X_FORWARDED_FOR = 129.28.41.154 -- 18:23:48.662 INFO [29122]: COREGRADE is stopping... -- 18:23:48.662 DEBUG [29122]: Closing database connection -- 18:23:48.662 SQL [29122]: pgsql_close() -- 18:23:50.335 INFO [29122]: COREGRADE is starting... -- 18:23:50.336 INFO [29122]: Version from config: 1.0 -- 18:23:50.336 DEBUG [29122]: Connecting to database... -- 18:23:50.336 DEBUG [29122]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:23:50.336 SQL [29122]: pgsql_db_connect() -- 18:23:50.340 DEBUG [29122]: Database connection successful -- 18:23:50.340 INFO [29122]: _SERVER found -- 18:23:50.340 INFO [29122]: REMOTE_ADDR = 192.168.1.13 -- 18:23:50.340 INFO [29122]: SERVER_NAME = oameye.works.coregrade.com -- 18:23:50.340 INFO [29122]: QUERY_STRING = /thinkphp/html/public/index.php -- 18:23:50.340 INFO [29122]: HTTP_X_FORWARDED_FOR = 129.28.41.154 -- 18:23:50.352 INFO [29122]: COREGRADE is stopping... -- 18:23:50.352 DEBUG [29122]: Closing database connection -- 18:23:50.352 SQL [29122]: pgsql_close() -- 18:23:52.214 INFO [29122]: COREGRADE is starting... -- 18:23:52.214 INFO [29122]: Version from config: 1.0 -- 18:23:52.215 DEBUG [29122]: Connecting to database... -- 18:23:52.215 DEBUG [29122]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:23:52.215 SQL [29122]: pgsql_db_connect() -- 18:23:52.219 DEBUG [29122]: Database connection successful -- 18:23:52.219 INFO [29122]: _SERVER found -- 18:23:52.219 INFO [29122]: REMOTE_ADDR = 192.168.1.13 -- 18:23:52.219 INFO [29122]: SERVER_NAME = oameye.works.coregrade.com -- 18:23:52.219 INFO [29122]: QUERY_STRING = /html/public/index.php -- 18:23:52.219 INFO [29122]: HTTP_X_FORWARDED_FOR = 129.28.41.154 -- 18:23:52.231 INFO [29122]: COREGRADE is stopping... -- 18:23:52.231 DEBUG [29122]: Closing database connection -- 18:23:52.231 SQL [29122]: pgsql_close() -- 18:23:53.860 INFO [29122]: COREGRADE is starting... -- 18:23:53.861 INFO [29122]: Version from config: 1.0 -- 18:23:53.861 DEBUG [29122]: Connecting to database... -- 18:23:53.861 DEBUG [29122]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:23:53.861 SQL [29122]: pgsql_db_connect() -- 18:23:53.865 DEBUG [29122]: Database connection successful -- 18:23:53.865 INFO [29122]: _SERVER found -- 18:23:53.865 INFO [29122]: REMOTE_ADDR = 192.168.1.13 -- 18:23:53.865 INFO [29122]: SERVER_NAME = oameye.works.coregrade.com -- 18:23:53.865 INFO [29122]: QUERY_STRING = /public/index.php -- 18:23:53.865 INFO [29122]: HTTP_X_FORWARDED_FOR = 129.28.41.154 -- 18:23:53.877 INFO [29122]: COREGRADE is stopping... -- 18:23:53.877 DEBUG [29122]: Closing database connection -- 18:23:53.877 SQL [29122]: pgsql_close() -- 18:23:55.584 INFO [29122]: COREGRADE is starting... -- 18:23:55.584 INFO [29122]: Version from config: 1.0 -- 18:23:55.584 DEBUG [29122]: Connecting to database... -- 18:23:55.584 DEBUG [29122]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:23:55.584 SQL [29122]: pgsql_db_connect() -- 18:23:55.588 DEBUG [29122]: Database connection successful -- 18:23:55.588 INFO [29122]: _SERVER found -- 18:23:55.588 INFO [29122]: REMOTE_ADDR = 192.168.1.13 -- 18:23:55.588 INFO [29122]: SERVER_NAME = oameye.works.coregrade.com -- 18:23:55.588 INFO [29122]: QUERY_STRING = /TP/html/public/index.php -- 18:23:55.588 INFO [29122]: HTTP_X_FORWARDED_FOR = 129.28.41.154 -- 18:23:55.600 INFO [29122]: COREGRADE is stopping... -- 18:23:55.600 DEBUG [29122]: Closing database connection -- 18:23:55.600 SQL [29122]: pgsql_close() -- 18:23:57.161 INFO [29122]: COREGRADE is starting... -- 18:23:57.161 INFO [29122]: Version from config: 1.0 -- 18:23:57.161 DEBUG [29122]: Connecting to database... -- 18:23:57.161 DEBUG [29122]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:23:57.161 SQL [29122]: pgsql_db_connect() -- 18:23:57.165 DEBUG [29122]: Database connection successful -- 18:23:57.165 INFO [29122]: _SERVER found -- 18:23:57.165 INFO [29122]: REMOTE_ADDR = 192.168.1.13 -- 18:23:57.165 INFO [29122]: SERVER_NAME = oameye.works.coregrade.com -- 18:23:57.165 INFO [29122]: QUERY_STRING = /elrekt.php -- 18:23:57.165 INFO [29122]: HTTP_X_FORWARDED_FOR = 129.28.41.154 -- 18:23:57.177 INFO [29122]: COREGRADE is stopping... -- 18:23:57.177 DEBUG [29122]: Closing database connection -- 18:23:57.177 SQL [29122]: pgsql_close() -- 18:23:58.780 INFO [29122]: COREGRADE is starting... -- 18:23:58.780 INFO [29122]: Version from config: 1.0 -- 18:23:58.780 DEBUG [29122]: Connecting to database... -- 18:23:58.780 DEBUG [29122]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:23:58.780 SQL [29122]: pgsql_db_connect() -- 18:23:58.785 DEBUG [29122]: Database connection successful -- 18:23:58.785 INFO [29122]: _SERVER found -- 18:23:58.785 INFO [29122]: REMOTE_ADDR = 192.168.1.13 -- 18:23:58.785 INFO [29122]: SERVER_NAME = oameye.works.coregrade.com -- 18:23:58.785 INFO [29122]: QUERY_STRING = -- 18:23:58.785 INFO [29122]: HTTP_X_FORWARDED_FOR = 129.28.41.154 -- 18:23:58.828 INFO [29122]: COREGRADE is stopping... -- 18:23:58.828 DEBUG [29122]: Closing database connection -- 18:23:58.828 SQL [29122]: pgsql_close() -- 18:24:01.078 INFO [29122]: COREGRADE is starting... -- 18:24:01.078 INFO [29122]: Version from config: 1.0 -- 18:24:01.078 DEBUG [29122]: Connecting to database... -- 18:24:01.078 DEBUG [29122]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:24:01.078 SQL [29122]: pgsql_db_connect() -- 18:24:01.082 DEBUG [29122]: Database connection successful -- 18:24:01.082 INFO [29122]: _SERVER found -- 18:24:01.082 INFO [29122]: REMOTE_ADDR = 192.168.1.13 -- 18:24:01.082 INFO [29122]: SERVER_NAME = oameye.works.coregrade.com -- 18:24:01.082 INFO [29122]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 18:24:01.082 INFO [29122]: HTTP_X_FORWARDED_FOR = 129.28.41.154 -- 18:24:01.113 INFO [29122]: COREGRADE is stopping... -- 18:24:01.113 DEBUG [29122]: Closing database connection -- 18:24:01.114 SQL [29122]: pgsql_close() -- 18:24:02.819 INFO [29122]: COREGRADE is starting... -- 18:24:02.819 INFO [29122]: Version from config: 1.0 -- 18:24:02.819 DEBUG [29122]: Connecting to database... -- 18:24:02.819 DEBUG [29122]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:24:02.819 SQL [29122]: pgsql_db_connect() -- 18:24:02.823 DEBUG [29122]: Database connection successful -- 18:24:02.823 INFO [29122]: _SERVER found -- 18:24:02.823 INFO [29122]: REMOTE_ADDR = 192.168.1.13 -- 18:24:02.823 INFO [29122]: SERVER_NAME = oameye.works.coregrade.com -- 18:24:02.823 INFO [29122]: QUERY_STRING = s=captcha -- 18:24:02.823 INFO [29122]: HTTP_X_FORWARDED_FOR = 129.28.41.154 -- 18:24:02.854 INFO [29122]: COREGRADE is stopping... -- 18:24:02.854 DEBUG [29122]: Closing database connection -- 18:24:02.854 SQL [29122]: pgsql_close() -- 18:24:04.498 INFO [29122]: COREGRADE is starting... -- 18:24:04.498 INFO [29122]: Version from config: 1.0 -- 18:24:04.498 DEBUG [29122]: Connecting to database... -- 18:24:04.498 DEBUG [29122]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:24:04.498 SQL [29122]: pgsql_db_connect() -- 18:24:04.502 DEBUG [29122]: Database connection successful -- 18:24:04.502 INFO [29122]: _SERVER found -- 18:24:04.502 INFO [29122]: REMOTE_ADDR = 192.168.1.13 -- 18:24:04.502 INFO [29122]: SERVER_NAME = oameye.works.coregrade.com -- 18:24:04.502 INFO [29122]: QUERY_STRING = -- 18:24:04.502 INFO [29122]: HTTP_X_FORWARDED_FOR = 129.28.41.154 -- 18:24:04.533 INFO [29122]: COREGRADE is stopping... -- 18:24:04.533 DEBUG [29122]: Closing database connection -- 18:24:04.533 SQL [29122]: pgsql_close() -- 21:07:15.494 INFO [29116]: COREGRADE is starting... -- 21:07:15.494 INFO [29116]: Version from config: 1.0 -- 21:07:15.494 DEBUG [29116]: Connecting to database... -- 21:07:15.494 DEBUG [29116]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:15.494 SQL [29116]: pgsql_db_connect() -- 21:07:15.499 DEBUG [29116]: Database connection successful -- 21:07:15.499 INFO [29116]: _SERVER found -- 21:07:15.499 INFO [29116]: REMOTE_ADDR = 192.168.1.13 -- 21:07:15.499 INFO [29116]: SERVER_NAME = oameye.works.coregrade.com -- 21:07:15.499 INFO [29116]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624 -- 21:07:15.499 INFO [29116]: QUERY_STRING = /auth -- 21:07:15.499 INFO [29116]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:07:15.540 INFO [29116]: COREGRADE is stopping... -- 21:07:15.540 DEBUG [29116]: Closing database connection -- 21:07:15.540 SQL [29116]: pgsql_close() -- 21:07:15.839 INFO [29116]: COREGRADE is starting... -- 21:07:15.839 INFO [29116]: Version from config: 1.0 -- 21:07:15.839 DEBUG [29116]: Connecting to database... -- 21:07:15.839 DEBUG [29116]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:15.839 SQL [29116]: pgsql_db_connect() -- 21:07:15.843 DEBUG [29116]: Database connection successful -- 21:07:15.843 INFO [29116]: _SERVER found -- 21:07:15.843 INFO [29116]: REMOTE_ADDR = 192.168.1.13 -- 21:07:15.843 INFO [29116]: SERVER_NAME = oameye.works.coregrade.com -- 21:07:15.843 INFO [29116]: HTTP_COOKIE = ci_session=b3r8ckc9salb6mknjjaiuvplc3tb7unj; _ga=GA1.2.2030761402.1585610624 -- 21:07:15.843 INFO [29116]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:07:15.843 INFO [29116]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:07:15.854 INFO [29116]: COREGRADE is stopping... -- 21:07:15.855 DEBUG [29116]: Closing database connection -- 21:07:15.855 SQL [29116]: pgsql_close() -- 21:16:59.835 INFO [29118]: COREGRADE is starting... -- 21:16:59.836 INFO [29118]: Version from config: 1.0 -- 21:16:59.836 DEBUG [29118]: Connecting to database... -- 21:16:59.836 DEBUG [29118]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:59.836 SQL [29118]: pgsql_db_connect() -- 21:16:59.878 INFO [29118]: COREGRADE is starting... -- 21:16:59.878 INFO [29118]: Version from config: 1.0 -- 21:16:59.878 DEBUG [29118]: Connecting to database... -- 21:16:59.878 DEBUG [29118]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:59.878 SQL [29118]: pgsql_db_connect() -- 21:16:59.882 DEBUG [29118]: Database connection successful -- 21:16:59.882 INFO [29118]: _SERVER found -- 21:16:59.882 INFO [29118]: REMOTE_ADDR = 192.168.1.13 -- 21:16:59.882 INFO [29118]: SERVER_NAME = oameye.works.coregrade.com -- 21:16:59.882 INFO [29118]: HTTP_COOKIE = ci_session=b3r8ckc9salb6mknjjaiuvplc3tb7unj; _ga=GA1.2.2030761402.1585610624 -- 21:16:59.882 INFO [29118]: QUERY_STRING = -- 21:16:59.882 INFO [29118]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:59.882 INFO [29118]: SystemStatus()09-09-********~************ -- 21:16:59.882 INFO [29118]: long coregrade_api_main(CVars in, CVars &out) -- 21:16:59.882 INFO [29118]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 21:16:59.882 INFO [29118]: account calls -- 21:16:59.882 INFO [29118]: account_calls() -- 21:16:59.882 INFO [29118]: LoginCoreGradeAccount() -- 21:16:59.882 FLOG_MAX [29118]: REQ_STRING(username) -- 21:16:59.882 FLOG_MAX [29118]: REQ_STRING(password) -- 21:16:59.882 FLOG_MAX [29118]: REQ_STRING(sessionid) -- 21:16:59.882 FLOG_MAX [29118]: long load_db_record( CVars &rec, const char * query, ... ) -- 21:16:59.882 SQL [29118]: pgsql_query() -- 21:16:59.882 SQL [29118]: About to run query: -- 21:16:59.882 SQL [29118]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 21:16:59.886 SQL [29118]: Found rows: 1 -- 21:16:59.886 FLOG_MAX [29118]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 21:16:59.886 INFO [29118]: long SessionCheck(long uid, const char *sessionid, int create ) -- 21:16:59.886 SQL [29118]: pgsql_exec() -- 21:16:59.886 SQL [29118]: About to run query: -- 21:16:59.886 SQL [29118]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 21:16:59.888 SQL [29118]: PQcmdTuples: 1 -- 21:16:59.888 SQL [29118]: Affected rows: 1 -- 21:16:59.888 SQL [29118]: pgsql_exec() -- 21:16:59.888 SQL [29118]: About to run query: -- 21:16:59.888 SQL [29118]: DELETE FROM members_session WHERE member_id=5 -- 21:16:59.888 SQL [29118]: PQcmdTuples: 0 -- 21:16:59.888 SQL [29118]: Affected rows: 0 -- 21:16:59.888 SQL [29118]: pgsql_query() -- 21:16:59.888 SQL [29118]: About to run query: -- 21:16:59.888 SQL [29118]: SELECT * FROM members_session WHERE member_id=5 AND session<>'E0729BE54E15E41A14667323CA023D70' -- 21:16:59.889 SQL [29118]: Found rows: 0 -- 21:16:59.889 SQL [29118]: Found rows: 0 -- 21:16:59.889 FLOG_MAX [29118]: long load_db_record( CVars &rec, const char * query, ... ) -- 21:16:59.889 SQL [29118]: pgsql_query() -- 21:16:59.889 SQL [29118]: About to run query: -- 21:16:59.889 SQL [29118]: SELECT * FROM members_session WHERE member_id=5 AND session='E0729BE54E15E41A14667323CA023D70' -- 21:16:59.889 SQL [29118]: Found rows: 0 -- 21:16:59.889 SQL [29118]: Found rows: 0 -- 21:16:59.889 FLOG_MAX [29118]: insert_db_record() -- 21:16:59.889 SQL [29118]: pgsql_exec() -- 21:16:59.889 SQL [29118]: About to run query: -- 21:16:59.889 SQL [29118]: INSERT INTO members_session (member_id,session) VALUES ('5','E0729BE54E15E41A14667323CA023D70') -- 21:16:59.891 SQL [29118]: PQcmdTuples: 1 -- 21:16:59.891 SQL [29118]: Affected rows: 1 -- 21:16:59.891 FLOG_MAX [29118]: SELECT currval('members_session_id_seq') -- 21:16:59.891 SQL [29118]: pgsql_query() -- 21:16:59.891 SQL [29118]: About to run query: -- 21:16:59.891 SQL [29118]: SELECT currval('members_session_id_seq') -- 21:16:59.891 SQL [29118]: Found rows: 1 -- 21:16:59.891 INFO [29118]: CreateDefaultPage() -- 21:16:59.891 FLOG_MAX [29118]: long load_db_record( CVars &rec, const char * query, ... ) -- 21:16:59.891 SQL [29118]: pgsql_query() -- 21:16:59.891 SQL [29118]: About to run query: -- 21:16:59.891 SQL [29118]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 21:16:59.892 SQL [29118]: Found rows: 1 -- 21:16:59.892 FLOG_MAX [29118]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 21:16:59.892 SQL [29118]: pgsql_query() -- 21:16:59.892 SQL [29118]: About to run query: -- 21:16:59.892 SQL [29118]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 21:16:59.892 SQL [29118]: Found rows: 1 -- 21:16:59.892 INFO [29118]: /CreateDefaultPage() -- 21:16:59.892 INFO [29118]: /LoginCoreGradeAccount() -- 21:16:59.892 INFO [29118]: RET: added=2020-02-05 06:47:23.982154 -- 21:16:59.892 INFO [29118]: RET: email=ameye+11@chiefsoft.com -- 21:16:59.892 INFO [29118]: RET: firstname=Olu -- 21:16:59.892 INFO [29118]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 21:16:59.892 INFO [29118]: RET: id=5 -- 21:16:59.892 INFO [29118]: RET: last_login= -- 21:16:59.892 INFO [29118]: RET: lastname=Amey -- 21:16:59.892 INFO [29118]: RET: loc=192.168.1.13 -- 21:16:59.892 INFO [29118]: RET: member_id=5 -- 21:16:59.892 INFO [29118]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 21:16:59.892 INFO [29118]: RET: phone= -- 21:16:59.892 INFO [29118]: RET: pid= -- 21:16:59.892 INFO [29118]: RET: result=YES I GET TO BACK END -- 21:16:59.892 INFO [29118]: RET: sessionid=E0729BE54E15E41A14667323CA023D70 -- 21:16:59.892 INFO [29118]: RET: status=1 -- 21:16:59.892 INFO [29118]: RET: stauts=OK -- 21:16:59.892 INFO [29118]: RET: username=ameye+11@chiefsoft.com -- 21:16:59.892 INFO [29118]: RET: verified= -- 21:16:59.894 INFO [29118]: COREGRADE is stopping... -- 21:16:59.894 DEBUG [29118]: Closing database connection -- 21:16:59.894 SQL [29118]: pgsql_close() -- 21:16:59.840 DEBUG [29118]: Database connection successful -- 21:16:59.840 INFO [29118]: _SERVER found -- 21:16:59.840 INFO [29118]: REMOTE_ADDR = 192.168.1.13 -- 21:16:59.840 INFO [29118]: SERVER_NAME = oameye.works.coregrade.com -- 21:16:59.840 INFO [29118]: HTTP_COOKIE = ci_session=b3r8ckc9salb6mknjjaiuvplc3tb7unj; _ga=GA1.2.2030761402.1585610624 -- 21:16:59.840 INFO [29118]: QUERY_STRING = /auth -- 21:16:59.840 INFO [29118]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:59.894 INFO [29118]: COREGRADE is stopping... -- 21:16:59.894 DEBUG [29118]: Closing database connection -- 21:16:59.894 SQL [29118]: pgsql_close() -- 21:16:59.913 INFO [29118]: COREGRADE is starting... -- 21:16:59.913 INFO [29118]: Version from config: 1.0 -- 21:16:59.913 DEBUG [29118]: Connecting to database... -- 21:16:59.913 DEBUG [29118]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:59.913 SQL [29118]: pgsql_db_connect() -- 21:16:59.917 DEBUG [29118]: Database connection successful -- 21:16:59.917 INFO [29118]: _SERVER found -- 21:16:59.917 INFO [29118]: REMOTE_ADDR = 192.168.1.13 -- 21:16:59.917 INFO [29118]: SERVER_NAME = oameye.works.coregrade.com -- 21:16:59.917 INFO [29118]: HTTP_COOKIE = ci_session=si3ph1qs42nevfs1ivugr1h59ut2fdp1; _ga=GA1.2.2030761402.1585610624 -- 21:16:59.917 INFO [29118]: QUERY_STRING = /member/index -- 21:16:59.917 INFO [29118]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:59.958 INFO [29118]: COREGRADE is stopping... -- 21:16:59.958 DEBUG [29118]: Closing database connection -- 21:16:59.958 SQL [29118]: pgsql_close() -- 21:29:28.376 INFO [29115]: COREGRADE is starting... -- 21:29:28.376 INFO [29115]: Version from config: 1.0 -- 21:29:28.376 DEBUG [29115]: Connecting to database... -- 21:29:28.376 DEBUG [29115]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:28.376 SQL [29115]: pgsql_db_connect() -- 21:29:28.381 DEBUG [29115]: Database connection successful -- 21:29:28.381 INFO [29115]: _SERVER found -- 21:29:28.381 INFO [29115]: REMOTE_ADDR = 192.168.1.13 -- 21:29:28.381 INFO [29115]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:28.381 INFO [29115]: QUERY_STRING = /solr/admin/info/system -- 21:29:28.381 INFO [29115]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 21:29:28.395 INFO [29115]: COREGRADE is stopping... -- 21:29:28.395 DEBUG [29115]: Closing database connection -- 21:29:28.395 SQL [29115]: pgsql_close() -- 21:37:03.724 INFO [31922]: COREGRADE is starting... -- 21:37:03.725 INFO [31922]: Version from config: 1.0 -- 21:37:03.725 DEBUG [31922]: Connecting to database... -- 21:37:03.725 DEBUG [31922]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:37:03.725 SQL [31922]: pgsql_db_connect() -- 21:37:03.729 DEBUG [31922]: Database connection successful -- 21:37:03.729 INFO [31922]: _SERVER found -- 21:37:03.729 INFO [31922]: REMOTE_ADDR = 192.168.1.13 -- 21:37:03.729 INFO [31922]: SERVER_NAME = oameye.works.coregrade.com -- 21:37:03.729 INFO [31922]: QUERY_STRING = -- 21:37:03.729 INFO [31922]: HTTP_X_FORWARDED_FOR = 137.135.98.175 -- 21:37:03.765 INFO [31922]: COREGRADE is stopping... -- 21:37:03.765 DEBUG [31922]: Closing database connection -- 21:37:03.765 SQL [31922]: pgsql_close() -- 21:41:26.348 INFO [29122]: COREGRADE is starting... -- 21:41:26.348 INFO [29122]: Version from config: 1.0 -- 21:41:26.348 DEBUG [29122]: Connecting to database... -- 21:41:26.348 DEBUG [29122]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:41:26.348 SQL [29122]: pgsql_db_connect() -- 21:41:26.353 DEBUG [29122]: Database connection successful -- 21:41:26.353 INFO [29122]: _SERVER found -- 21:41:26.353 INFO [29122]: REMOTE_ADDR = 192.168.1.13 -- 21:41:26.353 INFO [29122]: SERVER_NAME = oameye.works.coregrade.com -- 21:41:26.353 INFO [29122]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 21:41:26.353 INFO [29122]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 21:41:26.389 INFO [29122]: COREGRADE is stopping... -- 21:41:26.389 DEBUG [29122]: Closing database connection -- 21:41:26.389 SQL [29122]: pgsql_close() -- 21:41:26.459 INFO [29122]: COREGRADE is starting... -- 21:41:26.460 INFO [29122]: Version from config: 1.0 -- 21:41:26.460 DEBUG [29122]: Connecting to database... -- 21:41:26.460 DEBUG [29122]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:41:26.460 SQL [29122]: pgsql_db_connect() -- 21:41:26.464 DEBUG [29122]: Database connection successful -- 21:41:26.464 INFO [29122]: _SERVER found -- 21:41:26.464 INFO [29122]: REMOTE_ADDR = 192.168.1.13 -- 21:41:26.464 INFO [29122]: SERVER_NAME = oameye.works.coregrade.com -- 21:41:26.464 INFO [29122]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 21:41:26.464 INFO [29122]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 21:41:26.496 INFO [29122]: COREGRADE is stopping... -- 21:41:26.496 DEBUG [29122]: Closing database connection -- 21:41:26.496 SQL [29122]: pgsql_close() -- 21:47:53.589 INFO [29116]: COREGRADE is starting... -- 21:47:53.589 INFO [29116]: Version from config: 1.0 -- 21:47:53.589 DEBUG [29116]: Connecting to database... -- 21:47:53.589 DEBUG [29116]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:53.589 SQL [29116]: pgsql_db_connect() -- 21:47:53.594 DEBUG [29116]: Database connection successful -- 21:47:53.594 INFO [29116]: _SERVER found -- 21:47:53.594 INFO [29116]: REMOTE_ADDR = 192.168.1.13 -- 21:47:53.594 INFO [29116]: SERVER_NAME = oameye.works.coregrade.com -- 21:47:53.594 INFO [29116]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 21:47:53.594 INFO [29116]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 21:47:53.630 INFO [29116]: COREGRADE is stopping... -- 21:47:53.630 DEBUG [29116]: Closing database connection -- 21:47:53.630 SQL [29116]: pgsql_close() -- 22:57:23.222 INFO [29117]: COREGRADE is starting... -- 22:57:23.222 INFO [29117]: Version from config: 1.0 -- 22:57:23.222 DEBUG [29117]: Connecting to database... -- 22:57:23.222 DEBUG [29117]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:57:23.222 SQL [29117]: pgsql_db_connect() -- 22:57:23.227 DEBUG [29117]: Database connection successful -- 22:57:23.227 INFO [29117]: _SERVER found -- 22:57:23.227 INFO [29117]: REMOTE_ADDR = 192.168.1.13 -- 22:57:23.227 INFO [29117]: SERVER_NAME = oameye.works.coregrade.com -- 22:57:23.227 INFO [29117]: HTTP_COOKIE = ci_session=si3ph1qs42nevfs1ivugr1h59ut2fdp1; _ga=GA1.2.2030761402.1585610624 -- 22:57:23.227 INFO [29117]: QUERY_STRING = /member/page -- 22:57:23.227 INFO [29117]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:57:23.279 INFO [29117]: COREGRADE is stopping... -- 22:57:23.279 DEBUG [29117]: Closing database connection -- 22:57:23.279 SQL [29117]: pgsql_close() -- 00:32:51.967 INFO [29118]: COREGRADE is starting... -- 00:32:51.968 INFO [29118]: Version from config: 1.0 -- 00:32:51.968 DEBUG [29118]: Connecting to database... -- 00:32:51.968 DEBUG [29118]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:32:51.968 SQL [29118]: pgsql_db_connect() -- 00:32:51.973 DEBUG [29118]: Database connection successful -- 00:32:51.973 INFO [29118]: _SERVER found -- 00:32:51.973 INFO [29118]: REMOTE_ADDR = 192.168.1.13 -- 00:32:51.973 INFO [29118]: SERVER_NAME = oameye.works.coregrade.com -- 00:32:51.973 INFO [29118]: QUERY_STRING = -- 00:32:51.973 INFO [29118]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 00:32:52.013 INFO [29118]: COREGRADE is stopping... -- 00:32:52.013 DEBUG [29118]: Closing database connection -- 00:32:52.013 SQL [29118]: pgsql_close() -- 00:40:06.592 INFO [29119]: COREGRADE is starting... -- 00:40:06.592 INFO [29119]: Version from config: 1.0 -- 00:40:06.592 DEBUG [29119]: Connecting to database... -- 00:40:06.592 DEBUG [29119]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:40:06.593 SQL [29119]: pgsql_db_connect() -- 00:40:06.597 DEBUG [29119]: Database connection successful -- 00:40:06.597 INFO [29119]: _SERVER found -- 00:40:06.597 INFO [29119]: REMOTE_ADDR = 192.168.1.13 -- 00:40:06.597 INFO [29119]: SERVER_NAME = oameye.works.coregrade.com -- 00:40:06.597 INFO [29119]: QUERY_STRING = -- 00:40:06.597 INFO [29119]: HTTP_X_FORWARDED_FOR = 54.39.254.241 -- 00:40:06.630 INFO [29119]: COREGRADE is stopping... -- 00:40:06.630 DEBUG [29119]: Closing database connection -- 00:40:06.630 SQL [29119]: pgsql_close() -- 00:43:52.998 INFO [32141]: COREGRADE is starting... -- 00:43:52.998 INFO [32141]: Version from config: 1.0 -- 00:43:52.998 DEBUG [32141]: Connecting to database... -- 00:43:52.998 DEBUG [32141]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:43:52.998 SQL [32141]: pgsql_db_connect() -- 00:43:53.003 DEBUG [32141]: Database connection successful -- 00:43:53.003 INFO [32141]: _SERVER found -- 00:43:53.003 INFO [32141]: REMOTE_ADDR = 192.168.1.13 -- 00:43:53.003 INFO [32141]: SERVER_NAME = oameye.works.coregrade.com -- 00:43:53.003 INFO [32141]: QUERY_STRING = /TP/public/index.php -- 00:43:53.003 INFO [32141]: HTTP_X_FORWARDED_FOR = 49.235.199.178 -- 00:43:53.018 INFO [32141]: COREGRADE is stopping... -- 00:43:53.018 DEBUG [32141]: Closing database connection -- 00:43:53.018 SQL [32141]: pgsql_close() -- 00:43:54.939 INFO [32141]: COREGRADE is starting... -- 00:43:54.939 INFO [32141]: Version from config: 1.0 -- 00:43:54.939 DEBUG [32141]: Connecting to database... -- 00:43:54.939 DEBUG [32141]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:43:54.939 SQL [32141]: pgsql_db_connect() -- 00:43:54.943 DEBUG [32141]: Database connection successful -- 00:43:54.943 INFO [32141]: _SERVER found -- 00:43:54.943 INFO [32141]: REMOTE_ADDR = 192.168.1.13 -- 00:43:54.943 INFO [32141]: SERVER_NAME = oameye.works.coregrade.com -- 00:43:54.943 INFO [32141]: QUERY_STRING = /TP/index.php -- 00:43:54.943 INFO [32141]: HTTP_X_FORWARDED_FOR = 49.235.199.178 -- 00:43:54.955 INFO [32141]: COREGRADE is stopping... -- 00:43:54.955 DEBUG [32141]: Closing database connection -- 00:43:54.955 SQL [32141]: pgsql_close() -- 00:43:57.164 INFO [29115]: COREGRADE is starting... -- 00:43:57.165 INFO [29115]: Version from config: 1.0 -- 00:43:57.165 DEBUG [29115]: Connecting to database... -- 00:43:57.165 DEBUG [29115]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:43:57.165 SQL [29115]: pgsql_db_connect() -- 00:43:57.169 DEBUG [29115]: Database connection successful -- 00:43:57.169 INFO [29115]: _SERVER found -- 00:43:57.169 INFO [29115]: REMOTE_ADDR = 192.168.1.13 -- 00:43:57.169 INFO [29115]: SERVER_NAME = oameye.works.coregrade.com -- 00:43:57.169 INFO [29115]: QUERY_STRING = /thinkphp/html/public/index.php -- 00:43:57.169 INFO [29115]: HTTP_X_FORWARDED_FOR = 49.235.199.178 -- 00:43:57.183 INFO [29115]: COREGRADE is stopping... -- 00:43:57.183 DEBUG [29115]: Closing database connection -- 00:43:57.183 SQL [29115]: pgsql_close() -- 00:43:59.704 INFO [32141]: COREGRADE is starting... -- 00:43:59.704 INFO [32141]: Version from config: 1.0 -- 00:43:59.704 DEBUG [32141]: Connecting to database... -- 00:43:59.705 DEBUG [32141]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:43:59.705 SQL [32141]: pgsql_db_connect() -- 00:43:59.709 DEBUG [32141]: Database connection successful -- 00:43:59.709 INFO [32141]: _SERVER found -- 00:43:59.709 INFO [32141]: REMOTE_ADDR = 192.168.1.13 -- 00:43:59.709 INFO [32141]: SERVER_NAME = oameye.works.coregrade.com -- 00:43:59.709 INFO [32141]: QUERY_STRING = /html/public/index.php -- 00:43:59.709 INFO [32141]: HTTP_X_FORWARDED_FOR = 49.235.199.178 -- 00:43:59.721 INFO [32141]: COREGRADE is stopping... -- 00:43:59.721 DEBUG [32141]: Closing database connection -- 00:43:59.721 SQL [32141]: pgsql_close() -- 00:44:01.155 INFO [29115]: COREGRADE is starting... -- 00:44:01.155 INFO [29115]: Version from config: 1.0 -- 00:44:01.155 DEBUG [29115]: Connecting to database... -- 00:44:01.155 DEBUG [29115]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:44:01.155 SQL [29115]: pgsql_db_connect() -- 00:44:01.159 DEBUG [29115]: Database connection successful -- 00:44:01.159 INFO [29115]: _SERVER found -- 00:44:01.159 INFO [29115]: REMOTE_ADDR = 192.168.1.13 -- 00:44:01.159 INFO [29115]: SERVER_NAME = oameye.works.coregrade.com -- 00:44:01.159 INFO [29115]: QUERY_STRING = /public/index.php -- 00:44:01.159 INFO [29115]: HTTP_X_FORWARDED_FOR = 49.235.199.178 -- 00:44:01.171 INFO [29115]: COREGRADE is stopping... -- 00:44:01.171 DEBUG [29115]: Closing database connection -- 00:44:01.171 SQL [29115]: pgsql_close() -- 00:44:02.678 INFO [29115]: COREGRADE is starting... -- 00:44:02.678 INFO [29115]: Version from config: 1.0 -- 00:44:02.678 DEBUG [29115]: Connecting to database... -- 00:44:02.678 DEBUG [29115]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:44:02.678 SQL [29115]: pgsql_db_connect() -- 00:44:02.682 DEBUG [29115]: Database connection successful -- 00:44:02.682 INFO [29115]: _SERVER found -- 00:44:02.682 INFO [29115]: REMOTE_ADDR = 192.168.1.13 -- 00:44:02.682 INFO [29115]: SERVER_NAME = oameye.works.coregrade.com -- 00:44:02.682 INFO [29115]: QUERY_STRING = /TP/html/public/index.php -- 00:44:02.682 INFO [29115]: HTTP_X_FORWARDED_FOR = 49.235.199.178 -- 00:44:02.694 INFO [29115]: COREGRADE is stopping... -- 00:44:02.694 DEBUG [29115]: Closing database connection -- 00:44:02.694 SQL [29115]: pgsql_close() -- 00:44:04.289 INFO [32141]: COREGRADE is starting... -- 00:44:04.289 INFO [32141]: Version from config: 1.0 -- 00:44:04.289 DEBUG [32141]: Connecting to database... -- 00:44:04.289 DEBUG [32141]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:44:04.289 SQL [32141]: pgsql_db_connect() -- 00:44:04.293 DEBUG [32141]: Database connection successful -- 00:44:04.293 INFO [32141]: _SERVER found -- 00:44:04.293 INFO [32141]: REMOTE_ADDR = 192.168.1.13 -- 00:44:04.293 INFO [32141]: SERVER_NAME = oameye.works.coregrade.com -- 00:44:04.293 INFO [32141]: QUERY_STRING = /elrekt.php -- 00:44:04.293 INFO [32141]: HTTP_X_FORWARDED_FOR = 49.235.199.178 -- 00:44:04.305 INFO [32141]: COREGRADE is stopping... -- 00:44:04.305 DEBUG [32141]: Closing database connection -- 00:44:04.305 SQL [32141]: pgsql_close() -- 00:44:09.260 INFO [31922]: COREGRADE is starting... -- 00:44:09.261 INFO [31922]: Version from config: 1.0 -- 00:44:09.261 DEBUG [31922]: Connecting to database... -- 00:44:09.261 DEBUG [31922]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:44:09.261 SQL [31922]: pgsql_db_connect() -- 00:44:09.265 DEBUG [31922]: Database connection successful -- 00:44:09.265 INFO [31922]: _SERVER found -- 00:44:09.265 INFO [31922]: REMOTE_ADDR = 192.168.1.13 -- 00:44:09.265 INFO [31922]: SERVER_NAME = oameye.works.coregrade.com -- 00:44:09.265 INFO [31922]: QUERY_STRING = -- 00:44:09.265 INFO [31922]: HTTP_X_FORWARDED_FOR = 49.235.199.178 -- 00:44:09.298 INFO [31922]: COREGRADE is stopping... -- 00:44:09.298 DEBUG [31922]: Closing database connection -- 00:44:09.298 SQL [31922]: pgsql_close() -- 00:44:13.925 INFO [29122]: COREGRADE is starting... -- 00:44:13.925 INFO [29122]: Version from config: 1.0 -- 00:44:13.925 DEBUG [29122]: Connecting to database... -- 00:44:13.925 DEBUG [29122]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:44:13.925 SQL [29122]: pgsql_db_connect() -- 00:44:13.930 DEBUG [29122]: Database connection successful -- 00:44:13.930 INFO [29122]: _SERVER found -- 00:44:13.930 INFO [29122]: REMOTE_ADDR = 192.168.1.13 -- 00:44:13.930 INFO [29122]: SERVER_NAME = oameye.works.coregrade.com -- 00:44:13.930 INFO [29122]: QUERY_STRING = -- 00:44:13.930 INFO [29122]: HTTP_X_FORWARDED_FOR = 49.235.199.178 -- 00:44:13.964 INFO [29122]: COREGRADE is stopping... -- 00:44:13.964 DEBUG [29122]: Closing database connection -- 00:44:13.964 SQL [29122]: pgsql_close() -- 02:50:45.775 INFO [29116]: COREGRADE is starting... -- 02:50:45.776 INFO [29116]: Version from config: 1.0 -- 02:50:45.776 DEBUG [29116]: Connecting to database... -- 02:50:45.776 DEBUG [29116]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:50:45.776 SQL [29116]: pgsql_db_connect() -- 02:50:45.780 DEBUG [29116]: Database connection successful -- 02:50:45.780 INFO [29116]: _SERVER found -- 02:50:45.780 INFO [29116]: REMOTE_ADDR = 192.168.1.13 -- 02:50:45.780 INFO [29116]: SERVER_NAME = oameye.works.coregrade.com -- 02:50:45.780 INFO [29116]: QUERY_STRING = /.well-known/acme-challenge/9-T6nQ6nKzH0wfb6uUZnS5I-_PFDBjw0Zp6Gs7CA8vk -- 02:50:45.780 INFO [29116]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 02:50:45.795 INFO [29116]: COREGRADE is stopping... -- 02:50:45.795 DEBUG [29116]: Closing database connection -- 02:50:45.795 SQL [29116]: pgsql_close() -- 02:50:45.991 INFO [29116]: COREGRADE is starting... -- 02:50:45.991 INFO [29116]: Version from config: 1.0 -- 02:50:45.991 DEBUG [29116]: Connecting to database... -- 02:50:45.991 DEBUG [29116]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:50:45.991 SQL [29116]: pgsql_db_connect() -- 02:50:45.995 DEBUG [29116]: Database connection successful -- 02:50:45.995 INFO [29116]: _SERVER found -- 02:50:45.995 INFO [29116]: REMOTE_ADDR = 192.168.1.13 -- 02:50:45.995 INFO [29116]: SERVER_NAME = oameye.works.coregrade.com -- 02:50:45.995 INFO [29116]: QUERY_STRING = /.well-known/acme-challenge/9-T6nQ6nKzH0wfb6uUZnS5I-_PFDBjw0Zp6Gs7CA8vk -- 02:50:45.995 INFO [29116]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 02:50:46.006 INFO [29116]: COREGRADE is stopping... -- 02:50:46.006 DEBUG [29116]: Closing database connection -- 02:50:46.006 SQL [29116]: pgsql_close() -- 02:50:46.157 INFO [29115]: COREGRADE is starting... -- 02:50:46.157 INFO [29115]: Version from config: 1.0 -- 02:50:46.157 DEBUG [29115]: Connecting to database... -- 02:50:46.157 DEBUG [29115]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:50:46.157 SQL [29115]: pgsql_db_connect() -- 02:50:46.161 DEBUG [29115]: Database connection successful -- 02:50:46.161 INFO [29115]: _SERVER found -- 02:50:46.161 INFO [29115]: REMOTE_ADDR = 192.168.1.13 -- 02:50:46.161 INFO [29115]: SERVER_NAME = oameye.works.coregrade.com -- 02:50:46.161 INFO [29115]: QUERY_STRING = /.well-known/acme-challenge/9-T6nQ6nKzH0wfb6uUZnS5I-_PFDBjw0Zp6Gs7CA8vk -- 02:50:46.161 INFO [29115]: HTTP_X_FORWARDED_FOR = 52.28.236.88 -- 02:50:46.175 INFO [29115]: COREGRADE is stopping... -- 02:50:46.175 DEBUG [29115]: Closing database connection -- 02:50:46.175 SQL [29115]: pgsql_close() -- 04:31:32.015 INFO [31922]: COREGRADE is starting... -- 04:31:32.016 INFO [31922]: Version from config: 1.0 -- 04:31:32.016 DEBUG [31922]: Connecting to database... -- 04:31:32.016 DEBUG [31922]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:31:32.016 SQL [31922]: pgsql_db_connect() -- 04:31:32.021 DEBUG [31922]: Database connection successful -- 04:31:32.021 INFO [31922]: _SERVER found -- 04:31:32.021 INFO [31922]: REMOTE_ADDR = 192.168.1.13 -- 04:31:32.021 INFO [31922]: SERVER_NAME = oameye.works.coregrade.com -- 04:31:32.021 INFO [31922]: QUERY_STRING = -- 04:31:32.021 INFO [31922]: HTTP_X_FORWARDED_FOR = 47.101.129.245 -- 04:31:32.058 INFO [31922]: COREGRADE is stopping... -- 04:31:32.058 DEBUG [31922]: Closing database connection -- 04:31:32.058 SQL [31922]: pgsql_close() -- 05:44:50.748 INFO [29122]: COREGRADE is starting... -- 05:44:50.748 INFO [29122]: Version from config: 1.0 -- 05:44:50.748 DEBUG [29122]: Connecting to database... -- 05:44:50.748 DEBUG [29122]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:44:50.749 SQL [29122]: pgsql_db_connect() -- 05:44:50.753 DEBUG [29122]: Database connection successful -- 05:44:50.753 INFO [29122]: _SERVER found -- 05:44:50.753 INFO [29122]: REMOTE_ADDR = 192.168.1.13 -- 05:44:50.753 INFO [29122]: SERVER_NAME = oameye.works.coregrade.com -- 05:44:50.753 INFO [29122]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 05:44:50.753 INFO [29122]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 05:44:50.768 INFO [29122]: COREGRADE is stopping... -- 05:44:50.768 DEBUG [29122]: Closing database connection -- 05:44:50.768 SQL [29122]: pgsql_close() -- 06:53:16.334 INFO [5940]: COREGRADE is starting... -- 06:53:16.335 INFO [5940]: Version from config: 1.0 -- 06:53:16.335 DEBUG [5940]: Connecting to database... -- 06:53:16.335 DEBUG [5940]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:53:16.335 SQL [5940]: pgsql_db_connect() -- 06:53:16.339 DEBUG [5940]: Database connection successful -- 06:53:16.339 INFO [5940]: _SERVER found -- 06:53:16.339 INFO [5940]: REMOTE_ADDR = 192.168.1.13 -- 06:53:16.339 INFO [5940]: SERVER_NAME = oameye.works.coregrade.com -- 06:53:16.339 INFO [5940]: QUERY_STRING = -- 06:53:16.339 INFO [5940]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 06:53:16.388 INFO [5940]: COREGRADE is stopping... -- 06:53:16.388 DEBUG [5940]: Closing database connection -- 06:53:16.388 SQL [5940]: pgsql_close() -- 06:57:10.947 INFO [5941]: COREGRADE is starting... -- 06:57:10.948 INFO [5941]: Version from config: 1.0 -- 06:57:10.948 DEBUG [5941]: Connecting to database... -- 06:57:10.948 DEBUG [5941]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:57:10.948 SQL [5941]: pgsql_db_connect() -- 06:57:10.952 DEBUG [5941]: Database connection successful -- 06:57:10.952 INFO [5941]: _SERVER found -- 06:57:10.952 INFO [5941]: REMOTE_ADDR = 192.168.1.13 -- 06:57:10.952 INFO [5941]: SERVER_NAME = oameye.works.coregrade.com -- 06:57:10.952 INFO [5941]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 06:57:10.952 INFO [5941]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 06:57:10.967 INFO [5941]: COREGRADE is stopping... -- 06:57:10.967 DEBUG [5941]: Closing database connection -- 06:57:10.967 SQL [5941]: pgsql_close() -- 08:55:41.361 INFO [29117]: COREGRADE is starting... -- 08:55:41.362 INFO [29117]: Version from config: 1.0 -- 08:55:41.362 DEBUG [29117]: Connecting to database... -- 08:55:41.362 DEBUG [29117]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:55:41.362 SQL [29117]: pgsql_db_connect() -- 08:55:41.366 DEBUG [29117]: Database connection successful -- 08:55:41.366 INFO [29117]: _SERVER found -- 08:55:41.366 INFO [29117]: REMOTE_ADDR = 192.168.1.13 -- 08:55:41.366 INFO [29117]: SERVER_NAME = oameye.works.coregrade.com -- 08:55:41.366 INFO [29117]: QUERY_STRING = -- 08:55:41.366 INFO [29117]: HTTP_X_FORWARDED_FOR = 124.156.51.16 -- 08:55:41.410 INFO [29117]: COREGRADE is stopping... -- 08:55:41.410 DEBUG [29117]: Closing database connection -- 08:55:41.410 SQL [29117]: pgsql_close() -- 08:55:45.240 INFO [29117]: COREGRADE is starting... -- 08:55:45.240 INFO [29117]: Version from config: 1.0 -- 08:55:45.240 DEBUG [29117]: Connecting to database... -- 08:55:45.240 DEBUG [29117]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:55:45.240 SQL [29117]: pgsql_db_connect() -- 08:55:45.244 DEBUG [29117]: Database connection successful -- 08:55:45.244 INFO [29117]: _SERVER found -- 08:55:45.244 INFO [29117]: REMOTE_ADDR = 192.168.1.13 -- 08:55:45.244 INFO [29117]: SERVER_NAME = oameye.works.coregrade.com -- 08:55:45.244 INFO [29117]: QUERY_STRING = -- 08:55:45.244 INFO [29117]: HTTP_X_FORWARDED_FOR = 124.156.51.16 -- 08:55:45.275 INFO [29117]: COREGRADE is stopping... -- 08:55:45.275 DEBUG [29117]: Closing database connection -- 08:55:45.275 SQL [29117]: pgsql_close() -- 12:48:58.385 INFO [29118]: COREGRADE is starting... -- 12:48:58.385 INFO [29118]: Version from config: 1.0 -- 12:48:58.385 DEBUG [29118]: Connecting to database... -- 12:48:58.385 DEBUG [29118]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:48:58.386 SQL [29118]: pgsql_db_connect() -- 12:48:58.391 DEBUG [29118]: Database connection successful -- 12:48:58.391 INFO [29118]: _SERVER found -- 12:48:58.391 INFO [29118]: REMOTE_ADDR = 192.168.1.13 -- 12:48:58.391 INFO [29118]: SERVER_NAME = oameye.works.coregrade.com -- 12:48:58.391 INFO [29118]: QUERY_STRING = -- 12:48:58.391 INFO [29118]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 12:48:58.433 INFO [29118]: COREGRADE is stopping... -- 12:48:58.433 DEBUG [29118]: Closing database connection -- 12:48:58.433 SQL [29118]: pgsql_close() -- 13:47:48.854 INFO [29116]: COREGRADE is starting... -- 13:47:48.855 INFO [29116]: Version from config: 1.0 -- 13:47:48.855 DEBUG [29116]: Connecting to database... -- 13:47:48.855 DEBUG [29116]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:47:48.855 SQL [29116]: pgsql_db_connect() -- 13:47:48.860 DEBUG [29116]: Database connection successful -- 13:47:48.860 INFO [29116]: _SERVER found -- 13:47:48.860 INFO [29116]: REMOTE_ADDR = 192.168.1.13 -- 13:47:48.860 INFO [29116]: SERVER_NAME = oameye.works.coregrade.com -- 13:47:48.860 INFO [29116]: QUERY_STRING = /favicon.ico -- 13:47:48.860 INFO [29116]: HTTP_X_FORWARDED_FOR = 107.189.11.181 -- 13:47:48.874 INFO [29116]: COREGRADE is stopping... -- 13:47:48.874 DEBUG [29116]: Closing database connection -- 13:47:48.874 SQL [29116]: pgsql_close() -- 18:39:11.082 INFO [29119]: COREGRADE is starting... -- 18:39:11.083 INFO [29119]: Version from config: 1.0 -- 18:39:11.083 DEBUG [29119]: Connecting to database... -- 18:39:11.083 DEBUG [29119]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:11.083 SQL [29119]: pgsql_db_connect() -- 18:39:11.088 DEBUG [29119]: Database connection successful -- 18:39:11.088 INFO [29119]: _SERVER found -- 18:39:11.088 INFO [29119]: REMOTE_ADDR = 192.168.1.13 -- 18:39:11.088 INFO [29119]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:11.088 INFO [29119]: QUERY_STRING = /TP/public/index.php -- 18:39:11.088 INFO [29119]: HTTP_X_FORWARDED_FOR = 154.27.68.218 -- 18:39:11.103 INFO [29119]: COREGRADE is stopping... -- 18:39:11.103 DEBUG [29119]: Closing database connection -- 18:39:11.103 SQL [29119]: pgsql_close() -- 18:39:16.810 INFO [29115]: COREGRADE is starting... -- 18:39:16.810 INFO [29115]: Version from config: 1.0 -- 18:39:16.810 DEBUG [29115]: Connecting to database... -- 18:39:16.810 DEBUG [29115]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:16.810 SQL [29115]: pgsql_db_connect() -- 18:39:16.814 DEBUG [29115]: Database connection successful -- 18:39:16.814 INFO [29115]: _SERVER found -- 18:39:16.814 INFO [29115]: REMOTE_ADDR = 192.168.1.13 -- 18:39:16.814 INFO [29115]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:16.814 INFO [29115]: QUERY_STRING = /TP/index.php -- 18:39:16.814 INFO [29115]: HTTP_X_FORWARDED_FOR = 154.27.68.218 -- 18:39:16.829 INFO [29115]: COREGRADE is stopping... -- 18:39:16.829 DEBUG [29115]: Closing database connection -- 18:39:16.829 SQL [29115]: pgsql_close() -- 18:39:22.576 INFO [31922]: COREGRADE is starting... -- 18:39:22.576 INFO [31922]: Version from config: 1.0 -- 18:39:22.576 DEBUG [31922]: Connecting to database... -- 18:39:22.576 DEBUG [31922]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:22.576 SQL [31922]: pgsql_db_connect() -- 18:39:22.580 DEBUG [31922]: Database connection successful -- 18:39:22.580 INFO [31922]: _SERVER found -- 18:39:22.580 INFO [31922]: REMOTE_ADDR = 192.168.1.13 -- 18:39:22.580 INFO [31922]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:22.580 INFO [31922]: QUERY_STRING = /thinkphp/html/public/index.php -- 18:39:22.580 INFO [31922]: HTTP_X_FORWARDED_FOR = 154.27.68.218 -- 18:39:22.593 INFO [31922]: COREGRADE is stopping... -- 18:39:22.593 DEBUG [31922]: Closing database connection -- 18:39:22.593 SQL [31922]: pgsql_close() -- 18:39:26.886 INFO [31922]: COREGRADE is starting... -- 18:39:26.886 INFO [31922]: Version from config: 1.0 -- 18:39:26.886 DEBUG [31922]: Connecting to database... -- 18:39:26.886 DEBUG [31922]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:26.886 SQL [31922]: pgsql_db_connect() -- 18:39:26.890 DEBUG [31922]: Database connection successful -- 18:39:26.890 INFO [31922]: _SERVER found -- 18:39:26.890 INFO [31922]: REMOTE_ADDR = 192.168.1.13 -- 18:39:26.890 INFO [31922]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:26.890 INFO [31922]: QUERY_STRING = /html/public/index.php -- 18:39:26.890 INFO [31922]: HTTP_X_FORWARDED_FOR = 154.27.68.218 -- 18:39:26.901 INFO [31922]: COREGRADE is stopping... -- 18:39:26.901 DEBUG [31922]: Closing database connection -- 18:39:26.901 SQL [31922]: pgsql_close() -- 18:39:30.747 INFO [31922]: COREGRADE is starting... -- 18:39:30.747 INFO [31922]: Version from config: 1.0 -- 18:39:30.747 DEBUG [31922]: Connecting to database... -- 18:39:30.747 DEBUG [31922]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:30.747 SQL [31922]: pgsql_db_connect() -- 18:39:30.752 DEBUG [31922]: Database connection successful -- 18:39:30.752 INFO [31922]: _SERVER found -- 18:39:30.752 INFO [31922]: REMOTE_ADDR = 192.168.1.13 -- 18:39:30.752 INFO [31922]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:30.752 INFO [31922]: QUERY_STRING = /public/index.php -- 18:39:30.752 INFO [31922]: HTTP_X_FORWARDED_FOR = 154.27.68.218 -- 18:39:30.763 INFO [31922]: COREGRADE is stopping... -- 18:39:30.763 DEBUG [31922]: Closing database connection -- 18:39:30.763 SQL [31922]: pgsql_close() -- 18:39:34.055 INFO [31922]: COREGRADE is starting... -- 18:39:34.056 INFO [31922]: Version from config: 1.0 -- 18:39:34.056 DEBUG [31922]: Connecting to database... -- 18:39:34.056 DEBUG [31922]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:34.056 SQL [31922]: pgsql_db_connect() -- 18:39:34.060 DEBUG [31922]: Database connection successful -- 18:39:34.060 INFO [31922]: _SERVER found -- 18:39:34.060 INFO [31922]: REMOTE_ADDR = 192.168.1.13 -- 18:39:34.060 INFO [31922]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:34.060 INFO [31922]: QUERY_STRING = /TP/html/public/index.php -- 18:39:34.060 INFO [31922]: HTTP_X_FORWARDED_FOR = 154.27.68.218 -- 18:39:34.071 INFO [31922]: COREGRADE is stopping... -- 18:39:34.071 DEBUG [31922]: Closing database connection -- 18:39:34.071 SQL [31922]: pgsql_close() -- 18:39:40.065 INFO [29122]: COREGRADE is starting... -- 18:39:40.065 INFO [29122]: Version from config: 1.0 -- 18:39:40.065 DEBUG [29122]: Connecting to database... -- 18:39:40.066 DEBUG [29122]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:40.066 SQL [29122]: pgsql_db_connect() -- 18:39:40.070 DEBUG [29122]: Database connection successful -- 18:39:40.070 INFO [29122]: _SERVER found -- 18:39:40.070 INFO [29122]: REMOTE_ADDR = 192.168.1.13 -- 18:39:40.070 INFO [29122]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:40.070 INFO [29122]: QUERY_STRING = /elrekt.php -- 18:39:40.070 INFO [29122]: HTTP_X_FORWARDED_FOR = 154.27.68.218 -- 18:39:40.082 INFO [29122]: COREGRADE is stopping... -- 18:39:40.082 DEBUG [29122]: Closing database connection -- 18:39:40.082 SQL [29122]: pgsql_close() -- 18:39:46.950 INFO [5940]: COREGRADE is starting... -- 18:39:46.950 INFO [5940]: Version from config: 1.0 -- 18:39:46.950 DEBUG [5940]: Connecting to database... -- 18:39:46.950 DEBUG [5940]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:46.950 SQL [5940]: pgsql_db_connect() -- 18:39:46.954 DEBUG [5940]: Database connection successful -- 18:39:46.954 INFO [5940]: _SERVER found -- 18:39:46.954 INFO [5940]: REMOTE_ADDR = 192.168.1.13 -- 18:39:46.954 INFO [5940]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:46.954 INFO [5940]: QUERY_STRING = -- 18:39:46.954 INFO [5940]: HTTP_X_FORWARDED_FOR = 154.27.68.218 -- 18:39:46.992 INFO [5940]: COREGRADE is stopping... -- 18:39:46.992 DEBUG [5940]: Closing database connection -- 18:39:46.992 SQL [5940]: pgsql_close() -- 18:39:52.468 INFO [5941]: COREGRADE is starting... -- 18:39:52.469 INFO [5941]: Version from config: 1.0 -- 18:39:52.469 DEBUG [5941]: Connecting to database... -- 18:39:52.469 DEBUG [5941]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:52.469 SQL [5941]: pgsql_db_connect() -- 18:39:52.473 DEBUG [5941]: Database connection successful -- 18:39:52.473 INFO [5941]: _SERVER found -- 18:39:52.473 INFO [5941]: REMOTE_ADDR = 192.168.1.13 -- 18:39:52.473 INFO [5941]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:52.473 INFO [5941]: QUERY_STRING = -- 18:39:52.473 INFO [5941]: HTTP_X_FORWARDED_FOR = 154.27.68.218 -- 18:39:52.516 INFO [5941]: COREGRADE is stopping... -- 18:39:52.516 DEBUG [5941]: Closing database connection -- 18:39:52.516 SQL [5941]: pgsql_close() -- 19:54:44.912 INFO [5942]: COREGRADE is starting... -- 19:54:44.913 INFO [5942]: Version from config: 1.0 -- 19:54:44.913 DEBUG [5942]: Connecting to database... -- 19:54:44.913 DEBUG [5942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:54:44.913 SQL [5942]: pgsql_db_connect() -- 19:54:44.917 DEBUG [5942]: Database connection successful -- 19:54:44.917 INFO [5942]: _SERVER found -- 19:54:44.917 INFO [5942]: REMOTE_ADDR = 192.168.1.13 -- 19:54:44.917 INFO [5942]: SERVER_NAME = oameye.works.coregrade.com -- 19:54:44.917 INFO [5942]: QUERY_STRING = -- 19:54:44.917 INFO [5942]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 19:54:44.955 INFO [5942]: COREGRADE is stopping... -- 19:54:44.955 DEBUG [5942]: Closing database connection -- 19:54:44.955 SQL [5942]: pgsql_close() -- 22:05:56.739 INFO [29117]: COREGRADE is starting... -- 22:05:56.739 INFO [29117]: Version from config: 1.0 -- 22:05:56.739 DEBUG [29117]: Connecting to database... -- 22:05:56.739 DEBUG [29117]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:05:56.739 SQL [29117]: pgsql_db_connect() -- 22:05:56.744 DEBUG [29117]: Database connection successful -- 22:05:56.744 INFO [29117]: _SERVER found -- 22:05:56.744 INFO [29117]: REMOTE_ADDR = 192.168.1.13 -- 22:05:56.744 INFO [29117]: SERVER_NAME = oameye.works.coregrade.com -- 22:05:56.744 INFO [29117]: QUERY_STRING = -- 22:05:56.744 INFO [29117]: HTTP_X_FORWARDED_FOR = 144.91.108.73 -- 22:05:56.782 INFO [29117]: COREGRADE is stopping... -- 22:05:56.782 DEBUG [29117]: Closing database connection -- 22:05:56.782 SQL [29117]: pgsql_close() -- 02:21:48.565 INFO [29118]: COREGRADE is starting... -- 02:21:48.566 INFO [29118]: Version from config: 1.0 -- 02:21:48.566 DEBUG [29118]: Connecting to database... -- 02:21:48.566 DEBUG [29118]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:21:48.566 SQL [29118]: pgsql_db_connect() -- 02:21:48.571 DEBUG [29118]: Database connection successful -- 02:21:48.571 INFO [29118]: _SERVER found -- 02:21:48.571 INFO [29118]: REMOTE_ADDR = 192.168.1.13 -- 02:21:48.571 INFO [29118]: SERVER_NAME = tokslaw.works.coregrade.com -- 02:21:48.571 INFO [29118]: QUERY_STRING = -- 02:21:48.571 INFO [29118]: HTTP_X_FORWARDED_FOR = 167.71.88.233 -- 02:21:48.612 INFO [29118]: COREGRADE is stopping... -- 02:21:48.612 DEBUG [29118]: Closing database connection -- 02:21:48.612 SQL [29118]: pgsql_close() -- 02:40:46.007 INFO [29119]: COREGRADE is starting... -- 02:40:46.007 INFO [29119]: Version from config: 1.0 -- 02:40:46.007 DEBUG [29119]: Connecting to database... -- 02:40:46.007 DEBUG [29119]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:40:46.007 SQL [29119]: pgsql_db_connect() -- 02:40:46.011 DEBUG [29119]: Database connection successful -- 02:40:46.011 INFO [29119]: _SERVER found -- 02:40:46.011 INFO [29119]: REMOTE_ADDR = 192.168.1.13 -- 02:40:46.011 INFO [29119]: SERVER_NAME = oameye.works.coregrade.com -- 02:40:46.011 INFO [29119]: QUERY_STRING = -- 02:40:46.011 INFO [29119]: HTTP_X_FORWARDED_FOR = 165.227.110.192 -- 02:40:46.045 INFO [29119]: COREGRADE is stopping... -- 02:40:46.045 DEBUG [29119]: Closing database connection -- 02:40:46.045 SQL [29119]: pgsql_close() -- 02:42:02.538 INFO [29115]: COREGRADE is starting... -- 02:42:02.538 INFO [29115]: Version from config: 1.0 -- 02:42:02.538 DEBUG [29115]: Connecting to database... -- 02:42:02.538 DEBUG [29115]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:42:02.538 SQL [29115]: pgsql_db_connect() -- 02:42:02.542 DEBUG [29115]: Database connection successful -- 02:42:02.542 INFO [29115]: _SERVER found -- 02:42:02.542 INFO [29115]: REMOTE_ADDR = 192.168.1.13 -- 02:42:02.542 INFO [29115]: SERVER_NAME = oameye.works.coregrade.com -- 02:42:02.542 INFO [29115]: QUERY_STRING = -- 02:42:02.542 INFO [29115]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 02:42:02.579 INFO [29115]: COREGRADE is stopping... -- 02:42:02.580 DEBUG [29115]: Closing database connection -- 02:42:02.580 SQL [29115]: pgsql_close() -- 02:51:25.635 INFO [31922]: COREGRADE is starting... -- 02:51:25.635 INFO [31922]: Version from config: 1.0 -- 02:51:25.635 DEBUG [31922]: Connecting to database... -- 02:51:25.635 DEBUG [31922]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:51:25.635 SQL [31922]: pgsql_db_connect() -- 02:51:25.640 DEBUG [31922]: Database connection successful -- 02:51:25.640 INFO [31922]: _SERVER found -- 02:51:25.640 INFO [31922]: REMOTE_ADDR = 192.168.1.13 -- 02:51:25.640 INFO [31922]: SERVER_NAME = oameye.works.coregrade.com -- 02:51:25.640 INFO [31922]: QUERY_STRING = /.well-known/acme-challenge/XKzDWtT3_W1njdY-OQZ2-c2enSfMDTXmNx-axaSegpo -- 02:51:25.640 INFO [31922]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 02:51:25.653 INFO [31922]: COREGRADE is stopping... -- 02:51:25.653 DEBUG [31922]: Closing database connection -- 02:51:25.653 SQL [31922]: pgsql_close() -- 02:51:25.844 INFO [31922]: COREGRADE is starting... -- 02:51:25.844 INFO [31922]: Version from config: 1.0 -- 02:51:25.844 DEBUG [31922]: Connecting to database... -- 02:51:25.844 DEBUG [31922]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:51:25.844 SQL [31922]: pgsql_db_connect() -- 02:51:25.848 DEBUG [31922]: Database connection successful -- 02:51:25.848 INFO [31922]: _SERVER found -- 02:51:25.848 INFO [31922]: REMOTE_ADDR = 192.168.1.13 -- 02:51:25.848 INFO [31922]: SERVER_NAME = oameye.works.coregrade.com -- 02:51:25.848 INFO [31922]: QUERY_STRING = /.well-known/acme-challenge/XKzDWtT3_W1njdY-OQZ2-c2enSfMDTXmNx-axaSegpo -- 02:51:25.848 INFO [31922]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 02:51:25.860 INFO [31922]: COREGRADE is stopping... -- 02:51:25.860 DEBUG [31922]: Closing database connection -- 02:51:25.860 SQL [31922]: pgsql_close() -- 02:51:25.962 INFO [31922]: COREGRADE is starting... -- 02:51:25.962 INFO [31922]: Version from config: 1.0 -- 02:51:25.962 DEBUG [31922]: Connecting to database... -- 02:51:25.962 DEBUG [31922]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:51:25.962 SQL [31922]: pgsql_db_connect() -- 02:51:25.967 DEBUG [31922]: Database connection successful -- 02:51:25.967 INFO [31922]: _SERVER found -- 02:51:25.967 INFO [31922]: REMOTE_ADDR = 192.168.1.13 -- 02:51:25.967 INFO [31922]: SERVER_NAME = oameye.works.coregrade.com -- 02:51:25.967 INFO [31922]: QUERY_STRING = /.well-known/acme-challenge/XKzDWtT3_W1njdY-OQZ2-c2enSfMDTXmNx-axaSegpo -- 02:51:25.967 INFO [31922]: HTTP_X_FORWARDED_FOR = 52.28.236.88 -- 02:51:25.978 INFO [31922]: COREGRADE is stopping... -- 02:51:25.978 DEBUG [31922]: Closing database connection -- 02:51:25.978 SQL [31922]: pgsql_close() -- 02:51:25.987 INFO [5940]: COREGRADE is starting... -- 02:51:25.987 INFO [5940]: Version from config: 1.0 -- 02:51:25.988 DEBUG [5940]: Connecting to database... -- 02:51:25.988 DEBUG [5940]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:51:25.988 SQL [5940]: pgsql_db_connect() -- 02:51:25.992 DEBUG [5940]: Database connection successful -- 02:51:25.992 INFO [5940]: _SERVER found -- 02:51:25.992 INFO [5940]: REMOTE_ADDR = 192.168.1.13 -- 02:51:25.992 INFO [5940]: SERVER_NAME = oameye.works.coregrade.com -- 02:51:25.992 INFO [5940]: QUERY_STRING = /.well-known/acme-challenge/XKzDWtT3_W1njdY-OQZ2-c2enSfMDTXmNx-axaSegpo -- 02:51:25.992 INFO [5940]: HTTP_X_FORWARDED_FOR = 34.209.232.166 -- 02:51:26.005 INFO [5940]: COREGRADE is stopping... -- 02:51:26.005 DEBUG [5940]: Closing database connection -- 02:51:26.005 SQL [5940]: pgsql_close() -- 03:03:54.277 INFO [5941]: COREGRADE is starting... -- 03:03:54.277 INFO [5941]: Version from config: 1.0 -- 03:03:54.277 DEBUG [5941]: Connecting to database... -- 03:03:54.277 DEBUG [5941]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:03:54.277 SQL [5941]: pgsql_db_connect() -- 03:03:54.281 DEBUG [5941]: Database connection successful -- 03:03:54.281 INFO [5941]: _SERVER found -- 03:03:54.281 INFO [5941]: REMOTE_ADDR = 192.168.1.13 -- 03:03:54.281 INFO [5941]: SERVER_NAME = oameye.works.coregrade.com -- 03:03:54.281 INFO [5941]: QUERY_STRING = /robots.txt -- 03:03:54.281 INFO [5941]: HTTP_X_FORWARDED_FOR = 66.249.64.184 -- 03:03:54.293 INFO [5941]: COREGRADE is stopping... -- 03:03:54.293 DEBUG [5941]: Closing database connection -- 03:03:54.293 SQL [5941]: pgsql_close() -- 03:03:54.401 INFO [5941]: COREGRADE is starting... -- 03:03:54.401 INFO [5941]: Version from config: 1.0 -- 03:03:54.401 DEBUG [5941]: Connecting to database... -- 03:03:54.401 DEBUG [5941]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:03:54.401 SQL [5941]: pgsql_db_connect() -- 03:03:54.405 DEBUG [5941]: Database connection successful -- 03:03:54.405 INFO [5941]: _SERVER found -- 03:03:54.405 INFO [5941]: REMOTE_ADDR = 192.168.1.13 -- 03:03:54.405 INFO [5941]: SERVER_NAME = oameye.works.coregrade.com -- 03:03:54.405 INFO [5941]: QUERY_STRING = screen=auth/auth-login -- 03:03:54.405 INFO [5941]: HTTP_X_FORWARDED_FOR = 66.249.64.180 -- 03:03:54.417 INFO [5941]: COREGRADE is stopping... -- 03:03:54.417 DEBUG [5941]: Closing database connection -- 03:03:54.417 SQL [5941]: pgsql_close() -- 07:19:41.934 INFO [5942]: COREGRADE is starting... -- 07:19:41.935 INFO [5942]: Version from config: 1.0 -- 07:19:41.935 DEBUG [5942]: Connecting to database... -- 07:19:41.935 DEBUG [5942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:19:41.935 SQL [5942]: pgsql_db_connect() -- 07:19:41.940 DEBUG [5942]: Database connection successful -- 07:19:41.940 INFO [5942]: _SERVER found -- 07:19:41.940 INFO [5942]: REMOTE_ADDR = 192.168.1.13 -- 07:19:41.940 INFO [5942]: SERVER_NAME = oameye.works.coregrade.com -- 07:19:41.940 INFO [5942]: QUERY_STRING = -- 07:19:41.940 INFO [5942]: HTTP_X_FORWARDED_FOR = 209.17.96.242 -- 07:19:41.978 INFO [5942]: COREGRADE is stopping... -- 07:19:41.978 DEBUG [5942]: Closing database connection -- 07:19:41.978 SQL [5942]: pgsql_close() -- 10:08:55.483 INFO [29117]: COREGRADE is starting... -- 10:08:55.483 INFO [29117]: Version from config: 1.0 -- 10:08:55.483 DEBUG [29117]: Connecting to database... -- 10:08:55.483 DEBUG [29117]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:08:55.484 SQL [29117]: pgsql_db_connect() -- 10:08:55.488 DEBUG [29117]: Database connection successful -- 10:08:55.488 INFO [29117]: _SERVER found -- 10:08:55.488 INFO [29117]: REMOTE_ADDR = 192.168.1.13 -- 10:08:55.488 INFO [29117]: SERVER_NAME = oameye.works.coregrade.com -- 10:08:55.488 INFO [29117]: QUERY_STRING = -- 10:08:55.488 INFO [29117]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 10:08:55.526 INFO [29117]: COREGRADE is stopping... -- 10:08:55.526 DEBUG [29117]: Closing database connection -- 10:08:55.526 SQL [29117]: pgsql_close() -- 17:15:38.464 INFO [29118]: COREGRADE is starting... -- 17:15:38.466 INFO [29118]: Version from config: 1.0 -- 17:15:38.466 DEBUG [29118]: Connecting to database... -- 17:15:38.466 DEBUG [29118]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:15:38.466 SQL [29118]: pgsql_db_connect() -- 17:15:38.471 DEBUG [29118]: Database connection successful -- 17:15:38.471 INFO [29118]: _SERVER found -- 17:15:38.471 INFO [29118]: REMOTE_ADDR = 192.168.1.13 -- 17:15:38.471 INFO [29118]: SERVER_NAME = oameye.works.coregrade.com -- 17:15:38.471 INFO [29118]: QUERY_STRING = -- 17:15:38.471 INFO [29118]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 17:15:38.513 INFO [29118]: COREGRADE is stopping... -- 17:15:38.513 DEBUG [29118]: Closing database connection -- 17:15:38.513 SQL [29118]: pgsql_close() -- 18:54:50.713 INFO [29119]: COREGRADE is starting... -- 18:54:50.714 INFO [29119]: Version from config: 1.0 -- 18:54:50.714 DEBUG [29119]: Connecting to database... -- 18:54:50.714 DEBUG [29119]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:54:50.714 SQL [29119]: pgsql_db_connect() -- 18:54:50.719 DEBUG [29119]: Database connection successful -- 18:54:50.719 INFO [29119]: _SERVER found -- 18:54:50.719 INFO [29119]: REMOTE_ADDR = 192.168.1.13 -- 18:54:50.719 INFO [29119]: SERVER_NAME = oameye.works.coregrade.com -- 18:54:50.719 INFO [29119]: QUERY_STRING = -- 18:54:50.719 INFO [29119]: HTTP_X_FORWARDED_FOR = 169.197.108.6 -- 18:54:50.754 INFO [29119]: COREGRADE is stopping... -- 18:54:50.754 DEBUG [29119]: Closing database connection -- 18:54:50.754 SQL [29119]: pgsql_close() -- 22:23:56.086 INFO [29115]: COREGRADE is starting... -- 22:23:56.087 INFO [29115]: Version from config: 1.0 -- 22:23:56.087 DEBUG [29115]: Connecting to database... -- 22:23:56.087 DEBUG [29115]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:23:56.087 SQL [29115]: pgsql_db_connect() -- 22:23:56.091 DEBUG [29115]: Database connection successful -- 22:23:56.091 INFO [29115]: _SERVER found -- 22:23:56.091 INFO [29115]: REMOTE_ADDR = 192.168.1.13 -- 22:23:56.091 INFO [29115]: SERVER_NAME = tokslaw.works.coregrade.com -- 22:23:56.091 INFO [29115]: QUERY_STRING = -- 22:23:56.091 INFO [29115]: HTTP_X_FORWARDED_FOR = 54.233.88.148 -- 22:23:56.130 INFO [29115]: COREGRADE is stopping... -- 22:23:56.130 DEBUG [29115]: Closing database connection -- 22:23:56.130 SQL [29115]: pgsql_close() -- 22:49:37.693 INFO [29122]: COREGRADE is starting... -- 22:49:37.693 INFO [29122]: Version from config: 1.0 -- 22:49:37.693 DEBUG [29122]: Connecting to database... -- 22:49:37.693 DEBUG [29122]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:49:37.693 SQL [29122]: pgsql_db_connect() -- 22:49:37.698 DEBUG [29122]: Database connection successful -- 22:49:37.698 INFO [29122]: _SERVER found -- 22:49:37.698 INFO [29122]: REMOTE_ADDR = 192.168.1.13 -- 22:49:37.698 INFO [29122]: SERVER_NAME = oameye.works.coregrade.com -- 22:49:37.698 INFO [29122]: QUERY_STRING = -- 22:49:37.698 INFO [29122]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 22:49:37.736 INFO [29122]: COREGRADE is stopping... -- 22:49:37.736 DEBUG [29122]: Closing database connection -- 22:49:37.736 SQL [29122]: pgsql_close() -- 22:56:32.052 INFO [31922]: COREGRADE is starting... -- 22:56:32.052 INFO [31922]: Version from config: 1.0 -- 22:56:32.052 DEBUG [31922]: Connecting to database... -- 22:56:32.052 DEBUG [31922]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:56:32.052 SQL [31922]: pgsql_db_connect() -- 22:56:32.057 DEBUG [31922]: Database connection successful -- 22:56:32.057 INFO [31922]: _SERVER found -- 22:56:32.057 INFO [31922]: REMOTE_ADDR = 192.168.1.13 -- 22:56:32.057 INFO [31922]: SERVER_NAME = oameye.works.coregrade.com -- 22:56:32.057 INFO [31922]: QUERY_STRING = -- 22:56:32.057 INFO [31922]: HTTP_X_FORWARDED_FOR = 52.77.236.78 -- 22:56:32.091 INFO [31922]: COREGRADE is stopping... -- 22:56:32.091 DEBUG [31922]: Closing database connection -- 22:56:32.091 SQL [31922]: pgsql_close() -- 00:59:53.435 INFO [5940]: COREGRADE is starting... -- 00:59:53.435 INFO [5940]: Version from config: 1.0 -- 00:59:53.435 DEBUG [5940]: Connecting to database... -- 00:59:53.435 DEBUG [5940]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:59:53.435 SQL [5940]: pgsql_db_connect() -- 00:59:53.440 DEBUG [5940]: Database connection successful -- 00:59:53.440 INFO [5940]: _SERVER found -- 00:59:53.440 INFO [5940]: REMOTE_ADDR = 192.168.1.13 -- 00:59:53.440 INFO [5940]: SERVER_NAME = oameye.works.coregrade.com -- 00:59:53.440 INFO [5940]: QUERY_STRING = /.well-known/acme-challenge/2xYS74yEbxqPluSv-THxCtqc31_THJwvmAAvpYi-NG4 -- 00:59:53.440 INFO [5940]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 00:59:53.455 INFO [5940]: COREGRADE is stopping... -- 00:59:53.455 DEBUG [5940]: Closing database connection -- 00:59:53.455 SQL [5940]: pgsql_close() -- 00:59:53.728 INFO [5942]: COREGRADE is starting... -- 00:59:53.728 INFO [5942]: Version from config: 1.0 -- 00:59:53.728 DEBUG [5942]: Connecting to database... -- 00:59:53.728 DEBUG [5942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:59:53.728 SQL [5942]: pgsql_db_connect() -- 00:59:53.732 DEBUG [5942]: Database connection successful -- 00:59:53.732 INFO [5942]: _SERVER found -- 00:59:53.732 INFO [5942]: REMOTE_ADDR = 192.168.1.13 -- 00:59:53.732 INFO [5942]: SERVER_NAME = oameye.works.coregrade.com -- 00:59:53.732 INFO [5942]: QUERY_STRING = /.well-known/acme-challenge/2xYS74yEbxqPluSv-THxCtqc31_THJwvmAAvpYi-NG4 -- 00:59:53.732 INFO [5942]: HTTP_X_FORWARDED_FOR = 52.28.236.88 -- 00:59:53.744 INFO [5942]: COREGRADE is stopping... -- 00:59:53.744 DEBUG [5942]: Closing database connection -- 00:59:53.744 SQL [5942]: pgsql_close() -- 00:59:53.820 INFO [5940]: COREGRADE is starting... -- 00:59:53.821 INFO [5940]: Version from config: 1.0 -- 00:59:53.821 DEBUG [5940]: Connecting to database... -- 00:59:53.821 DEBUG [5940]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:59:53.821 SQL [5940]: pgsql_db_connect() -- 00:59:53.825 DEBUG [5940]: Database connection successful -- 00:59:53.825 INFO [5940]: _SERVER found -- 00:59:53.825 INFO [5940]: REMOTE_ADDR = 192.168.1.13 -- 00:59:53.825 INFO [5940]: SERVER_NAME = oameye.works.coregrade.com -- 00:59:53.825 INFO [5940]: QUERY_STRING = /.well-known/acme-challenge/2xYS74yEbxqPluSv-THxCtqc31_THJwvmAAvpYi-NG4 -- 00:59:53.825 INFO [5940]: HTTP_X_FORWARDED_FOR = 34.222.229.130 -- 00:59:53.837 INFO [5940]: COREGRADE is stopping... -- 00:59:53.837 DEBUG [5940]: Closing database connection -- 00:59:53.837 SQL [5940]: pgsql_close() -- 00:59:54.118 INFO [5940]: COREGRADE is starting... -- 00:59:54.118 INFO [5940]: Version from config: 1.0 -- 00:59:54.118 DEBUG [5940]: Connecting to database... -- 00:59:54.118 DEBUG [5940]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:59:54.119 SQL [5940]: pgsql_db_connect() -- 00:59:54.122 DEBUG [5940]: Database connection successful -- 00:59:54.122 INFO [5940]: _SERVER found -- 00:59:54.122 INFO [5940]: REMOTE_ADDR = 192.168.1.13 -- 00:59:54.122 INFO [5940]: SERVER_NAME = oameye.works.coregrade.com -- 00:59:54.122 INFO [5940]: QUERY_STRING = /.well-known/acme-challenge/2xYS74yEbxqPluSv-THxCtqc31_THJwvmAAvpYi-NG4 -- 00:59:54.122 INFO [5940]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 00:59:54.134 INFO [5940]: COREGRADE is stopping... -- 00:59:54.134 DEBUG [5940]: Closing database connection -- 00:59:54.134 SQL [5940]: pgsql_close() -- 05:18:08.688 INFO [18901]: COREGRADE is starting... -- 05:18:08.689 INFO [18901]: Version from config: 1.0 -- 05:18:08.689 DEBUG [18901]: Connecting to database... -- 05:18:08.689 DEBUG [18901]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:18:08.689 SQL [18901]: pgsql_db_connect() -- 05:18:08.694 DEBUG [18901]: Database connection successful -- 05:18:08.694 INFO [18901]: _SERVER found -- 05:18:08.694 INFO [18901]: REMOTE_ADDR = 192.168.1.13 -- 05:18:08.694 INFO [18901]: SERVER_NAME = oameye.works.coregrade.com -- 05:18:08.694 INFO [18901]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624 -- 05:18:08.694 INFO [18901]: QUERY_STRING = /member/page -- 05:18:08.694 INFO [18901]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 05:18:08.739 INFO [18901]: COREGRADE is stopping... -- 05:18:08.739 DEBUG [18901]: Closing database connection -- 05:18:08.739 SQL [18901]: pgsql_close() -- 05:48:52.554 INFO [18902]: COREGRADE is starting... -- 05:48:52.554 INFO [18902]: Version from config: 1.0 -- 05:48:52.554 DEBUG [18902]: Connecting to database... -- 05:48:52.554 DEBUG [18902]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:52.554 SQL [18902]: pgsql_db_connect() -- 05:48:52.559 DEBUG [18902]: Database connection successful -- 05:48:52.559 INFO [18902]: _SERVER found -- 05:48:52.559 INFO [18902]: REMOTE_ADDR = 192.168.1.13 -- 05:48:52.559 INFO [18902]: SERVER_NAME = oameye.works.coregrade.com -- 05:48:52.559 INFO [18902]: QUERY_STRING = /robots.txt -- 05:48:52.559 INFO [18902]: HTTP_X_FORWARDED_FOR = 66.249.64.182 -- 05:48:52.576 INFO [18902]: COREGRADE is stopping... -- 05:48:52.576 DEBUG [18902]: Closing database connection -- 05:48:52.576 SQL [18902]: pgsql_close() -- 05:48:52.616 INFO [18902]: COREGRADE is starting... -- 05:48:52.617 INFO [18902]: Version from config: 1.0 -- 05:48:52.617 DEBUG [18902]: Connecting to database... -- 05:48:52.617 DEBUG [18902]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:52.617 SQL [18902]: pgsql_db_connect() -- 05:48:52.621 DEBUG [18902]: Database connection successful -- 05:48:52.621 INFO [18902]: _SERVER found -- 05:48:52.621 INFO [18902]: REMOTE_ADDR = 192.168.1.13 -- 05:48:52.621 INFO [18902]: SERVER_NAME = oameye.works.coregrade.com -- 05:48:52.621 INFO [18902]: QUERY_STRING = /auth/newuser -- 05:48:52.621 INFO [18902]: HTTP_X_FORWARDED_FOR = 66.249.64.182 -- 05:48:52.662 INFO [18902]: COREGRADE is stopping... -- 05:48:52.662 DEBUG [18902]: Closing database connection -- 05:48:52.662 SQL [18902]: pgsql_close() -- 05:52:05.297 INFO [18904]: COREGRADE is starting... -- 05:52:05.297 INFO [18904]: Version from config: 1.0 -- 05:52:05.297 DEBUG [18904]: Connecting to database... -- 05:52:05.297 DEBUG [18904]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:52:05.297 SQL [18904]: pgsql_db_connect() -- 05:52:05.302 DEBUG [18904]: Database connection successful -- 05:52:05.302 INFO [18904]: _SERVER found -- 05:52:05.302 INFO [18904]: REMOTE_ADDR = 192.168.1.13 -- 05:52:05.302 INFO [18904]: SERVER_NAME = oameye.works.coregrade.com -- 05:52:05.302 INFO [18904]: QUERY_STRING = -- 05:52:05.302 INFO [18904]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 05:52:05.349 INFO [18904]: COREGRADE is stopping... -- 05:52:05.349 DEBUG [18904]: Closing database connection -- 05:52:05.349 SQL [18904]: pgsql_close() -- 06:45:20.807 INFO [19351]: COREGRADE is starting... -- 06:45:20.808 INFO [19351]: Version from config: 1.0 -- 06:45:20.808 DEBUG [19351]: Connecting to database... -- 06:45:20.808 DEBUG [19351]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:45:20.808 SQL [19351]: pgsql_db_connect() -- 06:45:20.813 DEBUG [19351]: Database connection successful -- 06:45:20.813 INFO [19351]: _SERVER found -- 06:45:20.813 INFO [19351]: REMOTE_ADDR = 192.168.1.13 -- 06:45:20.813 INFO [19351]: SERVER_NAME = oameye.works.coregrade.com -- 06:45:20.813 INFO [19351]: HTTP_COOKIE = ci_session=qm1mc4b581kdn0k4bdibpb8orci57sg4; _ga=GA1.2.2030761402.1585610624 -- 06:45:20.813 INFO [19351]: QUERY_STRING = -- 06:45:20.813 INFO [19351]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:45:20.861 INFO [19351]: COREGRADE is stopping... -- 06:45:20.861 DEBUG [19351]: Closing database connection -- 06:45:20.861 SQL [19351]: pgsql_close() -- 08:24:52.069 INFO [18902]: COREGRADE is starting... -- 08:24:52.070 INFO [18902]: Version from config: 1.0 -- 08:24:52.070 DEBUG [18902]: Connecting to database... -- 08:24:52.070 DEBUG [18902]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:24:52.070 SQL [18902]: pgsql_db_connect() -- 08:24:52.075 DEBUG [18902]: Database connection successful -- 08:24:52.075 INFO [18902]: _SERVER found -- 08:24:52.075 INFO [18902]: REMOTE_ADDR = 192.168.1.13 -- 08:24:52.075 INFO [18902]: SERVER_NAME = oameye.works.coregrade.com -- 08:24:52.075 INFO [18902]: QUERY_STRING = -- 08:24:52.075 INFO [18902]: HTTP_X_FORWARDED_FOR = 58.215.204.242 -- 08:24:52.120 INFO [18902]: COREGRADE is stopping... -- 08:24:52.120 DEBUG [18902]: Closing database connection -- 08:24:52.120 SQL [18902]: pgsql_close() -- 08:24:54.501 INFO [18902]: COREGRADE is starting... -- 08:24:54.502 INFO [18902]: Version from config: 1.0 -- 08:24:54.502 DEBUG [18902]: Connecting to database... -- 08:24:54.502 DEBUG [18902]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:24:54.502 SQL [18902]: pgsql_db_connect() -- 08:24:54.506 DEBUG [18902]: Database connection successful -- 08:24:54.506 INFO [18902]: _SERVER found -- 08:24:54.506 INFO [18902]: REMOTE_ADDR = 192.168.1.13 -- 08:24:54.506 INFO [18902]: SERVER_NAME = oameye.works.coregrade.com -- 08:24:54.506 INFO [18902]: QUERY_STRING = /index.action -- 08:24:54.506 INFO [18902]: HTTP_X_FORWARDED_FOR = 58.215.204.242 -- 08:24:54.517 INFO [18902]: COREGRADE is stopping... -- 08:24:54.517 DEBUG [18902]: Closing database connection -- 08:24:54.517 SQL [18902]: pgsql_close() -- 10:29:44.646 INFO [18903]: COREGRADE is starting... -- 10:29:44.647 INFO [18903]: Version from config: 1.0 -- 10:29:44.647 DEBUG [18903]: Connecting to database... -- 10:29:44.647 DEBUG [18903]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:44.647 SQL [18903]: pgsql_db_connect() -- 10:29:44.651 DEBUG [18903]: Database connection successful -- 10:29:44.651 INFO [18903]: _SERVER found -- 10:29:44.652 INFO [18903]: REMOTE_ADDR = 192.168.1.13 -- 10:29:44.652 INFO [18903]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:44.652 INFO [18903]: QUERY_STRING = -- 10:29:44.652 INFO [18903]: HTTP_X_FORWARDED_FOR = 47.104.191.142 -- 10:29:44.700 INFO [18903]: COREGRADE is stopping... -- 10:29:44.700 DEBUG [18903]: Closing database connection -- 10:29:44.700 SQL [18903]: pgsql_close() -- 10:32:30.482 INFO [18904]: COREGRADE is starting... -- 10:32:30.483 INFO [18904]: Version from config: 1.0 -- 10:32:30.483 DEBUG [18904]: Connecting to database... -- 10:32:30.483 DEBUG [18904]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:32:30.483 SQL [18904]: pgsql_db_connect() -- 10:32:30.487 DEBUG [18904]: Database connection successful -- 10:32:30.487 INFO [18904]: _SERVER found -- 10:32:30.487 INFO [18904]: REMOTE_ADDR = 192.168.1.13 -- 10:32:30.487 INFO [18904]: SERVER_NAME = oameye.works.coregrade.com -- 10:32:30.487 INFO [18904]: QUERY_STRING = /manager/html -- 10:32:30.487 INFO [18904]: HTTP_X_FORWARDED_FOR = 122.115.55.29 -- 10:32:30.502 INFO [18904]: COREGRADE is stopping... -- 10:32:30.502 DEBUG [18904]: Closing database connection -- 10:32:30.502 SQL [18904]: pgsql_close() -- 13:18:42.092 INFO [18905]: COREGRADE is starting... -- 13:18:42.093 INFO [18905]: Version from config: 1.0 -- 13:18:42.093 DEBUG [18905]: Connecting to database... -- 13:18:42.093 DEBUG [18905]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:18:42.093 SQL [18905]: pgsql_db_connect() -- 13:18:42.098 DEBUG [18905]: Database connection successful -- 13:18:42.098 INFO [18905]: _SERVER found -- 13:18:42.098 INFO [18905]: REMOTE_ADDR = 192.168.1.13 -- 13:18:42.098 INFO [18905]: SERVER_NAME = oameye.works.coregrade.com -- 13:18:42.098 INFO [18905]: QUERY_STRING = -- 13:18:42.098 INFO [18905]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 13:18:42.145 INFO [18905]: COREGRADE is stopping... -- 13:18:42.145 DEBUG [18905]: Closing database connection -- 13:18:42.145 SQL [18905]: pgsql_close() -- 13:29:30.327 INFO [19351]: COREGRADE is starting... -- 13:29:30.327 INFO [19351]: Version from config: 1.0 -- 13:29:30.327 DEBUG [19351]: Connecting to database... -- 13:29:30.327 DEBUG [19351]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:30.327 SQL [19351]: pgsql_db_connect() -- 13:29:30.333 DEBUG [19351]: Database connection successful -- 13:29:30.333 INFO [19351]: _SERVER found -- 13:29:30.333 INFO [19351]: REMOTE_ADDR = 192.168.1.13 -- 13:29:30.333 INFO [19351]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:29:30.333 INFO [19351]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586 -- 13:29:30.333 INFO [19351]: QUERY_STRING = /auth -- 13:29:30.333 INFO [19351]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:29:30.374 INFO [19351]: COREGRADE is stopping... -- 13:29:30.374 DEBUG [19351]: Closing database connection -- 13:29:30.374 SQL [19351]: pgsql_close() -- 13:29:30.718 INFO [19351]: COREGRADE is starting... -- 13:29:30.718 INFO [19351]: Version from config: 1.0 -- 13:29:30.718 DEBUG [19351]: Connecting to database... -- 13:29:30.718 DEBUG [19351]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:30.718 SQL [19351]: pgsql_db_connect() -- 13:29:30.722 DEBUG [19351]: Database connection successful -- 13:29:30.722 INFO [19351]: _SERVER found -- 13:29:30.722 INFO [19351]: REMOTE_ADDR = 192.168.1.13 -- 13:29:30.722 INFO [19351]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:29:30.722 INFO [19351]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=p403qmap78pd47p0q0reokogjp36qlt6 -- 13:29:30.722 INFO [19351]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:29:30.722 INFO [19351]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:29:30.733 INFO [19351]: COREGRADE is stopping... -- 13:29:30.733 DEBUG [19351]: Closing database connection -- 13:29:30.733 SQL [19351]: pgsql_close() -- 13:29:30.742 INFO [19351]: COREGRADE is starting... -- 13:29:30.742 INFO [19351]: Version from config: 1.0 -- 13:29:30.742 DEBUG [19351]: Connecting to database... -- 13:29:30.742 DEBUG [19351]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:30.742 SQL [19351]: pgsql_db_connect() -- 13:29:30.746 DEBUG [19351]: Database connection successful -- 13:29:30.746 INFO [19351]: _SERVER found -- 13:29:30.746 INFO [19351]: REMOTE_ADDR = 192.168.1.13 -- 13:29:30.746 INFO [19351]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:29:30.746 INFO [19351]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=p403qmap78pd47p0q0reokogjp36qlt6 -- 13:29:30.746 INFO [19351]: QUERY_STRING = /assets2/data/locales/en.json -- 13:29:30.746 INFO [19351]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:29:30.757 INFO [19351]: COREGRADE is stopping... -- 13:29:30.757 DEBUG [19351]: Closing database connection -- 13:29:30.757 SQL [19351]: pgsql_close() -- 13:29:36.391 INFO [19351]: COREGRADE is starting... -- 13:29:36.391 INFO [19351]: Version from config: 1.0 -- 13:29:36.391 DEBUG [19351]: Connecting to database... -- 13:29:36.391 DEBUG [19351]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:36.392 SQL [19351]: pgsql_db_connect() -- 13:29:36.396 DEBUG [19351]: Database connection successful -- 13:29:36.396 INFO [19351]: _SERVER found -- 13:29:36.396 INFO [19351]: REMOTE_ADDR = 192.168.1.13 -- 13:29:36.396 INFO [19351]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:29:36.396 INFO [19351]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=p403qmap78pd47p0q0reokogjp36qlt6 -- 13:29:36.396 INFO [19351]: QUERY_STRING = /auth -- 13:29:36.396 INFO [19351]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:29:36.454 INFO [19351]: COREGRADE is starting... -- 13:29:36.454 INFO [19351]: Version from config: 1.0 -- 13:29:36.454 DEBUG [19351]: Connecting to database... -- 13:29:36.454 DEBUG [19351]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:36.454 SQL [19351]: pgsql_db_connect() -- 13:29:36.458 DEBUG [19351]: Database connection successful -- 13:29:36.458 INFO [19351]: _SERVER found -- 13:29:36.458 INFO [19351]: REMOTE_ADDR = 192.168.1.13 -- 13:29:36.458 INFO [19351]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:29:36.458 INFO [19351]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=p403qmap78pd47p0q0reokogjp36qlt6 -- 13:29:36.458 INFO [19351]: QUERY_STRING = /member/index -- 13:29:36.458 INFO [19351]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:29:36.499 INFO [19351]: COREGRADE is stopping... -- 13:29:36.499 DEBUG [19351]: Closing database connection -- 13:29:36.499 SQL [19351]: pgsql_close() -- 13:29:36.770 INFO [19351]: COREGRADE is starting... -- 13:29:36.770 INFO [19351]: Version from config: 1.0 -- 13:29:36.770 DEBUG [19351]: Connecting to database... -- 13:29:36.770 DEBUG [19351]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:36.770 SQL [19351]: pgsql_db_connect() -- 13:29:36.774 DEBUG [19351]: Database connection successful -- 13:29:36.774 INFO [19351]: _SERVER found -- 13:29:36.774 INFO [19351]: REMOTE_ADDR = 192.168.1.13 -- 13:29:36.774 INFO [19351]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:29:36.774 INFO [19351]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=p403qmap78pd47p0q0reokogjp36qlt6 -- 13:29:36.774 INFO [19351]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 13:29:36.774 INFO [19351]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:29:36.786 INFO [19351]: COREGRADE is stopping... -- 13:29:36.786 DEBUG [19351]: Closing database connection -- 13:29:36.786 SQL [19351]: pgsql_close() -- 13:29:37.091 INFO [19351]: COREGRADE is starting... -- 13:29:37.092 INFO [19351]: Version from config: 1.0 -- 13:29:37.092 DEBUG [19351]: Connecting to database... -- 13:29:37.092 DEBUG [19351]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:37.092 SQL [19351]: pgsql_db_connect() -- 13:29:37.096 DEBUG [19351]: Database connection successful -- 13:29:37.096 INFO [19351]: _SERVER found -- 13:29:37.096 INFO [19351]: REMOTE_ADDR = 192.168.1.13 -- 13:29:37.096 INFO [19351]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:29:37.096 INFO [19351]: HTTP_COOKIE = _ga=GA1.2.1040169317.1581551586; ci_session=p403qmap78pd47p0q0reokogjp36qlt6 -- 13:29:37.096 INFO [19351]: QUERY_STRING = /assets2/data/locales/en.json -- 13:29:37.096 INFO [19351]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:29:37.107 INFO [19351]: COREGRADE is stopping... -- 13:29:37.107 DEBUG [19351]: Closing database connection -- 13:29:37.107 SQL [19351]: pgsql_close() -- 21:29:31.332 INFO [18901]: COREGRADE is starting... -- 21:29:31.332 INFO [18901]: Version from config: 1.0 -- 21:29:31.332 DEBUG [18901]: Connecting to database... -- 21:29:31.332 DEBUG [18901]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:31.333 SQL [18901]: pgsql_db_connect() -- 21:29:31.338 DEBUG [18901]: Database connection successful -- 21:29:31.338 INFO [18901]: _SERVER found -- 21:29:31.338 INFO [18901]: REMOTE_ADDR = 192.168.1.13 -- 21:29:31.338 INFO [18901]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:31.338 INFO [18901]: QUERY_STRING = /robots.txt -- 21:29:31.338 INFO [18901]: HTTP_X_FORWARDED_FOR = 66.249.64.182 -- 21:29:31.353 INFO [18901]: COREGRADE is stopping... -- 21:29:31.353 DEBUG [18901]: Closing database connection -- 21:29:31.353 SQL [18901]: pgsql_close() -- 21:29:31.443 INFO [18901]: COREGRADE is starting... -- 21:29:31.443 INFO [18901]: Version from config: 1.0 -- 21:29:31.443 DEBUG [18901]: Connecting to database... -- 21:29:31.443 DEBUG [18901]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:31.443 SQL [18901]: pgsql_db_connect() -- 21:29:31.448 DEBUG [18901]: Database connection successful -- 21:29:31.448 INFO [18901]: _SERVER found -- 21:29:31.448 INFO [18901]: REMOTE_ADDR = 192.168.1.13 -- 21:29:31.448 INFO [18901]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:31.448 INFO [18901]: QUERY_STRING = /auth -- 21:29:31.448 INFO [18901]: HTTP_X_FORWARDED_FOR = 66.249.64.182 -- 21:29:31.487 INFO [18901]: COREGRADE is stopping... -- 21:29:31.487 DEBUG [18901]: Closing database connection -- 21:29:31.487 SQL [18901]: pgsql_close() -- 22:51:56.294 INFO [18902]: COREGRADE is starting... -- 22:51:56.295 INFO [18902]: Version from config: 1.0 -- 22:51:56.295 DEBUG [18902]: Connecting to database... -- 22:51:56.295 DEBUG [18902]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:51:56.295 SQL [18902]: pgsql_db_connect() -- 22:51:56.299 DEBUG [18902]: Database connection successful -- 22:51:56.299 INFO [18902]: _SERVER found -- 22:51:56.299 INFO [18902]: REMOTE_ADDR = 192.168.1.13 -- 22:51:56.299 INFO [18902]: SERVER_NAME = oameye.works.coregrade.com -- 22:51:56.299 INFO [18902]: QUERY_STRING = -- 22:51:56.299 INFO [18902]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 22:51:56.337 INFO [18902]: COREGRADE is stopping... -- 22:51:56.337 DEBUG [18902]: Closing database connection -- 22:51:56.337 SQL [18902]: pgsql_close() -- 02:42:38.744 INFO [18903]: COREGRADE is starting... -- 02:42:38.745 INFO [18903]: Version from config: 1.0 -- 02:42:38.745 DEBUG [18903]: Connecting to database... -- 02:42:38.745 DEBUG [18903]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:42:38.745 SQL [18903]: pgsql_db_connect() -- 02:42:38.750 DEBUG [18903]: Database connection successful -- 02:42:38.750 INFO [18903]: _SERVER found -- 02:42:38.750 INFO [18903]: REMOTE_ADDR = 192.168.1.13 -- 02:42:38.750 INFO [18903]: SERVER_NAME = oameye.works.coregrade.com -- 02:42:38.750 INFO [18903]: QUERY_STRING = /.well-known/acme-challenge/jzvkbg13VF0Ob7yBjcJgOr2dhK5PdNlTlDc-7zdKsf8 -- 02:42:38.750 INFO [18903]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 02:42:38.766 INFO [18903]: COREGRADE is stopping... -- 02:42:38.766 DEBUG [18903]: Closing database connection -- 02:42:38.766 SQL [18903]: pgsql_close() -- 02:42:38.975 INFO [18903]: COREGRADE is starting... -- 02:42:38.975 INFO [18903]: Version from config: 1.0 -- 02:42:38.975 DEBUG [18903]: Connecting to database... -- 02:42:38.975 DEBUG [18903]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:42:38.975 SQL [18903]: pgsql_db_connect() -- 02:42:38.980 DEBUG [18903]: Database connection successful -- 02:42:38.980 INFO [18903]: _SERVER found -- 02:42:38.980 INFO [18903]: REMOTE_ADDR = 192.168.1.13 -- 02:42:38.980 INFO [18903]: SERVER_NAME = oameye.works.coregrade.com -- 02:42:38.980 INFO [18903]: QUERY_STRING = /.well-known/acme-challenge/jzvkbg13VF0Ob7yBjcJgOr2dhK5PdNlTlDc-7zdKsf8 -- 02:42:38.980 INFO [18903]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 02:42:38.991 INFO [18903]: COREGRADE is stopping... -- 02:42:38.992 DEBUG [18903]: Closing database connection -- 02:42:38.992 SQL [18903]: pgsql_close() -- 02:42:39.038 INFO [19351]: COREGRADE is starting... -- 02:42:39.038 INFO [19351]: Version from config: 1.0 -- 02:42:39.038 DEBUG [19351]: Connecting to database... -- 02:42:39.038 DEBUG [19351]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:42:39.038 SQL [19351]: pgsql_db_connect() -- 02:42:39.042 DEBUG [19351]: Database connection successful -- 02:42:39.042 INFO [19351]: _SERVER found -- 02:42:39.042 INFO [19351]: REMOTE_ADDR = 192.168.1.13 -- 02:42:39.042 INFO [19351]: SERVER_NAME = oameye.works.coregrade.com -- 02:42:39.042 INFO [19351]: QUERY_STRING = /.well-known/acme-challenge/jzvkbg13VF0Ob7yBjcJgOr2dhK5PdNlTlDc-7zdKsf8 -- 02:42:39.042 INFO [19351]: HTTP_X_FORWARDED_FOR = 52.28.236.88 -- 02:42:39.055 INFO [19351]: COREGRADE is stopping... -- 02:42:39.055 DEBUG [19351]: Closing database connection -- 02:42:39.055 SQL [19351]: pgsql_close() -- 05:27:50.571 INFO [18901]: COREGRADE is starting... -- 05:27:50.572 INFO [18901]: Version from config: 1.0 -- 05:27:50.572 DEBUG [18901]: Connecting to database... -- 05:27:50.572 DEBUG [18901]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:27:50.572 SQL [18901]: pgsql_db_connect() -- 05:27:50.577 DEBUG [18901]: Database connection successful -- 05:27:50.577 INFO [18901]: _SERVER found -- 05:27:50.577 INFO [18901]: REMOTE_ADDR = 192.168.1.13 -- 05:27:50.577 INFO [18901]: SERVER_NAME = oameye.works.coregrade.com -- 05:27:50.577 INFO [18901]: QUERY_STRING = /TP/public/index.php -- 05:27:50.577 INFO [18901]: HTTP_X_FORWARDED_FOR = 123.206.13.46 -- 05:27:50.592 INFO [18901]: COREGRADE is stopping... -- 05:27:50.592 DEBUG [18901]: Closing database connection -- 05:27:50.592 SQL [18901]: pgsql_close() -- 05:27:53.453 INFO [18901]: COREGRADE is starting... -- 05:27:53.453 INFO [18901]: Version from config: 1.0 -- 05:27:53.453 DEBUG [18901]: Connecting to database... -- 05:27:53.453 DEBUG [18901]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:27:53.453 SQL [18901]: pgsql_db_connect() -- 05:27:53.458 DEBUG [18901]: Database connection successful -- 05:27:53.458 INFO [18901]: _SERVER found -- 05:27:53.458 INFO [18901]: REMOTE_ADDR = 192.168.1.13 -- 05:27:53.458 INFO [18901]: SERVER_NAME = oameye.works.coregrade.com -- 05:27:53.458 INFO [18901]: QUERY_STRING = /TP/index.php -- 05:27:53.458 INFO [18901]: HTTP_X_FORWARDED_FOR = 123.206.13.46 -- 05:27:53.469 INFO [18901]: COREGRADE is stopping... -- 05:27:53.469 DEBUG [18901]: Closing database connection -- 05:27:53.469 SQL [18901]: pgsql_close() -- 05:27:56.993 INFO [18901]: COREGRADE is starting... -- 05:27:56.994 INFO [18901]: Version from config: 1.0 -- 05:27:56.994 DEBUG [18901]: Connecting to database... -- 05:27:56.994 DEBUG [18901]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:27:56.994 SQL [18901]: pgsql_db_connect() -- 05:27:56.998 DEBUG [18901]: Database connection successful -- 05:27:56.998 INFO [18901]: _SERVER found -- 05:27:56.998 INFO [18901]: REMOTE_ADDR = 192.168.1.13 -- 05:27:56.998 INFO [18901]: SERVER_NAME = oameye.works.coregrade.com -- 05:27:56.998 INFO [18901]: QUERY_STRING = /thinkphp/html/public/index.php -- 05:27:56.998 INFO [18901]: HTTP_X_FORWARDED_FOR = 123.206.13.46 -- 05:27:57.009 INFO [18901]: COREGRADE is stopping... -- 05:27:57.009 DEBUG [18901]: Closing database connection -- 05:27:57.009 SQL [18901]: pgsql_close() -- 05:27:59.347 INFO [18901]: COREGRADE is starting... -- 05:27:59.347 INFO [18901]: Version from config: 1.0 -- 05:27:59.347 DEBUG [18901]: Connecting to database... -- 05:27:59.347 DEBUG [18901]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:27:59.347 SQL [18901]: pgsql_db_connect() -- 05:27:59.351 DEBUG [18901]: Database connection successful -- 05:27:59.351 INFO [18901]: _SERVER found -- 05:27:59.351 INFO [18901]: REMOTE_ADDR = 192.168.1.13 -- 05:27:59.351 INFO [18901]: SERVER_NAME = oameye.works.coregrade.com -- 05:27:59.351 INFO [18901]: QUERY_STRING = /html/public/index.php -- 05:27:59.351 INFO [18901]: HTTP_X_FORWARDED_FOR = 123.206.13.46 -- 05:27:59.362 INFO [18901]: COREGRADE is stopping... -- 05:27:59.362 DEBUG [18901]: Closing database connection -- 05:27:59.362 SQL [18901]: pgsql_close() -- 05:28:01.028 INFO [18901]: COREGRADE is starting... -- 05:28:01.028 INFO [18901]: Version from config: 1.0 -- 05:28:01.028 DEBUG [18901]: Connecting to database... -- 05:28:01.028 DEBUG [18901]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:01.028 SQL [18901]: pgsql_db_connect() -- 05:28:01.032 DEBUG [18901]: Database connection successful -- 05:28:01.032 INFO [18901]: _SERVER found -- 05:28:01.032 INFO [18901]: REMOTE_ADDR = 192.168.1.13 -- 05:28:01.032 INFO [18901]: SERVER_NAME = oameye.works.coregrade.com -- 05:28:01.032 INFO [18901]: QUERY_STRING = /public/index.php -- 05:28:01.032 INFO [18901]: HTTP_X_FORWARDED_FOR = 123.206.13.46 -- 05:28:01.043 INFO [18901]: COREGRADE is stopping... -- 05:28:01.043 DEBUG [18901]: Closing database connection -- 05:28:01.044 SQL [18901]: pgsql_close() -- 05:28:02.726 INFO [18901]: COREGRADE is starting... -- 05:28:02.727 INFO [18901]: Version from config: 1.0 -- 05:28:02.727 DEBUG [18901]: Connecting to database... -- 05:28:02.727 DEBUG [18901]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:02.727 SQL [18901]: pgsql_db_connect() -- 05:28:02.731 DEBUG [18901]: Database connection successful -- 05:28:02.731 INFO [18901]: _SERVER found -- 05:28:02.731 INFO [18901]: REMOTE_ADDR = 192.168.1.13 -- 05:28:02.731 INFO [18901]: SERVER_NAME = oameye.works.coregrade.com -- 05:28:02.731 INFO [18901]: QUERY_STRING = /TP/html/public/index.php -- 05:28:02.731 INFO [18901]: HTTP_X_FORWARDED_FOR = 123.206.13.46 -- 05:28:02.742 INFO [18901]: COREGRADE is stopping... -- 05:28:02.742 DEBUG [18901]: Closing database connection -- 05:28:02.742 SQL [18901]: pgsql_close() -- 05:28:04.487 INFO [18901]: COREGRADE is starting... -- 05:28:04.487 INFO [18901]: Version from config: 1.0 -- 05:28:04.487 DEBUG [18901]: Connecting to database... -- 05:28:04.487 DEBUG [18901]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:04.487 SQL [18901]: pgsql_db_connect() -- 05:28:04.491 DEBUG [18901]: Database connection successful -- 05:28:04.491 INFO [18901]: _SERVER found -- 05:28:04.491 INFO [18901]: REMOTE_ADDR = 192.168.1.13 -- 05:28:04.491 INFO [18901]: SERVER_NAME = oameye.works.coregrade.com -- 05:28:04.491 INFO [18901]: QUERY_STRING = /elrekt.php -- 05:28:04.491 INFO [18901]: HTTP_X_FORWARDED_FOR = 123.206.13.46 -- 05:28:04.502 INFO [18901]: COREGRADE is stopping... -- 05:28:04.502 DEBUG [18901]: Closing database connection -- 05:28:04.502 SQL [18901]: pgsql_close() -- 05:28:07.875 INFO [18901]: COREGRADE is starting... -- 05:28:07.875 INFO [18901]: Version from config: 1.0 -- 05:28:07.875 DEBUG [18901]: Connecting to database... -- 05:28:07.875 DEBUG [18901]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:07.875 SQL [18901]: pgsql_db_connect() -- 05:28:07.879 DEBUG [18901]: Database connection successful -- 05:28:07.879 INFO [18901]: _SERVER found -- 05:28:07.879 INFO [18901]: REMOTE_ADDR = 192.168.1.13 -- 05:28:07.879 INFO [18901]: SERVER_NAME = oameye.works.coregrade.com -- 05:28:07.879 INFO [18901]: QUERY_STRING = -- 05:28:07.879 INFO [18901]: HTTP_X_FORWARDED_FOR = 123.206.13.46 -- 05:28:07.921 INFO [18901]: COREGRADE is stopping... -- 05:28:07.921 DEBUG [18901]: Closing database connection -- 05:28:07.921 SQL [18901]: pgsql_close() -- 05:28:15.792 INFO [18902]: COREGRADE is starting... -- 05:28:15.792 INFO [18902]: Version from config: 1.0 -- 05:28:15.793 DEBUG [18902]: Connecting to database... -- 05:28:15.793 DEBUG [18902]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:15.793 SQL [18902]: pgsql_db_connect() -- 05:28:15.797 DEBUG [18902]: Database connection successful -- 05:28:15.797 INFO [18902]: _SERVER found -- 05:28:15.797 INFO [18902]: REMOTE_ADDR = 192.168.1.13 -- 05:28:15.797 INFO [18902]: SERVER_NAME = oameye.works.coregrade.com -- 05:28:15.797 INFO [18902]: QUERY_STRING = s=captcha -- 05:28:15.797 INFO [18902]: HTTP_X_FORWARDED_FOR = 123.206.13.46 -- 05:28:15.832 INFO [18902]: COREGRADE is stopping... -- 05:28:15.832 DEBUG [18902]: Closing database connection -- 05:28:15.832 SQL [18902]: pgsql_close() -- 05:28:21.046 INFO [24818]: COREGRADE is starting... -- 05:28:21.047 INFO [24818]: Version from config: 1.0 -- 05:28:21.047 DEBUG [24818]: Connecting to database... -- 05:28:21.047 DEBUG [24818]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:21.047 SQL [24818]: pgsql_db_connect() -- 05:28:21.051 DEBUG [24818]: Database connection successful -- 05:28:21.051 INFO [24818]: _SERVER found -- 05:28:21.051 INFO [24818]: REMOTE_ADDR = 192.168.1.13 -- 05:28:21.051 INFO [24818]: SERVER_NAME = oameye.works.coregrade.com -- 05:28:21.051 INFO [24818]: QUERY_STRING = -- 05:28:21.051 INFO [24818]: HTTP_X_FORWARDED_FOR = 123.206.13.46 -- 05:28:21.095 INFO [24818]: COREGRADE is stopping... -- 05:28:21.095 DEBUG [24818]: Closing database connection -- 05:28:21.095 SQL [24818]: pgsql_close() -- 08:44:39.055 INFO [24820]: COREGRADE is starting... -- 08:44:39.056 INFO [24820]: Version from config: 1.0 -- 08:44:39.056 DEBUG [24820]: Connecting to database... -- 08:44:39.056 DEBUG [24820]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:44:39.056 SQL [24820]: pgsql_db_connect() -- 08:44:39.061 DEBUG [24820]: Database connection successful -- 08:44:39.061 INFO [24820]: _SERVER found -- 08:44:39.061 INFO [24820]: REMOTE_ADDR = 192.168.1.13 -- 08:44:39.061 INFO [24820]: SERVER_NAME = oameye.works.coregrade.com -- 08:44:39.061 INFO [24820]: QUERY_STRING = -- 08:44:39.061 INFO [24820]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 08:44:39.109 INFO [24820]: COREGRADE is stopping... -- 08:44:39.109 DEBUG [24820]: Closing database connection -- 08:44:39.109 SQL [24820]: pgsql_close() -- 09:28:59.665 INFO [24821]: COREGRADE is starting... -- 09:28:59.665 INFO [24821]: Version from config: 1.0 -- 09:28:59.665 DEBUG [24821]: Connecting to database... -- 09:28:59.666 DEBUG [24821]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:28:59.666 SQL [24821]: pgsql_db_connect() -- 09:28:59.670 DEBUG [24821]: Database connection successful -- 09:28:59.671 INFO [24821]: _SERVER found -- 09:28:59.671 INFO [24821]: REMOTE_ADDR = 192.168.1.13 -- 09:28:59.671 INFO [24821]: SERVER_NAME = oameye.works.coregrade.com -- 09:28:59.671 INFO [24821]: QUERY_STRING = /TP/public/index.php -- 09:28:59.671 INFO [24821]: HTTP_X_FORWARDED_FOR = 122.224.131.186 -- 09:28:59.688 INFO [24821]: COREGRADE is stopping... -- 09:28:59.688 DEBUG [24821]: Closing database connection -- 09:28:59.688 SQL [24821]: pgsql_close() -- 09:29:01.658 INFO [24821]: COREGRADE is starting... -- 09:29:01.658 INFO [24821]: Version from config: 1.0 -- 09:29:01.658 DEBUG [24821]: Connecting to database... -- 09:29:01.658 DEBUG [24821]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:01.658 SQL [24821]: pgsql_db_connect() -- 09:29:01.663 DEBUG [24821]: Database connection successful -- 09:29:01.663 INFO [24821]: _SERVER found -- 09:29:01.663 INFO [24821]: REMOTE_ADDR = 192.168.1.13 -- 09:29:01.663 INFO [24821]: SERVER_NAME = oameye.works.coregrade.com -- 09:29:01.663 INFO [24821]: QUERY_STRING = /TP/index.php -- 09:29:01.663 INFO [24821]: HTTP_X_FORWARDED_FOR = 122.224.131.186 -- 09:29:01.675 INFO [24821]: COREGRADE is stopping... -- 09:29:01.675 DEBUG [24821]: Closing database connection -- 09:29:01.675 SQL [24821]: pgsql_close() -- 09:29:04.112 INFO [18904]: COREGRADE is starting... -- 09:29:04.112 INFO [18904]: Version from config: 1.0 -- 09:29:04.112 DEBUG [18904]: Connecting to database... -- 09:29:04.112 DEBUG [18904]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:04.112 SQL [18904]: pgsql_db_connect() -- 09:29:04.116 DEBUG [18904]: Database connection successful -- 09:29:04.116 INFO [18904]: _SERVER found -- 09:29:04.116 INFO [18904]: REMOTE_ADDR = 192.168.1.13 -- 09:29:04.116 INFO [18904]: SERVER_NAME = oameye.works.coregrade.com -- 09:29:04.116 INFO [18904]: QUERY_STRING = /thinkphp/html/public/index.php -- 09:29:04.116 INFO [18904]: HTTP_X_FORWARDED_FOR = 122.224.131.186 -- 09:29:04.132 INFO [18904]: COREGRADE is stopping... -- 09:29:04.132 DEBUG [18904]: Closing database connection -- 09:29:04.132 SQL [18904]: pgsql_close() -- 09:29:07.025 INFO [18904]: COREGRADE is starting... -- 09:29:07.025 INFO [18904]: Version from config: 1.0 -- 09:29:07.025 DEBUG [18904]: Connecting to database... -- 09:29:07.025 DEBUG [18904]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:07.025 SQL [18904]: pgsql_db_connect() -- 09:29:07.030 DEBUG [18904]: Database connection successful -- 09:29:07.030 INFO [18904]: _SERVER found -- 09:29:07.030 INFO [18904]: REMOTE_ADDR = 192.168.1.13 -- 09:29:07.030 INFO [18904]: SERVER_NAME = oameye.works.coregrade.com -- 09:29:07.030 INFO [18904]: QUERY_STRING = /html/public/index.php -- 09:29:07.030 INFO [18904]: HTTP_X_FORWARDED_FOR = 122.224.131.186 -- 09:29:07.041 INFO [18904]: COREGRADE is stopping... -- 09:29:07.041 DEBUG [18904]: Closing database connection -- 09:29:07.041 SQL [18904]: pgsql_close() -- 09:29:09.773 INFO [18903]: COREGRADE is starting... -- 09:29:09.773 INFO [18903]: Version from config: 1.0 -- 09:29:09.773 DEBUG [18903]: Connecting to database... -- 09:29:09.773 DEBUG [18903]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:09.773 SQL [18903]: pgsql_db_connect() -- 09:29:09.778 DEBUG [18903]: Database connection successful -- 09:29:09.778 INFO [18903]: _SERVER found -- 09:29:09.778 INFO [18903]: REMOTE_ADDR = 192.168.1.13 -- 09:29:09.778 INFO [18903]: SERVER_NAME = oameye.works.coregrade.com -- 09:29:09.778 INFO [18903]: QUERY_STRING = /public/index.php -- 09:29:09.778 INFO [18903]: HTTP_X_FORWARDED_FOR = 122.224.131.186 -- 09:29:09.791 INFO [18903]: COREGRADE is stopping... -- 09:29:09.791 DEBUG [18903]: Closing database connection -- 09:29:09.791 SQL [18903]: pgsql_close() -- 09:29:12.763 INFO [19351]: COREGRADE is starting... -- 09:29:12.763 INFO [19351]: Version from config: 1.0 -- 09:29:12.763 DEBUG [19351]: Connecting to database... -- 09:29:12.763 DEBUG [19351]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:12.763 SQL [19351]: pgsql_db_connect() -- 09:29:12.768 DEBUG [19351]: Database connection successful -- 09:29:12.768 INFO [19351]: _SERVER found -- 09:29:12.768 INFO [19351]: REMOTE_ADDR = 192.168.1.13 -- 09:29:12.768 INFO [19351]: SERVER_NAME = oameye.works.coregrade.com -- 09:29:12.768 INFO [19351]: QUERY_STRING = /TP/html/public/index.php -- 09:29:12.768 INFO [19351]: HTTP_X_FORWARDED_FOR = 122.224.131.186 -- 09:29:12.780 INFO [19351]: COREGRADE is stopping... -- 09:29:12.780 DEBUG [19351]: Closing database connection -- 09:29:12.780 SQL [19351]: pgsql_close() -- 09:29:16.397 INFO [19351]: COREGRADE is starting... -- 09:29:16.397 INFO [19351]: Version from config: 1.0 -- 09:29:16.397 DEBUG [19351]: Connecting to database... -- 09:29:16.397 DEBUG [19351]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:16.397 SQL [19351]: pgsql_db_connect() -- 09:29:16.402 DEBUG [19351]: Database connection successful -- 09:29:16.402 INFO [19351]: _SERVER found -- 09:29:16.402 INFO [19351]: REMOTE_ADDR = 192.168.1.13 -- 09:29:16.402 INFO [19351]: SERVER_NAME = oameye.works.coregrade.com -- 09:29:16.402 INFO [19351]: QUERY_STRING = /elrekt.php -- 09:29:16.402 INFO [19351]: HTTP_X_FORWARDED_FOR = 122.224.131.186 -- 09:29:16.413 INFO [19351]: COREGRADE is stopping... -- 09:29:16.413 DEBUG [19351]: Closing database connection -- 09:29:16.413 SQL [19351]: pgsql_close() -- 09:29:18.689 INFO [19351]: COREGRADE is starting... -- 09:29:18.689 INFO [19351]: Version from config: 1.0 -- 09:29:18.689 DEBUG [19351]: Connecting to database... -- 09:29:18.689 DEBUG [19351]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:18.689 SQL [19351]: pgsql_db_connect() -- 09:29:18.693 DEBUG [19351]: Database connection successful -- 09:29:18.694 INFO [19351]: _SERVER found -- 09:29:18.694 INFO [19351]: REMOTE_ADDR = 192.168.1.13 -- 09:29:18.694 INFO [19351]: SERVER_NAME = oameye.works.coregrade.com -- 09:29:18.694 INFO [19351]: QUERY_STRING = -- 09:29:18.694 INFO [19351]: HTTP_X_FORWARDED_FOR = 122.224.131.186 -- 09:29:18.727 INFO [19351]: COREGRADE is stopping... -- 09:29:18.727 DEBUG [19351]: Closing database connection -- 09:29:18.727 SQL [19351]: pgsql_close() -- 09:29:20.455 INFO [19351]: COREGRADE is starting... -- 09:29:20.456 INFO [19351]: Version from config: 1.0 -- 09:29:20.456 DEBUG [19351]: Connecting to database... -- 09:29:20.456 DEBUG [19351]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:20.456 SQL [19351]: pgsql_db_connect() -- 09:29:20.460 DEBUG [19351]: Database connection successful -- 09:29:20.460 INFO [19351]: _SERVER found -- 09:29:20.460 INFO [19351]: REMOTE_ADDR = 192.168.1.13 -- 09:29:20.460 INFO [19351]: SERVER_NAME = oameye.works.coregrade.com -- 09:29:20.460 INFO [19351]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 09:29:20.460 INFO [19351]: HTTP_X_FORWARDED_FOR = 122.224.131.186 -- 09:29:20.492 INFO [19351]: COREGRADE is stopping... -- 09:29:20.492 DEBUG [19351]: Closing database connection -- 09:29:20.492 SQL [19351]: pgsql_close() -- 09:29:25.946 INFO [18905]: COREGRADE is starting... -- 09:29:25.947 INFO [18905]: Version from config: 1.0 -- 09:29:25.947 DEBUG [18905]: Connecting to database... -- 09:29:25.947 DEBUG [18905]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:25.947 SQL [18905]: pgsql_db_connect() -- 09:29:25.951 DEBUG [18905]: Database connection successful -- 09:29:25.951 INFO [18905]: _SERVER found -- 09:29:25.951 INFO [18905]: REMOTE_ADDR = 192.168.1.13 -- 09:29:25.951 INFO [18905]: SERVER_NAME = oameye.works.coregrade.com -- 09:29:25.951 INFO [18905]: QUERY_STRING = s=captcha -- 09:29:25.951 INFO [18905]: HTTP_X_FORWARDED_FOR = 122.224.131.186 -- 09:29:25.985 INFO [18905]: COREGRADE is stopping... -- 09:29:25.985 DEBUG [18905]: Closing database connection -- 09:29:25.985 SQL [18905]: pgsql_close() -- 09:29:27.794 INFO [18901]: COREGRADE is starting... -- 09:29:27.794 INFO [18901]: Version from config: 1.0 -- 09:29:27.794 DEBUG [18901]: Connecting to database... -- 09:29:27.794 DEBUG [18901]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:27.794 SQL [18901]: pgsql_db_connect() -- 09:29:27.799 DEBUG [18901]: Database connection successful -- 09:29:27.799 INFO [18901]: _SERVER found -- 09:29:27.799 INFO [18901]: REMOTE_ADDR = 192.168.1.13 -- 09:29:27.799 INFO [18901]: SERVER_NAME = oameye.works.coregrade.com -- 09:29:27.799 INFO [18901]: QUERY_STRING = -- 09:29:27.799 INFO [18901]: HTTP_X_FORWARDED_FOR = 122.224.131.186 -- 09:29:27.833 INFO [18901]: COREGRADE is stopping... -- 09:29:27.833 DEBUG [18901]: Closing database connection -- 09:29:27.833 SQL [18901]: pgsql_close() -- 12:18:50.411 INFO [18902]: COREGRADE is starting... -- 12:18:50.412 INFO [18902]: Version from config: 1.0 -- 12:18:50.412 DEBUG [18902]: Connecting to database... -- 12:18:50.412 DEBUG [18902]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:18:50.412 SQL [18902]: pgsql_db_connect() -- 12:18:50.417 DEBUG [18902]: Database connection successful -- 12:18:50.417 INFO [18902]: _SERVER found -- 12:18:50.417 INFO [18902]: REMOTE_ADDR = 192.168.1.13 -- 12:18:50.417 INFO [18902]: SERVER_NAME = oameye.works.coregrade.com -- 12:18:50.417 INFO [18902]: QUERY_STRING = /TP/public/index.php -- 12:18:50.417 INFO [18902]: HTTP_X_FORWARDED_FOR = 61.160.251.82 -- 12:18:50.431 INFO [18902]: COREGRADE is stopping... -- 12:18:50.431 DEBUG [18902]: Closing database connection -- 12:18:50.431 SQL [18902]: pgsql_close() -- 12:18:53.175 INFO [24818]: COREGRADE is starting... -- 12:18:53.176 INFO [24818]: Version from config: 1.0 -- 12:18:53.176 DEBUG [24818]: Connecting to database... -- 12:18:53.176 DEBUG [24818]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:18:53.176 SQL [24818]: pgsql_db_connect() -- 12:18:53.180 DEBUG [24818]: Database connection successful -- 12:18:53.180 INFO [24818]: _SERVER found -- 12:18:53.180 INFO [24818]: REMOTE_ADDR = 192.168.1.13 -- 12:18:53.180 INFO [24818]: SERVER_NAME = oameye.works.coregrade.com -- 12:18:53.180 INFO [24818]: QUERY_STRING = /TP/index.php -- 12:18:53.180 INFO [24818]: HTTP_X_FORWARDED_FOR = 61.160.251.82 -- 12:18:53.195 INFO [24818]: COREGRADE is stopping... -- 12:18:53.195 DEBUG [24818]: Closing database connection -- 12:18:53.195 SQL [24818]: pgsql_close() -- 12:19:00.155 INFO [24820]: COREGRADE is starting... -- 12:19:00.156 INFO [24820]: Version from config: 1.0 -- 12:19:00.156 DEBUG [24820]: Connecting to database... -- 12:19:00.156 DEBUG [24820]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:19:00.156 SQL [24820]: pgsql_db_connect() -- 12:19:00.160 DEBUG [24820]: Database connection successful -- 12:19:00.160 INFO [24820]: _SERVER found -- 12:19:00.160 INFO [24820]: REMOTE_ADDR = 192.168.1.13 -- 12:19:00.160 INFO [24820]: SERVER_NAME = oameye.works.coregrade.com -- 12:19:00.160 INFO [24820]: QUERY_STRING = /thinkphp/html/public/index.php -- 12:19:00.160 INFO [24820]: HTTP_X_FORWARDED_FOR = 61.160.251.82 -- 12:19:00.172 INFO [24820]: COREGRADE is stopping... -- 12:19:00.172 DEBUG [24820]: Closing database connection -- 12:19:00.172 SQL [24820]: pgsql_close() -- 12:19:03.999 INFO [24821]: COREGRADE is starting... -- 12:19:03.000 INFO [24821]: Version from config: 1.0 -- 12:19:03.000 DEBUG [24821]: Connecting to database... -- 12:19:03.000 DEBUG [24821]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:19:03.000 SQL [24821]: pgsql_db_connect() -- 12:19:04.004 DEBUG [24821]: Database connection successful -- 12:19:04.004 INFO [24821]: _SERVER found -- 12:19:04.004 INFO [24821]: REMOTE_ADDR = 192.168.1.13 -- 12:19:04.005 INFO [24821]: SERVER_NAME = oameye.works.coregrade.com -- 12:19:04.005 INFO [24821]: QUERY_STRING = -- 12:19:04.005 INFO [24821]: HTTP_X_FORWARDED_FOR = 61.160.251.82 -- 12:19:04.053 INFO [24821]: COREGRADE is stopping... -- 12:19:04.053 DEBUG [24821]: Closing database connection -- 12:19:04.053 SQL [24821]: pgsql_close() -- 13:10:49.067 INFO [18904]: COREGRADE is starting... -- 13:10:49.068 INFO [18904]: Version from config: 1.0 -- 13:10:49.068 DEBUG [18904]: Connecting to database... -- 13:10:49.068 DEBUG [18904]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:10:49.068 SQL [18904]: pgsql_db_connect() -- 13:10:49.072 DEBUG [18904]: Database connection successful -- 13:10:49.072 INFO [18904]: _SERVER found -- 13:10:49.072 INFO [18904]: REMOTE_ADDR = 192.168.1.13 -- 13:10:49.072 INFO [18904]: SERVER_NAME = oameye.works.coregrade.com -- 13:10:49.072 INFO [18904]: QUERY_STRING = -- 13:10:49.072 INFO [18904]: HTTP_X_FORWARDED_FOR = 96.126.103.73 -- 13:10:49.112 INFO [18904]: COREGRADE is stopping... -- 13:10:49.112 DEBUG [18904]: Closing database connection -- 13:10:49.112 SQL [18904]: pgsql_close() -- 18:21:23.459 INFO [18903]: COREGRADE is starting... -- 18:21:23.460 INFO [18903]: Version from config: 1.0 -- 18:21:23.460 DEBUG [18903]: Connecting to database... -- 18:21:23.460 DEBUG [18903]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:21:23.460 SQL [18903]: pgsql_db_connect() -- 18:21:23.465 DEBUG [18903]: Database connection successful -- 18:21:23.465 INFO [18903]: _SERVER found -- 18:21:23.465 INFO [18903]: REMOTE_ADDR = 192.168.1.13 -- 18:21:23.465 INFO [18903]: SERVER_NAME = oameye.works.coregrade.com -- 18:21:23.465 INFO [18903]: QUERY_STRING = -- 18:21:23.465 INFO [18903]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 18:21:23.506 INFO [18903]: COREGRADE is stopping... -- 18:21:23.506 DEBUG [18903]: Closing database connection -- 18:21:23.506 SQL [18903]: pgsql_close() -- 18:46:56.392 INFO [19351]: COREGRADE is starting... -- 18:46:56.393 INFO [19351]: Version from config: 1.0 -- 18:46:56.393 DEBUG [19351]: Connecting to database... -- 18:46:56.393 DEBUG [19351]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:46:56.393 SQL [19351]: pgsql_db_connect() -- 18:46:56.397 DEBUG [19351]: Database connection successful -- 18:46:56.397 INFO [19351]: _SERVER found -- 18:46:56.397 INFO [19351]: REMOTE_ADDR = 192.168.1.13 -- 18:46:56.397 INFO [19351]: SERVER_NAME = oameye.works.coregrade.com -- 18:46:56.397 INFO [19351]: QUERY_STRING = /robots.txt -- 18:46:56.397 INFO [19351]: HTTP_X_FORWARDED_FOR = 66.249.64.180 -- 18:46:56.410 INFO [19351]: COREGRADE is stopping... -- 18:46:56.410 DEBUG [19351]: Closing database connection -- 18:46:56.410 SQL [19351]: pgsql_close() -- 18:46:56.510 INFO [19351]: COREGRADE is starting... -- 18:46:56.510 INFO [19351]: Version from config: 1.0 -- 18:46:56.510 DEBUG [19351]: Connecting to database... -- 18:46:56.510 DEBUG [19351]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:46:56.510 SQL [19351]: pgsql_db_connect() -- 18:46:56.514 DEBUG [19351]: Database connection successful -- 18:46:56.514 INFO [19351]: _SERVER found -- 18:46:56.514 INFO [19351]: REMOTE_ADDR = 192.168.1.13 -- 18:46:56.514 INFO [19351]: SERVER_NAME = oameye.works.coregrade.com -- 18:46:56.514 INFO [19351]: QUERY_STRING = /auth/resetpass -- 18:46:56.514 INFO [19351]: HTTP_X_FORWARDED_FOR = 66.249.64.184 -- 18:46:56.548 INFO [19351]: COREGRADE is stopping... -- 18:46:56.548 DEBUG [19351]: Closing database connection -- 18:46:56.548 SQL [19351]: pgsql_close() -- 20:20:33.339 INFO [18905]: COREGRADE is starting... -- 20:20:33.339 INFO [18905]: Version from config: 1.0 -- 20:20:33.339 DEBUG [18905]: Connecting to database... -- 20:20:33.339 DEBUG [18905]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:20:33.339 SQL [18905]: pgsql_db_connect() -- 20:20:33.344 DEBUG [18905]: Database connection successful -- 20:20:33.344 INFO [18905]: _SERVER found -- 20:20:33.344 INFO [18905]: REMOTE_ADDR = 192.168.1.13 -- 20:20:33.344 INFO [18905]: SERVER_NAME = oameye.works.coregrade.com -- 20:20:33.344 INFO [18905]: QUERY_STRING = -- 20:20:33.344 INFO [18905]: HTTP_X_FORWARDED_FOR = 62.210.10.77 -- 20:20:33.377 INFO [18905]: COREGRADE is stopping... -- 20:20:33.377 DEBUG [18905]: Closing database connection -- 20:20:33.377 SQL [18905]: pgsql_close() -- 20:56:45.148 INFO [18901]: COREGRADE is starting... -- 20:56:45.148 INFO [18901]: Version from config: 1.0 -- 20:56:45.148 DEBUG [18901]: Connecting to database... -- 20:56:45.148 DEBUG [18901]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:56:45.148 SQL [18901]: pgsql_db_connect() -- 20:56:45.153 DEBUG [18901]: Database connection successful -- 20:56:45.153 INFO [18901]: _SERVER found -- 20:56:45.153 INFO [18901]: REMOTE_ADDR = 192.168.1.13 -- 20:56:45.153 INFO [18901]: SERVER_NAME = oameye.works.coregrade.com -- 20:56:45.153 INFO [18901]: QUERY_STRING = -- 20:56:45.153 INFO [18901]: HTTP_X_FORWARDED_FOR = 169.197.108.42 -- 20:56:45.191 INFO [18901]: COREGRADE is stopping... -- 20:56:45.191 DEBUG [18901]: Closing database connection -- 20:56:45.191 SQL [18901]: pgsql_close() -- 22:38:59.781 INFO [18902]: COREGRADE is starting... -- 22:38:59.782 INFO [18902]: Version from config: 1.0 -- 22:38:59.782 DEBUG [18902]: Connecting to database... -- 22:38:59.782 DEBUG [18902]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:38:59.782 SQL [18902]: pgsql_db_connect() -- 22:38:59.786 DEBUG [18902]: Database connection successful -- 22:38:59.786 INFO [18902]: _SERVER found -- 22:38:59.786 INFO [18902]: REMOTE_ADDR = 192.168.1.13 -- 22:38:59.786 INFO [18902]: SERVER_NAME = oameye.works.coregrade.com -- 22:38:59.786 INFO [18902]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1179482581.1586227134 -- 22:38:59.786 INFO [18902]: QUERY_STRING = -- 22:38:59.786 INFO [18902]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:38:59.826 INFO [18902]: COREGRADE is stopping... -- 22:38:59.826 DEBUG [18902]: Closing database connection -- 22:38:59.826 SQL [18902]: pgsql_close() -- 23:10:47.836 INFO [24821]: COREGRADE is starting... -- 23:10:47.837 INFO [24821]: Version from config: 1.0 -- 23:10:47.837 DEBUG [24821]: Connecting to database... -- 23:10:47.837 DEBUG [24821]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:10:47.837 SQL [24821]: pgsql_db_connect() -- 23:10:47.841 DEBUG [24821]: Database connection successful -- 23:10:47.841 INFO [24821]: _SERVER found -- 23:10:47.841 INFO [24821]: REMOTE_ADDR = 192.168.1.13 -- 23:10:47.841 INFO [24821]: SERVER_NAME = oameye.works.coregrade.com -- 23:10:47.841 INFO [24821]: QUERY_STRING = -- 23:10:47.841 INFO [24821]: HTTP_X_FORWARDED_FOR = 198.108.66.96 -- 23:10:47.880 INFO [24821]: COREGRADE is stopping... -- 23:10:47.880 DEBUG [24821]: Closing database connection -- 23:10:47.880 SQL [24821]: pgsql_close() -- 23:16:06.256 INFO [18904]: COREGRADE is starting... -- 23:16:06.256 INFO [18904]: Version from config: 1.0 -- 23:16:06.256 DEBUG [18904]: Connecting to database... -- 23:16:06.256 DEBUG [18904]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:16:06.256 SQL [18904]: pgsql_db_connect() -- 23:16:06.261 DEBUG [18904]: Database connection successful -- 23:16:06.261 INFO [18904]: _SERVER found -- 23:16:06.261 INFO [18904]: REMOTE_ADDR = 192.168.1.13 -- 23:16:06.261 INFO [18904]: SERVER_NAME = oameye.works.coregrade.com -- 23:16:06.261 INFO [18904]: QUERY_STRING = -- 23:16:06.261 INFO [18904]: HTTP_X_FORWARDED_FOR = 104.206.128.66 -- 23:16:06.297 INFO [18904]: COREGRADE is stopping... -- 23:16:06.297 DEBUG [18904]: Closing database connection -- 23:16:06.297 SQL [18904]: pgsql_close() -- 02:08:49.471 INFO [18903]: COREGRADE is starting... -- 02:08:49.471 INFO [18903]: Version from config: 1.0 -- 02:08:49.471 DEBUG [18903]: Connecting to database... -- 02:08:49.471 DEBUG [18903]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:49.471 SQL [18903]: pgsql_db_connect() -- 02:08:49.476 DEBUG [18903]: Database connection successful -- 02:08:49.476 INFO [18903]: _SERVER found -- 02:08:49.476 INFO [18903]: REMOTE_ADDR = 192.168.1.13 -- 02:08:49.476 INFO [18903]: SERVER_NAME = oameye.works.coregrade.com -- 02:08:49.476 INFO [18903]: QUERY_STRING = /.well-known/acme-challenge/lwt_ep1WhXyXPGf4H0HGtIZZEcLrUgFeZC_UM0JHd0Y -- 02:08:49.476 INFO [18903]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 02:08:49.491 INFO [18903]: COREGRADE is stopping... -- 02:08:49.491 DEBUG [18903]: Closing database connection -- 02:08:49.491 SQL [18903]: pgsql_close() -- 02:08:49.653 INFO [18903]: COREGRADE is starting... -- 02:08:49.653 INFO [18903]: Version from config: 1.0 -- 02:08:49.653 DEBUG [18903]: Connecting to database... -- 02:08:49.653 DEBUG [18903]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:49.653 SQL [18903]: pgsql_db_connect() -- 02:08:49.657 DEBUG [18903]: Database connection successful -- 02:08:49.657 INFO [18903]: _SERVER found -- 02:08:49.657 INFO [18903]: REMOTE_ADDR = 192.168.1.13 -- 02:08:49.657 INFO [18903]: SERVER_NAME = oameye.works.coregrade.com -- 02:08:49.657 INFO [18903]: QUERY_STRING = /.well-known/acme-challenge/lwt_ep1WhXyXPGf4H0HGtIZZEcLrUgFeZC_UM0JHd0Y -- 02:08:49.657 INFO [18903]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 02:08:49.670 INFO [18903]: COREGRADE is stopping... -- 02:08:49.670 DEBUG [18903]: Closing database connection -- 02:08:49.670 SQL [18903]: pgsql_close() -- 02:08:49.748 INFO [18901]: COREGRADE is starting... -- 02:08:49.748 INFO [18901]: Version from config: 1.0 -- 02:08:49.748 DEBUG [18901]: Connecting to database... -- 02:08:49.748 DEBUG [18901]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:49.748 SQL [18901]: pgsql_db_connect() -- 02:08:49.753 DEBUG [18901]: Database connection successful -- 02:08:49.753 INFO [18901]: _SERVER found -- 02:08:49.753 INFO [18901]: REMOTE_ADDR = 192.168.1.13 -- 02:08:49.753 INFO [18901]: SERVER_NAME = oameye.works.coregrade.com -- 02:08:49.753 INFO [18901]: QUERY_STRING = /.well-known/acme-challenge/lwt_ep1WhXyXPGf4H0HGtIZZEcLrUgFeZC_UM0JHd0Y -- 02:08:49.753 INFO [18901]: HTTP_X_FORWARDED_FOR = 34.209.232.166 -- 02:08:49.766 INFO [18901]: COREGRADE is stopping... -- 02:08:49.766 DEBUG [18901]: Closing database connection -- 02:08:49.766 SQL [18901]: pgsql_close() -- 02:08:49.773 INFO [18903]: COREGRADE is starting... -- 02:08:49.774 INFO [18903]: Version from config: 1.0 -- 02:08:49.774 DEBUG [18903]: Connecting to database... -- 02:08:49.774 DEBUG [18903]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:49.774 SQL [18903]: pgsql_db_connect() -- 02:08:49.778 DEBUG [18903]: Database connection successful -- 02:08:49.778 INFO [18903]: _SERVER found -- 02:08:49.778 INFO [18903]: REMOTE_ADDR = 192.168.1.13 -- 02:08:49.778 INFO [18903]: SERVER_NAME = oameye.works.coregrade.com -- 02:08:49.778 INFO [18903]: QUERY_STRING = /.well-known/acme-challenge/lwt_ep1WhXyXPGf4H0HGtIZZEcLrUgFeZC_UM0JHd0Y -- 02:08:49.778 INFO [18903]: HTTP_X_FORWARDED_FOR = 52.28.236.88 -- 02:08:49.789 INFO [18903]: COREGRADE is stopping... -- 02:08:49.789 DEBUG [18903]: Closing database connection -- 02:08:49.789 SQL [18903]: pgsql_close() -- 03:34:23.627 INFO [18902]: COREGRADE is starting... -- 03:34:23.627 INFO [18902]: Version from config: 1.0 -- 03:34:23.627 DEBUG [18902]: Connecting to database... -- 03:34:23.627 DEBUG [18902]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:34:23.627 SQL [18902]: pgsql_db_connect() -- 03:34:23.632 DEBUG [18902]: Database connection successful -- 03:34:23.632 INFO [18902]: _SERVER found -- 03:34:23.632 INFO [18902]: REMOTE_ADDR = 192.168.1.13 -- 03:34:23.632 INFO [18902]: SERVER_NAME = oameye.works.coregrade.com -- 03:34:23.632 INFO [18902]: QUERY_STRING = -- 03:34:23.632 INFO [18902]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 03:34:23.669 INFO [18902]: COREGRADE is stopping... -- 03:34:23.669 DEBUG [18902]: Closing database connection -- 03:34:23.669 SQL [18902]: pgsql_close() -- 12:07:12.250 INFO [24821]: COREGRADE is starting... -- 12:07:12.251 INFO [24821]: Version from config: 1.0 -- 12:07:12.251 DEBUG [24821]: Connecting to database... -- 12:07:12.251 DEBUG [24821]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:12.251 SQL [24821]: pgsql_db_connect() -- 12:07:12.255 DEBUG [24821]: Database connection successful -- 12:07:12.255 INFO [24821]: _SERVER found -- 12:07:12.255 INFO [24821]: REMOTE_ADDR = 192.168.1.13 -- 12:07:12.255 INFO [24821]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:12.255 INFO [24821]: QUERY_STRING = /TP/public/index.php -- 12:07:12.255 INFO [24821]: HTTP_X_FORWARDED_FOR = 218.201.124.92 -- 12:07:12.270 INFO [24821]: COREGRADE is stopping... -- 12:07:12.270 DEBUG [24821]: Closing database connection -- 12:07:12.270 SQL [24821]: pgsql_close() -- 12:07:14.002 INFO [24821]: COREGRADE is starting... -- 12:07:14.002 INFO [24821]: Version from config: 1.0 -- 12:07:14.002 DEBUG [24821]: Connecting to database... -- 12:07:14.002 DEBUG [24821]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:14.002 SQL [24821]: pgsql_db_connect() -- 12:07:14.006 DEBUG [24821]: Database connection successful -- 12:07:14.006 INFO [24821]: _SERVER found -- 12:07:14.006 INFO [24821]: REMOTE_ADDR = 192.168.1.13 -- 12:07:14.006 INFO [24821]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:14.006 INFO [24821]: QUERY_STRING = /TP/index.php -- 12:07:14.006 INFO [24821]: HTTP_X_FORWARDED_FOR = 218.201.124.92 -- 12:07:14.017 INFO [24821]: COREGRADE is stopping... -- 12:07:14.017 DEBUG [24821]: Closing database connection -- 12:07:14.018 SQL [24821]: pgsql_close() -- 12:07:16.111 INFO [24821]: COREGRADE is starting... -- 12:07:16.111 INFO [24821]: Version from config: 1.0 -- 12:07:16.111 DEBUG [24821]: Connecting to database... -- 12:07:16.111 DEBUG [24821]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:16.111 SQL [24821]: pgsql_db_connect() -- 12:07:16.115 DEBUG [24821]: Database connection successful -- 12:07:16.115 INFO [24821]: _SERVER found -- 12:07:16.115 INFO [24821]: REMOTE_ADDR = 192.168.1.13 -- 12:07:16.115 INFO [24821]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:16.115 INFO [24821]: QUERY_STRING = /thinkphp/html/public/index.php -- 12:07:16.115 INFO [24821]: HTTP_X_FORWARDED_FOR = 218.201.124.92 -- 12:07:16.127 INFO [24821]: COREGRADE is stopping... -- 12:07:16.127 DEBUG [24821]: Closing database connection -- 12:07:16.127 SQL [24821]: pgsql_close() -- 12:07:18.697 INFO [24821]: COREGRADE is starting... -- 12:07:18.697 INFO [24821]: Version from config: 1.0 -- 12:07:18.697 DEBUG [24821]: Connecting to database... -- 12:07:18.697 DEBUG [24821]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:18.697 SQL [24821]: pgsql_db_connect() -- 12:07:18.701 DEBUG [24821]: Database connection successful -- 12:07:18.701 INFO [24821]: _SERVER found -- 12:07:18.701 INFO [24821]: REMOTE_ADDR = 192.168.1.13 -- 12:07:18.701 INFO [24821]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:18.701 INFO [24821]: QUERY_STRING = /html/public/index.php -- 12:07:18.701 INFO [24821]: HTTP_X_FORWARDED_FOR = 218.201.124.92 -- 12:07:18.712 INFO [24821]: COREGRADE is stopping... -- 12:07:18.712 DEBUG [24821]: Closing database connection -- 12:07:18.712 SQL [24821]: pgsql_close() -- 12:07:22.973 INFO [24821]: COREGRADE is starting... -- 12:07:22.973 INFO [24821]: Version from config: 1.0 -- 12:07:22.973 DEBUG [24821]: Connecting to database... -- 12:07:22.974 DEBUG [24821]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:22.974 SQL [24821]: pgsql_db_connect() -- 12:07:22.978 DEBUG [24821]: Database connection successful -- 12:07:22.978 INFO [24821]: _SERVER found -- 12:07:22.978 INFO [24821]: REMOTE_ADDR = 192.168.1.13 -- 12:07:22.978 INFO [24821]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:22.978 INFO [24821]: QUERY_STRING = /public/index.php -- 12:07:22.978 INFO [24821]: HTTP_X_FORWARDED_FOR = 218.201.124.92 -- 12:07:22.989 INFO [24821]: COREGRADE is stopping... -- 12:07:22.989 DEBUG [24821]: Closing database connection -- 12:07:22.989 SQL [24821]: pgsql_close() -- 12:07:25.093 INFO [24821]: COREGRADE is starting... -- 12:07:25.093 INFO [24821]: Version from config: 1.0 -- 12:07:25.093 DEBUG [24821]: Connecting to database... -- 12:07:25.093 DEBUG [24821]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:25.093 SQL [24821]: pgsql_db_connect() -- 12:07:25.097 DEBUG [24821]: Database connection successful -- 12:07:25.097 INFO [24821]: _SERVER found -- 12:07:25.097 INFO [24821]: REMOTE_ADDR = 192.168.1.13 -- 12:07:25.097 INFO [24821]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:25.097 INFO [24821]: QUERY_STRING = /TP/html/public/index.php -- 12:07:25.097 INFO [24821]: HTTP_X_FORWARDED_FOR = 218.201.124.92 -- 12:07:25.109 INFO [24821]: COREGRADE is stopping... -- 12:07:25.109 DEBUG [24821]: Closing database connection -- 12:07:25.109 SQL [24821]: pgsql_close() -- 12:07:31.913 INFO [18904]: COREGRADE is starting... -- 12:07:31.913 INFO [18904]: Version from config: 1.0 -- 12:07:31.913 DEBUG [18904]: Connecting to database... -- 12:07:31.913 DEBUG [18904]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:31.913 SQL [18904]: pgsql_db_connect() -- 12:07:31.918 DEBUG [18904]: Database connection successful -- 12:07:31.918 INFO [18904]: _SERVER found -- 12:07:31.918 INFO [18904]: REMOTE_ADDR = 192.168.1.13 -- 12:07:31.918 INFO [18904]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:31.918 INFO [18904]: QUERY_STRING = -- 12:07:31.918 INFO [18904]: HTTP_X_FORWARDED_FOR = 218.201.124.92 -- 12:07:31.955 INFO [18904]: COREGRADE is stopping... -- 12:07:31.955 DEBUG [18904]: Closing database connection -- 12:07:31.955 SQL [18904]: pgsql_close() -- 12:30:35.660 INFO [19351]: COREGRADE is starting... -- 12:30:35.660 INFO [19351]: Version from config: 1.0 -- 12:30:35.660 DEBUG [19351]: Connecting to database... -- 12:30:35.660 DEBUG [19351]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:30:35.660 SQL [19351]: pgsql_db_connect() -- 12:30:35.665 DEBUG [19351]: Database connection successful -- 12:30:35.665 INFO [19351]: _SERVER found -- 12:30:35.665 INFO [19351]: REMOTE_ADDR = 192.168.1.13 -- 12:30:35.665 INFO [19351]: SERVER_NAME = oameye.works.coregrade.com -- 12:30:35.665 INFO [19351]: QUERY_STRING = /Telerik.Web.UI.WebResource.axd -- 12:30:35.665 INFO [19351]: HTTP_X_FORWARDED_FOR = 169.197.108.6 -- 12:30:35.679 INFO [19351]: COREGRADE is stopping... -- 12:30:35.679 DEBUG [19351]: Closing database connection -- 12:30:35.679 SQL [19351]: pgsql_close() -- 14:47:28.223 INFO [18901]: COREGRADE is starting... -- 14:47:28.223 INFO [18901]: Version from config: 1.0 -- 14:47:28.223 DEBUG [18901]: Connecting to database... -- 14:47:28.223 DEBUG [18901]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:47:28.223 SQL [18901]: pgsql_db_connect() -- 14:47:28.228 DEBUG [18901]: Database connection successful -- 14:47:28.228 INFO [18901]: _SERVER found -- 14:47:28.228 INFO [18901]: REMOTE_ADDR = 192.168.1.13 -- 14:47:28.228 INFO [18901]: SERVER_NAME = oameye.works.coregrade.com -- 14:47:28.228 INFO [18901]: QUERY_STRING = -- 14:47:28.228 INFO [18901]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 14:47:28.267 INFO [18901]: COREGRADE is stopping... -- 14:47:28.267 DEBUG [18901]: Closing database connection -- 14:47:28.267 SQL [18901]: pgsql_close() -- 15:34:45.478 INFO [18903]: COREGRADE is starting... -- 15:34:45.478 INFO [18903]: Version from config: 1.0 -- 15:34:45.478 DEBUG [18903]: Connecting to database... -- 15:34:45.478 DEBUG [18903]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:34:45.478 SQL [18903]: pgsql_db_connect() -- 15:34:45.483 DEBUG [18903]: Database connection successful -- 15:34:45.483 INFO [18903]: _SERVER found -- 15:34:45.483 INFO [18903]: REMOTE_ADDR = 192.168.1.13 -- 15:34:45.483 INFO [18903]: SERVER_NAME = oameye.works.coregrade.com -- 15:34:45.483 INFO [18903]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.1179482581.1586227134 -- 15:34:45.483 INFO [18903]: QUERY_STRING = -- 15:34:45.483 INFO [18903]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:34:45.521 INFO [18903]: COREGRADE is stopping... -- 15:34:45.521 DEBUG [18903]: Closing database connection -- 15:34:45.521 SQL [18903]: pgsql_close() -- 15:34:58.475 INFO [18905]: COREGRADE is starting... -- 15:34:58.475 INFO [18905]: Version from config: 1.0 -- 15:34:58.475 DEBUG [18905]: Connecting to database... -- 15:34:58.475 DEBUG [18905]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:34:58.475 SQL [18905]: pgsql_db_connect() -- 15:34:58.479 DEBUG [18905]: Database connection successful -- 15:34:58.479 INFO [18905]: _SERVER found -- 15:34:58.479 INFO [18905]: REMOTE_ADDR = 192.168.1.13 -- 15:34:58.479 INFO [18905]: SERVER_NAME = oameye.works.coregrade.com -- 15:34:58.479 INFO [18905]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1179482581.1586227134; ci_session=ic6lro66jts62893o6jk0gjfdgh9glvp -- 15:34:58.479 INFO [18905]: QUERY_STRING = -- 15:34:58.479 INFO [18905]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:34:58.511 INFO [18905]: COREGRADE is stopping... -- 15:34:58.511 DEBUG [18905]: Closing database connection -- 15:34:58.511 SQL [18905]: pgsql_close() -- 17:06:47.119 INFO [18902]: COREGRADE is starting... -- 17:06:47.119 INFO [18902]: Version from config: 1.0 -- 17:06:47.119 DEBUG [18902]: Connecting to database... -- 17:06:47.119 DEBUG [18902]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:47.119 SQL [18902]: pgsql_db_connect() -- 17:06:47.125 DEBUG [18902]: Database connection successful -- 17:06:47.125 INFO [18902]: _SERVER found -- 17:06:47.125 INFO [18902]: REMOTE_ADDR = 192.168.1.13 -- 17:06:47.125 INFO [18902]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:47.125 INFO [18902]: QUERY_STRING = /TP/public/index.php -- 17:06:47.125 INFO [18902]: HTTP_X_FORWARDED_FOR = 109.73.41.114 -- 17:06:47.140 INFO [18902]: COREGRADE is stopping... -- 17:06:47.140 DEBUG [18902]: Closing database connection -- 17:06:47.140 SQL [18902]: pgsql_close() -- 17:06:48.003 INFO [18902]: COREGRADE is starting... -- 17:06:48.003 INFO [18902]: Version from config: 1.0 -- 17:06:48.003 DEBUG [18902]: Connecting to database... -- 17:06:48.003 DEBUG [18902]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:48.003 SQL [18902]: pgsql_db_connect() -- 17:06:48.008 DEBUG [18902]: Database connection successful -- 17:06:48.008 INFO [18902]: _SERVER found -- 17:06:48.008 INFO [18902]: REMOTE_ADDR = 192.168.1.13 -- 17:06:48.008 INFO [18902]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:48.008 INFO [18902]: QUERY_STRING = /TP/index.php -- 17:06:48.008 INFO [18902]: HTTP_X_FORWARDED_FOR = 109.73.41.114 -- 17:06:48.019 INFO [18902]: COREGRADE is stopping... -- 17:06:48.019 DEBUG [18902]: Closing database connection -- 17:06:48.019 SQL [18902]: pgsql_close() -- 17:06:48.867 INFO [18902]: COREGRADE is starting... -- 17:06:48.867 INFO [18902]: Version from config: 1.0 -- 17:06:48.868 DEBUG [18902]: Connecting to database... -- 17:06:48.868 DEBUG [18902]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:48.868 SQL [18902]: pgsql_db_connect() -- 17:06:48.872 DEBUG [18902]: Database connection successful -- 17:06:48.872 INFO [18902]: _SERVER found -- 17:06:48.872 INFO [18902]: REMOTE_ADDR = 192.168.1.13 -- 17:06:48.872 INFO [18902]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:48.872 INFO [18902]: QUERY_STRING = /thinkphp/html/public/index.php -- 17:06:48.872 INFO [18902]: HTTP_X_FORWARDED_FOR = 109.73.41.114 -- 17:06:48.883 INFO [18902]: COREGRADE is stopping... -- 17:06:48.883 DEBUG [18902]: Closing database connection -- 17:06:48.883 SQL [18902]: pgsql_close() -- 17:06:49.740 INFO [18902]: COREGRADE is starting... -- 17:06:49.741 INFO [18902]: Version from config: 1.0 -- 17:06:49.741 DEBUG [18902]: Connecting to database... -- 17:06:49.741 DEBUG [18902]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:49.741 SQL [18902]: pgsql_db_connect() -- 17:06:49.745 DEBUG [18902]: Database connection successful -- 17:06:49.745 INFO [18902]: _SERVER found -- 17:06:49.745 INFO [18902]: REMOTE_ADDR = 192.168.1.13 -- 17:06:49.745 INFO [18902]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:49.745 INFO [18902]: QUERY_STRING = /html/public/index.php -- 17:06:49.745 INFO [18902]: HTTP_X_FORWARDED_FOR = 109.73.41.114 -- 17:06:49.756 INFO [18902]: COREGRADE is stopping... -- 17:06:49.757 DEBUG [18902]: Closing database connection -- 17:06:49.757 SQL [18902]: pgsql_close() -- 17:06:50.638 INFO [18902]: COREGRADE is starting... -- 17:06:50.638 INFO [18902]: Version from config: 1.0 -- 17:06:50.638 DEBUG [18902]: Connecting to database... -- 17:06:50.638 DEBUG [18902]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:50.638 SQL [18902]: pgsql_db_connect() -- 17:06:50.642 DEBUG [18902]: Database connection successful -- 17:06:50.642 INFO [18902]: _SERVER found -- 17:06:50.642 INFO [18902]: REMOTE_ADDR = 192.168.1.13 -- 17:06:50.643 INFO [18902]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:50.643 INFO [18902]: QUERY_STRING = /public/index.php -- 17:06:50.643 INFO [18902]: HTTP_X_FORWARDED_FOR = 109.73.41.114 -- 17:06:50.654 INFO [18902]: COREGRADE is stopping... -- 17:06:50.654 DEBUG [18902]: Closing database connection -- 17:06:50.654 SQL [18902]: pgsql_close() -- 17:06:51.517 INFO [24818]: COREGRADE is starting... -- 17:06:51.517 INFO [24818]: Version from config: 1.0 -- 17:06:51.517 DEBUG [24818]: Connecting to database... -- 17:06:51.517 DEBUG [24818]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:51.517 SQL [24818]: pgsql_db_connect() -- 17:06:51.522 DEBUG [24818]: Database connection successful -- 17:06:51.522 INFO [24818]: _SERVER found -- 17:06:51.522 INFO [24818]: REMOTE_ADDR = 192.168.1.13 -- 17:06:51.522 INFO [24818]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:51.522 INFO [24818]: QUERY_STRING = /TP/html/public/index.php -- 17:06:51.522 INFO [24818]: HTTP_X_FORWARDED_FOR = 109.73.41.114 -- 17:06:51.536 INFO [24818]: COREGRADE is stopping... -- 17:06:51.536 DEBUG [24818]: Closing database connection -- 17:06:51.536 SQL [24818]: pgsql_close() -- 17:06:52.418 INFO [24820]: COREGRADE is starting... -- 17:06:52.418 INFO [24820]: Version from config: 1.0 -- 17:06:52.418 DEBUG [24820]: Connecting to database... -- 17:06:52.418 DEBUG [24820]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:52.418 SQL [24820]: pgsql_db_connect() -- 17:06:52.423 DEBUG [24820]: Database connection successful -- 17:06:52.423 INFO [24820]: _SERVER found -- 17:06:52.423 INFO [24820]: REMOTE_ADDR = 192.168.1.13 -- 17:06:52.423 INFO [24820]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:52.423 INFO [24820]: QUERY_STRING = /elrekt.php -- 17:06:52.423 INFO [24820]: HTTP_X_FORWARDED_FOR = 109.73.41.114 -- 17:06:52.435 INFO [24820]: COREGRADE is stopping... -- 17:06:52.435 DEBUG [24820]: Closing database connection -- 17:06:52.435 SQL [24820]: pgsql_close() -- 17:06:53.284 INFO [18902]: COREGRADE is starting... -- 17:06:53.285 INFO [18902]: Version from config: 1.0 -- 17:06:53.285 DEBUG [18902]: Connecting to database... -- 17:06:53.285 DEBUG [18902]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:53.285 SQL [18902]: pgsql_db_connect() -- 17:06:53.289 DEBUG [18902]: Database connection successful -- 17:06:53.289 INFO [18902]: _SERVER found -- 17:06:53.289 INFO [18902]: REMOTE_ADDR = 192.168.1.13 -- 17:06:53.289 INFO [18902]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:53.289 INFO [18902]: QUERY_STRING = -- 17:06:53.289 INFO [18902]: HTTP_X_FORWARDED_FOR = 109.73.41.114 -- 17:06:53.330 INFO [18902]: COREGRADE is stopping... -- 17:06:53.330 DEBUG [18902]: Closing database connection -- 17:06:53.330 SQL [18902]: pgsql_close() -- 17:06:54.213 INFO [24820]: COREGRADE is starting... -- 17:06:54.214 INFO [24820]: Version from config: 1.0 -- 17:06:54.214 DEBUG [24820]: Connecting to database... -- 17:06:54.214 DEBUG [24820]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:54.214 SQL [24820]: pgsql_db_connect() -- 17:06:54.218 DEBUG [24820]: Database connection successful -- 17:06:54.218 INFO [24820]: _SERVER found -- 17:06:54.218 INFO [24820]: REMOTE_ADDR = 192.168.1.13 -- 17:06:54.218 INFO [24820]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:54.218 INFO [24820]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 17:06:54.218 INFO [24820]: HTTP_X_FORWARDED_FOR = 109.73.41.114 -- 17:06:54.251 INFO [24820]: COREGRADE is stopping... -- 17:06:54.251 DEBUG [24820]: Closing database connection -- 17:06:54.251 SQL [24820]: pgsql_close() -- 17:06:55.128 INFO [24818]: COREGRADE is starting... -- 17:06:55.128 INFO [24818]: Version from config: 1.0 -- 17:06:55.128 DEBUG [24818]: Connecting to database... -- 17:06:55.128 DEBUG [24818]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:55.128 SQL [24818]: pgsql_db_connect() -- 17:06:55.132 DEBUG [24818]: Database connection successful -- 17:06:55.132 INFO [24818]: _SERVER found -- 17:06:55.132 INFO [24818]: REMOTE_ADDR = 192.168.1.13 -- 17:06:55.132 INFO [24818]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:55.132 INFO [24818]: QUERY_STRING = s=captcha -- 17:06:55.132 INFO [24818]: HTTP_X_FORWARDED_FOR = 109.73.41.114 -- 17:06:55.165 INFO [24818]: COREGRADE is stopping... -- 17:06:55.165 DEBUG [24818]: Closing database connection -- 17:06:55.165 SQL [24818]: pgsql_close() -- 17:06:56.034 INFO [18902]: COREGRADE is starting... -- 17:06:56.034 INFO [18902]: Version from config: 1.0 -- 17:06:56.034 DEBUG [18902]: Connecting to database... -- 17:06:56.034 DEBUG [18902]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:56.034 SQL [18902]: pgsql_db_connect() -- 17:06:56.038 DEBUG [18902]: Database connection successful -- 17:06:56.038 INFO [18902]: _SERVER found -- 17:06:56.038 INFO [18902]: REMOTE_ADDR = 192.168.1.13 -- 17:06:56.038 INFO [18902]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:56.038 INFO [18902]: QUERY_STRING = -- 17:06:56.038 INFO [18902]: HTTP_X_FORWARDED_FOR = 109.73.41.114 -- 17:06:56.072 INFO [18902]: COREGRADE is stopping... -- 17:06:56.072 DEBUG [18902]: Closing database connection -- 17:06:56.072 SQL [18902]: pgsql_close() -- 18:23:45.523 INFO [24821]: COREGRADE is starting... -- 18:23:45.523 INFO [24821]: Version from config: 1.0 -- 18:23:45.523 DEBUG [24821]: Connecting to database... -- 18:23:45.523 DEBUG [24821]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:23:45.523 SQL [24821]: pgsql_db_connect() -- 18:23:45.529 DEBUG [24821]: Database connection successful -- 18:23:45.529 INFO [24821]: _SERVER found -- 18:23:45.529 INFO [24821]: REMOTE_ADDR = 192.168.1.13 -- 18:23:45.529 INFO [24821]: SERVER_NAME = oameye.works.coregrade.com -- 18:23:45.529 INFO [24821]: QUERY_STRING = -- 18:23:45.529 INFO [24821]: HTTP_X_FORWARDED_FOR = 170.130.187.30 -- 18:23:45.585 INFO [24821]: COREGRADE is stopping... -- 18:23:45.585 DEBUG [24821]: Closing database connection -- 18:23:45.585 SQL [24821]: pgsql_close() -- 22:51:38.360 INFO [18904]: COREGRADE is starting... -- 22:51:38.361 INFO [18904]: Version from config: 1.0 -- 22:51:38.361 DEBUG [18904]: Connecting to database... -- 22:51:38.361 DEBUG [18904]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:51:38.361 SQL [18904]: pgsql_db_connect() -- 22:51:38.366 DEBUG [18904]: Database connection successful -- 22:51:38.366 INFO [18904]: _SERVER found -- 22:51:38.366 INFO [18904]: REMOTE_ADDR = 192.168.1.13 -- 22:51:38.366 INFO [18904]: SERVER_NAME = oameye.works.coregrade.com -- 22:51:38.366 INFO [18904]: QUERY_STRING = /robots.txt -- 22:51:38.366 INFO [18904]: HTTP_X_FORWARDED_FOR = 66.249.64.184 -- 22:51:38.382 INFO [18904]: COREGRADE is stopping... -- 22:51:38.382 DEBUG [18904]: Closing database connection -- 22:51:38.382 SQL [18904]: pgsql_close() -- 22:51:38.423 INFO [18904]: COREGRADE is starting... -- 22:51:38.424 INFO [18904]: Version from config: 1.0 -- 22:51:38.424 DEBUG [18904]: Connecting to database... -- 22:51:38.424 DEBUG [18904]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:51:38.424 SQL [18904]: pgsql_db_connect() -- 22:51:38.428 DEBUG [18904]: Database connection successful -- 22:51:38.428 INFO [18904]: _SERVER found -- 22:51:38.428 INFO [18904]: REMOTE_ADDR = 192.168.1.13 -- 22:51:38.428 INFO [18904]: SERVER_NAME = oameye.works.coregrade.com -- 22:51:38.428 INFO [18904]: QUERY_STRING = -- 22:51:38.428 INFO [18904]: HTTP_X_FORWARDED_FOR = 66.249.64.184 -- 22:51:38.462 INFO [18904]: COREGRADE is stopping... -- 22:51:38.462 DEBUG [18904]: Closing database connection -- 22:51:38.462 SQL [18904]: pgsql_close() -- 01:32:23.706 INFO [19351]: COREGRADE is starting... -- 01:32:23.707 INFO [19351]: Version from config: 1.0 -- 01:32:23.707 DEBUG [19351]: Connecting to database... -- 01:32:23.707 DEBUG [19351]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:32:23.707 SQL [19351]: pgsql_db_connect() -- 01:32:23.712 DEBUG [19351]: Database connection successful -- 01:32:23.712 INFO [19351]: _SERVER found -- 01:32:23.712 INFO [19351]: REMOTE_ADDR = 192.168.1.13 -- 01:32:23.712 INFO [19351]: SERVER_NAME = oameye.works.coregrade.com -- 01:32:23.712 INFO [19351]: QUERY_STRING = -- 01:32:23.712 INFO [19351]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 01:32:23.750 INFO [19351]: COREGRADE is stopping... -- 01:32:23.750 DEBUG [19351]: Closing database connection -- 01:32:23.750 SQL [19351]: pgsql_close() -- 03:01:40.380 INFO [18901]: COREGRADE is starting... -- 03:01:40.381 INFO [18901]: Version from config: 1.0 -- 03:01:40.381 DEBUG [18901]: Connecting to database... -- 03:01:40.381 DEBUG [18901]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:01:40.381 SQL [18901]: pgsql_db_connect() -- 03:01:40.387 DEBUG [18901]: Database connection successful -- 03:01:40.387 INFO [18901]: _SERVER found -- 03:01:40.387 INFO [18901]: REMOTE_ADDR = 192.168.1.13 -- 03:01:40.387 INFO [18901]: SERVER_NAME = oameye.works.coregrade.com -- 03:01:40.387 INFO [18901]: QUERY_STRING = /.well-known/acme-challenge/B_lZ9qoZ4xqplcspxC4ztIjFx4H_zVysf-26bQsNs04 -- 03:01:40.387 INFO [18901]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 03:01:40.407 INFO [18901]: COREGRADE is stopping... -- 03:01:40.407 DEBUG [18901]: Closing database connection -- 03:01:40.407 SQL [18901]: pgsql_close() -- 03:01:40.536 INFO [18901]: COREGRADE is starting... -- 03:01:40.536 INFO [18901]: Version from config: 1.0 -- 03:01:40.536 DEBUG [18901]: Connecting to database... -- 03:01:40.536 DEBUG [18901]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:01:40.536 SQL [18901]: pgsql_db_connect() -- 03:01:40.540 DEBUG [18901]: Database connection successful -- 03:01:40.540 INFO [18901]: _SERVER found -- 03:01:40.540 INFO [18901]: REMOTE_ADDR = 192.168.1.13 -- 03:01:40.540 INFO [18901]: SERVER_NAME = oameye.works.coregrade.com -- 03:01:40.540 INFO [18901]: QUERY_STRING = /.well-known/acme-challenge/B_lZ9qoZ4xqplcspxC4ztIjFx4H_zVysf-26bQsNs04 -- 03:01:40.540 INFO [18901]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 03:01:40.551 INFO [18901]: COREGRADE is stopping... -- 03:01:40.551 DEBUG [18901]: Closing database connection -- 03:01:40.551 SQL [18901]: pgsql_close() -- 09:15:24.626 INFO [24820]: COREGRADE is starting... -- 09:15:24.626 INFO [24820]: Version from config: 1.0 -- 09:15:24.626 DEBUG [24820]: Connecting to database... -- 09:15:24.626 DEBUG [24820]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:15:24.626 SQL [24820]: pgsql_db_connect() -- 09:15:24.631 DEBUG [24820]: Database connection successful -- 09:15:24.631 INFO [24820]: _SERVER found -- 09:15:24.631 INFO [24820]: REMOTE_ADDR = 10.0.0.15 -- 09:15:24.631 INFO [24820]: SERVER_NAME = oameye.works.coregrade.com -- 09:15:24.631 INFO [24820]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.1179482581.1586227134 -- 09:15:24.631 INFO [24820]: QUERY_STRING = -- 09:15:24.631 INFO [24820]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:15:24.669 INFO [24820]: COREGRADE is stopping... -- 09:15:24.669 DEBUG [24820]: Closing database connection -- 09:15:24.669 SQL [24820]: pgsql_close() -- 09:15:26.602 INFO [24820]: COREGRADE is starting... -- 09:15:26.602 INFO [24820]: Version from config: 1.0 -- 09:15:26.602 DEBUG [24820]: Connecting to database... -- 09:15:26.602 DEBUG [24820]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:15:26.602 SQL [24820]: pgsql_db_connect() -- 09:15:26.607 DEBUG [24820]: Database connection successful -- 09:15:26.607 INFO [24820]: _SERVER found -- 09:15:26.607 INFO [24820]: REMOTE_ADDR = 10.0.0.15 -- 09:15:26.607 INFO [24820]: SERVER_NAME = oameye.works.coregrade.com -- 09:15:26.607 INFO [24820]: HTTP_COOKIE = ci_session=oijv0i2mk0i6q01do64rkja48r3d0phk; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.1179482581.1586227134 -- 09:15:26.607 INFO [24820]: QUERY_STRING = -- 09:15:26.607 INFO [24820]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:15:26.638 INFO [24820]: COREGRADE is stopping... -- 09:15:26.638 DEBUG [24820]: Closing database connection -- 09:15:26.638 SQL [24820]: pgsql_close() -- 09:15:51.921 INFO [24818]: COREGRADE is starting... -- 09:15:51.922 INFO [24818]: Version from config: 1.0 -- 09:15:51.922 DEBUG [24818]: Connecting to database... -- 09:15:51.922 DEBUG [24818]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:15:51.922 SQL [24818]: pgsql_db_connect() -- 09:15:51.926 DEBUG [24818]: Database connection successful -- 09:15:51.926 INFO [24818]: _SERVER found -- 09:15:51.926 INFO [24818]: REMOTE_ADDR = 10.0.0.15 -- 09:15:51.926 INFO [24818]: SERVER_NAME = oameye.works.coregrade.com -- 09:15:51.926 INFO [24818]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911 -- 09:15:51.926 INFO [24818]: QUERY_STRING = -- 09:15:51.926 INFO [24818]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:15:51.962 INFO [24818]: COREGRADE is stopping... -- 09:15:51.962 DEBUG [24818]: Closing database connection -- 09:15:51.962 SQL [24818]: pgsql_close() -- 09:15:52.638 INFO [24818]: COREGRADE is starting... -- 09:15:52.638 INFO [24818]: Version from config: 1.0 -- 09:15:52.638 DEBUG [24818]: Connecting to database... -- 09:15:52.639 DEBUG [24818]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:15:52.639 SQL [24818]: pgsql_db_connect() -- 09:15:52.643 DEBUG [24818]: Database connection successful -- 09:15:52.643 INFO [24818]: _SERVER found -- 09:15:52.643 INFO [24818]: REMOTE_ADDR = 10.0.0.15 -- 09:15:52.643 INFO [24818]: SERVER_NAME = oameye.works.coregrade.com -- 09:15:52.643 INFO [24818]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=j0ig9da87klqejkam6585rs9rqjptm9l -- 09:15:52.643 INFO [24818]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 09:15:52.643 INFO [24818]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:15:52.654 INFO [24818]: COREGRADE is stopping... -- 09:15:52.654 DEBUG [24818]: Closing database connection -- 09:15:52.654 SQL [24818]: pgsql_close() -- 09:15:52.672 INFO [24818]: COREGRADE is starting... -- 09:15:52.672 INFO [24818]: Version from config: 1.0 -- 09:15:52.672 DEBUG [24818]: Connecting to database... -- 09:15:52.672 DEBUG [24818]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:15:52.672 SQL [24818]: pgsql_db_connect() -- 09:15:52.676 DEBUG [24818]: Database connection successful -- 09:15:52.676 INFO [24818]: _SERVER found -- 09:15:52.676 INFO [24818]: REMOTE_ADDR = 10.0.0.15 -- 09:15:52.676 INFO [24818]: SERVER_NAME = oameye.works.coregrade.com -- 09:15:52.676 INFO [24818]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=j0ig9da87klqejkam6585rs9rqjptm9l -- 09:15:52.676 INFO [24818]: QUERY_STRING = /assets/img/footer_1.jpg -- 09:15:52.676 INFO [24818]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:15:52.687 INFO [24818]: COREGRADE is stopping... -- 09:15:52.687 DEBUG [24818]: Closing database connection -- 09:15:52.687 SQL [24818]: pgsql_close() -- 09:44:50.072 INFO [18902]: COREGRADE is starting... -- 09:44:50.073 INFO [18902]: Version from config: 1.0 -- 09:44:50.073 DEBUG [18902]: Connecting to database... -- 09:44:50.073 DEBUG [18902]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:44:50.073 SQL [18902]: pgsql_db_connect() -- 09:44:50.077 DEBUG [18902]: Database connection successful -- 09:44:50.077 INFO [18902]: _SERVER found -- 09:44:50.077 INFO [18902]: REMOTE_ADDR = 10.0.0.15 -- 09:44:50.077 INFO [18902]: SERVER_NAME = oameye.works.coregrade.com -- 09:44:50.077 INFO [18902]: QUERY_STRING = -- 09:44:50.077 INFO [18902]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 09:44:50.116 INFO [18902]: COREGRADE is stopping... -- 09:44:50.116 DEBUG [18902]: Closing database connection -- 09:44:50.116 SQL [18902]: pgsql_close() -- 14:32:46.925 INFO [24821]: COREGRADE is starting... -- 14:32:46.925 INFO [24821]: Version from config: 1.0 -- 14:32:46.925 DEBUG [24821]: Connecting to database... -- 14:32:46.925 DEBUG [24821]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:32:46.925 SQL [24821]: pgsql_db_connect() -- 14:32:46.930 DEBUG [24821]: Database connection successful -- 14:32:46.930 INFO [24821]: _SERVER found -- 14:32:46.930 INFO [24821]: REMOTE_ADDR = 10.0.0.15 -- 14:32:46.930 INFO [24821]: SERVER_NAME = oameye.works.coregrade.com -- 14:32:46.930 INFO [24821]: QUERY_STRING = -- 14:32:46.930 INFO [24821]: HTTP_X_FORWARDED_FOR = 128.14.134.134 -- 14:32:46.971 INFO [24821]: COREGRADE is stopping... -- 14:32:46.971 DEBUG [24821]: Closing database connection -- 14:32:46.971 SQL [24821]: pgsql_close() -- 18:32:35.209 INFO [18904]: COREGRADE is starting... -- 18:32:35.209 INFO [18904]: Version from config: 1.0 -- 18:32:35.209 DEBUG [18904]: Connecting to database... -- 18:32:35.209 DEBUG [18904]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:32:35.209 SQL [18904]: pgsql_db_connect() -- 18:32:35.215 DEBUG [18904]: Database connection successful -- 18:32:35.215 INFO [18904]: _SERVER found -- 18:32:35.215 INFO [18904]: REMOTE_ADDR = 10.0.0.15 -- 18:32:35.215 INFO [18904]: SERVER_NAME = oameye.works.coregrade.com -- 18:32:35.215 INFO [18904]: QUERY_STRING = -- 18:32:35.215 INFO [18904]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 18:32:35.256 INFO [18904]: COREGRADE is stopping... -- 18:32:35.256 DEBUG [18904]: Closing database connection -- 18:32:35.257 SQL [18904]: pgsql_close() -- 19:02:01.385 INFO [19351]: COREGRADE is starting... -- 19:02:01.386 INFO [19351]: Version from config: 1.0 -- 19:02:01.386 DEBUG [19351]: Connecting to database... -- 19:02:01.386 DEBUG [19351]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:02:01.387 SQL [19351]: pgsql_db_connect() -- 19:02:01.391 DEBUG [19351]: Database connection successful -- 19:02:01.391 INFO [19351]: _SERVER found -- 19:02:01.391 INFO [19351]: REMOTE_ADDR = 10.0.0.15 -- 19:02:01.391 INFO [19351]: SERVER_NAME = oameye.works.coregrade.com -- 19:02:01.391 INFO [19351]: QUERY_STRING = -- 19:02:01.391 INFO [19351]: HTTP_X_FORWARDED_FOR = 122.228.19.79 -- 19:02:01.429 INFO [19351]: COREGRADE is stopping... -- 19:02:01.429 DEBUG [19351]: Closing database connection -- 19:02:01.429 SQL [19351]: pgsql_close() -- 19:29:43.814 INFO [18903]: COREGRADE is starting... -- 19:29:43.815 INFO [18903]: Version from config: 1.0 -- 19:29:43.815 DEBUG [18903]: Connecting to database... -- 19:29:43.815 DEBUG [18903]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:43.815 SQL [18903]: pgsql_db_connect() -- 19:29:43.819 DEBUG [18903]: Database connection successful -- 19:29:43.819 INFO [18903]: _SERVER found -- 19:29:43.819 INFO [18903]: REMOTE_ADDR = 10.0.0.15 -- 19:29:43.819 INFO [18903]: SERVER_NAME = oameye.works.coregrade.com -- 19:29:43.819 INFO [18903]: QUERY_STRING = /TP/public/index.php -- 19:29:43.819 INFO [18903]: HTTP_X_FORWARDED_FOR = 190.107.19.181 -- 19:29:43.834 INFO [18903]: COREGRADE is stopping... -- 19:29:43.834 DEBUG [18903]: Closing database connection -- 19:29:43.834 SQL [18903]: pgsql_close() -- 19:29:44.299 INFO [18901]: COREGRADE is starting... -- 19:29:44.299 INFO [18901]: Version from config: 1.0 -- 19:29:44.299 DEBUG [18901]: Connecting to database... -- 19:29:44.299 DEBUG [18901]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:44.299 SQL [18901]: pgsql_db_connect() -- 19:29:44.303 DEBUG [18901]: Database connection successful -- 19:29:44.303 INFO [18901]: _SERVER found -- 19:29:44.303 INFO [18901]: REMOTE_ADDR = 10.0.0.15 -- 19:29:44.303 INFO [18901]: SERVER_NAME = oameye.works.coregrade.com -- 19:29:44.303 INFO [18901]: QUERY_STRING = /TP/index.php -- 19:29:44.303 INFO [18901]: HTTP_X_FORWARDED_FOR = 190.107.19.181 -- 19:29:44.317 INFO [18901]: COREGRADE is stopping... -- 19:29:44.317 DEBUG [18901]: Closing database connection -- 19:29:44.317 SQL [18901]: pgsql_close() -- 19:29:44.782 INFO [18901]: COREGRADE is starting... -- 19:29:44.782 INFO [18901]: Version from config: 1.0 -- 19:29:44.782 DEBUG [18901]: Connecting to database... -- 19:29:44.782 DEBUG [18901]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:44.782 SQL [18901]: pgsql_db_connect() -- 19:29:44.787 DEBUG [18901]: Database connection successful -- 19:29:44.787 INFO [18901]: _SERVER found -- 19:29:44.787 INFO [18901]: REMOTE_ADDR = 10.0.0.15 -- 19:29:44.787 INFO [18901]: SERVER_NAME = oameye.works.coregrade.com -- 19:29:44.787 INFO [18901]: QUERY_STRING = /thinkphp/html/public/index.php -- 19:29:44.787 INFO [18901]: HTTP_X_FORWARDED_FOR = 190.107.19.181 -- 19:29:44.798 INFO [18901]: COREGRADE is stopping... -- 19:29:44.798 DEBUG [18901]: Closing database connection -- 19:29:44.798 SQL [18901]: pgsql_close() -- 19:29:45.267 INFO [18903]: COREGRADE is starting... -- 19:29:45.267 INFO [18903]: Version from config: 1.0 -- 19:29:45.267 DEBUG [18903]: Connecting to database... -- 19:29:45.267 DEBUG [18903]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:45.267 SQL [18903]: pgsql_db_connect() -- 19:29:45.271 DEBUG [18903]: Database connection successful -- 19:29:45.271 INFO [18903]: _SERVER found -- 19:29:45.271 INFO [18903]: REMOTE_ADDR = 10.0.0.15 -- 19:29:45.271 INFO [18903]: SERVER_NAME = oameye.works.coregrade.com -- 19:29:45.271 INFO [18903]: QUERY_STRING = /html/public/index.php -- 19:29:45.271 INFO [18903]: HTTP_X_FORWARDED_FOR = 190.107.19.181 -- 19:29:45.283 INFO [18903]: COREGRADE is stopping... -- 19:29:45.283 DEBUG [18903]: Closing database connection -- 19:29:45.283 SQL [18903]: pgsql_close() -- 19:29:45.737 INFO [18903]: COREGRADE is starting... -- 19:29:45.737 INFO [18903]: Version from config: 1.0 -- 19:29:45.737 DEBUG [18903]: Connecting to database... -- 19:29:45.737 DEBUG [18903]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:45.737 SQL [18903]: pgsql_db_connect() -- 19:29:45.741 DEBUG [18903]: Database connection successful -- 19:29:45.741 INFO [18903]: _SERVER found -- 19:29:45.741 INFO [18903]: REMOTE_ADDR = 10.0.0.15 -- 19:29:45.741 INFO [18903]: SERVER_NAME = oameye.works.coregrade.com -- 19:29:45.741 INFO [18903]: QUERY_STRING = /public/index.php -- 19:29:45.741 INFO [18903]: HTTP_X_FORWARDED_FOR = 190.107.19.181 -- 19:29:45.752 INFO [18903]: COREGRADE is stopping... -- 19:29:45.752 DEBUG [18903]: Closing database connection -- 19:29:45.752 SQL [18903]: pgsql_close() -- 19:29:46.232 INFO [18903]: COREGRADE is starting... -- 19:29:46.233 INFO [18903]: Version from config: 1.0 -- 19:29:46.233 DEBUG [18903]: Connecting to database... -- 19:29:46.233 DEBUG [18903]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:46.233 SQL [18903]: pgsql_db_connect() -- 19:29:46.237 DEBUG [18903]: Database connection successful -- 19:29:46.237 INFO [18903]: _SERVER found -- 19:29:46.237 INFO [18903]: REMOTE_ADDR = 10.0.0.15 -- 19:29:46.237 INFO [18903]: SERVER_NAME = oameye.works.coregrade.com -- 19:29:46.237 INFO [18903]: QUERY_STRING = /TP/html/public/index.php -- 19:29:46.237 INFO [18903]: HTTP_X_FORWARDED_FOR = 190.107.19.181 -- 19:29:46.248 INFO [18903]: COREGRADE is stopping... -- 19:29:46.248 DEBUG [18903]: Closing database connection -- 19:29:46.248 SQL [18903]: pgsql_close() -- 19:29:46.720 INFO [18901]: COREGRADE is starting... -- 19:29:46.720 INFO [18901]: Version from config: 1.0 -- 19:29:46.720 DEBUG [18901]: Connecting to database... -- 19:29:46.720 DEBUG [18901]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:46.720 SQL [18901]: pgsql_db_connect() -- 19:29:46.724 DEBUG [18901]: Database connection successful -- 19:29:46.724 INFO [18901]: _SERVER found -- 19:29:46.724 INFO [18901]: REMOTE_ADDR = 10.0.0.15 -- 19:29:46.724 INFO [18901]: SERVER_NAME = oameye.works.coregrade.com -- 19:29:46.724 INFO [18901]: QUERY_STRING = /elrekt.php -- 19:29:46.724 INFO [18901]: HTTP_X_FORWARDED_FOR = 190.107.19.181 -- 19:29:46.735 INFO [18901]: COREGRADE is stopping... -- 19:29:46.736 DEBUG [18901]: Closing database connection -- 19:29:46.736 SQL [18901]: pgsql_close() -- 19:29:47.197 INFO [18903]: COREGRADE is starting... -- 19:29:47.197 INFO [18903]: Version from config: 1.0 -- 19:29:47.197 DEBUG [18903]: Connecting to database... -- 19:29:47.197 DEBUG [18903]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:47.197 SQL [18903]: pgsql_db_connect() -- 19:29:47.201 DEBUG [18903]: Database connection successful -- 19:29:47.201 INFO [18903]: _SERVER found -- 19:29:47.201 INFO [18903]: REMOTE_ADDR = 10.0.0.15 -- 19:29:47.201 INFO [18903]: SERVER_NAME = oameye.works.coregrade.com -- 19:29:47.201 INFO [18903]: QUERY_STRING = -- 19:29:47.201 INFO [18903]: HTTP_X_FORWARDED_FOR = 190.107.19.181 -- 19:29:47.234 INFO [18903]: COREGRADE is stopping... -- 19:29:47.234 DEBUG [18903]: Closing database connection -- 19:29:47.234 SQL [18903]: pgsql_close() -- 19:29:47.694 INFO [18901]: COREGRADE is starting... -- 19:29:47.694 INFO [18901]: Version from config: 1.0 -- 19:29:47.694 DEBUG [18901]: Connecting to database... -- 19:29:47.694 DEBUG [18901]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:47.694 SQL [18901]: pgsql_db_connect() -- 19:29:47.698 DEBUG [18901]: Database connection successful -- 19:29:47.698 INFO [18901]: _SERVER found -- 19:29:47.698 INFO [18901]: REMOTE_ADDR = 10.0.0.15 -- 19:29:47.698 INFO [18901]: SERVER_NAME = oameye.works.coregrade.com -- 19:29:47.698 INFO [18901]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 19:29:47.698 INFO [18901]: HTTP_X_FORWARDED_FOR = 190.107.19.181 -- 19:29:47.730 INFO [18901]: COREGRADE is stopping... -- 19:29:47.730 DEBUG [18901]: Closing database connection -- 19:29:47.730 SQL [18901]: pgsql_close() -- 19:29:48.248 INFO [18901]: COREGRADE is starting... -- 19:29:48.248 INFO [18901]: Version from config: 1.0 -- 19:29:48.248 DEBUG [18901]: Connecting to database... -- 19:29:48.248 DEBUG [18901]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:48.248 SQL [18901]: pgsql_db_connect() -- 19:29:48.252 DEBUG [18901]: Database connection successful -- 19:29:48.252 INFO [18901]: _SERVER found -- 19:29:48.252 INFO [18901]: REMOTE_ADDR = 10.0.0.15 -- 19:29:48.252 INFO [18901]: SERVER_NAME = oameye.works.coregrade.com -- 19:29:48.252 INFO [18901]: QUERY_STRING = s=captcha -- 19:29:48.252 INFO [18901]: HTTP_X_FORWARDED_FOR = 190.107.19.181 -- 19:29:48.283 INFO [18901]: COREGRADE is stopping... -- 19:29:48.283 DEBUG [18901]: Closing database connection -- 19:29:48.283 SQL [18901]: pgsql_close() -- 19:29:48.755 INFO [18905]: COREGRADE is starting... -- 19:29:48.755 INFO [18905]: Version from config: 1.0 -- 19:29:48.755 DEBUG [18905]: Connecting to database... -- 19:29:48.755 DEBUG [18905]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:48.755 SQL [18905]: pgsql_db_connect() -- 19:29:48.759 DEBUG [18905]: Database connection successful -- 19:29:48.759 INFO [18905]: _SERVER found -- 19:29:48.759 INFO [18905]: REMOTE_ADDR = 10.0.0.15 -- 19:29:48.759 INFO [18905]: SERVER_NAME = oameye.works.coregrade.com -- 19:29:48.759 INFO [18905]: QUERY_STRING = -- 19:29:48.759 INFO [18905]: HTTP_X_FORWARDED_FOR = 190.107.19.181 -- 19:29:48.791 INFO [18905]: COREGRADE is stopping... -- 19:29:48.791 DEBUG [18905]: Closing database connection -- 19:29:48.791 SQL [18905]: pgsql_close() -- 23:13:39.843 INFO [24818]: COREGRADE is starting... -- 23:13:39.844 INFO [24818]: Version from config: 1.0 -- 23:13:39.844 DEBUG [24818]: Connecting to database... -- 23:13:39.844 DEBUG [24818]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:13:39.844 SQL [24818]: pgsql_db_connect() -- 23:13:39.849 DEBUG [24818]: Database connection successful -- 23:13:39.849 INFO [24818]: _SERVER found -- 23:13:39.849 INFO [24818]: REMOTE_ADDR = 10.0.0.15 -- 23:13:39.849 INFO [24818]: SERVER_NAME = oameye.works.coregrade.com -- 23:13:39.849 INFO [24818]: QUERY_STRING = /solr/admin/info/system -- 23:13:39.849 INFO [24818]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 23:13:39.864 INFO [24818]: COREGRADE is stopping... -- 23:13:39.864 DEBUG [24818]: Closing database connection -- 23:13:39.864 SQL [24818]: pgsql_close() -- 23:21:27.821 INFO [18902]: COREGRADE is starting... -- 23:21:27.822 INFO [18902]: Version from config: 1.0 -- 23:21:27.822 DEBUG [18902]: Connecting to database... -- 23:21:27.822 DEBUG [18902]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:21:27.822 SQL [18902]: pgsql_db_connect() -- 23:21:27.826 DEBUG [18902]: Database connection successful -- 23:21:27.826 INFO [18902]: _SERVER found -- 23:21:27.826 INFO [18902]: REMOTE_ADDR = 10.0.0.15 -- 23:21:27.826 INFO [18902]: SERVER_NAME = oameye.works.coregrade.com -- 23:21:27.826 INFO [18902]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 23:21:27.826 INFO [18902]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 23:21:27.865 INFO [18902]: COREGRADE is stopping... -- 23:21:27.865 DEBUG [18902]: Closing database connection -- 23:21:27.865 SQL [18902]: pgsql_close() -- 23:21:28.693 INFO [24821]: COREGRADE is starting... -- 23:21:28.694 INFO [24821]: Version from config: 1.0 -- 23:21:28.694 DEBUG [24821]: Connecting to database... -- 23:21:28.694 DEBUG [24821]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:21:28.694 SQL [24821]: pgsql_db_connect() -- 23:21:28.698 DEBUG [24821]: Database connection successful -- 23:21:28.698 INFO [24821]: _SERVER found -- 23:21:28.698 INFO [24821]: REMOTE_ADDR = 10.0.0.15 -- 23:21:28.698 INFO [24821]: SERVER_NAME = oameye.works.coregrade.com -- 23:21:28.698 INFO [24821]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 23:21:28.698 INFO [24821]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 23:21:28.737 INFO [24821]: COREGRADE is stopping... -- 23:21:28.737 DEBUG [24821]: Closing database connection -- 23:21:28.737 SQL [24821]: pgsql_close() -- 23:25:47.510 INFO [18904]: COREGRADE is starting... -- 23:25:47.511 INFO [18904]: Version from config: 1.0 -- 23:25:47.511 DEBUG [18904]: Connecting to database... -- 23:25:47.511 DEBUG [18904]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:25:47.511 SQL [18904]: pgsql_db_connect() -- 23:25:47.515 DEBUG [18904]: Database connection successful -- 23:25:47.515 INFO [18904]: _SERVER found -- 23:25:47.515 INFO [18904]: REMOTE_ADDR = 10.0.0.15 -- 23:25:47.515 INFO [18904]: SERVER_NAME = oameye.works.coregrade.com -- 23:25:47.515 INFO [18904]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 23:25:47.515 INFO [18904]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 23:25:47.550 INFO [18904]: COREGRADE is stopping... -- 23:25:47.550 DEBUG [18904]: Closing database connection -- 23:25:47.550 SQL [18904]: pgsql_close() -- 02:54:27.017 INFO [19351]: COREGRADE is starting... -- 02:54:27.017 INFO [19351]: Version from config: 1.0 -- 02:54:27.017 DEBUG [19351]: Connecting to database... -- 02:54:27.017 DEBUG [19351]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:54:27.018 SQL [19351]: pgsql_db_connect() -- 02:54:27.022 DEBUG [19351]: Database connection successful -- 02:54:27.022 INFO [19351]: _SERVER found -- 02:54:27.022 INFO [19351]: REMOTE_ADDR = 10.0.0.15 -- 02:54:27.022 INFO [19351]: SERVER_NAME = oameye.works.coregrade.com -- 02:54:27.022 INFO [19351]: QUERY_STRING = /.well-known/acme-challenge/RKB8UliiUO5Bmd-s9HNa6lMlXWj4Y3dfSh3jJqpe5Uo -- 02:54:27.022 INFO [19351]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 02:54:27.036 INFO [19351]: COREGRADE is stopping... -- 02:54:27.036 DEBUG [19351]: Closing database connection -- 02:54:27.036 SQL [19351]: pgsql_close() -- 02:54:27.252 INFO [18901]: COREGRADE is starting... -- 02:54:27.253 INFO [18901]: Version from config: 1.0 -- 02:54:27.253 DEBUG [18901]: Connecting to database... -- 02:54:27.253 DEBUG [18901]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:54:27.253 SQL [18901]: pgsql_db_connect() -- 02:54:27.257 DEBUG [18901]: Database connection successful -- 02:54:27.257 INFO [18901]: _SERVER found -- 02:54:27.257 INFO [18901]: REMOTE_ADDR = 10.0.0.15 -- 02:54:27.257 INFO [18901]: SERVER_NAME = oameye.works.coregrade.com -- 02:54:27.257 INFO [18901]: QUERY_STRING = /.well-known/acme-challenge/RKB8UliiUO5Bmd-s9HNa6lMlXWj4Y3dfSh3jJqpe5Uo -- 02:54:27.257 INFO [18901]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 02:54:27.278 INFO [18901]: COREGRADE is stopping... -- 02:54:27.278 DEBUG [18901]: Closing database connection -- 02:54:27.278 SQL [18901]: pgsql_close() -- 02:54:27.348 INFO [18901]: COREGRADE is starting... -- 02:54:27.348 INFO [18901]: Version from config: 1.0 -- 02:54:27.348 DEBUG [18901]: Connecting to database... -- 02:54:27.348 DEBUG [18901]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:54:27.348 SQL [18901]: pgsql_db_connect() -- 02:54:27.356 DEBUG [18901]: Database connection successful -- 02:54:27.356 INFO [18901]: _SERVER found -- 02:54:27.356 INFO [18901]: REMOTE_ADDR = 10.0.0.15 -- 02:54:27.356 INFO [18901]: SERVER_NAME = oameye.works.coregrade.com -- 02:54:27.356 INFO [18901]: QUERY_STRING = /.well-known/acme-challenge/RKB8UliiUO5Bmd-s9HNa6lMlXWj4Y3dfSh3jJqpe5Uo -- 02:54:27.356 INFO [18901]: HTTP_X_FORWARDED_FOR = 34.222.229.130 -- 02:54:27.368 INFO [18901]: COREGRADE is stopping... -- 02:54:27.368 DEBUG [18901]: Closing database connection -- 02:54:27.368 SQL [18901]: pgsql_close() -- 02:54:27.385 INFO [24818]: COREGRADE is starting... -- 02:54:27.385 INFO [24818]: Version from config: 1.0 -- 02:54:27.385 DEBUG [24818]: Connecting to database... -- 02:54:27.385 DEBUG [24818]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:54:27.385 SQL [24818]: pgsql_db_connect() -- 02:54:27.390 DEBUG [24818]: Database connection successful -- 02:54:27.390 INFO [24818]: _SERVER found -- 02:54:27.390 INFO [24818]: REMOTE_ADDR = 10.0.0.15 -- 02:54:27.390 INFO [24818]: SERVER_NAME = oameye.works.coregrade.com -- 02:54:27.390 INFO [24818]: QUERY_STRING = /.well-known/acme-challenge/RKB8UliiUO5Bmd-s9HNa6lMlXWj4Y3dfSh3jJqpe5Uo -- 02:54:27.390 INFO [24818]: HTTP_X_FORWARDED_FOR = 52.28.236.88 -- 02:54:27.403 INFO [24818]: COREGRADE is stopping... -- 02:54:27.403 DEBUG [24818]: Closing database connection -- 02:54:27.403 SQL [24818]: pgsql_close() -- 03:51:41.771 INFO [24821]: COREGRADE is starting... -- 03:51:41.772 INFO [24821]: Version from config: 1.0 -- 03:51:41.772 DEBUG [24821]: Connecting to database... -- 03:51:41.772 DEBUG [24821]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:51:41.772 SQL [24821]: pgsql_db_connect() -- 03:51:41.777 DEBUG [24821]: Database connection successful -- 03:51:41.777 INFO [24821]: _SERVER found -- 03:51:41.777 INFO [24821]: REMOTE_ADDR = 10.0.0.15 -- 03:51:41.777 INFO [24821]: SERVER_NAME = oameye.works.coregrade.com -- 03:51:41.777 INFO [24821]: QUERY_STRING = -- 03:51:41.777 INFO [24821]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 03:51:41.816 INFO [24821]: COREGRADE is stopping... -- 03:51:41.816 DEBUG [24821]: Closing database connection -- 03:51:41.816 SQL [24821]: pgsql_close() -- 05:03:35.501 INFO [18904]: COREGRADE is starting... -- 05:03:35.501 INFO [18904]: Version from config: 1.0 -- 05:03:35.501 DEBUG [18904]: Connecting to database... -- 05:03:35.501 DEBUG [18904]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:03:35.501 SQL [18904]: pgsql_db_connect() -- 05:03:35.506 DEBUG [18904]: Database connection successful -- 05:03:35.506 INFO [18904]: _SERVER found -- 05:03:35.506 INFO [18904]: REMOTE_ADDR = 10.0.0.15 -- 05:03:35.506 INFO [18904]: SERVER_NAME = oameye.works.coregrade.com -- 05:03:35.506 INFO [18904]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 05:03:35.506 INFO [18904]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 05:03:35.521 INFO [18904]: COREGRADE is stopping... -- 05:03:35.521 DEBUG [18904]: Closing database connection -- 05:03:35.521 SQL [18904]: pgsql_close() -- 05:51:04.045 INFO [11260]: COREGRADE is starting... -- 05:51:04.046 INFO [11260]: Version from config: 1.0 -- 05:51:04.046 DEBUG [11260]: Connecting to database... -- 05:51:04.046 DEBUG [11260]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:51:04.046 SQL [11260]: pgsql_db_connect() -- 05:51:04.051 DEBUG [11260]: Database connection successful -- 05:51:04.051 INFO [11260]: _SERVER found -- 05:51:04.051 INFO [11260]: REMOTE_ADDR = 10.0.0.15 -- 05:51:04.051 INFO [11260]: SERVER_NAME = oameye.works.coregrade.com -- 05:51:04.051 INFO [11260]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 05:51:04.051 INFO [11260]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 05:51:04.068 INFO [11260]: COREGRADE is stopping... -- 05:51:04.068 DEBUG [11260]: Closing database connection -- 05:51:04.068 SQL [11260]: pgsql_close() -- 07:34:29.672 INFO [11261]: COREGRADE is starting... -- 07:34:29.673 INFO [11261]: Version from config: 1.0 -- 07:34:29.673 DEBUG [11261]: Connecting to database... -- 07:34:29.673 DEBUG [11261]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:34:29.673 SQL [11261]: pgsql_db_connect() -- 07:34:29.678 DEBUG [11261]: Database connection successful -- 07:34:29.678 INFO [11261]: _SERVER found -- 07:34:29.678 INFO [11261]: REMOTE_ADDR = 10.0.0.15 -- 07:34:29.678 INFO [11261]: SERVER_NAME = oameye.works.coregrade.com -- 07:34:29.678 INFO [11261]: QUERY_STRING = /manager/html -- 07:34:29.678 INFO [11261]: HTTP_X_FORWARDED_FOR = 125.35.84.114 -- 07:34:29.694 INFO [11261]: COREGRADE is stopping... -- 07:34:29.694 DEBUG [11261]: Closing database connection -- 07:34:29.694 SQL [11261]: pgsql_close() -- 09:27:13.670 INFO [19351]: COREGRADE is starting... -- 09:27:13.671 INFO [19351]: Version from config: 1.0 -- 09:27:13.671 DEBUG [19351]: Connecting to database... -- 09:27:13.671 DEBUG [19351]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:27:13.671 SQL [19351]: pgsql_db_connect() -- 09:27:13.675 DEBUG [19351]: Database connection successful -- 09:27:13.675 INFO [19351]: _SERVER found -- 09:27:13.675 INFO [19351]: REMOTE_ADDR = 10.0.0.15 -- 09:27:13.675 INFO [19351]: SERVER_NAME = oameye.works.coregrade.com -- 09:27:13.675 INFO [19351]: QUERY_STRING = /TP/public/index.php -- 09:27:13.675 INFO [19351]: HTTP_X_FORWARDED_FOR = 49.233.84.183 -- 09:27:13.690 INFO [19351]: COREGRADE is stopping... -- 09:27:13.690 DEBUG [19351]: Closing database connection -- 09:27:13.690 SQL [19351]: pgsql_close() -- 09:27:20.086 INFO [18903]: COREGRADE is starting... -- 09:27:20.087 INFO [18903]: Version from config: 1.0 -- 09:27:20.087 DEBUG [18903]: Connecting to database... -- 09:27:20.087 DEBUG [18903]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:27:20.087 SQL [18903]: pgsql_db_connect() -- 09:27:20.091 DEBUG [18903]: Database connection successful -- 09:27:20.091 INFO [18903]: _SERVER found -- 09:27:20.091 INFO [18903]: REMOTE_ADDR = 10.0.0.15 -- 09:27:20.091 INFO [18903]: SERVER_NAME = oameye.works.coregrade.com -- 09:27:20.091 INFO [18903]: QUERY_STRING = -- 09:27:20.091 INFO [18903]: HTTP_X_FORWARDED_FOR = 49.233.84.183 -- 09:27:20.130 INFO [18903]: COREGRADE is stopping... -- 09:27:20.130 DEBUG [18903]: Closing database connection -- 09:27:20.130 SQL [18903]: pgsql_close() -- 12:34:34.605 INFO [18905]: COREGRADE is starting... -- 12:34:34.605 INFO [18905]: Version from config: 1.0 -- 12:34:34.605 DEBUG [18905]: Connecting to database... -- 12:34:34.605 DEBUG [18905]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:34:34.605 SQL [18905]: pgsql_db_connect() -- 12:34:34.610 DEBUG [18905]: Database connection successful -- 12:34:34.610 INFO [18905]: _SERVER found -- 12:34:34.610 INFO [18905]: REMOTE_ADDR = 10.0.0.15 -- 12:34:34.610 INFO [18905]: SERVER_NAME = oameye.works.coregrade.com -- 12:34:34.610 INFO [18905]: QUERY_STRING = -- 12:34:34.610 INFO [18905]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 12:34:34.644 INFO [18905]: COREGRADE is stopping... -- 12:34:34.644 DEBUG [18905]: Closing database connection -- 12:34:34.644 SQL [18905]: pgsql_close() -- 14:05:50.384 INFO [24820]: COREGRADE is starting... -- 14:05:50.385 INFO [24820]: Version from config: 1.0 -- 14:05:50.385 DEBUG [24820]: Connecting to database... -- 14:05:50.385 DEBUG [24820]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:05:50.385 SQL [24820]: pgsql_db_connect() -- 14:05:50.390 DEBUG [24820]: Database connection successful -- 14:05:50.390 INFO [24820]: _SERVER found -- 14:05:50.390 INFO [24820]: REMOTE_ADDR = 10.0.0.15 -- 14:05:50.390 INFO [24820]: SERVER_NAME = oameye.works.coregrade.com -- 14:05:50.390 INFO [24820]: QUERY_STRING = -- 14:05:50.390 INFO [24820]: HTTP_X_FORWARDED_FOR = 128.14.209.226 -- 14:05:50.425 INFO [24820]: COREGRADE is stopping... -- 14:05:50.425 DEBUG [24820]: Closing database connection -- 14:05:50.425 SQL [24820]: pgsql_close() -- 21:04:25.773 INFO [18901]: COREGRADE is starting... -- 21:04:25.773 INFO [18901]: Version from config: 1.0 -- 21:04:25.773 DEBUG [18901]: Connecting to database... -- 21:04:25.773 DEBUG [18901]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:04:25.773 SQL [18901]: pgsql_db_connect() -- 21:04:25.779 DEBUG [18901]: Database connection successful -- 21:04:25.779 INFO [18901]: _SERVER found -- 21:04:25.779 INFO [18901]: REMOTE_ADDR = 10.0.0.15 -- 21:04:25.779 INFO [18901]: SERVER_NAME = oameye.works.coregrade.com -- 21:04:25.779 INFO [18901]: QUERY_STRING = -- 21:04:25.779 INFO [18901]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 21:04:25.828 INFO [18901]: COREGRADE is stopping... -- 21:04:25.828 DEBUG [18901]: Closing database connection -- 21:04:25.828 SQL [18901]: pgsql_close() -- 21:41:16.775 INFO [24818]: COREGRADE is starting... -- 21:41:16.775 INFO [24818]: Version from config: 1.0 -- 21:41:16.775 DEBUG [24818]: Connecting to database... -- 21:41:16.775 DEBUG [24818]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:41:16.775 SQL [24818]: pgsql_db_connect() -- 21:41:16.780 DEBUG [24818]: Database connection successful -- 21:41:16.780 INFO [24818]: _SERVER found -- 21:41:16.780 INFO [24818]: REMOTE_ADDR = 10.0.0.15 -- 21:41:16.780 INFO [24818]: SERVER_NAME = oameye.works.coregrade.com -- 21:41:16.780 INFO [24818]: QUERY_STRING = -- 21:41:16.780 INFO [24818]: HTTP_X_FORWARDED_FOR = 80.82.65.186 -- 21:41:16.815 INFO [24818]: COREGRADE is stopping... -- 21:41:16.816 DEBUG [24818]: Closing database connection -- 21:41:16.816 SQL [24818]: pgsql_close() -- 23:19:22.025 INFO [24821]: COREGRADE is starting... -- 23:19:22.026 INFO [24821]: Version from config: 1.0 -- 23:19:22.026 DEBUG [24821]: Connecting to database... -- 23:19:22.026 DEBUG [24821]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:19:22.026 SQL [24821]: pgsql_db_connect() -- 23:19:22.030 DEBUG [24821]: Database connection successful -- 23:19:22.030 INFO [24821]: _SERVER found -- 23:19:22.030 INFO [24821]: REMOTE_ADDR = 10.0.0.15 -- 23:19:22.030 INFO [24821]: SERVER_NAME = oameye.works.coregrade.com -- 23:19:22.030 INFO [24821]: QUERY_STRING = -- 23:19:22.030 INFO [24821]: HTTP_X_FORWARDED_FOR = 37.230.134.50 -- 23:19:22.071 INFO [24821]: COREGRADE is stopping... -- 23:19:22.071 DEBUG [24821]: Closing database connection -- 23:19:22.071 SQL [24821]: pgsql_close() -- 02:11:33.963 INFO [18904]: COREGRADE is starting... -- 02:11:33.964 INFO [18904]: Version from config: 1.0 -- 02:11:33.964 DEBUG [18904]: Connecting to database... -- 02:11:33.964 DEBUG [18904]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:11:33.964 SQL [18904]: pgsql_db_connect() -- 02:11:33.969 DEBUG [18904]: Database connection successful -- 02:11:33.969 INFO [18904]: _SERVER found -- 02:11:33.969 INFO [18904]: REMOTE_ADDR = 10.0.0.15 -- 02:11:33.969 INFO [18904]: SERVER_NAME = oameye.works.coregrade.com -- 02:11:33.969 INFO [18904]: QUERY_STRING = /.well-known/acme-challenge/DUVRv1MM0-qZaRGTCdNXEXygSfTxpuwz1Nn4I88835s -- 02:11:33.969 INFO [18904]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 02:11:33.999 INFO [18904]: COREGRADE is stopping... -- 02:11:33.999 DEBUG [18904]: Closing database connection -- 02:11:33.999 SQL [18904]: pgsql_close() -- 02:11:34.039 INFO [11261]: COREGRADE is starting... -- 02:11:34.039 INFO [11261]: Version from config: 1.0 -- 02:11:34.039 DEBUG [11261]: Connecting to database... -- 02:11:34.039 DEBUG [11261]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:11:34.039 SQL [11261]: pgsql_db_connect() -- 02:11:34.043 DEBUG [11261]: Database connection successful -- 02:11:34.043 INFO [11261]: _SERVER found -- 02:11:34.043 INFO [11261]: REMOTE_ADDR = 10.0.0.15 -- 02:11:34.043 INFO [11261]: SERVER_NAME = oameye.works.coregrade.com -- 02:11:34.043 INFO [11261]: QUERY_STRING = /.well-known/acme-challenge/DUVRv1MM0-qZaRGTCdNXEXygSfTxpuwz1Nn4I88835s -- 02:11:34.043 INFO [11261]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 02:11:34.056 INFO [11261]: COREGRADE is stopping... -- 02:11:34.056 DEBUG [11261]: Closing database connection -- 02:11:34.056 SQL [11261]: pgsql_close() -- 07:16:23.616 INFO [19351]: COREGRADE is starting... -- 07:16:23.617 INFO [19351]: Version from config: 1.0 -- 07:16:23.617 DEBUG [19351]: Connecting to database... -- 07:16:23.617 DEBUG [19351]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:16:23.617 SQL [19351]: pgsql_db_connect() -- 07:16:23.623 DEBUG [19351]: Database connection successful -- 07:16:23.623 INFO [19351]: _SERVER found -- 07:16:23.623 INFO [19351]: REMOTE_ADDR = 10.0.0.15 -- 07:16:23.623 INFO [19351]: SERVER_NAME = oameye.works.coregrade.com -- 07:16:23.623 INFO [19351]: QUERY_STRING = -- 07:16:23.623 INFO [19351]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 07:16:23.662 INFO [19351]: COREGRADE is stopping... -- 07:16:23.662 DEBUG [19351]: Closing database connection -- 07:16:23.662 SQL [19351]: pgsql_close() -- 08:05:05.666 INFO [18903]: COREGRADE is starting... -- 08:05:05.667 INFO [18903]: Version from config: 1.0 -- 08:05:05.667 DEBUG [18903]: Connecting to database... -- 08:05:05.667 DEBUG [18903]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:05:05.667 SQL [18903]: pgsql_db_connect() -- 08:05:05.671 DEBUG [18903]: Database connection successful -- 08:05:05.671 INFO [18903]: _SERVER found -- 08:05:05.671 INFO [18903]: REMOTE_ADDR = 10.0.0.15 -- 08:05:05.671 INFO [18903]: SERVER_NAME = oameye.works.coregrade.com -- 08:05:05.671 INFO [18903]: QUERY_STRING = -- 08:05:05.671 INFO [18903]: HTTP_X_FORWARDED_FOR = 209.17.97.90 -- 08:05:05.709 INFO [18903]: COREGRADE is stopping... -- 08:05:05.709 DEBUG [18903]: Closing database connection -- 08:05:05.709 SQL [18903]: pgsql_close() -- 08:34:00.730 INFO [18905]: COREGRADE is starting... -- 08:34:00.730 INFO [18905]: Version from config: 1.0 -- 08:34:00.730 DEBUG [18905]: Connecting to database... -- 08:34:00.730 DEBUG [18905]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:34:00.730 SQL [18905]: pgsql_db_connect() -- 08:34:00.735 DEBUG [18905]: Database connection successful -- 08:34:00.735 INFO [18905]: _SERVER found -- 08:34:00.735 INFO [18905]: REMOTE_ADDR = 10.0.0.15 -- 08:34:00.735 INFO [18905]: SERVER_NAME = oameye.works.coregrade.com -- 08:34:00.735 INFO [18905]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624 -- 08:34:00.735 INFO [18905]: QUERY_STRING = -- 08:34:00.735 INFO [18905]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:34:00.769 INFO [18905]: COREGRADE is stopping... -- 08:34:00.769 DEBUG [18905]: Closing database connection -- 08:34:00.769 SQL [18905]: pgsql_close() -- 16:14:13.207 INFO [18901]: COREGRADE is starting... -- 16:14:13.208 INFO [18901]: Version from config: 1.0 -- 16:14:13.208 DEBUG [18901]: Connecting to database... -- 16:14:13.208 DEBUG [18901]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:14:13.208 SQL [18901]: pgsql_db_connect() -- 16:14:13.213 DEBUG [18901]: Database connection successful -- 16:14:13.213 INFO [18901]: _SERVER found -- 16:14:13.213 INFO [18901]: REMOTE_ADDR = 10.0.0.15 -- 16:14:13.213 INFO [18901]: SERVER_NAME = oameye.works.coregrade.com -- 16:14:13.213 INFO [18901]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; _gid=GA1.2.1992201461.1586380117; _gat_gtag_UA_54829827_2=1 -- 16:14:13.213 INFO [18901]: QUERY_STRING = -- 16:14:13.213 INFO [18901]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:14:13.247 INFO [18901]: COREGRADE is stopping... -- 16:14:13.248 DEBUG [18901]: Closing database connection -- 16:14:13.248 SQL [18901]: pgsql_close() -- 16:14:13.602 INFO [18901]: COREGRADE is starting... -- 16:14:13.602 INFO [18901]: Version from config: 1.0 -- 16:14:13.602 DEBUG [18901]: Connecting to database... -- 16:14:13.602 DEBUG [18901]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:14:13.602 SQL [18901]: pgsql_db_connect() -- 16:14:13.606 DEBUG [18901]: Database connection successful -- 16:14:13.606 INFO [18901]: _SERVER found -- 16:14:13.606 INFO [18901]: REMOTE_ADDR = 10.0.0.15 -- 16:14:13.606 INFO [18901]: SERVER_NAME = oameye.works.coregrade.com -- 16:14:13.606 INFO [18901]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; _gid=GA1.2.1992201461.1586380117; _gat_gtag_UA_54829827_2=1; ci_session=jrigul5qf6dtcd7msggi2b02ceu030i6 -- 16:14:13.606 INFO [18901]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 16:14:13.606 INFO [18901]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:14:13.617 INFO [18901]: COREGRADE is stopping... -- 16:14:13.617 DEBUG [18901]: Closing database connection -- 16:14:13.617 SQL [18901]: pgsql_close() -- 16:14:13.645 INFO [18901]: COREGRADE is starting... -- 16:14:13.645 INFO [18901]: Version from config: 1.0 -- 16:14:13.645 DEBUG [18901]: Connecting to database... -- 16:14:13.645 DEBUG [18901]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:14:13.646 SQL [18901]: pgsql_db_connect() -- 16:14:13.649 DEBUG [18901]: Database connection successful -- 16:14:13.649 INFO [18901]: _SERVER found -- 16:14:13.649 INFO [18901]: REMOTE_ADDR = 10.0.0.15 -- 16:14:13.649 INFO [18901]: SERVER_NAME = oameye.works.coregrade.com -- 16:14:13.649 INFO [18901]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; _gid=GA1.2.1992201461.1586380117; _gat_gtag_UA_54829827_2=1; ci_session=jrigul5qf6dtcd7msggi2b02ceu030i6 -- 16:14:13.649 INFO [18901]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:14:13.649 INFO [18901]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:14:13.660 INFO [18901]: COREGRADE is stopping... -- 16:14:13.660 DEBUG [18901]: Closing database connection -- 16:14:13.660 SQL [18901]: pgsql_close() -- 16:15:15.410 INFO [24818]: COREGRADE is starting... -- 16:15:15.410 INFO [24818]: Version from config: 1.0 -- 16:15:15.410 DEBUG [24818]: Connecting to database... -- 16:15:15.410 DEBUG [24818]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:15:15.410 SQL [24818]: pgsql_db_connect() -- 16:15:15.414 DEBUG [24818]: Database connection successful -- 16:15:15.414 INFO [24818]: _SERVER found -- 16:15:15.414 INFO [24818]: REMOTE_ADDR = 10.0.0.15 -- 16:15:15.414 INFO [24818]: SERVER_NAME = oameye.works.coregrade.com -- 16:15:15.414 INFO [24818]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561 -- 16:15:15.414 INFO [24818]: QUERY_STRING = -- 16:15:15.414 INFO [24818]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:15:15.449 INFO [24818]: COREGRADE is stopping... -- 16:15:15.449 DEBUG [24818]: Closing database connection -- 16:15:15.449 SQL [24818]: pgsql_close() -- 16:15:15.782 INFO [18904]: COREGRADE is starting... -- 16:15:15.782 INFO [18904]: Version from config: 1.0 -- 16:15:15.782 DEBUG [18904]: Connecting to database... -- 16:15:15.782 DEBUG [18904]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:15:15.782 SQL [18904]: pgsql_db_connect() -- 16:15:15.786 DEBUG [18904]: Database connection successful -- 16:15:15.786 INFO [18904]: _SERVER found -- 16:15:15.786 INFO [18904]: REMOTE_ADDR = 10.0.0.15 -- 16:15:15.786 INFO [18904]: SERVER_NAME = oameye.works.coregrade.com -- 16:15:15.786 INFO [18904]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=q430bflm7crctokbjbbd6uql0ekfkv68 -- 16:15:15.786 INFO [18904]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 16:15:15.786 INFO [18904]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:15:15.800 INFO [18904]: COREGRADE is stopping... -- 16:15:15.800 DEBUG [18904]: Closing database connection -- 16:15:15.800 SQL [18904]: pgsql_close() -- 16:15:15.804 INFO [18904]: COREGRADE is starting... -- 16:15:15.805 INFO [18904]: Version from config: 1.0 -- 16:15:15.805 DEBUG [18904]: Connecting to database... -- 16:15:15.805 DEBUG [18904]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:15:15.805 SQL [18904]: pgsql_db_connect() -- 16:15:15.808 DEBUG [18904]: Database connection successful -- 16:15:15.808 INFO [18904]: _SERVER found -- 16:15:15.808 INFO [18904]: REMOTE_ADDR = 10.0.0.15 -- 16:15:15.808 INFO [18904]: SERVER_NAME = oameye.works.coregrade.com -- 16:15:15.808 INFO [18904]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=q430bflm7crctokbjbbd6uql0ekfkv68 -- 16:15:15.808 INFO [18904]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:15:15.808 INFO [18904]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:15:15.820 INFO [18904]: COREGRADE is stopping... -- 16:15:15.820 DEBUG [18904]: Closing database connection -- 16:15:15.820 SQL [18904]: pgsql_close() -- 16:15:18.874 INFO [18904]: COREGRADE is starting... -- 16:15:18.874 INFO [18904]: Version from config: 1.0 -- 16:15:18.874 DEBUG [18904]: Connecting to database... -- 16:15:18.874 DEBUG [18904]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:15:18.874 SQL [18904]: pgsql_db_connect() -- 16:15:18.879 INFO [24818]: COREGRADE is starting... -- 16:15:18.879 INFO [24818]: Version from config: 1.0 -- 16:15:18.879 DEBUG [24818]: Connecting to database... -- 16:15:18.879 DEBUG [24818]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:15:18.879 SQL [24818]: pgsql_db_connect() -- 16:15:18.878 DEBUG [18904]: Database connection successful -- 16:15:18.878 INFO [18904]: _SERVER found -- 16:15:18.878 INFO [18904]: REMOTE_ADDR = 10.0.0.15 -- 16:15:18.878 INFO [18904]: SERVER_NAME = oameye.works.coregrade.com -- 16:15:18.878 INFO [18904]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=q430bflm7crctokbjbbd6uql0ekfkv68; _gat_gtag_UA_54829827_2=1 -- 16:15:18.878 INFO [18904]: QUERY_STRING = /welcome/viewLogin -- 16:15:18.878 INFO [18904]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:15:18.911 INFO [18904]: COREGRADE is stopping... -- 16:15:18.911 DEBUG [18904]: Closing database connection -- 16:15:18.911 SQL [18904]: pgsql_close() -- 16:15:18.883 DEBUG [24818]: Database connection successful -- 16:15:18.883 INFO [24818]: _SERVER found -- 16:15:18.883 INFO [24818]: REMOTE_ADDR = 10.0.0.15 -- 16:15:18.883 INFO [24818]: SERVER_NAME = oameye.works.coregrade.com -- 16:15:18.883 INFO [24818]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=q430bflm7crctokbjbbd6uql0ekfkv68; _gat_gtag_UA_54829827_2=1 -- 16:15:18.883 INFO [24818]: QUERY_STRING = /auth -- 16:15:18.883 INFO [24818]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:15:18.915 INFO [24818]: COREGRADE is stopping... -- 16:15:18.915 DEBUG [24818]: Closing database connection -- 16:15:18.915 SQL [24818]: pgsql_close() -- 16:15:18.944 INFO [24818]: COREGRADE is starting... -- 16:15:18.944 INFO [24818]: Version from config: 1.0 -- 16:15:18.944 DEBUG [24818]: Connecting to database... -- 16:15:18.944 DEBUG [24818]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:15:18.944 SQL [24818]: pgsql_db_connect() -- 16:15:18.948 DEBUG [24818]: Database connection successful -- 16:15:18.948 INFO [24818]: _SERVER found -- 16:15:18.948 INFO [24818]: REMOTE_ADDR = 10.0.0.15 -- 16:15:18.948 INFO [24818]: SERVER_NAME = oameye.works.coregrade.com -- 16:15:18.948 INFO [24818]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=q430bflm7crctokbjbbd6uql0ekfkv68; _gat_gtag_UA_54829827_2=1 -- 16:15:18.948 INFO [24818]: QUERY_STRING = /auth/index -- 16:15:18.948 INFO [24818]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:15:18.979 INFO [24818]: COREGRADE is stopping... -- 16:15:18.979 DEBUG [24818]: Closing database connection -- 16:15:18.979 SQL [24818]: pgsql_close() -- 16:15:19.157 INFO [11260]: COREGRADE is starting... -- 16:15:19.158 INFO [11260]: Version from config: 1.0 -- 16:15:19.158 DEBUG [11260]: Connecting to database... -- 16:15:19.158 DEBUG [11260]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:15:19.158 SQL [11260]: pgsql_db_connect() -- 16:15:19.162 DEBUG [11260]: Database connection successful -- 16:15:19.162 INFO [11260]: _SERVER found -- 16:15:19.162 INFO [11260]: REMOTE_ADDR = 10.0.0.15 -- 16:15:19.162 INFO [11260]: SERVER_NAME = oameye.works.coregrade.com -- 16:15:19.162 INFO [11260]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=q430bflm7crctokbjbbd6uql0ekfkv68; _gat_gtag_UA_54829827_2=1 -- 16:15:19.162 INFO [11260]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:15:19.162 INFO [11260]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:15:19.173 INFO [11260]: COREGRADE is stopping... -- 16:15:19.174 DEBUG [11260]: Closing database connection -- 16:15:19.174 SQL [11260]: pgsql_close() -- 16:15:24.495 INFO [18903]: COREGRADE is starting... -- 16:15:24.496 INFO [18903]: Version from config: 1.0 -- 16:15:24.496 DEBUG [18903]: Connecting to database... -- 16:15:24.496 DEBUG [18903]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:15:24.496 SQL [18903]: pgsql_db_connect() -- 16:15:24.500 DEBUG [18903]: Database connection successful -- 16:15:24.500 INFO [18903]: _SERVER found -- 16:15:24.500 INFO [18903]: REMOTE_ADDR = 10.0.0.15 -- 16:15:24.500 INFO [18903]: SERVER_NAME = oameye.works.coregrade.com -- 16:15:24.500 INFO [18903]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938 -- 16:15:24.500 INFO [18903]: QUERY_STRING = -- 16:15:24.500 INFO [18903]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:15:24.533 INFO [18903]: COREGRADE is stopping... -- 16:15:24.533 DEBUG [18903]: Closing database connection -- 16:15:24.533 SQL [18903]: pgsql_close() -- 16:15:24.879 INFO [18903]: COREGRADE is starting... -- 16:15:24.879 INFO [18903]: Version from config: 1.0 -- 16:15:24.879 DEBUG [18903]: Connecting to database... -- 16:15:24.879 DEBUG [18903]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:15:24.879 SQL [18903]: pgsql_db_connect() -- 16:15:24.883 DEBUG [18903]: Database connection successful -- 16:15:24.883 INFO [18903]: _SERVER found -- 16:15:24.883 INFO [18903]: REMOTE_ADDR = 10.0.0.15 -- 16:15:24.883 INFO [18903]: SERVER_NAME = oameye.works.coregrade.com -- 16:15:24.883 INFO [18903]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=lkpqtmb2ead3uk2odcgm3v185ouk5cpj; _gat_gtag_UA_54829827_2=1 -- 16:15:24.883 INFO [18903]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 16:15:24.883 INFO [18903]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:15:24.894 INFO [18903]: COREGRADE is stopping... -- 16:15:24.894 DEBUG [18903]: Closing database connection -- 16:15:24.894 SQL [18903]: pgsql_close() -- 16:15:24.931 INFO [18903]: COREGRADE is starting... -- 16:15:24.931 INFO [18903]: Version from config: 1.0 -- 16:15:24.931 DEBUG [18903]: Connecting to database... -- 16:15:24.932 DEBUG [18903]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:15:24.932 SQL [18903]: pgsql_db_connect() -- 16:15:24.935 DEBUG [18903]: Database connection successful -- 16:15:24.935 INFO [18903]: _SERVER found -- 16:15:24.935 INFO [18903]: REMOTE_ADDR = 10.0.0.15 -- 16:15:24.935 INFO [18903]: SERVER_NAME = oameye.works.coregrade.com -- 16:15:24.935 INFO [18903]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=lkpqtmb2ead3uk2odcgm3v185ouk5cpj; _gat_gtag_UA_54829827_2=1 -- 16:15:24.935 INFO [18903]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:15:24.935 INFO [18903]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:15:24.947 INFO [18903]: COREGRADE is stopping... -- 16:15:24.947 DEBUG [18903]: Closing database connection -- 16:15:24.947 SQL [18903]: pgsql_close() -- 16:15:26.830 INFO [18903]: COREGRADE is starting... -- 16:15:26.830 INFO [18903]: Version from config: 1.0 -- 16:15:26.830 DEBUG [18903]: Connecting to database... -- 16:15:26.830 DEBUG [18903]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:15:26.830 SQL [18903]: pgsql_db_connect() -- 16:15:26.834 DEBUG [18903]: Database connection successful -- 16:15:26.834 INFO [18903]: _SERVER found -- 16:15:26.834 INFO [18903]: REMOTE_ADDR = 10.0.0.15 -- 16:15:26.834 INFO [18903]: SERVER_NAME = oameye.works.coregrade.com -- 16:15:26.834 INFO [18903]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=lkpqtmb2ead3uk2odcgm3v185ouk5cpj; _gat_gtag_UA_54829827_2=1 -- 16:15:26.834 INFO [18903]: QUERY_STRING = /welcome/viewLogin -- 16:15:26.834 INFO [18903]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:15:26.864 INFO [18903]: COREGRADE is stopping... -- 16:15:26.864 DEBUG [18903]: Closing database connection -- 16:15:26.864 SQL [18903]: pgsql_close() -- 16:15:26.875 INFO [18903]: COREGRADE is starting... -- 16:15:26.875 INFO [18903]: Version from config: 1.0 -- 16:15:26.875 DEBUG [18903]: Connecting to database... -- 16:15:26.875 DEBUG [18903]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:15:26.875 SQL [18903]: pgsql_db_connect() -- 16:15:26.879 DEBUG [18903]: Database connection successful -- 16:15:26.879 INFO [18903]: _SERVER found -- 16:15:26.879 INFO [18903]: REMOTE_ADDR = 10.0.0.15 -- 16:15:26.879 INFO [18903]: SERVER_NAME = oameye.works.coregrade.com -- 16:15:26.879 INFO [18903]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=lkpqtmb2ead3uk2odcgm3v185ouk5cpj; _gat_gtag_UA_54829827_2=1 -- 16:15:26.879 INFO [18903]: QUERY_STRING = /auth -- 16:15:26.879 INFO [18903]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:15:26.911 INFO [18903]: COREGRADE is stopping... -- 16:15:26.911 DEBUG [18903]: Closing database connection -- 16:15:26.911 SQL [18903]: pgsql_close() -- 16:15:26.927 INFO [18903]: COREGRADE is starting... -- 16:15:26.928 INFO [18903]: Version from config: 1.0 -- 16:15:26.928 DEBUG [18903]: Connecting to database... -- 16:15:26.928 DEBUG [18903]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:15:26.928 SQL [18903]: pgsql_db_connect() -- 16:15:26.931 DEBUG [18903]: Database connection successful -- 16:15:26.931 INFO [18903]: _SERVER found -- 16:15:26.931 INFO [18903]: REMOTE_ADDR = 10.0.0.15 -- 16:15:26.931 INFO [18903]: SERVER_NAME = oameye.works.coregrade.com -- 16:15:26.931 INFO [18903]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=lkpqtmb2ead3uk2odcgm3v185ouk5cpj; _gat_gtag_UA_54829827_2=1 -- 16:15:26.931 INFO [18903]: QUERY_STRING = /auth/index -- 16:15:26.931 INFO [18903]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:15:26.962 INFO [18903]: COREGRADE is stopping... -- 16:15:26.962 DEBUG [18903]: Closing database connection -- 16:15:26.962 SQL [18903]: pgsql_close() -- 16:15:39.691 INFO [18901]: COREGRADE is starting... -- 16:15:39.691 INFO [18901]: Version from config: 1.0 -- 16:15:39.691 DEBUG [18901]: Connecting to database... -- 16:15:39.691 DEBUG [18901]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:15:39.691 SQL [18901]: pgsql_db_connect() -- 16:15:39.695 DEBUG [18901]: Database connection successful -- 16:15:39.695 INFO [18901]: _SERVER found -- 16:15:39.695 INFO [18901]: REMOTE_ADDR = 10.0.0.15 -- 16:15:39.695 INFO [18901]: SERVER_NAME = oameye.works.coregrade.com -- 16:15:39.695 INFO [18901]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=lkpqtmb2ead3uk2odcgm3v185ouk5cpj; _gat_gtag_UA_54829827_2=1 -- 16:15:39.695 INFO [18901]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:15:39.695 INFO [18901]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:15:39.706 INFO [18901]: COREGRADE is stopping... -- 16:15:39.707 DEBUG [18901]: Closing database connection -- 16:15:39.707 SQL [18901]: pgsql_close() -- 18:46:23.861 INFO [21007]: COREGRADE is starting... -- 18:46:23.862 INFO [21007]: Version from config: 1.0 -- 18:46:23.862 DEBUG [21007]: Connecting to database... -- 18:46:23.862 DEBUG [21007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:46:23.862 SQL [21007]: pgsql_db_connect() -- 18:46:23.868 DEBUG [21007]: Database connection successful -- 18:46:23.868 INFO [21007]: _SERVER found -- 18:46:23.868 INFO [21007]: REMOTE_ADDR = 10.0.0.15 -- 18:46:23.868 INFO [21007]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:46:23.868 INFO [21007]: HTTP_COOKIE = _ga=GA1.2.1653094130.1586558088; _gid=GA1.2.1654057548.1586558088; _gat_gtag_UA_54829827_2=1 -- 18:46:23.868 INFO [21007]: QUERY_STRING = -- 18:46:23.868 INFO [21007]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:46:23.918 INFO [21007]: COREGRADE is stopping... -- 18:46:23.918 DEBUG [21007]: Closing database connection -- 18:46:23.918 SQL [21007]: pgsql_close() -- 18:46:24.739 INFO [21007]: COREGRADE is starting... -- 18:46:24.739 INFO [21007]: Version from config: 1.0 -- 18:46:24.739 DEBUG [21007]: Connecting to database... -- 18:46:24.739 DEBUG [21007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:46:24.739 SQL [21007]: pgsql_db_connect() -- 18:46:24.743 DEBUG [21007]: Database connection successful -- 18:46:24.743 INFO [21007]: _SERVER found -- 18:46:24.743 INFO [21007]: REMOTE_ADDR = 10.0.0.15 -- 18:46:24.743 INFO [21007]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:46:24.743 INFO [21007]: HTTP_COOKIE = _ga=GA1.2.1653094130.1586558088; _gid=GA1.2.1654057548.1586558088; _gat_gtag_UA_54829827_2=1; ci_session=ip8lakr9q7tuimmq2tca3jm0r4tekb18 -- 18:46:24.743 INFO [21007]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:46:24.743 INFO [21007]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:46:24.755 INFO [21007]: COREGRADE is stopping... -- 18:46:24.755 DEBUG [21007]: Closing database connection -- 18:46:24.755 SQL [21007]: pgsql_close() -- 18:46:24.781 INFO [21007]: COREGRADE is starting... -- 18:46:24.781 INFO [21007]: Version from config: 1.0 -- 18:46:24.781 DEBUG [21007]: Connecting to database... -- 18:46:24.781 DEBUG [21007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:46:24.781 SQL [21007]: pgsql_db_connect() -- 18:46:24.786 DEBUG [21007]: Database connection successful -- 18:46:24.786 INFO [21007]: _SERVER found -- 18:46:24.786 INFO [21007]: REMOTE_ADDR = 10.0.0.15 -- 18:46:24.786 INFO [21007]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:46:24.786 INFO [21007]: HTTP_COOKIE = _ga=GA1.2.1653094130.1586558088; _gid=GA1.2.1654057548.1586558088; _gat_gtag_UA_54829827_2=1; ci_session=ip8lakr9q7tuimmq2tca3jm0r4tekb18 -- 18:46:24.786 INFO [21007]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:46:24.786 INFO [21007]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:46:24.797 INFO [21007]: COREGRADE is stopping... -- 18:46:24.797 DEBUG [21007]: Closing database connection -- 18:46:24.797 SQL [21007]: pgsql_close() -- 18:47:11.995 INFO [21010]: COREGRADE is starting... -- 18:47:11.996 INFO [21010]: Version from config: 1.0 -- 18:47:11.996 DEBUG [21010]: Connecting to database... -- 18:47:11.996 DEBUG [21010]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:11.996 SQL [21010]: pgsql_db_connect() -- 18:47:11.000 DEBUG [21010]: Database connection successful -- 18:47:11.000 INFO [21010]: _SERVER found -- 18:47:11.000 INFO [21010]: REMOTE_ADDR = 10.0.0.15 -- 18:47:11.000 INFO [21010]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:47:11.000 INFO [21010]: HTTP_COOKIE = _ga=GA1.2.1653094130.1586558088; _gid=GA1.2.1654057548.1586558088; ci_session=ip8lakr9q7tuimmq2tca3jm0r4tekb18 -- 18:47:11.000 INFO [21010]: QUERY_STRING = /home/faq -- 18:47:11.000 INFO [21010]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:47:12.041 INFO [21010]: COREGRADE is stopping... -- 18:47:12.041 DEBUG [21010]: Closing database connection -- 18:47:12.041 SQL [21010]: pgsql_close() -- 18:47:12.370 INFO [21010]: COREGRADE is starting... -- 18:47:12.370 INFO [21010]: Version from config: 1.0 -- 18:47:12.370 DEBUG [21010]: Connecting to database... -- 18:47:12.370 DEBUG [21010]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:12.370 SQL [21010]: pgsql_db_connect() -- 18:47:12.375 DEBUG [21010]: Database connection successful -- 18:47:12.375 INFO [21010]: _SERVER found -- 18:47:12.375 INFO [21010]: REMOTE_ADDR = 10.0.0.15 -- 18:47:12.375 INFO [21010]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:47:12.375 INFO [21010]: HTTP_COOKIE = _ga=GA1.2.1653094130.1586558088; _gid=GA1.2.1654057548.1586558088; ci_session=ip8lakr9q7tuimmq2tca3jm0r4tekb18 -- 18:47:12.375 INFO [21010]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:47:12.375 INFO [21010]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:47:12.386 INFO [21010]: COREGRADE is stopping... -- 18:47:12.386 DEBUG [21010]: Closing database connection -- 18:47:12.386 SQL [21010]: pgsql_close() -- 18:47:12.465 INFO [21010]: COREGRADE is starting... -- 18:47:12.466 INFO [21010]: Version from config: 1.0 -- 18:47:12.466 DEBUG [21010]: Connecting to database... -- 18:47:12.466 DEBUG [21010]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:12.466 SQL [21010]: pgsql_db_connect() -- 18:47:12.470 DEBUG [21010]: Database connection successful -- 18:47:12.470 INFO [21010]: _SERVER found -- 18:47:12.470 INFO [21010]: REMOTE_ADDR = 10.0.0.15 -- 18:47:12.470 INFO [21010]: SERVER_NAME = tokslaw.works.coregrade.com -- 18:47:12.470 INFO [21010]: HTTP_COOKIE = _ga=GA1.2.1653094130.1586558088; _gid=GA1.2.1654057548.1586558088; ci_session=ip8lakr9q7tuimmq2tca3jm0r4tekb18 -- 18:47:12.470 INFO [21010]: QUERY_STRING = /assets2/data/locales/en.json -- 18:47:12.470 INFO [21010]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:47:12.481 INFO [21010]: COREGRADE is stopping... -- 18:47:12.481 DEBUG [21010]: Closing database connection -- 18:47:12.481 SQL [21010]: pgsql_close() -- 19:54:46.406 INFO [24821]: COREGRADE is starting... -- 19:54:46.407 INFO [24821]: Version from config: 1.0 -- 19:54:46.407 DEBUG [24821]: Connecting to database... -- 19:54:46.407 DEBUG [24821]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:54:46.407 SQL [24821]: pgsql_db_connect() -- 19:54:46.412 DEBUG [24821]: Database connection successful -- 19:54:46.412 INFO [24821]: _SERVER found -- 19:54:46.412 INFO [24821]: REMOTE_ADDR = 10.0.0.15 -- 19:54:46.412 INFO [24821]: SERVER_NAME = oameye.works.coregrade.com -- 19:54:46.412 INFO [24821]: QUERY_STRING = -- 19:54:46.412 INFO [24821]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 19:54:46.453 INFO [24821]: COREGRADE is stopping... -- 19:54:46.453 DEBUG [24821]: Closing database connection -- 19:54:46.453 SQL [24821]: pgsql_close() -- 20:44:38.003 INFO [11261]: COREGRADE is starting... -- 20:44:38.004 INFO [11261]: Version from config: 1.0 -- 20:44:38.004 DEBUG [11261]: Connecting to database... -- 20:44:38.004 DEBUG [11261]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:44:38.004 SQL [11261]: pgsql_db_connect() -- 20:44:38.009 DEBUG [11261]: Database connection successful -- 20:44:38.009 INFO [11261]: _SERVER found -- 20:44:38.009 INFO [11261]: REMOTE_ADDR = 10.0.0.15 -- 20:44:38.009 INFO [11261]: SERVER_NAME = oameye.works.coregrade.com -- 20:44:38.009 INFO [11261]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938 -- 20:44:38.009 INFO [11261]: QUERY_STRING = -- 20:44:38.009 INFO [11261]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:44:38.054 INFO [11261]: COREGRADE is stopping... -- 20:44:38.054 DEBUG [11261]: Closing database connection -- 20:44:38.054 SQL [11261]: pgsql_close() -- 20:44:38.161 INFO [11261]: COREGRADE is starting... -- 20:44:38.162 INFO [11261]: Version from config: 1.0 -- 20:44:38.162 DEBUG [11261]: Connecting to database... -- 20:44:38.162 DEBUG [11261]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:44:38.162 SQL [11261]: pgsql_db_connect() -- 20:44:38.166 DEBUG [11261]: Database connection successful -- 20:44:38.166 INFO [11261]: _SERVER found -- 20:44:38.166 INFO [11261]: REMOTE_ADDR = 10.0.0.15 -- 20:44:38.166 INFO [11261]: SERVER_NAME = oameye.works.coregrade.com -- 20:44:38.166 INFO [11261]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=6shcajj1gr7r8p0r26gpsfuuovhkuubd -- 20:44:38.166 INFO [11261]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 20:44:38.166 INFO [11261]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:44:38.177 INFO [11261]: COREGRADE is stopping... -- 20:44:38.177 DEBUG [11261]: Closing database connection -- 20:44:38.177 SQL [11261]: pgsql_close() -- 20:44:38.187 INFO [11261]: COREGRADE is starting... -- 20:44:38.187 INFO [11261]: Version from config: 1.0 -- 20:44:38.187 DEBUG [11261]: Connecting to database... -- 20:44:38.187 DEBUG [11261]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:44:38.187 SQL [11261]: pgsql_db_connect() -- 20:44:38.191 DEBUG [11261]: Database connection successful -- 20:44:38.191 INFO [11261]: _SERVER found -- 20:44:38.191 INFO [11261]: REMOTE_ADDR = 10.0.0.15 -- 20:44:38.191 INFO [11261]: SERVER_NAME = oameye.works.coregrade.com -- 20:44:38.191 INFO [11261]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=6shcajj1gr7r8p0r26gpsfuuovhkuubd -- 20:44:38.191 INFO [11261]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:44:38.191 INFO [11261]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:44:38.202 INFO [11261]: COREGRADE is stopping... -- 20:44:38.202 DEBUG [11261]: Closing database connection -- 20:44:38.202 SQL [11261]: pgsql_close() -- 21:01:08.029 INFO [24818]: COREGRADE is starting... -- 21:01:08.029 INFO [24818]: Version from config: 1.0 -- 21:01:08.029 DEBUG [24818]: Connecting to database... -- 21:01:08.029 DEBUG [24818]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:01:08.029 SQL [24818]: pgsql_db_connect() -- 21:01:08.034 DEBUG [24818]: Database connection successful -- 21:01:08.034 INFO [24818]: _SERVER found -- 21:01:08.034 INFO [24818]: REMOTE_ADDR = 10.0.0.15 -- 21:01:08.034 INFO [24818]: SERVER_NAME = oameye.works.coregrade.com -- 21:01:08.034 INFO [24818]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=6shcajj1gr7r8p0r26gpsfuuovhkuubd -- 21:01:08.034 INFO [24818]: QUERY_STRING = -- 21:01:08.034 INFO [24818]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:01:08.070 INFO [24818]: COREGRADE is stopping... -- 21:01:08.070 DEBUG [24818]: Closing database connection -- 21:01:08.070 SQL [24818]: pgsql_close() -- 21:01:08.201 INFO [24818]: COREGRADE is starting... -- 21:01:08.201 INFO [24818]: Version from config: 1.0 -- 21:01:08.201 DEBUG [24818]: Connecting to database... -- 21:01:08.201 DEBUG [24818]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:01:08.201 SQL [24818]: pgsql_db_connect() -- 21:01:08.205 DEBUG [24818]: Database connection successful -- 21:01:08.205 INFO [24818]: _SERVER found -- 21:01:08.205 INFO [24818]: REMOTE_ADDR = 10.0.0.15 -- 21:01:08.205 INFO [24818]: SERVER_NAME = oameye.works.coregrade.com -- 21:01:08.205 INFO [24818]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=1er4ad27bqqgephstbieb5hd842urkvf -- 21:01:08.205 INFO [24818]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 21:01:08.205 INFO [24818]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:01:08.217 INFO [24818]: COREGRADE is stopping... -- 21:01:08.217 DEBUG [24818]: Closing database connection -- 21:01:08.217 SQL [24818]: pgsql_close() -- 21:01:08.227 INFO [24818]: COREGRADE is starting... -- 21:01:08.227 INFO [24818]: Version from config: 1.0 -- 21:01:08.227 DEBUG [24818]: Connecting to database... -- 21:01:08.227 DEBUG [24818]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:01:08.227 SQL [24818]: pgsql_db_connect() -- 21:01:08.231 DEBUG [24818]: Database connection successful -- 21:01:08.231 INFO [24818]: _SERVER found -- 21:01:08.231 INFO [24818]: REMOTE_ADDR = 10.0.0.15 -- 21:01:08.231 INFO [24818]: SERVER_NAME = oameye.works.coregrade.com -- 21:01:08.231 INFO [24818]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=1er4ad27bqqgephstbieb5hd842urkvf -- 21:01:08.231 INFO [24818]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:01:08.231 INFO [24818]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:01:08.242 INFO [24818]: COREGRADE is stopping... -- 21:01:08.242 DEBUG [24818]: Closing database connection -- 21:01:08.242 SQL [24818]: pgsql_close() -- 21:01:21.064 INFO [18904]: COREGRADE is starting... -- 21:01:21.065 INFO [18904]: Version from config: 1.0 -- 21:01:21.065 DEBUG [18904]: Connecting to database... -- 21:01:21.065 DEBUG [18904]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:01:21.065 SQL [18904]: pgsql_db_connect() -- 21:01:21.069 DEBUG [18904]: Database connection successful -- 21:01:21.069 INFO [18904]: _SERVER found -- 21:01:21.069 INFO [18904]: REMOTE_ADDR = 10.0.0.15 -- 21:01:21.069 INFO [18904]: SERVER_NAME = oameye.works.coregrade.com -- 21:01:21.069 INFO [18904]: QUERY_STRING = -- 21:01:21.069 INFO [18904]: HTTP_X_FORWARDED_FOR = 54.172.181.133 -- 21:01:21.104 INFO [18904]: COREGRADE is stopping... -- 21:01:21.104 DEBUG [18904]: Closing database connection -- 21:01:21.104 SQL [18904]: pgsql_close() -- 03:19:40.189 INFO [32687]: COREGRADE is starting... -- 03:19:40.190 INFO [32687]: Version from config: 1.0 -- 03:19:40.190 DEBUG [32687]: Connecting to database... -- 03:19:40.190 DEBUG [32687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:19:40.190 SQL [32687]: pgsql_db_connect() -- 03:19:40.196 DEBUG [32687]: Database connection successful -- 03:19:40.196 INFO [32687]: _SERVER found -- 03:19:40.196 INFO [32687]: REMOTE_ADDR = 10.0.0.15 -- 03:19:40.196 INFO [32687]: SERVER_NAME = oameye.works.coregrade.com -- 03:19:40.196 INFO [32687]: QUERY_STRING = /.well-known/acme-challenge/iLW-ZMTRJqp4TZPuNFwJUa5Bod30heCI2mspg8OjtWQ -- 03:19:40.196 INFO [32687]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 03:19:40.217 INFO [32687]: COREGRADE is stopping... -- 03:19:40.217 DEBUG [32687]: Closing database connection -- 03:19:40.217 SQL [32687]: pgsql_close() -- 03:19:40.305 INFO [32689]: COREGRADE is starting... -- 03:19:40.306 INFO [32689]: Version from config: 1.0 -- 03:19:40.306 DEBUG [32689]: Connecting to database... -- 03:19:40.306 DEBUG [32689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:19:40.306 SQL [32689]: pgsql_db_connect() -- 03:19:40.311 DEBUG [32689]: Database connection successful -- 03:19:40.311 INFO [32689]: _SERVER found -- 03:19:40.311 INFO [32689]: REMOTE_ADDR = 10.0.0.15 -- 03:19:40.311 INFO [32689]: SERVER_NAME = oameye.works.coregrade.com -- 03:19:40.311 INFO [32689]: QUERY_STRING = /.well-known/acme-challenge/iLW-ZMTRJqp4TZPuNFwJUa5Bod30heCI2mspg8OjtWQ -- 03:19:40.311 INFO [32689]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 03:19:40.326 INFO [32689]: COREGRADE is stopping... -- 03:19:40.326 DEBUG [32689]: Closing database connection -- 03:19:40.326 SQL [32689]: pgsql_close() -- 11:18:18.209 INFO [1875]: COREGRADE is starting... -- 11:18:18.210 INFO [1875]: Version from config: 1.0 -- 11:18:18.210 DEBUG [1875]: Connecting to database... -- 11:18:18.210 DEBUG [1875]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:18:18.210 SQL [1875]: pgsql_db_connect() -- 11:18:18.215 DEBUG [1875]: Database connection successful -- 11:18:18.215 INFO [1875]: _SERVER found -- 11:18:18.215 INFO [1875]: REMOTE_ADDR = 10.0.0.15 -- 11:18:18.215 INFO [1875]: SERVER_NAME = oameye.works.coregrade.com -- 11:18:18.215 INFO [1875]: QUERY_STRING = -- 11:18:18.215 INFO [1875]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 11:18:18.266 INFO [1875]: COREGRADE is stopping... -- 11:18:18.266 DEBUG [1875]: Closing database connection -- 11:18:18.266 SQL [1875]: pgsql_close() -- 13:28:35.420 INFO [1876]: COREGRADE is starting... -- 13:28:35.421 INFO [1876]: Version from config: 1.0 -- 13:28:35.421 DEBUG [1876]: Connecting to database... -- 13:28:35.421 DEBUG [1876]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:28:35.421 SQL [1876]: pgsql_db_connect() -- 13:28:35.425 DEBUG [1876]: Database connection successful -- 13:28:35.426 INFO [1876]: _SERVER found -- 13:28:35.426 INFO [1876]: REMOTE_ADDR = 10.0.0.15 -- 13:28:35.426 INFO [1876]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:28:35.426 INFO [1876]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845 -- 13:28:35.426 INFO [1876]: QUERY_STRING = -- 13:28:35.426 INFO [1876]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:28:35.476 INFO [1876]: COREGRADE is stopping... -- 13:28:35.476 DEBUG [1876]: Closing database connection -- 13:28:35.476 SQL [1876]: pgsql_close() -- 13:28:35.799 INFO [1876]: COREGRADE is starting... -- 13:28:35.800 INFO [1876]: Version from config: 1.0 -- 13:28:35.800 DEBUG [1876]: Connecting to database... -- 13:28:35.800 DEBUG [1876]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:28:35.800 SQL [1876]: pgsql_db_connect() -- 13:28:35.804 DEBUG [1876]: Database connection successful -- 13:28:35.804 INFO [1876]: _SERVER found -- 13:28:35.804 INFO [1876]: REMOTE_ADDR = 10.0.0.15 -- 13:28:35.804 INFO [1876]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:28:35.804 INFO [1876]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=go2vt4t590ojulahhecjvmckv6blm4qg -- 13:28:35.804 INFO [1876]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 13:28:35.804 INFO [1876]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:28:35.816 INFO [1876]: COREGRADE is stopping... -- 13:28:35.816 DEBUG [1876]: Closing database connection -- 13:28:35.817 SQL [1876]: pgsql_close() -- 13:28:35.834 INFO [1876]: COREGRADE is starting... -- 13:28:35.835 INFO [1876]: Version from config: 1.0 -- 13:28:35.835 DEBUG [1876]: Connecting to database... -- 13:28:35.835 DEBUG [1876]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:28:35.835 SQL [1876]: pgsql_db_connect() -- 13:28:35.838 DEBUG [1876]: Database connection successful -- 13:28:35.838 INFO [1876]: _SERVER found -- 13:28:35.838 INFO [1876]: REMOTE_ADDR = 10.0.0.15 -- 13:28:35.838 INFO [1876]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:28:35.838 INFO [1876]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=go2vt4t590ojulahhecjvmckv6blm4qg -- 13:28:35.838 INFO [1876]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:28:35.838 INFO [1876]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:28:35.850 INFO [1876]: COREGRADE is stopping... -- 13:28:35.850 DEBUG [1876]: Closing database connection -- 13:28:35.850 SQL [1876]: pgsql_close() -- 13:29:23.968 INFO [1877]: COREGRADE is starting... -- 13:29:23.968 INFO [1877]: Version from config: 1.0 -- 13:29:23.968 DEBUG [1877]: Connecting to database... -- 13:29:23.968 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:23.968 SQL [1877]: pgsql_db_connect() -- 13:29:23.972 DEBUG [1877]: Database connection successful -- 13:29:23.972 INFO [1877]: _SERVER found -- 13:29:23.972 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 13:29:23.972 INFO [1877]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:29:23.972 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=go2vt4t590ojulahhecjvmckv6blm4qg; _gat_gtag_UA_54829827_2=1 -- 13:29:23.972 INFO [1877]: QUERY_STRING = /auth -- 13:29:23.972 INFO [1877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:29:24.011 INFO [1877]: COREGRADE is stopping... -- 13:29:24.011 DEBUG [1877]: Closing database connection -- 13:29:24.011 SQL [1877]: pgsql_close() -- 13:29:24.264 INFO [1877]: COREGRADE is starting... -- 13:29:24.264 INFO [1877]: Version from config: 1.0 -- 13:29:24.264 DEBUG [1877]: Connecting to database... -- 13:29:24.264 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:24.264 SQL [1877]: pgsql_db_connect() -- 13:29:24.269 DEBUG [1877]: Database connection successful -- 13:29:24.269 INFO [1877]: _SERVER found -- 13:29:24.269 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 13:29:24.269 INFO [1877]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:29:24.269 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=go2vt4t590ojulahhecjvmckv6blm4qg; _gat_gtag_UA_54829827_2=1 -- 13:29:24.269 INFO [1877]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:29:24.269 INFO [1877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:29:24.280 INFO [1877]: COREGRADE is stopping... -- 13:29:24.280 DEBUG [1877]: Closing database connection -- 13:29:24.280 SQL [1877]: pgsql_close() -- 13:29:24.372 INFO [1877]: COREGRADE is starting... -- 13:29:24.372 INFO [1877]: Version from config: 1.0 -- 13:29:24.372 DEBUG [1877]: Connecting to database... -- 13:29:24.372 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:24.372 SQL [1877]: pgsql_db_connect() -- 13:29:24.376 DEBUG [1877]: Database connection successful -- 13:29:24.376 INFO [1877]: _SERVER found -- 13:29:24.376 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 13:29:24.376 INFO [1877]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:29:24.376 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=go2vt4t590ojulahhecjvmckv6blm4qg; _gat_gtag_UA_54829827_2=1 -- 13:29:24.376 INFO [1877]: QUERY_STRING = /assets2/data/locales/en.json -- 13:29:24.376 INFO [1877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:29:24.387 INFO [1877]: COREGRADE is stopping... -- 13:29:24.387 DEBUG [1877]: Closing database connection -- 13:29:24.387 SQL [1877]: pgsql_close() -- 13:56:23.161 INFO [1878]: COREGRADE is starting... -- 13:56:23.161 INFO [1878]: Version from config: 1.0 -- 13:56:23.161 DEBUG [1878]: Connecting to database... -- 13:56:23.161 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:56:23.161 SQL [1878]: pgsql_db_connect() -- 13:56:23.166 DEBUG [1878]: Database connection successful -- 13:56:23.166 INFO [1878]: _SERVER found -- 13:56:23.166 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 13:56:23.166 INFO [1878]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:56:23.166 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=go2vt4t590ojulahhecjvmckv6blm4qg -- 13:56:23.166 INFO [1878]: QUERY_STRING = /auth -- 13:56:23.166 INFO [1878]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:56:23.525 INFO [1878]: COREGRADE is starting... -- 13:56:23.526 INFO [1878]: Version from config: 1.0 -- 13:56:23.526 DEBUG [1878]: Connecting to database... -- 13:56:23.526 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:56:23.526 SQL [1878]: pgsql_db_connect() -- 13:56:23.530 DEBUG [1878]: Database connection successful -- 13:56:23.530 INFO [1878]: _SERVER found -- 13:56:23.530 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 13:56:23.530 INFO [1878]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:56:23.530 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=vbgik39m1j7c80hkuc61gfc2ihtngv36 -- 13:56:23.530 INFO [1878]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:56:23.530 INFO [1878]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:56:23.542 INFO [1878]: COREGRADE is stopping... -- 13:56:23.542 DEBUG [1878]: Closing database connection -- 13:56:23.542 SQL [1878]: pgsql_close() -- 13:56:23.619 INFO [1878]: COREGRADE is starting... -- 13:56:23.620 INFO [1878]: Version from config: 1.0 -- 13:56:23.620 DEBUG [1878]: Connecting to database... -- 13:56:23.620 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:56:23.620 SQL [1878]: pgsql_db_connect() -- 13:56:23.624 DEBUG [1878]: Database connection successful -- 13:56:23.624 INFO [1878]: _SERVER found -- 13:56:23.624 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 13:56:23.624 INFO [1878]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:56:23.624 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=vbgik39m1j7c80hkuc61gfc2ihtngv36 -- 13:56:23.624 INFO [1878]: QUERY_STRING = /assets2/data/locales/en.json -- 13:56:23.624 INFO [1878]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:56:23.637 INFO [1878]: COREGRADE is stopping... -- 13:56:23.637 DEBUG [1878]: Closing database connection -- 13:56:23.637 SQL [1878]: pgsql_close() -- 13:56:43.956 INFO [1879]: COREGRADE is starting... -- 13:56:43.957 INFO [1879]: Version from config: 1.0 -- 13:56:43.957 DEBUG [1879]: Connecting to database... -- 13:56:43.957 DEBUG [1879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:56:43.957 SQL [1879]: pgsql_db_connect() -- 13:56:43.961 DEBUG [1879]: Database connection successful -- 13:56:43.961 INFO [1879]: _SERVER found -- 13:56:43.961 INFO [1879]: REMOTE_ADDR = 10.0.0.15 -- 13:56:43.961 INFO [1879]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:56:43.961 INFO [1879]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=vbgik39m1j7c80hkuc61gfc2ihtngv36 -- 13:56:43.961 INFO [1879]: QUERY_STRING = /auth -- 13:56:43.961 INFO [1879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:56:44.130 INFO [1879]: COREGRADE is starting... -- 13:56:44.130 INFO [1879]: Version from config: 1.0 -- 13:56:44.130 DEBUG [1879]: Connecting to database... -- 13:56:44.130 DEBUG [1879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:56:44.130 SQL [1879]: pgsql_db_connect() -- 13:56:44.134 DEBUG [1879]: Database connection successful -- 13:56:44.134 INFO [1879]: _SERVER found -- 13:56:44.134 INFO [1879]: REMOTE_ADDR = 10.0.0.15 -- 13:56:44.134 INFO [1879]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:56:44.134 INFO [1879]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=vbgik39m1j7c80hkuc61gfc2ihtngv36 -- 13:56:44.134 INFO [1879]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:56:44.134 INFO [1879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:56:44.147 INFO [1879]: COREGRADE is stopping... -- 13:56:44.147 DEBUG [1879]: Closing database connection -- 13:56:44.147 SQL [1879]: pgsql_close() -- 13:56:48.097 INFO [1879]: COREGRADE is starting... -- 13:56:48.097 INFO [1879]: Version from config: 1.0 -- 13:56:48.097 DEBUG [1879]: Connecting to database... -- 13:56:48.098 DEBUG [1879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:56:48.098 SQL [1879]: pgsql_db_connect() -- 13:56:48.102 DEBUG [1879]: Database connection successful -- 13:56:48.102 INFO [1879]: _SERVER found -- 13:56:48.102 INFO [1879]: REMOTE_ADDR = 10.0.0.15 -- 13:56:48.102 INFO [1879]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:56:48.102 INFO [1879]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=vbgik39m1j7c80hkuc61gfc2ihtngv36 -- 13:56:48.102 INFO [1879]: QUERY_STRING = /assets2/data/locales/en.json -- 13:56:48.102 INFO [1879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:56:48.114 INFO [1879]: COREGRADE is stopping... -- 13:56:48.114 DEBUG [1879]: Closing database connection -- 13:56:48.114 SQL [1879]: pgsql_close() -- 15:28:19.396 INFO [1880]: COREGRADE is starting... -- 15:28:19.396 INFO [1880]: Version from config: 1.0 -- 15:28:19.396 DEBUG [1880]: Connecting to database... -- 15:28:19.396 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:28:19.396 SQL [1880]: pgsql_db_connect() -- 15:28:19.401 DEBUG [1880]: Database connection successful -- 15:28:19.401 INFO [1880]: _SERVER found -- 15:28:19.401 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 15:28:19.401 INFO [1880]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:28:19.401 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=vbgik39m1j7c80hkuc61gfc2ihtngv36 -- 15:28:19.401 INFO [1880]: QUERY_STRING = /auth -- 15:28:19.401 INFO [1880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:28:19.447 INFO [1880]: COREGRADE is stopping... -- 15:28:19.447 DEBUG [1880]: Closing database connection -- 15:28:19.447 SQL [1880]: pgsql_close() -- 15:28:19.658 INFO [1880]: COREGRADE is starting... -- 15:28:19.658 INFO [1880]: Version from config: 1.0 -- 15:28:19.658 DEBUG [1880]: Connecting to database... -- 15:28:19.658 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:28:19.658 SQL [1880]: pgsql_db_connect() -- 15:28:19.663 DEBUG [1880]: Database connection successful -- 15:28:19.663 INFO [1880]: _SERVER found -- 15:28:19.663 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 15:28:19.663 INFO [1880]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:28:19.663 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=bd7bufeteh63fnhcj0faklq7nplurd34 -- 15:28:19.663 INFO [1880]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:28:19.663 INFO [1880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:28:19.676 INFO [1880]: COREGRADE is stopping... -- 15:28:19.676 DEBUG [1880]: Closing database connection -- 15:28:19.676 SQL [1880]: pgsql_close() -- 15:28:19.685 INFO [1880]: COREGRADE is starting... -- 15:28:19.685 INFO [1880]: Version from config: 1.0 -- 15:28:19.685 DEBUG [1880]: Connecting to database... -- 15:28:19.685 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:28:19.685 SQL [1880]: pgsql_db_connect() -- 15:28:19.689 DEBUG [1880]: Database connection successful -- 15:28:19.689 INFO [1880]: _SERVER found -- 15:28:19.689 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 15:28:19.689 INFO [1880]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:28:19.689 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=bd7bufeteh63fnhcj0faklq7nplurd34 -- 15:28:19.689 INFO [1880]: QUERY_STRING = /assets2/data/locales/en.json -- 15:28:19.689 INFO [1880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:28:19.702 INFO [1880]: COREGRADE is stopping... -- 15:28:19.702 DEBUG [1880]: Closing database connection -- 15:28:19.702 SQL [1880]: pgsql_close() -- 15:28:42.702 INFO [32687]: COREGRADE is starting... -- 15:28:42.702 INFO [32687]: Version from config: 1.0 -- 15:28:42.702 DEBUG [32687]: Connecting to database... -- 15:28:42.702 DEBUG [32687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:28:42.702 SQL [32687]: pgsql_db_connect() -- 15:28:42.706 DEBUG [32687]: Database connection successful -- 15:28:42.707 INFO [32687]: _SERVER found -- 15:28:42.707 INFO [32687]: REMOTE_ADDR = 10.0.0.15 -- 15:28:42.707 INFO [32687]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:28:42.707 INFO [32687]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=bd7bufeteh63fnhcj0faklq7nplurd34 -- 15:28:42.707 INFO [32687]: QUERY_STRING = /auth -- 15:28:42.707 INFO [32687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:28:42.908 INFO [32687]: COREGRADE is starting... -- 15:28:42.908 INFO [32687]: Version from config: 1.0 -- 15:28:42.908 DEBUG [32687]: Connecting to database... -- 15:28:42.908 DEBUG [32687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:28:42.908 SQL [32687]: pgsql_db_connect() -- 15:28:42.912 DEBUG [32687]: Database connection successful -- 15:28:42.912 INFO [32687]: _SERVER found -- 15:28:42.912 INFO [32687]: REMOTE_ADDR = 10.0.0.15 -- 15:28:42.912 INFO [32687]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:28:42.912 INFO [32687]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=bd7bufeteh63fnhcj0faklq7nplurd34 -- 15:28:42.912 INFO [32687]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:28:42.912 INFO [32687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:28:42.924 INFO [32687]: COREGRADE is stopping... -- 15:28:42.924 DEBUG [32687]: Closing database connection -- 15:28:42.924 SQL [32687]: pgsql_close() -- 15:28:42.988 INFO [32687]: COREGRADE is starting... -- 15:28:42.988 INFO [32687]: Version from config: 1.0 -- 15:28:42.988 DEBUG [32687]: Connecting to database... -- 15:28:42.988 DEBUG [32687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:28:42.988 SQL [32687]: pgsql_db_connect() -- 15:28:42.992 DEBUG [32687]: Database connection successful -- 15:28:42.992 INFO [32687]: _SERVER found -- 15:28:42.992 INFO [32687]: REMOTE_ADDR = 10.0.0.15 -- 15:28:42.992 INFO [32687]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:28:42.992 INFO [32687]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=bd7bufeteh63fnhcj0faklq7nplurd34 -- 15:28:42.992 INFO [32687]: QUERY_STRING = /assets2/data/locales/en.json -- 15:28:42.992 INFO [32687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:28:43.003 INFO [32687]: COREGRADE is stopping... -- 15:28:43.003 DEBUG [32687]: Closing database connection -- 15:28:43.003 SQL [32687]: pgsql_close() -- 15:33:34.187 INFO [32688]: COREGRADE is starting... -- 15:33:34.187 INFO [32688]: Version from config: 1.0 -- 15:33:34.187 DEBUG [32688]: Connecting to database... -- 15:33:34.188 DEBUG [32688]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:33:34.188 SQL [32688]: pgsql_db_connect() -- 15:33:34.192 DEBUG [32688]: Database connection successful -- 15:33:34.192 INFO [32688]: _SERVER found -- 15:33:34.192 INFO [32688]: REMOTE_ADDR = 10.0.0.15 -- 15:33:34.192 INFO [32688]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:33:34.192 INFO [32688]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=bd7bufeteh63fnhcj0faklq7nplurd34 -- 15:33:34.192 INFO [32688]: QUERY_STRING = -- 15:33:34.192 INFO [32688]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:33:34.265 INFO [32688]: COREGRADE is stopping... -- 15:33:34.265 DEBUG [32688]: Closing database connection -- 15:33:34.265 SQL [32688]: pgsql_close() -- 15:33:34.603 INFO [32688]: COREGRADE is starting... -- 15:33:34.603 INFO [32688]: Version from config: 1.0 -- 15:33:34.603 DEBUG [32688]: Connecting to database... -- 15:33:34.603 DEBUG [32688]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:33:34.603 SQL [32688]: pgsql_db_connect() -- 15:33:34.607 DEBUG [32688]: Database connection successful -- 15:33:34.607 INFO [32688]: _SERVER found -- 15:33:34.607 INFO [32688]: REMOTE_ADDR = 10.0.0.15 -- 15:33:34.607 INFO [32688]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:33:34.607 INFO [32688]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=ogom3ggr87r9f7g8jqggtv3rvcl3at90 -- 15:33:34.607 INFO [32688]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 15:33:34.607 INFO [32688]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:33:34.618 INFO [32688]: COREGRADE is stopping... -- 15:33:34.618 DEBUG [32688]: Closing database connection -- 15:33:34.618 SQL [32688]: pgsql_close() -- 15:33:34.627 INFO [32688]: COREGRADE is starting... -- 15:33:34.627 INFO [32688]: Version from config: 1.0 -- 15:33:34.627 DEBUG [32688]: Connecting to database... -- 15:33:34.627 DEBUG [32688]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:33:34.627 SQL [32688]: pgsql_db_connect() -- 15:33:34.631 DEBUG [32688]: Database connection successful -- 15:33:34.631 INFO [32688]: _SERVER found -- 15:33:34.631 INFO [32688]: REMOTE_ADDR = 10.0.0.15 -- 15:33:34.631 INFO [32688]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:33:34.631 INFO [32688]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=ogom3ggr87r9f7g8jqggtv3rvcl3at90 -- 15:33:34.631 INFO [32688]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:33:34.631 INFO [32688]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:33:34.642 INFO [32688]: COREGRADE is stopping... -- 15:33:34.642 DEBUG [32688]: Closing database connection -- 15:33:34.642 SQL [32688]: pgsql_close() -- 15:35:10.749 INFO [32689]: COREGRADE is starting... -- 15:35:10.749 INFO [32689]: Version from config: 1.0 -- 15:35:10.749 DEBUG [32689]: Connecting to database... -- 15:35:10.749 DEBUG [32689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:35:10.749 SQL [32689]: pgsql_db_connect() -- 15:35:10.754 DEBUG [32689]: Database connection successful -- 15:35:10.754 INFO [32689]: _SERVER found -- 15:35:10.754 INFO [32689]: REMOTE_ADDR = 10.0.0.15 -- 15:35:10.754 INFO [32689]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:35:10.754 INFO [32689]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=ogom3ggr87r9f7g8jqggtv3rvcl3at90 -- 15:35:10.754 INFO [32689]: QUERY_STRING = /home/faq -- 15:35:10.754 INFO [32689]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:35:10.793 INFO [32689]: COREGRADE is stopping... -- 15:35:10.794 DEBUG [32689]: Closing database connection -- 15:35:10.794 SQL [32689]: pgsql_close() -- 15:35:11.222 INFO [32689]: COREGRADE is starting... -- 15:35:11.223 INFO [32689]: Version from config: 1.0 -- 15:35:11.223 DEBUG [32689]: Connecting to database... -- 15:35:11.223 DEBUG [32689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:35:11.223 SQL [32689]: pgsql_db_connect() -- 15:35:11.227 DEBUG [32689]: Database connection successful -- 15:35:11.227 INFO [32689]: _SERVER found -- 15:35:11.227 INFO [32689]: REMOTE_ADDR = 10.0.0.15 -- 15:35:11.227 INFO [32689]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:35:11.227 INFO [32689]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=ogom3ggr87r9f7g8jqggtv3rvcl3at90 -- 15:35:11.227 INFO [32689]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:35:11.227 INFO [32689]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:35:11.238 INFO [32689]: COREGRADE is stopping... -- 15:35:11.238 DEBUG [32689]: Closing database connection -- 15:35:11.238 SQL [32689]: pgsql_close() -- 15:35:11.371 INFO [32689]: COREGRADE is starting... -- 15:35:11.371 INFO [32689]: Version from config: 1.0 -- 15:35:11.371 DEBUG [32689]: Connecting to database... -- 15:35:11.371 DEBUG [32689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:35:11.371 SQL [32689]: pgsql_db_connect() -- 15:35:11.375 DEBUG [32689]: Database connection successful -- 15:35:11.375 INFO [32689]: _SERVER found -- 15:35:11.375 INFO [32689]: REMOTE_ADDR = 10.0.0.15 -- 15:35:11.375 INFO [32689]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:35:11.375 INFO [32689]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=ogom3ggr87r9f7g8jqggtv3rvcl3at90 -- 15:35:11.375 INFO [32689]: QUERY_STRING = /assets2/data/locales/en.json -- 15:35:11.375 INFO [32689]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:35:11.386 INFO [32689]: COREGRADE is stopping... -- 15:35:11.386 DEBUG [32689]: Closing database connection -- 15:35:11.386 SQL [32689]: pgsql_close() -- 16:33:43.432 INFO [32690]: COREGRADE is starting... -- 16:33:43.433 INFO [32690]: Version from config: 1.0 -- 16:33:43.433 DEBUG [32690]: Connecting to database... -- 16:33:43.433 DEBUG [32690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:33:43.433 SQL [32690]: pgsql_db_connect() -- 16:33:43.438 DEBUG [32690]: Database connection successful -- 16:33:43.438 INFO [32690]: _SERVER found -- 16:33:43.438 INFO [32690]: REMOTE_ADDR = 10.0.0.15 -- 16:33:43.438 INFO [32690]: SERVER_NAME = oameye.works.coregrade.com -- 16:33:43.438 INFO [32690]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561 -- 16:33:43.438 INFO [32690]: QUERY_STRING = -- 16:33:43.438 INFO [32690]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:33:43.487 INFO [32690]: COREGRADE is stopping... -- 16:33:43.487 DEBUG [32690]: Closing database connection -- 16:33:43.487 SQL [32690]: pgsql_close() -- 16:33:43.618 INFO [32690]: COREGRADE is starting... -- 16:33:43.619 INFO [32690]: Version from config: 1.0 -- 16:33:43.619 DEBUG [32690]: Connecting to database... -- 16:33:43.619 DEBUG [32690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:33:43.619 SQL [32690]: pgsql_db_connect() -- 16:33:43.623 INFO [1875]: COREGRADE is starting... -- 16:33:43.623 INFO [1875]: Version from config: 1.0 -- 16:33:43.623 DEBUG [1875]: Connecting to database... -- 16:33:43.623 DEBUG [1875]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:33:43.623 SQL [1875]: pgsql_db_connect() -- 16:33:43.623 DEBUG [32690]: Database connection successful -- 16:33:43.623 INFO [32690]: _SERVER found -- 16:33:43.623 INFO [32690]: REMOTE_ADDR = 10.0.0.15 -- 16:33:43.623 INFO [32690]: SERVER_NAME = oameye.works.coregrade.com -- 16:33:43.623 INFO [32690]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=bdltnskt8rutd7i0mfg6e0gkd6ia7n96 -- 16:33:43.623 INFO [32690]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 16:33:43.623 INFO [32690]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:33:43.635 INFO [32690]: COREGRADE is stopping... -- 16:33:43.635 DEBUG [32690]: Closing database connection -- 16:33:43.635 SQL [32690]: pgsql_close() -- 16:33:43.627 DEBUG [1875]: Database connection successful -- 16:33:43.627 INFO [1875]: _SERVER found -- 16:33:43.627 INFO [1875]: REMOTE_ADDR = 10.0.0.15 -- 16:33:43.627 INFO [1875]: SERVER_NAME = oameye.works.coregrade.com -- 16:33:43.627 INFO [1875]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=bdltnskt8rutd7i0mfg6e0gkd6ia7n96 -- 16:33:43.627 INFO [1875]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:33:43.627 INFO [1875]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:33:43.641 INFO [1875]: COREGRADE is stopping... -- 16:33:43.641 DEBUG [1875]: Closing database connection -- 16:33:43.641 SQL [1875]: pgsql_close() -- 16:34:53.478 INFO [1876]: COREGRADE is starting... -- 16:34:53.478 INFO [1876]: Version from config: 1.0 -- 16:34:53.478 DEBUG [1876]: Connecting to database... -- 16:34:53.478 DEBUG [1876]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:34:53.478 SQL [1876]: pgsql_db_connect() -- 16:34:53.483 DEBUG [1876]: Database connection successful -- 16:34:53.483 INFO [1876]: _SERVER found -- 16:34:53.483 INFO [1876]: REMOTE_ADDR = 10.0.0.15 -- 16:34:53.483 INFO [1876]: SERVER_NAME = oameye.works.coregrade.com -- 16:34:53.483 INFO [1876]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938 -- 16:34:53.483 INFO [1876]: QUERY_STRING = -- 16:34:53.483 INFO [1876]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:34:53.519 INFO [1876]: COREGRADE is stopping... -- 16:34:53.519 DEBUG [1876]: Closing database connection -- 16:34:53.519 SQL [1876]: pgsql_close() -- 16:34:53.731 INFO [1876]: COREGRADE is starting... -- 16:34:53.731 INFO [1876]: Version from config: 1.0 -- 16:34:53.731 DEBUG [1876]: Connecting to database... -- 16:34:53.731 DEBUG [1876]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:34:53.731 SQL [1876]: pgsql_db_connect() -- 16:34:53.735 DEBUG [1876]: Database connection successful -- 16:34:53.735 INFO [1876]: _SERVER found -- 16:34:53.735 INFO [1876]: REMOTE_ADDR = 10.0.0.15 -- 16:34:53.735 INFO [1876]: SERVER_NAME = oameye.works.coregrade.com -- 16:34:53.735 INFO [1876]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=9g3to83llho1i027b33osnqoujbphofs -- 16:34:53.735 INFO [1876]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 16:34:53.735 INFO [1876]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:34:53.746 INFO [1876]: COREGRADE is stopping... -- 16:34:53.746 DEBUG [1876]: Closing database connection -- 16:34:53.746 SQL [1876]: pgsql_close() -- 16:34:53.755 INFO [1876]: COREGRADE is starting... -- 16:34:53.755 INFO [1876]: Version from config: 1.0 -- 16:34:53.755 DEBUG [1876]: Connecting to database... -- 16:34:53.756 DEBUG [1876]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:34:53.756 SQL [1876]: pgsql_db_connect() -- 16:34:53.759 DEBUG [1876]: Database connection successful -- 16:34:53.759 INFO [1876]: _SERVER found -- 16:34:53.759 INFO [1876]: REMOTE_ADDR = 10.0.0.15 -- 16:34:53.759 INFO [1876]: SERVER_NAME = oameye.works.coregrade.com -- 16:34:53.759 INFO [1876]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=9g3to83llho1i027b33osnqoujbphofs -- 16:34:53.759 INFO [1876]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:34:53.759 INFO [1876]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:34:53.770 INFO [1876]: COREGRADE is stopping... -- 16:34:53.770 DEBUG [1876]: Closing database connection -- 16:34:53.770 SQL [1876]: pgsql_close() -- 16:54:34.145 INFO [1877]: COREGRADE is starting... -- 16:54:34.145 INFO [1877]: Version from config: 1.0 -- 16:54:34.145 DEBUG [1877]: Connecting to database... -- 16:54:34.145 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:54:34.145 SQL [1877]: pgsql_db_connect() -- 16:54:34.150 DEBUG [1877]: Database connection successful -- 16:54:34.150 INFO [1877]: _SERVER found -- 16:54:34.150 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 16:54:34.150 INFO [1877]: SERVER_NAME = oameye.works.coregrade.com -- 16:54:34.150 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624 -- 16:54:34.150 INFO [1877]: QUERY_STRING = -- 16:54:34.150 INFO [1877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:54:34.192 INFO [1877]: COREGRADE is stopping... -- 16:54:34.192 DEBUG [1877]: Closing database connection -- 16:54:34.192 SQL [1877]: pgsql_close() -- 17:17:07.813 INFO [1878]: COREGRADE is starting... -- 17:17:07.813 INFO [1878]: Version from config: 1.0 -- 17:17:07.813 DEBUG [1878]: Connecting to database... -- 17:17:07.813 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:07.813 SQL [1878]: pgsql_db_connect() -- 17:17:07.820 DEBUG [1878]: Database connection successful -- 17:17:07.820 INFO [1878]: _SERVER found -- 17:17:07.820 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 17:17:07.820 INFO [1878]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:17:07.820 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.1284960188.1579479911; _gid=GA1.2.1177012670.1586628181 -- 17:17:07.820 INFO [1878]: QUERY_STRING = -- 17:17:07.820 INFO [1878]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:17:07.867 INFO [1878]: COREGRADE is stopping... -- 17:17:07.867 DEBUG [1878]: Closing database connection -- 17:17:07.867 SQL [1878]: pgsql_close() -- 17:17:08.307 INFO [1878]: COREGRADE is starting... -- 17:17:08.307 INFO [1878]: Version from config: 1.0 -- 17:17:08.307 DEBUG [1878]: Connecting to database... -- 17:17:08.307 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:08.307 SQL [1878]: pgsql_db_connect() -- 17:17:08.311 DEBUG [1878]: Database connection successful -- 17:17:08.311 INFO [1878]: _SERVER found -- 17:17:08.311 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 17:17:08.311 INFO [1878]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:17:08.311 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.1284960188.1579479911; _gid=GA1.2.1177012670.1586628181; ci_session=02jt53ius96v7qhv76p79c378tesnq2e; _gat_gtag_UA_54829827_2=1 -- 17:17:08.311 INFO [1878]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 17:17:08.311 INFO [1878]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:17:08.323 INFO [1878]: COREGRADE is stopping... -- 17:17:08.323 DEBUG [1878]: Closing database connection -- 17:17:08.323 SQL [1878]: pgsql_close() -- 17:17:08.332 INFO [1878]: COREGRADE is starting... -- 17:17:08.333 INFO [1878]: Version from config: 1.0 -- 17:17:08.333 DEBUG [1878]: Connecting to database... -- 17:17:08.333 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:08.333 SQL [1878]: pgsql_db_connect() -- 17:17:08.337 DEBUG [1878]: Database connection successful -- 17:17:08.337 INFO [1878]: _SERVER found -- 17:17:08.337 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 17:17:08.337 INFO [1878]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:17:08.337 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.1284960188.1579479911; _gid=GA1.2.1177012670.1586628181; ci_session=02jt53ius96v7qhv76p79c378tesnq2e; _gat_gtag_UA_54829827_2=1 -- 17:17:08.337 INFO [1878]: QUERY_STRING = /assets/img/footer_1.jpg -- 17:17:08.337 INFO [1878]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:17:08.348 INFO [1878]: COREGRADE is stopping... -- 17:17:08.348 DEBUG [1878]: Closing database connection -- 17:17:08.348 SQL [1878]: pgsql_close() -- 17:17:12.187 INFO [1878]: COREGRADE is starting... -- 17:17:12.187 INFO [1878]: Version from config: 1.0 -- 17:17:12.187 DEBUG [1878]: Connecting to database... -- 17:17:12.187 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:12.187 SQL [1878]: pgsql_db_connect() -- 17:17:12.191 DEBUG [1878]: Database connection successful -- 17:17:12.191 INFO [1878]: _SERVER found -- 17:17:12.191 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 17:17:12.191 INFO [1878]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:17:12.191 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.1284960188.1579479911; _gid=GA1.2.1177012670.1586628181; ci_session=02jt53ius96v7qhv76p79c378tesnq2e; _gat_gtag_UA_54829827_2=1 -- 17:17:12.191 INFO [1878]: QUERY_STRING = /welcome/viewLogin -- 17:17:12.191 INFO [1878]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:17:12.222 INFO [1878]: COREGRADE is stopping... -- 17:17:12.222 DEBUG [1878]: Closing database connection -- 17:17:12.222 SQL [1878]: pgsql_close() -- 17:17:12.229 INFO [1878]: COREGRADE is starting... -- 17:17:12.229 INFO [1878]: Version from config: 1.0 -- 17:17:12.229 DEBUG [1878]: Connecting to database... -- 17:17:12.230 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:12.230 SQL [1878]: pgsql_db_connect() -- 17:17:12.233 DEBUG [1878]: Database connection successful -- 17:17:12.233 INFO [1878]: _SERVER found -- 17:17:12.233 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 17:17:12.233 INFO [1878]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:17:12.233 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.1284960188.1579479911; _gid=GA1.2.1177012670.1586628181; ci_session=02jt53ius96v7qhv76p79c378tesnq2e; _gat_gtag_UA_54829827_2=1 -- 17:17:12.233 INFO [1878]: QUERY_STRING = /auth -- 17:17:12.233 INFO [1878]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:17:12.264 INFO [1878]: COREGRADE is stopping... -- 17:17:12.264 DEBUG [1878]: Closing database connection -- 17:17:12.264 SQL [1878]: pgsql_close() -- 17:17:12.271 INFO [1878]: COREGRADE is starting... -- 17:17:12.271 INFO [1878]: Version from config: 1.0 -- 17:17:12.271 DEBUG [1878]: Connecting to database... -- 17:17:12.271 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:12.271 SQL [1878]: pgsql_db_connect() -- 17:17:12.275 DEBUG [1878]: Database connection successful -- 17:17:12.275 INFO [1878]: _SERVER found -- 17:17:12.275 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 17:17:12.275 INFO [1878]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:17:12.275 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.1284960188.1579479911; _gid=GA1.2.1177012670.1586628181; ci_session=02jt53ius96v7qhv76p79c378tesnq2e; _gat_gtag_UA_54829827_2=1 -- 17:17:12.275 INFO [1878]: QUERY_STRING = /auth/index -- 17:17:12.275 INFO [1878]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:17:12.306 INFO [1878]: COREGRADE is stopping... -- 17:17:12.306 DEBUG [1878]: Closing database connection -- 17:17:12.306 SQL [1878]: pgsql_close() -- 17:17:23.117 INFO [1879]: COREGRADE is starting... -- 17:17:23.117 INFO [1879]: Version from config: 1.0 -- 17:17:23.117 DEBUG [1879]: Connecting to database... -- 17:17:23.117 DEBUG [1879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:23.117 SQL [1879]: pgsql_db_connect() -- 17:17:23.121 DEBUG [1879]: Database connection successful -- 17:17:23.121 INFO [1879]: _SERVER found -- 17:17:23.121 INFO [1879]: REMOTE_ADDR = 10.0.0.15 -- 17:17:23.121 INFO [1879]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:17:23.121 INFO [1879]: HTTP_COOKIE = _ga=GA1.2.1284960188.1579479911; _gid=GA1.2.1177012670.1586628181; ci_session=02jt53ius96v7qhv76p79c378tesnq2e; _gat_gtag_UA_54829827_2=1 -- 17:17:23.121 INFO [1879]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:17:23.121 INFO [1879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:17:23.134 INFO [1879]: COREGRADE is stopping... -- 17:17:23.134 DEBUG [1879]: Closing database connection -- 17:17:23.134 SQL [1879]: pgsql_close() -- 17:17:23.205 INFO [1879]: COREGRADE is starting... -- 17:17:23.206 INFO [1879]: Version from config: 1.0 -- 17:17:23.206 DEBUG [1879]: Connecting to database... -- 17:17:23.206 DEBUG [1879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:23.206 SQL [1879]: pgsql_db_connect() -- 17:17:23.210 DEBUG [1879]: Database connection successful -- 17:17:23.210 INFO [1879]: _SERVER found -- 17:17:23.210 INFO [1879]: REMOTE_ADDR = 10.0.0.15 -- 17:17:23.210 INFO [1879]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:17:23.210 INFO [1879]: HTTP_COOKIE = _ga=GA1.2.1284960188.1579479911; _gid=GA1.2.1177012670.1586628181; ci_session=02jt53ius96v7qhv76p79c378tesnq2e; _gat_gtag_UA_54829827_2=1 -- 17:17:23.210 INFO [1879]: QUERY_STRING = /assets2/data/locales/en.json -- 17:17:23.210 INFO [1879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:17:23.222 INFO [1879]: COREGRADE is stopping... -- 17:17:23.222 DEBUG [1879]: Closing database connection -- 17:17:23.222 SQL [1879]: pgsql_close() -- 17:21:44.823 INFO [1880]: COREGRADE is starting... -- 17:21:44.823 INFO [1880]: Version from config: 1.0 -- 17:21:44.823 DEBUG [1880]: Connecting to database... -- 17:21:44.823 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:21:44.824 SQL [1880]: pgsql_db_connect() -- 17:21:44.828 DEBUG [1880]: Database connection successful -- 17:21:44.828 INFO [1880]: _SERVER found -- 17:21:44.828 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 17:21:44.828 INFO [1880]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:21:44.828 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.1284960188.1579479911; _gid=GA1.2.1177012670.1586628181; ci_session=02jt53ius96v7qhv76p79c378tesnq2e -- 17:21:44.828 INFO [1880]: QUERY_STRING = /auth -- 17:21:44.828 INFO [1880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:21:45.026 INFO [1880]: COREGRADE is starting... -- 17:21:45.026 INFO [1880]: Version from config: 1.0 -- 17:21:45.026 DEBUG [1880]: Connecting to database... -- 17:21:45.026 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:21:45.026 SQL [1880]: pgsql_db_connect() -- 17:21:45.030 DEBUG [1880]: Database connection successful -- 17:21:45.030 INFO [1880]: _SERVER found -- 17:21:45.030 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 17:21:45.030 INFO [1880]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:21:45.030 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.1284960188.1579479911; _gid=GA1.2.1177012670.1586628181; ci_session=02jt53ius96v7qhv76p79c378tesnq2e -- 17:21:45.030 INFO [1880]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:21:45.030 INFO [1880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:21:45.041 INFO [1880]: COREGRADE is stopping... -- 17:21:45.041 DEBUG [1880]: Closing database connection -- 17:21:45.041 SQL [1880]: pgsql_close() -- 17:21:45.071 INFO [1880]: COREGRADE is starting... -- 17:21:45.071 INFO [1880]: Version from config: 1.0 -- 17:21:45.071 DEBUG [1880]: Connecting to database... -- 17:21:45.071 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:21:45.071 SQL [1880]: pgsql_db_connect() -- 17:21:45.076 DEBUG [1880]: Database connection successful -- 17:21:45.076 INFO [1880]: _SERVER found -- 17:21:45.076 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 17:21:45.076 INFO [1880]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:21:45.076 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.1284960188.1579479911; _gid=GA1.2.1177012670.1586628181; ci_session=02jt53ius96v7qhv76p79c378tesnq2e -- 17:21:45.076 INFO [1880]: QUERY_STRING = /assets2/data/locales/en.json -- 17:21:45.076 INFO [1880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:21:45.087 INFO [1880]: COREGRADE is stopping... -- 17:21:45.087 DEBUG [1880]: Closing database connection -- 17:21:45.087 SQL [1880]: pgsql_close() -- 17:22:22.359 INFO [32687]: COREGRADE is starting... -- 17:22:22.359 INFO [32687]: Version from config: 1.0 -- 17:22:22.359 DEBUG [32687]: Connecting to database... -- 17:22:22.359 DEBUG [32687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:22:22.359 SQL [32687]: pgsql_db_connect() -- 17:22:22.364 DEBUG [32687]: Database connection successful -- 17:22:22.364 INFO [32687]: _SERVER found -- 17:22:22.364 INFO [32687]: REMOTE_ADDR = 10.0.0.15 -- 17:22:22.364 INFO [32687]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:22:22.364 INFO [32687]: HTTP_COOKIE = _ga=GA1.2.1284960188.1579479911; _gid=GA1.2.1177012670.1586628181; ci_session=02jt53ius96v7qhv76p79c378tesnq2e -- 17:22:22.364 INFO [32687]: QUERY_STRING = /auth -- 17:22:22.364 INFO [32687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:22:22.532 INFO [32687]: COREGRADE is starting... -- 17:22:22.533 INFO [32687]: Version from config: 1.0 -- 17:22:22.533 DEBUG [32687]: Connecting to database... -- 17:22:22.533 DEBUG [32687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:22:22.533 SQL [32687]: pgsql_db_connect() -- 17:22:22.537 DEBUG [32687]: Database connection successful -- 17:22:22.537 INFO [32687]: _SERVER found -- 17:22:22.537 INFO [32687]: REMOTE_ADDR = 10.0.0.15 -- 17:22:22.537 INFO [32687]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:22:22.537 INFO [32687]: HTTP_COOKIE = _ga=GA1.2.1284960188.1579479911; _gid=GA1.2.1177012670.1586628181; ci_session=6imd839vrg2028fq34ul1e59630ni8ll -- 17:22:22.537 INFO [32687]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:22:22.537 INFO [32687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:22:22.548 INFO [32687]: COREGRADE is stopping... -- 17:22:22.548 DEBUG [32687]: Closing database connection -- 17:22:22.548 SQL [32687]: pgsql_close() -- 17:22:22.554 INFO [32687]: COREGRADE is starting... -- 17:22:22.554 INFO [32687]: Version from config: 1.0 -- 17:22:22.554 DEBUG [32687]: Connecting to database... -- 17:22:22.554 DEBUG [32687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:22:22.554 SQL [32687]: pgsql_db_connect() -- 17:22:22.558 DEBUG [32687]: Database connection successful -- 17:22:22.558 INFO [32687]: _SERVER found -- 17:22:22.558 INFO [32687]: REMOTE_ADDR = 10.0.0.15 -- 17:22:22.558 INFO [32687]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:22:22.558 INFO [32687]: HTTP_COOKIE = _ga=GA1.2.1284960188.1579479911; _gid=GA1.2.1177012670.1586628181; ci_session=6imd839vrg2028fq34ul1e59630ni8ll -- 17:22:22.558 INFO [32687]: QUERY_STRING = /assets2/data/locales/en.json -- 17:22:22.558 INFO [32687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:22:22.569 INFO [32687]: COREGRADE is stopping... -- 17:22:22.569 DEBUG [32687]: Closing database connection -- 17:22:22.569 SQL [32687]: pgsql_close() -- 20:33:36.045 INFO [32688]: COREGRADE is starting... -- 20:33:36.045 INFO [32688]: Version from config: 1.0 -- 20:33:36.045 DEBUG [32688]: Connecting to database... -- 20:33:36.045 DEBUG [32688]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:33:36.045 SQL [32688]: pgsql_db_connect() -- 20:33:36.050 DEBUG [32688]: Database connection successful -- 20:33:36.050 INFO [32688]: _SERVER found -- 20:33:36.050 INFO [32688]: REMOTE_ADDR = 10.0.0.15 -- 20:33:36.050 INFO [32688]: SERVER_NAME = oameye.works.coregrade.com -- 20:33:36.050 INFO [32688]: QUERY_STRING = -- 20:33:36.050 INFO [32688]: HTTP_X_FORWARDED_FOR = 107.6.169.250 -- 20:33:36.087 INFO [32688]: COREGRADE is stopping... -- 20:33:36.087 DEBUG [32688]: Closing database connection -- 20:33:36.087 SQL [32688]: pgsql_close() -- 20:43:46.586 INFO [32690]: COREGRADE is starting... -- 20:43:46.587 INFO [32690]: Version from config: 1.0 -- 20:43:46.587 DEBUG [32690]: Connecting to database... -- 20:43:46.587 DEBUG [32690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:43:46.587 SQL [32690]: pgsql_db_connect() -- 20:43:46.592 DEBUG [32690]: Database connection successful -- 20:43:46.592 INFO [32690]: _SERVER found -- 20:43:46.592 INFO [32690]: REMOTE_ADDR = 10.0.0.15 -- 20:43:46.592 INFO [32690]: SERVER_NAME = oameye.works.coregrade.com -- 20:43:46.592 INFO [32690]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938 -- 20:43:46.592 INFO [32690]: QUERY_STRING = -- 20:43:46.592 INFO [32690]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:43:46.630 INFO [32690]: COREGRADE is stopping... -- 20:43:46.630 DEBUG [32690]: Closing database connection -- 20:43:46.630 SQL [32690]: pgsql_close() -- 20:43:47.141 INFO [32690]: COREGRADE is starting... -- 20:43:47.141 INFO [32690]: Version from config: 1.0 -- 20:43:47.141 DEBUG [32690]: Connecting to database... -- 20:43:47.141 DEBUG [32690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:43:47.141 SQL [32690]: pgsql_db_connect() -- 20:43:47.145 DEBUG [32690]: Database connection successful -- 20:43:47.146 INFO [32690]: _SERVER found -- 20:43:47.146 INFO [32690]: REMOTE_ADDR = 10.0.0.15 -- 20:43:47.146 INFO [32690]: SERVER_NAME = oameye.works.coregrade.com -- 20:43:47.146 INFO [32690]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=d8nst03bd0cqv5gf45nngm53dea09vnh -- 20:43:47.146 INFO [32690]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 20:43:47.146 INFO [32690]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:43:47.157 INFO [32690]: COREGRADE is stopping... -- 20:43:47.157 DEBUG [32690]: Closing database connection -- 20:43:47.157 SQL [32690]: pgsql_close() -- 20:43:47.177 INFO [32690]: COREGRADE is starting... -- 20:43:47.178 INFO [32690]: Version from config: 1.0 -- 20:43:47.178 DEBUG [32690]: Connecting to database... -- 20:43:47.178 DEBUG [32690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:43:47.178 SQL [32690]: pgsql_db_connect() -- 20:43:47.182 DEBUG [32690]: Database connection successful -- 20:43:47.182 INFO [32690]: _SERVER found -- 20:43:47.182 INFO [32690]: REMOTE_ADDR = 10.0.0.15 -- 20:43:47.182 INFO [32690]: SERVER_NAME = oameye.works.coregrade.com -- 20:43:47.182 INFO [32690]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=d8nst03bd0cqv5gf45nngm53dea09vnh -- 20:43:47.182 INFO [32690]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:43:47.182 INFO [32690]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:43:47.193 INFO [32690]: COREGRADE is stopping... -- 20:43:47.193 DEBUG [32690]: Closing database connection -- 20:43:47.193 SQL [32690]: pgsql_close() -- 20:50:11.382 INFO [1875]: COREGRADE is starting... -- 20:50:11.382 INFO [1875]: Version from config: 1.0 -- 20:50:11.382 DEBUG [1875]: Connecting to database... -- 20:50:11.382 DEBUG [1875]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:50:11.382 SQL [1875]: pgsql_db_connect() -- 20:50:11.388 DEBUG [1875]: Database connection successful -- 20:50:11.388 INFO [1875]: _SERVER found -- 20:50:11.388 INFO [1875]: REMOTE_ADDR = 10.0.0.15 -- 20:50:11.388 INFO [1875]: SERVER_NAME = oameye.works.coregrade.com -- 20:50:11.388 INFO [1875]: HTTP_COOKIE = _ga=GA1.2.784606705.1583345490 -- 20:50:11.388 INFO [1875]: QUERY_STRING = -- 20:50:11.388 INFO [1875]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:50:11.426 INFO [1875]: COREGRADE is stopping... -- 20:50:11.426 DEBUG [1875]: Closing database connection -- 20:50:11.426 SQL [1875]: pgsql_close() -- 20:50:12.124 INFO [1875]: COREGRADE is starting... -- 20:50:12.124 INFO [1875]: Version from config: 1.0 -- 20:50:12.124 DEBUG [1875]: Connecting to database... -- 20:50:12.124 DEBUG [1875]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:50:12.124 SQL [1875]: pgsql_db_connect() -- 20:50:12.128 DEBUG [1875]: Database connection successful -- 20:50:12.128 INFO [1875]: _SERVER found -- 20:50:12.128 INFO [1875]: REMOTE_ADDR = 10.0.0.15 -- 20:50:12.128 INFO [1875]: SERVER_NAME = oameye.works.coregrade.com -- 20:50:12.128 INFO [1875]: HTTP_COOKIE = _ga=GA1.2.784606705.1583345490; ci_session=ioce9v3lb2laopqlpqi8a98h9laiht48 -- 20:50:12.128 INFO [1875]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:50:12.128 INFO [1875]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:50:12.140 INFO [1875]: COREGRADE is stopping... -- 20:50:12.140 DEBUG [1875]: Closing database connection -- 20:50:12.140 SQL [1875]: pgsql_close() -- 20:50:12.149 INFO [1875]: COREGRADE is starting... -- 20:50:12.149 INFO [1875]: Version from config: 1.0 -- 20:50:12.149 DEBUG [1875]: Connecting to database... -- 20:50:12.149 DEBUG [1875]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:50:12.149 SQL [1875]: pgsql_db_connect() -- 20:50:12.153 DEBUG [1875]: Database connection successful -- 20:50:12.153 INFO [1875]: _SERVER found -- 20:50:12.153 INFO [1875]: REMOTE_ADDR = 10.0.0.15 -- 20:50:12.153 INFO [1875]: SERVER_NAME = oameye.works.coregrade.com -- 20:50:12.153 INFO [1875]: HTTP_COOKIE = _ga=GA1.2.784606705.1583345490; ci_session=ioce9v3lb2laopqlpqi8a98h9laiht48 -- 20:50:12.153 INFO [1875]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 20:50:12.153 INFO [1875]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:50:12.165 INFO [1875]: COREGRADE is stopping... -- 20:50:12.165 DEBUG [1875]: Closing database connection -- 20:50:12.165 SQL [1875]: pgsql_close() -- 20:52:28.892 INFO [1876]: COREGRADE is starting... -- 20:52:28.892 INFO [1876]: Version from config: 1.0 -- 20:52:28.892 DEBUG [1876]: Connecting to database... -- 20:52:28.893 DEBUG [1876]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:52:28.893 SQL [1876]: pgsql_db_connect() -- 20:52:28.897 DEBUG [1876]: Database connection successful -- 20:52:28.897 INFO [1876]: _SERVER found -- 20:52:28.897 INFO [1876]: REMOTE_ADDR = 10.0.0.15 -- 20:52:28.897 INFO [1876]: SERVER_NAME = oameye.works.coregrade.com -- 20:52:28.897 INFO [1876]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=d8nst03bd0cqv5gf45nngm53dea09vnh -- 20:52:28.897 INFO [1876]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 20:52:28.897 INFO [1876]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:52:28.910 INFO [1876]: COREGRADE is stopping... -- 20:52:28.910 DEBUG [1876]: Closing database connection -- 20:52:28.910 SQL [1876]: pgsql_close() -- 20:56:11.410 INFO [1877]: COREGRADE is starting... -- 20:56:11.410 INFO [1877]: Version from config: 1.0 -- 20:56:11.410 DEBUG [1877]: Connecting to database... -- 20:56:11.410 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:56:11.410 SQL [1877]: pgsql_db_connect() -- 20:56:11.414 DEBUG [1877]: Database connection successful -- 20:56:11.414 INFO [1877]: _SERVER found -- 20:56:11.414 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 20:56:11.414 INFO [1877]: SERVER_NAME = oameye.works.coregrade.com -- 20:56:11.414 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=d8nst03bd0cqv5gf45nngm53dea09vnh -- 20:56:11.414 INFO [1877]: QUERY_STRING = -- 20:56:11.414 INFO [1877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:56:11.449 INFO [1877]: COREGRADE is stopping... -- 20:56:11.449 DEBUG [1877]: Closing database connection -- 20:56:11.449 SQL [1877]: pgsql_close() -- 20:56:11.573 INFO [1877]: COREGRADE is starting... -- 20:56:11.574 INFO [1877]: Version from config: 1.0 -- 20:56:11.574 DEBUG [1877]: Connecting to database... -- 20:56:11.574 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:56:11.574 SQL [1877]: pgsql_db_connect() -- 20:56:11.578 DEBUG [1877]: Database connection successful -- 20:56:11.578 INFO [1877]: _SERVER found -- 20:56:11.578 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 20:56:11.578 INFO [1877]: SERVER_NAME = oameye.works.coregrade.com -- 20:56:11.578 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=krsv6bgu0erm70r2uaqoqd1vpkbsf2jl -- 20:56:11.578 INFO [1877]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 20:56:11.578 INFO [1877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:56:11.589 INFO [1877]: COREGRADE is stopping... -- 20:56:11.589 DEBUG [1877]: Closing database connection -- 20:56:11.589 SQL [1877]: pgsql_close() -- 20:56:11.597 INFO [1877]: COREGRADE is starting... -- 20:56:11.598 INFO [1877]: Version from config: 1.0 -- 20:56:11.598 DEBUG [1877]: Connecting to database... -- 20:56:11.598 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:56:11.598 SQL [1877]: pgsql_db_connect() -- 20:56:11.601 DEBUG [1877]: Database connection successful -- 20:56:11.601 INFO [1877]: _SERVER found -- 20:56:11.601 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 20:56:11.601 INFO [1877]: SERVER_NAME = oameye.works.coregrade.com -- 20:56:11.601 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=krsv6bgu0erm70r2uaqoqd1vpkbsf2jl -- 20:56:11.601 INFO [1877]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:56:11.601 INFO [1877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:56:11.612 INFO [1877]: COREGRADE is stopping... -- 20:56:11.612 DEBUG [1877]: Closing database connection -- 20:56:11.612 SQL [1877]: pgsql_close() -- 20:58:31.548 INFO [1878]: COREGRADE is starting... -- 20:58:31.548 INFO [1878]: Version from config: 1.0 -- 20:58:31.548 DEBUG [1878]: Connecting to database... -- 20:58:31.549 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:58:31.549 SQL [1878]: pgsql_db_connect() -- 20:58:31.553 DEBUG [1878]: Database connection successful -- 20:58:31.553 INFO [1878]: _SERVER found -- 20:58:31.553 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 20:58:31.553 INFO [1878]: SERVER_NAME = oameye.works.coregrade.com -- 20:58:31.553 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=krsv6bgu0erm70r2uaqoqd1vpkbsf2jl -- 20:58:31.553 INFO [1878]: QUERY_STRING = -- 20:58:31.553 INFO [1878]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:58:31.587 INFO [1878]: COREGRADE is stopping... -- 20:58:31.587 DEBUG [1878]: Closing database connection -- 20:58:31.587 SQL [1878]: pgsql_close() -- 20:58:31.699 INFO [1878]: COREGRADE is starting... -- 20:58:31.699 INFO [1878]: Version from config: 1.0 -- 20:58:31.699 DEBUG [1878]: Connecting to database... -- 20:58:31.699 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:58:31.700 SQL [1878]: pgsql_db_connect() -- 20:58:31.703 DEBUG [1878]: Database connection successful -- 20:58:31.704 INFO [1878]: _SERVER found -- 20:58:31.704 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 20:58:31.704 INFO [1878]: SERVER_NAME = oameye.works.coregrade.com -- 20:58:31.704 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=krsv6bgu0erm70r2uaqoqd1vpkbsf2jl -- 20:58:31.704 INFO [1878]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 20:58:31.704 INFO [1878]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:58:31.715 INFO [1878]: COREGRADE is stopping... -- 20:58:31.715 DEBUG [1878]: Closing database connection -- 20:58:31.715 SQL [1878]: pgsql_close() -- 20:58:31.723 INFO [1878]: COREGRADE is starting... -- 20:58:31.723 INFO [1878]: Version from config: 1.0 -- 20:58:31.723 DEBUG [1878]: Connecting to database... -- 20:58:31.723 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:58:31.723 SQL [1878]: pgsql_db_connect() -- 20:58:31.727 DEBUG [1878]: Database connection successful -- 20:58:31.727 INFO [1878]: _SERVER found -- 20:58:31.727 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 20:58:31.727 INFO [1878]: SERVER_NAME = oameye.works.coregrade.com -- 20:58:31.727 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=krsv6bgu0erm70r2uaqoqd1vpkbsf2jl -- 20:58:31.727 INFO [1878]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:58:31.727 INFO [1878]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:58:31.738 INFO [1878]: COREGRADE is stopping... -- 20:58:31.738 DEBUG [1878]: Closing database connection -- 20:58:31.738 SQL [1878]: pgsql_close() -- 20:59:11.446 INFO [1879]: COREGRADE is starting... -- 20:59:11.446 INFO [1879]: Version from config: 1.0 -- 20:59:11.446 DEBUG [1879]: Connecting to database... -- 20:59:11.446 DEBUG [1879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:59:11.446 SQL [1879]: pgsql_db_connect() -- 20:59:11.450 DEBUG [1879]: Database connection successful -- 20:59:11.450 INFO [1879]: _SERVER found -- 20:59:11.450 INFO [1879]: REMOTE_ADDR = 10.0.0.15 -- 20:59:11.450 INFO [1879]: SERVER_NAME = oameye.works.coregrade.com -- 20:59:11.450 INFO [1879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=krsv6bgu0erm70r2uaqoqd1vpkbsf2jl; _gat_gtag_UA_54829827_2=1 -- 20:59:11.450 INFO [1879]: QUERY_STRING = -- 20:59:11.450 INFO [1879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:59:11.493 INFO [1879]: COREGRADE is stopping... -- 20:59:11.493 DEBUG [1879]: Closing database connection -- 20:59:11.493 SQL [1879]: pgsql_close() -- 20:59:11.575 INFO [1879]: COREGRADE is starting... -- 20:59:11.575 INFO [1879]: Version from config: 1.0 -- 20:59:11.575 DEBUG [1879]: Connecting to database... -- 20:59:11.575 DEBUG [1879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:59:11.575 SQL [1879]: pgsql_db_connect() -- 20:59:11.579 DEBUG [1879]: Database connection successful -- 20:59:11.579 INFO [1879]: _SERVER found -- 20:59:11.579 INFO [1879]: REMOTE_ADDR = 10.0.0.15 -- 20:59:11.579 INFO [1879]: SERVER_NAME = oameye.works.coregrade.com -- 20:59:11.579 INFO [1879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=krsv6bgu0erm70r2uaqoqd1vpkbsf2jl; _gat_gtag_UA_54829827_2=1 -- 20:59:11.579 INFO [1879]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 20:59:11.579 INFO [1879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:59:11.590 INFO [1879]: COREGRADE is stopping... -- 20:59:11.590 DEBUG [1879]: Closing database connection -- 20:59:11.590 SQL [1879]: pgsql_close() -- 20:59:11.603 INFO [1879]: COREGRADE is starting... -- 20:59:11.603 INFO [1879]: Version from config: 1.0 -- 20:59:11.603 DEBUG [1879]: Connecting to database... -- 20:59:11.603 DEBUG [1879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:59:11.603 SQL [1879]: pgsql_db_connect() -- 20:59:11.607 DEBUG [1879]: Database connection successful -- 20:59:11.607 INFO [1879]: _SERVER found -- 20:59:11.607 INFO [1879]: REMOTE_ADDR = 10.0.0.15 -- 20:59:11.607 INFO [1879]: SERVER_NAME = oameye.works.coregrade.com -- 20:59:11.607 INFO [1879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=krsv6bgu0erm70r2uaqoqd1vpkbsf2jl; _gat_gtag_UA_54829827_2=1 -- 20:59:11.607 INFO [1879]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:59:11.607 INFO [1879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:59:11.618 INFO [1879]: COREGRADE is stopping... -- 20:59:11.618 DEBUG [1879]: Closing database connection -- 20:59:11.618 SQL [1879]: pgsql_close() -- 21:00:24.546 INFO [1880]: COREGRADE is starting... -- 21:00:24.546 INFO [1880]: Version from config: 1.0 -- 21:00:24.546 DEBUG [1880]: Connecting to database... -- 21:00:24.546 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:24.546 SQL [1880]: pgsql_db_connect() -- 21:00:24.550 DEBUG [1880]: Database connection successful -- 21:00:24.550 INFO [1880]: _SERVER found -- 21:00:24.550 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 21:00:24.550 INFO [1880]: SERVER_NAME = oameye.works.coregrade.com -- 21:00:24.550 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735 -- 21:00:24.550 INFO [1880]: QUERY_STRING = -- 21:00:24.550 INFO [1880]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:00:24.590 INFO [1880]: COREGRADE is stopping... -- 21:00:24.590 DEBUG [1880]: Closing database connection -- 21:00:24.590 SQL [1880]: pgsql_close() -- 21:00:25.466 INFO [1880]: COREGRADE is starting... -- 21:00:25.467 INFO [1880]: Version from config: 1.0 -- 21:00:25.467 DEBUG [1880]: Connecting to database... -- 21:00:25.467 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:25.467 SQL [1880]: pgsql_db_connect() -- 21:00:25.471 DEBUG [1880]: Database connection successful -- 21:00:25.471 INFO [1880]: _SERVER found -- 21:00:25.471 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 21:00:25.471 INFO [1880]: SERVER_NAME = oameye.works.coregrade.com -- 21:00:25.471 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=bkb7rublnddsldspbg8tiu43nk9cnkn4 -- 21:00:25.471 INFO [1880]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 21:00:25.471 INFO [1880]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:00:25.482 INFO [1880]: COREGRADE is stopping... -- 21:00:25.482 DEBUG [1880]: Closing database connection -- 21:00:25.482 SQL [1880]: pgsql_close() -- 21:00:25.503 INFO [1880]: COREGRADE is starting... -- 21:00:25.503 INFO [1880]: Version from config: 1.0 -- 21:00:25.503 DEBUG [1880]: Connecting to database... -- 21:00:25.503 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:25.503 SQL [1880]: pgsql_db_connect() -- 21:00:25.507 DEBUG [1880]: Database connection successful -- 21:00:25.507 INFO [1880]: _SERVER found -- 21:00:25.507 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 21:00:25.507 INFO [1880]: SERVER_NAME = oameye.works.coregrade.com -- 21:00:25.507 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=bkb7rublnddsldspbg8tiu43nk9cnkn4 -- 21:00:25.507 INFO [1880]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:00:25.507 INFO [1880]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:00:25.518 INFO [1880]: COREGRADE is stopping... -- 21:00:25.518 DEBUG [1880]: Closing database connection -- 21:00:25.518 SQL [1880]: pgsql_close() -- 21:00:35.591 INFO [32689]: COREGRADE is starting... -- 21:00:35.591 INFO [32689]: Version from config: 1.0 -- 21:00:35.591 DEBUG [32689]: Connecting to database... -- 21:00:35.591 DEBUG [32689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:35.592 SQL [32689]: pgsql_db_connect() -- 21:00:35.596 DEBUG [32689]: Database connection successful -- 21:00:35.596 INFO [32689]: _SERVER found -- 21:00:35.596 INFO [32689]: REMOTE_ADDR = 10.0.0.15 -- 21:00:35.596 INFO [32689]: SERVER_NAME = oameye.works.coregrade.com -- 21:00:35.596 INFO [32689]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=krsv6bgu0erm70r2uaqoqd1vpkbsf2jl -- 21:00:35.596 INFO [32689]: QUERY_STRING = -- 21:00:35.596 INFO [32689]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:00:35.634 INFO [32689]: COREGRADE is stopping... -- 21:00:35.634 DEBUG [32689]: Closing database connection -- 21:00:35.634 SQL [32689]: pgsql_close() -- 21:00:35.884 INFO [32689]: COREGRADE is starting... -- 21:00:35.884 INFO [32689]: Version from config: 1.0 -- 21:00:35.884 DEBUG [32689]: Connecting to database... -- 21:00:35.885 DEBUG [32689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:35.885 SQL [32689]: pgsql_db_connect() -- 21:00:35.889 DEBUG [32689]: Database connection successful -- 21:00:35.889 INFO [32689]: _SERVER found -- 21:00:35.889 INFO [32689]: REMOTE_ADDR = 10.0.0.15 -- 21:00:35.889 INFO [32689]: SERVER_NAME = oameye.works.coregrade.com -- 21:00:35.889 INFO [32689]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=krsv6bgu0erm70r2uaqoqd1vpkbsf2jl -- 21:00:35.889 INFO [32689]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 21:00:35.889 INFO [32689]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:00:35.900 INFO [32689]: COREGRADE is stopping... -- 21:00:35.900 DEBUG [32689]: Closing database connection -- 21:00:35.900 SQL [32689]: pgsql_close() -- 21:00:35.908 INFO [32689]: COREGRADE is starting... -- 21:00:35.909 INFO [32689]: Version from config: 1.0 -- 21:00:35.909 DEBUG [32689]: Connecting to database... -- 21:00:35.909 DEBUG [32689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:00:35.909 SQL [32689]: pgsql_db_connect() -- 21:00:35.912 DEBUG [32689]: Database connection successful -- 21:00:35.912 INFO [32689]: _SERVER found -- 21:00:35.912 INFO [32689]: REMOTE_ADDR = 10.0.0.15 -- 21:00:35.912 INFO [32689]: SERVER_NAME = oameye.works.coregrade.com -- 21:00:35.912 INFO [32689]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=krsv6bgu0erm70r2uaqoqd1vpkbsf2jl -- 21:00:35.912 INFO [32689]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:00:35.912 INFO [32689]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:00:35.923 INFO [32689]: COREGRADE is stopping... -- 21:00:35.923 DEBUG [32689]: Closing database connection -- 21:00:35.923 SQL [32689]: pgsql_close() -- 21:01:03.888 INFO [32690]: COREGRADE is starting... -- 21:01:03.888 INFO [32690]: Version from config: 1.0 -- 21:01:03.888 DEBUG [32690]: Connecting to database... -- 21:01:03.888 DEBUG [32690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:01:03.888 SQL [32690]: pgsql_db_connect() -- 21:01:03.892 DEBUG [32690]: Database connection successful -- 21:01:03.892 INFO [32690]: _SERVER found -- 21:01:03.892 INFO [32690]: REMOTE_ADDR = 10.0.0.15 -- 21:01:03.892 INFO [32690]: SERVER_NAME = oameye.works.coregrade.com -- 21:01:03.892 INFO [32690]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=krsv6bgu0erm70r2uaqoqd1vpkbsf2jl; _gat_gtag_UA_54829827_2=1 -- 21:01:03.892 INFO [32690]: QUERY_STRING = -- 21:01:03.892 INFO [32690]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:01:03.925 INFO [32690]: COREGRADE is stopping... -- 21:01:03.925 DEBUG [32690]: Closing database connection -- 21:01:03.925 SQL [32690]: pgsql_close() -- 21:01:04.069 INFO [32690]: COREGRADE is starting... -- 21:01:04.069 INFO [32690]: Version from config: 1.0 -- 21:01:04.069 DEBUG [32690]: Connecting to database... -- 21:01:04.069 DEBUG [32690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:01:04.069 SQL [32690]: pgsql_db_connect() -- 21:01:04.073 DEBUG [32690]: Database connection successful -- 21:01:04.073 INFO [32690]: _SERVER found -- 21:01:04.073 INFO [32690]: REMOTE_ADDR = 10.0.0.15 -- 21:01:04.073 INFO [32690]: SERVER_NAME = oameye.works.coregrade.com -- 21:01:04.073 INFO [32690]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=krsv6bgu0erm70r2uaqoqd1vpkbsf2jl; _gat_gtag_UA_54829827_2=1 -- 21:01:04.073 INFO [32690]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 21:01:04.073 INFO [32690]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:01:04.084 INFO [32690]: COREGRADE is stopping... -- 21:01:04.085 DEBUG [32690]: Closing database connection -- 21:01:04.085 SQL [32690]: pgsql_close() -- 21:01:04.094 INFO [32690]: COREGRADE is starting... -- 21:01:04.095 INFO [32690]: Version from config: 1.0 -- 21:01:04.095 DEBUG [32690]: Connecting to database... -- 21:01:04.095 DEBUG [32690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:01:04.095 SQL [32690]: pgsql_db_connect() -- 21:01:04.099 DEBUG [32690]: Database connection successful -- 21:01:04.099 INFO [32690]: _SERVER found -- 21:01:04.099 INFO [32690]: REMOTE_ADDR = 10.0.0.15 -- 21:01:04.099 INFO [32690]: SERVER_NAME = oameye.works.coregrade.com -- 21:01:04.099 INFO [32690]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=krsv6bgu0erm70r2uaqoqd1vpkbsf2jl; _gat_gtag_UA_54829827_2=1 -- 21:01:04.099 INFO [32690]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:01:04.099 INFO [32690]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:01:04.110 INFO [32690]: COREGRADE is stopping... -- 21:01:04.110 DEBUG [32690]: Closing database connection -- 21:01:04.110 SQL [32690]: pgsql_close() -- 21:01:26.179 INFO [1875]: COREGRADE is starting... -- 21:01:26.179 INFO [1875]: Version from config: 1.0 -- 21:01:26.179 DEBUG [1875]: Connecting to database... -- 21:01:26.179 DEBUG [1875]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:01:26.179 SQL [1875]: pgsql_db_connect() -- 21:01:26.183 DEBUG [1875]: Database connection successful -- 21:01:26.183 INFO [1875]: _SERVER found -- 21:01:26.183 INFO [1875]: REMOTE_ADDR = 10.0.0.15 -- 21:01:26.183 INFO [1875]: SERVER_NAME = oameye.works.coregrade.com -- 21:01:26.183 INFO [1875]: QUERY_STRING = -- 21:01:26.183 INFO [1875]: HTTP_X_FORWARDED_FOR = 169.197.108.6 -- 21:01:26.218 INFO [1875]: COREGRADE is stopping... -- 21:01:26.218 DEBUG [1875]: Closing database connection -- 21:01:26.218 SQL [1875]: pgsql_close() -- 21:01:51.732 INFO [1876]: COREGRADE is starting... -- 21:01:51.733 INFO [1876]: Version from config: 1.0 -- 21:01:51.733 DEBUG [1876]: Connecting to database... -- 21:01:51.733 DEBUG [1876]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:01:51.733 SQL [1876]: pgsql_db_connect() -- 21:01:51.737 DEBUG [1876]: Database connection successful -- 21:01:51.737 INFO [1876]: _SERVER found -- 21:01:51.737 INFO [1876]: REMOTE_ADDR = 10.0.0.15 -- 21:01:51.737 INFO [1876]: SERVER_NAME = oameye.works.coregrade.com -- 21:01:51.737 INFO [1876]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=krsv6bgu0erm70r2uaqoqd1vpkbsf2jl -- 21:01:51.737 INFO [1876]: QUERY_STRING = -- 21:01:51.737 INFO [1876]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:01:51.771 INFO [1876]: COREGRADE is stopping... -- 21:01:51.771 DEBUG [1876]: Closing database connection -- 21:01:51.771 SQL [1876]: pgsql_close() -- 21:01:51.882 INFO [1876]: COREGRADE is starting... -- 21:01:51.883 INFO [1876]: Version from config: 1.0 -- 21:01:51.883 DEBUG [1876]: Connecting to database... -- 21:01:51.883 DEBUG [1876]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:01:51.883 SQL [1876]: pgsql_db_connect() -- 21:01:51.887 DEBUG [1876]: Database connection successful -- 21:01:51.887 INFO [1876]: _SERVER found -- 21:01:51.887 INFO [1876]: REMOTE_ADDR = 10.0.0.15 -- 21:01:51.887 INFO [1876]: SERVER_NAME = oameye.works.coregrade.com -- 21:01:51.887 INFO [1876]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=u4b06o2t44n7r6m5846hvnjbiejg5g2a -- 21:01:51.887 INFO [1876]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 21:01:51.887 INFO [1876]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:01:51.898 INFO [1876]: COREGRADE is stopping... -- 21:01:51.898 DEBUG [1876]: Closing database connection -- 21:01:51.898 SQL [1876]: pgsql_close() -- 21:01:51.906 INFO [1876]: COREGRADE is starting... -- 21:01:51.906 INFO [1876]: Version from config: 1.0 -- 21:01:51.906 DEBUG [1876]: Connecting to database... -- 21:01:51.906 DEBUG [1876]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:01:51.906 SQL [1876]: pgsql_db_connect() -- 21:01:51.910 DEBUG [1876]: Database connection successful -- 21:01:51.910 INFO [1876]: _SERVER found -- 21:01:51.910 INFO [1876]: REMOTE_ADDR = 10.0.0.15 -- 21:01:51.910 INFO [1876]: SERVER_NAME = oameye.works.coregrade.com -- 21:01:51.910 INFO [1876]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=u4b06o2t44n7r6m5846hvnjbiejg5g2a -- 21:01:51.910 INFO [1876]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:01:51.910 INFO [1876]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:01:51.921 INFO [1876]: COREGRADE is stopping... -- 21:01:51.921 DEBUG [1876]: Closing database connection -- 21:01:51.921 SQL [1876]: pgsql_close() -- 21:03:07.732 INFO [1877]: COREGRADE is starting... -- 21:03:07.733 INFO [1877]: Version from config: 1.0 -- 21:03:07.733 DEBUG [1877]: Connecting to database... -- 21:03:07.733 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:03:07.733 SQL [1877]: pgsql_db_connect() -- 21:03:07.737 DEBUG [1877]: Database connection successful -- 21:03:07.737 INFO [1877]: _SERVER found -- 21:03:07.737 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 21:03:07.737 INFO [1877]: SERVER_NAME = oameye.works.coregrade.com -- 21:03:07.737 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=u4b06o2t44n7r6m5846hvnjbiejg5g2a -- 21:03:07.737 INFO [1877]: QUERY_STRING = -- 21:03:07.737 INFO [1877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:03:07.769 INFO [1877]: COREGRADE is stopping... -- 21:03:07.769 DEBUG [1877]: Closing database connection -- 21:03:07.769 SQL [1877]: pgsql_close() -- 21:03:07.932 INFO [1877]: COREGRADE is starting... -- 21:03:07.932 INFO [1877]: Version from config: 1.0 -- 21:03:07.932 DEBUG [1877]: Connecting to database... -- 21:03:07.932 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:03:07.932 SQL [1877]: pgsql_db_connect() -- 21:03:07.936 DEBUG [1877]: Database connection successful -- 21:03:07.936 INFO [1877]: _SERVER found -- 21:03:07.936 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 21:03:07.936 INFO [1877]: SERVER_NAME = oameye.works.coregrade.com -- 21:03:07.936 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=u4b06o2t44n7r6m5846hvnjbiejg5g2a -- 21:03:07.936 INFO [1877]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 21:03:07.936 INFO [1877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:03:07.948 INFO [1877]: COREGRADE is stopping... -- 21:03:07.948 DEBUG [1877]: Closing database connection -- 21:03:07.948 SQL [1877]: pgsql_close() -- 21:03:07.964 INFO [1877]: COREGRADE is starting... -- 21:03:07.964 INFO [1877]: Version from config: 1.0 -- 21:03:07.964 DEBUG [1877]: Connecting to database... -- 21:03:07.964 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:03:07.964 SQL [1877]: pgsql_db_connect() -- 21:03:07.968 DEBUG [1877]: Database connection successful -- 21:03:07.968 INFO [1877]: _SERVER found -- 21:03:07.968 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 21:03:07.968 INFO [1877]: SERVER_NAME = oameye.works.coregrade.com -- 21:03:07.968 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=u4b06o2t44n7r6m5846hvnjbiejg5g2a -- 21:03:07.968 INFO [1877]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:03:07.968 INFO [1877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:03:07.979 INFO [1877]: COREGRADE is stopping... -- 21:03:07.979 DEBUG [1877]: Closing database connection -- 21:03:07.979 SQL [1877]: pgsql_close() -- 21:03:08.060 INFO [1877]: COREGRADE is starting... -- 21:03:08.060 INFO [1877]: Version from config: 1.0 -- 21:03:08.060 DEBUG [1877]: Connecting to database... -- 21:03:08.060 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:03:08.060 SQL [1877]: pgsql_db_connect() -- 21:03:08.064 DEBUG [1877]: Database connection successful -- 21:03:08.064 INFO [1877]: _SERVER found -- 21:03:08.064 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 21:03:08.064 INFO [1877]: SERVER_NAME = oameye.works.coregrade.com -- 21:03:08.064 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=u4b06o2t44n7r6m5846hvnjbiejg5g2a -- 21:03:08.064 INFO [1877]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 21:03:08.064 INFO [1877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:03:08.075 INFO [1877]: COREGRADE is stopping... -- 21:03:08.075 DEBUG [1877]: Closing database connection -- 21:03:08.075 SQL [1877]: pgsql_close() -- 21:07:34.877 INFO [1878]: COREGRADE is starting... -- 21:07:34.877 INFO [1878]: Version from config: 1.0 -- 21:07:34.877 DEBUG [1878]: Connecting to database... -- 21:07:34.877 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:34.877 SQL [1878]: pgsql_db_connect() -- 21:07:34.881 DEBUG [1878]: Database connection successful -- 21:07:34.881 INFO [1878]: _SERVER found -- 21:07:34.881 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 21:07:34.881 INFO [1878]: SERVER_NAME = oameye.works.coregrade.com -- 21:07:34.881 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=u4b06o2t44n7r6m5846hvnjbiejg5g2a -- 21:07:34.881 INFO [1878]: QUERY_STRING = -- 21:07:34.881 INFO [1878]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:07:34.914 INFO [1878]: COREGRADE is stopping... -- 21:07:34.914 DEBUG [1878]: Closing database connection -- 21:07:34.914 SQL [1878]: pgsql_close() -- 21:07:35.115 INFO [1878]: COREGRADE is starting... -- 21:07:35.116 INFO [1878]: Version from config: 1.0 -- 21:07:35.116 DEBUG [1878]: Connecting to database... -- 21:07:35.116 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:35.116 SQL [1878]: pgsql_db_connect() -- 21:07:35.120 DEBUG [1878]: Database connection successful -- 21:07:35.120 INFO [1878]: _SERVER found -- 21:07:35.120 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 21:07:35.120 INFO [1878]: SERVER_NAME = oameye.works.coregrade.com -- 21:07:35.120 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=u0iga7mvcqb1ku5spa016ohdh0vrn839 -- 21:07:35.120 INFO [1878]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 21:07:35.120 INFO [1878]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:07:35.131 INFO [1878]: COREGRADE is stopping... -- 21:07:35.131 DEBUG [1878]: Closing database connection -- 21:07:35.131 SQL [1878]: pgsql_close() -- 21:07:35.140 INFO [1878]: COREGRADE is starting... -- 21:07:35.141 INFO [1878]: Version from config: 1.0 -- 21:07:35.141 DEBUG [1878]: Connecting to database... -- 21:07:35.141 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:35.141 SQL [1878]: pgsql_db_connect() -- 21:07:35.145 DEBUG [1878]: Database connection successful -- 21:07:35.145 INFO [1878]: _SERVER found -- 21:07:35.145 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 21:07:35.145 INFO [1878]: SERVER_NAME = oameye.works.coregrade.com -- 21:07:35.145 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=u0iga7mvcqb1ku5spa016ohdh0vrn839 -- 21:07:35.145 INFO [1878]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:07:35.145 INFO [1878]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:07:35.156 INFO [1878]: COREGRADE is stopping... -- 21:07:35.156 DEBUG [1878]: Closing database connection -- 21:07:35.156 SQL [1878]: pgsql_close() -- 21:07:35.174 INFO [1878]: COREGRADE is starting... -- 21:07:35.174 INFO [1878]: Version from config: 1.0 -- 21:07:35.174 DEBUG [1878]: Connecting to database... -- 21:07:35.174 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:35.174 SQL [1878]: pgsql_db_connect() -- 21:07:35.178 DEBUG [1878]: Database connection successful -- 21:07:35.178 INFO [1878]: _SERVER found -- 21:07:35.178 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 21:07:35.178 INFO [1878]: SERVER_NAME = oameye.works.coregrade.com -- 21:07:35.178 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=u0iga7mvcqb1ku5spa016ohdh0vrn839 -- 21:07:35.178 INFO [1878]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 21:07:35.178 INFO [1878]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:07:35.189 INFO [1878]: COREGRADE is stopping... -- 21:07:35.189 DEBUG [1878]: Closing database connection -- 21:07:35.189 SQL [1878]: pgsql_close() -- 21:08:20.388 INFO [1879]: COREGRADE is starting... -- 21:08:20.388 INFO [1879]: Version from config: 1.0 -- 21:08:20.388 DEBUG [1879]: Connecting to database... -- 21:08:20.388 DEBUG [1879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:08:20.388 SQL [1879]: pgsql_db_connect() -- 21:08:20.392 DEBUG [1879]: Database connection successful -- 21:08:20.392 INFO [1879]: _SERVER found -- 21:08:20.392 INFO [1879]: REMOTE_ADDR = 10.0.0.15 -- 21:08:20.392 INFO [1879]: SERVER_NAME = oameye.works.coregrade.com -- 21:08:20.392 INFO [1879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=u0iga7mvcqb1ku5spa016ohdh0vrn839; _gat_gtag_UA_54829827_2=1 -- 21:08:20.392 INFO [1879]: QUERY_STRING = -- 21:08:20.392 INFO [1879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:08:20.424 INFO [1879]: COREGRADE is stopping... -- 21:08:20.424 DEBUG [1879]: Closing database connection -- 21:08:20.424 SQL [1879]: pgsql_close() -- 21:08:20.598 INFO [1879]: COREGRADE is starting... -- 21:08:20.598 INFO [1879]: Version from config: 1.0 -- 21:08:20.598 DEBUG [1879]: Connecting to database... -- 21:08:20.599 DEBUG [1879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:08:20.599 SQL [1879]: pgsql_db_connect() -- 21:08:20.603 DEBUG [1879]: Database connection successful -- 21:08:20.603 INFO [1879]: _SERVER found -- 21:08:20.603 INFO [1879]: REMOTE_ADDR = 10.0.0.15 -- 21:08:20.603 INFO [1879]: SERVER_NAME = oameye.works.coregrade.com -- 21:08:20.603 INFO [1879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=u0iga7mvcqb1ku5spa016ohdh0vrn839; _gat_gtag_UA_54829827_2=1 -- 21:08:20.603 INFO [1879]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 21:08:20.603 INFO [1879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:08:20.614 INFO [1879]: COREGRADE is stopping... -- 21:08:20.614 DEBUG [1879]: Closing database connection -- 21:08:20.614 SQL [1879]: pgsql_close() -- 21:08:20.627 INFO [1879]: COREGRADE is starting... -- 21:08:20.627 INFO [1879]: Version from config: 1.0 -- 21:08:20.627 DEBUG [1879]: Connecting to database... -- 21:08:20.627 DEBUG [1879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:08:20.627 SQL [1879]: pgsql_db_connect() -- 21:08:20.631 DEBUG [1879]: Database connection successful -- 21:08:20.631 INFO [1879]: _SERVER found -- 21:08:20.631 INFO [1879]: REMOTE_ADDR = 10.0.0.15 -- 21:08:20.631 INFO [1879]: SERVER_NAME = oameye.works.coregrade.com -- 21:08:20.631 INFO [1879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=u0iga7mvcqb1ku5spa016ohdh0vrn839; _gat_gtag_UA_54829827_2=1 -- 21:08:20.631 INFO [1879]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:08:20.631 INFO [1879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:08:20.642 INFO [1879]: COREGRADE is stopping... -- 21:08:20.642 DEBUG [1879]: Closing database connection -- 21:08:20.642 SQL [1879]: pgsql_close() -- 21:08:20.653 INFO [1879]: COREGRADE is starting... -- 21:08:20.653 INFO [1879]: Version from config: 1.0 -- 21:08:20.653 DEBUG [1879]: Connecting to database... -- 21:08:20.653 DEBUG [1879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:08:20.653 SQL [1879]: pgsql_db_connect() -- 21:08:20.657 DEBUG [1879]: Database connection successful -- 21:08:20.657 INFO [1879]: _SERVER found -- 21:08:20.657 INFO [1879]: REMOTE_ADDR = 10.0.0.15 -- 21:08:20.657 INFO [1879]: SERVER_NAME = oameye.works.coregrade.com -- 21:08:20.657 INFO [1879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=u0iga7mvcqb1ku5spa016ohdh0vrn839; _gat_gtag_UA_54829827_2=1 -- 21:08:20.657 INFO [1879]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 21:08:20.657 INFO [1879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:08:20.668 INFO [1879]: COREGRADE is stopping... -- 21:08:20.668 DEBUG [1879]: Closing database connection -- 21:08:20.668 SQL [1879]: pgsql_close() -- 21:09:34.362 INFO [32687]: COREGRADE is starting... -- 21:09:34.362 INFO [32687]: Version from config: 1.0 -- 21:09:34.362 DEBUG [32687]: Connecting to database... -- 21:09:34.362 DEBUG [32687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:09:34.362 SQL [32687]: pgsql_db_connect() -- 21:09:34.366 DEBUG [32687]: Database connection successful -- 21:09:34.366 INFO [32687]: _SERVER found -- 21:09:34.366 INFO [32687]: REMOTE_ADDR = 10.0.0.15 -- 21:09:34.366 INFO [32687]: SERVER_NAME = oameye.works.coregrade.com -- 21:09:34.366 INFO [32687]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=u0iga7mvcqb1ku5spa016ohdh0vrn839 -- 21:09:34.366 INFO [32687]: QUERY_STRING = -- 21:09:34.366 INFO [32687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:09:34.406 INFO [32687]: COREGRADE is stopping... -- 21:09:34.406 DEBUG [32687]: Closing database connection -- 21:09:34.406 SQL [32687]: pgsql_close() -- 21:09:34.566 INFO [32687]: COREGRADE is starting... -- 21:09:34.567 INFO [32687]: Version from config: 1.0 -- 21:09:34.567 DEBUG [32687]: Connecting to database... -- 21:09:34.567 DEBUG [32687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:09:34.567 SQL [32687]: pgsql_db_connect() -- 21:09:34.571 DEBUG [32687]: Database connection successful -- 21:09:34.571 INFO [32687]: _SERVER found -- 21:09:34.571 INFO [32687]: REMOTE_ADDR = 10.0.0.15 -- 21:09:34.571 INFO [32687]: SERVER_NAME = oameye.works.coregrade.com -- 21:09:34.571 INFO [32687]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=u0iga7mvcqb1ku5spa016ohdh0vrn839 -- 21:09:34.571 INFO [32687]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 21:09:34.571 INFO [32687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:09:34.582 INFO [32687]: COREGRADE is stopping... -- 21:09:34.582 DEBUG [32687]: Closing database connection -- 21:09:34.582 SQL [32687]: pgsql_close() -- 21:09:34.593 INFO [32687]: COREGRADE is starting... -- 21:09:34.593 INFO [32687]: Version from config: 1.0 -- 21:09:34.593 DEBUG [32687]: Connecting to database... -- 21:09:34.593 DEBUG [32687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:09:34.593 SQL [32687]: pgsql_db_connect() -- 21:09:34.597 DEBUG [32687]: Database connection successful -- 21:09:34.597 INFO [32687]: _SERVER found -- 21:09:34.597 INFO [32687]: REMOTE_ADDR = 10.0.0.15 -- 21:09:34.597 INFO [32687]: SERVER_NAME = oameye.works.coregrade.com -- 21:09:34.597 INFO [32687]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=u0iga7mvcqb1ku5spa016ohdh0vrn839 -- 21:09:34.597 INFO [32687]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:09:34.597 INFO [32687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:09:34.608 INFO [32687]: COREGRADE is stopping... -- 21:09:34.608 DEBUG [32687]: Closing database connection -- 21:09:34.608 SQL [32687]: pgsql_close() -- 21:09:34.617 INFO [32687]: COREGRADE is starting... -- 21:09:34.617 INFO [32687]: Version from config: 1.0 -- 21:09:34.617 DEBUG [32687]: Connecting to database... -- 21:09:34.618 DEBUG [32687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:09:34.618 SQL [32687]: pgsql_db_connect() -- 21:09:34.621 DEBUG [32687]: Database connection successful -- 21:09:34.621 INFO [32687]: _SERVER found -- 21:09:34.621 INFO [32687]: REMOTE_ADDR = 10.0.0.15 -- 21:09:34.621 INFO [32687]: SERVER_NAME = oameye.works.coregrade.com -- 21:09:34.621 INFO [32687]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=u0iga7mvcqb1ku5spa016ohdh0vrn839 -- 21:09:34.621 INFO [32687]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 21:09:34.621 INFO [32687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:09:34.633 INFO [32687]: COREGRADE is stopping... -- 21:09:34.633 DEBUG [32687]: Closing database connection -- 21:09:34.633 SQL [32687]: pgsql_close() -- 21:10:19.991 INFO [32688]: COREGRADE is starting... -- 21:10:19.991 INFO [32688]: Version from config: 1.0 -- 21:10:19.991 DEBUG [32688]: Connecting to database... -- 21:10:19.991 DEBUG [32688]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:10:19.991 SQL [32688]: pgsql_db_connect() -- 21:10:19.995 DEBUG [32688]: Database connection successful -- 21:10:19.996 INFO [32688]: _SERVER found -- 21:10:19.996 INFO [32688]: REMOTE_ADDR = 10.0.0.15 -- 21:10:19.996 INFO [32688]: SERVER_NAME = oameye.works.coregrade.com -- 21:10:19.996 INFO [32688]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=u0iga7mvcqb1ku5spa016ohdh0vrn839; _gat_gtag_UA_54829827_2=1 -- 21:10:19.996 INFO [32688]: QUERY_STRING = -- 21:10:19.996 INFO [32688]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:10:20.028 INFO [32688]: COREGRADE is stopping... -- 21:10:20.028 DEBUG [32688]: Closing database connection -- 21:10:20.028 SQL [32688]: pgsql_close() -- 21:10:20.202 INFO [32688]: COREGRADE is starting... -- 21:10:20.202 INFO [32688]: Version from config: 1.0 -- 21:10:20.202 DEBUG [32688]: Connecting to database... -- 21:10:20.202 DEBUG [32688]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:10:20.202 SQL [32688]: pgsql_db_connect() -- 21:10:20.206 DEBUG [32688]: Database connection successful -- 21:10:20.206 INFO [32688]: _SERVER found -- 21:10:20.206 INFO [32688]: REMOTE_ADDR = 10.0.0.15 -- 21:10:20.206 INFO [32688]: SERVER_NAME = oameye.works.coregrade.com -- 21:10:20.206 INFO [32688]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=u0iga7mvcqb1ku5spa016ohdh0vrn839; _gat_gtag_UA_54829827_2=1 -- 21:10:20.206 INFO [32688]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 21:10:20.206 INFO [32688]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:10:20.217 INFO [32688]: COREGRADE is stopping... -- 21:10:20.217 DEBUG [32688]: Closing database connection -- 21:10:20.217 SQL [32688]: pgsql_close() -- 21:10:20.233 INFO [32688]: COREGRADE is starting... -- 21:10:20.233 INFO [32688]: Version from config: 1.0 -- 21:10:20.233 DEBUG [32688]: Connecting to database... -- 21:10:20.233 DEBUG [32688]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:10:20.233 SQL [32688]: pgsql_db_connect() -- 21:10:20.237 DEBUG [32688]: Database connection successful -- 21:10:20.237 INFO [32688]: _SERVER found -- 21:10:20.237 INFO [32688]: REMOTE_ADDR = 10.0.0.15 -- 21:10:20.237 INFO [32688]: SERVER_NAME = oameye.works.coregrade.com -- 21:10:20.237 INFO [32688]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=u0iga7mvcqb1ku5spa016ohdh0vrn839; _gat_gtag_UA_54829827_2=1 -- 21:10:20.237 INFO [32688]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:10:20.237 INFO [32688]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:10:20.248 INFO [32688]: COREGRADE is stopping... -- 21:10:20.248 DEBUG [32688]: Closing database connection -- 21:10:20.248 SQL [32688]: pgsql_close() -- 21:10:20.256 INFO [32688]: COREGRADE is starting... -- 21:10:20.257 INFO [32688]: Version from config: 1.0 -- 21:10:20.257 DEBUG [32688]: Connecting to database... -- 21:10:20.257 DEBUG [32688]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:10:20.257 SQL [32688]: pgsql_db_connect() -- 21:10:20.260 DEBUG [32688]: Database connection successful -- 21:10:20.260 INFO [32688]: _SERVER found -- 21:10:20.260 INFO [32688]: REMOTE_ADDR = 10.0.0.15 -- 21:10:20.260 INFO [32688]: SERVER_NAME = oameye.works.coregrade.com -- 21:10:20.260 INFO [32688]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=u0iga7mvcqb1ku5spa016ohdh0vrn839; _gat_gtag_UA_54829827_2=1 -- 21:10:20.260 INFO [32688]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 21:10:20.260 INFO [32688]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:10:20.272 INFO [32688]: COREGRADE is stopping... -- 21:10:20.272 DEBUG [32688]: Closing database connection -- 21:10:20.272 SQL [32688]: pgsql_close() -- 21:10:40.759 INFO [1880]: COREGRADE is starting... -- 21:10:40.759 INFO [1880]: Version from config: 1.0 -- 21:10:40.759 DEBUG [1880]: Connecting to database... -- 21:10:40.759 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:10:40.759 SQL [1880]: pgsql_db_connect() -- 21:10:40.763 DEBUG [1880]: Database connection successful -- 21:10:40.763 INFO [1880]: _SERVER found -- 21:10:40.763 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 21:10:40.763 INFO [1880]: SERVER_NAME = oameye.works.coregrade.com -- 21:10:40.763 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=u0iga7mvcqb1ku5spa016ohdh0vrn839; _gat_gtag_UA_54829827_2=1 -- 21:10:40.763 INFO [1880]: QUERY_STRING = /welcome/viewLogin -- 21:10:40.763 INFO [1880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:10:40.794 INFO [1880]: COREGRADE is stopping... -- 21:10:40.794 DEBUG [1880]: Closing database connection -- 21:10:40.794 SQL [1880]: pgsql_close() -- 21:11:04.059 INFO [32689]: COREGRADE is starting... -- 21:11:04.060 INFO [32689]: Version from config: 1.0 -- 21:11:04.060 DEBUG [32689]: Connecting to database... -- 21:11:04.060 DEBUG [32689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:11:04.060 SQL [32689]: pgsql_db_connect() -- 21:11:04.064 DEBUG [32689]: Database connection successful -- 21:11:04.064 INFO [32689]: _SERVER found -- 21:11:04.064 INFO [32689]: REMOTE_ADDR = 10.0.0.15 -- 21:11:04.064 INFO [32689]: SERVER_NAME = oameye.works.coregrade.com -- 21:11:04.064 INFO [32689]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=bkb7rublnddsldspbg8tiu43nk9cnkn4 -- 21:11:04.064 INFO [32689]: QUERY_STRING = -- 21:11:04.064 INFO [32689]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:11:04.096 INFO [32689]: COREGRADE is stopping... -- 21:11:04.097 DEBUG [32689]: Closing database connection -- 21:11:04.097 SQL [32689]: pgsql_close() -- 21:11:04.489 INFO [32689]: COREGRADE is starting... -- 21:11:04.489 INFO [32689]: Version from config: 1.0 -- 21:11:04.489 DEBUG [32689]: Connecting to database... -- 21:11:04.489 DEBUG [32689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:11:04.489 SQL [32689]: pgsql_db_connect() -- 21:11:04.495 INFO [1875]: COREGRADE is starting... -- 21:11:04.495 INFO [1875]: Version from config: 1.0 -- 21:11:04.495 DEBUG [1875]: Connecting to database... -- 21:11:04.495 DEBUG [1875]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:11:04.495 SQL [1875]: pgsql_db_connect() -- 21:11:04.493 DEBUG [32689]: Database connection successful -- 21:11:04.493 INFO [32689]: _SERVER found -- 21:11:04.493 INFO [32689]: REMOTE_ADDR = 10.0.0.15 -- 21:11:04.493 INFO [32689]: SERVER_NAME = oameye.works.coregrade.com -- 21:11:04.493 INFO [32689]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=j98j09c7lmko74p02ritnf90q7evbh4q -- 21:11:04.493 INFO [32689]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 21:11:04.493 INFO [32689]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:11:04.505 INFO [32689]: COREGRADE is stopping... -- 21:11:04.505 DEBUG [32689]: Closing database connection -- 21:11:04.505 SQL [32689]: pgsql_close() -- 21:11:04.499 DEBUG [1875]: Database connection successful -- 21:11:04.499 INFO [1875]: _SERVER found -- 21:11:04.499 INFO [1875]: REMOTE_ADDR = 10.0.0.15 -- 21:11:04.499 INFO [1875]: SERVER_NAME = oameye.works.coregrade.com -- 21:11:04.499 INFO [1875]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=j98j09c7lmko74p02ritnf90q7evbh4q -- 21:11:04.499 INFO [1875]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:11:04.499 INFO [1875]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:11:04.512 INFO [1875]: COREGRADE is stopping... -- 21:11:04.512 DEBUG [1875]: Closing database connection -- 21:11:04.512 SQL [1875]: pgsql_close() -- 21:11:07.206 INFO [32690]: COREGRADE is starting... -- 21:11:07.206 INFO [32690]: Version from config: 1.0 -- 21:11:07.206 DEBUG [32690]: Connecting to database... -- 21:11:07.206 DEBUG [32690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:11:07.206 SQL [32690]: pgsql_db_connect() -- 21:11:07.224 INFO [1875]: COREGRADE is starting... -- 21:11:07.224 INFO [1875]: Version from config: 1.0 -- 21:11:07.224 DEBUG [1875]: Connecting to database... -- 21:11:07.224 DEBUG [1875]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:11:07.224 SQL [1875]: pgsql_db_connect() -- 21:11:07.210 DEBUG [32690]: Database connection successful -- 21:11:07.210 INFO [32690]: _SERVER found -- 21:11:07.210 INFO [32690]: REMOTE_ADDR = 10.0.0.15 -- 21:11:07.210 INFO [32690]: SERVER_NAME = oameye.works.coregrade.com -- 21:11:07.210 INFO [32690]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=j98j09c7lmko74p02ritnf90q7evbh4q; _gat_gtag_UA_54829827_2=1 -- 21:11:07.210 INFO [32690]: QUERY_STRING = /welcome/viewLogin -- 21:11:07.210 INFO [32690]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:11:07.243 INFO [32690]: COREGRADE is stopping... -- 21:11:07.243 DEBUG [32690]: Closing database connection -- 21:11:07.243 SQL [32690]: pgsql_close() -- 21:11:07.228 DEBUG [1875]: Database connection successful -- 21:11:07.228 INFO [1875]: _SERVER found -- 21:11:07.228 INFO [1875]: REMOTE_ADDR = 10.0.0.15 -- 21:11:07.228 INFO [1875]: SERVER_NAME = oameye.works.coregrade.com -- 21:11:07.228 INFO [1875]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=j98j09c7lmko74p02ritnf90q7evbh4q; _gat_gtag_UA_54829827_2=1 -- 21:11:07.228 INFO [1875]: QUERY_STRING = /auth/newuser -- 21:11:07.228 INFO [1875]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:11:07.264 INFO [1875]: COREGRADE is stopping... -- 21:11:07.264 DEBUG [1875]: Closing database connection -- 21:11:07.264 SQL [1875]: pgsql_close() -- 21:11:07.575 INFO [1877]: COREGRADE is starting... -- 21:11:07.575 INFO [1877]: Version from config: 1.0 -- 21:11:07.575 DEBUG [1877]: Connecting to database... -- 21:11:07.575 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:11:07.575 SQL [1877]: pgsql_db_connect() -- 21:11:07.579 DEBUG [1877]: Database connection successful -- 21:11:07.579 INFO [1877]: _SERVER found -- 21:11:07.579 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 21:11:07.579 INFO [1877]: SERVER_NAME = oameye.works.coregrade.com -- 21:11:07.579 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=j98j09c7lmko74p02ritnf90q7evbh4q; _gat_gtag_UA_54829827_2=1 -- 21:11:07.579 INFO [1877]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:11:07.579 INFO [1877]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:11:07.591 INFO [1877]: COREGRADE is stopping... -- 21:11:07.591 DEBUG [1877]: Closing database connection -- 21:11:07.591 SQL [1877]: pgsql_close() -- 21:11:07.737 INFO [1877]: COREGRADE is starting... -- 21:11:07.737 INFO [1877]: Version from config: 1.0 -- 21:11:07.738 DEBUG [1877]: Connecting to database... -- 21:11:07.738 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:11:07.738 SQL [1877]: pgsql_db_connect() -- 21:11:07.742 DEBUG [1877]: Database connection successful -- 21:11:07.742 INFO [1877]: _SERVER found -- 21:11:07.742 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 21:11:07.742 INFO [1877]: SERVER_NAME = oameye.works.coregrade.com -- 21:11:07.742 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=j98j09c7lmko74p02ritnf90q7evbh4q; _gat_gtag_UA_54829827_2=1 -- 21:11:07.742 INFO [1877]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 21:11:07.742 INFO [1877]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:11:07.755 INFO [1877]: COREGRADE is stopping... -- 21:11:07.755 DEBUG [1877]: Closing database connection -- 21:11:07.755 SQL [1877]: pgsql_close() -- 21:11:09.717 INFO [1877]: COREGRADE is starting... -- 21:11:09.718 INFO [1877]: Version from config: 1.0 -- 21:11:09.718 DEBUG [1877]: Connecting to database... -- 21:11:09.718 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:11:09.718 SQL [1877]: pgsql_db_connect() -- 21:11:09.722 DEBUG [1877]: Database connection successful -- 21:11:09.722 INFO [1877]: _SERVER found -- 21:11:09.722 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 21:11:09.722 INFO [1877]: SERVER_NAME = oameye.works.coregrade.com -- 21:11:09.722 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=j98j09c7lmko74p02ritnf90q7evbh4q; _gat_gtag_UA_54829827_2=1 -- 21:11:09.722 INFO [1877]: QUERY_STRING = -- 21:11:09.722 INFO [1877]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:11:09.753 INFO [1877]: COREGRADE is stopping... -- 21:11:09.753 DEBUG [1877]: Closing database connection -- 21:11:09.753 SQL [1877]: pgsql_close() -- 21:11:12.351 INFO [1877]: COREGRADE is starting... -- 21:11:12.352 INFO [1877]: Version from config: 1.0 -- 21:11:12.352 DEBUG [1877]: Connecting to database... -- 21:11:12.352 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:11:12.352 SQL [1877]: pgsql_db_connect() -- 21:11:12.356 DEBUG [1877]: Database connection successful -- 21:11:12.356 INFO [1877]: _SERVER found -- 21:11:12.356 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 21:11:12.356 INFO [1877]: SERVER_NAME = oameye.works.coregrade.com -- 21:11:12.356 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=j98j09c7lmko74p02ritnf90q7evbh4q; _gat_gtag_UA_54829827_2=1 -- 21:11:12.356 INFO [1877]: QUERY_STRING = /auth/newuser -- 21:11:12.356 INFO [1877]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:11:12.387 INFO [1877]: COREGRADE is stopping... -- 21:11:12.387 DEBUG [1877]: Closing database connection -- 21:11:12.387 SQL [1877]: pgsql_close() -- 21:11:12.766 INFO [1879]: COREGRADE is starting... -- 21:11:12.766 INFO [1879]: Version from config: 1.0 -- 21:11:12.766 DEBUG [1879]: Connecting to database... -- 21:11:12.766 DEBUG [1879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:11:12.766 SQL [1879]: pgsql_db_connect() -- 21:11:12.770 DEBUG [1879]: Database connection successful -- 21:11:12.770 INFO [1879]: _SERVER found -- 21:11:12.770 INFO [1879]: REMOTE_ADDR = 10.0.0.15 -- 21:11:12.770 INFO [1879]: SERVER_NAME = oameye.works.coregrade.com -- 21:11:12.770 INFO [1879]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=j98j09c7lmko74p02ritnf90q7evbh4q; _gat_gtag_UA_54829827_2=1 -- 21:11:12.770 INFO [1879]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:11:12.770 INFO [1879]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:11:12.782 INFO [1879]: COREGRADE is stopping... -- 21:11:12.782 DEBUG [1879]: Closing database connection -- 21:11:12.782 SQL [1879]: pgsql_close() -- 21:11:12.813 INFO [1879]: COREGRADE is starting... -- 21:11:12.813 INFO [1879]: Version from config: 1.0 -- 21:11:12.813 DEBUG [1879]: Connecting to database... -- 21:11:12.813 DEBUG [1879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:11:12.813 SQL [1879]: pgsql_db_connect() -- 21:11:12.817 DEBUG [1879]: Database connection successful -- 21:11:12.817 INFO [1879]: _SERVER found -- 21:11:12.817 INFO [1879]: REMOTE_ADDR = 10.0.0.15 -- 21:11:12.817 INFO [1879]: SERVER_NAME = oameye.works.coregrade.com -- 21:11:12.817 INFO [1879]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=j98j09c7lmko74p02ritnf90q7evbh4q; _gat_gtag_UA_54829827_2=1 -- 21:11:12.817 INFO [1879]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 21:11:12.817 INFO [1879]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:11:12.828 INFO [1879]: COREGRADE is stopping... -- 21:11:12.828 DEBUG [1879]: Closing database connection -- 21:11:12.828 SQL [1879]: pgsql_close() -- 21:11:14.224 INFO [1877]: COREGRADE is starting... -- 21:11:14.224 INFO [1877]: Version from config: 1.0 -- 21:11:14.224 DEBUG [1877]: Connecting to database... -- 21:11:14.224 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:11:14.224 SQL [1877]: pgsql_db_connect() -- 21:11:14.228 DEBUG [1877]: Database connection successful -- 21:11:14.228 INFO [1877]: _SERVER found -- 21:11:14.228 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 21:11:14.228 INFO [1877]: SERVER_NAME = oameye.works.coregrade.com -- 21:11:14.228 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=j98j09c7lmko74p02ritnf90q7evbh4q; _gat_gtag_UA_54829827_2=1 -- 21:11:14.228 INFO [1877]: QUERY_STRING = -- 21:11:14.228 INFO [1877]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:11:14.259 INFO [1877]: COREGRADE is stopping... -- 21:11:14.259 DEBUG [1877]: Closing database connection -- 21:11:14.259 SQL [1877]: pgsql_close() -- 21:11:25.378 INFO [1880]: COREGRADE is starting... -- 21:11:25.378 INFO [1880]: Version from config: 1.0 -- 21:11:25.378 DEBUG [1880]: Connecting to database... -- 21:11:25.378 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:11:25.378 SQL [1880]: pgsql_db_connect() -- 21:11:25.382 DEBUG [1880]: Database connection successful -- 21:11:25.382 INFO [1880]: _SERVER found -- 21:11:25.382 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 21:11:25.382 INFO [1880]: SERVER_NAME = oameye.works.coregrade.com -- 21:11:25.382 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=u0iga7mvcqb1ku5spa016ohdh0vrn839 -- 21:11:25.382 INFO [1880]: QUERY_STRING = /auth -- 21:11:25.383 INFO [1880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:11:25.414 INFO [1880]: COREGRADE is stopping... -- 21:11:25.414 DEBUG [1880]: Closing database connection -- 21:11:25.414 SQL [1880]: pgsql_close() -- 21:11:25.840 INFO [1880]: COREGRADE is starting... -- 21:11:25.841 INFO [1880]: Version from config: 1.0 -- 21:11:25.841 DEBUG [1880]: Connecting to database... -- 21:11:25.841 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:11:25.841 SQL [1880]: pgsql_db_connect() -- 21:11:25.845 DEBUG [1880]: Database connection successful -- 21:11:25.845 INFO [1880]: _SERVER found -- 21:11:25.845 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 21:11:25.845 INFO [1880]: SERVER_NAME = oameye.works.coregrade.com -- 21:11:25.845 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=u0iga7mvcqb1ku5spa016ohdh0vrn839 -- 21:11:25.845 INFO [1880]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:11:25.845 INFO [1880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:11:25.856 INFO [1880]: COREGRADE is stopping... -- 21:11:25.856 DEBUG [1880]: Closing database connection -- 21:11:25.856 SQL [1880]: pgsql_close() -- 21:11:26.012 INFO [1880]: COREGRADE is starting... -- 21:11:26.012 INFO [1880]: Version from config: 1.0 -- 21:11:26.012 DEBUG [1880]: Connecting to database... -- 21:11:26.012 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:11:26.012 SQL [1880]: pgsql_db_connect() -- 21:11:26.016 DEBUG [1880]: Database connection successful -- 21:11:26.016 INFO [1880]: _SERVER found -- 21:11:26.016 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 21:11:26.016 INFO [1880]: SERVER_NAME = oameye.works.coregrade.com -- 21:11:26.016 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=u0iga7mvcqb1ku5spa016ohdh0vrn839 -- 21:11:26.016 INFO [1880]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 21:11:26.016 INFO [1880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:11:26.027 INFO [1880]: COREGRADE is stopping... -- 21:11:26.027 DEBUG [1880]: Closing database connection -- 21:11:26.027 SQL [1880]: pgsql_close() -- 21:12:40.302 INFO [7039]: COREGRADE is starting... -- 21:12:40.302 INFO [7039]: Version from config: 1.0 -- 21:12:40.302 DEBUG [7039]: Connecting to database... -- 21:12:40.302 DEBUG [7039]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:12:40.302 SQL [7039]: pgsql_db_connect() -- 21:12:40.306 DEBUG [7039]: Database connection successful -- 21:12:40.306 INFO [7039]: _SERVER found -- 21:12:40.306 INFO [7039]: REMOTE_ADDR = 10.0.0.15 -- 21:12:40.306 INFO [7039]: SERVER_NAME = oameye.works.coregrade.com -- 21:12:40.306 INFO [7039]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=j98j09c7lmko74p02ritnf90q7evbh4q -- 21:12:40.306 INFO [7039]: QUERY_STRING = -- 21:12:40.306 INFO [7039]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:12:40.351 INFO [7039]: COREGRADE is stopping... -- 21:12:40.351 DEBUG [7039]: Closing database connection -- 21:12:40.351 SQL [7039]: pgsql_close() -- 21:12:40.624 INFO [7039]: COREGRADE is starting... -- 21:12:40.624 INFO [7039]: Version from config: 1.0 -- 21:12:40.624 DEBUG [7039]: Connecting to database... -- 21:12:40.624 DEBUG [7039]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:12:40.624 SQL [7039]: pgsql_db_connect() -- 21:12:40.628 DEBUG [7039]: Database connection successful -- 21:12:40.628 INFO [7039]: _SERVER found -- 21:12:40.628 INFO [7039]: REMOTE_ADDR = 10.0.0.15 -- 21:12:40.628 INFO [7039]: SERVER_NAME = oameye.works.coregrade.com -- 21:12:40.628 INFO [7039]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=j98j09c7lmko74p02ritnf90q7evbh4q -- 21:12:40.628 INFO [7039]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 21:12:40.628 INFO [7039]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:12:40.640 INFO [7039]: COREGRADE is stopping... -- 21:12:40.640 DEBUG [7039]: Closing database connection -- 21:12:40.640 SQL [7039]: pgsql_close() -- 21:12:40.685 INFO [7039]: COREGRADE is starting... -- 21:12:40.685 INFO [7039]: Version from config: 1.0 -- 21:12:40.685 DEBUG [7039]: Connecting to database... -- 21:12:40.685 DEBUG [7039]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:12:40.685 SQL [7039]: pgsql_db_connect() -- 21:12:40.689 DEBUG [7039]: Database connection successful -- 21:12:40.689 INFO [7039]: _SERVER found -- 21:12:40.689 INFO [7039]: REMOTE_ADDR = 10.0.0.15 -- 21:12:40.689 INFO [7039]: SERVER_NAME = oameye.works.coregrade.com -- 21:12:40.689 INFO [7039]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=j98j09c7lmko74p02ritnf90q7evbh4q -- 21:12:40.689 INFO [7039]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:12:40.689 INFO [7039]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:12:40.701 INFO [7039]: COREGRADE is stopping... -- 21:12:40.701 DEBUG [7039]: Closing database connection -- 21:12:40.701 SQL [7039]: pgsql_close() -- 21:14:47.050 INFO [32689]: COREGRADE is starting... -- 21:14:47.050 INFO [32689]: Version from config: 1.0 -- 21:14:47.050 DEBUG [32689]: Connecting to database... -- 21:14:47.050 DEBUG [32689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:14:47.050 SQL [32689]: pgsql_db_connect() -- 21:14:47.055 DEBUG [32689]: Database connection successful -- 21:14:47.055 INFO [32689]: _SERVER found -- 21:14:47.055 INFO [32689]: REMOTE_ADDR = 10.0.0.15 -- 21:14:47.055 INFO [32689]: SERVER_NAME = oameye.works.coregrade.com -- 21:14:47.055 INFO [32689]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=u0iga7mvcqb1ku5spa016ohdh0vrn839 -- 21:14:47.055 INFO [32689]: QUERY_STRING = -- 21:14:47.055 INFO [32689]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:14:47.088 INFO [32689]: COREGRADE is stopping... -- 21:14:47.088 DEBUG [32689]: Closing database connection -- 21:14:47.088 SQL [32689]: pgsql_close() -- 21:14:47.254 INFO [32689]: COREGRADE is starting... -- 21:14:47.254 INFO [32689]: Version from config: 1.0 -- 21:14:47.254 DEBUG [32689]: Connecting to database... -- 21:14:47.254 DEBUG [32689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:14:47.254 SQL [32689]: pgsql_db_connect() -- 21:14:47.258 DEBUG [32689]: Database connection successful -- 21:14:47.258 INFO [32689]: _SERVER found -- 21:14:47.258 INFO [32689]: REMOTE_ADDR = 10.0.0.15 -- 21:14:47.258 INFO [32689]: SERVER_NAME = oameye.works.coregrade.com -- 21:14:47.258 INFO [32689]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=hq6eoha79v82q405kcfdihdtt4p53uih -- 21:14:47.258 INFO [32689]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 21:14:47.258 INFO [32689]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:14:47.270 INFO [32689]: COREGRADE is stopping... -- 21:14:47.270 DEBUG [32689]: Closing database connection -- 21:14:47.270 SQL [32689]: pgsql_close() -- 21:14:47.279 INFO [32689]: COREGRADE is starting... -- 21:14:47.279 INFO [32689]: Version from config: 1.0 -- 21:14:47.279 DEBUG [32689]: Connecting to database... -- 21:14:47.279 DEBUG [32689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:14:47.279 SQL [32689]: pgsql_db_connect() -- 21:14:47.283 DEBUG [32689]: Database connection successful -- 21:14:47.283 INFO [32689]: _SERVER found -- 21:14:47.283 INFO [32689]: REMOTE_ADDR = 10.0.0.15 -- 21:14:47.283 INFO [32689]: SERVER_NAME = oameye.works.coregrade.com -- 21:14:47.283 INFO [32689]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=hq6eoha79v82q405kcfdihdtt4p53uih -- 21:14:47.283 INFO [32689]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:14:47.283 INFO [32689]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:14:47.294 INFO [32689]: COREGRADE is stopping... -- 21:14:47.294 DEBUG [32689]: Closing database connection -- 21:14:47.294 SQL [32689]: pgsql_close() -- 21:14:47.360 INFO [32689]: COREGRADE is starting... -- 21:14:47.360 INFO [32689]: Version from config: 1.0 -- 21:14:47.360 DEBUG [32689]: Connecting to database... -- 21:14:47.360 DEBUG [32689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:14:47.360 SQL [32689]: pgsql_db_connect() -- 21:14:47.364 DEBUG [32689]: Database connection successful -- 21:14:47.364 INFO [32689]: _SERVER found -- 21:14:47.364 INFO [32689]: REMOTE_ADDR = 10.0.0.15 -- 21:14:47.364 INFO [32689]: SERVER_NAME = oameye.works.coregrade.com -- 21:14:47.364 INFO [32689]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=hq6eoha79v82q405kcfdihdtt4p53uih -- 21:14:47.364 INFO [32689]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 21:14:47.364 INFO [32689]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:14:47.376 INFO [32689]: COREGRADE is stopping... -- 21:14:47.376 DEBUG [32689]: Closing database connection -- 21:14:47.376 SQL [32689]: pgsql_close() -- 21:16:08.322 INFO [1878]: COREGRADE is starting... -- 21:16:08.322 INFO [1878]: Version from config: 1.0 -- 21:16:08.322 DEBUG [1878]: Connecting to database... -- 21:16:08.322 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:08.322 SQL [1878]: pgsql_db_connect() -- 21:16:08.326 DEBUG [1878]: Database connection successful -- 21:16:08.327 INFO [1878]: _SERVER found -- 21:16:08.327 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 21:16:08.327 INFO [1878]: SERVER_NAME = oameye.works.coregrade.com -- 21:16:08.327 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=hq6eoha79v82q405kcfdihdtt4p53uih -- 21:16:08.327 INFO [1878]: QUERY_STRING = -- 21:16:08.327 INFO [1878]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:08.359 INFO [1878]: COREGRADE is stopping... -- 21:16:08.359 DEBUG [1878]: Closing database connection -- 21:16:08.359 SQL [1878]: pgsql_close() -- 21:16:08.487 INFO [1878]: COREGRADE is starting... -- 21:16:08.488 INFO [1878]: Version from config: 1.0 -- 21:16:08.488 DEBUG [1878]: Connecting to database... -- 21:16:08.488 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:08.488 SQL [1878]: pgsql_db_connect() -- 21:16:08.492 DEBUG [1878]: Database connection successful -- 21:16:08.492 INFO [1878]: _SERVER found -- 21:16:08.492 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 21:16:08.492 INFO [1878]: SERVER_NAME = oameye.works.coregrade.com -- 21:16:08.492 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=hq6eoha79v82q405kcfdihdtt4p53uih -- 21:16:08.492 INFO [1878]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 21:16:08.492 INFO [1878]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:08.503 INFO [1878]: COREGRADE is stopping... -- 21:16:08.503 DEBUG [1878]: Closing database connection -- 21:16:08.503 SQL [1878]: pgsql_close() -- 21:16:08.512 INFO [1878]: COREGRADE is starting... -- 21:16:08.512 INFO [1878]: Version from config: 1.0 -- 21:16:08.512 DEBUG [1878]: Connecting to database... -- 21:16:08.512 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:08.512 SQL [1878]: pgsql_db_connect() -- 21:16:08.516 DEBUG [1878]: Database connection successful -- 21:16:08.516 INFO [1878]: _SERVER found -- 21:16:08.516 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 21:16:08.516 INFO [1878]: SERVER_NAME = oameye.works.coregrade.com -- 21:16:08.516 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=hq6eoha79v82q405kcfdihdtt4p53uih -- 21:16:08.516 INFO [1878]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:16:08.516 INFO [1878]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:08.527 INFO [1878]: COREGRADE is stopping... -- 21:16:08.527 DEBUG [1878]: Closing database connection -- 21:16:08.527 SQL [1878]: pgsql_close() -- 21:16:08.547 INFO [1878]: COREGRADE is starting... -- 21:16:08.547 INFO [1878]: Version from config: 1.0 -- 21:16:08.547 DEBUG [1878]: Connecting to database... -- 21:16:08.547 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:08.547 SQL [1878]: pgsql_db_connect() -- 21:16:08.551 DEBUG [1878]: Database connection successful -- 21:16:08.551 INFO [1878]: _SERVER found -- 21:16:08.551 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 21:16:08.551 INFO [1878]: SERVER_NAME = oameye.works.coregrade.com -- 21:16:08.551 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=hq6eoha79v82q405kcfdihdtt4p53uih -- 21:16:08.551 INFO [1878]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 21:16:08.551 INFO [1878]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:16:08.562 INFO [1878]: COREGRADE is stopping... -- 21:16:08.562 DEBUG [1878]: Closing database connection -- 21:16:08.562 SQL [1878]: pgsql_close() -- 21:17:17.034 INFO [1879]: COREGRADE is starting... -- 21:17:17.034 INFO [1879]: Version from config: 1.0 -- 21:17:17.034 DEBUG [1879]: Connecting to database... -- 21:17:17.034 DEBUG [1879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:17:17.034 SQL [1879]: pgsql_db_connect() -- 21:17:17.038 DEBUG [1879]: Database connection successful -- 21:17:17.038 INFO [1879]: _SERVER found -- 21:17:17.038 INFO [1879]: REMOTE_ADDR = 10.0.0.15 -- 21:17:17.038 INFO [1879]: SERVER_NAME = oameye.works.coregrade.com -- 21:17:17.038 INFO [1879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=hq6eoha79v82q405kcfdihdtt4p53uih -- 21:17:17.038 INFO [1879]: QUERY_STRING = -- 21:17:17.038 INFO [1879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:17:17.071 INFO [1879]: COREGRADE is stopping... -- 21:17:17.071 DEBUG [1879]: Closing database connection -- 21:17:17.071 SQL [1879]: pgsql_close() -- 21:17:17.605 INFO [1879]: COREGRADE is starting... -- 21:17:17.605 INFO [1879]: Version from config: 1.0 -- 21:17:17.605 DEBUG [1879]: Connecting to database... -- 21:17:17.605 DEBUG [1879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:17:17.605 SQL [1879]: pgsql_db_connect() -- 21:17:17.609 DEBUG [1879]: Database connection successful -- 21:17:17.609 INFO [1879]: _SERVER found -- 21:17:17.609 INFO [1879]: REMOTE_ADDR = 10.0.0.15 -- 21:17:17.609 INFO [1879]: SERVER_NAME = oameye.works.coregrade.com -- 21:17:17.609 INFO [1879]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=hq6eoha79v82q405kcfdihdtt4p53uih -- 21:17:17.609 INFO [1879]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 21:17:17.609 INFO [1879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:17:17.620 INFO [1879]: COREGRADE is stopping... -- 21:17:17.620 DEBUG [1879]: Closing database connection -- 21:17:17.620 SQL [1879]: pgsql_close() -- 21:17:38.247 INFO [1877]: COREGRADE is starting... -- 21:17:38.247 INFO [1877]: Version from config: 1.0 -- 21:17:38.247 DEBUG [1877]: Connecting to database... -- 21:17:38.247 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:17:38.247 SQL [1877]: pgsql_db_connect() -- 21:17:38.252 DEBUG [1877]: Database connection successful -- 21:17:38.252 INFO [1877]: _SERVER found -- 21:17:38.252 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 21:17:38.252 INFO [1877]: SERVER_NAME = oameye.works.coregrade.com -- 21:17:38.252 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=hq6eoha79v82q405kcfdihdtt4p53uih; _gat_gtag_UA_54829827_2=1 -- 21:17:38.252 INFO [1877]: QUERY_STRING = -- 21:17:38.252 INFO [1877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:17:38.284 INFO [1877]: COREGRADE is stopping... -- 21:17:38.284 DEBUG [1877]: Closing database connection -- 21:17:38.285 SQL [1877]: pgsql_close() -- 21:17:38.441 INFO [1877]: COREGRADE is starting... -- 21:17:38.441 INFO [1877]: Version from config: 1.0 -- 21:17:38.441 DEBUG [1877]: Connecting to database... -- 21:17:38.442 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:17:38.442 SQL [1877]: pgsql_db_connect() -- 21:17:38.446 DEBUG [1877]: Database connection successful -- 21:17:38.446 INFO [1877]: _SERVER found -- 21:17:38.446 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 21:17:38.446 INFO [1877]: SERVER_NAME = oameye.works.coregrade.com -- 21:17:38.446 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=hq6eoha79v82q405kcfdihdtt4p53uih; _gat_gtag_UA_54829827_2=1 -- 21:17:38.446 INFO [1877]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 21:17:38.446 INFO [1877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:17:38.457 INFO [1877]: COREGRADE is stopping... -- 21:17:38.457 DEBUG [1877]: Closing database connection -- 21:17:38.457 SQL [1877]: pgsql_close() -- 21:17:38.466 INFO [1877]: COREGRADE is starting... -- 21:17:38.466 INFO [1877]: Version from config: 1.0 -- 21:17:38.466 DEBUG [1877]: Connecting to database... -- 21:17:38.466 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:17:38.466 SQL [1877]: pgsql_db_connect() -- 21:17:38.470 DEBUG [1877]: Database connection successful -- 21:17:38.470 INFO [1877]: _SERVER found -- 21:17:38.470 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 21:17:38.470 INFO [1877]: SERVER_NAME = oameye.works.coregrade.com -- 21:17:38.470 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=hq6eoha79v82q405kcfdihdtt4p53uih; _gat_gtag_UA_54829827_2=1 -- 21:17:38.470 INFO [1877]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:17:38.470 INFO [1877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:17:38.481 INFO [1877]: COREGRADE is stopping... -- 21:17:38.481 DEBUG [1877]: Closing database connection -- 21:17:38.481 SQL [1877]: pgsql_close() -- 21:19:59.538 INFO [7047]: COREGRADE is starting... -- 21:19:59.538 INFO [7047]: Version from config: 1.0 -- 21:19:59.538 DEBUG [7047]: Connecting to database... -- 21:19:59.538 DEBUG [7047]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:19:59.538 SQL [7047]: pgsql_db_connect() -- 21:19:59.543 DEBUG [7047]: Database connection successful -- 21:19:59.543 INFO [7047]: _SERVER found -- 21:19:59.543 INFO [7047]: REMOTE_ADDR = 10.0.0.15 -- 21:19:59.543 INFO [7047]: SERVER_NAME = oameye.works.coregrade.com -- 21:19:59.543 INFO [7047]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561 -- 21:19:59.543 INFO [7047]: QUERY_STRING = -- 21:19:59.543 INFO [7047]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 21:19:59.588 INFO [7047]: COREGRADE is stopping... -- 21:19:59.588 DEBUG [7047]: Closing database connection -- 21:19:59.588 SQL [7047]: pgsql_close() -- 21:19:59.718 INFO [7047]: COREGRADE is starting... -- 21:19:59.718 INFO [7047]: Version from config: 1.0 -- 21:19:59.718 DEBUG [7047]: Connecting to database... -- 21:19:59.718 DEBUG [7047]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:19:59.718 SQL [7047]: pgsql_db_connect() -- 21:19:59.720 INFO [1875]: COREGRADE is starting... -- 21:19:59.720 INFO [1875]: Version from config: 1.0 -- 21:19:59.720 DEBUG [1875]: Connecting to database... -- 21:19:59.720 DEBUG [1875]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:19:59.720 SQL [1875]: pgsql_db_connect() -- 21:19:59.722 DEBUG [7047]: Database connection successful -- 21:19:59.722 INFO [7047]: _SERVER found -- 21:19:59.722 INFO [7047]: REMOTE_ADDR = 10.0.0.15 -- 21:19:59.722 INFO [7047]: SERVER_NAME = oameye.works.coregrade.com -- 21:19:59.722 INFO [7047]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=63jglgj7k9gd59k7j826nt50cgbai533 -- 21:19:59.722 INFO [7047]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 21:19:59.722 INFO [7047]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 21:19:59.735 INFO [7047]: COREGRADE is stopping... -- 21:19:59.735 DEBUG [7047]: Closing database connection -- 21:19:59.735 SQL [7047]: pgsql_close() -- 21:19:59.724 DEBUG [1875]: Database connection successful -- 21:19:59.724 INFO [1875]: _SERVER found -- 21:19:59.724 INFO [1875]: REMOTE_ADDR = 10.0.0.15 -- 21:19:59.724 INFO [1875]: SERVER_NAME = oameye.works.coregrade.com -- 21:19:59.724 INFO [1875]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=63jglgj7k9gd59k7j826nt50cgbai533 -- 21:19:59.724 INFO [1875]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:19:59.724 INFO [1875]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 21:19:59.737 INFO [1875]: COREGRADE is stopping... -- 21:19:59.737 DEBUG [1875]: Closing database connection -- 21:19:59.737 SQL [1875]: pgsql_close() -- 21:20:16.312 INFO [7039]: COREGRADE is starting... -- 21:20:16.312 INFO [7039]: Version from config: 1.0 -- 21:20:16.312 DEBUG [7039]: Connecting to database... -- 21:20:16.312 DEBUG [7039]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:20:16.312 SQL [7039]: pgsql_db_connect() -- 21:20:16.316 DEBUG [7039]: Database connection successful -- 21:20:16.316 INFO [7039]: _SERVER found -- 21:20:16.316 INFO [7039]: REMOTE_ADDR = 10.0.0.15 -- 21:20:16.316 INFO [7039]: SERVER_NAME = oameye.works.coregrade.com -- 21:20:16.316 INFO [7039]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=63jglgj7k9gd59k7j826nt50cgbai533; _gat_gtag_UA_54829827_2=1 -- 21:20:16.316 INFO [7039]: QUERY_STRING = -- 21:20:16.316 INFO [7039]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 21:20:16.351 INFO [7039]: COREGRADE is stopping... -- 21:20:16.351 DEBUG [7039]: Closing database connection -- 21:20:16.351 SQL [7039]: pgsql_close() -- 21:20:32.505 INFO [32690]: COREGRADE is starting... -- 21:20:32.505 INFO [32690]: Version from config: 1.0 -- 21:20:32.505 DEBUG [32690]: Connecting to database... -- 21:20:32.505 DEBUG [32690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:20:32.506 SQL [32690]: pgsql_db_connect() -- 21:20:32.510 DEBUG [32690]: Database connection successful -- 21:20:32.510 INFO [32690]: _SERVER found -- 21:20:32.510 INFO [32690]: REMOTE_ADDR = 10.0.0.15 -- 21:20:32.510 INFO [32690]: SERVER_NAME = oameye.works.coregrade.com -- 21:20:32.510 INFO [32690]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=63jglgj7k9gd59k7j826nt50cgbai533; _gat_gtag_UA_54829827_2=1 -- 21:20:32.510 INFO [32690]: QUERY_STRING = /auth/newuser -- 21:20:32.510 INFO [32690]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 21:20:32.542 INFO [32690]: COREGRADE is stopping... -- 21:20:32.542 DEBUG [32690]: Closing database connection -- 21:20:32.542 SQL [32690]: pgsql_close() -- 21:20:32.775 INFO [32690]: COREGRADE is starting... -- 21:20:32.776 INFO [32690]: Version from config: 1.0 -- 21:20:32.776 DEBUG [32690]: Connecting to database... -- 21:20:32.776 DEBUG [32690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:20:32.776 SQL [32690]: pgsql_db_connect() -- 21:20:32.780 DEBUG [32690]: Database connection successful -- 21:20:32.780 INFO [32690]: _SERVER found -- 21:20:32.780 INFO [32690]: REMOTE_ADDR = 10.0.0.15 -- 21:20:32.780 INFO [32690]: SERVER_NAME = oameye.works.coregrade.com -- 21:20:32.780 INFO [32690]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=63jglgj7k9gd59k7j826nt50cgbai533; _gat_gtag_UA_54829827_2=1 -- 21:20:32.780 INFO [32690]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:20:32.780 INFO [32690]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 21:20:32.791 INFO [32690]: COREGRADE is stopping... -- 21:20:32.791 DEBUG [32690]: Closing database connection -- 21:20:32.791 SQL [32690]: pgsql_close() -- 21:20:36.022 INFO [32690]: COREGRADE is starting... -- 21:20:36.022 INFO [32690]: Version from config: 1.0 -- 21:20:36.022 DEBUG [32690]: Connecting to database... -- 21:20:36.022 DEBUG [32690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:20:36.022 SQL [32690]: pgsql_db_connect() -- 21:20:36.026 DEBUG [32690]: Database connection successful -- 21:20:36.026 INFO [32690]: _SERVER found -- 21:20:36.026 INFO [32690]: REMOTE_ADDR = 10.0.0.15 -- 21:20:36.026 INFO [32690]: SERVER_NAME = oameye.works.coregrade.com -- 21:20:36.026 INFO [32690]: QUERY_STRING = -- 21:20:36.026 INFO [32690]: HTTP_X_FORWARDED_FOR = 129.146.96.33 -- 21:20:36.057 INFO [32690]: COREGRADE is stopping... -- 21:20:36.057 DEBUG [32690]: Closing database connection -- 21:20:36.057 SQL [32690]: pgsql_close() -- 21:20:39.885 INFO [32690]: COREGRADE is starting... -- 21:20:39.885 INFO [32690]: Version from config: 1.0 -- 21:20:39.885 DEBUG [32690]: Connecting to database... -- 21:20:39.885 DEBUG [32690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:20:39.885 SQL [32690]: pgsql_db_connect() -- 21:20:39.889 DEBUG [32690]: Database connection successful -- 21:20:39.889 INFO [32690]: _SERVER found -- 21:20:39.889 INFO [32690]: REMOTE_ADDR = 10.0.0.15 -- 21:20:39.889 INFO [32690]: SERVER_NAME = oameye.works.coregrade.com -- 21:20:39.889 INFO [32690]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=63jglgj7k9gd59k7j826nt50cgbai533; _gat_gtag_UA_54829827_2=1 -- 21:20:39.889 INFO [32690]: QUERY_STRING = -- 21:20:39.889 INFO [32690]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 21:20:39.921 INFO [32690]: COREGRADE is stopping... -- 21:20:39.921 DEBUG [32690]: Closing database connection -- 21:20:39.921 SQL [32690]: pgsql_close() -- 21:20:44.424 INFO [32690]: COREGRADE is starting... -- 21:20:44.424 INFO [32690]: Version from config: 1.0 -- 21:20:44.424 DEBUG [32690]: Connecting to database... -- 21:20:44.424 DEBUG [32690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:20:44.424 SQL [32690]: pgsql_db_connect() -- 21:20:44.428 DEBUG [32690]: Database connection successful -- 21:20:44.428 INFO [32690]: _SERVER found -- 21:20:44.428 INFO [32690]: REMOTE_ADDR = 10.0.0.15 -- 21:20:44.428 INFO [32690]: SERVER_NAME = oameye.works.coregrade.com -- 21:20:44.428 INFO [32690]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=63jglgj7k9gd59k7j826nt50cgbai533; _gat_gtag_UA_54829827_2=1 -- 21:20:44.428 INFO [32690]: QUERY_STRING = /auth/newuser -- 21:20:44.428 INFO [32690]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 21:20:44.459 INFO [32690]: COREGRADE is stopping... -- 21:20:44.459 DEBUG [32690]: Closing database connection -- 21:20:44.459 SQL [32690]: pgsql_close() -- 21:20:44.642 INFO [32690]: COREGRADE is starting... -- 21:20:44.642 INFO [32690]: Version from config: 1.0 -- 21:20:44.642 DEBUG [32690]: Connecting to database... -- 21:20:44.642 DEBUG [32690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:20:44.642 SQL [32690]: pgsql_db_connect() -- 21:20:44.646 DEBUG [32690]: Database connection successful -- 21:20:44.646 INFO [32690]: _SERVER found -- 21:20:44.646 INFO [32690]: REMOTE_ADDR = 10.0.0.15 -- 21:20:44.646 INFO [32690]: SERVER_NAME = oameye.works.coregrade.com -- 21:20:44.646 INFO [32690]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=63jglgj7k9gd59k7j826nt50cgbai533; _gat_gtag_UA_54829827_2=1 -- 21:20:44.646 INFO [32690]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:20:44.646 INFO [32690]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 21:20:44.658 INFO [32690]: COREGRADE is stopping... -- 21:20:44.658 DEBUG [32690]: Closing database connection -- 21:20:44.658 SQL [32690]: pgsql_close() -- 21:21:11.879 INFO [1876]: COREGRADE is starting... -- 21:21:11.880 INFO [1876]: Version from config: 1.0 -- 21:21:11.880 DEBUG [1876]: Connecting to database... -- 21:21:11.880 DEBUG [1876]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:21:11.880 SQL [1876]: pgsql_db_connect() -- 21:21:11.884 DEBUG [1876]: Database connection successful -- 21:21:11.884 INFO [1876]: _SERVER found -- 21:21:11.884 INFO [1876]: REMOTE_ADDR = 10.0.0.15 -- 21:21:11.884 INFO [1876]: SERVER_NAME = oameye.works.coregrade.com -- 21:21:11.884 INFO [1876]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=63jglgj7k9gd59k7j826nt50cgbai533 -- 21:21:11.884 INFO [1876]: QUERY_STRING = -- 21:21:11.884 INFO [1876]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 21:21:11.917 INFO [1876]: COREGRADE is stopping... -- 21:21:11.917 DEBUG [1876]: Closing database connection -- 21:21:11.917 SQL [1876]: pgsql_close() -- 21:24:33.962 INFO [32689]: COREGRADE is starting... -- 21:24:33.962 INFO [32689]: Version from config: 1.0 -- 21:24:33.962 DEBUG [32689]: Connecting to database... -- 21:24:33.962 DEBUG [32689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:24:33.962 SQL [32689]: pgsql_db_connect() -- 21:24:33.966 DEBUG [32689]: Database connection successful -- 21:24:33.966 INFO [32689]: _SERVER found -- 21:24:33.966 INFO [32689]: REMOTE_ADDR = 10.0.0.15 -- 21:24:33.966 INFO [32689]: SERVER_NAME = oameye.works.coregrade.com -- 21:24:33.966 INFO [32689]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=63jglgj7k9gd59k7j826nt50cgbai533 -- 21:24:33.966 INFO [32689]: QUERY_STRING = -- 21:24:33.966 INFO [32689]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 21:24:34.001 INFO [32689]: COREGRADE is stopping... -- 21:24:34.001 DEBUG [32689]: Closing database connection -- 21:24:34.001 SQL [32689]: pgsql_close() -- 21:24:34.152 INFO [32689]: COREGRADE is starting... -- 21:24:34.152 INFO [32689]: Version from config: 1.0 -- 21:24:34.152 DEBUG [32689]: Connecting to database... -- 21:24:34.153 DEBUG [32689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:24:34.153 SQL [32689]: pgsql_db_connect() -- 21:24:34.154 INFO [1878]: COREGRADE is starting... -- 21:24:34.155 INFO [1878]: Version from config: 1.0 -- 21:24:34.155 DEBUG [1878]: Connecting to database... -- 21:24:34.155 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:24:34.155 SQL [1878]: pgsql_db_connect() -- 21:24:34.156 DEBUG [32689]: Database connection successful -- 21:24:34.156 INFO [32689]: _SERVER found -- 21:24:34.156 INFO [32689]: REMOTE_ADDR = 10.0.0.15 -- 21:24:34.156 INFO [32689]: SERVER_NAME = oameye.works.coregrade.com -- 21:24:34.156 INFO [32689]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=63jglgj7k9gd59k7j826nt50cgbai533 -- 21:24:34.156 INFO [32689]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 21:24:34.157 INFO [32689]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 21:24:34.168 INFO [32689]: COREGRADE is stopping... -- 21:24:34.168 DEBUG [32689]: Closing database connection -- 21:24:34.168 SQL [32689]: pgsql_close() -- 21:24:34.159 DEBUG [1878]: Database connection successful -- 21:24:34.159 INFO [1878]: _SERVER found -- 21:24:34.159 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 21:24:34.159 INFO [1878]: SERVER_NAME = oameye.works.coregrade.com -- 21:24:34.159 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=63jglgj7k9gd59k7j826nt50cgbai533 -- 21:24:34.159 INFO [1878]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:24:34.159 INFO [1878]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 21:24:34.171 INFO [1878]: COREGRADE is stopping... -- 21:24:34.171 DEBUG [1878]: Closing database connection -- 21:24:34.171 SQL [1878]: pgsql_close() -- 21:24:47.213 INFO [1879]: COREGRADE is starting... -- 21:24:47.214 INFO [1879]: Version from config: 1.0 -- 21:24:47.214 DEBUG [1879]: Connecting to database... -- 21:24:47.214 DEBUG [1879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:24:47.214 SQL [1879]: pgsql_db_connect() -- 21:24:47.218 DEBUG [1879]: Database connection successful -- 21:24:47.218 INFO [1879]: _SERVER found -- 21:24:47.218 INFO [1879]: REMOTE_ADDR = 10.0.0.15 -- 21:24:47.218 INFO [1879]: SERVER_NAME = oameye.works.coregrade.com -- 21:24:47.218 INFO [1879]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=j98j09c7lmko74p02ritnf90q7evbh4q -- 21:24:47.218 INFO [1879]: QUERY_STRING = -- 21:24:47.218 INFO [1879]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:24:47.251 INFO [1879]: COREGRADE is stopping... -- 21:24:47.251 DEBUG [1879]: Closing database connection -- 21:24:47.251 SQL [1879]: pgsql_close() -- 21:25:51.187 INFO [1880]: COREGRADE is starting... -- 21:25:51.187 INFO [1880]: Version from config: 1.0 -- 21:25:51.187 DEBUG [1880]: Connecting to database... -- 21:25:51.187 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:25:51.187 SQL [1880]: pgsql_db_connect() -- 21:25:51.191 DEBUG [1880]: Database connection successful -- 21:25:51.191 INFO [1880]: _SERVER found -- 21:25:51.191 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 21:25:51.191 INFO [1880]: SERVER_NAME = oameye.works.coregrade.com -- 21:25:51.191 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=63jglgj7k9gd59k7j826nt50cgbai533 -- 21:25:51.191 INFO [1880]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 21:25:51.191 INFO [1880]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 21:25:51.204 INFO [1880]: COREGRADE is stopping... -- 21:25:51.204 DEBUG [1880]: Closing database connection -- 21:25:51.204 SQL [1880]: pgsql_close() -- 21:26:00.822 INFO [1875]: COREGRADE is starting... -- 21:26:00.822 INFO [1875]: Version from config: 1.0 -- 21:26:00.822 DEBUG [1875]: Connecting to database... -- 21:26:00.822 DEBUG [1875]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:26:00.822 SQL [1875]: pgsql_db_connect() -- 21:26:00.826 DEBUG [1875]: Database connection successful -- 21:26:00.826 INFO [1875]: _SERVER found -- 21:26:00.826 INFO [1875]: REMOTE_ADDR = 10.0.0.15 -- 21:26:00.826 INFO [1875]: SERVER_NAME = oameye.works.coregrade.com -- 21:26:00.826 INFO [1875]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=63jglgj7k9gd59k7j826nt50cgbai533 -- 21:26:00.826 INFO [1875]: QUERY_STRING = -- 21:26:00.826 INFO [1875]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 21:26:00.861 INFO [1875]: COREGRADE is stopping... -- 21:26:00.861 DEBUG [1875]: Closing database connection -- 21:26:00.861 SQL [1875]: pgsql_close() -- 21:26:01.213 INFO [1875]: COREGRADE is starting... -- 21:26:01.213 INFO [1875]: Version from config: 1.0 -- 21:26:01.213 DEBUG [1875]: Connecting to database... -- 21:26:01.213 DEBUG [1875]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:26:01.213 SQL [1875]: pgsql_db_connect() -- 21:26:01.228 INFO [7047]: COREGRADE is starting... -- 21:26:01.228 INFO [7047]: Version from config: 1.0 -- 21:26:01.228 DEBUG [7047]: Connecting to database... -- 21:26:01.228 DEBUG [7047]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:26:01.228 SQL [7047]: pgsql_db_connect() -- 21:26:01.217 DEBUG [1875]: Database connection successful -- 21:26:01.217 INFO [1875]: _SERVER found -- 21:26:01.217 INFO [1875]: REMOTE_ADDR = 10.0.0.15 -- 21:26:01.217 INFO [1875]: SERVER_NAME = oameye.works.coregrade.com -- 21:26:01.217 INFO [1875]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=h97glrd78df9fffd11u12sjadcmfu6su -- 21:26:01.217 INFO [1875]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 21:26:01.217 INFO [1875]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 21:26:01.230 INFO [1875]: COREGRADE is stopping... -- 21:26:01.230 DEBUG [1875]: Closing database connection -- 21:26:01.230 SQL [1875]: pgsql_close() -- 21:26:01.232 DEBUG [7047]: Database connection successful -- 21:26:01.232 INFO [7047]: _SERVER found -- 21:26:01.232 INFO [7047]: REMOTE_ADDR = 10.0.0.15 -- 21:26:01.232 INFO [7047]: SERVER_NAME = oameye.works.coregrade.com -- 21:26:01.232 INFO [7047]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=h97glrd78df9fffd11u12sjadcmfu6su -- 21:26:01.232 INFO [7047]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:26:01.232 INFO [7047]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 21:26:01.244 INFO [7047]: COREGRADE is stopping... -- 21:26:01.244 DEBUG [7047]: Closing database connection -- 21:26:01.244 SQL [7047]: pgsql_close() -- 21:26:01.333 INFO [7047]: COREGRADE is starting... -- 21:26:01.333 INFO [7047]: Version from config: 1.0 -- 21:26:01.333 DEBUG [7047]: Connecting to database... -- 21:26:01.333 DEBUG [7047]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:26:01.333 SQL [7047]: pgsql_db_connect() -- 21:26:01.337 DEBUG [7047]: Database connection successful -- 21:26:01.337 INFO [7047]: _SERVER found -- 21:26:01.337 INFO [7047]: REMOTE_ADDR = 10.0.0.15 -- 21:26:01.337 INFO [7047]: SERVER_NAME = oameye.works.coregrade.com -- 21:26:01.337 INFO [7047]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=h97glrd78df9fffd11u12sjadcmfu6su -- 21:26:01.337 INFO [7047]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 21:26:01.337 INFO [7047]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 21:26:01.348 INFO [7047]: COREGRADE is stopping... -- 21:26:01.348 DEBUG [7047]: Closing database connection -- 21:26:01.348 SQL [7047]: pgsql_close() -- 21:26:55.065 INFO [7039]: COREGRADE is starting... -- 21:26:55.066 INFO [7039]: Version from config: 1.0 -- 21:26:55.066 DEBUG [7039]: Connecting to database... -- 21:26:55.066 DEBUG [7039]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:26:55.066 SQL [7039]: pgsql_db_connect() -- 21:26:55.070 DEBUG [7039]: Database connection successful -- 21:26:55.070 INFO [7039]: _SERVER found -- 21:26:55.070 INFO [7039]: REMOTE_ADDR = 10.0.0.15 -- 21:26:55.070 INFO [7039]: SERVER_NAME = oameye.works.coregrade.com -- 21:26:55.070 INFO [7039]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=pi7csucr0ec4dsgt2jtnevng4ndfjfmf -- 21:26:55.070 INFO [7039]: QUERY_STRING = -- 21:26:55.070 INFO [7039]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:26:55.105 INFO [7039]: COREGRADE is stopping... -- 21:26:55.105 DEBUG [7039]: Closing database connection -- 21:26:55.105 SQL [7039]: pgsql_close() -- 21:26:55.502 INFO [7039]: COREGRADE is starting... -- 21:26:55.502 INFO [7039]: Version from config: 1.0 -- 21:26:55.502 DEBUG [7039]: Connecting to database... -- 21:26:55.502 DEBUG [7039]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:26:55.502 SQL [7039]: pgsql_db_connect() -- 21:26:55.506 DEBUG [7039]: Database connection successful -- 21:26:55.506 INFO [7039]: _SERVER found -- 21:26:55.506 INFO [7039]: REMOTE_ADDR = 10.0.0.15 -- 21:26:55.506 INFO [7039]: SERVER_NAME = oameye.works.coregrade.com -- 21:26:55.506 INFO [7039]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=pi7csucr0ec4dsgt2jtnevng4ndfjfmf -- 21:26:55.506 INFO [7039]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:26:55.506 INFO [7039]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:26:55.518 INFO [7039]: COREGRADE is stopping... -- 21:26:55.518 DEBUG [7039]: Closing database connection -- 21:26:55.518 SQL [7039]: pgsql_close() -- 21:30:09.376 INFO [1876]: COREGRADE is starting... -- 21:30:09.376 INFO [1876]: Version from config: 1.0 -- 21:30:09.376 DEBUG [1876]: Connecting to database... -- 21:30:09.376 DEBUG [1876]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:30:09.376 SQL [1876]: pgsql_db_connect() -- 21:30:09.380 DEBUG [1876]: Database connection successful -- 21:30:09.380 INFO [1876]: _SERVER found -- 21:30:09.380 INFO [1876]: REMOTE_ADDR = 10.0.0.15 -- 21:30:09.380 INFO [1876]: SERVER_NAME = oameye.works.coregrade.com -- 21:30:09.380 INFO [1876]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=pi7csucr0ec4dsgt2jtnevng4ndfjfmf -- 21:30:09.380 INFO [1876]: QUERY_STRING = -- 21:30:09.380 INFO [1876]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:30:09.414 INFO [1876]: COREGRADE is stopping... -- 21:30:09.414 DEBUG [1876]: Closing database connection -- 21:30:09.414 SQL [1876]: pgsql_close() -- 21:30:09.733 INFO [1876]: COREGRADE is starting... -- 21:30:09.734 INFO [1876]: Version from config: 1.0 -- 21:30:09.734 DEBUG [1876]: Connecting to database... -- 21:30:09.734 DEBUG [1876]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:30:09.734 SQL [1876]: pgsql_db_connect() -- 21:30:09.738 DEBUG [1876]: Database connection successful -- 21:30:09.738 INFO [1876]: _SERVER found -- 21:30:09.738 INFO [1876]: REMOTE_ADDR = 10.0.0.15 -- 21:30:09.738 INFO [1876]: SERVER_NAME = oameye.works.coregrade.com -- 21:30:09.738 INFO [1876]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=ktttbtnogv6df2ubb88ci8d0c1soaq6e -- 21:30:09.738 INFO [1876]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:30:09.738 INFO [1876]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:30:09.750 INFO [1876]: COREGRADE is stopping... -- 21:30:09.750 DEBUG [1876]: Closing database connection -- 21:30:09.750 SQL [1876]: pgsql_close() -- 21:31:16.789 INFO [7047]: COREGRADE is starting... -- 21:31:16.789 INFO [7047]: Version from config: 1.0 -- 21:31:16.789 DEBUG [7047]: Connecting to database... -- 21:31:16.789 DEBUG [7047]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:31:16.789 SQL [7047]: pgsql_db_connect() -- 21:31:16.793 DEBUG [7047]: Database connection successful -- 21:31:16.793 INFO [7047]: _SERVER found -- 21:31:16.793 INFO [7047]: REMOTE_ADDR = 10.0.0.15 -- 21:31:16.793 INFO [7047]: SERVER_NAME = oameye.works.coregrade.com -- 21:31:16.793 INFO [7047]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371 -- 21:31:16.793 INFO [7047]: QUERY_STRING = -- 21:31:16.793 INFO [7047]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:31:16.833 INFO [7047]: COREGRADE is stopping... -- 21:31:16.833 DEBUG [7047]: Closing database connection -- 21:31:16.833 SQL [7047]: pgsql_close() -- 21:31:17.324 INFO [7047]: COREGRADE is starting... -- 21:31:17.324 INFO [7047]: Version from config: 1.0 -- 21:31:17.324 DEBUG [7047]: Connecting to database... -- 21:31:17.324 DEBUG [7047]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:31:17.324 SQL [7047]: pgsql_db_connect() -- 21:31:17.328 DEBUG [7047]: Database connection successful -- 21:31:17.328 INFO [7047]: _SERVER found -- 21:31:17.328 INFO [7047]: REMOTE_ADDR = 10.0.0.15 -- 21:31:17.328 INFO [7047]: SERVER_NAME = oameye.works.coregrade.com -- 21:31:17.328 INFO [7047]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; ci_session=ttvgkabj6a0huiai32q85cbinpca7nfj -- 21:31:17.328 INFO [7047]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:31:17.328 INFO [7047]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:31:17.340 INFO [7047]: COREGRADE is stopping... -- 21:31:17.340 DEBUG [7047]: Closing database connection -- 21:31:17.340 SQL [7047]: pgsql_close() -- 21:33:30.425 INFO [32690]: COREGRADE is starting... -- 21:33:30.426 INFO [32690]: Version from config: 1.0 -- 21:33:30.426 DEBUG [32690]: Connecting to database... -- 21:33:30.426 DEBUG [32690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:33:30.426 SQL [32690]: pgsql_db_connect() -- 21:33:30.430 DEBUG [32690]: Database connection successful -- 21:33:30.430 INFO [32690]: _SERVER found -- 21:33:30.430 INFO [32690]: REMOTE_ADDR = 10.0.0.15 -- 21:33:30.430 INFO [32690]: SERVER_NAME = oameye.works.coregrade.com -- 21:33:30.430 INFO [32690]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=ktttbtnogv6df2ubb88ci8d0c1soaq6e -- 21:33:30.430 INFO [32690]: QUERY_STRING = -- 21:33:30.430 INFO [32690]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:33:30.462 INFO [32690]: COREGRADE is stopping... -- 21:33:30.462 DEBUG [32690]: Closing database connection -- 21:33:30.462 SQL [32690]: pgsql_close() -- 21:33:30.775 INFO [1878]: COREGRADE is starting... -- 21:33:30.775 INFO [1878]: Version from config: 1.0 -- 21:33:30.775 DEBUG [1878]: Connecting to database... -- 21:33:30.775 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:33:30.775 SQL [1878]: pgsql_db_connect() -- 21:33:30.779 DEBUG [1878]: Database connection successful -- 21:33:30.779 INFO [1878]: _SERVER found -- 21:33:30.779 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 21:33:30.779 INFO [1878]: SERVER_NAME = oameye.works.coregrade.com -- 21:33:30.779 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=ktttbtnogv6df2ubb88ci8d0c1soaq6e -- 21:33:30.779 INFO [1878]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:33:30.779 INFO [1878]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:33:30.791 INFO [1878]: COREGRADE is stopping... -- 21:33:30.791 DEBUG [1878]: Closing database connection -- 21:33:30.791 SQL [1878]: pgsql_close() -- 21:33:43.833 INFO [1880]: COREGRADE is starting... -- 21:33:43.833 INFO [1880]: Version from config: 1.0 -- 21:33:43.833 DEBUG [1880]: Connecting to database... -- 21:33:43.833 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:33:43.833 SQL [1880]: pgsql_db_connect() -- 21:33:43.837 DEBUG [1880]: Database connection successful -- 21:33:43.837 INFO [1880]: _SERVER found -- 21:33:43.837 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 21:33:43.837 INFO [1880]: SERVER_NAME = oameye.works.coregrade.com -- 21:33:43.837 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; ci_session=ttvgkabj6a0huiai32q85cbinpca7nfj; _gid=GA1.2.120824816.1586655078 -- 21:33:43.837 INFO [1880]: QUERY_STRING = -- 21:33:43.837 INFO [1880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:33:43.870 INFO [1880]: COREGRADE is stopping... -- 21:33:43.870 DEBUG [1880]: Closing database connection -- 21:33:43.870 SQL [1880]: pgsql_close() -- 21:33:46.453 INFO [1880]: COREGRADE is starting... -- 21:33:46.454 INFO [1880]: Version from config: 1.0 -- 21:33:46.454 DEBUG [1880]: Connecting to database... -- 21:33:46.454 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:33:46.454 SQL [1880]: pgsql_db_connect() -- 21:33:46.458 DEBUG [1880]: Database connection successful -- 21:33:46.458 INFO [1880]: _SERVER found -- 21:33:46.458 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 21:33:46.458 INFO [1880]: SERVER_NAME = oameye.works.coregrade.com -- 21:33:46.458 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; ci_session=ttvgkabj6a0huiai32q85cbinpca7nfj; _gid=GA1.2.120824816.1586655078; _gat_gtag_UA_54829827_2=1 -- 21:33:46.458 INFO [1880]: QUERY_STRING = -- 21:33:46.458 INFO [1880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:33:46.489 INFO [1880]: COREGRADE is stopping... -- 21:33:46.489 DEBUG [1880]: Closing database connection -- 21:33:46.489 SQL [1880]: pgsql_close() -- 21:34:31.833 INFO [1877]: COREGRADE is starting... -- 21:34:31.833 INFO [1877]: Version from config: 1.0 -- 21:34:31.833 DEBUG [1877]: Connecting to database... -- 21:34:31.833 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:34:31.833 SQL [1877]: pgsql_db_connect() -- 21:34:31.837 DEBUG [1877]: Database connection successful -- 21:34:31.837 INFO [1877]: _SERVER found -- 21:34:31.837 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 21:34:31.837 INFO [1877]: SERVER_NAME = oameye.works.coregrade.com -- 21:34:31.837 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699 -- 21:34:31.837 INFO [1877]: QUERY_STRING = -- 21:34:31.837 INFO [1877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:34:31.870 INFO [1877]: COREGRADE is stopping... -- 21:34:31.870 DEBUG [1877]: Closing database connection -- 21:34:31.870 SQL [1877]: pgsql_close() -- 21:34:32.927 INFO [1877]: COREGRADE is starting... -- 21:34:32.927 INFO [1877]: Version from config: 1.0 -- 21:34:32.927 DEBUG [1877]: Connecting to database... -- 21:34:32.927 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:34:32.927 SQL [1877]: pgsql_db_connect() -- 21:34:32.932 DEBUG [1877]: Database connection successful -- 21:34:32.932 INFO [1877]: _SERVER found -- 21:34:32.932 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 21:34:32.932 INFO [1877]: SERVER_NAME = oameye.works.coregrade.com -- 21:34:32.932 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=7dshasskcn51j4fpu6ts2hts1fpq81v9; _gid=GA1.2.36663248.1586655275 -- 21:34:32.932 INFO [1877]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:34:32.932 INFO [1877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:34:32.943 INFO [1877]: COREGRADE is stopping... -- 21:34:32.943 DEBUG [1877]: Closing database connection -- 21:34:32.943 SQL [1877]: pgsql_close() -- 21:35:15.243 INFO [1876]: COREGRADE is starting... -- 21:35:15.244 INFO [1876]: Version from config: 1.0 -- 21:35:15.244 DEBUG [1876]: Connecting to database... -- 21:35:15.244 DEBUG [1876]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:35:15.244 SQL [1876]: pgsql_db_connect() -- 21:35:15.248 DEBUG [1876]: Database connection successful -- 21:35:15.248 INFO [1876]: _SERVER found -- 21:35:15.248 INFO [1876]: REMOTE_ADDR = 10.0.0.15 -- 21:35:15.248 INFO [1876]: SERVER_NAME = oameye.works.coregrade.com -- 21:35:15.248 INFO [1876]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 21:35:15.248 INFO [1876]: QUERY_STRING = -- 21:35:15.248 INFO [1876]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:35:15.280 INFO [1876]: COREGRADE is stopping... -- 21:35:15.280 DEBUG [1876]: Closing database connection -- 21:35:15.280 SQL [1876]: pgsql_close() -- 21:38:21.281 INFO [7039]: COREGRADE is starting... -- 21:38:21.282 INFO [7039]: Version from config: 1.0 -- 21:38:21.282 DEBUG [7039]: Connecting to database... -- 21:38:21.282 DEBUG [7039]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:38:21.282 SQL [7039]: pgsql_db_connect() -- 21:38:21.286 DEBUG [7039]: Database connection successful -- 21:38:21.286 INFO [7039]: _SERVER found -- 21:38:21.286 INFO [7039]: REMOTE_ADDR = 10.0.0.15 -- 21:38:21.286 INFO [7039]: SERVER_NAME = oameye.works.coregrade.com -- 21:38:21.286 INFO [7039]: HTTP_COOKIE = ci_session=cmjgcpnfrmd414ailjflgluvcp8v9979; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 21:38:21.286 INFO [7039]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:38:21.286 INFO [7039]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:38:21.299 INFO [7039]: COREGRADE is stopping... -- 21:38:21.299 DEBUG [7039]: Closing database connection -- 21:38:21.299 SQL [7039]: pgsql_close() -- 21:38:58.690 INFO [32690]: COREGRADE is starting... -- 21:38:58.691 INFO [32690]: Version from config: 1.0 -- 21:38:58.691 DEBUG [32690]: Connecting to database... -- 21:38:58.691 DEBUG [32690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:38:58.691 SQL [32690]: pgsql_db_connect() -- 21:38:58.695 DEBUG [32690]: Database connection successful -- 21:38:58.695 INFO [32690]: _SERVER found -- 21:38:58.695 INFO [32690]: REMOTE_ADDR = 10.0.0.15 -- 21:38:58.695 INFO [32690]: SERVER_NAME = oameye.works.coregrade.com -- 21:38:58.695 INFO [32690]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=7dshasskcn51j4fpu6ts2hts1fpq81v9; _gid=GA1.2.36663248.1586655275 -- 21:38:58.695 INFO [32690]: QUERY_STRING = /auth -- 21:38:58.695 INFO [32690]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:38:58.728 INFO [32690]: COREGRADE is stopping... -- 21:38:58.728 DEBUG [32690]: Closing database connection -- 21:38:58.728 SQL [32690]: pgsql_close() -- 21:38:58.743 INFO [32690]: COREGRADE is starting... -- 21:38:58.743 INFO [32690]: Version from config: 1.0 -- 21:38:58.743 DEBUG [32690]: Connecting to database... -- 21:38:58.743 DEBUG [32690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:38:58.743 SQL [32690]: pgsql_db_connect() -- 21:38:58.747 DEBUG [32690]: Database connection successful -- 21:38:58.747 INFO [32690]: _SERVER found -- 21:38:58.747 INFO [32690]: REMOTE_ADDR = 10.0.0.15 -- 21:38:58.747 INFO [32690]: SERVER_NAME = oameye.works.coregrade.com -- 21:38:58.747 INFO [32690]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=7dshasskcn51j4fpu6ts2hts1fpq81v9; _gid=GA1.2.36663248.1586655275 -- 21:38:58.747 INFO [32690]: QUERY_STRING = /welcome/viewLogin -- 21:38:58.747 INFO [32690]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:38:58.777 INFO [32690]: COREGRADE is stopping... -- 21:38:58.777 DEBUG [32690]: Closing database connection -- 21:38:58.777 SQL [32690]: pgsql_close() -- 21:39:10.566 INFO [7197]: COREGRADE is starting... -- 21:39:10.566 INFO [7197]: Version from config: 1.0 -- 21:39:10.566 DEBUG [7197]: Connecting to database... -- 21:39:10.566 DEBUG [7197]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:39:10.566 SQL [7197]: pgsql_db_connect() -- 21:39:10.570 DEBUG [7197]: Database connection successful -- 21:39:10.570 INFO [7197]: _SERVER found -- 21:39:10.570 INFO [7197]: REMOTE_ADDR = 10.0.0.15 -- 21:39:10.570 INFO [7197]: SERVER_NAME = oameye.works.coregrade.com -- 21:39:10.570 INFO [7197]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=7dshasskcn51j4fpu6ts2hts1fpq81v9; _gid=GA1.2.36663248.1586655275 -- 21:39:10.570 INFO [7197]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:39:10.570 INFO [7197]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:39:10.585 INFO [7197]: COREGRADE is stopping... -- 21:39:10.585 DEBUG [7197]: Closing database connection -- 21:39:10.585 SQL [7197]: pgsql_close() -- 21:39:58.463 INFO [1878]: COREGRADE is starting... -- 21:39:58.464 INFO [1878]: Version from config: 1.0 -- 21:39:58.464 DEBUG [1878]: Connecting to database... -- 21:39:58.464 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:39:58.464 SQL [1878]: pgsql_db_connect() -- 21:39:58.468 DEBUG [1878]: Database connection successful -- 21:39:58.468 INFO [1878]: _SERVER found -- 21:39:58.468 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 21:39:58.468 INFO [1878]: SERVER_NAME = oameye.works.coregrade.com -- 21:39:58.468 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; ci_session=ttvgkabj6a0huiai32q85cbinpca7nfj; _gid=GA1.2.120824816.1586655078 -- 21:39:58.468 INFO [1878]: QUERY_STRING = /auth -- 21:39:58.468 INFO [1878]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:39:58.502 INFO [1878]: COREGRADE is stopping... -- 21:39:58.503 DEBUG [1878]: Closing database connection -- 21:39:58.503 SQL [1878]: pgsql_close() -- 21:39:59.038 INFO [1878]: COREGRADE is starting... -- 21:39:59.038 INFO [1878]: Version from config: 1.0 -- 21:39:59.038 DEBUG [1878]: Connecting to database... -- 21:39:59.038 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:39:59.038 SQL [1878]: pgsql_db_connect() -- 21:39:59.042 DEBUG [1878]: Database connection successful -- 21:39:59.042 INFO [1878]: _SERVER found -- 21:39:59.042 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 21:39:59.042 INFO [1878]: SERVER_NAME = oameye.works.coregrade.com -- 21:39:59.042 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; _gid=GA1.2.120824816.1586655078; ci_session=j4hhkuanvnccoipsbf5rhu9rohrf34do -- 21:39:59.042 INFO [1878]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:39:59.042 INFO [1878]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:39:59.053 INFO [1878]: COREGRADE is stopping... -- 21:39:59.053 DEBUG [1878]: Closing database connection -- 21:39:59.053 SQL [1878]: pgsql_close() -- 21:40:46.182 INFO [1880]: COREGRADE is starting... -- 21:40:46.182 INFO [1880]: Version from config: 1.0 -- 21:40:46.182 DEBUG [1880]: Connecting to database... -- 21:40:46.182 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:40:46.182 SQL [1880]: pgsql_db_connect() -- 21:40:46.187 DEBUG [1880]: Database connection successful -- 21:40:46.187 INFO [1880]: _SERVER found -- 21:40:46.187 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 21:40:46.187 INFO [1880]: SERVER_NAME = oameye.works.coregrade.com -- 21:40:46.187 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=7dshasskcn51j4fpu6ts2hts1fpq81v9; _gid=GA1.2.36663248.1586655275 -- 21:40:46.187 INFO [1880]: QUERY_STRING = /auth -- 21:40:46.187 INFO [1880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:40:46.220 INFO [1880]: COREGRADE is stopping... -- 21:40:46.220 DEBUG [1880]: Closing database connection -- 21:40:46.220 SQL [1880]: pgsql_close() -- 21:40:48.229 INFO [1880]: COREGRADE is starting... -- 21:40:48.229 INFO [1880]: Version from config: 1.0 -- 21:40:48.229 DEBUG [1880]: Connecting to database... -- 21:40:48.229 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:40:48.229 SQL [1880]: pgsql_db_connect() -- 21:40:48.233 DEBUG [1880]: Database connection successful -- 21:40:48.233 INFO [1880]: _SERVER found -- 21:40:48.233 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 21:40:48.233 INFO [1880]: SERVER_NAME = oameye.works.coregrade.com -- 21:40:48.233 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=ktttbtnogv6df2ubb88ci8d0c1soaq6e -- 21:40:48.233 INFO [1880]: QUERY_STRING = /auth -- 21:40:48.233 INFO [1880]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:40:48.265 INFO [1880]: COREGRADE is stopping... -- 21:40:48.265 DEBUG [1880]: Closing database connection -- 21:40:48.265 SQL [1880]: pgsql_close() -- 21:40:48.763 INFO [1880]: COREGRADE is starting... -- 21:40:48.764 INFO [1880]: Version from config: 1.0 -- 21:40:48.764 DEBUG [1880]: Connecting to database... -- 21:40:48.764 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:40:48.764 SQL [1880]: pgsql_db_connect() -- 21:40:48.768 DEBUG [1880]: Database connection successful -- 21:40:48.768 INFO [1880]: _SERVER found -- 21:40:48.768 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 21:40:48.768 INFO [1880]: SERVER_NAME = oameye.works.coregrade.com -- 21:40:48.768 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=pvtic7ndda6a87q8qm5hlk9a975k2ci1 -- 21:40:48.768 INFO [1880]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:40:48.768 INFO [1880]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:40:48.779 INFO [1880]: COREGRADE is stopping... -- 21:40:48.779 DEBUG [1880]: Closing database connection -- 21:40:48.779 SQL [1880]: pgsql_close() -- 21:40:48.965 INFO [1880]: COREGRADE is starting... -- 21:40:48.965 INFO [1880]: Version from config: 1.0 -- 21:40:48.965 DEBUG [1880]: Connecting to database... -- 21:40:48.965 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:40:48.965 SQL [1880]: pgsql_db_connect() -- 21:40:48.969 DEBUG [1880]: Database connection successful -- 21:40:48.969 INFO [1880]: _SERVER found -- 21:40:48.969 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 21:40:48.969 INFO [1880]: SERVER_NAME = oameye.works.coregrade.com -- 21:40:48.969 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=pvtic7ndda6a87q8qm5hlk9a975k2ci1 -- 21:40:48.969 INFO [1880]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 21:40:48.969 INFO [1880]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:40:48.980 INFO [1880]: COREGRADE is stopping... -- 21:40:48.980 DEBUG [1880]: Closing database connection -- 21:40:48.980 SQL [1880]: pgsql_close() -- 21:41:31.557 INFO [1876]: COREGRADE is starting... -- 21:41:31.557 INFO [1876]: Version from config: 1.0 -- 21:41:31.557 DEBUG [1876]: Connecting to database... -- 21:41:31.557 DEBUG [1876]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:41:31.557 SQL [1876]: pgsql_db_connect() -- 21:41:31.561 DEBUG [1876]: Database connection successful -- 21:41:31.561 INFO [1876]: _SERVER found -- 21:41:31.561 INFO [1876]: REMOTE_ADDR = 10.0.0.15 -- 21:41:31.561 INFO [1876]: SERVER_NAME = oameye.works.coregrade.com -- 21:41:31.561 INFO [1876]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=c6uvikeiqqge78dmlvvqrvj8uvgt4tgq -- 21:41:31.561 INFO [1876]: QUERY_STRING = /auth -- 21:41:31.561 INFO [1876]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:41:31.594 INFO [1876]: COREGRADE is stopping... -- 21:41:31.594 DEBUG [1876]: Closing database connection -- 21:41:31.594 SQL [1876]: pgsql_close() -- 21:41:34.226 INFO [1876]: COREGRADE is starting... -- 21:41:34.227 INFO [1876]: Version from config: 1.0 -- 21:41:34.227 DEBUG [1876]: Connecting to database... -- 21:41:34.227 DEBUG [1876]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:41:34.227 SQL [1876]: pgsql_db_connect() -- 21:41:34.231 DEBUG [1876]: Database connection successful -- 21:41:34.231 INFO [1876]: _SERVER found -- 21:41:34.231 INFO [1876]: REMOTE_ADDR = 10.0.0.15 -- 21:41:34.231 INFO [1876]: SERVER_NAME = oameye.works.coregrade.com -- 21:41:34.231 INFO [1876]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=pvtic7ndda6a87q8qm5hlk9a975k2ci1 -- 21:41:34.231 INFO [1876]: QUERY_STRING = /auth -- 21:41:34.231 INFO [1876]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:41:34.262 INFO [1876]: COREGRADE is stopping... -- 21:41:34.262 DEBUG [1876]: Closing database connection -- 21:41:34.262 SQL [1876]: pgsql_close() -- 21:41:34.640 INFO [7047]: COREGRADE is starting... -- 21:41:34.640 INFO [7047]: Version from config: 1.0 -- 21:41:34.640 DEBUG [7047]: Connecting to database... -- 21:41:34.640 DEBUG [7047]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:41:34.640 SQL [7047]: pgsql_db_connect() -- 21:41:34.644 DEBUG [7047]: Database connection successful -- 21:41:34.644 INFO [7047]: _SERVER found -- 21:41:34.644 INFO [7047]: REMOTE_ADDR = 10.0.0.15 -- 21:41:34.644 INFO [7047]: SERVER_NAME = oameye.works.coregrade.com -- 21:41:34.644 INFO [7047]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=pvtic7ndda6a87q8qm5hlk9a975k2ci1 -- 21:41:34.644 INFO [7047]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:41:34.644 INFO [7047]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:41:34.656 INFO [7047]: COREGRADE is stopping... -- 21:41:34.656 DEBUG [7047]: Closing database connection -- 21:41:34.656 SQL [7047]: pgsql_close() -- 21:42:56.210 INFO [7039]: COREGRADE is starting... -- 21:42:56.210 INFO [7039]: Version from config: 1.0 -- 21:42:56.210 DEBUG [7039]: Connecting to database... -- 21:42:56.210 DEBUG [7039]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:42:56.210 SQL [7039]: pgsql_db_connect() -- 21:42:56.215 DEBUG [7039]: Database connection successful -- 21:42:56.215 INFO [7039]: _SERVER found -- 21:42:56.215 INFO [7039]: REMOTE_ADDR = 10.0.0.15 -- 21:42:56.215 INFO [7039]: SERVER_NAME = oameye.works.coregrade.com -- 21:42:56.215 INFO [7039]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=pvtic7ndda6a87q8qm5hlk9a975k2ci1 -- 21:42:56.215 INFO [7039]: QUERY_STRING = /auth -- 21:42:56.215 INFO [7039]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:42:56.252 INFO [7039]: COREGRADE is stopping... -- 21:42:56.252 DEBUG [7039]: Closing database connection -- 21:42:56.252 SQL [7039]: pgsql_close() -- 21:42:56.553 INFO [7039]: COREGRADE is starting... -- 21:42:56.553 INFO [7039]: Version from config: 1.0 -- 21:42:56.553 DEBUG [7039]: Connecting to database... -- 21:42:56.553 DEBUG [7039]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:42:56.553 SQL [7039]: pgsql_db_connect() -- 21:42:56.557 DEBUG [7039]: Database connection successful -- 21:42:56.557 INFO [7039]: _SERVER found -- 21:42:56.557 INFO [7039]: REMOTE_ADDR = 10.0.0.15 -- 21:42:56.557 INFO [7039]: SERVER_NAME = oameye.works.coregrade.com -- 21:42:56.557 INFO [7039]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=pvtic7ndda6a87q8qm5hlk9a975k2ci1 -- 21:42:56.557 INFO [7039]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:42:56.557 INFO [7039]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:42:56.569 INFO [7039]: COREGRADE is stopping... -- 21:42:56.569 DEBUG [7039]: Closing database connection -- 21:42:56.569 SQL [7039]: pgsql_close() -- 21:42:56.707 INFO [7039]: COREGRADE is starting... -- 21:42:56.707 INFO [7039]: Version from config: 1.0 -- 21:42:56.707 DEBUG [7039]: Connecting to database... -- 21:42:56.707 DEBUG [7039]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:42:56.707 SQL [7039]: pgsql_db_connect() -- 21:42:56.711 DEBUG [7039]: Database connection successful -- 21:42:56.711 INFO [7039]: _SERVER found -- 21:42:56.711 INFO [7039]: REMOTE_ADDR = 10.0.0.15 -- 21:42:56.711 INFO [7039]: SERVER_NAME = oameye.works.coregrade.com -- 21:42:56.711 INFO [7039]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=pvtic7ndda6a87q8qm5hlk9a975k2ci1 -- 21:42:56.711 INFO [7039]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 21:42:56.711 INFO [7039]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:42:56.722 INFO [7039]: COREGRADE is stopping... -- 21:42:56.722 DEBUG [7039]: Closing database connection -- 21:42:56.722 SQL [7039]: pgsql_close() -- 21:43:01.089 INFO [7039]: COREGRADE is starting... -- 21:43:01.090 INFO [7039]: Version from config: 1.0 -- 21:43:01.090 DEBUG [7039]: Connecting to database... -- 21:43:01.090 DEBUG [7039]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:43:01.090 SQL [7039]: pgsql_db_connect() -- 21:43:01.094 DEBUG [7039]: Database connection successful -- 21:43:01.094 INFO [7039]: _SERVER found -- 21:43:01.094 INFO [7039]: REMOTE_ADDR = 10.0.0.15 -- 21:43:01.094 INFO [7039]: SERVER_NAME = oameye.works.coregrade.com -- 21:43:01.094 INFO [7039]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=c6uvikeiqqge78dmlvvqrvj8uvgt4tgq -- 21:43:01.094 INFO [7039]: QUERY_STRING = /auth -- 21:43:01.094 INFO [7039]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:43:01.128 INFO [7039]: COREGRADE is stopping... -- 21:43:01.128 DEBUG [7039]: Closing database connection -- 21:43:01.128 SQL [7039]: pgsql_close() -- 21:43:39.735 INFO [1877]: COREGRADE is starting... -- 21:43:39.735 INFO [1877]: Version from config: 1.0 -- 21:43:39.735 DEBUG [1877]: Connecting to database... -- 21:43:39.735 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:43:39.735 SQL [1877]: pgsql_db_connect() -- 21:43:39.739 DEBUG [1877]: Database connection successful -- 21:43:39.739 INFO [1877]: _SERVER found -- 21:43:39.739 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 21:43:39.739 INFO [1877]: SERVER_NAME = oameye.works.coregrade.com -- 21:43:39.739 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=pvtic7ndda6a87q8qm5hlk9a975k2ci1 -- 21:43:39.739 INFO [1877]: QUERY_STRING = /auth -- 21:43:39.739 INFO [1877]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:43:39.772 INFO [1877]: COREGRADE is stopping... -- 21:43:39.772 DEBUG [1877]: Closing database connection -- 21:43:39.772 SQL [1877]: pgsql_close() -- 21:43:40.138 INFO [1877]: COREGRADE is starting... -- 21:43:40.139 INFO [1877]: Version from config: 1.0 -- 21:43:40.139 DEBUG [1877]: Connecting to database... -- 21:43:40.139 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:43:40.139 SQL [1877]: pgsql_db_connect() -- 21:43:40.143 DEBUG [1877]: Database connection successful -- 21:43:40.143 INFO [1877]: _SERVER found -- 21:43:40.143 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 21:43:40.143 INFO [1877]: SERVER_NAME = oameye.works.coregrade.com -- 21:43:40.143 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=pvtic7ndda6a87q8qm5hlk9a975k2ci1 -- 21:43:40.143 INFO [1877]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:43:40.143 INFO [1877]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:43:40.154 INFO [1877]: COREGRADE is stopping... -- 21:43:40.154 DEBUG [1877]: Closing database connection -- 21:43:40.154 SQL [1877]: pgsql_close() -- 21:43:47.273 INFO [7047]: COREGRADE is starting... -- 21:43:47.273 INFO [7047]: Version from config: 1.0 -- 21:43:47.273 DEBUG [7047]: Connecting to database... -- 21:43:47.273 DEBUG [7047]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:43:47.273 SQL [7047]: pgsql_db_connect() -- 21:43:47.278 DEBUG [7047]: Database connection successful -- 21:43:47.278 INFO [7047]: _SERVER found -- 21:43:47.278 INFO [7047]: REMOTE_ADDR = 10.0.0.15 -- 21:43:47.278 INFO [7047]: SERVER_NAME = oameye.works.coregrade.com -- 21:43:47.278 INFO [7047]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=cmjgcpnfrmd414ailjflgluvcp8v9979 -- 21:43:47.278 INFO [7047]: QUERY_STRING = -- 21:43:47.278 INFO [7047]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:43:47.313 INFO [7047]: COREGRADE is stopping... -- 21:43:47.313 DEBUG [7047]: Closing database connection -- 21:43:47.313 SQL [7047]: pgsql_close() -- 21:43:47.355 INFO [7047]: COREGRADE is starting... -- 21:43:47.356 INFO [7047]: Version from config: 1.0 -- 21:43:47.356 DEBUG [7047]: Connecting to database... -- 21:43:47.356 DEBUG [7047]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:43:47.356 SQL [7047]: pgsql_db_connect() -- 21:43:47.360 DEBUG [7047]: Database connection successful -- 21:43:47.360 INFO [7047]: _SERVER found -- 21:43:47.360 INFO [7047]: REMOTE_ADDR = 10.0.0.15 -- 21:43:47.360 INFO [7047]: SERVER_NAME = oameye.works.coregrade.com -- 21:43:47.360 INFO [7047]: HTTP_COOKIE = ci_session=hsq255jf24u1mri3ktcaa9auf706h4om; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 21:43:47.360 INFO [7047]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:43:47.360 INFO [7047]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:43:47.372 INFO [7047]: COREGRADE is stopping... -- 21:43:47.372 DEBUG [7047]: Closing database connection -- 21:43:47.372 SQL [7047]: pgsql_close() -- 21:45:00.767 INFO [1878]: COREGRADE is starting... -- 21:45:00.768 INFO [1878]: Version from config: 1.0 -- 21:45:00.768 DEBUG [1878]: Connecting to database... -- 21:45:00.768 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:45:00.768 SQL [1878]: pgsql_db_connect() -- 21:45:00.772 DEBUG [1878]: Database connection successful -- 21:45:00.772 INFO [1878]: _SERVER found -- 21:45:00.772 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 21:45:00.772 INFO [1878]: SERVER_NAME = oameye.works.coregrade.com -- 21:45:00.772 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=pvtic7ndda6a87q8qm5hlk9a975k2ci1 -- 21:45:00.772 INFO [1878]: QUERY_STRING = /auth -- 21:45:00.772 INFO [1878]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:45:00.803 INFO [1878]: COREGRADE is stopping... -- 21:45:00.803 DEBUG [1878]: Closing database connection -- 21:45:00.803 SQL [1878]: pgsql_close() -- 21:45:01.121 INFO [7197]: COREGRADE is starting... -- 21:45:01.121 INFO [7197]: Version from config: 1.0 -- 21:45:01.121 DEBUG [7197]: Connecting to database... -- 21:45:01.121 DEBUG [7197]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:45:01.121 SQL [7197]: pgsql_db_connect() -- 21:45:01.125 DEBUG [7197]: Database connection successful -- 21:45:01.125 INFO [7197]: _SERVER found -- 21:45:01.125 INFO [7197]: REMOTE_ADDR = 10.0.0.15 -- 21:45:01.125 INFO [7197]: SERVER_NAME = oameye.works.coregrade.com -- 21:45:01.125 INFO [7197]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=pvtic7ndda6a87q8qm5hlk9a975k2ci1 -- 21:45:01.125 INFO [7197]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:45:01.125 INFO [7197]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:45:01.138 INFO [7197]: COREGRADE is stopping... -- 21:45:01.138 DEBUG [7197]: Closing database connection -- 21:45:01.138 SQL [7197]: pgsql_close() -- 21:45:01.177 INFO [7197]: COREGRADE is starting... -- 21:45:01.178 INFO [7197]: Version from config: 1.0 -- 21:45:01.178 DEBUG [7197]: Connecting to database... -- 21:45:01.178 DEBUG [7197]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:45:01.178 SQL [7197]: pgsql_db_connect() -- 21:45:01.182 DEBUG [7197]: Database connection successful -- 21:45:01.182 INFO [7197]: _SERVER found -- 21:45:01.182 INFO [7197]: REMOTE_ADDR = 10.0.0.15 -- 21:45:01.182 INFO [7197]: SERVER_NAME = oameye.works.coregrade.com -- 21:45:01.182 INFO [7197]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=pvtic7ndda6a87q8qm5hlk9a975k2ci1 -- 21:45:01.182 INFO [7197]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 21:45:01.182 INFO [7197]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:45:01.195 INFO [7197]: COREGRADE is stopping... -- 21:45:01.195 DEBUG [7197]: Closing database connection -- 21:45:01.195 SQL [7197]: pgsql_close() -- 21:48:13.670 INFO [1879]: COREGRADE is starting... -- 21:48:13.671 INFO [1879]: Version from config: 1.0 -- 21:48:13.671 DEBUG [1879]: Connecting to database... -- 21:48:13.671 DEBUG [1879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:48:13.671 SQL [1879]: pgsql_db_connect() -- 21:48:13.675 DEBUG [1879]: Database connection successful -- 21:48:13.675 INFO [1879]: _SERVER found -- 21:48:13.675 INFO [1879]: REMOTE_ADDR = 10.0.0.15 -- 21:48:13.675 INFO [1879]: SERVER_NAME = oameye.works.coregrade.com -- 21:48:13.675 INFO [1879]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=c6uvikeiqqge78dmlvvqrvj8uvgt4tgq -- 21:48:13.675 INFO [1879]: QUERY_STRING = /auth -- 21:48:13.675 INFO [1879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:48:13.708 INFO [1879]: COREGRADE is stopping... -- 21:48:13.708 DEBUG [1879]: Closing database connection -- 21:48:13.708 SQL [1879]: pgsql_close() -- 21:48:14.100 INFO [1879]: COREGRADE is starting... -- 21:48:14.101 INFO [1879]: Version from config: 1.0 -- 21:48:14.101 DEBUG [1879]: Connecting to database... -- 21:48:14.101 DEBUG [1879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:48:14.101 SQL [1879]: pgsql_db_connect() -- 21:48:14.105 DEBUG [1879]: Database connection successful -- 21:48:14.105 INFO [1879]: _SERVER found -- 21:48:14.105 INFO [1879]: REMOTE_ADDR = 10.0.0.15 -- 21:48:14.105 INFO [1879]: SERVER_NAME = oameye.works.coregrade.com -- 21:48:14.105 INFO [1879]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=b2oumlcdo272232mkrekoqp0u9ev0gev -- 21:48:14.105 INFO [1879]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:48:14.105 INFO [1879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:48:14.116 INFO [1879]: COREGRADE is stopping... -- 21:48:14.116 DEBUG [1879]: Closing database connection -- 21:48:14.116 SQL [1879]: pgsql_close() -- 21:51:09.081 INFO [32689]: COREGRADE is starting... -- 21:51:09.082 INFO [32689]: Version from config: 1.0 -- 21:51:09.082 DEBUG [32689]: Connecting to database... -- 21:51:09.082 DEBUG [32689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:09.082 SQL [32689]: pgsql_db_connect() -- 21:51:09.086 DEBUG [32689]: Database connection successful -- 21:51:09.086 INFO [32689]: _SERVER found -- 21:51:09.086 INFO [32689]: REMOTE_ADDR = 10.0.0.15 -- 21:51:09.086 INFO [32689]: SERVER_NAME = oameye.works.coregrade.com -- 21:51:09.086 INFO [32689]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; _gid=GA1.2.120824816.1586655078; ci_session=j4hhkuanvnccoipsbf5rhu9rohrf34do -- 21:51:09.086 INFO [32689]: QUERY_STRING = -- 21:51:09.086 INFO [32689]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:09.120 INFO [32689]: COREGRADE is stopping... -- 21:51:09.120 DEBUG [32689]: Closing database connection -- 21:51:09.120 SQL [32689]: pgsql_close() -- 21:51:09.235 INFO [32689]: COREGRADE is starting... -- 21:51:09.235 INFO [32689]: Version from config: 1.0 -- 21:51:09.235 DEBUG [32689]: Connecting to database... -- 21:51:09.235 DEBUG [32689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:09.235 SQL [32689]: pgsql_db_connect() -- 21:51:09.239 DEBUG [32689]: Database connection successful -- 21:51:09.239 INFO [32689]: _SERVER found -- 21:51:09.239 INFO [32689]: REMOTE_ADDR = 10.0.0.15 -- 21:51:09.239 INFO [32689]: SERVER_NAME = oameye.works.coregrade.com -- 21:51:09.239 INFO [32689]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; _gid=GA1.2.120824816.1586655078; ci_session=q8oetmo09n76snqtdb1l3bo66kuihgms -- 21:51:09.239 INFO [32689]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:51:09.239 INFO [32689]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:09.250 INFO [32689]: COREGRADE is stopping... -- 21:51:09.250 DEBUG [32689]: Closing database connection -- 21:51:09.250 SQL [32689]: pgsql_close() -- 21:51:31.243 INFO [1876]: COREGRADE is starting... -- 21:51:31.244 INFO [1876]: Version from config: 1.0 -- 21:51:31.244 DEBUG [1876]: Connecting to database... -- 21:51:31.244 DEBUG [1876]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:31.244 SQL [1876]: pgsql_db_connect() -- 21:51:31.248 DEBUG [1876]: Database connection successful -- 21:51:31.248 INFO [1876]: _SERVER found -- 21:51:31.248 INFO [1876]: REMOTE_ADDR = 10.0.0.15 -- 21:51:31.248 INFO [1876]: SERVER_NAME = oameye.works.coregrade.com -- 21:51:31.248 INFO [1876]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=b2oumlcdo272232mkrekoqp0u9ev0gev -- 21:51:31.248 INFO [1876]: QUERY_STRING = -- 21:51:31.248 INFO [1876]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:31.287 INFO [1876]: COREGRADE is stopping... -- 21:51:31.287 DEBUG [1876]: Closing database connection -- 21:51:31.287 SQL [1876]: pgsql_close() -- 21:51:31.907 INFO [1876]: COREGRADE is starting... -- 21:51:31.907 INFO [1876]: Version from config: 1.0 -- 21:51:31.907 DEBUG [1876]: Connecting to database... -- 21:51:31.907 DEBUG [1876]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:31.907 SQL [1876]: pgsql_db_connect() -- 21:51:31.911 DEBUG [1876]: Database connection successful -- 21:51:31.911 INFO [1876]: _SERVER found -- 21:51:31.911 INFO [1876]: REMOTE_ADDR = 10.0.0.15 -- 21:51:31.912 INFO [1876]: SERVER_NAME = oameye.works.coregrade.com -- 21:51:31.912 INFO [1876]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=b2oumlcdo272232mkrekoqp0u9ev0gev -- 21:51:31.912 INFO [1876]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:51:31.912 INFO [1876]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:51:31.923 INFO [1876]: COREGRADE is stopping... -- 21:51:31.923 DEBUG [1876]: Closing database connection -- 21:51:31.923 SQL [1876]: pgsql_close() -- 21:52:18.174 INFO [1880]: COREGRADE is starting... -- 21:52:18.175 INFO [1880]: Version from config: 1.0 -- 21:52:18.175 DEBUG [1880]: Connecting to database... -- 21:52:18.175 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:52:18.175 SQL [1880]: pgsql_db_connect() -- 21:52:18.179 DEBUG [1880]: Database connection successful -- 21:52:18.179 INFO [1880]: _SERVER found -- 21:52:18.179 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 21:52:18.179 INFO [1880]: SERVER_NAME = oameye.works.coregrade.com -- 21:52:18.179 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.531767543.1586652800 -- 21:52:18.179 INFO [1880]: QUERY_STRING = -- 21:52:18.179 INFO [1880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:52:18.211 INFO [1880]: COREGRADE is stopping... -- 21:52:18.211 DEBUG [1880]: Closing database connection -- 21:52:18.211 SQL [1880]: pgsql_close() -- 21:52:19.094 INFO [1880]: COREGRADE is starting... -- 21:52:19.094 INFO [1880]: Version from config: 1.0 -- 21:52:19.094 DEBUG [1880]: Connecting to database... -- 21:52:19.094 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:52:19.094 SQL [1880]: pgsql_db_connect() -- 21:52:19.098 DEBUG [1880]: Database connection successful -- 21:52:19.098 INFO [1880]: _SERVER found -- 21:52:19.098 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 21:52:19.098 INFO [1880]: SERVER_NAME = oameye.works.coregrade.com -- 21:52:19.098 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.531767543.1586652800; ci_session=l588iei87im6kemjvtge48u979k7bvte; _gat_gtag_UA_54829827_2=1 -- 21:52:19.098 INFO [1880]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:52:19.098 INFO [1880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:52:19.110 INFO [1880]: COREGRADE is stopping... -- 21:52:19.110 DEBUG [1880]: Closing database connection -- 21:52:19.110 SQL [1880]: pgsql_close() -- 21:56:48.493 INFO [1877]: COREGRADE is starting... -- 21:56:48.494 INFO [1877]: Version from config: 1.0 -- 21:56:48.494 DEBUG [1877]: Connecting to database... -- 21:56:48.494 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:56:48.494 SQL [1877]: pgsql_db_connect() -- 21:56:48.498 DEBUG [1877]: Database connection successful -- 21:56:48.498 INFO [1877]: _SERVER found -- 21:56:48.498 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 21:56:48.498 INFO [1877]: SERVER_NAME = oameye.works.coregrade.com -- 21:56:48.498 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=b2oumlcdo272232mkrekoqp0u9ev0gev -- 21:56:48.498 INFO [1877]: QUERY_STRING = /welcome/viewLogin -- 21:56:48.498 INFO [1877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:56:48.531 INFO [1877]: COREGRADE is stopping... -- 21:56:48.531 DEBUG [1877]: Closing database connection -- 21:56:48.531 SQL [1877]: pgsql_close() -- 21:56:48.548 INFO [1877]: COREGRADE is starting... -- 21:56:48.548 INFO [1877]: Version from config: 1.0 -- 21:56:48.548 DEBUG [1877]: Connecting to database... -- 21:56:48.548 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:56:48.548 SQL [1877]: pgsql_db_connect() -- 21:56:48.552 DEBUG [1877]: Database connection successful -- 21:56:48.552 INFO [1877]: _SERVER found -- 21:56:48.552 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 21:56:48.552 INFO [1877]: SERVER_NAME = oameye.works.coregrade.com -- 21:56:48.552 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=b2oumlcdo272232mkrekoqp0u9ev0gev -- 21:56:48.552 INFO [1877]: QUERY_STRING = /auth -- 21:56:48.552 INFO [1877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:56:48.584 INFO [1877]: COREGRADE is stopping... -- 21:56:48.584 DEBUG [1877]: Closing database connection -- 21:56:48.584 SQL [1877]: pgsql_close() -- 21:56:48.600 INFO [1877]: COREGRADE is starting... -- 21:56:48.600 INFO [1877]: Version from config: 1.0 -- 21:56:48.600 DEBUG [1877]: Connecting to database... -- 21:56:48.600 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:56:48.600 SQL [1877]: pgsql_db_connect() -- 21:56:48.604 DEBUG [1877]: Database connection successful -- 21:56:48.604 INFO [1877]: _SERVER found -- 21:56:48.604 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 21:56:48.604 INFO [1877]: SERVER_NAME = oameye.works.coregrade.com -- 21:56:48.604 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=b2oumlcdo272232mkrekoqp0u9ev0gev -- 21:56:48.604 INFO [1877]: QUERY_STRING = /auth/index -- 21:56:48.604 INFO [1877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:56:48.636 INFO [1877]: COREGRADE is stopping... -- 21:56:48.636 DEBUG [1877]: Closing database connection -- 21:56:48.636 SQL [1877]: pgsql_close() -- 21:57:03.536 INFO [7047]: COREGRADE is starting... -- 21:57:03.536 INFO [7047]: Version from config: 1.0 -- 21:57:03.536 DEBUG [7047]: Connecting to database... -- 21:57:03.536 DEBUG [7047]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:57:03.536 SQL [7047]: pgsql_db_connect() -- 21:57:03.540 DEBUG [7047]: Database connection successful -- 21:57:03.540 INFO [7047]: _SERVER found -- 21:57:03.540 INFO [7047]: REMOTE_ADDR = 10.0.0.15 -- 21:57:03.540 INFO [7047]: SERVER_NAME = oameye.works.coregrade.com -- 21:57:03.540 INFO [7047]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=gb6g2uvb20m81cgvcbisgijvmj46jsu4 -- 21:57:03.540 INFO [7047]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:57:03.540 INFO [7047]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:57:03.553 INFO [7047]: COREGRADE is stopping... -- 21:57:03.553 DEBUG [7047]: Closing database connection -- 21:57:03.553 SQL [7047]: pgsql_close() -- 21:58:36.736 INFO [32690]: COREGRADE is starting... -- 21:58:36.736 INFO [32690]: Version from config: 1.0 -- 21:58:36.736 DEBUG [32690]: Connecting to database... -- 21:58:36.736 DEBUG [32690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:58:36.736 SQL [32690]: pgsql_db_connect() -- 21:58:36.741 DEBUG [32690]: Database connection successful -- 21:58:36.741 INFO [32690]: _SERVER found -- 21:58:36.741 INFO [32690]: REMOTE_ADDR = 10.0.0.15 -- 21:58:36.741 INFO [32690]: SERVER_NAME = oameye.works.coregrade.com -- 21:58:36.741 INFO [32690]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=gb6g2uvb20m81cgvcbisgijvmj46jsu4 -- 21:58:36.741 INFO [32690]: QUERY_STRING = /auth -- 21:58:36.741 INFO [32690]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:58:36.775 INFO [32690]: COREGRADE is stopping... -- 21:58:36.775 DEBUG [32690]: Closing database connection -- 21:58:36.775 SQL [32690]: pgsql_close() -- 21:58:37.066 INFO [32690]: COREGRADE is starting... -- 21:58:37.066 INFO [32690]: Version from config: 1.0 -- 21:58:37.066 DEBUG [32690]: Connecting to database... -- 21:58:37.066 DEBUG [32690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:58:37.066 SQL [32690]: pgsql_db_connect() -- 21:58:37.070 DEBUG [32690]: Database connection successful -- 21:58:37.070 INFO [32690]: _SERVER found -- 21:58:37.070 INFO [32690]: REMOTE_ADDR = 10.0.0.15 -- 21:58:37.070 INFO [32690]: SERVER_NAME = oameye.works.coregrade.com -- 21:58:37.070 INFO [32690]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=gb6g2uvb20m81cgvcbisgijvmj46jsu4 -- 21:58:37.070 INFO [32690]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:58:37.070 INFO [32690]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:58:37.081 INFO [32690]: COREGRADE is stopping... -- 21:58:37.081 DEBUG [32690]: Closing database connection -- 21:58:37.081 SQL [32690]: pgsql_close() -- 21:58:39.564 INFO [32690]: COREGRADE is starting... -- 21:58:39.564 INFO [32690]: Version from config: 1.0 -- 21:58:39.564 DEBUG [32690]: Connecting to database... -- 21:58:39.564 DEBUG [32690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:58:39.564 SQL [32690]: pgsql_db_connect() -- 21:58:39.568 DEBUG [32690]: Database connection successful -- 21:58:39.568 INFO [32690]: _SERVER found -- 21:58:39.568 INFO [32690]: REMOTE_ADDR = 10.0.0.15 -- 21:58:39.568 INFO [32690]: SERVER_NAME = oameye.works.coregrade.com -- 21:58:39.568 INFO [32690]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=gb6g2uvb20m81cgvcbisgijvmj46jsu4 -- 21:58:39.568 INFO [32690]: QUERY_STRING = /auth -- 21:58:39.568 INFO [32690]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:58:39.600 INFO [32690]: COREGRADE is stopping... -- 21:58:39.600 DEBUG [32690]: Closing database connection -- 21:58:39.600 SQL [32690]: pgsql_close() -- 21:59:26.442 INFO [1878]: COREGRADE is starting... -- 21:59:26.442 INFO [1878]: Version from config: 1.0 -- 21:59:26.442 DEBUG [1878]: Connecting to database... -- 21:59:26.442 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:59:26.442 SQL [1878]: pgsql_db_connect() -- 21:59:26.446 DEBUG [1878]: Database connection successful -- 21:59:26.446 INFO [1878]: _SERVER found -- 21:59:26.446 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 21:59:26.446 INFO [1878]: SERVER_NAME = oameye.works.coregrade.com -- 21:59:26.446 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=gb6g2uvb20m81cgvcbisgijvmj46jsu4 -- 21:59:26.446 INFO [1878]: QUERY_STRING = /auth -- 21:59:26.446 INFO [1878]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:59:26.479 INFO [1878]: COREGRADE is stopping... -- 21:59:26.479 DEBUG [1878]: Closing database connection -- 21:59:26.479 SQL [1878]: pgsql_close() -- 21:59:28.130 INFO [1878]: COREGRADE is starting... -- 21:59:28.130 INFO [1878]: Version from config: 1.0 -- 21:59:28.130 DEBUG [1878]: Connecting to database... -- 21:59:28.130 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:59:28.130 SQL [1878]: pgsql_db_connect() -- 21:59:28.134 DEBUG [1878]: Database connection successful -- 21:59:28.134 INFO [1878]: _SERVER found -- 21:59:28.134 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 21:59:28.134 INFO [1878]: SERVER_NAME = oameye.works.coregrade.com -- 21:59:28.134 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=gb6g2uvb20m81cgvcbisgijvmj46jsu4 -- 21:59:28.134 INFO [1878]: QUERY_STRING = /auth -- 21:59:28.134 INFO [1878]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 21:59:28.165 INFO [1878]: COREGRADE is stopping... -- 21:59:28.165 DEBUG [1878]: Closing database connection -- 21:59:28.165 SQL [1878]: pgsql_close() -- 22:00:09.562 INFO [7039]: COREGRADE is starting... -- 22:00:09.562 INFO [7039]: Version from config: 1.0 -- 22:00:09.562 DEBUG [7039]: Connecting to database... -- 22:00:09.562 DEBUG [7039]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:00:09.562 SQL [7039]: pgsql_db_connect() -- 22:00:09.566 DEBUG [7039]: Database connection successful -- 22:00:09.566 INFO [7039]: _SERVER found -- 22:00:09.566 INFO [7039]: REMOTE_ADDR = 10.0.0.15 -- 22:00:09.566 INFO [7039]: SERVER_NAME = oameye.works.coregrade.com -- 22:00:09.566 INFO [7039]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=pvtic7ndda6a87q8qm5hlk9a975k2ci1 -- 22:00:09.566 INFO [7039]: QUERY_STRING = /auth -- 22:00:09.566 INFO [7039]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:00:09.603 INFO [7039]: COREGRADE is stopping... -- 22:00:09.603 DEBUG [7039]: Closing database connection -- 22:00:09.603 SQL [7039]: pgsql_close() -- 22:00:10.010 INFO [7039]: COREGRADE is starting... -- 22:00:10.011 INFO [7039]: Version from config: 1.0 -- 22:00:10.011 DEBUG [7039]: Connecting to database... -- 22:00:10.011 DEBUG [7039]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:00:10.011 SQL [7039]: pgsql_db_connect() -- 22:00:10.015 DEBUG [7039]: Database connection successful -- 22:00:10.015 INFO [7039]: _SERVER found -- 22:00:10.015 INFO [7039]: REMOTE_ADDR = 10.0.0.15 -- 22:00:10.015 INFO [7039]: SERVER_NAME = oameye.works.coregrade.com -- 22:00:10.015 INFO [7039]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=dmt2u8sfi4hhqjgid871cflaut7uvb13 -- 22:00:10.015 INFO [7039]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:00:10.015 INFO [7039]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:00:10.027 INFO [7039]: COREGRADE is stopping... -- 22:00:10.027 DEBUG [7039]: Closing database connection -- 22:00:10.027 SQL [7039]: pgsql_close() -- 22:00:17.772 INFO [1879]: COREGRADE is starting... -- 22:00:17.773 INFO [1879]: Version from config: 1.0 -- 22:00:17.773 DEBUG [1879]: Connecting to database... -- 22:00:17.773 DEBUG [1879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:00:17.773 SQL [1879]: pgsql_db_connect() -- 22:00:17.777 DEBUG [1879]: Database connection successful -- 22:00:17.777 INFO [1879]: _SERVER found -- 22:00:17.777 INFO [1879]: REMOTE_ADDR = 10.0.0.15 -- 22:00:17.777 INFO [1879]: SERVER_NAME = oameye.works.coregrade.com -- 22:00:17.777 INFO [1879]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=gb6g2uvb20m81cgvcbisgijvmj46jsu4 -- 22:00:17.777 INFO [1879]: QUERY_STRING = /auth -- 22:00:17.777 INFO [1879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:00:17.808 INFO [1879]: COREGRADE is stopping... -- 22:00:17.808 DEBUG [1879]: Closing database connection -- 22:00:17.808 SQL [1879]: pgsql_close() -- 22:00:56.415 INFO [32689]: COREGRADE is starting... -- 22:00:56.415 INFO [32689]: Version from config: 1.0 -- 22:00:56.415 DEBUG [32689]: Connecting to database... -- 22:00:56.415 DEBUG [32689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:00:56.415 SQL [32689]: pgsql_db_connect() -- 22:00:56.419 DEBUG [32689]: Database connection successful -- 22:00:56.419 INFO [32689]: _SERVER found -- 22:00:56.419 INFO [32689]: REMOTE_ADDR = 10.0.0.15 -- 22:00:56.419 INFO [32689]: SERVER_NAME = oameye.works.coregrade.com -- 22:00:56.419 INFO [32689]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=dmt2u8sfi4hhqjgid871cflaut7uvb13 -- 22:00:56.419 INFO [32689]: QUERY_STRING = /auth -- 22:00:56.419 INFO [32689]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:00:56.452 INFO [32689]: COREGRADE is stopping... -- 22:00:56.452 DEBUG [32689]: Closing database connection -- 22:00:56.452 SQL [32689]: pgsql_close() -- 22:00:58.501 INFO [32689]: COREGRADE is starting... -- 22:00:58.502 INFO [32689]: Version from config: 1.0 -- 22:00:58.502 DEBUG [32689]: Connecting to database... -- 22:00:58.502 DEBUG [32689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:00:58.502 SQL [32689]: pgsql_db_connect() -- 22:00:58.506 DEBUG [32689]: Database connection successful -- 22:00:58.506 INFO [32689]: _SERVER found -- 22:00:58.506 INFO [32689]: REMOTE_ADDR = 10.0.0.15 -- 22:00:58.506 INFO [32689]: SERVER_NAME = oameye.works.coregrade.com -- 22:00:58.506 INFO [32689]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=dmt2u8sfi4hhqjgid871cflaut7uvb13 -- 22:00:58.506 INFO [32689]: QUERY_STRING = /auth -- 22:00:58.506 INFO [32689]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:00:58.537 INFO [32689]: COREGRADE is stopping... -- 22:00:58.537 DEBUG [32689]: Closing database connection -- 22:00:58.537 SQL [32689]: pgsql_close() -- 22:00:58.938 INFO [7047]: COREGRADE is starting... -- 22:00:58.938 INFO [7047]: Version from config: 1.0 -- 22:00:58.938 DEBUG [7047]: Connecting to database... -- 22:00:58.938 DEBUG [7047]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:00:58.938 SQL [7047]: pgsql_db_connect() -- 22:00:58.942 DEBUG [7047]: Database connection successful -- 22:00:58.942 INFO [7047]: _SERVER found -- 22:00:58.942 INFO [7047]: REMOTE_ADDR = 10.0.0.15 -- 22:00:58.942 INFO [7047]: SERVER_NAME = oameye.works.coregrade.com -- 22:00:58.942 INFO [7047]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=dmt2u8sfi4hhqjgid871cflaut7uvb13 -- 22:00:58.942 INFO [7047]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:00:58.942 INFO [7047]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:00:58.954 INFO [7047]: COREGRADE is stopping... -- 22:00:58.954 DEBUG [7047]: Closing database connection -- 22:00:58.954 SQL [7047]: pgsql_close() -- 22:00:59.047 INFO [1880]: COREGRADE is starting... -- 22:00:59.047 INFO [1880]: Version from config: 1.0 -- 22:00:59.047 DEBUG [1880]: Connecting to database... -- 22:00:59.047 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:00:59.047 SQL [1880]: pgsql_db_connect() -- 22:00:59.052 DEBUG [1880]: Database connection successful -- 22:00:59.052 INFO [1880]: _SERVER found -- 22:00:59.052 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 22:00:59.052 INFO [1880]: SERVER_NAME = oameye.works.coregrade.com -- 22:00:59.052 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=dmt2u8sfi4hhqjgid871cflaut7uvb13 -- 22:00:59.052 INFO [1880]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 22:00:59.052 INFO [1880]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:00:59.064 INFO [1880]: COREGRADE is stopping... -- 22:00:59.064 DEBUG [1880]: Closing database connection -- 22:00:59.064 SQL [1880]: pgsql_close() -- 22:01:06.382 INFO [32690]: COREGRADE is starting... -- 22:01:06.382 INFO [32690]: Version from config: 1.0 -- 22:01:06.382 DEBUG [32690]: Connecting to database... -- 22:01:06.382 DEBUG [32690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:01:06.382 SQL [32690]: pgsql_db_connect() -- 22:01:06.386 DEBUG [32690]: Database connection successful -- 22:01:06.386 INFO [32690]: _SERVER found -- 22:01:06.386 INFO [32690]: REMOTE_ADDR = 10.0.0.15 -- 22:01:06.386 INFO [32690]: SERVER_NAME = oameye.works.coregrade.com -- 22:01:06.386 INFO [32690]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=gb6g2uvb20m81cgvcbisgijvmj46jsu4 -- 22:01:06.386 INFO [32690]: QUERY_STRING = /auth -- 22:01:06.386 INFO [32690]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:01:06.419 INFO [32690]: COREGRADE is stopping... -- 22:01:06.419 DEBUG [32690]: Closing database connection -- 22:01:06.419 SQL [32690]: pgsql_close() -- 22:01:42.501 INFO [1878]: COREGRADE is starting... -- 22:01:42.501 INFO [1878]: Version from config: 1.0 -- 22:01:42.501 DEBUG [1878]: Connecting to database... -- 22:01:42.501 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:01:42.501 SQL [1878]: pgsql_db_connect() -- 22:01:42.505 DEBUG [1878]: Database connection successful -- 22:01:42.505 INFO [1878]: _SERVER found -- 22:01:42.505 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 22:01:42.505 INFO [1878]: SERVER_NAME = oameye.works.coregrade.com -- 22:01:42.505 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=dmt2u8sfi4hhqjgid871cflaut7uvb13 -- 22:01:42.505 INFO [1878]: QUERY_STRING = /auth -- 22:01:42.505 INFO [1878]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:01:42.537 INFO [1878]: COREGRADE is stopping... -- 22:01:42.537 DEBUG [1878]: Closing database connection -- 22:01:42.537 SQL [1878]: pgsql_close() -- 22:01:42.867 INFO [7197]: COREGRADE is starting... -- 22:01:42.868 INFO [7197]: Version from config: 1.0 -- 22:01:42.868 DEBUG [7197]: Connecting to database... -- 22:01:42.868 DEBUG [7197]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:01:42.868 SQL [7197]: pgsql_db_connect() -- 22:01:42.872 DEBUG [7197]: Database connection successful -- 22:01:42.872 INFO [7197]: _SERVER found -- 22:01:42.872 INFO [7197]: REMOTE_ADDR = 10.0.0.15 -- 22:01:42.872 INFO [7197]: SERVER_NAME = oameye.works.coregrade.com -- 22:01:42.872 INFO [7197]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=dmt2u8sfi4hhqjgid871cflaut7uvb13 -- 22:01:42.872 INFO [7197]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:01:42.872 INFO [7197]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:01:42.885 INFO [7197]: COREGRADE is stopping... -- 22:01:42.885 DEBUG [7197]: Closing database connection -- 22:01:42.885 SQL [7197]: pgsql_close() -- 22:01:51.468 INFO [1879]: COREGRADE is starting... -- 22:01:51.468 INFO [1879]: Version from config: 1.0 -- 22:01:51.468 DEBUG [1879]: Connecting to database... -- 22:01:51.468 DEBUG [1879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:01:51.468 SQL [1879]: pgsql_db_connect() -- 22:01:51.472 DEBUG [1879]: Database connection successful -- 22:01:51.472 INFO [1879]: _SERVER found -- 22:01:51.472 INFO [1879]: REMOTE_ADDR = 10.0.0.15 -- 22:01:51.472 INFO [1879]: SERVER_NAME = oameye.works.coregrade.com -- 22:01:51.472 INFO [1879]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=gb6g2uvb20m81cgvcbisgijvmj46jsu4 -- 22:01:51.472 INFO [1879]: QUERY_STRING = /auth -- 22:01:51.472 INFO [1879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:01:51.504 INFO [1879]: COREGRADE is stopping... -- 22:01:51.504 DEBUG [1879]: Closing database connection -- 22:01:51.504 SQL [1879]: pgsql_close() -- 22:02:33.044 INFO [32689]: COREGRADE is starting... -- 22:02:33.044 INFO [32689]: Version from config: 1.0 -- 22:02:33.044 DEBUG [32689]: Connecting to database... -- 22:02:33.044 DEBUG [32689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:02:33.044 SQL [32689]: pgsql_db_connect() -- 22:02:33.048 DEBUG [32689]: Database connection successful -- 22:02:33.048 INFO [32689]: _SERVER found -- 22:02:33.048 INFO [32689]: REMOTE_ADDR = 10.0.0.15 -- 22:02:33.048 INFO [32689]: SERVER_NAME = oameye.works.coregrade.com -- 22:02:33.049 INFO [32689]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=h97glrd78df9fffd11u12sjadcmfu6su -- 22:02:33.049 INFO [32689]: QUERY_STRING = -- 22:02:33.049 INFO [32689]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:02:33.080 INFO [32689]: COREGRADE is stopping... -- 22:02:33.080 DEBUG [32689]: Closing database connection -- 22:02:33.080 SQL [32689]: pgsql_close() -- 22:02:33.376 INFO [1876]: COREGRADE is starting... -- 22:02:33.376 INFO [1876]: Version from config: 1.0 -- 22:02:33.376 DEBUG [1876]: Connecting to database... -- 22:02:33.376 DEBUG [1876]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:02:33.376 SQL [1876]: pgsql_db_connect() -- 22:02:33.380 DEBUG [1876]: Database connection successful -- 22:02:33.380 INFO [1876]: _SERVER found -- 22:02:33.380 INFO [1876]: REMOTE_ADDR = 10.0.0.15 -- 22:02:33.380 INFO [1876]: SERVER_NAME = oameye.works.coregrade.com -- 22:02:33.380 INFO [1876]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=f1lhg48m716d0qoqsao0bo76rhvslef6 -- 22:02:33.380 INFO [1876]: QUERY_STRING = /assets/img/footer_1.jpg -- 22:02:33.380 INFO [1876]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:02:33.392 INFO [1876]: COREGRADE is stopping... -- 22:02:33.392 DEBUG [1876]: Closing database connection -- 22:02:33.392 SQL [1876]: pgsql_close() -- 22:02:33.514 INFO [1876]: COREGRADE is starting... -- 22:02:33.514 INFO [1876]: Version from config: 1.0 -- 22:02:33.514 DEBUG [1876]: Connecting to database... -- 22:02:33.514 DEBUG [1876]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:02:33.514 SQL [1876]: pgsql_db_connect() -- 22:02:33.518 DEBUG [1876]: Database connection successful -- 22:02:33.518 INFO [1876]: _SERVER found -- 22:02:33.518 INFO [1876]: REMOTE_ADDR = 10.0.0.15 -- 22:02:33.518 INFO [1876]: SERVER_NAME = oameye.works.coregrade.com -- 22:02:33.518 INFO [1876]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=f1lhg48m716d0qoqsao0bo76rhvslef6 -- 22:02:33.518 INFO [1876]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 22:02:33.518 INFO [1876]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:02:33.529 INFO [1876]: COREGRADE is stopping... -- 22:02:33.529 DEBUG [1876]: Closing database connection -- 22:02:33.529 SQL [1876]: pgsql_close() -- 22:02:39.562 INFO [1877]: COREGRADE is starting... -- 22:02:39.563 INFO [1877]: Version from config: 1.0 -- 22:02:39.563 DEBUG [1877]: Connecting to database... -- 22:02:39.563 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:02:39.563 SQL [1877]: pgsql_db_connect() -- 22:02:39.567 DEBUG [1877]: Database connection successful -- 22:02:39.567 INFO [1877]: _SERVER found -- 22:02:39.567 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 22:02:39.567 INFO [1877]: SERVER_NAME = oameye.works.coregrade.com -- 22:02:39.567 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2t065oveaqb3r568carckdjjrajg4oe3 -- 22:02:39.567 INFO [1877]: QUERY_STRING = /auth -- 22:02:39.567 INFO [1877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:02:39.600 INFO [1877]: COREGRADE is stopping... -- 22:02:39.600 DEBUG [1877]: Closing database connection -- 22:02:39.600 SQL [1877]: pgsql_close() -- 22:02:39.823 INFO [1877]: COREGRADE is starting... -- 22:02:39.823 INFO [1877]: Version from config: 1.0 -- 22:02:39.823 DEBUG [1877]: Connecting to database... -- 22:02:39.823 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:02:39.823 SQL [1877]: pgsql_db_connect() -- 22:02:39.827 DEBUG [1877]: Database connection successful -- 22:02:39.827 INFO [1877]: _SERVER found -- 22:02:39.827 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 22:02:39.827 INFO [1877]: SERVER_NAME = oameye.works.coregrade.com -- 22:02:39.827 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=f1lhg48m716d0qoqsao0bo76rhvslef6; _gat_gtag_UA_54829827_2=1 -- 22:02:39.827 INFO [1877]: QUERY_STRING = -- 22:02:39.827 INFO [1877]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:02:39.859 INFO [1877]: COREGRADE is stopping... -- 22:02:39.859 DEBUG [1877]: Closing database connection -- 22:02:39.859 SQL [1877]: pgsql_close() -- 22:02:40.009 INFO [1877]: COREGRADE is starting... -- 22:02:40.010 INFO [1877]: Version from config: 1.0 -- 22:02:40.010 DEBUG [1877]: Connecting to database... -- 22:02:40.010 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:02:40.010 SQL [1877]: pgsql_db_connect() -- 22:02:40.014 DEBUG [1877]: Database connection successful -- 22:02:40.014 INFO [1877]: _SERVER found -- 22:02:40.014 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 22:02:40.014 INFO [1877]: SERVER_NAME = oameye.works.coregrade.com -- 22:02:40.014 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=f1lhg48m716d0qoqsao0bo76rhvslef6; _gat_gtag_UA_54829827_2=1 -- 22:02:40.014 INFO [1877]: QUERY_STRING = /assets/img/footer_1.jpg -- 22:02:40.014 INFO [1877]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:02:40.025 INFO [1877]: COREGRADE is stopping... -- 22:02:40.025 DEBUG [1877]: Closing database connection -- 22:02:40.025 SQL [1877]: pgsql_close() -- 22:02:40.205 INFO [7047]: COREGRADE is starting... -- 22:02:40.205 INFO [7047]: Version from config: 1.0 -- 22:02:40.205 DEBUG [7047]: Connecting to database... -- 22:02:40.205 DEBUG [7047]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:02:40.205 SQL [7047]: pgsql_db_connect() -- 22:02:40.209 DEBUG [7047]: Database connection successful -- 22:02:40.209 INFO [7047]: _SERVER found -- 22:02:40.209 INFO [7047]: REMOTE_ADDR = 10.0.0.15 -- 22:02:40.209 INFO [7047]: SERVER_NAME = oameye.works.coregrade.com -- 22:02:40.209 INFO [7047]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=f1lhg48m716d0qoqsao0bo76rhvslef6; _gat_gtag_UA_54829827_2=1 -- 22:02:40.209 INFO [7047]: QUERY_STRING = -- 22:02:40.209 INFO [7047]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:02:40.243 INFO [7047]: COREGRADE is stopping... -- 22:02:40.243 DEBUG [7047]: Closing database connection -- 22:02:40.244 SQL [7047]: pgsql_close() -- 22:02:47.303 INFO [1880]: COREGRADE is starting... -- 22:02:47.303 INFO [1880]: Version from config: 1.0 -- 22:02:47.303 DEBUG [1880]: Connecting to database... -- 22:02:47.303 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:02:47.303 SQL [1880]: pgsql_db_connect() -- 22:02:47.307 DEBUG [1880]: Database connection successful -- 22:02:47.307 INFO [1880]: _SERVER found -- 22:02:47.307 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 22:02:47.307 INFO [1880]: SERVER_NAME = oameye.works.coregrade.com -- 22:02:47.307 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=f1lhg48m716d0qoqsao0bo76rhvslef6; _gat_gtag_UA_54829827_2=1 -- 22:02:47.307 INFO [1880]: QUERY_STRING = -- 22:02:47.307 INFO [1880]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:02:47.339 INFO [1880]: COREGRADE is stopping... -- 22:02:47.339 DEBUG [1880]: Closing database connection -- 22:02:47.339 SQL [1880]: pgsql_close() -- 22:02:47.697 INFO [1880]: COREGRADE is starting... -- 22:02:47.697 INFO [1880]: Version from config: 1.0 -- 22:02:47.697 DEBUG [1880]: Connecting to database... -- 22:02:47.697 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:02:47.697 SQL [1880]: pgsql_db_connect() -- 22:02:47.701 DEBUG [1880]: Database connection successful -- 22:02:47.701 INFO [1880]: _SERVER found -- 22:02:47.701 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 22:02:47.701 INFO [1880]: SERVER_NAME = oameye.works.coregrade.com -- 22:02:47.701 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=f1lhg48m716d0qoqsao0bo76rhvslef6; _gat_gtag_UA_54829827_2=1 -- 22:02:47.701 INFO [1880]: QUERY_STRING = -- 22:02:47.701 INFO [1880]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:02:47.733 INFO [1880]: COREGRADE is stopping... -- 22:02:47.733 DEBUG [1880]: Closing database connection -- 22:02:47.733 SQL [1880]: pgsql_close() -- 22:02:47.942 INFO [1880]: COREGRADE is starting... -- 22:02:47.942 INFO [1880]: Version from config: 1.0 -- 22:02:47.942 DEBUG [1880]: Connecting to database... -- 22:02:47.942 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:02:47.942 SQL [1880]: pgsql_db_connect() -- 22:02:47.946 DEBUG [1880]: Database connection successful -- 22:02:47.946 INFO [1880]: _SERVER found -- 22:02:47.946 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 22:02:47.946 INFO [1880]: SERVER_NAME = oameye.works.coregrade.com -- 22:02:47.946 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=f1lhg48m716d0qoqsao0bo76rhvslef6; _gat_gtag_UA_54829827_2=1 -- 22:02:47.946 INFO [1880]: QUERY_STRING = -- 22:02:47.946 INFO [1880]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:02:47.978 INFO [1880]: COREGRADE is stopping... -- 22:02:47.978 DEBUG [1880]: Closing database connection -- 22:02:47.978 SQL [1880]: pgsql_close() -- 22:03:18.312 INFO [32690]: COREGRADE is starting... -- 22:03:18.313 INFO [32690]: Version from config: 1.0 -- 22:03:18.313 DEBUG [32690]: Connecting to database... -- 22:03:18.313 DEBUG [32690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:03:18.313 SQL [32690]: pgsql_db_connect() -- 22:03:18.317 DEBUG [32690]: Database connection successful -- 22:03:18.317 INFO [32690]: _SERVER found -- 22:03:18.317 INFO [32690]: REMOTE_ADDR = 10.0.0.15 -- 22:03:18.317 INFO [32690]: SERVER_NAME = oameye.works.coregrade.com -- 22:03:18.317 INFO [32690]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2t065oveaqb3r568carckdjjrajg4oe3 -- 22:03:18.317 INFO [32690]: QUERY_STRING = -- 22:03:18.317 INFO [32690]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:03:18.349 INFO [32690]: COREGRADE is stopping... -- 22:03:18.350 DEBUG [32690]: Closing database connection -- 22:03:18.350 SQL [32690]: pgsql_close() -- 22:03:18.866 INFO [32690]: COREGRADE is starting... -- 22:03:18.866 INFO [32690]: Version from config: 1.0 -- 22:03:18.866 DEBUG [32690]: Connecting to database... -- 22:03:18.866 DEBUG [32690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:03:18.866 SQL [32690]: pgsql_db_connect() -- 22:03:18.870 DEBUG [32690]: Database connection successful -- 22:03:18.870 INFO [32690]: _SERVER found -- 22:03:18.870 INFO [32690]: REMOTE_ADDR = 10.0.0.15 -- 22:03:18.870 INFO [32690]: SERVER_NAME = oameye.works.coregrade.com -- 22:03:18.870 INFO [32690]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2t065oveaqb3r568carckdjjrajg4oe3; _gat_gtag_UA_54829827_2=1 -- 22:03:18.870 INFO [32690]: QUERY_STRING = /assets/img/footer_1.jpg -- 22:03:18.870 INFO [32690]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:03:18.881 INFO [32690]: COREGRADE is stopping... -- 22:03:18.881 DEBUG [32690]: Closing database connection -- 22:03:18.881 SQL [32690]: pgsql_close() -- 22:04:14.931 INFO [1878]: COREGRADE is starting... -- 22:04:14.931 INFO [1878]: Version from config: 1.0 -- 22:04:14.931 DEBUG [1878]: Connecting to database... -- 22:04:14.931 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:04:14.931 SQL [1878]: pgsql_db_connect() -- 22:04:14.935 DEBUG [1878]: Database connection successful -- 22:04:14.935 INFO [1878]: _SERVER found -- 22:04:14.935 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 22:04:14.935 INFO [1878]: SERVER_NAME = oameye.works.coregrade.com -- 22:04:14.935 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=hsq255jf24u1mri3ktcaa9auf706h4om -- 22:04:14.935 INFO [1878]: QUERY_STRING = -- 22:04:14.935 INFO [1878]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:04:14.967 INFO [1878]: COREGRADE is stopping... -- 22:04:14.967 DEBUG [1878]: Closing database connection -- 22:04:14.967 SQL [1878]: pgsql_close() -- 22:04:25.675 INFO [7039]: COREGRADE is starting... -- 22:04:25.676 INFO [7039]: Version from config: 1.0 -- 22:04:25.676 DEBUG [7039]: Connecting to database... -- 22:04:25.676 DEBUG [7039]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:04:25.676 SQL [7039]: pgsql_db_connect() -- 22:04:25.680 DEBUG [7039]: Database connection successful -- 22:04:25.680 INFO [7039]: _SERVER found -- 22:04:25.680 INFO [7039]: REMOTE_ADDR = 10.0.0.15 -- 22:04:25.680 INFO [7039]: SERVER_NAME = oameye.works.coregrade.com -- 22:04:25.680 INFO [7039]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=f1lhg48m716d0qoqsao0bo76rhvslef6 -- 22:04:25.680 INFO [7039]: QUERY_STRING = /home/howitworks -- 22:04:25.680 INFO [7039]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:04:25.715 INFO [7039]: COREGRADE is stopping... -- 22:04:25.715 DEBUG [7039]: Closing database connection -- 22:04:25.715 SQL [7039]: pgsql_close() -- 22:04:25.934 INFO [7039]: COREGRADE is starting... -- 22:04:25.934 INFO [7039]: Version from config: 1.0 -- 22:04:25.934 DEBUG [7039]: Connecting to database... -- 22:04:25.934 DEBUG [7039]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:04:25.934 SQL [7039]: pgsql_db_connect() -- 22:04:25.939 DEBUG [7039]: Database connection successful -- 22:04:25.939 INFO [7039]: _SERVER found -- 22:04:25.939 INFO [7039]: REMOTE_ADDR = 10.0.0.15 -- 22:04:25.939 INFO [7039]: SERVER_NAME = oameye.works.coregrade.com -- 22:04:25.939 INFO [7039]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=f1lhg48m716d0qoqsao0bo76rhvslef6 -- 22:04:25.939 INFO [7039]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:04:25.939 INFO [7039]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:04:25.951 INFO [7039]: COREGRADE is stopping... -- 22:04:25.951 DEBUG [7039]: Closing database connection -- 22:04:25.951 SQL [7039]: pgsql_close() -- 22:05:36.678 INFO [1879]: COREGRADE is starting... -- 22:05:36.678 INFO [1879]: Version from config: 1.0 -- 22:05:36.678 DEBUG [1879]: Connecting to database... -- 22:05:36.678 DEBUG [1879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:05:36.678 SQL [1879]: pgsql_db_connect() -- 22:05:36.682 DEBUG [1879]: Database connection successful -- 22:05:36.682 INFO [1879]: _SERVER found -- 22:05:36.682 INFO [1879]: REMOTE_ADDR = 10.0.0.15 -- 22:05:36.682 INFO [1879]: SERVER_NAME = oameye.works.coregrade.com -- 22:05:36.682 INFO [1879]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=f1lhg48m716d0qoqsao0bo76rhvslef6 -- 22:05:36.682 INFO [1879]: QUERY_STRING = /home/howitworks -- 22:05:36.682 INFO [1879]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:05:36.714 INFO [1879]: COREGRADE is stopping... -- 22:05:36.714 DEBUG [1879]: Closing database connection -- 22:05:36.714 SQL [1879]: pgsql_close() -- 22:05:36.871 INFO [1879]: COREGRADE is starting... -- 22:05:36.872 INFO [1879]: Version from config: 1.0 -- 22:05:36.872 DEBUG [1879]: Connecting to database... -- 22:05:36.872 DEBUG [1879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:05:36.872 SQL [1879]: pgsql_db_connect() -- 22:05:36.876 DEBUG [1879]: Database connection successful -- 22:05:36.876 INFO [1879]: _SERVER found -- 22:05:36.876 INFO [1879]: REMOTE_ADDR = 10.0.0.15 -- 22:05:36.876 INFO [1879]: SERVER_NAME = oameye.works.coregrade.com -- 22:05:36.876 INFO [1879]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=f1lhg48m716d0qoqsao0bo76rhvslef6 -- 22:05:36.876 INFO [1879]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:05:36.876 INFO [1879]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:05:36.888 INFO [1879]: COREGRADE is stopping... -- 22:05:36.888 DEBUG [1879]: Closing database connection -- 22:05:36.888 SQL [1879]: pgsql_close() -- 22:07:04.007 INFO [1876]: COREGRADE is starting... -- 22:07:04.008 INFO [1876]: Version from config: 1.0 -- 22:07:04.008 DEBUG [1876]: Connecting to database... -- 22:07:04.008 DEBUG [1876]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:04.008 SQL [1876]: pgsql_db_connect() -- 22:07:04.012 DEBUG [1876]: Database connection successful -- 22:07:04.012 INFO [1876]: _SERVER found -- 22:07:04.012 INFO [1876]: REMOTE_ADDR = 10.0.0.15 -- 22:07:04.012 INFO [1876]: SERVER_NAME = oameye.works.coregrade.com -- 22:07:04.012 INFO [1876]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=f1lhg48m716d0qoqsao0bo76rhvslef6 -- 22:07:04.012 INFO [1876]: QUERY_STRING = /home/howitworks -- 22:07:04.012 INFO [1876]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:07:04.044 INFO [1876]: COREGRADE is stopping... -- 22:07:04.044 DEBUG [1876]: Closing database connection -- 22:07:04.044 SQL [1876]: pgsql_close() -- 22:07:04.212 INFO [1876]: COREGRADE is starting... -- 22:07:04.212 INFO [1876]: Version from config: 1.0 -- 22:07:04.212 DEBUG [1876]: Connecting to database... -- 22:07:04.212 DEBUG [1876]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:04.213 SQL [1876]: pgsql_db_connect() -- 22:07:04.217 DEBUG [1876]: Database connection successful -- 22:07:04.217 INFO [1876]: _SERVER found -- 22:07:04.217 INFO [1876]: REMOTE_ADDR = 10.0.0.15 -- 22:07:04.217 INFO [1876]: SERVER_NAME = oameye.works.coregrade.com -- 22:07:04.217 INFO [1876]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=f1lhg48m716d0qoqsao0bo76rhvslef6 -- 22:07:04.217 INFO [1876]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:07:04.217 INFO [1876]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:07:04.228 INFO [1876]: COREGRADE is stopping... -- 22:07:04.228 DEBUG [1876]: Closing database connection -- 22:07:04.228 SQL [1876]: pgsql_close() -- 22:07:05.478 INFO [32689]: COREGRADE is starting... -- 22:07:05.478 INFO [32689]: Version from config: 1.0 -- 22:07:05.478 DEBUG [32689]: Connecting to database... -- 22:07:05.478 DEBUG [32689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:05.478 SQL [32689]: pgsql_db_connect() -- 22:07:05.482 DEBUG [32689]: Database connection successful -- 22:07:05.482 INFO [32689]: _SERVER found -- 22:07:05.482 INFO [32689]: REMOTE_ADDR = 10.0.0.15 -- 22:07:05.482 INFO [32689]: SERVER_NAME = oameye.works.coregrade.com -- 22:07:05.482 INFO [32689]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2t065oveaqb3r568carckdjjrajg4oe3 -- 22:07:05.482 INFO [32689]: QUERY_STRING = /home/howitworks -- 22:07:05.482 INFO [32689]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:07:05.515 INFO [32689]: COREGRADE is stopping... -- 22:07:05.515 DEBUG [32689]: Closing database connection -- 22:07:05.515 SQL [32689]: pgsql_close() -- 22:07:05.902 INFO [32689]: COREGRADE is starting... -- 22:07:05.902 INFO [32689]: Version from config: 1.0 -- 22:07:05.902 DEBUG [32689]: Connecting to database... -- 22:07:05.902 DEBUG [32689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:05.902 SQL [32689]: pgsql_db_connect() -- 22:07:05.906 DEBUG [32689]: Database connection successful -- 22:07:05.906 INFO [32689]: _SERVER found -- 22:07:05.906 INFO [32689]: REMOTE_ADDR = 10.0.0.15 -- 22:07:05.906 INFO [32689]: SERVER_NAME = oameye.works.coregrade.com -- 22:07:05.906 INFO [32689]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=5j9jjcmrhn1ct1oo032ta6tq3cno35j2 -- 22:07:05.906 INFO [32689]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:07:05.906 INFO [32689]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:07:05.917 INFO [32689]: COREGRADE is stopping... -- 22:07:05.917 DEBUG [32689]: Closing database connection -- 22:07:05.917 SQL [32689]: pgsql_close() -- 22:07:43.713 INFO [1877]: COREGRADE is starting... -- 22:07:43.713 INFO [1877]: Version from config: 1.0 -- 22:07:43.713 DEBUG [1877]: Connecting to database... -- 22:07:43.713 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:43.713 SQL [1877]: pgsql_db_connect() -- 22:07:43.717 DEBUG [1877]: Database connection successful -- 22:07:43.717 INFO [1877]: _SERVER found -- 22:07:43.717 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 22:07:43.717 INFO [1877]: SERVER_NAME = oameye.works.coregrade.com -- 22:07:43.717 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=f1lhg48m716d0qoqsao0bo76rhvslef6 -- 22:07:43.717 INFO [1877]: QUERY_STRING = /home/howitworks -- 22:07:43.717 INFO [1877]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:07:43.749 INFO [1877]: COREGRADE is stopping... -- 22:07:43.749 DEBUG [1877]: Closing database connection -- 22:07:43.749 SQL [1877]: pgsql_close() -- 22:07:43.912 INFO [1877]: COREGRADE is starting... -- 22:07:43.912 INFO [1877]: Version from config: 1.0 -- 22:07:43.912 DEBUG [1877]: Connecting to database... -- 22:07:43.912 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:43.912 SQL [1877]: pgsql_db_connect() -- 22:07:43.916 DEBUG [1877]: Database connection successful -- 22:07:43.916 INFO [1877]: _SERVER found -- 22:07:43.916 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 22:07:43.916 INFO [1877]: SERVER_NAME = oameye.works.coregrade.com -- 22:07:43.916 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=nieejrjllm492tlajniu700a5rf8v9tu -- 22:07:43.916 INFO [1877]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:07:43.916 INFO [1877]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:07:43.927 INFO [1877]: COREGRADE is stopping... -- 22:07:43.927 DEBUG [1877]: Closing database connection -- 22:07:43.927 SQL [1877]: pgsql_close() -- 22:08:23.246 INFO [7047]: COREGRADE is starting... -- 22:08:23.246 INFO [7047]: Version from config: 1.0 -- 22:08:23.246 DEBUG [7047]: Connecting to database... -- 22:08:23.246 DEBUG [7047]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:23.246 SQL [7047]: pgsql_db_connect() -- 22:08:23.250 DEBUG [7047]: Database connection successful -- 22:08:23.250 INFO [7047]: _SERVER found -- 22:08:23.250 INFO [7047]: REMOTE_ADDR = 10.0.0.15 -- 22:08:23.250 INFO [7047]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:23.250 INFO [7047]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=nieejrjllm492tlajniu700a5rf8v9tu -- 22:08:23.250 INFO [7047]: QUERY_STRING = /home/howitworks -- 22:08:23.250 INFO [7047]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:08:23.287 INFO [7047]: COREGRADE is stopping... -- 22:08:23.287 DEBUG [7047]: Closing database connection -- 22:08:23.287 SQL [7047]: pgsql_close() -- 22:08:23.425 INFO [7047]: COREGRADE is starting... -- 22:08:23.425 INFO [7047]: Version from config: 1.0 -- 22:08:23.425 DEBUG [7047]: Connecting to database... -- 22:08:23.425 DEBUG [7047]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:23.425 SQL [7047]: pgsql_db_connect() -- 22:08:23.430 DEBUG [7047]: Database connection successful -- 22:08:23.430 INFO [7047]: _SERVER found -- 22:08:23.430 INFO [7047]: REMOTE_ADDR = 10.0.0.15 -- 22:08:23.430 INFO [7047]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:23.430 INFO [7047]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=nieejrjllm492tlajniu700a5rf8v9tu -- 22:08:23.430 INFO [7047]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:08:23.430 INFO [7047]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:08:23.442 INFO [7047]: COREGRADE is stopping... -- 22:08:23.442 DEBUG [7047]: Closing database connection -- 22:08:23.442 SQL [7047]: pgsql_close() -- 22:08:27.857 INFO [1880]: COREGRADE is starting... -- 22:08:27.857 INFO [1880]: Version from config: 1.0 -- 22:08:27.857 DEBUG [1880]: Connecting to database... -- 22:08:27.857 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:27.857 SQL [1880]: pgsql_db_connect() -- 22:08:27.861 DEBUG [1880]: Database connection successful -- 22:08:27.861 INFO [1880]: _SERVER found -- 22:08:27.861 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 22:08:27.861 INFO [1880]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:27.861 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.531767543.1586652800; ci_session=l588iei87im6kemjvtge48u979k7bvte -- 22:08:27.861 INFO [1880]: QUERY_STRING = -- 22:08:27.861 INFO [1880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:08:27.895 INFO [1880]: COREGRADE is stopping... -- 22:08:27.895 DEBUG [1880]: Closing database connection -- 22:08:27.895 SQL [1880]: pgsql_close() -- 22:08:28.053 INFO [1880]: COREGRADE is starting... -- 22:08:28.054 INFO [1880]: Version from config: 1.0 -- 22:08:28.054 DEBUG [1880]: Connecting to database... -- 22:08:28.054 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:28.054 SQL [1880]: pgsql_db_connect() -- 22:08:28.058 DEBUG [1880]: Database connection successful -- 22:08:28.058 INFO [1880]: _SERVER found -- 22:08:28.058 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 22:08:28.058 INFO [1880]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:28.058 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.531767543.1586652800; ci_session=3edutff4llqcd6c7bci5dq61bjmj14bk -- 22:08:28.058 INFO [1880]: QUERY_STRING = /assets/img/footer_1.jpg -- 22:08:28.058 INFO [1880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:08:28.069 INFO [1880]: COREGRADE is stopping... -- 22:08:28.069 DEBUG [1880]: Closing database connection -- 22:08:28.069 SQL [1880]: pgsql_close() -- 22:08:46.231 INFO [32690]: COREGRADE is starting... -- 22:08:46.232 INFO [32690]: Version from config: 1.0 -- 22:08:46.232 DEBUG [32690]: Connecting to database... -- 22:08:46.232 DEBUG [32690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:46.232 SQL [32690]: pgsql_db_connect() -- 22:08:46.236 DEBUG [32690]: Database connection successful -- 22:08:46.236 INFO [32690]: _SERVER found -- 22:08:46.236 INFO [32690]: REMOTE_ADDR = 10.0.0.15 -- 22:08:46.236 INFO [32690]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:46.236 INFO [32690]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=nieejrjllm492tlajniu700a5rf8v9tu -- 22:08:46.236 INFO [32690]: QUERY_STRING = /home/howitworks -- 22:08:46.236 INFO [32690]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:08:46.268 INFO [32690]: COREGRADE is stopping... -- 22:08:46.269 DEBUG [32690]: Closing database connection -- 22:08:46.269 SQL [32690]: pgsql_close() -- 22:08:46.415 INFO [32690]: COREGRADE is starting... -- 22:08:46.416 INFO [32690]: Version from config: 1.0 -- 22:08:46.416 DEBUG [32690]: Connecting to database... -- 22:08:46.416 DEBUG [32690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:46.416 SQL [32690]: pgsql_db_connect() -- 22:08:46.420 DEBUG [32690]: Database connection successful -- 22:08:46.420 INFO [32690]: _SERVER found -- 22:08:46.420 INFO [32690]: REMOTE_ADDR = 10.0.0.15 -- 22:08:46.420 INFO [32690]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:46.420 INFO [32690]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=nieejrjllm492tlajniu700a5rf8v9tu -- 22:08:46.420 INFO [32690]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:08:46.420 INFO [32690]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:08:46.432 INFO [32690]: COREGRADE is stopping... -- 22:08:46.432 DEBUG [32690]: Closing database connection -- 22:08:46.432 SQL [32690]: pgsql_close() -- 22:09:31.621 INFO [1878]: COREGRADE is starting... -- 22:09:31.621 INFO [1878]: Version from config: 1.0 -- 22:09:31.621 DEBUG [1878]: Connecting to database... -- 22:09:31.621 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:09:31.621 SQL [1878]: pgsql_db_connect() -- 22:09:31.626 DEBUG [1878]: Database connection successful -- 22:09:31.626 INFO [1878]: _SERVER found -- 22:09:31.626 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 22:09:31.626 INFO [1878]: SERVER_NAME = oameye.works.coregrade.com -- 22:09:31.626 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=nieejrjllm492tlajniu700a5rf8v9tu -- 22:09:31.626 INFO [1878]: QUERY_STRING = /home/howitworks -- 22:09:31.626 INFO [1878]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:09:31.658 INFO [1878]: COREGRADE is stopping... -- 22:09:31.658 DEBUG [1878]: Closing database connection -- 22:09:31.658 SQL [1878]: pgsql_close() -- 22:09:31.801 INFO [1878]: COREGRADE is starting... -- 22:09:31.801 INFO [1878]: Version from config: 1.0 -- 22:09:31.801 DEBUG [1878]: Connecting to database... -- 22:09:31.801 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:09:31.801 SQL [1878]: pgsql_db_connect() -- 22:09:31.806 DEBUG [1878]: Database connection successful -- 22:09:31.806 INFO [1878]: _SERVER found -- 22:09:31.806 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 22:09:31.806 INFO [1878]: SERVER_NAME = oameye.works.coregrade.com -- 22:09:31.806 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=nieejrjllm492tlajniu700a5rf8v9tu -- 22:09:31.806 INFO [1878]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:09:31.806 INFO [1878]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:09:31.817 INFO [1878]: COREGRADE is stopping... -- 22:09:31.817 DEBUG [1878]: Closing database connection -- 22:09:31.817 SQL [1878]: pgsql_close() -- 22:09:34.217 INFO [1878]: COREGRADE is starting... -- 22:09:34.217 INFO [1878]: Version from config: 1.0 -- 22:09:34.217 DEBUG [1878]: Connecting to database... -- 22:09:34.217 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:09:34.217 SQL [1878]: pgsql_db_connect() -- 22:09:34.221 DEBUG [1878]: Database connection successful -- 22:09:34.221 INFO [1878]: _SERVER found -- 22:09:34.221 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 22:09:34.221 INFO [1878]: SERVER_NAME = oameye.works.coregrade.com -- 22:09:34.222 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=nieejrjllm492tlajniu700a5rf8v9tu -- 22:09:34.222 INFO [1878]: QUERY_STRING = /home/howitworks -- 22:09:34.222 INFO [1878]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:09:34.253 INFO [1878]: COREGRADE is stopping... -- 22:09:34.253 DEBUG [1878]: Closing database connection -- 22:09:34.253 SQL [1878]: pgsql_close() -- 22:09:55.193 INFO [7039]: COREGRADE is starting... -- 22:09:55.194 INFO [7039]: Version from config: 1.0 -- 22:09:55.194 DEBUG [7039]: Connecting to database... -- 22:09:55.194 DEBUG [7039]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:09:55.194 SQL [7039]: pgsql_db_connect() -- 22:09:55.198 DEBUG [7039]: Database connection successful -- 22:09:55.198 INFO [7039]: _SERVER found -- 22:09:55.198 INFO [7039]: REMOTE_ADDR = 10.0.0.15 -- 22:09:55.198 INFO [7039]: SERVER_NAME = oameye.works.coregrade.com -- 22:09:55.198 INFO [7039]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=nieejrjllm492tlajniu700a5rf8v9tu -- 22:09:55.198 INFO [7039]: QUERY_STRING = /home/howitworks -- 22:09:55.198 INFO [7039]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:09:55.234 INFO [7039]: COREGRADE is stopping... -- 22:09:55.234 DEBUG [7039]: Closing database connection -- 22:09:55.234 SQL [7039]: pgsql_close() -- 22:10:52.118 INFO [7197]: COREGRADE is starting... -- 22:10:52.118 INFO [7197]: Version from config: 1.0 -- 22:10:52.118 DEBUG [7197]: Connecting to database... -- 22:10:52.118 DEBUG [7197]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:10:52.118 SQL [7197]: pgsql_db_connect() -- 22:10:52.123 DEBUG [7197]: Database connection successful -- 22:10:52.123 INFO [7197]: _SERVER found -- 22:10:52.123 INFO [7197]: REMOTE_ADDR = 10.0.0.15 -- 22:10:52.123 INFO [7197]: SERVER_NAME = oameye.works.coregrade.com -- 22:10:52.123 INFO [7197]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=nieejrjllm492tlajniu700a5rf8v9tu -- 22:10:52.123 INFO [7197]: QUERY_STRING = /home/howitworks -- 22:10:52.123 INFO [7197]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:10:52.161 INFO [7197]: COREGRADE is stopping... -- 22:10:52.161 DEBUG [7197]: Closing database connection -- 22:10:52.161 SQL [7197]: pgsql_close() -- 22:11:30.370 INFO [1879]: COREGRADE is starting... -- 22:11:30.371 INFO [1879]: Version from config: 1.0 -- 22:11:30.371 DEBUG [1879]: Connecting to database... -- 22:11:30.371 DEBUG [1879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:11:30.371 SQL [1879]: pgsql_db_connect() -- 22:11:30.375 DEBUG [1879]: Database connection successful -- 22:11:30.375 INFO [1879]: _SERVER found -- 22:11:30.375 INFO [1879]: REMOTE_ADDR = 10.0.0.15 -- 22:11:30.375 INFO [1879]: SERVER_NAME = oameye.works.coregrade.com -- 22:11:30.375 INFO [1879]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=nieejrjllm492tlajniu700a5rf8v9tu -- 22:11:30.375 INFO [1879]: QUERY_STRING = /home/howitworks -- 22:11:30.375 INFO [1879]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:11:30.407 INFO [1879]: COREGRADE is stopping... -- 22:11:30.407 DEBUG [1879]: Closing database connection -- 22:11:30.407 SQL [1879]: pgsql_close() -- 22:11:54.797 INFO [1876]: COREGRADE is starting... -- 22:11:54.797 INFO [1876]: Version from config: 1.0 -- 22:11:54.797 DEBUG [1876]: Connecting to database... -- 22:11:54.797 DEBUG [1876]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:11:54.797 SQL [1876]: pgsql_db_connect() -- 22:11:54.801 DEBUG [1876]: Database connection successful -- 22:11:54.801 INFO [1876]: _SERVER found -- 22:11:54.801 INFO [1876]: REMOTE_ADDR = 10.0.0.15 -- 22:11:54.801 INFO [1876]: SERVER_NAME = oameye.works.coregrade.com -- 22:11:54.801 INFO [1876]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; _gat_gtag_UA_54829827_2=1 -- 22:11:54.801 INFO [1876]: QUERY_STRING = -- 22:11:54.801 INFO [1876]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:11:54.835 INFO [1876]: COREGRADE is stopping... -- 22:11:54.835 DEBUG [1876]: Closing database connection -- 22:11:54.835 SQL [1876]: pgsql_close() -- 22:11:55.257 INFO [1876]: COREGRADE is starting... -- 22:11:55.257 INFO [1876]: Version from config: 1.0 -- 22:11:55.257 DEBUG [1876]: Connecting to database... -- 22:11:55.257 DEBUG [1876]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:11:55.257 SQL [1876]: pgsql_db_connect() -- 22:11:55.261 DEBUG [1876]: Database connection successful -- 22:11:55.261 INFO [1876]: _SERVER found -- 22:11:55.261 INFO [1876]: REMOTE_ADDR = 10.0.0.15 -- 22:11:55.261 INFO [1876]: SERVER_NAME = oameye.works.coregrade.com -- 22:11:55.261 INFO [1876]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; _gat_gtag_UA_54829827_2=1; ci_session=c1nohdj1uo4t0sk4tfm23q60lfva3dfd -- 22:11:55.261 INFO [1876]: QUERY_STRING = /assets/img/footer_1.jpg -- 22:11:55.261 INFO [1876]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:11:55.272 INFO [1876]: COREGRADE is stopping... -- 22:11:55.272 DEBUG [1876]: Closing database connection -- 22:11:55.273 SQL [1876]: pgsql_close() -- 22:12:02.532 INFO [32689]: COREGRADE is starting... -- 22:12:02.532 INFO [32689]: Version from config: 1.0 -- 22:12:02.532 DEBUG [32689]: Connecting to database... -- 22:12:02.532 DEBUG [32689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:12:02.532 SQL [32689]: pgsql_db_connect() -- 22:12:02.536 DEBUG [32689]: Database connection successful -- 22:12:02.536 INFO [32689]: _SERVER found -- 22:12:02.536 INFO [32689]: REMOTE_ADDR = 10.0.0.15 -- 22:12:02.536 INFO [32689]: SERVER_NAME = oameye.works.coregrade.com -- 22:12:02.536 INFO [32689]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=nieejrjllm492tlajniu700a5rf8v9tu -- 22:12:02.536 INFO [32689]: QUERY_STRING = /home/howitworks -- 22:12:02.536 INFO [32689]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:12:02.568 INFO [32689]: COREGRADE is stopping... -- 22:12:02.568 DEBUG [32689]: Closing database connection -- 22:12:02.568 SQL [32689]: pgsql_close() -- 22:12:10.974 INFO [1877]: COREGRADE is starting... -- 22:12:10.974 INFO [1877]: Version from config: 1.0 -- 22:12:10.974 DEBUG [1877]: Connecting to database... -- 22:12:10.974 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:12:10.974 SQL [1877]: pgsql_db_connect() -- 22:12:10.978 DEBUG [1877]: Database connection successful -- 22:12:10.978 INFO [1877]: _SERVER found -- 22:12:10.978 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 22:12:10.978 INFO [1877]: SERVER_NAME = oameye.works.coregrade.com -- 22:12:10.978 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; _gat_gtag_UA_54829827_2=1; ci_session=c1nohdj1uo4t0sk4tfm23q60lfva3dfd -- 22:12:10.978 INFO [1877]: QUERY_STRING = /home/faq -- 22:12:10.978 INFO [1877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:12:11.011 INFO [1877]: COREGRADE is stopping... -- 22:12:11.011 DEBUG [1877]: Closing database connection -- 22:12:11.012 SQL [1877]: pgsql_close() -- 22:12:11.260 INFO [1877]: COREGRADE is starting... -- 22:12:11.260 INFO [1877]: Version from config: 1.0 -- 22:12:11.260 DEBUG [1877]: Connecting to database... -- 22:12:11.260 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:12:11.260 SQL [1877]: pgsql_db_connect() -- 22:12:11.265 DEBUG [1877]: Database connection successful -- 22:12:11.265 INFO [1877]: _SERVER found -- 22:12:11.265 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 22:12:11.265 INFO [1877]: SERVER_NAME = oameye.works.coregrade.com -- 22:12:11.265 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; _gat_gtag_UA_54829827_2=1; ci_session=c1nohdj1uo4t0sk4tfm23q60lfva3dfd -- 22:12:11.265 INFO [1877]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:12:11.265 INFO [1877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:12:11.276 INFO [1877]: COREGRADE is stopping... -- 22:12:11.276 DEBUG [1877]: Closing database connection -- 22:12:11.276 SQL [1877]: pgsql_close() -- 22:12:29.991 INFO [7047]: COREGRADE is starting... -- 22:12:29.992 INFO [7047]: Version from config: 1.0 -- 22:12:29.992 DEBUG [7047]: Connecting to database... -- 22:12:29.992 DEBUG [7047]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:12:29.992 SQL [7047]: pgsql_db_connect() -- 22:12:29.996 DEBUG [7047]: Database connection successful -- 22:12:29.996 INFO [7047]: _SERVER found -- 22:12:29.996 INFO [7047]: REMOTE_ADDR = 10.0.0.15 -- 22:12:29.996 INFO [7047]: SERVER_NAME = oameye.works.coregrade.com -- 22:12:29.996 INFO [7047]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=nieejrjllm492tlajniu700a5rf8v9tu -- 22:12:29.996 INFO [7047]: QUERY_STRING = /home/howitworks -- 22:12:29.996 INFO [7047]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:12:30.029 INFO [7047]: COREGRADE is stopping... -- 22:12:30.030 DEBUG [7047]: Closing database connection -- 22:12:30.030 SQL [7047]: pgsql_close() -- 22:12:34.758 INFO [7047]: COREGRADE is starting... -- 22:12:34.758 INFO [7047]: Version from config: 1.0 -- 22:12:34.758 DEBUG [7047]: Connecting to database... -- 22:12:34.758 DEBUG [7047]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:12:34.758 SQL [7047]: pgsql_db_connect() -- 22:12:34.763 DEBUG [7047]: Database connection successful -- 22:12:34.763 INFO [7047]: _SERVER found -- 22:12:34.763 INFO [7047]: REMOTE_ADDR = 10.0.0.15 -- 22:12:34.763 INFO [7047]: SERVER_NAME = oameye.works.coregrade.com -- 22:12:34.763 INFO [7047]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=nieejrjllm492tlajniu700a5rf8v9tu -- 22:12:34.763 INFO [7047]: QUERY_STRING = -- 22:12:34.763 INFO [7047]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:12:34.797 INFO [7047]: COREGRADE is stopping... -- 22:12:34.797 DEBUG [7047]: Closing database connection -- 22:12:34.797 SQL [7047]: pgsql_close() -- 22:12:35.034 INFO [7047]: COREGRADE is starting... -- 22:12:35.034 INFO [7047]: Version from config: 1.0 -- 22:12:35.034 DEBUG [7047]: Connecting to database... -- 22:12:35.034 DEBUG [7047]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:12:35.034 SQL [7047]: pgsql_db_connect() -- 22:12:35.038 DEBUG [7047]: Database connection successful -- 22:12:35.038 INFO [7047]: _SERVER found -- 22:12:35.038 INFO [7047]: REMOTE_ADDR = 10.0.0.15 -- 22:12:35.038 INFO [7047]: SERVER_NAME = oameye.works.coregrade.com -- 22:12:35.038 INFO [7047]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=nieejrjllm492tlajniu700a5rf8v9tu -- 22:12:35.038 INFO [7047]: QUERY_STRING = /assets/img/footer_1.jpg -- 22:12:35.038 INFO [7047]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:12:35.050 INFO [7047]: COREGRADE is stopping... -- 22:12:35.050 DEBUG [7047]: Closing database connection -- 22:12:35.050 SQL [7047]: pgsql_close() -- 22:12:43.420 INFO [1880]: COREGRADE is starting... -- 22:12:43.420 INFO [1880]: Version from config: 1.0 -- 22:12:43.420 DEBUG [1880]: Connecting to database... -- 22:12:43.420 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:12:43.420 SQL [1880]: pgsql_db_connect() -- 22:12:43.424 DEBUG [1880]: Database connection successful -- 22:12:43.424 INFO [1880]: _SERVER found -- 22:12:43.424 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 22:12:43.424 INFO [1880]: SERVER_NAME = oameye.works.coregrade.com -- 22:12:43.424 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=nieejrjllm492tlajniu700a5rf8v9tu; _gat_gtag_UA_54829827_2=1 -- 22:12:43.424 INFO [1880]: QUERY_STRING = /home/terms -- 22:12:43.424 INFO [1880]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:12:43.456 INFO [1880]: COREGRADE is stopping... -- 22:12:43.456 DEBUG [1880]: Closing database connection -- 22:12:43.456 SQL [1880]: pgsql_close() -- 22:12:43.646 INFO [1880]: COREGRADE is starting... -- 22:12:43.646 INFO [1880]: Version from config: 1.0 -- 22:12:43.646 DEBUG [1880]: Connecting to database... -- 22:12:43.646 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:12:43.646 SQL [1880]: pgsql_db_connect() -- 22:12:43.650 DEBUG [1880]: Database connection successful -- 22:12:43.650 INFO [1880]: _SERVER found -- 22:12:43.650 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 22:12:43.650 INFO [1880]: SERVER_NAME = oameye.works.coregrade.com -- 22:12:43.650 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=nieejrjllm492tlajniu700a5rf8v9tu; _gat_gtag_UA_54829827_2=1 -- 22:12:43.650 INFO [1880]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:12:43.650 INFO [1880]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:12:43.662 INFO [1880]: COREGRADE is stopping... -- 22:12:43.662 DEBUG [1880]: Closing database connection -- 22:12:43.662 SQL [1880]: pgsql_close() -- 22:12:46.662 INFO [1880]: COREGRADE is starting... -- 22:12:46.662 INFO [1880]: Version from config: 1.0 -- 22:12:46.662 DEBUG [1880]: Connecting to database... -- 22:12:46.662 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:12:46.662 SQL [1880]: pgsql_db_connect() -- 22:12:46.666 DEBUG [1880]: Database connection successful -- 22:12:46.666 INFO [1880]: _SERVER found -- 22:12:46.666 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 22:12:46.666 INFO [1880]: SERVER_NAME = oameye.works.coregrade.com -- 22:12:46.666 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=nieejrjllm492tlajniu700a5rf8v9tu; _gat_gtag_UA_54829827_2=1 -- 22:12:46.666 INFO [1880]: QUERY_STRING = -- 22:12:46.666 INFO [1880]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:12:46.698 INFO [1880]: COREGRADE is stopping... -- 22:12:46.698 DEBUG [1880]: Closing database connection -- 22:12:46.698 SQL [1880]: pgsql_close() -- 22:12:51.491 INFO [1880]: COREGRADE is starting... -- 22:12:51.492 INFO [1880]: Version from config: 1.0 -- 22:12:51.492 DEBUG [1880]: Connecting to database... -- 22:12:51.492 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:12:51.492 SQL [1880]: pgsql_db_connect() -- 22:12:51.496 DEBUG [1880]: Database connection successful -- 22:12:51.496 INFO [1880]: _SERVER found -- 22:12:51.496 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 22:12:51.496 INFO [1880]: SERVER_NAME = oameye.works.coregrade.com -- 22:12:51.496 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; _gat_gtag_UA_54829827_2=1; ci_session=isiuhto140ahhgbukea7oe9oqrvc9nhg -- 22:12:51.496 INFO [1880]: QUERY_STRING = /home/aboutus -- 22:12:51.496 INFO [1880]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:12:51.530 INFO [1880]: COREGRADE is stopping... -- 22:12:51.530 DEBUG [1880]: Closing database connection -- 22:12:51.530 SQL [1880]: pgsql_close() -- 22:12:53.922 INFO [1880]: COREGRADE is starting... -- 22:12:53.922 INFO [1880]: Version from config: 1.0 -- 22:12:53.922 DEBUG [1880]: Connecting to database... -- 22:12:53.922 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:12:53.922 SQL [1880]: pgsql_db_connect() -- 22:12:53.926 DEBUG [1880]: Database connection successful -- 22:12:53.926 INFO [1880]: _SERVER found -- 22:12:53.926 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 22:12:53.926 INFO [1880]: SERVER_NAME = oameye.works.coregrade.com -- 22:12:53.926 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; _gat_gtag_UA_54829827_2=1; ci_session=isiuhto140ahhgbukea7oe9oqrvc9nhg -- 22:12:53.926 INFO [1880]: QUERY_STRING = -- 22:12:53.926 INFO [1880]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:12:53.959 INFO [1880]: COREGRADE is stopping... -- 22:12:53.959 DEBUG [1880]: Closing database connection -- 22:12:53.959 SQL [1880]: pgsql_close() -- 22:12:56.361 INFO [1880]: COREGRADE is starting... -- 22:12:56.361 INFO [1880]: Version from config: 1.0 -- 22:12:56.361 DEBUG [1880]: Connecting to database... -- 22:12:56.361 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:12:56.361 SQL [1880]: pgsql_db_connect() -- 22:12:56.366 DEBUG [1880]: Database connection successful -- 22:12:56.366 INFO [1880]: _SERVER found -- 22:12:56.366 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 22:12:56.366 INFO [1880]: SERVER_NAME = oameye.works.coregrade.com -- 22:12:56.366 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; _gat_gtag_UA_54829827_2=1; ci_session=isiuhto140ahhgbukea7oe9oqrvc9nhg -- 22:12:56.366 INFO [1880]: QUERY_STRING = /home/faq -- 22:12:56.366 INFO [1880]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:12:56.398 INFO [1880]: COREGRADE is stopping... -- 22:12:56.398 DEBUG [1880]: Closing database connection -- 22:12:56.398 SQL [1880]: pgsql_close() -- 22:14:01.242 INFO [32690]: COREGRADE is starting... -- 22:14:01.243 INFO [32690]: Version from config: 1.0 -- 22:14:01.243 DEBUG [32690]: Connecting to database... -- 22:14:01.243 DEBUG [32690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:14:01.243 SQL [32690]: pgsql_db_connect() -- 22:14:01.248 DEBUG [32690]: Database connection successful -- 22:14:01.248 INFO [32690]: _SERVER found -- 22:14:01.248 INFO [32690]: REMOTE_ADDR = 10.0.0.15 -- 22:14:01.248 INFO [32690]: SERVER_NAME = oameye.works.coregrade.com -- 22:14:01.248 INFO [32690]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=isiuhto140ahhgbukea7oe9oqrvc9nhg -- 22:14:01.248 INFO [32690]: QUERY_STRING = /home/faq -- 22:14:01.248 INFO [32690]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:14:01.283 INFO [32690]: COREGRADE is stopping... -- 22:14:01.283 DEBUG [32690]: Closing database connection -- 22:14:01.283 SQL [32690]: pgsql_close() -- 22:14:11.523 INFO [1878]: COREGRADE is starting... -- 22:14:11.523 INFO [1878]: Version from config: 1.0 -- 22:14:11.523 DEBUG [1878]: Connecting to database... -- 22:14:11.523 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:14:11.523 SQL [1878]: pgsql_db_connect() -- 22:14:11.528 DEBUG [1878]: Database connection successful -- 22:14:11.528 INFO [1878]: _SERVER found -- 22:14:11.528 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 22:14:11.528 INFO [1878]: SERVER_NAME = oameye.works.coregrade.com -- 22:14:11.528 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=5j9jjcmrhn1ct1oo032ta6tq3cno35j2 -- 22:14:11.528 INFO [1878]: QUERY_STRING = /home/howitworks -- 22:14:11.528 INFO [1878]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:14:11.564 INFO [1878]: COREGRADE is stopping... -- 22:14:11.564 DEBUG [1878]: Closing database connection -- 22:14:11.564 SQL [1878]: pgsql_close() -- 22:14:11.981 INFO [1878]: COREGRADE is starting... -- 22:14:11.982 INFO [1878]: Version from config: 1.0 -- 22:14:11.982 DEBUG [1878]: Connecting to database... -- 22:14:11.982 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:14:11.982 SQL [1878]: pgsql_db_connect() -- 22:14:11.987 DEBUG [1878]: Database connection successful -- 22:14:11.987 INFO [1878]: _SERVER found -- 22:14:11.987 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 22:14:11.987 INFO [1878]: SERVER_NAME = oameye.works.coregrade.com -- 22:14:11.987 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=9hrii440mb5n4ncnom9vreeqnmvutuia -- 22:14:11.987 INFO [1878]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:14:11.987 INFO [1878]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:14:11.998 INFO [1878]: COREGRADE is stopping... -- 22:14:11.999 DEBUG [1878]: Closing database connection -- 22:14:11.999 SQL [1878]: pgsql_close() -- 22:14:32.715 INFO [7039]: COREGRADE is starting... -- 22:14:32.715 INFO [7039]: Version from config: 1.0 -- 22:14:32.715 DEBUG [7039]: Connecting to database... -- 22:14:32.715 DEBUG [7039]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:14:32.715 SQL [7039]: pgsql_db_connect() -- 22:14:32.720 DEBUG [7039]: Database connection successful -- 22:14:32.720 INFO [7039]: _SERVER found -- 22:14:32.720 INFO [7039]: REMOTE_ADDR = 10.0.0.15 -- 22:14:32.720 INFO [7039]: SERVER_NAME = oameye.works.coregrade.com -- 22:14:32.720 INFO [7039]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=isiuhto140ahhgbukea7oe9oqrvc9nhg -- 22:14:32.720 INFO [7039]: QUERY_STRING = -- 22:14:32.720 INFO [7039]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:14:32.757 INFO [7039]: COREGRADE is stopping... -- 22:14:32.757 DEBUG [7039]: Closing database connection -- 22:14:32.757 SQL [7039]: pgsql_close() -- 22:14:35.449 INFO [7039]: COREGRADE is starting... -- 22:14:35.449 INFO [7039]: Version from config: 1.0 -- 22:14:35.449 DEBUG [7039]: Connecting to database... -- 22:14:35.449 DEBUG [7039]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:14:35.449 SQL [7039]: pgsql_db_connect() -- 22:14:35.454 DEBUG [7039]: Database connection successful -- 22:14:35.454 INFO [7039]: _SERVER found -- 22:14:35.454 INFO [7039]: REMOTE_ADDR = 10.0.0.15 -- 22:14:35.454 INFO [7039]: SERVER_NAME = oameye.works.coregrade.com -- 22:14:35.454 INFO [7039]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=isiuhto140ahhgbukea7oe9oqrvc9nhg; _gat_gtag_UA_54829827_2=1 -- 22:14:35.454 INFO [7039]: QUERY_STRING = /home/howitworks -- 22:14:35.454 INFO [7039]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:14:35.490 INFO [7039]: COREGRADE is stopping... -- 22:14:35.490 DEBUG [7039]: Closing database connection -- 22:14:35.490 SQL [7039]: pgsql_close() -- 22:16:04.974 INFO [7197]: COREGRADE is starting... -- 22:16:04.974 INFO [7197]: Version from config: 1.0 -- 22:16:04.974 DEBUG [7197]: Connecting to database... -- 22:16:04.974 DEBUG [7197]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:16:04.974 SQL [7197]: pgsql_db_connect() -- 22:16:04.980 DEBUG [7197]: Database connection successful -- 22:16:04.980 INFO [7197]: _SERVER found -- 22:16:04.980 INFO [7197]: REMOTE_ADDR = 10.0.0.15 -- 22:16:04.980 INFO [7197]: SERVER_NAME = oameye.works.coregrade.com -- 22:16:04.980 INFO [7197]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=isiuhto140ahhgbukea7oe9oqrvc9nhg -- 22:16:04.980 INFO [7197]: QUERY_STRING = /home/howitworks -- 22:16:04.980 INFO [7197]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:16:05.018 INFO [7197]: COREGRADE is stopping... -- 22:16:05.018 DEBUG [7197]: Closing database connection -- 22:16:05.018 SQL [7197]: pgsql_close() -- 22:16:57.775 INFO [1879]: COREGRADE is starting... -- 22:16:57.775 INFO [1879]: Version from config: 1.0 -- 22:16:57.775 DEBUG [1879]: Connecting to database... -- 22:16:57.775 DEBUG [1879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:16:57.775 SQL [1879]: pgsql_db_connect() -- 22:16:57.780 DEBUG [1879]: Database connection successful -- 22:16:57.780 INFO [1879]: _SERVER found -- 22:16:57.780 INFO [1879]: REMOTE_ADDR = 10.0.0.15 -- 22:16:57.780 INFO [1879]: SERVER_NAME = oameye.works.coregrade.com -- 22:16:57.780 INFO [1879]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=isiuhto140ahhgbukea7oe9oqrvc9nhg -- 22:16:57.780 INFO [1879]: QUERY_STRING = /home/howitworks -- 22:16:57.780 INFO [1879]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:16:57.812 INFO [1879]: COREGRADE is stopping... -- 22:16:57.812 DEBUG [1879]: Closing database connection -- 22:16:57.812 SQL [1879]: pgsql_close() -- 22:17:00.929 INFO [1879]: COREGRADE is starting... -- 22:17:00.929 INFO [1879]: Version from config: 1.0 -- 22:17:00.929 DEBUG [1879]: Connecting to database... -- 22:17:00.929 DEBUG [1879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:17:00.929 SQL [1879]: pgsql_db_connect() -- 22:17:00.934 DEBUG [1879]: Database connection successful -- 22:17:00.934 INFO [1879]: _SERVER found -- 22:17:00.934 INFO [1879]: REMOTE_ADDR = 10.0.0.15 -- 22:17:00.934 INFO [1879]: SERVER_NAME = oameye.works.coregrade.com -- 22:17:00.934 INFO [1879]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=isiuhto140ahhgbukea7oe9oqrvc9nhg -- 22:17:00.934 INFO [1879]: QUERY_STRING = /home/howitworks -- 22:17:00.934 INFO [1879]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:17:00.965 INFO [1879]: COREGRADE is stopping... -- 22:17:00.965 DEBUG [1879]: Closing database connection -- 22:17:00.965 SQL [1879]: pgsql_close() -- 22:17:31.474 INFO [1876]: COREGRADE is starting... -- 22:17:31.474 INFO [1876]: Version from config: 1.0 -- 22:17:31.474 DEBUG [1876]: Connecting to database... -- 22:17:31.474 DEBUG [1876]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:17:31.474 SQL [1876]: pgsql_db_connect() -- 22:17:31.479 DEBUG [1876]: Database connection successful -- 22:17:31.479 INFO [1876]: _SERVER found -- 22:17:31.479 INFO [1876]: REMOTE_ADDR = 10.0.0.15 -- 22:17:31.479 INFO [1876]: SERVER_NAME = oameye.works.coregrade.com -- 22:17:31.479 INFO [1876]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=isiuhto140ahhgbukea7oe9oqrvc9nhg -- 22:17:31.479 INFO [1876]: QUERY_STRING = /home/howitworks -- 22:17:31.479 INFO [1876]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:17:31.512 INFO [1876]: COREGRADE is stopping... -- 22:17:31.512 DEBUG [1876]: Closing database connection -- 22:17:31.512 SQL [1876]: pgsql_close() -- 22:17:58.974 INFO [32689]: COREGRADE is starting... -- 22:17:58.974 INFO [32689]: Version from config: 1.0 -- 22:17:58.974 DEBUG [32689]: Connecting to database... -- 22:17:58.974 DEBUG [32689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:17:58.974 SQL [32689]: pgsql_db_connect() -- 22:17:58.978 DEBUG [32689]: Database connection successful -- 22:17:58.978 INFO [32689]: _SERVER found -- 22:17:58.978 INFO [32689]: REMOTE_ADDR = 10.0.0.15 -- 22:17:58.978 INFO [32689]: SERVER_NAME = oameye.works.coregrade.com -- 22:17:58.978 INFO [32689]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=isiuhto140ahhgbukea7oe9oqrvc9nhg -- 22:17:58.978 INFO [32689]: QUERY_STRING = /home/howitworks -- 22:17:58.978 INFO [32689]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:17:59.012 INFO [32689]: COREGRADE is stopping... -- 22:17:59.012 DEBUG [32689]: Closing database connection -- 22:17:59.012 SQL [32689]: pgsql_close() -- 22:18:27.530 INFO [1877]: COREGRADE is starting... -- 22:18:27.530 INFO [1877]: Version from config: 1.0 -- 22:18:27.530 DEBUG [1877]: Connecting to database... -- 22:18:27.530 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:18:27.530 SQL [1877]: pgsql_db_connect() -- 22:18:27.534 DEBUG [1877]: Database connection successful -- 22:18:27.534 INFO [1877]: _SERVER found -- 22:18:27.534 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 22:18:27.534 INFO [1877]: SERVER_NAME = oameye.works.coregrade.com -- 22:18:27.534 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=c1nohdj1uo4t0sk4tfm23q60lfva3dfd -- 22:18:27.534 INFO [1877]: QUERY_STRING = -- 22:18:27.534 INFO [1877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:18:27.567 INFO [1877]: COREGRADE is stopping... -- 22:18:27.567 DEBUG [1877]: Closing database connection -- 22:18:27.567 SQL [1877]: pgsql_close() -- 22:18:47.257 INFO [7047]: COREGRADE is starting... -- 22:18:47.257 INFO [7047]: Version from config: 1.0 -- 22:18:47.257 DEBUG [7047]: Connecting to database... -- 22:18:47.257 DEBUG [7047]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:18:47.257 SQL [7047]: pgsql_db_connect() -- 22:18:47.261 DEBUG [7047]: Database connection successful -- 22:18:47.261 INFO [7047]: _SERVER found -- 22:18:47.262 INFO [7047]: REMOTE_ADDR = 10.0.0.15 -- 22:18:47.262 INFO [7047]: SERVER_NAME = oameye.works.coregrade.com -- 22:18:47.262 INFO [7047]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=pe6ntt5n58jnp17b5ef3go526fal66p5; _gat_gtag_UA_54829827_2=1 -- 22:18:47.262 INFO [7047]: QUERY_STRING = /auth -- 22:18:47.262 INFO [7047]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:18:47.296 INFO [7047]: COREGRADE is stopping... -- 22:18:47.296 DEBUG [7047]: Closing database connection -- 22:18:47.296 SQL [7047]: pgsql_close() -- 22:18:47.423 INFO [7047]: COREGRADE is starting... -- 22:18:47.423 INFO [7047]: Version from config: 1.0 -- 22:18:47.423 DEBUG [7047]: Connecting to database... -- 22:18:47.423 DEBUG [7047]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:18:47.423 SQL [7047]: pgsql_db_connect() -- 22:18:47.427 DEBUG [7047]: Database connection successful -- 22:18:47.427 INFO [7047]: _SERVER found -- 22:18:47.427 INFO [7047]: REMOTE_ADDR = 10.0.0.15 -- 22:18:47.427 INFO [7047]: SERVER_NAME = oameye.works.coregrade.com -- 22:18:47.427 INFO [7047]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=pe6ntt5n58jnp17b5ef3go526fal66p5; _gat_gtag_UA_54829827_2=1 -- 22:18:47.427 INFO [7047]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:18:47.427 INFO [7047]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:18:47.438 INFO [7047]: COREGRADE is stopping... -- 22:18:47.438 DEBUG [7047]: Closing database connection -- 22:18:47.438 SQL [7047]: pgsql_close() -- 22:19:08.965 INFO [1880]: COREGRADE is starting... -- 22:19:08.965 INFO [1880]: Version from config: 1.0 -- 22:19:08.965 DEBUG [1880]: Connecting to database... -- 22:19:08.965 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:19:08.965 SQL [1880]: pgsql_db_connect() -- 22:19:08.969 DEBUG [1880]: Database connection successful -- 22:19:08.969 INFO [1880]: _SERVER found -- 22:19:08.969 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 22:19:08.969 INFO [1880]: SERVER_NAME = oameye.works.coregrade.com -- 22:19:08.969 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=pe6ntt5n58jnp17b5ef3go526fal66p5; _gat_gtag_UA_54829827_2=1 -- 22:19:08.969 INFO [1880]: QUERY_STRING = /auth -- 22:19:08.969 INFO [1880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:19:09.001 INFO [1880]: COREGRADE is stopping... -- 22:19:09.001 DEBUG [1880]: Closing database connection -- 22:19:09.001 SQL [1880]: pgsql_close() -- 22:19:09.130 INFO [1880]: COREGRADE is starting... -- 22:19:09.130 INFO [1880]: Version from config: 1.0 -- 22:19:09.130 DEBUG [1880]: Connecting to database... -- 22:19:09.130 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:19:09.130 SQL [1880]: pgsql_db_connect() -- 22:19:09.134 DEBUG [1880]: Database connection successful -- 22:19:09.134 INFO [1880]: _SERVER found -- 22:19:09.134 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 22:19:09.134 INFO [1880]: SERVER_NAME = oameye.works.coregrade.com -- 22:19:09.134 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=pe6ntt5n58jnp17b5ef3go526fal66p5; _gat_gtag_UA_54829827_2=1 -- 22:19:09.134 INFO [1880]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:19:09.134 INFO [1880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:19:09.145 INFO [1880]: COREGRADE is stopping... -- 22:19:09.145 DEBUG [1880]: Closing database connection -- 22:19:09.145 SQL [1880]: pgsql_close() -- 22:19:28.802 INFO [32690]: COREGRADE is starting... -- 22:19:28.802 INFO [32690]: Version from config: 1.0 -- 22:19:28.802 DEBUG [32690]: Connecting to database... -- 22:19:28.802 DEBUG [32690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:19:28.802 SQL [32690]: pgsql_db_connect() -- 22:19:28.806 DEBUG [32690]: Database connection successful -- 22:19:28.806 INFO [32690]: _SERVER found -- 22:19:28.806 INFO [32690]: REMOTE_ADDR = 10.0.0.15 -- 22:19:28.806 INFO [32690]: SERVER_NAME = oameye.works.coregrade.com -- 22:19:28.806 INFO [32690]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=o1u4n8jv531962vh99po6teir7ttgch2 -- 22:19:28.806 INFO [32690]: QUERY_STRING = /home/howitworks -- 22:19:28.806 INFO [32690]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:19:28.839 INFO [32690]: COREGRADE is stopping... -- 22:19:28.839 DEBUG [32690]: Closing database connection -- 22:19:28.839 SQL [32690]: pgsql_close() -- 22:19:32.989 INFO [32690]: COREGRADE is starting... -- 22:19:32.990 INFO [32690]: Version from config: 1.0 -- 22:19:32.990 DEBUG [32690]: Connecting to database... -- 22:19:32.990 DEBUG [32690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:19:32.990 SQL [32690]: pgsql_db_connect() -- 22:19:32.994 DEBUG [32690]: Database connection successful -- 22:19:32.994 INFO [32690]: _SERVER found -- 22:19:32.994 INFO [32690]: REMOTE_ADDR = 10.0.0.15 -- 22:19:32.994 INFO [32690]: SERVER_NAME = oameye.works.coregrade.com -- 22:19:32.994 INFO [32690]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=pe6ntt5n58jnp17b5ef3go526fal66p5 -- 22:19:32.994 INFO [32690]: QUERY_STRING = /auth -- 22:19:32.994 INFO [32690]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:19:33.025 INFO [32690]: COREGRADE is stopping... -- 22:19:33.025 DEBUG [32690]: Closing database connection -- 22:19:33.025 SQL [32690]: pgsql_close() -- 22:19:33.151 INFO [32690]: COREGRADE is starting... -- 22:19:33.152 INFO [32690]: Version from config: 1.0 -- 22:19:33.152 DEBUG [32690]: Connecting to database... -- 22:19:33.152 DEBUG [32690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:19:33.152 SQL [32690]: pgsql_db_connect() -- 22:19:33.156 DEBUG [32690]: Database connection successful -- 22:19:33.156 INFO [32690]: _SERVER found -- 22:19:33.156 INFO [32690]: REMOTE_ADDR = 10.0.0.15 -- 22:19:33.156 INFO [32690]: SERVER_NAME = oameye.works.coregrade.com -- 22:19:33.156 INFO [32690]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=pe6ntt5n58jnp17b5ef3go526fal66p5 -- 22:19:33.156 INFO [32690]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:19:33.156 INFO [32690]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:19:33.167 INFO [32690]: COREGRADE is stopping... -- 22:19:33.167 DEBUG [32690]: Closing database connection -- 22:19:33.167 SQL [32690]: pgsql_close() -- 22:19:54.622 INFO [1878]: COREGRADE is starting... -- 22:19:54.622 INFO [1878]: Version from config: 1.0 -- 22:19:54.622 DEBUG [1878]: Connecting to database... -- 22:19:54.622 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:19:54.622 SQL [1878]: pgsql_db_connect() -- 22:19:54.659 INFO [1878]: COREGRADE is starting... -- 22:19:54.659 INFO [1878]: Version from config: 1.0 -- 22:19:54.659 DEBUG [1878]: Connecting to database... -- 22:19:54.659 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:19:54.659 SQL [1878]: pgsql_db_connect() -- 22:19:54.663 DEBUG [1878]: Database connection successful -- 22:19:54.663 INFO [1878]: _SERVER found -- 22:19:54.663 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 22:19:54.663 INFO [1878]: SERVER_NAME = oameye.works.coregrade.com -- 22:19:54.663 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=pe6ntt5n58jnp17b5ef3go526fal66p5 -- 22:19:54.663 INFO [1878]: QUERY_STRING = -- 22:19:54.663 INFO [1878]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:19:54.663 INFO [1878]: SystemStatus()09-09-********~************ -- 22:19:54.663 INFO [1878]: long coregrade_api_main(CVars in, CVars &out) -- 22:19:54.663 INFO [1878]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 22:19:54.663 INFO [1878]: account calls -- 22:19:54.663 INFO [1878]: account_calls() -- 22:19:54.663 INFO [1878]: LoginCoreGradeAccount() -- 22:19:54.663 FLOG_MAX [1878]: REQ_STRING(username) -- 22:19:54.663 FLOG_MAX [1878]: REQ_STRING(password) -- 22:19:54.663 FLOG_MAX [1878]: REQ_STRING(sessionid) -- 22:19:54.663 FLOG_MAX [1878]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:19:54.663 SQL [1878]: pgsql_query() -- 22:19:54.663 SQL [1878]: About to run query: -- 22:19:54.663 SQL [1878]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye@chiefsoft.com') AND password= md5('may12002!') -- 22:19:54.667 SQL [1878]: Found rows: 0 -- 22:19:54.667 SQL [1878]: Found rows: 0 -- 22:19:54.667 INFO [1878]: long SessionCheck(long uid, const char *sessionid, int create ) -- 22:19:54.667 FLOG_MAX [1878]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:19:54.667 SQL [1878]: pgsql_query() -- 22:19:54.667 SQL [1878]: About to run query: -- 22:19:54.667 SQL [1878]: SELECT upper(md5( now()::text )) AS folder -- 22:19:54.667 SQL [1878]: Found rows: 1 -- 22:19:54.668 FLOG_MAX [1878]: load_db_record(SELECT upper(md5( now()::text )) AS folder) num_cols=1 -- 22:19:54.668 FLOG_MAX [1878]: update_db_record() -- 22:19:54.668 FLOG_MAX [1878]: Bad parameter exception: 'id' -- 22:19:54.668 INFO [1878]: RET: folder=F436DD989AFF9E0AAD744CDB8966F011 -- 22:19:54.668 INFO [1878]: RET: member_id= -- 22:19:54.668 INFO [1878]: RET: result=YES I GET TO BACK END -- 22:19:54.668 INFO [1878]: RET: sessionid= -- 22:19:54.668 INFO [1878]: RET: status=Incorrect input parameter -- 22:19:54.669 INFO [1878]: COREGRADE is stopping... -- 22:19:54.669 DEBUG [1878]: Closing database connection -- 22:19:54.669 SQL [1878]: pgsql_close() -- 22:19:54.627 DEBUG [1878]: Database connection successful -- 22:19:54.627 INFO [1878]: _SERVER found -- 22:19:54.627 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 22:19:54.627 INFO [1878]: SERVER_NAME = oameye.works.coregrade.com -- 22:19:54.627 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=pe6ntt5n58jnp17b5ef3go526fal66p5 -- 22:19:54.627 INFO [1878]: QUERY_STRING = /auth -- 22:19:54.627 INFO [1878]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:19:54.670 INFO [1878]: COREGRADE is stopping... -- 22:19:54.670 DEBUG [1878]: Closing database connection -- 22:19:54.670 SQL [1878]: pgsql_close() -- 22:19:54.829 INFO [1878]: COREGRADE is starting... -- 22:19:54.829 INFO [1878]: Version from config: 1.0 -- 22:19:54.829 DEBUG [1878]: Connecting to database... -- 22:19:54.829 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:19:54.829 SQL [1878]: pgsql_db_connect() -- 22:19:54.834 DEBUG [1878]: Database connection successful -- 22:19:54.834 INFO [1878]: _SERVER found -- 22:19:54.834 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 22:19:54.834 INFO [1878]: SERVER_NAME = oameye.works.coregrade.com -- 22:19:54.834 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=pe6ntt5n58jnp17b5ef3go526fal66p5 -- 22:19:54.834 INFO [1878]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:19:54.834 INFO [1878]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:19:54.845 INFO [1878]: COREGRADE is stopping... -- 22:19:54.845 DEBUG [1878]: Closing database connection -- 22:19:54.845 SQL [1878]: pgsql_close() -- 22:19:56.038 INFO [1878]: COREGRADE is starting... -- 22:19:56.039 INFO [1878]: Version from config: 1.0 -- 22:19:56.039 DEBUG [1878]: Connecting to database... -- 22:19:56.039 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:19:56.039 SQL [1878]: pgsql_db_connect() -- 22:19:56.043 DEBUG [1878]: Database connection successful -- 22:19:56.043 INFO [1878]: _SERVER found -- 22:19:56.043 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 22:19:56.043 INFO [1878]: SERVER_NAME = oameye.works.coregrade.com -- 22:19:56.043 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=pe6ntt5n58jnp17b5ef3go526fal66p5 -- 22:19:56.043 INFO [1878]: QUERY_STRING = /auth -- 22:19:56.043 INFO [1878]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:19:56.074 INFO [1878]: COREGRADE is stopping... -- 22:19:56.074 DEBUG [1878]: Closing database connection -- 22:19:56.074 SQL [1878]: pgsql_close() -- 22:21:24.426 INFO [7039]: COREGRADE is starting... -- 22:21:24.426 INFO [7039]: Version from config: 1.0 -- 22:21:24.426 DEBUG [7039]: Connecting to database... -- 22:21:24.426 DEBUG [7039]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:21:24.426 SQL [7039]: pgsql_db_connect() -- 22:21:24.465 INFO [7039]: COREGRADE is starting... -- 22:21:24.465 INFO [7039]: Version from config: 1.0 -- 22:21:24.465 DEBUG [7039]: Connecting to database... -- 22:21:24.465 DEBUG [7039]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:21:24.465 SQL [7039]: pgsql_db_connect() -- 22:21:24.469 DEBUG [7039]: Database connection successful -- 22:21:24.469 INFO [7039]: _SERVER found -- 22:21:24.469 INFO [7039]: REMOTE_ADDR = 10.0.0.15 -- 22:21:24.469 INFO [7039]: SERVER_NAME = oameye.works.coregrade.com -- 22:21:24.469 INFO [7039]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=pe6ntt5n58jnp17b5ef3go526fal66p5 -- 22:21:24.469 INFO [7039]: QUERY_STRING = -- 22:21:24.469 INFO [7039]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:21:24.469 INFO [7039]: SystemStatus()09-09-********~************ -- 22:21:24.469 INFO [7039]: long coregrade_api_main(CVars in, CVars &out) -- 22:21:24.469 INFO [7039]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 22:21:24.469 INFO [7039]: account calls -- 22:21:24.469 INFO [7039]: account_calls() -- 22:21:24.469 INFO [7039]: LoginCoreGradeAccount() -- 22:21:24.469 FLOG_MAX [7039]: REQ_STRING(username) -- 22:21:24.470 FLOG_MAX [7039]: REQ_STRING(password) -- 22:21:24.470 FLOG_MAX [7039]: REQ_STRING(sessionid) -- 22:21:24.470 FLOG_MAX [7039]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:21:24.470 SQL [7039]: pgsql_query() -- 22:21:24.470 SQL [7039]: About to run query: -- 22:21:24.470 SQL [7039]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye@chiefsoft.com') AND password= md5('may12002') -- 22:21:24.473 SQL [7039]: Found rows: 0 -- 22:21:24.473 SQL [7039]: Found rows: 0 -- 22:21:24.473 INFO [7039]: long SessionCheck(long uid, const char *sessionid, int create ) -- 22:21:24.473 FLOG_MAX [7039]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:21:24.473 SQL [7039]: pgsql_query() -- 22:21:24.473 SQL [7039]: About to run query: -- 22:21:24.473 SQL [7039]: SELECT upper(md5( now()::text )) AS folder -- 22:21:24.473 SQL [7039]: Found rows: 1 -- 22:21:24.473 FLOG_MAX [7039]: load_db_record(SELECT upper(md5( now()::text )) AS folder) num_cols=1 -- 22:21:24.473 FLOG_MAX [7039]: update_db_record() -- 22:21:24.473 FLOG_MAX [7039]: Bad parameter exception: 'id' -- 22:21:24.473 INFO [7039]: RET: folder=B52DFA70D02601A5C460C88103107AE5 -- 22:21:24.474 INFO [7039]: RET: member_id= -- 22:21:24.474 INFO [7039]: RET: result=YES I GET TO BACK END -- 22:21:24.474 INFO [7039]: RET: sessionid= -- 22:21:24.474 INFO [7039]: RET: status=Incorrect input parameter -- 22:21:24.475 INFO [7039]: COREGRADE is stopping... -- 22:21:24.475 DEBUG [7039]: Closing database connection -- 22:21:24.475 SQL [7039]: pgsql_close() -- 22:21:24.431 DEBUG [7039]: Database connection successful -- 22:21:24.431 INFO [7039]: _SERVER found -- 22:21:24.431 INFO [7039]: REMOTE_ADDR = 10.0.0.15 -- 22:21:24.431 INFO [7039]: SERVER_NAME = oameye.works.coregrade.com -- 22:21:24.431 INFO [7039]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=pe6ntt5n58jnp17b5ef3go526fal66p5 -- 22:21:24.431 INFO [7039]: QUERY_STRING = /auth -- 22:21:24.431 INFO [7039]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:21:24.475 INFO [7039]: COREGRADE is stopping... -- 22:21:24.475 DEBUG [7039]: Closing database connection -- 22:21:24.475 SQL [7039]: pgsql_close() -- 22:21:56.594 INFO [7197]: COREGRADE is starting... -- 22:21:56.595 INFO [7197]: Version from config: 1.0 -- 22:21:56.595 DEBUG [7197]: Connecting to database... -- 22:21:56.595 DEBUG [7197]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:21:56.595 SQL [7197]: pgsql_db_connect() -- 22:21:56.599 DEBUG [7197]: Database connection successful -- 22:21:56.599 INFO [7197]: _SERVER found -- 22:21:56.599 INFO [7197]: REMOTE_ADDR = 10.0.0.15 -- 22:21:56.599 INFO [7197]: SERVER_NAME = oameye.works.coregrade.com -- 22:21:56.599 INFO [7197]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=hq6eoha79v82q405kcfdihdtt4p53uih -- 22:21:56.599 INFO [7197]: QUERY_STRING = -- 22:21:56.599 INFO [7197]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:21:56.641 INFO [7197]: COREGRADE is stopping... -- 22:21:56.641 DEBUG [7197]: Closing database connection -- 22:21:56.641 SQL [7197]: pgsql_close() -- 22:21:56.862 INFO [7197]: COREGRADE is starting... -- 22:21:56.862 INFO [7197]: Version from config: 1.0 -- 22:21:56.862 DEBUG [7197]: Connecting to database... -- 22:21:56.862 DEBUG [7197]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:21:56.862 SQL [7197]: pgsql_db_connect() -- 22:21:56.866 DEBUG [7197]: Database connection successful -- 22:21:56.866 INFO [7197]: _SERVER found -- 22:21:56.866 INFO [7197]: REMOTE_ADDR = 10.0.0.15 -- 22:21:56.866 INFO [7197]: SERVER_NAME = oameye.works.coregrade.com -- 22:21:56.866 INFO [7197]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=7bmb8b331i1d6963bet2qt22sl4losul -- 22:21:56.866 INFO [7197]: QUERY_STRING = /assets/img/footer_1.jpg -- 22:21:56.866 INFO [7197]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:21:56.878 INFO [7197]: COREGRADE is stopping... -- 22:21:56.878 DEBUG [7197]: Closing database connection -- 22:21:56.878 SQL [7197]: pgsql_close() -- 22:21:58.749 INFO [7197]: COREGRADE is starting... -- 22:21:58.749 INFO [7197]: Version from config: 1.0 -- 22:21:58.749 DEBUG [7197]: Connecting to database... -- 22:21:58.749 DEBUG [7197]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:21:58.749 SQL [7197]: pgsql_db_connect() -- 22:21:58.753 DEBUG [7197]: Database connection successful -- 22:21:58.753 INFO [7197]: _SERVER found -- 22:21:58.753 INFO [7197]: REMOTE_ADDR = 10.0.0.15 -- 22:21:58.753 INFO [7197]: SERVER_NAME = oameye.works.coregrade.com -- 22:21:58.753 INFO [7197]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=7bmb8b331i1d6963bet2qt22sl4losul; _gat_gtag_UA_54829827_2=1 -- 22:21:58.753 INFO [7197]: QUERY_STRING = /welcome/viewLogin -- 22:21:58.753 INFO [7197]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:21:58.784 INFO [7197]: COREGRADE is stopping... -- 22:21:58.784 DEBUG [7197]: Closing database connection -- 22:21:58.784 SQL [7197]: pgsql_close() -- 22:21:58.793 INFO [7197]: COREGRADE is starting... -- 22:21:58.794 INFO [7197]: Version from config: 1.0 -- 22:21:58.794 DEBUG [7197]: Connecting to database... -- 22:21:58.794 DEBUG [7197]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:21:58.794 SQL [7197]: pgsql_db_connect() -- 22:21:58.798 DEBUG [7197]: Database connection successful -- 22:21:58.798 INFO [7197]: _SERVER found -- 22:21:58.798 INFO [7197]: REMOTE_ADDR = 10.0.0.15 -- 22:21:58.798 INFO [7197]: SERVER_NAME = oameye.works.coregrade.com -- 22:21:58.798 INFO [7197]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=7bmb8b331i1d6963bet2qt22sl4losul; _gat_gtag_UA_54829827_2=1 -- 22:21:58.798 INFO [7197]: QUERY_STRING = /auth -- 22:21:58.798 INFO [7197]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:21:58.829 INFO [7197]: COREGRADE is stopping... -- 22:21:58.829 DEBUG [7197]: Closing database connection -- 22:21:58.829 SQL [7197]: pgsql_close() -- 22:21:58.839 INFO [7197]: COREGRADE is starting... -- 22:21:58.839 INFO [7197]: Version from config: 1.0 -- 22:21:58.839 DEBUG [7197]: Connecting to database... -- 22:21:58.839 DEBUG [7197]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:21:58.839 SQL [7197]: pgsql_db_connect() -- 22:21:58.843 DEBUG [7197]: Database connection successful -- 22:21:58.843 INFO [7197]: _SERVER found -- 22:21:58.843 INFO [7197]: REMOTE_ADDR = 10.0.0.15 -- 22:21:58.843 INFO [7197]: SERVER_NAME = oameye.works.coregrade.com -- 22:21:58.843 INFO [7197]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=7bmb8b331i1d6963bet2qt22sl4losul; _gat_gtag_UA_54829827_2=1 -- 22:21:58.843 INFO [7197]: QUERY_STRING = /auth/index -- 22:21:58.843 INFO [7197]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:21:58.874 INFO [7197]: COREGRADE is stopping... -- 22:21:58.874 DEBUG [7197]: Closing database connection -- 22:21:58.874 SQL [7197]: pgsql_close() -- 22:22:10.393 INFO [1879]: COREGRADE is starting... -- 22:22:10.394 INFO [1879]: Version from config: 1.0 -- 22:22:10.394 DEBUG [1879]: Connecting to database... -- 22:22:10.394 DEBUG [1879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:22:10.394 SQL [1879]: pgsql_db_connect() -- 22:22:10.398 DEBUG [1879]: Database connection successful -- 22:22:10.398 INFO [1879]: _SERVER found -- 22:22:10.398 INFO [1879]: REMOTE_ADDR = 10.0.0.15 -- 22:22:10.398 INFO [1879]: SERVER_NAME = oameye.works.coregrade.com -- 22:22:10.398 INFO [1879]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=pe6ntt5n58jnp17b5ef3go526fal66p5 -- 22:22:10.398 INFO [1879]: QUERY_STRING = /auth -- 22:22:10.398 INFO [1879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:22:10.430 INFO [1879]: COREGRADE is stopping... -- 22:22:10.430 DEBUG [1879]: Closing database connection -- 22:22:10.430 SQL [1879]: pgsql_close() -- 22:22:10.590 INFO [1879]: COREGRADE is starting... -- 22:22:10.590 INFO [1879]: Version from config: 1.0 -- 22:22:10.590 DEBUG [1879]: Connecting to database... -- 22:22:10.590 DEBUG [1879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:22:10.590 SQL [1879]: pgsql_db_connect() -- 22:22:10.594 DEBUG [1879]: Database connection successful -- 22:22:10.594 INFO [1879]: _SERVER found -- 22:22:10.594 INFO [1879]: REMOTE_ADDR = 10.0.0.15 -- 22:22:10.594 INFO [1879]: SERVER_NAME = oameye.works.coregrade.com -- 22:22:10.594 INFO [1879]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=pe6ntt5n58jnp17b5ef3go526fal66p5 -- 22:22:10.594 INFO [1879]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:22:10.594 INFO [1879]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:22:10.605 INFO [1879]: COREGRADE is stopping... -- 22:22:10.605 DEBUG [1879]: Closing database connection -- 22:22:10.605 SQL [1879]: pgsql_close() -- 22:22:30.388 INFO [1876]: COREGRADE is starting... -- 22:22:30.388 INFO [1876]: Version from config: 1.0 -- 22:22:30.388 DEBUG [1876]: Connecting to database... -- 22:22:30.388 DEBUG [1876]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:22:30.388 SQL [1876]: pgsql_db_connect() -- 22:22:30.424 INFO [1876]: COREGRADE is starting... -- 22:22:30.424 INFO [1876]: Version from config: 1.0 -- 22:22:30.424 DEBUG [1876]: Connecting to database... -- 22:22:30.424 DEBUG [1876]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:22:30.425 SQL [1876]: pgsql_db_connect() -- 22:22:30.429 DEBUG [1876]: Database connection successful -- 22:22:30.429 INFO [1876]: _SERVER found -- 22:22:30.429 INFO [1876]: REMOTE_ADDR = 10.0.0.15 -- 22:22:30.429 INFO [1876]: SERVER_NAME = oameye.works.coregrade.com -- 22:22:30.429 INFO [1876]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=7bmb8b331i1d6963bet2qt22sl4losul; _gat_gtag_UA_54829827_2=1 -- 22:22:30.429 INFO [1876]: QUERY_STRING = -- 22:22:30.429 INFO [1876]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:22:30.429 INFO [1876]: SystemStatus()09-09-********~************ -- 22:22:30.429 INFO [1876]: long coregrade_api_main(CVars in, CVars &out) -- 22:22:30.429 INFO [1876]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 22:22:30.429 INFO [1876]: account calls -- 22:22:30.429 INFO [1876]: account_calls() -- 22:22:30.429 INFO [1876]: LoginCoreGradeAccount() -- 22:22:30.429 FLOG_MAX [1876]: REQ_STRING(username) -- 22:22:30.429 FLOG_MAX [1876]: REQ_STRING(password) -- 22:22:30.429 FLOG_MAX [1876]: REQ_STRING(sessionid) -- 22:22:30.429 FLOG_MAX [1876]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:22:30.429 SQL [1876]: pgsql_query() -- 22:22:30.429 SQL [1876]: About to run query: -- 22:22:30.429 SQL [1876]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 22:22:30.432 SQL [1876]: Found rows: 1 -- 22:22:30.432 FLOG_MAX [1876]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 22:22:30.432 INFO [1876]: long SessionCheck(long uid, const char *sessionid, int create ) -- 22:22:30.432 SQL [1876]: pgsql_exec() -- 22:22:30.432 SQL [1876]: About to run query: -- 22:22:30.432 SQL [1876]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 22:22:30.434 SQL [1876]: PQcmdTuples: 1 -- 22:22:30.434 SQL [1876]: Affected rows: 1 -- 22:22:30.434 SQL [1876]: pgsql_exec() -- 22:22:30.434 SQL [1876]: About to run query: -- 22:22:30.434 SQL [1876]: DELETE FROM members_session WHERE member_id=5 -- 22:22:30.434 SQL [1876]: PQcmdTuples: 0 -- 22:22:30.434 SQL [1876]: Affected rows: 0 -- 22:22:30.434 SQL [1876]: pgsql_query() -- 22:22:30.434 SQL [1876]: About to run query: -- 22:22:30.434 SQL [1876]: SELECT * FROM members_session WHERE member_id=5 AND session<>'792CD0CC13A82D37B65C318D21B8DA32' -- 22:22:30.435 SQL [1876]: Found rows: 0 -- 22:22:30.435 SQL [1876]: Found rows: 0 -- 22:22:30.435 FLOG_MAX [1876]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:22:30.435 SQL [1876]: pgsql_query() -- 22:22:30.435 SQL [1876]: About to run query: -- 22:22:30.435 SQL [1876]: SELECT * FROM members_session WHERE member_id=5 AND session='792CD0CC13A82D37B65C318D21B8DA32' -- 22:22:30.435 SQL [1876]: Found rows: 0 -- 22:22:30.435 SQL [1876]: Found rows: 0 -- 22:22:30.435 FLOG_MAX [1876]: insert_db_record() -- 22:22:30.435 SQL [1876]: pgsql_exec() -- 22:22:30.435 SQL [1876]: About to run query: -- 22:22:30.435 SQL [1876]: INSERT INTO members_session (member_id,session) VALUES ('5','792CD0CC13A82D37B65C318D21B8DA32') -- 22:22:30.437 SQL [1876]: PQcmdTuples: 1 -- 22:22:30.437 SQL [1876]: Affected rows: 1 -- 22:22:30.437 FLOG_MAX [1876]: SELECT currval('members_session_id_seq') -- 22:22:30.437 SQL [1876]: pgsql_query() -- 22:22:30.437 SQL [1876]: About to run query: -- 22:22:30.437 SQL [1876]: SELECT currval('members_session_id_seq') -- 22:22:30.437 SQL [1876]: Found rows: 1 -- 22:22:30.437 INFO [1876]: CreateDefaultPage() -- 22:22:30.437 FLOG_MAX [1876]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:22:30.437 SQL [1876]: pgsql_query() -- 22:22:30.437 SQL [1876]: About to run query: -- 22:22:30.437 SQL [1876]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 22:22:30.437 SQL [1876]: Found rows: 1 -- 22:22:30.438 FLOG_MAX [1876]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 22:22:30.438 SQL [1876]: pgsql_query() -- 22:22:30.438 SQL [1876]: About to run query: -- 22:22:30.438 SQL [1876]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 22:22:30.438 SQL [1876]: Found rows: 1 -- 22:22:30.438 INFO [1876]: /CreateDefaultPage() -- 22:22:30.438 INFO [1876]: /LoginCoreGradeAccount() -- 22:22:30.438 INFO [1876]: RET: added=2020-02-05 06:47:23.982154 -- 22:22:30.438 INFO [1876]: RET: email=ameye+11@chiefsoft.com -- 22:22:30.438 INFO [1876]: RET: firstname=Olu -- 22:22:30.438 INFO [1876]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 22:22:30.438 INFO [1876]: RET: id=5 -- 22:22:30.438 INFO [1876]: RET: last_login= -- 22:22:30.438 INFO [1876]: RET: lastname=Amey -- 22:22:30.438 INFO [1876]: RET: loc=192.168.1.13 -- 22:22:30.438 INFO [1876]: RET: member_id=5 -- 22:22:30.438 INFO [1876]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 22:22:30.438 INFO [1876]: RET: phone= -- 22:22:30.438 INFO [1876]: RET: pid= -- 22:22:30.438 INFO [1876]: RET: result=YES I GET TO BACK END -- 22:22:30.438 INFO [1876]: RET: sessionid=792CD0CC13A82D37B65C318D21B8DA32 -- 22:22:30.438 INFO [1876]: RET: status=1 -- 22:22:30.438 INFO [1876]: RET: stauts=OK -- 22:22:30.438 INFO [1876]: RET: username=ameye+11@chiefsoft.com -- 22:22:30.438 INFO [1876]: RET: verified= -- 22:22:30.440 INFO [1876]: COREGRADE is stopping... -- 22:22:30.440 DEBUG [1876]: Closing database connection -- 22:22:30.440 SQL [1876]: pgsql_close() -- 22:22:30.392 DEBUG [1876]: Database connection successful -- 22:22:30.392 INFO [1876]: _SERVER found -- 22:22:30.392 INFO [1876]: REMOTE_ADDR = 10.0.0.15 -- 22:22:30.392 INFO [1876]: SERVER_NAME = oameye.works.coregrade.com -- 22:22:30.392 INFO [1876]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=7bmb8b331i1d6963bet2qt22sl4losul; _gat_gtag_UA_54829827_2=1 -- 22:22:30.392 INFO [1876]: QUERY_STRING = /auth -- 22:22:30.392 INFO [1876]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:22:30.440 INFO [1876]: COREGRADE is stopping... -- 22:22:30.440 DEBUG [1876]: Closing database connection -- 22:22:30.440 SQL [1876]: pgsql_close() -- 22:22:30.453 INFO [1876]: COREGRADE is starting... -- 22:22:30.453 INFO [1876]: Version from config: 1.0 -- 22:22:30.453 DEBUG [1876]: Connecting to database... -- 22:22:30.453 DEBUG [1876]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:22:30.454 SQL [1876]: pgsql_db_connect() -- 22:22:30.457 DEBUG [1876]: Database connection successful -- 22:22:30.457 INFO [1876]: _SERVER found -- 22:22:30.457 INFO [1876]: REMOTE_ADDR = 10.0.0.15 -- 22:22:30.457 INFO [1876]: SERVER_NAME = oameye.works.coregrade.com -- 22:22:30.457 INFO [1876]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=7bmb8b331i1d6963bet2qt22sl4losul; _gat_gtag_UA_54829827_2=1 -- 22:22:30.457 INFO [1876]: QUERY_STRING = /member/index -- 22:22:30.457 INFO [1876]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:22:30.498 INFO [1876]: COREGRADE is stopping... -- 22:22:30.498 DEBUG [1876]: Closing database connection -- 22:22:30.498 SQL [1876]: pgsql_close() -- 22:22:31.166 INFO [1876]: COREGRADE is starting... -- 22:22:31.166 INFO [1876]: Version from config: 1.0 -- 22:22:31.166 DEBUG [1876]: Connecting to database... -- 22:22:31.166 DEBUG [1876]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:22:31.167 SQL [1876]: pgsql_db_connect() -- 22:22:31.171 DEBUG [1876]: Database connection successful -- 22:22:31.171 INFO [1876]: _SERVER found -- 22:22:31.171 INFO [1876]: REMOTE_ADDR = 10.0.0.15 -- 22:22:31.171 INFO [1876]: SERVER_NAME = oameye.works.coregrade.com -- 22:22:31.171 INFO [1876]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=7bmb8b331i1d6963bet2qt22sl4losul; _gat_gtag_UA_54829827_2=1 -- 22:22:31.171 INFO [1876]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:22:31.171 INFO [1876]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:22:31.182 INFO [1876]: COREGRADE is stopping... -- 22:22:31.182 DEBUG [1876]: Closing database connection -- 22:22:31.182 SQL [1876]: pgsql_close() -- 22:24:11.589 INFO [32689]: COREGRADE is starting... -- 22:24:11.589 INFO [32689]: Version from config: 1.0 -- 22:24:11.589 DEBUG [32689]: Connecting to database... -- 22:24:11.589 DEBUG [32689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:24:11.589 SQL [32689]: pgsql_db_connect() -- 22:24:11.593 DEBUG [32689]: Database connection successful -- 22:24:11.593 INFO [32689]: _SERVER found -- 22:24:11.593 INFO [32689]: REMOTE_ADDR = 10.0.0.15 -- 22:24:11.593 INFO [32689]: SERVER_NAME = oameye.works.coregrade.com -- 22:24:11.593 INFO [32689]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=pe6ntt5n58jnp17b5ef3go526fal66p5 -- 22:24:11.593 INFO [32689]: QUERY_STRING = /auth -- 22:24:11.593 INFO [32689]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:24:11.627 INFO [32689]: COREGRADE is stopping... -- 22:24:11.627 DEBUG [32689]: Closing database connection -- 22:24:11.627 SQL [32689]: pgsql_close() -- 22:24:36.335 INFO [1877]: COREGRADE is starting... -- 22:24:36.335 INFO [1877]: Version from config: 1.0 -- 22:24:36.335 DEBUG [1877]: Connecting to database... -- 22:24:36.335 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:24:36.335 SQL [1877]: pgsql_db_connect() -- 22:24:36.371 INFO [1877]: COREGRADE is starting... -- 22:24:36.371 INFO [1877]: Version from config: 1.0 -- 22:24:36.371 DEBUG [1877]: Connecting to database... -- 22:24:36.371 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:24:36.371 SQL [1877]: pgsql_db_connect() -- 22:24:36.375 DEBUG [1877]: Database connection successful -- 22:24:36.375 INFO [1877]: _SERVER found -- 22:24:36.375 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 22:24:36.375 INFO [1877]: SERVER_NAME = oameye.works.coregrade.com -- 22:24:36.375 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=o8op5otufh1gfn975kd1tgi0aq3p783j -- 22:24:36.375 INFO [1877]: QUERY_STRING = -- 22:24:36.375 INFO [1877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:24:36.375 INFO [1877]: SystemStatus()09-09-********~************ -- 22:24:36.375 INFO [1877]: long coregrade_api_main(CVars in, CVars &out) -- 22:24:36.375 INFO [1877]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 22:24:36.375 INFO [1877]: account calls -- 22:24:36.375 INFO [1877]: account_calls() -- 22:24:36.375 INFO [1877]: LoginCoreGradeAccount() -- 22:24:36.375 FLOG_MAX [1877]: REQ_STRING(username) -- 22:24:36.376 FLOG_MAX [1877]: REQ_STRING(password) -- 22:24:36.376 FLOG_MAX [1877]: REQ_STRING(sessionid) -- 22:24:36.376 FLOG_MAX [1877]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:24:36.376 SQL [1877]: pgsql_query() -- 22:24:36.376 SQL [1877]: About to run query: -- 22:24:36.376 SQL [1877]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001') -- 22:24:36.379 SQL [1877]: Found rows: 1 -- 22:24:36.379 FLOG_MAX [1877]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001')) num_cols=16 -- 22:24:36.379 INFO [1877]: long SessionCheck(long uid, const char *sessionid, int create ) -- 22:24:36.379 SQL [1877]: pgsql_exec() -- 22:24:36.379 SQL [1877]: About to run query: -- 22:24:36.379 SQL [1877]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 22:24:36.380 SQL [1877]: PQcmdTuples: 1 -- 22:24:36.380 SQL [1877]: Affected rows: 1 -- 22:24:36.380 SQL [1877]: pgsql_exec() -- 22:24:36.380 SQL [1877]: About to run query: -- 22:24:36.380 SQL [1877]: DELETE FROM members_session WHERE member_id=7 -- 22:24:36.381 SQL [1877]: PQcmdTuples: 0 -- 22:24:36.381 SQL [1877]: Affected rows: 0 -- 22:24:36.381 SQL [1877]: pgsql_query() -- 22:24:36.381 SQL [1877]: About to run query: -- 22:24:36.381 SQL [1877]: SELECT * FROM members_session WHERE member_id=7 AND session<>'FA738905E7E8FA270EC3B47E60E4B92B' -- 22:24:36.381 SQL [1877]: Found rows: 0 -- 22:24:36.381 SQL [1877]: Found rows: 0 -- 22:24:36.381 FLOG_MAX [1877]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:24:36.381 SQL [1877]: pgsql_query() -- 22:24:36.381 SQL [1877]: About to run query: -- 22:24:36.381 SQL [1877]: SELECT * FROM members_session WHERE member_id=7 AND session='FA738905E7E8FA270EC3B47E60E4B92B' -- 22:24:36.382 SQL [1877]: Found rows: 0 -- 22:24:36.382 SQL [1877]: Found rows: 0 -- 22:24:36.382 FLOG_MAX [1877]: insert_db_record() -- 22:24:36.382 SQL [1877]: pgsql_exec() -- 22:24:36.382 SQL [1877]: About to run query: -- 22:24:36.382 SQL [1877]: INSERT INTO members_session (member_id,session) VALUES ('7','FA738905E7E8FA270EC3B47E60E4B92B') -- 22:24:36.383 SQL [1877]: PQcmdTuples: 1 -- 22:24:36.383 SQL [1877]: Affected rows: 1 -- 22:24:36.383 FLOG_MAX [1877]: SELECT currval('members_session_id_seq') -- 22:24:36.383 SQL [1877]: pgsql_query() -- 22:24:36.383 SQL [1877]: About to run query: -- 22:24:36.383 SQL [1877]: SELECT currval('members_session_id_seq') -- 22:24:36.383 SQL [1877]: Found rows: 1 -- 22:24:36.384 INFO [1877]: CreateDefaultPage() -- 22:24:36.384 FLOG_MAX [1877]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:24:36.384 SQL [1877]: pgsql_query() -- 22:24:36.384 SQL [1877]: About to run query: -- 22:24:36.384 SQL [1877]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 22:24:36.384 SQL [1877]: Found rows: 1 -- 22:24:36.384 FLOG_MAX [1877]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 22:24:36.384 SQL [1877]: pgsql_query() -- 22:24:36.384 SQL [1877]: About to run query: -- 22:24:36.384 SQL [1877]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 22:24:36.384 SQL [1877]: Found rows: 1 -- 22:24:36.384 INFO [1877]: /CreateDefaultPage() -- 22:24:36.384 INFO [1877]: /LoginCoreGradeAccount() -- 22:24:36.384 INFO [1877]: RET: added=2020-02-05 09:42:12.816064 -- 22:24:36.384 INFO [1877]: RET: email=tokslaw@chiefsoft.com -- 22:24:36.384 INFO [1877]: RET: firstname=Tokunbo -- 22:24:36.384 INFO [1877]: RET: folder=5D06B187B1E2285A63AD1D0ECB670D98 -- 22:24:36.384 INFO [1877]: RET: id=7 -- 22:24:36.384 INFO [1877]: RET: last_login= -- 22:24:36.384 INFO [1877]: RET: lastname=Lawal -- 22:24:36.384 INFO [1877]: RET: loc=192.168.1.13 -- 22:24:36.384 INFO [1877]: RET: member_id=7 -- 22:24:36.384 INFO [1877]: RET: password=a212b982caca1a26d26690f4f4782a5b -- 22:24:36.384 INFO [1877]: RET: phone= -- 22:24:36.384 INFO [1877]: RET: pid= -- 22:24:36.384 INFO [1877]: RET: result=YES I GET TO BACK END -- 22:24:36.384 INFO [1877]: RET: sessionid=FA738905E7E8FA270EC3B47E60E4B92B -- 22:24:36.384 INFO [1877]: RET: status=1 -- 22:24:36.384 INFO [1877]: RET: stauts=OK -- 22:24:36.384 INFO [1877]: RET: username=tokslaw@chiefsoft.com -- 22:24:36.384 INFO [1877]: RET: verified= -- 22:24:36.386 INFO [1877]: COREGRADE is stopping... -- 22:24:36.386 DEBUG [1877]: Closing database connection -- 22:24:36.386 SQL [1877]: pgsql_close() -- 22:24:36.339 DEBUG [1877]: Database connection successful -- 22:24:36.339 INFO [1877]: _SERVER found -- 22:24:36.339 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 22:24:36.339 INFO [1877]: SERVER_NAME = oameye.works.coregrade.com -- 22:24:36.339 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=o8op5otufh1gfn975kd1tgi0aq3p783j -- 22:24:36.339 INFO [1877]: QUERY_STRING = /auth -- 22:24:36.339 INFO [1877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:24:36.386 INFO [1877]: COREGRADE is stopping... -- 22:24:36.386 DEBUG [1877]: Closing database connection -- 22:24:36.386 SQL [1877]: pgsql_close() -- 22:24:36.396 INFO [1877]: COREGRADE is starting... -- 22:24:36.396 INFO [1877]: Version from config: 1.0 -- 22:24:36.396 DEBUG [1877]: Connecting to database... -- 22:24:36.396 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:24:36.396 SQL [1877]: pgsql_db_connect() -- 22:24:36.400 DEBUG [1877]: Database connection successful -- 22:24:36.400 INFO [1877]: _SERVER found -- 22:24:36.400 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 22:24:36.400 INFO [1877]: SERVER_NAME = oameye.works.coregrade.com -- 22:24:36.400 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=o8op5otufh1gfn975kd1tgi0aq3p783j -- 22:24:36.400 INFO [1877]: QUERY_STRING = /member/index -- 22:24:36.400 INFO [1877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:24:36.441 INFO [1877]: COREGRADE is stopping... -- 22:24:36.441 DEBUG [1877]: Closing database connection -- 22:24:36.441 SQL [1877]: pgsql_close() -- 22:24:36.725 INFO [1877]: COREGRADE is starting... -- 22:24:36.725 INFO [1877]: Version from config: 1.0 -- 22:24:36.725 DEBUG [1877]: Connecting to database... -- 22:24:36.725 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:24:36.725 SQL [1877]: pgsql_db_connect() -- 22:24:36.729 DEBUG [1877]: Database connection successful -- 22:24:36.729 INFO [1877]: _SERVER found -- 22:24:36.729 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 22:24:36.729 INFO [1877]: SERVER_NAME = oameye.works.coregrade.com -- 22:24:36.729 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=o8op5otufh1gfn975kd1tgi0aq3p783j -- 22:24:36.729 INFO [1877]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:24:36.729 INFO [1877]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:24:36.740 INFO [1877]: COREGRADE is stopping... -- 22:24:36.740 DEBUG [1877]: Closing database connection -- 22:24:36.740 SQL [1877]: pgsql_close() -- 22:28:17.303 INFO [7047]: COREGRADE is starting... -- 22:28:17.303 INFO [7047]: Version from config: 1.0 -- 22:28:17.303 DEBUG [7047]: Connecting to database... -- 22:28:17.303 DEBUG [7047]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:28:17.303 SQL [7047]: pgsql_db_connect() -- 22:28:17.308 DEBUG [7047]: Database connection successful -- 22:28:17.308 INFO [7047]: _SERVER found -- 22:28:17.308 INFO [7047]: REMOTE_ADDR = 10.0.0.15 -- 22:28:17.308 INFO [7047]: SERVER_NAME = oameye.works.coregrade.com -- 22:28:17.308 INFO [7047]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; _gid=GA1.2.120824816.1586655078; ci_session=q8oetmo09n76snqtdb1l3bo66kuihgms -- 22:28:17.308 INFO [7047]: QUERY_STRING = -- 22:28:17.308 INFO [7047]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:28:17.343 INFO [7047]: COREGRADE is stopping... -- 22:28:17.343 DEBUG [7047]: Closing database connection -- 22:28:17.343 SQL [7047]: pgsql_close() -- 22:28:17.452 INFO [7047]: COREGRADE is starting... -- 22:28:17.453 INFO [7047]: Version from config: 1.0 -- 22:28:17.453 DEBUG [7047]: Connecting to database... -- 22:28:17.453 DEBUG [7047]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:28:17.453 SQL [7047]: pgsql_db_connect() -- 22:28:17.457 DEBUG [7047]: Database connection successful -- 22:28:17.457 INFO [7047]: _SERVER found -- 22:28:17.457 INFO [7047]: REMOTE_ADDR = 10.0.0.15 -- 22:28:17.457 INFO [7047]: SERVER_NAME = oameye.works.coregrade.com -- 22:28:17.457 INFO [7047]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; _gid=GA1.2.120824816.1586655078; ci_session=pholfvhl79aiscn4ikqbe06655c6tlak -- 22:28:17.457 INFO [7047]: QUERY_STRING = /assets/img/footer_1.jpg -- 22:28:17.457 INFO [7047]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:28:17.468 INFO [7047]: COREGRADE is stopping... -- 22:28:17.468 DEBUG [7047]: Closing database connection -- 22:28:17.468 SQL [7047]: pgsql_close() -- 22:29:40.427 INFO [1880]: COREGRADE is starting... -- 22:29:40.427 INFO [1880]: Version from config: 1.0 -- 22:29:40.427 DEBUG [1880]: Connecting to database... -- 22:29:40.427 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:29:40.427 SQL [1880]: pgsql_db_connect() -- 22:29:40.431 DEBUG [1880]: Database connection successful -- 22:29:40.431 INFO [1880]: _SERVER found -- 22:29:40.431 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 22:29:40.431 INFO [1880]: SERVER_NAME = oameye.works.coregrade.com -- 22:29:40.431 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=9hrii440mb5n4ncnom9vreeqnmvutuia -- 22:29:40.431 INFO [1880]: QUERY_STRING = /home/howitworks -- 22:29:40.431 INFO [1880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:29:40.464 INFO [1880]: COREGRADE is stopping... -- 22:29:40.464 DEBUG [1880]: Closing database connection -- 22:29:40.464 SQL [1880]: pgsql_close() -- 22:29:40.780 INFO [1880]: COREGRADE is starting... -- 22:29:40.780 INFO [1880]: Version from config: 1.0 -- 22:29:40.780 DEBUG [1880]: Connecting to database... -- 22:29:40.780 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:29:40.780 SQL [1880]: pgsql_db_connect() -- 22:29:40.784 DEBUG [1880]: Database connection successful -- 22:29:40.784 INFO [1880]: _SERVER found -- 22:29:40.784 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 22:29:40.784 INFO [1880]: SERVER_NAME = oameye.works.coregrade.com -- 22:29:40.784 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=nbimm72jeequ80genee4es3676154p5g -- 22:29:40.784 INFO [1880]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:29:40.784 INFO [1880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:29:40.795 INFO [1880]: COREGRADE is stopping... -- 22:29:40.795 DEBUG [1880]: Closing database connection -- 22:29:40.795 SQL [1880]: pgsql_close() -- 22:29:52.848 INFO [32690]: COREGRADE is starting... -- 22:29:52.848 INFO [32690]: Version from config: 1.0 -- 22:29:52.849 DEBUG [32690]: Connecting to database... -- 22:29:52.849 DEBUG [32690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:29:52.849 SQL [32690]: pgsql_db_connect() -- 22:29:52.853 DEBUG [32690]: Database connection successful -- 22:29:52.853 INFO [32690]: _SERVER found -- 22:29:52.853 INFO [32690]: REMOTE_ADDR = 10.0.0.15 -- 22:29:52.853 INFO [32690]: SERVER_NAME = oameye.works.coregrade.com -- 22:29:52.853 INFO [32690]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=o1u4n8jv531962vh99po6teir7ttgch2 -- 22:29:52.853 INFO [32690]: QUERY_STRING = -- 22:29:52.853 INFO [32690]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:29:52.886 INFO [32690]: COREGRADE is stopping... -- 22:29:52.886 DEBUG [32690]: Closing database connection -- 22:29:52.886 SQL [32690]: pgsql_close() -- 22:29:53.084 INFO [32690]: COREGRADE is starting... -- 22:29:53.084 INFO [32690]: Version from config: 1.0 -- 22:29:53.085 DEBUG [32690]: Connecting to database... -- 22:29:53.085 DEBUG [32690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:29:53.085 SQL [32690]: pgsql_db_connect() -- 22:29:53.089 DEBUG [32690]: Database connection successful -- 22:29:53.089 INFO [32690]: _SERVER found -- 22:29:53.089 INFO [32690]: REMOTE_ADDR = 10.0.0.15 -- 22:29:53.089 INFO [32690]: SERVER_NAME = oameye.works.coregrade.com -- 22:29:53.089 INFO [32690]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=dvtrqfnvc11ih4udfup0rgnc5kei6sag -- 22:29:53.089 INFO [32690]: QUERY_STRING = /assets/img/footer_1.jpg -- 22:29:53.089 INFO [32690]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:29:53.100 INFO [32690]: COREGRADE is stopping... -- 22:29:53.100 DEBUG [32690]: Closing database connection -- 22:29:53.100 SQL [32690]: pgsql_close() -- 22:29:55.908 INFO [32690]: COREGRADE is starting... -- 22:29:55.908 INFO [32690]: Version from config: 1.0 -- 22:29:55.908 DEBUG [32690]: Connecting to database... -- 22:29:55.908 DEBUG [32690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:29:55.908 SQL [32690]: pgsql_db_connect() -- 22:29:55.915 INFO [1878]: COREGRADE is starting... -- 22:29:55.915 INFO [1878]: Version from config: 1.0 -- 22:29:55.915 DEBUG [1878]: Connecting to database... -- 22:29:55.915 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:29:55.915 SQL [1878]: pgsql_db_connect() -- 22:29:55.912 DEBUG [32690]: Database connection successful -- 22:29:55.912 INFO [32690]: _SERVER found -- 22:29:55.912 INFO [32690]: REMOTE_ADDR = 10.0.0.15 -- 22:29:55.912 INFO [32690]: SERVER_NAME = oameye.works.coregrade.com -- 22:29:55.912 INFO [32690]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=dvtrqfnvc11ih4udfup0rgnc5kei6sag; _gat_gtag_UA_54829827_2=1 -- 22:29:55.912 INFO [32690]: QUERY_STRING = /welcome/viewLogin -- 22:29:55.912 INFO [32690]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:29:55.943 INFO [32690]: COREGRADE is stopping... -- 22:29:55.943 DEBUG [32690]: Closing database connection -- 22:29:55.943 SQL [32690]: pgsql_close() -- 22:29:55.919 DEBUG [1878]: Database connection successful -- 22:29:55.919 INFO [1878]: _SERVER found -- 22:29:55.919 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 22:29:55.919 INFO [1878]: SERVER_NAME = oameye.works.coregrade.com -- 22:29:55.919 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=dvtrqfnvc11ih4udfup0rgnc5kei6sag; _gat_gtag_UA_54829827_2=1 -- 22:29:55.919 INFO [1878]: QUERY_STRING = /auth -- 22:29:55.919 INFO [1878]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:29:55.952 INFO [1878]: COREGRADE is stopping... -- 22:29:55.952 DEBUG [1878]: Closing database connection -- 22:29:55.952 SQL [1878]: pgsql_close() -- 22:29:55.975 INFO [1878]: COREGRADE is starting... -- 22:29:55.976 INFO [1878]: Version from config: 1.0 -- 22:29:55.976 DEBUG [1878]: Connecting to database... -- 22:29:55.976 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:29:55.976 SQL [1878]: pgsql_db_connect() -- 22:29:55.980 DEBUG [1878]: Database connection successful -- 22:29:55.980 INFO [1878]: _SERVER found -- 22:29:55.980 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 22:29:55.980 INFO [1878]: SERVER_NAME = oameye.works.coregrade.com -- 22:29:55.980 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=dvtrqfnvc11ih4udfup0rgnc5kei6sag; _gat_gtag_UA_54829827_2=1 -- 22:29:55.980 INFO [1878]: QUERY_STRING = /auth/index -- 22:29:55.980 INFO [1878]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:29:56.011 INFO [1878]: COREGRADE is stopping... -- 22:29:56.011 DEBUG [1878]: Closing database connection -- 22:29:56.011 SQL [1878]: pgsql_close() -- 22:29:59.941 INFO [1878]: COREGRADE is starting... -- 22:29:59.941 INFO [1878]: Version from config: 1.0 -- 22:29:59.941 DEBUG [1878]: Connecting to database... -- 22:29:59.941 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:29:59.941 SQL [1878]: pgsql_db_connect() -- 22:29:59.945 DEBUG [1878]: Database connection successful -- 22:29:59.945 INFO [1878]: _SERVER found -- 22:29:59.945 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 22:29:59.945 INFO [1878]: SERVER_NAME = oameye.works.coregrade.com -- 22:29:59.945 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=dvtrqfnvc11ih4udfup0rgnc5kei6sag; _gat_gtag_UA_54829827_2=1 -- 22:29:59.945 INFO [1878]: QUERY_STRING = /auth/resetpass -- 22:29:59.945 INFO [1878]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:29:59.977 INFO [1878]: COREGRADE is stopping... -- 22:29:59.977 DEBUG [1878]: Closing database connection -- 22:29:59.977 SQL [1878]: pgsql_close() -- 22:30:08.973 INFO [7039]: COREGRADE is starting... -- 22:30:08.973 INFO [7039]: Version from config: 1.0 -- 22:30:08.973 DEBUG [7039]: Connecting to database... -- 22:30:08.973 DEBUG [7039]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:30:08.973 SQL [7039]: pgsql_db_connect() -- 22:30:08.978 DEBUG [7039]: Database connection successful -- 22:30:08.978 INFO [7039]: _SERVER found -- 22:30:08.978 INFO [7039]: REMOTE_ADDR = 10.0.0.15 -- 22:30:08.978 INFO [7039]: SERVER_NAME = oameye.works.coregrade.com -- 22:30:08.978 INFO [7039]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=dvtrqfnvc11ih4udfup0rgnc5kei6sag; _gat_gtag_UA_54829827_2=1 -- 22:30:08.978 INFO [7039]: QUERY_STRING = /auth/resetpass -- 22:30:08.978 INFO [7039]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:30:09.011 INFO [7039]: COREGRADE is stopping... -- 22:30:09.011 DEBUG [7039]: Closing database connection -- 22:30:09.011 SQL [7039]: pgsql_close() -- 22:31:06.474 INFO [7197]: COREGRADE is starting... -- 22:31:06.474 INFO [7197]: Version from config: 1.0 -- 22:31:06.474 DEBUG [7197]: Connecting to database... -- 22:31:06.474 DEBUG [7197]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:31:06.474 SQL [7197]: pgsql_db_connect() -- 22:31:06.479 DEBUG [7197]: Database connection successful -- 22:31:06.479 INFO [7197]: _SERVER found -- 22:31:06.479 INFO [7197]: REMOTE_ADDR = 10.0.0.15 -- 22:31:06.479 INFO [7197]: SERVER_NAME = oameye.works.coregrade.com -- 22:31:06.479 INFO [7197]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=dvtrqfnvc11ih4udfup0rgnc5kei6sag -- 22:31:06.479 INFO [7197]: QUERY_STRING = /auth/resetpass -- 22:31:06.479 INFO [7197]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:31:06.511 INFO [7197]: COREGRADE is stopping... -- 22:31:06.511 DEBUG [7197]: Closing database connection -- 22:31:06.511 SQL [7197]: pgsql_close() -- 22:33:20.646 INFO [1879]: COREGRADE is starting... -- 22:33:20.647 INFO [1879]: Version from config: 1.0 -- 22:33:20.647 DEBUG [1879]: Connecting to database... -- 22:33:20.647 DEBUG [1879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:33:20.647 SQL [1879]: pgsql_db_connect() -- 22:33:20.651 DEBUG [1879]: Database connection successful -- 22:33:20.651 INFO [1879]: _SERVER found -- 22:33:20.651 INFO [1879]: REMOTE_ADDR = 10.0.0.15 -- 22:33:20.651 INFO [1879]: SERVER_NAME = oameye.works.coregrade.com -- 22:33:20.651 INFO [1879]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=dvtrqfnvc11ih4udfup0rgnc5kei6sag -- 22:33:20.651 INFO [1879]: QUERY_STRING = /auth/resetpass -- 22:33:20.651 INFO [1879]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:33:20.684 INFO [1879]: COREGRADE is stopping... -- 22:33:20.684 DEBUG [1879]: Closing database connection -- 22:33:20.684 SQL [1879]: pgsql_close() -- 22:33:20.859 INFO [1879]: COREGRADE is starting... -- 22:33:20.859 INFO [1879]: Version from config: 1.0 -- 22:33:20.859 DEBUG [1879]: Connecting to database... -- 22:33:20.859 DEBUG [1879]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:33:20.859 SQL [1879]: pgsql_db_connect() -- 22:33:20.863 DEBUG [1879]: Database connection successful -- 22:33:20.863 INFO [1879]: _SERVER found -- 22:33:20.863 INFO [1879]: REMOTE_ADDR = 10.0.0.15 -- 22:33:20.863 INFO [1879]: SERVER_NAME = oameye.works.coregrade.com -- 22:33:20.863 INFO [1879]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=dvtrqfnvc11ih4udfup0rgnc5kei6sag -- 22:33:20.863 INFO [1879]: QUERY_STRING = /favicon.ico -- 22:33:20.863 INFO [1879]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:33:20.875 INFO [1879]: COREGRADE is stopping... -- 22:33:20.875 DEBUG [1879]: Closing database connection -- 22:33:20.875 SQL [1879]: pgsql_close() -- 22:35:33.350 INFO [1876]: COREGRADE is starting... -- 22:35:33.350 INFO [1876]: Version from config: 1.0 -- 22:35:33.350 DEBUG [1876]: Connecting to database... -- 22:35:33.350 DEBUG [1876]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:35:33.350 SQL [1876]: pgsql_db_connect() -- 22:35:33.355 DEBUG [1876]: Database connection successful -- 22:35:33.355 INFO [1876]: _SERVER found -- 22:35:33.355 INFO [1876]: REMOTE_ADDR = 10.0.0.15 -- 22:35:33.355 INFO [1876]: SERVER_NAME = oameye.works.coregrade.com -- 22:35:33.355 INFO [1876]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=dvtrqfnvc11ih4udfup0rgnc5kei6sag -- 22:35:33.355 INFO [1876]: QUERY_STRING = /auth/resetpass -- 22:35:33.355 INFO [1876]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:35:33.390 INFO [1876]: COREGRADE is stopping... -- 22:35:33.390 DEBUG [1876]: Closing database connection -- 22:35:33.390 SQL [1876]: pgsql_close() -- 22:35:33.516 INFO [1876]: COREGRADE is starting... -- 22:35:33.516 INFO [1876]: Version from config: 1.0 -- 22:35:33.516 DEBUG [1876]: Connecting to database... -- 22:35:33.516 DEBUG [1876]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:35:33.516 SQL [1876]: pgsql_db_connect() -- 22:35:33.521 DEBUG [1876]: Database connection successful -- 22:35:33.521 INFO [1876]: _SERVER found -- 22:35:33.521 INFO [1876]: REMOTE_ADDR = 10.0.0.15 -- 22:35:33.521 INFO [1876]: SERVER_NAME = oameye.works.coregrade.com -- 22:35:33.521 INFO [1876]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=7c3fleu93imu4drgd7k53fsg2ul9vte5 -- 22:35:33.521 INFO [1876]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:35:33.521 INFO [1876]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:35:33.532 INFO [1876]: COREGRADE is stopping... -- 22:35:33.532 DEBUG [1876]: Closing database connection -- 22:35:33.532 SQL [1876]: pgsql_close() -- 22:35:45.124 INFO [32689]: COREGRADE is starting... -- 22:35:45.124 INFO [32689]: Version from config: 1.0 -- 22:35:45.124 DEBUG [32689]: Connecting to database... -- 22:35:45.124 DEBUG [32689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:35:45.124 SQL [32689]: pgsql_db_connect() -- 22:35:45.128 DEBUG [32689]: Database connection successful -- 22:35:45.128 INFO [32689]: _SERVER found -- 22:35:45.128 INFO [32689]: REMOTE_ADDR = 10.0.0.15 -- 22:35:45.128 INFO [32689]: SERVER_NAME = oameye.works.coregrade.com -- 22:35:45.128 INFO [32689]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=7c3fleu93imu4drgd7k53fsg2ul9vte5 -- 22:35:45.128 INFO [32689]: QUERY_STRING = /auth/resetpass -- 22:35:45.128 INFO [32689]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:35:45.162 INFO [32689]: COREGRADE is stopping... -- 22:35:45.162 DEBUG [32689]: Closing database connection -- 22:35:45.162 SQL [32689]: pgsql_close() -- 22:35:45.343 INFO [32689]: COREGRADE is starting... -- 22:35:45.344 INFO [32689]: Version from config: 1.0 -- 22:35:45.344 DEBUG [32689]: Connecting to database... -- 22:35:45.344 DEBUG [32689]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:35:45.344 SQL [32689]: pgsql_db_connect() -- 22:35:45.348 DEBUG [32689]: Database connection successful -- 22:35:45.348 INFO [32689]: _SERVER found -- 22:35:45.348 INFO [32689]: REMOTE_ADDR = 10.0.0.15 -- 22:35:45.348 INFO [32689]: SERVER_NAME = oameye.works.coregrade.com -- 22:35:45.348 INFO [32689]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=7c3fleu93imu4drgd7k53fsg2ul9vte5 -- 22:35:45.348 INFO [32689]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:35:45.348 INFO [32689]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:35:45.359 INFO [32689]: COREGRADE is stopping... -- 22:35:45.359 DEBUG [32689]: Closing database connection -- 22:35:45.359 SQL [32689]: pgsql_close() -- 22:35:53.170 INFO [1877]: COREGRADE is starting... -- 22:35:53.171 INFO [1877]: Version from config: 1.0 -- 22:35:53.171 DEBUG [1877]: Connecting to database... -- 22:35:53.171 DEBUG [1877]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:35:53.171 SQL [1877]: pgsql_db_connect() -- 22:35:53.175 DEBUG [1877]: Database connection successful -- 22:35:53.175 INFO [1877]: _SERVER found -- 22:35:53.175 INFO [1877]: REMOTE_ADDR = 10.0.0.15 -- 22:35:53.175 INFO [1877]: SERVER_NAME = oameye.works.coregrade.com -- 22:35:53.175 INFO [1877]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=7c3fleu93imu4drgd7k53fsg2ul9vte5 -- 22:35:53.175 INFO [1877]: QUERY_STRING = /auth/resetpass -- 22:35:53.175 INFO [1877]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:35:53.209 INFO [1877]: COREGRADE is stopping... -- 22:35:53.209 DEBUG [1877]: Closing database connection -- 22:35:53.209 SQL [1877]: pgsql_close() -- 22:36:55.811 INFO [7047]: COREGRADE is starting... -- 22:36:55.812 INFO [7047]: Version from config: 1.0 -- 22:36:55.812 DEBUG [7047]: Connecting to database... -- 22:36:55.812 DEBUG [7047]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:36:55.812 SQL [7047]: pgsql_db_connect() -- 22:36:55.816 DEBUG [7047]: Database connection successful -- 22:36:55.816 INFO [7047]: _SERVER found -- 22:36:55.816 INFO [7047]: REMOTE_ADDR = 10.0.0.15 -- 22:36:55.816 INFO [7047]: SERVER_NAME = oameye.works.coregrade.com -- 22:36:55.816 INFO [7047]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=7c3fleu93imu4drgd7k53fsg2ul9vte5 -- 22:36:55.816 INFO [7047]: QUERY_STRING = /auth/resetpass -- 22:36:55.816 INFO [7047]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:36:55.849 INFO [7047]: COREGRADE is stopping... -- 22:36:55.849 DEBUG [7047]: Closing database connection -- 22:36:55.849 SQL [7047]: pgsql_close() -- 22:37:40.415 INFO [1880]: COREGRADE is starting... -- 22:37:40.415 INFO [1880]: Version from config: 1.0 -- 22:37:40.415 DEBUG [1880]: Connecting to database... -- 22:37:40.415 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:37:40.415 SQL [1880]: pgsql_db_connect() -- 22:37:40.419 DEBUG [1880]: Database connection successful -- 22:37:40.419 INFO [1880]: _SERVER found -- 22:37:40.419 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 22:37:40.419 INFO [1880]: SERVER_NAME = oameye.works.coregrade.com -- 22:37:40.419 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=o8op5otufh1gfn975kd1tgi0aq3p783j -- 22:37:40.419 INFO [1880]: QUERY_STRING = /member/index -- 22:37:40.419 INFO [1880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:37:40.462 INFO [1880]: COREGRADE is stopping... -- 22:37:40.462 DEBUG [1880]: Closing database connection -- 22:37:40.462 SQL [1880]: pgsql_close() -- 22:37:40.613 INFO [1880]: COREGRADE is starting... -- 22:37:40.613 INFO [1880]: Version from config: 1.0 -- 22:37:40.613 DEBUG [1880]: Connecting to database... -- 22:37:40.613 DEBUG [1880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:37:40.613 SQL [1880]: pgsql_db_connect() -- 22:37:40.617 DEBUG [1880]: Database connection successful -- 22:37:40.617 INFO [1880]: _SERVER found -- 22:37:40.617 INFO [1880]: REMOTE_ADDR = 10.0.0.15 -- 22:37:40.617 INFO [1880]: SERVER_NAME = oameye.works.coregrade.com -- 22:37:40.617 INFO [1880]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=aghik8k63imep14c83k8f4itt3knit3o -- 22:37:40.617 INFO [1880]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:37:40.617 INFO [1880]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:37:40.628 INFO [1880]: COREGRADE is stopping... -- 22:37:40.628 DEBUG [1880]: Closing database connection -- 22:37:40.628 SQL [1880]: pgsql_close() -- 22:37:52.464 INFO [32690]: COREGRADE is starting... -- 22:37:52.464 INFO [32690]: Version from config: 1.0 -- 22:37:52.464 DEBUG [32690]: Connecting to database... -- 22:37:52.464 DEBUG [32690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:37:52.464 SQL [32690]: pgsql_db_connect() -- 22:37:52.501 INFO [32690]: COREGRADE is starting... -- 22:37:52.501 INFO [32690]: Version from config: 1.0 -- 22:37:52.501 DEBUG [32690]: Connecting to database... -- 22:37:52.501 DEBUG [32690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:37:52.501 SQL [32690]: pgsql_db_connect() -- 22:37:52.505 DEBUG [32690]: Database connection successful -- 22:37:52.505 INFO [32690]: _SERVER found -- 22:37:52.505 INFO [32690]: REMOTE_ADDR = 10.0.0.15 -- 22:37:52.505 INFO [32690]: SERVER_NAME = oameye.works.coregrade.com -- 22:37:52.505 INFO [32690]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=7c3fleu93imu4drgd7k53fsg2ul9vte5 -- 22:37:52.505 INFO [32690]: QUERY_STRING = -- 22:37:52.505 INFO [32690]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:37:52.506 INFO [32690]: SystemStatus()09-09-********~************ -- 22:37:52.506 INFO [32690]: long coregrade_api_main(CVars in, CVars &out) -- 22:37:52.506 INFO [32690]: long coregrade_api_main(CVars in, CVars &out) action =11010 -- 22:37:52.506 INFO [32690]: account calls -- 22:37:52.506 INFO [32690]: account_calls() -- 22:37:52.506 FLOG_MAX [32690]: REQ_STRING(username) -- 22:37:52.506 FLOG_MAX [32690]: REQ_STRING(firstname) -- 22:37:52.506 FLOG_MAX [32690]: Error in parameter 'firstname', len= 2 <= 1 <= 49 -- 22:37:52.506 FLOG_MAX [32690]: Bad parameter exception: 'firstname' -- 22:37:52.506 INFO [32690]: RET: action=11010 -- 22:37:52.506 INFO [32690]: RET: pid=100 -- 22:37:52.506 INFO [32690]: RET: status=Incorrect input parameter -- 22:37:52.506 INFO [32690]: RET: username=savvyadmin -- 22:37:52.507 INFO [32690]: COREGRADE is stopping... -- 22:37:52.508 DEBUG [32690]: Closing database connection -- 22:37:52.508 SQL [32690]: pgsql_close() -- 22:37:52.468 DEBUG [32690]: Database connection successful -- 22:37:52.468 INFO [32690]: _SERVER found -- 22:37:52.468 INFO [32690]: REMOTE_ADDR = 10.0.0.15 -- 22:37:52.468 INFO [32690]: SERVER_NAME = oameye.works.coregrade.com -- 22:37:52.468 INFO [32690]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=7c3fleu93imu4drgd7k53fsg2ul9vte5 -- 22:37:52.468 INFO [32690]: QUERY_STRING = /auth/resetpass -- 22:37:52.468 INFO [32690]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:37:52.508 INFO [32690]: COREGRADE is stopping... -- 22:37:52.508 DEBUG [32690]: Closing database connection -- 22:37:52.508 SQL [32690]: pgsql_close() -- 22:37:52.649 INFO [32690]: COREGRADE is starting... -- 22:37:52.650 INFO [32690]: Version from config: 1.0 -- 22:37:52.650 DEBUG [32690]: Connecting to database... -- 22:37:52.650 DEBUG [32690]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:37:52.650 SQL [32690]: pgsql_db_connect() -- 22:37:52.654 DEBUG [32690]: Database connection successful -- 22:37:52.654 INFO [32690]: _SERVER found -- 22:37:52.654 INFO [32690]: REMOTE_ADDR = 10.0.0.15 -- 22:37:52.654 INFO [32690]: SERVER_NAME = oameye.works.coregrade.com -- 22:37:52.654 INFO [32690]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=7c3fleu93imu4drgd7k53fsg2ul9vte5 -- 22:37:52.654 INFO [32690]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:37:52.654 INFO [32690]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:37:52.665 INFO [32690]: COREGRADE is stopping... -- 22:37:52.665 DEBUG [32690]: Closing database connection -- 22:37:52.665 SQL [32690]: pgsql_close() -- 22:39:30.492 INFO [1878]: COREGRADE is starting... -- 22:39:30.492 INFO [1878]: Version from config: 1.0 -- 22:39:30.492 DEBUG [1878]: Connecting to database... -- 22:39:30.492 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:39:30.492 SQL [1878]: pgsql_db_connect() -- 22:39:30.496 DEBUG [1878]: Database connection successful -- 22:39:30.496 INFO [1878]: _SERVER found -- 22:39:30.496 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 22:39:30.496 INFO [1878]: SERVER_NAME = oameye.works.coregrade.com -- 22:39:30.496 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.531767543.1586652800; ci_session=3edutff4llqcd6c7bci5dq61bjmj14bk -- 22:39:30.496 INFO [1878]: QUERY_STRING = -- 22:39:30.496 INFO [1878]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:39:30.529 INFO [1878]: COREGRADE is stopping... -- 22:39:30.529 DEBUG [1878]: Closing database connection -- 22:39:30.529 SQL [1878]: pgsql_close() -- 22:39:30.665 INFO [1878]: COREGRADE is starting... -- 22:39:30.665 INFO [1878]: Version from config: 1.0 -- 22:39:30.665 DEBUG [1878]: Connecting to database... -- 22:39:30.665 DEBUG [1878]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:39:30.665 SQL [1878]: pgsql_db_connect() -- 22:39:30.669 DEBUG [1878]: Database connection successful -- 22:39:30.669 INFO [1878]: _SERVER found -- 22:39:30.669 INFO [1878]: REMOTE_ADDR = 10.0.0.15 -- 22:39:30.669 INFO [1878]: SERVER_NAME = oameye.works.coregrade.com -- 22:39:30.669 INFO [1878]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.531767543.1586652800; ci_session=dubd6tmbqdebrtar4vbr2ltuq5mju9t9 -- 22:39:30.669 INFO [1878]: QUERY_STRING = /assets/img/footer_1.jpg -- 22:39:30.669 INFO [1878]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:39:30.681 INFO [1878]: COREGRADE is stopping... -- 22:39:30.681 DEBUG [1878]: Closing database connection -- 22:39:30.681 SQL [1878]: pgsql_close() -- 22:42:44.266 INFO [8121]: COREGRADE is starting... -- 22:42:44.266 INFO [8121]: Version from config: 1.0 -- 22:42:44.266 DEBUG [8121]: Connecting to database... -- 22:42:44.266 DEBUG [8121]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:42:44.266 SQL [8121]: pgsql_db_connect() -- 22:42:44.272 DEBUG [8121]: Database connection successful -- 22:42:44.272 INFO [8121]: _SERVER found -- 22:42:44.272 INFO [8121]: REMOTE_ADDR = 10.0.0.15 -- 22:42:44.272 INFO [8121]: SERVER_NAME = oameye.works.coregrade.com -- 22:42:44.272 INFO [8121]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=7c3fleu93imu4drgd7k53fsg2ul9vte5 -- 22:42:44.272 INFO [8121]: QUERY_STRING = /auth -- 22:42:44.272 INFO [8121]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:42:44.311 INFO [8121]: COREGRADE is stopping... -- 22:42:44.311 DEBUG [8121]: Closing database connection -- 22:42:44.311 SQL [8121]: pgsql_close() -- 22:42:44.470 INFO [8121]: COREGRADE is starting... -- 22:42:44.470 INFO [8121]: Version from config: 1.0 -- 22:42:44.470 DEBUG [8121]: Connecting to database... -- 22:42:44.470 DEBUG [8121]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:42:44.470 SQL [8121]: pgsql_db_connect() -- 22:42:44.474 DEBUG [8121]: Database connection successful -- 22:42:44.474 INFO [8121]: _SERVER found -- 22:42:44.474 INFO [8121]: REMOTE_ADDR = 10.0.0.15 -- 22:42:44.474 INFO [8121]: SERVER_NAME = oameye.works.coregrade.com -- 22:42:44.474 INFO [8121]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=245fa3ka1uior8i2658nk54qpup6siqn -- 22:42:44.474 INFO [8121]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:42:44.474 INFO [8121]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:42:44.487 INFO [8121]: COREGRADE is stopping... -- 22:42:44.487 DEBUG [8121]: Closing database connection -- 22:42:44.487 SQL [8121]: pgsql_close() -- 22:44:40.766 INFO [8122]: COREGRADE is starting... -- 22:44:40.766 INFO [8122]: Version from config: 1.0 -- 22:44:40.766 DEBUG [8122]: Connecting to database... -- 22:44:40.766 DEBUG [8122]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:44:40.766 SQL [8122]: pgsql_db_connect() -- 22:44:40.770 DEBUG [8122]: Database connection successful -- 22:44:40.770 INFO [8122]: _SERVER found -- 22:44:40.770 INFO [8122]: REMOTE_ADDR = 10.0.0.15 -- 22:44:40.770 INFO [8122]: SERVER_NAME = oameye.works.coregrade.com -- 22:44:40.770 INFO [8122]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=245fa3ka1uior8i2658nk54qpup6siqn -- 22:44:40.770 INFO [8122]: QUERY_STRING = /auth/resetpass -- 22:44:40.770 INFO [8122]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:44:40.810 INFO [8122]: COREGRADE is stopping... -- 22:44:40.810 DEBUG [8122]: Closing database connection -- 22:44:40.810 SQL [8122]: pgsql_close() -- 22:44:40.997 INFO [8122]: COREGRADE is starting... -- 22:44:40.997 INFO [8122]: Version from config: 1.0 -- 22:44:40.997 DEBUG [8122]: Connecting to database... -- 22:44:40.997 DEBUG [8122]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:44:40.997 SQL [8122]: pgsql_db_connect() -- 22:44:41.001 DEBUG [8122]: Database connection successful -- 22:44:41.001 INFO [8122]: _SERVER found -- 22:44:41.001 INFO [8122]: REMOTE_ADDR = 10.0.0.15 -- 22:44:41.001 INFO [8122]: SERVER_NAME = oameye.works.coregrade.com -- 22:44:41.001 INFO [8122]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=245fa3ka1uior8i2658nk54qpup6siqn -- 22:44:41.001 INFO [8122]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:44:41.001 INFO [8122]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:44:41.013 INFO [8122]: COREGRADE is stopping... -- 22:44:41.014 DEBUG [8122]: Closing database connection -- 22:44:41.014 SQL [8122]: pgsql_close() -- 22:44:45.508 INFO [8122]: COREGRADE is starting... -- 22:44:45.508 INFO [8122]: Version from config: 1.0 -- 22:44:45.509 DEBUG [8122]: Connecting to database... -- 22:44:45.509 DEBUG [8122]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:44:45.509 SQL [8122]: pgsql_db_connect() -- 22:44:45.513 DEBUG [8122]: Database connection successful -- 22:44:45.513 INFO [8122]: _SERVER found -- 22:44:45.513 INFO [8122]: REMOTE_ADDR = 10.0.0.15 -- 22:44:45.513 INFO [8122]: SERVER_NAME = oameye.works.coregrade.com -- 22:44:45.513 INFO [8122]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=245fa3ka1uior8i2658nk54qpup6siqn -- 22:44:45.513 INFO [8122]: QUERY_STRING = /auth -- 22:44:45.513 INFO [8122]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:44:45.548 INFO [8122]: COREGRADE is stopping... -- 22:44:45.548 DEBUG [8122]: Closing database connection -- 22:44:45.548 SQL [8122]: pgsql_close() -- 22:45:57.741 INFO [8123]: COREGRADE is starting... -- 22:45:57.742 INFO [8123]: Version from config: 1.0 -- 22:45:57.742 DEBUG [8123]: Connecting to database... -- 22:45:57.742 DEBUG [8123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:45:57.742 SQL [8123]: pgsql_db_connect() -- 22:45:57.746 DEBUG [8123]: Database connection successful -- 22:45:57.746 INFO [8123]: _SERVER found -- 22:45:57.746 INFO [8123]: REMOTE_ADDR = 10.0.0.15 -- 22:45:57.746 INFO [8123]: SERVER_NAME = oameye.works.coregrade.com -- 22:45:57.746 INFO [8123]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=245fa3ka1uior8i2658nk54qpup6siqn -- 22:45:57.746 INFO [8123]: QUERY_STRING = /auth/resetpass -- 22:45:57.746 INFO [8123]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:45:57.786 INFO [8123]: COREGRADE is stopping... -- 22:45:57.786 DEBUG [8123]: Closing database connection -- 22:45:57.786 SQL [8123]: pgsql_close() -- 22:46:02.057 INFO [8123]: COREGRADE is starting... -- 22:46:02.057 INFO [8123]: Version from config: 1.0 -- 22:46:02.057 DEBUG [8123]: Connecting to database... -- 22:46:02.057 DEBUG [8123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:46:02.057 SQL [8123]: pgsql_db_connect() -- 22:46:02.062 DEBUG [8123]: Database connection successful -- 22:46:02.062 INFO [8123]: _SERVER found -- 22:46:02.062 INFO [8123]: REMOTE_ADDR = 10.0.0.15 -- 22:46:02.062 INFO [8123]: SERVER_NAME = oameye.works.coregrade.com -- 22:46:02.062 INFO [8123]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=245fa3ka1uior8i2658nk54qpup6siqn -- 22:46:02.062 INFO [8123]: QUERY_STRING = /auth -- 22:46:02.062 INFO [8123]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:46:02.097 INFO [8123]: COREGRADE is stopping... -- 22:46:02.097 DEBUG [8123]: Closing database connection -- 22:46:02.097 SQL [8123]: pgsql_close() -- 22:46:13.064 INFO [8124]: COREGRADE is starting... -- 22:46:13.064 INFO [8124]: Version from config: 1.0 -- 22:46:13.064 DEBUG [8124]: Connecting to database... -- 22:46:13.064 DEBUG [8124]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:46:13.064 SQL [8124]: pgsql_db_connect() -- 22:46:13.068 DEBUG [8124]: Database connection successful -- 22:46:13.068 INFO [8124]: _SERVER found -- 22:46:13.068 INFO [8124]: REMOTE_ADDR = 10.0.0.15 -- 22:46:13.068 INFO [8124]: SERVER_NAME = oameye.works.coregrade.com -- 22:46:13.068 INFO [8124]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=245fa3ka1uior8i2658nk54qpup6siqn -- 22:46:13.068 INFO [8124]: QUERY_STRING = /auth/resetpass -- 22:46:13.068 INFO [8124]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:46:13.107 INFO [8124]: COREGRADE is stopping... -- 22:46:13.107 DEBUG [8124]: Closing database connection -- 22:46:13.107 SQL [8124]: pgsql_close() -- 22:47:40.926 INFO [8125]: COREGRADE is starting... -- 22:47:40.926 INFO [8125]: Version from config: 1.0 -- 22:47:40.926 DEBUG [8125]: Connecting to database... -- 22:47:40.926 DEBUG [8125]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:40.926 SQL [8125]: pgsql_db_connect() -- 22:47:40.930 DEBUG [8125]: Database connection successful -- 22:47:40.930 INFO [8125]: _SERVER found -- 22:47:40.930 INFO [8125]: REMOTE_ADDR = 10.0.0.15 -- 22:47:40.930 INFO [8125]: SERVER_NAME = oameye.works.coregrade.com -- 22:47:40.930 INFO [8125]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=245fa3ka1uior8i2658nk54qpup6siqn -- 22:47:40.930 INFO [8125]: QUERY_STRING = /auth -- 22:47:40.930 INFO [8125]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:47:40.969 INFO [8125]: COREGRADE is stopping... -- 22:47:40.969 DEBUG [8125]: Closing database connection -- 22:47:40.969 SQL [8125]: pgsql_close() -- 22:47:43.362 INFO [8125]: COREGRADE is starting... -- 22:47:43.362 INFO [8125]: Version from config: 1.0 -- 22:47:43.362 DEBUG [8125]: Connecting to database... -- 22:47:43.362 DEBUG [8125]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:43.362 SQL [8125]: pgsql_db_connect() -- 22:47:43.367 DEBUG [8125]: Database connection successful -- 22:47:43.367 INFO [8125]: _SERVER found -- 22:47:43.367 INFO [8125]: REMOTE_ADDR = 10.0.0.15 -- 22:47:43.367 INFO [8125]: SERVER_NAME = oameye.works.coregrade.com -- 22:47:43.367 INFO [8125]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=245fa3ka1uior8i2658nk54qpup6siqn -- 22:47:43.367 INFO [8125]: QUERY_STRING = /auth/resetpass -- 22:47:43.367 INFO [8125]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:47:43.402 INFO [8125]: COREGRADE is stopping... -- 22:47:43.402 DEBUG [8125]: Closing database connection -- 22:47:43.402 SQL [8125]: pgsql_close() -- 22:47:56.975 INFO [8175]: COREGRADE is starting... -- 22:47:56.976 INFO [8175]: Version from config: 1.0 -- 22:47:56.976 DEBUG [8175]: Connecting to database... -- 22:47:56.976 DEBUG [8175]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:56.976 SQL [8175]: pgsql_db_connect() -- 22:47:56.980 DEBUG [8175]: Database connection successful -- 22:47:56.980 INFO [8175]: _SERVER found -- 22:47:56.980 INFO [8175]: REMOTE_ADDR = 10.0.0.15 -- 22:47:56.980 INFO [8175]: SERVER_NAME = oameye.works.coregrade.com -- 22:47:56.980 INFO [8175]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=245fa3ka1uior8i2658nk54qpup6siqn -- 22:47:56.980 INFO [8175]: QUERY_STRING = /auth -- 22:47:56.980 INFO [8175]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:47:57.019 INFO [8175]: COREGRADE is stopping... -- 22:47:57.019 DEBUG [8175]: Closing database connection -- 22:47:57.019 SQL [8175]: pgsql_close() -- 22:50:43.262 INFO [8121]: COREGRADE is starting... -- 22:50:43.263 INFO [8121]: Version from config: 1.0 -- 22:50:43.263 DEBUG [8121]: Connecting to database... -- 22:50:43.263 DEBUG [8121]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:50:43.263 SQL [8121]: pgsql_db_connect() -- 22:50:43.267 DEBUG [8121]: Database connection successful -- 22:50:43.267 INFO [8121]: _SERVER found -- 22:50:43.267 INFO [8121]: REMOTE_ADDR = 10.0.0.15 -- 22:50:43.267 INFO [8121]: SERVER_NAME = oameye.works.coregrade.com -- 22:50:43.267 INFO [8121]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=aghik8k63imep14c83k8f4itt3knit3o -- 22:50:43.267 INFO [8121]: QUERY_STRING = /member -- 22:50:43.267 INFO [8121]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:50:43.314 INFO [8121]: COREGRADE is stopping... -- 22:50:43.314 DEBUG [8121]: Closing database connection -- 22:50:43.314 SQL [8121]: pgsql_close() -- 22:50:43.423 INFO [8121]: COREGRADE is starting... -- 22:50:43.424 INFO [8121]: Version from config: 1.0 -- 22:50:43.424 DEBUG [8121]: Connecting to database... -- 22:50:43.424 DEBUG [8121]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:50:43.424 SQL [8121]: pgsql_db_connect() -- 22:50:43.428 DEBUG [8121]: Database connection successful -- 22:50:43.428 INFO [8121]: _SERVER found -- 22:50:43.428 INFO [8121]: REMOTE_ADDR = 10.0.0.15 -- 22:50:43.428 INFO [8121]: SERVER_NAME = oameye.works.coregrade.com -- 22:50:43.428 INFO [8121]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=osrqq1uu9jc1nvn6ecfdtjnccbegvh6k -- 22:50:43.428 INFO [8121]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:50:43.428 INFO [8121]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:50:43.439 INFO [8121]: COREGRADE is stopping... -- 22:50:43.439 DEBUG [8121]: Closing database connection -- 22:50:43.439 SQL [8121]: pgsql_close() -- 22:50:45.672 INFO [8121]: COREGRADE is starting... -- 22:50:45.673 INFO [8121]: Version from config: 1.0 -- 22:50:45.673 DEBUG [8121]: Connecting to database... -- 22:50:45.673 DEBUG [8121]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:50:45.673 SQL [8121]: pgsql_db_connect() -- 22:50:45.677 DEBUG [8121]: Database connection successful -- 22:50:45.677 INFO [8121]: _SERVER found -- 22:50:45.677 INFO [8121]: REMOTE_ADDR = 10.0.0.15 -- 22:50:45.677 INFO [8121]: SERVER_NAME = oameye.works.coregrade.com -- 22:50:45.677 INFO [8121]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=osrqq1uu9jc1nvn6ecfdtjnccbegvh6k -- 22:50:45.677 INFO [8121]: QUERY_STRING = /member/configure -- 22:50:45.677 INFO [8121]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:50:45.720 INFO [8121]: COREGRADE is stopping... -- 22:50:45.720 DEBUG [8121]: Closing database connection -- 22:50:45.720 SQL [8121]: pgsql_close() -- 22:50:45.779 INFO [8121]: COREGRADE is starting... -- 22:50:45.780 INFO [8121]: Version from config: 1.0 -- 22:50:45.780 DEBUG [8121]: Connecting to database... -- 22:50:45.780 DEBUG [8121]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:50:45.780 SQL [8121]: pgsql_db_connect() -- 22:50:45.784 DEBUG [8121]: Database connection successful -- 22:50:45.784 INFO [8121]: _SERVER found -- 22:50:45.784 INFO [8121]: REMOTE_ADDR = 10.0.0.15 -- 22:50:45.784 INFO [8121]: SERVER_NAME = oameye.works.coregrade.com -- 22:50:45.784 INFO [8121]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=osrqq1uu9jc1nvn6ecfdtjnccbegvh6k -- 22:50:45.784 INFO [8121]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 22:50:45.784 INFO [8121]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:50:45.795 INFO [8121]: COREGRADE is stopping... -- 22:50:45.795 DEBUG [8121]: Closing database connection -- 22:50:45.795 SQL [8121]: pgsql_close() -- 22:51:07.449 INFO [8122]: COREGRADE is starting... -- 22:51:07.450 INFO [8122]: Version from config: 1.0 -- 22:51:07.450 DEBUG [8122]: Connecting to database... -- 22:51:07.450 DEBUG [8122]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:51:07.450 SQL [8122]: pgsql_db_connect() -- 22:51:07.454 DEBUG [8122]: Database connection successful -- 22:51:07.454 INFO [8122]: _SERVER found -- 22:51:07.454 INFO [8122]: REMOTE_ADDR = 10.0.0.15 -- 22:51:07.454 INFO [8122]: SERVER_NAME = oameye.works.coregrade.com -- 22:51:07.454 INFO [8122]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=osrqq1uu9jc1nvn6ecfdtjnccbegvh6k -- 22:51:07.454 INFO [8122]: QUERY_STRING = /member/configure -- 22:51:07.454 INFO [8122]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:51:07.503 INFO [8122]: COREGRADE is stopping... -- 22:51:07.503 DEBUG [8122]: Closing database connection -- 22:51:07.503 SQL [8122]: pgsql_close() -- 22:51:07.822 INFO [8122]: COREGRADE is starting... -- 22:51:07.822 INFO [8122]: Version from config: 1.0 -- 22:51:07.822 DEBUG [8122]: Connecting to database... -- 22:51:07.822 DEBUG [8122]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:51:07.822 SQL [8122]: pgsql_db_connect() -- 22:51:07.826 DEBUG [8122]: Database connection successful -- 22:51:07.826 INFO [8122]: _SERVER found -- 22:51:07.826 INFO [8122]: REMOTE_ADDR = 10.0.0.15 -- 22:51:07.826 INFO [8122]: SERVER_NAME = oameye.works.coregrade.com -- 22:51:07.826 INFO [8122]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=osrqq1uu9jc1nvn6ecfdtjnccbegvh6k -- 22:51:07.826 INFO [8122]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:51:07.826 INFO [8122]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:51:07.839 INFO [8122]: COREGRADE is stopping... -- 22:51:07.839 DEBUG [8122]: Closing database connection -- 22:51:07.839 SQL [8122]: pgsql_close() -- 22:51:07.851 INFO [8122]: COREGRADE is starting... -- 22:51:07.852 INFO [8122]: Version from config: 1.0 -- 22:51:07.852 DEBUG [8122]: Connecting to database... -- 22:51:07.852 DEBUG [8122]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:51:07.852 SQL [8122]: pgsql_db_connect() -- 22:51:07.855 DEBUG [8122]: Database connection successful -- 22:51:07.855 INFO [8122]: _SERVER found -- 22:51:07.855 INFO [8122]: REMOTE_ADDR = 10.0.0.15 -- 22:51:07.855 INFO [8122]: SERVER_NAME = oameye.works.coregrade.com -- 22:51:07.855 INFO [8122]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=osrqq1uu9jc1nvn6ecfdtjnccbegvh6k -- 22:51:07.855 INFO [8122]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 22:51:07.855 INFO [8122]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:51:07.868 INFO [8122]: COREGRADE is stopping... -- 22:51:07.868 DEBUG [8122]: Closing database connection -- 22:51:07.868 SQL [8122]: pgsql_close() -- 22:52:05.539 INFO [8123]: COREGRADE is starting... -- 22:52:05.540 INFO [8123]: Version from config: 1.0 -- 22:52:05.540 DEBUG [8123]: Connecting to database... -- 22:52:05.540 DEBUG [8123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:52:05.540 SQL [8123]: pgsql_db_connect() -- 22:52:05.544 DEBUG [8123]: Database connection successful -- 22:52:05.544 INFO [8123]: _SERVER found -- 22:52:05.544 INFO [8123]: REMOTE_ADDR = 10.0.0.15 -- 22:52:05.544 INFO [8123]: SERVER_NAME = oameye.works.coregrade.com -- 22:52:05.544 INFO [8123]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=osrqq1uu9jc1nvn6ecfdtjnccbegvh6k -- 22:52:05.544 INFO [8123]: QUERY_STRING = /member/configure -- 22:52:05.544 INFO [8123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:52:05.592 INFO [8123]: COREGRADE is stopping... -- 22:52:05.592 DEBUG [8123]: Closing database connection -- 22:52:05.592 SQL [8123]: pgsql_close() -- 22:52:05.699 INFO [8123]: COREGRADE is starting... -- 22:52:05.699 INFO [8123]: Version from config: 1.0 -- 22:52:05.699 DEBUG [8123]: Connecting to database... -- 22:52:05.699 DEBUG [8123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:52:05.699 SQL [8123]: pgsql_db_connect() -- 22:52:05.703 DEBUG [8123]: Database connection successful -- 22:52:05.703 INFO [8123]: _SERVER found -- 22:52:05.703 INFO [8123]: REMOTE_ADDR = 10.0.0.15 -- 22:52:05.703 INFO [8123]: SERVER_NAME = oameye.works.coregrade.com -- 22:52:05.703 INFO [8123]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=osrqq1uu9jc1nvn6ecfdtjnccbegvh6k -- 22:52:05.703 INFO [8123]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:52:05.703 INFO [8123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:52:05.716 INFO [8123]: COREGRADE is stopping... -- 22:52:05.716 DEBUG [8123]: Closing database connection -- 22:52:05.716 SQL [8123]: pgsql_close() -- 22:52:05.725 INFO [8123]: COREGRADE is starting... -- 22:52:05.725 INFO [8123]: Version from config: 1.0 -- 22:52:05.725 DEBUG [8123]: Connecting to database... -- 22:52:05.725 DEBUG [8123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:52:05.725 SQL [8123]: pgsql_db_connect() -- 22:52:05.729 DEBUG [8123]: Database connection successful -- 22:52:05.729 INFO [8123]: _SERVER found -- 22:52:05.729 INFO [8123]: REMOTE_ADDR = 10.0.0.15 -- 22:52:05.729 INFO [8123]: SERVER_NAME = oameye.works.coregrade.com -- 22:52:05.729 INFO [8123]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=osrqq1uu9jc1nvn6ecfdtjnccbegvh6k -- 22:52:05.729 INFO [8123]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 22:52:05.729 INFO [8123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:52:05.742 INFO [8123]: COREGRADE is stopping... -- 22:52:05.742 DEBUG [8123]: Closing database connection -- 22:52:05.742 SQL [8123]: pgsql_close() -- 22:52:08.292 INFO [8123]: COREGRADE is starting... -- 22:52:08.292 INFO [8123]: Version from config: 1.0 -- 22:52:08.292 DEBUG [8123]: Connecting to database... -- 22:52:08.292 DEBUG [8123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:52:08.292 SQL [8123]: pgsql_db_connect() -- 22:52:08.296 DEBUG [8123]: Database connection successful -- 22:52:08.296 INFO [8123]: _SERVER found -- 22:52:08.296 INFO [8123]: REMOTE_ADDR = 10.0.0.15 -- 22:52:08.296 INFO [8123]: SERVER_NAME = oameye.works.coregrade.com -- 22:52:08.296 INFO [8123]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=osrqq1uu9jc1nvn6ecfdtjnccbegvh6k -- 22:52:08.296 INFO [8123]: QUERY_STRING = /member/addcard -- 22:52:08.296 INFO [8123]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:52:08.343 INFO [8123]: COREGRADE is stopping... -- 22:52:08.343 DEBUG [8123]: Closing database connection -- 22:52:08.343 SQL [8123]: pgsql_close() -- 22:53:01.781 INFO [8124]: COREGRADE is starting... -- 22:53:01.782 INFO [8124]: Version from config: 1.0 -- 22:53:01.782 DEBUG [8124]: Connecting to database... -- 22:53:01.782 DEBUG [8124]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:53:01.782 SQL [8124]: pgsql_db_connect() -- 22:53:01.786 DEBUG [8124]: Database connection successful -- 22:53:01.786 INFO [8124]: _SERVER found -- 22:53:01.786 INFO [8124]: REMOTE_ADDR = 10.0.0.15 -- 22:53:01.786 INFO [8124]: SERVER_NAME = oameye.works.coregrade.com -- 22:53:01.786 INFO [8124]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=osrqq1uu9jc1nvn6ecfdtjnccbegvh6k -- 22:53:01.786 INFO [8124]: QUERY_STRING = /member/configure -- 22:53:01.786 INFO [8124]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:53:01.844 INFO [8124]: COREGRADE is stopping... -- 22:53:01.844 DEBUG [8124]: Closing database connection -- 22:53:01.844 SQL [8124]: pgsql_close() -- 22:53:03.976 INFO [8124]: COREGRADE is starting... -- 22:53:03.977 INFO [8124]: Version from config: 1.0 -- 22:53:03.977 DEBUG [8124]: Connecting to database... -- 22:53:03.977 DEBUG [8124]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:53:03.977 SQL [8124]: pgsql_db_connect() -- 22:53:03.981 DEBUG [8124]: Database connection successful -- 22:53:03.981 INFO [8124]: _SERVER found -- 22:53:03.981 INFO [8124]: REMOTE_ADDR = 10.0.0.15 -- 22:53:03.981 INFO [8124]: SERVER_NAME = oameye.works.coregrade.com -- 22:53:03.981 INFO [8124]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=osrqq1uu9jc1nvn6ecfdtjnccbegvh6k -- 22:53:03.981 INFO [8124]: QUERY_STRING = /member -- 22:53:03.981 INFO [8124]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:53:04.025 INFO [8124]: COREGRADE is stopping... -- 22:53:04.025 DEBUG [8124]: Closing database connection -- 22:53:04.025 SQL [8124]: pgsql_close() -- 22:53:05.132 INFO [8124]: COREGRADE is starting... -- 22:53:05.132 INFO [8124]: Version from config: 1.0 -- 22:53:05.132 DEBUG [8124]: Connecting to database... -- 22:53:05.132 DEBUG [8124]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:53:05.132 SQL [8124]: pgsql_db_connect() -- 22:53:05.136 DEBUG [8124]: Database connection successful -- 22:53:05.136 INFO [8124]: _SERVER found -- 22:53:05.136 INFO [8124]: REMOTE_ADDR = 10.0.0.15 -- 22:53:05.136 INFO [8124]: SERVER_NAME = oameye.works.coregrade.com -- 22:53:05.136 INFO [8124]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=osrqq1uu9jc1nvn6ecfdtjnccbegvh6k -- 22:53:05.136 INFO [8124]: QUERY_STRING = /member/configure -- 22:53:05.136 INFO [8124]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:53:05.178 INFO [8124]: COREGRADE is stopping... -- 22:53:05.179 DEBUG [8124]: Closing database connection -- 22:53:05.179 SQL [8124]: pgsql_close() -- 22:54:14.582 INFO [8125]: COREGRADE is starting... -- 22:54:14.582 INFO [8125]: Version from config: 1.0 -- 22:54:14.582 DEBUG [8125]: Connecting to database... -- 22:54:14.582 DEBUG [8125]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:54:14.582 SQL [8125]: pgsql_db_connect() -- 22:54:14.587 DEBUG [8125]: Database connection successful -- 22:54:14.587 INFO [8125]: _SERVER found -- 22:54:14.587 INFO [8125]: REMOTE_ADDR = 10.0.0.15 -- 22:54:14.587 INFO [8125]: SERVER_NAME = oameye.works.coregrade.com -- 22:54:14.587 INFO [8125]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=osrqq1uu9jc1nvn6ecfdtjnccbegvh6k -- 22:54:14.587 INFO [8125]: QUERY_STRING = /member -- 22:54:14.587 INFO [8125]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:54:14.631 INFO [8125]: COREGRADE is stopping... -- 22:54:14.631 DEBUG [8125]: Closing database connection -- 22:54:14.631 SQL [8125]: pgsql_close() -- 22:54:38.669 INFO [8175]: COREGRADE is starting... -- 22:54:38.669 INFO [8175]: Version from config: 1.0 -- 22:54:38.669 DEBUG [8175]: Connecting to database... -- 22:54:38.669 DEBUG [8175]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:54:38.669 SQL [8175]: pgsql_db_connect() -- 22:54:38.673 DEBUG [8175]: Database connection successful -- 22:54:38.673 INFO [8175]: _SERVER found -- 22:54:38.673 INFO [8175]: REMOTE_ADDR = 10.0.0.15 -- 22:54:38.673 INFO [8175]: SERVER_NAME = oameye.works.coregrade.com -- 22:54:38.673 INFO [8175]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=osrqq1uu9jc1nvn6ecfdtjnccbegvh6k -- 22:54:38.673 INFO [8175]: QUERY_STRING = /member -- 22:54:38.673 INFO [8175]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:54:38.718 INFO [8175]: COREGRADE is stopping... -- 22:54:38.718 DEBUG [8175]: Closing database connection -- 22:54:38.718 SQL [8175]: pgsql_close() -- 22:54:38.925 INFO [8175]: COREGRADE is starting... -- 22:54:38.925 INFO [8175]: Version from config: 1.0 -- 22:54:38.925 DEBUG [8175]: Connecting to database... -- 22:54:38.925 DEBUG [8175]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:54:38.925 SQL [8175]: pgsql_db_connect() -- 22:54:38.929 DEBUG [8175]: Database connection successful -- 22:54:38.929 INFO [8175]: _SERVER found -- 22:54:38.929 INFO [8175]: REMOTE_ADDR = 10.0.0.15 -- 22:54:38.929 INFO [8175]: SERVER_NAME = oameye.works.coregrade.com -- 22:54:38.929 INFO [8175]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=osrqq1uu9jc1nvn6ecfdtjnccbegvh6k -- 22:54:38.929 INFO [8175]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:54:38.929 INFO [8175]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:54:38.942 INFO [8175]: COREGRADE is stopping... -- 22:54:38.942 DEBUG [8175]: Closing database connection -- 22:54:38.942 SQL [8175]: pgsql_close() -- 22:54:43.485 INFO [8175]: COREGRADE is starting... -- 22:54:43.486 INFO [8175]: Version from config: 1.0 -- 22:54:43.486 DEBUG [8175]: Connecting to database... -- 22:54:43.486 DEBUG [8175]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:54:43.486 SQL [8175]: pgsql_db_connect() -- 22:54:43.490 DEBUG [8175]: Database connection successful -- 22:54:43.490 INFO [8175]: _SERVER found -- 22:54:43.490 INFO [8175]: REMOTE_ADDR = 10.0.0.15 -- 22:54:43.490 INFO [8175]: SERVER_NAME = oameye.works.coregrade.com -- 22:54:43.490 INFO [8175]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=osrqq1uu9jc1nvn6ecfdtjnccbegvh6k -- 22:54:43.490 INFO [8175]: QUERY_STRING = /member -- 22:54:43.490 INFO [8175]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:54:43.533 INFO [8175]: COREGRADE is stopping... -- 22:54:43.533 DEBUG [8175]: Closing database connection -- 22:54:43.533 SQL [8175]: pgsql_close() -- 22:54:44.911 INFO [8175]: COREGRADE is starting... -- 22:54:44.911 INFO [8175]: Version from config: 1.0 -- 22:54:44.911 DEBUG [8175]: Connecting to database... -- 22:54:44.911 DEBUG [8175]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:54:44.911 SQL [8175]: pgsql_db_connect() -- 22:54:44.915 DEBUG [8175]: Database connection successful -- 22:54:44.915 INFO [8175]: _SERVER found -- 22:54:44.915 INFO [8175]: REMOTE_ADDR = 10.0.0.15 -- 22:54:44.915 INFO [8175]: SERVER_NAME = oameye.works.coregrade.com -- 22:54:44.915 INFO [8175]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=osrqq1uu9jc1nvn6ecfdtjnccbegvh6k -- 22:54:44.915 INFO [8175]: QUERY_STRING = /member/configure -- 22:54:44.915 INFO [8175]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:54:44.962 INFO [8175]: COREGRADE is stopping... -- 22:54:44.962 DEBUG [8175]: Closing database connection -- 22:54:44.962 SQL [8175]: pgsql_close() -- 22:54:45.015 INFO [8175]: COREGRADE is starting... -- 22:54:45.015 INFO [8175]: Version from config: 1.0 -- 22:54:45.015 DEBUG [8175]: Connecting to database... -- 22:54:45.015 DEBUG [8175]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:54:45.015 SQL [8175]: pgsql_db_connect() -- 22:54:45.019 DEBUG [8175]: Database connection successful -- 22:54:45.019 INFO [8175]: _SERVER found -- 22:54:45.019 INFO [8175]: REMOTE_ADDR = 10.0.0.15 -- 22:54:45.019 INFO [8175]: SERVER_NAME = oameye.works.coregrade.com -- 22:54:45.019 INFO [8175]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=osrqq1uu9jc1nvn6ecfdtjnccbegvh6k -- 22:54:45.019 INFO [8175]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 22:54:45.019 INFO [8175]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:54:45.031 INFO [8175]: COREGRADE is stopping... -- 22:54:45.031 DEBUG [8175]: Closing database connection -- 22:54:45.031 SQL [8175]: pgsql_close() -- 22:54:47.739 INFO [8175]: COREGRADE is starting... -- 22:54:47.739 INFO [8175]: Version from config: 1.0 -- 22:54:47.739 DEBUG [8175]: Connecting to database... -- 22:54:47.739 DEBUG [8175]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:54:47.739 SQL [8175]: pgsql_db_connect() -- 22:54:47.743 DEBUG [8175]: Database connection successful -- 22:54:47.743 INFO [8175]: _SERVER found -- 22:54:47.743 INFO [8175]: REMOTE_ADDR = 10.0.0.15 -- 22:54:47.743 INFO [8175]: SERVER_NAME = oameye.works.coregrade.com -- 22:54:47.743 INFO [8175]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=osrqq1uu9jc1nvn6ecfdtjnccbegvh6k -- 22:54:47.743 INFO [8175]: QUERY_STRING = /member -- 22:54:47.743 INFO [8175]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:54:47.783 INFO [8175]: COREGRADE is stopping... -- 22:54:47.783 DEBUG [8175]: Closing database connection -- 22:54:47.783 SQL [8175]: pgsql_close() -- 22:55:33.558 INFO [8121]: COREGRADE is starting... -- 22:55:33.558 INFO [8121]: Version from config: 1.0 -- 22:55:33.558 DEBUG [8121]: Connecting to database... -- 22:55:33.558 DEBUG [8121]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:55:33.558 SQL [8121]: pgsql_db_connect() -- 22:55:33.562 DEBUG [8121]: Database connection successful -- 22:55:33.562 INFO [8121]: _SERVER found -- 22:55:33.562 INFO [8121]: REMOTE_ADDR = 10.0.0.15 -- 22:55:33.562 INFO [8121]: SERVER_NAME = oameye.works.coregrade.com -- 22:55:33.562 INFO [8121]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=osrqq1uu9jc1nvn6ecfdtjnccbegvh6k -- 22:55:33.562 INFO [8121]: QUERY_STRING = /member/configure -- 22:55:33.562 INFO [8121]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:55:33.606 INFO [8121]: COREGRADE is stopping... -- 22:55:33.606 DEBUG [8121]: Closing database connection -- 22:55:33.606 SQL [8121]: pgsql_close() -- 22:56:26.705 INFO [8122]: COREGRADE is starting... -- 22:56:26.705 INFO [8122]: Version from config: 1.0 -- 22:56:26.705 DEBUG [8122]: Connecting to database... -- 22:56:26.705 DEBUG [8122]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:56:26.705 SQL [8122]: pgsql_db_connect() -- 22:56:26.709 DEBUG [8122]: Database connection successful -- 22:56:26.709 INFO [8122]: _SERVER found -- 22:56:26.709 INFO [8122]: REMOTE_ADDR = 10.0.0.15 -- 22:56:26.709 INFO [8122]: SERVER_NAME = oameye.works.coregrade.com -- 22:56:26.709 INFO [8122]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=osrqq1uu9jc1nvn6ecfdtjnccbegvh6k -- 22:56:26.709 INFO [8122]: QUERY_STRING = /member/configure -- 22:56:26.709 INFO [8122]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:56:26.757 INFO [8122]: COREGRADE is stopping... -- 22:56:26.757 DEBUG [8122]: Closing database connection -- 22:56:26.757 SQL [8122]: pgsql_close() -- 23:04:04.337 INFO [8123]: COREGRADE is starting... -- 23:04:04.337 INFO [8123]: Version from config: 1.0 -- 23:04:04.337 DEBUG [8123]: Connecting to database... -- 23:04:04.337 DEBUG [8123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:04.338 SQL [8123]: pgsql_db_connect() -- 23:04:04.342 DEBUG [8123]: Database connection successful -- 23:04:04.342 INFO [8123]: _SERVER found -- 23:04:04.342 INFO [8123]: REMOTE_ADDR = 10.0.0.15 -- 23:04:04.342 INFO [8123]: SERVER_NAME = oameye.works.coregrade.com -- 23:04:04.342 INFO [8123]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=dmt2u8sfi4hhqjgid871cflaut7uvb13 -- 23:04:04.342 INFO [8123]: QUERY_STRING = /auth -- 23:04:04.342 INFO [8123]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 23:04:04.376 INFO [8123]: COREGRADE is stopping... -- 23:04:04.376 DEBUG [8123]: Closing database connection -- 23:04:04.376 SQL [8123]: pgsql_close() -- 23:04:04.731 INFO [8125]: COREGRADE is starting... -- 23:04:04.731 INFO [8125]: Version from config: 1.0 -- 23:04:04.731 DEBUG [8125]: Connecting to database... -- 23:04:04.731 DEBUG [8125]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:04.731 SQL [8125]: pgsql_db_connect() -- 23:04:04.735 DEBUG [8125]: Database connection successful -- 23:04:04.735 INFO [8125]: _SERVER found -- 23:04:04.735 INFO [8125]: REMOTE_ADDR = 10.0.0.15 -- 23:04:04.735 INFO [8125]: SERVER_NAME = oameye.works.coregrade.com -- 23:04:04.735 INFO [8125]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; _gid=GA1.2.1276681625.1586628735; ci_session=h0u0cpnd0pp8qcqr33au6pa69hrqr49a -- 23:04:04.735 INFO [8125]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 23:04:04.735 INFO [8125]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 23:04:04.747 INFO [8125]: COREGRADE is stopping... -- 23:04:04.747 DEBUG [8125]: Closing database connection -- 23:04:04.747 SQL [8125]: pgsql_close() -- 23:19:07.421 INFO [8121]: COREGRADE is starting... -- 23:19:07.422 INFO [8121]: Version from config: 1.0 -- 23:19:07.422 DEBUG [8121]: Connecting to database... -- 23:19:07.422 DEBUG [8121]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:19:07.422 SQL [8121]: pgsql_db_connect() -- 23:19:07.427 DEBUG [8121]: Database connection successful -- 23:19:07.427 INFO [8121]: _SERVER found -- 23:19:07.427 INFO [8121]: REMOTE_ADDR = 10.0.0.15 -- 23:19:07.427 INFO [8121]: SERVER_NAME = oameye.works.coregrade.com -- 23:19:07.427 INFO [8121]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194 -- 23:19:07.427 INFO [8121]: QUERY_STRING = -- 23:19:07.427 INFO [8121]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:19:07.468 INFO [8121]: COREGRADE is stopping... -- 23:19:07.468 DEBUG [8121]: Closing database connection -- 23:19:07.468 SQL [8121]: pgsql_close() -- 23:19:08.093 INFO [8121]: COREGRADE is starting... -- 23:19:08.093 INFO [8121]: Version from config: 1.0 -- 23:19:08.093 DEBUG [8121]: Connecting to database... -- 23:19:08.093 DEBUG [8121]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:19:08.093 SQL [8121]: pgsql_db_connect() -- 23:19:08.097 DEBUG [8121]: Database connection successful -- 23:19:08.097 INFO [8121]: _SERVER found -- 23:19:08.097 INFO [8121]: REMOTE_ADDR = 10.0.0.15 -- 23:19:08.097 INFO [8121]: SERVER_NAME = oameye.works.coregrade.com -- 23:19:08.097 INFO [8121]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; ci_session=bvf6287791qqjgkoju05gv2366c4d7s6 -- 23:19:08.097 INFO [8121]: QUERY_STRING = /assets/img/footer_1.jpg -- 23:19:08.097 INFO [8121]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:19:08.109 INFO [8121]: COREGRADE is stopping... -- 23:19:08.109 DEBUG [8121]: Closing database connection -- 23:19:08.109 SQL [8121]: pgsql_close() -- 23:48:10.908 INFO [8122]: COREGRADE is starting... -- 23:48:10.909 INFO [8122]: Version from config: 1.0 -- 23:48:10.909 DEBUG [8122]: Connecting to database... -- 23:48:10.909 DEBUG [8122]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:48:10.909 SQL [8122]: pgsql_db_connect() -- 23:48:10.914 DEBUG [8122]: Database connection successful -- 23:48:10.914 INFO [8122]: _SERVER found -- 23:48:10.914 INFO [8122]: REMOTE_ADDR = 10.0.0.15 -- 23:48:10.914 INFO [8122]: SERVER_NAME = oameye.works.coregrade.com -- 23:48:10.914 INFO [8122]: HTTP_COOKIE = _gid=GA1.2.1485151402.1586652611; _ga=GA1.2.784606705.1583345490 -- 23:48:10.914 INFO [8122]: QUERY_STRING = -- 23:48:10.914 INFO [8122]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:48:10.958 INFO [8122]: COREGRADE is stopping... -- 23:48:10.958 DEBUG [8122]: Closing database connection -- 23:48:10.958 SQL [8122]: pgsql_close() -- 23:48:11.300 INFO [8122]: COREGRADE is starting... -- 23:48:11.300 INFO [8122]: Version from config: 1.0 -- 23:48:11.300 DEBUG [8122]: Connecting to database... -- 23:48:11.300 DEBUG [8122]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:48:11.300 SQL [8122]: pgsql_db_connect() -- 23:48:11.304 DEBUG [8122]: Database connection successful -- 23:48:11.304 INFO [8122]: _SERVER found -- 23:48:11.304 INFO [8122]: REMOTE_ADDR = 10.0.0.15 -- 23:48:11.304 INFO [8122]: SERVER_NAME = oameye.works.coregrade.com -- 23:48:11.304 INFO [8122]: HTTP_COOKIE = _gid=GA1.2.1485151402.1586652611; _ga=GA1.2.784606705.1583345490; ci_session=35tmi6up0je3h6vouc2mesv78i9pskoi -- 23:48:11.304 INFO [8122]: QUERY_STRING = /assets/img/footer_1.jpg -- 23:48:11.304 INFO [8122]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:48:11.316 INFO [8122]: COREGRADE is stopping... -- 23:48:11.316 DEBUG [8122]: Closing database connection -- 23:48:11.316 SQL [8122]: pgsql_close() -- 00:39:28.931 INFO [8369]: COREGRADE is starting... -- 00:39:28.932 INFO [8369]: Version from config: 1.0 -- 00:39:28.932 DEBUG [8369]: Connecting to database... -- 00:39:28.932 DEBUG [8369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:39:28.932 SQL [8369]: pgsql_db_connect() -- 00:39:28.937 DEBUG [8369]: Database connection successful -- 00:39:28.937 INFO [8369]: _SERVER found -- 00:39:28.937 INFO [8369]: REMOTE_ADDR = 10.0.0.15 -- 00:39:28.937 INFO [8369]: SERVER_NAME = oameye.works.coregrade.com -- 00:39:28.937 INFO [8369]: QUERY_STRING = /favicon.ico -- 00:39:28.937 INFO [8369]: HTTP_X_FORWARDED_FOR = 95.211.230.211 -- 00:39:28.955 INFO [8369]: COREGRADE is stopping... -- 00:39:28.955 DEBUG [8369]: Closing database connection -- 00:39:28.955 SQL [8369]: pgsql_close() -- 00:54:40.685 INFO [8371]: COREGRADE is starting... -- 00:54:40.685 INFO [8371]: Version from config: 1.0 -- 00:54:40.685 DEBUG [8371]: Connecting to database... -- 00:54:40.685 DEBUG [8371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:54:40.685 SQL [8371]: pgsql_db_connect() -- 00:54:40.690 DEBUG [8371]: Database connection successful -- 00:54:40.690 INFO [8371]: _SERVER found -- 00:54:40.690 INFO [8371]: REMOTE_ADDR = 10.0.0.15 -- 00:54:40.690 INFO [8371]: SERVER_NAME = oameye.works.coregrade.com -- 00:54:40.690 INFO [8371]: QUERY_STRING = /.well-known/acme-challenge/3dgaSBQzHgS1FT3dIkwXnCxE2XrR6rl3ro3uxqI3eXg -- 00:54:40.690 INFO [8371]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 00:54:40.708 INFO [8371]: COREGRADE is stopping... -- 00:54:40.708 DEBUG [8371]: Closing database connection -- 00:54:40.708 SQL [8371]: pgsql_close() -- 00:54:40.882 INFO [8175]: COREGRADE is starting... -- 00:54:40.882 INFO [8175]: Version from config: 1.0 -- 00:54:40.882 DEBUG [8175]: Connecting to database... -- 00:54:40.882 DEBUG [8175]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:54:40.882 SQL [8175]: pgsql_db_connect() -- 00:54:40.886 DEBUG [8175]: Database connection successful -- 00:54:40.886 INFO [8175]: _SERVER found -- 00:54:40.886 INFO [8175]: REMOTE_ADDR = 10.0.0.15 -- 00:54:40.886 INFO [8175]: SERVER_NAME = oameye.works.coregrade.com -- 00:54:40.886 INFO [8175]: QUERY_STRING = /.well-known/acme-challenge/3dgaSBQzHgS1FT3dIkwXnCxE2XrR6rl3ro3uxqI3eXg -- 00:54:40.886 INFO [8175]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 00:54:40.900 INFO [8175]: COREGRADE is stopping... -- 00:54:40.900 DEBUG [8175]: Closing database connection -- 00:54:40.900 SQL [8175]: pgsql_close() -- 00:54:41.027 INFO [8124]: COREGRADE is starting... -- 00:54:41.027 INFO [8124]: Version from config: 1.0 -- 00:54:41.027 DEBUG [8124]: Connecting to database... -- 00:54:41.027 DEBUG [8124]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:54:41.027 SQL [8124]: pgsql_db_connect() -- 00:54:41.031 DEBUG [8124]: Database connection successful -- 00:54:41.031 INFO [8124]: _SERVER found -- 00:54:41.031 INFO [8124]: REMOTE_ADDR = 10.0.0.15 -- 00:54:41.031 INFO [8124]: SERVER_NAME = oameye.works.coregrade.com -- 00:54:41.031 INFO [8124]: QUERY_STRING = /.well-known/acme-challenge/3dgaSBQzHgS1FT3dIkwXnCxE2XrR6rl3ro3uxqI3eXg -- 00:54:41.031 INFO [8124]: HTTP_X_FORWARDED_FOR = 18.194.58.132 -- 00:54:41.044 INFO [8124]: COREGRADE is stopping... -- 00:54:41.044 DEBUG [8124]: Closing database connection -- 00:54:41.044 SQL [8124]: pgsql_close() -- 01:36:27.126 INFO [8125]: COREGRADE is starting... -- 01:36:27.127 INFO [8125]: Version from config: 1.0 -- 01:36:27.127 DEBUG [8125]: Connecting to database... -- 01:36:27.127 DEBUG [8125]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:36:27.127 SQL [8125]: pgsql_db_connect() -- 01:36:27.132 DEBUG [8125]: Database connection successful -- 01:36:27.132 INFO [8125]: _SERVER found -- 01:36:27.132 INFO [8125]: REMOTE_ADDR = 10.0.0.15 -- 01:36:27.132 INFO [8125]: SERVER_NAME = oameye.works.coregrade.com -- 01:36:27.132 INFO [8125]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845 -- 01:36:27.132 INFO [8125]: QUERY_STRING = /auth -- 01:36:27.132 INFO [8125]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:36:27.167 INFO [8125]: COREGRADE is stopping... -- 01:36:27.167 DEBUG [8125]: Closing database connection -- 01:36:27.167 SQL [8125]: pgsql_close() -- 01:36:27.316 INFO [8125]: COREGRADE is starting... -- 01:36:27.316 INFO [8125]: Version from config: 1.0 -- 01:36:27.316 DEBUG [8125]: Connecting to database... -- 01:36:27.316 DEBUG [8125]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:36:27.316 SQL [8125]: pgsql_db_connect() -- 01:36:27.320 DEBUG [8125]: Database connection successful -- 01:36:27.320 INFO [8125]: _SERVER found -- 01:36:27.320 INFO [8125]: REMOTE_ADDR = 10.0.0.15 -- 01:36:27.320 INFO [8125]: SERVER_NAME = oameye.works.coregrade.com -- 01:36:27.320 INFO [8125]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=hegjtn5352btlrc9orhep7jb9m51nq33 -- 01:36:27.320 INFO [8125]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 01:36:27.320 INFO [8125]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:36:27.332 INFO [8125]: COREGRADE is stopping... -- 01:36:27.332 DEBUG [8125]: Closing database connection -- 01:36:27.332 SQL [8125]: pgsql_close() -- 02:50:19.522 INFO [8121]: COREGRADE is starting... -- 02:50:19.523 INFO [8121]: Version from config: 1.0 -- 02:50:19.523 DEBUG [8121]: Connecting to database... -- 02:50:19.523 DEBUG [8121]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:50:19.523 SQL [8121]: pgsql_db_connect() -- 02:50:19.528 DEBUG [8121]: Database connection successful -- 02:50:19.528 INFO [8121]: _SERVER found -- 02:50:19.528 INFO [8121]: REMOTE_ADDR = 10.0.0.15 -- 02:50:19.528 INFO [8121]: SERVER_NAME = oameye.works.coregrade.com -- 02:50:19.528 INFO [8121]: QUERY_STRING = -- 02:50:19.528 INFO [8121]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 02:50:19.565 INFO [8121]: COREGRADE is stopping... -- 02:50:19.565 DEBUG [8121]: Closing database connection -- 02:50:19.565 SQL [8121]: pgsql_close() -- 03:03:55.769 INFO [8122]: COREGRADE is starting... -- 03:03:55.769 INFO [8122]: Version from config: 1.0 -- 03:03:55.769 DEBUG [8122]: Connecting to database... -- 03:03:55.769 DEBUG [8122]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:03:55.769 SQL [8122]: pgsql_db_connect() -- 03:03:55.773 DEBUG [8122]: Database connection successful -- 03:03:55.773 INFO [8122]: _SERVER found -- 03:03:55.773 INFO [8122]: REMOTE_ADDR = 10.0.0.15 -- 03:03:55.773 INFO [8122]: SERVER_NAME = oameye.works.coregrade.com -- 03:03:55.773 INFO [8122]: QUERY_STRING = /TP/public/index.php -- 03:03:55.773 INFO [8122]: HTTP_X_FORWARDED_FOR = 103.40.244.225 -- 03:03:55.787 INFO [8122]: COREGRADE is stopping... -- 03:03:55.787 DEBUG [8122]: Closing database connection -- 03:03:55.787 SQL [8122]: pgsql_close() -- 03:03:57.523 INFO [8369]: COREGRADE is starting... -- 03:03:57.524 INFO [8369]: Version from config: 1.0 -- 03:03:57.524 DEBUG [8369]: Connecting to database... -- 03:03:57.524 DEBUG [8369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:03:57.524 SQL [8369]: pgsql_db_connect() -- 03:03:57.528 DEBUG [8369]: Database connection successful -- 03:03:57.528 INFO [8369]: _SERVER found -- 03:03:57.528 INFO [8369]: REMOTE_ADDR = 10.0.0.15 -- 03:03:57.528 INFO [8369]: SERVER_NAME = oameye.works.coregrade.com -- 03:03:57.528 INFO [8369]: QUERY_STRING = /TP/index.php -- 03:03:57.528 INFO [8369]: HTTP_X_FORWARDED_FOR = 103.40.244.225 -- 03:03:57.542 INFO [8369]: COREGRADE is stopping... -- 03:03:57.542 DEBUG [8369]: Closing database connection -- 03:03:57.542 SQL [8369]: pgsql_close() -- 03:03:59.255 INFO [8122]: COREGRADE is starting... -- 03:03:59.256 INFO [8122]: Version from config: 1.0 -- 03:03:59.256 DEBUG [8122]: Connecting to database... -- 03:03:59.256 DEBUG [8122]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:03:59.256 SQL [8122]: pgsql_db_connect() -- 03:03:59.260 DEBUG [8122]: Database connection successful -- 03:03:59.260 INFO [8122]: _SERVER found -- 03:03:59.260 INFO [8122]: REMOTE_ADDR = 10.0.0.15 -- 03:03:59.260 INFO [8122]: SERVER_NAME = oameye.works.coregrade.com -- 03:03:59.260 INFO [8122]: QUERY_STRING = /thinkphp/html/public/index.php -- 03:03:59.260 INFO [8122]: HTTP_X_FORWARDED_FOR = 103.40.244.225 -- 03:03:59.271 INFO [8122]: COREGRADE is stopping... -- 03:03:59.271 DEBUG [8122]: Closing database connection -- 03:03:59.271 SQL [8122]: pgsql_close() -- 03:04:01.209 INFO [8122]: COREGRADE is starting... -- 03:04:01.209 INFO [8122]: Version from config: 1.0 -- 03:04:01.209 DEBUG [8122]: Connecting to database... -- 03:04:01.209 DEBUG [8122]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:04:01.209 SQL [8122]: pgsql_db_connect() -- 03:04:01.213 DEBUG [8122]: Database connection successful -- 03:04:01.213 INFO [8122]: _SERVER found -- 03:04:01.213 INFO [8122]: REMOTE_ADDR = 10.0.0.15 -- 03:04:01.213 INFO [8122]: SERVER_NAME = oameye.works.coregrade.com -- 03:04:01.213 INFO [8122]: QUERY_STRING = /html/public/index.php -- 03:04:01.213 INFO [8122]: HTTP_X_FORWARDED_FOR = 103.40.244.225 -- 03:04:01.224 INFO [8122]: COREGRADE is stopping... -- 03:04:01.224 DEBUG [8122]: Closing database connection -- 03:04:01.225 SQL [8122]: pgsql_close() -- 03:04:03.267 INFO [8122]: COREGRADE is starting... -- 03:04:03.268 INFO [8122]: Version from config: 1.0 -- 03:04:03.268 DEBUG [8122]: Connecting to database... -- 03:04:03.268 DEBUG [8122]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:04:03.268 SQL [8122]: pgsql_db_connect() -- 03:04:03.272 DEBUG [8122]: Database connection successful -- 03:04:03.272 INFO [8122]: _SERVER found -- 03:04:03.272 INFO [8122]: REMOTE_ADDR = 10.0.0.15 -- 03:04:03.272 INFO [8122]: SERVER_NAME = oameye.works.coregrade.com -- 03:04:03.272 INFO [8122]: QUERY_STRING = /public/index.php -- 03:04:03.272 INFO [8122]: HTTP_X_FORWARDED_FOR = 103.40.244.225 -- 03:04:03.283 INFO [8122]: COREGRADE is stopping... -- 03:04:03.283 DEBUG [8122]: Closing database connection -- 03:04:03.283 SQL [8122]: pgsql_close() -- 03:04:05.418 INFO [8371]: COREGRADE is starting... -- 03:04:05.419 INFO [8371]: Version from config: 1.0 -- 03:04:05.419 DEBUG [8371]: Connecting to database... -- 03:04:05.419 DEBUG [8371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:04:05.419 SQL [8371]: pgsql_db_connect() -- 03:04:05.423 DEBUG [8371]: Database connection successful -- 03:04:05.423 INFO [8371]: _SERVER found -- 03:04:05.423 INFO [8371]: REMOTE_ADDR = 10.0.0.15 -- 03:04:05.423 INFO [8371]: SERVER_NAME = oameye.works.coregrade.com -- 03:04:05.423 INFO [8371]: QUERY_STRING = /TP/html/public/index.php -- 03:04:05.423 INFO [8371]: HTTP_X_FORWARDED_FOR = 103.40.244.225 -- 03:04:05.440 INFO [8371]: COREGRADE is stopping... -- 03:04:05.440 DEBUG [8371]: Closing database connection -- 03:04:05.440 SQL [8371]: pgsql_close() -- 03:04:07.281 INFO [8175]: COREGRADE is starting... -- 03:04:07.282 INFO [8175]: Version from config: 1.0 -- 03:04:07.282 DEBUG [8175]: Connecting to database... -- 03:04:07.282 DEBUG [8175]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:04:07.282 SQL [8175]: pgsql_db_connect() -- 03:04:07.286 DEBUG [8175]: Database connection successful -- 03:04:07.286 INFO [8175]: _SERVER found -- 03:04:07.286 INFO [8175]: REMOTE_ADDR = 10.0.0.15 -- 03:04:07.286 INFO [8175]: SERVER_NAME = oameye.works.coregrade.com -- 03:04:07.286 INFO [8175]: QUERY_STRING = /elrekt.php -- 03:04:07.286 INFO [8175]: HTTP_X_FORWARDED_FOR = 103.40.244.225 -- 03:04:07.298 INFO [8175]: COREGRADE is stopping... -- 03:04:07.298 DEBUG [8175]: Closing database connection -- 03:04:07.298 SQL [8175]: pgsql_close() -- 03:04:08.992 INFO [8372]: COREGRADE is starting... -- 03:04:08.992 INFO [8372]: Version from config: 1.0 -- 03:04:08.992 DEBUG [8372]: Connecting to database... -- 03:04:08.992 DEBUG [8372]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:04:08.993 SQL [8372]: pgsql_db_connect() -- 03:04:08.997 DEBUG [8372]: Database connection successful -- 03:04:08.997 INFO [8372]: _SERVER found -- 03:04:08.997 INFO [8372]: REMOTE_ADDR = 10.0.0.15 -- 03:04:08.997 INFO [8372]: SERVER_NAME = oameye.works.coregrade.com -- 03:04:08.997 INFO [8372]: QUERY_STRING = -- 03:04:08.997 INFO [8372]: HTTP_X_FORWARDED_FOR = 103.40.244.225 -- 03:04:09.043 INFO [8372]: COREGRADE is stopping... -- 03:04:09.043 DEBUG [8372]: Closing database connection -- 03:04:09.043 SQL [8372]: pgsql_close() -- 03:04:10.798 INFO [8124]: COREGRADE is starting... -- 03:04:10.798 INFO [8124]: Version from config: 1.0 -- 03:04:10.798 DEBUG [8124]: Connecting to database... -- 03:04:10.798 DEBUG [8124]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:04:10.798 SQL [8124]: pgsql_db_connect() -- 03:04:10.802 DEBUG [8124]: Database connection successful -- 03:04:10.802 INFO [8124]: _SERVER found -- 03:04:10.802 INFO [8124]: REMOTE_ADDR = 10.0.0.15 -- 03:04:10.802 INFO [8124]: SERVER_NAME = oameye.works.coregrade.com -- 03:04:10.802 INFO [8124]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 03:04:10.802 INFO [8124]: HTTP_X_FORWARDED_FOR = 103.40.244.225 -- 03:04:10.840 INFO [8124]: COREGRADE is stopping... -- 03:04:10.840 DEBUG [8124]: Closing database connection -- 03:04:10.840 SQL [8124]: pgsql_close() -- 03:04:12.758 INFO [8125]: COREGRADE is starting... -- 03:04:12.758 INFO [8125]: Version from config: 1.0 -- 03:04:12.758 DEBUG [8125]: Connecting to database... -- 03:04:12.758 DEBUG [8125]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:04:12.759 SQL [8125]: pgsql_db_connect() -- 03:04:12.762 DEBUG [8125]: Database connection successful -- 03:04:12.762 INFO [8125]: _SERVER found -- 03:04:12.762 INFO [8125]: REMOTE_ADDR = 10.0.0.15 -- 03:04:12.762 INFO [8125]: SERVER_NAME = oameye.works.coregrade.com -- 03:04:12.762 INFO [8125]: QUERY_STRING = s=captcha -- 03:04:12.762 INFO [8125]: HTTP_X_FORWARDED_FOR = 103.40.244.225 -- 03:04:12.799 INFO [8125]: COREGRADE is stopping... -- 03:04:12.799 DEBUG [8125]: Closing database connection -- 03:04:12.799 SQL [8125]: pgsql_close() -- 03:04:16.041 INFO [8125]: COREGRADE is starting... -- 03:04:16.042 INFO [8125]: Version from config: 1.0 -- 03:04:16.042 DEBUG [8125]: Connecting to database... -- 03:04:16.042 DEBUG [8125]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:04:16.042 SQL [8125]: pgsql_db_connect() -- 03:04:16.046 DEBUG [8125]: Database connection successful -- 03:04:16.046 INFO [8125]: _SERVER found -- 03:04:16.046 INFO [8125]: REMOTE_ADDR = 10.0.0.15 -- 03:04:16.046 INFO [8125]: SERVER_NAME = oameye.works.coregrade.com -- 03:04:16.046 INFO [8125]: QUERY_STRING = -- 03:04:16.046 INFO [8125]: HTTP_X_FORWARDED_FOR = 103.40.244.225 -- 03:04:16.077 INFO [8125]: COREGRADE is stopping... -- 03:04:16.077 DEBUG [8125]: Closing database connection -- 03:04:16.077 SQL [8125]: pgsql_close() -- 06:51:43.068 INFO [9648]: COREGRADE is starting... -- 06:51:43.068 INFO [9648]: Version from config: 1.0 -- 06:51:43.068 DEBUG [9648]: Connecting to database... -- 06:51:43.068 DEBUG [9648]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:51:43.068 SQL [9648]: pgsql_db_connect() -- 06:51:43.075 DEBUG [9648]: Database connection successful -- 06:51:43.075 INFO [9648]: _SERVER found -- 06:51:43.075 INFO [9648]: REMOTE_ADDR = 10.0.0.15 -- 06:51:43.075 INFO [9648]: SERVER_NAME = oameye.works.coregrade.com -- 06:51:43.075 INFO [9648]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.583861915.1586661548 -- 06:51:43.075 INFO [9648]: QUERY_STRING = -- 06:51:43.075 INFO [9648]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:51:43.127 INFO [9648]: COREGRADE is stopping... -- 06:51:43.127 DEBUG [9648]: Closing database connection -- 06:51:43.127 SQL [9648]: pgsql_close() -- 06:51:44.453 INFO [9648]: COREGRADE is starting... -- 06:51:44.453 INFO [9648]: Version from config: 1.0 -- 06:51:44.453 DEBUG [9648]: Connecting to database... -- 06:51:44.453 DEBUG [9648]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:51:44.453 SQL [9648]: pgsql_db_connect() -- 06:51:44.457 DEBUG [9648]: Database connection successful -- 06:51:44.457 INFO [9648]: _SERVER found -- 06:51:44.457 INFO [9648]: REMOTE_ADDR = 10.0.0.15 -- 06:51:44.457 INFO [9648]: SERVER_NAME = oameye.works.coregrade.com -- 06:51:44.457 INFO [9648]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.583861915.1586661548; ci_session=f6mjll03132oqrsb7nbmsbm3lvvk1968 -- 06:51:44.457 INFO [9648]: QUERY_STRING = /assets/img/footer_1.jpg -- 06:51:44.457 INFO [9648]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:51:44.469 INFO [9648]: COREGRADE is stopping... -- 06:51:44.469 DEBUG [9648]: Closing database connection -- 06:51:44.469 SQL [9648]: pgsql_close() -- 06:56:45.374 INFO [9649]: COREGRADE is starting... -- 06:56:45.375 INFO [9649]: Version from config: 1.0 -- 06:56:45.375 DEBUG [9649]: Connecting to database... -- 06:56:45.375 DEBUG [9649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:56:45.375 SQL [9649]: pgsql_db_connect() -- 06:56:45.379 DEBUG [9649]: Database connection successful -- 06:56:45.379 INFO [9649]: _SERVER found -- 06:56:45.379 INFO [9649]: REMOTE_ADDR = 10.0.0.15 -- 06:56:45.379 INFO [9649]: SERVER_NAME = oameye.works.coregrade.com -- 06:56:45.379 INFO [9649]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.583861915.1586661548; ci_session=f6mjll03132oqrsb7nbmsbm3lvvk1968 -- 06:56:45.379 INFO [9649]: QUERY_STRING = -- 06:56:45.379 INFO [9649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:56:45.428 INFO [9649]: COREGRADE is stopping... -- 06:56:45.428 DEBUG [9649]: Closing database connection -- 06:56:45.428 SQL [9649]: pgsql_close() -- 06:56:46.270 INFO [9649]: COREGRADE is starting... -- 06:56:46.270 INFO [9649]: Version from config: 1.0 -- 06:56:46.270 DEBUG [9649]: Connecting to database... -- 06:56:46.270 DEBUG [9649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:56:46.270 SQL [9649]: pgsql_db_connect() -- 06:56:46.274 DEBUG [9649]: Database connection successful -- 06:56:46.274 INFO [9649]: _SERVER found -- 06:56:46.274 INFO [9649]: REMOTE_ADDR = 10.0.0.15 -- 06:56:46.274 INFO [9649]: SERVER_NAME = oameye.works.coregrade.com -- 06:56:46.274 INFO [9649]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.583861915.1586661548; ci_session=una7i2egfh58aofr20ri0h91bqfe9o1d -- 06:56:46.274 INFO [9649]: QUERY_STRING = /assets/img/footer_1.jpg -- 06:56:46.274 INFO [9649]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:56:46.285 INFO [9649]: COREGRADE is stopping... -- 06:56:46.285 DEBUG [9649]: Closing database connection -- 06:56:46.285 SQL [9649]: pgsql_close() -- 07:14:30.056 INFO [9650]: COREGRADE is starting... -- 07:14:30.057 INFO [9650]: Version from config: 1.0 -- 07:14:30.057 DEBUG [9650]: Connecting to database... -- 07:14:30.057 DEBUG [9650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:14:30.057 SQL [9650]: pgsql_db_connect() -- 07:14:30.061 DEBUG [9650]: Database connection successful -- 07:14:30.061 INFO [9650]: _SERVER found -- 07:14:30.061 INFO [9650]: REMOTE_ADDR = 10.0.0.15 -- 07:14:30.061 INFO [9650]: SERVER_NAME = oameye.works.coregrade.com -- 07:14:30.061 INFO [9650]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.583861915.1586661548; ci_session=una7i2egfh58aofr20ri0h91bqfe9o1d -- 07:14:30.061 INFO [9650]: QUERY_STRING = -- 07:14:30.061 INFO [9650]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:14:30.111 INFO [9650]: COREGRADE is stopping... -- 07:14:30.111 DEBUG [9650]: Closing database connection -- 07:14:30.111 SQL [9650]: pgsql_close() -- 07:14:30.787 INFO [9650]: COREGRADE is starting... -- 07:14:30.787 INFO [9650]: Version from config: 1.0 -- 07:14:30.787 DEBUG [9650]: Connecting to database... -- 07:14:30.787 DEBUG [9650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:14:30.787 SQL [9650]: pgsql_db_connect() -- 07:14:30.791 DEBUG [9650]: Database connection successful -- 07:14:30.791 INFO [9650]: _SERVER found -- 07:14:30.791 INFO [9650]: REMOTE_ADDR = 10.0.0.15 -- 07:14:30.791 INFO [9650]: SERVER_NAME = oameye.works.coregrade.com -- 07:14:30.791 INFO [9650]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.583861915.1586661548; ci_session=aa6gbb5hvg0p60bpercn7vp2na2900as -- 07:14:30.791 INFO [9650]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:14:30.791 INFO [9650]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:14:30.803 INFO [9650]: COREGRADE is stopping... -- 07:14:30.803 DEBUG [9650]: Closing database connection -- 07:14:30.803 SQL [9650]: pgsql_close() -- 07:14:44.631 INFO [9651]: COREGRADE is starting... -- 07:14:44.631 INFO [9651]: Version from config: 1.0 -- 07:14:44.631 DEBUG [9651]: Connecting to database... -- 07:14:44.631 DEBUG [9651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:14:44.631 SQL [9651]: pgsql_db_connect() -- 07:14:44.636 DEBUG [9651]: Database connection successful -- 07:14:44.636 INFO [9651]: _SERVER found -- 07:14:44.636 INFO [9651]: REMOTE_ADDR = 10.0.0.15 -- 07:14:44.636 INFO [9651]: SERVER_NAME = oameye.works.coregrade.com -- 07:14:44.636 INFO [9651]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.583861915.1586661548; ci_session=aa6gbb5hvg0p60bpercn7vp2na2900as; _gat_gtag_UA_54829827_2=1 -- 07:14:44.636 INFO [9651]: QUERY_STRING = /home/howitworks -- 07:14:44.636 INFO [9651]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:14:44.676 INFO [9651]: COREGRADE is stopping... -- 07:14:44.676 DEBUG [9651]: Closing database connection -- 07:14:44.676 SQL [9651]: pgsql_close() -- 07:14:45.105 INFO [9649]: COREGRADE is starting... -- 07:14:45.105 INFO [9649]: Version from config: 1.0 -- 07:14:45.105 DEBUG [9649]: Connecting to database... -- 07:14:45.105 DEBUG [9649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:14:45.105 SQL [9649]: pgsql_db_connect() -- 07:14:45.110 DEBUG [9649]: Database connection successful -- 07:14:45.110 INFO [9649]: _SERVER found -- 07:14:45.110 INFO [9649]: REMOTE_ADDR = 10.0.0.15 -- 07:14:45.110 INFO [9649]: SERVER_NAME = oameye.works.coregrade.com -- 07:14:45.110 INFO [9649]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.583861915.1586661548; ci_session=aa6gbb5hvg0p60bpercn7vp2na2900as; _gat_gtag_UA_54829827_2=1 -- 07:14:45.110 INFO [9649]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 07:14:45.110 INFO [9649]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:14:45.121 INFO [9649]: COREGRADE is stopping... -- 07:14:45.122 DEBUG [9649]: Closing database connection -- 07:14:45.122 SQL [9649]: pgsql_close() -- 07:14:58.388 INFO [9650]: COREGRADE is starting... -- 07:14:58.388 INFO [9650]: Version from config: 1.0 -- 07:14:58.388 DEBUG [9650]: Connecting to database... -- 07:14:58.389 DEBUG [9650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:14:58.389 SQL [9650]: pgsql_db_connect() -- 07:14:58.393 DEBUG [9650]: Database connection successful -- 07:14:58.393 INFO [9650]: _SERVER found -- 07:14:58.393 INFO [9650]: REMOTE_ADDR = 10.0.0.15 -- 07:14:58.393 INFO [9650]: SERVER_NAME = oameye.works.coregrade.com -- 07:14:58.393 INFO [9650]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.583861915.1586661548; ci_session=aa6gbb5hvg0p60bpercn7vp2na2900as; _gat_gtag_UA_54829827_2=1 -- 07:14:58.393 INFO [9650]: QUERY_STRING = -- 07:14:58.393 INFO [9650]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:14:58.425 INFO [9650]: COREGRADE is stopping... -- 07:14:58.425 DEBUG [9650]: Closing database connection -- 07:14:58.425 SQL [9650]: pgsql_close() -- 07:15:31.033 INFO [10623]: COREGRADE is starting... -- 07:15:31.033 INFO [10623]: Version from config: 1.0 -- 07:15:31.033 DEBUG [10623]: Connecting to database... -- 07:15:31.033 DEBUG [10623]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:15:31.033 SQL [10623]: pgsql_db_connect() -- 07:15:31.038 DEBUG [10623]: Database connection successful -- 07:15:31.038 INFO [10623]: _SERVER found -- 07:15:31.038 INFO [10623]: REMOTE_ADDR = 10.0.0.15 -- 07:15:31.038 INFO [10623]: SERVER_NAME = oameye.works.coregrade.com -- 07:15:31.038 INFO [10623]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.583861915.1586661548; ci_session=aa6gbb5hvg0p60bpercn7vp2na2900as -- 07:15:31.038 INFO [10623]: QUERY_STRING = /home/contactus -- 07:15:31.038 INFO [10623]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:15:31.077 INFO [10623]: COREGRADE is stopping... -- 07:15:31.077 DEBUG [10623]: Closing database connection -- 07:15:31.077 SQL [10623]: pgsql_close() -- 07:15:31.757 INFO [10623]: COREGRADE is starting... -- 07:15:31.757 INFO [10623]: Version from config: 1.0 -- 07:15:31.757 DEBUG [10623]: Connecting to database... -- 07:15:31.757 DEBUG [10623]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:15:31.757 SQL [10623]: pgsql_db_connect() -- 07:15:31.761 DEBUG [10623]: Database connection successful -- 07:15:31.761 INFO [10623]: _SERVER found -- 07:15:31.761 INFO [10623]: REMOTE_ADDR = 10.0.0.15 -- 07:15:31.761 INFO [10623]: SERVER_NAME = oameye.works.coregrade.com -- 07:15:31.761 INFO [10623]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.583861915.1586661548; ci_session=aa6gbb5hvg0p60bpercn7vp2na2900as -- 07:15:31.761 INFO [10623]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 07:15:31.761 INFO [10623]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:15:31.772 INFO [10623]: COREGRADE is stopping... -- 07:15:31.773 DEBUG [10623]: Closing database connection -- 07:15:31.773 SQL [10623]: pgsql_close() -- 07:15:36.183 INFO [10624]: COREGRADE is starting... -- 07:15:36.183 INFO [10624]: Version from config: 1.0 -- 07:15:36.183 DEBUG [10624]: Connecting to database... -- 07:15:36.183 DEBUG [10624]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:15:36.184 SQL [10624]: pgsql_db_connect() -- 07:15:36.188 DEBUG [10624]: Database connection successful -- 07:15:36.188 INFO [10624]: _SERVER found -- 07:15:36.188 INFO [10624]: REMOTE_ADDR = 10.0.0.15 -- 07:15:36.188 INFO [10624]: SERVER_NAME = oameye.works.coregrade.com -- 07:15:36.188 INFO [10624]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.583861915.1586661548; ci_session=aa6gbb5hvg0p60bpercn7vp2na2900as -- 07:15:36.188 INFO [10624]: QUERY_STRING = -- 07:15:36.188 INFO [10624]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:15:36.232 INFO [10624]: COREGRADE is stopping... -- 07:15:36.232 DEBUG [10624]: Closing database connection -- 07:15:36.232 SQL [10624]: pgsql_close() -- 07:53:09.836 INFO [10625]: COREGRADE is starting... -- 07:53:09.836 INFO [10625]: Version from config: 1.0 -- 07:53:09.836 DEBUG [10625]: Connecting to database... -- 07:53:09.836 DEBUG [10625]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:53:09.836 SQL [10625]: pgsql_db_connect() -- 07:53:09.840 DEBUG [10625]: Database connection successful -- 07:53:09.840 INFO [10625]: _SERVER found -- 07:53:09.840 INFO [10625]: REMOTE_ADDR = 10.0.0.15 -- 07:53:09.840 INFO [10625]: SERVER_NAME = oameye.works.coregrade.com -- 07:53:09.840 INFO [10625]: QUERY_STRING = -- 07:53:09.840 INFO [10625]: HTTP_X_FORWARDED_FOR = 96.126.103.73 -- 07:53:09.888 INFO [10625]: COREGRADE is stopping... -- 07:53:09.888 DEBUG [10625]: Closing database connection -- 07:53:09.888 SQL [10625]: pgsql_close() -- 08:15:41.040 INFO [10626]: COREGRADE is starting... -- 08:15:41.040 INFO [10626]: Version from config: 1.0 -- 08:15:41.040 DEBUG [10626]: Connecting to database... -- 08:15:41.040 DEBUG [10626]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:15:41.040 SQL [10626]: pgsql_db_connect() -- 08:15:41.045 DEBUG [10626]: Database connection successful -- 08:15:41.045 INFO [10626]: _SERVER found -- 08:15:41.045 INFO [10626]: REMOTE_ADDR = 10.0.0.15 -- 08:15:41.045 INFO [10626]: SERVER_NAME = oameye.works.coregrade.com -- 08:15:41.045 INFO [10626]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.583861915.1586661548; ci_session=aa6gbb5hvg0p60bpercn7vp2na2900as -- 08:15:41.045 INFO [10626]: QUERY_STRING = -- 08:15:41.045 INFO [10626]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:15:41.094 INFO [10626]: COREGRADE is stopping... -- 08:15:41.094 DEBUG [10626]: Closing database connection -- 08:15:41.094 SQL [10626]: pgsql_close() -- 08:15:41.533 INFO [10626]: COREGRADE is starting... -- 08:15:41.533 INFO [10626]: Version from config: 1.0 -- 08:15:41.533 DEBUG [10626]: Connecting to database... -- 08:15:41.533 DEBUG [10626]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:15:41.533 SQL [10626]: pgsql_db_connect() -- 08:15:41.537 DEBUG [10626]: Database connection successful -- 08:15:41.537 INFO [10626]: _SERVER found -- 08:15:41.537 INFO [10626]: REMOTE_ADDR = 10.0.0.15 -- 08:15:41.537 INFO [10626]: SERVER_NAME = oameye.works.coregrade.com -- 08:15:41.537 INFO [10626]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.583861915.1586661548; ci_session=c9bqkn37hiogknsg3icojn6er9llolkh -- 08:15:41.537 INFO [10626]: QUERY_STRING = /assets/img/footer_1.jpg -- 08:15:41.537 INFO [10626]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:15:41.549 INFO [10626]: COREGRADE is stopping... -- 08:15:41.549 DEBUG [10626]: Closing database connection -- 08:15:41.549 SQL [10626]: pgsql_close() -- 08:40:45.579 INFO [10502]: COREGRADE is starting... -- 08:40:45.580 INFO [10502]: Version from config: 1.0 -- 08:40:45.580 DEBUG [10502]: Connecting to database... -- 08:40:45.580 DEBUG [10502]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:40:45.580 SQL [10502]: pgsql_db_connect() -- 08:40:45.584 DEBUG [10502]: Database connection successful -- 08:40:45.584 INFO [10502]: _SERVER found -- 08:40:45.584 INFO [10502]: REMOTE_ADDR = 10.0.0.15 -- 08:40:45.584 INFO [10502]: SERVER_NAME = oameye.works.coregrade.com -- 08:40:45.584 INFO [10502]: QUERY_STRING = -- 08:40:45.584 INFO [10502]: HTTP_X_FORWARDED_FOR = 47.101.214.42 -- 08:40:45.631 INFO [10502]: COREGRADE is stopping... -- 08:40:45.631 DEBUG [10502]: Closing database connection -- 08:40:45.631 SQL [10502]: pgsql_close() -- 09:46:15.751 INFO [9648]: COREGRADE is starting... -- 09:46:15.751 INFO [9648]: Version from config: 1.0 -- 09:46:15.751 DEBUG [9648]: Connecting to database... -- 09:46:15.752 DEBUG [9648]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:46:15.752 SQL [9648]: pgsql_db_connect() -- 09:46:15.757 DEBUG [9648]: Database connection successful -- 09:46:15.757 INFO [9648]: _SERVER found -- 09:46:15.757 INFO [9648]: REMOTE_ADDR = 10.0.0.15 -- 09:46:15.757 INFO [9648]: SERVER_NAME = oameye.works.coregrade.com -- 09:46:15.757 INFO [9648]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.583861915.1586661548; ci_session=c9bqkn37hiogknsg3icojn6er9llolkh -- 09:46:15.757 INFO [9648]: QUERY_STRING = -- 09:46:15.757 INFO [9648]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:46:15.794 INFO [9648]: COREGRADE is stopping... -- 09:46:15.794 DEBUG [9648]: Closing database connection -- 09:46:15.794 SQL [9648]: pgsql_close() -- 10:15:27.294 INFO [10623]: COREGRADE is starting... -- 10:15:27.294 INFO [10623]: Version from config: 1.0 -- 10:15:27.294 DEBUG [10623]: Connecting to database... -- 10:15:27.294 DEBUG [10623]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:15:27.294 SQL [10623]: pgsql_db_connect() -- 10:15:27.299 DEBUG [10623]: Database connection successful -- 10:15:27.299 INFO [10623]: _SERVER found -- 10:15:27.299 INFO [10623]: REMOTE_ADDR = 10.0.0.15 -- 10:15:27.299 INFO [10623]: SERVER_NAME = oameye.works.coregrade.com -- 10:15:27.299 INFO [10623]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.583861915.1586661548; ci_session=u3budr7r8gt3q43nk27mtcc1cj2e9e13 -- 10:15:27.299 INFO [10623]: QUERY_STRING = -- 10:15:27.299 INFO [10623]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:15:27.341 INFO [10623]: COREGRADE is stopping... -- 10:15:27.341 DEBUG [10623]: Closing database connection -- 10:15:27.341 SQL [10623]: pgsql_close() -- 10:15:27.775 INFO [10623]: COREGRADE is starting... -- 10:15:27.775 INFO [10623]: Version from config: 1.0 -- 10:15:27.775 DEBUG [10623]: Connecting to database... -- 10:15:27.775 DEBUG [10623]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:15:27.775 SQL [10623]: pgsql_db_connect() -- 10:15:27.779 DEBUG [10623]: Database connection successful -- 10:15:27.779 INFO [10623]: _SERVER found -- 10:15:27.779 INFO [10623]: REMOTE_ADDR = 10.0.0.15 -- 10:15:27.779 INFO [10623]: SERVER_NAME = oameye.works.coregrade.com -- 10:15:27.779 INFO [10623]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.583861915.1586661548; ci_session=1balcn05gb4102sg9ptatqm242g689od -- 10:15:27.779 INFO [10623]: QUERY_STRING = /assets/img/footer_1.jpg -- 10:15:27.779 INFO [10623]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:15:27.790 INFO [10623]: COREGRADE is stopping... -- 10:15:27.790 DEBUG [10623]: Closing database connection -- 10:15:27.790 SQL [10623]: pgsql_close() -- 11:14:55.300 INFO [10624]: COREGRADE is starting... -- 11:14:55.301 INFO [10624]: Version from config: 1.0 -- 11:14:55.301 DEBUG [10624]: Connecting to database... -- 11:14:55.301 DEBUG [10624]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:14:55.301 SQL [10624]: pgsql_db_connect() -- 11:14:55.305 DEBUG [10624]: Database connection successful -- 11:14:55.305 INFO [10624]: _SERVER found -- 11:14:55.305 INFO [10624]: REMOTE_ADDR = 10.0.0.15 -- 11:14:55.305 INFO [10624]: SERVER_NAME = oameye.works.coregrade.com -- 11:14:55.305 INFO [10624]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.583861915.1586661548; ci_session=1balcn05gb4102sg9ptatqm242g689od -- 11:14:55.305 INFO [10624]: QUERY_STRING = -- 11:14:55.305 INFO [10624]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:14:55.341 INFO [10624]: COREGRADE is stopping... -- 11:14:55.341 DEBUG [10624]: Closing database connection -- 11:14:55.341 SQL [10624]: pgsql_close() -- 11:14:56.097 INFO [10624]: COREGRADE is starting... -- 11:14:56.097 INFO [10624]: Version from config: 1.0 -- 11:14:56.097 DEBUG [10624]: Connecting to database... -- 11:14:56.097 DEBUG [10624]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:14:56.097 SQL [10624]: pgsql_db_connect() -- 11:14:56.101 DEBUG [10624]: Database connection successful -- 11:14:56.101 INFO [10624]: _SERVER found -- 11:14:56.101 INFO [10624]: REMOTE_ADDR = 10.0.0.15 -- 11:14:56.101 INFO [10624]: SERVER_NAME = oameye.works.coregrade.com -- 11:14:56.101 INFO [10624]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.583861915.1586661548; ci_session=kmrkb8a9s9efn65fig94tbbum8l41rbe -- 11:14:56.101 INFO [10624]: QUERY_STRING = /assets/img/footer_1.jpg -- 11:14:56.101 INFO [10624]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:14:56.113 INFO [10624]: COREGRADE is stopping... -- 11:14:56.113 DEBUG [10624]: Closing database connection -- 11:14:56.113 SQL [10624]: pgsql_close() -- 11:15:09.607 INFO [9651]: COREGRADE is starting... -- 11:15:09.607 INFO [9651]: Version from config: 1.0 -- 11:15:09.607 DEBUG [9651]: Connecting to database... -- 11:15:09.607 DEBUG [9651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:15:09.607 SQL [9651]: pgsql_db_connect() -- 11:15:09.624 INFO [10626]: COREGRADE is starting... -- 11:15:09.624 INFO [10626]: Version from config: 1.0 -- 11:15:09.624 DEBUG [10626]: Connecting to database... -- 11:15:09.625 DEBUG [10626]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:15:09.625 SQL [10626]: pgsql_db_connect() -- 11:15:09.611 DEBUG [9651]: Database connection successful -- 11:15:09.611 INFO [9651]: _SERVER found -- 11:15:09.611 INFO [9651]: REMOTE_ADDR = 10.0.0.15 -- 11:15:09.611 INFO [9651]: SERVER_NAME = oameye.works.coregrade.com -- 11:15:09.611 INFO [9651]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.583861915.1586661548; ci_session=kmrkb8a9s9efn65fig94tbbum8l41rbe; _gat_gtag_UA_54829827_2=1 -- 11:15:09.611 INFO [9651]: QUERY_STRING = /auth -- 11:15:09.611 INFO [9651]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:15:09.647 INFO [9651]: COREGRADE is stopping... -- 11:15:09.647 DEBUG [9651]: Closing database connection -- 11:15:09.647 SQL [9651]: pgsql_close() -- 11:15:09.628 DEBUG [10626]: Database connection successful -- 11:15:09.628 INFO [10626]: _SERVER found -- 11:15:09.628 INFO [10626]: REMOTE_ADDR = 10.0.0.15 -- 11:15:09.628 INFO [10626]: SERVER_NAME = oameye.works.coregrade.com -- 11:15:09.628 INFO [10626]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.583861915.1586661548; ci_session=kmrkb8a9s9efn65fig94tbbum8l41rbe; _gat_gtag_UA_54829827_2=1 -- 11:15:09.628 INFO [10626]: QUERY_STRING = /welcome/viewLogin -- 11:15:09.628 INFO [10626]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:15:09.662 INFO [10626]: COREGRADE is stopping... -- 11:15:09.662 DEBUG [10626]: Closing database connection -- 11:15:09.662 SQL [10626]: pgsql_close() -- 11:15:10.010 INFO [10502]: COREGRADE is starting... -- 11:15:10.010 INFO [10502]: Version from config: 1.0 -- 11:15:10.010 DEBUG [10502]: Connecting to database... -- 11:15:10.010 DEBUG [10502]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:15:10.010 SQL [10502]: pgsql_db_connect() -- 11:15:10.014 DEBUG [10502]: Database connection successful -- 11:15:10.014 INFO [10502]: _SERVER found -- 11:15:10.014 INFO [10502]: REMOTE_ADDR = 10.0.0.15 -- 11:15:10.014 INFO [10502]: SERVER_NAME = oameye.works.coregrade.com -- 11:15:10.014 INFO [10502]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.583861915.1586661548; ci_session=kmrkb8a9s9efn65fig94tbbum8l41rbe; _gat_gtag_UA_54829827_2=1 -- 11:15:10.014 INFO [10502]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:15:10.014 INFO [10502]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:15:10.027 INFO [10502]: COREGRADE is stopping... -- 11:15:10.027 DEBUG [10502]: Closing database connection -- 11:15:10.027 SQL [10502]: pgsql_close() -- 11:15:20.403 INFO [9648]: COREGRADE is starting... -- 11:15:20.403 INFO [9648]: Version from config: 1.0 -- 11:15:20.403 DEBUG [9648]: Connecting to database... -- 11:15:20.403 DEBUG [9648]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:15:20.403 SQL [9648]: pgsql_db_connect() -- 11:15:20.407 DEBUG [9648]: Database connection successful -- 11:15:20.407 INFO [9648]: _SERVER found -- 11:15:20.407 INFO [9648]: REMOTE_ADDR = 10.0.0.15 -- 11:15:20.407 INFO [9648]: SERVER_NAME = oameye.works.coregrade.com -- 11:15:20.407 INFO [9648]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.583861915.1586661548; ci_session=kmrkb8a9s9efn65fig94tbbum8l41rbe; _gat_gtag_UA_54829827_2=1 -- 11:15:20.407 INFO [9648]: QUERY_STRING = -- 11:15:20.407 INFO [9648]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:15:20.441 INFO [9648]: COREGRADE is stopping... -- 11:15:20.441 DEBUG [9648]: Closing database connection -- 11:15:20.441 SQL [9648]: pgsql_close() -- 11:15:20.807 INFO [9648]: COREGRADE is starting... -- 11:15:20.808 INFO [9648]: Version from config: 1.0 -- 11:15:20.808 DEBUG [9648]: Connecting to database... -- 11:15:20.808 DEBUG [9648]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:15:20.808 SQL [9648]: pgsql_db_connect() -- 11:15:20.812 DEBUG [9648]: Database connection successful -- 11:15:20.812 INFO [9648]: _SERVER found -- 11:15:20.812 INFO [9648]: REMOTE_ADDR = 10.0.0.15 -- 11:15:20.812 INFO [9648]: SERVER_NAME = oameye.works.coregrade.com -- 11:15:20.812 INFO [9648]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.583861915.1586661548; ci_session=kmrkb8a9s9efn65fig94tbbum8l41rbe; _gat_gtag_UA_54829827_2=1 -- 11:15:20.812 INFO [9648]: QUERY_STRING = /assets/img/footer_1.jpg -- 11:15:20.812 INFO [9648]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:15:20.823 INFO [9648]: COREGRADE is stopping... -- 11:15:20.823 DEBUG [9648]: Closing database connection -- 11:15:20.823 SQL [9648]: pgsql_close() -- 11:15:26.135 INFO [9649]: COREGRADE is starting... -- 11:15:26.135 INFO [9649]: Version from config: 1.0 -- 11:15:26.135 DEBUG [9649]: Connecting to database... -- 11:15:26.135 DEBUG [9649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:15:26.135 SQL [9649]: pgsql_db_connect() -- 11:15:26.139 DEBUG [9649]: Database connection successful -- 11:15:26.139 INFO [9649]: _SERVER found -- 11:15:26.139 INFO [9649]: REMOTE_ADDR = 10.0.0.15 -- 11:15:26.139 INFO [9649]: SERVER_NAME = oameye.works.coregrade.com -- 11:15:26.139 INFO [9649]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.583861915.1586661548; ci_session=kmrkb8a9s9efn65fig94tbbum8l41rbe; _gat_gtag_UA_54829827_2=1 -- 11:15:26.139 INFO [9649]: QUERY_STRING = /welcome/viewLogin -- 11:15:26.139 INFO [9649]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:15:26.172 INFO [9649]: COREGRADE is stopping... -- 11:15:26.172 DEBUG [9649]: Closing database connection -- 11:15:26.172 SQL [9649]: pgsql_close() -- 11:15:26.209 INFO [9649]: COREGRADE is starting... -- 11:15:26.209 INFO [9649]: Version from config: 1.0 -- 11:15:26.209 DEBUG [9649]: Connecting to database... -- 11:15:26.209 DEBUG [9649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:15:26.209 SQL [9649]: pgsql_db_connect() -- 11:15:26.213 DEBUG [9649]: Database connection successful -- 11:15:26.213 INFO [9649]: _SERVER found -- 11:15:26.213 INFO [9649]: REMOTE_ADDR = 10.0.0.15 -- 11:15:26.213 INFO [9649]: SERVER_NAME = oameye.works.coregrade.com -- 11:15:26.213 INFO [9649]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.583861915.1586661548; ci_session=kmrkb8a9s9efn65fig94tbbum8l41rbe; _gat_gtag_UA_54829827_2=1 -- 11:15:26.213 INFO [9649]: QUERY_STRING = /auth -- 11:15:26.213 INFO [9649]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:15:26.244 INFO [9649]: COREGRADE is stopping... -- 11:15:26.244 DEBUG [9649]: Closing database connection -- 11:15:26.244 SQL [9649]: pgsql_close() -- 11:15:26.280 INFO [9649]: COREGRADE is starting... -- 11:15:26.280 INFO [9649]: Version from config: 1.0 -- 11:15:26.280 DEBUG [9649]: Connecting to database... -- 11:15:26.280 DEBUG [9649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:15:26.280 SQL [9649]: pgsql_db_connect() -- 11:15:26.284 DEBUG [9649]: Database connection successful -- 11:15:26.284 INFO [9649]: _SERVER found -- 11:15:26.284 INFO [9649]: REMOTE_ADDR = 10.0.0.15 -- 11:15:26.284 INFO [9649]: SERVER_NAME = oameye.works.coregrade.com -- 11:15:26.284 INFO [9649]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.583861915.1586661548; ci_session=kmrkb8a9s9efn65fig94tbbum8l41rbe; _gat_gtag_UA_54829827_2=1 -- 11:15:26.284 INFO [9649]: QUERY_STRING = /auth/index -- 11:15:26.284 INFO [9649]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:15:26.315 INFO [9649]: COREGRADE is stopping... -- 11:15:26.315 DEBUG [9649]: Closing database connection -- 11:15:26.315 SQL [9649]: pgsql_close() -- 11:15:26.641 INFO [9649]: COREGRADE is starting... -- 11:15:26.641 INFO [9649]: Version from config: 1.0 -- 11:15:26.641 DEBUG [9649]: Connecting to database... -- 11:15:26.641 DEBUG [9649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:15:26.641 SQL [9649]: pgsql_db_connect() -- 11:15:26.645 DEBUG [9649]: Database connection successful -- 11:15:26.645 INFO [9649]: _SERVER found -- 11:15:26.645 INFO [9649]: REMOTE_ADDR = 10.0.0.15 -- 11:15:26.645 INFO [9649]: SERVER_NAME = oameye.works.coregrade.com -- 11:15:26.645 INFO [9649]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.583861915.1586661548; ci_session=kmrkb8a9s9efn65fig94tbbum8l41rbe; _gat_gtag_UA_54829827_2=1 -- 11:15:26.645 INFO [9649]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:15:26.645 INFO [9649]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:15:26.656 INFO [9649]: COREGRADE is stopping... -- 11:15:26.656 DEBUG [9649]: Closing database connection -- 11:15:26.656 SQL [9649]: pgsql_close() -- 11:16:00.660 INFO [10623]: COREGRADE is starting... -- 11:16:00.660 INFO [10623]: Version from config: 1.0 -- 11:16:00.660 DEBUG [10623]: Connecting to database... -- 11:16:00.660 DEBUG [10623]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:16:00.660 SQL [10623]: pgsql_db_connect() -- 11:16:00.696 INFO [10623]: COREGRADE is starting... -- 11:16:00.696 INFO [10623]: Version from config: 1.0 -- 11:16:00.696 DEBUG [10623]: Connecting to database... -- 11:16:00.696 DEBUG [10623]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:16:00.696 SQL [10623]: pgsql_db_connect() -- 11:16:00.700 DEBUG [10623]: Database connection successful -- 11:16:00.700 INFO [10623]: _SERVER found -- 11:16:00.700 INFO [10623]: REMOTE_ADDR = 10.0.0.15 -- 11:16:00.700 INFO [10623]: SERVER_NAME = oameye.works.coregrade.com -- 11:16:00.700 INFO [10623]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.583861915.1586661548; ci_session=kmrkb8a9s9efn65fig94tbbum8l41rbe -- 11:16:00.700 INFO [10623]: QUERY_STRING = -- 11:16:00.700 INFO [10623]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:16:00.700 INFO [10623]: SystemStatus()09-09-********~************ -- 11:16:00.700 INFO [10623]: long coregrade_api_main(CVars in, CVars &out) -- 11:16:00.700 INFO [10623]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 11:16:00.700 INFO [10623]: account calls -- 11:16:00.700 INFO [10623]: account_calls() -- 11:16:00.700 INFO [10623]: LoginCoreGradeAccount() -- 11:16:00.700 FLOG_MAX [10623]: REQ_STRING(username) -- 11:16:00.701 FLOG_MAX [10623]: REQ_STRING(password) -- 11:16:00.701 FLOG_MAX [10623]: REQ_STRING(sessionid) -- 11:16:00.701 FLOG_MAX [10623]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:16:00.701 SQL [10623]: pgsql_query() -- 11:16:00.701 SQL [10623]: About to run query: -- 11:16:00.701 SQL [10623]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('chiefsoft+11@chiefsoft.com') AND password= md5('may12002') -- 11:16:00.705 SQL [10623]: Found rows: 0 -- 11:16:00.705 SQL [10623]: Found rows: 0 -- 11:16:00.705 INFO [10623]: long SessionCheck(long uid, const char *sessionid, int create ) -- 11:16:00.705 FLOG_MAX [10623]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:16:00.705 SQL [10623]: pgsql_query() -- 11:16:00.705 SQL [10623]: About to run query: -- 11:16:00.705 SQL [10623]: SELECT upper(md5( now()::text )) AS folder -- 11:16:00.705 SQL [10623]: Found rows: 1 -- 11:16:00.705 FLOG_MAX [10623]: load_db_record(SELECT upper(md5( now()::text )) AS folder) num_cols=1 -- 11:16:00.705 FLOG_MAX [10623]: update_db_record() -- 11:16:00.705 FLOG_MAX [10623]: Bad parameter exception: 'id' -- 11:16:00.705 INFO [10623]: RET: folder=E9906F9C5AB540BDA236A2E9C48B1CBF -- 11:16:00.705 INFO [10623]: RET: member_id= -- 11:16:00.705 INFO [10623]: RET: result=YES I GET TO BACK END -- 11:16:00.705 INFO [10623]: RET: sessionid= -- 11:16:00.705 INFO [10623]: RET: status=Incorrect input parameter -- 11:16:00.707 INFO [10623]: COREGRADE is stopping... -- 11:16:00.707 DEBUG [10623]: Closing database connection -- 11:16:00.707 SQL [10623]: pgsql_close() -- 11:16:00.664 DEBUG [10623]: Database connection successful -- 11:16:00.664 INFO [10623]: _SERVER found -- 11:16:00.664 INFO [10623]: REMOTE_ADDR = 10.0.0.15 -- 11:16:00.664 INFO [10623]: SERVER_NAME = oameye.works.coregrade.com -- 11:16:00.664 INFO [10623]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.583861915.1586661548; ci_session=kmrkb8a9s9efn65fig94tbbum8l41rbe -- 11:16:00.664 INFO [10623]: QUERY_STRING = /auth -- 11:16:00.664 INFO [10623]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:16:00.707 INFO [10623]: COREGRADE is stopping... -- 11:16:00.707 DEBUG [10623]: Closing database connection -- 11:16:00.707 SQL [10623]: pgsql_close() -- 11:16:01.098 INFO [10623]: COREGRADE is starting... -- 11:16:01.098 INFO [10623]: Version from config: 1.0 -- 11:16:01.098 DEBUG [10623]: Connecting to database... -- 11:16:01.098 DEBUG [10623]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:16:01.098 SQL [10623]: pgsql_db_connect() -- 11:16:01.102 DEBUG [10623]: Database connection successful -- 11:16:01.102 INFO [10623]: _SERVER found -- 11:16:01.102 INFO [10623]: REMOTE_ADDR = 10.0.0.15 -- 11:16:01.102 INFO [10623]: SERVER_NAME = oameye.works.coregrade.com -- 11:16:01.102 INFO [10623]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.583861915.1586661548; ci_session=kmrkb8a9s9efn65fig94tbbum8l41rbe -- 11:16:01.102 INFO [10623]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:16:01.102 INFO [10623]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:16:01.113 INFO [10623]: COREGRADE is stopping... -- 11:16:01.113 DEBUG [10623]: Closing database connection -- 11:16:01.113 SQL [10623]: pgsql_close() -- 11:16:13.237 INFO [10625]: COREGRADE is starting... -- 11:16:13.238 INFO [10625]: Version from config: 1.0 -- 11:16:13.238 DEBUG [10625]: Connecting to database... -- 11:16:13.238 DEBUG [10625]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:16:13.238 SQL [10625]: pgsql_db_connect() -- 11:16:13.242 DEBUG [10625]: Database connection successful -- 11:16:13.242 INFO [10625]: _SERVER found -- 11:16:13.242 INFO [10625]: REMOTE_ADDR = 10.0.0.15 -- 11:16:13.242 INFO [10625]: SERVER_NAME = oameye.works.coregrade.com -- 11:16:13.242 INFO [10625]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.583861915.1586661548; ci_session=kmrkb8a9s9efn65fig94tbbum8l41rbe -- 11:16:13.242 INFO [10625]: QUERY_STRING = /auth/newuser -- 11:16:13.242 INFO [10625]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:16:13.275 INFO [10625]: COREGRADE is stopping... -- 11:16:13.275 DEBUG [10625]: Closing database connection -- 11:16:13.275 SQL [10625]: pgsql_close() -- 11:16:13.632 INFO [10625]: COREGRADE is starting... -- 11:16:13.633 INFO [10625]: Version from config: 1.0 -- 11:16:13.633 DEBUG [10625]: Connecting to database... -- 11:16:13.633 DEBUG [10625]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:16:13.633 SQL [10625]: pgsql_db_connect() -- 11:16:13.637 DEBUG [10625]: Database connection successful -- 11:16:13.637 INFO [10625]: _SERVER found -- 11:16:13.637 INFO [10625]: REMOTE_ADDR = 10.0.0.15 -- 11:16:13.637 INFO [10625]: SERVER_NAME = oameye.works.coregrade.com -- 11:16:13.637 INFO [10625]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.583861915.1586661548; ci_session=kmrkb8a9s9efn65fig94tbbum8l41rbe -- 11:16:13.637 INFO [10625]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:16:13.637 INFO [10625]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:16:13.648 INFO [10625]: COREGRADE is stopping... -- 11:16:13.648 DEBUG [10625]: Closing database connection -- 11:16:13.648 SQL [10625]: pgsql_close() -- 11:52:29.603 INFO [10624]: COREGRADE is starting... -- 11:52:29.604 INFO [10624]: Version from config: 1.0 -- 11:52:29.604 DEBUG [10624]: Connecting to database... -- 11:52:29.604 DEBUG [10624]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:52:29.604 SQL [10624]: pgsql_db_connect() -- 11:52:29.608 DEBUG [10624]: Database connection successful -- 11:52:29.608 INFO [10624]: _SERVER found -- 11:52:29.608 INFO [10624]: REMOTE_ADDR = 10.0.0.15 -- 11:52:29.608 INFO [10624]: SERVER_NAME = oameye.works.coregrade.com -- 11:52:29.608 INFO [10624]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938 -- 11:52:29.608 INFO [10624]: QUERY_STRING = /auth -- 11:52:29.608 INFO [10624]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:52:29.645 INFO [10624]: COREGRADE is stopping... -- 11:52:29.646 DEBUG [10624]: Closing database connection -- 11:52:29.646 SQL [10624]: pgsql_close() -- 11:52:29.765 INFO [10624]: COREGRADE is starting... -- 11:52:29.765 INFO [10624]: Version from config: 1.0 -- 11:52:29.765 DEBUG [10624]: Connecting to database... -- 11:52:29.765 DEBUG [10624]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:52:29.765 SQL [10624]: pgsql_db_connect() -- 11:52:29.769 DEBUG [10624]: Database connection successful -- 11:52:29.769 INFO [10624]: _SERVER found -- 11:52:29.769 INFO [10624]: REMOTE_ADDR = 10.0.0.15 -- 11:52:29.769 INFO [10624]: SERVER_NAME = oameye.works.coregrade.com -- 11:52:29.769 INFO [10624]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=9uafufhfa9lqrvb148di0tgsah5586ee -- 11:52:29.769 INFO [10624]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:52:29.769 INFO [10624]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:52:29.780 INFO [10624]: COREGRADE is stopping... -- 11:52:29.780 DEBUG [10624]: Closing database connection -- 11:52:29.780 SQL [10624]: pgsql_close() -- 11:59:40.951 INFO [10626]: COREGRADE is starting... -- 11:59:40.951 INFO [10626]: Version from config: 1.0 -- 11:59:40.951 DEBUG [10626]: Connecting to database... -- 11:59:40.951 DEBUG [10626]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:59:40.951 SQL [10626]: pgsql_db_connect() -- 11:59:40.955 DEBUG [10626]: Database connection successful -- 11:59:40.955 INFO [10626]: _SERVER found -- 11:59:40.955 INFO [10626]: REMOTE_ADDR = 10.0.0.15 -- 11:59:40.955 INFO [10626]: SERVER_NAME = oameye.works.coregrade.com -- 11:59:40.955 INFO [10626]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 11:59:40.955 INFO [10626]: QUERY_STRING = -- 11:59:40.955 INFO [10626]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:59:40.990 INFO [10626]: COREGRADE is stopping... -- 11:59:40.990 DEBUG [10626]: Closing database connection -- 11:59:40.990 SQL [10626]: pgsql_close() -- 11:59:41.476 INFO [10626]: COREGRADE is starting... -- 11:59:41.476 INFO [10626]: Version from config: 1.0 -- 11:59:41.476 DEBUG [10626]: Connecting to database... -- 11:59:41.476 DEBUG [10626]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:59:41.476 SQL [10626]: pgsql_db_connect() -- 11:59:41.481 DEBUG [10626]: Database connection successful -- 11:59:41.481 INFO [10626]: _SERVER found -- 11:59:41.481 INFO [10626]: REMOTE_ADDR = 10.0.0.15 -- 11:59:41.481 INFO [10626]: SERVER_NAME = oameye.works.coregrade.com -- 11:59:41.481 INFO [10626]: HTTP_COOKIE = ci_session=tusua2jupmqkd2iiv7h3s3c172cri6vo; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 11:59:41.481 INFO [10626]: QUERY_STRING = /assets/img/footer_1.jpg -- 11:59:41.481 INFO [10626]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:59:41.493 INFO [10626]: COREGRADE is stopping... -- 11:59:41.493 DEBUG [10626]: Closing database connection -- 11:59:41.493 SQL [10626]: pgsql_close() -- 11:59:42.011 INFO [9650]: COREGRADE is starting... -- 11:59:42.011 INFO [9650]: Version from config: 1.0 -- 11:59:42.011 DEBUG [9650]: Connecting to database... -- 11:59:42.011 DEBUG [9650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:59:42.011 SQL [9650]: pgsql_db_connect() -- 11:59:42.016 DEBUG [9650]: Database connection successful -- 11:59:42.016 INFO [9650]: _SERVER found -- 11:59:42.016 INFO [9650]: REMOTE_ADDR = 10.0.0.15 -- 11:59:42.016 INFO [9650]: SERVER_NAME = oameye.works.coregrade.com -- 11:59:42.016 INFO [9650]: QUERY_STRING = /apple-touch-icon-precomposed.png -- 11:59:42.016 INFO [9650]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:59:42.029 INFO [9650]: COREGRADE is stopping... -- 11:59:42.029 DEBUG [9650]: Closing database connection -- 11:59:42.029 SQL [9650]: pgsql_close() -- 11:59:42.182 INFO [9650]: COREGRADE is starting... -- 11:59:42.182 INFO [9650]: Version from config: 1.0 -- 11:59:42.182 DEBUG [9650]: Connecting to database... -- 11:59:42.182 DEBUG [9650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:59:42.182 SQL [9650]: pgsql_db_connect() -- 11:59:42.187 DEBUG [9650]: Database connection successful -- 11:59:42.187 INFO [9650]: _SERVER found -- 11:59:42.187 INFO [9650]: REMOTE_ADDR = 10.0.0.15 -- 11:59:42.187 INFO [9650]: SERVER_NAME = oameye.works.coregrade.com -- 11:59:42.187 INFO [9650]: QUERY_STRING = /apple-touch-icon.png -- 11:59:42.187 INFO [9650]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:59:42.198 INFO [9650]: COREGRADE is stopping... -- 11:59:42.198 DEBUG [9650]: Closing database connection -- 11:59:42.198 SQL [9650]: pgsql_close() -- 12:01:04.015 INFO [9652]: COREGRADE is starting... -- 12:01:04.015 INFO [9652]: Version from config: 1.0 -- 12:01:04.016 DEBUG [9652]: Connecting to database... -- 12:01:04.016 DEBUG [9652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:01:04.016 SQL [9652]: pgsql_db_connect() -- 12:01:04.020 DEBUG [9652]: Database connection successful -- 12:01:04.020 INFO [9652]: _SERVER found -- 12:01:04.020 INFO [9652]: REMOTE_ADDR = 10.0.0.15 -- 12:01:04.020 INFO [9652]: SERVER_NAME = oameye.works.coregrade.com -- 12:01:04.020 INFO [9652]: QUERY_STRING = /robots.txt -- 12:01:04.020 INFO [9652]: HTTP_X_FORWARDED_FOR = 66.249.65.134 -- 12:01:04.036 INFO [9652]: COREGRADE is stopping... -- 12:01:04.036 DEBUG [9652]: Closing database connection -- 12:01:04.036 SQL [9652]: pgsql_close() -- 12:01:04.128 INFO [9652]: COREGRADE is starting... -- 12:01:04.128 INFO [9652]: Version from config: 1.0 -- 12:01:04.128 DEBUG [9652]: Connecting to database... -- 12:01:04.128 DEBUG [9652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:01:04.128 SQL [9652]: pgsql_db_connect() -- 12:01:04.132 DEBUG [9652]: Database connection successful -- 12:01:04.132 INFO [9652]: _SERVER found -- 12:01:04.132 INFO [9652]: REMOTE_ADDR = 10.0.0.15 -- 12:01:04.132 INFO [9652]: SERVER_NAME = oameye.works.coregrade.com -- 12:01:04.132 INFO [9652]: QUERY_STRING = -- 12:01:04.132 INFO [9652]: HTTP_X_FORWARDED_FOR = 66.249.65.138 -- 12:01:04.174 INFO [9652]: COREGRADE is stopping... -- 12:01:04.174 DEBUG [9652]: Closing database connection -- 12:01:04.174 SQL [9652]: pgsql_close() -- 12:01:25.989 INFO [10502]: COREGRADE is starting... -- 12:01:25.989 INFO [10502]: Version from config: 1.0 -- 12:01:25.989 DEBUG [10502]: Connecting to database... -- 12:01:25.989 DEBUG [10502]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:01:25.989 SQL [10502]: pgsql_db_connect() -- 12:01:25.993 DEBUG [10502]: Database connection successful -- 12:01:25.993 INFO [10502]: _SERVER found -- 12:01:25.993 INFO [10502]: REMOTE_ADDR = 10.0.0.15 -- 12:01:25.993 INFO [10502]: SERVER_NAME = oameye.works.coregrade.com -- 12:01:25.993 INFO [10502]: QUERY_STRING = /favicon.ico -- 12:01:25.993 INFO [10502]: HTTP_X_FORWARDED_FOR = 66.249.65.134 -- 12:01:26.005 INFO [10502]: COREGRADE is stopping... -- 12:01:26.006 DEBUG [10502]: Closing database connection -- 12:01:26.006 SQL [10502]: pgsql_close() -- 12:05:12.750 INFO [9648]: COREGRADE is starting... -- 12:05:12.750 INFO [9648]: Version from config: 1.0 -- 12:05:12.750 DEBUG [9648]: Connecting to database... -- 12:05:12.750 DEBUG [9648]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:05:12.750 SQL [9648]: pgsql_db_connect() -- 12:05:12.755 DEBUG [9648]: Database connection successful -- 12:05:12.755 INFO [9648]: _SERVER found -- 12:05:12.755 INFO [9648]: REMOTE_ADDR = 10.0.0.15 -- 12:05:12.755 INFO [9648]: SERVER_NAME = oameye.works.coregrade.com -- 12:05:12.755 INFO [9648]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=tusua2jupmqkd2iiv7h3s3c172cri6vo -- 12:05:12.755 INFO [9648]: QUERY_STRING = -- 12:05:12.755 INFO [9648]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:05:12.789 INFO [9648]: COREGRADE is stopping... -- 12:05:12.789 DEBUG [9648]: Closing database connection -- 12:05:12.789 SQL [9648]: pgsql_close() -- 12:05:12.816 INFO [9649]: COREGRADE is starting... -- 12:05:12.816 INFO [9649]: Version from config: 1.0 -- 12:05:12.816 DEBUG [9649]: Connecting to database... -- 12:05:12.816 DEBUG [9649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:05:12.816 SQL [9649]: pgsql_db_connect() -- 12:05:12.820 DEBUG [9649]: Database connection successful -- 12:05:12.820 INFO [9649]: _SERVER found -- 12:05:12.821 INFO [9649]: REMOTE_ADDR = 10.0.0.15 -- 12:05:12.821 INFO [9649]: SERVER_NAME = oameye.works.coregrade.com -- 12:05:12.821 INFO [9649]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=tusua2jupmqkd2iiv7h3s3c172cri6vo -- 12:05:12.821 INFO [9649]: QUERY_STRING = /assets/img/footer_1.jpg -- 12:05:12.821 INFO [9649]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:05:12.833 INFO [9649]: COREGRADE is stopping... -- 12:05:12.833 DEBUG [9649]: Closing database connection -- 12:05:12.833 SQL [9649]: pgsql_close() -- 12:05:12.849 INFO [9648]: COREGRADE is starting... -- 12:05:12.849 INFO [9648]: Version from config: 1.0 -- 12:05:12.849 DEBUG [9648]: Connecting to database... -- 12:05:12.849 DEBUG [9648]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:05:12.850 SQL [9648]: pgsql_db_connect() -- 12:05:12.853 DEBUG [9648]: Database connection successful -- 12:05:12.853 INFO [9648]: _SERVER found -- 12:05:12.853 INFO [9648]: REMOTE_ADDR = 10.0.0.15 -- 12:05:12.853 INFO [9648]: SERVER_NAME = oameye.works.coregrade.com -- 12:05:12.853 INFO [9648]: HTTP_COOKIE = ci_session=7qkr1ue9ikcicckmf6ksplosl499nohd; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 12:05:12.853 INFO [9648]: QUERY_STRING = /assets/img/footer_1.jpg -- 12:05:12.853 INFO [9648]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:05:12.865 INFO [9648]: COREGRADE is stopping... -- 12:05:12.865 DEBUG [9648]: Closing database connection -- 12:05:12.865 SQL [9648]: pgsql_close() -- 12:05:25.757 INFO [10623]: COREGRADE is starting... -- 12:05:25.757 INFO [10623]: Version from config: 1.0 -- 12:05:25.757 DEBUG [10623]: Connecting to database... -- 12:05:25.757 DEBUG [10623]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:05:25.757 SQL [10623]: pgsql_db_connect() -- 12:05:25.761 DEBUG [10623]: Database connection successful -- 12:05:25.761 INFO [10623]: _SERVER found -- 12:05:25.761 INFO [10623]: REMOTE_ADDR = 10.0.0.15 -- 12:05:25.761 INFO [10623]: SERVER_NAME = oameye.works.coregrade.com -- 12:05:25.761 INFO [10623]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=7qkr1ue9ikcicckmf6ksplosl499nohd -- 12:05:25.761 INFO [10623]: QUERY_STRING = /welcome/viewLogin -- 12:05:25.761 INFO [10623]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:05:25.793 INFO [10623]: COREGRADE is stopping... -- 12:05:25.793 DEBUG [10623]: Closing database connection -- 12:05:25.793 SQL [10623]: pgsql_close() -- 12:05:25.846 INFO [10625]: COREGRADE is starting... -- 12:05:25.846 INFO [10625]: Version from config: 1.0 -- 12:05:25.846 DEBUG [10625]: Connecting to database... -- 12:05:25.846 DEBUG [10625]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:05:25.846 SQL [10625]: pgsql_db_connect() -- 12:05:25.850 DEBUG [10625]: Database connection successful -- 12:05:25.850 INFO [10625]: _SERVER found -- 12:05:25.850 INFO [10625]: REMOTE_ADDR = 10.0.0.15 -- 12:05:25.850 INFO [10625]: SERVER_NAME = oameye.works.coregrade.com -- 12:05:25.850 INFO [10625]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=7qkr1ue9ikcicckmf6ksplosl499nohd -- 12:05:25.850 INFO [10625]: QUERY_STRING = /auth -- 12:05:25.850 INFO [10625]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:05:25.882 INFO [10625]: COREGRADE is stopping... -- 12:05:25.882 DEBUG [10625]: Closing database connection -- 12:05:25.882 SQL [10625]: pgsql_close() -- 12:05:26.127 INFO [10624]: COREGRADE is starting... -- 12:05:26.127 INFO [10624]: Version from config: 1.0 -- 12:05:26.127 DEBUG [10624]: Connecting to database... -- 12:05:26.127 DEBUG [10624]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:05:26.127 SQL [10624]: pgsql_db_connect() -- 12:05:26.131 DEBUG [10624]: Database connection successful -- 12:05:26.131 INFO [10624]: _SERVER found -- 12:05:26.131 INFO [10624]: REMOTE_ADDR = 10.0.0.15 -- 12:05:26.131 INFO [10624]: SERVER_NAME = oameye.works.coregrade.com -- 12:05:26.131 INFO [10624]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=7qkr1ue9ikcicckmf6ksplosl499nohd -- 12:05:26.131 INFO [10624]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 12:05:26.131 INFO [10624]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:05:26.143 INFO [10624]: COREGRADE is stopping... -- 12:05:26.143 DEBUG [10624]: Closing database connection -- 12:05:26.143 SQL [10624]: pgsql_close() -- 12:05:33.192 INFO [9650]: COREGRADE is starting... -- 12:05:33.192 INFO [9650]: Version from config: 1.0 -- 12:05:33.192 DEBUG [9650]: Connecting to database... -- 12:05:33.192 DEBUG [9650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:05:33.192 SQL [9650]: pgsql_db_connect() -- 12:05:33.196 DEBUG [9650]: Database connection successful -- 12:05:33.196 INFO [9650]: _SERVER found -- 12:05:33.196 INFO [9650]: REMOTE_ADDR = 10.0.0.15 -- 12:05:33.196 INFO [9650]: SERVER_NAME = oameye.works.coregrade.com -- 12:05:33.196 INFO [9650]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=7qkr1ue9ikcicckmf6ksplosl499nohd -- 12:05:33.196 INFO [9650]: QUERY_STRING = /auth/resetpass -- 12:05:33.196 INFO [9650]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:05:33.228 INFO [9650]: COREGRADE is stopping... -- 12:05:33.228 DEBUG [9650]: Closing database connection -- 12:05:33.228 SQL [9650]: pgsql_close() -- 12:05:33.372 INFO [9650]: COREGRADE is starting... -- 12:05:33.372 INFO [9650]: Version from config: 1.0 -- 12:05:33.372 DEBUG [9650]: Connecting to database... -- 12:05:33.372 DEBUG [9650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:05:33.372 SQL [9650]: pgsql_db_connect() -- 12:05:33.377 DEBUG [9650]: Database connection successful -- 12:05:33.377 INFO [9650]: _SERVER found -- 12:05:33.377 INFO [9650]: REMOTE_ADDR = 10.0.0.15 -- 12:05:33.377 INFO [9650]: SERVER_NAME = oameye.works.coregrade.com -- 12:05:33.377 INFO [9650]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=7qkr1ue9ikcicckmf6ksplosl499nohd -- 12:05:33.377 INFO [9650]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 12:05:33.377 INFO [9650]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:05:33.388 INFO [9650]: COREGRADE is stopping... -- 12:05:33.388 DEBUG [9650]: Closing database connection -- 12:05:33.388 SQL [9650]: pgsql_close() -- 12:13:29.487 INFO [9652]: COREGRADE is starting... -- 12:13:29.487 INFO [9652]: Version from config: 1.0 -- 12:13:29.487 DEBUG [9652]: Connecting to database... -- 12:13:29.487 DEBUG [9652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:13:29.487 SQL [9652]: pgsql_db_connect() -- 12:13:29.524 INFO [9652]: COREGRADE is starting... -- 12:13:29.525 INFO [9652]: Version from config: 1.0 -- 12:13:29.525 DEBUG [9652]: Connecting to database... -- 12:13:29.525 DEBUG [9652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:13:29.525 SQL [9652]: pgsql_db_connect() -- 12:13:29.529 DEBUG [9652]: Database connection successful -- 12:13:29.529 INFO [9652]: _SERVER found -- 12:13:29.529 INFO [9652]: REMOTE_ADDR = 10.0.0.15 -- 12:13:29.529 INFO [9652]: SERVER_NAME = oameye.works.coregrade.com -- 12:13:29.529 INFO [9652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=9uafufhfa9lqrvb148di0tgsah5586ee -- 12:13:29.529 INFO [9652]: QUERY_STRING = -- 12:13:29.529 INFO [9652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:13:29.529 INFO [9652]: SystemStatus()09-09-********~************ -- 12:13:29.529 INFO [9652]: long coregrade_api_main(CVars in, CVars &out) -- 12:13:29.529 INFO [9652]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 12:13:29.529 INFO [9652]: account calls -- 12:13:29.529 INFO [9652]: account_calls() -- 12:13:29.529 INFO [9652]: LoginCoreGradeAccount() -- 12:13:29.529 FLOG_MAX [9652]: REQ_STRING(username) -- 12:13:29.529 FLOG_MAX [9652]: REQ_STRING(password) -- 12:13:29.529 FLOG_MAX [9652]: REQ_STRING(sessionid) -- 12:13:29.529 FLOG_MAX [9652]: long load_db_record( CVars &rec, const char * query, ... ) -- 12:13:29.529 SQL [9652]: pgsql_query() -- 12:13:29.529 SQL [9652]: About to run query: -- 12:13:29.529 SQL [9652]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 12:13:29.533 SQL [9652]: Found rows: 1 -- 12:13:29.533 FLOG_MAX [9652]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 12:13:29.533 INFO [9652]: long SessionCheck(long uid, const char *sessionid, int create ) -- 12:13:29.533 SQL [9652]: pgsql_exec() -- 12:13:29.533 SQL [9652]: About to run query: -- 12:13:29.533 SQL [9652]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 12:13:29.534 SQL [9652]: PQcmdTuples: 1 -- 12:13:29.534 SQL [9652]: Affected rows: 1 -- 12:13:29.534 SQL [9652]: pgsql_exec() -- 12:13:29.534 SQL [9652]: About to run query: -- 12:13:29.534 SQL [9652]: DELETE FROM members_session WHERE member_id=5 -- 12:13:29.534 SQL [9652]: PQcmdTuples: 0 -- 12:13:29.534 SQL [9652]: Affected rows: 0 -- 12:13:29.534 SQL [9652]: pgsql_query() -- 12:13:29.534 SQL [9652]: About to run query: -- 12:13:29.534 SQL [9652]: SELECT * FROM members_session WHERE member_id=5 AND session<>'AA14F0ED14CBE2E24FB411B8E7DA9096' -- 12:13:29.535 SQL [9652]: Found rows: 0 -- 12:13:29.535 SQL [9652]: Found rows: 0 -- 12:13:29.535 FLOG_MAX [9652]: long load_db_record( CVars &rec, const char * query, ... ) -- 12:13:29.535 SQL [9652]: pgsql_query() -- 12:13:29.535 SQL [9652]: About to run query: -- 12:13:29.535 SQL [9652]: SELECT * FROM members_session WHERE member_id=5 AND session='AA14F0ED14CBE2E24FB411B8E7DA9096' -- 12:13:29.536 SQL [9652]: Found rows: 0 -- 12:13:29.536 SQL [9652]: Found rows: 0 -- 12:13:29.536 FLOG_MAX [9652]: insert_db_record() -- 12:13:29.536 SQL [9652]: pgsql_exec() -- 12:13:29.536 SQL [9652]: About to run query: -- 12:13:29.536 SQL [9652]: INSERT INTO members_session (member_id,session) VALUES ('5','AA14F0ED14CBE2E24FB411B8E7DA9096') -- 12:13:29.537 SQL [9652]: PQcmdTuples: 1 -- 12:13:29.537 SQL [9652]: Affected rows: 1 -- 12:13:29.537 FLOG_MAX [9652]: SELECT currval('members_session_id_seq') -- 12:13:29.537 SQL [9652]: pgsql_query() -- 12:13:29.537 SQL [9652]: About to run query: -- 12:13:29.537 SQL [9652]: SELECT currval('members_session_id_seq') -- 12:13:29.538 SQL [9652]: Found rows: 1 -- 12:13:29.538 INFO [9652]: CreateDefaultPage() -- 12:13:29.538 FLOG_MAX [9652]: long load_db_record( CVars &rec, const char * query, ... ) -- 12:13:29.538 SQL [9652]: pgsql_query() -- 12:13:29.538 SQL [9652]: About to run query: -- 12:13:29.538 SQL [9652]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 12:13:29.538 SQL [9652]: Found rows: 1 -- 12:13:29.538 FLOG_MAX [9652]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 12:13:29.538 SQL [9652]: pgsql_query() -- 12:13:29.538 SQL [9652]: About to run query: -- 12:13:29.538 SQL [9652]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 12:13:29.539 SQL [9652]: Found rows: 1 -- 12:13:29.539 INFO [9652]: /CreateDefaultPage() -- 12:13:29.539 INFO [9652]: /LoginCoreGradeAccount() -- 12:13:29.539 INFO [9652]: RET: added=2020-02-05 06:47:23.982154 -- 12:13:29.539 INFO [9652]: RET: email=ameye+11@chiefsoft.com -- 12:13:29.539 INFO [9652]: RET: firstname=Olu -- 12:13:29.539 INFO [9652]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 12:13:29.539 INFO [9652]: RET: id=5 -- 12:13:29.539 INFO [9652]: RET: last_login= -- 12:13:29.539 INFO [9652]: RET: lastname=Amey -- 12:13:29.539 INFO [9652]: RET: loc=192.168.1.13 -- 12:13:29.539 INFO [9652]: RET: member_id=5 -- 12:13:29.539 INFO [9652]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 12:13:29.539 INFO [9652]: RET: phone= -- 12:13:29.539 INFO [9652]: RET: pid= -- 12:13:29.539 INFO [9652]: RET: result=YES I GET TO BACK END -- 12:13:29.539 INFO [9652]: RET: sessionid=AA14F0ED14CBE2E24FB411B8E7DA9096 -- 12:13:29.539 INFO [9652]: RET: status=1 -- 12:13:29.539 INFO [9652]: RET: stauts=OK -- 12:13:29.539 INFO [9652]: RET: username=ameye+11@chiefsoft.com -- 12:13:29.539 INFO [9652]: RET: verified= -- 12:13:29.540 INFO [9652]: COREGRADE is stopping... -- 12:13:29.540 DEBUG [9652]: Closing database connection -- 12:13:29.540 SQL [9652]: pgsql_close() -- 12:13:29.491 DEBUG [9652]: Database connection successful -- 12:13:29.491 INFO [9652]: _SERVER found -- 12:13:29.491 INFO [9652]: REMOTE_ADDR = 10.0.0.15 -- 12:13:29.491 INFO [9652]: SERVER_NAME = oameye.works.coregrade.com -- 12:13:29.491 INFO [9652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=9uafufhfa9lqrvb148di0tgsah5586ee -- 12:13:29.491 INFO [9652]: QUERY_STRING = /auth -- 12:13:29.491 INFO [9652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:13:29.541 INFO [9652]: COREGRADE is stopping... -- 12:13:29.541 DEBUG [9652]: Closing database connection -- 12:13:29.541 SQL [9652]: pgsql_close() -- 12:13:29.551 INFO [9652]: COREGRADE is starting... -- 12:13:29.551 INFO [9652]: Version from config: 1.0 -- 12:13:29.551 DEBUG [9652]: Connecting to database... -- 12:13:29.551 DEBUG [9652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:13:29.552 SQL [9652]: pgsql_db_connect() -- 12:13:29.555 DEBUG [9652]: Database connection successful -- 12:13:29.555 INFO [9652]: _SERVER found -- 12:13:29.555 INFO [9652]: REMOTE_ADDR = 10.0.0.15 -- 12:13:29.555 INFO [9652]: SERVER_NAME = oameye.works.coregrade.com -- 12:13:29.555 INFO [9652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=mnu3kna3bpj977nk0or8s2utc9dmd574 -- 12:13:29.555 INFO [9652]: QUERY_STRING = /member/index -- 12:13:29.555 INFO [9652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:13:29.596 INFO [9652]: COREGRADE is stopping... -- 12:13:29.596 DEBUG [9652]: Closing database connection -- 12:13:29.596 SQL [9652]: pgsql_close() -- 12:13:30.120 INFO [9652]: COREGRADE is starting... -- 12:13:30.121 INFO [9652]: Version from config: 1.0 -- 12:13:30.121 DEBUG [9652]: Connecting to database... -- 12:13:30.121 DEBUG [9652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:13:30.121 SQL [9652]: pgsql_db_connect() -- 12:13:30.125 DEBUG [9652]: Database connection successful -- 12:13:30.125 INFO [9652]: _SERVER found -- 12:13:30.125 INFO [9652]: REMOTE_ADDR = 10.0.0.15 -- 12:13:30.125 INFO [9652]: SERVER_NAME = oameye.works.coregrade.com -- 12:13:30.125 INFO [9652]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=mnu3kna3bpj977nk0or8s2utc9dmd574 -- 12:13:30.125 INFO [9652]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:13:30.125 INFO [9652]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:13:30.136 INFO [9652]: COREGRADE is stopping... -- 12:13:30.136 DEBUG [9652]: Closing database connection -- 12:13:30.136 SQL [9652]: pgsql_close() -- 12:13:54.046 INFO [10502]: COREGRADE is starting... -- 12:13:54.047 INFO [10502]: Version from config: 1.0 -- 12:13:54.047 DEBUG [10502]: Connecting to database... -- 12:13:54.047 DEBUG [10502]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:13:54.047 SQL [10502]: pgsql_db_connect() -- 12:13:54.051 DEBUG [10502]: Database connection successful -- 12:13:54.051 INFO [10502]: _SERVER found -- 12:13:54.051 INFO [10502]: REMOTE_ADDR = 10.0.0.15 -- 12:13:54.051 INFO [10502]: SERVER_NAME = oameye.works.coregrade.com -- 12:13:54.051 INFO [10502]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=mnu3kna3bpj977nk0or8s2utc9dmd574 -- 12:13:54.051 INFO [10502]: QUERY_STRING = /member/page -- 12:13:54.051 INFO [10502]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:13:54.096 INFO [10502]: COREGRADE is stopping... -- 12:13:54.096 DEBUG [10502]: Closing database connection -- 12:13:54.096 SQL [10502]: pgsql_close() -- 12:13:54.196 INFO [10502]: COREGRADE is starting... -- 12:13:54.196 INFO [10502]: Version from config: 1.0 -- 12:13:54.196 DEBUG [10502]: Connecting to database... -- 12:13:54.196 DEBUG [10502]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:13:54.196 SQL [10502]: pgsql_db_connect() -- 12:13:54.201 DEBUG [10502]: Database connection successful -- 12:13:54.201 INFO [10502]: _SERVER found -- 12:13:54.201 INFO [10502]: REMOTE_ADDR = 10.0.0.15 -- 12:13:54.201 INFO [10502]: SERVER_NAME = oameye.works.coregrade.com -- 12:13:54.201 INFO [10502]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=mnu3kna3bpj977nk0or8s2utc9dmd574 -- 12:13:54.201 INFO [10502]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:13:54.201 INFO [10502]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:13:54.212 INFO [10502]: COREGRADE is stopping... -- 12:13:54.212 DEBUG [10502]: Closing database connection -- 12:13:54.212 SQL [10502]: pgsql_close() -- 12:26:58.781 INFO [9649]: COREGRADE is starting... -- 12:26:58.782 INFO [9649]: Version from config: 1.0 -- 12:26:58.782 DEBUG [9649]: Connecting to database... -- 12:26:58.782 DEBUG [9649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:26:58.782 SQL [9649]: pgsql_db_connect() -- 12:26:58.786 DEBUG [9649]: Database connection successful -- 12:26:58.786 INFO [9649]: _SERVER found -- 12:26:58.786 INFO [9649]: REMOTE_ADDR = 10.0.0.15 -- 12:26:58.786 INFO [9649]: SERVER_NAME = oameye.works.coregrade.com -- 12:26:58.786 INFO [9649]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=7qkr1ue9ikcicckmf6ksplosl499nohd -- 12:26:58.786 INFO [9649]: QUERY_STRING = -- 12:26:58.786 INFO [9649]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:26:58.821 INFO [9649]: COREGRADE is stopping... -- 12:26:58.822 DEBUG [9649]: Closing database connection -- 12:26:58.822 SQL [9649]: pgsql_close() -- 12:26:58.837 INFO [9648]: COREGRADE is starting... -- 12:26:58.837 INFO [9648]: Version from config: 1.0 -- 12:26:58.837 DEBUG [9648]: Connecting to database... -- 12:26:58.837 DEBUG [9648]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:26:58.837 SQL [9648]: pgsql_db_connect() -- 12:26:58.841 DEBUG [9648]: Database connection successful -- 12:26:58.841 INFO [9648]: _SERVER found -- 12:26:58.841 INFO [9648]: REMOTE_ADDR = 10.0.0.15 -- 12:26:58.841 INFO [9648]: SERVER_NAME = oameye.works.coregrade.com -- 12:26:58.841 INFO [9648]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=7qkr1ue9ikcicckmf6ksplosl499nohd -- 12:26:58.841 INFO [9648]: QUERY_STRING = /assets/img/footer_1.jpg -- 12:26:58.841 INFO [9648]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:26:58.853 INFO [9648]: COREGRADE is stopping... -- 12:26:58.853 DEBUG [9648]: Closing database connection -- 12:26:58.853 SQL [9648]: pgsql_close() -- 12:27:04.456 INFO [9651]: COREGRADE is starting... -- 12:27:04.456 INFO [9651]: Version from config: 1.0 -- 12:27:04.456 DEBUG [9651]: Connecting to database... -- 12:27:04.456 DEBUG [9651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:27:04.456 SQL [9651]: pgsql_db_connect() -- 12:27:04.481 INFO [9649]: COREGRADE is starting... -- 12:27:04.481 INFO [9649]: Version from config: 1.0 -- 12:27:04.481 DEBUG [9649]: Connecting to database... -- 12:27:04.481 DEBUG [9649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:27:04.481 SQL [9649]: pgsql_db_connect() -- 12:27:04.485 DEBUG [9649]: Database connection successful -- 12:27:04.485 INFO [9649]: _SERVER found -- 12:27:04.485 INFO [9649]: REMOTE_ADDR = 10.0.0.15 -- 12:27:04.485 INFO [9649]: SERVER_NAME = oameye.works.coregrade.com -- 12:27:04.485 INFO [9649]: HTTP_COOKIE = _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; _ga=GA1.2.2030761402.1585610624; ci_session=a8tt5ehmo3j562svs88m8c5vs21lp3m9 -- 12:27:04.485 INFO [9649]: QUERY_STRING = /assets/img/footer_1.jpg -- 12:27:04.485 INFO [9649]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:27:04.496 INFO [9649]: COREGRADE is stopping... -- 12:27:04.496 DEBUG [9649]: Closing database connection -- 12:27:04.496 SQL [9649]: pgsql_close() -- 12:27:04.460 DEBUG [9651]: Database connection successful -- 12:27:04.460 INFO [9651]: _SERVER found -- 12:27:04.460 INFO [9651]: REMOTE_ADDR = 10.0.0.15 -- 12:27:04.460 INFO [9651]: SERVER_NAME = oameye.works.coregrade.com -- 12:27:04.460 INFO [9651]: HTTP_COOKIE = _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; _ga=GA1.2.2030761402.1585610624; ci_session=a8tt5ehmo3j562svs88m8c5vs21lp3m9 -- 12:27:04.460 INFO [9651]: QUERY_STRING = -- 12:27:04.460 INFO [9651]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:27:04.499 INFO [9651]: COREGRADE is stopping... -- 12:27:04.499 DEBUG [9651]: Closing database connection -- 12:27:04.499 SQL [9651]: pgsql_close() -- 12:27:06.391 INFO [9651]: COREGRADE is starting... -- 12:27:06.391 INFO [9651]: Version from config: 1.0 -- 12:27:06.391 DEBUG [9651]: Connecting to database... -- 12:27:06.391 DEBUG [9651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:27:06.392 SQL [9651]: pgsql_db_connect() -- 12:27:06.399 INFO [9649]: COREGRADE is starting... -- 12:27:06.399 INFO [9649]: Version from config: 1.0 -- 12:27:06.399 DEBUG [9649]: Connecting to database... -- 12:27:06.399 DEBUG [9649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:27:06.399 SQL [9649]: pgsql_db_connect() -- 12:27:06.403 DEBUG [9649]: Database connection successful -- 12:27:06.403 INFO [9649]: _SERVER found -- 12:27:06.403 INFO [9649]: REMOTE_ADDR = 10.0.0.15 -- 12:27:06.403 INFO [9649]: SERVER_NAME = oameye.works.coregrade.com -- 12:27:06.403 INFO [9649]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=a8tt5ehmo3j562svs88m8c5vs21lp3m9 -- 12:27:06.403 INFO [9649]: QUERY_STRING = /assets/img/footer_1.jpg -- 12:27:06.403 INFO [9649]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:27:06.414 INFO [9649]: COREGRADE is stopping... -- 12:27:06.414 DEBUG [9649]: Closing database connection -- 12:27:06.414 SQL [9649]: pgsql_close() -- 12:27:06.395 DEBUG [9651]: Database connection successful -- 12:27:06.396 INFO [9651]: _SERVER found -- 12:27:06.396 INFO [9651]: REMOTE_ADDR = 10.0.0.15 -- 12:27:06.396 INFO [9651]: SERVER_NAME = oameye.works.coregrade.com -- 12:27:06.396 INFO [9651]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=a8tt5ehmo3j562svs88m8c5vs21lp3m9 -- 12:27:06.396 INFO [9651]: QUERY_STRING = -- 12:27:06.396 INFO [9651]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:27:06.426 INFO [9651]: COREGRADE is stopping... -- 12:27:06.426 DEBUG [9651]: Closing database connection -- 12:27:06.426 SQL [9651]: pgsql_close() -- 12:27:06.483 INFO [9651]: COREGRADE is starting... -- 12:27:06.483 INFO [9651]: Version from config: 1.0 -- 12:27:06.483 DEBUG [9651]: Connecting to database... -- 12:27:06.483 DEBUG [9651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:27:06.483 SQL [9651]: pgsql_db_connect() -- 12:27:06.487 DEBUG [9651]: Database connection successful -- 12:27:06.487 INFO [9651]: _SERVER found -- 12:27:06.487 INFO [9651]: REMOTE_ADDR = 10.0.0.15 -- 12:27:06.487 INFO [9651]: SERVER_NAME = oameye.works.coregrade.com -- 12:27:06.487 INFO [9651]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=a8tt5ehmo3j562svs88m8c5vs21lp3m9 -- 12:27:06.487 INFO [9651]: QUERY_STRING = /assets/img/footer_1.jpg -- 12:27:06.487 INFO [9651]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:27:06.498 INFO [9651]: COREGRADE is stopping... -- 12:27:06.498 DEBUG [9651]: Closing database connection -- 12:27:06.498 SQL [9651]: pgsql_close() -- 12:27:08.560 INFO [9651]: COREGRADE is starting... -- 12:27:08.560 INFO [9651]: Version from config: 1.0 -- 12:27:08.560 DEBUG [9651]: Connecting to database... -- 12:27:08.560 DEBUG [9651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:27:08.560 SQL [9651]: pgsql_db_connect() -- 12:27:08.568 INFO [9649]: COREGRADE is starting... -- 12:27:08.568 INFO [9649]: Version from config: 1.0 -- 12:27:08.568 DEBUG [9649]: Connecting to database... -- 12:27:08.568 DEBUG [9649]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:27:08.568 SQL [9649]: pgsql_db_connect() -- 12:27:08.572 DEBUG [9649]: Database connection successful -- 12:27:08.572 INFO [9649]: _SERVER found -- 12:27:08.572 INFO [9649]: REMOTE_ADDR = 10.0.0.15 -- 12:27:08.572 INFO [9649]: SERVER_NAME = oameye.works.coregrade.com -- 12:27:08.572 INFO [9649]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=a8tt5ehmo3j562svs88m8c5vs21lp3m9 -- 12:27:08.572 INFO [9649]: QUERY_STRING = /assets/img/footer_1.jpg -- 12:27:08.572 INFO [9649]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:27:08.583 INFO [9649]: COREGRADE is stopping... -- 12:27:08.583 DEBUG [9649]: Closing database connection -- 12:27:08.583 SQL [9649]: pgsql_close() -- 12:27:08.564 DEBUG [9651]: Database connection successful -- 12:27:08.564 INFO [9651]: _SERVER found -- 12:27:08.564 INFO [9651]: REMOTE_ADDR = 10.0.0.15 -- 12:27:08.564 INFO [9651]: SERVER_NAME = oameye.works.coregrade.com -- 12:27:08.564 INFO [9651]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=a8tt5ehmo3j562svs88m8c5vs21lp3m9 -- 12:27:08.564 INFO [9651]: QUERY_STRING = -- 12:27:08.564 INFO [9651]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:27:08.595 INFO [9651]: COREGRADE is stopping... -- 12:27:08.595 DEBUG [9651]: Closing database connection -- 12:27:08.595 SQL [9651]: pgsql_close() -- 12:27:47.114 INFO [10625]: COREGRADE is starting... -- 12:27:47.114 INFO [10625]: Version from config: 1.0 -- 12:27:47.114 DEBUG [10625]: Connecting to database... -- 12:27:47.114 DEBUG [10625]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:27:47.114 SQL [10625]: pgsql_db_connect() -- 12:27:47.118 DEBUG [10625]: Database connection successful -- 12:27:47.118 INFO [10625]: _SERVER found -- 12:27:47.118 INFO [10625]: REMOTE_ADDR = 10.0.0.15 -- 12:27:47.118 INFO [10625]: SERVER_NAME = oameye.works.coregrade.com -- 12:27:47.118 INFO [10625]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; _gat_gtag_UA_54829827_2=1 -- 12:27:47.118 INFO [10625]: QUERY_STRING = -- 12:27:47.118 INFO [10625]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 12:27:47.151 INFO [10625]: COREGRADE is stopping... -- 12:27:47.151 DEBUG [10625]: Closing database connection -- 12:27:47.151 SQL [10625]: pgsql_close() -- 12:27:47.329 INFO [10625]: COREGRADE is starting... -- 12:27:47.329 INFO [10625]: Version from config: 1.0 -- 12:27:47.329 DEBUG [10625]: Connecting to database... -- 12:27:47.329 DEBUG [10625]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:27:47.329 SQL [10625]: pgsql_db_connect() -- 12:27:47.333 DEBUG [10625]: Database connection successful -- 12:27:47.333 INFO [10625]: _SERVER found -- 12:27:47.333 INFO [10625]: REMOTE_ADDR = 10.0.0.15 -- 12:27:47.333 INFO [10625]: SERVER_NAME = oameye.works.coregrade.com -- 12:27:47.333 INFO [10625]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; _gat_gtag_UA_54829827_2=1; ci_session=nkbbnvc1v73p71d3fllbr77buuklok7g -- 12:27:47.333 INFO [10625]: QUERY_STRING = /assets/img/footer_1.jpg -- 12:27:47.333 INFO [10625]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 12:27:47.344 INFO [10625]: COREGRADE is stopping... -- 12:27:47.345 DEBUG [10625]: Closing database connection -- 12:27:47.345 SQL [10625]: pgsql_close() -- 12:27:53.594 INFO [10624]: COREGRADE is starting... -- 12:27:53.594 INFO [10624]: Version from config: 1.0 -- 12:27:53.594 DEBUG [10624]: Connecting to database... -- 12:27:53.594 DEBUG [10624]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:27:53.594 SQL [10624]: pgsql_db_connect() -- 12:27:53.598 DEBUG [10624]: Database connection successful -- 12:27:53.598 INFO [10624]: _SERVER found -- 12:27:53.598 INFO [10624]: REMOTE_ADDR = 10.0.0.15 -- 12:27:53.598 INFO [10624]: SERVER_NAME = oameye.works.coregrade.com -- 12:27:53.598 INFO [10624]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; _gat_gtag_UA_54829827_2=1; ci_session=nkbbnvc1v73p71d3fllbr77buuklok7g -- 12:27:53.598 INFO [10624]: QUERY_STRING = /welcome/viewLogin -- 12:27:53.598 INFO [10624]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 12:27:53.629 INFO [10624]: COREGRADE is stopping... -- 12:27:53.629 DEBUG [10624]: Closing database connection -- 12:27:53.629 SQL [10624]: pgsql_close() -- 12:27:53.660 INFO [10626]: COREGRADE is starting... -- 12:27:53.661 INFO [10626]: Version from config: 1.0 -- 12:27:53.661 DEBUG [10626]: Connecting to database... -- 12:27:53.661 DEBUG [10626]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:27:53.661 SQL [10626]: pgsql_db_connect() -- 12:27:53.662 INFO [10624]: COREGRADE is starting... -- 12:27:53.662 INFO [10624]: Version from config: 1.0 -- 12:27:53.662 DEBUG [10624]: Connecting to database... -- 12:27:53.662 DEBUG [10624]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:27:53.662 SQL [10624]: pgsql_db_connect() -- 12:27:53.666 DEBUG [10624]: Database connection successful -- 12:27:53.666 INFO [10624]: _SERVER found -- 12:27:53.666 INFO [10624]: REMOTE_ADDR = 10.0.0.15 -- 12:27:53.666 INFO [10624]: SERVER_NAME = oameye.works.coregrade.com -- 12:27:53.666 INFO [10624]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; _gat_gtag_UA_54829827_2=1; ci_session=nkbbnvc1v73p71d3fllbr77buuklok7g -- 12:27:53.666 INFO [10624]: QUERY_STRING = /auth/index -- 12:27:53.666 INFO [10624]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 12:27:53.697 INFO [10624]: COREGRADE is stopping... -- 12:27:53.697 DEBUG [10624]: Closing database connection -- 12:27:53.697 SQL [10624]: pgsql_close() -- 12:27:53.665 DEBUG [10626]: Database connection successful -- 12:27:53.665 INFO [10626]: _SERVER found -- 12:27:53.665 INFO [10626]: REMOTE_ADDR = 10.0.0.15 -- 12:27:53.665 INFO [10626]: SERVER_NAME = oameye.works.coregrade.com -- 12:27:53.665 INFO [10626]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; _gat_gtag_UA_54829827_2=1; ci_session=nkbbnvc1v73p71d3fllbr77buuklok7g -- 12:27:53.665 INFO [10626]: QUERY_STRING = /auth -- 12:27:53.665 INFO [10626]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 12:27:53.700 INFO [10626]: COREGRADE is stopping... -- 12:27:53.700 DEBUG [10626]: Closing database connection -- 12:27:53.700 SQL [10626]: pgsql_close() -- 12:27:53.883 INFO [10626]: COREGRADE is starting... -- 12:27:53.883 INFO [10626]: Version from config: 1.0 -- 12:27:53.883 DEBUG [10626]: Connecting to database... -- 12:27:53.883 DEBUG [10626]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:27:53.883 SQL [10626]: pgsql_db_connect() -- 12:27:53.887 DEBUG [10626]: Database connection successful -- 12:27:53.887 INFO [10626]: _SERVER found -- 12:27:53.887 INFO [10626]: REMOTE_ADDR = 10.0.0.15 -- 12:27:53.887 INFO [10626]: SERVER_NAME = oameye.works.coregrade.com -- 12:27:53.887 INFO [10626]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; _gat_gtag_UA_54829827_2=1; ci_session=nkbbnvc1v73p71d3fllbr77buuklok7g -- 12:27:53.887 INFO [10626]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 12:27:53.887 INFO [10626]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 12:27:53.899 INFO [10626]: COREGRADE is stopping... -- 12:27:53.899 DEBUG [10626]: Closing database connection -- 12:27:53.899 SQL [10626]: pgsql_close() -- 12:27:56.470 INFO [10626]: COREGRADE is starting... -- 12:27:56.470 INFO [10626]: Version from config: 1.0 -- 12:27:56.470 DEBUG [10626]: Connecting to database... -- 12:27:56.470 DEBUG [10626]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:27:56.470 SQL [10626]: pgsql_db_connect() -- 12:27:56.474 DEBUG [10626]: Database connection successful -- 12:27:56.474 INFO [10626]: _SERVER found -- 12:27:56.474 INFO [10626]: REMOTE_ADDR = 10.0.0.15 -- 12:27:56.474 INFO [10626]: SERVER_NAME = oameye.works.coregrade.com -- 12:27:56.474 INFO [10626]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; _gat_gtag_UA_54829827_2=1; ci_session=nkbbnvc1v73p71d3fllbr77buuklok7g -- 12:27:56.474 INFO [10626]: QUERY_STRING = -- 12:27:56.474 INFO [10626]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 12:27:56.505 INFO [10626]: COREGRADE is stopping... -- 12:27:56.505 DEBUG [10626]: Closing database connection -- 12:27:56.505 SQL [10626]: pgsql_close() -- 12:27:56.658 INFO [10626]: COREGRADE is starting... -- 12:27:56.658 INFO [10626]: Version from config: 1.0 -- 12:27:56.658 DEBUG [10626]: Connecting to database... -- 12:27:56.658 DEBUG [10626]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:27:56.658 SQL [10626]: pgsql_db_connect() -- 12:27:56.662 DEBUG [10626]: Database connection successful -- 12:27:56.662 INFO [10626]: _SERVER found -- 12:27:56.662 INFO [10626]: REMOTE_ADDR = 10.0.0.15 -- 12:27:56.662 INFO [10626]: SERVER_NAME = oameye.works.coregrade.com -- 12:27:56.662 INFO [10626]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; _gat_gtag_UA_54829827_2=1; ci_session=nkbbnvc1v73p71d3fllbr77buuklok7g -- 12:27:56.662 INFO [10626]: QUERY_STRING = /assets/img/footer_1.jpg -- 12:27:56.662 INFO [10626]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 12:27:56.674 INFO [10626]: COREGRADE is stopping... -- 12:27:56.674 DEBUG [10626]: Closing database connection -- 12:27:56.674 SQL [10626]: pgsql_close() -- 12:27:59.773 INFO [10626]: COREGRADE is starting... -- 12:27:59.774 INFO [10626]: Version from config: 1.0 -- 12:27:59.774 DEBUG [10626]: Connecting to database... -- 12:27:59.774 DEBUG [10626]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:27:59.774 SQL [10626]: pgsql_db_connect() -- 12:27:59.778 DEBUG [10626]: Database connection successful -- 12:27:59.778 INFO [10626]: _SERVER found -- 12:27:59.778 INFO [10626]: REMOTE_ADDR = 10.0.0.15 -- 12:27:59.778 INFO [10626]: SERVER_NAME = oameye.works.coregrade.com -- 12:27:59.778 INFO [10626]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; _gat_gtag_UA_54829827_2=1; ci_session=nkbbnvc1v73p71d3fllbr77buuklok7g -- 12:27:59.778 INFO [10626]: QUERY_STRING = /welcome/viewLogin -- 12:27:59.778 INFO [10626]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 12:27:59.807 INFO [10626]: COREGRADE is stopping... -- 12:27:59.807 DEBUG [10626]: Closing database connection -- 12:27:59.808 SQL [10626]: pgsql_close() -- 12:27:59.841 INFO [10626]: COREGRADE is starting... -- 12:27:59.842 INFO [10626]: Version from config: 1.0 -- 12:27:59.842 DEBUG [10626]: Connecting to database... -- 12:27:59.842 DEBUG [10626]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:27:59.842 SQL [10626]: pgsql_db_connect() -- 12:27:59.843 INFO [9650]: COREGRADE is starting... -- 12:27:59.843 INFO [9650]: Version from config: 1.0 -- 12:27:59.843 DEBUG [9650]: Connecting to database... -- 12:27:59.843 DEBUG [9650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:27:59.843 SQL [9650]: pgsql_db_connect() -- 12:27:59.846 DEBUG [10626]: Database connection successful -- 12:27:59.846 INFO [10626]: _SERVER found -- 12:27:59.846 INFO [10626]: REMOTE_ADDR = 10.0.0.15 -- 12:27:59.846 INFO [10626]: SERVER_NAME = oameye.works.coregrade.com -- 12:27:59.846 INFO [10626]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; _gat_gtag_UA_54829827_2=1; ci_session=nkbbnvc1v73p71d3fllbr77buuklok7g -- 12:27:59.846 INFO [10626]: QUERY_STRING = /auth -- 12:27:59.846 INFO [10626]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 12:27:59.877 INFO [10626]: COREGRADE is stopping... -- 12:27:59.877 DEBUG [10626]: Closing database connection -- 12:27:59.877 SQL [10626]: pgsql_close() -- 12:27:59.847 DEBUG [9650]: Database connection successful -- 12:27:59.847 INFO [9650]: _SERVER found -- 12:27:59.847 INFO [9650]: REMOTE_ADDR = 10.0.0.15 -- 12:27:59.847 INFO [9650]: SERVER_NAME = oameye.works.coregrade.com -- 12:27:59.847 INFO [9650]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; _gat_gtag_UA_54829827_2=1; ci_session=nkbbnvc1v73p71d3fllbr77buuklok7g -- 12:27:59.847 INFO [9650]: QUERY_STRING = /auth/index -- 12:27:59.847 INFO [9650]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 12:27:59.880 INFO [9650]: COREGRADE is stopping... -- 12:27:59.880 DEBUG [9650]: Closing database connection -- 12:27:59.880 SQL [9650]: pgsql_close() -- 12:28:00.028 INFO [9650]: COREGRADE is starting... -- 12:28:00.028 INFO [9650]: Version from config: 1.0 -- 12:28:00.028 DEBUG [9650]: Connecting to database... -- 12:28:00.028 DEBUG [9650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:28:00.028 SQL [9650]: pgsql_db_connect() -- 12:28:00.032 DEBUG [9650]: Database connection successful -- 12:28:00.032 INFO [9650]: _SERVER found -- 12:28:00.032 INFO [9650]: REMOTE_ADDR = 10.0.0.15 -- 12:28:00.032 INFO [9650]: SERVER_NAME = oameye.works.coregrade.com -- 12:28:00.032 INFO [9650]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; _gat_gtag_UA_54829827_2=1; ci_session=nkbbnvc1v73p71d3fllbr77buuklok7g -- 12:28:00.032 INFO [9650]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 12:28:00.032 INFO [9650]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 12:28:00.044 INFO [9650]: COREGRADE is stopping... -- 12:28:00.044 DEBUG [9650]: Closing database connection -- 12:28:00.044 SQL [9650]: pgsql_close() -- 12:29:26.608 INFO [9652]: COREGRADE is starting... -- 12:29:26.609 INFO [9652]: Version from config: 1.0 -- 12:29:26.609 DEBUG [9652]: Connecting to database... -- 12:29:26.609 DEBUG [9652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:26.609 SQL [9652]: pgsql_db_connect() -- 12:29:26.613 DEBUG [9652]: Database connection successful -- 12:29:26.613 INFO [9652]: _SERVER found -- 12:29:26.613 INFO [9652]: REMOTE_ADDR = 10.0.0.15 -- 12:29:26.613 INFO [9652]: SERVER_NAME = oameye.works.coregrade.com -- 12:29:26.613 INFO [9652]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=a8tt5ehmo3j562svs88m8c5vs21lp3m9 -- 12:29:26.613 INFO [9652]: QUERY_STRING = -- 12:29:26.613 INFO [9652]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:29:26.645 INFO [9652]: COREGRADE is stopping... -- 12:29:26.645 DEBUG [9652]: Closing database connection -- 12:29:26.645 SQL [9652]: pgsql_close() -- 12:29:26.676 INFO [9652]: COREGRADE is starting... -- 12:29:26.676 INFO [9652]: Version from config: 1.0 -- 12:29:26.676 DEBUG [9652]: Connecting to database... -- 12:29:26.676 DEBUG [9652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:26.676 SQL [9652]: pgsql_db_connect() -- 12:29:26.680 DEBUG [9652]: Database connection successful -- 12:29:26.680 INFO [9652]: _SERVER found -- 12:29:26.680 INFO [9652]: REMOTE_ADDR = 10.0.0.15 -- 12:29:26.680 INFO [9652]: SERVER_NAME = oameye.works.coregrade.com -- 12:29:26.680 INFO [9652]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=a8tt5ehmo3j562svs88m8c5vs21lp3m9 -- 12:29:26.680 INFO [9652]: QUERY_STRING = /assets/img/footer_1.jpg -- 12:29:26.680 INFO [9652]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:29:26.691 INFO [9652]: COREGRADE is stopping... -- 12:29:26.691 DEBUG [9652]: Closing database connection -- 12:29:26.691 SQL [9652]: pgsql_close() -- 12:29:31.594 INFO [9652]: COREGRADE is starting... -- 12:29:31.594 INFO [9652]: Version from config: 1.0 -- 12:29:31.594 DEBUG [9652]: Connecting to database... -- 12:29:31.594 DEBUG [9652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:31.594 SQL [9652]: pgsql_db_connect() -- 12:29:31.602 INFO [10502]: COREGRADE is starting... -- 12:29:31.602 INFO [10502]: Version from config: 1.0 -- 12:29:31.602 DEBUG [10502]: Connecting to database... -- 12:29:31.602 DEBUG [10502]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:31.602 SQL [10502]: pgsql_db_connect() -- 12:29:31.606 DEBUG [10502]: Database connection successful -- 12:29:31.606 INFO [10502]: _SERVER found -- 12:29:31.606 INFO [10502]: REMOTE_ADDR = 10.0.0.15 -- 12:29:31.606 INFO [10502]: SERVER_NAME = oameye.works.coregrade.com -- 12:29:31.606 INFO [10502]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=a8tt5ehmo3j562svs88m8c5vs21lp3m9 -- 12:29:31.606 INFO [10502]: QUERY_STRING = /assets/img/footer_1.jpg -- 12:29:31.606 INFO [10502]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:29:31.618 INFO [10502]: COREGRADE is stopping... -- 12:29:31.618 DEBUG [10502]: Closing database connection -- 12:29:31.618 SQL [10502]: pgsql_close() -- 12:29:31.598 DEBUG [9652]: Database connection successful -- 12:29:31.598 INFO [9652]: _SERVER found -- 12:29:31.598 INFO [9652]: REMOTE_ADDR = 10.0.0.15 -- 12:29:31.598 INFO [9652]: SERVER_NAME = oameye.works.coregrade.com -- 12:29:31.598 INFO [9652]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=a8tt5ehmo3j562svs88m8c5vs21lp3m9 -- 12:29:31.598 INFO [9652]: QUERY_STRING = -- 12:29:31.598 INFO [9652]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:29:31.629 INFO [9652]: COREGRADE is stopping... -- 12:29:31.629 DEBUG [9652]: Closing database connection -- 12:29:31.629 SQL [9652]: pgsql_close() -- 12:29:31.686 INFO [9652]: COREGRADE is starting... -- 12:29:31.686 INFO [9652]: Version from config: 1.0 -- 12:29:31.686 DEBUG [9652]: Connecting to database... -- 12:29:31.686 DEBUG [9652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:31.686 SQL [9652]: pgsql_db_connect() -- 12:29:31.690 DEBUG [9652]: Database connection successful -- 12:29:31.690 INFO [9652]: _SERVER found -- 12:29:31.690 INFO [9652]: REMOTE_ADDR = 10.0.0.15 -- 12:29:31.690 INFO [9652]: SERVER_NAME = oameye.works.coregrade.com -- 12:29:31.690 INFO [9652]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=a8tt5ehmo3j562svs88m8c5vs21lp3m9 -- 12:29:31.690 INFO [9652]: QUERY_STRING = /assets/img/footer_1.jpg -- 12:29:31.690 INFO [9652]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:29:31.701 INFO [9652]: COREGRADE is stopping... -- 12:29:31.701 DEBUG [9652]: Closing database connection -- 12:29:31.701 SQL [9652]: pgsql_close() -- 12:31:04.052 INFO [9648]: COREGRADE is starting... -- 12:31:04.052 INFO [9648]: Version from config: 1.0 -- 12:31:04.052 DEBUG [9648]: Connecting to database... -- 12:31:04.052 DEBUG [9648]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:31:04.052 SQL [9648]: pgsql_db_connect() -- 12:31:04.056 DEBUG [9648]: Database connection successful -- 12:31:04.056 INFO [9648]: _SERVER found -- 12:31:04.056 INFO [9648]: REMOTE_ADDR = 10.0.0.15 -- 12:31:04.056 INFO [9648]: SERVER_NAME = oameye.works.coregrade.com -- 12:31:04.056 INFO [9648]: QUERY_STRING = -- 12:31:04.056 INFO [9648]: HTTP_X_FORWARDED_FOR = 66.249.65.134 -- 12:31:04.088 INFO [9648]: COREGRADE is stopping... -- 12:31:04.088 DEBUG [9648]: Closing database connection -- 12:31:04.088 SQL [9648]: pgsql_close() -- 12:32:22.860 INFO [12383]: COREGRADE is starting... -- 12:32:22.860 INFO [12383]: Version from config: 1.0 -- 12:32:22.860 DEBUG [12383]: Connecting to database... -- 12:32:22.860 DEBUG [12383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:32:22.860 SQL [12383]: pgsql_db_connect() -- 12:32:22.866 DEBUG [12383]: Database connection successful -- 12:32:22.866 INFO [12383]: _SERVER found -- 12:32:22.866 INFO [12383]: REMOTE_ADDR = 10.0.0.15 -- 12:32:22.866 INFO [12383]: SERVER_NAME = oameye.works.coregrade.com -- 12:32:22.866 INFO [12383]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=a8tt5ehmo3j562svs88m8c5vs21lp3m9 -- 12:32:22.866 INFO [12383]: QUERY_STRING = /auth -- 12:32:22.866 INFO [12383]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:32:22.905 INFO [12383]: COREGRADE is stopping... -- 12:32:22.905 DEBUG [12383]: Closing database connection -- 12:32:22.905 SQL [12383]: pgsql_close() -- 12:32:23.020 INFO [12383]: COREGRADE is starting... -- 12:32:23.020 INFO [12383]: Version from config: 1.0 -- 12:32:23.020 DEBUG [12383]: Connecting to database... -- 12:32:23.020 DEBUG [12383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:32:23.020 SQL [12383]: pgsql_db_connect() -- 12:32:23.024 DEBUG [12383]: Database connection successful -- 12:32:23.024 INFO [12383]: _SERVER found -- 12:32:23.024 INFO [12383]: REMOTE_ADDR = 10.0.0.15 -- 12:32:23.024 INFO [12383]: SERVER_NAME = oameye.works.coregrade.com -- 12:32:23.024 INFO [12383]: HTTP_COOKIE = ci_session=72mfuvnpl1oe1jkhvtoevr9dej1l6vv0; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 12:32:23.024 INFO [12383]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 12:32:23.024 INFO [12383]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:32:23.037 INFO [12383]: COREGRADE is stopping... -- 12:32:23.037 DEBUG [12383]: Closing database connection -- 12:32:23.037 SQL [12383]: pgsql_close() -- 12:32:25.442 INFO [12383]: COREGRADE is starting... -- 12:32:25.442 INFO [12383]: Version from config: 1.0 -- 12:32:25.442 DEBUG [12383]: Connecting to database... -- 12:32:25.442 DEBUG [12383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:32:25.442 SQL [12383]: pgsql_db_connect() -- 12:32:25.447 DEBUG [12383]: Database connection successful -- 12:32:25.447 INFO [12383]: _SERVER found -- 12:32:25.447 INFO [12383]: REMOTE_ADDR = 10.0.0.15 -- 12:32:25.447 INFO [12383]: SERVER_NAME = oameye.works.coregrade.com -- 12:32:25.447 INFO [12383]: HTTP_COOKIE = ci_session=72mfuvnpl1oe1jkhvtoevr9dej1l6vv0; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 12:32:25.447 INFO [12383]: QUERY_STRING = /auth/resetpass -- 12:32:25.447 INFO [12383]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:32:25.482 INFO [12383]: COREGRADE is stopping... -- 12:32:25.482 DEBUG [12383]: Closing database connection -- 12:32:25.482 SQL [12383]: pgsql_close() -- 12:32:25.568 INFO [12383]: COREGRADE is starting... -- 12:32:25.568 INFO [12383]: Version from config: 1.0 -- 12:32:25.568 DEBUG [12383]: Connecting to database... -- 12:32:25.568 DEBUG [12383]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:32:25.568 SQL [12383]: pgsql_db_connect() -- 12:32:25.573 DEBUG [12383]: Database connection successful -- 12:32:25.573 INFO [12383]: _SERVER found -- 12:32:25.573 INFO [12383]: REMOTE_ADDR = 10.0.0.15 -- 12:32:25.573 INFO [12383]: SERVER_NAME = oameye.works.coregrade.com -- 12:32:25.573 INFO [12383]: HTTP_COOKIE = ci_session=72mfuvnpl1oe1jkhvtoevr9dej1l6vv0; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 12:32:25.573 INFO [12383]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 12:32:25.573 INFO [12383]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:32:25.585 INFO [12383]: COREGRADE is stopping... -- 12:32:25.585 DEBUG [12383]: Closing database connection -- 12:32:25.585 SQL [12383]: pgsql_close() -- 12:40:14.272 INFO [12384]: COREGRADE is starting... -- 12:40:14.272 INFO [12384]: Version from config: 1.0 -- 12:40:14.272 DEBUG [12384]: Connecting to database... -- 12:40:14.272 DEBUG [12384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:40:14.272 SQL [12384]: pgsql_db_connect() -- 12:40:14.317 INFO [12384]: COREGRADE is starting... -- 12:40:14.317 INFO [12384]: Version from config: 1.0 -- 12:40:14.317 DEBUG [12384]: Connecting to database... -- 12:40:14.317 DEBUG [12384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:40:14.317 SQL [12384]: pgsql_db_connect() -- 12:40:14.322 DEBUG [12384]: Database connection successful -- 12:40:14.322 INFO [12384]: _SERVER found -- 12:40:14.322 INFO [12384]: REMOTE_ADDR = 10.0.0.15 -- 12:40:14.322 INFO [12384]: SERVER_NAME = oameye.works.coregrade.com -- 12:40:14.322 INFO [12384]: HTTP_COOKIE = ci_session=72mfuvnpl1oe1jkhvtoevr9dej1l6vv0; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 12:40:14.322 INFO [12384]: QUERY_STRING = -- 12:40:14.322 INFO [12384]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:40:14.322 INFO [12384]: SystemStatus()09-09-********~************ -- 12:40:14.322 INFO [12384]: long coregrade_api_main(CVars in, CVars &out) -- 12:40:14.322 INFO [12384]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 12:40:14.322 INFO [12384]: account calls -- 12:40:14.322 INFO [12384]: account_calls() -- 12:40:14.322 INFO [12384]: long COREGRADE_START_RESET_PASSWORD(CVars in, CVars out) -- 12:40:14.322 INFO [12384]: /account_calls() -- 12:40:14.322 INFO [12384]: RET: result=YES I GET TO BACK END -- 12:40:14.323 INFO [12384]: COREGRADE is stopping... -- 12:40:14.324 DEBUG [12384]: Closing database connection -- 12:40:14.324 SQL [12384]: pgsql_close() -- 12:40:14.277 DEBUG [12384]: Database connection successful -- 12:40:14.277 INFO [12384]: _SERVER found -- 12:40:14.277 INFO [12384]: REMOTE_ADDR = 10.0.0.15 -- 12:40:14.277 INFO [12384]: SERVER_NAME = oameye.works.coregrade.com -- 12:40:14.277 INFO [12384]: HTTP_COOKIE = ci_session=72mfuvnpl1oe1jkhvtoevr9dej1l6vv0; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 12:40:14.277 INFO [12384]: QUERY_STRING = /auth/resetpass -- 12:40:14.277 INFO [12384]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:40:14.324 INFO [12384]: COREGRADE is stopping... -- 12:40:14.324 DEBUG [12384]: Closing database connection -- 12:40:14.324 SQL [12384]: pgsql_close() -- 12:40:14.414 INFO [12384]: COREGRADE is starting... -- 12:40:14.415 INFO [12384]: Version from config: 1.0 -- 12:40:14.415 DEBUG [12384]: Connecting to database... -- 12:40:14.415 DEBUG [12384]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:40:14.415 SQL [12384]: pgsql_db_connect() -- 12:40:14.419 DEBUG [12384]: Database connection successful -- 12:40:14.419 INFO [12384]: _SERVER found -- 12:40:14.419 INFO [12384]: REMOTE_ADDR = 10.0.0.15 -- 12:40:14.419 INFO [12384]: SERVER_NAME = oameye.works.coregrade.com -- 12:40:14.419 INFO [12384]: HTTP_COOKIE = ci_session=mh4797okq6ippeq08l1j94s283qqhsle; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 12:40:14.419 INFO [12384]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 12:40:14.419 INFO [12384]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:40:14.432 INFO [12384]: COREGRADE is stopping... -- 12:40:14.432 DEBUG [12384]: Closing database connection -- 12:40:14.432 SQL [12384]: pgsql_close() -- 13:06:07.941 INFO [12927]: COREGRADE is starting... -- 13:06:07.941 INFO [12927]: Version from config: 1.0 -- 13:06:07.941 DEBUG [12927]: Connecting to database... -- 13:06:07.941 DEBUG [12927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:06:07.941 SQL [12927]: pgsql_db_connect() -- 13:06:07.984 INFO [12927]: COREGRADE is starting... -- 13:06:07.984 INFO [12927]: Version from config: 1.0 -- 13:06:07.984 DEBUG [12927]: Connecting to database... -- 13:06:07.984 DEBUG [12927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:06:07.984 SQL [12927]: pgsql_db_connect() -- 13:06:07.988 DEBUG [12927]: Database connection successful -- 13:06:07.988 INFO [12927]: _SERVER found -- 13:06:07.988 INFO [12927]: REMOTE_ADDR = 10.0.0.15 -- 13:06:07.988 INFO [12927]: SERVER_NAME = oameye.works.coregrade.com -- 13:06:07.988 INFO [12927]: HTTP_COOKIE = ci_session=mh4797okq6ippeq08l1j94s283qqhsle; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 13:06:07.988 INFO [12927]: QUERY_STRING = -- 13:06:07.988 INFO [12927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:06:07.988 INFO [12927]: SystemStatus()09-09-********~************ -- 13:06:07.988 INFO [12927]: long coregrade_api_main(CVars in, CVars &out) -- 13:06:07.988 INFO [12927]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 13:06:07.988 INFO [12927]: account calls -- 13:06:07.988 INFO [12927]: account_calls() -- 13:06:07.988 INFO [12927]: passwordReset() -- 13:06:07.988 FLOG_MAX [12927]: Bad parameter exception: 'mode' -- 13:06:07.989 INFO [12927]: RET: result=YES I GET TO BACK END -- 13:06:07.989 INFO [12927]: RET: status=Incorrect input parameter -- 13:06:07.990 INFO [12927]: COREGRADE is stopping... -- 13:06:07.990 DEBUG [12927]: Closing database connection -- 13:06:07.990 SQL [12927]: pgsql_close() -- 13:06:07.946 DEBUG [12927]: Database connection successful -- 13:06:07.946 INFO [12927]: _SERVER found -- 13:06:07.946 INFO [12927]: REMOTE_ADDR = 10.0.0.15 -- 13:06:07.946 INFO [12927]: SERVER_NAME = oameye.works.coregrade.com -- 13:06:07.946 INFO [12927]: HTTP_COOKIE = ci_session=mh4797okq6ippeq08l1j94s283qqhsle; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 13:06:07.946 INFO [12927]: QUERY_STRING = /auth/resetpass -- 13:06:07.946 INFO [12927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:06:07.991 INFO [12927]: COREGRADE is stopping... -- 13:06:07.991 DEBUG [12927]: Closing database connection -- 13:06:07.991 SQL [12927]: pgsql_close() -- 13:06:08.102 INFO [12927]: COREGRADE is starting... -- 13:06:08.102 INFO [12927]: Version from config: 1.0 -- 13:06:08.102 DEBUG [12927]: Connecting to database... -- 13:06:08.102 DEBUG [12927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:06:08.102 SQL [12927]: pgsql_db_connect() -- 13:06:08.106 DEBUG [12927]: Database connection successful -- 13:06:08.106 INFO [12927]: _SERVER found -- 13:06:08.106 INFO [12927]: REMOTE_ADDR = 10.0.0.15 -- 13:06:08.106 INFO [12927]: SERVER_NAME = oameye.works.coregrade.com -- 13:06:08.106 INFO [12927]: HTTP_COOKIE = ci_session=bh4msd3h09cggr8vse1lmnfcsh2r5abq; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 13:06:08.106 INFO [12927]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:06:08.106 INFO [12927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:06:08.119 INFO [12927]: COREGRADE is stopping... -- 13:06:08.119 DEBUG [12927]: Closing database connection -- 13:06:08.119 SQL [12927]: pgsql_close() -- 13:12:56.506 INFO [12928]: COREGRADE is starting... -- 13:12:56.507 INFO [12928]: Version from config: 1.0 -- 13:12:56.507 DEBUG [12928]: Connecting to database... -- 13:12:56.507 DEBUG [12928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:12:56.507 SQL [12928]: pgsql_db_connect() -- 13:12:56.511 DEBUG [12928]: Database connection successful -- 13:12:56.511 INFO [12928]: _SERVER found -- 13:12:56.511 INFO [12928]: REMOTE_ADDR = 10.0.0.15 -- 13:12:56.511 INFO [12928]: SERVER_NAME = oameye.works.coregrade.com -- 13:12:56.511 INFO [12928]: HTTP_COOKIE = ci_session=bh4msd3h09cggr8vse1lmnfcsh2r5abq; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 13:12:56.511 INFO [12928]: QUERY_STRING = -- 13:12:56.511 INFO [12928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:12:56.558 INFO [12928]: COREGRADE is stopping... -- 13:12:56.558 DEBUG [12928]: Closing database connection -- 13:12:56.558 SQL [12928]: pgsql_close() -- 13:12:56.576 INFO [12928]: COREGRADE is starting... -- 13:12:56.577 INFO [12928]: Version from config: 1.0 -- 13:12:56.577 DEBUG [12928]: Connecting to database... -- 13:12:56.577 DEBUG [12928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:12:56.577 SQL [12928]: pgsql_db_connect() -- 13:12:56.581 DEBUG [12928]: Database connection successful -- 13:12:56.581 INFO [12928]: _SERVER found -- 13:12:56.581 INFO [12928]: REMOTE_ADDR = 10.0.0.15 -- 13:12:56.581 INFO [12928]: SERVER_NAME = oameye.works.coregrade.com -- 13:12:56.581 INFO [12928]: HTTP_COOKIE = ci_session=bh4msd3h09cggr8vse1lmnfcsh2r5abq; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 13:12:56.581 INFO [12928]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:12:56.581 INFO [12928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:12:56.593 INFO [12928]: COREGRADE is stopping... -- 13:12:56.593 DEBUG [12928]: Closing database connection -- 13:12:56.593 SQL [12928]: pgsql_close() -- 13:14:47.240 INFO [12930]: COREGRADE is starting... -- 13:14:47.240 INFO [12930]: Version from config: 1.0 -- 13:14:47.240 DEBUG [12930]: Connecting to database... -- 13:14:47.240 DEBUG [12930]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:14:47.240 SQL [12930]: pgsql_db_connect() -- 13:14:47.245 DEBUG [12930]: Database connection successful -- 13:14:47.245 INFO [12930]: _SERVER found -- 13:14:47.245 INFO [12930]: REMOTE_ADDR = 10.0.0.15 -- 13:14:47.245 INFO [12930]: SERVER_NAME = oameye.works.coregrade.com -- 13:14:47.245 INFO [12930]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=vlhi18djgb5thcpfikus33it07pp6s5d -- 13:14:47.245 INFO [12930]: QUERY_STRING = /home/contactus -- 13:14:47.245 INFO [12930]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:14:47.284 INFO [12930]: COREGRADE is stopping... -- 13:14:47.284 DEBUG [12930]: Closing database connection -- 13:14:47.284 SQL [12930]: pgsql_close() -- 13:14:47.380 INFO [12930]: COREGRADE is starting... -- 13:14:47.380 INFO [12930]: Version from config: 1.0 -- 13:14:47.380 DEBUG [12930]: Connecting to database... -- 13:14:47.380 DEBUG [12930]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:14:47.380 SQL [12930]: pgsql_db_connect() -- 13:14:47.384 DEBUG [12930]: Database connection successful -- 13:14:47.384 INFO [12930]: _SERVER found -- 13:14:47.384 INFO [12930]: REMOTE_ADDR = 10.0.0.15 -- 13:14:47.384 INFO [12930]: SERVER_NAME = oameye.works.coregrade.com -- 13:14:47.384 INFO [12930]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=vlhi18djgb5thcpfikus33it07pp6s5d -- 13:14:47.384 INFO [12930]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:14:47.384 INFO [12930]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:14:47.397 INFO [12930]: COREGRADE is stopping... -- 13:14:47.397 DEBUG [12930]: Closing database connection -- 13:14:47.397 SQL [12930]: pgsql_close() -- 13:14:51.309 INFO [12930]: COREGRADE is starting... -- 13:14:51.309 INFO [12930]: Version from config: 1.0 -- 13:14:51.309 DEBUG [12930]: Connecting to database... -- 13:14:51.309 DEBUG [12930]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:14:51.309 SQL [12930]: pgsql_db_connect() -- 13:14:51.313 DEBUG [12930]: Database connection successful -- 13:14:51.313 INFO [12930]: _SERVER found -- 13:14:51.313 INFO [12930]: REMOTE_ADDR = 10.0.0.15 -- 13:14:51.313 INFO [12930]: SERVER_NAME = oameye.works.coregrade.com -- 13:14:51.313 INFO [12930]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=vlhi18djgb5thcpfikus33it07pp6s5d -- 13:14:51.313 INFO [12930]: QUERY_STRING = -- 13:14:51.313 INFO [12930]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:14:51.353 INFO [12930]: COREGRADE is stopping... -- 13:14:51.353 DEBUG [12930]: Closing database connection -- 13:14:51.353 SQL [12930]: pgsql_close() -- 13:14:59.731 INFO [12929]: COREGRADE is starting... -- 13:14:59.731 INFO [12929]: Version from config: 1.0 -- 13:14:59.731 DEBUG [12929]: Connecting to database... -- 13:14:59.731 DEBUG [12929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:14:59.731 SQL [12929]: pgsql_db_connect() -- 13:14:59.736 DEBUG [12929]: Database connection successful -- 13:14:59.736 INFO [12929]: _SERVER found -- 13:14:59.736 INFO [12929]: REMOTE_ADDR = 10.0.0.15 -- 13:14:59.736 INFO [12929]: SERVER_NAME = oameye.works.coregrade.com -- 13:14:59.736 INFO [12929]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=vlhi18djgb5thcpfikus33it07pp6s5d -- 13:14:59.736 INFO [12929]: QUERY_STRING = /auth -- 13:14:59.736 INFO [12929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:14:59.774 INFO [12929]: COREGRADE is stopping... -- 13:14:59.774 DEBUG [12929]: Closing database connection -- 13:14:59.774 SQL [12929]: pgsql_close() -- 13:14:59.861 INFO [12929]: COREGRADE is starting... -- 13:14:59.861 INFO [12929]: Version from config: 1.0 -- 13:14:59.861 DEBUG [12929]: Connecting to database... -- 13:14:59.861 DEBUG [12929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:14:59.861 SQL [12929]: pgsql_db_connect() -- 13:14:59.865 DEBUG [12929]: Database connection successful -- 13:14:59.865 INFO [12929]: _SERVER found -- 13:14:59.865 INFO [12929]: REMOTE_ADDR = 10.0.0.15 -- 13:14:59.865 INFO [12929]: SERVER_NAME = oameye.works.coregrade.com -- 13:14:59.865 INFO [12929]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=vlhi18djgb5thcpfikus33it07pp6s5d -- 13:14:59.865 INFO [12929]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:14:59.865 INFO [12929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:14:59.878 INFO [12929]: COREGRADE is stopping... -- 13:14:59.878 DEBUG [12929]: Closing database connection -- 13:14:59.878 SQL [12929]: pgsql_close() -- 13:15:02.457 INFO [12929]: COREGRADE is starting... -- 13:15:02.457 INFO [12929]: Version from config: 1.0 -- 13:15:02.457 DEBUG [12929]: Connecting to database... -- 13:15:02.457 DEBUG [12929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:15:02.457 SQL [12929]: pgsql_db_connect() -- 13:15:02.461 DEBUG [12929]: Database connection successful -- 13:15:02.461 INFO [12929]: _SERVER found -- 13:15:02.461 INFO [12929]: REMOTE_ADDR = 10.0.0.15 -- 13:15:02.461 INFO [12929]: SERVER_NAME = oameye.works.coregrade.com -- 13:15:02.461 INFO [12929]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=vlhi18djgb5thcpfikus33it07pp6s5d -- 13:15:02.461 INFO [12929]: QUERY_STRING = /auth/resetpass -- 13:15:02.461 INFO [12929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:15:02.497 INFO [12929]: COREGRADE is stopping... -- 13:15:02.497 DEBUG [12929]: Closing database connection -- 13:15:02.497 SQL [12929]: pgsql_close() -- 13:15:02.556 INFO [12929]: COREGRADE is starting... -- 13:15:02.556 INFO [12929]: Version from config: 1.0 -- 13:15:02.556 DEBUG [12929]: Connecting to database... -- 13:15:02.556 DEBUG [12929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:15:02.556 SQL [12929]: pgsql_db_connect() -- 13:15:02.560 DEBUG [12929]: Database connection successful -- 13:15:02.560 INFO [12929]: _SERVER found -- 13:15:02.560 INFO [12929]: REMOTE_ADDR = 10.0.0.15 -- 13:15:02.560 INFO [12929]: SERVER_NAME = oameye.works.coregrade.com -- 13:15:02.560 INFO [12929]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=vlhi18djgb5thcpfikus33it07pp6s5d -- 13:15:02.560 INFO [12929]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:15:02.560 INFO [12929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:15:02.572 INFO [12929]: COREGRADE is stopping... -- 13:15:02.573 DEBUG [12929]: Closing database connection -- 13:15:02.573 SQL [12929]: pgsql_close() -- 13:15:16.144 INFO [12993]: COREGRADE is starting... -- 13:15:16.144 INFO [12993]: Version from config: 1.0 -- 13:15:16.144 DEBUG [12993]: Connecting to database... -- 13:15:16.144 DEBUG [12993]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:15:16.144 SQL [12993]: pgsql_db_connect() -- 13:15:16.186 INFO [12993]: COREGRADE is starting... -- 13:15:16.186 INFO [12993]: Version from config: 1.0 -- 13:15:16.186 DEBUG [12993]: Connecting to database... -- 13:15:16.186 DEBUG [12993]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:15:16.186 SQL [12993]: pgsql_db_connect() -- 13:15:16.190 DEBUG [12993]: Database connection successful -- 13:15:16.190 INFO [12993]: _SERVER found -- 13:15:16.190 INFO [12993]: REMOTE_ADDR = 10.0.0.15 -- 13:15:16.190 INFO [12993]: SERVER_NAME = oameye.works.coregrade.com -- 13:15:16.190 INFO [12993]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=vlhi18djgb5thcpfikus33it07pp6s5d -- 13:15:16.190 INFO [12993]: QUERY_STRING = -- 13:15:16.190 INFO [12993]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:15:16.190 INFO [12993]: SystemStatus()09-09-********~************ -- 13:15:16.190 INFO [12993]: long coregrade_api_main(CVars in, CVars &out) -- 13:15:16.190 INFO [12993]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 13:15:16.190 INFO [12993]: account calls -- 13:15:16.190 INFO [12993]: account_calls() -- 13:15:16.190 INFO [12993]: passwordReset() -- 13:15:16.190 FLOG_MAX [12993]: Bad parameter exception: 'mode' -- 13:15:16.191 INFO [12993]: RET: result=YES I GET TO BACK END -- 13:15:16.191 INFO [12993]: RET: status=Incorrect input parameter -- 13:15:16.192 INFO [12993]: COREGRADE is stopping... -- 13:15:16.192 DEBUG [12993]: Closing database connection -- 13:15:16.192 SQL [12993]: pgsql_close() -- 13:15:16.149 DEBUG [12993]: Database connection successful -- 13:15:16.149 INFO [12993]: _SERVER found -- 13:15:16.149 INFO [12993]: REMOTE_ADDR = 10.0.0.15 -- 13:15:16.149 INFO [12993]: SERVER_NAME = oameye.works.coregrade.com -- 13:15:16.149 INFO [12993]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=vlhi18djgb5thcpfikus33it07pp6s5d -- 13:15:16.149 INFO [12993]: QUERY_STRING = /auth/resetpass -- 13:15:16.149 INFO [12993]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:15:16.192 INFO [12993]: COREGRADE is stopping... -- 13:15:16.192 DEBUG [12993]: Closing database connection -- 13:15:16.192 SQL [12993]: pgsql_close() -- 13:15:16.277 INFO [12993]: COREGRADE is starting... -- 13:15:16.277 INFO [12993]: Version from config: 1.0 -- 13:15:16.277 DEBUG [12993]: Connecting to database... -- 13:15:16.277 DEBUG [12993]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:15:16.277 SQL [12993]: pgsql_db_connect() -- 13:15:16.281 DEBUG [12993]: Database connection successful -- 13:15:16.281 INFO [12993]: _SERVER found -- 13:15:16.281 INFO [12993]: REMOTE_ADDR = 10.0.0.15 -- 13:15:16.281 INFO [12993]: SERVER_NAME = oameye.works.coregrade.com -- 13:15:16.281 INFO [12993]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=vlhi18djgb5thcpfikus33it07pp6s5d -- 13:15:16.281 INFO [12993]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:15:16.281 INFO [12993]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:15:16.294 INFO [12993]: COREGRADE is stopping... -- 13:15:16.294 DEBUG [12993]: Closing database connection -- 13:15:16.294 SQL [12993]: pgsql_close() -- 13:16:26.578 INFO [12927]: COREGRADE is starting... -- 13:16:26.579 INFO [12927]: Version from config: 1.0 -- 13:16:26.579 DEBUG [12927]: Connecting to database... -- 13:16:26.579 DEBUG [12927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:16:26.579 SQL [12927]: pgsql_db_connect() -- 13:16:26.583 DEBUG [12927]: Database connection successful -- 13:16:26.583 INFO [12927]: _SERVER found -- 13:16:26.583 INFO [12927]: REMOTE_ADDR = 10.0.0.15 -- 13:16:26.583 INFO [12927]: SERVER_NAME = oameye.works.coregrade.com -- 13:16:26.583 INFO [12927]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=nkbbnvc1v73p71d3fllbr77buuklok7g -- 13:16:26.583 INFO [12927]: QUERY_STRING = -- 13:16:26.583 INFO [12927]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 13:16:26.624 INFO [12927]: COREGRADE is stopping... -- 13:16:26.624 DEBUG [12927]: Closing database connection -- 13:16:26.624 SQL [12927]: pgsql_close() -- 13:16:26.772 INFO [12927]: COREGRADE is starting... -- 13:16:26.773 INFO [12927]: Version from config: 1.0 -- 13:16:26.773 DEBUG [12927]: Connecting to database... -- 13:16:26.773 DEBUG [12927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:16:26.773 SQL [12927]: pgsql_db_connect() -- 13:16:26.777 DEBUG [12927]: Database connection successful -- 13:16:26.777 INFO [12927]: _SERVER found -- 13:16:26.777 INFO [12927]: REMOTE_ADDR = 10.0.0.15 -- 13:16:26.777 INFO [12927]: SERVER_NAME = oameye.works.coregrade.com -- 13:16:26.777 INFO [12927]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=rpc45g2hh1i0rtattn0bq2gjmdj7326s -- 13:16:26.777 INFO [12927]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:16:26.777 INFO [12927]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 13:16:26.788 INFO [12927]: COREGRADE is stopping... -- 13:16:26.788 DEBUG [12927]: Closing database connection -- 13:16:26.788 SQL [12927]: pgsql_close() -- 13:17:02.953 INFO [12928]: COREGRADE is starting... -- 13:17:02.953 INFO [12928]: Version from config: 1.0 -- 13:17:02.953 DEBUG [12928]: Connecting to database... -- 13:17:02.953 DEBUG [12928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:17:02.953 SQL [12928]: pgsql_db_connect() -- 13:17:02.957 DEBUG [12928]: Database connection successful -- 13:17:02.957 INFO [12928]: _SERVER found -- 13:17:02.957 INFO [12928]: REMOTE_ADDR = 10.0.0.15 -- 13:17:02.957 INFO [12928]: SERVER_NAME = oameye.works.coregrade.com -- 13:17:02.957 INFO [12928]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=vlhi18djgb5thcpfikus33it07pp6s5d -- 13:17:02.957 INFO [12928]: QUERY_STRING = -- 13:17:02.957 INFO [12928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:17:02.993 INFO [12928]: COREGRADE is stopping... -- 13:17:02.993 DEBUG [12928]: Closing database connection -- 13:17:02.993 SQL [12928]: pgsql_close() -- 13:17:03.017 INFO [13035]: COREGRADE is starting... -- 13:17:03.017 INFO [13035]: Version from config: 1.0 -- 13:17:03.017 DEBUG [13035]: Connecting to database... -- 13:17:03.017 DEBUG [13035]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:17:03.017 SQL [13035]: pgsql_db_connect() -- 13:17:03.021 DEBUG [13035]: Database connection successful -- 13:17:03.021 INFO [13035]: _SERVER found -- 13:17:03.021 INFO [13035]: REMOTE_ADDR = 10.0.0.15 -- 13:17:03.021 INFO [13035]: SERVER_NAME = oameye.works.coregrade.com -- 13:17:03.021 INFO [13035]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=vlhi18djgb5thcpfikus33it07pp6s5d -- 13:17:03.021 INFO [13035]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:17:03.021 INFO [13035]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:17:03.035 INFO [13035]: COREGRADE is stopping... -- 13:17:03.036 DEBUG [13035]: Closing database connection -- 13:17:03.036 SQL [13035]: pgsql_close() -- 13:21:36.536 INFO [12930]: COREGRADE is starting... -- 13:21:36.536 INFO [12930]: Version from config: 1.0 -- 13:21:36.536 DEBUG [12930]: Connecting to database... -- 13:21:36.536 DEBUG [12930]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:21:36.536 SQL [12930]: pgsql_db_connect() -- 13:21:36.541 DEBUG [12930]: Database connection successful -- 13:21:36.541 INFO [12930]: _SERVER found -- 13:21:36.541 INFO [12930]: REMOTE_ADDR = 10.0.0.15 -- 13:21:36.541 INFO [12930]: SERVER_NAME = oameye.works.coregrade.com -- 13:21:36.541 INFO [12930]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=vlhi18djgb5thcpfikus33it07pp6s5d -- 13:21:36.541 INFO [12930]: QUERY_STRING = /auth -- 13:21:36.541 INFO [12930]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:21:36.576 INFO [12930]: COREGRADE is stopping... -- 13:21:36.576 DEBUG [12930]: Closing database connection -- 13:21:36.576 SQL [12930]: pgsql_close() -- 13:21:36.653 INFO [12931]: COREGRADE is starting... -- 13:21:36.654 INFO [12931]: Version from config: 1.0 -- 13:21:36.654 DEBUG [12931]: Connecting to database... -- 13:21:36.654 DEBUG [12931]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:21:36.654 SQL [12931]: pgsql_db_connect() -- 13:21:36.658 DEBUG [12931]: Database connection successful -- 13:21:36.658 INFO [12931]: _SERVER found -- 13:21:36.658 INFO [12931]: REMOTE_ADDR = 10.0.0.15 -- 13:21:36.658 INFO [12931]: SERVER_NAME = oameye.works.coregrade.com -- 13:21:36.658 INFO [12931]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=vlhi18djgb5thcpfikus33it07pp6s5d -- 13:21:36.658 INFO [12931]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:21:36.658 INFO [12931]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:21:36.673 INFO [12931]: COREGRADE is stopping... -- 13:21:36.673 DEBUG [12931]: Closing database connection -- 13:21:36.673 SQL [12931]: pgsql_close() -- 13:21:38.425 INFO [12930]: COREGRADE is starting... -- 13:21:38.426 INFO [12930]: Version from config: 1.0 -- 13:21:38.426 DEBUG [12930]: Connecting to database... -- 13:21:38.426 DEBUG [12930]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:21:38.426 SQL [12930]: pgsql_db_connect() -- 13:21:38.431 INFO [12931]: COREGRADE is starting... -- 13:21:38.431 INFO [12931]: Version from config: 1.0 -- 13:21:38.431 DEBUG [12931]: Connecting to database... -- 13:21:38.431 DEBUG [12931]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:21:38.431 SQL [12931]: pgsql_db_connect() -- 13:21:38.435 DEBUG [12931]: Database connection successful -- 13:21:38.435 INFO [12931]: _SERVER found -- 13:21:38.435 INFO [12931]: REMOTE_ADDR = 10.0.0.15 -- 13:21:38.435 INFO [12931]: SERVER_NAME = oameye.works.coregrade.com -- 13:21:38.435 INFO [12931]: HTTP_COOKIE = ci_session=ljh4kuvn42uo5kehf89feip6vhmmpnec; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 13:21:38.435 INFO [12931]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:21:38.435 INFO [12931]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:21:38.448 INFO [12931]: COREGRADE is stopping... -- 13:21:38.448 DEBUG [12931]: Closing database connection -- 13:21:38.448 SQL [12931]: pgsql_close() -- 13:21:38.430 DEBUG [12930]: Database connection successful -- 13:21:38.430 INFO [12930]: _SERVER found -- 13:21:38.430 INFO [12930]: REMOTE_ADDR = 10.0.0.15 -- 13:21:38.430 INFO [12930]: SERVER_NAME = oameye.works.coregrade.com -- 13:21:38.430 INFO [12930]: HTTP_COOKIE = ci_session=ljh4kuvn42uo5kehf89feip6vhmmpnec; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 13:21:38.430 INFO [12930]: QUERY_STRING = /auth/resetpass -- 13:21:38.430 INFO [12930]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:21:38.462 INFO [12930]: COREGRADE is stopping... -- 13:21:38.462 DEBUG [12930]: Closing database connection -- 13:21:38.462 SQL [12930]: pgsql_close() -- 13:21:45.379 INFO [12929]: COREGRADE is starting... -- 13:21:45.379 INFO [12929]: Version from config: 1.0 -- 13:21:45.379 DEBUG [12929]: Connecting to database... -- 13:21:45.379 DEBUG [12929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:21:45.379 SQL [12929]: pgsql_db_connect() -- 13:21:45.420 INFO [12929]: COREGRADE is starting... -- 13:21:45.420 INFO [12929]: Version from config: 1.0 -- 13:21:45.420 DEBUG [12929]: Connecting to database... -- 13:21:45.420 DEBUG [12929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:21:45.420 SQL [12929]: pgsql_db_connect() -- 13:21:45.424 DEBUG [12929]: Database connection successful -- 13:21:45.424 INFO [12929]: _SERVER found -- 13:21:45.424 INFO [12929]: REMOTE_ADDR = 10.0.0.15 -- 13:21:45.424 INFO [12929]: SERVER_NAME = oameye.works.coregrade.com -- 13:21:45.424 INFO [12929]: HTTP_COOKIE = ci_session=ljh4kuvn42uo5kehf89feip6vhmmpnec; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 13:21:45.424 INFO [12929]: QUERY_STRING = -- 13:21:45.424 INFO [12929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:21:45.424 INFO [12929]: SystemStatus()09-09-********~************ -- 13:21:45.424 INFO [12929]: long coregrade_api_main(CVars in, CVars &out) -- 13:21:45.424 INFO [12929]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 13:21:45.424 INFO [12929]: account calls -- 13:21:45.424 INFO [12929]: account_calls() -- 13:21:45.424 INFO [12929]: passwordReset() -- 13:21:45.424 INFO [12929]: startPassReset() -- 13:21:45.424 FLOG_MAX [12929]: REQ_STRING(username) -- 13:21:45.425 FLOG_MAX [12929]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:21:45.425 SQL [12929]: pgsql_query() -- 13:21:45.425 SQL [12929]: About to run query: -- 13:21:45.425 SQL [12929]: SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('ddhdhdshdjdj') -- 13:21:45.427 SQL [12929]: Found rows: 0 -- 13:21:45.427 SQL [12929]: Found rows: 0 -- 13:21:45.427 FLOG_MAX [12929]: insert_db_record() -- 13:21:45.427 SQL [12929]: pgsql_exec() -- 13:21:45.427 SQL [12929]: About to run query: -- 13:21:45.428 SQL [12929]: INSERT INTO resetpassword (loc,status,username) VALUES ('10.0.0.15','3','ddhdhdshdjdj') -- 13:21:45.428 SQL [12929]: Affected rows: ERROR -- 13:21:45.428 FLOG_MAX [12929]: SELECT currval('resetpassword_id_seq') -- 13:21:45.428 SQL [12929]: pgsql_query() -- 13:21:45.428 SQL [12929]: About to run query: -- 13:21:45.428 SQL [12929]: SELECT currval('resetpassword_id_seq') -- 13:21:45.428 SQL [12929]: Found rows: ERROR -- 13:21:45.428 FLOG_MAX [12929]: SQL error -- 13:21:45.428 INFO [12929]: RET: member_id= -- 13:21:45.428 INFO [12929]: RET: reset_id=-1 -- 13:21:45.428 INFO [12929]: RET: reset_seed==REMOVED -- 13:21:45.428 INFO [12929]: RET: result=YES I GET TO BACK END -- 13:21:45.428 INFO [12929]: RET: status_advice=Check username or Contact support -- 13:21:45.428 INFO [12929]: RET: status_message=Invalid Username or disabled account -- 13:21:45.430 INFO [12929]: COREGRADE is stopping... -- 13:21:45.430 DEBUG [12929]: Closing database connection -- 13:21:45.430 SQL [12929]: pgsql_close() -- 13:21:45.383 DEBUG [12929]: Database connection successful -- 13:21:45.383 INFO [12929]: _SERVER found -- 13:21:45.383 INFO [12929]: REMOTE_ADDR = 10.0.0.15 -- 13:21:45.383 INFO [12929]: SERVER_NAME = oameye.works.coregrade.com -- 13:21:45.383 INFO [12929]: HTTP_COOKIE = ci_session=ljh4kuvn42uo5kehf89feip6vhmmpnec; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 13:21:45.383 INFO [12929]: QUERY_STRING = /auth/resetpass -- 13:21:45.383 INFO [12929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:21:45.430 INFO [12929]: COREGRADE is stopping... -- 13:21:45.430 DEBUG [12929]: Closing database connection -- 13:21:45.430 SQL [12929]: pgsql_close() -- 13:21:45.500 INFO [12929]: COREGRADE is starting... -- 13:21:45.500 INFO [12929]: Version from config: 1.0 -- 13:21:45.500 DEBUG [12929]: Connecting to database... -- 13:21:45.500 DEBUG [12929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:21:45.500 SQL [12929]: pgsql_db_connect() -- 13:21:45.504 DEBUG [12929]: Database connection successful -- 13:21:45.504 INFO [12929]: _SERVER found -- 13:21:45.504 INFO [12929]: REMOTE_ADDR = 10.0.0.15 -- 13:21:45.504 INFO [12929]: SERVER_NAME = oameye.works.coregrade.com -- 13:21:45.504 INFO [12929]: HTTP_COOKIE = ci_session=ljh4kuvn42uo5kehf89feip6vhmmpnec; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 13:21:45.504 INFO [12929]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:21:45.504 INFO [12929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:21:45.516 INFO [12929]: COREGRADE is stopping... -- 13:21:45.516 DEBUG [12929]: Closing database connection -- 13:21:45.516 SQL [12929]: pgsql_close() -- 13:27:27.920 INFO [12993]: COREGRADE is starting... -- 13:27:27.921 INFO [12993]: Version from config: 1.0 -- 13:27:27.921 DEBUG [12993]: Connecting to database... -- 13:27:27.921 DEBUG [12993]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:27:27.921 SQL [12993]: pgsql_db_connect() -- 13:27:27.962 INFO [12993]: COREGRADE is starting... -- 13:27:27.962 INFO [12993]: Version from config: 1.0 -- 13:27:27.962 DEBUG [12993]: Connecting to database... -- 13:27:27.962 DEBUG [12993]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:27:27.962 SQL [12993]: pgsql_db_connect() -- 13:27:27.966 DEBUG [12993]: Database connection successful -- 13:27:27.966 INFO [12993]: _SERVER found -- 13:27:27.966 INFO [12993]: REMOTE_ADDR = 10.0.0.15 -- 13:27:27.966 INFO [12993]: SERVER_NAME = oameye.works.coregrade.com -- 13:27:27.966 INFO [12993]: HTTP_COOKIE = ci_session=ljh4kuvn42uo5kehf89feip6vhmmpnec; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 13:27:27.966 INFO [12993]: QUERY_STRING = -- 13:27:27.966 INFO [12993]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:27:27.966 INFO [12993]: SystemStatus()09-09-********~************ -- 13:27:27.966 INFO [12993]: long coregrade_api_main(CVars in, CVars &out) -- 13:27:27.966 INFO [12993]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 13:27:27.966 INFO [12993]: account calls -- 13:27:27.966 INFO [12993]: account_calls() -- 13:27:27.966 INFO [12993]: passwordReset() -- 13:27:27.966 INFO [12993]: startPassReset() -- 13:27:27.966 FLOG_MAX [12993]: REQ_STRING(username) -- 13:27:27.966 FLOG_MAX [12993]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:27:27.966 SQL [12993]: pgsql_query() -- 13:27:27.966 SQL [12993]: About to run query: -- 13:27:27.967 SQL [12993]: SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('eteyeyeueueu') -- 13:27:27.969 SQL [12993]: Found rows: 0 -- 13:27:27.969 SQL [12993]: Found rows: 0 -- 13:27:27.969 FLOG_MAX [12993]: insert_db_record() -- 13:27:27.969 SQL [12993]: pgsql_exec() -- 13:27:27.969 SQL [12993]: About to run query: -- 13:27:27.969 SQL [12993]: INSERT INTO resetpassword (loc,status,username) VALUES ('10.0.0.15','3','eteyeyeueueu') -- 13:27:27.970 SQL [12993]: Affected rows: ERROR -- 13:27:27.970 FLOG_MAX [12993]: SELECT currval('resetpassword_id_seq') -- 13:27:27.970 SQL [12993]: pgsql_query() -- 13:27:27.970 SQL [12993]: About to run query: -- 13:27:27.970 SQL [12993]: SELECT currval('resetpassword_id_seq') -- 13:27:27.970 SQL [12993]: Found rows: ERROR -- 13:27:27.970 FLOG_MAX [12993]: SQL error -- 13:27:27.970 INFO [12993]: RET: member_id= -- 13:27:27.970 INFO [12993]: RET: reset_id=-1 -- 13:27:27.970 INFO [12993]: RET: reset_seed==REMOVED -- 13:27:27.970 INFO [12993]: RET: result=YES I GET TO BACK END -- 13:27:27.970 INFO [12993]: RET: status_advice=Check username or Contact support -- 13:27:27.970 INFO [12993]: RET: status_message=Invalid Username or disabled account -- 13:27:27.972 INFO [12993]: COREGRADE is stopping... -- 13:27:27.972 DEBUG [12993]: Closing database connection -- 13:27:27.972 SQL [12993]: pgsql_close() -- 13:27:27.925 DEBUG [12993]: Database connection successful -- 13:27:27.925 INFO [12993]: _SERVER found -- 13:27:27.925 INFO [12993]: REMOTE_ADDR = 10.0.0.15 -- 13:27:27.925 INFO [12993]: SERVER_NAME = oameye.works.coregrade.com -- 13:27:27.925 INFO [12993]: HTTP_COOKIE = ci_session=ljh4kuvn42uo5kehf89feip6vhmmpnec; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 13:27:27.925 INFO [12993]: QUERY_STRING = /auth/resetpass -- 13:27:27.925 INFO [12993]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:27:27.972 INFO [12993]: COREGRADE is stopping... -- 13:27:27.972 DEBUG [12993]: Closing database connection -- 13:27:27.972 SQL [12993]: pgsql_close() -- 13:27:28.054 INFO [12993]: COREGRADE is starting... -- 13:27:28.054 INFO [12993]: Version from config: 1.0 -- 13:27:28.054 DEBUG [12993]: Connecting to database... -- 13:27:28.054 DEBUG [12993]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:27:28.054 SQL [12993]: pgsql_db_connect() -- 13:27:28.058 DEBUG [12993]: Database connection successful -- 13:27:28.058 INFO [12993]: _SERVER found -- 13:27:28.058 INFO [12993]: REMOTE_ADDR = 10.0.0.15 -- 13:27:28.058 INFO [12993]: SERVER_NAME = oameye.works.coregrade.com -- 13:27:28.058 INFO [12993]: HTTP_COOKIE = ci_session=c017g3ftttfevs6lqsgd62k7sr5fqdvq; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 13:27:28.058 INFO [12993]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:27:28.058 INFO [12993]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:27:28.069 INFO [12993]: COREGRADE is stopping... -- 13:27:28.069 DEBUG [12993]: Closing database connection -- 13:27:28.069 SQL [12993]: pgsql_close() -- 13:29:11.345 INFO [12927]: COREGRADE is starting... -- 13:29:11.345 INFO [12927]: Version from config: 1.0 -- 13:29:11.345 DEBUG [12927]: Connecting to database... -- 13:29:11.345 DEBUG [12927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:11.345 SQL [12927]: pgsql_db_connect() -- 13:29:11.349 DEBUG [12927]: Database connection successful -- 13:29:11.349 INFO [12927]: _SERVER found -- 13:29:11.349 INFO [12927]: REMOTE_ADDR = 10.0.0.15 -- 13:29:11.349 INFO [12927]: SERVER_NAME = oameye.works.coregrade.com -- 13:29:11.349 INFO [12927]: HTTP_COOKIE = ci_session=c017g3ftttfevs6lqsgd62k7sr5fqdvq; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 13:29:11.349 INFO [12927]: QUERY_STRING = /auth -- 13:29:11.349 INFO [12927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:29:11.382 INFO [12927]: COREGRADE is stopping... -- 13:29:11.382 DEBUG [12927]: Closing database connection -- 13:29:11.382 SQL [12927]: pgsql_close() -- 13:29:11.410 INFO [12928]: COREGRADE is starting... -- 13:29:11.411 INFO [12928]: Version from config: 1.0 -- 13:29:11.411 DEBUG [12928]: Connecting to database... -- 13:29:11.411 DEBUG [12928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:11.411 SQL [12928]: pgsql_db_connect() -- 13:29:11.415 DEBUG [12928]: Database connection successful -- 13:29:11.415 INFO [12928]: _SERVER found -- 13:29:11.415 INFO [12928]: REMOTE_ADDR = 10.0.0.15 -- 13:29:11.415 INFO [12928]: SERVER_NAME = oameye.works.coregrade.com -- 13:29:11.415 INFO [12928]: HTTP_COOKIE = ci_session=c017g3ftttfevs6lqsgd62k7sr5fqdvq; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 13:29:11.415 INFO [12928]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:29:11.415 INFO [12928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:29:11.428 INFO [12928]: COREGRADE is stopping... -- 13:29:11.428 DEBUG [12928]: Closing database connection -- 13:29:11.428 SQL [12928]: pgsql_close() -- 13:29:12.843 INFO [12927]: COREGRADE is starting... -- 13:29:12.844 INFO [12927]: Version from config: 1.0 -- 13:29:12.844 DEBUG [12927]: Connecting to database... -- 13:29:12.844 DEBUG [12927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:12.844 SQL [12927]: pgsql_db_connect() -- 13:29:12.848 INFO [12928]: COREGRADE is starting... -- 13:29:12.848 INFO [12928]: Version from config: 1.0 -- 13:29:12.848 DEBUG [12928]: Connecting to database... -- 13:29:12.848 DEBUG [12928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:12.848 SQL [12928]: pgsql_db_connect() -- 13:29:12.852 DEBUG [12928]: Database connection successful -- 13:29:12.852 INFO [12928]: _SERVER found -- 13:29:12.852 INFO [12928]: REMOTE_ADDR = 10.0.0.15 -- 13:29:12.852 INFO [12928]: SERVER_NAME = oameye.works.coregrade.com -- 13:29:12.852 INFO [12928]: HTTP_COOKIE = ci_session=c017g3ftttfevs6lqsgd62k7sr5fqdvq; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 13:29:12.852 INFO [12928]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:29:12.852 INFO [12928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:29:12.864 INFO [12928]: COREGRADE is stopping... -- 13:29:12.864 DEBUG [12928]: Closing database connection -- 13:29:12.864 SQL [12928]: pgsql_close() -- 13:29:12.848 DEBUG [12927]: Database connection successful -- 13:29:12.848 INFO [12927]: _SERVER found -- 13:29:12.848 INFO [12927]: REMOTE_ADDR = 10.0.0.15 -- 13:29:12.848 INFO [12927]: SERVER_NAME = oameye.works.coregrade.com -- 13:29:12.848 INFO [12927]: HTTP_COOKIE = ci_session=c017g3ftttfevs6lqsgd62k7sr5fqdvq; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 13:29:12.848 INFO [12927]: QUERY_STRING = /auth/resetpass -- 13:29:12.848 INFO [12927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:29:12.879 INFO [12927]: COREGRADE is stopping... -- 13:29:12.879 DEBUG [12927]: Closing database connection -- 13:29:12.879 SQL [12927]: pgsql_close() -- 13:29:15.638 INFO [12927]: COREGRADE is starting... -- 13:29:15.638 INFO [12927]: Version from config: 1.0 -- 13:29:15.638 DEBUG [12927]: Connecting to database... -- 13:29:15.638 DEBUG [12927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:15.638 SQL [12927]: pgsql_db_connect() -- 13:29:15.672 INFO [12927]: COREGRADE is starting... -- 13:29:15.673 INFO [12927]: Version from config: 1.0 -- 13:29:15.673 DEBUG [12927]: Connecting to database... -- 13:29:15.673 DEBUG [12927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:15.673 SQL [12927]: pgsql_db_connect() -- 13:29:15.677 DEBUG [12927]: Database connection successful -- 13:29:15.677 INFO [12927]: _SERVER found -- 13:29:15.677 INFO [12927]: REMOTE_ADDR = 10.0.0.15 -- 13:29:15.677 INFO [12927]: SERVER_NAME = oameye.works.coregrade.com -- 13:29:15.677 INFO [12927]: HTTP_COOKIE = ci_session=c017g3ftttfevs6lqsgd62k7sr5fqdvq; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 13:29:15.677 INFO [12927]: QUERY_STRING = -- 13:29:15.677 INFO [12927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:29:15.677 INFO [12927]: SystemStatus()09-09-********~************ -- 13:29:15.677 INFO [12927]: long coregrade_api_main(CVars in, CVars &out) -- 13:29:15.677 INFO [12927]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 13:29:15.677 INFO [12927]: account calls -- 13:29:15.677 INFO [12927]: account_calls() -- 13:29:15.677 INFO [12927]: passwordReset() -- 13:29:15.677 INFO [12927]: startPassReset() -- 13:29:15.677 FLOG_MAX [12927]: REQ_STRING(username) -- 13:29:15.677 FLOG_MAX [12927]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:29:15.677 SQL [12927]: pgsql_query() -- 13:29:15.677 SQL [12927]: About to run query: -- 13:29:15.677 SQL [12927]: SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('dgddjd') -- 13:29:15.680 SQL [12927]: Found rows: 0 -- 13:29:15.680 SQL [12927]: Found rows: 0 -- 13:29:15.680 FLOG_MAX [12927]: insert_db_record() -- 13:29:15.680 SQL [12927]: pgsql_exec() -- 13:29:15.680 SQL [12927]: About to run query: -- 13:29:15.680 SQL [12927]: INSERT INTO resetpassword (loc,status,username) VALUES ('10.0.0.15','3','dgddjd') -- 13:29:15.680 SQL [12927]: Affected rows: ERROR -- 13:29:15.680 FLOG_MAX [12927]: SELECT currval('resetpassword_id_seq') -- 13:29:15.680 SQL [12927]: pgsql_query() -- 13:29:15.680 SQL [12927]: About to run query: -- 13:29:15.680 SQL [12927]: SELECT currval('resetpassword_id_seq') -- 13:29:15.681 SQL [12927]: Found rows: ERROR -- 13:29:15.681 FLOG_MAX [12927]: SQL error -- 13:29:15.681 INFO [12927]: RET: member_id= -- 13:29:15.681 INFO [12927]: RET: reset_id=-1 -- 13:29:15.681 INFO [12927]: RET: reset_seed==REMOVED -- 13:29:15.681 INFO [12927]: RET: result=YES I GET TO BACK END -- 13:29:15.681 INFO [12927]: RET: status_advice=Check username or Contact support -- 13:29:15.681 INFO [12927]: RET: status_message=Invalid Username or disabled account -- 13:29:15.681 INFO [12927]: COREGRADE is stopping... -- 13:29:15.681 DEBUG [12927]: Closing database connection -- 13:29:15.681 SQL [12927]: pgsql_close() -- 13:29:15.642 DEBUG [12927]: Database connection successful -- 13:29:15.642 INFO [12927]: _SERVER found -- 13:29:15.642 INFO [12927]: REMOTE_ADDR = 10.0.0.15 -- 13:29:15.642 INFO [12927]: SERVER_NAME = oameye.works.coregrade.com -- 13:29:15.642 INFO [12927]: HTTP_COOKIE = ci_session=c017g3ftttfevs6lqsgd62k7sr5fqdvq; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 13:29:15.642 INFO [12927]: QUERY_STRING = /auth/resetpass -- 13:29:15.642 INFO [12927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:29:15.682 INFO [12927]: COREGRADE is stopping... -- 13:29:15.682 DEBUG [12927]: Closing database connection -- 13:29:15.682 SQL [12927]: pgsql_close() -- 13:29:15.745 INFO [12927]: COREGRADE is starting... -- 13:29:15.745 INFO [12927]: Version from config: 1.0 -- 13:29:15.745 DEBUG [12927]: Connecting to database... -- 13:29:15.745 DEBUG [12927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:15.745 SQL [12927]: pgsql_db_connect() -- 13:29:15.749 DEBUG [12927]: Database connection successful -- 13:29:15.749 INFO [12927]: _SERVER found -- 13:29:15.749 INFO [12927]: REMOTE_ADDR = 10.0.0.15 -- 13:29:15.749 INFO [12927]: SERVER_NAME = oameye.works.coregrade.com -- 13:29:15.749 INFO [12927]: HTTP_COOKIE = ci_session=c017g3ftttfevs6lqsgd62k7sr5fqdvq; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 13:29:15.749 INFO [12927]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:29:15.749 INFO [12927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:29:15.760 INFO [12927]: COREGRADE is stopping... -- 13:29:15.760 DEBUG [12927]: Closing database connection -- 13:29:15.760 SQL [12927]: pgsql_close() -- 13:29:27.777 INFO [13035]: COREGRADE is starting... -- 13:29:27.777 INFO [13035]: Version from config: 1.0 -- 13:29:27.777 DEBUG [13035]: Connecting to database... -- 13:29:27.777 DEBUG [13035]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:27.777 SQL [13035]: pgsql_db_connect() -- 13:29:27.788 INFO [12930]: COREGRADE is starting... -- 13:29:27.788 INFO [12930]: Version from config: 1.0 -- 13:29:27.788 DEBUG [12930]: Connecting to database... -- 13:29:27.788 DEBUG [12930]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:27.788 SQL [12930]: pgsql_db_connect() -- 13:29:27.792 DEBUG [12930]: Database connection successful -- 13:29:27.792 INFO [12930]: _SERVER found -- 13:29:27.792 INFO [12930]: REMOTE_ADDR = 10.0.0.15 -- 13:29:27.792 INFO [12930]: SERVER_NAME = oameye.works.coregrade.com -- 13:29:27.792 INFO [12930]: HTTP_COOKIE = ci_session=c017g3ftttfevs6lqsgd62k7sr5fqdvq; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 13:29:27.792 INFO [12930]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:29:27.792 INFO [12930]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:29:27.804 INFO [12930]: COREGRADE is stopping... -- 13:29:27.804 DEBUG [12930]: Closing database connection -- 13:29:27.804 SQL [12930]: pgsql_close() -- 13:29:27.782 DEBUG [13035]: Database connection successful -- 13:29:27.782 INFO [13035]: _SERVER found -- 13:29:27.782 INFO [13035]: REMOTE_ADDR = 10.0.0.15 -- 13:29:27.782 INFO [13035]: SERVER_NAME = oameye.works.coregrade.com -- 13:29:27.782 INFO [13035]: HTTP_COOKIE = ci_session=c017g3ftttfevs6lqsgd62k7sr5fqdvq; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 13:29:27.782 INFO [13035]: QUERY_STRING = -- 13:29:27.782 INFO [13035]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:29:27.825 INFO [13035]: COREGRADE is stopping... -- 13:29:27.825 DEBUG [13035]: Closing database connection -- 13:29:27.825 SQL [13035]: pgsql_close() -- 13:29:29.740 INFO [13035]: COREGRADE is starting... -- 13:29:29.741 INFO [13035]: Version from config: 1.0 -- 13:29:29.741 DEBUG [13035]: Connecting to database... -- 13:29:29.741 DEBUG [13035]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:29.741 SQL [13035]: pgsql_db_connect() -- 13:29:29.745 INFO [12930]: COREGRADE is starting... -- 13:29:29.745 INFO [12930]: Version from config: 1.0 -- 13:29:29.745 DEBUG [12930]: Connecting to database... -- 13:29:29.745 DEBUG [12930]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:29.745 SQL [12930]: pgsql_db_connect() -- 13:29:29.745 DEBUG [13035]: Database connection successful -- 13:29:29.745 INFO [13035]: _SERVER found -- 13:29:29.745 INFO [13035]: REMOTE_ADDR = 10.0.0.15 -- 13:29:29.745 INFO [13035]: SERVER_NAME = oameye.works.coregrade.com -- 13:29:29.745 INFO [13035]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=c017g3ftttfevs6lqsgd62k7sr5fqdvq -- 13:29:29.745 INFO [13035]: QUERY_STRING = /welcome/viewLogin -- 13:29:29.745 INFO [13035]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:29:29.775 INFO [13035]: COREGRADE is stopping... -- 13:29:29.775 DEBUG [13035]: Closing database connection -- 13:29:29.775 SQL [13035]: pgsql_close() -- 13:29:29.749 DEBUG [12930]: Database connection successful -- 13:29:29.749 INFO [12930]: _SERVER found -- 13:29:29.749 INFO [12930]: REMOTE_ADDR = 10.0.0.15 -- 13:29:29.749 INFO [12930]: SERVER_NAME = oameye.works.coregrade.com -- 13:29:29.749 INFO [12930]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=c017g3ftttfevs6lqsgd62k7sr5fqdvq -- 13:29:29.749 INFO [12930]: QUERY_STRING = /auth -- 13:29:29.749 INFO [12930]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:29:29.780 INFO [12930]: COREGRADE is stopping... -- 13:29:29.781 DEBUG [12930]: Closing database connection -- 13:29:29.781 SQL [12930]: pgsql_close() -- 13:29:29.810 INFO [12930]: COREGRADE is starting... -- 13:29:29.810 INFO [12930]: Version from config: 1.0 -- 13:29:29.810 DEBUG [12930]: Connecting to database... -- 13:29:29.810 DEBUG [12930]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:29.810 SQL [12930]: pgsql_db_connect() -- 13:29:29.814 DEBUG [12930]: Database connection successful -- 13:29:29.814 INFO [12930]: _SERVER found -- 13:29:29.814 INFO [12930]: REMOTE_ADDR = 10.0.0.15 -- 13:29:29.814 INFO [12930]: SERVER_NAME = oameye.works.coregrade.com -- 13:29:29.814 INFO [12930]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=c017g3ftttfevs6lqsgd62k7sr5fqdvq -- 13:29:29.814 INFO [12930]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:29:29.814 INFO [12930]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:29:29.825 INFO [12930]: COREGRADE is stopping... -- 13:29:29.825 DEBUG [12930]: Closing database connection -- 13:29:29.825 SQL [12930]: pgsql_close() -- 13:29:31.231 INFO [12930]: COREGRADE is starting... -- 13:29:31.232 INFO [12930]: Version from config: 1.0 -- 13:29:31.232 DEBUG [12930]: Connecting to database... -- 13:29:31.232 DEBUG [12930]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:31.232 SQL [12930]: pgsql_db_connect() -- 13:29:31.236 INFO [13035]: COREGRADE is starting... -- 13:29:31.237 INFO [13035]: Version from config: 1.0 -- 13:29:31.237 DEBUG [13035]: Connecting to database... -- 13:29:31.237 DEBUG [13035]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:31.237 SQL [13035]: pgsql_db_connect() -- 13:29:31.240 DEBUG [13035]: Database connection successful -- 13:29:31.240 INFO [13035]: _SERVER found -- 13:29:31.240 INFO [13035]: REMOTE_ADDR = 10.0.0.15 -- 13:29:31.240 INFO [13035]: SERVER_NAME = oameye.works.coregrade.com -- 13:29:31.240 INFO [13035]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=c017g3ftttfevs6lqsgd62k7sr5fqdvq -- 13:29:31.240 INFO [13035]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:29:31.240 INFO [13035]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:29:31.251 INFO [13035]: COREGRADE is stopping... -- 13:29:31.252 DEBUG [13035]: Closing database connection -- 13:29:31.252 SQL [13035]: pgsql_close() -- 13:29:31.236 DEBUG [12930]: Database connection successful -- 13:29:31.236 INFO [12930]: _SERVER found -- 13:29:31.236 INFO [12930]: REMOTE_ADDR = 10.0.0.15 -- 13:29:31.236 INFO [12930]: SERVER_NAME = oameye.works.coregrade.com -- 13:29:31.236 INFO [12930]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=c017g3ftttfevs6lqsgd62k7sr5fqdvq -- 13:29:31.236 INFO [12930]: QUERY_STRING = /auth/resetpass -- 13:29:31.236 INFO [12930]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:29:31.267 INFO [12930]: COREGRADE is stopping... -- 13:29:31.267 DEBUG [12930]: Closing database connection -- 13:29:31.267 SQL [12930]: pgsql_close() -- 13:29:38.449 INFO [12931]: COREGRADE is starting... -- 13:29:38.449 INFO [12931]: Version from config: 1.0 -- 13:29:38.449 DEBUG [12931]: Connecting to database... -- 13:29:38.449 DEBUG [12931]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:38.449 SQL [12931]: pgsql_db_connect() -- 13:29:38.453 DEBUG [12931]: Database connection successful -- 13:29:38.453 INFO [12931]: _SERVER found -- 13:29:38.453 INFO [12931]: REMOTE_ADDR = 10.0.0.15 -- 13:29:38.453 INFO [12931]: SERVER_NAME = oameye.works.coregrade.com -- 13:29:38.453 INFO [12931]: QUERY_STRING = /solr/admin/info/system -- 13:29:38.453 INFO [12931]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 13:29:38.466 INFO [12931]: COREGRADE is stopping... -- 13:29:38.467 DEBUG [12931]: Closing database connection -- 13:29:38.467 SQL [12931]: pgsql_close() -- 13:30:28.127 INFO [12929]: COREGRADE is starting... -- 13:30:28.127 INFO [12929]: Version from config: 1.0 -- 13:30:28.127 DEBUG [12929]: Connecting to database... -- 13:30:28.127 DEBUG [12929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:30:28.127 SQL [12929]: pgsql_db_connect() -- 13:30:28.131 DEBUG [12929]: Database connection successful -- 13:30:28.131 INFO [12929]: _SERVER found -- 13:30:28.131 INFO [12929]: REMOTE_ADDR = 10.0.0.15 -- 13:30:28.131 INFO [12929]: SERVER_NAME = oameye.works.coregrade.com -- 13:30:28.131 INFO [12929]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=c017g3ftttfevs6lqsgd62k7sr5fqdvq -- 13:30:28.131 INFO [12929]: QUERY_STRING = -- 13:30:28.131 INFO [12929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:30:28.168 INFO [12929]: COREGRADE is stopping... -- 13:30:28.168 DEBUG [12929]: Closing database connection -- 13:30:28.168 SQL [12929]: pgsql_close() -- 13:30:28.186 INFO [12993]: COREGRADE is starting... -- 13:30:28.186 INFO [12993]: Version from config: 1.0 -- 13:30:28.186 DEBUG [12993]: Connecting to database... -- 13:30:28.186 DEBUG [12993]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:30:28.186 SQL [12993]: pgsql_db_connect() -- 13:30:28.190 DEBUG [12993]: Database connection successful -- 13:30:28.190 INFO [12993]: _SERVER found -- 13:30:28.190 INFO [12993]: REMOTE_ADDR = 10.0.0.15 -- 13:30:28.190 INFO [12993]: SERVER_NAME = oameye.works.coregrade.com -- 13:30:28.190 INFO [12993]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=c017g3ftttfevs6lqsgd62k7sr5fqdvq -- 13:30:28.190 INFO [12993]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:30:28.190 INFO [12993]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:30:28.202 INFO [12993]: COREGRADE is stopping... -- 13:30:28.202 DEBUG [12993]: Closing database connection -- 13:30:28.202 SQL [12993]: pgsql_close() -- 13:30:29.965 INFO [12929]: COREGRADE is starting... -- 13:30:29.965 INFO [12929]: Version from config: 1.0 -- 13:30:29.965 DEBUG [12929]: Connecting to database... -- 13:30:29.965 DEBUG [12929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:30:29.965 SQL [12929]: pgsql_db_connect() -- 13:30:29.974 INFO [12993]: COREGRADE is starting... -- 13:30:29.974 INFO [12993]: Version from config: 1.0 -- 13:30:29.974 DEBUG [12993]: Connecting to database... -- 13:30:29.974 DEBUG [12993]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:30:29.974 SQL [12993]: pgsql_db_connect() -- 13:30:29.969 DEBUG [12929]: Database connection successful -- 13:30:29.969 INFO [12929]: _SERVER found -- 13:30:29.969 INFO [12929]: REMOTE_ADDR = 10.0.0.15 -- 13:30:29.969 INFO [12929]: SERVER_NAME = oameye.works.coregrade.com -- 13:30:29.969 INFO [12929]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=c017g3ftttfevs6lqsgd62k7sr5fqdvq -- 13:30:29.969 INFO [12929]: QUERY_STRING = /welcome/viewLogin -- 13:30:29.969 INFO [12929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:30:29.000 INFO [12929]: COREGRADE is stopping... -- 13:30:29.000 DEBUG [12929]: Closing database connection -- 13:30:29.000 SQL [12929]: pgsql_close() -- 13:30:29.978 DEBUG [12993]: Database connection successful -- 13:30:29.978 INFO [12993]: _SERVER found -- 13:30:29.978 INFO [12993]: REMOTE_ADDR = 10.0.0.15 -- 13:30:29.978 INFO [12993]: SERVER_NAME = oameye.works.coregrade.com -- 13:30:29.978 INFO [12993]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=c017g3ftttfevs6lqsgd62k7sr5fqdvq -- 13:30:29.978 INFO [12993]: QUERY_STRING = /auth -- 13:30:29.978 INFO [12993]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:30:30.010 INFO [12993]: COREGRADE is stopping... -- 13:30:30.010 DEBUG [12993]: Closing database connection -- 13:30:30.010 SQL [12993]: pgsql_close() -- 13:30:30.042 INFO [12993]: COREGRADE is starting... -- 13:30:30.042 INFO [12993]: Version from config: 1.0 -- 13:30:30.042 DEBUG [12993]: Connecting to database... -- 13:30:30.042 DEBUG [12993]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:30:30.042 SQL [12993]: pgsql_db_connect() -- 13:30:30.046 DEBUG [12993]: Database connection successful -- 13:30:30.046 INFO [12993]: _SERVER found -- 13:30:30.046 INFO [12993]: REMOTE_ADDR = 10.0.0.15 -- 13:30:30.046 INFO [12993]: SERVER_NAME = oameye.works.coregrade.com -- 13:30:30.046 INFO [12993]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=c017g3ftttfevs6lqsgd62k7sr5fqdvq -- 13:30:30.046 INFO [12993]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:30:30.046 INFO [12993]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:30:30.058 INFO [12993]: COREGRADE is stopping... -- 13:30:30.058 DEBUG [12993]: Closing database connection -- 13:30:30.058 SQL [12993]: pgsql_close() -- 13:30:31.716 INFO [12993]: COREGRADE is starting... -- 13:30:31.716 INFO [12993]: Version from config: 1.0 -- 13:30:31.716 DEBUG [12993]: Connecting to database... -- 13:30:31.716 DEBUG [12993]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:30:31.716 SQL [12993]: pgsql_db_connect() -- 13:30:31.723 INFO [12928]: COREGRADE is starting... -- 13:30:31.724 INFO [12928]: Version from config: 1.0 -- 13:30:31.724 DEBUG [12928]: Connecting to database... -- 13:30:31.724 DEBUG [12928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:30:31.724 SQL [12928]: pgsql_db_connect() -- 13:30:31.728 DEBUG [12928]: Database connection successful -- 13:30:31.728 INFO [12928]: _SERVER found -- 13:30:31.728 INFO [12928]: REMOTE_ADDR = 10.0.0.15 -- 13:30:31.728 INFO [12928]: SERVER_NAME = oameye.works.coregrade.com -- 13:30:31.728 INFO [12928]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=c017g3ftttfevs6lqsgd62k7sr5fqdvq -- 13:30:31.728 INFO [12928]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:30:31.728 INFO [12928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:30:31.739 INFO [12928]: COREGRADE is stopping... -- 13:30:31.739 DEBUG [12928]: Closing database connection -- 13:30:31.739 SQL [12928]: pgsql_close() -- 13:30:31.720 DEBUG [12993]: Database connection successful -- 13:30:31.720 INFO [12993]: _SERVER found -- 13:30:31.720 INFO [12993]: REMOTE_ADDR = 10.0.0.15 -- 13:30:31.720 INFO [12993]: SERVER_NAME = oameye.works.coregrade.com -- 13:30:31.720 INFO [12993]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=c017g3ftttfevs6lqsgd62k7sr5fqdvq -- 13:30:31.720 INFO [12993]: QUERY_STRING = /auth/resetpass -- 13:30:31.720 INFO [12993]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:30:31.755 INFO [12993]: COREGRADE is stopping... -- 13:30:31.755 DEBUG [12993]: Closing database connection -- 13:30:31.755 SQL [12993]: pgsql_close() -- 13:32:04.448 INFO [12927]: COREGRADE is starting... -- 13:32:04.448 INFO [12927]: Version from config: 1.0 -- 13:32:04.448 DEBUG [12927]: Connecting to database... -- 13:32:04.448 DEBUG [12927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:32:04.448 SQL [12927]: pgsql_db_connect() -- 13:32:04.452 DEBUG [12927]: Database connection successful -- 13:32:04.452 INFO [12927]: _SERVER found -- 13:32:04.452 INFO [12927]: REMOTE_ADDR = 10.0.0.15 -- 13:32:04.452 INFO [12927]: SERVER_NAME = oameye.works.coregrade.com -- 13:32:04.452 INFO [12927]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 13:32:04.452 INFO [12927]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 13:32:04.484 INFO [12927]: COREGRADE is stopping... -- 13:32:04.484 DEBUG [12927]: Closing database connection -- 13:32:04.484 SQL [12927]: pgsql_close() -- 13:32:04.511 INFO [13035]: COREGRADE is starting... -- 13:32:04.511 INFO [13035]: Version from config: 1.0 -- 13:32:04.511 DEBUG [13035]: Connecting to database... -- 13:32:04.511 DEBUG [13035]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:32:04.511 SQL [13035]: pgsql_db_connect() -- 13:32:04.515 DEBUG [13035]: Database connection successful -- 13:32:04.515 INFO [13035]: _SERVER found -- 13:32:04.515 INFO [13035]: REMOTE_ADDR = 10.0.0.15 -- 13:32:04.515 INFO [13035]: SERVER_NAME = oameye.works.coregrade.com -- 13:32:04.515 INFO [13035]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 13:32:04.515 INFO [13035]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 13:32:04.547 INFO [13035]: COREGRADE is stopping... -- 13:32:04.547 DEBUG [13035]: Closing database connection -- 13:32:04.547 SQL [13035]: pgsql_close() -- 13:32:55.296 INFO [12930]: COREGRADE is starting... -- 13:32:55.296 INFO [12930]: Version from config: 1.0 -- 13:32:55.296 DEBUG [12930]: Connecting to database... -- 13:32:55.296 DEBUG [12930]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:32:55.296 SQL [12930]: pgsql_db_connect() -- 13:32:55.300 DEBUG [12930]: Database connection successful -- 13:32:55.300 INFO [12930]: _SERVER found -- 13:32:55.300 INFO [12930]: REMOTE_ADDR = 10.0.0.15 -- 13:32:55.300 INFO [12930]: SERVER_NAME = oameye.works.coregrade.com -- 13:32:55.300 INFO [12930]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 13:32:55.300 INFO [12930]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 13:32:55.333 INFO [12930]: COREGRADE is stopping... -- 13:32:55.333 DEBUG [12930]: Closing database connection -- 13:32:55.333 SQL [12930]: pgsql_close() -- 13:32:59.300 INFO [12931]: COREGRADE is starting... -- 13:32:59.300 INFO [12931]: Version from config: 1.0 -- 13:32:59.300 DEBUG [12931]: Connecting to database... -- 13:32:59.300 DEBUG [12931]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:32:59.300 SQL [12931]: pgsql_db_connect() -- 13:32:59.340 INFO [12931]: COREGRADE is starting... -- 13:32:59.340 INFO [12931]: Version from config: 1.0 -- 13:32:59.340 DEBUG [12931]: Connecting to database... -- 13:32:59.340 DEBUG [12931]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:32:59.340 SQL [12931]: pgsql_db_connect() -- 13:32:59.344 DEBUG [12931]: Database connection successful -- 13:32:59.344 INFO [12931]: _SERVER found -- 13:32:59.344 INFO [12931]: REMOTE_ADDR = 10.0.0.15 -- 13:32:59.344 INFO [12931]: SERVER_NAME = oameye.works.coregrade.com -- 13:32:59.344 INFO [12931]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=c017g3ftttfevs6lqsgd62k7sr5fqdvq -- 13:32:59.344 INFO [12931]: QUERY_STRING = -- 13:32:59.344 INFO [12931]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:32:59.344 INFO [12931]: SystemStatus()09-09-********~************ -- 13:32:59.344 INFO [12931]: long coregrade_api_main(CVars in, CVars &out) -- 13:32:59.344 INFO [12931]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 13:32:59.344 INFO [12931]: account calls -- 13:32:59.344 INFO [12931]: account_calls() -- 13:32:59.344 INFO [12931]: passwordReset() -- 13:32:59.344 INFO [12931]: startPassReset() -- 13:32:59.344 FLOG_MAX [12931]: REQ_STRING(username) -- 13:32:59.344 FLOG_MAX [12931]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:32:59.344 SQL [12931]: pgsql_query() -- 13:32:59.345 SQL [12931]: About to run query: -- 13:32:59.345 SQL [12931]: SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('xgxsgssdhshjsj') -- 13:32:59.347 SQL [12931]: Found rows: 0 -- 13:32:59.347 SQL [12931]: Found rows: 0 -- 13:32:59.347 FLOG_MAX [12931]: insert_db_record() -- 13:32:59.347 SQL [12931]: pgsql_exec() -- 13:32:59.347 SQL [12931]: About to run query: -- 13:32:59.347 SQL [12931]: INSERT INTO resetpassword (loc,status,username) VALUES ('10.0.0.15','3','xgxsgssdhshjsj') -- 13:32:59.347 SQL [12931]: Affected rows: ERROR -- 13:32:59.348 FLOG_MAX [12931]: SELECT currval('resetpassword_id_seq') -- 13:32:59.348 SQL [12931]: pgsql_query() -- 13:32:59.348 SQL [12931]: About to run query: -- 13:32:59.348 SQL [12931]: SELECT currval('resetpassword_id_seq') -- 13:32:59.348 SQL [12931]: Found rows: ERROR -- 13:32:59.348 FLOG_MAX [12931]: SQL error -- 13:32:59.348 INFO [12931]: RET: member_id= -- 13:32:59.348 INFO [12931]: RET: reset_id=-1 -- 13:32:59.348 INFO [12931]: RET: reset_seed==REMOVED -- 13:32:59.348 INFO [12931]: RET: result=YES I GET TO BACK END -- 13:32:59.348 INFO [12931]: RET: status_advice=Check username or Contact support -- 13:32:59.348 INFO [12931]: RET: status_message=Invalid Username or disabled account -- 13:32:59.349 INFO [12931]: COREGRADE is stopping... -- 13:32:59.350 DEBUG [12931]: Closing database connection -- 13:32:59.350 SQL [12931]: pgsql_close() -- 13:32:59.304 DEBUG [12931]: Database connection successful -- 13:32:59.304 INFO [12931]: _SERVER found -- 13:32:59.304 INFO [12931]: REMOTE_ADDR = 10.0.0.15 -- 13:32:59.304 INFO [12931]: SERVER_NAME = oameye.works.coregrade.com -- 13:32:59.304 INFO [12931]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=c017g3ftttfevs6lqsgd62k7sr5fqdvq -- 13:32:59.304 INFO [12931]: QUERY_STRING = /auth/resetpass -- 13:32:59.304 INFO [12931]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:32:59.350 INFO [12931]: COREGRADE is stopping... -- 13:32:59.350 DEBUG [12931]: Closing database connection -- 13:32:59.350 SQL [12931]: pgsql_close() -- 13:32:59.442 INFO [12931]: COREGRADE is starting... -- 13:32:59.443 INFO [12931]: Version from config: 1.0 -- 13:32:59.443 DEBUG [12931]: Connecting to database... -- 13:32:59.443 DEBUG [12931]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:32:59.443 SQL [12931]: pgsql_db_connect() -- 13:32:59.447 DEBUG [12931]: Database connection successful -- 13:32:59.447 INFO [12931]: _SERVER found -- 13:32:59.447 INFO [12931]: REMOTE_ADDR = 10.0.0.15 -- 13:32:59.447 INFO [12931]: SERVER_NAME = oameye.works.coregrade.com -- 13:32:59.447 INFO [12931]: HTTP_COOKIE = ci_session=5a3im0556lropjijkim4s0cstqhqn2ar; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 13:32:59.447 INFO [12931]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:32:59.447 INFO [12931]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:32:59.458 INFO [12931]: COREGRADE is stopping... -- 13:32:59.459 DEBUG [12931]: Closing database connection -- 13:32:59.459 SQL [12931]: pgsql_close() -- 13:34:26.225 INFO [13164]: COREGRADE is starting... -- 13:34:26.226 INFO [13164]: Version from config: 1.0 -- 13:34:26.226 DEBUG [13164]: Connecting to database... -- 13:34:26.226 DEBUG [13164]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:34:26.226 SQL [13164]: pgsql_db_connect() -- 13:34:26.230 DEBUG [13164]: Database connection successful -- 13:34:26.230 INFO [13164]: _SERVER found -- 13:34:26.230 INFO [13164]: REMOTE_ADDR = 10.0.0.15 -- 13:34:26.230 INFO [13164]: SERVER_NAME = oameye.works.coregrade.com -- 13:34:26.230 INFO [13164]: HTTP_COOKIE = ci_session=5a3im0556lropjijkim4s0cstqhqn2ar; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 13:34:26.230 INFO [13164]: QUERY_STRING = -- 13:34:26.230 INFO [13164]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:34:26.273 INFO [13164]: COREGRADE is stopping... -- 13:34:26.273 DEBUG [13164]: Closing database connection -- 13:34:26.273 SQL [13164]: pgsql_close() -- 13:34:26.367 INFO [13164]: COREGRADE is starting... -- 13:34:26.368 INFO [13164]: Version from config: 1.0 -- 13:34:26.368 DEBUG [13164]: Connecting to database... -- 13:34:26.368 DEBUG [13164]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:34:26.368 SQL [13164]: pgsql_db_connect() -- 13:34:26.372 DEBUG [13164]: Database connection successful -- 13:34:26.372 INFO [13164]: _SERVER found -- 13:34:26.372 INFO [13164]: REMOTE_ADDR = 10.0.0.15 -- 13:34:26.372 INFO [13164]: SERVER_NAME = oameye.works.coregrade.com -- 13:34:26.372 INFO [13164]: HTTP_COOKIE = ci_session=5a3im0556lropjijkim4s0cstqhqn2ar; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 13:34:26.372 INFO [13164]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:34:26.372 INFO [13164]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:34:26.384 INFO [13164]: COREGRADE is stopping... -- 13:34:26.384 DEBUG [13164]: Closing database connection -- 13:34:26.384 SQL [13164]: pgsql_close() -- 13:34:28.008 INFO [13164]: COREGRADE is starting... -- 13:34:28.008 INFO [13164]: Version from config: 1.0 -- 13:34:28.008 DEBUG [13164]: Connecting to database... -- 13:34:28.009 DEBUG [13164]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:34:28.009 SQL [13164]: pgsql_db_connect() -- 13:34:28.013 DEBUG [13164]: Database connection successful -- 13:34:28.013 INFO [13164]: _SERVER found -- 13:34:28.013 INFO [13164]: REMOTE_ADDR = 10.0.0.15 -- 13:34:28.013 INFO [13164]: SERVER_NAME = oameye.works.coregrade.com -- 13:34:28.013 INFO [13164]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=5a3im0556lropjijkim4s0cstqhqn2ar -- 13:34:28.013 INFO [13164]: QUERY_STRING = /welcome/viewLogin -- 13:34:28.013 INFO [13164]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:34:28.045 INFO [13164]: COREGRADE is stopping... -- 13:34:28.045 DEBUG [13164]: Closing database connection -- 13:34:28.045 SQL [13164]: pgsql_close() -- 13:34:28.084 INFO [12929]: COREGRADE is starting... -- 13:34:28.084 INFO [12929]: Version from config: 1.0 -- 13:34:28.084 DEBUG [12929]: Connecting to database... -- 13:34:28.084 DEBUG [12929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:34:28.084 SQL [12929]: pgsql_db_connect() -- 13:34:28.094 INFO [12928]: COREGRADE is starting... -- 13:34:28.095 INFO [12928]: Version from config: 1.0 -- 13:34:28.095 DEBUG [12928]: Connecting to database... -- 13:34:28.095 DEBUG [12928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:34:28.095 SQL [12928]: pgsql_db_connect() -- 13:34:28.098 DEBUG [12928]: Database connection successful -- 13:34:28.098 INFO [12928]: _SERVER found -- 13:34:28.098 INFO [12928]: REMOTE_ADDR = 10.0.0.15 -- 13:34:28.098 INFO [12928]: SERVER_NAME = oameye.works.coregrade.com -- 13:34:28.098 INFO [12928]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=5a3im0556lropjijkim4s0cstqhqn2ar -- 13:34:28.098 INFO [12928]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:34:28.098 INFO [12928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:34:28.111 INFO [12928]: COREGRADE is stopping... -- 13:34:28.111 DEBUG [12928]: Closing database connection -- 13:34:28.111 SQL [12928]: pgsql_close() -- 13:34:28.088 DEBUG [12929]: Database connection successful -- 13:34:28.088 INFO [12929]: _SERVER found -- 13:34:28.088 INFO [12929]: REMOTE_ADDR = 10.0.0.15 -- 13:34:28.088 INFO [12929]: SERVER_NAME = oameye.works.coregrade.com -- 13:34:28.088 INFO [12929]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=5a3im0556lropjijkim4s0cstqhqn2ar -- 13:34:28.088 INFO [12929]: QUERY_STRING = /auth -- 13:34:28.088 INFO [12929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:34:28.121 INFO [12929]: COREGRADE is stopping... -- 13:34:28.121 DEBUG [12929]: Closing database connection -- 13:34:28.121 SQL [12929]: pgsql_close() -- 13:34:31.747 INFO [12929]: COREGRADE is starting... -- 13:34:31.748 INFO [12929]: Version from config: 1.0 -- 13:34:31.748 DEBUG [12929]: Connecting to database... -- 13:34:31.748 DEBUG [12929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:34:31.748 SQL [12929]: pgsql_db_connect() -- 13:34:31.750 INFO [12928]: COREGRADE is starting... -- 13:34:31.750 INFO [12928]: Version from config: 1.0 -- 13:34:31.750 DEBUG [12928]: Connecting to database... -- 13:34:31.750 DEBUG [12928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:34:31.750 SQL [12928]: pgsql_db_connect() -- 13:34:31.754 DEBUG [12928]: Database connection successful -- 13:34:31.754 INFO [12928]: _SERVER found -- 13:34:31.754 INFO [12928]: REMOTE_ADDR = 10.0.0.15 -- 13:34:31.754 INFO [12928]: SERVER_NAME = oameye.works.coregrade.com -- 13:34:31.754 INFO [12928]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=5a3im0556lropjijkim4s0cstqhqn2ar -- 13:34:31.754 INFO [12928]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:34:31.754 INFO [12928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:34:31.766 INFO [12928]: COREGRADE is stopping... -- 13:34:31.766 DEBUG [12928]: Closing database connection -- 13:34:31.766 SQL [12928]: pgsql_close() -- 13:34:31.752 DEBUG [12929]: Database connection successful -- 13:34:31.752 INFO [12929]: _SERVER found -- 13:34:31.752 INFO [12929]: REMOTE_ADDR = 10.0.0.15 -- 13:34:31.752 INFO [12929]: SERVER_NAME = oameye.works.coregrade.com -- 13:34:31.752 INFO [12929]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=5a3im0556lropjijkim4s0cstqhqn2ar -- 13:34:31.752 INFO [12929]: QUERY_STRING = /auth/resetpass -- 13:34:31.752 INFO [12929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:34:31.783 INFO [12929]: COREGRADE is stopping... -- 13:34:31.783 DEBUG [12929]: Closing database connection -- 13:34:31.783 SQL [12929]: pgsql_close() -- 13:34:34.048 INFO [12929]: COREGRADE is starting... -- 13:34:34.048 INFO [12929]: Version from config: 1.0 -- 13:34:34.048 DEBUG [12929]: Connecting to database... -- 13:34:34.048 DEBUG [12929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:34:34.048 SQL [12929]: pgsql_db_connect() -- 13:34:34.083 INFO [12929]: COREGRADE is starting... -- 13:34:34.083 INFO [12929]: Version from config: 1.0 -- 13:34:34.083 DEBUG [12929]: Connecting to database... -- 13:34:34.083 DEBUG [12929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:34:34.083 SQL [12929]: pgsql_db_connect() -- 13:34:34.087 DEBUG [12929]: Database connection successful -- 13:34:34.087 INFO [12929]: _SERVER found -- 13:34:34.087 INFO [12929]: REMOTE_ADDR = 10.0.0.15 -- 13:34:34.087 INFO [12929]: SERVER_NAME = oameye.works.coregrade.com -- 13:34:34.087 INFO [12929]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=5a3im0556lropjijkim4s0cstqhqn2ar -- 13:34:34.087 INFO [12929]: QUERY_STRING = -- 13:34:34.087 INFO [12929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:34:34.087 INFO [12929]: SystemStatus()09-09-********~************ -- 13:34:34.087 INFO [12929]: long coregrade_api_main(CVars in, CVars &out) -- 13:34:34.087 INFO [12929]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 13:34:34.087 INFO [12929]: account calls -- 13:34:34.087 INFO [12929]: account_calls() -- 13:34:34.087 INFO [12929]: passwordReset() -- 13:34:34.087 INFO [12929]: startPassReset() -- 13:34:34.087 FLOG_MAX [12929]: REQ_STRING(username) -- 13:34:34.087 FLOG_MAX [12929]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:34:34.087 SQL [12929]: pgsql_query() -- 13:34:34.087 SQL [12929]: About to run query: -- 13:34:34.087 SQL [12929]: SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('dhdhdjddjd') -- 13:34:34.089 SQL [12929]: Found rows: 0 -- 13:34:34.090 SQL [12929]: Found rows: 0 -- 13:34:34.090 FLOG_MAX [12929]: insert_db_record() -- 13:34:34.090 SQL [12929]: pgsql_exec() -- 13:34:34.090 SQL [12929]: About to run query: -- 13:34:34.090 SQL [12929]: INSERT INTO resetpassword (loc,status,username) VALUES ('10.0.0.15','3','dhdhdjddjd') -- 13:34:34.090 SQL [12929]: Affected rows: ERROR -- 13:34:34.090 FLOG_MAX [12929]: SELECT currval('resetpassword_id_seq') -- 13:34:34.090 SQL [12929]: pgsql_query() -- 13:34:34.090 SQL [12929]: About to run query: -- 13:34:34.090 SQL [12929]: SELECT currval('resetpassword_id_seq') -- 13:34:34.090 SQL [12929]: Found rows: ERROR -- 13:34:34.090 FLOG_MAX [12929]: SQL error -- 13:34:34.090 INFO [12929]: RET: member_id= -- 13:34:34.090 INFO [12929]: RET: reset_id=-1 -- 13:34:34.090 INFO [12929]: RET: reset_seed==REMOVED -- 13:34:34.090 INFO [12929]: RET: result=YES I GET TO BACK END -- 13:34:34.090 INFO [12929]: RET: status_advice=Check username or Contact support -- 13:34:34.090 INFO [12929]: RET: status_message=Invalid Username or disabled account -- 13:34:34.092 INFO [12929]: COREGRADE is stopping... -- 13:34:34.092 DEBUG [12929]: Closing database connection -- 13:34:34.092 SQL [12929]: pgsql_close() -- 13:34:34.052 DEBUG [12929]: Database connection successful -- 13:34:34.052 INFO [12929]: _SERVER found -- 13:34:34.052 INFO [12929]: REMOTE_ADDR = 10.0.0.15 -- 13:34:34.052 INFO [12929]: SERVER_NAME = oameye.works.coregrade.com -- 13:34:34.052 INFO [12929]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=5a3im0556lropjijkim4s0cstqhqn2ar -- 13:34:34.052 INFO [12929]: QUERY_STRING = /auth/resetpass -- 13:34:34.052 INFO [12929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:34:34.092 INFO [12929]: COREGRADE is stopping... -- 13:34:34.092 DEBUG [12929]: Closing database connection -- 13:34:34.092 SQL [12929]: pgsql_close() -- 13:34:34.159 INFO [12929]: COREGRADE is starting... -- 13:34:34.159 INFO [12929]: Version from config: 1.0 -- 13:34:34.159 DEBUG [12929]: Connecting to database... -- 13:34:34.159 DEBUG [12929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:34:34.159 SQL [12929]: pgsql_db_connect() -- 13:34:34.163 DEBUG [12929]: Database connection successful -- 13:34:34.163 INFO [12929]: _SERVER found -- 13:34:34.163 INFO [12929]: REMOTE_ADDR = 10.0.0.15 -- 13:34:34.163 INFO [12929]: SERVER_NAME = oameye.works.coregrade.com -- 13:34:34.163 INFO [12929]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=5a3im0556lropjijkim4s0cstqhqn2ar -- 13:34:34.163 INFO [12929]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:34:34.163 INFO [12929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:34:34.174 INFO [12929]: COREGRADE is stopping... -- 13:34:34.174 DEBUG [12929]: Closing database connection -- 13:34:34.174 SQL [12929]: pgsql_close() -- 13:37:54.956 INFO [12993]: COREGRADE is starting... -- 13:37:54.956 INFO [12993]: Version from config: 1.0 -- 13:37:54.956 DEBUG [12993]: Connecting to database... -- 13:37:54.956 DEBUG [12993]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:37:54.956 SQL [12993]: pgsql_db_connect() -- 13:37:54.960 DEBUG [12993]: Database connection successful -- 13:37:54.960 INFO [12993]: _SERVER found -- 13:37:54.960 INFO [12993]: REMOTE_ADDR = 10.0.0.15 -- 13:37:54.960 INFO [12993]: SERVER_NAME = oameye.works.coregrade.com -- 13:37:54.960 INFO [12993]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=5a3im0556lropjijkim4s0cstqhqn2ar -- 13:37:54.960 INFO [12993]: QUERY_STRING = -- 13:37:54.960 INFO [12993]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:37:54.998 INFO [12993]: COREGRADE is stopping... -- 13:37:54.998 DEBUG [12993]: Closing database connection -- 13:37:54.998 SQL [12993]: pgsql_close() -- 13:37:55.092 INFO [12993]: COREGRADE is starting... -- 13:37:55.092 INFO [12993]: Version from config: 1.0 -- 13:37:55.092 DEBUG [12993]: Connecting to database... -- 13:37:55.092 DEBUG [12993]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:37:55.092 SQL [12993]: pgsql_db_connect() -- 13:37:55.096 DEBUG [12993]: Database connection successful -- 13:37:55.096 INFO [12993]: _SERVER found -- 13:37:55.096 INFO [12993]: REMOTE_ADDR = 10.0.0.15 -- 13:37:55.096 INFO [12993]: SERVER_NAME = oameye.works.coregrade.com -- 13:37:55.096 INFO [12993]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=5a3im0556lropjijkim4s0cstqhqn2ar -- 13:37:55.096 INFO [12993]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:37:55.096 INFO [12993]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:37:55.107 INFO [12993]: COREGRADE is stopping... -- 13:37:55.107 DEBUG [12993]: Closing database connection -- 13:37:55.107 SQL [12993]: pgsql_close() -- 13:37:56.305 INFO [12993]: COREGRADE is starting... -- 13:37:56.305 INFO [12993]: Version from config: 1.0 -- 13:37:56.305 DEBUG [12993]: Connecting to database... -- 13:37:56.305 DEBUG [12993]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:37:56.305 SQL [12993]: pgsql_db_connect() -- 13:37:56.310 DEBUG [12993]: Database connection successful -- 13:37:56.310 INFO [12993]: _SERVER found -- 13:37:56.310 INFO [12993]: REMOTE_ADDR = 10.0.0.15 -- 13:37:56.310 INFO [12993]: SERVER_NAME = oameye.works.coregrade.com -- 13:37:56.310 INFO [12993]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=5a3im0556lropjijkim4s0cstqhqn2ar -- 13:37:56.310 INFO [12993]: QUERY_STRING = /welcome/viewLogin -- 13:37:56.310 INFO [12993]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:37:56.340 INFO [12993]: COREGRADE is stopping... -- 13:37:56.340 DEBUG [12993]: Closing database connection -- 13:37:56.340 SQL [12993]: pgsql_close() -- 13:37:56.380 INFO [12993]: COREGRADE is starting... -- 13:37:56.380 INFO [12993]: Version from config: 1.0 -- 13:37:56.380 DEBUG [12993]: Connecting to database... -- 13:37:56.380 DEBUG [12993]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:37:56.380 SQL [12993]: pgsql_db_connect() -- 13:37:56.393 INFO [12927]: COREGRADE is starting... -- 13:37:56.394 INFO [12927]: Version from config: 1.0 -- 13:37:56.394 DEBUG [12927]: Connecting to database... -- 13:37:56.394 DEBUG [12927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:37:56.394 SQL [12927]: pgsql_db_connect() -- 13:37:56.384 DEBUG [12993]: Database connection successful -- 13:37:56.384 INFO [12993]: _SERVER found -- 13:37:56.384 INFO [12993]: REMOTE_ADDR = 10.0.0.15 -- 13:37:56.384 INFO [12993]: SERVER_NAME = oameye.works.coregrade.com -- 13:37:56.384 INFO [12993]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=5a3im0556lropjijkim4s0cstqhqn2ar -- 13:37:56.384 INFO [12993]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:37:56.384 INFO [12993]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:37:56.396 INFO [12993]: COREGRADE is stopping... -- 13:37:56.396 DEBUG [12993]: Closing database connection -- 13:37:56.396 SQL [12993]: pgsql_close() -- 13:37:56.398 DEBUG [12927]: Database connection successful -- 13:37:56.398 INFO [12927]: _SERVER found -- 13:37:56.398 INFO [12927]: REMOTE_ADDR = 10.0.0.15 -- 13:37:56.398 INFO [12927]: SERVER_NAME = oameye.works.coregrade.com -- 13:37:56.398 INFO [12927]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=5a3im0556lropjijkim4s0cstqhqn2ar -- 13:37:56.398 INFO [12927]: QUERY_STRING = /auth -- 13:37:56.398 INFO [12927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:37:56.430 INFO [12927]: COREGRADE is stopping... -- 13:37:56.430 DEBUG [12927]: Closing database connection -- 13:37:56.430 SQL [12927]: pgsql_close() -- 13:37:58.598 INFO [12927]: COREGRADE is starting... -- 13:37:58.599 INFO [12927]: Version from config: 1.0 -- 13:37:58.599 DEBUG [12927]: Connecting to database... -- 13:37:58.599 DEBUG [12927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:37:58.599 SQL [12927]: pgsql_db_connect() -- 13:37:58.604 INFO [12993]: COREGRADE is starting... -- 13:37:58.605 INFO [12993]: Version from config: 1.0 -- 13:37:58.605 DEBUG [12993]: Connecting to database... -- 13:37:58.605 DEBUG [12993]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:37:58.605 SQL [12993]: pgsql_db_connect() -- 13:37:58.609 DEBUG [12993]: Database connection successful -- 13:37:58.609 INFO [12993]: _SERVER found -- 13:37:58.609 INFO [12993]: REMOTE_ADDR = 10.0.0.15 -- 13:37:58.609 INFO [12993]: SERVER_NAME = oameye.works.coregrade.com -- 13:37:58.609 INFO [12993]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=5a3im0556lropjijkim4s0cstqhqn2ar -- 13:37:58.609 INFO [12993]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:37:58.609 INFO [12993]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:37:58.620 INFO [12993]: COREGRADE is stopping... -- 13:37:58.620 DEBUG [12993]: Closing database connection -- 13:37:58.620 SQL [12993]: pgsql_close() -- 13:37:58.603 DEBUG [12927]: Database connection successful -- 13:37:58.603 INFO [12927]: _SERVER found -- 13:37:58.603 INFO [12927]: REMOTE_ADDR = 10.0.0.15 -- 13:37:58.603 INFO [12927]: SERVER_NAME = oameye.works.coregrade.com -- 13:37:58.603 INFO [12927]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=5a3im0556lropjijkim4s0cstqhqn2ar -- 13:37:58.603 INFO [12927]: QUERY_STRING = /auth/resetpass -- 13:37:58.603 INFO [12927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:37:58.634 INFO [12927]: COREGRADE is stopping... -- 13:37:58.634 DEBUG [12927]: Closing database connection -- 13:37:58.634 SQL [12927]: pgsql_close() -- 13:39:37.191 INFO [13035]: COREGRADE is starting... -- 13:39:37.191 INFO [13035]: Version from config: 1.0 -- 13:39:37.191 DEBUG [13035]: Connecting to database... -- 13:39:37.191 DEBUG [13035]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:39:37.191 SQL [13035]: pgsql_db_connect() -- 13:39:37.195 DEBUG [13035]: Database connection successful -- 13:39:37.195 INFO [13035]: _SERVER found -- 13:39:37.195 INFO [13035]: REMOTE_ADDR = 10.0.0.15 -- 13:39:37.195 INFO [13035]: SERVER_NAME = oameye.works.coregrade.com -- 13:39:37.195 INFO [13035]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=5a3im0556lropjijkim4s0cstqhqn2ar -- 13:39:37.195 INFO [13035]: QUERY_STRING = -- 13:39:37.195 INFO [13035]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:39:37.230 INFO [13035]: COREGRADE is stopping... -- 13:39:37.230 DEBUG [13035]: Closing database connection -- 13:39:37.230 SQL [13035]: pgsql_close() -- 13:39:37.262 INFO [12930]: COREGRADE is starting... -- 13:39:37.263 INFO [12930]: Version from config: 1.0 -- 13:39:37.263 DEBUG [12930]: Connecting to database... -- 13:39:37.263 DEBUG [12930]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:39:37.263 SQL [12930]: pgsql_db_connect() -- 13:39:37.267 DEBUG [12930]: Database connection successful -- 13:39:37.267 INFO [12930]: _SERVER found -- 13:39:37.267 INFO [12930]: REMOTE_ADDR = 10.0.0.15 -- 13:39:37.267 INFO [12930]: SERVER_NAME = oameye.works.coregrade.com -- 13:39:37.267 INFO [12930]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=5a3im0556lropjijkim4s0cstqhqn2ar -- 13:39:37.267 INFO [12930]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:39:37.267 INFO [12930]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:39:37.279 INFO [12930]: COREGRADE is stopping... -- 13:39:37.279 DEBUG [12930]: Closing database connection -- 13:39:37.279 SQL [12930]: pgsql_close() -- 13:39:38.775 INFO [13035]: COREGRADE is starting... -- 13:39:38.776 INFO [13035]: Version from config: 1.0 -- 13:39:38.776 DEBUG [13035]: Connecting to database... -- 13:39:38.776 DEBUG [13035]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:39:38.776 SQL [13035]: pgsql_db_connect() -- 13:39:38.779 INFO [12930]: COREGRADE is starting... -- 13:39:38.779 INFO [12930]: Version from config: 1.0 -- 13:39:38.779 DEBUG [12930]: Connecting to database... -- 13:39:38.779 DEBUG [12930]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:39:38.780 SQL [12930]: pgsql_db_connect() -- 13:39:38.780 DEBUG [13035]: Database connection successful -- 13:39:38.780 INFO [13035]: _SERVER found -- 13:39:38.780 INFO [13035]: REMOTE_ADDR = 10.0.0.15 -- 13:39:38.780 INFO [13035]: SERVER_NAME = oameye.works.coregrade.com -- 13:39:38.780 INFO [13035]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=gahid862rjmlbl1fp5v7s6j288mcvqf9 -- 13:39:38.780 INFO [13035]: QUERY_STRING = /welcome/viewLogin -- 13:39:38.780 INFO [13035]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:39:38.810 INFO [13035]: COREGRADE is stopping... -- 13:39:38.810 DEBUG [13035]: Closing database connection -- 13:39:38.810 SQL [13035]: pgsql_close() -- 13:39:38.784 DEBUG [12930]: Database connection successful -- 13:39:38.784 INFO [12930]: _SERVER found -- 13:39:38.784 INFO [12930]: REMOTE_ADDR = 10.0.0.15 -- 13:39:38.784 INFO [12930]: SERVER_NAME = oameye.works.coregrade.com -- 13:39:38.784 INFO [12930]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=gahid862rjmlbl1fp5v7s6j288mcvqf9 -- 13:39:38.784 INFO [12930]: QUERY_STRING = /auth -- 13:39:38.784 INFO [12930]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:39:38.816 INFO [12930]: COREGRADE is stopping... -- 13:39:38.816 DEBUG [12930]: Closing database connection -- 13:39:38.816 SQL [12930]: pgsql_close() -- 13:39:38.842 INFO [12931]: COREGRADE is starting... -- 13:39:38.843 INFO [12931]: Version from config: 1.0 -- 13:39:38.843 DEBUG [12931]: Connecting to database... -- 13:39:38.843 DEBUG [12931]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:39:38.843 SQL [12931]: pgsql_db_connect() -- 13:39:38.847 DEBUG [12931]: Database connection successful -- 13:39:38.847 INFO [12931]: _SERVER found -- 13:39:38.847 INFO [12931]: REMOTE_ADDR = 10.0.0.15 -- 13:39:38.847 INFO [12931]: SERVER_NAME = oameye.works.coregrade.com -- 13:39:38.847 INFO [12931]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=gahid862rjmlbl1fp5v7s6j288mcvqf9 -- 13:39:38.847 INFO [12931]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:39:38.847 INFO [12931]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:39:38.858 INFO [12931]: COREGRADE is stopping... -- 13:39:38.858 DEBUG [12931]: Closing database connection -- 13:39:38.858 SQL [12931]: pgsql_close() -- 13:39:39.986 INFO [12930]: COREGRADE is starting... -- 13:39:39.987 INFO [12930]: Version from config: 1.0 -- 13:39:39.987 DEBUG [12930]: Connecting to database... -- 13:39:39.987 DEBUG [12930]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:39:39.987 SQL [12930]: pgsql_db_connect() -- 13:39:39.993 INFO [12931]: COREGRADE is starting... -- 13:39:39.993 INFO [12931]: Version from config: 1.0 -- 13:39:39.993 DEBUG [12931]: Connecting to database... -- 13:39:39.993 DEBUG [12931]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:39:39.993 SQL [12931]: pgsql_db_connect() -- 13:39:39.997 DEBUG [12931]: Database connection successful -- 13:39:39.997 INFO [12931]: _SERVER found -- 13:39:39.997 INFO [12931]: REMOTE_ADDR = 10.0.0.15 -- 13:39:39.997 INFO [12931]: SERVER_NAME = oameye.works.coregrade.com -- 13:39:39.997 INFO [12931]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=gahid862rjmlbl1fp5v7s6j288mcvqf9 -- 13:39:39.997 INFO [12931]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:39:39.997 INFO [12931]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:39:40.008 INFO [12931]: COREGRADE is stopping... -- 13:39:40.008 DEBUG [12931]: Closing database connection -- 13:39:40.008 SQL [12931]: pgsql_close() -- 13:39:39.991 DEBUG [12930]: Database connection successful -- 13:39:39.991 INFO [12930]: _SERVER found -- 13:39:39.991 INFO [12930]: REMOTE_ADDR = 10.0.0.15 -- 13:39:39.991 INFO [12930]: SERVER_NAME = oameye.works.coregrade.com -- 13:39:39.991 INFO [12930]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=gahid862rjmlbl1fp5v7s6j288mcvqf9 -- 13:39:39.991 INFO [12930]: QUERY_STRING = /auth/resetpass -- 13:39:39.991 INFO [12930]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:39:40.022 INFO [12930]: COREGRADE is stopping... -- 13:39:40.023 DEBUG [12930]: Closing database connection -- 13:39:40.023 SQL [12930]: pgsql_close() -- 13:39:43.896 INFO [12930]: COREGRADE is starting... -- 13:39:43.896 INFO [12930]: Version from config: 1.0 -- 13:39:43.896 DEBUG [12930]: Connecting to database... -- 13:39:43.896 DEBUG [12930]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:39:43.896 SQL [12930]: pgsql_db_connect() -- 13:39:43.931 INFO [12930]: COREGRADE is starting... -- 13:39:43.932 INFO [12930]: Version from config: 1.0 -- 13:39:43.932 DEBUG [12930]: Connecting to database... -- 13:39:43.932 DEBUG [12930]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:39:43.932 SQL [12930]: pgsql_db_connect() -- 13:39:43.935 DEBUG [12930]: Database connection successful -- 13:39:43.935 INFO [12930]: _SERVER found -- 13:39:43.935 INFO [12930]: REMOTE_ADDR = 10.0.0.15 -- 13:39:43.935 INFO [12930]: SERVER_NAME = oameye.works.coregrade.com -- 13:39:43.935 INFO [12930]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=gahid862rjmlbl1fp5v7s6j288mcvqf9 -- 13:39:43.935 INFO [12930]: QUERY_STRING = -- 13:39:43.935 INFO [12930]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:39:43.936 INFO [12930]: SystemStatus()09-09-********~************ -- 13:39:43.936 INFO [12930]: long coregrade_api_main(CVars in, CVars &out) -- 13:39:43.936 INFO [12930]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 13:39:43.936 INFO [12930]: account calls -- 13:39:43.936 INFO [12930]: account_calls() -- 13:39:43.936 INFO [12930]: passwordReset() -- 13:39:43.936 INFO [12930]: startPassReset() -- 13:39:43.936 FLOG_MAX [12930]: REQ_STRING(username) -- 13:39:43.936 FLOG_MAX [12930]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:39:43.936 SQL [12930]: pgsql_query() -- 13:39:43.936 SQL [12930]: About to run query: -- 13:39:43.936 SQL [12930]: SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('bxbxnxxxmxmx') -- 13:39:43.938 SQL [12930]: Found rows: 0 -- 13:39:43.938 SQL [12930]: Found rows: 0 -- 13:39:43.938 FLOG_MAX [12930]: insert_db_record() -- 13:39:43.938 SQL [12930]: pgsql_exec() -- 13:39:43.938 SQL [12930]: About to run query: -- 13:39:43.938 SQL [12930]: INSERT INTO resetpassword (loc,status,username) VALUES ('10.0.0.15','3','bxbxnxxxmxmx') -- 13:39:43.939 SQL [12930]: Affected rows: ERROR -- 13:39:43.939 FLOG_MAX [12930]: SELECT currval('resetpassword_id_seq') -- 13:39:43.939 SQL [12930]: pgsql_query() -- 13:39:43.939 SQL [12930]: About to run query: -- 13:39:43.939 SQL [12930]: SELECT currval('resetpassword_id_seq') -- 13:39:43.939 SQL [12930]: Found rows: ERROR -- 13:39:43.939 FLOG_MAX [12930]: SQL error -- 13:39:43.939 INFO [12930]: RET: member_id= -- 13:39:43.939 INFO [12930]: RET: reset_id=-1 -- 13:39:43.939 INFO [12930]: RET: reset_seed==REMOVED -- 13:39:43.939 INFO [12930]: RET: result=YES I GET TO BACK END -- 13:39:43.939 INFO [12930]: RET: status_advice=Check username or Contact support -- 13:39:43.939 INFO [12930]: RET: status_message=Invalid Username or disabled account -- 13:39:43.940 INFO [12930]: COREGRADE is stopping... -- 13:39:43.940 DEBUG [12930]: Closing database connection -- 13:39:43.940 SQL [12930]: pgsql_close() -- 13:39:43.900 DEBUG [12930]: Database connection successful -- 13:39:43.900 INFO [12930]: _SERVER found -- 13:39:43.900 INFO [12930]: REMOTE_ADDR = 10.0.0.15 -- 13:39:43.900 INFO [12930]: SERVER_NAME = oameye.works.coregrade.com -- 13:39:43.900 INFO [12930]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=gahid862rjmlbl1fp5v7s6j288mcvqf9 -- 13:39:43.900 INFO [12930]: QUERY_STRING = /auth/resetpass -- 13:39:43.900 INFO [12930]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:39:43.941 INFO [12930]: COREGRADE is stopping... -- 13:39:43.941 DEBUG [12930]: Closing database connection -- 13:39:43.941 SQL [12930]: pgsql_close() -- 13:39:44.002 INFO [12930]: COREGRADE is starting... -- 13:39:44.003 INFO [12930]: Version from config: 1.0 -- 13:39:44.003 DEBUG [12930]: Connecting to database... -- 13:39:44.003 DEBUG [12930]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:39:44.003 SQL [12930]: pgsql_db_connect() -- 13:39:44.007 DEBUG [12930]: Database connection successful -- 13:39:44.007 INFO [12930]: _SERVER found -- 13:39:44.007 INFO [12930]: REMOTE_ADDR = 10.0.0.15 -- 13:39:44.007 INFO [12930]: SERVER_NAME = oameye.works.coregrade.com -- 13:39:44.007 INFO [12930]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=gahid862rjmlbl1fp5v7s6j288mcvqf9 -- 13:39:44.007 INFO [12930]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:39:44.007 INFO [12930]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:39:44.018 INFO [12930]: COREGRADE is stopping... -- 13:39:44.018 DEBUG [12930]: Closing database connection -- 13:39:44.018 SQL [12930]: pgsql_close() -- 13:39:48.656 INFO [13164]: COREGRADE is starting... -- 13:39:48.656 INFO [13164]: Version from config: 1.0 -- 13:39:48.656 DEBUG [13164]: Connecting to database... -- 13:39:48.656 DEBUG [13164]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:39:48.656 SQL [13164]: pgsql_db_connect() -- 13:39:48.660 DEBUG [13164]: Database connection successful -- 13:39:48.660 INFO [13164]: _SERVER found -- 13:39:48.660 INFO [13164]: REMOTE_ADDR = 10.0.0.15 -- 13:39:48.660 INFO [13164]: SERVER_NAME = oameye.works.coregrade.com -- 13:39:48.660 INFO [13164]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=gahid862rjmlbl1fp5v7s6j288mcvqf9 -- 13:39:48.660 INFO [13164]: QUERY_STRING = -- 13:39:48.660 INFO [13164]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:39:48.695 INFO [13164]: COREGRADE is stopping... -- 13:39:48.695 DEBUG [13164]: Closing database connection -- 13:39:48.695 SQL [13164]: pgsql_close() -- 13:39:48.768 INFO [13164]: COREGRADE is starting... -- 13:39:48.769 INFO [13164]: Version from config: 1.0 -- 13:39:48.769 DEBUG [13164]: Connecting to database... -- 13:39:48.769 DEBUG [13164]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:39:48.769 SQL [13164]: pgsql_db_connect() -- 13:39:48.773 DEBUG [13164]: Database connection successful -- 13:39:48.773 INFO [13164]: _SERVER found -- 13:39:48.773 INFO [13164]: REMOTE_ADDR = 10.0.0.15 -- 13:39:48.773 INFO [13164]: SERVER_NAME = oameye.works.coregrade.com -- 13:39:48.773 INFO [13164]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=gahid862rjmlbl1fp5v7s6j288mcvqf9 -- 13:39:48.773 INFO [13164]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:39:48.773 INFO [13164]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:39:48.785 INFO [13164]: COREGRADE is stopping... -- 13:39:48.785 DEBUG [13164]: Closing database connection -- 13:39:48.785 SQL [13164]: pgsql_close() -- 13:39:58.429 INFO [12928]: COREGRADE is starting... -- 13:39:58.429 INFO [12928]: Version from config: 1.0 -- 13:39:58.429 DEBUG [12928]: Connecting to database... -- 13:39:58.429 DEBUG [12928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:39:58.429 SQL [12928]: pgsql_db_connect() -- 13:39:58.439 INFO [12929]: COREGRADE is starting... -- 13:39:58.439 INFO [12929]: Version from config: 1.0 -- 13:39:58.439 DEBUG [12929]: Connecting to database... -- 13:39:58.439 DEBUG [12929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:39:58.439 SQL [12929]: pgsql_db_connect() -- 13:39:58.433 DEBUG [12928]: Database connection successful -- 13:39:58.433 INFO [12928]: _SERVER found -- 13:39:58.433 INFO [12928]: REMOTE_ADDR = 10.0.0.15 -- 13:39:58.433 INFO [12928]: SERVER_NAME = oameye.works.coregrade.com -- 13:39:58.433 INFO [12928]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=gahid862rjmlbl1fp5v7s6j288mcvqf9 -- 13:39:58.433 INFO [12928]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:39:58.433 INFO [12928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:39:58.446 INFO [12928]: COREGRADE is stopping... -- 13:39:58.446 DEBUG [12928]: Closing database connection -- 13:39:58.446 SQL [12928]: pgsql_close() -- 13:39:58.443 DEBUG [12929]: Database connection successful -- 13:39:58.443 INFO [12929]: _SERVER found -- 13:39:58.443 INFO [12929]: REMOTE_ADDR = 10.0.0.15 -- 13:39:58.443 INFO [12929]: SERVER_NAME = oameye.works.coregrade.com -- 13:39:58.443 INFO [12929]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=gahid862rjmlbl1fp5v7s6j288mcvqf9 -- 13:39:58.443 INFO [12929]: QUERY_STRING = /auth -- 13:39:58.443 INFO [12929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:39:58.475 INFO [12929]: COREGRADE is stopping... -- 13:39:58.475 DEBUG [12929]: Closing database connection -- 13:39:58.475 SQL [12929]: pgsql_close() -- 13:40:05.985 INFO [12993]: COREGRADE is starting... -- 13:40:05.986 INFO [12993]: Version from config: 1.0 -- 13:40:05.986 DEBUG [12993]: Connecting to database... -- 13:40:05.986 DEBUG [12993]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:40:05.986 SQL [12993]: pgsql_db_connect() -- 13:40:06.006 INFO [12927]: COREGRADE is starting... -- 13:40:06.006 INFO [12927]: Version from config: 1.0 -- 13:40:06.006 DEBUG [12927]: Connecting to database... -- 13:40:06.006 DEBUG [12927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:40:06.006 SQL [12927]: pgsql_db_connect() -- 13:40:05.990 DEBUG [12993]: Database connection successful -- 13:40:05.990 INFO [12993]: _SERVER found -- 13:40:05.990 INFO [12993]: REMOTE_ADDR = 10.0.0.15 -- 13:40:05.990 INFO [12993]: SERVER_NAME = oameye.works.coregrade.com -- 13:40:05.990 INFO [12993]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=gahid862rjmlbl1fp5v7s6j288mcvqf9 -- 13:40:05.990 INFO [12993]: QUERY_STRING = /auth/resetpass -- 13:40:05.990 INFO [12993]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:40:06.022 INFO [12993]: COREGRADE is stopping... -- 13:40:06.022 DEBUG [12993]: Closing database connection -- 13:40:06.022 SQL [12993]: pgsql_close() -- 13:40:06.010 DEBUG [12927]: Database connection successful -- 13:40:06.010 INFO [12927]: _SERVER found -- 13:40:06.010 INFO [12927]: REMOTE_ADDR = 10.0.0.15 -- 13:40:06.010 INFO [12927]: SERVER_NAME = oameye.works.coregrade.com -- 13:40:06.010 INFO [12927]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=gahid862rjmlbl1fp5v7s6j288mcvqf9 -- 13:40:06.010 INFO [12927]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:40:06.010 INFO [12927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:40:06.022 INFO [12927]: COREGRADE is stopping... -- 13:40:06.022 DEBUG [12927]: Closing database connection -- 13:40:06.022 SQL [12927]: pgsql_close() -- 13:48:46.426 INFO [13035]: COREGRADE is starting... -- 13:48:46.426 INFO [13035]: Version from config: 1.0 -- 13:48:46.426 DEBUG [13035]: Connecting to database... -- 13:48:46.426 DEBUG [13035]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:48:46.426 SQL [13035]: pgsql_db_connect() -- 13:48:46.431 DEBUG [13035]: Database connection successful -- 13:48:46.431 INFO [13035]: _SERVER found -- 13:48:46.431 INFO [13035]: REMOTE_ADDR = 10.0.0.15 -- 13:48:46.431 INFO [13035]: SERVER_NAME = oameye.works.coregrade.com -- 13:48:46.431 INFO [13035]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=gahid862rjmlbl1fp5v7s6j288mcvqf9 -- 13:48:46.431 INFO [13035]: QUERY_STRING = -- 13:48:46.431 INFO [13035]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:48:46.464 INFO [13035]: COREGRADE is stopping... -- 13:48:46.464 DEBUG [13035]: Closing database connection -- 13:48:46.464 SQL [13035]: pgsql_close() -- 13:48:46.488 INFO [13035]: COREGRADE is starting... -- 13:48:46.488 INFO [13035]: Version from config: 1.0 -- 13:48:46.488 DEBUG [13035]: Connecting to database... -- 13:48:46.488 DEBUG [13035]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:48:46.488 SQL [13035]: pgsql_db_connect() -- 13:48:46.493 DEBUG [13035]: Database connection successful -- 13:48:46.493 INFO [13035]: _SERVER found -- 13:48:46.493 INFO [13035]: REMOTE_ADDR = 10.0.0.15 -- 13:48:46.493 INFO [13035]: SERVER_NAME = oameye.works.coregrade.com -- 13:48:46.493 INFO [13035]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=gahid862rjmlbl1fp5v7s6j288mcvqf9 -- 13:48:46.493 INFO [13035]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:48:46.493 INFO [13035]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:48:46.505 INFO [13035]: COREGRADE is stopping... -- 13:48:46.505 DEBUG [13035]: Closing database connection -- 13:48:46.505 SQL [13035]: pgsql_close() -- 13:48:48.266 INFO [13035]: COREGRADE is starting... -- 13:48:48.266 INFO [13035]: Version from config: 1.0 -- 13:48:48.266 DEBUG [13035]: Connecting to database... -- 13:48:48.266 DEBUG [13035]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:48:48.267 SQL [13035]: pgsql_db_connect() -- 13:48:48.272 INFO [12931]: COREGRADE is starting... -- 13:48:48.272 INFO [12931]: Version from config: 1.0 -- 13:48:48.272 DEBUG [12931]: Connecting to database... -- 13:48:48.272 DEBUG [12931]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:48:48.272 SQL [12931]: pgsql_db_connect() -- 13:48:48.271 DEBUG [13035]: Database connection successful -- 13:48:48.271 INFO [13035]: _SERVER found -- 13:48:48.271 INFO [13035]: REMOTE_ADDR = 10.0.0.15 -- 13:48:48.271 INFO [13035]: SERVER_NAME = oameye.works.coregrade.com -- 13:48:48.271 INFO [13035]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=lruudvib1gvshl4v1ah8v6jcvdq2heo2 -- 13:48:48.271 INFO [13035]: QUERY_STRING = /auth -- 13:48:48.271 INFO [13035]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:48:48.304 INFO [13035]: COREGRADE is stopping... -- 13:48:48.304 DEBUG [13035]: Closing database connection -- 13:48:48.304 SQL [13035]: pgsql_close() -- 13:48:48.276 DEBUG [12931]: Database connection successful -- 13:48:48.276 INFO [12931]: _SERVER found -- 13:48:48.276 INFO [12931]: REMOTE_ADDR = 10.0.0.15 -- 13:48:48.276 INFO [12931]: SERVER_NAME = oameye.works.coregrade.com -- 13:48:48.276 INFO [12931]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=lruudvib1gvshl4v1ah8v6jcvdq2heo2 -- 13:48:48.276 INFO [12931]: QUERY_STRING = /welcome/viewLogin -- 13:48:48.276 INFO [12931]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:48:48.309 INFO [12931]: COREGRADE is stopping... -- 13:48:48.309 DEBUG [12931]: Closing database connection -- 13:48:48.309 SQL [12931]: pgsql_close() -- 13:48:48.334 INFO [12931]: COREGRADE is starting... -- 13:48:48.334 INFO [12931]: Version from config: 1.0 -- 13:48:48.334 DEBUG [12931]: Connecting to database... -- 13:48:48.334 DEBUG [12931]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:48:48.334 SQL [12931]: pgsql_db_connect() -- 13:48:48.338 DEBUG [12931]: Database connection successful -- 13:48:48.338 INFO [12931]: _SERVER found -- 13:48:48.338 INFO [12931]: REMOTE_ADDR = 10.0.0.15 -- 13:48:48.338 INFO [12931]: SERVER_NAME = oameye.works.coregrade.com -- 13:48:48.338 INFO [12931]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=lruudvib1gvshl4v1ah8v6jcvdq2heo2 -- 13:48:48.338 INFO [12931]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:48:48.338 INFO [12931]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:48:48.350 INFO [12931]: COREGRADE is stopping... -- 13:48:48.350 DEBUG [12931]: Closing database connection -- 13:48:48.350 SQL [12931]: pgsql_close() -- 13:48:55.665 INFO [12930]: COREGRADE is starting... -- 13:48:55.665 INFO [12930]: Version from config: 1.0 -- 13:48:55.665 DEBUG [12930]: Connecting to database... -- 13:48:55.666 DEBUG [12930]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:48:55.666 SQL [12930]: pgsql_db_connect() -- 13:48:55.727 INFO [13164]: COREGRADE is starting... -- 13:48:55.728 INFO [13164]: Version from config: 1.0 -- 13:48:55.728 DEBUG [13164]: Connecting to database... -- 13:48:55.728 DEBUG [13164]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:48:55.728 SQL [13164]: pgsql_db_connect() -- 13:48:55.670 DEBUG [12930]: Database connection successful -- 13:48:55.670 INFO [12930]: _SERVER found -- 13:48:55.670 INFO [12930]: REMOTE_ADDR = 10.0.0.15 -- 13:48:55.670 INFO [12930]: SERVER_NAME = oameye.works.coregrade.com -- 13:48:55.670 INFO [12930]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=lruudvib1gvshl4v1ah8v6jcvdq2heo2 -- 13:48:55.670 INFO [12930]: QUERY_STRING = /auth/resetpass -- 13:48:55.670 INFO [12930]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:48:55.740 INFO [12930]: COREGRADE is stopping... -- 13:48:55.740 DEBUG [12930]: Closing database connection -- 13:48:55.740 SQL [12930]: pgsql_close() -- 13:48:55.732 DEBUG [13164]: Database connection successful -- 13:48:55.732 INFO [13164]: _SERVER found -- 13:48:55.732 INFO [13164]: REMOTE_ADDR = 10.0.0.15 -- 13:48:55.732 INFO [13164]: SERVER_NAME = oameye.works.coregrade.com -- 13:48:55.732 INFO [13164]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=lruudvib1gvshl4v1ah8v6jcvdq2heo2 -- 13:48:55.732 INFO [13164]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:48:55.732 INFO [13164]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:48:55.744 INFO [13164]: COREGRADE is stopping... -- 13:48:55.745 DEBUG [13164]: Closing database connection -- 13:48:55.745 SQL [13164]: pgsql_close() -- 14:16:11.014 INFO [23800]: COREGRADE is starting... -- 14:16:11.015 INFO [23800]: Version from config: 1.0 -- 14:16:11.015 DEBUG [23800]: Connecting to database... -- 14:16:11.015 DEBUG [23800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:16:11.015 SQL [23800]: pgsql_db_connect() -- 14:16:11.020 DEBUG [23800]: Database connection successful -- 14:16:11.020 INFO [23800]: _SERVER found -- 14:16:11.020 INFO [23800]: REMOTE_ADDR = 10.0.0.15 -- 14:16:11.020 INFO [23800]: SERVER_NAME = oameye.works.coregrade.com -- 14:16:11.020 INFO [23800]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=lruudvib1gvshl4v1ah8v6jcvdq2heo2 -- 14:16:11.020 INFO [23800]: QUERY_STRING = -- 14:16:11.020 INFO [23800]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:16:11.070 INFO [23800]: COREGRADE is stopping... -- 14:16:11.071 DEBUG [23800]: Closing database connection -- 14:16:11.071 SQL [23800]: pgsql_close() -- 14:16:11.087 INFO [23801]: COREGRADE is starting... -- 14:16:11.087 INFO [23801]: Version from config: 1.0 -- 14:16:11.087 DEBUG [23801]: Connecting to database... -- 14:16:11.087 DEBUG [23801]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:16:11.087 SQL [23801]: pgsql_db_connect() -- 14:16:11.092 DEBUG [23801]: Database connection successful -- 14:16:11.092 INFO [23801]: _SERVER found -- 14:16:11.092 INFO [23801]: REMOTE_ADDR = 10.0.0.15 -- 14:16:11.092 INFO [23801]: SERVER_NAME = oameye.works.coregrade.com -- 14:16:11.092 INFO [23801]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=lruudvib1gvshl4v1ah8v6jcvdq2heo2 -- 14:16:11.092 INFO [23801]: QUERY_STRING = /assets/img/footer_1.jpg -- 14:16:11.092 INFO [23801]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:16:11.108 INFO [23801]: COREGRADE is stopping... -- 14:16:11.108 DEBUG [23801]: Closing database connection -- 14:16:11.108 SQL [23801]: pgsql_close() -- 14:16:12.992 INFO [23800]: COREGRADE is starting... -- 14:16:12.992 INFO [23800]: Version from config: 1.0 -- 14:16:12.992 DEBUG [23800]: Connecting to database... -- 14:16:12.992 DEBUG [23800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:16:12.992 SQL [23800]: pgsql_db_connect() -- 14:16:13.007 INFO [23801]: COREGRADE is starting... -- 14:16:13.007 INFO [23801]: Version from config: 1.0 -- 14:16:13.007 DEBUG [23801]: Connecting to database... -- 14:16:13.007 DEBUG [23801]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:16:13.007 SQL [23801]: pgsql_db_connect() -- 14:16:12.997 DEBUG [23800]: Database connection successful -- 14:16:12.997 INFO [23800]: _SERVER found -- 14:16:12.997 INFO [23800]: REMOTE_ADDR = 10.0.0.15 -- 14:16:12.997 INFO [23800]: SERVER_NAME = oameye.works.coregrade.com -- 14:16:12.997 INFO [23800]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=pkll68mma7mv8ilu0m2kkqbqtt27nsnv -- 14:16:12.997 INFO [23800]: QUERY_STRING = /welcome/viewLogin -- 14:16:12.997 INFO [23800]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:16:13.033 INFO [23800]: COREGRADE is stopping... -- 14:16:13.033 DEBUG [23800]: Closing database connection -- 14:16:13.033 SQL [23800]: pgsql_close() -- 14:16:13.012 DEBUG [23801]: Database connection successful -- 14:16:13.012 INFO [23801]: _SERVER found -- 14:16:13.012 INFO [23801]: REMOTE_ADDR = 10.0.0.15 -- 14:16:13.012 INFO [23801]: SERVER_NAME = oameye.works.coregrade.com -- 14:16:13.012 INFO [23801]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=pkll68mma7mv8ilu0m2kkqbqtt27nsnv -- 14:16:13.012 INFO [23801]: QUERY_STRING = /auth -- 14:16:13.012 INFO [23801]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:16:13.049 INFO [23801]: COREGRADE is stopping... -- 14:16:13.049 DEBUG [23801]: Closing database connection -- 14:16:13.049 SQL [23801]: pgsql_close() -- 14:16:13.055 INFO [23800]: COREGRADE is starting... -- 14:16:13.056 INFO [23800]: Version from config: 1.0 -- 14:16:13.056 DEBUG [23800]: Connecting to database... -- 14:16:13.056 DEBUG [23800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:16:13.056 SQL [23800]: pgsql_db_connect() -- 14:16:13.059 DEBUG [23800]: Database connection successful -- 14:16:13.060 INFO [23800]: _SERVER found -- 14:16:13.060 INFO [23800]: REMOTE_ADDR = 10.0.0.15 -- 14:16:13.060 INFO [23800]: SERVER_NAME = oameye.works.coregrade.com -- 14:16:13.060 INFO [23800]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=pkll68mma7mv8ilu0m2kkqbqtt27nsnv -- 14:16:13.060 INFO [23800]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:16:13.060 INFO [23800]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:16:13.072 INFO [23800]: COREGRADE is stopping... -- 14:16:13.072 DEBUG [23800]: Closing database connection -- 14:16:13.072 SQL [23800]: pgsql_close() -- 14:16:40.009 INFO [23802]: COREGRADE is starting... -- 14:16:40.009 INFO [23802]: Version from config: 1.0 -- 14:16:40.009 DEBUG [23802]: Connecting to database... -- 14:16:40.009 DEBUG [23802]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:16:40.009 SQL [23802]: pgsql_db_connect() -- 14:16:40.037 INFO [23803]: COREGRADE is starting... -- 14:16:40.037 INFO [23803]: Version from config: 1.0 -- 14:16:40.037 DEBUG [23803]: Connecting to database... -- 14:16:40.037 DEBUG [23803]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:16:40.037 SQL [23803]: pgsql_db_connect() -- 14:16:40.013 DEBUG [23802]: Database connection successful -- 14:16:40.013 INFO [23802]: _SERVER found -- 14:16:40.013 INFO [23802]: REMOTE_ADDR = 10.0.0.15 -- 14:16:40.013 INFO [23802]: SERVER_NAME = oameye.works.coregrade.com -- 14:16:40.013 INFO [23802]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=pkll68mma7mv8ilu0m2kkqbqtt27nsnv -- 14:16:40.013 INFO [23802]: QUERY_STRING = /auth/resetpass -- 14:16:40.013 INFO [23802]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:16:40.053 INFO [23802]: COREGRADE is stopping... -- 14:16:40.053 DEBUG [23802]: Closing database connection -- 14:16:40.053 SQL [23802]: pgsql_close() -- 14:16:40.041 DEBUG [23803]: Database connection successful -- 14:16:40.041 INFO [23803]: _SERVER found -- 14:16:40.041 INFO [23803]: REMOTE_ADDR = 10.0.0.15 -- 14:16:40.041 INFO [23803]: SERVER_NAME = oameye.works.coregrade.com -- 14:16:40.041 INFO [23803]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=pkll68mma7mv8ilu0m2kkqbqtt27nsnv -- 14:16:40.041 INFO [23803]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:16:40.041 INFO [23803]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:16:40.057 INFO [23803]: COREGRADE is stopping... -- 14:16:40.057 DEBUG [23803]: Closing database connection -- 14:16:40.057 SQL [23803]: pgsql_close() -- 14:16:48.155 INFO [23804]: COREGRADE is starting... -- 14:16:48.156 INFO [23804]: Version from config: 1.0 -- 14:16:48.156 DEBUG [23804]: Connecting to database... -- 14:16:48.156 DEBUG [23804]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:16:48.156 SQL [23804]: pgsql_db_connect() -- 14:16:48.198 INFO [23804]: COREGRADE is starting... -- 14:16:48.198 INFO [23804]: Version from config: 1.0 -- 14:16:48.198 DEBUG [23804]: Connecting to database... -- 14:16:48.198 DEBUG [23804]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:16:48.198 SQL [23804]: pgsql_db_connect() -- 14:16:48.202 DEBUG [23804]: Database connection successful -- 14:16:48.202 INFO [23804]: _SERVER found -- 14:16:48.202 INFO [23804]: REMOTE_ADDR = 10.0.0.15 -- 14:16:48.202 INFO [23804]: SERVER_NAME = oameye.works.coregrade.com -- 14:16:48.202 INFO [23804]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=pkll68mma7mv8ilu0m2kkqbqtt27nsnv -- 14:16:48.202 INFO [23804]: QUERY_STRING = -- 14:16:48.202 INFO [23804]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:16:48.202 INFO [23804]: SystemStatus()09-09-********~************ -- 14:16:48.202 INFO [23804]: long coregrade_api_main(CVars in, CVars &out) -- 14:16:48.202 INFO [23804]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 14:16:48.202 INFO [23804]: account calls -- 14:16:48.202 INFO [23804]: account_calls() -- 14:16:48.202 INFO [23804]: passwordReset() -- 14:16:48.202 INFO [23804]: startPassReset() -- 14:16:48.202 FLOG_MAX [23804]: REQ_STRING(username) -- 14:16:48.203 FLOG_MAX [23804]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:16:48.203 SQL [23804]: pgsql_query() -- 14:16:48.203 SQL [23804]: About to run query: -- 14:16:48.203 SQL [23804]: SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') -- 14:16:48.206 SQL [23804]: Found rows: 1 -- 14:16:48.206 FLOG_MAX [23804]: load_db_record(SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') ) num_cols=2 -- 14:16:48.206 SQL [23804]: pgsql_exec() -- 14:16:48.206 SQL [23804]: About to run query: -- 14:16:48.206 SQL [23804]: UPDATE resetpassword SET status=7 WHERE status NOT IN (3,5) AND member_id=5 -- 14:16:48.206 SQL [23804]: Affected rows: ERROR -- 14:16:48.206 FLOG_MAX [23804]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:16:48.206 SQL [23804]: pgsql_query() -- 14:16:48.206 SQL [23804]: About to run query: -- 14:16:48.206 SQL [23804]: SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 14:16:48.20319-04') AS reset_key -- 14:16:48.237 SQL [23804]: Found rows: 1 -- 14:16:48.237 FLOG_MAX [23804]: load_db_record(SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 14:16:48.20319-04') AS reset_key) num_cols=2 -- 14:16:48.237 FLOG_MAX [23804]: insert_db_record() -- 14:16:48.237 SQL [23804]: pgsql_exec() -- 14:16:48.237 SQL [23804]: About to run query: -- 14:16:48.237 SQL [23804]: INSERT INTO resetpassword (loc,member_id,reset_key,reset_pin,username) VALUES ('10.0.0.15','5','ee2490a1f0a533f08eea61f989662930','46946','ameye+11@chiefsoft.com') -- 14:16:48.238 SQL [23804]: Affected rows: ERROR -- 14:16:48.238 FLOG_MAX [23804]: SELECT currval('resetpassword_id_seq') -- 14:16:48.238 SQL [23804]: pgsql_query() -- 14:16:48.238 SQL [23804]: About to run query: -- 14:16:48.238 SQL [23804]: SELECT currval('resetpassword_id_seq') -- 14:16:48.238 SQL [23804]: Found rows: ERROR -- 14:16:48.238 FLOG_MAX [23804]: SQL error -- 14:16:48.238 INFO [23804]: RET: member_id=5 -- 14:16:48.238 INFO [23804]: RET: reset_id=-1 -- 14:16:48.238 INFO [23804]: RET: reset_seed=2020-04-12 14:16:48.20319-04 -- 14:16:48.238 INFO [23804]: RET: reset_seed==REMOVED -- 14:16:48.238 INFO [23804]: RET: result=YES I GET TO BACK END -- 14:16:48.240 INFO [23804]: COREGRADE is stopping... -- 14:16:48.240 DEBUG [23804]: Closing database connection -- 14:16:48.240 SQL [23804]: pgsql_close() -- 14:16:48.160 DEBUG [23804]: Database connection successful -- 14:16:48.160 INFO [23804]: _SERVER found -- 14:16:48.160 INFO [23804]: REMOTE_ADDR = 10.0.0.15 -- 14:16:48.160 INFO [23804]: SERVER_NAME = oameye.works.coregrade.com -- 14:16:48.160 INFO [23804]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=pkll68mma7mv8ilu0m2kkqbqtt27nsnv -- 14:16:48.160 INFO [23804]: QUERY_STRING = /auth/resetpass -- 14:16:48.160 INFO [23804]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:16:48.240 INFO [23804]: COREGRADE is stopping... -- 14:16:48.240 DEBUG [23804]: Closing database connection -- 14:16:48.240 SQL [23804]: pgsql_close() -- 14:16:48.332 INFO [23804]: COREGRADE is starting... -- 14:16:48.332 INFO [23804]: Version from config: 1.0 -- 14:16:48.332 DEBUG [23804]: Connecting to database... -- 14:16:48.332 DEBUG [23804]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:16:48.332 SQL [23804]: pgsql_db_connect() -- 14:16:48.337 DEBUG [23804]: Database connection successful -- 14:16:48.337 INFO [23804]: _SERVER found -- 14:16:48.337 INFO [23804]: REMOTE_ADDR = 10.0.0.15 -- 14:16:48.337 INFO [23804]: SERVER_NAME = oameye.works.coregrade.com -- 14:16:48.337 INFO [23804]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=pkll68mma7mv8ilu0m2kkqbqtt27nsnv -- 14:16:48.337 INFO [23804]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:16:48.337 INFO [23804]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:16:48.348 INFO [23804]: COREGRADE is stopping... -- 14:16:48.349 DEBUG [23804]: Closing database connection -- 14:16:48.349 SQL [23804]: pgsql_close() -- 14:21:07.444 INFO [24157]: COREGRADE is starting... -- 14:21:07.444 INFO [24157]: Version from config: 1.0 -- 14:21:07.444 DEBUG [24157]: Connecting to database... -- 14:21:07.444 DEBUG [24157]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:21:07.444 SQL [24157]: pgsql_db_connect() -- 14:21:07.449 DEBUG [24157]: Database connection successful -- 14:21:07.449 INFO [24157]: _SERVER found -- 14:21:07.449 INFO [24157]: REMOTE_ADDR = 10.0.0.15 -- 14:21:07.449 INFO [24157]: SERVER_NAME = oameye.works.coregrade.com -- 14:21:07.449 INFO [24157]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=pkll68mma7mv8ilu0m2kkqbqtt27nsnv -- 14:21:07.449 INFO [24157]: QUERY_STRING = -- 14:21:07.449 INFO [24157]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:21:07.494 INFO [24157]: COREGRADE is stopping... -- 14:21:07.494 DEBUG [24157]: Closing database connection -- 14:21:07.494 SQL [24157]: pgsql_close() -- 14:21:07.586 INFO [24157]: COREGRADE is starting... -- 14:21:07.587 INFO [24157]: Version from config: 1.0 -- 14:21:07.587 DEBUG [24157]: Connecting to database... -- 14:21:07.587 DEBUG [24157]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:21:07.587 SQL [24157]: pgsql_db_connect() -- 14:21:07.591 DEBUG [24157]: Database connection successful -- 14:21:07.591 INFO [24157]: _SERVER found -- 14:21:07.591 INFO [24157]: REMOTE_ADDR = 10.0.0.15 -- 14:21:07.591 INFO [24157]: SERVER_NAME = oameye.works.coregrade.com -- 14:21:07.591 INFO [24157]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=pkll68mma7mv8ilu0m2kkqbqtt27nsnv -- 14:21:07.591 INFO [24157]: QUERY_STRING = /assets/img/footer_1.jpg -- 14:21:07.591 INFO [24157]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:21:07.603 INFO [24157]: COREGRADE is stopping... -- 14:21:07.603 DEBUG [24157]: Closing database connection -- 14:21:07.603 SQL [24157]: pgsql_close() -- 14:21:09.306 INFO [24157]: COREGRADE is starting... -- 14:21:09.307 INFO [24157]: Version from config: 1.0 -- 14:21:09.307 DEBUG [24157]: Connecting to database... -- 14:21:09.307 DEBUG [24157]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:21:09.307 SQL [24157]: pgsql_db_connect() -- 14:21:09.311 DEBUG [24157]: Database connection successful -- 14:21:09.311 INFO [24157]: _SERVER found -- 14:21:09.311 INFO [24157]: REMOTE_ADDR = 10.0.0.15 -- 14:21:09.311 INFO [24157]: SERVER_NAME = oameye.works.coregrade.com -- 14:21:09.311 INFO [24157]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=pkll68mma7mv8ilu0m2kkqbqtt27nsnv -- 14:21:09.311 INFO [24157]: QUERY_STRING = /welcome/viewLogin -- 14:21:09.311 INFO [24157]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:21:09.343 INFO [24157]: COREGRADE is stopping... -- 14:21:09.343 DEBUG [24157]: Closing database connection -- 14:21:09.343 SQL [24157]: pgsql_close() -- 14:21:09.372 INFO [24157]: COREGRADE is starting... -- 14:21:09.372 INFO [24157]: Version from config: 1.0 -- 14:21:09.372 DEBUG [24157]: Connecting to database... -- 14:21:09.372 DEBUG [24157]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:21:09.372 SQL [24157]: pgsql_db_connect() -- 14:21:09.390 INFO [24158]: COREGRADE is starting... -- 14:21:09.390 INFO [24158]: Version from config: 1.0 -- 14:21:09.390 DEBUG [24158]: Connecting to database... -- 14:21:09.390 DEBUG [24158]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:21:09.390 SQL [24158]: pgsql_db_connect() -- 14:21:09.394 DEBUG [24158]: Database connection successful -- 14:21:09.394 INFO [24158]: _SERVER found -- 14:21:09.394 INFO [24158]: REMOTE_ADDR = 10.0.0.15 -- 14:21:09.394 INFO [24158]: SERVER_NAME = oameye.works.coregrade.com -- 14:21:09.394 INFO [24158]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=pkll68mma7mv8ilu0m2kkqbqtt27nsnv -- 14:21:09.394 INFO [24158]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:21:09.394 INFO [24158]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:21:09.409 INFO [24158]: COREGRADE is stopping... -- 14:21:09.409 DEBUG [24158]: Closing database connection -- 14:21:09.409 SQL [24158]: pgsql_close() -- 14:21:09.376 DEBUG [24157]: Database connection successful -- 14:21:09.376 INFO [24157]: _SERVER found -- 14:21:09.376 INFO [24157]: REMOTE_ADDR = 10.0.0.15 -- 14:21:09.376 INFO [24157]: SERVER_NAME = oameye.works.coregrade.com -- 14:21:09.376 INFO [24157]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=pkll68mma7mv8ilu0m2kkqbqtt27nsnv -- 14:21:09.376 INFO [24157]: QUERY_STRING = /auth -- 14:21:09.376 INFO [24157]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:21:09.411 INFO [24157]: COREGRADE is stopping... -- 14:21:09.411 DEBUG [24157]: Closing database connection -- 14:21:09.411 SQL [24157]: pgsql_close() -- 14:21:11.541 INFO [24157]: COREGRADE is starting... -- 14:21:11.541 INFO [24157]: Version from config: 1.0 -- 14:21:11.541 DEBUG [24157]: Connecting to database... -- 14:21:11.541 DEBUG [24157]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:21:11.541 SQL [24157]: pgsql_db_connect() -- 14:21:11.547 INFO [24158]: COREGRADE is starting... -- 14:21:11.547 INFO [24158]: Version from config: 1.0 -- 14:21:11.547 DEBUG [24158]: Connecting to database... -- 14:21:11.547 DEBUG [24158]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:21:11.547 SQL [24158]: pgsql_db_connect() -- 14:21:11.551 DEBUG [24158]: Database connection successful -- 14:21:11.551 INFO [24158]: _SERVER found -- 14:21:11.551 INFO [24158]: REMOTE_ADDR = 10.0.0.15 -- 14:21:11.551 INFO [24158]: SERVER_NAME = oameye.works.coregrade.com -- 14:21:11.551 INFO [24158]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=pkll68mma7mv8ilu0m2kkqbqtt27nsnv -- 14:21:11.551 INFO [24158]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:21:11.551 INFO [24158]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:21:11.564 INFO [24158]: COREGRADE is stopping... -- 14:21:11.564 DEBUG [24158]: Closing database connection -- 14:21:11.564 SQL [24158]: pgsql_close() -- 14:21:11.546 DEBUG [24157]: Database connection successful -- 14:21:11.546 INFO [24157]: _SERVER found -- 14:21:11.546 INFO [24157]: REMOTE_ADDR = 10.0.0.15 -- 14:21:11.546 INFO [24157]: SERVER_NAME = oameye.works.coregrade.com -- 14:21:11.546 INFO [24157]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=pkll68mma7mv8ilu0m2kkqbqtt27nsnv -- 14:21:11.546 INFO [24157]: QUERY_STRING = /auth/resetpass -- 14:21:11.546 INFO [24157]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:21:11.580 INFO [24157]: COREGRADE is stopping... -- 14:21:11.580 DEBUG [24157]: Closing database connection -- 14:21:11.580 SQL [24157]: pgsql_close() -- 14:21:18.631 INFO [24160]: COREGRADE is starting... -- 14:21:18.631 INFO [24160]: Version from config: 1.0 -- 14:21:18.631 DEBUG [24160]: Connecting to database... -- 14:21:18.631 DEBUG [24160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:21:18.631 SQL [24160]: pgsql_db_connect() -- 14:21:18.673 INFO [24160]: COREGRADE is starting... -- 14:21:18.673 INFO [24160]: Version from config: 1.0 -- 14:21:18.673 DEBUG [24160]: Connecting to database... -- 14:21:18.673 DEBUG [24160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:21:18.673 SQL [24160]: pgsql_db_connect() -- 14:21:18.677 DEBUG [24160]: Database connection successful -- 14:21:18.677 INFO [24160]: _SERVER found -- 14:21:18.677 INFO [24160]: REMOTE_ADDR = 10.0.0.15 -- 14:21:18.677 INFO [24160]: SERVER_NAME = oameye.works.coregrade.com -- 14:21:18.677 INFO [24160]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=pkll68mma7mv8ilu0m2kkqbqtt27nsnv -- 14:21:18.677 INFO [24160]: QUERY_STRING = -- 14:21:18.677 INFO [24160]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:21:18.677 INFO [24160]: SystemStatus()09-09-********~************ -- 14:21:18.677 INFO [24160]: long coregrade_api_main(CVars in, CVars &out) -- 14:21:18.677 INFO [24160]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 14:21:18.677 INFO [24160]: account calls -- 14:21:18.677 INFO [24160]: account_calls() -- 14:21:18.677 INFO [24160]: passwordReset() -- 14:21:18.677 INFO [24160]: startPassReset() -- 14:21:18.677 FLOG_MAX [24160]: REQ_STRING(username) -- 14:21:18.677 FLOG_MAX [24160]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:21:18.677 SQL [24160]: pgsql_query() -- 14:21:18.677 SQL [24160]: About to run query: -- 14:21:18.677 SQL [24160]: SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') -- 14:21:18.680 SQL [24160]: Found rows: 1 -- 14:21:18.680 FLOG_MAX [24160]: load_db_record(SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') ) num_cols=2 -- 14:21:18.680 SQL [24160]: pgsql_exec() -- 14:21:18.680 SQL [24160]: About to run query: -- 14:21:18.680 SQL [24160]: UPDATE password_reset SET status=7 WHERE status NOT IN (3,5) AND member_id=5 -- 14:21:18.681 SQL [24160]: PQcmdTuples: 0 -- 14:21:18.681 SQL [24160]: Affected rows: 0 -- 14:21:18.681 FLOG_MAX [24160]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:21:18.681 SQL [24160]: pgsql_query() -- 14:21:18.681 SQL [24160]: About to run query: -- 14:21:18.681 SQL [24160]: SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 14:21:18.678044-04') AS reset_key -- 14:21:18.682 SQL [24160]: Found rows: 1 -- 14:21:18.682 FLOG_MAX [24160]: load_db_record(SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 14:21:18.678044-04') AS reset_key) num_cols=2 -- 14:21:18.682 FLOG_MAX [24160]: insert_db_record() -- 14:21:18.682 SQL [24160]: pgsql_exec() -- 14:21:18.682 SQL [24160]: About to run query: -- 14:21:18.682 SQL [24160]: INSERT INTO password_reset (loc,member_id,reset_key,reset_pin,username) VALUES ('10.0.0.15','5','9f3fb660b6002548a32b880f1748c540','12203','ameye+11@chiefsoft.com') -- 14:21:18.682 SQL [24160]: Affected rows: ERROR -- 14:21:18.682 FLOG_MAX [24160]: SELECT currval('password_reset_id_seq') -- 14:21:18.682 SQL [24160]: pgsql_query() -- 14:21:18.682 SQL [24160]: About to run query: -- 14:21:18.682 SQL [24160]: SELECT currval('password_reset_id_seq') -- 14:21:18.683 SQL [24160]: Found rows: ERROR -- 14:21:18.683 FLOG_MAX [24160]: SQL error -- 14:21:18.683 INFO [24160]: RET: member_id=5 -- 14:21:18.683 INFO [24160]: RET: reset_id=-1 -- 14:21:18.683 INFO [24160]: RET: reset_seed=2020-04-12 14:21:18.678044-04 -- 14:21:18.683 INFO [24160]: RET: reset_seed==REMOVED -- 14:21:18.683 INFO [24160]: RET: result=YES I GET TO BACK END -- 14:21:18.684 INFO [24160]: COREGRADE is stopping... -- 14:21:18.684 DEBUG [24160]: Closing database connection -- 14:21:18.684 SQL [24160]: pgsql_close() -- 14:21:18.635 DEBUG [24160]: Database connection successful -- 14:21:18.635 INFO [24160]: _SERVER found -- 14:21:18.635 INFO [24160]: REMOTE_ADDR = 10.0.0.15 -- 14:21:18.635 INFO [24160]: SERVER_NAME = oameye.works.coregrade.com -- 14:21:18.635 INFO [24160]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=pkll68mma7mv8ilu0m2kkqbqtt27nsnv -- 14:21:18.635 INFO [24160]: QUERY_STRING = /auth/resetpass -- 14:21:18.635 INFO [24160]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:21:18.685 INFO [24160]: COREGRADE is stopping... -- 14:21:18.685 DEBUG [24160]: Closing database connection -- 14:21:18.685 SQL [24160]: pgsql_close() -- 14:21:18.776 INFO [24160]: COREGRADE is starting... -- 14:21:18.776 INFO [24160]: Version from config: 1.0 -- 14:21:18.776 DEBUG [24160]: Connecting to database... -- 14:21:18.776 DEBUG [24160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:21:18.777 SQL [24160]: pgsql_db_connect() -- 14:21:18.781 DEBUG [24160]: Database connection successful -- 14:21:18.781 INFO [24160]: _SERVER found -- 14:21:18.781 INFO [24160]: REMOTE_ADDR = 10.0.0.15 -- 14:21:18.781 INFO [24160]: SERVER_NAME = oameye.works.coregrade.com -- 14:21:18.781 INFO [24160]: HTTP_COOKIE = ci_session=6dj74oqjr7gevpm1dl7kjmhhbd083c8g; _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474 -- 14:21:18.781 INFO [24160]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:21:18.781 INFO [24160]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:21:18.792 INFO [24160]: COREGRADE is stopping... -- 14:21:18.792 DEBUG [24160]: Closing database connection -- 14:21:18.792 SQL [24160]: pgsql_close() -- 14:23:46.700 INFO [24159]: COREGRADE is starting... -- 14:23:46.701 INFO [24159]: Version from config: 1.0 -- 14:23:46.701 DEBUG [24159]: Connecting to database... -- 14:23:46.701 DEBUG [24159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:23:46.701 SQL [24159]: pgsql_db_connect() -- 14:23:46.708 DEBUG [24159]: Database connection successful -- 14:23:46.708 INFO [24159]: _SERVER found -- 14:23:46.708 INFO [24159]: REMOTE_ADDR = 10.0.0.15 -- 14:23:46.708 INFO [24159]: SERVER_NAME = oameye.works.coregrade.com -- 14:23:46.708 INFO [24159]: HTTP_COOKIE = ci_session=6dj74oqjr7gevpm1dl7kjmhhbd083c8g; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 14:23:46.708 INFO [24159]: QUERY_STRING = -- 14:23:46.708 INFO [24159]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:23:46.752 INFO [24159]: COREGRADE is stopping... -- 14:23:46.752 DEBUG [24159]: Closing database connection -- 14:23:46.752 SQL [24159]: pgsql_close() -- 14:23:46.846 INFO [24159]: COREGRADE is starting... -- 14:23:46.846 INFO [24159]: Version from config: 1.0 -- 14:23:46.846 DEBUG [24159]: Connecting to database... -- 14:23:46.846 DEBUG [24159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:23:46.846 SQL [24159]: pgsql_db_connect() -- 14:23:46.850 DEBUG [24159]: Database connection successful -- 14:23:46.850 INFO [24159]: _SERVER found -- 14:23:46.850 INFO [24159]: REMOTE_ADDR = 10.0.0.15 -- 14:23:46.850 INFO [24159]: SERVER_NAME = oameye.works.coregrade.com -- 14:23:46.850 INFO [24159]: HTTP_COOKIE = ci_session=6dj74oqjr7gevpm1dl7kjmhhbd083c8g; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 14:23:46.850 INFO [24159]: QUERY_STRING = /assets/img/footer_1.jpg -- 14:23:46.850 INFO [24159]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:23:46.863 INFO [24159]: COREGRADE is stopping... -- 14:23:46.863 DEBUG [24159]: Closing database connection -- 14:23:46.863 SQL [24159]: pgsql_close() -- 14:23:48.359 INFO [24159]: COREGRADE is starting... -- 14:23:48.359 INFO [24159]: Version from config: 1.0 -- 14:23:48.359 DEBUG [24159]: Connecting to database... -- 14:23:48.359 DEBUG [24159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:23:48.359 SQL [24159]: pgsql_db_connect() -- 14:23:48.363 DEBUG [24159]: Database connection successful -- 14:23:48.363 INFO [24159]: _SERVER found -- 14:23:48.363 INFO [24159]: REMOTE_ADDR = 10.0.0.15 -- 14:23:48.363 INFO [24159]: SERVER_NAME = oameye.works.coregrade.com -- 14:23:48.363 INFO [24159]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=6dj74oqjr7gevpm1dl7kjmhhbd083c8g -- 14:23:48.363 INFO [24159]: QUERY_STRING = /welcome/viewLogin -- 14:23:48.363 INFO [24159]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:23:48.396 INFO [24159]: COREGRADE is stopping... -- 14:23:48.396 DEBUG [24159]: Closing database connection -- 14:23:48.396 SQL [24159]: pgsql_close() -- 14:23:48.427 INFO [24159]: COREGRADE is starting... -- 14:23:48.427 INFO [24159]: Version from config: 1.0 -- 14:23:48.427 DEBUG [24159]: Connecting to database... -- 14:23:48.427 DEBUG [24159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:23:48.427 SQL [24159]: pgsql_db_connect() -- 14:23:48.452 INFO [24161]: COREGRADE is starting... -- 14:23:48.453 INFO [24161]: Version from config: 1.0 -- 14:23:48.453 DEBUG [24161]: Connecting to database... -- 14:23:48.453 DEBUG [24161]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:23:48.453 SQL [24161]: pgsql_db_connect() -- 14:23:48.431 DEBUG [24159]: Database connection successful -- 14:23:48.431 INFO [24159]: _SERVER found -- 14:23:48.431 INFO [24159]: REMOTE_ADDR = 10.0.0.15 -- 14:23:48.431 INFO [24159]: SERVER_NAME = oameye.works.coregrade.com -- 14:23:48.431 INFO [24159]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=6dj74oqjr7gevpm1dl7kjmhhbd083c8g -- 14:23:48.431 INFO [24159]: QUERY_STRING = /auth -- 14:23:48.431 INFO [24159]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:23:48.466 INFO [24159]: COREGRADE is stopping... -- 14:23:48.466 DEBUG [24159]: Closing database connection -- 14:23:48.466 SQL [24159]: pgsql_close() -- 14:23:48.457 DEBUG [24161]: Database connection successful -- 14:23:48.457 INFO [24161]: _SERVER found -- 14:23:48.457 INFO [24161]: REMOTE_ADDR = 10.0.0.15 -- 14:23:48.457 INFO [24161]: SERVER_NAME = oameye.works.coregrade.com -- 14:23:48.457 INFO [24161]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=6dj74oqjr7gevpm1dl7kjmhhbd083c8g -- 14:23:48.457 INFO [24161]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:23:48.457 INFO [24161]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:23:48.472 INFO [24161]: COREGRADE is stopping... -- 14:23:48.472 DEBUG [24161]: Closing database connection -- 14:23:48.472 SQL [24161]: pgsql_close() -- 14:23:50.168 INFO [24161]: COREGRADE is starting... -- 14:23:50.169 INFO [24161]: Version from config: 1.0 -- 14:23:50.169 DEBUG [24161]: Connecting to database... -- 14:23:50.169 DEBUG [24161]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:23:50.169 SQL [24161]: pgsql_db_connect() -- 14:23:50.173 INFO [24159]: COREGRADE is starting... -- 14:23:50.174 INFO [24159]: Version from config: 1.0 -- 14:23:50.174 DEBUG [24159]: Connecting to database... -- 14:23:50.174 DEBUG [24159]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:23:50.174 SQL [24159]: pgsql_db_connect() -- 14:23:50.177 DEBUG [24159]: Database connection successful -- 14:23:50.177 INFO [24159]: _SERVER found -- 14:23:50.177 INFO [24159]: REMOTE_ADDR = 10.0.0.15 -- 14:23:50.177 INFO [24159]: SERVER_NAME = oameye.works.coregrade.com -- 14:23:50.177 INFO [24159]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=6dj74oqjr7gevpm1dl7kjmhhbd083c8g -- 14:23:50.178 INFO [24159]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:23:50.178 INFO [24159]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:23:50.189 INFO [24159]: COREGRADE is stopping... -- 14:23:50.189 DEBUG [24159]: Closing database connection -- 14:23:50.189 SQL [24159]: pgsql_close() -- 14:23:50.173 DEBUG [24161]: Database connection successful -- 14:23:50.173 INFO [24161]: _SERVER found -- 14:23:50.173 INFO [24161]: REMOTE_ADDR = 10.0.0.15 -- 14:23:50.173 INFO [24161]: SERVER_NAME = oameye.works.coregrade.com -- 14:23:50.173 INFO [24161]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=6dj74oqjr7gevpm1dl7kjmhhbd083c8g -- 14:23:50.173 INFO [24161]: QUERY_STRING = /auth/resetpass -- 14:23:50.173 INFO [24161]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:23:50.209 INFO [24161]: COREGRADE is stopping... -- 14:23:50.209 DEBUG [24161]: Closing database connection -- 14:23:50.209 SQL [24161]: pgsql_close() -- 14:24:00.791 INFO [24217]: COREGRADE is starting... -- 14:24:00.791 INFO [24217]: Version from config: 1.0 -- 14:24:00.791 DEBUG [24217]: Connecting to database... -- 14:24:00.791 DEBUG [24217]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:24:00.791 SQL [24217]: pgsql_db_connect() -- 14:24:00.833 INFO [24217]: COREGRADE is starting... -- 14:24:00.833 INFO [24217]: Version from config: 1.0 -- 14:24:00.833 DEBUG [24217]: Connecting to database... -- 14:24:00.833 DEBUG [24217]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:24:00.833 SQL [24217]: pgsql_db_connect() -- 14:24:00.837 DEBUG [24217]: Database connection successful -- 14:24:00.837 INFO [24217]: _SERVER found -- 14:24:00.837 INFO [24217]: REMOTE_ADDR = 10.0.0.15 -- 14:24:00.837 INFO [24217]: SERVER_NAME = oameye.works.coregrade.com -- 14:24:00.837 INFO [24217]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=6dj74oqjr7gevpm1dl7kjmhhbd083c8g -- 14:24:00.837 INFO [24217]: QUERY_STRING = -- 14:24:00.837 INFO [24217]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:24:00.837 INFO [24217]: SystemStatus()09-09-********~************ -- 14:24:00.837 INFO [24217]: long coregrade_api_main(CVars in, CVars &out) -- 14:24:00.837 INFO [24217]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 14:24:00.837 INFO [24217]: account calls -- 14:24:00.837 INFO [24217]: account_calls() -- 14:24:00.837 INFO [24217]: passwordReset() -- 14:24:00.837 INFO [24217]: startPassReset() -- 14:24:00.837 FLOG_MAX [24217]: REQ_STRING(username) -- 14:24:00.837 FLOG_MAX [24217]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:24:00.837 SQL [24217]: pgsql_query() -- 14:24:00.837 SQL [24217]: About to run query: -- 14:24:00.837 SQL [24217]: SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') -- 14:24:00.840 SQL [24217]: Found rows: 1 -- 14:24:00.840 FLOG_MAX [24217]: load_db_record(SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') ) num_cols=2 -- 14:24:00.840 SQL [24217]: pgsql_exec() -- 14:24:00.840 SQL [24217]: About to run query: -- 14:24:00.840 SQL [24217]: UPDATE password_reset SET status=7 WHERE status NOT IN (3,5) AND member_id=5 -- 14:24:00.841 SQL [24217]: PQcmdTuples: 0 -- 14:24:00.841 SQL [24217]: Affected rows: 0 -- 14:24:00.841 FLOG_MAX [24217]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:24:00.841 SQL [24217]: pgsql_query() -- 14:24:00.841 SQL [24217]: About to run query: -- 14:24:00.841 SQL [24217]: SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 14:24:00.838041-04') AS reset_key -- 14:24:00.842 SQL [24217]: Found rows: 1 -- 14:24:00.842 FLOG_MAX [24217]: load_db_record(SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 14:24:00.838041-04') AS reset_key) num_cols=2 -- 14:24:00.842 FLOG_MAX [24217]: insert_db_record() -- 14:24:00.842 SQL [24217]: pgsql_exec() -- 14:24:00.842 SQL [24217]: About to run query: -- 14:24:00.842 SQL [24217]: INSERT INTO password_reset (loc,member_id,reset_key,reset_pin,username) VALUES ('10.0.0.15','5','886b72f3409559392ff70e8a3911b1b8','49640','ameye+11@chiefsoft.com') -- 14:24:00.842 SQL [24217]: Affected rows: ERROR -- 14:24:00.842 FLOG_MAX [24217]: SELECT currval('password_reset_id_seq') -- 14:24:00.842 SQL [24217]: pgsql_query() -- 14:24:00.842 SQL [24217]: About to run query: -- 14:24:00.842 SQL [24217]: SELECT currval('password_reset_id_seq') -- 14:24:00.842 SQL [24217]: Found rows: ERROR -- 14:24:00.842 FLOG_MAX [24217]: SQL error -- 14:24:00.842 INFO [24217]: RET: member_id=5 -- 14:24:00.842 INFO [24217]: RET: reset_id=-1 -- 14:24:00.842 INFO [24217]: RET: reset_seed=2020-04-12 14:24:00.838041-04 -- 14:24:00.842 INFO [24217]: RET: reset_seed==REMOVED -- 14:24:00.842 INFO [24217]: RET: result=YES I GET TO BACK END -- 14:24:00.844 INFO [24217]: COREGRADE is stopping... -- 14:24:00.844 DEBUG [24217]: Closing database connection -- 14:24:00.844 SQL [24217]: pgsql_close() -- 14:24:00.796 DEBUG [24217]: Database connection successful -- 14:24:00.796 INFO [24217]: _SERVER found -- 14:24:00.796 INFO [24217]: REMOTE_ADDR = 10.0.0.15 -- 14:24:00.796 INFO [24217]: SERVER_NAME = oameye.works.coregrade.com -- 14:24:00.796 INFO [24217]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=6dj74oqjr7gevpm1dl7kjmhhbd083c8g -- 14:24:00.796 INFO [24217]: QUERY_STRING = /auth/resetpass -- 14:24:00.796 INFO [24217]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:24:00.844 INFO [24217]: COREGRADE is stopping... -- 14:24:00.844 DEBUG [24217]: Closing database connection -- 14:24:00.844 SQL [24217]: pgsql_close() -- 14:24:00.949 INFO [24217]: COREGRADE is starting... -- 14:24:00.950 INFO [24217]: Version from config: 1.0 -- 14:24:00.950 DEBUG [24217]: Connecting to database... -- 14:24:00.950 DEBUG [24217]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:24:00.950 SQL [24217]: pgsql_db_connect() -- 14:24:00.954 DEBUG [24217]: Database connection successful -- 14:24:00.954 INFO [24217]: _SERVER found -- 14:24:00.954 INFO [24217]: REMOTE_ADDR = 10.0.0.15 -- 14:24:00.954 INFO [24217]: SERVER_NAME = oameye.works.coregrade.com -- 14:24:00.954 INFO [24217]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=6dj74oqjr7gevpm1dl7kjmhhbd083c8g -- 14:24:00.954 INFO [24217]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:24:00.954 INFO [24217]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:24:00.965 INFO [24217]: COREGRADE is stopping... -- 14:24:00.965 DEBUG [24217]: Closing database connection -- 14:24:00.965 SQL [24217]: pgsql_close() -- 14:25:03.079 INFO [24223]: COREGRADE is starting... -- 14:25:03.079 INFO [24223]: Version from config: 1.0 -- 14:25:03.079 DEBUG [24223]: Connecting to database... -- 14:25:03.079 DEBUG [24223]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:03.079 SQL [24223]: pgsql_db_connect() -- 14:25:03.083 DEBUG [24223]: Database connection successful -- 14:25:03.083 INFO [24223]: _SERVER found -- 14:25:03.083 INFO [24223]: REMOTE_ADDR = 10.0.0.15 -- 14:25:03.083 INFO [24223]: SERVER_NAME = oameye.works.coregrade.com -- 14:25:03.083 INFO [24223]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=6dj74oqjr7gevpm1dl7kjmhhbd083c8g -- 14:25:03.083 INFO [24223]: QUERY_STRING = -- 14:25:03.083 INFO [24223]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:25:03.127 INFO [24223]: COREGRADE is stopping... -- 14:25:03.127 DEBUG [24223]: Closing database connection -- 14:25:03.127 SQL [24223]: pgsql_close() -- 14:25:03.221 INFO [24223]: COREGRADE is starting... -- 14:25:03.222 INFO [24223]: Version from config: 1.0 -- 14:25:03.222 DEBUG [24223]: Connecting to database... -- 14:25:03.222 DEBUG [24223]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:03.222 SQL [24223]: pgsql_db_connect() -- 14:25:03.226 DEBUG [24223]: Database connection successful -- 14:25:03.226 INFO [24223]: _SERVER found -- 14:25:03.226 INFO [24223]: REMOTE_ADDR = 10.0.0.15 -- 14:25:03.226 INFO [24223]: SERVER_NAME = oameye.works.coregrade.com -- 14:25:03.226 INFO [24223]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=6dj74oqjr7gevpm1dl7kjmhhbd083c8g -- 14:25:03.226 INFO [24223]: QUERY_STRING = /assets/img/footer_1.jpg -- 14:25:03.226 INFO [24223]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:25:03.238 INFO [24223]: COREGRADE is stopping... -- 14:25:03.238 DEBUG [24223]: Closing database connection -- 14:25:03.238 SQL [24223]: pgsql_close() -- 14:25:04.446 INFO [24223]: COREGRADE is starting... -- 14:25:04.446 INFO [24223]: Version from config: 1.0 -- 14:25:04.446 DEBUG [24223]: Connecting to database... -- 14:25:04.446 DEBUG [24223]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:04.446 SQL [24223]: pgsql_db_connect() -- 14:25:04.450 DEBUG [24223]: Database connection successful -- 14:25:04.450 INFO [24223]: _SERVER found -- 14:25:04.450 INFO [24223]: REMOTE_ADDR = 10.0.0.15 -- 14:25:04.450 INFO [24223]: SERVER_NAME = oameye.works.coregrade.com -- 14:25:04.450 INFO [24223]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=6dj74oqjr7gevpm1dl7kjmhhbd083c8g -- 14:25:04.450 INFO [24223]: QUERY_STRING = /welcome/viewLogin -- 14:25:04.450 INFO [24223]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:25:04.483 INFO [24223]: COREGRADE is stopping... -- 14:25:04.483 DEBUG [24223]: Closing database connection -- 14:25:04.483 SQL [24223]: pgsql_close() -- 14:25:04.514 INFO [24158]: COREGRADE is starting... -- 14:25:04.515 INFO [24158]: Version from config: 1.0 -- 14:25:04.515 DEBUG [24158]: Connecting to database... -- 14:25:04.515 DEBUG [24158]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:04.515 SQL [24158]: pgsql_db_connect() -- 14:25:04.535 INFO [24157]: COREGRADE is starting... -- 14:25:04.535 INFO [24157]: Version from config: 1.0 -- 14:25:04.535 DEBUG [24157]: Connecting to database... -- 14:25:04.535 DEBUG [24157]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:04.535 SQL [24157]: pgsql_db_connect() -- 14:25:04.539 DEBUG [24157]: Database connection successful -- 14:25:04.539 INFO [24157]: _SERVER found -- 14:25:04.539 INFO [24157]: REMOTE_ADDR = 10.0.0.15 -- 14:25:04.539 INFO [24157]: SERVER_NAME = oameye.works.coregrade.com -- 14:25:04.539 INFO [24157]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=6dj74oqjr7gevpm1dl7kjmhhbd083c8g -- 14:25:04.539 INFO [24157]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:25:04.539 INFO [24157]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:25:04.552 INFO [24157]: COREGRADE is stopping... -- 14:25:04.552 DEBUG [24157]: Closing database connection -- 14:25:04.552 SQL [24157]: pgsql_close() -- 14:25:04.519 DEBUG [24158]: Database connection successful -- 14:25:04.519 INFO [24158]: _SERVER found -- 14:25:04.519 INFO [24158]: REMOTE_ADDR = 10.0.0.15 -- 14:25:04.519 INFO [24158]: SERVER_NAME = oameye.works.coregrade.com -- 14:25:04.519 INFO [24158]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=6dj74oqjr7gevpm1dl7kjmhhbd083c8g -- 14:25:04.519 INFO [24158]: QUERY_STRING = /auth -- 14:25:04.519 INFO [24158]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:25:04.556 INFO [24158]: COREGRADE is stopping... -- 14:25:04.556 DEBUG [24158]: Closing database connection -- 14:25:04.556 SQL [24158]: pgsql_close() -- 14:25:05.961 INFO [24157]: COREGRADE is starting... -- 14:25:05.962 INFO [24157]: Version from config: 1.0 -- 14:25:05.962 DEBUG [24157]: Connecting to database... -- 14:25:05.962 DEBUG [24157]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:05.962 SQL [24157]: pgsql_db_connect() -- 14:25:05.964 INFO [24158]: COREGRADE is starting... -- 14:25:05.965 INFO [24158]: Version from config: 1.0 -- 14:25:05.965 DEBUG [24158]: Connecting to database... -- 14:25:05.965 DEBUG [24158]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:05.965 SQL [24158]: pgsql_db_connect() -- 14:25:05.966 DEBUG [24157]: Database connection successful -- 14:25:05.966 INFO [24157]: _SERVER found -- 14:25:05.966 INFO [24157]: REMOTE_ADDR = 10.0.0.15 -- 14:25:05.966 INFO [24157]: SERVER_NAME = oameye.works.coregrade.com -- 14:25:05.966 INFO [24157]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=6dj74oqjr7gevpm1dl7kjmhhbd083c8g -- 14:25:05.966 INFO [24157]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:25:05.966 INFO [24157]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:25:05.977 INFO [24157]: COREGRADE is stopping... -- 14:25:05.977 DEBUG [24157]: Closing database connection -- 14:25:05.978 SQL [24157]: pgsql_close() -- 14:25:05.969 DEBUG [24158]: Database connection successful -- 14:25:05.969 INFO [24158]: _SERVER found -- 14:25:05.969 INFO [24158]: REMOTE_ADDR = 10.0.0.15 -- 14:25:05.969 INFO [24158]: SERVER_NAME = oameye.works.coregrade.com -- 14:25:05.969 INFO [24158]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=6dj74oqjr7gevpm1dl7kjmhhbd083c8g -- 14:25:05.969 INFO [24158]: QUERY_STRING = /auth/resetpass -- 14:25:05.969 INFO [24158]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:25:06.000 INFO [24158]: COREGRADE is stopping... -- 14:25:06.000 DEBUG [24158]: Closing database connection -- 14:25:06.000 SQL [24158]: pgsql_close() -- 14:25:13.705 INFO [24160]: COREGRADE is starting... -- 14:25:13.705 INFO [24160]: Version from config: 1.0 -- 14:25:13.705 DEBUG [24160]: Connecting to database... -- 14:25:13.705 DEBUG [24160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:13.705 SQL [24160]: pgsql_db_connect() -- 14:25:13.741 INFO [24160]: COREGRADE is starting... -- 14:25:13.741 INFO [24160]: Version from config: 1.0 -- 14:25:13.741 DEBUG [24160]: Connecting to database... -- 14:25:13.741 DEBUG [24160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:13.741 SQL [24160]: pgsql_db_connect() -- 14:25:13.745 DEBUG [24160]: Database connection successful -- 14:25:13.745 INFO [24160]: _SERVER found -- 14:25:13.745 INFO [24160]: REMOTE_ADDR = 10.0.0.15 -- 14:25:13.745 INFO [24160]: SERVER_NAME = oameye.works.coregrade.com -- 14:25:13.745 INFO [24160]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=6dj74oqjr7gevpm1dl7kjmhhbd083c8g -- 14:25:13.745 INFO [24160]: QUERY_STRING = -- 14:25:13.745 INFO [24160]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:25:13.745 INFO [24160]: SystemStatus()09-09-********~************ -- 14:25:13.745 INFO [24160]: long coregrade_api_main(CVars in, CVars &out) -- 14:25:13.745 INFO [24160]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 14:25:13.745 INFO [24160]: account calls -- 14:25:13.745 INFO [24160]: account_calls() -- 14:25:13.745 INFO [24160]: passwordReset() -- 14:25:13.745 INFO [24160]: startPassReset() -- 14:25:13.745 FLOG_MAX [24160]: REQ_STRING(username) -- 14:25:13.745 FLOG_MAX [24160]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:25:13.745 SQL [24160]: pgsql_query() -- 14:25:13.745 SQL [24160]: About to run query: -- 14:25:13.745 SQL [24160]: SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') -- 14:25:13.747 SQL [24160]: Found rows: 1 -- 14:25:13.748 FLOG_MAX [24160]: load_db_record(SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') ) num_cols=2 -- 14:25:13.748 SQL [24160]: pgsql_exec() -- 14:25:13.748 SQL [24160]: About to run query: -- 14:25:13.748 SQL [24160]: UPDATE password_reset SET status=7 WHERE status NOT IN (3,5) AND member_id=5 -- 14:25:13.748 SQL [24160]: PQcmdTuples: 0 -- 14:25:13.748 SQL [24160]: Affected rows: 0 -- 14:25:13.749 FLOG_MAX [24160]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:25:13.749 SQL [24160]: pgsql_query() -- 14:25:13.749 SQL [24160]: About to run query: -- 14:25:13.749 SQL [24160]: SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 14:25:13.745693-04') AS reset_key -- 14:25:13.749 SQL [24160]: Found rows: 1 -- 14:25:13.749 FLOG_MAX [24160]: load_db_record(SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 14:25:13.745693-04') AS reset_key) num_cols=2 -- 14:25:13.749 FLOG_MAX [24160]: insert_db_record() -- 14:25:13.749 SQL [24160]: pgsql_exec() -- 14:25:13.749 SQL [24160]: About to run query: -- 14:25:13.749 SQL [24160]: INSERT INTO password_reset (loc,member_id,reset_key,reset_pin,username) VALUES ('10.0.0.15','5','f12f8903e5d8239853b7a8869b65d1bc','35353','ameye+11@chiefsoft.com') -- 14:25:13.751 SQL [24160]: PQcmdTuples: 1 -- 14:25:13.751 SQL [24160]: Affected rows: 1 -- 14:25:13.751 FLOG_MAX [24160]: SELECT currval('password_reset_id_seq') -- 14:25:13.751 SQL [24160]: pgsql_query() -- 14:25:13.751 SQL [24160]: About to run query: -- 14:25:13.751 SQL [24160]: SELECT currval('password_reset_id_seq') -- 14:25:13.751 SQL [24160]: Found rows: 1 -- 14:25:13.751 INFO [24160]: member_email_calls() -- 14:25:13.752 FLOG_MAX [24160]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:25:13.752 SQL [24160]: pgsql_query() -- 14:25:13.752 SQL [24160]: About to run query: -- 14:25:13.752 SQL [24160]: SELECT m.firstname,p.*,m.email AS member_email FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=1 -- 14:25:13.753 SQL [24160]: Found rows: 1 -- 14:25:13.753 FLOG_MAX [24160]: load_db_record(SELECT m.firstname,p.*,m.email AS member_email FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=1 ) num_cols=11 -- 14:25:13.753 FLOG_MAX [24160]: CGI Parsing: /home/oameye/coregrade/coregrade/email//member/reset_password.mailfile -- 14:25:13.753 FLOG_MAX [24160]: stat() error: No such file or directory, '/home/oameye/coregrade/coregrade/email//member/reset_password.mailfile' -- 14:25:13.753 FLOG_MAX [24160]: Template parsed: /home/oameye/coregrade/coregrade/email//member/reset_password.mailfile -- 14:25:13.753 FLOG_MAX [24160]: ESMTP( 10.0.0.23, support@coregrade.com, ameye+11@chiefsoft.com ) -- 14:25:13.753 FLOG_MAX [24160]: Prepare body -- 14:25:13.753 FLOG_MAX [24160]: Locate & extract subject -- 14:25:13.753 FLOG_MAX [24160]: Subject is not found - defaulting to: PayLid Support -- 14:25:13.753 FLOG_MAX [24160]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t ameye+11@chiefsoft.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'PayLid Support' -M 'Template read error' -- 14:25:13.810 FLOG_MAX [24160]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: PayLid Support -From: CoreGrade Support -Date: Su -- 14:25:13.853 FLOG_MAX [24160]: n, 12 Apr 2020 14:25:13 -0400 -To: ameye+11@chiefsoft.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="naiaD0yNB0gHcPeM" -Mime-version: 1.0 - - ---naiaD0yNB0gHcPeM -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] Template read error - - ---naiaD0yNB0gHcPeM-- - -[C] . -[S] 250 2.0.0 Ok: queued as C5C42211309F -[C] QUIT -[S] 221 2.0.0 Bye -] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: PayLid Support -From: CoreGrade Support -Date: Su -- 14:25:13.853 FLOG_MAX [24160]: - -END OF PIPE OUTPUT - - -- 14:25:13.853 FLOG_MAX [24160]: /ESMTP() -- 14:25:13.853 INFO [24160]: /member_email_calls() -- 14:25:13.853 INFO [24160]: RET: member_id=5 -- 14:25:13.853 INFO [24160]: RET: mode=100 -- 14:25:13.853 INFO [24160]: RET: reset_id=1 -- 14:25:13.853 INFO [24160]: RET: reset_key=YOU WILL GET THIS IF PIN IS CORRECT IN CONFIRM -- 14:25:13.853 INFO [24160]: RET: reset_seed=2020-04-12 14:25:13.745693-04 -- 14:25:13.853 INFO [24160]: RET: reset_seed==REMOVED -- 14:25:13.853 INFO [24160]: RET: result=YES I GET TO BACK END -- 14:25:13.855 INFO [24160]: COREGRADE is stopping... -- 14:25:13.855 DEBUG [24160]: Closing database connection -- 14:25:13.855 SQL [24160]: pgsql_close() -- 14:25:13.709 DEBUG [24160]: Database connection successful -- 14:25:13.709 INFO [24160]: _SERVER found -- 14:25:13.709 INFO [24160]: REMOTE_ADDR = 10.0.0.15 -- 14:25:13.709 INFO [24160]: SERVER_NAME = oameye.works.coregrade.com -- 14:25:13.709 INFO [24160]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=6dj74oqjr7gevpm1dl7kjmhhbd083c8g -- 14:25:13.709 INFO [24160]: QUERY_STRING = /auth/resetpass -- 14:25:13.709 INFO [24160]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:25:13.855 INFO [24160]: COREGRADE is stopping... -- 14:25:13.855 DEBUG [24160]: Closing database connection -- 14:25:13.855 SQL [24160]: pgsql_close() -- 14:25:13.928 INFO [24160]: COREGRADE is starting... -- 14:25:13.929 INFO [24160]: Version from config: 1.0 -- 14:25:13.929 DEBUG [24160]: Connecting to database... -- 14:25:13.929 DEBUG [24160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:25:13.929 SQL [24160]: pgsql_db_connect() -- 14:25:13.933 DEBUG [24160]: Database connection successful -- 14:25:13.933 INFO [24160]: _SERVER found -- 14:25:13.933 INFO [24160]: REMOTE_ADDR = 10.0.0.15 -- 14:25:13.933 INFO [24160]: SERVER_NAME = oameye.works.coregrade.com -- 14:25:13.933 INFO [24160]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=6dj74oqjr7gevpm1dl7kjmhhbd083c8g -- 14:25:13.933 INFO [24160]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:25:13.933 INFO [24160]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:25:13.944 INFO [24160]: COREGRADE is stopping... -- 14:25:13.944 DEBUG [24160]: Closing database connection -- 14:25:13.944 SQL [24160]: pgsql_close() -- 14:27:29.357 INFO [24399]: COREGRADE is starting... -- 14:27:29.357 INFO [24399]: Version from config: 1.0 -- 14:27:29.357 DEBUG [24399]: Connecting to database... -- 14:27:29.357 DEBUG [24399]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:27:29.357 SQL [24399]: pgsql_db_connect() -- 14:27:29.365 DEBUG [24399]: Database connection successful -- 14:27:29.365 INFO [24399]: _SERVER found -- 14:27:29.365 INFO [24399]: REMOTE_ADDR = 10.0.0.15 -- 14:27:29.365 INFO [24399]: SERVER_NAME = oameye.works.coregrade.com -- 14:27:29.365 INFO [24399]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=6dj74oqjr7gevpm1dl7kjmhhbd083c8g -- 14:27:29.365 INFO [24399]: QUERY_STRING = -- 14:27:29.365 INFO [24399]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:27:29.410 INFO [24399]: COREGRADE is stopping... -- 14:27:29.410 DEBUG [24399]: Closing database connection -- 14:27:29.410 SQL [24399]: pgsql_close() -- 14:27:29.501 INFO [24399]: COREGRADE is starting... -- 14:27:29.501 INFO [24399]: Version from config: 1.0 -- 14:27:29.501 DEBUG [24399]: Connecting to database... -- 14:27:29.501 DEBUG [24399]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:27:29.501 SQL [24399]: pgsql_db_connect() -- 14:27:29.506 DEBUG [24399]: Database connection successful -- 14:27:29.506 INFO [24399]: _SERVER found -- 14:27:29.506 INFO [24399]: REMOTE_ADDR = 10.0.0.15 -- 14:27:29.506 INFO [24399]: SERVER_NAME = oameye.works.coregrade.com -- 14:27:29.506 INFO [24399]: HTTP_COOKIE = ci_session=jkpchv3ss285vdp2c0gq12j4r9cp3f41; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 14:27:29.506 INFO [24399]: QUERY_STRING = /assets/img/footer_1.jpg -- 14:27:29.506 INFO [24399]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:27:29.518 INFO [24399]: COREGRADE is stopping... -- 14:27:29.518 DEBUG [24399]: Closing database connection -- 14:27:29.518 SQL [24399]: pgsql_close() -- 14:27:31.150 INFO [24399]: COREGRADE is starting... -- 14:27:31.151 INFO [24399]: Version from config: 1.0 -- 14:27:31.151 DEBUG [24399]: Connecting to database... -- 14:27:31.151 DEBUG [24399]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:27:31.151 SQL [24399]: pgsql_db_connect() -- 14:27:31.155 DEBUG [24399]: Database connection successful -- 14:27:31.155 INFO [24399]: _SERVER found -- 14:27:31.155 INFO [24399]: REMOTE_ADDR = 10.0.0.15 -- 14:27:31.155 INFO [24399]: SERVER_NAME = oameye.works.coregrade.com -- 14:27:31.155 INFO [24399]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=jkpchv3ss285vdp2c0gq12j4r9cp3f41 -- 14:27:31.155 INFO [24399]: QUERY_STRING = /welcome/viewLogin -- 14:27:31.155 INFO [24399]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:27:31.188 INFO [24399]: COREGRADE is stopping... -- 14:27:31.188 DEBUG [24399]: Closing database connection -- 14:27:31.188 SQL [24399]: pgsql_close() -- 14:27:31.221 INFO [24400]: COREGRADE is starting... -- 14:27:31.221 INFO [24400]: Version from config: 1.0 -- 14:27:31.221 DEBUG [24400]: Connecting to database... -- 14:27:31.222 DEBUG [24400]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:27:31.222 SQL [24400]: pgsql_db_connect() -- 14:27:31.245 INFO [24399]: COREGRADE is starting... -- 14:27:31.246 INFO [24399]: Version from config: 1.0 -- 14:27:31.246 DEBUG [24399]: Connecting to database... -- 14:27:31.246 DEBUG [24399]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:27:31.246 SQL [24399]: pgsql_db_connect() -- 14:27:31.250 DEBUG [24399]: Database connection successful -- 14:27:31.250 INFO [24399]: _SERVER found -- 14:27:31.250 INFO [24399]: REMOTE_ADDR = 10.0.0.15 -- 14:27:31.250 INFO [24399]: SERVER_NAME = oameye.works.coregrade.com -- 14:27:31.250 INFO [24399]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=jkpchv3ss285vdp2c0gq12j4r9cp3f41 -- 14:27:31.250 INFO [24399]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:27:31.250 INFO [24399]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:27:31.262 INFO [24399]: COREGRADE is stopping... -- 14:27:31.262 DEBUG [24399]: Closing database connection -- 14:27:31.262 SQL [24399]: pgsql_close() -- 14:27:31.226 DEBUG [24400]: Database connection successful -- 14:27:31.226 INFO [24400]: _SERVER found -- 14:27:31.226 INFO [24400]: REMOTE_ADDR = 10.0.0.15 -- 14:27:31.226 INFO [24400]: SERVER_NAME = oameye.works.coregrade.com -- 14:27:31.226 INFO [24400]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=jkpchv3ss285vdp2c0gq12j4r9cp3f41 -- 14:27:31.226 INFO [24400]: QUERY_STRING = /auth -- 14:27:31.226 INFO [24400]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:27:31.264 INFO [24400]: COREGRADE is stopping... -- 14:27:31.264 DEBUG [24400]: Closing database connection -- 14:27:31.264 SQL [24400]: pgsql_close() -- 14:27:33.417 INFO [24400]: COREGRADE is starting... -- 14:27:33.417 INFO [24400]: Version from config: 1.0 -- 14:27:33.417 DEBUG [24400]: Connecting to database... -- 14:27:33.417 DEBUG [24400]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:27:33.417 SQL [24400]: pgsql_db_connect() -- 14:27:33.419 INFO [24399]: COREGRADE is starting... -- 14:27:33.419 INFO [24399]: Version from config: 1.0 -- 14:27:33.419 DEBUG [24399]: Connecting to database... -- 14:27:33.419 DEBUG [24399]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:27:33.419 SQL [24399]: pgsql_db_connect() -- 14:27:33.423 DEBUG [24399]: Database connection successful -- 14:27:33.423 INFO [24399]: _SERVER found -- 14:27:33.423 INFO [24399]: REMOTE_ADDR = 10.0.0.15 -- 14:27:33.423 INFO [24399]: SERVER_NAME = oameye.works.coregrade.com -- 14:27:33.423 INFO [24399]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=jkpchv3ss285vdp2c0gq12j4r9cp3f41 -- 14:27:33.423 INFO [24399]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:27:33.423 INFO [24399]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:27:33.434 INFO [24399]: COREGRADE is stopping... -- 14:27:33.435 DEBUG [24399]: Closing database connection -- 14:27:33.435 SQL [24399]: pgsql_close() -- 14:27:33.421 DEBUG [24400]: Database connection successful -- 14:27:33.421 INFO [24400]: _SERVER found -- 14:27:33.421 INFO [24400]: REMOTE_ADDR = 10.0.0.15 -- 14:27:33.421 INFO [24400]: SERVER_NAME = oameye.works.coregrade.com -- 14:27:33.421 INFO [24400]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=jkpchv3ss285vdp2c0gq12j4r9cp3f41 -- 14:27:33.421 INFO [24400]: QUERY_STRING = /auth/resetpass -- 14:27:33.421 INFO [24400]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:27:33.456 INFO [24400]: COREGRADE is stopping... -- 14:27:33.457 DEBUG [24400]: Closing database connection -- 14:27:33.457 SQL [24400]: pgsql_close() -- 14:27:40.526 INFO [24402]: COREGRADE is starting... -- 14:27:40.527 INFO [24402]: Version from config: 1.0 -- 14:27:40.527 DEBUG [24402]: Connecting to database... -- 14:27:40.527 DEBUG [24402]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:27:40.527 SQL [24402]: pgsql_db_connect() -- 14:27:40.568 INFO [24402]: COREGRADE is starting... -- 14:27:40.569 INFO [24402]: Version from config: 1.0 -- 14:27:40.569 DEBUG [24402]: Connecting to database... -- 14:27:40.569 DEBUG [24402]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:27:40.569 SQL [24402]: pgsql_db_connect() -- 14:27:40.572 DEBUG [24402]: Database connection successful -- 14:27:40.572 INFO [24402]: _SERVER found -- 14:27:40.572 INFO [24402]: REMOTE_ADDR = 10.0.0.15 -- 14:27:40.572 INFO [24402]: SERVER_NAME = oameye.works.coregrade.com -- 14:27:40.573 INFO [24402]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=jkpchv3ss285vdp2c0gq12j4r9cp3f41 -- 14:27:40.573 INFO [24402]: QUERY_STRING = -- 14:27:40.573 INFO [24402]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:27:40.573 INFO [24402]: SystemStatus()09-09-********~************ -- 14:27:40.573 INFO [24402]: long coregrade_api_main(CVars in, CVars &out) -- 14:27:40.573 INFO [24402]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 14:27:40.573 INFO [24402]: account calls -- 14:27:40.573 INFO [24402]: account_calls() -- 14:27:40.573 INFO [24402]: passwordReset() -- 14:27:40.573 INFO [24402]: startPassReset() -- 14:27:40.573 FLOG_MAX [24402]: REQ_STRING(username) -- 14:27:40.573 FLOG_MAX [24402]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:27:40.573 SQL [24402]: pgsql_query() -- 14:27:40.573 SQL [24402]: About to run query: -- 14:27:40.573 SQL [24402]: SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') -- 14:27:40.575 SQL [24402]: Found rows: 1 -- 14:27:40.575 FLOG_MAX [24402]: load_db_record(SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') ) num_cols=2 -- 14:27:40.575 SQL [24402]: pgsql_exec() -- 14:27:40.575 SQL [24402]: About to run query: -- 14:27:40.575 SQL [24402]: UPDATE password_reset SET status=7 WHERE status NOT IN (3,5) AND member_id=5 -- 14:27:40.577 SQL [24402]: PQcmdTuples: 1 -- 14:27:40.577 SQL [24402]: Affected rows: 1 -- 14:27:40.577 FLOG_MAX [24402]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:27:40.577 SQL [24402]: pgsql_query() -- 14:27:40.577 SQL [24402]: About to run query: -- 14:27:40.577 SQL [24402]: SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 14:27:40.57335-04') AS reset_key -- 14:27:40.578 SQL [24402]: Found rows: 1 -- 14:27:40.578 FLOG_MAX [24402]: load_db_record(SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 14:27:40.57335-04') AS reset_key) num_cols=2 -- 14:27:40.578 FLOG_MAX [24402]: insert_db_record() -- 14:27:40.578 SQL [24402]: pgsql_exec() -- 14:27:40.578 SQL [24402]: About to run query: -- 14:27:40.578 SQL [24402]: INSERT INTO password_reset (loc,member_id,reset_key,reset_pin,username) VALUES ('10.0.0.15','5','3246ba908c92007faa7b51a9c766091b','22881','ameye+11@chiefsoft.com') -- 14:27:40.579 SQL [24402]: PQcmdTuples: 1 -- 14:27:40.579 SQL [24402]: Affected rows: 1 -- 14:27:40.579 FLOG_MAX [24402]: SELECT currval('password_reset_id_seq') -- 14:27:40.579 SQL [24402]: pgsql_query() -- 14:27:40.579 SQL [24402]: About to run query: -- 14:27:40.579 SQL [24402]: SELECT currval('password_reset_id_seq') -- 14:27:40.579 SQL [24402]: Found rows: 1 -- 14:27:40.579 INFO [24402]: member_email_calls() -- 14:27:40.580 FLOG_MAX [24402]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:27:40.580 SQL [24402]: pgsql_query() -- 14:27:40.580 SQL [24402]: About to run query: -- 14:27:40.580 SQL [24402]: SELECT m.firstname,p.*,m.email AS member_email FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=2 -- 14:27:40.581 SQL [24402]: Found rows: 1 -- 14:27:40.581 FLOG_MAX [24402]: load_db_record(SELECT m.firstname,p.*,m.email AS member_email FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=2 ) num_cols=11 -- 14:27:40.581 FLOG_MAX [24402]: CGI Parsing: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 14:27:40.581 FLOG_MAX [24402]: Template '/home/oameye/coregrade/coregrade/email//start_losspass.mailfile' loaded: 1566 bytes -- 14:27:40.581 FLOG_MAX [24402]: Returning from FormFile() -- 14:27:40.581 FLOG_MAX [24402]: Template parsed: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 14:27:40.581 FLOG_MAX [24402]: ESMTP( 10.0.0.23, support@coregrade.com, ameye+11@chiefsoft.com ) -- 14:27:40.581 FLOG_MAX [24402]: Prepare body -- 14:27:40.581 FLOG_MAX [24402]: Locate & extract subject -- 14:27:40.581 FLOG_MAX [24402]: Found subject: PayQuic - Password Reset for ameye+11@chiefsoft.com -- 14:27:40.581 FLOG_MAX [24402]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t ameye+11@chiefsoft.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'PayQuic - Password Reset for ameye+11@chiefsoft.com ' -M ' - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
PayQuic
-Dear Olu -
-We have initiated your password reset process as requested as by you on : -
- - - - -
Click the linkhttps:///creset.html?rlink=
Link will expire
-
-
-If it was not at your request, then please contact PayQuic support immediately. - -For further support go to our website at www.PayQuic.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing PayQuic. -PayQuic Team. - -
-
- -
- - - - - - ' -- 14:27:40.608 FLOG_MAX [24402]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: PayQuic - Password Reset for ameye+11@chiefsoft.com -From: CoreGrade Support -Date: Sun, 12 Apr 2020 14:27:40 -0400 -To: ameye+11@chiefsoft.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="9qA7TKZ1XJ97GY2P" -Mime-version: 1.0 - - ---9qA7TKZ1XJ97GY2P -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
PayQuic
-Dear Olu -
-We have initiated your password reset process as requested as by you on : -
- - - - -
Click the linkhttps:///creset.html?rlink=
Link will expire
-
-
-If it was not at your request, then please contact PayQuic support immediately. - -For further support go to our website at www.PayQuic.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing PayQuic. -PayQuic Team. - -
-
- -
- - - - - - - - ---9qA7TKZ1XJ97GY2P-- - -[C] . -[S] 250 2.0.0 Ok: queued as 93719211309B -[C] QUIT -[S] 221 2.0.0 Bye - -- 14:27:40.608 FLOG_MAX [24402]: - -END OF PIPE OUTPUT - - -- 14:27:40.608 FLOG_MAX [24402]: /ESMTP() -- 14:27:40.608 INFO [24402]: /member_email_calls() -- 14:27:40.608 INFO [24402]: RET: member_id=5 -- 14:27:40.608 INFO [24402]: RET: mode=100 -- 14:27:40.608 INFO [24402]: RET: reset_id=2 -- 14:27:40.608 INFO [24402]: RET: reset_key=YOU WILL GET THIS IF PIN IS CORRECT IN CONFIRM -- 14:27:40.608 INFO [24402]: RET: reset_seed=2020-04-12 14:27:40.57335-04 -- 14:27:40.608 INFO [24402]: RET: reset_seed==REMOVED -- 14:27:40.608 INFO [24402]: RET: result=YES I GET TO BACK END -- 14:27:40.610 INFO [24402]: COREGRADE is stopping... -- 14:27:40.610 DEBUG [24402]: Closing database connection -- 14:27:40.610 SQL [24402]: pgsql_close() -- 14:27:40.531 DEBUG [24402]: Database connection successful -- 14:27:40.531 INFO [24402]: _SERVER found -- 14:27:40.531 INFO [24402]: REMOTE_ADDR = 10.0.0.15 -- 14:27:40.531 INFO [24402]: SERVER_NAME = oameye.works.coregrade.com -- 14:27:40.531 INFO [24402]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=jkpchv3ss285vdp2c0gq12j4r9cp3f41 -- 14:27:40.531 INFO [24402]: QUERY_STRING = /auth/resetpass -- 14:27:40.531 INFO [24402]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:27:40.611 INFO [24402]: COREGRADE is stopping... -- 14:27:40.611 DEBUG [24402]: Closing database connection -- 14:27:40.611 SQL [24402]: pgsql_close() -- 14:27:40.701 INFO [24402]: COREGRADE is starting... -- 14:27:40.701 INFO [24402]: Version from config: 1.0 -- 14:27:40.701 DEBUG [24402]: Connecting to database... -- 14:27:40.701 DEBUG [24402]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:27:40.701 SQL [24402]: pgsql_db_connect() -- 14:27:40.706 DEBUG [24402]: Database connection successful -- 14:27:40.706 INFO [24402]: _SERVER found -- 14:27:40.706 INFO [24402]: REMOTE_ADDR = 10.0.0.15 -- 14:27:40.706 INFO [24402]: SERVER_NAME = oameye.works.coregrade.com -- 14:27:40.706 INFO [24402]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=jkpchv3ss285vdp2c0gq12j4r9cp3f41 -- 14:27:40.706 INFO [24402]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:27:40.706 INFO [24402]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:27:40.718 INFO [24402]: COREGRADE is stopping... -- 14:27:40.718 DEBUG [24402]: Closing database connection -- 14:27:40.718 SQL [24402]: pgsql_close() -- 14:36:32.031 INFO [24642]: COREGRADE is starting... -- 14:36:32.031 INFO [24642]: Version from config: 1.0 -- 14:36:32.031 DEBUG [24642]: Connecting to database... -- 14:36:32.031 DEBUG [24642]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:36:32.031 SQL [24642]: pgsql_db_connect() -- 14:36:32.037 DEBUG [24642]: Database connection successful -- 14:36:32.037 INFO [24642]: _SERVER found -- 14:36:32.037 INFO [24642]: REMOTE_ADDR = 10.0.0.15 -- 14:36:32.037 INFO [24642]: SERVER_NAME = oameye.works.coregrade.com -- 14:36:32.037 INFO [24642]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=jkpchv3ss285vdp2c0gq12j4r9cp3f41 -- 14:36:32.037 INFO [24642]: QUERY_STRING = -- 14:36:32.037 INFO [24642]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:36:32.081 INFO [24642]: COREGRADE is stopping... -- 14:36:32.081 DEBUG [24642]: Closing database connection -- 14:36:32.081 SQL [24642]: pgsql_close() -- 14:36:32.179 INFO [24642]: COREGRADE is starting... -- 14:36:32.179 INFO [24642]: Version from config: 1.0 -- 14:36:32.179 DEBUG [24642]: Connecting to database... -- 14:36:32.179 DEBUG [24642]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:36:32.179 SQL [24642]: pgsql_db_connect() -- 14:36:32.183 DEBUG [24642]: Database connection successful -- 14:36:32.183 INFO [24642]: _SERVER found -- 14:36:32.183 INFO [24642]: REMOTE_ADDR = 10.0.0.15 -- 14:36:32.183 INFO [24642]: SERVER_NAME = oameye.works.coregrade.com -- 14:36:32.183 INFO [24642]: HTTP_COOKIE = ci_session=eras7bpu3m8qh30r7tqlobhn6l2rndr2; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 14:36:32.183 INFO [24642]: QUERY_STRING = /assets/img/footer_1.jpg -- 14:36:32.183 INFO [24642]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:36:32.195 INFO [24642]: COREGRADE is stopping... -- 14:36:32.195 DEBUG [24642]: Closing database connection -- 14:36:32.195 SQL [24642]: pgsql_close() -- 14:36:33.575 INFO [24642]: COREGRADE is starting... -- 14:36:33.575 INFO [24642]: Version from config: 1.0 -- 14:36:33.575 DEBUG [24642]: Connecting to database... -- 14:36:33.575 DEBUG [24642]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:36:33.575 SQL [24642]: pgsql_db_connect() -- 14:36:33.579 DEBUG [24642]: Database connection successful -- 14:36:33.579 INFO [24642]: _SERVER found -- 14:36:33.579 INFO [24642]: REMOTE_ADDR = 10.0.0.15 -- 14:36:33.579 INFO [24642]: SERVER_NAME = oameye.works.coregrade.com -- 14:36:33.579 INFO [24642]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=eras7bpu3m8qh30r7tqlobhn6l2rndr2 -- 14:36:33.579 INFO [24642]: QUERY_STRING = /welcome/viewLogin -- 14:36:33.579 INFO [24642]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:36:33.612 INFO [24642]: COREGRADE is stopping... -- 14:36:33.612 DEBUG [24642]: Closing database connection -- 14:36:33.612 SQL [24642]: pgsql_close() -- 14:36:33.646 INFO [24643]: COREGRADE is starting... -- 14:36:33.647 INFO [24643]: Version from config: 1.0 -- 14:36:33.647 DEBUG [24643]: Connecting to database... -- 14:36:33.647 DEBUG [24643]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:36:33.647 SQL [24643]: pgsql_db_connect() -- 14:36:33.670 INFO [24644]: COREGRADE is starting... -- 14:36:33.671 INFO [24644]: Version from config: 1.0 -- 14:36:33.671 DEBUG [24644]: Connecting to database... -- 14:36:33.671 DEBUG [24644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:36:33.671 SQL [24644]: pgsql_db_connect() -- 14:36:33.651 DEBUG [24643]: Database connection successful -- 14:36:33.651 INFO [24643]: _SERVER found -- 14:36:33.651 INFO [24643]: REMOTE_ADDR = 10.0.0.15 -- 14:36:33.651 INFO [24643]: SERVER_NAME = oameye.works.coregrade.com -- 14:36:33.651 INFO [24643]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=eras7bpu3m8qh30r7tqlobhn6l2rndr2 -- 14:36:33.651 INFO [24643]: QUERY_STRING = /auth -- 14:36:33.651 INFO [24643]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:36:33.689 INFO [24643]: COREGRADE is stopping... -- 14:36:33.689 DEBUG [24643]: Closing database connection -- 14:36:33.689 SQL [24643]: pgsql_close() -- 14:36:33.675 DEBUG [24644]: Database connection successful -- 14:36:33.675 INFO [24644]: _SERVER found -- 14:36:33.675 INFO [24644]: REMOTE_ADDR = 10.0.0.15 -- 14:36:33.675 INFO [24644]: SERVER_NAME = oameye.works.coregrade.com -- 14:36:33.675 INFO [24644]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=eras7bpu3m8qh30r7tqlobhn6l2rndr2 -- 14:36:33.675 INFO [24644]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:36:33.675 INFO [24644]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:36:33.689 INFO [24644]: COREGRADE is stopping... -- 14:36:33.689 DEBUG [24644]: Closing database connection -- 14:36:33.689 SQL [24644]: pgsql_close() -- 14:36:35.169 INFO [24643]: COREGRADE is starting... -- 14:36:35.169 INFO [24643]: Version from config: 1.0 -- 14:36:35.169 DEBUG [24643]: Connecting to database... -- 14:36:35.169 DEBUG [24643]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:36:35.169 SQL [24643]: pgsql_db_connect() -- 14:36:35.170 INFO [24644]: COREGRADE is starting... -- 14:36:35.170 INFO [24644]: Version from config: 1.0 -- 14:36:35.170 DEBUG [24644]: Connecting to database... -- 14:36:35.170 DEBUG [24644]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:36:35.170 SQL [24644]: pgsql_db_connect() -- 14:36:35.174 DEBUG [24644]: Database connection successful -- 14:36:35.174 INFO [24644]: _SERVER found -- 14:36:35.174 INFO [24644]: REMOTE_ADDR = 10.0.0.15 -- 14:36:35.174 INFO [24644]: SERVER_NAME = oameye.works.coregrade.com -- 14:36:35.174 INFO [24644]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=eras7bpu3m8qh30r7tqlobhn6l2rndr2 -- 14:36:35.174 INFO [24644]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:36:35.174 INFO [24644]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:36:35.186 INFO [24644]: COREGRADE is stopping... -- 14:36:35.186 DEBUG [24644]: Closing database connection -- 14:36:35.186 SQL [24644]: pgsql_close() -- 14:36:35.173 DEBUG [24643]: Database connection successful -- 14:36:35.173 INFO [24643]: _SERVER found -- 14:36:35.173 INFO [24643]: REMOTE_ADDR = 10.0.0.15 -- 14:36:35.173 INFO [24643]: SERVER_NAME = oameye.works.coregrade.com -- 14:36:35.173 INFO [24643]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=eras7bpu3m8qh30r7tqlobhn6l2rndr2 -- 14:36:35.173 INFO [24643]: QUERY_STRING = /auth/resetpass -- 14:36:35.173 INFO [24643]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:36:35.208 INFO [24643]: COREGRADE is stopping... -- 14:36:35.208 DEBUG [24643]: Closing database connection -- 14:36:35.208 SQL [24643]: pgsql_close() -- 14:36:42.570 INFO [24645]: COREGRADE is starting... -- 14:36:42.570 INFO [24645]: Version from config: 1.0 -- 14:36:42.570 DEBUG [24645]: Connecting to database... -- 14:36:42.571 DEBUG [24645]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:36:42.571 SQL [24645]: pgsql_db_connect() -- 14:36:42.613 INFO [24645]: COREGRADE is starting... -- 14:36:42.613 INFO [24645]: Version from config: 1.0 -- 14:36:42.613 DEBUG [24645]: Connecting to database... -- 14:36:42.613 DEBUG [24645]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:36:42.613 SQL [24645]: pgsql_db_connect() -- 14:36:42.617 DEBUG [24645]: Database connection successful -- 14:36:42.617 INFO [24645]: _SERVER found -- 14:36:42.617 INFO [24645]: REMOTE_ADDR = 10.0.0.15 -- 14:36:42.617 INFO [24645]: SERVER_NAME = oameye.works.coregrade.com -- 14:36:42.617 INFO [24645]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=eras7bpu3m8qh30r7tqlobhn6l2rndr2 -- 14:36:42.617 INFO [24645]: QUERY_STRING = -- 14:36:42.617 INFO [24645]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:36:42.617 INFO [24645]: SystemStatus()09-09-********~************ -- 14:36:42.617 INFO [24645]: long coregrade_api_main(CVars in, CVars &out) -- 14:36:42.617 INFO [24645]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 14:36:42.617 INFO [24645]: account calls -- 14:36:42.617 INFO [24645]: account_calls() -- 14:36:42.617 INFO [24645]: passwordReset() -- 14:36:42.617 INFO [24645]: startPassReset() -- 14:36:42.617 FLOG_MAX [24645]: REQ_STRING(username) -- 14:36:42.617 FLOG_MAX [24645]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:36:42.617 SQL [24645]: pgsql_query() -- 14:36:42.617 SQL [24645]: About to run query: -- 14:36:42.617 SQL [24645]: SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') -- 14:36:42.620 SQL [24645]: Found rows: 1 -- 14:36:42.620 FLOG_MAX [24645]: load_db_record(SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') ) num_cols=2 -- 14:36:42.620 SQL [24645]: pgsql_exec() -- 14:36:42.620 SQL [24645]: About to run query: -- 14:36:42.620 SQL [24645]: UPDATE password_reset SET status=7 WHERE status NOT IN (3,5) AND member_id=5 -- 14:36:42.621 SQL [24645]: PQcmdTuples: 2 -- 14:36:42.621 SQL [24645]: Affected rows: 2 -- 14:36:42.621 FLOG_MAX [24645]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:36:42.621 SQL [24645]: pgsql_query() -- 14:36:42.621 SQL [24645]: About to run query: -- 14:36:42.621 SQL [24645]: SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 14:36:42.617772-04') AS reset_key -- 14:36:42.622 SQL [24645]: Found rows: 1 -- 14:36:42.622 FLOG_MAX [24645]: load_db_record(SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 14:36:42.617772-04') AS reset_key) num_cols=2 -- 14:36:42.622 FLOG_MAX [24645]: insert_db_record() -- 14:36:42.622 SQL [24645]: pgsql_exec() -- 14:36:42.622 SQL [24645]: About to run query: -- 14:36:42.622 SQL [24645]: INSERT INTO password_reset (loc,member_id,reset_key,reset_pin,username) VALUES ('10.0.0.15','5','8efee530933f469ed9e45ed3634e4ddd','53675','ameye+11@chiefsoft.com') -- 14:36:42.623 SQL [24645]: PQcmdTuples: 1 -- 14:36:42.623 SQL [24645]: Affected rows: 1 -- 14:36:42.623 FLOG_MAX [24645]: SELECT currval('password_reset_id_seq') -- 14:36:42.624 SQL [24645]: pgsql_query() -- 14:36:42.624 SQL [24645]: About to run query: -- 14:36:42.624 SQL [24645]: SELECT currval('password_reset_id_seq') -- 14:36:42.624 SQL [24645]: Found rows: 1 -- 14:36:42.624 INFO [24645]: member_email_calls() -- 14:36:42.625 FLOG_MAX [24645]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:36:42.625 SQL [24645]: pgsql_query() -- 14:36:42.625 SQL [24645]: About to run query: -- 14:36:42.625 SQL [24645]: SELECT m.firstname,p.*,m.email AS member_email FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=3 -- 14:36:42.626 SQL [24645]: Found rows: 1 -- 14:36:42.626 FLOG_MAX [24645]: load_db_record(SELECT m.firstname,p.*,m.email AS member_email FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=3 ) num_cols=11 -- 14:36:42.626 FLOG_MAX [24645]: CGI Parsing: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 14:36:42.626 FLOG_MAX [24645]: Template '/home/oameye/coregrade/coregrade/email//start_losspass.mailfile' loaded: 1573 bytes -- 14:36:42.626 FLOG_MAX [24645]: Returning from FormFile() -- 14:36:42.626 FLOG_MAX [24645]: Template parsed: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 14:36:42.626 FLOG_MAX [24645]: ESMTP( 10.0.0.23, support@coregrade.com, ameye+11@chiefsoft.com ) -- 14:36:42.626 FLOG_MAX [24645]: Prepare body -- 14:36:42.626 FLOG_MAX [24645]: Locate & extract subject -- 14:36:42.626 FLOG_MAX [24645]: Found subject: CoreGrade - Password Reset for ameye+11@chiefsoft.com -- 14:36:42.626 FLOG_MAX [24645]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t ameye+11@chiefsoft.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'CoreGrade - Password Reset for ameye+11@chiefsoft.com ' -M ' - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
CoreGrade
-Dear Olu -
-We have initiated your password reset process as requested as by you on : -
- - - - -
Click the linkhttps://oameye.works.coregrade.com/passreset?rlink=8efee530933f469ed9e45ed3634e4ddd
Link will expire
-
-
-If it was not at your request, then please contact CoreGrade support immediately. - -For further support go to our website at oameye.works.coregrade.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing CoreGrade. -CoreGrade Team. - -
-
- -
- - - - - - ' -- 14:36:42.672 FLOG_MAX [24645]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Password Reset for ameye+11@chiefsoft.com -From: CoreGrade Support -Date: Sun, 12 Apr 2020 14:36:42 -0400 -To: ameye+11@chiefsoft.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="g+WqnszLtCu5zCOc" -Mime-version: 1.0 - - ---g+WqnszLtCu5zCOc -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
CoreGrade
-Dear Olu -
-We have initiated your password reset process as requested as by you on : -
- - - - -
Click the linkhttps://oameye.works.coregrade.com/passreset?rlink=8efee530933f469ed9e45ed3634e4ddd
Link will expire
-
-
-If it was not at your request, then please contact CoreGrade support immediately. - -For further support go to our website at oameye.works.coregrade.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing CoreGrade. -CoreGrade Team. - -
-
- -
- - - - - - - - ---g+WqnszLtCu5zCOc-- - -[C] . -[S] 250 2.0.0 Ok: queued as A0A6A210BA73 -[C] QUIT -[S] 221 2.0.0 Bye - -- 14:36:42.672 FLOG_MAX [24645]: - -END OF PIPE OUTPUT - - -- 14:36:42.673 FLOG_MAX [24645]: /ESMTP() -- 14:36:42.673 INFO [24645]: /member_email_calls() -- 14:36:42.673 INFO [24645]: RET: member_id=5 -- 14:36:42.673 INFO [24645]: RET: mode=100 -- 14:36:42.673 INFO [24645]: RET: reset_id=3 -- 14:36:42.673 INFO [24645]: RET: reset_key=YOU WILL GET THIS IF PIN IS CORRECT IN CONFIRM -- 14:36:42.673 INFO [24645]: RET: reset_seed=2020-04-12 14:36:42.617772-04 -- 14:36:42.673 INFO [24645]: RET: reset_seed==REMOVED -- 14:36:42.673 INFO [24645]: RET: result=YES I GET TO BACK END -- 14:36:42.675 INFO [24645]: COREGRADE is stopping... -- 14:36:42.675 DEBUG [24645]: Closing database connection -- 14:36:42.675 SQL [24645]: pgsql_close() -- 14:36:42.576 DEBUG [24645]: Database connection successful -- 14:36:42.576 INFO [24645]: _SERVER found -- 14:36:42.576 INFO [24645]: REMOTE_ADDR = 10.0.0.15 -- 14:36:42.576 INFO [24645]: SERVER_NAME = oameye.works.coregrade.com -- 14:36:42.576 INFO [24645]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=eras7bpu3m8qh30r7tqlobhn6l2rndr2 -- 14:36:42.576 INFO [24645]: QUERY_STRING = /auth/resetpass -- 14:36:42.576 INFO [24645]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:36:42.676 INFO [24645]: COREGRADE is stopping... -- 14:36:42.676 DEBUG [24645]: Closing database connection -- 14:36:42.676 SQL [24645]: pgsql_close() -- 14:36:42.767 INFO [24645]: COREGRADE is starting... -- 14:36:42.767 INFO [24645]: Version from config: 1.0 -- 14:36:42.767 DEBUG [24645]: Connecting to database... -- 14:36:42.767 DEBUG [24645]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:36:42.767 SQL [24645]: pgsql_db_connect() -- 14:36:42.771 DEBUG [24645]: Database connection successful -- 14:36:42.771 INFO [24645]: _SERVER found -- 14:36:42.771 INFO [24645]: REMOTE_ADDR = 10.0.0.15 -- 14:36:42.771 INFO [24645]: SERVER_NAME = oameye.works.coregrade.com -- 14:36:42.771 INFO [24645]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=eras7bpu3m8qh30r7tqlobhn6l2rndr2 -- 14:36:42.771 INFO [24645]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:36:42.771 INFO [24645]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:36:42.783 INFO [24645]: COREGRADE is stopping... -- 14:36:42.783 DEBUG [24645]: Closing database connection -- 14:36:42.783 SQL [24645]: pgsql_close() -- 14:43:15.956 INFO [24935]: COREGRADE is starting... -- 14:43:15.956 INFO [24935]: Version from config: 1.0 -- 14:43:15.956 DEBUG [24935]: Connecting to database... -- 14:43:15.956 DEBUG [24935]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:43:15.956 SQL [24935]: pgsql_db_connect() -- 14:43:15.961 DEBUG [24935]: Database connection successful -- 14:43:15.961 INFO [24935]: _SERVER found -- 14:43:15.961 INFO [24935]: REMOTE_ADDR = 10.0.0.15 -- 14:43:15.961 INFO [24935]: SERVER_NAME = oameye.works.coregrade.com -- 14:43:15.961 INFO [24935]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=eras7bpu3m8qh30r7tqlobhn6l2rndr2 -- 14:43:15.961 INFO [24935]: QUERY_STRING = -- 14:43:15.961 INFO [24935]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:43:16.005 INFO [24935]: COREGRADE is stopping... -- 14:43:16.005 DEBUG [24935]: Closing database connection -- 14:43:16.005 SQL [24935]: pgsql_close() -- 14:43:16.108 INFO [24935]: COREGRADE is starting... -- 14:43:16.108 INFO [24935]: Version from config: 1.0 -- 14:43:16.108 DEBUG [24935]: Connecting to database... -- 14:43:16.108 DEBUG [24935]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:43:16.108 SQL [24935]: pgsql_db_connect() -- 14:43:16.112 DEBUG [24935]: Database connection successful -- 14:43:16.112 INFO [24935]: _SERVER found -- 14:43:16.112 INFO [24935]: REMOTE_ADDR = 10.0.0.15 -- 14:43:16.112 INFO [24935]: SERVER_NAME = oameye.works.coregrade.com -- 14:43:16.112 INFO [24935]: HTTP_COOKIE = ci_session=g3jk5n8u8j802dkftvf4s7d5gjh0rs6h; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 14:43:16.112 INFO [24935]: QUERY_STRING = /assets/img/footer_1.jpg -- 14:43:16.112 INFO [24935]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:43:16.125 INFO [24935]: COREGRADE is stopping... -- 14:43:16.125 DEBUG [24935]: Closing database connection -- 14:43:16.125 SQL [24935]: pgsql_close() -- 14:44:39.785 INFO [24936]: COREGRADE is starting... -- 14:44:39.785 INFO [24936]: Version from config: 1.0 -- 14:44:39.785 DEBUG [24936]: Connecting to database... -- 14:44:39.785 DEBUG [24936]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:44:39.786 SQL [24936]: pgsql_db_connect() -- 14:44:39.790 DEBUG [24936]: Database connection successful -- 14:44:39.790 INFO [24936]: _SERVER found -- 14:44:39.790 INFO [24936]: REMOTE_ADDR = 10.0.0.15 -- 14:44:39.790 INFO [24936]: SERVER_NAME = oameye.works.coregrade.com -- 14:44:39.790 INFO [24936]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275 -- 14:44:39.790 INFO [24936]: QUERY_STRING = -- 14:44:39.790 INFO [24936]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:44:39.834 INFO [24936]: COREGRADE is stopping... -- 14:44:39.834 DEBUG [24936]: Closing database connection -- 14:44:39.834 SQL [24936]: pgsql_close() -- 14:44:40.625 INFO [24936]: COREGRADE is starting... -- 14:44:40.625 INFO [24936]: Version from config: 1.0 -- 14:44:40.625 DEBUG [24936]: Connecting to database... -- 14:44:40.625 DEBUG [24936]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:44:40.626 SQL [24936]: pgsql_db_connect() -- 14:44:40.630 DEBUG [24936]: Database connection successful -- 14:44:40.630 INFO [24936]: _SERVER found -- 14:44:40.630 INFO [24936]: REMOTE_ADDR = 10.0.0.15 -- 14:44:40.630 INFO [24936]: SERVER_NAME = oameye.works.coregrade.com -- 14:44:40.630 INFO [24936]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=pnacjasu4sccsemui9g9hdluodjfdk1p -- 14:44:40.630 INFO [24936]: QUERY_STRING = /assets/img/footer_1.jpg -- 14:44:40.630 INFO [24936]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:44:40.642 INFO [24936]: COREGRADE is stopping... -- 14:44:40.642 DEBUG [24936]: Closing database connection -- 14:44:40.642 SQL [24936]: pgsql_close() -- 14:44:46.198 INFO [24936]: COREGRADE is starting... -- 14:44:46.198 INFO [24936]: Version from config: 1.0 -- 14:44:46.198 DEBUG [24936]: Connecting to database... -- 14:44:46.199 DEBUG [24936]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:44:46.199 SQL [24936]: pgsql_db_connect() -- 14:44:46.228 INFO [24937]: COREGRADE is starting... -- 14:44:46.229 INFO [24937]: Version from config: 1.0 -- 14:44:46.229 DEBUG [24937]: Connecting to database... -- 14:44:46.229 DEBUG [24937]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:44:46.229 SQL [24937]: pgsql_db_connect() -- 14:44:46.203 DEBUG [24936]: Database connection successful -- 14:44:46.203 INFO [24936]: _SERVER found -- 14:44:46.203 INFO [24936]: REMOTE_ADDR = 10.0.0.15 -- 14:44:46.203 INFO [24936]: SERVER_NAME = oameye.works.coregrade.com -- 14:44:46.203 INFO [24936]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=pnacjasu4sccsemui9g9hdluodjfdk1p; _gat_gtag_UA_54829827_2=1 -- 14:44:46.203 INFO [24936]: QUERY_STRING = /welcome/viewLogin -- 14:44:46.203 INFO [24936]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:44:46.236 INFO [24936]: COREGRADE is stopping... -- 14:44:46.236 DEBUG [24936]: Closing database connection -- 14:44:46.236 SQL [24936]: pgsql_close() -- 14:44:46.233 DEBUG [24937]: Database connection successful -- 14:44:46.233 INFO [24937]: _SERVER found -- 14:44:46.233 INFO [24937]: REMOTE_ADDR = 10.0.0.15 -- 14:44:46.233 INFO [24937]: SERVER_NAME = oameye.works.coregrade.com -- 14:44:46.233 INFO [24937]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=pnacjasu4sccsemui9g9hdluodjfdk1p; _gat_gtag_UA_54829827_2=1 -- 14:44:46.233 INFO [24937]: QUERY_STRING = /auth -- 14:44:46.233 INFO [24937]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:44:46.271 INFO [24937]: COREGRADE is stopping... -- 14:44:46.271 DEBUG [24937]: Closing database connection -- 14:44:46.271 SQL [24937]: pgsql_close() -- 14:44:46.290 INFO [24936]: COREGRADE is starting... -- 14:44:46.291 INFO [24936]: Version from config: 1.0 -- 14:44:46.291 DEBUG [24936]: Connecting to database... -- 14:44:46.291 DEBUG [24936]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:44:46.291 SQL [24936]: pgsql_db_connect() -- 14:44:46.295 DEBUG [24936]: Database connection successful -- 14:44:46.295 INFO [24936]: _SERVER found -- 14:44:46.295 INFO [24936]: REMOTE_ADDR = 10.0.0.15 -- 14:44:46.295 INFO [24936]: SERVER_NAME = oameye.works.coregrade.com -- 14:44:46.295 INFO [24936]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=pnacjasu4sccsemui9g9hdluodjfdk1p; _gat_gtag_UA_54829827_2=1 -- 14:44:46.295 INFO [24936]: QUERY_STRING = /auth/index -- 14:44:46.295 INFO [24936]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:44:46.330 INFO [24936]: COREGRADE is stopping... -- 14:44:46.330 DEBUG [24936]: Closing database connection -- 14:44:46.330 SQL [24936]: pgsql_close() -- 14:44:46.777 INFO [24937]: COREGRADE is starting... -- 14:44:46.777 INFO [24937]: Version from config: 1.0 -- 14:44:46.777 DEBUG [24937]: Connecting to database... -- 14:44:46.777 DEBUG [24937]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:44:46.777 SQL [24937]: pgsql_db_connect() -- 14:44:46.781 DEBUG [24937]: Database connection successful -- 14:44:46.781 INFO [24937]: _SERVER found -- 14:44:46.781 INFO [24937]: REMOTE_ADDR = 10.0.0.15 -- 14:44:46.781 INFO [24937]: SERVER_NAME = oameye.works.coregrade.com -- 14:44:46.781 INFO [24937]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=pnacjasu4sccsemui9g9hdluodjfdk1p; _gat_gtag_UA_54829827_2=1 -- 14:44:46.781 INFO [24937]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:44:46.781 INFO [24937]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:44:46.793 INFO [24937]: COREGRADE is stopping... -- 14:44:46.793 DEBUG [24937]: Closing database connection -- 14:44:46.793 SQL [24937]: pgsql_close() -- 14:45:08.818 INFO [24939]: COREGRADE is starting... -- 14:45:08.819 INFO [24939]: Version from config: 1.0 -- 14:45:08.819 DEBUG [24939]: Connecting to database... -- 14:45:08.819 DEBUG [24939]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:45:08.819 SQL [24939]: pgsql_db_connect() -- 14:45:08.823 DEBUG [24939]: Database connection successful -- 14:45:08.823 INFO [24939]: _SERVER found -- 14:45:08.823 INFO [24939]: REMOTE_ADDR = 10.0.0.15 -- 14:45:08.823 INFO [24939]: SERVER_NAME = oameye.works.coregrade.com -- 14:45:08.823 INFO [24939]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=pnacjasu4sccsemui9g9hdluodjfdk1p; _gat_gtag_UA_54829827_2=1 -- 14:45:08.823 INFO [24939]: QUERY_STRING = /auth/resetpass -- 14:45:08.823 INFO [24939]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:45:08.861 INFO [24939]: COREGRADE is stopping... -- 14:45:08.861 DEBUG [24939]: Closing database connection -- 14:45:08.861 SQL [24939]: pgsql_close() -- 14:45:09.202 INFO [24939]: COREGRADE is starting... -- 14:45:09.202 INFO [24939]: Version from config: 1.0 -- 14:45:09.202 DEBUG [24939]: Connecting to database... -- 14:45:09.202 DEBUG [24939]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:45:09.203 SQL [24939]: pgsql_db_connect() -- 14:45:09.207 DEBUG [24939]: Database connection successful -- 14:45:09.207 INFO [24939]: _SERVER found -- 14:45:09.207 INFO [24939]: REMOTE_ADDR = 10.0.0.15 -- 14:45:09.207 INFO [24939]: SERVER_NAME = oameye.works.coregrade.com -- 14:45:09.207 INFO [24939]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=pnacjasu4sccsemui9g9hdluodjfdk1p; _gat_gtag_UA_54829827_2=1 -- 14:45:09.207 INFO [24939]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:45:09.207 INFO [24939]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:45:09.218 INFO [24939]: COREGRADE is stopping... -- 14:45:09.218 DEBUG [24939]: Closing database connection -- 14:45:09.218 SQL [24939]: pgsql_close() -- 14:45:17.546 INFO [24938]: COREGRADE is starting... -- 14:45:17.546 INFO [24938]: Version from config: 1.0 -- 14:45:17.546 DEBUG [24938]: Connecting to database... -- 14:45:17.546 DEBUG [24938]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:45:17.546 SQL [24938]: pgsql_db_connect() -- 14:45:17.588 INFO [24938]: COREGRADE is starting... -- 14:45:17.588 INFO [24938]: Version from config: 1.0 -- 14:45:17.588 DEBUG [24938]: Connecting to database... -- 14:45:17.588 DEBUG [24938]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:45:17.588 SQL [24938]: pgsql_db_connect() -- 14:45:17.592 DEBUG [24938]: Database connection successful -- 14:45:17.592 INFO [24938]: _SERVER found -- 14:45:17.592 INFO [24938]: REMOTE_ADDR = 10.0.0.15 -- 14:45:17.592 INFO [24938]: SERVER_NAME = oameye.works.coregrade.com -- 14:45:17.592 INFO [24938]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=pnacjasu4sccsemui9g9hdluodjfdk1p; _gat_gtag_UA_54829827_2=1 -- 14:45:17.592 INFO [24938]: QUERY_STRING = -- 14:45:17.592 INFO [24938]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:45:17.592 INFO [24938]: SystemStatus()09-09-********~************ -- 14:45:17.592 INFO [24938]: long coregrade_api_main(CVars in, CVars &out) -- 14:45:17.592 INFO [24938]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 14:45:17.592 INFO [24938]: account calls -- 14:45:17.592 INFO [24938]: account_calls() -- 14:45:17.592 INFO [24938]: passwordReset() -- 14:45:17.592 INFO [24938]: startPassReset() -- 14:45:17.592 FLOG_MAX [24938]: REQ_STRING(username) -- 14:45:17.592 FLOG_MAX [24938]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:45:17.592 SQL [24938]: pgsql_query() -- 14:45:17.592 SQL [24938]: About to run query: -- 14:45:17.592 SQL [24938]: SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw') -- 14:45:17.595 SQL [24938]: Found rows: 0 -- 14:45:17.595 SQL [24938]: Found rows: 0 -- 14:45:17.595 FLOG_MAX [24938]: insert_db_record() -- 14:45:17.595 SQL [24938]: pgsql_exec() -- 14:45:17.595 SQL [24938]: About to run query: -- 14:45:17.595 SQL [24938]: INSERT INTO password_reset (loc,status,username) VALUES ('10.0.0.15','3','tokslaw') -- 14:45:17.596 SQL [24938]: PQcmdTuples: 1 -- 14:45:17.596 SQL [24938]: Affected rows: 1 -- 14:45:17.596 FLOG_MAX [24938]: SELECT currval('password_reset_id_seq') -- 14:45:17.596 SQL [24938]: pgsql_query() -- 14:45:17.596 SQL [24938]: About to run query: -- 14:45:17.597 SQL [24938]: SELECT currval('password_reset_id_seq') -- 14:45:17.597 SQL [24938]: Found rows: 1 -- 14:45:17.597 INFO [24938]: RET: member_id= -- 14:45:17.597 INFO [24938]: RET: reset_id=4 -- 14:45:17.597 INFO [24938]: RET: reset_seed==REMOVED -- 14:45:17.597 INFO [24938]: RET: result=YES I GET TO BACK END -- 14:45:17.597 INFO [24938]: RET: status_advice=Check username or Contact support -- 14:45:17.597 INFO [24938]: RET: status_message=Invalid Username or disabled account -- 14:45:17.598 INFO [24938]: COREGRADE is stopping... -- 14:45:17.598 DEBUG [24938]: Closing database connection -- 14:45:17.598 SQL [24938]: pgsql_close() -- 14:45:17.550 DEBUG [24938]: Database connection successful -- 14:45:17.550 INFO [24938]: _SERVER found -- 14:45:17.550 INFO [24938]: REMOTE_ADDR = 10.0.0.15 -- 14:45:17.550 INFO [24938]: SERVER_NAME = oameye.works.coregrade.com -- 14:45:17.550 INFO [24938]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=pnacjasu4sccsemui9g9hdluodjfdk1p; _gat_gtag_UA_54829827_2=1 -- 14:45:17.550 INFO [24938]: QUERY_STRING = /auth/resetpass -- 14:45:17.550 INFO [24938]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:45:17.599 INFO [24938]: COREGRADE is stopping... -- 14:45:17.599 DEBUG [24938]: Closing database connection -- 14:45:17.599 SQL [24938]: pgsql_close() -- 14:45:17.958 INFO [24938]: COREGRADE is starting... -- 14:45:17.958 INFO [24938]: Version from config: 1.0 -- 14:45:17.958 DEBUG [24938]: Connecting to database... -- 14:45:17.958 DEBUG [24938]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:45:17.958 SQL [24938]: pgsql_db_connect() -- 14:45:17.962 DEBUG [24938]: Database connection successful -- 14:45:17.962 INFO [24938]: _SERVER found -- 14:45:17.962 INFO [24938]: REMOTE_ADDR = 10.0.0.15 -- 14:45:17.962 INFO [24938]: SERVER_NAME = oameye.works.coregrade.com -- 14:45:17.962 INFO [24938]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=pnacjasu4sccsemui9g9hdluodjfdk1p; _gat_gtag_UA_54829827_2=1 -- 14:45:17.962 INFO [24938]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:45:17.962 INFO [24938]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:45:17.975 INFO [24938]: COREGRADE is stopping... -- 14:45:17.975 DEBUG [24938]: Closing database connection -- 14:45:17.975 SQL [24938]: pgsql_close() -- 14:45:50.984 INFO [24965]: COREGRADE is starting... -- 14:45:50.984 INFO [24965]: Version from config: 1.0 -- 14:45:50.984 DEBUG [24965]: Connecting to database... -- 14:45:50.984 DEBUG [24965]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:45:50.985 SQL [24965]: pgsql_db_connect() -- 14:45:50.989 DEBUG [24965]: Database connection successful -- 14:45:50.989 INFO [24965]: _SERVER found -- 14:45:50.989 INFO [24965]: REMOTE_ADDR = 10.0.0.15 -- 14:45:50.989 INFO [24965]: SERVER_NAME = oameye.works.coregrade.com -- 14:45:50.989 INFO [24965]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=pnacjasu4sccsemui9g9hdluodjfdk1p -- 14:45:50.989 INFO [24965]: QUERY_STRING = -- 14:45:50.989 INFO [24965]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:45:51.031 INFO [24965]: COREGRADE is stopping... -- 14:45:51.031 DEBUG [24965]: Closing database connection -- 14:45:51.031 SQL [24965]: pgsql_close() -- 14:45:51.466 INFO [24965]: COREGRADE is starting... -- 14:45:51.466 INFO [24965]: Version from config: 1.0 -- 14:45:51.466 DEBUG [24965]: Connecting to database... -- 14:45:51.466 DEBUG [24965]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:45:51.466 SQL [24965]: pgsql_db_connect() -- 14:45:51.470 DEBUG [24965]: Database connection successful -- 14:45:51.470 INFO [24965]: _SERVER found -- 14:45:51.470 INFO [24965]: REMOTE_ADDR = 10.0.0.15 -- 14:45:51.470 INFO [24965]: SERVER_NAME = oameye.works.coregrade.com -- 14:45:51.470 INFO [24965]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=pnacjasu4sccsemui9g9hdluodjfdk1p -- 14:45:51.470 INFO [24965]: QUERY_STRING = /assets/img/footer_1.jpg -- 14:45:51.470 INFO [24965]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:45:51.482 INFO [24965]: COREGRADE is stopping... -- 14:45:51.482 DEBUG [24965]: Closing database connection -- 14:45:51.482 SQL [24965]: pgsql_close() -- 14:45:53.878 INFO [24965]: COREGRADE is starting... -- 14:45:53.879 INFO [24965]: Version from config: 1.0 -- 14:45:53.879 DEBUG [24965]: Connecting to database... -- 14:45:53.879 DEBUG [24965]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:45:53.879 SQL [24965]: pgsql_db_connect() -- 14:45:53.903 INFO [24935]: COREGRADE is starting... -- 14:45:53.903 INFO [24935]: Version from config: 1.0 -- 14:45:53.903 DEBUG [24935]: Connecting to database... -- 14:45:53.903 DEBUG [24935]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:45:53.903 SQL [24935]: pgsql_db_connect() -- 14:45:53.883 DEBUG [24965]: Database connection successful -- 14:45:53.883 INFO [24965]: _SERVER found -- 14:45:53.883 INFO [24965]: REMOTE_ADDR = 10.0.0.15 -- 14:45:53.883 INFO [24965]: SERVER_NAME = oameye.works.coregrade.com -- 14:45:53.883 INFO [24965]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=pnacjasu4sccsemui9g9hdluodjfdk1p; _gat_gtag_UA_54829827_2=1 -- 14:45:53.883 INFO [24965]: QUERY_STRING = /welcome/viewLogin -- 14:45:53.883 INFO [24965]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:45:53.915 INFO [24965]: COREGRADE is stopping... -- 14:45:53.915 DEBUG [24965]: Closing database connection -- 14:45:53.915 SQL [24965]: pgsql_close() -- 14:45:53.908 DEBUG [24935]: Database connection successful -- 14:45:53.908 INFO [24935]: _SERVER found -- 14:45:53.908 INFO [24935]: REMOTE_ADDR = 10.0.0.15 -- 14:45:53.908 INFO [24935]: SERVER_NAME = oameye.works.coregrade.com -- 14:45:53.908 INFO [24935]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=pnacjasu4sccsemui9g9hdluodjfdk1p; _gat_gtag_UA_54829827_2=1 -- 14:45:53.908 INFO [24935]: QUERY_STRING = /auth -- 14:45:53.908 INFO [24935]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:45:53.943 INFO [24935]: COREGRADE is stopping... -- 14:45:53.943 DEBUG [24935]: Closing database connection -- 14:45:53.943 SQL [24935]: pgsql_close() -- 14:45:53.946 INFO [24965]: COREGRADE is starting... -- 14:45:53.946 INFO [24965]: Version from config: 1.0 -- 14:45:53.946 DEBUG [24965]: Connecting to database... -- 14:45:53.946 DEBUG [24965]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:45:53.946 SQL [24965]: pgsql_db_connect() -- 14:45:53.950 DEBUG [24965]: Database connection successful -- 14:45:53.950 INFO [24965]: _SERVER found -- 14:45:53.950 INFO [24965]: REMOTE_ADDR = 10.0.0.15 -- 14:45:53.950 INFO [24965]: SERVER_NAME = oameye.works.coregrade.com -- 14:45:53.950 INFO [24965]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=pnacjasu4sccsemui9g9hdluodjfdk1p; _gat_gtag_UA_54829827_2=1 -- 14:45:53.950 INFO [24965]: QUERY_STRING = /auth/index -- 14:45:53.950 INFO [24965]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:45:53.985 INFO [24965]: COREGRADE is stopping... -- 14:45:53.985 DEBUG [24965]: Closing database connection -- 14:45:53.985 SQL [24965]: pgsql_close() -- 14:45:54.256 INFO [24935]: COREGRADE is starting... -- 14:45:54.256 INFO [24935]: Version from config: 1.0 -- 14:45:54.256 DEBUG [24935]: Connecting to database... -- 14:45:54.256 DEBUG [24935]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:45:54.256 SQL [24935]: pgsql_db_connect() -- 14:45:54.260 DEBUG [24935]: Database connection successful -- 14:45:54.260 INFO [24935]: _SERVER found -- 14:45:54.260 INFO [24935]: REMOTE_ADDR = 10.0.0.15 -- 14:45:54.260 INFO [24935]: SERVER_NAME = oameye.works.coregrade.com -- 14:45:54.260 INFO [24935]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=pnacjasu4sccsemui9g9hdluodjfdk1p; _gat_gtag_UA_54829827_2=1 -- 14:45:54.260 INFO [24935]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:45:54.260 INFO [24935]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:45:54.273 INFO [24935]: COREGRADE is stopping... -- 14:45:54.273 DEBUG [24935]: Closing database connection -- 14:45:54.273 SQL [24935]: pgsql_close() -- 14:46:14.523 INFO [24978]: COREGRADE is starting... -- 14:46:14.523 INFO [24978]: Version from config: 1.0 -- 14:46:14.523 DEBUG [24978]: Connecting to database... -- 14:46:14.523 DEBUG [24978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:46:14.523 SQL [24978]: pgsql_db_connect() -- 14:46:14.528 DEBUG [24978]: Database connection successful -- 14:46:14.528 INFO [24978]: _SERVER found -- 14:46:14.528 INFO [24978]: REMOTE_ADDR = 10.0.0.15 -- 14:46:14.528 INFO [24978]: SERVER_NAME = oameye.works.coregrade.com -- 14:46:14.528 INFO [24978]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=pnacjasu4sccsemui9g9hdluodjfdk1p; _gat_gtag_UA_54829827_2=1 -- 14:46:14.528 INFO [24978]: QUERY_STRING = /auth/resetpass -- 14:46:14.528 INFO [24978]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:46:14.565 INFO [24978]: COREGRADE is stopping... -- 14:46:14.565 DEBUG [24978]: Closing database connection -- 14:46:14.565 SQL [24978]: pgsql_close() -- 14:46:14.903 INFO [24978]: COREGRADE is starting... -- 14:46:14.903 INFO [24978]: Version from config: 1.0 -- 14:46:14.903 DEBUG [24978]: Connecting to database... -- 14:46:14.903 DEBUG [24978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:46:14.904 SQL [24978]: pgsql_db_connect() -- 14:46:14.907 DEBUG [24978]: Database connection successful -- 14:46:14.907 INFO [24978]: _SERVER found -- 14:46:14.907 INFO [24978]: REMOTE_ADDR = 10.0.0.15 -- 14:46:14.907 INFO [24978]: SERVER_NAME = oameye.works.coregrade.com -- 14:46:14.907 INFO [24978]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=pnacjasu4sccsemui9g9hdluodjfdk1p; _gat_gtag_UA_54829827_2=1 -- 14:46:14.907 INFO [24978]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:46:14.907 INFO [24978]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:46:14.919 INFO [24978]: COREGRADE is stopping... -- 14:46:14.919 DEBUG [24978]: Closing database connection -- 14:46:14.919 SQL [24978]: pgsql_close() -- 14:46:41.064 INFO [24936]: COREGRADE is starting... -- 14:46:41.065 INFO [24936]: Version from config: 1.0 -- 14:46:41.065 DEBUG [24936]: Connecting to database... -- 14:46:41.065 DEBUG [24936]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:46:41.065 SQL [24936]: pgsql_db_connect() -- 14:46:41.104 INFO [24936]: COREGRADE is starting... -- 14:46:41.104 INFO [24936]: Version from config: 1.0 -- 14:46:41.105 DEBUG [24936]: Connecting to database... -- 14:46:41.105 DEBUG [24936]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:46:41.105 SQL [24936]: pgsql_db_connect() -- 14:46:41.108 DEBUG [24936]: Database connection successful -- 14:46:41.108 INFO [24936]: _SERVER found -- 14:46:41.108 INFO [24936]: REMOTE_ADDR = 10.0.0.15 -- 14:46:41.108 INFO [24936]: SERVER_NAME = oameye.works.coregrade.com -- 14:46:41.108 INFO [24936]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=pnacjasu4sccsemui9g9hdluodjfdk1p; _gat_gtag_UA_54829827_2=1 -- 14:46:41.108 INFO [24936]: QUERY_STRING = -- 14:46:41.108 INFO [24936]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:46:41.109 INFO [24936]: SystemStatus()09-09-********~************ -- 14:46:41.109 INFO [24936]: long coregrade_api_main(CVars in, CVars &out) -- 14:46:41.109 INFO [24936]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 14:46:41.109 INFO [24936]: account calls -- 14:46:41.109 INFO [24936]: account_calls() -- 14:46:41.109 INFO [24936]: passwordReset() -- 14:46:41.109 INFO [24936]: startPassReset() -- 14:46:41.109 FLOG_MAX [24936]: REQ_STRING(username) -- 14:46:41.109 FLOG_MAX [24936]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:46:41.109 SQL [24936]: pgsql_query() -- 14:46:41.109 SQL [24936]: About to run query: -- 14:46:41.109 SQL [24936]: SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw') -- 14:46:41.111 SQL [24936]: Found rows: 0 -- 14:46:41.111 SQL [24936]: Found rows: 0 -- 14:46:41.111 FLOG_MAX [24936]: insert_db_record() -- 14:46:41.111 SQL [24936]: pgsql_exec() -- 14:46:41.111 SQL [24936]: About to run query: -- 14:46:41.111 SQL [24936]: INSERT INTO password_reset (loc,status,username) VALUES ('10.0.0.15','3','tokslaw') -- 14:46:41.113 SQL [24936]: PQcmdTuples: 1 -- 14:46:41.113 SQL [24936]: Affected rows: 1 -- 14:46:41.113 FLOG_MAX [24936]: SELECT currval('password_reset_id_seq') -- 14:46:41.113 SQL [24936]: pgsql_query() -- 14:46:41.113 SQL [24936]: About to run query: -- 14:46:41.113 SQL [24936]: SELECT currval('password_reset_id_seq') -- 14:46:41.113 SQL [24936]: Found rows: 1 -- 14:46:41.113 INFO [24936]: RET: member_id= -- 14:46:41.113 INFO [24936]: RET: reset_id=5 -- 14:46:41.113 INFO [24936]: RET: reset_seed==REMOVED -- 14:46:41.113 INFO [24936]: RET: result=YES I GET TO BACK END -- 14:46:41.113 INFO [24936]: RET: status_advice=Check username or Contact support -- 14:46:41.113 INFO [24936]: RET: status_message=Invalid Username or disabled account -- 14:46:41.115 INFO [24936]: COREGRADE is stopping... -- 14:46:41.115 DEBUG [24936]: Closing database connection -- 14:46:41.115 SQL [24936]: pgsql_close() -- 14:46:41.069 DEBUG [24936]: Database connection successful -- 14:46:41.069 INFO [24936]: _SERVER found -- 14:46:41.069 INFO [24936]: REMOTE_ADDR = 10.0.0.15 -- 14:46:41.069 INFO [24936]: SERVER_NAME = oameye.works.coregrade.com -- 14:46:41.069 INFO [24936]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=pnacjasu4sccsemui9g9hdluodjfdk1p; _gat_gtag_UA_54829827_2=1 -- 14:46:41.069 INFO [24936]: QUERY_STRING = /auth/resetpass -- 14:46:41.069 INFO [24936]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:46:41.115 INFO [24936]: COREGRADE is stopping... -- 14:46:41.115 DEBUG [24936]: Closing database connection -- 14:46:41.115 SQL [24936]: pgsql_close() -- 14:46:41.454 INFO [24936]: COREGRADE is starting... -- 14:46:41.454 INFO [24936]: Version from config: 1.0 -- 14:46:41.454 DEBUG [24936]: Connecting to database... -- 14:46:41.454 DEBUG [24936]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:46:41.455 SQL [24936]: pgsql_db_connect() -- 14:46:41.459 DEBUG [24936]: Database connection successful -- 14:46:41.459 INFO [24936]: _SERVER found -- 14:46:41.459 INFO [24936]: REMOTE_ADDR = 10.0.0.15 -- 14:46:41.459 INFO [24936]: SERVER_NAME = oameye.works.coregrade.com -- 14:46:41.459 INFO [24936]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=pnacjasu4sccsemui9g9hdluodjfdk1p; _gat_gtag_UA_54829827_2=1 -- 14:46:41.459 INFO [24936]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:46:41.459 INFO [24936]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:46:41.470 INFO [24936]: COREGRADE is stopping... -- 14:46:41.470 DEBUG [24936]: Closing database connection -- 14:46:41.470 SQL [24936]: pgsql_close() -- 14:46:47.715 INFO [24937]: COREGRADE is starting... -- 14:46:47.715 INFO [24937]: Version from config: 1.0 -- 14:46:47.715 DEBUG [24937]: Connecting to database... -- 14:46:47.715 DEBUG [24937]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:46:47.715 SQL [24937]: pgsql_db_connect() -- 14:46:47.719 DEBUG [24937]: Database connection successful -- 14:46:47.719 INFO [24937]: _SERVER found -- 14:46:47.719 INFO [24937]: REMOTE_ADDR = 10.0.0.15 -- 14:46:47.719 INFO [24937]: SERVER_NAME = oameye.works.coregrade.com -- 14:46:47.719 INFO [24937]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=g3jk5n8u8j802dkftvf4s7d5gjh0rs6h -- 14:46:47.719 INFO [24937]: QUERY_STRING = /auth -- 14:46:47.719 INFO [24937]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:46:47.751 INFO [24937]: COREGRADE is stopping... -- 14:46:47.751 DEBUG [24937]: Closing database connection -- 14:46:47.751 SQL [24937]: pgsql_close() -- 14:46:47.779 INFO [24937]: COREGRADE is starting... -- 14:46:47.780 INFO [24937]: Version from config: 1.0 -- 14:46:47.780 DEBUG [24937]: Connecting to database... -- 14:46:47.780 DEBUG [24937]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:46:47.780 SQL [24937]: pgsql_db_connect() -- 14:46:47.784 DEBUG [24937]: Database connection successful -- 14:46:47.784 INFO [24937]: _SERVER found -- 14:46:47.784 INFO [24937]: REMOTE_ADDR = 10.0.0.15 -- 14:46:47.784 INFO [24937]: SERVER_NAME = oameye.works.coregrade.com -- 14:46:47.784 INFO [24937]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=g3jk5n8u8j802dkftvf4s7d5gjh0rs6h -- 14:46:47.784 INFO [24937]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:46:47.784 INFO [24937]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:46:47.795 INFO [24937]: COREGRADE is stopping... -- 14:46:47.795 DEBUG [24937]: Closing database connection -- 14:46:47.795 SQL [24937]: pgsql_close() -- 14:46:49.605 INFO [24937]: COREGRADE is starting... -- 14:46:49.606 INFO [24937]: Version from config: 1.0 -- 14:46:49.606 DEBUG [24937]: Connecting to database... -- 14:46:49.606 DEBUG [24937]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:46:49.606 SQL [24937]: pgsql_db_connect() -- 14:46:49.610 INFO [24939]: COREGRADE is starting... -- 14:46:49.610 INFO [24939]: Version from config: 1.0 -- 14:46:49.610 DEBUG [24939]: Connecting to database... -- 14:46:49.610 DEBUG [24939]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:46:49.610 SQL [24939]: pgsql_db_connect() -- 14:46:49.614 DEBUG [24939]: Database connection successful -- 14:46:49.614 INFO [24939]: _SERVER found -- 14:46:49.614 INFO [24939]: REMOTE_ADDR = 10.0.0.15 -- 14:46:49.614 INFO [24939]: SERVER_NAME = oameye.works.coregrade.com -- 14:46:49.614 INFO [24939]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=g3jk5n8u8j802dkftvf4s7d5gjh0rs6h -- 14:46:49.614 INFO [24939]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:46:49.614 INFO [24939]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:46:49.625 INFO [24939]: COREGRADE is stopping... -- 14:46:49.626 DEBUG [24939]: Closing database connection -- 14:46:49.626 SQL [24939]: pgsql_close() -- 14:46:49.610 DEBUG [24937]: Database connection successful -- 14:46:49.610 INFO [24937]: _SERVER found -- 14:46:49.610 INFO [24937]: REMOTE_ADDR = 10.0.0.15 -- 14:46:49.610 INFO [24937]: SERVER_NAME = oameye.works.coregrade.com -- 14:46:49.610 INFO [24937]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=g3jk5n8u8j802dkftvf4s7d5gjh0rs6h -- 14:46:49.610 INFO [24937]: QUERY_STRING = /auth/resetpass -- 14:46:49.610 INFO [24937]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:46:49.642 INFO [24937]: COREGRADE is stopping... -- 14:46:49.642 DEBUG [24937]: Closing database connection -- 14:46:49.642 SQL [24937]: pgsql_close() -- 14:47:38.100 INFO [24938]: COREGRADE is starting... -- 14:47:38.101 INFO [24938]: Version from config: 1.0 -- 14:47:38.101 DEBUG [24938]: Connecting to database... -- 14:47:38.101 DEBUG [24938]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:47:38.101 SQL [24938]: pgsql_db_connect() -- 14:47:38.105 DEBUG [24938]: Database connection successful -- 14:47:38.105 INFO [24938]: _SERVER found -- 14:47:38.105 INFO [24938]: REMOTE_ADDR = 10.0.0.15 -- 14:47:38.105 INFO [24938]: SERVER_NAME = oameye.works.coregrade.com -- 14:47:38.105 INFO [24938]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=pnacjasu4sccsemui9g9hdluodjfdk1p -- 14:47:38.105 INFO [24938]: QUERY_STRING = -- 14:47:38.105 INFO [24938]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:47:38.145 INFO [24938]: COREGRADE is stopping... -- 14:47:38.145 DEBUG [24938]: Closing database connection -- 14:47:38.145 SQL [24938]: pgsql_close() -- 14:47:38.661 INFO [24938]: COREGRADE is starting... -- 14:47:38.662 INFO [24938]: Version from config: 1.0 -- 14:47:38.662 DEBUG [24938]: Connecting to database... -- 14:47:38.662 DEBUG [24938]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:47:38.662 SQL [24938]: pgsql_db_connect() -- 14:47:38.666 DEBUG [24938]: Database connection successful -- 14:47:38.666 INFO [24938]: _SERVER found -- 14:47:38.666 INFO [24938]: REMOTE_ADDR = 10.0.0.15 -- 14:47:38.666 INFO [24938]: SERVER_NAME = oameye.works.coregrade.com -- 14:47:38.666 INFO [24938]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=pnacjasu4sccsemui9g9hdluodjfdk1p -- 14:47:38.666 INFO [24938]: QUERY_STRING = /assets/img/footer_1.jpg -- 14:47:38.666 INFO [24938]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:47:38.677 INFO [24938]: COREGRADE is stopping... -- 14:47:38.677 DEBUG [24938]: Closing database connection -- 14:47:38.677 SQL [24938]: pgsql_close() -- 14:48:50.004 INFO [24935]: COREGRADE is starting... -- 14:48:50.004 INFO [24965]: COREGRADE is starting... -- 14:48:50.004 INFO [24935]: Version from config: 1.0 -- 14:48:50.004 DEBUG [24935]: Connecting to database... -- 14:48:50.004 DEBUG [24935]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:48:50.004 SQL [24935]: pgsql_db_connect() -- 14:48:50.004 INFO [24965]: Version from config: 1.0 -- 14:48:50.004 DEBUG [24965]: Connecting to database... -- 14:48:50.004 DEBUG [24965]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:48:50.004 SQL [24965]: pgsql_db_connect() -- 14:48:50.009 DEBUG [24965]: Database connection successful -- 14:48:50.009 INFO [24965]: _SERVER found -- 14:48:50.009 INFO [24965]: REMOTE_ADDR = 10.0.0.15 -- 14:48:50.009 INFO [24965]: SERVER_NAME = oameye.works.coregrade.com -- 14:48:50.009 INFO [24965]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=pnacjasu4sccsemui9g9hdluodjfdk1p -- 14:48:50.009 INFO [24965]: QUERY_STRING = /auth -- 14:48:50.009 INFO [24965]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:48:50.044 INFO [24965]: COREGRADE is stopping... -- 14:48:50.044 DEBUG [24965]: Closing database connection -- 14:48:50.044 SQL [24965]: pgsql_close() -- 14:48:50.009 DEBUG [24935]: Database connection successful -- 14:48:50.009 INFO [24935]: _SERVER found -- 14:48:50.009 INFO [24935]: REMOTE_ADDR = 10.0.0.15 -- 14:48:50.009 INFO [24935]: SERVER_NAME = oameye.works.coregrade.com -- 14:48:50.009 INFO [24935]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=pnacjasu4sccsemui9g9hdluodjfdk1p -- 14:48:50.009 INFO [24935]: QUERY_STRING = /welcome/viewLogin -- 14:48:50.009 INFO [24935]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:48:50.046 INFO [24935]: COREGRADE is stopping... -- 14:48:50.046 DEBUG [24935]: Closing database connection -- 14:48:50.046 SQL [24935]: pgsql_close() -- 14:48:50.089 INFO [24935]: COREGRADE is starting... -- 14:48:50.089 INFO [24935]: Version from config: 1.0 -- 14:48:50.089 DEBUG [24935]: Connecting to database... -- 14:48:50.089 DEBUG [24935]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:48:50.089 SQL [24935]: pgsql_db_connect() -- 14:48:50.093 DEBUG [24935]: Database connection successful -- 14:48:50.093 INFO [24935]: _SERVER found -- 14:48:50.093 INFO [24935]: REMOTE_ADDR = 10.0.0.15 -- 14:48:50.093 INFO [24935]: SERVER_NAME = oameye.works.coregrade.com -- 14:48:50.093 INFO [24935]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=pnacjasu4sccsemui9g9hdluodjfdk1p -- 14:48:50.093 INFO [24935]: QUERY_STRING = /auth/index -- 14:48:50.093 INFO [24935]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:48:50.127 INFO [24935]: COREGRADE is stopping... -- 14:48:50.127 DEBUG [24935]: Closing database connection -- 14:48:50.127 SQL [24935]: pgsql_close() -- 14:48:50.422 INFO [24978]: COREGRADE is starting... -- 14:48:50.422 INFO [24978]: Version from config: 1.0 -- 14:48:50.422 DEBUG [24978]: Connecting to database... -- 14:48:50.422 DEBUG [24978]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:48:50.422 SQL [24978]: pgsql_db_connect() -- 14:48:50.427 DEBUG [24978]: Database connection successful -- 14:48:50.427 INFO [24978]: _SERVER found -- 14:48:50.427 INFO [24978]: REMOTE_ADDR = 10.0.0.15 -- 14:48:50.427 INFO [24978]: SERVER_NAME = oameye.works.coregrade.com -- 14:48:50.427 INFO [24978]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=pnacjasu4sccsemui9g9hdluodjfdk1p -- 14:48:50.427 INFO [24978]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:48:50.427 INFO [24978]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:48:50.438 INFO [24978]: COREGRADE is stopping... -- 14:48:50.438 DEBUG [24978]: Closing database connection -- 14:48:50.438 SQL [24978]: pgsql_close() -- 14:49:03.517 INFO [24936]: COREGRADE is starting... -- 14:49:03.517 INFO [24936]: Version from config: 1.0 -- 14:49:03.518 DEBUG [24936]: Connecting to database... -- 14:49:03.518 DEBUG [24936]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:49:03.518 SQL [24936]: pgsql_db_connect() -- 14:49:03.522 DEBUG [24936]: Database connection successful -- 14:49:03.522 INFO [24936]: _SERVER found -- 14:49:03.522 INFO [24936]: REMOTE_ADDR = 10.0.0.15 -- 14:49:03.522 INFO [24936]: SERVER_NAME = oameye.works.coregrade.com -- 14:49:03.522 INFO [24936]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=pnacjasu4sccsemui9g9hdluodjfdk1p -- 14:49:03.522 INFO [24936]: QUERY_STRING = /auth/resetpass -- 14:49:03.522 INFO [24936]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:49:03.553 INFO [24936]: COREGRADE is stopping... -- 14:49:03.553 DEBUG [24936]: Closing database connection -- 14:49:03.553 SQL [24936]: pgsql_close() -- 14:49:03.861 INFO [24936]: COREGRADE is starting... -- 14:49:03.861 INFO [24936]: Version from config: 1.0 -- 14:49:03.861 DEBUG [24936]: Connecting to database... -- 14:49:03.862 DEBUG [24936]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:49:03.862 SQL [24936]: pgsql_db_connect() -- 14:49:03.866 DEBUG [24936]: Database connection successful -- 14:49:03.866 INFO [24936]: _SERVER found -- 14:49:03.866 INFO [24936]: REMOTE_ADDR = 10.0.0.15 -- 14:49:03.866 INFO [24936]: SERVER_NAME = oameye.works.coregrade.com -- 14:49:03.866 INFO [24936]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=pnacjasu4sccsemui9g9hdluodjfdk1p -- 14:49:03.866 INFO [24936]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:49:03.866 INFO [24936]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:49:03.877 INFO [24936]: COREGRADE is stopping... -- 14:49:03.877 DEBUG [24936]: Closing database connection -- 14:49:03.877 SQL [24936]: pgsql_close() -- 14:49:38.788 INFO [24939]: COREGRADE is starting... -- 14:49:38.788 INFO [24939]: Version from config: 1.0 -- 14:49:38.788 DEBUG [24939]: Connecting to database... -- 14:49:38.788 DEBUG [24939]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:49:38.788 SQL [24939]: pgsql_db_connect() -- 14:49:38.824 INFO [24939]: COREGRADE is starting... -- 14:49:38.824 INFO [24939]: Version from config: 1.0 -- 14:49:38.824 DEBUG [24939]: Connecting to database... -- 14:49:38.824 DEBUG [24939]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:49:38.824 SQL [24939]: pgsql_db_connect() -- 14:49:38.828 DEBUG [24939]: Database connection successful -- 14:49:38.828 INFO [24939]: _SERVER found -- 14:49:38.828 INFO [24939]: REMOTE_ADDR = 10.0.0.15 -- 14:49:38.828 INFO [24939]: SERVER_NAME = oameye.works.coregrade.com -- 14:49:38.828 INFO [24939]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=pnacjasu4sccsemui9g9hdluodjfdk1p -- 14:49:38.828 INFO [24939]: QUERY_STRING = -- 14:49:38.828 INFO [24939]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:49:38.828 INFO [24939]: SystemStatus()09-09-********~************ -- 14:49:38.828 INFO [24939]: long coregrade_api_main(CVars in, CVars &out) -- 14:49:38.828 INFO [24939]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 14:49:38.828 INFO [24939]: account calls -- 14:49:38.828 INFO [24939]: account_calls() -- 14:49:38.828 INFO [24939]: passwordReset() -- 14:49:38.828 INFO [24939]: startPassReset() -- 14:49:38.828 FLOG_MAX [24939]: REQ_STRING(username) -- 14:49:38.829 FLOG_MAX [24939]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:49:38.829 SQL [24939]: pgsql_query() -- 14:49:38.829 SQL [24939]: About to run query: -- 14:49:38.829 SQL [24939]: SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') -- 14:49:38.831 SQL [24939]: Found rows: 1 -- 14:49:38.831 FLOG_MAX [24939]: load_db_record(SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') ) num_cols=2 -- 14:49:38.831 SQL [24939]: pgsql_exec() -- 14:49:38.831 SQL [24939]: About to run query: -- 14:49:38.831 SQL [24939]: UPDATE password_reset SET status=7 WHERE status NOT IN (3,5) AND member_id=7 -- 14:49:38.832 SQL [24939]: PQcmdTuples: 0 -- 14:49:38.832 SQL [24939]: Affected rows: 0 -- 14:49:38.832 FLOG_MAX [24939]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:49:38.832 SQL [24939]: pgsql_query() -- 14:49:38.832 SQL [24939]: About to run query: -- 14:49:38.832 SQL [24939]: SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 14:49:38.829213-04') AS reset_key -- 14:49:38.833 SQL [24939]: Found rows: 1 -- 14:49:38.833 FLOG_MAX [24939]: load_db_record(SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 14:49:38.829213-04') AS reset_key) num_cols=2 -- 14:49:38.833 FLOG_MAX [24939]: insert_db_record() -- 14:49:38.833 SQL [24939]: pgsql_exec() -- 14:49:38.833 SQL [24939]: About to run query: -- 14:49:38.833 SQL [24939]: INSERT INTO password_reset (loc,member_id,reset_key,reset_pin,username) VALUES ('10.0.0.15','7','2f23df01e5f6ea8724458e9a6df70b1f','53482','tokslaw@chiefsoft.com') -- 14:49:38.835 SQL [24939]: PQcmdTuples: 1 -- 14:49:38.835 SQL [24939]: Affected rows: 1 -- 14:49:38.835 FLOG_MAX [24939]: SELECT currval('password_reset_id_seq') -- 14:49:38.835 SQL [24939]: pgsql_query() -- 14:49:38.835 SQL [24939]: About to run query: -- 14:49:38.835 SQL [24939]: SELECT currval('password_reset_id_seq') -- 14:49:38.835 SQL [24939]: Found rows: 1 -- 14:49:38.835 INFO [24939]: member_email_calls() -- 14:49:38.836 FLOG_MAX [24939]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:49:38.836 SQL [24939]: pgsql_query() -- 14:49:38.836 SQL [24939]: About to run query: -- 14:49:38.836 SQL [24939]: SELECT m.firstname,p.*,m.email AS member_email, created AS lost_added FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=6 -- 14:49:38.837 SQL [24939]: Found rows: 1 -- 14:49:38.837 FLOG_MAX [24939]: load_db_record(SELECT m.firstname,p.*,m.email AS member_email, created AS lost_added FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=6 ) num_cols=12 -- 14:49:38.837 FLOG_MAX [24939]: CGI Parsing: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 14:49:38.837 FLOG_MAX [24939]: Template '/home/oameye/coregrade/coregrade/email//start_losspass.mailfile' loaded: 1581 bytes -- 14:49:38.838 FLOG_MAX [24939]: Returning from FormFile() -- 14:49:38.838 FLOG_MAX [24939]: Template parsed: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 14:49:38.838 FLOG_MAX [24939]: ESMTP( 10.0.0.23, support@coregrade.com, tokslaw@chiefsoft.com ) -- 14:49:38.838 FLOG_MAX [24939]: Prepare body -- 14:49:38.838 FLOG_MAX [24939]: Locate & extract subject -- 14:49:38.838 FLOG_MAX [24939]: Found subject: CoreGrade - Password Reset for tokslaw@chiefsoft.com -- 14:49:38.838 FLOG_MAX [24939]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t tokslaw@chiefsoft.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'CoreGrade - Password Reset for tokslaw@chiefsoft.com ' -M ' - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
CoreGrade
-Dear Tokunbo -
-We have initiated your password reset process as requested as by you on 2020-04-12 14:49:38.834015: -
- - - - -
Click the linkhttps://oameye.works.coregrade.com/passreset?rlink=2f23df01e5f6ea8724458e9a6df70b1f
Link will expire
-
-
-If it was not at your request, then please contact CoreGrade support immediately. - -For further support go to our website at https://oameye.works.coregrade.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing CoreGrade. -CoreGrade Team. - -
-
- -
- - - - - - ' -- 14:49:38.898 FLOG_MAX [24939]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Password Reset for tokslaw@chiefsoft.com -From: CoreGrade Support -Date: Sun, 12 Apr 2020 14:49:38 -0400 -To: tokslaw@chiefsoft.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="JSi7cSkaFV9UvMLj" -Mime-version: 1.0 - - ---JSi7cSkaFV9UvMLj -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
CoreGrade
-Dear Tokunbo -
-We have initiated your password reset process as requested as by you on 2020-04-12 14:49:38.834015: -
- - - - -
Click the linkhttps://oameye.works.coregrade.com/passreset?rlink=2f23df01e5f6ea8724458e9a6df70b1f
Link will expire
-
-
-If it was not at your request, then please contact CoreGrade support immediately. - -For further support go to our website at https://oameye.works.coregrade.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing CoreGrade. -CoreGrade Team. - -
-
- -
- - - - - - - - ---JSi7cSkaFV9UvMLj-- - -[C] . -[S] 250 2.0.0 Ok: queued as DA638210BA74 -[C] QUIT -[S] 221 2.0.0 Bye - -- 14:49:38.899 FLOG_MAX [24939]: - -END OF PIPE OUTPUT - - -- 14:49:38.899 FLOG_MAX [24939]: /ESMTP() -- 14:49:38.899 INFO [24939]: /member_email_calls() -- 14:49:38.899 INFO [24939]: RET: member_id=7 -- 14:49:38.899 INFO [24939]: RET: mode=100 -- 14:49:38.899 INFO [24939]: RET: reset_id=6 -- 14:49:38.899 INFO [24939]: RET: reset_key=YOU WILL GET THIS IF PIN IS CORRECT IN CONFIRM -- 14:49:38.899 INFO [24939]: RET: reset_seed=2020-04-12 14:49:38.829213-04 -- 14:49:38.899 INFO [24939]: RET: reset_seed==REMOVED -- 14:49:38.899 INFO [24939]: RET: result=YES I GET TO BACK END -- 14:49:38.900 INFO [24939]: COREGRADE is stopping... -- 14:49:38.900 DEBUG [24939]: Closing database connection -- 14:49:38.900 SQL [24939]: pgsql_close() -- 14:49:38.792 DEBUG [24939]: Database connection successful -- 14:49:38.792 INFO [24939]: _SERVER found -- 14:49:38.792 INFO [24939]: REMOTE_ADDR = 10.0.0.15 -- 14:49:38.792 INFO [24939]: SERVER_NAME = oameye.works.coregrade.com -- 14:49:38.792 INFO [24939]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=pnacjasu4sccsemui9g9hdluodjfdk1p -- 14:49:38.792 INFO [24939]: QUERY_STRING = /auth/resetpass -- 14:49:38.792 INFO [24939]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:49:38.901 INFO [24939]: COREGRADE is stopping... -- 14:49:38.901 DEBUG [24939]: Closing database connection -- 14:49:38.901 SQL [24939]: pgsql_close() -- 14:49:39.213 INFO [24939]: COREGRADE is starting... -- 14:49:39.213 INFO [24939]: Version from config: 1.0 -- 14:49:39.213 DEBUG [24939]: Connecting to database... -- 14:49:39.213 DEBUG [24939]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:49:39.213 SQL [24939]: pgsql_db_connect() -- 14:49:39.217 DEBUG [24939]: Database connection successful -- 14:49:39.217 INFO [24939]: _SERVER found -- 14:49:39.217 INFO [24939]: REMOTE_ADDR = 10.0.0.15 -- 14:49:39.217 INFO [24939]: SERVER_NAME = oameye.works.coregrade.com -- 14:49:39.217 INFO [24939]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=pnacjasu4sccsemui9g9hdluodjfdk1p -- 14:49:39.217 INFO [24939]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:49:39.217 INFO [24939]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:49:39.228 INFO [24939]: COREGRADE is stopping... -- 14:49:39.228 DEBUG [24939]: Closing database connection -- 14:49:39.228 SQL [24939]: pgsql_close() -- 14:59:50.820 INFO [27494]: COREGRADE is starting... -- 14:59:50.821 INFO [27494]: Version from config: 1.0 -- 14:59:50.821 DEBUG [27494]: Connecting to database... -- 14:59:50.821 DEBUG [27494]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:59:50.821 SQL [27494]: pgsql_db_connect() -- 14:59:50.867 INFO [27494]: COREGRADE is starting... -- 14:59:50.867 INFO [27494]: Version from config: 1.0 -- 14:59:50.868 DEBUG [27494]: Connecting to database... -- 14:59:50.868 DEBUG [27494]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:59:50.868 SQL [27494]: pgsql_db_connect() -- 14:59:50.872 DEBUG [27494]: Database connection successful -- 14:59:50.872 INFO [27494]: _SERVER found -- 14:59:50.872 INFO [27494]: REMOTE_ADDR = 10.0.0.15 -- 14:59:50.872 INFO [27494]: SERVER_NAME = oameye.works.coregrade.com -- 14:59:50.872 INFO [27494]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=g3jk5n8u8j802dkftvf4s7d5gjh0rs6h -- 14:59:50.872 INFO [27494]: QUERY_STRING = -- 14:59:50.872 INFO [27494]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:59:50.872 INFO [27494]: SystemStatus()09-09-********~************ -- 14:59:50.872 INFO [27494]: long coregrade_api_main(CVars in, CVars &out) -- 14:59:50.872 INFO [27494]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 14:59:50.872 INFO [27494]: account calls -- 14:59:50.872 INFO [27494]: account_calls() -- 14:59:50.872 INFO [27494]: passwordReset() -- 14:59:50.872 INFO [27494]: startPassReset() -- 14:59:50.872 FLOG_MAX [27494]: REQ_STRING(username) -- 14:59:50.872 FLOG_MAX [27494]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:59:50.872 SQL [27494]: pgsql_query() -- 14:59:50.872 SQL [27494]: About to run query: -- 14:59:50.872 SQL [27494]: SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') -- 14:59:50.875 SQL [27494]: Found rows: 1 -- 14:59:50.875 FLOG_MAX [27494]: load_db_record(SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') ) num_cols=2 -- 14:59:50.875 SQL [27494]: pgsql_exec() -- 14:59:50.875 SQL [27494]: About to run query: -- 14:59:50.875 SQL [27494]: UPDATE password_reset SET status=7 WHERE status NOT IN (3,5) AND member_id=5 -- 14:59:50.877 SQL [27494]: PQcmdTuples: 3 -- 14:59:50.877 SQL [27494]: Affected rows: 3 -- 14:59:50.877 FLOG_MAX [27494]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:59:50.877 SQL [27494]: pgsql_query() -- 14:59:50.877 SQL [27494]: About to run query: -- 14:59:50.877 SQL [27494]: SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 14:59:50.873023-04') AS reset_key -- 14:59:50.878 SQL [27494]: Found rows: 1 -- 14:59:50.878 FLOG_MAX [27494]: load_db_record(SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 14:59:50.873023-04') AS reset_key) num_cols=2 -- 14:59:50.878 FLOG_MAX [27494]: insert_db_record() -- 14:59:50.878 SQL [27494]: pgsql_exec() -- 14:59:50.878 SQL [27494]: About to run query: -- 14:59:50.878 SQL [27494]: INSERT INTO password_reset (loc,member_id,reset_key,reset_pin,username) VALUES ('10.0.0.15','5','6b719b3a46dfa42dad09ae5653b4741c','84010','ameye+11@chiefsoft.com') -- 14:59:50.879 SQL [27494]: PQcmdTuples: 1 -- 14:59:50.879 SQL [27494]: Affected rows: 1 -- 14:59:50.879 FLOG_MAX [27494]: SELECT currval('password_reset_id_seq') -- 14:59:50.879 SQL [27494]: pgsql_query() -- 14:59:50.879 SQL [27494]: About to run query: -- 14:59:50.880 SQL [27494]: SELECT currval('password_reset_id_seq') -- 14:59:50.880 SQL [27494]: Found rows: 1 -- 14:59:50.880 INFO [27494]: member_email_calls() -- 14:59:50.881 FLOG_MAX [27494]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:59:50.881 SQL [27494]: pgsql_query() -- 14:59:50.881 SQL [27494]: About to run query: -- 14:59:50.881 SQL [27494]: SELECT m.firstname,p.*,m.email AS member_email, created AS lost_added FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=7 -- 14:59:50.882 SQL [27494]: Found rows: 1 -- 14:59:50.882 FLOG_MAX [27494]: load_db_record(SELECT m.firstname,p.*,m.email AS member_email, created AS lost_added FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=7 ) num_cols=12 -- 14:59:50.882 FLOG_MAX [27494]: CGI Parsing: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 14:59:50.882 FLOG_MAX [27494]: Template '/home/oameye/coregrade/coregrade/email//start_losspass.mailfile' loaded: 1581 bytes -- 14:59:50.882 FLOG_MAX [27494]: Returning from FormFile() -- 14:59:50.882 FLOG_MAX [27494]: Template parsed: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 14:59:50.882 FLOG_MAX [27494]: ESMTP( 10.0.0.23, support@coregrade.com, ameye+11@chiefsoft.com ) -- 14:59:50.882 FLOG_MAX [27494]: Prepare body -- 14:59:50.883 FLOG_MAX [27494]: Locate & extract subject -- 14:59:50.883 FLOG_MAX [27494]: Found subject: CoreGrade - Password Reset for ameye+11@chiefsoft.com -- 14:59:50.883 FLOG_MAX [27494]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t ameye+11@chiefsoft.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'CoreGrade - Password Reset for ameye+11@chiefsoft.com ' -M ' - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
CoreGrade
-Dear Olu -
-We have initiated your password reset process as requested as by you on 2020-04-12 14:59:50.878801: -
- - - - -
Click the linkhttps://oameye.works.coregrade.com/passreset?rlink=6b719b3a46dfa42dad09ae5653b4741c
Link will expire
-
-
-If it was not at your request, then please contact CoreGrade support immediately. - -For further support go to our website at https://oameye.works.coregrade.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing CoreGrade. -CoreGrade Team. - -
-
- -
- - - - - - ' -- 14:59:50.909 FLOG_MAX [27494]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Password Reset for ameye+11@chiefsoft.com -From: CoreGrade Support -Date: Sun, 12 Apr 2020 14:59:50 -0400 -To: ameye+11@chiefsoft.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="OgiWvJ0RI3ZaRcGa" -Mime-version: 1.0 - - ---OgiWvJ0RI3ZaRcGa -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
CoreGrade
-Dear Olu -
-We have initiated your password reset process as requested as by you on 2020-04-12 14:59:50.878801: -
- - - - -
Click the linkhttps://oameye.works.coregrade.com/passreset?rlink=6b719b3a46dfa42dad09ae5653b4741c
Link will expire
-
-
-If it was not at your request, then please contact CoreGrade support immediately. - -For further support go to our website at https://oameye.works.coregrade.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing CoreGrade. -CoreGrade Team. - -
-
- -
- - - - - - - - ---OgiWvJ0RI3ZaRcGa-- - -[C] . -[S] 250 2.0.0 Ok: queued as DCDC3210BA77 -[C] QUIT -[S] 221 2.0.0 Bye - -- 14:59:50.909 FLOG_MAX [27494]: - -END OF PIPE OUTPUT - - -- 14:59:50.909 FLOG_MAX [27494]: /ESMTP() -- 14:59:50.909 INFO [27494]: /member_email_calls() -- 14:59:50.909 INFO [27494]: RET: member_id=5 -- 14:59:50.909 INFO [27494]: RET: mode=100 -- 14:59:50.909 INFO [27494]: RET: reset_id=7 -- 14:59:50.909 INFO [27494]: RET: reset_key=YOU WILL GET THIS IF PIN IS CORRECT IN CONFIRM -- 14:59:50.909 INFO [27494]: RET: reset_seed=2020-04-12 14:59:50.873023-04 -- 14:59:50.909 INFO [27494]: RET: reset_seed==REMOVED -- 14:59:50.909 INFO [27494]: RET: result=YES I GET TO BACK END -- 14:59:50.923 INFO [27494]: COREGRADE is stopping... -- 14:59:50.923 DEBUG [27494]: Closing database connection -- 14:59:50.923 SQL [27494]: pgsql_close() -- 14:59:50.826 DEBUG [27494]: Database connection successful -- 14:59:50.826 INFO [27494]: _SERVER found -- 14:59:50.826 INFO [27494]: REMOTE_ADDR = 10.0.0.15 -- 14:59:50.826 INFO [27494]: SERVER_NAME = oameye.works.coregrade.com -- 14:59:50.826 INFO [27494]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=g3jk5n8u8j802dkftvf4s7d5gjh0rs6h -- 14:59:50.826 INFO [27494]: QUERY_STRING = /auth/resetpass -- 14:59:50.826 INFO [27494]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:59:50.924 INFO [27494]: COREGRADE is stopping... -- 14:59:50.924 DEBUG [27494]: Closing database connection -- 14:59:50.924 SQL [27494]: pgsql_close() -- 14:59:51.006 INFO [27494]: COREGRADE is starting... -- 14:59:51.007 INFO [27494]: Version from config: 1.0 -- 14:59:51.007 DEBUG [27494]: Connecting to database... -- 14:59:51.007 DEBUG [27494]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:59:51.007 SQL [27494]: pgsql_db_connect() -- 14:59:51.011 DEBUG [27494]: Database connection successful -- 14:59:51.011 INFO [27494]: _SERVER found -- 14:59:51.011 INFO [27494]: REMOTE_ADDR = 10.0.0.15 -- 14:59:51.011 INFO [27494]: SERVER_NAME = oameye.works.coregrade.com -- 14:59:51.011 INFO [27494]: HTTP_COOKIE = ci_session=jklplp53jpnugk1bqjbpolqc372thbgq; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 14:59:51.011 INFO [27494]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:59:51.011 INFO [27494]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:59:51.023 INFO [27494]: COREGRADE is stopping... -- 14:59:51.023 DEBUG [27494]: Closing database connection -- 14:59:51.023 SQL [27494]: pgsql_close() -- 15:00:31.783 INFO [27496]: COREGRADE is starting... -- 15:00:31.783 INFO [27496]: Version from config: 1.0 -- 15:00:31.783 DEBUG [27496]: Connecting to database... -- 15:00:31.783 DEBUG [27496]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:00:31.783 SQL [27496]: pgsql_db_connect() -- 15:00:31.787 DEBUG [27496]: Database connection successful -- 15:00:31.787 INFO [27496]: _SERVER found -- 15:00:31.787 INFO [27496]: REMOTE_ADDR = 10.0.0.15 -- 15:00:31.787 INFO [27496]: SERVER_NAME = oameye.works.coregrade.com -- 15:00:31.787 INFO [27496]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938 -- 15:00:31.787 INFO [27496]: QUERY_STRING = /passreset -- 15:00:31.787 INFO [27496]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:00:31.802 INFO [27496]: COREGRADE is stopping... -- 15:00:31.802 DEBUG [27496]: Closing database connection -- 15:00:31.802 SQL [27496]: pgsql_close() -- 15:00:31.950 INFO [27496]: COREGRADE is starting... -- 15:00:31.950 INFO [27496]: Version from config: 1.0 -- 15:00:31.950 DEBUG [27496]: Connecting to database... -- 15:00:31.950 DEBUG [27496]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:00:31.950 SQL [27496]: pgsql_db_connect() -- 15:00:31.954 DEBUG [27496]: Database connection successful -- 15:00:31.954 INFO [27496]: _SERVER found -- 15:00:31.954 INFO [27496]: REMOTE_ADDR = 10.0.0.15 -- 15:00:31.954 INFO [27496]: SERVER_NAME = oameye.works.coregrade.com -- 15:00:31.954 INFO [27496]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938 -- 15:00:31.954 INFO [27496]: QUERY_STRING = /favicon.ico -- 15:00:31.954 INFO [27496]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:00:31.967 INFO [27496]: COREGRADE is stopping... -- 15:00:31.967 DEBUG [27496]: Closing database connection -- 15:00:31.967 SQL [27496]: pgsql_close() -- 15:01:12.917 INFO [27495]: COREGRADE is starting... -- 15:01:12.917 INFO [27495]: Version from config: 1.0 -- 15:01:12.917 DEBUG [27495]: Connecting to database... -- 15:01:12.917 DEBUG [27495]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:01:12.917 SQL [27495]: pgsql_db_connect() -- 15:01:12.921 DEBUG [27495]: Database connection successful -- 15:01:12.921 INFO [27495]: _SERVER found -- 15:01:12.921 INFO [27495]: REMOTE_ADDR = 10.0.0.15 -- 15:01:12.921 INFO [27495]: SERVER_NAME = oameye.works.coregrade.com -- 15:01:12.921 INFO [27495]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938 -- 15:01:12.921 INFO [27495]: QUERY_STRING = /auth/passreset -- 15:01:12.921 INFO [27495]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:01:12.937 INFO [27495]: COREGRADE is stopping... -- 15:01:12.937 DEBUG [27495]: Closing database connection -- 15:01:12.937 SQL [27495]: pgsql_close() -- 15:04:20.021 INFO [27498]: COREGRADE is starting... -- 15:04:20.021 INFO [27498]: Version from config: 1.0 -- 15:04:20.021 DEBUG [27498]: Connecting to database... -- 15:04:20.021 DEBUG [27498]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:04:20.021 SQL [27498]: pgsql_db_connect() -- 15:04:20.026 DEBUG [27498]: Database connection successful -- 15:04:20.026 INFO [27498]: _SERVER found -- 15:04:20.026 INFO [27498]: REMOTE_ADDR = 10.0.0.15 -- 15:04:20.026 INFO [27498]: SERVER_NAME = oameye.works.coregrade.com -- 15:04:20.026 INFO [27498]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938 -- 15:04:20.026 INFO [27498]: QUERY_STRING = /auth/passreset -- 15:04:20.026 INFO [27498]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:04:20.065 INFO [27498]: COREGRADE is stopping... -- 15:04:20.065 DEBUG [27498]: Closing database connection -- 15:04:20.065 SQL [27498]: pgsql_close() -- 15:04:46.734 INFO [27497]: COREGRADE is starting... -- 15:04:46.735 INFO [27497]: Version from config: 1.0 -- 15:04:46.735 DEBUG [27497]: Connecting to database... -- 15:04:46.735 DEBUG [27497]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:04:46.735 SQL [27497]: pgsql_db_connect() -- 15:04:46.739 DEBUG [27497]: Database connection successful -- 15:04:46.739 INFO [27497]: _SERVER found -- 15:04:46.739 INFO [27497]: REMOTE_ADDR = 10.0.0.15 -- 15:04:46.739 INFO [27497]: SERVER_NAME = oameye.works.coregrade.com -- 15:04:46.739 INFO [27497]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=s8ios5a8dij09k1iams7me9kn7o6u7gi -- 15:04:46.739 INFO [27497]: QUERY_STRING = /auth/passreset -- 15:04:46.739 INFO [27497]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:04:46.777 INFO [27497]: COREGRADE is stopping... -- 15:04:46.777 DEBUG [27497]: Closing database connection -- 15:04:46.777 SQL [27497]: pgsql_close() -- 15:05:08.816 INFO [27566]: COREGRADE is starting... -- 15:05:08.816 INFO [27566]: Version from config: 1.0 -- 15:05:08.816 DEBUG [27566]: Connecting to database... -- 15:05:08.816 DEBUG [27566]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:05:08.816 SQL [27566]: pgsql_db_connect() -- 15:05:08.820 DEBUG [27566]: Database connection successful -- 15:05:08.820 INFO [27566]: _SERVER found -- 15:05:08.820 INFO [27566]: REMOTE_ADDR = 10.0.0.15 -- 15:05:08.820 INFO [27566]: SERVER_NAME = oameye.works.coregrade.com -- 15:05:08.820 INFO [27566]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=s8ios5a8dij09k1iams7me9kn7o6u7gi -- 15:05:08.820 INFO [27566]: QUERY_STRING = /auth/passreset -- 15:05:08.820 INFO [27566]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:05:08.858 INFO [27566]: COREGRADE is stopping... -- 15:05:08.858 DEBUG [27566]: Closing database connection -- 15:05:08.858 SQL [27566]: pgsql_close() -- 15:05:13.382 INFO [27566]: COREGRADE is starting... -- 15:05:13.383 INFO [27566]: Version from config: 1.0 -- 15:05:13.383 DEBUG [27566]: Connecting to database... -- 15:05:13.383 DEBUG [27566]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:05:13.383 SQL [27566]: pgsql_db_connect() -- 15:05:13.387 DEBUG [27566]: Database connection successful -- 15:05:13.387 INFO [27566]: _SERVER found -- 15:05:13.387 INFO [27566]: REMOTE_ADDR = 10.0.0.15 -- 15:05:13.387 INFO [27566]: SERVER_NAME = oameye.works.coregrade.com -- 15:05:13.387 INFO [27566]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=s8ios5a8dij09k1iams7me9kn7o6u7gi -- 15:05:13.387 INFO [27566]: QUERY_STRING = /auth/passreset -- 15:05:13.387 INFO [27566]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:05:13.422 INFO [27566]: COREGRADE is stopping... -- 15:05:13.422 DEBUG [27566]: Closing database connection -- 15:05:13.422 SQL [27566]: pgsql_close() -- 15:05:36.790 INFO [27494]: COREGRADE is starting... -- 15:05:36.790 INFO [27494]: Version from config: 1.0 -- 15:05:36.790 DEBUG [27494]: Connecting to database... -- 15:05:36.790 DEBUG [27494]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:05:36.790 SQL [27494]: pgsql_db_connect() -- 15:05:36.794 DEBUG [27494]: Database connection successful -- 15:05:36.794 INFO [27494]: _SERVER found -- 15:05:36.794 INFO [27494]: REMOTE_ADDR = 10.0.0.15 -- 15:05:36.794 INFO [27494]: SERVER_NAME = oameye.works.coregrade.com -- 15:05:36.794 INFO [27494]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 15:05:36.794 INFO [27494]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 15:05:36.806 INFO [27494]: COREGRADE is stopping... -- 15:05:36.806 DEBUG [27494]: Closing database connection -- 15:05:36.806 SQL [27494]: pgsql_close() -- 15:08:24.626 INFO [27496]: COREGRADE is starting... -- 15:08:24.627 INFO [27496]: Version from config: 1.0 -- 15:08:24.627 DEBUG [27496]: Connecting to database... -- 15:08:24.627 DEBUG [27496]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:08:24.627 SQL [27496]: pgsql_db_connect() -- 15:08:24.631 DEBUG [27496]: Database connection successful -- 15:08:24.631 INFO [27496]: _SERVER found -- 15:08:24.631 INFO [27496]: REMOTE_ADDR = 10.0.0.15 -- 15:08:24.631 INFO [27496]: SERVER_NAME = oameye.works.coregrade.com -- 15:08:24.631 INFO [27496]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; _gat_gtag_UA_54829827_2=1 -- 15:08:24.631 INFO [27496]: QUERY_STRING = -- 15:08:24.631 INFO [27496]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:08:24.676 INFO [27496]: COREGRADE is stopping... -- 15:08:24.676 DEBUG [27496]: Closing database connection -- 15:08:24.676 SQL [27496]: pgsql_close() -- 15:08:24.960 INFO [27496]: COREGRADE is starting... -- 15:08:24.960 INFO [27496]: Version from config: 1.0 -- 15:08:24.960 DEBUG [27496]: Connecting to database... -- 15:08:24.960 DEBUG [27496]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:08:24.960 SQL [27496]: pgsql_db_connect() -- 15:08:24.964 DEBUG [27496]: Database connection successful -- 15:08:24.964 INFO [27496]: _SERVER found -- 15:08:24.964 INFO [27496]: REMOTE_ADDR = 10.0.0.15 -- 15:08:24.964 INFO [27496]: SERVER_NAME = oameye.works.coregrade.com -- 15:08:24.964 INFO [27496]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; _gat_gtag_UA_54829827_2=1; ci_session=uq74c7so1uth5pobiets99mqrpigkvvl -- 15:08:24.964 INFO [27496]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:08:24.964 INFO [27496]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:08:24.976 INFO [27496]: COREGRADE is stopping... -- 15:08:24.976 DEBUG [27496]: Closing database connection -- 15:08:24.976 SQL [27496]: pgsql_close() -- 15:09:16.410 INFO [27495]: COREGRADE is starting... -- 15:09:16.410 INFO [27495]: Version from config: 1.0 -- 15:09:16.410 DEBUG [27495]: Connecting to database... -- 15:09:16.410 DEBUG [27495]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:09:16.410 SQL [27495]: pgsql_db_connect() -- 15:09:16.416 INFO [27498]: COREGRADE is starting... -- 15:09:16.416 INFO [27498]: Version from config: 1.0 -- 15:09:16.416 DEBUG [27498]: Connecting to database... -- 15:09:16.416 DEBUG [27498]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:09:16.416 SQL [27498]: pgsql_db_connect() -- 15:09:16.420 DEBUG [27498]: Database connection successful -- 15:09:16.420 INFO [27498]: _SERVER found -- 15:09:16.420 INFO [27498]: REMOTE_ADDR = 10.0.0.15 -- 15:09:16.420 INFO [27498]: SERVER_NAME = oameye.works.coregrade.com -- 15:09:16.420 INFO [27498]: HTTP_COOKIE = ci_session=jklplp53jpnugk1bqjbpolqc372thbgq; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 15:09:16.420 INFO [27498]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:09:16.420 INFO [27498]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:09:16.433 INFO [27498]: COREGRADE is stopping... -- 15:09:16.433 DEBUG [27498]: Closing database connection -- 15:09:16.433 SQL [27498]: pgsql_close() -- 15:09:16.415 DEBUG [27495]: Database connection successful -- 15:09:16.415 INFO [27495]: _SERVER found -- 15:09:16.415 INFO [27495]: REMOTE_ADDR = 10.0.0.15 -- 15:09:16.415 INFO [27495]: SERVER_NAME = oameye.works.coregrade.com -- 15:09:16.415 INFO [27495]: HTTP_COOKIE = ci_session=jklplp53jpnugk1bqjbpolqc372thbgq; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 15:09:16.415 INFO [27495]: QUERY_STRING = /auth/resetpass -- 15:09:16.415 INFO [27495]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:09:16.452 INFO [27495]: COREGRADE is stopping... -- 15:09:16.452 DEBUG [27495]: Closing database connection -- 15:09:16.452 SQL [27495]: pgsql_close() -- 15:09:17.875 INFO [27495]: COREGRADE is starting... -- 15:09:17.875 INFO [27495]: Version from config: 1.0 -- 15:09:17.875 DEBUG [27495]: Connecting to database... -- 15:09:17.875 DEBUG [27495]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:09:17.875 SQL [27495]: pgsql_db_connect() -- 15:09:17.881 INFO [27498]: COREGRADE is starting... -- 15:09:17.881 INFO [27498]: Version from config: 1.0 -- 15:09:17.881 DEBUG [27498]: Connecting to database... -- 15:09:17.881 DEBUG [27498]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:09:17.881 SQL [27498]: pgsql_db_connect() -- 15:09:17.885 DEBUG [27498]: Database connection successful -- 15:09:17.885 INFO [27498]: _SERVER found -- 15:09:17.885 INFO [27498]: REMOTE_ADDR = 10.0.0.15 -- 15:09:17.885 INFO [27498]: SERVER_NAME = oameye.works.coregrade.com -- 15:09:17.885 INFO [27498]: HTTP_COOKIE = ci_session=e9lfp3odnghlq58udkieec0gebk461nf; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 15:09:17.885 INFO [27498]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:09:17.885 INFO [27498]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:09:17.898 INFO [27498]: COREGRADE is stopping... -- 15:09:17.898 DEBUG [27498]: Closing database connection -- 15:09:17.898 SQL [27498]: pgsql_close() -- 15:09:17.879 DEBUG [27495]: Database connection successful -- 15:09:17.879 INFO [27495]: _SERVER found -- 15:09:17.879 INFO [27495]: REMOTE_ADDR = 10.0.0.15 -- 15:09:17.879 INFO [27495]: SERVER_NAME = oameye.works.coregrade.com -- 15:09:17.879 INFO [27495]: HTTP_COOKIE = ci_session=e9lfp3odnghlq58udkieec0gebk461nf; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 15:09:17.879 INFO [27495]: QUERY_STRING = /auth -- 15:09:17.879 INFO [27495]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:09:17.911 INFO [27495]: COREGRADE is stopping... -- 15:09:17.911 DEBUG [27495]: Closing database connection -- 15:09:17.911 SQL [27495]: pgsql_close() -- 15:09:18.554 INFO [27498]: COREGRADE is starting... -- 15:09:18.554 INFO [27495]: COREGRADE is starting... -- 15:09:18.555 INFO [27498]: Version from config: 1.0 -- 15:09:18.555 DEBUG [27498]: Connecting to database... -- 15:09:18.555 INFO [27495]: Version from config: 1.0 -- 15:09:18.555 DEBUG [27495]: Connecting to database... -- 15:09:18.555 DEBUG [27495]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:09:18.555 SQL [27495]: pgsql_db_connect() -- 15:09:18.555 DEBUG [27498]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:09:18.555 SQL [27498]: pgsql_db_connect() -- 15:09:18.559 DEBUG [27498]: Database connection successful -- 15:09:18.559 INFO [27498]: _SERVER found -- 15:09:18.559 INFO [27498]: REMOTE_ADDR = 10.0.0.15 -- 15:09:18.559 INFO [27498]: SERVER_NAME = oameye.works.coregrade.com -- 15:09:18.559 INFO [27498]: HTTP_COOKIE = ci_session=e9lfp3odnghlq58udkieec0gebk461nf; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 15:09:18.559 INFO [27498]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:09:18.559 INFO [27498]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:09:18.571 INFO [27498]: COREGRADE is stopping... -- 15:09:18.571 DEBUG [27498]: Closing database connection -- 15:09:18.571 SQL [27498]: pgsql_close() -- 15:09:18.559 DEBUG [27495]: Database connection successful -- 15:09:18.559 INFO [27495]: _SERVER found -- 15:09:18.559 INFO [27495]: REMOTE_ADDR = 10.0.0.15 -- 15:09:18.559 INFO [27495]: SERVER_NAME = oameye.works.coregrade.com -- 15:09:18.559 INFO [27495]: HTTP_COOKIE = ci_session=e9lfp3odnghlq58udkieec0gebk461nf; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 15:09:18.559 INFO [27495]: QUERY_STRING = -- 15:09:18.559 INFO [27495]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:09:18.595 INFO [27495]: COREGRADE is stopping... -- 15:09:18.595 DEBUG [27495]: Closing database connection -- 15:09:18.595 SQL [27495]: pgsql_close() -- 15:09:19.639 INFO [27498]: COREGRADE is starting... -- 15:09:19.640 INFO [27498]: Version from config: 1.0 -- 15:09:19.640 DEBUG [27498]: Connecting to database... -- 15:09:19.640 DEBUG [27498]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:09:19.640 SQL [27498]: pgsql_db_connect() -- 15:09:19.644 DEBUG [27498]: Database connection successful -- 15:09:19.644 INFO [27498]: _SERVER found -- 15:09:19.644 INFO [27498]: REMOTE_ADDR = 10.0.0.15 -- 15:09:19.644 INFO [27498]: SERVER_NAME = oameye.works.coregrade.com -- 15:09:19.644 INFO [27498]: HTTP_COOKIE = ci_session=e9lfp3odnghlq58udkieec0gebk461nf; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 15:09:19.644 INFO [27498]: QUERY_STRING = -- 15:09:19.644 INFO [27498]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:09:19.684 INFO [27498]: COREGRADE is stopping... -- 15:09:19.684 DEBUG [27498]: Closing database connection -- 15:09:19.684 SQL [27498]: pgsql_close() -- 15:09:19.705 INFO [27498]: COREGRADE is starting... -- 15:09:19.705 INFO [27498]: Version from config: 1.0 -- 15:09:19.705 DEBUG [27498]: Connecting to database... -- 15:09:19.706 DEBUG [27498]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:09:19.706 SQL [27498]: pgsql_db_connect() -- 15:09:19.710 DEBUG [27498]: Database connection successful -- 15:09:19.710 INFO [27498]: _SERVER found -- 15:09:19.710 INFO [27498]: REMOTE_ADDR = 10.0.0.15 -- 15:09:19.710 INFO [27498]: SERVER_NAME = oameye.works.coregrade.com -- 15:09:19.710 INFO [27498]: HTTP_COOKIE = ci_session=e9lfp3odnghlq58udkieec0gebk461nf; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 15:09:19.710 INFO [27498]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:09:19.710 INFO [27498]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:09:19.721 INFO [27498]: COREGRADE is stopping... -- 15:09:19.721 DEBUG [27498]: Closing database connection -- 15:09:19.721 SQL [27498]: pgsql_close() -- 15:10:51.090 INFO [27497]: COREGRADE is starting... -- 15:10:51.091 INFO [27497]: Version from config: 1.0 -- 15:10:51.091 DEBUG [27497]: Connecting to database... -- 15:10:51.091 DEBUG [27497]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:51.091 SQL [27497]: pgsql_db_connect() -- 15:10:51.095 DEBUG [27497]: Database connection successful -- 15:10:51.095 INFO [27497]: _SERVER found -- 15:10:51.095 INFO [27497]: REMOTE_ADDR = 10.0.0.15 -- 15:10:51.095 INFO [27497]: SERVER_NAME = oameye.works.coregrade.com -- 15:10:51.095 INFO [27497]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=e9lfp3odnghlq58udkieec0gebk461nf -- 15:10:51.095 INFO [27497]: QUERY_STRING = /home/aboutus -- 15:10:51.095 INFO [27497]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:10:51.131 INFO [27497]: COREGRADE is stopping... -- 15:10:51.132 DEBUG [27497]: Closing database connection -- 15:10:51.132 SQL [27497]: pgsql_close() -- 15:10:51.230 INFO [27497]: COREGRADE is starting... -- 15:10:51.230 INFO [27497]: Version from config: 1.0 -- 15:10:51.230 DEBUG [27497]: Connecting to database... -- 15:10:51.231 DEBUG [27497]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:51.231 SQL [27497]: pgsql_db_connect() -- 15:10:51.234 DEBUG [27497]: Database connection successful -- 15:10:51.235 INFO [27497]: _SERVER found -- 15:10:51.235 INFO [27497]: REMOTE_ADDR = 10.0.0.15 -- 15:10:51.235 INFO [27497]: SERVER_NAME = oameye.works.coregrade.com -- 15:10:51.235 INFO [27497]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=e9lfp3odnghlq58udkieec0gebk461nf -- 15:10:51.235 INFO [27497]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:10:51.235 INFO [27497]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:10:51.246 INFO [27497]: COREGRADE is stopping... -- 15:10:51.246 DEBUG [27497]: Closing database connection -- 15:10:51.246 SQL [27497]: pgsql_close() -- 15:14:22.579 INFO [27566]: COREGRADE is starting... -- 15:14:22.580 INFO [27566]: Version from config: 1.0 -- 15:14:22.580 DEBUG [27566]: Connecting to database... -- 15:14:22.580 DEBUG [27566]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:14:22.580 SQL [27566]: pgsql_db_connect() -- 15:14:22.584 DEBUG [27566]: Database connection successful -- 15:14:22.584 INFO [27566]: _SERVER found -- 15:14:22.584 INFO [27566]: REMOTE_ADDR = 10.0.0.15 -- 15:14:22.584 INFO [27566]: SERVER_NAME = oameye.works.coregrade.com -- 15:14:22.584 INFO [27566]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=s8ios5a8dij09k1iams7me9kn7o6u7gi -- 15:14:22.584 INFO [27566]: QUERY_STRING = /auth/passreset -- 15:14:22.584 INFO [27566]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:14:22.621 INFO [27566]: COREGRADE is stopping... -- 15:14:22.621 DEBUG [27566]: Closing database connection -- 15:14:22.621 SQL [27566]: pgsql_close() -- 15:15:20.071 INFO [27494]: COREGRADE is starting... -- 15:15:20.071 INFO [27494]: Version from config: 1.0 -- 15:15:20.071 DEBUG [27494]: Connecting to database... -- 15:15:20.071 DEBUG [27494]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:15:20.071 SQL [27494]: pgsql_db_connect() -- 15:15:20.076 DEBUG [27494]: Database connection successful -- 15:15:20.076 INFO [27494]: _SERVER found -- 15:15:20.076 INFO [27494]: REMOTE_ADDR = 10.0.0.15 -- 15:15:20.076 INFO [27494]: SERVER_NAME = oameye.works.coregrade.com -- 15:15:20.076 INFO [27494]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=nomlesd0c1jdbkjgigonfft42u8kp2kb -- 15:15:20.076 INFO [27494]: QUERY_STRING = /auth/passreset -- 15:15:20.076 INFO [27494]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:15:20.109 INFO [27494]: COREGRADE is stopping... -- 15:15:20.109 DEBUG [27494]: Closing database connection -- 15:15:20.109 SQL [27494]: pgsql_close() -- 15:16:02.432 INFO [27496]: COREGRADE is starting... -- 15:16:02.433 INFO [27496]: Version from config: 1.0 -- 15:16:02.433 DEBUG [27496]: Connecting to database... -- 15:16:02.433 DEBUG [27496]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:16:02.433 SQL [27496]: pgsql_db_connect() -- 15:16:02.469 INFO [27496]: COREGRADE is starting... -- 15:16:02.469 INFO [27496]: Version from config: 1.0 -- 15:16:02.469 DEBUG [27496]: Connecting to database... -- 15:16:02.469 DEBUG [27496]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:16:02.469 SQL [27496]: pgsql_db_connect() -- 15:16:02.473 DEBUG [27496]: Database connection successful -- 15:16:02.473 INFO [27496]: _SERVER found -- 15:16:02.473 INFO [27496]: REMOTE_ADDR = 10.0.0.15 -- 15:16:02.473 INFO [27496]: SERVER_NAME = oameye.works.coregrade.com -- 15:16:02.473 INFO [27496]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=nomlesd0c1jdbkjgigonfft42u8kp2kb -- 15:16:02.473 INFO [27496]: QUERY_STRING = rlink=6b719b3a46dfa42dad09ae5653b4741c -- 15:16:02.473 INFO [27496]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:16:02.473 INFO [27496]: SystemStatus()09-09-********~************ -- 15:16:02.473 INFO [27496]: long coregrade_api_main(CVars in, CVars &out) -- 15:16:02.473 INFO [27496]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 15:16:02.473 INFO [27496]: account calls -- 15:16:02.473 INFO [27496]: account_calls() -- 15:16:02.473 INFO [27496]: passwordReset() -- 15:16:02.473 INFO [27496]: confirmPassReset() -- 15:16:02.473 FLOG_MAX [27496]: REQ_STRING(username) -- 15:16:02.473 FLOG_MAX [27496]: Error in parameter 'username', len= 2 <= 1 <= 49 -- 15:16:02.473 FLOG_MAX [27496]: Bad parameter exception: 'username' -- 15:16:02.474 INFO [27496]: ERROR CALL long confirmPassReset(CVars in, CVars &out) -- 15:16:02.474 INFO [27496]: RET: result=YES I GET TO BACK END -- 15:16:02.474 INFO [27496]: RET: status_message=Reset Error A02 -- 15:16:02.474 INFO [27496]: COREGRADE is stopping... -- 15:16:02.474 DEBUG [27496]: Closing database connection -- 15:16:02.474 SQL [27496]: pgsql_close() -- 15:16:02.437 DEBUG [27496]: Database connection successful -- 15:16:02.437 INFO [27496]: _SERVER found -- 15:16:02.437 INFO [27496]: REMOTE_ADDR = 10.0.0.15 -- 15:16:02.437 INFO [27496]: SERVER_NAME = oameye.works.coregrade.com -- 15:16:02.437 INFO [27496]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=nomlesd0c1jdbkjgigonfft42u8kp2kb -- 15:16:02.437 INFO [27496]: QUERY_STRING = /auth/passreset -- 15:16:02.437 INFO [27496]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:16:02.474 INFO [27496]: COREGRADE is stopping... -- 15:16:02.474 DEBUG [27496]: Closing database connection -- 15:16:02.474 SQL [27496]: pgsql_close() -- 15:16:24.325 INFO [27640]: COREGRADE is starting... -- 15:16:24.326 INFO [27640]: Version from config: 1.0 -- 15:16:24.326 DEBUG [27640]: Connecting to database... -- 15:16:24.326 DEBUG [27640]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:16:24.326 SQL [27640]: pgsql_db_connect() -- 15:16:24.330 DEBUG [27640]: Database connection successful -- 15:16:24.330 INFO [27640]: _SERVER found -- 15:16:24.330 INFO [27640]: REMOTE_ADDR = 10.0.0.15 -- 15:16:24.330 INFO [27640]: SERVER_NAME = oameye.works.coregrade.com -- 15:16:24.330 INFO [27640]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=pnacjasu4sccsemui9g9hdluodjfdk1p -- 15:16:24.330 INFO [27640]: QUERY_STRING = -- 15:16:24.330 INFO [27640]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:16:24.375 INFO [27640]: COREGRADE is stopping... -- 15:16:24.376 DEBUG [27640]: Closing database connection -- 15:16:24.376 SQL [27640]: pgsql_close() -- 15:16:24.975 INFO [27640]: COREGRADE is starting... -- 15:16:24.976 INFO [27640]: Version from config: 1.0 -- 15:16:24.976 DEBUG [27640]: Connecting to database... -- 15:16:24.976 DEBUG [27640]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:16:24.976 SQL [27640]: pgsql_db_connect() -- 15:16:24.980 DEBUG [27640]: Database connection successful -- 15:16:24.980 INFO [27640]: _SERVER found -- 15:16:24.980 INFO [27640]: REMOTE_ADDR = 10.0.0.15 -- 15:16:24.980 INFO [27640]: SERVER_NAME = oameye.works.coregrade.com -- 15:16:24.980 INFO [27640]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=n2etstu6lcaqcscooajph3dedmoepcbq -- 15:16:24.980 INFO [27640]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:16:24.980 INFO [27640]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:16:24.992 INFO [27640]: COREGRADE is stopping... -- 15:16:24.992 DEBUG [27640]: Closing database connection -- 15:16:24.992 SQL [27640]: pgsql_close() -- 15:16:28.096 INFO [27495]: COREGRADE is starting... -- 15:16:28.097 INFO [27495]: Version from config: 1.0 -- 15:16:28.097 DEBUG [27495]: Connecting to database... -- 15:16:28.097 DEBUG [27495]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:16:28.097 SQL [27495]: pgsql_db_connect() -- 15:16:28.101 DEBUG [27495]: Database connection successful -- 15:16:28.101 INFO [27495]: _SERVER found -- 15:16:28.101 INFO [27495]: REMOTE_ADDR = 10.0.0.15 -- 15:16:28.101 INFO [27495]: SERVER_NAME = oameye.works.coregrade.com -- 15:16:28.101 INFO [27495]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=n2etstu6lcaqcscooajph3dedmoepcbq; _gat_gtag_UA_54829827_2=1 -- 15:16:28.101 INFO [27495]: QUERY_STRING = /auth -- 15:16:28.101 INFO [27495]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:16:28.132 INFO [27495]: COREGRADE is stopping... -- 15:16:28.132 DEBUG [27495]: Closing database connection -- 15:16:28.132 SQL [27495]: pgsql_close() -- 15:16:28.166 INFO [27495]: COREGRADE is starting... -- 15:16:28.167 INFO [27495]: Version from config: 1.0 -- 15:16:28.167 DEBUG [27495]: Connecting to database... -- 15:16:28.167 DEBUG [27495]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:16:28.167 SQL [27495]: pgsql_db_connect() -- 15:16:28.171 DEBUG [27495]: Database connection successful -- 15:16:28.171 INFO [27495]: _SERVER found -- 15:16:28.171 INFO [27495]: REMOTE_ADDR = 10.0.0.15 -- 15:16:28.171 INFO [27495]: SERVER_NAME = oameye.works.coregrade.com -- 15:16:28.171 INFO [27495]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=n2etstu6lcaqcscooajph3dedmoepcbq; _gat_gtag_UA_54829827_2=1 -- 15:16:28.171 INFO [27495]: QUERY_STRING = /welcome/viewLogin -- 15:16:28.171 INFO [27495]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:16:28.201 INFO [27495]: COREGRADE is stopping... -- 15:16:28.201 DEBUG [27495]: Closing database connection -- 15:16:28.201 SQL [27495]: pgsql_close() -- 15:16:28.558 INFO [27640]: COREGRADE is starting... -- 15:16:28.558 INFO [27640]: Version from config: 1.0 -- 15:16:28.558 DEBUG [27640]: Connecting to database... -- 15:16:28.558 DEBUG [27640]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:16:28.558 SQL [27640]: pgsql_db_connect() -- 15:16:28.562 DEBUG [27640]: Database connection successful -- 15:16:28.562 INFO [27640]: _SERVER found -- 15:16:28.562 INFO [27640]: REMOTE_ADDR = 10.0.0.15 -- 15:16:28.562 INFO [27640]: SERVER_NAME = oameye.works.coregrade.com -- 15:16:28.562 INFO [27640]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=n2etstu6lcaqcscooajph3dedmoepcbq; _gat_gtag_UA_54829827_2=1 -- 15:16:28.562 INFO [27640]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:16:28.562 INFO [27640]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:16:28.574 INFO [27640]: COREGRADE is stopping... -- 15:16:28.574 DEBUG [27640]: Closing database connection -- 15:16:28.574 SQL [27640]: pgsql_close() -- 15:16:39.027 INFO [27498]: COREGRADE is starting... -- 15:16:39.027 INFO [27498]: Version from config: 1.0 -- 15:16:39.027 DEBUG [27498]: Connecting to database... -- 15:16:39.027 DEBUG [27498]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:16:39.027 SQL [27498]: pgsql_db_connect() -- 15:16:39.063 INFO [27498]: COREGRADE is starting... -- 15:16:39.063 INFO [27498]: Version from config: 1.0 -- 15:16:39.063 DEBUG [27498]: Connecting to database... -- 15:16:39.063 DEBUG [27498]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:16:39.063 SQL [27498]: pgsql_db_connect() -- 15:16:39.067 DEBUG [27498]: Database connection successful -- 15:16:39.067 INFO [27498]: _SERVER found -- 15:16:39.067 INFO [27498]: REMOTE_ADDR = 10.0.0.15 -- 15:16:39.067 INFO [27498]: SERVER_NAME = oameye.works.coregrade.com -- 15:16:39.067 INFO [27498]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=n2etstu6lcaqcscooajph3dedmoepcbq; _gat_gtag_UA_54829827_2=1 -- 15:16:39.067 INFO [27498]: QUERY_STRING = -- 15:16:39.067 INFO [27498]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:16:39.067 INFO [27498]: SystemStatus()09-09-********~************ -- 15:16:39.067 INFO [27498]: long coregrade_api_main(CVars in, CVars &out) -- 15:16:39.067 INFO [27498]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 15:16:39.067 INFO [27498]: account calls -- 15:16:39.067 INFO [27498]: account_calls() -- 15:16:39.067 INFO [27498]: LoginCoreGradeAccount() -- 15:16:39.067 FLOG_MAX [27498]: REQ_STRING(username) -- 15:16:39.067 FLOG_MAX [27498]: REQ_STRING(password) -- 15:16:39.067 FLOG_MAX [27498]: REQ_STRING(sessionid) -- 15:16:39.067 FLOG_MAX [27498]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:16:39.067 SQL [27498]: pgsql_query() -- 15:16:39.067 SQL [27498]: About to run query: -- 15:16:39.067 SQL [27498]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw') AND password= md5('tokslaw001') -- 15:16:39.071 SQL [27498]: Found rows: 0 -- 15:16:39.071 SQL [27498]: Found rows: 0 -- 15:16:39.071 INFO [27498]: long SessionCheck(long uid, const char *sessionid, int create ) -- 15:16:39.071 FLOG_MAX [27498]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:16:39.071 SQL [27498]: pgsql_query() -- 15:16:39.071 SQL [27498]: About to run query: -- 15:16:39.071 SQL [27498]: SELECT upper(md5( now()::text )) AS folder -- 15:16:39.071 SQL [27498]: Found rows: 1 -- 15:16:39.071 FLOG_MAX [27498]: load_db_record(SELECT upper(md5( now()::text )) AS folder) num_cols=1 -- 15:16:39.071 FLOG_MAX [27498]: update_db_record() -- 15:16:39.071 FLOG_MAX [27498]: Bad parameter exception: 'id' -- 15:16:39.072 INFO [27498]: RET: folder=C6D20EC25017AEBC2A0E91BB0841DD94 -- 15:16:39.072 INFO [27498]: RET: member_id= -- 15:16:39.072 INFO [27498]: RET: result=YES I GET TO BACK END -- 15:16:39.072 INFO [27498]: RET: sessionid= -- 15:16:39.072 INFO [27498]: RET: status=Incorrect input parameter -- 15:16:39.073 INFO [27498]: COREGRADE is stopping... -- 15:16:39.073 DEBUG [27498]: Closing database connection -- 15:16:39.073 SQL [27498]: pgsql_close() -- 15:16:39.031 DEBUG [27498]: Database connection successful -- 15:16:39.031 INFO [27498]: _SERVER found -- 15:16:39.031 INFO [27498]: REMOTE_ADDR = 10.0.0.15 -- 15:16:39.031 INFO [27498]: SERVER_NAME = oameye.works.coregrade.com -- 15:16:39.031 INFO [27498]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=n2etstu6lcaqcscooajph3dedmoepcbq; _gat_gtag_UA_54829827_2=1 -- 15:16:39.031 INFO [27498]: QUERY_STRING = /auth -- 15:16:39.031 INFO [27498]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:16:39.073 INFO [27498]: COREGRADE is stopping... -- 15:16:39.073 DEBUG [27498]: Closing database connection -- 15:16:39.073 SQL [27498]: pgsql_close() -- 15:16:39.388 INFO [27498]: COREGRADE is starting... -- 15:16:39.389 INFO [27498]: Version from config: 1.0 -- 15:16:39.389 DEBUG [27498]: Connecting to database... -- 15:16:39.389 DEBUG [27498]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:16:39.389 SQL [27498]: pgsql_db_connect() -- 15:16:39.393 DEBUG [27498]: Database connection successful -- 15:16:39.393 INFO [27498]: _SERVER found -- 15:16:39.393 INFO [27498]: REMOTE_ADDR = 10.0.0.15 -- 15:16:39.393 INFO [27498]: SERVER_NAME = oameye.works.coregrade.com -- 15:16:39.393 INFO [27498]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=n2etstu6lcaqcscooajph3dedmoepcbq; _gat_gtag_UA_54829827_2=1 -- 15:16:39.393 INFO [27498]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:16:39.393 INFO [27498]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:16:39.404 INFO [27498]: COREGRADE is stopping... -- 15:16:39.404 DEBUG [27498]: Closing database connection -- 15:16:39.404 SQL [27498]: pgsql_close() -- 15:17:17.944 INFO [27497]: COREGRADE is starting... -- 15:17:17.944 INFO [27497]: Version from config: 1.0 -- 15:17:17.944 DEBUG [27497]: Connecting to database... -- 15:17:17.944 DEBUG [27497]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:17:17.944 SQL [27497]: pgsql_db_connect() -- 15:17:17.979 INFO [27497]: COREGRADE is starting... -- 15:17:17.980 INFO [27497]: Version from config: 1.0 -- 15:17:17.980 DEBUG [27497]: Connecting to database... -- 15:17:17.980 DEBUG [27497]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:17:17.980 SQL [27497]: pgsql_db_connect() -- 15:17:17.984 DEBUG [27497]: Database connection successful -- 15:17:17.984 INFO [27497]: _SERVER found -- 15:17:17.984 INFO [27497]: REMOTE_ADDR = 10.0.0.15 -- 15:17:17.984 INFO [27497]: SERVER_NAME = oameye.works.coregrade.com -- 15:17:17.984 INFO [27497]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=n2etstu6lcaqcscooajph3dedmoepcbq; _gat_gtag_UA_54829827_2=1 -- 15:17:17.984 INFO [27497]: QUERY_STRING = -- 15:17:17.984 INFO [27497]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:17:17.984 INFO [27497]: SystemStatus()09-09-********~************ -- 15:17:17.984 INFO [27497]: long coregrade_api_main(CVars in, CVars &out) -- 15:17:17.984 INFO [27497]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 15:17:17.984 INFO [27497]: account calls -- 15:17:17.984 INFO [27497]: account_calls() -- 15:17:17.984 INFO [27497]: LoginCoreGradeAccount() -- 15:17:17.984 FLOG_MAX [27497]: REQ_STRING(username) -- 15:17:17.984 FLOG_MAX [27497]: REQ_STRING(password) -- 15:17:17.984 FLOG_MAX [27497]: REQ_STRING(sessionid) -- 15:17:17.984 FLOG_MAX [27497]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:17:17.984 SQL [27497]: pgsql_query() -- 15:17:17.984 SQL [27497]: About to run query: -- 15:17:17.984 SQL [27497]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001') -- 15:17:17.987 SQL [27497]: Found rows: 1 -- 15:17:17.987 FLOG_MAX [27497]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('tokslaw001')) num_cols=16 -- 15:17:17.987 INFO [27497]: long SessionCheck(long uid, const char *sessionid, int create ) -- 15:17:17.987 SQL [27497]: pgsql_exec() -- 15:17:17.987 SQL [27497]: About to run query: -- 15:17:17.987 SQL [27497]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 15:17:17.989 SQL [27497]: PQcmdTuples: 1 -- 15:17:17.989 SQL [27497]: Affected rows: 1 -- 15:17:17.989 SQL [27497]: pgsql_exec() -- 15:17:17.989 SQL [27497]: About to run query: -- 15:17:17.989 SQL [27497]: DELETE FROM members_session WHERE member_id=7 -- 15:17:17.989 SQL [27497]: PQcmdTuples: 0 -- 15:17:17.989 SQL [27497]: Affected rows: 0 -- 15:17:17.989 SQL [27497]: pgsql_query() -- 15:17:17.989 SQL [27497]: About to run query: -- 15:17:17.989 SQL [27497]: SELECT * FROM members_session WHERE member_id=7 AND session<>'EBD9368030BF09F2A873030E31A72176' -- 15:17:17.990 SQL [27497]: Found rows: 0 -- 15:17:17.990 SQL [27497]: Found rows: 0 -- 15:17:17.990 FLOG_MAX [27497]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:17:17.990 SQL [27497]: pgsql_query() -- 15:17:17.990 SQL [27497]: About to run query: -- 15:17:17.990 SQL [27497]: SELECT * FROM members_session WHERE member_id=7 AND session='EBD9368030BF09F2A873030E31A72176' -- 15:17:17.991 SQL [27497]: Found rows: 0 -- 15:17:17.991 SQL [27497]: Found rows: 0 -- 15:17:17.991 FLOG_MAX [27497]: insert_db_record() -- 15:17:17.991 SQL [27497]: pgsql_exec() -- 15:17:17.991 SQL [27497]: About to run query: -- 15:17:17.991 SQL [27497]: INSERT INTO members_session (member_id,session) VALUES ('7','EBD9368030BF09F2A873030E31A72176') -- 15:17:17.993 SQL [27497]: PQcmdTuples: 1 -- 15:17:17.993 SQL [27497]: Affected rows: 1 -- 15:17:17.993 FLOG_MAX [27497]: SELECT currval('members_session_id_seq') -- 15:17:17.993 SQL [27497]: pgsql_query() -- 15:17:17.993 SQL [27497]: About to run query: -- 15:17:17.993 SQL [27497]: SELECT currval('members_session_id_seq') -- 15:17:17.993 SQL [27497]: Found rows: 1 -- 15:17:17.993 INFO [27497]: CreateDefaultPage() -- 15:17:17.993 FLOG_MAX [27497]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:17:17.993 SQL [27497]: pgsql_query() -- 15:17:17.993 SQL [27497]: About to run query: -- 15:17:17.993 SQL [27497]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 15:17:17.993 SQL [27497]: Found rows: 1 -- 15:17:17.994 FLOG_MAX [27497]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 15:17:17.994 SQL [27497]: pgsql_query() -- 15:17:17.994 SQL [27497]: About to run query: -- 15:17:17.994 SQL [27497]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 15:17:17.994 SQL [27497]: Found rows: 1 -- 15:17:17.994 INFO [27497]: /CreateDefaultPage() -- 15:17:17.994 INFO [27497]: /LoginCoreGradeAccount() -- 15:17:17.994 INFO [27497]: RET: added=2020-02-05 09:42:12.816064 -- 15:17:17.994 INFO [27497]: RET: email=tokslaw@chiefsoft.com -- 15:17:17.994 INFO [27497]: RET: firstname=Tokunbo -- 15:17:17.994 INFO [27497]: RET: folder=5D06B187B1E2285A63AD1D0ECB670D98 -- 15:17:17.994 INFO [27497]: RET: id=7 -- 15:17:17.994 INFO [27497]: RET: last_login= -- 15:17:17.994 INFO [27497]: RET: lastname=Lawal -- 15:17:17.994 INFO [27497]: RET: loc=192.168.1.13 -- 15:17:17.994 INFO [27497]: RET: member_id=7 -- 15:17:17.994 INFO [27497]: RET: password=a212b982caca1a26d26690f4f4782a5b -- 15:17:17.994 INFO [27497]: RET: phone= -- 15:17:17.994 INFO [27497]: RET: pid= -- 15:17:17.994 INFO [27497]: RET: result=YES I GET TO BACK END -- 15:17:17.994 INFO [27497]: RET: sessionid=EBD9368030BF09F2A873030E31A72176 -- 15:17:17.994 INFO [27497]: RET: status=1 -- 15:17:17.994 INFO [27497]: RET: stauts=OK -- 15:17:17.994 INFO [27497]: RET: username=tokslaw@chiefsoft.com -- 15:17:17.994 INFO [27497]: RET: verified= -- 15:17:17.996 INFO [27497]: COREGRADE is stopping... -- 15:17:17.996 DEBUG [27497]: Closing database connection -- 15:17:17.996 SQL [27497]: pgsql_close() -- 15:17:17.948 DEBUG [27497]: Database connection successful -- 15:17:17.948 INFO [27497]: _SERVER found -- 15:17:17.948 INFO [27497]: REMOTE_ADDR = 10.0.0.15 -- 15:17:17.948 INFO [27497]: SERVER_NAME = oameye.works.coregrade.com -- 15:17:17.948 INFO [27497]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=n2etstu6lcaqcscooajph3dedmoepcbq; _gat_gtag_UA_54829827_2=1 -- 15:17:17.948 INFO [27497]: QUERY_STRING = /auth -- 15:17:17.948 INFO [27497]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:17:17.996 INFO [27497]: COREGRADE is stopping... -- 15:17:17.996 DEBUG [27497]: Closing database connection -- 15:17:17.996 SQL [27497]: pgsql_close() -- 15:17:18.032 INFO [27497]: COREGRADE is starting... -- 15:17:18.032 INFO [27497]: Version from config: 1.0 -- 15:17:18.032 DEBUG [27497]: Connecting to database... -- 15:17:18.032 DEBUG [27497]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:17:18.032 SQL [27497]: pgsql_db_connect() -- 15:17:18.036 DEBUG [27497]: Database connection successful -- 15:17:18.036 INFO [27497]: _SERVER found -- 15:17:18.036 INFO [27497]: REMOTE_ADDR = 10.0.0.15 -- 15:17:18.036 INFO [27497]: SERVER_NAME = oameye.works.coregrade.com -- 15:17:18.036 INFO [27497]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=n2etstu6lcaqcscooajph3dedmoepcbq; _gat_gtag_UA_54829827_2=1 -- 15:17:18.036 INFO [27497]: QUERY_STRING = /member/index -- 15:17:18.036 INFO [27497]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:17:18.077 INFO [27497]: COREGRADE is stopping... -- 15:17:18.077 DEBUG [27497]: Closing database connection -- 15:17:18.077 SQL [27497]: pgsql_close() -- 15:17:18.749 INFO [27497]: COREGRADE is starting... -- 15:17:18.749 INFO [27497]: Version from config: 1.0 -- 15:17:18.749 DEBUG [27497]: Connecting to database... -- 15:17:18.749 DEBUG [27497]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:17:18.749 SQL [27497]: pgsql_db_connect() -- 15:17:18.754 DEBUG [27497]: Database connection successful -- 15:17:18.754 INFO [27497]: _SERVER found -- 15:17:18.754 INFO [27497]: REMOTE_ADDR = 10.0.0.15 -- 15:17:18.754 INFO [27497]: SERVER_NAME = oameye.works.coregrade.com -- 15:17:18.754 INFO [27497]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=n2etstu6lcaqcscooajph3dedmoepcbq; _gat_gtag_UA_54829827_2=1 -- 15:17:18.754 INFO [27497]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:17:18.754 INFO [27497]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:17:18.765 INFO [27497]: COREGRADE is stopping... -- 15:17:18.765 DEBUG [27497]: Closing database connection -- 15:17:18.765 SQL [27497]: pgsql_close() -- 15:18:35.687 INFO [27640]: COREGRADE is starting... -- 15:18:35.687 INFO [27640]: Version from config: 1.0 -- 15:18:35.687 DEBUG [27640]: Connecting to database... -- 15:18:35.687 DEBUG [27640]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:18:35.687 SQL [27640]: pgsql_db_connect() -- 15:18:35.691 DEBUG [27640]: Database connection successful -- 15:18:35.691 INFO [27640]: _SERVER found -- 15:18:35.691 INFO [27640]: REMOTE_ADDR = 10.0.0.15 -- 15:18:35.691 INFO [27640]: SERVER_NAME = oameye.works.coregrade.com -- 15:18:35.691 INFO [27640]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=n2etstu6lcaqcscooajph3dedmoepcbq -- 15:18:35.691 INFO [27640]: QUERY_STRING = /member/page -- 15:18:35.691 INFO [27640]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:18:35.739 INFO [27640]: COREGRADE is stopping... -- 15:18:35.739 DEBUG [27640]: Closing database connection -- 15:18:35.739 SQL [27640]: pgsql_close() -- 15:18:54.520 INFO [27712]: COREGRADE is starting... -- 15:18:54.521 INFO [27712]: Version from config: 1.0 -- 15:18:54.521 DEBUG [27712]: Connecting to database... -- 15:18:54.521 DEBUG [27712]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:18:54.521 SQL [27712]: pgsql_db_connect() -- 15:18:54.525 DEBUG [27712]: Database connection successful -- 15:18:54.525 INFO [27712]: _SERVER found -- 15:18:54.525 INFO [27712]: REMOTE_ADDR = 10.0.0.15 -- 15:18:54.525 INFO [27712]: SERVER_NAME = oameye.works.coregrade.com -- 15:18:54.525 INFO [27712]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 15:18:54.525 INFO [27712]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 15:18:54.540 INFO [27712]: COREGRADE is stopping... -- 15:18:54.540 DEBUG [27712]: Closing database connection -- 15:18:54.540 SQL [27712]: pgsql_close() -- 15:24:56.323 INFO [27863]: COREGRADE is starting... -- 15:24:56.324 INFO [27863]: Version from config: 1.0 -- 15:24:56.324 DEBUG [27863]: Connecting to database... -- 15:24:56.324 DEBUG [27863]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:24:56.324 SQL [27863]: pgsql_db_connect() -- 15:24:56.368 INFO [27863]: COREGRADE is starting... -- 15:24:56.369 INFO [27863]: Version from config: 1.0 -- 15:24:56.369 DEBUG [27863]: Connecting to database... -- 15:24:56.369 DEBUG [27863]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:24:56.369 SQL [27863]: pgsql_db_connect() -- 15:24:56.373 DEBUG [27863]: Database connection successful -- 15:24:56.373 INFO [27863]: _SERVER found -- 15:24:56.373 INFO [27863]: REMOTE_ADDR = 10.0.0.15 -- 15:24:56.373 INFO [27863]: SERVER_NAME = oameye.works.coregrade.com -- 15:24:56.373 INFO [27863]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=nomlesd0c1jdbkjgigonfft42u8kp2kb -- 15:24:56.373 INFO [27863]: QUERY_STRING = rlink=6b719b3a46dfa42dad09ae5653b4741c -- 15:24:56.373 INFO [27863]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:24:56.373 INFO [27863]: SystemStatus()09-09-********~************ -- 15:24:56.373 INFO [27863]: long coregrade_api_main(CVars in, CVars &out) -- 15:24:56.373 INFO [27863]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 15:24:56.373 INFO [27863]: account calls -- 15:24:56.373 INFO [27863]: account_calls() -- 15:24:56.373 INFO [27863]: passwordReset() -- 15:24:56.373 INFO [27863]: confirmPassReset() -- 15:24:56.373 FLOG_MAX [27863]: REQ_STRING(reset_key) -- 15:24:56.373 FLOG_MAX [27863]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:24:56.373 SQL [27863]: pgsql_query() -- 15:24:56.373 SQL [27863]: About to run query: -- 15:24:56.373 SQL [27863]: SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='6b719b3a46dfa42dad09ae5653b4741c' -- 15:24:56.376 SQL [27863]: Found rows: 1 -- 15:24:56.378 FLOG_MAX [27863]: load_db_record(SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='6b719b3a46dfa42dad09ae5653b4741c' ) num_cols=10 -- 15:24:56.378 SQL [27863]: pgsql_query() -- 15:24:56.378 SQL [27863]: About to run query: -- 15:24:56.378 SQL [27863]: UPDATE password_reset SET status = 1 WHERE id =7 -- 15:24:56.379 SQL [27863]: Found rows: 0 -- 15:24:56.379 SQL [27863]: Found rows: 0 -- 15:24:56.379 INFO [27863]: RET: created=2020-04-12 14:59:50.878801 -- 15:24:56.379 INFO [27863]: RET: expired= -- 15:24:56.379 INFO [27863]: RET: id=7 -- 15:24:56.379 INFO [27863]: RET: loc=10.0.0.15 -- 15:24:56.379 INFO [27863]: RET: member_id=5 -- 15:24:56.379 INFO [27863]: RET: reset_id=7 -- 15:24:56.379 INFO [27863]: RET: reset_key=6b719b3a46dfa42dad09ae5653b4741c -- 15:24:56.379 INFO [27863]: RET: reset_pin=84010 -- 15:24:56.379 INFO [27863]: RET: result=YES I GET TO BACK END -- 15:24:56.379 INFO [27863]: RET: status=0 -- 15:24:56.379 INFO [27863]: RET: username=ameye+11@chiefsoft.com -- 15:24:56.379 INFO [27863]: COREGRADE is stopping... -- 15:24:56.379 DEBUG [27863]: Closing database connection -- 15:24:56.380 SQL [27863]: pgsql_close() -- 15:24:56.330 DEBUG [27863]: Database connection successful -- 15:24:56.330 INFO [27863]: _SERVER found -- 15:24:56.330 INFO [27863]: REMOTE_ADDR = 10.0.0.15 -- 15:24:56.330 INFO [27863]: SERVER_NAME = oameye.works.coregrade.com -- 15:24:56.330 INFO [27863]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=nomlesd0c1jdbkjgigonfft42u8kp2kb -- 15:24:56.330 INFO [27863]: QUERY_STRING = /auth/passreset -- 15:24:56.330 INFO [27863]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:24:56.380 INFO [27863]: COREGRADE is stopping... -- 15:24:56.380 DEBUG [27863]: Closing database connection -- 15:24:56.380 SQL [27863]: pgsql_close() -- 15:28:58.022 INFO [27864]: COREGRADE is starting... -- 15:28:58.023 INFO [27864]: Version from config: 1.0 -- 15:28:58.023 DEBUG [27864]: Connecting to database... -- 15:28:58.023 DEBUG [27864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:28:58.023 SQL [27864]: pgsql_db_connect() -- 15:28:58.065 INFO [27864]: COREGRADE is starting... -- 15:28:58.065 INFO [27864]: Version from config: 1.0 -- 15:28:58.065 DEBUG [27864]: Connecting to database... -- 15:28:58.065 DEBUG [27864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:28:58.065 SQL [27864]: pgsql_db_connect() -- 15:28:58.069 DEBUG [27864]: Database connection successful -- 15:28:58.069 INFO [27864]: _SERVER found -- 15:28:58.069 INFO [27864]: REMOTE_ADDR = 10.0.0.15 -- 15:28:58.069 INFO [27864]: SERVER_NAME = oameye.works.coregrade.com -- 15:28:58.069 INFO [27864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=0saskfha4gnh6rkl1hosrlr31qr0hnbe -- 15:28:58.069 INFO [27864]: QUERY_STRING = rlink=6b719b3a46dfa42dad09ae5653b4741c -- 15:28:58.069 INFO [27864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:28:58.069 INFO [27864]: SystemStatus()09-09-********~************ -- 15:28:58.069 INFO [27864]: long coregrade_api_main(CVars in, CVars &out) -- 15:28:58.069 INFO [27864]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 15:28:58.069 INFO [27864]: account calls -- 15:28:58.069 INFO [27864]: account_calls() -- 15:28:58.069 INFO [27864]: passwordReset() -- 15:28:58.069 INFO [27864]: confirmPassReset() -- 15:28:58.069 FLOG_MAX [27864]: REQ_STRING(reset_key) -- 15:28:58.070 FLOG_MAX [27864]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:28:58.070 SQL [27864]: pgsql_query() -- 15:28:58.070 SQL [27864]: About to run query: -- 15:28:58.070 SQL [27864]: SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='6b719b3a46dfa42dad09ae5653b4741c' -- 15:28:58.072 SQL [27864]: Found rows: 0 -- 15:28:58.072 SQL [27864]: Found rows: 0 -- 15:28:58.072 INFO [27864]: RET: id= -- 15:28:58.072 INFO [27864]: RET: result=YES I GET TO BACK END -- 15:28:58.072 INFO [27864]: RET: status_advice=Contact support or Start all over -- 15:28:58.072 INFO [27864]: RET: status_message=Invalid PIN or disabled account -- 15:28:58.075 INFO [27864]: COREGRADE is stopping... -- 15:28:58.075 DEBUG [27864]: Closing database connection -- 15:28:58.075 SQL [27864]: pgsql_close() -- 15:28:58.027 DEBUG [27864]: Database connection successful -- 15:28:58.027 INFO [27864]: _SERVER found -- 15:28:58.027 INFO [27864]: REMOTE_ADDR = 10.0.0.15 -- 15:28:58.027 INFO [27864]: SERVER_NAME = oameye.works.coregrade.com -- 15:28:58.027 INFO [27864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=0saskfha4gnh6rkl1hosrlr31qr0hnbe -- 15:28:58.027 INFO [27864]: QUERY_STRING = /auth/passreset -- 15:28:58.027 INFO [27864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:28:58.075 INFO [27864]: COREGRADE is stopping... -- 15:28:58.075 DEBUG [27864]: Closing database connection -- 15:28:58.075 SQL [27864]: pgsql_close() -- 15:28:58.248 INFO [27864]: COREGRADE is starting... -- 15:28:58.248 INFO [27864]: Version from config: 1.0 -- 15:28:58.248 DEBUG [27864]: Connecting to database... -- 15:28:58.249 DEBUG [27864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:28:58.249 SQL [27864]: pgsql_db_connect() -- 15:28:58.252 DEBUG [27864]: Database connection successful -- 15:28:58.252 INFO [27864]: _SERVER found -- 15:28:58.252 INFO [27864]: REMOTE_ADDR = 10.0.0.15 -- 15:28:58.253 INFO [27864]: SERVER_NAME = oameye.works.coregrade.com -- 15:28:58.253 INFO [27864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=0saskfha4gnh6rkl1hosrlr31qr0hnbe -- 15:28:58.253 INFO [27864]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:28:58.253 INFO [27864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:28:58.265 INFO [27864]: COREGRADE is stopping... -- 15:28:58.265 DEBUG [27864]: Closing database connection -- 15:28:58.265 SQL [27864]: pgsql_close() -- 15:31:20.386 INFO [27866]: COREGRADE is starting... -- 15:31:20.386 INFO [27866]: Version from config: 1.0 -- 15:31:20.386 DEBUG [27866]: Connecting to database... -- 15:31:20.386 DEBUG [27866]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:20.386 SQL [27866]: pgsql_db_connect() -- 15:31:20.428 INFO [27866]: COREGRADE is starting... -- 15:31:20.428 INFO [27866]: Version from config: 1.0 -- 15:31:20.428 DEBUG [27866]: Connecting to database... -- 15:31:20.428 DEBUG [27866]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:20.428 SQL [27866]: pgsql_db_connect() -- 15:31:20.432 DEBUG [27866]: Database connection successful -- 15:31:20.432 INFO [27866]: _SERVER found -- 15:31:20.432 INFO [27866]: REMOTE_ADDR = 10.0.0.15 -- 15:31:20.432 INFO [27866]: SERVER_NAME = oameye.works.coregrade.com -- 15:31:20.432 INFO [27866]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=0saskfha4gnh6rkl1hosrlr31qr0hnbe -- 15:31:20.432 INFO [27866]: QUERY_STRING = rlink=6b719b3a46dfa42dad09ae5653b4741c -- 15:31:20.432 INFO [27866]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:31:20.432 INFO [27866]: SystemStatus()09-09-********~************ -- 15:31:20.432 INFO [27866]: long coregrade_api_main(CVars in, CVars &out) -- 15:31:20.432 INFO [27866]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 15:31:20.433 INFO [27866]: account calls -- 15:31:20.433 INFO [27866]: account_calls() -- 15:31:20.433 INFO [27866]: passwordReset() -- 15:31:20.433 INFO [27866]: confirmPassReset() -- 15:31:20.433 FLOG_MAX [27866]: REQ_STRING(reset_key) -- 15:31:20.433 FLOG_MAX [27866]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:31:20.433 SQL [27866]: pgsql_query() -- 15:31:20.433 SQL [27866]: About to run query: -- 15:31:20.433 SQL [27866]: SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='6b719b3a46dfa42dad09ae5653b4741c' -- 15:31:20.435 SQL [27866]: Found rows: 0 -- 15:31:20.435 SQL [27866]: Found rows: 0 -- 15:31:20.435 INFO [27866]: RET: id= -- 15:31:20.435 INFO [27866]: RET: result=YES I GET TO BACK END -- 15:31:20.435 INFO [27866]: RET: status_advice=Contact support or Start all over -- 15:31:20.435 INFO [27866]: RET: status_message=Invalid PIN or disabled account -- 15:31:20.438 INFO [27866]: COREGRADE is stopping... -- 15:31:20.438 DEBUG [27866]: Closing database connection -- 15:31:20.438 SQL [27866]: pgsql_close() -- 15:31:20.391 DEBUG [27866]: Database connection successful -- 15:31:20.391 INFO [27866]: _SERVER found -- 15:31:20.391 INFO [27866]: REMOTE_ADDR = 10.0.0.15 -- 15:31:20.391 INFO [27866]: SERVER_NAME = oameye.works.coregrade.com -- 15:31:20.391 INFO [27866]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=0saskfha4gnh6rkl1hosrlr31qr0hnbe -- 15:31:20.391 INFO [27866]: QUERY_STRING = /auth/passreset -- 15:31:20.391 INFO [27866]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:31:20.438 INFO [27866]: COREGRADE is stopping... -- 15:31:20.438 DEBUG [27866]: Closing database connection -- 15:31:20.438 SQL [27866]: pgsql_close() -- 15:31:20.594 INFO [27866]: COREGRADE is starting... -- 15:31:20.594 INFO [27866]: Version from config: 1.0 -- 15:31:20.594 DEBUG [27866]: Connecting to database... -- 15:31:20.594 DEBUG [27866]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:20.594 SQL [27866]: pgsql_db_connect() -- 15:31:20.598 DEBUG [27866]: Database connection successful -- 15:31:20.598 INFO [27866]: _SERVER found -- 15:31:20.598 INFO [27866]: REMOTE_ADDR = 10.0.0.15 -- 15:31:20.598 INFO [27866]: SERVER_NAME = oameye.works.coregrade.com -- 15:31:20.598 INFO [27866]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=4esihuari78ecdathd9jth70kadh7p6q -- 15:31:20.598 INFO [27866]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:31:20.598 INFO [27866]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:31:20.610 INFO [27866]: COREGRADE is stopping... -- 15:31:20.610 DEBUG [27866]: Closing database connection -- 15:31:20.610 SQL [27866]: pgsql_close() -- 15:34:19.496 INFO [27867]: COREGRADE is starting... -- 15:34:19.496 INFO [27867]: Version from config: 1.0 -- 15:34:19.496 DEBUG [27867]: Connecting to database... -- 15:34:19.496 DEBUG [27867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:34:19.496 SQL [27867]: pgsql_db_connect() -- 15:34:19.538 INFO [27867]: COREGRADE is starting... -- 15:34:19.538 INFO [27867]: Version from config: 1.0 -- 15:34:19.538 DEBUG [27867]: Connecting to database... -- 15:34:19.538 DEBUG [27867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:34:19.538 SQL [27867]: pgsql_db_connect() -- 15:34:19.542 DEBUG [27867]: Database connection successful -- 15:34:19.542 INFO [27867]: _SERVER found -- 15:34:19.542 INFO [27867]: REMOTE_ADDR = 10.0.0.15 -- 15:34:19.542 INFO [27867]: SERVER_NAME = oameye.works.coregrade.com -- 15:34:19.542 INFO [27867]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=4esihuari78ecdathd9jth70kadh7p6q -- 15:34:19.542 INFO [27867]: QUERY_STRING = rlink=6b719b3a46dfa42dad09ae5653b4741c -- 15:34:19.542 INFO [27867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:34:19.542 INFO [27867]: SystemStatus()09-09-********~************ -- 15:34:19.542 INFO [27867]: long coregrade_api_main(CVars in, CVars &out) -- 15:34:19.542 INFO [27867]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 15:34:19.542 INFO [27867]: account calls -- 15:34:19.542 INFO [27867]: account_calls() -- 15:34:19.542 INFO [27867]: passwordReset() -- 15:34:19.542 INFO [27867]: confirmPassReset() -- 15:34:19.542 FLOG_MAX [27867]: REQ_STRING(reset_key) -- 15:34:19.542 FLOG_MAX [27867]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:34:19.542 SQL [27867]: pgsql_query() -- 15:34:19.542 SQL [27867]: About to run query: -- 15:34:19.542 SQL [27867]: SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='6b719b3a46dfa42dad09ae5653b4741c' -- 15:34:19.545 SQL [27867]: Found rows: 0 -- 15:34:19.545 SQL [27867]: Found rows: 0 -- 15:34:19.545 INFO [27867]: RET: id= -- 15:34:19.545 INFO [27867]: RET: result=YES I GET TO BACK END -- 15:34:19.545 INFO [27867]: RET: status_advice=Contact support or Start all over -- 15:34:19.545 INFO [27867]: RET: status_message=Invalid PIN or disabled account -- 15:34:19.548 INFO [27867]: COREGRADE is stopping... -- 15:34:19.548 DEBUG [27867]: Closing database connection -- 15:34:19.548 SQL [27867]: pgsql_close() -- 15:34:19.500 DEBUG [27867]: Database connection successful -- 15:34:19.500 INFO [27867]: _SERVER found -- 15:34:19.500 INFO [27867]: REMOTE_ADDR = 10.0.0.15 -- 15:34:19.500 INFO [27867]: SERVER_NAME = oameye.works.coregrade.com -- 15:34:19.500 INFO [27867]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=4esihuari78ecdathd9jth70kadh7p6q -- 15:34:19.500 INFO [27867]: QUERY_STRING = /auth/passreset -- 15:34:19.500 INFO [27867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:34:19.549 INFO [27867]: COREGRADE is stopping... -- 15:34:19.549 DEBUG [27867]: Closing database connection -- 15:34:19.549 SQL [27867]: pgsql_close() -- 15:34:19.765 INFO [27867]: COREGRADE is starting... -- 15:34:19.766 INFO [27867]: Version from config: 1.0 -- 15:34:19.766 DEBUG [27867]: Connecting to database... -- 15:34:19.766 DEBUG [27867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:34:19.766 SQL [27867]: pgsql_db_connect() -- 15:34:19.770 DEBUG [27867]: Database connection successful -- 15:34:19.770 INFO [27867]: _SERVER found -- 15:34:19.770 INFO [27867]: REMOTE_ADDR = 10.0.0.15 -- 15:34:19.770 INFO [27867]: SERVER_NAME = oameye.works.coregrade.com -- 15:34:19.770 INFO [27867]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=4esihuari78ecdathd9jth70kadh7p6q -- 15:34:19.770 INFO [27867]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:34:19.770 INFO [27867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:34:19.782 INFO [27867]: COREGRADE is stopping... -- 15:34:19.782 DEBUG [27867]: Closing database connection -- 15:34:19.782 SQL [27867]: pgsql_close() -- 15:37:19.297 INFO [27865]: COREGRADE is starting... -- 15:37:19.297 INFO [27865]: Version from config: 1.0 -- 15:37:19.297 DEBUG [27865]: Connecting to database... -- 15:37:19.297 DEBUG [27865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:19.297 SQL [27865]: pgsql_db_connect() -- 15:37:19.340 INFO [27865]: COREGRADE is starting... -- 15:37:19.340 INFO [27865]: Version from config: 1.0 -- 15:37:19.340 DEBUG [27865]: Connecting to database... -- 15:37:19.340 DEBUG [27865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:19.340 SQL [27865]: pgsql_db_connect() -- 15:37:19.344 DEBUG [27865]: Database connection successful -- 15:37:19.344 INFO [27865]: _SERVER found -- 15:37:19.344 INFO [27865]: REMOTE_ADDR = 10.0.0.15 -- 15:37:19.344 INFO [27865]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:19.344 INFO [27865]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=4esihuari78ecdathd9jth70kadh7p6q -- 15:37:19.344 INFO [27865]: QUERY_STRING = rlink=6b719b3a46dfa42dad09ae5653b4741c -- 15:37:19.344 INFO [27865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:19.344 INFO [27865]: SystemStatus()09-09-********~************ -- 15:37:19.344 INFO [27865]: long coregrade_api_main(CVars in, CVars &out) -- 15:37:19.344 INFO [27865]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 15:37:19.344 INFO [27865]: account calls -- 15:37:19.344 INFO [27865]: account_calls() -- 15:37:19.344 INFO [27865]: passwordReset() -- 15:37:19.344 INFO [27865]: confirmPassReset() -- 15:37:19.344 FLOG_MAX [27865]: REQ_STRING(reset_key) -- 15:37:19.344 FLOG_MAX [27865]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:37:19.344 SQL [27865]: pgsql_query() -- 15:37:19.344 SQL [27865]: About to run query: -- 15:37:19.344 SQL [27865]: SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='6b719b3a46dfa42dad09ae5653b4741c' -- 15:37:19.347 SQL [27865]: Found rows: 0 -- 15:37:19.347 SQL [27865]: Found rows: 0 -- 15:37:19.347 INFO [27865]: RET: id= -- 15:37:19.347 INFO [27865]: RET: result=YES I GET TO BACK END -- 15:37:19.347 INFO [27865]: RET: status_advice=Contact support or Start all over -- 15:37:19.347 INFO [27865]: RET: status_message=Invalid PIN or disabled account -- 15:37:19.349 INFO [27865]: COREGRADE is stopping... -- 15:37:19.349 DEBUG [27865]: Closing database connection -- 15:37:19.349 SQL [27865]: pgsql_close() -- 15:37:19.301 DEBUG [27865]: Database connection successful -- 15:37:19.301 INFO [27865]: _SERVER found -- 15:37:19.301 INFO [27865]: REMOTE_ADDR = 10.0.0.15 -- 15:37:19.301 INFO [27865]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:19.301 INFO [27865]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=4esihuari78ecdathd9jth70kadh7p6q -- 15:37:19.301 INFO [27865]: QUERY_STRING = /auth/passreset -- 15:37:19.301 INFO [27865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:19.349 INFO [27865]: COREGRADE is stopping... -- 15:37:19.349 DEBUG [27865]: Closing database connection -- 15:37:19.349 SQL [27865]: pgsql_close() -- 15:37:19.433 INFO [27865]: COREGRADE is starting... -- 15:37:19.433 INFO [27865]: Version from config: 1.0 -- 15:37:19.433 DEBUG [27865]: Connecting to database... -- 15:37:19.433 DEBUG [27865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:19.433 SQL [27865]: pgsql_db_connect() -- 15:37:19.437 DEBUG [27865]: Database connection successful -- 15:37:19.437 INFO [27865]: _SERVER found -- 15:37:19.437 INFO [27865]: REMOTE_ADDR = 10.0.0.15 -- 15:37:19.437 INFO [27865]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:19.437 INFO [27865]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=rkhjevbcpkg0f8nkktiht937sj4s0hm0 -- 15:37:19.437 INFO [27865]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:37:19.437 INFO [27865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:19.450 INFO [27865]: COREGRADE is stopping... -- 15:37:19.450 DEBUG [27865]: Closing database connection -- 15:37:19.450 SQL [27865]: pgsql_close() -- 15:37:46.262 INFO [27922]: COREGRADE is starting... -- 15:37:46.262 INFO [27922]: Version from config: 1.0 -- 15:37:46.262 DEBUG [27922]: Connecting to database... -- 15:37:46.262 DEBUG [27922]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:46.262 SQL [27922]: pgsql_db_connect() -- 15:37:46.266 DEBUG [27922]: Database connection successful -- 15:37:46.266 INFO [27922]: _SERVER found -- 15:37:46.266 INFO [27922]: REMOTE_ADDR = 10.0.0.15 -- 15:37:46.266 INFO [27922]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:46.266 INFO [27922]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=rkhjevbcpkg0f8nkktiht937sj4s0hm0 -- 15:37:46.266 INFO [27922]: QUERY_STRING = -- 15:37:46.266 INFO [27922]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:46.311 INFO [27922]: COREGRADE is stopping... -- 15:37:46.311 DEBUG [27922]: Closing database connection -- 15:37:46.311 SQL [27922]: pgsql_close() -- 15:37:46.471 INFO [27922]: COREGRADE is starting... -- 15:37:46.471 INFO [27922]: Version from config: 1.0 -- 15:37:46.471 DEBUG [27922]: Connecting to database... -- 15:37:46.471 DEBUG [27922]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:46.471 SQL [27922]: pgsql_db_connect() -- 15:37:46.475 DEBUG [27922]: Database connection successful -- 15:37:46.475 INFO [27922]: _SERVER found -- 15:37:46.475 INFO [27922]: REMOTE_ADDR = 10.0.0.15 -- 15:37:46.475 INFO [27922]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:46.475 INFO [27922]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=rkhjevbcpkg0f8nkktiht937sj4s0hm0 -- 15:37:46.475 INFO [27922]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:37:46.475 INFO [27922]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:46.487 INFO [27922]: COREGRADE is stopping... -- 15:37:46.487 DEBUG [27922]: Closing database connection -- 15:37:46.488 SQL [27922]: pgsql_close() -- 15:37:59.171 INFO [27863]: COREGRADE is starting... -- 15:37:59.171 INFO [27863]: Version from config: 1.0 -- 15:37:59.171 DEBUG [27863]: Connecting to database... -- 15:37:59.171 DEBUG [27863]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:59.171 SQL [27863]: pgsql_db_connect() -- 15:37:59.175 DEBUG [27863]: Database connection successful -- 15:37:59.175 INFO [27863]: _SERVER found -- 15:37:59.175 INFO [27863]: REMOTE_ADDR = 10.0.0.15 -- 15:37:59.175 INFO [27863]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:59.175 INFO [27863]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561 -- 15:37:59.175 INFO [27863]: QUERY_STRING = -- 15:37:59.175 INFO [27863]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:37:59.216 INFO [27863]: COREGRADE is stopping... -- 15:37:59.216 DEBUG [27863]: Closing database connection -- 15:37:59.216 SQL [27863]: pgsql_close() -- 15:37:59.379 INFO [27863]: COREGRADE is starting... -- 15:37:59.380 INFO [27863]: Version from config: 1.0 -- 15:37:59.380 DEBUG [27863]: Connecting to database... -- 15:37:59.380 DEBUG [27863]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:59.380 SQL [27863]: pgsql_db_connect() -- 15:37:59.384 DEBUG [27863]: Database connection successful -- 15:37:59.384 INFO [27863]: _SERVER found -- 15:37:59.384 INFO [27863]: REMOTE_ADDR = 10.0.0.15 -- 15:37:59.384 INFO [27863]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:59.384 INFO [27863]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=1tfd8lsm9v94uhm3tu2tnh28la6nr723 -- 15:37:59.384 INFO [27863]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:37:59.384 INFO [27863]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:37:59.395 INFO [27863]: COREGRADE is stopping... -- 15:37:59.395 DEBUG [27863]: Closing database connection -- 15:37:59.395 SQL [27863]: pgsql_close() -- 15:38:01.041 INFO [27863]: COREGRADE is starting... -- 15:38:01.041 INFO [27863]: Version from config: 1.0 -- 15:38:01.042 DEBUG [27863]: Connecting to database... -- 15:38:01.042 DEBUG [27863]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:38:01.042 SQL [27863]: pgsql_db_connect() -- 15:38:01.053 INFO [27864]: COREGRADE is starting... -- 15:38:01.053 INFO [27864]: Version from config: 1.0 -- 15:38:01.053 DEBUG [27864]: Connecting to database... -- 15:38:01.053 DEBUG [27864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:38:01.053 SQL [27864]: pgsql_db_connect() -- 15:38:01.046 DEBUG [27863]: Database connection successful -- 15:38:01.046 INFO [27863]: _SERVER found -- 15:38:01.046 INFO [27863]: REMOTE_ADDR = 10.0.0.15 -- 15:38:01.046 INFO [27863]: SERVER_NAME = oameye.works.coregrade.com -- 15:38:01.046 INFO [27863]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=1tfd8lsm9v94uhm3tu2tnh28la6nr723; _gat_gtag_UA_54829827_2=1 -- 15:38:01.046 INFO [27863]: QUERY_STRING = /welcome/viewLogin -- 15:38:01.046 INFO [27863]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:38:01.076 INFO [27863]: COREGRADE is stopping... -- 15:38:01.076 DEBUG [27863]: Closing database connection -- 15:38:01.077 SQL [27863]: pgsql_close() -- 15:38:01.057 DEBUG [27864]: Database connection successful -- 15:38:01.057 INFO [27864]: _SERVER found -- 15:38:01.057 INFO [27864]: REMOTE_ADDR = 10.0.0.15 -- 15:38:01.057 INFO [27864]: SERVER_NAME = oameye.works.coregrade.com -- 15:38:01.057 INFO [27864]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=1tfd8lsm9v94uhm3tu2tnh28la6nr723; _gat_gtag_UA_54829827_2=1 -- 15:38:01.057 INFO [27864]: QUERY_STRING = /auth -- 15:38:01.057 INFO [27864]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:38:01.093 INFO [27864]: COREGRADE is stopping... -- 15:38:01.093 DEBUG [27864]: Closing database connection -- 15:38:01.093 SQL [27864]: pgsql_close() -- 15:38:01.115 INFO [27863]: COREGRADE is starting... -- 15:38:01.115 INFO [27863]: Version from config: 1.0 -- 15:38:01.115 DEBUG [27863]: Connecting to database... -- 15:38:01.115 DEBUG [27863]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:38:01.115 SQL [27863]: pgsql_db_connect() -- 15:38:01.119 DEBUG [27863]: Database connection successful -- 15:38:01.119 INFO [27863]: _SERVER found -- 15:38:01.119 INFO [27863]: REMOTE_ADDR = 10.0.0.15 -- 15:38:01.119 INFO [27863]: SERVER_NAME = oameye.works.coregrade.com -- 15:38:01.119 INFO [27863]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=1tfd8lsm9v94uhm3tu2tnh28la6nr723; _gat_gtag_UA_54829827_2=1 -- 15:38:01.119 INFO [27863]: QUERY_STRING = /auth/index -- 15:38:01.119 INFO [27863]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:38:01.150 INFO [27863]: COREGRADE is stopping... -- 15:38:01.150 DEBUG [27863]: Closing database connection -- 15:38:01.150 SQL [27863]: pgsql_close() -- 15:38:01.301 INFO [27864]: COREGRADE is starting... -- 15:38:01.301 INFO [27864]: Version from config: 1.0 -- 15:38:01.301 DEBUG [27864]: Connecting to database... -- 15:38:01.301 DEBUG [27864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:38:01.301 SQL [27864]: pgsql_db_connect() -- 15:38:01.305 DEBUG [27864]: Database connection successful -- 15:38:01.305 INFO [27864]: _SERVER found -- 15:38:01.305 INFO [27864]: REMOTE_ADDR = 10.0.0.15 -- 15:38:01.305 INFO [27864]: SERVER_NAME = oameye.works.coregrade.com -- 15:38:01.305 INFO [27864]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=1tfd8lsm9v94uhm3tu2tnh28la6nr723; _gat_gtag_UA_54829827_2=1 -- 15:38:01.305 INFO [27864]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:38:01.305 INFO [27864]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:38:01.318 INFO [27864]: COREGRADE is stopping... -- 15:38:01.318 DEBUG [27864]: Closing database connection -- 15:38:01.318 SQL [27864]: pgsql_close() -- 15:38:03.553 INFO [27864]: COREGRADE is starting... -- 15:38:03.553 INFO [27864]: Version from config: 1.0 -- 15:38:03.553 DEBUG [27864]: Connecting to database... -- 15:38:03.553 DEBUG [27864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:38:03.553 SQL [27864]: pgsql_db_connect() -- 15:38:03.557 DEBUG [27864]: Database connection successful -- 15:38:03.557 INFO [27864]: _SERVER found -- 15:38:03.557 INFO [27864]: REMOTE_ADDR = 10.0.0.15 -- 15:38:03.557 INFO [27864]: SERVER_NAME = oameye.works.coregrade.com -- 15:38:03.557 INFO [27864]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=1tfd8lsm9v94uhm3tu2tnh28la6nr723; _gat_gtag_UA_54829827_2=1 -- 15:38:03.557 INFO [27864]: QUERY_STRING = /auth/resetpass -- 15:38:03.557 INFO [27864]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:38:03.592 INFO [27864]: COREGRADE is stopping... -- 15:38:03.592 DEBUG [27864]: Closing database connection -- 15:38:03.592 SQL [27864]: pgsql_close() -- 15:38:03.739 INFO [27864]: COREGRADE is starting... -- 15:38:03.740 INFO [27864]: Version from config: 1.0 -- 15:38:03.740 DEBUG [27864]: Connecting to database... -- 15:38:03.740 DEBUG [27864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:38:03.740 SQL [27864]: pgsql_db_connect() -- 15:38:03.744 DEBUG [27864]: Database connection successful -- 15:38:03.744 INFO [27864]: _SERVER found -- 15:38:03.744 INFO [27864]: REMOTE_ADDR = 10.0.0.15 -- 15:38:03.744 INFO [27864]: SERVER_NAME = oameye.works.coregrade.com -- 15:38:03.744 INFO [27864]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=1tfd8lsm9v94uhm3tu2tnh28la6nr723; _gat_gtag_UA_54829827_2=1 -- 15:38:03.744 INFO [27864]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:38:03.744 INFO [27864]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:38:03.756 INFO [27864]: COREGRADE is stopping... -- 15:38:03.756 DEBUG [27864]: Closing database connection -- 15:38:03.756 SQL [27864]: pgsql_close() -- 15:38:08.017 INFO [27864]: COREGRADE is starting... -- 15:38:08.017 INFO [27864]: Version from config: 1.0 -- 15:38:08.017 DEBUG [27864]: Connecting to database... -- 15:38:08.017 DEBUG [27864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:38:08.017 SQL [27864]: pgsql_db_connect() -- 15:38:08.021 DEBUG [27864]: Database connection successful -- 15:38:08.021 INFO [27864]: _SERVER found -- 15:38:08.021 INFO [27864]: REMOTE_ADDR = 10.0.0.15 -- 15:38:08.021 INFO [27864]: SERVER_NAME = oameye.works.coregrade.com -- 15:38:08.021 INFO [27864]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=1tfd8lsm9v94uhm3tu2tnh28la6nr723; _gat_gtag_UA_54829827_2=1 -- 15:38:08.021 INFO [27864]: QUERY_STRING = /auth -- 15:38:08.021 INFO [27864]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:38:08.056 INFO [27864]: COREGRADE is stopping... -- 15:38:08.057 DEBUG [27864]: Closing database connection -- 15:38:08.057 SQL [27864]: pgsql_close() -- 15:38:41.535 INFO [27866]: COREGRADE is starting... -- 15:38:41.535 INFO [27866]: Version from config: 1.0 -- 15:38:41.535 DEBUG [27866]: Connecting to database... -- 15:38:41.535 DEBUG [27866]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:38:41.535 SQL [27866]: pgsql_db_connect() -- 15:38:41.539 DEBUG [27866]: Database connection successful -- 15:38:41.539 INFO [27866]: _SERVER found -- 15:38:41.539 INFO [27866]: REMOTE_ADDR = 10.0.0.15 -- 15:38:41.539 INFO [27866]: SERVER_NAME = oameye.works.coregrade.com -- 15:38:41.539 INFO [27866]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=1tfd8lsm9v94uhm3tu2tnh28la6nr723; _gat_gtag_UA_54829827_2=1 -- 15:38:41.539 INFO [27866]: QUERY_STRING = /auth -- 15:38:41.539 INFO [27866]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:38:41.575 INFO [27866]: COREGRADE is stopping... -- 15:38:41.575 DEBUG [27866]: Closing database connection -- 15:38:41.575 SQL [27866]: pgsql_close() -- 15:38:43.383 INFO [27866]: COREGRADE is starting... -- 15:38:43.383 INFO [27866]: Version from config: 1.0 -- 15:38:43.383 DEBUG [27866]: Connecting to database... -- 15:38:43.383 DEBUG [27866]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:38:43.383 SQL [27866]: pgsql_db_connect() -- 15:38:43.387 DEBUG [27866]: Database connection successful -- 15:38:43.387 INFO [27866]: _SERVER found -- 15:38:43.388 INFO [27866]: REMOTE_ADDR = 10.0.0.15 -- 15:38:43.388 INFO [27866]: SERVER_NAME = oameye.works.coregrade.com -- 15:38:43.388 INFO [27866]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=1tfd8lsm9v94uhm3tu2tnh28la6nr723; _gat_gtag_UA_54829827_2=1 -- 15:38:43.388 INFO [27866]: QUERY_STRING = /auth/resetpass -- 15:38:43.388 INFO [27866]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:38:43.423 INFO [27866]: COREGRADE is stopping... -- 15:38:43.423 DEBUG [27866]: Closing database connection -- 15:38:43.423 SQL [27866]: pgsql_close() -- 15:39:05.146 INFO [27867]: COREGRADE is starting... -- 15:39:05.146 INFO [27867]: Version from config: 1.0 -- 15:39:05.146 DEBUG [27867]: Connecting to database... -- 15:39:05.146 DEBUG [27867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:39:05.146 SQL [27867]: pgsql_db_connect() -- 15:39:05.185 INFO [27867]: COREGRADE is starting... -- 15:39:05.185 INFO [27867]: Version from config: 1.0 -- 15:39:05.185 DEBUG [27867]: Connecting to database... -- 15:39:05.185 DEBUG [27867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:39:05.185 SQL [27867]: pgsql_db_connect() -- 15:39:05.189 DEBUG [27867]: Database connection successful -- 15:39:05.189 INFO [27867]: _SERVER found -- 15:39:05.189 INFO [27867]: REMOTE_ADDR = 10.0.0.15 -- 15:39:05.189 INFO [27867]: SERVER_NAME = oameye.works.coregrade.com -- 15:39:05.189 INFO [27867]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=1tfd8lsm9v94uhm3tu2tnh28la6nr723 -- 15:39:05.189 INFO [27867]: QUERY_STRING = -- 15:39:05.189 INFO [27867]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:39:05.189 INFO [27867]: SystemStatus()09-09-********~************ -- 15:39:05.189 INFO [27867]: long coregrade_api_main(CVars in, CVars &out) -- 15:39:05.189 INFO [27867]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 15:39:05.189 INFO [27867]: account calls -- 15:39:05.189 INFO [27867]: account_calls() -- 15:39:05.189 INFO [27867]: passwordReset() -- 15:39:05.189 INFO [27867]: startPassReset() -- 15:39:05.189 FLOG_MAX [27867]: REQ_STRING(username) -- 15:39:05.189 FLOG_MAX [27867]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:39:05.189 SQL [27867]: pgsql_query() -- 15:39:05.189 SQL [27867]: About to run query: -- 15:39:05.189 SQL [27867]: SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('ses66181+563@gmail.com') -- 15:39:05.192 SQL [27867]: Found rows: 1 -- 15:39:05.192 FLOG_MAX [27867]: load_db_record(SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('ses66181+563@gmail.com') ) num_cols=2 -- 15:39:05.192 SQL [27867]: pgsql_exec() -- 15:39:05.192 SQL [27867]: About to run query: -- 15:39:05.192 SQL [27867]: UPDATE password_reset SET status=7 WHERE status NOT IN (3,5) AND member_id=9 -- 15:39:05.193 SQL [27867]: PQcmdTuples: 0 -- 15:39:05.193 SQL [27867]: Affected rows: 0 -- 15:39:05.193 FLOG_MAX [27867]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:39:05.193 SQL [27867]: pgsql_query() -- 15:39:05.193 SQL [27867]: About to run query: -- 15:39:05.193 SQL [27867]: SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 15:39:05.18979-04') AS reset_key -- 15:39:05.194 SQL [27867]: Found rows: 1 -- 15:39:05.194 FLOG_MAX [27867]: load_db_record(SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 15:39:05.18979-04') AS reset_key) num_cols=2 -- 15:39:05.194 FLOG_MAX [27867]: insert_db_record() -- 15:39:05.194 SQL [27867]: pgsql_exec() -- 15:39:05.194 SQL [27867]: About to run query: -- 15:39:05.194 SQL [27867]: INSERT INTO password_reset (loc,member_id,reset_key,reset_pin,username) VALUES ('10.0.0.15','9','db72e71593433cb2683774c8d97219f0','56231','ses66181+563@gmail.com') -- 15:39:05.195 SQL [27867]: PQcmdTuples: 1 -- 15:39:05.195 SQL [27867]: Affected rows: 1 -- 15:39:05.195 FLOG_MAX [27867]: SELECT currval('password_reset_id_seq') -- 15:39:05.195 SQL [27867]: pgsql_query() -- 15:39:05.196 SQL [27867]: About to run query: -- 15:39:05.196 SQL [27867]: SELECT currval('password_reset_id_seq') -- 15:39:05.196 SQL [27867]: Found rows: 1 -- 15:39:05.196 INFO [27867]: member_email_calls() -- 15:39:05.197 FLOG_MAX [27867]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:39:05.197 SQL [27867]: pgsql_query() -- 15:39:05.197 SQL [27867]: About to run query: -- 15:39:05.197 SQL [27867]: SELECT m.firstname,p.*,m.email AS member_email, created AS lost_added FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=8 -- 15:39:05.198 SQL [27867]: Found rows: 1 -- 15:39:05.198 FLOG_MAX [27867]: load_db_record(SELECT m.firstname,p.*,m.email AS member_email, created AS lost_added FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=8 ) num_cols=12 -- 15:39:05.198 FLOG_MAX [27867]: CGI Parsing: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 15:39:05.198 FLOG_MAX [27867]: Template '/home/oameye/coregrade/coregrade/email//start_losspass.mailfile' loaded: 1586 bytes -- 15:39:05.198 FLOG_MAX [27867]: Returning from FormFile() -- 15:39:05.198 FLOG_MAX [27867]: Template parsed: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 15:39:05.198 FLOG_MAX [27867]: ESMTP( 10.0.0.23, support@coregrade.com, ses66181+563@gmail.com ) -- 15:39:05.198 FLOG_MAX [27867]: Prepare body -- 15:39:05.198 FLOG_MAX [27867]: Locate & extract subject -- 15:39:05.198 FLOG_MAX [27867]: Found subject: CoreGrade - Password Reset for ses66181+563@gmail.com -- 15:39:05.198 FLOG_MAX [27867]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t ses66181+563@gmail.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'CoreGrade - Password Reset for ses66181+563@gmail.com ' -M ' - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
CoreGrade
-Dear Olu -
-We have initiated your password reset process as requested as by you on 2020-04-12 15:39:05.194408: -
- - - - -
Click the linkhttps://oameye.works.coregrade.com/auth/passreset?rlink=db72e71593433cb2683774c8d97219f0
Link will expire
-
-
-If it was not at your request, then please contact CoreGrade support immediately. - -For further support go to our website at https://oameye.works.coregrade.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing CoreGrade. -CoreGrade Team. - -
-
- -
- - - - - - ' -- 15:39:05.244 FLOG_MAX [27867]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Password Reset for ses66181+563@gmail.com -From: CoreGrade Support -Date: Sun, 12 Apr 2020 15:39:05 -0400 -To: ses66181+563@gmail.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="vjDDQm9tbLRbuwl7" -Mime-version: 1.0 - - ---vjDDQm9tbLRbuwl7 -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
CoreGrade
-Dear Olu -
-We have initiated your password reset process as requested as by you on 2020-04-12 15:39:05.194408: -
- - - - -
Click the linkhttps://oameye.works.coregrade.com/auth/passreset?rlink=db72e71593433cb2683774c8d97219f0
Link will expire
-
-
-If it was not at your request, then please contact CoreGrade support immediately. - -For further support go to our website at https://oameye.works.coregrade.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing CoreGrade. -CoreGrade Team. - -
-
- -
- - - - - - - - ---vjDDQm9tbLRbuwl7-- - -[C] . -[S] 250 2.0.0 Ok: queued as 3A753210BDE4 -[C] QUIT -[S] 221 2.0.0 Bye - -- 15:39:05.245 FLOG_MAX [27867]: - -END OF PIPE OUTPUT - - -- 15:39:05.245 FLOG_MAX [27867]: /ESMTP() -- 15:39:05.245 INFO [27867]: /member_email_calls() -- 15:39:05.245 INFO [27867]: RET: member_id=9 -- 15:39:05.245 INFO [27867]: RET: mode=100 -- 15:39:05.245 INFO [27867]: RET: reset_id=8 -- 15:39:05.245 INFO [27867]: RET: reset_key=YOU WILL GET THIS IF PIN IS CORRECT IN CONFIRM -- 15:39:05.245 INFO [27867]: RET: reset_seed=2020-04-12 15:39:05.18979-04 -- 15:39:05.245 INFO [27867]: RET: reset_seed==REMOVED -- 15:39:05.245 INFO [27867]: RET: result=YES I GET TO BACK END -- 15:39:05.246 INFO [27867]: COREGRADE is stopping... -- 15:39:05.246 DEBUG [27867]: Closing database connection -- 15:39:05.247 SQL [27867]: pgsql_close() -- 15:39:05.150 DEBUG [27867]: Database connection successful -- 15:39:05.150 INFO [27867]: _SERVER found -- 15:39:05.150 INFO [27867]: REMOTE_ADDR = 10.0.0.15 -- 15:39:05.150 INFO [27867]: SERVER_NAME = oameye.works.coregrade.com -- 15:39:05.150 INFO [27867]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=1tfd8lsm9v94uhm3tu2tnh28la6nr723 -- 15:39:05.150 INFO [27867]: QUERY_STRING = /auth/resetpass -- 15:39:05.150 INFO [27867]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:39:05.247 INFO [27867]: COREGRADE is stopping... -- 15:39:05.247 DEBUG [27867]: Closing database connection -- 15:39:05.247 SQL [27867]: pgsql_close() -- 15:39:21.228 INFO [27865]: COREGRADE is starting... -- 15:39:21.228 INFO [27865]: Version from config: 1.0 -- 15:39:21.228 DEBUG [27865]: Connecting to database... -- 15:39:21.228 DEBUG [27865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:39:21.228 SQL [27865]: pgsql_db_connect() -- 15:39:21.267 INFO [27865]: COREGRADE is starting... -- 15:39:21.268 INFO [27865]: Version from config: 1.0 -- 15:39:21.268 DEBUG [27865]: Connecting to database... -- 15:39:21.268 DEBUG [27865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:39:21.268 SQL [27865]: pgsql_db_connect() -- 15:39:21.272 DEBUG [27865]: Database connection successful -- 15:39:21.272 INFO [27865]: _SERVER found -- 15:39:21.272 INFO [27865]: REMOTE_ADDR = 10.0.0.15 -- 15:39:21.272 INFO [27865]: SERVER_NAME = oameye.works.coregrade.com -- 15:39:21.272 INFO [27865]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; _gid=GA1.2.120824816.1586655078 -- 15:39:21.272 INFO [27865]: QUERY_STRING = rlink=db72e71593433cb2683774c8d97219f0 -- 15:39:21.272 INFO [27865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:39:21.272 INFO [27865]: SystemStatus()09-09-********~************ -- 15:39:21.272 INFO [27865]: long coregrade_api_main(CVars in, CVars &out) -- 15:39:21.272 INFO [27865]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 15:39:21.272 INFO [27865]: account calls -- 15:39:21.272 INFO [27865]: account_calls() -- 15:39:21.272 INFO [27865]: passwordReset() -- 15:39:21.272 INFO [27865]: confirmPassReset() -- 15:39:21.272 FLOG_MAX [27865]: REQ_STRING(reset_key) -- 15:39:21.272 FLOG_MAX [27865]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:39:21.272 SQL [27865]: pgsql_query() -- 15:39:21.272 SQL [27865]: About to run query: -- 15:39:21.272 SQL [27865]: SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='db72e71593433cb2683774c8d97219f0' -- 15:39:21.275 SQL [27865]: Found rows: 1 -- 15:39:21.275 FLOG_MAX [27865]: load_db_record(SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='db72e71593433cb2683774c8d97219f0' ) num_cols=10 -- 15:39:21.275 SQL [27865]: pgsql_query() -- 15:39:21.275 SQL [27865]: About to run query: -- 15:39:21.275 SQL [27865]: UPDATE password_reset SET status = 1 WHERE id =8 -- 15:39:21.276 SQL [27865]: Found rows: 0 -- 15:39:21.276 SQL [27865]: Found rows: 0 -- 15:39:21.276 INFO [27865]: RET: created=2020-04-12 15:39:05.194408 -- 15:39:21.276 INFO [27865]: RET: expired= -- 15:39:21.276 INFO [27865]: RET: id=8 -- 15:39:21.276 INFO [27865]: RET: loc=10.0.0.15 -- 15:39:21.276 INFO [27865]: RET: member_id=9 -- 15:39:21.276 INFO [27865]: RET: reset_id=8 -- 15:39:21.276 INFO [27865]: RET: reset_key=db72e71593433cb2683774c8d97219f0 -- 15:39:21.276 INFO [27865]: RET: reset_pin=56231 -- 15:39:21.276 INFO [27865]: RET: result=YES I GET TO BACK END -- 15:39:21.276 INFO [27865]: RET: status=0 -- 15:39:21.276 INFO [27865]: RET: username=ses66181+563@gmail.com -- 15:39:21.278 INFO [27865]: COREGRADE is stopping... -- 15:39:21.278 DEBUG [27865]: Closing database connection -- 15:39:21.278 SQL [27865]: pgsql_close() -- 15:39:21.233 DEBUG [27865]: Database connection successful -- 15:39:21.233 INFO [27865]: _SERVER found -- 15:39:21.233 INFO [27865]: REMOTE_ADDR = 10.0.0.15 -- 15:39:21.233 INFO [27865]: SERVER_NAME = oameye.works.coregrade.com -- 15:39:21.233 INFO [27865]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; _gid=GA1.2.120824816.1586655078 -- 15:39:21.233 INFO [27865]: QUERY_STRING = /auth/passreset -- 15:39:21.233 INFO [27865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:39:21.279 INFO [27865]: COREGRADE is stopping... -- 15:39:21.279 DEBUG [27865]: Closing database connection -- 15:39:21.279 SQL [27865]: pgsql_close() -- 15:39:21.468 INFO [27865]: COREGRADE is starting... -- 15:39:21.468 INFO [27865]: Version from config: 1.0 -- 15:39:21.468 DEBUG [27865]: Connecting to database... -- 15:39:21.468 DEBUG [27865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:39:21.468 SQL [27865]: pgsql_db_connect() -- 15:39:21.472 DEBUG [27865]: Database connection successful -- 15:39:21.472 INFO [27865]: _SERVER found -- 15:39:21.472 INFO [27865]: REMOTE_ADDR = 10.0.0.15 -- 15:39:21.472 INFO [27865]: SERVER_NAME = oameye.works.coregrade.com -- 15:39:21.472 INFO [27865]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; _gid=GA1.2.120824816.1586655078; ci_session=ojdqa022t8kih6al8evdrpoftnnmq5ks -- 15:39:21.472 INFO [27865]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:39:21.472 INFO [27865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:39:21.485 INFO [27865]: COREGRADE is stopping... -- 15:39:21.485 DEBUG [27865]: Closing database connection -- 15:39:21.485 SQL [27865]: pgsql_close() -- 15:39:21.564 INFO [27865]: COREGRADE is starting... -- 15:39:21.564 INFO [27865]: Version from config: 1.0 -- 15:39:21.564 DEBUG [27865]: Connecting to database... -- 15:39:21.564 DEBUG [27865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:39:21.564 SQL [27865]: pgsql_db_connect() -- 15:39:21.568 DEBUG [27865]: Database connection successful -- 15:39:21.568 INFO [27865]: _SERVER found -- 15:39:21.568 INFO [27865]: REMOTE_ADDR = 10.0.0.15 -- 15:39:21.568 INFO [27865]: SERVER_NAME = oameye.works.coregrade.com -- 15:39:21.568 INFO [27865]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; _gid=GA1.2.120824816.1586655078; ci_session=ojdqa022t8kih6al8evdrpoftnnmq5ks -- 15:39:21.568 INFO [27865]: QUERY_STRING = /favicon.ico -- 15:39:21.568 INFO [27865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:39:21.580 INFO [27865]: COREGRADE is stopping... -- 15:39:21.580 DEBUG [27865]: Closing database connection -- 15:39:21.580 SQL [27865]: pgsql_close() -- 15:40:18.975 INFO [27922]: COREGRADE is starting... -- 15:40:18.975 INFO [27922]: Version from config: 1.0 -- 15:40:18.975 DEBUG [27922]: Connecting to database... -- 15:40:18.975 DEBUG [27922]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:40:18.975 SQL [27922]: pgsql_db_connect() -- 15:40:18.979 DEBUG [27922]: Database connection successful -- 15:40:18.979 INFO [27922]: _SERVER found -- 15:40:18.979 INFO [27922]: REMOTE_ADDR = 10.0.0.15 -- 15:40:18.979 INFO [27922]: SERVER_NAME = oameye.works.coregrade.com -- 15:40:18.979 INFO [27922]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=rkhjevbcpkg0f8nkktiht937sj4s0hm0 -- 15:40:18.979 INFO [27922]: QUERY_STRING = /auth -- 15:40:18.979 INFO [27922]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:40:19.015 INFO [27922]: COREGRADE is stopping... -- 15:40:19.015 DEBUG [27922]: Closing database connection -- 15:40:19.015 SQL [27922]: pgsql_close() -- 15:40:19.025 INFO [27922]: COREGRADE is starting... -- 15:40:19.025 INFO [27922]: Version from config: 1.0 -- 15:40:19.025 DEBUG [27922]: Connecting to database... -- 15:40:19.025 DEBUG [27922]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:40:19.025 SQL [27922]: pgsql_db_connect() -- 15:40:19.029 DEBUG [27922]: Database connection successful -- 15:40:19.029 INFO [27922]: _SERVER found -- 15:40:19.029 INFO [27922]: REMOTE_ADDR = 10.0.0.15 -- 15:40:19.029 INFO [27922]: SERVER_NAME = oameye.works.coregrade.com -- 15:40:19.029 INFO [27922]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=rkhjevbcpkg0f8nkktiht937sj4s0hm0 -- 15:40:19.029 INFO [27922]: QUERY_STRING = /welcome/viewLogin -- 15:40:19.029 INFO [27922]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:40:19.062 INFO [27922]: COREGRADE is stopping... -- 15:40:19.062 DEBUG [27922]: Closing database connection -- 15:40:19.062 SQL [27922]: pgsql_close() -- 15:40:28.706 INFO [28002]: COREGRADE is starting... -- 15:40:28.707 INFO [28002]: Version from config: 1.0 -- 15:40:28.707 DEBUG [28002]: Connecting to database... -- 15:40:28.707 DEBUG [28002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:40:28.707 SQL [28002]: pgsql_db_connect() -- 15:40:28.711 DEBUG [28002]: Database connection successful -- 15:40:28.711 INFO [28002]: _SERVER found -- 15:40:28.711 INFO [28002]: REMOTE_ADDR = 10.0.0.15 -- 15:40:28.711 INFO [28002]: SERVER_NAME = oameye.works.coregrade.com -- 15:40:28.711 INFO [28002]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=1tfd8lsm9v94uhm3tu2tnh28la6nr723 -- 15:40:28.711 INFO [28002]: QUERY_STRING = -- 15:40:28.711 INFO [28002]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:40:28.755 INFO [28002]: COREGRADE is stopping... -- 15:40:28.755 DEBUG [28002]: Closing database connection -- 15:40:28.755 SQL [28002]: pgsql_close() -- 15:40:28.956 INFO [28002]: COREGRADE is starting... -- 15:40:28.956 INFO [28002]: Version from config: 1.0 -- 15:40:28.956 DEBUG [28002]: Connecting to database... -- 15:40:28.956 DEBUG [28002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:40:28.956 SQL [28002]: pgsql_db_connect() -- 15:40:28.960 DEBUG [28002]: Database connection successful -- 15:40:28.960 INFO [28002]: _SERVER found -- 15:40:28.960 INFO [28002]: REMOTE_ADDR = 10.0.0.15 -- 15:40:28.960 INFO [28002]: SERVER_NAME = oameye.works.coregrade.com -- 15:40:28.960 INFO [28002]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=1tfd8lsm9v94uhm3tu2tnh28la6nr723 -- 15:40:28.960 INFO [28002]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:40:28.960 INFO [28002]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:40:28.973 INFO [28002]: COREGRADE is stopping... -- 15:40:28.973 DEBUG [28002]: Closing database connection -- 15:40:28.973 SQL [28002]: pgsql_close() -- 15:40:29.245 INFO [28002]: COREGRADE is starting... -- 15:40:29.245 INFO [28002]: Version from config: 1.0 -- 15:40:29.245 DEBUG [28002]: Connecting to database... -- 15:40:29.245 DEBUG [28002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:40:29.245 SQL [28002]: pgsql_db_connect() -- 15:40:29.249 DEBUG [28002]: Database connection successful -- 15:40:29.249 INFO [28002]: _SERVER found -- 15:40:29.249 INFO [28002]: REMOTE_ADDR = 10.0.0.15 -- 15:40:29.249 INFO [28002]: SERVER_NAME = oameye.works.coregrade.com -- 15:40:29.249 INFO [28002]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=rkhjevbcpkg0f8nkktiht937sj4s0hm0 -- 15:40:29.249 INFO [28002]: QUERY_STRING = /auth/resetpass -- 15:40:29.249 INFO [28002]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:40:29.283 INFO [28002]: COREGRADE is stopping... -- 15:40:29.283 DEBUG [28002]: Closing database connection -- 15:40:29.283 SQL [28002]: pgsql_close() -- 15:40:29.294 INFO [28002]: COREGRADE is starting... -- 15:40:29.295 INFO [28002]: Version from config: 1.0 -- 15:40:29.295 DEBUG [28002]: Connecting to database... -- 15:40:29.295 DEBUG [28002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:40:29.295 SQL [28002]: pgsql_db_connect() -- 15:40:29.299 DEBUG [28002]: Database connection successful -- 15:40:29.299 INFO [28002]: _SERVER found -- 15:40:29.299 INFO [28002]: REMOTE_ADDR = 10.0.0.15 -- 15:40:29.299 INFO [28002]: SERVER_NAME = oameye.works.coregrade.com -- 15:40:29.299 INFO [28002]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=rkhjevbcpkg0f8nkktiht937sj4s0hm0 -- 15:40:29.299 INFO [28002]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:40:29.299 INFO [28002]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:40:29.311 INFO [28002]: COREGRADE is stopping... -- 15:40:29.311 DEBUG [28002]: Closing database connection -- 15:40:29.311 SQL [28002]: pgsql_close() -- 15:40:31.283 INFO [28002]: COREGRADE is starting... -- 15:40:31.283 INFO [28002]: Version from config: 1.0 -- 15:40:31.283 DEBUG [28002]: Connecting to database... -- 15:40:31.283 DEBUG [28002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:40:31.283 SQL [28002]: pgsql_db_connect() -- 15:40:31.290 INFO [27863]: COREGRADE is starting... -- 15:40:31.290 INFO [27863]: Version from config: 1.0 -- 15:40:31.290 DEBUG [27863]: Connecting to database... -- 15:40:31.290 DEBUG [27863]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:40:31.290 SQL [27863]: pgsql_db_connect() -- 15:40:31.287 DEBUG [28002]: Database connection successful -- 15:40:31.287 INFO [28002]: _SERVER found -- 15:40:31.287 INFO [28002]: REMOTE_ADDR = 10.0.0.15 -- 15:40:31.287 INFO [28002]: SERVER_NAME = oameye.works.coregrade.com -- 15:40:31.287 INFO [28002]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=1tfd8lsm9v94uhm3tu2tnh28la6nr723; _gat_gtag_UA_54829827_2=1 -- 15:40:31.287 INFO [28002]: QUERY_STRING = /welcome/viewLogin -- 15:40:31.287 INFO [28002]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:40:31.320 INFO [28002]: COREGRADE is stopping... -- 15:40:31.320 DEBUG [28002]: Closing database connection -- 15:40:31.321 SQL [28002]: pgsql_close() -- 15:40:31.294 DEBUG [27863]: Database connection successful -- 15:40:31.294 INFO [27863]: _SERVER found -- 15:40:31.294 INFO [27863]: REMOTE_ADDR = 10.0.0.15 -- 15:40:31.294 INFO [27863]: SERVER_NAME = oameye.works.coregrade.com -- 15:40:31.294 INFO [27863]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=1tfd8lsm9v94uhm3tu2tnh28la6nr723; _gat_gtag_UA_54829827_2=1 -- 15:40:31.294 INFO [27863]: QUERY_STRING = /auth -- 15:40:31.294 INFO [27863]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:40:31.326 INFO [27863]: COREGRADE is stopping... -- 15:40:31.326 DEBUG [27863]: Closing database connection -- 15:40:31.326 SQL [27863]: pgsql_close() -- 15:40:31.355 INFO [28002]: COREGRADE is starting... -- 15:40:31.355 INFO [28002]: Version from config: 1.0 -- 15:40:31.355 DEBUG [28002]: Connecting to database... -- 15:40:31.355 DEBUG [28002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:40:31.355 SQL [28002]: pgsql_db_connect() -- 15:40:31.359 DEBUG [28002]: Database connection successful -- 15:40:31.359 INFO [28002]: _SERVER found -- 15:40:31.359 INFO [28002]: REMOTE_ADDR = 10.0.0.15 -- 15:40:31.359 INFO [28002]: SERVER_NAME = oameye.works.coregrade.com -- 15:40:31.359 INFO [28002]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=1tfd8lsm9v94uhm3tu2tnh28la6nr723; _gat_gtag_UA_54829827_2=1 -- 15:40:31.359 INFO [28002]: QUERY_STRING = /auth/index -- 15:40:31.359 INFO [28002]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:40:31.394 INFO [28002]: COREGRADE is stopping... -- 15:40:31.394 DEBUG [28002]: Closing database connection -- 15:40:31.394 SQL [28002]: pgsql_close() -- 15:40:32.757 INFO [27863]: COREGRADE is starting... -- 15:40:32.757 INFO [27863]: Version from config: 1.0 -- 15:40:32.757 DEBUG [27863]: Connecting to database... -- 15:40:32.757 DEBUG [27863]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:40:32.757 SQL [27863]: pgsql_db_connect() -- 15:40:32.761 DEBUG [27863]: Database connection successful -- 15:40:32.761 INFO [27863]: _SERVER found -- 15:40:32.761 INFO [27863]: REMOTE_ADDR = 10.0.0.15 -- 15:40:32.761 INFO [27863]: SERVER_NAME = oameye.works.coregrade.com -- 15:40:32.761 INFO [27863]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=1tfd8lsm9v94uhm3tu2tnh28la6nr723; _gat_gtag_UA_54829827_2=1 -- 15:40:32.761 INFO [27863]: QUERY_STRING = /auth/resetpass -- 15:40:32.761 INFO [27863]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:40:32.792 INFO [27863]: COREGRADE is stopping... -- 15:40:32.792 DEBUG [27863]: Closing database connection -- 15:40:32.792 SQL [27863]: pgsql_close() -- 15:40:36.545 INFO [27863]: COREGRADE is starting... -- 15:40:36.545 INFO [27863]: Version from config: 1.0 -- 15:40:36.545 DEBUG [27863]: Connecting to database... -- 15:40:36.545 DEBUG [27863]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:40:36.545 SQL [27863]: pgsql_db_connect() -- 15:40:36.580 INFO [27863]: COREGRADE is starting... -- 15:40:36.580 INFO [27863]: Version from config: 1.0 -- 15:40:36.580 DEBUG [27863]: Connecting to database... -- 15:40:36.580 DEBUG [27863]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:40:36.580 SQL [27863]: pgsql_db_connect() -- 15:40:36.584 DEBUG [27863]: Database connection successful -- 15:40:36.584 INFO [27863]: _SERVER found -- 15:40:36.584 INFO [27863]: REMOTE_ADDR = 10.0.0.15 -- 15:40:36.584 INFO [27863]: SERVER_NAME = oameye.works.coregrade.com -- 15:40:36.584 INFO [27863]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=1tfd8lsm9v94uhm3tu2tnh28la6nr723; _gat_gtag_UA_54829827_2=1 -- 15:40:36.584 INFO [27863]: QUERY_STRING = -- 15:40:36.584 INFO [27863]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:40:36.584 INFO [27863]: SystemStatus()09-09-********~************ -- 15:40:36.584 INFO [27863]: long coregrade_api_main(CVars in, CVars &out) -- 15:40:36.584 INFO [27863]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 15:40:36.584 INFO [27863]: account calls -- 15:40:36.584 INFO [27863]: account_calls() -- 15:40:36.584 INFO [27863]: passwordReset() -- 15:40:36.584 INFO [27863]: startPassReset() -- 15:40:36.584 FLOG_MAX [27863]: REQ_STRING(username) -- 15:40:36.584 FLOG_MAX [27863]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:40:36.584 SQL [27863]: pgsql_query() -- 15:40:36.584 SQL [27863]: About to run query: -- 15:40:36.584 SQL [27863]: SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('ses66181+563@gmail.com') -- 15:40:36.587 SQL [27863]: Found rows: 1 -- 15:40:36.587 FLOG_MAX [27863]: load_db_record(SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('ses66181+563@gmail.com') ) num_cols=2 -- 15:40:36.587 SQL [27863]: pgsql_exec() -- 15:40:36.587 SQL [27863]: About to run query: -- 15:40:36.587 SQL [27863]: UPDATE password_reset SET status=7 WHERE status NOT IN (3,5) AND member_id=9 -- 15:40:36.588 SQL [27863]: PQcmdTuples: 1 -- 15:40:36.588 SQL [27863]: Affected rows: 1 -- 15:40:36.588 FLOG_MAX [27863]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:40:36.588 SQL [27863]: pgsql_query() -- 15:40:36.588 SQL [27863]: About to run query: -- 15:40:36.588 SQL [27863]: SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 15:40:36.58471-04') AS reset_key -- 15:40:36.589 SQL [27863]: Found rows: 1 -- 15:40:36.589 FLOG_MAX [27863]: load_db_record(SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 15:40:36.58471-04') AS reset_key) num_cols=2 -- 15:40:36.589 FLOG_MAX [27863]: insert_db_record() -- 15:40:36.589 SQL [27863]: pgsql_exec() -- 15:40:36.589 SQL [27863]: About to run query: -- 15:40:36.589 SQL [27863]: INSERT INTO password_reset (loc,member_id,reset_key,reset_pin,username) VALUES ('10.0.0.15','9','56d79aa39a8ebb0f7b6be2325cc7b5f9','22674','ses66181+563@gmail.com') -- 15:40:36.590 SQL [27863]: PQcmdTuples: 1 -- 15:40:36.590 SQL [27863]: Affected rows: 1 -- 15:40:36.590 FLOG_MAX [27863]: SELECT currval('password_reset_id_seq') -- 15:40:36.591 SQL [27863]: pgsql_query() -- 15:40:36.591 SQL [27863]: About to run query: -- 15:40:36.591 SQL [27863]: SELECT currval('password_reset_id_seq') -- 15:40:36.591 SQL [27863]: Found rows: 1 -- 15:40:36.591 INFO [27863]: member_email_calls() -- 15:40:36.591 FLOG_MAX [27863]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:40:36.591 SQL [27863]: pgsql_query() -- 15:40:36.591 SQL [27863]: About to run query: -- 15:40:36.591 SQL [27863]: SELECT m.firstname,p.*,m.email AS member_email, created AS lost_added FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=9 -- 15:40:36.592 SQL [27863]: Found rows: 1 -- 15:40:36.592 FLOG_MAX [27863]: load_db_record(SELECT m.firstname,p.*,m.email AS member_email, created AS lost_added FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=9 ) num_cols=12 -- 15:40:36.592 FLOG_MAX [27863]: CGI Parsing: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 15:40:36.593 FLOG_MAX [27863]: Template '/home/oameye/coregrade/coregrade/email//start_losspass.mailfile' loaded: 1586 bytes -- 15:40:36.593 FLOG_MAX [27863]: Returning from FormFile() -- 15:40:36.593 FLOG_MAX [27863]: Template parsed: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 15:40:36.593 FLOG_MAX [27863]: ESMTP( 10.0.0.23, support@coregrade.com, ses66181+563@gmail.com ) -- 15:40:36.593 FLOG_MAX [27863]: Prepare body -- 15:40:36.593 FLOG_MAX [27863]: Locate & extract subject -- 15:40:36.593 FLOG_MAX [27863]: Found subject: CoreGrade - Password Reset for ses66181+563@gmail.com -- 15:40:36.593 FLOG_MAX [27863]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t ses66181+563@gmail.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'CoreGrade - Password Reset for ses66181+563@gmail.com ' -M ' - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
CoreGrade
-Dear Olu -
-We have initiated your password reset process as requested as by you on 2020-04-12 15:40:36.589908: -
- - - - -
Click the linkhttps://oameye.works.coregrade.com/auth/passreset?rlink=56d79aa39a8ebb0f7b6be2325cc7b5f9
Link will expire
-
-
-If it was not at your request, then please contact CoreGrade support immediately. - -For further support go to our website at https://oameye.works.coregrade.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing CoreGrade. -CoreGrade Team. - -
-
- -
- - - - - - ' -- 15:40:36.614 FLOG_MAX [27863]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Password Reset for ses66181+563@gmail.com -From: CoreGrade Support -Date: Sun, 12 Apr 2020 15:40:36 -0400 -To: ses66181+563@gmail.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="bjy0YvUmarwv3f4V" -Mime-version: 1.0 - - ---bjy0YvUmarwv3f4V -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
CoreGrade
-Dear Olu -
-We have initiated your password reset process as requested as by you on 2020-04-12 15:40:36.589908: -
- - - - -
Click the linkhttps://oameye.works.coregrade.com/auth/passreset?rlink=56d79aa39a8ebb0f7b6be2325cc7b5f9
Link will expire
-
-
-If it was not at your request, then please contact CoreGrade support immediately. - -For further support go to our website at https://oameye.works.coregrade.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing CoreGrade. -CoreGrade Team. - -
-
- -
- - - - - - - - ---bjy0YvUmarwv3f4V-- - -[C] . -[S] 250 2.0.0 Ok: queued as 94961210BA75 -[C] QUIT -[S] 221 2.0.0 Bye -jU -- 15:40:36.614 FLOG_MAX [27863]: - -END OF PIPE OUTPUT - - -- 15:40:36.614 FLOG_MAX [27863]: /ESMTP() -- 15:40:36.614 INFO [27863]: /member_email_calls() -- 15:40:36.614 INFO [27863]: RET: member_id=9 -- 15:40:36.614 INFO [27863]: RET: mode=100 -- 15:40:36.614 INFO [27863]: RET: reset_id=9 -- 15:40:36.614 INFO [27863]: RET: reset_key=YOU WILL GET THIS IF PIN IS CORRECT IN CONFIRM -- 15:40:36.614 INFO [27863]: RET: reset_seed=2020-04-12 15:40:36.58471-04 -- 15:40:36.614 INFO [27863]: RET: reset_seed==REMOVED -- 15:40:36.614 INFO [27863]: RET: result=YES I GET TO BACK END -- 15:40:36.616 INFO [27863]: COREGRADE is stopping... -- 15:40:36.616 DEBUG [27863]: Closing database connection -- 15:40:36.616 SQL [27863]: pgsql_close() -- 15:40:36.549 DEBUG [27863]: Database connection successful -- 15:40:36.549 INFO [27863]: _SERVER found -- 15:40:36.549 INFO [27863]: REMOTE_ADDR = 10.0.0.15 -- 15:40:36.549 INFO [27863]: SERVER_NAME = oameye.works.coregrade.com -- 15:40:36.549 INFO [27863]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=1tfd8lsm9v94uhm3tu2tnh28la6nr723; _gat_gtag_UA_54829827_2=1 -- 15:40:36.549 INFO [27863]: QUERY_STRING = /auth/resetpass -- 15:40:36.549 INFO [27863]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:40:36.616 INFO [27863]: COREGRADE is stopping... -- 15:40:36.616 DEBUG [27863]: Closing database connection -- 15:40:36.617 SQL [27863]: pgsql_close() -- 15:40:38.866 INFO [27863]: COREGRADE is starting... -- 15:40:38.866 INFO [27863]: Version from config: 1.0 -- 15:40:38.866 DEBUG [27863]: Connecting to database... -- 15:40:38.866 DEBUG [27863]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:40:38.866 SQL [27863]: pgsql_db_connect() -- 15:40:38.870 DEBUG [27863]: Database connection successful -- 15:40:38.870 INFO [27863]: _SERVER found -- 15:40:38.870 INFO [27863]: REMOTE_ADDR = 10.0.0.15 -- 15:40:38.870 INFO [27863]: SERVER_NAME = oameye.works.coregrade.com -- 15:40:38.870 INFO [27863]: QUERY_STRING = /images/logo.png -- 15:40:38.870 INFO [27863]: HTTP_X_FORWARDED_FOR = 66.249.90.74 -- 15:40:38.882 INFO [27863]: COREGRADE is stopping... -- 15:40:38.882 DEBUG [27863]: Closing database connection -- 15:40:38.882 SQL [27863]: pgsql_close() -- 15:40:43.222 INFO [27863]: COREGRADE is starting... -- 15:40:43.222 INFO [27863]: Version from config: 1.0 -- 15:40:43.222 DEBUG [27863]: Connecting to database... -- 15:40:43.222 DEBUG [27863]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:40:43.222 SQL [27863]: pgsql_db_connect() -- 15:40:43.226 DEBUG [27863]: Database connection successful -- 15:40:43.226 INFO [27863]: _SERVER found -- 15:40:43.226 INFO [27863]: REMOTE_ADDR = 10.0.0.15 -- 15:40:43.226 INFO [27863]: SERVER_NAME = oameye.works.coregrade.com -- 15:40:43.226 INFO [27863]: QUERY_STRING = /images/logo.png -- 15:40:43.226 INFO [27863]: HTTP_X_FORWARDED_FOR = 66.249.88.26 -- 15:40:43.237 INFO [27863]: COREGRADE is stopping... -- 15:40:43.237 DEBUG [27863]: Closing database connection -- 15:40:43.237 SQL [27863]: pgsql_close() -- 15:41:19.026 INFO [27864]: COREGRADE is starting... -- 15:41:19.027 INFO [27864]: Version from config: 1.0 -- 15:41:19.027 DEBUG [27864]: Connecting to database... -- 15:41:19.027 DEBUG [27864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:41:19.027 SQL [27864]: pgsql_db_connect() -- 15:41:19.065 INFO [27864]: COREGRADE is starting... -- 15:41:19.066 INFO [27864]: Version from config: 1.0 -- 15:41:19.066 DEBUG [27864]: Connecting to database... -- 15:41:19.066 DEBUG [27864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:41:19.066 SQL [27864]: pgsql_db_connect() -- 15:41:19.070 DEBUG [27864]: Database connection successful -- 15:41:19.070 INFO [27864]: _SERVER found -- 15:41:19.070 INFO [27864]: REMOTE_ADDR = 10.0.0.15 -- 15:41:19.070 INFO [27864]: SERVER_NAME = oameye.works.coregrade.com -- 15:41:19.070 INFO [27864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=rkhjevbcpkg0f8nkktiht937sj4s0hm0 -- 15:41:19.070 INFO [27864]: QUERY_STRING = rlink=56d79aa39a8ebb0f7b6be2325cc7b5f9 -- 15:41:19.070 INFO [27864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:41:19.070 INFO [27864]: SystemStatus()09-09-********~************ -- 15:41:19.070 INFO [27864]: long coregrade_api_main(CVars in, CVars &out) -- 15:41:19.070 INFO [27864]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 15:41:19.070 INFO [27864]: account calls -- 15:41:19.070 INFO [27864]: account_calls() -- 15:41:19.070 INFO [27864]: passwordReset() -- 15:41:19.070 INFO [27864]: confirmPassReset() -- 15:41:19.070 FLOG_MAX [27864]: REQ_STRING(reset_key) -- 15:41:19.070 FLOG_MAX [27864]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:41:19.070 SQL [27864]: pgsql_query() -- 15:41:19.070 SQL [27864]: About to run query: -- 15:41:19.070 SQL [27864]: SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='56d79aa39a8ebb0f7b6be2325cc7b5f9' -- 15:41:19.073 SQL [27864]: Found rows: 1 -- 15:41:19.073 FLOG_MAX [27864]: load_db_record(SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='56d79aa39a8ebb0f7b6be2325cc7b5f9' ) num_cols=10 -- 15:41:19.073 SQL [27864]: pgsql_query() -- 15:41:19.073 SQL [27864]: About to run query: -- 15:41:19.073 SQL [27864]: UPDATE password_reset SET status = 1 WHERE id =9 -- 15:41:19.074 SQL [27864]: Found rows: 0 -- 15:41:19.074 SQL [27864]: Found rows: 0 -- 15:41:19.074 INFO [27864]: RET: created=2020-04-12 15:40:36.589908 -- 15:41:19.074 INFO [27864]: RET: expired= -- 15:41:19.074 INFO [27864]: RET: id=9 -- 15:41:19.074 INFO [27864]: RET: loc=10.0.0.15 -- 15:41:19.074 INFO [27864]: RET: member_id=9 -- 15:41:19.074 INFO [27864]: RET: reset_id=9 -- 15:41:19.074 INFO [27864]: RET: reset_key=56d79aa39a8ebb0f7b6be2325cc7b5f9 -- 15:41:19.074 INFO [27864]: RET: reset_pin=22674 -- 15:41:19.074 INFO [27864]: RET: result=YES I GET TO BACK END -- 15:41:19.074 INFO [27864]: RET: status=0 -- 15:41:19.074 INFO [27864]: RET: username=ses66181+563@gmail.com -- 15:41:19.075 INFO [27864]: COREGRADE is stopping... -- 15:41:19.075 DEBUG [27864]: Closing database connection -- 15:41:19.075 SQL [27864]: pgsql_close() -- 15:41:19.031 DEBUG [27864]: Database connection successful -- 15:41:19.031 INFO [27864]: _SERVER found -- 15:41:19.031 INFO [27864]: REMOTE_ADDR = 10.0.0.15 -- 15:41:19.031 INFO [27864]: SERVER_NAME = oameye.works.coregrade.com -- 15:41:19.031 INFO [27864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=rkhjevbcpkg0f8nkktiht937sj4s0hm0 -- 15:41:19.031 INFO [27864]: QUERY_STRING = /auth/passreset -- 15:41:19.031 INFO [27864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:41:19.075 INFO [27864]: COREGRADE is stopping... -- 15:41:19.075 DEBUG [27864]: Closing database connection -- 15:41:19.076 SQL [27864]: pgsql_close() -- 15:41:19.206 INFO [27864]: COREGRADE is starting... -- 15:41:19.206 INFO [27864]: Version from config: 1.0 -- 15:41:19.206 DEBUG [27864]: Connecting to database... -- 15:41:19.206 DEBUG [27864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:41:19.206 SQL [27864]: pgsql_db_connect() -- 15:41:19.210 DEBUG [27864]: Database connection successful -- 15:41:19.210 INFO [27864]: _SERVER found -- 15:41:19.210 INFO [27864]: REMOTE_ADDR = 10.0.0.15 -- 15:41:19.210 INFO [27864]: SERVER_NAME = oameye.works.coregrade.com -- 15:41:19.210 INFO [27864]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=rkhjevbcpkg0f8nkktiht937sj4s0hm0 -- 15:41:19.210 INFO [27864]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:41:19.210 INFO [27864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:41:19.221 INFO [27864]: COREGRADE is stopping... -- 15:41:19.221 DEBUG [27864]: Closing database connection -- 15:41:19.221 SQL [27864]: pgsql_close() -- 15:43:12.799 INFO [27866]: COREGRADE is starting... -- 15:43:12.800 INFO [27866]: Version from config: 1.0 -- 15:43:12.800 DEBUG [27866]: Connecting to database... -- 15:43:12.800 DEBUG [27866]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:43:12.800 SQL [27866]: pgsql_db_connect() -- 15:43:12.839 INFO [27866]: COREGRADE is starting... -- 15:43:12.839 INFO [27866]: Version from config: 1.0 -- 15:43:12.839 DEBUG [27866]: Connecting to database... -- 15:43:12.839 DEBUG [27866]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:43:12.839 SQL [27866]: pgsql_db_connect() -- 15:43:12.844 DEBUG [27866]: Database connection successful -- 15:43:12.844 INFO [27866]: _SERVER found -- 15:43:12.844 INFO [27866]: REMOTE_ADDR = 10.0.0.15 -- 15:43:12.844 INFO [27866]: SERVER_NAME = oameye.works.coregrade.com -- 15:43:12.844 INFO [27866]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=rkhjevbcpkg0f8nkktiht937sj4s0hm0 -- 15:43:12.844 INFO [27866]: QUERY_STRING = rlink=56d79aa39a8ebb0f7b6be2325cc7b5f9 -- 15:43:12.844 INFO [27866]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:43:12.844 INFO [27866]: SystemStatus()09-09-********~************ -- 15:43:12.844 INFO [27866]: long coregrade_api_main(CVars in, CVars &out) -- 15:43:12.844 INFO [27866]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 15:43:12.844 INFO [27866]: account calls -- 15:43:12.844 INFO [27866]: account_calls() -- 15:43:12.844 INFO [27866]: passwordReset() -- 15:43:12.844 INFO [27866]: confirmPassReset() -- 15:43:12.844 FLOG_MAX [27866]: REQ_STRING(reset_key) -- 15:43:12.844 FLOG_MAX [27866]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:43:12.844 SQL [27866]: pgsql_query() -- 15:43:12.844 SQL [27866]: About to run query: -- 15:43:12.844 SQL [27866]: SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='56d79aa39a8ebb0f7b6be2325cc7b5f9' -- 15:43:12.846 SQL [27866]: Found rows: 0 -- 15:43:12.846 SQL [27866]: Found rows: 0 -- 15:43:12.846 INFO [27866]: RET: id= -- 15:43:12.846 INFO [27866]: RET: result=YES I GET TO BACK END -- 15:43:12.846 INFO [27866]: RET: status_advice=Contact support or Start all over -- 15:43:12.846 INFO [27866]: RET: status_message=Invalid PIN or disabled account -- 15:43:12.848 INFO [27866]: COREGRADE is stopping... -- 15:43:12.848 DEBUG [27866]: Closing database connection -- 15:43:12.848 SQL [27866]: pgsql_close() -- 15:43:12.804 DEBUG [27866]: Database connection successful -- 15:43:12.804 INFO [27866]: _SERVER found -- 15:43:12.804 INFO [27866]: REMOTE_ADDR = 10.0.0.15 -- 15:43:12.804 INFO [27866]: SERVER_NAME = oameye.works.coregrade.com -- 15:43:12.804 INFO [27866]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=rkhjevbcpkg0f8nkktiht937sj4s0hm0 -- 15:43:12.804 INFO [27866]: QUERY_STRING = /auth/passreset -- 15:43:12.804 INFO [27866]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:43:12.848 INFO [27866]: COREGRADE is stopping... -- 15:43:12.848 DEBUG [27866]: Closing database connection -- 15:43:12.848 SQL [27866]: pgsql_close() -- 15:43:12.985 INFO [27866]: COREGRADE is starting... -- 15:43:12.985 INFO [27866]: Version from config: 1.0 -- 15:43:12.985 DEBUG [27866]: Connecting to database... -- 15:43:12.985 DEBUG [27866]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:43:12.985 SQL [27866]: pgsql_db_connect() -- 15:43:12.989 DEBUG [27866]: Database connection successful -- 15:43:12.989 INFO [27866]: _SERVER found -- 15:43:12.989 INFO [27866]: REMOTE_ADDR = 10.0.0.15 -- 15:43:12.989 INFO [27866]: SERVER_NAME = oameye.works.coregrade.com -- 15:43:12.989 INFO [27866]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=0vg8kaaqrb537gsmvn4l5pjdlqn4hbob -- 15:43:12.989 INFO [27866]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:43:12.989 INFO [27866]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:43:13.001 INFO [27866]: COREGRADE is stopping... -- 15:43:13.001 DEBUG [27866]: Closing database connection -- 15:43:13.001 SQL [27866]: pgsql_close() -- 15:43:16.572 INFO [27866]: COREGRADE is starting... -- 15:43:16.573 INFO [27866]: Version from config: 1.0 -- 15:43:16.573 DEBUG [27866]: Connecting to database... -- 15:43:16.573 DEBUG [27866]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:43:16.573 SQL [27866]: pgsql_db_connect() -- 15:43:16.577 DEBUG [27866]: Database connection successful -- 15:43:16.577 INFO [27866]: _SERVER found -- 15:43:16.577 INFO [27866]: REMOTE_ADDR = 10.0.0.15 -- 15:43:16.577 INFO [27866]: SERVER_NAME = oameye.works.coregrade.com -- 15:43:16.577 INFO [27866]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=0vg8kaaqrb537gsmvn4l5pjdlqn4hbob -- 15:43:16.577 INFO [27866]: QUERY_STRING = -- 15:43:16.577 INFO [27866]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:43:16.617 INFO [27866]: COREGRADE is stopping... -- 15:43:16.617 DEBUG [27866]: Closing database connection -- 15:43:16.617 SQL [27866]: pgsql_close() -- 15:43:16.767 INFO [27866]: COREGRADE is starting... -- 15:43:16.768 INFO [27866]: Version from config: 1.0 -- 15:43:16.768 DEBUG [27866]: Connecting to database... -- 15:43:16.768 DEBUG [27866]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:43:16.768 SQL [27866]: pgsql_db_connect() -- 15:43:16.772 DEBUG [27866]: Database connection successful -- 15:43:16.772 INFO [27866]: _SERVER found -- 15:43:16.772 INFO [27866]: REMOTE_ADDR = 10.0.0.15 -- 15:43:16.772 INFO [27866]: SERVER_NAME = oameye.works.coregrade.com -- 15:43:16.772 INFO [27866]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=0vg8kaaqrb537gsmvn4l5pjdlqn4hbob -- 15:43:16.772 INFO [27866]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:43:16.772 INFO [27866]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:43:16.783 INFO [27866]: COREGRADE is stopping... -- 15:43:16.783 DEBUG [27866]: Closing database connection -- 15:43:16.783 SQL [27866]: pgsql_close() -- 15:43:31.905 INFO [27867]: COREGRADE is starting... -- 15:43:31.906 INFO [27867]: Version from config: 1.0 -- 15:43:31.906 DEBUG [27867]: Connecting to database... -- 15:43:31.906 DEBUG [27867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:43:31.906 SQL [27867]: pgsql_db_connect() -- 15:43:31.910 DEBUG [27867]: Database connection successful -- 15:43:31.910 INFO [27867]: _SERVER found -- 15:43:31.910 INFO [27867]: REMOTE_ADDR = 10.0.0.15 -- 15:43:31.910 INFO [27867]: SERVER_NAME = oameye.works.coregrade.com -- 15:43:31.910 INFO [27867]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=1tfd8lsm9v94uhm3tu2tnh28la6nr723 -- 15:43:31.910 INFO [27867]: QUERY_STRING = -- 15:43:31.910 INFO [27867]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:43:31.949 INFO [27867]: COREGRADE is stopping... -- 15:43:31.949 DEBUG [27867]: Closing database connection -- 15:43:31.949 SQL [27867]: pgsql_close() -- 15:43:32.194 INFO [27867]: COREGRADE is starting... -- 15:43:32.194 INFO [27867]: Version from config: 1.0 -- 15:43:32.194 DEBUG [27867]: Connecting to database... -- 15:43:32.194 DEBUG [27867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:43:32.194 SQL [27867]: pgsql_db_connect() -- 15:43:32.198 DEBUG [27867]: Database connection successful -- 15:43:32.198 INFO [27867]: _SERVER found -- 15:43:32.198 INFO [27867]: REMOTE_ADDR = 10.0.0.15 -- 15:43:32.198 INFO [27867]: SERVER_NAME = oameye.works.coregrade.com -- 15:43:32.198 INFO [27867]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=lk0bo6dbgp217otafr90r855d32ql113 -- 15:43:32.198 INFO [27867]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:43:32.198 INFO [27867]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:43:32.210 INFO [27867]: COREGRADE is stopping... -- 15:43:32.210 DEBUG [27867]: Closing database connection -- 15:43:32.210 SQL [27867]: pgsql_close() -- 15:43:34.388 INFO [27867]: COREGRADE is starting... -- 15:43:34.389 INFO [27867]: Version from config: 1.0 -- 15:43:34.389 DEBUG [27867]: Connecting to database... -- 15:43:34.389 DEBUG [27867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:43:34.389 SQL [27867]: pgsql_db_connect() -- 15:43:34.400 INFO [27865]: COREGRADE is starting... -- 15:43:34.400 INFO [27865]: Version from config: 1.0 -- 15:43:34.400 DEBUG [27865]: Connecting to database... -- 15:43:34.400 DEBUG [27865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:43:34.400 SQL [27865]: pgsql_db_connect() -- 15:43:34.393 DEBUG [27867]: Database connection successful -- 15:43:34.393 INFO [27867]: _SERVER found -- 15:43:34.393 INFO [27867]: REMOTE_ADDR = 10.0.0.15 -- 15:43:34.393 INFO [27867]: SERVER_NAME = oameye.works.coregrade.com -- 15:43:34.393 INFO [27867]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=lk0bo6dbgp217otafr90r855d32ql113; _gat_gtag_UA_54829827_2=1 -- 15:43:34.393 INFO [27867]: QUERY_STRING = /welcome/viewLogin -- 15:43:34.393 INFO [27867]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:43:34.423 INFO [27867]: COREGRADE is stopping... -- 15:43:34.423 DEBUG [27867]: Closing database connection -- 15:43:34.424 SQL [27867]: pgsql_close() -- 15:43:34.404 DEBUG [27865]: Database connection successful -- 15:43:34.404 INFO [27865]: _SERVER found -- 15:43:34.404 INFO [27865]: REMOTE_ADDR = 10.0.0.15 -- 15:43:34.404 INFO [27865]: SERVER_NAME = oameye.works.coregrade.com -- 15:43:34.404 INFO [27865]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=lk0bo6dbgp217otafr90r855d32ql113; _gat_gtag_UA_54829827_2=1 -- 15:43:34.404 INFO [27865]: QUERY_STRING = /auth -- 15:43:34.404 INFO [27865]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:43:34.440 INFO [27865]: COREGRADE is stopping... -- 15:43:34.440 DEBUG [27865]: Closing database connection -- 15:43:34.440 SQL [27865]: pgsql_close() -- 15:43:34.457 INFO [27867]: COREGRADE is starting... -- 15:43:34.457 INFO [27867]: Version from config: 1.0 -- 15:43:34.457 DEBUG [27867]: Connecting to database... -- 15:43:34.457 DEBUG [27867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:43:34.457 SQL [27867]: pgsql_db_connect() -- 15:43:34.461 DEBUG [27867]: Database connection successful -- 15:43:34.461 INFO [27867]: _SERVER found -- 15:43:34.461 INFO [27867]: REMOTE_ADDR = 10.0.0.15 -- 15:43:34.461 INFO [27867]: SERVER_NAME = oameye.works.coregrade.com -- 15:43:34.461 INFO [27867]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=lk0bo6dbgp217otafr90r855d32ql113; _gat_gtag_UA_54829827_2=1 -- 15:43:34.461 INFO [27867]: QUERY_STRING = /auth/index -- 15:43:34.461 INFO [27867]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:43:34.493 INFO [27867]: COREGRADE is stopping... -- 15:43:34.493 DEBUG [27867]: Closing database connection -- 15:43:34.493 SQL [27867]: pgsql_close() -- 15:43:36.231 INFO [27865]: COREGRADE is starting... -- 15:43:36.231 INFO [27865]: Version from config: 1.0 -- 15:43:36.231 DEBUG [27865]: Connecting to database... -- 15:43:36.231 DEBUG [27865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:43:36.231 SQL [27865]: pgsql_db_connect() -- 15:43:36.235 DEBUG [27865]: Database connection successful -- 15:43:36.235 INFO [27865]: _SERVER found -- 15:43:36.235 INFO [27865]: REMOTE_ADDR = 10.0.0.15 -- 15:43:36.235 INFO [27865]: SERVER_NAME = oameye.works.coregrade.com -- 15:43:36.235 INFO [27865]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=lk0bo6dbgp217otafr90r855d32ql113; _gat_gtag_UA_54829827_2=1 -- 15:43:36.235 INFO [27865]: QUERY_STRING = /auth/resetpass -- 15:43:36.235 INFO [27865]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:43:36.267 INFO [27865]: COREGRADE is stopping... -- 15:43:36.267 DEBUG [27865]: Closing database connection -- 15:43:36.267 SQL [27865]: pgsql_close() -- 15:43:36.927 INFO [27867]: COREGRADE is starting... -- 15:43:36.927 INFO [27867]: Version from config: 1.0 -- 15:43:36.927 DEBUG [27867]: Connecting to database... -- 15:43:36.928 DEBUG [27867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:43:36.928 SQL [27867]: pgsql_db_connect() -- 15:43:36.932 DEBUG [27867]: Database connection successful -- 15:43:36.932 INFO [27867]: _SERVER found -- 15:43:36.932 INFO [27867]: REMOTE_ADDR = 10.0.0.15 -- 15:43:36.932 INFO [27867]: SERVER_NAME = oameye.works.coregrade.com -- 15:43:36.932 INFO [27867]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=0vg8kaaqrb537gsmvn4l5pjdlqn4hbob; _gat_gtag_UA_54829827_2=1 -- 15:43:36.932 INFO [27867]: QUERY_STRING = /auth -- 15:43:36.932 INFO [27867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:43:36.963 INFO [27867]: COREGRADE is stopping... -- 15:43:36.963 DEBUG [27867]: Closing database connection -- 15:43:36.963 SQL [27867]: pgsql_close() -- 15:43:37.127 INFO [27867]: COREGRADE is starting... -- 15:43:37.127 INFO [27867]: Version from config: 1.0 -- 15:43:37.127 DEBUG [27867]: Connecting to database... -- 15:43:37.127 DEBUG [27867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:43:37.127 SQL [27867]: pgsql_db_connect() -- 15:43:37.131 DEBUG [27867]: Database connection successful -- 15:43:37.131 INFO [27867]: _SERVER found -- 15:43:37.131 INFO [27867]: REMOTE_ADDR = 10.0.0.15 -- 15:43:37.131 INFO [27867]: SERVER_NAME = oameye.works.coregrade.com -- 15:43:37.131 INFO [27867]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=0vg8kaaqrb537gsmvn4l5pjdlqn4hbob; _gat_gtag_UA_54829827_2=1 -- 15:43:37.131 INFO [27867]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:43:37.131 INFO [27867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:43:37.143 INFO [27867]: COREGRADE is stopping... -- 15:43:37.143 DEBUG [27867]: Closing database connection -- 15:43:37.143 SQL [27867]: pgsql_close() -- 15:43:39.022 INFO [27865]: COREGRADE is starting... -- 15:43:39.023 INFO [27865]: Version from config: 1.0 -- 15:43:39.023 DEBUG [27865]: Connecting to database... -- 15:43:39.023 DEBUG [27865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:43:39.023 SQL [27865]: pgsql_db_connect() -- 15:43:39.057 INFO [27865]: COREGRADE is starting... -- 15:43:39.058 INFO [27865]: Version from config: 1.0 -- 15:43:39.058 DEBUG [27865]: Connecting to database... -- 15:43:39.058 DEBUG [27865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:43:39.058 SQL [27865]: pgsql_db_connect() -- 15:43:39.062 DEBUG [27865]: Database connection successful -- 15:43:39.062 INFO [27865]: _SERVER found -- 15:43:39.062 INFO [27865]: REMOTE_ADDR = 10.0.0.15 -- 15:43:39.062 INFO [27865]: SERVER_NAME = oameye.works.coregrade.com -- 15:43:39.062 INFO [27865]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=lk0bo6dbgp217otafr90r855d32ql113; _gat_gtag_UA_54829827_2=1 -- 15:43:39.062 INFO [27865]: QUERY_STRING = -- 15:43:39.062 INFO [27865]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:43:39.062 INFO [27865]: SystemStatus()09-09-********~************ -- 15:43:39.062 INFO [27865]: long coregrade_api_main(CVars in, CVars &out) -- 15:43:39.062 INFO [27865]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 15:43:39.062 INFO [27865]: account calls -- 15:43:39.062 INFO [27865]: account_calls() -- 15:43:39.062 INFO [27865]: passwordReset() -- 15:43:39.062 INFO [27865]: startPassReset() -- 15:43:39.062 FLOG_MAX [27865]: REQ_STRING(username) -- 15:43:39.062 FLOG_MAX [27865]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:43:39.062 SQL [27865]: pgsql_query() -- 15:43:39.062 SQL [27865]: About to run query: -- 15:43:39.062 SQL [27865]: SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('ses66181+563@gmail.com') -- 15:43:39.064 SQL [27865]: Found rows: 1 -- 15:43:39.064 FLOG_MAX [27865]: load_db_record(SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('ses66181+563@gmail.com') ) num_cols=2 -- 15:43:39.064 SQL [27865]: pgsql_exec() -- 15:43:39.064 SQL [27865]: About to run query: -- 15:43:39.064 SQL [27865]: UPDATE password_reset SET status=7 WHERE status NOT IN (3,5) AND member_id=9 -- 15:43:39.066 SQL [27865]: PQcmdTuples: 2 -- 15:43:39.066 SQL [27865]: Affected rows: 2 -- 15:43:39.066 FLOG_MAX [27865]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:43:39.066 SQL [27865]: pgsql_query() -- 15:43:39.066 SQL [27865]: About to run query: -- 15:43:39.066 SQL [27865]: SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 15:43:39.062312-04') AS reset_key -- 15:43:39.067 SQL [27865]: Found rows: 1 -- 15:43:39.067 FLOG_MAX [27865]: load_db_record(SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 15:43:39.062312-04') AS reset_key) num_cols=2 -- 15:43:39.067 FLOG_MAX [27865]: insert_db_record() -- 15:43:39.067 SQL [27865]: pgsql_exec() -- 15:43:39.067 SQL [27865]: About to run query: -- 15:43:39.067 SQL [27865]: INSERT INTO password_reset (loc,member_id,reset_key,reset_pin,username) VALUES ('10.0.0.15','9','551623243c9ef5cf69aee947a72044e9','15645','ses66181+563@gmail.com') -- 15:43:39.068 SQL [27865]: PQcmdTuples: 1 -- 15:43:39.068 SQL [27865]: Affected rows: 1 -- 15:43:39.068 FLOG_MAX [27865]: SELECT currval('password_reset_id_seq') -- 15:43:39.068 SQL [27865]: pgsql_query() -- 15:43:39.068 SQL [27865]: About to run query: -- 15:43:39.068 SQL [27865]: SELECT currval('password_reset_id_seq') -- 15:43:39.068 SQL [27865]: Found rows: 1 -- 15:43:39.068 INFO [27865]: member_email_calls() -- 15:43:39.069 FLOG_MAX [27865]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:43:39.069 SQL [27865]: pgsql_query() -- 15:43:39.069 SQL [27865]: About to run query: -- 15:43:39.069 SQL [27865]: SELECT m.firstname,p.*,m.email AS member_email, created AS lost_added FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=10 -- 15:43:39.070 SQL [27865]: Found rows: 1 -- 15:43:39.070 FLOG_MAX [27865]: load_db_record(SELECT m.firstname,p.*,m.email AS member_email, created AS lost_added FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=10 ) num_cols=12 -- 15:43:39.070 FLOG_MAX [27865]: CGI Parsing: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 15:43:39.070 FLOG_MAX [27865]: Template '/home/oameye/coregrade/coregrade/email//start_losspass.mailfile' loaded: 1586 bytes -- 15:43:39.070 FLOG_MAX [27865]: Returning from FormFile() -- 15:43:39.070 FLOG_MAX [27865]: Template parsed: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 15:43:39.070 FLOG_MAX [27865]: ESMTP( 10.0.0.23, support@coregrade.com, ses66181+563@gmail.com ) -- 15:43:39.070 FLOG_MAX [27865]: Prepare body -- 15:43:39.070 FLOG_MAX [27865]: Locate & extract subject -- 15:43:39.070 FLOG_MAX [27865]: Found subject: CoreGrade - Password Reset for ses66181+563@gmail.com -- 15:43:39.070 FLOG_MAX [27865]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t ses66181+563@gmail.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'CoreGrade - Password Reset for ses66181+563@gmail.com ' -M ' - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
CoreGrade
-Dear Olu -
-We have initiated your password reset process as requested as by you on 2020-04-12 15:43:39.067304: -
- - - - -
Click the linkhttps://oameye.works.coregrade.com/auth/passreset?rlink=551623243c9ef5cf69aee947a72044e9
Link will expire
-
-
-If it was not at your request, then please contact CoreGrade support immediately. - -For further support go to our website at https://oameye.works.coregrade.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing CoreGrade. -CoreGrade Team. - -
-
- -
- - - - - - ' -- 15:43:39.127 FLOG_MAX [27865]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Password Reset for ses66181+563@gmail.com -From: CoreGrade Support -Date: Sun, 12 Apr 2020 15:43:39 -0400 -To: ses66181+563@gmail.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="kjj6+nVkqyATXk60" -Mime-version: 1.0 - - ---kjj6+nVkqyATXk60 -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
CoreGrade
-Dear Olu -
-We have initiated your password reset process as requested as by you on 2020-04-12 15:43:39.067304: -
- - - - -
Click the linkhttps://oameye.works.coregrade.com/auth/passreset?rlink=551623243c9ef5cf69aee947a72044e9
Link will expire
-
-
-If it was not at your request, then please contact CoreGrade support immediately. - -For further support go to our website at https://oameye.works.coregrade.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing CoreGrade. -CoreGrade Team. - -
-
- -
- - - - - - - - ---kjj6+nVkqyATXk60-- - -[C] . -[S] 250 2.0.0 Ok: queued as 1D68B210BA75 -[C] QUIT -[S] 221 2.0.0 Bye -jU -- 15:43:39.127 FLOG_MAX [27865]: - -END OF PIPE OUTPUT - - -- 15:43:39.127 FLOG_MAX [27865]: /ESMTP() -- 15:43:39.127 INFO [27865]: /member_email_calls() -- 15:43:39.127 INFO [27865]: RET: member_id=9 -- 15:43:39.127 INFO [27865]: RET: mode=100 -- 15:43:39.127 INFO [27865]: RET: reset_id=10 -- 15:43:39.127 INFO [27865]: RET: reset_key=YOU WILL GET THIS IF PIN IS CORRECT IN CONFIRM -- 15:43:39.127 INFO [27865]: RET: reset_seed=2020-04-12 15:43:39.062312-04 -- 15:43:39.127 INFO [27865]: RET: reset_seed==REMOVED -- 15:43:39.127 INFO [27865]: RET: result=YES I GET TO BACK END -- 15:43:39.129 INFO [27865]: COREGRADE is stopping... -- 15:43:39.129 DEBUG [27865]: Closing database connection -- 15:43:39.129 SQL [27865]: pgsql_close() -- 15:43:39.027 DEBUG [27865]: Database connection successful -- 15:43:39.027 INFO [27865]: _SERVER found -- 15:43:39.027 INFO [27865]: REMOTE_ADDR = 10.0.0.15 -- 15:43:39.027 INFO [27865]: SERVER_NAME = oameye.works.coregrade.com -- 15:43:39.027 INFO [27865]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=lk0bo6dbgp217otafr90r855d32ql113; _gat_gtag_UA_54829827_2=1 -- 15:43:39.027 INFO [27865]: QUERY_STRING = /auth/resetpass -- 15:43:39.027 INFO [27865]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:43:39.130 INFO [27865]: COREGRADE is stopping... -- 15:43:39.130 DEBUG [27865]: Closing database connection -- 15:43:39.130 SQL [27865]: pgsql_close() -- 15:44:12.933 INFO [27922]: COREGRADE is starting... -- 15:44:12.933 INFO [27922]: Version from config: 1.0 -- 15:44:12.933 DEBUG [27922]: Connecting to database... -- 15:44:12.933 DEBUG [27922]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:44:12.933 SQL [27922]: pgsql_db_connect() -- 15:44:12.972 INFO [27922]: COREGRADE is starting... -- 15:44:12.973 INFO [27922]: Version from config: 1.0 -- 15:44:12.973 DEBUG [27922]: Connecting to database... -- 15:44:12.973 DEBUG [27922]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:44:12.973 SQL [27922]: pgsql_db_connect() -- 15:44:12.977 DEBUG [27922]: Database connection successful -- 15:44:12.977 INFO [27922]: _SERVER found -- 15:44:12.977 INFO [27922]: REMOTE_ADDR = 10.0.0.15 -- 15:44:12.977 INFO [27922]: SERVER_NAME = oameye.works.coregrade.com -- 15:44:12.977 INFO [27922]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=0vg8kaaqrb537gsmvn4l5pjdlqn4hbob; _gat_gtag_UA_54829827_2=1 -- 15:44:12.977 INFO [27922]: QUERY_STRING = rlink=551623243c9ef5cf69aee947a72044e9 -- 15:44:12.977 INFO [27922]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:44:12.977 INFO [27922]: SystemStatus()09-09-********~************ -- 15:44:12.977 INFO [27922]: long coregrade_api_main(CVars in, CVars &out) -- 15:44:12.977 INFO [27922]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 15:44:12.977 INFO [27922]: account calls -- 15:44:12.977 INFO [27922]: account_calls() -- 15:44:12.977 INFO [27922]: passwordReset() -- 15:44:12.977 INFO [27922]: confirmPassReset() -- 15:44:12.977 FLOG_MAX [27922]: REQ_STRING(reset_key) -- 15:44:12.977 FLOG_MAX [27922]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:44:12.977 SQL [27922]: pgsql_query() -- 15:44:12.977 SQL [27922]: About to run query: -- 15:44:12.977 SQL [27922]: SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='551623243c9ef5cf69aee947a72044e9' -- 15:44:12.980 SQL [27922]: Found rows: 1 -- 15:44:12.980 FLOG_MAX [27922]: load_db_record(SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='551623243c9ef5cf69aee947a72044e9' ) num_cols=10 -- 15:44:12.980 SQL [27922]: pgsql_query() -- 15:44:12.980 SQL [27922]: About to run query: -- 15:44:12.980 SQL [27922]: UPDATE password_reset SET status = 1 WHERE id =10 -- 15:44:12.981 SQL [27922]: Found rows: 0 -- 15:44:12.981 SQL [27922]: Found rows: 0 -- 15:44:12.981 INFO [27922]: RET: created=2020-04-12 15:43:39.067304 -- 15:44:12.981 INFO [27922]: RET: expired= -- 15:44:12.981 INFO [27922]: RET: id=10 -- 15:44:12.981 INFO [27922]: RET: loc=10.0.0.15 -- 15:44:12.981 INFO [27922]: RET: member_id=9 -- 15:44:12.981 INFO [27922]: RET: reset_id=10 -- 15:44:12.981 INFO [27922]: RET: reset_key=551623243c9ef5cf69aee947a72044e9 -- 15:44:12.981 INFO [27922]: RET: reset_pin=15645 -- 15:44:12.981 INFO [27922]: RET: result=YES I GET TO BACK END -- 15:44:12.981 INFO [27922]: RET: status=0 -- 15:44:12.981 INFO [27922]: RET: username=ses66181+563@gmail.com -- 15:44:12.982 INFO [27922]: COREGRADE is stopping... -- 15:44:12.982 DEBUG [27922]: Closing database connection -- 15:44:12.982 SQL [27922]: pgsql_close() -- 15:44:12.938 DEBUG [27922]: Database connection successful -- 15:44:12.938 INFO [27922]: _SERVER found -- 15:44:12.938 INFO [27922]: REMOTE_ADDR = 10.0.0.15 -- 15:44:12.938 INFO [27922]: SERVER_NAME = oameye.works.coregrade.com -- 15:44:12.938 INFO [27922]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=0vg8kaaqrb537gsmvn4l5pjdlqn4hbob; _gat_gtag_UA_54829827_2=1 -- 15:44:12.938 INFO [27922]: QUERY_STRING = /auth/passreset -- 15:44:12.938 INFO [27922]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:44:12.983 INFO [27922]: COREGRADE is stopping... -- 15:44:12.983 DEBUG [27922]: Closing database connection -- 15:44:12.983 SQL [27922]: pgsql_close() -- 15:48:34.951 INFO [28002]: COREGRADE is starting... -- 15:48:34.951 INFO [28002]: Version from config: 1.0 -- 15:48:34.951 DEBUG [28002]: Connecting to database... -- 15:48:34.951 DEBUG [28002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:48:34.952 SQL [28002]: pgsql_db_connect() -- 15:48:34.956 DEBUG [28002]: Database connection successful -- 15:48:34.956 INFO [28002]: _SERVER found -- 15:48:34.956 INFO [28002]: REMOTE_ADDR = 10.0.0.15 -- 15:48:34.956 INFO [28002]: SERVER_NAME = oameye.works.coregrade.com -- 15:48:34.956 INFO [28002]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=lk0bo6dbgp217otafr90r855d32ql113 -- 15:48:34.956 INFO [28002]: QUERY_STRING = /auth -- 15:48:34.956 INFO [28002]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:48:34.993 INFO [28002]: COREGRADE is stopping... -- 15:48:34.993 DEBUG [28002]: Closing database connection -- 15:48:34.993 SQL [28002]: pgsql_close() -- 15:48:35.173 INFO [28002]: COREGRADE is starting... -- 15:48:35.173 INFO [28002]: Version from config: 1.0 -- 15:48:35.173 DEBUG [28002]: Connecting to database... -- 15:48:35.173 DEBUG [28002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:48:35.173 SQL [28002]: pgsql_db_connect() -- 15:48:35.178 DEBUG [28002]: Database connection successful -- 15:48:35.178 INFO [28002]: _SERVER found -- 15:48:35.178 INFO [28002]: REMOTE_ADDR = 10.0.0.15 -- 15:48:35.178 INFO [28002]: SERVER_NAME = oameye.works.coregrade.com -- 15:48:35.178 INFO [28002]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=494dvcn63er8rahh7sn2vogp1libqesp -- 15:48:35.178 INFO [28002]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:48:35.178 INFO [28002]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:48:35.190 INFO [28002]: COREGRADE is stopping... -- 15:48:35.190 DEBUG [28002]: Closing database connection -- 15:48:35.190 SQL [28002]: pgsql_close() -- 15:48:37.552 INFO [28002]: COREGRADE is starting... -- 15:48:37.552 INFO [28002]: Version from config: 1.0 -- 15:48:37.552 DEBUG [28002]: Connecting to database... -- 15:48:37.552 DEBUG [28002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:48:37.552 SQL [28002]: pgsql_db_connect() -- 15:48:37.556 DEBUG [28002]: Database connection successful -- 15:48:37.556 INFO [28002]: _SERVER found -- 15:48:37.556 INFO [28002]: REMOTE_ADDR = 10.0.0.15 -- 15:48:37.556 INFO [28002]: SERVER_NAME = oameye.works.coregrade.com -- 15:48:37.556 INFO [28002]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=494dvcn63er8rahh7sn2vogp1libqesp -- 15:48:37.556 INFO [28002]: QUERY_STRING = /auth/resetpass -- 15:48:37.556 INFO [28002]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:48:37.592 INFO [28002]: COREGRADE is stopping... -- 15:48:37.592 DEBUG [28002]: Closing database connection -- 15:48:37.592 SQL [28002]: pgsql_close() -- 15:48:40.911 INFO [28002]: COREGRADE is starting... -- 15:48:40.911 INFO [28002]: Version from config: 1.0 -- 15:48:40.911 DEBUG [28002]: Connecting to database... -- 15:48:40.911 DEBUG [28002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:48:40.911 SQL [28002]: pgsql_db_connect() -- 15:48:40.950 INFO [28002]: COREGRADE is starting... -- 15:48:40.950 INFO [28002]: Version from config: 1.0 -- 15:48:40.950 DEBUG [28002]: Connecting to database... -- 15:48:40.950 DEBUG [28002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:48:40.950 SQL [28002]: pgsql_db_connect() -- 15:48:40.955 DEBUG [28002]: Database connection successful -- 15:48:40.955 INFO [28002]: _SERVER found -- 15:48:40.955 INFO [28002]: REMOTE_ADDR = 10.0.0.15 -- 15:48:40.955 INFO [28002]: SERVER_NAME = oameye.works.coregrade.com -- 15:48:40.955 INFO [28002]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=494dvcn63er8rahh7sn2vogp1libqesp -- 15:48:40.955 INFO [28002]: QUERY_STRING = -- 15:48:40.955 INFO [28002]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:48:40.956 INFO [28002]: SystemStatus()09-09-********~************ -- 15:48:40.956 INFO [28002]: long coregrade_api_main(CVars in, CVars &out) -- 15:48:40.956 INFO [28002]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 15:48:40.956 INFO [28002]: account calls -- 15:48:40.956 INFO [28002]: account_calls() -- 15:48:40.956 INFO [28002]: passwordReset() -- 15:48:40.956 INFO [28002]: startPassReset() -- 15:48:40.956 FLOG_MAX [28002]: REQ_STRING(username) -- 15:48:40.956 FLOG_MAX [28002]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:48:40.956 SQL [28002]: pgsql_query() -- 15:48:40.956 SQL [28002]: About to run query: -- 15:48:40.956 SQL [28002]: SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('ses66181+563@gmail.com') -- 15:48:40.958 SQL [28002]: Found rows: 1 -- 15:48:40.958 FLOG_MAX [28002]: load_db_record(SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('ses66181+563@gmail.com') ) num_cols=2 -- 15:48:40.959 SQL [28002]: pgsql_exec() -- 15:48:40.959 SQL [28002]: About to run query: -- 15:48:40.959 SQL [28002]: UPDATE password_reset SET status=7 WHERE status NOT IN (3,5) AND member_id=9 -- 15:48:40.960 SQL [28002]: PQcmdTuples: 3 -- 15:48:40.960 SQL [28002]: Affected rows: 3 -- 15:48:40.960 FLOG_MAX [28002]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:48:40.960 SQL [28002]: pgsql_query() -- 15:48:40.960 SQL [28002]: About to run query: -- 15:48:40.960 SQL [28002]: SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 15:48:40.956403-04') AS reset_key -- 15:48:40.961 SQL [28002]: Found rows: 1 -- 15:48:40.961 FLOG_MAX [28002]: load_db_record(SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 15:48:40.956403-04') AS reset_key) num_cols=2 -- 15:48:40.961 FLOG_MAX [28002]: insert_db_record() -- 15:48:40.961 SQL [28002]: pgsql_exec() -- 15:48:40.961 SQL [28002]: About to run query: -- 15:48:40.961 SQL [28002]: INSERT INTO password_reset (loc,member_id,reset_key,reset_pin,username) VALUES ('10.0.0.15','9','6055fa6a7c1297b552c3b45bcb9df51b','19312','ses66181+563@gmail.com') -- 15:48:40.962 SQL [28002]: PQcmdTuples: 1 -- 15:48:40.962 SQL [28002]: Affected rows: 1 -- 15:48:40.962 FLOG_MAX [28002]: SELECT currval('password_reset_id_seq') -- 15:48:40.962 SQL [28002]: pgsql_query() -- 15:48:40.962 SQL [28002]: About to run query: -- 15:48:40.962 SQL [28002]: SELECT currval('password_reset_id_seq') -- 15:48:40.963 SQL [28002]: Found rows: 1 -- 15:48:40.963 INFO [28002]: member_email_calls() -- 15:48:40.963 FLOG_MAX [28002]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:48:40.963 SQL [28002]: pgsql_query() -- 15:48:40.963 SQL [28002]: About to run query: -- 15:48:40.963 SQL [28002]: SELECT m.firstname,p.*,m.email AS member_email, created AS lost_added FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=11 -- 15:48:40.964 SQL [28002]: Found rows: 1 -- 15:48:40.964 FLOG_MAX [28002]: load_db_record(SELECT m.firstname,p.*,m.email AS member_email, created AS lost_added FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=11 ) num_cols=12 -- 15:48:40.964 FLOG_MAX [28002]: CGI Parsing: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 15:48:40.964 FLOG_MAX [28002]: Template '/home/oameye/coregrade/coregrade/email//start_losspass.mailfile' loaded: 1586 bytes -- 15:48:40.964 FLOG_MAX [28002]: Returning from FormFile() -- 15:48:40.964 FLOG_MAX [28002]: Template parsed: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 15:48:40.964 FLOG_MAX [28002]: ESMTP( 10.0.0.23, support@coregrade.com, ses66181+563@gmail.com ) -- 15:48:40.964 FLOG_MAX [28002]: Prepare body -- 15:48:40.964 FLOG_MAX [28002]: Locate & extract subject -- 15:48:40.964 FLOG_MAX [28002]: Found subject: CoreGrade - Password Reset for ses66181+563@gmail.com -- 15:48:40.964 FLOG_MAX [28002]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t ses66181+563@gmail.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'CoreGrade - Password Reset for ses66181+563@gmail.com ' -M ' - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
CoreGrade
-Dear Olu -
-We have initiated your password reset process as requested as by you on 2020-04-12 15:48:40.961852: -
- - - - -
Click the linkhttps://oameye.works.coregrade.com/auth/passreset?rlink=6055fa6a7c1297b552c3b45bcb9df51b
Link will expire
-
-
-If it was not at your request, then please contact CoreGrade support immediately. - -For further support go to our website at https://oameye.works.coregrade.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing CoreGrade. -CoreGrade Team. - -
-
- -
- - - - - - ' -- 15:48:40.990 FLOG_MAX [28002]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Password Reset for ses66181+563@gmail.com -From: CoreGrade Support -Date: Sun, 12 Apr 2020 15:48:40 -0400 -To: ses66181+563@gmail.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="9VGgBhRauqiZwUCf" -Mime-version: 1.0 - - ---9VGgBhRauqiZwUCf -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
CoreGrade
-Dear Olu -
-We have initiated your password reset process as requested as by you on 2020-04-12 15:48:40.961852: -
- - - - -
Click the linkhttps://oameye.works.coregrade.com/auth/passreset?rlink=6055fa6a7c1297b552c3b45bcb9df51b
Link will expire
-
-
-If it was not at your request, then please contact CoreGrade support immediately. - -For further support go to our website at https://oameye.works.coregrade.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing CoreGrade. -CoreGrade Team. - -
-
- -
- - - - - - - - ---9VGgBhRauqiZwUCf-- - -[C] . -[S] 250 2.0.0 Ok: queued as F071E210BDEE -[C] QUIT -[S] 221 2.0.0 Bye - -- 15:48:40.990 FLOG_MAX [28002]: - -END OF PIPE OUTPUT - - -- 15:48:40.991 FLOG_MAX [28002]: /ESMTP() -- 15:48:40.991 INFO [28002]: /member_email_calls() -- 15:48:40.991 INFO [28002]: RET: member_id=9 -- 15:48:40.991 INFO [28002]: RET: mode=100 -- 15:48:40.991 INFO [28002]: RET: reset_id=11 -- 15:48:40.991 INFO [28002]: RET: reset_key=YOU WILL GET THIS IF PIN IS CORRECT IN CONFIRM -- 15:48:40.991 INFO [28002]: RET: reset_seed=2020-04-12 15:48:40.956403-04 -- 15:48:40.991 INFO [28002]: RET: reset_seed==REMOVED -- 15:48:40.991 INFO [28002]: RET: result=YES I GET TO BACK END -- 15:48:40.992 INFO [28002]: COREGRADE is stopping... -- 15:48:40.992 DEBUG [28002]: Closing database connection -- 15:48:40.992 SQL [28002]: pgsql_close() -- 15:48:40.916 DEBUG [28002]: Database connection successful -- 15:48:40.916 INFO [28002]: _SERVER found -- 15:48:40.916 INFO [28002]: REMOTE_ADDR = 10.0.0.15 -- 15:48:40.916 INFO [28002]: SERVER_NAME = oameye.works.coregrade.com -- 15:48:40.916 INFO [28002]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=494dvcn63er8rahh7sn2vogp1libqesp -- 15:48:40.916 INFO [28002]: QUERY_STRING = /auth/resetpass -- 15:48:40.916 INFO [28002]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:48:40.993 INFO [28002]: COREGRADE is stopping... -- 15:48:40.993 DEBUG [28002]: Closing database connection -- 15:48:40.993 SQL [28002]: pgsql_close() -- 15:48:51.808 INFO [27863]: COREGRADE is starting... -- 15:48:51.808 INFO [27863]: Version from config: 1.0 -- 15:48:51.808 DEBUG [27863]: Connecting to database... -- 15:48:51.808 DEBUG [27863]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:48:51.808 SQL [27863]: pgsql_db_connect() -- 15:48:51.844 INFO [27863]: COREGRADE is starting... -- 15:48:51.845 INFO [27863]: Version from config: 1.0 -- 15:48:51.845 DEBUG [27863]: Connecting to database... -- 15:48:51.845 DEBUG [27863]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:48:51.845 SQL [27863]: pgsql_db_connect() -- 15:48:51.849 DEBUG [27863]: Database connection successful -- 15:48:51.849 INFO [27863]: _SERVER found -- 15:48:51.849 INFO [27863]: REMOTE_ADDR = 10.0.0.15 -- 15:48:51.849 INFO [27863]: SERVER_NAME = oameye.works.coregrade.com -- 15:48:51.849 INFO [27863]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; _gid=GA1.2.120824816.1586655078; ci_session=ojdqa022t8kih6al8evdrpoftnnmq5ks -- 15:48:51.849 INFO [27863]: QUERY_STRING = rlink=6055fa6a7c1297b552c3b45bcb9df51b -- 15:48:51.849 INFO [27863]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:48:51.849 INFO [27863]: SystemStatus()09-09-********~************ -- 15:48:51.849 INFO [27863]: long coregrade_api_main(CVars in, CVars &out) -- 15:48:51.849 INFO [27863]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 15:48:51.849 INFO [27863]: account calls -- 15:48:51.849 INFO [27863]: account_calls() -- 15:48:51.849 INFO [27863]: passwordReset() -- 15:48:51.849 INFO [27863]: confirmPassReset() -- 15:48:51.849 FLOG_MAX [27863]: REQ_STRING(reset_key) -- 15:48:51.849 FLOG_MAX [27863]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:48:51.849 SQL [27863]: pgsql_query() -- 15:48:51.849 SQL [27863]: About to run query: -- 15:48:51.849 SQL [27863]: SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='6055fa6a7c1297b552c3b45bcb9df51b' -- 15:48:51.852 SQL [27863]: Found rows: 1 -- 15:48:51.852 FLOG_MAX [27863]: load_db_record(SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='6055fa6a7c1297b552c3b45bcb9df51b' ) num_cols=10 -- 15:48:51.852 SQL [27863]: pgsql_query() -- 15:48:51.852 SQL [27863]: About to run query: -- 15:48:51.852 SQL [27863]: UPDATE password_reset SET status = 1 WHERE id =11 -- 15:48:51.853 SQL [27863]: Found rows: 0 -- 15:48:51.853 SQL [27863]: Found rows: 0 -- 15:48:51.853 INFO [27863]: RET: created=2020-04-12 15:48:40.961852 -- 15:48:51.853 INFO [27863]: RET: expired= -- 15:48:51.853 INFO [27863]: RET: id=11 -- 15:48:51.853 INFO [27863]: RET: loc=10.0.0.15 -- 15:48:51.853 INFO [27863]: RET: member_id=9 -- 15:48:51.853 INFO [27863]: RET: reset_id=11 -- 15:48:51.853 INFO [27863]: RET: reset_key=6055fa6a7c1297b552c3b45bcb9df51b -- 15:48:51.853 INFO [27863]: RET: reset_pin=19312 -- 15:48:51.853 INFO [27863]: RET: result=YES I GET TO BACK END -- 15:48:51.853 INFO [27863]: RET: status=0 -- 15:48:51.853 INFO [27863]: RET: username=ses66181+563@gmail.com -- 15:48:51.855 INFO [27863]: COREGRADE is stopping... -- 15:48:51.855 DEBUG [27863]: Closing database connection -- 15:48:51.855 SQL [27863]: pgsql_close() -- 15:48:51.813 DEBUG [27863]: Database connection successful -- 15:48:51.813 INFO [27863]: _SERVER found -- 15:48:51.813 INFO [27863]: REMOTE_ADDR = 10.0.0.15 -- 15:48:51.813 INFO [27863]: SERVER_NAME = oameye.works.coregrade.com -- 15:48:51.813 INFO [27863]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; _gid=GA1.2.120824816.1586655078; ci_session=ojdqa022t8kih6al8evdrpoftnnmq5ks -- 15:48:51.813 INFO [27863]: QUERY_STRING = /auth/passreset -- 15:48:51.813 INFO [27863]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:48:51.855 INFO [27863]: COREGRADE is stopping... -- 15:48:51.855 DEBUG [27863]: Closing database connection -- 15:48:51.855 SQL [27863]: pgsql_close() -- 15:48:51.983 INFO [27863]: COREGRADE is starting... -- 15:48:51.983 INFO [27863]: Version from config: 1.0 -- 15:48:51.983 DEBUG [27863]: Connecting to database... -- 15:48:51.983 DEBUG [27863]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:48:51.983 SQL [27863]: pgsql_db_connect() -- 15:48:51.987 DEBUG [27863]: Database connection successful -- 15:48:51.988 INFO [27863]: _SERVER found -- 15:48:51.988 INFO [27863]: REMOTE_ADDR = 10.0.0.15 -- 15:48:51.988 INFO [27863]: SERVER_NAME = oameye.works.coregrade.com -- 15:48:51.988 INFO [27863]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; _gid=GA1.2.120824816.1586655078; ci_session=b10gnuikofrd5j4jlfmfas2gcr7sqmck -- 15:48:51.988 INFO [27863]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:48:51.988 INFO [27863]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:48:51.999 INFO [27863]: COREGRADE is stopping... -- 15:48:51.999 DEBUG [27863]: Closing database connection -- 15:48:51.999 SQL [27863]: pgsql_close() -- 15:49:12.948 INFO [27864]: COREGRADE is starting... -- 15:49:12.949 INFO [27864]: Version from config: 1.0 -- 15:49:12.949 DEBUG [27864]: Connecting to database... -- 15:49:12.949 DEBUG [27864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:49:12.949 SQL [27864]: pgsql_db_connect() -- 15:49:12.984 INFO [27864]: COREGRADE is starting... -- 15:49:12.984 INFO [27864]: Version from config: 1.0 -- 15:49:12.984 DEBUG [27864]: Connecting to database... -- 15:49:12.984 DEBUG [27864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:49:12.984 SQL [27864]: pgsql_db_connect() -- 15:49:12.988 DEBUG [27864]: Database connection successful -- 15:49:12.988 INFO [27864]: _SERVER found -- 15:49:12.988 INFO [27864]: REMOTE_ADDR = 10.0.0.15 -- 15:49:12.988 INFO [27864]: SERVER_NAME = oameye.works.coregrade.com -- 15:49:12.988 INFO [27864]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; _gid=GA1.2.120824816.1586655078; ci_session=b10gnuikofrd5j4jlfmfas2gcr7sqmck -- 15:49:12.988 INFO [27864]: QUERY_STRING = rlink=6055fa6a7c1297b552c3b45bcb9df51b -- 15:49:12.988 INFO [27864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:49:12.989 INFO [27864]: SystemStatus()09-09-********~************ -- 15:49:12.989 INFO [27864]: long coregrade_api_main(CVars in, CVars &out) -- 15:49:12.989 INFO [27864]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 15:49:12.989 INFO [27864]: account calls -- 15:49:12.989 INFO [27864]: account_calls() -- 15:49:12.989 INFO [27864]: passwordReset() -- 15:49:12.989 INFO [27864]: confirmPassReset() -- 15:49:12.989 FLOG_MAX [27864]: REQ_STRING(reset_key) -- 15:49:12.989 FLOG_MAX [27864]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:49:12.989 SQL [27864]: pgsql_query() -- 15:49:12.989 SQL [27864]: About to run query: -- 15:49:12.989 SQL [27864]: SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='6055fa6a7c1297b552c3b45bcb9df51b' -- 15:49:12.991 SQL [27864]: Found rows: 0 -- 15:49:12.991 SQL [27864]: Found rows: 0 -- 15:49:12.991 INFO [27864]: RET: id= -- 15:49:12.991 INFO [27864]: RET: result=YES I GET TO BACK END -- 15:49:12.991 INFO [27864]: RET: status_advice=Contact support or Start all over -- 15:49:12.991 INFO [27864]: RET: status_message=Invalid PIN or disabled account -- 15:49:12.992 INFO [27864]: COREGRADE is stopping... -- 15:49:12.992 DEBUG [27864]: Closing database connection -- 15:49:12.993 SQL [27864]: pgsql_close() -- 15:49:12.953 DEBUG [27864]: Database connection successful -- 15:49:12.953 INFO [27864]: _SERVER found -- 15:49:12.953 INFO [27864]: REMOTE_ADDR = 10.0.0.15 -- 15:49:12.953 INFO [27864]: SERVER_NAME = oameye.works.coregrade.com -- 15:49:12.953 INFO [27864]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; _gid=GA1.2.120824816.1586655078; ci_session=b10gnuikofrd5j4jlfmfas2gcr7sqmck -- 15:49:12.953 INFO [27864]: QUERY_STRING = /auth/passreset -- 15:49:12.953 INFO [27864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:49:12.993 INFO [27864]: COREGRADE is stopping... -- 15:49:12.993 DEBUG [27864]: Closing database connection -- 15:49:12.993 SQL [27864]: pgsql_close() -- 15:49:13.144 INFO [27864]: COREGRADE is starting... -- 15:49:13.144 INFO [27864]: Version from config: 1.0 -- 15:49:13.144 DEBUG [27864]: Connecting to database... -- 15:49:13.144 DEBUG [27864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:49:13.144 SQL [27864]: pgsql_db_connect() -- 15:49:13.148 DEBUG [27864]: Database connection successful -- 15:49:13.148 INFO [27864]: _SERVER found -- 15:49:13.148 INFO [27864]: REMOTE_ADDR = 10.0.0.15 -- 15:49:13.148 INFO [27864]: SERVER_NAME = oameye.works.coregrade.com -- 15:49:13.148 INFO [27864]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; _gid=GA1.2.120824816.1586655078; ci_session=b10gnuikofrd5j4jlfmfas2gcr7sqmck -- 15:49:13.148 INFO [27864]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:49:13.148 INFO [27864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:49:13.159 INFO [27864]: COREGRADE is stopping... -- 15:49:13.160 DEBUG [27864]: Closing database connection -- 15:49:13.160 SQL [27864]: pgsql_close() -- 15:50:26.512 INFO [27866]: COREGRADE is starting... -- 15:50:26.513 INFO [27866]: Version from config: 1.0 -- 15:50:26.513 DEBUG [27866]: Connecting to database... -- 15:50:26.513 DEBUG [27866]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:26.513 SQL [27866]: pgsql_db_connect() -- 15:50:26.517 DEBUG [27866]: Database connection successful -- 15:50:26.517 INFO [27866]: _SERVER found -- 15:50:26.517 INFO [27866]: REMOTE_ADDR = 10.0.0.15 -- 15:50:26.517 INFO [27866]: SERVER_NAME = oameye.works.coregrade.com -- 15:50:26.517 INFO [27866]: QUERY_STRING = /images/logo.png -- 15:50:26.517 INFO [27866]: HTTP_X_FORWARDED_FOR = 66.249.88.26 -- 15:50:26.529 INFO [27866]: COREGRADE is stopping... -- 15:50:26.529 DEBUG [27866]: Closing database connection -- 15:50:26.529 SQL [27866]: pgsql_close() -- 15:50:42.268 INFO [27867]: COREGRADE is starting... -- 15:50:42.268 INFO [27867]: Version from config: 1.0 -- 15:50:42.268 DEBUG [27867]: Connecting to database... -- 15:50:42.268 DEBUG [27867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:42.268 SQL [27867]: pgsql_db_connect() -- 15:50:42.272 DEBUG [27867]: Database connection successful -- 15:50:42.272 INFO [27867]: _SERVER found -- 15:50:42.272 INFO [27867]: REMOTE_ADDR = 10.0.0.15 -- 15:50:42.272 INFO [27867]: SERVER_NAME = oameye.works.coregrade.com -- 15:50:42.272 INFO [27867]: QUERY_STRING = /images/logo.png -- 15:50:42.272 INFO [27867]: HTTP_X_FORWARDED_FOR = 66.249.88.30 -- 15:50:42.284 INFO [27867]: COREGRADE is stopping... -- 15:50:42.284 DEBUG [27867]: Closing database connection -- 15:50:42.284 SQL [27867]: pgsql_close() -- 15:51:05.432 INFO [27865]: COREGRADE is starting... -- 15:51:05.433 INFO [27865]: Version from config: 1.0 -- 15:51:05.433 DEBUG [27865]: Connecting to database... -- 15:51:05.433 DEBUG [27865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:51:05.433 SQL [27865]: pgsql_db_connect() -- 15:51:05.437 DEBUG [27865]: Database connection successful -- 15:51:05.437 INFO [27865]: _SERVER found -- 15:51:05.437 INFO [27865]: REMOTE_ADDR = 10.0.0.15 -- 15:51:05.437 INFO [27865]: SERVER_NAME = oameye.works.coregrade.com -- 15:51:05.437 INFO [27865]: QUERY_STRING = /images/logo.png -- 15:51:05.437 INFO [27865]: HTTP_X_FORWARDED_FOR = 66.249.88.30 -- 15:51:05.449 INFO [27865]: COREGRADE is stopping... -- 15:51:05.449 DEBUG [27865]: Closing database connection -- 15:51:05.449 SQL [27865]: pgsql_close() -- 15:51:09.202 INFO [27865]: COREGRADE is starting... -- 15:51:09.202 INFO [27865]: Version from config: 1.0 -- 15:51:09.202 DEBUG [27865]: Connecting to database... -- 15:51:09.202 DEBUG [27865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:51:09.202 SQL [27865]: pgsql_db_connect() -- 15:51:09.206 DEBUG [27865]: Database connection successful -- 15:51:09.206 INFO [27865]: _SERVER found -- 15:51:09.206 INFO [27865]: REMOTE_ADDR = 10.0.0.15 -- 15:51:09.206 INFO [27865]: SERVER_NAME = oameye.works.coregrade.com -- 15:51:09.206 INFO [27865]: QUERY_STRING = /images/logo.png -- 15:51:09.206 INFO [27865]: HTTP_X_FORWARDED_FOR = 66.249.88.28 -- 15:51:09.218 INFO [27865]: COREGRADE is stopping... -- 15:51:09.218 DEBUG [27865]: Closing database connection -- 15:51:09.218 SQL [27865]: pgsql_close() -- 15:51:19.804 INFO [27922]: COREGRADE is starting... -- 15:51:19.805 INFO [27922]: Version from config: 1.0 -- 15:51:19.805 DEBUG [27922]: Connecting to database... -- 15:51:19.805 DEBUG [27922]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:51:19.805 SQL [27922]: pgsql_db_connect() -- 15:51:19.840 INFO [27922]: COREGRADE is starting... -- 15:51:19.841 INFO [27922]: Version from config: 1.0 -- 15:51:19.841 DEBUG [27922]: Connecting to database... -- 15:51:19.841 DEBUG [27922]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:51:19.841 SQL [27922]: pgsql_db_connect() -- 15:51:19.845 DEBUG [27922]: Database connection successful -- 15:51:19.845 INFO [27922]: _SERVER found -- 15:51:19.845 INFO [27922]: REMOTE_ADDR = 10.0.0.15 -- 15:51:19.845 INFO [27922]: SERVER_NAME = oameye.works.coregrade.com -- 15:51:19.845 INFO [27922]: HTTP_COOKIE = _ga=GA1.2.741559843.1578756903 -- 15:51:19.845 INFO [27922]: QUERY_STRING = rlink=56d79aa39a8ebb0f7b6be2325cc7b5f9 -- 15:51:19.845 INFO [27922]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:51:19.845 INFO [27922]: SystemStatus()09-09-********~************ -- 15:51:19.845 INFO [27922]: long coregrade_api_main(CVars in, CVars &out) -- 15:51:19.845 INFO [27922]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 15:51:19.845 INFO [27922]: account calls -- 15:51:19.845 INFO [27922]: account_calls() -- 15:51:19.845 INFO [27922]: passwordReset() -- 15:51:19.845 INFO [27922]: confirmPassReset() -- 15:51:19.845 FLOG_MAX [27922]: REQ_STRING(reset_key) -- 15:51:19.845 FLOG_MAX [27922]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:51:19.845 SQL [27922]: pgsql_query() -- 15:51:19.845 SQL [27922]: About to run query: -- 15:51:19.845 SQL [27922]: SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='56d79aa39a8ebb0f7b6be2325cc7b5f9' -- 15:51:19.847 SQL [27922]: Found rows: 0 -- 15:51:19.847 SQL [27922]: Found rows: 0 -- 15:51:19.847 INFO [27922]: RET: id= -- 15:51:19.847 INFO [27922]: RET: result=YES I GET TO BACK END -- 15:51:19.847 INFO [27922]: RET: status_advice=Contact support or Start all over -- 15:51:19.847 INFO [27922]: RET: status_message=Invalid PIN or disabled account -- 15:51:19.849 INFO [27922]: COREGRADE is stopping... -- 15:51:19.849 DEBUG [27922]: Closing database connection -- 15:51:19.849 SQL [27922]: pgsql_close() -- 15:51:19.809 DEBUG [27922]: Database connection successful -- 15:51:19.809 INFO [27922]: _SERVER found -- 15:51:19.809 INFO [27922]: REMOTE_ADDR = 10.0.0.15 -- 15:51:19.809 INFO [27922]: SERVER_NAME = oameye.works.coregrade.com -- 15:51:19.809 INFO [27922]: HTTP_COOKIE = _ga=GA1.2.741559843.1578756903 -- 15:51:19.809 INFO [27922]: QUERY_STRING = /auth/passreset -- 15:51:19.809 INFO [27922]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:51:19.849 INFO [27922]: COREGRADE is stopping... -- 15:51:19.849 DEBUG [27922]: Closing database connection -- 15:51:19.849 SQL [27922]: pgsql_close() -- 15:51:22.639 INFO [28002]: COREGRADE is starting... -- 15:51:22.639 INFO [28002]: Version from config: 1.0 -- 15:51:22.639 DEBUG [28002]: Connecting to database... -- 15:51:22.639 DEBUG [28002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:51:22.639 SQL [28002]: pgsql_db_connect() -- 15:51:22.676 INFO [28002]: COREGRADE is starting... -- 15:51:22.676 INFO [28002]: Version from config: 1.0 -- 15:51:22.676 DEBUG [28002]: Connecting to database... -- 15:51:22.676 DEBUG [28002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:51:22.676 SQL [28002]: pgsql_db_connect() -- 15:51:22.680 DEBUG [28002]: Database connection successful -- 15:51:22.680 INFO [28002]: _SERVER found -- 15:51:22.680 INFO [28002]: REMOTE_ADDR = 10.0.0.15 -- 15:51:22.680 INFO [28002]: SERVER_NAME = oameye.works.coregrade.com -- 15:51:22.680 INFO [28002]: QUERY_STRING = rlink=56d79aa39a8ebb0f7b6be2325cc7b5f9 -- 15:51:22.680 INFO [28002]: HTTP_X_FORWARDED_FOR = 66.102.8.116 -- 15:51:22.680 INFO [28002]: SystemStatus()09-09-********~************ -- 15:51:22.680 INFO [28002]: long coregrade_api_main(CVars in, CVars &out) -- 15:51:22.680 INFO [28002]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 15:51:22.680 INFO [28002]: account calls -- 15:51:22.680 INFO [28002]: account_calls() -- 15:51:22.680 INFO [28002]: passwordReset() -- 15:51:22.680 INFO [28002]: confirmPassReset() -- 15:51:22.680 FLOG_MAX [28002]: REQ_STRING(reset_key) -- 15:51:22.680 FLOG_MAX [28002]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:51:22.680 SQL [28002]: pgsql_query() -- 15:51:22.681 SQL [28002]: About to run query: -- 15:51:22.681 SQL [28002]: SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='56d79aa39a8ebb0f7b6be2325cc7b5f9' -- 15:51:22.683 SQL [28002]: Found rows: 0 -- 15:51:22.683 SQL [28002]: Found rows: 0 -- 15:51:22.683 INFO [28002]: RET: id= -- 15:51:22.683 INFO [28002]: RET: result=YES I GET TO BACK END -- 15:51:22.683 INFO [28002]: RET: status_advice=Contact support or Start all over -- 15:51:22.683 INFO [28002]: RET: status_message=Invalid PIN or disabled account -- 15:51:22.684 INFO [28002]: COREGRADE is stopping... -- 15:51:22.685 DEBUG [28002]: Closing database connection -- 15:51:22.685 SQL [28002]: pgsql_close() -- 15:51:22.643 DEBUG [28002]: Database connection successful -- 15:51:22.643 INFO [28002]: _SERVER found -- 15:51:22.643 INFO [28002]: REMOTE_ADDR = 10.0.0.15 -- 15:51:22.643 INFO [28002]: SERVER_NAME = oameye.works.coregrade.com -- 15:51:22.643 INFO [28002]: QUERY_STRING = /auth/passreset -- 15:51:22.643 INFO [28002]: HTTP_X_FORWARDED_FOR = 66.102.8.116 -- 15:51:22.685 INFO [28002]: COREGRADE is stopping... -- 15:51:22.685 DEBUG [28002]: Closing database connection -- 15:51:22.685 SQL [28002]: pgsql_close() -- 15:51:23.214 INFO [27864]: COREGRADE is starting... -- 15:51:23.215 INFO [27864]: Version from config: 1.0 -- 15:51:23.215 DEBUG [27864]: Connecting to database... -- 15:51:23.215 DEBUG [27864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:51:23.215 SQL [27864]: pgsql_db_connect() -- 15:51:23.219 DEBUG [27864]: Database connection successful -- 15:51:23.219 INFO [27864]: _SERVER found -- 15:51:23.219 INFO [27864]: REMOTE_ADDR = 10.0.0.15 -- 15:51:23.219 INFO [27864]: SERVER_NAME = oameye.works.coregrade.com -- 15:51:23.219 INFO [27864]: HTTP_COOKIE = ci_session=kimq6t4kggfu50lfs87r06bc0600hvcp -- 15:51:23.219 INFO [27864]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:51:23.219 INFO [27864]: HTTP_X_FORWARDED_FOR = 66.102.8.120 -- 15:51:23.231 INFO [27864]: COREGRADE is stopping... -- 15:51:23.231 DEBUG [27864]: Closing database connection -- 15:51:23.231 SQL [27864]: pgsql_close() -- 15:52:54.953 INFO [28168]: COREGRADE is starting... -- 15:52:54.954 INFO [28168]: Version from config: 1.0 -- 15:52:54.954 DEBUG [28168]: Connecting to database... -- 15:52:54.954 DEBUG [28168]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:52:54.954 SQL [28168]: pgsql_db_connect() -- 15:52:54.958 DEBUG [28168]: Database connection successful -- 15:52:54.958 INFO [28168]: _SERVER found -- 15:52:54.958 INFO [28168]: REMOTE_ADDR = 10.0.0.15 -- 15:52:54.958 INFO [28168]: SERVER_NAME = oameye.works.coregrade.com -- 15:52:54.958 INFO [28168]: QUERY_STRING = /images/logo.png -- 15:52:54.958 INFO [28168]: HTTP_X_FORWARDED_FOR = 66.249.88.30 -- 15:52:54.972 INFO [28168]: COREGRADE is stopping... -- 15:52:54.973 DEBUG [28168]: Closing database connection -- 15:52:54.973 SQL [28168]: pgsql_close() -- 15:53:28.473 INFO [27922]: COREGRADE is starting... -- 15:53:28.473 INFO [27922]: Version from config: 1.0 -- 15:53:28.473 DEBUG [27922]: Connecting to database... -- 15:53:28.473 DEBUG [27922]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:53:28.473 SQL [27922]: pgsql_db_connect() -- 15:53:28.477 DEBUG [27922]: Database connection successful -- 15:53:28.477 INFO [27922]: _SERVER found -- 15:53:28.477 INFO [27922]: REMOTE_ADDR = 10.0.0.15 -- 15:53:28.477 INFO [27922]: SERVER_NAME = oameye.works.coregrade.com -- 15:53:28.477 INFO [27922]: QUERY_STRING = /favicon.ico -- 15:53:28.477 INFO [27922]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:53:28.489 INFO [27922]: COREGRADE is stopping... -- 15:53:28.489 DEBUG [27922]: Closing database connection -- 15:53:28.489 SQL [27922]: pgsql_close() -- 15:57:40.684 INFO [27867]: COREGRADE is starting... -- 15:57:40.685 INFO [27867]: Version from config: 1.0 -- 15:57:40.685 DEBUG [27867]: Connecting to database... -- 15:57:40.685 DEBUG [27867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:40.685 SQL [27867]: pgsql_db_connect() -- 15:57:40.689 DEBUG [27867]: Database connection successful -- 15:57:40.689 INFO [27867]: _SERVER found -- 15:57:40.689 INFO [27867]: REMOTE_ADDR = 10.0.0.15 -- 15:57:40.689 INFO [27867]: SERVER_NAME = oameye.works.coregrade.com -- 15:57:40.689 INFO [27867]: QUERY_STRING = /images/logo.png -- 15:57:40.689 INFO [27867]: HTTP_X_FORWARDED_FOR = 66.249.88.28 -- 15:57:40.702 INFO [27867]: COREGRADE is stopping... -- 15:57:40.702 DEBUG [27867]: Closing database connection -- 15:57:40.702 SQL [27867]: pgsql_close() -- 15:57:44.639 INFO [27867]: COREGRADE is starting... -- 15:57:44.639 INFO [27867]: Version from config: 1.0 -- 15:57:44.639 DEBUG [27867]: Connecting to database... -- 15:57:44.639 DEBUG [27867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:44.639 SQL [27867]: pgsql_db_connect() -- 15:57:44.644 DEBUG [27867]: Database connection successful -- 15:57:44.644 INFO [27867]: _SERVER found -- 15:57:44.644 INFO [27867]: REMOTE_ADDR = 10.0.0.15 -- 15:57:44.644 INFO [27867]: SERVER_NAME = oameye.works.coregrade.com -- 15:57:44.644 INFO [27867]: QUERY_STRING = /images/logo.png -- 15:57:44.644 INFO [27867]: HTTP_X_FORWARDED_FOR = 66.249.88.28 -- 15:57:44.655 INFO [27867]: COREGRADE is stopping... -- 15:57:44.655 DEBUG [27867]: Closing database connection -- 15:57:44.655 SQL [27867]: pgsql_close() -- 15:57:44.841 INFO [27867]: COREGRADE is starting... -- 15:57:44.842 INFO [27867]: Version from config: 1.0 -- 15:57:44.842 DEBUG [27867]: Connecting to database... -- 15:57:44.842 DEBUG [27867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:44.842 SQL [27867]: pgsql_db_connect() -- 15:57:44.846 DEBUG [27867]: Database connection successful -- 15:57:44.846 INFO [27867]: _SERVER found -- 15:57:44.846 INFO [27867]: REMOTE_ADDR = 10.0.0.15 -- 15:57:44.846 INFO [27867]: SERVER_NAME = oameye.works.coregrade.com -- 15:57:44.846 INFO [27867]: QUERY_STRING = /images/logo.png -- 15:57:44.846 INFO [27867]: HTTP_X_FORWARDED_FOR = 66.249.88.28 -- 15:57:44.857 INFO [27867]: COREGRADE is stopping... -- 15:57:44.857 DEBUG [27867]: Closing database connection -- 15:57:44.857 SQL [27867]: pgsql_close() -- 15:58:05.534 INFO [27865]: COREGRADE is starting... -- 15:58:05.534 INFO [27865]: Version from config: 1.0 -- 15:58:05.534 DEBUG [27865]: Connecting to database... -- 15:58:05.534 DEBUG [27865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:05.534 SQL [27865]: pgsql_db_connect() -- 15:58:05.538 DEBUG [27865]: Database connection successful -- 15:58:05.538 INFO [27865]: _SERVER found -- 15:58:05.538 INFO [27865]: REMOTE_ADDR = 10.0.0.15 -- 15:58:05.538 INFO [27865]: SERVER_NAME = oameye.works.coregrade.com -- 15:58:05.538 INFO [27865]: QUERY_STRING = /images/logo.png -- 15:58:05.538 INFO [27865]: HTTP_X_FORWARDED_FOR = 66.249.88.30 -- 15:58:05.550 INFO [27865]: COREGRADE is stopping... -- 15:58:05.550 DEBUG [27865]: Closing database connection -- 15:58:05.550 SQL [27865]: pgsql_close() -- 15:58:08.445 INFO [27863]: COREGRADE is starting... -- 15:58:08.446 INFO [27863]: Version from config: 1.0 -- 15:58:08.446 DEBUG [27863]: Connecting to database... -- 15:58:08.446 DEBUG [27863]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:08.446 SQL [27863]: pgsql_db_connect() -- 15:58:08.450 DEBUG [27863]: Database connection successful -- 15:58:08.450 INFO [27863]: _SERVER found -- 15:58:08.450 INFO [27863]: REMOTE_ADDR = 10.0.0.15 -- 15:58:08.450 INFO [27863]: SERVER_NAME = oameye.works.coregrade.com -- 15:58:08.450 INFO [27863]: QUERY_STRING = /images/logo.png -- 15:58:08.450 INFO [27863]: HTTP_X_FORWARDED_FOR = 66.249.88.26 -- 15:58:08.462 INFO [27863]: COREGRADE is stopping... -- 15:58:08.462 DEBUG [27863]: Closing database connection -- 15:58:08.462 SQL [27863]: pgsql_close() -- 16:02:21.636 INFO [27866]: COREGRADE is starting... -- 16:02:21.636 INFO [27866]: Version from config: 1.0 -- 16:02:21.636 DEBUG [27866]: Connecting to database... -- 16:02:21.636 DEBUG [27866]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:02:21.636 SQL [27866]: pgsql_db_connect() -- 16:02:21.640 DEBUG [27866]: Database connection successful -- 16:02:21.640 INFO [27866]: _SERVER found -- 16:02:21.640 INFO [27866]: REMOTE_ADDR = 10.0.0.15 -- 16:02:21.640 INFO [27866]: SERVER_NAME = oameye.works.coregrade.com -- 16:02:21.640 INFO [27866]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=494dvcn63er8rahh7sn2vogp1libqesp -- 16:02:21.640 INFO [27866]: QUERY_STRING = -- 16:02:21.640 INFO [27866]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:02:21.673 INFO [27866]: COREGRADE is stopping... -- 16:02:21.673 DEBUG [27866]: Closing database connection -- 16:02:21.673 SQL [27866]: pgsql_close() -- 16:02:21.864 INFO [27866]: COREGRADE is starting... -- 16:02:21.864 INFO [27866]: Version from config: 1.0 -- 16:02:21.864 DEBUG [27866]: Connecting to database... -- 16:02:21.864 DEBUG [27866]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:02:21.864 SQL [27866]: pgsql_db_connect() -- 16:02:21.868 DEBUG [27866]: Database connection successful -- 16:02:21.868 INFO [27866]: _SERVER found -- 16:02:21.868 INFO [27866]: REMOTE_ADDR = 10.0.0.15 -- 16:02:21.868 INFO [27866]: SERVER_NAME = oameye.works.coregrade.com -- 16:02:21.868 INFO [27866]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=d4jfsq5ucda833nhrf1hqvqk9f1ku5o5 -- 16:02:21.868 INFO [27866]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:02:21.868 INFO [27866]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:02:21.880 INFO [27866]: COREGRADE is stopping... -- 16:02:21.880 DEBUG [27866]: Closing database connection -- 16:02:21.880 SQL [27866]: pgsql_close() -- 16:02:24.768 INFO [27866]: COREGRADE is starting... -- 16:02:24.768 INFO [27866]: Version from config: 1.0 -- 16:02:24.768 DEBUG [27866]: Connecting to database... -- 16:02:24.768 DEBUG [27866]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:02:24.768 SQL [27866]: pgsql_db_connect() -- 16:02:24.774 INFO [27864]: COREGRADE is starting... -- 16:02:24.774 INFO [27864]: Version from config: 1.0 -- 16:02:24.775 DEBUG [27864]: Connecting to database... -- 16:02:24.775 DEBUG [27864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:02:24.775 SQL [27864]: pgsql_db_connect() -- 16:02:24.779 DEBUG [27864]: Database connection successful -- 16:02:24.779 INFO [27864]: _SERVER found -- 16:02:24.779 INFO [27864]: REMOTE_ADDR = 10.0.0.15 -- 16:02:24.779 INFO [27864]: SERVER_NAME = oameye.works.coregrade.com -- 16:02:24.779 INFO [27864]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=d4jfsq5ucda833nhrf1hqvqk9f1ku5o5; _gat_gtag_UA_54829827_2=1 -- 16:02:24.779 INFO [27864]: QUERY_STRING = /auth -- 16:02:24.779 INFO [27864]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:02:24.790 INFO [27864]: COREGRADE is stopping... -- 16:02:24.790 DEBUG [27864]: Closing database connection -- 16:02:24.791 SQL [27864]: pgsql_close() -- 16:02:24.772 DEBUG [27866]: Database connection successful -- 16:02:24.772 INFO [27866]: _SERVER found -- 16:02:24.772 INFO [27866]: REMOTE_ADDR = 10.0.0.15 -- 16:02:24.772 INFO [27866]: SERVER_NAME = oameye.works.coregrade.com -- 16:02:24.772 INFO [27866]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=d4jfsq5ucda833nhrf1hqvqk9f1ku5o5; _gat_gtag_UA_54829827_2=1 -- 16:02:24.772 INFO [27866]: QUERY_STRING = /welcome/viewLogin -- 16:02:24.772 INFO [27866]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:02:24.802 INFO [27866]: COREGRADE is stopping... -- 16:02:24.802 DEBUG [27866]: Closing database connection -- 16:02:24.802 SQL [27866]: pgsql_close() -- 16:02:49.269 INFO [28166]: COREGRADE is starting... -- 16:02:49.269 INFO [28166]: Version from config: 1.0 -- 16:02:49.269 DEBUG [28166]: Connecting to database... -- 16:02:49.269 DEBUG [28166]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:02:49.270 SQL [28166]: pgsql_db_connect() -- 16:02:49.274 DEBUG [28166]: Database connection successful -- 16:02:49.274 INFO [28166]: _SERVER found -- 16:02:49.274 INFO [28166]: REMOTE_ADDR = 10.0.0.15 -- 16:02:49.274 INFO [28166]: SERVER_NAME = oameye.works.coregrade.com -- 16:02:49.274 INFO [28166]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=d4jfsq5ucda833nhrf1hqvqk9f1ku5o5; _gat_gtag_UA_54829827_2=1 -- 16:02:49.274 INFO [28166]: QUERY_STRING = /auth -- 16:02:49.274 INFO [28166]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:02:49.288 INFO [28166]: COREGRADE is stopping... -- 16:02:49.288 DEBUG [28166]: Closing database connection -- 16:02:49.288 SQL [28166]: pgsql_close() -- 16:03:17.038 INFO [28167]: COREGRADE is starting... -- 16:03:17.038 INFO [28167]: Version from config: 1.0 -- 16:03:17.038 DEBUG [28167]: Connecting to database... -- 16:03:17.038 DEBUG [28167]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:03:17.038 SQL [28167]: pgsql_db_connect() -- 16:03:17.042 DEBUG [28167]: Database connection successful -- 16:03:17.042 INFO [28167]: _SERVER found -- 16:03:17.042 INFO [28167]: REMOTE_ADDR = 10.0.0.15 -- 16:03:17.042 INFO [28167]: SERVER_NAME = oameye.works.coregrade.com -- 16:03:17.042 INFO [28167]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=d4jfsq5ucda833nhrf1hqvqk9f1ku5o5; _gat_gtag_UA_54829827_2=1 -- 16:03:17.042 INFO [28167]: QUERY_STRING = /auth -- 16:03:17.042 INFO [28167]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:03:17.081 INFO [28167]: COREGRADE is stopping... -- 16:03:17.081 DEBUG [28167]: Closing database connection -- 16:03:17.081 SQL [28167]: pgsql_close() -- 16:03:17.251 INFO [28167]: COREGRADE is starting... -- 16:03:17.252 INFO [28167]: Version from config: 1.0 -- 16:03:17.252 DEBUG [28167]: Connecting to database... -- 16:03:17.252 DEBUG [28167]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:03:17.252 SQL [28167]: pgsql_db_connect() -- 16:03:17.256 DEBUG [28167]: Database connection successful -- 16:03:17.256 INFO [28167]: _SERVER found -- 16:03:17.256 INFO [28167]: REMOTE_ADDR = 10.0.0.15 -- 16:03:17.256 INFO [28167]: SERVER_NAME = oameye.works.coregrade.com -- 16:03:17.256 INFO [28167]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=d4jfsq5ucda833nhrf1hqvqk9f1ku5o5; _gat_gtag_UA_54829827_2=1 -- 16:03:17.256 INFO [28167]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:03:17.256 INFO [28167]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:03:17.268 INFO [28167]: COREGRADE is stopping... -- 16:03:17.268 DEBUG [28167]: Closing database connection -- 16:03:17.269 SQL [28167]: pgsql_close() -- 16:03:20.508 INFO [28167]: COREGRADE is starting... -- 16:03:20.508 INFO [28167]: Version from config: 1.0 -- 16:03:20.508 DEBUG [28167]: Connecting to database... -- 16:03:20.508 DEBUG [28167]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:03:20.508 SQL [28167]: pgsql_db_connect() -- 16:03:20.512 DEBUG [28167]: Database connection successful -- 16:03:20.512 INFO [28167]: _SERVER found -- 16:03:20.512 INFO [28167]: REMOTE_ADDR = 10.0.0.15 -- 16:03:20.512 INFO [28167]: SERVER_NAME = oameye.works.coregrade.com -- 16:03:20.512 INFO [28167]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=d4jfsq5ucda833nhrf1hqvqk9f1ku5o5; _gat_gtag_UA_54829827_2=1 -- 16:03:20.512 INFO [28167]: QUERY_STRING = /auth/resetpass -- 16:03:20.512 INFO [28167]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:03:20.547 INFO [28167]: COREGRADE is stopping... -- 16:03:20.547 DEBUG [28167]: Closing database connection -- 16:03:20.547 SQL [28167]: pgsql_close() -- 16:03:46.992 INFO [28168]: COREGRADE is starting... -- 16:03:46.993 INFO [28168]: Version from config: 1.0 -- 16:03:46.993 DEBUG [28168]: Connecting to database... -- 16:03:46.993 DEBUG [28168]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:03:46.993 SQL [28168]: pgsql_db_connect() -- 16:03:47.033 INFO [28168]: COREGRADE is starting... -- 16:03:47.033 INFO [28168]: Version from config: 1.0 -- 16:03:47.033 DEBUG [28168]: Connecting to database... -- 16:03:47.033 DEBUG [28168]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:03:47.033 SQL [28168]: pgsql_db_connect() -- 16:03:47.037 DEBUG [28168]: Database connection successful -- 16:03:47.037 INFO [28168]: _SERVER found -- 16:03:47.037 INFO [28168]: REMOTE_ADDR = 10.0.0.15 -- 16:03:47.037 INFO [28168]: SERVER_NAME = oameye.works.coregrade.com -- 16:03:47.037 INFO [28168]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=d4jfsq5ucda833nhrf1hqvqk9f1ku5o5 -- 16:03:47.037 INFO [28168]: QUERY_STRING = -- 16:03:47.037 INFO [28168]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:03:47.037 INFO [28168]: SystemStatus()09-09-********~************ -- 16:03:47.037 INFO [28168]: long coregrade_api_main(CVars in, CVars &out) -- 16:03:47.037 INFO [28168]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 16:03:47.037 INFO [28168]: account calls -- 16:03:47.037 INFO [28168]: account_calls() -- 16:03:47.037 INFO [28168]: passwordReset() -- 16:03:47.037 INFO [28168]: startPassReset() -- 16:03:47.037 FLOG_MAX [28168]: REQ_STRING(username) -- 16:03:47.038 FLOG_MAX [28168]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:03:47.038 SQL [28168]: pgsql_query() -- 16:03:47.038 SQL [28168]: About to run query: -- 16:03:47.038 SQL [28168]: SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('ses66181+563@gmail.com') -- 16:03:47.040 SQL [28168]: Found rows: 1 -- 16:03:47.040 FLOG_MAX [28168]: load_db_record(SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('ses66181+563@gmail.com') ) num_cols=2 -- 16:03:47.040 SQL [28168]: pgsql_exec() -- 16:03:47.040 SQL [28168]: About to run query: -- 16:03:47.041 SQL [28168]: UPDATE password_reset SET status=7 WHERE status NOT IN (3,5) AND member_id=9 -- 16:03:47.042 SQL [28168]: PQcmdTuples: 4 -- 16:03:47.042 SQL [28168]: Affected rows: 4 -- 16:03:47.042 FLOG_MAX [28168]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:03:47.042 SQL [28168]: pgsql_query() -- 16:03:47.042 SQL [28168]: About to run query: -- 16:03:47.042 SQL [28168]: SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 16:03:47.038261-04') AS reset_key -- 16:03:47.043 SQL [28168]: Found rows: 1 -- 16:03:47.043 FLOG_MAX [28168]: load_db_record(SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 16:03:47.038261-04') AS reset_key) num_cols=2 -- 16:03:47.043 FLOG_MAX [28168]: insert_db_record() -- 16:03:47.043 SQL [28168]: pgsql_exec() -- 16:03:47.043 SQL [28168]: About to run query: -- 16:03:47.043 SQL [28168]: INSERT INTO password_reset (loc,member_id,reset_key,reset_pin,username) VALUES ('10.0.0.15','9','d8b5992ef8d28f0c324dc94f8b463aef','76634','ses66181+563@gmail.com') -- 16:03:47.044 SQL [28168]: PQcmdTuples: 1 -- 16:03:47.044 SQL [28168]: Affected rows: 1 -- 16:03:47.044 FLOG_MAX [28168]: SELECT currval('password_reset_id_seq') -- 16:03:47.044 SQL [28168]: pgsql_query() -- 16:03:47.044 SQL [28168]: About to run query: -- 16:03:47.044 SQL [28168]: SELECT currval('password_reset_id_seq') -- 16:03:47.045 SQL [28168]: Found rows: 1 -- 16:03:47.045 INFO [28168]: member_email_calls() -- 16:03:47.046 FLOG_MAX [28168]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:03:47.046 SQL [28168]: pgsql_query() -- 16:03:47.046 SQL [28168]: About to run query: -- 16:03:47.046 SQL [28168]: SELECT m.firstname,p.*,m.email AS member_email, created AS lost_added FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=12 -- 16:03:47.047 SQL [28168]: Found rows: 1 -- 16:03:47.047 FLOG_MAX [28168]: load_db_record(SELECT m.firstname,p.*,m.email AS member_email, created AS lost_added FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=12 ) num_cols=12 -- 16:03:47.047 FLOG_MAX [28168]: CGI Parsing: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 16:03:47.047 FLOG_MAX [28168]: Template '/home/oameye/coregrade/coregrade/email//start_losspass.mailfile' loaded: 1586 bytes -- 16:03:47.047 FLOG_MAX [28168]: Returning from FormFile() -- 16:03:47.047 FLOG_MAX [28168]: Template parsed: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 16:03:47.047 FLOG_MAX [28168]: ESMTP( 10.0.0.23, support@coregrade.com, ses66181+563@gmail.com ) -- 16:03:47.047 FLOG_MAX [28168]: Prepare body -- 16:03:47.047 FLOG_MAX [28168]: Locate & extract subject -- 16:03:47.047 FLOG_MAX [28168]: Found subject: CoreGrade - Password Reset for ses66181+563@gmail.com -- 16:03:47.047 FLOG_MAX [28168]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t ses66181+563@gmail.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'CoreGrade - Password Reset for ses66181+563@gmail.com ' -M ' - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
CoreGrade
-Dear Olu -
-We have initiated your password reset process as requested as by you on 2020-04-12 16:03:47.043908: -
- - - - -
Click the linkhttps://oameye.works.coregrade.com/auth/passreset?rlink=d8b5992ef8d28f0c324dc94f8b463aef
Link will expire
-
-
-If it was not at your request, then please contact CoreGrade support immediately. - -For further support go to our website at https://oameye.works.coregrade.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing CoreGrade. -CoreGrade Team. - -
-
- -
- - - - - - ' -- 16:03:47.069 FLOG_MAX [28168]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Password Reset for ses66181+563@gmail.com -From: CoreGrade Support -Date: Sun, 12 Apr 2020 16:03:47 -0400 -To: ses66181+563@gmail.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="P8PG+Qi/vZaqxsQm" -Mime-version: 1.0 - - ---P8PG+Qi/vZaqxsQm -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
CoreGrade
-Dear Olu -
-We have initiated your password reset process as requested as by you on 2020-04-12 16:03:47.043908: -
- - - - -
Click the linkhttps://oameye.works.coregrade.com/auth/passreset?rlink=d8b5992ef8d28f0c324dc94f8b463aef
Link will expire
-
-
-If it was not at your request, then please contact CoreGrade support immediately. - -For further support go to our website at https://oameye.works.coregrade.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing CoreGrade. -CoreGrade Team. - -
-
- -
- - - - - - - - ---P8PG+Qi/vZaqxsQm-- - -[C] . -[S] 250 2.0.0 Ok: queued as 0F88B210BDF1 -[C] QUIT -[S] 221 2.0.0 Bye -jU -- 16:03:47.069 FLOG_MAX [28168]: - -END OF PIPE OUTPUT - - -- 16:03:47.069 FLOG_MAX [28168]: /ESMTP() -- 16:03:47.069 INFO [28168]: /member_email_calls() -- 16:03:47.069 INFO [28168]: RET: member_id=9 -- 16:03:47.069 INFO [28168]: RET: mode=100 -- 16:03:47.069 INFO [28168]: RET: reset_id=12 -- 16:03:47.069 INFO [28168]: RET: reset_key=YOU WILL GET THIS IF PIN IS CORRECT IN CONFIRM -- 16:03:47.069 INFO [28168]: RET: reset_seed=2020-04-12 16:03:47.038261-04 -- 16:03:47.069 INFO [28168]: RET: reset_seed==REMOVED -- 16:03:47.069 INFO [28168]: RET: result=YES I GET TO BACK END -- 16:03:47.071 INFO [28168]: COREGRADE is stopping... -- 16:03:47.071 DEBUG [28168]: Closing database connection -- 16:03:47.071 SQL [28168]: pgsql_close() -- 16:03:46.997 DEBUG [28168]: Database connection successful -- 16:03:46.997 INFO [28168]: _SERVER found -- 16:03:46.997 INFO [28168]: REMOTE_ADDR = 10.0.0.15 -- 16:03:46.997 INFO [28168]: SERVER_NAME = oameye.works.coregrade.com -- 16:03:46.997 INFO [28168]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=d4jfsq5ucda833nhrf1hqvqk9f1ku5o5 -- 16:03:46.997 INFO [28168]: QUERY_STRING = /auth/resetpass -- 16:03:46.997 INFO [28168]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:03:47.071 INFO [28168]: COREGRADE is stopping... -- 16:03:47.071 DEBUG [28168]: Closing database connection -- 16:03:47.072 SQL [28168]: pgsql_close() -- 16:04:21.197 INFO [28002]: COREGRADE is starting... -- 16:04:21.197 INFO [28002]: Version from config: 1.0 -- 16:04:21.197 DEBUG [28002]: Connecting to database... -- 16:04:21.197 DEBUG [28002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:04:21.197 SQL [28002]: pgsql_db_connect() -- 16:04:21.202 DEBUG [28002]: Database connection successful -- 16:04:21.202 INFO [28002]: _SERVER found -- 16:04:21.202 INFO [28002]: REMOTE_ADDR = 10.0.0.15 -- 16:04:21.202 INFO [28002]: SERVER_NAME = oameye.works.coregrade.com -- 16:04:21.202 INFO [28002]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=uq74c7so1uth5pobiets99mqrpigkvvl -- 16:04:21.202 INFO [28002]: QUERY_STRING = /auth -- 16:04:21.202 INFO [28002]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:04:21.234 INFO [28002]: COREGRADE is stopping... -- 16:04:21.234 DEBUG [28002]: Closing database connection -- 16:04:21.235 SQL [28002]: pgsql_close() -- 16:04:21.245 INFO [28002]: COREGRADE is starting... -- 16:04:21.245 INFO [28002]: Version from config: 1.0 -- 16:04:21.245 DEBUG [28002]: Connecting to database... -- 16:04:21.245 DEBUG [28002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:04:21.245 SQL [28002]: pgsql_db_connect() -- 16:04:21.249 DEBUG [28002]: Database connection successful -- 16:04:21.249 INFO [28002]: _SERVER found -- 16:04:21.249 INFO [28002]: REMOTE_ADDR = 10.0.0.15 -- 16:04:21.249 INFO [28002]: SERVER_NAME = oameye.works.coregrade.com -- 16:04:21.249 INFO [28002]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=uq74c7so1uth5pobiets99mqrpigkvvl -- 16:04:21.249 INFO [28002]: QUERY_STRING = /welcome/viewLogin -- 16:04:21.249 INFO [28002]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:04:21.279 INFO [28002]: COREGRADE is stopping... -- 16:04:21.279 DEBUG [28002]: Closing database connection -- 16:04:21.279 SQL [28002]: pgsql_close() -- 16:04:36.194 INFO [27922]: COREGRADE is starting... -- 16:04:36.195 INFO [27922]: Version from config: 1.0 -- 16:04:36.195 DEBUG [27922]: Connecting to database... -- 16:04:36.195 DEBUG [27922]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:04:36.195 SQL [27922]: pgsql_db_connect() -- 16:04:36.199 DEBUG [27922]: Database connection successful -- 16:04:36.199 INFO [27922]: _SERVER found -- 16:04:36.199 INFO [27922]: REMOTE_ADDR = 10.0.0.15 -- 16:04:36.199 INFO [27922]: SERVER_NAME = oameye.works.coregrade.com -- 16:04:36.199 INFO [27922]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=p1lmset1ihr0itp8girebmj5ot2710v8 -- 16:04:36.199 INFO [27922]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:04:36.199 INFO [27922]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:04:36.212 INFO [27922]: COREGRADE is stopping... -- 16:04:36.212 DEBUG [27922]: Closing database connection -- 16:04:36.212 SQL [27922]: pgsql_close() -- 16:05:13.136 INFO [27867]: COREGRADE is starting... -- 16:05:13.136 INFO [27867]: Version from config: 1.0 -- 16:05:13.136 DEBUG [27867]: Connecting to database... -- 16:05:13.137 DEBUG [27867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:05:13.137 SQL [27867]: pgsql_db_connect() -- 16:05:13.173 INFO [27867]: COREGRADE is starting... -- 16:05:13.173 INFO [27867]: Version from config: 1.0 -- 16:05:13.173 DEBUG [27867]: Connecting to database... -- 16:05:13.173 DEBUG [27867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:05:13.173 SQL [27867]: pgsql_db_connect() -- 16:05:13.177 DEBUG [27867]: Database connection successful -- 16:05:13.177 INFO [27867]: _SERVER found -- 16:05:13.177 INFO [27867]: REMOTE_ADDR = 10.0.0.15 -- 16:05:13.178 INFO [27867]: SERVER_NAME = oameye.works.coregrade.com -- 16:05:13.178 INFO [27867]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=p1lmset1ihr0itp8girebmj5ot2710v8 -- 16:05:13.178 INFO [27867]: QUERY_STRING = -- 16:05:13.178 INFO [27867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:05:13.178 INFO [27867]: SystemStatus()09-09-********~************ -- 16:05:13.178 INFO [27867]: long coregrade_api_main(CVars in, CVars &out) -- 16:05:13.178 INFO [27867]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 16:05:13.178 INFO [27867]: account calls -- 16:05:13.178 INFO [27867]: account_calls() -- 16:05:13.178 INFO [27867]: LoginCoreGradeAccount() -- 16:05:13.178 FLOG_MAX [27867]: REQ_STRING(username) -- 16:05:13.178 FLOG_MAX [27867]: REQ_STRING(password) -- 16:05:13.178 FLOG_MAX [27867]: REQ_STRING(sessionid) -- 16:05:13.178 FLOG_MAX [27867]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:05:13.178 SQL [27867]: pgsql_query() -- 16:05:13.178 SQL [27867]: About to run query: -- 16:05:13.178 SQL [27867]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('taborg87@gmail.com') AND password= md5('taborg') -- 16:05:13.181 SQL [27867]: Found rows: 0 -- 16:05:13.181 SQL [27867]: Found rows: 0 -- 16:05:13.181 INFO [27867]: long SessionCheck(long uid, const char *sessionid, int create ) -- 16:05:13.181 FLOG_MAX [27867]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:05:13.181 SQL [27867]: pgsql_query() -- 16:05:13.181 SQL [27867]: About to run query: -- 16:05:13.181 SQL [27867]: SELECT upper(md5( now()::text )) AS folder -- 16:05:13.182 SQL [27867]: Found rows: 1 -- 16:05:13.182 FLOG_MAX [27867]: load_db_record(SELECT upper(md5( now()::text )) AS folder) num_cols=1 -- 16:05:13.182 FLOG_MAX [27867]: update_db_record() -- 16:05:13.182 FLOG_MAX [27867]: Bad parameter exception: 'id' -- 16:05:13.182 INFO [27867]: RET: folder=561392AD7DA488D6D955AACAB2AF8E46 -- 16:05:13.182 INFO [27867]: RET: member_id= -- 16:05:13.182 INFO [27867]: RET: result=YES I GET TO BACK END -- 16:05:13.182 INFO [27867]: RET: sessionid= -- 16:05:13.182 INFO [27867]: RET: status=Incorrect input parameter -- 16:05:13.183 INFO [27867]: COREGRADE is stopping... -- 16:05:13.183 DEBUG [27867]: Closing database connection -- 16:05:13.183 SQL [27867]: pgsql_close() -- 16:05:13.141 DEBUG [27867]: Database connection successful -- 16:05:13.141 INFO [27867]: _SERVER found -- 16:05:13.141 INFO [27867]: REMOTE_ADDR = 10.0.0.15 -- 16:05:13.141 INFO [27867]: SERVER_NAME = oameye.works.coregrade.com -- 16:05:13.141 INFO [27867]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=p1lmset1ihr0itp8girebmj5ot2710v8 -- 16:05:13.141 INFO [27867]: QUERY_STRING = /auth -- 16:05:13.141 INFO [27867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:05:13.183 INFO [27867]: COREGRADE is stopping... -- 16:05:13.183 DEBUG [27867]: Closing database connection -- 16:05:13.183 SQL [27867]: pgsql_close() -- 16:05:13.310 INFO [27867]: COREGRADE is starting... -- 16:05:13.310 INFO [27867]: Version from config: 1.0 -- 16:05:13.310 DEBUG [27867]: Connecting to database... -- 16:05:13.310 DEBUG [27867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:05:13.310 SQL [27867]: pgsql_db_connect() -- 16:05:13.314 DEBUG [27867]: Database connection successful -- 16:05:13.314 INFO [27867]: _SERVER found -- 16:05:13.314 INFO [27867]: REMOTE_ADDR = 10.0.0.15 -- 16:05:13.314 INFO [27867]: SERVER_NAME = oameye.works.coregrade.com -- 16:05:13.314 INFO [27867]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=p1lmset1ihr0itp8girebmj5ot2710v8 -- 16:05:13.314 INFO [27867]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:05:13.314 INFO [27867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:05:13.325 INFO [27867]: COREGRADE is stopping... -- 16:05:13.325 DEBUG [27867]: Closing database connection -- 16:05:13.325 SQL [27867]: pgsql_close() -- 16:05:40.089 INFO [27865]: COREGRADE is starting... -- 16:05:40.090 INFO [27865]: Version from config: 1.0 -- 16:05:40.090 DEBUG [27865]: Connecting to database... -- 16:05:40.090 DEBUG [27865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:05:40.090 SQL [27865]: pgsql_db_connect() -- 16:05:40.126 INFO [27865]: COREGRADE is starting... -- 16:05:40.127 INFO [27865]: Version from config: 1.0 -- 16:05:40.127 DEBUG [27865]: Connecting to database... -- 16:05:40.127 DEBUG [27865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:05:40.127 SQL [27865]: pgsql_db_connect() -- 16:05:40.131 DEBUG [27865]: Database connection successful -- 16:05:40.131 INFO [27865]: _SERVER found -- 16:05:40.131 INFO [27865]: REMOTE_ADDR = 10.0.0.15 -- 16:05:40.131 INFO [27865]: SERVER_NAME = oameye.works.coregrade.com -- 16:05:40.131 INFO [27865]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=p1lmset1ihr0itp8girebmj5ot2710v8 -- 16:05:40.131 INFO [27865]: QUERY_STRING = -- 16:05:40.131 INFO [27865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:05:40.131 INFO [27865]: SystemStatus()09-09-********~************ -- 16:05:40.131 INFO [27865]: long coregrade_api_main(CVars in, CVars &out) -- 16:05:40.131 INFO [27865]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 16:05:40.131 INFO [27865]: account calls -- 16:05:40.131 INFO [27865]: account_calls() -- 16:05:40.131 INFO [27865]: LoginCoreGradeAccount() -- 16:05:40.131 FLOG_MAX [27865]: REQ_STRING(username) -- 16:05:40.131 FLOG_MAX [27865]: REQ_STRING(password) -- 16:05:40.131 FLOG_MAX [27865]: REQ_STRING(sessionid) -- 16:05:40.131 FLOG_MAX [27865]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:05:40.131 SQL [27865]: pgsql_query() -- 16:05:40.131 SQL [27865]: About to run query: -- 16:05:40.131 SQL [27865]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('taborg87@gmail.com') AND password= md5('taborg') -- 16:05:40.134 SQL [27865]: Found rows: 0 -- 16:05:40.134 SQL [27865]: Found rows: 0 -- 16:05:40.134 INFO [27865]: long SessionCheck(long uid, const char *sessionid, int create ) -- 16:05:40.134 FLOG_MAX [27865]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:05:40.134 SQL [27865]: pgsql_query() -- 16:05:40.134 SQL [27865]: About to run query: -- 16:05:40.134 SQL [27865]: SELECT upper(md5( now()::text )) AS folder -- 16:05:40.134 SQL [27865]: Found rows: 1 -- 16:05:40.135 FLOG_MAX [27865]: load_db_record(SELECT upper(md5( now()::text )) AS folder) num_cols=1 -- 16:05:40.135 FLOG_MAX [27865]: update_db_record() -- 16:05:40.135 FLOG_MAX [27865]: Bad parameter exception: 'id' -- 16:05:40.135 INFO [27865]: RET: folder=12AC18AE298B41EF830D8D6FFE6BC9DD -- 16:05:40.135 INFO [27865]: RET: member_id= -- 16:05:40.135 INFO [27865]: RET: result=YES I GET TO BACK END -- 16:05:40.135 INFO [27865]: RET: sessionid= -- 16:05:40.135 INFO [27865]: RET: status=Incorrect input parameter -- 16:05:40.136 INFO [27865]: COREGRADE is stopping... -- 16:05:40.136 DEBUG [27865]: Closing database connection -- 16:05:40.136 SQL [27865]: pgsql_close() -- 16:05:40.094 DEBUG [27865]: Database connection successful -- 16:05:40.094 INFO [27865]: _SERVER found -- 16:05:40.094 INFO [27865]: REMOTE_ADDR = 10.0.0.15 -- 16:05:40.094 INFO [27865]: SERVER_NAME = oameye.works.coregrade.com -- 16:05:40.094 INFO [27865]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=p1lmset1ihr0itp8girebmj5ot2710v8 -- 16:05:40.094 INFO [27865]: QUERY_STRING = /auth -- 16:05:40.094 INFO [27865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:05:40.136 INFO [27865]: COREGRADE is stopping... -- 16:05:40.136 DEBUG [27865]: Closing database connection -- 16:05:40.136 SQL [27865]: pgsql_close() -- 16:05:40.274 INFO [27865]: COREGRADE is starting... -- 16:05:40.275 INFO [27865]: Version from config: 1.0 -- 16:05:40.275 DEBUG [27865]: Connecting to database... -- 16:05:40.275 DEBUG [27865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:05:40.275 SQL [27865]: pgsql_db_connect() -- 16:05:40.279 DEBUG [27865]: Database connection successful -- 16:05:40.279 INFO [27865]: _SERVER found -- 16:05:40.279 INFO [27865]: REMOTE_ADDR = 10.0.0.15 -- 16:05:40.279 INFO [27865]: SERVER_NAME = oameye.works.coregrade.com -- 16:05:40.279 INFO [27865]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=p1lmset1ihr0itp8girebmj5ot2710v8 -- 16:05:40.279 INFO [27865]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:05:40.279 INFO [27865]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:05:40.290 INFO [27865]: COREGRADE is stopping... -- 16:05:40.290 DEBUG [27865]: Closing database connection -- 16:05:40.290 SQL [27865]: pgsql_close() -- 16:05:47.109 INFO [27863]: COREGRADE is starting... -- 16:05:47.110 INFO [27863]: Version from config: 1.0 -- 16:05:47.110 DEBUG [27863]: Connecting to database... -- 16:05:47.110 DEBUG [27863]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:05:47.110 SQL [27863]: pgsql_db_connect() -- 16:05:47.114 DEBUG [27863]: Database connection successful -- 16:05:47.114 INFO [27863]: _SERVER found -- 16:05:47.114 INFO [27863]: REMOTE_ADDR = 10.0.0.15 -- 16:05:47.114 INFO [27863]: SERVER_NAME = oameye.works.coregrade.com -- 16:05:47.114 INFO [27863]: QUERY_STRING = /images/logo.png -- 16:05:47.114 INFO [27863]: HTTP_X_FORWARDED_FOR = 66.249.88.28 -- 16:05:47.125 INFO [27863]: COREGRADE is stopping... -- 16:05:47.125 DEBUG [27863]: Closing database connection -- 16:05:47.125 SQL [27863]: pgsql_close() -- 16:05:48.942 INFO [27863]: COREGRADE is starting... -- 16:05:48.942 INFO [27863]: Version from config: 1.0 -- 16:05:48.942 DEBUG [27863]: Connecting to database... -- 16:05:48.942 DEBUG [27863]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:05:48.942 SQL [27863]: pgsql_db_connect() -- 16:05:48.946 DEBUG [27863]: Database connection successful -- 16:05:48.947 INFO [27863]: _SERVER found -- 16:05:48.947 INFO [27863]: REMOTE_ADDR = 10.0.0.15 -- 16:05:48.947 INFO [27863]: SERVER_NAME = oameye.works.coregrade.com -- 16:05:48.947 INFO [27863]: QUERY_STRING = /images/logo.png -- 16:05:48.947 INFO [27863]: HTTP_X_FORWARDED_FOR = 66.249.88.28 -- 16:05:48.958 INFO [27863]: COREGRADE is stopping... -- 16:05:48.958 DEBUG [27863]: Closing database connection -- 16:05:48.958 SQL [27863]: pgsql_close() -- 16:06:16.548 INFO [27864]: COREGRADE is starting... -- 16:06:16.548 INFO [27864]: Version from config: 1.0 -- 16:06:16.548 DEBUG [27864]: Connecting to database... -- 16:06:16.548 DEBUG [27864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:06:16.548 SQL [27864]: pgsql_db_connect() -- 16:06:16.552 DEBUG [27864]: Database connection successful -- 16:06:16.552 INFO [27864]: _SERVER found -- 16:06:16.552 INFO [27864]: REMOTE_ADDR = 10.0.0.15 -- 16:06:16.552 INFO [27864]: SERVER_NAME = oameye.works.coregrade.com -- 16:06:16.552 INFO [27864]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=p1lmset1ihr0itp8girebmj5ot2710v8 -- 16:06:16.552 INFO [27864]: QUERY_STRING = /auth/newuser -- 16:06:16.552 INFO [27864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:06:16.584 INFO [27864]: COREGRADE is stopping... -- 16:06:16.584 DEBUG [27864]: Closing database connection -- 16:06:16.584 SQL [27864]: pgsql_close() -- 16:06:16.674 INFO [27864]: COREGRADE is starting... -- 16:06:16.674 INFO [27864]: Version from config: 1.0 -- 16:06:16.674 DEBUG [27864]: Connecting to database... -- 16:06:16.674 DEBUG [27864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:06:16.674 SQL [27864]: pgsql_db_connect() -- 16:06:16.678 DEBUG [27864]: Database connection successful -- 16:06:16.678 INFO [27864]: _SERVER found -- 16:06:16.678 INFO [27864]: REMOTE_ADDR = 10.0.0.15 -- 16:06:16.678 INFO [27864]: SERVER_NAME = oameye.works.coregrade.com -- 16:06:16.678 INFO [27864]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=p1lmset1ihr0itp8girebmj5ot2710v8 -- 16:06:16.678 INFO [27864]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:06:16.678 INFO [27864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:06:16.689 INFO [27864]: COREGRADE is stopping... -- 16:06:16.689 DEBUG [27864]: Closing database connection -- 16:06:16.689 SQL [27864]: pgsql_close() -- 16:11:06.177 INFO [27866]: COREGRADE is starting... -- 16:11:06.178 INFO [27866]: Version from config: 1.0 -- 16:11:06.178 DEBUG [27866]: Connecting to database... -- 16:11:06.178 DEBUG [27866]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:06.178 SQL [27866]: pgsql_db_connect() -- 16:11:06.182 DEBUG [27866]: Database connection successful -- 16:11:06.182 INFO [27866]: _SERVER found -- 16:11:06.182 INFO [27866]: REMOTE_ADDR = 10.0.0.15 -- 16:11:06.182 INFO [27866]: SERVER_NAME = oameye.works.coregrade.com -- 16:11:06.182 INFO [27866]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=d4jfsq5ucda833nhrf1hqvqk9f1ku5o5 -- 16:11:06.182 INFO [27866]: QUERY_STRING = -- 16:11:06.182 INFO [27866]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:11:06.214 INFO [27866]: COREGRADE is stopping... -- 16:11:06.214 DEBUG [27866]: Closing database connection -- 16:11:06.214 SQL [27866]: pgsql_close() -- 16:11:06.423 INFO [27866]: COREGRADE is starting... -- 16:11:06.424 INFO [27866]: Version from config: 1.0 -- 16:11:06.424 DEBUG [27866]: Connecting to database... -- 16:11:06.424 DEBUG [27866]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:06.424 SQL [27866]: pgsql_db_connect() -- 16:11:06.428 DEBUG [27866]: Database connection successful -- 16:11:06.428 INFO [27866]: _SERVER found -- 16:11:06.428 INFO [27866]: REMOTE_ADDR = 10.0.0.15 -- 16:11:06.428 INFO [27866]: SERVER_NAME = oameye.works.coregrade.com -- 16:11:06.428 INFO [27866]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=3n980i17r0b2d2pfa0usng30e2gttfct -- 16:11:06.428 INFO [27866]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:11:06.428 INFO [27866]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:11:06.439 INFO [27866]: COREGRADE is stopping... -- 16:11:06.439 DEBUG [27866]: Closing database connection -- 16:11:06.439 SQL [27866]: pgsql_close() -- 16:11:08.837 INFO [27866]: COREGRADE is starting... -- 16:11:08.837 INFO [27866]: Version from config: 1.0 -- 16:11:08.837 DEBUG [27866]: Connecting to database... -- 16:11:08.837 DEBUG [27866]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:08.837 SQL [27866]: pgsql_db_connect() -- 16:11:08.843 INFO [28166]: COREGRADE is starting... -- 16:11:08.844 INFO [28166]: Version from config: 1.0 -- 16:11:08.844 DEBUG [28166]: Connecting to database... -- 16:11:08.844 DEBUG [28166]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:08.844 SQL [28166]: pgsql_db_connect() -- 16:11:08.842 DEBUG [27866]: Database connection successful -- 16:11:08.842 INFO [27866]: _SERVER found -- 16:11:08.842 INFO [27866]: REMOTE_ADDR = 10.0.0.15 -- 16:11:08.842 INFO [27866]: SERVER_NAME = oameye.works.coregrade.com -- 16:11:08.842 INFO [27866]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=3n980i17r0b2d2pfa0usng30e2gttfct; _gat_gtag_UA_54829827_2=1 -- 16:11:08.842 INFO [27866]: QUERY_STRING = /welcome/viewLogin -- 16:11:08.842 INFO [27866]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:11:08.871 INFO [27866]: COREGRADE is stopping... -- 16:11:08.872 DEBUG [27866]: Closing database connection -- 16:11:08.872 SQL [27866]: pgsql_close() -- 16:11:08.848 DEBUG [28166]: Database connection successful -- 16:11:08.848 INFO [28166]: _SERVER found -- 16:11:08.848 INFO [28166]: REMOTE_ADDR = 10.0.0.15 -- 16:11:08.848 INFO [28166]: SERVER_NAME = oameye.works.coregrade.com -- 16:11:08.848 INFO [28166]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=3n980i17r0b2d2pfa0usng30e2gttfct; _gat_gtag_UA_54829827_2=1 -- 16:11:08.848 INFO [28166]: QUERY_STRING = /auth -- 16:11:08.848 INFO [28166]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:11:08.883 INFO [28166]: COREGRADE is stopping... -- 16:11:08.883 DEBUG [28166]: Closing database connection -- 16:11:08.883 SQL [28166]: pgsql_close() -- 16:11:08.905 INFO [27866]: COREGRADE is starting... -- 16:11:08.905 INFO [27866]: Version from config: 1.0 -- 16:11:08.905 DEBUG [27866]: Connecting to database... -- 16:11:08.905 DEBUG [27866]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:08.905 SQL [27866]: pgsql_db_connect() -- 16:11:08.910 DEBUG [27866]: Database connection successful -- 16:11:08.910 INFO [27866]: _SERVER found -- 16:11:08.910 INFO [27866]: REMOTE_ADDR = 10.0.0.15 -- 16:11:08.910 INFO [27866]: SERVER_NAME = oameye.works.coregrade.com -- 16:11:08.910 INFO [27866]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=3n980i17r0b2d2pfa0usng30e2gttfct; _gat_gtag_UA_54829827_2=1 -- 16:11:08.910 INFO [27866]: QUERY_STRING = /auth/index -- 16:11:08.910 INFO [27866]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:11:08.941 INFO [27866]: COREGRADE is stopping... -- 16:11:08.941 DEBUG [27866]: Closing database connection -- 16:11:08.941 SQL [27866]: pgsql_close() -- 16:11:10.937 INFO [28166]: COREGRADE is starting... -- 16:11:10.938 INFO [28166]: Version from config: 1.0 -- 16:11:10.938 DEBUG [28166]: Connecting to database... -- 16:11:10.938 DEBUG [28166]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:10.938 SQL [28166]: pgsql_db_connect() -- 16:11:10.942 DEBUG [28166]: Database connection successful -- 16:11:10.942 INFO [28166]: _SERVER found -- 16:11:10.942 INFO [28166]: REMOTE_ADDR = 10.0.0.15 -- 16:11:10.942 INFO [28166]: SERVER_NAME = oameye.works.coregrade.com -- 16:11:10.942 INFO [28166]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=3n980i17r0b2d2pfa0usng30e2gttfct; _gat_gtag_UA_54829827_2=1 -- 16:11:10.942 INFO [28166]: QUERY_STRING = /auth/resetpass -- 16:11:10.942 INFO [28166]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:11:10.974 INFO [28166]: COREGRADE is stopping... -- 16:11:10.974 DEBUG [28166]: Closing database connection -- 16:11:10.974 SQL [28166]: pgsql_close() -- 16:11:13.718 INFO [28166]: COREGRADE is starting... -- 16:11:13.719 INFO [28166]: Version from config: 1.0 -- 16:11:13.719 DEBUG [28166]: Connecting to database... -- 16:11:13.719 DEBUG [28166]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:13.719 SQL [28166]: pgsql_db_connect() -- 16:11:13.753 INFO [28166]: COREGRADE is starting... -- 16:11:13.754 INFO [28166]: Version from config: 1.0 -- 16:11:13.754 DEBUG [28166]: Connecting to database... -- 16:11:13.754 DEBUG [28166]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:13.754 SQL [28166]: pgsql_db_connect() -- 16:11:13.758 DEBUG [28166]: Database connection successful -- 16:11:13.758 INFO [28166]: _SERVER found -- 16:11:13.758 INFO [28166]: REMOTE_ADDR = 10.0.0.15 -- 16:11:13.758 INFO [28166]: SERVER_NAME = oameye.works.coregrade.com -- 16:11:13.758 INFO [28166]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=3n980i17r0b2d2pfa0usng30e2gttfct; _gat_gtag_UA_54829827_2=1 -- 16:11:13.758 INFO [28166]: QUERY_STRING = -- 16:11:13.758 INFO [28166]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:11:13.758 INFO [28166]: SystemStatus()09-09-********~************ -- 16:11:13.758 INFO [28166]: long coregrade_api_main(CVars in, CVars &out) -- 16:11:13.758 INFO [28166]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 16:11:13.758 INFO [28166]: account calls -- 16:11:13.758 INFO [28166]: account_calls() -- 16:11:13.758 INFO [28166]: passwordReset() -- 16:11:13.758 INFO [28166]: startPassReset() -- 16:11:13.758 FLOG_MAX [28166]: REQ_STRING(username) -- 16:11:13.758 FLOG_MAX [28166]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:11:13.758 SQL [28166]: pgsql_query() -- 16:11:13.758 SQL [28166]: About to run query: -- 16:11:13.758 SQL [28166]: SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('ses66181+563@gmail.com') -- 16:11:13.761 SQL [28166]: Found rows: 1 -- 16:11:13.761 FLOG_MAX [28166]: load_db_record(SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('ses66181+563@gmail.com') ) num_cols=2 -- 16:11:13.761 SQL [28166]: pgsql_exec() -- 16:11:13.761 SQL [28166]: About to run query: -- 16:11:13.761 SQL [28166]: UPDATE password_reset SET status=7 WHERE status NOT IN (3,5) AND member_id=9 -- 16:11:13.762 SQL [28166]: PQcmdTuples: 5 -- 16:11:13.762 SQL [28166]: Affected rows: 5 -- 16:11:13.762 FLOG_MAX [28166]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:11:13.762 SQL [28166]: pgsql_query() -- 16:11:13.762 SQL [28166]: About to run query: -- 16:11:13.763 SQL [28166]: SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 16:11:13.758867-04') AS reset_key -- 16:11:13.763 SQL [28166]: Found rows: 1 -- 16:11:13.763 FLOG_MAX [28166]: load_db_record(SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 16:11:13.758867-04') AS reset_key) num_cols=2 -- 16:11:13.763 FLOG_MAX [28166]: insert_db_record() -- 16:11:13.763 SQL [28166]: pgsql_exec() -- 16:11:13.763 SQL [28166]: About to run query: -- 16:11:13.763 SQL [28166]: INSERT INTO password_reset (loc,member_id,reset_key,reset_pin,username) VALUES ('10.0.0.15','9','2344329ad9f7adc856cde7dd27dd6419','47473','ses66181+563@gmail.com') -- 16:11:13.764 SQL [28166]: PQcmdTuples: 1 -- 16:11:13.764 SQL [28166]: Affected rows: 1 -- 16:11:13.764 FLOG_MAX [28166]: SELECT currval('password_reset_id_seq') -- 16:11:13.764 SQL [28166]: pgsql_query() -- 16:11:13.764 SQL [28166]: About to run query: -- 16:11:13.765 SQL [28166]: SELECT currval('password_reset_id_seq') -- 16:11:13.765 SQL [28166]: Found rows: 1 -- 16:11:13.765 INFO [28166]: member_email_calls() -- 16:11:13.765 FLOG_MAX [28166]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:11:13.765 SQL [28166]: pgsql_query() -- 16:11:13.765 SQL [28166]: About to run query: -- 16:11:13.765 SQL [28166]: SELECT m.firstname,p.*,m.email AS member_email, created AS lost_added FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=13 -- 16:11:13.766 SQL [28166]: Found rows: 1 -- 16:11:13.766 FLOG_MAX [28166]: load_db_record(SELECT m.firstname,p.*,m.email AS member_email, created AS lost_added FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=13 ) num_cols=12 -- 16:11:13.766 FLOG_MAX [28166]: CGI Parsing: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 16:11:13.766 FLOG_MAX [28166]: Template '/home/oameye/coregrade/coregrade/email//start_losspass.mailfile' loaded: 1586 bytes -- 16:11:13.766 FLOG_MAX [28166]: Returning from FormFile() -- 16:11:13.766 FLOG_MAX [28166]: Template parsed: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 16:11:13.766 FLOG_MAX [28166]: ESMTP( 10.0.0.23, support@coregrade.com, ses66181+563@gmail.com ) -- 16:11:13.766 FLOG_MAX [28166]: Prepare body -- 16:11:13.766 FLOG_MAX [28166]: Locate & extract subject -- 16:11:13.766 FLOG_MAX [28166]: Found subject: CoreGrade - Password Reset for ses66181+563@gmail.com -- 16:11:13.766 FLOG_MAX [28166]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t ses66181+563@gmail.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'CoreGrade - Password Reset for ses66181+563@gmail.com ' -M ' - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
CoreGrade
-Dear Olu -
-We have initiated your password reset process as requested as by you on 2020-04-12 16:11:13.763991: -
- - - - -
Click the linkhttps://oameye.works.coregrade.com/auth/passreset?rlink=2344329ad9f7adc856cde7dd27dd6419
Link will expire
-
-
-If it was not at your request, then please contact CoreGrade support immediately. - -For further support go to our website at https://oameye.works.coregrade.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing CoreGrade. -CoreGrade Team. - -
-
- -
- - - - - - ' -- 16:11:13.823 FLOG_MAX [28166]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Password Reset for ses66181+563@gmail.com -From: CoreGrade Support -Date: Sun, 12 Apr 2020 16:11:13 -0400 -To: ses66181+563@gmail.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="rvWowWTyJC+aMX3d" -Mime-version: 1.0 - - ---rvWowWTyJC+aMX3d -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
CoreGrade
-Dear Olu -
-We have initiated your password reset process as requested as by you on 2020-04-12 16:11:13.763991: -
- - - - -
Click the linkhttps://oameye.works.coregrade.com/auth/passreset?rlink=2344329ad9f7adc856cde7dd27dd6419
Link will expire
-
-
-If it was not at your request, then please contact CoreGrade support immediately. - -For further support go to our website at https://oameye.works.coregrade.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing CoreGrade. -CoreGrade Team. - -
-
- -
- - - - - - - - ---rvWowWTyJC+aMX3d-- - -[C] . -[S] 250 2.0.0 Ok: queued as C4A71210BDEC -[C] QUIT -[S] 221 2.0.0 Bye -jU -- 16:11:13.823 FLOG_MAX [28166]: - -END OF PIPE OUTPUT - - -- 16:11:13.823 FLOG_MAX [28166]: /ESMTP() -- 16:11:13.823 INFO [28166]: /member_email_calls() -- 16:11:13.823 INFO [28166]: RET: member_id=9 -- 16:11:13.823 INFO [28166]: RET: mode=100 -- 16:11:13.823 INFO [28166]: RET: reset_id=13 -- 16:11:13.823 INFO [28166]: RET: reset_key=YOU WILL GET THIS IF PIN IS CORRECT IN CONFIRM -- 16:11:13.823 INFO [28166]: RET: reset_seed=2020-04-12 16:11:13.758867-04 -- 16:11:13.823 INFO [28166]: RET: reset_seed==REMOVED -- 16:11:13.823 INFO [28166]: RET: result=YES I GET TO BACK END -- 16:11:13.825 INFO [28166]: COREGRADE is stopping... -- 16:11:13.825 DEBUG [28166]: Closing database connection -- 16:11:13.825 SQL [28166]: pgsql_close() -- 16:11:13.723 DEBUG [28166]: Database connection successful -- 16:11:13.723 INFO [28166]: _SERVER found -- 16:11:13.723 INFO [28166]: REMOTE_ADDR = 10.0.0.15 -- 16:11:13.723 INFO [28166]: SERVER_NAME = oameye.works.coregrade.com -- 16:11:13.723 INFO [28166]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=3n980i17r0b2d2pfa0usng30e2gttfct; _gat_gtag_UA_54829827_2=1 -- 16:11:13.723 INFO [28166]: QUERY_STRING = /auth/resetpass -- 16:11:13.723 INFO [28166]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:11:13.826 INFO [28166]: COREGRADE is stopping... -- 16:11:13.826 DEBUG [28166]: Closing database connection -- 16:11:13.826 SQL [28166]: pgsql_close() -- 16:18:38.312 INFO [28167]: COREGRADE is starting... -- 16:18:38.312 INFO [28167]: Version from config: 1.0 -- 16:18:38.313 DEBUG [28167]: Connecting to database... -- 16:18:38.313 DEBUG [28167]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:18:38.313 SQL [28167]: pgsql_db_connect() -- 16:18:38.318 DEBUG [28167]: Database connection successful -- 16:18:38.318 INFO [28167]: _SERVER found -- 16:18:38.318 INFO [28167]: REMOTE_ADDR = 10.0.0.15 -- 16:18:38.318 INFO [28167]: SERVER_NAME = oameye.works.coregrade.com -- 16:18:38.318 INFO [28167]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=3n980i17r0b2d2pfa0usng30e2gttfct -- 16:18:38.318 INFO [28167]: QUERY_STRING = -- 16:18:38.318 INFO [28167]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:18:38.361 INFO [28167]: COREGRADE is stopping... -- 16:18:38.361 DEBUG [28167]: Closing database connection -- 16:18:38.361 SQL [28167]: pgsql_close() -- 16:18:38.573 INFO [28167]: COREGRADE is starting... -- 16:18:38.573 INFO [28167]: Version from config: 1.0 -- 16:18:38.573 DEBUG [28167]: Connecting to database... -- 16:18:38.573 DEBUG [28167]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:18:38.573 SQL [28167]: pgsql_db_connect() -- 16:18:38.578 DEBUG [28167]: Database connection successful -- 16:18:38.578 INFO [28167]: _SERVER found -- 16:18:38.578 INFO [28167]: REMOTE_ADDR = 10.0.0.15 -- 16:18:38.578 INFO [28167]: SERVER_NAME = oameye.works.coregrade.com -- 16:18:38.578 INFO [28167]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=o6fbnkcsrbviej50gcs769d922gsm1mg -- 16:18:38.578 INFO [28167]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:18:38.578 INFO [28167]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:18:38.589 INFO [28167]: COREGRADE is stopping... -- 16:18:38.589 DEBUG [28167]: Closing database connection -- 16:18:38.589 SQL [28167]: pgsql_close() -- 16:18:41.286 INFO [28167]: COREGRADE is starting... -- 16:18:41.287 INFO [28167]: Version from config: 1.0 -- 16:18:41.287 DEBUG [28167]: Connecting to database... -- 16:18:41.287 DEBUG [28167]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:18:41.287 SQL [28167]: pgsql_db_connect() -- 16:18:41.293 INFO [28168]: COREGRADE is starting... -- 16:18:41.294 INFO [28168]: Version from config: 1.0 -- 16:18:41.294 DEBUG [28168]: Connecting to database... -- 16:18:41.294 DEBUG [28168]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:18:41.294 SQL [28168]: pgsql_db_connect() -- 16:18:41.291 DEBUG [28167]: Database connection successful -- 16:18:41.291 INFO [28167]: _SERVER found -- 16:18:41.291 INFO [28167]: REMOTE_ADDR = 10.0.0.15 -- 16:18:41.291 INFO [28167]: SERVER_NAME = oameye.works.coregrade.com -- 16:18:41.291 INFO [28167]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=o6fbnkcsrbviej50gcs769d922gsm1mg; _gat_gtag_UA_54829827_2=1 -- 16:18:41.291 INFO [28167]: QUERY_STRING = /welcome/viewLogin -- 16:18:41.291 INFO [28167]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:18:41.322 INFO [28167]: COREGRADE is stopping... -- 16:18:41.322 DEBUG [28167]: Closing database connection -- 16:18:41.322 SQL [28167]: pgsql_close() -- 16:18:41.298 DEBUG [28168]: Database connection successful -- 16:18:41.298 INFO [28168]: _SERVER found -- 16:18:41.298 INFO [28168]: REMOTE_ADDR = 10.0.0.15 -- 16:18:41.298 INFO [28168]: SERVER_NAME = oameye.works.coregrade.com -- 16:18:41.298 INFO [28168]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=o6fbnkcsrbviej50gcs769d922gsm1mg; _gat_gtag_UA_54829827_2=1 -- 16:18:41.298 INFO [28168]: QUERY_STRING = /auth -- 16:18:41.298 INFO [28168]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:18:41.332 INFO [28168]: COREGRADE is stopping... -- 16:18:41.333 DEBUG [28168]: Closing database connection -- 16:18:41.333 SQL [28168]: pgsql_close() -- 16:18:41.361 INFO [28168]: COREGRADE is starting... -- 16:18:41.361 INFO [28168]: Version from config: 1.0 -- 16:18:41.361 DEBUG [28168]: Connecting to database... -- 16:18:41.361 DEBUG [28168]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:18:41.361 SQL [28168]: pgsql_db_connect() -- 16:18:41.365 DEBUG [28168]: Database connection successful -- 16:18:41.365 INFO [28168]: _SERVER found -- 16:18:41.365 INFO [28168]: REMOTE_ADDR = 10.0.0.15 -- 16:18:41.365 INFO [28168]: SERVER_NAME = oameye.works.coregrade.com -- 16:18:41.365 INFO [28168]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=o6fbnkcsrbviej50gcs769d922gsm1mg; _gat_gtag_UA_54829827_2=1 -- 16:18:41.365 INFO [28168]: QUERY_STRING = /auth/index -- 16:18:41.365 INFO [28168]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:18:41.396 INFO [28168]: COREGRADE is stopping... -- 16:18:41.397 DEBUG [28168]: Closing database connection -- 16:18:41.397 SQL [28168]: pgsql_close() -- 16:18:43.195 INFO [28168]: COREGRADE is starting... -- 16:18:43.195 INFO [28168]: Version from config: 1.0 -- 16:18:43.195 DEBUG [28168]: Connecting to database... -- 16:18:43.196 DEBUG [28168]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:18:43.196 SQL [28168]: pgsql_db_connect() -- 16:18:43.200 DEBUG [28168]: Database connection successful -- 16:18:43.200 INFO [28168]: _SERVER found -- 16:18:43.200 INFO [28168]: REMOTE_ADDR = 10.0.0.15 -- 16:18:43.200 INFO [28168]: SERVER_NAME = oameye.works.coregrade.com -- 16:18:43.200 INFO [28168]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=o6fbnkcsrbviej50gcs769d922gsm1mg; _gat_gtag_UA_54829827_2=1 -- 16:18:43.200 INFO [28168]: QUERY_STRING = /auth/resetpass -- 16:18:43.200 INFO [28168]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:18:43.231 INFO [28168]: COREGRADE is stopping... -- 16:18:43.231 DEBUG [28168]: Closing database connection -- 16:18:43.231 SQL [28168]: pgsql_close() -- 16:18:46.186 INFO [28168]: COREGRADE is starting... -- 16:18:46.186 INFO [28168]: Version from config: 1.0 -- 16:18:46.186 DEBUG [28168]: Connecting to database... -- 16:18:46.186 DEBUG [28168]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:18:46.186 SQL [28168]: pgsql_db_connect() -- 16:18:46.221 INFO [28168]: COREGRADE is starting... -- 16:18:46.222 INFO [28168]: Version from config: 1.0 -- 16:18:46.222 DEBUG [28168]: Connecting to database... -- 16:18:46.222 DEBUG [28168]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:18:46.222 SQL [28168]: pgsql_db_connect() -- 16:18:46.226 DEBUG [28168]: Database connection successful -- 16:18:46.226 INFO [28168]: _SERVER found -- 16:18:46.226 INFO [28168]: REMOTE_ADDR = 10.0.0.15 -- 16:18:46.226 INFO [28168]: SERVER_NAME = oameye.works.coregrade.com -- 16:18:46.226 INFO [28168]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=o6fbnkcsrbviej50gcs769d922gsm1mg; _gat_gtag_UA_54829827_2=1 -- 16:18:46.226 INFO [28168]: QUERY_STRING = -- 16:18:46.226 INFO [28168]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:18:46.226 INFO [28168]: SystemStatus()09-09-********~************ -- 16:18:46.226 INFO [28168]: long coregrade_api_main(CVars in, CVars &out) -- 16:18:46.226 INFO [28168]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 16:18:46.226 INFO [28168]: account calls -- 16:18:46.226 INFO [28168]: account_calls() -- 16:18:46.226 INFO [28168]: passwordReset() -- 16:18:46.226 INFO [28168]: startPassReset() -- 16:18:46.226 FLOG_MAX [28168]: REQ_STRING(username) -- 16:18:46.226 FLOG_MAX [28168]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:18:46.226 SQL [28168]: pgsql_query() -- 16:18:46.226 SQL [28168]: About to run query: -- 16:18:46.226 SQL [28168]: SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('ses66181+563@gmail.com') -- 16:18:46.228 SQL [28168]: Found rows: 1 -- 16:18:46.228 FLOG_MAX [28168]: load_db_record(SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('ses66181+563@gmail.com') ) num_cols=2 -- 16:18:46.228 SQL [28168]: pgsql_exec() -- 16:18:46.228 SQL [28168]: About to run query: -- 16:18:46.228 SQL [28168]: UPDATE password_reset SET status=7 WHERE status NOT IN (3,5) AND member_id=9 -- 16:18:46.230 SQL [28168]: PQcmdTuples: 6 -- 16:18:46.230 SQL [28168]: Affected rows: 6 -- 16:18:46.230 FLOG_MAX [28168]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:18:46.230 SQL [28168]: pgsql_query() -- 16:18:46.230 SQL [28168]: About to run query: -- 16:18:46.230 SQL [28168]: SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 16:18:46.226444-04') AS reset_key -- 16:18:46.231 SQL [28168]: Found rows: 1 -- 16:18:46.231 FLOG_MAX [28168]: load_db_record(SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 16:18:46.226444-04') AS reset_key) num_cols=2 -- 16:18:46.231 FLOG_MAX [28168]: insert_db_record() -- 16:18:46.231 SQL [28168]: pgsql_exec() -- 16:18:46.231 SQL [28168]: About to run query: -- 16:18:46.231 SQL [28168]: INSERT INTO password_reset (loc,member_id,reset_key,reset_pin,username) VALUES ('10.0.0.15','9','1951abede0908fe0630e5931d11f01ae','51338','ses66181+563@gmail.com') -- 16:18:46.232 SQL [28168]: PQcmdTuples: 1 -- 16:18:46.232 SQL [28168]: Affected rows: 1 -- 16:18:46.232 FLOG_MAX [28168]: SELECT currval('password_reset_id_seq') -- 16:18:46.232 SQL [28168]: pgsql_query() -- 16:18:46.232 SQL [28168]: About to run query: -- 16:18:46.232 SQL [28168]: SELECT currval('password_reset_id_seq') -- 16:18:46.233 SQL [28168]: Found rows: 1 -- 16:18:46.233 INFO [28168]: member_email_calls() -- 16:18:46.233 FLOG_MAX [28168]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:18:46.233 SQL [28168]: pgsql_query() -- 16:18:46.233 SQL [28168]: About to run query: -- 16:18:46.233 SQL [28168]: SELECT m.firstname,p.*,m.email AS member_email, created AS lost_added FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=14 -- 16:18:46.234 SQL [28168]: Found rows: 1 -- 16:18:46.234 FLOG_MAX [28168]: load_db_record(SELECT m.firstname,p.*,m.email AS member_email, created AS lost_added FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=14 ) num_cols=12 -- 16:18:46.234 FLOG_MAX [28168]: CGI Parsing: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 16:18:46.234 FLOG_MAX [28168]: Template '/home/oameye/coregrade/coregrade/email//start_losspass.mailfile' loaded: 1586 bytes -- 16:18:46.234 FLOG_MAX [28168]: Returning from FormFile() -- 16:18:46.234 FLOG_MAX [28168]: Template parsed: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 16:18:46.234 FLOG_MAX [28168]: ESMTP( 10.0.0.23, support@coregrade.com, ses66181+563@gmail.com ) -- 16:18:46.234 FLOG_MAX [28168]: Prepare body -- 16:18:46.234 FLOG_MAX [28168]: Locate & extract subject -- 16:18:46.234 FLOG_MAX [28168]: Found subject: CoreGrade - Password Reset for ses66181+563@gmail.com -- 16:18:46.234 FLOG_MAX [28168]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t ses66181+563@gmail.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'CoreGrade - Password Reset for ses66181+563@gmail.com ' -M ' - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
CoreGrade
-Dear Olu -
-We have initiated your password reset process as requested as by you on 2020-04-12 16:18:46.231764: -
- - - - -
Click the linkhttps://oameye.works.coregrade.com/auth/passreset?rlink=1951abede0908fe0630e5931d11f01ae
Link will expire
-
-
-If it was not at your request, then please contact CoreGrade support immediately. - -For further support go to our website at https://oameye.works.coregrade.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing CoreGrade. -CoreGrade Team. - -
-
- -
- - - - - - ' -- 16:18:46.292 FLOG_MAX [28168]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Password Reset for ses66181+563@gmail.com -From: CoreGrade Support -Date: Sun, 12 Apr 2020 16:18:46 -0400 -To: ses66181+563@gmail.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="Zdc0Nsp4ZazcXZYx" -Mime-version: 1.0 - - ---Zdc0Nsp4ZazcXZYx -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
CoreGrade
-Dear Olu -
-We have initiated your password reset process as requested as by you on 2020-04-12 16:18:46.231764: -
- - - - -
Click the linkhttps://oameye.works.coregrade.com/auth/passreset?rlink=1951abede0908fe0630e5931d11f01ae
Link will expire
-
-
-If it was not at your request, then please contact CoreGrade support immediately. - -For further support go to our website at https://oameye.works.coregrade.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing CoreGrade. -CoreGrade Team. - -
-
- -
- - - - - - - - ---Zdc0Nsp4ZazcXZYx-- - -[C] . -[S] 250 2.0.0 Ok: queued as 432D92111752 -[C] QUIT -[S] 221 2.0.0 Bye - -- 16:18:46.292 FLOG_MAX [28168]: - -END OF PIPE OUTPUT - - -- 16:18:46.293 FLOG_MAX [28168]: /ESMTP() -- 16:18:46.293 INFO [28168]: /member_email_calls() -- 16:18:46.293 INFO [28168]: RET: member_id=9 -- 16:18:46.293 INFO [28168]: RET: mode=100 -- 16:18:46.293 INFO [28168]: RET: reset_id=14 -- 16:18:46.293 INFO [28168]: RET: reset_key=YOU WILL GET THIS IF PIN IS CORRECT IN CONFIRM -- 16:18:46.293 INFO [28168]: RET: reset_seed=2020-04-12 16:18:46.226444-04 -- 16:18:46.293 INFO [28168]: RET: reset_seed==REMOVED -- 16:18:46.293 INFO [28168]: RET: result=YES I GET TO BACK END -- 16:18:46.295 INFO [28168]: COREGRADE is stopping... -- 16:18:46.295 DEBUG [28168]: Closing database connection -- 16:18:46.295 SQL [28168]: pgsql_close() -- 16:18:46.191 DEBUG [28168]: Database connection successful -- 16:18:46.191 INFO [28168]: _SERVER found -- 16:18:46.191 INFO [28168]: REMOTE_ADDR = 10.0.0.15 -- 16:18:46.191 INFO [28168]: SERVER_NAME = oameye.works.coregrade.com -- 16:18:46.191 INFO [28168]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=o6fbnkcsrbviej50gcs769d922gsm1mg; _gat_gtag_UA_54829827_2=1 -- 16:18:46.191 INFO [28168]: QUERY_STRING = /auth/resetpass -- 16:18:46.191 INFO [28168]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:18:46.295 INFO [28168]: COREGRADE is stopping... -- 16:18:46.295 DEBUG [28168]: Closing database connection -- 16:18:46.295 SQL [28168]: pgsql_close() -- 16:18:56.141 INFO [28002]: COREGRADE is starting... -- 16:18:56.141 INFO [28002]: Version from config: 1.0 -- 16:18:56.141 DEBUG [28002]: Connecting to database... -- 16:18:56.141 DEBUG [28002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:18:56.141 SQL [28002]: pgsql_db_connect() -- 16:18:56.178 INFO [28002]: COREGRADE is starting... -- 16:18:56.178 INFO [28002]: Version from config: 1.0 -- 16:18:56.178 DEBUG [28002]: Connecting to database... -- 16:18:56.178 DEBUG [28002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:18:56.178 SQL [28002]: pgsql_db_connect() -- 16:18:56.182 DEBUG [28002]: Database connection successful -- 16:18:56.182 INFO [28002]: _SERVER found -- 16:18:56.182 INFO [28002]: REMOTE_ADDR = 10.0.0.15 -- 16:18:56.182 INFO [28002]: SERVER_NAME = oameye.works.coregrade.com -- 16:18:56.182 INFO [28002]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; _gid=GA1.2.120824816.1586655078; ci_session=b10gnuikofrd5j4jlfmfas2gcr7sqmck -- 16:18:56.182 INFO [28002]: QUERY_STRING = rlink=1951abede0908fe0630e5931d11f01ae -- 16:18:56.182 INFO [28002]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:18:56.182 INFO [28002]: SystemStatus()09-09-********~************ -- 16:18:56.182 INFO [28002]: long coregrade_api_main(CVars in, CVars &out) -- 16:18:56.182 INFO [28002]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 16:18:56.182 INFO [28002]: account calls -- 16:18:56.182 INFO [28002]: account_calls() -- 16:18:56.182 INFO [28002]: passwordReset() -- 16:18:56.182 INFO [28002]: confirmPassReset() -- 16:18:56.182 FLOG_MAX [28002]: REQ_STRING(reset_key) -- 16:18:56.182 FLOG_MAX [28002]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:18:56.182 SQL [28002]: pgsql_query() -- 16:18:56.182 SQL [28002]: About to run query: -- 16:18:56.182 SQL [28002]: SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='1951abede0908fe0630e5931d11f01ae' -- 16:18:56.185 SQL [28002]: Found rows: 1 -- 16:18:56.185 FLOG_MAX [28002]: load_db_record(SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='1951abede0908fe0630e5931d11f01ae' ) num_cols=10 -- 16:18:56.185 SQL [28002]: pgsql_query() -- 16:18:56.185 SQL [28002]: About to run query: -- 16:18:56.185 SQL [28002]: UPDATE password_reset SET status = 1 WHERE id =14 -- 16:18:56.186 SQL [28002]: Found rows: 0 -- 16:18:56.186 SQL [28002]: Found rows: 0 -- 16:18:56.186 INFO [28002]: RET: created=2020-04-12 16:18:46.231764 -- 16:18:56.186 INFO [28002]: RET: expired= -- 16:18:56.186 INFO [28002]: RET: id=14 -- 16:18:56.186 INFO [28002]: RET: loc=10.0.0.15 -- 16:18:56.186 INFO [28002]: RET: member_id=9 -- 16:18:56.186 INFO [28002]: RET: reset_id=14 -- 16:18:56.186 INFO [28002]: RET: reset_key=1951abede0908fe0630e5931d11f01ae -- 16:18:56.186 INFO [28002]: RET: reset_pin=51338 -- 16:18:56.186 INFO [28002]: RET: result=YES I GET TO BACK END -- 16:18:56.186 INFO [28002]: RET: status=0 -- 16:18:56.186 INFO [28002]: RET: username=ses66181+563@gmail.com -- 16:18:56.188 INFO [28002]: COREGRADE is stopping... -- 16:18:56.188 DEBUG [28002]: Closing database connection -- 16:18:56.188 SQL [28002]: pgsql_close() -- 16:18:56.145 DEBUG [28002]: Database connection successful -- 16:18:56.145 INFO [28002]: _SERVER found -- 16:18:56.145 INFO [28002]: REMOTE_ADDR = 10.0.0.15 -- 16:18:56.145 INFO [28002]: SERVER_NAME = oameye.works.coregrade.com -- 16:18:56.145 INFO [28002]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; _gid=GA1.2.120824816.1586655078; ci_session=b10gnuikofrd5j4jlfmfas2gcr7sqmck -- 16:18:56.145 INFO [28002]: QUERY_STRING = /auth/passreset -- 16:18:56.145 INFO [28002]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:18:56.188 INFO [28002]: COREGRADE is stopping... -- 16:18:56.188 DEBUG [28002]: Closing database connection -- 16:18:56.188 SQL [28002]: pgsql_close() -- 16:18:56.309 INFO [28002]: COREGRADE is starting... -- 16:18:56.310 INFO [28002]: Version from config: 1.0 -- 16:18:56.310 DEBUG [28002]: Connecting to database... -- 16:18:56.310 DEBUG [28002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:18:56.310 SQL [28002]: pgsql_db_connect() -- 16:18:56.314 DEBUG [28002]: Database connection successful -- 16:18:56.314 INFO [28002]: _SERVER found -- 16:18:56.314 INFO [28002]: REMOTE_ADDR = 10.0.0.15 -- 16:18:56.314 INFO [28002]: SERVER_NAME = oameye.works.coregrade.com -- 16:18:56.314 INFO [28002]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; _gid=GA1.2.120824816.1586655078; ci_session=uc48mlv2s277qeoqf1bqudb2naobruvi -- 16:18:56.314 INFO [28002]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:18:56.314 INFO [28002]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:18:56.325 INFO [28002]: COREGRADE is stopping... -- 16:18:56.325 DEBUG [28002]: Closing database connection -- 16:18:56.325 SQL [28002]: pgsql_close() -- 16:19:44.045 INFO [27922]: COREGRADE is starting... -- 16:19:44.046 INFO [27922]: Version from config: 1.0 -- 16:19:44.046 DEBUG [27922]: Connecting to database... -- 16:19:44.046 DEBUG [27922]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:19:44.046 SQL [27922]: pgsql_db_connect() -- 16:19:44.050 DEBUG [27922]: Database connection successful -- 16:19:44.050 INFO [27922]: _SERVER found -- 16:19:44.050 INFO [27922]: REMOTE_ADDR = 10.0.0.15 -- 16:19:44.050 INFO [27922]: SERVER_NAME = oameye.works.coregrade.com -- 16:19:44.050 INFO [27922]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=p1lmset1ihr0itp8girebmj5ot2710v8 -- 16:19:44.050 INFO [27922]: QUERY_STRING = -- 16:19:44.050 INFO [27922]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:19:44.083 INFO [27922]: COREGRADE is stopping... -- 16:19:44.083 DEBUG [27922]: Closing database connection -- 16:19:44.084 SQL [27922]: pgsql_close() -- 16:19:44.219 INFO [27922]: COREGRADE is starting... -- 16:19:44.219 INFO [27922]: Version from config: 1.0 -- 16:19:44.219 DEBUG [27922]: Connecting to database... -- 16:19:44.219 DEBUG [27922]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:19:44.219 SQL [27922]: pgsql_db_connect() -- 16:19:44.224 DEBUG [27922]: Database connection successful -- 16:19:44.224 INFO [27922]: _SERVER found -- 16:19:44.224 INFO [27922]: REMOTE_ADDR = 10.0.0.15 -- 16:19:44.224 INFO [27922]: SERVER_NAME = oameye.works.coregrade.com -- 16:19:44.224 INFO [27922]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=cgi4vkd0nrkj0chu027ru4vlpnp41mhb -- 16:19:44.224 INFO [27922]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:19:44.224 INFO [27922]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:19:44.235 INFO [27922]: COREGRADE is stopping... -- 16:19:44.235 DEBUG [27922]: Closing database connection -- 16:19:44.235 SQL [27922]: pgsql_close() -- 16:19:49.173 INFO [27922]: COREGRADE is starting... -- 16:19:49.174 INFO [27922]: Version from config: 1.0 -- 16:19:49.174 DEBUG [27922]: Connecting to database... -- 16:19:49.174 DEBUG [27922]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:19:49.174 SQL [27922]: pgsql_db_connect() -- 16:19:49.178 DEBUG [27922]: Database connection successful -- 16:19:49.178 INFO [27922]: _SERVER found -- 16:19:49.178 INFO [27922]: REMOTE_ADDR = 10.0.0.15 -- 16:19:49.178 INFO [27922]: SERVER_NAME = oameye.works.coregrade.com -- 16:19:49.178 INFO [27922]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=cgi4vkd0nrkj0chu027ru4vlpnp41mhb; _gat_gtag_UA_54829827_2=1 -- 16:19:49.178 INFO [27922]: QUERY_STRING = -- 16:19:49.178 INFO [27922]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:19:49.209 INFO [27922]: COREGRADE is stopping... -- 16:19:49.209 DEBUG [27922]: Closing database connection -- 16:19:49.209 SQL [27922]: pgsql_close() -- 16:20:34.417 INFO [27867]: COREGRADE is starting... -- 16:20:34.417 INFO [27867]: Version from config: 1.0 -- 16:20:34.417 DEBUG [27867]: Connecting to database... -- 16:20:34.417 DEBUG [27867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:20:34.417 SQL [27867]: pgsql_db_connect() -- 16:20:34.422 DEBUG [27867]: Database connection successful -- 16:20:34.422 INFO [27867]: _SERVER found -- 16:20:34.422 INFO [27867]: REMOTE_ADDR = 10.0.0.15 -- 16:20:34.422 INFO [27867]: SERVER_NAME = oameye.works.coregrade.com -- 16:20:34.422 INFO [27867]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=cgi4vkd0nrkj0chu027ru4vlpnp41mhb; _gat_gtag_UA_54829827_2=1 -- 16:20:34.422 INFO [27867]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 16:20:34.422 INFO [27867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:20:34.433 INFO [27867]: COREGRADE is stopping... -- 16:20:34.434 DEBUG [27867]: Closing database connection -- 16:20:34.434 SQL [27867]: pgsql_close() -- 16:22:31.800 INFO [27865]: COREGRADE is starting... -- 16:22:31.800 INFO [27865]: Version from config: 1.0 -- 16:22:31.800 DEBUG [27865]: Connecting to database... -- 16:22:31.800 DEBUG [27865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:22:31.800 SQL [27865]: pgsql_db_connect() -- 16:22:31.805 DEBUG [27865]: Database connection successful -- 16:22:31.805 INFO [27865]: _SERVER found -- 16:22:31.805 INFO [27865]: REMOTE_ADDR = 10.0.0.15 -- 16:22:31.805 INFO [27865]: SERVER_NAME = oameye.works.coregrade.com -- 16:22:31.805 INFO [27865]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=o6fbnkcsrbviej50gcs769d922gsm1mg -- 16:22:31.805 INFO [27865]: QUERY_STRING = -- 16:22:31.805 INFO [27865]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:22:31.844 INFO [27865]: COREGRADE is stopping... -- 16:22:31.844 DEBUG [27865]: Closing database connection -- 16:22:31.844 SQL [27865]: pgsql_close() -- 16:22:31.990 INFO [27865]: COREGRADE is starting... -- 16:22:31.990 INFO [27865]: Version from config: 1.0 -- 16:22:31.990 DEBUG [27865]: Connecting to database... -- 16:22:31.990 DEBUG [27865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:22:31.990 SQL [27865]: pgsql_db_connect() -- 16:22:31.994 DEBUG [27865]: Database connection successful -- 16:22:31.994 INFO [27865]: _SERVER found -- 16:22:31.994 INFO [27865]: REMOTE_ADDR = 10.0.0.15 -- 16:22:31.994 INFO [27865]: SERVER_NAME = oameye.works.coregrade.com -- 16:22:31.994 INFO [27865]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=o6fbnkcsrbviej50gcs769d922gsm1mg -- 16:22:31.994 INFO [27865]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:22:31.994 INFO [27865]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:22:32.005 INFO [27865]: COREGRADE is stopping... -- 16:22:32.006 DEBUG [27865]: Closing database connection -- 16:22:32.006 SQL [27865]: pgsql_close() -- 16:22:34.532 INFO [27865]: COREGRADE is starting... -- 16:22:34.533 INFO [27865]: Version from config: 1.0 -- 16:22:34.533 DEBUG [27865]: Connecting to database... -- 16:22:34.533 DEBUG [27865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:22:34.533 SQL [27865]: pgsql_db_connect() -- 16:22:34.539 INFO [27863]: COREGRADE is starting... -- 16:22:34.540 INFO [27863]: Version from config: 1.0 -- 16:22:34.540 DEBUG [27863]: Connecting to database... -- 16:22:34.540 DEBUG [27863]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:22:34.540 SQL [27863]: pgsql_db_connect() -- 16:22:34.537 DEBUG [27865]: Database connection successful -- 16:22:34.537 INFO [27865]: _SERVER found -- 16:22:34.537 INFO [27865]: REMOTE_ADDR = 10.0.0.15 -- 16:22:34.537 INFO [27865]: SERVER_NAME = oameye.works.coregrade.com -- 16:22:34.537 INFO [27865]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=o6fbnkcsrbviej50gcs769d922gsm1mg; _gat_gtag_UA_54829827_2=1 -- 16:22:34.537 INFO [27865]: QUERY_STRING = /welcome/viewLogin -- 16:22:34.537 INFO [27865]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:22:34.568 INFO [27865]: COREGRADE is stopping... -- 16:22:34.568 DEBUG [27865]: Closing database connection -- 16:22:34.568 SQL [27865]: pgsql_close() -- 16:22:34.544 DEBUG [27863]: Database connection successful -- 16:22:34.544 INFO [27863]: _SERVER found -- 16:22:34.544 INFO [27863]: REMOTE_ADDR = 10.0.0.15 -- 16:22:34.544 INFO [27863]: SERVER_NAME = oameye.works.coregrade.com -- 16:22:34.544 INFO [27863]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=o6fbnkcsrbviej50gcs769d922gsm1mg; _gat_gtag_UA_54829827_2=1 -- 16:22:34.544 INFO [27863]: QUERY_STRING = /auth -- 16:22:34.544 INFO [27863]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:22:34.576 INFO [27863]: COREGRADE is stopping... -- 16:22:34.576 DEBUG [27863]: Closing database connection -- 16:22:34.576 SQL [27863]: pgsql_close() -- 16:22:34.601 INFO [27865]: COREGRADE is starting... -- 16:22:34.601 INFO [27865]: Version from config: 1.0 -- 16:22:34.601 DEBUG [27865]: Connecting to database... -- 16:22:34.601 DEBUG [27865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:22:34.601 SQL [27865]: pgsql_db_connect() -- 16:22:34.605 DEBUG [27865]: Database connection successful -- 16:22:34.605 INFO [27865]: _SERVER found -- 16:22:34.605 INFO [27865]: REMOTE_ADDR = 10.0.0.15 -- 16:22:34.605 INFO [27865]: SERVER_NAME = oameye.works.coregrade.com -- 16:22:34.605 INFO [27865]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=o6fbnkcsrbviej50gcs769d922gsm1mg; _gat_gtag_UA_54829827_2=1 -- 16:22:34.605 INFO [27865]: QUERY_STRING = /auth/index -- 16:22:34.605 INFO [27865]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:22:34.637 INFO [27865]: COREGRADE is stopping... -- 16:22:34.637 DEBUG [27865]: Closing database connection -- 16:22:34.637 SQL [27865]: pgsql_close() -- 16:22:37.147 INFO [27863]: COREGRADE is starting... -- 16:22:37.147 INFO [27863]: Version from config: 1.0 -- 16:22:37.147 DEBUG [27863]: Connecting to database... -- 16:22:37.147 DEBUG [27863]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:22:37.147 SQL [27863]: pgsql_db_connect() -- 16:22:37.152 DEBUG [27863]: Database connection successful -- 16:22:37.152 INFO [27863]: _SERVER found -- 16:22:37.152 INFO [27863]: REMOTE_ADDR = 10.0.0.15 -- 16:22:37.152 INFO [27863]: SERVER_NAME = oameye.works.coregrade.com -- 16:22:37.152 INFO [27863]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=o6fbnkcsrbviej50gcs769d922gsm1mg; _gat_gtag_UA_54829827_2=1 -- 16:22:37.152 INFO [27863]: QUERY_STRING = /auth/resetpass -- 16:22:37.152 INFO [27863]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:22:37.183 INFO [27863]: COREGRADE is stopping... -- 16:22:37.183 DEBUG [27863]: Closing database connection -- 16:22:37.183 SQL [27863]: pgsql_close() -- 16:22:39.897 INFO [27863]: COREGRADE is starting... -- 16:22:39.898 INFO [27863]: Version from config: 1.0 -- 16:22:39.898 DEBUG [27863]: Connecting to database... -- 16:22:39.898 DEBUG [27863]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:22:39.898 SQL [27863]: pgsql_db_connect() -- 16:22:39.942 INFO [27863]: COREGRADE is starting... -- 16:22:39.942 INFO [27863]: Version from config: 1.0 -- 16:22:39.942 DEBUG [27863]: Connecting to database... -- 16:22:39.942 DEBUG [27863]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:22:39.942 SQL [27863]: pgsql_db_connect() -- 16:22:39.947 DEBUG [27863]: Database connection successful -- 16:22:39.947 INFO [27863]: _SERVER found -- 16:22:39.947 INFO [27863]: REMOTE_ADDR = 10.0.0.15 -- 16:22:39.947 INFO [27863]: SERVER_NAME = oameye.works.coregrade.com -- 16:22:39.947 INFO [27863]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=o6fbnkcsrbviej50gcs769d922gsm1mg; _gat_gtag_UA_54829827_2=1 -- 16:22:39.947 INFO [27863]: QUERY_STRING = -- 16:22:39.947 INFO [27863]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:22:39.947 INFO [27863]: SystemStatus()09-09-********~************ -- 16:22:39.947 INFO [27863]: long coregrade_api_main(CVars in, CVars &out) -- 16:22:39.947 INFO [27863]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 16:22:39.947 INFO [27863]: account calls -- 16:22:39.947 INFO [27863]: account_calls() -- 16:22:39.947 INFO [27863]: passwordReset() -- 16:22:39.947 INFO [27863]: startPassReset() -- 16:22:39.947 FLOG_MAX [27863]: REQ_STRING(username) -- 16:22:39.947 FLOG_MAX [27863]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:22:39.947 SQL [27863]: pgsql_query() -- 16:22:39.947 SQL [27863]: About to run query: -- 16:22:39.947 SQL [27863]: SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('ses66181+563@gmail.com') -- 16:22:39.949 SQL [27863]: Found rows: 1 -- 16:22:39.949 FLOG_MAX [27863]: load_db_record(SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('ses66181+563@gmail.com') ) num_cols=2 -- 16:22:39.949 SQL [27863]: pgsql_exec() -- 16:22:39.949 SQL [27863]: About to run query: -- 16:22:39.949 SQL [27863]: UPDATE password_reset SET status=7 WHERE status NOT IN (3,5) AND member_id=9 -- 16:22:39.951 SQL [27863]: PQcmdTuples: 7 -- 16:22:39.951 SQL [27863]: Affected rows: 7 -- 16:22:39.951 FLOG_MAX [27863]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:22:39.951 SQL [27863]: pgsql_query() -- 16:22:39.951 SQL [27863]: About to run query: -- 16:22:39.951 SQL [27863]: SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 16:22:39.94752-04') AS reset_key -- 16:22:39.952 SQL [27863]: Found rows: 1 -- 16:22:39.952 FLOG_MAX [27863]: load_db_record(SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 16:22:39.94752-04') AS reset_key) num_cols=2 -- 16:22:39.952 FLOG_MAX [27863]: insert_db_record() -- 16:22:39.952 SQL [27863]: pgsql_exec() -- 16:22:39.952 SQL [27863]: About to run query: -- 16:22:39.952 SQL [27863]: INSERT INTO password_reset (loc,member_id,reset_key,reset_pin,username) VALUES ('10.0.0.15','9','4b67535bfcefc66cad40d57ef019ca98','56631','ses66181+563@gmail.com') -- 16:22:39.953 SQL [27863]: PQcmdTuples: 1 -- 16:22:39.953 SQL [27863]: Affected rows: 1 -- 16:22:39.953 FLOG_MAX [27863]: SELECT currval('password_reset_id_seq') -- 16:22:39.953 SQL [27863]: pgsql_query() -- 16:22:39.953 SQL [27863]: About to run query: -- 16:22:39.953 SQL [27863]: SELECT currval('password_reset_id_seq') -- 16:22:39.953 SQL [27863]: Found rows: 1 -- 16:22:39.953 INFO [27863]: member_email_calls() -- 16:22:39.954 FLOG_MAX [27863]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:22:39.954 SQL [27863]: pgsql_query() -- 16:22:39.954 SQL [27863]: About to run query: -- 16:22:39.954 SQL [27863]: SELECT m.firstname,p.*,m.email AS member_email, created AS lost_added FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=15 -- 16:22:39.955 SQL [27863]: Found rows: 1 -- 16:22:39.955 FLOG_MAX [27863]: load_db_record(SELECT m.firstname,p.*,m.email AS member_email, created AS lost_added FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=15 ) num_cols=12 -- 16:22:39.955 FLOG_MAX [27863]: CGI Parsing: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 16:22:39.955 FLOG_MAX [27863]: Template '/home/oameye/coregrade/coregrade/email//start_losspass.mailfile' loaded: 1586 bytes -- 16:22:39.955 FLOG_MAX [27863]: Returning from FormFile() -- 16:22:39.955 FLOG_MAX [27863]: Template parsed: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 16:22:39.955 FLOG_MAX [27863]: ESMTP( 10.0.0.23, support@coregrade.com, ses66181+563@gmail.com ) -- 16:22:39.955 FLOG_MAX [27863]: Prepare body -- 16:22:39.955 FLOG_MAX [27863]: Locate & extract subject -- 16:22:39.955 FLOG_MAX [27863]: Found subject: CoreGrade - Password Reset for ses66181+563@gmail.com -- 16:22:39.955 FLOG_MAX [27863]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t ses66181+563@gmail.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'CoreGrade - Password Reset for ses66181+563@gmail.com ' -M ' - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
CoreGrade
-Dear Olu -
-We have initiated your password reset process as requested as by you on 2020-04-12 16:22:39.952563: -
- - - - -
Click the linkhttps://oameye.works.coregrade.com/auth/passreset?rlink=4b67535bfcefc66cad40d57ef019ca98
Link will expire
-
-
-If it was not at your request, then please contact CoreGrade support immediately. - -For further support go to our website at https://oameye.works.coregrade.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing CoreGrade. -CoreGrade Team. - -
-
- -
- - - - - - ' -- 16:22:40.014 FLOG_MAX [27863]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Password Reset for ses66181+563@gmail.com -From: CoreGrade Support -Date: Sun, 12 Apr 2020 16:22:39 -0400 -To: ses66181+563@gmail.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="8WpnT4poy0qTrPf6" -Mime-version: 1.0 - - ---8WpnT4poy0qTrPf6 -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
CoreGrade
-Dear Olu -
-We have initiated your password reset process as requested as by you on 2020-04-12 16:22:39.952563: -
- - - - -
Click the linkhttps://oameye.works.coregrade.com/auth/passreset?rlink=4b67535bfcefc66cad40d57ef019ca98
Link will expire
-
-
-If it was not at your request, then please contact CoreGrade support immediately. - -For further support go to our website at https://oameye.works.coregrade.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing CoreGrade. -CoreGrade Team. - -
-
- -
- - - - - - - - ---8WpnT4poy0qTrPf6-- - -[C] . -[S] 250 2.0.0 Ok: queued as F34412111769 -[C] QUIT -[S] 221 2.0.0 Bye -jU -- 16:22:40.014 FLOG_MAX [27863]: - -END OF PIPE OUTPUT - - -- 16:22:40.014 FLOG_MAX [27863]: /ESMTP() -- 16:22:40.014 INFO [27863]: /member_email_calls() -- 16:22:40.014 INFO [27863]: RET: member_id=9 -- 16:22:40.014 INFO [27863]: RET: mode=100 -- 16:22:40.014 INFO [27863]: RET: reset_id=15 -- 16:22:40.014 INFO [27863]: RET: reset_key=YOU WILL GET THIS IF PIN IS CORRECT IN CONFIRM -- 16:22:40.014 INFO [27863]: RET: reset_seed=2020-04-12 16:22:39.94752-04 -- 16:22:40.014 INFO [27863]: RET: reset_seed==REMOVED -- 16:22:40.014 INFO [27863]: RET: result=YES I GET TO BACK END -- 16:22:40.016 INFO [27863]: COREGRADE is stopping... -- 16:22:40.016 DEBUG [27863]: Closing database connection -- 16:22:40.016 SQL [27863]: pgsql_close() -- 16:22:39.902 DEBUG [27863]: Database connection successful -- 16:22:39.902 INFO [27863]: _SERVER found -- 16:22:39.902 INFO [27863]: REMOTE_ADDR = 10.0.0.15 -- 16:22:39.902 INFO [27863]: SERVER_NAME = oameye.works.coregrade.com -- 16:22:39.902 INFO [27863]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=o6fbnkcsrbviej50gcs769d922gsm1mg; _gat_gtag_UA_54829827_2=1 -- 16:22:39.902 INFO [27863]: QUERY_STRING = /auth/resetpass -- 16:22:39.902 INFO [27863]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:22:40.016 INFO [27863]: COREGRADE is stopping... -- 16:22:40.016 DEBUG [27863]: Closing database connection -- 16:22:40.016 SQL [27863]: pgsql_close() -- 16:22:51.817 INFO [27864]: COREGRADE is starting... -- 16:22:51.817 INFO [27864]: Version from config: 1.0 -- 16:22:51.817 DEBUG [27864]: Connecting to database... -- 16:22:51.817 DEBUG [27864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:22:51.817 SQL [27864]: pgsql_db_connect() -- 16:22:51.853 INFO [27864]: COREGRADE is starting... -- 16:22:51.853 INFO [27864]: Version from config: 1.0 -- 16:22:51.853 DEBUG [27864]: Connecting to database... -- 16:22:51.853 DEBUG [27864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:22:51.853 SQL [27864]: pgsql_db_connect() -- 16:22:51.857 DEBUG [27864]: Database connection successful -- 16:22:51.857 INFO [27864]: _SERVER found -- 16:22:51.857 INFO [27864]: REMOTE_ADDR = 10.0.0.15 -- 16:22:51.857 INFO [27864]: SERVER_NAME = oameye.works.coregrade.com -- 16:22:51.857 INFO [27864]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; _gid=GA1.2.120824816.1586655078; ci_session=uc48mlv2s277qeoqf1bqudb2naobruvi -- 16:22:51.857 INFO [27864]: QUERY_STRING = rlink=4b67535bfcefc66cad40d57ef019ca98 -- 16:22:51.857 INFO [27864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:22:51.857 INFO [27864]: SystemStatus()09-09-********~************ -- 16:22:51.857 INFO [27864]: long coregrade_api_main(CVars in, CVars &out) -- 16:22:51.857 INFO [27864]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 16:22:51.857 INFO [27864]: account calls -- 16:22:51.857 INFO [27864]: account_calls() -- 16:22:51.857 INFO [27864]: passwordReset() -- 16:22:51.857 INFO [27864]: confirmPassReset() -- 16:22:51.857 FLOG_MAX [27864]: REQ_STRING(reset_key) -- 16:22:51.857 FLOG_MAX [27864]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:22:51.857 SQL [27864]: pgsql_query() -- 16:22:51.857 SQL [27864]: About to run query: -- 16:22:51.857 SQL [27864]: SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='4b67535bfcefc66cad40d57ef019ca98' -- 16:22:51.860 SQL [27864]: Found rows: 1 -- 16:22:51.860 FLOG_MAX [27864]: load_db_record(SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='4b67535bfcefc66cad40d57ef019ca98' ) num_cols=10 -- 16:22:51.860 SQL [27864]: pgsql_query() -- 16:22:51.860 SQL [27864]: About to run query: -- 16:22:51.860 SQL [27864]: UPDATE password_reset SET status = 1 WHERE id =15 -- 16:22:51.861 SQL [27864]: Found rows: 0 -- 16:22:51.861 SQL [27864]: Found rows: 0 -- 16:22:51.861 INFO [27864]: RET: created=2020-04-12 16:22:39.952563 -- 16:22:51.861 INFO [27864]: RET: expired= -- 16:22:51.861 INFO [27864]: RET: id=15 -- 16:22:51.861 INFO [27864]: RET: loc=10.0.0.15 -- 16:22:51.861 INFO [27864]: RET: member_id=9 -- 16:22:51.861 INFO [27864]: RET: reset_id=15 -- 16:22:51.861 INFO [27864]: RET: reset_key=4b67535bfcefc66cad40d57ef019ca98 -- 16:22:51.861 INFO [27864]: RET: reset_pin=56631 -- 16:22:51.861 INFO [27864]: RET: result=YES I GET TO BACK END -- 16:22:51.861 INFO [27864]: RET: status=0 -- 16:22:51.861 INFO [27864]: RET: username=ses66181+563@gmail.com -- 16:22:51.862 INFO [27864]: COREGRADE is stopping... -- 16:22:51.862 DEBUG [27864]: Closing database connection -- 16:22:51.862 SQL [27864]: pgsql_close() -- 16:22:51.821 DEBUG [27864]: Database connection successful -- 16:22:51.821 INFO [27864]: _SERVER found -- 16:22:51.821 INFO [27864]: REMOTE_ADDR = 10.0.0.15 -- 16:22:51.822 INFO [27864]: SERVER_NAME = oameye.works.coregrade.com -- 16:22:51.822 INFO [27864]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; _gid=GA1.2.120824816.1586655078; ci_session=uc48mlv2s277qeoqf1bqudb2naobruvi -- 16:22:51.822 INFO [27864]: QUERY_STRING = /auth/passreset -- 16:22:51.822 INFO [27864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:22:51.863 INFO [27864]: COREGRADE is stopping... -- 16:22:51.863 DEBUG [27864]: Closing database connection -- 16:22:51.863 SQL [27864]: pgsql_close() -- 16:22:51.981 INFO [27864]: COREGRADE is starting... -- 16:22:51.981 INFO [27864]: Version from config: 1.0 -- 16:22:51.981 DEBUG [27864]: Connecting to database... -- 16:22:51.981 DEBUG [27864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:22:51.981 SQL [27864]: pgsql_db_connect() -- 16:22:51.986 DEBUG [27864]: Database connection successful -- 16:22:51.986 INFO [27864]: _SERVER found -- 16:22:51.986 INFO [27864]: REMOTE_ADDR = 10.0.0.15 -- 16:22:51.986 INFO [27864]: SERVER_NAME = oameye.works.coregrade.com -- 16:22:51.986 INFO [27864]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; _gid=GA1.2.120824816.1586655078; ci_session=uc48mlv2s277qeoqf1bqudb2naobruvi -- 16:22:51.986 INFO [27864]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:22:51.986 INFO [27864]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:22:51.997 INFO [27864]: COREGRADE is stopping... -- 16:22:51.997 DEBUG [27864]: Closing database connection -- 16:22:51.997 SQL [27864]: pgsql_close() -- 16:23:42.043 INFO [27866]: COREGRADE is starting... -- 16:23:42.043 INFO [27866]: Version from config: 1.0 -- 16:23:42.043 DEBUG [27866]: Connecting to database... -- 16:23:42.043 DEBUG [27866]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:42.043 SQL [27866]: pgsql_db_connect() -- 16:23:42.047 DEBUG [27866]: Database connection successful -- 16:23:42.047 INFO [27866]: _SERVER found -- 16:23:42.047 INFO [27866]: REMOTE_ADDR = 10.0.0.15 -- 16:23:42.047 INFO [27866]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:42.047 INFO [27866]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; _gid=GA1.2.120824816.1586655078; ci_session=uc48mlv2s277qeoqf1bqudb2naobruvi -- 16:23:42.047 INFO [27866]: QUERY_STRING = /auth/completereset -- 16:23:42.047 INFO [27866]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:42.081 INFO [27866]: COREGRADE is stopping... -- 16:23:42.081 DEBUG [27866]: Closing database connection -- 16:23:42.081 SQL [27866]: pgsql_close() -- 16:23:42.182 INFO [27866]: COREGRADE is starting... -- 16:23:42.182 INFO [27866]: Version from config: 1.0 -- 16:23:42.182 DEBUG [27866]: Connecting to database... -- 16:23:42.182 DEBUG [27866]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:42.182 SQL [27866]: pgsql_db_connect() -- 16:23:42.186 DEBUG [27866]: Database connection successful -- 16:23:42.186 INFO [27866]: _SERVER found -- 16:23:42.186 INFO [27866]: REMOTE_ADDR = 10.0.0.15 -- 16:23:42.186 INFO [27866]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:42.186 INFO [27866]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; _gid=GA1.2.120824816.1586655078; ci_session=uc48mlv2s277qeoqf1bqudb2naobruvi -- 16:23:42.186 INFO [27866]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:23:42.186 INFO [27866]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:23:42.197 INFO [27866]: COREGRADE is stopping... -- 16:23:42.197 DEBUG [27866]: Closing database connection -- 16:23:42.197 SQL [27866]: pgsql_close() -- 16:24:30.581 INFO [28166]: COREGRADE is starting... -- 16:24:30.582 INFO [28166]: Version from config: 1.0 -- 16:24:30.582 DEBUG [28166]: Connecting to database... -- 16:24:30.582 DEBUG [28166]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:24:30.582 SQL [28166]: pgsql_db_connect() -- 16:24:30.587 DEBUG [28166]: Database connection successful -- 16:24:30.587 INFO [28166]: _SERVER found -- 16:24:30.587 INFO [28166]: REMOTE_ADDR = 10.0.0.15 -- 16:24:30.587 INFO [28166]: SERVER_NAME = oameye.works.coregrade.com -- 16:24:30.587 INFO [28166]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=cgi4vkd0nrkj0chu027ru4vlpnp41mhb -- 16:24:30.587 INFO [28166]: QUERY_STRING = -- 16:24:30.587 INFO [28166]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:24:30.626 INFO [28166]: COREGRADE is stopping... -- 16:24:30.626 DEBUG [28166]: Closing database connection -- 16:24:30.626 SQL [28166]: pgsql_close() -- 16:25:42.715 INFO [28167]: COREGRADE is starting... -- 16:25:42.715 INFO [28167]: Version from config: 1.0 -- 16:25:42.715 DEBUG [28167]: Connecting to database... -- 16:25:42.715 DEBUG [28167]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:42.715 SQL [28167]: pgsql_db_connect() -- 16:25:42.720 DEBUG [28167]: Database connection successful -- 16:25:42.720 INFO [28167]: _SERVER found -- 16:25:42.720 INFO [28167]: REMOTE_ADDR = 10.0.0.15 -- 16:25:42.720 INFO [28167]: SERVER_NAME = oameye.works.coregrade.com -- 16:25:42.720 INFO [28167]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; _gid=GA1.2.120824816.1586655078; ci_session=uc48mlv2s277qeoqf1bqudb2naobruvi -- 16:25:42.720 INFO [28167]: QUERY_STRING = /passreset -- 16:25:42.720 INFO [28167]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:42.732 INFO [28167]: COREGRADE is stopping... -- 16:25:42.732 DEBUG [28167]: Closing database connection -- 16:25:42.732 SQL [28167]: pgsql_close() -- 16:26:23.193 INFO [28168]: COREGRADE is starting... -- 16:26:23.194 INFO [28168]: Version from config: 1.0 -- 16:26:23.194 DEBUG [28168]: Connecting to database... -- 16:26:23.194 DEBUG [28168]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:23.194 SQL [28168]: pgsql_db_connect() -- 16:26:23.232 INFO [28168]: COREGRADE is starting... -- 16:26:23.232 INFO [28168]: Version from config: 1.0 -- 16:26:23.232 DEBUG [28168]: Connecting to database... -- 16:26:23.232 DEBUG [28168]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:23.232 SQL [28168]: pgsql_db_connect() -- 16:26:23.237 DEBUG [28168]: Database connection successful -- 16:26:23.237 INFO [28168]: _SERVER found -- 16:26:23.237 INFO [28168]: REMOTE_ADDR = 10.0.0.15 -- 16:26:23.237 INFO [28168]: SERVER_NAME = oameye.works.coregrade.com -- 16:26:23.237 INFO [28168]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; _gid=GA1.2.120824816.1586655078; ci_session=uc48mlv2s277qeoqf1bqudb2naobruvi -- 16:26:23.237 INFO [28168]: QUERY_STRING = rlink=6b719b3a46dfa42dad09ae5653b4741c -- 16:26:23.237 INFO [28168]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:23.237 INFO [28168]: SystemStatus()09-09-********~************ -- 16:26:23.237 INFO [28168]: long coregrade_api_main(CVars in, CVars &out) -- 16:26:23.237 INFO [28168]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 16:26:23.237 INFO [28168]: account calls -- 16:26:23.237 INFO [28168]: account_calls() -- 16:26:23.237 INFO [28168]: passwordReset() -- 16:26:23.237 INFO [28168]: confirmPassReset() -- 16:26:23.237 FLOG_MAX [28168]: REQ_STRING(reset_key) -- 16:26:23.237 FLOG_MAX [28168]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:26:23.237 SQL [28168]: pgsql_query() -- 16:26:23.237 SQL [28168]: About to run query: -- 16:26:23.237 SQL [28168]: SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='6b719b3a46dfa42dad09ae5653b4741c' -- 16:26:23.240 SQL [28168]: Found rows: 0 -- 16:26:23.240 SQL [28168]: Found rows: 0 -- 16:26:23.240 INFO [28168]: RET: id= -- 16:26:23.240 INFO [28168]: RET: result=YES I GET TO BACK END -- 16:26:23.240 INFO [28168]: RET: status_advice=Contact support or Start all over -- 16:26:23.240 INFO [28168]: RET: status_message=Invalid PIN or disabled account -- 16:26:23.241 INFO [28168]: COREGRADE is stopping... -- 16:26:23.241 DEBUG [28168]: Closing database connection -- 16:26:23.242 SQL [28168]: pgsql_close() -- 16:26:23.198 DEBUG [28168]: Database connection successful -- 16:26:23.198 INFO [28168]: _SERVER found -- 16:26:23.198 INFO [28168]: REMOTE_ADDR = 10.0.0.15 -- 16:26:23.198 INFO [28168]: SERVER_NAME = oameye.works.coregrade.com -- 16:26:23.198 INFO [28168]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; _gid=GA1.2.120824816.1586655078; ci_session=uc48mlv2s277qeoqf1bqudb2naobruvi -- 16:26:23.198 INFO [28168]: QUERY_STRING = /auth/passreset -- 16:26:23.198 INFO [28168]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:23.242 INFO [28168]: COREGRADE is stopping... -- 16:26:23.242 DEBUG [28168]: Closing database connection -- 16:26:23.242 SQL [28168]: pgsql_close() -- 16:26:23.364 INFO [28168]: COREGRADE is starting... -- 16:26:23.365 INFO [28168]: Version from config: 1.0 -- 16:26:23.365 DEBUG [28168]: Connecting to database... -- 16:26:23.365 DEBUG [28168]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:23.365 SQL [28168]: pgsql_db_connect() -- 16:26:23.369 DEBUG [28168]: Database connection successful -- 16:26:23.369 INFO [28168]: _SERVER found -- 16:26:23.369 INFO [28168]: REMOTE_ADDR = 10.0.0.15 -- 16:26:23.369 INFO [28168]: SERVER_NAME = oameye.works.coregrade.com -- 16:26:23.369 INFO [28168]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; _gid=GA1.2.120824816.1586655078; ci_session=573l31dvj7kqrtcj6ermi8sauj86a9gn -- 16:26:23.369 INFO [28168]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:26:23.369 INFO [28168]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:23.381 INFO [28168]: COREGRADE is stopping... -- 16:26:23.381 DEBUG [28168]: Closing database connection -- 16:26:23.381 SQL [28168]: pgsql_close() -- 16:27:42.394 INFO [28002]: COREGRADE is starting... -- 16:27:42.395 INFO [28002]: Version from config: 1.0 -- 16:27:42.395 DEBUG [28002]: Connecting to database... -- 16:27:42.395 DEBUG [28002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:27:42.395 SQL [28002]: pgsql_db_connect() -- 16:27:42.432 INFO [28002]: COREGRADE is starting... -- 16:27:42.433 INFO [28002]: Version from config: 1.0 -- 16:27:42.433 DEBUG [28002]: Connecting to database... -- 16:27:42.433 DEBUG [28002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:27:42.433 SQL [28002]: pgsql_db_connect() -- 16:27:42.438 DEBUG [28002]: Database connection successful -- 16:27:42.438 INFO [28002]: _SERVER found -- 16:27:42.438 INFO [28002]: REMOTE_ADDR = 10.0.0.15 -- 16:27:42.438 INFO [28002]: SERVER_NAME = oameye.works.coregrade.com -- 16:27:42.438 INFO [28002]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=o6fbnkcsrbviej50gcs769d922gsm1mg -- 16:27:42.438 INFO [28002]: QUERY_STRING = rlink=6b719b3a46dfa42dad09ae5653b4741c -- 16:27:42.438 INFO [28002]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:27:42.438 INFO [28002]: SystemStatus()09-09-********~************ -- 16:27:42.438 INFO [28002]: long coregrade_api_main(CVars in, CVars &out) -- 16:27:42.438 INFO [28002]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 16:27:42.438 INFO [28002]: account calls -- 16:27:42.438 INFO [28002]: account_calls() -- 16:27:42.438 INFO [28002]: passwordReset() -- 16:27:42.438 INFO [28002]: confirmPassReset() -- 16:27:42.438 FLOG_MAX [28002]: REQ_STRING(reset_key) -- 16:27:42.438 FLOG_MAX [28002]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:27:42.438 SQL [28002]: pgsql_query() -- 16:27:42.438 SQL [28002]: About to run query: -- 16:27:42.438 SQL [28002]: SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='6b719b3a46dfa42dad09ae5653b4741c' -- 16:27:42.441 SQL [28002]: Found rows: 0 -- 16:27:42.441 SQL [28002]: Found rows: 0 -- 16:27:42.441 INFO [28002]: RET: id= -- 16:27:42.441 INFO [28002]: RET: result=YES I GET TO BACK END -- 16:27:42.441 INFO [28002]: RET: status_advice=Contact support or Start all over -- 16:27:42.441 INFO [28002]: RET: status_message=Invalid PIN or disabled account -- 16:27:42.442 INFO [28002]: COREGRADE is stopping... -- 16:27:42.442 DEBUG [28002]: Closing database connection -- 16:27:42.442 SQL [28002]: pgsql_close() -- 16:27:42.400 DEBUG [28002]: Database connection successful -- 16:27:42.400 INFO [28002]: _SERVER found -- 16:27:42.400 INFO [28002]: REMOTE_ADDR = 10.0.0.15 -- 16:27:42.400 INFO [28002]: SERVER_NAME = oameye.works.coregrade.com -- 16:27:42.400 INFO [28002]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=o6fbnkcsrbviej50gcs769d922gsm1mg -- 16:27:42.400 INFO [28002]: QUERY_STRING = /auth/passreset -- 16:27:42.400 INFO [28002]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:27:42.443 INFO [28002]: COREGRADE is stopping... -- 16:27:42.443 DEBUG [28002]: Closing database connection -- 16:27:42.443 SQL [28002]: pgsql_close() -- 16:27:42.616 INFO [28002]: COREGRADE is starting... -- 16:27:42.616 INFO [28002]: Version from config: 1.0 -- 16:27:42.616 DEBUG [28002]: Connecting to database... -- 16:27:42.616 DEBUG [28002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:27:42.616 SQL [28002]: pgsql_db_connect() -- 16:27:42.621 DEBUG [28002]: Database connection successful -- 16:27:42.621 INFO [28002]: _SERVER found -- 16:27:42.621 INFO [28002]: REMOTE_ADDR = 10.0.0.15 -- 16:27:42.621 INFO [28002]: SERVER_NAME = oameye.works.coregrade.com -- 16:27:42.621 INFO [28002]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=s48o9ktm9r25h2734mfs23n2mk4matae -- 16:27:42.621 INFO [28002]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:27:42.621 INFO [28002]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:27:42.632 INFO [28002]: COREGRADE is stopping... -- 16:27:42.632 DEBUG [28002]: Closing database connection -- 16:27:42.632 SQL [28002]: pgsql_close() -- 16:27:43.878 INFO [27922]: COREGRADE is starting... -- 16:27:43.879 INFO [27922]: Version from config: 1.0 -- 16:27:43.879 DEBUG [27922]: Connecting to database... -- 16:27:43.879 DEBUG [27922]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:27:43.879 SQL [27922]: pgsql_db_connect() -- 16:27:43.916 INFO [27922]: COREGRADE is starting... -- 16:27:43.916 INFO [27922]: Version from config: 1.0 -- 16:27:43.916 DEBUG [27922]: Connecting to database... -- 16:27:43.916 DEBUG [27922]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:27:43.916 SQL [27922]: pgsql_db_connect() -- 16:27:43.920 DEBUG [27922]: Database connection successful -- 16:27:43.920 INFO [27922]: _SERVER found -- 16:27:43.920 INFO [27922]: REMOTE_ADDR = 10.0.0.15 -- 16:27:43.920 INFO [27922]: SERVER_NAME = oameye.works.coregrade.com -- 16:27:43.920 INFO [27922]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; _gid=GA1.2.120824816.1586655078; ci_session=573l31dvj7kqrtcj6ermi8sauj86a9gn -- 16:27:43.920 INFO [27922]: QUERY_STRING = rlink=6b719b3a46dfa42dad09ae5653b4741c -- 16:27:43.920 INFO [27922]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:27:43.920 INFO [27922]: SystemStatus()09-09-********~************ -- 16:27:43.920 INFO [27922]: long coregrade_api_main(CVars in, CVars &out) -- 16:27:43.920 INFO [27922]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 16:27:43.920 INFO [27922]: account calls -- 16:27:43.920 INFO [27922]: account_calls() -- 16:27:43.920 INFO [27922]: passwordReset() -- 16:27:43.920 INFO [27922]: confirmPassReset() -- 16:27:43.920 FLOG_MAX [27922]: REQ_STRING(reset_key) -- 16:27:43.921 FLOG_MAX [27922]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:27:43.921 SQL [27922]: pgsql_query() -- 16:27:43.921 SQL [27922]: About to run query: -- 16:27:43.921 SQL [27922]: SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='6b719b3a46dfa42dad09ae5653b4741c' -- 16:27:43.923 SQL [27922]: Found rows: 0 -- 16:27:43.923 SQL [27922]: Found rows: 0 -- 16:27:43.923 INFO [27922]: RET: id= -- 16:27:43.923 INFO [27922]: RET: result=YES I GET TO BACK END -- 16:27:43.923 INFO [27922]: RET: status_advice=Contact support or Start all over -- 16:27:43.923 INFO [27922]: RET: status_message=Invalid PIN or disabled account -- 16:27:43.925 INFO [27922]: COREGRADE is stopping... -- 16:27:43.925 DEBUG [27922]: Closing database connection -- 16:27:43.925 SQL [27922]: pgsql_close() -- 16:27:43.884 DEBUG [27922]: Database connection successful -- 16:27:43.884 INFO [27922]: _SERVER found -- 16:27:43.884 INFO [27922]: REMOTE_ADDR = 10.0.0.15 -- 16:27:43.884 INFO [27922]: SERVER_NAME = oameye.works.coregrade.com -- 16:27:43.884 INFO [27922]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; _gid=GA1.2.120824816.1586655078; ci_session=573l31dvj7kqrtcj6ermi8sauj86a9gn -- 16:27:43.884 INFO [27922]: QUERY_STRING = /auth/passreset -- 16:27:43.884 INFO [27922]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:27:43.925 INFO [27922]: COREGRADE is stopping... -- 16:27:43.925 DEBUG [27922]: Closing database connection -- 16:27:43.925 SQL [27922]: pgsql_close() -- 16:27:44.068 INFO [27922]: COREGRADE is starting... -- 16:27:44.068 INFO [27922]: Version from config: 1.0 -- 16:27:44.068 DEBUG [27922]: Connecting to database... -- 16:27:44.069 DEBUG [27922]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:27:44.069 SQL [27922]: pgsql_db_connect() -- 16:27:44.073 DEBUG [27922]: Database connection successful -- 16:27:44.073 INFO [27922]: _SERVER found -- 16:27:44.073 INFO [27922]: REMOTE_ADDR = 10.0.0.15 -- 16:27:44.073 INFO [27922]: SERVER_NAME = oameye.works.coregrade.com -- 16:27:44.073 INFO [27922]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; _gid=GA1.2.120824816.1586655078; ci_session=573l31dvj7kqrtcj6ermi8sauj86a9gn -- 16:27:44.073 INFO [27922]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:27:44.073 INFO [27922]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:27:44.085 INFO [27922]: COREGRADE is stopping... -- 16:27:44.085 DEBUG [27922]: Closing database connection -- 16:27:44.085 SQL [27922]: pgsql_close() -- 16:28:08.162 INFO [27867]: COREGRADE is starting... -- 16:28:08.163 INFO [27867]: Version from config: 1.0 -- 16:28:08.163 DEBUG [27867]: Connecting to database... -- 16:28:08.163 DEBUG [27867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:28:08.163 SQL [27867]: pgsql_db_connect() -- 16:28:08.167 DEBUG [27867]: Database connection successful -- 16:28:08.167 INFO [27867]: _SERVER found -- 16:28:08.167 INFO [27867]: REMOTE_ADDR = 10.0.0.15 -- 16:28:08.167 INFO [27867]: SERVER_NAME = oameye.works.coregrade.com -- 16:28:08.167 INFO [27867]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=s48o9ktm9r25h2734mfs23n2mk4matae -- 16:28:08.167 INFO [27867]: QUERY_STRING = -- 16:28:08.167 INFO [27867]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:28:08.200 INFO [27867]: COREGRADE is stopping... -- 16:28:08.200 DEBUG [27867]: Closing database connection -- 16:28:08.200 SQL [27867]: pgsql_close() -- 16:28:08.417 INFO [27867]: COREGRADE is starting... -- 16:28:08.418 INFO [27867]: Version from config: 1.0 -- 16:28:08.418 DEBUG [27867]: Connecting to database... -- 16:28:08.418 DEBUG [27867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:28:08.418 SQL [27867]: pgsql_db_connect() -- 16:28:08.423 DEBUG [27867]: Database connection successful -- 16:28:08.423 INFO [27867]: _SERVER found -- 16:28:08.423 INFO [27867]: REMOTE_ADDR = 10.0.0.15 -- 16:28:08.423 INFO [27867]: SERVER_NAME = oameye.works.coregrade.com -- 16:28:08.423 INFO [27867]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=s48o9ktm9r25h2734mfs23n2mk4matae -- 16:28:08.423 INFO [27867]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:28:08.423 INFO [27867]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:28:08.434 INFO [27867]: COREGRADE is stopping... -- 16:28:08.434 DEBUG [27867]: Closing database connection -- 16:28:08.434 SQL [27867]: pgsql_close() -- 16:28:12.122 INFO [27867]: COREGRADE is starting... -- 16:28:12.122 INFO [27867]: Version from config: 1.0 -- 16:28:12.122 DEBUG [27867]: Connecting to database... -- 16:28:12.122 DEBUG [27867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:28:12.122 SQL [27867]: pgsql_db_connect() -- 16:28:12.129 INFO [27865]: COREGRADE is starting... -- 16:28:12.129 INFO [27865]: Version from config: 1.0 -- 16:28:12.129 DEBUG [27865]: Connecting to database... -- 16:28:12.129 DEBUG [27865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:28:12.129 SQL [27865]: pgsql_db_connect() -- 16:28:12.127 DEBUG [27867]: Database connection successful -- 16:28:12.127 INFO [27867]: _SERVER found -- 16:28:12.127 INFO [27867]: REMOTE_ADDR = 10.0.0.15 -- 16:28:12.127 INFO [27867]: SERVER_NAME = oameye.works.coregrade.com -- 16:28:12.127 INFO [27867]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=s48o9ktm9r25h2734mfs23n2mk4matae; _gat_gtag_UA_54829827_2=1 -- 16:28:12.127 INFO [27867]: QUERY_STRING = /welcome/viewLogin -- 16:28:12.127 INFO [27867]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:28:12.158 INFO [27867]: COREGRADE is stopping... -- 16:28:12.158 DEBUG [27867]: Closing database connection -- 16:28:12.158 SQL [27867]: pgsql_close() -- 16:28:12.134 DEBUG [27865]: Database connection successful -- 16:28:12.134 INFO [27865]: _SERVER found -- 16:28:12.134 INFO [27865]: REMOTE_ADDR = 10.0.0.15 -- 16:28:12.134 INFO [27865]: SERVER_NAME = oameye.works.coregrade.com -- 16:28:12.134 INFO [27865]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=s48o9ktm9r25h2734mfs23n2mk4matae; _gat_gtag_UA_54829827_2=1 -- 16:28:12.134 INFO [27865]: QUERY_STRING = /auth -- 16:28:12.134 INFO [27865]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:28:12.168 INFO [27865]: COREGRADE is stopping... -- 16:28:12.168 DEBUG [27865]: Closing database connection -- 16:28:12.168 SQL [27865]: pgsql_close() -- 16:28:12.191 INFO [27865]: COREGRADE is starting... -- 16:28:12.191 INFO [27865]: Version from config: 1.0 -- 16:28:12.191 DEBUG [27865]: Connecting to database... -- 16:28:12.192 DEBUG [27865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:28:12.192 SQL [27865]: pgsql_db_connect() -- 16:28:12.196 DEBUG [27865]: Database connection successful -- 16:28:12.196 INFO [27865]: _SERVER found -- 16:28:12.196 INFO [27865]: REMOTE_ADDR = 10.0.0.15 -- 16:28:12.196 INFO [27865]: SERVER_NAME = oameye.works.coregrade.com -- 16:28:12.196 INFO [27865]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=s48o9ktm9r25h2734mfs23n2mk4matae; _gat_gtag_UA_54829827_2=1 -- 16:28:12.196 INFO [27865]: QUERY_STRING = /auth/index -- 16:28:12.196 INFO [27865]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:28:12.230 INFO [27865]: COREGRADE is stopping... -- 16:28:12.230 DEBUG [27865]: Closing database connection -- 16:28:12.230 SQL [27865]: pgsql_close() -- 16:28:12.298 INFO [27865]: COREGRADE is starting... -- 16:28:12.298 INFO [27865]: Version from config: 1.0 -- 16:28:12.298 DEBUG [27865]: Connecting to database... -- 16:28:12.298 DEBUG [27865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:28:12.298 SQL [27865]: pgsql_db_connect() -- 16:28:12.303 DEBUG [27865]: Database connection successful -- 16:28:12.303 INFO [27865]: _SERVER found -- 16:28:12.303 INFO [27865]: REMOTE_ADDR = 10.0.0.15 -- 16:28:12.303 INFO [27865]: SERVER_NAME = oameye.works.coregrade.com -- 16:28:12.303 INFO [27865]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=s48o9ktm9r25h2734mfs23n2mk4matae; _gat_gtag_UA_54829827_2=1 -- 16:28:12.303 INFO [27865]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:28:12.303 INFO [27865]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:28:12.314 INFO [27865]: COREGRADE is stopping... -- 16:28:12.314 DEBUG [27865]: Closing database connection -- 16:28:12.314 SQL [27865]: pgsql_close() -- 16:28:15.075 INFO [27865]: COREGRADE is starting... -- 16:28:15.076 INFO [27865]: Version from config: 1.0 -- 16:28:15.076 DEBUG [27865]: Connecting to database... -- 16:28:15.076 DEBUG [27865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:28:15.076 SQL [27865]: pgsql_db_connect() -- 16:28:15.080 DEBUG [27865]: Database connection successful -- 16:28:15.081 INFO [27865]: _SERVER found -- 16:28:15.081 INFO [27865]: REMOTE_ADDR = 10.0.0.15 -- 16:28:15.081 INFO [27865]: SERVER_NAME = oameye.works.coregrade.com -- 16:28:15.081 INFO [27865]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=s48o9ktm9r25h2734mfs23n2mk4matae; _gat_gtag_UA_54829827_2=1 -- 16:28:15.081 INFO [27865]: QUERY_STRING = /auth/resetpass -- 16:28:15.081 INFO [27865]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:28:15.114 INFO [27865]: COREGRADE is stopping... -- 16:28:15.114 DEBUG [27865]: Closing database connection -- 16:28:15.114 SQL [27865]: pgsql_close() -- 16:28:18.624 INFO [27865]: COREGRADE is starting... -- 16:28:18.624 INFO [27865]: Version from config: 1.0 -- 16:28:18.624 DEBUG [27865]: Connecting to database... -- 16:28:18.624 DEBUG [27865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:28:18.624 SQL [27865]: pgsql_db_connect() -- 16:28:18.662 INFO [27865]: COREGRADE is starting... -- 16:28:18.662 INFO [27865]: Version from config: 1.0 -- 16:28:18.662 DEBUG [27865]: Connecting to database... -- 16:28:18.662 DEBUG [27865]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:28:18.662 SQL [27865]: pgsql_db_connect() -- 16:28:18.667 DEBUG [27865]: Database connection successful -- 16:28:18.667 INFO [27865]: _SERVER found -- 16:28:18.667 INFO [27865]: REMOTE_ADDR = 10.0.0.15 -- 16:28:18.667 INFO [27865]: SERVER_NAME = oameye.works.coregrade.com -- 16:28:18.667 INFO [27865]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=s48o9ktm9r25h2734mfs23n2mk4matae; _gat_gtag_UA_54829827_2=1 -- 16:28:18.667 INFO [27865]: QUERY_STRING = -- 16:28:18.667 INFO [27865]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:28:18.667 INFO [27865]: SystemStatus()09-09-********~************ -- 16:28:18.667 INFO [27865]: long coregrade_api_main(CVars in, CVars &out) -- 16:28:18.667 INFO [27865]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 16:28:18.667 INFO [27865]: account calls -- 16:28:18.667 INFO [27865]: account_calls() -- 16:28:18.667 INFO [27865]: passwordReset() -- 16:28:18.667 INFO [27865]: startPassReset() -- 16:28:18.667 FLOG_MAX [27865]: REQ_STRING(username) -- 16:28:18.667 FLOG_MAX [27865]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:28:18.667 SQL [27865]: pgsql_query() -- 16:28:18.667 SQL [27865]: About to run query: -- 16:28:18.667 SQL [27865]: SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('ses66181+563@gmail.com') -- 16:28:18.670 SQL [27865]: Found rows: 1 -- 16:28:18.670 FLOG_MAX [27865]: load_db_record(SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('ses66181+563@gmail.com') ) num_cols=2 -- 16:28:18.670 SQL [27865]: pgsql_exec() -- 16:28:18.670 SQL [27865]: About to run query: -- 16:28:18.670 SQL [27865]: UPDATE password_reset SET status=7 WHERE status NOT IN (3,5) AND member_id=9 -- 16:28:18.672 SQL [27865]: PQcmdTuples: 8 -- 16:28:18.672 SQL [27865]: Affected rows: 8 -- 16:28:18.672 FLOG_MAX [27865]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:28:18.672 SQL [27865]: pgsql_query() -- 16:28:18.672 SQL [27865]: About to run query: -- 16:28:18.672 SQL [27865]: SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 16:28:18.667414-04') AS reset_key -- 16:28:18.673 SQL [27865]: Found rows: 1 -- 16:28:18.673 FLOG_MAX [27865]: load_db_record(SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 16:28:18.667414-04') AS reset_key) num_cols=2 -- 16:28:18.673 FLOG_MAX [27865]: insert_db_record() -- 16:28:18.673 SQL [27865]: pgsql_exec() -- 16:28:18.673 SQL [27865]: About to run query: -- 16:28:18.673 SQL [27865]: INSERT INTO password_reset (loc,member_id,reset_key,reset_pin,username) VALUES ('10.0.0.15','9','61a91215fcb731b57621fb0547d2e6ab','793','ses66181+563@gmail.com') -- 16:28:18.674 SQL [27865]: PQcmdTuples: 1 -- 16:28:18.674 SQL [27865]: Affected rows: 1 -- 16:28:18.674 FLOG_MAX [27865]: SELECT currval('password_reset_id_seq') -- 16:28:18.674 SQL [27865]: pgsql_query() -- 16:28:18.674 SQL [27865]: About to run query: -- 16:28:18.674 SQL [27865]: SELECT currval('password_reset_id_seq') -- 16:28:18.675 SQL [27865]: Found rows: 1 -- 16:28:18.675 INFO [27865]: member_email_calls() -- 16:28:18.675 FLOG_MAX [27865]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:28:18.675 SQL [27865]: pgsql_query() -- 16:28:18.675 SQL [27865]: About to run query: -- 16:28:18.675 SQL [27865]: SELECT m.firstname,p.*,m.email AS member_email, created AS lost_added FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=16 -- 16:28:18.676 SQL [27865]: Found rows: 1 -- 16:28:18.676 FLOG_MAX [27865]: load_db_record(SELECT m.firstname,p.*,m.email AS member_email, created AS lost_added FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=16 ) num_cols=12 -- 16:28:18.676 FLOG_MAX [27865]: CGI Parsing: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 16:28:18.676 FLOG_MAX [27865]: Template '/home/oameye/coregrade/coregrade/email//start_losspass.mailfile' loaded: 1586 bytes -- 16:28:18.676 FLOG_MAX [27865]: Returning from FormFile() -- 16:28:18.676 FLOG_MAX [27865]: Template parsed: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 16:28:18.676 FLOG_MAX [27865]: ESMTP( 10.0.0.23, support@coregrade.com, ses66181+563@gmail.com ) -- 16:28:18.676 FLOG_MAX [27865]: Prepare body -- 16:28:18.676 FLOG_MAX [27865]: Locate & extract subject -- 16:28:18.676 FLOG_MAX [27865]: Found subject: CoreGrade - Password Reset for ses66181+563@gmail.com -- 16:28:18.676 FLOG_MAX [27865]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t ses66181+563@gmail.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'CoreGrade - Password Reset for ses66181+563@gmail.com ' -M ' - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
CoreGrade
-Dear Olu -
-We have initiated your password reset process as requested as by you on 2020-04-12 16:28:18.673671: -
- - - - -
Click the linkhttps://oameye.works.coregrade.com/auth/passreset?rlink=61a91215fcb731b57621fb0547d2e6ab
Link will expire
-
-
-If it was not at your request, then please contact CoreGrade support immediately. - -For further support go to our website at https://oameye.works.coregrade.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing CoreGrade. -CoreGrade Team. - -
-
- -
- - - - - - ' -- 16:28:18.735 FLOG_MAX [27865]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Password Reset for ses66181+563@gmail.com -From: CoreGrade Support -Date: Sun, 12 Apr 2020 16:28:18 -0400 -To: ses66181+563@gmail.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="KhB+vFohv7la58SF" -Mime-version: 1.0 - - ---KhB+vFohv7la58SF -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
CoreGrade
-Dear Olu -
-We have initiated your password reset process as requested as by you on 2020-04-12 16:28:18.673671: -
- - - - -
Click the linkhttps://oameye.works.coregrade.com/auth/passreset?rlink=61a91215fcb731b57621fb0547d2e6ab
Link will expire
-
-
-If it was not at your request, then please contact CoreGrade support immediately. - -For further support go to our website at https://oameye.works.coregrade.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing CoreGrade. -CoreGrade Team. - -
-
- -
- - - - - - - - ---KhB+vFohv7la58SF-- - -[C] . -[S] 250 2.0.0 Ok: queued as B2127210BDF4 -[C] QUIT -[S] 221 2.0.0 Bye - -- 16:28:18.735 FLOG_MAX [27865]: - -END OF PIPE OUTPUT - - -- 16:28:18.735 FLOG_MAX [27865]: /ESMTP() -- 16:28:18.735 INFO [27865]: /member_email_calls() -- 16:28:18.736 INFO [27865]: RET: member_id=9 -- 16:28:18.736 INFO [27865]: RET: mode=100 -- 16:28:18.736 INFO [27865]: RET: reset_id=16 -- 16:28:18.736 INFO [27865]: RET: reset_key=YOU WILL GET THIS IF PIN IS CORRECT IN CONFIRM -- 16:28:18.736 INFO [27865]: RET: reset_seed=2020-04-12 16:28:18.667414-04 -- 16:28:18.736 INFO [27865]: RET: reset_seed==REMOVED -- 16:28:18.736 INFO [27865]: RET: result=YES I GET TO BACK END -- 16:28:18.738 INFO [27865]: COREGRADE is stopping... -- 16:28:18.738 DEBUG [27865]: Closing database connection -- 16:28:18.738 SQL [27865]: pgsql_close() -- 16:28:18.629 DEBUG [27865]: Database connection successful -- 16:28:18.629 INFO [27865]: _SERVER found -- 16:28:18.629 INFO [27865]: REMOTE_ADDR = 10.0.0.15 -- 16:28:18.629 INFO [27865]: SERVER_NAME = oameye.works.coregrade.com -- 16:28:18.629 INFO [27865]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=s48o9ktm9r25h2734mfs23n2mk4matae; _gat_gtag_UA_54829827_2=1 -- 16:28:18.629 INFO [27865]: QUERY_STRING = /auth/resetpass -- 16:28:18.629 INFO [27865]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:28:18.738 INFO [27865]: COREGRADE is stopping... -- 16:28:18.738 DEBUG [27865]: Closing database connection -- 16:28:18.738 SQL [27865]: pgsql_close() -- 16:28:31.926 INFO [27863]: COREGRADE is starting... -- 16:28:31.927 INFO [27863]: Version from config: 1.0 -- 16:28:31.927 DEBUG [27863]: Connecting to database... -- 16:28:31.927 DEBUG [27863]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:28:31.927 SQL [27863]: pgsql_db_connect() -- 16:28:31.931 DEBUG [27863]: Database connection successful -- 16:28:31.931 INFO [27863]: _SERVER found -- 16:28:31.931 INFO [27863]: REMOTE_ADDR = 10.0.0.15 -- 16:28:31.931 INFO [27863]: SERVER_NAME = oameye.works.coregrade.com -- 16:28:31.931 INFO [27863]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=cgi4vkd0nrkj0chu027ru4vlpnp41mhb -- 16:28:31.931 INFO [27863]: QUERY_STRING = -- 16:28:31.931 INFO [27863]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:28:31.963 INFO [27863]: COREGRADE is stopping... -- 16:28:31.963 DEBUG [27863]: Closing database connection -- 16:28:31.963 SQL [27863]: pgsql_close() -- 16:28:32.046 INFO [27863]: COREGRADE is starting... -- 16:28:32.047 INFO [27863]: Version from config: 1.0 -- 16:28:32.047 DEBUG [27863]: Connecting to database... -- 16:28:32.047 DEBUG [27863]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:28:32.047 SQL [27863]: pgsql_db_connect() -- 16:28:32.051 DEBUG [27863]: Database connection successful -- 16:28:32.052 INFO [27863]: _SERVER found -- 16:28:32.052 INFO [27863]: REMOTE_ADDR = 10.0.0.15 -- 16:28:32.052 INFO [27863]: SERVER_NAME = oameye.works.coregrade.com -- 16:28:32.052 INFO [27863]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=u68t6equk3bac64mguvs95r8c78i1v8u -- 16:28:32.052 INFO [27863]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:28:32.052 INFO [27863]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:28:32.063 INFO [27863]: COREGRADE is stopping... -- 16:28:32.063 DEBUG [27863]: Closing database connection -- 16:28:32.063 SQL [27863]: pgsql_close() -- 16:29:02.824 INFO [27864]: COREGRADE is starting... -- 16:29:02.825 INFO [27864]: Version from config: 1.0 -- 16:29:02.825 DEBUG [27864]: Connecting to database... -- 16:29:02.825 DEBUG [27864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:29:02.825 SQL [27864]: pgsql_db_connect() -- 16:29:02.860 INFO [27864]: COREGRADE is starting... -- 16:29:02.860 INFO [27864]: Version from config: 1.0 -- 16:29:02.860 DEBUG [27864]: Connecting to database... -- 16:29:02.860 DEBUG [27864]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:29:02.860 SQL [27864]: pgsql_db_connect() -- 16:29:02.864 DEBUG [27864]: Database connection successful -- 16:29:02.864 INFO [27864]: _SERVER found -- 16:29:02.864 INFO [27864]: REMOTE_ADDR = 10.0.0.15 -- 16:29:02.864 INFO [27864]: SERVER_NAME = oameye.works.coregrade.com -- 16:29:02.864 INFO [27864]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=s48o9ktm9r25h2734mfs23n2mk4matae; _gat_gtag_UA_54829827_2=1 -- 16:29:02.864 INFO [27864]: QUERY_STRING = rlink=61a91215fcb731b57621fb0547d2e6ab -- 16:29:02.864 INFO [27864]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:29:02.864 INFO [27864]: SystemStatus()09-09-********~************ -- 16:29:02.864 INFO [27864]: long coregrade_api_main(CVars in, CVars &out) -- 16:29:02.864 INFO [27864]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 16:29:02.864 INFO [27864]: account calls -- 16:29:02.864 INFO [27864]: account_calls() -- 16:29:02.864 INFO [27864]: passwordReset() -- 16:29:02.864 INFO [27864]: confirmPassReset() -- 16:29:02.864 FLOG_MAX [27864]: REQ_STRING(reset_key) -- 16:29:02.865 FLOG_MAX [27864]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:29:02.865 SQL [27864]: pgsql_query() -- 16:29:02.865 SQL [27864]: About to run query: -- 16:29:02.865 SQL [27864]: SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='61a91215fcb731b57621fb0547d2e6ab' -- 16:29:02.867 SQL [27864]: Found rows: 1 -- 16:29:02.867 FLOG_MAX [27864]: load_db_record(SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='61a91215fcb731b57621fb0547d2e6ab' ) num_cols=10 -- 16:29:02.867 SQL [27864]: pgsql_query() -- 16:29:02.867 SQL [27864]: About to run query: -- 16:29:02.867 SQL [27864]: UPDATE password_reset SET status = 1 WHERE id =16 -- 16:29:02.868 SQL [27864]: Found rows: 0 -- 16:29:02.868 SQL [27864]: Found rows: 0 -- 16:29:02.868 INFO [27864]: RET: created=2020-04-12 16:28:18.673671 -- 16:29:02.868 INFO [27864]: RET: expired= -- 16:29:02.868 INFO [27864]: RET: id=16 -- 16:29:02.868 INFO [27864]: RET: loc=10.0.0.15 -- 16:29:02.868 INFO [27864]: RET: member_id=9 -- 16:29:02.868 INFO [27864]: RET: reset_id=16 -- 16:29:02.868 INFO [27864]: RET: reset_key=61a91215fcb731b57621fb0547d2e6ab -- 16:29:02.868 INFO [27864]: RET: reset_pin=793 -- 16:29:02.868 INFO [27864]: RET: result=YES I GET TO BACK END -- 16:29:02.868 INFO [27864]: RET: status=0 -- 16:29:02.868 INFO [27864]: RET: username=ses66181+563@gmail.com -- 16:29:02.870 INFO [27864]: COREGRADE is stopping... -- 16:29:02.870 DEBUG [27864]: Closing database connection -- 16:29:02.870 SQL [27864]: pgsql_close() -- 16:29:02.829 DEBUG [27864]: Database connection successful -- 16:29:02.829 INFO [27864]: _SERVER found -- 16:29:02.829 INFO [27864]: REMOTE_ADDR = 10.0.0.15 -- 16:29:02.829 INFO [27864]: SERVER_NAME = oameye.works.coregrade.com -- 16:29:02.829 INFO [27864]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=s48o9ktm9r25h2734mfs23n2mk4matae; _gat_gtag_UA_54829827_2=1 -- 16:29:02.829 INFO [27864]: QUERY_STRING = /auth/passreset -- 16:29:02.829 INFO [27864]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:29:02.870 INFO [27864]: COREGRADE is stopping... -- 16:29:02.870 DEBUG [27864]: Closing database connection -- 16:29:02.870 SQL [27864]: pgsql_close() -- 16:30:07.799 INFO [27866]: COREGRADE is starting... -- 16:30:07.800 INFO [27866]: Version from config: 1.0 -- 16:30:07.800 DEBUG [27866]: Connecting to database... -- 16:30:07.800 DEBUG [27866]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:30:07.800 SQL [27866]: pgsql_db_connect() -- 16:30:07.804 DEBUG [27866]: Database connection successful -- 16:30:07.804 INFO [27866]: _SERVER found -- 16:30:07.804 INFO [27866]: REMOTE_ADDR = 10.0.0.15 -- 16:30:07.804 INFO [27866]: SERVER_NAME = oameye.works.coregrade.com -- 16:30:07.804 INFO [27866]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=s48o9ktm9r25h2734mfs23n2mk4matae -- 16:30:07.804 INFO [27866]: QUERY_STRING = /auth/completereset -- 16:30:07.804 INFO [27866]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:30:07.836 INFO [27866]: COREGRADE is stopping... -- 16:30:07.836 DEBUG [27866]: Closing database connection -- 16:30:07.836 SQL [27866]: pgsql_close() -- 16:31:06.543 INFO [28166]: COREGRADE is starting... -- 16:31:06.544 INFO [28166]: Version from config: 1.0 -- 16:31:06.544 DEBUG [28166]: Connecting to database... -- 16:31:06.544 DEBUG [28166]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:06.544 SQL [28166]: pgsql_db_connect() -- 16:31:06.548 DEBUG [28166]: Database connection successful -- 16:31:06.548 INFO [28166]: _SERVER found -- 16:31:06.548 INFO [28166]: REMOTE_ADDR = 10.0.0.15 -- 16:31:06.548 INFO [28166]: SERVER_NAME = oameye.works.coregrade.com -- 16:31:06.548 INFO [28166]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=s48o9ktm9r25h2734mfs23n2mk4matae -- 16:31:06.548 INFO [28166]: QUERY_STRING = /auth/completereset -- 16:31:06.548 INFO [28166]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:31:06.580 INFO [28166]: COREGRADE is stopping... -- 16:31:06.580 DEBUG [28166]: Closing database connection -- 16:31:06.580 SQL [28166]: pgsql_close() -- 16:32:28.963 INFO [28167]: COREGRADE is starting... -- 16:32:28.963 INFO [28167]: Version from config: 1.0 -- 16:32:28.963 DEBUG [28167]: Connecting to database... -- 16:32:28.963 DEBUG [28167]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:32:28.963 SQL [28167]: pgsql_db_connect() -- 16:32:28.968 DEBUG [28167]: Database connection successful -- 16:32:28.968 INFO [28167]: _SERVER found -- 16:32:28.968 INFO [28167]: REMOTE_ADDR = 10.0.0.15 -- 16:32:28.968 INFO [28167]: SERVER_NAME = oameye.works.coregrade.com -- 16:32:28.968 INFO [28167]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=u68t6equk3bac64mguvs95r8c78i1v8u -- 16:32:28.968 INFO [28167]: QUERY_STRING = /auth/newuser -- 16:32:28.968 INFO [28167]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:32:28.000 INFO [28167]: COREGRADE is stopping... -- 16:32:28.001 DEBUG [28167]: Closing database connection -- 16:32:28.001 SQL [28167]: pgsql_close() -- 16:32:29.116 INFO [28167]: COREGRADE is starting... -- 16:32:29.116 INFO [28167]: Version from config: 1.0 -- 16:32:29.116 DEBUG [28167]: Connecting to database... -- 16:32:29.117 DEBUG [28167]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:32:29.117 SQL [28167]: pgsql_db_connect() -- 16:32:29.121 DEBUG [28167]: Database connection successful -- 16:32:29.121 INFO [28167]: _SERVER found -- 16:32:29.121 INFO [28167]: REMOTE_ADDR = 10.0.0.15 -- 16:32:29.121 INFO [28167]: SERVER_NAME = oameye.works.coregrade.com -- 16:32:29.121 INFO [28167]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=u68t6equk3bac64mguvs95r8c78i1v8u -- 16:32:29.121 INFO [28167]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:32:29.121 INFO [28167]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:32:29.132 INFO [28167]: COREGRADE is stopping... -- 16:32:29.132 DEBUG [28167]: Closing database connection -- 16:32:29.132 SQL [28167]: pgsql_close() -- 16:32:31.549 INFO [28167]: COREGRADE is starting... -- 16:32:31.550 INFO [28167]: Version from config: 1.0 -- 16:32:31.550 DEBUG [28167]: Connecting to database... -- 16:32:31.550 DEBUG [28167]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:32:31.550 SQL [28167]: pgsql_db_connect() -- 16:32:31.554 DEBUG [28167]: Database connection successful -- 16:32:31.554 INFO [28167]: _SERVER found -- 16:32:31.554 INFO [28167]: REMOTE_ADDR = 10.0.0.15 -- 16:32:31.554 INFO [28167]: SERVER_NAME = oameye.works.coregrade.com -- 16:32:31.554 INFO [28167]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=u68t6equk3bac64mguvs95r8c78i1v8u -- 16:32:31.554 INFO [28167]: QUERY_STRING = /auth/newuser -- 16:32:31.554 INFO [28167]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:32:31.585 INFO [28167]: COREGRADE is stopping... -- 16:32:31.585 DEBUG [28167]: Closing database connection -- 16:32:31.585 SQL [28167]: pgsql_close() -- 16:32:34.748 INFO [28167]: COREGRADE is starting... -- 16:32:34.748 INFO [28167]: Version from config: 1.0 -- 16:32:34.748 DEBUG [28167]: Connecting to database... -- 16:32:34.748 DEBUG [28167]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:32:34.748 SQL [28167]: pgsql_db_connect() -- 16:32:34.752 DEBUG [28167]: Database connection successful -- 16:32:34.752 INFO [28167]: _SERVER found -- 16:32:34.752 INFO [28167]: REMOTE_ADDR = 10.0.0.15 -- 16:32:34.752 INFO [28167]: SERVER_NAME = oameye.works.coregrade.com -- 16:32:34.752 INFO [28167]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=u68t6equk3bac64mguvs95r8c78i1v8u -- 16:32:34.752 INFO [28167]: QUERY_STRING = -- 16:32:34.752 INFO [28167]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:32:34.783 INFO [28167]: COREGRADE is stopping... -- 16:32:34.783 DEBUG [28167]: Closing database connection -- 16:32:34.783 SQL [28167]: pgsql_close() -- 16:32:36.607 INFO [28167]: COREGRADE is starting... -- 16:32:36.608 INFO [28167]: Version from config: 1.0 -- 16:32:36.608 DEBUG [28167]: Connecting to database... -- 16:32:36.608 DEBUG [28167]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:32:36.608 SQL [28167]: pgsql_db_connect() -- 16:32:36.612 DEBUG [28167]: Database connection successful -- 16:32:36.612 INFO [28167]: _SERVER found -- 16:32:36.612 INFO [28167]: REMOTE_ADDR = 10.0.0.15 -- 16:32:36.612 INFO [28167]: SERVER_NAME = oameye.works.coregrade.com -- 16:32:36.612 INFO [28167]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=u68t6equk3bac64mguvs95r8c78i1v8u; _gat_gtag_UA_54829827_2=1 -- 16:32:36.612 INFO [28167]: QUERY_STRING = /auth/newuser -- 16:32:36.612 INFO [28167]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:32:36.643 INFO [28167]: COREGRADE is stopping... -- 16:32:36.643 DEBUG [28167]: Closing database connection -- 16:32:36.643 SQL [28167]: pgsql_close() -- 16:32:39.212 INFO [28167]: COREGRADE is starting... -- 16:32:39.212 INFO [28167]: Version from config: 1.0 -- 16:32:39.212 DEBUG [28167]: Connecting to database... -- 16:32:39.212 DEBUG [28167]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:32:39.212 SQL [28167]: pgsql_db_connect() -- 16:32:39.216 DEBUG [28167]: Database connection successful -- 16:32:39.216 INFO [28167]: _SERVER found -- 16:32:39.216 INFO [28167]: REMOTE_ADDR = 10.0.0.15 -- 16:32:39.216 INFO [28167]: SERVER_NAME = oameye.works.coregrade.com -- 16:32:39.216 INFO [28167]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=u68t6equk3bac64mguvs95r8c78i1v8u; _gat_gtag_UA_54829827_2=1 -- 16:32:39.216 INFO [28167]: QUERY_STRING = -- 16:32:39.216 INFO [28167]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:32:39.247 INFO [28167]: COREGRADE is stopping... -- 16:32:39.247 DEBUG [28167]: Closing database connection -- 16:32:39.247 SQL [28167]: pgsql_close() -- 16:33:14.600 INFO [28168]: COREGRADE is starting... -- 16:33:14.600 INFO [28168]: Version from config: 1.0 -- 16:33:14.600 DEBUG [28168]: Connecting to database... -- 16:33:14.601 DEBUG [28168]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:33:14.601 SQL [28168]: pgsql_db_connect() -- 16:33:14.605 DEBUG [28168]: Database connection successful -- 16:33:14.605 INFO [28168]: _SERVER found -- 16:33:14.605 INFO [28168]: REMOTE_ADDR = 10.0.0.15 -- 16:33:14.605 INFO [28168]: SERVER_NAME = oameye.works.coregrade.com -- 16:33:14.605 INFO [28168]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=u68t6equk3bac64mguvs95r8c78i1v8u; _gat_gtag_UA_54829827_2=1 -- 16:33:14.605 INFO [28168]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 16:33:14.605 INFO [28168]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:33:14.616 INFO [28168]: COREGRADE is stopping... -- 16:33:14.616 DEBUG [28168]: Closing database connection -- 16:33:14.616 SQL [28168]: pgsql_close() -- 16:34:50.348 INFO [28002]: COREGRADE is starting... -- 16:34:50.348 INFO [28002]: Version from config: 1.0 -- 16:34:50.348 DEBUG [28002]: Connecting to database... -- 16:34:50.348 DEBUG [28002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:34:50.348 SQL [28002]: pgsql_db_connect() -- 16:34:50.350 INFO [27922]: COREGRADE is starting... -- 16:34:50.351 INFO [27922]: Version from config: 1.0 -- 16:34:50.351 DEBUG [27922]: Connecting to database... -- 16:34:50.351 DEBUG [27922]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:34:50.351 SQL [27922]: pgsql_db_connect() -- 16:34:50.355 DEBUG [27922]: Database connection successful -- 16:34:50.355 INFO [27922]: _SERVER found -- 16:34:50.355 INFO [27922]: REMOTE_ADDR = 10.0.0.15 -- 16:34:50.355 INFO [27922]: SERVER_NAME = oameye.works.coregrade.com -- 16:34:50.355 INFO [27922]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=e9lfp3odnghlq58udkieec0gebk461nf -- 16:34:50.355 INFO [27922]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:34:50.355 INFO [27922]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:34:50.366 INFO [27922]: COREGRADE is stopping... -- 16:34:50.366 DEBUG [27922]: Closing database connection -- 16:34:50.366 SQL [27922]: pgsql_close() -- 16:34:50.353 DEBUG [28002]: Database connection successful -- 16:34:50.353 INFO [28002]: _SERVER found -- 16:34:50.353 INFO [28002]: REMOTE_ADDR = 10.0.0.15 -- 16:34:50.353 INFO [28002]: SERVER_NAME = oameye.works.coregrade.com -- 16:34:50.353 INFO [28002]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=e9lfp3odnghlq58udkieec0gebk461nf -- 16:34:50.353 INFO [28002]: QUERY_STRING = -- 16:34:50.353 INFO [28002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:34:50.386 INFO [28002]: COREGRADE is stopping... -- 16:34:50.386 DEBUG [28002]: Closing database connection -- 16:34:50.386 SQL [28002]: pgsql_close() -- 16:35:34.929 INFO [6457]: COREGRADE is starting... -- 16:35:34.929 INFO [6457]: Version from config: 1.0 -- 16:35:34.929 DEBUG [6457]: Connecting to database... -- 16:35:34.929 DEBUG [6457]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:35:34.929 SQL [6457]: pgsql_db_connect() -- 16:35:34.934 DEBUG [6457]: Database connection successful -- 16:35:34.934 INFO [6457]: _SERVER found -- 16:35:34.934 INFO [6457]: REMOTE_ADDR = 10.0.0.15 -- 16:35:34.934 INFO [6457]: SERVER_NAME = oameye.works.coregrade.com -- 16:35:34.934 INFO [6457]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=l02f6qmhea0t8gela56im8vhr9b7ceid; _gat_gtag_UA_54829827_2=1 -- 16:35:34.934 INFO [6457]: QUERY_STRING = /auth -- 16:35:34.934 INFO [6457]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:35:34.973 INFO [6457]: COREGRADE is stopping... -- 16:35:34.973 DEBUG [6457]: Closing database connection -- 16:35:34.973 SQL [6457]: pgsql_close() -- 16:35:34.985 INFO [6458]: COREGRADE is starting... -- 16:35:34.986 INFO [6458]: Version from config: 1.0 -- 16:35:34.986 DEBUG [6458]: Connecting to database... -- 16:35:34.986 DEBUG [6458]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:35:34.986 SQL [6458]: pgsql_db_connect() -- 16:35:34.990 DEBUG [6458]: Database connection successful -- 16:35:34.990 INFO [6458]: _SERVER found -- 16:35:34.990 INFO [6458]: REMOTE_ADDR = 10.0.0.15 -- 16:35:34.990 INFO [6458]: SERVER_NAME = oameye.works.coregrade.com -- 16:35:34.990 INFO [6458]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=l02f6qmhea0t8gela56im8vhr9b7ceid; _gat_gtag_UA_54829827_2=1 -- 16:35:34.990 INFO [6458]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:35:34.990 INFO [6458]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:35:35.004 INFO [6458]: COREGRADE is stopping... -- 16:35:35.004 DEBUG [6458]: Closing database connection -- 16:35:35.004 SQL [6458]: pgsql_close() -- 16:35:38.458 INFO [6457]: COREGRADE is starting... -- 16:35:38.459 INFO [6457]: Version from config: 1.0 -- 16:35:38.459 DEBUG [6457]: Connecting to database... -- 16:35:38.459 DEBUG [6457]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:35:38.459 SQL [6457]: pgsql_db_connect() -- 16:35:38.464 INFO [6458]: COREGRADE is starting... -- 16:35:38.464 INFO [6458]: Version from config: 1.0 -- 16:35:38.464 DEBUG [6458]: Connecting to database... -- 16:35:38.464 DEBUG [6458]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:35:38.464 SQL [6458]: pgsql_db_connect() -- 16:35:38.468 DEBUG [6458]: Database connection successful -- 16:35:38.468 INFO [6458]: _SERVER found -- 16:35:38.468 INFO [6458]: REMOTE_ADDR = 10.0.0.15 -- 16:35:38.468 INFO [6458]: SERVER_NAME = oameye.works.coregrade.com -- 16:35:38.468 INFO [6458]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=l02f6qmhea0t8gela56im8vhr9b7ceid; _gat_gtag_UA_54829827_2=1 -- 16:35:38.468 INFO [6458]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:35:38.468 INFO [6458]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:35:38.480 INFO [6458]: COREGRADE is stopping... -- 16:35:38.480 DEBUG [6458]: Closing database connection -- 16:35:38.480 SQL [6458]: pgsql_close() -- 16:35:38.463 DEBUG [6457]: Database connection successful -- 16:35:38.463 INFO [6457]: _SERVER found -- 16:35:38.463 INFO [6457]: REMOTE_ADDR = 10.0.0.15 -- 16:35:38.463 INFO [6457]: SERVER_NAME = oameye.works.coregrade.com -- 16:35:38.463 INFO [6457]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=l02f6qmhea0t8gela56im8vhr9b7ceid; _gat_gtag_UA_54829827_2=1 -- 16:35:38.463 INFO [6457]: QUERY_STRING = /auth/resetpass -- 16:35:38.463 INFO [6457]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:35:38.498 INFO [6457]: COREGRADE is stopping... -- 16:35:38.498 DEBUG [6457]: Closing database connection -- 16:35:38.498 SQL [6457]: pgsql_close() -- 16:35:50.338 INFO [6459]: COREGRADE is starting... -- 16:35:50.338 INFO [6459]: Version from config: 1.0 -- 16:35:50.338 DEBUG [6459]: Connecting to database... -- 16:35:50.338 DEBUG [6459]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:35:50.338 SQL [6459]: pgsql_db_connect() -- 16:35:50.354 INFO [6461]: COREGRADE is starting... -- 16:35:50.354 INFO [6461]: Version from config: 1.0 -- 16:35:50.354 DEBUG [6461]: Connecting to database... -- 16:35:50.354 DEBUG [6461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:35:50.354 SQL [6461]: pgsql_db_connect() -- 16:35:50.359 DEBUG [6461]: Database connection successful -- 16:35:50.359 INFO [6461]: _SERVER found -- 16:35:50.359 INFO [6461]: REMOTE_ADDR = 10.0.0.15 -- 16:35:50.359 INFO [6461]: SERVER_NAME = oameye.works.coregrade.com -- 16:35:50.359 INFO [6461]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=l02f6qmhea0t8gela56im8vhr9b7ceid -- 16:35:50.359 INFO [6461]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:35:50.359 INFO [6461]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:35:50.373 INFO [6461]: COREGRADE is stopping... -- 16:35:50.373 DEBUG [6461]: Closing database connection -- 16:35:50.373 SQL [6461]: pgsql_close() -- 16:35:50.342 DEBUG [6459]: Database connection successful -- 16:35:50.342 INFO [6459]: _SERVER found -- 16:35:50.342 INFO [6459]: REMOTE_ADDR = 10.0.0.15 -- 16:35:50.342 INFO [6459]: SERVER_NAME = oameye.works.coregrade.com -- 16:35:50.342 INFO [6459]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=l02f6qmhea0t8gela56im8vhr9b7ceid -- 16:35:50.342 INFO [6459]: QUERY_STRING = -- 16:35:50.342 INFO [6459]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:35:50.387 INFO [6459]: COREGRADE is stopping... -- 16:35:50.387 DEBUG [6459]: Closing database connection -- 16:35:50.387 SQL [6459]: pgsql_close() -- 16:35:53.322 INFO [6459]: COREGRADE is starting... -- 16:35:53.323 INFO [6459]: Version from config: 1.0 -- 16:35:53.323 DEBUG [6459]: Connecting to database... -- 16:35:53.323 DEBUG [6459]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:35:53.323 SQL [6459]: pgsql_db_connect() -- 16:35:53.327 DEBUG [6459]: Database connection successful -- 16:35:53.327 INFO [6459]: _SERVER found -- 16:35:53.327 INFO [6459]: REMOTE_ADDR = 10.0.0.15 -- 16:35:53.327 INFO [6459]: SERVER_NAME = oameye.works.coregrade.com -- 16:35:53.327 INFO [6459]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=l02f6qmhea0t8gela56im8vhr9b7ceid -- 16:35:53.327 INFO [6459]: QUERY_STRING = /home/howitworks -- 16:35:53.327 INFO [6459]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:35:53.361 INFO [6459]: COREGRADE is stopping... -- 16:35:53.361 DEBUG [6459]: Closing database connection -- 16:35:53.361 SQL [6459]: pgsql_close() -- 16:35:53.421 INFO [6459]: COREGRADE is starting... -- 16:35:53.422 INFO [6459]: Version from config: 1.0 -- 16:35:53.422 DEBUG [6459]: Connecting to database... -- 16:35:53.422 DEBUG [6459]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:35:53.422 SQL [6459]: pgsql_db_connect() -- 16:35:53.426 DEBUG [6459]: Database connection successful -- 16:35:53.426 INFO [6459]: _SERVER found -- 16:35:53.426 INFO [6459]: REMOTE_ADDR = 10.0.0.15 -- 16:35:53.426 INFO [6459]: SERVER_NAME = oameye.works.coregrade.com -- 16:35:53.426 INFO [6459]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=l02f6qmhea0t8gela56im8vhr9b7ceid -- 16:35:53.426 INFO [6459]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:35:53.426 INFO [6459]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:35:53.437 INFO [6459]: COREGRADE is stopping... -- 16:35:53.438 DEBUG [6459]: Closing database connection -- 16:35:53.438 SQL [6459]: pgsql_close() -- 16:36:26.680 INFO [6460]: COREGRADE is starting... -- 16:36:26.680 INFO [6460]: Version from config: 1.0 -- 16:36:26.680 DEBUG [6460]: Connecting to database... -- 16:36:26.680 DEBUG [6460]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:36:26.680 SQL [6460]: pgsql_db_connect() -- 16:36:26.685 DEBUG [6460]: Database connection successful -- 16:36:26.685 INFO [6460]: _SERVER found -- 16:36:26.685 INFO [6460]: REMOTE_ADDR = 10.0.0.15 -- 16:36:26.685 INFO [6460]: SERVER_NAME = oameye.works.coregrade.com -- 16:36:26.685 INFO [6460]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=l02f6qmhea0t8gela56im8vhr9b7ceid -- 16:36:26.685 INFO [6460]: QUERY_STRING = -- 16:36:26.685 INFO [6460]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:36:26.728 INFO [6460]: COREGRADE is stopping... -- 16:36:26.728 DEBUG [6460]: Closing database connection -- 16:36:26.728 SQL [6460]: pgsql_close() -- 16:36:30.760 INFO [6460]: COREGRADE is starting... -- 16:36:30.761 INFO [6460]: Version from config: 1.0 -- 16:36:30.761 DEBUG [6460]: Connecting to database... -- 16:36:30.761 DEBUG [6460]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:36:30.761 SQL [6460]: pgsql_db_connect() -- 16:36:30.765 DEBUG [6460]: Database connection successful -- 16:36:30.765 INFO [6460]: _SERVER found -- 16:36:30.765 INFO [6460]: REMOTE_ADDR = 10.0.0.15 -- 16:36:30.765 INFO [6460]: SERVER_NAME = oameye.works.coregrade.com -- 16:36:30.765 INFO [6460]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=l02f6qmhea0t8gela56im8vhr9b7ceid -- 16:36:30.765 INFO [6460]: QUERY_STRING = /home/faq -- 16:36:30.765 INFO [6460]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:36:30.800 INFO [6460]: COREGRADE is stopping... -- 16:36:30.800 DEBUG [6460]: Closing database connection -- 16:36:30.800 SQL [6460]: pgsql_close() -- 16:36:30.870 INFO [6460]: COREGRADE is starting... -- 16:36:30.871 INFO [6460]: Version from config: 1.0 -- 16:36:30.871 DEBUG [6460]: Connecting to database... -- 16:36:30.871 DEBUG [6460]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:36:30.871 SQL [6460]: pgsql_db_connect() -- 16:36:30.875 DEBUG [6460]: Database connection successful -- 16:36:30.875 INFO [6460]: _SERVER found -- 16:36:30.875 INFO [6460]: REMOTE_ADDR = 10.0.0.15 -- 16:36:30.875 INFO [6460]: SERVER_NAME = oameye.works.coregrade.com -- 16:36:30.875 INFO [6460]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=l02f6qmhea0t8gela56im8vhr9b7ceid -- 16:36:30.875 INFO [6460]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:36:30.875 INFO [6460]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:36:30.887 INFO [6460]: COREGRADE is stopping... -- 16:36:30.887 DEBUG [6460]: Closing database connection -- 16:36:30.887 SQL [6460]: pgsql_close() -- 16:36:53.774 INFO [6467]: COREGRADE is starting... -- 16:36:53.774 INFO [6467]: Version from config: 1.0 -- 16:36:53.774 DEBUG [6467]: Connecting to database... -- 16:36:53.774 DEBUG [6467]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:36:53.774 SQL [6467]: pgsql_db_connect() -- 16:36:53.787 INFO [6468]: COREGRADE is starting... -- 16:36:53.788 INFO [6468]: Version from config: 1.0 -- 16:36:53.788 DEBUG [6468]: Connecting to database... -- 16:36:53.788 DEBUG [6468]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:36:53.788 SQL [6468]: pgsql_db_connect() -- 16:36:53.792 DEBUG [6468]: Database connection successful -- 16:36:53.792 INFO [6468]: _SERVER found -- 16:36:53.792 INFO [6468]: REMOTE_ADDR = 10.0.0.15 -- 16:36:53.792 INFO [6468]: SERVER_NAME = oameye.works.coregrade.com -- 16:36:53.792 INFO [6468]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=l02f6qmhea0t8gela56im8vhr9b7ceid -- 16:36:53.792 INFO [6468]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:36:53.792 INFO [6468]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:36:53.806 INFO [6468]: COREGRADE is stopping... -- 16:36:53.807 DEBUG [6468]: Closing database connection -- 16:36:53.807 SQL [6468]: pgsql_close() -- 16:36:53.778 DEBUG [6467]: Database connection successful -- 16:36:53.779 INFO [6467]: _SERVER found -- 16:36:53.779 INFO [6467]: REMOTE_ADDR = 10.0.0.15 -- 16:36:53.779 INFO [6467]: SERVER_NAME = oameye.works.coregrade.com -- 16:36:53.779 INFO [6467]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=l02f6qmhea0t8gela56im8vhr9b7ceid -- 16:36:53.779 INFO [6467]: QUERY_STRING = -- 16:36:53.779 INFO [6467]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:36:53.822 INFO [6467]: COREGRADE is stopping... -- 16:36:53.822 DEBUG [6467]: Closing database connection -- 16:36:53.822 SQL [6467]: pgsql_close() -- 16:37:00.477 INFO [6469]: COREGRADE is starting... -- 16:37:00.477 INFO [6469]: Version from config: 1.0 -- 16:37:00.477 DEBUG [6469]: Connecting to database... -- 16:37:00.477 DEBUG [6469]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:37:00.477 SQL [6469]: pgsql_db_connect() -- 16:37:00.491 INFO [6458]: COREGRADE is starting... -- 16:37:00.492 INFO [6458]: Version from config: 1.0 -- 16:37:00.492 DEBUG [6458]: Connecting to database... -- 16:37:00.492 DEBUG [6458]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:37:00.492 SQL [6458]: pgsql_db_connect() -- 16:37:00.496 DEBUG [6458]: Database connection successful -- 16:37:00.496 INFO [6458]: _SERVER found -- 16:37:00.496 INFO [6458]: REMOTE_ADDR = 10.0.0.15 -- 16:37:00.496 INFO [6458]: SERVER_NAME = oameye.works.coregrade.com -- 16:37:00.496 INFO [6458]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=l02f6qmhea0t8gela56im8vhr9b7ceid -- 16:37:00.496 INFO [6458]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:37:00.496 INFO [6458]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:37:00.508 INFO [6458]: COREGRADE is stopping... -- 16:37:00.508 DEBUG [6458]: Closing database connection -- 16:37:00.508 SQL [6458]: pgsql_close() -- 16:37:00.482 DEBUG [6469]: Database connection successful -- 16:37:00.482 INFO [6469]: _SERVER found -- 16:37:00.482 INFO [6469]: REMOTE_ADDR = 10.0.0.15 -- 16:37:00.482 INFO [6469]: SERVER_NAME = oameye.works.coregrade.com -- 16:37:00.482 INFO [6469]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=l02f6qmhea0t8gela56im8vhr9b7ceid -- 16:37:00.482 INFO [6469]: QUERY_STRING = -- 16:37:00.482 INFO [6469]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:37:00.525 INFO [6469]: COREGRADE is stopping... -- 16:37:00.525 DEBUG [6469]: Closing database connection -- 16:37:00.525 SQL [6469]: pgsql_close() -- 16:37:06.368 INFO [6457]: COREGRADE is starting... -- 16:37:06.368 INFO [6457]: Version from config: 1.0 -- 16:37:06.368 DEBUG [6457]: Connecting to database... -- 16:37:06.368 DEBUG [6457]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:37:06.368 SQL [6457]: pgsql_db_connect() -- 16:37:06.384 INFO [6461]: COREGRADE is starting... -- 16:37:06.384 INFO [6461]: Version from config: 1.0 -- 16:37:06.384 DEBUG [6461]: Connecting to database... -- 16:37:06.385 DEBUG [6461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:37:06.385 SQL [6461]: pgsql_db_connect() -- 16:37:06.372 DEBUG [6457]: Database connection successful -- 16:37:06.372 INFO [6457]: _SERVER found -- 16:37:06.372 INFO [6457]: REMOTE_ADDR = 10.0.0.15 -- 16:37:06.372 INFO [6457]: SERVER_NAME = oameye.works.coregrade.com -- 16:37:06.372 INFO [6457]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=l02f6qmhea0t8gela56im8vhr9b7ceid -- 16:37:06.372 INFO [6457]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:37:06.372 INFO [6457]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:37:06.385 INFO [6457]: COREGRADE is stopping... -- 16:37:06.385 DEBUG [6457]: Closing database connection -- 16:37:06.385 SQL [6457]: pgsql_close() -- 16:37:06.389 DEBUG [6461]: Database connection successful -- 16:37:06.389 INFO [6461]: _SERVER found -- 16:37:06.389 INFO [6461]: REMOTE_ADDR = 10.0.0.15 -- 16:37:06.389 INFO [6461]: SERVER_NAME = oameye.works.coregrade.com -- 16:37:06.389 INFO [6461]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=l02f6qmhea0t8gela56im8vhr9b7ceid -- 16:37:06.389 INFO [6461]: QUERY_STRING = /auth -- 16:37:06.389 INFO [6461]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:37:06.425 INFO [6461]: COREGRADE is stopping... -- 16:37:06.425 DEBUG [6461]: Closing database connection -- 16:37:06.425 SQL [6461]: pgsql_close() -- 16:37:09.564 INFO [6457]: COREGRADE is starting... -- 16:37:09.565 INFO [6457]: Version from config: 1.0 -- 16:37:09.565 DEBUG [6457]: Connecting to database... -- 16:37:09.565 DEBUG [6457]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:37:09.565 SQL [6457]: pgsql_db_connect() -- 16:37:09.569 DEBUG [6457]: Database connection successful -- 16:37:09.569 INFO [6457]: _SERVER found -- 16:37:09.569 INFO [6457]: REMOTE_ADDR = 10.0.0.15 -- 16:37:09.569 INFO [6457]: SERVER_NAME = oameye.works.coregrade.com -- 16:37:09.569 INFO [6457]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=l02f6qmhea0t8gela56im8vhr9b7ceid -- 16:37:09.569 INFO [6457]: QUERY_STRING = /auth/newuser -- 16:37:09.569 INFO [6457]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:37:09.604 INFO [6457]: COREGRADE is stopping... -- 16:37:09.604 DEBUG [6457]: Closing database connection -- 16:37:09.604 SQL [6457]: pgsql_close() -- 16:37:09.676 INFO [6461]: COREGRADE is starting... -- 16:37:09.677 INFO [6461]: Version from config: 1.0 -- 16:37:09.677 DEBUG [6461]: Connecting to database... -- 16:37:09.677 DEBUG [6461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:37:09.677 SQL [6461]: pgsql_db_connect() -- 16:37:09.681 DEBUG [6461]: Database connection successful -- 16:37:09.681 INFO [6461]: _SERVER found -- 16:37:09.681 INFO [6461]: REMOTE_ADDR = 10.0.0.15 -- 16:37:09.681 INFO [6461]: SERVER_NAME = oameye.works.coregrade.com -- 16:37:09.681 INFO [6461]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=l02f6qmhea0t8gela56im8vhr9b7ceid -- 16:37:09.681 INFO [6461]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:37:09.681 INFO [6461]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:37:09.692 INFO [6461]: COREGRADE is stopping... -- 16:37:09.692 DEBUG [6461]: Closing database connection -- 16:37:09.692 SQL [6461]: pgsql_close() -- 16:37:13.547 INFO [6457]: COREGRADE is starting... -- 16:37:13.548 INFO [6457]: Version from config: 1.0 -- 16:37:13.548 DEBUG [6457]: Connecting to database... -- 16:37:13.548 DEBUG [6457]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:37:13.548 SQL [6457]: pgsql_db_connect() -- 16:37:13.554 INFO [6461]: COREGRADE is starting... -- 16:37:13.554 INFO [6461]: Version from config: 1.0 -- 16:37:13.554 DEBUG [6461]: Connecting to database... -- 16:37:13.554 DEBUG [6461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:37:13.554 SQL [6461]: pgsql_db_connect() -- 16:37:13.558 DEBUG [6461]: Database connection successful -- 16:37:13.558 INFO [6461]: _SERVER found -- 16:37:13.558 INFO [6461]: REMOTE_ADDR = 10.0.0.15 -- 16:37:13.558 INFO [6461]: SERVER_NAME = oameye.works.coregrade.com -- 16:37:13.558 INFO [6461]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=l02f6qmhea0t8gela56im8vhr9b7ceid -- 16:37:13.558 INFO [6461]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:37:13.558 INFO [6461]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:37:13.569 INFO [6461]: COREGRADE is stopping... -- 16:37:13.569 DEBUG [6461]: Closing database connection -- 16:37:13.569 SQL [6461]: pgsql_close() -- 16:37:13.552 DEBUG [6457]: Database connection successful -- 16:37:13.552 INFO [6457]: _SERVER found -- 16:37:13.552 INFO [6457]: REMOTE_ADDR = 10.0.0.15 -- 16:37:13.552 INFO [6457]: SERVER_NAME = oameye.works.coregrade.com -- 16:37:13.552 INFO [6457]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=l02f6qmhea0t8gela56im8vhr9b7ceid -- 16:37:13.552 INFO [6457]: QUERY_STRING = /auth -- 16:37:13.552 INFO [6457]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:37:13.587 INFO [6457]: COREGRADE is stopping... -- 16:37:13.587 DEBUG [6457]: Closing database connection -- 16:37:13.587 SQL [6457]: pgsql_close() -- 16:37:14.832 INFO [6457]: COREGRADE is starting... -- 16:37:14.833 INFO [6457]: Version from config: 1.0 -- 16:37:14.833 DEBUG [6457]: Connecting to database... -- 16:37:14.833 DEBUG [6457]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:37:14.833 SQL [6457]: pgsql_db_connect() -- 16:37:14.836 INFO [6461]: COREGRADE is starting... -- 16:37:14.837 INFO [6461]: Version from config: 1.0 -- 16:37:14.837 DEBUG [6461]: Connecting to database... -- 16:37:14.837 DEBUG [6461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:37:14.837 SQL [6461]: pgsql_db_connect() -- 16:37:14.841 DEBUG [6461]: Database connection successful -- 16:37:14.841 INFO [6461]: _SERVER found -- 16:37:14.841 INFO [6461]: REMOTE_ADDR = 10.0.0.15 -- 16:37:14.841 INFO [6461]: SERVER_NAME = oameye.works.coregrade.com -- 16:37:14.841 INFO [6461]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=l02f6qmhea0t8gela56im8vhr9b7ceid -- 16:37:14.841 INFO [6461]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:37:14.841 INFO [6461]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:37:14.852 INFO [6461]: COREGRADE is stopping... -- 16:37:14.852 DEBUG [6461]: Closing database connection -- 16:37:14.852 SQL [6461]: pgsql_close() -- 16:37:14.837 DEBUG [6457]: Database connection successful -- 16:37:14.837 INFO [6457]: _SERVER found -- 16:37:14.837 INFO [6457]: REMOTE_ADDR = 10.0.0.15 -- 16:37:14.837 INFO [6457]: SERVER_NAME = oameye.works.coregrade.com -- 16:37:14.837 INFO [6457]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=l02f6qmhea0t8gela56im8vhr9b7ceid -- 16:37:14.837 INFO [6457]: QUERY_STRING = /auth/resetpass -- 16:37:14.837 INFO [6457]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:37:14.872 INFO [6457]: COREGRADE is stopping... -- 16:37:14.872 DEBUG [6457]: Closing database connection -- 16:37:14.872 SQL [6457]: pgsql_close() -- 16:37:17.410 INFO [6457]: COREGRADE is starting... -- 16:37:17.410 INFO [6457]: Version from config: 1.0 -- 16:37:17.410 DEBUG [6457]: Connecting to database... -- 16:37:17.410 DEBUG [6457]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:37:17.410 SQL [6457]: pgsql_db_connect() -- 16:37:17.415 INFO [6461]: COREGRADE is starting... -- 16:37:17.415 INFO [6461]: Version from config: 1.0 -- 16:37:17.415 DEBUG [6461]: Connecting to database... -- 16:37:17.415 DEBUG [6461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:37:17.415 SQL [6461]: pgsql_db_connect() -- 16:37:17.419 DEBUG [6461]: Database connection successful -- 16:37:17.419 INFO [6461]: _SERVER found -- 16:37:17.419 INFO [6461]: REMOTE_ADDR = 10.0.0.15 -- 16:37:17.419 INFO [6461]: SERVER_NAME = oameye.works.coregrade.com -- 16:37:17.419 INFO [6461]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=l02f6qmhea0t8gela56im8vhr9b7ceid -- 16:37:17.419 INFO [6461]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:37:17.419 INFO [6461]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:37:17.430 INFO [6461]: COREGRADE is stopping... -- 16:37:17.430 DEBUG [6461]: Closing database connection -- 16:37:17.430 SQL [6461]: pgsql_close() -- 16:37:17.414 DEBUG [6457]: Database connection successful -- 16:37:17.414 INFO [6457]: _SERVER found -- 16:37:17.414 INFO [6457]: REMOTE_ADDR = 10.0.0.15 -- 16:37:17.414 INFO [6457]: SERVER_NAME = oameye.works.coregrade.com -- 16:37:17.414 INFO [6457]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=l02f6qmhea0t8gela56im8vhr9b7ceid -- 16:37:17.414 INFO [6457]: QUERY_STRING = /auth -- 16:37:17.414 INFO [6457]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:37:17.449 INFO [6457]: COREGRADE is stopping... -- 16:37:17.449 DEBUG [6457]: Closing database connection -- 16:37:17.449 SQL [6457]: pgsql_close() -- 16:37:20.699 INFO [6457]: COREGRADE is starting... -- 16:37:20.699 INFO [6457]: Version from config: 1.0 -- 16:37:20.699 DEBUG [6457]: Connecting to database... -- 16:37:20.699 DEBUG [6457]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:37:20.699 SQL [6457]: pgsql_db_connect() -- 16:37:20.703 DEBUG [6457]: Database connection successful -- 16:37:20.703 INFO [6457]: _SERVER found -- 16:37:20.703 INFO [6457]: REMOTE_ADDR = 10.0.0.15 -- 16:37:20.703 INFO [6457]: SERVER_NAME = oameye.works.coregrade.com -- 16:37:20.703 INFO [6457]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=l02f6qmhea0t8gela56im8vhr9b7ceid -- 16:37:20.703 INFO [6457]: QUERY_STRING = /auth/newuser -- 16:37:20.703 INFO [6457]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:37:20.738 INFO [6457]: COREGRADE is stopping... -- 16:37:20.738 DEBUG [6457]: Closing database connection -- 16:37:20.738 SQL [6457]: pgsql_close() -- 16:37:20.802 INFO [6457]: COREGRADE is starting... -- 16:37:20.802 INFO [6457]: Version from config: 1.0 -- 16:37:20.802 DEBUG [6457]: Connecting to database... -- 16:37:20.802 DEBUG [6457]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:37:20.802 SQL [6457]: pgsql_db_connect() -- 16:37:20.806 DEBUG [6457]: Database connection successful -- 16:37:20.806 INFO [6457]: _SERVER found -- 16:37:20.806 INFO [6457]: REMOTE_ADDR = 10.0.0.15 -- 16:37:20.806 INFO [6457]: SERVER_NAME = oameye.works.coregrade.com -- 16:37:20.806 INFO [6457]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=l02f6qmhea0t8gela56im8vhr9b7ceid -- 16:37:20.806 INFO [6457]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:37:20.806 INFO [6457]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:37:20.819 INFO [6457]: COREGRADE is stopping... -- 16:37:20.819 DEBUG [6457]: Closing database connection -- 16:37:20.819 SQL [6457]: pgsql_close() -- 16:38:55.182 INFO [6459]: COREGRADE is starting... -- 16:38:55.182 INFO [6459]: Version from config: 1.0 -- 16:38:55.182 DEBUG [6459]: Connecting to database... -- 16:38:55.182 DEBUG [6459]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:38:55.182 SQL [6459]: pgsql_db_connect() -- 16:38:55.186 DEBUG [6459]: Database connection successful -- 16:38:55.186 INFO [6459]: _SERVER found -- 16:38:55.186 INFO [6459]: REMOTE_ADDR = 10.0.0.15 -- 16:38:55.186 INFO [6459]: SERVER_NAME = oameye.works.coregrade.com -- 16:38:55.186 INFO [6459]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=u68t6equk3bac64mguvs95r8c78i1v8u -- 16:38:55.186 INFO [6459]: QUERY_STRING = /auth/newuser -- 16:38:55.186 INFO [6459]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:38:55.222 INFO [6459]: COREGRADE is stopping... -- 16:38:55.222 DEBUG [6459]: Closing database connection -- 16:38:55.222 SQL [6459]: pgsql_close() -- 16:38:55.333 INFO [6459]: COREGRADE is starting... -- 16:38:55.333 INFO [6459]: Version from config: 1.0 -- 16:38:55.333 DEBUG [6459]: Connecting to database... -- 16:38:55.333 DEBUG [6459]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:38:55.333 SQL [6459]: pgsql_db_connect() -- 16:38:55.337 DEBUG [6459]: Database connection successful -- 16:38:55.337 INFO [6459]: _SERVER found -- 16:38:55.337 INFO [6459]: REMOTE_ADDR = 10.0.0.15 -- 16:38:55.337 INFO [6459]: SERVER_NAME = oameye.works.coregrade.com -- 16:38:55.337 INFO [6459]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=1nqc2fj0tnst72rnumcv4g48k60sv3ih -- 16:38:55.337 INFO [6459]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:38:55.337 INFO [6459]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:38:55.349 INFO [6459]: COREGRADE is stopping... -- 16:38:55.349 DEBUG [6459]: Closing database connection -- 16:38:55.349 SQL [6459]: pgsql_close() -- 16:38:57.314 INFO [6459]: COREGRADE is starting... -- 16:38:57.315 INFO [6459]: Version from config: 1.0 -- 16:38:57.315 DEBUG [6459]: Connecting to database... -- 16:38:57.315 DEBUG [6459]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:38:57.315 SQL [6459]: pgsql_db_connect() -- 16:38:57.319 DEBUG [6459]: Database connection successful -- 16:38:57.319 INFO [6459]: _SERVER found -- 16:38:57.319 INFO [6459]: REMOTE_ADDR = 10.0.0.15 -- 16:38:57.319 INFO [6459]: SERVER_NAME = oameye.works.coregrade.com -- 16:38:57.319 INFO [6459]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=1nqc2fj0tnst72rnumcv4g48k60sv3ih -- 16:38:57.319 INFO [6459]: QUERY_STRING = -- 16:38:57.319 INFO [6459]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:38:57.353 INFO [6459]: COREGRADE is stopping... -- 16:38:57.353 DEBUG [6459]: Closing database connection -- 16:38:57.353 SQL [6459]: pgsql_close() -- 16:39:59.339 INFO [6460]: COREGRADE is starting... -- 16:39:59.339 INFO [6460]: Version from config: 1.0 -- 16:39:59.339 DEBUG [6460]: Connecting to database... -- 16:39:59.339 DEBUG [6460]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:39:59.339 SQL [6460]: pgsql_db_connect() -- 16:39:59.343 DEBUG [6460]: Database connection successful -- 16:39:59.343 INFO [6460]: _SERVER found -- 16:39:59.343 INFO [6460]: REMOTE_ADDR = 10.0.0.15 -- 16:39:59.343 INFO [6460]: SERVER_NAME = oameye.works.coregrade.com -- 16:39:59.343 INFO [6460]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=1nqc2fj0tnst72rnumcv4g48k60sv3ih -- 16:39:59.343 INFO [6460]: QUERY_STRING = -- 16:39:59.343 INFO [6460]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:39:59.378 INFO [6460]: COREGRADE is stopping... -- 16:39:59.379 DEBUG [6460]: Closing database connection -- 16:39:59.379 SQL [6460]: pgsql_close() -- 16:39:59.475 INFO [6460]: COREGRADE is starting... -- 16:39:59.475 INFO [6460]: Version from config: 1.0 -- 16:39:59.475 DEBUG [6460]: Connecting to database... -- 16:39:59.475 DEBUG [6460]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:39:59.475 SQL [6460]: pgsql_db_connect() -- 16:39:59.480 DEBUG [6460]: Database connection successful -- 16:39:59.480 INFO [6460]: _SERVER found -- 16:39:59.480 INFO [6460]: REMOTE_ADDR = 10.0.0.15 -- 16:39:59.480 INFO [6460]: SERVER_NAME = oameye.works.coregrade.com -- 16:39:59.480 INFO [6460]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=1nqc2fj0tnst72rnumcv4g48k60sv3ih -- 16:39:59.480 INFO [6460]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:39:59.480 INFO [6460]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:39:59.492 INFO [6460]: COREGRADE is stopping... -- 16:39:59.492 DEBUG [6460]: Closing database connection -- 16:39:59.492 SQL [6460]: pgsql_close() -- 16:40:56.254 INFO [6467]: COREGRADE is starting... -- 16:40:56.255 INFO [6467]: Version from config: 1.0 -- 16:40:56.255 DEBUG [6467]: Connecting to database... -- 16:40:56.255 DEBUG [6467]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:40:56.255 SQL [6467]: pgsql_db_connect() -- 16:40:56.259 DEBUG [6467]: Database connection successful -- 16:40:56.259 INFO [6467]: _SERVER found -- 16:40:56.259 INFO [6467]: REMOTE_ADDR = 10.0.0.15 -- 16:40:56.259 INFO [6467]: SERVER_NAME = oameye.works.coregrade.com -- 16:40:56.259 INFO [6467]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=1nqc2fj0tnst72rnumcv4g48k60sv3ih; _gat_gtag_UA_54829827_2=1 -- 16:40:56.259 INFO [6467]: QUERY_STRING = -- 16:40:56.259 INFO [6467]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:40:56.295 INFO [6467]: COREGRADE is stopping... -- 16:40:56.295 DEBUG [6467]: Closing database connection -- 16:40:56.295 SQL [6467]: pgsql_close() -- 16:40:56.398 INFO [6467]: COREGRADE is starting... -- 16:40:56.398 INFO [6467]: Version from config: 1.0 -- 16:40:56.398 DEBUG [6467]: Connecting to database... -- 16:40:56.399 DEBUG [6467]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:40:56.399 SQL [6467]: pgsql_db_connect() -- 16:40:56.402 DEBUG [6467]: Database connection successful -- 16:40:56.402 INFO [6467]: _SERVER found -- 16:40:56.402 INFO [6467]: REMOTE_ADDR = 10.0.0.15 -- 16:40:56.402 INFO [6467]: SERVER_NAME = oameye.works.coregrade.com -- 16:40:56.402 INFO [6467]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=1nqc2fj0tnst72rnumcv4g48k60sv3ih; _gat_gtag_UA_54829827_2=1 -- 16:40:56.402 INFO [6467]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:40:56.402 INFO [6467]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:40:56.415 INFO [6467]: COREGRADE is stopping... -- 16:40:56.415 DEBUG [6467]: Closing database connection -- 16:40:56.415 SQL [6467]: pgsql_close() -- 16:45:14.317 INFO [6468]: COREGRADE is starting... -- 16:45:14.318 INFO [6468]: Version from config: 1.0 -- 16:45:14.318 DEBUG [6468]: Connecting to database... -- 16:45:14.318 DEBUG [6468]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:45:14.318 SQL [6468]: pgsql_db_connect() -- 16:45:14.322 DEBUG [6468]: Database connection successful -- 16:45:14.322 INFO [6468]: _SERVER found -- 16:45:14.322 INFO [6468]: REMOTE_ADDR = 10.0.0.15 -- 16:45:14.322 INFO [6468]: SERVER_NAME = oameye.works.coregrade.com -- 16:45:14.322 INFO [6468]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=l02f6qmhea0t8gela56im8vhr9b7ceid -- 16:45:14.322 INFO [6468]: QUERY_STRING = /auth -- 16:45:14.322 INFO [6468]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:45:14.361 INFO [6468]: COREGRADE is stopping... -- 16:45:14.361 DEBUG [6468]: Closing database connection -- 16:45:14.361 SQL [6468]: pgsql_close() -- 16:45:14.384 INFO [6469]: COREGRADE is starting... -- 16:45:14.385 INFO [6469]: Version from config: 1.0 -- 16:45:14.385 DEBUG [6469]: Connecting to database... -- 16:45:14.385 DEBUG [6469]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:45:14.385 SQL [6469]: pgsql_db_connect() -- 16:45:14.389 DEBUG [6469]: Database connection successful -- 16:45:14.389 INFO [6469]: _SERVER found -- 16:45:14.389 INFO [6469]: REMOTE_ADDR = 10.0.0.15 -- 16:45:14.389 INFO [6469]: SERVER_NAME = oameye.works.coregrade.com -- 16:45:14.389 INFO [6469]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=l02f6qmhea0t8gela56im8vhr9b7ceid -- 16:45:14.389 INFO [6469]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:45:14.389 INFO [6469]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:45:14.401 INFO [6469]: COREGRADE is stopping... -- 16:45:14.401 DEBUG [6469]: Closing database connection -- 16:45:14.401 SQL [6469]: pgsql_close() -- 16:45:22.422 INFO [6458]: COREGRADE is starting... -- 16:45:22.423 INFO [6458]: Version from config: 1.0 -- 16:45:22.423 DEBUG [6458]: Connecting to database... -- 16:45:22.423 DEBUG [6458]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:45:22.423 SQL [6458]: pgsql_db_connect() -- 16:45:22.464 INFO [6458]: COREGRADE is starting... -- 16:45:22.464 INFO [6458]: Version from config: 1.0 -- 16:45:22.464 DEBUG [6458]: Connecting to database... -- 16:45:22.464 DEBUG [6458]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:45:22.464 SQL [6458]: pgsql_db_connect() -- 16:45:22.468 DEBUG [6458]: Database connection successful -- 16:45:22.468 INFO [6458]: _SERVER found -- 16:45:22.468 INFO [6458]: REMOTE_ADDR = 10.0.0.15 -- 16:45:22.468 INFO [6458]: SERVER_NAME = oameye.works.coregrade.com -- 16:45:22.468 INFO [6458]: HTTP_COOKIE = ci_session=t73d4um4labsrqdegil9jtviqmsted1i; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 16:45:22.468 INFO [6458]: QUERY_STRING = -- 16:45:22.468 INFO [6458]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:45:22.468 INFO [6458]: SystemStatus()09-09-********~************ -- 16:45:22.468 INFO [6458]: long coregrade_api_main(CVars in, CVars &out) -- 16:45:22.469 INFO [6458]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 16:45:22.469 INFO [6458]: account calls -- 16:45:22.469 INFO [6458]: account_calls() -- 16:45:22.469 INFO [6458]: LoginCoreGradeAccount() -- 16:45:22.469 FLOG_MAX [6458]: REQ_STRING(username) -- 16:45:22.469 FLOG_MAX [6458]: REQ_STRING(password) -- 16:45:22.469 FLOG_MAX [6458]: REQ_STRING(sessionid) -- 16:45:22.469 FLOG_MAX [6458]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:45:22.469 SQL [6458]: pgsql_query() -- 16:45:22.469 SQL [6458]: About to run query: -- 16:45:22.469 SQL [6458]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 16:45:22.472 SQL [6458]: Found rows: 1 -- 16:45:22.472 FLOG_MAX [6458]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 16:45:22.472 INFO [6458]: long SessionCheck(long uid, const char *sessionid, int create ) -- 16:45:22.472 SQL [6458]: pgsql_exec() -- 16:45:22.473 SQL [6458]: About to run query: -- 16:45:22.473 SQL [6458]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 16:45:22.474 SQL [6458]: PQcmdTuples: 1 -- 16:45:22.474 SQL [6458]: Affected rows: 1 -- 16:45:22.474 SQL [6458]: pgsql_exec() -- 16:45:22.474 SQL [6458]: About to run query: -- 16:45:22.474 SQL [6458]: DELETE FROM members_session WHERE member_id=5 -- 16:45:22.475 SQL [6458]: PQcmdTuples: 0 -- 16:45:22.475 SQL [6458]: Affected rows: 0 -- 16:45:22.475 SQL [6458]: pgsql_query() -- 16:45:22.475 SQL [6458]: About to run query: -- 16:45:22.475 SQL [6458]: SELECT * FROM members_session WHERE member_id=5 AND session<>'E7B447149A679DDEB242A992A436C7B8' -- 16:45:22.476 SQL [6458]: Found rows: 0 -- 16:45:22.476 SQL [6458]: Found rows: 0 -- 16:45:22.476 FLOG_MAX [6458]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:45:22.476 SQL [6458]: pgsql_query() -- 16:45:22.476 SQL [6458]: About to run query: -- 16:45:22.476 SQL [6458]: SELECT * FROM members_session WHERE member_id=5 AND session='E7B447149A679DDEB242A992A436C7B8' -- 16:45:22.476 SQL [6458]: Found rows: 0 -- 16:45:22.476 SQL [6458]: Found rows: 0 -- 16:45:22.476 FLOG_MAX [6458]: insert_db_record() -- 16:45:22.476 SQL [6458]: pgsql_exec() -- 16:45:22.476 SQL [6458]: About to run query: -- 16:45:22.476 SQL [6458]: INSERT INTO members_session (member_id,session) VALUES ('5','E7B447149A679DDEB242A992A436C7B8') -- 16:45:22.478 SQL [6458]: PQcmdTuples: 1 -- 16:45:22.478 SQL [6458]: Affected rows: 1 -- 16:45:22.478 FLOG_MAX [6458]: SELECT currval('members_session_id_seq') -- 16:45:22.478 SQL [6458]: pgsql_query() -- 16:45:22.478 SQL [6458]: About to run query: -- 16:45:22.478 SQL [6458]: SELECT currval('members_session_id_seq') -- 16:45:22.479 SQL [6458]: Found rows: 1 -- 16:45:22.479 INFO [6458]: CreateDefaultPage() -- 16:45:22.479 FLOG_MAX [6458]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:45:22.479 SQL [6458]: pgsql_query() -- 16:45:22.479 SQL [6458]: About to run query: -- 16:45:22.479 SQL [6458]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 16:45:22.479 SQL [6458]: Found rows: 1 -- 16:45:22.479 FLOG_MAX [6458]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 16:45:22.479 SQL [6458]: pgsql_query() -- 16:45:22.479 SQL [6458]: About to run query: -- 16:45:22.479 SQL [6458]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 16:45:22.480 SQL [6458]: Found rows: 1 -- 16:45:22.480 INFO [6458]: /CreateDefaultPage() -- 16:45:22.480 INFO [6458]: /LoginCoreGradeAccount() -- 16:45:22.480 INFO [6458]: RET: added=2020-02-05 06:47:23.982154 -- 16:45:22.480 INFO [6458]: RET: email=ameye+11@chiefsoft.com -- 16:45:22.480 INFO [6458]: RET: firstname=Olu -- 16:45:22.480 INFO [6458]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 16:45:22.480 INFO [6458]: RET: id=5 -- 16:45:22.480 INFO [6458]: RET: last_login= -- 16:45:22.480 INFO [6458]: RET: lastname=Amey -- 16:45:22.480 INFO [6458]: RET: loc=192.168.1.13 -- 16:45:22.480 INFO [6458]: RET: member_id=5 -- 16:45:22.480 INFO [6458]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 16:45:22.480 INFO [6458]: RET: phone= -- 16:45:22.480 INFO [6458]: RET: pid= -- 16:45:22.480 INFO [6458]: RET: result=YES I GET TO BACK END -- 16:45:22.480 INFO [6458]: RET: sessionid=E7B447149A679DDEB242A992A436C7B8 -- 16:45:22.480 INFO [6458]: RET: status=1 -- 16:45:22.480 INFO [6458]: RET: stauts=OK -- 16:45:22.480 INFO [6458]: RET: username=ameye+11@chiefsoft.com -- 16:45:22.480 INFO [6458]: RET: verified= -- 16:45:22.482 INFO [6458]: COREGRADE is stopping... -- 16:45:22.482 DEBUG [6458]: Closing database connection -- 16:45:22.482 SQL [6458]: pgsql_close() -- 16:45:22.427 DEBUG [6458]: Database connection successful -- 16:45:22.427 INFO [6458]: _SERVER found -- 16:45:22.427 INFO [6458]: REMOTE_ADDR = 10.0.0.15 -- 16:45:22.427 INFO [6458]: SERVER_NAME = oameye.works.coregrade.com -- 16:45:22.427 INFO [6458]: HTTP_COOKIE = ci_session=t73d4um4labsrqdegil9jtviqmsted1i; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 16:45:22.427 INFO [6458]: QUERY_STRING = /auth -- 16:45:22.427 INFO [6458]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:45:22.482 INFO [6458]: COREGRADE is stopping... -- 16:45:22.482 DEBUG [6458]: Closing database connection -- 16:45:22.482 SQL [6458]: pgsql_close() -- 16:45:22.524 INFO [6458]: COREGRADE is starting... -- 16:45:22.525 INFO [6458]: Version from config: 1.0 -- 16:45:22.525 DEBUG [6458]: Connecting to database... -- 16:45:22.525 DEBUG [6458]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:45:22.525 SQL [6458]: pgsql_db_connect() -- 16:45:22.529 DEBUG [6458]: Database connection successful -- 16:45:22.529 INFO [6458]: _SERVER found -- 16:45:22.529 INFO [6458]: REMOTE_ADDR = 10.0.0.15 -- 16:45:22.529 INFO [6458]: SERVER_NAME = oameye.works.coregrade.com -- 16:45:22.529 INFO [6458]: HTTP_COOKIE = ci_session=t73d4um4labsrqdegil9jtviqmsted1i; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 16:45:22.529 INFO [6458]: QUERY_STRING = /member/index -- 16:45:22.529 INFO [6458]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:45:22.570 INFO [6458]: COREGRADE is stopping... -- 16:45:22.570 DEBUG [6458]: Closing database connection -- 16:45:22.570 SQL [6458]: pgsql_close() -- 16:45:22.907 INFO [6461]: COREGRADE is starting... -- 16:45:22.908 INFO [6461]: Version from config: 1.0 -- 16:45:22.908 DEBUG [6461]: Connecting to database... -- 16:45:22.908 DEBUG [6461]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:45:22.908 SQL [6461]: pgsql_db_connect() -- 16:45:22.912 DEBUG [6461]: Database connection successful -- 16:45:22.912 INFO [6461]: _SERVER found -- 16:45:22.912 INFO [6461]: REMOTE_ADDR = 10.0.0.15 -- 16:45:22.912 INFO [6461]: SERVER_NAME = oameye.works.coregrade.com -- 16:45:22.912 INFO [6461]: HTTP_COOKIE = ci_session=t73d4um4labsrqdegil9jtviqmsted1i; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 16:45:22.912 INFO [6461]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:45:22.912 INFO [6461]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:45:22.924 INFO [6461]: COREGRADE is stopping... -- 16:45:22.924 DEBUG [6461]: Closing database connection -- 16:45:22.924 SQL [6461]: pgsql_close() -- 16:47:03.795 INFO [6459]: COREGRADE is starting... -- 16:47:03.795 INFO [6459]: Version from config: 1.0 -- 16:47:03.795 DEBUG [6459]: Connecting to database... -- 16:47:03.795 DEBUG [6459]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:47:03.795 SQL [6459]: pgsql_db_connect() -- 16:47:03.799 DEBUG [6459]: Database connection successful -- 16:47:03.799 INFO [6459]: _SERVER found -- 16:47:03.799 INFO [6459]: REMOTE_ADDR = 10.0.0.15 -- 16:47:03.799 INFO [6459]: SERVER_NAME = oameye.works.coregrade.com -- 16:47:03.799 INFO [6459]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=1nqc2fj0tnst72rnumcv4g48k60sv3ih -- 16:47:03.799 INFO [6459]: QUERY_STRING = -- 16:47:03.799 INFO [6459]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:47:03.835 INFO [6459]: COREGRADE is stopping... -- 16:47:03.835 DEBUG [6459]: Closing database connection -- 16:47:03.835 SQL [6459]: pgsql_close() -- 16:47:03.907 INFO [6459]: COREGRADE is starting... -- 16:47:03.908 INFO [6459]: Version from config: 1.0 -- 16:47:03.908 DEBUG [6459]: Connecting to database... -- 16:47:03.908 DEBUG [6459]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:47:03.908 SQL [6459]: pgsql_db_connect() -- 16:47:03.912 DEBUG [6459]: Database connection successful -- 16:47:03.912 INFO [6459]: _SERVER found -- 16:47:03.912 INFO [6459]: REMOTE_ADDR = 10.0.0.15 -- 16:47:03.912 INFO [6459]: SERVER_NAME = oameye.works.coregrade.com -- 16:47:03.912 INFO [6459]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=5o1os5bcib25c16g4hgs64srj4da57dc -- 16:47:03.912 INFO [6459]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:47:03.912 INFO [6459]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:47:03.924 INFO [6459]: COREGRADE is stopping... -- 16:47:03.924 DEBUG [6459]: Closing database connection -- 16:47:03.924 SQL [6459]: pgsql_close() -- 16:48:39.795 INFO [6460]: COREGRADE is starting... -- 16:48:39.796 INFO [6460]: Version from config: 1.0 -- 16:48:39.796 DEBUG [6460]: Connecting to database... -- 16:48:39.796 DEBUG [6460]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:48:39.796 SQL [6460]: pgsql_db_connect() -- 16:48:39.800 DEBUG [6460]: Database connection successful -- 16:48:39.800 INFO [6460]: _SERVER found -- 16:48:39.800 INFO [6460]: REMOTE_ADDR = 10.0.0.15 -- 16:48:39.800 INFO [6460]: SERVER_NAME = oameye.works.coregrade.com -- 16:48:39.800 INFO [6460]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=5o1os5bcib25c16g4hgs64srj4da57dc -- 16:48:39.800 INFO [6460]: QUERY_STRING = -- 16:48:39.800 INFO [6460]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:48:39.836 INFO [6460]: COREGRADE is stopping... -- 16:48:39.836 DEBUG [6460]: Closing database connection -- 16:48:39.836 SQL [6460]: pgsql_close() -- 16:48:39.907 INFO [6460]: COREGRADE is starting... -- 16:48:39.907 INFO [6460]: Version from config: 1.0 -- 16:48:39.907 DEBUG [6460]: Connecting to database... -- 16:48:39.907 DEBUG [6460]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:48:39.907 SQL [6460]: pgsql_db_connect() -- 16:48:39.911 DEBUG [6460]: Database connection successful -- 16:48:39.912 INFO [6460]: _SERVER found -- 16:48:39.912 INFO [6460]: REMOTE_ADDR = 10.0.0.15 -- 16:48:39.912 INFO [6460]: SERVER_NAME = oameye.works.coregrade.com -- 16:48:39.912 INFO [6460]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=5o1os5bcib25c16g4hgs64srj4da57dc -- 16:48:39.912 INFO [6460]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:48:39.912 INFO [6460]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:48:39.924 INFO [6460]: COREGRADE is stopping... -- 16:48:39.924 DEBUG [6460]: Closing database connection -- 16:48:39.924 SQL [6460]: pgsql_close() -- 16:58:56.935 INFO [6467]: COREGRADE is starting... -- 16:58:56.935 INFO [6467]: Version from config: 1.0 -- 16:58:56.935 DEBUG [6467]: Connecting to database... -- 16:58:56.935 DEBUG [6467]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:56.935 SQL [6467]: pgsql_db_connect() -- 16:58:56.940 DEBUG [6467]: Database connection successful -- 16:58:56.940 INFO [6467]: _SERVER found -- 16:58:56.940 INFO [6467]: REMOTE_ADDR = 10.0.0.15 -- 16:58:56.940 INFO [6467]: SERVER_NAME = oameye.works.coregrade.com -- 16:58:56.940 INFO [6467]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=5o1os5bcib25c16g4hgs64srj4da57dc -- 16:58:56.940 INFO [6467]: QUERY_STRING = -- 16:58:56.940 INFO [6467]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:58:56.975 INFO [6467]: COREGRADE is stopping... -- 16:58:56.975 DEBUG [6467]: Closing database connection -- 16:58:56.975 SQL [6467]: pgsql_close() -- 16:58:57.091 INFO [6467]: COREGRADE is starting... -- 16:58:57.092 INFO [6467]: Version from config: 1.0 -- 16:58:57.092 DEBUG [6467]: Connecting to database... -- 16:58:57.092 DEBUG [6467]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:57.092 SQL [6467]: pgsql_db_connect() -- 16:58:57.096 DEBUG [6467]: Database connection successful -- 16:58:57.096 INFO [6467]: _SERVER found -- 16:58:57.096 INFO [6467]: REMOTE_ADDR = 10.0.0.15 -- 16:58:57.096 INFO [6467]: SERVER_NAME = oameye.works.coregrade.com -- 16:58:57.096 INFO [6467]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=3o344uug3043q1soiv3d56ubpko5pbtm -- 16:58:57.096 INFO [6467]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:58:57.096 INFO [6467]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:58:57.108 INFO [6467]: COREGRADE is stopping... -- 16:58:57.108 DEBUG [6467]: Closing database connection -- 16:58:57.108 SQL [6467]: pgsql_close() -- 17:00:28.693 INFO [6776]: COREGRADE is starting... -- 17:00:28.694 INFO [6776]: Version from config: 1.0 -- 17:00:28.694 DEBUG [6776]: Connecting to database... -- 17:00:28.694 DEBUG [6776]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:28.694 SQL [6776]: pgsql_db_connect() -- 17:00:28.699 DEBUG [6776]: Database connection successful -- 17:00:28.699 INFO [6776]: _SERVER found -- 17:00:28.699 INFO [6776]: REMOTE_ADDR = 10.0.0.15 -- 17:00:28.699 INFO [6776]: SERVER_NAME = oameye.works.coregrade.com -- 17:00:28.699 INFO [6776]: QUERY_STRING = -- 17:00:28.699 INFO [6776]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 17:00:28.743 INFO [6776]: COREGRADE is stopping... -- 17:00:28.743 DEBUG [6776]: Closing database connection -- 17:00:28.743 SQL [6776]: pgsql_close() -- 17:00:49.870 INFO [6778]: COREGRADE is starting... -- 17:00:49.870 INFO [6778]: Version from config: 1.0 -- 17:00:49.870 DEBUG [6778]: Connecting to database... -- 17:00:49.870 DEBUG [6778]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:49.870 SQL [6778]: pgsql_db_connect() -- 17:00:49.874 DEBUG [6778]: Database connection successful -- 17:00:49.874 INFO [6778]: _SERVER found -- 17:00:49.875 INFO [6778]: REMOTE_ADDR = 10.0.0.15 -- 17:00:49.875 INFO [6778]: SERVER_NAME = oameye.works.coregrade.com -- 17:00:49.875 INFO [6778]: HTTP_COOKIE = ci_session=t73d4um4labsrqdegil9jtviqmsted1i; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 17:00:49.875 INFO [6778]: QUERY_STRING = /member -- 17:00:49.875 INFO [6778]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:00:49.922 INFO [6778]: COREGRADE is stopping... -- 17:00:49.922 DEBUG [6778]: Closing database connection -- 17:00:49.922 SQL [6778]: pgsql_close() -- 17:00:50.017 INFO [6778]: COREGRADE is starting... -- 17:00:50.018 INFO [6778]: Version from config: 1.0 -- 17:00:50.018 DEBUG [6778]: Connecting to database... -- 17:00:50.018 DEBUG [6778]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:50.018 SQL [6778]: pgsql_db_connect() -- 17:00:50.022 DEBUG [6778]: Database connection successful -- 17:00:50.022 INFO [6778]: _SERVER found -- 17:00:50.022 INFO [6778]: REMOTE_ADDR = 10.0.0.15 -- 17:00:50.022 INFO [6778]: SERVER_NAME = oameye.works.coregrade.com -- 17:00:50.022 INFO [6778]: HTTP_COOKIE = ci_session=qhmqcqvn7ech1ssnilhse67bf9l532lc; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 17:00:50.022 INFO [6778]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:00:50.022 INFO [6778]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:00:50.034 INFO [6778]: COREGRADE is stopping... -- 17:00:50.034 DEBUG [6778]: Closing database connection -- 17:00:50.034 SQL [6778]: pgsql_close() -- 17:00:58.893 INFO [6777]: COREGRADE is starting... -- 17:00:58.893 INFO [6777]: Version from config: 1.0 -- 17:00:58.893 DEBUG [6777]: Connecting to database... -- 17:00:58.893 DEBUG [6777]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:58.893 SQL [6777]: pgsql_db_connect() -- 17:00:58.897 DEBUG [6777]: Database connection successful -- 17:00:58.897 INFO [6777]: _SERVER found -- 17:00:58.897 INFO [6777]: REMOTE_ADDR = 10.0.0.15 -- 17:00:58.897 INFO [6777]: SERVER_NAME = oameye.works.coregrade.com -- 17:00:58.897 INFO [6777]: HTTP_COOKIE = ci_session=qhmqcqvn7ech1ssnilhse67bf9l532lc; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 17:00:58.897 INFO [6777]: QUERY_STRING = /auth/logout -- 17:00:58.897 INFO [6777]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:00:58.936 INFO [6777]: COREGRADE is stopping... -- 17:00:58.936 DEBUG [6777]: Closing database connection -- 17:00:58.936 SQL [6777]: pgsql_close() -- 17:00:59.008 INFO [6777]: COREGRADE is starting... -- 17:00:59.008 INFO [6777]: Version from config: 1.0 -- 17:00:59.008 DEBUG [6777]: Connecting to database... -- 17:00:59.008 DEBUG [6777]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:59.008 SQL [6777]: pgsql_db_connect() -- 17:00:59.012 DEBUG [6777]: Database connection successful -- 17:00:59.012 INFO [6777]: _SERVER found -- 17:00:59.012 INFO [6777]: REMOTE_ADDR = 10.0.0.15 -- 17:00:59.012 INFO [6777]: SERVER_NAME = oameye.works.coregrade.com -- 17:00:59.012 INFO [6777]: HTTP_COOKIE = ci_session=qhmqcqvn7ech1ssnilhse67bf9l532lc; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 17:00:59.012 INFO [6777]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:00:59.012 INFO [6777]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:00:59.025 INFO [6777]: COREGRADE is stopping... -- 17:00:59.025 DEBUG [6777]: Closing database connection -- 17:00:59.025 SQL [6777]: pgsql_close() -- 17:01:02.152 INFO [6779]: COREGRADE is starting... -- 17:01:02.152 INFO [6779]: Version from config: 1.0 -- 17:01:02.152 DEBUG [6779]: Connecting to database... -- 17:01:02.152 DEBUG [6779]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:01:02.152 SQL [6779]: pgsql_db_connect() -- 17:01:02.158 DEBUG [6779]: Database connection successful -- 17:01:02.158 INFO [6779]: _SERVER found -- 17:01:02.158 INFO [6779]: REMOTE_ADDR = 10.0.0.15 -- 17:01:02.158 INFO [6779]: SERVER_NAME = oameye.works.coregrade.com -- 17:01:02.158 INFO [6779]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=3o344uug3043q1soiv3d56ubpko5pbtm -- 17:01:02.158 INFO [6779]: QUERY_STRING = /auth/newuser -- 17:01:02.158 INFO [6779]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:01:02.198 INFO [6779]: COREGRADE is stopping... -- 17:01:02.198 DEBUG [6779]: Closing database connection -- 17:01:02.198 SQL [6779]: pgsql_close() -- 17:01:02.382 INFO [6779]: COREGRADE is starting... -- 17:01:02.383 INFO [6779]: Version from config: 1.0 -- 17:01:02.383 DEBUG [6779]: Connecting to database... -- 17:01:02.383 DEBUG [6779]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:01:02.383 SQL [6779]: pgsql_db_connect() -- 17:01:02.387 DEBUG [6779]: Database connection successful -- 17:01:02.387 INFO [6779]: _SERVER found -- 17:01:02.387 INFO [6779]: REMOTE_ADDR = 10.0.0.15 -- 17:01:02.387 INFO [6779]: SERVER_NAME = oameye.works.coregrade.com -- 17:01:02.387 INFO [6779]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=3o344uug3043q1soiv3d56ubpko5pbtm -- 17:01:02.387 INFO [6779]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:01:02.387 INFO [6779]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:01:02.399 INFO [6779]: COREGRADE is stopping... -- 17:01:02.399 DEBUG [6779]: Closing database connection -- 17:01:02.399 SQL [6779]: pgsql_close() -- 17:01:26.358 INFO [6780]: COREGRADE is starting... -- 17:01:26.358 INFO [6780]: Version from config: 1.0 -- 17:01:26.358 DEBUG [6780]: Connecting to database... -- 17:01:26.358 DEBUG [6780]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:01:26.359 SQL [6780]: pgsql_db_connect() -- 17:01:26.363 DEBUG [6780]: Database connection successful -- 17:01:26.363 INFO [6780]: _SERVER found -- 17:01:26.363 INFO [6780]: REMOTE_ADDR = 10.0.0.15 -- 17:01:26.363 INFO [6780]: SERVER_NAME = oameye.works.coregrade.com -- 17:01:26.363 INFO [6780]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=3o344uug3043q1soiv3d56ubpko5pbtm -- 17:01:26.363 INFO [6780]: QUERY_STRING = /auth/newuser -- 17:01:26.363 INFO [6780]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:01:26.401 INFO [6780]: COREGRADE is stopping... -- 17:01:26.401 DEBUG [6780]: Closing database connection -- 17:01:26.401 SQL [6780]: pgsql_close() -- 17:01:26.597 INFO [6780]: COREGRADE is starting... -- 17:01:26.598 INFO [6780]: Version from config: 1.0 -- 17:01:26.598 DEBUG [6780]: Connecting to database... -- 17:01:26.598 DEBUG [6780]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:01:26.598 SQL [6780]: pgsql_db_connect() -- 17:01:26.602 DEBUG [6780]: Database connection successful -- 17:01:26.602 INFO [6780]: _SERVER found -- 17:01:26.602 INFO [6780]: REMOTE_ADDR = 10.0.0.15 -- 17:01:26.602 INFO [6780]: SERVER_NAME = oameye.works.coregrade.com -- 17:01:26.602 INFO [6780]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=3o344uug3043q1soiv3d56ubpko5pbtm -- 17:01:26.602 INFO [6780]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:01:26.602 INFO [6780]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:01:26.614 INFO [6780]: COREGRADE is stopping... -- 17:01:26.614 DEBUG [6780]: Closing database connection -- 17:01:26.614 SQL [6780]: pgsql_close() -- 17:01:28.305 INFO [6780]: COREGRADE is starting... -- 17:01:28.306 INFO [6780]: Version from config: 1.0 -- 17:01:28.306 DEBUG [6780]: Connecting to database... -- 17:01:28.306 DEBUG [6780]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:01:28.306 SQL [6780]: pgsql_db_connect() -- 17:01:28.310 DEBUG [6780]: Database connection successful -- 17:01:28.310 INFO [6780]: _SERVER found -- 17:01:28.310 INFO [6780]: REMOTE_ADDR = 10.0.0.15 -- 17:01:28.310 INFO [6780]: SERVER_NAME = oameye.works.coregrade.com -- 17:01:28.310 INFO [6780]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=3o344uug3043q1soiv3d56ubpko5pbtm -- 17:01:28.310 INFO [6780]: QUERY_STRING = -- 17:01:28.310 INFO [6780]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:01:28.347 INFO [6780]: COREGRADE is stopping... -- 17:01:28.347 DEBUG [6780]: Closing database connection -- 17:01:28.347 SQL [6780]: pgsql_close() -- 17:01:28.467 INFO [6780]: COREGRADE is starting... -- 17:01:28.467 INFO [6780]: Version from config: 1.0 -- 17:01:28.467 DEBUG [6780]: Connecting to database... -- 17:01:28.467 DEBUG [6780]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:01:28.468 SQL [6780]: pgsql_db_connect() -- 17:01:28.472 DEBUG [6780]: Database connection successful -- 17:01:28.472 INFO [6780]: _SERVER found -- 17:01:28.472 INFO [6780]: REMOTE_ADDR = 10.0.0.15 -- 17:01:28.472 INFO [6780]: SERVER_NAME = oameye.works.coregrade.com -- 17:01:28.472 INFO [6780]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=3o344uug3043q1soiv3d56ubpko5pbtm -- 17:01:28.472 INFO [6780]: QUERY_STRING = /assets/img/footer_1.jpg -- 17:01:28.472 INFO [6780]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:01:28.483 INFO [6780]: COREGRADE is stopping... -- 17:01:28.483 DEBUG [6780]: Closing database connection -- 17:01:28.483 SQL [6780]: pgsql_close() -- 17:01:30.839 INFO [6780]: COREGRADE is starting... -- 17:01:30.839 INFO [6780]: Version from config: 1.0 -- 17:01:30.839 DEBUG [6780]: Connecting to database... -- 17:01:30.839 DEBUG [6780]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:01:30.839 SQL [6780]: pgsql_db_connect() -- 17:01:30.843 DEBUG [6780]: Database connection successful -- 17:01:30.843 INFO [6780]: _SERVER found -- 17:01:30.843 INFO [6780]: REMOTE_ADDR = 10.0.0.15 -- 17:01:30.843 INFO [6780]: SERVER_NAME = oameye.works.coregrade.com -- 17:01:30.843 INFO [6780]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=3o344uug3043q1soiv3d56ubpko5pbtm; _gat_gtag_UA_54829827_2=1 -- 17:01:30.843 INFO [6780]: QUERY_STRING = /welcome/viewLogin -- 17:01:30.843 INFO [6780]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:01:30.874 INFO [6780]: COREGRADE is stopping... -- 17:01:30.874 DEBUG [6780]: Closing database connection -- 17:01:30.874 SQL [6780]: pgsql_close() -- 17:01:30.882 INFO [6780]: COREGRADE is starting... -- 17:01:30.883 INFO [6780]: Version from config: 1.0 -- 17:01:30.883 DEBUG [6780]: Connecting to database... -- 17:01:30.883 DEBUG [6780]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:01:30.883 SQL [6780]: pgsql_db_connect() -- 17:01:30.887 DEBUG [6780]: Database connection successful -- 17:01:30.887 INFO [6780]: _SERVER found -- 17:01:30.887 INFO [6780]: REMOTE_ADDR = 10.0.0.15 -- 17:01:30.887 INFO [6780]: SERVER_NAME = oameye.works.coregrade.com -- 17:01:30.887 INFO [6780]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=3o344uug3043q1soiv3d56ubpko5pbtm; _gat_gtag_UA_54829827_2=1 -- 17:01:30.887 INFO [6780]: QUERY_STRING = /auth -- 17:01:30.887 INFO [6780]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:01:30.918 INFO [6780]: COREGRADE is stopping... -- 17:01:30.918 DEBUG [6780]: Closing database connection -- 17:01:30.918 SQL [6780]: pgsql_close() -- 17:01:30.930 INFO [6780]: COREGRADE is starting... -- 17:01:30.930 INFO [6780]: Version from config: 1.0 -- 17:01:30.930 DEBUG [6780]: Connecting to database... -- 17:01:30.930 DEBUG [6780]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:01:30.930 SQL [6780]: pgsql_db_connect() -- 17:01:30.934 DEBUG [6780]: Database connection successful -- 17:01:30.934 INFO [6780]: _SERVER found -- 17:01:30.934 INFO [6780]: REMOTE_ADDR = 10.0.0.15 -- 17:01:30.934 INFO [6780]: SERVER_NAME = oameye.works.coregrade.com -- 17:01:30.934 INFO [6780]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=3o344uug3043q1soiv3d56ubpko5pbtm; _gat_gtag_UA_54829827_2=1 -- 17:01:30.934 INFO [6780]: QUERY_STRING = /auth/index -- 17:01:30.934 INFO [6780]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:01:30.966 INFO [6780]: COREGRADE is stopping... -- 17:01:30.966 DEBUG [6780]: Closing database connection -- 17:01:30.966 SQL [6780]: pgsql_close() -- 17:01:55.854 INFO [6838]: COREGRADE is starting... -- 17:01:55.855 INFO [6838]: Version from config: 1.0 -- 17:01:55.855 DEBUG [6838]: Connecting to database... -- 17:01:55.855 DEBUG [6838]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:01:55.855 SQL [6838]: pgsql_db_connect() -- 17:01:55.859 DEBUG [6838]: Database connection successful -- 17:01:55.859 INFO [6838]: _SERVER found -- 17:01:55.859 INFO [6838]: REMOTE_ADDR = 10.0.0.15 -- 17:01:55.859 INFO [6838]: SERVER_NAME = oameye.works.coregrade.com -- 17:01:55.859 INFO [6838]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=n2etstu6lcaqcscooajph3dedmoepcbq -- 17:01:55.859 INFO [6838]: QUERY_STRING = -- 17:01:55.859 INFO [6838]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:01:55.902 INFO [6838]: COREGRADE is stopping... -- 17:01:55.902 DEBUG [6838]: Closing database connection -- 17:01:55.902 SQL [6838]: pgsql_close() -- 17:01:56.489 INFO [6776]: COREGRADE is starting... -- 17:01:56.489 INFO [6776]: Version from config: 1.0 -- 17:01:56.489 DEBUG [6776]: Connecting to database... -- 17:01:56.489 DEBUG [6776]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:01:56.489 SQL [6776]: pgsql_db_connect() -- 17:01:56.493 DEBUG [6776]: Database connection successful -- 17:01:56.493 INFO [6776]: _SERVER found -- 17:01:56.493 INFO [6776]: REMOTE_ADDR = 10.0.0.15 -- 17:01:56.493 INFO [6776]: SERVER_NAME = oameye.works.coregrade.com -- 17:01:56.493 INFO [6776]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=jess57op4b86afvefnel0tbklclq705q -- 17:01:56.493 INFO [6776]: QUERY_STRING = /assets/img/footer_1.jpg -- 17:01:56.493 INFO [6776]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:01:56.505 INFO [6776]: COREGRADE is stopping... -- 17:01:56.505 DEBUG [6776]: Closing database connection -- 17:01:56.505 SQL [6776]: pgsql_close() -- 17:01:56.909 INFO [6776]: COREGRADE is starting... -- 17:01:56.910 INFO [6776]: Version from config: 1.0 -- 17:01:56.910 DEBUG [6776]: Connecting to database... -- 17:01:56.910 DEBUG [6776]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:01:56.910 SQL [6776]: pgsql_db_connect() -- 17:01:56.914 DEBUG [6776]: Database connection successful -- 17:01:56.914 INFO [6776]: _SERVER found -- 17:01:56.914 INFO [6776]: REMOTE_ADDR = 10.0.0.15 -- 17:01:56.914 INFO [6776]: SERVER_NAME = oameye.works.coregrade.com -- 17:01:56.914 INFO [6776]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=3o344uug3043q1soiv3d56ubpko5pbtm; _gat_gtag_UA_54829827_2=1 -- 17:01:56.914 INFO [6776]: QUERY_STRING = /auth/resetpass -- 17:01:56.914 INFO [6776]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:01:56.949 INFO [6776]: COREGRADE is stopping... -- 17:01:56.949 DEBUG [6776]: Closing database connection -- 17:01:56.949 SQL [6776]: pgsql_close() -- 17:01:57.124 INFO [6776]: COREGRADE is starting... -- 17:01:57.124 INFO [6776]: Version from config: 1.0 -- 17:01:57.124 DEBUG [6776]: Connecting to database... -- 17:01:57.124 DEBUG [6776]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:01:57.124 SQL [6776]: pgsql_db_connect() -- 17:01:57.128 DEBUG [6776]: Database connection successful -- 17:01:57.128 INFO [6776]: _SERVER found -- 17:01:57.128 INFO [6776]: REMOTE_ADDR = 10.0.0.15 -- 17:01:57.128 INFO [6776]: SERVER_NAME = oameye.works.coregrade.com -- 17:01:57.128 INFO [6776]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=3o344uug3043q1soiv3d56ubpko5pbtm; _gat_gtag_UA_54829827_2=1 -- 17:01:57.128 INFO [6776]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:01:57.128 INFO [6776]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:01:57.140 INFO [6776]: COREGRADE is stopping... -- 17:01:57.140 DEBUG [6776]: Closing database connection -- 17:01:57.140 SQL [6776]: pgsql_close() -- 17:02:07.208 INFO [6778]: COREGRADE is starting... -- 17:02:07.208 INFO [6778]: Version from config: 1.0 -- 17:02:07.208 DEBUG [6778]: Connecting to database... -- 17:02:07.208 DEBUG [6778]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:02:07.208 SQL [6778]: pgsql_db_connect() -- 17:02:07.229 INFO [6867]: COREGRADE is starting... -- 17:02:07.230 INFO [6867]: Version from config: 1.0 -- 17:02:07.230 DEBUG [6867]: Connecting to database... -- 17:02:07.230 DEBUG [6867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:02:07.230 SQL [6867]: pgsql_db_connect() -- 17:02:07.212 DEBUG [6778]: Database connection successful -- 17:02:07.212 INFO [6778]: _SERVER found -- 17:02:07.212 INFO [6778]: REMOTE_ADDR = 10.0.0.15 -- 17:02:07.212 INFO [6778]: SERVER_NAME = oameye.works.coregrade.com -- 17:02:07.212 INFO [6778]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=jess57op4b86afvefnel0tbklclq705q; _gat_gtag_UA_54829827_2=1 -- 17:02:07.212 INFO [6778]: QUERY_STRING = /auth -- 17:02:07.212 INFO [6778]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:02:07.247 INFO [6778]: COREGRADE is stopping... -- 17:02:07.247 DEBUG [6778]: Closing database connection -- 17:02:07.247 SQL [6778]: pgsql_close() -- 17:02:07.234 DEBUG [6867]: Database connection successful -- 17:02:07.234 INFO [6867]: _SERVER found -- 17:02:07.234 INFO [6867]: REMOTE_ADDR = 10.0.0.15 -- 17:02:07.234 INFO [6867]: SERVER_NAME = oameye.works.coregrade.com -- 17:02:07.234 INFO [6867]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=jess57op4b86afvefnel0tbklclq705q; _gat_gtag_UA_54829827_2=1 -- 17:02:07.234 INFO [6867]: QUERY_STRING = /welcome/viewLogin -- 17:02:07.234 INFO [6867]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:02:07.271 INFO [6867]: COREGRADE is stopping... -- 17:02:07.271 DEBUG [6867]: Closing database connection -- 17:02:07.271 SQL [6867]: pgsql_close() -- 17:02:07.651 INFO [6867]: COREGRADE is starting... -- 17:02:07.652 INFO [6867]: Version from config: 1.0 -- 17:02:07.652 DEBUG [6867]: Connecting to database... -- 17:02:07.652 DEBUG [6867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:02:07.652 SQL [6867]: pgsql_db_connect() -- 17:02:07.656 DEBUG [6867]: Database connection successful -- 17:02:07.656 INFO [6867]: _SERVER found -- 17:02:07.656 INFO [6867]: REMOTE_ADDR = 10.0.0.15 -- 17:02:07.656 INFO [6867]: SERVER_NAME = oameye.works.coregrade.com -- 17:02:07.656 INFO [6867]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=jess57op4b86afvefnel0tbklclq705q; _gat_gtag_UA_54829827_2=1 -- 17:02:07.656 INFO [6867]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:02:07.656 INFO [6867]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:02:07.669 INFO [6867]: COREGRADE is stopping... -- 17:02:07.669 DEBUG [6867]: Closing database connection -- 17:02:07.669 SQL [6867]: pgsql_close() -- 17:02:18.104 INFO [6777]: COREGRADE is starting... -- 17:02:18.104 INFO [6777]: Version from config: 1.0 -- 17:02:18.104 DEBUG [6777]: Connecting to database... -- 17:02:18.104 DEBUG [6777]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:02:18.104 SQL [6777]: pgsql_db_connect() -- 17:02:18.108 DEBUG [6777]: Database connection successful -- 17:02:18.108 INFO [6777]: _SERVER found -- 17:02:18.108 INFO [6777]: REMOTE_ADDR = 10.0.0.15 -- 17:02:18.108 INFO [6777]: SERVER_NAME = oameye.works.coregrade.com -- 17:02:18.108 INFO [6777]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=jess57op4b86afvefnel0tbklclq705q; _gat_gtag_UA_54829827_2=1 -- 17:02:18.108 INFO [6777]: QUERY_STRING = /auth/resetpass -- 17:02:18.108 INFO [6777]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:02:18.143 INFO [6777]: COREGRADE is stopping... -- 17:02:18.143 DEBUG [6777]: Closing database connection -- 17:02:18.143 SQL [6777]: pgsql_close() -- 17:02:18.576 INFO [6777]: COREGRADE is starting... -- 17:02:18.576 INFO [6777]: Version from config: 1.0 -- 17:02:18.576 DEBUG [6777]: Connecting to database... -- 17:02:18.576 DEBUG [6777]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:02:18.576 SQL [6777]: pgsql_db_connect() -- 17:02:18.581 DEBUG [6777]: Database connection successful -- 17:02:18.581 INFO [6777]: _SERVER found -- 17:02:18.581 INFO [6777]: REMOTE_ADDR = 10.0.0.15 -- 17:02:18.581 INFO [6777]: SERVER_NAME = oameye.works.coregrade.com -- 17:02:18.581 INFO [6777]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=jess57op4b86afvefnel0tbklclq705q; _gat_gtag_UA_54829827_2=1 -- 17:02:18.581 INFO [6777]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:02:18.581 INFO [6777]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:02:18.593 INFO [6777]: COREGRADE is stopping... -- 17:02:18.593 DEBUG [6777]: Closing database connection -- 17:02:18.593 SQL [6777]: pgsql_close() -- 17:02:50.642 INFO [6779]: COREGRADE is starting... -- 17:02:50.642 INFO [6779]: Version from config: 1.0 -- 17:02:50.642 DEBUG [6779]: Connecting to database... -- 17:02:50.642 DEBUG [6779]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:02:50.642 SQL [6779]: pgsql_db_connect() -- 17:02:50.682 INFO [6779]: COREGRADE is starting... -- 17:02:50.682 INFO [6779]: Version from config: 1.0 -- 17:02:50.682 DEBUG [6779]: Connecting to database... -- 17:02:50.682 DEBUG [6779]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:02:50.682 SQL [6779]: pgsql_db_connect() -- 17:02:50.686 DEBUG [6779]: Database connection successful -- 17:02:50.686 INFO [6779]: _SERVER found -- 17:02:50.686 INFO [6779]: REMOTE_ADDR = 10.0.0.15 -- 17:02:50.686 INFO [6779]: SERVER_NAME = oameye.works.coregrade.com -- 17:02:50.686 INFO [6779]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=jess57op4b86afvefnel0tbklclq705q; _gat_gtag_UA_54829827_2=1 -- 17:02:50.686 INFO [6779]: QUERY_STRING = -- 17:02:50.686 INFO [6779]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:02:50.686 INFO [6779]: SystemStatus()09-09-********~************ -- 17:02:50.686 INFO [6779]: long coregrade_api_main(CVars in, CVars &out) -- 17:02:50.686 INFO [6779]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 17:02:50.686 INFO [6779]: account calls -- 17:02:50.686 INFO [6779]: account_calls() -- 17:02:50.686 INFO [6779]: passwordReset() -- 17:02:50.686 INFO [6779]: startPassReset() -- 17:02:50.686 FLOG_MAX [6779]: REQ_STRING(username) -- 17:02:50.686 FLOG_MAX [6779]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:02:50.686 SQL [6779]: pgsql_query() -- 17:02:50.686 SQL [6779]: About to run query: -- 17:02:50.686 SQL [6779]: SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') -- 17:02:50.689 SQL [6779]: Found rows: 1 -- 17:02:50.689 FLOG_MAX [6779]: load_db_record(SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') ) num_cols=2 -- 17:02:50.689 SQL [6779]: pgsql_exec() -- 17:02:50.689 SQL [6779]: About to run query: -- 17:02:50.689 SQL [6779]: UPDATE password_reset SET status=7 WHERE status NOT IN (3,5) AND member_id=7 -- 17:02:50.691 SQL [6779]: PQcmdTuples: 1 -- 17:02:50.691 SQL [6779]: Affected rows: 1 -- 17:02:50.691 FLOG_MAX [6779]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:02:50.691 SQL [6779]: pgsql_query() -- 17:02:50.691 SQL [6779]: About to run query: -- 17:02:50.691 SQL [6779]: SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 17:02:50.686634-04') AS reset_key -- 17:02:50.691 SQL [6779]: Found rows: 1 -- 17:02:50.691 FLOG_MAX [6779]: load_db_record(SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 17:02:50.686634-04') AS reset_key) num_cols=2 -- 17:02:50.691 FLOG_MAX [6779]: insert_db_record() -- 17:02:50.691 SQL [6779]: pgsql_exec() -- 17:02:50.692 SQL [6779]: About to run query: -- 17:02:50.692 SQL [6779]: INSERT INTO password_reset (loc,member_id,reset_key,reset_pin,username) VALUES ('10.0.0.15','7','cb3d0ad7f9725159e1d712d4466582d2','66211','tokslaw@chiefsoft.com') -- 17:02:50.693 SQL [6779]: PQcmdTuples: 1 -- 17:02:50.693 SQL [6779]: Affected rows: 1 -- 17:02:50.693 FLOG_MAX [6779]: SELECT currval('password_reset_id_seq') -- 17:02:50.693 SQL [6779]: pgsql_query() -- 17:02:50.693 SQL [6779]: About to run query: -- 17:02:50.693 SQL [6779]: SELECT currval('password_reset_id_seq') -- 17:02:50.693 SQL [6779]: Found rows: 1 -- 17:02:50.693 INFO [6779]: member_email_calls() -- 17:02:50.694 FLOG_MAX [6779]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:02:50.694 SQL [6779]: pgsql_query() -- 17:02:50.694 SQL [6779]: About to run query: -- 17:02:50.694 SQL [6779]: SELECT m.firstname,p.*,m.email AS member_email, created AS lost_added FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=17 -- 17:02:50.695 SQL [6779]: Found rows: 1 -- 17:02:50.695 FLOG_MAX [6779]: load_db_record(SELECT m.firstname,p.*,m.email AS member_email, created AS lost_added FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=17 ) num_cols=12 -- 17:02:50.695 FLOG_MAX [6779]: CGI Parsing: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 17:02:50.695 FLOG_MAX [6779]: Template '/home/oameye/coregrade/coregrade/email//start_losspass.mailfile' loaded: 1586 bytes -- 17:02:50.695 FLOG_MAX [6779]: Returning from FormFile() -- 17:02:50.695 FLOG_MAX [6779]: Template parsed: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 17:02:50.695 FLOG_MAX [6779]: ESMTP( 10.0.0.23, support@coregrade.com, tokslaw@chiefsoft.com ) -- 17:02:50.695 FLOG_MAX [6779]: Prepare body -- 17:02:50.695 FLOG_MAX [6779]: Locate & extract subject -- 17:02:50.695 FLOG_MAX [6779]: Found subject: CoreGrade - Password Reset for tokslaw@chiefsoft.com -- 17:02:50.695 FLOG_MAX [6779]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t tokslaw@chiefsoft.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'CoreGrade - Password Reset for tokslaw@chiefsoft.com ' -M ' - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
CoreGrade
-Dear Tokunbo -
-We have initiated your password reset process as requested as by you on 2020-04-12 17:02:50.692076: -
- - - - -
Click the linkhttps://oameye.works.coregrade.com/auth/passreset?rlink=cb3d0ad7f9725159e1d712d4466582d2
Link will expire
-
-
-If it was not at your request, then please contact CoreGrade support immediately. - -For further support go to our website at https://oameye.works.coregrade.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing CoreGrade. -CoreGrade Team. - -
-
- -
- - - - - - ' -- 17:02:50.744 FLOG_MAX [6779]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Password Reset for tokslaw@chiefsoft.com -From: CoreGrade Support -Date: Sun, 12 Apr 2020 17:02:50 -0400 -To: tokslaw@chiefsoft.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="RgqqDPtB23szUXgu" -Mime-version: 1.0 - - ---RgqqDPtB23szUXgu -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
CoreGrade
-Dear Tokunbo -
-We have initiated your password reset process as requested as by you on 2020-04-12 17:02:50.692076: -
- - - - -
Click the linkhttps://oameye.works.coregrade.com/auth/passreset?rlink=cb3d0ad7f9725159e1d712d4466582d2
Link will expire
-
-
-If it was not at your request, then please contact CoreGrade support immediately. - -For further support go to our website at https://oameye.works.coregrade.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing CoreGrade. -CoreGrade Team. - -
-
- -
- - - - - - - - ---RgqqDPtB23szUXgu-- - -[C] . -[S] 250 2.0.0 Ok: queued as B4111211176F -[C] QUIT -[S] 221 2.0.0 Bye - -- 17:02:50.744 FLOG_MAX [6779]: - -END OF PIPE OUTPUT - - -- 17:02:50.744 FLOG_MAX [6779]: /ESMTP() -- 17:02:50.744 INFO [6779]: /member_email_calls() -- 17:02:50.744 INFO [6779]: RET: member_id=7 -- 17:02:50.744 INFO [6779]: RET: mode=100 -- 17:02:50.744 INFO [6779]: RET: reset_id=17 -- 17:02:50.744 INFO [6779]: RET: reset_key=YOU WILL GET THIS IF PIN IS CORRECT IN CONFIRM -- 17:02:50.744 INFO [6779]: RET: reset_seed=2020-04-12 17:02:50.686634-04 -- 17:02:50.744 INFO [6779]: RET: reset_seed==REMOVED -- 17:02:50.744 INFO [6779]: RET: result=YES I GET TO BACK END -- 17:02:50.746 INFO [6779]: COREGRADE is stopping... -- 17:02:50.746 DEBUG [6779]: Closing database connection -- 17:02:50.746 SQL [6779]: pgsql_close() -- 17:02:50.647 DEBUG [6779]: Database connection successful -- 17:02:50.647 INFO [6779]: _SERVER found -- 17:02:50.647 INFO [6779]: REMOTE_ADDR = 10.0.0.15 -- 17:02:50.647 INFO [6779]: SERVER_NAME = oameye.works.coregrade.com -- 17:02:50.647 INFO [6779]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=jess57op4b86afvefnel0tbklclq705q; _gat_gtag_UA_54829827_2=1 -- 17:02:50.647 INFO [6779]: QUERY_STRING = /auth/resetpass -- 17:02:50.647 INFO [6779]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:02:50.746 INFO [6779]: COREGRADE is stopping... -- 17:02:50.746 DEBUG [6779]: Closing database connection -- 17:02:50.746 SQL [6779]: pgsql_close() -- 17:02:51.092 INFO [6779]: COREGRADE is starting... -- 17:02:51.093 INFO [6779]: Version from config: 1.0 -- 17:02:51.093 DEBUG [6779]: Connecting to database... -- 17:02:51.093 DEBUG [6779]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:02:51.093 SQL [6779]: pgsql_db_connect() -- 17:02:51.097 DEBUG [6779]: Database connection successful -- 17:02:51.097 INFO [6779]: _SERVER found -- 17:02:51.097 INFO [6779]: REMOTE_ADDR = 10.0.0.15 -- 17:02:51.097 INFO [6779]: SERVER_NAME = oameye.works.coregrade.com -- 17:02:51.097 INFO [6779]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=jess57op4b86afvefnel0tbklclq705q; _gat_gtag_UA_54829827_2=1 -- 17:02:51.097 INFO [6779]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:02:51.097 INFO [6779]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:02:51.109 INFO [6779]: COREGRADE is stopping... -- 17:02:51.109 DEBUG [6779]: Closing database connection -- 17:02:51.109 SQL [6779]: pgsql_close() -- 17:03:30.325 INFO [6780]: COREGRADE is starting... -- 17:03:30.326 INFO [6780]: Version from config: 1.0 -- 17:03:30.326 DEBUG [6780]: Connecting to database... -- 17:03:30.326 DEBUG [6780]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:30.326 SQL [6780]: pgsql_db_connect() -- 17:03:30.361 INFO [6780]: COREGRADE is starting... -- 17:03:30.362 INFO [6780]: Version from config: 1.0 -- 17:03:30.362 DEBUG [6780]: Connecting to database... -- 17:03:30.362 DEBUG [6780]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:30.362 SQL [6780]: pgsql_db_connect() -- 17:03:30.366 DEBUG [6780]: Database connection successful -- 17:03:30.366 INFO [6780]: _SERVER found -- 17:03:30.366 INFO [6780]: REMOTE_ADDR = 10.0.0.15 -- 17:03:30.366 INFO [6780]: SERVER_NAME = oameye.works.coregrade.com -- 17:03:30.366 INFO [6780]: QUERY_STRING = rlink=cb3d0ad7f9725159e1d712d4466582d2 -- 17:03:30.366 INFO [6780]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:03:30.366 INFO [6780]: SystemStatus()09-09-********~************ -- 17:03:30.366 INFO [6780]: long coregrade_api_main(CVars in, CVars &out) -- 17:03:30.366 INFO [6780]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 17:03:30.366 INFO [6780]: account calls -- 17:03:30.366 INFO [6780]: account_calls() -- 17:03:30.366 INFO [6780]: passwordReset() -- 17:03:30.366 INFO [6780]: confirmPassReset() -- 17:03:30.366 FLOG_MAX [6780]: REQ_STRING(reset_key) -- 17:03:30.366 FLOG_MAX [6780]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:03:30.366 SQL [6780]: pgsql_query() -- 17:03:30.366 SQL [6780]: About to run query: -- 17:03:30.366 SQL [6780]: SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='cb3d0ad7f9725159e1d712d4466582d2' -- 17:03:30.369 SQL [6780]: Found rows: 1 -- 17:03:30.369 FLOG_MAX [6780]: load_db_record(SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='cb3d0ad7f9725159e1d712d4466582d2' ) num_cols=10 -- 17:03:30.369 SQL [6780]: pgsql_query() -- 17:03:30.369 SQL [6780]: About to run query: -- 17:03:30.369 SQL [6780]: UPDATE password_reset SET status = 1 WHERE id =17 -- 17:03:30.370 SQL [6780]: Found rows: 0 -- 17:03:30.370 SQL [6780]: Found rows: 0 -- 17:03:30.370 INFO [6780]: RET: created=2020-04-12 17:02:50.692076 -- 17:03:30.370 INFO [6780]: RET: expired= -- 17:03:30.370 INFO [6780]: RET: id=17 -- 17:03:30.370 INFO [6780]: RET: loc=10.0.0.15 -- 17:03:30.370 INFO [6780]: RET: member_id=7 -- 17:03:30.370 INFO [6780]: RET: reset_id=17 -- 17:03:30.370 INFO [6780]: RET: reset_key=cb3d0ad7f9725159e1d712d4466582d2 -- 17:03:30.370 INFO [6780]: RET: reset_pin=66211 -- 17:03:30.370 INFO [6780]: RET: result=YES I GET TO BACK END -- 17:03:30.370 INFO [6780]: RET: status=0 -- 17:03:30.370 INFO [6780]: RET: username=tokslaw@chiefsoft.com -- 17:03:30.371 INFO [6780]: COREGRADE is stopping... -- 17:03:30.371 DEBUG [6780]: Closing database connection -- 17:03:30.371 SQL [6780]: pgsql_close() -- 17:03:30.330 DEBUG [6780]: Database connection successful -- 17:03:30.330 INFO [6780]: _SERVER found -- 17:03:30.330 INFO [6780]: REMOTE_ADDR = 10.0.0.15 -- 17:03:30.330 INFO [6780]: SERVER_NAME = oameye.works.coregrade.com -- 17:03:30.330 INFO [6780]: QUERY_STRING = /auth/passreset -- 17:03:30.330 INFO [6780]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:03:30.372 INFO [6780]: COREGRADE is stopping... -- 17:03:30.372 DEBUG [6780]: Closing database connection -- 17:03:30.372 SQL [6780]: pgsql_close() -- 17:03:30.589 INFO [6780]: COREGRADE is starting... -- 17:03:30.590 INFO [6780]: Version from config: 1.0 -- 17:03:30.590 DEBUG [6780]: Connecting to database... -- 17:03:30.590 DEBUG [6780]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:30.590 SQL [6780]: pgsql_db_connect() -- 17:03:30.594 DEBUG [6780]: Database connection successful -- 17:03:30.594 INFO [6780]: _SERVER found -- 17:03:30.594 INFO [6780]: REMOTE_ADDR = 10.0.0.15 -- 17:03:30.594 INFO [6780]: SERVER_NAME = oameye.works.coregrade.com -- 17:03:30.594 INFO [6780]: HTTP_COOKIE = ci_session=q6miaug3dgeb0ultpfhu3ehs7lqng0mu -- 17:03:30.594 INFO [6780]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:03:30.594 INFO [6780]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:03:30.605 INFO [6780]: COREGRADE is stopping... -- 17:03:30.605 DEBUG [6780]: Closing database connection -- 17:03:30.605 SQL [6780]: pgsql_close() -- 17:04:12.113 INFO [6838]: COREGRADE is starting... -- 17:04:12.114 INFO [6838]: Version from config: 1.0 -- 17:04:12.114 DEBUG [6838]: Connecting to database... -- 17:04:12.114 DEBUG [6838]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:12.114 SQL [6838]: pgsql_db_connect() -- 17:04:12.118 DEBUG [6838]: Database connection successful -- 17:04:12.118 INFO [6838]: _SERVER found -- 17:04:12.118 INFO [6838]: REMOTE_ADDR = 10.0.0.15 -- 17:04:12.118 INFO [6838]: SERVER_NAME = oameye.works.coregrade.com -- 17:04:12.118 INFO [6838]: HTTP_COOKIE = ci_session=q6miaug3dgeb0ultpfhu3ehs7lqng0mu -- 17:04:12.118 INFO [6838]: QUERY_STRING = /auth/completereset -- 17:04:12.118 INFO [6838]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:04:12.153 INFO [6838]: COREGRADE is stopping... -- 17:04:12.153 DEBUG [6838]: Closing database connection -- 17:04:12.153 SQL [6838]: pgsql_close() -- 17:05:05.944 INFO [6776]: COREGRADE is starting... -- 17:05:05.945 INFO [6776]: Version from config: 1.0 -- 17:05:05.945 DEBUG [6776]: Connecting to database... -- 17:05:05.945 DEBUG [6776]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:05.945 SQL [6776]: pgsql_db_connect() -- 17:05:05.984 INFO [6776]: COREGRADE is starting... -- 17:05:05.984 INFO [6776]: Version from config: 1.0 -- 17:05:05.984 DEBUG [6776]: Connecting to database... -- 17:05:05.984 DEBUG [6776]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:05.984 SQL [6776]: pgsql_db_connect() -- 17:05:05.988 DEBUG [6776]: Database connection successful -- 17:05:05.988 INFO [6776]: _SERVER found -- 17:05:05.988 INFO [6776]: REMOTE_ADDR = 10.0.0.15 -- 17:05:05.988 INFO [6776]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:05.988 INFO [6776]: HTTP_COOKIE = ci_session=q6miaug3dgeb0ultpfhu3ehs7lqng0mu -- 17:05:05.988 INFO [6776]: QUERY_STRING = rlink=cb3d0ad7f9725159e1d712d4466582d2 -- 17:05:05.988 INFO [6776]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:05:05.988 INFO [6776]: SystemStatus()09-09-********~************ -- 17:05:05.988 INFO [6776]: long coregrade_api_main(CVars in, CVars &out) -- 17:05:05.988 INFO [6776]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 17:05:05.988 INFO [6776]: account calls -- 17:05:05.988 INFO [6776]: account_calls() -- 17:05:05.988 INFO [6776]: passwordReset() -- 17:05:05.988 INFO [6776]: confirmPassReset() -- 17:05:05.988 FLOG_MAX [6776]: REQ_STRING(reset_key) -- 17:05:05.988 FLOG_MAX [6776]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:05:05.988 SQL [6776]: pgsql_query() -- 17:05:05.988 SQL [6776]: About to run query: -- 17:05:05.988 SQL [6776]: SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='cb3d0ad7f9725159e1d712d4466582d2' -- 17:05:05.991 SQL [6776]: Found rows: 0 -- 17:05:05.991 SQL [6776]: Found rows: 0 -- 17:05:05.991 INFO [6776]: RET: id= -- 17:05:05.991 INFO [6776]: RET: result=YES I GET TO BACK END -- 17:05:05.991 INFO [6776]: RET: status_advice=Contact support or Start all over -- 17:05:05.991 INFO [6776]: RET: status_message=Invalid PIN or disabled account -- 17:05:05.992 INFO [6776]: COREGRADE is stopping... -- 17:05:05.992 DEBUG [6776]: Closing database connection -- 17:05:05.992 SQL [6776]: pgsql_close() -- 17:05:05.949 DEBUG [6776]: Database connection successful -- 17:05:05.949 INFO [6776]: _SERVER found -- 17:05:05.949 INFO [6776]: REMOTE_ADDR = 10.0.0.15 -- 17:05:05.949 INFO [6776]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:05.949 INFO [6776]: HTTP_COOKIE = ci_session=q6miaug3dgeb0ultpfhu3ehs7lqng0mu -- 17:05:05.949 INFO [6776]: QUERY_STRING = /auth/passreset -- 17:05:05.949 INFO [6776]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:05:05.993 INFO [6776]: COREGRADE is stopping... -- 17:05:05.993 DEBUG [6776]: Closing database connection -- 17:05:05.993 SQL [6776]: pgsql_close() -- 17:05:06.170 INFO [6776]: COREGRADE is starting... -- 17:05:06.170 INFO [6776]: Version from config: 1.0 -- 17:05:06.170 DEBUG [6776]: Connecting to database... -- 17:05:06.170 DEBUG [6776]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:06.170 SQL [6776]: pgsql_db_connect() -- 17:05:06.175 DEBUG [6776]: Database connection successful -- 17:05:06.175 INFO [6776]: _SERVER found -- 17:05:06.175 INFO [6776]: REMOTE_ADDR = 10.0.0.15 -- 17:05:06.175 INFO [6776]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:06.175 INFO [6776]: HTTP_COOKIE = ci_session=q6miaug3dgeb0ultpfhu3ehs7lqng0mu -- 17:05:06.175 INFO [6776]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:05:06.175 INFO [6776]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:05:06.186 INFO [6776]: COREGRADE is stopping... -- 17:05:06.186 DEBUG [6776]: Closing database connection -- 17:05:06.186 SQL [6776]: pgsql_close() -- 17:05:55.571 INFO [6778]: COREGRADE is starting... -- 17:05:55.571 INFO [6778]: Version from config: 1.0 -- 17:05:55.571 DEBUG [6778]: Connecting to database... -- 17:05:55.571 DEBUG [6778]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:55.571 SQL [6778]: pgsql_db_connect() -- 17:05:55.576 DEBUG [6778]: Database connection successful -- 17:05:55.576 INFO [6778]: _SERVER found -- 17:05:55.576 INFO [6778]: REMOTE_ADDR = 10.0.0.15 -- 17:05:55.576 INFO [6778]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:55.576 INFO [6778]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=jess57op4b86afvefnel0tbklclq705q -- 17:05:55.576 INFO [6778]: QUERY_STRING = /auth/resetpass -- 17:05:55.576 INFO [6778]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:05:55.609 INFO [6778]: COREGRADE is stopping... -- 17:05:55.609 DEBUG [6778]: Closing database connection -- 17:05:55.609 SQL [6778]: pgsql_close() -- 17:06:02.548 INFO [6867]: COREGRADE is starting... -- 17:06:02.548 INFO [6867]: Version from config: 1.0 -- 17:06:02.548 DEBUG [6867]: Connecting to database... -- 17:06:02.549 DEBUG [6867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:02.549 SQL [6867]: pgsql_db_connect() -- 17:06:02.553 DEBUG [6867]: Database connection successful -- 17:06:02.553 INFO [6867]: _SERVER found -- 17:06:02.553 INFO [6867]: REMOTE_ADDR = 10.0.0.15 -- 17:06:02.553 INFO [6867]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:02.553 INFO [6867]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=jess57op4b86afvefnel0tbklclq705q -- 17:06:02.553 INFO [6867]: QUERY_STRING = -- 17:06:02.553 INFO [6867]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:06:02.593 INFO [6867]: COREGRADE is stopping... -- 17:06:02.594 DEBUG [6867]: Closing database connection -- 17:06:02.594 SQL [6867]: pgsql_close() -- 17:06:03.156 INFO [6867]: COREGRADE is starting... -- 17:06:03.157 INFO [6867]: Version from config: 1.0 -- 17:06:03.157 DEBUG [6867]: Connecting to database... -- 17:06:03.157 DEBUG [6867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:03.157 SQL [6867]: pgsql_db_connect() -- 17:06:03.161 DEBUG [6867]: Database connection successful -- 17:06:03.161 INFO [6867]: _SERVER found -- 17:06:03.161 INFO [6867]: REMOTE_ADDR = 10.0.0.15 -- 17:06:03.161 INFO [6867]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:03.161 INFO [6867]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=jess57op4b86afvefnel0tbklclq705q -- 17:06:03.161 INFO [6867]: QUERY_STRING = /assets/img/footer_1.jpg -- 17:06:03.161 INFO [6867]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:06:03.172 INFO [6867]: COREGRADE is stopping... -- 17:06:03.172 DEBUG [6867]: Closing database connection -- 17:06:03.172 SQL [6867]: pgsql_close() -- 17:06:11.202 INFO [6777]: COREGRADE is starting... -- 17:06:11.202 INFO [6777]: Version from config: 1.0 -- 17:06:11.202 DEBUG [6777]: Connecting to database... -- 17:06:11.202 DEBUG [6777]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:11.202 SQL [6777]: pgsql_db_connect() -- 17:06:11.226 INFO [6779]: COREGRADE is starting... -- 17:06:11.226 INFO [6779]: Version from config: 1.0 -- 17:06:11.226 DEBUG [6779]: Connecting to database... -- 17:06:11.226 DEBUG [6779]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:11.226 SQL [6779]: pgsql_db_connect() -- 17:06:11.206 DEBUG [6777]: Database connection successful -- 17:06:11.206 INFO [6777]: _SERVER found -- 17:06:11.206 INFO [6777]: REMOTE_ADDR = 10.0.0.15 -- 17:06:11.206 INFO [6777]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:11.206 INFO [6777]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=jess57op4b86afvefnel0tbklclq705q; _gat_gtag_UA_54829827_2=1 -- 17:06:11.206 INFO [6777]: QUERY_STRING = /auth -- 17:06:11.206 INFO [6777]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:06:11.242 INFO [6777]: COREGRADE is stopping... -- 17:06:11.242 DEBUG [6777]: Closing database connection -- 17:06:11.242 SQL [6777]: pgsql_close() -- 17:06:11.230 DEBUG [6779]: Database connection successful -- 17:06:11.230 INFO [6779]: _SERVER found -- 17:06:11.230 INFO [6779]: REMOTE_ADDR = 10.0.0.15 -- 17:06:11.230 INFO [6779]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:11.230 INFO [6779]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=jess57op4b86afvefnel0tbklclq705q; _gat_gtag_UA_54829827_2=1 -- 17:06:11.230 INFO [6779]: QUERY_STRING = /welcome/viewLogin -- 17:06:11.230 INFO [6779]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:06:11.262 INFO [6779]: COREGRADE is stopping... -- 17:06:11.262 DEBUG [6779]: Closing database connection -- 17:06:11.262 SQL [6779]: pgsql_close() -- 17:06:11.545 INFO [6779]: COREGRADE is starting... -- 17:06:11.546 INFO [6779]: Version from config: 1.0 -- 17:06:11.546 DEBUG [6779]: Connecting to database... -- 17:06:11.546 DEBUG [6779]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:11.546 SQL [6779]: pgsql_db_connect() -- 17:06:11.550 DEBUG [6779]: Database connection successful -- 17:06:11.550 INFO [6779]: _SERVER found -- 17:06:11.550 INFO [6779]: REMOTE_ADDR = 10.0.0.15 -- 17:06:11.550 INFO [6779]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:11.550 INFO [6779]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=jess57op4b86afvefnel0tbklclq705q; _gat_gtag_UA_54829827_2=1 -- 17:06:11.550 INFO [6779]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:06:11.550 INFO [6779]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:06:11.561 INFO [6779]: COREGRADE is stopping... -- 17:06:11.561 DEBUG [6779]: Closing database connection -- 17:06:11.561 SQL [6779]: pgsql_close() -- 17:06:33.961 INFO [6780]: COREGRADE is starting... -- 17:06:33.962 INFO [6780]: Version from config: 1.0 -- 17:06:33.962 DEBUG [6780]: Connecting to database... -- 17:06:33.962 DEBUG [6780]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:33.962 SQL [6780]: pgsql_db_connect() -- 17:06:33.967 DEBUG [6780]: Database connection successful -- 17:06:33.967 INFO [6780]: _SERVER found -- 17:06:33.967 INFO [6780]: REMOTE_ADDR = 10.0.0.15 -- 17:06:33.967 INFO [6780]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:33.967 INFO [6780]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=jess57op4b86afvefnel0tbklclq705q; _gat_gtag_UA_54829827_2=1 -- 17:06:33.967 INFO [6780]: QUERY_STRING = /auth/resetpass -- 17:06:33.967 INFO [6780]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:06:33.999 INFO [6780]: COREGRADE is stopping... -- 17:06:33.999 DEBUG [6780]: Closing database connection -- 17:06:33.999 SQL [6780]: pgsql_close() -- 17:06:34.313 INFO [6780]: COREGRADE is starting... -- 17:06:34.313 INFO [6780]: Version from config: 1.0 -- 17:06:34.313 DEBUG [6780]: Connecting to database... -- 17:06:34.313 DEBUG [6780]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:34.313 SQL [6780]: pgsql_db_connect() -- 17:06:34.317 DEBUG [6780]: Database connection successful -- 17:06:34.317 INFO [6780]: _SERVER found -- 17:06:34.317 INFO [6780]: REMOTE_ADDR = 10.0.0.15 -- 17:06:34.317 INFO [6780]: SERVER_NAME = oameye.works.coregrade.com -- 17:06:34.317 INFO [6780]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=jess57op4b86afvefnel0tbklclq705q; _gat_gtag_UA_54829827_2=1 -- 17:06:34.317 INFO [6780]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:06:34.317 INFO [6780]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:06:34.329 INFO [6780]: COREGRADE is stopping... -- 17:06:34.329 DEBUG [6780]: Closing database connection -- 17:06:34.329 SQL [6780]: pgsql_close() -- 17:07:29.433 INFO [6838]: COREGRADE is starting... -- 17:07:29.433 INFO [6838]: Version from config: 1.0 -- 17:07:29.433 DEBUG [6838]: Connecting to database... -- 17:07:29.433 DEBUG [6838]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:29.433 SQL [6838]: pgsql_db_connect() -- 17:07:29.473 INFO [6838]: COREGRADE is starting... -- 17:07:29.473 INFO [6838]: Version from config: 1.0 -- 17:07:29.473 DEBUG [6838]: Connecting to database... -- 17:07:29.473 DEBUG [6838]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:29.473 SQL [6838]: pgsql_db_connect() -- 17:07:29.477 DEBUG [6838]: Database connection successful -- 17:07:29.477 INFO [6838]: _SERVER found -- 17:07:29.477 INFO [6838]: REMOTE_ADDR = 10.0.0.15 -- 17:07:29.477 INFO [6838]: SERVER_NAME = oameye.works.coregrade.com -- 17:07:29.477 INFO [6838]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=jess57op4b86afvefnel0tbklclq705q -- 17:07:29.477 INFO [6838]: QUERY_STRING = -- 17:07:29.477 INFO [6838]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:07:29.478 INFO [6838]: SystemStatus()09-09-********~************ -- 17:07:29.478 INFO [6838]: long coregrade_api_main(CVars in, CVars &out) -- 17:07:29.478 INFO [6838]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 17:07:29.478 INFO [6838]: account calls -- 17:07:29.478 INFO [6838]: account_calls() -- 17:07:29.478 INFO [6838]: passwordReset() -- 17:07:29.478 INFO [6838]: startPassReset() -- 17:07:29.478 FLOG_MAX [6838]: REQ_STRING(username) -- 17:07:29.478 FLOG_MAX [6838]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:07:29.478 SQL [6838]: pgsql_query() -- 17:07:29.478 SQL [6838]: About to run query: -- 17:07:29.478 SQL [6838]: SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') -- 17:07:29.480 SQL [6838]: Found rows: 1 -- 17:07:29.480 FLOG_MAX [6838]: load_db_record(SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') ) num_cols=2 -- 17:07:29.480 SQL [6838]: pgsql_exec() -- 17:07:29.480 SQL [6838]: About to run query: -- 17:07:29.480 SQL [6838]: UPDATE password_reset SET status=7 WHERE status NOT IN (3,5) AND member_id=7 -- 17:07:29.482 SQL [6838]: PQcmdTuples: 2 -- 17:07:29.482 SQL [6838]: Affected rows: 2 -- 17:07:29.482 FLOG_MAX [6838]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:07:29.482 SQL [6838]: pgsql_query() -- 17:07:29.482 SQL [6838]: About to run query: -- 17:07:29.482 SQL [6838]: SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 17:07:29.478433-04') AS reset_key -- 17:07:29.483 SQL [6838]: Found rows: 1 -- 17:07:29.483 FLOG_MAX [6838]: load_db_record(SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 17:07:29.478433-04') AS reset_key) num_cols=2 -- 17:07:29.483 FLOG_MAX [6838]: insert_db_record() -- 17:07:29.483 SQL [6838]: pgsql_exec() -- 17:07:29.483 SQL [6838]: About to run query: -- 17:07:29.483 SQL [6838]: INSERT INTO password_reset (loc,member_id,reset_key,reset_pin,username) VALUES ('10.0.0.15','7','beeba1d8296315736bfb794f97f0c514','80029','tokslaw@chiefsoft.com') -- 17:07:29.484 SQL [6838]: PQcmdTuples: 1 -- 17:07:29.484 SQL [6838]: Affected rows: 1 -- 17:07:29.484 FLOG_MAX [6838]: SELECT currval('password_reset_id_seq') -- 17:07:29.484 SQL [6838]: pgsql_query() -- 17:07:29.484 SQL [6838]: About to run query: -- 17:07:29.484 SQL [6838]: SELECT currval('password_reset_id_seq') -- 17:07:29.485 SQL [6838]: Found rows: 1 -- 17:07:29.485 INFO [6838]: member_email_calls() -- 17:07:29.485 FLOG_MAX [6838]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:07:29.485 SQL [6838]: pgsql_query() -- 17:07:29.485 SQL [6838]: About to run query: -- 17:07:29.485 SQL [6838]: SELECT m.firstname,p.*,m.email AS member_email, created AS lost_added FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=18 -- 17:07:29.486 SQL [6838]: Found rows: 1 -- 17:07:29.486 FLOG_MAX [6838]: load_db_record(SELECT m.firstname,p.*,m.email AS member_email, created AS lost_added FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=18 ) num_cols=12 -- 17:07:29.486 FLOG_MAX [6838]: CGI Parsing: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 17:07:29.486 FLOG_MAX [6838]: Template '/home/oameye/coregrade/coregrade/email//start_losspass.mailfile' loaded: 1586 bytes -- 17:07:29.486 FLOG_MAX [6838]: Returning from FormFile() -- 17:07:29.486 FLOG_MAX [6838]: Template parsed: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 17:07:29.486 FLOG_MAX [6838]: ESMTP( 10.0.0.23, support@coregrade.com, tokslaw@chiefsoft.com ) -- 17:07:29.486 FLOG_MAX [6838]: Prepare body -- 17:07:29.486 FLOG_MAX [6838]: Locate & extract subject -- 17:07:29.486 FLOG_MAX [6838]: Found subject: CoreGrade - Password Reset for tokslaw@chiefsoft.com -- 17:07:29.486 FLOG_MAX [6838]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t tokslaw@chiefsoft.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'CoreGrade - Password Reset for tokslaw@chiefsoft.com ' -M ' - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
CoreGrade
-Dear Tokunbo -
-We have initiated your password reset process as requested as by you on 2020-04-12 17:07:29.483891: -
- - - - -
Click the linkhttps://oameye.works.coregrade.com/auth/passreset?rlink=beeba1d8296315736bfb794f97f0c514
Link will expire
-
-
-If it was not at your request, then please contact CoreGrade support immediately. - -For further support go to our website at https://oameye.works.coregrade.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing CoreGrade. -CoreGrade Team. - -
-
- -
- - - - - - ' -- 17:07:29.545 FLOG_MAX [6838]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Password Reset for tokslaw@chiefsoft.com -From: CoreGrade Support -Date: Sun, 12 Apr 2020 17:07:29 -0400 -To: tokslaw@chiefsoft.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="YBhjGB06vY/TukRp" -Mime-version: 1.0 - - ---YBhjGB06vY/TukRp -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
CoreGrade
-Dear Tokunbo -
-We have initiated your password reset process as requested as by you on 2020-04-12 17:07:29.483891: -
- - - - -
Click the linkhttps://oameye.works.coregrade.com/auth/passreset?rlink=beeba1d8296315736bfb794f97f0c514
Link will expire
-
-
-If it was not at your request, then please contact CoreGrade support immediately. - -For further support go to our website at https://oameye.works.coregrade.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing CoreGrade. -CoreGrade Team. - -
-
- -
- - - - - - - - ---YBhjGB06vY/TukRp-- - -[C] . -[S] 250 2.0.0 Ok: queued as 80D562114121 -[C] QUIT -[S] 221 2.0.0 Bye - -- 17:07:29.545 FLOG_MAX [6838]: - -END OF PIPE OUTPUT - - -- 17:07:29.545 FLOG_MAX [6838]: /ESMTP() -- 17:07:29.545 INFO [6838]: /member_email_calls() -- 17:07:29.545 INFO [6838]: RET: member_id=7 -- 17:07:29.545 INFO [6838]: RET: mode=100 -- 17:07:29.545 INFO [6838]: RET: reset_id=18 -- 17:07:29.545 INFO [6838]: RET: reset_key=YOU WILL GET THIS IF PIN IS CORRECT IN CONFIRM -- 17:07:29.545 INFO [6838]: RET: reset_seed=2020-04-12 17:07:29.478433-04 -- 17:07:29.545 INFO [6838]: RET: reset_seed==REMOVED -- 17:07:29.545 INFO [6838]: RET: result=YES I GET TO BACK END -- 17:07:29.547 INFO [6838]: COREGRADE is stopping... -- 17:07:29.547 DEBUG [6838]: Closing database connection -- 17:07:29.547 SQL [6838]: pgsql_close() -- 17:07:29.437 DEBUG [6838]: Database connection successful -- 17:07:29.437 INFO [6838]: _SERVER found -- 17:07:29.437 INFO [6838]: REMOTE_ADDR = 10.0.0.15 -- 17:07:29.437 INFO [6838]: SERVER_NAME = oameye.works.coregrade.com -- 17:07:29.437 INFO [6838]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=jess57op4b86afvefnel0tbklclq705q -- 17:07:29.437 INFO [6838]: QUERY_STRING = /auth/resetpass -- 17:07:29.437 INFO [6838]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:07:29.548 INFO [6838]: COREGRADE is stopping... -- 17:07:29.548 DEBUG [6838]: Closing database connection -- 17:07:29.548 SQL [6838]: pgsql_close() -- 17:07:29.894 INFO [6838]: COREGRADE is starting... -- 17:07:29.894 INFO [6838]: Version from config: 1.0 -- 17:07:29.894 DEBUG [6838]: Connecting to database... -- 17:07:29.894 DEBUG [6838]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:29.894 SQL [6838]: pgsql_db_connect() -- 17:07:29.898 DEBUG [6838]: Database connection successful -- 17:07:29.898 INFO [6838]: _SERVER found -- 17:07:29.898 INFO [6838]: REMOTE_ADDR = 10.0.0.15 -- 17:07:29.898 INFO [6838]: SERVER_NAME = oameye.works.coregrade.com -- 17:07:29.898 INFO [6838]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=bdg707eb0pgmg6our4thn878rqo67vj9 -- 17:07:29.898 INFO [6838]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:07:29.898 INFO [6838]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:07:29.910 INFO [6838]: COREGRADE is stopping... -- 17:07:29.910 DEBUG [6838]: Closing database connection -- 17:07:29.910 SQL [6838]: pgsql_close() -- 17:07:44.365 INFO [6776]: COREGRADE is starting... -- 17:07:44.365 INFO [6776]: Version from config: 1.0 -- 17:07:44.365 DEBUG [6776]: Connecting to database... -- 17:07:44.366 DEBUG [6776]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:44.366 SQL [6776]: pgsql_db_connect() -- 17:07:44.402 INFO [6776]: COREGRADE is starting... -- 17:07:44.402 INFO [6776]: Version from config: 1.0 -- 17:07:44.402 DEBUG [6776]: Connecting to database... -- 17:07:44.402 DEBUG [6776]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:44.402 SQL [6776]: pgsql_db_connect() -- 17:07:44.407 DEBUG [6776]: Database connection successful -- 17:07:44.407 INFO [6776]: _SERVER found -- 17:07:44.407 INFO [6776]: REMOTE_ADDR = 10.0.0.15 -- 17:07:44.407 INFO [6776]: SERVER_NAME = oameye.works.coregrade.com -- 17:07:44.407 INFO [6776]: HTTP_COOKIE = ci_session=q6miaug3dgeb0ultpfhu3ehs7lqng0mu -- 17:07:44.407 INFO [6776]: QUERY_STRING = rlink=beeba1d8296315736bfb794f97f0c514 -- 17:07:44.407 INFO [6776]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:07:44.407 INFO [6776]: SystemStatus()09-09-********~************ -- 17:07:44.407 INFO [6776]: long coregrade_api_main(CVars in, CVars &out) -- 17:07:44.407 INFO [6776]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 17:07:44.407 INFO [6776]: account calls -- 17:07:44.407 INFO [6776]: account_calls() -- 17:07:44.407 INFO [6776]: passwordReset() -- 17:07:44.407 INFO [6776]: confirmPassReset() -- 17:07:44.407 FLOG_MAX [6776]: REQ_STRING(reset_key) -- 17:07:44.407 FLOG_MAX [6776]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:07:44.407 SQL [6776]: pgsql_query() -- 17:07:44.407 SQL [6776]: About to run query: -- 17:07:44.407 SQL [6776]: SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='beeba1d8296315736bfb794f97f0c514' -- 17:07:44.409 SQL [6776]: Found rows: 1 -- 17:07:44.409 FLOG_MAX [6776]: load_db_record(SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='beeba1d8296315736bfb794f97f0c514' ) num_cols=10 -- 17:07:44.409 SQL [6776]: pgsql_query() -- 17:07:44.410 SQL [6776]: About to run query: -- 17:07:44.410 SQL [6776]: UPDATE password_reset SET status = 1 WHERE id =18 -- 17:07:44.411 SQL [6776]: Found rows: 0 -- 17:07:44.411 SQL [6776]: Found rows: 0 -- 17:07:44.411 INFO [6776]: RET: created=2020-04-12 17:07:29.483891 -- 17:07:44.411 INFO [6776]: RET: expired= -- 17:07:44.411 INFO [6776]: RET: id=18 -- 17:07:44.411 INFO [6776]: RET: loc=10.0.0.15 -- 17:07:44.411 INFO [6776]: RET: member_id=7 -- 17:07:44.411 INFO [6776]: RET: reset_id=18 -- 17:07:44.411 INFO [6776]: RET: reset_key=beeba1d8296315736bfb794f97f0c514 -- 17:07:44.411 INFO [6776]: RET: reset_pin=80029 -- 17:07:44.411 INFO [6776]: RET: result=YES I GET TO BACK END -- 17:07:44.411 INFO [6776]: RET: status=0 -- 17:07:44.411 INFO [6776]: RET: username=tokslaw@chiefsoft.com -- 17:07:44.412 INFO [6776]: COREGRADE is stopping... -- 17:07:44.412 DEBUG [6776]: Closing database connection -- 17:07:44.412 SQL [6776]: pgsql_close() -- 17:07:44.370 DEBUG [6776]: Database connection successful -- 17:07:44.370 INFO [6776]: _SERVER found -- 17:07:44.370 INFO [6776]: REMOTE_ADDR = 10.0.0.15 -- 17:07:44.370 INFO [6776]: SERVER_NAME = oameye.works.coregrade.com -- 17:07:44.370 INFO [6776]: HTTP_COOKIE = ci_session=q6miaug3dgeb0ultpfhu3ehs7lqng0mu -- 17:07:44.370 INFO [6776]: QUERY_STRING = /auth/passreset -- 17:07:44.370 INFO [6776]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:07:44.412 INFO [6776]: COREGRADE is stopping... -- 17:07:44.412 DEBUG [6776]: Closing database connection -- 17:07:44.412 SQL [6776]: pgsql_close() -- 17:07:44.575 INFO [6776]: COREGRADE is starting... -- 17:07:44.576 INFO [6776]: Version from config: 1.0 -- 17:07:44.576 DEBUG [6776]: Connecting to database... -- 17:07:44.576 DEBUG [6776]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:44.576 SQL [6776]: pgsql_db_connect() -- 17:07:44.580 DEBUG [6776]: Database connection successful -- 17:07:44.580 INFO [6776]: _SERVER found -- 17:07:44.580 INFO [6776]: REMOTE_ADDR = 10.0.0.15 -- 17:07:44.580 INFO [6776]: SERVER_NAME = oameye.works.coregrade.com -- 17:07:44.580 INFO [6776]: HTTP_COOKIE = ci_session=q6miaug3dgeb0ultpfhu3ehs7lqng0mu -- 17:07:44.580 INFO [6776]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:07:44.580 INFO [6776]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:07:44.591 INFO [6776]: COREGRADE is stopping... -- 17:07:44.591 DEBUG [6776]: Closing database connection -- 17:07:44.591 SQL [6776]: pgsql_close() -- 17:08:33.392 INFO [6778]: COREGRADE is starting... -- 17:08:33.393 INFO [6778]: Version from config: 1.0 -- 17:08:33.393 DEBUG [6778]: Connecting to database... -- 17:08:33.393 DEBUG [6778]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:08:33.393 SQL [6778]: pgsql_db_connect() -- 17:08:33.397 DEBUG [6778]: Database connection successful -- 17:08:33.397 INFO [6778]: _SERVER found -- 17:08:33.397 INFO [6778]: REMOTE_ADDR = 10.0.0.15 -- 17:08:33.397 INFO [6778]: SERVER_NAME = oameye.works.coregrade.com -- 17:08:33.397 INFO [6778]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=bdg707eb0pgmg6our4thn878rqo67vj9 -- 17:08:33.397 INFO [6778]: QUERY_STRING = -- 17:08:33.397 INFO [6778]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:08:33.434 INFO [6778]: COREGRADE is stopping... -- 17:08:33.434 DEBUG [6778]: Closing database connection -- 17:08:33.434 SQL [6778]: pgsql_close() -- 17:08:33.927 INFO [6778]: COREGRADE is starting... -- 17:08:33.928 INFO [6778]: Version from config: 1.0 -- 17:08:33.928 DEBUG [6778]: Connecting to database... -- 17:08:33.928 DEBUG [6778]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:08:33.928 SQL [6778]: pgsql_db_connect() -- 17:08:33.932 DEBUG [6778]: Database connection successful -- 17:08:33.932 INFO [6778]: _SERVER found -- 17:08:33.932 INFO [6778]: REMOTE_ADDR = 10.0.0.15 -- 17:08:33.932 INFO [6778]: SERVER_NAME = oameye.works.coregrade.com -- 17:08:33.932 INFO [6778]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=bdg707eb0pgmg6our4thn878rqo67vj9 -- 17:08:33.932 INFO [6778]: QUERY_STRING = /assets/img/footer_1.jpg -- 17:08:33.932 INFO [6778]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:08:33.943 INFO [6778]: COREGRADE is stopping... -- 17:08:33.943 DEBUG [6778]: Closing database connection -- 17:08:33.943 SQL [6778]: pgsql_close() -- 17:08:58.890 INFO [6867]: COREGRADE is starting... -- 17:08:58.891 INFO [6867]: Version from config: 1.0 -- 17:08:58.891 DEBUG [6867]: Connecting to database... -- 17:08:58.891 DEBUG [6867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:08:58.891 SQL [6867]: pgsql_db_connect() -- 17:08:58.894 INFO [6777]: COREGRADE is starting... -- 17:08:58.895 INFO [6777]: Version from config: 1.0 -- 17:08:58.895 DEBUG [6777]: Connecting to database... -- 17:08:58.895 DEBUG [6777]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:08:58.895 SQL [6777]: pgsql_db_connect() -- 17:08:58.897 DEBUG [6867]: Database connection successful -- 17:08:58.897 INFO [6867]: _SERVER found -- 17:08:58.897 INFO [6867]: REMOTE_ADDR = 10.0.0.15 -- 17:08:58.897 INFO [6867]: SERVER_NAME = oameye.works.coregrade.com -- 17:08:58.897 INFO [6867]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=bdg707eb0pgmg6our4thn878rqo67vj9; _gat_gtag_UA_54829827_2=1 -- 17:08:58.897 INFO [6867]: QUERY_STRING = /auth -- 17:08:58.897 INFO [6867]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:08:58.930 INFO [6867]: COREGRADE is stopping... -- 17:08:58.931 DEBUG [6867]: Closing database connection -- 17:08:58.931 SQL [6867]: pgsql_close() -- 17:08:58.899 DEBUG [6777]: Database connection successful -- 17:08:58.899 INFO [6777]: _SERVER found -- 17:08:58.899 INFO [6777]: REMOTE_ADDR = 10.0.0.15 -- 17:08:58.899 INFO [6777]: SERVER_NAME = oameye.works.coregrade.com -- 17:08:58.899 INFO [6777]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=bdg707eb0pgmg6our4thn878rqo67vj9; _gat_gtag_UA_54829827_2=1 -- 17:08:58.899 INFO [6777]: QUERY_STRING = /welcome/viewLogin -- 17:08:58.899 INFO [6777]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:08:58.933 INFO [6777]: COREGRADE is stopping... -- 17:08:58.933 DEBUG [6777]: Closing database connection -- 17:08:58.933 SQL [6777]: pgsql_close() -- 17:08:58.967 INFO [6777]: COREGRADE is starting... -- 17:08:58.968 INFO [6777]: Version from config: 1.0 -- 17:08:58.968 DEBUG [6777]: Connecting to database... -- 17:08:58.968 DEBUG [6777]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:08:58.968 SQL [6777]: pgsql_db_connect() -- 17:08:58.971 DEBUG [6777]: Database connection successful -- 17:08:58.972 INFO [6777]: _SERVER found -- 17:08:58.972 INFO [6777]: REMOTE_ADDR = 10.0.0.15 -- 17:08:58.972 INFO [6777]: SERVER_NAME = oameye.works.coregrade.com -- 17:08:58.972 INFO [6777]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=bdg707eb0pgmg6our4thn878rqo67vj9; _gat_gtag_UA_54829827_2=1 -- 17:08:58.972 INFO [6777]: QUERY_STRING = /auth/index -- 17:08:58.972 INFO [6777]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:08:59.006 INFO [6777]: COREGRADE is stopping... -- 17:08:59.006 DEBUG [6777]: Closing database connection -- 17:08:59.006 SQL [6777]: pgsql_close() -- 17:08:59.314 INFO [6777]: COREGRADE is starting... -- 17:08:59.315 INFO [6777]: Version from config: 1.0 -- 17:08:59.315 DEBUG [6777]: Connecting to database... -- 17:08:59.315 DEBUG [6777]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:08:59.315 SQL [6777]: pgsql_db_connect() -- 17:08:59.319 DEBUG [6777]: Database connection successful -- 17:08:59.319 INFO [6777]: _SERVER found -- 17:08:59.319 INFO [6777]: REMOTE_ADDR = 10.0.0.15 -- 17:08:59.319 INFO [6777]: SERVER_NAME = oameye.works.coregrade.com -- 17:08:59.319 INFO [6777]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=bdg707eb0pgmg6our4thn878rqo67vj9; _gat_gtag_UA_54829827_2=1 -- 17:08:59.319 INFO [6777]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:08:59.319 INFO [6777]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:08:59.331 INFO [6777]: COREGRADE is stopping... -- 17:08:59.331 DEBUG [6777]: Closing database connection -- 17:08:59.331 SQL [6777]: pgsql_close() -- 17:09:02.000 INFO [6779]: COREGRADE is starting... -- 17:09:02.000 INFO [6779]: Version from config: 1.0 -- 17:09:02.000 DEBUG [6779]: Connecting to database... -- 17:09:02.000 DEBUG [6779]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:09:02.000 SQL [6779]: pgsql_db_connect() -- 17:09:03.004 DEBUG [6779]: Database connection successful -- 17:09:03.004 INFO [6779]: _SERVER found -- 17:09:03.004 INFO [6779]: REMOTE_ADDR = 10.0.0.15 -- 17:09:03.004 INFO [6779]: SERVER_NAME = oameye.works.coregrade.com -- 17:09:03.004 INFO [6779]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=bdg707eb0pgmg6our4thn878rqo67vj9; _gat_gtag_UA_54829827_2=1 -- 17:09:03.004 INFO [6779]: QUERY_STRING = /auth/resetpass -- 17:09:03.004 INFO [6779]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:09:03.036 INFO [6779]: COREGRADE is stopping... -- 17:09:03.036 DEBUG [6779]: Closing database connection -- 17:09:03.036 SQL [6779]: pgsql_close() -- 17:09:09.522 INFO [6780]: COREGRADE is starting... -- 17:09:09.522 INFO [6780]: Version from config: 1.0 -- 17:09:09.522 DEBUG [6780]: Connecting to database... -- 17:09:09.522 DEBUG [6780]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:09:09.522 SQL [6780]: pgsql_db_connect() -- 17:09:09.557 INFO [6780]: COREGRADE is starting... -- 17:09:09.558 INFO [6780]: Version from config: 1.0 -- 17:09:09.558 DEBUG [6780]: Connecting to database... -- 17:09:09.558 DEBUG [6780]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:09:09.558 SQL [6780]: pgsql_db_connect() -- 17:09:09.562 DEBUG [6780]: Database connection successful -- 17:09:09.562 INFO [6780]: _SERVER found -- 17:09:09.562 INFO [6780]: REMOTE_ADDR = 10.0.0.15 -- 17:09:09.562 INFO [6780]: SERVER_NAME = oameye.works.coregrade.com -- 17:09:09.562 INFO [6780]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=bdg707eb0pgmg6our4thn878rqo67vj9; _gat_gtag_UA_54829827_2=1 -- 17:09:09.562 INFO [6780]: QUERY_STRING = -- 17:09:09.562 INFO [6780]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:09:09.562 INFO [6780]: SystemStatus()09-09-********~************ -- 17:09:09.562 INFO [6780]: long coregrade_api_main(CVars in, CVars &out) -- 17:09:09.562 INFO [6780]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 17:09:09.562 INFO [6780]: account calls -- 17:09:09.562 INFO [6780]: account_calls() -- 17:09:09.562 INFO [6780]: passwordReset() -- 17:09:09.562 INFO [6780]: startPassReset() -- 17:09:09.562 FLOG_MAX [6780]: REQ_STRING(username) -- 17:09:09.562 FLOG_MAX [6780]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:09:09.562 SQL [6780]: pgsql_query() -- 17:09:09.562 SQL [6780]: About to run query: -- 17:09:09.562 SQL [6780]: SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') -- 17:09:09.564 SQL [6780]: Found rows: 1 -- 17:09:09.564 FLOG_MAX [6780]: load_db_record(SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') ) num_cols=2 -- 17:09:09.564 SQL [6780]: pgsql_exec() -- 17:09:09.564 SQL [6780]: About to run query: -- 17:09:09.564 SQL [6780]: UPDATE password_reset SET status=7 WHERE status NOT IN (3,5) AND member_id=7 -- 17:09:09.566 SQL [6780]: PQcmdTuples: 3 -- 17:09:09.566 SQL [6780]: Affected rows: 3 -- 17:09:09.566 FLOG_MAX [6780]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:09:09.566 SQL [6780]: pgsql_query() -- 17:09:09.566 SQL [6780]: About to run query: -- 17:09:09.566 SQL [6780]: SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 17:09:09.562409-04') AS reset_key -- 17:09:09.567 SQL [6780]: Found rows: 1 -- 17:09:09.567 FLOG_MAX [6780]: load_db_record(SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 17:09:09.562409-04') AS reset_key) num_cols=2 -- 17:09:09.567 FLOG_MAX [6780]: insert_db_record() -- 17:09:09.567 SQL [6780]: pgsql_exec() -- 17:09:09.567 SQL [6780]: About to run query: -- 17:09:09.567 SQL [6780]: INSERT INTO password_reset (loc,member_id,reset_key,reset_pin,username) VALUES ('10.0.0.15','7','4b288251b2fb501cc969ef5a668d5f63','43566','tokslaw@chiefsoft.com') -- 17:09:09.568 SQL [6780]: PQcmdTuples: 1 -- 17:09:09.568 SQL [6780]: Affected rows: 1 -- 17:09:09.568 FLOG_MAX [6780]: SELECT currval('password_reset_id_seq') -- 17:09:09.568 SQL [6780]: pgsql_query() -- 17:09:09.568 SQL [6780]: About to run query: -- 17:09:09.568 SQL [6780]: SELECT currval('password_reset_id_seq') -- 17:09:09.568 SQL [6780]: Found rows: 1 -- 17:09:09.568 INFO [6780]: member_email_calls() -- 17:09:09.569 FLOG_MAX [6780]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:09:09.569 SQL [6780]: pgsql_query() -- 17:09:09.569 SQL [6780]: About to run query: -- 17:09:09.569 SQL [6780]: SELECT m.firstname,p.*,m.email AS member_email, created AS lost_added FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=19 -- 17:09:09.570 SQL [6780]: Found rows: 1 -- 17:09:09.570 FLOG_MAX [6780]: load_db_record(SELECT m.firstname,p.*,m.email AS member_email, created AS lost_added FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=19 ) num_cols=12 -- 17:09:09.570 FLOG_MAX [6780]: CGI Parsing: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 17:09:09.570 FLOG_MAX [6780]: Template '/home/oameye/coregrade/coregrade/email//start_losspass.mailfile' loaded: 1586 bytes -- 17:09:09.570 FLOG_MAX [6780]: Returning from FormFile() -- 17:09:09.570 FLOG_MAX [6780]: Template parsed: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 17:09:09.570 FLOG_MAX [6780]: ESMTP( 10.0.0.23, support@coregrade.com, tokslaw@chiefsoft.com ) -- 17:09:09.570 FLOG_MAX [6780]: Prepare body -- 17:09:09.570 FLOG_MAX [6780]: Locate & extract subject -- 17:09:09.570 FLOG_MAX [6780]: Found subject: CoreGrade - Password Reset for tokslaw@chiefsoft.com -- 17:09:09.570 FLOG_MAX [6780]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t tokslaw@chiefsoft.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'CoreGrade - Password Reset for tokslaw@chiefsoft.com ' -M ' - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
CoreGrade
-Dear Tokunbo -
-We have initiated your password reset process as requested as by you on 2020-04-12 17:09:09.567416: -
- - - - -
Click the linkhttps://oameye.works.coregrade.com/auth/passreset?rlink=4b288251b2fb501cc969ef5a668d5f63
Link will expire
-
-
-If it was not at your request, then please contact CoreGrade support immediately. - -For further support go to our website at https://oameye.works.coregrade.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing CoreGrade. -CoreGrade Team. - -
-
- -
- - - - - - ' -- 17:09:09.610 FLOG_MAX [6780]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Password Reset for tokslaw@chiefsoft.com -From: CoreGrade Support -Date: Sun, 12 Apr 2020 17:09:09 -0400 -To: tokslaw@chiefsoft.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="XJ0Z9YAmxAAiogEg" -Mime-version: 1.0 - - ---XJ0Z9YAmxAAiogEg -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
CoreGrade
-Dear Tokunbo -
-We have initiated your password reset process as requested as by you on 2020-04-12 17:09:09.567416: -
- - - - -
Click the linkhttps://oameye.works.coregrade.com/auth/passreset?rlink=4b288251b2fb501cc969ef5a668d5f63
Link will expire
-
-
-If it was not at your request, then please contact CoreGrade support immediately. - -For further support go to our website at https://oameye.works.coregrade.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing CoreGrade. -CoreGrade Team. - -
-
- -
- - - - - - - - ---XJ0Z9YAmxAAiogEg-- - -[C] . -[S] 250 2.0.0 Ok: queued as 9363A211176A -[C] QUIT -[S] 221 2.0.0 Bye -U -- 17:09:09.610 FLOG_MAX [6780]: - -END OF PIPE OUTPUT - - -- 17:09:09.610 FLOG_MAX [6780]: /ESMTP() -- 17:09:09.610 INFO [6780]: /member_email_calls() -- 17:09:09.610 INFO [6780]: RET: member_id=7 -- 17:09:09.610 INFO [6780]: RET: mode=100 -- 17:09:09.610 INFO [6780]: RET: reset_id=19 -- 17:09:09.610 INFO [6780]: RET: reset_key=YOU WILL GET THIS IF PIN IS CORRECT IN CONFIRM -- 17:09:09.610 INFO [6780]: RET: reset_seed=2020-04-12 17:09:09.562409-04 -- 17:09:09.610 INFO [6780]: RET: reset_seed==REMOVED -- 17:09:09.610 INFO [6780]: RET: result=YES I GET TO BACK END -- 17:09:09.612 INFO [6780]: COREGRADE is stopping... -- 17:09:09.612 DEBUG [6780]: Closing database connection -- 17:09:09.612 SQL [6780]: pgsql_close() -- 17:09:09.526 DEBUG [6780]: Database connection successful -- 17:09:09.526 INFO [6780]: _SERVER found -- 17:09:09.526 INFO [6780]: REMOTE_ADDR = 10.0.0.15 -- 17:09:09.526 INFO [6780]: SERVER_NAME = oameye.works.coregrade.com -- 17:09:09.526 INFO [6780]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=bdg707eb0pgmg6our4thn878rqo67vj9; _gat_gtag_UA_54829827_2=1 -- 17:09:09.526 INFO [6780]: QUERY_STRING = /auth/resetpass -- 17:09:09.526 INFO [6780]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:09:09.612 INFO [6780]: COREGRADE is stopping... -- 17:09:09.612 DEBUG [6780]: Closing database connection -- 17:09:09.612 SQL [6780]: pgsql_close() -- 17:10:38.398 INFO [6838]: COREGRADE is starting... -- 17:10:38.398 INFO [6838]: Version from config: 1.0 -- 17:10:38.398 DEBUG [6838]: Connecting to database... -- 17:10:38.398 DEBUG [6838]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:10:38.398 SQL [6838]: pgsql_db_connect() -- 17:10:38.434 INFO [6838]: COREGRADE is starting... -- 17:10:38.435 INFO [6838]: Version from config: 1.0 -- 17:10:38.435 DEBUG [6838]: Connecting to database... -- 17:10:38.435 DEBUG [6838]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:10:38.435 SQL [6838]: pgsql_db_connect() -- 17:10:38.439 DEBUG [6838]: Database connection successful -- 17:10:38.439 INFO [6838]: _SERVER found -- 17:10:38.439 INFO [6838]: REMOTE_ADDR = 10.0.0.15 -- 17:10:38.439 INFO [6838]: SERVER_NAME = oameye.works.coregrade.com -- 17:10:38.439 INFO [6838]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=bdg707eb0pgmg6our4thn878rqo67vj9 -- 17:10:38.439 INFO [6838]: QUERY_STRING = rlink=4b288251b2fb501cc969ef5a668d5f63 -- 17:10:38.439 INFO [6838]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:10:38.439 INFO [6838]: SystemStatus()09-09-********~************ -- 17:10:38.439 INFO [6838]: long coregrade_api_main(CVars in, CVars &out) -- 17:10:38.439 INFO [6838]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 17:10:38.439 INFO [6838]: account calls -- 17:10:38.439 INFO [6838]: account_calls() -- 17:10:38.439 INFO [6838]: passwordReset() -- 17:10:38.439 INFO [6838]: confirmPassReset() -- 17:10:38.439 FLOG_MAX [6838]: REQ_STRING(reset_key) -- 17:10:38.439 FLOG_MAX [6838]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:10:38.439 SQL [6838]: pgsql_query() -- 17:10:38.439 SQL [6838]: About to run query: -- 17:10:38.439 SQL [6838]: SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='4b288251b2fb501cc969ef5a668d5f63' -- 17:10:38.442 SQL [6838]: Found rows: 1 -- 17:10:38.442 FLOG_MAX [6838]: load_db_record(SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='4b288251b2fb501cc969ef5a668d5f63' ) num_cols=10 -- 17:10:38.442 SQL [6838]: pgsql_query() -- 17:10:38.442 SQL [6838]: About to run query: -- 17:10:38.442 SQL [6838]: UPDATE password_reset SET status = 1 WHERE id =19 -- 17:10:38.443 SQL [6838]: Found rows: 0 -- 17:10:38.443 SQL [6838]: Found rows: 0 -- 17:10:38.443 INFO [6838]: RET: created=2020-04-12 17:09:09.567416 -- 17:10:38.443 INFO [6838]: RET: expired= -- 17:10:38.443 INFO [6838]: RET: id=19 -- 17:10:38.443 INFO [6838]: RET: loc=10.0.0.15 -- 17:10:38.443 INFO [6838]: RET: member_id=7 -- 17:10:38.443 INFO [6838]: RET: reset_id=19 -- 17:10:38.443 INFO [6838]: RET: reset_key=4b288251b2fb501cc969ef5a668d5f63 -- 17:10:38.443 INFO [6838]: RET: reset_pin=43566 -- 17:10:38.443 INFO [6838]: RET: result=YES I GET TO BACK END -- 17:10:38.443 INFO [6838]: RET: status=0 -- 17:10:38.443 INFO [6838]: RET: username=tokslaw@chiefsoft.com -- 17:10:38.445 INFO [6838]: COREGRADE is stopping... -- 17:10:38.445 DEBUG [6838]: Closing database connection -- 17:10:38.445 SQL [6838]: pgsql_close() -- 17:10:38.402 DEBUG [6838]: Database connection successful -- 17:10:38.402 INFO [6838]: _SERVER found -- 17:10:38.402 INFO [6838]: REMOTE_ADDR = 10.0.0.15 -- 17:10:38.402 INFO [6838]: SERVER_NAME = oameye.works.coregrade.com -- 17:10:38.402 INFO [6838]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=bdg707eb0pgmg6our4thn878rqo67vj9 -- 17:10:38.402 INFO [6838]: QUERY_STRING = /auth/passreset -- 17:10:38.402 INFO [6838]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:10:38.445 INFO [6838]: COREGRADE is stopping... -- 17:10:38.445 DEBUG [6838]: Closing database connection -- 17:10:38.445 SQL [6838]: pgsql_close() -- 17:10:39.132 INFO [6838]: COREGRADE is starting... -- 17:10:39.132 INFO [6838]: Version from config: 1.0 -- 17:10:39.132 DEBUG [6838]: Connecting to database... -- 17:10:39.132 DEBUG [6838]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:10:39.132 SQL [6838]: pgsql_db_connect() -- 17:10:39.136 DEBUG [6838]: Database connection successful -- 17:10:39.136 INFO [6838]: _SERVER found -- 17:10:39.136 INFO [6838]: REMOTE_ADDR = 10.0.0.15 -- 17:10:39.136 INFO [6838]: SERVER_NAME = oameye.works.coregrade.com -- 17:10:39.136 INFO [6838]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=bdg707eb0pgmg6our4thn878rqo67vj9 -- 17:10:39.136 INFO [6838]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:10:39.136 INFO [6838]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:10:39.148 INFO [6838]: COREGRADE is stopping... -- 17:10:39.148 DEBUG [6838]: Closing database connection -- 17:10:39.148 SQL [6838]: pgsql_close() -- 17:11:13.304 INFO [6776]: COREGRADE is starting... -- 17:11:13.304 INFO [6776]: Version from config: 1.0 -- 17:11:13.304 DEBUG [6776]: Connecting to database... -- 17:11:13.304 DEBUG [6776]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:13.304 SQL [6776]: pgsql_db_connect() -- 17:11:13.308 DEBUG [6776]: Database connection successful -- 17:11:13.308 INFO [6776]: _SERVER found -- 17:11:13.308 INFO [6776]: REMOTE_ADDR = 10.0.0.15 -- 17:11:13.308 INFO [6776]: SERVER_NAME = oameye.works.coregrade.com -- 17:11:13.308 INFO [6776]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=bdg707eb0pgmg6our4thn878rqo67vj9 -- 17:11:13.308 INFO [6776]: QUERY_STRING = /auth/completereset -- 17:11:13.308 INFO [6776]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:11:13.340 INFO [6776]: COREGRADE is stopping... -- 17:11:13.340 DEBUG [6776]: Closing database connection -- 17:11:13.341 SQL [6776]: pgsql_close() -- 17:11:13.684 INFO [6776]: COREGRADE is starting... -- 17:11:13.684 INFO [6776]: Version from config: 1.0 -- 17:11:13.684 DEBUG [6776]: Connecting to database... -- 17:11:13.685 DEBUG [6776]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:13.685 SQL [6776]: pgsql_db_connect() -- 17:11:13.689 DEBUG [6776]: Database connection successful -- 17:11:13.689 INFO [6776]: _SERVER found -- 17:11:13.689 INFO [6776]: REMOTE_ADDR = 10.0.0.15 -- 17:11:13.689 INFO [6776]: SERVER_NAME = oameye.works.coregrade.com -- 17:11:13.689 INFO [6776]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=bdg707eb0pgmg6our4thn878rqo67vj9 -- 17:11:13.689 INFO [6776]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:11:13.689 INFO [6776]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:11:13.700 INFO [6776]: COREGRADE is stopping... -- 17:11:13.700 DEBUG [6776]: Closing database connection -- 17:11:13.700 SQL [6776]: pgsql_close() -- 17:11:57.625 INFO [6778]: COREGRADE is starting... -- 17:11:57.625 INFO [6778]: Version from config: 1.0 -- 17:11:57.625 DEBUG [6778]: Connecting to database... -- 17:11:57.625 DEBUG [6778]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:57.625 SQL [6778]: pgsql_db_connect() -- 17:11:57.629 DEBUG [6778]: Database connection successful -- 17:11:57.629 INFO [6778]: _SERVER found -- 17:11:57.629 INFO [6778]: REMOTE_ADDR = 10.0.0.15 -- 17:11:57.629 INFO [6778]: SERVER_NAME = oameye.works.coregrade.com -- 17:11:57.629 INFO [6778]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=bdg707eb0pgmg6our4thn878rqo67vj9 -- 17:11:57.629 INFO [6778]: QUERY_STRING = /auth/completereset -- 17:11:57.629 INFO [6778]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:11:57.662 INFO [6778]: COREGRADE is stopping... -- 17:11:57.662 DEBUG [6778]: Closing database connection -- 17:11:57.662 SQL [6778]: pgsql_close() -- 17:11:58.021 INFO [6778]: COREGRADE is starting... -- 17:11:58.021 INFO [6778]: Version from config: 1.0 -- 17:11:58.021 DEBUG [6778]: Connecting to database... -- 17:11:58.021 DEBUG [6778]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:58.021 SQL [6778]: pgsql_db_connect() -- 17:11:58.026 DEBUG [6778]: Database connection successful -- 17:11:58.026 INFO [6778]: _SERVER found -- 17:11:58.026 INFO [6778]: REMOTE_ADDR = 10.0.0.15 -- 17:11:58.026 INFO [6778]: SERVER_NAME = oameye.works.coregrade.com -- 17:11:58.026 INFO [6778]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=bdg707eb0pgmg6our4thn878rqo67vj9 -- 17:11:58.026 INFO [6778]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:11:58.026 INFO [6778]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:11:58.037 INFO [6778]: COREGRADE is stopping... -- 17:11:58.037 DEBUG [6778]: Closing database connection -- 17:11:58.037 SQL [6778]: pgsql_close() -- 17:13:31.828 INFO [6972]: COREGRADE is starting... -- 17:13:31.828 INFO [6972]: Version from config: 1.0 -- 17:13:31.828 DEBUG [6972]: Connecting to database... -- 17:13:31.829 DEBUG [6972]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:13:31.829 SQL [6972]: pgsql_db_connect() -- 17:13:31.833 DEBUG [6972]: Database connection successful -- 17:13:31.833 INFO [6972]: _SERVER found -- 17:13:31.833 INFO [6972]: REMOTE_ADDR = 10.0.0.15 -- 17:13:31.833 INFO [6972]: SERVER_NAME = oameye.works.coregrade.com -- 17:13:31.833 INFO [6972]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=bdg707eb0pgmg6our4thn878rqo67vj9 -- 17:13:31.833 INFO [6972]: QUERY_STRING = /auth/completereset -- 17:13:31.833 INFO [6972]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:13:31.873 INFO [6972]: COREGRADE is stopping... -- 17:13:31.873 DEBUG [6972]: Closing database connection -- 17:13:31.873 SQL [6972]: pgsql_close() -- 17:13:32.255 INFO [6972]: COREGRADE is starting... -- 17:13:32.256 INFO [6972]: Version from config: 1.0 -- 17:13:32.256 DEBUG [6972]: Connecting to database... -- 17:13:32.256 DEBUG [6972]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:13:32.256 SQL [6972]: pgsql_db_connect() -- 17:13:32.260 DEBUG [6972]: Database connection successful -- 17:13:32.260 INFO [6972]: _SERVER found -- 17:13:32.260 INFO [6972]: REMOTE_ADDR = 10.0.0.15 -- 17:13:32.260 INFO [6972]: SERVER_NAME = oameye.works.coregrade.com -- 17:13:32.260 INFO [6972]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3gme4ml3dd38t2v1813lvntvkvgonht0 -- 17:13:32.260 INFO [6972]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:13:32.260 INFO [6972]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:13:32.272 INFO [6972]: COREGRADE is stopping... -- 17:13:32.273 DEBUG [6972]: Closing database connection -- 17:13:32.273 SQL [6972]: pgsql_close() -- 17:14:28.194 INFO [6867]: COREGRADE is starting... -- 17:14:28.194 INFO [6867]: Version from config: 1.0 -- 17:14:28.194 DEBUG [6867]: Connecting to database... -- 17:14:28.194 DEBUG [6867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:14:28.194 SQL [6867]: pgsql_db_connect() -- 17:14:28.199 DEBUG [6867]: Database connection successful -- 17:14:28.199 INFO [6867]: _SERVER found -- 17:14:28.199 INFO [6867]: REMOTE_ADDR = 10.0.0.15 -- 17:14:28.199 INFO [6867]: SERVER_NAME = oameye.works.coregrade.com -- 17:14:28.199 INFO [6867]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3gme4ml3dd38t2v1813lvntvkvgonht0 -- 17:14:28.199 INFO [6867]: QUERY_STRING = /auth/completereset -- 17:14:28.199 INFO [6867]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:14:28.232 INFO [6867]: COREGRADE is stopping... -- 17:14:28.232 DEBUG [6867]: Closing database connection -- 17:14:28.232 SQL [6867]: pgsql_close() -- 17:14:28.517 INFO [6867]: COREGRADE is starting... -- 17:14:28.517 INFO [6867]: Version from config: 1.0 -- 17:14:28.517 DEBUG [6867]: Connecting to database... -- 17:14:28.517 DEBUG [6867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:14:28.517 SQL [6867]: pgsql_db_connect() -- 17:14:28.521 DEBUG [6867]: Database connection successful -- 17:14:28.521 INFO [6867]: _SERVER found -- 17:14:28.521 INFO [6867]: REMOTE_ADDR = 10.0.0.15 -- 17:14:28.521 INFO [6867]: SERVER_NAME = oameye.works.coregrade.com -- 17:14:28.521 INFO [6867]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3gme4ml3dd38t2v1813lvntvkvgonht0 -- 17:14:28.521 INFO [6867]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:14:28.521 INFO [6867]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:14:28.532 INFO [6867]: COREGRADE is stopping... -- 17:14:28.532 DEBUG [6867]: Closing database connection -- 17:14:28.532 SQL [6867]: pgsql_close() -- 17:14:28.679 INFO [6867]: COREGRADE is starting... -- 17:14:28.679 INFO [6867]: Version from config: 1.0 -- 17:14:28.679 DEBUG [6867]: Connecting to database... -- 17:14:28.679 DEBUG [6867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:14:28.679 SQL [6867]: pgsql_db_connect() -- 17:14:28.683 DEBUG [6867]: Database connection successful -- 17:14:28.683 INFO [6867]: _SERVER found -- 17:14:28.683 INFO [6867]: REMOTE_ADDR = 10.0.0.15 -- 17:14:28.683 INFO [6867]: SERVER_NAME = oameye.works.coregrade.com -- 17:14:28.683 INFO [6867]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3gme4ml3dd38t2v1813lvntvkvgonht0 -- 17:14:28.683 INFO [6867]: QUERY_STRING = /favicon.ico -- 17:14:28.683 INFO [6867]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:14:28.694 INFO [6867]: COREGRADE is stopping... -- 17:14:28.694 DEBUG [6867]: Closing database connection -- 17:14:28.694 SQL [6867]: pgsql_close() -- 17:15:17.596 INFO [6777]: COREGRADE is starting... -- 17:15:17.596 INFO [6777]: Version from config: 1.0 -- 17:15:17.596 DEBUG [6777]: Connecting to database... -- 17:15:17.596 DEBUG [6777]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:15:17.596 SQL [6777]: pgsql_db_connect() -- 17:15:17.600 DEBUG [6777]: Database connection successful -- 17:15:17.600 INFO [6777]: _SERVER found -- 17:15:17.600 INFO [6777]: REMOTE_ADDR = 10.0.0.15 -- 17:15:17.600 INFO [6777]: SERVER_NAME = oameye.works.coregrade.com -- 17:15:17.600 INFO [6777]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3gme4ml3dd38t2v1813lvntvkvgonht0 -- 17:15:17.600 INFO [6777]: QUERY_STRING = /auth/completereset -- 17:15:17.600 INFO [6777]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:15:17.637 INFO [6777]: COREGRADE is stopping... -- 17:15:17.637 DEBUG [6777]: Closing database connection -- 17:15:17.637 SQL [6777]: pgsql_close() -- 17:15:17.928 INFO [6777]: COREGRADE is starting... -- 17:15:17.928 INFO [6777]: Version from config: 1.0 -- 17:15:17.928 DEBUG [6777]: Connecting to database... -- 17:15:17.928 DEBUG [6777]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:15:17.928 SQL [6777]: pgsql_db_connect() -- 17:15:17.933 DEBUG [6777]: Database connection successful -- 17:15:17.933 INFO [6777]: _SERVER found -- 17:15:17.933 INFO [6777]: REMOTE_ADDR = 10.0.0.15 -- 17:15:17.933 INFO [6777]: SERVER_NAME = oameye.works.coregrade.com -- 17:15:17.933 INFO [6777]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3gme4ml3dd38t2v1813lvntvkvgonht0 -- 17:15:17.933 INFO [6777]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:15:17.933 INFO [6777]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:15:17.945 INFO [6777]: COREGRADE is stopping... -- 17:15:17.945 DEBUG [6777]: Closing database connection -- 17:15:17.945 SQL [6777]: pgsql_close() -- 17:16:30.557 INFO [6779]: COREGRADE is starting... -- 17:16:30.558 INFO [6779]: Version from config: 1.0 -- 17:16:30.558 DEBUG [6779]: Connecting to database... -- 17:16:30.558 DEBUG [6779]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:16:30.558 SQL [6779]: pgsql_db_connect() -- 17:16:30.594 INFO [6779]: COREGRADE is starting... -- 17:16:30.594 INFO [6779]: Version from config: 1.0 -- 17:16:30.594 DEBUG [6779]: Connecting to database... -- 17:16:30.594 DEBUG [6779]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:16:30.594 SQL [6779]: pgsql_db_connect() -- 17:16:30.599 DEBUG [6779]: Database connection successful -- 17:16:30.599 INFO [6779]: _SERVER found -- 17:16:30.599 INFO [6779]: REMOTE_ADDR = 10.0.0.15 -- 17:16:30.599 INFO [6779]: SERVER_NAME = oameye.works.coregrade.com -- 17:16:30.599 INFO [6779]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3gme4ml3dd38t2v1813lvntvkvgonht0 -- 17:16:30.599 INFO [6779]: QUERY_STRING = -- 17:16:30.599 INFO [6779]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:16:30.599 INFO [6779]: SystemStatus()09-09-********~************ -- 17:16:30.599 INFO [6779]: long coregrade_api_main(CVars in, CVars &out) -- 17:16:30.599 INFO [6779]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 17:16:30.599 INFO [6779]: account calls -- 17:16:30.599 INFO [6779]: account_calls() -- 17:16:30.599 INFO [6779]: passwordReset() -- 17:16:30.599 INFO [6779]: startPassReset() -- 17:16:30.599 FLOG_MAX [6779]: REQ_STRING(username) -- 17:16:30.599 FLOG_MAX [6779]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:16:30.599 SQL [6779]: pgsql_query() -- 17:16:30.599 SQL [6779]: About to run query: -- 17:16:30.599 SQL [6779]: SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') -- 17:16:30.601 SQL [6779]: Found rows: 1 -- 17:16:30.601 FLOG_MAX [6779]: load_db_record(SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') ) num_cols=2 -- 17:16:30.601 SQL [6779]: pgsql_exec() -- 17:16:30.602 SQL [6779]: About to run query: -- 17:16:30.602 SQL [6779]: UPDATE password_reset SET status=7 WHERE status NOT IN (3,5) AND member_id=7 -- 17:16:30.603 SQL [6779]: PQcmdTuples: 4 -- 17:16:30.603 SQL [6779]: Affected rows: 4 -- 17:16:30.603 FLOG_MAX [6779]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:16:30.603 SQL [6779]: pgsql_query() -- 17:16:30.603 SQL [6779]: About to run query: -- 17:16:30.603 SQL [6779]: SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 17:16:30.599404-04') AS reset_key -- 17:16:30.604 SQL [6779]: Found rows: 1 -- 17:16:30.604 FLOG_MAX [6779]: load_db_record(SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 17:16:30.599404-04') AS reset_key) num_cols=2 -- 17:16:30.604 FLOG_MAX [6779]: insert_db_record() -- 17:16:30.604 SQL [6779]: pgsql_exec() -- 17:16:30.604 SQL [6779]: About to run query: -- 17:16:30.604 SQL [6779]: INSERT INTO password_reset (loc,member_id,reset_key,reset_pin,username) VALUES ('10.0.0.15','7','f22dae003e8246d7c30fa1fb5501535c','33975','tokslaw@chiefsoft.com') -- 17:16:30.605 SQL [6779]: PQcmdTuples: 1 -- 17:16:30.605 SQL [6779]: Affected rows: 1 -- 17:16:30.605 FLOG_MAX [6779]: SELECT currval('password_reset_id_seq') -- 17:16:30.605 SQL [6779]: pgsql_query() -- 17:16:30.605 SQL [6779]: About to run query: -- 17:16:30.605 SQL [6779]: SELECT currval('password_reset_id_seq') -- 17:16:30.606 SQL [6779]: Found rows: 1 -- 17:16:30.606 INFO [6779]: member_email_calls() -- 17:16:30.606 FLOG_MAX [6779]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:16:30.606 SQL [6779]: pgsql_query() -- 17:16:30.606 SQL [6779]: About to run query: -- 17:16:30.606 SQL [6779]: SELECT m.firstname,p.*,m.email AS member_email, created AS lost_added FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=20 -- 17:16:30.607 SQL [6779]: Found rows: 1 -- 17:16:30.607 FLOG_MAX [6779]: load_db_record(SELECT m.firstname,p.*,m.email AS member_email, created AS lost_added FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=20 ) num_cols=12 -- 17:16:30.607 FLOG_MAX [6779]: CGI Parsing: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 17:16:30.607 FLOG_MAX [6779]: Template '/home/oameye/coregrade/coregrade/email//start_losspass.mailfile' loaded: 1586 bytes -- 17:16:30.607 FLOG_MAX [6779]: Returning from FormFile() -- 17:16:30.607 FLOG_MAX [6779]: Template parsed: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 17:16:30.607 FLOG_MAX [6779]: ESMTP( 10.0.0.23, support@coregrade.com, tokslaw@chiefsoft.com ) -- 17:16:30.607 FLOG_MAX [6779]: Prepare body -- 17:16:30.607 FLOG_MAX [6779]: Locate & extract subject -- 17:16:30.607 FLOG_MAX [6779]: Found subject: CoreGrade - Password Reset for tokslaw@chiefsoft.com -- 17:16:30.607 FLOG_MAX [6779]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t tokslaw@chiefsoft.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'CoreGrade - Password Reset for tokslaw@chiefsoft.com ' -M ' - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
CoreGrade
-Dear Tokunbo -
-We have initiated your password reset process as requested as by you on 2020-04-12 17:16:30.604777: -
- - - - -
Click the linkhttps://oameye.works.coregrade.com/auth/passreset?rlink=f22dae003e8246d7c30fa1fb5501535c
Link will expire
-
-
-If it was not at your request, then please contact CoreGrade support immediately. - -For further support go to our website at https://oameye.works.coregrade.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing CoreGrade. -CoreGrade Team. - -
-
- -
- - - - - - ' -- 17:16:30.654 FLOG_MAX [6779]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Password Reset for tokslaw@chiefsoft.com -From: CoreGrade Support -Date: Sun, 12 Apr 2020 17:16:30 -0400 -To: tokslaw@chiefsoft.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="mAJDvWxnFG+sLLwe" -Mime-version: 1.0 - - ---mAJDvWxnFG+sLLwe -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
CoreGrade
-Dear Tokunbo -
-We have initiated your password reset process as requested as by you on 2020-04-12 17:16:30.604777: -
- - - - -
Click the linkhttps://oameye.works.coregrade.com/auth/passreset?rlink=f22dae003e8246d7c30fa1fb5501535c
Link will expire
-
-
-If it was not at your request, then please contact CoreGrade support immediately. - -For further support go to our website at https://oameye.works.coregrade.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing CoreGrade. -CoreGrade Team. - -
-
- -
- - - - - - - - ---mAJDvWxnFG+sLLwe-- - -[C] . -[S] 250 2.0.0 Ok: queued as 9BA5F210BDEF -[C] QUIT -[S] 221 2.0.0 Bye - -- 17:16:30.654 FLOG_MAX [6779]: - -END OF PIPE OUTPUT - - -- 17:16:30.654 FLOG_MAX [6779]: /ESMTP() -- 17:16:30.654 INFO [6779]: /member_email_calls() -- 17:16:30.654 INFO [6779]: RET: member_id=7 -- 17:16:30.654 INFO [6779]: RET: mode=100 -- 17:16:30.654 INFO [6779]: RET: reset_id=20 -- 17:16:30.654 INFO [6779]: RET: reset_key=YOU WILL GET THIS IF PIN IS CORRECT IN CONFIRM -- 17:16:30.654 INFO [6779]: RET: reset_seed=2020-04-12 17:16:30.599404-04 -- 17:16:30.654 INFO [6779]: RET: reset_seed==REMOVED -- 17:16:30.654 INFO [6779]: RET: result=YES I GET TO BACK END -- 17:16:30.656 INFO [6779]: COREGRADE is stopping... -- 17:16:30.656 DEBUG [6779]: Closing database connection -- 17:16:30.656 SQL [6779]: pgsql_close() -- 17:16:30.562 DEBUG [6779]: Database connection successful -- 17:16:30.562 INFO [6779]: _SERVER found -- 17:16:30.562 INFO [6779]: REMOTE_ADDR = 10.0.0.15 -- 17:16:30.562 INFO [6779]: SERVER_NAME = oameye.works.coregrade.com -- 17:16:30.562 INFO [6779]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3gme4ml3dd38t2v1813lvntvkvgonht0 -- 17:16:30.562 INFO [6779]: QUERY_STRING = /auth/resetpass -- 17:16:30.562 INFO [6779]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:16:30.657 INFO [6779]: COREGRADE is stopping... -- 17:16:30.657 DEBUG [6779]: Closing database connection -- 17:16:30.657 SQL [6779]: pgsql_close() -- 17:16:30.968 INFO [6779]: COREGRADE is starting... -- 17:16:30.969 INFO [6779]: Version from config: 1.0 -- 17:16:30.969 DEBUG [6779]: Connecting to database... -- 17:16:30.969 DEBUG [6779]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:16:30.969 SQL [6779]: pgsql_db_connect() -- 17:16:30.973 DEBUG [6779]: Database connection successful -- 17:16:30.973 INFO [6779]: _SERVER found -- 17:16:30.973 INFO [6779]: REMOTE_ADDR = 10.0.0.15 -- 17:16:30.973 INFO [6779]: SERVER_NAME = oameye.works.coregrade.com -- 17:16:30.973 INFO [6779]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3gme4ml3dd38t2v1813lvntvkvgonht0 -- 17:16:30.973 INFO [6779]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:16:30.973 INFO [6779]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:16:30.984 INFO [6779]: COREGRADE is stopping... -- 17:16:30.984 DEBUG [6779]: Closing database connection -- 17:16:30.984 SQL [6779]: pgsql_close() -- 17:16:36.201 INFO [6780]: COREGRADE is starting... -- 17:16:36.202 INFO [6780]: Version from config: 1.0 -- 17:16:36.202 DEBUG [6780]: Connecting to database... -- 17:16:36.202 DEBUG [6780]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:16:36.202 SQL [6780]: pgsql_db_connect() -- 17:16:36.206 DEBUG [6780]: Database connection successful -- 17:16:36.206 INFO [6780]: _SERVER found -- 17:16:36.206 INFO [6780]: REMOTE_ADDR = 10.0.0.15 -- 17:16:36.206 INFO [6780]: SERVER_NAME = oameye.works.coregrade.com -- 17:16:36.206 INFO [6780]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3gme4ml3dd38t2v1813lvntvkvgonht0 -- 17:16:36.206 INFO [6780]: QUERY_STRING = -- 17:16:36.206 INFO [6780]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:16:36.239 INFO [6780]: COREGRADE is stopping... -- 17:16:36.240 DEBUG [6780]: Closing database connection -- 17:16:36.240 SQL [6780]: pgsql_close() -- 17:16:36.594 INFO [6780]: COREGRADE is starting... -- 17:16:36.594 INFO [6780]: Version from config: 1.0 -- 17:16:36.594 DEBUG [6780]: Connecting to database... -- 17:16:36.594 DEBUG [6780]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:16:36.594 SQL [6780]: pgsql_db_connect() -- 17:16:36.598 DEBUG [6780]: Database connection successful -- 17:16:36.598 INFO [6780]: _SERVER found -- 17:16:36.598 INFO [6780]: REMOTE_ADDR = 10.0.0.15 -- 17:16:36.598 INFO [6780]: SERVER_NAME = oameye.works.coregrade.com -- 17:16:36.598 INFO [6780]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3gme4ml3dd38t2v1813lvntvkvgonht0 -- 17:16:36.598 INFO [6780]: QUERY_STRING = /assets/img/footer_1.jpg -- 17:16:36.598 INFO [6780]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:16:36.609 INFO [6780]: COREGRADE is stopping... -- 17:16:36.609 DEBUG [6780]: Closing database connection -- 17:16:36.609 SQL [6780]: pgsql_close() -- 17:16:40.981 INFO [6780]: COREGRADE is starting... -- 17:16:40.981 INFO [6780]: Version from config: 1.0 -- 17:16:40.981 DEBUG [6780]: Connecting to database... -- 17:16:40.981 DEBUG [6780]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:16:40.981 SQL [6780]: pgsql_db_connect() -- 17:16:41.007 INFO [6838]: COREGRADE is starting... -- 17:16:41.007 INFO [6838]: Version from config: 1.0 -- 17:16:41.007 DEBUG [6838]: Connecting to database... -- 17:16:41.007 DEBUG [6838]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:16:41.007 SQL [6838]: pgsql_db_connect() -- 17:16:40.985 DEBUG [6780]: Database connection successful -- 17:16:40.985 INFO [6780]: _SERVER found -- 17:16:40.985 INFO [6780]: REMOTE_ADDR = 10.0.0.15 -- 17:16:40.985 INFO [6780]: SERVER_NAME = oameye.works.coregrade.com -- 17:16:40.985 INFO [6780]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3gme4ml3dd38t2v1813lvntvkvgonht0; _gat_gtag_UA_54829827_2=1 -- 17:16:40.985 INFO [6780]: QUERY_STRING = /welcome/viewLogin -- 17:16:40.985 INFO [6780]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:16:41.016 INFO [6780]: COREGRADE is stopping... -- 17:16:41.016 DEBUG [6780]: Closing database connection -- 17:16:41.016 SQL [6780]: pgsql_close() -- 17:16:41.011 DEBUG [6838]: Database connection successful -- 17:16:41.011 INFO [6838]: _SERVER found -- 17:16:41.011 INFO [6838]: REMOTE_ADDR = 10.0.0.15 -- 17:16:41.011 INFO [6838]: SERVER_NAME = oameye.works.coregrade.com -- 17:16:41.011 INFO [6838]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3gme4ml3dd38t2v1813lvntvkvgonht0; _gat_gtag_UA_54829827_2=1 -- 17:16:41.011 INFO [6838]: QUERY_STRING = /auth -- 17:16:41.011 INFO [6838]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:16:41.044 INFO [6838]: COREGRADE is stopping... -- 17:16:41.044 DEBUG [6838]: Closing database connection -- 17:16:41.044 SQL [6838]: pgsql_close() -- 17:16:41.056 INFO [6780]: COREGRADE is starting... -- 17:16:41.057 INFO [6780]: Version from config: 1.0 -- 17:16:41.057 DEBUG [6780]: Connecting to database... -- 17:16:41.057 DEBUG [6780]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:16:41.057 SQL [6780]: pgsql_db_connect() -- 17:16:41.061 DEBUG [6780]: Database connection successful -- 17:16:41.061 INFO [6780]: _SERVER found -- 17:16:41.061 INFO [6780]: REMOTE_ADDR = 10.0.0.15 -- 17:16:41.061 INFO [6780]: SERVER_NAME = oameye.works.coregrade.com -- 17:16:41.061 INFO [6780]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3gme4ml3dd38t2v1813lvntvkvgonht0; _gat_gtag_UA_54829827_2=1 -- 17:16:41.061 INFO [6780]: QUERY_STRING = /auth/index -- 17:16:41.061 INFO [6780]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:16:41.092 INFO [6780]: COREGRADE is stopping... -- 17:16:41.092 DEBUG [6780]: Closing database connection -- 17:16:41.092 SQL [6780]: pgsql_close() -- 17:16:41.460 INFO [6838]: COREGRADE is starting... -- 17:16:41.460 INFO [6838]: Version from config: 1.0 -- 17:16:41.460 DEBUG [6838]: Connecting to database... -- 17:16:41.460 DEBUG [6838]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:16:41.460 SQL [6838]: pgsql_db_connect() -- 17:16:41.464 DEBUG [6838]: Database connection successful -- 17:16:41.464 INFO [6838]: _SERVER found -- 17:16:41.464 INFO [6838]: REMOTE_ADDR = 10.0.0.15 -- 17:16:41.464 INFO [6838]: SERVER_NAME = oameye.works.coregrade.com -- 17:16:41.464 INFO [6838]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3gme4ml3dd38t2v1813lvntvkvgonht0; _gat_gtag_UA_54829827_2=1 -- 17:16:41.464 INFO [6838]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:16:41.464 INFO [6838]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:16:41.475 INFO [6838]: COREGRADE is stopping... -- 17:16:41.476 DEBUG [6838]: Closing database connection -- 17:16:41.476 SQL [6838]: pgsql_close() -- 17:16:45.314 INFO [6780]: COREGRADE is starting... -- 17:16:45.314 INFO [6780]: Version from config: 1.0 -- 17:16:45.314 DEBUG [6780]: Connecting to database... -- 17:16:45.314 DEBUG [6780]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:16:45.314 SQL [6780]: pgsql_db_connect() -- 17:16:45.318 DEBUG [6780]: Database connection successful -- 17:16:45.318 INFO [6780]: _SERVER found -- 17:16:45.318 INFO [6780]: REMOTE_ADDR = 10.0.0.15 -- 17:16:45.318 INFO [6780]: SERVER_NAME = oameye.works.coregrade.com -- 17:16:45.318 INFO [6780]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3gme4ml3dd38t2v1813lvntvkvgonht0; _gat_gtag_UA_54829827_2=1 -- 17:16:45.318 INFO [6780]: QUERY_STRING = /auth/resetpass -- 17:16:45.318 INFO [6780]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:16:45.350 INFO [6780]: COREGRADE is stopping... -- 17:16:45.350 DEBUG [6780]: Closing database connection -- 17:16:45.350 SQL [6780]: pgsql_close() -- 17:16:53.918 INFO [6776]: COREGRADE is starting... -- 17:16:53.919 INFO [6776]: Version from config: 1.0 -- 17:16:53.919 DEBUG [6776]: Connecting to database... -- 17:16:53.919 DEBUG [6776]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:16:53.919 SQL [6776]: pgsql_db_connect() -- 17:16:53.954 INFO [6776]: COREGRADE is starting... -- 17:16:53.955 INFO [6776]: Version from config: 1.0 -- 17:16:53.955 DEBUG [6776]: Connecting to database... -- 17:16:53.955 DEBUG [6776]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:16:53.955 SQL [6776]: pgsql_db_connect() -- 17:16:53.959 DEBUG [6776]: Database connection successful -- 17:16:53.959 INFO [6776]: _SERVER found -- 17:16:53.959 INFO [6776]: REMOTE_ADDR = 10.0.0.15 -- 17:16:53.959 INFO [6776]: SERVER_NAME = oameye.works.coregrade.com -- 17:16:53.959 INFO [6776]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3gme4ml3dd38t2v1813lvntvkvgonht0; _gat_gtag_UA_54829827_2=1 -- 17:16:53.959 INFO [6776]: QUERY_STRING = -- 17:16:53.959 INFO [6776]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:16:53.959 INFO [6776]: SystemStatus()09-09-********~************ -- 17:16:53.959 INFO [6776]: long coregrade_api_main(CVars in, CVars &out) -- 17:16:53.959 INFO [6776]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 17:16:53.959 INFO [6776]: account calls -- 17:16:53.959 INFO [6776]: account_calls() -- 17:16:53.959 INFO [6776]: passwordReset() -- 17:16:53.959 INFO [6776]: startPassReset() -- 17:16:53.959 FLOG_MAX [6776]: REQ_STRING(username) -- 17:16:53.959 FLOG_MAX [6776]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:16:53.959 SQL [6776]: pgsql_query() -- 17:16:53.959 SQL [6776]: About to run query: -- 17:16:53.959 SQL [6776]: SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') -- 17:16:53.961 SQL [6776]: Found rows: 1 -- 17:16:53.961 FLOG_MAX [6776]: load_db_record(SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') ) num_cols=2 -- 17:16:53.961 SQL [6776]: pgsql_exec() -- 17:16:53.961 SQL [6776]: About to run query: -- 17:16:53.961 SQL [6776]: UPDATE password_reset SET status=7 WHERE status NOT IN (3,5) AND member_id=7 -- 17:16:53.963 SQL [6776]: PQcmdTuples: 5 -- 17:16:53.963 SQL [6776]: Affected rows: 5 -- 17:16:53.963 FLOG_MAX [6776]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:16:53.963 SQL [6776]: pgsql_query() -- 17:16:53.963 SQL [6776]: About to run query: -- 17:16:53.963 SQL [6776]: SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 17:16:53.959314-04') AS reset_key -- 17:16:53.964 SQL [6776]: Found rows: 1 -- 17:16:53.964 FLOG_MAX [6776]: load_db_record(SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 17:16:53.959314-04') AS reset_key) num_cols=2 -- 17:16:53.964 FLOG_MAX [6776]: insert_db_record() -- 17:16:53.964 SQL [6776]: pgsql_exec() -- 17:16:53.964 SQL [6776]: About to run query: -- 17:16:53.964 SQL [6776]: INSERT INTO password_reset (loc,member_id,reset_key,reset_pin,username) VALUES ('10.0.0.15','7','c6fbeb96cd780cbe3c20775913d34d32','14968','tokslaw@chiefsoft.com') -- 17:16:53.965 SQL [6776]: PQcmdTuples: 1 -- 17:16:53.965 SQL [6776]: Affected rows: 1 -- 17:16:53.965 FLOG_MAX [6776]: SELECT currval('password_reset_id_seq') -- 17:16:53.965 SQL [6776]: pgsql_query() -- 17:16:53.965 SQL [6776]: About to run query: -- 17:16:53.965 SQL [6776]: SELECT currval('password_reset_id_seq') -- 17:16:53.965 SQL [6776]: Found rows: 1 -- 17:16:53.965 INFO [6776]: member_email_calls() -- 17:16:53.966 FLOG_MAX [6776]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:16:53.966 SQL [6776]: pgsql_query() -- 17:16:53.966 SQL [6776]: About to run query: -- 17:16:53.966 SQL [6776]: SELECT m.firstname,p.*,m.email AS member_email, created AS lost_added FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=21 -- 17:16:53.966 SQL [6776]: Found rows: 1 -- 17:16:53.966 FLOG_MAX [6776]: load_db_record(SELECT m.firstname,p.*,m.email AS member_email, created AS lost_added FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=21 ) num_cols=12 -- 17:16:53.967 FLOG_MAX [6776]: CGI Parsing: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 17:16:53.967 FLOG_MAX [6776]: Template '/home/oameye/coregrade/coregrade/email//start_losspass.mailfile' loaded: 1586 bytes -- 17:16:53.967 FLOG_MAX [6776]: Returning from FormFile() -- 17:16:53.967 FLOG_MAX [6776]: Template parsed: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 17:16:53.967 FLOG_MAX [6776]: ESMTP( 10.0.0.23, support@coregrade.com, tokslaw@chiefsoft.com ) -- 17:16:53.967 FLOG_MAX [6776]: Prepare body -- 17:16:53.967 FLOG_MAX [6776]: Locate & extract subject -- 17:16:53.967 FLOG_MAX [6776]: Found subject: CoreGrade - Password Reset for tokslaw@chiefsoft.com -- 17:16:53.967 FLOG_MAX [6776]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t tokslaw@chiefsoft.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'CoreGrade - Password Reset for tokslaw@chiefsoft.com ' -M ' - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
CoreGrade
-Dear Tokunbo -
-We have initiated your password reset process as requested as by you on 2020-04-12 17:16:53.964293: -
- - - - -
Click the linkhttps://oameye.works.coregrade.com/auth/passreset?rlink=c6fbeb96cd780cbe3c20775913d34d32
Link will expire
-
-
-If it was not at your request, then please contact CoreGrade support immediately. - -For further support go to our website at https://oameye.works.coregrade.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing CoreGrade. -CoreGrade Team. - -
-
- -
- - - - - - ' -- 17:16:53.989 FLOG_MAX [6776]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Password Reset for tokslaw@chiefsoft.com -From: CoreGrade Support -Date: Sun, 12 Apr 2020 17:16:53 -0400 -To: tokslaw@chiefsoft.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="pg4+rPhXerzXV/Lv" -Mime-version: 1.0 - - ---pg4+rPhXerzXV/Lv -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
CoreGrade
-Dear Tokunbo -
-We have initiated your password reset process as requested as by you on 2020-04-12 17:16:53.964293: -
- - - - -
Click the linkhttps://oameye.works.coregrade.com/auth/passreset?rlink=c6fbeb96cd780cbe3c20775913d34d32
Link will expire
-
-
-If it was not at your request, then please contact CoreGrade support immediately. - -For further support go to our website at https://oameye.works.coregrade.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing CoreGrade. -CoreGrade Team. - -
-
- -
- - - - - - - - ---pg4+rPhXerzXV/Lv-- - -[C] . -[S] 250 2.0.0 Ok: queued as F003D2114124 -[C] QUIT -[S] 221 2.0.0 Bye - -- 17:16:53.989 FLOG_MAX [6776]: - -END OF PIPE OUTPUT - - -- 17:16:53.989 FLOG_MAX [6776]: /ESMTP() -- 17:16:53.989 INFO [6776]: /member_email_calls() -- 17:16:53.989 INFO [6776]: RET: member_id=7 -- 17:16:53.989 INFO [6776]: RET: mode=100 -- 17:16:53.989 INFO [6776]: RET: reset_id=21 -- 17:16:53.989 INFO [6776]: RET: reset_key=YOU WILL GET THIS IF PIN IS CORRECT IN CONFIRM -- 17:16:53.989 INFO [6776]: RET: reset_seed=2020-04-12 17:16:53.959314-04 -- 17:16:53.989 INFO [6776]: RET: reset_seed==REMOVED -- 17:16:53.989 INFO [6776]: RET: result=YES I GET TO BACK END -- 17:16:53.991 INFO [6776]: COREGRADE is stopping... -- 17:16:53.991 DEBUG [6776]: Closing database connection -- 17:16:53.991 SQL [6776]: pgsql_close() -- 17:16:53.923 DEBUG [6776]: Database connection successful -- 17:16:53.923 INFO [6776]: _SERVER found -- 17:16:53.923 INFO [6776]: REMOTE_ADDR = 10.0.0.15 -- 17:16:53.923 INFO [6776]: SERVER_NAME = oameye.works.coregrade.com -- 17:16:53.923 INFO [6776]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3gme4ml3dd38t2v1813lvntvkvgonht0; _gat_gtag_UA_54829827_2=1 -- 17:16:53.923 INFO [6776]: QUERY_STRING = /auth/resetpass -- 17:16:53.923 INFO [6776]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:16:53.991 INFO [6776]: COREGRADE is stopping... -- 17:16:53.991 DEBUG [6776]: Closing database connection -- 17:16:53.991 SQL [6776]: pgsql_close() -- 17:17:49.676 INFO [6778]: COREGRADE is starting... -- 17:17:49.676 INFO [6778]: Version from config: 1.0 -- 17:17:49.676 DEBUG [6778]: Connecting to database... -- 17:17:49.676 DEBUG [6778]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:49.676 SQL [6778]: pgsql_db_connect() -- 17:17:49.713 INFO [6778]: COREGRADE is starting... -- 17:17:49.713 INFO [6778]: Version from config: 1.0 -- 17:17:49.713 DEBUG [6778]: Connecting to database... -- 17:17:49.713 DEBUG [6778]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:49.713 SQL [6778]: pgsql_db_connect() -- 17:17:49.717 DEBUG [6778]: Database connection successful -- 17:17:49.717 INFO [6778]: _SERVER found -- 17:17:49.717 INFO [6778]: REMOTE_ADDR = 10.0.0.15 -- 17:17:49.717 INFO [6778]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:49.717 INFO [6778]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3gme4ml3dd38t2v1813lvntvkvgonht0 -- 17:17:49.717 INFO [6778]: QUERY_STRING = rlink=4b288251b2fb501cc969ef5a668d5f63 -- 17:17:49.717 INFO [6778]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:17:49.717 INFO [6778]: SystemStatus()09-09-********~************ -- 17:17:49.718 INFO [6778]: long coregrade_api_main(CVars in, CVars &out) -- 17:17:49.718 INFO [6778]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 17:17:49.718 INFO [6778]: account calls -- 17:17:49.718 INFO [6778]: account_calls() -- 17:17:49.718 INFO [6778]: passwordReset() -- 17:17:49.718 INFO [6778]: confirmPassReset() -- 17:17:49.718 FLOG_MAX [6778]: REQ_STRING(reset_key) -- 17:17:49.718 FLOG_MAX [6778]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:17:49.718 SQL [6778]: pgsql_query() -- 17:17:49.718 SQL [6778]: About to run query: -- 17:17:49.718 SQL [6778]: SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='4b288251b2fb501cc969ef5a668d5f63' -- 17:17:49.721 SQL [6778]: Found rows: 0 -- 17:17:49.721 SQL [6778]: Found rows: 0 -- 17:17:49.721 INFO [6778]: RET: id= -- 17:17:49.721 INFO [6778]: RET: result=YES I GET TO BACK END -- 17:17:49.721 INFO [6778]: RET: status_advice=Contact support or Start all over -- 17:17:49.721 INFO [6778]: RET: status_message=Invalid PIN or disabled account -- 17:17:49.722 INFO [6778]: COREGRADE is stopping... -- 17:17:49.722 DEBUG [6778]: Closing database connection -- 17:17:49.722 SQL [6778]: pgsql_close() -- 17:17:49.681 DEBUG [6778]: Database connection successful -- 17:17:49.681 INFO [6778]: _SERVER found -- 17:17:49.681 INFO [6778]: REMOTE_ADDR = 10.0.0.15 -- 17:17:49.681 INFO [6778]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:49.681 INFO [6778]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3gme4ml3dd38t2v1813lvntvkvgonht0 -- 17:17:49.681 INFO [6778]: QUERY_STRING = /auth/passreset -- 17:17:49.681 INFO [6778]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:17:49.723 INFO [6778]: COREGRADE is stopping... -- 17:17:49.723 DEBUG [6778]: Closing database connection -- 17:17:49.723 SQL [6778]: pgsql_close() -- 17:17:50.424 INFO [6778]: COREGRADE is starting... -- 17:17:50.424 INFO [6778]: Version from config: 1.0 -- 17:17:50.424 DEBUG [6778]: Connecting to database... -- 17:17:50.424 DEBUG [6778]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:50.424 SQL [6778]: pgsql_db_connect() -- 17:17:50.428 DEBUG [6778]: Database connection successful -- 17:17:50.429 INFO [6778]: _SERVER found -- 17:17:50.429 INFO [6778]: REMOTE_ADDR = 10.0.0.15 -- 17:17:50.429 INFO [6778]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:50.429 INFO [6778]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3gme4ml3dd38t2v1813lvntvkvgonht0 -- 17:17:50.429 INFO [6778]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:17:50.429 INFO [6778]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:17:50.440 INFO [6778]: COREGRADE is stopping... -- 17:17:50.440 DEBUG [6778]: Closing database connection -- 17:17:50.440 SQL [6778]: pgsql_close() -- 17:18:22.479 INFO [6972]: COREGRADE is starting... -- 17:18:22.479 INFO [6972]: Version from config: 1.0 -- 17:18:22.479 DEBUG [6972]: Connecting to database... -- 17:18:22.479 DEBUG [6972]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:18:22.479 SQL [6972]: pgsql_db_connect() -- 17:18:22.518 INFO [6972]: COREGRADE is starting... -- 17:18:22.518 INFO [6972]: Version from config: 1.0 -- 17:18:22.518 DEBUG [6972]: Connecting to database... -- 17:18:22.518 DEBUG [6972]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:18:22.518 SQL [6972]: pgsql_db_connect() -- 17:18:22.522 DEBUG [6972]: Database connection successful -- 17:18:22.522 INFO [6972]: _SERVER found -- 17:18:22.522 INFO [6972]: REMOTE_ADDR = 10.0.0.15 -- 17:18:22.522 INFO [6972]: SERVER_NAME = oameye.works.coregrade.com -- 17:18:22.522 INFO [6972]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3gme4ml3dd38t2v1813lvntvkvgonht0 -- 17:18:22.522 INFO [6972]: QUERY_STRING = rlink=c6fbeb96cd780cbe3c20775913d34d32 -- 17:18:22.522 INFO [6972]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:18:22.522 INFO [6972]: SystemStatus()09-09-********~************ -- 17:18:22.522 INFO [6972]: long coregrade_api_main(CVars in, CVars &out) -- 17:18:22.522 INFO [6972]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 17:18:22.522 INFO [6972]: account calls -- 17:18:22.522 INFO [6972]: account_calls() -- 17:18:22.522 INFO [6972]: passwordReset() -- 17:18:22.522 INFO [6972]: confirmPassReset() -- 17:18:22.522 FLOG_MAX [6972]: REQ_STRING(reset_key) -- 17:18:22.522 FLOG_MAX [6972]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:18:22.522 SQL [6972]: pgsql_query() -- 17:18:22.522 SQL [6972]: About to run query: -- 17:18:22.522 SQL [6972]: SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='c6fbeb96cd780cbe3c20775913d34d32' -- 17:18:22.525 SQL [6972]: Found rows: 1 -- 17:18:22.525 FLOG_MAX [6972]: load_db_record(SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='c6fbeb96cd780cbe3c20775913d34d32' ) num_cols=10 -- 17:18:22.525 SQL [6972]: pgsql_query() -- 17:18:22.525 SQL [6972]: About to run query: -- 17:18:22.525 SQL [6972]: UPDATE password_reset SET status = 1 WHERE id =21 -- 17:18:22.526 SQL [6972]: Found rows: 0 -- 17:18:22.526 SQL [6972]: Found rows: 0 -- 17:18:22.526 INFO [6972]: RET: created=2020-04-12 17:16:53.964293 -- 17:18:22.526 INFO [6972]: RET: expired= -- 17:18:22.526 INFO [6972]: RET: id=21 -- 17:18:22.526 INFO [6972]: RET: loc=10.0.0.15 -- 17:18:22.526 INFO [6972]: RET: member_id=7 -- 17:18:22.526 INFO [6972]: RET: reset_id=21 -- 17:18:22.526 INFO [6972]: RET: reset_key=c6fbeb96cd780cbe3c20775913d34d32 -- 17:18:22.526 INFO [6972]: RET: reset_pin=14968 -- 17:18:22.526 INFO [6972]: RET: result=YES I GET TO BACK END -- 17:18:22.526 INFO [6972]: RET: status=0 -- 17:18:22.526 INFO [6972]: RET: username=tokslaw@chiefsoft.com -- 17:18:22.528 INFO [6972]: COREGRADE is stopping... -- 17:18:22.528 DEBUG [6972]: Closing database connection -- 17:18:22.528 SQL [6972]: pgsql_close() -- 17:18:22.483 DEBUG [6972]: Database connection successful -- 17:18:22.483 INFO [6972]: _SERVER found -- 17:18:22.483 INFO [6972]: REMOTE_ADDR = 10.0.0.15 -- 17:18:22.483 INFO [6972]: SERVER_NAME = oameye.works.coregrade.com -- 17:18:22.483 INFO [6972]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3gme4ml3dd38t2v1813lvntvkvgonht0 -- 17:18:22.483 INFO [6972]: QUERY_STRING = /auth/passreset -- 17:18:22.483 INFO [6972]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:18:22.528 INFO [6972]: COREGRADE is stopping... -- 17:18:22.528 DEBUG [6972]: Closing database connection -- 17:18:22.528 SQL [6972]: pgsql_close() -- 17:18:23.030 INFO [6972]: COREGRADE is starting... -- 17:18:23.031 INFO [6972]: Version from config: 1.0 -- 17:18:23.031 DEBUG [6972]: Connecting to database... -- 17:18:23.031 DEBUG [6972]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:18:23.031 SQL [6972]: pgsql_db_connect() -- 17:18:23.035 DEBUG [6972]: Database connection successful -- 17:18:23.035 INFO [6972]: _SERVER found -- 17:18:23.035 INFO [6972]: REMOTE_ADDR = 10.0.0.15 -- 17:18:23.035 INFO [6972]: SERVER_NAME = oameye.works.coregrade.com -- 17:18:23.035 INFO [6972]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3gme4ml3dd38t2v1813lvntvkvgonht0 -- 17:18:23.035 INFO [6972]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:18:23.035 INFO [6972]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:18:23.046 INFO [6972]: COREGRADE is stopping... -- 17:18:23.046 DEBUG [6972]: Closing database connection -- 17:18:23.046 SQL [6972]: pgsql_close() -- 17:18:59.892 INFO [6867]: COREGRADE is starting... -- 17:18:59.892 INFO [6867]: Version from config: 1.0 -- 17:18:59.892 DEBUG [6867]: Connecting to database... -- 17:18:59.892 DEBUG [6867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:18:59.892 SQL [6867]: pgsql_db_connect() -- 17:18:59.930 INFO [6867]: COREGRADE is starting... -- 17:18:59.930 INFO [6867]: Version from config: 1.0 -- 17:18:59.930 DEBUG [6867]: Connecting to database... -- 17:18:59.930 DEBUG [6867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:18:59.930 SQL [6867]: pgsql_db_connect() -- 17:18:59.934 DEBUG [6867]: Database connection successful -- 17:18:59.934 INFO [6867]: _SERVER found -- 17:18:59.934 INFO [6867]: REMOTE_ADDR = 10.0.0.15 -- 17:18:59.934 INFO [6867]: SERVER_NAME = oameye.works.coregrade.com -- 17:18:59.934 INFO [6867]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3gme4ml3dd38t2v1813lvntvkvgonht0 -- 17:18:59.934 INFO [6867]: QUERY_STRING = -- 17:18:59.934 INFO [6867]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:18:59.934 INFO [6867]: SystemStatus()09-09-********~************ -- 17:18:59.934 INFO [6867]: long coregrade_api_main(CVars in, CVars &out) -- 17:18:59.934 INFO [6867]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 17:18:59.934 INFO [6867]: account calls -- 17:18:59.934 INFO [6867]: account_calls() -- 17:18:59.934 INFO [6867]: passwordReset() -- 17:18:59.934 INFO [6867]: completePassReset() -- 17:18:59.934 FLOG_MAX [6867]: REQ_STRING(username) -- 17:18:59.935 FLOG_MAX [6867]: REQ_STRING(new_pass) -- 17:18:59.935 FLOG_MAX [6867]: REQ_STRING(reset_key) -- 17:18:59.935 FLOG_MAX [6867]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:18:59.935 SQL [6867]: pgsql_query() -- 17:18:59.935 SQL [6867]: About to run query: -- 17:18:59.935 SQL [6867]: SELECT *,id AS reset_id FROM password_reset WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND id='21' AND loc='10.0.0.15' AND reset_key='c6fbeb96cd780cbe3c20775913d34d32' -- 17:18:59.938 SQL [6867]: Found rows: 1 -- 17:18:59.938 FLOG_MAX [6867]: load_db_record(SELECT *,id AS reset_id FROM password_reset WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND id='21' AND loc='10.0.0.15' AND reset_key='c6fbeb96cd780cbe3c20775913d34d32') num_cols=10 -- 17:18:59.938 INFO [6867]: ERROR create hash using SCRYPT -- 17:18:59.938 INFO [6867]: RET: created=2020-04-12 17:16:53.964293 -- 17:18:59.938 INFO [6867]: RET: expired= -- 17:18:59.938 INFO [6867]: RET: id=21 -- 17:18:59.938 INFO [6867]: RET: loc=10.0.0.15 -- 17:18:59.938 INFO [6867]: RET: member_id=7 -- 17:18:59.938 INFO [6867]: RET: reset_id=21 -- 17:18:59.938 INFO [6867]: RET: reset_key=c6fbeb96cd780cbe3c20775913d34d32 -- 17:18:59.938 INFO [6867]: RET: reset_pin=14968 -- 17:18:59.938 INFO [6867]: RET: result=YES I GET TO BACK END -- 17:18:59.938 INFO [6867]: RET: status=1 -- 17:18:59.938 INFO [6867]: RET: username=tokslaw@chiefsoft.com -- 17:18:59.939 INFO [6867]: COREGRADE is stopping... -- 17:18:59.939 DEBUG [6867]: Closing database connection -- 17:18:59.940 SQL [6867]: pgsql_close() -- 17:18:59.897 DEBUG [6867]: Database connection successful -- 17:18:59.897 INFO [6867]: _SERVER found -- 17:18:59.897 INFO [6867]: REMOTE_ADDR = 10.0.0.15 -- 17:18:59.897 INFO [6867]: SERVER_NAME = oameye.works.coregrade.com -- 17:18:59.897 INFO [6867]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3gme4ml3dd38t2v1813lvntvkvgonht0 -- 17:18:59.897 INFO [6867]: QUERY_STRING = /auth/completereset -- 17:18:59.897 INFO [6867]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:18:59.940 INFO [6867]: COREGRADE is stopping... -- 17:18:59.940 DEBUG [6867]: Closing database connection -- 17:18:59.940 SQL [6867]: pgsql_close() -- 17:19:00.268 INFO [6867]: COREGRADE is starting... -- 17:19:00.269 INFO [6867]: Version from config: 1.0 -- 17:19:00.269 DEBUG [6867]: Connecting to database... -- 17:19:00.269 DEBUG [6867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:19:00.269 SQL [6867]: pgsql_db_connect() -- 17:19:00.273 DEBUG [6867]: Database connection successful -- 17:19:00.273 INFO [6867]: _SERVER found -- 17:19:00.273 INFO [6867]: REMOTE_ADDR = 10.0.0.15 -- 17:19:00.273 INFO [6867]: SERVER_NAME = oameye.works.coregrade.com -- 17:19:00.273 INFO [6867]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2tp7vovlc08vhout3imc4kosshrcvjb1 -- 17:19:00.273 INFO [6867]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:19:00.273 INFO [6867]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:19:00.284 INFO [6867]: COREGRADE is stopping... -- 17:19:00.284 DEBUG [6867]: Closing database connection -- 17:19:00.284 SQL [6867]: pgsql_close() -- 17:20:39.526 INFO [7194]: COREGRADE is starting... -- 17:20:39.527 INFO [7194]: Version from config: 1.0 -- 17:20:39.527 DEBUG [7194]: Connecting to database... -- 17:20:39.527 DEBUG [7194]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:39.527 SQL [7194]: pgsql_db_connect() -- 17:20:39.531 DEBUG [7194]: Database connection successful -- 17:20:39.531 INFO [7194]: _SERVER found -- 17:20:39.531 INFO [7194]: REMOTE_ADDR = 10.0.0.15 -- 17:20:39.531 INFO [7194]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:39.531 INFO [7194]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2tp7vovlc08vhout3imc4kosshrcvjb1 -- 17:20:39.531 INFO [7194]: QUERY_STRING = -- 17:20:39.531 INFO [7194]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:20:39.577 INFO [7194]: COREGRADE is stopping... -- 17:20:39.577 DEBUG [7194]: Closing database connection -- 17:20:39.577 SQL [7194]: pgsql_close() -- 17:20:39.967 INFO [7194]: COREGRADE is starting... -- 17:20:39.967 INFO [7194]: Version from config: 1.0 -- 17:20:39.967 DEBUG [7194]: Connecting to database... -- 17:20:39.967 DEBUG [7194]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:39.968 SQL [7194]: pgsql_db_connect() -- 17:20:39.972 DEBUG [7194]: Database connection successful -- 17:20:39.972 INFO [7194]: _SERVER found -- 17:20:39.972 INFO [7194]: REMOTE_ADDR = 10.0.0.15 -- 17:20:39.972 INFO [7194]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:39.972 INFO [7194]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2tp7vovlc08vhout3imc4kosshrcvjb1 -- 17:20:39.972 INFO [7194]: QUERY_STRING = /assets/img/footer_1.jpg -- 17:20:39.972 INFO [7194]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:20:39.984 INFO [7194]: COREGRADE is stopping... -- 17:20:39.984 DEBUG [7194]: Closing database connection -- 17:20:39.984 SQL [7194]: pgsql_close() -- 17:20:44.772 INFO [7198]: COREGRADE is starting... -- 17:20:44.773 INFO [7198]: Version from config: 1.0 -- 17:20:44.773 DEBUG [7198]: Connecting to database... -- 17:20:44.773 DEBUG [7198]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:44.773 SQL [7198]: pgsql_db_connect() -- 17:20:44.791 INFO [7196]: COREGRADE is starting... -- 17:20:44.792 INFO [7196]: Version from config: 1.0 -- 17:20:44.792 DEBUG [7196]: Connecting to database... -- 17:20:44.792 DEBUG [7196]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:44.792 SQL [7196]: pgsql_db_connect() -- 17:20:44.777 DEBUG [7198]: Database connection successful -- 17:20:44.777 INFO [7198]: _SERVER found -- 17:20:44.777 INFO [7198]: REMOTE_ADDR = 10.0.0.15 -- 17:20:44.777 INFO [7198]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:44.777 INFO [7198]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2tp7vovlc08vhout3imc4kosshrcvjb1; _gat_gtag_UA_54829827_2=1 -- 17:20:44.777 INFO [7198]: QUERY_STRING = /auth -- 17:20:44.777 INFO [7198]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:20:44.816 INFO [7198]: COREGRADE is stopping... -- 17:20:44.816 DEBUG [7198]: Closing database connection -- 17:20:44.816 SQL [7198]: pgsql_close() -- 17:20:44.796 DEBUG [7196]: Database connection successful -- 17:20:44.796 INFO [7196]: _SERVER found -- 17:20:44.796 INFO [7196]: REMOTE_ADDR = 10.0.0.15 -- 17:20:44.796 INFO [7196]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:44.796 INFO [7196]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2tp7vovlc08vhout3imc4kosshrcvjb1; _gat_gtag_UA_54829827_2=1 -- 17:20:44.796 INFO [7196]: QUERY_STRING = /welcome/viewLogin -- 17:20:44.796 INFO [7196]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:20:44.833 INFO [7196]: COREGRADE is stopping... -- 17:20:44.833 DEBUG [7196]: Closing database connection -- 17:20:44.833 SQL [7196]: pgsql_close() -- 17:20:45.162 INFO [7196]: COREGRADE is starting... -- 17:20:45.163 INFO [7196]: Version from config: 1.0 -- 17:20:45.163 DEBUG [7196]: Connecting to database... -- 17:20:45.163 DEBUG [7196]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:45.163 SQL [7196]: pgsql_db_connect() -- 17:20:45.167 DEBUG [7196]: Database connection successful -- 17:20:45.167 INFO [7196]: _SERVER found -- 17:20:45.167 INFO [7196]: REMOTE_ADDR = 10.0.0.15 -- 17:20:45.167 INFO [7196]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:45.167 INFO [7196]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2tp7vovlc08vhout3imc4kosshrcvjb1; _gat_gtag_UA_54829827_2=1 -- 17:20:45.167 INFO [7196]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:20:45.167 INFO [7196]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:20:45.179 INFO [7196]: COREGRADE is stopping... -- 17:20:45.179 DEBUG [7196]: Closing database connection -- 17:20:45.179 SQL [7196]: pgsql_close() -- 17:20:49.094 INFO [7196]: COREGRADE is starting... -- 17:20:49.094 INFO [7196]: Version from config: 1.0 -- 17:20:49.094 DEBUG [7196]: Connecting to database... -- 17:20:49.095 DEBUG [7196]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:49.095 SQL [7196]: pgsql_db_connect() -- 17:20:49.098 DEBUG [7196]: Database connection successful -- 17:20:49.098 INFO [7196]: _SERVER found -- 17:20:49.098 INFO [7196]: REMOTE_ADDR = 10.0.0.15 -- 17:20:49.098 INFO [7196]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:49.098 INFO [7196]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2tp7vovlc08vhout3imc4kosshrcvjb1; _gat_gtag_UA_54829827_2=1 -- 17:20:49.098 INFO [7196]: QUERY_STRING = /auth/resetpass -- 17:20:49.098 INFO [7196]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:20:49.133 INFO [7196]: COREGRADE is stopping... -- 17:20:49.134 DEBUG [7196]: Closing database connection -- 17:20:49.134 SQL [7196]: pgsql_close() -- 17:20:49.461 INFO [7196]: COREGRADE is starting... -- 17:20:49.461 INFO [7196]: Version from config: 1.0 -- 17:20:49.461 DEBUG [7196]: Connecting to database... -- 17:20:49.461 DEBUG [7196]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:49.461 SQL [7196]: pgsql_db_connect() -- 17:20:49.465 DEBUG [7196]: Database connection successful -- 17:20:49.465 INFO [7196]: _SERVER found -- 17:20:49.465 INFO [7196]: REMOTE_ADDR = 10.0.0.15 -- 17:20:49.465 INFO [7196]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:49.465 INFO [7196]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2tp7vovlc08vhout3imc4kosshrcvjb1; _gat_gtag_UA_54829827_2=1 -- 17:20:49.465 INFO [7196]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:20:49.465 INFO [7196]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:20:49.478 INFO [7196]: COREGRADE is stopping... -- 17:20:49.478 DEBUG [7196]: Closing database connection -- 17:20:49.478 SQL [7196]: pgsql_close() -- 17:20:56.792 INFO [7197]: COREGRADE is starting... -- 17:20:56.792 INFO [7197]: Version from config: 1.0 -- 17:20:56.792 DEBUG [7197]: Connecting to database... -- 17:20:56.792 DEBUG [7197]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:56.792 SQL [7197]: pgsql_db_connect() -- 17:20:56.833 INFO [7197]: COREGRADE is starting... -- 17:20:56.834 INFO [7197]: Version from config: 1.0 -- 17:20:56.834 DEBUG [7197]: Connecting to database... -- 17:20:56.834 DEBUG [7197]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:56.834 SQL [7197]: pgsql_db_connect() -- 17:20:56.838 DEBUG [7197]: Database connection successful -- 17:20:56.838 INFO [7197]: _SERVER found -- 17:20:56.838 INFO [7197]: REMOTE_ADDR = 10.0.0.15 -- 17:20:56.838 INFO [7197]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:56.838 INFO [7197]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2tp7vovlc08vhout3imc4kosshrcvjb1; _gat_gtag_UA_54829827_2=1 -- 17:20:56.838 INFO [7197]: QUERY_STRING = -- 17:20:56.838 INFO [7197]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:20:56.838 INFO [7197]: SystemStatus()09-09-********~************ -- 17:20:56.838 INFO [7197]: long coregrade_api_main(CVars in, CVars &out) -- 17:20:56.838 INFO [7197]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 17:20:56.838 INFO [7197]: account calls -- 17:20:56.838 INFO [7197]: account_calls() -- 17:20:56.838 INFO [7197]: passwordReset() -- 17:20:56.838 INFO [7197]: startPassReset() -- 17:20:56.838 FLOG_MAX [7197]: REQ_STRING(username) -- 17:20:56.838 FLOG_MAX [7197]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:20:56.838 SQL [7197]: pgsql_query() -- 17:20:56.838 SQL [7197]: About to run query: -- 17:20:56.838 SQL [7197]: SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') -- 17:20:56.840 SQL [7197]: Found rows: 1 -- 17:20:56.840 FLOG_MAX [7197]: load_db_record(SELECT id AS member_id,now() AS reset_seed FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') ) num_cols=2 -- 17:20:56.840 SQL [7197]: pgsql_exec() -- 17:20:56.840 SQL [7197]: About to run query: -- 17:20:56.840 SQL [7197]: UPDATE password_reset SET status=7 WHERE status NOT IN (3,5) AND member_id=7 -- 17:20:56.842 SQL [7197]: PQcmdTuples: 6 -- 17:20:56.842 SQL [7197]: Affected rows: 6 -- 17:20:56.842 FLOG_MAX [7197]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:20:56.842 SQL [7197]: pgsql_query() -- 17:20:56.842 SQL [7197]: About to run query: -- 17:20:56.842 SQL [7197]: SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 17:20:56.838429-04') AS reset_key -- 17:20:56.843 SQL [7197]: Found rows: 1 -- 17:20:56.843 FLOG_MAX [7197]: load_db_record(SELECT floor( random()*100000) AS reset_pin ,md5('2020-04-12 17:20:56.838429-04') AS reset_key) num_cols=2 -- 17:20:56.843 FLOG_MAX [7197]: insert_db_record() -- 17:20:56.843 SQL [7197]: pgsql_exec() -- 17:20:56.843 SQL [7197]: About to run query: -- 17:20:56.843 SQL [7197]: INSERT INTO password_reset (loc,member_id,reset_key,reset_pin,username) VALUES ('10.0.0.15','7','85f5f5a35de8469e0bdbcb3ca5a751b5','99912','tokslaw@chiefsoft.com') -- 17:20:56.844 SQL [7197]: PQcmdTuples: 1 -- 17:20:56.844 SQL [7197]: Affected rows: 1 -- 17:20:56.844 FLOG_MAX [7197]: SELECT currval('password_reset_id_seq') -- 17:20:56.844 SQL [7197]: pgsql_query() -- 17:20:56.844 SQL [7197]: About to run query: -- 17:20:56.844 SQL [7197]: SELECT currval('password_reset_id_seq') -- 17:20:56.844 SQL [7197]: Found rows: 1 -- 17:20:56.845 INFO [7197]: member_email_calls() -- 17:20:56.845 FLOG_MAX [7197]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:20:56.845 SQL [7197]: pgsql_query() -- 17:20:56.845 SQL [7197]: About to run query: -- 17:20:56.845 SQL [7197]: SELECT m.firstname,p.*,m.email AS member_email, created AS lost_added FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=22 -- 17:20:56.846 SQL [7197]: Found rows: 1 -- 17:20:56.846 FLOG_MAX [7197]: load_db_record(SELECT m.firstname,p.*,m.email AS member_email, created AS lost_added FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=22 ) num_cols=12 -- 17:20:56.846 FLOG_MAX [7197]: CGI Parsing: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 17:20:56.846 FLOG_MAX [7197]: Template '/home/oameye/coregrade/coregrade/email//start_losspass.mailfile' loaded: 1586 bytes -- 17:20:56.846 FLOG_MAX [7197]: Returning from FormFile() -- 17:20:56.846 FLOG_MAX [7197]: Template parsed: /home/oameye/coregrade/coregrade/email//start_losspass.mailfile -- 17:20:56.846 FLOG_MAX [7197]: ESMTP( 10.0.0.23, support@coregrade.com, tokslaw@chiefsoft.com ) -- 17:20:56.846 FLOG_MAX [7197]: Prepare body -- 17:20:56.846 FLOG_MAX [7197]: Locate & extract subject -- 17:20:56.846 FLOG_MAX [7197]: Found subject: CoreGrade - Password Reset for tokslaw@chiefsoft.com -- 17:20:56.846 FLOG_MAX [7197]: Calling MAILSEND: /home/oameye/coregrade/coregrade/email//../src/modules/mailsend -smtp 10.0.0.23 -f support@coregrade.com -t tokslaw@chiefsoft.com -d coregrade.com -name 'CoreGrade Support' +cc +bcc -v -port 25 -auth-plain -user support@coregrade.com -pass may12002! -sub 'CoreGrade - Password Reset for tokslaw@chiefsoft.com ' -M ' - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
CoreGrade
-Dear Tokunbo -
-We have initiated your password reset process as requested as by you on 2020-04-12 17:20:56.843676: -
- - - - -
Click the linkhttps://oameye.works.coregrade.com/auth/passreset?rlink=85f5f5a35de8469e0bdbcb3ca5a751b5
Link will expire
-
-
-If it was not at your request, then please contact CoreGrade support immediately. - -For further support go to our website at https://oameye.works.coregrade.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing CoreGrade. -CoreGrade Team. - -
-
- -
- - - - - - ' -- 17:20:56.901 FLOG_MAX [7197]: [S] 220 virtualmail.chiefsoft.com ESMTP Postfix -[C] EHLO coregrade.com -[S] 250-virtualmail.chiefsoft.com -[S] 250-PIPELINING -[S] 250-SIZE 204800000 -[S] 250-ETRN -[S] 250-STARTTLS -[S] 250-AUTH PLAIN LOGIN -[S] 250-AUTH=PLAIN LOGIN -[S] 250-ENHANCEDSTATUSCODES -[S] 250-8BITMIME -[S] 250 DSN -[C] AUTH PLAIN AHN1cHBvcnRAY29yZWdyYWRlLmNvbQBtYXkxMjAwMiE= -[S] 235 2.7.0 Authentication successful -PLAIN Authentication succeeded -[C] MAIL FROM: -[S] 250 2.1.0 Ok -[C] RCPT TO: -[S] 250 2.1.5 Ok -[C] DATA -[S] 354 End data with . -Subject: CoreGrade - Password Reset for tokslaw@chiefsoft.com -From: CoreGrade Support -Date: Sun, 12 Apr 2020 17:20:56 -0400 -To: tokslaw@chiefsoft.com -X-Mailer: @(#) mailsend v1.15b5 (Unix) -X-Copyright: GNU GPL. It is illegal to use this software for Spamming -Content-type: multipart/mixed; boundary="yeHca3NhkU0rBpVk" -Mime-version: 1.0 - - ---yeHca3NhkU0rBpVk -Content-Type: text/html; charset=us-ascii -Content-Disposition: inline - -[C] - - - -
-
-
-
-
-
-		
-							
-
-		
-							
-
-	
-							
-
-		
-							
-	         
-
-
CoreGrade
-Dear Tokunbo -
-We have initiated your password reset process as requested as by you on 2020-04-12 17:20:56.843676: -
- - - - -
Click the linkhttps://oameye.works.coregrade.com/auth/passreset?rlink=85f5f5a35de8469e0bdbcb3ca5a751b5
Link will expire
-
-
-If it was not at your request, then please contact CoreGrade support immediately. - -For further support go to our website at https://oameye.works.coregrade.com or call 08188697770 between the hours of 10:00 AM and 5:00 PM. -Thank you for choosing CoreGrade. -CoreGrade Team. - -
-
- -
- - - - - - - - ---yeHca3NhkU0rBpVk-- - -[C] . -[S] 250 2.0.0 Ok: queued as D80322114123 -[C] QUIT -[S] 221 2.0.0 Bye -U -- 17:20:56.901 FLOG_MAX [7197]: - -END OF PIPE OUTPUT - - -- 17:20:56.901 FLOG_MAX [7197]: /ESMTP() -- 17:20:56.901 INFO [7197]: /member_email_calls() -- 17:20:56.901 INFO [7197]: RET: member_id=7 -- 17:20:56.901 INFO [7197]: RET: mode=100 -- 17:20:56.901 INFO [7197]: RET: reset_id=22 -- 17:20:56.901 INFO [7197]: RET: reset_key=YOU WILL GET THIS IF PIN IS CORRECT IN CONFIRM -- 17:20:56.901 INFO [7197]: RET: reset_seed=2020-04-12 17:20:56.838429-04 -- 17:20:56.901 INFO [7197]: RET: reset_seed==REMOVED -- 17:20:56.901 INFO [7197]: RET: result=YES I GET TO BACK END -- 17:20:56.903 INFO [7197]: COREGRADE is stopping... -- 17:20:56.903 DEBUG [7197]: Closing database connection -- 17:20:56.903 SQL [7197]: pgsql_close() -- 17:20:56.796 DEBUG [7197]: Database connection successful -- 17:20:56.796 INFO [7197]: _SERVER found -- 17:20:56.796 INFO [7197]: REMOTE_ADDR = 10.0.0.15 -- 17:20:56.796 INFO [7197]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:56.796 INFO [7197]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2tp7vovlc08vhout3imc4kosshrcvjb1; _gat_gtag_UA_54829827_2=1 -- 17:20:56.796 INFO [7197]: QUERY_STRING = /auth/resetpass -- 17:20:56.796 INFO [7197]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:20:56.904 INFO [7197]: COREGRADE is stopping... -- 17:20:56.904 DEBUG [7197]: Closing database connection -- 17:20:56.904 SQL [7197]: pgsql_close() -- 17:21:52.339 INFO [7195]: COREGRADE is starting... -- 17:21:52.340 INFO [7195]: Version from config: 1.0 -- 17:21:52.340 DEBUG [7195]: Connecting to database... -- 17:21:52.340 DEBUG [7195]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:21:52.340 SQL [7195]: pgsql_db_connect() -- 17:21:52.381 INFO [7195]: COREGRADE is starting... -- 17:21:52.381 INFO [7195]: Version from config: 1.0 -- 17:21:52.381 DEBUG [7195]: Connecting to database... -- 17:21:52.381 DEBUG [7195]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:21:52.381 SQL [7195]: pgsql_db_connect() -- 17:21:52.385 DEBUG [7195]: Database connection successful -- 17:21:52.385 INFO [7195]: _SERVER found -- 17:21:52.385 INFO [7195]: REMOTE_ADDR = 10.0.0.15 -- 17:21:52.385 INFO [7195]: SERVER_NAME = oameye.works.coregrade.com -- 17:21:52.385 INFO [7195]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2tp7vovlc08vhout3imc4kosshrcvjb1 -- 17:21:52.385 INFO [7195]: QUERY_STRING = rlink=85f5f5a35de8469e0bdbcb3ca5a751b5 -- 17:21:52.385 INFO [7195]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:21:52.385 INFO [7195]: SystemStatus()09-09-********~************ -- 17:21:52.385 INFO [7195]: long coregrade_api_main(CVars in, CVars &out) -- 17:21:52.385 INFO [7195]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 17:21:52.385 INFO [7195]: account calls -- 17:21:52.385 INFO [7195]: account_calls() -- 17:21:52.385 INFO [7195]: passwordReset() -- 17:21:52.385 INFO [7195]: confirmPassReset() -- 17:21:52.385 FLOG_MAX [7195]: REQ_STRING(reset_key) -- 17:21:52.385 FLOG_MAX [7195]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:21:52.386 SQL [7195]: pgsql_query() -- 17:21:52.386 SQL [7195]: About to run query: -- 17:21:52.386 SQL [7195]: SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='85f5f5a35de8469e0bdbcb3ca5a751b5' -- 17:21:52.388 SQL [7195]: Found rows: 1 -- 17:21:52.388 FLOG_MAX [7195]: load_db_record(SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='85f5f5a35de8469e0bdbcb3ca5a751b5' ) num_cols=10 -- 17:21:52.388 SQL [7195]: pgsql_query() -- 17:21:52.388 SQL [7195]: About to run query: -- 17:21:52.388 SQL [7195]: UPDATE password_reset SET status = 1 WHERE id =22 -- 17:21:52.389 SQL [7195]: Found rows: 0 -- 17:21:52.389 SQL [7195]: Found rows: 0 -- 17:21:52.389 INFO [7195]: RET: created=2020-04-12 17:20:56.843676 -- 17:21:52.389 INFO [7195]: RET: expired= -- 17:21:52.389 INFO [7195]: RET: id=22 -- 17:21:52.389 INFO [7195]: RET: loc=10.0.0.15 -- 17:21:52.389 INFO [7195]: RET: member_id=7 -- 17:21:52.389 INFO [7195]: RET: reset_id=22 -- 17:21:52.389 INFO [7195]: RET: reset_key=85f5f5a35de8469e0bdbcb3ca5a751b5 -- 17:21:52.389 INFO [7195]: RET: reset_pin=99912 -- 17:21:52.389 INFO [7195]: RET: result=YES I GET TO BACK END -- 17:21:52.390 INFO [7195]: RET: status=0 -- 17:21:52.390 INFO [7195]: RET: username=tokslaw@chiefsoft.com -- 17:21:52.391 INFO [7195]: COREGRADE is stopping... -- 17:21:52.391 DEBUG [7195]: Closing database connection -- 17:21:52.391 SQL [7195]: pgsql_close() -- 17:21:52.344 DEBUG [7195]: Database connection successful -- 17:21:52.344 INFO [7195]: _SERVER found -- 17:21:52.344 INFO [7195]: REMOTE_ADDR = 10.0.0.15 -- 17:21:52.344 INFO [7195]: SERVER_NAME = oameye.works.coregrade.com -- 17:21:52.344 INFO [7195]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2tp7vovlc08vhout3imc4kosshrcvjb1 -- 17:21:52.344 INFO [7195]: QUERY_STRING = /auth/passreset -- 17:21:52.344 INFO [7195]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:21:52.392 INFO [7195]: COREGRADE is stopping... -- 17:21:52.392 DEBUG [7195]: Closing database connection -- 17:21:52.392 SQL [7195]: pgsql_close() -- 17:21:52.972 INFO [7195]: COREGRADE is starting... -- 17:21:52.973 INFO [7195]: Version from config: 1.0 -- 17:21:52.973 DEBUG [7195]: Connecting to database... -- 17:21:52.973 DEBUG [7195]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:21:52.973 SQL [7195]: pgsql_db_connect() -- 17:21:52.977 DEBUG [7195]: Database connection successful -- 17:21:52.977 INFO [7195]: _SERVER found -- 17:21:52.977 INFO [7195]: REMOTE_ADDR = 10.0.0.15 -- 17:21:52.977 INFO [7195]: SERVER_NAME = oameye.works.coregrade.com -- 17:21:52.977 INFO [7195]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2tp7vovlc08vhout3imc4kosshrcvjb1 -- 17:21:52.977 INFO [7195]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:21:52.977 INFO [7195]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:21:52.989 INFO [7195]: COREGRADE is stopping... -- 17:21:52.989 DEBUG [7195]: Closing database connection -- 17:21:52.990 SQL [7195]: pgsql_close() -- 17:22:21.210 INFO [7255]: COREGRADE is starting... -- 17:22:21.210 INFO [7255]: Version from config: 1.0 -- 17:22:21.210 DEBUG [7255]: Connecting to database... -- 17:22:21.211 DEBUG [7255]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:22:21.211 SQL [7255]: pgsql_db_connect() -- 17:22:21.253 INFO [7255]: COREGRADE is starting... -- 17:22:21.253 INFO [7255]: Version from config: 1.0 -- 17:22:21.253 DEBUG [7255]: Connecting to database... -- 17:22:21.253 DEBUG [7255]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:22:21.253 SQL [7255]: pgsql_db_connect() -- 17:22:21.257 DEBUG [7255]: Database connection successful -- 17:22:21.257 INFO [7255]: _SERVER found -- 17:22:21.257 INFO [7255]: REMOTE_ADDR = 10.0.0.15 -- 17:22:21.257 INFO [7255]: SERVER_NAME = oameye.works.coregrade.com -- 17:22:21.257 INFO [7255]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2tp7vovlc08vhout3imc4kosshrcvjb1 -- 17:22:21.257 INFO [7255]: QUERY_STRING = -- 17:22:21.257 INFO [7255]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:22:21.257 INFO [7255]: SystemStatus()09-09-********~************ -- 17:22:21.257 INFO [7255]: long coregrade_api_main(CVars in, CVars &out) -- 17:22:21.257 INFO [7255]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 17:22:21.257 INFO [7255]: account calls -- 17:22:21.257 INFO [7255]: account_calls() -- 17:22:21.257 INFO [7255]: passwordReset() -- 17:22:21.257 INFO [7255]: completePassReset() -- 17:22:21.257 FLOG_MAX [7255]: REQ_STRING(username) -- 17:22:21.257 FLOG_MAX [7255]: REQ_STRING(new_pass) -- 17:22:21.257 FLOG_MAX [7255]: REQ_STRING(reset_key) -- 17:22:21.257 FLOG_MAX [7255]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:22:21.257 SQL [7255]: pgsql_query() -- 17:22:21.257 SQL [7255]: About to run query: -- 17:22:21.257 SQL [7255]: SELECT *,id AS reset_id FROM password_reset WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND id='22' AND loc='10.0.0.15' AND reset_key='85f5f5a35de8469e0bdbcb3ca5a751b5' -- 17:22:21.260 SQL [7255]: Found rows: 1 -- 17:22:21.261 FLOG_MAX [7255]: load_db_record(SELECT *,id AS reset_id FROM password_reset WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND id='22' AND loc='10.0.0.15' AND reset_key='85f5f5a35de8469e0bdbcb3ca5a751b5') num_cols=10 -- 17:22:21.261 SQL [7255]: pgsql_query() -- 17:22:21.261 SQL [7255]: About to run query: -- 17:22:21.261 SQL [7255]: UPDATE members SET password=md5('12345678') WHERE id =7 -- 17:22:21.262 SQL [7255]: Found rows: 0 -- 17:22:21.262 SQL [7255]: Found rows: 0 -- 17:22:21.262 SQL [7255]: pgsql_query() -- 17:22:21.263 SQL [7255]: About to run query: -- 17:22:21.263 SQL [7255]: UPDATE password_reset SET status = 5,reset_key=NULL WHERE id =22 -- 17:22:21.263 SQL [7255]: Found rows: 0 -- 17:22:21.263 SQL [7255]: Found rows: 0 -- 17:22:21.263 INFO [7255]: member_email_calls() -- 17:22:21.264 FLOG_MAX [7255]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:22:21.264 SQL [7255]: pgsql_query() -- 17:22:21.264 SQL [7255]: About to run query: -- 17:22:21.264 SQL [7255]: SELECT m.firstname,p.*,m.email AS member_email, created AS lost_added FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=22 -- 17:22:21.264 SQL [7255]: Found rows: 1 -- 17:22:21.264 FLOG_MAX [7255]: load_db_record(SELECT m.firstname,p.*,m.email AS member_email, created AS lost_added FROM password_reset p LEFT JOIN members m ON m.id=p.member_id WHERE p.id=22 ) num_cols=12 -- 17:22:21.264 INFO [7255]: /member_email_calls() -- 17:22:21.265 INFO [7255]: RET: created=2020-04-12 17:20:56.843676 -- 17:22:21.265 INFO [7255]: RET: expired= -- 17:22:21.265 INFO [7255]: RET: id=22 -- 17:22:21.265 INFO [7255]: RET: loc=10.0.0.15 -- 17:22:21.265 INFO [7255]: RET: member_id=7 -- 17:22:21.265 INFO [7255]: RET: mode=300 -- 17:22:21.265 INFO [7255]: RET: reset_complete=22 -- 17:22:21.265 INFO [7255]: RET: reset_id=22 -- 17:22:21.265 INFO [7255]: RET: reset_key=YOU WILL GET THIS IF PIN IS CORRECT IN CONFIRM -- 17:22:21.265 INFO [7255]: RET: reset_pin=99912 -- 17:22:21.265 INFO [7255]: RET: result=YES I GET TO BACK END -- 17:22:21.265 INFO [7255]: RET: status=1 -- 17:22:21.265 INFO [7255]: RET: username=tokslaw@chiefsoft.com -- 17:22:21.266 INFO [7255]: COREGRADE is stopping... -- 17:22:21.266 DEBUG [7255]: Closing database connection -- 17:22:21.266 SQL [7255]: pgsql_close() -- 17:22:21.215 DEBUG [7255]: Database connection successful -- 17:22:21.215 INFO [7255]: _SERVER found -- 17:22:21.215 INFO [7255]: REMOTE_ADDR = 10.0.0.15 -- 17:22:21.215 INFO [7255]: SERVER_NAME = oameye.works.coregrade.com -- 17:22:21.215 INFO [7255]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2tp7vovlc08vhout3imc4kosshrcvjb1 -- 17:22:21.215 INFO [7255]: QUERY_STRING = /auth/completereset -- 17:22:21.215 INFO [7255]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:22:21.267 INFO [7255]: COREGRADE is stopping... -- 17:22:21.267 DEBUG [7255]: Closing database connection -- 17:22:21.267 SQL [7255]: pgsql_close() -- 17:22:21.567 INFO [7255]: COREGRADE is starting... -- 17:22:21.567 INFO [7255]: Version from config: 1.0 -- 17:22:21.567 DEBUG [7255]: Connecting to database... -- 17:22:21.568 DEBUG [7255]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:22:21.568 SQL [7255]: pgsql_db_connect() -- 17:22:21.572 DEBUG [7255]: Database connection successful -- 17:22:21.572 INFO [7255]: _SERVER found -- 17:22:21.572 INFO [7255]: REMOTE_ADDR = 10.0.0.15 -- 17:22:21.572 INFO [7255]: SERVER_NAME = oameye.works.coregrade.com -- 17:22:21.572 INFO [7255]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2tp7vovlc08vhout3imc4kosshrcvjb1 -- 17:22:21.572 INFO [7255]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:22:21.572 INFO [7255]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:22:21.584 INFO [7255]: COREGRADE is stopping... -- 17:22:21.584 DEBUG [7255]: Closing database connection -- 17:22:21.584 SQL [7255]: pgsql_close() -- 17:32:08.753 INFO [7261]: COREGRADE is starting... -- 17:32:08.753 INFO [7261]: Version from config: 1.0 -- 17:32:08.753 DEBUG [7261]: Connecting to database... -- 17:32:08.753 DEBUG [7261]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:32:08.753 SQL [7261]: pgsql_db_connect() -- 17:32:08.797 INFO [7261]: COREGRADE is starting... -- 17:32:08.797 INFO [7261]: Version from config: 1.0 -- 17:32:08.797 DEBUG [7261]: Connecting to database... -- 17:32:08.797 DEBUG [7261]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:32:08.797 SQL [7261]: pgsql_db_connect() -- 17:32:08.801 DEBUG [7261]: Database connection successful -- 17:32:08.801 INFO [7261]: _SERVER found -- 17:32:08.801 INFO [7261]: REMOTE_ADDR = 10.0.0.15 -- 17:32:08.801 INFO [7261]: SERVER_NAME = oameye.works.coregrade.com -- 17:32:08.802 INFO [7261]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2tp7vovlc08vhout3imc4kosshrcvjb1 -- 17:32:08.802 INFO [7261]: QUERY_STRING = -- 17:32:08.802 INFO [7261]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:32:08.802 INFO [7261]: SystemStatus()09-09-********~************ -- 17:32:08.802 INFO [7261]: long coregrade_api_main(CVars in, CVars &out) -- 17:32:08.802 INFO [7261]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 17:32:08.802 INFO [7261]: account calls -- 17:32:08.802 INFO [7261]: account_calls() -- 17:32:08.802 INFO [7261]: passwordReset() -- 17:32:08.802 INFO [7261]: completePassReset() -- 17:32:08.802 FLOG_MAX [7261]: REQ_STRING(username) -- 17:32:08.802 FLOG_MAX [7261]: REQ_STRING(new_pass) -- 17:32:08.802 FLOG_MAX [7261]: REQ_STRING(reset_key) -- 17:32:08.802 FLOG_MAX [7261]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:32:08.802 SQL [7261]: pgsql_query() -- 17:32:08.802 SQL [7261]: About to run query: -- 17:32:08.802 SQL [7261]: SELECT *,id AS reset_id FROM password_reset WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND id='22' AND loc='10.0.0.15' AND reset_key='85f5f5a35de8469e0bdbcb3ca5a751b5' -- 17:32:08.805 SQL [7261]: Found rows: 0 -- 17:32:08.805 SQL [7261]: Found rows: 0 -- 17:32:08.805 INFO [7261]: RET: reset_complete=0 -- 17:32:08.805 INFO [7261]: RET: reset_id= -- 17:32:08.805 INFO [7261]: RET: result=YES I GET TO BACK END -- 17:32:08.805 INFO [7261]: RET: status_advice=Contact Support -- 17:32:08.805 INFO [7261]: RET: status_message=Invalid call or disabled account -- 17:32:08.807 INFO [7261]: COREGRADE is stopping... -- 17:32:08.807 DEBUG [7261]: Closing database connection -- 17:32:08.807 SQL [7261]: pgsql_close() -- 17:32:08.758 DEBUG [7261]: Database connection successful -- 17:32:08.758 INFO [7261]: _SERVER found -- 17:32:08.758 INFO [7261]: REMOTE_ADDR = 10.0.0.15 -- 17:32:08.758 INFO [7261]: SERVER_NAME = oameye.works.coregrade.com -- 17:32:08.758 INFO [7261]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2tp7vovlc08vhout3imc4kosshrcvjb1 -- 17:32:08.758 INFO [7261]: QUERY_STRING = /auth/completereset -- 17:32:08.758 INFO [7261]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:32:08.807 INFO [7261]: COREGRADE is stopping... -- 17:32:08.807 DEBUG [7261]: Closing database connection -- 17:32:08.807 SQL [7261]: pgsql_close() -- 17:32:09.100 INFO [7261]: COREGRADE is starting... -- 17:32:09.101 INFO [7261]: Version from config: 1.0 -- 17:32:09.101 DEBUG [7261]: Connecting to database... -- 17:32:09.101 DEBUG [7261]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:32:09.101 SQL [7261]: pgsql_db_connect() -- 17:32:09.105 DEBUG [7261]: Database connection successful -- 17:32:09.105 INFO [7261]: _SERVER found -- 17:32:09.105 INFO [7261]: REMOTE_ADDR = 10.0.0.15 -- 17:32:09.105 INFO [7261]: SERVER_NAME = oameye.works.coregrade.com -- 17:32:09.105 INFO [7261]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3oqvnna48gc7g6r6g4uo4fr60tlnn5vm -- 17:32:09.105 INFO [7261]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:32:09.105 INFO [7261]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:32:09.117 INFO [7261]: COREGRADE is stopping... -- 17:32:09.117 DEBUG [7261]: Closing database connection -- 17:32:09.117 SQL [7261]: pgsql_close() -- 17:32:27.375 INFO [7446]: COREGRADE is starting... -- 17:32:27.376 INFO [7446]: Version from config: 1.0 -- 17:32:27.376 DEBUG [7446]: Connecting to database... -- 17:32:27.376 DEBUG [7446]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:32:27.376 SQL [7446]: pgsql_db_connect() -- 17:32:27.421 INFO [7446]: COREGRADE is starting... -- 17:32:27.421 INFO [7446]: Version from config: 1.0 -- 17:32:27.421 DEBUG [7446]: Connecting to database... -- 17:32:27.421 DEBUG [7446]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:32:27.421 SQL [7446]: pgsql_db_connect() -- 17:32:27.425 DEBUG [7446]: Database connection successful -- 17:32:27.425 INFO [7446]: _SERVER found -- 17:32:27.426 INFO [7446]: REMOTE_ADDR = 10.0.0.15 -- 17:32:27.426 INFO [7446]: SERVER_NAME = oameye.works.coregrade.com -- 17:32:27.426 INFO [7446]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3oqvnna48gc7g6r6g4uo4fr60tlnn5vm -- 17:32:27.426 INFO [7446]: QUERY_STRING = -- 17:32:27.426 INFO [7446]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:32:27.426 INFO [7446]: SystemStatus()09-09-********~************ -- 17:32:27.426 INFO [7446]: long coregrade_api_main(CVars in, CVars &out) -- 17:32:27.426 INFO [7446]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 17:32:27.426 INFO [7446]: account calls -- 17:32:27.426 INFO [7446]: account_calls() -- 17:32:27.426 INFO [7446]: passwordReset() -- 17:32:27.426 INFO [7446]: completePassReset() -- 17:32:27.426 FLOG_MAX [7446]: REQ_STRING(username) -- 17:32:27.426 FLOG_MAX [7446]: REQ_STRING(new_pass) -- 17:32:27.426 FLOG_MAX [7446]: REQ_STRING(reset_key) -- 17:32:27.426 FLOG_MAX [7446]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:32:27.426 SQL [7446]: pgsql_query() -- 17:32:27.426 SQL [7446]: About to run query: -- 17:32:27.426 SQL [7446]: SELECT *,id AS reset_id FROM password_reset WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND id='22' AND loc='10.0.0.15' AND reset_key='85f5f5a35de8469e0bdbcb3ca5a751b5' -- 17:32:27.429 SQL [7446]: Found rows: 0 -- 17:32:27.429 SQL [7446]: Found rows: 0 -- 17:32:27.429 INFO [7446]: RET: reset_complete=0 -- 17:32:27.429 INFO [7446]: RET: reset_id= -- 17:32:27.429 INFO [7446]: RET: result=YES I GET TO BACK END -- 17:32:27.429 INFO [7446]: RET: status_advice=Contact Support -- 17:32:27.429 INFO [7446]: RET: status_message=Invalid call or disabled account -- 17:32:27.431 INFO [7446]: COREGRADE is stopping... -- 17:32:27.431 DEBUG [7446]: Closing database connection -- 17:32:27.431 SQL [7446]: pgsql_close() -- 17:32:27.382 DEBUG [7446]: Database connection successful -- 17:32:27.382 INFO [7446]: _SERVER found -- 17:32:27.382 INFO [7446]: REMOTE_ADDR = 10.0.0.15 -- 17:32:27.382 INFO [7446]: SERVER_NAME = oameye.works.coregrade.com -- 17:32:27.382 INFO [7446]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3oqvnna48gc7g6r6g4uo4fr60tlnn5vm -- 17:32:27.382 INFO [7446]: QUERY_STRING = /auth/completereset -- 17:32:27.382 INFO [7446]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:32:27.431 INFO [7446]: COREGRADE is stopping... -- 17:32:27.431 DEBUG [7446]: Closing database connection -- 17:32:27.431 SQL [7446]: pgsql_close() -- 17:32:27.709 INFO [7446]: COREGRADE is starting... -- 17:32:27.709 INFO [7446]: Version from config: 1.0 -- 17:32:27.709 DEBUG [7446]: Connecting to database... -- 17:32:27.709 DEBUG [7446]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:32:27.709 SQL [7446]: pgsql_db_connect() -- 17:32:27.714 DEBUG [7446]: Database connection successful -- 17:32:27.714 INFO [7446]: _SERVER found -- 17:32:27.714 INFO [7446]: REMOTE_ADDR = 10.0.0.15 -- 17:32:27.714 INFO [7446]: SERVER_NAME = oameye.works.coregrade.com -- 17:32:27.714 INFO [7446]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3oqvnna48gc7g6r6g4uo4fr60tlnn5vm -- 17:32:27.714 INFO [7446]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:32:27.714 INFO [7446]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:32:27.727 INFO [7446]: COREGRADE is stopping... -- 17:32:27.727 DEBUG [7446]: Closing database connection -- 17:32:27.727 SQL [7446]: pgsql_close() -- 17:33:13.247 INFO [7447]: COREGRADE is starting... -- 17:33:13.247 INFO [7447]: Version from config: 1.0 -- 17:33:13.247 DEBUG [7447]: Connecting to database... -- 17:33:13.247 DEBUG [7447]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:13.247 SQL [7447]: pgsql_db_connect() -- 17:33:13.289 INFO [7447]: COREGRADE is starting... -- 17:33:13.289 INFO [7447]: Version from config: 1.0 -- 17:33:13.289 DEBUG [7447]: Connecting to database... -- 17:33:13.289 DEBUG [7447]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:13.289 SQL [7447]: pgsql_db_connect() -- 17:33:13.293 DEBUG [7447]: Database connection successful -- 17:33:13.293 INFO [7447]: _SERVER found -- 17:33:13.293 INFO [7447]: REMOTE_ADDR = 10.0.0.15 -- 17:33:13.293 INFO [7447]: SERVER_NAME = oameye.works.coregrade.com -- 17:33:13.293 INFO [7447]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3oqvnna48gc7g6r6g4uo4fr60tlnn5vm -- 17:33:13.293 INFO [7447]: QUERY_STRING = -- 17:33:13.293 INFO [7447]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:33:13.293 INFO [7447]: SystemStatus()09-09-********~************ -- 17:33:13.293 INFO [7447]: long coregrade_api_main(CVars in, CVars &out) -- 17:33:13.293 INFO [7447]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 17:33:13.293 INFO [7447]: account calls -- 17:33:13.293 INFO [7447]: account_calls() -- 17:33:13.293 INFO [7447]: passwordReset() -- 17:33:13.293 INFO [7447]: completePassReset() -- 17:33:13.293 FLOG_MAX [7447]: REQ_STRING(username) -- 17:33:13.293 FLOG_MAX [7447]: REQ_STRING(new_pass) -- 17:33:13.293 FLOG_MAX [7447]: REQ_STRING(reset_key) -- 17:33:13.293 FLOG_MAX [7447]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:33:13.293 SQL [7447]: pgsql_query() -- 17:33:13.293 SQL [7447]: About to run query: -- 17:33:13.293 SQL [7447]: SELECT *,id AS reset_id FROM password_reset WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND id='22' AND loc='10.0.0.15' AND reset_key='85f5f5a35de8469e0bdbcb3ca5a751b5' -- 17:33:13.296 SQL [7447]: Found rows: 0 -- 17:33:13.296 SQL [7447]: Found rows: 0 -- 17:33:13.296 INFO [7447]: RET: reset_complete=0 -- 17:33:13.296 INFO [7447]: RET: reset_id= -- 17:33:13.296 INFO [7447]: RET: result=YES I GET TO BACK END -- 17:33:13.296 INFO [7447]: RET: status_advice=Contact Support -- 17:33:13.296 INFO [7447]: RET: status_message=Invalid call or disabled account -- 17:33:13.298 INFO [7447]: COREGRADE is stopping... -- 17:33:13.298 DEBUG [7447]: Closing database connection -- 17:33:13.298 SQL [7447]: pgsql_close() -- 17:33:13.251 DEBUG [7447]: Database connection successful -- 17:33:13.251 INFO [7447]: _SERVER found -- 17:33:13.251 INFO [7447]: REMOTE_ADDR = 10.0.0.15 -- 17:33:13.251 INFO [7447]: SERVER_NAME = oameye.works.coregrade.com -- 17:33:13.251 INFO [7447]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3oqvnna48gc7g6r6g4uo4fr60tlnn5vm -- 17:33:13.251 INFO [7447]: QUERY_STRING = /auth/completereset -- 17:33:13.251 INFO [7447]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:33:13.298 INFO [7447]: COREGRADE is stopping... -- 17:33:13.298 DEBUG [7447]: Closing database connection -- 17:33:13.298 SQL [7447]: pgsql_close() -- 17:33:13.649 INFO [7450]: COREGRADE is starting... -- 17:33:13.649 INFO [7450]: Version from config: 1.0 -- 17:33:13.649 DEBUG [7450]: Connecting to database... -- 17:33:13.649 DEBUG [7450]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:13.649 SQL [7450]: pgsql_db_connect() -- 17:33:13.653 DEBUG [7450]: Database connection successful -- 17:33:13.653 INFO [7450]: _SERVER found -- 17:33:13.653 INFO [7450]: REMOTE_ADDR = 10.0.0.15 -- 17:33:13.653 INFO [7450]: SERVER_NAME = oameye.works.coregrade.com -- 17:33:13.653 INFO [7450]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3oqvnna48gc7g6r6g4uo4fr60tlnn5vm -- 17:33:13.653 INFO [7450]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:33:13.653 INFO [7450]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:33:13.668 INFO [7450]: COREGRADE is stopping... -- 17:33:13.668 DEBUG [7450]: Closing database connection -- 17:33:13.668 SQL [7450]: pgsql_close() -- 17:33:43.424 INFO [7449]: COREGRADE is starting... -- 17:33:43.424 INFO [7449]: Version from config: 1.0 -- 17:33:43.424 DEBUG [7449]: Connecting to database... -- 17:33:43.424 DEBUG [7449]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:43.424 SQL [7449]: pgsql_db_connect() -- 17:33:43.428 DEBUG [7449]: Database connection successful -- 17:33:43.428 INFO [7449]: _SERVER found -- 17:33:43.428 INFO [7449]: REMOTE_ADDR = 10.0.0.15 -- 17:33:43.428 INFO [7449]: SERVER_NAME = oameye.works.coregrade.com -- 17:33:43.428 INFO [7449]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3oqvnna48gc7g6r6g4uo4fr60tlnn5vm -- 17:33:43.428 INFO [7449]: QUERY_STRING = -- 17:33:43.428 INFO [7449]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:33:43.473 INFO [7449]: COREGRADE is stopping... -- 17:33:43.473 DEBUG [7449]: Closing database connection -- 17:33:43.473 SQL [7449]: pgsql_close() -- 17:33:43.882 INFO [7449]: COREGRADE is starting... -- 17:33:43.882 INFO [7449]: Version from config: 1.0 -- 17:33:43.882 DEBUG [7449]: Connecting to database... -- 17:33:43.882 DEBUG [7449]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:43.882 SQL [7449]: pgsql_db_connect() -- 17:33:43.886 DEBUG [7449]: Database connection successful -- 17:33:43.886 INFO [7449]: _SERVER found -- 17:33:43.886 INFO [7449]: REMOTE_ADDR = 10.0.0.15 -- 17:33:43.886 INFO [7449]: SERVER_NAME = oameye.works.coregrade.com -- 17:33:43.886 INFO [7449]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3oqvnna48gc7g6r6g4uo4fr60tlnn5vm -- 17:33:43.886 INFO [7449]: QUERY_STRING = /assets/img/footer_1.jpg -- 17:33:43.886 INFO [7449]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:33:43.898 INFO [7449]: COREGRADE is stopping... -- 17:33:43.898 DEBUG [7449]: Closing database connection -- 17:33:43.898 SQL [7449]: pgsql_close() -- 17:33:46.850 INFO [7449]: COREGRADE is starting... -- 17:33:46.850 INFO [7449]: Version from config: 1.0 -- 17:33:46.850 DEBUG [7449]: Connecting to database... -- 17:33:46.850 DEBUG [7449]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:46.850 SQL [7449]: pgsql_db_connect() -- 17:33:46.854 DEBUG [7449]: Database connection successful -- 17:33:46.854 INFO [7449]: _SERVER found -- 17:33:46.854 INFO [7449]: REMOTE_ADDR = 10.0.0.15 -- 17:33:46.854 INFO [7449]: SERVER_NAME = oameye.works.coregrade.com -- 17:33:46.854 INFO [7449]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3oqvnna48gc7g6r6g4uo4fr60tlnn5vm; _gat_gtag_UA_54829827_2=1 -- 17:33:46.854 INFO [7449]: QUERY_STRING = /welcome/viewLogin -- 17:33:46.854 INFO [7449]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:33:46.887 INFO [7449]: COREGRADE is stopping... -- 17:33:46.887 DEBUG [7449]: Closing database connection -- 17:33:46.887 SQL [7449]: pgsql_close() -- 17:33:46.895 INFO [7449]: COREGRADE is starting... -- 17:33:46.896 INFO [7449]: Version from config: 1.0 -- 17:33:46.896 DEBUG [7449]: Connecting to database... -- 17:33:46.896 DEBUG [7449]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:46.896 SQL [7449]: pgsql_db_connect() -- 17:33:46.924 INFO [7448]: COREGRADE is starting... -- 17:33:46.924 INFO [7448]: Version from config: 1.0 -- 17:33:46.924 DEBUG [7448]: Connecting to database... -- 17:33:46.924 DEBUG [7448]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:46.924 SQL [7448]: pgsql_db_connect() -- 17:33:46.900 DEBUG [7449]: Database connection successful -- 17:33:46.900 INFO [7449]: _SERVER found -- 17:33:46.900 INFO [7449]: REMOTE_ADDR = 10.0.0.15 -- 17:33:46.900 INFO [7449]: SERVER_NAME = oameye.works.coregrade.com -- 17:33:46.900 INFO [7449]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3oqvnna48gc7g6r6g4uo4fr60tlnn5vm; _gat_gtag_UA_54829827_2=1 -- 17:33:46.900 INFO [7449]: QUERY_STRING = /auth -- 17:33:46.900 INFO [7449]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:33:46.934 INFO [7449]: COREGRADE is stopping... -- 17:33:46.935 DEBUG [7449]: Closing database connection -- 17:33:46.935 SQL [7449]: pgsql_close() -- 17:33:46.928 DEBUG [7448]: Database connection successful -- 17:33:46.928 INFO [7448]: _SERVER found -- 17:33:46.928 INFO [7448]: REMOTE_ADDR = 10.0.0.15 -- 17:33:46.928 INFO [7448]: SERVER_NAME = oameye.works.coregrade.com -- 17:33:46.928 INFO [7448]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3oqvnna48gc7g6r6g4uo4fr60tlnn5vm; _gat_gtag_UA_54829827_2=1 -- 17:33:46.928 INFO [7448]: QUERY_STRING = /auth/index -- 17:33:46.928 INFO [7448]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:33:46.967 INFO [7448]: COREGRADE is stopping... -- 17:33:46.967 DEBUG [7448]: Closing database connection -- 17:33:46.967 SQL [7448]: pgsql_close() -- 17:33:47.293 INFO [7448]: COREGRADE is starting... -- 17:33:47.294 INFO [7448]: Version from config: 1.0 -- 17:33:47.294 DEBUG [7448]: Connecting to database... -- 17:33:47.294 DEBUG [7448]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:47.294 SQL [7448]: pgsql_db_connect() -- 17:33:47.298 DEBUG [7448]: Database connection successful -- 17:33:47.298 INFO [7448]: _SERVER found -- 17:33:47.298 INFO [7448]: REMOTE_ADDR = 10.0.0.15 -- 17:33:47.298 INFO [7448]: SERVER_NAME = oameye.works.coregrade.com -- 17:33:47.298 INFO [7448]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3oqvnna48gc7g6r6g4uo4fr60tlnn5vm; _gat_gtag_UA_54829827_2=1 -- 17:33:47.298 INFO [7448]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:33:47.298 INFO [7448]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:33:47.310 INFO [7448]: COREGRADE is stopping... -- 17:33:47.310 DEBUG [7448]: Closing database connection -- 17:33:47.310 SQL [7448]: pgsql_close() -- 17:33:53.725 INFO [7506]: COREGRADE is starting... -- 17:33:53.725 INFO [7506]: Version from config: 1.0 -- 17:33:53.725 DEBUG [7506]: Connecting to database... -- 17:33:53.725 DEBUG [7506]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:53.725 SQL [7506]: pgsql_db_connect() -- 17:33:53.767 INFO [7506]: COREGRADE is starting... -- 17:33:53.767 INFO [7506]: Version from config: 1.0 -- 17:33:53.767 DEBUG [7506]: Connecting to database... -- 17:33:53.767 DEBUG [7506]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:53.767 SQL [7506]: pgsql_db_connect() -- 17:33:53.771 DEBUG [7506]: Database connection successful -- 17:33:53.771 INFO [7506]: _SERVER found -- 17:33:53.771 INFO [7506]: REMOTE_ADDR = 10.0.0.15 -- 17:33:53.771 INFO [7506]: SERVER_NAME = oameye.works.coregrade.com -- 17:33:53.771 INFO [7506]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3oqvnna48gc7g6r6g4uo4fr60tlnn5vm; _gat_gtag_UA_54829827_2=1 -- 17:33:53.771 INFO [7506]: QUERY_STRING = -- 17:33:53.771 INFO [7506]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:33:53.771 INFO [7506]: SystemStatus()09-09-********~************ -- 17:33:53.771 INFO [7506]: long coregrade_api_main(CVars in, CVars &out) -- 17:33:53.771 INFO [7506]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 17:33:53.771 INFO [7506]: account calls -- 17:33:53.771 INFO [7506]: account_calls() -- 17:33:53.771 INFO [7506]: LoginCoreGradeAccount() -- 17:33:53.771 FLOG_MAX [7506]: REQ_STRING(username) -- 17:33:53.771 FLOG_MAX [7506]: REQ_STRING(password) -- 17:33:53.771 FLOG_MAX [7506]: REQ_STRING(sessionid) -- 17:33:53.771 FLOG_MAX [7506]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:33:53.771 SQL [7506]: pgsql_query() -- 17:33:53.772 SQL [7506]: About to run query: -- 17:33:53.772 SQL [7506]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678') -- 17:33:53.775 SQL [7506]: Found rows: 1 -- 17:33:53.775 FLOG_MAX [7506]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678')) num_cols=16 -- 17:33:53.775 INFO [7506]: long SessionCheck(long uid, const char *sessionid, int create ) -- 17:33:53.775 SQL [7506]: pgsql_exec() -- 17:33:53.775 SQL [7506]: About to run query: -- 17:33:53.775 SQL [7506]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 17:33:53.777 SQL [7506]: PQcmdTuples: 1 -- 17:33:53.777 SQL [7506]: Affected rows: 1 -- 17:33:53.777 SQL [7506]: pgsql_exec() -- 17:33:53.777 SQL [7506]: About to run query: -- 17:33:53.777 SQL [7506]: DELETE FROM members_session WHERE member_id=7 -- 17:33:53.777 SQL [7506]: PQcmdTuples: 0 -- 17:33:53.777 SQL [7506]: Affected rows: 0 -- 17:33:53.777 SQL [7506]: pgsql_query() -- 17:33:53.777 SQL [7506]: About to run query: -- 17:33:53.777 SQL [7506]: SELECT * FROM members_session WHERE member_id=7 AND session<>'26F57158B338AAEB6712904237F6545E' -- 17:33:53.778 SQL [7506]: Found rows: 0 -- 17:33:53.778 SQL [7506]: Found rows: 0 -- 17:33:53.778 FLOG_MAX [7506]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:33:53.778 SQL [7506]: pgsql_query() -- 17:33:53.778 SQL [7506]: About to run query: -- 17:33:53.778 SQL [7506]: SELECT * FROM members_session WHERE member_id=7 AND session='26F57158B338AAEB6712904237F6545E' -- 17:33:53.779 SQL [7506]: Found rows: 0 -- 17:33:53.779 SQL [7506]: Found rows: 0 -- 17:33:53.779 FLOG_MAX [7506]: insert_db_record() -- 17:33:53.779 SQL [7506]: pgsql_exec() -- 17:33:53.779 SQL [7506]: About to run query: -- 17:33:53.779 SQL [7506]: INSERT INTO members_session (member_id,session) VALUES ('7','26F57158B338AAEB6712904237F6545E') -- 17:33:53.780 SQL [7506]: PQcmdTuples: 1 -- 17:33:53.780 SQL [7506]: Affected rows: 1 -- 17:33:53.780 FLOG_MAX [7506]: SELECT currval('members_session_id_seq') -- 17:33:53.780 SQL [7506]: pgsql_query() -- 17:33:53.780 SQL [7506]: About to run query: -- 17:33:53.780 SQL [7506]: SELECT currval('members_session_id_seq') -- 17:33:53.781 SQL [7506]: Found rows: 1 -- 17:33:53.781 INFO [7506]: CreateDefaultPage() -- 17:33:53.781 FLOG_MAX [7506]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:33:53.781 SQL [7506]: pgsql_query() -- 17:33:53.781 SQL [7506]: About to run query: -- 17:33:53.781 SQL [7506]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 17:33:53.781 SQL [7506]: Found rows: 1 -- 17:33:53.781 FLOG_MAX [7506]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 17:33:53.781 SQL [7506]: pgsql_query() -- 17:33:53.781 SQL [7506]: About to run query: -- 17:33:53.781 SQL [7506]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 17:33:53.782 SQL [7506]: Found rows: 1 -- 17:33:53.782 INFO [7506]: /CreateDefaultPage() -- 17:33:53.782 INFO [7506]: /LoginCoreGradeAccount() -- 17:33:53.782 INFO [7506]: RET: added=2020-02-05 09:42:12.816064 -- 17:33:53.782 INFO [7506]: RET: email=tokslaw@chiefsoft.com -- 17:33:53.782 INFO [7506]: RET: firstname=Tokunbo -- 17:33:53.782 INFO [7506]: RET: folder=5D06B187B1E2285A63AD1D0ECB670D98 -- 17:33:53.782 INFO [7506]: RET: id=7 -- 17:33:53.782 INFO [7506]: RET: last_login= -- 17:33:53.782 INFO [7506]: RET: lastname=Lawal -- 17:33:53.782 INFO [7506]: RET: loc=192.168.1.13 -- 17:33:53.782 INFO [7506]: RET: member_id=7 -- 17:33:53.782 INFO [7506]: RET: password=25d55ad283aa400af464c76d713c07ad -- 17:33:53.782 INFO [7506]: RET: phone= -- 17:33:53.782 INFO [7506]: RET: pid= -- 17:33:53.782 INFO [7506]: RET: result=YES I GET TO BACK END -- 17:33:53.782 INFO [7506]: RET: sessionid=26F57158B338AAEB6712904237F6545E -- 17:33:53.782 INFO [7506]: RET: status=1 -- 17:33:53.782 INFO [7506]: RET: stauts=OK -- 17:33:53.782 INFO [7506]: RET: username=tokslaw@chiefsoft.com -- 17:33:53.782 INFO [7506]: RET: verified= -- 17:33:53.783 INFO [7506]: COREGRADE is stopping... -- 17:33:53.783 DEBUG [7506]: Closing database connection -- 17:33:53.783 SQL [7506]: pgsql_close() -- 17:33:53.729 DEBUG [7506]: Database connection successful -- 17:33:53.729 INFO [7506]: _SERVER found -- 17:33:53.729 INFO [7506]: REMOTE_ADDR = 10.0.0.15 -- 17:33:53.729 INFO [7506]: SERVER_NAME = oameye.works.coregrade.com -- 17:33:53.729 INFO [7506]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3oqvnna48gc7g6r6g4uo4fr60tlnn5vm; _gat_gtag_UA_54829827_2=1 -- 17:33:53.729 INFO [7506]: QUERY_STRING = /auth -- 17:33:53.729 INFO [7506]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:33:53.784 INFO [7506]: COREGRADE is stopping... -- 17:33:53.784 DEBUG [7506]: Closing database connection -- 17:33:53.784 SQL [7506]: pgsql_close() -- 17:33:53.818 INFO [7506]: COREGRADE is starting... -- 17:33:53.818 INFO [7506]: Version from config: 1.0 -- 17:33:53.818 DEBUG [7506]: Connecting to database... -- 17:33:53.818 DEBUG [7506]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:53.818 SQL [7506]: pgsql_db_connect() -- 17:33:53.822 DEBUG [7506]: Database connection successful -- 17:33:53.822 INFO [7506]: _SERVER found -- 17:33:53.822 INFO [7506]: REMOTE_ADDR = 10.0.0.15 -- 17:33:53.822 INFO [7506]: SERVER_NAME = oameye.works.coregrade.com -- 17:33:53.822 INFO [7506]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3oqvnna48gc7g6r6g4uo4fr60tlnn5vm; _gat_gtag_UA_54829827_2=1 -- 17:33:53.822 INFO [7506]: QUERY_STRING = /member/index -- 17:33:53.822 INFO [7506]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:33:53.866 INFO [7506]: COREGRADE is stopping... -- 17:33:53.867 DEBUG [7506]: Closing database connection -- 17:33:53.867 SQL [7506]: pgsql_close() -- 17:33:54.532 INFO [7506]: COREGRADE is starting... -- 17:33:54.532 INFO [7506]: Version from config: 1.0 -- 17:33:54.532 DEBUG [7506]: Connecting to database... -- 17:33:54.532 DEBUG [7506]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:33:54.532 SQL [7506]: pgsql_db_connect() -- 17:33:54.536 DEBUG [7506]: Database connection successful -- 17:33:54.536 INFO [7506]: _SERVER found -- 17:33:54.536 INFO [7506]: REMOTE_ADDR = 10.0.0.15 -- 17:33:54.536 INFO [7506]: SERVER_NAME = oameye.works.coregrade.com -- 17:33:54.536 INFO [7506]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3oqvnna48gc7g6r6g4uo4fr60tlnn5vm; _gat_gtag_UA_54829827_2=1 -- 17:33:54.536 INFO [7506]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:33:54.536 INFO [7506]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:33:54.549 INFO [7506]: COREGRADE is stopping... -- 17:33:54.549 DEBUG [7506]: Closing database connection -- 17:33:54.549 SQL [7506]: pgsql_close() -- 17:37:39.023 INFO [7446]: COREGRADE is starting... -- 17:37:39.024 INFO [7446]: Version from config: 1.0 -- 17:37:39.024 DEBUG [7446]: Connecting to database... -- 17:37:39.024 DEBUG [7446]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:39.024 SQL [7446]: pgsql_db_connect() -- 17:37:39.028 DEBUG [7446]: Database connection successful -- 17:37:39.028 INFO [7446]: _SERVER found -- 17:37:39.028 INFO [7446]: REMOTE_ADDR = 10.0.0.15 -- 17:37:39.028 INFO [7446]: SERVER_NAME = works.coregrade.com -- 17:37:39.028 INFO [7446]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275 -- 17:37:39.028 INFO [7446]: QUERY_STRING = -- 17:37:39.028 INFO [7446]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:37:39.070 INFO [7446]: COREGRADE is stopping... -- 17:37:39.070 DEBUG [7446]: Closing database connection -- 17:37:39.070 SQL [7446]: pgsql_close() -- 17:37:39.789 INFO [7447]: COREGRADE is starting... -- 17:37:39.790 INFO [7447]: Version from config: 1.0 -- 17:37:39.790 DEBUG [7447]: Connecting to database... -- 17:37:39.790 DEBUG [7447]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:39.790 SQL [7447]: pgsql_db_connect() -- 17:37:39.792 INFO [7514]: COREGRADE is starting... -- 17:37:39.793 INFO [7514]: Version from config: 1.0 -- 17:37:39.793 DEBUG [7514]: Connecting to database... -- 17:37:39.793 DEBUG [7514]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:39.793 SQL [7514]: pgsql_db_connect() -- 17:37:39.794 DEBUG [7447]: Database connection successful -- 17:37:39.794 INFO [7447]: _SERVER found -- 17:37:39.794 INFO [7447]: REMOTE_ADDR = 10.0.0.15 -- 17:37:39.794 INFO [7447]: SERVER_NAME = works.coregrade.com -- 17:37:39.794 INFO [7447]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2n5jlu8r5qlki81pdicntqvmm4kborhc; _gat_gtag_UA_54829827_2=1 -- 17:37:39.794 INFO [7447]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 17:37:39.794 INFO [7447]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:37:39.807 INFO [7447]: COREGRADE is stopping... -- 17:37:39.807 DEBUG [7447]: Closing database connection -- 17:37:39.807 SQL [7447]: pgsql_close() -- 17:37:39.797 DEBUG [7514]: Database connection successful -- 17:37:39.797 INFO [7514]: _SERVER found -- 17:37:39.797 INFO [7514]: REMOTE_ADDR = 10.0.0.15 -- 17:37:39.797 INFO [7514]: SERVER_NAME = works.coregrade.com -- 17:37:39.797 INFO [7514]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2n5jlu8r5qlki81pdicntqvmm4kborhc; _gat_gtag_UA_54829827_2=1 -- 17:37:39.797 INFO [7514]: QUERY_STRING = /assets/img/footer_1.jpg -- 17:37:39.797 INFO [7514]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:37:39.812 INFO [7514]: COREGRADE is stopping... -- 17:37:39.812 DEBUG [7514]: Closing database connection -- 17:37:39.812 SQL [7514]: pgsql_close() -- 17:37:48.960 INFO [7449]: COREGRADE is starting... -- 17:37:48.960 INFO [7449]: Version from config: 1.0 -- 17:37:48.960 DEBUG [7449]: Connecting to database... -- 17:37:48.960 DEBUG [7449]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:48.960 SQL [7449]: pgsql_db_connect() -- 17:37:48.965 DEBUG [7449]: Database connection successful -- 17:37:48.965 INFO [7449]: _SERVER found -- 17:37:48.965 INFO [7449]: REMOTE_ADDR = 10.0.0.15 -- 17:37:48.965 INFO [7449]: SERVER_NAME = works.coregrade.com -- 17:37:48.965 INFO [7449]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2n5jlu8r5qlki81pdicntqvmm4kborhc; _gat_gtag_UA_54829827_2=1 -- 17:37:48.965 INFO [7449]: QUERY_STRING = -- 17:37:48.965 INFO [7449]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:37:49.000 INFO [7449]: COREGRADE is stopping... -- 17:37:49.000 DEBUG [7449]: Closing database connection -- 17:37:49.000 SQL [7449]: pgsql_close() -- 17:37:49.638 INFO [15446]: COREGRADE is starting... -- 17:37:49.638 INFO [15446]: Version from config: 1.0 -- 17:37:49.638 DEBUG [15446]: Connecting to database... -- 17:37:49.638 DEBUG [15446]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:49.638 SQL [15446]: pgsql_db_connect() -- 17:37:49.644 INFO [7506]: COREGRADE is starting... -- 17:37:49.644 INFO [7506]: Version from config: 1.0 -- 17:37:49.644 DEBUG [7506]: Connecting to database... -- 17:37:49.644 DEBUG [7506]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:49.644 SQL [7506]: pgsql_db_connect() -- 17:37:49.643 DEBUG [15446]: Database connection successful -- 17:37:49.644 INFO [15446]: _SERVER found -- 17:37:49.644 INFO [15446]: REMOTE_ADDR = 10.0.0.15 -- 17:37:49.644 INFO [15446]: SERVER_NAME = works.coregrade.com -- 17:37:49.644 INFO [15446]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2n5jlu8r5qlki81pdicntqvmm4kborhc; _gat_gtag_UA_54829827_2=1 -- 17:37:49.644 INFO [15446]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 17:37:49.644 INFO [15446]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:37:49.659 INFO [15446]: COREGRADE is stopping... -- 17:37:49.659 DEBUG [15446]: Closing database connection -- 17:37:49.659 SQL [15446]: pgsql_close() -- 17:37:49.649 DEBUG [7506]: Database connection successful -- 17:37:49.649 INFO [7506]: _SERVER found -- 17:37:49.649 INFO [7506]: REMOTE_ADDR = 10.0.0.15 -- 17:37:49.649 INFO [7506]: SERVER_NAME = works.coregrade.com -- 17:37:49.649 INFO [7506]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2n5jlu8r5qlki81pdicntqvmm4kborhc; _gat_gtag_UA_54829827_2=1 -- 17:37:49.649 INFO [7506]: QUERY_STRING = /assets/img/footer_1.jpg -- 17:37:49.649 INFO [7506]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:37:49.662 INFO [7506]: COREGRADE is stopping... -- 17:37:49.662 DEBUG [7506]: Closing database connection -- 17:37:49.662 SQL [7506]: pgsql_close() -- 17:37:52.771 INFO [7506]: COREGRADE is starting... -- 17:37:52.771 INFO [7506]: Version from config: 1.0 -- 17:37:52.771 DEBUG [7506]: Connecting to database... -- 17:37:52.771 DEBUG [7506]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:52.771 SQL [7506]: pgsql_db_connect() -- 17:37:52.775 DEBUG [7506]: Database connection successful -- 17:37:52.775 INFO [7506]: _SERVER found -- 17:37:52.775 INFO [7506]: REMOTE_ADDR = 10.0.0.15 -- 17:37:52.775 INFO [7506]: SERVER_NAME = works.coregrade.com -- 17:37:52.775 INFO [7506]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2n5jlu8r5qlki81pdicntqvmm4kborhc; _gat_gtag_UA_54829827_2=1 -- 17:37:52.775 INFO [7506]: QUERY_STRING = -- 17:37:52.775 INFO [7506]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:37:52.815 INFO [7506]: COREGRADE is stopping... -- 17:37:52.815 DEBUG [7506]: Closing database connection -- 17:37:52.815 SQL [7506]: pgsql_close() -- 17:37:53.373 INFO [7448]: COREGRADE is starting... -- 17:37:53.374 INFO [7448]: Version from config: 1.0 -- 17:37:53.374 DEBUG [7448]: Connecting to database... -- 17:37:53.374 DEBUG [7448]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:53.374 SQL [7448]: pgsql_db_connect() -- 17:37:53.375 INFO [15446]: COREGRADE is starting... -- 17:37:53.375 INFO [15446]: Version from config: 1.0 -- 17:37:53.375 DEBUG [15446]: Connecting to database... -- 17:37:53.375 DEBUG [15446]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:53.375 SQL [15446]: pgsql_db_connect() -- 17:37:53.379 DEBUG [15446]: Database connection successful -- 17:37:53.379 INFO [15446]: _SERVER found -- 17:37:53.379 INFO [15446]: REMOTE_ADDR = 10.0.0.15 -- 17:37:53.379 INFO [15446]: SERVER_NAME = works.coregrade.com -- 17:37:53.379 INFO [15446]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2n5jlu8r5qlki81pdicntqvmm4kborhc; _gat_gtag_UA_54829827_2=1 -- 17:37:53.379 INFO [15446]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 17:37:53.379 INFO [15446]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:37:53.392 INFO [15446]: COREGRADE is stopping... -- 17:37:53.392 DEBUG [15446]: Closing database connection -- 17:37:53.392 SQL [15446]: pgsql_close() -- 17:37:53.380 DEBUG [7448]: Database connection successful -- 17:37:53.380 INFO [7448]: _SERVER found -- 17:37:53.380 INFO [7448]: REMOTE_ADDR = 10.0.0.15 -- 17:37:53.380 INFO [7448]: SERVER_NAME = works.coregrade.com -- 17:37:53.380 INFO [7448]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2n5jlu8r5qlki81pdicntqvmm4kborhc; _gat_gtag_UA_54829827_2=1 -- 17:37:53.380 INFO [7448]: QUERY_STRING = /assets/img/footer_1.jpg -- 17:37:53.380 INFO [7448]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:37:53.393 INFO [7448]: COREGRADE is stopping... -- 17:37:53.393 DEBUG [7448]: Closing database connection -- 17:37:53.393 SQL [7448]: pgsql_close() -- 17:38:19.264 INFO [7450]: COREGRADE is starting... -- 17:38:19.264 INFO [7450]: Version from config: 1.0 -- 17:38:19.264 DEBUG [7450]: Connecting to database... -- 17:38:19.264 DEBUG [7450]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:19.265 SQL [7450]: pgsql_db_connect() -- 17:38:19.269 DEBUG [7450]: Database connection successful -- 17:38:19.269 INFO [7450]: _SERVER found -- 17:38:19.269 INFO [7450]: REMOTE_ADDR = 10.0.0.15 -- 17:38:19.269 INFO [7450]: SERVER_NAME = works.coregrade.com -- 17:38:19.269 INFO [7450]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2n5jlu8r5qlki81pdicntqvmm4kborhc; _gat_gtag_UA_54829827_2=1 -- 17:38:19.269 INFO [7450]: QUERY_STRING = -- 17:38:19.269 INFO [7450]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:38:19.311 INFO [7450]: COREGRADE is stopping... -- 17:38:19.311 DEBUG [7450]: Closing database connection -- 17:38:19.311 SQL [7450]: pgsql_close() -- 17:38:19.817 INFO [15571]: COREGRADE is starting... -- 17:38:19.818 INFO [15571]: Version from config: 1.0 -- 17:38:19.818 DEBUG [15571]: Connecting to database... -- 17:38:19.818 DEBUG [15571]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:19.818 SQL [15571]: pgsql_db_connect() -- 17:38:19.822 DEBUG [15571]: Database connection successful -- 17:38:19.822 INFO [15571]: _SERVER found -- 17:38:19.822 INFO [15571]: REMOTE_ADDR = 10.0.0.15 -- 17:38:19.822 INFO [15571]: SERVER_NAME = works.coregrade.com -- 17:38:19.822 INFO [15571]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2n5jlu8r5qlki81pdicntqvmm4kborhc; _gat_gtag_UA_54829827_2=1 -- 17:38:19.822 INFO [15571]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 17:38:19.822 INFO [15571]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:38:19.837 INFO [15571]: COREGRADE is stopping... -- 17:38:19.837 DEBUG [15571]: Closing database connection -- 17:38:19.837 SQL [15571]: pgsql_close() -- 17:38:19.868 INFO [15571]: COREGRADE is starting... -- 17:38:19.869 INFO [15571]: Version from config: 1.0 -- 17:38:19.869 DEBUG [15571]: Connecting to database... -- 17:38:19.869 DEBUG [15571]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:19.869 SQL [15571]: pgsql_db_connect() -- 17:38:19.874 DEBUG [15571]: Database connection successful -- 17:38:19.874 INFO [15571]: _SERVER found -- 17:38:19.874 INFO [15571]: REMOTE_ADDR = 10.0.0.15 -- 17:38:19.874 INFO [15571]: SERVER_NAME = works.coregrade.com -- 17:38:19.874 INFO [15571]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2n5jlu8r5qlki81pdicntqvmm4kborhc; _gat_gtag_UA_54829827_2=1 -- 17:38:19.874 INFO [15571]: QUERY_STRING = /assets/img/footer_1.jpg -- 17:38:19.874 INFO [15571]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:38:19.886 INFO [15571]: COREGRADE is stopping... -- 17:38:19.886 DEBUG [15571]: Closing database connection -- 17:38:19.886 SQL [15571]: pgsql_close() -- 17:38:25.342 INFO [7449]: COREGRADE is starting... -- 17:38:25.343 INFO [7449]: Version from config: 1.0 -- 17:38:25.343 DEBUG [7449]: Connecting to database... -- 17:38:25.343 DEBUG [7449]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:25.343 SQL [7449]: pgsql_db_connect() -- 17:38:25.347 DEBUG [7449]: Database connection successful -- 17:38:25.347 INFO [7449]: _SERVER found -- 17:38:25.347 INFO [7449]: REMOTE_ADDR = 10.0.0.15 -- 17:38:25.347 INFO [7449]: SERVER_NAME = works.coregrade.com -- 17:38:25.347 INFO [7449]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2n5jlu8r5qlki81pdicntqvmm4kborhc; _gat_gtag_UA_54829827_2=1 -- 17:38:25.347 INFO [7449]: QUERY_STRING = -- 17:38:25.347 INFO [7449]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:38:25.379 INFO [7449]: COREGRADE is stopping... -- 17:38:25.379 DEBUG [7449]: Closing database connection -- 17:38:25.379 SQL [7449]: pgsql_close() -- 17:38:25.819 INFO [15499]: COREGRADE is starting... -- 17:38:25.819 INFO [15499]: Version from config: 1.0 -- 17:38:25.819 DEBUG [15499]: Connecting to database... -- 17:38:25.819 DEBUG [15499]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:25.819 SQL [15499]: pgsql_db_connect() -- 17:38:25.823 DEBUG [15499]: Database connection successful -- 17:38:25.823 INFO [15499]: _SERVER found -- 17:38:25.823 INFO [15499]: REMOTE_ADDR = 10.0.0.15 -- 17:38:25.823 INFO [15499]: SERVER_NAME = works.coregrade.com -- 17:38:25.823 INFO [15499]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2n5jlu8r5qlki81pdicntqvmm4kborhc; _gat_gtag_UA_54829827_2=1 -- 17:38:25.823 INFO [15499]: QUERY_STRING = -- 17:38:25.823 INFO [15499]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:38:25.866 INFO [15499]: COREGRADE is stopping... -- 17:38:25.866 DEBUG [15499]: Closing database connection -- 17:38:25.866 SQL [15499]: pgsql_close() -- 17:38:26.528 INFO [7449]: COREGRADE is starting... -- 17:38:26.528 INFO [7449]: Version from config: 1.0 -- 17:38:26.528 DEBUG [7449]: Connecting to database... -- 17:38:26.528 DEBUG [7449]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:26.528 SQL [7449]: pgsql_db_connect() -- 17:38:26.532 DEBUG [7449]: Database connection successful -- 17:38:26.532 INFO [7449]: _SERVER found -- 17:38:26.532 INFO [7449]: REMOTE_ADDR = 10.0.0.15 -- 17:38:26.532 INFO [7449]: SERVER_NAME = works.coregrade.com -- 17:38:26.532 INFO [7449]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2n5jlu8r5qlki81pdicntqvmm4kborhc; _gat_gtag_UA_54829827_2=1 -- 17:38:26.532 INFO [7449]: QUERY_STRING = -- 17:38:26.533 INFO [7449]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:38:26.564 INFO [7449]: COREGRADE is stopping... -- 17:38:26.564 DEBUG [7449]: Closing database connection -- 17:38:26.564 SQL [7449]: pgsql_close() -- 17:38:26.974 INFO [7449]: COREGRADE is starting... -- 17:38:26.975 INFO [7449]: Version from config: 1.0 -- 17:38:26.975 DEBUG [7449]: Connecting to database... -- 17:38:26.975 DEBUG [7449]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:26.975 SQL [7449]: pgsql_db_connect() -- 17:38:26.980 DEBUG [7449]: Database connection successful -- 17:38:26.980 INFO [7449]: _SERVER found -- 17:38:26.980 INFO [7449]: REMOTE_ADDR = 10.0.0.15 -- 17:38:26.980 INFO [7449]: SERVER_NAME = works.coregrade.com -- 17:38:26.980 INFO [7449]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2n5jlu8r5qlki81pdicntqvmm4kborhc; _gat_gtag_UA_54829827_2=1 -- 17:38:26.980 INFO [7449]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 17:38:26.980 INFO [7449]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:38:26.991 INFO [7449]: COREGRADE is stopping... -- 17:38:26.991 DEBUG [7449]: Closing database connection -- 17:38:26.991 SQL [7449]: pgsql_close() -- 17:38:27.097 INFO [15499]: COREGRADE is starting... -- 17:38:27.097 INFO [15499]: Version from config: 1.0 -- 17:38:27.097 DEBUG [15499]: Connecting to database... -- 17:38:27.097 DEBUG [15499]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:27.097 SQL [15499]: pgsql_db_connect() -- 17:38:27.102 DEBUG [15499]: Database connection successful -- 17:38:27.102 INFO [15499]: _SERVER found -- 17:38:27.102 INFO [15499]: REMOTE_ADDR = 10.0.0.15 -- 17:38:27.102 INFO [15499]: SERVER_NAME = works.coregrade.com -- 17:38:27.102 INFO [15499]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2n5jlu8r5qlki81pdicntqvmm4kborhc; _gat_gtag_UA_54829827_2=1 -- 17:38:27.102 INFO [15499]: QUERY_STRING = /assets/img/footer_1.jpg -- 17:38:27.102 INFO [15499]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:38:27.114 INFO [15499]: COREGRADE is stopping... -- 17:38:27.114 DEBUG [15499]: Closing database connection -- 17:38:27.114 SQL [15499]: pgsql_close() -- 17:38:32.361 INFO [15446]: COREGRADE is starting... -- 17:38:32.362 INFO [15446]: Version from config: 1.0 -- 17:38:32.362 DEBUG [15446]: Connecting to database... -- 17:38:32.362 DEBUG [15446]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:32.362 SQL [15446]: pgsql_db_connect() -- 17:38:32.366 DEBUG [15446]: Database connection successful -- 17:38:32.366 INFO [15446]: _SERVER found -- 17:38:32.366 INFO [15446]: REMOTE_ADDR = 10.0.0.15 -- 17:38:32.366 INFO [15446]: SERVER_NAME = works.coregrade.com -- 17:38:32.366 INFO [15446]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845 -- 17:38:32.366 INFO [15446]: QUERY_STRING = -- 17:38:32.366 INFO [15446]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:38:32.407 INFO [15446]: COREGRADE is stopping... -- 17:38:32.407 DEBUG [15446]: Closing database connection -- 17:38:32.407 SQL [15446]: pgsql_close() -- 17:38:32.761 INFO [15446]: COREGRADE is starting... -- 17:38:32.761 INFO [15446]: Version from config: 1.0 -- 17:38:32.761 DEBUG [15446]: Connecting to database... -- 17:38:32.761 DEBUG [15446]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:32.761 SQL [15446]: pgsql_db_connect() -- 17:38:32.766 DEBUG [15446]: Database connection successful -- 17:38:32.766 INFO [15446]: _SERVER found -- 17:38:32.766 INFO [15446]: REMOTE_ADDR = 10.0.0.15 -- 17:38:32.766 INFO [15446]: SERVER_NAME = works.coregrade.com -- 17:38:32.766 INFO [15446]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=2jukl5c9vhe9brp1ec62a9ktskbuq6ic -- 17:38:32.766 INFO [15446]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 17:38:32.766 INFO [15446]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:38:32.777 INFO [15446]: COREGRADE is stopping... -- 17:38:32.777 DEBUG [15446]: Closing database connection -- 17:38:32.777 SQL [15446]: pgsql_close() -- 17:38:32.791 INFO [15446]: COREGRADE is starting... -- 17:38:32.791 INFO [15446]: Version from config: 1.0 -- 17:38:32.791 DEBUG [15446]: Connecting to database... -- 17:38:32.791 DEBUG [15446]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:32.791 SQL [15446]: pgsql_db_connect() -- 17:38:32.795 DEBUG [15446]: Database connection successful -- 17:38:32.795 INFO [15446]: _SERVER found -- 17:38:32.795 INFO [15446]: REMOTE_ADDR = 10.0.0.15 -- 17:38:32.795 INFO [15446]: SERVER_NAME = works.coregrade.com -- 17:38:32.795 INFO [15446]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=2jukl5c9vhe9brp1ec62a9ktskbuq6ic -- 17:38:32.795 INFO [15446]: QUERY_STRING = /assets/img/footer_1.jpg -- 17:38:32.795 INFO [15446]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:38:32.807 INFO [15446]: COREGRADE is stopping... -- 17:38:32.807 DEBUG [15446]: Closing database connection -- 17:38:32.807 SQL [15446]: pgsql_close() -- 17:39:13.339 INFO [15922]: COREGRADE is starting... -- 17:39:13.339 INFO [15922]: Version from config: 1.0 -- 17:39:13.339 DEBUG [15922]: Connecting to database... -- 17:39:13.339 DEBUG [15922]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:39:13.339 SQL [15922]: pgsql_db_connect() -- 17:39:13.343 DEBUG [15922]: Database connection successful -- 17:39:13.343 INFO [15922]: _SERVER found -- 17:39:13.343 INFO [15922]: REMOTE_ADDR = 10.0.0.15 -- 17:39:13.343 INFO [15922]: SERVER_NAME = oameye.works.coregrade.com -- 17:39:13.343 INFO [15922]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=s48o9ktm9r25h2734mfs23n2mk4matae -- 17:39:13.343 INFO [15922]: QUERY_STRING = -- 17:39:13.343 INFO [15922]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 17:39:13.386 INFO [15922]: COREGRADE is stopping... -- 17:39:13.386 DEBUG [15922]: Closing database connection -- 17:39:13.386 SQL [15922]: pgsql_close() -- 17:39:13.589 INFO [15922]: COREGRADE is starting... -- 17:39:13.590 INFO [15922]: Version from config: 1.0 -- 17:39:13.590 DEBUG [15922]: Connecting to database... -- 17:39:13.590 DEBUG [15922]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:39:13.590 SQL [15922]: pgsql_db_connect() -- 17:39:13.594 DEBUG [15922]: Database connection successful -- 17:39:13.594 INFO [15922]: _SERVER found -- 17:39:13.594 INFO [15922]: REMOTE_ADDR = 10.0.0.15 -- 17:39:13.594 INFO [15922]: SERVER_NAME = oameye.works.coregrade.com -- 17:39:13.594 INFO [15922]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=ulm0otervvk65ln4qbvlhsmq4s7r5njt -- 17:39:13.594 INFO [15922]: QUERY_STRING = /assets/img/footer_1.jpg -- 17:39:13.594 INFO [15922]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 17:39:13.606 INFO [15922]: COREGRADE is stopping... -- 17:39:13.606 DEBUG [15922]: Closing database connection -- 17:39:13.606 SQL [15922]: pgsql_close() -- 17:39:24.073 INFO [15906]: COREGRADE is starting... -- 17:39:24.073 INFO [15906]: Version from config: 1.0 -- 17:39:24.074 DEBUG [15906]: Connecting to database... -- 17:39:24.074 DEBUG [15906]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:39:24.074 SQL [15906]: pgsql_db_connect() -- 17:39:24.078 DEBUG [15906]: Database connection successful -- 17:39:24.078 INFO [15906]: _SERVER found -- 17:39:24.078 INFO [15906]: REMOTE_ADDR = 10.0.0.15 -- 17:39:24.078 INFO [15906]: SERVER_NAME = oameye.works.coregrade.com -- 17:39:24.078 INFO [15906]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=ulm0otervvk65ln4qbvlhsmq4s7r5njt; _gat_gtag_UA_54829827_2=1 -- 17:39:24.078 INFO [15906]: QUERY_STRING = /home/terms -- 17:39:24.078 INFO [15906]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 17:39:24.115 INFO [15906]: COREGRADE is stopping... -- 17:39:24.115 DEBUG [15906]: Closing database connection -- 17:39:24.115 SQL [15906]: pgsql_close() -- 17:39:24.295 INFO [15906]: COREGRADE is starting... -- 17:39:24.295 INFO [15906]: Version from config: 1.0 -- 17:39:24.295 DEBUG [15906]: Connecting to database... -- 17:39:24.295 DEBUG [15906]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:39:24.295 SQL [15906]: pgsql_db_connect() -- 17:39:24.299 DEBUG [15906]: Database connection successful -- 17:39:24.299 INFO [15906]: _SERVER found -- 17:39:24.299 INFO [15906]: REMOTE_ADDR = 10.0.0.15 -- 17:39:24.299 INFO [15906]: SERVER_NAME = oameye.works.coregrade.com -- 17:39:24.299 INFO [15906]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=ulm0otervvk65ln4qbvlhsmq4s7r5njt; _gat_gtag_UA_54829827_2=1 -- 17:39:24.299 INFO [15906]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:39:24.299 INFO [15906]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 17:39:24.311 INFO [15906]: COREGRADE is stopping... -- 17:39:24.311 DEBUG [15906]: Closing database connection -- 17:39:24.311 SQL [15906]: pgsql_close() -- 17:40:06.165 INFO [15922]: COREGRADE is starting... -- 17:40:06.165 INFO [15922]: Version from config: 1.0 -- 17:40:06.165 DEBUG [15922]: Connecting to database... -- 17:40:06.165 DEBUG [15922]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:40:06.165 SQL [15922]: pgsql_db_connect() -- 17:40:06.169 DEBUG [15922]: Database connection successful -- 17:40:06.169 INFO [15922]: _SERVER found -- 17:40:06.169 INFO [15922]: REMOTE_ADDR = 10.0.0.15 -- 17:40:06.169 INFO [15922]: SERVER_NAME = oameye.works.coregrade.com -- 17:40:06.169 INFO [15922]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=3oqvnna48gc7g6r6g4uo4fr60tlnn5vm -- 17:40:06.169 INFO [15922]: QUERY_STRING = -- 17:40:06.169 INFO [15922]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:40:06.204 INFO [15922]: COREGRADE is stopping... -- 17:40:06.204 DEBUG [15922]: Closing database connection -- 17:40:06.204 SQL [15922]: pgsql_close() -- 17:40:06.297 INFO [15922]: COREGRADE is starting... -- 17:40:06.298 INFO [15922]: Version from config: 1.0 -- 17:40:06.298 DEBUG [15922]: Connecting to database... -- 17:40:06.298 DEBUG [15922]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:40:06.298 SQL [15922]: pgsql_db_connect() -- 17:40:06.301 DEBUG [15922]: Database connection successful -- 17:40:06.301 INFO [15922]: _SERVER found -- 17:40:06.302 INFO [15922]: REMOTE_ADDR = 10.0.0.15 -- 17:40:06.302 INFO [15922]: SERVER_NAME = oameye.works.coregrade.com -- 17:40:06.302 INFO [15922]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=15h5n4jh531je1pt89aobh8no6bpe11a -- 17:40:06.302 INFO [15922]: QUERY_STRING = -- 17:40:06.302 INFO [15922]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:40:06.335 INFO [15922]: COREGRADE is stopping... -- 17:40:06.335 DEBUG [15922]: Closing database connection -- 17:40:06.335 SQL [15922]: pgsql_close() -- 17:40:06.914 INFO [15922]: COREGRADE is starting... -- 17:40:06.914 INFO [15922]: Version from config: 1.0 -- 17:40:06.914 DEBUG [15922]: Connecting to database... -- 17:40:06.914 DEBUG [15922]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:40:06.914 SQL [15922]: pgsql_db_connect() -- 17:40:06.919 DEBUG [15922]: Database connection successful -- 17:40:06.919 INFO [15922]: _SERVER found -- 17:40:06.919 INFO [15922]: REMOTE_ADDR = 10.0.0.15 -- 17:40:06.919 INFO [15922]: SERVER_NAME = oameye.works.coregrade.com -- 17:40:06.919 INFO [15922]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=15h5n4jh531je1pt89aobh8no6bpe11a -- 17:40:06.919 INFO [15922]: QUERY_STRING = /assets/img/footer_1.jpg -- 17:40:06.919 INFO [15922]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:40:06.930 INFO [15922]: COREGRADE is stopping... -- 17:40:06.931 DEBUG [15922]: Closing database connection -- 17:40:06.931 SQL [15922]: pgsql_close() -- 18:04:02.824 INFO [12651]: COREGRADE is starting... -- 18:04:02.825 INFO [12651]: Version from config: 1.0 -- 18:04:02.825 DEBUG [12651]: Connecting to database... -- 18:04:02.825 DEBUG [12651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:04:02.825 SQL [12651]: pgsql_db_connect() -- 18:04:02.830 DEBUG [12651]: Database connection successful -- 18:04:02.830 INFO [12651]: _SERVER found -- 18:04:02.830 INFO [12651]: REMOTE_ADDR = 10.0.0.15 -- 18:04:02.830 INFO [12651]: SERVER_NAME = works.coregrade.com -- 18:04:02.830 INFO [12651]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=2n5jlu8r5qlki81pdicntqvmm4kborhc -- 18:04:02.830 INFO [12651]: QUERY_STRING = -- 18:04:02.830 INFO [12651]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:04:02.877 INFO [12651]: COREGRADE is stopping... -- 18:04:02.877 DEBUG [12651]: Closing database connection -- 18:04:02.877 SQL [12651]: pgsql_close() -- 18:04:03.885 INFO [12651]: COREGRADE is starting... -- 18:04:03.885 INFO [12651]: Version from config: 1.0 -- 18:04:03.885 DEBUG [12651]: Connecting to database... -- 18:04:03.885 DEBUG [12651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:04:03.885 SQL [12651]: pgsql_db_connect() -- 18:04:03.892 INFO [12654]: COREGRADE is starting... -- 18:04:03.893 INFO [12654]: Version from config: 1.0 -- 18:04:03.893 DEBUG [12654]: Connecting to database... -- 18:04:03.893 DEBUG [12654]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:04:03.893 SQL [12654]: pgsql_db_connect() -- 18:04:03.890 DEBUG [12651]: Database connection successful -- 18:04:03.890 INFO [12651]: _SERVER found -- 18:04:03.890 INFO [12651]: REMOTE_ADDR = 10.0.0.15 -- 18:04:03.890 INFO [12651]: SERVER_NAME = works.coregrade.com -- 18:04:03.890 INFO [12651]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=nqgb308ps8cq45udekh2u9ui1inku6eg; _gat_gtag_UA_54829827_2=1 -- 18:04:03.890 INFO [12651]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:04:03.890 INFO [12651]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:04:03.903 INFO [12651]: COREGRADE is stopping... -- 18:04:03.903 DEBUG [12651]: Closing database connection -- 18:04:03.903 SQL [12651]: pgsql_close() -- 18:04:03.897 DEBUG [12654]: Database connection successful -- 18:04:03.897 INFO [12654]: _SERVER found -- 18:04:03.897 INFO [12654]: REMOTE_ADDR = 10.0.0.15 -- 18:04:03.897 INFO [12654]: SERVER_NAME = works.coregrade.com -- 18:04:03.897 INFO [12654]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=nqgb308ps8cq45udekh2u9ui1inku6eg; _gat_gtag_UA_54829827_2=1 -- 18:04:03.897 INFO [12654]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:04:03.897 INFO [12654]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:04:03.912 INFO [12654]: COREGRADE is stopping... -- 18:04:03.912 DEBUG [12654]: Closing database connection -- 18:04:03.912 SQL [12654]: pgsql_close() -- 18:04:11.033 INFO [20744]: COREGRADE is starting... -- 18:04:11.033 INFO [20744]: Version from config: 1.0 -- 18:04:11.033 DEBUG [20744]: Connecting to database... -- 18:04:11.033 DEBUG [20744]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:04:11.033 SQL [20744]: pgsql_db_connect() -- 18:04:11.038 DEBUG [20744]: Database connection successful -- 18:04:11.038 INFO [20744]: _SERVER found -- 18:04:11.038 INFO [20744]: REMOTE_ADDR = 10.0.0.15 -- 18:04:11.038 INFO [20744]: SERVER_NAME = works.coregrade.com -- 18:04:11.038 INFO [20744]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1 -- 18:04:11.038 INFO [20744]: QUERY_STRING = -- 18:04:11.038 INFO [20744]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:04:11.081 INFO [20744]: COREGRADE is stopping... -- 18:04:11.081 DEBUG [20744]: Closing database connection -- 18:04:11.081 SQL [20744]: pgsql_close() -- 18:04:11.368 INFO [20744]: COREGRADE is starting... -- 18:04:11.369 INFO [20744]: Version from config: 1.0 -- 18:04:11.369 DEBUG [20744]: Connecting to database... -- 18:04:11.369 DEBUG [20744]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:04:11.369 SQL [20744]: pgsql_db_connect() -- 18:04:11.373 DEBUG [20744]: Database connection successful -- 18:04:11.374 INFO [20744]: _SERVER found -- 18:04:11.374 INFO [20744]: REMOTE_ADDR = 10.0.0.15 -- 18:04:11.374 INFO [20744]: SERVER_NAME = works.coregrade.com -- 18:04:11.374 INFO [20744]: HTTP_COOKIE = ci_session=munb5t1o8feiemf7fn7g6u14k047ff1h; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1 -- 18:04:11.374 INFO [20744]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:04:11.374 INFO [20744]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:04:11.386 INFO [20744]: COREGRADE is stopping... -- 18:04:11.386 DEBUG [20744]: Closing database connection -- 18:04:11.386 SQL [20744]: pgsql_close() -- 18:04:11.397 INFO [20748]: COREGRADE is starting... -- 18:04:11.397 INFO [20748]: Version from config: 1.0 -- 18:04:11.397 DEBUG [20748]: Connecting to database... -- 18:04:11.397 DEBUG [20748]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:04:11.397 SQL [20748]: pgsql_db_connect() -- 18:04:11.401 DEBUG [20748]: Database connection successful -- 18:04:11.401 INFO [20748]: _SERVER found -- 18:04:11.401 INFO [20748]: REMOTE_ADDR = 10.0.0.15 -- 18:04:11.401 INFO [20748]: SERVER_NAME = works.coregrade.com -- 18:04:11.401 INFO [20748]: HTTP_COOKIE = ci_session=munb5t1o8feiemf7fn7g6u14k047ff1h; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1 -- 18:04:11.401 INFO [20748]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:04:11.401 INFO [20748]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:04:11.416 INFO [20748]: COREGRADE is stopping... -- 18:04:11.416 DEBUG [20748]: Closing database connection -- 18:04:11.416 SQL [20748]: pgsql_close() -- 18:04:16.067 INFO [20769]: COREGRADE is starting... -- 18:04:16.067 INFO [20769]: Version from config: 1.0 -- 18:04:16.067 DEBUG [20769]: Connecting to database... -- 18:04:16.067 DEBUG [20769]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:04:16.067 SQL [20769]: pgsql_db_connect() -- 18:04:16.072 DEBUG [20769]: Database connection successful -- 18:04:16.072 INFO [20769]: _SERVER found -- 18:04:16.072 INFO [20769]: REMOTE_ADDR = 10.0.0.15 -- 18:04:16.072 INFO [20769]: SERVER_NAME = works.coregrade.com -- 18:04:16.072 INFO [20769]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=munb5t1o8feiemf7fn7g6u14k047ff1h; _gat_gtag_UA_54829827_2=1 -- 18:04:16.072 INFO [20769]: QUERY_STRING = /auth -- 18:04:16.072 INFO [20769]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:04:16.110 INFO [20769]: COREGRADE is stopping... -- 18:04:16.110 DEBUG [20769]: Closing database connection -- 18:04:16.110 SQL [20769]: pgsql_close() -- 18:04:16.352 INFO [20770]: COREGRADE is starting... -- 18:04:16.352 INFO [20770]: Version from config: 1.0 -- 18:04:16.352 DEBUG [20770]: Connecting to database... -- 18:04:16.352 DEBUG [20770]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:04:16.352 SQL [20770]: pgsql_db_connect() -- 18:04:16.357 DEBUG [20770]: Database connection successful -- 18:04:16.357 INFO [20770]: _SERVER found -- 18:04:16.357 INFO [20770]: REMOTE_ADDR = 10.0.0.15 -- 18:04:16.357 INFO [20770]: SERVER_NAME = works.coregrade.com -- 18:04:16.357 INFO [20770]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=munb5t1o8feiemf7fn7g6u14k047ff1h; _gat_gtag_UA_54829827_2=1 -- 18:04:16.357 INFO [20770]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:04:16.357 INFO [20770]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:04:16.371 INFO [20770]: COREGRADE is stopping... -- 18:04:16.371 DEBUG [20770]: Closing database connection -- 18:04:16.371 SQL [20770]: pgsql_close() -- 18:04:16.484 INFO [20770]: COREGRADE is starting... -- 18:04:16.484 INFO [20770]: Version from config: 1.0 -- 18:04:16.484 DEBUG [20770]: Connecting to database... -- 18:04:16.484 DEBUG [20770]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:04:16.484 SQL [20770]: pgsql_db_connect() -- 18:04:16.488 DEBUG [20770]: Database connection successful -- 18:04:16.488 INFO [20770]: _SERVER found -- 18:04:16.488 INFO [20770]: REMOTE_ADDR = 10.0.0.15 -- 18:04:16.488 INFO [20770]: SERVER_NAME = works.coregrade.com -- 18:04:16.488 INFO [20770]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=munb5t1o8feiemf7fn7g6u14k047ff1h; _gat_gtag_UA_54829827_2=1 -- 18:04:16.488 INFO [20770]: QUERY_STRING = /assets2/data/locales/en.json -- 18:04:16.488 INFO [20770]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:04:16.501 INFO [20770]: COREGRADE is stopping... -- 18:04:16.501 DEBUG [20770]: Closing database connection -- 18:04:16.501 SQL [20770]: pgsql_close() -- 18:04:20.963 INFO [20770]: COREGRADE is starting... -- 18:04:20.964 INFO [20770]: Version from config: 1.0 -- 18:04:20.964 DEBUG [20770]: Connecting to database... -- 18:04:20.964 DEBUG [20770]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:04:20.964 SQL [20770]: pgsql_db_connect() -- 18:04:20.968 DEBUG [20770]: Database connection successful -- 18:04:20.968 INFO [20770]: _SERVER found -- 18:04:20.968 INFO [20770]: REMOTE_ADDR = 10.0.0.15 -- 18:04:20.968 INFO [20770]: SERVER_NAME = works.coregrade.com -- 18:04:20.968 INFO [20770]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=munb5t1o8feiemf7fn7g6u14k047ff1h; _gat_gtag_UA_54829827_2=1 -- 18:04:20.968 INFO [20770]: QUERY_STRING = /auth -- 18:04:20.968 INFO [20770]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:04:21.006 INFO [20770]: COREGRADE is stopping... -- 18:04:21.006 DEBUG [20770]: Closing database connection -- 18:04:21.006 SQL [20770]: pgsql_close() -- 18:04:21.064 INFO [20770]: COREGRADE is starting... -- 18:04:21.064 INFO [20770]: Version from config: 1.0 -- 18:04:21.064 DEBUG [20770]: Connecting to database... -- 18:04:21.064 DEBUG [20770]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:04:21.064 SQL [20770]: pgsql_db_connect() -- 18:04:21.072 INFO [20769]: COREGRADE is starting... -- 18:04:21.072 INFO [20769]: Version from config: 1.0 -- 18:04:21.072 DEBUG [20769]: Connecting to database... -- 18:04:21.072 DEBUG [20769]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:04:21.072 SQL [20769]: pgsql_db_connect() -- 18:04:21.068 DEBUG [20770]: Database connection successful -- 18:04:21.068 INFO [20770]: _SERVER found -- 18:04:21.068 INFO [20770]: REMOTE_ADDR = 10.0.0.15 -- 18:04:21.068 INFO [20770]: SERVER_NAME = works.coregrade.com -- 18:04:21.068 INFO [20770]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=munb5t1o8feiemf7fn7g6u14k047ff1h; _gat_gtag_UA_54829827_2=1 -- 18:04:21.068 INFO [20770]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:04:21.068 INFO [20770]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:04:21.081 INFO [20770]: COREGRADE is stopping... -- 18:04:21.081 DEBUG [20770]: Closing database connection -- 18:04:21.081 SQL [20770]: pgsql_close() -- 18:04:21.076 DEBUG [20769]: Database connection successful -- 18:04:21.076 INFO [20769]: _SERVER found -- 18:04:21.076 INFO [20769]: REMOTE_ADDR = 10.0.0.15 -- 18:04:21.076 INFO [20769]: SERVER_NAME = works.coregrade.com -- 18:04:21.076 INFO [20769]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=munb5t1o8feiemf7fn7g6u14k047ff1h; _gat_gtag_UA_54829827_2=1 -- 18:04:21.076 INFO [20769]: QUERY_STRING = /assets2/data/locales/en.json -- 18:04:21.076 INFO [20769]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:04:21.088 INFO [20769]: COREGRADE is stopping... -- 18:04:21.088 DEBUG [20769]: Closing database connection -- 18:04:21.088 SQL [20769]: pgsql_close() -- 18:04:21.852 INFO [20769]: COREGRADE is starting... -- 18:04:21.852 INFO [20769]: Version from config: 1.0 -- 18:04:21.852 DEBUG [20769]: Connecting to database... -- 18:04:21.852 DEBUG [20769]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:04:21.852 SQL [20769]: pgsql_db_connect() -- 18:04:21.858 INFO [20770]: COREGRADE is starting... -- 18:04:21.859 INFO [20770]: Version from config: 1.0 -- 18:04:21.859 DEBUG [20770]: Connecting to database... -- 18:04:21.859 DEBUG [20770]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:04:21.859 SQL [20770]: pgsql_db_connect() -- 18:04:21.863 DEBUG [20770]: Database connection successful -- 18:04:21.863 INFO [20770]: _SERVER found -- 18:04:21.863 INFO [20770]: REMOTE_ADDR = 10.0.0.15 -- 18:04:21.863 INFO [20770]: SERVER_NAME = works.coregrade.com -- 18:04:21.863 INFO [20770]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=munb5t1o8feiemf7fn7g6u14k047ff1h; _gat_gtag_UA_54829827_2=1 -- 18:04:21.863 INFO [20770]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:04:21.863 INFO [20770]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:04:21.875 INFO [20770]: COREGRADE is stopping... -- 18:04:21.875 DEBUG [20770]: Closing database connection -- 18:04:21.875 SQL [20770]: pgsql_close() -- 18:04:21.856 DEBUG [20769]: Database connection successful -- 18:04:21.856 INFO [20769]: _SERVER found -- 18:04:21.856 INFO [20769]: REMOTE_ADDR = 10.0.0.15 -- 18:04:21.856 INFO [20769]: SERVER_NAME = works.coregrade.com -- 18:04:21.856 INFO [20769]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=munb5t1o8feiemf7fn7g6u14k047ff1h; _gat_gtag_UA_54829827_2=1 -- 18:04:21.856 INFO [20769]: QUERY_STRING = /auth -- 18:04:21.856 INFO [20769]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:04:21.892 INFO [20769]: COREGRADE is stopping... -- 18:04:21.892 DEBUG [20769]: Closing database connection -- 18:04:21.892 SQL [20769]: pgsql_close() -- 18:04:21.952 INFO [20769]: COREGRADE is starting... -- 18:04:21.952 INFO [20769]: Version from config: 1.0 -- 18:04:21.952 DEBUG [20769]: Connecting to database... -- 18:04:21.952 DEBUG [20769]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:04:21.952 SQL [20769]: pgsql_db_connect() -- 18:04:21.961 INFO [20770]: COREGRADE is starting... -- 18:04:21.961 INFO [20770]: Version from config: 1.0 -- 18:04:21.961 DEBUG [20770]: Connecting to database... -- 18:04:21.961 DEBUG [20770]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:04:21.961 SQL [20770]: pgsql_db_connect() -- 18:04:21.957 DEBUG [20769]: Database connection successful -- 18:04:21.957 INFO [20769]: _SERVER found -- 18:04:21.957 INFO [20769]: REMOTE_ADDR = 10.0.0.15 -- 18:04:21.957 INFO [20769]: SERVER_NAME = works.coregrade.com -- 18:04:21.957 INFO [20769]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=munb5t1o8feiemf7fn7g6u14k047ff1h; _gat_gtag_UA_54829827_2=1 -- 18:04:21.957 INFO [20769]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:04:21.957 INFO [20769]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:04:21.969 INFO [20769]: COREGRADE is stopping... -- 18:04:21.969 DEBUG [20769]: Closing database connection -- 18:04:21.969 SQL [20769]: pgsql_close() -- 18:04:21.965 DEBUG [20770]: Database connection successful -- 18:04:21.965 INFO [20770]: _SERVER found -- 18:04:21.965 INFO [20770]: REMOTE_ADDR = 10.0.0.15 -- 18:04:21.965 INFO [20770]: SERVER_NAME = works.coregrade.com -- 18:04:21.965 INFO [20770]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=munb5t1o8feiemf7fn7g6u14k047ff1h; _gat_gtag_UA_54829827_2=1 -- 18:04:21.965 INFO [20770]: QUERY_STRING = /assets2/data/locales/en.json -- 18:04:21.965 INFO [20770]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:04:21.977 INFO [20770]: COREGRADE is stopping... -- 18:04:21.977 DEBUG [20770]: Closing database connection -- 18:04:21.977 SQL [20770]: pgsql_close() -- 18:04:22.339 INFO [20770]: COREGRADE is starting... -- 18:04:22.339 INFO [20770]: Version from config: 1.0 -- 18:04:22.339 DEBUG [20770]: Connecting to database... -- 18:04:22.339 DEBUG [20770]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:04:22.339 SQL [20770]: pgsql_db_connect() -- 18:04:22.346 INFO [20769]: COREGRADE is starting... -- 18:04:22.346 INFO [20769]: Version from config: 1.0 -- 18:04:22.346 DEBUG [20769]: Connecting to database... -- 18:04:22.346 DEBUG [20769]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:04:22.346 SQL [20769]: pgsql_db_connect() -- 18:04:22.350 DEBUG [20769]: Database connection successful -- 18:04:22.350 INFO [20769]: _SERVER found -- 18:04:22.350 INFO [20769]: REMOTE_ADDR = 10.0.0.15 -- 18:04:22.350 INFO [20769]: SERVER_NAME = works.coregrade.com -- 18:04:22.350 INFO [20769]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=munb5t1o8feiemf7fn7g6u14k047ff1h; _gat_gtag_UA_54829827_2=1 -- 18:04:22.350 INFO [20769]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:04:22.350 INFO [20769]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:04:22.363 INFO [20769]: COREGRADE is stopping... -- 18:04:22.363 DEBUG [20769]: Closing database connection -- 18:04:22.363 SQL [20769]: pgsql_close() -- 18:04:22.343 DEBUG [20770]: Database connection successful -- 18:04:22.343 INFO [20770]: _SERVER found -- 18:04:22.343 INFO [20770]: REMOTE_ADDR = 10.0.0.15 -- 18:04:22.343 INFO [20770]: SERVER_NAME = works.coregrade.com -- 18:04:22.343 INFO [20770]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=munb5t1o8feiemf7fn7g6u14k047ff1h; _gat_gtag_UA_54829827_2=1 -- 18:04:22.343 INFO [20770]: QUERY_STRING = /auth -- 18:04:22.343 INFO [20770]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:04:22.379 INFO [20770]: COREGRADE is stopping... -- 18:04:22.379 DEBUG [20770]: Closing database connection -- 18:04:22.379 SQL [20770]: pgsql_close() -- 18:04:22.437 INFO [20770]: COREGRADE is starting... -- 18:04:22.437 INFO [20770]: Version from config: 1.0 -- 18:04:22.437 DEBUG [20770]: Connecting to database... -- 18:04:22.437 DEBUG [20770]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:04:22.437 SQL [20770]: pgsql_db_connect() -- 18:04:22.444 INFO [20769]: COREGRADE is starting... -- 18:04:22.444 INFO [20769]: Version from config: 1.0 -- 18:04:22.444 DEBUG [20769]: Connecting to database... -- 18:04:22.444 DEBUG [20769]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:04:22.444 SQL [20769]: pgsql_db_connect() -- 18:04:22.441 DEBUG [20770]: Database connection successful -- 18:04:22.441 INFO [20770]: _SERVER found -- 18:04:22.441 INFO [20770]: REMOTE_ADDR = 10.0.0.15 -- 18:04:22.441 INFO [20770]: SERVER_NAME = works.coregrade.com -- 18:04:22.441 INFO [20770]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=munb5t1o8feiemf7fn7g6u14k047ff1h; _gat_gtag_UA_54829827_2=1 -- 18:04:22.441 INFO [20770]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:04:22.441 INFO [20770]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:04:22.454 INFO [20770]: COREGRADE is stopping... -- 18:04:22.454 DEBUG [20770]: Closing database connection -- 18:04:22.454 SQL [20770]: pgsql_close() -- 18:04:22.449 DEBUG [20769]: Database connection successful -- 18:04:22.449 INFO [20769]: _SERVER found -- 18:04:22.449 INFO [20769]: REMOTE_ADDR = 10.0.0.15 -- 18:04:22.449 INFO [20769]: SERVER_NAME = works.coregrade.com -- 18:04:22.449 INFO [20769]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=munb5t1o8feiemf7fn7g6u14k047ff1h; _gat_gtag_UA_54829827_2=1 -- 18:04:22.449 INFO [20769]: QUERY_STRING = /assets2/data/locales/en.json -- 18:04:22.449 INFO [20769]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:04:22.461 INFO [20769]: COREGRADE is stopping... -- 18:04:22.461 DEBUG [20769]: Closing database connection -- 18:04:22.461 SQL [20769]: pgsql_close() -- 18:04:22.763 INFO [20769]: COREGRADE is starting... -- 18:04:22.763 INFO [20769]: Version from config: 1.0 -- 18:04:22.763 DEBUG [20769]: Connecting to database... -- 18:04:22.763 DEBUG [20769]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:04:22.763 SQL [20769]: pgsql_db_connect() -- 18:04:22.769 INFO [20770]: COREGRADE is starting... -- 18:04:22.770 INFO [20770]: Version from config: 1.0 -- 18:04:22.770 DEBUG [20770]: Connecting to database... -- 18:04:22.770 DEBUG [20770]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:04:22.770 SQL [20770]: pgsql_db_connect() -- 18:04:22.774 DEBUG [20770]: Database connection successful -- 18:04:22.774 INFO [20770]: _SERVER found -- 18:04:22.774 INFO [20770]: REMOTE_ADDR = 10.0.0.15 -- 18:04:22.774 INFO [20770]: SERVER_NAME = works.coregrade.com -- 18:04:22.774 INFO [20770]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=munb5t1o8feiemf7fn7g6u14k047ff1h; _gat_gtag_UA_54829827_2=1 -- 18:04:22.774 INFO [20770]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:04:22.774 INFO [20770]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:04:22.786 INFO [20770]: COREGRADE is stopping... -- 18:04:22.786 DEBUG [20770]: Closing database connection -- 18:04:22.786 SQL [20770]: pgsql_close() -- 18:04:22.768 DEBUG [20769]: Database connection successful -- 18:04:22.768 INFO [20769]: _SERVER found -- 18:04:22.768 INFO [20769]: REMOTE_ADDR = 10.0.0.15 -- 18:04:22.768 INFO [20769]: SERVER_NAME = works.coregrade.com -- 18:04:22.768 INFO [20769]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=munb5t1o8feiemf7fn7g6u14k047ff1h; _gat_gtag_UA_54829827_2=1 -- 18:04:22.768 INFO [20769]: QUERY_STRING = /auth -- 18:04:22.768 INFO [20769]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:04:22.803 INFO [20769]: COREGRADE is stopping... -- 18:04:22.803 DEBUG [20769]: Closing database connection -- 18:04:22.804 SQL [20769]: pgsql_close() -- 18:04:22.854 INFO [20769]: COREGRADE is starting... -- 18:04:22.854 INFO [20769]: Version from config: 1.0 -- 18:04:22.854 DEBUG [20769]: Connecting to database... -- 18:04:22.854 DEBUG [20769]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:04:22.854 SQL [20769]: pgsql_db_connect() -- 18:04:22.861 INFO [20770]: COREGRADE is starting... -- 18:04:22.862 INFO [20770]: Version from config: 1.0 -- 18:04:22.862 DEBUG [20770]: Connecting to database... -- 18:04:22.862 DEBUG [20770]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:04:22.862 SQL [20770]: pgsql_db_connect() -- 18:04:22.859 DEBUG [20769]: Database connection successful -- 18:04:22.859 INFO [20769]: _SERVER found -- 18:04:22.859 INFO [20769]: REMOTE_ADDR = 10.0.0.15 -- 18:04:22.859 INFO [20769]: SERVER_NAME = works.coregrade.com -- 18:04:22.859 INFO [20769]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=munb5t1o8feiemf7fn7g6u14k047ff1h; _gat_gtag_UA_54829827_2=1 -- 18:04:22.859 INFO [20769]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:04:22.859 INFO [20769]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:04:22.872 INFO [20769]: COREGRADE is stopping... -- 18:04:22.872 DEBUG [20769]: Closing database connection -- 18:04:22.872 SQL [20769]: pgsql_close() -- 18:04:22.866 DEBUG [20770]: Database connection successful -- 18:04:22.866 INFO [20770]: _SERVER found -- 18:04:22.866 INFO [20770]: REMOTE_ADDR = 10.0.0.15 -- 18:04:22.866 INFO [20770]: SERVER_NAME = works.coregrade.com -- 18:04:22.866 INFO [20770]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=munb5t1o8feiemf7fn7g6u14k047ff1h; _gat_gtag_UA_54829827_2=1 -- 18:04:22.866 INFO [20770]: QUERY_STRING = /assets2/data/locales/en.json -- 18:04:22.866 INFO [20770]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:04:22.879 INFO [20770]: COREGRADE is stopping... -- 18:04:22.879 DEBUG [20770]: Closing database connection -- 18:04:22.879 SQL [20770]: pgsql_close() -- 18:04:23.178 INFO [20770]: COREGRADE is starting... -- 18:04:23.178 INFO [20770]: Version from config: 1.0 -- 18:04:23.178 DEBUG [20770]: Connecting to database... -- 18:04:23.178 DEBUG [20770]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:04:23.178 SQL [20770]: pgsql_db_connect() -- 18:04:23.185 INFO [20769]: COREGRADE is starting... -- 18:04:23.185 INFO [20769]: Version from config: 1.0 -- 18:04:23.185 DEBUG [20769]: Connecting to database... -- 18:04:23.185 DEBUG [20769]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:04:23.185 SQL [20769]: pgsql_db_connect() -- 18:04:23.189 DEBUG [20769]: Database connection successful -- 18:04:23.189 INFO [20769]: _SERVER found -- 18:04:23.189 INFO [20769]: REMOTE_ADDR = 10.0.0.15 -- 18:04:23.189 INFO [20769]: SERVER_NAME = works.coregrade.com -- 18:04:23.189 INFO [20769]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=munb5t1o8feiemf7fn7g6u14k047ff1h; _gat_gtag_UA_54829827_2=1 -- 18:04:23.189 INFO [20769]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:04:23.189 INFO [20769]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:04:23.202 INFO [20769]: COREGRADE is stopping... -- 18:04:23.202 DEBUG [20769]: Closing database connection -- 18:04:23.202 SQL [20769]: pgsql_close() -- 18:04:23.182 DEBUG [20770]: Database connection successful -- 18:04:23.182 INFO [20770]: _SERVER found -- 18:04:23.182 INFO [20770]: REMOTE_ADDR = 10.0.0.15 -- 18:04:23.182 INFO [20770]: SERVER_NAME = works.coregrade.com -- 18:04:23.182 INFO [20770]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=munb5t1o8feiemf7fn7g6u14k047ff1h; _gat_gtag_UA_54829827_2=1 -- 18:04:23.182 INFO [20770]: QUERY_STRING = /auth -- 18:04:23.182 INFO [20770]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:04:23.217 INFO [20770]: COREGRADE is stopping... -- 18:04:23.217 DEBUG [20770]: Closing database connection -- 18:04:23.217 SQL [20770]: pgsql_close() -- 18:04:29.613 INFO [20771]: COREGRADE is starting... -- 18:04:29.613 INFO [20771]: Version from config: 1.0 -- 18:04:29.613 DEBUG [20771]: Connecting to database... -- 18:04:29.613 DEBUG [20771]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:04:29.613 SQL [20771]: pgsql_db_connect() -- 18:04:29.618 DEBUG [20771]: Database connection successful -- 18:04:29.618 INFO [20771]: _SERVER found -- 18:04:29.618 INFO [20771]: REMOTE_ADDR = 10.0.0.15 -- 18:04:29.618 INFO [20771]: SERVER_NAME = works.coregrade.com -- 18:04:29.618 INFO [20771]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=munb5t1o8feiemf7fn7g6u14k047ff1h; _gat_gtag_UA_54829827_2=1 -- 18:04:29.618 INFO [20771]: QUERY_STRING = -- 18:04:29.618 INFO [20771]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:04:29.662 INFO [20771]: COREGRADE is stopping... -- 18:04:29.662 DEBUG [20771]: Closing database connection -- 18:04:29.662 SQL [20771]: pgsql_close() -- 18:04:29.897 INFO [12652]: COREGRADE is starting... -- 18:04:29.898 INFO [12652]: Version from config: 1.0 -- 18:04:29.898 DEBUG [12652]: Connecting to database... -- 18:04:29.898 DEBUG [12652]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:04:29.898 SQL [12652]: pgsql_db_connect() -- 18:04:29.912 INFO [12655]: COREGRADE is starting... -- 18:04:29.913 INFO [12655]: Version from config: 1.0 -- 18:04:29.913 DEBUG [12655]: Connecting to database... -- 18:04:29.913 DEBUG [12655]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:04:29.913 SQL [12655]: pgsql_db_connect() -- 18:04:29.902 DEBUG [12652]: Database connection successful -- 18:04:29.902 INFO [12652]: _SERVER found -- 18:04:29.902 INFO [12652]: REMOTE_ADDR = 10.0.0.15 -- 18:04:29.902 INFO [12652]: SERVER_NAME = works.coregrade.com -- 18:04:29.902 INFO [12652]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=munb5t1o8feiemf7fn7g6u14k047ff1h; _gat_gtag_UA_54829827_2=1 -- 18:04:29.902 INFO [12652]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:04:29.902 INFO [12652]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:04:29.918 INFO [12652]: COREGRADE is stopping... -- 18:04:29.918 DEBUG [12652]: Closing database connection -- 18:04:29.918 SQL [12652]: pgsql_close() -- 18:04:29.918 DEBUG [12655]: Database connection successful -- 18:04:29.918 INFO [12655]: _SERVER found -- 18:04:29.918 INFO [12655]: REMOTE_ADDR = 10.0.0.15 -- 18:04:29.918 INFO [12655]: SERVER_NAME = works.coregrade.com -- 18:04:29.918 INFO [12655]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=munb5t1o8feiemf7fn7g6u14k047ff1h; _gat_gtag_UA_54829827_2=1 -- 18:04:29.918 INFO [12655]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:04:29.918 INFO [12655]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:04:29.932 INFO [12655]: COREGRADE is stopping... -- 18:04:29.932 DEBUG [12655]: Closing database connection -- 18:04:29.932 SQL [12655]: pgsql_close() -- 18:05:10.711 INFO [21025]: COREGRADE is starting... -- 18:05:10.711 INFO [21025]: Version from config: 1.0 -- 18:05:10.711 DEBUG [21025]: Connecting to database... -- 18:05:10.711 DEBUG [21025]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:05:10.711 SQL [21025]: pgsql_db_connect() -- 18:05:10.715 DEBUG [21025]: Database connection successful -- 18:05:10.715 INFO [21025]: _SERVER found -- 18:05:10.715 INFO [21025]: REMOTE_ADDR = 10.0.0.15 -- 18:05:10.715 INFO [21025]: SERVER_NAME = works.coregrade.com -- 18:05:10.715 INFO [21025]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=munb5t1o8feiemf7fn7g6u14k047ff1h -- 18:05:10.715 INFO [21025]: QUERY_STRING = /auth -- 18:05:10.715 INFO [21025]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:05:10.754 INFO [21025]: COREGRADE is stopping... -- 18:05:10.754 DEBUG [21025]: Closing database connection -- 18:05:10.754 SQL [21025]: pgsql_close() -- 18:05:11.013 INFO [21025]: COREGRADE is starting... -- 18:05:11.013 INFO [21025]: Version from config: 1.0 -- 18:05:11.013 DEBUG [21025]: Connecting to database... -- 18:05:11.013 DEBUG [21025]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:05:11.013 SQL [21025]: pgsql_db_connect() -- 18:05:11.017 DEBUG [21025]: Database connection successful -- 18:05:11.017 INFO [21025]: _SERVER found -- 18:05:11.017 INFO [21025]: REMOTE_ADDR = 10.0.0.15 -- 18:05:11.017 INFO [21025]: SERVER_NAME = works.coregrade.com -- 18:05:11.017 INFO [21025]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=munb5t1o8feiemf7fn7g6u14k047ff1h -- 18:05:11.017 INFO [21025]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:05:11.017 INFO [21025]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:05:11.030 INFO [21025]: COREGRADE is stopping... -- 18:05:11.030 DEBUG [21025]: Closing database connection -- 18:05:11.030 SQL [21025]: pgsql_close() -- 18:05:11.108 INFO [21025]: COREGRADE is starting... -- 18:05:11.108 INFO [21025]: Version from config: 1.0 -- 18:05:11.108 DEBUG [21025]: Connecting to database... -- 18:05:11.108 DEBUG [21025]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:05:11.108 SQL [21025]: pgsql_db_connect() -- 18:05:11.112 DEBUG [21025]: Database connection successful -- 18:05:11.112 INFO [21025]: _SERVER found -- 18:05:11.112 INFO [21025]: REMOTE_ADDR = 10.0.0.15 -- 18:05:11.112 INFO [21025]: SERVER_NAME = works.coregrade.com -- 18:05:11.112 INFO [21025]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=munb5t1o8feiemf7fn7g6u14k047ff1h -- 18:05:11.112 INFO [21025]: QUERY_STRING = /assets2/data/locales/en.json -- 18:05:11.112 INFO [21025]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:05:11.125 INFO [21025]: COREGRADE is stopping... -- 18:05:11.125 DEBUG [21025]: Closing database connection -- 18:05:11.125 SQL [21025]: pgsql_close() -- 18:16:03.436 INFO [9472]: COREGRADE is starting... -- 18:16:03.437 INFO [9472]: Version from config: 1.0 -- 18:16:03.437 DEBUG [9472]: Connecting to database... -- 18:16:03.437 DEBUG [9472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:03.437 SQL [9472]: pgsql_db_connect() -- 18:16:03.442 DEBUG [9472]: Database connection successful -- 18:16:03.442 INFO [9472]: _SERVER found -- 18:16:03.442 INFO [9472]: REMOTE_ADDR = 10.0.0.15 -- 18:16:03.442 INFO [9472]: SERVER_NAME = works.coregrade.com -- 18:16:03.442 INFO [9472]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=munb5t1o8feiemf7fn7g6u14k047ff1h -- 18:16:03.442 INFO [9472]: QUERY_STRING = -- 18:16:03.442 INFO [9472]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:03.487 INFO [9472]: COREGRADE is stopping... -- 18:16:03.487 DEBUG [9472]: Closing database connection -- 18:16:03.487 SQL [9472]: pgsql_close() -- 18:16:03.799 INFO [9475]: COREGRADE is starting... -- 18:16:03.799 INFO [9472]: COREGRADE is starting... -- 18:16:03.799 INFO [9475]: Version from config: 1.0 -- 18:16:03.799 DEBUG [9475]: Connecting to database... -- 18:16:03.799 DEBUG [9475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:03.799 SQL [9475]: pgsql_db_connect() -- 18:16:03.799 INFO [9472]: Version from config: 1.0 -- 18:16:03.799 DEBUG [9472]: Connecting to database... -- 18:16:03.799 DEBUG [9472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:03.799 SQL [9472]: pgsql_db_connect() -- 18:16:03.804 DEBUG [9472]: Database connection successful -- 18:16:03.804 INFO [9472]: _SERVER found -- 18:16:03.804 INFO [9472]: REMOTE_ADDR = 10.0.0.15 -- 18:16:03.804 INFO [9472]: SERVER_NAME = works.coregrade.com -- 18:16:03.804 INFO [9472]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:03.804 INFO [9472]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:03.804 INFO [9472]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:03.818 INFO [9472]: COREGRADE is stopping... -- 18:16:03.818 DEBUG [9472]: Closing database connection -- 18:16:03.818 SQL [9472]: pgsql_close() -- 18:16:03.804 DEBUG [9475]: Database connection successful -- 18:16:03.804 INFO [9475]: _SERVER found -- 18:16:03.804 INFO [9475]: REMOTE_ADDR = 10.0.0.15 -- 18:16:03.804 INFO [9475]: SERVER_NAME = works.coregrade.com -- 18:16:03.804 INFO [9475]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:03.804 INFO [9475]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:03.804 INFO [9475]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:03.823 INFO [9475]: COREGRADE is stopping... -- 18:16:03.824 DEBUG [9475]: Closing database connection -- 18:16:03.824 SQL [9475]: pgsql_close() -- 18:16:08.485 INFO [9472]: COREGRADE is starting... -- 18:16:08.485 INFO [9472]: Version from config: 1.0 -- 18:16:08.485 DEBUG [9472]: Connecting to database... -- 18:16:08.485 DEBUG [9472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:08.485 SQL [9472]: pgsql_db_connect() -- 18:16:08.489 INFO [9473]: COREGRADE is starting... -- 18:16:08.490 INFO [9473]: Version from config: 1.0 -- 18:16:08.490 DEBUG [9473]: Connecting to database... -- 18:16:08.490 DEBUG [9473]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:08.490 SQL [9473]: pgsql_db_connect() -- 18:16:08.492 INFO [9476]: COREGRADE is starting... -- 18:16:08.492 INFO [9476]: Version from config: 1.0 -- 18:16:08.492 DEBUG [9476]: Connecting to database... -- 18:16:08.492 DEBUG [9476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:08.492 SQL [9476]: pgsql_db_connect() -- 18:16:08.494 DEBUG [9473]: Database connection successful -- 18:16:08.494 INFO [9473]: _SERVER found -- 18:16:08.494 INFO [9473]: REMOTE_ADDR = 10.0.0.15 -- 18:16:08.494 INFO [9473]: SERVER_NAME = works.coregrade.com -- 18:16:08.494 INFO [9473]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:08.494 INFO [9473]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:08.494 INFO [9473]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:08.508 INFO [9473]: COREGRADE is stopping... -- 18:16:08.508 DEBUG [9473]: Closing database connection -- 18:16:08.508 SQL [9473]: pgsql_close() -- 18:16:08.497 DEBUG [9476]: Database connection successful -- 18:16:08.497 INFO [9476]: _SERVER found -- 18:16:08.497 INFO [9476]: REMOTE_ADDR = 10.0.0.15 -- 18:16:08.497 INFO [9476]: SERVER_NAME = works.coregrade.com -- 18:16:08.497 INFO [9476]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:08.497 INFO [9476]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:08.497 INFO [9476]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:08.513 INFO [9476]: COREGRADE is stopping... -- 18:16:08.514 DEBUG [9476]: Closing database connection -- 18:16:08.514 SQL [9476]: pgsql_close() -- 18:16:08.489 DEBUG [9472]: Database connection successful -- 18:16:08.489 INFO [9472]: _SERVER found -- 18:16:08.489 INFO [9472]: REMOTE_ADDR = 10.0.0.15 -- 18:16:08.489 INFO [9472]: SERVER_NAME = works.coregrade.com -- 18:16:08.489 INFO [9472]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:08.489 INFO [9472]: QUERY_STRING = -- 18:16:08.489 INFO [9472]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:08.524 INFO [9472]: COREGRADE is stopping... -- 18:16:08.524 DEBUG [9472]: Closing database connection -- 18:16:08.524 SQL [9472]: pgsql_close() -- 18:16:09.911 INFO [9472]: COREGRADE is starting... -- 18:16:09.911 INFO [9472]: Version from config: 1.0 -- 18:16:09.911 DEBUG [9472]: Connecting to database... -- 18:16:09.912 DEBUG [9472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:09.912 SQL [9472]: pgsql_db_connect() -- 18:16:09.915 INFO [9473]: COREGRADE is starting... -- 18:16:09.915 INFO [9473]: Version from config: 1.0 -- 18:16:09.915 DEBUG [9473]: Connecting to database... -- 18:16:09.915 DEBUG [9473]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:09.915 SQL [9473]: pgsql_db_connect() -- 18:16:09.917 INFO [9476]: COREGRADE is starting... -- 18:16:09.917 INFO [9476]: Version from config: 1.0 -- 18:16:09.917 DEBUG [9476]: Connecting to database... -- 18:16:09.917 DEBUG [9476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:09.917 SQL [9476]: pgsql_db_connect() -- 18:16:09.920 DEBUG [9473]: Database connection successful -- 18:16:09.920 INFO [9473]: _SERVER found -- 18:16:09.920 INFO [9473]: REMOTE_ADDR = 10.0.0.15 -- 18:16:09.920 INFO [9473]: SERVER_NAME = works.coregrade.com -- 18:16:09.920 INFO [9473]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:09.920 INFO [9473]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:09.920 INFO [9473]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:09.932 INFO [9473]: COREGRADE is stopping... -- 18:16:09.932 DEBUG [9473]: Closing database connection -- 18:16:09.932 SQL [9473]: pgsql_close() -- 18:16:09.921 DEBUG [9476]: Database connection successful -- 18:16:09.921 INFO [9476]: _SERVER found -- 18:16:09.921 INFO [9476]: REMOTE_ADDR = 10.0.0.15 -- 18:16:09.921 INFO [9476]: SERVER_NAME = works.coregrade.com -- 18:16:09.921 INFO [9476]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:09.921 INFO [9476]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:09.921 INFO [9476]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:09.934 INFO [9476]: COREGRADE is stopping... -- 18:16:09.934 DEBUG [9476]: Closing database connection -- 18:16:09.934 SQL [9476]: pgsql_close() -- 18:16:09.916 DEBUG [9472]: Database connection successful -- 18:16:09.916 INFO [9472]: _SERVER found -- 18:16:09.916 INFO [9472]: REMOTE_ADDR = 10.0.0.15 -- 18:16:09.916 INFO [9472]: SERVER_NAME = works.coregrade.com -- 18:16:09.916 INFO [9472]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:09.916 INFO [9472]: QUERY_STRING = -- 18:16:09.916 INFO [9472]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:09.954 INFO [9472]: COREGRADE is stopping... -- 18:16:09.954 DEBUG [9472]: Closing database connection -- 18:16:09.954 SQL [9472]: pgsql_close() -- 18:16:10.120 INFO [9472]: COREGRADE is starting... -- 18:16:10.120 INFO [9472]: Version from config: 1.0 -- 18:16:10.120 DEBUG [9472]: Connecting to database... -- 18:16:10.120 DEBUG [9472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:10.120 SQL [9472]: pgsql_db_connect() -- 18:16:10.125 DEBUG [9472]: Database connection successful -- 18:16:10.125 INFO [9472]: _SERVER found -- 18:16:10.125 INFO [9472]: REMOTE_ADDR = 10.0.0.15 -- 18:16:10.125 INFO [9472]: SERVER_NAME = works.coregrade.com -- 18:16:10.125 INFO [9472]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:10.125 INFO [9472]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:10.125 INFO [9472]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:10.137 INFO [9472]: COREGRADE is stopping... -- 18:16:10.137 DEBUG [9472]: Closing database connection -- 18:16:10.137 SQL [9472]: pgsql_close() -- 18:16:10.158 INFO [9473]: COREGRADE is starting... -- 18:16:10.158 INFO [9473]: Version from config: 1.0 -- 18:16:10.158 DEBUG [9473]: Connecting to database... -- 18:16:10.158 DEBUG [9473]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:10.158 SQL [9473]: pgsql_db_connect() -- 18:16:10.162 DEBUG [9473]: Database connection successful -- 18:16:10.162 INFO [9473]: _SERVER found -- 18:16:10.162 INFO [9473]: REMOTE_ADDR = 10.0.0.15 -- 18:16:10.162 INFO [9473]: SERVER_NAME = works.coregrade.com -- 18:16:10.162 INFO [9473]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:10.162 INFO [9473]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:10.162 INFO [9473]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:10.175 INFO [9473]: COREGRADE is stopping... -- 18:16:10.175 DEBUG [9473]: Closing database connection -- 18:16:10.175 SQL [9473]: pgsql_close() -- 18:16:14.538 INFO [9473]: COREGRADE is starting... -- 18:16:14.538 INFO [9473]: Version from config: 1.0 -- 18:16:14.538 DEBUG [9473]: Connecting to database... -- 18:16:14.538 DEBUG [9473]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:14.538 SQL [9473]: pgsql_db_connect() -- 18:16:14.542 DEBUG [9473]: Database connection successful -- 18:16:14.542 INFO [9473]: _SERVER found -- 18:16:14.542 INFO [9473]: REMOTE_ADDR = 10.0.0.15 -- 18:16:14.542 INFO [9473]: SERVER_NAME = works.coregrade.com -- 18:16:14.542 INFO [9473]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=nqgb308ps8cq45udekh2u9ui1inku6eg -- 18:16:14.542 INFO [9473]: QUERY_STRING = -- 18:16:14.542 INFO [9473]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:14.584 INFO [9473]: COREGRADE is stopping... -- 18:16:14.584 DEBUG [9473]: Closing database connection -- 18:16:14.584 SQL [9473]: pgsql_close() -- 18:16:15.589 INFO [9476]: COREGRADE is starting... -- 18:16:15.589 INFO [9476]: Version from config: 1.0 -- 18:16:15.589 DEBUG [9476]: Connecting to database... -- 18:16:15.589 DEBUG [9476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:15.589 SQL [9476]: pgsql_db_connect() -- 18:16:15.595 INFO [13228]: COREGRADE is starting... -- 18:16:15.595 INFO [13228]: Version from config: 1.0 -- 18:16:15.595 DEBUG [13228]: Connecting to database... -- 18:16:15.595 DEBUG [13228]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:15.595 SQL [13228]: pgsql_db_connect() -- 18:16:15.593 DEBUG [9476]: Database connection successful -- 18:16:15.593 INFO [9476]: _SERVER found -- 18:16:15.593 INFO [9476]: REMOTE_ADDR = 10.0.0.15 -- 18:16:15.593 INFO [9476]: SERVER_NAME = works.coregrade.com -- 18:16:15.593 INFO [9476]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=40eefpvvmask3mtobehf29alt9bh6ach; _gat_gtag_UA_54829827_2=1 -- 18:16:15.593 INFO [9476]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:15.593 INFO [9476]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:15.605 INFO [9476]: COREGRADE is stopping... -- 18:16:15.605 DEBUG [9476]: Closing database connection -- 18:16:15.606 SQL [9476]: pgsql_close() -- 18:16:15.601 DEBUG [13228]: Database connection successful -- 18:16:15.601 INFO [13228]: _SERVER found -- 18:16:15.601 INFO [13228]: REMOTE_ADDR = 10.0.0.15 -- 18:16:15.601 INFO [13228]: SERVER_NAME = works.coregrade.com -- 18:16:15.601 INFO [13228]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=40eefpvvmask3mtobehf29alt9bh6ach; _gat_gtag_UA_54829827_2=1 -- 18:16:15.601 INFO [13228]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:15.601 INFO [13228]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:15.615 INFO [13228]: COREGRADE is stopping... -- 18:16:15.615 DEBUG [13228]: Closing database connection -- 18:16:15.615 SQL [13228]: pgsql_close() -- 18:16:20.923 INFO [13229]: COREGRADE is starting... -- 18:16:20.923 INFO [13229]: Version from config: 1.0 -- 18:16:20.923 DEBUG [13229]: Connecting to database... -- 18:16:20.923 DEBUG [13229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:20.923 SQL [13229]: pgsql_db_connect() -- 18:16:20.928 DEBUG [13229]: Database connection successful -- 18:16:20.928 INFO [13229]: _SERVER found -- 18:16:20.928 INFO [13229]: REMOTE_ADDR = 10.0.0.15 -- 18:16:20.928 INFO [13229]: SERVER_NAME = works.coregrade.com -- 18:16:20.928 INFO [13229]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:20.928 INFO [13229]: QUERY_STRING = -- 18:16:20.928 INFO [13229]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:20.972 INFO [13229]: COREGRADE is stopping... -- 18:16:20.972 DEBUG [13229]: Closing database connection -- 18:16:20.972 SQL [13229]: pgsql_close() -- 18:16:20.991 INFO [9476]: COREGRADE is starting... -- 18:16:20.991 INFO [9476]: Version from config: 1.0 -- 18:16:20.991 DEBUG [9476]: Connecting to database... -- 18:16:20.991 DEBUG [9476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:20.991 SQL [9476]: pgsql_db_connect() -- 18:16:21.006 INFO [13787]: COREGRADE is starting... -- 18:16:21.006 INFO [13787]: Version from config: 1.0 -- 18:16:21.006 DEBUG [13787]: Connecting to database... -- 18:16:21.006 DEBUG [13787]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:21.007 SQL [13787]: pgsql_db_connect() -- 18:16:20.995 DEBUG [9476]: Database connection successful -- 18:16:20.995 INFO [9476]: _SERVER found -- 18:16:20.995 INFO [9476]: REMOTE_ADDR = 10.0.0.15 -- 18:16:20.995 INFO [9476]: SERVER_NAME = works.coregrade.com -- 18:16:20.995 INFO [9476]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:20.995 INFO [9476]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:20.995 INFO [9476]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:21.009 INFO [9476]: COREGRADE is stopping... -- 18:16:21.009 DEBUG [9476]: Closing database connection -- 18:16:21.009 SQL [9476]: pgsql_close() -- 18:16:21.011 DEBUG [13787]: Database connection successful -- 18:16:21.011 INFO [13787]: _SERVER found -- 18:16:21.011 INFO [13787]: REMOTE_ADDR = 10.0.0.15 -- 18:16:21.011 INFO [13787]: SERVER_NAME = works.coregrade.com -- 18:16:21.011 INFO [13787]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:21.011 INFO [13787]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:21.011 INFO [13787]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:21.026 INFO [13787]: COREGRADE is stopping... -- 18:16:21.026 DEBUG [13787]: Closing database connection -- 18:16:21.026 SQL [13787]: pgsql_close() -- 18:16:21.262 INFO [13787]: COREGRADE is starting... -- 18:16:21.262 INFO [13229]: COREGRADE is starting... -- 18:16:21.263 INFO [13229]: Version from config: 1.0 -- 18:16:21.263 DEBUG [13229]: Connecting to database... -- 18:16:21.263 INFO [13787]: Version from config: 1.0 -- 18:16:21.263 DEBUG [13787]: Connecting to database... -- 18:16:21.263 DEBUG [13229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:21.263 DEBUG [13787]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:21.263 SQL [13229]: pgsql_db_connect() -- 18:16:21.263 SQL [13787]: pgsql_db_connect() -- 18:16:21.267 DEBUG [13787]: Database connection successful -- 18:16:21.267 INFO [13787]: _SERVER found -- 18:16:21.267 INFO [13787]: REMOTE_ADDR = 10.0.0.15 -- 18:16:21.267 INFO [13787]: SERVER_NAME = works.coregrade.com -- 18:16:21.267 INFO [13787]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:21.267 INFO [13787]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:21.267 INFO [13787]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:21.280 INFO [13787]: COREGRADE is stopping... -- 18:16:21.267 DEBUG [13229]: Database connection successful -- 18:16:21.267 INFO [13229]: _SERVER found -- 18:16:21.267 INFO [13229]: REMOTE_ADDR = 10.0.0.15 -- 18:16:21.267 INFO [13229]: SERVER_NAME = works.coregrade.com -- 18:16:21.267 INFO [13229]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:21.267 INFO [13229]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:21.267 INFO [13229]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:21.280 INFO [13229]: COREGRADE is stopping... -- 18:16:21.280 DEBUG [13787]: Closing database connection -- 18:16:21.280 DEBUG [13229]: Closing database connection -- 18:16:21.280 SQL [13787]: pgsql_close() -- 18:16:21.280 SQL [13229]: pgsql_close() -- 18:16:22.247 INFO [13787]: COREGRADE is starting... -- 18:16:22.247 INFO [13787]: Version from config: 1.0 -- 18:16:22.247 DEBUG [13787]: Connecting to database... -- 18:16:22.247 DEBUG [13787]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:22.247 SQL [13787]: pgsql_db_connect() -- 18:16:22.248 INFO [9476]: COREGRADE is starting... -- 18:16:22.249 INFO [9476]: Version from config: 1.0 -- 18:16:22.249 DEBUG [9476]: Connecting to database... -- 18:16:22.249 DEBUG [9476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:22.249 SQL [9476]: pgsql_db_connect() -- 18:16:22.253 INFO [13229]: COREGRADE is starting... -- 18:16:22.254 INFO [13229]: Version from config: 1.0 -- 18:16:22.254 DEBUG [13229]: Connecting to database... -- 18:16:22.254 DEBUG [13229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:22.254 SQL [13229]: pgsql_db_connect() -- 18:16:22.252 DEBUG [13787]: Database connection successful -- 18:16:22.252 INFO [13787]: _SERVER found -- 18:16:22.252 INFO [13787]: REMOTE_ADDR = 10.0.0.15 -- 18:16:22.252 INFO [13787]: SERVER_NAME = works.coregrade.com -- 18:16:22.252 INFO [13787]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:22.252 INFO [13787]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:22.252 INFO [13787]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:22.265 INFO [13787]: COREGRADE is stopping... -- 18:16:22.265 DEBUG [13787]: Closing database connection -- 18:16:22.265 SQL [13787]: pgsql_close() -- 18:16:22.253 DEBUG [9476]: Database connection successful -- 18:16:22.253 INFO [9476]: _SERVER found -- 18:16:22.253 INFO [9476]: REMOTE_ADDR = 10.0.0.15 -- 18:16:22.253 INFO [9476]: SERVER_NAME = works.coregrade.com -- 18:16:22.253 INFO [9476]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:22.253 INFO [9476]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:22.253 INFO [9476]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:22.265 INFO [9476]: COREGRADE is stopping... -- 18:16:22.265 DEBUG [9476]: Closing database connection -- 18:16:22.265 SQL [9476]: pgsql_close() -- 18:16:22.258 DEBUG [13229]: Database connection successful -- 18:16:22.258 INFO [13229]: _SERVER found -- 18:16:22.258 INFO [13229]: REMOTE_ADDR = 10.0.0.15 -- 18:16:22.258 INFO [13229]: SERVER_NAME = works.coregrade.com -- 18:16:22.258 INFO [13229]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:22.258 INFO [13229]: QUERY_STRING = -- 18:16:22.258 INFO [13229]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:22.293 INFO [13229]: COREGRADE is stopping... -- 18:16:22.293 DEBUG [13229]: Closing database connection -- 18:16:22.293 SQL [13229]: pgsql_close() -- 18:16:22.352 INFO [9476]: COREGRADE is starting... -- 18:16:22.353 INFO [9476]: Version from config: 1.0 -- 18:16:22.353 DEBUG [9476]: Connecting to database... -- 18:16:22.353 DEBUG [9476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:22.353 SQL [9476]: pgsql_db_connect() -- 18:16:22.356 INFO [13229]: COREGRADE is starting... -- 18:16:22.356 INFO [13229]: Version from config: 1.0 -- 18:16:22.356 DEBUG [13229]: Connecting to database... -- 18:16:22.356 DEBUG [13229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:22.356 SQL [13229]: pgsql_db_connect() -- 18:16:22.357 DEBUG [9476]: Database connection successful -- 18:16:22.357 INFO [9476]: _SERVER found -- 18:16:22.357 INFO [9476]: REMOTE_ADDR = 10.0.0.15 -- 18:16:22.357 INFO [9476]: SERVER_NAME = works.coregrade.com -- 18:16:22.357 INFO [9476]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:22.357 INFO [9476]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:22.357 INFO [9476]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:22.369 INFO [9476]: COREGRADE is stopping... -- 18:16:22.370 DEBUG [9476]: Closing database connection -- 18:16:22.370 SQL [9476]: pgsql_close() -- 18:16:22.360 DEBUG [13229]: Database connection successful -- 18:16:22.360 INFO [13229]: _SERVER found -- 18:16:22.360 INFO [13229]: REMOTE_ADDR = 10.0.0.15 -- 18:16:22.360 INFO [13229]: SERVER_NAME = works.coregrade.com -- 18:16:22.360 INFO [13229]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:22.360 INFO [13229]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:22.360 INFO [13229]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:22.373 INFO [13229]: COREGRADE is stopping... -- 18:16:22.373 DEBUG [13229]: Closing database connection -- 18:16:22.373 SQL [13229]: pgsql_close() -- 18:16:23.473 INFO [9476]: COREGRADE is starting... -- 18:16:23.473 INFO [9476]: Version from config: 1.0 -- 18:16:23.473 DEBUG [9476]: Connecting to database... -- 18:16:23.473 DEBUG [9476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:23.473 SQL [9476]: pgsql_db_connect() -- 18:16:23.474 INFO [13787]: COREGRADE is starting... -- 18:16:23.474 INFO [13787]: Version from config: 1.0 -- 18:16:23.474 DEBUG [13787]: Connecting to database... -- 18:16:23.474 DEBUG [13787]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:23.474 SQL [13787]: pgsql_db_connect() -- 18:16:23.477 INFO [13229]: COREGRADE is starting... -- 18:16:23.478 INFO [13229]: Version from config: 1.0 -- 18:16:23.478 DEBUG [13229]: Connecting to database... -- 18:16:23.478 DEBUG [13229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:23.478 SQL [13229]: pgsql_db_connect() -- 18:16:23.478 DEBUG [9476]: Database connection successful -- 18:16:23.478 INFO [9476]: _SERVER found -- 18:16:23.478 INFO [9476]: REMOTE_ADDR = 10.0.0.15 -- 18:16:23.478 INFO [9476]: SERVER_NAME = works.coregrade.com -- 18:16:23.478 INFO [9476]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:23.478 INFO [9476]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:23.478 INFO [9476]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:23.491 INFO [9476]: COREGRADE is stopping... -- 18:16:23.491 DEBUG [9476]: Closing database connection -- 18:16:23.491 SQL [9476]: pgsql_close() -- 18:16:23.479 DEBUG [13787]: Database connection successful -- 18:16:23.479 INFO [13787]: _SERVER found -- 18:16:23.479 INFO [13787]: REMOTE_ADDR = 10.0.0.15 -- 18:16:23.479 INFO [13787]: SERVER_NAME = works.coregrade.com -- 18:16:23.479 INFO [13787]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:23.479 INFO [13787]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:23.479 INFO [13787]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:23.495 INFO [13787]: COREGRADE is stopping... -- 18:16:23.495 DEBUG [13787]: Closing database connection -- 18:16:23.495 SQL [13787]: pgsql_close() -- 18:16:23.482 DEBUG [13229]: Database connection successful -- 18:16:23.482 INFO [13229]: _SERVER found -- 18:16:23.482 INFO [13229]: REMOTE_ADDR = 10.0.0.15 -- 18:16:23.482 INFO [13229]: SERVER_NAME = works.coregrade.com -- 18:16:23.482 INFO [13229]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:23.482 INFO [13229]: QUERY_STRING = -- 18:16:23.482 INFO [13229]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:23.516 INFO [13229]: COREGRADE is stopping... -- 18:16:23.516 DEBUG [13229]: Closing database connection -- 18:16:23.516 SQL [13229]: pgsql_close() -- 18:16:23.576 INFO [13787]: COREGRADE is starting... -- 18:16:23.576 INFO [13787]: Version from config: 1.0 -- 18:16:23.576 DEBUG [13787]: Connecting to database... -- 18:16:23.576 DEBUG [13787]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:23.576 SQL [13787]: pgsql_db_connect() -- 18:16:23.578 INFO [13229]: COREGRADE is starting... -- 18:16:23.578 INFO [13229]: Version from config: 1.0 -- 18:16:23.578 DEBUG [13229]: Connecting to database... -- 18:16:23.578 DEBUG [13229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:23.578 SQL [13229]: pgsql_db_connect() -- 18:16:23.580 DEBUG [13787]: Database connection successful -- 18:16:23.580 INFO [13787]: _SERVER found -- 18:16:23.580 INFO [13787]: REMOTE_ADDR = 10.0.0.15 -- 18:16:23.580 INFO [13787]: SERVER_NAME = works.coregrade.com -- 18:16:23.580 INFO [13787]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:23.580 INFO [13787]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:23.580 INFO [13787]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:23.593 INFO [13787]: COREGRADE is stopping... -- 18:16:23.593 DEBUG [13787]: Closing database connection -- 18:16:23.593 SQL [13787]: pgsql_close() -- 18:16:23.582 DEBUG [13229]: Database connection successful -- 18:16:23.582 INFO [13229]: _SERVER found -- 18:16:23.582 INFO [13229]: REMOTE_ADDR = 10.0.0.15 -- 18:16:23.582 INFO [13229]: SERVER_NAME = works.coregrade.com -- 18:16:23.582 INFO [13229]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:23.582 INFO [13229]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:23.582 INFO [13229]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:23.594 INFO [13229]: COREGRADE is stopping... -- 18:16:23.594 DEBUG [13229]: Closing database connection -- 18:16:23.594 SQL [13229]: pgsql_close() -- 18:16:24.074 INFO [13787]: COREGRADE is starting... -- 18:16:24.074 INFO [13787]: Version from config: 1.0 -- 18:16:24.074 DEBUG [13787]: Connecting to database... -- 18:16:24.074 DEBUG [13787]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:24.074 SQL [13787]: pgsql_db_connect() -- 18:16:24.075 INFO [9476]: COREGRADE is starting... -- 18:16:24.076 INFO [9476]: Version from config: 1.0 -- 18:16:24.076 DEBUG [9476]: Connecting to database... -- 18:16:24.076 DEBUG [9476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:24.076 SQL [9476]: pgsql_db_connect() -- 18:16:24.079 INFO [13229]: COREGRADE is starting... -- 18:16:24.079 INFO [13229]: Version from config: 1.0 -- 18:16:24.079 DEBUG [13229]: Connecting to database... -- 18:16:24.079 DEBUG [13229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:24.079 SQL [13229]: pgsql_db_connect() -- 18:16:24.080 DEBUG [9476]: Database connection successful -- 18:16:24.080 INFO [9476]: _SERVER found -- 18:16:24.080 INFO [9476]: REMOTE_ADDR = 10.0.0.15 -- 18:16:24.080 INFO [9476]: SERVER_NAME = works.coregrade.com -- 18:16:24.080 INFO [9476]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:24.080 INFO [9476]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:24.080 INFO [9476]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:24.092 INFO [9476]: COREGRADE is stopping... -- 18:16:24.092 DEBUG [9476]: Closing database connection -- 18:16:24.092 SQL [9476]: pgsql_close() -- 18:16:24.080 DEBUG [13787]: Database connection successful -- 18:16:24.080 INFO [13787]: _SERVER found -- 18:16:24.080 INFO [13787]: REMOTE_ADDR = 10.0.0.15 -- 18:16:24.080 INFO [13787]: SERVER_NAME = works.coregrade.com -- 18:16:24.080 INFO [13787]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:24.080 INFO [13787]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:24.080 INFO [13787]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:24.094 INFO [13787]: COREGRADE is stopping... -- 18:16:24.094 DEBUG [13787]: Closing database connection -- 18:16:24.094 SQL [13787]: pgsql_close() -- 18:16:24.083 DEBUG [13229]: Database connection successful -- 18:16:24.083 INFO [13229]: _SERVER found -- 18:16:24.083 INFO [13229]: REMOTE_ADDR = 10.0.0.15 -- 18:16:24.083 INFO [13229]: SERVER_NAME = works.coregrade.com -- 18:16:24.083 INFO [13229]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:24.083 INFO [13229]: QUERY_STRING = -- 18:16:24.083 INFO [13229]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:24.118 INFO [13229]: COREGRADE is stopping... -- 18:16:24.118 DEBUG [13229]: Closing database connection -- 18:16:24.118 SQL [13229]: pgsql_close() -- 18:16:24.301 INFO [13791]: COREGRADE is starting... -- 18:16:24.302 INFO [13791]: Version from config: 1.0 -- 18:16:24.302 DEBUG [13791]: Connecting to database... -- 18:16:24.302 DEBUG [13791]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:24.302 SQL [13791]: pgsql_db_connect() -- 18:16:24.306 INFO [13787]: COREGRADE is starting... -- 18:16:24.307 INFO [13787]: Version from config: 1.0 -- 18:16:24.307 DEBUG [13787]: Connecting to database... -- 18:16:24.307 DEBUG [13787]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:24.307 SQL [13787]: pgsql_db_connect() -- 18:16:24.307 DEBUG [13791]: Database connection successful -- 18:16:24.307 INFO [13791]: _SERVER found -- 18:16:24.307 INFO [13791]: REMOTE_ADDR = 10.0.0.15 -- 18:16:24.307 INFO [13791]: SERVER_NAME = works.coregrade.com -- 18:16:24.307 INFO [13791]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:24.307 INFO [13791]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:24.307 INFO [13791]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:24.322 INFO [13791]: COREGRADE is stopping... -- 18:16:24.322 DEBUG [13791]: Closing database connection -- 18:16:24.322 SQL [13791]: pgsql_close() -- 18:16:24.312 DEBUG [13787]: Database connection successful -- 18:16:24.312 INFO [13787]: _SERVER found -- 18:16:24.312 INFO [13787]: REMOTE_ADDR = 10.0.0.15 -- 18:16:24.312 INFO [13787]: SERVER_NAME = works.coregrade.com -- 18:16:24.312 INFO [13787]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:24.312 INFO [13787]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:24.312 INFO [13787]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:24.327 INFO [13787]: COREGRADE is stopping... -- 18:16:24.327 DEBUG [13787]: Closing database connection -- 18:16:24.327 SQL [13787]: pgsql_close() -- 18:16:24.540 INFO [13791]: COREGRADE is starting... -- 18:16:24.541 INFO [13791]: Version from config: 1.0 -- 18:16:24.541 DEBUG [13791]: Connecting to database... -- 18:16:24.541 DEBUG [13791]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:24.541 SQL [13791]: pgsql_db_connect() -- 18:16:24.545 DEBUG [13791]: Database connection successful -- 18:16:24.545 INFO [13791]: _SERVER found -- 18:16:24.545 INFO [13791]: REMOTE_ADDR = 10.0.0.15 -- 18:16:24.545 INFO [13791]: SERVER_NAME = works.coregrade.com -- 18:16:24.545 INFO [13791]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:24.545 INFO [13791]: QUERY_STRING = -- 18:16:24.545 INFO [13791]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:24.587 INFO [13791]: COREGRADE is stopping... -- 18:16:24.587 DEBUG [13791]: Closing database connection -- 18:16:24.587 SQL [13791]: pgsql_close() -- 18:16:24.611 INFO [13787]: COREGRADE is starting... -- 18:16:24.611 INFO [13787]: Version from config: 1.0 -- 18:16:24.611 DEBUG [13787]: Connecting to database... -- 18:16:24.611 DEBUG [13787]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:24.611 SQL [13787]: pgsql_db_connect() -- 18:16:24.627 INFO [9476]: COREGRADE is starting... -- 18:16:24.627 INFO [9476]: Version from config: 1.0 -- 18:16:24.627 DEBUG [9476]: Connecting to database... -- 18:16:24.627 DEBUG [9476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:24.627 SQL [9476]: pgsql_db_connect() -- 18:16:24.615 DEBUG [13787]: Database connection successful -- 18:16:24.615 INFO [13787]: _SERVER found -- 18:16:24.615 INFO [13787]: REMOTE_ADDR = 10.0.0.15 -- 18:16:24.615 INFO [13787]: SERVER_NAME = works.coregrade.com -- 18:16:24.615 INFO [13787]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:24.615 INFO [13787]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:24.615 INFO [13787]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:24.628 INFO [13787]: COREGRADE is stopping... -- 18:16:24.628 DEBUG [13787]: Closing database connection -- 18:16:24.628 SQL [13787]: pgsql_close() -- 18:16:24.632 DEBUG [9476]: Database connection successful -- 18:16:24.632 INFO [9476]: _SERVER found -- 18:16:24.632 INFO [9476]: REMOTE_ADDR = 10.0.0.15 -- 18:16:24.632 INFO [9476]: SERVER_NAME = works.coregrade.com -- 18:16:24.632 INFO [9476]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:24.632 INFO [9476]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:24.632 INFO [9476]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:24.644 INFO [9476]: COREGRADE is stopping... -- 18:16:24.644 DEBUG [9476]: Closing database connection -- 18:16:24.644 SQL [9476]: pgsql_close() -- 18:16:24.712 INFO [9476]: COREGRADE is starting... -- 18:16:24.712 INFO [9476]: Version from config: 1.0 -- 18:16:24.712 DEBUG [9476]: Connecting to database... -- 18:16:24.712 DEBUG [9476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:24.712 SQL [9476]: pgsql_db_connect() -- 18:16:24.716 DEBUG [9476]: Database connection successful -- 18:16:24.716 INFO [9476]: _SERVER found -- 18:16:24.716 INFO [9476]: REMOTE_ADDR = 10.0.0.15 -- 18:16:24.716 INFO [9476]: SERVER_NAME = works.coregrade.com -- 18:16:24.716 INFO [9476]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:24.716 INFO [9476]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:24.716 INFO [9476]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:24.729 INFO [9476]: COREGRADE is stopping... -- 18:16:24.729 DEBUG [9476]: Closing database connection -- 18:16:24.729 SQL [9476]: pgsql_close() -- 18:16:24.732 INFO [9476]: COREGRADE is starting... -- 18:16:24.733 INFO [9476]: Version from config: 1.0 -- 18:16:24.733 DEBUG [9476]: Connecting to database... -- 18:16:24.733 DEBUG [9476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:24.733 SQL [9476]: pgsql_db_connect() -- 18:16:24.737 DEBUG [9476]: Database connection successful -- 18:16:24.737 INFO [9476]: _SERVER found -- 18:16:24.737 INFO [9476]: REMOTE_ADDR = 10.0.0.15 -- 18:16:24.737 INFO [9476]: SERVER_NAME = works.coregrade.com -- 18:16:24.737 INFO [9476]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:24.737 INFO [9476]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:24.737 INFO [9476]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:24.750 INFO [9476]: COREGRADE is stopping... -- 18:16:24.750 DEBUG [9476]: Closing database connection -- 18:16:24.750 SQL [9476]: pgsql_close() -- 18:16:25.254 INFO [9476]: COREGRADE is starting... -- 18:16:25.254 INFO [9476]: Version from config: 1.0 -- 18:16:25.254 DEBUG [9476]: Connecting to database... -- 18:16:25.254 DEBUG [9476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:25.254 SQL [9476]: pgsql_db_connect() -- 18:16:25.260 INFO [13791]: COREGRADE is starting... -- 18:16:25.260 INFO [13791]: Version from config: 1.0 -- 18:16:25.260 DEBUG [13791]: Connecting to database... -- 18:16:25.260 DEBUG [13791]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:25.260 SQL [13791]: pgsql_db_connect() -- 18:16:25.262 INFO [13787]: COREGRADE is starting... -- 18:16:25.262 INFO [13787]: Version from config: 1.0 -- 18:16:25.262 DEBUG [13787]: Connecting to database... -- 18:16:25.262 DEBUG [13787]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:25.262 SQL [13787]: pgsql_db_connect() -- 18:16:25.258 DEBUG [9476]: Database connection successful -- 18:16:25.258 INFO [9476]: _SERVER found -- 18:16:25.258 INFO [9476]: REMOTE_ADDR = 10.0.0.15 -- 18:16:25.258 INFO [9476]: SERVER_NAME = works.coregrade.com -- 18:16:25.258 INFO [9476]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:25.258 INFO [9476]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:25.258 INFO [9476]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:25.272 INFO [9476]: COREGRADE is stopping... -- 18:16:25.272 DEBUG [9476]: Closing database connection -- 18:16:25.272 SQL [9476]: pgsql_close() -- 18:16:25.266 DEBUG [13787]: Database connection successful -- 18:16:25.266 INFO [13787]: _SERVER found -- 18:16:25.266 INFO [13787]: REMOTE_ADDR = 10.0.0.15 -- 18:16:25.266 INFO [13787]: SERVER_NAME = works.coregrade.com -- 18:16:25.266 INFO [13787]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:25.266 INFO [13787]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:25.266 INFO [13787]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:25.278 INFO [13787]: COREGRADE is stopping... -- 18:16:25.278 DEBUG [13787]: Closing database connection -- 18:16:25.278 SQL [13787]: pgsql_close() -- 18:16:25.264 DEBUG [13791]: Database connection successful -- 18:16:25.264 INFO [13791]: _SERVER found -- 18:16:25.264 INFO [13791]: REMOTE_ADDR = 10.0.0.15 -- 18:16:25.264 INFO [13791]: SERVER_NAME = works.coregrade.com -- 18:16:25.264 INFO [13791]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:25.265 INFO [13791]: QUERY_STRING = -- 18:16:25.265 INFO [13791]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:25.299 INFO [13791]: COREGRADE is stopping... -- 18:16:25.299 DEBUG [13791]: Closing database connection -- 18:16:25.299 SQL [13791]: pgsql_close() -- 18:16:25.353 INFO [13787]: COREGRADE is starting... -- 18:16:25.353 INFO [13791]: COREGRADE is starting... -- 18:16:25.353 INFO [13791]: Version from config: 1.0 -- 18:16:25.353 DEBUG [13791]: Connecting to database... -- 18:16:25.353 INFO [13787]: Version from config: 1.0 -- 18:16:25.353 DEBUG [13787]: Connecting to database... -- 18:16:25.353 DEBUG [13787]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:25.353 DEBUG [13791]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:25.353 SQL [13787]: pgsql_db_connect() -- 18:16:25.353 SQL [13791]: pgsql_db_connect() -- 18:16:25.357 DEBUG [13791]: Database connection successful -- 18:16:25.357 INFO [13791]: _SERVER found -- 18:16:25.357 INFO [13791]: REMOTE_ADDR = 10.0.0.15 -- 18:16:25.357 INFO [13791]: SERVER_NAME = works.coregrade.com -- 18:16:25.357 INFO [13791]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:25.357 INFO [13791]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:25.357 INFO [13791]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:25.368 INFO [13791]: COREGRADE is stopping... -- 18:16:25.368 DEBUG [13791]: Closing database connection -- 18:16:25.368 SQL [13791]: pgsql_close() -- 18:16:25.357 DEBUG [13787]: Database connection successful -- 18:16:25.357 INFO [13787]: _SERVER found -- 18:16:25.357 INFO [13787]: REMOTE_ADDR = 10.0.0.15 -- 18:16:25.357 INFO [13787]: SERVER_NAME = works.coregrade.com -- 18:16:25.357 INFO [13787]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:25.357 INFO [13787]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:25.357 INFO [13787]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:25.370 INFO [13787]: COREGRADE is stopping... -- 18:16:25.370 DEBUG [13787]: Closing database connection -- 18:16:25.370 SQL [13787]: pgsql_close() -- 18:16:25.806 INFO [13787]: COREGRADE is starting... -- 18:16:25.807 INFO [13787]: Version from config: 1.0 -- 18:16:25.807 DEBUG [13787]: Connecting to database... -- 18:16:25.807 DEBUG [13787]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:25.807 SQL [13787]: pgsql_db_connect() -- 18:16:25.812 INFO [13791]: COREGRADE is starting... -- 18:16:25.812 INFO [13791]: Version from config: 1.0 -- 18:16:25.812 DEBUG [13791]: Connecting to database... -- 18:16:25.812 DEBUG [13791]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:25.812 SQL [13791]: pgsql_db_connect() -- 18:16:25.814 INFO [9476]: COREGRADE is starting... -- 18:16:25.814 INFO [9476]: Version from config: 1.0 -- 18:16:25.814 DEBUG [9476]: Connecting to database... -- 18:16:25.814 DEBUG [9476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:25.814 SQL [9476]: pgsql_db_connect() -- 18:16:25.811 DEBUG [13787]: Database connection successful -- 18:16:25.811 INFO [13787]: _SERVER found -- 18:16:25.811 INFO [13787]: REMOTE_ADDR = 10.0.0.15 -- 18:16:25.811 INFO [13787]: SERVER_NAME = works.coregrade.com -- 18:16:25.811 INFO [13787]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:25.811 INFO [13787]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:25.811 INFO [13787]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:25.824 INFO [13787]: COREGRADE is stopping... -- 18:16:25.824 DEBUG [13787]: Closing database connection -- 18:16:25.824 SQL [13787]: pgsql_close() -- 18:16:25.818 DEBUG [9476]: Database connection successful -- 18:16:25.818 INFO [9476]: _SERVER found -- 18:16:25.818 INFO [9476]: REMOTE_ADDR = 10.0.0.15 -- 18:16:25.818 INFO [9476]: SERVER_NAME = works.coregrade.com -- 18:16:25.818 INFO [9476]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:25.818 INFO [9476]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:25.818 INFO [9476]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:25.830 INFO [9476]: COREGRADE is stopping... -- 18:16:25.830 DEBUG [9476]: Closing database connection -- 18:16:25.830 SQL [9476]: pgsql_close() -- 18:16:25.817 DEBUG [13791]: Database connection successful -- 18:16:25.817 INFO [13791]: _SERVER found -- 18:16:25.817 INFO [13791]: REMOTE_ADDR = 10.0.0.15 -- 18:16:25.817 INFO [13791]: SERVER_NAME = works.coregrade.com -- 18:16:25.817 INFO [13791]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:25.817 INFO [13791]: QUERY_STRING = -- 18:16:25.817 INFO [13791]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:25.850 INFO [13791]: COREGRADE is stopping... -- 18:16:25.850 DEBUG [13791]: Closing database connection -- 18:16:25.850 SQL [13791]: pgsql_close() -- 18:16:25.908 INFO [9476]: COREGRADE is starting... -- 18:16:25.909 INFO [9476]: Version from config: 1.0 -- 18:16:25.909 DEBUG [9476]: Connecting to database... -- 18:16:25.909 DEBUG [9476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:25.909 SQL [9476]: pgsql_db_connect() -- 18:16:25.914 INFO [13791]: COREGRADE is starting... -- 18:16:25.914 INFO [13791]: Version from config: 1.0 -- 18:16:25.914 DEBUG [13791]: Connecting to database... -- 18:16:25.914 DEBUG [13791]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:25.914 SQL [13791]: pgsql_db_connect() -- 18:16:25.913 DEBUG [9476]: Database connection successful -- 18:16:25.913 INFO [9476]: _SERVER found -- 18:16:25.913 INFO [9476]: REMOTE_ADDR = 10.0.0.15 -- 18:16:25.913 INFO [9476]: SERVER_NAME = works.coregrade.com -- 18:16:25.913 INFO [9476]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:25.913 INFO [9476]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:25.913 INFO [9476]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:25.926 INFO [9476]: COREGRADE is stopping... -- 18:16:25.926 DEBUG [9476]: Closing database connection -- 18:16:25.926 SQL [9476]: pgsql_close() -- 18:16:25.918 DEBUG [13791]: Database connection successful -- 18:16:25.918 INFO [13791]: _SERVER found -- 18:16:25.918 INFO [13791]: REMOTE_ADDR = 10.0.0.15 -- 18:16:25.918 INFO [13791]: SERVER_NAME = works.coregrade.com -- 18:16:25.918 INFO [13791]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:25.918 INFO [13791]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:25.918 INFO [13791]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:25.930 INFO [13791]: COREGRADE is stopping... -- 18:16:25.930 DEBUG [13791]: Closing database connection -- 18:16:25.930 SQL [13791]: pgsql_close() -- 18:16:26.276 INFO [13791]: COREGRADE is starting... -- 18:16:26.276 INFO [9476]: COREGRADE is starting... -- 18:16:26.276 INFO [13791]: Version from config: 1.0 -- 18:16:26.276 DEBUG [13791]: Connecting to database... -- 18:16:26.276 INFO [9476]: Version from config: 1.0 -- 18:16:26.276 DEBUG [9476]: Connecting to database... -- 18:16:26.276 DEBUG [13791]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:26.276 DEBUG [9476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:26.276 SQL [13791]: pgsql_db_connect() -- 18:16:26.276 SQL [9476]: pgsql_db_connect() -- 18:16:26.284 INFO [13787]: COREGRADE is starting... -- 18:16:26.285 INFO [13787]: Version from config: 1.0 -- 18:16:26.285 DEBUG [13787]: Connecting to database... -- 18:16:26.285 DEBUG [13787]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:26.285 SQL [13787]: pgsql_db_connect() -- 18:16:26.280 DEBUG [9476]: Database connection successful -- 18:16:26.280 INFO [9476]: _SERVER found -- 18:16:26.280 INFO [9476]: REMOTE_ADDR = 10.0.0.15 -- 18:16:26.280 INFO [9476]: SERVER_NAME = works.coregrade.com -- 18:16:26.280 INFO [9476]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:26.280 INFO [9476]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:26.280 INFO [9476]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:26.294 INFO [9476]: COREGRADE is stopping... -- 18:16:26.294 DEBUG [9476]: Closing database connection -- 18:16:26.294 SQL [9476]: pgsql_close() -- 18:16:26.289 DEBUG [13787]: Database connection successful -- 18:16:26.289 INFO [13787]: _SERVER found -- 18:16:26.289 INFO [13787]: REMOTE_ADDR = 10.0.0.15 -- 18:16:26.289 INFO [13787]: SERVER_NAME = works.coregrade.com -- 18:16:26.289 INFO [13787]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:26.289 INFO [13787]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:26.289 INFO [13787]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:26.302 INFO [13787]: COREGRADE is stopping... -- 18:16:26.302 DEBUG [13787]: Closing database connection -- 18:16:26.302 SQL [13787]: pgsql_close() -- 18:16:26.280 DEBUG [13791]: Database connection successful -- 18:16:26.280 INFO [13791]: _SERVER found -- 18:16:26.280 INFO [13791]: REMOTE_ADDR = 10.0.0.15 -- 18:16:26.280 INFO [13791]: SERVER_NAME = works.coregrade.com -- 18:16:26.280 INFO [13791]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:26.280 INFO [13791]: QUERY_STRING = -- 18:16:26.280 INFO [13791]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:26.312 INFO [13791]: COREGRADE is stopping... -- 18:16:26.312 DEBUG [13791]: Closing database connection -- 18:16:26.312 SQL [13791]: pgsql_close() -- 18:16:26.361 INFO [13787]: COREGRADE is starting... -- 18:16:26.361 INFO [13787]: Version from config: 1.0 -- 18:16:26.361 DEBUG [13787]: Connecting to database... -- 18:16:26.361 DEBUG [13787]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:26.361 SQL [13787]: pgsql_db_connect() -- 18:16:26.367 INFO [13791]: COREGRADE is starting... -- 18:16:26.367 INFO [13791]: Version from config: 1.0 -- 18:16:26.367 DEBUG [13791]: Connecting to database... -- 18:16:26.367 DEBUG [13791]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:26.368 SQL [13791]: pgsql_db_connect() -- 18:16:26.365 DEBUG [13787]: Database connection successful -- 18:16:26.365 INFO [13787]: _SERVER found -- 18:16:26.365 INFO [13787]: REMOTE_ADDR = 10.0.0.15 -- 18:16:26.365 INFO [13787]: SERVER_NAME = works.coregrade.com -- 18:16:26.365 INFO [13787]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:26.365 INFO [13787]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:26.365 INFO [13787]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:26.378 INFO [13787]: COREGRADE is stopping... -- 18:16:26.378 DEBUG [13787]: Closing database connection -- 18:16:26.378 SQL [13787]: pgsql_close() -- 18:16:26.371 DEBUG [13791]: Database connection successful -- 18:16:26.371 INFO [13791]: _SERVER found -- 18:16:26.371 INFO [13791]: REMOTE_ADDR = 10.0.0.15 -- 18:16:26.371 INFO [13791]: SERVER_NAME = works.coregrade.com -- 18:16:26.371 INFO [13791]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:26.371 INFO [13791]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:26.371 INFO [13791]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:26.383 INFO [13791]: COREGRADE is stopping... -- 18:16:26.383 DEBUG [13791]: Closing database connection -- 18:16:26.383 SQL [13791]: pgsql_close() -- 18:16:26.758 INFO [13787]: COREGRADE is starting... -- 18:16:26.758 INFO [13787]: Version from config: 1.0 -- 18:16:26.758 DEBUG [13787]: Connecting to database... -- 18:16:26.758 DEBUG [13787]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:26.758 SQL [13787]: pgsql_db_connect() -- 18:16:26.764 INFO [13791]: COREGRADE is starting... -- 18:16:26.765 INFO [13791]: Version from config: 1.0 -- 18:16:26.765 DEBUG [13791]: Connecting to database... -- 18:16:26.765 DEBUG [13791]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:26.765 SQL [13791]: pgsql_db_connect() -- 18:16:26.766 INFO [9476]: COREGRADE is starting... -- 18:16:26.767 INFO [9476]: Version from config: 1.0 -- 18:16:26.767 DEBUG [9476]: Connecting to database... -- 18:16:26.767 DEBUG [9476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:26.767 SQL [9476]: pgsql_db_connect() -- 18:16:26.762 DEBUG [13787]: Database connection successful -- 18:16:26.762 INFO [13787]: _SERVER found -- 18:16:26.762 INFO [13787]: REMOTE_ADDR = 10.0.0.15 -- 18:16:26.762 INFO [13787]: SERVER_NAME = works.coregrade.com -- 18:16:26.762 INFO [13787]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:26.762 INFO [13787]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:26.762 INFO [13787]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:26.776 INFO [13787]: COREGRADE is stopping... -- 18:16:26.776 DEBUG [13787]: Closing database connection -- 18:16:26.776 SQL [13787]: pgsql_close() -- 18:16:26.770 DEBUG [9476]: Database connection successful -- 18:16:26.770 INFO [9476]: _SERVER found -- 18:16:26.770 INFO [9476]: REMOTE_ADDR = 10.0.0.15 -- 18:16:26.770 INFO [9476]: SERVER_NAME = works.coregrade.com -- 18:16:26.770 INFO [9476]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:26.770 INFO [9476]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:26.770 INFO [9476]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:26.783 INFO [9476]: COREGRADE is stopping... -- 18:16:26.783 DEBUG [9476]: Closing database connection -- 18:16:26.783 SQL [9476]: pgsql_close() -- 18:16:26.769 DEBUG [13791]: Database connection successful -- 18:16:26.769 INFO [13791]: _SERVER found -- 18:16:26.769 INFO [13791]: REMOTE_ADDR = 10.0.0.15 -- 18:16:26.769 INFO [13791]: SERVER_NAME = works.coregrade.com -- 18:16:26.769 INFO [13791]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:26.769 INFO [13791]: QUERY_STRING = -- 18:16:26.769 INFO [13791]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:26.800 INFO [13791]: COREGRADE is stopping... -- 18:16:26.800 DEBUG [13791]: Closing database connection -- 18:16:26.800 SQL [13791]: pgsql_close() -- 18:16:26.857 INFO [9476]: COREGRADE is starting... -- 18:16:26.857 INFO [9476]: Version from config: 1.0 -- 18:16:26.857 DEBUG [9476]: Connecting to database... -- 18:16:26.857 DEBUG [9476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:26.857 SQL [9476]: pgsql_db_connect() -- 18:16:26.864 INFO [13791]: COREGRADE is starting... -- 18:16:26.864 INFO [13791]: Version from config: 1.0 -- 18:16:26.864 DEBUG [13791]: Connecting to database... -- 18:16:26.864 DEBUG [13791]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:26.864 SQL [13791]: pgsql_db_connect() -- 18:16:26.863 DEBUG [9476]: Database connection successful -- 18:16:26.863 INFO [9476]: _SERVER found -- 18:16:26.863 INFO [9476]: REMOTE_ADDR = 10.0.0.15 -- 18:16:26.863 INFO [9476]: SERVER_NAME = works.coregrade.com -- 18:16:26.863 INFO [9476]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:26.863 INFO [9476]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:26.863 INFO [9476]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:26.876 INFO [9476]: COREGRADE is stopping... -- 18:16:26.876 DEBUG [9476]: Closing database connection -- 18:16:26.876 SQL [9476]: pgsql_close() -- 18:16:26.868 DEBUG [13791]: Database connection successful -- 18:16:26.868 INFO [13791]: _SERVER found -- 18:16:26.868 INFO [13791]: REMOTE_ADDR = 10.0.0.15 -- 18:16:26.868 INFO [13791]: SERVER_NAME = works.coregrade.com -- 18:16:26.868 INFO [13791]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:26.868 INFO [13791]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:26.868 INFO [13791]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:26.880 INFO [13791]: COREGRADE is stopping... -- 18:16:26.880 DEBUG [13791]: Closing database connection -- 18:16:26.880 SQL [13791]: pgsql_close() -- 18:16:27.225 INFO [9476]: COREGRADE is starting... -- 18:16:27.225 INFO [9476]: Version from config: 1.0 -- 18:16:27.225 DEBUG [9476]: Connecting to database... -- 18:16:27.225 DEBUG [9476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:27.225 SQL [9476]: pgsql_db_connect() -- 18:16:27.230 INFO [13791]: COREGRADE is starting... -- 18:16:27.230 INFO [13791]: Version from config: 1.0 -- 18:16:27.230 DEBUG [13791]: Connecting to database... -- 18:16:27.230 DEBUG [13791]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:27.230 SQL [13791]: pgsql_db_connect() -- 18:16:27.232 INFO [13787]: COREGRADE is starting... -- 18:16:27.232 INFO [13787]: Version from config: 1.0 -- 18:16:27.232 DEBUG [13787]: Connecting to database... -- 18:16:27.232 DEBUG [13787]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:27.232 SQL [13787]: pgsql_db_connect() -- 18:16:27.229 DEBUG [9476]: Database connection successful -- 18:16:27.229 INFO [9476]: _SERVER found -- 18:16:27.229 INFO [9476]: REMOTE_ADDR = 10.0.0.15 -- 18:16:27.229 INFO [9476]: SERVER_NAME = works.coregrade.com -- 18:16:27.229 INFO [9476]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:27.229 INFO [9476]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:27.229 INFO [9476]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:27.242 INFO [9476]: COREGRADE is stopping... -- 18:16:27.242 DEBUG [9476]: Closing database connection -- 18:16:27.242 SQL [9476]: pgsql_close() -- 18:16:27.236 DEBUG [13787]: Database connection successful -- 18:16:27.236 INFO [13787]: _SERVER found -- 18:16:27.236 INFO [13787]: REMOTE_ADDR = 10.0.0.15 -- 18:16:27.236 INFO [13787]: SERVER_NAME = works.coregrade.com -- 18:16:27.236 INFO [13787]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:27.236 INFO [13787]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:27.236 INFO [13787]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:27.249 INFO [13787]: COREGRADE is stopping... -- 18:16:27.249 DEBUG [13787]: Closing database connection -- 18:16:27.249 SQL [13787]: pgsql_close() -- 18:16:27.234 DEBUG [13791]: Database connection successful -- 18:16:27.234 INFO [13791]: _SERVER found -- 18:16:27.234 INFO [13791]: REMOTE_ADDR = 10.0.0.15 -- 18:16:27.234 INFO [13791]: SERVER_NAME = works.coregrade.com -- 18:16:27.234 INFO [13791]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:27.234 INFO [13791]: QUERY_STRING = -- 18:16:27.234 INFO [13791]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:27.266 INFO [13791]: COREGRADE is stopping... -- 18:16:27.266 DEBUG [13791]: Closing database connection -- 18:16:27.266 SQL [13791]: pgsql_close() -- 18:16:27.430 INFO [13795]: COREGRADE is starting... -- 18:16:27.430 INFO [13795]: Version from config: 1.0 -- 18:16:27.430 DEBUG [13795]: Connecting to database... -- 18:16:27.430 DEBUG [13795]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:27.430 SQL [13795]: pgsql_db_connect() -- 18:16:27.435 DEBUG [13795]: Database connection successful -- 18:16:27.435 INFO [13795]: _SERVER found -- 18:16:27.435 INFO [13795]: REMOTE_ADDR = 10.0.0.15 -- 18:16:27.435 INFO [13795]: SERVER_NAME = works.coregrade.com -- 18:16:27.435 INFO [13795]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:27.435 INFO [13795]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:27.435 INFO [13795]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:27.450 INFO [13795]: COREGRADE is stopping... -- 18:16:27.450 DEBUG [13795]: Closing database connection -- 18:16:27.450 SQL [13795]: pgsql_close() -- 18:16:27.674 INFO [13795]: COREGRADE is starting... -- 18:16:27.674 INFO [13795]: Version from config: 1.0 -- 18:16:27.674 DEBUG [13795]: Connecting to database... -- 18:16:27.674 DEBUG [13795]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:27.674 SQL [13795]: pgsql_db_connect() -- 18:16:27.678 DEBUG [13795]: Database connection successful -- 18:16:27.678 INFO [13795]: _SERVER found -- 18:16:27.678 INFO [13795]: REMOTE_ADDR = 10.0.0.15 -- 18:16:27.678 INFO [13795]: SERVER_NAME = works.coregrade.com -- 18:16:27.678 INFO [13795]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:27.678 INFO [13795]: QUERY_STRING = -- 18:16:27.678 INFO [13795]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:27.719 INFO [13795]: COREGRADE is stopping... -- 18:16:27.719 DEBUG [13795]: Closing database connection -- 18:16:27.719 SQL [13795]: pgsql_close() -- 18:16:27.742 INFO [13790]: COREGRADE is starting... -- 18:16:27.742 INFO [13790]: Version from config: 1.0 -- 18:16:27.742 DEBUG [13790]: Connecting to database... -- 18:16:27.742 DEBUG [13790]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:27.742 SQL [13790]: pgsql_db_connect() -- 18:16:27.751 INFO [12733]: COREGRADE is starting... -- 18:16:27.751 INFO [12733]: Version from config: 1.0 -- 18:16:27.751 DEBUG [12733]: Connecting to database... -- 18:16:27.751 DEBUG [12733]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:27.751 SQL [12733]: pgsql_db_connect() -- 18:16:27.746 DEBUG [13790]: Database connection successful -- 18:16:27.746 INFO [13790]: _SERVER found -- 18:16:27.746 INFO [13790]: REMOTE_ADDR = 10.0.0.15 -- 18:16:27.746 INFO [13790]: SERVER_NAME = works.coregrade.com -- 18:16:27.746 INFO [13790]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:27.746 INFO [13790]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:27.746 INFO [13790]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:27.761 INFO [13790]: COREGRADE is stopping... -- 18:16:27.761 DEBUG [13790]: Closing database connection -- 18:16:27.761 SQL [13790]: pgsql_close() -- 18:16:27.755 DEBUG [12733]: Database connection successful -- 18:16:27.755 INFO [12733]: _SERVER found -- 18:16:27.755 INFO [12733]: REMOTE_ADDR = 10.0.0.15 -- 18:16:27.755 INFO [12733]: SERVER_NAME = works.coregrade.com -- 18:16:27.755 INFO [12733]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:27.755 INFO [12733]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:27.755 INFO [12733]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:27.771 INFO [12733]: COREGRADE is stopping... -- 18:16:27.771 DEBUG [12733]: Closing database connection -- 18:16:27.771 SQL [12733]: pgsql_close() -- 18:16:27.797 INFO [13790]: COREGRADE is starting... -- 18:16:27.797 INFO [13790]: Version from config: 1.0 -- 18:16:27.797 DEBUG [13790]: Connecting to database... -- 18:16:27.797 DEBUG [13790]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:27.797 SQL [13790]: pgsql_db_connect() -- 18:16:27.802 DEBUG [13790]: Database connection successful -- 18:16:27.802 INFO [13790]: _SERVER found -- 18:16:27.802 INFO [13790]: REMOTE_ADDR = 10.0.0.15 -- 18:16:27.802 INFO [13790]: SERVER_NAME = works.coregrade.com -- 18:16:27.802 INFO [13790]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:27.802 INFO [13790]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:27.802 INFO [13790]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:27.816 INFO [13790]: COREGRADE is stopping... -- 18:16:27.816 DEBUG [13790]: Closing database connection -- 18:16:27.816 SQL [13790]: pgsql_close() -- 18:16:27.849 INFO [13790]: COREGRADE is starting... -- 18:16:27.849 INFO [13790]: Version from config: 1.0 -- 18:16:27.849 DEBUG [13790]: Connecting to database... -- 18:16:27.849 DEBUG [13790]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:27.849 SQL [13790]: pgsql_db_connect() -- 18:16:27.854 DEBUG [13790]: Database connection successful -- 18:16:27.854 INFO [13790]: _SERVER found -- 18:16:27.854 INFO [13790]: REMOTE_ADDR = 10.0.0.15 -- 18:16:27.854 INFO [13790]: SERVER_NAME = works.coregrade.com -- 18:16:27.854 INFO [13790]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:27.854 INFO [13790]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:27.854 INFO [13790]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:27.867 INFO [13790]: COREGRADE is stopping... -- 18:16:27.867 DEBUG [13790]: Closing database connection -- 18:16:27.867 SQL [13790]: pgsql_close() -- 18:16:28.160 INFO [12733]: COREGRADE is starting... -- 18:16:28.161 INFO [12733]: Version from config: 1.0 -- 18:16:28.161 DEBUG [12733]: Connecting to database... -- 18:16:28.161 DEBUG [12733]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:28.161 SQL [12733]: pgsql_db_connect() -- 18:16:28.162 INFO [13790]: COREGRADE is starting... -- 18:16:28.162 INFO [13790]: Version from config: 1.0 -- 18:16:28.162 DEBUG [13790]: Connecting to database... -- 18:16:28.162 DEBUG [13790]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:28.162 SQL [13790]: pgsql_db_connect() -- 18:16:28.167 INFO [13795]: COREGRADE is starting... -- 18:16:28.168 INFO [13795]: Version from config: 1.0 -- 18:16:28.168 DEBUG [13795]: Connecting to database... -- 18:16:28.168 DEBUG [13795]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:28.168 SQL [13795]: pgsql_db_connect() -- 18:16:28.166 DEBUG [13790]: Database connection successful -- 18:16:28.166 INFO [13790]: _SERVER found -- 18:16:28.166 INFO [13790]: REMOTE_ADDR = 10.0.0.15 -- 18:16:28.166 INFO [13790]: SERVER_NAME = works.coregrade.com -- 18:16:28.166 INFO [13790]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:28.166 INFO [13790]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:28.166 INFO [13790]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:28.179 INFO [13790]: COREGRADE is stopping... -- 18:16:28.179 DEBUG [13790]: Closing database connection -- 18:16:28.179 SQL [13790]: pgsql_close() -- 18:16:28.165 DEBUG [12733]: Database connection successful -- 18:16:28.165 INFO [12733]: _SERVER found -- 18:16:28.165 INFO [12733]: REMOTE_ADDR = 10.0.0.15 -- 18:16:28.165 INFO [12733]: SERVER_NAME = works.coregrade.com -- 18:16:28.165 INFO [12733]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:28.165 INFO [12733]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:28.165 INFO [12733]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:28.181 INFO [12733]: COREGRADE is stopping... -- 18:16:28.181 DEBUG [12733]: Closing database connection -- 18:16:28.181 SQL [12733]: pgsql_close() -- 18:16:28.172 DEBUG [13795]: Database connection successful -- 18:16:28.172 INFO [13795]: _SERVER found -- 18:16:28.172 INFO [13795]: REMOTE_ADDR = 10.0.0.15 -- 18:16:28.172 INFO [13795]: SERVER_NAME = works.coregrade.com -- 18:16:28.172 INFO [13795]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:28.172 INFO [13795]: QUERY_STRING = -- 18:16:28.172 INFO [13795]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:28.204 INFO [13795]: COREGRADE is stopping... -- 18:16:28.204 DEBUG [13795]: Closing database connection -- 18:16:28.204 SQL [13795]: pgsql_close() -- 18:16:28.276 INFO [13795]: COREGRADE is starting... -- 18:16:28.276 INFO [12733]: COREGRADE is starting... -- 18:16:28.276 INFO [12733]: Version from config: 1.0 -- 18:16:28.276 DEBUG [12733]: Connecting to database... -- 18:16:28.276 INFO [13795]: Version from config: 1.0 -- 18:16:28.276 DEBUG [13795]: Connecting to database... -- 18:16:28.276 DEBUG [12733]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:28.276 DEBUG [13795]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:28.276 SQL [12733]: pgsql_db_connect() -- 18:16:28.276 SQL [13795]: pgsql_db_connect() -- 18:16:28.281 DEBUG [13795]: Database connection successful -- 18:16:28.281 INFO [13795]: _SERVER found -- 18:16:28.281 INFO [13795]: REMOTE_ADDR = 10.0.0.15 -- 18:16:28.281 INFO [13795]: SERVER_NAME = works.coregrade.com -- 18:16:28.281 INFO [13795]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:28.281 INFO [13795]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:28.281 INFO [13795]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:28.292 INFO [13795]: COREGRADE is stopping... -- 18:16:28.292 DEBUG [13795]: Closing database connection -- 18:16:28.292 SQL [13795]: pgsql_close() -- 18:16:28.281 DEBUG [12733]: Database connection successful -- 18:16:28.281 INFO [12733]: _SERVER found -- 18:16:28.281 INFO [12733]: REMOTE_ADDR = 10.0.0.15 -- 18:16:28.281 INFO [12733]: SERVER_NAME = works.coregrade.com -- 18:16:28.281 INFO [12733]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:28.281 INFO [12733]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:28.281 INFO [12733]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:28.294 INFO [12733]: COREGRADE is stopping... -- 18:16:28.294 DEBUG [12733]: Closing database connection -- 18:16:28.294 SQL [12733]: pgsql_close() -- 18:16:28.568 INFO [12733]: COREGRADE is starting... -- 18:16:28.568 INFO [12733]: Version from config: 1.0 -- 18:16:28.568 DEBUG [12733]: Connecting to database... -- 18:16:28.568 DEBUG [12733]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:28.568 SQL [12733]: pgsql_db_connect() -- 18:16:28.573 INFO [13795]: COREGRADE is starting... -- 18:16:28.573 INFO [13795]: Version from config: 1.0 -- 18:16:28.573 DEBUG [13795]: Connecting to database... -- 18:16:28.573 DEBUG [13795]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:28.573 SQL [13795]: pgsql_db_connect() -- 18:16:28.577 INFO [13787]: COREGRADE is starting... -- 18:16:28.577 INFO [13787]: Version from config: 1.0 -- 18:16:28.577 DEBUG [13787]: Connecting to database... -- 18:16:28.577 DEBUG [13787]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:28.577 SQL [13787]: pgsql_db_connect() -- 18:16:28.573 DEBUG [12733]: Database connection successful -- 18:16:28.573 INFO [12733]: _SERVER found -- 18:16:28.573 INFO [12733]: REMOTE_ADDR = 10.0.0.15 -- 18:16:28.573 INFO [12733]: SERVER_NAME = works.coregrade.com -- 18:16:28.573 INFO [12733]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:28.573 INFO [12733]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:28.573 INFO [12733]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:28.586 INFO [12733]: COREGRADE is stopping... -- 18:16:28.586 DEBUG [12733]: Closing database connection -- 18:16:28.586 SQL [12733]: pgsql_close() -- 18:16:28.578 DEBUG [13795]: Database connection successful -- 18:16:28.578 INFO [13795]: _SERVER found -- 18:16:28.578 INFO [13795]: REMOTE_ADDR = 10.0.0.15 -- 18:16:28.578 INFO [13795]: SERVER_NAME = works.coregrade.com -- 18:16:28.578 INFO [13795]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:28.578 INFO [13795]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:28.578 INFO [13795]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:28.590 INFO [13795]: COREGRADE is stopping... -- 18:16:28.590 DEBUG [13795]: Closing database connection -- 18:16:28.590 SQL [13795]: pgsql_close() -- 18:16:28.581 DEBUG [13787]: Database connection successful -- 18:16:28.581 INFO [13787]: _SERVER found -- 18:16:28.581 INFO [13787]: REMOTE_ADDR = 10.0.0.15 -- 18:16:28.581 INFO [13787]: SERVER_NAME = works.coregrade.com -- 18:16:28.581 INFO [13787]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:28.581 INFO [13787]: QUERY_STRING = -- 18:16:28.581 INFO [13787]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:28.623 INFO [13787]: COREGRADE is stopping... -- 18:16:28.623 DEBUG [13787]: Closing database connection -- 18:16:28.623 SQL [13787]: pgsql_close() -- 18:16:28.681 INFO [12733]: COREGRADE is starting... -- 18:16:28.682 INFO [12733]: Version from config: 1.0 -- 18:16:28.682 DEBUG [12733]: Connecting to database... -- 18:16:28.682 DEBUG [12733]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:28.682 SQL [12733]: pgsql_db_connect() -- 18:16:28.688 INFO [13787]: COREGRADE is starting... -- 18:16:28.689 INFO [13787]: Version from config: 1.0 -- 18:16:28.689 DEBUG [13787]: Connecting to database... -- 18:16:28.689 DEBUG [13787]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:28.689 SQL [13787]: pgsql_db_connect() -- 18:16:28.686 DEBUG [12733]: Database connection successful -- 18:16:28.686 INFO [12733]: _SERVER found -- 18:16:28.686 INFO [12733]: REMOTE_ADDR = 10.0.0.15 -- 18:16:28.686 INFO [12733]: SERVER_NAME = works.coregrade.com -- 18:16:28.686 INFO [12733]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:28.686 INFO [12733]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:28.686 INFO [12733]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:28.700 INFO [12733]: COREGRADE is stopping... -- 18:16:28.700 DEBUG [12733]: Closing database connection -- 18:16:28.700 SQL [12733]: pgsql_close() -- 18:16:28.693 DEBUG [13787]: Database connection successful -- 18:16:28.693 INFO [13787]: _SERVER found -- 18:16:28.693 INFO [13787]: REMOTE_ADDR = 10.0.0.15 -- 18:16:28.693 INFO [13787]: SERVER_NAME = works.coregrade.com -- 18:16:28.693 INFO [13787]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:28.693 INFO [13787]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:28.693 INFO [13787]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:28.704 INFO [13787]: COREGRADE is stopping... -- 18:16:28.705 DEBUG [13787]: Closing database connection -- 18:16:28.705 SQL [13787]: pgsql_close() -- 18:16:29.024 INFO [13787]: COREGRADE is starting... -- 18:16:29.024 INFO [13787]: Version from config: 1.0 -- 18:16:29.024 DEBUG [13787]: Connecting to database... -- 18:16:29.024 DEBUG [13787]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:29.024 SQL [13787]: pgsql_db_connect() -- 18:16:29.024 INFO [12733]: COREGRADE is starting... -- 18:16:29.024 INFO [12733]: Version from config: 1.0 -- 18:16:29.024 DEBUG [12733]: Connecting to database... -- 18:16:29.024 DEBUG [12733]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:29.024 SQL [12733]: pgsql_db_connect() -- 18:16:29.030 INFO [13795]: COREGRADE is starting... -- 18:16:29.030 INFO [13795]: Version from config: 1.0 -- 18:16:29.030 DEBUG [13795]: Connecting to database... -- 18:16:29.030 DEBUG [13795]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:29.030 SQL [13795]: pgsql_db_connect() -- 18:16:29.028 DEBUG [13787]: Database connection successful -- 18:16:29.028 INFO [13787]: _SERVER found -- 18:16:29.028 INFO [13787]: REMOTE_ADDR = 10.0.0.15 -- 18:16:29.028 INFO [13787]: SERVER_NAME = works.coregrade.com -- 18:16:29.028 INFO [13787]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:29.028 INFO [13787]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:29.028 INFO [13787]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:29.040 INFO [13787]: COREGRADE is stopping... -- 18:16:29.040 DEBUG [13787]: Closing database connection -- 18:16:29.040 SQL [13787]: pgsql_close() -- 18:16:29.028 DEBUG [12733]: Database connection successful -- 18:16:29.028 INFO [12733]: _SERVER found -- 18:16:29.028 INFO [12733]: REMOTE_ADDR = 10.0.0.15 -- 18:16:29.028 INFO [12733]: SERVER_NAME = works.coregrade.com -- 18:16:29.028 INFO [12733]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:29.028 INFO [12733]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:29.028 INFO [12733]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:29.041 INFO [12733]: COREGRADE is stopping... -- 18:16:29.041 DEBUG [12733]: Closing database connection -- 18:16:29.041 SQL [12733]: pgsql_close() -- 18:16:29.034 DEBUG [13795]: Database connection successful -- 18:16:29.034 INFO [13795]: _SERVER found -- 18:16:29.034 INFO [13795]: REMOTE_ADDR = 10.0.0.15 -- 18:16:29.034 INFO [13795]: SERVER_NAME = works.coregrade.com -- 18:16:29.034 INFO [13795]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:29.035 INFO [13795]: QUERY_STRING = -- 18:16:29.035 INFO [13795]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:29.066 INFO [13795]: COREGRADE is stopping... -- 18:16:29.066 DEBUG [13795]: Closing database connection -- 18:16:29.066 SQL [13795]: pgsql_close() -- 18:16:29.122 INFO [12733]: COREGRADE is starting... -- 18:16:29.122 INFO [12733]: Version from config: 1.0 -- 18:16:29.122 DEBUG [12733]: Connecting to database... -- 18:16:29.122 DEBUG [12733]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:29.122 SQL [12733]: pgsql_db_connect() -- 18:16:29.128 INFO [13795]: COREGRADE is starting... -- 18:16:29.129 INFO [13795]: Version from config: 1.0 -- 18:16:29.129 DEBUG [13795]: Connecting to database... -- 18:16:29.129 DEBUG [13795]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:29.129 SQL [13795]: pgsql_db_connect() -- 18:16:29.126 DEBUG [12733]: Database connection successful -- 18:16:29.126 INFO [12733]: _SERVER found -- 18:16:29.126 INFO [12733]: REMOTE_ADDR = 10.0.0.15 -- 18:16:29.126 INFO [12733]: SERVER_NAME = works.coregrade.com -- 18:16:29.126 INFO [12733]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:29.126 INFO [12733]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:29.126 INFO [12733]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:29.139 INFO [12733]: COREGRADE is stopping... -- 18:16:29.139 DEBUG [12733]: Closing database connection -- 18:16:29.139 SQL [12733]: pgsql_close() -- 18:16:29.133 DEBUG [13795]: Database connection successful -- 18:16:29.133 INFO [13795]: _SERVER found -- 18:16:29.133 INFO [13795]: REMOTE_ADDR = 10.0.0.15 -- 18:16:29.133 INFO [13795]: SERVER_NAME = works.coregrade.com -- 18:16:29.133 INFO [13795]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:29.133 INFO [13795]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:29.133 INFO [13795]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:29.144 INFO [13795]: COREGRADE is stopping... -- 18:16:29.144 DEBUG [13795]: Closing database connection -- 18:16:29.144 SQL [13795]: pgsql_close() -- 18:16:32.174 INFO [12733]: COREGRADE is starting... -- 18:16:32.174 INFO [12733]: Version from config: 1.0 -- 18:16:32.174 DEBUG [12733]: Connecting to database... -- 18:16:32.174 DEBUG [12733]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:32.174 SQL [12733]: pgsql_db_connect() -- 18:16:32.179 INFO [13795]: COREGRADE is starting... -- 18:16:32.179 INFO [13795]: Version from config: 1.0 -- 18:16:32.179 DEBUG [13795]: Connecting to database... -- 18:16:32.179 DEBUG [13795]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:32.179 SQL [13795]: pgsql_db_connect() -- 18:16:32.181 INFO [13787]: COREGRADE is starting... -- 18:16:32.181 INFO [13787]: Version from config: 1.0 -- 18:16:32.181 DEBUG [13787]: Connecting to database... -- 18:16:32.181 DEBUG [13787]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:32.181 SQL [13787]: pgsql_db_connect() -- 18:16:32.178 DEBUG [12733]: Database connection successful -- 18:16:32.178 INFO [12733]: _SERVER found -- 18:16:32.178 INFO [12733]: REMOTE_ADDR = 10.0.0.15 -- 18:16:32.178 INFO [12733]: SERVER_NAME = works.coregrade.com -- 18:16:32.178 INFO [12733]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:32.178 INFO [12733]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:32.178 INFO [12733]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:32.191 INFO [12733]: COREGRADE is stopping... -- 18:16:32.191 DEBUG [12733]: Closing database connection -- 18:16:32.191 SQL [12733]: pgsql_close() -- 18:16:32.183 DEBUG [13795]: Database connection successful -- 18:16:32.183 INFO [13795]: _SERVER found -- 18:16:32.183 INFO [13795]: REMOTE_ADDR = 10.0.0.15 -- 18:16:32.183 INFO [13795]: SERVER_NAME = works.coregrade.com -- 18:16:32.183 INFO [13795]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:32.183 INFO [13795]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:32.183 INFO [13795]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:32.194 INFO [13795]: COREGRADE is stopping... -- 18:16:32.195 DEBUG [13795]: Closing database connection -- 18:16:32.195 SQL [13795]: pgsql_close() -- 18:16:32.185 DEBUG [13787]: Database connection successful -- 18:16:32.185 INFO [13787]: _SERVER found -- 18:16:32.185 INFO [13787]: REMOTE_ADDR = 10.0.0.15 -- 18:16:32.185 INFO [13787]: SERVER_NAME = works.coregrade.com -- 18:16:32.185 INFO [13787]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:32.185 INFO [13787]: QUERY_STRING = -- 18:16:32.185 INFO [13787]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:32.216 INFO [13787]: COREGRADE is stopping... -- 18:16:32.216 DEBUG [13787]: Closing database connection -- 18:16:32.216 SQL [13787]: pgsql_close() -- 18:16:32.412 INFO [13787]: COREGRADE is starting... -- 18:16:32.412 INFO [13787]: Version from config: 1.0 -- 18:16:32.412 DEBUG [13787]: Connecting to database... -- 18:16:32.412 DEBUG [13787]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:32.412 SQL [13787]: pgsql_db_connect() -- 18:16:32.416 INFO [13795]: COREGRADE is starting... -- 18:16:32.416 INFO [13795]: Version from config: 1.0 -- 18:16:32.416 DEBUG [13795]: Connecting to database... -- 18:16:32.416 DEBUG [13795]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:32.416 SQL [13795]: pgsql_db_connect() -- 18:16:32.416 DEBUG [13787]: Database connection successful -- 18:16:32.416 INFO [13787]: _SERVER found -- 18:16:32.416 INFO [13787]: REMOTE_ADDR = 10.0.0.15 -- 18:16:32.416 INFO [13787]: SERVER_NAME = works.coregrade.com -- 18:16:32.416 INFO [13787]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:32.416 INFO [13787]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:32.416 INFO [13787]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:32.427 INFO [13787]: COREGRADE is stopping... -- 18:16:32.427 DEBUG [13787]: Closing database connection -- 18:16:32.428 SQL [13787]: pgsql_close() -- 18:16:32.420 DEBUG [13795]: Database connection successful -- 18:16:32.420 INFO [13795]: _SERVER found -- 18:16:32.420 INFO [13795]: REMOTE_ADDR = 10.0.0.15 -- 18:16:32.420 INFO [13795]: SERVER_NAME = works.coregrade.com -- 18:16:32.420 INFO [13795]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:32.420 INFO [13795]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:32.420 INFO [13795]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:32.432 INFO [13795]: COREGRADE is stopping... -- 18:16:32.432 DEBUG [13795]: Closing database connection -- 18:16:32.432 SQL [13795]: pgsql_close() -- 18:16:32.710 INFO [13790]: COREGRADE is starting... -- 18:16:32.711 INFO [13790]: Version from config: 1.0 -- 18:16:32.711 DEBUG [13790]: Connecting to database... -- 18:16:32.711 DEBUG [13790]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:32.711 SQL [13790]: pgsql_db_connect() -- 18:16:32.715 DEBUG [13790]: Database connection successful -- 18:16:32.715 INFO [13790]: _SERVER found -- 18:16:32.715 INFO [13790]: REMOTE_ADDR = 10.0.0.15 -- 18:16:32.715 INFO [13790]: SERVER_NAME = works.coregrade.com -- 18:16:32.715 INFO [13790]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:32.715 INFO [13790]: QUERY_STRING = -- 18:16:32.715 INFO [13790]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:32.756 INFO [13790]: COREGRADE is stopping... -- 18:16:32.756 DEBUG [13790]: Closing database connection -- 18:16:32.756 SQL [13790]: pgsql_close() -- 18:16:32.786 INFO [13790]: COREGRADE is starting... -- 18:16:32.787 INFO [13790]: Version from config: 1.0 -- 18:16:32.787 DEBUG [13790]: Connecting to database... -- 18:16:32.787 DEBUG [13790]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:32.787 SQL [13790]: pgsql_db_connect() -- 18:16:32.791 DEBUG [13790]: Database connection successful -- 18:16:32.791 INFO [13790]: _SERVER found -- 18:16:32.791 INFO [13790]: REMOTE_ADDR = 10.0.0.15 -- 18:16:32.791 INFO [13790]: SERVER_NAME = works.coregrade.com -- 18:16:32.791 INFO [13790]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:32.791 INFO [13790]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:32.791 INFO [13790]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:32.802 INFO [13790]: COREGRADE is stopping... -- 18:16:32.802 DEBUG [13790]: Closing database connection -- 18:16:32.802 SQL [13790]: pgsql_close() -- 18:16:32.802 INFO [9474]: COREGRADE is starting... -- 18:16:32.803 INFO [9474]: Version from config: 1.0 -- 18:16:32.803 DEBUG [9474]: Connecting to database... -- 18:16:32.803 DEBUG [9474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:32.803 SQL [9474]: pgsql_db_connect() -- 18:16:32.808 DEBUG [9474]: Database connection successful -- 18:16:32.808 INFO [9474]: _SERVER found -- 18:16:32.808 INFO [9474]: REMOTE_ADDR = 10.0.0.15 -- 18:16:32.808 INFO [9474]: SERVER_NAME = works.coregrade.com -- 18:16:32.808 INFO [9474]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:32.808 INFO [9474]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:32.808 INFO [9474]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:32.822 INFO [9474]: COREGRADE is stopping... -- 18:16:32.822 DEBUG [9474]: Closing database connection -- 18:16:32.823 SQL [9474]: pgsql_close() -- 18:16:32.859 INFO [9474]: COREGRADE is starting... -- 18:16:32.860 INFO [9474]: Version from config: 1.0 -- 18:16:32.860 DEBUG [9474]: Connecting to database... -- 18:16:32.860 DEBUG [9474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:32.860 SQL [9474]: pgsql_db_connect() -- 18:16:32.864 DEBUG [9474]: Database connection successful -- 18:16:32.864 INFO [9474]: _SERVER found -- 18:16:32.864 INFO [9474]: REMOTE_ADDR = 10.0.0.15 -- 18:16:32.864 INFO [9474]: SERVER_NAME = works.coregrade.com -- 18:16:32.864 INFO [9474]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:32.864 INFO [9474]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:32.864 INFO [9474]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:32.877 INFO [9474]: COREGRADE is stopping... -- 18:16:32.877 DEBUG [9474]: Closing database connection -- 18:16:32.877 SQL [9474]: pgsql_close() -- 18:16:32.908 INFO [9474]: COREGRADE is starting... -- 18:16:32.909 INFO [9474]: Version from config: 1.0 -- 18:16:32.909 DEBUG [9474]: Connecting to database... -- 18:16:32.909 DEBUG [9474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:32.909 SQL [9474]: pgsql_db_connect() -- 18:16:32.913 DEBUG [9474]: Database connection successful -- 18:16:32.913 INFO [9474]: _SERVER found -- 18:16:32.913 INFO [9474]: REMOTE_ADDR = 10.0.0.15 -- 18:16:32.913 INFO [9474]: SERVER_NAME = works.coregrade.com -- 18:16:32.913 INFO [9474]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:32.913 INFO [9474]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:32.913 INFO [9474]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:32.925 INFO [9474]: COREGRADE is stopping... -- 18:16:32.925 DEBUG [9474]: Closing database connection -- 18:16:32.925 SQL [9474]: pgsql_close() -- 18:16:33.241 INFO [9474]: COREGRADE is starting... -- 18:16:33.242 INFO [9474]: Version from config: 1.0 -- 18:16:33.242 DEBUG [9474]: Connecting to database... -- 18:16:33.242 DEBUG [9474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:33.242 SQL [9474]: pgsql_db_connect() -- 18:16:33.243 INFO [13790]: COREGRADE is starting... -- 18:16:33.243 INFO [13790]: Version from config: 1.0 -- 18:16:33.243 DEBUG [13790]: Connecting to database... -- 18:16:33.243 DEBUG [13790]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:33.243 SQL [13790]: pgsql_db_connect() -- 18:16:33.250 INFO [9475]: COREGRADE is starting... -- 18:16:33.250 INFO [9475]: Version from config: 1.0 -- 18:16:33.250 DEBUG [9475]: Connecting to database... -- 18:16:33.250 DEBUG [9475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:33.250 SQL [9475]: pgsql_db_connect() -- 18:16:33.246 DEBUG [9474]: Database connection successful -- 18:16:33.246 INFO [9474]: _SERVER found -- 18:16:33.246 INFO [9474]: REMOTE_ADDR = 10.0.0.15 -- 18:16:33.246 INFO [9474]: SERVER_NAME = works.coregrade.com -- 18:16:33.246 INFO [9474]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:33.246 INFO [9474]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:33.246 INFO [9474]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:33.258 INFO [9474]: COREGRADE is stopping... -- 18:16:33.258 DEBUG [9474]: Closing database connection -- 18:16:33.258 SQL [9474]: pgsql_close() -- 18:16:33.254 DEBUG [9475]: Database connection successful -- 18:16:33.254 INFO [9475]: _SERVER found -- 18:16:33.254 INFO [9475]: REMOTE_ADDR = 10.0.0.15 -- 18:16:33.254 INFO [9475]: SERVER_NAME = works.coregrade.com -- 18:16:33.254 INFO [9475]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:33.254 INFO [9475]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:33.254 INFO [9475]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:33.266 INFO [9475]: COREGRADE is stopping... -- 18:16:33.266 DEBUG [9475]: Closing database connection -- 18:16:33.267 SQL [9475]: pgsql_close() -- 18:16:33.247 DEBUG [13790]: Database connection successful -- 18:16:33.247 INFO [13790]: _SERVER found -- 18:16:33.247 INFO [13790]: REMOTE_ADDR = 10.0.0.15 -- 18:16:33.247 INFO [13790]: SERVER_NAME = works.coregrade.com -- 18:16:33.247 INFO [13790]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:33.247 INFO [13790]: QUERY_STRING = -- 18:16:33.247 INFO [13790]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:33.279 INFO [13790]: COREGRADE is stopping... -- 18:16:33.280 DEBUG [13790]: Closing database connection -- 18:16:33.280 SQL [13790]: pgsql_close() -- 18:16:33.347 INFO [13790]: COREGRADE is starting... -- 18:16:33.348 INFO [13790]: Version from config: 1.0 -- 18:16:33.348 DEBUG [13790]: Connecting to database... -- 18:16:33.348 DEBUG [13790]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:33.348 SQL [13790]: pgsql_db_connect() -- 18:16:33.353 INFO [9475]: COREGRADE is starting... -- 18:16:33.353 INFO [9475]: Version from config: 1.0 -- 18:16:33.353 DEBUG [9475]: Connecting to database... -- 18:16:33.353 DEBUG [9475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:33.353 SQL [9475]: pgsql_db_connect() -- 18:16:33.352 DEBUG [13790]: Database connection successful -- 18:16:33.352 INFO [13790]: _SERVER found -- 18:16:33.352 INFO [13790]: REMOTE_ADDR = 10.0.0.15 -- 18:16:33.352 INFO [13790]: SERVER_NAME = works.coregrade.com -- 18:16:33.352 INFO [13790]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:33.352 INFO [13790]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:33.352 INFO [13790]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:33.363 INFO [13790]: COREGRADE is stopping... -- 18:16:33.363 DEBUG [13790]: Closing database connection -- 18:16:33.363 SQL [13790]: pgsql_close() -- 18:16:33.357 DEBUG [9475]: Database connection successful -- 18:16:33.357 INFO [9475]: _SERVER found -- 18:16:33.357 INFO [9475]: REMOTE_ADDR = 10.0.0.15 -- 18:16:33.357 INFO [9475]: SERVER_NAME = works.coregrade.com -- 18:16:33.357 INFO [9475]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:33.357 INFO [9475]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:33.357 INFO [9475]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:33.370 INFO [9475]: COREGRADE is stopping... -- 18:16:33.370 DEBUG [9475]: Closing database connection -- 18:16:33.370 SQL [9475]: pgsql_close() -- 18:16:34.052 INFO [9475]: COREGRADE is starting... -- 18:16:34.053 INFO [9475]: Version from config: 1.0 -- 18:16:34.053 DEBUG [9475]: Connecting to database... -- 18:16:34.053 DEBUG [9475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:34.053 SQL [9475]: pgsql_db_connect() -- 18:16:34.054 INFO [13790]: COREGRADE is starting... -- 18:16:34.054 INFO [13790]: Version from config: 1.0 -- 18:16:34.054 DEBUG [13790]: Connecting to database... -- 18:16:34.054 DEBUG [13790]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:34.054 SQL [13790]: pgsql_db_connect() -- 18:16:34.061 INFO [9474]: COREGRADE is starting... -- 18:16:34.061 INFO [9474]: Version from config: 1.0 -- 18:16:34.061 DEBUG [9474]: Connecting to database... -- 18:16:34.061 DEBUG [9474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:34.061 SQL [9474]: pgsql_db_connect() -- 18:16:34.057 DEBUG [9475]: Database connection successful -- 18:16:34.057 INFO [9475]: _SERVER found -- 18:16:34.057 INFO [9475]: REMOTE_ADDR = 10.0.0.15 -- 18:16:34.057 INFO [9475]: SERVER_NAME = works.coregrade.com -- 18:16:34.057 INFO [9475]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:34.057 INFO [9475]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:34.057 INFO [9475]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:34.071 INFO [9475]: COREGRADE is stopping... -- 18:16:34.072 DEBUG [9475]: Closing database connection -- 18:16:34.072 SQL [9475]: pgsql_close() -- 18:16:34.065 DEBUG [9474]: Database connection successful -- 18:16:34.065 INFO [9474]: _SERVER found -- 18:16:34.065 INFO [9474]: REMOTE_ADDR = 10.0.0.15 -- 18:16:34.065 INFO [9474]: SERVER_NAME = works.coregrade.com -- 18:16:34.065 INFO [9474]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:34.065 INFO [9474]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:34.065 INFO [9474]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:34.078 INFO [9474]: COREGRADE is stopping... -- 18:16:34.078 DEBUG [9474]: Closing database connection -- 18:16:34.078 SQL [9474]: pgsql_close() -- 18:16:34.058 DEBUG [13790]: Database connection successful -- 18:16:34.058 INFO [13790]: _SERVER found -- 18:16:34.058 INFO [13790]: REMOTE_ADDR = 10.0.0.15 -- 18:16:34.058 INFO [13790]: SERVER_NAME = works.coregrade.com -- 18:16:34.058 INFO [13790]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:34.058 INFO [13790]: QUERY_STRING = -- 18:16:34.058 INFO [13790]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:34.089 INFO [13790]: COREGRADE is stopping... -- 18:16:34.089 DEBUG [13790]: Closing database connection -- 18:16:34.089 SQL [13790]: pgsql_close() -- 18:16:34.152 INFO [13790]: COREGRADE is starting... -- 18:16:34.153 INFO [13790]: Version from config: 1.0 -- 18:16:34.153 DEBUG [13790]: Connecting to database... -- 18:16:34.153 DEBUG [13790]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:34.153 SQL [13790]: pgsql_db_connect() -- 18:16:34.157 INFO [9474]: COREGRADE is starting... -- 18:16:34.157 INFO [9474]: Version from config: 1.0 -- 18:16:34.157 DEBUG [9474]: Connecting to database... -- 18:16:34.157 DEBUG [9474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:34.157 SQL [9474]: pgsql_db_connect() -- 18:16:34.157 DEBUG [13790]: Database connection successful -- 18:16:34.157 INFO [13790]: _SERVER found -- 18:16:34.157 INFO [13790]: REMOTE_ADDR = 10.0.0.15 -- 18:16:34.157 INFO [13790]: SERVER_NAME = works.coregrade.com -- 18:16:34.157 INFO [13790]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:34.157 INFO [13790]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:34.157 INFO [13790]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:34.168 INFO [13790]: COREGRADE is stopping... -- 18:16:34.168 DEBUG [13790]: Closing database connection -- 18:16:34.168 SQL [13790]: pgsql_close() -- 18:16:34.161 DEBUG [9474]: Database connection successful -- 18:16:34.161 INFO [9474]: _SERVER found -- 18:16:34.161 INFO [9474]: REMOTE_ADDR = 10.0.0.15 -- 18:16:34.161 INFO [9474]: SERVER_NAME = works.coregrade.com -- 18:16:34.161 INFO [9474]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:34.161 INFO [9474]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:34.161 INFO [9474]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:34.174 INFO [9474]: COREGRADE is stopping... -- 18:16:34.174 DEBUG [9474]: Closing database connection -- 18:16:34.174 SQL [9474]: pgsql_close() -- 18:16:34.480 INFO [9474]: COREGRADE is starting... -- 18:16:34.481 INFO [9474]: Version from config: 1.0 -- 18:16:34.481 DEBUG [9474]: Connecting to database... -- 18:16:34.481 DEBUG [9474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:34.481 SQL [9474]: pgsql_db_connect() -- 18:16:34.482 INFO [13790]: COREGRADE is starting... -- 18:16:34.482 INFO [13790]: Version from config: 1.0 -- 18:16:34.482 DEBUG [13790]: Connecting to database... -- 18:16:34.482 DEBUG [13790]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:34.482 SQL [13790]: pgsql_db_connect() -- 18:16:34.487 INFO [9475]: COREGRADE is starting... -- 18:16:34.488 INFO [9475]: Version from config: 1.0 -- 18:16:34.488 DEBUG [9475]: Connecting to database... -- 18:16:34.488 DEBUG [9475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:34.488 SQL [9475]: pgsql_db_connect() -- 18:16:34.485 DEBUG [9474]: Database connection successful -- 18:16:34.485 INFO [9474]: _SERVER found -- 18:16:34.485 INFO [9474]: REMOTE_ADDR = 10.0.0.15 -- 18:16:34.485 INFO [9474]: SERVER_NAME = works.coregrade.com -- 18:16:34.485 INFO [9474]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:34.485 INFO [9474]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:34.485 INFO [9474]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:34.498 INFO [9474]: COREGRADE is stopping... -- 18:16:34.498 DEBUG [9474]: Closing database connection -- 18:16:34.498 SQL [9474]: pgsql_close() -- 18:16:34.492 DEBUG [9475]: Database connection successful -- 18:16:34.492 INFO [9475]: _SERVER found -- 18:16:34.492 INFO [9475]: REMOTE_ADDR = 10.0.0.15 -- 18:16:34.492 INFO [9475]: SERVER_NAME = works.coregrade.com -- 18:16:34.492 INFO [9475]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:34.492 INFO [9475]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:34.492 INFO [9475]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:34.505 INFO [9475]: COREGRADE is stopping... -- 18:16:34.505 DEBUG [9475]: Closing database connection -- 18:16:34.505 SQL [9475]: pgsql_close() -- 18:16:34.486 DEBUG [13790]: Database connection successful -- 18:16:34.486 INFO [13790]: _SERVER found -- 18:16:34.486 INFO [13790]: REMOTE_ADDR = 10.0.0.15 -- 18:16:34.486 INFO [13790]: SERVER_NAME = works.coregrade.com -- 18:16:34.486 INFO [13790]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:34.486 INFO [13790]: QUERY_STRING = -- 18:16:34.486 INFO [13790]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:34.518 INFO [13790]: COREGRADE is stopping... -- 18:16:34.518 DEBUG [13790]: Closing database connection -- 18:16:34.518 SQL [13790]: pgsql_close() -- 18:16:34.574 INFO [13790]: COREGRADE is starting... -- 18:16:34.575 INFO [13790]: Version from config: 1.0 -- 18:16:34.575 DEBUG [13790]: Connecting to database... -- 18:16:34.575 DEBUG [13790]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:34.575 SQL [13790]: pgsql_db_connect() -- 18:16:34.579 INFO [9475]: COREGRADE is starting... -- 18:16:34.579 INFO [9475]: Version from config: 1.0 -- 18:16:34.579 DEBUG [9475]: Connecting to database... -- 18:16:34.579 DEBUG [9475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:34.579 SQL [9475]: pgsql_db_connect() -- 18:16:34.579 DEBUG [13790]: Database connection successful -- 18:16:34.579 INFO [13790]: _SERVER found -- 18:16:34.579 INFO [13790]: REMOTE_ADDR = 10.0.0.15 -- 18:16:34.579 INFO [13790]: SERVER_NAME = works.coregrade.com -- 18:16:34.579 INFO [13790]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:34.579 INFO [13790]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:34.579 INFO [13790]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:34.590 INFO [13790]: COREGRADE is stopping... -- 18:16:34.590 DEBUG [13790]: Closing database connection -- 18:16:34.590 SQL [13790]: pgsql_close() -- 18:16:34.583 DEBUG [9475]: Database connection successful -- 18:16:34.583 INFO [9475]: _SERVER found -- 18:16:34.583 INFO [9475]: REMOTE_ADDR = 10.0.0.15 -- 18:16:34.583 INFO [9475]: SERVER_NAME = works.coregrade.com -- 18:16:34.583 INFO [9475]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:34.583 INFO [9475]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:34.583 INFO [9475]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:34.596 INFO [9475]: COREGRADE is stopping... -- 18:16:34.596 DEBUG [9475]: Closing database connection -- 18:16:34.596 SQL [9475]: pgsql_close() -- 18:16:34.922 INFO [9475]: COREGRADE is starting... -- 18:16:34.922 INFO [9475]: Version from config: 1.0 -- 18:16:34.922 DEBUG [9475]: Connecting to database... -- 18:16:34.922 DEBUG [9475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:34.922 SQL [9475]: pgsql_db_connect() -- 18:16:34.923 INFO [13790]: COREGRADE is starting... -- 18:16:34.923 INFO [13790]: Version from config: 1.0 -- 18:16:34.923 DEBUG [13790]: Connecting to database... -- 18:16:34.923 DEBUG [13790]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:34.923 SQL [13790]: pgsql_db_connect() -- 18:16:34.930 INFO [9474]: COREGRADE is starting... -- 18:16:34.931 INFO [9474]: Version from config: 1.0 -- 18:16:34.931 DEBUG [9474]: Connecting to database... -- 18:16:34.931 DEBUG [9474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:34.931 SQL [9474]: pgsql_db_connect() -- 18:16:34.927 DEBUG [9475]: Database connection successful -- 18:16:34.927 INFO [9475]: _SERVER found -- 18:16:34.927 INFO [9475]: REMOTE_ADDR = 10.0.0.15 -- 18:16:34.927 INFO [9475]: SERVER_NAME = works.coregrade.com -- 18:16:34.927 INFO [9475]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:34.927 INFO [9475]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:34.927 INFO [9475]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:34.939 INFO [9475]: COREGRADE is stopping... -- 18:16:34.939 DEBUG [9475]: Closing database connection -- 18:16:34.939 SQL [9475]: pgsql_close() -- 18:16:34.935 DEBUG [9474]: Database connection successful -- 18:16:34.935 INFO [9474]: _SERVER found -- 18:16:34.935 INFO [9474]: REMOTE_ADDR = 10.0.0.15 -- 18:16:34.935 INFO [9474]: SERVER_NAME = works.coregrade.com -- 18:16:34.935 INFO [9474]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:34.935 INFO [9474]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:34.935 INFO [9474]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:34.948 INFO [9474]: COREGRADE is stopping... -- 18:16:34.948 DEBUG [9474]: Closing database connection -- 18:16:34.948 SQL [9474]: pgsql_close() -- 18:16:34.927 DEBUG [13790]: Database connection successful -- 18:16:34.927 INFO [13790]: _SERVER found -- 18:16:34.927 INFO [13790]: REMOTE_ADDR = 10.0.0.15 -- 18:16:34.927 INFO [13790]: SERVER_NAME = works.coregrade.com -- 18:16:34.927 INFO [13790]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:34.927 INFO [13790]: QUERY_STRING = -- 18:16:34.927 INFO [13790]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:34.958 INFO [13790]: COREGRADE is stopping... -- 18:16:34.958 DEBUG [13790]: Closing database connection -- 18:16:34.958 SQL [13790]: pgsql_close() -- 18:16:35.012 INFO [13790]: COREGRADE is starting... -- 18:16:35.013 INFO [13790]: Version from config: 1.0 -- 18:16:35.013 DEBUG [13790]: Connecting to database... -- 18:16:35.013 DEBUG [13790]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:35.013 SQL [13790]: pgsql_db_connect() -- 18:16:35.017 INFO [9474]: COREGRADE is starting... -- 18:16:35.017 INFO [9474]: Version from config: 1.0 -- 18:16:35.017 DEBUG [9474]: Connecting to database... -- 18:16:35.017 DEBUG [9474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:35.017 SQL [9474]: pgsql_db_connect() -- 18:16:35.017 DEBUG [13790]: Database connection successful -- 18:16:35.017 INFO [13790]: _SERVER found -- 18:16:35.017 INFO [13790]: REMOTE_ADDR = 10.0.0.15 -- 18:16:35.017 INFO [13790]: SERVER_NAME = works.coregrade.com -- 18:16:35.017 INFO [13790]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:35.017 INFO [13790]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:35.017 INFO [13790]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:35.028 INFO [13790]: COREGRADE is stopping... -- 18:16:35.028 DEBUG [13790]: Closing database connection -- 18:16:35.029 SQL [13790]: pgsql_close() -- 18:16:35.021 DEBUG [9474]: Database connection successful -- 18:16:35.021 INFO [9474]: _SERVER found -- 18:16:35.021 INFO [9474]: REMOTE_ADDR = 10.0.0.15 -- 18:16:35.021 INFO [9474]: SERVER_NAME = works.coregrade.com -- 18:16:35.021 INFO [9474]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:35.021 INFO [9474]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:35.021 INFO [9474]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:35.034 INFO [9474]: COREGRADE is stopping... -- 18:16:35.034 DEBUG [9474]: Closing database connection -- 18:16:35.034 SQL [9474]: pgsql_close() -- 18:16:35.374 INFO [9474]: COREGRADE is starting... -- 18:16:35.374 INFO [9474]: Version from config: 1.0 -- 18:16:35.374 DEBUG [9474]: Connecting to database... -- 18:16:35.374 DEBUG [9474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:35.375 SQL [9474]: pgsql_db_connect() -- 18:16:35.375 INFO [13790]: COREGRADE is starting... -- 18:16:35.376 INFO [13790]: Version from config: 1.0 -- 18:16:35.376 DEBUG [13790]: Connecting to database... -- 18:16:35.376 DEBUG [13790]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:35.376 SQL [13790]: pgsql_db_connect() -- 18:16:35.382 INFO [9475]: COREGRADE is starting... -- 18:16:35.382 INFO [9475]: Version from config: 1.0 -- 18:16:35.382 DEBUG [9475]: Connecting to database... -- 18:16:35.382 DEBUG [9475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:35.382 SQL [9475]: pgsql_db_connect() -- 18:16:35.379 DEBUG [9474]: Database connection successful -- 18:16:35.379 INFO [9474]: _SERVER found -- 18:16:35.379 INFO [9474]: REMOTE_ADDR = 10.0.0.15 -- 18:16:35.379 INFO [9474]: SERVER_NAME = works.coregrade.com -- 18:16:35.379 INFO [9474]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:35.379 INFO [9474]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:35.379 INFO [9474]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:35.391 INFO [9474]: COREGRADE is stopping... -- 18:16:35.391 DEBUG [9474]: Closing database connection -- 18:16:35.391 SQL [9474]: pgsql_close() -- 18:16:35.386 DEBUG [9475]: Database connection successful -- 18:16:35.386 INFO [9475]: _SERVER found -- 18:16:35.386 INFO [9475]: REMOTE_ADDR = 10.0.0.15 -- 18:16:35.386 INFO [9475]: SERVER_NAME = works.coregrade.com -- 18:16:35.386 INFO [9475]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:35.386 INFO [9475]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:35.386 INFO [9475]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:35.399 INFO [9475]: COREGRADE is stopping... -- 18:16:35.399 DEBUG [9475]: Closing database connection -- 18:16:35.399 SQL [9475]: pgsql_close() -- 18:16:35.379 DEBUG [13790]: Database connection successful -- 18:16:35.379 INFO [13790]: _SERVER found -- 18:16:35.379 INFO [13790]: REMOTE_ADDR = 10.0.0.15 -- 18:16:35.379 INFO [13790]: SERVER_NAME = works.coregrade.com -- 18:16:35.379 INFO [13790]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:35.379 INFO [13790]: QUERY_STRING = -- 18:16:35.379 INFO [13790]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:35.410 INFO [13790]: COREGRADE is stopping... -- 18:16:35.410 DEBUG [13790]: Closing database connection -- 18:16:35.410 SQL [13790]: pgsql_close() -- 18:16:35.467 INFO [13790]: COREGRADE is starting... -- 18:16:35.467 INFO [13790]: Version from config: 1.0 -- 18:16:35.467 DEBUG [13790]: Connecting to database... -- 18:16:35.467 DEBUG [13790]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:35.467 SQL [13790]: pgsql_db_connect() -- 18:16:35.472 INFO [9475]: COREGRADE is starting... -- 18:16:35.472 INFO [9475]: Version from config: 1.0 -- 18:16:35.472 DEBUG [9475]: Connecting to database... -- 18:16:35.472 DEBUG [9475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:35.472 SQL [9475]: pgsql_db_connect() -- 18:16:35.471 DEBUG [13790]: Database connection successful -- 18:16:35.471 INFO [13790]: _SERVER found -- 18:16:35.471 INFO [13790]: REMOTE_ADDR = 10.0.0.15 -- 18:16:35.471 INFO [13790]: SERVER_NAME = works.coregrade.com -- 18:16:35.471 INFO [13790]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:35.471 INFO [13790]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:35.471 INFO [13790]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:35.483 INFO [13790]: COREGRADE is stopping... -- 18:16:35.483 DEBUG [13790]: Closing database connection -- 18:16:35.483 SQL [13790]: pgsql_close() -- 18:16:35.476 DEBUG [9475]: Database connection successful -- 18:16:35.476 INFO [9475]: _SERVER found -- 18:16:35.476 INFO [9475]: REMOTE_ADDR = 10.0.0.15 -- 18:16:35.476 INFO [9475]: SERVER_NAME = works.coregrade.com -- 18:16:35.476 INFO [9475]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:35.476 INFO [9475]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:35.476 INFO [9475]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:35.489 INFO [9475]: COREGRADE is stopping... -- 18:16:35.489 DEBUG [9475]: Closing database connection -- 18:16:35.489 SQL [9475]: pgsql_close() -- 18:16:35.796 INFO [9475]: COREGRADE is starting... -- 18:16:35.796 INFO [9475]: Version from config: 1.0 -- 18:16:35.796 DEBUG [9475]: Connecting to database... -- 18:16:35.796 DEBUG [9475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:35.796 SQL [9475]: pgsql_db_connect() -- 18:16:35.797 INFO [13790]: COREGRADE is starting... -- 18:16:35.797 INFO [13790]: Version from config: 1.0 -- 18:16:35.797 DEBUG [13790]: Connecting to database... -- 18:16:35.797 DEBUG [13790]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:35.797 SQL [13790]: pgsql_db_connect() -- 18:16:35.804 INFO [9474]: COREGRADE is starting... -- 18:16:35.804 INFO [9474]: Version from config: 1.0 -- 18:16:35.804 DEBUG [9474]: Connecting to database... -- 18:16:35.804 DEBUG [9474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:35.804 SQL [9474]: pgsql_db_connect() -- 18:16:35.801 DEBUG [9475]: Database connection successful -- 18:16:35.801 INFO [9475]: _SERVER found -- 18:16:35.801 INFO [9475]: REMOTE_ADDR = 10.0.0.15 -- 18:16:35.801 INFO [9475]: SERVER_NAME = works.coregrade.com -- 18:16:35.801 INFO [9475]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:35.801 INFO [9475]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:35.801 INFO [9475]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:35.813 INFO [9475]: COREGRADE is stopping... -- 18:16:35.813 DEBUG [9475]: Closing database connection -- 18:16:35.813 SQL [9475]: pgsql_close() -- 18:16:35.808 DEBUG [9474]: Database connection successful -- 18:16:35.808 INFO [9474]: _SERVER found -- 18:16:35.808 INFO [9474]: REMOTE_ADDR = 10.0.0.15 -- 18:16:35.808 INFO [9474]: SERVER_NAME = works.coregrade.com -- 18:16:35.808 INFO [9474]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:35.808 INFO [9474]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:35.808 INFO [9474]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:35.821 INFO [9474]: COREGRADE is stopping... -- 18:16:35.821 DEBUG [9474]: Closing database connection -- 18:16:35.821 SQL [9474]: pgsql_close() -- 18:16:35.801 DEBUG [13790]: Database connection successful -- 18:16:35.801 INFO [13790]: _SERVER found -- 18:16:35.801 INFO [13790]: REMOTE_ADDR = 10.0.0.15 -- 18:16:35.801 INFO [13790]: SERVER_NAME = works.coregrade.com -- 18:16:35.801 INFO [13790]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:35.801 INFO [13790]: QUERY_STRING = -- 18:16:35.801 INFO [13790]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:35.833 INFO [13790]: COREGRADE is stopping... -- 18:16:35.833 DEBUG [13790]: Closing database connection -- 18:16:35.833 SQL [13790]: pgsql_close() -- 18:16:35.887 INFO [13790]: COREGRADE is starting... -- 18:16:35.887 INFO [13790]: Version from config: 1.0 -- 18:16:35.887 DEBUG [13790]: Connecting to database... -- 18:16:35.888 DEBUG [13790]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:35.888 SQL [13790]: pgsql_db_connect() -- 18:16:35.892 INFO [9474]: COREGRADE is starting... -- 18:16:35.892 INFO [9474]: Version from config: 1.0 -- 18:16:35.892 DEBUG [9474]: Connecting to database... -- 18:16:35.893 DEBUG [9474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:35.893 SQL [9474]: pgsql_db_connect() -- 18:16:35.892 DEBUG [13790]: Database connection successful -- 18:16:35.892 INFO [13790]: _SERVER found -- 18:16:35.892 INFO [13790]: REMOTE_ADDR = 10.0.0.15 -- 18:16:35.892 INFO [13790]: SERVER_NAME = works.coregrade.com -- 18:16:35.892 INFO [13790]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:35.892 INFO [13790]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:35.892 INFO [13790]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:35.904 INFO [13790]: COREGRADE is stopping... -- 18:16:35.904 DEBUG [13790]: Closing database connection -- 18:16:35.904 SQL [13790]: pgsql_close() -- 18:16:35.897 DEBUG [9474]: Database connection successful -- 18:16:35.897 INFO [9474]: _SERVER found -- 18:16:35.897 INFO [9474]: REMOTE_ADDR = 10.0.0.15 -- 18:16:35.897 INFO [9474]: SERVER_NAME = works.coregrade.com -- 18:16:35.897 INFO [9474]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:35.897 INFO [9474]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:35.897 INFO [9474]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:35.909 INFO [9474]: COREGRADE is stopping... -- 18:16:35.909 DEBUG [9474]: Closing database connection -- 18:16:35.910 SQL [9474]: pgsql_close() -- 18:16:36.260 INFO [9474]: COREGRADE is starting... -- 18:16:36.260 INFO [9474]: Version from config: 1.0 -- 18:16:36.260 DEBUG [9474]: Connecting to database... -- 18:16:36.260 DEBUG [9474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:36.260 SQL [9474]: pgsql_db_connect() -- 18:16:36.261 INFO [13790]: COREGRADE is starting... -- 18:16:36.261 INFO [13790]: Version from config: 1.0 -- 18:16:36.261 DEBUG [13790]: Connecting to database... -- 18:16:36.261 DEBUG [13790]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:36.261 SQL [13790]: pgsql_db_connect() -- 18:16:36.268 INFO [9475]: COREGRADE is starting... -- 18:16:36.268 INFO [9475]: Version from config: 1.0 -- 18:16:36.268 DEBUG [9475]: Connecting to database... -- 18:16:36.268 DEBUG [9475]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:36.268 SQL [9475]: pgsql_db_connect() -- 18:16:36.264 DEBUG [9474]: Database connection successful -- 18:16:36.264 INFO [9474]: _SERVER found -- 18:16:36.264 INFO [9474]: REMOTE_ADDR = 10.0.0.15 -- 18:16:36.264 INFO [9474]: SERVER_NAME = works.coregrade.com -- 18:16:36.264 INFO [9474]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:36.264 INFO [9474]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:36.264 INFO [9474]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:36.277 INFO [9474]: COREGRADE is stopping... -- 18:16:36.277 DEBUG [9474]: Closing database connection -- 18:16:36.277 SQL [9474]: pgsql_close() -- 18:16:36.272 DEBUG [9475]: Database connection successful -- 18:16:36.272 INFO [9475]: _SERVER found -- 18:16:36.272 INFO [9475]: REMOTE_ADDR = 10.0.0.15 -- 18:16:36.272 INFO [9475]: SERVER_NAME = works.coregrade.com -- 18:16:36.272 INFO [9475]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:36.272 INFO [9475]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:36.272 INFO [9475]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:36.285 INFO [9475]: COREGRADE is stopping... -- 18:16:36.285 DEBUG [9475]: Closing database connection -- 18:16:36.285 SQL [9475]: pgsql_close() -- 18:16:36.265 DEBUG [13790]: Database connection successful -- 18:16:36.265 INFO [13790]: _SERVER found -- 18:16:36.265 INFO [13790]: REMOTE_ADDR = 10.0.0.15 -- 18:16:36.265 INFO [13790]: SERVER_NAME = works.coregrade.com -- 18:16:36.265 INFO [13790]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:36.265 INFO [13790]: QUERY_STRING = -- 18:16:36.265 INFO [13790]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:36.296 INFO [13790]: COREGRADE is stopping... -- 18:16:36.296 DEBUG [13790]: Closing database connection -- 18:16:36.296 SQL [13790]: pgsql_close() -- 18:16:36.462 INFO [9474]: COREGRADE is starting... -- 18:16:36.463 INFO [9474]: Version from config: 1.0 -- 18:16:36.463 DEBUG [9474]: Connecting to database... -- 18:16:36.463 DEBUG [9474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:36.463 SQL [9474]: pgsql_db_connect() -- 18:16:36.464 INFO [13790]: COREGRADE is starting... -- 18:16:36.465 INFO [13790]: Version from config: 1.0 -- 18:16:36.465 DEBUG [13790]: Connecting to database... -- 18:16:36.465 DEBUG [13790]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:16:36.465 SQL [13790]: pgsql_db_connect() -- 18:16:36.469 DEBUG [13790]: Database connection successful -- 18:16:36.469 INFO [13790]: _SERVER found -- 18:16:36.469 INFO [13790]: REMOTE_ADDR = 10.0.0.15 -- 18:16:36.469 INFO [13790]: SERVER_NAME = works.coregrade.com -- 18:16:36.469 INFO [13790]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:36.469 INFO [13790]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:16:36.469 INFO [13790]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:36.480 INFO [13790]: COREGRADE is stopping... -- 18:16:36.480 DEBUG [13790]: Closing database connection -- 18:16:36.480 SQL [13790]: pgsql_close() -- 18:16:36.467 DEBUG [9474]: Database connection successful -- 18:16:36.467 INFO [9474]: _SERVER found -- 18:16:36.467 INFO [9474]: REMOTE_ADDR = 10.0.0.15 -- 18:16:36.467 INFO [9474]: SERVER_NAME = works.coregrade.com -- 18:16:36.467 INFO [9474]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:16:36.467 INFO [9474]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:16:36.467 INFO [9474]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:16:36.480 INFO [9474]: COREGRADE is stopping... -- 18:16:36.481 DEBUG [9474]: Closing database connection -- 18:16:36.481 SQL [9474]: pgsql_close() -- 18:17:01.856 INFO [13229]: COREGRADE is starting... -- 18:17:01.856 INFO [13229]: Version from config: 1.0 -- 18:17:01.856 DEBUG [13229]: Connecting to database... -- 18:17:01.857 DEBUG [13229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:01.857 SQL [13229]: pgsql_db_connect() -- 18:17:01.861 DEBUG [13229]: Database connection successful -- 18:17:01.861 INFO [13229]: _SERVER found -- 18:17:01.861 INFO [13229]: REMOTE_ADDR = 10.0.0.15 -- 18:17:01.861 INFO [13229]: SERVER_NAME = works.coregrade.com -- 18:17:01.861 INFO [13229]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:01.861 INFO [13229]: QUERY_STRING = -- 18:17:01.861 INFO [13229]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:01.895 INFO [13229]: COREGRADE is stopping... -- 18:17:01.895 DEBUG [13229]: Closing database connection -- 18:17:01.895 SQL [13229]: pgsql_close() -- 18:17:01.914 INFO [19579]: COREGRADE is starting... -- 18:17:01.914 INFO [19579]: Version from config: 1.0 -- 18:17:01.914 DEBUG [19579]: Connecting to database... -- 18:17:01.915 DEBUG [19579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:01.915 SQL [19579]: pgsql_db_connect() -- 18:17:01.919 DEBUG [19579]: Database connection successful -- 18:17:01.919 INFO [19579]: _SERVER found -- 18:17:01.919 INFO [19579]: REMOTE_ADDR = 10.0.0.15 -- 18:17:01.919 INFO [19579]: SERVER_NAME = works.coregrade.com -- 18:17:01.919 INFO [19579]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:01.919 INFO [19579]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:17:01.919 INFO [19579]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:01.933 INFO [19579]: COREGRADE is stopping... -- 18:17:01.933 DEBUG [19579]: Closing database connection -- 18:17:01.933 SQL [19579]: pgsql_close() -- 18:17:01.950 INFO [19579]: COREGRADE is starting... -- 18:17:01.951 INFO [19579]: Version from config: 1.0 -- 18:17:01.951 DEBUG [19579]: Connecting to database... -- 18:17:01.951 DEBUG [19579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:01.951 SQL [19579]: pgsql_db_connect() -- 18:17:01.955 DEBUG [19579]: Database connection successful -- 18:17:01.955 INFO [19579]: _SERVER found -- 18:17:01.955 INFO [19579]: REMOTE_ADDR = 10.0.0.15 -- 18:17:01.955 INFO [19579]: SERVER_NAME = works.coregrade.com -- 18:17:01.955 INFO [19579]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:01.955 INFO [19579]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:17:01.955 INFO [19579]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:01.969 INFO [19579]: COREGRADE is stopping... -- 18:17:01.970 DEBUG [19579]: Closing database connection -- 18:17:01.970 SQL [19579]: pgsql_close() -- 18:17:02.115 INFO [13229]: COREGRADE is starting... -- 18:17:02.115 INFO [13229]: Version from config: 1.0 -- 18:17:02.115 DEBUG [13229]: Connecting to database... -- 18:17:02.115 DEBUG [13229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:02.115 SQL [13229]: pgsql_db_connect() -- 18:17:02.120 DEBUG [13229]: Database connection successful -- 18:17:02.120 INFO [13229]: _SERVER found -- 18:17:02.120 INFO [13229]: REMOTE_ADDR = 10.0.0.15 -- 18:17:02.120 INFO [13229]: SERVER_NAME = works.coregrade.com -- 18:17:02.120 INFO [13229]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:02.120 INFO [13229]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:17:02.120 INFO [13229]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:02.132 INFO [13229]: COREGRADE is stopping... -- 18:17:02.132 DEBUG [13229]: Closing database connection -- 18:17:02.132 SQL [13229]: pgsql_close() -- 18:17:02.132 INFO [19579]: COREGRADE is starting... -- 18:17:02.132 INFO [19579]: Version from config: 1.0 -- 18:17:02.132 DEBUG [19579]: Connecting to database... -- 18:17:02.132 DEBUG [19579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:02.132 SQL [19579]: pgsql_db_connect() -- 18:17:02.137 DEBUG [19579]: Database connection successful -- 18:17:02.137 INFO [19579]: _SERVER found -- 18:17:02.137 INFO [19579]: REMOTE_ADDR = 10.0.0.15 -- 18:17:02.137 INFO [19579]: SERVER_NAME = works.coregrade.com -- 18:17:02.137 INFO [19579]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:02.137 INFO [19579]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:17:02.137 INFO [19579]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:02.149 INFO [19579]: COREGRADE is stopping... -- 18:17:02.149 DEBUG [19579]: Closing database connection -- 18:17:02.149 SQL [19579]: pgsql_close() -- 18:17:04.834 INFO [13229]: COREGRADE is starting... -- 18:17:04.835 INFO [13229]: Version from config: 1.0 -- 18:17:04.835 DEBUG [13229]: Connecting to database... -- 18:17:04.835 DEBUG [13229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:04.835 SQL [13229]: pgsql_db_connect() -- 18:17:04.840 INFO [19579]: COREGRADE is starting... -- 18:17:04.840 INFO [19579]: Version from config: 1.0 -- 18:17:04.840 DEBUG [19579]: Connecting to database... -- 18:17:04.840 DEBUG [19579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:04.840 SQL [19579]: pgsql_db_connect() -- 18:17:04.841 INFO [9476]: COREGRADE is starting... -- 18:17:04.841 INFO [9476]: Version from config: 1.0 -- 18:17:04.841 DEBUG [9476]: Connecting to database... -- 18:17:04.841 DEBUG [9476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:04.841 SQL [9476]: pgsql_db_connect() -- 18:17:04.845 DEBUG [19579]: Database connection successful -- 18:17:04.845 INFO [19579]: _SERVER found -- 18:17:04.845 INFO [19579]: REMOTE_ADDR = 10.0.0.15 -- 18:17:04.845 INFO [19579]: SERVER_NAME = works.coregrade.com -- 18:17:04.845 INFO [19579]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:04.845 INFO [19579]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:17:04.845 INFO [19579]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:04.858 INFO [19579]: COREGRADE is stopping... -- 18:17:04.858 DEBUG [19579]: Closing database connection -- 18:17:04.859 SQL [19579]: pgsql_close() -- 18:17:04.846 DEBUG [9476]: Database connection successful -- 18:17:04.846 INFO [9476]: _SERVER found -- 18:17:04.846 INFO [9476]: REMOTE_ADDR = 10.0.0.15 -- 18:17:04.846 INFO [9476]: SERVER_NAME = works.coregrade.com -- 18:17:04.846 INFO [9476]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:04.846 INFO [9476]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:17:04.846 INFO [9476]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:04.859 INFO [9476]: COREGRADE is stopping... -- 18:17:04.859 DEBUG [9476]: Closing database connection -- 18:17:04.859 SQL [9476]: pgsql_close() -- 18:17:04.839 DEBUG [13229]: Database connection successful -- 18:17:04.839 INFO [13229]: _SERVER found -- 18:17:04.839 INFO [13229]: REMOTE_ADDR = 10.0.0.15 -- 18:17:04.839 INFO [13229]: SERVER_NAME = works.coregrade.com -- 18:17:04.839 INFO [13229]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:04.839 INFO [13229]: QUERY_STRING = -- 18:17:04.839 INFO [13229]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:04.873 INFO [13229]: COREGRADE is stopping... -- 18:17:04.873 DEBUG [13229]: Closing database connection -- 18:17:04.873 SQL [13229]: pgsql_close() -- 18:17:04.934 INFO [9476]: COREGRADE is starting... -- 18:17:04.934 INFO [13229]: COREGRADE is starting... -- 18:17:04.934 INFO [9476]: Version from config: 1.0 -- 18:17:04.934 DEBUG [9476]: Connecting to database... -- 18:17:04.934 INFO [13229]: Version from config: 1.0 -- 18:17:04.934 DEBUG [13229]: Connecting to database... -- 18:17:04.934 DEBUG [9476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:04.934 DEBUG [13229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:04.934 SQL [9476]: pgsql_db_connect() -- 18:17:04.934 SQL [13229]: pgsql_db_connect() -- 18:17:04.938 DEBUG [13229]: Database connection successful -- 18:17:04.938 INFO [13229]: _SERVER found -- 18:17:04.938 INFO [13229]: REMOTE_ADDR = 10.0.0.15 -- 18:17:04.938 INFO [13229]: SERVER_NAME = works.coregrade.com -- 18:17:04.938 INFO [13229]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:04.938 INFO [13229]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:17:04.938 INFO [13229]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:04.950 INFO [13229]: COREGRADE is stopping... -- 18:17:04.950 DEBUG [13229]: Closing database connection -- 18:17:04.950 SQL [13229]: pgsql_close() -- 18:17:04.938 DEBUG [9476]: Database connection successful -- 18:17:04.938 INFO [9476]: _SERVER found -- 18:17:04.938 INFO [9476]: REMOTE_ADDR = 10.0.0.15 -- 18:17:04.938 INFO [9476]: SERVER_NAME = works.coregrade.com -- 18:17:04.938 INFO [9476]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:04.938 INFO [9476]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:17:04.938 INFO [9476]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:04.951 INFO [9476]: COREGRADE is stopping... -- 18:17:04.951 DEBUG [9476]: Closing database connection -- 18:17:04.951 SQL [9476]: pgsql_close() -- 18:17:06.176 INFO [9476]: COREGRADE is starting... -- 18:17:06.176 INFO [13229]: COREGRADE is starting... -- 18:17:06.176 INFO [9476]: Version from config: 1.0 -- 18:17:06.176 DEBUG [9476]: Connecting to database... -- 18:17:06.176 INFO [13229]: Version from config: 1.0 -- 18:17:06.176 DEBUG [13229]: Connecting to database... -- 18:17:06.176 DEBUG [13229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:06.176 DEBUG [9476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:06.176 SQL [13229]: pgsql_db_connect() -- 18:17:06.176 SQL [9476]: pgsql_db_connect() -- 18:17:06.177 INFO [19579]: COREGRADE is starting... -- 18:17:06.177 INFO [19579]: Version from config: 1.0 -- 18:17:06.177 DEBUG [19579]: Connecting to database... -- 18:17:06.177 DEBUG [19579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:06.177 SQL [19579]: pgsql_db_connect() -- 18:17:06.180 DEBUG [9476]: Database connection successful -- 18:17:06.180 INFO [9476]: _SERVER found -- 18:17:06.180 INFO [9476]: REMOTE_ADDR = 10.0.0.15 -- 18:17:06.180 INFO [9476]: SERVER_NAME = works.coregrade.com -- 18:17:06.180 INFO [9476]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:06.180 INFO [9476]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:17:06.180 INFO [9476]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:06.193 INFO [9476]: COREGRADE is stopping... -- 18:17:06.193 DEBUG [9476]: Closing database connection -- 18:17:06.193 SQL [9476]: pgsql_close() -- 18:17:06.183 DEBUG [19579]: Database connection successful -- 18:17:06.183 INFO [19579]: _SERVER found -- 18:17:06.183 INFO [19579]: REMOTE_ADDR = 10.0.0.15 -- 18:17:06.183 INFO [19579]: SERVER_NAME = works.coregrade.com -- 18:17:06.183 INFO [19579]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:06.183 INFO [19579]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:17:06.183 INFO [19579]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:06.196 INFO [19579]: COREGRADE is stopping... -- 18:17:06.196 DEBUG [19579]: Closing database connection -- 18:17:06.197 SQL [19579]: pgsql_close() -- 18:17:06.181 DEBUG [13229]: Database connection successful -- 18:17:06.181 INFO [13229]: _SERVER found -- 18:17:06.181 INFO [13229]: REMOTE_ADDR = 10.0.0.15 -- 18:17:06.181 INFO [13229]: SERVER_NAME = works.coregrade.com -- 18:17:06.181 INFO [13229]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:06.181 INFO [13229]: QUERY_STRING = -- 18:17:06.181 INFO [13229]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:06.216 INFO [13229]: COREGRADE is stopping... -- 18:17:06.216 DEBUG [13229]: Closing database connection -- 18:17:06.216 SQL [13229]: pgsql_close() -- 18:17:06.273 INFO [13229]: COREGRADE is starting... -- 18:17:06.273 INFO [19579]: COREGRADE is starting... -- 18:17:06.273 INFO [13229]: Version from config: 1.0 -- 18:17:06.273 DEBUG [13229]: Connecting to database... -- 18:17:06.274 DEBUG [13229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:06.274 SQL [13229]: pgsql_db_connect() -- 18:17:06.274 INFO [19579]: Version from config: 1.0 -- 18:17:06.274 DEBUG [19579]: Connecting to database... -- 18:17:06.274 DEBUG [19579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:06.274 SQL [19579]: pgsql_db_connect() -- 18:17:06.278 DEBUG [13229]: Database connection successful -- 18:17:06.278 INFO [13229]: _SERVER found -- 18:17:06.278 INFO [13229]: REMOTE_ADDR = 10.0.0.15 -- 18:17:06.278 INFO [13229]: SERVER_NAME = works.coregrade.com -- 18:17:06.278 INFO [13229]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:06.278 INFO [13229]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:17:06.278 INFO [13229]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:06.290 INFO [13229]: COREGRADE is stopping... -- 18:17:06.290 DEBUG [13229]: Closing database connection -- 18:17:06.290 SQL [13229]: pgsql_close() -- 18:17:06.278 DEBUG [19579]: Database connection successful -- 18:17:06.278 INFO [19579]: _SERVER found -- 18:17:06.278 INFO [19579]: REMOTE_ADDR = 10.0.0.15 -- 18:17:06.278 INFO [19579]: SERVER_NAME = works.coregrade.com -- 18:17:06.278 INFO [19579]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:06.278 INFO [19579]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:17:06.278 INFO [19579]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:06.290 INFO [19579]: COREGRADE is stopping... -- 18:17:06.290 DEBUG [19579]: Closing database connection -- 18:17:06.290 SQL [19579]: pgsql_close() -- 18:17:07.520 INFO [9476]: COREGRADE is starting... -- 18:17:07.520 INFO [13229]: COREGRADE is starting... -- 18:17:07.520 INFO [19579]: COREGRADE is starting... -- 18:17:07.520 INFO [19579]: Version from config: 1.0 -- 18:17:07.520 DEBUG [19579]: Connecting to database... -- 18:17:07.520 INFO [13229]: Version from config: 1.0 -- 18:17:07.520 DEBUG [13229]: Connecting to database... -- 18:17:07.520 INFO [9476]: Version from config: 1.0 -- 18:17:07.520 DEBUG [9476]: Connecting to database... -- 18:17:07.520 DEBUG [19579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:07.520 DEBUG [13229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:07.520 DEBUG [9476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:07.520 SQL [19579]: pgsql_db_connect() -- 18:17:07.520 SQL [13229]: pgsql_db_connect() -- 18:17:07.520 SQL [9476]: pgsql_db_connect() -- 18:17:07.525 DEBUG [19579]: Database connection successful -- 18:17:07.525 INFO [19579]: _SERVER found -- 18:17:07.525 INFO [19579]: REMOTE_ADDR = 10.0.0.15 -- 18:17:07.525 INFO [19579]: SERVER_NAME = works.coregrade.com -- 18:17:07.525 INFO [19579]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:07.525 INFO [19579]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:17:07.525 INFO [19579]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:07.538 INFO [19579]: COREGRADE is stopping... -- 18:17:07.538 DEBUG [19579]: Closing database connection -- 18:17:07.538 SQL [19579]: pgsql_close() -- 18:17:07.525 DEBUG [9476]: Database connection successful -- 18:17:07.525 INFO [9476]: _SERVER found -- 18:17:07.525 INFO [9476]: REMOTE_ADDR = 10.0.0.15 -- 18:17:07.525 INFO [9476]: SERVER_NAME = works.coregrade.com -- 18:17:07.525 INFO [9476]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:07.525 INFO [9476]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:17:07.525 INFO [9476]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:07.538 INFO [9476]: COREGRADE is stopping... -- 18:17:07.538 DEBUG [9476]: Closing database connection -- 18:17:07.538 SQL [9476]: pgsql_close() -- 18:17:07.525 DEBUG [13229]: Database connection successful -- 18:17:07.525 INFO [13229]: _SERVER found -- 18:17:07.525 INFO [13229]: REMOTE_ADDR = 10.0.0.15 -- 18:17:07.525 INFO [13229]: SERVER_NAME = works.coregrade.com -- 18:17:07.525 INFO [13229]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:07.525 INFO [13229]: QUERY_STRING = -- 18:17:07.525 INFO [13229]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:07.561 INFO [13229]: COREGRADE is stopping... -- 18:17:07.561 DEBUG [13229]: Closing database connection -- 18:17:07.561 SQL [13229]: pgsql_close() -- 18:17:07.616 INFO [13229]: COREGRADE is starting... -- 18:17:07.616 INFO [19579]: COREGRADE is starting... -- 18:17:07.616 INFO [19579]: Version from config: 1.0 -- 18:17:07.616 DEBUG [19579]: Connecting to database... -- 18:17:07.616 INFO [13229]: Version from config: 1.0 -- 18:17:07.616 DEBUG [13229]: Connecting to database... -- 18:17:07.616 DEBUG [13229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:07.616 DEBUG [19579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:07.616 SQL [13229]: pgsql_db_connect() -- 18:17:07.616 SQL [19579]: pgsql_db_connect() -- 18:17:07.620 DEBUG [13229]: Database connection successful -- 18:17:07.620 INFO [13229]: _SERVER found -- 18:17:07.620 INFO [13229]: REMOTE_ADDR = 10.0.0.15 -- 18:17:07.620 INFO [13229]: SERVER_NAME = works.coregrade.com -- 18:17:07.620 INFO [13229]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:07.620 INFO [13229]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:17:07.620 INFO [13229]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:07.633 INFO [13229]: COREGRADE is stopping... -- 18:17:07.633 DEBUG [13229]: Closing database connection -- 18:17:07.633 SQL [13229]: pgsql_close() -- 18:17:07.620 DEBUG [19579]: Database connection successful -- 18:17:07.620 INFO [19579]: _SERVER found -- 18:17:07.620 INFO [19579]: REMOTE_ADDR = 10.0.0.15 -- 18:17:07.620 INFO [19579]: SERVER_NAME = works.coregrade.com -- 18:17:07.620 INFO [19579]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:07.620 INFO [19579]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:17:07.620 INFO [19579]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:07.633 INFO [19579]: COREGRADE is stopping... -- 18:17:07.633 DEBUG [19579]: Closing database connection -- 18:17:07.633 SQL [19579]: pgsql_close() -- 18:17:08.671 INFO [13229]: COREGRADE is starting... -- 18:17:08.671 INFO [19579]: COREGRADE is starting... -- 18:17:08.671 INFO [19579]: Version from config: 1.0 -- 18:17:08.671 DEBUG [19579]: Connecting to database... -- 18:17:08.671 INFO [13229]: Version from config: 1.0 -- 18:17:08.671 DEBUG [13229]: Connecting to database... -- 18:17:08.671 DEBUG [19579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:08.671 DEBUG [13229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:08.671 SQL [19579]: pgsql_db_connect() -- 18:17:08.671 SQL [13229]: pgsql_db_connect() -- 18:17:08.676 INFO [9476]: COREGRADE is starting... -- 18:17:08.676 INFO [9476]: Version from config: 1.0 -- 18:17:08.676 DEBUG [9476]: Connecting to database... -- 18:17:08.676 DEBUG [9476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:08.676 SQL [9476]: pgsql_db_connect() -- 18:17:08.676 DEBUG [19579]: Database connection successful -- 18:17:08.676 INFO [19579]: _SERVER found -- 18:17:08.676 INFO [19579]: REMOTE_ADDR = 10.0.0.15 -- 18:17:08.676 INFO [19579]: SERVER_NAME = works.coregrade.com -- 18:17:08.676 INFO [19579]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:08.676 INFO [19579]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:17:08.676 INFO [19579]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:08.688 INFO [19579]: COREGRADE is stopping... -- 18:17:08.688 DEBUG [19579]: Closing database connection -- 18:17:08.688 SQL [19579]: pgsql_close() -- 18:17:08.680 DEBUG [9476]: Database connection successful -- 18:17:08.680 INFO [9476]: _SERVER found -- 18:17:08.680 INFO [9476]: REMOTE_ADDR = 10.0.0.15 -- 18:17:08.680 INFO [9476]: SERVER_NAME = works.coregrade.com -- 18:17:08.680 INFO [9476]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:08.680 INFO [9476]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:17:08.680 INFO [9476]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:08.694 INFO [9476]: COREGRADE is stopping... -- 18:17:08.694 DEBUG [9476]: Closing database connection -- 18:17:08.694 SQL [9476]: pgsql_close() -- 18:17:08.676 DEBUG [13229]: Database connection successful -- 18:17:08.676 INFO [13229]: _SERVER found -- 18:17:08.676 INFO [13229]: REMOTE_ADDR = 10.0.0.15 -- 18:17:08.676 INFO [13229]: SERVER_NAME = works.coregrade.com -- 18:17:08.676 INFO [13229]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:08.676 INFO [13229]: QUERY_STRING = -- 18:17:08.676 INFO [13229]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:08.713 INFO [13229]: COREGRADE is stopping... -- 18:17:08.713 DEBUG [13229]: Closing database connection -- 18:17:08.713 SQL [13229]: pgsql_close() -- 18:17:08.888 INFO [13229]: COREGRADE is starting... -- 18:17:08.888 INFO [9476]: COREGRADE is starting... -- 18:17:08.888 INFO [9476]: Version from config: 1.0 -- 18:17:08.888 DEBUG [9476]: Connecting to database... -- 18:17:08.888 INFO [13229]: Version from config: 1.0 -- 18:17:08.888 DEBUG [13229]: Connecting to database... -- 18:17:08.888 DEBUG [9476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:08.888 DEBUG [13229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:08.888 SQL [9476]: pgsql_db_connect() -- 18:17:08.888 SQL [13229]: pgsql_db_connect() -- 18:17:08.893 DEBUG [13229]: Database connection successful -- 18:17:08.893 INFO [13229]: _SERVER found -- 18:17:08.893 INFO [13229]: REMOTE_ADDR = 10.0.0.15 -- 18:17:08.893 INFO [13229]: SERVER_NAME = works.coregrade.com -- 18:17:08.893 INFO [13229]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:08.893 INFO [13229]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:17:08.893 INFO [13229]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:08.905 INFO [13229]: COREGRADE is stopping... -- 18:17:08.905 DEBUG [13229]: Closing database connection -- 18:17:08.905 SQL [13229]: pgsql_close() -- 18:17:08.893 DEBUG [9476]: Database connection successful -- 18:17:08.893 INFO [9476]: _SERVER found -- 18:17:08.893 INFO [9476]: REMOTE_ADDR = 10.0.0.15 -- 18:17:08.893 INFO [9476]: SERVER_NAME = works.coregrade.com -- 18:17:08.893 INFO [9476]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:08.893 INFO [9476]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:17:08.893 INFO [9476]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:08.905 INFO [9476]: COREGRADE is stopping... -- 18:17:08.905 DEBUG [9476]: Closing database connection -- 18:17:08.905 SQL [9476]: pgsql_close() -- 18:17:10.164 INFO [9476]: COREGRADE is starting... -- 18:17:10.164 INFO [13229]: COREGRADE is starting... -- 18:17:10.164 INFO [13229]: Version from config: 1.0 -- 18:17:10.164 DEBUG [13229]: Connecting to database... -- 18:17:10.164 INFO [9476]: Version from config: 1.0 -- 18:17:10.164 DEBUG [9476]: Connecting to database... -- 18:17:10.164 DEBUG [13229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:10.164 DEBUG [9476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:10.164 SQL [13229]: pgsql_db_connect() -- 18:17:10.164 SQL [9476]: pgsql_db_connect() -- 18:17:10.169 INFO [19579]: COREGRADE is starting... -- 18:17:10.170 INFO [19579]: Version from config: 1.0 -- 18:17:10.170 DEBUG [19579]: Connecting to database... -- 18:17:10.170 DEBUG [19579]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:10.170 SQL [19579]: pgsql_db_connect() -- 18:17:10.169 DEBUG [9476]: Database connection successful -- 18:17:10.169 INFO [9476]: _SERVER found -- 18:17:10.169 INFO [9476]: REMOTE_ADDR = 10.0.0.15 -- 18:17:10.169 INFO [9476]: SERVER_NAME = works.coregrade.com -- 18:17:10.169 INFO [9476]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:10.169 INFO [9476]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:17:10.169 INFO [9476]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:10.183 INFO [9476]: COREGRADE is stopping... -- 18:17:10.183 DEBUG [9476]: Closing database connection -- 18:17:10.183 SQL [9476]: pgsql_close() -- 18:17:10.174 DEBUG [19579]: Database connection successful -- 18:17:10.174 INFO [19579]: _SERVER found -- 18:17:10.174 INFO [19579]: REMOTE_ADDR = 10.0.0.15 -- 18:17:10.174 INFO [19579]: SERVER_NAME = works.coregrade.com -- 18:17:10.174 INFO [19579]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:10.174 INFO [19579]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:17:10.174 INFO [19579]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:10.191 INFO [19579]: COREGRADE is stopping... -- 18:17:10.191 DEBUG [19579]: Closing database connection -- 18:17:10.191 SQL [19579]: pgsql_close() -- 18:17:10.169 DEBUG [13229]: Database connection successful -- 18:17:10.169 INFO [13229]: _SERVER found -- 18:17:10.169 INFO [13229]: REMOTE_ADDR = 10.0.0.15 -- 18:17:10.169 INFO [13229]: SERVER_NAME = works.coregrade.com -- 18:17:10.169 INFO [13229]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:10.169 INFO [13229]: QUERY_STRING = -- 18:17:10.169 INFO [13229]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:10.209 INFO [13229]: COREGRADE is stopping... -- 18:17:10.209 DEBUG [13229]: Closing database connection -- 18:17:10.209 SQL [13229]: pgsql_close() -- 18:17:10.352 INFO [9476]: COREGRADE is starting... -- 18:17:10.353 INFO [9476]: Version from config: 1.0 -- 18:17:10.353 DEBUG [9476]: Connecting to database... -- 18:17:10.353 DEBUG [9476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:10.353 SQL [9476]: pgsql_db_connect() -- 18:17:10.362 INFO [13229]: COREGRADE is starting... -- 18:17:10.362 INFO [13229]: Version from config: 1.0 -- 18:17:10.362 DEBUG [13229]: Connecting to database... -- 18:17:10.362 DEBUG [13229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:10.362 SQL [13229]: pgsql_db_connect() -- 18:17:10.357 DEBUG [9476]: Database connection successful -- 18:17:10.357 INFO [9476]: _SERVER found -- 18:17:10.357 INFO [9476]: REMOTE_ADDR = 10.0.0.15 -- 18:17:10.357 INFO [9476]: SERVER_NAME = works.coregrade.com -- 18:17:10.357 INFO [9476]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:10.357 INFO [9476]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:17:10.357 INFO [9476]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:10.371 INFO [9476]: COREGRADE is stopping... -- 18:17:10.371 DEBUG [9476]: Closing database connection -- 18:17:10.371 SQL [9476]: pgsql_close() -- 18:17:10.367 DEBUG [13229]: Database connection successful -- 18:17:10.367 INFO [13229]: _SERVER found -- 18:17:10.367 INFO [13229]: REMOTE_ADDR = 10.0.0.15 -- 18:17:10.367 INFO [13229]: SERVER_NAME = works.coregrade.com -- 18:17:10.367 INFO [13229]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:10.367 INFO [13229]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:17:10.367 INFO [13229]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:10.379 INFO [13229]: COREGRADE is stopping... -- 18:17:10.379 DEBUG [13229]: Closing database connection -- 18:17:10.379 SQL [13229]: pgsql_close() -- 18:17:11.276 INFO [9476]: COREGRADE is starting... -- 18:17:11.276 INFO [9476]: Version from config: 1.0 -- 18:17:11.276 DEBUG [9476]: Connecting to database... -- 18:17:11.276 DEBUG [9476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:11.276 SQL [9476]: pgsql_db_connect() -- 18:17:11.282 INFO [13795]: COREGRADE is starting... -- 18:17:11.282 INFO [13229]: COREGRADE is starting... -- 18:17:11.282 INFO [13795]: Version from config: 1.0 -- 18:17:11.282 DEBUG [13795]: Connecting to database... -- 18:17:11.282 DEBUG [13795]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:11.282 INFO [13229]: Version from config: 1.0 -- 18:17:11.282 DEBUG [13229]: Connecting to database... -- 18:17:11.282 SQL [13795]: pgsql_db_connect() -- 18:17:11.282 DEBUG [13229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:11.282 SQL [13229]: pgsql_db_connect() -- 18:17:11.281 DEBUG [9476]: Database connection successful -- 18:17:11.281 INFO [9476]: _SERVER found -- 18:17:11.281 INFO [9476]: REMOTE_ADDR = 10.0.0.15 -- 18:17:11.281 INFO [9476]: SERVER_NAME = works.coregrade.com -- 18:17:11.281 INFO [9476]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:11.281 INFO [9476]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:17:11.281 INFO [9476]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:11.297 INFO [9476]: COREGRADE is stopping... -- 18:17:11.297 DEBUG [9476]: Closing database connection -- 18:17:11.297 SQL [9476]: pgsql_close() -- 18:17:11.287 DEBUG [13795]: Database connection successful -- 18:17:11.287 INFO [13795]: _SERVER found -- 18:17:11.287 INFO [13795]: REMOTE_ADDR = 10.0.0.15 -- 18:17:11.287 INFO [13795]: SERVER_NAME = works.coregrade.com -- 18:17:11.287 INFO [13795]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:11.287 INFO [13795]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:17:11.287 INFO [13795]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:11.300 INFO [13795]: COREGRADE is stopping... -- 18:17:11.300 DEBUG [13795]: Closing database connection -- 18:17:11.300 SQL [13795]: pgsql_close() -- 18:17:11.286 DEBUG [13229]: Database connection successful -- 18:17:11.286 INFO [13229]: _SERVER found -- 18:17:11.286 INFO [13229]: REMOTE_ADDR = 10.0.0.15 -- 18:17:11.286 INFO [13229]: SERVER_NAME = works.coregrade.com -- 18:17:11.286 INFO [13229]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:11.286 INFO [13229]: QUERY_STRING = -- 18:17:11.286 INFO [13229]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:11.322 INFO [13229]: COREGRADE is stopping... -- 18:17:11.322 DEBUG [13229]: Closing database connection -- 18:17:11.322 SQL [13229]: pgsql_close() -- 18:17:11.383 INFO [13229]: COREGRADE is starting... -- 18:17:11.383 INFO [13795]: COREGRADE is starting... -- 18:17:11.383 INFO [13795]: Version from config: 1.0 -- 18:17:11.383 DEBUG [13795]: Connecting to database... -- 18:17:11.383 INFO [13229]: Version from config: 1.0 -- 18:17:11.383 DEBUG [13229]: Connecting to database... -- 18:17:11.383 DEBUG [13229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:11.383 DEBUG [13795]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:11.383 SQL [13229]: pgsql_db_connect() -- 18:17:11.383 SQL [13795]: pgsql_db_connect() -- 18:17:11.387 DEBUG [13795]: Database connection successful -- 18:17:11.387 INFO [13795]: _SERVER found -- 18:17:11.387 INFO [13795]: REMOTE_ADDR = 10.0.0.15 -- 18:17:11.387 INFO [13795]: SERVER_NAME = works.coregrade.com -- 18:17:11.387 INFO [13795]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:11.387 INFO [13795]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:17:11.387 INFO [13795]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:11.399 INFO [13795]: COREGRADE is stopping... -- 18:17:11.399 DEBUG [13795]: Closing database connection -- 18:17:11.399 SQL [13795]: pgsql_close() -- 18:17:11.387 DEBUG [13229]: Database connection successful -- 18:17:11.387 INFO [13229]: _SERVER found -- 18:17:11.387 INFO [13229]: REMOTE_ADDR = 10.0.0.15 -- 18:17:11.387 INFO [13229]: SERVER_NAME = works.coregrade.com -- 18:17:11.387 INFO [13229]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:11.387 INFO [13229]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:17:11.387 INFO [13229]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:11.400 INFO [13229]: COREGRADE is stopping... -- 18:17:11.400 DEBUG [13229]: Closing database connection -- 18:17:11.400 SQL [13229]: pgsql_close() -- 18:17:12.459 INFO [13229]: COREGRADE is starting... -- 18:17:12.459 INFO [13229]: Version from config: 1.0 -- 18:17:12.459 DEBUG [13229]: Connecting to database... -- 18:17:12.459 DEBUG [13229]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:12.459 SQL [13229]: pgsql_db_connect() -- 18:17:12.465 INFO [13795]: COREGRADE is starting... -- 18:17:12.465 INFO [13795]: Version from config: 1.0 -- 18:17:12.465 DEBUG [13795]: Connecting to database... -- 18:17:12.465 DEBUG [13795]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:12.465 SQL [13795]: pgsql_db_connect() -- 18:17:12.463 DEBUG [13229]: Database connection successful -- 18:17:12.463 INFO [13229]: _SERVER found -- 18:17:12.463 INFO [13229]: REMOTE_ADDR = 10.0.0.15 -- 18:17:12.463 INFO [13229]: SERVER_NAME = works.coregrade.com -- 18:17:12.464 INFO [13229]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:12.464 INFO [13229]: QUERY_STRING = /welcome/viewLogin -- 18:17:12.464 INFO [13229]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:12.496 INFO [13229]: COREGRADE is stopping... -- 18:17:12.496 DEBUG [13229]: Closing database connection -- 18:17:12.496 SQL [13229]: pgsql_close() -- 18:17:12.469 DEBUG [13795]: Database connection successful -- 18:17:12.469 INFO [13795]: _SERVER found -- 18:17:12.469 INFO [13795]: REMOTE_ADDR = 10.0.0.15 -- 18:17:12.469 INFO [13795]: SERVER_NAME = works.coregrade.com -- 18:17:12.469 INFO [13795]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:12.469 INFO [13795]: QUERY_STRING = /auth -- 18:17:12.469 INFO [13795]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:12.506 INFO [13795]: COREGRADE is stopping... -- 18:17:12.506 DEBUG [13795]: Closing database connection -- 18:17:12.506 SQL [13795]: pgsql_close() -- 18:17:12.703 INFO [13795]: COREGRADE is starting... -- 18:17:12.703 INFO [13795]: Version from config: 1.0 -- 18:17:12.703 DEBUG [13795]: Connecting to database... -- 18:17:12.703 DEBUG [13795]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:12.703 SQL [13795]: pgsql_db_connect() -- 18:17:12.708 DEBUG [13795]: Database connection successful -- 18:17:12.708 INFO [13795]: _SERVER found -- 18:17:12.708 INFO [13795]: REMOTE_ADDR = 10.0.0.15 -- 18:17:12.708 INFO [13795]: SERVER_NAME = works.coregrade.com -- 18:17:12.708 INFO [13795]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:12.708 INFO [13795]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:17:12.708 INFO [13795]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:12.719 INFO [13795]: COREGRADE is stopping... -- 18:17:12.719 DEBUG [13795]: Closing database connection -- 18:17:12.719 SQL [13795]: pgsql_close() -- 18:17:12.790 INFO [13795]: COREGRADE is starting... -- 18:17:12.790 INFO [13795]: Version from config: 1.0 -- 18:17:12.790 DEBUG [13795]: Connecting to database... -- 18:17:12.790 DEBUG [13795]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:12.790 SQL [13795]: pgsql_db_connect() -- 18:17:12.794 DEBUG [13795]: Database connection successful -- 18:17:12.794 INFO [13795]: _SERVER found -- 18:17:12.794 INFO [13795]: REMOTE_ADDR = 10.0.0.15 -- 18:17:12.794 INFO [13795]: SERVER_NAME = works.coregrade.com -- 18:17:12.794 INFO [13795]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:12.794 INFO [13795]: QUERY_STRING = /assets2/data/locales/en.json -- 18:17:12.794 INFO [13795]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:12.805 INFO [13795]: COREGRADE is stopping... -- 18:17:12.805 DEBUG [13795]: Closing database connection -- 18:17:12.805 SQL [13795]: pgsql_close() -- 18:17:15.387 INFO [13795]: COREGRADE is starting... -- 18:17:15.387 INFO [13795]: Version from config: 1.0 -- 18:17:15.387 DEBUG [13795]: Connecting to database... -- 18:17:15.387 DEBUG [13795]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:15.387 SQL [13795]: pgsql_db_connect() -- 18:17:15.392 INFO [9476]: COREGRADE is starting... -- 18:17:15.393 INFO [9476]: Version from config: 1.0 -- 18:17:15.393 DEBUG [9476]: Connecting to database... -- 18:17:15.393 DEBUG [9476]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:15.393 SQL [9476]: pgsql_db_connect() -- 18:17:15.394 INFO [13787]: COREGRADE is starting... -- 18:17:15.394 INFO [13787]: Version from config: 1.0 -- 18:17:15.394 DEBUG [13787]: Connecting to database... -- 18:17:15.394 DEBUG [13787]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:15.394 SQL [13787]: pgsql_db_connect() -- 18:17:15.397 DEBUG [9476]: Database connection successful -- 18:17:15.397 INFO [9476]: _SERVER found -- 18:17:15.397 INFO [9476]: REMOTE_ADDR = 10.0.0.15 -- 18:17:15.397 INFO [9476]: SERVER_NAME = works.coregrade.com -- 18:17:15.397 INFO [9476]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:15.397 INFO [9476]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 18:17:15.397 INFO [9476]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:15.411 INFO [9476]: COREGRADE is stopping... -- 18:17:15.411 DEBUG [9476]: Closing database connection -- 18:17:15.411 SQL [9476]: pgsql_close() -- 18:17:15.399 DEBUG [13787]: Database connection successful -- 18:17:15.399 INFO [13787]: _SERVER found -- 18:17:15.399 INFO [13787]: REMOTE_ADDR = 10.0.0.15 -- 18:17:15.399 INFO [13787]: SERVER_NAME = works.coregrade.com -- 18:17:15.399 INFO [13787]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:15.399 INFO [13787]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:17:15.399 INFO [13787]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:15.411 INFO [13787]: COREGRADE is stopping... -- 18:17:15.411 DEBUG [13787]: Closing database connection -- 18:17:15.411 SQL [13787]: pgsql_close() -- 18:17:15.391 DEBUG [13795]: Database connection successful -- 18:17:15.391 INFO [13795]: _SERVER found -- 18:17:15.391 INFO [13795]: REMOTE_ADDR = 10.0.0.15 -- 18:17:15.391 INFO [13795]: SERVER_NAME = works.coregrade.com -- 18:17:15.391 INFO [13795]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; _gat_gtag_UA_54829827_2=1; ci_session=f8qflhlgoa7peg500is02ta5i3mpfg98 -- 18:17:15.391 INFO [13795]: QUERY_STRING = -- 18:17:15.391 INFO [13795]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:15.424 INFO [13795]: COREGRADE is stopping... -- 18:17:15.424 DEBUG [13795]: Closing database connection -- 18:17:15.424 SQL [13795]: pgsql_close() -- 18:35:24.155 INFO [28650]: COREGRADE is starting... -- 18:35:24.156 INFO [28650]: Version from config: 1.0 -- 18:35:24.156 DEBUG [28650]: Connecting to database... -- 18:35:24.156 DEBUG [28650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:35:24.156 SQL [28650]: pgsql_db_connect() -- 18:35:24.160 DEBUG [28650]: Database connection successful -- 18:35:24.160 INFO [28650]: _SERVER found -- 18:35:24.160 INFO [28650]: REMOTE_ADDR = 10.0.0.15 -- 18:35:24.160 INFO [28650]: SERVER_NAME = oameye.works.coregrade.com -- 18:35:24.160 INFO [28650]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=qhmqcqvn7ech1ssnilhse67bf9l532lc -- 18:35:24.160 INFO [28650]: QUERY_STRING = -- 18:35:24.160 INFO [28650]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:35:24.206 INFO [28650]: COREGRADE is stopping... -- 18:35:24.206 DEBUG [28650]: Closing database connection -- 18:35:24.206 SQL [28650]: pgsql_close() -- 18:35:24.212 INFO [28651]: COREGRADE is starting... -- 18:35:24.213 INFO [28651]: Version from config: 1.0 -- 18:35:24.213 DEBUG [28651]: Connecting to database... -- 18:35:24.213 DEBUG [28651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:35:24.213 SQL [28651]: pgsql_db_connect() -- 18:35:24.217 DEBUG [28651]: Database connection successful -- 18:35:24.217 INFO [28651]: _SERVER found -- 18:35:24.217 INFO [28651]: REMOTE_ADDR = 10.0.0.15 -- 18:35:24.217 INFO [28651]: SERVER_NAME = oameye.works.coregrade.com -- 18:35:24.217 INFO [28651]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=qhmqcqvn7ech1ssnilhse67bf9l532lc -- 18:35:24.217 INFO [28651]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:35:24.217 INFO [28651]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:35:24.232 INFO [28651]: COREGRADE is stopping... -- 18:35:24.232 DEBUG [28651]: Closing database connection -- 18:35:24.232 SQL [28651]: pgsql_close() -- 18:35:26.440 INFO [28650]: COREGRADE is starting... -- 18:35:26.440 INFO [28650]: Version from config: 1.0 -- 18:35:26.440 DEBUG [28650]: Connecting to database... -- 18:35:26.440 DEBUG [28650]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:35:26.440 SQL [28650]: pgsql_db_connect() -- 18:35:26.452 INFO [28651]: COREGRADE is starting... -- 18:35:26.452 INFO [28651]: Version from config: 1.0 -- 18:35:26.452 DEBUG [28651]: Connecting to database... -- 18:35:26.452 DEBUG [28651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:35:26.452 SQL [28651]: pgsql_db_connect() -- 18:35:26.444 DEBUG [28650]: Database connection successful -- 18:35:26.444 INFO [28650]: _SERVER found -- 18:35:26.444 INFO [28650]: REMOTE_ADDR = 10.0.0.15 -- 18:35:26.444 INFO [28650]: SERVER_NAME = oameye.works.coregrade.com -- 18:35:26.444 INFO [28650]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=rf3gufp2c0v4eo0kqm080dsceqpbvgfr -- 18:35:26.444 INFO [28650]: QUERY_STRING = /welcome/viewLogin -- 18:35:26.444 INFO [28650]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:35:26.478 INFO [28650]: COREGRADE is stopping... -- 18:35:26.478 DEBUG [28650]: Closing database connection -- 18:35:26.478 SQL [28650]: pgsql_close() -- 18:35:26.456 DEBUG [28651]: Database connection successful -- 18:35:26.456 INFO [28651]: _SERVER found -- 18:35:26.456 INFO [28651]: REMOTE_ADDR = 10.0.0.15 -- 18:35:26.456 INFO [28651]: SERVER_NAME = oameye.works.coregrade.com -- 18:35:26.456 INFO [28651]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=rf3gufp2c0v4eo0kqm080dsceqpbvgfr -- 18:35:26.456 INFO [28651]: QUERY_STRING = /auth -- 18:35:26.456 INFO [28651]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:35:26.493 INFO [28651]: COREGRADE is stopping... -- 18:35:26.493 DEBUG [28651]: Closing database connection -- 18:35:26.493 SQL [28651]: pgsql_close() -- 18:35:26.513 INFO [28651]: COREGRADE is starting... -- 18:35:26.513 INFO [28651]: Version from config: 1.0 -- 18:35:26.514 DEBUG [28651]: Connecting to database... -- 18:35:26.514 DEBUG [28651]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:35:26.514 SQL [28651]: pgsql_db_connect() -- 18:35:26.518 DEBUG [28651]: Database connection successful -- 18:35:26.518 INFO [28651]: _SERVER found -- 18:35:26.518 INFO [28651]: REMOTE_ADDR = 10.0.0.15 -- 18:35:26.518 INFO [28651]: SERVER_NAME = oameye.works.coregrade.com -- 18:35:26.518 INFO [28651]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=rf3gufp2c0v4eo0kqm080dsceqpbvgfr -- 18:35:26.518 INFO [28651]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:35:26.518 INFO [28651]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:35:26.529 INFO [28651]: COREGRADE is stopping... -- 18:35:26.529 DEBUG [28651]: Closing database connection -- 18:35:26.529 SQL [28651]: pgsql_close() -- 08:29:56.367 INFO [6925]: COREGRADE is starting... -- 08:29:56.367 INFO [6925]: Version from config: 1.0 -- 08:29:56.367 DEBUG [6925]: Connecting to database... -- 08:29:56.367 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:56.367 SQL [6925]: pgsql_db_connect() -- 08:29:56.374 DEBUG [6925]: Database connection successful -- 08:29:56.374 INFO [6925]: _SERVER found -- 08:29:56.374 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 08:29:56.374 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 08:29:56.374 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938 -- 08:29:56.374 INFO [6925]: QUERY_STRING = -- 08:29:56.374 INFO [6925]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:29:56.420 INFO [6925]: COREGRADE is stopping... -- 08:29:56.420 DEBUG [6925]: Closing database connection -- 08:29:56.420 SQL [6925]: pgsql_close() -- 08:29:56.743 INFO [6925]: COREGRADE is starting... -- 08:29:56.743 INFO [6925]: Version from config: 1.0 -- 08:29:56.743 DEBUG [6925]: Connecting to database... -- 08:29:56.743 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:56.743 SQL [6925]: pgsql_db_connect() -- 08:29:56.748 DEBUG [6925]: Database connection successful -- 08:29:56.748 INFO [6925]: _SERVER found -- 08:29:56.748 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 08:29:56.748 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 08:29:56.748 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=pq1q4majjn163k9ok90v2psfkm3stimp -- 08:29:56.748 INFO [6925]: QUERY_STRING = /assets/img/footer_1.jpg -- 08:29:56.748 INFO [6925]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:29:56.761 INFO [6925]: COREGRADE is stopping... -- 08:29:56.761 DEBUG [6925]: Closing database connection -- 08:29:56.761 SQL [6925]: pgsql_close() -- 08:30:55.108 INFO [6926]: COREGRADE is starting... -- 08:30:55.108 INFO [6926]: Version from config: 1.0 -- 08:30:55.108 DEBUG [6926]: Connecting to database... -- 08:30:55.108 DEBUG [6926]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:30:55.108 SQL [6926]: pgsql_db_connect() -- 08:30:55.113 DEBUG [6926]: Database connection successful -- 08:30:55.113 INFO [6926]: _SERVER found -- 08:30:55.113 INFO [6926]: REMOTE_ADDR = 10.0.0.15 -- 08:30:55.113 INFO [6926]: SERVER_NAME = oameye.works.coregrade.com -- 08:30:55.113 INFO [6926]: QUERY_STRING = -- 08:30:55.113 INFO [6926]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:30:55.158 INFO [6926]: COREGRADE is stopping... -- 08:30:55.158 DEBUG [6926]: Closing database connection -- 08:30:55.158 SQL [6926]: pgsql_close() -- 08:30:55.541 INFO [6926]: COREGRADE is starting... -- 08:30:55.541 INFO [6926]: Version from config: 1.0 -- 08:30:55.541 DEBUG [6926]: Connecting to database... -- 08:30:55.541 DEBUG [6926]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:30:55.541 SQL [6926]: pgsql_db_connect() -- 08:30:55.545 DEBUG [6926]: Database connection successful -- 08:30:55.545 INFO [6926]: _SERVER found -- 08:30:55.545 INFO [6926]: REMOTE_ADDR = 10.0.0.15 -- 08:30:55.545 INFO [6926]: SERVER_NAME = oameye.works.coregrade.com -- 08:30:55.545 INFO [6926]: HTTP_COOKIE = ci_session=vhh095l7437p2uecrcb9ku4tjdoduar3 -- 08:30:55.546 INFO [6926]: QUERY_STRING = /assets/img/footer_1.jpg -- 08:30:55.546 INFO [6926]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:30:55.558 INFO [6926]: COREGRADE is stopping... -- 08:30:55.558 DEBUG [6926]: Closing database connection -- 08:30:55.558 SQL [6926]: pgsql_close() -- 08:31:03.882 INFO [6928]: COREGRADE is starting... -- 08:31:03.882 INFO [6928]: Version from config: 1.0 -- 08:31:03.882 DEBUG [6928]: Connecting to database... -- 08:31:03.882 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:31:03.882 SQL [6928]: pgsql_db_connect() -- 08:31:03.887 DEBUG [6928]: Database connection successful -- 08:31:03.887 INFO [6928]: _SERVER found -- 08:31:03.887 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 08:31:03.887 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 08:31:03.887 INFO [6928]: HTTP_COOKIE = ci_session=vhh095l7437p2uecrcb9ku4tjdoduar3; _ga=GA1.2.1799069572.1586781069; _gid=GA1.2.1388688561.1586781069; _gat_gtag_UA_54829827_2=1 -- 08:31:03.887 INFO [6928]: QUERY_STRING = /auth -- 08:31:03.887 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:31:03.927 INFO [6928]: COREGRADE is stopping... -- 08:31:03.927 DEBUG [6928]: Closing database connection -- 08:31:03.927 SQL [6928]: pgsql_close() -- 08:31:04.277 INFO [6925]: COREGRADE is starting... -- 08:31:04.277 INFO [6925]: Version from config: 1.0 -- 08:31:04.277 DEBUG [6925]: Connecting to database... -- 08:31:04.277 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:31:04.277 SQL [6925]: pgsql_db_connect() -- 08:31:04.282 DEBUG [6925]: Database connection successful -- 08:31:04.282 INFO [6925]: _SERVER found -- 08:31:04.282 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 08:31:04.282 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 08:31:04.282 INFO [6925]: HTTP_COOKIE = ci_session=vhh095l7437p2uecrcb9ku4tjdoduar3; _ga=GA1.2.1799069572.1586781069; _gid=GA1.2.1388688561.1586781069; _gat_gtag_UA_54829827_2=1 -- 08:31:04.282 INFO [6925]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 08:31:04.282 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:31:04.294 INFO [6925]: COREGRADE is stopping... -- 08:31:04.294 DEBUG [6925]: Closing database connection -- 08:31:04.294 SQL [6925]: pgsql_close() -- 08:31:04.473 INFO [6925]: COREGRADE is starting... -- 08:31:04.473 INFO [6925]: Version from config: 1.0 -- 08:31:04.473 DEBUG [6925]: Connecting to database... -- 08:31:04.473 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:31:04.473 SQL [6925]: pgsql_db_connect() -- 08:31:04.477 DEBUG [6925]: Database connection successful -- 08:31:04.477 INFO [6925]: _SERVER found -- 08:31:04.477 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 08:31:04.477 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 08:31:04.477 INFO [6925]: HTTP_COOKIE = ci_session=vhh095l7437p2uecrcb9ku4tjdoduar3; _ga=GA1.2.1799069572.1586781069; _gid=GA1.2.1388688561.1586781069; _gat_gtag_UA_54829827_2=1 -- 08:31:04.477 INFO [6925]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 08:31:04.477 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:31:04.489 INFO [6925]: COREGRADE is stopping... -- 08:31:04.489 DEBUG [6925]: Closing database connection -- 08:31:04.489 SQL [6925]: pgsql_close() -- 08:31:45.334 INFO [7002]: COREGRADE is starting... -- 08:31:45.335 INFO [7002]: Version from config: 1.0 -- 08:31:45.335 DEBUG [7002]: Connecting to database... -- 08:31:45.335 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:31:45.335 SQL [7002]: pgsql_db_connect() -- 08:31:45.339 DEBUG [7002]: Database connection successful -- 08:31:45.339 INFO [7002]: _SERVER found -- 08:31:45.339 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 08:31:45.339 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 08:31:45.339 INFO [7002]: HTTP_COOKIE = ci_session=vhh095l7437p2uecrcb9ku4tjdoduar3; _ga=GA1.2.1799069572.1586781069; _gid=GA1.2.1388688561.1586781069; _gat_gtag_UA_54829827_2=1 -- 08:31:45.339 INFO [7002]: QUERY_STRING = /auth/resetpass -- 08:31:45.339 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:31:45.378 INFO [7002]: COREGRADE is stopping... -- 08:31:45.378 DEBUG [7002]: Closing database connection -- 08:31:45.378 SQL [7002]: pgsql_close() -- 08:31:45.550 INFO [7002]: COREGRADE is starting... -- 08:31:45.551 INFO [7002]: Version from config: 1.0 -- 08:31:45.551 DEBUG [7002]: Connecting to database... -- 08:31:45.551 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:31:45.551 SQL [7002]: pgsql_db_connect() -- 08:31:45.555 DEBUG [7002]: Database connection successful -- 08:31:45.555 INFO [7002]: _SERVER found -- 08:31:45.555 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 08:31:45.555 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 08:31:45.555 INFO [7002]: HTTP_COOKIE = ci_session=vhh095l7437p2uecrcb9ku4tjdoduar3; _ga=GA1.2.1799069572.1586781069; _gid=GA1.2.1388688561.1586781069; _gat_gtag_UA_54829827_2=1 -- 08:31:45.555 INFO [7002]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 08:31:45.555 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:31:45.567 INFO [7002]: COREGRADE is stopping... -- 08:31:45.567 DEBUG [7002]: Closing database connection -- 08:31:45.567 SQL [7002]: pgsql_close() -- 08:31:45.620 INFO [7002]: COREGRADE is starting... -- 08:31:45.621 INFO [7002]: Version from config: 1.0 -- 08:31:45.621 DEBUG [7002]: Connecting to database... -- 08:31:45.621 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:31:45.621 SQL [7002]: pgsql_db_connect() -- 08:31:45.625 DEBUG [7002]: Database connection successful -- 08:31:45.625 INFO [7002]: _SERVER found -- 08:31:45.625 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 08:31:45.625 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 08:31:45.625 INFO [7002]: HTTP_COOKIE = ci_session=vhh095l7437p2uecrcb9ku4tjdoduar3; _ga=GA1.2.1799069572.1586781069; _gid=GA1.2.1388688561.1586781069; _gat_gtag_UA_54829827_2=1 -- 08:31:45.625 INFO [7002]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 08:31:45.625 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:31:45.637 INFO [7002]: COREGRADE is stopping... -- 08:31:45.637 DEBUG [7002]: Closing database connection -- 08:31:45.637 SQL [7002]: pgsql_close() -- 08:31:47.114 INFO [7004]: COREGRADE is starting... -- 08:31:47.115 INFO [7004]: Version from config: 1.0 -- 08:31:47.115 DEBUG [7004]: Connecting to database... -- 08:31:47.115 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:31:47.115 SQL [7004]: pgsql_db_connect() -- 08:31:47.119 DEBUG [7004]: Database connection successful -- 08:31:47.119 INFO [7004]: _SERVER found -- 08:31:47.119 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 08:31:47.119 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 08:31:47.119 INFO [7004]: HTTP_COOKIE = ci_session=vhh095l7437p2uecrcb9ku4tjdoduar3; _ga=GA1.2.1799069572.1586781069; _gid=GA1.2.1388688561.1586781069; _gat_gtag_UA_54829827_2=1 -- 08:31:47.119 INFO [7004]: QUERY_STRING = /auth -- 08:31:47.119 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:31:47.157 INFO [7004]: COREGRADE is stopping... -- 08:31:47.158 DEBUG [7004]: Closing database connection -- 08:31:47.158 SQL [7004]: pgsql_close() -- 08:31:47.294 INFO [7005]: COREGRADE is starting... -- 08:31:47.294 INFO [7005]: Version from config: 1.0 -- 08:31:47.294 DEBUG [7005]: Connecting to database... -- 08:31:47.294 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:31:47.294 SQL [7005]: pgsql_db_connect() -- 08:31:47.299 DEBUG [7005]: Database connection successful -- 08:31:47.299 INFO [7005]: _SERVER found -- 08:31:47.299 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 08:31:47.299 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 08:31:47.299 INFO [7005]: HTTP_COOKIE = ci_session=vhh095l7437p2uecrcb9ku4tjdoduar3; _ga=GA1.2.1799069572.1586781069; _gid=GA1.2.1388688561.1586781069; _gat_gtag_UA_54829827_2=1 -- 08:31:47.299 INFO [7005]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 08:31:47.299 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:31:47.313 INFO [7005]: COREGRADE is stopping... -- 08:31:47.313 DEBUG [7005]: Closing database connection -- 08:31:47.313 SQL [7005]: pgsql_close() -- 08:37:30.475 INFO [7006]: COREGRADE is starting... -- 08:37:30.476 INFO [7006]: Version from config: 1.0 -- 08:37:30.476 DEBUG [7006]: Connecting to database... -- 08:37:30.476 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:30.476 SQL [7006]: pgsql_db_connect() -- 08:37:30.480 DEBUG [7006]: Database connection successful -- 08:37:30.480 INFO [7006]: _SERVER found -- 08:37:30.480 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 08:37:30.480 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:30.480 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=pq1q4majjn163k9ok90v2psfkm3stimp -- 08:37:30.480 INFO [7006]: QUERY_STRING = -- 08:37:30.480 INFO [7006]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:30.529 INFO [7006]: COREGRADE is stopping... -- 08:37:30.529 DEBUG [7006]: Closing database connection -- 08:37:30.529 SQL [7006]: pgsql_close() -- 08:37:30.669 INFO [7006]: COREGRADE is starting... -- 08:37:30.670 INFO [7006]: Version from config: 1.0 -- 08:37:30.670 DEBUG [7006]: Connecting to database... -- 08:37:30.670 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:30.670 SQL [7006]: pgsql_db_connect() -- 08:37:30.674 DEBUG [7006]: Database connection successful -- 08:37:30.674 INFO [7006]: _SERVER found -- 08:37:30.674 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 08:37:30.674 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:30.674 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=d0mhli2mlrk6oj5h25gcokv8jhq4g8rd -- 08:37:30.674 INFO [7006]: QUERY_STRING = /assets/img/footer_1.jpg -- 08:37:30.674 INFO [7006]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:30.687 INFO [7006]: COREGRADE is stopping... -- 08:37:30.687 DEBUG [7006]: Closing database connection -- 08:37:30.687 SQL [7006]: pgsql_close() -- 08:37:51.509 INFO [7007]: COREGRADE is starting... -- 08:37:51.509 INFO [7007]: Version from config: 1.0 -- 08:37:51.509 DEBUG [7007]: Connecting to database... -- 08:37:51.509 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:51.509 SQL [7007]: pgsql_db_connect() -- 08:37:51.514 DEBUG [7007]: Database connection successful -- 08:37:51.514 INFO [7007]: _SERVER found -- 08:37:51.514 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 08:37:51.514 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:51.514 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=d0mhli2mlrk6oj5h25gcokv8jhq4g8rd; _gat_gtag_UA_54829827_2=1 -- 08:37:51.514 INFO [7007]: QUERY_STRING = /home/howitworks -- 08:37:51.514 INFO [7007]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:51.553 INFO [7007]: COREGRADE is stopping... -- 08:37:51.553 DEBUG [7007]: Closing database connection -- 08:37:51.553 SQL [7007]: pgsql_close() -- 08:37:51.985 INFO [7007]: COREGRADE is starting... -- 08:37:51.985 INFO [7007]: Version from config: 1.0 -- 08:37:51.985 DEBUG [7007]: Connecting to database... -- 08:37:51.985 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:51.985 SQL [7007]: pgsql_db_connect() -- 08:37:51.989 DEBUG [7007]: Database connection successful -- 08:37:51.989 INFO [7007]: _SERVER found -- 08:37:51.989 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 08:37:51.989 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:51.989 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=d0mhli2mlrk6oj5h25gcokv8jhq4g8rd; _gat_gtag_UA_54829827_2=1 -- 08:37:51.989 INFO [7007]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 08:37:51.989 INFO [7007]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:52.001 INFO [7007]: COREGRADE is stopping... -- 08:37:52.001 DEBUG [7007]: Closing database connection -- 08:37:52.001 SQL [7007]: pgsql_close() -- 08:38:13.783 INFO [6983]: COREGRADE is starting... -- 08:38:13.784 INFO [6983]: Version from config: 1.0 -- 08:38:13.784 DEBUG [6983]: Connecting to database... -- 08:38:13.784 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:38:13.784 SQL [6983]: pgsql_db_connect() -- 08:38:13.788 DEBUG [6983]: Database connection successful -- 08:38:13.788 INFO [6983]: _SERVER found -- 08:38:13.788 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 08:38:13.788 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 08:38:13.788 INFO [6983]: QUERY_STRING = -- 08:38:13.788 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:38:13.834 INFO [6983]: COREGRADE is stopping... -- 08:38:13.834 DEBUG [6983]: Closing database connection -- 08:38:13.834 SQL [6983]: pgsql_close() -- 08:38:14.896 INFO [6983]: COREGRADE is starting... -- 08:38:14.896 INFO [6983]: Version from config: 1.0 -- 08:38:14.896 DEBUG [6983]: Connecting to database... -- 08:38:14.896 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:38:14.896 SQL [6983]: pgsql_db_connect() -- 08:38:14.900 DEBUG [6983]: Database connection successful -- 08:38:14.900 INFO [6983]: _SERVER found -- 08:38:14.901 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 08:38:14.901 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 08:38:14.901 INFO [6983]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; _gat_gtag_UA_54829827_2=1 -- 08:38:14.901 INFO [6983]: QUERY_STRING = /assets/img/footer_1.jpg -- 08:38:14.901 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:38:14.913 INFO [6983]: COREGRADE is stopping... -- 08:38:14.913 DEBUG [6983]: Closing database connection -- 08:38:14.913 SQL [6983]: pgsql_close() -- 08:38:21.666 INFO [7002]: COREGRADE is starting... -- 08:38:21.667 INFO [7002]: Version from config: 1.0 -- 08:38:21.667 DEBUG [7002]: Connecting to database... -- 08:38:21.667 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:38:21.667 SQL [7002]: pgsql_db_connect() -- 08:38:21.671 DEBUG [7002]: Database connection successful -- 08:38:21.671 INFO [7002]: _SERVER found -- 08:38:21.671 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 08:38:21.671 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 08:38:21.671 INFO [7002]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; _gat_gtag_UA_54829827_2=1 -- 08:38:21.671 INFO [7002]: QUERY_STRING = /home/howitworks -- 08:38:21.671 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:38:21.707 INFO [7002]: COREGRADE is stopping... -- 08:38:21.708 DEBUG [7002]: Closing database connection -- 08:38:21.708 SQL [7002]: pgsql_close() -- 08:38:21.976 INFO [7006]: COREGRADE is starting... -- 08:38:21.976 INFO [7006]: Version from config: 1.0 -- 08:38:21.976 DEBUG [7006]: Connecting to database... -- 08:38:21.976 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:38:21.976 SQL [7006]: pgsql_db_connect() -- 08:38:21.980 DEBUG [7006]: Database connection successful -- 08:38:21.980 INFO [7006]: _SERVER found -- 08:38:21.980 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 08:38:21.980 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 08:38:21.980 INFO [7006]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; _gat_gtag_UA_54829827_2=1 -- 08:38:21.980 INFO [7006]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 08:38:21.980 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:38:21.992 INFO [7006]: COREGRADE is stopping... -- 08:38:21.992 DEBUG [7006]: Closing database connection -- 08:38:21.992 SQL [7006]: pgsql_close() -- 08:38:26.212 INFO [7002]: COREGRADE is starting... -- 08:38:26.212 INFO [7002]: Version from config: 1.0 -- 08:38:26.212 DEBUG [7002]: Connecting to database... -- 08:38:26.212 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:38:26.212 SQL [7002]: pgsql_db_connect() -- 08:38:26.217 DEBUG [7002]: Database connection successful -- 08:38:26.217 INFO [7002]: _SERVER found -- 08:38:26.217 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 08:38:26.217 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 08:38:26.217 INFO [7002]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; _gat_gtag_UA_54829827_2=1 -- 08:38:26.217 INFO [7002]: QUERY_STRING = /home/howitworks -- 08:38:26.217 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:38:26.251 INFO [7002]: COREGRADE is stopping... -- 08:38:26.251 DEBUG [7002]: Closing database connection -- 08:38:26.252 SQL [7002]: pgsql_close() -- 08:38:26.399 INFO [7002]: COREGRADE is starting... -- 08:38:26.400 INFO [7002]: Version from config: 1.0 -- 08:38:26.400 DEBUG [7002]: Connecting to database... -- 08:38:26.400 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:38:26.400 SQL [7002]: pgsql_db_connect() -- 08:38:26.404 DEBUG [7002]: Database connection successful -- 08:38:26.404 INFO [7002]: _SERVER found -- 08:38:26.404 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 08:38:26.404 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 08:38:26.404 INFO [7002]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; _gat_gtag_UA_54829827_2=1 -- 08:38:26.404 INFO [7002]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 08:38:26.404 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:38:26.416 INFO [7002]: COREGRADE is stopping... -- 08:38:26.417 DEBUG [7002]: Closing database connection -- 08:38:26.417 SQL [7002]: pgsql_close() -- 08:39:52.020 INFO [6929]: COREGRADE is starting... -- 08:39:52.021 INFO [6929]: Version from config: 1.0 -- 08:39:52.021 DEBUG [6929]: Connecting to database... -- 08:39:52.021 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:39:52.021 SQL [6929]: pgsql_db_connect() -- 08:39:52.025 DEBUG [6929]: Database connection successful -- 08:39:52.025 INFO [6929]: _SERVER found -- 08:39:52.025 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 08:39:52.025 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 08:39:52.025 INFO [6929]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 08:39:52.025 INFO [6929]: QUERY_STRING = /home/howitworks -- 08:39:52.025 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:39:52.062 INFO [6929]: COREGRADE is stopping... -- 08:39:52.063 DEBUG [6929]: Closing database connection -- 08:39:52.063 SQL [6929]: pgsql_close() -- 08:39:52.125 INFO [6929]: COREGRADE is starting... -- 08:39:52.126 INFO [6929]: Version from config: 1.0 -- 08:39:52.126 DEBUG [6929]: Connecting to database... -- 08:39:52.126 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:39:52.126 SQL [6929]: pgsql_db_connect() -- 08:39:52.130 DEBUG [6929]: Database connection successful -- 08:39:52.130 INFO [6929]: _SERVER found -- 08:39:52.130 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 08:39:52.130 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 08:39:52.130 INFO [6929]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 08:39:52.130 INFO [6929]: QUERY_STRING = /favicon.ico -- 08:39:52.130 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:39:52.142 INFO [6929]: COREGRADE is stopping... -- 08:39:52.142 DEBUG [6929]: Closing database connection -- 08:39:52.142 SQL [6929]: pgsql_close() -- 08:43:13.206 INFO [6927]: COREGRADE is starting... -- 08:43:13.206 INFO [6927]: Version from config: 1.0 -- 08:43:13.206 DEBUG [6927]: Connecting to database... -- 08:43:13.206 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:13.206 SQL [6927]: pgsql_db_connect() -- 08:43:13.211 DEBUG [6927]: Database connection successful -- 08:43:13.211 INFO [6927]: _SERVER found -- 08:43:13.211 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 08:43:13.211 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:13.211 INFO [6927]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 08:43:13.211 INFO [6927]: QUERY_STRING = /home/howitworks -- 08:43:13.211 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:13.256 INFO [6927]: COREGRADE is stopping... -- 08:43:13.256 DEBUG [6927]: Closing database connection -- 08:43:13.256 SQL [6927]: pgsql_close() -- 08:43:13.332 INFO [6927]: COREGRADE is starting... -- 08:43:13.332 INFO [6927]: Version from config: 1.0 -- 08:43:13.332 DEBUG [6927]: Connecting to database... -- 08:43:13.332 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:13.332 SQL [6927]: pgsql_db_connect() -- 08:43:13.335 INFO [6983]: COREGRADE is starting... -- 08:43:13.335 INFO [6983]: Version from config: 1.0 -- 08:43:13.335 DEBUG [6983]: Connecting to database... -- 08:43:13.335 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:13.335 SQL [6983]: pgsql_db_connect() -- 08:43:13.337 DEBUG [6927]: Database connection successful -- 08:43:13.337 INFO [6927]: _SERVER found -- 08:43:13.337 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 08:43:13.337 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:13.337 INFO [6927]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 08:43:13.337 INFO [6927]: QUERY_STRING = /app-assets/vendors/css/vendors.min.css -- 08:43:13.337 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:13.351 INFO [6927]: COREGRADE is stopping... -- 08:43:13.351 DEBUG [6927]: Closing database connection -- 08:43:13.351 SQL [6927]: pgsql_close() -- 08:43:13.339 DEBUG [6983]: Database connection successful -- 08:43:13.339 INFO [6983]: _SERVER found -- 08:43:13.339 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 08:43:13.339 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:13.339 INFO [6983]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 08:43:13.339 INFO [6983]: QUERY_STRING = /app-assets/vendors/css/ui/prism.min.css -- 08:43:13.339 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:13.353 INFO [6983]: COREGRADE is stopping... -- 08:43:13.353 DEBUG [6983]: Closing database connection -- 08:43:13.353 SQL [6983]: pgsql_close() -- 08:43:13.379 INFO [6927]: COREGRADE is starting... -- 08:43:13.379 INFO [6927]: Version from config: 1.0 -- 08:43:13.379 DEBUG [6927]: Connecting to database... -- 08:43:13.379 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:13.379 SQL [6927]: pgsql_db_connect() -- 08:43:13.381 INFO [6983]: COREGRADE is starting... -- 08:43:13.382 INFO [6983]: Version from config: 1.0 -- 08:43:13.382 DEBUG [6983]: Connecting to database... -- 08:43:13.382 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:13.382 SQL [6983]: pgsql_db_connect() -- 08:43:13.397 INFO [6928]: COREGRADE is starting... -- 08:43:13.397 INFO [6928]: Version from config: 1.0 -- 08:43:13.397 DEBUG [6928]: Connecting to database... -- 08:43:13.397 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:13.397 SQL [6928]: pgsql_db_connect() -- 08:43:13.386 DEBUG [6983]: Database connection successful -- 08:43:13.386 INFO [6983]: _SERVER found -- 08:43:13.386 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 08:43:13.386 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:13.386 INFO [6983]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 08:43:13.386 INFO [6983]: QUERY_STRING = /app-assets/css/bootstrap-extended.css -- 08:43:13.386 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:13.398 INFO [6983]: COREGRADE is stopping... -- 08:43:13.398 DEBUG [6983]: Closing database connection -- 08:43:13.398 SQL [6983]: pgsql_close() -- 08:43:13.384 DEBUG [6927]: Database connection successful -- 08:43:13.384 INFO [6927]: _SERVER found -- 08:43:13.384 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 08:43:13.384 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:13.384 INFO [6927]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 08:43:13.384 INFO [6927]: QUERY_STRING = /app-assets/css/bootstrap.css -- 08:43:13.384 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:13.398 INFO [6927]: COREGRADE is stopping... -- 08:43:13.398 DEBUG [6927]: Closing database connection -- 08:43:13.398 SQL [6927]: pgsql_close() -- 08:43:13.405 INFO [6927]: COREGRADE is starting... -- 08:43:13.405 INFO [6983]: COREGRADE is starting... -- 08:43:13.406 INFO [6983]: Version from config: 1.0 -- 08:43:13.406 DEBUG [6983]: Connecting to database... -- 08:43:13.406 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:13.406 SQL [6983]: pgsql_db_connect() -- 08:43:13.406 INFO [6927]: Version from config: 1.0 -- 08:43:13.406 DEBUG [6927]: Connecting to database... -- 08:43:13.406 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:13.406 SQL [6927]: pgsql_db_connect() -- 08:43:13.402 DEBUG [6928]: Database connection successful -- 08:43:13.402 INFO [6928]: _SERVER found -- 08:43:13.402 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 08:43:13.402 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:13.402 INFO [6928]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 08:43:13.402 INFO [6928]: QUERY_STRING = /app-assets/css/colors.css -- 08:43:13.402 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:13.416 INFO [6928]: COREGRADE is stopping... -- 08:43:13.416 DEBUG [6928]: Closing database connection -- 08:43:13.416 SQL [6928]: pgsql_close() -- 08:43:13.419 INFO [6925]: COREGRADE is starting... -- 08:43:13.419 INFO [6925]: Version from config: 1.0 -- 08:43:13.419 DEBUG [6925]: Connecting to database... -- 08:43:13.419 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:13.419 SQL [6925]: pgsql_db_connect() -- 08:43:13.410 DEBUG [6983]: Database connection successful -- 08:43:13.410 INFO [6983]: _SERVER found -- 08:43:13.410 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 08:43:13.410 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:13.410 INFO [6983]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 08:43:13.410 INFO [6983]: QUERY_STRING = /app-assets/css/themes/dark-layout.css -- 08:43:13.410 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:13.423 INFO [6983]: COREGRADE is stopping... -- 08:43:13.423 DEBUG [6983]: Closing database connection -- 08:43:13.423 SQL [6983]: pgsql_close() -- 08:43:13.410 DEBUG [6927]: Database connection successful -- 08:43:13.410 INFO [6927]: _SERVER found -- 08:43:13.410 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 08:43:13.410 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:13.410 INFO [6927]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 08:43:13.410 INFO [6927]: QUERY_STRING = /app-assets/css/components.css -- 08:43:13.410 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:13.423 INFO [6927]: COREGRADE is stopping... -- 08:43:13.423 DEBUG [6927]: Closing database connection -- 08:43:13.423 SQL [6927]: pgsql_close() -- 08:43:13.429 INFO [6927]: COREGRADE is starting... -- 08:43:13.430 INFO [6927]: Version from config: 1.0 -- 08:43:13.430 DEBUG [6927]: Connecting to database... -- 08:43:13.430 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:13.430 SQL [6927]: pgsql_db_connect() -- 08:43:13.432 INFO [6983]: COREGRADE is starting... -- 08:43:13.432 INFO [6983]: Version from config: 1.0 -- 08:43:13.432 DEBUG [6983]: Connecting to database... -- 08:43:13.432 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:13.432 SQL [6983]: pgsql_db_connect() -- 08:43:13.424 DEBUG [6925]: Database connection successful -- 08:43:13.424 INFO [6925]: _SERVER found -- 08:43:13.424 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 08:43:13.424 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:13.424 INFO [6925]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 08:43:13.424 INFO [6925]: QUERY_STRING = /app-assets/css/themes/semi-dark-layout.css -- 08:43:13.424 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:13.437 INFO [6925]: COREGRADE is stopping... -- 08:43:13.437 DEBUG [6925]: Closing database connection -- 08:43:13.437 SQL [6925]: pgsql_close() -- 08:43:13.444 INFO [6925]: COREGRADE is starting... -- 08:43:13.445 INFO [6925]: Version from config: 1.0 -- 08:43:13.445 DEBUG [6925]: Connecting to database... -- 08:43:13.445 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:13.445 SQL [6925]: pgsql_db_connect() -- 08:43:13.434 DEBUG [6927]: Database connection successful -- 08:43:13.434 INFO [6927]: _SERVER found -- 08:43:13.434 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 08:43:13.434 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:13.434 INFO [6927]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 08:43:13.434 INFO [6927]: QUERY_STRING = /app-assets/css/core/menu/menu-types/vertical-menu.css -- 08:43:13.434 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:13.447 INFO [6927]: COREGRADE is stopping... -- 08:43:13.447 DEBUG [6927]: Closing database connection -- 08:43:13.447 SQL [6927]: pgsql_close() -- 08:43:13.436 DEBUG [6983]: Database connection successful -- 08:43:13.436 INFO [6983]: _SERVER found -- 08:43:13.436 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 08:43:13.436 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:13.436 INFO [6983]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 08:43:13.436 INFO [6983]: QUERY_STRING = /app-assets/css/core/colors/palette-gradient.css -- 08:43:13.436 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:13.448 INFO [6983]: COREGRADE is stopping... -- 08:43:13.448 DEBUG [6983]: Closing database connection -- 08:43:13.448 SQL [6983]: pgsql_close() -- 08:43:13.453 INFO [6983]: COREGRADE is starting... -- 08:43:13.453 INFO [6983]: Version from config: 1.0 -- 08:43:13.453 DEBUG [6983]: Connecting to database... -- 08:43:13.453 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:13.453 SQL [6983]: pgsql_db_connect() -- 08:43:13.453 INFO [6927]: COREGRADE is starting... -- 08:43:13.453 INFO [6927]: Version from config: 1.0 -- 08:43:13.453 DEBUG [6927]: Connecting to database... -- 08:43:13.453 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:13.453 SQL [6927]: pgsql_db_connect() -- 08:43:13.450 DEBUG [6925]: Database connection successful -- 08:43:13.450 INFO [6925]: _SERVER found -- 08:43:13.450 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 08:43:13.450 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:13.450 INFO [6925]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 08:43:13.450 INFO [6925]: QUERY_STRING = /app-assets/vendors/js/vendors.min.js -- 08:43:13.450 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:13.462 INFO [6925]: COREGRADE is stopping... -- 08:43:13.462 DEBUG [6925]: Closing database connection -- 08:43:13.462 SQL [6925]: pgsql_close() -- 08:43:13.465 INFO [6928]: COREGRADE is starting... -- 08:43:13.466 INFO [6928]: Version from config: 1.0 -- 08:43:13.466 DEBUG [6928]: Connecting to database... -- 08:43:13.466 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:13.466 SQL [6928]: pgsql_db_connect() -- 08:43:13.457 DEBUG [6983]: Database connection successful -- 08:43:13.457 INFO [6983]: _SERVER found -- 08:43:13.457 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 08:43:13.457 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:13.457 INFO [6983]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 08:43:13.457 INFO [6983]: QUERY_STRING = /app-assets/js/core/app-menu.js -- 08:43:13.458 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:13.469 INFO [6983]: COREGRADE is stopping... -- 08:43:13.469 DEBUG [6983]: Closing database connection -- 08:43:13.470 SQL [6983]: pgsql_close() -- 08:43:13.457 DEBUG [6927]: Database connection successful -- 08:43:13.457 INFO [6927]: _SERVER found -- 08:43:13.457 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 08:43:13.457 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:13.457 INFO [6927]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 08:43:13.457 INFO [6927]: QUERY_STRING = /app-assets/vendors/js/ui/prism.min.js -- 08:43:13.457 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:13.470 INFO [6927]: COREGRADE is stopping... -- 08:43:13.470 DEBUG [6927]: Closing database connection -- 08:43:13.470 SQL [6927]: pgsql_close() -- 08:43:13.479 INFO [6927]: COREGRADE is starting... -- 08:43:13.479 INFO [6927]: Version from config: 1.0 -- 08:43:13.479 DEBUG [6927]: Connecting to database... -- 08:43:13.479 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:13.479 SQL [6927]: pgsql_db_connect() -- 08:43:13.481 INFO [6983]: COREGRADE is starting... -- 08:43:13.481 INFO [6983]: Version from config: 1.0 -- 08:43:13.481 DEBUG [6983]: Connecting to database... -- 08:43:13.481 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:13.481 SQL [6983]: pgsql_db_connect() -- 08:43:13.470 DEBUG [6928]: Database connection successful -- 08:43:13.470 INFO [6928]: _SERVER found -- 08:43:13.470 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 08:43:13.470 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:13.470 INFO [6928]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 08:43:13.470 INFO [6928]: QUERY_STRING = /app-assets/js/core/app.js -- 08:43:13.470 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:13.484 INFO [6928]: COREGRADE is stopping... -- 08:43:13.484 DEBUG [6928]: Closing database connection -- 08:43:13.484 SQL [6928]: pgsql_close() -- 08:43:13.483 DEBUG [6927]: Database connection successful -- 08:43:13.483 INFO [6927]: _SERVER found -- 08:43:13.483 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 08:43:13.483 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:13.483 INFO [6927]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 08:43:13.483 INFO [6927]: QUERY_STRING = /app-assets/images/pages/eCommerce/4.png -- 08:43:13.483 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:13.496 INFO [6927]: COREGRADE is stopping... -- 08:43:13.496 DEBUG [6927]: Closing database connection -- 08:43:13.496 SQL [6927]: pgsql_close() -- 08:43:13.485 DEBUG [6983]: Database connection successful -- 08:43:13.485 INFO [6983]: _SERVER found -- 08:43:13.485 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 08:43:13.485 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:13.485 INFO [6983]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 08:43:13.485 INFO [6983]: QUERY_STRING = /app-assets/js/scripts/components.js -- 08:43:13.485 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:13.497 INFO [6983]: COREGRADE is stopping... -- 08:43:13.497 DEBUG [6983]: Closing database connection -- 08:43:13.497 SQL [6983]: pgsql_close() -- 08:43:13.502 INFO [6927]: COREGRADE is starting... -- 08:43:13.502 INFO [6927]: Version from config: 1.0 -- 08:43:13.502 DEBUG [6927]: Connecting to database... -- 08:43:13.502 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:13.502 SQL [6927]: pgsql_db_connect() -- 08:43:13.503 INFO [6983]: COREGRADE is starting... -- 08:43:13.503 INFO [6983]: Version from config: 1.0 -- 08:43:13.503 DEBUG [6983]: Connecting to database... -- 08:43:13.503 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:13.503 SQL [6983]: pgsql_db_connect() -- 08:43:13.504 INFO [6928]: COREGRADE is starting... -- 08:43:13.504 INFO [6928]: Version from config: 1.0 -- 08:43:13.504 DEBUG [6928]: Connecting to database... -- 08:43:13.504 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:13.504 SQL [6928]: pgsql_db_connect() -- 08:43:13.513 INFO [6925]: COREGRADE is starting... -- 08:43:13.513 INFO [6925]: Version from config: 1.0 -- 08:43:13.513 DEBUG [6925]: Connecting to database... -- 08:43:13.513 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:13.513 SQL [6925]: pgsql_db_connect() -- 08:43:13.507 DEBUG [6983]: Database connection successful -- 08:43:13.507 INFO [6983]: _SERVER found -- 08:43:13.507 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 08:43:13.507 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:13.507 INFO [6983]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 08:43:13.507 INFO [6983]: QUERY_STRING = /app-assets/images/pages/eCommerce/7.png -- 08:43:13.507 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:13.519 INFO [6983]: COREGRADE is stopping... -- 08:43:13.519 DEBUG [6983]: Closing database connection -- 08:43:13.519 SQL [6983]: pgsql_close() -- 08:43:13.507 DEBUG [6927]: Database connection successful -- 08:43:13.507 INFO [6927]: _SERVER found -- 08:43:13.507 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 08:43:13.507 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:13.507 INFO [6927]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 08:43:13.507 INFO [6927]: QUERY_STRING = /app-assets/images/pages/eCommerce/dell-inspirion.jpg -- 08:43:13.507 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:13.520 INFO [6927]: COREGRADE is stopping... -- 08:43:13.520 DEBUG [6927]: Closing database connection -- 08:43:13.520 SQL [6927]: pgsql_close() -- 08:43:13.509 DEBUG [6928]: Database connection successful -- 08:43:13.509 INFO [6928]: _SERVER found -- 08:43:13.509 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 08:43:13.509 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:13.509 INFO [6928]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 08:43:13.509 INFO [6928]: QUERY_STRING = /app-assets/images/pages/eCommerce/10.png -- 08:43:13.509 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:13.522 INFO [6928]: COREGRADE is stopping... -- 08:43:13.522 DEBUG [6928]: Closing database connection -- 08:43:13.522 SQL [6928]: pgsql_close() -- 08:43:13.527 INFO [6928]: COREGRADE is starting... -- 08:43:13.528 INFO [6928]: Version from config: 1.0 -- 08:43:13.528 DEBUG [6928]: Connecting to database... -- 08:43:13.528 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:13.528 SQL [6928]: pgsql_db_connect() -- 08:43:13.530 INFO [6983]: COREGRADE is starting... -- 08:43:13.518 DEBUG [6925]: Database connection successful -- 08:43:13.518 INFO [6925]: _SERVER found -- 08:43:13.518 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 08:43:13.518 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:13.518 INFO [6925]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 08:43:13.518 INFO [6925]: QUERY_STRING = /app-assets/images/pages/eCommerce/sony-75class-tv.jpg -- 08:43:13.518 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:13.530 INFO [6925]: COREGRADE is stopping... -- 08:43:13.530 DEBUG [6925]: Closing database connection -- 08:43:13.530 SQL [6925]: pgsql_close() -- 08:43:13.530 INFO [6983]: Version from config: 1.0 -- 08:43:13.530 DEBUG [6983]: Connecting to database... -- 08:43:13.530 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:13.530 SQL [6983]: pgsql_db_connect() -- 08:43:13.532 DEBUG [6928]: Database connection successful -- 08:43:13.532 INFO [6928]: _SERVER found -- 08:43:13.532 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 08:43:13.532 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:13.532 INFO [6928]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 08:43:13.532 INFO [6928]: QUERY_STRING = /app-assets/images/portrait/small/avatar-s-11.jpg -- 08:43:13.532 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:13.545 INFO [6928]: COREGRADE is stopping... -- 08:43:13.545 DEBUG [6928]: Closing database connection -- 08:43:13.545 SQL [6928]: pgsql_close() -- 08:43:13.535 DEBUG [6983]: Database connection successful -- 08:43:13.535 INFO [6983]: _SERVER found -- 08:43:13.535 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 08:43:13.535 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:13.535 INFO [6983]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 08:43:13.535 INFO [6983]: QUERY_STRING = /app-assets/images/pages/eCommerce/canon-camera.jpg -- 08:43:13.535 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:13.547 INFO [6983]: COREGRADE is stopping... -- 08:43:13.547 DEBUG [6983]: Closing database connection -- 08:43:13.547 SQL [6983]: pgsql_close() -- 08:43:13.552 INFO [6928]: COREGRADE is starting... -- 08:43:13.553 INFO [6928]: Version from config: 1.0 -- 08:43:13.553 DEBUG [6928]: Connecting to database... -- 08:43:13.553 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:13.553 SQL [6928]: pgsql_db_connect() -- 08:43:13.553 INFO [6983]: COREGRADE is starting... -- 08:43:13.553 INFO [6983]: Version from config: 1.0 -- 08:43:13.553 DEBUG [6983]: Connecting to database... -- 08:43:13.553 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:13.554 SQL [6983]: pgsql_db_connect() -- 08:43:13.554 INFO [6925]: COREGRADE is starting... -- 08:43:13.555 INFO [6925]: Version from config: 1.0 -- 08:43:13.555 DEBUG [6925]: Connecting to database... -- 08:43:13.555 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:13.555 SQL [6925]: pgsql_db_connect() -- 08:43:13.561 INFO [6927]: COREGRADE is starting... -- 08:43:13.561 INFO [6927]: Version from config: 1.0 -- 08:43:13.561 DEBUG [6927]: Connecting to database... -- 08:43:13.561 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:13.561 SQL [6927]: pgsql_db_connect() -- 08:43:13.558 DEBUG [6983]: Database connection successful -- 08:43:13.558 INFO [6983]: _SERVER found -- 08:43:13.558 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 08:43:13.558 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:13.558 INFO [6983]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 08:43:13.558 INFO [6983]: QUERY_STRING = /app-assets/images/icons/xls.png -- 08:43:13.558 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:13.570 INFO [6983]: COREGRADE is stopping... -- 08:43:13.570 DEBUG [6983]: Closing database connection -- 08:43:13.570 SQL [6983]: pgsql_close() -- 08:43:13.557 DEBUG [6928]: Database connection successful -- 08:43:13.557 INFO [6928]: _SERVER found -- 08:43:13.557 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 08:43:13.557 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:13.557 INFO [6928]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 08:43:13.557 INFO [6928]: QUERY_STRING = /app-assets/images/icons/pdf.png -- 08:43:13.557 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:13.570 INFO [6928]: COREGRADE is stopping... -- 08:43:13.570 DEBUG [6928]: Closing database connection -- 08:43:13.570 SQL [6928]: pgsql_close() -- 08:43:13.559 DEBUG [6925]: Database connection successful -- 08:43:13.559 INFO [6925]: _SERVER found -- 08:43:13.559 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 08:43:13.559 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:13.559 INFO [6925]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 08:43:13.559 INFO [6925]: QUERY_STRING = /app-assets/images/icons/jpg.png -- 08:43:13.559 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:13.571 INFO [6925]: COREGRADE is stopping... -- 08:43:13.571 DEBUG [6925]: Closing database connection -- 08:43:13.571 SQL [6925]: pgsql_close() -- 08:43:13.578 INFO [6928]: COREGRADE is starting... -- 08:43:13.579 INFO [6928]: Version from config: 1.0 -- 08:43:13.579 DEBUG [6928]: Connecting to database... -- 08:43:13.579 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:13.579 SQL [6928]: pgsql_db_connect() -- 08:43:13.566 DEBUG [6927]: Database connection successful -- 08:43:13.566 INFO [6927]: _SERVER found -- 08:43:13.566 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 08:43:13.566 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:13.566 INFO [6927]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 08:43:13.566 INFO [6927]: QUERY_STRING = /app-assets/images/icons/doc.png -- 08:43:13.566 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:13.579 INFO [6927]: COREGRADE is stopping... -- 08:43:13.579 DEBUG [6927]: Closing database connection -- 08:43:13.579 SQL [6927]: pgsql_close() -- 08:43:13.580 INFO [6983]: COREGRADE is starting... -- 08:43:13.580 INFO [6983]: Version from config: 1.0 -- 08:43:13.580 DEBUG [6983]: Connecting to database... -- 08:43:13.580 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:13.580 SQL [6983]: pgsql_db_connect() -- 08:43:13.583 DEBUG [6928]: Database connection successful -- 08:43:13.584 INFO [6928]: _SERVER found -- 08:43:13.584 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 08:43:13.584 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:13.584 INFO [6928]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 08:43:13.584 INFO [6928]: QUERY_STRING = /app-assets/images/portrait/small/avatar-s-8.jpg -- 08:43:13.584 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:13.596 INFO [6928]: COREGRADE is stopping... -- 08:43:13.596 DEBUG [6928]: Closing database connection -- 08:43:13.596 SQL [6928]: pgsql_close() -- 08:43:13.585 DEBUG [6983]: Database connection successful -- 08:43:13.585 INFO [6983]: _SERVER found -- 08:43:13.585 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 08:43:13.585 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:13.585 INFO [6983]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 08:43:13.585 INFO [6983]: QUERY_STRING = /app-assets/images/portrait/small/avatar-s-1.jpg -- 08:43:13.585 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:13.596 INFO [6983]: COREGRADE is stopping... -- 08:43:13.597 DEBUG [6983]: Closing database connection -- 08:43:13.597 SQL [6983]: pgsql_close() -- 08:43:13.609 INFO [6928]: COREGRADE is starting... -- 08:43:13.610 INFO [6928]: Version from config: 1.0 -- 08:43:13.610 DEBUG [6928]: Connecting to database... -- 08:43:13.610 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:13.610 SQL [6928]: pgsql_db_connect() -- 08:43:13.611 INFO [6983]: COREGRADE is starting... -- 08:43:13.611 INFO [6983]: Version from config: 1.0 -- 08:43:13.611 DEBUG [6983]: Connecting to database... -- 08:43:13.611 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:13.611 SQL [6983]: pgsql_db_connect() -- 08:43:13.614 DEBUG [6928]: Database connection successful -- 08:43:13.614 INFO [6928]: _SERVER found -- 08:43:13.614 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 08:43:13.614 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:13.614 INFO [6928]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 08:43:13.614 INFO [6928]: QUERY_STRING = /app-assets/images/portrait/small/avatar-s-6.jpg -- 08:43:13.614 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:13.627 INFO [6928]: COREGRADE is stopping... -- 08:43:13.627 DEBUG [6928]: Closing database connection -- 08:43:13.627 SQL [6928]: pgsql_close() -- 08:43:13.615 DEBUG [6983]: Database connection successful -- 08:43:13.615 INFO [6983]: _SERVER found -- 08:43:13.615 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 08:43:13.615 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:13.615 INFO [6983]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 08:43:13.615 INFO [6983]: QUERY_STRING = /app-assets/images/portrait/small/avatar-s-14.jpg -- 08:43:13.615 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:13.627 INFO [6983]: COREGRADE is stopping... -- 08:43:13.627 DEBUG [6983]: Closing database connection -- 08:43:13.627 SQL [6983]: pgsql_close() -- 08:43:13.647 INFO [6928]: COREGRADE is starting... -- 08:43:13.647 INFO [6928]: Version from config: 1.0 -- 08:43:13.647 DEBUG [6928]: Connecting to database... -- 08:43:13.647 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:13.647 SQL [6928]: pgsql_db_connect() -- 08:43:13.652 DEBUG [6928]: Database connection successful -- 08:43:13.652 INFO [6928]: _SERVER found -- 08:43:13.652 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 08:43:13.652 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:13.652 INFO [6928]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 08:43:13.652 INFO [6928]: QUERY_STRING = /app-assets/js/core/app-menu.js -- 08:43:13.652 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:13.665 INFO [6928]: COREGRADE is stopping... -- 08:43:13.665 DEBUG [6928]: Closing database connection -- 08:43:13.665 SQL [6928]: pgsql_close() -- 08:43:13.714 INFO [6928]: COREGRADE is starting... -- 08:43:13.714 INFO [6928]: Version from config: 1.0 -- 08:43:13.714 DEBUG [6928]: Connecting to database... -- 08:43:13.714 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:13.714 SQL [6928]: pgsql_db_connect() -- 08:43:13.719 DEBUG [6928]: Database connection successful -- 08:43:13.719 INFO [6928]: _SERVER found -- 08:43:13.719 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 08:43:13.719 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:13.719 INFO [6928]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 08:43:13.719 INFO [6928]: QUERY_STRING = /app-assets/js/core/app.js -- 08:43:13.719 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:13.731 INFO [6928]: COREGRADE is stopping... -- 08:43:13.731 DEBUG [6928]: Closing database connection -- 08:43:13.731 SQL [6928]: pgsql_close() -- 08:43:13.761 INFO [6928]: COREGRADE is starting... -- 08:43:13.761 INFO [6928]: Version from config: 1.0 -- 08:43:13.761 DEBUG [6928]: Connecting to database... -- 08:43:13.761 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:13.761 SQL [6928]: pgsql_db_connect() -- 08:43:13.765 DEBUG [6928]: Database connection successful -- 08:43:13.765 INFO [6928]: _SERVER found -- 08:43:13.765 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 08:43:13.765 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:13.765 INFO [6928]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 08:43:13.765 INFO [6928]: QUERY_STRING = /app-assets/js/scripts/components.js -- 08:43:13.765 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:13.778 INFO [6928]: COREGRADE is stopping... -- 08:43:13.778 DEBUG [6928]: Closing database connection -- 08:43:13.778 SQL [6928]: pgsql_close() -- 08:43:13.813 INFO [6928]: COREGRADE is starting... -- 08:43:13.813 INFO [6928]: Version from config: 1.0 -- 08:43:13.813 DEBUG [6928]: Connecting to database... -- 08:43:13.813 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:13.813 SQL [6928]: pgsql_db_connect() -- 08:43:13.817 DEBUG [6928]: Database connection successful -- 08:43:13.817 INFO [6928]: _SERVER found -- 08:43:13.817 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 08:43:13.817 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:13.817 INFO [6928]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 08:43:13.817 INFO [6928]: QUERY_STRING = /app-assets/images/ico/favicon.ico -- 08:43:13.817 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:13.830 INFO [6928]: COREGRADE is stopping... -- 08:43:13.830 DEBUG [6928]: Closing database connection -- 08:43:13.830 SQL [6928]: pgsql_close() -- 09:19:41.638 INFO [7004]: COREGRADE is starting... -- 09:19:41.638 INFO [7004]: Version from config: 1.0 -- 09:19:41.638 DEBUG [7004]: Connecting to database... -- 09:19:41.638 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:19:41.639 SQL [7004]: pgsql_db_connect() -- 09:19:41.643 DEBUG [7004]: Database connection successful -- 09:19:41.643 INFO [7004]: _SERVER found -- 09:19:41.643 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 09:19:41.643 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 09:19:41.643 INFO [7004]: HTTP_COOKIE = ci_session=7p26ip2s00ufmv421tsf6u7m00bm3e8e; _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507 -- 09:19:41.643 INFO [7004]: QUERY_STRING = /home/howitworks -- 09:19:41.643 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:19:41.682 INFO [7004]: COREGRADE is stopping... -- 09:19:41.682 DEBUG [7004]: Closing database connection -- 09:19:41.682 SQL [7004]: pgsql_close() -- 09:19:41.841 INFO [7004]: COREGRADE is starting... -- 09:19:41.841 INFO [7004]: Version from config: 1.0 -- 09:19:41.841 DEBUG [7004]: Connecting to database... -- 09:19:41.841 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:19:41.841 SQL [7004]: pgsql_db_connect() -- 09:19:41.846 DEBUG [7004]: Database connection successful -- 09:19:41.846 INFO [7004]: _SERVER found -- 09:19:41.846 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 09:19:41.846 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 09:19:41.846 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=27aofgqvr25q5v9t0a0u0p6tugjhqae1 -- 09:19:41.846 INFO [7004]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 09:19:41.846 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:19:41.857 INFO [7004]: COREGRADE is stopping... -- 09:19:41.857 DEBUG [7004]: Closing database connection -- 09:19:41.857 SQL [7004]: pgsql_close() -- 09:20:17.279 INFO [7007]: COREGRADE is starting... -- 09:20:17.280 INFO [7007]: Version from config: 1.0 -- 09:20:17.280 DEBUG [7007]: Connecting to database... -- 09:20:17.280 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:20:17.280 SQL [7007]: pgsql_db_connect() -- 09:20:17.284 DEBUG [7007]: Database connection successful -- 09:20:17.284 INFO [7007]: _SERVER found -- 09:20:17.284 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 09:20:17.284 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 09:20:17.284 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=27aofgqvr25q5v9t0a0u0p6tugjhqae1 -- 09:20:17.284 INFO [7007]: QUERY_STRING = /home/howitworks -- 09:20:17.284 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:20:17.317 INFO [7007]: COREGRADE is stopping... -- 09:20:17.317 DEBUG [7007]: Closing database connection -- 09:20:17.317 SQL [7007]: pgsql_close() -- 09:20:17.445 INFO [7007]: COREGRADE is starting... -- 09:20:17.445 INFO [7007]: Version from config: 1.0 -- 09:20:17.445 DEBUG [7007]: Connecting to database... -- 09:20:17.445 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:20:17.445 SQL [7007]: pgsql_db_connect() -- 09:20:17.449 DEBUG [7007]: Database connection successful -- 09:20:17.449 INFO [7007]: _SERVER found -- 09:20:17.449 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 09:20:17.449 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 09:20:17.449 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=27aofgqvr25q5v9t0a0u0p6tugjhqae1 -- 09:20:17.449 INFO [7007]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 09:20:17.449 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:20:17.460 INFO [7007]: COREGRADE is stopping... -- 09:20:17.460 DEBUG [7007]: Closing database connection -- 09:20:17.460 SQL [7007]: pgsql_close() -- 09:20:54.214 INFO [7006]: COREGRADE is starting... -- 09:20:54.215 INFO [7006]: Version from config: 1.0 -- 09:20:54.215 DEBUG [7006]: Connecting to database... -- 09:20:54.215 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:20:54.215 SQL [7006]: pgsql_db_connect() -- 09:20:54.219 DEBUG [7006]: Database connection successful -- 09:20:54.219 INFO [7006]: _SERVER found -- 09:20:54.219 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 09:20:54.219 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 09:20:54.219 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=27aofgqvr25q5v9t0a0u0p6tugjhqae1 -- 09:20:54.219 INFO [7006]: QUERY_STRING = /home/howitworks -- 09:20:54.219 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:20:54.255 INFO [7006]: COREGRADE is stopping... -- 09:20:54.255 DEBUG [7006]: Closing database connection -- 09:20:54.255 SQL [7006]: pgsql_close() -- 09:21:17.488 INFO [7002]: COREGRADE is starting... -- 09:21:17.488 INFO [7002]: Version from config: 1.0 -- 09:21:17.489 DEBUG [7002]: Connecting to database... -- 09:21:17.489 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:21:17.489 SQL [7002]: pgsql_db_connect() -- 09:21:17.493 DEBUG [7002]: Database connection successful -- 09:21:17.493 INFO [7002]: _SERVER found -- 09:21:17.493 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 09:21:17.493 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 09:21:17.493 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=27aofgqvr25q5v9t0a0u0p6tugjhqae1 -- 09:21:17.493 INFO [7002]: QUERY_STRING = /home/howitworks -- 09:21:17.493 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:21:17.528 INFO [7002]: COREGRADE is stopping... -- 09:21:17.528 DEBUG [7002]: Closing database connection -- 09:21:17.528 SQL [7002]: pgsql_close() -- 09:21:18.748 INFO [7002]: COREGRADE is starting... -- 09:21:18.748 INFO [7002]: Version from config: 1.0 -- 09:21:18.748 DEBUG [7002]: Connecting to database... -- 09:21:18.748 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:21:18.748 SQL [7002]: pgsql_db_connect() -- 09:21:18.752 DEBUG [7002]: Database connection successful -- 09:21:18.752 INFO [7002]: _SERVER found -- 09:21:18.752 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 09:21:18.752 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 09:21:18.752 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=27aofgqvr25q5v9t0a0u0p6tugjhqae1 -- 09:21:18.752 INFO [7002]: QUERY_STRING = /home/howitworks -- 09:21:18.752 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:21:18.787 INFO [7002]: COREGRADE is stopping... -- 09:21:18.787 DEBUG [7002]: Closing database connection -- 09:21:18.787 SQL [7002]: pgsql_close() -- 09:22:34.477 INFO [6929]: COREGRADE is starting... -- 09:22:34.477 INFO [6929]: Version from config: 1.0 -- 09:22:34.478 DEBUG [6929]: Connecting to database... -- 09:22:34.478 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:22:34.478 SQL [6929]: pgsql_db_connect() -- 09:22:34.482 DEBUG [6929]: Database connection successful -- 09:22:34.482 INFO [6929]: _SERVER found -- 09:22:34.482 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 09:22:34.482 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 09:22:34.482 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=27aofgqvr25q5v9t0a0u0p6tugjhqae1 -- 09:22:34.482 INFO [6929]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:22:34.482 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:22:34.495 INFO [6929]: COREGRADE is stopping... -- 09:22:34.495 DEBUG [6929]: Closing database connection -- 09:22:34.495 SQL [6929]: pgsql_close() -- 09:22:36.525 INFO [6929]: COREGRADE is starting... -- 09:22:36.525 INFO [6929]: Version from config: 1.0 -- 09:22:36.525 DEBUG [6929]: Connecting to database... -- 09:22:36.526 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:22:36.526 SQL [6929]: pgsql_db_connect() -- 09:22:36.530 DEBUG [6929]: Database connection successful -- 09:22:36.530 INFO [6929]: _SERVER found -- 09:22:36.530 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 09:22:36.530 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 09:22:36.530 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=27aofgqvr25q5v9t0a0u0p6tugjhqae1 -- 09:22:36.530 INFO [6929]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 09:22:36.530 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:22:36.542 INFO [6929]: COREGRADE is stopping... -- 09:22:36.542 DEBUG [6929]: Closing database connection -- 09:22:36.542 SQL [6929]: pgsql_close() -- 09:23:53.306 INFO [6925]: COREGRADE is starting... -- 09:23:53.306 INFO [6925]: Version from config: 1.0 -- 09:23:53.306 DEBUG [6925]: Connecting to database... -- 09:23:53.306 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:23:53.306 SQL [6925]: pgsql_db_connect() -- 09:23:53.310 DEBUG [6925]: Database connection successful -- 09:23:53.310 INFO [6925]: _SERVER found -- 09:23:53.310 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 09:23:53.310 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 09:23:53.310 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=27aofgqvr25q5v9t0a0u0p6tugjhqae1 -- 09:23:53.310 INFO [6925]: QUERY_STRING = /home/howitworks -- 09:23:53.310 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:23:53.345 INFO [6925]: COREGRADE is stopping... -- 09:23:53.345 DEBUG [6925]: Closing database connection -- 09:23:53.345 SQL [6925]: pgsql_close() -- 09:23:53.642 INFO [6925]: COREGRADE is starting... -- 09:23:53.642 INFO [6925]: Version from config: 1.0 -- 09:23:53.642 DEBUG [6925]: Connecting to database... -- 09:23:53.642 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:23:53.642 SQL [6925]: pgsql_db_connect() -- 09:23:53.646 DEBUG [6925]: Database connection successful -- 09:23:53.646 INFO [6925]: _SERVER found -- 09:23:53.646 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 09:23:53.646 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 09:23:53.646 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=27aofgqvr25q5v9t0a0u0p6tugjhqae1 -- 09:23:53.646 INFO [6925]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:23:53.646 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:23:53.658 INFO [6925]: COREGRADE is stopping... -- 09:23:53.658 DEBUG [6925]: Closing database connection -- 09:23:53.658 SQL [6925]: pgsql_close() -- 09:23:54.617 INFO [6925]: COREGRADE is starting... -- 09:23:54.617 INFO [6925]: Version from config: 1.0 -- 09:23:54.617 DEBUG [6925]: Connecting to database... -- 09:23:54.617 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:23:54.617 SQL [6925]: pgsql_db_connect() -- 09:23:54.622 DEBUG [6925]: Database connection successful -- 09:23:54.622 INFO [6925]: _SERVER found -- 09:23:54.622 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 09:23:54.622 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 09:23:54.622 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=27aofgqvr25q5v9t0a0u0p6tugjhqae1 -- 09:23:54.622 INFO [6925]: QUERY_STRING = /home/howitworks -- 09:23:54.622 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:23:54.655 INFO [6925]: COREGRADE is stopping... -- 09:23:54.655 DEBUG [6925]: Closing database connection -- 09:23:54.655 SQL [6925]: pgsql_close() -- 09:23:54.879 INFO [6925]: COREGRADE is starting... -- 09:23:54.880 INFO [6925]: Version from config: 1.0 -- 09:23:54.880 DEBUG [6925]: Connecting to database... -- 09:23:54.880 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:23:54.880 SQL [6925]: pgsql_db_connect() -- 09:23:54.884 DEBUG [6925]: Database connection successful -- 09:23:54.884 INFO [6925]: _SERVER found -- 09:23:54.884 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 09:23:54.884 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 09:23:54.884 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=27aofgqvr25q5v9t0a0u0p6tugjhqae1 -- 09:23:54.884 INFO [6925]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:23:54.884 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:23:54.895 INFO [6925]: COREGRADE is stopping... -- 09:23:54.895 DEBUG [6925]: Closing database connection -- 09:23:54.895 SQL [6925]: pgsql_close() -- 09:24:24.806 INFO [6983]: COREGRADE is starting... -- 09:24:24.806 INFO [6983]: Version from config: 1.0 -- 09:24:24.806 DEBUG [6983]: Connecting to database... -- 09:24:24.806 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:24:24.806 SQL [6983]: pgsql_db_connect() -- 09:24:24.812 DEBUG [6983]: Database connection successful -- 09:24:24.812 INFO [6983]: _SERVER found -- 09:24:24.812 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 09:24:24.812 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 09:24:24.812 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=27aofgqvr25q5v9t0a0u0p6tugjhqae1 -- 09:24:24.812 INFO [6983]: QUERY_STRING = /home/howitworks -- 09:24:24.812 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:24:24.847 INFO [6983]: COREGRADE is stopping... -- 09:24:24.847 DEBUG [6983]: Closing database connection -- 09:24:24.847 SQL [6983]: pgsql_close() -- 09:24:25.114 INFO [6983]: COREGRADE is starting... -- 09:24:25.115 INFO [6983]: Version from config: 1.0 -- 09:24:25.115 DEBUG [6983]: Connecting to database... -- 09:24:25.115 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:24:25.115 SQL [6983]: pgsql_db_connect() -- 09:24:25.119 DEBUG [6983]: Database connection successful -- 09:24:25.119 INFO [6983]: _SERVER found -- 09:24:25.119 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 09:24:25.119 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 09:24:25.119 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=27aofgqvr25q5v9t0a0u0p6tugjhqae1 -- 09:24:25.119 INFO [6983]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:24:25.119 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:24:25.130 INFO [6983]: COREGRADE is stopping... -- 09:24:25.130 DEBUG [6983]: Closing database connection -- 09:24:25.130 SQL [6983]: pgsql_close() -- 09:24:26.011 INFO [6983]: COREGRADE is starting... -- 09:24:26.011 INFO [6983]: Version from config: 1.0 -- 09:24:26.011 DEBUG [6983]: Connecting to database... -- 09:24:26.011 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:24:26.011 SQL [6983]: pgsql_db_connect() -- 09:24:26.015 DEBUG [6983]: Database connection successful -- 09:24:26.015 INFO [6983]: _SERVER found -- 09:24:26.015 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 09:24:26.015 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 09:24:26.015 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=27aofgqvr25q5v9t0a0u0p6tugjhqae1 -- 09:24:26.015 INFO [6983]: QUERY_STRING = /home/howitworks -- 09:24:26.015 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:24:26.049 INFO [6983]: COREGRADE is stopping... -- 09:24:26.049 DEBUG [6983]: Closing database connection -- 09:24:26.049 SQL [6983]: pgsql_close() -- 09:24:26.287 INFO [6983]: COREGRADE is starting... -- 09:24:26.288 INFO [6983]: Version from config: 1.0 -- 09:24:26.288 DEBUG [6983]: Connecting to database... -- 09:24:26.288 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:24:26.288 SQL [6983]: pgsql_db_connect() -- 09:24:26.292 DEBUG [6983]: Database connection successful -- 09:24:26.292 INFO [6983]: _SERVER found -- 09:24:26.292 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 09:24:26.292 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 09:24:26.292 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=27aofgqvr25q5v9t0a0u0p6tugjhqae1 -- 09:24:26.292 INFO [6983]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:24:26.292 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:24:26.303 INFO [6983]: COREGRADE is stopping... -- 09:24:26.304 DEBUG [6983]: Closing database connection -- 09:24:26.304 SQL [6983]: pgsql_close() -- 09:24:27.342 INFO [6983]: COREGRADE is starting... -- 09:24:27.342 INFO [6983]: Version from config: 1.0 -- 09:24:27.342 DEBUG [6983]: Connecting to database... -- 09:24:27.342 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:24:27.342 SQL [6983]: pgsql_db_connect() -- 09:24:27.346 DEBUG [6983]: Database connection successful -- 09:24:27.346 INFO [6983]: _SERVER found -- 09:24:27.346 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 09:24:27.346 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 09:24:27.346 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=27aofgqvr25q5v9t0a0u0p6tugjhqae1 -- 09:24:27.346 INFO [6983]: QUERY_STRING = /home/howitworks -- 09:24:27.346 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:24:27.379 INFO [6983]: COREGRADE is stopping... -- 09:24:27.379 DEBUG [6983]: Closing database connection -- 09:24:27.379 SQL [6983]: pgsql_close() -- 09:24:27.608 INFO [6983]: COREGRADE is starting... -- 09:24:27.608 INFO [6983]: Version from config: 1.0 -- 09:24:27.608 DEBUG [6983]: Connecting to database... -- 09:24:27.608 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:24:27.608 SQL [6983]: pgsql_db_connect() -- 09:24:27.612 DEBUG [6983]: Database connection successful -- 09:24:27.612 INFO [6983]: _SERVER found -- 09:24:27.612 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 09:24:27.612 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 09:24:27.612 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=27aofgqvr25q5v9t0a0u0p6tugjhqae1 -- 09:24:27.612 INFO [6983]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:24:27.612 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:24:27.624 INFO [6983]: COREGRADE is stopping... -- 09:24:27.624 DEBUG [6983]: Closing database connection -- 09:24:27.624 SQL [6983]: pgsql_close() -- 09:25:27.821 INFO [7005]: COREGRADE is starting... -- 09:25:27.821 INFO [7005]: Version from config: 1.0 -- 09:25:27.821 DEBUG [7005]: Connecting to database... -- 09:25:27.821 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:25:27.821 SQL [7005]: pgsql_db_connect() -- 09:25:27.825 DEBUG [7005]: Database connection successful -- 09:25:27.825 INFO [7005]: _SERVER found -- 09:25:27.825 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 09:25:27.825 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 09:25:27.825 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=27aofgqvr25q5v9t0a0u0p6tugjhqae1 -- 09:25:27.825 INFO [7005]: QUERY_STRING = /home/howitworks -- 09:25:27.825 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:25:27.862 INFO [7005]: COREGRADE is stopping... -- 09:25:27.862 DEBUG [7005]: Closing database connection -- 09:25:27.862 SQL [7005]: pgsql_close() -- 09:25:28.133 INFO [7005]: COREGRADE is starting... -- 09:25:28.133 INFO [7005]: Version from config: 1.0 -- 09:25:28.133 DEBUG [7005]: Connecting to database... -- 09:25:28.133 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:25:28.133 SQL [7005]: pgsql_db_connect() -- 09:25:28.137 DEBUG [7005]: Database connection successful -- 09:25:28.137 INFO [7005]: _SERVER found -- 09:25:28.137 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 09:25:28.137 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 09:25:28.137 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=db84jkf2apu2f37p25d9hvfi6fn2ac0e -- 09:25:28.137 INFO [7005]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:25:28.137 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:25:28.149 INFO [7005]: COREGRADE is stopping... -- 09:25:28.149 DEBUG [7005]: Closing database connection -- 09:25:28.149 SQL [7005]: pgsql_close() -- 09:34:14.562 INFO [7007]: COREGRADE is starting... -- 09:34:14.562 INFO [7007]: Version from config: 1.0 -- 09:34:14.562 DEBUG [7007]: Connecting to database... -- 09:34:14.562 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:34:14.562 SQL [7007]: pgsql_db_connect() -- 09:34:14.567 DEBUG [7007]: Database connection successful -- 09:34:14.567 INFO [7007]: _SERVER found -- 09:34:14.567 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 09:34:14.567 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 09:34:14.567 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=db84jkf2apu2f37p25d9hvfi6fn2ac0e -- 09:34:14.567 INFO [7007]: QUERY_STRING = /home/howitworks -- 09:34:14.567 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:34:14.601 INFO [7007]: COREGRADE is stopping... -- 09:34:14.601 DEBUG [7007]: Closing database connection -- 09:34:14.601 SQL [7007]: pgsql_close() -- 09:34:14.870 INFO [7007]: COREGRADE is starting... -- 09:34:14.870 INFO [7007]: Version from config: 1.0 -- 09:34:14.870 DEBUG [7007]: Connecting to database... -- 09:34:14.870 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:34:14.870 SQL [7007]: pgsql_db_connect() -- 09:34:14.874 DEBUG [7007]: Database connection successful -- 09:34:14.874 INFO [7007]: _SERVER found -- 09:34:14.874 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 09:34:14.874 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 09:34:14.874 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=7jc21udgmtuvlb5s7h6187mojbgvbn48 -- 09:34:14.874 INFO [7007]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:34:14.874 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:34:14.886 INFO [7007]: COREGRADE is stopping... -- 09:34:14.886 DEBUG [7007]: Closing database connection -- 09:34:14.886 SQL [7007]: pgsql_close() -- 09:34:40.416 INFO [7002]: COREGRADE is starting... -- 09:34:40.416 INFO [7002]: Version from config: 1.0 -- 09:34:40.416 DEBUG [7002]: Connecting to database... -- 09:34:40.416 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:34:40.416 SQL [7002]: pgsql_db_connect() -- 09:34:40.420 DEBUG [7002]: Database connection successful -- 09:34:40.420 INFO [7002]: _SERVER found -- 09:34:40.420 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 09:34:40.420 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 09:34:40.420 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=7jc21udgmtuvlb5s7h6187mojbgvbn48 -- 09:34:40.420 INFO [7002]: QUERY_STRING = /home/howitworks -- 09:34:40.420 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:34:40.456 INFO [7002]: COREGRADE is stopping... -- 09:34:40.456 DEBUG [7002]: Closing database connection -- 09:34:40.456 SQL [7002]: pgsql_close() -- 09:34:40.686 INFO [7002]: COREGRADE is starting... -- 09:34:40.686 INFO [7002]: Version from config: 1.0 -- 09:34:40.686 DEBUG [7002]: Connecting to database... -- 09:34:40.686 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:34:40.686 SQL [7002]: pgsql_db_connect() -- 09:34:40.690 DEBUG [7002]: Database connection successful -- 09:34:40.690 INFO [7002]: _SERVER found -- 09:34:40.690 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 09:34:40.690 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 09:34:40.690 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=7jc21udgmtuvlb5s7h6187mojbgvbn48 -- 09:34:40.690 INFO [7002]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:34:40.690 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:34:40.703 INFO [7002]: COREGRADE is stopping... -- 09:34:40.703 DEBUG [7002]: Closing database connection -- 09:34:40.703 SQL [7002]: pgsql_close() -- 09:35:58.671 INFO [6927]: COREGRADE is starting... -- 09:35:58.671 INFO [6927]: Version from config: 1.0 -- 09:35:58.671 DEBUG [6927]: Connecting to database... -- 09:35:58.671 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:35:58.671 SQL [6927]: pgsql_db_connect() -- 09:35:58.675 DEBUG [6927]: Database connection successful -- 09:35:58.675 INFO [6927]: _SERVER found -- 09:35:58.675 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 09:35:58.675 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 09:35:58.675 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=7jc21udgmtuvlb5s7h6187mojbgvbn48 -- 09:35:58.675 INFO [6927]: QUERY_STRING = /home/howitworks -- 09:35:58.675 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:35:58.711 INFO [6927]: COREGRADE is stopping... -- 09:35:58.711 DEBUG [6927]: Closing database connection -- 09:35:58.711 SQL [6927]: pgsql_close() -- 09:35:58.956 INFO [6927]: COREGRADE is starting... -- 09:35:58.956 INFO [6927]: Version from config: 1.0 -- 09:35:58.956 DEBUG [6927]: Connecting to database... -- 09:35:58.956 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:35:58.957 SQL [6927]: pgsql_db_connect() -- 09:35:58.961 DEBUG [6927]: Database connection successful -- 09:35:58.961 INFO [6927]: _SERVER found -- 09:35:58.961 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 09:35:58.961 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 09:35:58.961 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=7jc21udgmtuvlb5s7h6187mojbgvbn48 -- 09:35:58.961 INFO [6927]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:35:58.961 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:35:58.973 INFO [6927]: COREGRADE is stopping... -- 09:35:58.973 DEBUG [6927]: Closing database connection -- 09:35:58.973 SQL [6927]: pgsql_close() -- 09:36:36.044 INFO [6928]: COREGRADE is starting... -- 09:36:36.044 INFO [6928]: Version from config: 1.0 -- 09:36:36.044 DEBUG [6928]: Connecting to database... -- 09:36:36.044 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:36:36.044 SQL [6928]: pgsql_db_connect() -- 09:36:36.049 DEBUG [6928]: Database connection successful -- 09:36:36.049 INFO [6928]: _SERVER found -- 09:36:36.049 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 09:36:36.049 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 09:36:36.049 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=7jc21udgmtuvlb5s7h6187mojbgvbn48 -- 09:36:36.049 INFO [6928]: QUERY_STRING = /home/howitworks -- 09:36:36.049 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:36:36.084 INFO [6928]: COREGRADE is stopping... -- 09:36:36.084 DEBUG [6928]: Closing database connection -- 09:36:36.084 SQL [6928]: pgsql_close() -- 09:36:36.353 INFO [6928]: COREGRADE is starting... -- 09:36:36.353 INFO [6928]: Version from config: 1.0 -- 09:36:36.353 DEBUG [6928]: Connecting to database... -- 09:36:36.353 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:36:36.353 SQL [6928]: pgsql_db_connect() -- 09:36:36.358 DEBUG [6928]: Database connection successful -- 09:36:36.358 INFO [6928]: _SERVER found -- 09:36:36.358 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 09:36:36.358 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 09:36:36.358 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=7jc21udgmtuvlb5s7h6187mojbgvbn48 -- 09:36:36.358 INFO [6928]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:36:36.358 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:36:36.370 INFO [6928]: COREGRADE is stopping... -- 09:36:36.370 DEBUG [6928]: Closing database connection -- 09:36:36.370 SQL [6928]: pgsql_close() -- 09:36:37.216 INFO [6928]: COREGRADE is starting... -- 09:36:37.216 INFO [6928]: Version from config: 1.0 -- 09:36:37.216 DEBUG [6928]: Connecting to database... -- 09:36:37.216 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:36:37.216 SQL [6928]: pgsql_db_connect() -- 09:36:37.220 DEBUG [6928]: Database connection successful -- 09:36:37.220 INFO [6928]: _SERVER found -- 09:36:37.220 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 09:36:37.220 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 09:36:37.220 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=7jc21udgmtuvlb5s7h6187mojbgvbn48 -- 09:36:37.220 INFO [6928]: QUERY_STRING = /home/howitworks -- 09:36:37.220 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:36:37.255 INFO [6928]: COREGRADE is stopping... -- 09:36:37.255 DEBUG [6928]: Closing database connection -- 09:36:37.255 SQL [6928]: pgsql_close() -- 09:36:37.470 INFO [6928]: COREGRADE is starting... -- 09:36:37.470 INFO [6928]: Version from config: 1.0 -- 09:36:37.470 DEBUG [6928]: Connecting to database... -- 09:36:37.470 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:36:37.470 SQL [6928]: pgsql_db_connect() -- 09:36:37.474 DEBUG [6928]: Database connection successful -- 09:36:37.474 INFO [6928]: _SERVER found -- 09:36:37.474 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 09:36:37.474 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 09:36:37.474 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=7jc21udgmtuvlb5s7h6187mojbgvbn48 -- 09:36:37.474 INFO [6928]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:36:37.474 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:36:37.487 INFO [6928]: COREGRADE is stopping... -- 09:36:37.487 DEBUG [6928]: Closing database connection -- 09:36:37.487 SQL [6928]: pgsql_close() -- 09:36:38.133 INFO [6928]: COREGRADE is starting... -- 09:36:38.133 INFO [6928]: Version from config: 1.0 -- 09:36:38.133 DEBUG [6928]: Connecting to database... -- 09:36:38.133 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:36:38.133 SQL [6928]: pgsql_db_connect() -- 09:36:38.137 DEBUG [6928]: Database connection successful -- 09:36:38.137 INFO [6928]: _SERVER found -- 09:36:38.137 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 09:36:38.137 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 09:36:38.137 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=7jc21udgmtuvlb5s7h6187mojbgvbn48 -- 09:36:38.137 INFO [6928]: QUERY_STRING = /home/howitworks -- 09:36:38.137 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:36:38.172 INFO [6928]: COREGRADE is stopping... -- 09:36:38.172 DEBUG [6928]: Closing database connection -- 09:36:38.172 SQL [6928]: pgsql_close() -- 09:36:38.398 INFO [6983]: COREGRADE is starting... -- 09:36:38.398 INFO [6983]: Version from config: 1.0 -- 09:36:38.398 DEBUG [6983]: Connecting to database... -- 09:36:38.398 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:36:38.398 SQL [6983]: pgsql_db_connect() -- 09:36:38.402 DEBUG [6983]: Database connection successful -- 09:36:38.402 INFO [6983]: _SERVER found -- 09:36:38.402 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 09:36:38.402 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 09:36:38.402 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=7jc21udgmtuvlb5s7h6187mojbgvbn48 -- 09:36:38.402 INFO [6983]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:36:38.402 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:36:38.415 INFO [6983]: COREGRADE is stopping... -- 09:36:38.415 DEBUG [6983]: Closing database connection -- 09:36:38.415 SQL [6983]: pgsql_close() -- 09:37:12.457 INFO [7004]: COREGRADE is starting... -- 09:37:12.457 INFO [7004]: Version from config: 1.0 -- 09:37:12.457 DEBUG [7004]: Connecting to database... -- 09:37:12.457 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:37:12.457 SQL [7004]: pgsql_db_connect() -- 09:37:12.461 DEBUG [7004]: Database connection successful -- 09:37:12.461 INFO [7004]: _SERVER found -- 09:37:12.461 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 09:37:12.462 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 09:37:12.462 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=7jc21udgmtuvlb5s7h6187mojbgvbn48 -- 09:37:12.462 INFO [7004]: QUERY_STRING = /home/howitworks -- 09:37:12.462 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:37:12.494 INFO [7004]: COREGRADE is stopping... -- 09:37:12.494 DEBUG [7004]: Closing database connection -- 09:37:12.494 SQL [7004]: pgsql_close() -- 09:37:12.755 INFO [7004]: COREGRADE is starting... -- 09:37:12.755 INFO [7004]: Version from config: 1.0 -- 09:37:12.755 DEBUG [7004]: Connecting to database... -- 09:37:12.755 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:37:12.755 SQL [7004]: pgsql_db_connect() -- 09:37:12.759 DEBUG [7004]: Database connection successful -- 09:37:12.759 INFO [7004]: _SERVER found -- 09:37:12.759 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 09:37:12.759 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 09:37:12.759 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=7jc21udgmtuvlb5s7h6187mojbgvbn48 -- 09:37:12.759 INFO [7004]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:37:12.759 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:37:12.770 INFO [7004]: COREGRADE is stopping... -- 09:37:12.771 DEBUG [7004]: Closing database connection -- 09:37:12.771 SQL [7004]: pgsql_close() -- 09:37:13.397 INFO [7004]: COREGRADE is starting... -- 09:37:13.398 INFO [7004]: Version from config: 1.0 -- 09:37:13.398 DEBUG [7004]: Connecting to database... -- 09:37:13.398 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:37:13.398 SQL [7004]: pgsql_db_connect() -- 09:37:13.403 DEBUG [7004]: Database connection successful -- 09:37:13.403 INFO [7004]: _SERVER found -- 09:37:13.403 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 09:37:13.403 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 09:37:13.403 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=7jc21udgmtuvlb5s7h6187mojbgvbn48 -- 09:37:13.403 INFO [7004]: QUERY_STRING = /home/howitworks -- 09:37:13.403 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:37:13.433 INFO [7004]: COREGRADE is stopping... -- 09:37:13.433 DEBUG [7004]: Closing database connection -- 09:37:13.433 SQL [7004]: pgsql_close() -- 09:37:13.629 INFO [7004]: COREGRADE is starting... -- 09:37:13.630 INFO [7004]: Version from config: 1.0 -- 09:37:13.630 DEBUG [7004]: Connecting to database... -- 09:37:13.630 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:37:13.630 SQL [7004]: pgsql_db_connect() -- 09:37:13.634 DEBUG [7004]: Database connection successful -- 09:37:13.634 INFO [7004]: _SERVER found -- 09:37:13.634 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 09:37:13.634 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 09:37:13.634 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=7jc21udgmtuvlb5s7h6187mojbgvbn48 -- 09:37:13.634 INFO [7004]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:37:13.634 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:37:13.645 INFO [7004]: COREGRADE is stopping... -- 09:37:13.645 DEBUG [7004]: Closing database connection -- 09:37:13.645 SQL [7004]: pgsql_close() -- 09:37:32.669 INFO [7006]: COREGRADE is starting... -- 09:37:32.669 INFO [7006]: Version from config: 1.0 -- 09:37:32.669 DEBUG [7006]: Connecting to database... -- 09:37:32.669 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:37:32.669 SQL [7006]: pgsql_db_connect() -- 09:37:32.673 DEBUG [7006]: Database connection successful -- 09:37:32.673 INFO [7006]: _SERVER found -- 09:37:32.673 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 09:37:32.673 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 09:37:32.673 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=7jc21udgmtuvlb5s7h6187mojbgvbn48 -- 09:37:32.673 INFO [7006]: QUERY_STRING = /home/howitworks -- 09:37:32.673 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:37:32.710 INFO [7006]: COREGRADE is stopping... -- 09:37:32.710 DEBUG [7006]: Closing database connection -- 09:37:32.710 SQL [7006]: pgsql_close() -- 09:37:32.937 INFO [7006]: COREGRADE is starting... -- 09:37:32.937 INFO [7006]: Version from config: 1.0 -- 09:37:32.937 DEBUG [7006]: Connecting to database... -- 09:37:32.937 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:37:32.937 SQL [7006]: pgsql_db_connect() -- 09:37:32.941 DEBUG [7006]: Database connection successful -- 09:37:32.941 INFO [7006]: _SERVER found -- 09:37:32.941 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 09:37:32.941 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 09:37:32.941 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=7jc21udgmtuvlb5s7h6187mojbgvbn48 -- 09:37:32.941 INFO [7006]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:37:32.941 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:37:32.954 INFO [7006]: COREGRADE is stopping... -- 09:37:32.954 DEBUG [7006]: Closing database connection -- 09:37:32.954 SQL [7006]: pgsql_close() -- 09:38:28.081 INFO [6929]: COREGRADE is starting... -- 09:38:28.081 INFO [6929]: Version from config: 1.0 -- 09:38:28.081 DEBUG [6929]: Connecting to database... -- 09:38:28.081 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:38:28.081 SQL [6929]: pgsql_db_connect() -- 09:38:28.085 DEBUG [6929]: Database connection successful -- 09:38:28.085 INFO [6929]: _SERVER found -- 09:38:28.085 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 09:38:28.085 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 09:38:28.085 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=7jc21udgmtuvlb5s7h6187mojbgvbn48 -- 09:38:28.085 INFO [6929]: QUERY_STRING = /home/howitworks -- 09:38:28.085 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:38:28.122 INFO [6929]: COREGRADE is stopping... -- 09:38:28.122 DEBUG [6929]: Closing database connection -- 09:38:28.122 SQL [6929]: pgsql_close() -- 09:38:28.348 INFO [6929]: COREGRADE is starting... -- 09:38:28.348 INFO [6929]: Version from config: 1.0 -- 09:38:28.348 DEBUG [6929]: Connecting to database... -- 09:38:28.348 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:38:28.348 SQL [6929]: pgsql_db_connect() -- 09:38:28.352 DEBUG [6929]: Database connection successful -- 09:38:28.352 INFO [6929]: _SERVER found -- 09:38:28.352 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 09:38:28.352 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 09:38:28.352 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=7jc21udgmtuvlb5s7h6187mojbgvbn48 -- 09:38:28.352 INFO [6929]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:38:28.352 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:38:28.365 INFO [6929]: COREGRADE is stopping... -- 09:38:28.365 DEBUG [6929]: Closing database connection -- 09:38:28.365 SQL [6929]: pgsql_close() -- 09:39:09.829 INFO [7002]: COREGRADE is starting... -- 09:39:09.829 INFO [7002]: Version from config: 1.0 -- 09:39:09.829 DEBUG [7002]: Connecting to database... -- 09:39:09.829 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:39:09.829 SQL [7002]: pgsql_db_connect() -- 09:39:09.833 DEBUG [7002]: Database connection successful -- 09:39:09.833 INFO [7002]: _SERVER found -- 09:39:09.833 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 09:39:09.833 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 09:39:09.833 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=7jc21udgmtuvlb5s7h6187mojbgvbn48 -- 09:39:09.833 INFO [7002]: QUERY_STRING = /home/howitworks -- 09:39:09.833 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:39:09.869 INFO [7002]: COREGRADE is stopping... -- 09:39:09.869 DEBUG [7002]: Closing database connection -- 09:39:09.869 SQL [7002]: pgsql_close() -- 09:39:10.135 INFO [7002]: COREGRADE is starting... -- 09:39:10.136 INFO [7002]: Version from config: 1.0 -- 09:39:10.136 DEBUG [7002]: Connecting to database... -- 09:39:10.136 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:39:10.136 SQL [7002]: pgsql_db_connect() -- 09:39:10.140 DEBUG [7002]: Database connection successful -- 09:39:10.140 INFO [7002]: _SERVER found -- 09:39:10.140 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 09:39:10.140 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 09:39:10.140 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=7jc21udgmtuvlb5s7h6187mojbgvbn48 -- 09:39:10.140 INFO [7002]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:39:10.140 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:39:10.152 INFO [7002]: COREGRADE is stopping... -- 09:39:10.152 DEBUG [7002]: Closing database connection -- 09:39:10.152 SQL [7002]: pgsql_close() -- 09:40:37.447 INFO [6927]: COREGRADE is starting... -- 09:40:37.447 INFO [6927]: Version from config: 1.0 -- 09:40:37.447 DEBUG [6927]: Connecting to database... -- 09:40:37.447 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:40:37.447 SQL [6927]: pgsql_db_connect() -- 09:40:37.451 DEBUG [6927]: Database connection successful -- 09:40:37.451 INFO [6927]: _SERVER found -- 09:40:37.451 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 09:40:37.451 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 09:40:37.451 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=7jc21udgmtuvlb5s7h6187mojbgvbn48 -- 09:40:37.451 INFO [6927]: QUERY_STRING = /home/howitworks -- 09:40:37.451 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:40:37.487 INFO [6927]: COREGRADE is stopping... -- 09:40:37.487 DEBUG [6927]: Closing database connection -- 09:40:37.487 SQL [6927]: pgsql_close() -- 09:40:37.742 INFO [6927]: COREGRADE is starting... -- 09:40:37.743 INFO [6927]: Version from config: 1.0 -- 09:40:37.743 DEBUG [6927]: Connecting to database... -- 09:40:37.743 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:40:37.743 SQL [6927]: pgsql_db_connect() -- 09:40:37.747 DEBUG [6927]: Database connection successful -- 09:40:37.747 INFO [6927]: _SERVER found -- 09:40:37.747 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 09:40:37.747 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 09:40:37.747 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=41vjgndmgue8a0kcjd067n6naru9tqa1 -- 09:40:37.747 INFO [6927]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:40:37.747 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:40:37.759 INFO [6927]: COREGRADE is stopping... -- 09:40:37.759 DEBUG [6927]: Closing database connection -- 09:40:37.759 SQL [6927]: pgsql_close() -- 09:40:39.075 INFO [6927]: COREGRADE is starting... -- 09:40:39.076 INFO [6927]: Version from config: 1.0 -- 09:40:39.076 DEBUG [6927]: Connecting to database... -- 09:40:39.076 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:40:39.076 SQL [6927]: pgsql_db_connect() -- 09:40:39.080 DEBUG [6927]: Database connection successful -- 09:40:39.080 INFO [6927]: _SERVER found -- 09:40:39.080 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 09:40:39.080 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 09:40:39.080 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=41vjgndmgue8a0kcjd067n6naru9tqa1 -- 09:40:39.080 INFO [6927]: QUERY_STRING = /home/howitworks -- 09:40:39.080 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:40:39.115 INFO [6927]: COREGRADE is stopping... -- 09:40:39.115 DEBUG [6927]: Closing database connection -- 09:40:39.115 SQL [6927]: pgsql_close() -- 09:40:39.354 INFO [6927]: COREGRADE is starting... -- 09:40:39.354 INFO [6927]: Version from config: 1.0 -- 09:40:39.354 DEBUG [6927]: Connecting to database... -- 09:40:39.354 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:40:39.354 SQL [6927]: pgsql_db_connect() -- 09:40:39.358 DEBUG [6927]: Database connection successful -- 09:40:39.358 INFO [6927]: _SERVER found -- 09:40:39.358 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 09:40:39.358 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 09:40:39.358 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=41vjgndmgue8a0kcjd067n6naru9tqa1 -- 09:40:39.358 INFO [6927]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:40:39.358 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:40:39.370 INFO [6927]: COREGRADE is stopping... -- 09:40:39.370 DEBUG [6927]: Closing database connection -- 09:40:39.370 SQL [6927]: pgsql_close() -- 09:40:39.879 INFO [6927]: COREGRADE is starting... -- 09:40:39.880 INFO [6927]: Version from config: 1.0 -- 09:40:39.880 DEBUG [6927]: Connecting to database... -- 09:40:39.880 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:40:39.880 SQL [6927]: pgsql_db_connect() -- 09:40:39.884 DEBUG [6927]: Database connection successful -- 09:40:39.884 INFO [6927]: _SERVER found -- 09:40:39.884 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 09:40:39.884 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 09:40:39.884 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=41vjgndmgue8a0kcjd067n6naru9tqa1 -- 09:40:39.884 INFO [6927]: QUERY_STRING = /home/howitworks -- 09:40:39.884 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:40:39.919 INFO [6927]: COREGRADE is stopping... -- 09:40:39.919 DEBUG [6927]: Closing database connection -- 09:40:39.919 SQL [6927]: pgsql_close() -- 09:40:40.193 INFO [6928]: COREGRADE is starting... -- 09:40:40.193 INFO [6928]: Version from config: 1.0 -- 09:40:40.193 DEBUG [6928]: Connecting to database... -- 09:40:40.193 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:40:40.193 SQL [6928]: pgsql_db_connect() -- 09:40:40.197 DEBUG [6928]: Database connection successful -- 09:40:40.197 INFO [6928]: _SERVER found -- 09:40:40.197 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 09:40:40.197 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 09:40:40.197 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=41vjgndmgue8a0kcjd067n6naru9tqa1 -- 09:40:40.197 INFO [6928]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:40:40.197 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:40:40.210 INFO [6928]: COREGRADE is stopping... -- 09:40:40.210 DEBUG [6928]: Closing database connection -- 09:40:40.210 SQL [6928]: pgsql_close() -- 09:41:15.602 INFO [6983]: COREGRADE is starting... -- 09:41:15.603 INFO [6983]: Version from config: 1.0 -- 09:41:15.603 DEBUG [6983]: Connecting to database... -- 09:41:15.603 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:41:15.603 SQL [6983]: pgsql_db_connect() -- 09:41:15.607 DEBUG [6983]: Database connection successful -- 09:41:15.607 INFO [6983]: _SERVER found -- 09:41:15.607 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 09:41:15.607 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 09:41:15.607 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=41vjgndmgue8a0kcjd067n6naru9tqa1 -- 09:41:15.607 INFO [6983]: QUERY_STRING = /home/howitworks -- 09:41:15.607 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:41:15.641 INFO [6983]: COREGRADE is stopping... -- 09:41:15.642 DEBUG [6983]: Closing database connection -- 09:41:15.642 SQL [6983]: pgsql_close() -- 09:41:15.817 INFO [6983]: COREGRADE is starting... -- 09:41:15.818 INFO [6983]: Version from config: 1.0 -- 09:41:15.818 DEBUG [6983]: Connecting to database... -- 09:41:15.818 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:41:15.818 SQL [6983]: pgsql_db_connect() -- 09:41:15.822 DEBUG [6983]: Database connection successful -- 09:41:15.822 INFO [6983]: _SERVER found -- 09:41:15.822 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 09:41:15.822 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 09:41:15.822 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=41vjgndmgue8a0kcjd067n6naru9tqa1 -- 09:41:15.822 INFO [6983]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:41:15.822 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:41:15.834 INFO [6983]: COREGRADE is stopping... -- 09:41:15.834 DEBUG [6983]: Closing database connection -- 09:41:15.834 SQL [6983]: pgsql_close() -- 09:41:33.949 INFO [7004]: COREGRADE is starting... -- 09:41:33.950 INFO [7004]: Version from config: 1.0 -- 09:41:33.950 DEBUG [7004]: Connecting to database... -- 09:41:33.950 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:41:33.950 SQL [7004]: pgsql_db_connect() -- 09:41:33.954 DEBUG [7004]: Database connection successful -- 09:41:33.954 INFO [7004]: _SERVER found -- 09:41:33.954 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 09:41:33.954 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 09:41:33.954 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=41vjgndmgue8a0kcjd067n6naru9tqa1 -- 09:41:33.954 INFO [7004]: QUERY_STRING = /home/howitworks -- 09:41:33.954 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:41:33.985 INFO [7004]: COREGRADE is stopping... -- 09:41:33.985 DEBUG [7004]: Closing database connection -- 09:41:33.985 SQL [7004]: pgsql_close() -- 09:41:34.173 INFO [7004]: COREGRADE is starting... -- 09:41:34.173 INFO [7004]: Version from config: 1.0 -- 09:41:34.173 DEBUG [7004]: Connecting to database... -- 09:41:34.173 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:41:34.173 SQL [7004]: pgsql_db_connect() -- 09:41:34.177 DEBUG [7004]: Database connection successful -- 09:41:34.177 INFO [7004]: _SERVER found -- 09:41:34.177 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 09:41:34.177 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 09:41:34.177 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=41vjgndmgue8a0kcjd067n6naru9tqa1 -- 09:41:34.177 INFO [7004]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:41:34.177 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:41:34.188 INFO [7004]: COREGRADE is stopping... -- 09:41:34.188 DEBUG [7004]: Closing database connection -- 09:41:34.188 SQL [7004]: pgsql_close() -- 09:41:34.977 INFO [7004]: COREGRADE is starting... -- 09:41:34.977 INFO [7004]: Version from config: 1.0 -- 09:41:34.977 DEBUG [7004]: Connecting to database... -- 09:41:34.977 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:41:34.977 SQL [7004]: pgsql_db_connect() -- 09:41:34.981 DEBUG [7004]: Database connection successful -- 09:41:34.981 INFO [7004]: _SERVER found -- 09:41:34.981 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 09:41:34.981 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 09:41:34.981 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=41vjgndmgue8a0kcjd067n6naru9tqa1 -- 09:41:34.981 INFO [7004]: QUERY_STRING = /home/howitworks -- 09:41:34.981 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:41:35.012 INFO [7004]: COREGRADE is stopping... -- 09:41:35.012 DEBUG [7004]: Closing database connection -- 09:41:35.012 SQL [7004]: pgsql_close() -- 09:41:35.190 INFO [7004]: COREGRADE is starting... -- 09:41:35.190 INFO [7004]: Version from config: 1.0 -- 09:41:35.190 DEBUG [7004]: Connecting to database... -- 09:41:35.190 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:41:35.190 SQL [7004]: pgsql_db_connect() -- 09:41:35.194 DEBUG [7004]: Database connection successful -- 09:41:35.194 INFO [7004]: _SERVER found -- 09:41:35.194 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 09:41:35.194 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 09:41:35.194 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=41vjgndmgue8a0kcjd067n6naru9tqa1 -- 09:41:35.194 INFO [7004]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:41:35.194 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:41:35.205 INFO [7004]: COREGRADE is stopping... -- 09:41:35.205 DEBUG [7004]: Closing database connection -- 09:41:35.205 SQL [7004]: pgsql_close() -- 09:41:56.291 INFO [7006]: COREGRADE is starting... -- 09:41:56.292 INFO [7006]: Version from config: 1.0 -- 09:41:56.292 DEBUG [7006]: Connecting to database... -- 09:41:56.292 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:41:56.292 SQL [7006]: pgsql_db_connect() -- 09:41:56.296 DEBUG [7006]: Database connection successful -- 09:41:56.296 INFO [7006]: _SERVER found -- 09:41:56.296 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 09:41:56.296 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 09:41:56.296 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=41vjgndmgue8a0kcjd067n6naru9tqa1 -- 09:41:56.296 INFO [7006]: QUERY_STRING = /home/howitworks -- 09:41:56.296 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:41:56.330 INFO [7006]: COREGRADE is stopping... -- 09:41:56.330 DEBUG [7006]: Closing database connection -- 09:41:56.330 SQL [7006]: pgsql_close() -- 09:41:56.534 INFO [7006]: COREGRADE is starting... -- 09:41:56.534 INFO [7006]: Version from config: 1.0 -- 09:41:56.534 DEBUG [7006]: Connecting to database... -- 09:41:56.534 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:41:56.534 SQL [7006]: pgsql_db_connect() -- 09:41:56.538 DEBUG [7006]: Database connection successful -- 09:41:56.538 INFO [7006]: _SERVER found -- 09:41:56.538 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 09:41:56.538 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 09:41:56.538 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=41vjgndmgue8a0kcjd067n6naru9tqa1 -- 09:41:56.538 INFO [7006]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:41:56.538 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:41:56.550 INFO [7006]: COREGRADE is stopping... -- 09:41:56.550 DEBUG [7006]: Closing database connection -- 09:41:56.550 SQL [7006]: pgsql_close() -- 09:41:57.510 INFO [7006]: COREGRADE is starting... -- 09:41:57.510 INFO [7006]: Version from config: 1.0 -- 09:41:57.510 DEBUG [7006]: Connecting to database... -- 09:41:57.510 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:41:57.510 SQL [7006]: pgsql_db_connect() -- 09:41:57.514 DEBUG [7006]: Database connection successful -- 09:41:57.514 INFO [7006]: _SERVER found -- 09:41:57.514 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 09:41:57.514 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 09:41:57.514 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=41vjgndmgue8a0kcjd067n6naru9tqa1 -- 09:41:57.514 INFO [7006]: QUERY_STRING = /home/howitworks -- 09:41:57.514 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:41:57.548 INFO [7006]: COREGRADE is stopping... -- 09:41:57.548 DEBUG [7006]: Closing database connection -- 09:41:57.548 SQL [7006]: pgsql_close() -- 09:41:57.750 INFO [7006]: COREGRADE is starting... -- 09:41:57.751 INFO [7006]: Version from config: 1.0 -- 09:41:57.751 DEBUG [7006]: Connecting to database... -- 09:41:57.751 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:41:57.751 SQL [7006]: pgsql_db_connect() -- 09:41:57.755 DEBUG [7006]: Database connection successful -- 09:41:57.755 INFO [7006]: _SERVER found -- 09:41:57.755 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 09:41:57.755 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 09:41:57.755 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=41vjgndmgue8a0kcjd067n6naru9tqa1 -- 09:41:57.755 INFO [7006]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:41:57.755 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:41:57.767 INFO [7006]: COREGRADE is stopping... -- 09:41:57.767 DEBUG [7006]: Closing database connection -- 09:41:57.767 SQL [7006]: pgsql_close() -- 09:41:58.629 INFO [7006]: COREGRADE is starting... -- 09:41:58.630 INFO [7006]: Version from config: 1.0 -- 09:41:58.630 DEBUG [7006]: Connecting to database... -- 09:41:58.630 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:41:58.630 SQL [7006]: pgsql_db_connect() -- 09:41:58.634 DEBUG [7006]: Database connection successful -- 09:41:58.634 INFO [7006]: _SERVER found -- 09:41:58.634 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 09:41:58.634 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 09:41:58.634 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=41vjgndmgue8a0kcjd067n6naru9tqa1 -- 09:41:58.634 INFO [7006]: QUERY_STRING = /home/howitworks -- 09:41:58.634 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:41:58.667 INFO [7006]: COREGRADE is stopping... -- 09:41:58.667 DEBUG [7006]: Closing database connection -- 09:41:58.667 SQL [7006]: pgsql_close() -- 09:41:58.834 INFO [7006]: COREGRADE is starting... -- 09:41:58.835 INFO [7006]: Version from config: 1.0 -- 09:41:58.835 DEBUG [7006]: Connecting to database... -- 09:41:58.835 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:41:58.835 SQL [7006]: pgsql_db_connect() -- 09:41:58.839 DEBUG [7006]: Database connection successful -- 09:41:58.839 INFO [7006]: _SERVER found -- 09:41:58.839 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 09:41:58.839 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 09:41:58.839 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=41vjgndmgue8a0kcjd067n6naru9tqa1 -- 09:41:58.839 INFO [7006]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:41:58.839 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:41:58.851 INFO [7006]: COREGRADE is stopping... -- 09:41:58.851 DEBUG [7006]: Closing database connection -- 09:41:58.851 SQL [7006]: pgsql_close() -- 09:42:54.595 INFO [6925]: COREGRADE is starting... -- 09:42:54.596 INFO [6925]: Version from config: 1.0 -- 09:42:54.596 DEBUG [6925]: Connecting to database... -- 09:42:54.596 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:42:54.596 SQL [6925]: pgsql_db_connect() -- 09:42:54.600 DEBUG [6925]: Database connection successful -- 09:42:54.600 INFO [6925]: _SERVER found -- 09:42:54.600 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 09:42:54.600 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 09:42:54.600 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=41vjgndmgue8a0kcjd067n6naru9tqa1 -- 09:42:54.600 INFO [6925]: QUERY_STRING = /home/howitworks -- 09:42:54.600 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:42:54.635 INFO [6925]: COREGRADE is stopping... -- 09:42:54.635 DEBUG [6925]: Closing database connection -- 09:42:54.635 SQL [6925]: pgsql_close() -- 09:42:54.912 INFO [7002]: COREGRADE is starting... -- 09:42:54.913 INFO [7002]: Version from config: 1.0 -- 09:42:54.913 DEBUG [7002]: Connecting to database... -- 09:42:54.913 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:42:54.913 SQL [7002]: pgsql_db_connect() -- 09:42:54.917 DEBUG [7002]: Database connection successful -- 09:42:54.917 INFO [7002]: _SERVER found -- 09:42:54.917 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 09:42:54.917 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 09:42:54.917 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=41vjgndmgue8a0kcjd067n6naru9tqa1 -- 09:42:54.917 INFO [7002]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:42:54.917 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:42:54.930 INFO [7002]: COREGRADE is stopping... -- 09:42:54.930 DEBUG [7002]: Closing database connection -- 09:42:54.930 SQL [7002]: pgsql_close() -- 09:43:19.756 INFO [6927]: COREGRADE is starting... -- 09:43:19.757 INFO [6927]: Version from config: 1.0 -- 09:43:19.757 DEBUG [6927]: Connecting to database... -- 09:43:19.757 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:43:19.757 SQL [6927]: pgsql_db_connect() -- 09:43:19.761 DEBUG [6927]: Database connection successful -- 09:43:19.761 INFO [6927]: _SERVER found -- 09:43:19.761 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 09:43:19.761 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 09:43:19.761 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=41vjgndmgue8a0kcjd067n6naru9tqa1 -- 09:43:19.761 INFO [6927]: QUERY_STRING = /home/howitworks -- 09:43:19.761 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:43:19.797 INFO [6927]: COREGRADE is stopping... -- 09:43:19.797 DEBUG [6927]: Closing database connection -- 09:43:19.797 SQL [6927]: pgsql_close() -- 09:43:20.042 INFO [6927]: COREGRADE is starting... -- 09:43:20.042 INFO [6927]: Version from config: 1.0 -- 09:43:20.042 DEBUG [6927]: Connecting to database... -- 09:43:20.042 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:43:20.042 SQL [6927]: pgsql_db_connect() -- 09:43:20.046 DEBUG [6927]: Database connection successful -- 09:43:20.046 INFO [6927]: _SERVER found -- 09:43:20.046 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 09:43:20.046 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 09:43:20.046 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=41vjgndmgue8a0kcjd067n6naru9tqa1 -- 09:43:20.046 INFO [6927]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:43:20.046 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:43:20.059 INFO [6927]: COREGRADE is stopping... -- 09:43:20.059 DEBUG [6927]: Closing database connection -- 09:43:20.059 SQL [6927]: pgsql_close() -- 09:43:20.898 INFO [6927]: COREGRADE is starting... -- 09:43:20.898 INFO [6927]: Version from config: 1.0 -- 09:43:20.898 DEBUG [6927]: Connecting to database... -- 09:43:20.898 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:43:20.898 SQL [6927]: pgsql_db_connect() -- 09:43:20.902 DEBUG [6927]: Database connection successful -- 09:43:20.902 INFO [6927]: _SERVER found -- 09:43:20.902 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 09:43:20.902 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 09:43:20.902 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=41vjgndmgue8a0kcjd067n6naru9tqa1 -- 09:43:20.902 INFO [6927]: QUERY_STRING = /home/howitworks -- 09:43:20.902 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:43:20.937 INFO [6927]: COREGRADE is stopping... -- 09:43:20.937 DEBUG [6927]: Closing database connection -- 09:43:20.937 SQL [6927]: pgsql_close() -- 09:43:21.134 INFO [6927]: COREGRADE is starting... -- 09:43:21.135 INFO [6927]: Version from config: 1.0 -- 09:43:21.135 DEBUG [6927]: Connecting to database... -- 09:43:21.135 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:43:21.135 SQL [6927]: pgsql_db_connect() -- 09:43:21.139 DEBUG [6927]: Database connection successful -- 09:43:21.139 INFO [6927]: _SERVER found -- 09:43:21.139 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 09:43:21.139 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 09:43:21.139 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=41vjgndmgue8a0kcjd067n6naru9tqa1 -- 09:43:21.139 INFO [6927]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:43:21.139 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:43:21.151 INFO [6927]: COREGRADE is stopping... -- 09:43:21.151 DEBUG [6927]: Closing database connection -- 09:43:21.151 SQL [6927]: pgsql_close() -- 09:44:45.323 INFO [7005]: COREGRADE is starting... -- 09:44:45.323 INFO [7005]: Version from config: 1.0 -- 09:44:45.323 DEBUG [7005]: Connecting to database... -- 09:44:45.323 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:44:45.323 SQL [7005]: pgsql_db_connect() -- 09:44:45.327 DEBUG [7005]: Database connection successful -- 09:44:45.327 INFO [7005]: _SERVER found -- 09:44:45.327 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 09:44:45.327 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 09:44:45.327 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=41vjgndmgue8a0kcjd067n6naru9tqa1 -- 09:44:45.327 INFO [7005]: QUERY_STRING = /home/howitworks -- 09:44:45.327 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:44:45.360 INFO [7005]: COREGRADE is stopping... -- 09:44:45.360 DEBUG [7005]: Closing database connection -- 09:44:45.360 SQL [7005]: pgsql_close() -- 09:44:45.620 INFO [7005]: COREGRADE is starting... -- 09:44:45.621 INFO [7005]: Version from config: 1.0 -- 09:44:45.621 DEBUG [7005]: Connecting to database... -- 09:44:45.621 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:44:45.621 SQL [7005]: pgsql_db_connect() -- 09:44:45.625 DEBUG [7005]: Database connection successful -- 09:44:45.625 INFO [7005]: _SERVER found -- 09:44:45.625 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 09:44:45.625 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 09:44:45.625 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=41vjgndmgue8a0kcjd067n6naru9tqa1 -- 09:44:45.625 INFO [7005]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:44:45.625 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:44:45.636 INFO [7005]: COREGRADE is stopping... -- 09:44:45.636 DEBUG [7005]: Closing database connection -- 09:44:45.636 SQL [7005]: pgsql_close() -- 09:44:46.411 INFO [7005]: COREGRADE is starting... -- 09:44:46.411 INFO [7005]: Version from config: 1.0 -- 09:44:46.411 DEBUG [7005]: Connecting to database... -- 09:44:46.411 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:44:46.411 SQL [7005]: pgsql_db_connect() -- 09:44:46.415 DEBUG [7005]: Database connection successful -- 09:44:46.415 INFO [7005]: _SERVER found -- 09:44:46.415 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 09:44:46.415 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 09:44:46.415 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=41vjgndmgue8a0kcjd067n6naru9tqa1 -- 09:44:46.415 INFO [7005]: QUERY_STRING = /home/howitworks -- 09:44:46.415 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:44:46.446 INFO [7005]: COREGRADE is stopping... -- 09:44:46.446 DEBUG [7005]: Closing database connection -- 09:44:46.446 SQL [7005]: pgsql_close() -- 09:44:46.632 INFO [7005]: COREGRADE is starting... -- 09:44:46.633 INFO [7005]: Version from config: 1.0 -- 09:44:46.633 DEBUG [7005]: Connecting to database... -- 09:44:46.633 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:44:46.633 SQL [7005]: pgsql_db_connect() -- 09:44:46.637 DEBUG [7005]: Database connection successful -- 09:44:46.637 INFO [7005]: _SERVER found -- 09:44:46.637 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 09:44:46.637 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 09:44:46.637 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=41vjgndmgue8a0kcjd067n6naru9tqa1 -- 09:44:46.637 INFO [7005]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:44:46.637 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:44:46.648 INFO [7005]: COREGRADE is stopping... -- 09:44:46.648 DEBUG [7005]: Closing database connection -- 09:44:46.648 SQL [7005]: pgsql_close() -- 09:44:47.480 INFO [7005]: COREGRADE is starting... -- 09:44:47.480 INFO [7005]: Version from config: 1.0 -- 09:44:47.480 DEBUG [7005]: Connecting to database... -- 09:44:47.480 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:44:47.480 SQL [7005]: pgsql_db_connect() -- 09:44:47.484 DEBUG [7005]: Database connection successful -- 09:44:47.484 INFO [7005]: _SERVER found -- 09:44:47.484 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 09:44:47.484 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 09:44:47.484 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=41vjgndmgue8a0kcjd067n6naru9tqa1 -- 09:44:47.484 INFO [7005]: QUERY_STRING = /home/howitworks -- 09:44:47.484 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:44:47.515 INFO [7005]: COREGRADE is stopping... -- 09:44:47.515 DEBUG [7005]: Closing database connection -- 09:44:47.515 SQL [7005]: pgsql_close() -- 09:44:47.719 INFO [7005]: COREGRADE is starting... -- 09:44:47.719 INFO [7005]: Version from config: 1.0 -- 09:44:47.719 DEBUG [7005]: Connecting to database... -- 09:44:47.719 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:44:47.719 SQL [7005]: pgsql_db_connect() -- 09:44:47.724 DEBUG [7005]: Database connection successful -- 09:44:47.724 INFO [7005]: _SERVER found -- 09:44:47.724 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 09:44:47.724 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 09:44:47.724 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=41vjgndmgue8a0kcjd067n6naru9tqa1 -- 09:44:47.724 INFO [7005]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:44:47.724 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:44:47.735 INFO [7005]: COREGRADE is stopping... -- 09:44:47.735 DEBUG [7005]: Closing database connection -- 09:44:47.735 SQL [7005]: pgsql_close() -- 09:45:19.824 INFO [7007]: COREGRADE is starting... -- 09:45:19.824 INFO [7007]: Version from config: 1.0 -- 09:45:19.824 DEBUG [7007]: Connecting to database... -- 09:45:19.824 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:45:19.824 SQL [7007]: pgsql_db_connect() -- 09:45:19.828 DEBUG [7007]: Database connection successful -- 09:45:19.828 INFO [7007]: _SERVER found -- 09:45:19.828 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 09:45:19.828 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 09:45:19.828 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=41vjgndmgue8a0kcjd067n6naru9tqa1 -- 09:45:19.828 INFO [7007]: QUERY_STRING = /home/howitworks -- 09:45:19.828 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:45:19.860 INFO [7007]: COREGRADE is stopping... -- 09:45:19.860 DEBUG [7007]: Closing database connection -- 09:45:19.860 SQL [7007]: pgsql_close() -- 09:45:20.043 INFO [7007]: COREGRADE is starting... -- 09:45:20.044 INFO [7007]: Version from config: 1.0 -- 09:45:20.044 DEBUG [7007]: Connecting to database... -- 09:45:20.044 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:45:20.044 SQL [7007]: pgsql_db_connect() -- 09:45:20.048 DEBUG [7007]: Database connection successful -- 09:45:20.048 INFO [7007]: _SERVER found -- 09:45:20.048 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 09:45:20.048 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 09:45:20.048 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=41vjgndmgue8a0kcjd067n6naru9tqa1 -- 09:45:20.048 INFO [7007]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:45:20.048 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:45:20.059 INFO [7007]: COREGRADE is stopping... -- 09:45:20.059 DEBUG [7007]: Closing database connection -- 09:45:20.059 SQL [7007]: pgsql_close() -- 09:45:56.931 INFO [6929]: COREGRADE is starting... -- 09:45:56.932 INFO [6929]: Version from config: 1.0 -- 09:45:56.932 DEBUG [6929]: Connecting to database... -- 09:45:56.932 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:45:56.932 SQL [6929]: pgsql_db_connect() -- 09:45:56.936 DEBUG [6929]: Database connection successful -- 09:45:56.936 INFO [6929]: _SERVER found -- 09:45:56.936 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 09:45:56.936 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 09:45:56.936 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=41vjgndmgue8a0kcjd067n6naru9tqa1 -- 09:45:56.936 INFO [6929]: QUERY_STRING = /home/howitworks -- 09:45:56.936 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:45:56.971 INFO [6929]: COREGRADE is stopping... -- 09:45:56.971 DEBUG [6929]: Closing database connection -- 09:45:56.971 SQL [6929]: pgsql_close() -- 09:45:57.175 INFO [6929]: COREGRADE is starting... -- 09:45:57.175 INFO [6929]: Version from config: 1.0 -- 09:45:57.175 DEBUG [6929]: Connecting to database... -- 09:45:57.175 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:45:57.175 SQL [6929]: pgsql_db_connect() -- 09:45:57.179 DEBUG [6929]: Database connection successful -- 09:45:57.179 INFO [6929]: _SERVER found -- 09:45:57.179 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 09:45:57.179 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 09:45:57.179 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=a9gdasilutn8r9c7ifqq9p50e5c3h64l -- 09:45:57.179 INFO [6929]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:45:57.180 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:45:57.192 INFO [6929]: COREGRADE is stopping... -- 09:45:57.192 DEBUG [6929]: Closing database connection -- 09:45:57.192 SQL [6929]: pgsql_close() -- 09:46:21.632 INFO [6925]: COREGRADE is starting... -- 09:46:21.632 INFO [6925]: Version from config: 1.0 -- 09:46:21.632 DEBUG [6925]: Connecting to database... -- 09:46:21.632 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:46:21.632 SQL [6925]: pgsql_db_connect() -- 09:46:21.636 DEBUG [6925]: Database connection successful -- 09:46:21.636 INFO [6925]: _SERVER found -- 09:46:21.636 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 09:46:21.636 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 09:46:21.636 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=a9gdasilutn8r9c7ifqq9p50e5c3h64l -- 09:46:21.636 INFO [6925]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 09:46:21.636 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:46:21.649 INFO [6925]: COREGRADE is stopping... -- 09:46:21.649 DEBUG [6925]: Closing database connection -- 09:46:21.649 SQL [6925]: pgsql_close() -- 09:46:35.760 INFO [7002]: COREGRADE is starting... -- 09:46:35.760 INFO [7002]: Version from config: 1.0 -- 09:46:35.760 DEBUG [7002]: Connecting to database... -- 09:46:35.760 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:46:35.760 SQL [7002]: pgsql_db_connect() -- 09:46:35.764 DEBUG [7002]: Database connection successful -- 09:46:35.764 INFO [7002]: _SERVER found -- 09:46:35.764 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 09:46:35.764 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 09:46:35.764 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=a9gdasilutn8r9c7ifqq9p50e5c3h64l -- 09:46:35.764 INFO [7002]: QUERY_STRING = /home/howitworks -- 09:46:35.764 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:46:35.800 INFO [7002]: COREGRADE is stopping... -- 09:46:35.800 DEBUG [7002]: Closing database connection -- 09:46:35.800 SQL [7002]: pgsql_close() -- 09:46:36.020 INFO [7002]: COREGRADE is starting... -- 09:46:36.020 INFO [7002]: Version from config: 1.0 -- 09:46:36.020 DEBUG [7002]: Connecting to database... -- 09:46:36.020 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:46:36.020 SQL [7002]: pgsql_db_connect() -- 09:46:36.024 DEBUG [7002]: Database connection successful -- 09:46:36.024 INFO [7002]: _SERVER found -- 09:46:36.024 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 09:46:36.024 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 09:46:36.024 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=a9gdasilutn8r9c7ifqq9p50e5c3h64l -- 09:46:36.024 INFO [7002]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:46:36.024 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:46:36.036 INFO [7002]: COREGRADE is stopping... -- 09:46:36.036 DEBUG [7002]: Closing database connection -- 09:46:36.036 SQL [7002]: pgsql_close() -- 09:46:53.911 INFO [6927]: COREGRADE is starting... -- 09:46:53.911 INFO [6927]: Version from config: 1.0 -- 09:46:53.911 DEBUG [6927]: Connecting to database... -- 09:46:53.911 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:46:53.911 SQL [6927]: pgsql_db_connect() -- 09:46:53.915 DEBUG [6927]: Database connection successful -- 09:46:53.915 INFO [6927]: _SERVER found -- 09:46:53.915 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 09:46:53.915 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 09:46:53.915 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=a9gdasilutn8r9c7ifqq9p50e5c3h64l -- 09:46:53.915 INFO [6927]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:46:53.915 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:46:53.928 INFO [6927]: COREGRADE is stopping... -- 09:46:53.928 DEBUG [6927]: Closing database connection -- 09:46:53.928 SQL [6927]: pgsql_close() -- 09:52:38.162 INFO [6983]: COREGRADE is starting... -- 09:52:38.163 INFO [6983]: Version from config: 1.0 -- 09:52:38.163 DEBUG [6983]: Connecting to database... -- 09:52:38.163 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:52:38.163 SQL [6983]: pgsql_db_connect() -- 09:52:38.167 DEBUG [6983]: Database connection successful -- 09:52:38.167 INFO [6983]: _SERVER found -- 09:52:38.167 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 09:52:38.167 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 09:52:38.167 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=a9gdasilutn8r9c7ifqq9p50e5c3h64l -- 09:52:38.167 INFO [6983]: QUERY_STRING = /home/howitworks -- 09:52:38.167 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:52:38.203 INFO [6983]: COREGRADE is stopping... -- 09:52:38.203 DEBUG [6983]: Closing database connection -- 09:52:38.203 SQL [6983]: pgsql_close() -- 09:52:38.539 INFO [6983]: COREGRADE is starting... -- 09:52:38.539 INFO [6983]: Version from config: 1.0 -- 09:52:38.539 DEBUG [6983]: Connecting to database... -- 09:52:38.539 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:52:38.539 SQL [6983]: pgsql_db_connect() -- 09:52:38.543 DEBUG [6983]: Database connection successful -- 09:52:38.543 INFO [6983]: _SERVER found -- 09:52:38.543 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 09:52:38.543 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 09:52:38.543 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=b88e2rill6qov249v42c5b974g1c6d0j -- 09:52:38.543 INFO [6983]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:52:38.543 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:52:38.555 INFO [6983]: COREGRADE is stopping... -- 09:52:38.555 DEBUG [6983]: Closing database connection -- 09:52:38.555 SQL [6983]: pgsql_close() -- 09:54:07.764 INFO [7004]: COREGRADE is starting... -- 09:54:07.764 INFO [7004]: Version from config: 1.0 -- 09:54:07.764 DEBUG [7004]: Connecting to database... -- 09:54:07.764 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:54:07.764 SQL [7004]: pgsql_db_connect() -- 09:54:07.768 DEBUG [7004]: Database connection successful -- 09:54:07.768 INFO [7004]: _SERVER found -- 09:54:07.768 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 09:54:07.768 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 09:54:07.768 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=b88e2rill6qov249v42c5b974g1c6d0j -- 09:54:07.768 INFO [7004]: QUERY_STRING = /home/howitworks -- 09:54:07.768 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:54:07.802 INFO [7004]: COREGRADE is stopping... -- 09:54:07.802 DEBUG [7004]: Closing database connection -- 09:54:07.802 SQL [7004]: pgsql_close() -- 09:54:08.024 INFO [7004]: COREGRADE is starting... -- 09:54:08.024 INFO [7004]: Version from config: 1.0 -- 09:54:08.024 DEBUG [7004]: Connecting to database... -- 09:54:08.024 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:54:08.024 SQL [7004]: pgsql_db_connect() -- 09:54:08.029 DEBUG [7004]: Database connection successful -- 09:54:08.029 INFO [7004]: _SERVER found -- 09:54:08.029 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 09:54:08.029 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 09:54:08.029 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=b88e2rill6qov249v42c5b974g1c6d0j -- 09:54:08.029 INFO [7004]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:54:08.029 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:54:08.040 INFO [7004]: COREGRADE is stopping... -- 09:54:08.040 DEBUG [7004]: Closing database connection -- 09:54:08.040 SQL [7004]: pgsql_close() -- 09:54:36.780 INFO [7006]: COREGRADE is starting... -- 09:54:36.780 INFO [7006]: Version from config: 1.0 -- 09:54:36.780 DEBUG [7006]: Connecting to database... -- 09:54:36.780 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:54:36.780 SQL [7006]: pgsql_db_connect() -- 09:54:36.784 DEBUG [7006]: Database connection successful -- 09:54:36.784 INFO [7006]: _SERVER found -- 09:54:36.784 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 09:54:36.784 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 09:54:36.784 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=b88e2rill6qov249v42c5b974g1c6d0j -- 09:54:36.784 INFO [7006]: QUERY_STRING = /home/howitworks -- 09:54:36.784 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:54:36.819 INFO [7006]: COREGRADE is stopping... -- 09:54:36.819 DEBUG [7006]: Closing database connection -- 09:54:36.819 SQL [7006]: pgsql_close() -- 09:54:37.045 INFO [7006]: COREGRADE is starting... -- 09:54:37.045 INFO [7006]: Version from config: 1.0 -- 09:54:37.045 DEBUG [7006]: Connecting to database... -- 09:54:37.045 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:54:37.045 SQL [7006]: pgsql_db_connect() -- 09:54:37.049 DEBUG [7006]: Database connection successful -- 09:54:37.049 INFO [7006]: _SERVER found -- 09:54:37.049 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 09:54:37.049 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 09:54:37.049 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=b88e2rill6qov249v42c5b974g1c6d0j -- 09:54:37.049 INFO [7006]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:54:37.049 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:54:37.061 INFO [7006]: COREGRADE is stopping... -- 09:54:37.061 DEBUG [7006]: Closing database connection -- 09:54:37.061 SQL [7006]: pgsql_close() -- 09:55:05.778 INFO [6929]: COREGRADE is starting... -- 09:55:05.779 INFO [6929]: Version from config: 1.0 -- 09:55:05.779 DEBUG [6929]: Connecting to database... -- 09:55:05.779 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:55:05.779 SQL [6929]: pgsql_db_connect() -- 09:55:05.783 DEBUG [6929]: Database connection successful -- 09:55:05.783 INFO [6929]: _SERVER found -- 09:55:05.783 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 09:55:05.783 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 09:55:05.783 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=b88e2rill6qov249v42c5b974g1c6d0j -- 09:55:05.783 INFO [6929]: QUERY_STRING = /home/howitworks -- 09:55:05.783 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:55:05.819 INFO [6929]: COREGRADE is stopping... -- 09:55:05.819 DEBUG [6929]: Closing database connection -- 09:55:05.819 SQL [6929]: pgsql_close() -- 09:55:06.101 INFO [6929]: COREGRADE is starting... -- 09:55:06.102 INFO [6929]: Version from config: 1.0 -- 09:55:06.102 DEBUG [6929]: Connecting to database... -- 09:55:06.102 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:55:06.102 SQL [6929]: pgsql_db_connect() -- 09:55:06.106 DEBUG [6929]: Database connection successful -- 09:55:06.106 INFO [6929]: _SERVER found -- 09:55:06.106 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 09:55:06.106 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 09:55:06.106 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=b88e2rill6qov249v42c5b974g1c6d0j -- 09:55:06.106 INFO [6929]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:55:06.106 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:55:06.118 INFO [6929]: COREGRADE is stopping... -- 09:55:06.118 DEBUG [6929]: Closing database connection -- 09:55:06.118 SQL [6929]: pgsql_close() -- 09:55:07.303 INFO [6929]: COREGRADE is starting... -- 09:55:07.303 INFO [6929]: Version from config: 1.0 -- 09:55:07.303 DEBUG [6929]: Connecting to database... -- 09:55:07.303 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:55:07.303 SQL [6929]: pgsql_db_connect() -- 09:55:07.308 DEBUG [6929]: Database connection successful -- 09:55:07.308 INFO [6929]: _SERVER found -- 09:55:07.308 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 09:55:07.308 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 09:55:07.308 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=b88e2rill6qov249v42c5b974g1c6d0j -- 09:55:07.308 INFO [6929]: QUERY_STRING = /home/howitworks -- 09:55:07.308 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:55:07.342 INFO [6929]: COREGRADE is stopping... -- 09:55:07.342 DEBUG [6929]: Closing database connection -- 09:55:07.342 SQL [6929]: pgsql_close() -- 09:55:07.559 INFO [6929]: COREGRADE is starting... -- 09:55:07.559 INFO [6929]: Version from config: 1.0 -- 09:55:07.559 DEBUG [6929]: Connecting to database... -- 09:55:07.559 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:55:07.559 SQL [6929]: pgsql_db_connect() -- 09:55:07.563 DEBUG [6929]: Database connection successful -- 09:55:07.563 INFO [6929]: _SERVER found -- 09:55:07.563 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 09:55:07.563 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 09:55:07.563 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=b88e2rill6qov249v42c5b974g1c6d0j -- 09:55:07.563 INFO [6929]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:55:07.563 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:55:07.576 INFO [6929]: COREGRADE is stopping... -- 09:55:07.576 DEBUG [6929]: Closing database connection -- 09:55:07.576 SQL [6929]: pgsql_close() -- 09:55:21.892 INFO [6928]: COREGRADE is starting... -- 09:55:21.892 INFO [6928]: Version from config: 1.0 -- 09:55:21.892 DEBUG [6928]: Connecting to database... -- 09:55:21.892 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:55:21.892 SQL [6928]: pgsql_db_connect() -- 09:55:21.896 DEBUG [6928]: Database connection successful -- 09:55:21.896 INFO [6928]: _SERVER found -- 09:55:21.896 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 09:55:21.896 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 09:55:21.896 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=b88e2rill6qov249v42c5b974g1c6d0j -- 09:55:21.896 INFO [6928]: QUERY_STRING = /home/howitworks -- 09:55:21.896 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:55:21.931 INFO [6928]: COREGRADE is stopping... -- 09:55:21.931 DEBUG [6928]: Closing database connection -- 09:55:21.931 SQL [6928]: pgsql_close() -- 09:55:22.159 INFO [6928]: COREGRADE is starting... -- 09:55:22.159 INFO [6928]: Version from config: 1.0 -- 09:55:22.159 DEBUG [6928]: Connecting to database... -- 09:55:22.159 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:55:22.159 SQL [6928]: pgsql_db_connect() -- 09:55:22.163 DEBUG [6928]: Database connection successful -- 09:55:22.164 INFO [6928]: _SERVER found -- 09:55:22.164 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 09:55:22.164 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 09:55:22.164 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=b88e2rill6qov249v42c5b974g1c6d0j -- 09:55:22.164 INFO [6928]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:55:22.164 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:55:22.176 INFO [6928]: COREGRADE is stopping... -- 09:55:22.176 DEBUG [6928]: Closing database connection -- 09:55:22.176 SQL [6928]: pgsql_close() -- 09:55:41.817 INFO [6927]: COREGRADE is starting... -- 09:55:41.817 INFO [6927]: Version from config: 1.0 -- 09:55:41.817 DEBUG [6927]: Connecting to database... -- 09:55:41.817 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:55:41.817 SQL [6927]: pgsql_db_connect() -- 09:55:41.821 DEBUG [6927]: Database connection successful -- 09:55:41.821 INFO [6927]: _SERVER found -- 09:55:41.821 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 09:55:41.821 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 09:55:41.821 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=b88e2rill6qov249v42c5b974g1c6d0j -- 09:55:41.821 INFO [6927]: QUERY_STRING = /home/howitworks -- 09:55:41.821 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:55:41.856 INFO [6927]: COREGRADE is stopping... -- 09:55:41.856 DEBUG [6927]: Closing database connection -- 09:55:41.856 SQL [6927]: pgsql_close() -- 09:55:42.086 INFO [6927]: COREGRADE is starting... -- 09:55:42.087 INFO [6927]: Version from config: 1.0 -- 09:55:42.087 DEBUG [6927]: Connecting to database... -- 09:55:42.087 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:55:42.087 SQL [6927]: pgsql_db_connect() -- 09:55:42.091 DEBUG [6927]: Database connection successful -- 09:55:42.091 INFO [6927]: _SERVER found -- 09:55:42.091 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 09:55:42.091 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 09:55:42.091 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=b88e2rill6qov249v42c5b974g1c6d0j -- 09:55:42.091 INFO [6927]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:55:42.091 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:55:42.103 INFO [6927]: COREGRADE is stopping... -- 09:55:42.103 DEBUG [6927]: Closing database connection -- 09:55:42.103 SQL [6927]: pgsql_close() -- 09:56:11.538 INFO [6983]: COREGRADE is starting... -- 09:56:11.538 INFO [6983]: Version from config: 1.0 -- 09:56:11.538 DEBUG [6983]: Connecting to database... -- 09:56:11.538 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:56:11.538 SQL [6983]: pgsql_db_connect() -- 09:56:11.542 DEBUG [6983]: Database connection successful -- 09:56:11.542 INFO [6983]: _SERVER found -- 09:56:11.542 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 09:56:11.542 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 09:56:11.542 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=b88e2rill6qov249v42c5b974g1c6d0j -- 09:56:11.542 INFO [6983]: QUERY_STRING = /home/howitworks -- 09:56:11.542 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:56:11.577 INFO [6983]: COREGRADE is stopping... -- 09:56:11.577 DEBUG [6983]: Closing database connection -- 09:56:11.577 SQL [6983]: pgsql_close() -- 09:56:11.809 INFO [7007]: COREGRADE is starting... -- 09:56:11.809 INFO [7007]: Version from config: 1.0 -- 09:56:11.809 DEBUG [7007]: Connecting to database... -- 09:56:11.809 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:56:11.809 SQL [7007]: pgsql_db_connect() -- 09:56:11.814 DEBUG [7007]: Database connection successful -- 09:56:11.814 INFO [7007]: _SERVER found -- 09:56:11.814 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 09:56:11.814 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 09:56:11.814 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=b88e2rill6qov249v42c5b974g1c6d0j -- 09:56:11.814 INFO [7007]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:56:11.814 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:56:11.825 INFO [7007]: COREGRADE is stopping... -- 09:56:11.826 DEBUG [7007]: Closing database connection -- 09:56:11.826 SQL [7007]: pgsql_close() -- 09:56:31.934 INFO [7004]: COREGRADE is starting... -- 09:56:31.934 INFO [7004]: Version from config: 1.0 -- 09:56:31.934 DEBUG [7004]: Connecting to database... -- 09:56:31.934 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:56:31.934 SQL [7004]: pgsql_db_connect() -- 09:56:31.938 DEBUG [7004]: Database connection successful -- 09:56:31.938 INFO [7004]: _SERVER found -- 09:56:31.938 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 09:56:31.938 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 09:56:31.938 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=b88e2rill6qov249v42c5b974g1c6d0j -- 09:56:31.938 INFO [7004]: QUERY_STRING = /home/howitworks -- 09:56:31.938 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:56:31.970 INFO [7004]: COREGRADE is stopping... -- 09:56:31.970 DEBUG [7004]: Closing database connection -- 09:56:31.970 SQL [7004]: pgsql_close() -- 09:56:32.201 INFO [7004]: COREGRADE is starting... -- 09:56:32.201 INFO [7004]: Version from config: 1.0 -- 09:56:32.201 DEBUG [7004]: Connecting to database... -- 09:56:32.201 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:56:32.201 SQL [7004]: pgsql_db_connect() -- 09:56:32.206 DEBUG [7004]: Database connection successful -- 09:56:32.206 INFO [7004]: _SERVER found -- 09:56:32.206 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 09:56:32.206 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 09:56:32.206 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=b88e2rill6qov249v42c5b974g1c6d0j -- 09:56:32.206 INFO [7004]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:56:32.206 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:56:32.217 INFO [7004]: COREGRADE is stopping... -- 09:56:32.217 DEBUG [7004]: Closing database connection -- 09:56:32.217 SQL [7004]: pgsql_close() -- 09:59:40.664 INFO [6925]: COREGRADE is starting... -- 09:59:40.665 INFO [6925]: Version from config: 1.0 -- 09:59:40.665 DEBUG [6925]: Connecting to database... -- 09:59:40.665 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:59:40.665 SQL [6925]: pgsql_db_connect() -- 09:59:40.669 DEBUG [6925]: Database connection successful -- 09:59:40.669 INFO [6925]: _SERVER found -- 09:59:40.669 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 09:59:40.669 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 09:59:40.669 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=b88e2rill6qov249v42c5b974g1c6d0j -- 09:59:40.669 INFO [6925]: QUERY_STRING = /home/howitworks -- 09:59:40.669 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:59:40.704 INFO [6925]: COREGRADE is stopping... -- 09:59:40.704 DEBUG [6925]: Closing database connection -- 09:59:40.704 SQL [6925]: pgsql_close() -- 09:59:40.960 INFO [6925]: COREGRADE is starting... -- 09:59:40.960 INFO [6925]: Version from config: 1.0 -- 09:59:40.960 DEBUG [6925]: Connecting to database... -- 09:59:40.960 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:59:40.960 SQL [6925]: pgsql_db_connect() -- 09:59:40.964 DEBUG [6925]: Database connection successful -- 09:59:40.964 INFO [6925]: _SERVER found -- 09:59:40.964 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 09:59:40.964 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 09:59:40.964 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=kfce4mebt8kvsgers8ltoue9atb7ouvc -- 09:59:40.964 INFO [6925]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 09:59:40.964 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:59:40.976 INFO [6925]: COREGRADE is stopping... -- 09:59:40.976 DEBUG [6925]: Closing database connection -- 09:59:40.976 SQL [6925]: pgsql_close() -- 10:01:07.918 INFO [7002]: COREGRADE is starting... -- 10:01:07.918 INFO [7002]: Version from config: 1.0 -- 10:01:07.918 DEBUG [7002]: Connecting to database... -- 10:01:07.918 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:01:07.918 SQL [7002]: pgsql_db_connect() -- 10:01:07.922 DEBUG [7002]: Database connection successful -- 10:01:07.922 INFO [7002]: _SERVER found -- 10:01:07.922 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 10:01:07.922 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 10:01:07.922 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=kfce4mebt8kvsgers8ltoue9atb7ouvc -- 10:01:07.922 INFO [7002]: QUERY_STRING = /home/howitworks -- 10:01:07.922 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:01:07.958 INFO [7002]: COREGRADE is stopping... -- 10:01:07.958 DEBUG [7002]: Closing database connection -- 10:01:07.958 SQL [7002]: pgsql_close() -- 10:01:08.206 INFO [7002]: COREGRADE is starting... -- 10:01:08.206 INFO [7002]: Version from config: 1.0 -- 10:01:08.206 DEBUG [7002]: Connecting to database... -- 10:01:08.206 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:01:08.206 SQL [7002]: pgsql_db_connect() -- 10:01:08.210 DEBUG [7002]: Database connection successful -- 10:01:08.210 INFO [7002]: _SERVER found -- 10:01:08.210 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 10:01:08.210 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 10:01:08.210 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=kfce4mebt8kvsgers8ltoue9atb7ouvc -- 10:01:08.210 INFO [7002]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:01:08.210 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:01:08.223 INFO [7002]: COREGRADE is stopping... -- 10:01:08.223 DEBUG [7002]: Closing database connection -- 10:01:08.223 SQL [7002]: pgsql_close() -- 10:01:09.163 INFO [7002]: COREGRADE is starting... -- 10:01:09.163 INFO [7002]: Version from config: 1.0 -- 10:01:09.163 DEBUG [7002]: Connecting to database... -- 10:01:09.163 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:01:09.163 SQL [7002]: pgsql_db_connect() -- 10:01:09.167 DEBUG [7002]: Database connection successful -- 10:01:09.167 INFO [7002]: _SERVER found -- 10:01:09.167 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 10:01:09.167 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 10:01:09.167 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=kfce4mebt8kvsgers8ltoue9atb7ouvc -- 10:01:09.167 INFO [7002]: QUERY_STRING = /home/howitworks -- 10:01:09.167 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:01:09.202 INFO [7002]: COREGRADE is stopping... -- 10:01:09.202 DEBUG [7002]: Closing database connection -- 10:01:09.202 SQL [7002]: pgsql_close() -- 10:01:09.422 INFO [7002]: COREGRADE is starting... -- 10:01:09.422 INFO [7002]: Version from config: 1.0 -- 10:01:09.422 DEBUG [7002]: Connecting to database... -- 10:01:09.422 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:01:09.422 SQL [7002]: pgsql_db_connect() -- 10:01:09.427 DEBUG [7002]: Database connection successful -- 10:01:09.427 INFO [7002]: _SERVER found -- 10:01:09.427 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 10:01:09.427 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 10:01:09.427 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=kfce4mebt8kvsgers8ltoue9atb7ouvc -- 10:01:09.427 INFO [7002]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:01:09.427 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:01:09.439 INFO [7002]: COREGRADE is stopping... -- 10:01:09.439 DEBUG [7002]: Closing database connection -- 10:01:09.439 SQL [7002]: pgsql_close() -- 10:02:06.324 INFO [7005]: COREGRADE is starting... -- 10:02:06.324 INFO [7005]: Version from config: 1.0 -- 10:02:06.324 DEBUG [7005]: Connecting to database... -- 10:02:06.324 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:02:06.324 SQL [7005]: pgsql_db_connect() -- 10:02:06.328 DEBUG [7005]: Database connection successful -- 10:02:06.328 INFO [7005]: _SERVER found -- 10:02:06.328 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 10:02:06.328 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 10:02:06.328 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=kfce4mebt8kvsgers8ltoue9atb7ouvc -- 10:02:06.329 INFO [7005]: QUERY_STRING = /home/howitworks -- 10:02:06.329 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:02:06.361 INFO [7005]: COREGRADE is stopping... -- 10:02:06.361 DEBUG [7005]: Closing database connection -- 10:02:06.361 SQL [7005]: pgsql_close() -- 10:02:06.663 INFO [7005]: COREGRADE is starting... -- 10:02:06.663 INFO [7005]: Version from config: 1.0 -- 10:02:06.663 DEBUG [7005]: Connecting to database... -- 10:02:06.663 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:02:06.663 SQL [7005]: pgsql_db_connect() -- 10:02:06.667 DEBUG [7005]: Database connection successful -- 10:02:06.667 INFO [7005]: _SERVER found -- 10:02:06.667 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 10:02:06.667 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 10:02:06.667 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=kfce4mebt8kvsgers8ltoue9atb7ouvc -- 10:02:06.667 INFO [7005]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:02:06.667 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:02:06.678 INFO [7005]: COREGRADE is stopping... -- 10:02:06.678 DEBUG [7005]: Closing database connection -- 10:02:06.678 SQL [7005]: pgsql_close() -- 10:03:00.550 INFO [6983]: COREGRADE is starting... -- 10:03:00.550 INFO [6983]: Version from config: 1.0 -- 10:03:00.550 DEBUG [6983]: Connecting to database... -- 10:03:00.550 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:03:00.550 SQL [6983]: pgsql_db_connect() -- 10:03:00.554 DEBUG [6983]: Database connection successful -- 10:03:00.554 INFO [6983]: _SERVER found -- 10:03:00.554 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:03:00.554 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:03:00.554 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=kfce4mebt8kvsgers8ltoue9atb7ouvc -- 10:03:00.554 INFO [6983]: QUERY_STRING = /home/howitworks -- 10:03:00.554 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:03:00.589 INFO [6983]: COREGRADE is stopping... -- 10:03:00.589 DEBUG [6983]: Closing database connection -- 10:03:00.589 SQL [6983]: pgsql_close() -- 10:03:00.851 INFO [6983]: COREGRADE is starting... -- 10:03:00.852 INFO [6983]: Version from config: 1.0 -- 10:03:00.852 DEBUG [6983]: Connecting to database... -- 10:03:00.852 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:03:00.852 SQL [6983]: pgsql_db_connect() -- 10:03:00.856 DEBUG [6983]: Database connection successful -- 10:03:00.856 INFO [6983]: _SERVER found -- 10:03:00.856 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:03:00.856 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:03:00.856 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=kfce4mebt8kvsgers8ltoue9atb7ouvc -- 10:03:00.856 INFO [6983]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:03:00.856 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:03:00.868 INFO [6983]: COREGRADE is stopping... -- 10:03:00.868 DEBUG [6983]: Closing database connection -- 10:03:00.868 SQL [6983]: pgsql_close() -- 10:03:01.504 INFO [6983]: COREGRADE is starting... -- 10:03:01.505 INFO [6983]: Version from config: 1.0 -- 10:03:01.505 DEBUG [6983]: Connecting to database... -- 10:03:01.505 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:03:01.505 SQL [6983]: pgsql_db_connect() -- 10:03:01.509 DEBUG [6983]: Database connection successful -- 10:03:01.509 INFO [6983]: _SERVER found -- 10:03:01.509 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:03:01.509 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:03:01.509 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=kfce4mebt8kvsgers8ltoue9atb7ouvc -- 10:03:01.509 INFO [6983]: QUERY_STRING = /home/howitworks -- 10:03:01.509 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:03:01.543 INFO [6983]: COREGRADE is stopping... -- 10:03:01.543 DEBUG [6983]: Closing database connection -- 10:03:01.543 SQL [6983]: pgsql_close() -- 10:03:01.744 INFO [6983]: COREGRADE is starting... -- 10:03:01.745 INFO [6983]: Version from config: 1.0 -- 10:03:01.745 DEBUG [6983]: Connecting to database... -- 10:03:01.745 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:03:01.745 SQL [6983]: pgsql_db_connect() -- 10:03:01.749 DEBUG [6983]: Database connection successful -- 10:03:01.749 INFO [6983]: _SERVER found -- 10:03:01.749 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:03:01.749 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:03:01.749 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=kfce4mebt8kvsgers8ltoue9atb7ouvc -- 10:03:01.749 INFO [6983]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:03:01.749 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:03:01.761 INFO [6983]: COREGRADE is stopping... -- 10:03:01.761 DEBUG [6983]: Closing database connection -- 10:03:01.761 SQL [6983]: pgsql_close() -- 10:03:35.497 INFO [7006]: COREGRADE is starting... -- 10:03:35.497 INFO [7006]: Version from config: 1.0 -- 10:03:35.497 DEBUG [7006]: Connecting to database... -- 10:03:35.497 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:03:35.497 SQL [7006]: pgsql_db_connect() -- 10:03:35.501 DEBUG [7006]: Database connection successful -- 10:03:35.501 INFO [7006]: _SERVER found -- 10:03:35.501 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 10:03:35.501 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 10:03:35.501 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=kfce4mebt8kvsgers8ltoue9atb7ouvc -- 10:03:35.501 INFO [7006]: QUERY_STRING = /home/howitworks -- 10:03:35.501 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:03:35.536 INFO [7006]: COREGRADE is stopping... -- 10:03:35.536 DEBUG [7006]: Closing database connection -- 10:03:35.536 SQL [7006]: pgsql_close() -- 10:03:35.795 INFO [7006]: COREGRADE is starting... -- 10:03:35.796 INFO [7006]: Version from config: 1.0 -- 10:03:35.796 DEBUG [7006]: Connecting to database... -- 10:03:35.796 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:03:35.796 SQL [7006]: pgsql_db_connect() -- 10:03:35.800 DEBUG [7006]: Database connection successful -- 10:03:35.800 INFO [7006]: _SERVER found -- 10:03:35.800 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 10:03:35.800 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 10:03:35.800 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=kfce4mebt8kvsgers8ltoue9atb7ouvc -- 10:03:35.800 INFO [7006]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:03:35.800 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:03:35.812 INFO [7006]: COREGRADE is stopping... -- 10:03:35.812 DEBUG [7006]: Closing database connection -- 10:03:35.812 SQL [7006]: pgsql_close() -- 10:08:59.940 INFO [6929]: COREGRADE is starting... -- 10:08:59.940 INFO [6929]: Version from config: 1.0 -- 10:08:59.940 DEBUG [6929]: Connecting to database... -- 10:08:59.940 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:08:59.940 SQL [6929]: pgsql_db_connect() -- 10:08:59.944 DEBUG [6929]: Database connection successful -- 10:08:59.944 INFO [6929]: _SERVER found -- 10:08:59.944 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 10:08:59.944 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 10:08:59.944 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=kfce4mebt8kvsgers8ltoue9atb7ouvc -- 10:08:59.944 INFO [6929]: QUERY_STRING = /home/howitworks -- 10:08:59.944 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:08:59.980 INFO [6929]: COREGRADE is stopping... -- 10:08:59.980 DEBUG [6929]: Closing database connection -- 10:08:59.980 SQL [6929]: pgsql_close() -- 10:09:01.072 INFO [6929]: COREGRADE is starting... -- 10:09:01.072 INFO [6929]: Version from config: 1.0 -- 10:09:01.072 DEBUG [6929]: Connecting to database... -- 10:09:01.072 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:01.072 SQL [6929]: pgsql_db_connect() -- 10:09:01.076 DEBUG [6929]: Database connection successful -- 10:09:01.076 INFO [6929]: _SERVER found -- 10:09:01.076 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 10:09:01.076 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 10:09:01.076 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=58rdsffj8nb7s48ho11vhj6b224i571a -- 10:09:01.076 INFO [6929]: QUERY_STRING = /home/howitworks -- 10:09:01.076 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:09:01.111 INFO [6929]: COREGRADE is stopping... -- 10:09:01.111 DEBUG [6929]: Closing database connection -- 10:09:01.111 SQL [6929]: pgsql_close() -- 10:10:12.944 INFO [6925]: COREGRADE is starting... -- 10:10:12.944 INFO [6925]: Version from config: 1.0 -- 10:10:12.944 DEBUG [6925]: Connecting to database... -- 10:10:12.944 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:10:12.944 SQL [6925]: pgsql_db_connect() -- 10:10:12.948 DEBUG [6925]: Database connection successful -- 10:10:12.948 INFO [6925]: _SERVER found -- 10:10:12.948 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 10:10:12.948 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 10:10:12.948 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=58rdsffj8nb7s48ho11vhj6b224i571a -- 10:10:12.948 INFO [6925]: QUERY_STRING = /home/howitworks -- 10:10:12.948 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:10:12.983 INFO [6925]: COREGRADE is stopping... -- 10:10:12.983 DEBUG [6925]: Closing database connection -- 10:10:12.983 SQL [6925]: pgsql_close() -- 10:10:13.170 INFO [6925]: COREGRADE is starting... -- 10:10:13.170 INFO [6925]: Version from config: 1.0 -- 10:10:13.170 DEBUG [6925]: Connecting to database... -- 10:10:13.170 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:10:13.170 SQL [6925]: pgsql_db_connect() -- 10:10:13.174 DEBUG [6925]: Database connection successful -- 10:10:13.174 INFO [6925]: _SERVER found -- 10:10:13.174 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 10:10:13.174 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 10:10:13.174 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=58rdsffj8nb7s48ho11vhj6b224i571a -- 10:10:13.174 INFO [6925]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:10:13.174 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:10:13.186 INFO [6925]: COREGRADE is stopping... -- 10:10:13.186 DEBUG [6925]: Closing database connection -- 10:10:13.186 SQL [6925]: pgsql_close() -- 10:10:13.303 INFO [6928]: COREGRADE is starting... -- 10:10:13.303 INFO [6928]: Version from config: 1.0 -- 10:10:13.303 DEBUG [6928]: Connecting to database... -- 10:10:13.303 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:10:13.303 SQL [6928]: pgsql_db_connect() -- 10:10:13.307 DEBUG [6928]: Database connection successful -- 10:10:13.307 INFO [6928]: _SERVER found -- 10:10:13.307 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 10:10:13.307 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 10:10:13.307 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=58rdsffj8nb7s48ho11vhj6b224i571a -- 10:10:13.307 INFO [6928]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:10:13.307 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:10:13.320 INFO [6928]: COREGRADE is stopping... -- 10:10:13.320 DEBUG [6928]: Closing database connection -- 10:10:13.320 SQL [6928]: pgsql_close() -- 10:11:54.147 INFO [7002]: COREGRADE is starting... -- 10:11:54.147 INFO [7002]: Version from config: 1.0 -- 10:11:54.147 DEBUG [7002]: Connecting to database... -- 10:11:54.147 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:11:54.147 SQL [7002]: pgsql_db_connect() -- 10:11:54.151 DEBUG [7002]: Database connection successful -- 10:11:54.151 INFO [7002]: _SERVER found -- 10:11:54.151 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 10:11:54.151 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 10:11:54.151 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=58rdsffj8nb7s48ho11vhj6b224i571a -- 10:11:54.151 INFO [7002]: QUERY_STRING = /home/howitworks -- 10:11:54.151 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:11:54.186 INFO [7002]: COREGRADE is stopping... -- 10:11:54.186 DEBUG [7002]: Closing database connection -- 10:11:54.186 SQL [7002]: pgsql_close() -- 10:11:54.386 INFO [7002]: COREGRADE is starting... -- 10:11:54.386 INFO [7002]: Version from config: 1.0 -- 10:11:54.386 DEBUG [7002]: Connecting to database... -- 10:11:54.386 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:11:54.386 SQL [7002]: pgsql_db_connect() -- 10:11:54.390 DEBUG [7002]: Database connection successful -- 10:11:54.390 INFO [7002]: _SERVER found -- 10:11:54.390 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 10:11:54.390 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 10:11:54.390 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=58rdsffj8nb7s48ho11vhj6b224i571a -- 10:11:54.390 INFO [7002]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:11:54.390 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:11:54.402 INFO [7002]: COREGRADE is stopping... -- 10:11:54.402 DEBUG [7002]: Closing database connection -- 10:11:54.402 SQL [7002]: pgsql_close() -- 10:11:54.464 INFO [6927]: COREGRADE is starting... -- 10:11:54.464 INFO [6927]: Version from config: 1.0 -- 10:11:54.464 DEBUG [6927]: Connecting to database... -- 10:11:54.464 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:11:54.465 SQL [6927]: pgsql_db_connect() -- 10:11:54.468 DEBUG [6927]: Database connection successful -- 10:11:54.468 INFO [6927]: _SERVER found -- 10:11:54.468 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 10:11:54.468 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 10:11:54.468 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=58rdsffj8nb7s48ho11vhj6b224i571a -- 10:11:54.468 INFO [6927]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:11:54.468 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:11:54.481 INFO [6927]: COREGRADE is stopping... -- 10:11:54.481 DEBUG [6927]: Closing database connection -- 10:11:54.481 SQL [6927]: pgsql_close() -- 10:12:13.945 INFO [7005]: COREGRADE is starting... -- 10:12:13.945 INFO [7005]: Version from config: 1.0 -- 10:12:13.945 DEBUG [7005]: Connecting to database... -- 10:12:13.945 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:12:13.945 SQL [7005]: pgsql_db_connect() -- 10:12:13.949 DEBUG [7005]: Database connection successful -- 10:12:13.949 INFO [7005]: _SERVER found -- 10:12:13.949 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 10:12:13.949 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 10:12:13.949 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=58rdsffj8nb7s48ho11vhj6b224i571a -- 10:12:13.949 INFO [7005]: QUERY_STRING = /home/howitworks -- 10:12:13.949 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:12:13.981 INFO [7005]: COREGRADE is stopping... -- 10:12:13.981 DEBUG [7005]: Closing database connection -- 10:12:13.981 SQL [7005]: pgsql_close() -- 10:12:14.182 INFO [7005]: COREGRADE is starting... -- 10:12:14.182 INFO [7005]: Version from config: 1.0 -- 10:12:14.182 DEBUG [7005]: Connecting to database... -- 10:12:14.182 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:12:14.182 SQL [7005]: pgsql_db_connect() -- 10:12:14.186 DEBUG [7005]: Database connection successful -- 10:12:14.186 INFO [7005]: _SERVER found -- 10:12:14.186 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 10:12:14.186 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 10:12:14.186 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=58rdsffj8nb7s48ho11vhj6b224i571a -- 10:12:14.186 INFO [7005]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:12:14.186 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:12:14.197 INFO [7005]: COREGRADE is stopping... -- 10:12:14.197 DEBUG [7005]: Closing database connection -- 10:12:14.197 SQL [7005]: pgsql_close() -- 10:12:14.242 INFO [7005]: COREGRADE is starting... -- 10:12:14.242 INFO [7005]: Version from config: 1.0 -- 10:12:14.242 DEBUG [7005]: Connecting to database... -- 10:12:14.242 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:12:14.242 SQL [7005]: pgsql_db_connect() -- 10:12:14.246 DEBUG [7005]: Database connection successful -- 10:12:14.246 INFO [7005]: _SERVER found -- 10:12:14.246 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 10:12:14.246 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 10:12:14.246 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=58rdsffj8nb7s48ho11vhj6b224i571a -- 10:12:14.246 INFO [7005]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:12:14.246 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:12:14.257 INFO [7005]: COREGRADE is stopping... -- 10:12:14.257 DEBUG [7005]: Closing database connection -- 10:12:14.257 SQL [7005]: pgsql_close() -- 10:12:22.571 INFO [6983]: COREGRADE is starting... -- 10:12:22.572 INFO [6983]: Version from config: 1.0 -- 10:12:22.572 DEBUG [6983]: Connecting to database... -- 10:12:22.572 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:12:22.572 SQL [6983]: pgsql_db_connect() -- 10:12:22.576 DEBUG [6983]: Database connection successful -- 10:12:22.576 INFO [6983]: _SERVER found -- 10:12:22.576 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:12:22.576 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:12:22.576 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=58rdsffj8nb7s48ho11vhj6b224i571a -- 10:12:22.576 INFO [6983]: QUERY_STRING = /home/howitworks -- 10:12:22.576 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:12:22.610 INFO [6983]: COREGRADE is stopping... -- 10:12:22.610 DEBUG [6983]: Closing database connection -- 10:12:22.610 SQL [6983]: pgsql_close() -- 10:12:22.803 INFO [6983]: COREGRADE is starting... -- 10:12:22.803 INFO [6983]: Version from config: 1.0 -- 10:12:22.803 DEBUG [6983]: Connecting to database... -- 10:12:22.803 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:12:22.803 SQL [6983]: pgsql_db_connect() -- 10:12:22.807 DEBUG [6983]: Database connection successful -- 10:12:22.807 INFO [6983]: _SERVER found -- 10:12:22.807 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:12:22.807 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:12:22.807 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=58rdsffj8nb7s48ho11vhj6b224i571a -- 10:12:22.807 INFO [6983]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:12:22.807 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:12:22.819 INFO [6983]: COREGRADE is stopping... -- 10:12:22.819 DEBUG [6983]: Closing database connection -- 10:12:22.819 SQL [6983]: pgsql_close() -- 10:12:22.874 INFO [6983]: COREGRADE is starting... -- 10:12:22.874 INFO [6983]: Version from config: 1.0 -- 10:12:22.874 DEBUG [6983]: Connecting to database... -- 10:12:22.874 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:12:22.875 SQL [6983]: pgsql_db_connect() -- 10:12:22.879 DEBUG [6983]: Database connection successful -- 10:12:22.879 INFO [6983]: _SERVER found -- 10:12:22.879 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:12:22.879 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:12:22.879 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=58rdsffj8nb7s48ho11vhj6b224i571a -- 10:12:22.879 INFO [6983]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:12:22.879 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:12:22.890 INFO [6983]: COREGRADE is stopping... -- 10:12:22.890 DEBUG [6983]: Closing database connection -- 10:12:22.890 SQL [6983]: pgsql_close() -- 10:12:23.722 INFO [6983]: COREGRADE is starting... -- 10:12:23.722 INFO [6983]: Version from config: 1.0 -- 10:12:23.722 DEBUG [6983]: Connecting to database... -- 10:12:23.722 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:12:23.722 SQL [6983]: pgsql_db_connect() -- 10:12:23.726 DEBUG [6983]: Database connection successful -- 10:12:23.726 INFO [6983]: _SERVER found -- 10:12:23.726 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:12:23.726 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:12:23.726 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=58rdsffj8nb7s48ho11vhj6b224i571a -- 10:12:23.726 INFO [6983]: QUERY_STRING = /home/howitworks -- 10:12:23.726 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:12:23.759 INFO [6983]: COREGRADE is stopping... -- 10:12:23.759 DEBUG [6983]: Closing database connection -- 10:12:23.759 SQL [6983]: pgsql_close() -- 10:12:23.932 INFO [6983]: COREGRADE is starting... -- 10:12:23.932 INFO [6983]: Version from config: 1.0 -- 10:12:23.932 DEBUG [6983]: Connecting to database... -- 10:12:23.932 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:12:23.932 SQL [6983]: pgsql_db_connect() -- 10:12:23.936 DEBUG [6983]: Database connection successful -- 10:12:23.936 INFO [6983]: _SERVER found -- 10:12:23.936 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:12:23.936 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:12:23.936 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=58rdsffj8nb7s48ho11vhj6b224i571a -- 10:12:23.936 INFO [6983]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:12:23.936 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:12:23.948 INFO [6983]: COREGRADE is stopping... -- 10:12:23.948 DEBUG [6983]: Closing database connection -- 10:12:23.948 SQL [6983]: pgsql_close() -- 10:12:24.004 INFO [6983]: COREGRADE is starting... -- 10:12:24.004 INFO [6983]: Version from config: 1.0 -- 10:12:24.004 DEBUG [6983]: Connecting to database... -- 10:12:24.004 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:12:24.004 SQL [6983]: pgsql_db_connect() -- 10:12:24.008 DEBUG [6983]: Database connection successful -- 10:12:24.008 INFO [6983]: _SERVER found -- 10:12:24.008 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:12:24.008 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:12:24.008 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=58rdsffj8nb7s48ho11vhj6b224i571a -- 10:12:24.008 INFO [6983]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:12:24.008 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:12:24.020 INFO [6983]: COREGRADE is stopping... -- 10:12:24.020 DEBUG [6983]: Closing database connection -- 10:12:24.020 SQL [6983]: pgsql_close() -- 10:13:00.639 INFO [7006]: COREGRADE is starting... -- 10:13:00.639 INFO [7006]: Version from config: 1.0 -- 10:13:00.639 DEBUG [7006]: Connecting to database... -- 10:13:00.639 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:13:00.639 SQL [7006]: pgsql_db_connect() -- 10:13:00.643 DEBUG [7006]: Database connection successful -- 10:13:00.643 INFO [7006]: _SERVER found -- 10:13:00.643 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 10:13:00.643 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 10:13:00.643 INFO [7006]: QUERY_STRING = /_cat/indices -- 10:13:00.643 INFO [7006]: HTTP_X_FORWARDED_FOR = 128.199.178.127 -- 10:13:00.656 INFO [7006]: COREGRADE is stopping... -- 10:13:00.656 DEBUG [7006]: Closing database connection -- 10:13:00.656 SQL [7006]: pgsql_close() -- 10:21:40.063 INFO [6929]: COREGRADE is starting... -- 10:21:40.063 INFO [6929]: Version from config: 1.0 -- 10:21:40.063 DEBUG [6929]: Connecting to database... -- 10:21:40.063 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:21:40.063 SQL [6929]: pgsql_db_connect() -- 10:21:40.067 DEBUG [6929]: Database connection successful -- 10:21:40.067 INFO [6929]: _SERVER found -- 10:21:40.067 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 10:21:40.067 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 10:21:40.067 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=58rdsffj8nb7s48ho11vhj6b224i571a -- 10:21:40.067 INFO [6929]: QUERY_STRING = /home/howitworks -- 10:21:40.067 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:21:40.104 INFO [6929]: COREGRADE is stopping... -- 10:21:40.104 DEBUG [6929]: Closing database connection -- 10:21:40.104 SQL [6929]: pgsql_close() -- 10:21:40.309 INFO [6929]: COREGRADE is starting... -- 10:21:40.309 INFO [6929]: Version from config: 1.0 -- 10:21:40.309 DEBUG [6929]: Connecting to database... -- 10:21:40.309 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:21:40.309 SQL [6929]: pgsql_db_connect() -- 10:21:40.313 DEBUG [6929]: Database connection successful -- 10:21:40.313 INFO [6929]: _SERVER found -- 10:21:40.313 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 10:21:40.313 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 10:21:40.313 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=sk8pcdjjopatduqjvm8ulr492g1p3gkf -- 10:21:40.313 INFO [6929]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:21:40.313 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:21:40.326 INFO [6929]: COREGRADE is stopping... -- 10:21:40.326 DEBUG [6929]: Closing database connection -- 10:21:40.326 SQL [6929]: pgsql_close() -- 10:21:40.361 INFO [6925]: COREGRADE is starting... -- 10:21:40.362 INFO [6925]: Version from config: 1.0 -- 10:21:40.362 DEBUG [6925]: Connecting to database... -- 10:21:40.362 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:21:40.362 SQL [6925]: pgsql_db_connect() -- 10:21:40.366 DEBUG [6925]: Database connection successful -- 10:21:40.366 INFO [6925]: _SERVER found -- 10:21:40.366 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 10:21:40.366 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 10:21:40.366 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=sk8pcdjjopatduqjvm8ulr492g1p3gkf -- 10:21:40.366 INFO [6925]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:21:40.366 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:21:40.378 INFO [6925]: COREGRADE is stopping... -- 10:21:40.378 DEBUG [6925]: Closing database connection -- 10:21:40.378 SQL [6925]: pgsql_close() -- 10:21:41.322 INFO [6925]: COREGRADE is starting... -- 10:21:41.322 INFO [6925]: Version from config: 1.0 -- 10:21:41.322 DEBUG [6925]: Connecting to database... -- 10:21:41.322 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:21:41.322 SQL [6925]: pgsql_db_connect() -- 10:21:41.326 DEBUG [6925]: Database connection successful -- 10:21:41.326 INFO [6925]: _SERVER found -- 10:21:41.326 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 10:21:41.326 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 10:21:41.326 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=sk8pcdjjopatduqjvm8ulr492g1p3gkf -- 10:21:41.326 INFO [6925]: QUERY_STRING = -- 10:21:41.326 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:21:41.361 INFO [6925]: COREGRADE is stopping... -- 10:21:41.361 DEBUG [6925]: Closing database connection -- 10:21:41.361 SQL [6925]: pgsql_close() -- 10:21:41.506 INFO [6925]: COREGRADE is starting... -- 10:21:41.506 INFO [6925]: Version from config: 1.0 -- 10:21:41.506 DEBUG [6925]: Connecting to database... -- 10:21:41.506 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:21:41.506 SQL [6925]: pgsql_db_connect() -- 10:21:41.510 DEBUG [6925]: Database connection successful -- 10:21:41.510 INFO [6925]: _SERVER found -- 10:21:41.510 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 10:21:41.510 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 10:21:41.510 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=sk8pcdjjopatduqjvm8ulr492g1p3gkf -- 10:21:41.510 INFO [6925]: QUERY_STRING = /assets/img/footer_1.jpg -- 10:21:41.510 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:21:41.523 INFO [6925]: COREGRADE is stopping... -- 10:21:41.523 DEBUG [6925]: Closing database connection -- 10:21:41.523 SQL [6925]: pgsql_close() -- 10:21:41.563 INFO [6929]: COREGRADE is starting... -- 10:21:41.564 INFO [6929]: Version from config: 1.0 -- 10:21:41.564 DEBUG [6929]: Connecting to database... -- 10:21:41.564 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:21:41.564 SQL [6929]: pgsql_db_connect() -- 10:21:41.568 DEBUG [6929]: Database connection successful -- 10:21:41.568 INFO [6929]: _SERVER found -- 10:21:41.568 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 10:21:41.568 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 10:21:41.568 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=sk8pcdjjopatduqjvm8ulr492g1p3gkf -- 10:21:41.568 INFO [6929]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 10:21:41.568 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:21:41.580 INFO [6929]: COREGRADE is stopping... -- 10:21:41.580 DEBUG [6929]: Closing database connection -- 10:21:41.580 SQL [6929]: pgsql_close() -- 10:21:57.004 INFO [6928]: COREGRADE is starting... -- 10:21:57.004 INFO [6928]: Version from config: 1.0 -- 10:21:57.004 DEBUG [6928]: Connecting to database... -- 10:21:57.004 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:21:57.004 SQL [6928]: pgsql_db_connect() -- 10:21:57.008 DEBUG [6928]: Database connection successful -- 10:21:57.008 INFO [6928]: _SERVER found -- 10:21:57.008 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 10:21:57.008 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 10:21:57.008 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=sk8pcdjjopatduqjvm8ulr492g1p3gkf; _gat_gtag_UA_54829827_2=1 -- 10:21:57.008 INFO [6928]: QUERY_STRING = /home/aboutus -- 10:21:57.008 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:21:57.043 INFO [6928]: COREGRADE is stopping... -- 10:21:57.044 DEBUG [6928]: Closing database connection -- 10:21:57.044 SQL [6928]: pgsql_close() -- 10:21:57.244 INFO [6928]: COREGRADE is starting... -- 10:21:57.245 INFO [6928]: Version from config: 1.0 -- 10:21:57.245 DEBUG [6928]: Connecting to database... -- 10:21:57.245 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:21:57.245 SQL [6928]: pgsql_db_connect() -- 10:21:57.249 DEBUG [6928]: Database connection successful -- 10:21:57.249 INFO [6928]: _SERVER found -- 10:21:57.249 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 10:21:57.249 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 10:21:57.249 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=sk8pcdjjopatduqjvm8ulr492g1p3gkf; _gat_gtag_UA_54829827_2=1 -- 10:21:57.249 INFO [6928]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:21:57.249 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:21:57.261 INFO [6928]: COREGRADE is stopping... -- 10:21:57.261 DEBUG [6928]: Closing database connection -- 10:21:57.261 SQL [6928]: pgsql_close() -- 10:21:57.300 INFO [6928]: COREGRADE is starting... -- 10:21:57.301 INFO [6928]: Version from config: 1.0 -- 10:21:57.301 DEBUG [6928]: Connecting to database... -- 10:21:57.301 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:21:57.301 SQL [6928]: pgsql_db_connect() -- 10:21:57.304 DEBUG [6928]: Database connection successful -- 10:21:57.304 INFO [6928]: _SERVER found -- 10:21:57.304 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 10:21:57.304 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 10:21:57.304 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=sk8pcdjjopatduqjvm8ulr492g1p3gkf; _gat_gtag_UA_54829827_2=1 -- 10:21:57.304 INFO [6928]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:21:57.304 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:21:57.317 INFO [6928]: COREGRADE is stopping... -- 10:21:57.317 DEBUG [6928]: Closing database connection -- 10:21:57.317 SQL [6928]: pgsql_close() -- 10:22:12.291 INFO [7002]: COREGRADE is starting... -- 10:22:12.291 INFO [7002]: Version from config: 1.0 -- 10:22:12.291 DEBUG [7002]: Connecting to database... -- 10:22:12.291 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:22:12.291 SQL [7002]: pgsql_db_connect() -- 10:22:12.295 DEBUG [7002]: Database connection successful -- 10:22:12.295 INFO [7002]: _SERVER found -- 10:22:12.295 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 10:22:12.295 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 10:22:12.295 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=sk8pcdjjopatduqjvm8ulr492g1p3gkf; _gat_gtag_UA_54829827_2=1 -- 10:22:12.295 INFO [7002]: QUERY_STRING = -- 10:22:12.295 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:22:12.337 INFO [7002]: COREGRADE is stopping... -- 10:22:12.337 DEBUG [7002]: Closing database connection -- 10:22:12.337 SQL [7002]: pgsql_close() -- 10:22:12.589 INFO [7002]: COREGRADE is starting... -- 10:22:12.589 INFO [7002]: Version from config: 1.0 -- 10:22:12.589 DEBUG [7002]: Connecting to database... -- 10:22:12.589 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:22:12.589 SQL [7002]: pgsql_db_connect() -- 10:22:12.593 DEBUG [7002]: Database connection successful -- 10:22:12.593 INFO [7002]: _SERVER found -- 10:22:12.593 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 10:22:12.593 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 10:22:12.593 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=sk8pcdjjopatduqjvm8ulr492g1p3gkf; _gat_gtag_UA_54829827_2=1 -- 10:22:12.593 INFO [7002]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 10:22:12.593 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:22:12.604 INFO [7002]: COREGRADE is stopping... -- 10:22:12.605 DEBUG [7002]: Closing database connection -- 10:22:12.605 SQL [7002]: pgsql_close() -- 10:22:15.220 INFO [7002]: COREGRADE is starting... -- 10:22:15.220 INFO [7002]: Version from config: 1.0 -- 10:22:15.220 DEBUG [7002]: Connecting to database... -- 10:22:15.220 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:22:15.220 SQL [7002]: pgsql_db_connect() -- 10:22:15.224 DEBUG [7002]: Database connection successful -- 10:22:15.224 INFO [7002]: _SERVER found -- 10:22:15.224 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 10:22:15.224 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 10:22:15.224 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=sk8pcdjjopatduqjvm8ulr492g1p3gkf; _gat_gtag_UA_54829827_2=1 -- 10:22:15.224 INFO [7002]: QUERY_STRING = /home/privacy -- 10:22:15.224 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:22:15.256 INFO [7002]: COREGRADE is stopping... -- 10:22:15.256 DEBUG [7002]: Closing database connection -- 10:22:15.256 SQL [7002]: pgsql_close() -- 10:22:15.454 INFO [7002]: COREGRADE is starting... -- 10:22:15.455 INFO [7002]: Version from config: 1.0 -- 10:22:15.455 DEBUG [7002]: Connecting to database... -- 10:22:15.455 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:22:15.455 SQL [7002]: pgsql_db_connect() -- 10:22:15.458 DEBUG [7002]: Database connection successful -- 10:22:15.459 INFO [7002]: _SERVER found -- 10:22:15.459 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 10:22:15.459 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 10:22:15.459 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=sk8pcdjjopatduqjvm8ulr492g1p3gkf; _gat_gtag_UA_54829827_2=1 -- 10:22:15.459 INFO [7002]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:22:15.459 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:22:15.470 INFO [7002]: COREGRADE is stopping... -- 10:22:15.470 DEBUG [7002]: Closing database connection -- 10:22:15.470 SQL [7002]: pgsql_close() -- 10:22:15.523 INFO [7002]: COREGRADE is starting... -- 10:22:15.524 INFO [7002]: Version from config: 1.0 -- 10:22:15.524 DEBUG [7002]: Connecting to database... -- 10:22:15.524 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:22:15.524 SQL [7002]: pgsql_db_connect() -- 10:22:15.528 DEBUG [7002]: Database connection successful -- 10:22:15.528 INFO [7002]: _SERVER found -- 10:22:15.528 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 10:22:15.528 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 10:22:15.528 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=sk8pcdjjopatduqjvm8ulr492g1p3gkf; _gat_gtag_UA_54829827_2=1 -- 10:22:15.528 INFO [7002]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:22:15.528 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:22:15.539 INFO [7002]: COREGRADE is stopping... -- 10:22:15.539 DEBUG [7002]: Closing database connection -- 10:22:15.539 SQL [7002]: pgsql_close() -- 10:24:08.279 INFO [6927]: COREGRADE is starting... -- 10:24:08.279 INFO [6927]: Version from config: 1.0 -- 10:24:08.279 DEBUG [6927]: Connecting to database... -- 10:24:08.279 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:24:08.279 SQL [6927]: pgsql_db_connect() -- 10:24:08.283 DEBUG [6927]: Database connection successful -- 10:24:08.283 INFO [6927]: _SERVER found -- 10:24:08.283 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 10:24:08.283 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 10:24:08.283 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=sk8pcdjjopatduqjvm8ulr492g1p3gkf -- 10:24:08.283 INFO [6927]: QUERY_STRING = /home/privacy -- 10:24:08.283 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:24:08.319 INFO [6927]: COREGRADE is stopping... -- 10:24:08.319 DEBUG [6927]: Closing database connection -- 10:24:08.319 SQL [6927]: pgsql_close() -- 10:24:08.525 INFO [6927]: COREGRADE is starting... -- 10:24:08.525 INFO [6927]: Version from config: 1.0 -- 10:24:08.525 DEBUG [6927]: Connecting to database... -- 10:24:08.525 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:24:08.525 SQL [6927]: pgsql_db_connect() -- 10:24:08.529 DEBUG [6927]: Database connection successful -- 10:24:08.529 INFO [6927]: _SERVER found -- 10:24:08.529 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 10:24:08.529 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 10:24:08.529 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=sk8pcdjjopatduqjvm8ulr492g1p3gkf -- 10:24:08.529 INFO [6927]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:24:08.529 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:24:08.542 INFO [6927]: COREGRADE is stopping... -- 10:24:08.542 DEBUG [6927]: Closing database connection -- 10:24:08.542 SQL [6927]: pgsql_close() -- 10:24:08.618 INFO [6927]: COREGRADE is starting... -- 10:24:08.618 INFO [6927]: Version from config: 1.0 -- 10:24:08.618 DEBUG [6927]: Connecting to database... -- 10:24:08.618 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:24:08.618 SQL [6927]: pgsql_db_connect() -- 10:24:08.623 DEBUG [6927]: Database connection successful -- 10:24:08.623 INFO [6927]: _SERVER found -- 10:24:08.623 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 10:24:08.623 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 10:24:08.623 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=sk8pcdjjopatduqjvm8ulr492g1p3gkf -- 10:24:08.623 INFO [6927]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:24:08.623 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:24:08.635 INFO [6927]: COREGRADE is stopping... -- 10:24:08.635 DEBUG [6927]: Closing database connection -- 10:24:08.635 SQL [6927]: pgsql_close() -- 10:24:31.193 INFO [7005]: COREGRADE is starting... -- 10:24:31.193 INFO [7005]: Version from config: 1.0 -- 10:24:31.193 DEBUG [7005]: Connecting to database... -- 10:24:31.193 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:24:31.193 SQL [7005]: pgsql_db_connect() -- 10:24:31.197 DEBUG [7005]: Database connection successful -- 10:24:31.197 INFO [7005]: _SERVER found -- 10:24:31.197 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 10:24:31.197 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 10:24:31.197 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=sk8pcdjjopatduqjvm8ulr492g1p3gkf -- 10:24:31.197 INFO [7005]: QUERY_STRING = /home/privacy -- 10:24:31.197 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:24:31.229 INFO [7005]: COREGRADE is stopping... -- 10:24:31.229 DEBUG [7005]: Closing database connection -- 10:24:31.229 SQL [7005]: pgsql_close() -- 10:24:31.407 INFO [7005]: COREGRADE is starting... -- 10:24:31.408 INFO [7005]: Version from config: 1.0 -- 10:24:31.408 DEBUG [7005]: Connecting to database... -- 10:24:31.408 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:24:31.408 SQL [7005]: pgsql_db_connect() -- 10:24:31.412 DEBUG [7005]: Database connection successful -- 10:24:31.412 INFO [7005]: _SERVER found -- 10:24:31.412 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 10:24:31.412 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 10:24:31.412 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=sk8pcdjjopatduqjvm8ulr492g1p3gkf -- 10:24:31.412 INFO [7005]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:24:31.412 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:24:31.423 INFO [7005]: COREGRADE is stopping... -- 10:24:31.423 DEBUG [7005]: Closing database connection -- 10:24:31.423 SQL [7005]: pgsql_close() -- 10:24:31.478 INFO [7004]: COREGRADE is starting... -- 10:24:31.478 INFO [7004]: Version from config: 1.0 -- 10:24:31.478 DEBUG [7004]: Connecting to database... -- 10:24:31.478 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:24:31.478 SQL [7004]: pgsql_db_connect() -- 10:24:31.482 DEBUG [7004]: Database connection successful -- 10:24:31.482 INFO [7004]: _SERVER found -- 10:24:31.482 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 10:24:31.482 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 10:24:31.482 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=sk8pcdjjopatduqjvm8ulr492g1p3gkf -- 10:24:31.482 INFO [7004]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:24:31.482 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:24:31.495 INFO [7004]: COREGRADE is stopping... -- 10:24:31.495 DEBUG [7004]: Closing database connection -- 10:24:31.495 SQL [7004]: pgsql_close() -- 10:25:21.159 INFO [6983]: COREGRADE is starting... -- 10:25:21.160 INFO [6983]: Version from config: 1.0 -- 10:25:21.160 DEBUG [6983]: Connecting to database... -- 10:25:21.160 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:25:21.160 SQL [6983]: pgsql_db_connect() -- 10:25:21.164 DEBUG [6983]: Database connection successful -- 10:25:21.164 INFO [6983]: _SERVER found -- 10:25:21.164 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:25:21.164 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:25:21.164 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=sk8pcdjjopatduqjvm8ulr492g1p3gkf -- 10:25:21.164 INFO [6983]: QUERY_STRING = /home/privacy -- 10:25:21.164 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:25:21.201 INFO [6983]: COREGRADE is stopping... -- 10:25:21.201 DEBUG [6983]: Closing database connection -- 10:25:21.201 SQL [6983]: pgsql_close() -- 10:25:21.379 INFO [6983]: COREGRADE is starting... -- 10:25:21.379 INFO [6983]: Version from config: 1.0 -- 10:25:21.379 DEBUG [6983]: Connecting to database... -- 10:25:21.379 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:25:21.379 SQL [6983]: pgsql_db_connect() -- 10:25:21.383 DEBUG [6983]: Database connection successful -- 10:25:21.383 INFO [6983]: _SERVER found -- 10:25:21.383 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:25:21.383 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:25:21.383 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=sk8pcdjjopatduqjvm8ulr492g1p3gkf -- 10:25:21.383 INFO [6983]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:25:21.383 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:25:21.395 INFO [6983]: COREGRADE is stopping... -- 10:25:21.395 DEBUG [6983]: Closing database connection -- 10:25:21.395 SQL [6983]: pgsql_close() -- 10:25:21.452 INFO [6983]: COREGRADE is starting... -- 10:25:21.453 INFO [6983]: Version from config: 1.0 -- 10:25:21.453 DEBUG [6983]: Connecting to database... -- 10:25:21.453 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:25:21.453 SQL [6983]: pgsql_db_connect() -- 10:25:21.457 DEBUG [6983]: Database connection successful -- 10:25:21.457 INFO [6983]: _SERVER found -- 10:25:21.457 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:25:21.457 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:25:21.457 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=sk8pcdjjopatduqjvm8ulr492g1p3gkf -- 10:25:21.457 INFO [6983]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:25:21.457 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:25:21.468 INFO [6983]: COREGRADE is stopping... -- 10:25:21.468 DEBUG [6983]: Closing database connection -- 10:25:21.468 SQL [6983]: pgsql_close() -- 10:26:13.238 INFO [6925]: COREGRADE is starting... -- 10:26:13.239 INFO [6925]: Version from config: 1.0 -- 10:26:13.239 DEBUG [6925]: Connecting to database... -- 10:26:13.239 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:26:13.239 SQL [6925]: pgsql_db_connect() -- 10:26:13.243 DEBUG [6925]: Database connection successful -- 10:26:13.243 INFO [6925]: _SERVER found -- 10:26:13.243 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 10:26:13.243 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 10:26:13.243 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=sk8pcdjjopatduqjvm8ulr492g1p3gkf -- 10:26:13.243 INFO [6925]: QUERY_STRING = /home/privacy -- 10:26:13.243 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:26:13.278 INFO [6925]: COREGRADE is stopping... -- 10:26:13.278 DEBUG [6925]: Closing database connection -- 10:26:13.278 SQL [6925]: pgsql_close() -- 10:26:13.444 INFO [6925]: COREGRADE is starting... -- 10:26:13.444 INFO [6925]: Version from config: 1.0 -- 10:26:13.444 DEBUG [6925]: Connecting to database... -- 10:26:13.444 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:26:13.444 SQL [6925]: pgsql_db_connect() -- 10:26:13.448 DEBUG [6925]: Database connection successful -- 10:26:13.448 INFO [6925]: _SERVER found -- 10:26:13.448 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 10:26:13.448 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 10:26:13.448 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=sk8pcdjjopatduqjvm8ulr492g1p3gkf -- 10:26:13.448 INFO [6925]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:26:13.448 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:26:13.460 INFO [6925]: COREGRADE is stopping... -- 10:26:13.460 DEBUG [6925]: Closing database connection -- 10:26:13.460 SQL [6925]: pgsql_close() -- 10:26:13.539 INFO [6925]: COREGRADE is starting... -- 10:26:13.539 INFO [6925]: Version from config: 1.0 -- 10:26:13.539 DEBUG [6925]: Connecting to database... -- 10:26:13.539 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:26:13.539 SQL [6925]: pgsql_db_connect() -- 10:26:13.543 DEBUG [6925]: Database connection successful -- 10:26:13.543 INFO [6925]: _SERVER found -- 10:26:13.543 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 10:26:13.543 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 10:26:13.543 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=sk8pcdjjopatduqjvm8ulr492g1p3gkf -- 10:26:13.543 INFO [6925]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:26:13.543 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:26:13.557 INFO [6925]: COREGRADE is stopping... -- 10:26:13.558 DEBUG [6925]: Closing database connection -- 10:26:13.558 SQL [6925]: pgsql_close() -- 10:26:44.484 INFO [6928]: COREGRADE is starting... -- 10:26:44.484 INFO [6928]: Version from config: 1.0 -- 10:26:44.484 DEBUG [6928]: Connecting to database... -- 10:26:44.484 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:26:44.484 SQL [6928]: pgsql_db_connect() -- 10:26:44.488 DEBUG [6928]: Database connection successful -- 10:26:44.488 INFO [6928]: _SERVER found -- 10:26:44.488 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 10:26:44.488 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 10:26:44.488 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=sk8pcdjjopatduqjvm8ulr492g1p3gkf -- 10:26:44.488 INFO [6928]: QUERY_STRING = /home/privacy -- 10:26:44.488 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:26:44.524 INFO [6928]: COREGRADE is stopping... -- 10:26:44.524 DEBUG [6928]: Closing database connection -- 10:26:44.524 SQL [6928]: pgsql_close() -- 10:26:44.692 INFO [6928]: COREGRADE is starting... -- 10:26:44.693 INFO [6928]: Version from config: 1.0 -- 10:26:44.693 DEBUG [6928]: Connecting to database... -- 10:26:44.693 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:26:44.693 SQL [6928]: pgsql_db_connect() -- 10:26:44.697 DEBUG [6928]: Database connection successful -- 10:26:44.697 INFO [6928]: _SERVER found -- 10:26:44.697 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 10:26:44.697 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 10:26:44.697 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c -- 10:26:44.697 INFO [6928]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:26:44.697 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:26:44.708 INFO [6928]: COREGRADE is stopping... -- 10:26:44.708 DEBUG [6928]: Closing database connection -- 10:26:44.708 SQL [6928]: pgsql_close() -- 10:26:44.805 INFO [6928]: COREGRADE is starting... -- 10:26:44.805 INFO [6928]: Version from config: 1.0 -- 10:26:44.805 DEBUG [6928]: Connecting to database... -- 10:26:44.805 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:26:44.805 SQL [6928]: pgsql_db_connect() -- 10:26:44.809 DEBUG [6928]: Database connection successful -- 10:26:44.809 INFO [6928]: _SERVER found -- 10:26:44.809 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 10:26:44.809 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 10:26:44.809 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c -- 10:26:44.809 INFO [6928]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:26:44.809 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:26:44.820 INFO [6928]: COREGRADE is stopping... -- 10:26:44.820 DEBUG [6928]: Closing database connection -- 10:26:44.820 SQL [6928]: pgsql_close() -- 10:27:35.320 INFO [7007]: COREGRADE is starting... -- 10:27:35.321 INFO [7007]: Version from config: 1.0 -- 10:27:35.321 DEBUG [7007]: Connecting to database... -- 10:27:35.321 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:27:35.321 SQL [7007]: pgsql_db_connect() -- 10:27:35.325 DEBUG [7007]: Database connection successful -- 10:27:35.325 INFO [7007]: _SERVER found -- 10:27:35.325 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 10:27:35.325 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 10:27:35.325 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c -- 10:27:35.325 INFO [7007]: QUERY_STRING = /home/privacy -- 10:27:35.325 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:27:35.358 INFO [7007]: COREGRADE is stopping... -- 10:27:35.358 DEBUG [7007]: Closing database connection -- 10:27:35.358 SQL [7007]: pgsql_close() -- 10:27:35.537 INFO [7007]: COREGRADE is starting... -- 10:27:35.538 INFO [7007]: Version from config: 1.0 -- 10:27:35.538 DEBUG [7007]: Connecting to database... -- 10:27:35.538 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:27:35.538 SQL [7007]: pgsql_db_connect() -- 10:27:35.542 DEBUG [7007]: Database connection successful -- 10:27:35.542 INFO [7007]: _SERVER found -- 10:27:35.542 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 10:27:35.542 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 10:27:35.542 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c -- 10:27:35.542 INFO [7007]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:27:35.542 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:27:35.553 INFO [7007]: COREGRADE is stopping... -- 10:27:35.553 DEBUG [7007]: Closing database connection -- 10:27:35.553 SQL [7007]: pgsql_close() -- 10:27:35.602 INFO [6927]: COREGRADE is starting... -- 10:27:35.602 INFO [6927]: Version from config: 1.0 -- 10:27:35.602 DEBUG [6927]: Connecting to database... -- 10:27:35.602 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:27:35.602 SQL [6927]: pgsql_db_connect() -- 10:27:35.606 DEBUG [6927]: Database connection successful -- 10:27:35.606 INFO [6927]: _SERVER found -- 10:27:35.606 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 10:27:35.606 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 10:27:35.606 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c -- 10:27:35.606 INFO [6927]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:27:35.606 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:27:35.619 INFO [6927]: COREGRADE is stopping... -- 10:27:35.619 DEBUG [6927]: Closing database connection -- 10:27:35.619 SQL [6927]: pgsql_close() -- 10:28:16.310 INFO [7005]: COREGRADE is starting... -- 10:28:16.310 INFO [7005]: Version from config: 1.0 -- 10:28:16.310 DEBUG [7005]: Connecting to database... -- 10:28:16.310 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:28:16.310 SQL [7005]: pgsql_db_connect() -- 10:28:16.314 DEBUG [7005]: Database connection successful -- 10:28:16.315 INFO [7005]: _SERVER found -- 10:28:16.315 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 10:28:16.315 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 10:28:16.315 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c -- 10:28:16.315 INFO [7005]: QUERY_STRING = -- 10:28:16.315 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:28:16.352 INFO [7005]: COREGRADE is stopping... -- 10:28:16.352 DEBUG [7005]: Closing database connection -- 10:28:16.352 SQL [7005]: pgsql_close() -- 10:28:16.566 INFO [7005]: COREGRADE is starting... -- 10:28:16.566 INFO [7005]: Version from config: 1.0 -- 10:28:16.566 DEBUG [7005]: Connecting to database... -- 10:28:16.566 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:28:16.566 SQL [7005]: pgsql_db_connect() -- 10:28:16.570 DEBUG [7005]: Database connection successful -- 10:28:16.570 INFO [7005]: _SERVER found -- 10:28:16.570 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 10:28:16.570 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 10:28:16.570 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c -- 10:28:16.570 INFO [7005]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 10:28:16.570 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:28:16.582 INFO [7005]: COREGRADE is stopping... -- 10:28:16.582 DEBUG [7005]: Closing database connection -- 10:28:16.582 SQL [7005]: pgsql_close() -- 10:28:18.781 INFO [7005]: COREGRADE is starting... -- 10:28:18.782 INFO [7005]: Version from config: 1.0 -- 10:28:18.782 DEBUG [7005]: Connecting to database... -- 10:28:18.782 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:28:18.782 SQL [7005]: pgsql_db_connect() -- 10:28:18.786 DEBUG [7005]: Database connection successful -- 10:28:18.786 INFO [7005]: _SERVER found -- 10:28:18.786 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 10:28:18.786 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 10:28:18.786 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:28:18.786 INFO [7005]: QUERY_STRING = /home/security -- 10:28:18.786 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:28:18.817 INFO [7005]: COREGRADE is stopping... -- 10:28:18.817 DEBUG [7005]: Closing database connection -- 10:28:18.817 SQL [7005]: pgsql_close() -- 10:28:19.004 INFO [7005]: COREGRADE is starting... -- 10:28:19.004 INFO [7005]: Version from config: 1.0 -- 10:28:19.004 DEBUG [7005]: Connecting to database... -- 10:28:19.004 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:28:19.004 SQL [7005]: pgsql_db_connect() -- 10:28:19.008 DEBUG [7005]: Database connection successful -- 10:28:19.008 INFO [7005]: _SERVER found -- 10:28:19.008 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 10:28:19.008 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 10:28:19.008 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:28:19.008 INFO [7005]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:28:19.008 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:28:19.019 INFO [7005]: COREGRADE is stopping... -- 10:28:19.019 DEBUG [7005]: Closing database connection -- 10:28:19.019 SQL [7005]: pgsql_close() -- 10:28:19.118 INFO [7005]: COREGRADE is starting... -- 10:28:19.118 INFO [7005]: Version from config: 1.0 -- 10:28:19.118 DEBUG [7005]: Connecting to database... -- 10:28:19.118 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:28:19.118 SQL [7005]: pgsql_db_connect() -- 10:28:19.122 DEBUG [7005]: Database connection successful -- 10:28:19.122 INFO [7005]: _SERVER found -- 10:28:19.122 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 10:28:19.122 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 10:28:19.122 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:28:19.122 INFO [7005]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:28:19.122 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:28:19.133 INFO [7005]: COREGRADE is stopping... -- 10:28:19.133 DEBUG [7005]: Closing database connection -- 10:28:19.133 SQL [7005]: pgsql_close() -- 10:28:21.740 INFO [7005]: COREGRADE is starting... -- 10:28:21.740 INFO [7005]: Version from config: 1.0 -- 10:28:21.740 DEBUG [7005]: Connecting to database... -- 10:28:21.740 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:28:21.740 SQL [7005]: pgsql_db_connect() -- 10:28:21.744 DEBUG [7005]: Database connection successful -- 10:28:21.744 INFO [7005]: _SERVER found -- 10:28:21.744 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 10:28:21.744 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 10:28:21.744 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:28:21.744 INFO [7005]: QUERY_STRING = -- 10:28:21.744 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:28:21.775 INFO [7005]: COREGRADE is stopping... -- 10:28:21.775 DEBUG [7005]: Closing database connection -- 10:28:21.775 SQL [7005]: pgsql_close() -- 10:28:21.966 INFO [7005]: COREGRADE is starting... -- 10:28:21.966 INFO [7005]: Version from config: 1.0 -- 10:28:21.966 DEBUG [7005]: Connecting to database... -- 10:28:21.966 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:28:21.966 SQL [7005]: pgsql_db_connect() -- 10:28:21.970 DEBUG [7005]: Database connection successful -- 10:28:21.970 INFO [7005]: _SERVER found -- 10:28:21.970 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 10:28:21.970 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 10:28:21.970 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:28:21.970 INFO [7005]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 10:28:21.970 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:28:21.981 INFO [7005]: COREGRADE is stopping... -- 10:28:21.981 DEBUG [7005]: Closing database connection -- 10:28:21.981 SQL [7005]: pgsql_close() -- 10:28:25.088 INFO [7005]: COREGRADE is starting... -- 10:28:25.088 INFO [7005]: Version from config: 1.0 -- 10:28:25.088 DEBUG [7005]: Connecting to database... -- 10:28:25.088 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:28:25.088 SQL [7005]: pgsql_db_connect() -- 10:28:25.092 DEBUG [7005]: Database connection successful -- 10:28:25.092 INFO [7005]: _SERVER found -- 10:28:25.092 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 10:28:25.092 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 10:28:25.092 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:28:25.092 INFO [7005]: QUERY_STRING = /home/aboutus -- 10:28:25.092 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:28:25.123 INFO [7005]: COREGRADE is stopping... -- 10:28:25.123 DEBUG [7005]: Closing database connection -- 10:28:25.123 SQL [7005]: pgsql_close() -- 10:28:25.289 INFO [7005]: COREGRADE is starting... -- 10:28:25.289 INFO [7005]: Version from config: 1.0 -- 10:28:25.289 DEBUG [7005]: Connecting to database... -- 10:28:25.289 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:28:25.289 SQL [7005]: pgsql_db_connect() -- 10:28:25.293 DEBUG [7005]: Database connection successful -- 10:28:25.293 INFO [7005]: _SERVER found -- 10:28:25.293 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 10:28:25.293 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 10:28:25.293 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:28:25.293 INFO [7005]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:28:25.293 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:28:25.304 INFO [7005]: COREGRADE is stopping... -- 10:28:25.305 DEBUG [7005]: Closing database connection -- 10:28:25.305 SQL [7005]: pgsql_close() -- 10:28:25.356 INFO [7005]: COREGRADE is starting... -- 10:28:25.357 INFO [7005]: Version from config: 1.0 -- 10:28:25.357 DEBUG [7005]: Connecting to database... -- 10:28:25.357 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:28:25.357 SQL [7005]: pgsql_db_connect() -- 10:28:25.361 DEBUG [7005]: Database connection successful -- 10:28:25.361 INFO [7005]: _SERVER found -- 10:28:25.361 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 10:28:25.361 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 10:28:25.361 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:28:25.361 INFO [7005]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:28:25.361 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:28:25.372 INFO [7005]: COREGRADE is stopping... -- 10:28:25.372 DEBUG [7005]: Closing database connection -- 10:28:25.372 SQL [7005]: pgsql_close() -- 10:28:54.606 INFO [7004]: COREGRADE is starting... -- 10:28:54.607 INFO [7004]: Version from config: 1.0 -- 10:28:54.607 DEBUG [7004]: Connecting to database... -- 10:28:54.607 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:28:54.607 SQL [7004]: pgsql_db_connect() -- 10:28:54.611 DEBUG [7004]: Database connection successful -- 10:28:54.611 INFO [7004]: _SERVER found -- 10:28:54.611 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 10:28:54.611 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 10:28:54.611 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:28:54.611 INFO [7004]: QUERY_STRING = /home/aboutus -- 10:28:54.611 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:28:54.643 INFO [7004]: COREGRADE is stopping... -- 10:28:54.643 DEBUG [7004]: Closing database connection -- 10:28:54.643 SQL [7004]: pgsql_close() -- 10:28:54.824 INFO [7004]: COREGRADE is starting... -- 10:28:54.824 INFO [7004]: Version from config: 1.0 -- 10:28:54.824 DEBUG [7004]: Connecting to database... -- 10:28:54.825 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:28:54.825 SQL [7004]: pgsql_db_connect() -- 10:28:54.829 DEBUG [7004]: Database connection successful -- 10:28:54.829 INFO [7004]: _SERVER found -- 10:28:54.829 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 10:28:54.829 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 10:28:54.829 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:28:54.829 INFO [7004]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:28:54.829 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:28:54.840 INFO [7004]: COREGRADE is stopping... -- 10:28:54.840 DEBUG [7004]: Closing database connection -- 10:28:54.840 SQL [7004]: pgsql_close() -- 10:28:54.908 INFO [7006]: COREGRADE is starting... -- 10:28:54.909 INFO [7006]: Version from config: 1.0 -- 10:28:54.909 DEBUG [7006]: Connecting to database... -- 10:28:54.909 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:28:54.909 SQL [7006]: pgsql_db_connect() -- 10:28:54.913 DEBUG [7006]: Database connection successful -- 10:28:54.913 INFO [7006]: _SERVER found -- 10:28:54.913 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 10:28:54.913 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 10:28:54.913 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:28:54.913 INFO [7006]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:28:54.913 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:28:54.925 INFO [7006]: COREGRADE is stopping... -- 10:28:54.925 DEBUG [7006]: Closing database connection -- 10:28:54.925 SQL [7006]: pgsql_close() -- 10:28:56.924 INFO [7006]: COREGRADE is starting... -- 10:28:56.924 INFO [7006]: Version from config: 1.0 -- 10:28:56.924 DEBUG [7006]: Connecting to database... -- 10:28:56.924 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:28:56.924 SQL [7006]: pgsql_db_connect() -- 10:28:56.928 DEBUG [7006]: Database connection successful -- 10:28:56.928 INFO [7006]: _SERVER found -- 10:28:56.928 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 10:28:56.928 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 10:28:56.928 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:28:56.928 INFO [7006]: QUERY_STRING = -- 10:28:56.928 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:28:56.970 INFO [7006]: COREGRADE is stopping... -- 10:28:56.970 DEBUG [7006]: Closing database connection -- 10:28:56.970 SQL [7006]: pgsql_close() -- 10:28:57.126 INFO [7006]: COREGRADE is starting... -- 10:28:57.126 INFO [7006]: Version from config: 1.0 -- 10:28:57.126 DEBUG [7006]: Connecting to database... -- 10:28:57.127 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:28:57.127 SQL [7006]: pgsql_db_connect() -- 10:28:57.130 DEBUG [7006]: Database connection successful -- 10:28:57.131 INFO [7006]: _SERVER found -- 10:28:57.131 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 10:28:57.131 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 10:28:57.131 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:28:57.131 INFO [7006]: QUERY_STRING = /assets/img/footer_1.jpg -- 10:28:57.131 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:28:57.143 INFO [7006]: COREGRADE is stopping... -- 10:28:57.143 DEBUG [7006]: Closing database connection -- 10:28:57.143 SQL [7006]: pgsql_close() -- 10:28:57.168 INFO [7006]: COREGRADE is starting... -- 10:28:57.168 INFO [7006]: Version from config: 1.0 -- 10:28:57.168 DEBUG [7006]: Connecting to database... -- 10:28:57.168 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:28:57.168 SQL [7006]: pgsql_db_connect() -- 10:28:57.172 DEBUG [7006]: Database connection successful -- 10:28:57.172 INFO [7006]: _SERVER found -- 10:28:57.172 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 10:28:57.172 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 10:28:57.172 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:28:57.172 INFO [7006]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 10:28:57.172 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:28:57.184 INFO [7006]: COREGRADE is stopping... -- 10:28:57.184 DEBUG [7006]: Closing database connection -- 10:28:57.184 SQL [7006]: pgsql_close() -- 10:29:03.732 INFO [6983]: COREGRADE is starting... -- 10:29:03.732 INFO [6983]: Version from config: 1.0 -- 10:29:03.732 DEBUG [6983]: Connecting to database... -- 10:29:03.732 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:03.732 SQL [6983]: pgsql_db_connect() -- 10:29:03.737 DEBUG [6983]: Database connection successful -- 10:29:03.737 INFO [6983]: _SERVER found -- 10:29:03.737 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:29:03.737 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:03.737 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:29:03.737 INFO [6983]: QUERY_STRING = /home/faq -- 10:29:03.737 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:29:03.773 INFO [6983]: COREGRADE is stopping... -- 10:29:03.773 DEBUG [6983]: Closing database connection -- 10:29:03.773 SQL [6983]: pgsql_close() -- 10:29:03.978 INFO [6983]: COREGRADE is starting... -- 10:29:03.978 INFO [6983]: Version from config: 1.0 -- 10:29:03.978 DEBUG [6983]: Connecting to database... -- 10:29:03.978 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:03.978 SQL [6983]: pgsql_db_connect() -- 10:29:03.982 DEBUG [6983]: Database connection successful -- 10:29:03.982 INFO [6983]: _SERVER found -- 10:29:03.982 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:29:03.982 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:03.982 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:29:03.982 INFO [6983]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:29:03.982 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:29:03.994 INFO [6983]: COREGRADE is stopping... -- 10:29:03.994 DEBUG [6983]: Closing database connection -- 10:29:03.994 SQL [6983]: pgsql_close() -- 10:29:04.031 INFO [6983]: COREGRADE is starting... -- 10:29:04.031 INFO [6983]: Version from config: 1.0 -- 10:29:04.031 DEBUG [6983]: Connecting to database... -- 10:29:04.031 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:04.031 SQL [6983]: pgsql_db_connect() -- 10:29:04.035 DEBUG [6983]: Database connection successful -- 10:29:04.035 INFO [6983]: _SERVER found -- 10:29:04.035 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:29:04.035 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:04.035 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:29:04.035 INFO [6983]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:29:04.035 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:29:04.047 INFO [6983]: COREGRADE is stopping... -- 10:29:04.047 DEBUG [6983]: Closing database connection -- 10:29:04.047 SQL [6983]: pgsql_close() -- 10:29:06.134 INFO [6983]: COREGRADE is starting... -- 10:29:06.134 INFO [6983]: Version from config: 1.0 -- 10:29:06.134 DEBUG [6983]: Connecting to database... -- 10:29:06.134 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:06.135 SQL [6983]: pgsql_db_connect() -- 10:29:06.139 DEBUG [6983]: Database connection successful -- 10:29:06.139 INFO [6983]: _SERVER found -- 10:29:06.139 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:29:06.139 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:06.139 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:29:06.139 INFO [6983]: QUERY_STRING = -- 10:29:06.139 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:29:06.172 INFO [6983]: COREGRADE is stopping... -- 10:29:06.172 DEBUG [6983]: Closing database connection -- 10:29:06.172 SQL [6983]: pgsql_close() -- 10:29:06.349 INFO [6983]: COREGRADE is starting... -- 10:29:06.349 INFO [6983]: Version from config: 1.0 -- 10:29:06.349 DEBUG [6983]: Connecting to database... -- 10:29:06.349 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:06.349 SQL [6983]: pgsql_db_connect() -- 10:29:06.353 DEBUG [6983]: Database connection successful -- 10:29:06.353 INFO [6983]: _SERVER found -- 10:29:06.353 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:29:06.353 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:06.353 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:29:06.353 INFO [6983]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 10:29:06.353 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:29:06.365 INFO [6983]: COREGRADE is stopping... -- 10:29:06.365 DEBUG [6983]: Closing database connection -- 10:29:06.365 SQL [6983]: pgsql_close() -- 10:29:10.141 INFO [6983]: COREGRADE is starting... -- 10:29:10.141 INFO [6983]: Version from config: 1.0 -- 10:29:10.141 DEBUG [6983]: Connecting to database... -- 10:29:10.141 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:10.141 SQL [6983]: pgsql_db_connect() -- 10:29:10.145 DEBUG [6983]: Database connection successful -- 10:29:10.145 INFO [6983]: _SERVER found -- 10:29:10.145 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:29:10.145 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:10.145 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:29:10.145 INFO [6983]: QUERY_STRING = /home/terms -- 10:29:10.145 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:29:10.179 INFO [6983]: COREGRADE is stopping... -- 10:29:10.179 DEBUG [6983]: Closing database connection -- 10:29:10.179 SQL [6983]: pgsql_close() -- 10:29:10.369 INFO [6983]: COREGRADE is starting... -- 10:29:10.369 INFO [6983]: Version from config: 1.0 -- 10:29:10.369 DEBUG [6983]: Connecting to database... -- 10:29:10.369 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:10.369 SQL [6983]: pgsql_db_connect() -- 10:29:10.373 DEBUG [6983]: Database connection successful -- 10:29:10.373 INFO [6983]: _SERVER found -- 10:29:10.373 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:29:10.373 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:10.373 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:29:10.373 INFO [6983]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:29:10.373 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:29:10.385 INFO [6983]: COREGRADE is stopping... -- 10:29:10.385 DEBUG [6983]: Closing database connection -- 10:29:10.385 SQL [6983]: pgsql_close() -- 10:29:10.453 INFO [6929]: COREGRADE is starting... -- 10:29:10.453 INFO [6929]: Version from config: 1.0 -- 10:29:10.453 DEBUG [6929]: Connecting to database... -- 10:29:10.453 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:10.453 SQL [6929]: pgsql_db_connect() -- 10:29:10.457 DEBUG [6929]: Database connection successful -- 10:29:10.457 INFO [6929]: _SERVER found -- 10:29:10.457 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 10:29:10.457 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:10.457 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:29:10.457 INFO [6929]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:29:10.457 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:29:10.470 INFO [6929]: COREGRADE is stopping... -- 10:29:10.470 DEBUG [6929]: Closing database connection -- 10:29:10.470 SQL [6929]: pgsql_close() -- 10:29:36.903 INFO [6925]: COREGRADE is starting... -- 10:29:36.904 INFO [6925]: Version from config: 1.0 -- 10:29:36.904 DEBUG [6925]: Connecting to database... -- 10:29:36.904 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:36.904 SQL [6925]: pgsql_db_connect() -- 10:29:36.908 DEBUG [6925]: Database connection successful -- 10:29:36.908 INFO [6925]: _SERVER found -- 10:29:36.908 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 10:29:36.908 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:36.908 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c -- 10:29:36.908 INFO [6925]: QUERY_STRING = /home/terms -- 10:29:36.908 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:29:36.943 INFO [6925]: COREGRADE is stopping... -- 10:29:36.943 DEBUG [6925]: Closing database connection -- 10:29:36.943 SQL [6925]: pgsql_close() -- 10:29:37.109 INFO [6925]: COREGRADE is starting... -- 10:29:37.110 INFO [6925]: Version from config: 1.0 -- 10:29:37.110 DEBUG [6925]: Connecting to database... -- 10:29:37.110 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:37.110 SQL [6925]: pgsql_db_connect() -- 10:29:37.114 DEBUG [6925]: Database connection successful -- 10:29:37.114 INFO [6925]: _SERVER found -- 10:29:37.114 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 10:29:37.114 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:37.114 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c -- 10:29:37.114 INFO [6925]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:29:37.114 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:29:37.125 INFO [6925]: COREGRADE is stopping... -- 10:29:37.125 DEBUG [6925]: Closing database connection -- 10:29:37.125 SQL [6925]: pgsql_close() -- 10:29:37.202 INFO [7002]: COREGRADE is starting... -- 10:29:37.202 INFO [7002]: Version from config: 1.0 -- 10:29:37.202 DEBUG [7002]: Connecting to database... -- 10:29:37.202 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:37.202 SQL [7002]: pgsql_db_connect() -- 10:29:37.206 DEBUG [7002]: Database connection successful -- 10:29:37.206 INFO [7002]: _SERVER found -- 10:29:37.206 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 10:29:37.206 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:37.206 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c -- 10:29:37.206 INFO [7002]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:29:37.206 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:29:37.218 INFO [7002]: COREGRADE is stopping... -- 10:29:37.218 DEBUG [7002]: Closing database connection -- 10:29:37.218 SQL [7002]: pgsql_close() -- 10:29:39.423 INFO [7002]: COREGRADE is starting... -- 10:29:39.423 INFO [7002]: Version from config: 1.0 -- 10:29:39.423 DEBUG [7002]: Connecting to database... -- 10:29:39.423 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:39.423 SQL [7002]: pgsql_db_connect() -- 10:29:39.427 DEBUG [7002]: Database connection successful -- 10:29:39.427 INFO [7002]: _SERVER found -- 10:29:39.427 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 10:29:39.427 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:39.427 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c -- 10:29:39.427 INFO [7002]: QUERY_STRING = -- 10:29:39.427 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:29:39.458 INFO [7002]: COREGRADE is stopping... -- 10:29:39.459 DEBUG [7002]: Closing database connection -- 10:29:39.459 SQL [7002]: pgsql_close() -- 10:29:39.643 INFO [7002]: COREGRADE is starting... -- 10:29:39.643 INFO [7002]: Version from config: 1.0 -- 10:29:39.643 DEBUG [7002]: Connecting to database... -- 10:29:39.643 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:39.643 SQL [7002]: pgsql_db_connect() -- 10:29:39.647 DEBUG [7002]: Database connection successful -- 10:29:39.647 INFO [7002]: _SERVER found -- 10:29:39.647 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 10:29:39.647 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:39.647 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c -- 10:29:39.647 INFO [7002]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 10:29:39.647 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:29:39.658 INFO [7002]: COREGRADE is stopping... -- 10:29:39.658 DEBUG [7002]: Closing database connection -- 10:29:39.658 SQL [7002]: pgsql_close() -- 10:29:42.621 INFO [7002]: COREGRADE is starting... -- 10:29:42.621 INFO [7002]: Version from config: 1.0 -- 10:29:42.621 DEBUG [7002]: Connecting to database... -- 10:29:42.621 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:42.621 SQL [7002]: pgsql_db_connect() -- 10:29:42.625 DEBUG [7002]: Database connection successful -- 10:29:42.625 INFO [7002]: _SERVER found -- 10:29:42.625 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 10:29:42.625 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:42.625 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:29:42.625 INFO [7002]: QUERY_STRING = /home/contactus -- 10:29:42.625 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:29:42.657 INFO [7002]: COREGRADE is stopping... -- 10:29:42.657 DEBUG [7002]: Closing database connection -- 10:29:42.657 SQL [7002]: pgsql_close() -- 10:29:42.835 INFO [7002]: COREGRADE is starting... -- 10:29:42.836 INFO [7002]: Version from config: 1.0 -- 10:29:42.836 DEBUG [7002]: Connecting to database... -- 10:29:42.836 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:42.836 SQL [7002]: pgsql_db_connect() -- 10:29:42.840 DEBUG [7002]: Database connection successful -- 10:29:42.840 INFO [7002]: _SERVER found -- 10:29:42.840 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 10:29:42.840 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:42.840 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:29:42.840 INFO [7002]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:29:42.840 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:29:42.851 INFO [7002]: COREGRADE is stopping... -- 10:29:42.851 DEBUG [7002]: Closing database connection -- 10:29:42.851 SQL [7002]: pgsql_close() -- 10:29:42.912 INFO [6928]: COREGRADE is starting... -- 10:29:42.913 INFO [6928]: Version from config: 1.0 -- 10:29:42.913 DEBUG [6928]: Connecting to database... -- 10:29:42.913 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:42.913 SQL [6928]: pgsql_db_connect() -- 10:29:42.917 DEBUG [6928]: Database connection successful -- 10:29:42.917 INFO [6928]: _SERVER found -- 10:29:42.917 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 10:29:42.917 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:42.917 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:29:42.917 INFO [6928]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:29:42.917 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:29:42.928 INFO [6928]: COREGRADE is stopping... -- 10:29:42.928 DEBUG [6928]: Closing database connection -- 10:29:42.928 SQL [6928]: pgsql_close() -- 10:29:44.891 INFO [6928]: COREGRADE is starting... -- 10:29:44.891 INFO [6928]: Version from config: 1.0 -- 10:29:44.891 DEBUG [6928]: Connecting to database... -- 10:29:44.891 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:44.891 SQL [6928]: pgsql_db_connect() -- 10:29:44.896 DEBUG [6928]: Database connection successful -- 10:29:44.896 INFO [6928]: _SERVER found -- 10:29:44.896 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 10:29:44.896 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:44.896 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:29:44.896 INFO [6928]: QUERY_STRING = -- 10:29:44.896 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:29:44.932 INFO [6928]: COREGRADE is stopping... -- 10:29:44.932 DEBUG [6928]: Closing database connection -- 10:29:44.932 SQL [6928]: pgsql_close() -- 10:29:45.115 INFO [6928]: COREGRADE is starting... -- 10:29:45.115 INFO [6928]: Version from config: 1.0 -- 10:29:45.115 DEBUG [6928]: Connecting to database... -- 10:29:45.115 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:45.115 SQL [6928]: pgsql_db_connect() -- 10:29:45.119 DEBUG [6928]: Database connection successful -- 10:29:45.119 INFO [6928]: _SERVER found -- 10:29:45.119 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 10:29:45.119 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:45.119 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:29:45.119 INFO [6928]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 10:29:45.119 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:29:45.131 INFO [6928]: COREGRADE is stopping... -- 10:29:45.131 DEBUG [6928]: Closing database connection -- 10:29:45.131 SQL [6928]: pgsql_close() -- 10:29:48.761 INFO [6928]: COREGRADE is starting... -- 10:29:48.761 INFO [6928]: Version from config: 1.0 -- 10:29:48.761 DEBUG [6928]: Connecting to database... -- 10:29:48.761 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:48.762 SQL [6928]: pgsql_db_connect() -- 10:29:48.765 DEBUG [6928]: Database connection successful -- 10:29:48.765 INFO [6928]: _SERVER found -- 10:29:48.766 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 10:29:48.766 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:48.766 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:29:48.766 INFO [6928]: QUERY_STRING = /home/aboutus -- 10:29:48.766 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:29:48.797 INFO [6928]: COREGRADE is stopping... -- 10:29:48.797 DEBUG [6928]: Closing database connection -- 10:29:48.797 SQL [6928]: pgsql_close() -- 10:29:48.975 INFO [6928]: COREGRADE is starting... -- 10:29:48.975 INFO [6928]: Version from config: 1.0 -- 10:29:48.975 DEBUG [6928]: Connecting to database... -- 10:29:48.975 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:48.975 SQL [6928]: pgsql_db_connect() -- 10:29:48.979 DEBUG [6928]: Database connection successful -- 10:29:48.979 INFO [6928]: _SERVER found -- 10:29:48.979 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 10:29:48.979 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:48.979 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:29:48.979 INFO [6928]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:29:48.979 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:29:48.990 INFO [6928]: COREGRADE is stopping... -- 10:29:48.990 DEBUG [6928]: Closing database connection -- 10:29:48.990 SQL [6928]: pgsql_close() -- 10:29:49.089 INFO [7007]: COREGRADE is starting... -- 10:29:49.089 INFO [7007]: Version from config: 1.0 -- 10:29:49.089 DEBUG [7007]: Connecting to database... -- 10:29:49.089 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:49.089 SQL [7007]: pgsql_db_connect() -- 10:29:49.093 DEBUG [7007]: Database connection successful -- 10:29:49.093 INFO [7007]: _SERVER found -- 10:29:49.093 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 10:29:49.093 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:49.093 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:29:49.093 INFO [7007]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:29:49.093 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:29:49.104 INFO [7007]: COREGRADE is stopping... -- 10:29:49.104 DEBUG [7007]: Closing database connection -- 10:29:49.104 SQL [7007]: pgsql_close() -- 10:29:51.135 INFO [7007]: COREGRADE is starting... -- 10:29:51.135 INFO [7007]: Version from config: 1.0 -- 10:29:51.135 DEBUG [7007]: Connecting to database... -- 10:29:51.135 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:51.135 SQL [7007]: pgsql_db_connect() -- 10:29:51.139 DEBUG [7007]: Database connection successful -- 10:29:51.139 INFO [7007]: _SERVER found -- 10:29:51.139 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 10:29:51.139 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:51.139 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:29:51.139 INFO [7007]: QUERY_STRING = -- 10:29:51.139 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:29:51.175 INFO [7007]: COREGRADE is stopping... -- 10:29:51.175 DEBUG [7007]: Closing database connection -- 10:29:51.176 SQL [7007]: pgsql_close() -- 10:29:51.356 INFO [7007]: COREGRADE is starting... -- 10:29:51.356 INFO [7007]: Version from config: 1.0 -- 10:29:51.356 DEBUG [7007]: Connecting to database... -- 10:29:51.356 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:51.356 SQL [7007]: pgsql_db_connect() -- 10:29:51.360 DEBUG [7007]: Database connection successful -- 10:29:51.360 INFO [7007]: _SERVER found -- 10:29:51.360 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 10:29:51.360 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:51.360 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:29:51.360 INFO [7007]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 10:29:51.360 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:29:51.372 INFO [7007]: COREGRADE is stopping... -- 10:29:51.372 DEBUG [7007]: Closing database connection -- 10:29:51.372 SQL [7007]: pgsql_close() -- 10:29:52.850 INFO [7007]: COREGRADE is starting... -- 10:29:52.850 INFO [7007]: Version from config: 1.0 -- 10:29:52.850 DEBUG [7007]: Connecting to database... -- 10:29:52.850 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:52.850 SQL [7007]: pgsql_db_connect() -- 10:29:52.854 DEBUG [7007]: Database connection successful -- 10:29:52.854 INFO [7007]: _SERVER found -- 10:29:52.854 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 10:29:52.854 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:52.854 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:29:52.854 INFO [7007]: QUERY_STRING = /home/security -- 10:29:52.854 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:29:52.885 INFO [7007]: COREGRADE is stopping... -- 10:29:52.885 DEBUG [7007]: Closing database connection -- 10:29:52.885 SQL [7007]: pgsql_close() -- 10:29:53.047 INFO [7007]: COREGRADE is starting... -- 10:29:53.047 INFO [7007]: Version from config: 1.0 -- 10:29:53.047 DEBUG [7007]: Connecting to database... -- 10:29:53.047 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:53.047 SQL [7007]: pgsql_db_connect() -- 10:29:53.051 DEBUG [7007]: Database connection successful -- 10:29:53.051 INFO [7007]: _SERVER found -- 10:29:53.051 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 10:29:53.051 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:53.051 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:29:53.051 INFO [7007]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:29:53.051 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:29:53.062 INFO [7007]: COREGRADE is stopping... -- 10:29:53.062 DEBUG [7007]: Closing database connection -- 10:29:53.062 SQL [7007]: pgsql_close() -- 10:29:53.140 INFO [7007]: COREGRADE is starting... -- 10:29:53.141 INFO [7007]: Version from config: 1.0 -- 10:29:53.141 DEBUG [7007]: Connecting to database... -- 10:29:53.141 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:53.141 SQL [7007]: pgsql_db_connect() -- 10:29:53.145 DEBUG [7007]: Database connection successful -- 10:29:53.145 INFO [7007]: _SERVER found -- 10:29:53.145 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 10:29:53.145 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:53.145 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:29:53.145 INFO [7007]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:29:53.145 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:29:53.156 INFO [7007]: COREGRADE is stopping... -- 10:29:53.156 DEBUG [7007]: Closing database connection -- 10:29:53.156 SQL [7007]: pgsql_close() -- 10:29:55.541 INFO [7007]: COREGRADE is starting... -- 10:29:55.542 INFO [7007]: Version from config: 1.0 -- 10:29:55.542 DEBUG [7007]: Connecting to database... -- 10:29:55.542 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:55.542 SQL [7007]: pgsql_db_connect() -- 10:29:55.546 DEBUG [7007]: Database connection successful -- 10:29:55.546 INFO [7007]: _SERVER found -- 10:29:55.546 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 10:29:55.546 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:55.546 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:29:55.546 INFO [7007]: QUERY_STRING = -- 10:29:55.546 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:29:55.577 INFO [7007]: COREGRADE is stopping... -- 10:29:55.577 DEBUG [7007]: Closing database connection -- 10:29:55.577 SQL [7007]: pgsql_close() -- 10:29:55.739 INFO [7007]: COREGRADE is starting... -- 10:29:55.739 INFO [7007]: Version from config: 1.0 -- 10:29:55.739 DEBUG [7007]: Connecting to database... -- 10:29:55.739 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:55.739 SQL [7007]: pgsql_db_connect() -- 10:29:55.743 DEBUG [7007]: Database connection successful -- 10:29:55.743 INFO [7007]: _SERVER found -- 10:29:55.743 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 10:29:55.743 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:55.743 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:29:55.743 INFO [7007]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 10:29:55.743 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:29:55.755 INFO [7007]: COREGRADE is stopping... -- 10:29:55.755 DEBUG [7007]: Closing database connection -- 10:29:55.755 SQL [7007]: pgsql_close() -- 10:29:59.131 INFO [7007]: COREGRADE is starting... -- 10:29:59.132 INFO [7007]: Version from config: 1.0 -- 10:29:59.132 DEBUG [7007]: Connecting to database... -- 10:29:59.132 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:59.132 SQL [7007]: pgsql_db_connect() -- 10:29:59.136 DEBUG [7007]: Database connection successful -- 10:29:59.136 INFO [7007]: _SERVER found -- 10:29:59.136 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 10:29:59.136 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:59.136 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:29:59.136 INFO [7007]: QUERY_STRING = /home/privacy -- 10:29:59.136 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:29:59.167 INFO [7007]: COREGRADE is stopping... -- 10:29:59.167 DEBUG [7007]: Closing database connection -- 10:29:59.167 SQL [7007]: pgsql_close() -- 10:29:59.368 INFO [7007]: COREGRADE is starting... -- 10:29:59.368 INFO [7007]: Version from config: 1.0 -- 10:29:59.368 DEBUG [7007]: Connecting to database... -- 10:29:59.368 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:59.368 SQL [7007]: pgsql_db_connect() -- 10:29:59.372 DEBUG [7007]: Database connection successful -- 10:29:59.372 INFO [7007]: _SERVER found -- 10:29:59.372 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 10:29:59.372 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:59.372 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:29:59.372 INFO [7007]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:29:59.372 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:29:59.383 INFO [7007]: COREGRADE is stopping... -- 10:29:59.383 DEBUG [7007]: Closing database connection -- 10:29:59.383 SQL [7007]: pgsql_close() -- 10:29:59.429 INFO [7007]: COREGRADE is starting... -- 10:29:59.429 INFO [7007]: Version from config: 1.0 -- 10:29:59.429 DEBUG [7007]: Connecting to database... -- 10:29:59.429 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:59.429 SQL [7007]: pgsql_db_connect() -- 10:29:59.433 DEBUG [7007]: Database connection successful -- 10:29:59.433 INFO [7007]: _SERVER found -- 10:29:59.433 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 10:29:59.433 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:59.433 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:29:59.433 INFO [7007]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:29:59.433 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:29:59.444 INFO [7007]: COREGRADE is stopping... -- 10:29:59.445 DEBUG [7007]: Closing database connection -- 10:29:59.445 SQL [7007]: pgsql_close() -- 10:30:02.428 INFO [7007]: COREGRADE is starting... -- 10:30:02.428 INFO [7007]: Version from config: 1.0 -- 10:30:02.428 DEBUG [7007]: Connecting to database... -- 10:30:02.429 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:30:02.429 SQL [7007]: pgsql_db_connect() -- 10:30:02.433 DEBUG [7007]: Database connection successful -- 10:30:02.433 INFO [7007]: _SERVER found -- 10:30:02.433 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 10:30:02.433 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 10:30:02.433 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:30:02.433 INFO [7007]: QUERY_STRING = -- 10:30:02.433 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:30:02.464 INFO [7007]: COREGRADE is stopping... -- 10:30:02.464 DEBUG [7007]: Closing database connection -- 10:30:02.464 SQL [7007]: pgsql_close() -- 10:30:02.640 INFO [7007]: COREGRADE is starting... -- 10:30:02.640 INFO [7007]: Version from config: 1.0 -- 10:30:02.640 DEBUG [7007]: Connecting to database... -- 10:30:02.641 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:30:02.641 SQL [7007]: pgsql_db_connect() -- 10:30:02.645 DEBUG [7007]: Database connection successful -- 10:30:02.645 INFO [7007]: _SERVER found -- 10:30:02.645 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 10:30:02.645 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 10:30:02.645 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:30:02.645 INFO [7007]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 10:30:02.645 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:30:02.656 INFO [7007]: COREGRADE is stopping... -- 10:30:02.656 DEBUG [7007]: Closing database connection -- 10:30:02.656 SQL [7007]: pgsql_close() -- 10:30:05.003 INFO [7007]: COREGRADE is starting... -- 10:30:05.003 INFO [7007]: Version from config: 1.0 -- 10:30:05.003 DEBUG [7007]: Connecting to database... -- 10:30:05.003 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:30:05.003 SQL [7007]: pgsql_db_connect() -- 10:30:05.007 DEBUG [7007]: Database connection successful -- 10:30:05.007 INFO [7007]: _SERVER found -- 10:30:05.007 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 10:30:05.007 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 10:30:05.007 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:30:05.007 INFO [7007]: QUERY_STRING = /home/terms -- 10:30:05.007 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:30:05.038 INFO [7007]: COREGRADE is stopping... -- 10:30:05.038 DEBUG [7007]: Closing database connection -- 10:30:05.038 SQL [7007]: pgsql_close() -- 10:30:05.203 INFO [7007]: COREGRADE is starting... -- 10:30:05.203 INFO [7007]: Version from config: 1.0 -- 10:30:05.203 DEBUG [7007]: Connecting to database... -- 10:30:05.203 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:30:05.203 SQL [7007]: pgsql_db_connect() -- 10:30:05.207 DEBUG [7007]: Database connection successful -- 10:30:05.207 INFO [7007]: _SERVER found -- 10:30:05.207 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 10:30:05.207 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 10:30:05.207 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:30:05.207 INFO [7007]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:30:05.207 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:30:05.219 INFO [7007]: COREGRADE is stopping... -- 10:30:05.219 DEBUG [7007]: Closing database connection -- 10:30:05.219 SQL [7007]: pgsql_close() -- 10:30:05.283 INFO [7007]: COREGRADE is starting... -- 10:30:05.283 INFO [7007]: Version from config: 1.0 -- 10:30:05.283 DEBUG [7007]: Connecting to database... -- 10:30:05.283 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:30:05.283 SQL [7007]: pgsql_db_connect() -- 10:30:05.287 DEBUG [7007]: Database connection successful -- 10:30:05.287 INFO [7007]: _SERVER found -- 10:30:05.287 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 10:30:05.287 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 10:30:05.287 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:30:05.287 INFO [7007]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:30:05.287 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:30:05.298 INFO [7007]: COREGRADE is stopping... -- 10:30:05.298 DEBUG [7007]: Closing database connection -- 10:30:05.298 SQL [7007]: pgsql_close() -- 10:30:06.679 INFO [7007]: COREGRADE is starting... -- 10:30:06.679 INFO [7007]: Version from config: 1.0 -- 10:30:06.679 DEBUG [7007]: Connecting to database... -- 10:30:06.679 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:30:06.679 SQL [7007]: pgsql_db_connect() -- 10:30:06.683 DEBUG [7007]: Database connection successful -- 10:30:06.683 INFO [7007]: _SERVER found -- 10:30:06.683 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 10:30:06.683 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 10:30:06.683 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:30:06.683 INFO [7007]: QUERY_STRING = -- 10:30:06.683 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:30:06.714 INFO [7007]: COREGRADE is stopping... -- 10:30:06.714 DEBUG [7007]: Closing database connection -- 10:30:06.714 SQL [7007]: pgsql_close() -- 10:30:07.001 INFO [7007]: COREGRADE is starting... -- 10:30:07.002 INFO [7007]: Version from config: 1.0 -- 10:30:07.002 DEBUG [7007]: Connecting to database... -- 10:30:07.002 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:30:07.002 SQL [7007]: pgsql_db_connect() -- 10:30:07.006 DEBUG [7007]: Database connection successful -- 10:30:07.006 INFO [7007]: _SERVER found -- 10:30:07.006 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 10:30:07.006 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 10:30:07.006 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:30:07.006 INFO [7007]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 10:30:07.006 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:30:07.017 INFO [7007]: COREGRADE is stopping... -- 10:30:07.017 DEBUG [7007]: Closing database connection -- 10:30:07.017 SQL [7007]: pgsql_close() -- 10:30:08.781 INFO [7007]: COREGRADE is starting... -- 10:30:08.782 INFO [7007]: Version from config: 1.0 -- 10:30:08.782 DEBUG [7007]: Connecting to database... -- 10:30:08.782 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:30:08.782 SQL [7007]: pgsql_db_connect() -- 10:30:08.786 DEBUG [7007]: Database connection successful -- 10:30:08.786 INFO [7007]: _SERVER found -- 10:30:08.786 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 10:30:08.786 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 10:30:08.786 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:30:08.786 INFO [7007]: QUERY_STRING = /home/howitworks -- 10:30:08.786 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:30:08.817 INFO [7007]: COREGRADE is stopping... -- 10:30:08.817 DEBUG [7007]: Closing database connection -- 10:30:08.817 SQL [7007]: pgsql_close() -- 10:30:08.993 INFO [7007]: COREGRADE is starting... -- 10:30:08.993 INFO [7007]: Version from config: 1.0 -- 10:30:08.993 DEBUG [7007]: Connecting to database... -- 10:30:08.993 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:30:08.993 SQL [7007]: pgsql_db_connect() -- 10:30:08.997 DEBUG [7007]: Database connection successful -- 10:30:08.997 INFO [7007]: _SERVER found -- 10:30:08.997 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 10:30:08.997 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 10:30:08.997 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:30:08.997 INFO [7007]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:30:08.997 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:30:09.008 INFO [7007]: COREGRADE is stopping... -- 10:30:09.008 DEBUG [7007]: Closing database connection -- 10:30:09.008 SQL [7007]: pgsql_close() -- 10:30:09.115 INFO [7007]: COREGRADE is starting... -- 10:30:09.115 INFO [7007]: Version from config: 1.0 -- 10:30:09.115 DEBUG [7007]: Connecting to database... -- 10:30:09.115 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:30:09.115 SQL [7007]: pgsql_db_connect() -- 10:30:09.119 DEBUG [7007]: Database connection successful -- 10:30:09.119 INFO [7007]: _SERVER found -- 10:30:09.119 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 10:30:09.119 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 10:30:09.119 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:30:09.119 INFO [7007]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:30:09.119 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:30:09.131 INFO [7007]: COREGRADE is stopping... -- 10:30:09.131 DEBUG [7007]: Closing database connection -- 10:30:09.131 SQL [7007]: pgsql_close() -- 10:30:14.317 INFO [6927]: COREGRADE is starting... -- 10:30:14.317 INFO [6927]: Version from config: 1.0 -- 10:30:14.317 DEBUG [6927]: Connecting to database... -- 10:30:14.317 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:30:14.317 SQL [6927]: pgsql_db_connect() -- 10:30:14.321 DEBUG [6927]: Database connection successful -- 10:30:14.321 INFO [6927]: _SERVER found -- 10:30:14.321 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 10:30:14.321 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 10:30:14.321 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:30:14.321 INFO [6927]: QUERY_STRING = -- 10:30:14.321 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:30:14.361 INFO [6927]: COREGRADE is stopping... -- 10:30:14.361 DEBUG [6927]: Closing database connection -- 10:30:14.361 SQL [6927]: pgsql_close() -- 10:30:14.703 INFO [6927]: COREGRADE is starting... -- 10:30:14.703 INFO [6927]: Version from config: 1.0 -- 10:30:14.703 DEBUG [6927]: Connecting to database... -- 10:30:14.703 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:30:14.703 SQL [6927]: pgsql_db_connect() -- 10:30:14.707 DEBUG [6927]: Database connection successful -- 10:30:14.707 INFO [6927]: _SERVER found -- 10:30:14.707 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 10:30:14.707 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 10:30:14.707 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:30:14.707 INFO [6927]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 10:30:14.707 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:30:14.718 INFO [6927]: COREGRADE is stopping... -- 10:30:14.718 DEBUG [6927]: Closing database connection -- 10:30:14.718 SQL [6927]: pgsql_close() -- 10:30:27.740 INFO [7005]: COREGRADE is starting... -- 10:30:27.740 INFO [7005]: Version from config: 1.0 -- 10:30:27.740 DEBUG [7005]: Connecting to database... -- 10:30:27.740 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:30:27.740 SQL [7005]: pgsql_db_connect() -- 10:30:27.744 DEBUG [7005]: Database connection successful -- 10:30:27.744 INFO [7005]: _SERVER found -- 10:30:27.744 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 10:30:27.744 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 10:30:27.744 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:30:27.744 INFO [7005]: QUERY_STRING = -- 10:30:27.744 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:30:27.776 INFO [7005]: COREGRADE is stopping... -- 10:30:27.776 DEBUG [7005]: Closing database connection -- 10:30:27.776 SQL [7005]: pgsql_close() -- 10:30:28.005 INFO [7005]: COREGRADE is starting... -- 10:30:28.005 INFO [7005]: Version from config: 1.0 -- 10:30:28.005 DEBUG [7005]: Connecting to database... -- 10:30:28.005 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:30:28.005 SQL [7005]: pgsql_db_connect() -- 10:30:28.010 DEBUG [7005]: Database connection successful -- 10:30:28.010 INFO [7005]: _SERVER found -- 10:30:28.010 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 10:30:28.010 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 10:30:28.010 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c; _gat_gtag_UA_54829827_2=1 -- 10:30:28.010 INFO [7005]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 10:30:28.010 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:30:28.021 INFO [7005]: COREGRADE is stopping... -- 10:30:28.021 DEBUG [7005]: Closing database connection -- 10:30:28.021 SQL [7005]: pgsql_close() -- 10:31:37.921 INFO [7004]: COREGRADE is starting... -- 10:31:37.921 INFO [7004]: Version from config: 1.0 -- 10:31:37.921 DEBUG [7004]: Connecting to database... -- 10:31:37.921 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:31:37.921 SQL [7004]: pgsql_db_connect() -- 10:31:37.925 DEBUG [7004]: Database connection successful -- 10:31:37.925 INFO [7004]: _SERVER found -- 10:31:37.925 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 10:31:37.925 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 10:31:37.925 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474 -- 10:31:37.925 INFO [7004]: QUERY_STRING = -- 10:31:37.925 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:31:37.962 INFO [7004]: COREGRADE is stopping... -- 10:31:37.962 DEBUG [7004]: Closing database connection -- 10:31:37.962 SQL [7004]: pgsql_close() -- 10:31:38.483 INFO [7004]: COREGRADE is starting... -- 10:31:38.484 INFO [7004]: Version from config: 1.0 -- 10:31:38.484 DEBUG [7004]: Connecting to database... -- 10:31:38.484 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:31:38.484 SQL [7004]: pgsql_db_connect() -- 10:31:38.488 DEBUG [7004]: Database connection successful -- 10:31:38.488 INFO [7004]: _SERVER found -- 10:31:38.488 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 10:31:38.488 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 10:31:38.488 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=tm5b2relui8vesip8q506ur7p6fij3dg -- 10:31:38.488 INFO [7004]: QUERY_STRING = /assets/img/footer_1.jpg -- 10:31:38.488 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:31:38.499 INFO [7004]: COREGRADE is stopping... -- 10:31:38.499 DEBUG [7004]: Closing database connection -- 10:31:38.499 SQL [7004]: pgsql_close() -- 10:32:03.428 INFO [7006]: COREGRADE is starting... -- 10:32:03.428 INFO [7006]: Version from config: 1.0 -- 10:32:03.428 DEBUG [7006]: Connecting to database... -- 10:32:03.428 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:32:03.428 SQL [7006]: pgsql_db_connect() -- 10:32:03.433 DEBUG [7006]: Database connection successful -- 10:32:03.433 INFO [7006]: _SERVER found -- 10:32:03.433 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 10:32:03.433 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 10:32:03.433 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=tm5b2relui8vesip8q506ur7p6fij3dg -- 10:32:03.433 INFO [7006]: QUERY_STRING = /auth/newuser -- 10:32:03.433 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:32:03.468 INFO [7006]: COREGRADE is stopping... -- 10:32:03.468 DEBUG [7006]: Closing database connection -- 10:32:03.468 SQL [7006]: pgsql_close() -- 10:32:03.551 INFO [7006]: COREGRADE is starting... -- 10:32:03.551 INFO [7006]: Version from config: 1.0 -- 10:32:03.551 DEBUG [7006]: Connecting to database... -- 10:32:03.551 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:32:03.551 SQL [7006]: pgsql_db_connect() -- 10:32:03.555 DEBUG [7006]: Database connection successful -- 10:32:03.555 INFO [7006]: _SERVER found -- 10:32:03.555 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 10:32:03.555 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 10:32:03.555 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=tm5b2relui8vesip8q506ur7p6fij3dg -- 10:32:03.555 INFO [7006]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:32:03.555 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:32:03.567 INFO [7006]: COREGRADE is stopping... -- 10:32:03.568 DEBUG [7006]: Closing database connection -- 10:32:03.568 SQL [7006]: pgsql_close() -- 10:32:27.867 INFO [6983]: COREGRADE is starting... -- 10:32:27.867 INFO [6983]: Version from config: 1.0 -- 10:32:27.867 DEBUG [6983]: Connecting to database... -- 10:32:27.867 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:32:27.867 SQL [6983]: pgsql_db_connect() -- 10:32:27.871 DEBUG [6983]: Database connection successful -- 10:32:27.871 INFO [6983]: _SERVER found -- 10:32:27.871 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:32:27.871 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:32:27.871 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=tm5b2relui8vesip8q506ur7p6fij3dg -- 10:32:27.871 INFO [6983]: QUERY_STRING = /auth/newuser -- 10:32:27.871 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:32:27.906 INFO [6983]: COREGRADE is stopping... -- 10:32:27.906 DEBUG [6983]: Closing database connection -- 10:32:27.906 SQL [6983]: pgsql_close() -- 10:32:27.961 INFO [6983]: COREGRADE is starting... -- 10:32:27.961 INFO [6983]: Version from config: 1.0 -- 10:32:27.961 DEBUG [6983]: Connecting to database... -- 10:32:27.961 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:32:27.961 SQL [6983]: pgsql_db_connect() -- 10:32:27.965 DEBUG [6983]: Database connection successful -- 10:32:27.965 INFO [6983]: _SERVER found -- 10:32:27.965 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:32:27.965 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:32:27.965 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=tm5b2relui8vesip8q506ur7p6fij3dg -- 10:32:27.965 INFO [6983]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:32:27.965 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:32:27.977 INFO [6983]: COREGRADE is stopping... -- 10:32:27.977 DEBUG [6983]: Closing database connection -- 10:32:27.977 SQL [6983]: pgsql_close() -- 10:32:32.589 INFO [6983]: COREGRADE is starting... -- 10:32:32.589 INFO [6983]: Version from config: 1.0 -- 10:32:32.589 DEBUG [6983]: Connecting to database... -- 10:32:32.589 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:32:32.589 SQL [6983]: pgsql_db_connect() -- 10:32:32.593 DEBUG [6983]: Database connection successful -- 10:32:32.593 INFO [6983]: _SERVER found -- 10:32:32.593 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:32:32.593 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:32:32.593 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=tm5b2relui8vesip8q506ur7p6fij3dg -- 10:32:32.593 INFO [6983]: QUERY_STRING = /auth/newuser -- 10:32:32.593 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:32:32.627 INFO [6983]: COREGRADE is stopping... -- 10:32:32.628 DEBUG [6983]: Closing database connection -- 10:32:32.628 SQL [6983]: pgsql_close() -- 10:32:32.694 INFO [6983]: COREGRADE is starting... -- 10:32:32.694 INFO [6983]: Version from config: 1.0 -- 10:32:32.694 DEBUG [6983]: Connecting to database... -- 10:32:32.694 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:32:32.694 SQL [6983]: pgsql_db_connect() -- 10:32:32.698 DEBUG [6983]: Database connection successful -- 10:32:32.698 INFO [6983]: _SERVER found -- 10:32:32.698 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:32:32.698 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:32:32.698 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=tm5b2relui8vesip8q506ur7p6fij3dg -- 10:32:32.698 INFO [6983]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:32:32.698 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:32:32.710 INFO [6983]: COREGRADE is stopping... -- 10:32:32.710 DEBUG [6983]: Closing database connection -- 10:32:32.710 SQL [6983]: pgsql_close() -- 10:32:34.837 INFO [6983]: COREGRADE is starting... -- 10:32:34.837 INFO [6983]: Version from config: 1.0 -- 10:32:34.837 DEBUG [6983]: Connecting to database... -- 10:32:34.837 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:32:34.837 SQL [6983]: pgsql_db_connect() -- 10:32:34.841 DEBUG [6983]: Database connection successful -- 10:32:34.841 INFO [6983]: _SERVER found -- 10:32:34.841 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:32:34.841 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:32:34.841 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=tm5b2relui8vesip8q506ur7p6fij3dg -- 10:32:34.841 INFO [6983]: QUERY_STRING = -- 10:32:34.841 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:32:34.875 INFO [6983]: COREGRADE is stopping... -- 10:32:34.875 DEBUG [6983]: Closing database connection -- 10:32:34.875 SQL [6983]: pgsql_close() -- 10:32:34.897 INFO [6983]: COREGRADE is starting... -- 10:32:34.898 INFO [6983]: Version from config: 1.0 -- 10:32:34.898 DEBUG [6983]: Connecting to database... -- 10:32:34.898 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:32:34.898 SQL [6983]: pgsql_db_connect() -- 10:32:34.902 DEBUG [6983]: Database connection successful -- 10:32:34.902 INFO [6983]: _SERVER found -- 10:32:34.902 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:32:34.902 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:32:34.902 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.49900489.1586638474; ci_session=tm5b2relui8vesip8q506ur7p6fij3dg -- 10:32:34.902 INFO [6983]: QUERY_STRING = /assets/img/footer_1.jpg -- 10:32:34.902 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:32:34.914 INFO [6983]: COREGRADE is stopping... -- 10:32:34.914 DEBUG [6983]: Closing database connection -- 10:32:34.914 SQL [6983]: pgsql_close() -- 10:32:38.409 INFO [6983]: COREGRADE is starting... -- 10:32:38.409 INFO [6983]: Version from config: 1.0 -- 10:32:38.409 DEBUG [6983]: Connecting to database... -- 10:32:38.409 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:32:38.409 SQL [6983]: pgsql_db_connect() -- 10:32:38.413 DEBUG [6983]: Database connection successful -- 10:32:38.413 INFO [6983]: _SERVER found -- 10:32:38.413 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:32:38.413 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:32:38.413 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=tm5b2relui8vesip8q506ur7p6fij3dg -- 10:32:38.413 INFO [6983]: QUERY_STRING = /home/aboutus -- 10:32:38.413 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:32:38.447 INFO [6983]: COREGRADE is stopping... -- 10:32:38.447 DEBUG [6983]: Closing database connection -- 10:32:38.447 SQL [6983]: pgsql_close() -- 10:32:38.515 INFO [6983]: COREGRADE is starting... -- 10:32:38.515 INFO [6983]: Version from config: 1.0 -- 10:32:38.515 DEBUG [6983]: Connecting to database... -- 10:32:38.515 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:32:38.515 SQL [6983]: pgsql_db_connect() -- 10:32:38.519 DEBUG [6983]: Database connection successful -- 10:32:38.519 INFO [6983]: _SERVER found -- 10:32:38.519 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:32:38.519 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:32:38.519 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.49900489.1586638474; ci_session=tm5b2relui8vesip8q506ur7p6fij3dg -- 10:32:38.519 INFO [6983]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:32:38.519 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:32:38.531 INFO [6983]: COREGRADE is stopping... -- 10:32:38.531 DEBUG [6983]: Closing database connection -- 10:32:38.531 SQL [6983]: pgsql_close() -- 10:45:45.080 INFO [6929]: COREGRADE is starting... -- 10:45:45.080 INFO [6929]: Version from config: 1.0 -- 10:45:45.080 DEBUG [6929]: Connecting to database... -- 10:45:45.080 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:45:45.080 SQL [6929]: pgsql_db_connect() -- 10:45:45.085 DEBUG [6929]: Database connection successful -- 10:45:45.085 INFO [6929]: _SERVER found -- 10:45:45.085 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 10:45:45.085 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 10:45:45.085 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938 -- 10:45:45.085 INFO [6929]: QUERY_STRING = -- 10:45:45.085 INFO [6929]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:45:45.128 INFO [6929]: COREGRADE is stopping... -- 10:45:45.128 DEBUG [6929]: Closing database connection -- 10:45:45.128 SQL [6929]: pgsql_close() -- 10:45:45.242 INFO [6929]: COREGRADE is starting... -- 10:45:45.242 INFO [6929]: Version from config: 1.0 -- 10:45:45.242 DEBUG [6929]: Connecting to database... -- 10:45:45.242 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:45:45.242 SQL [6929]: pgsql_db_connect() -- 10:45:45.246 DEBUG [6929]: Database connection successful -- 10:45:45.246 INFO [6929]: _SERVER found -- 10:45:45.246 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 10:45:45.246 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 10:45:45.246 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=3ul9u6h8re3rrlv20a4gafhai2akiohn -- 10:45:45.246 INFO [6929]: QUERY_STRING = /assets/img/footer_1.jpg -- 10:45:45.246 INFO [6929]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:45:45.257 INFO [6929]: COREGRADE is stopping... -- 10:45:45.257 DEBUG [6929]: Closing database connection -- 10:45:45.257 SQL [6929]: pgsql_close() -- 10:45:50.258 INFO [6929]: COREGRADE is starting... -- 10:45:50.259 INFO [6929]: Version from config: 1.0 -- 10:45:50.259 DEBUG [6929]: Connecting to database... -- 10:45:50.259 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:45:50.259 SQL [6929]: pgsql_db_connect() -- 10:45:50.263 DEBUG [6929]: Database connection successful -- 10:45:50.263 INFO [6929]: _SERVER found -- 10:45:50.263 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 10:45:50.263 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 10:45:50.263 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=3ul9u6h8re3rrlv20a4gafhai2akiohn; _gat_gtag_UA_54829827_2=1 -- 10:45:50.263 INFO [6929]: QUERY_STRING = /home/aboutus -- 10:45:50.263 INFO [6929]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:45:50.295 INFO [6929]: COREGRADE is stopping... -- 10:45:50.295 DEBUG [6929]: Closing database connection -- 10:45:50.295 SQL [6929]: pgsql_close() -- 10:45:50.450 INFO [6929]: COREGRADE is starting... -- 10:45:50.450 INFO [6929]: Version from config: 1.0 -- 10:45:50.450 DEBUG [6929]: Connecting to database... -- 10:45:50.450 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:45:50.450 SQL [6929]: pgsql_db_connect() -- 10:45:50.454 DEBUG [6929]: Database connection successful -- 10:45:50.454 INFO [6929]: _SERVER found -- 10:45:50.454 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 10:45:50.454 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 10:45:50.454 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=3ul9u6h8re3rrlv20a4gafhai2akiohn; _gat_gtag_UA_54829827_2=1 -- 10:45:50.454 INFO [6929]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:45:50.454 INFO [6929]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:45:50.465 INFO [6929]: COREGRADE is stopping... -- 10:45:50.465 DEBUG [6929]: Closing database connection -- 10:45:50.465 SQL [6929]: pgsql_close() -- 10:46:12.693 INFO [6925]: COREGRADE is starting... -- 10:46:12.693 INFO [6925]: Version from config: 1.0 -- 10:46:12.693 DEBUG [6925]: Connecting to database... -- 10:46:12.693 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:46:12.693 SQL [6925]: pgsql_db_connect() -- 10:46:12.697 DEBUG [6925]: Database connection successful -- 10:46:12.697 INFO [6925]: _SERVER found -- 10:46:12.697 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 10:46:12.698 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 10:46:12.698 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=3ul9u6h8re3rrlv20a4gafhai2akiohn; _gat_gtag_UA_54829827_2=1 -- 10:46:12.698 INFO [6925]: QUERY_STRING = -- 10:46:12.698 INFO [6925]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:46:12.731 INFO [6925]: COREGRADE is stopping... -- 10:46:12.731 DEBUG [6925]: Closing database connection -- 10:46:12.731 SQL [6925]: pgsql_close() -- 10:46:12.854 INFO [6925]: COREGRADE is starting... -- 10:46:12.854 INFO [6925]: Version from config: 1.0 -- 10:46:12.854 DEBUG [6925]: Connecting to database... -- 10:46:12.854 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:46:12.854 SQL [6925]: pgsql_db_connect() -- 10:46:12.858 DEBUG [6925]: Database connection successful -- 10:46:12.858 INFO [6925]: _SERVER found -- 10:46:12.858 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 10:46:12.858 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 10:46:12.858 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=3ul9u6h8re3rrlv20a4gafhai2akiohn; _gat_gtag_UA_54829827_2=1 -- 10:46:12.858 INFO [6925]: QUERY_STRING = /assets/img/footer_1.jpg -- 10:46:12.858 INFO [6925]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:46:12.869 INFO [6925]: COREGRADE is stopping... -- 10:46:12.869 DEBUG [6925]: Closing database connection -- 10:46:12.869 SQL [6925]: pgsql_close() -- 10:46:17.450 INFO [6925]: COREGRADE is starting... -- 10:46:17.450 INFO [6925]: Version from config: 1.0 -- 10:46:17.450 DEBUG [6925]: Connecting to database... -- 10:46:17.450 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:46:17.450 SQL [6925]: pgsql_db_connect() -- 10:46:17.454 DEBUG [6925]: Database connection successful -- 10:46:17.454 INFO [6925]: _SERVER found -- 10:46:17.454 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 10:46:17.454 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 10:46:17.454 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=3ul9u6h8re3rrlv20a4gafhai2akiohn; _gat_gtag_UA_54829827_2=1 -- 10:46:17.454 INFO [6925]: QUERY_STRING = /home/terms -- 10:46:17.454 INFO [6925]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:46:17.486 INFO [6925]: COREGRADE is stopping... -- 10:46:17.486 DEBUG [6925]: Closing database connection -- 10:46:17.486 SQL [6925]: pgsql_close() -- 10:46:17.632 INFO [6925]: COREGRADE is starting... -- 10:46:17.632 INFO [6925]: Version from config: 1.0 -- 10:46:17.632 DEBUG [6925]: Connecting to database... -- 10:46:17.632 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:46:17.632 SQL [6925]: pgsql_db_connect() -- 10:46:17.637 DEBUG [6925]: Database connection successful -- 10:46:17.637 INFO [6925]: _SERVER found -- 10:46:17.637 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 10:46:17.637 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 10:46:17.637 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=3ul9u6h8re3rrlv20a4gafhai2akiohn; _gat_gtag_UA_54829827_2=1 -- 10:46:17.637 INFO [6925]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:46:17.637 INFO [6925]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:46:17.648 INFO [6925]: COREGRADE is stopping... -- 10:46:17.648 DEBUG [6925]: Closing database connection -- 10:46:17.648 SQL [6925]: pgsql_close() -- 10:47:42.771 INFO [7002]: COREGRADE is starting... -- 10:47:42.772 INFO [7002]: Version from config: 1.0 -- 10:47:42.772 DEBUG [7002]: Connecting to database... -- 10:47:42.772 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:47:42.772 SQL [7002]: pgsql_db_connect() -- 10:47:42.776 DEBUG [7002]: Database connection successful -- 10:47:42.776 INFO [7002]: _SERVER found -- 10:47:42.776 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 10:47:42.776 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 10:47:42.776 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=3ul9u6h8re3rrlv20a4gafhai2akiohn -- 10:47:42.776 INFO [7002]: QUERY_STRING = -- 10:47:42.776 INFO [7002]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:47:42.808 INFO [7002]: COREGRADE is stopping... -- 10:47:42.808 DEBUG [7002]: Closing database connection -- 10:47:42.808 SQL [7002]: pgsql_close() -- 10:47:42.904 INFO [7002]: COREGRADE is starting... -- 10:47:42.904 INFO [7002]: Version from config: 1.0 -- 10:47:42.904 DEBUG [7002]: Connecting to database... -- 10:47:42.904 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:47:42.904 SQL [7002]: pgsql_db_connect() -- 10:47:42.909 DEBUG [7002]: Database connection successful -- 10:47:42.909 INFO [7002]: _SERVER found -- 10:47:42.909 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 10:47:42.909 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 10:47:42.909 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=3ul9u6h8re3rrlv20a4gafhai2akiohn -- 10:47:42.909 INFO [7002]: QUERY_STRING = /assets/img/footer_1.jpg -- 10:47:42.909 INFO [7002]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:47:42.920 INFO [7002]: COREGRADE is stopping... -- 10:47:42.920 DEBUG [7002]: Closing database connection -- 10:47:42.920 SQL [7002]: pgsql_close() -- 10:48:05.311 INFO [6928]: COREGRADE is starting... -- 10:48:05.311 INFO [6928]: Version from config: 1.0 -- 10:48:05.311 DEBUG [6928]: Connecting to database... -- 10:48:05.312 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:48:05.312 SQL [6928]: pgsql_db_connect() -- 10:48:05.316 DEBUG [6928]: Database connection successful -- 10:48:05.316 INFO [6928]: _SERVER found -- 10:48:05.316 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 10:48:05.316 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 10:48:05.316 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=3ul9u6h8re3rrlv20a4gafhai2akiohn; _gat_gtag_UA_54829827_2=1 -- 10:48:05.316 INFO [6928]: QUERY_STRING = /home/privacy -- 10:48:05.316 INFO [6928]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:48:05.349 INFO [6928]: COREGRADE is stopping... -- 10:48:05.349 DEBUG [6928]: Closing database connection -- 10:48:05.349 SQL [6928]: pgsql_close() -- 10:48:05.426 INFO [6928]: COREGRADE is starting... -- 10:48:05.427 INFO [6928]: Version from config: 1.0 -- 10:48:05.427 DEBUG [6928]: Connecting to database... -- 10:48:05.427 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:48:05.427 SQL [6928]: pgsql_db_connect() -- 10:48:05.431 DEBUG [6928]: Database connection successful -- 10:48:05.431 INFO [6928]: _SERVER found -- 10:48:05.431 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 10:48:05.431 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 10:48:05.431 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=3ul9u6h8re3rrlv20a4gafhai2akiohn; _gat_gtag_UA_54829827_2=1 -- 10:48:05.431 INFO [6928]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:48:05.431 INFO [6928]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:48:05.442 INFO [6928]: COREGRADE is stopping... -- 10:48:05.442 DEBUG [6928]: Closing database connection -- 10:48:05.442 SQL [6928]: pgsql_close() -- 10:48:28.404 INFO [7007]: COREGRADE is starting... -- 10:48:28.404 INFO [7007]: Version from config: 1.0 -- 10:48:28.404 DEBUG [7007]: Connecting to database... -- 10:48:28.404 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:48:28.404 SQL [7007]: pgsql_db_connect() -- 10:48:28.408 DEBUG [7007]: Database connection successful -- 10:48:28.408 INFO [7007]: _SERVER found -- 10:48:28.408 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 10:48:28.408 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 10:48:28.408 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=3ul9u6h8re3rrlv20a4gafhai2akiohn; _gat_gtag_UA_54829827_2=1 -- 10:48:28.408 INFO [7007]: QUERY_STRING = -- 10:48:28.408 INFO [7007]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:48:28.441 INFO [7007]: COREGRADE is stopping... -- 10:48:28.441 DEBUG [7007]: Closing database connection -- 10:48:28.441 SQL [7007]: pgsql_close() -- 10:48:31.219 INFO [7007]: COREGRADE is starting... -- 10:48:31.219 INFO [7007]: Version from config: 1.0 -- 10:48:31.219 DEBUG [7007]: Connecting to database... -- 10:48:31.219 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:48:31.219 SQL [7007]: pgsql_db_connect() -- 10:48:31.223 DEBUG [7007]: Database connection successful -- 10:48:31.223 INFO [7007]: _SERVER found -- 10:48:31.223 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 10:48:31.223 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 10:48:31.223 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=3ul9u6h8re3rrlv20a4gafhai2akiohn; _gat_gtag_UA_54829827_2=1 -- 10:48:31.223 INFO [7007]: QUERY_STRING = /home/security -- 10:48:31.223 INFO [7007]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:48:31.255 INFO [7007]: COREGRADE is stopping... -- 10:48:31.255 DEBUG [7007]: Closing database connection -- 10:48:31.255 SQL [7007]: pgsql_close() -- 10:48:31.380 INFO [7007]: COREGRADE is starting... -- 10:48:31.380 INFO [7007]: Version from config: 1.0 -- 10:48:31.380 DEBUG [7007]: Connecting to database... -- 10:48:31.380 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:48:31.380 SQL [7007]: pgsql_db_connect() -- 10:48:31.384 DEBUG [7007]: Database connection successful -- 10:48:31.384 INFO [7007]: _SERVER found -- 10:48:31.384 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 10:48:31.384 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 10:48:31.384 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=3ul9u6h8re3rrlv20a4gafhai2akiohn; _gat_gtag_UA_54829827_2=1 -- 10:48:31.384 INFO [7007]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:48:31.384 INFO [7007]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:48:31.395 INFO [7007]: COREGRADE is stopping... -- 10:48:31.395 DEBUG [7007]: Closing database connection -- 10:48:31.395 SQL [7007]: pgsql_close() -- 10:48:59.193 INFO [6927]: COREGRADE is starting... -- 10:48:59.193 INFO [6927]: Version from config: 1.0 -- 10:48:59.193 DEBUG [6927]: Connecting to database... -- 10:48:59.193 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:48:59.193 SQL [6927]: pgsql_db_connect() -- 10:48:59.198 DEBUG [6927]: Database connection successful -- 10:48:59.198 INFO [6927]: _SERVER found -- 10:48:59.198 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 10:48:59.198 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 10:48:59.198 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=3ul9u6h8re3rrlv20a4gafhai2akiohn -- 10:48:59.198 INFO [6927]: QUERY_STRING = /home/security -- 10:48:59.198 INFO [6927]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:48:59.231 INFO [6927]: COREGRADE is stopping... -- 10:48:59.231 DEBUG [6927]: Closing database connection -- 10:48:59.231 SQL [6927]: pgsql_close() -- 10:48:59.395 INFO [6927]: COREGRADE is starting... -- 10:48:59.396 INFO [6927]: Version from config: 1.0 -- 10:48:59.396 DEBUG [6927]: Connecting to database... -- 10:48:59.396 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:48:59.396 SQL [6927]: pgsql_db_connect() -- 10:48:59.400 DEBUG [6927]: Database connection successful -- 10:48:59.400 INFO [6927]: _SERVER found -- 10:48:59.400 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 10:48:59.400 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 10:48:59.400 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=3ul9u6h8re3rrlv20a4gafhai2akiohn -- 10:48:59.400 INFO [6927]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:48:59.400 INFO [6927]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:48:59.411 INFO [6927]: COREGRADE is stopping... -- 10:48:59.411 DEBUG [6927]: Closing database connection -- 10:48:59.411 SQL [6927]: pgsql_close() -- 10:49:07.367 INFO [7005]: COREGRADE is starting... -- 10:49:07.368 INFO [7005]: Version from config: 1.0 -- 10:49:07.368 DEBUG [7005]: Connecting to database... -- 10:49:07.368 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:07.368 SQL [7005]: pgsql_db_connect() -- 10:49:07.372 DEBUG [7005]: Database connection successful -- 10:49:07.372 INFO [7005]: _SERVER found -- 10:49:07.372 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 10:49:07.372 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 10:49:07.372 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=ihqb3tik5m9ju854gfgi74383m75su2c -- 10:49:07.372 INFO [7005]: QUERY_STRING = -- 10:49:07.372 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:49:07.406 INFO [7005]: COREGRADE is stopping... -- 10:49:07.406 DEBUG [7005]: Closing database connection -- 10:49:07.406 SQL [7005]: pgsql_close() -- 10:49:07.602 INFO [7005]: COREGRADE is starting... -- 10:49:07.602 INFO [7005]: Version from config: 1.0 -- 10:49:07.602 DEBUG [7005]: Connecting to database... -- 10:49:07.602 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:07.602 SQL [7005]: pgsql_db_connect() -- 10:49:07.607 DEBUG [7005]: Database connection successful -- 10:49:07.607 INFO [7005]: _SERVER found -- 10:49:07.607 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 10:49:07.607 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 10:49:07.607 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=9md4b3u4pkbmbloj5slh3j87og1odf7m -- 10:49:07.607 INFO [7005]: QUERY_STRING = /assets/img/footer_1.jpg -- 10:49:07.607 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:49:07.618 INFO [7005]: COREGRADE is stopping... -- 10:49:07.618 DEBUG [7005]: Closing database connection -- 10:49:07.618 SQL [7005]: pgsql_close() -- 10:49:07.692 INFO [7004]: COREGRADE is starting... -- 10:49:07.692 INFO [7004]: Version from config: 1.0 -- 10:49:07.692 DEBUG [7004]: Connecting to database... -- 10:49:07.692 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:07.692 SQL [7004]: pgsql_db_connect() -- 10:49:07.696 DEBUG [7004]: Database connection successful -- 10:49:07.696 INFO [7004]: _SERVER found -- 10:49:07.696 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 10:49:07.696 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 10:49:07.696 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=9md4b3u4pkbmbloj5slh3j87og1odf7m -- 10:49:07.696 INFO [7004]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 10:49:07.696 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:49:07.708 INFO [7004]: COREGRADE is stopping... -- 10:49:07.708 DEBUG [7004]: Closing database connection -- 10:49:07.708 SQL [7004]: pgsql_close() -- 10:49:11.484 INFO [7004]: COREGRADE is starting... -- 10:49:11.484 INFO [7004]: Version from config: 1.0 -- 10:49:11.484 DEBUG [7004]: Connecting to database... -- 10:49:11.484 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:11.484 SQL [7004]: pgsql_db_connect() -- 10:49:11.488 DEBUG [7004]: Database connection successful -- 10:49:11.488 INFO [7004]: _SERVER found -- 10:49:11.488 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 10:49:11.488 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 10:49:11.488 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=9md4b3u4pkbmbloj5slh3j87og1odf7m; _gat_gtag_UA_54829827_2=1 -- 10:49:11.488 INFO [7004]: QUERY_STRING = /home/aboutus -- 10:49:11.488 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:49:11.519 INFO [7004]: COREGRADE is stopping... -- 10:49:11.519 DEBUG [7004]: Closing database connection -- 10:49:11.520 SQL [7004]: pgsql_close() -- 10:49:11.690 INFO [7004]: COREGRADE is starting... -- 10:49:11.690 INFO [7004]: Version from config: 1.0 -- 10:49:11.690 DEBUG [7004]: Connecting to database... -- 10:49:11.690 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:11.690 SQL [7004]: pgsql_db_connect() -- 10:49:11.694 DEBUG [7004]: Database connection successful -- 10:49:11.694 INFO [7004]: _SERVER found -- 10:49:11.694 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 10:49:11.694 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 10:49:11.694 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=9md4b3u4pkbmbloj5slh3j87og1odf7m; _gat_gtag_UA_54829827_2=1 -- 10:49:11.694 INFO [7004]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:49:11.694 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:49:11.705 INFO [7004]: COREGRADE is stopping... -- 10:49:11.706 DEBUG [7004]: Closing database connection -- 10:49:11.706 SQL [7004]: pgsql_close() -- 10:49:11.787 INFO [7004]: COREGRADE is starting... -- 10:49:11.787 INFO [7004]: Version from config: 1.0 -- 10:49:11.787 DEBUG [7004]: Connecting to database... -- 10:49:11.787 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:11.787 SQL [7004]: pgsql_db_connect() -- 10:49:11.791 DEBUG [7004]: Database connection successful -- 10:49:11.791 INFO [7004]: _SERVER found -- 10:49:11.791 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 10:49:11.791 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 10:49:11.791 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=9md4b3u4pkbmbloj5slh3j87og1odf7m; _gat_gtag_UA_54829827_2=1 -- 10:49:11.791 INFO [7004]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:49:11.791 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:49:11.803 INFO [7004]: COREGRADE is stopping... -- 10:49:11.803 DEBUG [7004]: Closing database connection -- 10:49:11.803 SQL [7004]: pgsql_close() -- 10:50:46.184 INFO [7006]: COREGRADE is starting... -- 10:50:46.185 INFO [7006]: Version from config: 1.0 -- 10:50:46.185 DEBUG [7006]: Connecting to database... -- 10:50:46.185 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:46.185 SQL [7006]: pgsql_db_connect() -- 10:50:46.189 DEBUG [7006]: Database connection successful -- 10:50:46.189 INFO [7006]: _SERVER found -- 10:50:46.189 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 10:50:46.189 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:46.189 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=9md4b3u4pkbmbloj5slh3j87og1odf7m -- 10:50:46.189 INFO [7006]: QUERY_STRING = /home/aboutus -- 10:50:46.189 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:50:46.224 INFO [7006]: COREGRADE is stopping... -- 10:50:46.224 DEBUG [7006]: Closing database connection -- 10:50:46.224 SQL [7006]: pgsql_close() -- 10:50:46.420 INFO [7006]: COREGRADE is starting... -- 10:50:46.420 INFO [7006]: Version from config: 1.0 -- 10:50:46.420 DEBUG [7006]: Connecting to database... -- 10:50:46.420 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:46.420 SQL [7006]: pgsql_db_connect() -- 10:50:46.424 DEBUG [7006]: Database connection successful -- 10:50:46.424 INFO [7006]: _SERVER found -- 10:50:46.424 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 10:50:46.424 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:46.424 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=9md4b3u4pkbmbloj5slh3j87og1odf7m -- 10:50:46.424 INFO [7006]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:50:46.424 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:50:46.436 INFO [7006]: COREGRADE is stopping... -- 10:50:46.436 DEBUG [7006]: Closing database connection -- 10:50:46.436 SQL [7006]: pgsql_close() -- 10:50:46.493 INFO [6983]: COREGRADE is starting... -- 10:50:46.494 INFO [6983]: Version from config: 1.0 -- 10:50:46.494 DEBUG [6983]: Connecting to database... -- 10:50:46.494 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:46.494 SQL [6983]: pgsql_db_connect() -- 10:50:46.498 DEBUG [6983]: Database connection successful -- 10:50:46.498 INFO [6983]: _SERVER found -- 10:50:46.498 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:50:46.498 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:46.498 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=9md4b3u4pkbmbloj5slh3j87og1odf7m -- 10:50:46.498 INFO [6983]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:50:46.498 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:50:46.510 INFO [6983]: COREGRADE is stopping... -- 10:50:46.510 DEBUG [6983]: Closing database connection -- 10:50:46.510 SQL [6983]: pgsql_close() -- 10:50:47.862 INFO [6983]: COREGRADE is starting... -- 10:50:47.862 INFO [6983]: Version from config: 1.0 -- 10:50:47.862 DEBUG [6983]: Connecting to database... -- 10:50:47.862 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:47.862 SQL [6983]: pgsql_db_connect() -- 10:50:47.866 DEBUG [6983]: Database connection successful -- 10:50:47.866 INFO [6983]: _SERVER found -- 10:50:47.866 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:50:47.866 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:47.866 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=9md4b3u4pkbmbloj5slh3j87og1odf7m -- 10:50:47.866 INFO [6983]: QUERY_STRING = /home/terms -- 10:50:47.866 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:50:47.901 INFO [6983]: COREGRADE is stopping... -- 10:50:47.901 DEBUG [6983]: Closing database connection -- 10:50:47.901 SQL [6983]: pgsql_close() -- 10:50:48.053 INFO [6983]: COREGRADE is starting... -- 10:50:48.053 INFO [6983]: Version from config: 1.0 -- 10:50:48.053 DEBUG [6983]: Connecting to database... -- 10:50:48.053 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:48.053 SQL [6983]: pgsql_db_connect() -- 10:50:48.057 DEBUG [6983]: Database connection successful -- 10:50:48.057 INFO [6983]: _SERVER found -- 10:50:48.057 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:50:48.057 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:48.057 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=9md4b3u4pkbmbloj5slh3j87og1odf7m -- 10:50:48.057 INFO [6983]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:50:48.057 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:50:48.069 INFO [6983]: COREGRADE is stopping... -- 10:50:48.069 DEBUG [6983]: Closing database connection -- 10:50:48.069 SQL [6983]: pgsql_close() -- 10:50:48.136 INFO [6983]: COREGRADE is starting... -- 10:50:48.136 INFO [6983]: Version from config: 1.0 -- 10:50:48.136 DEBUG [6983]: Connecting to database... -- 10:50:48.136 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:48.136 SQL [6983]: pgsql_db_connect() -- 10:50:48.140 DEBUG [6983]: Database connection successful -- 10:50:48.140 INFO [6983]: _SERVER found -- 10:50:48.140 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:50:48.140 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:48.140 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=9md4b3u4pkbmbloj5slh3j87og1odf7m -- 10:50:48.140 INFO [6983]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:50:48.140 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:50:48.152 INFO [6983]: COREGRADE is stopping... -- 10:50:48.152 DEBUG [6983]: Closing database connection -- 10:50:48.152 SQL [6983]: pgsql_close() -- 10:50:49.804 INFO [6983]: COREGRADE is starting... -- 10:50:49.804 INFO [6983]: Version from config: 1.0 -- 10:50:49.804 DEBUG [6983]: Connecting to database... -- 10:50:49.804 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:49.804 SQL [6983]: pgsql_db_connect() -- 10:50:49.808 DEBUG [6983]: Database connection successful -- 10:50:49.808 INFO [6983]: _SERVER found -- 10:50:49.808 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:50:49.808 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:49.808 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=9md4b3u4pkbmbloj5slh3j87og1odf7m -- 10:50:49.808 INFO [6983]: QUERY_STRING = /home/privacy -- 10:50:49.808 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:50:49.842 INFO [6983]: COREGRADE is stopping... -- 10:50:49.842 DEBUG [6983]: Closing database connection -- 10:50:49.842 SQL [6983]: pgsql_close() -- 10:50:49.994 INFO [6983]: COREGRADE is starting... -- 10:50:49.994 INFO [6983]: Version from config: 1.0 -- 10:50:49.994 DEBUG [6983]: Connecting to database... -- 10:50:49.994 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:49.994 SQL [6983]: pgsql_db_connect() -- 10:50:49.998 DEBUG [6983]: Database connection successful -- 10:50:49.998 INFO [6983]: _SERVER found -- 10:50:49.999 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:50:49.999 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:49.999 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=9md4b3u4pkbmbloj5slh3j87og1odf7m -- 10:50:49.999 INFO [6983]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:50:49.999 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:50:50.011 INFO [6983]: COREGRADE is stopping... -- 10:50:50.011 DEBUG [6983]: Closing database connection -- 10:50:50.011 SQL [6983]: pgsql_close() -- 10:50:50.101 INFO [6983]: COREGRADE is starting... -- 10:50:50.101 INFO [6983]: Version from config: 1.0 -- 10:50:50.101 DEBUG [6983]: Connecting to database... -- 10:50:50.101 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:50.101 SQL [6983]: pgsql_db_connect() -- 10:50:50.105 DEBUG [6983]: Database connection successful -- 10:50:50.105 INFO [6983]: _SERVER found -- 10:50:50.105 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:50:50.105 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:50.105 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=9md4b3u4pkbmbloj5slh3j87og1odf7m -- 10:50:50.105 INFO [6983]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:50:50.105 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:50:50.117 INFO [6983]: COREGRADE is stopping... -- 10:50:50.117 DEBUG [6983]: Closing database connection -- 10:50:50.117 SQL [6983]: pgsql_close() -- 10:50:51.450 INFO [6983]: COREGRADE is starting... -- 10:50:51.450 INFO [6983]: Version from config: 1.0 -- 10:50:51.450 DEBUG [6983]: Connecting to database... -- 10:50:51.450 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:51.450 SQL [6983]: pgsql_db_connect() -- 10:50:51.454 DEBUG [6983]: Database connection successful -- 10:50:51.454 INFO [6983]: _SERVER found -- 10:50:51.454 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:50:51.454 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:51.454 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=9md4b3u4pkbmbloj5slh3j87og1odf7m -- 10:50:51.454 INFO [6983]: QUERY_STRING = /home/security -- 10:50:51.454 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:50:51.488 INFO [6983]: COREGRADE is stopping... -- 10:50:51.488 DEBUG [6983]: Closing database connection -- 10:50:51.488 SQL [6983]: pgsql_close() -- 10:50:51.633 INFO [6983]: COREGRADE is starting... -- 10:50:51.633 INFO [6983]: Version from config: 1.0 -- 10:50:51.633 DEBUG [6983]: Connecting to database... -- 10:50:51.633 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:51.633 SQL [6983]: pgsql_db_connect() -- 10:50:51.637 DEBUG [6983]: Database connection successful -- 10:50:51.637 INFO [6983]: _SERVER found -- 10:50:51.637 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:50:51.637 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:51.637 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=9md4b3u4pkbmbloj5slh3j87og1odf7m -- 10:50:51.637 INFO [6983]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:50:51.637 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:50:51.649 INFO [6983]: COREGRADE is stopping... -- 10:50:51.649 DEBUG [6983]: Closing database connection -- 10:50:51.649 SQL [6983]: pgsql_close() -- 10:50:51.702 INFO [6983]: COREGRADE is starting... -- 10:50:51.702 INFO [6983]: Version from config: 1.0 -- 10:50:51.702 DEBUG [6983]: Connecting to database... -- 10:50:51.702 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:50:51.702 SQL [6983]: pgsql_db_connect() -- 10:50:51.706 DEBUG [6983]: Database connection successful -- 10:50:51.706 INFO [6983]: _SERVER found -- 10:50:51.706 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 10:50:51.706 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 10:50:51.706 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; _gid=GA1.2.552129348.1586781507; ci_session=9md4b3u4pkbmbloj5slh3j87og1odf7m -- 10:50:51.706 INFO [6983]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 10:50:51.706 INFO [6983]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:50:51.718 INFO [6983]: COREGRADE is stopping... -- 10:50:51.718 DEBUG [6983]: Closing database connection -- 10:50:51.718 SQL [6983]: pgsql_close() -- 11:03:05.292 INFO [6929]: COREGRADE is starting... -- 11:03:05.292 INFO [6929]: Version from config: 1.0 -- 11:03:05.292 DEBUG [6929]: Connecting to database... -- 11:03:05.292 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:03:05.293 SQL [6929]: pgsql_db_connect() -- 11:03:05.297 DEBUG [6929]: Database connection successful -- 11:03:05.297 INFO [6929]: _SERVER found -- 11:03:05.297 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 11:03:05.297 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 11:03:05.297 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800 -- 11:03:05.297 INFO [6929]: QUERY_STRING = -- 11:03:05.297 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:03:05.331 INFO [6929]: COREGRADE is stopping... -- 11:03:05.332 DEBUG [6929]: Closing database connection -- 11:03:05.332 SQL [6929]: pgsql_close() -- 11:03:06.325 INFO [6929]: COREGRADE is starting... -- 11:03:06.326 INFO [6929]: Version from config: 1.0 -- 11:03:06.326 DEBUG [6929]: Connecting to database... -- 11:03:06.326 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:03:06.326 SQL [6929]: pgsql_db_connect() -- 11:03:06.330 DEBUG [6929]: Database connection successful -- 11:03:06.330 INFO [6929]: _SERVER found -- 11:03:06.330 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 11:03:06.330 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 11:03:06.330 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=ggh9qre2mgbgs1rb6kodihtlqqop78dh -- 11:03:06.330 INFO [6929]: QUERY_STRING = /assets/img/footer_1.jpg -- 11:03:06.330 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:03:06.341 INFO [6929]: COREGRADE is stopping... -- 11:03:06.341 DEBUG [6929]: Closing database connection -- 11:03:06.341 SQL [6929]: pgsql_close() -- 11:03:17.525 INFO [6928]: COREGRADE is starting... -- 11:03:17.525 INFO [6928]: Version from config: 1.0 -- 11:03:17.525 DEBUG [6928]: Connecting to database... -- 11:03:17.525 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:03:17.525 SQL [6928]: pgsql_db_connect() -- 11:03:17.529 DEBUG [6928]: Database connection successful -- 11:03:17.529 INFO [6928]: _SERVER found -- 11:03:17.529 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 11:03:17.529 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 11:03:17.529 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=ggh9qre2mgbgs1rb6kodihtlqqop78dh; _gid=GA1.2.1647021683.1586790185; _gat_gtag_UA_54829827_2=1 -- 11:03:17.529 INFO [6928]: QUERY_STRING = /home/security -- 11:03:17.529 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:03:17.562 INFO [6928]: COREGRADE is stopping... -- 11:03:17.562 DEBUG [6928]: Closing database connection -- 11:03:17.562 SQL [6928]: pgsql_close() -- 11:03:17.958 INFO [7007]: COREGRADE is starting... -- 11:03:17.958 INFO [7007]: Version from config: 1.0 -- 11:03:17.958 DEBUG [7007]: Connecting to database... -- 11:03:17.958 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:03:17.958 SQL [7007]: pgsql_db_connect() -- 11:03:17.962 DEBUG [7007]: Database connection successful -- 11:03:17.962 INFO [7007]: _SERVER found -- 11:03:17.962 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 11:03:17.962 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 11:03:17.962 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=ggh9qre2mgbgs1rb6kodihtlqqop78dh; _gid=GA1.2.1647021683.1586790185; _gat_gtag_UA_54829827_2=1 -- 11:03:17.962 INFO [7007]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:03:17.962 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:03:17.974 INFO [7007]: COREGRADE is stopping... -- 11:03:17.974 DEBUG [7007]: Closing database connection -- 11:03:17.974 SQL [7007]: pgsql_close() -- 11:03:28.483 INFO [7004]: COREGRADE is starting... -- 11:03:28.483 INFO [7004]: Version from config: 1.0 -- 11:03:28.483 DEBUG [7004]: Connecting to database... -- 11:03:28.483 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:03:28.483 SQL [7004]: pgsql_db_connect() -- 11:03:28.487 DEBUG [7004]: Database connection successful -- 11:03:28.487 INFO [7004]: _SERVER found -- 11:03:28.487 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 11:03:28.487 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 11:03:28.487 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=ggh9qre2mgbgs1rb6kodihtlqqop78dh; _gid=GA1.2.1647021683.1586790185; _gat_gtag_UA_54829827_2=1 -- 11:03:28.487 INFO [7004]: QUERY_STRING = -- 11:03:28.487 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:03:28.520 INFO [7004]: COREGRADE is stopping... -- 11:03:28.520 DEBUG [7004]: Closing database connection -- 11:03:28.520 SQL [7004]: pgsql_close() -- 11:04:46.512 INFO [6983]: COREGRADE is starting... -- 11:04:46.512 INFO [6983]: Version from config: 1.0 -- 11:04:46.512 DEBUG [6983]: Connecting to database... -- 11:04:46.512 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:04:46.512 SQL [6983]: pgsql_db_connect() -- 11:04:46.516 DEBUG [6983]: Database connection successful -- 11:04:46.516 INFO [6983]: _SERVER found -- 11:04:46.516 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 11:04:46.516 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 11:04:46.516 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845 -- 11:04:46.516 INFO [6983]: QUERY_STRING = -- 11:04:46.516 INFO [6983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:04:46.551 INFO [6983]: COREGRADE is stopping... -- 11:04:46.551 DEBUG [6983]: Closing database connection -- 11:04:46.551 SQL [6983]: pgsql_close() -- 11:04:46.741 INFO [6983]: COREGRADE is starting... -- 11:04:46.742 INFO [6983]: Version from config: 1.0 -- 11:04:46.742 DEBUG [6983]: Connecting to database... -- 11:04:46.742 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:04:46.742 SQL [6983]: pgsql_db_connect() -- 11:04:46.746 DEBUG [6983]: Database connection successful -- 11:04:46.746 INFO [6983]: _SERVER found -- 11:04:46.746 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 11:04:46.746 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 11:04:46.746 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=4buuvdfjm172o8seg3lpasm9cop1k6hd -- 11:04:46.746 INFO [6983]: QUERY_STRING = /assets/img/footer_1.jpg -- 11:04:46.746 INFO [6983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:04:46.758 INFO [6983]: COREGRADE is stopping... -- 11:04:46.758 DEBUG [6983]: Closing database connection -- 11:04:46.758 SQL [6983]: pgsql_close() -- 11:05:20.380 INFO [7002]: COREGRADE is starting... -- 11:05:20.380 INFO [7002]: Version from config: 1.0 -- 11:05:20.380 DEBUG [7002]: Connecting to database... -- 11:05:20.380 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:05:20.380 SQL [7002]: pgsql_db_connect() -- 11:05:20.385 DEBUG [7002]: Database connection successful -- 11:05:20.385 INFO [7002]: _SERVER found -- 11:05:20.385 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 11:05:20.385 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 11:05:20.385 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=4buuvdfjm172o8seg3lpasm9cop1k6hd; _gat_gtag_UA_54829827_2=1 -- 11:05:20.385 INFO [7002]: QUERY_STRING = /home/aboutus -- 11:05:20.385 INFO [7002]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:05:20.417 INFO [7002]: COREGRADE is stopping... -- 11:05:20.417 DEBUG [7002]: Closing database connection -- 11:05:20.417 SQL [7002]: pgsql_close() -- 11:05:20.605 INFO [7002]: COREGRADE is starting... -- 11:05:20.606 INFO [7002]: Version from config: 1.0 -- 11:05:20.606 DEBUG [7002]: Connecting to database... -- 11:05:20.606 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:05:20.606 SQL [7002]: pgsql_db_connect() -- 11:05:20.610 DEBUG [7002]: Database connection successful -- 11:05:20.610 INFO [7002]: _SERVER found -- 11:05:20.610 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 11:05:20.610 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 11:05:20.610 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=4buuvdfjm172o8seg3lpasm9cop1k6hd; _gat_gtag_UA_54829827_2=1 -- 11:05:20.610 INFO [7002]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:05:20.610 INFO [7002]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:05:20.621 INFO [7002]: COREGRADE is stopping... -- 11:05:20.621 DEBUG [7002]: Closing database connection -- 11:05:20.621 SQL [7002]: pgsql_close() -- 11:11:57.634 INFO [6929]: COREGRADE is starting... -- 11:11:57.634 INFO [6929]: Version from config: 1.0 -- 11:11:57.634 DEBUG [6929]: Connecting to database... -- 11:11:57.634 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:11:57.634 SQL [6929]: pgsql_db_connect() -- 11:11:57.638 DEBUG [6929]: Database connection successful -- 11:11:57.638 INFO [6929]: _SERVER found -- 11:11:57.638 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 11:11:57.638 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 11:11:57.638 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; _gat_gtag_UA_54829827_2=1 -- 11:11:57.638 INFO [6929]: QUERY_STRING = -- 11:11:57.638 INFO [6929]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 11:11:57.671 INFO [6929]: COREGRADE is stopping... -- 11:11:57.671 DEBUG [6929]: Closing database connection -- 11:11:57.671 SQL [6929]: pgsql_close() -- 11:11:57.829 INFO [6929]: COREGRADE is starting... -- 11:11:57.829 INFO [6929]: Version from config: 1.0 -- 11:11:57.829 DEBUG [6929]: Connecting to database... -- 11:11:57.829 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:11:57.829 SQL [6929]: pgsql_db_connect() -- 11:11:57.833 DEBUG [6929]: Database connection successful -- 11:11:57.833 INFO [6929]: _SERVER found -- 11:11:57.833 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 11:11:57.833 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 11:11:57.833 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; _gat_gtag_UA_54829827_2=1; ci_session=j9k3dhdgqsnuhngjocut40h94oog77mg -- 11:11:57.833 INFO [6929]: QUERY_STRING = /assets/img/footer_1.jpg -- 11:11:57.833 INFO [6929]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 11:11:57.845 INFO [6929]: COREGRADE is stopping... -- 11:11:57.845 DEBUG [6929]: Closing database connection -- 11:11:57.845 SQL [6929]: pgsql_close() -- 11:12:04.319 INFO [7005]: COREGRADE is starting... -- 11:12:04.320 INFO [7005]: Version from config: 1.0 -- 11:12:04.320 DEBUG [7005]: Connecting to database... -- 11:12:04.320 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:12:04.320 SQL [7005]: pgsql_db_connect() -- 11:12:04.324 DEBUG [7005]: Database connection successful -- 11:12:04.324 INFO [7005]: _SERVER found -- 11:12:04.324 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 11:12:04.324 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 11:12:04.324 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; _gat_gtag_UA_54829827_2=1; ci_session=j9k3dhdgqsnuhngjocut40h94oog77mg -- 11:12:04.324 INFO [7005]: QUERY_STRING = /home/aboutus -- 11:12:04.324 INFO [7005]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 11:12:04.357 INFO [7005]: COREGRADE is stopping... -- 11:12:04.357 DEBUG [7005]: Closing database connection -- 11:12:04.357 SQL [7005]: pgsql_close() -- 11:12:04.562 INFO [7005]: COREGRADE is starting... -- 11:12:04.562 INFO [7005]: Version from config: 1.0 -- 11:12:04.562 DEBUG [7005]: Connecting to database... -- 11:12:04.562 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:12:04.562 SQL [7005]: pgsql_db_connect() -- 11:12:04.567 DEBUG [7005]: Database connection successful -- 11:12:04.567 INFO [7005]: _SERVER found -- 11:12:04.567 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 11:12:04.567 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 11:12:04.567 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; _gat_gtag_UA_54829827_2=1; ci_session=j9k3dhdgqsnuhngjocut40h94oog77mg -- 11:12:04.567 INFO [7005]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:12:04.567 INFO [7005]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 11:12:04.578 INFO [7005]: COREGRADE is stopping... -- 11:12:04.578 DEBUG [7005]: Closing database connection -- 11:12:04.578 SQL [7005]: pgsql_close() -- 11:12:18.382 INFO [6925]: COREGRADE is starting... -- 11:12:18.382 INFO [6925]: Version from config: 1.0 -- 11:12:18.382 DEBUG [6925]: Connecting to database... -- 11:12:18.382 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:12:18.382 SQL [6925]: pgsql_db_connect() -- 11:12:18.386 DEBUG [6925]: Database connection successful -- 11:12:18.386 INFO [6925]: _SERVER found -- 11:12:18.386 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 11:12:18.386 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 11:12:18.386 INFO [6925]: QUERY_STRING = /home/aboutus -- 11:12:18.386 INFO [6925]: HTTP_X_FORWARDED_FOR = 52.114.128.37 -- 11:12:18.417 INFO [6925]: COREGRADE is stopping... -- 11:12:18.417 DEBUG [6925]: Closing database connection -- 11:12:18.417 SQL [6925]: pgsql_close() -- 11:12:22.648 INFO [6925]: COREGRADE is starting... -- 11:12:22.648 INFO [6925]: Version from config: 1.0 -- 11:12:22.648 DEBUG [6925]: Connecting to database... -- 11:12:22.648 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:12:22.648 SQL [6925]: pgsql_db_connect() -- 11:12:22.652 DEBUG [6925]: Database connection successful -- 11:12:22.652 INFO [6925]: _SERVER found -- 11:12:22.652 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 11:12:22.652 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 11:12:22.652 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; _gat_gtag_UA_54829827_2=1; ci_session=j9k3dhdgqsnuhngjocut40h94oog77mg -- 11:12:22.652 INFO [6925]: QUERY_STRING = -- 11:12:22.652 INFO [6925]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 11:12:22.683 INFO [6925]: COREGRADE is stopping... -- 11:12:22.683 DEBUG [6925]: Closing database connection -- 11:12:22.683 SQL [6925]: pgsql_close() -- 11:12:25.086 INFO [6925]: COREGRADE is starting... -- 11:12:25.086 INFO [6925]: Version from config: 1.0 -- 11:12:25.086 DEBUG [6925]: Connecting to database... -- 11:12:25.087 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:12:25.087 SQL [6925]: pgsql_db_connect() -- 11:12:25.091 DEBUG [6925]: Database connection successful -- 11:12:25.091 INFO [6925]: _SERVER found -- 11:12:25.091 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 11:12:25.091 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 11:12:25.091 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; _gat_gtag_UA_54829827_2=1; ci_session=j9k3dhdgqsnuhngjocut40h94oog77mg -- 11:12:25.091 INFO [6925]: QUERY_STRING = /home/security -- 11:12:25.091 INFO [6925]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 11:12:25.123 INFO [6925]: COREGRADE is stopping... -- 11:12:25.123 DEBUG [6925]: Closing database connection -- 11:12:25.123 SQL [6925]: pgsql_close() -- 11:12:25.282 INFO [6925]: COREGRADE is starting... -- 11:12:25.282 INFO [6925]: Version from config: 1.0 -- 11:12:25.283 DEBUG [6925]: Connecting to database... -- 11:12:25.283 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:12:25.283 SQL [6925]: pgsql_db_connect() -- 11:12:25.287 DEBUG [6925]: Database connection successful -- 11:12:25.287 INFO [6925]: _SERVER found -- 11:12:25.287 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 11:12:25.287 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 11:12:25.287 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; _gat_gtag_UA_54829827_2=1; ci_session=j9k3dhdgqsnuhngjocut40h94oog77mg -- 11:12:25.287 INFO [6925]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:12:25.287 INFO [6925]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 11:12:25.298 INFO [6925]: COREGRADE is stopping... -- 11:12:25.298 DEBUG [6925]: Closing database connection -- 11:12:25.298 SQL [6925]: pgsql_close() -- 11:12:30.690 INFO [6927]: COREGRADE is starting... -- 11:12:30.691 INFO [6927]: Version from config: 1.0 -- 11:12:30.691 DEBUG [6927]: Connecting to database... -- 11:12:30.691 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:12:30.691 SQL [6927]: pgsql_db_connect() -- 11:12:30.695 DEBUG [6927]: Database connection successful -- 11:12:30.695 INFO [6927]: _SERVER found -- 11:12:30.695 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 11:12:30.695 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 11:12:30.695 INFO [6927]: QUERY_STRING = /home/security -- 11:12:30.695 INFO [6927]: HTTP_X_FORWARDED_FOR = 52.114.128.37 -- 11:12:30.726 INFO [6927]: COREGRADE is stopping... -- 11:12:30.726 DEBUG [6927]: Closing database connection -- 11:12:30.726 SQL [6927]: pgsql_close() -- 11:12:37.077 INFO [7004]: COREGRADE is starting... -- 11:12:37.078 INFO [7004]: Version from config: 1.0 -- 11:12:37.078 DEBUG [7004]: Connecting to database... -- 11:12:37.078 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:12:37.078 SQL [7004]: pgsql_db_connect() -- 11:12:37.082 DEBUG [7004]: Database connection successful -- 11:12:37.082 INFO [7004]: _SERVER found -- 11:12:37.082 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 11:12:37.082 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 11:12:37.082 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; _gat_gtag_UA_54829827_2=1; ci_session=j9k3dhdgqsnuhngjocut40h94oog77mg -- 11:12:37.082 INFO [7004]: QUERY_STRING = -- 11:12:37.082 INFO [7004]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 11:12:37.115 INFO [7004]: COREGRADE is stopping... -- 11:12:37.115 DEBUG [7004]: Closing database connection -- 11:12:37.115 SQL [7004]: pgsql_close() -- 11:12:50.042 INFO [6928]: COREGRADE is starting... -- 11:12:50.042 INFO [6928]: Version from config: 1.0 -- 11:12:50.042 DEBUG [6928]: Connecting to database... -- 11:12:50.042 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:12:50.042 SQL [6928]: pgsql_db_connect() -- 11:12:50.046 DEBUG [6928]: Database connection successful -- 11:12:50.046 INFO [6928]: _SERVER found -- 11:12:50.046 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 11:12:50.046 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 11:12:50.046 INFO [6928]: QUERY_STRING = /home/aboutus -- 11:12:50.046 INFO [6928]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:12:50.078 INFO [6928]: COREGRADE is stopping... -- 11:12:50.078 DEBUG [6928]: Closing database connection -- 11:12:50.078 SQL [6928]: pgsql_close() -- 11:12:50.291 INFO [6928]: COREGRADE is starting... -- 11:12:50.291 INFO [6928]: Version from config: 1.0 -- 11:12:50.292 DEBUG [6928]: Connecting to database... -- 11:12:50.292 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:12:50.292 SQL [6928]: pgsql_db_connect() -- 11:12:50.296 DEBUG [6928]: Database connection successful -- 11:12:50.296 INFO [6928]: _SERVER found -- 11:12:50.296 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 11:12:50.296 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 11:12:50.296 INFO [6928]: HTTP_COOKIE = ci_session=tr2o3ne5ocldqm4ghkh00hgr89fe990l -- 11:12:50.296 INFO [6928]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:12:50.296 INFO [6928]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:12:50.307 INFO [6928]: COREGRADE is stopping... -- 11:12:50.307 DEBUG [6928]: Closing database connection -- 11:12:50.307 SQL [6928]: pgsql_close() -- 11:13:09.782 INFO [7002]: COREGRADE is starting... -- 11:13:09.783 INFO [7002]: Version from config: 1.0 -- 11:13:09.783 DEBUG [7002]: Connecting to database... -- 11:13:09.783 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:13:09.783 SQL [7002]: pgsql_db_connect() -- 11:13:09.787 DEBUG [7002]: Database connection successful -- 11:13:09.787 INFO [7002]: _SERVER found -- 11:13:09.787 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 11:13:09.787 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 11:13:09.787 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=j9k3dhdgqsnuhngjocut40h94oog77mg; _gat_gtag_UA_54829827_2=1 -- 11:13:09.787 INFO [7002]: QUERY_STRING = /home/privacy -- 11:13:09.787 INFO [7002]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 11:13:09.819 INFO [7002]: COREGRADE is stopping... -- 11:13:09.819 DEBUG [7002]: Closing database connection -- 11:13:09.819 SQL [7002]: pgsql_close() -- 11:13:09.993 INFO [7002]: COREGRADE is starting... -- 11:13:09.993 INFO [7002]: Version from config: 1.0 -- 11:13:09.993 DEBUG [7002]: Connecting to database... -- 11:13:09.993 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:13:09.993 SQL [7002]: pgsql_db_connect() -- 11:13:09.997 DEBUG [7002]: Database connection successful -- 11:13:09.997 INFO [7002]: _SERVER found -- 11:13:09.997 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 11:13:09.997 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 11:13:09.997 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=j9k3dhdgqsnuhngjocut40h94oog77mg; _gat_gtag_UA_54829827_2=1 -- 11:13:09.997 INFO [7002]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:13:09.997 INFO [7002]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 11:13:10.008 INFO [7002]: COREGRADE is stopping... -- 11:13:10.008 DEBUG [7002]: Closing database connection -- 11:13:10.008 SQL [7002]: pgsql_close() -- 11:13:20.276 INFO [7006]: COREGRADE is starting... -- 11:13:20.277 INFO [7006]: Version from config: 1.0 -- 11:13:20.277 DEBUG [7006]: Connecting to database... -- 11:13:20.277 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:13:20.277 SQL [7006]: pgsql_db_connect() -- 11:13:20.281 DEBUG [7006]: Database connection successful -- 11:13:20.281 INFO [7006]: _SERVER found -- 11:13:20.281 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 11:13:20.281 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 11:13:20.281 INFO [7006]: QUERY_STRING = /home/privacy -- 11:13:20.281 INFO [7006]: HTTP_X_FORWARDED_FOR = 52.114.128.37 -- 11:13:20.312 INFO [7006]: COREGRADE is stopping... -- 11:13:20.312 DEBUG [7006]: Closing database connection -- 11:13:20.312 SQL [7006]: pgsql_close() -- 11:13:38.037 INFO [6983]: COREGRADE is starting... -- 11:13:38.037 INFO [6983]: Version from config: 1.0 -- 11:13:38.037 DEBUG [6983]: Connecting to database... -- 11:13:38.037 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:13:38.037 SQL [6983]: pgsql_db_connect() -- 11:13:38.041 DEBUG [6983]: Database connection successful -- 11:13:38.041 INFO [6983]: _SERVER found -- 11:13:38.041 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 11:13:38.041 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 11:13:38.041 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371 -- 11:13:38.041 INFO [6983]: QUERY_STRING = /home/privacy -- 11:13:38.041 INFO [6983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:13:38.076 INFO [6983]: COREGRADE is stopping... -- 11:13:38.076 DEBUG [6983]: Closing database connection -- 11:13:38.076 SQL [6983]: pgsql_close() -- 11:13:38.282 INFO [6983]: COREGRADE is starting... -- 11:13:38.282 INFO [6983]: Version from config: 1.0 -- 11:13:38.282 DEBUG [6983]: Connecting to database... -- 11:13:38.282 DEBUG [6983]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:13:38.282 SQL [6983]: pgsql_db_connect() -- 11:13:38.286 DEBUG [6983]: Database connection successful -- 11:13:38.286 INFO [6983]: _SERVER found -- 11:13:38.286 INFO [6983]: REMOTE_ADDR = 10.0.0.15 -- 11:13:38.286 INFO [6983]: SERVER_NAME = oameye.works.coregrade.com -- 11:13:38.286 INFO [6983]: HTTP_COOKIE = _ga=GA1.2.1126635332.1581100371; ci_session=ng1a1qgq2bfgg3g15581ouqn2mqmn7mo -- 11:13:38.286 INFO [6983]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:13:38.286 INFO [6983]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:13:38.297 INFO [6983]: COREGRADE is stopping... -- 11:13:38.297 DEBUG [6983]: Closing database connection -- 11:13:38.297 SQL [6983]: pgsql_close() -- 11:13:48.707 INFO [7007]: COREGRADE is starting... -- 11:13:48.707 INFO [7007]: Version from config: 1.0 -- 11:13:48.707 DEBUG [7007]: Connecting to database... -- 11:13:48.707 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:13:48.707 SQL [7007]: pgsql_db_connect() -- 11:13:48.711 DEBUG [7007]: Database connection successful -- 11:13:48.711 INFO [7007]: _SERVER found -- 11:13:48.711 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 11:13:48.711 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 11:13:48.711 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=j9k3dhdgqsnuhngjocut40h94oog77mg -- 11:13:48.711 INFO [7007]: QUERY_STRING = -- 11:13:48.711 INFO [7007]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 11:13:48.743 INFO [7007]: COREGRADE is stopping... -- 11:13:48.743 DEBUG [7007]: Closing database connection -- 11:13:48.743 SQL [7007]: pgsql_close() -- 11:13:52.391 INFO [7007]: COREGRADE is starting... -- 11:13:52.392 INFO [7007]: Version from config: 1.0 -- 11:13:52.392 DEBUG [7007]: Connecting to database... -- 11:13:52.392 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:13:52.392 SQL [7007]: pgsql_db_connect() -- 11:13:52.396 DEBUG [7007]: Database connection successful -- 11:13:52.396 INFO [7007]: _SERVER found -- 11:13:52.396 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 11:13:52.396 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 11:13:52.396 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=j9k3dhdgqsnuhngjocut40h94oog77mg; _gat_gtag_UA_54829827_2=1 -- 11:13:52.396 INFO [7007]: QUERY_STRING = /home/privacy -- 11:13:52.396 INFO [7007]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 11:13:52.427 INFO [7007]: COREGRADE is stopping... -- 11:13:52.427 DEBUG [7007]: Closing database connection -- 11:13:52.427 SQL [7007]: pgsql_close() -- 11:13:52.580 INFO [7007]: COREGRADE is starting... -- 11:13:52.580 INFO [7007]: Version from config: 1.0 -- 11:13:52.580 DEBUG [7007]: Connecting to database... -- 11:13:52.580 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:13:52.580 SQL [7007]: pgsql_db_connect() -- 11:13:52.584 DEBUG [7007]: Database connection successful -- 11:13:52.584 INFO [7007]: _SERVER found -- 11:13:52.584 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 11:13:52.584 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 11:13:52.584 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=j9k3dhdgqsnuhngjocut40h94oog77mg; _gat_gtag_UA_54829827_2=1 -- 11:13:52.584 INFO [7007]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:13:52.584 INFO [7007]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 11:13:52.596 INFO [7007]: COREGRADE is stopping... -- 11:13:52.596 DEBUG [7007]: Closing database connection -- 11:13:52.596 SQL [7007]: pgsql_close() -- 11:14:05.997 INFO [6929]: COREGRADE is starting... -- 11:14:05.997 INFO [6929]: Version from config: 1.0 -- 11:14:05.997 DEBUG [6929]: Connecting to database... -- 11:14:05.997 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:14:05.997 SQL [6929]: pgsql_db_connect() -- 11:14:06.002 DEBUG [6929]: Database connection successful -- 11:14:06.002 INFO [6929]: _SERVER found -- 11:14:06.002 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 11:14:06.002 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 11:14:06.002 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=j9k3dhdgqsnuhngjocut40h94oog77mg; _gat_gtag_UA_54829827_2=1 -- 11:14:06.002 INFO [6929]: QUERY_STRING = -- 11:14:06.002 INFO [6929]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 11:14:06.034 INFO [6929]: COREGRADE is stopping... -- 11:14:06.034 DEBUG [6929]: Closing database connection -- 11:14:06.034 SQL [6929]: pgsql_close() -- 11:14:08.946 INFO [6929]: COREGRADE is starting... -- 11:14:08.946 INFO [6929]: Version from config: 1.0 -- 11:14:08.946 DEBUG [6929]: Connecting to database... -- 11:14:08.946 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:14:08.946 SQL [6929]: pgsql_db_connect() -- 11:14:08.950 DEBUG [6929]: Database connection successful -- 11:14:08.950 INFO [6929]: _SERVER found -- 11:14:08.950 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 11:14:08.950 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 11:14:08.950 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=j9k3dhdgqsnuhngjocut40h94oog77mg; _gat_gtag_UA_54829827_2=1 -- 11:14:08.950 INFO [6929]: QUERY_STRING = /home/terms -- 11:14:08.950 INFO [6929]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 11:14:08.981 INFO [6929]: COREGRADE is stopping... -- 11:14:08.981 DEBUG [6929]: Closing database connection -- 11:14:08.981 SQL [6929]: pgsql_close() -- 11:14:09.158 INFO [6929]: COREGRADE is starting... -- 11:14:09.159 INFO [6929]: Version from config: 1.0 -- 11:14:09.159 DEBUG [6929]: Connecting to database... -- 11:14:09.159 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:14:09.159 SQL [6929]: pgsql_db_connect() -- 11:14:09.163 DEBUG [6929]: Database connection successful -- 11:14:09.163 INFO [6929]: _SERVER found -- 11:14:09.163 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 11:14:09.163 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 11:14:09.163 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=j9k3dhdgqsnuhngjocut40h94oog77mg; _gat_gtag_UA_54829827_2=1 -- 11:14:09.163 INFO [6929]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:14:09.163 INFO [6929]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 11:14:09.174 INFO [6929]: COREGRADE is stopping... -- 11:14:09.174 DEBUG [6929]: Closing database connection -- 11:14:09.174 SQL [6929]: pgsql_close() -- 11:14:17.255 INFO [7005]: COREGRADE is starting... -- 11:14:17.255 INFO [7005]: Version from config: 1.0 -- 11:14:17.255 DEBUG [7005]: Connecting to database... -- 11:14:17.255 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:14:17.255 SQL [7005]: pgsql_db_connect() -- 11:14:17.259 DEBUG [7005]: Database connection successful -- 11:14:17.259 INFO [7005]: _SERVER found -- 11:14:17.259 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 11:14:17.259 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 11:14:17.259 INFO [7005]: QUERY_STRING = /home/terms -- 11:14:17.259 INFO [7005]: HTTP_X_FORWARDED_FOR = 52.114.128.37 -- 11:14:17.291 INFO [7005]: COREGRADE is stopping... -- 11:14:17.291 DEBUG [7005]: Closing database connection -- 11:14:17.291 SQL [7005]: pgsql_close() -- 11:14:47.486 INFO [6925]: COREGRADE is starting... -- 11:14:47.487 INFO [6925]: Version from config: 1.0 -- 11:14:47.487 DEBUG [6925]: Connecting to database... -- 11:14:47.487 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:14:47.487 SQL [6925]: pgsql_db_connect() -- 11:14:47.491 DEBUG [6925]: Database connection successful -- 11:14:47.491 INFO [6925]: _SERVER found -- 11:14:47.491 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 11:14:47.491 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 11:14:47.491 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.784606705.1583345490 -- 11:14:47.491 INFO [6925]: QUERY_STRING = /home/terms -- 11:14:47.491 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:14:47.522 INFO [6925]: COREGRADE is stopping... -- 11:14:47.523 DEBUG [6925]: Closing database connection -- 11:14:47.523 SQL [6925]: pgsql_close() -- 11:14:47.993 INFO [6928]: COREGRADE is starting... -- 11:14:47.993 INFO [6928]: Version from config: 1.0 -- 11:14:47.993 DEBUG [6928]: Connecting to database... -- 11:14:47.993 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:14:47.993 SQL [6928]: pgsql_db_connect() -- 11:14:47.997 DEBUG [6928]: Database connection successful -- 11:14:47.997 INFO [6928]: _SERVER found -- 11:14:47.997 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 11:14:47.997 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 11:14:47.998 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.784606705.1583345490; ci_session=rk684rnsst11e5d3jkdu9gfdg1gp0roe -- 11:14:47.998 INFO [6928]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:14:47.998 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:14:48.009 INFO [6928]: COREGRADE is stopping... -- 11:14:48.009 DEBUG [6928]: Closing database connection -- 11:14:48.009 SQL [6928]: pgsql_close() -- 11:15:03.506 INFO [7007]: COREGRADE is starting... -- 11:15:03.506 INFO [7007]: Version from config: 1.0 -- 11:15:03.506 DEBUG [7007]: Connecting to database... -- 11:15:03.506 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:15:03.506 SQL [7007]: pgsql_db_connect() -- 11:15:03.510 DEBUG [7007]: Database connection successful -- 11:15:03.510 INFO [7007]: _SERVER found -- 11:15:03.510 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 11:15:03.510 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 11:15:03.511 INFO [7007]: HTTP_COOKIE = ci_session=rk684rnsst11e5d3jkdu9gfdg1gp0roe; _ga=GA1.2.784606705.1583345490 -- 11:15:03.511 INFO [7007]: QUERY_STRING = /home/privacy -- 11:15:03.511 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:15:03.542 INFO [7007]: COREGRADE is stopping... -- 11:15:03.542 DEBUG [7007]: Closing database connection -- 11:15:03.542 SQL [7007]: pgsql_close() -- 11:15:04.007 INFO [7007]: COREGRADE is starting... -- 11:15:04.007 INFO [7007]: Version from config: 1.0 -- 11:15:04.007 DEBUG [7007]: Connecting to database... -- 11:15:04.007 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:15:04.007 SQL [7007]: pgsql_db_connect() -- 11:15:04.012 DEBUG [7007]: Database connection successful -- 11:15:04.012 INFO [7007]: _SERVER found -- 11:15:04.012 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 11:15:04.012 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 11:15:04.012 INFO [7007]: HTTP_COOKIE = ci_session=rk684rnsst11e5d3jkdu9gfdg1gp0roe; _ga=GA1.2.784606705.1583345490 -- 11:15:04.012 INFO [7007]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:15:04.012 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:15:04.023 INFO [7007]: COREGRADE is stopping... -- 11:15:04.023 DEBUG [7007]: Closing database connection -- 11:15:04.023 SQL [7007]: pgsql_close() -- 11:15:07.378 INFO [7007]: COREGRADE is starting... -- 11:15:07.378 INFO [7007]: Version from config: 1.0 -- 11:15:07.379 DEBUG [7007]: Connecting to database... -- 11:15:07.379 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:15:07.379 SQL [7007]: pgsql_db_connect() -- 11:15:07.383 DEBUG [7007]: Database connection successful -- 11:15:07.383 INFO [7007]: _SERVER found -- 11:15:07.383 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 11:15:07.383 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 11:15:07.383 INFO [7007]: HTTP_COOKIE = ci_session=rk684rnsst11e5d3jkdu9gfdg1gp0roe; _ga=GA1.2.784606705.1583345490 -- 11:15:07.383 INFO [7007]: QUERY_STRING = /home/security -- 11:15:07.383 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:15:07.414 INFO [7007]: COREGRADE is stopping... -- 11:15:07.414 DEBUG [7007]: Closing database connection -- 11:15:07.414 SQL [7007]: pgsql_close() -- 11:15:07.610 INFO [7005]: COREGRADE is starting... -- 11:15:07.610 INFO [7005]: Version from config: 1.0 -- 11:15:07.610 DEBUG [7005]: Connecting to database... -- 11:15:07.610 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:15:07.610 SQL [7005]: pgsql_db_connect() -- 11:15:07.614 DEBUG [7005]: Database connection successful -- 11:15:07.614 INFO [7005]: _SERVER found -- 11:15:07.614 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 11:15:07.614 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 11:15:07.614 INFO [7005]: HTTP_COOKIE = ci_session=rk684rnsst11e5d3jkdu9gfdg1gp0roe; _ga=GA1.2.784606705.1583345490 -- 11:15:07.614 INFO [7005]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:15:07.614 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:15:07.626 INFO [7005]: COREGRADE is stopping... -- 11:15:07.626 DEBUG [7005]: Closing database connection -- 11:15:07.626 SQL [7005]: pgsql_close() -- 11:15:09.894 INFO [8318]: COREGRADE is starting... -- 11:15:09.894 INFO [8318]: Version from config: 1.0 -- 11:15:09.894 DEBUG [8318]: Connecting to database... -- 11:15:09.894 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:15:09.894 SQL [8318]: pgsql_db_connect() -- 11:15:09.899 DEBUG [8318]: Database connection successful -- 11:15:09.899 INFO [8318]: _SERVER found -- 11:15:09.899 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 11:15:09.899 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 11:15:09.899 INFO [8318]: HTTP_COOKIE = ci_session=rk684rnsst11e5d3jkdu9gfdg1gp0roe; _ga=GA1.2.784606705.1583345490 -- 11:15:09.899 INFO [8318]: QUERY_STRING = /home/aboutus -- 11:15:09.899 INFO [8318]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:15:09.937 INFO [8318]: COREGRADE is stopping... -- 11:15:09.937 DEBUG [8318]: Closing database connection -- 11:15:09.937 SQL [8318]: pgsql_close() -- 11:15:10.142 INFO [8318]: COREGRADE is starting... -- 11:15:10.142 INFO [8318]: Version from config: 1.0 -- 11:15:10.142 DEBUG [8318]: Connecting to database... -- 11:15:10.142 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:15:10.142 SQL [8318]: pgsql_db_connect() -- 11:15:10.146 DEBUG [8318]: Database connection successful -- 11:15:10.146 INFO [8318]: _SERVER found -- 11:15:10.146 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 11:15:10.146 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 11:15:10.146 INFO [8318]: HTTP_COOKIE = ci_session=rk684rnsst11e5d3jkdu9gfdg1gp0roe; _ga=GA1.2.784606705.1583345490 -- 11:15:10.146 INFO [8318]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:15:10.146 INFO [8318]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:15:10.159 INFO [8318]: COREGRADE is stopping... -- 11:15:10.159 DEBUG [8318]: Closing database connection -- 11:15:10.159 SQL [8318]: pgsql_close() -- 11:15:41.846 INFO [6927]: COREGRADE is starting... -- 11:15:41.846 INFO [6927]: Version from config: 1.0 -- 11:15:41.846 DEBUG [6927]: Connecting to database... -- 11:15:41.846 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:15:41.846 SQL [6927]: pgsql_db_connect() -- 11:15:41.850 DEBUG [6927]: Database connection successful -- 11:15:41.850 INFO [6927]: _SERVER found -- 11:15:41.850 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 11:15:41.850 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 11:15:41.850 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=3ul9u6h8re3rrlv20a4gafhai2akiohn -- 11:15:41.850 INFO [6927]: QUERY_STRING = -- 11:15:41.850 INFO [6927]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:15:41.882 INFO [6927]: COREGRADE is stopping... -- 11:15:41.882 DEBUG [6927]: Closing database connection -- 11:15:41.882 SQL [6927]: pgsql_close() -- 11:15:41.969 INFO [6927]: COREGRADE is starting... -- 11:15:41.970 INFO [6927]: Version from config: 1.0 -- 11:15:41.970 DEBUG [6927]: Connecting to database... -- 11:15:41.970 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:15:41.970 SQL [6927]: pgsql_db_connect() -- 11:15:41.974 DEBUG [6927]: Database connection successful -- 11:15:41.974 INFO [6927]: _SERVER found -- 11:15:41.974 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 11:15:41.974 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 11:15:41.974 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=a3rknndkco8me50qilhttn1dc4j2409r -- 11:15:41.974 INFO [6927]: QUERY_STRING = /assets/img/footer_1.jpg -- 11:15:41.974 INFO [6927]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:15:41.985 INFO [6927]: COREGRADE is stopping... -- 11:15:41.985 DEBUG [6927]: Closing database connection -- 11:15:41.985 SQL [6927]: pgsql_close() -- 11:15:45.105 INFO [6927]: COREGRADE is starting... -- 11:15:45.105 INFO [6927]: Version from config: 1.0 -- 11:15:45.105 DEBUG [6927]: Connecting to database... -- 11:15:45.105 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:15:45.105 SQL [6927]: pgsql_db_connect() -- 11:15:45.109 DEBUG [6927]: Database connection successful -- 11:15:45.109 INFO [6927]: _SERVER found -- 11:15:45.109 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 11:15:45.109 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 11:15:45.109 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=a3rknndkco8me50qilhttn1dc4j2409r; _gat_gtag_UA_54829827_2=1 -- 11:15:45.109 INFO [6927]: QUERY_STRING = -- 11:15:45.109 INFO [6927]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:15:45.140 INFO [6927]: COREGRADE is stopping... -- 11:15:45.140 DEBUG [6927]: Closing database connection -- 11:15:45.140 SQL [6927]: pgsql_close() -- 11:16:30.929 INFO [7002]: COREGRADE is starting... -- 11:16:30.929 INFO [7002]: Version from config: 1.0 -- 11:16:30.929 DEBUG [7002]: Connecting to database... -- 11:16:30.929 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:16:30.929 SQL [7002]: pgsql_db_connect() -- 11:16:30.933 DEBUG [7002]: Database connection successful -- 11:16:30.933 INFO [7002]: _SERVER found -- 11:16:30.933 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 11:16:30.933 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 11:16:30.933 INFO [7002]: HTTP_COOKIE = ci_session=rk684rnsst11e5d3jkdu9gfdg1gp0roe; _ga=GA1.2.784606705.1583345490 -- 11:16:30.933 INFO [7002]: QUERY_STRING = -- 11:16:30.933 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:16:30.965 INFO [7002]: COREGRADE is stopping... -- 11:16:30.965 DEBUG [7002]: Closing database connection -- 11:16:30.965 SQL [7002]: pgsql_close() -- 11:16:31.388 INFO [6925]: COREGRADE is starting... -- 11:16:31.388 INFO [6925]: Version from config: 1.0 -- 11:16:31.388 DEBUG [6925]: Connecting to database... -- 11:16:31.388 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:16:31.388 SQL [6925]: pgsql_db_connect() -- 11:16:31.392 DEBUG [6925]: Database connection successful -- 11:16:31.392 INFO [6925]: _SERVER found -- 11:16:31.392 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 11:16:31.392 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 11:16:31.392 INFO [6925]: HTTP_COOKIE = ci_session=rk684rnsst11e5d3jkdu9gfdg1gp0roe; _ga=GA1.2.784606705.1583345490 -- 11:16:31.392 INFO [6925]: QUERY_STRING = /assets/img/footer_1.jpg -- 11:16:31.392 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:16:31.404 INFO [6925]: COREGRADE is stopping... -- 11:16:31.404 DEBUG [6925]: Closing database connection -- 11:16:31.404 SQL [6925]: pgsql_close() -- 11:20:06.268 INFO [7007]: COREGRADE is starting... -- 11:20:06.268 INFO [7007]: Version from config: 1.0 -- 11:20:06.268 DEBUG [7007]: Connecting to database... -- 11:20:06.268 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:20:06.268 SQL [7007]: pgsql_db_connect() -- 11:20:06.273 DEBUG [7007]: Database connection successful -- 11:20:06.273 INFO [7007]: _SERVER found -- 11:20:06.273 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 11:20:06.273 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 11:20:06.273 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=a3rknndkco8me50qilhttn1dc4j2409r -- 11:20:06.273 INFO [7007]: QUERY_STRING = -- 11:20:06.273 INFO [7007]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:20:06.306 INFO [7007]: COREGRADE is stopping... -- 11:20:06.306 DEBUG [7007]: Closing database connection -- 11:20:06.306 SQL [7007]: pgsql_close() -- 11:20:06.424 INFO [7007]: COREGRADE is starting... -- 11:20:06.425 INFO [7007]: Version from config: 1.0 -- 11:20:06.425 DEBUG [7007]: Connecting to database... -- 11:20:06.425 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:20:06.425 SQL [7007]: pgsql_db_connect() -- 11:20:06.429 DEBUG [7007]: Database connection successful -- 11:20:06.429 INFO [7007]: _SERVER found -- 11:20:06.429 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 11:20:06.429 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 11:20:06.429 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=a3rknndkco8me50qilhttn1dc4j2409r -- 11:20:06.429 INFO [7007]: QUERY_STRING = /assets/img/footer_1.jpg -- 11:20:06.429 INFO [7007]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:20:06.440 INFO [7007]: COREGRADE is stopping... -- 11:20:06.440 DEBUG [7007]: Closing database connection -- 11:20:06.440 SQL [7007]: pgsql_close() -- 11:20:09.570 INFO [7007]: COREGRADE is starting... -- 11:20:09.571 INFO [7007]: Version from config: 1.0 -- 11:20:09.571 DEBUG [7007]: Connecting to database... -- 11:20:09.571 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:20:09.571 SQL [7007]: pgsql_db_connect() -- 11:20:09.575 DEBUG [7007]: Database connection successful -- 11:20:09.575 INFO [7007]: _SERVER found -- 11:20:09.575 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 11:20:09.575 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 11:20:09.575 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=a3rknndkco8me50qilhttn1dc4j2409r; _gat_gtag_UA_54829827_2=1 -- 11:20:09.575 INFO [7007]: QUERY_STRING = -- 11:20:09.575 INFO [7007]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:20:09.606 INFO [7007]: COREGRADE is stopping... -- 11:20:09.606 DEBUG [7007]: Closing database connection -- 11:20:09.606 SQL [7007]: pgsql_close() -- 12:22:55.910 INFO [7005]: COREGRADE is starting... -- 12:22:55.910 INFO [7005]: Version from config: 1.0 -- 12:22:55.910 DEBUG [7005]: Connecting to database... -- 12:22:55.911 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:22:55.911 SQL [7005]: pgsql_db_connect() -- 12:22:55.915 DEBUG [7005]: Database connection successful -- 12:22:55.915 INFO [7005]: _SERVER found -- 12:22:55.915 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 12:22:55.915 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 12:22:55.915 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=j9k3dhdgqsnuhngjocut40h94oog77mg -- 12:22:55.915 INFO [7005]: QUERY_STRING = -- 12:22:55.915 INFO [7005]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 12:22:55.955 INFO [7005]: COREGRADE is stopping... -- 12:22:55.955 DEBUG [7005]: Closing database connection -- 12:22:55.955 SQL [7005]: pgsql_close() -- 12:22:56.118 INFO [7005]: COREGRADE is starting... -- 12:22:56.118 INFO [7005]: Version from config: 1.0 -- 12:22:56.118 DEBUG [7005]: Connecting to database... -- 12:22:56.118 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:22:56.118 SQL [7005]: pgsql_db_connect() -- 12:22:56.122 DEBUG [7005]: Database connection successful -- 12:22:56.122 INFO [7005]: _SERVER found -- 12:22:56.122 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 12:22:56.122 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 12:22:56.122 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=ivab4cpc7q0cmlbhe5ks4eohp80r0oe7 -- 12:22:56.122 INFO [7005]: QUERY_STRING = /assets/img/footer_1.jpg -- 12:22:56.122 INFO [7005]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 12:22:56.133 INFO [7005]: COREGRADE is stopping... -- 12:22:56.133 DEBUG [7005]: Closing database connection -- 12:22:56.133 SQL [7005]: pgsql_close() -- 12:23:04.919 INFO [7004]: COREGRADE is starting... -- 12:23:04.919 INFO [7004]: Version from config: 1.0 -- 12:23:04.919 DEBUG [7004]: Connecting to database... -- 12:23:04.919 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:23:04.919 SQL [7004]: pgsql_db_connect() -- 12:23:04.924 DEBUG [7004]: Database connection successful -- 12:23:04.924 INFO [7004]: _SERVER found -- 12:23:04.924 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 12:23:04.924 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 12:23:04.924 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=ivab4cpc7q0cmlbhe5ks4eohp80r0oe7; _gat_gtag_UA_54829827_2=1 -- 12:23:04.924 INFO [7004]: QUERY_STRING = /home/aboutus -- 12:23:04.924 INFO [7004]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 12:23:04.960 INFO [7004]: COREGRADE is stopping... -- 12:23:04.960 DEBUG [7004]: Closing database connection -- 12:23:04.960 SQL [7004]: pgsql_close() -- 12:23:05.134 INFO [7004]: COREGRADE is starting... -- 12:23:05.134 INFO [7004]: Version from config: 1.0 -- 12:23:05.134 DEBUG [7004]: Connecting to database... -- 12:23:05.134 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:23:05.134 SQL [7004]: pgsql_db_connect() -- 12:23:05.138 DEBUG [7004]: Database connection successful -- 12:23:05.138 INFO [7004]: _SERVER found -- 12:23:05.138 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 12:23:05.138 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 12:23:05.138 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=ivab4cpc7q0cmlbhe5ks4eohp80r0oe7; _gat_gtag_UA_54829827_2=1 -- 12:23:05.138 INFO [7004]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 12:23:05.138 INFO [7004]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 12:23:05.149 INFO [7004]: COREGRADE is stopping... -- 12:23:05.149 DEBUG [7004]: Closing database connection -- 12:23:05.149 SQL [7004]: pgsql_close() -- 12:25:43.289 INFO [6927]: COREGRADE is starting... -- 12:25:43.289 INFO [8318]: COREGRADE is starting... -- 12:25:43.289 INFO [6927]: Version from config: 1.0 -- 12:25:43.289 DEBUG [6927]: Connecting to database... -- 12:25:43.289 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:25:43.289 INFO [8318]: Version from config: 1.0 -- 12:25:43.289 DEBUG [8318]: Connecting to database... -- 12:25:43.289 SQL [6927]: pgsql_db_connect() -- 12:25:43.289 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:25:43.289 SQL [8318]: pgsql_db_connect() -- 12:25:43.294 DEBUG [6927]: Database connection successful -- 12:25:43.294 INFO [6927]: _SERVER found -- 12:25:43.294 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 12:25:43.294 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 12:25:43.294 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=ggh9qre2mgbgs1rb6kodihtlqqop78dh; _gid=GA1.2.1647021683.1586790185 -- 12:25:43.294 INFO [6927]: QUERY_STRING = /welcome/viewLogin -- 12:25:43.294 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:25:43.326 INFO [6927]: COREGRADE is stopping... -- 12:25:43.326 DEBUG [6927]: Closing database connection -- 12:25:43.326 SQL [6927]: pgsql_close() -- 12:25:43.294 DEBUG [8318]: Database connection successful -- 12:25:43.294 INFO [8318]: _SERVER found -- 12:25:43.294 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 12:25:43.294 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 12:25:43.294 INFO [8318]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=ggh9qre2mgbgs1rb6kodihtlqqop78dh; _gid=GA1.2.1647021683.1586790185 -- 12:25:43.294 INFO [8318]: QUERY_STRING = /auth -- 12:25:43.294 INFO [8318]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:25:43.331 INFO [8318]: COREGRADE is stopping... -- 12:25:43.331 DEBUG [8318]: Closing database connection -- 12:25:43.331 SQL [8318]: pgsql_close() -- 12:25:43.376 INFO [8318]: COREGRADE is starting... -- 12:25:43.376 INFO [8318]: Version from config: 1.0 -- 12:25:43.376 DEBUG [8318]: Connecting to database... -- 12:25:43.376 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:25:43.376 SQL [8318]: pgsql_db_connect() -- 12:25:43.380 DEBUG [8318]: Database connection successful -- 12:25:43.380 INFO [8318]: _SERVER found -- 12:25:43.380 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 12:25:43.380 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 12:25:43.380 INFO [8318]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1647021683.1586790185; ci_session=gq0dulj48g24ss1lrr9qnoss864596kr -- 12:25:43.380 INFO [8318]: QUERY_STRING = /auth/index -- 12:25:43.380 INFO [8318]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:25:43.415 INFO [8318]: COREGRADE is stopping... -- 12:25:43.415 DEBUG [8318]: Closing database connection -- 12:25:43.415 SQL [8318]: pgsql_close() -- 12:25:43.698 INFO [6927]: COREGRADE is starting... -- 12:25:43.699 INFO [6927]: Version from config: 1.0 -- 12:25:43.699 DEBUG [6927]: Connecting to database... -- 12:25:43.699 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:25:43.699 SQL [6927]: pgsql_db_connect() -- 12:25:43.703 DEBUG [6927]: Database connection successful -- 12:25:43.703 INFO [6927]: _SERVER found -- 12:25:43.703 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 12:25:43.703 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 12:25:43.703 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1647021683.1586790185; ci_session=gq0dulj48g24ss1lrr9qnoss864596kr -- 12:25:43.703 INFO [6927]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 12:25:43.703 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:25:43.714 INFO [6927]: COREGRADE is stopping... -- 12:25:43.714 DEBUG [6927]: Closing database connection -- 12:25:43.714 SQL [6927]: pgsql_close() -- 12:25:52.207 INFO [6928]: COREGRADE is starting... -- 12:25:52.207 INFO [6928]: Version from config: 1.0 -- 12:25:52.207 DEBUG [6928]: Connecting to database... -- 12:25:52.207 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:25:52.207 SQL [6928]: pgsql_db_connect() -- 12:25:52.243 INFO [6928]: COREGRADE is starting... -- 12:25:52.244 INFO [6928]: Version from config: 1.0 -- 12:25:52.244 DEBUG [6928]: Connecting to database... -- 12:25:52.244 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:25:52.244 SQL [6928]: pgsql_db_connect() -- 12:25:52.247 DEBUG [6928]: Database connection successful -- 12:25:52.247 INFO [6928]: _SERVER found -- 12:25:52.247 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 12:25:52.247 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 12:25:52.247 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1647021683.1586790185; ci_session=gq0dulj48g24ss1lrr9qnoss864596kr -- 12:25:52.247 INFO [6928]: QUERY_STRING = -- 12:25:52.247 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:25:52.248 INFO [6928]: SystemStatus()09-09-********~************ -- 12:25:52.248 INFO [6928]: long coregrade_api_main(CVars in, CVars &out) -- 12:25:52.248 INFO [6928]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 12:25:52.248 INFO [6928]: account calls -- 12:25:52.248 INFO [6928]: account_calls() -- 12:25:52.248 INFO [6928]: LoginCoreGradeAccount() -- 12:25:52.248 FLOG_MAX [6928]: REQ_STRING(username) -- 12:25:52.248 FLOG_MAX [6928]: REQ_STRING(password) -- 12:25:52.248 FLOG_MAX [6928]: REQ_STRING(sessionid) -- 12:25:52.248 FLOG_MAX [6928]: long load_db_record( CVars &rec, const char * query, ... ) -- 12:25:52.248 SQL [6928]: pgsql_query() -- 12:25:52.248 SQL [6928]: About to run query: -- 12:25:52.248 SQL [6928]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678') -- 12:25:52.252 SQL [6928]: Found rows: 1 -- 12:25:52.252 FLOG_MAX [6928]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678')) num_cols=16 -- 12:25:52.252 INFO [6928]: long SessionCheck(long uid, const char *sessionid, int create ) -- 12:25:52.252 SQL [6928]: pgsql_exec() -- 12:25:52.252 SQL [6928]: About to run query: -- 12:25:52.252 SQL [6928]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 12:25:52.253 SQL [6928]: PQcmdTuples: 1 -- 12:25:52.253 SQL [6928]: Affected rows: 1 -- 12:25:52.253 SQL [6928]: pgsql_exec() -- 12:25:52.253 SQL [6928]: About to run query: -- 12:25:52.253 SQL [6928]: DELETE FROM members_session WHERE member_id=7 -- 12:25:52.254 SQL [6928]: PQcmdTuples: 0 -- 12:25:52.254 SQL [6928]: Affected rows: 0 -- 12:25:52.254 SQL [6928]: pgsql_query() -- 12:25:52.254 SQL [6928]: About to run query: -- 12:25:52.254 SQL [6928]: SELECT * FROM members_session WHERE member_id=7 AND session<>'EF5BF06B357884501669FD376537C141' -- 12:25:52.254 SQL [6928]: Found rows: 0 -- 12:25:52.254 SQL [6928]: Found rows: 0 -- 12:25:52.255 FLOG_MAX [6928]: long load_db_record( CVars &rec, const char * query, ... ) -- 12:25:52.255 SQL [6928]: pgsql_query() -- 12:25:52.255 SQL [6928]: About to run query: -- 12:25:52.255 SQL [6928]: SELECT * FROM members_session WHERE member_id=7 AND session='EF5BF06B357884501669FD376537C141' -- 12:25:52.255 SQL [6928]: Found rows: 0 -- 12:25:52.255 SQL [6928]: Found rows: 0 -- 12:25:52.255 FLOG_MAX [6928]: insert_db_record() -- 12:25:52.255 SQL [6928]: pgsql_exec() -- 12:25:52.255 SQL [6928]: About to run query: -- 12:25:52.255 SQL [6928]: INSERT INTO members_session (member_id,session) VALUES ('7','EF5BF06B357884501669FD376537C141') -- 12:25:52.257 SQL [6928]: PQcmdTuples: 1 -- 12:25:52.257 SQL [6928]: Affected rows: 1 -- 12:25:52.258 FLOG_MAX [6928]: SELECT currval('members_session_id_seq') -- 12:25:52.258 SQL [6928]: pgsql_query() -- 12:25:52.258 SQL [6928]: About to run query: -- 12:25:52.258 SQL [6928]: SELECT currval('members_session_id_seq') -- 12:25:52.258 SQL [6928]: Found rows: 1 -- 12:25:52.258 INFO [6928]: CreateDefaultPage() -- 12:25:52.258 FLOG_MAX [6928]: long load_db_record( CVars &rec, const char * query, ... ) -- 12:25:52.258 SQL [6928]: pgsql_query() -- 12:25:52.258 SQL [6928]: About to run query: -- 12:25:52.258 SQL [6928]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 12:25:52.258 SQL [6928]: Found rows: 1 -- 12:25:52.258 FLOG_MAX [6928]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 12:25:52.258 SQL [6928]: pgsql_query() -- 12:25:52.258 SQL [6928]: About to run query: -- 12:25:52.258 SQL [6928]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 12:25:52.259 SQL [6928]: Found rows: 1 -- 12:25:52.259 INFO [6928]: /CreateDefaultPage() -- 12:25:52.259 INFO [6928]: /LoginCoreGradeAccount() -- 12:25:52.259 INFO [6928]: RET: added=2020-02-05 09:42:12.816064 -- 12:25:52.259 INFO [6928]: RET: email=tokslaw@chiefsoft.com -- 12:25:52.259 INFO [6928]: RET: firstname=Tokunbo -- 12:25:52.259 INFO [6928]: RET: folder=5D06B187B1E2285A63AD1D0ECB670D98 -- 12:25:52.259 INFO [6928]: RET: id=7 -- 12:25:52.259 INFO [6928]: RET: last_login= -- 12:25:52.259 INFO [6928]: RET: lastname=Lawal -- 12:25:52.259 INFO [6928]: RET: loc=192.168.1.13 -- 12:25:52.259 INFO [6928]: RET: member_id=7 -- 12:25:52.259 INFO [6928]: RET: password=25d55ad283aa400af464c76d713c07ad -- 12:25:52.259 INFO [6928]: RET: phone= -- 12:25:52.259 INFO [6928]: RET: pid= -- 12:25:52.259 INFO [6928]: RET: result=YES I GET TO BACK END -- 12:25:52.259 INFO [6928]: RET: sessionid=EF5BF06B357884501669FD376537C141 -- 12:25:52.259 INFO [6928]: RET: status=1 -- 12:25:52.259 INFO [6928]: RET: stauts=OK -- 12:25:52.259 INFO [6928]: RET: username=tokslaw@chiefsoft.com -- 12:25:52.259 INFO [6928]: RET: verified= -- 12:25:52.260 INFO [6928]: COREGRADE is stopping... -- 12:25:52.260 DEBUG [6928]: Closing database connection -- 12:25:52.260 SQL [6928]: pgsql_close() -- 12:25:52.211 DEBUG [6928]: Database connection successful -- 12:25:52.211 INFO [6928]: _SERVER found -- 12:25:52.211 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 12:25:52.211 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 12:25:52.211 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1647021683.1586790185; ci_session=gq0dulj48g24ss1lrr9qnoss864596kr -- 12:25:52.211 INFO [6928]: QUERY_STRING = /auth -- 12:25:52.211 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:25:52.261 INFO [6928]: COREGRADE is stopping... -- 12:25:52.261 DEBUG [6928]: Closing database connection -- 12:25:52.261 SQL [6928]: pgsql_close() -- 12:25:52.288 INFO [6928]: COREGRADE is starting... -- 12:25:52.288 INFO [6928]: Version from config: 1.0 -- 12:25:52.288 DEBUG [6928]: Connecting to database... -- 12:25:52.288 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:25:52.288 SQL [6928]: pgsql_db_connect() -- 12:25:52.292 DEBUG [6928]: Database connection successful -- 12:25:52.292 INFO [6928]: _SERVER found -- 12:25:52.292 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 12:25:52.292 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 12:25:52.292 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1647021683.1586790185; ci_session=gq0dulj48g24ss1lrr9qnoss864596kr -- 12:25:52.292 INFO [6928]: QUERY_STRING = /member/index -- 12:25:52.292 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:25:52.333 INFO [6928]: COREGRADE is stopping... -- 12:25:52.333 DEBUG [6928]: Closing database connection -- 12:25:52.333 SQL [6928]: pgsql_close() -- 12:25:53.024 INFO [6928]: COREGRADE is starting... -- 12:25:53.024 INFO [6928]: Version from config: 1.0 -- 12:25:53.024 DEBUG [6928]: Connecting to database... -- 12:25:53.024 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:25:53.024 SQL [6928]: pgsql_db_connect() -- 12:25:53.028 DEBUG [6928]: Database connection successful -- 12:25:53.028 INFO [6928]: _SERVER found -- 12:25:53.028 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 12:25:53.028 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 12:25:53.028 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1647021683.1586790185; ci_session=gq0dulj48g24ss1lrr9qnoss864596kr -- 12:25:53.028 INFO [6928]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:25:53.028 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:25:53.039 INFO [6928]: COREGRADE is stopping... -- 12:25:53.039 DEBUG [6928]: Closing database connection -- 12:25:53.039 SQL [6928]: pgsql_close() -- 12:26:01.666 INFO [7007]: COREGRADE is starting... -- 12:26:01.666 INFO [7007]: Version from config: 1.0 -- 12:26:01.666 DEBUG [7007]: Connecting to database... -- 12:26:01.666 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:26:01.666 SQL [7007]: pgsql_db_connect() -- 12:26:01.670 DEBUG [7007]: Database connection successful -- 12:26:01.670 INFO [7007]: _SERVER found -- 12:26:01.670 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 12:26:01.670 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 12:26:01.670 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1647021683.1586790185; ci_session=gq0dulj48g24ss1lrr9qnoss864596kr -- 12:26:01.670 INFO [7007]: QUERY_STRING = /member/configure -- 12:26:01.670 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:26:01.715 INFO [7007]: COREGRADE is stopping... -- 12:26:01.715 DEBUG [7007]: Closing database connection -- 12:26:01.715 SQL [7007]: pgsql_close() -- 12:26:01.971 INFO [7007]: COREGRADE is starting... -- 12:26:01.972 INFO [7007]: Version from config: 1.0 -- 12:26:01.972 DEBUG [7007]: Connecting to database... -- 12:26:01.972 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:26:01.972 SQL [7007]: pgsql_db_connect() -- 12:26:01.975 INFO [7005]: COREGRADE is starting... -- 12:26:01.976 INFO [7005]: Version from config: 1.0 -- 12:26:01.976 DEBUG [7005]: Connecting to database... -- 12:26:01.976 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:26:01.976 SQL [7005]: pgsql_db_connect() -- 12:26:01.976 DEBUG [7007]: Database connection successful -- 12:26:01.976 INFO [7007]: _SERVER found -- 12:26:01.976 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 12:26:01.976 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 12:26:01.976 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1647021683.1586790185; ci_session=gq0dulj48g24ss1lrr9qnoss864596kr -- 12:26:01.976 INFO [7007]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:26:01.976 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:26:01.987 INFO [7007]: COREGRADE is stopping... -- 12:26:01.987 DEBUG [7007]: Closing database connection -- 12:26:01.987 SQL [7007]: pgsql_close() -- 12:26:01.979 DEBUG [7005]: Database connection successful -- 12:26:01.979 INFO [7005]: _SERVER found -- 12:26:01.979 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 12:26:01.979 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 12:26:01.979 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1647021683.1586790185; ci_session=gq0dulj48g24ss1lrr9qnoss864596kr -- 12:26:01.979 INFO [7005]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 12:26:01.979 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:26:01.991 INFO [7005]: COREGRADE is stopping... -- 12:26:01.991 DEBUG [7005]: Closing database connection -- 12:26:01.991 SQL [7005]: pgsql_close() -- 12:26:24.253 INFO [7004]: COREGRADE is starting... -- 12:26:24.253 INFO [7004]: Version from config: 1.0 -- 12:26:24.253 DEBUG [7004]: Connecting to database... -- 12:26:24.253 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:26:24.253 SQL [7004]: pgsql_db_connect() -- 12:26:24.257 DEBUG [7004]: Database connection successful -- 12:26:24.257 INFO [7004]: _SERVER found -- 12:26:24.257 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 12:26:24.257 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 12:26:24.257 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1647021683.1586790185; ci_session=gq0dulj48g24ss1lrr9qnoss864596kr -- 12:26:24.257 INFO [7004]: QUERY_STRING = /member/page -- 12:26:24.257 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:26:24.301 INFO [7004]: COREGRADE is stopping... -- 12:26:24.301 DEBUG [7004]: Closing database connection -- 12:26:24.301 SQL [7004]: pgsql_close() -- 12:26:24.646 INFO [7004]: COREGRADE is starting... -- 12:26:24.646 INFO [7004]: Version from config: 1.0 -- 12:26:24.646 DEBUG [7004]: Connecting to database... -- 12:26:24.646 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:26:24.646 SQL [7004]: pgsql_db_connect() -- 12:26:24.650 DEBUG [7004]: Database connection successful -- 12:26:24.650 INFO [7004]: _SERVER found -- 12:26:24.650 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 12:26:24.650 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 12:26:24.650 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1647021683.1586790185; ci_session=gq0dulj48g24ss1lrr9qnoss864596kr -- 12:26:24.650 INFO [7004]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:26:24.650 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:26:24.661 INFO [7004]: COREGRADE is stopping... -- 12:26:24.661 DEBUG [7004]: Closing database connection -- 12:26:24.661 SQL [7004]: pgsql_close() -- 12:53:32.175 INFO [8318]: COREGRADE is starting... -- 12:53:32.175 INFO [8318]: Version from config: 1.0 -- 12:53:32.175 DEBUG [8318]: Connecting to database... -- 12:53:32.175 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:53:32.175 SQL [8318]: pgsql_db_connect() -- 12:53:32.180 DEBUG [8318]: Database connection successful -- 12:53:32.180 INFO [8318]: _SERVER found -- 12:53:32.180 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 12:53:32.180 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 12:53:32.180 INFO [8318]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=a3rknndkco8me50qilhttn1dc4j2409r -- 12:53:32.180 INFO [8318]: QUERY_STRING = /auth -- 12:53:32.180 INFO [8318]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:53:32.218 INFO [8318]: COREGRADE is stopping... -- 12:53:32.218 DEBUG [8318]: Closing database connection -- 12:53:32.218 SQL [8318]: pgsql_close() -- 12:53:32.228 INFO [8318]: COREGRADE is starting... -- 12:53:32.228 INFO [8318]: Version from config: 1.0 -- 12:53:32.228 DEBUG [8318]: Connecting to database... -- 12:53:32.228 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:53:32.228 SQL [8318]: pgsql_db_connect() -- 12:53:32.232 DEBUG [8318]: Database connection successful -- 12:53:32.232 INFO [8318]: _SERVER found -- 12:53:32.232 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 12:53:32.232 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 12:53:32.232 INFO [8318]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=a3rknndkco8me50qilhttn1dc4j2409r -- 12:53:32.232 INFO [8318]: QUERY_STRING = /welcome/viewLogin -- 12:53:32.232 INFO [8318]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:53:32.266 INFO [8318]: COREGRADE is stopping... -- 12:53:32.266 DEBUG [8318]: Closing database connection -- 12:53:32.266 SQL [8318]: pgsql_close() -- 12:53:33.356 INFO [8318]: COREGRADE is starting... -- 12:53:33.357 INFO [8318]: Version from config: 1.0 -- 12:53:33.357 DEBUG [8318]: Connecting to database... -- 12:53:33.357 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:53:33.357 SQL [8318]: pgsql_db_connect() -- 12:53:33.361 DEBUG [8318]: Database connection successful -- 12:53:33.361 INFO [8318]: _SERVER found -- 12:53:33.361 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 12:53:33.361 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 12:53:33.361 INFO [8318]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=ivab4cpc7q0cmlbhe5ks4eohp80r0oe7 -- 12:53:33.361 INFO [8318]: QUERY_STRING = /home/aboutus -- 12:53:33.361 INFO [8318]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 12:53:33.395 INFO [8318]: COREGRADE is stopping... -- 12:53:33.395 DEBUG [8318]: Closing database connection -- 12:53:33.395 SQL [8318]: pgsql_close() -- 12:53:33.555 INFO [8318]: COREGRADE is starting... -- 12:53:33.555 INFO [8318]: Version from config: 1.0 -- 12:53:33.555 DEBUG [8318]: Connecting to database... -- 12:53:33.555 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:53:33.555 SQL [8318]: pgsql_db_connect() -- 12:53:33.559 DEBUG [8318]: Database connection successful -- 12:53:33.559 INFO [8318]: _SERVER found -- 12:53:33.559 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 12:53:33.559 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 12:53:33.559 INFO [8318]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=hg7e6vtkp5tsa0iljmce788rnqerut18 -- 12:53:33.559 INFO [8318]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 12:53:33.559 INFO [8318]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 12:53:33.572 INFO [8318]: COREGRADE is stopping... -- 12:53:33.572 DEBUG [8318]: Closing database connection -- 12:53:33.572 SQL [8318]: pgsql_close() -- 12:53:34.390 INFO [8318]: COREGRADE is starting... -- 12:53:34.391 INFO [8318]: Version from config: 1.0 -- 12:53:34.391 DEBUG [8318]: Connecting to database... -- 12:53:34.391 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:53:34.391 SQL [8318]: pgsql_db_connect() -- 12:53:34.395 DEBUG [8318]: Database connection successful -- 12:53:34.395 INFO [8318]: _SERVER found -- 12:53:34.395 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 12:53:34.395 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 12:53:34.395 INFO [8318]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=hg7e6vtkp5tsa0iljmce788rnqerut18 -- 12:53:34.395 INFO [8318]: QUERY_STRING = -- 12:53:34.395 INFO [8318]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 12:53:34.435 INFO [8318]: COREGRADE is stopping... -- 12:53:34.435 DEBUG [8318]: Closing database connection -- 12:53:34.435 SQL [8318]: pgsql_close() -- 12:53:34.635 INFO [8318]: COREGRADE is starting... -- 12:53:34.635 INFO [8318]: Version from config: 1.0 -- 12:53:34.635 DEBUG [8318]: Connecting to database... -- 12:53:34.635 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:53:34.635 SQL [8318]: pgsql_db_connect() -- 12:53:34.639 DEBUG [8318]: Database connection successful -- 12:53:34.639 INFO [8318]: _SERVER found -- 12:53:34.639 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 12:53:34.639 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 12:53:34.639 INFO [8318]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=hg7e6vtkp5tsa0iljmce788rnqerut18 -- 12:53:34.639 INFO [8318]: QUERY_STRING = /assets/img/footer_1.jpg -- 12:53:34.639 INFO [8318]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 12:53:34.650 INFO [8318]: COREGRADE is stopping... -- 12:53:34.651 DEBUG [8318]: Closing database connection -- 12:53:34.651 SQL [8318]: pgsql_close() -- 12:53:37.120 INFO [8318]: COREGRADE is starting... -- 12:53:37.120 INFO [8318]: Version from config: 1.0 -- 12:53:37.120 DEBUG [8318]: Connecting to database... -- 12:53:37.120 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:53:37.120 SQL [8318]: pgsql_db_connect() -- 12:53:37.128 INFO [6927]: COREGRADE is starting... -- 12:53:37.128 INFO [6927]: Version from config: 1.0 -- 12:53:37.128 DEBUG [6927]: Connecting to database... -- 12:53:37.128 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:53:37.129 SQL [6927]: pgsql_db_connect() -- 12:53:37.124 DEBUG [8318]: Database connection successful -- 12:53:37.124 INFO [8318]: _SERVER found -- 12:53:37.124 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 12:53:37.124 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 12:53:37.124 INFO [8318]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=hg7e6vtkp5tsa0iljmce788rnqerut18; _gat_gtag_UA_54829827_2=1 -- 12:53:37.124 INFO [8318]: QUERY_STRING = /welcome/viewLogin -- 12:53:37.124 INFO [8318]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 12:53:37.155 INFO [8318]: COREGRADE is stopping... -- 12:53:37.155 DEBUG [8318]: Closing database connection -- 12:53:37.155 SQL [8318]: pgsql_close() -- 12:53:37.133 DEBUG [6927]: Database connection successful -- 12:53:37.133 INFO [6927]: _SERVER found -- 12:53:37.133 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 12:53:37.133 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 12:53:37.133 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=hg7e6vtkp5tsa0iljmce788rnqerut18; _gat_gtag_UA_54829827_2=1 -- 12:53:37.133 INFO [6927]: QUERY_STRING = /auth -- 12:53:37.133 INFO [6927]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 12:53:37.165 INFO [6927]: COREGRADE is stopping... -- 12:53:37.165 DEBUG [6927]: Closing database connection -- 12:53:37.165 SQL [6927]: pgsql_close() -- 12:53:37.187 INFO [6927]: COREGRADE is starting... -- 12:53:37.188 INFO [6927]: Version from config: 1.0 -- 12:53:37.188 DEBUG [6927]: Connecting to database... -- 12:53:37.188 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:53:37.188 SQL [6927]: pgsql_db_connect() -- 12:53:37.191 DEBUG [6927]: Database connection successful -- 12:53:37.192 INFO [6927]: _SERVER found -- 12:53:37.192 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 12:53:37.192 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 12:53:37.192 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=hg7e6vtkp5tsa0iljmce788rnqerut18; _gat_gtag_UA_54829827_2=1 -- 12:53:37.192 INFO [6927]: QUERY_STRING = /auth/index -- 12:53:37.192 INFO [6927]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 12:53:37.223 INFO [6927]: COREGRADE is stopping... -- 12:53:37.223 DEBUG [6927]: Closing database connection -- 12:53:37.223 SQL [6927]: pgsql_close() -- 12:53:38.655 INFO [6927]: COREGRADE is starting... -- 12:53:38.655 INFO [6927]: Version from config: 1.0 -- 12:53:38.655 DEBUG [6927]: Connecting to database... -- 12:53:38.655 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:53:38.655 SQL [6927]: pgsql_db_connect() -- 12:53:38.659 DEBUG [6927]: Database connection successful -- 12:53:38.659 INFO [6927]: _SERVER found -- 12:53:38.659 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 12:53:38.659 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 12:53:38.659 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=hg7e6vtkp5tsa0iljmce788rnqerut18; _gat_gtag_UA_54829827_2=1 -- 12:53:38.659 INFO [6927]: QUERY_STRING = /auth -- 12:53:38.659 INFO [6927]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 12:53:38.691 INFO [6927]: COREGRADE is stopping... -- 12:53:38.691 DEBUG [6927]: Closing database connection -- 12:53:38.691 SQL [6927]: pgsql_close() -- 12:54:37.617 INFO [6929]: COREGRADE is starting... -- 12:54:37.618 INFO [6929]: Version from config: 1.0 -- 12:54:37.618 DEBUG [6929]: Connecting to database... -- 12:54:37.618 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:54:37.618 SQL [6929]: pgsql_db_connect() -- 12:54:37.622 DEBUG [6929]: Database connection successful -- 12:54:37.622 INFO [6929]: _SERVER found -- 12:54:37.622 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 12:54:37.622 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 12:54:37.622 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911 -- 12:54:37.622 INFO [6929]: QUERY_STRING = -- 12:54:37.622 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:54:37.655 INFO [6929]: COREGRADE is stopping... -- 12:54:37.655 DEBUG [6929]: Closing database connection -- 12:54:37.655 SQL [6929]: pgsql_close() -- 12:54:37.777 INFO [7002]: COREGRADE is starting... -- 12:54:37.778 INFO [7002]: Version from config: 1.0 -- 12:54:37.778 DEBUG [7002]: Connecting to database... -- 12:54:37.778 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:54:37.778 SQL [7002]: pgsql_db_connect() -- 12:54:37.782 DEBUG [7002]: Database connection successful -- 12:54:37.782 INFO [7002]: _SERVER found -- 12:54:37.782 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 12:54:37.782 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 12:54:37.782 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=m0tvetu0vbcvv932p31tp6jlrjld601a -- 12:54:37.782 INFO [7002]: QUERY_STRING = /assets/img/footer_1.jpg -- 12:54:37.782 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:54:37.794 INFO [7002]: COREGRADE is stopping... -- 12:54:37.794 DEBUG [7002]: Closing database connection -- 12:54:37.794 SQL [7002]: pgsql_close() -- 12:54:53.243 INFO [7006]: COREGRADE is starting... -- 12:54:53.243 INFO [7006]: Version from config: 1.0 -- 12:54:53.243 DEBUG [7006]: Connecting to database... -- 12:54:53.243 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:54:53.243 SQL [7006]: pgsql_db_connect() -- 12:54:53.250 INFO [6925]: COREGRADE is starting... -- 12:54:53.250 INFO [6925]: Version from config: 1.0 -- 12:54:53.250 DEBUG [6925]: Connecting to database... -- 12:54:53.250 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:54:53.250 SQL [6925]: pgsql_db_connect() -- 12:54:53.247 DEBUG [7006]: Database connection successful -- 12:54:53.247 INFO [7006]: _SERVER found -- 12:54:53.247 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 12:54:53.247 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 12:54:53.247 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=m0tvetu0vbcvv932p31tp6jlrjld601a; _gid=GA1.2.1423132374.1586796878; _gat_gtag_UA_54829827_2=1 -- 12:54:53.247 INFO [7006]: QUERY_STRING = /auth -- 12:54:53.247 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:54:53.283 INFO [7006]: COREGRADE is stopping... -- 12:54:53.283 DEBUG [7006]: Closing database connection -- 12:54:53.283 SQL [7006]: pgsql_close() -- 12:54:53.254 DEBUG [6925]: Database connection successful -- 12:54:53.254 INFO [6925]: _SERVER found -- 12:54:53.254 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 12:54:53.254 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 12:54:53.254 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=m0tvetu0vbcvv932p31tp6jlrjld601a; _gid=GA1.2.1423132374.1586796878; _gat_gtag_UA_54829827_2=1 -- 12:54:53.254 INFO [6925]: QUERY_STRING = /welcome/viewLogin -- 12:54:53.254 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:54:53.286 INFO [6925]: COREGRADE is stopping... -- 12:54:53.286 DEBUG [6925]: Closing database connection -- 12:54:53.286 SQL [6925]: pgsql_close() -- 12:54:53.502 INFO [7005]: COREGRADE is starting... -- 12:54:53.502 INFO [7005]: Version from config: 1.0 -- 12:54:53.502 DEBUG [7005]: Connecting to database... -- 12:54:53.502 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:54:53.502 SQL [7005]: pgsql_db_connect() -- 12:54:53.506 DEBUG [7005]: Database connection successful -- 12:54:53.506 INFO [7005]: _SERVER found -- 12:54:53.506 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 12:54:53.506 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 12:54:53.506 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=m0tvetu0vbcvv932p31tp6jlrjld601a; _gid=GA1.2.1423132374.1586796878; _gat_gtag_UA_54829827_2=1 -- 12:54:53.506 INFO [7005]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 12:54:53.506 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:54:53.518 INFO [7005]: COREGRADE is stopping... -- 12:54:53.518 DEBUG [7005]: Closing database connection -- 12:54:53.518 SQL [7005]: pgsql_close() -- 12:56:21.581 INFO [7004]: COREGRADE is starting... -- 12:56:21.581 INFO [7004]: Version from config: 1.0 -- 12:56:21.581 DEBUG [7004]: Connecting to database... -- 12:56:21.581 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:56:21.581 SQL [7004]: pgsql_db_connect() -- 12:56:21.585 DEBUG [7004]: Database connection successful -- 12:56:21.585 INFO [7004]: _SERVER found -- 12:56:21.585 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 12:56:21.585 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 12:56:21.585 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=m0tvetu0vbcvv932p31tp6jlrjld601a; _gid=GA1.2.1423132374.1586796878 -- 12:56:21.585 INFO [7004]: QUERY_STRING = /auth -- 12:56:21.585 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:56:21.621 INFO [7004]: COREGRADE is stopping... -- 12:56:21.621 DEBUG [7004]: Closing database connection -- 12:56:21.621 SQL [7004]: pgsql_close() -- 12:56:21.739 INFO [7004]: COREGRADE is starting... -- 12:56:21.739 INFO [7004]: Version from config: 1.0 -- 12:56:21.739 DEBUG [7004]: Connecting to database... -- 12:56:21.739 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:56:21.739 SQL [7004]: pgsql_db_connect() -- 12:56:21.743 DEBUG [7004]: Database connection successful -- 12:56:21.743 INFO [7004]: _SERVER found -- 12:56:21.743 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 12:56:21.743 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 12:56:21.743 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=m0tvetu0vbcvv932p31tp6jlrjld601a; _gid=GA1.2.1423132374.1586796878 -- 12:56:21.743 INFO [7004]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 12:56:21.743 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:56:21.755 INFO [7004]: COREGRADE is stopping... -- 12:56:21.755 DEBUG [7004]: Closing database connection -- 12:56:21.755 SQL [7004]: pgsql_close() -- 12:56:22.811 INFO [7004]: COREGRADE is starting... -- 12:56:22.811 INFO [7004]: Version from config: 1.0 -- 12:56:22.811 DEBUG [7004]: Connecting to database... -- 12:56:22.811 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:56:22.811 SQL [7004]: pgsql_db_connect() -- 12:56:22.815 DEBUG [7004]: Database connection successful -- 12:56:22.815 INFO [7004]: _SERVER found -- 12:56:22.815 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 12:56:22.815 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 12:56:22.815 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=m0tvetu0vbcvv932p31tp6jlrjld601a; _gid=GA1.2.1423132374.1586796878 -- 12:56:22.815 INFO [7004]: QUERY_STRING = /auth -- 12:56:22.815 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:56:22.847 INFO [7004]: COREGRADE is stopping... -- 12:56:22.847 DEBUG [7004]: Closing database connection -- 12:56:22.847 SQL [7004]: pgsql_close() -- 12:56:45.123 INFO [8318]: COREGRADE is starting... -- 12:56:45.123 INFO [8318]: Version from config: 1.0 -- 12:56:45.123 DEBUG [8318]: Connecting to database... -- 12:56:45.123 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:56:45.123 SQL [8318]: pgsql_db_connect() -- 12:56:45.127 DEBUG [8318]: Database connection successful -- 12:56:45.127 INFO [8318]: _SERVER found -- 12:56:45.127 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 12:56:45.127 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 12:56:45.127 INFO [8318]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=m0tvetu0vbcvv932p31tp6jlrjld601a; _gid=GA1.2.1423132374.1586796878 -- 12:56:45.127 INFO [8318]: QUERY_STRING = /auth -- 12:56:45.127 INFO [8318]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:56:45.160 INFO [8318]: COREGRADE is stopping... -- 12:56:45.160 DEBUG [8318]: Closing database connection -- 12:56:45.160 SQL [8318]: pgsql_close() -- 12:57:03.305 INFO [6927]: COREGRADE is starting... -- 12:57:03.305 INFO [6927]: Version from config: 1.0 -- 12:57:03.305 DEBUG [6927]: Connecting to database... -- 12:57:03.305 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:57:03.305 SQL [6927]: pgsql_db_connect() -- 12:57:03.309 DEBUG [6927]: Database connection successful -- 12:57:03.309 INFO [6927]: _SERVER found -- 12:57:03.309 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 12:57:03.309 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 12:57:03.309 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=m0tvetu0vbcvv932p31tp6jlrjld601a; _gid=GA1.2.1423132374.1586796878 -- 12:57:03.309 INFO [6927]: QUERY_STRING = /auth -- 12:57:03.309 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:57:03.342 INFO [6927]: COREGRADE is stopping... -- 12:57:03.342 DEBUG [6927]: Closing database connection -- 12:57:03.342 SQL [6927]: pgsql_close() -- 12:58:21.427 INFO [7002]: COREGRADE is starting... -- 12:58:21.428 INFO [7002]: Version from config: 1.0 -- 12:58:21.428 DEBUG [7002]: Connecting to database... -- 12:58:21.428 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:58:21.428 SQL [7002]: pgsql_db_connect() -- 12:58:21.432 DEBUG [7002]: Database connection successful -- 12:58:21.432 INFO [7002]: _SERVER found -- 12:58:21.432 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 12:58:21.432 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 12:58:21.432 INFO [7002]: QUERY_STRING = /auth -- 12:58:21.432 INFO [7002]: HTTP_X_FORWARDED_FOR = 3.84.220.185 -- 12:58:21.465 INFO [7002]: COREGRADE is stopping... -- 12:58:21.465 DEBUG [7002]: Closing database connection -- 12:58:21.465 SQL [7002]: pgsql_close() -- 12:58:21.606 INFO [6929]: COREGRADE is starting... -- 12:58:21.606 INFO [6929]: Version from config: 1.0 -- 12:58:21.606 DEBUG [6929]: Connecting to database... -- 12:58:21.606 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:58:21.606 SQL [6929]: pgsql_db_connect() -- 12:58:21.611 DEBUG [6929]: Database connection successful -- 12:58:21.611 INFO [6929]: _SERVER found -- 12:58:21.611 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 12:58:21.611 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 12:58:21.611 INFO [6929]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 12:58:21.611 INFO [6929]: HTTP_X_FORWARDED_FOR = 3.84.220.185 -- 12:58:21.622 INFO [6929]: COREGRADE is stopping... -- 12:58:21.622 DEBUG [6929]: Closing database connection -- 12:58:21.622 SQL [6929]: pgsql_close() -- 12:58:21.744 INFO [6928]: COREGRADE is starting... -- 12:58:21.744 INFO [6928]: Version from config: 1.0 -- 12:58:21.744 DEBUG [6928]: Connecting to database... -- 12:58:21.744 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:58:21.744 SQL [6928]: pgsql_db_connect() -- 12:58:21.748 DEBUG [6928]: Database connection successful -- 12:58:21.749 INFO [6928]: _SERVER found -- 12:58:21.749 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 12:58:21.749 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 12:58:21.749 INFO [6928]: QUERY_STRING = /favicon.ico -- 12:58:21.749 INFO [6928]: HTTP_X_FORWARDED_FOR = 3.84.220.185 -- 12:58:21.760 INFO [6928]: COREGRADE is stopping... -- 12:58:21.760 DEBUG [6928]: Closing database connection -- 12:58:21.760 SQL [6928]: pgsql_close() -- 13:35:07.072 INFO [7007]: COREGRADE is starting... -- 13:35:07.073 INFO [7007]: Version from config: 1.0 -- 13:35:07.073 DEBUG [7007]: Connecting to database... -- 13:35:07.073 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:35:07.073 SQL [7007]: pgsql_db_connect() -- 13:35:07.078 DEBUG [7007]: Database connection successful -- 13:35:07.078 INFO [7007]: _SERVER found -- 13:35:07.078 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 13:35:07.078 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 13:35:07.078 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=m0tvetu0vbcvv932p31tp6jlrjld601a; _gid=GA1.2.1423132374.1586796878 -- 13:35:07.078 INFO [7007]: QUERY_STRING = /auth -- 13:35:07.078 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:35:07.113 INFO [7007]: COREGRADE is stopping... -- 13:35:07.113 DEBUG [7007]: Closing database connection -- 13:35:07.113 SQL [7007]: pgsql_close() -- 14:03:03.251 INFO [7006]: COREGRADE is starting... -- 14:03:03.252 INFO [7006]: Version from config: 1.0 -- 14:03:03.252 DEBUG [7006]: Connecting to database... -- 14:03:03.252 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:03:03.252 SQL [7006]: pgsql_db_connect() -- 14:03:03.256 DEBUG [7006]: Database connection successful -- 14:03:03.256 INFO [7006]: _SERVER found -- 14:03:03.256 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 14:03:03.256 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 14:03:03.256 INFO [7006]: HTTP_COOKIE = _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 14:03:03.256 INFO [7006]: QUERY_STRING = /home/aboutus -- 14:03:03.256 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:03:03.293 INFO [7006]: COREGRADE is stopping... -- 14:03:03.293 DEBUG [7006]: Closing database connection -- 14:03:03.293 SQL [7006]: pgsql_close() -- 14:03:03.858 INFO [6925]: COREGRADE is starting... -- 14:03:03.858 INFO [6925]: Version from config: 1.0 -- 14:03:03.858 DEBUG [6925]: Connecting to database... -- 14:03:03.858 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:03:03.858 SQL [6925]: pgsql_db_connect() -- 14:03:03.862 DEBUG [6925]: Database connection successful -- 14:03:03.862 INFO [6925]: _SERVER found -- 14:03:03.862 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 14:03:03.862 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 14:03:03.862 INFO [6925]: HTTP_COOKIE = _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490; ci_session=0fci5qs5548o81e87kd1d2oup0hkhrn0 -- 14:03:03.862 INFO [6925]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:03:03.863 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:03:03.875 INFO [6925]: COREGRADE is stopping... -- 14:03:03.875 DEBUG [6925]: Closing database connection -- 14:03:03.875 SQL [6925]: pgsql_close() -- 14:03:07.065 INFO [7006]: COREGRADE is starting... -- 14:03:07.066 INFO [7006]: Version from config: 1.0 -- 14:03:07.066 DEBUG [7006]: Connecting to database... -- 14:03:07.066 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:03:07.066 SQL [7006]: pgsql_db_connect() -- 14:03:07.070 DEBUG [7006]: Database connection successful -- 14:03:07.070 INFO [7006]: _SERVER found -- 14:03:07.070 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 14:03:07.070 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 14:03:07.070 INFO [7006]: HTTP_COOKIE = ci_session=0fci5qs5548o81e87kd1d2oup0hkhrn0; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 14:03:07.070 INFO [7006]: QUERY_STRING = /home/security -- 14:03:07.070 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:03:07.101 INFO [7006]: COREGRADE is stopping... -- 14:03:07.101 DEBUG [7006]: Closing database connection -- 14:03:07.101 SQL [7006]: pgsql_close() -- 14:03:07.599 INFO [7005]: COREGRADE is starting... -- 14:03:07.600 INFO [7005]: Version from config: 1.0 -- 14:03:07.600 DEBUG [7005]: Connecting to database... -- 14:03:07.600 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:03:07.600 SQL [7005]: pgsql_db_connect() -- 14:03:07.604 DEBUG [7005]: Database connection successful -- 14:03:07.604 INFO [7005]: _SERVER found -- 14:03:07.604 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 14:03:07.604 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 14:03:07.604 INFO [7005]: HTTP_COOKIE = ci_session=0fci5qs5548o81e87kd1d2oup0hkhrn0; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 14:03:07.604 INFO [7005]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:03:07.604 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:03:07.616 INFO [7005]: COREGRADE is stopping... -- 14:03:07.616 DEBUG [7005]: Closing database connection -- 14:03:07.616 SQL [7005]: pgsql_close() -- 14:03:08.807 INFO [7005]: COREGRADE is starting... -- 14:03:08.807 INFO [7005]: Version from config: 1.0 -- 14:03:08.807 DEBUG [7005]: Connecting to database... -- 14:03:08.807 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:03:08.807 SQL [7005]: pgsql_db_connect() -- 14:03:08.811 DEBUG [7005]: Database connection successful -- 14:03:08.811 INFO [7005]: _SERVER found -- 14:03:08.811 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 14:03:08.811 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 14:03:08.811 INFO [7005]: HTTP_COOKIE = ci_session=0fci5qs5548o81e87kd1d2oup0hkhrn0; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 14:03:08.811 INFO [7005]: QUERY_STRING = /home/privacy -- 14:03:08.811 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:03:08.844 INFO [7005]: COREGRADE is stopping... -- 14:03:08.844 DEBUG [7005]: Closing database connection -- 14:03:08.844 SQL [7005]: pgsql_close() -- 14:03:09.365 INFO [7005]: COREGRADE is starting... -- 14:03:09.365 INFO [7005]: Version from config: 1.0 -- 14:03:09.365 DEBUG [7005]: Connecting to database... -- 14:03:09.365 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:03:09.365 SQL [7005]: pgsql_db_connect() -- 14:03:09.369 DEBUG [7005]: Database connection successful -- 14:03:09.369 INFO [7005]: _SERVER found -- 14:03:09.369 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 14:03:09.369 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 14:03:09.369 INFO [7005]: HTTP_COOKIE = ci_session=0fci5qs5548o81e87kd1d2oup0hkhrn0; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 14:03:09.369 INFO [7005]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:03:09.369 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:03:09.381 INFO [7005]: COREGRADE is stopping... -- 14:03:09.381 DEBUG [7005]: Closing database connection -- 14:03:09.381 SQL [7005]: pgsql_close() -- 14:03:11.927 INFO [7005]: COREGRADE is starting... -- 14:03:11.927 INFO [7005]: Version from config: 1.0 -- 14:03:11.927 DEBUG [7005]: Connecting to database... -- 14:03:11.927 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:03:11.927 SQL [7005]: pgsql_db_connect() -- 14:03:11.931 DEBUG [7005]: Database connection successful -- 14:03:11.931 INFO [7005]: _SERVER found -- 14:03:11.931 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 14:03:11.931 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 14:03:11.931 INFO [7005]: HTTP_COOKIE = ci_session=0fci5qs5548o81e87kd1d2oup0hkhrn0; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 14:03:11.931 INFO [7005]: QUERY_STRING = /home/terms -- 14:03:11.931 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:03:11.962 INFO [7005]: COREGRADE is stopping... -- 14:03:11.962 DEBUG [7005]: Closing database connection -- 14:03:11.962 SQL [7005]: pgsql_close() -- 14:03:12.310 INFO [7004]: COREGRADE is starting... -- 14:03:12.310 INFO [7004]: Version from config: 1.0 -- 14:03:12.310 DEBUG [7004]: Connecting to database... -- 14:03:12.310 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:03:12.310 SQL [7004]: pgsql_db_connect() -- 14:03:12.314 DEBUG [7004]: Database connection successful -- 14:03:12.314 INFO [7004]: _SERVER found -- 14:03:12.314 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 14:03:12.314 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 14:03:12.314 INFO [7004]: HTTP_COOKIE = ci_session=0fci5qs5548o81e87kd1d2oup0hkhrn0; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 14:03:12.314 INFO [7004]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:03:12.314 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:03:12.326 INFO [7004]: COREGRADE is stopping... -- 14:03:12.326 DEBUG [7004]: Closing database connection -- 14:03:12.326 SQL [7004]: pgsql_close() -- 14:30:20.468 INFO [8318]: COREGRADE is starting... -- 14:30:20.469 INFO [8318]: Version from config: 1.0 -- 14:30:20.469 DEBUG [8318]: Connecting to database... -- 14:30:20.469 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:20.469 SQL [8318]: pgsql_db_connect() -- 14:30:20.473 DEBUG [8318]: Database connection successful -- 14:30:20.473 INFO [8318]: _SERVER found -- 14:30:20.473 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 14:30:20.473 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 14:30:20.473 INFO [8318]: HTTP_COOKIE = ci_session=0fci5qs5548o81e87kd1d2oup0hkhrn0; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 14:30:20.473 INFO [8318]: QUERY_STRING = /home/aboutus -- 14:30:20.473 INFO [8318]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:30:20.507 INFO [8318]: COREGRADE is stopping... -- 14:30:20.507 DEBUG [8318]: Closing database connection -- 14:30:20.507 SQL [8318]: pgsql_close() -- 14:30:20.917 INFO [6927]: COREGRADE is starting... -- 14:30:20.917 INFO [6927]: Version from config: 1.0 -- 14:30:20.917 DEBUG [6927]: Connecting to database... -- 14:30:20.917 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:20.917 SQL [6927]: pgsql_db_connect() -- 14:30:20.921 DEBUG [6927]: Database connection successful -- 14:30:20.921 INFO [6927]: _SERVER found -- 14:30:20.921 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 14:30:20.921 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 14:30:20.921 INFO [6927]: HTTP_COOKIE = ci_session=ji7paf2ai07v9meljjma7sgd9qn8qtq8; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 14:30:20.921 INFO [6927]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:30:20.921 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:30:20.933 INFO [6927]: COREGRADE is stopping... -- 14:30:20.933 DEBUG [6927]: Closing database connection -- 14:30:20.933 SQL [6927]: pgsql_close() -- 14:32:42.916 INFO [7002]: COREGRADE is starting... -- 14:32:42.916 INFO [7002]: Version from config: 1.0 -- 14:32:42.916 DEBUG [7002]: Connecting to database... -- 14:32:42.916 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:32:42.916 SQL [7002]: pgsql_db_connect() -- 14:32:42.920 DEBUG [7002]: Database connection successful -- 14:32:42.920 INFO [7002]: _SERVER found -- 14:32:42.920 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 14:32:42.920 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 14:32:42.920 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275 -- 14:32:42.920 INFO [7002]: QUERY_STRING = -- 14:32:42.920 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:32:42.954 INFO [7002]: COREGRADE is stopping... -- 14:32:42.954 DEBUG [7002]: Closing database connection -- 14:32:42.954 SQL [7002]: pgsql_close() -- 14:32:43.516 INFO [7002]: COREGRADE is starting... -- 14:32:43.517 INFO [7002]: Version from config: 1.0 -- 14:32:43.517 DEBUG [7002]: Connecting to database... -- 14:32:43.517 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:32:43.517 SQL [7002]: pgsql_db_connect() -- 14:32:43.521 DEBUG [7002]: Database connection successful -- 14:32:43.521 INFO [7002]: _SERVER found -- 14:32:43.521 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 14:32:43.521 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 14:32:43.521 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=4kab69et6103g8mmp3div8gjs2q3dvnr -- 14:32:43.521 INFO [7002]: QUERY_STRING = /assets/img/footer_1.jpg -- 14:32:43.521 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:32:43.532 INFO [7002]: COREGRADE is stopping... -- 14:32:43.532 DEBUG [7002]: Closing database connection -- 14:32:43.532 SQL [7002]: pgsql_close() -- 14:32:52.679 INFO [6928]: COREGRADE is starting... -- 14:32:52.679 INFO [6928]: Version from config: 1.0 -- 14:32:52.679 DEBUG [6928]: Connecting to database... -- 14:32:52.679 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:32:52.679 SQL [6928]: pgsql_db_connect() -- 14:32:52.683 DEBUG [6928]: Database connection successful -- 14:32:52.683 INFO [6928]: _SERVER found -- 14:32:52.683 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 14:32:52.683 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 14:32:52.683 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=4kab69et6103g8mmp3div8gjs2q3dvnr; _gat_gtag_UA_54829827_2=1 -- 14:32:52.683 INFO [6928]: QUERY_STRING = /home/terms -- 14:32:52.683 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:32:52.715 INFO [6928]: COREGRADE is stopping... -- 14:32:52.715 DEBUG [6928]: Closing database connection -- 14:32:52.715 SQL [6928]: pgsql_close() -- 14:32:53.140 INFO [6928]: COREGRADE is starting... -- 14:32:53.140 INFO [6928]: Version from config: 1.0 -- 14:32:53.140 DEBUG [6928]: Connecting to database... -- 14:32:53.141 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:32:53.141 SQL [6928]: pgsql_db_connect() -- 14:32:53.145 DEBUG [6928]: Database connection successful -- 14:32:53.145 INFO [6928]: _SERVER found -- 14:32:53.145 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 14:32:53.145 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 14:32:53.145 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=4kab69et6103g8mmp3div8gjs2q3dvnr; _gat_gtag_UA_54829827_2=1 -- 14:32:53.145 INFO [6928]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:32:53.145 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:32:53.156 INFO [6928]: COREGRADE is stopping... -- 14:32:53.156 DEBUG [6928]: Closing database connection -- 14:32:53.156 SQL [6928]: pgsql_close() -- 14:34:29.382 INFO [7007]: COREGRADE is starting... -- 14:34:29.383 INFO [7007]: Version from config: 1.0 -- 14:34:29.383 DEBUG [7007]: Connecting to database... -- 14:34:29.383 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:34:29.383 SQL [7007]: pgsql_db_connect() -- 14:34:29.387 DEBUG [7007]: Database connection successful -- 14:34:29.387 INFO [7007]: _SERVER found -- 14:34:29.387 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 14:34:29.387 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 14:34:29.387 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=4kab69et6103g8mmp3div8gjs2q3dvnr -- 14:34:29.387 INFO [7007]: QUERY_STRING = -- 14:34:29.387 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:34:29.419 INFO [7007]: COREGRADE is stopping... -- 14:34:29.419 DEBUG [7007]: Closing database connection -- 14:34:29.419 SQL [7007]: pgsql_close() -- 14:34:32.340 INFO [6925]: COREGRADE is starting... -- 14:34:32.340 INFO [6925]: Version from config: 1.0 -- 14:34:32.340 DEBUG [6925]: Connecting to database... -- 14:34:32.340 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:34:32.340 SQL [6925]: pgsql_db_connect() -- 14:34:32.345 DEBUG [6925]: Database connection successful -- 14:34:32.345 INFO [6925]: _SERVER found -- 14:34:32.345 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 14:34:32.345 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 14:34:32.345 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=4kab69et6103g8mmp3div8gjs2q3dvnr; _gat_gtag_UA_54829827_2=1 -- 14:34:32.345 INFO [6925]: QUERY_STRING = /home/faq -- 14:34:32.345 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:34:32.377 INFO [6925]: COREGRADE is stopping... -- 14:34:32.377 DEBUG [6925]: Closing database connection -- 14:34:32.377 SQL [6925]: pgsql_close() -- 14:34:32.687 INFO [6925]: COREGRADE is starting... -- 14:34:32.688 INFO [6925]: Version from config: 1.0 -- 14:34:32.688 DEBUG [6925]: Connecting to database... -- 14:34:32.688 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:34:32.688 SQL [6925]: pgsql_db_connect() -- 14:34:32.692 DEBUG [6925]: Database connection successful -- 14:34:32.692 INFO [6925]: _SERVER found -- 14:34:32.692 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 14:34:32.692 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 14:34:32.692 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=4kab69et6103g8mmp3div8gjs2q3dvnr; _gat_gtag_UA_54829827_2=1 -- 14:34:32.692 INFO [6925]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:34:32.692 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:34:32.703 INFO [6925]: COREGRADE is stopping... -- 14:34:32.703 DEBUG [6925]: Closing database connection -- 14:34:32.703 SQL [6925]: pgsql_close() -- 14:35:45.763 INFO [7006]: COREGRADE is starting... -- 14:35:45.763 INFO [7006]: Version from config: 1.0 -- 14:35:45.763 DEBUG [7006]: Connecting to database... -- 14:35:45.763 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:35:45.763 SQL [7006]: pgsql_db_connect() -- 14:35:45.767 DEBUG [7006]: Database connection successful -- 14:35:45.767 INFO [7006]: _SERVER found -- 14:35:45.767 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 14:35:45.767 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 14:35:45.767 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=4kab69et6103g8mmp3div8gjs2q3dvnr -- 14:35:45.767 INFO [7006]: QUERY_STRING = /home/faq -- 14:35:45.767 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:35:45.801 INFO [7006]: COREGRADE is stopping... -- 14:35:45.801 DEBUG [7006]: Closing database connection -- 14:35:45.801 SQL [7006]: pgsql_close() -- 14:35:46.111 INFO [7006]: COREGRADE is starting... -- 14:35:46.111 INFO [7006]: Version from config: 1.0 -- 14:35:46.111 DEBUG [7006]: Connecting to database... -- 14:35:46.111 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:35:46.111 SQL [7006]: pgsql_db_connect() -- 14:35:46.115 DEBUG [7006]: Database connection successful -- 14:35:46.115 INFO [7006]: _SERVER found -- 14:35:46.115 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 14:35:46.115 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 14:35:46.115 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=4kab69et6103g8mmp3div8gjs2q3dvnr -- 14:35:46.115 INFO [7006]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:35:46.115 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:35:46.126 INFO [7006]: COREGRADE is stopping... -- 14:35:46.126 DEBUG [7006]: Closing database connection -- 14:35:46.126 SQL [7006]: pgsql_close() -- 14:36:06.271 INFO [7005]: COREGRADE is starting... -- 14:36:06.272 INFO [7005]: Version from config: 1.0 -- 14:36:06.272 DEBUG [7005]: Connecting to database... -- 14:36:06.272 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:36:06.272 SQL [7005]: pgsql_db_connect() -- 14:36:06.276 DEBUG [7005]: Database connection successful -- 14:36:06.276 INFO [7005]: _SERVER found -- 14:36:06.276 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 14:36:06.276 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 14:36:06.276 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=4kab69et6103g8mmp3div8gjs2q3dvnr -- 14:36:06.276 INFO [7005]: QUERY_STRING = /member/page -- 14:36:06.276 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:36:06.308 INFO [7005]: COREGRADE is stopping... -- 14:36:06.308 DEBUG [7005]: Closing database connection -- 14:36:06.308 SQL [7005]: pgsql_close() -- 14:36:06.336 INFO [7005]: COREGRADE is starting... -- 14:36:06.336 INFO [7005]: Version from config: 1.0 -- 14:36:06.336 DEBUG [7005]: Connecting to database... -- 14:36:06.336 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:36:06.336 SQL [7005]: pgsql_db_connect() -- 14:36:06.340 DEBUG [7005]: Database connection successful -- 14:36:06.340 INFO [7005]: _SERVER found -- 14:36:06.340 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 14:36:06.340 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 14:36:06.340 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=4kab69et6103g8mmp3div8gjs2q3dvnr -- 14:36:06.340 INFO [7005]: QUERY_STRING = -- 14:36:06.340 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:36:06.371 INFO [7005]: COREGRADE is stopping... -- 14:36:06.371 DEBUG [7005]: Closing database connection -- 14:36:06.371 SQL [7005]: pgsql_close() -- 14:36:06.776 INFO [7005]: COREGRADE is starting... -- 14:36:06.776 INFO [7005]: Version from config: 1.0 -- 14:36:06.776 DEBUG [7005]: Connecting to database... -- 14:36:06.776 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:36:06.776 SQL [7005]: pgsql_db_connect() -- 14:36:06.781 DEBUG [7005]: Database connection successful -- 14:36:06.781 INFO [7005]: _SERVER found -- 14:36:06.781 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 14:36:06.781 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 14:36:06.781 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=4kab69et6103g8mmp3div8gjs2q3dvnr -- 14:36:06.781 INFO [7005]: QUERY_STRING = /assets/img/footer_1.jpg -- 14:36:06.781 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:36:06.792 INFO [7005]: COREGRADE is stopping... -- 14:36:06.792 DEBUG [7005]: Closing database connection -- 14:36:06.792 SQL [7005]: pgsql_close() -- 14:37:07.383 INFO [7004]: COREGRADE is starting... -- 14:37:07.384 INFO [7004]: Version from config: 1.0 -- 14:37:07.384 DEBUG [7004]: Connecting to database... -- 14:37:07.384 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:37:07.384 SQL [7004]: pgsql_db_connect() -- 14:37:07.388 DEBUG [7004]: Database connection successful -- 14:37:07.388 INFO [7004]: _SERVER found -- 14:37:07.388 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 14:37:07.388 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 14:37:07.388 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=4kab69et6103g8mmp3div8gjs2q3dvnr -- 14:37:07.388 INFO [7004]: QUERY_STRING = /member/page -- 14:37:07.388 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:37:07.421 INFO [7004]: COREGRADE is stopping... -- 14:37:07.421 DEBUG [7004]: Closing database connection -- 14:37:07.421 SQL [7004]: pgsql_close() -- 14:37:07.455 INFO [7004]: COREGRADE is starting... -- 14:37:07.455 INFO [7004]: Version from config: 1.0 -- 14:37:07.455 DEBUG [7004]: Connecting to database... -- 14:37:07.455 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:37:07.455 SQL [7004]: pgsql_db_connect() -- 14:37:07.459 DEBUG [7004]: Database connection successful -- 14:37:07.459 INFO [7004]: _SERVER found -- 14:37:07.459 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 14:37:07.459 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 14:37:07.459 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=4kab69et6103g8mmp3div8gjs2q3dvnr -- 14:37:07.459 INFO [7004]: QUERY_STRING = -- 14:37:07.459 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:37:07.490 INFO [7004]: COREGRADE is stopping... -- 14:37:07.490 DEBUG [7004]: Closing database connection -- 14:37:07.490 SQL [7004]: pgsql_close() -- 14:37:07.892 INFO [7004]: COREGRADE is starting... -- 14:37:07.892 INFO [7004]: Version from config: 1.0 -- 14:37:07.892 DEBUG [7004]: Connecting to database... -- 14:37:07.892 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:37:07.892 SQL [7004]: pgsql_db_connect() -- 14:37:07.897 DEBUG [7004]: Database connection successful -- 14:37:07.897 INFO [7004]: _SERVER found -- 14:37:07.897 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 14:37:07.897 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 14:37:07.897 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=4kab69et6103g8mmp3div8gjs2q3dvnr -- 14:37:07.897 INFO [7004]: QUERY_STRING = /assets/img/footer_1.jpg -- 14:37:07.897 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:37:07.909 INFO [7004]: COREGRADE is stopping... -- 14:37:07.909 DEBUG [7004]: Closing database connection -- 14:37:07.909 SQL [7004]: pgsql_close() -- 14:37:25.516 INFO [8318]: COREGRADE is starting... -- 14:37:25.517 INFO [8318]: Version from config: 1.0 -- 14:37:25.517 DEBUG [8318]: Connecting to database... -- 14:37:25.517 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:37:25.517 SQL [8318]: pgsql_db_connect() -- 14:37:25.521 DEBUG [8318]: Database connection successful -- 14:37:25.521 INFO [8318]: _SERVER found -- 14:37:25.521 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 14:37:25.521 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 14:37:25.521 INFO [8318]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=4kab69et6103g8mmp3div8gjs2q3dvnr; _gat_gtag_UA_54829827_2=1 -- 14:37:25.521 INFO [8318]: QUERY_STRING = /home/faq -- 14:37:25.521 INFO [8318]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:37:25.553 INFO [8318]: COREGRADE is stopping... -- 14:37:25.553 DEBUG [8318]: Closing database connection -- 14:37:25.553 SQL [8318]: pgsql_close() -- 14:37:25.851 INFO [8318]: COREGRADE is starting... -- 14:37:25.851 INFO [8318]: Version from config: 1.0 -- 14:37:25.851 DEBUG [8318]: Connecting to database... -- 14:37:25.851 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:37:25.851 SQL [8318]: pgsql_db_connect() -- 14:37:25.855 DEBUG [8318]: Database connection successful -- 14:37:25.855 INFO [8318]: _SERVER found -- 14:37:25.855 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 14:37:25.855 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 14:37:25.855 INFO [8318]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=4kab69et6103g8mmp3div8gjs2q3dvnr; _gat_gtag_UA_54829827_2=1 -- 14:37:25.855 INFO [8318]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:37:25.855 INFO [8318]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:37:25.867 INFO [8318]: COREGRADE is stopping... -- 14:37:25.867 DEBUG [8318]: Closing database connection -- 14:37:25.867 SQL [8318]: pgsql_close() -- 14:37:53.313 INFO [6927]: COREGRADE is starting... -- 14:37:53.313 INFO [6927]: Version from config: 1.0 -- 14:37:53.313 DEBUG [6927]: Connecting to database... -- 14:37:53.313 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:37:53.313 SQL [6927]: pgsql_db_connect() -- 14:37:53.317 DEBUG [6927]: Database connection successful -- 14:37:53.317 INFO [6927]: _SERVER found -- 14:37:53.317 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 14:37:53.317 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 14:37:53.317 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=4kab69et6103g8mmp3div8gjs2q3dvnr; _gat_gtag_UA_54829827_2=1 -- 14:37:53.318 INFO [6927]: QUERY_STRING = /home/faq -- 14:37:53.318 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:37:53.350 INFO [6927]: COREGRADE is stopping... -- 14:37:53.350 DEBUG [6927]: Closing database connection -- 14:37:53.350 SQL [6927]: pgsql_close() -- 14:37:53.670 INFO [6927]: COREGRADE is starting... -- 14:37:53.671 INFO [6927]: Version from config: 1.0 -- 14:37:53.671 DEBUG [6927]: Connecting to database... -- 14:37:53.671 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:37:53.671 SQL [6927]: pgsql_db_connect() -- 14:37:53.675 DEBUG [6927]: Database connection successful -- 14:37:53.675 INFO [6927]: _SERVER found -- 14:37:53.675 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 14:37:53.675 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 14:37:53.675 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; _gat_gtag_UA_54829827_2=1; ci_session=0lv961s3gj9ntcmch3jcrkbda1ljplk7 -- 14:37:53.675 INFO [6927]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:37:53.675 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:37:53.686 INFO [6927]: COREGRADE is stopping... -- 14:37:53.686 DEBUG [6927]: Closing database connection -- 14:37:53.686 SQL [6927]: pgsql_close() -- 14:40:46.827 INFO [6929]: COREGRADE is starting... -- 14:40:46.827 INFO [6929]: Version from config: 1.0 -- 14:40:46.827 DEBUG [6929]: Connecting to database... -- 14:40:46.827 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:40:46.827 SQL [6929]: pgsql_db_connect() -- 14:40:46.832 DEBUG [6929]: Database connection successful -- 14:40:46.832 INFO [6929]: _SERVER found -- 14:40:46.832 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 14:40:46.832 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 14:40:46.832 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=0lv961s3gj9ntcmch3jcrkbda1ljplk7 -- 14:40:46.832 INFO [6929]: QUERY_STRING = /home/faq -- 14:40:46.832 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:40:46.865 INFO [6929]: COREGRADE is stopping... -- 14:40:46.865 DEBUG [6929]: Closing database connection -- 14:40:46.865 SQL [6929]: pgsql_close() -- 14:40:47.208 INFO [6929]: COREGRADE is starting... -- 14:40:47.209 INFO [6929]: Version from config: 1.0 -- 14:40:47.209 DEBUG [6929]: Connecting to database... -- 14:40:47.209 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:40:47.209 SQL [6929]: pgsql_db_connect() -- 14:40:47.213 DEBUG [6929]: Database connection successful -- 14:40:47.213 INFO [6929]: _SERVER found -- 14:40:47.213 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 14:40:47.213 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 14:40:47.213 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=0lv961s3gj9ntcmch3jcrkbda1ljplk7 -- 14:40:47.213 INFO [6929]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:40:47.213 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:40:47.224 INFO [6929]: COREGRADE is stopping... -- 14:40:47.224 DEBUG [6929]: Closing database connection -- 14:40:47.224 SQL [6929]: pgsql_close() -- 14:41:57.111 INFO [7002]: COREGRADE is starting... -- 14:41:57.112 INFO [7002]: Version from config: 1.0 -- 14:41:57.112 DEBUG [7002]: Connecting to database... -- 14:41:57.112 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:41:57.112 SQL [7002]: pgsql_db_connect() -- 14:41:57.123 INFO [6928]: COREGRADE is starting... -- 14:41:57.123 INFO [6928]: Version from config: 1.0 -- 14:41:57.123 DEBUG [6928]: Connecting to database... -- 14:41:57.123 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:41:57.123 SQL [6928]: pgsql_db_connect() -- 14:41:57.116 DEBUG [7002]: Database connection successful -- 14:41:57.116 INFO [7002]: _SERVER found -- 14:41:57.116 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 14:41:57.116 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 14:41:57.116 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=0lv961s3gj9ntcmch3jcrkbda1ljplk7 -- 14:41:57.116 INFO [7002]: QUERY_STRING = /auth -- 14:41:57.116 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:41:57.149 INFO [7002]: COREGRADE is stopping... -- 14:41:57.149 DEBUG [7002]: Closing database connection -- 14:41:57.149 SQL [7002]: pgsql_close() -- 14:41:57.127 DEBUG [6928]: Database connection successful -- 14:41:57.127 INFO [6928]: _SERVER found -- 14:41:57.127 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 14:41:57.127 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 14:41:57.127 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=0lv961s3gj9ntcmch3jcrkbda1ljplk7 -- 14:41:57.127 INFO [6928]: QUERY_STRING = /welcome/viewLogin -- 14:41:57.127 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:41:57.159 INFO [6928]: COREGRADE is stopping... -- 14:41:57.159 DEBUG [6928]: Closing database connection -- 14:41:57.159 SQL [6928]: pgsql_close() -- 14:41:57.585 INFO [6928]: COREGRADE is starting... -- 14:41:57.586 INFO [6928]: Version from config: 1.0 -- 14:41:57.586 DEBUG [6928]: Connecting to database... -- 14:41:57.586 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:41:57.586 SQL [6928]: pgsql_db_connect() -- 14:41:57.590 DEBUG [6928]: Database connection successful -- 14:41:57.590 INFO [6928]: _SERVER found -- 14:41:57.590 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 14:41:57.590 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 14:41:57.590 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=0lv961s3gj9ntcmch3jcrkbda1ljplk7 -- 14:41:57.590 INFO [6928]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:41:57.590 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:41:57.601 INFO [6928]: COREGRADE is stopping... -- 14:41:57.601 DEBUG [6928]: Closing database connection -- 14:41:57.601 SQL [6928]: pgsql_close() -- 14:42:13.853 INFO [7007]: COREGRADE is starting... -- 14:42:13.853 INFO [7007]: Version from config: 1.0 -- 14:42:13.853 DEBUG [7007]: Connecting to database... -- 14:42:13.853 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:42:13.853 SQL [7007]: pgsql_db_connect() -- 14:42:13.890 INFO [7007]: COREGRADE is starting... -- 14:42:13.890 INFO [7007]: Version from config: 1.0 -- 14:42:13.890 DEBUG [7007]: Connecting to database... -- 14:42:13.890 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:42:13.890 SQL [7007]: pgsql_db_connect() -- 14:42:13.894 DEBUG [7007]: Database connection successful -- 14:42:13.894 INFO [7007]: _SERVER found -- 14:42:13.894 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 14:42:13.894 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 14:42:13.894 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=0lv961s3gj9ntcmch3jcrkbda1ljplk7 -- 14:42:13.894 INFO [7007]: QUERY_STRING = -- 14:42:13.894 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:42:13.894 INFO [7007]: SystemStatus()09-09-********~************ -- 14:42:13.894 INFO [7007]: long coregrade_api_main(CVars in, CVars &out) -- 14:42:13.894 INFO [7007]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 14:42:13.894 INFO [7007]: account calls -- 14:42:13.894 INFO [7007]: account_calls() -- 14:42:13.894 INFO [7007]: LoginCoreGradeAccount() -- 14:42:13.894 FLOG_MAX [7007]: REQ_STRING(username) -- 14:42:13.894 FLOG_MAX [7007]: REQ_STRING(password) -- 14:42:13.894 FLOG_MAX [7007]: REQ_STRING(sessionid) -- 14:42:13.894 FLOG_MAX [7007]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:42:13.894 SQL [7007]: pgsql_query() -- 14:42:13.894 SQL [7007]: About to run query: -- 14:42:13.894 SQL [7007]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678') -- 14:42:13.898 SQL [7007]: Found rows: 1 -- 14:42:13.898 FLOG_MAX [7007]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678')) num_cols=16 -- 14:42:13.898 INFO [7007]: long SessionCheck(long uid, const char *sessionid, int create ) -- 14:42:13.898 SQL [7007]: pgsql_exec() -- 14:42:13.898 SQL [7007]: About to run query: -- 14:42:13.898 SQL [7007]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 14:42:13.900 SQL [7007]: PQcmdTuples: 1 -- 14:42:13.900 SQL [7007]: Affected rows: 1 -- 14:42:13.900 SQL [7007]: pgsql_exec() -- 14:42:13.900 SQL [7007]: About to run query: -- 14:42:13.900 SQL [7007]: DELETE FROM members_session WHERE member_id=7 -- 14:42:13.900 SQL [7007]: PQcmdTuples: 0 -- 14:42:13.900 SQL [7007]: Affected rows: 0 -- 14:42:13.900 SQL [7007]: pgsql_query() -- 14:42:13.900 SQL [7007]: About to run query: -- 14:42:13.900 SQL [7007]: SELECT * FROM members_session WHERE member_id=7 AND session<>'1872820CA400601A35E7EBA874FB5467' -- 14:42:13.901 SQL [7007]: Found rows: 0 -- 14:42:13.901 SQL [7007]: Found rows: 0 -- 14:42:13.901 FLOG_MAX [7007]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:42:13.901 SQL [7007]: pgsql_query() -- 14:42:13.901 SQL [7007]: About to run query: -- 14:42:13.901 SQL [7007]: SELECT * FROM members_session WHERE member_id=7 AND session='1872820CA400601A35E7EBA874FB5467' -- 14:42:13.901 SQL [7007]: Found rows: 0 -- 14:42:13.901 SQL [7007]: Found rows: 0 -- 14:42:13.901 FLOG_MAX [7007]: insert_db_record() -- 14:42:13.901 SQL [7007]: pgsql_exec() -- 14:42:13.901 SQL [7007]: About to run query: -- 14:42:13.901 SQL [7007]: INSERT INTO members_session (member_id,session) VALUES ('7','1872820CA400601A35E7EBA874FB5467') -- 14:42:13.903 SQL [7007]: PQcmdTuples: 1 -- 14:42:13.903 SQL [7007]: Affected rows: 1 -- 14:42:13.903 FLOG_MAX [7007]: SELECT currval('members_session_id_seq') -- 14:42:13.903 SQL [7007]: pgsql_query() -- 14:42:13.903 SQL [7007]: About to run query: -- 14:42:13.903 SQL [7007]: SELECT currval('members_session_id_seq') -- 14:42:13.903 SQL [7007]: Found rows: 1 -- 14:42:13.903 INFO [7007]: CreateDefaultPage() -- 14:42:13.903 FLOG_MAX [7007]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:42:13.903 SQL [7007]: pgsql_query() -- 14:42:13.903 SQL [7007]: About to run query: -- 14:42:13.903 SQL [7007]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 14:42:13.903 SQL [7007]: Found rows: 1 -- 14:42:13.903 FLOG_MAX [7007]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 14:42:13.903 SQL [7007]: pgsql_query() -- 14:42:13.903 SQL [7007]: About to run query: -- 14:42:13.904 SQL [7007]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 14:42:13.904 SQL [7007]: Found rows: 1 -- 14:42:13.904 INFO [7007]: /CreateDefaultPage() -- 14:42:13.904 INFO [7007]: /LoginCoreGradeAccount() -- 14:42:13.904 INFO [7007]: RET: added=2020-02-05 09:42:12.816064 -- 14:42:13.904 INFO [7007]: RET: email=tokslaw@chiefsoft.com -- 14:42:13.904 INFO [7007]: RET: firstname=Tokunbo -- 14:42:13.904 INFO [7007]: RET: folder=5D06B187B1E2285A63AD1D0ECB670D98 -- 14:42:13.904 INFO [7007]: RET: id=7 -- 14:42:13.904 INFO [7007]: RET: last_login= -- 14:42:13.904 INFO [7007]: RET: lastname=Lawal -- 14:42:13.904 INFO [7007]: RET: loc=192.168.1.13 -- 14:42:13.904 INFO [7007]: RET: member_id=7 -- 14:42:13.904 INFO [7007]: RET: password=25d55ad283aa400af464c76d713c07ad -- 14:42:13.904 INFO [7007]: RET: phone= -- 14:42:13.904 INFO [7007]: RET: pid= -- 14:42:13.904 INFO [7007]: RET: result=YES I GET TO BACK END -- 14:42:13.904 INFO [7007]: RET: sessionid=1872820CA400601A35E7EBA874FB5467 -- 14:42:13.904 INFO [7007]: RET: status=1 -- 14:42:13.904 INFO [7007]: RET: stauts=OK -- 14:42:13.904 INFO [7007]: RET: username=tokslaw@chiefsoft.com -- 14:42:13.904 INFO [7007]: RET: verified= -- 14:42:13.906 INFO [7007]: COREGRADE is stopping... -- 14:42:13.906 DEBUG [7007]: Closing database connection -- 14:42:13.906 SQL [7007]: pgsql_close() -- 14:42:13.857 DEBUG [7007]: Database connection successful -- 14:42:13.857 INFO [7007]: _SERVER found -- 14:42:13.857 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 14:42:13.857 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 14:42:13.857 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=0lv961s3gj9ntcmch3jcrkbda1ljplk7 -- 14:42:13.857 INFO [7007]: QUERY_STRING = /auth -- 14:42:13.857 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:42:13.906 INFO [7007]: COREGRADE is stopping... -- 14:42:13.906 DEBUG [7007]: Closing database connection -- 14:42:13.906 SQL [7007]: pgsql_close() -- 14:42:13.947 INFO [7007]: COREGRADE is starting... -- 14:42:13.947 INFO [7007]: Version from config: 1.0 -- 14:42:13.947 DEBUG [7007]: Connecting to database... -- 14:42:13.947 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:42:13.947 SQL [7007]: pgsql_db_connect() -- 14:42:13.951 DEBUG [7007]: Database connection successful -- 14:42:13.951 INFO [7007]: _SERVER found -- 14:42:13.951 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 14:42:13.951 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 14:42:13.951 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=0lv961s3gj9ntcmch3jcrkbda1ljplk7 -- 14:42:13.951 INFO [7007]: QUERY_STRING = /member/index -- 14:42:13.951 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:42:13.991 INFO [7007]: COREGRADE is stopping... -- 14:42:13.991 DEBUG [7007]: Closing database connection -- 14:42:13.991 SQL [7007]: pgsql_close() -- 14:42:14.537 INFO [7007]: COREGRADE is starting... -- 14:42:14.537 INFO [7007]: Version from config: 1.0 -- 14:42:14.537 DEBUG [7007]: Connecting to database... -- 14:42:14.537 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:42:14.537 SQL [7007]: pgsql_db_connect() -- 14:42:14.541 DEBUG [7007]: Database connection successful -- 14:42:14.541 INFO [7007]: _SERVER found -- 14:42:14.541 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 14:42:14.541 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 14:42:14.541 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=0lv961s3gj9ntcmch3jcrkbda1ljplk7 -- 14:42:14.541 INFO [7007]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:42:14.541 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:42:14.552 INFO [7007]: COREGRADE is stopping... -- 14:42:14.553 DEBUG [7007]: Closing database connection -- 14:42:14.553 SQL [7007]: pgsql_close() -- 14:42:22.999 INFO [6925]: COREGRADE is starting... -- 14:42:22.999 INFO [6925]: Version from config: 1.0 -- 14:42:22.999 DEBUG [6925]: Connecting to database... -- 14:42:22.999 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:42:22.999 SQL [6925]: pgsql_db_connect() -- 14:42:23.003 DEBUG [6925]: Database connection successful -- 14:42:23.003 INFO [6925]: _SERVER found -- 14:42:23.003 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 14:42:23.003 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 14:42:23.003 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=0lv961s3gj9ntcmch3jcrkbda1ljplk7 -- 14:42:23.003 INFO [6925]: QUERY_STRING = /member/mycalendar -- 14:42:23.003 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:42:23.042 INFO [6925]: COREGRADE is stopping... -- 14:42:23.042 DEBUG [6925]: Closing database connection -- 14:42:23.042 SQL [6925]: pgsql_close() -- 14:42:23.469 INFO [6925]: COREGRADE is starting... -- 14:42:23.469 INFO [6925]: Version from config: 1.0 -- 14:42:23.469 DEBUG [6925]: Connecting to database... -- 14:42:23.469 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:42:23.469 SQL [6925]: pgsql_db_connect() -- 14:42:23.473 DEBUG [6925]: Database connection successful -- 14:42:23.473 INFO [6925]: _SERVER found -- 14:42:23.473 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 14:42:23.473 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 14:42:23.473 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=0lv961s3gj9ntcmch3jcrkbda1ljplk7 -- 14:42:23.473 INFO [6925]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:42:23.473 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:42:23.485 INFO [6925]: COREGRADE is stopping... -- 14:42:23.485 DEBUG [6925]: Closing database connection -- 14:42:23.485 SQL [6925]: pgsql_close() -- 14:44:52.016 INFO [7006]: COREGRADE is starting... -- 14:44:52.016 INFO [7006]: Version from config: 1.0 -- 14:44:52.016 DEBUG [7006]: Connecting to database... -- 14:44:52.016 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:44:52.016 SQL [7006]: pgsql_db_connect() -- 14:44:52.020 DEBUG [7006]: Database connection successful -- 14:44:52.020 INFO [7006]: _SERVER found -- 14:44:52.020 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 14:44:52.020 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 14:44:52.020 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=0lv961s3gj9ntcmch3jcrkbda1ljplk7 -- 14:44:52.020 INFO [7006]: QUERY_STRING = /member/mycalendar -- 14:44:52.020 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:44:52.060 INFO [7006]: COREGRADE is stopping... -- 14:44:52.060 DEBUG [7006]: Closing database connection -- 14:44:52.060 SQL [7006]: pgsql_close() -- 14:44:52.429 INFO [7006]: COREGRADE is starting... -- 14:44:52.429 INFO [7006]: Version from config: 1.0 -- 14:44:52.429 DEBUG [7006]: Connecting to database... -- 14:44:52.429 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:44:52.429 SQL [7006]: pgsql_db_connect() -- 14:44:52.434 DEBUG [7006]: Database connection successful -- 14:44:52.434 INFO [7006]: _SERVER found -- 14:44:52.434 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 14:44:52.434 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 14:44:52.434 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=uq6pi6lpmdlv7opp8ooidllusqma1j4s -- 14:44:52.434 INFO [7006]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:44:52.434 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:44:52.445 INFO [7006]: COREGRADE is stopping... -- 14:44:52.445 DEBUG [7006]: Closing database connection -- 14:44:52.445 SQL [7006]: pgsql_close() -- 14:44:58.554 INFO [7004]: COREGRADE is starting... -- 14:44:58.554 INFO [7004]: Version from config: 1.0 -- 14:44:58.554 DEBUG [7004]: Connecting to database... -- 14:44:58.554 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:44:58.554 SQL [7004]: pgsql_db_connect() -- 14:44:58.559 DEBUG [7004]: Database connection successful -- 14:44:58.559 INFO [7004]: _SERVER found -- 14:44:58.559 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 14:44:58.559 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 14:44:58.559 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=uq6pi6lpmdlv7opp8ooidllusqma1j4s -- 14:44:58.559 INFO [7004]: QUERY_STRING = /member -- 14:44:58.559 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:44:58.600 INFO [7004]: COREGRADE is stopping... -- 14:44:58.600 DEBUG [7004]: Closing database connection -- 14:44:58.600 SQL [7004]: pgsql_close() -- 14:45:12.353 INFO [8318]: COREGRADE is starting... -- 14:45:12.354 INFO [8318]: Version from config: 1.0 -- 14:45:12.354 DEBUG [8318]: Connecting to database... -- 14:45:12.354 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:45:12.354 SQL [8318]: pgsql_db_connect() -- 14:45:12.359 DEBUG [8318]: Database connection successful -- 14:45:12.359 INFO [8318]: _SERVER found -- 14:45:12.359 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 14:45:12.359 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 14:45:12.359 INFO [8318]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=uq6pi6lpmdlv7opp8ooidllusqma1j4s -- 14:45:12.359 INFO [8318]: QUERY_STRING = /member/page -- 14:45:12.359 INFO [8318]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:45:12.403 INFO [8318]: COREGRADE is stopping... -- 14:45:12.403 DEBUG [8318]: Closing database connection -- 14:45:12.403 SQL [8318]: pgsql_close() -- 14:45:23.422 INFO [6927]: COREGRADE is starting... -- 14:45:23.422 INFO [6927]: Version from config: 1.0 -- 14:45:23.422 DEBUG [6927]: Connecting to database... -- 14:45:23.422 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:45:23.422 SQL [6927]: pgsql_db_connect() -- 14:45:23.426 DEBUG [6927]: Database connection successful -- 14:45:23.426 INFO [6927]: _SERVER found -- 14:45:23.426 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 14:45:23.426 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 14:45:23.426 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=uq6pi6lpmdlv7opp8ooidllusqma1j4s -- 14:45:23.426 INFO [6927]: QUERY_STRING = /member/configure -- 14:45:23.426 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:45:23.469 INFO [6927]: COREGRADE is stopping... -- 14:45:23.469 DEBUG [6927]: Closing database connection -- 14:45:23.469 SQL [6927]: pgsql_close() -- 14:45:23.810 INFO [6927]: COREGRADE is starting... -- 14:45:23.810 INFO [6927]: Version from config: 1.0 -- 14:45:23.810 DEBUG [6927]: Connecting to database... -- 14:45:23.810 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:45:23.810 SQL [6927]: pgsql_db_connect() -- 14:45:23.814 DEBUG [6927]: Database connection successful -- 14:45:23.814 INFO [6927]: _SERVER found -- 14:45:23.814 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 14:45:23.814 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 14:45:23.814 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=uq6pi6lpmdlv7opp8ooidllusqma1j4s -- 14:45:23.814 INFO [6927]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 14:45:23.814 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:45:23.826 INFO [6927]: COREGRADE is stopping... -- 14:45:23.826 DEBUG [6927]: Closing database connection -- 14:45:23.826 SQL [6927]: pgsql_close() -- 14:45:27.743 INFO [6927]: COREGRADE is starting... -- 14:45:27.744 INFO [6927]: Version from config: 1.0 -- 14:45:27.744 DEBUG [6927]: Connecting to database... -- 14:45:27.744 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:45:27.744 SQL [6927]: pgsql_db_connect() -- 14:45:27.748 DEBUG [6927]: Database connection successful -- 14:45:27.748 INFO [6927]: _SERVER found -- 14:45:27.748 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 14:45:27.748 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 14:45:27.748 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=uq6pi6lpmdlv7opp8ooidllusqma1j4s -- 14:45:27.748 INFO [6927]: QUERY_STRING = /member/configure -- 14:45:27.748 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:45:27.790 INFO [6927]: COREGRADE is stopping... -- 14:45:27.790 DEBUG [6927]: Closing database connection -- 14:45:27.790 SQL [6927]: pgsql_close() -- 14:45:29.698 INFO [6927]: COREGRADE is starting... -- 14:45:29.698 INFO [6927]: Version from config: 1.0 -- 14:45:29.698 DEBUG [6927]: Connecting to database... -- 14:45:29.698 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:45:29.698 SQL [6927]: pgsql_db_connect() -- 14:45:29.702 DEBUG [6927]: Database connection successful -- 14:45:29.702 INFO [6927]: _SERVER found -- 14:45:29.702 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 14:45:29.702 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 14:45:29.702 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=uq6pi6lpmdlv7opp8ooidllusqma1j4s -- 14:45:29.702 INFO [6927]: QUERY_STRING = /member -- 14:45:29.702 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:45:29.742 INFO [6927]: COREGRADE is stopping... -- 14:45:29.742 DEBUG [6927]: Closing database connection -- 14:45:29.742 SQL [6927]: pgsql_close() -- 14:45:32.375 INFO [6927]: COREGRADE is starting... -- 14:45:32.376 INFO [6927]: Version from config: 1.0 -- 14:45:32.376 DEBUG [6927]: Connecting to database... -- 14:45:32.376 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:45:32.376 SQL [6927]: pgsql_db_connect() -- 14:45:32.380 DEBUG [6927]: Database connection successful -- 14:45:32.380 INFO [6927]: _SERVER found -- 14:45:32.380 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 14:45:32.380 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 14:45:32.380 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=uq6pi6lpmdlv7opp8ooidllusqma1j4s -- 14:45:32.380 INFO [6927]: QUERY_STRING = /member/page -- 14:45:32.380 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:45:32.421 INFO [6927]: COREGRADE is stopping... -- 14:45:32.421 DEBUG [6927]: Closing database connection -- 14:45:32.421 SQL [6927]: pgsql_close() -- 14:48:13.462 INFO [7007]: COREGRADE is starting... -- 14:48:13.463 INFO [7007]: Version from config: 1.0 -- 14:48:13.463 DEBUG [7007]: Connecting to database... -- 14:48:13.463 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:48:13.463 SQL [7007]: pgsql_db_connect() -- 14:48:13.467 DEBUG [7007]: Database connection successful -- 14:48:13.467 INFO [7007]: _SERVER found -- 14:48:13.467 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 14:48:13.467 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 14:48:13.467 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=uq6pi6lpmdlv7opp8ooidllusqma1j4s -- 14:48:13.467 INFO [7007]: QUERY_STRING = /member -- 14:48:13.467 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:48:13.508 INFO [7007]: COREGRADE is stopping... -- 14:48:13.508 DEBUG [7007]: Closing database connection -- 14:48:13.508 SQL [7007]: pgsql_close() -- 14:48:13.766 INFO [7007]: COREGRADE is starting... -- 14:48:13.767 INFO [7007]: Version from config: 1.0 -- 14:48:13.767 DEBUG [7007]: Connecting to database... -- 14:48:13.767 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:48:13.767 SQL [7007]: pgsql_db_connect() -- 14:48:13.772 DEBUG [7007]: Database connection successful -- 14:48:13.772 INFO [7007]: _SERVER found -- 14:48:13.772 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 14:48:13.772 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 14:48:13.772 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=uq6pi6lpmdlv7opp8ooidllusqma1j4s -- 14:48:13.772 INFO [7007]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:48:13.772 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:48:13.783 INFO [7007]: COREGRADE is stopping... -- 14:48:13.783 DEBUG [7007]: Closing database connection -- 14:48:13.783 SQL [7007]: pgsql_close() -- 14:48:15.799 INFO [7007]: COREGRADE is starting... -- 14:48:15.799 INFO [7007]: Version from config: 1.0 -- 14:48:15.799 DEBUG [7007]: Connecting to database... -- 14:48:15.799 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:48:15.799 SQL [7007]: pgsql_db_connect() -- 14:48:15.803 DEBUG [7007]: Database connection successful -- 14:48:15.803 INFO [7007]: _SERVER found -- 14:48:15.803 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 14:48:15.803 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 14:48:15.803 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=uq6pi6lpmdlv7opp8ooidllusqma1j4s -- 14:48:15.803 INFO [7007]: QUERY_STRING = /member/page -- 14:48:15.803 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:48:15.846 INFO [7007]: COREGRADE is stopping... -- 14:48:15.846 DEBUG [7007]: Closing database connection -- 14:48:15.846 SQL [7007]: pgsql_close() -- 14:48:16.211 INFO [7007]: COREGRADE is starting... -- 14:48:16.212 INFO [7007]: Version from config: 1.0 -- 14:48:16.212 DEBUG [7007]: Connecting to database... -- 14:48:16.212 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:48:16.212 SQL [7007]: pgsql_db_connect() -- 14:48:16.216 DEBUG [7007]: Database connection successful -- 14:48:16.216 INFO [7007]: _SERVER found -- 14:48:16.216 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 14:48:16.216 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 14:48:16.216 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=uq6pi6lpmdlv7opp8ooidllusqma1j4s -- 14:48:16.216 INFO [7007]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:48:16.216 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:48:16.227 INFO [7007]: COREGRADE is stopping... -- 14:48:16.227 DEBUG [7007]: Closing database connection -- 14:48:16.227 SQL [7007]: pgsql_close() -- 14:51:46.708 INFO [6925]: COREGRADE is starting... -- 14:51:46.708 INFO [6925]: Version from config: 1.0 -- 14:51:46.708 DEBUG [6925]: Connecting to database... -- 14:51:46.708 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:51:46.708 SQL [6925]: pgsql_db_connect() -- 14:51:46.712 DEBUG [6925]: Database connection successful -- 14:51:46.712 INFO [6925]: _SERVER found -- 14:51:46.712 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 14:51:46.712 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 14:51:46.712 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=uq6pi6lpmdlv7opp8ooidllusqma1j4s -- 14:51:46.712 INFO [6925]: QUERY_STRING = /member/page -- 14:51:46.712 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:51:46.757 INFO [6925]: COREGRADE is stopping... -- 14:51:46.757 DEBUG [6925]: Closing database connection -- 14:51:46.757 SQL [6925]: pgsql_close() -- 14:51:47.159 INFO [6925]: COREGRADE is starting... -- 14:51:47.159 INFO [6925]: Version from config: 1.0 -- 14:51:47.159 DEBUG [6925]: Connecting to database... -- 14:51:47.159 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:51:47.159 SQL [6925]: pgsql_db_connect() -- 14:51:47.164 DEBUG [6925]: Database connection successful -- 14:51:47.164 INFO [6925]: _SERVER found -- 14:51:47.164 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 14:51:47.164 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 14:51:47.164 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=ekr49hdhbfsf78ijnqg6oscborrk4eii -- 14:51:47.164 INFO [6925]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:51:47.164 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:51:47.175 INFO [6925]: COREGRADE is stopping... -- 14:51:47.175 DEBUG [6925]: Closing database connection -- 14:51:47.175 SQL [6925]: pgsql_close() -- 14:51:49.465 INFO [6925]: COREGRADE is starting... -- 14:51:49.465 INFO [6925]: Version from config: 1.0 -- 14:51:49.465 DEBUG [6925]: Connecting to database... -- 14:51:49.466 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:51:49.466 SQL [6925]: pgsql_db_connect() -- 14:51:49.470 DEBUG [6925]: Database connection successful -- 14:51:49.470 INFO [6925]: _SERVER found -- 14:51:49.470 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 14:51:49.470 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 14:51:49.470 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=ekr49hdhbfsf78ijnqg6oscborrk4eii -- 14:51:49.470 INFO [6925]: QUERY_STRING = /member -- 14:51:49.470 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:51:49.510 INFO [6925]: COREGRADE is stopping... -- 14:51:49.510 DEBUG [6925]: Closing database connection -- 14:51:49.510 SQL [6925]: pgsql_close() -- 14:52:54.516 INFO [7006]: COREGRADE is starting... -- 14:52:54.516 INFO [7006]: Version from config: 1.0 -- 14:52:54.516 DEBUG [7006]: Connecting to database... -- 14:52:54.516 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:52:54.516 SQL [7006]: pgsql_db_connect() -- 14:52:54.520 DEBUG [7006]: Database connection successful -- 14:52:54.520 INFO [7006]: _SERVER found -- 14:52:54.520 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 14:52:54.520 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 14:52:54.520 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=ekr49hdhbfsf78ijnqg6oscborrk4eii -- 14:52:54.520 INFO [7006]: QUERY_STRING = /home/faq -- 14:52:54.520 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:52:54.554 INFO [7006]: COREGRADE is stopping... -- 14:52:54.554 DEBUG [7006]: Closing database connection -- 14:52:54.554 SQL [7006]: pgsql_close() -- 14:52:55.024 INFO [7006]: COREGRADE is starting... -- 14:52:55.025 INFO [7006]: Version from config: 1.0 -- 14:52:55.025 DEBUG [7006]: Connecting to database... -- 14:52:55.025 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:52:55.025 SQL [7006]: pgsql_db_connect() -- 14:52:55.029 DEBUG [7006]: Database connection successful -- 14:52:55.029 INFO [7006]: _SERVER found -- 14:52:55.029 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 14:52:55.029 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 14:52:55.029 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=ekr49hdhbfsf78ijnqg6oscborrk4eii -- 14:52:55.029 INFO [7006]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:52:55.029 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:52:55.040 INFO [7006]: COREGRADE is stopping... -- 14:52:55.040 DEBUG [7006]: Closing database connection -- 14:52:55.040 SQL [7006]: pgsql_close() -- 14:59:10.608 INFO [7005]: COREGRADE is starting... -- 14:59:10.609 INFO [7005]: Version from config: 1.0 -- 14:59:10.609 DEBUG [7005]: Connecting to database... -- 14:59:10.609 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:59:10.609 SQL [7005]: pgsql_db_connect() -- 14:59:10.614 DEBUG [7005]: Database connection successful -- 14:59:10.614 INFO [7005]: _SERVER found -- 14:59:10.614 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 14:59:10.614 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 14:59:10.614 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=ekr49hdhbfsf78ijnqg6oscborrk4eii -- 14:59:10.614 INFO [7005]: QUERY_STRING = /home/faq -- 14:59:10.614 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:59:10.649 INFO [7005]: COREGRADE is stopping... -- 14:59:10.649 DEBUG [7005]: Closing database connection -- 14:59:10.649 SQL [7005]: pgsql_close() -- 14:59:10.981 INFO [7005]: COREGRADE is starting... -- 14:59:10.981 INFO [7005]: Version from config: 1.0 -- 14:59:10.981 DEBUG [7005]: Connecting to database... -- 14:59:10.981 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:59:10.981 SQL [7005]: pgsql_db_connect() -- 14:59:10.985 DEBUG [7005]: Database connection successful -- 14:59:10.985 INFO [7005]: _SERVER found -- 14:59:10.985 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 14:59:10.985 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 14:59:10.985 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=a1uk4qnmpuvadlpvtb3e5nkmu22pb44u -- 14:59:10.985 INFO [7005]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:59:10.985 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:59:10.997 INFO [7005]: COREGRADE is stopping... -- 14:59:10.997 DEBUG [7005]: Closing database connection -- 14:59:10.997 SQL [7005]: pgsql_close() -- 15:03:40.793 INFO [7004]: COREGRADE is starting... -- 15:03:40.794 INFO [7004]: Version from config: 1.0 -- 15:03:40.794 DEBUG [7004]: Connecting to database... -- 15:03:40.794 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:03:40.794 SQL [7004]: pgsql_db_connect() -- 15:03:40.798 DEBUG [7004]: Database connection successful -- 15:03:40.798 INFO [7004]: _SERVER found -- 15:03:40.798 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 15:03:40.798 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 15:03:40.798 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=a1uk4qnmpuvadlpvtb3e5nkmu22pb44u -- 15:03:40.798 INFO [7004]: QUERY_STRING = /home/faq -- 15:03:40.798 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:03:40.832 INFO [7004]: COREGRADE is stopping... -- 15:03:40.833 DEBUG [7004]: Closing database connection -- 15:03:40.833 SQL [7004]: pgsql_close() -- 15:03:41.142 INFO [7004]: COREGRADE is starting... -- 15:03:41.143 INFO [7004]: Version from config: 1.0 -- 15:03:41.143 DEBUG [7004]: Connecting to database... -- 15:03:41.143 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:03:41.143 SQL [7004]: pgsql_db_connect() -- 15:03:41.147 DEBUG [7004]: Database connection successful -- 15:03:41.147 INFO [7004]: _SERVER found -- 15:03:41.147 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 15:03:41.147 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 15:03:41.147 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=a1uk4qnmpuvadlpvtb3e5nkmu22pb44u -- 15:03:41.147 INFO [7004]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:03:41.147 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:03:41.158 INFO [7004]: COREGRADE is stopping... -- 15:03:41.158 DEBUG [7004]: Closing database connection -- 15:03:41.158 SQL [7004]: pgsql_close() -- 15:06:06.330 INFO [8318]: COREGRADE is starting... -- 15:06:06.331 INFO [8318]: Version from config: 1.0 -- 15:06:06.331 DEBUG [8318]: Connecting to database... -- 15:06:06.331 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:06:06.331 SQL [8318]: pgsql_db_connect() -- 15:06:06.336 DEBUG [8318]: Database connection successful -- 15:06:06.336 INFO [8318]: _SERVER found -- 15:06:06.336 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 15:06:06.336 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 15:06:06.336 INFO [8318]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=a1uk4qnmpuvadlpvtb3e5nkmu22pb44u -- 15:06:06.336 INFO [8318]: QUERY_STRING = -- 15:06:06.336 INFO [8318]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:06:06.370 INFO [8318]: COREGRADE is stopping... -- 15:06:06.370 DEBUG [8318]: Closing database connection -- 15:06:06.370 SQL [8318]: pgsql_close() -- 15:06:06.874 INFO [8318]: COREGRADE is starting... -- 15:06:06.874 INFO [8318]: Version from config: 1.0 -- 15:06:06.874 DEBUG [8318]: Connecting to database... -- 15:06:06.874 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:06:06.874 SQL [8318]: pgsql_db_connect() -- 15:06:06.879 DEBUG [8318]: Database connection successful -- 15:06:06.879 INFO [8318]: _SERVER found -- 15:06:06.879 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 15:06:06.879 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 15:06:06.879 INFO [8318]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=dreurigk11gm7cphqvjb8lijgo6d746k -- 15:06:06.879 INFO [8318]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:06:06.879 INFO [8318]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:06:06.890 INFO [8318]: COREGRADE is stopping... -- 15:06:06.890 DEBUG [8318]: Closing database connection -- 15:06:06.890 SQL [8318]: pgsql_close() -- 15:06:09.849 INFO [8318]: COREGRADE is starting... -- 15:06:09.849 INFO [8318]: Version from config: 1.0 -- 15:06:09.849 DEBUG [8318]: Connecting to database... -- 15:06:09.849 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:06:09.849 SQL [8318]: pgsql_db_connect() -- 15:06:09.882 INFO [6929]: COREGRADE is starting... -- 15:06:09.883 INFO [6929]: Version from config: 1.0 -- 15:06:09.883 DEBUG [6929]: Connecting to database... -- 15:06:09.883 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:06:09.883 SQL [6929]: pgsql_db_connect() -- 15:06:09.854 DEBUG [8318]: Database connection successful -- 15:06:09.854 INFO [8318]: _SERVER found -- 15:06:09.854 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 15:06:09.854 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 15:06:09.854 INFO [8318]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=dreurigk11gm7cphqvjb8lijgo6d746k; _gat_gtag_UA_54829827_2=1 -- 15:06:09.854 INFO [8318]: QUERY_STRING = /welcome/viewLogin -- 15:06:09.854 INFO [8318]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:06:09.885 INFO [8318]: COREGRADE is stopping... -- 15:06:09.885 DEBUG [8318]: Closing database connection -- 15:06:09.885 SQL [8318]: pgsql_close() -- 15:06:09.910 INFO [8318]: COREGRADE is starting... -- 15:06:09.911 INFO [8318]: Version from config: 1.0 -- 15:06:09.911 DEBUG [8318]: Connecting to database... -- 15:06:09.911 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:06:09.911 SQL [8318]: pgsql_db_connect() -- 15:06:09.887 DEBUG [6929]: Database connection successful -- 15:06:09.887 INFO [6929]: _SERVER found -- 15:06:09.887 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 15:06:09.887 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 15:06:09.887 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=dreurigk11gm7cphqvjb8lijgo6d746k; _gat_gtag_UA_54829827_2=1 -- 15:06:09.887 INFO [6929]: QUERY_STRING = /auth -- 15:06:09.887 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:06:09.922 INFO [6929]: COREGRADE is stopping... -- 15:06:09.922 DEBUG [6929]: Closing database connection -- 15:06:09.922 SQL [6929]: pgsql_close() -- 15:06:09.915 DEBUG [8318]: Database connection successful -- 15:06:09.915 INFO [8318]: _SERVER found -- 15:06:09.915 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 15:06:09.915 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 15:06:09.915 INFO [8318]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=dreurigk11gm7cphqvjb8lijgo6d746k; _gat_gtag_UA_54829827_2=1 -- 15:06:09.915 INFO [8318]: QUERY_STRING = /auth/index -- 15:06:09.915 INFO [8318]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:06:09.948 INFO [8318]: COREGRADE is stopping... -- 15:06:09.948 DEBUG [8318]: Closing database connection -- 15:06:09.948 SQL [8318]: pgsql_close() -- 15:06:10.209 INFO [8318]: COREGRADE is starting... -- 15:06:10.209 INFO [8318]: Version from config: 1.0 -- 15:06:10.209 DEBUG [8318]: Connecting to database... -- 15:06:10.209 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:06:10.209 SQL [8318]: pgsql_db_connect() -- 15:06:10.215 DEBUG [8318]: Database connection successful -- 15:06:10.215 INFO [8318]: _SERVER found -- 15:06:10.215 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 15:06:10.215 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 15:06:10.215 INFO [8318]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=dreurigk11gm7cphqvjb8lijgo6d746k; _gat_gtag_UA_54829827_2=1 -- 15:06:10.215 INFO [8318]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:06:10.215 INFO [8318]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:06:10.226 INFO [8318]: COREGRADE is stopping... -- 15:06:10.226 DEBUG [8318]: Closing database connection -- 15:06:10.226 SQL [8318]: pgsql_close() -- 15:06:12.009 INFO [8318]: COREGRADE is starting... -- 15:06:12.009 INFO [8318]: Version from config: 1.0 -- 15:06:12.009 DEBUG [8318]: Connecting to database... -- 15:06:12.009 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:06:12.009 SQL [8318]: pgsql_db_connect() -- 15:06:12.046 INFO [8318]: COREGRADE is starting... -- 15:06:12.047 INFO [8318]: Version from config: 1.0 -- 15:06:12.047 DEBUG [8318]: Connecting to database... -- 15:06:12.047 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:06:12.047 SQL [8318]: pgsql_db_connect() -- 15:06:12.051 DEBUG [8318]: Database connection successful -- 15:06:12.051 INFO [8318]: _SERVER found -- 15:06:12.051 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 15:06:12.051 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 15:06:12.051 INFO [8318]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=dreurigk11gm7cphqvjb8lijgo6d746k; _gat_gtag_UA_54829827_2=1 -- 15:06:12.051 INFO [8318]: QUERY_STRING = -- 15:06:12.051 INFO [8318]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:06:12.052 INFO [8318]: SystemStatus()09-09-********~************ -- 15:06:12.052 INFO [8318]: long coregrade_api_main(CVars in, CVars &out) -- 15:06:12.052 INFO [8318]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 15:06:12.052 INFO [8318]: account calls -- 15:06:12.052 INFO [8318]: account_calls() -- 15:06:12.052 INFO [8318]: LoginCoreGradeAccount() -- 15:06:12.052 FLOG_MAX [8318]: REQ_STRING(username) -- 15:06:12.052 FLOG_MAX [8318]: REQ_STRING(password) -- 15:06:12.052 FLOG_MAX [8318]: REQ_STRING(sessionid) -- 15:06:12.052 FLOG_MAX [8318]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:06:12.052 SQL [8318]: pgsql_query() -- 15:06:12.052 SQL [8318]: About to run query: -- 15:06:12.052 SQL [8318]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678') -- 15:06:12.056 SQL [8318]: Found rows: 1 -- 15:06:12.056 FLOG_MAX [8318]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678')) num_cols=16 -- 15:06:12.056 INFO [8318]: long SessionCheck(long uid, const char *sessionid, int create ) -- 15:06:12.056 SQL [8318]: pgsql_exec() -- 15:06:12.056 SQL [8318]: About to run query: -- 15:06:12.056 SQL [8318]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 15:06:12.057 SQL [8318]: PQcmdTuples: 0 -- 15:06:12.057 SQL [8318]: Affected rows: 0 -- 15:06:12.057 SQL [8318]: pgsql_exec() -- 15:06:12.057 SQL [8318]: About to run query: -- 15:06:12.057 SQL [8318]: DELETE FROM members_session WHERE member_id=7 -- 15:06:12.058 SQL [8318]: PQcmdTuples: 1 -- 15:06:12.058 SQL [8318]: Affected rows: 1 -- 15:06:12.058 SQL [8318]: pgsql_query() -- 15:06:12.058 SQL [8318]: About to run query: -- 15:06:12.058 SQL [8318]: SELECT * FROM members_session WHERE member_id=7 AND session<>'6336C461AE8CECEC7E5987D7B49AA316' -- 15:06:12.058 SQL [8318]: Found rows: 0 -- 15:06:12.058 SQL [8318]: Found rows: 0 -- 15:06:12.058 FLOG_MAX [8318]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:06:12.058 SQL [8318]: pgsql_query() -- 15:06:12.058 SQL [8318]: About to run query: -- 15:06:12.058 SQL [8318]: SELECT * FROM members_session WHERE member_id=7 AND session='6336C461AE8CECEC7E5987D7B49AA316' -- 15:06:12.059 SQL [8318]: Found rows: 0 -- 15:06:12.059 SQL [8318]: Found rows: 0 -- 15:06:12.059 FLOG_MAX [8318]: insert_db_record() -- 15:06:12.059 SQL [8318]: pgsql_exec() -- 15:06:12.059 SQL [8318]: About to run query: -- 15:06:12.059 SQL [8318]: INSERT INTO members_session (member_id,session) VALUES ('7','6336C461AE8CECEC7E5987D7B49AA316') -- 15:06:12.060 SQL [8318]: PQcmdTuples: 1 -- 15:06:12.060 SQL [8318]: Affected rows: 1 -- 15:06:12.060 FLOG_MAX [8318]: SELECT currval('members_session_id_seq') -- 15:06:12.060 SQL [8318]: pgsql_query() -- 15:06:12.060 SQL [8318]: About to run query: -- 15:06:12.060 SQL [8318]: SELECT currval('members_session_id_seq') -- 15:06:12.061 SQL [8318]: Found rows: 1 -- 15:06:12.061 INFO [8318]: CreateDefaultPage() -- 15:06:12.061 FLOG_MAX [8318]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:06:12.061 SQL [8318]: pgsql_query() -- 15:06:12.061 SQL [8318]: About to run query: -- 15:06:12.061 SQL [8318]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 15:06:12.061 SQL [8318]: Found rows: 1 -- 15:06:12.061 FLOG_MAX [8318]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 15:06:12.061 SQL [8318]: pgsql_query() -- 15:06:12.061 SQL [8318]: About to run query: -- 15:06:12.061 SQL [8318]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 15:06:12.062 SQL [8318]: Found rows: 1 -- 15:06:12.062 INFO [8318]: /CreateDefaultPage() -- 15:06:12.062 INFO [8318]: /LoginCoreGradeAccount() -- 15:06:12.062 INFO [8318]: RET: added=2020-02-05 09:42:12.816064 -- 15:06:12.062 INFO [8318]: RET: email=tokslaw@chiefsoft.com -- 15:06:12.062 INFO [8318]: RET: firstname=Tokunbo -- 15:06:12.062 INFO [8318]: RET: folder=5D06B187B1E2285A63AD1D0ECB670D98 -- 15:06:12.062 INFO [8318]: RET: id=7 -- 15:06:12.062 INFO [8318]: RET: last_login= -- 15:06:12.062 INFO [8318]: RET: lastname=Lawal -- 15:06:12.062 INFO [8318]: RET: loc=192.168.1.13 -- 15:06:12.062 INFO [8318]: RET: member_id=7 -- 15:06:12.062 INFO [8318]: RET: password=25d55ad283aa400af464c76d713c07ad -- 15:06:12.062 INFO [8318]: RET: phone= -- 15:06:12.062 INFO [8318]: RET: pid= -- 15:06:12.062 INFO [8318]: RET: result=YES I GET TO BACK END -- 15:06:12.062 INFO [8318]: RET: sessionid=6336C461AE8CECEC7E5987D7B49AA316 -- 15:06:12.062 INFO [8318]: RET: status=1 -- 15:06:12.062 INFO [8318]: RET: stauts=OK -- 15:06:12.062 INFO [8318]: RET: username=tokslaw@chiefsoft.com -- 15:06:12.062 INFO [8318]: RET: verified= -- 15:06:12.063 INFO [8318]: COREGRADE is stopping... -- 15:06:12.063 DEBUG [8318]: Closing database connection -- 15:06:12.063 SQL [8318]: pgsql_close() -- 15:06:12.014 DEBUG [8318]: Database connection successful -- 15:06:12.014 INFO [8318]: _SERVER found -- 15:06:12.014 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 15:06:12.014 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 15:06:12.014 INFO [8318]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=dreurigk11gm7cphqvjb8lijgo6d746k; _gat_gtag_UA_54829827_2=1 -- 15:06:12.014 INFO [8318]: QUERY_STRING = /auth -- 15:06:12.014 INFO [8318]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:06:12.064 INFO [8318]: COREGRADE is stopping... -- 15:06:12.064 DEBUG [8318]: Closing database connection -- 15:06:12.064 SQL [8318]: pgsql_close() -- 15:06:12.103 INFO [8318]: COREGRADE is starting... -- 15:06:12.103 INFO [8318]: Version from config: 1.0 -- 15:06:12.103 DEBUG [8318]: Connecting to database... -- 15:06:12.103 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:06:12.103 SQL [8318]: pgsql_db_connect() -- 15:06:12.108 DEBUG [8318]: Database connection successful -- 15:06:12.108 INFO [8318]: _SERVER found -- 15:06:12.108 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 15:06:12.108 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 15:06:12.108 INFO [8318]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=dreurigk11gm7cphqvjb8lijgo6d746k; _gat_gtag_UA_54829827_2=1 -- 15:06:12.108 INFO [8318]: QUERY_STRING = /member/index -- 15:06:12.108 INFO [8318]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:06:12.151 INFO [8318]: COREGRADE is stopping... -- 15:06:12.151 DEBUG [8318]: Closing database connection -- 15:06:12.151 SQL [8318]: pgsql_close() -- 15:06:12.841 INFO [8318]: COREGRADE is starting... -- 15:06:12.841 INFO [8318]: Version from config: 1.0 -- 15:06:12.841 DEBUG [8318]: Connecting to database... -- 15:06:12.841 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:06:12.841 SQL [8318]: pgsql_db_connect() -- 15:06:12.846 DEBUG [8318]: Database connection successful -- 15:06:12.846 INFO [8318]: _SERVER found -- 15:06:12.846 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 15:06:12.846 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 15:06:12.846 INFO [8318]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=dreurigk11gm7cphqvjb8lijgo6d746k; _gat_gtag_UA_54829827_2=1 -- 15:06:12.846 INFO [8318]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:06:12.846 INFO [8318]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:06:12.857 INFO [8318]: COREGRADE is stopping... -- 15:06:12.857 DEBUG [8318]: Closing database connection -- 15:06:12.857 SQL [8318]: pgsql_close() -- 15:06:25.929 INFO [6928]: COREGRADE is starting... -- 15:06:25.929 INFO [6928]: Version from config: 1.0 -- 15:06:25.929 DEBUG [6928]: Connecting to database... -- 15:06:25.929 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:06:25.929 SQL [6928]: pgsql_db_connect() -- 15:06:25.933 DEBUG [6928]: Database connection successful -- 15:06:25.933 INFO [6928]: _SERVER found -- 15:06:25.933 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 15:06:25.933 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 15:06:25.933 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=dreurigk11gm7cphqvjb8lijgo6d746k; _gat_gtag_UA_54829827_2=1 -- 15:06:25.933 INFO [6928]: QUERY_STRING = /member/page -- 15:06:25.933 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:06:25.978 INFO [6928]: COREGRADE is stopping... -- 15:06:25.978 DEBUG [6928]: Closing database connection -- 15:06:25.978 SQL [6928]: pgsql_close() -- 15:06:28.622 INFO [7002]: COREGRADE is starting... -- 15:06:28.623 INFO [7002]: Version from config: 1.0 -- 15:06:28.623 DEBUG [7002]: Connecting to database... -- 15:06:28.623 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:06:28.623 SQL [7002]: pgsql_db_connect() -- 15:06:28.627 DEBUG [7002]: Database connection successful -- 15:06:28.627 INFO [7002]: _SERVER found -- 15:06:28.627 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 15:06:28.627 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 15:06:28.627 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1647021683.1586790185 -- 15:06:28.627 INFO [7002]: QUERY_STRING = /auth -- 15:06:28.627 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:06:28.661 INFO [7002]: COREGRADE is stopping... -- 15:06:28.661 DEBUG [7002]: Closing database connection -- 15:06:28.661 SQL [7002]: pgsql_close() -- 15:06:30.137 INFO [7002]: COREGRADE is starting... -- 15:06:30.138 INFO [7002]: Version from config: 1.0 -- 15:06:30.138 DEBUG [7002]: Connecting to database... -- 15:06:30.138 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:06:30.138 SQL [7002]: pgsql_db_connect() -- 15:06:30.142 DEBUG [7002]: Database connection successful -- 15:06:30.142 INFO [7002]: _SERVER found -- 15:06:30.142 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 15:06:30.142 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 15:06:30.142 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1647021683.1586790185; ci_session=pnjtkscites57v7603lst92jhmlrk3cb -- 15:06:30.142 INFO [7002]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:06:30.142 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:06:30.154 INFO [7002]: COREGRADE is stopping... -- 15:06:30.154 DEBUG [7002]: Closing database connection -- 15:06:30.154 SQL [7002]: pgsql_close() -- 15:21:12.108 INFO [6927]: COREGRADE is starting... -- 15:21:12.108 INFO [6927]: Version from config: 1.0 -- 15:21:12.108 DEBUG [6927]: Connecting to database... -- 15:21:12.108 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:21:12.108 SQL [6927]: pgsql_db_connect() -- 15:21:12.113 DEBUG [6927]: Database connection successful -- 15:21:12.113 INFO [6927]: _SERVER found -- 15:21:12.113 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 15:21:12.113 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 15:21:12.113 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=dreurigk11gm7cphqvjb8lijgo6d746k -- 15:21:12.113 INFO [6927]: QUERY_STRING = /home/faq -- 15:21:12.113 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:21:12.149 INFO [6927]: COREGRADE is stopping... -- 15:21:12.149 DEBUG [6927]: Closing database connection -- 15:21:12.149 SQL [6927]: pgsql_close() -- 15:21:12.496 INFO [6927]: COREGRADE is starting... -- 15:21:12.497 INFO [6927]: Version from config: 1.0 -- 15:21:12.497 DEBUG [6927]: Connecting to database... -- 15:21:12.497 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:21:12.497 SQL [6927]: pgsql_db_connect() -- 15:21:12.501 DEBUG [6927]: Database connection successful -- 15:21:12.501 INFO [6927]: _SERVER found -- 15:21:12.501 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 15:21:12.501 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 15:21:12.501 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=offrqav63a904piloa7583kecud7j0uf -- 15:21:12.501 INFO [6927]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:21:12.501 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:21:12.513 INFO [6927]: COREGRADE is stopping... -- 15:21:12.513 DEBUG [6927]: Closing database connection -- 15:21:12.513 SQL [6927]: pgsql_close() -- 15:21:31.960 INFO [7007]: COREGRADE is starting... -- 15:21:31.960 INFO [7007]: Version from config: 1.0 -- 15:21:31.960 DEBUG [7007]: Connecting to database... -- 15:21:31.960 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:21:31.960 SQL [7007]: pgsql_db_connect() -- 15:21:31.965 DEBUG [7007]: Database connection successful -- 15:21:31.965 INFO [7007]: _SERVER found -- 15:21:31.965 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 15:21:31.965 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 15:21:31.965 INFO [7007]: HTTP_COOKIE = ci_session=ji7paf2ai07v9meljjma7sgd9qn8qtq8; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 15:21:31.965 INFO [7007]: QUERY_STRING = /home/aboutus -- 15:21:31.965 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:21:31.998 INFO [7007]: COREGRADE is stopping... -- 15:21:31.998 DEBUG [7007]: Closing database connection -- 15:21:31.998 SQL [7007]: pgsql_close() -- 15:21:32.340 INFO [6925]: COREGRADE is starting... -- 15:21:32.341 INFO [6925]: Version from config: 1.0 -- 15:21:32.341 DEBUG [6925]: Connecting to database... -- 15:21:32.341 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:21:32.341 SQL [6925]: pgsql_db_connect() -- 15:21:32.345 DEBUG [6925]: Database connection successful -- 15:21:32.345 INFO [6925]: _SERVER found -- 15:21:32.345 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 15:21:32.345 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 15:21:32.345 INFO [6925]: HTTP_COOKIE = ci_session=bkbuhhkcjdtpivljq3k9okrtotva8100; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 15:21:32.345 INFO [6925]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:21:32.345 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:21:32.357 INFO [6925]: COREGRADE is stopping... -- 15:21:32.357 DEBUG [6925]: Closing database connection -- 15:21:32.357 SQL [6925]: pgsql_close() -- 15:21:45.536 INFO [7006]: COREGRADE is starting... -- 15:21:45.536 INFO [7006]: Version from config: 1.0 -- 15:21:45.536 DEBUG [7006]: Connecting to database... -- 15:21:45.536 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:21:45.536 SQL [7006]: pgsql_db_connect() -- 15:21:45.540 DEBUG [7006]: Database connection successful -- 15:21:45.540 INFO [7006]: _SERVER found -- 15:21:45.540 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 15:21:45.540 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 15:21:45.540 INFO [7006]: HTTP_COOKIE = ci_session=bkbuhhkcjdtpivljq3k9okrtotva8100; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 15:21:45.540 INFO [7006]: QUERY_STRING = /home/security -- 15:21:45.540 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:21:45.574 INFO [7006]: COREGRADE is stopping... -- 15:21:45.574 DEBUG [7006]: Closing database connection -- 15:21:45.574 SQL [7006]: pgsql_close() -- 15:21:46.043 INFO [7005]: COREGRADE is starting... -- 15:21:46.044 INFO [7005]: Version from config: 1.0 -- 15:21:46.044 DEBUG [7005]: Connecting to database... -- 15:21:46.044 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:21:46.044 SQL [7005]: pgsql_db_connect() -- 15:21:46.048 DEBUG [7005]: Database connection successful -- 15:21:46.048 INFO [7005]: _SERVER found -- 15:21:46.048 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 15:21:46.048 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 15:21:46.048 INFO [7005]: HTTP_COOKIE = ci_session=bkbuhhkcjdtpivljq3k9okrtotva8100; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 15:21:46.048 INFO [7005]: QUERY_STRING = /home/security -- 15:21:46.048 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:21:46.080 INFO [7005]: COREGRADE is stopping... -- 15:21:46.080 DEBUG [7005]: Closing database connection -- 15:21:46.080 SQL [7005]: pgsql_close() -- 15:21:46.307 INFO [7005]: COREGRADE is starting... -- 15:21:46.307 INFO [7005]: Version from config: 1.0 -- 15:21:46.307 DEBUG [7005]: Connecting to database... -- 15:21:46.307 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:21:46.307 SQL [7005]: pgsql_db_connect() -- 15:21:46.311 DEBUG [7005]: Database connection successful -- 15:21:46.311 INFO [7005]: _SERVER found -- 15:21:46.311 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 15:21:46.311 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 15:21:46.311 INFO [7005]: HTTP_COOKIE = ci_session=bkbuhhkcjdtpivljq3k9okrtotva8100; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 15:21:46.311 INFO [7005]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:21:46.311 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:21:46.323 INFO [7005]: COREGRADE is stopping... -- 15:21:46.323 DEBUG [7005]: Closing database connection -- 15:21:46.323 SQL [7005]: pgsql_close() -- 15:21:46.387 INFO [7005]: COREGRADE is starting... -- 15:21:46.387 INFO [7005]: Version from config: 1.0 -- 15:21:46.387 DEBUG [7005]: Connecting to database... -- 15:21:46.387 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:21:46.387 SQL [7005]: pgsql_db_connect() -- 15:21:46.391 DEBUG [7005]: Database connection successful -- 15:21:46.391 INFO [7005]: _SERVER found -- 15:21:46.391 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 15:21:46.391 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 15:21:46.391 INFO [7005]: HTTP_COOKIE = ci_session=bkbuhhkcjdtpivljq3k9okrtotva8100; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 15:21:46.391 INFO [7005]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:21:46.391 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:21:46.402 INFO [7005]: COREGRADE is stopping... -- 15:21:46.402 DEBUG [7005]: Closing database connection -- 15:21:46.402 SQL [7005]: pgsql_close() -- 15:22:02.812 INFO [7004]: COREGRADE is starting... -- 15:22:02.812 INFO [7004]: Version from config: 1.0 -- 15:22:02.812 DEBUG [7004]: Connecting to database... -- 15:22:02.812 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:22:02.812 SQL [7004]: pgsql_db_connect() -- 15:22:02.817 DEBUG [7004]: Database connection successful -- 15:22:02.817 INFO [7004]: _SERVER found -- 15:22:02.817 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 15:22:02.817 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 15:22:02.817 INFO [7004]: HTTP_COOKIE = ci_session=bkbuhhkcjdtpivljq3k9okrtotva8100; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 15:22:02.817 INFO [7004]: QUERY_STRING = /home/privacy -- 15:22:02.817 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:22:02.849 INFO [7004]: COREGRADE is stopping... -- 15:22:02.849 DEBUG [7004]: Closing database connection -- 15:22:02.849 SQL [7004]: pgsql_close() -- 15:22:03.138 INFO [7004]: COREGRADE is starting... -- 15:22:03.138 INFO [7004]: Version from config: 1.0 -- 15:22:03.138 DEBUG [7004]: Connecting to database... -- 15:22:03.138 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:22:03.138 SQL [7004]: pgsql_db_connect() -- 15:22:03.142 DEBUG [7004]: Database connection successful -- 15:22:03.142 INFO [7004]: _SERVER found -- 15:22:03.142 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 15:22:03.142 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 15:22:03.142 INFO [7004]: HTTP_COOKIE = ci_session=bkbuhhkcjdtpivljq3k9okrtotva8100; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 15:22:03.142 INFO [7004]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:22:03.142 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:22:03.154 INFO [7004]: COREGRADE is stopping... -- 15:22:03.154 DEBUG [7004]: Closing database connection -- 15:22:03.154 SQL [7004]: pgsql_close() -- 15:22:21.450 INFO [6929]: COREGRADE is starting... -- 15:22:21.450 INFO [6929]: Version from config: 1.0 -- 15:22:21.450 DEBUG [6929]: Connecting to database... -- 15:22:21.450 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:22:21.450 SQL [6929]: pgsql_db_connect() -- 15:22:21.454 DEBUG [6929]: Database connection successful -- 15:22:21.454 INFO [6929]: _SERVER found -- 15:22:21.454 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 15:22:21.454 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 15:22:21.454 INFO [6929]: HTTP_COOKIE = ci_session=bkbuhhkcjdtpivljq3k9okrtotva8100; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 15:22:21.454 INFO [6929]: QUERY_STRING = /home/privacy -- 15:22:21.454 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:22:21.486 INFO [6929]: COREGRADE is stopping... -- 15:22:21.486 DEBUG [6929]: Closing database connection -- 15:22:21.486 SQL [6929]: pgsql_close() -- 15:22:22.151 INFO [6929]: COREGRADE is starting... -- 15:22:22.152 INFO [6929]: Version from config: 1.0 -- 15:22:22.152 DEBUG [6929]: Connecting to database... -- 15:22:22.152 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:22:22.152 SQL [6929]: pgsql_db_connect() -- 15:22:22.156 DEBUG [6929]: Database connection successful -- 15:22:22.156 INFO [6929]: _SERVER found -- 15:22:22.156 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 15:22:22.156 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 15:22:22.156 INFO [6929]: HTTP_COOKIE = ci_session=bkbuhhkcjdtpivljq3k9okrtotva8100; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 15:22:22.156 INFO [6929]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:22:22.156 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:22:22.167 INFO [6929]: COREGRADE is stopping... -- 15:22:22.167 DEBUG [6929]: Closing database connection -- 15:22:22.167 SQL [6929]: pgsql_close() -- 15:24:29.077 INFO [8318]: COREGRADE is starting... -- 15:24:29.078 INFO [8318]: Version from config: 1.0 -- 15:24:29.078 DEBUG [8318]: Connecting to database... -- 15:24:29.078 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:24:29.078 SQL [8318]: pgsql_db_connect() -- 15:24:29.082 DEBUG [8318]: Database connection successful -- 15:24:29.082 INFO [8318]: _SERVER found -- 15:24:29.082 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 15:24:29.082 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 15:24:29.082 INFO [8318]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=offrqav63a904piloa7583kecud7j0uf -- 15:24:29.082 INFO [8318]: QUERY_STRING = -- 15:24:29.082 INFO [8318]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:24:29.114 INFO [8318]: COREGRADE is stopping... -- 15:24:29.114 DEBUG [8318]: Closing database connection -- 15:24:29.114 SQL [8318]: pgsql_close() -- 15:24:29.492 INFO [8318]: COREGRADE is starting... -- 15:24:29.492 INFO [8318]: Version from config: 1.0 -- 15:24:29.492 DEBUG [8318]: Connecting to database... -- 15:24:29.492 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:24:29.492 SQL [8318]: pgsql_db_connect() -- 15:24:29.496 DEBUG [8318]: Database connection successful -- 15:24:29.496 INFO [8318]: _SERVER found -- 15:24:29.496 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 15:24:29.496 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 15:24:29.496 INFO [8318]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=offrqav63a904piloa7583kecud7j0uf -- 15:24:29.496 INFO [8318]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:24:29.496 INFO [8318]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:24:29.507 INFO [8318]: COREGRADE is stopping... -- 15:24:29.507 DEBUG [8318]: Closing database connection -- 15:24:29.507 SQL [8318]: pgsql_close() -- 15:24:48.384 INFO [6928]: COREGRADE is starting... -- 15:24:48.384 INFO [6928]: Version from config: 1.0 -- 15:24:48.384 DEBUG [6928]: Connecting to database... -- 15:24:48.384 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:24:48.384 SQL [6928]: pgsql_db_connect() -- 15:24:48.388 DEBUG [6928]: Database connection successful -- 15:24:48.388 INFO [6928]: _SERVER found -- 15:24:48.388 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 15:24:48.388 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 15:24:48.388 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=offrqav63a904piloa7583kecud7j0uf; _gat_gtag_UA_54829827_2=1 -- 15:24:48.388 INFO [6928]: QUERY_STRING = /home/terms -- 15:24:48.388 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:24:48.421 INFO [6928]: COREGRADE is stopping... -- 15:24:48.421 DEBUG [6928]: Closing database connection -- 15:24:48.421 SQL [6928]: pgsql_close() -- 15:24:48.774 INFO [6928]: COREGRADE is starting... -- 15:24:48.774 INFO [6928]: Version from config: 1.0 -- 15:24:48.774 DEBUG [6928]: Connecting to database... -- 15:24:48.774 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:24:48.774 SQL [6928]: pgsql_db_connect() -- 15:24:48.779 DEBUG [6928]: Database connection successful -- 15:24:48.779 INFO [6928]: _SERVER found -- 15:24:48.779 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 15:24:48.779 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 15:24:48.779 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=offrqav63a904piloa7583kecud7j0uf; _gat_gtag_UA_54829827_2=1 -- 15:24:48.779 INFO [6928]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:24:48.779 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:24:48.790 INFO [6928]: COREGRADE is stopping... -- 15:24:48.790 DEBUG [6928]: Closing database connection -- 15:24:48.790 SQL [6928]: pgsql_close() -- 15:26:26.979 INFO [7002]: COREGRADE is starting... -- 15:26:26.980 INFO [7002]: Version from config: 1.0 -- 15:26:26.980 DEBUG [7002]: Connecting to database... -- 15:26:26.980 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:26:26.980 SQL [7002]: pgsql_db_connect() -- 15:26:26.984 DEBUG [7002]: Database connection successful -- 15:26:26.984 INFO [7002]: _SERVER found -- 15:26:26.984 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 15:26:26.984 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 15:26:26.984 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938 -- 15:26:26.984 INFO [7002]: QUERY_STRING = -- 15:26:26.984 INFO [7002]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:26:27.017 INFO [7002]: COREGRADE is stopping... -- 15:26:27.017 DEBUG [7002]: Closing database connection -- 15:26:27.017 SQL [7002]: pgsql_close() -- 15:26:27.247 INFO [7002]: COREGRADE is starting... -- 15:26:27.247 INFO [7002]: Version from config: 1.0 -- 15:26:27.247 DEBUG [7002]: Connecting to database... -- 15:26:27.247 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:26:27.247 SQL [7002]: pgsql_db_connect() -- 15:26:27.251 DEBUG [7002]: Database connection successful -- 15:26:27.251 INFO [7002]: _SERVER found -- 15:26:27.251 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 15:26:27.251 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 15:26:27.251 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=ggav3h55v76ebnn048vsfnia3fglunp6 -- 15:26:27.251 INFO [7002]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:26:27.251 INFO [7002]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:26:27.262 INFO [7002]: COREGRADE is stopping... -- 15:26:27.262 DEBUG [7002]: Closing database connection -- 15:26:27.262 SQL [7002]: pgsql_close() -- 15:29:14.754 INFO [6927]: COREGRADE is starting... -- 15:29:14.754 INFO [6927]: Version from config: 1.0 -- 15:29:14.754 DEBUG [6927]: Connecting to database... -- 15:29:14.754 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:29:14.754 SQL [6927]: pgsql_db_connect() -- 15:29:14.759 DEBUG [6927]: Database connection successful -- 15:29:14.759 INFO [6927]: _SERVER found -- 15:29:14.759 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 15:29:14.759 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 15:29:14.759 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561 -- 15:29:14.759 INFO [6927]: QUERY_STRING = /home/terms -- 15:29:14.759 INFO [6927]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:29:14.793 INFO [6927]: COREGRADE is stopping... -- 15:29:14.793 DEBUG [6927]: Closing database connection -- 15:29:14.793 SQL [6927]: pgsql_close() -- 15:29:18.529 INFO [6927]: COREGRADE is starting... -- 15:29:18.529 INFO [6927]: Version from config: 1.0 -- 15:29:18.529 DEBUG [6927]: Connecting to database... -- 15:29:18.529 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:29:18.529 SQL [6927]: pgsql_db_connect() -- 15:29:18.534 DEBUG [6927]: Database connection successful -- 15:29:18.534 INFO [6927]: _SERVER found -- 15:29:18.534 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 15:29:18.534 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 15:29:18.534 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=bvlvh51d2im4lq6uff6sv1na9ch2g4ug -- 15:29:18.534 INFO [6927]: QUERY_STRING = /home/privacy -- 15:29:18.534 INFO [6927]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:29:18.566 INFO [6927]: COREGRADE is stopping... -- 15:29:18.566 DEBUG [6927]: Closing database connection -- 15:29:18.566 SQL [6927]: pgsql_close() -- 15:29:20.888 INFO [6927]: COREGRADE is starting... -- 15:29:20.888 INFO [6927]: Version from config: 1.0 -- 15:29:20.888 DEBUG [6927]: Connecting to database... -- 15:29:20.888 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:29:20.888 SQL [6927]: pgsql_db_connect() -- 15:29:20.893 DEBUG [6927]: Database connection successful -- 15:29:20.893 INFO [6927]: _SERVER found -- 15:29:20.893 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 15:29:20.893 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 15:29:20.893 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=bvlvh51d2im4lq6uff6sv1na9ch2g4ug -- 15:29:20.893 INFO [6927]: QUERY_STRING = /home/security -- 15:29:20.893 INFO [6927]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:29:20.925 INFO [6927]: COREGRADE is stopping... -- 15:29:20.925 DEBUG [6927]: Closing database connection -- 15:29:20.925 SQL [6927]: pgsql_close() -- 15:29:26.873 INFO [7007]: COREGRADE is starting... -- 15:29:26.873 INFO [7007]: Version from config: 1.0 -- 15:29:26.873 DEBUG [7007]: Connecting to database... -- 15:29:26.873 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:29:26.873 SQL [7007]: pgsql_db_connect() -- 15:29:26.878 DEBUG [7007]: Database connection successful -- 15:29:26.878 INFO [7007]: _SERVER found -- 15:29:26.878 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 15:29:26.878 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 15:29:26.878 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=bvlvh51d2im4lq6uff6sv1na9ch2g4ug -- 15:29:26.878 INFO [7007]: QUERY_STRING = -- 15:29:26.878 INFO [7007]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:29:26.911 INFO [7007]: COREGRADE is stopping... -- 15:29:26.911 DEBUG [7007]: Closing database connection -- 15:29:26.911 SQL [7007]: pgsql_close() -- 15:29:27.098 INFO [7007]: COREGRADE is starting... -- 15:29:27.098 INFO [7007]: Version from config: 1.0 -- 15:29:27.098 DEBUG [7007]: Connecting to database... -- 15:29:27.098 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:29:27.098 SQL [7007]: pgsql_db_connect() -- 15:29:27.103 DEBUG [7007]: Database connection successful -- 15:29:27.103 INFO [7007]: _SERVER found -- 15:29:27.103 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 15:29:27.103 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 15:29:27.103 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=bvlvh51d2im4lq6uff6sv1na9ch2g4ug -- 15:29:27.103 INFO [7007]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:29:27.103 INFO [7007]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:29:27.114 INFO [7007]: COREGRADE is stopping... -- 15:29:27.114 DEBUG [7007]: Closing database connection -- 15:29:27.114 SQL [7007]: pgsql_close() -- 15:29:33.258 INFO [6925]: COREGRADE is starting... -- 15:29:33.258 INFO [6925]: Version from config: 1.0 -- 15:29:33.258 DEBUG [6925]: Connecting to database... -- 15:29:33.258 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:29:33.258 SQL [6925]: pgsql_db_connect() -- 15:29:33.263 DEBUG [6925]: Database connection successful -- 15:29:33.263 INFO [6925]: _SERVER found -- 15:29:33.263 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 15:29:33.263 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 15:29:33.263 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=bvlvh51d2im4lq6uff6sv1na9ch2g4ug; _gat_gtag_UA_54829827_2=1 -- 15:29:33.263 INFO [6925]: QUERY_STRING = /home/aboutus -- 15:29:33.263 INFO [6925]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:29:33.297 INFO [6925]: COREGRADE is stopping... -- 15:29:33.297 DEBUG [6925]: Closing database connection -- 15:29:33.297 SQL [6925]: pgsql_close() -- 15:29:33.494 INFO [6925]: COREGRADE is starting... -- 15:29:33.494 INFO [6925]: Version from config: 1.0 -- 15:29:33.494 DEBUG [6925]: Connecting to database... -- 15:29:33.494 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:29:33.494 SQL [6925]: pgsql_db_connect() -- 15:29:33.499 DEBUG [6925]: Database connection successful -- 15:29:33.499 INFO [6925]: _SERVER found -- 15:29:33.499 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 15:29:33.499 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 15:29:33.499 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=bvlvh51d2im4lq6uff6sv1na9ch2g4ug; _gat_gtag_UA_54829827_2=1 -- 15:29:33.499 INFO [6925]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:29:33.499 INFO [6925]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:29:33.511 INFO [6925]: COREGRADE is stopping... -- 15:29:33.511 DEBUG [6925]: Closing database connection -- 15:29:33.511 SQL [6925]: pgsql_close() -- 15:29:36.068 INFO [6925]: COREGRADE is starting... -- 15:29:36.068 INFO [6925]: Version from config: 1.0 -- 15:29:36.068 DEBUG [6925]: Connecting to database... -- 15:29:36.068 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:29:36.068 SQL [6925]: pgsql_db_connect() -- 15:29:36.073 DEBUG [6925]: Database connection successful -- 15:29:36.073 INFO [6925]: _SERVER found -- 15:29:36.073 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 15:29:36.073 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 15:29:36.073 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=bvlvh51d2im4lq6uff6sv1na9ch2g4ug; _gat_gtag_UA_54829827_2=1 -- 15:29:36.073 INFO [6925]: QUERY_STRING = -- 15:29:36.073 INFO [6925]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:29:36.105 INFO [6925]: COREGRADE is stopping... -- 15:29:36.105 DEBUG [6925]: Closing database connection -- 15:29:36.105 SQL [6925]: pgsql_close() -- 15:39:28.604 INFO [7006]: COREGRADE is starting... -- 15:39:28.605 INFO [7006]: Version from config: 1.0 -- 15:39:28.605 DEBUG [7006]: Connecting to database... -- 15:39:28.605 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:39:28.605 SQL [7006]: pgsql_db_connect() -- 15:39:28.609 DEBUG [7006]: Database connection successful -- 15:39:28.609 INFO [7006]: _SERVER found -- 15:39:28.609 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 15:39:28.609 INFO [7006]: SERVER_NAME = works.coregrade.com -- 15:39:28.609 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275 -- 15:39:28.609 INFO [7006]: QUERY_STRING = -- 15:39:28.609 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:39:28.644 INFO [7006]: COREGRADE is stopping... -- 15:39:28.644 DEBUG [7006]: Closing database connection -- 15:39:28.644 SQL [7006]: pgsql_close() -- 15:39:29.964 INFO [6929]: COREGRADE is starting... -- 15:39:29.964 INFO [6929]: Version from config: 1.0 -- 15:39:29.964 DEBUG [6929]: Connecting to database... -- 15:39:29.965 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:39:29.965 SQL [6929]: pgsql_db_connect() -- 15:39:29.976 INFO [7004]: COREGRADE is starting... -- 15:39:29.977 INFO [7004]: Version from config: 1.0 -- 15:39:29.977 DEBUG [7004]: Connecting to database... -- 15:39:29.977 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:39:29.977 SQL [7004]: pgsql_db_connect() -- 15:39:29.969 DEBUG [6929]: Database connection successful -- 15:39:29.969 INFO [6929]: _SERVER found -- 15:39:29.969 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 15:39:29.969 INFO [6929]: SERVER_NAME = works.coregrade.com -- 15:39:29.969 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=luh79c3t58b69tae5bivdjp77k9o9epq; _gat_gtag_UA_54829827_2=1 -- 15:39:29.969 INFO [6929]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 15:39:29.969 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:39:29.982 INFO [6929]: COREGRADE is stopping... -- 15:39:29.982 DEBUG [6929]: Closing database connection -- 15:39:29.982 SQL [6929]: pgsql_close() -- 15:39:29.981 DEBUG [7004]: Database connection successful -- 15:39:29.981 INFO [7004]: _SERVER found -- 15:39:29.981 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 15:39:29.981 INFO [7004]: SERVER_NAME = works.coregrade.com -- 15:39:29.981 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=luh79c3t58b69tae5bivdjp77k9o9epq; _gat_gtag_UA_54829827_2=1 -- 15:39:29.981 INFO [7004]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:39:29.981 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:39:29.992 INFO [7004]: COREGRADE is stopping... -- 15:39:29.992 DEBUG [7004]: Closing database connection -- 15:39:29.992 SQL [7004]: pgsql_close() -- 15:48:47.008 INFO [8318]: COREGRADE is starting... -- 15:48:47.009 INFO [8318]: Version from config: 1.0 -- 15:48:47.009 DEBUG [8318]: Connecting to database... -- 15:48:47.009 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:48:47.009 SQL [8318]: pgsql_db_connect() -- 15:48:47.014 DEBUG [8318]: Database connection successful -- 15:48:47.014 INFO [8318]: _SERVER found -- 15:48:47.014 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 15:48:47.014 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 15:48:47.014 INFO [8318]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=ggav3h55v76ebnn048vsfnia3fglunp6 -- 15:48:47.014 INFO [8318]: QUERY_STRING = -- 15:48:47.014 INFO [8318]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:48:47.048 INFO [8318]: COREGRADE is stopping... -- 15:48:47.048 DEBUG [8318]: Closing database connection -- 15:48:47.048 SQL [8318]: pgsql_close() -- 15:48:47.351 INFO [8318]: COREGRADE is starting... -- 15:48:47.351 INFO [8318]: Version from config: 1.0 -- 15:48:47.351 DEBUG [8318]: Connecting to database... -- 15:48:47.351 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:48:47.351 SQL [8318]: pgsql_db_connect() -- 15:48:47.356 DEBUG [8318]: Database connection successful -- 15:48:47.356 INFO [8318]: _SERVER found -- 15:48:47.356 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 15:48:47.356 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 15:48:47.356 INFO [8318]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=tulvk9u5q9ujnvv4uonphd1gnifaso36 -- 15:48:47.356 INFO [8318]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:48:47.356 INFO [8318]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:48:47.367 INFO [8318]: COREGRADE is stopping... -- 15:48:47.367 DEBUG [8318]: Closing database connection -- 15:48:47.367 SQL [8318]: pgsql_close() -- 16:03:45.917 INFO [6928]: COREGRADE is starting... -- 16:03:45.917 INFO [6928]: Version from config: 1.0 -- 16:03:45.917 DEBUG [6928]: Connecting to database... -- 16:03:45.917 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:03:45.917 SQL [6928]: pgsql_db_connect() -- 16:03:45.923 DEBUG [6928]: Database connection successful -- 16:03:45.923 INFO [6928]: _SERVER found -- 16:03:45.923 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 16:03:45.923 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 16:03:45.923 INFO [6928]: QUERY_STRING = /images/logo.png -- 16:03:45.923 INFO [6928]: HTTP_X_FORWARDED_FOR = 66.249.91.247 -- 16:03:45.936 INFO [6928]: COREGRADE is stopping... -- 16:03:45.936 DEBUG [6928]: Closing database connection -- 16:03:45.936 SQL [6928]: pgsql_close() -- 16:03:50.175 INFO [6928]: COREGRADE is starting... -- 16:03:50.175 INFO [6928]: Version from config: 1.0 -- 16:03:50.175 DEBUG [6928]: Connecting to database... -- 16:03:50.175 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:03:50.175 SQL [6928]: pgsql_db_connect() -- 16:03:50.180 DEBUG [6928]: Database connection successful -- 16:03:50.180 INFO [6928]: _SERVER found -- 16:03:50.180 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 16:03:50.180 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 16:03:50.180 INFO [6928]: QUERY_STRING = /images/logo.png -- 16:03:50.180 INFO [6928]: HTTP_X_FORWARDED_FOR = 66.249.88.26 -- 16:03:50.191 INFO [6928]: COREGRADE is stopping... -- 16:03:50.191 DEBUG [6928]: Closing database connection -- 16:03:50.191 SQL [6928]: pgsql_close() -- 16:03:55.851 INFO [7002]: COREGRADE is starting... -- 16:03:55.851 INFO [7002]: Version from config: 1.0 -- 16:03:55.851 DEBUG [7002]: Connecting to database... -- 16:03:55.851 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:03:55.851 SQL [7002]: pgsql_db_connect() -- 16:03:55.855 DEBUG [7002]: Database connection successful -- 16:03:55.855 INFO [7002]: _SERVER found -- 16:03:55.855 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 16:03:55.855 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 16:03:55.855 INFO [7002]: QUERY_STRING = /images/logo.png -- 16:03:55.855 INFO [7002]: HTTP_X_FORWARDED_FOR = 66.249.88.28 -- 16:03:55.867 INFO [7002]: COREGRADE is stopping... -- 16:03:55.867 DEBUG [7002]: Closing database connection -- 16:03:55.867 SQL [7002]: pgsql_close() -- 16:07:34.152 INFO [6927]: COREGRADE is starting... -- 16:07:34.152 INFO [6927]: Version from config: 1.0 -- 16:07:34.152 DEBUG [6927]: Connecting to database... -- 16:07:34.152 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:07:34.152 SQL [6927]: pgsql_db_connect() -- 16:07:34.157 DEBUG [6927]: Database connection successful -- 16:07:34.157 INFO [6927]: _SERVER found -- 16:07:34.157 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 16:07:34.157 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 16:07:34.157 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=bvlvh51d2im4lq6uff6sv1na9ch2g4ug -- 16:07:34.157 INFO [6927]: QUERY_STRING = -- 16:07:34.157 INFO [6927]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:07:34.192 INFO [6927]: COREGRADE is stopping... -- 16:07:34.192 DEBUG [6927]: Closing database connection -- 16:07:34.192 SQL [6927]: pgsql_close() -- 16:07:34.355 INFO [6927]: COREGRADE is starting... -- 16:07:34.355 INFO [6927]: Version from config: 1.0 -- 16:07:34.355 DEBUG [6927]: Connecting to database... -- 16:07:34.355 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:07:34.355 SQL [6927]: pgsql_db_connect() -- 16:07:34.359 DEBUG [6927]: Database connection successful -- 16:07:34.359 INFO [6927]: _SERVER found -- 16:07:34.359 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 16:07:34.359 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 16:07:34.359 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=b69q3oh516pgi75c5tq1sdq2h8ddsl05 -- 16:07:34.359 INFO [6927]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:07:34.359 INFO [6927]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:07:34.371 INFO [6927]: COREGRADE is stopping... -- 16:07:34.371 DEBUG [6927]: Closing database connection -- 16:07:34.371 SQL [6927]: pgsql_close() -- 16:07:39.091 INFO [6927]: COREGRADE is starting... -- 16:07:39.091 INFO [6927]: Version from config: 1.0 -- 16:07:39.091 DEBUG [6927]: Connecting to database... -- 16:07:39.091 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:07:39.091 SQL [6927]: pgsql_db_connect() -- 16:07:39.095 DEBUG [6927]: Database connection successful -- 16:07:39.095 INFO [6927]: _SERVER found -- 16:07:39.095 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 16:07:39.095 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 16:07:39.095 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=b69q3oh516pgi75c5tq1sdq2h8ddsl05; _gat_gtag_UA_54829827_2=1 -- 16:07:39.095 INFO [6927]: QUERY_STRING = -- 16:07:39.095 INFO [6927]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:07:39.127 INFO [6927]: COREGRADE is stopping... -- 16:07:39.127 DEBUG [6927]: Closing database connection -- 16:07:39.127 SQL [6927]: pgsql_close() -- 16:07:53.810 INFO [7007]: COREGRADE is starting... -- 16:07:53.810 INFO [7007]: Version from config: 1.0 -- 16:07:53.810 DEBUG [7007]: Connecting to database... -- 16:07:53.810 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:07:53.810 SQL [7007]: pgsql_db_connect() -- 16:07:53.814 DEBUG [7007]: Database connection successful -- 16:07:53.814 INFO [7007]: _SERVER found -- 16:07:53.814 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 16:07:53.814 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 16:07:53.814 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878 -- 16:07:53.814 INFO [7007]: QUERY_STRING = /auth -- 16:07:53.814 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:07:53.848 INFO [7007]: COREGRADE is stopping... -- 16:07:53.848 DEBUG [7007]: Closing database connection -- 16:07:53.848 SQL [7007]: pgsql_close() -- 16:11:14.813 INFO [6925]: COREGRADE is starting... -- 16:11:14.813 INFO [6925]: Version from config: 1.0 -- 16:11:14.813 DEBUG [6925]: Connecting to database... -- 16:11:14.813 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:14.813 SQL [6925]: pgsql_db_connect() -- 16:11:14.817 DEBUG [6925]: Database connection successful -- 16:11:14.817 INFO [6925]: _SERVER found -- 16:11:14.817 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 16:11:14.817 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 16:11:14.817 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=b69q3oh516pgi75c5tq1sdq2h8ddsl05 -- 16:11:14.817 INFO [6925]: QUERY_STRING = /home/aboutus -- 16:11:14.817 INFO [6925]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:11:14.851 INFO [6925]: COREGRADE is stopping... -- 16:11:14.851 DEBUG [6925]: Closing database connection -- 16:11:14.851 SQL [6925]: pgsql_close() -- 16:11:15.063 INFO [6925]: COREGRADE is starting... -- 16:11:15.064 INFO [6925]: Version from config: 1.0 -- 16:11:15.064 DEBUG [6925]: Connecting to database... -- 16:11:15.064 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:15.064 SQL [6925]: pgsql_db_connect() -- 16:11:15.068 DEBUG [6925]: Database connection successful -- 16:11:15.068 INFO [6925]: _SERVER found -- 16:11:15.068 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 16:11:15.068 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 16:11:15.068 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=b69q3oh516pgi75c5tq1sdq2h8ddsl05 -- 16:11:15.068 INFO [6925]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:11:15.068 INFO [6925]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:11:15.079 INFO [6925]: COREGRADE is stopping... -- 16:11:15.079 DEBUG [6925]: Closing database connection -- 16:11:15.079 SQL [6925]: pgsql_close() -- 16:12:12.839 INFO [7006]: COREGRADE is starting... -- 16:12:12.839 INFO [7006]: Version from config: 1.0 -- 16:12:12.839 DEBUG [7006]: Connecting to database... -- 16:12:12.839 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:12:12.839 SQL [7006]: pgsql_db_connect() -- 16:12:12.844 DEBUG [7006]: Database connection successful -- 16:12:12.844 INFO [7006]: _SERVER found -- 16:12:12.844 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 16:12:12.844 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 16:12:12.844 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=b69q3oh516pgi75c5tq1sdq2h8ddsl05 -- 16:12:12.844 INFO [7006]: QUERY_STRING = /home/aboutus -- 16:12:12.844 INFO [7006]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:12:12.877 INFO [7006]: COREGRADE is stopping... -- 16:12:12.877 DEBUG [7006]: Closing database connection -- 16:12:12.877 SQL [7006]: pgsql_close() -- 16:12:13.029 INFO [7006]: COREGRADE is starting... -- 16:12:13.029 INFO [7006]: Version from config: 1.0 -- 16:12:13.029 DEBUG [7006]: Connecting to database... -- 16:12:13.029 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:12:13.029 SQL [7006]: pgsql_db_connect() -- 16:12:13.033 DEBUG [7006]: Database connection successful -- 16:12:13.033 INFO [7006]: _SERVER found -- 16:12:13.033 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 16:12:13.033 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 16:12:13.033 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=b69q3oh516pgi75c5tq1sdq2h8ddsl05 -- 16:12:13.033 INFO [7006]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:12:13.033 INFO [7006]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:12:13.045 INFO [7006]: COREGRADE is stopping... -- 16:12:13.045 DEBUG [7006]: Closing database connection -- 16:12:13.045 SQL [7006]: pgsql_close() -- 16:12:18.258 INFO [7005]: COREGRADE is starting... -- 16:12:18.258 INFO [7005]: Version from config: 1.0 -- 16:12:18.258 DEBUG [7005]: Connecting to database... -- 16:12:18.258 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:12:18.258 SQL [7005]: pgsql_db_connect() -- 16:12:18.263 DEBUG [7005]: Database connection successful -- 16:12:18.263 INFO [7005]: _SERVER found -- 16:12:18.263 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 16:12:18.263 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 16:12:18.263 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=b69q3oh516pgi75c5tq1sdq2h8ddsl05 -- 16:12:18.263 INFO [7005]: QUERY_STRING = /home/aboutus -- 16:12:18.263 INFO [7005]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:12:18.295 INFO [7005]: COREGRADE is stopping... -- 16:12:18.295 DEBUG [7005]: Closing database connection -- 16:12:18.295 SQL [7005]: pgsql_close() -- 16:42:04.830 INFO [7004]: COREGRADE is starting... -- 16:42:04.831 INFO [7004]: Version from config: 1.0 -- 16:42:04.831 DEBUG [7004]: Connecting to database... -- 16:42:04.831 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:42:04.831 SQL [7004]: pgsql_db_connect() -- 16:42:04.835 DEBUG [7004]: Database connection successful -- 16:42:04.835 INFO [7004]: _SERVER found -- 16:42:04.835 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 16:42:04.835 INFO [7004]: SERVER_NAME = works.coregrade.com -- 16:42:04.835 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=luh79c3t58b69tae5bivdjp77k9o9epq -- 16:42:04.835 INFO [7004]: QUERY_STRING = /home/terms -- 16:42:04.835 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:42:04.870 INFO [7004]: COREGRADE is stopping... -- 16:42:04.870 DEBUG [7004]: Closing database connection -- 16:42:04.870 SQL [7004]: pgsql_close() -- 16:42:05.338 INFO [6929]: COREGRADE is starting... -- 16:42:05.338 INFO [6929]: Version from config: 1.0 -- 16:42:05.338 DEBUG [6929]: Connecting to database... -- 16:42:05.338 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:42:05.338 SQL [6929]: pgsql_db_connect() -- 16:42:05.342 DEBUG [6929]: Database connection successful -- 16:42:05.342 INFO [6929]: _SERVER found -- 16:42:05.342 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 16:42:05.342 INFO [6929]: SERVER_NAME = works.coregrade.com -- 16:42:05.342 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=ubdru4ts7ufseum80ak5ri6t5v790ou2 -- 16:42:05.342 INFO [6929]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:42:05.342 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:42:05.354 INFO [6929]: COREGRADE is stopping... -- 16:42:05.354 DEBUG [6929]: Closing database connection -- 16:42:05.354 SQL [6929]: pgsql_close() -- 16:42:05.592 INFO [6929]: COREGRADE is starting... -- 16:42:05.592 INFO [6929]: Version from config: 1.0 -- 16:42:05.592 DEBUG [6929]: Connecting to database... -- 16:42:05.592 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:42:05.592 SQL [6929]: pgsql_db_connect() -- 16:42:05.597 DEBUG [6929]: Database connection successful -- 16:42:05.597 INFO [6929]: _SERVER found -- 16:42:05.597 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 16:42:05.597 INFO [6929]: SERVER_NAME = works.coregrade.com -- 16:42:05.597 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=ubdru4ts7ufseum80ak5ri6t5v790ou2 -- 16:42:05.597 INFO [6929]: QUERY_STRING = /assets2/data/locales/en.json -- 16:42:05.597 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:42:05.608 INFO [6929]: COREGRADE is stopping... -- 16:42:05.608 DEBUG [6929]: Closing database connection -- 16:42:05.608 SQL [6929]: pgsql_close() -- 16:44:01.977 INFO [6927]: COREGRADE is starting... -- 16:44:01.977 INFO [6927]: Version from config: 1.0 -- 16:44:01.977 DEBUG [6927]: Connecting to database... -- 16:44:01.977 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:44:01.977 SQL [6927]: pgsql_db_connect() -- 16:44:01.981 DEBUG [6927]: Database connection successful -- 16:44:01.981 INFO [6927]: _SERVER found -- 16:44:01.981 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 16:44:01.981 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 16:44:01.981 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=offrqav63a904piloa7583kecud7j0uf -- 16:44:01.981 INFO [6927]: QUERY_STRING = -- 16:44:01.981 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:44:02.015 INFO [6927]: COREGRADE is stopping... -- 16:44:02.015 DEBUG [6927]: Closing database connection -- 16:44:02.015 SQL [6927]: pgsql_close() -- 16:44:02.421 INFO [6927]: COREGRADE is starting... -- 16:44:02.422 INFO [6927]: Version from config: 1.0 -- 16:44:02.422 DEBUG [6927]: Connecting to database... -- 16:44:02.422 DEBUG [6927]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:44:02.422 SQL [6927]: pgsql_db_connect() -- 16:44:02.426 DEBUG [6927]: Database connection successful -- 16:44:02.426 INFO [6927]: _SERVER found -- 16:44:02.426 INFO [6927]: REMOTE_ADDR = 10.0.0.15 -- 16:44:02.426 INFO [6927]: SERVER_NAME = oameye.works.coregrade.com -- 16:44:02.426 INFO [6927]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=0jjslp4vbnlm5bkplh9rf7tdklc9panq -- 16:44:02.426 INFO [6927]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:44:02.426 INFO [6927]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:44:02.437 INFO [6927]: COREGRADE is stopping... -- 16:44:02.437 DEBUG [6927]: Closing database connection -- 16:44:02.437 SQL [6927]: pgsql_close() -- 16:44:08.049 INFO [7007]: COREGRADE is starting... -- 16:44:08.049 INFO [7007]: Version from config: 1.0 -- 16:44:08.049 DEBUG [7007]: Connecting to database... -- 16:44:08.049 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:44:08.049 SQL [7007]: pgsql_db_connect() -- 16:44:08.053 DEBUG [7007]: Database connection successful -- 16:44:08.053 INFO [7007]: _SERVER found -- 16:44:08.053 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 16:44:08.053 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 16:44:08.053 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=0jjslp4vbnlm5bkplh9rf7tdklc9panq; _gat_gtag_UA_54829827_2=1 -- 16:44:08.053 INFO [7007]: QUERY_STRING = /home/terms -- 16:44:08.053 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:44:08.086 INFO [7007]: COREGRADE is stopping... -- 16:44:08.086 DEBUG [7007]: Closing database connection -- 16:44:08.086 SQL [7007]: pgsql_close() -- 16:44:08.473 INFO [7007]: COREGRADE is starting... -- 16:44:08.474 INFO [7007]: Version from config: 1.0 -- 16:44:08.474 DEBUG [7007]: Connecting to database... -- 16:44:08.474 DEBUG [7007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:44:08.474 SQL [7007]: pgsql_db_connect() -- 16:44:08.478 DEBUG [7007]: Database connection successful -- 16:44:08.478 INFO [7007]: _SERVER found -- 16:44:08.478 INFO [7007]: REMOTE_ADDR = 10.0.0.15 -- 16:44:08.478 INFO [7007]: SERVER_NAME = oameye.works.coregrade.com -- 16:44:08.478 INFO [7007]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=0jjslp4vbnlm5bkplh9rf7tdklc9panq; _gat_gtag_UA_54829827_2=1 -- 16:44:08.478 INFO [7007]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:44:08.478 INFO [7007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:44:08.489 INFO [7007]: COREGRADE is stopping... -- 16:44:08.489 DEBUG [7007]: Closing database connection -- 16:44:08.489 SQL [7007]: pgsql_close() -- 16:45:20.601 INFO [6925]: COREGRADE is starting... -- 16:45:20.601 INFO [6925]: Version from config: 1.0 -- 16:45:20.601 DEBUG [6925]: Connecting to database... -- 16:45:20.601 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:45:20.601 SQL [6925]: pgsql_db_connect() -- 16:45:20.605 DEBUG [6925]: Database connection successful -- 16:45:20.605 INFO [6925]: _SERVER found -- 16:45:20.605 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 16:45:20.605 INFO [6925]: SERVER_NAME = works.coregrade.com -- 16:45:20.605 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=ubdru4ts7ufseum80ak5ri6t5v790ou2 -- 16:45:20.605 INFO [6925]: QUERY_STRING = -- 16:45:20.605 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:45:20.639 INFO [6925]: COREGRADE is stopping... -- 16:45:20.639 DEBUG [6925]: Closing database connection -- 16:45:20.639 SQL [6925]: pgsql_close() -- 16:45:21.542 INFO [7006]: COREGRADE is starting... -- 16:45:21.542 INFO [7006]: Version from config: 1.0 -- 16:45:21.542 DEBUG [7006]: Connecting to database... -- 16:45:21.542 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:45:21.542 SQL [7006]: pgsql_db_connect() -- 16:45:21.548 INFO [6928]: COREGRADE is starting... -- 16:45:21.548 INFO [6928]: Version from config: 1.0 -- 16:45:21.548 DEBUG [6928]: Connecting to database... -- 16:45:21.548 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:45:21.548 SQL [6928]: pgsql_db_connect() -- 16:45:21.546 DEBUG [7006]: Database connection successful -- 16:45:21.546 INFO [7006]: _SERVER found -- 16:45:21.546 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 16:45:21.546 INFO [7006]: SERVER_NAME = works.coregrade.com -- 16:45:21.546 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=ubdru4ts7ufseum80ak5ri6t5v790ou2 -- 16:45:21.546 INFO [7006]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 16:45:21.546 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:45:21.559 INFO [7006]: COREGRADE is stopping... -- 16:45:21.559 DEBUG [7006]: Closing database connection -- 16:45:21.559 SQL [7006]: pgsql_close() -- 16:45:21.552 DEBUG [6928]: Database connection successful -- 16:45:21.552 INFO [6928]: _SERVER found -- 16:45:21.552 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 16:45:21.552 INFO [6928]: SERVER_NAME = works.coregrade.com -- 16:45:21.552 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=ubdru4ts7ufseum80ak5ri6t5v790ou2 -- 16:45:21.552 INFO [6928]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:45:21.552 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:45:21.564 INFO [6928]: COREGRADE is stopping... -- 16:45:21.564 DEBUG [6928]: Closing database connection -- 16:45:21.564 SQL [6928]: pgsql_close() -- 16:45:27.564 INFO [6929]: COREGRADE is starting... -- 16:45:27.565 INFO [6929]: Version from config: 1.0 -- 16:45:27.565 DEBUG [6929]: Connecting to database... -- 16:45:27.565 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:45:27.565 SQL [6929]: pgsql_db_connect() -- 16:45:27.569 DEBUG [6929]: Database connection successful -- 16:45:27.569 INFO [6929]: _SERVER found -- 16:45:27.569 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 16:45:27.569 INFO [6929]: SERVER_NAME = works.coregrade.com -- 16:45:27.569 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=ubdru4ts7ufseum80ak5ri6t5v790ou2; _gat_gtag_UA_54829827_2=1 -- 16:45:27.569 INFO [6929]: QUERY_STRING = /home/terms -- 16:45:27.569 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:45:27.601 INFO [6929]: COREGRADE is stopping... -- 16:45:27.601 DEBUG [6929]: Closing database connection -- 16:45:27.601 SQL [6929]: pgsql_close() -- 16:45:28.038 INFO [6929]: COREGRADE is starting... -- 16:45:28.039 INFO [6929]: Version from config: 1.0 -- 16:45:28.039 DEBUG [6929]: Connecting to database... -- 16:45:28.039 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:45:28.039 SQL [6929]: pgsql_db_connect() -- 16:45:28.043 DEBUG [6929]: Database connection successful -- 16:45:28.043 INFO [6929]: _SERVER found -- 16:45:28.043 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 16:45:28.043 INFO [6929]: SERVER_NAME = works.coregrade.com -- 16:45:28.043 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=ubdru4ts7ufseum80ak5ri6t5v790ou2; _gat_gtag_UA_54829827_2=1 -- 16:45:28.043 INFO [6929]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:45:28.043 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:45:28.054 INFO [6929]: COREGRADE is stopping... -- 16:45:28.054 DEBUG [6929]: Closing database connection -- 16:45:28.054 SQL [6929]: pgsql_close() -- 16:45:28.155 INFO [6929]: COREGRADE is starting... -- 16:45:28.155 INFO [6929]: Version from config: 1.0 -- 16:45:28.155 DEBUG [6929]: Connecting to database... -- 16:45:28.155 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:45:28.155 SQL [6929]: pgsql_db_connect() -- 16:45:28.159 DEBUG [6929]: Database connection successful -- 16:45:28.159 INFO [6929]: _SERVER found -- 16:45:28.159 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 16:45:28.159 INFO [6929]: SERVER_NAME = works.coregrade.com -- 16:45:28.159 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=ubdru4ts7ufseum80ak5ri6t5v790ou2; _gat_gtag_UA_54829827_2=1 -- 16:45:28.159 INFO [6929]: QUERY_STRING = /assets2/data/locales/en.json -- 16:45:28.159 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:45:28.170 INFO [6929]: COREGRADE is stopping... -- 16:45:28.170 DEBUG [6929]: Closing database connection -- 16:45:28.170 SQL [6929]: pgsql_close() -- 16:45:44.756 INFO [12632]: COREGRADE is starting... -- 16:45:44.757 INFO [12632]: Version from config: 1.0 -- 16:45:44.757 DEBUG [12632]: Connecting to database... -- 16:45:44.757 DEBUG [12632]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:45:44.757 SQL [12632]: pgsql_db_connect() -- 16:45:44.761 DEBUG [12632]: Database connection successful -- 16:45:44.761 INFO [12632]: _SERVER found -- 16:45:44.761 INFO [12632]: REMOTE_ADDR = 10.0.0.15 -- 16:45:44.761 INFO [12632]: SERVER_NAME = oameye.works.coregrade.com -- 16:45:44.761 INFO [12632]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1647021683.1586790185; ci_session=pnjtkscites57v7603lst92jhmlrk3cb -- 16:45:44.761 INFO [12632]: QUERY_STRING = /auth -- 16:45:44.761 INFO [12632]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:45:44.800 INFO [12632]: COREGRADE is stopping... -- 16:45:44.800 DEBUG [12632]: Closing database connection -- 16:45:44.800 SQL [12632]: pgsql_close() -- 16:45:50.818 INFO [12633]: COREGRADE is starting... -- 16:45:50.818 INFO [12633]: Version from config: 1.0 -- 16:45:50.818 DEBUG [12633]: Connecting to database... -- 16:45:50.818 DEBUG [12633]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:45:50.818 SQL [12633]: pgsql_db_connect() -- 16:45:50.822 DEBUG [12633]: Database connection successful -- 16:45:50.822 INFO [12633]: _SERVER found -- 16:45:50.822 INFO [12633]: REMOTE_ADDR = 10.0.0.15 -- 16:45:50.822 INFO [12633]: SERVER_NAME = oameye.works.coregrade.com -- 16:45:50.822 INFO [12633]: HTTP_COOKIE = ci_session=bkbuhhkcjdtpivljq3k9okrtotva8100; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 16:45:50.822 INFO [12633]: QUERY_STRING = /home/aboutus -- 16:45:50.823 INFO [12633]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:45:50.861 INFO [12633]: COREGRADE is stopping... -- 16:45:50.861 DEBUG [12633]: Closing database connection -- 16:45:50.861 SQL [12633]: pgsql_close() -- 16:45:51.259 INFO [6928]: COREGRADE is starting... -- 16:45:51.259 INFO [6928]: Version from config: 1.0 -- 16:45:51.259 DEBUG [6928]: Connecting to database... -- 16:45:51.259 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:45:51.259 SQL [6928]: pgsql_db_connect() -- 16:45:51.263 DEBUG [6928]: Database connection successful -- 16:45:51.263 INFO [6928]: _SERVER found -- 16:45:51.263 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 16:45:51.263 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 16:45:51.263 INFO [6928]: HTTP_COOKIE = ci_session=cp54pb77s0eehfok233uo9u84ij7om21; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 16:45:51.263 INFO [6928]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:45:51.263 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:45:51.275 INFO [6928]: COREGRADE is stopping... -- 16:45:51.275 DEBUG [6928]: Closing database connection -- 16:45:51.275 SQL [6928]: pgsql_close() -- 16:45:59.092 INFO [6925]: COREGRADE is starting... -- 16:45:59.093 INFO [6925]: Version from config: 1.0 -- 16:45:59.093 DEBUG [6925]: Connecting to database... -- 16:45:59.093 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:45:59.093 SQL [6925]: pgsql_db_connect() -- 16:45:59.097 DEBUG [6925]: Database connection successful -- 16:45:59.097 INFO [6925]: _SERVER found -- 16:45:59.097 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 16:45:59.097 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 16:45:59.097 INFO [6925]: HTTP_COOKIE = ci_session=cp54pb77s0eehfok233uo9u84ij7om21; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 16:45:59.097 INFO [6925]: QUERY_STRING = /home/terms -- 16:45:59.097 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:45:59.128 INFO [6925]: COREGRADE is stopping... -- 16:45:59.128 DEBUG [6925]: Closing database connection -- 16:45:59.128 SQL [6925]: pgsql_close() -- 16:45:59.543 INFO [6925]: COREGRADE is starting... -- 16:45:59.543 INFO [6925]: Version from config: 1.0 -- 16:45:59.543 DEBUG [6925]: Connecting to database... -- 16:45:59.543 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:45:59.543 SQL [6925]: pgsql_db_connect() -- 16:45:59.547 DEBUG [6925]: Database connection successful -- 16:45:59.547 INFO [6925]: _SERVER found -- 16:45:59.547 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 16:45:59.547 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 16:45:59.547 INFO [6925]: HTTP_COOKIE = ci_session=cp54pb77s0eehfok233uo9u84ij7om21; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 16:45:59.547 INFO [6925]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:45:59.547 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:45:59.558 INFO [6925]: COREGRADE is stopping... -- 16:45:59.558 DEBUG [6925]: Closing database connection -- 16:45:59.558 SQL [6925]: pgsql_close() -- 16:56:00.449 INFO [7005]: COREGRADE is starting... -- 16:56:00.449 INFO [7005]: Version from config: 1.0 -- 16:56:00.449 DEBUG [7005]: Connecting to database... -- 16:56:00.449 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:00.449 SQL [7005]: pgsql_db_connect() -- 16:56:00.453 DEBUG [7005]: Database connection successful -- 16:56:00.453 INFO [7005]: _SERVER found -- 16:56:00.453 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 16:56:00.453 INFO [7005]: SERVER_NAME = works.coregrade.com -- 16:56:00.453 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=ubdru4ts7ufseum80ak5ri6t5v790ou2 -- 16:56:00.453 INFO [7005]: QUERY_STRING = -- 16:56:00.453 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:56:00.488 INFO [7005]: COREGRADE is stopping... -- 16:56:00.488 DEBUG [7005]: Closing database connection -- 16:56:00.488 SQL [7005]: pgsql_close() -- 16:56:00.995 INFO [7005]: COREGRADE is starting... -- 16:56:00.996 INFO [7005]: Version from config: 1.0 -- 16:56:00.996 DEBUG [7005]: Connecting to database... -- 16:56:00.996 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:00.996 SQL [7005]: pgsql_db_connect() -- 16:56:00.000 DEBUG [7005]: Database connection successful -- 16:56:00.000 INFO [7005]: _SERVER found -- 16:56:00.000 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 16:56:00.000 INFO [7005]: SERVER_NAME = works.coregrade.com -- 16:56:00.000 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=r5srse97ggddke36hdr7pspsdmmdo1em -- 16:56:00.000 INFO [7005]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 16:56:00.000 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:56:01.011 INFO [7005]: COREGRADE is stopping... -- 16:56:01.011 DEBUG [7005]: Closing database connection -- 16:56:01.011 SQL [7005]: pgsql_close() -- 16:56:01.041 INFO [7004]: COREGRADE is starting... -- 16:56:01.041 INFO [7004]: Version from config: 1.0 -- 16:56:01.041 DEBUG [7004]: Connecting to database... -- 16:56:01.041 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:01.041 SQL [7004]: pgsql_db_connect() -- 16:56:01.045 DEBUG [7004]: Database connection successful -- 16:56:01.045 INFO [7004]: _SERVER found -- 16:56:01.045 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 16:56:01.045 INFO [7004]: SERVER_NAME = works.coregrade.com -- 16:56:01.045 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=r5srse97ggddke36hdr7pspsdmmdo1em -- 16:56:01.045 INFO [7004]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:56:01.045 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:56:01.057 INFO [7004]: COREGRADE is stopping... -- 16:56:01.057 DEBUG [7004]: Closing database connection -- 16:56:01.057 SQL [7004]: pgsql_close() -- 16:56:07.803 INFO [7002]: COREGRADE is starting... -- 16:56:07.803 INFO [7002]: Version from config: 1.0 -- 16:56:07.803 DEBUG [7002]: Connecting to database... -- 16:56:07.803 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:07.803 SQL [7002]: pgsql_db_connect() -- 16:56:07.807 DEBUG [7002]: Database connection successful -- 16:56:07.807 INFO [7002]: _SERVER found -- 16:56:07.807 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 16:56:07.807 INFO [7002]: SERVER_NAME = works.coregrade.com -- 16:56:07.807 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=r5srse97ggddke36hdr7pspsdmmdo1em; _gat_gtag_UA_54829827_2=1 -- 16:56:07.807 INFO [7002]: QUERY_STRING = /home/terms -- 16:56:07.807 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:56:07.840 INFO [7002]: COREGRADE is stopping... -- 16:56:07.840 DEBUG [7002]: Closing database connection -- 16:56:07.840 SQL [7002]: pgsql_close() -- 16:56:08.275 INFO [7002]: COREGRADE is starting... -- 16:56:08.275 INFO [7002]: Version from config: 1.0 -- 16:56:08.275 DEBUG [7002]: Connecting to database... -- 16:56:08.275 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:08.275 SQL [7002]: pgsql_db_connect() -- 16:56:08.279 DEBUG [7002]: Database connection successful -- 16:56:08.279 INFO [7002]: _SERVER found -- 16:56:08.279 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 16:56:08.279 INFO [7002]: SERVER_NAME = works.coregrade.com -- 16:56:08.279 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=r5srse97ggddke36hdr7pspsdmmdo1em; _gat_gtag_UA_54829827_2=1 -- 16:56:08.279 INFO [7002]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:56:08.279 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:56:08.291 INFO [7002]: COREGRADE is stopping... -- 16:56:08.291 DEBUG [7002]: Closing database connection -- 16:56:08.291 SQL [7002]: pgsql_close() -- 16:56:08.401 INFO [7002]: COREGRADE is starting... -- 16:56:08.401 INFO [7002]: Version from config: 1.0 -- 16:56:08.401 DEBUG [7002]: Connecting to database... -- 16:56:08.401 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:08.401 SQL [7002]: pgsql_db_connect() -- 16:56:08.405 DEBUG [7002]: Database connection successful -- 16:56:08.405 INFO [7002]: _SERVER found -- 16:56:08.405 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 16:56:08.405 INFO [7002]: SERVER_NAME = works.coregrade.com -- 16:56:08.405 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=r5srse97ggddke36hdr7pspsdmmdo1em; _gat_gtag_UA_54829827_2=1 -- 16:56:08.405 INFO [7002]: QUERY_STRING = /assets2/data/locales/en.json -- 16:56:08.405 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:56:08.416 INFO [7002]: COREGRADE is stopping... -- 16:56:08.416 DEBUG [7002]: Closing database connection -- 16:56:08.416 SQL [7002]: pgsql_close() -- 16:56:17.005 INFO [6928]: COREGRADE is starting... -- 16:56:17.006 INFO [6928]: Version from config: 1.0 -- 16:56:17.006 DEBUG [6928]: Connecting to database... -- 16:56:17.006 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:17.006 SQL [6928]: pgsql_db_connect() -- 16:56:17.010 DEBUG [6928]: Database connection successful -- 16:56:17.010 INFO [6928]: _SERVER found -- 16:56:17.010 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 16:56:17.010 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 16:56:17.010 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=0jjslp4vbnlm5bkplh9rf7tdklc9panq; _gat_gtag_UA_54829827_2=1 -- 16:56:17.010 INFO [6928]: QUERY_STRING = -- 16:56:17.010 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:56:17.043 INFO [6928]: COREGRADE is stopping... -- 16:56:17.043 DEBUG [6928]: Closing database connection -- 16:56:17.043 SQL [6928]: pgsql_close() -- 16:56:17.565 INFO [6928]: COREGRADE is starting... -- 16:56:17.565 INFO [6928]: Version from config: 1.0 -- 16:56:17.565 DEBUG [6928]: Connecting to database... -- 16:56:17.565 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:17.565 SQL [6928]: pgsql_db_connect() -- 16:56:17.570 DEBUG [6928]: Database connection successful -- 16:56:17.570 INFO [6928]: _SERVER found -- 16:56:17.570 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 16:56:17.570 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 16:56:17.570 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; _gat_gtag_UA_54829827_2=1; ci_session=q29sbfk27np494ubu1sunrdhridc12al -- 16:56:17.570 INFO [6928]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:56:17.570 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:56:17.581 INFO [6928]: COREGRADE is stopping... -- 16:56:17.581 DEBUG [6928]: Closing database connection -- 16:56:17.581 SQL [6928]: pgsql_close() -- 16:56:22.429 INFO [6928]: COREGRADE is starting... -- 16:56:22.430 INFO [6928]: Version from config: 1.0 -- 16:56:22.430 DEBUG [6928]: Connecting to database... -- 16:56:22.430 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:22.430 SQL [6928]: pgsql_db_connect() -- 16:56:22.434 DEBUG [6928]: Database connection successful -- 16:56:22.434 INFO [6928]: _SERVER found -- 16:56:22.434 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 16:56:22.434 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 16:56:22.434 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; _gat_gtag_UA_54829827_2=1; ci_session=q29sbfk27np494ubu1sunrdhridc12al -- 16:56:22.434 INFO [6928]: QUERY_STRING = /home/terms -- 16:56:22.434 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:56:22.466 INFO [6928]: COREGRADE is stopping... -- 16:56:22.466 DEBUG [6928]: Closing database connection -- 16:56:22.466 SQL [6928]: pgsql_close() -- 16:56:22.885 INFO [6928]: COREGRADE is starting... -- 16:56:22.886 INFO [6928]: Version from config: 1.0 -- 16:56:22.886 DEBUG [6928]: Connecting to database... -- 16:56:22.886 DEBUG [6928]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:22.886 SQL [6928]: pgsql_db_connect() -- 16:56:22.890 DEBUG [6928]: Database connection successful -- 16:56:22.890 INFO [6928]: _SERVER found -- 16:56:22.890 INFO [6928]: REMOTE_ADDR = 10.0.0.15 -- 16:56:22.890 INFO [6928]: SERVER_NAME = oameye.works.coregrade.com -- 16:56:22.890 INFO [6928]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; _gat_gtag_UA_54829827_2=1; ci_session=q29sbfk27np494ubu1sunrdhridc12al -- 16:56:22.890 INFO [6928]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:56:22.890 INFO [6928]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:56:22.901 INFO [6928]: COREGRADE is stopping... -- 16:56:22.901 DEBUG [6928]: Closing database connection -- 16:56:22.901 SQL [6928]: pgsql_close() -- 17:40:33.422 INFO [12633]: COREGRADE is starting... -- 17:40:33.423 INFO [12633]: Version from config: 1.0 -- 17:40:33.423 DEBUG [12633]: Connecting to database... -- 17:40:33.423 DEBUG [12633]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:40:33.423 SQL [12633]: pgsql_db_connect() -- 17:40:33.427 DEBUG [12633]: Database connection successful -- 17:40:33.427 INFO [12633]: _SERVER found -- 17:40:33.427 INFO [12633]: REMOTE_ADDR = 10.0.0.15 -- 17:40:33.427 INFO [12633]: SERVER_NAME = oameye.works.coregrade.com -- 17:40:33.427 INFO [12633]: QUERY_STRING = -- 17:40:33.427 INFO [12633]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 17:40:33.474 INFO [12633]: COREGRADE is stopping... -- 17:40:33.474 DEBUG [12633]: Closing database connection -- 17:40:33.474 SQL [12633]: pgsql_close() -- 18:00:21.963 INFO [6925]: COREGRADE is starting... -- 18:00:21.963 INFO [6925]: Version from config: 1.0 -- 18:00:21.963 DEBUG [6925]: Connecting to database... -- 18:00:21.963 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:00:21.963 SQL [6925]: pgsql_db_connect() -- 18:00:21.967 DEBUG [6925]: Database connection successful -- 18:00:21.967 INFO [6925]: _SERVER found -- 18:00:21.967 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 18:00:21.967 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 18:00:21.967 INFO [6925]: QUERY_STRING = -- 18:00:21.967 INFO [6925]: HTTP_X_FORWARDED_FOR = 198.7.237.198 -- 18:00:22.002 INFO [6925]: COREGRADE is stopping... -- 18:00:22.002 DEBUG [6925]: Closing database connection -- 18:00:22.002 SQL [6925]: pgsql_close() -- 18:00:23.144 INFO [8318]: COREGRADE is starting... -- 18:00:23.145 INFO [8318]: Version from config: 1.0 -- 18:00:23.145 DEBUG [8318]: Connecting to database... -- 18:00:23.145 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:00:23.145 SQL [8318]: pgsql_db_connect() -- 18:00:23.149 DEBUG [8318]: Database connection successful -- 18:00:23.149 INFO [8318]: _SERVER found -- 18:00:23.149 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 18:00:23.149 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 18:00:23.149 INFO [8318]: HTTP_COOKIE = ci_session=0gg3v6jgmfppif2nngs9oshag4l3soag -- 18:00:23.149 INFO [8318]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:00:23.149 INFO [8318]: HTTP_X_FORWARDED_FOR = 198.7.237.198 -- 18:00:23.161 INFO [8318]: COREGRADE is stopping... -- 18:00:23.161 DEBUG [8318]: Closing database connection -- 18:00:23.161 SQL [8318]: pgsql_close() -- 18:33:23.205 INFO [12991]: COREGRADE is starting... -- 18:33:23.205 INFO [12991]: Version from config: 1.0 -- 18:33:23.205 DEBUG [12991]: Connecting to database... -- 18:33:23.205 DEBUG [12991]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:33:23.205 SQL [12991]: pgsql_db_connect() -- 18:33:23.210 DEBUG [12991]: Database connection successful -- 18:33:23.210 INFO [12991]: _SERVER found -- 18:33:23.210 INFO [12991]: REMOTE_ADDR = 10.0.0.15 -- 18:33:23.210 INFO [12991]: SERVER_NAME = oameye.works.coregrade.com -- 18:33:23.210 INFO [12991]: QUERY_STRING = /phpMyAdmin/scripts/setup.php -- 18:33:23.210 INFO [12991]: HTTP_X_FORWARDED_FOR = 93.183.196.19 -- 18:33:23.226 INFO [12991]: COREGRADE is stopping... -- 18:33:23.226 DEBUG [12991]: Closing database connection -- 18:33:23.226 SQL [12991]: pgsql_close() -- 18:33:24.978 INFO [12992]: COREGRADE is starting... -- 18:33:24.979 INFO [12992]: Version from config: 1.0 -- 18:33:24.979 DEBUG [12992]: Connecting to database... -- 18:33:24.979 DEBUG [12992]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:33:24.979 SQL [12992]: pgsql_db_connect() -- 18:33:24.983 DEBUG [12992]: Database connection successful -- 18:33:24.983 INFO [12992]: _SERVER found -- 18:33:24.983 INFO [12992]: REMOTE_ADDR = 10.0.0.15 -- 18:33:24.983 INFO [12992]: SERVER_NAME = oameye.works.coregrade.com -- 18:33:24.983 INFO [12992]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=q29sbfk27np494ubu1sunrdhridc12al -- 18:33:24.983 INFO [12992]: QUERY_STRING = /home/terms -- 18:33:24.983 INFO [12992]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:33:25.026 INFO [12992]: COREGRADE is stopping... -- 18:33:25.026 DEBUG [12992]: Closing database connection -- 18:33:25.026 SQL [12992]: pgsql_close() -- 18:33:25.372 INFO [12992]: COREGRADE is starting... -- 18:33:25.372 INFO [12992]: Version from config: 1.0 -- 18:33:25.372 DEBUG [12992]: Connecting to database... -- 18:33:25.373 DEBUG [12992]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:33:25.373 SQL [12992]: pgsql_db_connect() -- 18:33:25.377 DEBUG [12992]: Database connection successful -- 18:33:25.377 INFO [12992]: _SERVER found -- 18:33:25.377 INFO [12992]: REMOTE_ADDR = 10.0.0.15 -- 18:33:25.377 INFO [12992]: SERVER_NAME = oameye.works.coregrade.com -- 18:33:25.377 INFO [12992]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=980pbiddnteqftp36k4hfn3vuik0obvo -- 18:33:25.377 INFO [12992]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:33:25.377 INFO [12992]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:33:25.389 INFO [12992]: COREGRADE is stopping... -- 18:33:25.389 DEBUG [12992]: Closing database connection -- 18:33:25.389 SQL [12992]: pgsql_close() -- 18:33:29.129 INFO [6925]: COREGRADE is starting... -- 18:33:29.129 INFO [6925]: Version from config: 1.0 -- 18:33:29.129 DEBUG [6925]: Connecting to database... -- 18:33:29.129 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:33:29.129 SQL [6925]: pgsql_db_connect() -- 18:33:29.133 DEBUG [6925]: Database connection successful -- 18:33:29.133 INFO [6925]: _SERVER found -- 18:33:29.133 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 18:33:29.133 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 18:33:29.133 INFO [6925]: QUERY_STRING = -- 18:33:29.133 INFO [6925]: HTTP_X_FORWARDED_FOR = 93.183.196.19 -- 18:33:29.165 INFO [6925]: COREGRADE is stopping... -- 18:33:29.165 DEBUG [6925]: Closing database connection -- 18:33:29.165 SQL [6925]: pgsql_close() -- 18:33:34.064 INFO [7004]: COREGRADE is starting... -- 18:33:34.064 INFO [7004]: Version from config: 1.0 -- 18:33:34.064 DEBUG [7004]: Connecting to database... -- 18:33:34.064 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:33:34.064 SQL [7004]: pgsql_db_connect() -- 18:33:34.068 DEBUG [7004]: Database connection successful -- 18:33:34.068 INFO [7004]: _SERVER found -- 18:33:34.068 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 18:33:34.068 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 18:33:34.068 INFO [7004]: QUERY_STRING = /horde/imp/test.php -- 18:33:34.068 INFO [7004]: HTTP_X_FORWARDED_FOR = 93.183.196.19 -- 18:33:34.080 INFO [7004]: COREGRADE is stopping... -- 18:33:34.081 DEBUG [7004]: Closing database connection -- 18:33:34.081 SQL [7004]: pgsql_close() -- 18:33:35.485 INFO [7004]: COREGRADE is starting... -- 18:33:35.485 INFO [7004]: Version from config: 1.0 -- 18:33:35.485 DEBUG [7004]: Connecting to database... -- 18:33:35.485 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:33:35.485 SQL [7004]: pgsql_db_connect() -- 18:33:35.489 DEBUG [7004]: Database connection successful -- 18:33:35.489 INFO [7004]: _SERVER found -- 18:33:35.489 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 18:33:35.489 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 18:33:35.489 INFO [7004]: QUERY_STRING = /login.action -- 18:33:35.489 INFO [7004]: HTTP_X_FORWARDED_FOR = 93.183.196.19 -- 18:33:35.500 INFO [7004]: COREGRADE is stopping... -- 18:33:35.500 DEBUG [7004]: Closing database connection -- 18:33:35.500 SQL [7004]: pgsql_close() -- 18:33:38.495 INFO [12632]: COREGRADE is starting... -- 18:33:38.495 INFO [12632]: Version from config: 1.0 -- 18:33:38.495 DEBUG [12632]: Connecting to database... -- 18:33:38.495 DEBUG [12632]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:33:38.495 SQL [12632]: pgsql_db_connect() -- 18:33:38.499 DEBUG [12632]: Database connection successful -- 18:33:38.499 INFO [12632]: _SERVER found -- 18:33:38.499 INFO [12632]: REMOTE_ADDR = 10.0.0.15 -- 18:33:38.499 INFO [12632]: SERVER_NAME = oameye.works.coregrade.com -- 18:33:38.499 INFO [12632]: QUERY_STRING = /login -- 18:33:38.499 INFO [12632]: HTTP_X_FORWARDED_FOR = 93.183.196.19 -- 18:33:38.513 INFO [12632]: COREGRADE is stopping... -- 18:33:38.513 DEBUG [12632]: Closing database connection -- 18:33:38.513 SQL [12632]: pgsql_close() -- 18:33:48.379 INFO [6929]: COREGRADE is starting... -- 18:33:48.379 INFO [6929]: Version from config: 1.0 -- 18:33:48.379 DEBUG [6929]: Connecting to database... -- 18:33:48.379 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:33:48.380 SQL [6929]: pgsql_db_connect() -- 18:33:48.384 DEBUG [6929]: Database connection successful -- 18:33:48.384 INFO [6929]: _SERVER found -- 18:33:48.384 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 18:33:48.384 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 18:33:48.384 INFO [6929]: QUERY_STRING = /console -- 18:33:48.384 INFO [6929]: HTTP_X_FORWARDED_FOR = 93.183.196.19 -- 18:33:48.396 INFO [6929]: COREGRADE is stopping... -- 18:33:48.396 DEBUG [6929]: Closing database connection -- 18:33:48.396 SQL [6929]: pgsql_close() -- 18:48:17.770 INFO [7005]: COREGRADE is starting... -- 18:48:17.770 INFO [7005]: Version from config: 1.0 -- 18:48:17.770 DEBUG [7005]: Connecting to database... -- 18:48:17.770 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:17.770 SQL [7005]: pgsql_db_connect() -- 18:48:17.775 DEBUG [7005]: Database connection successful -- 18:48:17.775 INFO [7005]: _SERVER found -- 18:48:17.775 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 18:48:17.775 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 18:48:17.775 INFO [7005]: QUERY_STRING = /login.action -- 18:48:17.775 INFO [7005]: HTTP_X_FORWARDED_FOR = 196.9.114.242 -- 18:48:17.788 INFO [7005]: COREGRADE is stopping... -- 18:48:17.788 DEBUG [7005]: Closing database connection -- 18:48:17.788 SQL [7005]: pgsql_close() -- 18:48:19.423 INFO [7005]: COREGRADE is starting... -- 18:48:19.423 INFO [7005]: Version from config: 1.0 -- 18:48:19.423 DEBUG [7005]: Connecting to database... -- 18:48:19.423 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:19.423 SQL [7005]: pgsql_db_connect() -- 18:48:19.427 DEBUG [7005]: Database connection successful -- 18:48:19.427 INFO [7005]: _SERVER found -- 18:48:19.427 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 18:48:19.427 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 18:48:19.427 INFO [7005]: QUERY_STRING = /phpMyAdmin/scripts/setup.php -- 18:48:19.427 INFO [7005]: HTTP_X_FORWARDED_FOR = 196.9.114.242 -- 18:48:19.438 INFO [7005]: COREGRADE is stopping... -- 18:48:19.438 DEBUG [7005]: Closing database connection -- 18:48:19.438 SQL [7005]: pgsql_close() -- 18:48:21.068 INFO [7005]: COREGRADE is starting... -- 18:48:21.069 INFO [7005]: Version from config: 1.0 -- 18:48:21.069 DEBUG [7005]: Connecting to database... -- 18:48:21.069 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:21.069 SQL [7005]: pgsql_db_connect() -- 18:48:21.073 DEBUG [7005]: Database connection successful -- 18:48:21.073 INFO [7005]: _SERVER found -- 18:48:21.073 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 18:48:21.073 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 18:48:21.073 INFO [7005]: QUERY_STRING = -- 18:48:21.073 INFO [7005]: HTTP_X_FORWARDED_FOR = 196.9.114.242 -- 18:48:21.105 INFO [7005]: COREGRADE is stopping... -- 18:48:21.105 DEBUG [7005]: Closing database connection -- 18:48:21.105 SQL [7005]: pgsql_close() -- 18:48:23.012 INFO [7005]: COREGRADE is starting... -- 18:48:23.013 INFO [7005]: Version from config: 1.0 -- 18:48:23.013 DEBUG [7005]: Connecting to database... -- 18:48:23.013 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:23.013 SQL [7005]: pgsql_db_connect() -- 18:48:23.017 DEBUG [7005]: Database connection successful -- 18:48:23.017 INFO [7005]: _SERVER found -- 18:48:23.017 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 18:48:23.017 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 18:48:23.017 INFO [7005]: QUERY_STRING = /horde/imp/test.php -- 18:48:23.017 INFO [7005]: HTTP_X_FORWARDED_FOR = 196.9.114.242 -- 18:48:23.028 INFO [7005]: COREGRADE is stopping... -- 18:48:23.028 DEBUG [7005]: Closing database connection -- 18:48:23.028 SQL [7005]: pgsql_close() -- 18:48:25.666 INFO [7005]: COREGRADE is starting... -- 18:48:25.667 INFO [7005]: Version from config: 1.0 -- 18:48:25.667 DEBUG [7005]: Connecting to database... -- 18:48:25.667 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:25.667 SQL [7005]: pgsql_db_connect() -- 18:48:25.671 DEBUG [7005]: Database connection successful -- 18:48:25.671 INFO [7005]: _SERVER found -- 18:48:25.671 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 18:48:25.671 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 18:48:25.671 INFO [7005]: QUERY_STRING = /login -- 18:48:25.671 INFO [7005]: HTTP_X_FORWARDED_FOR = 196.9.114.242 -- 18:48:25.682 INFO [7005]: COREGRADE is stopping... -- 18:48:25.682 DEBUG [7005]: Closing database connection -- 18:48:25.682 SQL [7005]: pgsql_close() -- 18:48:27.318 INFO [7002]: COREGRADE is starting... -- 18:48:27.318 INFO [7002]: Version from config: 1.0 -- 18:48:27.318 DEBUG [7002]: Connecting to database... -- 18:48:27.318 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:27.318 SQL [7002]: pgsql_db_connect() -- 18:48:27.322 DEBUG [7002]: Database connection successful -- 18:48:27.322 INFO [7002]: _SERVER found -- 18:48:27.322 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 18:48:27.322 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 18:48:27.322 INFO [7002]: QUERY_STRING = /console -- 18:48:27.322 INFO [7002]: HTTP_X_FORWARDED_FOR = 196.9.114.242 -- 18:48:27.334 INFO [7002]: COREGRADE is stopping... -- 18:48:27.334 DEBUG [7002]: Closing database connection -- 18:48:27.334 SQL [7002]: pgsql_close() -- 18:50:13.298 INFO [8318]: COREGRADE is starting... -- 18:50:13.298 INFO [8318]: Version from config: 1.0 -- 18:50:13.298 DEBUG [8318]: Connecting to database... -- 18:50:13.298 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:50:13.298 SQL [8318]: pgsql_db_connect() -- 18:50:13.303 DEBUG [8318]: Database connection successful -- 18:50:13.303 INFO [8318]: _SERVER found -- 18:50:13.303 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 18:50:13.303 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 18:50:13.303 INFO [8318]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=980pbiddnteqftp36k4hfn3vuik0obvo -- 18:50:13.303 INFO [8318]: QUERY_STRING = /home/terms -- 18:50:13.303 INFO [8318]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:50:13.336 INFO [8318]: COREGRADE is stopping... -- 18:50:13.336 DEBUG [8318]: Closing database connection -- 18:50:13.336 SQL [8318]: pgsql_close() -- 18:50:13.899 INFO [8318]: COREGRADE is starting... -- 18:50:13.899 INFO [8318]: Version from config: 1.0 -- 18:50:13.899 DEBUG [8318]: Connecting to database... -- 18:50:13.899 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:50:13.899 SQL [8318]: pgsql_db_connect() -- 18:50:13.903 DEBUG [8318]: Database connection successful -- 18:50:13.903 INFO [8318]: _SERVER found -- 18:50:13.903 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 18:50:13.903 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 18:50:13.903 INFO [8318]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=uhj95b9tnipp46t0ibm0hc25qfmtak53 -- 18:50:13.903 INFO [8318]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:50:13.903 INFO [8318]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:50:13.914 INFO [8318]: COREGRADE is stopping... -- 18:50:13.915 DEBUG [8318]: Closing database connection -- 18:50:13.915 SQL [8318]: pgsql_close() -- 19:08:36.577 INFO [12991]: COREGRADE is starting... -- 19:08:36.577 INFO [12991]: Version from config: 1.0 -- 19:08:36.577 DEBUG [12991]: Connecting to database... -- 19:08:36.577 DEBUG [12991]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:08:36.577 SQL [12991]: pgsql_db_connect() -- 19:08:36.582 DEBUG [12991]: Database connection successful -- 19:08:36.582 INFO [12991]: _SERVER found -- 19:08:36.582 INFO [12991]: REMOTE_ADDR = 10.0.0.15 -- 19:08:36.582 INFO [12991]: SERVER_NAME = oameye.works.coregrade.com -- 19:08:36.582 INFO [12991]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878 -- 19:08:36.582 INFO [12991]: QUERY_STRING = /auth -- 19:08:36.582 INFO [12991]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:08:36.623 INFO [12991]: COREGRADE is stopping... -- 19:08:36.623 DEBUG [12991]: Closing database connection -- 19:08:36.623 SQL [12991]: pgsql_close() -- 19:11:47.176 INFO [12992]: COREGRADE is starting... -- 19:11:47.176 INFO [12992]: Version from config: 1.0 -- 19:11:47.176 DEBUG [12992]: Connecting to database... -- 19:11:47.176 DEBUG [12992]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:11:47.177 SQL [12992]: pgsql_db_connect() -- 19:11:47.181 DEBUG [12992]: Database connection successful -- 19:11:47.181 INFO [12992]: _SERVER found -- 19:11:47.181 INFO [12992]: REMOTE_ADDR = 10.0.0.15 -- 19:11:47.181 INFO [12992]: SERVER_NAME = oameye.works.coregrade.com -- 19:11:47.181 INFO [12992]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=9tv75elr1funspng2lavqnrfck2s2l09 -- 19:11:47.181 INFO [12992]: QUERY_STRING = -- 19:11:47.181 INFO [12992]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:11:47.223 INFO [12992]: COREGRADE is stopping... -- 19:11:47.223 DEBUG [12992]: Closing database connection -- 19:11:47.223 SQL [12992]: pgsql_close() -- 19:11:47.491 INFO [12632]: COREGRADE is starting... -- 19:11:47.492 INFO [12632]: Version from config: 1.0 -- 19:11:47.492 DEBUG [12632]: Connecting to database... -- 19:11:47.492 DEBUG [12632]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:11:47.492 SQL [12632]: pgsql_db_connect() -- 19:11:47.496 DEBUG [12632]: Database connection successful -- 19:11:47.496 INFO [12632]: _SERVER found -- 19:11:47.496 INFO [12632]: REMOTE_ADDR = 10.0.0.15 -- 19:11:47.496 INFO [12632]: SERVER_NAME = oameye.works.coregrade.com -- 19:11:47.496 INFO [12632]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=9tv75elr1funspng2lavqnrfck2s2l09 -- 19:11:47.496 INFO [12632]: QUERY_STRING = /assets/img/footer_1.jpg -- 19:11:47.496 INFO [12632]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:11:47.510 INFO [12632]: COREGRADE is stopping... -- 19:11:47.510 DEBUG [12632]: Closing database connection -- 19:11:47.510 SQL [12632]: pgsql_close() -- 19:12:34.930 INFO [6929]: COREGRADE is starting... -- 19:12:34.930 INFO [6929]: Version from config: 1.0 -- 19:12:34.930 DEBUG [6929]: Connecting to database... -- 19:12:34.930 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:12:34.930 SQL [6929]: pgsql_db_connect() -- 19:12:34.935 INFO [7005]: COREGRADE is starting... -- 19:12:34.936 INFO [7005]: Version from config: 1.0 -- 19:12:34.936 DEBUG [7005]: Connecting to database... -- 19:12:34.936 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:12:34.936 SQL [7005]: pgsql_db_connect() -- 19:12:34.934 DEBUG [6929]: Database connection successful -- 19:12:34.934 INFO [6929]: _SERVER found -- 19:12:34.934 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 19:12:34.934 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 19:12:34.934 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=9tv75elr1funspng2lavqnrfck2s2l09; _gat_gtag_UA_54829827_2=1 -- 19:12:34.934 INFO [6929]: QUERY_STRING = /auth -- 19:12:34.934 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:12:34.968 INFO [6929]: COREGRADE is stopping... -- 19:12:34.968 DEBUG [6929]: Closing database connection -- 19:12:34.968 SQL [6929]: pgsql_close() -- 19:12:34.940 DEBUG [7005]: Database connection successful -- 19:12:34.940 INFO [7005]: _SERVER found -- 19:12:34.940 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 19:12:34.940 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 19:12:34.940 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=9tv75elr1funspng2lavqnrfck2s2l09; _gat_gtag_UA_54829827_2=1 -- 19:12:34.940 INFO [7005]: QUERY_STRING = /welcome/viewLogin -- 19:12:34.940 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:12:34.972 INFO [7005]: COREGRADE is stopping... -- 19:12:34.972 DEBUG [7005]: Closing database connection -- 19:12:34.972 SQL [7005]: pgsql_close() -- 19:12:35.006 INFO [7005]: COREGRADE is starting... -- 19:12:35.007 INFO [7005]: Version from config: 1.0 -- 19:12:35.007 DEBUG [7005]: Connecting to database... -- 19:12:35.007 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:12:35.007 SQL [7005]: pgsql_db_connect() -- 19:12:35.011 DEBUG [7005]: Database connection successful -- 19:12:35.011 INFO [7005]: _SERVER found -- 19:12:35.011 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 19:12:35.011 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 19:12:35.011 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=9tv75elr1funspng2lavqnrfck2s2l09; _gat_gtag_UA_54829827_2=1 -- 19:12:35.011 INFO [7005]: QUERY_STRING = /auth/index -- 19:12:35.011 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:12:35.043 INFO [7005]: COREGRADE is stopping... -- 19:12:35.043 DEBUG [7005]: Closing database connection -- 19:12:35.043 SQL [7005]: pgsql_close() -- 19:12:35.157 INFO [6929]: COREGRADE is starting... -- 19:12:35.157 INFO [6929]: Version from config: 1.0 -- 19:12:35.157 DEBUG [6929]: Connecting to database... -- 19:12:35.157 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:12:35.157 SQL [6929]: pgsql_db_connect() -- 19:12:35.161 DEBUG [6929]: Database connection successful -- 19:12:35.161 INFO [6929]: _SERVER found -- 19:12:35.161 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 19:12:35.161 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 19:12:35.161 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=9tv75elr1funspng2lavqnrfck2s2l09; _gat_gtag_UA_54829827_2=1 -- 19:12:35.161 INFO [6929]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 19:12:35.161 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:12:35.172 INFO [6929]: COREGRADE is stopping... -- 19:12:35.172 DEBUG [6929]: Closing database connection -- 19:12:35.172 SQL [6929]: pgsql_close() -- 19:23:11.457 INFO [7002]: COREGRADE is starting... -- 19:23:11.458 INFO [7002]: Version from config: 1.0 -- 19:23:11.458 DEBUG [7002]: Connecting to database... -- 19:23:11.458 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:23:11.458 SQL [7002]: pgsql_db_connect() -- 19:23:11.463 DEBUG [7002]: Database connection successful -- 19:23:11.463 INFO [7002]: _SERVER found -- 19:23:11.463 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 19:23:11.463 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 19:23:11.463 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=uhj95b9tnipp46t0ibm0hc25qfmtak53 -- 19:23:11.463 INFO [7002]: QUERY_STRING = /home/terms -- 19:23:11.463 INFO [7002]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:23:11.497 INFO [7002]: COREGRADE is stopping... -- 19:23:11.497 DEBUG [7002]: Closing database connection -- 19:23:11.497 SQL [7002]: pgsql_close() -- 19:23:12.020 INFO [7002]: COREGRADE is starting... -- 19:23:12.020 INFO [7002]: Version from config: 1.0 -- 19:23:12.020 DEBUG [7002]: Connecting to database... -- 19:23:12.020 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:23:12.020 SQL [7002]: pgsql_db_connect() -- 19:23:12.024 DEBUG [7002]: Database connection successful -- 19:23:12.024 INFO [7002]: _SERVER found -- 19:23:12.024 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 19:23:12.024 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 19:23:12.024 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=9eqm02mfpvqh235bj956mm6mg7g08qvn -- 19:23:12.024 INFO [7002]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 19:23:12.024 INFO [7002]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:23:12.035 INFO [7002]: COREGRADE is stopping... -- 19:23:12.035 DEBUG [7002]: Closing database connection -- 19:23:12.035 SQL [7002]: pgsql_close() -- 19:25:05.972 INFO [7006]: COREGRADE is starting... -- 19:25:05.973 INFO [7006]: Version from config: 1.0 -- 19:25:05.973 DEBUG [7006]: Connecting to database... -- 19:25:05.973 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:25:05.973 SQL [7006]: pgsql_db_connect() -- 19:25:05.977 DEBUG [7006]: Database connection successful -- 19:25:05.977 INFO [7006]: _SERVER found -- 19:25:05.977 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 19:25:05.977 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 19:25:05.977 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=9eqm02mfpvqh235bj956mm6mg7g08qvn -- 19:25:05.977 INFO [7006]: QUERY_STRING = /home/terms -- 19:25:05.977 INFO [7006]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:25:06.011 INFO [7006]: COREGRADE is stopping... -- 19:25:06.011 DEBUG [7006]: Closing database connection -- 19:25:06.011 SQL [7006]: pgsql_close() -- 19:25:06.308 INFO [7006]: COREGRADE is starting... -- 19:25:06.308 INFO [7006]: Version from config: 1.0 -- 19:25:06.308 DEBUG [7006]: Connecting to database... -- 19:25:06.308 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:25:06.308 SQL [7006]: pgsql_db_connect() -- 19:25:06.312 DEBUG [7006]: Database connection successful -- 19:25:06.313 INFO [7006]: _SERVER found -- 19:25:06.313 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 19:25:06.313 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 19:25:06.313 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=9eqm02mfpvqh235bj956mm6mg7g08qvn -- 19:25:06.313 INFO [7006]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 19:25:06.313 INFO [7006]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:25:06.324 INFO [7006]: COREGRADE is stopping... -- 19:25:06.324 DEBUG [7006]: Closing database connection -- 19:25:06.324 SQL [7006]: pgsql_close() -- 19:29:52.839 INFO [8318]: COREGRADE is starting... -- 19:29:52.839 INFO [8318]: Version from config: 1.0 -- 19:29:52.839 DEBUG [8318]: Connecting to database... -- 19:29:52.839 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:52.839 SQL [8318]: pgsql_db_connect() -- 19:29:52.843 DEBUG [8318]: Database connection successful -- 19:29:52.843 INFO [8318]: _SERVER found -- 19:29:52.843 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 19:29:52.843 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 19:29:52.843 INFO [8318]: HTTP_COOKIE = _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 19:29:52.843 INFO [8318]: QUERY_STRING = /home/security -- 19:29:52.843 INFO [8318]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:29:52.876 INFO [8318]: COREGRADE is stopping... -- 19:29:52.876 DEBUG [8318]: Closing database connection -- 19:29:52.876 SQL [8318]: pgsql_close() -- 19:29:53.089 INFO [8318]: COREGRADE is starting... -- 19:29:53.089 INFO [8318]: Version from config: 1.0 -- 19:29:53.089 DEBUG [8318]: Connecting to database... -- 19:29:53.089 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:29:53.089 SQL [8318]: pgsql_db_connect() -- 19:29:53.093 DEBUG [8318]: Database connection successful -- 19:29:53.094 INFO [8318]: _SERVER found -- 19:29:53.094 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 19:29:53.094 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 19:29:53.094 INFO [8318]: HTTP_COOKIE = _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490; ci_session=e4btsq7s5n75t7062casrbk6lpcptd3v -- 19:29:53.094 INFO [8318]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 19:29:53.094 INFO [8318]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:29:53.105 INFO [8318]: COREGRADE is stopping... -- 19:29:53.105 DEBUG [8318]: Closing database connection -- 19:29:53.105 SQL [8318]: pgsql_close() -- 19:30:30.982 INFO [12991]: COREGRADE is starting... -- 19:30:30.982 INFO [12991]: Version from config: 1.0 -- 19:30:30.982 DEBUG [12991]: Connecting to database... -- 19:30:30.982 DEBUG [12991]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:30:30.982 SQL [12991]: pgsql_db_connect() -- 19:30:30.986 DEBUG [12991]: Database connection successful -- 19:30:30.986 INFO [12991]: _SERVER found -- 19:30:30.986 INFO [12991]: REMOTE_ADDR = 10.0.0.15 -- 19:30:30.986 INFO [12991]: SERVER_NAME = oameye.works.coregrade.com -- 19:30:30.986 INFO [12991]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=9eqm02mfpvqh235bj956mm6mg7g08qvn -- 19:30:30.986 INFO [12991]: QUERY_STRING = /home/terms -- 19:30:30.986 INFO [12991]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:30:31.021 INFO [12991]: COREGRADE is stopping... -- 19:30:31.021 DEBUG [12991]: Closing database connection -- 19:30:31.021 SQL [12991]: pgsql_close() -- 19:30:31.337 INFO [12991]: COREGRADE is starting... -- 19:30:31.337 INFO [12991]: Version from config: 1.0 -- 19:30:31.337 DEBUG [12991]: Connecting to database... -- 19:30:31.337 DEBUG [12991]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:30:31.337 SQL [12991]: pgsql_db_connect() -- 19:30:31.341 DEBUG [12991]: Database connection successful -- 19:30:31.341 INFO [12991]: _SERVER found -- 19:30:31.341 INFO [12991]: REMOTE_ADDR = 10.0.0.15 -- 19:30:31.341 INFO [12991]: SERVER_NAME = oameye.works.coregrade.com -- 19:30:31.341 INFO [12991]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=252kadaffn397uohgloingsma7oe00cb -- 19:30:31.341 INFO [12991]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 19:30:31.341 INFO [12991]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:30:31.352 INFO [12991]: COREGRADE is stopping... -- 19:30:31.352 DEBUG [12991]: Closing database connection -- 19:30:31.352 SQL [12991]: pgsql_close() -- 19:52:40.380 INFO [12992]: COREGRADE is starting... -- 19:52:40.380 INFO [12992]: Version from config: 1.0 -- 19:52:40.380 DEBUG [12992]: Connecting to database... -- 19:52:40.380 DEBUG [12992]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:52:40.380 SQL [12992]: pgsql_db_connect() -- 19:52:40.385 DEBUG [12992]: Database connection successful -- 19:52:40.385 INFO [12992]: _SERVER found -- 19:52:40.385 INFO [12992]: REMOTE_ADDR = 10.0.0.15 -- 19:52:40.385 INFO [12992]: SERVER_NAME = oameye.works.coregrade.com -- 19:52:40.385 INFO [12992]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=9tv75elr1funspng2lavqnrfck2s2l09 -- 19:52:40.385 INFO [12992]: QUERY_STRING = /home/terms -- 19:52:40.385 INFO [12992]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:52:40.423 INFO [12992]: COREGRADE is stopping... -- 19:52:40.423 DEBUG [12992]: Closing database connection -- 19:52:40.423 SQL [12992]: pgsql_close() -- 19:52:40.545 INFO [12992]: COREGRADE is starting... -- 19:52:40.545 INFO [12992]: Version from config: 1.0 -- 19:52:40.545 DEBUG [12992]: Connecting to database... -- 19:52:40.545 DEBUG [12992]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:52:40.545 SQL [12992]: pgsql_db_connect() -- 19:52:40.550 DEBUG [12992]: Database connection successful -- 19:52:40.550 INFO [12992]: _SERVER found -- 19:52:40.550 INFO [12992]: REMOTE_ADDR = 10.0.0.15 -- 19:52:40.550 INFO [12992]: SERVER_NAME = oameye.works.coregrade.com -- 19:52:40.550 INFO [12992]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6g3po2llrec20phena5omdelp9gu1sam -- 19:52:40.550 INFO [12992]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 19:52:40.550 INFO [12992]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:52:40.561 INFO [12992]: COREGRADE is stopping... -- 19:52:40.561 DEBUG [12992]: Closing database connection -- 19:52:40.561 SQL [12992]: pgsql_close() -- 19:52:54.322 INFO [7004]: COREGRADE is starting... -- 19:52:54.322 INFO [7004]: Version from config: 1.0 -- 19:52:54.322 DEBUG [7004]: Connecting to database... -- 19:52:54.322 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:52:54.322 SQL [7004]: pgsql_db_connect() -- 19:52:54.327 DEBUG [7004]: Database connection successful -- 19:52:54.327 INFO [7004]: _SERVER found -- 19:52:54.327 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 19:52:54.327 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 19:52:54.327 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6g3po2llrec20phena5omdelp9gu1sam -- 19:52:54.327 INFO [7004]: QUERY_STRING = /home/privacy -- 19:52:54.327 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:52:54.362 INFO [7004]: COREGRADE is stopping... -- 19:52:54.362 DEBUG [7004]: Closing database connection -- 19:52:54.362 SQL [7004]: pgsql_close() -- 19:52:54.464 INFO [7004]: COREGRADE is starting... -- 19:52:54.465 INFO [7004]: Version from config: 1.0 -- 19:52:54.465 DEBUG [7004]: Connecting to database... -- 19:52:54.465 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:52:54.465 SQL [7004]: pgsql_db_connect() -- 19:52:54.469 DEBUG [7004]: Database connection successful -- 19:52:54.469 INFO [7004]: _SERVER found -- 19:52:54.469 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 19:52:54.469 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 19:52:54.469 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6g3po2llrec20phena5omdelp9gu1sam -- 19:52:54.469 INFO [7004]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 19:52:54.469 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:52:54.481 INFO [7004]: COREGRADE is stopping... -- 19:52:54.481 DEBUG [7004]: Closing database connection -- 19:52:54.481 SQL [7004]: pgsql_close() -- 19:52:59.590 INFO [6925]: COREGRADE is starting... -- 19:52:59.590 INFO [6925]: Version from config: 1.0 -- 19:52:59.590 DEBUG [6925]: Connecting to database... -- 19:52:59.590 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:52:59.590 SQL [6925]: pgsql_db_connect() -- 19:52:59.595 DEBUG [6925]: Database connection successful -- 19:52:59.595 INFO [6925]: _SERVER found -- 19:52:59.595 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 19:52:59.595 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 19:52:59.595 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6g3po2llrec20phena5omdelp9gu1sam -- 19:52:59.595 INFO [6925]: QUERY_STRING = /home/security -- 19:52:59.595 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:52:59.629 INFO [6925]: COREGRADE is stopping... -- 19:52:59.629 DEBUG [6925]: Closing database connection -- 19:52:59.629 SQL [6925]: pgsql_close() -- 19:53:03.329 INFO [6925]: COREGRADE is starting... -- 19:53:03.329 INFO [6925]: Version from config: 1.0 -- 19:53:03.329 DEBUG [6925]: Connecting to database... -- 19:53:03.329 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:53:03.329 SQL [6925]: pgsql_db_connect() -- 19:53:03.334 DEBUG [6925]: Database connection successful -- 19:53:03.334 INFO [6925]: _SERVER found -- 19:53:03.334 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 19:53:03.334 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 19:53:03.334 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6g3po2llrec20phena5omdelp9gu1sam -- 19:53:03.334 INFO [6925]: QUERY_STRING = /home/terms -- 19:53:03.334 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:53:03.367 INFO [6925]: COREGRADE is stopping... -- 19:53:03.367 DEBUG [6925]: Closing database connection -- 19:53:03.367 SQL [6925]: pgsql_close() -- 19:53:09.578 INFO [12632]: COREGRADE is starting... -- 19:53:09.579 INFO [12632]: Version from config: 1.0 -- 19:53:09.579 DEBUG [12632]: Connecting to database... -- 19:53:09.579 DEBUG [12632]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:53:09.579 SQL [12632]: pgsql_db_connect() -- 19:53:09.583 DEBUG [12632]: Database connection successful -- 19:53:09.583 INFO [12632]: _SERVER found -- 19:53:09.583 INFO [12632]: REMOTE_ADDR = 10.0.0.15 -- 19:53:09.583 INFO [12632]: SERVER_NAME = oameye.works.coregrade.com -- 19:53:09.583 INFO [12632]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6g3po2llrec20phena5omdelp9gu1sam -- 19:53:09.584 INFO [12632]: QUERY_STRING = -- 19:53:09.584 INFO [12632]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:53:09.628 INFO [12632]: COREGRADE is stopping... -- 19:53:09.628 DEBUG [12632]: Closing database connection -- 19:53:09.628 SQL [12632]: pgsql_close() -- 19:53:09.717 INFO [12632]: COREGRADE is starting... -- 19:53:09.717 INFO [12632]: Version from config: 1.0 -- 19:53:09.717 DEBUG [12632]: Connecting to database... -- 19:53:09.717 DEBUG [12632]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:53:09.717 SQL [12632]: pgsql_db_connect() -- 19:53:09.722 DEBUG [12632]: Database connection successful -- 19:53:09.722 INFO [12632]: _SERVER found -- 19:53:09.722 INFO [12632]: REMOTE_ADDR = 10.0.0.15 -- 19:53:09.722 INFO [12632]: SERVER_NAME = oameye.works.coregrade.com -- 19:53:09.722 INFO [12632]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6g3po2llrec20phena5omdelp9gu1sam -- 19:53:09.722 INFO [12632]: QUERY_STRING = /assets/img/footer_1.jpg -- 19:53:09.722 INFO [12632]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:53:09.733 INFO [12632]: COREGRADE is stopping... -- 19:53:09.733 DEBUG [12632]: Closing database connection -- 19:53:09.733 SQL [12632]: pgsql_close() -- 19:53:15.294 INFO [7005]: COREGRADE is starting... -- 19:53:15.294 INFO [7005]: Version from config: 1.0 -- 19:53:15.294 DEBUG [7005]: Connecting to database... -- 19:53:15.294 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:53:15.294 SQL [7005]: pgsql_db_connect() -- 19:53:15.299 DEBUG [7005]: Database connection successful -- 19:53:15.299 INFO [7005]: _SERVER found -- 19:53:15.299 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 19:53:15.299 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 19:53:15.299 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6g3po2llrec20phena5omdelp9gu1sam; _gat_gtag_UA_54829827_2=1 -- 19:53:15.299 INFO [7005]: QUERY_STRING = /home/contactus -- 19:53:15.299 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:53:15.333 INFO [7005]: COREGRADE is stopping... -- 19:53:15.333 DEBUG [7005]: Closing database connection -- 19:53:15.333 SQL [7005]: pgsql_close() -- 19:53:15.449 INFO [7005]: COREGRADE is starting... -- 19:53:15.449 INFO [7005]: Version from config: 1.0 -- 19:53:15.450 DEBUG [7005]: Connecting to database... -- 19:53:15.450 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:53:15.450 SQL [7005]: pgsql_db_connect() -- 19:53:15.454 DEBUG [7005]: Database connection successful -- 19:53:15.454 INFO [7005]: _SERVER found -- 19:53:15.454 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 19:53:15.454 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 19:53:15.454 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6g3po2llrec20phena5omdelp9gu1sam; _gat_gtag_UA_54829827_2=1 -- 19:53:15.454 INFO [7005]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 19:53:15.454 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:53:15.466 INFO [7005]: COREGRADE is stopping... -- 19:53:15.466 DEBUG [7005]: Closing database connection -- 19:53:15.466 SQL [7005]: pgsql_close() -- 19:53:32.910 INFO [6929]: COREGRADE is starting... -- 19:53:32.910 INFO [6929]: Version from config: 1.0 -- 19:53:32.910 DEBUG [6929]: Connecting to database... -- 19:53:32.910 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:53:32.910 SQL [6929]: pgsql_db_connect() -- 19:53:32.915 DEBUG [6929]: Database connection successful -- 19:53:32.915 INFO [6929]: _SERVER found -- 19:53:32.915 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 19:53:32.915 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 19:53:32.915 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6g3po2llrec20phena5omdelp9gu1sam; _gat_gtag_UA_54829827_2=1 -- 19:53:32.915 INFO [6929]: QUERY_STRING = /home/contactus -- 19:53:32.915 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:53:32.948 INFO [6929]: COREGRADE is stopping... -- 19:53:32.948 DEBUG [6929]: Closing database connection -- 19:53:32.948 SQL [6929]: pgsql_close() -- 19:53:33.046 INFO [6929]: COREGRADE is starting... -- 19:53:33.046 INFO [6929]: Version from config: 1.0 -- 19:53:33.046 DEBUG [6929]: Connecting to database... -- 19:53:33.046 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:53:33.047 SQL [6929]: pgsql_db_connect() -- 19:53:33.051 DEBUG [6929]: Database connection successful -- 19:53:33.051 INFO [6929]: _SERVER found -- 19:53:33.051 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 19:53:33.051 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 19:53:33.051 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6g3po2llrec20phena5omdelp9gu1sam; _gat_gtag_UA_54829827_2=1 -- 19:53:33.051 INFO [6929]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 19:53:33.051 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:53:33.063 INFO [6929]: COREGRADE is stopping... -- 19:53:33.063 DEBUG [6929]: Closing database connection -- 19:53:33.063 SQL [6929]: pgsql_close() -- 19:53:44.974 INFO [7002]: COREGRADE is starting... -- 19:53:44.975 INFO [7002]: Version from config: 1.0 -- 19:53:44.975 DEBUG [7002]: Connecting to database... -- 19:53:44.975 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:53:44.975 SQL [7002]: pgsql_db_connect() -- 19:53:44.980 DEBUG [7002]: Database connection successful -- 19:53:44.980 INFO [7002]: _SERVER found -- 19:53:44.980 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 19:53:44.980 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 19:53:44.980 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6g3po2llrec20phena5omdelp9gu1sam; _gat_gtag_UA_54829827_2=1 -- 19:53:44.980 INFO [7002]: QUERY_STRING = -- 19:53:44.980 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:53:45.014 INFO [7002]: COREGRADE is stopping... -- 19:53:45.014 DEBUG [7002]: Closing database connection -- 19:53:45.014 SQL [7002]: pgsql_close() -- 19:53:45.107 INFO [7002]: COREGRADE is starting... -- 19:53:45.108 INFO [7002]: Version from config: 1.0 -- 19:53:45.108 DEBUG [7002]: Connecting to database... -- 19:53:45.108 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:53:45.108 SQL [7002]: pgsql_db_connect() -- 19:53:45.112 DEBUG [7002]: Database connection successful -- 19:53:45.112 INFO [7002]: _SERVER found -- 19:53:45.112 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 19:53:45.112 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 19:53:45.112 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6g3po2llrec20phena5omdelp9gu1sam; _gat_gtag_UA_54829827_2=1 -- 19:53:45.112 INFO [7002]: QUERY_STRING = /assets/img/footer_1.jpg -- 19:53:45.112 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:53:45.124 INFO [7002]: COREGRADE is stopping... -- 19:53:45.124 DEBUG [7002]: Closing database connection -- 19:53:45.124 SQL [7002]: pgsql_close() -- 19:53:51.508 INFO [7006]: COREGRADE is starting... -- 19:53:51.508 INFO [7006]: Version from config: 1.0 -- 19:53:51.508 DEBUG [7006]: Connecting to database... -- 19:53:51.508 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:53:51.508 SQL [7006]: pgsql_db_connect() -- 19:53:51.513 DEBUG [7006]: Database connection successful -- 19:53:51.513 INFO [7006]: _SERVER found -- 19:53:51.513 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 19:53:51.513 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 19:53:51.513 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6g3po2llrec20phena5omdelp9gu1sam; _gat_gtag_UA_54829827_2=1 -- 19:53:51.513 INFO [7006]: QUERY_STRING = /home/contactus -- 19:53:51.513 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:53:51.546 INFO [7006]: COREGRADE is stopping... -- 19:53:51.546 DEBUG [7006]: Closing database connection -- 19:53:51.546 SQL [7006]: pgsql_close() -- 19:53:51.807 INFO [7006]: COREGRADE is starting... -- 19:53:51.807 INFO [7006]: Version from config: 1.0 -- 19:53:51.807 DEBUG [7006]: Connecting to database... -- 19:53:51.807 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:53:51.807 SQL [7006]: pgsql_db_connect() -- 19:53:51.812 DEBUG [7006]: Database connection successful -- 19:53:51.812 INFO [7006]: _SERVER found -- 19:53:51.812 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 19:53:51.812 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 19:53:51.812 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6g3po2llrec20phena5omdelp9gu1sam; _gat_gtag_UA_54829827_2=1 -- 19:53:51.812 INFO [7006]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 19:53:51.812 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:53:51.823 INFO [7006]: COREGRADE is stopping... -- 19:53:51.823 DEBUG [7006]: Closing database connection -- 19:53:51.823 SQL [7006]: pgsql_close() -- 19:54:11.836 INFO [8318]: COREGRADE is starting... -- 19:54:11.836 INFO [8318]: Version from config: 1.0 -- 19:54:11.836 DEBUG [8318]: Connecting to database... -- 19:54:11.837 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:54:11.837 SQL [8318]: pgsql_db_connect() -- 19:54:11.841 DEBUG [8318]: Database connection successful -- 19:54:11.841 INFO [8318]: _SERVER found -- 19:54:11.841 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 19:54:11.841 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 19:54:11.841 INFO [8318]: QUERY_STRING = /solr/admin/info/system -- 19:54:11.841 INFO [8318]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 19:54:11.853 INFO [8318]: COREGRADE is stopping... -- 19:54:11.853 DEBUG [8318]: Closing database connection -- 19:54:11.853 SQL [8318]: pgsql_close() -- 19:55:31.529 INFO [12991]: COREGRADE is starting... -- 19:55:31.529 INFO [12991]: Version from config: 1.0 -- 19:55:31.529 DEBUG [12991]: Connecting to database... -- 19:55:31.529 DEBUG [12991]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:31.529 SQL [12991]: pgsql_db_connect() -- 19:55:31.533 DEBUG [12991]: Database connection successful -- 19:55:31.533 INFO [12991]: _SERVER found -- 19:55:31.533 INFO [12991]: REMOTE_ADDR = 10.0.0.15 -- 19:55:31.533 INFO [12991]: SERVER_NAME = oameye.works.coregrade.com -- 19:55:31.533 INFO [12991]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6g3po2llrec20phena5omdelp9gu1sam -- 19:55:31.533 INFO [12991]: QUERY_STRING = -- 19:55:31.533 INFO [12991]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:55:31.572 INFO [12991]: COREGRADE is stopping... -- 19:55:31.572 DEBUG [12991]: Closing database connection -- 19:55:31.572 SQL [12991]: pgsql_close() -- 19:55:31.664 INFO [12991]: COREGRADE is starting... -- 19:55:31.664 INFO [12991]: Version from config: 1.0 -- 19:55:31.664 DEBUG [12991]: Connecting to database... -- 19:55:31.664 DEBUG [12991]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:31.664 SQL [12991]: pgsql_db_connect() -- 19:55:31.668 DEBUG [12991]: Database connection successful -- 19:55:31.668 INFO [12991]: _SERVER found -- 19:55:31.668 INFO [12991]: REMOTE_ADDR = 10.0.0.15 -- 19:55:31.668 INFO [12991]: SERVER_NAME = oameye.works.coregrade.com -- 19:55:31.668 INFO [12991]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6g3po2llrec20phena5omdelp9gu1sam -- 19:55:31.668 INFO [12991]: QUERY_STRING = /assets/img/footer_1.jpg -- 19:55:31.668 INFO [12991]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:55:31.679 INFO [12991]: COREGRADE is stopping... -- 19:55:31.679 DEBUG [12991]: Closing database connection -- 19:55:31.679 SQL [12991]: pgsql_close() -- 19:55:41.844 INFO [12992]: COREGRADE is starting... -- 19:55:41.844 INFO [12992]: Version from config: 1.0 -- 19:55:41.844 DEBUG [12992]: Connecting to database... -- 19:55:41.844 DEBUG [12992]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:41.844 SQL [12992]: pgsql_db_connect() -- 19:55:41.849 INFO [7004]: COREGRADE is starting... -- 19:55:41.849 INFO [7004]: Version from config: 1.0 -- 19:55:41.849 DEBUG [7004]: Connecting to database... -- 19:55:41.849 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:41.849 SQL [7004]: pgsql_db_connect() -- 19:55:41.849 DEBUG [12992]: Database connection successful -- 19:55:41.849 INFO [12992]: _SERVER found -- 19:55:41.849 INFO [12992]: REMOTE_ADDR = 10.0.0.15 -- 19:55:41.849 INFO [12992]: SERVER_NAME = oameye.works.coregrade.com -- 19:55:41.849 INFO [12992]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6g3po2llrec20phena5omdelp9gu1sam; _gat_gtag_UA_54829827_2=1 -- 19:55:41.849 INFO [12992]: QUERY_STRING = /auth -- 19:55:41.849 INFO [12992]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:55:41.881 INFO [12992]: COREGRADE is stopping... -- 19:55:41.881 DEBUG [12992]: Closing database connection -- 19:55:41.881 SQL [12992]: pgsql_close() -- 19:55:41.853 DEBUG [7004]: Database connection successful -- 19:55:41.853 INFO [7004]: _SERVER found -- 19:55:41.853 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 19:55:41.853 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 19:55:41.853 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6g3po2llrec20phena5omdelp9gu1sam; _gat_gtag_UA_54829827_2=1 -- 19:55:41.853 INFO [7004]: QUERY_STRING = /welcome/viewLogin -- 19:55:41.853 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:55:41.885 INFO [7004]: COREGRADE is stopping... -- 19:55:41.885 DEBUG [7004]: Closing database connection -- 19:55:41.885 SQL [7004]: pgsql_close() -- 19:55:41.999 INFO [7004]: COREGRADE is starting... -- 19:55:41.000 INFO [7004]: Version from config: 1.0 -- 19:55:41.000 DEBUG [7004]: Connecting to database... -- 19:55:41.000 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:41.000 SQL [7004]: pgsql_db_connect() -- 19:55:42.004 DEBUG [7004]: Database connection successful -- 19:55:42.004 INFO [7004]: _SERVER found -- 19:55:42.004 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 19:55:42.004 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 19:55:42.004 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6g3po2llrec20phena5omdelp9gu1sam; _gat_gtag_UA_54829827_2=1 -- 19:55:42.004 INFO [7004]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 19:55:42.004 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:55:42.015 INFO [7004]: COREGRADE is stopping... -- 19:55:42.015 DEBUG [7004]: Closing database connection -- 19:55:42.015 SQL [7004]: pgsql_close() -- 19:55:49.506 INFO [6925]: COREGRADE is starting... -- 19:55:49.506 INFO [6925]: Version from config: 1.0 -- 19:55:49.506 DEBUG [6925]: Connecting to database... -- 19:55:49.507 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:49.507 SQL [6925]: pgsql_db_connect() -- 19:55:49.542 INFO [6925]: COREGRADE is starting... -- 19:55:49.542 INFO [6925]: Version from config: 1.0 -- 19:55:49.542 DEBUG [6925]: Connecting to database... -- 19:55:49.542 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:49.542 SQL [6925]: pgsql_db_connect() -- 19:55:49.546 DEBUG [6925]: Database connection successful -- 19:55:49.546 INFO [6925]: _SERVER found -- 19:55:49.546 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 19:55:49.546 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 19:55:49.546 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6g3po2llrec20phena5omdelp9gu1sam; _gat_gtag_UA_54829827_2=1 -- 19:55:49.546 INFO [6925]: QUERY_STRING = -- 19:55:49.546 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:55:49.546 INFO [6925]: SystemStatus()09-09-********~************ -- 19:55:49.546 INFO [6925]: long coregrade_api_main(CVars in, CVars &out) -- 19:55:49.546 INFO [6925]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 19:55:49.546 INFO [6925]: account calls -- 19:55:49.546 INFO [6925]: account_calls() -- 19:55:49.546 INFO [6925]: LoginCoreGradeAccount() -- 19:55:49.546 FLOG_MAX [6925]: REQ_STRING(username) -- 19:55:49.547 FLOG_MAX [6925]: REQ_STRING(password) -- 19:55:49.547 FLOG_MAX [6925]: REQ_STRING(sessionid) -- 19:55:49.547 FLOG_MAX [6925]: long load_db_record( CVars &rec, const char * query, ... ) -- 19:55:49.547 SQL [6925]: pgsql_query() -- 19:55:49.547 SQL [6925]: About to run query: -- 19:55:49.547 SQL [6925]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 19:55:49.551 SQL [6925]: Found rows: 1 -- 19:55:49.551 FLOG_MAX [6925]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 19:55:49.551 INFO [6925]: long SessionCheck(long uid, const char *sessionid, int create ) -- 19:55:49.551 SQL [6925]: pgsql_exec() -- 19:55:49.551 SQL [6925]: About to run query: -- 19:55:49.551 SQL [6925]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 19:55:49.552 SQL [6925]: PQcmdTuples: 1 -- 19:55:49.552 SQL [6925]: Affected rows: 1 -- 19:55:49.552 SQL [6925]: pgsql_exec() -- 19:55:49.552 SQL [6925]: About to run query: -- 19:55:49.552 SQL [6925]: DELETE FROM members_session WHERE member_id=5 -- 19:55:49.552 SQL [6925]: PQcmdTuples: 0 -- 19:55:49.552 SQL [6925]: Affected rows: 0 -- 19:55:49.552 SQL [6925]: pgsql_query() -- 19:55:49.552 SQL [6925]: About to run query: -- 19:55:49.553 SQL [6925]: SELECT * FROM members_session WHERE member_id=5 AND session<>'C9868F7C1C4E8B79B4C3D1AE547AD8C9' -- 19:55:49.553 SQL [6925]: Found rows: 0 -- 19:55:49.553 SQL [6925]: Found rows: 0 -- 19:55:49.553 FLOG_MAX [6925]: long load_db_record( CVars &rec, const char * query, ... ) -- 19:55:49.553 SQL [6925]: pgsql_query() -- 19:55:49.553 SQL [6925]: About to run query: -- 19:55:49.553 SQL [6925]: SELECT * FROM members_session WHERE member_id=5 AND session='C9868F7C1C4E8B79B4C3D1AE547AD8C9' -- 19:55:49.554 SQL [6925]: Found rows: 0 -- 19:55:49.554 SQL [6925]: Found rows: 0 -- 19:55:49.554 FLOG_MAX [6925]: insert_db_record() -- 19:55:49.554 SQL [6925]: pgsql_exec() -- 19:55:49.554 SQL [6925]: About to run query: -- 19:55:49.554 SQL [6925]: INSERT INTO members_session (member_id,session) VALUES ('5','C9868F7C1C4E8B79B4C3D1AE547AD8C9') -- 19:55:49.555 SQL [6925]: PQcmdTuples: 1 -- 19:55:49.555 SQL [6925]: Affected rows: 1 -- 19:55:49.555 FLOG_MAX [6925]: SELECT currval('members_session_id_seq') -- 19:55:49.555 SQL [6925]: pgsql_query() -- 19:55:49.555 SQL [6925]: About to run query: -- 19:55:49.555 SQL [6925]: SELECT currval('members_session_id_seq') -- 19:55:49.556 SQL [6925]: Found rows: 1 -- 19:55:49.556 INFO [6925]: CreateDefaultPage() -- 19:55:49.556 FLOG_MAX [6925]: long load_db_record( CVars &rec, const char * query, ... ) -- 19:55:49.556 SQL [6925]: pgsql_query() -- 19:55:49.556 SQL [6925]: About to run query: -- 19:55:49.556 SQL [6925]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 19:55:49.556 SQL [6925]: Found rows: 1 -- 19:55:49.556 FLOG_MAX [6925]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 19:55:49.556 SQL [6925]: pgsql_query() -- 19:55:49.556 SQL [6925]: About to run query: -- 19:55:49.556 SQL [6925]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 19:55:49.557 SQL [6925]: Found rows: 1 -- 19:55:49.557 INFO [6925]: /CreateDefaultPage() -- 19:55:49.557 INFO [6925]: /LoginCoreGradeAccount() -- 19:55:49.557 INFO [6925]: RET: added=2020-02-05 06:47:23.982154 -- 19:55:49.557 INFO [6925]: RET: email=ameye+11@chiefsoft.com -- 19:55:49.557 INFO [6925]: RET: firstname=Olu -- 19:55:49.557 INFO [6925]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 19:55:49.557 INFO [6925]: RET: id=5 -- 19:55:49.557 INFO [6925]: RET: last_login= -- 19:55:49.557 INFO [6925]: RET: lastname=Amey -- 19:55:49.557 INFO [6925]: RET: loc=192.168.1.13 -- 19:55:49.557 INFO [6925]: RET: member_id=5 -- 19:55:49.557 INFO [6925]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 19:55:49.557 INFO [6925]: RET: phone= -- 19:55:49.557 INFO [6925]: RET: pid= -- 19:55:49.557 INFO [6925]: RET: result=YES I GET TO BACK END -- 19:55:49.557 INFO [6925]: RET: sessionid=C9868F7C1C4E8B79B4C3D1AE547AD8C9 -- 19:55:49.557 INFO [6925]: RET: status=1 -- 19:55:49.557 INFO [6925]: RET: stauts=OK -- 19:55:49.557 INFO [6925]: RET: username=ameye+11@chiefsoft.com -- 19:55:49.557 INFO [6925]: RET: verified= -- 19:55:49.558 INFO [6925]: COREGRADE is stopping... -- 19:55:49.558 DEBUG [6925]: Closing database connection -- 19:55:49.558 SQL [6925]: pgsql_close() -- 19:55:49.511 DEBUG [6925]: Database connection successful -- 19:55:49.511 INFO [6925]: _SERVER found -- 19:55:49.511 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 19:55:49.511 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 19:55:49.511 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6g3po2llrec20phena5omdelp9gu1sam; _gat_gtag_UA_54829827_2=1 -- 19:55:49.511 INFO [6925]: QUERY_STRING = /auth -- 19:55:49.511 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:55:49.559 INFO [6925]: COREGRADE is stopping... -- 19:55:49.559 DEBUG [6925]: Closing database connection -- 19:55:49.559 SQL [6925]: pgsql_close() -- 19:55:49.590 INFO [6925]: COREGRADE is starting... -- 19:55:49.591 INFO [6925]: Version from config: 1.0 -- 19:55:49.591 DEBUG [6925]: Connecting to database... -- 19:55:49.591 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:49.591 SQL [6925]: pgsql_db_connect() -- 19:55:49.595 DEBUG [6925]: Database connection successful -- 19:55:49.595 INFO [6925]: _SERVER found -- 19:55:49.595 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 19:55:49.595 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 19:55:49.595 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6g3po2llrec20phena5omdelp9gu1sam; _gat_gtag_UA_54829827_2=1 -- 19:55:49.595 INFO [6925]: QUERY_STRING = /member/index -- 19:55:49.595 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:55:49.635 INFO [6925]: COREGRADE is stopping... -- 19:55:49.635 DEBUG [6925]: Closing database connection -- 19:55:49.635 SQL [6925]: pgsql_close() -- 19:55:49.956 INFO [7005]: COREGRADE is starting... -- 19:55:49.956 INFO [7005]: Version from config: 1.0 -- 19:55:49.956 DEBUG [7005]: Connecting to database... -- 19:55:49.956 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:49.956 SQL [7005]: pgsql_db_connect() -- 19:55:49.960 DEBUG [7005]: Database connection successful -- 19:55:49.960 INFO [7005]: _SERVER found -- 19:55:49.960 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 19:55:49.960 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 19:55:49.960 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6g3po2llrec20phena5omdelp9gu1sam; _gat_gtag_UA_54829827_2=1 -- 19:55:49.960 INFO [7005]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:55:49.960 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:55:49.973 INFO [7005]: COREGRADE is stopping... -- 19:55:49.973 DEBUG [7005]: Closing database connection -- 19:55:49.973 SQL [7005]: pgsql_close() -- 19:56:12.550 INFO [7006]: COREGRADE is starting... -- 19:56:12.550 INFO [7006]: Version from config: 1.0 -- 19:56:12.550 DEBUG [7006]: Connecting to database... -- 19:56:12.550 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:12.550 SQL [7006]: pgsql_db_connect() -- 19:56:12.554 DEBUG [7006]: Database connection successful -- 19:56:12.554 INFO [7006]: _SERVER found -- 19:56:12.554 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 19:56:12.554 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 19:56:12.554 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6g3po2llrec20phena5omdelp9gu1sam; _gat_gtag_UA_54829827_2=1 -- 19:56:12.554 INFO [7006]: QUERY_STRING = /member/configure -- 19:56:12.554 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:56:12.599 INFO [7006]: COREGRADE is stopping... -- 19:56:12.599 DEBUG [7006]: Closing database connection -- 19:56:12.599 SQL [7006]: pgsql_close() -- 19:56:12.694 INFO [7006]: COREGRADE is starting... -- 19:56:12.694 INFO [7006]: Version from config: 1.0 -- 19:56:12.694 DEBUG [7006]: Connecting to database... -- 19:56:12.694 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:12.694 SQL [7006]: pgsql_db_connect() -- 19:56:12.698 DEBUG [7006]: Database connection successful -- 19:56:12.698 INFO [7006]: _SERVER found -- 19:56:12.698 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 19:56:12.698 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 19:56:12.698 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6g3po2llrec20phena5omdelp9gu1sam; _gat_gtag_UA_54829827_2=1 -- 19:56:12.698 INFO [7006]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 19:56:12.698 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:56:12.709 INFO [7006]: COREGRADE is stopping... -- 19:56:12.709 DEBUG [7006]: Closing database connection -- 19:56:12.709 SQL [7006]: pgsql_close() -- 19:56:14.862 INFO [7006]: COREGRADE is starting... -- 19:56:14.862 INFO [7006]: Version from config: 1.0 -- 19:56:14.862 DEBUG [7006]: Connecting to database... -- 19:56:14.862 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:14.862 SQL [7006]: pgsql_db_connect() -- 19:56:14.866 DEBUG [7006]: Database connection successful -- 19:56:14.866 INFO [7006]: _SERVER found -- 19:56:14.866 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 19:56:14.866 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 19:56:14.866 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6g3po2llrec20phena5omdelp9gu1sam; _gat_gtag_UA_54829827_2=1 -- 19:56:14.866 INFO [7006]: QUERY_STRING = /member -- 19:56:14.866 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:56:14.906 INFO [7006]: COREGRADE is stopping... -- 19:56:14.906 DEBUG [7006]: Closing database connection -- 19:56:14.906 SQL [7006]: pgsql_close() -- 19:56:16.610 INFO [7006]: COREGRADE is starting... -- 19:56:16.610 INFO [7006]: Version from config: 1.0 -- 19:56:16.610 DEBUG [7006]: Connecting to database... -- 19:56:16.610 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:16.610 SQL [7006]: pgsql_db_connect() -- 19:56:16.614 DEBUG [7006]: Database connection successful -- 19:56:16.614 INFO [7006]: _SERVER found -- 19:56:16.614 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 19:56:16.614 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 19:56:16.614 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6g3po2llrec20phena5omdelp9gu1sam; _gat_gtag_UA_54829827_2=1 -- 19:56:16.614 INFO [7006]: QUERY_STRING = /member/configure -- 19:56:16.614 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:56:16.657 INFO [7006]: COREGRADE is stopping... -- 19:56:16.657 DEBUG [7006]: Closing database connection -- 19:56:16.657 SQL [7006]: pgsql_close() -- 19:56:17.742 INFO [7006]: COREGRADE is starting... -- 19:56:17.743 INFO [7006]: Version from config: 1.0 -- 19:56:17.743 DEBUG [7006]: Connecting to database... -- 19:56:17.743 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:17.743 SQL [7006]: pgsql_db_connect() -- 19:56:17.747 DEBUG [7006]: Database connection successful -- 19:56:17.747 INFO [7006]: _SERVER found -- 19:56:17.747 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 19:56:17.747 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 19:56:17.747 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6g3po2llrec20phena5omdelp9gu1sam; _gat_gtag_UA_54829827_2=1 -- 19:56:17.747 INFO [7006]: QUERY_STRING = /member -- 19:56:17.747 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:56:17.788 INFO [7006]: COREGRADE is stopping... -- 19:56:17.788 DEBUG [7006]: Closing database connection -- 19:56:17.788 SQL [7006]: pgsql_close() -- 19:56:18.581 INFO [7006]: COREGRADE is starting... -- 19:56:18.581 INFO [7006]: Version from config: 1.0 -- 19:56:18.581 DEBUG [7006]: Connecting to database... -- 19:56:18.581 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:18.581 SQL [7006]: pgsql_db_connect() -- 19:56:18.585 DEBUG [7006]: Database connection successful -- 19:56:18.585 INFO [7006]: _SERVER found -- 19:56:18.585 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 19:56:18.585 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 19:56:18.585 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6g3po2llrec20phena5omdelp9gu1sam; _gat_gtag_UA_54829827_2=1 -- 19:56:18.585 INFO [7006]: QUERY_STRING = /member/configure -- 19:56:18.585 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:56:18.627 INFO [7006]: COREGRADE is stopping... -- 19:56:18.627 DEBUG [7006]: Closing database connection -- 19:56:18.627 SQL [7006]: pgsql_close() -- 19:56:19.592 INFO [7006]: COREGRADE is starting... -- 19:56:19.592 INFO [7006]: Version from config: 1.0 -- 19:56:19.592 DEBUG [7006]: Connecting to database... -- 19:56:19.592 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:19.592 SQL [7006]: pgsql_db_connect() -- 19:56:19.596 DEBUG [7006]: Database connection successful -- 19:56:19.596 INFO [7006]: _SERVER found -- 19:56:19.596 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 19:56:19.596 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 19:56:19.596 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6g3po2llrec20phena5omdelp9gu1sam; _gat_gtag_UA_54829827_2=1 -- 19:56:19.596 INFO [7006]: QUERY_STRING = /member -- 19:56:19.596 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:56:19.637 INFO [7006]: COREGRADE is stopping... -- 19:56:19.637 DEBUG [7006]: Closing database connection -- 19:56:19.637 SQL [7006]: pgsql_close() -- 19:56:20.790 INFO [7006]: COREGRADE is starting... -- 19:56:20.790 INFO [7006]: Version from config: 1.0 -- 19:56:20.790 DEBUG [7006]: Connecting to database... -- 19:56:20.790 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:20.791 SQL [7006]: pgsql_db_connect() -- 19:56:20.795 DEBUG [7006]: Database connection successful -- 19:56:20.795 INFO [7006]: _SERVER found -- 19:56:20.795 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 19:56:20.795 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 19:56:20.795 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6g3po2llrec20phena5omdelp9gu1sam; _gat_gtag_UA_54829827_2=1 -- 19:56:20.795 INFO [7006]: QUERY_STRING = /member/configure -- 19:56:20.795 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:56:20.837 INFO [7006]: COREGRADE is stopping... -- 19:56:20.837 DEBUG [7006]: Closing database connection -- 19:56:20.837 SQL [7006]: pgsql_close() -- 19:57:38.289 INFO [8318]: COREGRADE is starting... -- 19:57:38.289 INFO [8318]: Version from config: 1.0 -- 19:57:38.289 DEBUG [8318]: Connecting to database... -- 19:57:38.289 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:57:38.289 SQL [8318]: pgsql_db_connect() -- 19:57:38.293 DEBUG [8318]: Database connection successful -- 19:57:38.293 INFO [8318]: _SERVER found -- 19:57:38.293 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 19:57:38.293 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 19:57:38.293 INFO [8318]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6g3po2llrec20phena5omdelp9gu1sam -- 19:57:38.293 INFO [8318]: QUERY_STRING = /member/configure -- 19:57:38.293 INFO [8318]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:57:38.337 INFO [8318]: COREGRADE is stopping... -- 19:57:38.337 DEBUG [8318]: Closing database connection -- 19:57:38.337 SQL [8318]: pgsql_close() -- 19:58:47.046 INFO [12991]: COREGRADE is starting... -- 19:58:47.046 INFO [12991]: Version from config: 1.0 -- 19:58:47.046 DEBUG [12991]: Connecting to database... -- 19:58:47.046 DEBUG [12991]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:47.046 SQL [12991]: pgsql_db_connect() -- 19:58:47.050 DEBUG [12991]: Database connection successful -- 19:58:47.050 INFO [12991]: _SERVER found -- 19:58:47.050 INFO [12991]: REMOTE_ADDR = 10.0.0.15 -- 19:58:47.050 INFO [12991]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:47.050 INFO [12991]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6g3po2llrec20phena5omdelp9gu1sam -- 19:58:47.050 INFO [12991]: QUERY_STRING = /member/configure -- 19:58:47.050 INFO [12991]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:58:47.096 INFO [12991]: COREGRADE is stopping... -- 19:58:47.096 DEBUG [12991]: Closing database connection -- 19:58:47.096 SQL [12991]: pgsql_close() -- 19:58:51.450 INFO [12991]: COREGRADE is starting... -- 19:58:51.451 INFO [12991]: Version from config: 1.0 -- 19:58:51.451 DEBUG [12991]: Connecting to database... -- 19:58:51.451 DEBUG [12991]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:51.451 SQL [12991]: pgsql_db_connect() -- 19:58:51.455 DEBUG [12991]: Database connection successful -- 19:58:51.455 INFO [12991]: _SERVER found -- 19:58:51.455 INFO [12991]: REMOTE_ADDR = 10.0.0.15 -- 19:58:51.455 INFO [12991]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:51.455 INFO [12991]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 19:58:51.455 INFO [12991]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 19:58:51.486 INFO [12991]: COREGRADE is stopping... -- 19:58:51.486 DEBUG [12991]: Closing database connection -- 19:58:51.486 SQL [12991]: pgsql_close() -- 19:58:54.132 INFO [12992]: COREGRADE is starting... -- 19:58:54.132 INFO [12992]: Version from config: 1.0 -- 19:58:54.132 DEBUG [12992]: Connecting to database... -- 19:58:54.132 DEBUG [12992]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:58:54.132 SQL [12992]: pgsql_db_connect() -- 19:58:54.137 DEBUG [12992]: Database connection successful -- 19:58:54.137 INFO [12992]: _SERVER found -- 19:58:54.137 INFO [12992]: REMOTE_ADDR = 10.0.0.15 -- 19:58:54.137 INFO [12992]: SERVER_NAME = oameye.works.coregrade.com -- 19:58:54.137 INFO [12992]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 19:58:54.137 INFO [12992]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 19:58:54.168 INFO [12992]: COREGRADE is stopping... -- 19:58:54.168 DEBUG [12992]: Closing database connection -- 19:58:54.168 SQL [12992]: pgsql_close() -- 19:59:38.463 INFO [7004]: COREGRADE is starting... -- 19:59:38.464 INFO [7004]: Version from config: 1.0 -- 19:59:38.464 DEBUG [7004]: Connecting to database... -- 19:59:38.464 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:59:38.464 SQL [7004]: pgsql_db_connect() -- 19:59:38.468 DEBUG [7004]: Database connection successful -- 19:59:38.468 INFO [7004]: _SERVER found -- 19:59:38.468 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 19:59:38.468 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 19:59:38.468 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=g307777v7jtma5oh4mgqiu6rhvr9nu28 -- 19:59:38.468 INFO [7004]: QUERY_STRING = /member/configure -- 19:59:38.468 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:59:38.513 INFO [7004]: COREGRADE is stopping... -- 19:59:38.513 DEBUG [7004]: Closing database connection -- 19:59:38.513 SQL [7004]: pgsql_close() -- 19:59:45.143 INFO [6925]: COREGRADE is starting... -- 19:59:45.144 INFO [6925]: Version from config: 1.0 -- 19:59:45.144 DEBUG [6925]: Connecting to database... -- 19:59:45.144 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:59:45.144 SQL [6925]: pgsql_db_connect() -- 19:59:45.148 DEBUG [6925]: Database connection successful -- 19:59:45.148 INFO [6925]: _SERVER found -- 19:59:45.148 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 19:59:45.148 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 19:59:45.148 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=g307777v7jtma5oh4mgqiu6rhvr9nu28 -- 19:59:45.148 INFO [6925]: QUERY_STRING = /member/viewSharePage -- 19:59:45.148 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:59:45.183 INFO [6925]: COREGRADE is stopping... -- 19:59:45.183 DEBUG [6925]: Closing database connection -- 19:59:45.183 SQL [6925]: pgsql_close() -- 20:01:25.884 INFO [7002]: COREGRADE is starting... -- 20:01:25.884 INFO [7002]: Version from config: 1.0 -- 20:01:25.884 DEBUG [7002]: Connecting to database... -- 20:01:25.884 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:01:25.884 SQL [7002]: pgsql_db_connect() -- 20:01:25.888 DEBUG [7002]: Database connection successful -- 20:01:25.888 INFO [7002]: _SERVER found -- 20:01:25.888 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 20:01:25.888 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 20:01:25.888 INFO [7002]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 20:01:25.888 INFO [7002]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 20:01:25.921 INFO [7002]: COREGRADE is stopping... -- 20:01:25.921 DEBUG [7002]: Closing database connection -- 20:01:25.921 SQL [7002]: pgsql_close() -- 20:08:59.858 INFO [6929]: COREGRADE is starting... -- 20:08:59.859 INFO [6929]: Version from config: 1.0 -- 20:08:59.859 DEBUG [6929]: Connecting to database... -- 20:08:59.859 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:08:59.859 SQL [6929]: pgsql_db_connect() -- 20:08:59.863 DEBUG [6929]: Database connection successful -- 20:08:59.863 INFO [6929]: _SERVER found -- 20:08:59.863 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 20:08:59.863 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 20:08:59.863 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=g307777v7jtma5oh4mgqiu6rhvr9nu28 -- 20:08:59.863 INFO [6929]: QUERY_STRING = /auth/logout -- 20:08:59.863 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:08:59.899 INFO [6929]: COREGRADE is stopping... -- 20:08:59.899 DEBUG [6929]: Closing database connection -- 20:08:59.899 SQL [6929]: pgsql_close() -- 20:09:02.911 INFO [6929]: COREGRADE is starting... -- 20:09:02.911 INFO [6929]: Version from config: 1.0 -- 20:09:02.911 DEBUG [6929]: Connecting to database... -- 20:09:02.911 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:09:02.911 SQL [6929]: pgsql_db_connect() -- 20:09:02.915 DEBUG [6929]: Database connection successful -- 20:09:02.915 INFO [6929]: _SERVER found -- 20:09:02.915 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 20:09:02.915 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 20:09:02.915 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=hdup3a9on3iucupj2sgrotsr04bvrtqj -- 20:09:02.915 INFO [6929]: QUERY_STRING = -- 20:09:02.915 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:09:02.946 INFO [6929]: COREGRADE is stopping... -- 20:09:02.946 DEBUG [6929]: Closing database connection -- 20:09:02.946 SQL [6929]: pgsql_close() -- 20:09:03.040 INFO [6929]: COREGRADE is starting... -- 20:09:03.040 INFO [6929]: Version from config: 1.0 -- 20:09:03.040 DEBUG [6929]: Connecting to database... -- 20:09:03.040 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:09:03.040 SQL [6929]: pgsql_db_connect() -- 20:09:03.044 DEBUG [6929]: Database connection successful -- 20:09:03.044 INFO [6929]: _SERVER found -- 20:09:03.044 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 20:09:03.044 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 20:09:03.044 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=hdup3a9on3iucupj2sgrotsr04bvrtqj -- 20:09:03.044 INFO [6929]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:09:03.044 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:09:03.055 INFO [6929]: COREGRADE is stopping... -- 20:09:03.055 DEBUG [6929]: Closing database connection -- 20:09:03.055 SQL [6929]: pgsql_close() -- 20:09:08.962 INFO [7005]: COREGRADE is starting... -- 20:09:08.962 INFO [7005]: Version from config: 1.0 -- 20:09:08.962 DEBUG [7005]: Connecting to database... -- 20:09:08.962 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:09:08.962 SQL [7005]: pgsql_db_connect() -- 20:09:08.966 DEBUG [7005]: Database connection successful -- 20:09:08.966 INFO [7005]: _SERVER found -- 20:09:08.966 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 20:09:08.966 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 20:09:08.966 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=hdup3a9on3iucupj2sgrotsr04bvrtqj; _gat_gtag_UA_54829827_2=1 -- 20:09:08.966 INFO [7005]: QUERY_STRING = /home/contactus -- 20:09:08.966 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:09:08.000 INFO [7005]: COREGRADE is stopping... -- 20:09:08.000 DEBUG [7005]: Closing database connection -- 20:09:08.000 SQL [7005]: pgsql_close() -- 20:09:18.928 INFO [12632]: COREGRADE is starting... -- 20:09:18.928 INFO [12632]: Version from config: 1.0 -- 20:09:18.928 DEBUG [12632]: Connecting to database... -- 20:09:18.928 DEBUG [12632]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:09:18.928 SQL [12632]: pgsql_db_connect() -- 20:09:18.932 DEBUG [12632]: Database connection successful -- 20:09:18.932 INFO [12632]: _SERVER found -- 20:09:18.932 INFO [12632]: REMOTE_ADDR = 10.0.0.15 -- 20:09:18.932 INFO [12632]: SERVER_NAME = oameye.works.coregrade.com -- 20:09:18.932 INFO [12632]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=hdup3a9on3iucupj2sgrotsr04bvrtqj; _gat_gtag_UA_54829827_2=1 -- 20:09:18.932 INFO [12632]: QUERY_STRING = -- 20:09:18.932 INFO [12632]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:09:18.966 INFO [12632]: COREGRADE is stopping... -- 20:09:18.966 DEBUG [12632]: Closing database connection -- 20:09:18.966 SQL [12632]: pgsql_close() -- 20:09:19.074 INFO [12632]: COREGRADE is starting... -- 20:09:19.075 INFO [12632]: Version from config: 1.0 -- 20:09:19.075 DEBUG [12632]: Connecting to database... -- 20:09:19.075 DEBUG [12632]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:09:19.075 SQL [12632]: pgsql_db_connect() -- 20:09:19.079 DEBUG [12632]: Database connection successful -- 20:09:19.079 INFO [12632]: _SERVER found -- 20:09:19.079 INFO [12632]: REMOTE_ADDR = 10.0.0.15 -- 20:09:19.079 INFO [12632]: SERVER_NAME = oameye.works.coregrade.com -- 20:09:19.079 INFO [12632]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=hdup3a9on3iucupj2sgrotsr04bvrtqj; _gat_gtag_UA_54829827_2=1 -- 20:09:19.079 INFO [12632]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:09:19.079 INFO [12632]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:09:19.090 INFO [12632]: COREGRADE is stopping... -- 20:09:19.090 DEBUG [12632]: Closing database connection -- 20:09:19.090 SQL [12632]: pgsql_close() -- 20:09:22.146 INFO [12632]: COREGRADE is starting... -- 20:09:22.146 INFO [12632]: Version from config: 1.0 -- 20:09:22.146 DEBUG [12632]: Connecting to database... -- 20:09:22.146 DEBUG [12632]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:09:22.146 SQL [12632]: pgsql_db_connect() -- 20:09:22.151 DEBUG [12632]: Database connection successful -- 20:09:22.151 INFO [12632]: _SERVER found -- 20:09:22.151 INFO [12632]: REMOTE_ADDR = 10.0.0.15 -- 20:09:22.151 INFO [12632]: SERVER_NAME = oameye.works.coregrade.com -- 20:09:22.151 INFO [12632]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=hdup3a9on3iucupj2sgrotsr04bvrtqj; _gat_gtag_UA_54829827_2=1 -- 20:09:22.151 INFO [12632]: QUERY_STRING = /home/aboutus -- 20:09:22.151 INFO [12632]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:09:22.182 INFO [12632]: COREGRADE is stopping... -- 20:09:22.182 DEBUG [12632]: Closing database connection -- 20:09:22.182 SQL [12632]: pgsql_close() -- 20:09:22.236 INFO [12632]: COREGRADE is starting... -- 20:09:22.236 INFO [12632]: Version from config: 1.0 -- 20:09:22.236 DEBUG [12632]: Connecting to database... -- 20:09:22.236 DEBUG [12632]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:09:22.236 SQL [12632]: pgsql_db_connect() -- 20:09:22.240 INFO [7006]: COREGRADE is starting... -- 20:09:22.240 INFO [7006]: Version from config: 1.0 -- 20:09:22.240 DEBUG [7006]: Connecting to database... -- 20:09:22.240 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:09:22.240 SQL [7006]: pgsql_db_connect() -- 20:09:22.240 DEBUG [12632]: Database connection successful -- 20:09:22.240 INFO [12632]: _SERVER found -- 20:09:22.240 INFO [12632]: REMOTE_ADDR = 10.0.0.15 -- 20:09:22.240 INFO [12632]: SERVER_NAME = oameye.works.coregrade.com -- 20:09:22.240 INFO [12632]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=hdup3a9on3iucupj2sgrotsr04bvrtqj; _gat_gtag_UA_54829827_2=1 -- 20:09:22.240 INFO [12632]: QUERY_STRING = /app-assets/images/pages/content-img-1.jpg -- 20:09:22.240 INFO [12632]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:09:22.252 INFO [12632]: COREGRADE is stopping... -- 20:09:22.252 DEBUG [12632]: Closing database connection -- 20:09:22.252 SQL [12632]: pgsql_close() -- 20:09:22.244 DEBUG [7006]: Database connection successful -- 20:09:22.244 INFO [7006]: _SERVER found -- 20:09:22.244 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 20:09:22.244 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 20:09:22.244 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=hdup3a9on3iucupj2sgrotsr04bvrtqj; _gat_gtag_UA_54829827_2=1 -- 20:09:22.244 INFO [7006]: QUERY_STRING = /app-assets/images/pages/content-img-2.jpg -- 20:09:22.244 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:09:22.256 INFO [7006]: COREGRADE is stopping... -- 20:09:22.256 DEBUG [7006]: Closing database connection -- 20:09:22.256 SQL [7006]: pgsql_close() -- 20:09:54.168 INFO [8318]: COREGRADE is starting... -- 20:09:54.168 INFO [8318]: Version from config: 1.0 -- 20:09:54.168 DEBUG [8318]: Connecting to database... -- 20:09:54.168 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:09:54.168 SQL [8318]: pgsql_db_connect() -- 20:09:54.172 DEBUG [8318]: Database connection successful -- 20:09:54.172 INFO [8318]: _SERVER found -- 20:09:54.172 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 20:09:54.172 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 20:09:54.172 INFO [8318]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=hdup3a9on3iucupj2sgrotsr04bvrtqj; _gat_gtag_UA_54829827_2=1 -- 20:09:54.172 INFO [8318]: QUERY_STRING = /home/aboutus -- 20:09:54.172 INFO [8318]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:09:54.205 INFO [8318]: COREGRADE is stopping... -- 20:09:54.205 DEBUG [8318]: Closing database connection -- 20:09:54.205 SQL [8318]: pgsql_close() -- 20:09:54.270 INFO [8318]: COREGRADE is starting... -- 20:09:54.270 INFO [8318]: Version from config: 1.0 -- 20:09:54.270 DEBUG [8318]: Connecting to database... -- 20:09:54.270 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:09:54.270 SQL [8318]: pgsql_db_connect() -- 20:09:54.275 DEBUG [8318]: Database connection successful -- 20:09:54.275 INFO [8318]: _SERVER found -- 20:09:54.275 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 20:09:54.275 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 20:09:54.275 INFO [8318]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=hdup3a9on3iucupj2sgrotsr04bvrtqj; _gat_gtag_UA_54829827_2=1 -- 20:09:54.275 INFO [8318]: QUERY_STRING = /app-assets/images/pages/content-img-2.jpg -- 20:09:54.275 INFO [8318]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:09:54.286 INFO [8318]: COREGRADE is stopping... -- 20:09:54.286 DEBUG [8318]: Closing database connection -- 20:09:54.286 SQL [8318]: pgsql_close() -- 20:11:10.279 INFO [12992]: COREGRADE is starting... -- 20:11:10.280 INFO [12992]: Version from config: 1.0 -- 20:11:10.280 DEBUG [12992]: Connecting to database... -- 20:11:10.280 DEBUG [12992]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:11:10.280 SQL [12992]: pgsql_db_connect() -- 20:11:10.284 DEBUG [12992]: Database connection successful -- 20:11:10.284 INFO [12992]: _SERVER found -- 20:11:10.284 INFO [12992]: REMOTE_ADDR = 10.0.0.15 -- 20:11:10.284 INFO [12992]: SERVER_NAME = oameye.works.coregrade.com -- 20:11:10.284 INFO [12992]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=hdup3a9on3iucupj2sgrotsr04bvrtqj -- 20:11:10.284 INFO [12992]: QUERY_STRING = /home/aboutus -- 20:11:10.284 INFO [12992]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:11:10.317 INFO [12992]: COREGRADE is stopping... -- 20:11:10.317 DEBUG [12992]: Closing database connection -- 20:11:10.317 SQL [12992]: pgsql_close() -- 20:11:10.367 INFO [12992]: COREGRADE is starting... -- 20:11:10.367 INFO [12992]: Version from config: 1.0 -- 20:11:10.367 DEBUG [12992]: Connecting to database... -- 20:11:10.367 DEBUG [12992]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:11:10.367 SQL [12992]: pgsql_db_connect() -- 20:11:10.371 DEBUG [12992]: Database connection successful -- 20:11:10.371 INFO [12992]: _SERVER found -- 20:11:10.371 INFO [12992]: REMOTE_ADDR = 10.0.0.15 -- 20:11:10.371 INFO [12992]: SERVER_NAME = oameye.works.coregrade.com -- 20:11:10.371 INFO [12992]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=hdup3a9on3iucupj2sgrotsr04bvrtqj -- 20:11:10.371 INFO [12992]: QUERY_STRING = /app-assets/images/pages/content-img-2.jpg -- 20:11:10.371 INFO [12992]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:11:10.382 INFO [12992]: COREGRADE is stopping... -- 20:11:10.382 DEBUG [12992]: Closing database connection -- 20:11:10.382 SQL [12992]: pgsql_close() -- 20:11:37.491 INFO [7004]: COREGRADE is starting... -- 20:11:37.491 INFO [7004]: Version from config: 1.0 -- 20:11:37.491 DEBUG [7004]: Connecting to database... -- 20:11:37.491 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:11:37.491 SQL [7004]: pgsql_db_connect() -- 20:11:37.495 DEBUG [7004]: Database connection successful -- 20:11:37.495 INFO [7004]: _SERVER found -- 20:11:37.495 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 20:11:37.495 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 20:11:37.495 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=hdup3a9on3iucupj2sgrotsr04bvrtqj -- 20:11:37.495 INFO [7004]: QUERY_STRING = /home/aboutus -- 20:11:37.495 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:11:37.528 INFO [7004]: COREGRADE is stopping... -- 20:11:37.528 DEBUG [7004]: Closing database connection -- 20:11:37.528 SQL [7004]: pgsql_close() -- 20:11:37.576 INFO [7004]: COREGRADE is starting... -- 20:11:37.576 INFO [7004]: Version from config: 1.0 -- 20:11:37.576 DEBUG [7004]: Connecting to database... -- 20:11:37.576 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:11:37.576 SQL [7004]: pgsql_db_connect() -- 20:11:37.580 DEBUG [7004]: Database connection successful -- 20:11:37.580 INFO [7004]: _SERVER found -- 20:11:37.580 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 20:11:37.580 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 20:11:37.580 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=hdup3a9on3iucupj2sgrotsr04bvrtqj -- 20:11:37.580 INFO [7004]: QUERY_STRING = /app-assets/images/pages/content-img-2.jpg -- 20:11:37.580 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:11:37.591 INFO [7004]: COREGRADE is stopping... -- 20:11:37.591 DEBUG [7004]: Closing database connection -- 20:11:37.591 SQL [7004]: pgsql_close() -- 20:12:36.184 INFO [6925]: COREGRADE is starting... -- 20:12:36.184 INFO [6925]: Version from config: 1.0 -- 20:12:36.184 DEBUG [6925]: Connecting to database... -- 20:12:36.184 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:12:36.184 SQL [6925]: pgsql_db_connect() -- 20:12:36.188 DEBUG [6925]: Database connection successful -- 20:12:36.188 INFO [6925]: _SERVER found -- 20:12:36.188 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 20:12:36.188 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 20:12:36.188 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=hdup3a9on3iucupj2sgrotsr04bvrtqj -- 20:12:36.188 INFO [6925]: QUERY_STRING = /home/aboutus -- 20:12:36.188 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:12:36.221 INFO [6925]: COREGRADE is stopping... -- 20:12:36.221 DEBUG [6925]: Closing database connection -- 20:12:36.221 SQL [6925]: pgsql_close() -- 20:12:36.274 INFO [6925]: COREGRADE is starting... -- 20:12:36.274 INFO [6925]: Version from config: 1.0 -- 20:12:36.274 DEBUG [6925]: Connecting to database... -- 20:12:36.274 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:12:36.274 SQL [6925]: pgsql_db_connect() -- 20:12:36.278 DEBUG [6925]: Database connection successful -- 20:12:36.278 INFO [6925]: _SERVER found -- 20:12:36.278 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 20:12:36.278 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 20:12:36.278 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=hdup3a9on3iucupj2sgrotsr04bvrtqj -- 20:12:36.278 INFO [6925]: QUERY_STRING = /app-assets/images/pages/content-img-2.jpg -- 20:12:36.278 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:12:36.290 INFO [6925]: COREGRADE is stopping... -- 20:12:36.290 DEBUG [6925]: Closing database connection -- 20:12:36.290 SQL [6925]: pgsql_close() -- 20:13:11.138 INFO [7002]: COREGRADE is starting... -- 20:13:11.138 INFO [7002]: Version from config: 1.0 -- 20:13:11.138 DEBUG [7002]: Connecting to database... -- 20:13:11.138 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:13:11.138 SQL [7002]: pgsql_db_connect() -- 20:13:11.142 DEBUG [7002]: Database connection successful -- 20:13:11.142 INFO [7002]: _SERVER found -- 20:13:11.142 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 20:13:11.142 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 20:13:11.142 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=hdup3a9on3iucupj2sgrotsr04bvrtqj -- 20:13:11.142 INFO [7002]: QUERY_STRING = /home/aboutus -- 20:13:11.142 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:13:11.174 INFO [7002]: COREGRADE is stopping... -- 20:13:11.174 DEBUG [7002]: Closing database connection -- 20:13:11.174 SQL [7002]: pgsql_close() -- 20:13:11.233 INFO [7002]: COREGRADE is starting... -- 20:13:11.233 INFO [7002]: Version from config: 1.0 -- 20:13:11.233 DEBUG [7002]: Connecting to database... -- 20:13:11.233 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:13:11.233 SQL [7002]: pgsql_db_connect() -- 20:13:11.237 DEBUG [7002]: Database connection successful -- 20:13:11.237 INFO [7002]: _SERVER found -- 20:13:11.237 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 20:13:11.237 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 20:13:11.237 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=hdup3a9on3iucupj2sgrotsr04bvrtqj -- 20:13:11.237 INFO [7002]: QUERY_STRING = /app-assets/images/pages/content-img-2.jpg -- 20:13:11.237 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:13:11.248 INFO [7002]: COREGRADE is stopping... -- 20:13:11.248 DEBUG [7002]: Closing database connection -- 20:13:11.248 SQL [7002]: pgsql_close() -- 20:13:46.853 INFO [6929]: COREGRADE is starting... -- 20:13:46.853 INFO [6929]: Version from config: 1.0 -- 20:13:46.853 DEBUG [6929]: Connecting to database... -- 20:13:46.853 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:13:46.854 SQL [6929]: pgsql_db_connect() -- 20:13:46.858 DEBUG [6929]: Database connection successful -- 20:13:46.858 INFO [6929]: _SERVER found -- 20:13:46.858 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 20:13:46.858 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 20:13:46.858 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=hdup3a9on3iucupj2sgrotsr04bvrtqj -- 20:13:46.858 INFO [6929]: QUERY_STRING = /home/aboutus -- 20:13:46.858 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:13:46.890 INFO [6929]: COREGRADE is stopping... -- 20:13:46.890 DEBUG [6929]: Closing database connection -- 20:13:46.890 SQL [6929]: pgsql_close() -- 20:13:46.946 INFO [6929]: COREGRADE is starting... -- 20:13:46.946 INFO [6929]: Version from config: 1.0 -- 20:13:46.946 DEBUG [6929]: Connecting to database... -- 20:13:46.946 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:13:46.946 SQL [6929]: pgsql_db_connect() -- 20:13:46.950 DEBUG [6929]: Database connection successful -- 20:13:46.950 INFO [6929]: _SERVER found -- 20:13:46.950 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 20:13:46.950 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 20:13:46.950 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=hdup3a9on3iucupj2sgrotsr04bvrtqj -- 20:13:46.950 INFO [6929]: QUERY_STRING = /app-assets/images/pages/content-img-2.jpg -- 20:13:46.950 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:13:46.962 INFO [6929]: COREGRADE is stopping... -- 20:13:46.962 DEBUG [6929]: Closing database connection -- 20:13:46.962 SQL [6929]: pgsql_close() -- 20:14:38.019 INFO [7005]: COREGRADE is starting... -- 20:14:38.020 INFO [7005]: Version from config: 1.0 -- 20:14:38.020 DEBUG [7005]: Connecting to database... -- 20:14:38.020 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:14:38.020 SQL [7005]: pgsql_db_connect() -- 20:14:38.024 DEBUG [7005]: Database connection successful -- 20:14:38.024 INFO [7005]: _SERVER found -- 20:14:38.024 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 20:14:38.024 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 20:14:38.024 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=hdup3a9on3iucupj2sgrotsr04bvrtqj -- 20:14:38.024 INFO [7005]: QUERY_STRING = /home/aboutus -- 20:14:38.024 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:14:38.057 INFO [7005]: COREGRADE is stopping... -- 20:14:38.057 DEBUG [7005]: Closing database connection -- 20:14:38.057 SQL [7005]: pgsql_close() -- 20:14:38.109 INFO [7005]: COREGRADE is starting... -- 20:14:38.109 INFO [7005]: Version from config: 1.0 -- 20:14:38.109 DEBUG [7005]: Connecting to database... -- 20:14:38.109 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:14:38.109 SQL [7005]: pgsql_db_connect() -- 20:14:38.113 DEBUG [7005]: Database connection successful -- 20:14:38.113 INFO [7005]: _SERVER found -- 20:14:38.113 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 20:14:38.113 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 20:14:38.113 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=bkbfadpqppnaopqpmi4ju618hqhvao2q -- 20:14:38.113 INFO [7005]: QUERY_STRING = /app-assets/images/pages/content-img-2.jpg -- 20:14:38.113 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:14:38.125 INFO [7005]: COREGRADE is stopping... -- 20:14:38.125 DEBUG [7005]: Closing database connection -- 20:14:38.125 SQL [7005]: pgsql_close() -- 20:15:09.759 INFO [12632]: COREGRADE is starting... -- 20:15:09.759 INFO [12632]: Version from config: 1.0 -- 20:15:09.759 DEBUG [12632]: Connecting to database... -- 20:15:09.759 DEBUG [12632]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:15:09.759 SQL [12632]: pgsql_db_connect() -- 20:15:09.763 DEBUG [12632]: Database connection successful -- 20:15:09.763 INFO [12632]: _SERVER found -- 20:15:09.763 INFO [12632]: REMOTE_ADDR = 10.0.0.15 -- 20:15:09.763 INFO [12632]: SERVER_NAME = oameye.works.coregrade.com -- 20:15:09.763 INFO [12632]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=bkbfadpqppnaopqpmi4ju618hqhvao2q -- 20:15:09.763 INFO [12632]: QUERY_STRING = /home/aboutus -- 20:15:09.763 INFO [12632]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:15:09.795 INFO [12632]: COREGRADE is stopping... -- 20:15:09.795 DEBUG [12632]: Closing database connection -- 20:15:09.795 SQL [12632]: pgsql_close() -- 20:15:09.846 INFO [12632]: COREGRADE is starting... -- 20:15:09.846 INFO [12632]: Version from config: 1.0 -- 20:15:09.846 DEBUG [12632]: Connecting to database... -- 20:15:09.846 DEBUG [12632]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:15:09.847 SQL [12632]: pgsql_db_connect() -- 20:15:09.851 DEBUG [12632]: Database connection successful -- 20:15:09.851 INFO [12632]: _SERVER found -- 20:15:09.851 INFO [12632]: REMOTE_ADDR = 10.0.0.15 -- 20:15:09.851 INFO [12632]: SERVER_NAME = oameye.works.coregrade.com -- 20:15:09.851 INFO [12632]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=bkbfadpqppnaopqpmi4ju618hqhvao2q -- 20:15:09.851 INFO [12632]: QUERY_STRING = /app-assets/images/pages/content-img-2.jpg -- 20:15:09.851 INFO [12632]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:15:09.862 INFO [12632]: COREGRADE is stopping... -- 20:15:09.862 DEBUG [12632]: Closing database connection -- 20:15:09.862 SQL [12632]: pgsql_close() -- 20:16:04.393 INFO [7006]: COREGRADE is starting... -- 20:16:04.393 INFO [7006]: Version from config: 1.0 -- 20:16:04.393 DEBUG [7006]: Connecting to database... -- 20:16:04.393 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:16:04.393 SQL [7006]: pgsql_db_connect() -- 20:16:04.397 DEBUG [7006]: Database connection successful -- 20:16:04.397 INFO [7006]: _SERVER found -- 20:16:04.397 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 20:16:04.397 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 20:16:04.397 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=bkbfadpqppnaopqpmi4ju618hqhvao2q -- 20:16:04.397 INFO [7006]: QUERY_STRING = /home/aboutus -- 20:16:04.397 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:16:04.430 INFO [7006]: COREGRADE is stopping... -- 20:16:04.430 DEBUG [7006]: Closing database connection -- 20:16:04.430 SQL [7006]: pgsql_close() -- 20:16:04.482 INFO [7006]: COREGRADE is starting... -- 20:16:04.483 INFO [7006]: Version from config: 1.0 -- 20:16:04.483 DEBUG [7006]: Connecting to database... -- 20:16:04.483 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:16:04.483 SQL [7006]: pgsql_db_connect() -- 20:16:04.487 DEBUG [7006]: Database connection successful -- 20:16:04.487 INFO [7006]: _SERVER found -- 20:16:04.487 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 20:16:04.487 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 20:16:04.487 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=bkbfadpqppnaopqpmi4ju618hqhvao2q -- 20:16:04.487 INFO [7006]: QUERY_STRING = /app-assets/images/pages/content-img-2.jpg -- 20:16:04.487 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:16:04.498 INFO [7006]: COREGRADE is stopping... -- 20:16:04.498 DEBUG [7006]: Closing database connection -- 20:16:04.498 SQL [7006]: pgsql_close() -- 20:16:05.715 INFO [7006]: COREGRADE is starting... -- 20:16:05.716 INFO [7006]: Version from config: 1.0 -- 20:16:05.716 DEBUG [7006]: Connecting to database... -- 20:16:05.716 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:16:05.716 SQL [7006]: pgsql_db_connect() -- 20:16:05.720 DEBUG [7006]: Database connection successful -- 20:16:05.720 INFO [7006]: _SERVER found -- 20:16:05.720 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 20:16:05.720 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 20:16:05.720 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=bkbfadpqppnaopqpmi4ju618hqhvao2q -- 20:16:05.720 INFO [7006]: QUERY_STRING = /home/aboutus -- 20:16:05.720 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:16:05.751 INFO [7006]: COREGRADE is stopping... -- 20:16:05.751 DEBUG [7006]: Closing database connection -- 20:16:05.751 SQL [7006]: pgsql_close() -- 20:16:05.809 INFO [7006]: COREGRADE is starting... -- 20:16:05.809 INFO [7006]: Version from config: 1.0 -- 20:16:05.809 DEBUG [7006]: Connecting to database... -- 20:16:05.809 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:16:05.809 SQL [7006]: pgsql_db_connect() -- 20:16:05.813 DEBUG [7006]: Database connection successful -- 20:16:05.813 INFO [7006]: _SERVER found -- 20:16:05.813 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 20:16:05.813 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 20:16:05.813 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=bkbfadpqppnaopqpmi4ju618hqhvao2q -- 20:16:05.813 INFO [7006]: QUERY_STRING = /app-assets/images/pages/content-img-2.jpg -- 20:16:05.813 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:16:05.824 INFO [7006]: COREGRADE is stopping... -- 20:16:05.824 DEBUG [7006]: Closing database connection -- 20:16:05.824 SQL [7006]: pgsql_close() -- 20:16:37.599 INFO [12991]: COREGRADE is starting... -- 20:16:37.599 INFO [12991]: Version from config: 1.0 -- 20:16:37.599 DEBUG [12991]: Connecting to database... -- 20:16:37.599 DEBUG [12991]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:16:37.599 SQL [12991]: pgsql_db_connect() -- 20:16:37.603 DEBUG [12991]: Database connection successful -- 20:16:37.603 INFO [12991]: _SERVER found -- 20:16:37.603 INFO [12991]: REMOTE_ADDR = 10.0.0.15 -- 20:16:37.603 INFO [12991]: SERVER_NAME = oameye.works.coregrade.com -- 20:16:37.603 INFO [12991]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=bkbfadpqppnaopqpmi4ju618hqhvao2q -- 20:16:37.603 INFO [12991]: QUERY_STRING = /home/aboutus -- 20:16:37.603 INFO [12991]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:16:37.638 INFO [12991]: COREGRADE is stopping... -- 20:16:37.638 DEBUG [12991]: Closing database connection -- 20:16:37.638 SQL [12991]: pgsql_close() -- 20:16:37.687 INFO [12991]: COREGRADE is starting... -- 20:16:37.687 INFO [12991]: Version from config: 1.0 -- 20:16:37.687 DEBUG [12991]: Connecting to database... -- 20:16:37.687 DEBUG [12991]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:16:37.687 SQL [12991]: pgsql_db_connect() -- 20:16:37.691 DEBUG [12991]: Database connection successful -- 20:16:37.691 INFO [12991]: _SERVER found -- 20:16:37.691 INFO [12991]: REMOTE_ADDR = 10.0.0.15 -- 20:16:37.691 INFO [12991]: SERVER_NAME = oameye.works.coregrade.com -- 20:16:37.691 INFO [12991]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=bkbfadpqppnaopqpmi4ju618hqhvao2q -- 20:16:37.691 INFO [12991]: QUERY_STRING = /app-assets/images/pages/content-img-2.jpg -- 20:16:37.691 INFO [12991]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:16:37.702 INFO [12991]: COREGRADE is stopping... -- 20:16:37.702 DEBUG [12991]: Closing database connection -- 20:16:37.702 SQL [12991]: pgsql_close() -- 20:17:32.520 INFO [8318]: COREGRADE is starting... -- 20:17:32.520 INFO [8318]: Version from config: 1.0 -- 20:17:32.520 DEBUG [8318]: Connecting to database... -- 20:17:32.520 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:17:32.520 SQL [8318]: pgsql_db_connect() -- 20:17:32.524 DEBUG [8318]: Database connection successful -- 20:17:32.524 INFO [8318]: _SERVER found -- 20:17:32.524 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 20:17:32.524 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 20:17:32.524 INFO [8318]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=bkbfadpqppnaopqpmi4ju618hqhvao2q -- 20:17:32.524 INFO [8318]: QUERY_STRING = /home/aboutus -- 20:17:32.524 INFO [8318]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:17:32.556 INFO [8318]: COREGRADE is stopping... -- 20:17:32.556 DEBUG [8318]: Closing database connection -- 20:17:32.556 SQL [8318]: pgsql_close() -- 20:17:32.601 INFO [8318]: COREGRADE is starting... -- 20:17:32.601 INFO [8318]: Version from config: 1.0 -- 20:17:32.601 DEBUG [8318]: Connecting to database... -- 20:17:32.601 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:17:32.601 SQL [8318]: pgsql_db_connect() -- 20:17:32.605 DEBUG [8318]: Database connection successful -- 20:17:32.605 INFO [8318]: _SERVER found -- 20:17:32.605 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 20:17:32.605 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 20:17:32.605 INFO [8318]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=bkbfadpqppnaopqpmi4ju618hqhvao2q -- 20:17:32.605 INFO [8318]: QUERY_STRING = /app-assets/images/pages/content-img-2.jpg -- 20:17:32.605 INFO [8318]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:17:32.616 INFO [8318]: COREGRADE is stopping... -- 20:17:32.616 DEBUG [8318]: Closing database connection -- 20:17:32.616 SQL [8318]: pgsql_close() -- 20:18:07.205 INFO [12992]: COREGRADE is starting... -- 20:18:07.205 INFO [12992]: Version from config: 1.0 -- 20:18:07.205 DEBUG [12992]: Connecting to database... -- 20:18:07.206 DEBUG [12992]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:18:07.206 SQL [12992]: pgsql_db_connect() -- 20:18:07.210 DEBUG [12992]: Database connection successful -- 20:18:07.210 INFO [12992]: _SERVER found -- 20:18:07.210 INFO [12992]: REMOTE_ADDR = 10.0.0.15 -- 20:18:07.210 INFO [12992]: SERVER_NAME = oameye.works.coregrade.com -- 20:18:07.210 INFO [12992]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=252kadaffn397uohgloingsma7oe00cb -- 20:18:07.210 INFO [12992]: QUERY_STRING = -- 20:18:07.210 INFO [12992]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:18:07.242 INFO [12992]: COREGRADE is stopping... -- 20:18:07.242 DEBUG [12992]: Closing database connection -- 20:18:07.242 SQL [12992]: pgsql_close() -- 20:18:07.711 INFO [12992]: COREGRADE is starting... -- 20:18:07.711 INFO [12992]: Version from config: 1.0 -- 20:18:07.711 DEBUG [12992]: Connecting to database... -- 20:18:07.711 DEBUG [12992]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:18:07.711 SQL [12992]: pgsql_db_connect() -- 20:18:07.715 DEBUG [12992]: Database connection successful -- 20:18:07.715 INFO [12992]: _SERVER found -- 20:18:07.715 INFO [12992]: REMOTE_ADDR = 10.0.0.15 -- 20:18:07.715 INFO [12992]: SERVER_NAME = oameye.works.coregrade.com -- 20:18:07.715 INFO [12992]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=91eibkrprvgt2hnvlpg2qmr18e8a8747 -- 20:18:07.715 INFO [12992]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:18:07.715 INFO [12992]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:18:07.726 INFO [12992]: COREGRADE is stopping... -- 20:18:07.726 DEBUG [12992]: Closing database connection -- 20:18:07.726 SQL [12992]: pgsql_close() -- 20:18:21.852 INFO [7004]: COREGRADE is starting... -- 20:18:21.853 INFO [7004]: Version from config: 1.0 -- 20:18:21.853 DEBUG [7004]: Connecting to database... -- 20:18:21.853 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:18:21.853 SQL [7004]: pgsql_db_connect() -- 20:18:21.857 DEBUG [7004]: Database connection successful -- 20:18:21.857 INFO [7004]: _SERVER found -- 20:18:21.857 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 20:18:21.857 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 20:18:21.857 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=91eibkrprvgt2hnvlpg2qmr18e8a8747; _gat_gtag_UA_54829827_2=1 -- 20:18:21.857 INFO [7004]: QUERY_STRING = /auth -- 20:18:21.857 INFO [7004]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:18:21.890 INFO [7004]: COREGRADE is stopping... -- 20:18:21.890 DEBUG [7004]: Closing database connection -- 20:18:21.890 SQL [7004]: pgsql_close() -- 20:18:21.901 INFO [7004]: COREGRADE is starting... -- 20:18:21.902 INFO [7004]: Version from config: 1.0 -- 20:18:21.902 DEBUG [7004]: Connecting to database... -- 20:18:21.902 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:18:21.902 SQL [7004]: pgsql_db_connect() -- 20:18:21.906 DEBUG [7004]: Database connection successful -- 20:18:21.906 INFO [7004]: _SERVER found -- 20:18:21.906 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 20:18:21.906 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 20:18:21.906 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=91eibkrprvgt2hnvlpg2qmr18e8a8747; _gat_gtag_UA_54829827_2=1 -- 20:18:21.906 INFO [7004]: QUERY_STRING = /welcome/viewLogin -- 20:18:21.906 INFO [7004]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:18:21.940 INFO [7004]: COREGRADE is stopping... -- 20:18:21.940 DEBUG [7004]: Closing database connection -- 20:18:21.940 SQL [7004]: pgsql_close() -- 20:18:35.272 INFO [6925]: COREGRADE is starting... -- 20:18:35.272 INFO [6925]: Version from config: 1.0 -- 20:18:35.272 DEBUG [6925]: Connecting to database... -- 20:18:35.272 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:18:35.272 SQL [6925]: pgsql_db_connect() -- 20:18:35.308 INFO [6925]: COREGRADE is starting... -- 20:18:35.309 INFO [6925]: Version from config: 1.0 -- 20:18:35.309 DEBUG [6925]: Connecting to database... -- 20:18:35.309 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:18:35.309 SQL [6925]: pgsql_db_connect() -- 20:18:35.313 DEBUG [6925]: Database connection successful -- 20:18:35.313 INFO [6925]: _SERVER found -- 20:18:35.313 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 20:18:35.313 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 20:18:35.313 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=91eibkrprvgt2hnvlpg2qmr18e8a8747; _gat_gtag_UA_54829827_2=1 -- 20:18:35.313 INFO [6925]: QUERY_STRING = -- 20:18:35.313 INFO [6925]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:18:35.313 INFO [6925]: SystemStatus()09-09-********~************ -- 20:18:35.313 INFO [6925]: long coregrade_api_main(CVars in, CVars &out) -- 20:18:35.313 INFO [6925]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 20:18:35.313 INFO [6925]: account calls -- 20:18:35.313 INFO [6925]: account_calls() -- 20:18:35.313 INFO [6925]: LoginCoreGradeAccount() -- 20:18:35.313 FLOG_MAX [6925]: REQ_STRING(username) -- 20:18:35.313 FLOG_MAX [6925]: REQ_STRING(password) -- 20:18:35.313 FLOG_MAX [6925]: REQ_STRING(sessionid) -- 20:18:35.313 FLOG_MAX [6925]: long load_db_record( CVars &rec, const char * query, ... ) -- 20:18:35.313 SQL [6925]: pgsql_query() -- 20:18:35.313 SQL [6925]: About to run query: -- 20:18:35.313 SQL [6925]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678') -- 20:18:35.316 SQL [6925]: Found rows: 1 -- 20:18:35.316 FLOG_MAX [6925]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678')) num_cols=16 -- 20:18:35.316 INFO [6925]: long SessionCheck(long uid, const char *sessionid, int create ) -- 20:18:35.316 SQL [6925]: pgsql_exec() -- 20:18:35.317 SQL [6925]: About to run query: -- 20:18:35.317 SQL [6925]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 20:18:35.318 SQL [6925]: PQcmdTuples: 1 -- 20:18:35.318 SQL [6925]: Affected rows: 1 -- 20:18:35.318 SQL [6925]: pgsql_exec() -- 20:18:35.318 SQL [6925]: About to run query: -- 20:18:35.318 SQL [6925]: DELETE FROM members_session WHERE member_id=7 -- 20:18:35.318 SQL [6925]: PQcmdTuples: 0 -- 20:18:35.318 SQL [6925]: Affected rows: 0 -- 20:18:35.318 SQL [6925]: pgsql_query() -- 20:18:35.318 SQL [6925]: About to run query: -- 20:18:35.318 SQL [6925]: SELECT * FROM members_session WHERE member_id=7 AND session<>'F9615350E54C490144857AD3CF4A1A35' -- 20:18:35.319 SQL [6925]: Found rows: 0 -- 20:18:35.319 SQL [6925]: Found rows: 0 -- 20:18:35.319 FLOG_MAX [6925]: long load_db_record( CVars &rec, const char * query, ... ) -- 20:18:35.319 SQL [6925]: pgsql_query() -- 20:18:35.319 SQL [6925]: About to run query: -- 20:18:35.319 SQL [6925]: SELECT * FROM members_session WHERE member_id=7 AND session='F9615350E54C490144857AD3CF4A1A35' -- 20:18:35.319 SQL [6925]: Found rows: 0 -- 20:18:35.319 SQL [6925]: Found rows: 0 -- 20:18:35.319 FLOG_MAX [6925]: insert_db_record() -- 20:18:35.319 SQL [6925]: pgsql_exec() -- 20:18:35.319 SQL [6925]: About to run query: -- 20:18:35.319 SQL [6925]: INSERT INTO members_session (member_id,session) VALUES ('7','F9615350E54C490144857AD3CF4A1A35') -- 20:18:35.321 SQL [6925]: PQcmdTuples: 1 -- 20:18:35.321 SQL [6925]: Affected rows: 1 -- 20:18:35.321 FLOG_MAX [6925]: SELECT currval('members_session_id_seq') -- 20:18:35.321 SQL [6925]: pgsql_query() -- 20:18:35.321 SQL [6925]: About to run query: -- 20:18:35.321 SQL [6925]: SELECT currval('members_session_id_seq') -- 20:18:35.321 SQL [6925]: Found rows: 1 -- 20:18:35.321 INFO [6925]: CreateDefaultPage() -- 20:18:35.321 FLOG_MAX [6925]: long load_db_record( CVars &rec, const char * query, ... ) -- 20:18:35.321 SQL [6925]: pgsql_query() -- 20:18:35.321 SQL [6925]: About to run query: -- 20:18:35.321 SQL [6925]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 20:18:35.321 SQL [6925]: Found rows: 1 -- 20:18:35.321 FLOG_MAX [6925]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 20:18:35.321 SQL [6925]: pgsql_query() -- 20:18:35.322 SQL [6925]: About to run query: -- 20:18:35.322 SQL [6925]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 20:18:35.322 SQL [6925]: Found rows: 1 -- 20:18:35.322 INFO [6925]: /CreateDefaultPage() -- 20:18:35.322 INFO [6925]: /LoginCoreGradeAccount() -- 20:18:35.322 INFO [6925]: RET: added=2020-02-05 09:42:12.816064 -- 20:18:35.322 INFO [6925]: RET: email=tokslaw@chiefsoft.com -- 20:18:35.322 INFO [6925]: RET: firstname=Tokunbo -- 20:18:35.322 INFO [6925]: RET: folder=5D06B187B1E2285A63AD1D0ECB670D98 -- 20:18:35.322 INFO [6925]: RET: id=7 -- 20:18:35.322 INFO [6925]: RET: last_login= -- 20:18:35.322 INFO [6925]: RET: lastname=Lawal -- 20:18:35.322 INFO [6925]: RET: loc=192.168.1.13 -- 20:18:35.322 INFO [6925]: RET: member_id=7 -- 20:18:35.322 INFO [6925]: RET: password=25d55ad283aa400af464c76d713c07ad -- 20:18:35.322 INFO [6925]: RET: phone= -- 20:18:35.322 INFO [6925]: RET: pid= -- 20:18:35.322 INFO [6925]: RET: result=YES I GET TO BACK END -- 20:18:35.322 INFO [6925]: RET: sessionid=F9615350E54C490144857AD3CF4A1A35 -- 20:18:35.322 INFO [6925]: RET: status=1 -- 20:18:35.322 INFO [6925]: RET: stauts=OK -- 20:18:35.322 INFO [6925]: RET: username=tokslaw@chiefsoft.com -- 20:18:35.322 INFO [6925]: RET: verified= -- 20:18:35.324 INFO [6925]: COREGRADE is stopping... -- 20:18:35.324 DEBUG [6925]: Closing database connection -- 20:18:35.324 SQL [6925]: pgsql_close() -- 20:18:35.276 DEBUG [6925]: Database connection successful -- 20:18:35.276 INFO [6925]: _SERVER found -- 20:18:35.276 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 20:18:35.276 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 20:18:35.276 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=91eibkrprvgt2hnvlpg2qmr18e8a8747; _gat_gtag_UA_54829827_2=1 -- 20:18:35.276 INFO [6925]: QUERY_STRING = /auth -- 20:18:35.276 INFO [6925]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:18:35.324 INFO [6925]: COREGRADE is stopping... -- 20:18:35.324 DEBUG [6925]: Closing database connection -- 20:18:35.324 SQL [6925]: pgsql_close() -- 20:18:35.341 INFO [6925]: COREGRADE is starting... -- 20:18:35.341 INFO [6925]: Version from config: 1.0 -- 20:18:35.341 DEBUG [6925]: Connecting to database... -- 20:18:35.341 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:18:35.341 SQL [6925]: pgsql_db_connect() -- 20:18:35.345 DEBUG [6925]: Database connection successful -- 20:18:35.345 INFO [6925]: _SERVER found -- 20:18:35.345 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 20:18:35.345 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 20:18:35.345 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=91eibkrprvgt2hnvlpg2qmr18e8a8747; _gat_gtag_UA_54829827_2=1 -- 20:18:35.345 INFO [6925]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 20:18:35.345 INFO [6925]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:18:35.356 INFO [6925]: COREGRADE is stopping... -- 20:18:35.356 DEBUG [6925]: Closing database connection -- 20:18:35.356 SQL [6925]: pgsql_close() -- 20:18:35.365 INFO [6925]: COREGRADE is starting... -- 20:18:35.365 INFO [6925]: Version from config: 1.0 -- 20:18:35.365 DEBUG [6925]: Connecting to database... -- 20:18:35.365 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:18:35.365 SQL [6925]: pgsql_db_connect() -- 20:18:35.369 DEBUG [6925]: Database connection successful -- 20:18:35.369 INFO [6925]: _SERVER found -- 20:18:35.369 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 20:18:35.369 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 20:18:35.369 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=91eibkrprvgt2hnvlpg2qmr18e8a8747; _gat_gtag_UA_54829827_2=1 -- 20:18:35.369 INFO [6925]: QUERY_STRING = /member/index -- 20:18:35.369 INFO [6925]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:18:35.409 INFO [6925]: COREGRADE is stopping... -- 20:18:35.409 DEBUG [6925]: Closing database connection -- 20:18:35.409 SQL [6925]: pgsql_close() -- 20:18:36.242 INFO [6925]: COREGRADE is starting... -- 20:18:36.242 INFO [6925]: Version from config: 1.0 -- 20:18:36.242 DEBUG [6925]: Connecting to database... -- 20:18:36.243 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:18:36.243 SQL [6925]: pgsql_db_connect() -- 20:18:36.247 DEBUG [6925]: Database connection successful -- 20:18:36.247 INFO [6925]: _SERVER found -- 20:18:36.247 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 20:18:36.247 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 20:18:36.247 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=91eibkrprvgt2hnvlpg2qmr18e8a8747; _gat_gtag_UA_54829827_2=1 -- 20:18:36.247 INFO [6925]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:18:36.247 INFO [6925]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:18:36.258 INFO [6925]: COREGRADE is stopping... -- 20:18:36.258 DEBUG [6925]: Closing database connection -- 20:18:36.258 SQL [6925]: pgsql_close() -- 20:18:39.428 INFO [6925]: COREGRADE is starting... -- 20:18:39.428 INFO [6925]: Version from config: 1.0 -- 20:18:39.428 DEBUG [6925]: Connecting to database... -- 20:18:39.428 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:18:39.428 SQL [6925]: pgsql_db_connect() -- 20:18:39.432 DEBUG [6925]: Database connection successful -- 20:18:39.432 INFO [6925]: _SERVER found -- 20:18:39.432 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 20:18:39.432 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 20:18:39.432 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=91eibkrprvgt2hnvlpg2qmr18e8a8747; _gat_gtag_UA_54829827_2=1 -- 20:18:39.432 INFO [6925]: QUERY_STRING = /auth -- 20:18:39.432 INFO [6925]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:18:39.465 INFO [6925]: COREGRADE is stopping... -- 20:18:39.465 DEBUG [6925]: Closing database connection -- 20:18:39.465 SQL [6925]: pgsql_close() -- 20:18:39.751 INFO [6925]: COREGRADE is starting... -- 20:18:39.751 INFO [6925]: Version from config: 1.0 -- 20:18:39.751 DEBUG [6925]: Connecting to database... -- 20:18:39.751 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:18:39.751 SQL [6925]: pgsql_db_connect() -- 20:18:39.755 DEBUG [6925]: Database connection successful -- 20:18:39.755 INFO [6925]: _SERVER found -- 20:18:39.755 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 20:18:39.755 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 20:18:39.755 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=91eibkrprvgt2hnvlpg2qmr18e8a8747; _gat_gtag_UA_54829827_2=1 -- 20:18:39.755 INFO [6925]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 20:18:39.755 INFO [6925]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:18:39.767 INFO [6925]: COREGRADE is stopping... -- 20:18:39.767 DEBUG [6925]: Closing database connection -- 20:18:39.767 SQL [6925]: pgsql_close() -- 20:18:41.071 INFO [6925]: COREGRADE is starting... -- 20:18:41.072 INFO [6925]: Version from config: 1.0 -- 20:18:41.072 DEBUG [6925]: Connecting to database... -- 20:18:41.072 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:18:41.072 SQL [6925]: pgsql_db_connect() -- 20:18:41.076 DEBUG [6925]: Database connection successful -- 20:18:41.076 INFO [6925]: _SERVER found -- 20:18:41.076 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 20:18:41.076 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 20:18:41.076 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=bkbfadpqppnaopqpmi4ju618hqhvao2q -- 20:18:41.076 INFO [6925]: QUERY_STRING = /home/aboutus -- 20:18:41.076 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:18:41.107 INFO [6925]: COREGRADE is stopping... -- 20:18:41.107 DEBUG [6925]: Closing database connection -- 20:18:41.107 SQL [6925]: pgsql_close() -- 20:18:52.946 INFO [7002]: COREGRADE is starting... -- 20:18:52.947 INFO [7002]: Version from config: 1.0 -- 20:18:52.947 DEBUG [7002]: Connecting to database... -- 20:18:52.947 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:18:52.947 SQL [7002]: pgsql_db_connect() -- 20:18:52.983 INFO [7002]: COREGRADE is starting... -- 20:18:52.984 INFO [7002]: Version from config: 1.0 -- 20:18:52.984 DEBUG [7002]: Connecting to database... -- 20:18:52.984 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:18:52.984 SQL [7002]: pgsql_db_connect() -- 20:18:52.988 DEBUG [7002]: Database connection successful -- 20:18:52.988 INFO [7002]: _SERVER found -- 20:18:52.988 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 20:18:52.988 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 20:18:52.988 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=91eibkrprvgt2hnvlpg2qmr18e8a8747; _gat_gtag_UA_54829827_2=1 -- 20:18:52.988 INFO [7002]: QUERY_STRING = -- 20:18:52.988 INFO [7002]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:18:52.988 INFO [7002]: SystemStatus()09-09-********~************ -- 20:18:52.988 INFO [7002]: long coregrade_api_main(CVars in, CVars &out) -- 20:18:52.988 INFO [7002]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 20:18:52.988 INFO [7002]: account calls -- 20:18:52.988 INFO [7002]: account_calls() -- 20:18:52.988 INFO [7002]: LoginCoreGradeAccount() -- 20:18:52.988 FLOG_MAX [7002]: REQ_STRING(username) -- 20:18:52.988 FLOG_MAX [7002]: REQ_STRING(password) -- 20:18:52.988 FLOG_MAX [7002]: REQ_STRING(sessionid) -- 20:18:52.988 FLOG_MAX [7002]: long load_db_record( CVars &rec, const char * query, ... ) -- 20:18:52.988 SQL [7002]: pgsql_query() -- 20:18:52.988 SQL [7002]: About to run query: -- 20:18:52.988 SQL [7002]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678') -- 20:18:52.991 SQL [7002]: Found rows: 1 -- 20:18:52.991 FLOG_MAX [7002]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678')) num_cols=16 -- 20:18:52.991 INFO [7002]: long SessionCheck(long uid, const char *sessionid, int create ) -- 20:18:52.991 SQL [7002]: pgsql_exec() -- 20:18:52.991 SQL [7002]: About to run query: -- 20:18:52.991 SQL [7002]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 20:18:52.992 SQL [7002]: PQcmdTuples: 0 -- 20:18:52.992 SQL [7002]: Affected rows: 0 -- 20:18:52.992 SQL [7002]: pgsql_exec() -- 20:18:52.992 SQL [7002]: About to run query: -- 20:18:52.992 SQL [7002]: DELETE FROM members_session WHERE member_id=7 -- 20:18:52.993 SQL [7002]: PQcmdTuples: 1 -- 20:18:52.993 SQL [7002]: Affected rows: 1 -- 20:18:52.993 SQL [7002]: pgsql_query() -- 20:18:52.993 SQL [7002]: About to run query: -- 20:18:52.993 SQL [7002]: SELECT * FROM members_session WHERE member_id=7 AND session<>'3021225B2BFEDADFEAA580574CAB9A5F' -- 20:18:52.993 SQL [7002]: Found rows: 0 -- 20:18:52.993 SQL [7002]: Found rows: 0 -- 20:18:52.993 FLOG_MAX [7002]: long load_db_record( CVars &rec, const char * query, ... ) -- 20:18:52.993 SQL [7002]: pgsql_query() -- 20:18:52.994 SQL [7002]: About to run query: -- 20:18:52.994 SQL [7002]: SELECT * FROM members_session WHERE member_id=7 AND session='3021225B2BFEDADFEAA580574CAB9A5F' -- 20:18:52.994 SQL [7002]: Found rows: 0 -- 20:18:52.994 SQL [7002]: Found rows: 0 -- 20:18:52.994 FLOG_MAX [7002]: insert_db_record() -- 20:18:52.994 SQL [7002]: pgsql_exec() -- 20:18:52.994 SQL [7002]: About to run query: -- 20:18:52.994 SQL [7002]: INSERT INTO members_session (member_id,session) VALUES ('7','3021225B2BFEDADFEAA580574CAB9A5F') -- 20:18:52.995 SQL [7002]: PQcmdTuples: 1 -- 20:18:52.995 SQL [7002]: Affected rows: 1 -- 20:18:52.995 FLOG_MAX [7002]: SELECT currval('members_session_id_seq') -- 20:18:52.995 SQL [7002]: pgsql_query() -- 20:18:52.995 SQL [7002]: About to run query: -- 20:18:52.995 SQL [7002]: SELECT currval('members_session_id_seq') -- 20:18:52.996 SQL [7002]: Found rows: 1 -- 20:18:52.996 INFO [7002]: CreateDefaultPage() -- 20:18:52.996 FLOG_MAX [7002]: long load_db_record( CVars &rec, const char * query, ... ) -- 20:18:52.996 SQL [7002]: pgsql_query() -- 20:18:52.996 SQL [7002]: About to run query: -- 20:18:52.996 SQL [7002]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 20:18:52.996 SQL [7002]: Found rows: 1 -- 20:18:52.996 FLOG_MAX [7002]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 20:18:52.996 SQL [7002]: pgsql_query() -- 20:18:52.996 SQL [7002]: About to run query: -- 20:18:52.996 SQL [7002]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 20:18:52.997 SQL [7002]: Found rows: 1 -- 20:18:52.997 INFO [7002]: /CreateDefaultPage() -- 20:18:52.997 INFO [7002]: /LoginCoreGradeAccount() -- 20:18:52.997 INFO [7002]: RET: added=2020-02-05 09:42:12.816064 -- 20:18:52.997 INFO [7002]: RET: email=tokslaw@chiefsoft.com -- 20:18:52.997 INFO [7002]: RET: firstname=Tokunbo -- 20:18:52.997 INFO [7002]: RET: folder=5D06B187B1E2285A63AD1D0ECB670D98 -- 20:18:52.997 INFO [7002]: RET: id=7 -- 20:18:52.997 INFO [7002]: RET: last_login= -- 20:18:52.997 INFO [7002]: RET: lastname=Lawal -- 20:18:52.997 INFO [7002]: RET: loc=192.168.1.13 -- 20:18:52.997 INFO [7002]: RET: member_id=7 -- 20:18:52.997 INFO [7002]: RET: password=25d55ad283aa400af464c76d713c07ad -- 20:18:52.997 INFO [7002]: RET: phone= -- 20:18:52.997 INFO [7002]: RET: pid= -- 20:18:52.997 INFO [7002]: RET: result=YES I GET TO BACK END -- 20:18:52.997 INFO [7002]: RET: sessionid=3021225B2BFEDADFEAA580574CAB9A5F -- 20:18:52.997 INFO [7002]: RET: status=1 -- 20:18:52.997 INFO [7002]: RET: stauts=OK -- 20:18:52.997 INFO [7002]: RET: username=tokslaw@chiefsoft.com -- 20:18:52.997 INFO [7002]: RET: verified= -- 20:18:52.998 INFO [7002]: COREGRADE is stopping... -- 20:18:52.998 DEBUG [7002]: Closing database connection -- 20:18:52.998 SQL [7002]: pgsql_close() -- 20:18:52.951 DEBUG [7002]: Database connection successful -- 20:18:52.951 INFO [7002]: _SERVER found -- 20:18:52.951 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 20:18:52.951 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 20:18:52.951 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=91eibkrprvgt2hnvlpg2qmr18e8a8747; _gat_gtag_UA_54829827_2=1 -- 20:18:52.951 INFO [7002]: QUERY_STRING = /auth -- 20:18:52.951 INFO [7002]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:18:52.999 INFO [7002]: COREGRADE is stopping... -- 20:18:52.999 DEBUG [7002]: Closing database connection -- 20:18:52.999 SQL [7002]: pgsql_close() -- 20:18:53.014 INFO [7002]: COREGRADE is starting... -- 20:18:53.014 INFO [7002]: Version from config: 1.0 -- 20:18:53.014 DEBUG [7002]: Connecting to database... -- 20:18:53.014 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:18:53.014 SQL [7002]: pgsql_db_connect() -- 20:18:53.018 DEBUG [7002]: Database connection successful -- 20:18:53.018 INFO [7002]: _SERVER found -- 20:18:53.018 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 20:18:53.018 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 20:18:53.018 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=91eibkrprvgt2hnvlpg2qmr18e8a8747; _gat_gtag_UA_54829827_2=1 -- 20:18:53.018 INFO [7002]: QUERY_STRING = /member/index -- 20:18:53.018 INFO [7002]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:18:53.059 INFO [7002]: COREGRADE is stopping... -- 20:18:53.059 DEBUG [7002]: Closing database connection -- 20:18:53.059 SQL [7002]: pgsql_close() -- 20:18:53.576 INFO [7002]: COREGRADE is starting... -- 20:18:53.577 INFO [7002]: Version from config: 1.0 -- 20:18:53.577 DEBUG [7002]: Connecting to database... -- 20:18:53.577 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:18:53.577 SQL [7002]: pgsql_db_connect() -- 20:18:53.581 DEBUG [7002]: Database connection successful -- 20:18:53.581 INFO [7002]: _SERVER found -- 20:18:53.581 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 20:18:53.581 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 20:18:53.581 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=91eibkrprvgt2hnvlpg2qmr18e8a8747; _gat_gtag_UA_54829827_2=1 -- 20:18:53.581 INFO [7002]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:18:53.581 INFO [7002]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:18:53.592 INFO [7002]: COREGRADE is stopping... -- 20:18:53.592 DEBUG [7002]: Closing database connection -- 20:18:53.592 SQL [7002]: pgsql_close() -- 20:18:55.882 INFO [7002]: COREGRADE is starting... -- 20:18:55.882 INFO [7002]: Version from config: 1.0 -- 20:18:55.882 DEBUG [7002]: Connecting to database... -- 20:18:55.882 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:18:55.883 SQL [7002]: pgsql_db_connect() -- 20:18:55.887 DEBUG [7002]: Database connection successful -- 20:18:55.887 INFO [7002]: _SERVER found -- 20:18:55.887 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 20:18:55.887 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 20:18:55.887 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=91eibkrprvgt2hnvlpg2qmr18e8a8747; _gat_gtag_UA_54829827_2=1 -- 20:18:55.887 INFO [7002]: QUERY_STRING = /member/page -- 20:18:55.887 INFO [7002]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:18:55.929 INFO [7002]: COREGRADE is stopping... -- 20:18:55.929 DEBUG [7002]: Closing database connection -- 20:18:55.929 SQL [7002]: pgsql_close() -- 20:19:00.301 INFO [7002]: COREGRADE is starting... -- 20:19:00.301 INFO [7002]: Version from config: 1.0 -- 20:19:00.301 DEBUG [7002]: Connecting to database... -- 20:19:00.301 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:19:00.301 SQL [7002]: pgsql_db_connect() -- 20:19:00.305 DEBUG [7002]: Database connection successful -- 20:19:00.305 INFO [7002]: _SERVER found -- 20:19:00.305 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 20:19:00.305 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 20:19:00.305 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=91eibkrprvgt2hnvlpg2qmr18e8a8747; _gat_gtag_UA_54829827_2=1 -- 20:19:00.305 INFO [7002]: QUERY_STRING = /member -- 20:19:00.305 INFO [7002]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:19:00.345 INFO [7002]: COREGRADE is stopping... -- 20:19:00.345 DEBUG [7002]: Closing database connection -- 20:19:00.345 SQL [7002]: pgsql_close() -- 20:19:07.874 INFO [6929]: COREGRADE is starting... -- 20:19:07.874 INFO [6929]: Version from config: 1.0 -- 20:19:07.874 DEBUG [6929]: Connecting to database... -- 20:19:07.874 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:19:07.874 SQL [6929]: pgsql_db_connect() -- 20:19:07.878 DEBUG [6929]: Database connection successful -- 20:19:07.878 INFO [6929]: _SERVER found -- 20:19:07.878 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 20:19:07.878 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 20:19:07.878 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=bkbfadpqppnaopqpmi4ju618hqhvao2q -- 20:19:07.878 INFO [6929]: QUERY_STRING = /home/aboutus -- 20:19:07.878 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:19:07.910 INFO [6929]: COREGRADE is stopping... -- 20:19:07.910 DEBUG [6929]: Closing database connection -- 20:19:07.910 SQL [6929]: pgsql_close() -- 20:19:18.461 INFO [7005]: COREGRADE is starting... -- 20:19:18.461 INFO [7005]: Version from config: 1.0 -- 20:19:18.461 DEBUG [7005]: Connecting to database... -- 20:19:18.461 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:19:18.461 SQL [7005]: pgsql_db_connect() -- 20:19:18.465 DEBUG [7005]: Database connection successful -- 20:19:18.465 INFO [7005]: _SERVER found -- 20:19:18.465 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 20:19:18.465 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 20:19:18.465 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=91eibkrprvgt2hnvlpg2qmr18e8a8747 -- 20:19:18.465 INFO [7005]: QUERY_STRING = /member/page -- 20:19:18.465 INFO [7005]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:19:18.509 INFO [7005]: COREGRADE is stopping... -- 20:19:18.509 DEBUG [7005]: Closing database connection -- 20:19:18.509 SQL [7005]: pgsql_close() -- 20:19:35.109 INFO [12632]: COREGRADE is starting... -- 20:19:35.109 INFO [12632]: Version from config: 1.0 -- 20:19:35.109 DEBUG [12632]: Connecting to database... -- 20:19:35.110 DEBUG [12632]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:19:35.110 SQL [12632]: pgsql_db_connect() -- 20:19:35.114 DEBUG [12632]: Database connection successful -- 20:19:35.114 INFO [12632]: _SERVER found -- 20:19:35.114 INFO [12632]: REMOTE_ADDR = 10.0.0.15 -- 20:19:35.114 INFO [12632]: SERVER_NAME = oameye.works.coregrade.com -- 20:19:35.114 INFO [12632]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=91eibkrprvgt2hnvlpg2qmr18e8a8747 -- 20:19:35.114 INFO [12632]: QUERY_STRING = /member/configure -- 20:19:35.114 INFO [12632]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:19:35.157 INFO [12632]: COREGRADE is stopping... -- 20:19:35.157 DEBUG [12632]: Closing database connection -- 20:19:35.157 SQL [12632]: pgsql_close() -- 20:19:35.330 INFO [12632]: COREGRADE is starting... -- 20:19:35.330 INFO [12632]: Version from config: 1.0 -- 20:19:35.331 DEBUG [12632]: Connecting to database... -- 20:19:35.331 DEBUG [12632]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:19:35.331 SQL [12632]: pgsql_db_connect() -- 20:19:35.335 DEBUG [12632]: Database connection successful -- 20:19:35.335 INFO [12632]: _SERVER found -- 20:19:35.335 INFO [12632]: REMOTE_ADDR = 10.0.0.15 -- 20:19:35.335 INFO [12632]: SERVER_NAME = oameye.works.coregrade.com -- 20:19:35.335 INFO [12632]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=91eibkrprvgt2hnvlpg2qmr18e8a8747 -- 20:19:35.335 INFO [12632]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 20:19:35.335 INFO [12632]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:19:35.346 INFO [12632]: COREGRADE is stopping... -- 20:19:35.346 DEBUG [12632]: Closing database connection -- 20:19:35.346 SQL [12632]: pgsql_close() -- 20:19:35.948 INFO [12632]: COREGRADE is starting... -- 20:19:35.948 INFO [12632]: Version from config: 1.0 -- 20:19:35.948 DEBUG [12632]: Connecting to database... -- 20:19:35.948 DEBUG [12632]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:19:35.948 SQL [12632]: pgsql_db_connect() -- 20:19:35.952 DEBUG [12632]: Database connection successful -- 20:19:35.952 INFO [12632]: _SERVER found -- 20:19:35.952 INFO [12632]: REMOTE_ADDR = 10.0.0.15 -- 20:19:35.952 INFO [12632]: SERVER_NAME = oameye.works.coregrade.com -- 20:19:35.952 INFO [12632]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=91eibkrprvgt2hnvlpg2qmr18e8a8747 -- 20:19:35.952 INFO [12632]: QUERY_STRING = /member -- 20:19:35.952 INFO [12632]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:19:35.992 INFO [12632]: COREGRADE is stopping... -- 20:19:35.992 DEBUG [12632]: Closing database connection -- 20:19:35.992 SQL [12632]: pgsql_close() -- 20:19:44.363 INFO [7006]: COREGRADE is starting... -- 20:19:44.364 INFO [7006]: Version from config: 1.0 -- 20:19:44.364 DEBUG [7006]: Connecting to database... -- 20:19:44.364 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:19:44.364 SQL [7006]: pgsql_db_connect() -- 20:19:44.368 DEBUG [7006]: Database connection successful -- 20:19:44.368 INFO [7006]: _SERVER found -- 20:19:44.368 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 20:19:44.368 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 20:19:44.368 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=bkbfadpqppnaopqpmi4ju618hqhvao2q -- 20:19:44.368 INFO [7006]: QUERY_STRING = /home/aboutus -- 20:19:44.368 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:19:44.400 INFO [7006]: COREGRADE is stopping... -- 20:19:44.401 DEBUG [7006]: Closing database connection -- 20:19:44.401 SQL [7006]: pgsql_close() -- 20:19:53.999 INFO [12991]: COREGRADE is starting... -- 20:19:53.999 INFO [12991]: Version from config: 1.0 -- 20:19:53.999 DEBUG [12991]: Connecting to database... -- 20:19:53.999 DEBUG [12991]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:19:53.999 SQL [12991]: pgsql_db_connect() -- 20:19:54.003 DEBUG [12991]: Database connection successful -- 20:19:54.003 INFO [12991]: _SERVER found -- 20:19:54.003 INFO [12991]: REMOTE_ADDR = 10.0.0.15 -- 20:19:54.003 INFO [12991]: SERVER_NAME = oameye.works.coregrade.com -- 20:19:54.003 INFO [12991]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=91eibkrprvgt2hnvlpg2qmr18e8a8747 -- 20:19:54.003 INFO [12991]: QUERY_STRING = /member/page -- 20:19:54.003 INFO [12991]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:19:54.046 INFO [12991]: COREGRADE is stopping... -- 20:19:54.046 DEBUG [12991]: Closing database connection -- 20:19:54.046 SQL [12991]: pgsql_close() -- 20:19:54.062 INFO [12991]: COREGRADE is starting... -- 20:19:54.062 INFO [12991]: Version from config: 1.0 -- 20:19:54.062 DEBUG [12991]: Connecting to database... -- 20:19:54.062 DEBUG [12991]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:19:54.062 SQL [12991]: pgsql_db_connect() -- 20:19:54.066 DEBUG [12991]: Database connection successful -- 20:19:54.066 INFO [12991]: _SERVER found -- 20:19:54.066 INFO [12991]: REMOTE_ADDR = 10.0.0.15 -- 20:19:54.066 INFO [12991]: SERVER_NAME = oameye.works.coregrade.com -- 20:19:54.066 INFO [12991]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=91eibkrprvgt2hnvlpg2qmr18e8a8747 -- 20:19:54.066 INFO [12991]: QUERY_STRING = /member/page -- 20:19:54.066 INFO [12991]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:19:54.108 INFO [12991]: COREGRADE is stopping... -- 20:19:54.108 DEBUG [12991]: Closing database connection -- 20:19:54.108 SQL [12991]: pgsql_close() -- 20:19:54.597 INFO [12991]: COREGRADE is starting... -- 20:19:54.598 INFO [12991]: Version from config: 1.0 -- 20:19:54.598 DEBUG [12991]: Connecting to database... -- 20:19:54.598 DEBUG [12991]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:19:54.598 SQL [12991]: pgsql_db_connect() -- 20:19:54.602 DEBUG [12991]: Database connection successful -- 20:19:54.602 INFO [12991]: _SERVER found -- 20:19:54.602 INFO [12991]: REMOTE_ADDR = 10.0.0.15 -- 20:19:54.602 INFO [12991]: SERVER_NAME = oameye.works.coregrade.com -- 20:19:54.602 INFO [12991]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=91eibkrprvgt2hnvlpg2qmr18e8a8747 -- 20:19:54.602 INFO [12991]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:19:54.602 INFO [12991]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:19:54.613 INFO [12991]: COREGRADE is stopping... -- 20:19:54.613 DEBUG [12991]: Closing database connection -- 20:19:54.613 SQL [12991]: pgsql_close() -- 20:20:31.498 INFO [8318]: COREGRADE is starting... -- 20:20:31.498 INFO [8318]: Version from config: 1.0 -- 20:20:31.498 DEBUG [8318]: Connecting to database... -- 20:20:31.498 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:20:31.498 SQL [8318]: pgsql_db_connect() -- 20:20:31.503 DEBUG [8318]: Database connection successful -- 20:20:31.503 INFO [8318]: _SERVER found -- 20:20:31.503 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 20:20:31.503 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 20:20:31.503 INFO [8318]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=td6q9t4ndug016ud3juv7subjbjf5moi -- 20:20:31.503 INFO [8318]: QUERY_STRING = /home/aboutus -- 20:20:31.503 INFO [8318]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:20:31.534 INFO [8318]: COREGRADE is stopping... -- 20:20:31.534 DEBUG [8318]: Closing database connection -- 20:20:31.534 SQL [8318]: pgsql_close() -- 20:20:32.078 INFO [12992]: COREGRADE is starting... -- 20:20:32.078 INFO [12992]: Version from config: 1.0 -- 20:20:32.078 DEBUG [12992]: Connecting to database... -- 20:20:32.078 DEBUG [12992]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:20:32.078 SQL [12992]: pgsql_db_connect() -- 20:20:32.082 DEBUG [12992]: Database connection successful -- 20:20:32.082 INFO [12992]: _SERVER found -- 20:20:32.082 INFO [12992]: REMOTE_ADDR = 10.0.0.15 -- 20:20:32.082 INFO [12992]: SERVER_NAME = oameye.works.coregrade.com -- 20:20:32.082 INFO [12992]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=91eibkrprvgt2hnvlpg2qmr18e8a8747 -- 20:20:32.082 INFO [12992]: QUERY_STRING = /member -- 20:20:32.082 INFO [12992]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:20:32.123 INFO [12992]: COREGRADE is stopping... -- 20:20:32.123 DEBUG [12992]: Closing database connection -- 20:20:32.123 SQL [12992]: pgsql_close() -- 20:20:32.475 INFO [12992]: COREGRADE is starting... -- 20:20:32.475 INFO [12992]: Version from config: 1.0 -- 20:20:32.475 DEBUG [12992]: Connecting to database... -- 20:20:32.475 DEBUG [12992]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:20:32.475 SQL [12992]: pgsql_db_connect() -- 20:20:32.479 DEBUG [12992]: Database connection successful -- 20:20:32.479 INFO [12992]: _SERVER found -- 20:20:32.479 INFO [12992]: REMOTE_ADDR = 10.0.0.15 -- 20:20:32.479 INFO [12992]: SERVER_NAME = oameye.works.coregrade.com -- 20:20:32.479 INFO [12992]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=91eibkrprvgt2hnvlpg2qmr18e8a8747 -- 20:20:32.479 INFO [12992]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:20:32.479 INFO [12992]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:20:32.491 INFO [12992]: COREGRADE is stopping... -- 20:20:32.491 DEBUG [12992]: Closing database connection -- 20:20:32.491 SQL [12992]: pgsql_close() -- 20:20:53.211 INFO [7004]: COREGRADE is starting... -- 20:20:53.212 INFO [7004]: Version from config: 1.0 -- 20:20:53.212 DEBUG [7004]: Connecting to database... -- 20:20:53.212 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:20:53.212 SQL [7004]: pgsql_db_connect() -- 20:20:53.216 DEBUG [7004]: Database connection successful -- 20:20:53.216 INFO [7004]: _SERVER found -- 20:20:53.216 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 20:20:53.216 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 20:20:53.216 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=91eibkrprvgt2hnvlpg2qmr18e8a8747 -- 20:20:53.216 INFO [7004]: QUERY_STRING = /member/page -- 20:20:53.216 INFO [7004]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:20:53.258 INFO [7004]: COREGRADE is stopping... -- 20:20:53.258 DEBUG [7004]: Closing database connection -- 20:20:53.258 SQL [7004]: pgsql_close() -- 20:20:53.624 INFO [7004]: COREGRADE is starting... -- 20:20:53.624 INFO [7004]: Version from config: 1.0 -- 20:20:53.624 DEBUG [7004]: Connecting to database... -- 20:20:53.624 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:20:53.624 SQL [7004]: pgsql_db_connect() -- 20:20:53.628 DEBUG [7004]: Database connection successful -- 20:20:53.628 INFO [7004]: _SERVER found -- 20:20:53.628 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 20:20:53.628 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 20:20:53.628 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=91eibkrprvgt2hnvlpg2qmr18e8a8747 -- 20:20:53.628 INFO [7004]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:20:53.628 INFO [7004]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:20:53.640 INFO [7004]: COREGRADE is stopping... -- 20:20:53.640 DEBUG [7004]: Closing database connection -- 20:20:53.640 SQL [7004]: pgsql_close() -- 20:21:13.657 INFO [6925]: COREGRADE is starting... -- 20:21:13.657 INFO [6925]: Version from config: 1.0 -- 20:21:13.657 DEBUG [6925]: Connecting to database... -- 20:21:13.657 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:21:13.657 SQL [6925]: pgsql_db_connect() -- 20:21:13.661 DEBUG [6925]: Database connection successful -- 20:21:13.661 INFO [6925]: _SERVER found -- 20:21:13.661 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 20:21:13.661 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 20:21:13.661 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=td6q9t4ndug016ud3juv7subjbjf5moi -- 20:21:13.661 INFO [6925]: QUERY_STRING = /home/aboutus -- 20:21:13.661 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:21:13.693 INFO [6925]: COREGRADE is stopping... -- 20:21:13.693 DEBUG [6925]: Closing database connection -- 20:21:13.693 SQL [6925]: pgsql_close() -- 20:21:30.964 INFO [7002]: COREGRADE is starting... -- 20:21:30.964 INFO [7002]: Version from config: 1.0 -- 20:21:30.964 DEBUG [7002]: Connecting to database... -- 20:21:30.964 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:21:30.964 SQL [7002]: pgsql_db_connect() -- 20:21:30.968 DEBUG [7002]: Database connection successful -- 20:21:30.968 INFO [7002]: _SERVER found -- 20:21:30.968 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 20:21:30.968 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 20:21:30.968 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=td6q9t4ndug016ud3juv7subjbjf5moi -- 20:21:30.968 INFO [7002]: QUERY_STRING = /home/aboutus -- 20:21:30.968 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:21:31.000 INFO [7002]: COREGRADE is stopping... -- 20:21:31.000 DEBUG [7002]: Closing database connection -- 20:21:31.000 SQL [7002]: pgsql_close() -- 20:22:04.282 INFO [6929]: COREGRADE is starting... -- 20:22:04.282 INFO [6929]: Version from config: 1.0 -- 20:22:04.282 DEBUG [6929]: Connecting to database... -- 20:22:04.282 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:22:04.282 SQL [6929]: pgsql_db_connect() -- 20:22:04.286 DEBUG [6929]: Database connection successful -- 20:22:04.286 INFO [6929]: _SERVER found -- 20:22:04.286 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 20:22:04.286 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 20:22:04.286 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=td6q9t4ndug016ud3juv7subjbjf5moi -- 20:22:04.286 INFO [6929]: QUERY_STRING = /home/aboutus -- 20:22:04.286 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:22:04.319 INFO [6929]: COREGRADE is stopping... -- 20:22:04.319 DEBUG [6929]: Closing database connection -- 20:22:04.319 SQL [6929]: pgsql_close() -- 20:22:39.670 INFO [7005]: COREGRADE is starting... -- 20:22:39.671 INFO [7005]: Version from config: 1.0 -- 20:22:39.671 DEBUG [7005]: Connecting to database... -- 20:22:39.671 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:22:39.671 SQL [7005]: pgsql_db_connect() -- 20:22:39.675 DEBUG [7005]: Database connection successful -- 20:22:39.675 INFO [7005]: _SERVER found -- 20:22:39.675 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 20:22:39.675 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 20:22:39.675 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=td6q9t4ndug016ud3juv7subjbjf5moi -- 20:22:39.675 INFO [7005]: QUERY_STRING = /home/aboutus -- 20:22:39.675 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:22:39.707 INFO [7005]: COREGRADE is stopping... -- 20:22:39.707 DEBUG [7005]: Closing database connection -- 20:22:39.707 SQL [7005]: pgsql_close() -- 20:23:06.320 INFO [12632]: COREGRADE is starting... -- 20:23:06.321 INFO [12632]: Version from config: 1.0 -- 20:23:06.321 DEBUG [12632]: Connecting to database... -- 20:23:06.321 DEBUG [12632]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:23:06.321 SQL [12632]: pgsql_db_connect() -- 20:23:06.325 DEBUG [12632]: Database connection successful -- 20:23:06.325 INFO [12632]: _SERVER found -- 20:23:06.325 INFO [12632]: REMOTE_ADDR = 10.0.0.15 -- 20:23:06.325 INFO [12632]: SERVER_NAME = oameye.works.coregrade.com -- 20:23:06.325 INFO [12632]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=td6q9t4ndug016ud3juv7subjbjf5moi -- 20:23:06.325 INFO [12632]: QUERY_STRING = /home/aboutus -- 20:23:06.325 INFO [12632]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:23:06.357 INFO [12632]: COREGRADE is stopping... -- 20:23:06.357 DEBUG [12632]: Closing database connection -- 20:23:06.357 SQL [12632]: pgsql_close() -- 20:23:07.474 INFO [12632]: COREGRADE is starting... -- 20:23:07.474 INFO [12632]: Version from config: 1.0 -- 20:23:07.474 DEBUG [12632]: Connecting to database... -- 20:23:07.474 DEBUG [12632]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:23:07.474 SQL [12632]: pgsql_db_connect() -- 20:23:07.478 DEBUG [12632]: Database connection successful -- 20:23:07.478 INFO [12632]: _SERVER found -- 20:23:07.478 INFO [12632]: REMOTE_ADDR = 10.0.0.15 -- 20:23:07.478 INFO [12632]: SERVER_NAME = oameye.works.coregrade.com -- 20:23:07.478 INFO [12632]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=td6q9t4ndug016ud3juv7subjbjf5moi -- 20:23:07.478 INFO [12632]: QUERY_STRING = /home/aboutus -- 20:23:07.478 INFO [12632]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:23:07.509 INFO [12632]: COREGRADE is stopping... -- 20:23:07.509 DEBUG [12632]: Closing database connection -- 20:23:07.509 SQL [12632]: pgsql_close() -- 20:23:32.673 INFO [7006]: COREGRADE is starting... -- 20:23:32.673 INFO [7006]: Version from config: 1.0 -- 20:23:32.673 DEBUG [7006]: Connecting to database... -- 20:23:32.673 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:23:32.673 SQL [7006]: pgsql_db_connect() -- 20:23:32.677 DEBUG [7006]: Database connection successful -- 20:23:32.677 INFO [7006]: _SERVER found -- 20:23:32.677 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 20:23:32.677 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 20:23:32.677 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=td6q9t4ndug016ud3juv7subjbjf5moi -- 20:23:32.677 INFO [7006]: QUERY_STRING = /home/aboutus -- 20:23:32.677 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:23:32.709 INFO [7006]: COREGRADE is stopping... -- 20:23:32.709 DEBUG [7006]: Closing database connection -- 20:23:32.710 SQL [7006]: pgsql_close() -- 20:23:52.552 INFO [12991]: COREGRADE is starting... -- 20:23:52.552 INFO [12991]: Version from config: 1.0 -- 20:23:52.552 DEBUG [12991]: Connecting to database... -- 20:23:52.552 DEBUG [12991]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:23:52.552 SQL [12991]: pgsql_db_connect() -- 20:23:52.556 DEBUG [12991]: Database connection successful -- 20:23:52.556 INFO [12991]: _SERVER found -- 20:23:52.556 INFO [12991]: REMOTE_ADDR = 10.0.0.15 -- 20:23:52.556 INFO [12991]: SERVER_NAME = oameye.works.coregrade.com -- 20:23:52.556 INFO [12991]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=td6q9t4ndug016ud3juv7subjbjf5moi -- 20:23:52.556 INFO [12991]: QUERY_STRING = /home/aboutus -- 20:23:52.556 INFO [12991]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:23:52.590 INFO [12991]: COREGRADE is stopping... -- 20:23:52.590 DEBUG [12991]: Closing database connection -- 20:23:52.590 SQL [12991]: pgsql_close() -- 20:24:39.720 INFO [8318]: COREGRADE is starting... -- 20:24:39.721 INFO [8318]: Version from config: 1.0 -- 20:24:39.721 DEBUG [8318]: Connecting to database... -- 20:24:39.721 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:24:39.721 SQL [8318]: pgsql_db_connect() -- 20:24:39.725 DEBUG [8318]: Database connection successful -- 20:24:39.725 INFO [8318]: _SERVER found -- 20:24:39.725 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 20:24:39.725 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 20:24:39.725 INFO [8318]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=td6q9t4ndug016ud3juv7subjbjf5moi -- 20:24:39.725 INFO [8318]: QUERY_STRING = /home/aboutus -- 20:24:39.725 INFO [8318]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:24:39.756 INFO [8318]: COREGRADE is stopping... -- 20:24:39.756 DEBUG [8318]: Closing database connection -- 20:24:39.756 SQL [8318]: pgsql_close() -- 20:25:16.332 INFO [12992]: COREGRADE is starting... -- 20:25:16.332 INFO [12992]: Version from config: 1.0 -- 20:25:16.332 DEBUG [12992]: Connecting to database... -- 20:25:16.332 DEBUG [12992]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:25:16.332 SQL [12992]: pgsql_db_connect() -- 20:25:16.336 DEBUG [12992]: Database connection successful -- 20:25:16.336 INFO [12992]: _SERVER found -- 20:25:16.336 INFO [12992]: REMOTE_ADDR = 10.0.0.15 -- 20:25:16.336 INFO [12992]: SERVER_NAME = oameye.works.coregrade.com -- 20:25:16.336 INFO [12992]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=td6q9t4ndug016ud3juv7subjbjf5moi -- 20:25:16.336 INFO [12992]: QUERY_STRING = /home/aboutus -- 20:25:16.336 INFO [12992]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:25:16.368 INFO [12992]: COREGRADE is stopping... -- 20:25:16.368 DEBUG [12992]: Closing database connection -- 20:25:16.368 SQL [12992]: pgsql_close() -- 20:25:34.937 INFO [7004]: COREGRADE is starting... -- 20:25:34.938 INFO [7004]: Version from config: 1.0 -- 20:25:34.938 DEBUG [7004]: Connecting to database... -- 20:25:34.938 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:25:34.938 SQL [7004]: pgsql_db_connect() -- 20:25:34.942 DEBUG [7004]: Database connection successful -- 20:25:34.942 INFO [7004]: _SERVER found -- 20:25:34.942 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 20:25:34.942 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 20:25:34.942 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=0u5b17s2n78le4jg6c8or5885kmr15kq -- 20:25:34.942 INFO [7004]: QUERY_STRING = /home/aboutus -- 20:25:34.942 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:25:34.974 INFO [7004]: COREGRADE is stopping... -- 20:25:34.974 DEBUG [7004]: Closing database connection -- 20:25:34.974 SQL [7004]: pgsql_close() -- 20:26:57.699 INFO [6925]: COREGRADE is starting... -- 20:26:57.699 INFO [6925]: Version from config: 1.0 -- 20:26:57.699 DEBUG [6925]: Connecting to database... -- 20:26:57.699 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:26:57.699 SQL [6925]: pgsql_db_connect() -- 20:26:57.703 DEBUG [6925]: Database connection successful -- 20:26:57.703 INFO [6925]: _SERVER found -- 20:26:57.703 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 20:26:57.703 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 20:26:57.703 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=0u5b17s2n78le4jg6c8or5885kmr15kq -- 20:26:57.703 INFO [6925]: QUERY_STRING = /home/aboutus -- 20:26:57.703 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:26:57.736 INFO [6925]: COREGRADE is stopping... -- 20:26:57.736 DEBUG [6925]: Closing database connection -- 20:26:57.736 SQL [6925]: pgsql_close() -- 20:28:26.864 INFO [7002]: COREGRADE is starting... -- 20:28:26.864 INFO [7002]: Version from config: 1.0 -- 20:28:26.864 DEBUG [7002]: Connecting to database... -- 20:28:26.864 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:28:26.864 SQL [7002]: pgsql_db_connect() -- 20:28:26.869 DEBUG [7002]: Database connection successful -- 20:28:26.869 INFO [7002]: _SERVER found -- 20:28:26.869 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 20:28:26.869 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 20:28:26.869 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=0u5b17s2n78le4jg6c8or5885kmr15kq -- 20:28:26.869 INFO [7002]: QUERY_STRING = /home/aboutus -- 20:28:26.869 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:28:26.901 INFO [7002]: COREGRADE is stopping... -- 20:28:26.901 DEBUG [7002]: Closing database connection -- 20:28:26.901 SQL [7002]: pgsql_close() -- 20:29:17.958 INFO [6929]: COREGRADE is starting... -- 20:29:17.958 INFO [6929]: Version from config: 1.0 -- 20:29:17.958 DEBUG [6929]: Connecting to database... -- 20:29:17.958 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:29:17.958 SQL [6929]: pgsql_db_connect() -- 20:29:17.962 DEBUG [6929]: Database connection successful -- 20:29:17.963 INFO [6929]: _SERVER found -- 20:29:17.963 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 20:29:17.963 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 20:29:17.963 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=0u5b17s2n78le4jg6c8or5885kmr15kq -- 20:29:17.963 INFO [6929]: QUERY_STRING = /home/aboutus -- 20:29:17.963 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:29:17.995 INFO [6929]: COREGRADE is stopping... -- 20:29:17.995 DEBUG [6929]: Closing database connection -- 20:29:17.995 SQL [6929]: pgsql_close() -- 20:29:54.714 INFO [7005]: COREGRADE is starting... -- 20:29:54.714 INFO [7005]: Version from config: 1.0 -- 20:29:54.714 DEBUG [7005]: Connecting to database... -- 20:29:54.714 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:29:54.714 SQL [7005]: pgsql_db_connect() -- 20:29:54.718 DEBUG [7005]: Database connection successful -- 20:29:54.718 INFO [7005]: _SERVER found -- 20:29:54.718 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 20:29:54.718 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 20:29:54.718 INFO [7005]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=0u5b17s2n78le4jg6c8or5885kmr15kq -- 20:29:54.718 INFO [7005]: QUERY_STRING = /home/aboutus -- 20:29:54.718 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:29:54.751 INFO [7005]: COREGRADE is stopping... -- 20:29:54.751 DEBUG [7005]: Closing database connection -- 20:29:54.751 SQL [7005]: pgsql_close() -- 20:30:44.623 INFO [12632]: COREGRADE is starting... -- 20:30:44.624 INFO [12632]: Version from config: 1.0 -- 20:30:44.624 DEBUG [12632]: Connecting to database... -- 20:30:44.624 DEBUG [12632]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:30:44.624 SQL [12632]: pgsql_db_connect() -- 20:30:44.628 DEBUG [12632]: Database connection successful -- 20:30:44.628 INFO [12632]: _SERVER found -- 20:30:44.628 INFO [12632]: REMOTE_ADDR = 10.0.0.15 -- 20:30:44.628 INFO [12632]: SERVER_NAME = oameye.works.coregrade.com -- 20:30:44.628 INFO [12632]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=0u5b17s2n78le4jg6c8or5885kmr15kq -- 20:30:44.628 INFO [12632]: QUERY_STRING = /home/aboutus -- 20:30:44.628 INFO [12632]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:30:44.661 INFO [12632]: COREGRADE is stopping... -- 20:30:44.661 DEBUG [12632]: Closing database connection -- 20:30:44.661 SQL [12632]: pgsql_close() -- 20:31:35.442 INFO [7006]: COREGRADE is starting... -- 20:31:35.442 INFO [7006]: Version from config: 1.0 -- 20:31:35.442 DEBUG [7006]: Connecting to database... -- 20:31:35.442 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:31:35.442 SQL [7006]: pgsql_db_connect() -- 20:31:35.446 DEBUG [7006]: Database connection successful -- 20:31:35.446 INFO [7006]: _SERVER found -- 20:31:35.446 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 20:31:35.446 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 20:31:35.446 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6865somim7s4b1rjvt8r69ltu98dn37q -- 20:31:35.446 INFO [7006]: QUERY_STRING = /home/aboutus -- 20:31:35.446 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:31:35.479 INFO [7006]: COREGRADE is stopping... -- 20:31:35.479 DEBUG [7006]: Closing database connection -- 20:31:35.479 SQL [7006]: pgsql_close() -- 20:32:41.794 INFO [12991]: COREGRADE is starting... -- 20:32:41.794 INFO [12991]: Version from config: 1.0 -- 20:32:41.794 DEBUG [12991]: Connecting to database... -- 20:32:41.794 DEBUG [12991]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:32:41.795 SQL [12991]: pgsql_db_connect() -- 20:32:41.799 DEBUG [12991]: Database connection successful -- 20:32:41.799 INFO [12991]: _SERVER found -- 20:32:41.799 INFO [12991]: REMOTE_ADDR = 10.0.0.15 -- 20:32:41.799 INFO [12991]: SERVER_NAME = oameye.works.coregrade.com -- 20:32:41.799 INFO [12991]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6865somim7s4b1rjvt8r69ltu98dn37q -- 20:32:41.799 INFO [12991]: QUERY_STRING = /home/aboutus -- 20:32:41.799 INFO [12991]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:32:41.831 INFO [12991]: COREGRADE is stopping... -- 20:32:41.831 DEBUG [12991]: Closing database connection -- 20:32:41.831 SQL [12991]: pgsql_close() -- 20:32:44.119 INFO [12991]: COREGRADE is starting... -- 20:32:44.119 INFO [12991]: Version from config: 1.0 -- 20:32:44.119 DEBUG [12991]: Connecting to database... -- 20:32:44.119 DEBUG [12991]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:32:44.119 SQL [12991]: pgsql_db_connect() -- 20:32:44.123 DEBUG [12991]: Database connection successful -- 20:32:44.123 INFO [12991]: _SERVER found -- 20:32:44.123 INFO [12991]: REMOTE_ADDR = 10.0.0.15 -- 20:32:44.123 INFO [12991]: SERVER_NAME = oameye.works.coregrade.com -- 20:32:44.123 INFO [12991]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6865somim7s4b1rjvt8r69ltu98dn37q -- 20:32:44.123 INFO [12991]: QUERY_STRING = /home/aboutus -- 20:32:44.123 INFO [12991]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:32:44.154 INFO [12991]: COREGRADE is stopping... -- 20:32:44.154 DEBUG [12991]: Closing database connection -- 20:32:44.154 SQL [12991]: pgsql_close() -- 20:33:24.961 INFO [8318]: COREGRADE is starting... -- 20:33:24.961 INFO [8318]: Version from config: 1.0 -- 20:33:24.961 DEBUG [8318]: Connecting to database... -- 20:33:24.961 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:33:24.961 SQL [8318]: pgsql_db_connect() -- 20:33:24.965 DEBUG [8318]: Database connection successful -- 20:33:24.965 INFO [8318]: _SERVER found -- 20:33:24.965 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 20:33:24.965 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 20:33:24.965 INFO [8318]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6865somim7s4b1rjvt8r69ltu98dn37q -- 20:33:24.965 INFO [8318]: QUERY_STRING = /home/aboutus -- 20:33:24.965 INFO [8318]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:33:24.997 INFO [8318]: COREGRADE is stopping... -- 20:33:24.997 DEBUG [8318]: Closing database connection -- 20:33:24.997 SQL [8318]: pgsql_close() -- 20:34:05.628 INFO [12992]: COREGRADE is starting... -- 20:34:05.628 INFO [12992]: Version from config: 1.0 -- 20:34:05.628 DEBUG [12992]: Connecting to database... -- 20:34:05.628 DEBUG [12992]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:34:05.628 SQL [12992]: pgsql_db_connect() -- 20:34:05.632 DEBUG [12992]: Database connection successful -- 20:34:05.632 INFO [12992]: _SERVER found -- 20:34:05.632 INFO [12992]: REMOTE_ADDR = 10.0.0.15 -- 20:34:05.632 INFO [12992]: SERVER_NAME = oameye.works.coregrade.com -- 20:34:05.632 INFO [12992]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6865somim7s4b1rjvt8r69ltu98dn37q -- 20:34:05.632 INFO [12992]: QUERY_STRING = /home/aboutus -- 20:34:05.632 INFO [12992]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:34:05.664 INFO [12992]: COREGRADE is stopping... -- 20:34:05.664 DEBUG [12992]: Closing database connection -- 20:34:05.664 SQL [12992]: pgsql_close() -- 20:34:19.978 INFO [7004]: COREGRADE is starting... -- 20:34:19.978 INFO [7004]: Version from config: 1.0 -- 20:34:19.978 DEBUG [7004]: Connecting to database... -- 20:34:19.978 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:34:19.978 SQL [7004]: pgsql_db_connect() -- 20:34:19.982 DEBUG [7004]: Database connection successful -- 20:34:19.982 INFO [7004]: _SERVER found -- 20:34:19.982 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 20:34:19.982 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 20:34:19.982 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561 -- 20:34:19.982 INFO [7004]: QUERY_STRING = -- 20:34:19.982 INFO [7004]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 20:34:20.015 INFO [7004]: COREGRADE is stopping... -- 20:34:20.015 DEBUG [7004]: Closing database connection -- 20:34:20.015 SQL [7004]: pgsql_close() -- 20:34:20.204 INFO [7004]: COREGRADE is starting... -- 20:34:20.205 INFO [7004]: Version from config: 1.0 -- 20:34:20.205 DEBUG [7004]: Connecting to database... -- 20:34:20.205 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:34:20.205 SQL [7004]: pgsql_db_connect() -- 20:34:20.209 DEBUG [7004]: Database connection successful -- 20:34:20.209 INFO [7004]: _SERVER found -- 20:34:20.209 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 20:34:20.209 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 20:34:20.209 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=h590sqf1jmfdpf1cn36ab3bmjvljtpmo -- 20:34:20.209 INFO [7004]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:34:20.209 INFO [7004]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 20:34:20.220 INFO [7004]: COREGRADE is stopping... -- 20:34:20.220 DEBUG [7004]: Closing database connection -- 20:34:20.220 SQL [7004]: pgsql_close() -- 20:34:25.147 INFO [7004]: COREGRADE is starting... -- 20:34:25.148 INFO [7004]: Version from config: 1.0 -- 20:34:25.148 DEBUG [7004]: Connecting to database... -- 20:34:25.148 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:34:25.148 SQL [7004]: pgsql_db_connect() -- 20:34:25.152 DEBUG [7004]: Database connection successful -- 20:34:25.152 INFO [7004]: _SERVER found -- 20:34:25.152 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 20:34:25.152 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 20:34:25.152 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=h590sqf1jmfdpf1cn36ab3bmjvljtpmo; _gat_gtag_UA_54829827_2=1 -- 20:34:25.152 INFO [7004]: QUERY_STRING = /home/aboutus -- 20:34:25.152 INFO [7004]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 20:34:25.183 INFO [7004]: COREGRADE is stopping... -- 20:34:25.184 DEBUG [7004]: Closing database connection -- 20:34:25.184 SQL [7004]: pgsql_close() -- 20:35:20.977 INFO [6925]: COREGRADE is starting... -- 20:35:20.978 INFO [6925]: Version from config: 1.0 -- 20:35:20.978 DEBUG [6925]: Connecting to database... -- 20:35:20.978 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:35:20.978 SQL [6925]: pgsql_db_connect() -- 20:35:20.983 DEBUG [6925]: Database connection successful -- 20:35:20.983 INFO [6925]: _SERVER found -- 20:35:20.983 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 20:35:20.983 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 20:35:20.983 INFO [6925]: HTTP_COOKIE = ci_session=e4btsq7s5n75t7062casrbk6lpcptd3v; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 20:35:20.983 INFO [6925]: QUERY_STRING = /home/aboutus -- 20:35:20.983 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:35:21.016 INFO [6925]: COREGRADE is stopping... -- 20:35:21.016 DEBUG [6925]: Closing database connection -- 20:35:21.016 SQL [6925]: pgsql_close() -- 20:35:21.803 INFO [6925]: COREGRADE is starting... -- 20:35:21.803 INFO [6925]: Version from config: 1.0 -- 20:35:21.803 DEBUG [6925]: Connecting to database... -- 20:35:21.803 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:35:21.803 SQL [6925]: pgsql_db_connect() -- 20:35:21.807 DEBUG [6925]: Database connection successful -- 20:35:21.807 INFO [6925]: _SERVER found -- 20:35:21.807 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 20:35:21.807 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 20:35:21.807 INFO [6925]: HTTP_COOKIE = ci_session=c398g62u51hassndmc7jmn3sehl7mpv7; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 20:35:21.807 INFO [6925]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 20:35:21.807 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:35:21.818 INFO [6925]: COREGRADE is stopping... -- 20:35:21.818 DEBUG [6925]: Closing database connection -- 20:35:21.818 SQL [6925]: pgsql_close() -- 20:50:18.755 INFO [7002]: COREGRADE is starting... -- 20:50:18.755 INFO [7002]: Version from config: 1.0 -- 20:50:18.755 DEBUG [7002]: Connecting to database... -- 20:50:18.755 DEBUG [7002]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:50:18.755 SQL [7002]: pgsql_db_connect() -- 20:50:18.760 DEBUG [7002]: Database connection successful -- 20:50:18.760 INFO [7002]: _SERVER found -- 20:50:18.760 INFO [7002]: REMOTE_ADDR = 10.0.0.15 -- 20:50:18.760 INFO [7002]: SERVER_NAME = oameye.works.coregrade.com -- 20:50:18.760 INFO [7002]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=6865somim7s4b1rjvt8r69ltu98dn37q -- 20:50:18.760 INFO [7002]: QUERY_STRING = /home/aboutus -- 20:50:18.760 INFO [7002]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:50:18.794 INFO [7002]: COREGRADE is stopping... -- 20:50:18.794 DEBUG [7002]: Closing database connection -- 20:50:18.794 SQL [7002]: pgsql_close() -- 21:29:24.243 INFO [6929]: COREGRADE is starting... -- 21:29:24.243 INFO [7005]: COREGRADE is starting... -- 21:29:24.244 INFO [6929]: Version from config: 1.0 -- 21:29:24.244 DEBUG [6929]: Connecting to database... -- 21:29:24.244 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:24.244 INFO [7005]: Version from config: 1.0 -- 21:29:24.244 DEBUG [7005]: Connecting to database... -- 21:29:24.244 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:24.244 SQL [6929]: pgsql_db_connect() -- 21:29:24.244 SQL [7005]: pgsql_db_connect() -- 21:29:24.251 DEBUG [7005]: Database connection successful -- 21:29:24.251 INFO [7005]: _SERVER found -- 21:29:24.251 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 21:29:24.251 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:24.251 INFO [7005]: HTTP_COOKIE = ci_session=c398g62u51hassndmc7jmn3sehl7mpv7; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 21:29:24.251 INFO [7005]: QUERY_STRING = /home/aboutus -- 21:29:24.251 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:29:24.289 INFO [7005]: COREGRADE is stopping... -- 21:29:24.289 DEBUG [7005]: Closing database connection -- 21:29:24.289 SQL [7005]: pgsql_close() -- 21:29:24.251 DEBUG [6929]: Database connection successful -- 21:29:24.251 INFO [6929]: _SERVER found -- 21:29:24.251 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 21:29:24.251 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:24.251 INFO [6929]: HTTP_COOKIE = ci_session=c398g62u51hassndmc7jmn3sehl7mpv7; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 21:29:24.251 INFO [6929]: QUERY_STRING = /home/aboutus -- 21:29:24.251 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:29:24.292 INFO [6929]: COREGRADE is stopping... -- 21:29:24.292 DEBUG [6929]: Closing database connection -- 21:29:24.292 SQL [6929]: pgsql_close() -- 21:29:25.012 INFO [6929]: COREGRADE is starting... -- 21:29:25.012 INFO [6929]: Version from config: 1.0 -- 21:29:25.012 DEBUG [6929]: Connecting to database... -- 21:29:25.012 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:25.012 SQL [6929]: pgsql_db_connect() -- 21:29:25.016 DEBUG [6929]: Database connection successful -- 21:29:25.016 INFO [6929]: _SERVER found -- 21:29:25.016 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 21:29:25.016 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:25.016 INFO [6929]: HTTP_COOKIE = ci_session=9npjcdmcaaehd16i3ckbi35i8fcmlc4c; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 21:29:25.016 INFO [6929]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:29:25.016 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:29:25.028 INFO [6929]: COREGRADE is stopping... -- 21:29:25.028 DEBUG [6929]: Closing database connection -- 21:29:25.028 SQL [6929]: pgsql_close() -- 21:29:25.079 INFO [6929]: COREGRADE is starting... -- 21:29:25.079 INFO [6929]: Version from config: 1.0 -- 21:29:25.079 DEBUG [6929]: Connecting to database... -- 21:29:25.079 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:25.079 SQL [6929]: pgsql_db_connect() -- 21:29:25.083 DEBUG [6929]: Database connection successful -- 21:29:25.083 INFO [6929]: _SERVER found -- 21:29:25.083 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 21:29:25.083 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:25.083 INFO [6929]: HTTP_COOKIE = ci_session=9npjcdmcaaehd16i3ckbi35i8fcmlc4c; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 21:29:25.083 INFO [6929]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:29:25.083 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:29:25.094 INFO [6929]: COREGRADE is stopping... -- 21:29:25.094 DEBUG [6929]: Closing database connection -- 21:29:25.094 SQL [6929]: pgsql_close() -- 21:32:38.713 INFO [12632]: COREGRADE is starting... -- 21:32:38.713 INFO [12632]: Version from config: 1.0 -- 21:32:38.713 DEBUG [12632]: Connecting to database... -- 21:32:38.713 DEBUG [12632]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:32:38.713 SQL [12632]: pgsql_db_connect() -- 21:32:38.717 DEBUG [12632]: Database connection successful -- 21:32:38.717 INFO [12632]: _SERVER found -- 21:32:38.717 INFO [12632]: REMOTE_ADDR = 10.0.0.15 -- 21:32:38.717 INFO [12632]: SERVER_NAME = oameye.works.coregrade.com -- 21:32:38.717 INFO [12632]: HTTP_COOKIE = ci_session=9npjcdmcaaehd16i3ckbi35i8fcmlc4c; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 21:32:38.717 INFO [12632]: QUERY_STRING = /home/aboutus -- 21:32:38.717 INFO [12632]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:32:38.753 INFO [12632]: COREGRADE is stopping... -- 21:32:38.753 DEBUG [12632]: Closing database connection -- 21:32:38.753 SQL [12632]: pgsql_close() -- 21:32:39.048 INFO [12632]: COREGRADE is starting... -- 21:32:39.049 INFO [12632]: Version from config: 1.0 -- 21:32:39.049 DEBUG [12632]: Connecting to database... -- 21:32:39.049 DEBUG [12632]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:32:39.049 SQL [12632]: pgsql_db_connect() -- 21:32:39.053 DEBUG [12632]: Database connection successful -- 21:32:39.053 INFO [12632]: _SERVER found -- 21:32:39.053 INFO [12632]: REMOTE_ADDR = 10.0.0.15 -- 21:32:39.053 INFO [12632]: SERVER_NAME = oameye.works.coregrade.com -- 21:32:39.053 INFO [12632]: HTTP_COOKIE = ci_session=9npjcdmcaaehd16i3ckbi35i8fcmlc4c; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 21:32:39.053 INFO [12632]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:32:39.053 INFO [12632]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:32:39.064 INFO [12632]: COREGRADE is stopping... -- 21:32:39.064 DEBUG [12632]: Closing database connection -- 21:32:39.064 SQL [12632]: pgsql_close() -- 21:34:03.076 INFO [12991]: COREGRADE is starting... -- 21:34:03.076 INFO [12991]: Version from config: 1.0 -- 21:34:03.076 DEBUG [12991]: Connecting to database... -- 21:34:03.076 DEBUG [12991]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:34:03.077 SQL [12991]: pgsql_db_connect() -- 21:34:03.081 DEBUG [12991]: Database connection successful -- 21:34:03.081 INFO [12991]: _SERVER found -- 21:34:03.081 INFO [12991]: REMOTE_ADDR = 10.0.0.15 -- 21:34:03.081 INFO [12991]: SERVER_NAME = oameye.works.coregrade.com -- 21:34:03.081 INFO [12991]: HTTP_COOKIE = ci_session=9npjcdmcaaehd16i3ckbi35i8fcmlc4c; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 21:34:03.081 INFO [12991]: QUERY_STRING = /home/aboutus -- 21:34:03.081 INFO [12991]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:34:03.115 INFO [12991]: COREGRADE is stopping... -- 21:34:03.115 DEBUG [12991]: Closing database connection -- 21:34:03.115 SQL [12991]: pgsql_close() -- 21:34:03.334 INFO [12991]: COREGRADE is starting... -- 21:34:03.334 INFO [12991]: Version from config: 1.0 -- 21:34:03.334 DEBUG [12991]: Connecting to database... -- 21:34:03.334 DEBUG [12991]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:34:03.334 SQL [12991]: pgsql_db_connect() -- 21:34:03.338 DEBUG [12991]: Database connection successful -- 21:34:03.338 INFO [12991]: _SERVER found -- 21:34:03.338 INFO [12991]: REMOTE_ADDR = 10.0.0.15 -- 21:34:03.338 INFO [12991]: SERVER_NAME = oameye.works.coregrade.com -- 21:34:03.338 INFO [12991]: HTTP_COOKIE = ci_session=9npjcdmcaaehd16i3ckbi35i8fcmlc4c; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 21:34:03.338 INFO [12991]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:34:03.338 INFO [12991]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:34:03.350 INFO [12991]: COREGRADE is stopping... -- 21:34:03.350 DEBUG [12991]: Closing database connection -- 21:34:03.350 SQL [12991]: pgsql_close() -- 21:36:14.094 INFO [7004]: COREGRADE is starting... -- 21:36:14.095 INFO [7004]: Version from config: 1.0 -- 21:36:14.095 DEBUG [7004]: Connecting to database... -- 21:36:14.095 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:36:14.095 SQL [7004]: pgsql_db_connect() -- 21:36:14.099 DEBUG [7004]: Database connection successful -- 21:36:14.099 INFO [7004]: _SERVER found -- 21:36:14.099 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 21:36:14.099 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 21:36:14.099 INFO [7004]: HTTP_COOKIE = ci_session=9npjcdmcaaehd16i3ckbi35i8fcmlc4c; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 21:36:14.099 INFO [7004]: QUERY_STRING = /home/aboutus -- 21:36:14.099 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:36:14.133 INFO [7004]: COREGRADE is stopping... -- 21:36:14.133 DEBUG [7004]: Closing database connection -- 21:36:14.133 SQL [7004]: pgsql_close() -- 21:36:14.279 INFO [6925]: COREGRADE is starting... -- 21:36:14.279 INFO [6925]: Version from config: 1.0 -- 21:36:14.279 DEBUG [6925]: Connecting to database... -- 21:36:14.280 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:36:14.280 SQL [6925]: pgsql_db_connect() -- 21:36:14.284 DEBUG [6925]: Database connection successful -- 21:36:14.284 INFO [6925]: _SERVER found -- 21:36:14.284 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 21:36:14.284 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 21:36:14.284 INFO [6925]: HTTP_COOKIE = ci_session=sehos56n3vmn7a7nru8c0l19mjfqgct8; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 21:36:14.284 INFO [6925]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:36:14.284 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:36:14.296 INFO [6925]: COREGRADE is stopping... -- 21:36:14.296 DEBUG [6925]: Closing database connection -- 21:36:14.296 SQL [6925]: pgsql_close() -- 21:44:36.873 INFO [6929]: COREGRADE is starting... -- 21:44:36.873 INFO [6929]: Version from config: 1.0 -- 21:44:36.873 DEBUG [6929]: Connecting to database... -- 21:44:36.873 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:44:36.873 SQL [6929]: pgsql_db_connect() -- 21:44:36.878 DEBUG [6929]: Database connection successful -- 21:44:36.878 INFO [6929]: _SERVER found -- 21:44:36.878 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 21:44:36.878 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 21:44:36.878 INFO [6929]: HTTP_COOKIE = ci_session=sehos56n3vmn7a7nru8c0l19mjfqgct8; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 21:44:36.878 INFO [6929]: QUERY_STRING = /home/aboutus -- 21:44:36.878 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:44:36.912 INFO [6929]: COREGRADE is stopping... -- 21:44:36.912 DEBUG [6929]: Closing database connection -- 21:44:36.912 SQL [6929]: pgsql_close() -- 21:44:37.076 INFO [12991]: COREGRADE is starting... -- 21:44:37.077 INFO [12991]: Version from config: 1.0 -- 21:44:37.077 DEBUG [12991]: Connecting to database... -- 21:44:37.077 DEBUG [12991]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:44:37.077 SQL [12991]: pgsql_db_connect() -- 21:44:37.081 DEBUG [12991]: Database connection successful -- 21:44:37.081 INFO [12991]: _SERVER found -- 21:44:37.081 INFO [12991]: REMOTE_ADDR = 10.0.0.15 -- 21:44:37.081 INFO [12991]: SERVER_NAME = oameye.works.coregrade.com -- 21:44:37.081 INFO [12991]: HTTP_COOKIE = ci_session=qjmscr81ih70o33f5lo3q9hh3a9agntt; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 21:44:37.081 INFO [12991]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:44:37.081 INFO [12991]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:44:37.093 INFO [12991]: COREGRADE is stopping... -- 21:44:37.093 DEBUG [12991]: Closing database connection -- 21:44:37.093 SQL [12991]: pgsql_close() -- 21:46:25.635 INFO [12992]: COREGRADE is starting... -- 21:46:25.635 INFO [12992]: Version from config: 1.0 -- 21:46:25.635 DEBUG [12992]: Connecting to database... -- 21:46:25.635 DEBUG [12992]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:46:25.635 SQL [12992]: pgsql_db_connect() -- 21:46:25.640 DEBUG [12992]: Database connection successful -- 21:46:25.640 INFO [12992]: _SERVER found -- 21:46:25.640 INFO [12992]: REMOTE_ADDR = 10.0.0.15 -- 21:46:25.640 INFO [12992]: SERVER_NAME = oameye.works.coregrade.com -- 21:46:25.640 INFO [12992]: HTTP_COOKIE = ci_session=qjmscr81ih70o33f5lo3q9hh3a9agntt; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 21:46:25.640 INFO [12992]: QUERY_STRING = /home/aboutus -- 21:46:25.640 INFO [12992]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:46:25.673 INFO [12992]: COREGRADE is stopping... -- 21:46:25.673 DEBUG [12992]: Closing database connection -- 21:46:25.673 SQL [12992]: pgsql_close() -- 21:46:25.863 INFO [6925]: COREGRADE is starting... -- 21:46:25.863 INFO [6925]: Version from config: 1.0 -- 21:46:25.863 DEBUG [6925]: Connecting to database... -- 21:46:25.863 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:46:25.863 SQL [6925]: pgsql_db_connect() -- 21:46:25.868 DEBUG [6925]: Database connection successful -- 21:46:25.868 INFO [6925]: _SERVER found -- 21:46:25.868 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 21:46:25.868 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 21:46:25.868 INFO [6925]: HTTP_COOKIE = ci_session=qjmscr81ih70o33f5lo3q9hh3a9agntt; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 21:46:25.868 INFO [6925]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:46:25.868 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:46:25.880 INFO [6925]: COREGRADE is stopping... -- 21:46:25.880 DEBUG [6925]: Closing database connection -- 21:46:25.880 SQL [6925]: pgsql_close() -- 21:49:37.795 INFO [7005]: COREGRADE is starting... -- 21:49:37.795 INFO [7005]: Version from config: 1.0 -- 21:49:37.795 DEBUG [7005]: Connecting to database... -- 21:49:37.795 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:49:37.795 SQL [7005]: pgsql_db_connect() -- 21:49:37.799 DEBUG [7005]: Database connection successful -- 21:49:37.799 INFO [7005]: _SERVER found -- 21:49:37.799 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 21:49:37.799 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 21:49:37.799 INFO [7005]: HTTP_COOKIE = ci_session=qjmscr81ih70o33f5lo3q9hh3a9agntt; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 21:49:37.799 INFO [7005]: QUERY_STRING = /home/aboutus -- 21:49:37.799 INFO [7005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:49:37.833 INFO [7005]: COREGRADE is stopping... -- 21:49:37.833 DEBUG [7005]: Closing database connection -- 21:49:37.833 SQL [7005]: pgsql_close() -- 21:49:38.090 INFO [7006]: COREGRADE is starting... -- 21:49:38.091 INFO [7006]: Version from config: 1.0 -- 21:49:38.091 DEBUG [7006]: Connecting to database... -- 21:49:38.091 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:49:38.091 SQL [7006]: pgsql_db_connect() -- 21:49:38.095 DEBUG [7006]: Database connection successful -- 21:49:38.095 INFO [7006]: _SERVER found -- 21:49:38.095 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 21:49:38.095 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 21:49:38.095 INFO [7006]: HTTP_COOKIE = ci_session=b9i0l85m8a0j2a6dk8fvrq5sr1sulteu; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 21:49:38.095 INFO [7006]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:49:38.095 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:49:38.108 INFO [7006]: COREGRADE is stopping... -- 21:49:38.108 DEBUG [7006]: Closing database connection -- 21:49:38.108 SQL [7006]: pgsql_close() -- 21:53:49.947 INFO [6929]: COREGRADE is starting... -- 21:53:49.947 INFO [6929]: Version from config: 1.0 -- 21:53:49.947 DEBUG [6929]: Connecting to database... -- 21:53:49.947 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:53:49.947 SQL [6929]: pgsql_db_connect() -- 21:53:49.951 DEBUG [6929]: Database connection successful -- 21:53:49.951 INFO [6929]: _SERVER found -- 21:53:49.951 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 21:53:49.951 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 21:53:49.951 INFO [6929]: HTTP_COOKIE = ci_session=b9i0l85m8a0j2a6dk8fvrq5sr1sulteu; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 21:53:49.951 INFO [6929]: QUERY_STRING = /home/aboutus -- 21:53:49.951 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:53:49.984 INFO [6929]: COREGRADE is stopping... -- 21:53:49.984 DEBUG [6929]: Closing database connection -- 21:53:49.984 SQL [6929]: pgsql_close() -- 21:53:50.180 INFO [6925]: COREGRADE is starting... -- 21:53:50.181 INFO [6925]: Version from config: 1.0 -- 21:53:50.181 DEBUG [6925]: Connecting to database... -- 21:53:50.181 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:53:50.181 SQL [6925]: pgsql_db_connect() -- 21:53:50.185 DEBUG [6925]: Database connection successful -- 21:53:50.185 INFO [6925]: _SERVER found -- 21:53:50.185 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 21:53:50.185 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 21:53:50.185 INFO [6925]: HTTP_COOKIE = ci_session=b9i0l85m8a0j2a6dk8fvrq5sr1sulteu; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 21:53:50.185 INFO [6925]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:53:50.185 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:53:50.197 INFO [6925]: COREGRADE is stopping... -- 21:53:50.197 DEBUG [6925]: Closing database connection -- 21:53:50.197 SQL [6925]: pgsql_close() -- 21:56:02.433 INFO [8318]: COREGRADE is starting... -- 21:56:02.433 INFO [8318]: Version from config: 1.0 -- 21:56:02.433 DEBUG [8318]: Connecting to database... -- 21:56:02.434 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:56:02.434 SQL [8318]: pgsql_db_connect() -- 21:56:02.438 DEBUG [8318]: Database connection successful -- 21:56:02.438 INFO [8318]: _SERVER found -- 21:56:02.438 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 21:56:02.438 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 21:56:02.438 INFO [8318]: HTTP_COOKIE = ci_session=b9i0l85m8a0j2a6dk8fvrq5sr1sulteu; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 21:56:02.438 INFO [8318]: QUERY_STRING = /home/aboutus -- 21:56:02.438 INFO [8318]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:56:02.471 INFO [8318]: COREGRADE is stopping... -- 21:56:02.471 DEBUG [8318]: Closing database connection -- 21:56:02.471 SQL [8318]: pgsql_close() -- 21:56:02.694 INFO [12991]: COREGRADE is starting... -- 21:56:02.694 INFO [12991]: Version from config: 1.0 -- 21:56:02.694 DEBUG [12991]: Connecting to database... -- 21:56:02.694 DEBUG [12991]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:56:02.694 SQL [12991]: pgsql_db_connect() -- 21:56:02.698 DEBUG [12991]: Database connection successful -- 21:56:02.698 INFO [12991]: _SERVER found -- 21:56:02.698 INFO [12991]: REMOTE_ADDR = 10.0.0.15 -- 21:56:02.698 INFO [12991]: SERVER_NAME = oameye.works.coregrade.com -- 21:56:02.698 INFO [12991]: HTTP_COOKIE = ci_session=ouf3lq8216fkl5b2v145lh2ipjrsddbf; _gid=GA1.2.598314802.1586790990; _ga=GA1.2.784606705.1583345490 -- 21:56:02.698 INFO [12991]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:56:02.698 INFO [12991]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:56:02.711 INFO [12991]: COREGRADE is stopping... -- 21:56:02.711 DEBUG [12991]: Closing database connection -- 21:56:02.711 SQL [12991]: pgsql_close() -- 23:24:23.017 INFO [12992]: COREGRADE is starting... -- 23:24:23.017 INFO [12992]: Version from config: 1.0 -- 23:24:23.017 DEBUG [12992]: Connecting to database... -- 23:24:23.017 DEBUG [12992]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:24:23.017 SQL [12992]: pgsql_db_connect() -- 23:24:23.023 DEBUG [12992]: Database connection successful -- 23:24:23.023 INFO [12992]: _SERVER found -- 23:24:23.023 INFO [12992]: REMOTE_ADDR = 10.0.0.15 -- 23:24:23.023 INFO [12992]: SERVER_NAME = oameye.works.coregrade.com -- 23:24:23.023 INFO [12992]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 23:24:23.023 INFO [12992]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 23:24:23.036 INFO [12992]: COREGRADE is stopping... -- 23:24:23.036 DEBUG [12992]: Closing database connection -- 23:24:23.036 SQL [12992]: pgsql_close() -- 23:53:15.905 INFO [6929]: COREGRADE is starting... -- 23:53:15.906 INFO [6929]: Version from config: 1.0 -- 23:53:15.906 DEBUG [6929]: Connecting to database... -- 23:53:15.906 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:53:15.906 SQL [6929]: pgsql_db_connect() -- 23:53:15.910 DEBUG [6929]: Database connection successful -- 23:53:15.910 INFO [6929]: _SERVER found -- 23:53:15.910 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 23:53:15.910 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 23:53:15.910 INFO [6929]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 23:53:15.910 INFO [6929]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 23:53:15.923 INFO [6929]: COREGRADE is stopping... -- 23:53:15.923 DEBUG [6929]: Closing database connection -- 23:53:15.923 SQL [6929]: pgsql_close() -- 03:42:46.525 INFO [6925]: COREGRADE is starting... -- 03:42:46.525 INFO [6925]: Version from config: 1.0 -- 03:42:46.525 DEBUG [6925]: Connecting to database... -- 03:42:46.525 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:42:46.525 SQL [6925]: pgsql_db_connect() -- 03:42:46.530 DEBUG [6925]: Database connection successful -- 03:42:46.530 INFO [6925]: _SERVER found -- 03:42:46.530 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 03:42:46.530 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 03:42:46.530 INFO [6925]: QUERY_STRING = -- 03:42:46.530 INFO [6925]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 03:42:46.566 INFO [6925]: COREGRADE is stopping... -- 03:42:46.566 DEBUG [6925]: Closing database connection -- 03:42:46.566 SQL [6925]: pgsql_close() -- 05:08:38.634 INFO [14286]: COREGRADE is starting... -- 05:08:38.634 INFO [14286]: Version from config: 1.0 -- 05:08:38.634 DEBUG [14286]: Connecting to database... -- 05:08:38.634 DEBUG [14286]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:38.634 SQL [14286]: pgsql_db_connect() -- 05:08:38.639 DEBUG [14286]: Database connection successful -- 05:08:38.639 INFO [14286]: _SERVER found -- 05:08:38.639 INFO [14286]: REMOTE_ADDR = 10.0.0.15 -- 05:08:38.639 INFO [14286]: SERVER_NAME = oameye.works.coregrade.com -- 05:08:38.639 INFO [14286]: QUERY_STRING = /.well-known/acme-challenge/ANM4OPJvWc_Un1yDmbp7-NuSYYyqz1Iw_sScUANNqk4 -- 05:08:38.639 INFO [14286]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 05:08:38.657 INFO [14286]: COREGRADE is stopping... -- 05:08:38.657 DEBUG [14286]: Closing database connection -- 05:08:38.657 SQL [14286]: pgsql_close() -- 05:08:38.788 INFO [7005]: COREGRADE is starting... -- 05:08:38.789 INFO [7005]: Version from config: 1.0 -- 05:08:38.789 DEBUG [7005]: Connecting to database... -- 05:08:38.789 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:38.789 SQL [7005]: pgsql_db_connect() -- 05:08:38.795 DEBUG [7005]: Database connection successful -- 05:08:38.795 INFO [7005]: _SERVER found -- 05:08:38.795 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 05:08:38.795 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 05:08:38.795 INFO [7005]: QUERY_STRING = /.well-known/acme-challenge/ANM4OPJvWc_Un1yDmbp7-NuSYYyqz1Iw_sScUANNqk4 -- 05:08:38.795 INFO [7005]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 05:08:38.810 INFO [7005]: COREGRADE is stopping... -- 05:08:38.810 DEBUG [7005]: Closing database connection -- 05:08:38.810 SQL [7005]: pgsql_close() -- 05:08:38.957 INFO [7005]: COREGRADE is starting... -- 05:08:38.957 INFO [7005]: Version from config: 1.0 -- 05:08:38.957 DEBUG [7005]: Connecting to database... -- 05:08:38.957 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:38.957 SQL [7005]: pgsql_db_connect() -- 05:08:38.962 DEBUG [7005]: Database connection successful -- 05:08:38.962 INFO [7005]: _SERVER found -- 05:08:38.962 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 05:08:38.962 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 05:08:38.962 INFO [7005]: QUERY_STRING = /.well-known/acme-challenge/ANM4OPJvWc_Un1yDmbp7-NuSYYyqz1Iw_sScUANNqk4 -- 05:08:38.962 INFO [7005]: HTTP_X_FORWARDED_FOR = 52.28.236.88 -- 05:08:38.973 INFO [7005]: COREGRADE is stopping... -- 05:08:38.973 DEBUG [7005]: Closing database connection -- 05:08:38.973 SQL [7005]: pgsql_close() -- 06:25:25.719 INFO [7004]: COREGRADE is starting... -- 06:25:25.719 INFO [7004]: Version from config: 1.0 -- 06:25:25.719 DEBUG [7004]: Connecting to database... -- 06:25:25.719 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:25:25.719 SQL [7004]: pgsql_db_connect() -- 06:25:25.724 DEBUG [7004]: Database connection successful -- 06:25:25.724 INFO [7004]: _SERVER found -- 06:25:25.724 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 06:25:25.724 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 06:25:25.724 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194 -- 06:25:25.724 INFO [7004]: QUERY_STRING = -- 06:25:25.724 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 06:25:25.762 INFO [7004]: COREGRADE is stopping... -- 06:25:25.762 DEBUG [7004]: Closing database connection -- 06:25:25.762 SQL [7004]: pgsql_close() -- 06:25:27.724 INFO [12632]: COREGRADE is starting... -- 06:25:27.724 INFO [12632]: Version from config: 1.0 -- 06:25:27.724 DEBUG [12632]: Connecting to database... -- 06:25:27.724 DEBUG [12632]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:25:27.724 SQL [12632]: pgsql_db_connect() -- 06:25:27.728 DEBUG [12632]: Database connection successful -- 06:25:27.728 INFO [12632]: _SERVER found -- 06:25:27.728 INFO [12632]: REMOTE_ADDR = 10.0.0.15 -- 06:25:27.728 INFO [12632]: SERVER_NAME = oameye.works.coregrade.com -- 06:25:27.728 INFO [12632]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; ci_session=5tj2re8ff051dtk0e9186b0edf3n7re1 -- 06:25:27.728 INFO [12632]: QUERY_STRING = /assets/img/footer_1.jpg -- 06:25:27.728 INFO [12632]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 06:25:27.741 INFO [12632]: COREGRADE is stopping... -- 06:25:27.741 DEBUG [12632]: Closing database connection -- 06:25:27.741 SQL [12632]: pgsql_close() -- 06:25:31.167 INFO [12632]: COREGRADE is starting... -- 06:25:31.168 INFO [12632]: Version from config: 1.0 -- 06:25:31.168 DEBUG [12632]: Connecting to database... -- 06:25:31.168 DEBUG [12632]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:25:31.168 SQL [12632]: pgsql_db_connect() -- 06:25:31.190 INFO [7004]: COREGRADE is starting... -- 06:25:31.190 INFO [7004]: Version from config: 1.0 -- 06:25:31.190 DEBUG [7004]: Connecting to database... -- 06:25:31.190 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:25:31.190 SQL [7004]: pgsql_db_connect() -- 06:25:31.172 DEBUG [12632]: Database connection successful -- 06:25:31.172 INFO [12632]: _SERVER found -- 06:25:31.172 INFO [12632]: REMOTE_ADDR = 10.0.0.15 -- 06:25:31.172 INFO [12632]: SERVER_NAME = oameye.works.coregrade.com -- 06:25:31.172 INFO [12632]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; ci_session=5tj2re8ff051dtk0e9186b0edf3n7re1; _gid=GA1.2.1035126347.1586859928; _gat_gtag_UA_54829827_2=1 -- 06:25:31.172 INFO [12632]: QUERY_STRING = /welcome/viewLogin -- 06:25:31.172 INFO [12632]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 06:25:31.204 INFO [12632]: COREGRADE is stopping... -- 06:25:31.204 DEBUG [12632]: Closing database connection -- 06:25:31.204 SQL [12632]: pgsql_close() -- 06:25:31.194 DEBUG [7004]: Database connection successful -- 06:25:31.194 INFO [7004]: _SERVER found -- 06:25:31.195 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 06:25:31.195 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 06:25:31.195 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; ci_session=5tj2re8ff051dtk0e9186b0edf3n7re1; _gid=GA1.2.1035126347.1586859928; _gat_gtag_UA_54829827_2=1 -- 06:25:31.195 INFO [7004]: QUERY_STRING = /auth -- 06:25:31.195 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 06:25:31.227 INFO [7004]: COREGRADE is stopping... -- 06:25:31.227 DEBUG [7004]: Closing database connection -- 06:25:31.227 SQL [7004]: pgsql_close() -- 06:25:32.013 INFO [12632]: COREGRADE is starting... -- 06:25:32.013 INFO [12632]: Version from config: 1.0 -- 06:25:32.013 DEBUG [12632]: Connecting to database... -- 06:25:32.013 DEBUG [12632]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:25:32.013 SQL [12632]: pgsql_db_connect() -- 06:25:32.018 DEBUG [12632]: Database connection successful -- 06:25:32.018 INFO [12632]: _SERVER found -- 06:25:32.018 INFO [12632]: REMOTE_ADDR = 10.0.0.15 -- 06:25:32.018 INFO [12632]: SERVER_NAME = oameye.works.coregrade.com -- 06:25:32.018 INFO [12632]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; ci_session=5tj2re8ff051dtk0e9186b0edf3n7re1; _gid=GA1.2.1035126347.1586859928; _gat_gtag_UA_54829827_2=1 -- 06:25:32.018 INFO [12632]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 06:25:32.018 INFO [12632]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 06:25:32.029 INFO [12632]: COREGRADE is stopping... -- 06:25:32.029 DEBUG [12632]: Closing database connection -- 06:25:32.029 SQL [12632]: pgsql_close() -- 06:25:40.302 INFO [6929]: COREGRADE is starting... -- 06:25:40.302 INFO [6929]: Version from config: 1.0 -- 06:25:40.302 DEBUG [6929]: Connecting to database... -- 06:25:40.302 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:25:40.302 SQL [6929]: pgsql_db_connect() -- 06:25:40.307 DEBUG [6929]: Database connection successful -- 06:25:40.307 INFO [6929]: _SERVER found -- 06:25:40.307 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 06:25:40.307 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 06:25:40.307 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; ci_session=5tj2re8ff051dtk0e9186b0edf3n7re1; _gid=GA1.2.1035126347.1586859928; _gat_gtag_UA_54829827_2=1 -- 06:25:40.307 INFO [6929]: QUERY_STRING = /home/privacy -- 06:25:40.307 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 06:25:40.340 INFO [6929]: COREGRADE is stopping... -- 06:25:40.340 DEBUG [6929]: Closing database connection -- 06:25:40.340 SQL [6929]: pgsql_close() -- 06:25:40.652 INFO [6929]: COREGRADE is starting... -- 06:25:40.652 INFO [6929]: Version from config: 1.0 -- 06:25:40.652 DEBUG [6929]: Connecting to database... -- 06:25:40.652 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:25:40.652 SQL [6929]: pgsql_db_connect() -- 06:25:40.656 DEBUG [6929]: Database connection successful -- 06:25:40.656 INFO [6929]: _SERVER found -- 06:25:40.656 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 06:25:40.656 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 06:25:40.656 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; ci_session=5tj2re8ff051dtk0e9186b0edf3n7re1; _gid=GA1.2.1035126347.1586859928; _gat_gtag_UA_54829827_2=1 -- 06:25:40.656 INFO [6929]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 06:25:40.656 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 06:25:40.668 INFO [6929]: COREGRADE is stopping... -- 06:25:40.668 DEBUG [6929]: Closing database connection -- 06:25:40.668 SQL [6929]: pgsql_close() -- 06:25:43.859 INFO [6929]: COREGRADE is starting... -- 06:25:43.859 INFO [6929]: Version from config: 1.0 -- 06:25:43.859 DEBUG [6929]: Connecting to database... -- 06:25:43.859 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:25:43.859 SQL [6929]: pgsql_db_connect() -- 06:25:43.864 DEBUG [6929]: Database connection successful -- 06:25:43.864 INFO [6929]: _SERVER found -- 06:25:43.864 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 06:25:43.864 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 06:25:43.864 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; ci_session=5tj2re8ff051dtk0e9186b0edf3n7re1; _gid=GA1.2.1035126347.1586859928; _gat_gtag_UA_54829827_2=1 -- 06:25:43.864 INFO [6929]: QUERY_STRING = /home/security -- 06:25:43.864 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 06:25:43.895 INFO [6929]: COREGRADE is stopping... -- 06:25:43.895 DEBUG [6929]: Closing database connection -- 06:25:43.895 SQL [6929]: pgsql_close() -- 06:25:46.788 INFO [6929]: COREGRADE is starting... -- 06:25:46.788 INFO [6929]: Version from config: 1.0 -- 06:25:46.788 DEBUG [6929]: Connecting to database... -- 06:25:46.788 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:25:46.788 SQL [6929]: pgsql_db_connect() -- 06:25:46.793 DEBUG [6929]: Database connection successful -- 06:25:46.793 INFO [6929]: _SERVER found -- 06:25:46.793 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 06:25:46.793 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 06:25:46.793 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; ci_session=5tj2re8ff051dtk0e9186b0edf3n7re1; _gid=GA1.2.1035126347.1586859928; _gat_gtag_UA_54829827_2=1 -- 06:25:46.793 INFO [6929]: QUERY_STRING = -- 06:25:46.793 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 06:25:46.824 INFO [6929]: COREGRADE is stopping... -- 06:25:46.824 DEBUG [6929]: Closing database connection -- 06:25:46.824 SQL [6929]: pgsql_close() -- 06:25:47.300 INFO [6929]: COREGRADE is starting... -- 06:25:47.300 INFO [6929]: Version from config: 1.0 -- 06:25:47.300 DEBUG [6929]: Connecting to database... -- 06:25:47.300 DEBUG [6929]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:25:47.300 SQL [6929]: pgsql_db_connect() -- 06:25:47.305 DEBUG [6929]: Database connection successful -- 06:25:47.305 INFO [6929]: _SERVER found -- 06:25:47.305 INFO [6929]: REMOTE_ADDR = 10.0.0.15 -- 06:25:47.305 INFO [6929]: SERVER_NAME = oameye.works.coregrade.com -- 06:25:47.305 INFO [6929]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; ci_session=5tj2re8ff051dtk0e9186b0edf3n7re1; _gid=GA1.2.1035126347.1586859928; _gat_gtag_UA_54829827_2=1 -- 06:25:47.305 INFO [6929]: QUERY_STRING = /assets/img/footer_1.jpg -- 06:25:47.305 INFO [6929]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 06:25:47.316 INFO [6929]: COREGRADE is stopping... -- 06:25:47.316 DEBUG [6929]: Closing database connection -- 06:25:47.316 SQL [6929]: pgsql_close() -- 06:25:53.689 INFO [6925]: COREGRADE is starting... -- 06:25:53.690 INFO [6925]: Version from config: 1.0 -- 06:25:53.690 DEBUG [6925]: Connecting to database... -- 06:25:53.690 DEBUG [6925]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:25:53.690 SQL [6925]: pgsql_db_connect() -- 06:25:53.694 DEBUG [6925]: Database connection successful -- 06:25:53.694 INFO [6925]: _SERVER found -- 06:25:53.694 INFO [6925]: REMOTE_ADDR = 10.0.0.15 -- 06:25:53.694 INFO [6925]: SERVER_NAME = oameye.works.coregrade.com -- 06:25:53.694 INFO [6925]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; ci_session=5tj2re8ff051dtk0e9186b0edf3n7re1; _gid=GA1.2.1035126347.1586859928; _gat_gtag_UA_54829827_2=1 -- 06:25:53.694 INFO [6925]: QUERY_STRING = /home/aboutus -- 06:25:53.694 INFO [6925]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 06:25:53.726 INFO [6925]: COREGRADE is stopping... -- 06:25:53.726 DEBUG [6925]: Closing database connection -- 06:25:53.727 SQL [6925]: pgsql_close() -- 06:52:09.160 INFO [14286]: COREGRADE is starting... -- 06:52:09.160 INFO [14286]: Version from config: 1.0 -- 06:52:09.160 DEBUG [14286]: Connecting to database... -- 06:52:09.160 DEBUG [14286]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:52:09.160 SQL [14286]: pgsql_db_connect() -- 06:52:09.164 DEBUG [14286]: Database connection successful -- 06:52:09.164 INFO [14286]: _SERVER found -- 06:52:09.164 INFO [14286]: REMOTE_ADDR = 10.0.0.15 -- 06:52:09.164 INFO [14286]: SERVER_NAME = oameye.works.coregrade.com -- 06:52:09.164 INFO [14286]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; ci_session=5tj2re8ff051dtk0e9186b0edf3n7re1; _gid=GA1.2.1035126347.1586859928 -- 06:52:09.164 INFO [14286]: QUERY_STRING = -- 06:52:09.164 INFO [14286]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 06:52:09.213 INFO [14286]: COREGRADE is stopping... -- 06:52:09.213 DEBUG [14286]: Closing database connection -- 06:52:09.213 SQL [14286]: pgsql_close() -- 06:52:09.557 INFO [14286]: COREGRADE is starting... -- 06:52:09.557 INFO [14286]: Version from config: 1.0 -- 06:52:09.557 DEBUG [14286]: Connecting to database... -- 06:52:09.557 DEBUG [14286]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:52:09.557 SQL [14286]: pgsql_db_connect() -- 06:52:09.562 DEBUG [14286]: Database connection successful -- 06:52:09.562 INFO [14286]: _SERVER found -- 06:52:09.562 INFO [14286]: REMOTE_ADDR = 10.0.0.15 -- 06:52:09.562 INFO [14286]: SERVER_NAME = oameye.works.coregrade.com -- 06:52:09.562 INFO [14286]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1035126347.1586859928; ci_session=q1l3tbbkv62r3cmojq6top2t5ef3hma0 -- 06:52:09.562 INFO [14286]: QUERY_STRING = /assets/img/footer_1.jpg -- 06:52:09.562 INFO [14286]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 06:52:09.573 INFO [14286]: COREGRADE is stopping... -- 06:52:09.573 DEBUG [14286]: Closing database connection -- 06:52:09.573 SQL [14286]: pgsql_close() -- 06:52:23.187 INFO [7006]: COREGRADE is starting... -- 06:52:23.187 INFO [7006]: Version from config: 1.0 -- 06:52:23.187 DEBUG [7006]: Connecting to database... -- 06:52:23.187 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:52:23.187 SQL [7006]: pgsql_db_connect() -- 06:52:23.191 DEBUG [7006]: Database connection successful -- 06:52:23.191 INFO [7006]: _SERVER found -- 06:52:23.191 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 06:52:23.191 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 06:52:23.191 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1035126347.1586859928; ci_session=q1l3tbbkv62r3cmojq6top2t5ef3hma0; _gat_gtag_UA_54829827_2=1 -- 06:52:23.191 INFO [7006]: QUERY_STRING = /auth/newuser -- 06:52:23.191 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 06:52:23.226 INFO [7006]: COREGRADE is stopping... -- 06:52:23.226 DEBUG [7006]: Closing database connection -- 06:52:23.226 SQL [7006]: pgsql_close() -- 06:52:23.703 INFO [7006]: COREGRADE is starting... -- 06:52:23.704 INFO [7006]: Version from config: 1.0 -- 06:52:23.704 DEBUG [7006]: Connecting to database... -- 06:52:23.704 DEBUG [7006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:52:23.704 SQL [7006]: pgsql_db_connect() -- 06:52:23.708 DEBUG [7006]: Database connection successful -- 06:52:23.708 INFO [7006]: _SERVER found -- 06:52:23.708 INFO [7006]: REMOTE_ADDR = 10.0.0.15 -- 06:52:23.708 INFO [7006]: SERVER_NAME = oameye.works.coregrade.com -- 06:52:23.708 INFO [7006]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1035126347.1586859928; ci_session=q1l3tbbkv62r3cmojq6top2t5ef3hma0; _gat_gtag_UA_54829827_2=1 -- 06:52:23.708 INFO [7006]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 06:52:23.708 INFO [7006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 06:52:23.719 INFO [7006]: COREGRADE is stopping... -- 06:52:23.719 DEBUG [7006]: Closing database connection -- 06:52:23.719 SQL [7006]: pgsql_close() -- 07:07:54.719 INFO [8318]: COREGRADE is starting... -- 07:07:54.720 INFO [8318]: Version from config: 1.0 -- 07:07:54.720 DEBUG [8318]: Connecting to database... -- 07:07:54.720 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:07:54.720 SQL [8318]: pgsql_db_connect() -- 07:07:54.724 DEBUG [8318]: Database connection successful -- 07:07:54.724 INFO [8318]: _SERVER found -- 07:07:54.724 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 07:07:54.724 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 07:07:54.724 INFO [8318]: QUERY_STRING = /images/logo.png -- 07:07:54.724 INFO [8318]: HTTP_X_FORWARDED_FOR = 66.102.7.244 -- 07:07:54.737 INFO [8318]: COREGRADE is stopping... -- 07:07:54.737 DEBUG [8318]: Closing database connection -- 07:07:54.737 SQL [8318]: pgsql_close() -- 07:07:54.881 INFO [7005]: COREGRADE is starting... -- 07:07:54.882 INFO [7005]: Version from config: 1.0 -- 07:07:54.882 DEBUG [7005]: Connecting to database... -- 07:07:54.882 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:07:54.882 SQL [7005]: pgsql_db_connect() -- 07:07:54.899 INFO [8318]: COREGRADE is starting... -- 07:07:54.899 INFO [8318]: Version from config: 1.0 -- 07:07:54.899 DEBUG [8318]: Connecting to database... -- 07:07:54.899 DEBUG [8318]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:07:54.900 SQL [8318]: pgsql_db_connect() -- 07:07:54.887 DEBUG [7005]: Database connection successful -- 07:07:54.887 INFO [7005]: _SERVER found -- 07:07:54.887 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 07:07:54.887 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 07:07:54.887 INFO [7005]: QUERY_STRING = /images/logo.png -- 07:07:54.887 INFO [7005]: HTTP_X_FORWARDED_FOR = 66.249.88.28 -- 07:07:54.900 INFO [7005]: COREGRADE is stopping... -- 07:07:54.900 DEBUG [7005]: Closing database connection -- 07:07:54.900 SQL [7005]: pgsql_close() -- 07:07:54.904 DEBUG [8318]: Database connection successful -- 07:07:54.904 INFO [8318]: _SERVER found -- 07:07:54.904 INFO [8318]: REMOTE_ADDR = 10.0.0.15 -- 07:07:54.904 INFO [8318]: SERVER_NAME = oameye.works.coregrade.com -- 07:07:54.904 INFO [8318]: QUERY_STRING = /images/logo.png -- 07:07:54.904 INFO [8318]: HTTP_X_FORWARDED_FOR = 66.249.88.28 -- 07:07:54.915 INFO [8318]: COREGRADE is stopping... -- 07:07:54.915 DEBUG [8318]: Closing database connection -- 07:07:54.915 SQL [8318]: pgsql_close() -- 07:07:54.941 INFO [7005]: COREGRADE is starting... -- 07:07:54.942 INFO [7005]: Version from config: 1.0 -- 07:07:54.942 DEBUG [7005]: Connecting to database... -- 07:07:54.942 DEBUG [7005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:07:54.942 SQL [7005]: pgsql_db_connect() -- 07:07:54.946 DEBUG [7005]: Database connection successful -- 07:07:54.946 INFO [7005]: _SERVER found -- 07:07:54.946 INFO [7005]: REMOTE_ADDR = 10.0.0.15 -- 07:07:54.946 INFO [7005]: SERVER_NAME = oameye.works.coregrade.com -- 07:07:54.946 INFO [7005]: QUERY_STRING = /images/logo.png -- 07:07:54.946 INFO [7005]: HTTP_X_FORWARDED_FOR = 66.249.88.30 -- 07:07:54.957 INFO [7005]: COREGRADE is stopping... -- 07:07:54.957 DEBUG [7005]: Closing database connection -- 07:07:54.957 SQL [7005]: pgsql_close() -- 07:21:53.457 INFO [12991]: COREGRADE is starting... -- 07:21:53.458 INFO [12991]: Version from config: 1.0 -- 07:21:53.458 DEBUG [12991]: Connecting to database... -- 07:21:53.458 DEBUG [12991]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:21:53.458 SQL [12991]: pgsql_db_connect() -- 07:21:53.462 DEBUG [12991]: Database connection successful -- 07:21:53.462 INFO [12991]: _SERVER found -- 07:21:53.462 INFO [12991]: REMOTE_ADDR = 10.0.0.15 -- 07:21:53.462 INFO [12991]: SERVER_NAME = oameye.works.coregrade.com -- 07:21:53.462 INFO [12991]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1035126347.1586859928; ci_session=q1l3tbbkv62r3cmojq6top2t5ef3hma0 -- 07:21:53.462 INFO [12991]: QUERY_STRING = -- 07:21:53.462 INFO [12991]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:21:53.498 INFO [12991]: COREGRADE is stopping... -- 07:21:53.498 DEBUG [12991]: Closing database connection -- 07:21:53.498 SQL [12991]: pgsql_close() -- 07:21:53.840 INFO [12991]: COREGRADE is starting... -- 07:21:53.840 INFO [12991]: Version from config: 1.0 -- 07:21:53.840 DEBUG [12991]: Connecting to database... -- 07:21:53.840 DEBUG [12991]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:21:53.840 SQL [12991]: pgsql_db_connect() -- 07:21:53.844 DEBUG [12991]: Database connection successful -- 07:21:53.844 INFO [12991]: _SERVER found -- 07:21:53.844 INFO [12991]: REMOTE_ADDR = 10.0.0.15 -- 07:21:53.844 INFO [12991]: SERVER_NAME = oameye.works.coregrade.com -- 07:21:53.844 INFO [12991]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1035126347.1586859928; ci_session=njk62c9oegigj6ffqlgm5qoasd7usfa7 -- 07:21:53.844 INFO [12991]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:21:53.844 INFO [12991]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:21:53.855 INFO [12991]: COREGRADE is stopping... -- 07:21:53.855 DEBUG [12991]: Closing database connection -- 07:21:53.855 SQL [12991]: pgsql_close() -- 07:21:59.038 INFO [12992]: COREGRADE is starting... -- 07:21:59.038 INFO [12992]: Version from config: 1.0 -- 07:21:59.038 DEBUG [12992]: Connecting to database... -- 07:21:59.038 DEBUG [12992]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:21:59.038 SQL [12992]: pgsql_db_connect() -- 07:21:59.042 DEBUG [12992]: Database connection successful -- 07:21:59.042 INFO [12992]: _SERVER found -- 07:21:59.042 INFO [12992]: REMOTE_ADDR = 10.0.0.15 -- 07:21:59.042 INFO [12992]: SERVER_NAME = oameye.works.coregrade.com -- 07:21:59.042 INFO [12992]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1035126347.1586859928; ci_session=njk62c9oegigj6ffqlgm5qoasd7usfa7; _gat_gtag_UA_54829827_2=1 -- 07:21:59.042 INFO [12992]: QUERY_STRING = /welcome/viewLogin -- 07:21:59.042 INFO [12992]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:21:59.074 INFO [12992]: COREGRADE is stopping... -- 07:21:59.074 DEBUG [12992]: Closing database connection -- 07:21:59.074 SQL [12992]: pgsql_close() -- 07:21:59.106 INFO [12992]: COREGRADE is starting... -- 07:21:59.106 INFO [12992]: Version from config: 1.0 -- 07:21:59.106 DEBUG [12992]: Connecting to database... -- 07:21:59.106 DEBUG [12992]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:21:59.106 SQL [12992]: pgsql_db_connect() -- 07:21:59.126 INFO [7004]: COREGRADE is starting... -- 07:21:59.126 INFO [7004]: Version from config: 1.0 -- 07:21:59.127 DEBUG [7004]: Connecting to database... -- 07:21:59.127 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:21:59.127 SQL [7004]: pgsql_db_connect() -- 07:21:59.110 DEBUG [12992]: Database connection successful -- 07:21:59.110 INFO [12992]: _SERVER found -- 07:21:59.110 INFO [12992]: REMOTE_ADDR = 10.0.0.15 -- 07:21:59.110 INFO [12992]: SERVER_NAME = oameye.works.coregrade.com -- 07:21:59.110 INFO [12992]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1035126347.1586859928; ci_session=njk62c9oegigj6ffqlgm5qoasd7usfa7; _gat_gtag_UA_54829827_2=1 -- 07:21:59.110 INFO [12992]: QUERY_STRING = /auth -- 07:21:59.110 INFO [12992]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:21:59.142 INFO [12992]: COREGRADE is stopping... -- 07:21:59.142 DEBUG [12992]: Closing database connection -- 07:21:59.142 SQL [12992]: pgsql_close() -- 07:21:59.131 DEBUG [7004]: Database connection successful -- 07:21:59.131 INFO [7004]: _SERVER found -- 07:21:59.131 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 07:21:59.131 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 07:21:59.131 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1035126347.1586859928; ci_session=njk62c9oegigj6ffqlgm5qoasd7usfa7; _gat_gtag_UA_54829827_2=1 -- 07:21:59.131 INFO [7004]: QUERY_STRING = /auth/index -- 07:21:59.131 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:21:59.165 INFO [7004]: COREGRADE is stopping... -- 07:21:59.165 DEBUG [7004]: Closing database connection -- 07:21:59.165 SQL [7004]: pgsql_close() -- 07:21:59.640 INFO [7004]: COREGRADE is starting... -- 07:21:59.640 INFO [7004]: Version from config: 1.0 -- 07:21:59.640 DEBUG [7004]: Connecting to database... -- 07:21:59.640 DEBUG [7004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:21:59.640 SQL [7004]: pgsql_db_connect() -- 07:21:59.644 DEBUG [7004]: Database connection successful -- 07:21:59.644 INFO [7004]: _SERVER found -- 07:21:59.644 INFO [7004]: REMOTE_ADDR = 10.0.0.15 -- 07:21:59.644 INFO [7004]: SERVER_NAME = oameye.works.coregrade.com -- 07:21:59.644 INFO [7004]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1035126347.1586859928; ci_session=njk62c9oegigj6ffqlgm5qoasd7usfa7; _gat_gtag_UA_54829827_2=1 -- 07:21:59.644 INFO [7004]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 07:21:59.644 INFO [7004]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:21:59.656 INFO [7004]: COREGRADE is stopping... -- 07:21:59.656 DEBUG [7004]: Closing database connection -- 07:21:59.656 SQL [7004]: pgsql_close() -- 08:04:09.500 INFO [12632]: COREGRADE is starting... -- 08:04:09.501 INFO [12632]: Version from config: 1.0 -- 08:04:09.501 DEBUG [12632]: Connecting to database... -- 08:04:09.501 DEBUG [12632]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:04:09.501 SQL [12632]: pgsql_db_connect() -- 08:04:09.505 DEBUG [12632]: Database connection successful -- 08:04:09.505 INFO [12632]: _SERVER found -- 08:04:09.505 INFO [12632]: REMOTE_ADDR = 10.0.0.15 -- 08:04:09.505 INFO [12632]: SERVER_NAME = oameye.works.coregrade.com -- 08:04:09.505 INFO [12632]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1647021683.1586790185 -- 08:04:09.505 INFO [12632]: QUERY_STRING = -- 08:04:09.505 INFO [12632]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:04:09.541 INFO [12632]: COREGRADE is stopping... -- 08:04:09.541 DEBUG [12632]: Closing database connection -- 08:04:09.541 SQL [12632]: pgsql_close() -- 08:04:11.826 INFO [12632]: COREGRADE is starting... -- 08:04:11.826 INFO [12632]: Version from config: 1.0 -- 08:04:11.826 DEBUG [12632]: Connecting to database... -- 08:04:11.826 DEBUG [12632]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:04:11.826 SQL [12632]: pgsql_db_connect() -- 08:04:11.830 DEBUG [12632]: Database connection successful -- 08:04:11.830 INFO [12632]: _SERVER found -- 08:04:11.830 INFO [12632]: REMOTE_ADDR = 10.0.0.15 -- 08:04:11.830 INFO [12632]: SERVER_NAME = oameye.works.coregrade.com -- 08:04:11.830 INFO [12632]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1647021683.1586790185; ci_session=d7hjj0mgbmjacjn87oqtj5brjm8a0c30; _gat_gtag_UA_54829827_2=1 -- 08:04:11.830 INFO [12632]: QUERY_STRING = /assets/img/footer_1.jpg -- 08:04:11.830 INFO [12632]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:04:11.842 INFO [12632]: COREGRADE is stopping... -- 08:04:11.842 DEBUG [12632]: Closing database connection -- 08:04:11.842 SQL [12632]: pgsql_close() -- 10:07:16.908 INFO [28335]: COREGRADE is starting... -- 10:07:16.908 INFO [28335]: Version from config: 1.0 -- 10:07:16.908 DEBUG [28335]: Connecting to database... -- 10:07:16.908 DEBUG [28335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:07:16.908 SQL [28335]: pgsql_db_connect() -- 10:07:16.912 DEBUG [28335]: Database connection successful -- 10:07:16.912 INFO [28335]: _SERVER found -- 10:07:16.912 INFO [28335]: REMOTE_ADDR = 10.0.0.15 -- 10:07:16.912 INFO [28335]: SERVER_NAME = oameye.works.coregrade.com -- 10:07:16.912 INFO [28335]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; _gat_gtag_UA_54829827_2=1 -- 10:07:16.912 INFO [28335]: QUERY_STRING = -- 10:07:16.912 INFO [28335]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 10:07:16.956 INFO [28335]: COREGRADE is stopping... -- 10:07:16.956 DEBUG [28335]: Closing database connection -- 10:07:16.956 SQL [28335]: pgsql_close() -- 10:07:17.106 INFO [28335]: COREGRADE is starting... -- 10:07:17.106 INFO [28335]: Version from config: 1.0 -- 10:07:17.106 DEBUG [28335]: Connecting to database... -- 10:07:17.106 DEBUG [28335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:07:17.106 SQL [28335]: pgsql_db_connect() -- 10:07:17.110 DEBUG [28335]: Database connection successful -- 10:07:17.110 INFO [28335]: _SERVER found -- 10:07:17.110 INFO [28335]: REMOTE_ADDR = 10.0.0.15 -- 10:07:17.110 INFO [28335]: SERVER_NAME = oameye.works.coregrade.com -- 10:07:17.110 INFO [28335]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; _gat_gtag_UA_54829827_2=1; ci_session=5bccgl14p8defg1ro3oe90pi9867ve6f -- 10:07:17.110 INFO [28335]: QUERY_STRING = /assets/img/footer_1.jpg -- 10:07:17.110 INFO [28335]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 10:07:17.122 INFO [28335]: COREGRADE is stopping... -- 10:07:17.122 DEBUG [28335]: Closing database connection -- 10:07:17.122 SQL [28335]: pgsql_close() -- 10:07:19.831 INFO [28335]: COREGRADE is starting... -- 10:07:19.831 INFO [28335]: Version from config: 1.0 -- 10:07:19.831 DEBUG [28335]: Connecting to database... -- 10:07:19.831 DEBUG [28335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:07:19.831 SQL [28335]: pgsql_db_connect() -- 10:07:19.839 INFO [28336]: COREGRADE is starting... -- 10:07:19.840 INFO [28336]: Version from config: 1.0 -- 10:07:19.840 DEBUG [28336]: Connecting to database... -- 10:07:19.840 DEBUG [28336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:07:19.840 SQL [28336]: pgsql_db_connect() -- 10:07:19.835 DEBUG [28335]: Database connection successful -- 10:07:19.835 INFO [28335]: _SERVER found -- 10:07:19.835 INFO [28335]: REMOTE_ADDR = 10.0.0.15 -- 10:07:19.835 INFO [28335]: SERVER_NAME = oameye.works.coregrade.com -- 10:07:19.835 INFO [28335]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; _gat_gtag_UA_54829827_2=1; ci_session=5bccgl14p8defg1ro3oe90pi9867ve6f -- 10:07:19.835 INFO [28335]: QUERY_STRING = /welcome/viewLogin -- 10:07:19.835 INFO [28335]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 10:07:19.869 INFO [28335]: COREGRADE is stopping... -- 10:07:19.869 DEBUG [28335]: Closing database connection -- 10:07:19.869 SQL [28335]: pgsql_close() -- 10:07:19.844 DEBUG [28336]: Database connection successful -- 10:07:19.844 INFO [28336]: _SERVER found -- 10:07:19.844 INFO [28336]: REMOTE_ADDR = 10.0.0.15 -- 10:07:19.844 INFO [28336]: SERVER_NAME = oameye.works.coregrade.com -- 10:07:19.844 INFO [28336]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; _gat_gtag_UA_54829827_2=1; ci_session=5bccgl14p8defg1ro3oe90pi9867ve6f -- 10:07:19.844 INFO [28336]: QUERY_STRING = /auth -- 10:07:19.844 INFO [28336]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 10:07:19.887 INFO [28336]: COREGRADE is stopping... -- 10:07:19.887 DEBUG [28336]: Closing database connection -- 10:07:19.887 SQL [28336]: pgsql_close() -- 10:07:19.902 INFO [28336]: COREGRADE is starting... -- 10:07:19.902 INFO [28336]: Version from config: 1.0 -- 10:07:19.903 DEBUG [28336]: Connecting to database... -- 10:07:19.903 DEBUG [28336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:07:19.903 SQL [28336]: pgsql_db_connect() -- 10:07:19.907 DEBUG [28336]: Database connection successful -- 10:07:19.907 INFO [28336]: _SERVER found -- 10:07:19.907 INFO [28336]: REMOTE_ADDR = 10.0.0.15 -- 10:07:19.907 INFO [28336]: SERVER_NAME = oameye.works.coregrade.com -- 10:07:19.907 INFO [28336]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; _gat_gtag_UA_54829827_2=1; ci_session=5bccgl14p8defg1ro3oe90pi9867ve6f -- 10:07:19.907 INFO [28336]: QUERY_STRING = /auth/index -- 10:07:19.907 INFO [28336]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 10:07:19.939 INFO [28336]: COREGRADE is stopping... -- 10:07:19.939 DEBUG [28336]: Closing database connection -- 10:07:19.939 SQL [28336]: pgsql_close() -- 10:07:20.056 INFO [28336]: COREGRADE is starting... -- 10:07:20.056 INFO [28336]: Version from config: 1.0 -- 10:07:20.056 DEBUG [28336]: Connecting to database... -- 10:07:20.056 DEBUG [28336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:07:20.056 SQL [28336]: pgsql_db_connect() -- 10:07:20.060 DEBUG [28336]: Database connection successful -- 10:07:20.060 INFO [28336]: _SERVER found -- 10:07:20.060 INFO [28336]: REMOTE_ADDR = 10.0.0.15 -- 10:07:20.060 INFO [28336]: SERVER_NAME = oameye.works.coregrade.com -- 10:07:20.060 INFO [28336]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; _gat_gtag_UA_54829827_2=1; ci_session=5bccgl14p8defg1ro3oe90pi9867ve6f -- 10:07:20.060 INFO [28336]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:07:20.060 INFO [28336]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 10:07:20.071 INFO [28336]: COREGRADE is stopping... -- 10:07:20.071 DEBUG [28336]: Closing database connection -- 10:07:20.071 SQL [28336]: pgsql_close() -- 10:09:10.359 INFO [28336]: COREGRADE is starting... -- 10:09:10.359 INFO [28336]: Version from config: 1.0 -- 10:09:10.359 DEBUG [28336]: Connecting to database... -- 10:09:10.359 DEBUG [28336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:10.359 SQL [28336]: pgsql_db_connect() -- 10:09:10.363 DEBUG [28336]: Database connection successful -- 10:09:10.363 INFO [28336]: _SERVER found -- 10:09:10.363 INFO [28336]: REMOTE_ADDR = 10.0.0.15 -- 10:09:10.363 INFO [28336]: SERVER_NAME = oameye.works.coregrade.com -- 10:09:10.363 INFO [28336]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938 -- 10:09:10.363 INFO [28336]: QUERY_STRING = /authff -- 10:09:10.363 INFO [28336]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:09:10.374 INFO [28336]: COREGRADE is stopping... -- 10:09:10.374 DEBUG [28336]: Closing database connection -- 10:09:10.374 SQL [28336]: pgsql_close() -- 10:10:08.858 INFO [28337]: COREGRADE is starting... -- 10:10:08.858 INFO [28337]: Version from config: 1.0 -- 10:10:08.858 DEBUG [28337]: Connecting to database... -- 10:10:08.858 DEBUG [28337]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:10:08.858 SQL [28337]: pgsql_db_connect() -- 10:10:08.863 DEBUG [28337]: Database connection successful -- 10:10:08.863 INFO [28337]: _SERVER found -- 10:10:08.863 INFO [28337]: REMOTE_ADDR = 10.0.0.15 -- 10:10:08.863 INFO [28337]: SERVER_NAME = oameye.works.coregrade.com -- 10:10:08.863 INFO [28337]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938 -- 10:10:08.863 INFO [28337]: QUERY_STRING = /authff -- 10:10:08.863 INFO [28337]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:10:08.874 INFO [28337]: COREGRADE is stopping... -- 10:10:08.874 DEBUG [28337]: Closing database connection -- 10:10:08.874 SQL [28337]: pgsql_close() -- 10:11:12.680 INFO [28074]: COREGRADE is starting... -- 10:11:12.680 INFO [28074]: Version from config: 1.0 -- 10:11:12.680 DEBUG [28074]: Connecting to database... -- 10:11:12.680 DEBUG [28074]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:11:12.680 SQL [28074]: pgsql_db_connect() -- 10:11:12.684 DEBUG [28074]: Database connection successful -- 10:11:12.684 INFO [28074]: _SERVER found -- 10:11:12.684 INFO [28074]: REMOTE_ADDR = 10.0.0.15 -- 10:11:12.684 INFO [28074]: SERVER_NAME = oameye.works.coregrade.com -- 10:11:12.684 INFO [28074]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=5bccgl14p8defg1ro3oe90pi9867ve6f -- 10:11:12.684 INFO [28074]: QUERY_STRING = /auth -- 10:11:12.684 INFO [28074]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 10:11:12.721 INFO [28074]: COREGRADE is stopping... -- 10:11:12.721 DEBUG [28074]: Closing database connection -- 10:11:12.721 SQL [28074]: pgsql_close() -- 10:11:25.036 INFO [28077]: COREGRADE is starting... -- 10:11:25.037 INFO [28077]: Version from config: 1.0 -- 10:11:25.037 DEBUG [28077]: Connecting to database... -- 10:11:25.037 DEBUG [28077]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:11:25.037 SQL [28077]: pgsql_db_connect() -- 10:11:25.041 DEBUG [28077]: Database connection successful -- 10:11:25.041 INFO [28077]: _SERVER found -- 10:11:25.041 INFO [28077]: REMOTE_ADDR = 10.0.0.15 -- 10:11:25.041 INFO [28077]: SERVER_NAME = oameye.works.coregrade.com -- 10:11:25.041 INFO [28077]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938 -- 10:11:25.041 INFO [28077]: QUERY_STRING = -- 10:11:25.041 INFO [28077]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:11:25.083 INFO [28077]: COREGRADE is stopping... -- 10:11:25.083 DEBUG [28077]: Closing database connection -- 10:11:25.083 SQL [28077]: pgsql_close() -- 10:11:25.488 INFO [28077]: COREGRADE is starting... -- 10:11:25.488 INFO [28077]: Version from config: 1.0 -- 10:11:25.488 DEBUG [28077]: Connecting to database... -- 10:11:25.488 DEBUG [28077]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:11:25.488 SQL [28077]: pgsql_db_connect() -- 10:11:25.492 DEBUG [28077]: Database connection successful -- 10:11:25.492 INFO [28077]: _SERVER found -- 10:11:25.492 INFO [28077]: REMOTE_ADDR = 10.0.0.15 -- 10:11:25.492 INFO [28077]: SERVER_NAME = oameye.works.coregrade.com -- 10:11:25.492 INFO [28077]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=updl80buume9o9tnpk75kf86edfdikf1 -- 10:11:25.492 INFO [28077]: QUERY_STRING = /assets/img/footer_1.jpg -- 10:11:25.492 INFO [28077]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:11:25.503 INFO [28077]: COREGRADE is stopping... -- 10:11:25.503 DEBUG [28077]: Closing database connection -- 10:11:25.503 SQL [28077]: pgsql_close() -- 10:11:53.963 INFO [28338]: COREGRADE is starting... -- 10:11:53.964 INFO [28338]: Version from config: 1.0 -- 10:11:53.964 DEBUG [28338]: Connecting to database... -- 10:11:53.964 DEBUG [28338]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:11:53.964 SQL [28338]: pgsql_db_connect() -- 10:11:53.968 DEBUG [28338]: Database connection successful -- 10:11:53.968 INFO [28338]: _SERVER found -- 10:11:53.968 INFO [28338]: REMOTE_ADDR = 10.0.0.15 -- 10:11:53.968 INFO [28338]: SERVER_NAME = oameye.works.coregrade.com -- 10:11:53.968 INFO [28338]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=5bccgl14p8defg1ro3oe90pi9867ve6f -- 10:11:53.968 INFO [28338]: QUERY_STRING = /authfff -- 10:11:53.968 INFO [28338]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 10:11:53.984 INFO [28338]: COREGRADE is stopping... -- 10:11:53.984 DEBUG [28338]: Closing database connection -- 10:11:53.984 SQL [28338]: pgsql_close() -- 10:11:54.185 INFO [28338]: COREGRADE is starting... -- 10:11:54.185 INFO [28338]: Version from config: 1.0 -- 10:11:54.185 DEBUG [28338]: Connecting to database... -- 10:11:54.185 DEBUG [28338]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:11:54.185 SQL [28338]: pgsql_db_connect() -- 10:11:54.189 DEBUG [28338]: Database connection successful -- 10:11:54.189 INFO [28338]: _SERVER found -- 10:11:54.189 INFO [28338]: REMOTE_ADDR = 10.0.0.15 -- 10:11:54.189 INFO [28338]: SERVER_NAME = oameye.works.coregrade.com -- 10:11:54.189 INFO [28338]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=5bccgl14p8defg1ro3oe90pi9867ve6f -- 10:11:54.189 INFO [28338]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:11:54.189 INFO [28338]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 10:11:54.202 INFO [28338]: COREGRADE is stopping... -- 10:11:54.202 DEBUG [28338]: Closing database connection -- 10:11:54.202 SQL [28338]: pgsql_close() -- 10:13:03.075 INFO [28076]: COREGRADE is starting... -- 10:13:03.075 INFO [28076]: Version from config: 1.0 -- 10:13:03.075 DEBUG [28076]: Connecting to database... -- 10:13:03.075 DEBUG [28076]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:13:03.075 SQL [28076]: pgsql_db_connect() -- 10:13:03.079 DEBUG [28076]: Database connection successful -- 10:13:03.079 INFO [28076]: _SERVER found -- 10:13:03.079 INFO [28076]: REMOTE_ADDR = 10.0.0.15 -- 10:13:03.079 INFO [28076]: SERVER_NAME = oameye.works.coregrade.com -- 10:13:03.079 INFO [28076]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=5bccgl14p8defg1ro3oe90pi9867ve6f -- 10:13:03.079 INFO [28076]: QUERY_STRING = /authfff -- 10:13:03.079 INFO [28076]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 10:13:03.093 INFO [28076]: COREGRADE is stopping... -- 10:13:03.093 DEBUG [28076]: Closing database connection -- 10:13:03.093 SQL [28076]: pgsql_close() -- 10:13:03.306 INFO [28076]: COREGRADE is starting... -- 10:13:03.306 INFO [28076]: Version from config: 1.0 -- 10:13:03.306 DEBUG [28076]: Connecting to database... -- 10:13:03.306 DEBUG [28076]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:13:03.306 SQL [28076]: pgsql_db_connect() -- 10:13:03.310 DEBUG [28076]: Database connection successful -- 10:13:03.310 INFO [28076]: _SERVER found -- 10:13:03.310 INFO [28076]: REMOTE_ADDR = 10.0.0.15 -- 10:13:03.310 INFO [28076]: SERVER_NAME = oameye.works.coregrade.com -- 10:13:03.310 INFO [28076]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=5bccgl14p8defg1ro3oe90pi9867ve6f -- 10:13:03.310 INFO [28076]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:13:03.310 INFO [28076]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 10:13:03.322 INFO [28076]: COREGRADE is stopping... -- 10:13:03.323 DEBUG [28076]: Closing database connection -- 10:13:03.323 SQL [28076]: pgsql_close() -- 10:13:35.067 INFO [28073]: COREGRADE is starting... -- 10:13:35.067 INFO [28073]: Version from config: 1.0 -- 10:13:35.067 DEBUG [28073]: Connecting to database... -- 10:13:35.067 DEBUG [28073]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:13:35.067 SQL [28073]: pgsql_db_connect() -- 10:13:35.071 DEBUG [28073]: Database connection successful -- 10:13:35.071 INFO [28073]: _SERVER found -- 10:13:35.071 INFO [28073]: REMOTE_ADDR = 10.0.0.15 -- 10:13:35.071 INFO [28073]: SERVER_NAME = oameye.works.coregrade.com -- 10:13:35.071 INFO [28073]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=5bccgl14p8defg1ro3oe90pi9867ve6f -- 10:13:35.071 INFO [28073]: QUERY_STRING = /home/terms -- 10:13:35.071 INFO [28073]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 10:13:35.104 INFO [28073]: COREGRADE is stopping... -- 10:13:35.104 DEBUG [28073]: Closing database connection -- 10:13:35.104 SQL [28073]: pgsql_close() -- 10:13:35.279 INFO [28073]: COREGRADE is starting... -- 10:13:35.280 INFO [28073]: Version from config: 1.0 -- 10:13:35.280 DEBUG [28073]: Connecting to database... -- 10:13:35.280 DEBUG [28073]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:13:35.280 SQL [28073]: pgsql_db_connect() -- 10:13:35.284 DEBUG [28073]: Database connection successful -- 10:13:35.284 INFO [28073]: _SERVER found -- 10:13:35.284 INFO [28073]: REMOTE_ADDR = 10.0.0.15 -- 10:13:35.284 INFO [28073]: SERVER_NAME = oameye.works.coregrade.com -- 10:13:35.284 INFO [28073]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=kbj749rencidjru576cco4g0o88fk1si -- 10:13:35.284 INFO [28073]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:13:35.284 INFO [28073]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 10:13:35.295 INFO [28073]: COREGRADE is stopping... -- 10:13:35.295 DEBUG [28073]: Closing database connection -- 10:13:35.295 SQL [28073]: pgsql_close() -- 10:13:41.167 INFO [28075]: COREGRADE is starting... -- 10:13:41.168 INFO [28075]: Version from config: 1.0 -- 10:13:41.168 DEBUG [28075]: Connecting to database... -- 10:13:41.168 DEBUG [28075]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:13:41.168 SQL [28075]: pgsql_db_connect() -- 10:13:41.172 DEBUG [28075]: Database connection successful -- 10:13:41.172 INFO [28075]: _SERVER found -- 10:13:41.172 INFO [28075]: REMOTE_ADDR = 10.0.0.15 -- 10:13:41.172 INFO [28075]: SERVER_NAME = oameye.works.coregrade.com -- 10:13:41.172 INFO [28075]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=kbj749rencidjru576cco4g0o88fk1si -- 10:13:41.172 INFO [28075]: QUERY_STRING = /home/termsgg -- 10:13:41.172 INFO [28075]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 10:13:41.185 INFO [28075]: COREGRADE is stopping... -- 10:13:41.185 DEBUG [28075]: Closing database connection -- 10:13:41.185 SQL [28075]: pgsql_close() -- 10:14:42.790 INFO [28173]: COREGRADE is starting... -- 10:14:42.790 INFO [28173]: Version from config: 1.0 -- 10:14:42.790 DEBUG [28173]: Connecting to database... -- 10:14:42.790 DEBUG [28173]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:14:42.790 SQL [28173]: pgsql_db_connect() -- 10:14:42.794 DEBUG [28173]: Database connection successful -- 10:14:42.794 INFO [28173]: _SERVER found -- 10:14:42.794 INFO [28173]: REMOTE_ADDR = 10.0.0.15 -- 10:14:42.794 INFO [28173]: SERVER_NAME = oameye.works.coregrade.com -- 10:14:42.794 INFO [28173]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=updl80buume9o9tnpk75kf86edfdikf1 -- 10:14:42.794 INFO [28173]: QUERY_STRING = /fff -- 10:14:42.794 INFO [28173]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:14:42.807 INFO [28173]: COREGRADE is stopping... -- 10:14:42.807 DEBUG [28173]: Closing database connection -- 10:14:42.807 SQL [28173]: pgsql_close() -- 10:14:43.157 INFO [28173]: COREGRADE is starting... -- 10:14:43.158 INFO [28173]: Version from config: 1.0 -- 10:14:43.158 DEBUG [28173]: Connecting to database... -- 10:14:43.158 DEBUG [28173]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:14:43.158 SQL [28173]: pgsql_db_connect() -- 10:14:43.162 DEBUG [28173]: Database connection successful -- 10:14:43.162 INFO [28173]: _SERVER found -- 10:14:43.162 INFO [28173]: REMOTE_ADDR = 10.0.0.15 -- 10:14:43.162 INFO [28173]: SERVER_NAME = oameye.works.coregrade.com -- 10:14:43.162 INFO [28173]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=updl80buume9o9tnpk75kf86edfdikf1 -- 10:14:43.162 INFO [28173]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:14:43.162 INFO [28173]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:14:43.174 INFO [28173]: COREGRADE is stopping... -- 10:14:43.174 DEBUG [28173]: Closing database connection -- 10:14:43.174 SQL [28173]: pgsql_close() -- 10:25:36.656 INFO [28335]: COREGRADE is starting... -- 10:25:36.657 INFO [28335]: Version from config: 1.0 -- 10:25:36.657 DEBUG [28335]: Connecting to database... -- 10:25:36.657 DEBUG [28335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:25:36.657 SQL [28335]: pgsql_db_connect() -- 10:25:36.669 INFO [28336]: COREGRADE is starting... -- 10:25:36.669 INFO [28336]: Version from config: 1.0 -- 10:25:36.669 DEBUG [28336]: Connecting to database... -- 10:25:36.669 DEBUG [28336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:25:36.669 SQL [28336]: pgsql_db_connect() -- 10:25:36.661 DEBUG [28335]: Database connection successful -- 10:25:36.661 INFO [28335]: _SERVER found -- 10:25:36.661 INFO [28335]: REMOTE_ADDR = 10.0.0.15 -- 10:25:36.661 INFO [28335]: SERVER_NAME = oameye.works.coregrade.com -- 10:25:36.661 INFO [28335]: QUERY_STRING = /images/logo.png -- 10:25:36.661 INFO [28335]: HTTP_X_FORWARDED_FOR = 66.249.88.30 -- 10:25:36.676 INFO [28335]: COREGRADE is stopping... -- 10:25:36.676 DEBUG [28335]: Closing database connection -- 10:25:36.676 SQL [28335]: pgsql_close() -- 10:25:36.674 DEBUG [28336]: Database connection successful -- 10:25:36.674 INFO [28336]: _SERVER found -- 10:25:36.674 INFO [28336]: REMOTE_ADDR = 10.0.0.15 -- 10:25:36.674 INFO [28336]: SERVER_NAME = oameye.works.coregrade.com -- 10:25:36.674 INFO [28336]: QUERY_STRING = /images/logo.png -- 10:25:36.674 INFO [28336]: HTTP_X_FORWARDED_FOR = 66.249.88.26 -- 10:25:36.687 INFO [28336]: COREGRADE is stopping... -- 10:25:36.687 DEBUG [28336]: Closing database connection -- 10:25:36.687 SQL [28336]: pgsql_close() -- 11:00:06.951 INFO [28337]: COREGRADE is starting... -- 11:00:06.952 INFO [28337]: Version from config: 1.0 -- 11:00:06.952 DEBUG [28337]: Connecting to database... -- 11:00:06.952 DEBUG [28337]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:00:06.952 SQL [28337]: pgsql_db_connect() -- 11:00:06.957 DEBUG [28337]: Database connection successful -- 11:00:06.957 INFO [28337]: _SERVER found -- 11:00:06.957 INFO [28337]: REMOTE_ADDR = 10.0.0.15 -- 11:00:06.957 INFO [28337]: SERVER_NAME = oameye.works.coregrade.com -- 11:00:06.957 INFO [28337]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; _gat_gtag_UA_54829827_2=1 -- 11:00:06.957 INFO [28337]: QUERY_STRING = /auth/resetpass -- 11:00:06.957 INFO [28337]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:00:06.994 INFO [28337]: COREGRADE is stopping... -- 11:00:06.994 DEBUG [28337]: Closing database connection -- 11:00:06.994 SQL [28337]: pgsql_close() -- 11:00:07.400 INFO [28337]: COREGRADE is starting... -- 11:00:07.400 INFO [28337]: Version from config: 1.0 -- 11:00:07.400 DEBUG [28337]: Connecting to database... -- 11:00:07.400 DEBUG [28337]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:00:07.400 SQL [28337]: pgsql_db_connect() -- 11:00:07.404 DEBUG [28337]: Database connection successful -- 11:00:07.404 INFO [28337]: _SERVER found -- 11:00:07.404 INFO [28337]: REMOTE_ADDR = 10.0.0.15 -- 11:00:07.404 INFO [28337]: SERVER_NAME = oameye.works.coregrade.com -- 11:00:07.404 INFO [28337]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; _gat_gtag_UA_54829827_2=1; ci_session=b4jij7594t8ug1q31i2c44on5manj0u8 -- 11:00:07.404 INFO [28337]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:00:07.404 INFO [28337]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:00:07.416 INFO [28337]: COREGRADE is stopping... -- 11:00:07.416 DEBUG [28337]: Closing database connection -- 11:00:07.416 SQL [28337]: pgsql_close() -- 11:13:48.258 INFO [28074]: COREGRADE is starting... -- 11:13:48.259 INFO [28074]: Version from config: 1.0 -- 11:13:48.259 DEBUG [28074]: Connecting to database... -- 11:13:48.259 DEBUG [28074]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:13:48.259 SQL [28074]: pgsql_db_connect() -- 11:13:48.263 DEBUG [28074]: Database connection successful -- 11:13:48.263 INFO [28074]: _SERVER found -- 11:13:48.263 INFO [28074]: REMOTE_ADDR = 10.0.0.15 -- 11:13:48.263 INFO [28074]: SERVER_NAME = oameye.works.coregrade.com -- 11:13:48.263 INFO [28074]: QUERY_STRING = /images/logo.png -- 11:13:48.263 INFO [28074]: HTTP_X_FORWARDED_FOR = 66.249.88.26 -- 11:13:48.277 INFO [28074]: COREGRADE is stopping... -- 11:13:48.277 DEBUG [28074]: Closing database connection -- 11:13:48.277 SQL [28074]: pgsql_close() -- 11:22:43.168 INFO [28077]: COREGRADE is starting... -- 11:22:43.169 INFO [28077]: Version from config: 1.0 -- 11:22:43.169 DEBUG [28077]: Connecting to database... -- 11:22:43.169 DEBUG [28077]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:22:43.169 SQL [28077]: pgsql_db_connect() -- 11:22:43.173 DEBUG [28077]: Database connection successful -- 11:22:43.173 INFO [28077]: _SERVER found -- 11:22:43.173 INFO [28077]: REMOTE_ADDR = 10.0.0.15 -- 11:22:43.173 INFO [28077]: SERVER_NAME = oameye.works.coregrade.com -- 11:22:43.173 INFO [28077]: QUERY_STRING = /images/logo.png -- 11:22:43.173 INFO [28077]: HTTP_X_FORWARDED_FOR = 66.249.88.28 -- 11:22:43.187 INFO [28077]: COREGRADE is stopping... -- 11:22:43.187 DEBUG [28077]: Closing database connection -- 11:22:43.187 SQL [28077]: pgsql_close() -- 11:45:34.945 INFO [28338]: COREGRADE is starting... -- 11:45:34.945 INFO [28338]: Version from config: 1.0 -- 11:45:34.945 DEBUG [28338]: Connecting to database... -- 11:45:34.945 DEBUG [28338]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:45:34.945 SQL [28338]: pgsql_db_connect() -- 11:45:34.950 DEBUG [28338]: Database connection successful -- 11:45:34.950 INFO [28338]: _SERVER found -- 11:45:34.950 INFO [28338]: REMOTE_ADDR = 10.0.0.15 -- 11:45:34.950 INFO [28338]: SERVER_NAME = oameye.works.coregrade.com -- 11:45:34.950 INFO [28338]: QUERY_STRING = /images/logo.png -- 11:45:34.950 INFO [28338]: HTTP_X_FORWARDED_FOR = 66.249.88.28 -- 11:45:34.964 INFO [28338]: COREGRADE is stopping... -- 11:45:34.964 DEBUG [28338]: Closing database connection -- 11:45:34.964 SQL [28338]: pgsql_close() -- 11:45:40.336 INFO [28076]: COREGRADE is starting... -- 11:45:40.336 INFO [28076]: Version from config: 1.0 -- 11:45:40.336 DEBUG [28076]: Connecting to database... -- 11:45:40.336 DEBUG [28076]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:45:40.336 SQL [28076]: pgsql_db_connect() -- 11:45:40.340 DEBUG [28076]: Database connection successful -- 11:45:40.340 INFO [28076]: _SERVER found -- 11:45:40.340 INFO [28076]: REMOTE_ADDR = 10.0.0.15 -- 11:45:40.340 INFO [28076]: SERVER_NAME = oameye.works.coregrade.com -- 11:45:40.340 INFO [28076]: HTTP_COOKIE = _ga=GA1.2.741559843.1578756903 -- 11:45:40.340 INFO [28076]: QUERY_STRING = -- 11:45:40.340 INFO [28076]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:45:40.386 INFO [28076]: COREGRADE is stopping... -- 11:45:40.386 DEBUG [28076]: Closing database connection -- 11:45:40.386 SQL [28076]: pgsql_close() -- 11:45:45.254 INFO [28076]: COREGRADE is starting... -- 11:45:45.255 INFO [28076]: Version from config: 1.0 -- 11:45:45.255 DEBUG [28076]: Connecting to database... -- 11:45:45.255 DEBUG [28076]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:45:45.255 SQL [28076]: pgsql_db_connect() -- 11:45:45.292 INFO [28076]: COREGRADE is starting... -- 11:45:45.292 INFO [28076]: Version from config: 1.0 -- 11:45:45.292 DEBUG [28076]: Connecting to database... -- 11:45:45.292 DEBUG [28076]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:45:45.292 SQL [28076]: pgsql_db_connect() -- 11:45:45.297 DEBUG [28076]: Database connection successful -- 11:45:45.297 INFO [28076]: _SERVER found -- 11:45:45.297 INFO [28076]: REMOTE_ADDR = 10.0.0.15 -- 11:45:45.297 INFO [28076]: SERVER_NAME = oameye.works.coregrade.com -- 11:45:45.297 INFO [28076]: QUERY_STRING = rlink=61a91215fcb731b57621fb0547d2e6ab -- 11:45:45.297 INFO [28076]: HTTP_X_FORWARDED_FOR = 66.102.8.118 -- 11:45:45.297 INFO [28076]: SystemStatus()09-09-********~************ -- 11:45:45.297 INFO [28076]: long coregrade_api_main(CVars in, CVars &out) -- 11:45:45.297 INFO [28076]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 11:45:45.297 INFO [28076]: account calls -- 11:45:45.297 INFO [28076]: account_calls() -- 11:45:45.297 INFO [28076]: passwordReset() -- 11:45:45.297 INFO [28076]: confirmPassReset() -- 11:45:45.297 FLOG_MAX [28076]: REQ_STRING(reset_key) -- 11:45:45.297 FLOG_MAX [28076]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:45:45.297 SQL [28076]: pgsql_query() -- 11:45:45.297 SQL [28076]: About to run query: -- 11:45:45.297 SQL [28076]: SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='61a91215fcb731b57621fb0547d2e6ab' -- 11:45:45.300 SQL [28076]: Found rows: 0 -- 11:45:45.300 SQL [28076]: Found rows: 0 -- 11:45:45.300 INFO [28076]: RET: id= -- 11:45:45.300 INFO [28076]: RET: result=YES I GET TO BACK END -- 11:45:45.300 INFO [28076]: RET: status_advice=Contact support or Start all over -- 11:45:45.300 INFO [28076]: RET: status_message=Invalid PIN or disabled account -- 11:45:45.302 INFO [28076]: COREGRADE is stopping... -- 11:45:45.302 DEBUG [28076]: Closing database connection -- 11:45:45.302 SQL [28076]: pgsql_close() -- 11:45:45.259 DEBUG [28076]: Database connection successful -- 11:45:45.259 INFO [28076]: _SERVER found -- 11:45:45.259 INFO [28076]: REMOTE_ADDR = 10.0.0.15 -- 11:45:45.259 INFO [28076]: SERVER_NAME = oameye.works.coregrade.com -- 11:45:45.259 INFO [28076]: QUERY_STRING = /auth/passreset -- 11:45:45.259 INFO [28076]: HTTP_X_FORWARDED_FOR = 66.102.8.118 -- 11:45:45.302 INFO [28076]: COREGRADE is stopping... -- 11:45:45.302 DEBUG [28076]: Closing database connection -- 11:45:45.302 SQL [28076]: pgsql_close() -- 11:45:46.917 INFO [28808]: COREGRADE is starting... -- 11:45:46.918 INFO [28808]: Version from config: 1.0 -- 11:45:46.918 DEBUG [28808]: Connecting to database... -- 11:45:46.918 DEBUG [28808]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:45:46.918 SQL [28808]: pgsql_db_connect() -- 11:45:46.922 DEBUG [28808]: Database connection successful -- 11:45:46.922 INFO [28808]: _SERVER found -- 11:45:46.922 INFO [28808]: REMOTE_ADDR = 10.0.0.15 -- 11:45:46.922 INFO [28808]: SERVER_NAME = oameye.works.coregrade.com -- 11:45:46.922 INFO [28808]: HTTP_COOKIE = ci_session=nmm890kenpf77h0p94l62l0tpp9ulbs4 -- 11:45:46.922 INFO [28808]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:45:46.922 INFO [28808]: HTTP_X_FORWARDED_FOR = 66.102.8.118 -- 11:45:46.937 INFO [28808]: COREGRADE is stopping... -- 11:45:46.937 DEBUG [28808]: Closing database connection -- 11:45:46.937 SQL [28808]: pgsql_close() -- 11:45:59.461 INFO [28337]: COREGRADE is starting... -- 11:45:59.461 INFO [28337]: Version from config: 1.0 -- 11:45:59.461 DEBUG [28337]: Connecting to database... -- 11:45:59.461 DEBUG [28337]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:45:59.461 SQL [28337]: pgsql_db_connect() -- 11:45:59.498 INFO [28337]: COREGRADE is starting... -- 11:45:59.498 INFO [28337]: Version from config: 1.0 -- 11:45:59.498 DEBUG [28337]: Connecting to database... -- 11:45:59.498 DEBUG [28337]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:45:59.498 SQL [28337]: pgsql_db_connect() -- 11:45:59.502 DEBUG [28337]: Database connection successful -- 11:45:59.502 INFO [28337]: _SERVER found -- 11:45:59.502 INFO [28337]: REMOTE_ADDR = 10.0.0.15 -- 11:45:59.502 INFO [28337]: SERVER_NAME = oameye.works.coregrade.com -- 11:45:59.502 INFO [28337]: HTTP_COOKIE = _ga=GA1.2.741559843.1578756903 -- 11:45:59.502 INFO [28337]: QUERY_STRING = rlink=61a91215fcb731b57621fb0547d2e6ab -- 11:45:59.502 INFO [28337]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:45:59.502 INFO [28337]: SystemStatus()09-09-********~************ -- 11:45:59.502 INFO [28337]: long coregrade_api_main(CVars in, CVars &out) -- 11:45:59.502 INFO [28337]: long coregrade_api_main(CVars in, CVars &out) action =11017 -- 11:45:59.502 INFO [28337]: account calls -- 11:45:59.502 INFO [28337]: account_calls() -- 11:45:59.502 INFO [28337]: passwordReset() -- 11:45:59.502 INFO [28337]: confirmPassReset() -- 11:45:59.502 FLOG_MAX [28337]: REQ_STRING(reset_key) -- 11:45:59.503 FLOG_MAX [28337]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:45:59.503 SQL [28337]: pgsql_query() -- 11:45:59.503 SQL [28337]: About to run query: -- 11:45:59.503 SQL [28337]: SELECT *, id AS reset_id FROM password_reset WHERE status = 0 AND reset_key='61a91215fcb731b57621fb0547d2e6ab' -- 11:45:59.505 SQL [28337]: Found rows: 0 -- 11:45:59.505 SQL [28337]: Found rows: 0 -- 11:45:59.505 INFO [28337]: RET: id= -- 11:45:59.505 INFO [28337]: RET: result=YES I GET TO BACK END -- 11:45:59.505 INFO [28337]: RET: status_advice=Contact support or Start all over -- 11:45:59.505 INFO [28337]: RET: status_message=Invalid PIN or disabled account -- 11:45:59.506 INFO [28337]: COREGRADE is stopping... -- 11:45:59.506 DEBUG [28337]: Closing database connection -- 11:45:59.506 SQL [28337]: pgsql_close() -- 11:45:59.465 DEBUG [28337]: Database connection successful -- 11:45:59.465 INFO [28337]: _SERVER found -- 11:45:59.465 INFO [28337]: REMOTE_ADDR = 10.0.0.15 -- 11:45:59.465 INFO [28337]: SERVER_NAME = oameye.works.coregrade.com -- 11:45:59.465 INFO [28337]: HTTP_COOKIE = _ga=GA1.2.741559843.1578756903 -- 11:45:59.465 INFO [28337]: QUERY_STRING = /auth/passreset -- 11:45:59.465 INFO [28337]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:45:59.507 INFO [28337]: COREGRADE is stopping... -- 11:45:59.507 DEBUG [28337]: Closing database connection -- 11:45:59.507 SQL [28337]: pgsql_close() -- 11:45:59.626 INFO [28337]: COREGRADE is starting... -- 11:45:59.627 INFO [28337]: Version from config: 1.0 -- 11:45:59.627 DEBUG [28337]: Connecting to database... -- 11:45:59.627 DEBUG [28337]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:45:59.627 SQL [28337]: pgsql_db_connect() -- 11:45:59.631 DEBUG [28337]: Database connection successful -- 11:45:59.631 INFO [28337]: _SERVER found -- 11:45:59.631 INFO [28337]: REMOTE_ADDR = 10.0.0.15 -- 11:45:59.631 INFO [28337]: SERVER_NAME = oameye.works.coregrade.com -- 11:45:59.631 INFO [28337]: HTTP_COOKIE = ci_session=cth1qob55oho6t2vm6u2laeo20p1g62r; _ga=GA1.2.741559843.1578756903; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1972033761.1586879141 -- 11:45:59.631 INFO [28337]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:45:59.631 INFO [28337]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:45:59.642 INFO [28337]: COREGRADE is stopping... -- 11:45:59.642 DEBUG [28337]: Closing database connection -- 11:45:59.642 SQL [28337]: pgsql_close() -- 11:46:43.203 INFO [28074]: COREGRADE is starting... -- 11:46:43.204 INFO [28074]: Version from config: 1.0 -- 11:46:43.204 DEBUG [28074]: Connecting to database... -- 11:46:43.204 DEBUG [28074]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:46:43.204 SQL [28074]: pgsql_db_connect() -- 11:46:43.208 DEBUG [28074]: Database connection successful -- 11:46:43.208 INFO [28074]: _SERVER found -- 11:46:43.208 INFO [28074]: REMOTE_ADDR = 10.0.0.15 -- 11:46:43.208 INFO [28074]: SERVER_NAME = oameye.works.coregrade.com -- 11:46:43.208 INFO [28074]: QUERY_STRING = /favicon.ico -- 11:46:43.208 INFO [28074]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:46:43.220 INFO [28074]: COREGRADE is stopping... -- 11:46:43.220 DEBUG [28074]: Closing database connection -- 11:46:43.220 SQL [28074]: pgsql_close() -- 12:24:04.460 INFO [28076]: COREGRADE is starting... -- 12:24:04.460 INFO [28076]: Version from config: 1.0 -- 12:24:04.460 DEBUG [28076]: Connecting to database... -- 12:24:04.460 DEBUG [28076]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:24:04.460 SQL [28076]: pgsql_db_connect() -- 12:24:04.465 DEBUG [28076]: Database connection successful -- 12:24:04.465 INFO [28076]: _SERVER found -- 12:24:04.465 INFO [28076]: REMOTE_ADDR = 10.0.0.15 -- 12:24:04.465 INFO [28076]: SERVER_NAME = oameye.works.coregrade.com -- 12:24:04.465 INFO [28076]: QUERY_STRING = /images/logo.png -- 12:24:04.465 INFO [28076]: HTTP_X_FORWARDED_FOR = 66.249.88.26 -- 12:24:04.478 INFO [28076]: COREGRADE is stopping... -- 12:24:04.479 DEBUG [28076]: Closing database connection -- 12:24:04.479 SQL [28076]: pgsql_close() -- 12:24:05.232 INFO [28076]: COREGRADE is starting... -- 12:24:05.232 INFO [28076]: Version from config: 1.0 -- 12:24:05.232 DEBUG [28076]: Connecting to database... -- 12:24:05.232 DEBUG [28076]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:24:05.232 SQL [28076]: pgsql_db_connect() -- 12:24:05.236 DEBUG [28076]: Database connection successful -- 12:24:05.236 INFO [28076]: _SERVER found -- 12:24:05.236 INFO [28076]: REMOTE_ADDR = 10.0.0.15 -- 12:24:05.236 INFO [28076]: SERVER_NAME = oameye.works.coregrade.com -- 12:24:05.236 INFO [28076]: QUERY_STRING = /images/logo.png -- 12:24:05.236 INFO [28076]: HTTP_X_FORWARDED_FOR = 66.249.88.26 -- 12:24:05.248 INFO [28076]: COREGRADE is stopping... -- 12:24:05.248 DEBUG [28076]: Closing database connection -- 12:24:05.248 SQL [28076]: pgsql_close() -- 12:50:19.347 INFO [28075]: COREGRADE is starting... -- 12:50:19.347 INFO [28075]: Version from config: 1.0 -- 12:50:19.347 DEBUG [28075]: Connecting to database... -- 12:50:19.347 DEBUG [28075]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:50:19.347 SQL [28075]: pgsql_db_connect() -- 12:50:19.352 DEBUG [28075]: Database connection successful -- 12:50:19.352 INFO [28075]: _SERVER found -- 12:50:19.352 INFO [28075]: REMOTE_ADDR = 10.0.0.15 -- 12:50:19.352 INFO [28075]: SERVER_NAME = oameye.works.coregrade.com -- 12:50:19.352 INFO [28075]: QUERY_STRING = -- 12:50:19.352 INFO [28075]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 12:50:19.386 INFO [28075]: COREGRADE is stopping... -- 12:50:19.386 DEBUG [28075]: Closing database connection -- 12:50:19.386 SQL [28075]: pgsql_close() -- 12:53:48.750 INFO [28808]: COREGRADE is starting... -- 12:53:48.750 INFO [28808]: Version from config: 1.0 -- 12:53:48.750 DEBUG [28808]: Connecting to database... -- 12:53:48.750 DEBUG [28808]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:53:48.750 SQL [28808]: pgsql_db_connect() -- 12:53:48.755 DEBUG [28808]: Database connection successful -- 12:53:48.755 INFO [28808]: _SERVER found -- 12:53:48.755 INFO [28808]: REMOTE_ADDR = 10.0.0.15 -- 12:53:48.755 INFO [28808]: SERVER_NAME = oameye.works.coregrade.com -- 12:53:48.755 INFO [28808]: QUERY_STRING = /images/logo.png -- 12:53:48.755 INFO [28808]: HTTP_X_FORWARDED_FOR = 66.249.88.30 -- 12:53:48.769 INFO [28808]: COREGRADE is stopping... -- 12:53:48.769 DEBUG [28808]: Closing database connection -- 12:53:48.769 SQL [28808]: pgsql_close() -- 12:59:46.623 INFO [28337]: COREGRADE is starting... -- 12:59:46.623 INFO [28337]: Version from config: 1.0 -- 12:59:46.623 DEBUG [28337]: Connecting to database... -- 12:59:46.623 DEBUG [28337]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:59:46.623 SQL [28337]: pgsql_db_connect() -- 12:59:46.628 DEBUG [28337]: Database connection successful -- 12:59:46.628 INFO [28337]: _SERVER found -- 12:59:46.628 INFO [28337]: REMOTE_ADDR = 10.0.0.15 -- 12:59:46.628 INFO [28337]: SERVER_NAME = oameye.works.coregrade.com -- 12:59:46.628 INFO [28337]: QUERY_STRING = /images/logo.png -- 12:59:46.628 INFO [28337]: HTTP_X_FORWARDED_FOR = 66.249.88.30 -- 12:59:46.641 INFO [28337]: COREGRADE is stopping... -- 12:59:46.641 DEBUG [28337]: Closing database connection -- 12:59:46.641 SQL [28337]: pgsql_close() -- 13:03:54.444 INFO [28074]: COREGRADE is starting... -- 13:03:54.445 INFO [28074]: Version from config: 1.0 -- 13:03:54.445 DEBUG [28074]: Connecting to database... -- 13:03:54.445 DEBUG [28074]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:03:54.445 SQL [28074]: pgsql_db_connect() -- 13:03:54.449 DEBUG [28074]: Database connection successful -- 13:03:54.449 INFO [28074]: _SERVER found -- 13:03:54.449 INFO [28074]: REMOTE_ADDR = 10.0.0.15 -- 13:03:54.449 INFO [28074]: SERVER_NAME = oameye.works.coregrade.com -- 13:03:54.449 INFO [28074]: QUERY_STRING = /images/logo.png -- 13:03:54.449 INFO [28074]: HTTP_X_FORWARDED_FOR = 66.249.88.28 -- 13:03:54.462 INFO [28074]: COREGRADE is stopping... -- 13:03:54.462 DEBUG [28074]: Closing database connection -- 13:03:54.462 SQL [28074]: pgsql_close() -- 13:03:54.614 INFO [28074]: COREGRADE is starting... -- 13:03:54.614 INFO [28074]: Version from config: 1.0 -- 13:03:54.614 DEBUG [28074]: Connecting to database... -- 13:03:54.614 DEBUG [28074]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:03:54.614 SQL [28074]: pgsql_db_connect() -- 13:03:54.618 DEBUG [28074]: Database connection successful -- 13:03:54.618 INFO [28074]: _SERVER found -- 13:03:54.618 INFO [28074]: REMOTE_ADDR = 10.0.0.15 -- 13:03:54.618 INFO [28074]: SERVER_NAME = oameye.works.coregrade.com -- 13:03:54.618 INFO [28074]: QUERY_STRING = /images/logo.png -- 13:03:54.618 INFO [28074]: HTTP_X_FORWARDED_FOR = 66.249.88.26 -- 13:03:54.630 INFO [28074]: COREGRADE is stopping... -- 13:03:54.630 DEBUG [28074]: Closing database connection -- 13:03:54.630 SQL [28074]: pgsql_close() -- 13:24:08.254 INFO [28335]: COREGRADE is starting... -- 13:24:08.254 INFO [28335]: Version from config: 1.0 -- 13:24:08.254 DEBUG [28335]: Connecting to database... -- 13:24:08.254 DEBUG [28335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:24:08.255 SQL [28335]: pgsql_db_connect() -- 13:24:08.260 DEBUG [28335]: Database connection successful -- 13:24:08.260 INFO [28335]: _SERVER found -- 13:24:08.260 INFO [28335]: REMOTE_ADDR = 10.0.0.15 -- 13:24:08.260 INFO [28335]: SERVER_NAME = oameye.works.coregrade.com -- 13:24:08.260 INFO [28335]: QUERY_STRING = -- 13:24:08.260 INFO [28335]: HTTP_X_FORWARDED_FOR = 202.172.18.88 -- 13:24:08.302 INFO [28335]: COREGRADE is stopping... -- 13:24:08.302 DEBUG [28335]: Closing database connection -- 13:24:08.302 SQL [28335]: pgsql_close() -- 13:25:18.990 INFO [28336]: COREGRADE is starting... -- 13:25:18.990 INFO [28336]: Version from config: 1.0 -- 13:25:18.990 DEBUG [28336]: Connecting to database... -- 13:25:18.990 DEBUG [28336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:25:18.990 SQL [28336]: pgsql_db_connect() -- 13:25:18.995 DEBUG [28336]: Database connection successful -- 13:25:18.995 INFO [28336]: _SERVER found -- 13:25:18.995 INFO [28336]: REMOTE_ADDR = 10.0.0.15 -- 13:25:18.995 INFO [28336]: SERVER_NAME = oameye.works.coregrade.com -- 13:25:18.995 INFO [28336]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938 -- 13:25:18.995 INFO [28336]: QUERY_STRING = -- 13:25:18.995 INFO [28336]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:25:19.041 INFO [28336]: COREGRADE is stopping... -- 13:25:19.041 DEBUG [28336]: Closing database connection -- 13:25:19.041 SQL [28336]: pgsql_close() -- 13:25:19.320 INFO [28336]: COREGRADE is starting... -- 13:25:19.321 INFO [28336]: Version from config: 1.0 -- 13:25:19.321 DEBUG [28336]: Connecting to database... -- 13:25:19.321 DEBUG [28336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:25:19.321 SQL [28336]: pgsql_db_connect() -- 13:25:19.325 DEBUG [28336]: Database connection successful -- 13:25:19.325 INFO [28336]: _SERVER found -- 13:25:19.325 INFO [28336]: REMOTE_ADDR = 10.0.0.15 -- 13:25:19.325 INFO [28336]: SERVER_NAME = oameye.works.coregrade.com -- 13:25:19.325 INFO [28336]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=e7j5ahv5pgjni5v29fbtkad7h3ucprrk -- 13:25:19.325 INFO [28336]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:25:19.325 INFO [28336]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:25:19.337 INFO [28336]: COREGRADE is stopping... -- 13:25:19.337 DEBUG [28336]: Closing database connection -- 13:25:19.337 SQL [28336]: pgsql_close() -- 13:25:43.347 INFO [28076]: COREGRADE is starting... -- 13:25:43.347 INFO [28076]: Version from config: 1.0 -- 13:25:43.347 DEBUG [28076]: Connecting to database... -- 13:25:43.347 DEBUG [28076]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:25:43.347 SQL [28076]: pgsql_db_connect() -- 13:25:43.352 DEBUG [28076]: Database connection successful -- 13:25:43.352 INFO [28076]: _SERVER found -- 13:25:43.352 INFO [28076]: REMOTE_ADDR = 10.0.0.15 -- 13:25:43.352 INFO [28076]: SERVER_NAME = oameye.works.coregrade.com -- 13:25:43.352 INFO [28076]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=e7j5ahv5pgjni5v29fbtkad7h3ucprrk; _gat_gtag_UA_54829827_2=1 -- 13:25:43.352 INFO [28076]: QUERY_STRING = /home/terms -- 13:25:43.352 INFO [28076]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:25:43.387 INFO [28076]: COREGRADE is stopping... -- 13:25:43.387 DEBUG [28076]: Closing database connection -- 13:25:43.387 SQL [28076]: pgsql_close() -- 13:25:43.575 INFO [28076]: COREGRADE is starting... -- 13:25:43.576 INFO [28076]: Version from config: 1.0 -- 13:25:43.576 DEBUG [28076]: Connecting to database... -- 13:25:43.576 DEBUG [28076]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:25:43.576 SQL [28076]: pgsql_db_connect() -- 13:25:43.580 DEBUG [28076]: Database connection successful -- 13:25:43.580 INFO [28076]: _SERVER found -- 13:25:43.580 INFO [28076]: REMOTE_ADDR = 10.0.0.15 -- 13:25:43.580 INFO [28076]: SERVER_NAME = oameye.works.coregrade.com -- 13:25:43.580 INFO [28076]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=e7j5ahv5pgjni5v29fbtkad7h3ucprrk; _gat_gtag_UA_54829827_2=1 -- 13:25:43.580 INFO [28076]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:25:43.580 INFO [28076]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:25:43.592 INFO [28076]: COREGRADE is stopping... -- 13:25:43.592 DEBUG [28076]: Closing database connection -- 13:25:43.592 SQL [28076]: pgsql_close() -- 13:25:47.486 INFO [28076]: COREGRADE is starting... -- 13:25:47.487 INFO [28076]: Version from config: 1.0 -- 13:25:47.487 DEBUG [28076]: Connecting to database... -- 13:25:47.487 DEBUG [28076]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:25:47.487 SQL [28076]: pgsql_db_connect() -- 13:25:47.491 DEBUG [28076]: Database connection successful -- 13:25:47.491 INFO [28076]: _SERVER found -- 13:25:47.491 INFO [28076]: REMOTE_ADDR = 10.0.0.15 -- 13:25:47.491 INFO [28076]: SERVER_NAME = oameye.works.coregrade.com -- 13:25:47.491 INFO [28076]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=e7j5ahv5pgjni5v29fbtkad7h3ucprrk; _gat_gtag_UA_54829827_2=1 -- 13:25:47.491 INFO [28076]: QUERY_STRING = -- 13:25:47.491 INFO [28076]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:25:47.523 INFO [28076]: COREGRADE is stopping... -- 13:25:47.523 DEBUG [28076]: Closing database connection -- 13:25:47.523 SQL [28076]: pgsql_close() -- 13:25:50.493 INFO [28076]: COREGRADE is starting... -- 13:25:50.494 INFO [28076]: Version from config: 1.0 -- 13:25:50.494 DEBUG [28076]: Connecting to database... -- 13:25:50.494 DEBUG [28076]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:25:50.494 SQL [28076]: pgsql_db_connect() -- 13:25:50.498 DEBUG [28076]: Database connection successful -- 13:25:50.498 INFO [28076]: _SERVER found -- 13:25:50.498 INFO [28076]: REMOTE_ADDR = 10.0.0.15 -- 13:25:50.498 INFO [28076]: SERVER_NAME = oameye.works.coregrade.com -- 13:25:50.498 INFO [28076]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=e7j5ahv5pgjni5v29fbtkad7h3ucprrk; _gat_gtag_UA_54829827_2=1 -- 13:25:50.498 INFO [28076]: QUERY_STRING = /home/security -- 13:25:50.498 INFO [28076]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:25:50.529 INFO [28076]: COREGRADE is stopping... -- 13:25:50.529 DEBUG [28076]: Closing database connection -- 13:25:50.529 SQL [28076]: pgsql_close() -- 13:25:50.670 INFO [28076]: COREGRADE is starting... -- 13:25:50.670 INFO [28076]: Version from config: 1.0 -- 13:25:50.670 DEBUG [28076]: Connecting to database... -- 13:25:50.670 DEBUG [28076]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:25:50.670 SQL [28076]: pgsql_db_connect() -- 13:25:50.674 DEBUG [28076]: Database connection successful -- 13:25:50.674 INFO [28076]: _SERVER found -- 13:25:50.674 INFO [28076]: REMOTE_ADDR = 10.0.0.15 -- 13:25:50.674 INFO [28076]: SERVER_NAME = oameye.works.coregrade.com -- 13:25:50.674 INFO [28076]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=e7j5ahv5pgjni5v29fbtkad7h3ucprrk; _gat_gtag_UA_54829827_2=1 -- 13:25:50.674 INFO [28076]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:25:50.674 INFO [28076]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:25:50.685 INFO [28076]: COREGRADE is stopping... -- 13:25:50.685 DEBUG [28076]: Closing database connection -- 13:25:50.685 SQL [28076]: pgsql_close() -- 13:25:55.017 INFO [28076]: COREGRADE is starting... -- 13:25:55.018 INFO [28076]: Version from config: 1.0 -- 13:25:55.018 DEBUG [28076]: Connecting to database... -- 13:25:55.018 DEBUG [28076]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:25:55.018 SQL [28076]: pgsql_db_connect() -- 13:25:55.022 DEBUG [28076]: Database connection successful -- 13:25:55.022 INFO [28076]: _SERVER found -- 13:25:55.022 INFO [28076]: REMOTE_ADDR = 10.0.0.15 -- 13:25:55.022 INFO [28076]: SERVER_NAME = oameye.works.coregrade.com -- 13:25:55.022 INFO [28076]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=e7j5ahv5pgjni5v29fbtkad7h3ucprrk; _gat_gtag_UA_54829827_2=1 -- 13:25:55.022 INFO [28076]: QUERY_STRING = -- 13:25:55.022 INFO [28076]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:25:55.053 INFO [28076]: COREGRADE is stopping... -- 13:25:55.053 DEBUG [28076]: Closing database connection -- 13:25:55.053 SQL [28076]: pgsql_close() -- 13:25:58.487 INFO [28076]: COREGRADE is starting... -- 13:25:58.487 INFO [28076]: Version from config: 1.0 -- 13:25:58.487 DEBUG [28076]: Connecting to database... -- 13:25:58.487 DEBUG [28076]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:25:58.487 SQL [28076]: pgsql_db_connect() -- 13:25:58.491 DEBUG [28076]: Database connection successful -- 13:25:58.491 INFO [28076]: _SERVER found -- 13:25:58.491 INFO [28076]: REMOTE_ADDR = 10.0.0.15 -- 13:25:58.491 INFO [28076]: SERVER_NAME = oameye.works.coregrade.com -- 13:25:58.491 INFO [28076]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=e7j5ahv5pgjni5v29fbtkad7h3ucprrk; _gat_gtag_UA_54829827_2=1 -- 13:25:58.491 INFO [28076]: QUERY_STRING = /home/aboutus -- 13:25:58.491 INFO [28076]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:25:58.522 INFO [28076]: COREGRADE is stopping... -- 13:25:58.523 DEBUG [28076]: Closing database connection -- 13:25:58.523 SQL [28076]: pgsql_close() -- 13:25:58.679 INFO [28076]: COREGRADE is starting... -- 13:25:58.679 INFO [28076]: Version from config: 1.0 -- 13:25:58.679 DEBUG [28076]: Connecting to database... -- 13:25:58.679 DEBUG [28076]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:25:58.679 SQL [28076]: pgsql_db_connect() -- 13:25:58.683 DEBUG [28076]: Database connection successful -- 13:25:58.683 INFO [28076]: _SERVER found -- 13:25:58.683 INFO [28076]: REMOTE_ADDR = 10.0.0.15 -- 13:25:58.683 INFO [28076]: SERVER_NAME = oameye.works.coregrade.com -- 13:25:58.683 INFO [28076]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=e7j5ahv5pgjni5v29fbtkad7h3ucprrk; _gat_gtag_UA_54829827_2=1 -- 13:25:58.683 INFO [28076]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:25:58.683 INFO [28076]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:25:58.694 INFO [28076]: COREGRADE is stopping... -- 13:25:58.694 DEBUG [28076]: Closing database connection -- 13:25:58.694 SQL [28076]: pgsql_close() -- 13:26:21.532 INFO [28077]: COREGRADE is starting... -- 13:26:21.532 INFO [28077]: Version from config: 1.0 -- 13:26:21.532 DEBUG [28077]: Connecting to database... -- 13:26:21.532 DEBUG [28077]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:26:21.532 SQL [28077]: pgsql_db_connect() -- 13:26:21.536 DEBUG [28077]: Database connection successful -- 13:26:21.536 INFO [28077]: _SERVER found -- 13:26:21.536 INFO [28077]: REMOTE_ADDR = 10.0.0.15 -- 13:26:21.536 INFO [28077]: SERVER_NAME = oameye.works.coregrade.com -- 13:26:21.536 INFO [28077]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=e7j5ahv5pgjni5v29fbtkad7h3ucprrk -- 13:26:21.536 INFO [28077]: QUERY_STRING = /auth -- 13:26:21.536 INFO [28077]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:26:21.570 INFO [28077]: COREGRADE is stopping... -- 13:26:21.570 DEBUG [28077]: Closing database connection -- 13:26:21.570 SQL [28077]: pgsql_close() -- 13:26:21.769 INFO [28077]: COREGRADE is starting... -- 13:26:21.769 INFO [28077]: Version from config: 1.0 -- 13:26:21.769 DEBUG [28077]: Connecting to database... -- 13:26:21.769 DEBUG [28077]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:26:21.769 SQL [28077]: pgsql_db_connect() -- 13:26:21.773 DEBUG [28077]: Database connection successful -- 13:26:21.773 INFO [28077]: _SERVER found -- 13:26:21.773 INFO [28077]: REMOTE_ADDR = 10.0.0.15 -- 13:26:21.773 INFO [28077]: SERVER_NAME = oameye.works.coregrade.com -- 13:26:21.773 INFO [28077]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=e7j5ahv5pgjni5v29fbtkad7h3ucprrk -- 13:26:21.773 INFO [28077]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:26:21.773 INFO [28077]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:26:21.785 INFO [28077]: COREGRADE is stopping... -- 13:26:21.785 DEBUG [28077]: Closing database connection -- 13:26:21.785 SQL [28077]: pgsql_close() -- 13:26:24.585 INFO [28077]: COREGRADE is starting... -- 13:26:24.586 INFO [28077]: Version from config: 1.0 -- 13:26:24.586 DEBUG [28077]: Connecting to database... -- 13:26:24.586 DEBUG [28077]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:26:24.586 SQL [28077]: pgsql_db_connect() -- 13:26:24.620 INFO [28077]: COREGRADE is starting... -- 13:26:24.621 INFO [28077]: Version from config: 1.0 -- 13:26:24.621 DEBUG [28077]: Connecting to database... -- 13:26:24.621 DEBUG [28077]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:26:24.621 SQL [28077]: pgsql_db_connect() -- 13:26:24.625 DEBUG [28077]: Database connection successful -- 13:26:24.625 INFO [28077]: _SERVER found -- 13:26:24.625 INFO [28077]: REMOTE_ADDR = 10.0.0.15 -- 13:26:24.625 INFO [28077]: SERVER_NAME = oameye.works.coregrade.com -- 13:26:24.625 INFO [28077]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=e7j5ahv5pgjni5v29fbtkad7h3ucprrk -- 13:26:24.625 INFO [28077]: QUERY_STRING = -- 13:26:24.625 INFO [28077]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:26:24.625 INFO [28077]: SystemStatus()09-09-********~************ -- 13:26:24.625 INFO [28077]: long coregrade_api_main(CVars in, CVars &out) -- 13:26:24.625 INFO [28077]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 13:26:24.625 INFO [28077]: account calls -- 13:26:24.625 INFO [28077]: account_calls() -- 13:26:24.625 INFO [28077]: LoginCoreGradeAccount() -- 13:26:24.625 FLOG_MAX [28077]: REQ_STRING(username) -- 13:26:24.625 FLOG_MAX [28077]: REQ_STRING(password) -- 13:26:24.625 FLOG_MAX [28077]: REQ_STRING(sessionid) -- 13:26:24.625 FLOG_MAX [28077]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:26:24.625 SQL [28077]: pgsql_query() -- 13:26:24.625 SQL [28077]: About to run query: -- 13:26:24.625 SQL [28077]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 13:26:24.629 SQL [28077]: Found rows: 1 -- 13:26:24.629 FLOG_MAX [28077]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 13:26:24.629 INFO [28077]: long SessionCheck(long uid, const char *sessionid, int create ) -- 13:26:24.629 SQL [28077]: pgsql_exec() -- 13:26:24.629 SQL [28077]: About to run query: -- 13:26:24.629 SQL [28077]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 13:26:24.630 SQL [28077]: PQcmdTuples: 1 -- 13:26:24.630 SQL [28077]: Affected rows: 1 -- 13:26:24.630 SQL [28077]: pgsql_exec() -- 13:26:24.630 SQL [28077]: About to run query: -- 13:26:24.630 SQL [28077]: DELETE FROM members_session WHERE member_id=5 -- 13:26:24.631 SQL [28077]: PQcmdTuples: 0 -- 13:26:24.631 SQL [28077]: Affected rows: 0 -- 13:26:24.631 SQL [28077]: pgsql_query() -- 13:26:24.631 SQL [28077]: About to run query: -- 13:26:24.631 SQL [28077]: SELECT * FROM members_session WHERE member_id=5 AND session<>'A07CCB0AFF076E9BD288EA31AE6D67AA' -- 13:26:24.631 SQL [28077]: Found rows: 0 -- 13:26:24.631 SQL [28077]: Found rows: 0 -- 13:26:24.631 FLOG_MAX [28077]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:26:24.631 SQL [28077]: pgsql_query() -- 13:26:24.631 SQL [28077]: About to run query: -- 13:26:24.631 SQL [28077]: SELECT * FROM members_session WHERE member_id=5 AND session='A07CCB0AFF076E9BD288EA31AE6D67AA' -- 13:26:24.632 SQL [28077]: Found rows: 0 -- 13:26:24.632 SQL [28077]: Found rows: 0 -- 13:26:24.632 FLOG_MAX [28077]: insert_db_record() -- 13:26:24.632 SQL [28077]: pgsql_exec() -- 13:26:24.632 SQL [28077]: About to run query: -- 13:26:24.632 SQL [28077]: INSERT INTO members_session (member_id,session) VALUES ('5','A07CCB0AFF076E9BD288EA31AE6D67AA') -- 13:26:24.633 SQL [28077]: PQcmdTuples: 1 -- 13:26:24.633 SQL [28077]: Affected rows: 1 -- 13:26:24.633 FLOG_MAX [28077]: SELECT currval('members_session_id_seq') -- 13:26:24.633 SQL [28077]: pgsql_query() -- 13:26:24.633 SQL [28077]: About to run query: -- 13:26:24.633 SQL [28077]: SELECT currval('members_session_id_seq') -- 13:26:24.634 SQL [28077]: Found rows: 1 -- 13:26:24.634 INFO [28077]: CreateDefaultPage() -- 13:26:24.634 FLOG_MAX [28077]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:26:24.634 SQL [28077]: pgsql_query() -- 13:26:24.634 SQL [28077]: About to run query: -- 13:26:24.634 SQL [28077]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 13:26:24.634 SQL [28077]: Found rows: 1 -- 13:26:24.634 FLOG_MAX [28077]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 13:26:24.634 SQL [28077]: pgsql_query() -- 13:26:24.634 SQL [28077]: About to run query: -- 13:26:24.634 SQL [28077]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 13:26:24.635 SQL [28077]: Found rows: 1 -- 13:26:24.635 INFO [28077]: /CreateDefaultPage() -- 13:26:24.635 INFO [28077]: /LoginCoreGradeAccount() -- 13:26:24.635 INFO [28077]: RET: added=2020-02-05 06:47:23.982154 -- 13:26:24.635 INFO [28077]: RET: email=ameye+11@chiefsoft.com -- 13:26:24.635 INFO [28077]: RET: firstname=Olu -- 13:26:24.635 INFO [28077]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 13:26:24.635 INFO [28077]: RET: id=5 -- 13:26:24.635 INFO [28077]: RET: last_login= -- 13:26:24.635 INFO [28077]: RET: lastname=Amey -- 13:26:24.635 INFO [28077]: RET: loc=192.168.1.13 -- 13:26:24.635 INFO [28077]: RET: member_id=5 -- 13:26:24.635 INFO [28077]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 13:26:24.635 INFO [28077]: RET: phone= -- 13:26:24.635 INFO [28077]: RET: pid= -- 13:26:24.635 INFO [28077]: RET: result=YES I GET TO BACK END -- 13:26:24.635 INFO [28077]: RET: sessionid=A07CCB0AFF076E9BD288EA31AE6D67AA -- 13:26:24.635 INFO [28077]: RET: status=1 -- 13:26:24.635 INFO [28077]: RET: stauts=OK -- 13:26:24.635 INFO [28077]: RET: username=ameye+11@chiefsoft.com -- 13:26:24.635 INFO [28077]: RET: verified= -- 13:26:24.636 INFO [28077]: COREGRADE is stopping... -- 13:26:24.636 DEBUG [28077]: Closing database connection -- 13:26:24.636 SQL [28077]: pgsql_close() -- 13:26:24.590 DEBUG [28077]: Database connection successful -- 13:26:24.590 INFO [28077]: _SERVER found -- 13:26:24.590 INFO [28077]: REMOTE_ADDR = 10.0.0.15 -- 13:26:24.590 INFO [28077]: SERVER_NAME = oameye.works.coregrade.com -- 13:26:24.590 INFO [28077]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=e7j5ahv5pgjni5v29fbtkad7h3ucprrk -- 13:26:24.590 INFO [28077]: QUERY_STRING = /auth -- 13:26:24.590 INFO [28077]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:26:24.637 INFO [28077]: COREGRADE is stopping... -- 13:26:24.637 DEBUG [28077]: Closing database connection -- 13:26:24.637 SQL [28077]: pgsql_close() -- 13:26:24.652 INFO [28077]: COREGRADE is starting... -- 13:26:24.652 INFO [28077]: Version from config: 1.0 -- 13:26:24.652 DEBUG [28077]: Connecting to database... -- 13:26:24.653 DEBUG [28077]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:26:24.653 SQL [28077]: pgsql_db_connect() -- 13:26:24.657 DEBUG [28077]: Database connection successful -- 13:26:24.657 INFO [28077]: _SERVER found -- 13:26:24.657 INFO [28077]: REMOTE_ADDR = 10.0.0.15 -- 13:26:24.657 INFO [28077]: SERVER_NAME = oameye.works.coregrade.com -- 13:26:24.657 INFO [28077]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=e7j5ahv5pgjni5v29fbtkad7h3ucprrk -- 13:26:24.657 INFO [28077]: QUERY_STRING = /member/index -- 13:26:24.657 INFO [28077]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:26:24.697 INFO [28077]: COREGRADE is stopping... -- 13:26:24.697 DEBUG [28077]: Closing database connection -- 13:26:24.697 SQL [28077]: pgsql_close() -- 13:26:25.089 INFO [28077]: COREGRADE is starting... -- 13:26:25.089 INFO [28077]: Version from config: 1.0 -- 13:26:25.089 DEBUG [28077]: Connecting to database... -- 13:26:25.089 DEBUG [28077]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:26:25.089 SQL [28077]: pgsql_db_connect() -- 13:26:25.094 DEBUG [28077]: Database connection successful -- 13:26:25.094 INFO [28077]: _SERVER found -- 13:26:25.094 INFO [28077]: REMOTE_ADDR = 10.0.0.15 -- 13:26:25.094 INFO [28077]: SERVER_NAME = oameye.works.coregrade.com -- 13:26:25.094 INFO [28077]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=e7j5ahv5pgjni5v29fbtkad7h3ucprrk -- 13:26:25.094 INFO [28077]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 13:26:25.094 INFO [28077]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:26:25.105 INFO [28077]: COREGRADE is stopping... -- 13:26:25.105 DEBUG [28077]: Closing database connection -- 13:26:25.105 SQL [28077]: pgsql_close() -- 13:26:44.014 INFO [28173]: COREGRADE is starting... -- 13:26:44.015 INFO [28173]: Version from config: 1.0 -- 13:26:44.015 DEBUG [28173]: Connecting to database... -- 13:26:44.015 DEBUG [28173]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:26:44.015 SQL [28173]: pgsql_db_connect() -- 13:26:44.019 DEBUG [28173]: Database connection successful -- 13:26:44.019 INFO [28173]: _SERVER found -- 13:26:44.019 INFO [28173]: REMOTE_ADDR = 10.0.0.15 -- 13:26:44.019 INFO [28173]: SERVER_NAME = oameye.works.coregrade.com -- 13:26:44.019 INFO [28173]: QUERY_STRING = /home/aboutus -- 13:26:44.019 INFO [28173]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:26:44.054 INFO [28173]: COREGRADE is stopping... -- 13:26:44.054 DEBUG [28173]: Closing database connection -- 13:26:44.054 SQL [28173]: pgsql_close() -- 13:26:44.437 INFO [28173]: COREGRADE is starting... -- 13:26:44.437 INFO [28173]: Version from config: 1.0 -- 13:26:44.437 DEBUG [28173]: Connecting to database... -- 13:26:44.437 DEBUG [28173]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:26:44.438 SQL [28173]: pgsql_db_connect() -- 13:26:44.442 DEBUG [28173]: Database connection successful -- 13:26:44.442 INFO [28173]: _SERVER found -- 13:26:44.442 INFO [28173]: REMOTE_ADDR = 10.0.0.15 -- 13:26:44.442 INFO [28173]: SERVER_NAME = oameye.works.coregrade.com -- 13:26:44.442 INFO [28173]: HTTP_COOKIE = ci_session=n6ljabgpa9fjc1gffg63fufk0p9q8qb7 -- 13:26:44.442 INFO [28173]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:26:44.442 INFO [28173]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:26:44.453 INFO [28173]: COREGRADE is stopping... -- 13:26:44.453 DEBUG [28173]: Closing database connection -- 13:26:44.453 SQL [28173]: pgsql_close() -- 13:27:31.894 INFO [28807]: COREGRADE is starting... -- 13:27:31.894 INFO [28807]: Version from config: 1.0 -- 13:27:31.894 DEBUG [28807]: Connecting to database... -- 13:27:31.894 DEBUG [28807]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:27:31.894 SQL [28807]: pgsql_db_connect() -- 13:27:31.899 DEBUG [28807]: Database connection successful -- 13:27:31.899 INFO [28807]: _SERVER found -- 13:27:31.899 INFO [28807]: REMOTE_ADDR = 10.0.0.15 -- 13:27:31.899 INFO [28807]: SERVER_NAME = oameye.works.coregrade.com -- 13:27:31.899 INFO [28807]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=e7j5ahv5pgjni5v29fbtkad7h3ucprrk -- 13:27:31.899 INFO [28807]: QUERY_STRING = /member -- 13:27:31.899 INFO [28807]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:27:31.947 INFO [28807]: COREGRADE is stopping... -- 13:27:31.947 DEBUG [28807]: Closing database connection -- 13:27:31.947 SQL [28807]: pgsql_close() -- 13:27:32.132 INFO [28807]: COREGRADE is starting... -- 13:27:32.133 INFO [28807]: Version from config: 1.0 -- 13:27:32.133 DEBUG [28807]: Connecting to database... -- 13:27:32.133 DEBUG [28807]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:27:32.133 SQL [28807]: pgsql_db_connect() -- 13:27:32.137 DEBUG [28807]: Database connection successful -- 13:27:32.137 INFO [28807]: _SERVER found -- 13:27:32.137 INFO [28807]: REMOTE_ADDR = 10.0.0.15 -- 13:27:32.137 INFO [28807]: SERVER_NAME = oameye.works.coregrade.com -- 13:27:32.137 INFO [28807]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=e7j5ahv5pgjni5v29fbtkad7h3ucprrk -- 13:27:32.137 INFO [28807]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 13:27:32.137 INFO [28807]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:27:32.149 INFO [28807]: COREGRADE is stopping... -- 13:27:32.149 DEBUG [28807]: Closing database connection -- 13:27:32.149 SQL [28807]: pgsql_close() -- 13:33:48.081 INFO [28808]: COREGRADE is starting... -- 13:33:48.082 INFO [28808]: Version from config: 1.0 -- 13:33:48.082 DEBUG [28808]: Connecting to database... -- 13:33:48.082 DEBUG [28808]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:33:48.082 SQL [28808]: pgsql_db_connect() -- 13:33:48.086 DEBUG [28808]: Database connection successful -- 13:33:48.087 INFO [28808]: _SERVER found -- 13:33:48.087 INFO [28808]: REMOTE_ADDR = 10.0.0.15 -- 13:33:48.087 INFO [28808]: SERVER_NAME = oameye.works.coregrade.com -- 13:33:48.087 INFO [28808]: QUERY_STRING = /images/logo.png -- 13:33:48.087 INFO [28808]: HTTP_X_FORWARDED_FOR = 66.249.89.247 -- 13:33:48.099 INFO [28808]: COREGRADE is stopping... -- 13:33:48.099 DEBUG [28808]: Closing database connection -- 13:33:48.099 SQL [28808]: pgsql_close() -- 13:33:48.569 INFO [28337]: COREGRADE is starting... -- 13:33:48.569 INFO [28337]: Version from config: 1.0 -- 13:33:48.569 DEBUG [28337]: Connecting to database... -- 13:33:48.569 DEBUG [28337]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:33:48.569 SQL [28337]: pgsql_db_connect() -- 13:33:48.573 DEBUG [28337]: Database connection successful -- 13:33:48.573 INFO [28337]: _SERVER found -- 13:33:48.573 INFO [28337]: REMOTE_ADDR = 10.0.0.15 -- 13:33:48.573 INFO [28337]: SERVER_NAME = oameye.works.coregrade.com -- 13:33:48.573 INFO [28337]: QUERY_STRING = /images/logo.png -- 13:33:48.573 INFO [28337]: HTTP_X_FORWARDED_FOR = 66.249.89.243 -- 13:33:48.586 INFO [28337]: COREGRADE is stopping... -- 13:33:48.586 DEBUG [28337]: Closing database connection -- 13:33:48.586 SQL [28337]: pgsql_close() -- 13:33:48.954 INFO [28808]: COREGRADE is starting... -- 13:33:48.954 INFO [28808]: Version from config: 1.0 -- 13:33:48.954 DEBUG [28808]: Connecting to database... -- 13:33:48.954 DEBUG [28808]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:33:48.954 SQL [28808]: pgsql_db_connect() -- 13:33:48.959 DEBUG [28808]: Database connection successful -- 13:33:48.959 INFO [28808]: _SERVER found -- 13:33:48.959 INFO [28808]: REMOTE_ADDR = 10.0.0.15 -- 13:33:48.959 INFO [28808]: SERVER_NAME = oameye.works.coregrade.com -- 13:33:48.959 INFO [28808]: QUERY_STRING = /images/logo.png -- 13:33:48.959 INFO [28808]: HTTP_X_FORWARDED_FOR = 66.249.89.247 -- 13:33:48.970 INFO [28808]: COREGRADE is stopping... -- 13:33:48.970 DEBUG [28808]: Closing database connection -- 13:33:48.971 SQL [28808]: pgsql_close() -- 13:39:44.897 INFO [28074]: COREGRADE is starting... -- 13:39:44.897 INFO [28074]: Version from config: 1.0 -- 13:39:44.897 DEBUG [28074]: Connecting to database... -- 13:39:44.897 DEBUG [28074]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:39:44.897 SQL [28074]: pgsql_db_connect() -- 13:39:44.902 DEBUG [28074]: Database connection successful -- 13:39:44.902 INFO [28074]: _SERVER found -- 13:39:44.902 INFO [28074]: REMOTE_ADDR = 10.0.0.15 -- 13:39:44.902 INFO [28074]: SERVER_NAME = oameye.works.coregrade.com -- 13:39:44.902 INFO [28074]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=e7j5ahv5pgjni5v29fbtkad7h3ucprrk -- 13:39:44.902 INFO [28074]: QUERY_STRING = -- 13:39:44.902 INFO [28074]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:39:44.937 INFO [28074]: COREGRADE is stopping... -- 13:39:44.937 DEBUG [28074]: Closing database connection -- 13:39:44.937 SQL [28074]: pgsql_close() -- 13:39:45.085 INFO [28074]: COREGRADE is starting... -- 13:39:45.085 INFO [28074]: Version from config: 1.0 -- 13:39:45.085 DEBUG [28074]: Connecting to database... -- 13:39:45.085 DEBUG [28074]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:39:45.085 SQL [28074]: pgsql_db_connect() -- 13:39:45.090 DEBUG [28074]: Database connection successful -- 13:39:45.090 INFO [28074]: _SERVER found -- 13:39:45.090 INFO [28074]: REMOTE_ADDR = 10.0.0.15 -- 13:39:45.090 INFO [28074]: SERVER_NAME = oameye.works.coregrade.com -- 13:39:45.090 INFO [28074]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=hadria0pugbluglp0g85mvgjbrbuuea4 -- 13:39:45.090 INFO [28074]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:39:45.090 INFO [28074]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:39:45.101 INFO [28074]: COREGRADE is stopping... -- 13:39:45.101 DEBUG [28074]: Closing database connection -- 13:39:45.101 SQL [28074]: pgsql_close() -- 13:41:32.895 INFO [28335]: COREGRADE is starting... -- 13:41:32.896 INFO [28335]: Version from config: 1.0 -- 13:41:32.896 DEBUG [28335]: Connecting to database... -- 13:41:32.896 DEBUG [28335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:41:32.896 SQL [28335]: pgsql_db_connect() -- 13:41:32.900 DEBUG [28335]: Database connection successful -- 13:41:32.900 INFO [28335]: _SERVER found -- 13:41:32.900 INFO [28335]: REMOTE_ADDR = 10.0.0.15 -- 13:41:32.900 INFO [28335]: SERVER_NAME = oameye.works.coregrade.com -- 13:41:32.900 INFO [28335]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=hadria0pugbluglp0g85mvgjbrbuuea4 -- 13:41:32.900 INFO [28335]: QUERY_STRING = -- 13:41:32.900 INFO [28335]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:41:32.933 INFO [28335]: COREGRADE is stopping... -- 13:41:32.933 DEBUG [28335]: Closing database connection -- 13:41:32.933 SQL [28335]: pgsql_close() -- 13:41:33.065 INFO [28335]: COREGRADE is starting... -- 13:41:33.066 INFO [28335]: Version from config: 1.0 -- 13:41:33.066 DEBUG [28335]: Connecting to database... -- 13:41:33.066 DEBUG [28335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:41:33.066 SQL [28335]: pgsql_db_connect() -- 13:41:33.070 DEBUG [28335]: Database connection successful -- 13:41:33.070 INFO [28335]: _SERVER found -- 13:41:33.070 INFO [28335]: REMOTE_ADDR = 10.0.0.15 -- 13:41:33.070 INFO [28335]: SERVER_NAME = oameye.works.coregrade.com -- 13:41:33.070 INFO [28335]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=hadria0pugbluglp0g85mvgjbrbuuea4 -- 13:41:33.070 INFO [28335]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:41:33.070 INFO [28335]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:41:33.081 INFO [28335]: COREGRADE is stopping... -- 13:41:33.081 DEBUG [28335]: Closing database connection -- 13:41:33.081 SQL [28335]: pgsql_close() -- 13:43:46.807 INFO [28336]: COREGRADE is starting... -- 13:43:46.807 INFO [28336]: Version from config: 1.0 -- 13:43:46.807 DEBUG [28336]: Connecting to database... -- 13:43:46.807 DEBUG [28336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:43:46.807 SQL [28336]: pgsql_db_connect() -- 13:43:46.811 DEBUG [28336]: Database connection successful -- 13:43:46.811 INFO [28336]: _SERVER found -- 13:43:46.811 INFO [28336]: REMOTE_ADDR = 10.0.0.15 -- 13:43:46.811 INFO [28336]: SERVER_NAME = oameye.works.coregrade.com -- 13:43:46.811 INFO [28336]: QUERY_STRING = /images/logo.png -- 13:43:46.811 INFO [28336]: HTTP_X_FORWARDED_FOR = 66.249.89.243 -- 13:43:46.823 INFO [28336]: COREGRADE is stopping... -- 13:43:46.823 DEBUG [28336]: Closing database connection -- 13:43:46.823 SQL [28336]: pgsql_close() -- 13:44:57.553 INFO [28076]: COREGRADE is starting... -- 13:44:57.553 INFO [28076]: Version from config: 1.0 -- 13:44:57.553 DEBUG [28076]: Connecting to database... -- 13:44:57.553 DEBUG [28076]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:44:57.553 SQL [28076]: pgsql_db_connect() -- 13:44:57.558 DEBUG [28076]: Database connection successful -- 13:44:57.558 INFO [28076]: _SERVER found -- 13:44:57.558 INFO [28076]: REMOTE_ADDR = 10.0.0.15 -- 13:44:57.558 INFO [28076]: SERVER_NAME = oameye.works.coregrade.com -- 13:44:57.558 INFO [28076]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561 -- 13:44:57.558 INFO [28076]: QUERY_STRING = -- 13:44:57.558 INFO [28076]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 13:44:57.591 INFO [28076]: COREGRADE is stopping... -- 13:44:57.592 DEBUG [28076]: Closing database connection -- 13:44:57.592 SQL [28076]: pgsql_close() -- 13:44:57.773 INFO [28076]: COREGRADE is starting... -- 13:44:57.773 INFO [28076]: Version from config: 1.0 -- 13:44:57.773 DEBUG [28076]: Connecting to database... -- 13:44:57.773 DEBUG [28076]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:44:57.773 SQL [28076]: pgsql_db_connect() -- 13:44:57.777 DEBUG [28076]: Database connection successful -- 13:44:57.777 INFO [28076]: _SERVER found -- 13:44:57.777 INFO [28076]: REMOTE_ADDR = 10.0.0.15 -- 13:44:57.777 INFO [28076]: SERVER_NAME = oameye.works.coregrade.com -- 13:44:57.777 INFO [28076]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=tp8e1kv0e2rbarg0523gh375lu1hk224 -- 13:44:57.777 INFO [28076]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:44:57.777 INFO [28076]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 13:44:57.789 INFO [28076]: COREGRADE is stopping... -- 13:44:57.789 DEBUG [28076]: Closing database connection -- 13:44:57.789 SQL [28076]: pgsql_close() -- 13:45:24.654 INFO [28077]: COREGRADE is starting... -- 13:45:24.655 INFO [28077]: Version from config: 1.0 -- 13:45:24.655 DEBUG [28077]: Connecting to database... -- 13:45:24.655 DEBUG [28077]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:45:24.655 SQL [28077]: pgsql_db_connect() -- 13:45:24.659 DEBUG [28077]: Database connection successful -- 13:45:24.659 INFO [28077]: _SERVER found -- 13:45:24.659 INFO [28077]: REMOTE_ADDR = 10.0.0.15 -- 13:45:24.659 INFO [28077]: SERVER_NAME = oameye.works.coregrade.com -- 13:45:24.659 INFO [28077]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=tp8e1kv0e2rbarg0523gh375lu1hk224; _gat_gtag_UA_54829827_2=1 -- 13:45:24.659 INFO [28077]: QUERY_STRING = /auth/newuser -- 13:45:24.659 INFO [28077]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 13:45:24.693 INFO [28077]: COREGRADE is stopping... -- 13:45:24.693 DEBUG [28077]: Closing database connection -- 13:45:24.693 SQL [28077]: pgsql_close() -- 13:45:24.882 INFO [28077]: COREGRADE is starting... -- 13:45:24.883 INFO [28077]: Version from config: 1.0 -- 13:45:24.883 DEBUG [28077]: Connecting to database... -- 13:45:24.883 DEBUG [28077]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:45:24.883 SQL [28077]: pgsql_db_connect() -- 13:45:24.887 DEBUG [28077]: Database connection successful -- 13:45:24.887 INFO [28077]: _SERVER found -- 13:45:24.887 INFO [28077]: REMOTE_ADDR = 10.0.0.15 -- 13:45:24.887 INFO [28077]: SERVER_NAME = oameye.works.coregrade.com -- 13:45:24.887 INFO [28077]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=tp8e1kv0e2rbarg0523gh375lu1hk224; _gat_gtag_UA_54829827_2=1 -- 13:45:24.887 INFO [28077]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:45:24.887 INFO [28077]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 13:45:24.898 INFO [28077]: COREGRADE is stopping... -- 13:45:24.898 DEBUG [28077]: Closing database connection -- 13:45:24.898 SQL [28077]: pgsql_close() -- 13:48:15.164 INFO [28807]: COREGRADE is starting... -- 13:48:15.164 INFO [28173]: COREGRADE is starting... -- 13:48:15.164 INFO [28807]: Version from config: 1.0 -- 13:48:15.164 DEBUG [28807]: Connecting to database... -- 13:48:15.164 DEBUG [28807]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:48:15.164 SQL [28807]: pgsql_db_connect() -- 13:48:15.164 INFO [28173]: Version from config: 1.0 -- 13:48:15.164 DEBUG [28173]: Connecting to database... -- 13:48:15.164 DEBUG [28173]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:48:15.164 SQL [28173]: pgsql_db_connect() -- 13:48:15.169 DEBUG [28807]: Database connection successful -- 13:48:15.169 INFO [28807]: _SERVER found -- 13:48:15.169 INFO [28807]: REMOTE_ADDR = 10.0.0.15 -- 13:48:15.169 INFO [28807]: SERVER_NAME = oameye.works.coregrade.com -- 13:48:15.169 INFO [28807]: QUERY_STRING = /images/logo.png -- 13:48:15.169 INFO [28807]: HTTP_X_FORWARDED_FOR = 66.249.88.26 -- 13:48:15.183 INFO [28807]: COREGRADE is stopping... -- 13:48:15.183 DEBUG [28807]: Closing database connection -- 13:48:15.183 SQL [28807]: pgsql_close() -- 13:48:15.169 DEBUG [28173]: Database connection successful -- 13:48:15.169 INFO [28173]: _SERVER found -- 13:48:15.169 INFO [28173]: REMOTE_ADDR = 10.0.0.15 -- 13:48:15.169 INFO [28173]: SERVER_NAME = oameye.works.coregrade.com -- 13:48:15.169 INFO [28173]: QUERY_STRING = /images/logo.png -- 13:48:15.169 INFO [28173]: HTTP_X_FORWARDED_FOR = 66.249.88.26 -- 13:48:15.184 INFO [28173]: COREGRADE is stopping... -- 13:48:15.184 DEBUG [28173]: Closing database connection -- 13:48:15.184 SQL [28173]: pgsql_close() -- 13:48:15.187 INFO [28075]: COREGRADE is starting... -- 13:48:15.187 INFO [28075]: Version from config: 1.0 -- 13:48:15.187 DEBUG [28075]: Connecting to database... -- 13:48:15.187 DEBUG [28075]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:48:15.188 SQL [28075]: pgsql_db_connect() -- 13:48:15.192 DEBUG [28075]: Database connection successful -- 13:48:15.192 INFO [28075]: _SERVER found -- 13:48:15.192 INFO [28075]: REMOTE_ADDR = 10.0.0.15 -- 13:48:15.192 INFO [28075]: SERVER_NAME = oameye.works.coregrade.com -- 13:48:15.192 INFO [28075]: QUERY_STRING = /images/logo.png -- 13:48:15.192 INFO [28075]: HTTP_X_FORWARDED_FOR = 66.249.88.28 -- 13:48:15.204 INFO [28075]: COREGRADE is stopping... -- 13:48:15.204 DEBUG [28075]: Closing database connection -- 13:48:15.204 SQL [28075]: pgsql_close() -- 15:16:42.056 INFO [28337]: COREGRADE is starting... -- 15:16:42.057 INFO [28337]: Version from config: 1.0 -- 15:16:42.057 DEBUG [28337]: Connecting to database... -- 15:16:42.057 DEBUG [28337]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:16:42.057 SQL [28337]: pgsql_db_connect() -- 15:16:42.062 DEBUG [28337]: Database connection successful -- 15:16:42.062 INFO [28337]: _SERVER found -- 15:16:42.062 INFO [28337]: REMOTE_ADDR = 10.0.0.15 -- 15:16:42.062 INFO [28337]: SERVER_NAME = oameye.works.coregrade.com -- 15:16:42.062 INFO [28337]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=tp8e1kv0e2rbarg0523gh375lu1hk224 -- 15:16:42.062 INFO [28337]: QUERY_STRING = /auth/newuser -- 15:16:42.062 INFO [28337]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 15:16:42.101 INFO [28337]: COREGRADE is stopping... -- 15:16:42.101 DEBUG [28337]: Closing database connection -- 15:16:42.101 SQL [28337]: pgsql_close() -- 15:30:17.429 INFO [28074]: COREGRADE is starting... -- 15:30:17.430 INFO [28074]: Version from config: 1.0 -- 15:30:17.430 DEBUG [28074]: Connecting to database... -- 15:30:17.430 DEBUG [28074]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:17.430 SQL [28074]: pgsql_db_connect() -- 15:30:17.435 DEBUG [28074]: Database connection successful -- 15:30:17.435 INFO [28074]: _SERVER found -- 15:30:17.435 INFO [28074]: REMOTE_ADDR = 10.0.0.15 -- 15:30:17.435 INFO [28074]: SERVER_NAME = oameye.works.coregrade.com -- 15:30:17.435 INFO [28074]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878 -- 15:30:17.435 INFO [28074]: QUERY_STRING = -- 15:30:17.435 INFO [28074]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:30:17.470 INFO [28074]: COREGRADE is stopping... -- 15:30:17.470 DEBUG [28074]: Closing database connection -- 15:30:17.470 SQL [28074]: pgsql_close() -- 15:30:17.753 INFO [28335]: COREGRADE is starting... -- 15:30:17.753 INFO [28335]: Version from config: 1.0 -- 15:30:17.753 DEBUG [28335]: Connecting to database... -- 15:30:17.753 DEBUG [28335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:17.753 SQL [28335]: pgsql_db_connect() -- 15:30:17.757 DEBUG [28335]: Database connection successful -- 15:30:17.757 INFO [28335]: _SERVER found -- 15:30:17.757 INFO [28335]: REMOTE_ADDR = 10.0.0.15 -- 15:30:17.757 INFO [28335]: SERVER_NAME = oameye.works.coregrade.com -- 15:30:17.757 INFO [28335]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1423132374.1586796878; ci_session=sj9tb0f7q2lkes546ik4dhk31i45p6d6 -- 15:30:17.757 INFO [28335]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:30:17.757 INFO [28335]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:30:17.775 INFO [28335]: COREGRADE is stopping... -- 15:30:17.775 DEBUG [28335]: Closing database connection -- 15:30:17.775 SQL [28335]: pgsql_close() -- 15:45:32.934 INFO [28336]: COREGRADE is starting... -- 15:45:32.934 INFO [28336]: Version from config: 1.0 -- 15:45:32.934 DEBUG [28336]: Connecting to database... -- 15:45:32.934 DEBUG [28336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:45:32.934 SQL [28336]: pgsql_db_connect() -- 15:45:32.939 DEBUG [28336]: Database connection successful -- 15:45:32.939 INFO [28336]: _SERVER found -- 15:45:32.939 INFO [28336]: REMOTE_ADDR = 10.0.0.15 -- 15:45:32.939 INFO [28336]: SERVER_NAME = oameye.works.coregrade.com -- 15:45:32.939 INFO [28336]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735 -- 15:45:32.939 INFO [28336]: QUERY_STRING = /auth -- 15:45:32.939 INFO [28336]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:45:32.973 INFO [28336]: COREGRADE is stopping... -- 15:45:32.974 DEBUG [28336]: Closing database connection -- 15:45:32.974 SQL [28336]: pgsql_close() -- 15:45:40.161 INFO [28336]: COREGRADE is starting... -- 15:45:40.161 INFO [28336]: Version from config: 1.0 -- 15:45:40.161 DEBUG [28336]: Connecting to database... -- 15:45:40.161 DEBUG [28336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:45:40.161 SQL [28336]: pgsql_db_connect() -- 15:45:40.165 DEBUG [28336]: Database connection successful -- 15:45:40.165 INFO [28336]: _SERVER found -- 15:45:40.165 INFO [28336]: REMOTE_ADDR = 10.0.0.15 -- 15:45:40.165 INFO [28336]: SERVER_NAME = oameye.works.coregrade.com -- 15:45:40.165 INFO [28336]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; ci_session=mmi4efqma4h660svefjst6anpi5ong0l -- 15:45:40.165 INFO [28336]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:45:40.165 INFO [28336]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:45:40.176 INFO [28336]: COREGRADE is stopping... -- 15:45:40.176 DEBUG [28336]: Closing database connection -- 15:45:40.176 SQL [28336]: pgsql_close() -- 15:45:41.697 INFO [28336]: COREGRADE is starting... -- 15:45:41.697 INFO [28336]: Version from config: 1.0 -- 15:45:41.697 DEBUG [28336]: Connecting to database... -- 15:45:41.697 DEBUG [28336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:45:41.697 SQL [28336]: pgsql_db_connect() -- 15:45:41.701 DEBUG [28336]: Database connection successful -- 15:45:41.702 INFO [28336]: _SERVER found -- 15:45:41.702 INFO [28336]: REMOTE_ADDR = 10.0.0.15 -- 15:45:41.702 INFO [28336]: SERVER_NAME = oameye.works.coregrade.com -- 15:45:41.702 INFO [28336]: HTTP_COOKIE = _ga=GA1.2.1619457749.1586628735; ci_session=mmi4efqma4h660svefjst6anpi5ong0l -- 15:45:41.702 INFO [28336]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 15:45:41.702 INFO [28336]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:45:41.713 INFO [28336]: COREGRADE is stopping... -- 15:45:41.713 DEBUG [28336]: Closing database connection -- 15:45:41.713 SQL [28336]: pgsql_close() -- 15:52:03.381 INFO [28335]: COREGRADE is starting... -- 15:52:03.382 INFO [28335]: Version from config: 1.0 -- 15:52:03.382 DEBUG [28335]: Connecting to database... -- 15:52:03.382 DEBUG [28335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:52:03.382 SQL [28335]: pgsql_db_connect() -- 15:52:03.386 DEBUG [28335]: Database connection successful -- 15:52:03.386 INFO [28335]: _SERVER found -- 15:52:03.386 INFO [28335]: REMOTE_ADDR = 10.0.0.15 -- 15:52:03.386 INFO [28335]: SERVER_NAME = oameye.works.coregrade.com -- 15:52:03.386 INFO [28335]: QUERY_STRING = /images/logo.png -- 15:52:03.386 INFO [28335]: HTTP_X_FORWARDED_FOR = 66.249.88.26 -- 15:52:03.399 INFO [28335]: COREGRADE is stopping... -- 15:52:03.399 DEBUG [28335]: Closing database connection -- 15:52:03.399 SQL [28335]: pgsql_close() -- 15:52:03.615 INFO [28335]: COREGRADE is starting... -- 15:52:03.615 INFO [28335]: Version from config: 1.0 -- 15:52:03.615 DEBUG [28335]: Connecting to database... -- 15:52:03.615 DEBUG [28335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:52:03.615 SQL [28335]: pgsql_db_connect() -- 15:52:03.620 DEBUG [28335]: Database connection successful -- 15:52:03.620 INFO [28335]: _SERVER found -- 15:52:03.620 INFO [28335]: REMOTE_ADDR = 10.0.0.15 -- 15:52:03.620 INFO [28335]: SERVER_NAME = oameye.works.coregrade.com -- 15:52:03.620 INFO [28335]: QUERY_STRING = /images/logo.png -- 15:52:03.620 INFO [28335]: HTTP_X_FORWARDED_FOR = 66.249.88.26 -- 15:52:03.631 INFO [28335]: COREGRADE is stopping... -- 15:52:03.631 DEBUG [28335]: Closing database connection -- 15:52:03.631 SQL [28335]: pgsql_close() -- 15:52:07.328 INFO [28335]: COREGRADE is starting... -- 15:52:07.329 INFO [28335]: Version from config: 1.0 -- 15:52:07.329 DEBUG [28335]: Connecting to database... -- 15:52:07.329 DEBUG [28335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:52:07.329 SQL [28335]: pgsql_db_connect() -- 15:52:07.333 DEBUG [28335]: Database connection successful -- 15:52:07.333 INFO [28335]: _SERVER found -- 15:52:07.333 INFO [28335]: REMOTE_ADDR = 10.0.0.15 -- 15:52:07.333 INFO [28335]: SERVER_NAME = oameye.works.coregrade.com -- 15:52:07.333 INFO [28335]: QUERY_STRING = /images/logo.png -- 15:52:07.333 INFO [28335]: HTTP_X_FORWARDED_FOR = 66.249.88.28 -- 15:52:07.344 INFO [28335]: COREGRADE is stopping... -- 15:52:07.344 DEBUG [28335]: Closing database connection -- 15:52:07.344 SQL [28335]: pgsql_close() -- 15:54:53.165 INFO [28336]: COREGRADE is starting... -- 15:54:53.166 INFO [28336]: Version from config: 1.0 -- 15:54:53.166 DEBUG [28336]: Connecting to database... -- 15:54:53.166 DEBUG [28336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:54:53.166 SQL [28336]: pgsql_db_connect() -- 15:54:53.170 DEBUG [28336]: Database connection successful -- 15:54:53.170 INFO [28336]: _SERVER found -- 15:54:53.170 INFO [28336]: REMOTE_ADDR = 10.0.0.15 -- 15:54:53.170 INFO [28336]: SERVER_NAME = oameye.works.coregrade.com -- 15:54:53.170 INFO [28336]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845 -- 15:54:53.170 INFO [28336]: QUERY_STRING = -- 15:54:53.170 INFO [28336]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:54:53.203 INFO [28336]: COREGRADE is stopping... -- 15:54:53.203 DEBUG [28336]: Closing database connection -- 15:54:53.203 SQL [28336]: pgsql_close() -- 15:54:53.741 INFO [28336]: COREGRADE is starting... -- 15:54:53.741 INFO [28336]: Version from config: 1.0 -- 15:54:53.741 DEBUG [28336]: Connecting to database... -- 15:54:53.741 DEBUG [28336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:54:53.741 SQL [28336]: pgsql_db_connect() -- 15:54:53.745 DEBUG [28336]: Database connection successful -- 15:54:53.745 INFO [28336]: _SERVER found -- 15:54:53.745 INFO [28336]: REMOTE_ADDR = 10.0.0.15 -- 15:54:53.745 INFO [28336]: SERVER_NAME = oameye.works.coregrade.com -- 15:54:53.745 INFO [28336]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=dn1amtftevmp0l97t68fql0rjio06cnv; _gat_gtag_UA_54829827_2=1 -- 15:54:53.745 INFO [28336]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:54:53.745 INFO [28336]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:54:53.757 INFO [28336]: COREGRADE is stopping... -- 15:54:53.757 DEBUG [28336]: Closing database connection -- 15:54:53.757 SQL [28336]: pgsql_close() -- 15:54:56.051 INFO [28336]: COREGRADE is starting... -- 15:54:56.051 INFO [28336]: Version from config: 1.0 -- 15:54:56.051 DEBUG [28336]: Connecting to database... -- 15:54:56.051 DEBUG [28336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:54:56.051 SQL [28336]: pgsql_db_connect() -- 15:54:56.055 DEBUG [28336]: Database connection successful -- 15:54:56.055 INFO [28336]: _SERVER found -- 15:54:56.055 INFO [28336]: REMOTE_ADDR = 10.0.0.15 -- 15:54:56.055 INFO [28336]: SERVER_NAME = oameye.works.coregrade.com -- 15:54:56.055 INFO [28336]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=dn1amtftevmp0l97t68fql0rjio06cnv; _gat_gtag_UA_54829827_2=1 -- 15:54:56.055 INFO [28336]: QUERY_STRING = /welcome/viewLogin -- 15:54:56.055 INFO [28336]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:54:56.085 INFO [28336]: COREGRADE is stopping... -- 15:54:56.085 DEBUG [28336]: Closing database connection -- 15:54:56.085 SQL [28336]: pgsql_close() -- 15:54:56.096 INFO [28336]: COREGRADE is starting... -- 15:54:56.096 INFO [28336]: Version from config: 1.0 -- 15:54:56.096 DEBUG [28336]: Connecting to database... -- 15:54:56.096 DEBUG [28336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:54:56.096 SQL [28336]: pgsql_db_connect() -- 15:54:56.100 DEBUG [28336]: Database connection successful -- 15:54:56.100 INFO [28336]: _SERVER found -- 15:54:56.100 INFO [28336]: REMOTE_ADDR = 10.0.0.15 -- 15:54:56.100 INFO [28336]: SERVER_NAME = oameye.works.coregrade.com -- 15:54:56.100 INFO [28336]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=dn1amtftevmp0l97t68fql0rjio06cnv; _gat_gtag_UA_54829827_2=1 -- 15:54:56.100 INFO [28336]: QUERY_STRING = /auth -- 15:54:56.100 INFO [28336]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:54:56.131 INFO [28336]: COREGRADE is stopping... -- 15:54:56.131 DEBUG [28336]: Closing database connection -- 15:54:56.131 SQL [28336]: pgsql_close() -- 15:54:56.140 INFO [28336]: COREGRADE is starting... -- 15:54:56.140 INFO [28336]: Version from config: 1.0 -- 15:54:56.140 DEBUG [28336]: Connecting to database... -- 15:54:56.140 DEBUG [28336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:54:56.140 SQL [28336]: pgsql_db_connect() -- 15:54:56.145 DEBUG [28336]: Database connection successful -- 15:54:56.145 INFO [28336]: _SERVER found -- 15:54:56.145 INFO [28336]: REMOTE_ADDR = 10.0.0.15 -- 15:54:56.145 INFO [28336]: SERVER_NAME = oameye.works.coregrade.com -- 15:54:56.145 INFO [28336]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=dn1amtftevmp0l97t68fql0rjio06cnv; _gat_gtag_UA_54829827_2=1 -- 15:54:56.145 INFO [28336]: QUERY_STRING = /auth/index -- 15:54:56.145 INFO [28336]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:54:56.176 INFO [28336]: COREGRADE is stopping... -- 15:54:56.176 DEBUG [28336]: Closing database connection -- 15:54:56.176 SQL [28336]: pgsql_close() -- 15:55:08.474 INFO [28076]: COREGRADE is starting... -- 15:55:08.474 INFO [28076]: Version from config: 1.0 -- 15:55:08.474 DEBUG [28076]: Connecting to database... -- 15:55:08.474 DEBUG [28076]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:55:08.474 SQL [28076]: pgsql_db_connect() -- 15:55:08.478 DEBUG [28076]: Database connection successful -- 15:55:08.478 INFO [28076]: _SERVER found -- 15:55:08.478 INFO [28076]: REMOTE_ADDR = 10.0.0.15 -- 15:55:08.478 INFO [28076]: SERVER_NAME = oameye.works.coregrade.com -- 15:55:08.478 INFO [28076]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=dn1amtftevmp0l97t68fql0rjio06cnv; _gat_gtag_UA_54829827_2=1 -- 15:55:08.478 INFO [28076]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:55:08.478 INFO [28076]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:55:08.490 INFO [28076]: COREGRADE is stopping... -- 15:55:08.490 DEBUG [28076]: Closing database connection -- 15:55:08.490 SQL [28076]: pgsql_close() -- 16:07:32.570 INFO [28077]: COREGRADE is starting... -- 16:07:32.570 INFO [28077]: Version from config: 1.0 -- 16:07:32.570 DEBUG [28077]: Connecting to database... -- 16:07:32.570 DEBUG [28077]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:07:32.570 SQL [28077]: pgsql_db_connect() -- 16:07:32.575 DEBUG [28077]: Database connection successful -- 16:07:32.575 INFO [28077]: _SERVER found -- 16:07:32.575 INFO [28077]: REMOTE_ADDR = 10.0.0.15 -- 16:07:32.575 INFO [28077]: SERVER_NAME = oameye.works.coregrade.com -- 16:07:32.575 INFO [28077]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938 -- 16:07:32.575 INFO [28077]: QUERY_STRING = /auth -- 16:07:32.575 INFO [28077]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:07:32.610 INFO [28077]: COREGRADE is stopping... -- 16:07:32.610 DEBUG [28077]: Closing database connection -- 16:07:32.610 SQL [28077]: pgsql_close() -- 16:07:32.780 INFO [28077]: COREGRADE is starting... -- 16:07:32.781 INFO [28077]: Version from config: 1.0 -- 16:07:32.781 DEBUG [28077]: Connecting to database... -- 16:07:32.781 DEBUG [28077]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:07:32.781 SQL [28077]: pgsql_db_connect() -- 16:07:32.785 DEBUG [28077]: Database connection successful -- 16:07:32.785 INFO [28077]: _SERVER found -- 16:07:32.785 INFO [28077]: REMOTE_ADDR = 10.0.0.15 -- 16:07:32.785 INFO [28077]: SERVER_NAME = oameye.works.coregrade.com -- 16:07:32.785 INFO [28077]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=k3i31ce3hhrl6sntk8rgiq7ab5rgb98t -- 16:07:32.785 INFO [28077]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:07:32.785 INFO [28077]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:07:32.796 INFO [28077]: COREGRADE is stopping... -- 16:07:32.796 DEBUG [28077]: Closing database connection -- 16:07:32.796 SQL [28077]: pgsql_close() -- 16:19:38.996 INFO [28173]: COREGRADE is starting... -- 16:19:38.997 INFO [28173]: Version from config: 1.0 -- 16:19:38.997 DEBUG [28173]: Connecting to database... -- 16:19:38.997 DEBUG [28173]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:19:38.997 SQL [28173]: pgsql_db_connect() -- 16:19:39.002 DEBUG [28173]: Database connection successful -- 16:19:39.002 INFO [28173]: _SERVER found -- 16:19:39.002 INFO [28173]: REMOTE_ADDR = 10.0.0.15 -- 16:19:39.002 INFO [28173]: SERVER_NAME = oameye.works.coregrade.com -- 16:19:39.002 INFO [28173]: QUERY_STRING = -- 16:19:39.002 INFO [28173]: HTTP_X_FORWARDED_FOR = 198.108.66.144 -- 16:19:39.037 INFO [28173]: COREGRADE is stopping... -- 16:19:39.037 DEBUG [28173]: Closing database connection -- 16:19:39.037 SQL [28173]: pgsql_close() -- 17:10:37.702 INFO [28807]: COREGRADE is starting... -- 17:10:37.703 INFO [28807]: Version from config: 1.0 -- 17:10:37.703 DEBUG [28807]: Connecting to database... -- 17:10:37.703 DEBUG [28807]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:10:37.703 SQL [28807]: pgsql_db_connect() -- 17:10:37.707 DEBUG [28807]: Database connection successful -- 17:10:37.707 INFO [28807]: _SERVER found -- 17:10:37.707 INFO [28807]: REMOTE_ADDR = 10.0.0.15 -- 17:10:37.707 INFO [28807]: SERVER_NAME = works.coregrade.com -- 17:10:37.707 INFO [28807]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561 -- 17:10:37.707 INFO [28807]: QUERY_STRING = -- 17:10:37.707 INFO [28807]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 17:10:37.748 INFO [28807]: COREGRADE is stopping... -- 17:10:37.748 DEBUG [28807]: Closing database connection -- 17:10:37.748 SQL [28807]: pgsql_close() -- 17:10:38.083 INFO [28075]: COREGRADE is starting... -- 17:10:38.084 INFO [28075]: Version from config: 1.0 -- 17:10:38.084 DEBUG [28075]: Connecting to database... -- 17:10:38.084 DEBUG [28075]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:10:38.084 SQL [28075]: pgsql_db_connect() -- 17:10:38.088 DEBUG [28075]: Database connection successful -- 17:10:38.088 INFO [28075]: _SERVER found -- 17:10:38.088 INFO [28075]: REMOTE_ADDR = 10.0.0.15 -- 17:10:38.088 INFO [28075]: SERVER_NAME = works.coregrade.com -- 17:10:38.088 INFO [28075]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=koe7d0pubeln4ocitufa8s4hht6m3477 -- 17:10:38.088 INFO [28075]: QUERY_STRING = /assets/img/coregrade_subscribe.jpg -- 17:10:38.088 INFO [28075]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 17:10:38.101 INFO [28075]: COREGRADE is stopping... -- 17:10:38.101 DEBUG [28075]: Closing database connection -- 17:10:38.101 SQL [28075]: pgsql_close() -- 17:10:38.109 INFO [28808]: COREGRADE is starting... -- 17:10:38.109 INFO [28808]: Version from config: 1.0 -- 17:10:38.109 DEBUG [28808]: Connecting to database... -- 17:10:38.109 DEBUG [28808]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:10:38.109 SQL [28808]: pgsql_db_connect() -- 17:10:38.113 DEBUG [28808]: Database connection successful -- 17:10:38.113 INFO [28808]: _SERVER found -- 17:10:38.113 INFO [28808]: REMOTE_ADDR = 10.0.0.15 -- 17:10:38.113 INFO [28808]: SERVER_NAME = works.coregrade.com -- 17:10:38.113 INFO [28808]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=koe7d0pubeln4ocitufa8s4hht6m3477 -- 17:10:38.113 INFO [28808]: QUERY_STRING = /assets/img/footer_1.jpg -- 17:10:38.113 INFO [28808]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 17:10:38.124 INFO [28808]: COREGRADE is stopping... -- 17:10:38.124 DEBUG [28808]: Closing database connection -- 17:10:38.124 SQL [28808]: pgsql_close() -- 17:10:43.968 INFO [28074]: COREGRADE is starting... -- 17:10:43.968 INFO [28074]: Version from config: 1.0 -- 17:10:43.968 DEBUG [28074]: Connecting to database... -- 17:10:43.968 DEBUG [28074]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:10:43.968 SQL [28074]: pgsql_db_connect() -- 17:10:43.972 DEBUG [28074]: Database connection successful -- 17:10:43.972 INFO [28074]: _SERVER found -- 17:10:43.972 INFO [28074]: REMOTE_ADDR = 10.0.0.15 -- 17:10:43.972 INFO [28074]: SERVER_NAME = works.coregrade.com -- 17:10:43.972 INFO [28074]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=koe7d0pubeln4ocitufa8s4hht6m3477; _gat_gtag_UA_54829827_2=1 -- 17:10:43.972 INFO [28074]: QUERY_STRING = /hffhf -- 17:10:43.972 INFO [28074]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 17:10:43.984 INFO [28074]: COREGRADE is stopping... -- 17:10:43.985 DEBUG [28074]: Closing database connection -- 17:10:43.985 SQL [28074]: pgsql_close() -- 17:10:44.073 INFO [28074]: COREGRADE is starting... -- 17:10:44.073 INFO [28074]: Version from config: 1.0 -- 17:10:44.073 DEBUG [28074]: Connecting to database... -- 17:10:44.073 DEBUG [28074]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:10:44.073 SQL [28074]: pgsql_db_connect() -- 17:10:44.077 DEBUG [28074]: Database connection successful -- 17:10:44.077 INFO [28074]: _SERVER found -- 17:10:44.077 INFO [28074]: REMOTE_ADDR = 10.0.0.15 -- 17:10:44.077 INFO [28074]: SERVER_NAME = works.coregrade.com -- 17:10:44.077 INFO [28074]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=koe7d0pubeln4ocitufa8s4hht6m3477; _gat_gtag_UA_54829827_2=1 -- 17:10:44.077 INFO [28074]: QUERY_STRING = /favicon.ico -- 17:10:44.077 INFO [28074]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 17:10:44.089 INFO [28074]: COREGRADE is stopping... -- 17:10:44.089 DEBUG [28074]: Closing database connection -- 17:10:44.089 SQL [28074]: pgsql_close() -- 17:10:47.453 INFO [28074]: COREGRADE is starting... -- 17:10:47.454 INFO [28074]: Version from config: 1.0 -- 17:10:47.454 DEBUG [28074]: Connecting to database... -- 17:10:47.454 DEBUG [28074]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:10:47.454 SQL [28074]: pgsql_db_connect() -- 17:10:47.458 DEBUG [28074]: Database connection successful -- 17:10:47.458 INFO [28074]: _SERVER found -- 17:10:47.458 INFO [28074]: REMOTE_ADDR = 10.0.0.15 -- 17:10:47.458 INFO [28074]: SERVER_NAME = works.coregrade.com -- 17:10:47.458 INFO [28074]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=koe7d0pubeln4ocitufa8s4hht6m3477; _gat_gtag_UA_54829827_2=1 -- 17:10:47.458 INFO [28074]: QUERY_STRING = /hffhf -- 17:10:47.458 INFO [28074]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 17:10:47.469 INFO [28074]: COREGRADE is stopping... -- 17:10:47.469 DEBUG [28074]: Closing database connection -- 17:10:47.469 SQL [28074]: pgsql_close() -- 17:10:53.346 INFO [28335]: COREGRADE is starting... -- 17:10:53.347 INFO [28335]: Version from config: 1.0 -- 17:10:53.347 DEBUG [28335]: Connecting to database... -- 17:10:53.347 DEBUG [28335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:10:53.347 SQL [28335]: pgsql_db_connect() -- 17:10:53.352 DEBUG [28335]: Database connection successful -- 17:10:53.352 INFO [28335]: _SERVER found -- 17:10:53.352 INFO [28335]: REMOTE_ADDR = 10.0.0.15 -- 17:10:53.352 INFO [28335]: SERVER_NAME = works.coregrade.com -- 17:10:53.352 INFO [28335]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=koe7d0pubeln4ocitufa8s4hht6m3477; _gat_gtag_UA_54829827_2=1 -- 17:10:53.352 INFO [28335]: QUERY_STRING = /hffhf -- 17:10:53.352 INFO [28335]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 17:10:53.367 INFO [28335]: COREGRADE is stopping... -- 17:10:53.367 DEBUG [28335]: Closing database connection -- 17:10:53.367 SQL [28335]: pgsql_close() -- 17:10:54.863 INFO [28335]: COREGRADE is starting... -- 17:10:54.863 INFO [28335]: Version from config: 1.0 -- 17:10:54.863 DEBUG [28335]: Connecting to database... -- 17:10:54.863 DEBUG [28335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:10:54.863 SQL [28335]: pgsql_db_connect() -- 17:10:54.868 DEBUG [28335]: Database connection successful -- 17:10:54.868 INFO [28335]: _SERVER found -- 17:10:54.868 INFO [28335]: REMOTE_ADDR = 10.0.0.15 -- 17:10:54.868 INFO [28335]: SERVER_NAME = works.coregrade.com -- 17:10:54.868 INFO [28335]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=koe7d0pubeln4ocitufa8s4hht6m3477; _gat_gtag_UA_54829827_2=1 -- 17:10:54.868 INFO [28335]: QUERY_STRING = /hffhf -- 17:10:54.868 INFO [28335]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 17:10:54.879 INFO [28335]: COREGRADE is stopping... -- 17:10:54.879 DEBUG [28335]: Closing database connection -- 17:10:54.879 SQL [28335]: pgsql_close() -- 17:10:56.143 INFO [28335]: COREGRADE is starting... -- 17:10:56.143 INFO [28335]: Version from config: 1.0 -- 17:10:56.143 DEBUG [28335]: Connecting to database... -- 17:10:56.143 DEBUG [28335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:10:56.143 SQL [28335]: pgsql_db_connect() -- 17:10:56.147 DEBUG [28335]: Database connection successful -- 17:10:56.147 INFO [28335]: _SERVER found -- 17:10:56.147 INFO [28335]: REMOTE_ADDR = 10.0.0.15 -- 17:10:56.147 INFO [28335]: SERVER_NAME = works.coregrade.com -- 17:10:56.147 INFO [28335]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=koe7d0pubeln4ocitufa8s4hht6m3477; _gat_gtag_UA_54829827_2=1 -- 17:10:56.147 INFO [28335]: QUERY_STRING = /hffhf -- 17:10:56.147 INFO [28335]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 17:10:56.159 INFO [28335]: COREGRADE is stopping... -- 17:10:56.159 DEBUG [28335]: Closing database connection -- 17:10:56.159 SQL [28335]: pgsql_close() -- 17:10:56.983 INFO [28335]: COREGRADE is starting... -- 17:10:56.983 INFO [28335]: Version from config: 1.0 -- 17:10:56.983 DEBUG [28335]: Connecting to database... -- 17:10:56.983 DEBUG [28335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:10:56.983 SQL [28335]: pgsql_db_connect() -- 17:10:56.987 DEBUG [28335]: Database connection successful -- 17:10:56.987 INFO [28335]: _SERVER found -- 17:10:56.987 INFO [28335]: REMOTE_ADDR = 10.0.0.15 -- 17:10:56.987 INFO [28335]: SERVER_NAME = works.coregrade.com -- 17:10:56.987 INFO [28335]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=koe7d0pubeln4ocitufa8s4hht6m3477; _gat_gtag_UA_54829827_2=1 -- 17:10:56.987 INFO [28335]: QUERY_STRING = /hffhf -- 17:10:56.987 INFO [28335]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 17:10:56.998 INFO [28335]: COREGRADE is stopping... -- 17:10:56.998 DEBUG [28335]: Closing database connection -- 17:10:56.998 SQL [28335]: pgsql_close() -- 17:10:57.615 INFO [28335]: COREGRADE is starting... -- 17:10:57.616 INFO [28335]: Version from config: 1.0 -- 17:10:57.616 DEBUG [28335]: Connecting to database... -- 17:10:57.616 DEBUG [28335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:10:57.616 SQL [28335]: pgsql_db_connect() -- 17:10:57.620 DEBUG [28335]: Database connection successful -- 17:10:57.620 INFO [28335]: _SERVER found -- 17:10:57.620 INFO [28335]: REMOTE_ADDR = 10.0.0.15 -- 17:10:57.620 INFO [28335]: SERVER_NAME = works.coregrade.com -- 17:10:57.620 INFO [28335]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=koe7d0pubeln4ocitufa8s4hht6m3477; _gat_gtag_UA_54829827_2=1 -- 17:10:57.620 INFO [28335]: QUERY_STRING = /hffhf -- 17:10:57.620 INFO [28335]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 17:10:57.631 INFO [28335]: COREGRADE is stopping... -- 17:10:57.631 DEBUG [28335]: Closing database connection -- 17:10:57.631 SQL [28335]: pgsql_close() -- 17:40:21.603 INFO [6489]: COREGRADE is starting... -- 17:40:21.603 INFO [6489]: Version from config: 1.0 -- 17:40:21.603 DEBUG [6489]: Connecting to database... -- 17:40:21.603 DEBUG [6489]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:40:21.603 SQL [6489]: pgsql_db_connect() -- 17:40:21.608 DEBUG [6489]: Database connection successful -- 17:40:21.608 INFO [6489]: _SERVER found -- 17:40:21.608 INFO [6489]: REMOTE_ADDR = 10.0.0.15 -- 17:40:21.608 INFO [6489]: SERVER_NAME = oameye.works.coregrade.com -- 17:40:21.608 INFO [6489]: QUERY_STRING = -- 17:40:21.608 INFO [6489]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:40:21.654 INFO [6489]: COREGRADE is stopping... -- 17:40:21.654 DEBUG [6489]: Closing database connection -- 17:40:21.654 SQL [6489]: pgsql_close() -- 17:40:21.964 INFO [6489]: COREGRADE is starting... -- 17:40:21.964 INFO [6489]: Version from config: 1.0 -- 17:40:21.964 DEBUG [6489]: Connecting to database... -- 17:40:21.964 DEBUG [6489]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:40:21.964 SQL [6489]: pgsql_db_connect() -- 17:40:21.968 DEBUG [6489]: Database connection successful -- 17:40:21.968 INFO [6489]: _SERVER found -- 17:40:21.968 INFO [6489]: REMOTE_ADDR = 10.0.0.15 -- 17:40:21.968 INFO [6489]: SERVER_NAME = oameye.works.coregrade.com -- 17:40:21.968 INFO [6489]: HTTP_COOKIE = ci_session=9g5cem0m5p2j9sjsmahq83r6ik3js35a -- 17:40:21.968 INFO [6489]: QUERY_STRING = /assets/img/footer_1.jpg -- 17:40:21.968 INFO [6489]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:40:21.981 INFO [6489]: COREGRADE is stopping... -- 17:40:21.981 DEBUG [6489]: Closing database connection -- 17:40:21.981 SQL [6489]: pgsql_close() -- 17:41:19.051 INFO [6492]: COREGRADE is starting... -- 17:41:19.051 INFO [6492]: Version from config: 1.0 -- 17:41:19.051 DEBUG [6492]: Connecting to database... -- 17:41:19.051 DEBUG [6492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:19.051 SQL [6492]: pgsql_db_connect() -- 17:41:19.056 DEBUG [6492]: Database connection successful -- 17:41:19.056 INFO [6492]: _SERVER found -- 17:41:19.056 INFO [6492]: REMOTE_ADDR = 10.0.0.15 -- 17:41:19.056 INFO [6492]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:19.056 INFO [6492]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561 -- 17:41:19.056 INFO [6492]: QUERY_STRING = /auth/newuser -- 17:41:19.056 INFO [6492]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 17:41:19.095 INFO [6492]: COREGRADE is stopping... -- 17:41:19.095 DEBUG [6492]: Closing database connection -- 17:41:19.095 SQL [6492]: pgsql_close() -- 17:41:19.309 INFO [6492]: COREGRADE is starting... -- 17:41:19.309 INFO [6492]: Version from config: 1.0 -- 17:41:19.309 DEBUG [6492]: Connecting to database... -- 17:41:19.309 DEBUG [6492]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:19.309 SQL [6492]: pgsql_db_connect() -- 17:41:19.313 DEBUG [6492]: Database connection successful -- 17:41:19.313 INFO [6492]: _SERVER found -- 17:41:19.313 INFO [6492]: REMOTE_ADDR = 10.0.0.15 -- 17:41:19.313 INFO [6492]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:19.313 INFO [6492]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=197q8ctvb5ol1t9h534qofp8f2k0oh6s -- 17:41:19.313 INFO [6492]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:41:19.313 INFO [6492]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 17:41:19.326 INFO [6492]: COREGRADE is stopping... -- 17:41:19.326 DEBUG [6492]: Closing database connection -- 17:41:19.326 SQL [6492]: pgsql_close() -- 17:41:21.239 INFO [6477]: COREGRADE is starting... -- 17:41:21.239 INFO [6477]: Version from config: 1.0 -- 17:41:21.239 DEBUG [6477]: Connecting to database... -- 17:41:21.239 DEBUG [6477]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:21.239 SQL [6477]: pgsql_db_connect() -- 17:41:21.243 DEBUG [6477]: Database connection successful -- 17:41:21.243 INFO [6477]: _SERVER found -- 17:41:21.243 INFO [6477]: REMOTE_ADDR = 10.0.0.15 -- 17:41:21.243 INFO [6477]: SERVER_NAME = works.coregrade.com -- 17:41:21.243 INFO [6477]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800 -- 17:41:21.243 INFO [6477]: QUERY_STRING = -- 17:41:21.243 INFO [6477]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:41:21.285 INFO [6477]: COREGRADE is stopping... -- 17:41:21.285 DEBUG [6477]: Closing database connection -- 17:41:21.286 SQL [6477]: pgsql_close() -- 17:41:22.113 INFO [6497]: COREGRADE is starting... -- 17:41:22.113 INFO [6497]: Version from config: 1.0 -- 17:41:22.113 DEBUG [6497]: Connecting to database... -- 17:41:22.113 DEBUG [6497]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:22.113 SQL [6497]: pgsql_db_connect() -- 17:41:22.118 DEBUG [6497]: Database connection successful -- 17:41:22.118 INFO [6497]: _SERVER found -- 17:41:22.118 INFO [6497]: REMOTE_ADDR = 10.0.0.15 -- 17:41:22.118 INFO [6497]: SERVER_NAME = works.coregrade.com -- 17:41:22.118 INFO [6497]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=12mptvt48rqre907tjse0305jrvm3d64 -- 17:41:22.118 INFO [6497]: QUERY_STRING = /assets/img/coregrade_subscribe.jpg -- 17:41:22.118 INFO [6497]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:41:22.133 INFO [6497]: COREGRADE is stopping... -- 17:41:22.133 DEBUG [6497]: Closing database connection -- 17:41:22.133 SQL [6497]: pgsql_close() -- 17:41:22.160 INFO [6478]: COREGRADE is starting... -- 17:41:22.160 INFO [6478]: Version from config: 1.0 -- 17:41:22.160 DEBUG [6478]: Connecting to database... -- 17:41:22.160 DEBUG [6478]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:22.160 SQL [6478]: pgsql_db_connect() -- 17:41:22.165 DEBUG [6478]: Database connection successful -- 17:41:22.165 INFO [6478]: _SERVER found -- 17:41:22.165 INFO [6478]: REMOTE_ADDR = 10.0.0.15 -- 17:41:22.165 INFO [6478]: SERVER_NAME = works.coregrade.com -- 17:41:22.165 INFO [6478]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=12mptvt48rqre907tjse0305jrvm3d64 -- 17:41:22.165 INFO [6478]: QUERY_STRING = /assets/img/footer_1.jpg -- 17:41:22.165 INFO [6478]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:41:22.178 INFO [6478]: COREGRADE is stopping... -- 17:41:22.178 DEBUG [6478]: Closing database connection -- 17:41:22.178 SQL [6478]: pgsql_close() -- 17:41:28.522 INFO [6483]: COREGRADE is starting... -- 17:41:28.523 INFO [6483]: Version from config: 1.0 -- 17:41:28.523 DEBUG [6483]: Connecting to database... -- 17:41:28.523 DEBUG [6483]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:28.523 SQL [6483]: pgsql_db_connect() -- 17:41:28.527 DEBUG [6483]: Database connection successful -- 17:41:28.527 INFO [6483]: _SERVER found -- 17:41:28.527 INFO [6483]: REMOTE_ADDR = 10.0.0.15 -- 17:41:28.527 INFO [6483]: SERVER_NAME = works.coregrade.com -- 17:41:28.527 INFO [6483]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=koe7d0pubeln4ocitufa8s4hht6m3477 -- 17:41:28.527 INFO [6483]: QUERY_STRING = /ggg -- 17:41:28.527 INFO [6483]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 17:41:28.540 INFO [6483]: COREGRADE is stopping... -- 17:41:28.540 DEBUG [6483]: Closing database connection -- 17:41:28.540 SQL [6483]: pgsql_close() -- 17:41:30.911 INFO [6483]: COREGRADE is starting... -- 17:41:30.911 INFO [6483]: Version from config: 1.0 -- 17:41:30.911 DEBUG [6483]: Connecting to database... -- 17:41:30.911 DEBUG [6483]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:30.911 SQL [6483]: pgsql_db_connect() -- 17:41:30.915 DEBUG [6483]: Database connection successful -- 17:41:30.915 INFO [6483]: _SERVER found -- 17:41:30.915 INFO [6483]: REMOTE_ADDR = 10.0.0.15 -- 17:41:30.915 INFO [6483]: SERVER_NAME = works.coregrade.com -- 17:41:30.915 INFO [6483]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=koe7d0pubeln4ocitufa8s4hht6m3477 -- 17:41:30.915 INFO [6483]: QUERY_STRING = /ggg -- 17:41:30.915 INFO [6483]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 17:41:30.927 INFO [6483]: COREGRADE is stopping... -- 17:41:30.927 DEBUG [6483]: Closing database connection -- 17:41:30.927 SQL [6483]: pgsql_close() -- 17:41:32.740 INFO [6483]: COREGRADE is starting... -- 17:41:32.740 INFO [6483]: Version from config: 1.0 -- 17:41:32.740 DEBUG [6483]: Connecting to database... -- 17:41:32.740 DEBUG [6483]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:32.740 SQL [6483]: pgsql_db_connect() -- 17:41:32.744 DEBUG [6483]: Database connection successful -- 17:41:32.744 INFO [6483]: _SERVER found -- 17:41:32.744 INFO [6483]: REMOTE_ADDR = 10.0.0.15 -- 17:41:32.744 INFO [6483]: SERVER_NAME = works.coregrade.com -- 17:41:32.744 INFO [6483]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=koe7d0pubeln4ocitufa8s4hht6m3477 -- 17:41:32.744 INFO [6483]: QUERY_STRING = /ggg -- 17:41:32.744 INFO [6483]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 17:41:32.756 INFO [6483]: COREGRADE is stopping... -- 17:41:32.756 DEBUG [6483]: Closing database connection -- 17:41:32.756 SQL [6483]: pgsql_close() -- 17:41:38.214 INFO [12621]: COREGRADE is starting... -- 17:41:38.214 INFO [12621]: Version from config: 1.0 -- 17:41:38.214 DEBUG [12621]: Connecting to database... -- 17:41:38.214 DEBUG [12621]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:38.214 SQL [12621]: pgsql_db_connect() -- 17:41:38.218 DEBUG [12621]: Database connection successful -- 17:41:38.218 INFO [12621]: _SERVER found -- 17:41:38.218 INFO [12621]: REMOTE_ADDR = 10.0.0.15 -- 17:41:38.218 INFO [12621]: SERVER_NAME = works.coregrade.com -- 17:41:38.218 INFO [12621]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=koe7d0pubeln4ocitufa8s4hht6m3477 -- 17:41:38.218 INFO [12621]: QUERY_STRING = /ggg -- 17:41:38.218 INFO [12621]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 17:41:38.233 INFO [12621]: COREGRADE is stopping... -- 17:41:38.233 DEBUG [12621]: Closing database connection -- 17:41:38.233 SQL [12621]: pgsql_close() -- 17:41:57.997 INFO [12955]: COREGRADE is starting... -- 17:41:57.997 INFO [12955]: Version from config: 1.0 -- 17:41:57.997 DEBUG [12955]: Connecting to database... -- 17:41:57.997 DEBUG [12955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:57.997 SQL [12955]: pgsql_db_connect() -- 17:41:58.002 DEBUG [12955]: Database connection successful -- 17:41:58.002 INFO [12955]: _SERVER found -- 17:41:58.002 INFO [12955]: REMOTE_ADDR = 10.0.0.15 -- 17:41:58.002 INFO [12955]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:58.002 INFO [12955]: HTTP_COOKIE = ci_session=9g5cem0m5p2j9sjsmahq83r6ik3js35a; _gid=GA1.2.237776736.1586900422; _ga=GA1.2.1401023120.1586900422 -- 17:41:58.002 INFO [12955]: QUERY_STRING = -- 17:41:58.002 INFO [12955]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:41:58.047 INFO [12955]: COREGRADE is stopping... -- 17:41:58.047 DEBUG [12955]: Closing database connection -- 17:41:58.047 SQL [12955]: pgsql_close() -- 17:41:58.249 INFO [12955]: COREGRADE is starting... -- 17:41:58.250 INFO [12955]: Version from config: 1.0 -- 17:41:58.250 DEBUG [12955]: Connecting to database... -- 17:41:58.250 DEBUG [12955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:58.250 SQL [12955]: pgsql_db_connect() -- 17:41:58.254 DEBUG [12955]: Database connection successful -- 17:41:58.254 INFO [12955]: _SERVER found -- 17:41:58.254 INFO [12955]: REMOTE_ADDR = 10.0.0.15 -- 17:41:58.254 INFO [12955]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:58.254 INFO [12955]: HTTP_COOKIE = ci_session=9g5cem0m5p2j9sjsmahq83r6ik3js35a; _gid=GA1.2.237776736.1586900422; _ga=GA1.2.1401023120.1586900422 -- 17:41:58.254 INFO [12955]: QUERY_STRING = /assets/img/footer_1.jpg -- 17:41:58.254 INFO [12955]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 17:41:58.266 INFO [12955]: COREGRADE is stopping... -- 17:41:58.266 DEBUG [12955]: Closing database connection -- 17:41:58.266 SQL [12955]: pgsql_close() -- 17:47:20.189 INFO [25478]: COREGRADE is starting... -- 17:47:20.190 INFO [25478]: Version from config: 1.0 -- 17:47:20.190 DEBUG [25478]: Connecting to database... -- 17:47:20.190 DEBUG [25478]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:20.190 SQL [25478]: pgsql_db_connect() -- 17:47:20.194 DEBUG [25478]: Database connection successful -- 17:47:20.194 INFO [25478]: _SERVER found -- 17:47:20.194 INFO [25478]: REMOTE_ADDR = 10.0.0.15 -- 17:47:20.194 INFO [25478]: SERVER_NAME = works.coregrade.com -- 17:47:20.194 INFO [25478]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=ht100dggorv97h62cjde86llc4vnk0db -- 17:47:20.194 INFO [25478]: QUERY_STRING = -- 17:47:20.194 INFO [25478]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 17:47:20.239 INFO [25478]: COREGRADE is stopping... -- 17:47:20.239 DEBUG [25478]: Closing database connection -- 17:47:20.239 SQL [25478]: pgsql_close() -- 17:47:20.602 INFO [25479]: COREGRADE is starting... -- 17:47:20.603 INFO [25479]: Version from config: 1.0 -- 17:47:20.603 DEBUG [25479]: Connecting to database... -- 17:47:20.603 DEBUG [25479]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:20.603 SQL [25479]: pgsql_db_connect() -- 17:47:20.607 DEBUG [25479]: Database connection successful -- 17:47:20.607 INFO [25479]: _SERVER found -- 17:47:20.607 INFO [25479]: REMOTE_ADDR = 10.0.0.15 -- 17:47:20.607 INFO [25479]: SERVER_NAME = works.coregrade.com -- 17:47:20.607 INFO [25479]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=ht100dggorv97h62cjde86llc4vnk0db; _gat_gtag_UA_54829827_2=1 -- 17:47:20.607 INFO [25479]: QUERY_STRING = /assets/img/footer_1.jpg -- 17:47:20.607 INFO [25479]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 17:47:20.621 INFO [25479]: COREGRADE is stopping... -- 17:47:20.621 DEBUG [25479]: Closing database connection -- 17:47:20.621 SQL [25479]: pgsql_close() -- 17:47:26.184 INFO [25482]: COREGRADE is starting... -- 17:47:26.185 INFO [25482]: Version from config: 1.0 -- 17:47:26.185 DEBUG [25482]: Connecting to database... -- 17:47:26.185 DEBUG [25482]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:26.185 SQL [25482]: pgsql_db_connect() -- 17:47:26.189 DEBUG [25482]: Database connection successful -- 17:47:26.189 INFO [25482]: _SERVER found -- 17:47:26.189 INFO [25482]: REMOTE_ADDR = 10.0.0.15 -- 17:47:26.189 INFO [25482]: SERVER_NAME = works.coregrade.com -- 17:47:26.189 INFO [25482]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=ht100dggorv97h62cjde86llc4vnk0db; _gat_gtag_UA_54829827_2=1 -- 17:47:26.189 INFO [25482]: QUERY_STRING = /kkk -- 17:47:26.189 INFO [25482]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 17:47:26.203 INFO [25482]: COREGRADE is stopping... -- 17:47:26.204 DEBUG [25482]: Closing database connection -- 17:47:26.204 SQL [25482]: pgsql_close() -- 17:47:26.486 INFO [30994]: COREGRADE is starting... -- 17:47:26.486 INFO [30994]: Version from config: 1.0 -- 17:47:26.486 DEBUG [30994]: Connecting to database... -- 17:47:26.487 DEBUG [30994]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:26.487 SQL [30994]: pgsql_db_connect() -- 17:47:26.491 DEBUG [30994]: Database connection successful -- 17:47:26.491 INFO [30994]: _SERVER found -- 17:47:26.491 INFO [30994]: REMOTE_ADDR = 10.0.0.15 -- 17:47:26.491 INFO [30994]: SERVER_NAME = works.coregrade.com -- 17:47:26.491 INFO [30994]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=ht100dggorv97h62cjde86llc4vnk0db; _gat_gtag_UA_54829827_2=1 -- 17:47:26.491 INFO [30994]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:47:26.491 INFO [30994]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 17:47:26.534 INFO [30994]: COREGRADE is stopping... -- 17:47:26.534 DEBUG [30994]: Closing database connection -- 17:47:26.534 SQL [30994]: pgsql_close() -- 17:47:26.629 INFO [30783]: COREGRADE is starting... -- 17:47:26.630 INFO [30783]: Version from config: 1.0 -- 17:47:26.630 DEBUG [30783]: Connecting to database... -- 17:47:26.630 DEBUG [30783]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:26.630 SQL [30783]: pgsql_db_connect() -- 17:47:26.634 DEBUG [30783]: Database connection successful -- 17:47:26.634 INFO [30783]: _SERVER found -- 17:47:26.634 INFO [30783]: REMOTE_ADDR = 10.0.0.15 -- 17:47:26.634 INFO [30783]: SERVER_NAME = works.coregrade.com -- 17:47:26.634 INFO [30783]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=ht100dggorv97h62cjde86llc4vnk0db; _gat_gtag_UA_54829827_2=1 -- 17:47:26.634 INFO [30783]: QUERY_STRING = /assets2/data/locales/en.json -- 17:47:26.634 INFO [30783]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 17:47:26.649 INFO [30783]: COREGRADE is stopping... -- 17:47:26.649 DEBUG [30783]: Closing database connection -- 17:47:26.649 SQL [30783]: pgsql_close() -- 20:00:53.507 INFO [2015]: COREGRADE is starting... -- 20:00:53.507 INFO [2015]: Version from config: 1.0 -- 20:00:53.507 DEBUG [2015]: Connecting to database... -- 20:00:53.507 DEBUG [2015]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:00:53.507 SQL [2015]: pgsql_db_connect() -- 20:00:53.511 DEBUG [2015]: Database connection successful -- 20:00:53.511 INFO [2015]: _SERVER found -- 20:00:53.511 INFO [2015]: REMOTE_ADDR = 10.0.0.15 -- 20:00:53.511 INFO [2015]: SERVER_NAME = oameye.works.coregrade.com -- 20:00:53.511 INFO [2015]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275 -- 20:00:53.511 INFO [2015]: QUERY_STRING = /auth -- 20:00:53.511 INFO [2015]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:00:53.551 INFO [2015]: COREGRADE is stopping... -- 20:00:53.551 DEBUG [2015]: Closing database connection -- 20:00:53.551 SQL [2015]: pgsql_close() -- 20:00:53.877 INFO [2015]: COREGRADE is starting... -- 20:00:53.877 INFO [2015]: Version from config: 1.0 -- 20:00:53.877 DEBUG [2015]: Connecting to database... -- 20:00:53.877 DEBUG [2015]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:00:53.877 SQL [2015]: pgsql_db_connect() -- 20:00:53.881 DEBUG [2015]: Database connection successful -- 20:00:53.881 INFO [2015]: _SERVER found -- 20:00:53.881 INFO [2015]: REMOTE_ADDR = 10.0.0.15 -- 20:00:53.881 INFO [2015]: SERVER_NAME = oameye.works.coregrade.com -- 20:00:53.881 INFO [2015]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.36663248.1586655275; ci_session=37cv3v8eeqvl1usl4os5j2b12bdt256d -- 20:00:53.881 INFO [2015]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 20:00:53.881 INFO [2015]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:00:53.894 INFO [2015]: COREGRADE is stopping... -- 20:00:53.894 DEBUG [2015]: Closing database connection -- 20:00:53.894 SQL [2015]: pgsql_close() -- 20:05:40.911 INFO [2016]: COREGRADE is starting... -- 20:05:40.911 INFO [2016]: Version from config: 1.0 -- 20:05:40.911 DEBUG [2016]: Connecting to database... -- 20:05:40.911 DEBUG [2016]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:05:40.911 SQL [2016]: pgsql_db_connect() -- 20:05:40.916 DEBUG [2016]: Database connection successful -- 20:05:40.916 INFO [2016]: _SERVER found -- 20:05:40.916 INFO [2016]: REMOTE_ADDR = 10.0.0.15 -- 20:05:40.916 INFO [2016]: SERVER_NAME = oameye.works.coregrade.com -- 20:05:40.916 INFO [2016]: HTTP_COOKIE = _ga=GA1.2.784606705.1583345490 -- 20:05:40.916 INFO [2016]: QUERY_STRING = /home/aboutus -- 20:05:40.916 INFO [2016]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:05:40.956 INFO [2016]: COREGRADE is stopping... -- 20:05:40.956 DEBUG [2016]: Closing database connection -- 20:05:40.956 SQL [2016]: pgsql_close() -- 20:05:41.187 INFO [1441]: COREGRADE is starting... -- 20:05:41.187 INFO [1441]: Version from config: 1.0 -- 20:05:41.187 DEBUG [1441]: Connecting to database... -- 20:05:41.187 DEBUG [1441]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:05:41.187 SQL [1441]: pgsql_db_connect() -- 20:05:41.191 DEBUG [1441]: Database connection successful -- 20:05:41.191 INFO [1441]: _SERVER found -- 20:05:41.191 INFO [1441]: REMOTE_ADDR = 10.0.0.15 -- 20:05:41.191 INFO [1441]: SERVER_NAME = oameye.works.coregrade.com -- 20:05:41.191 INFO [1441]: HTTP_COOKIE = _ga=GA1.2.784606705.1583345490; ci_session=0vreppm2vruhite8n0rimorevas8q9fk -- 20:05:41.191 INFO [1441]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 20:05:41.191 INFO [1441]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:05:41.206 INFO [1441]: COREGRADE is stopping... -- 20:05:41.206 DEBUG [1441]: Closing database connection -- 20:05:41.206 SQL [1441]: pgsql_close() -- 20:22:30.552 INFO [1443]: COREGRADE is starting... -- 20:22:30.553 INFO [1443]: Version from config: 1.0 -- 20:22:30.553 DEBUG [1443]: Connecting to database... -- 20:22:30.553 DEBUG [1443]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:22:30.553 SQL [1443]: pgsql_db_connect() -- 20:22:30.557 DEBUG [1443]: Database connection successful -- 20:22:30.557 INFO [1443]: _SERVER found -- 20:22:30.557 INFO [1443]: REMOTE_ADDR = 10.0.0.15 -- 20:22:30.557 INFO [1443]: SERVER_NAME = oameye.works.coregrade.com -- 20:22:30.557 INFO [1443]: HTTP_COOKIE = ci_session=0vreppm2vruhite8n0rimorevas8q9fk; _gid=GA1.2.1530726571.1586909892; _ga=GA1.2.784606705.1583345490 -- 20:22:30.557 INFO [1443]: QUERY_STRING = -- 20:22:30.557 INFO [1443]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:22:30.604 INFO [1443]: COREGRADE is stopping... -- 20:22:30.604 DEBUG [1443]: Closing database connection -- 20:22:30.604 SQL [1443]: pgsql_close() -- 20:22:31.071 INFO [2012]: COREGRADE is starting... -- 20:22:31.072 INFO [2012]: Version from config: 1.0 -- 20:22:31.072 DEBUG [2012]: Connecting to database... -- 20:22:31.072 DEBUG [2012]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:22:31.072 SQL [2012]: pgsql_db_connect() -- 20:22:31.076 DEBUG [2012]: Database connection successful -- 20:22:31.076 INFO [2012]: _SERVER found -- 20:22:31.076 INFO [2012]: REMOTE_ADDR = 10.0.0.15 -- 20:22:31.076 INFO [2012]: SERVER_NAME = oameye.works.coregrade.com -- 20:22:31.076 INFO [2012]: HTTP_COOKIE = ci_session=fqugut7pl75fhamhtac0dfudn7jduq3j; _gid=GA1.2.1530726571.1586909892; _ga=GA1.2.784606705.1583345490 -- 20:22:31.076 INFO [2012]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:22:31.076 INFO [2012]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:22:31.089 INFO [2012]: COREGRADE is stopping... -- 20:22:31.089 DEBUG [2012]: Closing database connection -- 20:22:31.089 SQL [2012]: pgsql_close() -- 20:41:56.342 INFO [2014]: COREGRADE is starting... -- 20:41:56.342 INFO [2014]: Version from config: 1.0 -- 20:41:56.342 DEBUG [2014]: Connecting to database... -- 20:41:56.342 DEBUG [2014]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:41:56.342 SQL [2014]: pgsql_db_connect() -- 20:41:56.347 DEBUG [2014]: Database connection successful -- 20:41:56.347 INFO [2014]: _SERVER found -- 20:41:56.347 INFO [2014]: REMOTE_ADDR = 10.0.0.15 -- 20:41:56.347 INFO [2014]: SERVER_NAME = oameye.works.coregrade.com -- 20:41:56.347 INFO [2014]: QUERY_STRING = -- 20:41:56.347 INFO [2014]: HTTP_X_FORWARDED_FOR = 123.115.71.162 -- 20:41:56.382 INFO [2014]: COREGRADE is stopping... -- 20:41:56.382 DEBUG [2014]: Closing database connection -- 20:41:56.382 SQL [2014]: pgsql_close() -- 20:41:59.338 INFO [2015]: COREGRADE is starting... -- 20:41:59.338 INFO [2015]: Version from config: 1.0 -- 20:41:59.338 DEBUG [2015]: Connecting to database... -- 20:41:59.338 DEBUG [2015]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:41:59.338 SQL [2015]: pgsql_db_connect() -- 20:41:59.342 DEBUG [2015]: Database connection successful -- 20:41:59.342 INFO [2015]: _SERVER found -- 20:41:59.342 INFO [2015]: REMOTE_ADDR = 10.0.0.15 -- 20:41:59.342 INFO [2015]: SERVER_NAME = oameye.works.coregrade.com -- 20:41:59.342 INFO [2015]: QUERY_STRING = -- 20:41:59.342 INFO [2015]: HTTP_X_FORWARDED_FOR = 123.115.71.162 -- 20:41:59.383 INFO [2015]: COREGRADE is stopping... -- 20:41:59.384 DEBUG [2015]: Closing database connection -- 20:41:59.384 SQL [2015]: pgsql_close() -- 20:42:02.242 INFO [2015]: COREGRADE is starting... -- 20:42:02.242 INFO [2015]: Version from config: 1.0 -- 20:42:02.242 DEBUG [2015]: Connecting to database... -- 20:42:02.242 DEBUG [2015]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:42:02.242 SQL [2015]: pgsql_db_connect() -- 20:42:02.246 DEBUG [2015]: Database connection successful -- 20:42:02.246 INFO [2015]: _SERVER found -- 20:42:02.246 INFO [2015]: REMOTE_ADDR = 10.0.0.15 -- 20:42:02.246 INFO [2015]: SERVER_NAME = oameye.works.coregrade.com -- 20:42:02.246 INFO [2015]: HTTP_COOKIE = ci_session=lbvcjv2eam5ml2d216rtfj3c48bt24v8; _ga=GA1.2.260155782.1586911320; _gid=GA1.2.742118724.1586911320; _gat_gtag_UA_54829827_2=1 -- 20:42:02.246 INFO [2015]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:42:02.246 INFO [2015]: HTTP_X_FORWARDED_FOR = 123.115.71.162 -- 20:42:02.257 INFO [2015]: COREGRADE is stopping... -- 20:42:02.257 DEBUG [2015]: Closing database connection -- 20:42:02.257 SQL [2015]: pgsql_close() -- 21:05:42.310 INFO [1441]: COREGRADE is starting... -- 21:05:42.310 INFO [1441]: Version from config: 1.0 -- 21:05:42.310 DEBUG [1441]: Connecting to database... -- 21:05:42.310 DEBUG [1441]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:05:42.310 SQL [1441]: pgsql_db_connect() -- 21:05:42.314 DEBUG [1441]: Database connection successful -- 21:05:42.314 INFO [1441]: _SERVER found -- 21:05:42.314 INFO [1441]: REMOTE_ADDR = 10.0.0.15 -- 21:05:42.314 INFO [1441]: SERVER_NAME = oameye.works.coregrade.com -- 21:05:42.314 INFO [1441]: QUERY_STRING = -- 21:05:42.314 INFO [1441]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 21:05:42.359 INFO [1441]: COREGRADE is stopping... -- 21:05:42.359 DEBUG [1441]: Closing database connection -- 21:05:42.359 SQL [1441]: pgsql_close() -- 21:34:23.977 INFO [1442]: COREGRADE is starting... -- 21:34:23.977 INFO [1442]: Version from config: 1.0 -- 21:34:23.977 DEBUG [1442]: Connecting to database... -- 21:34:23.978 DEBUG [1442]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:34:23.978 SQL [1442]: pgsql_db_connect() -- 21:34:23.982 DEBUG [1442]: Database connection successful -- 21:34:23.982 INFO [1442]: _SERVER found -- 21:34:23.982 INFO [1442]: REMOTE_ADDR = 10.0.0.15 -- 21:34:23.982 INFO [1442]: SERVER_NAME = oameye.works.coregrade.com -- 21:34:23.982 INFO [1442]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; _gat_gtag_UA_54829827_2=1 -- 21:34:23.982 INFO [1442]: QUERY_STRING = -- 21:34:23.982 INFO [1442]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:34:24.026 INFO [1442]: COREGRADE is stopping... -- 21:34:24.026 DEBUG [1442]: Closing database connection -- 21:34:24.026 SQL [1442]: pgsql_close() -- 21:34:26.411 INFO [1443]: COREGRADE is starting... -- 21:34:26.411 INFO [1443]: Version from config: 1.0 -- 21:34:26.411 DEBUG [1443]: Connecting to database... -- 21:34:26.411 DEBUG [1443]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:34:26.411 SQL [1443]: pgsql_db_connect() -- 21:34:26.415 DEBUG [1443]: Database connection successful -- 21:34:26.415 INFO [1443]: _SERVER found -- 21:34:26.415 INFO [1443]: REMOTE_ADDR = 10.0.0.15 -- 21:34:26.415 INFO [1443]: SERVER_NAME = oameye.works.coregrade.com -- 21:34:26.415 INFO [1443]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; _gat_gtag_UA_54829827_2=1; ci_session=qgu483m49ir9pq720853b9ovt6hj2u4r -- 21:34:26.415 INFO [1443]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:34:26.415 INFO [1443]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:34:26.427 INFO [1443]: COREGRADE is stopping... -- 21:34:26.427 DEBUG [1443]: Closing database connection -- 21:34:26.427 SQL [1443]: pgsql_close() -- 21:34:37.184 INFO [2012]: COREGRADE is starting... -- 21:34:37.184 INFO [2012]: Version from config: 1.0 -- 21:34:37.184 DEBUG [2012]: Connecting to database... -- 21:34:37.184 DEBUG [2012]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:34:37.184 SQL [2012]: pgsql_db_connect() -- 21:34:37.188 DEBUG [2012]: Database connection successful -- 21:34:37.188 INFO [2012]: _SERVER found -- 21:34:37.188 INFO [2012]: REMOTE_ADDR = 10.0.0.15 -- 21:34:37.188 INFO [2012]: SERVER_NAME = oameye.works.coregrade.com -- 21:34:37.188 INFO [2012]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; _gat_gtag_UA_54829827_2=1; ci_session=qgu483m49ir9pq720853b9ovt6hj2u4r -- 21:34:37.188 INFO [2012]: QUERY_STRING = /home/privacy -- 21:34:37.188 INFO [2012]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:34:37.225 INFO [2012]: COREGRADE is stopping... -- 21:34:37.225 DEBUG [2012]: Closing database connection -- 21:34:37.225 SQL [2012]: pgsql_close() -- 21:34:38.626 INFO [2014]: COREGRADE is starting... -- 21:34:38.626 INFO [2014]: Version from config: 1.0 -- 21:34:38.626 DEBUG [2014]: Connecting to database... -- 21:34:38.626 DEBUG [2014]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:34:38.626 SQL [2014]: pgsql_db_connect() -- 21:34:38.630 DEBUG [2014]: Database connection successful -- 21:34:38.630 INFO [2014]: _SERVER found -- 21:34:38.630 INFO [2014]: REMOTE_ADDR = 10.0.0.15 -- 21:34:38.630 INFO [2014]: SERVER_NAME = oameye.works.coregrade.com -- 21:34:38.630 INFO [2014]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; _gat_gtag_UA_54829827_2=1; ci_session=qgu483m49ir9pq720853b9ovt6hj2u4r -- 21:34:38.630 INFO [2014]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:34:38.630 INFO [2014]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:34:38.642 INFO [2014]: COREGRADE is stopping... -- 21:34:38.642 DEBUG [2014]: Closing database connection -- 21:34:38.642 SQL [2014]: pgsql_close() -- 21:35:53.438 INFO [2017]: COREGRADE is starting... -- 21:35:53.439 INFO [2017]: Version from config: 1.0 -- 21:35:53.439 DEBUG [2017]: Connecting to database... -- 21:35:53.439 DEBUG [2017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:35:53.439 SQL [2017]: pgsql_db_connect() -- 21:35:53.443 DEBUG [2017]: Database connection successful -- 21:35:53.443 INFO [2017]: _SERVER found -- 21:35:53.443 INFO [2017]: REMOTE_ADDR = 10.0.0.15 -- 21:35:53.443 INFO [2017]: SERVER_NAME = oameye.works.coregrade.com -- 21:35:53.443 INFO [2017]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507 -- 21:35:53.443 INFO [2017]: QUERY_STRING = /home/security -- 21:35:53.443 INFO [2017]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:35:53.479 INFO [2017]: COREGRADE is stopping... -- 21:35:53.479 DEBUG [2017]: Closing database connection -- 21:35:53.479 SQL [2017]: pgsql_close() -- 21:35:53.715 INFO [2017]: COREGRADE is starting... -- 21:35:53.715 INFO [2017]: Version from config: 1.0 -- 21:35:53.715 DEBUG [2017]: Connecting to database... -- 21:35:53.715 DEBUG [2017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:35:53.715 SQL [2017]: pgsql_db_connect() -- 21:35:53.719 DEBUG [2017]: Database connection successful -- 21:35:53.719 INFO [2017]: _SERVER found -- 21:35:53.719 INFO [2017]: REMOTE_ADDR = 10.0.0.15 -- 21:35:53.719 INFO [2017]: SERVER_NAME = oameye.works.coregrade.com -- 21:35:53.719 INFO [2017]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; ci_session=h08lqivvg13olji970g2r9jf6mdqnliu -- 21:35:53.719 INFO [2017]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:35:53.719 INFO [2017]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:35:53.732 INFO [2017]: COREGRADE is stopping... -- 21:35:53.732 DEBUG [2017]: Closing database connection -- 21:35:53.732 SQL [2017]: pgsql_close() -- 21:35:53.775 INFO [2017]: COREGRADE is starting... -- 21:35:53.775 INFO [2017]: Version from config: 1.0 -- 21:35:53.775 DEBUG [2017]: Connecting to database... -- 21:35:53.775 DEBUG [2017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:35:53.775 SQL [2017]: pgsql_db_connect() -- 21:35:53.779 DEBUG [2017]: Database connection successful -- 21:35:53.779 INFO [2017]: _SERVER found -- 21:35:53.779 INFO [2017]: REMOTE_ADDR = 10.0.0.15 -- 21:35:53.779 INFO [2017]: SERVER_NAME = oameye.works.coregrade.com -- 21:35:53.779 INFO [2017]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; ci_session=h08lqivvg13olji970g2r9jf6mdqnliu -- 21:35:53.779 INFO [2017]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 21:35:53.779 INFO [2017]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:35:53.791 INFO [2017]: COREGRADE is stopping... -- 21:35:53.791 DEBUG [2017]: Closing database connection -- 21:35:53.791 SQL [2017]: pgsql_close() -- 22:24:48.766 INFO [1440]: COREGRADE is starting... -- 22:24:48.766 INFO [1440]: Version from config: 1.0 -- 22:24:48.766 DEBUG [1440]: Connecting to database... -- 22:24:48.766 DEBUG [1440]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:24:48.766 SQL [1440]: pgsql_db_connect() -- 22:24:48.771 DEBUG [1440]: Database connection successful -- 22:24:48.771 INFO [1440]: _SERVER found -- 22:24:48.771 INFO [1440]: REMOTE_ADDR = 10.0.0.15 -- 22:24:48.771 INFO [1440]: SERVER_NAME = oameye.works.coregrade.com -- 22:24:48.771 INFO [1440]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=qgu483m49ir9pq720853b9ovt6hj2u4r -- 22:24:48.771 INFO [1440]: QUERY_STRING = /home/privacy -- 22:24:48.771 INFO [1440]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:24:48.811 INFO [1440]: COREGRADE is stopping... -- 22:24:48.811 DEBUG [1440]: Closing database connection -- 22:24:48.811 SQL [1440]: pgsql_close() -- 22:24:49.653 INFO [1440]: COREGRADE is starting... -- 22:24:49.653 INFO [1440]: Version from config: 1.0 -- 22:24:49.653 DEBUG [1440]: Connecting to database... -- 22:24:49.653 DEBUG [1440]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:24:49.653 SQL [1440]: pgsql_db_connect() -- 22:24:49.657 DEBUG [1440]: Database connection successful -- 22:24:49.657 INFO [1440]: _SERVER found -- 22:24:49.657 INFO [1440]: REMOTE_ADDR = 10.0.0.15 -- 22:24:49.657 INFO [1440]: SERVER_NAME = oameye.works.coregrade.com -- 22:24:49.657 INFO [1440]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=ehtnddq1c7ej15sfs24jr6vgd0ku1uk0 -- 22:24:49.657 INFO [1440]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:24:49.657 INFO [1440]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:24:49.669 INFO [1440]: COREGRADE is stopping... -- 22:24:49.669 DEBUG [1440]: Closing database connection -- 22:24:49.669 SQL [1440]: pgsql_close() -- 22:27:03.546 INFO [1441]: COREGRADE is starting... -- 22:27:03.547 INFO [1441]: Version from config: 1.0 -- 22:27:03.547 DEBUG [1441]: Connecting to database... -- 22:27:03.547 DEBUG [1441]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:03.547 SQL [1441]: pgsql_db_connect() -- 22:27:03.551 DEBUG [1441]: Database connection successful -- 22:27:03.551 INFO [1441]: _SERVER found -- 22:27:03.551 INFO [1441]: REMOTE_ADDR = 10.0.0.15 -- 22:27:03.551 INFO [1441]: SERVER_NAME = oameye.works.coregrade.com -- 22:27:03.551 INFO [1441]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=ehtnddq1c7ej15sfs24jr6vgd0ku1uk0 -- 22:27:03.551 INFO [1441]: QUERY_STRING = /home/privacy -- 22:27:03.551 INFO [1441]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:27:03.584 INFO [1441]: COREGRADE is stopping... -- 22:27:03.585 DEBUG [1441]: Closing database connection -- 22:27:03.585 SQL [1441]: pgsql_close() -- 22:27:03.784 INFO [1441]: COREGRADE is starting... -- 22:27:03.784 INFO [1441]: Version from config: 1.0 -- 22:27:03.784 DEBUG [1441]: Connecting to database... -- 22:27:03.784 DEBUG [1441]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:03.784 SQL [1441]: pgsql_db_connect() -- 22:27:03.788 DEBUG [1441]: Database connection successful -- 22:27:03.788 INFO [1441]: _SERVER found -- 22:27:03.788 INFO [1441]: REMOTE_ADDR = 10.0.0.15 -- 22:27:03.788 INFO [1441]: SERVER_NAME = oameye.works.coregrade.com -- 22:27:03.788 INFO [1441]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=ehtnddq1c7ej15sfs24jr6vgd0ku1uk0 -- 22:27:03.788 INFO [1441]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:27:03.788 INFO [1441]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:27:03.799 INFO [1441]: COREGRADE is stopping... -- 22:27:03.799 DEBUG [1441]: Closing database connection -- 22:27:03.799 SQL [1441]: pgsql_close() -- 22:41:45.754 INFO [2015]: COREGRADE is starting... -- 22:41:45.754 INFO [2015]: Version from config: 1.0 -- 22:41:45.754 DEBUG [2015]: Connecting to database... -- 22:41:45.754 DEBUG [2015]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:41:45.755 SQL [2015]: pgsql_db_connect() -- 22:41:45.759 DEBUG [2015]: Database connection successful -- 22:41:45.759 INFO [2015]: _SERVER found -- 22:41:45.759 INFO [2015]: REMOTE_ADDR = 10.0.0.15 -- 22:41:45.759 INFO [2015]: SERVER_NAME = oameye.works.coregrade.com -- 22:41:45.760 INFO [2015]: HTTP_COOKIE = _gid=GA1.2.1530726571.1586909892; _ga=GA1.2.784606705.1583345490 -- 22:41:45.760 INFO [2015]: QUERY_STRING = -- 22:41:45.760 INFO [2015]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:41:45.795 INFO [2015]: COREGRADE is stopping... -- 22:41:45.795 DEBUG [2015]: Closing database connection -- 22:41:45.795 SQL [2015]: pgsql_close() -- 22:41:46.605 INFO [2015]: COREGRADE is starting... -- 22:41:46.605 INFO [2015]: Version from config: 1.0 -- 22:41:46.605 DEBUG [2015]: Connecting to database... -- 22:41:46.605 DEBUG [2015]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:41:46.605 SQL [2015]: pgsql_db_connect() -- 22:41:46.609 DEBUG [2015]: Database connection successful -- 22:41:46.609 INFO [2015]: _SERVER found -- 22:41:46.609 INFO [2015]: REMOTE_ADDR = 10.0.0.15 -- 22:41:46.609 INFO [2015]: SERVER_NAME = oameye.works.coregrade.com -- 22:41:46.609 INFO [2015]: HTTP_COOKIE = _gid=GA1.2.1530726571.1586909892; _ga=GA1.2.784606705.1583345490; ci_session=ngcmohlm38b3ujejm1jfm92m0f3q9hi6 -- 22:41:46.609 INFO [2015]: QUERY_STRING = /assets/img/footer_1.jpg -- 22:41:46.609 INFO [2015]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:41:46.620 INFO [2015]: COREGRADE is stopping... -- 22:41:46.621 DEBUG [2015]: Closing database connection -- 22:41:46.621 SQL [2015]: pgsql_close() -- 22:42:13.207 INFO [1442]: COREGRADE is starting... -- 22:42:13.207 INFO [1442]: Version from config: 1.0 -- 22:42:13.207 DEBUG [1442]: Connecting to database... -- 22:42:13.207 DEBUG [1442]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:42:13.207 SQL [1442]: pgsql_db_connect() -- 22:42:13.212 DEBUG [1442]: Database connection successful -- 22:42:13.212 INFO [1442]: _SERVER found -- 22:42:13.212 INFO [1442]: REMOTE_ADDR = 10.0.0.15 -- 22:42:13.212 INFO [1442]: SERVER_NAME = oameye.works.coregrade.com -- 22:42:13.212 INFO [1442]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=ehtnddq1c7ej15sfs24jr6vgd0ku1uk0 -- 22:42:13.212 INFO [1442]: QUERY_STRING = -- 22:42:13.212 INFO [1442]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:42:13.245 INFO [1442]: COREGRADE is stopping... -- 22:42:13.245 DEBUG [1442]: Closing database connection -- 22:42:13.245 SQL [1442]: pgsql_close() -- 22:42:13.860 INFO [1442]: COREGRADE is starting... -- 22:42:13.860 INFO [1442]: Version from config: 1.0 -- 22:42:13.860 DEBUG [1442]: Connecting to database... -- 22:42:13.860 DEBUG [1442]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:42:13.860 SQL [1442]: pgsql_db_connect() -- 22:42:13.865 DEBUG [1442]: Database connection successful -- 22:42:13.865 INFO [1442]: _SERVER found -- 22:42:13.865 INFO [1442]: REMOTE_ADDR = 10.0.0.15 -- 22:42:13.865 INFO [1442]: SERVER_NAME = oameye.works.coregrade.com -- 22:42:13.865 INFO [1442]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=tat3lhiiufpj3s8iq6obllopnle6315g -- 22:42:13.865 INFO [1442]: QUERY_STRING = /assets/img/footer_1.jpg -- 22:42:13.865 INFO [1442]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:42:13.876 INFO [1442]: COREGRADE is stopping... -- 22:42:13.876 DEBUG [1442]: Closing database connection -- 22:42:13.876 SQL [1442]: pgsql_close() -- 22:51:50.321 INFO [2013]: COREGRADE is starting... -- 22:51:50.322 INFO [2013]: Version from config: 1.0 -- 22:51:50.322 DEBUG [2013]: Connecting to database... -- 22:51:50.322 DEBUG [2013]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:51:50.322 SQL [2013]: pgsql_db_connect() -- 22:51:50.327 DEBUG [2013]: Database connection successful -- 22:51:50.327 INFO [2013]: _SERVER found -- 22:51:50.327 INFO [2013]: REMOTE_ADDR = 10.0.0.15 -- 22:51:50.327 INFO [2013]: SERVER_NAME = oameye.works.coregrade.com -- 22:51:50.327 INFO [2013]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=tat3lhiiufpj3s8iq6obllopnle6315g -- 22:51:50.327 INFO [2013]: QUERY_STRING = -- 22:51:50.327 INFO [2013]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:51:50.362 INFO [2013]: COREGRADE is stopping... -- 22:51:50.362 DEBUG [2013]: Closing database connection -- 22:51:50.362 SQL [2013]: pgsql_close() -- 22:51:50.392 INFO [2013]: COREGRADE is starting... -- 22:51:50.393 INFO [2013]: Version from config: 1.0 -- 22:51:50.393 DEBUG [2013]: Connecting to database... -- 22:51:50.393 DEBUG [2013]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:51:50.393 SQL [2013]: pgsql_db_connect() -- 22:51:50.397 DEBUG [2013]: Database connection successful -- 22:51:50.397 INFO [2013]: _SERVER found -- 22:51:50.397 INFO [2013]: REMOTE_ADDR = 10.0.0.15 -- 22:51:50.397 INFO [2013]: SERVER_NAME = oameye.works.coregrade.com -- 22:51:50.397 INFO [2013]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=tat3lhiiufpj3s8iq6obllopnle6315g -- 22:51:50.397 INFO [2013]: QUERY_STRING = -- 22:51:50.397 INFO [2013]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:51:50.429 INFO [2013]: COREGRADE is stopping... -- 22:51:50.429 DEBUG [2013]: Closing database connection -- 22:51:50.429 SQL [2013]: pgsql_close() -- 22:51:51.348 INFO [2013]: COREGRADE is starting... -- 22:51:51.349 INFO [2013]: Version from config: 1.0 -- 22:51:51.349 DEBUG [2013]: Connecting to database... -- 22:51:51.349 DEBUG [2013]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:51:51.349 SQL [2013]: pgsql_db_connect() -- 22:51:51.353 DEBUG [2013]: Database connection successful -- 22:51:51.353 INFO [2013]: _SERVER found -- 22:51:51.353 INFO [2013]: REMOTE_ADDR = 10.0.0.15 -- 22:51:51.353 INFO [2013]: SERVER_NAME = oameye.works.coregrade.com -- 22:51:51.353 INFO [2013]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=mgg173nnjn6071b4a7l0pjab2va20p8h -- 22:51:51.353 INFO [2013]: QUERY_STRING = /assets/img/footer_1.jpg -- 22:51:51.353 INFO [2013]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:51:51.364 INFO [2013]: COREGRADE is stopping... -- 22:51:51.364 DEBUG [2013]: Closing database connection -- 22:51:51.364 SQL [2013]: pgsql_close() -- 23:15:49.291 INFO [1443]: COREGRADE is starting... -- 23:15:49.292 INFO [1443]: Version from config: 1.0 -- 23:15:49.292 DEBUG [1443]: Connecting to database... -- 23:15:49.292 DEBUG [1443]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:15:49.292 SQL [1443]: pgsql_db_connect() -- 23:15:49.296 DEBUG [1443]: Database connection successful -- 23:15:49.296 INFO [1443]: _SERVER found -- 23:15:49.296 INFO [1443]: REMOTE_ADDR = 10.0.0.15 -- 23:15:49.296 INFO [1443]: SERVER_NAME = oameye.works.coregrade.com -- 23:15:49.296 INFO [1443]: HTTP_COOKIE = _ga=GA1.2.167275593.1586893524; _gid=GA1.2.694464670.1586893524 -- 23:15:49.296 INFO [1443]: QUERY_STRING = -- 23:15:49.296 INFO [1443]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 23:15:49.332 INFO [1443]: COREGRADE is stopping... -- 23:15:49.332 DEBUG [1443]: Closing database connection -- 23:15:49.332 SQL [1443]: pgsql_close() -- 23:15:49.819 INFO [2012]: COREGRADE is starting... -- 23:15:49.820 INFO [2012]: Version from config: 1.0 -- 23:15:49.820 DEBUG [2012]: Connecting to database... -- 23:15:49.820 DEBUG [2012]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:15:49.820 SQL [2012]: pgsql_db_connect() -- 23:15:49.824 DEBUG [2012]: Database connection successful -- 23:15:49.824 INFO [2012]: _SERVER found -- 23:15:49.824 INFO [2012]: REMOTE_ADDR = 10.0.0.15 -- 23:15:49.824 INFO [2012]: SERVER_NAME = oameye.works.coregrade.com -- 23:15:49.824 INFO [2012]: HTTP_COOKIE = _ga=GA1.2.167275593.1586893524; _gid=GA1.2.694464670.1586893524; ci_session=a0j808aft3oo56ggg7h6bk8em0tmg1ui -- 23:15:49.824 INFO [2012]: QUERY_STRING = /assets/img/footer_1.jpg -- 23:15:49.824 INFO [2012]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 23:15:49.837 INFO [2012]: COREGRADE is stopping... -- 23:15:49.837 DEBUG [2012]: Closing database connection -- 23:15:49.837 SQL [2012]: pgsql_close() -- 23:16:58.451 INFO [2014]: COREGRADE is starting... -- 23:16:58.451 INFO [2014]: Version from config: 1.0 -- 23:16:58.451 DEBUG [2014]: Connecting to database... -- 23:16:58.451 DEBUG [2014]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:16:58.451 SQL [2014]: pgsql_db_connect() -- 23:16:58.456 DEBUG [2014]: Database connection successful -- 23:16:58.456 INFO [2014]: _SERVER found -- 23:16:58.456 INFO [2014]: REMOTE_ADDR = 10.0.0.15 -- 23:16:58.456 INFO [2014]: SERVER_NAME = oameye.works.coregrade.com -- 23:16:58.456 INFO [2014]: HTTP_COOKIE = ci_session=ngcmohlm38b3ujejm1jfm92m0f3q9hi6; _gid=GA1.2.1530726571.1586909892; _ga=GA1.2.784606705.1583345490 -- 23:16:58.456 INFO [2014]: QUERY_STRING = /home/security -- 23:16:58.456 INFO [2014]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 23:16:58.490 INFO [2014]: COREGRADE is stopping... -- 23:16:58.490 DEBUG [2014]: Closing database connection -- 23:16:58.490 SQL [2014]: pgsql_close() -- 23:16:59.117 INFO [2014]: COREGRADE is starting... -- 23:16:59.118 INFO [2014]: Version from config: 1.0 -- 23:16:59.118 DEBUG [2014]: Connecting to database... -- 23:16:59.118 DEBUG [2014]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:16:59.118 SQL [2014]: pgsql_db_connect() -- 23:16:59.122 DEBUG [2014]: Database connection successful -- 23:16:59.122 INFO [2014]: _SERVER found -- 23:16:59.122 INFO [2014]: REMOTE_ADDR = 10.0.0.15 -- 23:16:59.122 INFO [2014]: SERVER_NAME = oameye.works.coregrade.com -- 23:16:59.122 INFO [2014]: HTTP_COOKIE = ci_session=a57l1j0nj9322sb3ofoe5ejohfh380cu; _gid=GA1.2.1530726571.1586909892; _ga=GA1.2.784606705.1583345490 -- 23:16:59.122 INFO [2014]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 23:16:59.122 INFO [2014]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 23:16:59.133 INFO [2014]: COREGRADE is stopping... -- 23:16:59.133 DEBUG [2014]: Closing database connection -- 23:16:59.133 SQL [2014]: pgsql_close() -- 23:27:01.119 INFO [2017]: COREGRADE is starting... -- 23:27:01.119 INFO [2017]: Version from config: 1.0 -- 23:27:01.119 DEBUG [2017]: Connecting to database... -- 23:27:01.119 DEBUG [2017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:01.119 SQL [2017]: pgsql_db_connect() -- 23:27:01.123 DEBUG [2017]: Database connection successful -- 23:27:01.123 INFO [2017]: _SERVER found -- 23:27:01.123 INFO [2017]: REMOTE_ADDR = 10.0.0.15 -- 23:27:01.123 INFO [2017]: SERVER_NAME = oameye.works.coregrade.com -- 23:27:01.123 INFO [2017]: HTTP_COOKIE = ci_session=a57l1j0nj9322sb3ofoe5ejohfh380cu; _gid=GA1.2.1530726571.1586909892; _ga=GA1.2.784606705.1583345490 -- 23:27:01.123 INFO [2017]: QUERY_STRING = /home/aboutus -- 23:27:01.123 INFO [2017]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 23:27:01.163 INFO [2017]: COREGRADE is stopping... -- 23:27:01.163 DEBUG [2017]: Closing database connection -- 23:27:01.163 SQL [2017]: pgsql_close() -- 23:27:01.503 INFO [2017]: COREGRADE is starting... -- 23:27:01.503 INFO [2017]: Version from config: 1.0 -- 23:27:01.503 DEBUG [2017]: Connecting to database... -- 23:27:01.503 DEBUG [2017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:01.503 SQL [2017]: pgsql_db_connect() -- 23:27:01.507 DEBUG [2017]: Database connection successful -- 23:27:01.507 INFO [2017]: _SERVER found -- 23:27:01.507 INFO [2017]: REMOTE_ADDR = 10.0.0.15 -- 23:27:01.507 INFO [2017]: SERVER_NAME = oameye.works.coregrade.com -- 23:27:01.507 INFO [2017]: HTTP_COOKIE = ci_session=ievfk14n18pnu3net901lk6e6k13egfh; _gid=GA1.2.1530726571.1586909892; _ga=GA1.2.784606705.1583345490 -- 23:27:01.507 INFO [2017]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 23:27:01.507 INFO [2017]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 23:27:01.520 INFO [2017]: COREGRADE is stopping... -- 23:27:01.520 DEBUG [2017]: Closing database connection -- 23:27:01.520 SQL [2017]: pgsql_close() -- 23:31:40.937 INFO [1440]: COREGRADE is starting... -- 23:31:40.938 INFO [1440]: Version from config: 1.0 -- 23:31:40.938 DEBUG [1440]: Connecting to database... -- 23:31:40.938 DEBUG [1440]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:31:40.938 SQL [1440]: pgsql_db_connect() -- 23:31:40.944 DEBUG [1440]: Database connection successful -- 23:31:40.944 INFO [1440]: _SERVER found -- 23:31:40.944 INFO [1440]: REMOTE_ADDR = 10.0.0.15 -- 23:31:40.944 INFO [1440]: SERVER_NAME = oameye.works.coregrade.com -- 23:31:40.944 INFO [1440]: HTTP_COOKIE = _ga=GA1.2.167275593.1586893524; _gid=GA1.2.694464670.1586893524; ci_session=a0j808aft3oo56ggg7h6bk8em0tmg1ui -- 23:31:40.944 INFO [1440]: QUERY_STRING = -- 23:31:40.944 INFO [1440]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 23:31:40.980 INFO [1440]: COREGRADE is stopping... -- 23:31:40.980 DEBUG [1440]: Closing database connection -- 23:31:40.980 SQL [1440]: pgsql_close() -- 23:31:41.337 INFO [1442]: COREGRADE is starting... -- 23:31:41.337 INFO [1442]: Version from config: 1.0 -- 23:31:41.337 DEBUG [1442]: Connecting to database... -- 23:31:41.337 DEBUG [1442]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:31:41.337 SQL [1442]: pgsql_db_connect() -- 23:31:41.342 DEBUG [1442]: Database connection successful -- 23:31:41.342 INFO [1442]: _SERVER found -- 23:31:41.342 INFO [1442]: REMOTE_ADDR = 10.0.0.15 -- 23:31:41.342 INFO [1442]: SERVER_NAME = oameye.works.coregrade.com -- 23:31:41.342 INFO [1442]: HTTP_COOKIE = _ga=GA1.2.167275593.1586893524; _gid=GA1.2.694464670.1586893524; ci_session=6nlt52l42cetpl6jajmmo1kv1pe0k6f1 -- 23:31:41.342 INFO [1442]: QUERY_STRING = /assets/img/footer_1.jpg -- 23:31:41.342 INFO [1442]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 23:31:41.354 INFO [1442]: COREGRADE is stopping... -- 23:31:41.354 DEBUG [1442]: Closing database connection -- 23:31:41.354 SQL [1442]: pgsql_close() -- 23:32:02.276 INFO [2013]: COREGRADE is starting... -- 23:32:02.276 INFO [2013]: Version from config: 1.0 -- 23:32:02.276 DEBUG [2013]: Connecting to database... -- 23:32:02.276 DEBUG [2013]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:32:02.276 SQL [2013]: pgsql_db_connect() -- 23:32:02.280 DEBUG [2013]: Database connection successful -- 23:32:02.280 INFO [2013]: _SERVER found -- 23:32:02.280 INFO [2013]: REMOTE_ADDR = 10.0.0.15 -- 23:32:02.280 INFO [2013]: SERVER_NAME = oameye.works.coregrade.com -- 23:32:02.280 INFO [2013]: HTTP_COOKIE = ci_session=ievfk14n18pnu3net901lk6e6k13egfh; _gid=GA1.2.1530726571.1586909892; _ga=GA1.2.784606705.1583345490 -- 23:32:02.280 INFO [2013]: QUERY_STRING = /home/aboutus -- 23:32:02.280 INFO [2013]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 23:32:02.314 INFO [2013]: COREGRADE is stopping... -- 23:32:02.314 DEBUG [2013]: Closing database connection -- 23:32:02.314 SQL [2013]: pgsql_close() -- 23:32:02.688 INFO [2013]: COREGRADE is starting... -- 23:32:02.688 INFO [2013]: Version from config: 1.0 -- 23:32:02.688 DEBUG [2013]: Connecting to database... -- 23:32:02.688 DEBUG [2013]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:32:02.688 SQL [2013]: pgsql_db_connect() -- 23:32:02.692 DEBUG [2013]: Database connection successful -- 23:32:02.692 INFO [2013]: _SERVER found -- 23:32:02.692 INFO [2013]: REMOTE_ADDR = 10.0.0.15 -- 23:32:02.692 INFO [2013]: SERVER_NAME = oameye.works.coregrade.com -- 23:32:02.692 INFO [2013]: HTTP_COOKIE = ci_session=rk574s1it5235vc198paju4084regrja; _gid=GA1.2.1530726571.1586909892; _ga=GA1.2.784606705.1583345490 -- 23:32:02.692 INFO [2013]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 23:32:02.692 INFO [2013]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 23:32:02.703 INFO [2013]: COREGRADE is stopping... -- 23:32:02.704 DEBUG [2013]: Closing database connection -- 23:32:02.704 SQL [2013]: pgsql_close() -- 23:33:35.074 INFO [1443]: COREGRADE is starting... -- 23:33:35.074 INFO [1443]: Version from config: 1.0 -- 23:33:35.074 DEBUG [1443]: Connecting to database... -- 23:33:35.074 DEBUG [1443]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:33:35.074 SQL [1443]: pgsql_db_connect() -- 23:33:35.078 DEBUG [1443]: Database connection successful -- 23:33:35.078 INFO [1443]: _SERVER found -- 23:33:35.078 INFO [1443]: REMOTE_ADDR = 10.0.0.15 -- 23:33:35.078 INFO [1443]: SERVER_NAME = oameye.works.coregrade.com -- 23:33:35.078 INFO [1443]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=mgg173nnjn6071b4a7l0pjab2va20p8h -- 23:33:35.078 INFO [1443]: QUERY_STRING = -- 23:33:35.078 INFO [1443]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 23:33:35.111 INFO [1443]: COREGRADE is stopping... -- 23:33:35.111 DEBUG [1443]: Closing database connection -- 23:33:35.111 SQL [1443]: pgsql_close() -- 23:33:35.910 INFO [2016]: COREGRADE is starting... -- 23:33:35.911 INFO [2016]: Version from config: 1.0 -- 23:33:35.911 DEBUG [2016]: Connecting to database... -- 23:33:35.911 DEBUG [2016]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:33:35.911 SQL [2016]: pgsql_db_connect() -- 23:33:35.915 DEBUG [2016]: Database connection successful -- 23:33:35.915 INFO [2016]: _SERVER found -- 23:33:35.915 INFO [2016]: REMOTE_ADDR = 10.0.0.15 -- 23:33:35.915 INFO [2016]: SERVER_NAME = oameye.works.coregrade.com -- 23:33:35.915 INFO [2016]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=inn65k2ebndfgv6dcv4ovpfb1n8hjljm -- 23:33:35.915 INFO [2016]: QUERY_STRING = /assets/img/footer_1.jpg -- 23:33:35.915 INFO [2016]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 23:33:35.928 INFO [2016]: COREGRADE is stopping... -- 23:33:35.928 DEBUG [2016]: Closing database connection -- 23:33:35.928 SQL [2016]: pgsql_close() -- 23:57:13.474 INFO [2012]: COREGRADE is starting... -- 23:57:13.474 INFO [2012]: Version from config: 1.0 -- 23:57:13.474 DEBUG [2012]: Connecting to database... -- 23:57:13.474 DEBUG [2012]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:57:13.474 SQL [2012]: pgsql_db_connect() -- 23:57:13.479 DEBUG [2012]: Database connection successful -- 23:57:13.479 INFO [2012]: _SERVER found -- 23:57:13.479 INFO [2012]: REMOTE_ADDR = 10.0.0.15 -- 23:57:13.479 INFO [2012]: SERVER_NAME = oameye.works.coregrade.com -- 23:57:13.479 INFO [2012]: HTTP_COOKIE = ci_session=rk574s1it5235vc198paju4084regrja; _gid=GA1.2.1530726571.1586909892; _ga=GA1.2.784606705.1583345490 -- 23:57:13.479 INFO [2012]: QUERY_STRING = -- 23:57:13.479 INFO [2012]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 23:57:13.521 INFO [2012]: COREGRADE is stopping... -- 23:57:13.521 DEBUG [2012]: Closing database connection -- 23:57:13.521 SQL [2012]: pgsql_close() -- 23:57:14.227 INFO [2014]: COREGRADE is starting... -- 23:57:14.227 INFO [2014]: Version from config: 1.0 -- 23:57:14.227 DEBUG [2014]: Connecting to database... -- 23:57:14.227 DEBUG [2014]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:57:14.227 SQL [2014]: pgsql_db_connect() -- 23:57:14.231 DEBUG [2014]: Database connection successful -- 23:57:14.231 INFO [2014]: _SERVER found -- 23:57:14.231 INFO [2014]: REMOTE_ADDR = 10.0.0.15 -- 23:57:14.231 INFO [2014]: SERVER_NAME = oameye.works.coregrade.com -- 23:57:14.231 INFO [2014]: HTTP_COOKIE = ci_session=fdmfpp22fd4708dv8bih3o40mtva6tha; _gid=GA1.2.1530726571.1586909892; _ga=GA1.2.784606705.1583345490 -- 23:57:14.231 INFO [2014]: QUERY_STRING = /assets/img/footer_1.jpg -- 23:57:14.231 INFO [2014]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 23:57:14.244 INFO [2014]: COREGRADE is stopping... -- 23:57:14.244 DEBUG [2014]: Closing database connection -- 23:57:14.244 SQL [2014]: pgsql_close() -- 00:18:41.991 INFO [2017]: COREGRADE is starting... -- 00:18:41.992 INFO [2017]: Version from config: 1.0 -- 00:18:41.992 DEBUG [2017]: Connecting to database... -- 00:18:41.992 DEBUG [2017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:18:41.992 SQL [2017]: pgsql_db_connect() -- 00:18:41.996 DEBUG [2017]: Database connection successful -- 00:18:41.996 INFO [2017]: _SERVER found -- 00:18:41.996 INFO [2017]: REMOTE_ADDR = 10.0.0.15 -- 00:18:41.996 INFO [2017]: SERVER_NAME = oameye.works.coregrade.com -- 00:18:41.996 INFO [2017]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845 -- 00:18:41.996 INFO [2017]: QUERY_STRING = -- 00:18:41.996 INFO [2017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:18:42.039 INFO [2017]: COREGRADE is stopping... -- 00:18:42.039 DEBUG [2017]: Closing database connection -- 00:18:42.039 SQL [2017]: pgsql_close() -- 00:18:42.371 INFO [2017]: COREGRADE is starting... -- 00:18:42.371 INFO [2017]: Version from config: 1.0 -- 00:18:42.371 DEBUG [2017]: Connecting to database... -- 00:18:42.371 DEBUG [2017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:18:42.371 SQL [2017]: pgsql_db_connect() -- 00:18:42.376 DEBUG [2017]: Database connection successful -- 00:18:42.376 INFO [2017]: _SERVER found -- 00:18:42.376 INFO [2017]: REMOTE_ADDR = 10.0.0.15 -- 00:18:42.376 INFO [2017]: SERVER_NAME = oameye.works.coregrade.com -- 00:18:42.376 INFO [2017]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=gfj8cg1nt67ge0qi2a66q8uim1vc6e4o -- 00:18:42.376 INFO [2017]: QUERY_STRING = /assets/img/footer_1.jpg -- 00:18:42.376 INFO [2017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:18:42.387 INFO [2017]: COREGRADE is stopping... -- 00:18:42.387 DEBUG [2017]: Closing database connection -- 00:18:42.387 SQL [2017]: pgsql_close() -- 00:25:36.252 INFO [1440]: COREGRADE is starting... -- 00:25:36.253 INFO [1440]: Version from config: 1.0 -- 00:25:36.253 DEBUG [1440]: Connecting to database... -- 00:25:36.253 DEBUG [1440]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:25:36.253 SQL [1440]: pgsql_db_connect() -- 00:25:36.257 DEBUG [1440]: Database connection successful -- 00:25:36.257 INFO [1440]: _SERVER found -- 00:25:36.257 INFO [1440]: REMOTE_ADDR = 10.0.0.15 -- 00:25:36.257 INFO [1440]: SERVER_NAME = oameye.works.coregrade.com -- 00:25:36.257 INFO [1440]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=gfj8cg1nt67ge0qi2a66q8uim1vc6e4o -- 00:25:36.257 INFO [1440]: QUERY_STRING = -- 00:25:36.257 INFO [1440]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:25:36.293 INFO [1440]: COREGRADE is stopping... -- 00:25:36.293 DEBUG [1440]: Closing database connection -- 00:25:36.293 SQL [1440]: pgsql_close() -- 00:25:36.424 INFO [1440]: COREGRADE is starting... -- 00:25:36.424 INFO [1440]: Version from config: 1.0 -- 00:25:36.424 DEBUG [1440]: Connecting to database... -- 00:25:36.424 DEBUG [1440]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:25:36.424 SQL [1440]: pgsql_db_connect() -- 00:25:36.428 DEBUG [1440]: Database connection successful -- 00:25:36.428 INFO [1440]: _SERVER found -- 00:25:36.428 INFO [1440]: REMOTE_ADDR = 10.0.0.15 -- 00:25:36.428 INFO [1440]: SERVER_NAME = oameye.works.coregrade.com -- 00:25:36.428 INFO [1440]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=34tqh2c0gs31gnkab7uabn1u2fhek2ea -- 00:25:36.428 INFO [1440]: QUERY_STRING = /assets/img/footer_1.jpg -- 00:25:36.428 INFO [1440]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:25:36.440 INFO [1440]: COREGRADE is stopping... -- 00:25:36.440 DEBUG [1440]: Closing database connection -- 00:25:36.440 SQL [1440]: pgsql_close() -- 00:46:05.509 INFO [1441]: COREGRADE is starting... -- 00:46:05.510 INFO [1441]: Version from config: 1.0 -- 00:46:05.510 DEBUG [1441]: Connecting to database... -- 00:46:05.510 DEBUG [1441]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:05.510 SQL [1441]: pgsql_db_connect() -- 00:46:05.514 DEBUG [1441]: Database connection successful -- 00:46:05.514 INFO [1441]: _SERVER found -- 00:46:05.514 INFO [1441]: REMOTE_ADDR = 10.0.0.15 -- 00:46:05.514 INFO [1441]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:05.514 INFO [1441]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=34tqh2c0gs31gnkab7uabn1u2fhek2ea -- 00:46:05.514 INFO [1441]: QUERY_STRING = -- 00:46:05.514 INFO [1441]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:05.549 INFO [1441]: COREGRADE is stopping... -- 00:46:05.549 DEBUG [1441]: Closing database connection -- 00:46:05.549 SQL [1441]: pgsql_close() -- 00:46:05.674 INFO [1441]: COREGRADE is starting... -- 00:46:05.674 INFO [1441]: Version from config: 1.0 -- 00:46:05.674 DEBUG [1441]: Connecting to database... -- 00:46:05.674 DEBUG [1441]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:46:05.674 SQL [1441]: pgsql_db_connect() -- 00:46:05.678 DEBUG [1441]: Database connection successful -- 00:46:05.678 INFO [1441]: _SERVER found -- 00:46:05.678 INFO [1441]: REMOTE_ADDR = 10.0.0.15 -- 00:46:05.678 INFO [1441]: SERVER_NAME = oameye.works.coregrade.com -- 00:46:05.678 INFO [1441]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=jbuc8ttv7v7e0qsq3idi71g3b0fv6upr -- 00:46:05.678 INFO [1441]: QUERY_STRING = /assets/img/footer_1.jpg -- 00:46:05.678 INFO [1441]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:46:05.690 INFO [1441]: COREGRADE is stopping... -- 00:46:05.690 DEBUG [1441]: Closing database connection -- 00:46:05.690 SQL [1441]: pgsql_close() -- 00:57:21.525 INFO [2015]: COREGRADE is starting... -- 00:57:21.525 INFO [2015]: Version from config: 1.0 -- 00:57:21.525 DEBUG [2015]: Connecting to database... -- 00:57:21.525 DEBUG [2015]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:57:21.525 SQL [2015]: pgsql_db_connect() -- 00:57:21.530 DEBUG [2015]: Database connection successful -- 00:57:21.530 INFO [2015]: _SERVER found -- 00:57:21.530 INFO [2015]: REMOTE_ADDR = 10.0.0.15 -- 00:57:21.530 INFO [2015]: SERVER_NAME = oameye.works.coregrade.com -- 00:57:21.530 INFO [2015]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=jbuc8ttv7v7e0qsq3idi71g3b0fv6upr -- 00:57:21.530 INFO [2015]: QUERY_STRING = -- 00:57:21.530 INFO [2015]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:57:21.565 INFO [2015]: COREGRADE is stopping... -- 00:57:21.565 DEBUG [2015]: Closing database connection -- 00:57:21.565 SQL [2015]: pgsql_close() -- 00:57:21.762 INFO [2015]: COREGRADE is starting... -- 00:57:21.762 INFO [2015]: Version from config: 1.0 -- 00:57:21.762 DEBUG [2015]: Connecting to database... -- 00:57:21.762 DEBUG [2015]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:57:21.762 SQL [2015]: pgsql_db_connect() -- 00:57:21.767 DEBUG [2015]: Database connection successful -- 00:57:21.767 INFO [2015]: _SERVER found -- 00:57:21.767 INFO [2015]: REMOTE_ADDR = 10.0.0.15 -- 00:57:21.767 INFO [2015]: SERVER_NAME = oameye.works.coregrade.com -- 00:57:21.767 INFO [2015]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=ft24atfg4ip8k8mv3jlsrrv18ajg9as1 -- 00:57:21.767 INFO [2015]: QUERY_STRING = /assets/img/footer_1.jpg -- 00:57:21.767 INFO [2015]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:57:21.778 INFO [2015]: COREGRADE is stopping... -- 00:57:21.778 DEBUG [2015]: Closing database connection -- 00:57:21.778 SQL [2015]: pgsql_close() -- 01:21:57.424 INFO [1442]: COREGRADE is starting... -- 01:21:57.425 INFO [1442]: Version from config: 1.0 -- 01:21:57.425 DEBUG [1442]: Connecting to database... -- 01:21:57.425 DEBUG [1442]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:21:57.425 SQL [1442]: pgsql_db_connect() -- 01:21:57.429 DEBUG [1442]: Database connection successful -- 01:21:57.429 INFO [1442]: _SERVER found -- 01:21:57.429 INFO [1442]: REMOTE_ADDR = 10.0.0.15 -- 01:21:57.429 INFO [1442]: SERVER_NAME = oameye.works.coregrade.com -- 01:21:57.429 INFO [1442]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=ft24atfg4ip8k8mv3jlsrrv18ajg9as1 -- 01:21:57.429 INFO [1442]: QUERY_STRING = -- 01:21:57.429 INFO [1442]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:21:57.465 INFO [1442]: COREGRADE is stopping... -- 01:21:57.465 DEBUG [1442]: Closing database connection -- 01:21:57.465 SQL [1442]: pgsql_close() -- 01:21:57.577 INFO [1442]: COREGRADE is starting... -- 01:21:57.577 INFO [1442]: Version from config: 1.0 -- 01:21:57.577 DEBUG [1442]: Connecting to database... -- 01:21:57.577 DEBUG [1442]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:21:57.577 SQL [1442]: pgsql_db_connect() -- 01:21:57.582 DEBUG [1442]: Database connection successful -- 01:21:57.582 INFO [1442]: _SERVER found -- 01:21:57.582 INFO [1442]: REMOTE_ADDR = 10.0.0.15 -- 01:21:57.582 INFO [1442]: SERVER_NAME = oameye.works.coregrade.com -- 01:21:57.582 INFO [1442]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=bcgrcrh6jg85a98pn2r07qq932bq4s2g -- 01:21:57.582 INFO [1442]: QUERY_STRING = /assets/img/footer_1.jpg -- 01:21:57.582 INFO [1442]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:21:57.593 INFO [1442]: COREGRADE is stopping... -- 01:21:57.593 DEBUG [1442]: Closing database connection -- 01:21:57.593 SQL [1442]: pgsql_close() -- 01:26:15.195 INFO [2013]: COREGRADE is starting... -- 01:26:15.195 INFO [2013]: Version from config: 1.0 -- 01:26:15.195 DEBUG [2013]: Connecting to database... -- 01:26:15.195 DEBUG [2013]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:26:15.195 SQL [2013]: pgsql_db_connect() -- 01:26:15.199 DEBUG [2013]: Database connection successful -- 01:26:15.199 INFO [2013]: _SERVER found -- 01:26:15.199 INFO [2013]: REMOTE_ADDR = 10.0.0.15 -- 01:26:15.199 INFO [2013]: SERVER_NAME = oameye.works.coregrade.com -- 01:26:15.199 INFO [2013]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699 -- 01:26:15.199 INFO [2013]: QUERY_STRING = -- 01:26:15.199 INFO [2013]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:26:15.234 INFO [2013]: COREGRADE is stopping... -- 01:26:15.234 DEBUG [2013]: Closing database connection -- 01:26:15.234 SQL [2013]: pgsql_close() -- 01:26:16.773 INFO [2013]: COREGRADE is starting... -- 01:26:16.773 INFO [2013]: Version from config: 1.0 -- 01:26:16.773 DEBUG [2013]: Connecting to database... -- 01:26:16.773 DEBUG [2013]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:26:16.773 SQL [2013]: pgsql_db_connect() -- 01:26:16.777 DEBUG [2013]: Database connection successful -- 01:26:16.777 INFO [2013]: _SERVER found -- 01:26:16.777 INFO [2013]: REMOTE_ADDR = 10.0.0.15 -- 01:26:16.777 INFO [2013]: SERVER_NAME = oameye.works.coregrade.com -- 01:26:16.777 INFO [2013]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=q6sq0j72jah0o924onanj2mhrsl8kj7j -- 01:26:16.777 INFO [2013]: QUERY_STRING = /assets/img/footer_1.jpg -- 01:26:16.777 INFO [2013]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:26:16.789 INFO [2013]: COREGRADE is stopping... -- 01:26:16.789 DEBUG [2013]: Closing database connection -- 01:26:16.789 SQL [2013]: pgsql_close() -- 01:26:37.864 INFO [1443]: COREGRADE is starting... -- 01:26:37.864 INFO [1443]: Version from config: 1.0 -- 01:26:37.864 DEBUG [1443]: Connecting to database... -- 01:26:37.864 DEBUG [1443]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:26:37.864 SQL [1443]: pgsql_db_connect() -- 01:26:37.868 DEBUG [1443]: Database connection successful -- 01:26:37.868 INFO [1443]: _SERVER found -- 01:26:37.868 INFO [1443]: REMOTE_ADDR = 10.0.0.15 -- 01:26:37.868 INFO [1443]: SERVER_NAME = oameye.works.coregrade.com -- 01:26:37.868 INFO [1443]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=q6sq0j72jah0o924onanj2mhrsl8kj7j; _gid=GA1.2.799692404.1586928377; _gat_gtag_UA_54829827_2=1 -- 01:26:37.868 INFO [1443]: QUERY_STRING = /auth -- 01:26:37.868 INFO [1443]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:26:37.901 INFO [1443]: COREGRADE is stopping... -- 01:26:37.901 DEBUG [1443]: Closing database connection -- 01:26:37.901 SQL [1443]: pgsql_close() -- 01:26:37.919 INFO [1443]: COREGRADE is starting... -- 01:26:37.919 INFO [1443]: Version from config: 1.0 -- 01:26:37.919 DEBUG [1443]: Connecting to database... -- 01:26:37.919 DEBUG [1443]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:26:37.919 SQL [1443]: pgsql_db_connect() -- 01:26:37.923 DEBUG [1443]: Database connection successful -- 01:26:37.923 INFO [1443]: _SERVER found -- 01:26:37.923 INFO [1443]: REMOTE_ADDR = 10.0.0.15 -- 01:26:37.923 INFO [1443]: SERVER_NAME = oameye.works.coregrade.com -- 01:26:37.923 INFO [1443]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=q6sq0j72jah0o924onanj2mhrsl8kj7j; _gid=GA1.2.799692404.1586928377; _gat_gtag_UA_54829827_2=1 -- 01:26:37.923 INFO [1443]: QUERY_STRING = /welcome/viewLogin -- 01:26:37.923 INFO [1443]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:26:37.953 INFO [1443]: COREGRADE is stopping... -- 01:26:37.953 DEBUG [1443]: Closing database connection -- 01:26:37.953 SQL [1443]: pgsql_close() -- 01:26:53.265 INFO [2016]: COREGRADE is starting... -- 01:26:53.265 INFO [2016]: Version from config: 1.0 -- 01:26:53.265 DEBUG [2016]: Connecting to database... -- 01:26:53.265 DEBUG [2016]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:26:53.265 SQL [2016]: pgsql_db_connect() -- 01:26:53.305 INFO [2016]: COREGRADE is starting... -- 01:26:53.305 INFO [2016]: Version from config: 1.0 -- 01:26:53.305 DEBUG [2016]: Connecting to database... -- 01:26:53.305 DEBUG [2016]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:26:53.305 SQL [2016]: pgsql_db_connect() -- 01:26:53.309 DEBUG [2016]: Database connection successful -- 01:26:53.309 INFO [2016]: _SERVER found -- 01:26:53.309 INFO [2016]: REMOTE_ADDR = 10.0.0.15 -- 01:26:53.309 INFO [2016]: SERVER_NAME = oameye.works.coregrade.com -- 01:26:53.309 INFO [2016]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=q6sq0j72jah0o924onanj2mhrsl8kj7j; _gid=GA1.2.799692404.1586928377; _gat_gtag_UA_54829827_2=1 -- 01:26:53.309 INFO [2016]: QUERY_STRING = -- 01:26:53.309 INFO [2016]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:26:53.309 INFO [2016]: SystemStatus()09-09-********~************ -- 01:26:53.309 INFO [2016]: long coregrade_api_main(CVars in, CVars &out) -- 01:26:53.309 INFO [2016]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 01:26:53.309 INFO [2016]: account calls -- 01:26:53.309 INFO [2016]: account_calls() -- 01:26:53.309 INFO [2016]: LoginCoreGradeAccount() -- 01:26:53.309 FLOG_MAX [2016]: REQ_STRING(username) -- 01:26:53.309 FLOG_MAX [2016]: REQ_STRING(password) -- 01:26:53.309 FLOG_MAX [2016]: REQ_STRING(sessionid) -- 01:26:53.309 FLOG_MAX [2016]: long load_db_record( CVars &rec, const char * query, ... ) -- 01:26:53.309 SQL [2016]: pgsql_query() -- 01:26:53.309 SQL [2016]: About to run query: -- 01:26:53.309 SQL [2016]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678') -- 01:26:53.313 SQL [2016]: Found rows: 1 -- 01:26:53.313 FLOG_MAX [2016]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678')) num_cols=16 -- 01:26:53.313 INFO [2016]: long SessionCheck(long uid, const char *sessionid, int create ) -- 01:26:53.313 SQL [2016]: pgsql_exec() -- 01:26:53.313 SQL [2016]: About to run query: -- 01:26:53.313 SQL [2016]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 01:26:53.315 SQL [2016]: PQcmdTuples: 1 -- 01:26:53.315 SQL [2016]: Affected rows: 1 -- 01:26:53.315 SQL [2016]: pgsql_exec() -- 01:26:53.315 SQL [2016]: About to run query: -- 01:26:53.315 SQL [2016]: DELETE FROM members_session WHERE member_id=7 -- 01:26:53.315 SQL [2016]: PQcmdTuples: 0 -- 01:26:53.315 SQL [2016]: Affected rows: 0 -- 01:26:53.315 SQL [2016]: pgsql_query() -- 01:26:53.315 SQL [2016]: About to run query: -- 01:26:53.315 SQL [2016]: SELECT * FROM members_session WHERE member_id=7 AND session<>'CCBA8CEEB86A9BB24E938BAD470855E6' -- 01:26:53.316 SQL [2016]: Found rows: 0 -- 01:26:53.316 SQL [2016]: Found rows: 0 -- 01:26:53.316 FLOG_MAX [2016]: long load_db_record( CVars &rec, const char * query, ... ) -- 01:26:53.316 SQL [2016]: pgsql_query() -- 01:26:53.316 SQL [2016]: About to run query: -- 01:26:53.316 SQL [2016]: SELECT * FROM members_session WHERE member_id=7 AND session='CCBA8CEEB86A9BB24E938BAD470855E6' -- 01:26:53.316 SQL [2016]: Found rows: 0 -- 01:26:53.316 SQL [2016]: Found rows: 0 -- 01:26:53.316 FLOG_MAX [2016]: insert_db_record() -- 01:26:53.316 SQL [2016]: pgsql_exec() -- 01:26:53.316 SQL [2016]: About to run query: -- 01:26:53.316 SQL [2016]: INSERT INTO members_session (member_id,session) VALUES ('7','CCBA8CEEB86A9BB24E938BAD470855E6') -- 01:26:53.318 SQL [2016]: PQcmdTuples: 1 -- 01:26:53.318 SQL [2016]: Affected rows: 1 -- 01:26:53.318 FLOG_MAX [2016]: SELECT currval('members_session_id_seq') -- 01:26:53.318 SQL [2016]: pgsql_query() -- 01:26:53.318 SQL [2016]: About to run query: -- 01:26:53.318 SQL [2016]: SELECT currval('members_session_id_seq') -- 01:26:53.318 SQL [2016]: Found rows: 1 -- 01:26:53.318 INFO [2016]: CreateDefaultPage() -- 01:26:53.318 FLOG_MAX [2016]: long load_db_record( CVars &rec, const char * query, ... ) -- 01:26:53.318 SQL [2016]: pgsql_query() -- 01:26:53.318 SQL [2016]: About to run query: -- 01:26:53.318 SQL [2016]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 01:26:53.319 SQL [2016]: Found rows: 1 -- 01:26:53.319 FLOG_MAX [2016]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 01:26:53.319 SQL [2016]: pgsql_query() -- 01:26:53.319 SQL [2016]: About to run query: -- 01:26:53.319 SQL [2016]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 01:26:53.319 SQL [2016]: Found rows: 1 -- 01:26:53.319 INFO [2016]: /CreateDefaultPage() -- 01:26:53.319 INFO [2016]: /LoginCoreGradeAccount() -- 01:26:53.319 INFO [2016]: RET: added=2020-02-05 09:42:12.816064 -- 01:26:53.319 INFO [2016]: RET: email=tokslaw@chiefsoft.com -- 01:26:53.319 INFO [2016]: RET: firstname=Tokunbo -- 01:26:53.319 INFO [2016]: RET: folder=5D06B187B1E2285A63AD1D0ECB670D98 -- 01:26:53.319 INFO [2016]: RET: id=7 -- 01:26:53.319 INFO [2016]: RET: last_login= -- 01:26:53.319 INFO [2016]: RET: lastname=Lawal -- 01:26:53.319 INFO [2016]: RET: loc=192.168.1.13 -- 01:26:53.319 INFO [2016]: RET: member_id=7 -- 01:26:53.319 INFO [2016]: RET: password=25d55ad283aa400af464c76d713c07ad -- 01:26:53.319 INFO [2016]: RET: phone= -- 01:26:53.319 INFO [2016]: RET: pid= -- 01:26:53.319 INFO [2016]: RET: result=YES I GET TO BACK END -- 01:26:53.319 INFO [2016]: RET: sessionid=CCBA8CEEB86A9BB24E938BAD470855E6 -- 01:26:53.319 INFO [2016]: RET: status=1 -- 01:26:53.319 INFO [2016]: RET: stauts=OK -- 01:26:53.319 INFO [2016]: RET: username=tokslaw@chiefsoft.com -- 01:26:53.319 INFO [2016]: RET: verified= -- 01:26:53.321 INFO [2016]: COREGRADE is stopping... -- 01:26:53.321 DEBUG [2016]: Closing database connection -- 01:26:53.321 SQL [2016]: pgsql_close() -- 01:26:53.269 DEBUG [2016]: Database connection successful -- 01:26:53.269 INFO [2016]: _SERVER found -- 01:26:53.269 INFO [2016]: REMOTE_ADDR = 10.0.0.15 -- 01:26:53.269 INFO [2016]: SERVER_NAME = oameye.works.coregrade.com -- 01:26:53.269 INFO [2016]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=q6sq0j72jah0o924onanj2mhrsl8kj7j; _gid=GA1.2.799692404.1586928377; _gat_gtag_UA_54829827_2=1 -- 01:26:53.269 INFO [2016]: QUERY_STRING = /auth -- 01:26:53.269 INFO [2016]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:26:53.321 INFO [2016]: COREGRADE is stopping... -- 01:26:53.321 DEBUG [2016]: Closing database connection -- 01:26:53.321 SQL [2016]: pgsql_close() -- 01:26:53.354 INFO [2016]: COREGRADE is starting... -- 01:26:53.354 INFO [2016]: Version from config: 1.0 -- 01:26:53.354 DEBUG [2016]: Connecting to database... -- 01:26:53.354 DEBUG [2016]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:26:53.354 SQL [2016]: pgsql_db_connect() -- 01:26:53.358 DEBUG [2016]: Database connection successful -- 01:26:53.358 INFO [2016]: _SERVER found -- 01:26:53.358 INFO [2016]: REMOTE_ADDR = 10.0.0.15 -- 01:26:53.358 INFO [2016]: SERVER_NAME = oameye.works.coregrade.com -- 01:26:53.358 INFO [2016]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=q6sq0j72jah0o924onanj2mhrsl8kj7j; _gid=GA1.2.799692404.1586928377; _gat_gtag_UA_54829827_2=1 -- 01:26:53.358 INFO [2016]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 01:26:53.358 INFO [2016]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:26:53.370 INFO [2016]: COREGRADE is stopping... -- 01:26:53.370 DEBUG [2016]: Closing database connection -- 01:26:53.370 SQL [2016]: pgsql_close() -- 01:26:53.387 INFO [2016]: COREGRADE is starting... -- 01:26:53.388 INFO [2016]: Version from config: 1.0 -- 01:26:53.388 DEBUG [2016]: Connecting to database... -- 01:26:53.388 DEBUG [2016]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:26:53.388 SQL [2016]: pgsql_db_connect() -- 01:26:53.392 DEBUG [2016]: Database connection successful -- 01:26:53.392 INFO [2016]: _SERVER found -- 01:26:53.392 INFO [2016]: REMOTE_ADDR = 10.0.0.15 -- 01:26:53.392 INFO [2016]: SERVER_NAME = oameye.works.coregrade.com -- 01:26:53.392 INFO [2016]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=q6sq0j72jah0o924onanj2mhrsl8kj7j; _gid=GA1.2.799692404.1586928377; _gat_gtag_UA_54829827_2=1 -- 01:26:53.392 INFO [2016]: QUERY_STRING = /member/index -- 01:26:53.392 INFO [2016]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:26:53.434 INFO [2016]: COREGRADE is stopping... -- 01:26:53.434 DEBUG [2016]: Closing database connection -- 01:26:53.434 SQL [2016]: pgsql_close() -- 01:26:54.229 INFO [2016]: COREGRADE is starting... -- 01:26:54.230 INFO [2016]: Version from config: 1.0 -- 01:26:54.230 DEBUG [2016]: Connecting to database... -- 01:26:54.230 DEBUG [2016]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:26:54.230 SQL [2016]: pgsql_db_connect() -- 01:26:54.234 DEBUG [2016]: Database connection successful -- 01:26:54.234 INFO [2016]: _SERVER found -- 01:26:54.234 INFO [2016]: REMOTE_ADDR = 10.0.0.15 -- 01:26:54.234 INFO [2016]: SERVER_NAME = oameye.works.coregrade.com -- 01:26:54.234 INFO [2016]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=q6sq0j72jah0o924onanj2mhrsl8kj7j; _gid=GA1.2.799692404.1586928377; _gat_gtag_UA_54829827_2=1 -- 01:26:54.234 INFO [2016]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:26:54.234 INFO [2016]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:26:54.245 INFO [2016]: COREGRADE is stopping... -- 01:26:54.245 DEBUG [2016]: Closing database connection -- 01:26:54.245 SQL [2016]: pgsql_close() -- 01:27:15.695 INFO [2012]: COREGRADE is starting... -- 01:27:15.696 INFO [2012]: Version from config: 1.0 -- 01:27:15.696 DEBUG [2012]: Connecting to database... -- 01:27:15.696 DEBUG [2012]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:27:15.696 SQL [2012]: pgsql_db_connect() -- 01:27:15.701 DEBUG [2012]: Database connection successful -- 01:27:15.701 INFO [2012]: _SERVER found -- 01:27:15.701 INFO [2012]: REMOTE_ADDR = 10.0.0.15 -- 01:27:15.701 INFO [2012]: SERVER_NAME = oameye.works.coregrade.com -- 01:27:15.701 INFO [2012]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=q6sq0j72jah0o924onanj2mhrsl8kj7j; _gid=GA1.2.799692404.1586928377; _gat_gtag_UA_54829827_2=1 -- 01:27:15.701 INFO [2012]: QUERY_STRING = /home/terms -- 01:27:15.701 INFO [2012]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:27:15.735 INFO [2012]: COREGRADE is stopping... -- 01:27:15.735 DEBUG [2012]: Closing database connection -- 01:27:15.735 SQL [2012]: pgsql_close() -- 01:27:16.174 INFO [2012]: COREGRADE is starting... -- 01:27:16.174 INFO [2012]: Version from config: 1.0 -- 01:27:16.174 DEBUG [2012]: Connecting to database... -- 01:27:16.174 DEBUG [2012]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:27:16.174 SQL [2012]: pgsql_db_connect() -- 01:27:16.179 DEBUG [2012]: Database connection successful -- 01:27:16.179 INFO [2012]: _SERVER found -- 01:27:16.179 INFO [2012]: REMOTE_ADDR = 10.0.0.15 -- 01:27:16.179 INFO [2012]: SERVER_NAME = oameye.works.coregrade.com -- 01:27:16.179 INFO [2012]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=q6sq0j72jah0o924onanj2mhrsl8kj7j; _gid=GA1.2.799692404.1586928377; _gat_gtag_UA_54829827_2=1 -- 01:27:16.179 INFO [2012]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 01:27:16.179 INFO [2012]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:27:16.190 INFO [2012]: COREGRADE is stopping... -- 01:27:16.190 DEBUG [2012]: Closing database connection -- 01:27:16.190 SQL [2012]: pgsql_close() -- 01:27:38.263 INFO [2014]: COREGRADE is starting... -- 01:27:38.264 INFO [2014]: Version from config: 1.0 -- 01:27:38.264 DEBUG [2014]: Connecting to database... -- 01:27:38.264 DEBUG [2014]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:27:38.264 SQL [2014]: pgsql_db_connect() -- 01:27:38.268 DEBUG [2014]: Database connection successful -- 01:27:38.268 INFO [2014]: _SERVER found -- 01:27:38.268 INFO [2014]: REMOTE_ADDR = 10.0.0.15 -- 01:27:38.268 INFO [2014]: SERVER_NAME = oameye.works.coregrade.com -- 01:27:38.268 INFO [2014]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=q6sq0j72jah0o924onanj2mhrsl8kj7j; _gid=GA1.2.799692404.1586928377 -- 01:27:38.268 INFO [2014]: QUERY_STRING = /member/page -- 01:27:38.268 INFO [2014]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:27:38.314 INFO [2014]: COREGRADE is stopping... -- 01:27:38.314 DEBUG [2014]: Closing database connection -- 01:27:38.314 SQL [2014]: pgsql_close() -- 01:27:38.730 INFO [2014]: COREGRADE is starting... -- 01:27:38.731 INFO [2014]: Version from config: 1.0 -- 01:27:38.731 DEBUG [2014]: Connecting to database... -- 01:27:38.731 DEBUG [2014]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:27:38.731 SQL [2014]: pgsql_db_connect() -- 01:27:38.735 DEBUG [2014]: Database connection successful -- 01:27:38.735 INFO [2014]: _SERVER found -- 01:27:38.735 INFO [2014]: REMOTE_ADDR = 10.0.0.15 -- 01:27:38.735 INFO [2014]: SERVER_NAME = oameye.works.coregrade.com -- 01:27:38.735 INFO [2014]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=q6sq0j72jah0o924onanj2mhrsl8kj7j; _gid=GA1.2.799692404.1586928377 -- 01:27:38.735 INFO [2014]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:27:38.735 INFO [2014]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:27:38.747 INFO [2014]: COREGRADE is stopping... -- 01:27:38.747 DEBUG [2014]: Closing database connection -- 01:27:38.747 SQL [2014]: pgsql_close() -- 01:27:55.545 INFO [2017]: COREGRADE is starting... -- 01:27:55.545 INFO [2017]: Version from config: 1.0 -- 01:27:55.545 DEBUG [2017]: Connecting to database... -- 01:27:55.545 DEBUG [2017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:27:55.545 SQL [2017]: pgsql_db_connect() -- 01:27:55.549 DEBUG [2017]: Database connection successful -- 01:27:55.549 INFO [2017]: _SERVER found -- 01:27:55.549 INFO [2017]: REMOTE_ADDR = 10.0.0.15 -- 01:27:55.549 INFO [2017]: SERVER_NAME = oameye.works.coregrade.com -- 01:27:55.549 INFO [2017]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=q6sq0j72jah0o924onanj2mhrsl8kj7j; _gid=GA1.2.799692404.1586928377 -- 01:27:55.549 INFO [2017]: QUERY_STRING = /member/viewCardAddAction -- 01:27:55.549 INFO [2017]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:27:55.583 INFO [2017]: COREGRADE is stopping... -- 01:27:55.583 DEBUG [2017]: Closing database connection -- 01:27:55.583 SQL [2017]: pgsql_close() -- 01:28:27.867 INFO [1440]: COREGRADE is starting... -- 01:28:27.868 INFO [1440]: Version from config: 1.0 -- 01:28:27.868 DEBUG [1440]: Connecting to database... -- 01:28:27.868 DEBUG [1440]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:27.868 SQL [1440]: pgsql_db_connect() -- 01:28:27.872 DEBUG [1440]: Database connection successful -- 01:28:27.872 INFO [1440]: _SERVER found -- 01:28:27.872 INFO [1440]: REMOTE_ADDR = 10.0.0.15 -- 01:28:27.872 INFO [1440]: SERVER_NAME = oameye.works.coregrade.com -- 01:28:27.873 INFO [1440]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=q6sq0j72jah0o924onanj2mhrsl8kj7j; _gid=GA1.2.799692404.1586928377 -- 01:28:27.873 INFO [1440]: QUERY_STRING = -- 01:28:27.873 INFO [1440]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:28:27.907 INFO [1440]: COREGRADE is stopping... -- 01:28:27.907 DEBUG [1440]: Closing database connection -- 01:28:27.907 SQL [1440]: pgsql_close() -- 01:28:28.422 INFO [1440]: COREGRADE is starting... -- 01:28:28.422 INFO [1440]: Version from config: 1.0 -- 01:28:28.422 DEBUG [1440]: Connecting to database... -- 01:28:28.422 DEBUG [1440]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:28.422 SQL [1440]: pgsql_db_connect() -- 01:28:28.427 DEBUG [1440]: Database connection successful -- 01:28:28.427 INFO [1440]: _SERVER found -- 01:28:28.427 INFO [1440]: REMOTE_ADDR = 10.0.0.15 -- 01:28:28.427 INFO [1440]: SERVER_NAME = oameye.works.coregrade.com -- 01:28:28.427 INFO [1440]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=q6sq0j72jah0o924onanj2mhrsl8kj7j; _gid=GA1.2.799692404.1586928377 -- 01:28:28.427 INFO [1440]: QUERY_STRING = /assets/img/footer_1.jpg -- 01:28:28.427 INFO [1440]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:28:28.438 INFO [1440]: COREGRADE is stopping... -- 01:28:28.439 DEBUG [1440]: Closing database connection -- 01:28:28.439 SQL [1440]: pgsql_close() -- 01:28:57.755 INFO [1441]: COREGRADE is starting... -- 01:28:57.756 INFO [1441]: Version from config: 1.0 -- 01:28:57.756 DEBUG [1441]: Connecting to database... -- 01:28:57.756 DEBUG [1441]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:57.756 SQL [1441]: pgsql_db_connect() -- 01:28:57.760 DEBUG [1441]: Database connection successful -- 01:28:57.760 INFO [1441]: _SERVER found -- 01:28:57.760 INFO [1441]: REMOTE_ADDR = 10.0.0.15 -- 01:28:57.760 INFO [1441]: SERVER_NAME = oameye.works.coregrade.com -- 01:28:57.760 INFO [1441]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=q6sq0j72jah0o924onanj2mhrsl8kj7j; _gid=GA1.2.799692404.1586928377; _gat_gtag_UA_54829827_2=1 -- 01:28:57.760 INFO [1441]: QUERY_STRING = /welcome/viewLogin -- 01:28:57.760 INFO [1441]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:28:57.792 INFO [1441]: COREGRADE is stopping... -- 01:28:57.792 DEBUG [1441]: Closing database connection -- 01:28:57.792 SQL [1441]: pgsql_close() -- 01:28:57.814 INFO [1441]: COREGRADE is starting... -- 01:28:57.815 INFO [1441]: Version from config: 1.0 -- 01:28:57.815 DEBUG [1441]: Connecting to database... -- 01:28:57.815 DEBUG [1441]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:57.815 SQL [1441]: pgsql_db_connect() -- 01:28:57.819 DEBUG [1441]: Database connection successful -- 01:28:57.819 INFO [1441]: _SERVER found -- 01:28:57.819 INFO [1441]: REMOTE_ADDR = 10.0.0.15 -- 01:28:57.819 INFO [1441]: SERVER_NAME = oameye.works.coregrade.com -- 01:28:57.819 INFO [1441]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=q6sq0j72jah0o924onanj2mhrsl8kj7j; _gid=GA1.2.799692404.1586928377; _gat_gtag_UA_54829827_2=1 -- 01:28:57.819 INFO [1441]: QUERY_STRING = /auth -- 01:28:57.819 INFO [1441]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:28:57.851 INFO [1441]: COREGRADE is stopping... -- 01:28:57.851 DEBUG [1441]: Closing database connection -- 01:28:57.851 SQL [1441]: pgsql_close() -- 01:28:57.865 INFO [1441]: COREGRADE is starting... -- 01:28:57.865 INFO [1441]: Version from config: 1.0 -- 01:28:57.865 DEBUG [1441]: Connecting to database... -- 01:28:57.865 DEBUG [1441]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:57.865 SQL [1441]: pgsql_db_connect() -- 01:28:57.870 DEBUG [1441]: Database connection successful -- 01:28:57.870 INFO [1441]: _SERVER found -- 01:28:57.870 INFO [1441]: REMOTE_ADDR = 10.0.0.15 -- 01:28:57.870 INFO [1441]: SERVER_NAME = oameye.works.coregrade.com -- 01:28:57.870 INFO [1441]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=q6sq0j72jah0o924onanj2mhrsl8kj7j; _gid=GA1.2.799692404.1586928377; _gat_gtag_UA_54829827_2=1 -- 01:28:57.870 INFO [1441]: QUERY_STRING = /auth/index -- 01:28:57.870 INFO [1441]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:28:57.902 INFO [1441]: COREGRADE is stopping... -- 01:28:57.902 DEBUG [1441]: Closing database connection -- 01:28:57.902 SQL [1441]: pgsql_close() -- 01:29:08.568 INFO [2015]: COREGRADE is starting... -- 01:29:08.568 INFO [2015]: Version from config: 1.0 -- 01:29:08.568 DEBUG [2015]: Connecting to database... -- 01:29:08.568 DEBUG [2015]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:29:08.568 SQL [2015]: pgsql_db_connect() -- 01:29:08.573 DEBUG [2015]: Database connection successful -- 01:29:08.573 INFO [2015]: _SERVER found -- 01:29:08.573 INFO [2015]: REMOTE_ADDR = 10.0.0.15 -- 01:29:08.573 INFO [2015]: SERVER_NAME = oameye.works.coregrade.com -- 01:29:08.573 INFO [2015]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=q6sq0j72jah0o924onanj2mhrsl8kj7j; _gid=GA1.2.799692404.1586928377; _gat_gtag_UA_54829827_2=1 -- 01:29:08.573 INFO [2015]: QUERY_STRING = -- 01:29:08.573 INFO [2015]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:29:08.610 INFO [2015]: COREGRADE is stopping... -- 01:29:08.610 DEBUG [2015]: Closing database connection -- 01:29:08.610 SQL [2015]: pgsql_close() -- 01:29:08.627 INFO [2015]: COREGRADE is starting... -- 01:29:08.627 INFO [2015]: Version from config: 1.0 -- 01:29:08.627 DEBUG [2015]: Connecting to database... -- 01:29:08.627 DEBUG [2015]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:29:08.627 SQL [2015]: pgsql_db_connect() -- 01:29:08.632 DEBUG [2015]: Database connection successful -- 01:29:08.632 INFO [2015]: _SERVER found -- 01:29:08.632 INFO [2015]: REMOTE_ADDR = 10.0.0.15 -- 01:29:08.632 INFO [2015]: SERVER_NAME = oameye.works.coregrade.com -- 01:29:08.632 INFO [2015]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=q6sq0j72jah0o924onanj2mhrsl8kj7j; _gid=GA1.2.799692404.1586928377; _gat_gtag_UA_54829827_2=1 -- 01:29:08.632 INFO [2015]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 01:29:08.632 INFO [2015]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:29:08.643 INFO [2015]: COREGRADE is stopping... -- 01:29:08.643 DEBUG [2015]: Closing database connection -- 01:29:08.643 SQL [2015]: pgsql_close() -- 01:29:19.441 INFO [1442]: COREGRADE is starting... -- 01:29:19.441 INFO [1442]: Version from config: 1.0 -- 01:29:19.441 DEBUG [1442]: Connecting to database... -- 01:29:19.442 DEBUG [1442]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:29:19.442 SQL [1442]: pgsql_db_connect() -- 01:29:19.446 DEBUG [1442]: Database connection successful -- 01:29:19.446 INFO [1442]: _SERVER found -- 01:29:19.446 INFO [1442]: REMOTE_ADDR = 10.0.0.15 -- 01:29:19.446 INFO [1442]: SERVER_NAME = oameye.works.coregrade.com -- 01:29:19.446 INFO [1442]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=q6sq0j72jah0o924onanj2mhrsl8kj7j; _gid=GA1.2.799692404.1586928377; _gat_gtag_UA_54829827_2=1 -- 01:29:19.446 INFO [1442]: QUERY_STRING = /home/aboutus -- 01:29:19.446 INFO [1442]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:29:19.480 INFO [1442]: COREGRADE is stopping... -- 01:29:19.480 DEBUG [1442]: Closing database connection -- 01:29:19.480 SQL [1442]: pgsql_close() -- 01:29:19.827 INFO [1442]: COREGRADE is starting... -- 01:29:19.827 INFO [1442]: Version from config: 1.0 -- 01:29:19.827 DEBUG [1442]: Connecting to database... -- 01:29:19.827 DEBUG [1442]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:29:19.827 SQL [1442]: pgsql_db_connect() -- 01:29:19.832 DEBUG [1442]: Database connection successful -- 01:29:19.832 INFO [1442]: _SERVER found -- 01:29:19.832 INFO [1442]: REMOTE_ADDR = 10.0.0.15 -- 01:29:19.832 INFO [1442]: SERVER_NAME = oameye.works.coregrade.com -- 01:29:19.832 INFO [1442]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=q6sq0j72jah0o924onanj2mhrsl8kj7j; _gid=GA1.2.799692404.1586928377; _gat_gtag_UA_54829827_2=1 -- 01:29:19.832 INFO [1442]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 01:29:19.832 INFO [1442]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:29:19.843 INFO [1442]: COREGRADE is stopping... -- 01:29:19.843 DEBUG [1442]: Closing database connection -- 01:29:19.843 SQL [1442]: pgsql_close() -- 01:29:37.918 INFO [2013]: COREGRADE is starting... -- 01:29:37.918 INFO [2013]: Version from config: 1.0 -- 01:29:37.918 DEBUG [2013]: Connecting to database... -- 01:29:37.918 DEBUG [2013]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:29:37.918 SQL [2013]: pgsql_db_connect() -- 01:29:37.923 DEBUG [2013]: Database connection successful -- 01:29:37.923 INFO [2013]: _SERVER found -- 01:29:37.923 INFO [2013]: REMOTE_ADDR = 10.0.0.15 -- 01:29:37.923 INFO [2013]: SERVER_NAME = oameye.works.coregrade.com -- 01:29:37.923 INFO [2013]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=q6sq0j72jah0o924onanj2mhrsl8kj7j; _gid=GA1.2.799692404.1586928377 -- 01:29:37.923 INFO [2013]: QUERY_STRING = -- 01:29:37.923 INFO [2013]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:29:37.956 INFO [2013]: COREGRADE is stopping... -- 01:29:37.956 DEBUG [2013]: Closing database connection -- 01:29:37.956 SQL [2013]: pgsql_close() -- 01:29:41.026 INFO [2013]: COREGRADE is starting... -- 01:29:41.026 INFO [2013]: Version from config: 1.0 -- 01:29:41.026 DEBUG [2013]: Connecting to database... -- 01:29:41.026 DEBUG [2013]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:29:41.026 SQL [2013]: pgsql_db_connect() -- 01:29:41.030 DEBUG [2013]: Database connection successful -- 01:29:41.030 INFO [2013]: _SERVER found -- 01:29:41.030 INFO [2013]: REMOTE_ADDR = 10.0.0.15 -- 01:29:41.030 INFO [2013]: SERVER_NAME = oameye.works.coregrade.com -- 01:29:41.030 INFO [2013]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=q6sq0j72jah0o924onanj2mhrsl8kj7j; _gid=GA1.2.799692404.1586928377; _gat_gtag_UA_54829827_2=1 -- 01:29:41.030 INFO [2013]: QUERY_STRING = /home/security -- 01:29:41.030 INFO [2013]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:29:41.062 INFO [2013]: COREGRADE is stopping... -- 01:29:41.062 DEBUG [2013]: Closing database connection -- 01:29:41.062 SQL [2013]: pgsql_close() -- 01:29:41.381 INFO [2013]: COREGRADE is starting... -- 01:29:41.381 INFO [2013]: Version from config: 1.0 -- 01:29:41.381 DEBUG [2013]: Connecting to database... -- 01:29:41.381 DEBUG [2013]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:29:41.381 SQL [2013]: pgsql_db_connect() -- 01:29:41.385 DEBUG [2013]: Database connection successful -- 01:29:41.385 INFO [2013]: _SERVER found -- 01:29:41.385 INFO [2013]: REMOTE_ADDR = 10.0.0.15 -- 01:29:41.385 INFO [2013]: SERVER_NAME = oameye.works.coregrade.com -- 01:29:41.385 INFO [2013]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=q6sq0j72jah0o924onanj2mhrsl8kj7j; _gid=GA1.2.799692404.1586928377; _gat_gtag_UA_54829827_2=1 -- 01:29:41.385 INFO [2013]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 01:29:41.385 INFO [2013]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:29:41.397 INFO [2013]: COREGRADE is stopping... -- 01:29:41.397 DEBUG [2013]: Closing database connection -- 01:29:41.397 SQL [2013]: pgsql_close() -- 01:29:58.940 INFO [1443]: COREGRADE is starting... -- 01:29:58.940 INFO [1443]: Version from config: 1.0 -- 01:29:58.940 DEBUG [1443]: Connecting to database... -- 01:29:58.940 DEBUG [1443]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:29:58.940 SQL [1443]: pgsql_db_connect() -- 01:29:58.945 DEBUG [1443]: Database connection successful -- 01:29:58.945 INFO [1443]: _SERVER found -- 01:29:58.945 INFO [1443]: REMOTE_ADDR = 10.0.0.15 -- 01:29:58.945 INFO [1443]: SERVER_NAME = oameye.works.coregrade.com -- 01:29:58.945 INFO [1443]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=q6sq0j72jah0o924onanj2mhrsl8kj7j; _gid=GA1.2.799692404.1586928377; _gat_gtag_UA_54829827_2=1 -- 01:29:58.945 INFO [1443]: QUERY_STRING = -- 01:29:58.945 INFO [1443]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:29:58.978 INFO [1443]: COREGRADE is stopping... -- 01:29:58.978 DEBUG [1443]: Closing database connection -- 01:29:58.978 SQL [1443]: pgsql_close() -- 01:30:01.745 INFO [1443]: COREGRADE is starting... -- 01:30:01.745 INFO [1443]: Version from config: 1.0 -- 01:30:01.746 DEBUG [1443]: Connecting to database... -- 01:30:01.746 DEBUG [1443]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:30:01.746 SQL [1443]: pgsql_db_connect() -- 01:30:01.750 DEBUG [1443]: Database connection successful -- 01:30:01.750 INFO [1443]: _SERVER found -- 01:30:01.750 INFO [1443]: REMOTE_ADDR = 10.0.0.15 -- 01:30:01.750 INFO [1443]: SERVER_NAME = oameye.works.coregrade.com -- 01:30:01.750 INFO [1443]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=q6sq0j72jah0o924onanj2mhrsl8kj7j; _gid=GA1.2.799692404.1586928377; _gat_gtag_UA_54829827_2=1 -- 01:30:01.750 INFO [1443]: QUERY_STRING = /member -- 01:30:01.750 INFO [1443]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:30:01.794 INFO [1443]: COREGRADE is stopping... -- 01:30:01.794 DEBUG [1443]: Closing database connection -- 01:30:01.794 SQL [1443]: pgsql_close() -- 01:30:13.084 INFO [2016]: COREGRADE is starting... -- 01:30:13.085 INFO [2016]: Version from config: 1.0 -- 01:30:13.085 DEBUG [2016]: Connecting to database... -- 01:30:13.085 DEBUG [2016]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:30:13.085 SQL [2016]: pgsql_db_connect() -- 01:30:13.089 DEBUG [2016]: Database connection successful -- 01:30:13.089 INFO [2016]: _SERVER found -- 01:30:13.089 INFO [2016]: REMOTE_ADDR = 10.0.0.15 -- 01:30:13.089 INFO [2016]: SERVER_NAME = oameye.works.coregrade.com -- 01:30:13.089 INFO [2016]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=q6sq0j72jah0o924onanj2mhrsl8kj7j; _gid=GA1.2.799692404.1586928377; _gat_gtag_UA_54829827_2=1 -- 01:30:13.089 INFO [2016]: QUERY_STRING = -- 01:30:13.089 INFO [2016]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:30:13.129 INFO [2016]: COREGRADE is stopping... -- 01:30:13.129 DEBUG [2016]: Closing database connection -- 01:30:13.129 SQL [2016]: pgsql_close() -- 01:30:13.687 INFO [2016]: COREGRADE is starting... -- 01:30:13.687 INFO [2016]: Version from config: 1.0 -- 01:30:13.687 DEBUG [2016]: Connecting to database... -- 01:30:13.687 DEBUG [2016]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:30:13.687 SQL [2016]: pgsql_db_connect() -- 01:30:13.692 DEBUG [2016]: Database connection successful -- 01:30:13.692 INFO [2016]: _SERVER found -- 01:30:13.692 INFO [2016]: REMOTE_ADDR = 10.0.0.15 -- 01:30:13.692 INFO [2016]: SERVER_NAME = oameye.works.coregrade.com -- 01:30:13.692 INFO [2016]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=q6sq0j72jah0o924onanj2mhrsl8kj7j; _gid=GA1.2.799692404.1586928377; _gat_gtag_UA_54829827_2=1 -- 01:30:13.692 INFO [2016]: QUERY_STRING = /assets/img/footer_1.jpg -- 01:30:13.692 INFO [2016]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:30:13.703 INFO [2016]: COREGRADE is stopping... -- 01:30:13.703 DEBUG [2016]: Closing database connection -- 01:30:13.703 SQL [2016]: pgsql_close() -- 02:03:02.936 INFO [2012]: COREGRADE is starting... -- 02:03:02.936 INFO [2012]: Version from config: 1.0 -- 02:03:02.937 DEBUG [2012]: Connecting to database... -- 02:03:02.937 DEBUG [2012]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:03:02.937 SQL [2012]: pgsql_db_connect() -- 02:03:02.941 DEBUG [2012]: Database connection successful -- 02:03:02.941 INFO [2012]: _SERVER found -- 02:03:02.941 INFO [2012]: REMOTE_ADDR = 10.0.0.15 -- 02:03:02.941 INFO [2012]: SERVER_NAME = oameye.works.coregrade.com -- 02:03:02.941 INFO [2012]: QUERY_STRING = /.well-known/acme-challenge/ZyKdxMKwIWqq6ghX8chNoYRjKtWW-vsHRfLdWiTvD9Y -- 02:03:02.941 INFO [2012]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 02:03:02.956 INFO [2012]: COREGRADE is stopping... -- 02:03:02.956 DEBUG [2012]: Closing database connection -- 02:03:02.956 SQL [2012]: pgsql_close() -- 02:03:03.031 INFO [2012]: COREGRADE is starting... -- 02:03:03.032 INFO [2012]: Version from config: 1.0 -- 02:03:03.032 DEBUG [2012]: Connecting to database... -- 02:03:03.032 DEBUG [2012]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:03:03.032 SQL [2012]: pgsql_db_connect() -- 02:03:03.036 DEBUG [2012]: Database connection successful -- 02:03:03.036 INFO [2012]: _SERVER found -- 02:03:03.036 INFO [2012]: REMOTE_ADDR = 10.0.0.15 -- 02:03:03.036 INFO [2012]: SERVER_NAME = oameye.works.coregrade.com -- 02:03:03.036 INFO [2012]: QUERY_STRING = /.well-known/acme-challenge/ZyKdxMKwIWqq6ghX8chNoYRjKtWW-vsHRfLdWiTvD9Y -- 02:03:03.036 INFO [2012]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 02:03:03.047 INFO [2012]: COREGRADE is stopping... -- 02:03:03.047 DEBUG [2012]: Closing database connection -- 02:03:03.047 SQL [2012]: pgsql_close() -- 03:32:26.984 INFO [4191]: COREGRADE is starting... -- 03:32:26.985 INFO [4191]: Version from config: 1.0 -- 03:32:26.985 DEBUG [4191]: Connecting to database... -- 03:32:26.985 DEBUG [4191]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:32:26.985 SQL [4191]: pgsql_db_connect() -- 03:32:26.990 DEBUG [4191]: Database connection successful -- 03:32:26.990 INFO [4191]: _SERVER found -- 03:32:26.990 INFO [4191]: REMOTE_ADDR = 10.0.0.15 -- 03:32:26.990 INFO [4191]: SERVER_NAME = oameye.works.coregrade.com -- 03:32:26.990 INFO [4191]: QUERY_STRING = -- 03:32:26.990 INFO [4191]: HTTP_X_FORWARDED_FOR = 178.62.9.12 -- 03:32:27.037 INFO [4191]: COREGRADE is stopping... -- 03:32:27.037 DEBUG [4191]: Closing database connection -- 03:32:27.037 SQL [4191]: pgsql_close() -- 05:27:04.770 INFO [4192]: COREGRADE is starting... -- 05:27:04.771 INFO [4192]: Version from config: 1.0 -- 05:27:04.771 DEBUG [4192]: Connecting to database... -- 05:27:04.771 DEBUG [4192]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:27:04.771 SQL [4192]: pgsql_db_connect() -- 05:27:04.776 DEBUG [4192]: Database connection successful -- 05:27:04.776 INFO [4192]: _SERVER found -- 05:27:04.776 INFO [4192]: REMOTE_ADDR = 10.0.0.15 -- 05:27:04.776 INFO [4192]: SERVER_NAME = oameye.works.coregrade.com -- 05:27:04.776 INFO [4192]: QUERY_STRING = -- 05:27:04.776 INFO [4192]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 05:27:04.828 INFO [4192]: COREGRADE is stopping... -- 05:27:04.828 DEBUG [4192]: Closing database connection -- 05:27:04.828 SQL [4192]: pgsql_close() -- 05:36:08.733 INFO [4193]: COREGRADE is starting... -- 05:36:08.733 INFO [4193]: Version from config: 1.0 -- 05:36:08.733 DEBUG [4193]: Connecting to database... -- 05:36:08.733 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:36:08.733 SQL [4193]: pgsql_db_connect() -- 05:36:08.738 DEBUG [4193]: Database connection successful -- 05:36:08.738 INFO [4193]: _SERVER found -- 05:36:08.738 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 05:36:08.738 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 05:36:08.738 INFO [4193]: QUERY_STRING = /solr/admin/info/system -- 05:36:08.738 INFO [4193]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 05:36:08.755 INFO [4193]: COREGRADE is stopping... -- 05:36:08.755 DEBUG [4193]: Closing database connection -- 05:36:08.755 SQL [4193]: pgsql_close() -- 05:49:23.944 INFO [4194]: COREGRADE is starting... -- 05:49:23.945 INFO [4194]: Version from config: 1.0 -- 05:49:23.945 DEBUG [4194]: Connecting to database... -- 05:49:23.945 DEBUG [4194]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:49:23.945 SQL [4194]: pgsql_db_connect() -- 05:49:23.950 DEBUG [4194]: Database connection successful -- 05:49:23.950 INFO [4194]: _SERVER found -- 05:49:23.950 INFO [4194]: REMOTE_ADDR = 10.0.0.15 -- 05:49:23.950 INFO [4194]: SERVER_NAME = oameye.works.coregrade.com -- 05:49:23.950 INFO [4194]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 05:49:23.950 INFO [4194]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 05:49:23.998 INFO [4194]: COREGRADE is stopping... -- 05:49:23.998 DEBUG [4194]: Closing database connection -- 05:49:23.998 SQL [4194]: pgsql_close() -- 05:49:24.692 INFO [4195]: COREGRADE is starting... -- 05:49:24.693 INFO [4195]: Version from config: 1.0 -- 05:49:24.693 DEBUG [4195]: Connecting to database... -- 05:49:24.693 DEBUG [4195]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:49:24.693 SQL [4195]: pgsql_db_connect() -- 05:49:24.697 DEBUG [4195]: Database connection successful -- 05:49:24.697 INFO [4195]: _SERVER found -- 05:49:24.697 INFO [4195]: REMOTE_ADDR = 10.0.0.15 -- 05:49:24.697 INFO [4195]: SERVER_NAME = oameye.works.coregrade.com -- 05:49:24.697 INFO [4195]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 05:49:24.697 INFO [4195]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 05:49:24.742 INFO [4195]: COREGRADE is stopping... -- 05:49:24.742 DEBUG [4195]: Closing database connection -- 05:49:24.742 SQL [4195]: pgsql_close() -- 05:57:25.887 INFO [4251]: COREGRADE is starting... -- 05:57:25.888 INFO [4251]: Version from config: 1.0 -- 05:57:25.888 DEBUG [4251]: Connecting to database... -- 05:57:25.888 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:57:25.888 SQL [4251]: pgsql_db_connect() -- 05:57:25.892 DEBUG [4251]: Database connection successful -- 05:57:25.892 INFO [4251]: _SERVER found -- 05:57:25.892 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 05:57:25.892 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 05:57:25.892 INFO [4251]: QUERY_STRING = -- 05:57:25.892 INFO [4251]: HTTP_X_FORWARDED_FOR = 92.53.100.153 -- 05:57:25.938 INFO [4251]: COREGRADE is stopping... -- 05:57:25.938 DEBUG [4251]: Closing database connection -- 05:57:25.938 SQL [4251]: pgsql_close() -- 05:57:27.377 INFO [4251]: COREGRADE is starting... -- 05:57:27.377 INFO [4251]: Version from config: 1.0 -- 05:57:27.377 DEBUG [4251]: Connecting to database... -- 05:57:27.377 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:57:27.377 SQL [4251]: pgsql_db_connect() -- 05:57:27.382 DEBUG [4251]: Database connection successful -- 05:57:27.382 INFO [4251]: _SERVER found -- 05:57:27.382 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 05:57:27.382 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 05:57:27.382 INFO [4251]: QUERY_STRING = /asdasdasd -- 05:57:27.382 INFO [4251]: HTTP_X_FORWARDED_FOR = 92.53.100.153 -- 05:57:27.393 INFO [4251]: COREGRADE is stopping... -- 05:57:27.393 DEBUG [4251]: Closing database connection -- 05:57:27.394 SQL [4251]: pgsql_close() -- 05:57:29.156 INFO [4191]: COREGRADE is starting... -- 05:57:29.157 INFO [4191]: Version from config: 1.0 -- 05:57:29.157 DEBUG [4191]: Connecting to database... -- 05:57:29.157 DEBUG [4191]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:57:29.157 SQL [4191]: pgsql_db_connect() -- 05:57:29.161 DEBUG [4191]: Database connection successful -- 05:57:29.161 INFO [4191]: _SERVER found -- 05:57:29.161 INFO [4191]: REMOTE_ADDR = 10.0.0.15 -- 05:57:29.161 INFO [4191]: SERVER_NAME = oameye.works.coregrade.com -- 05:57:29.161 INFO [4191]: QUERY_STRING = /console -- 05:57:29.161 INFO [4191]: HTTP_X_FORWARDED_FOR = 92.53.100.153 -- 05:57:29.175 INFO [4191]: COREGRADE is stopping... -- 05:57:29.175 DEBUG [4191]: Closing database connection -- 05:57:29.175 SQL [4191]: pgsql_close() -- 05:57:32.846 INFO [4251]: COREGRADE is starting... -- 05:57:32.847 INFO [4251]: Version from config: 1.0 -- 05:57:32.847 DEBUG [4251]: Connecting to database... -- 05:57:32.847 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:57:32.847 SQL [4251]: pgsql_db_connect() -- 05:57:32.851 DEBUG [4251]: Database connection successful -- 05:57:32.851 INFO [4251]: _SERVER found -- 05:57:32.851 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 05:57:32.851 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 05:57:32.851 INFO [4251]: QUERY_STRING = /horde/imp/test.php -- 05:57:32.851 INFO [4251]: HTTP_X_FORWARDED_FOR = 92.53.100.153 -- 05:57:32.862 INFO [4251]: COREGRADE is stopping... -- 05:57:32.862 DEBUG [4251]: Closing database connection -- 05:57:32.862 SQL [4251]: pgsql_close() -- 05:57:33.939 INFO [4251]: COREGRADE is starting... -- 05:57:33.940 INFO [4251]: Version from config: 1.0 -- 05:57:33.940 DEBUG [4251]: Connecting to database... -- 05:57:33.940 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:57:33.940 SQL [4251]: pgsql_db_connect() -- 05:57:33.944 DEBUG [4251]: Database connection successful -- 05:57:33.944 INFO [4251]: _SERVER found -- 05:57:33.944 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 05:57:33.944 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 05:57:33.944 INFO [4251]: QUERY_STRING = /login.action -- 05:57:33.944 INFO [4251]: HTTP_X_FORWARDED_FOR = 92.53.100.153 -- 05:57:33.955 INFO [4251]: COREGRADE is stopping... -- 05:57:33.955 DEBUG [4251]: Closing database connection -- 05:57:33.955 SQL [4251]: pgsql_close() -- 05:57:35.388 INFO [4251]: COREGRADE is starting... -- 05:57:35.388 INFO [4251]: Version from config: 1.0 -- 05:57:35.388 DEBUG [4251]: Connecting to database... -- 05:57:35.388 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:57:35.388 SQL [4251]: pgsql_db_connect() -- 05:57:35.392 DEBUG [4251]: Database connection successful -- 05:57:35.392 INFO [4251]: _SERVER found -- 05:57:35.392 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 05:57:35.392 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 05:57:35.392 INFO [4251]: QUERY_STRING = /login -- 05:57:35.392 INFO [4251]: HTTP_X_FORWARDED_FOR = 92.53.100.153 -- 05:57:35.403 INFO [4251]: COREGRADE is stopping... -- 05:57:35.403 DEBUG [4251]: Closing database connection -- 05:57:35.403 SQL [4251]: pgsql_close() -- 06:01:50.544 INFO [4192]: COREGRADE is starting... -- 06:01:50.544 INFO [4192]: Version from config: 1.0 -- 06:01:50.544 DEBUG [4192]: Connecting to database... -- 06:01:50.544 DEBUG [4192]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:01:50.544 SQL [4192]: pgsql_db_connect() -- 06:01:50.548 DEBUG [4192]: Database connection successful -- 06:01:50.548 INFO [4192]: _SERVER found -- 06:01:50.548 INFO [4192]: REMOTE_ADDR = 10.0.0.15 -- 06:01:50.548 INFO [4192]: SERVER_NAME = oameye.works.coregrade.com -- 06:01:50.548 INFO [4192]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 06:01:50.548 INFO [4192]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 06:01:50.583 INFO [4192]: COREGRADE is stopping... -- 06:01:50.583 DEBUG [4192]: Closing database connection -- 06:01:50.583 SQL [4192]: pgsql_close() -- 06:05:25.551 INFO [4193]: COREGRADE is starting... -- 06:05:25.551 INFO [4193]: Version from config: 1.0 -- 06:05:25.551 DEBUG [4193]: Connecting to database... -- 06:05:25.551 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:05:25.551 SQL [4193]: pgsql_db_connect() -- 06:05:25.556 DEBUG [4193]: Database connection successful -- 06:05:25.556 INFO [4193]: _SERVER found -- 06:05:25.556 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 06:05:25.556 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 06:05:25.556 INFO [4193]: QUERY_STRING = -- 06:05:25.556 INFO [4193]: HTTP_X_FORWARDED_FOR = 140.238.159.183 -- 06:05:25.599 INFO [4193]: COREGRADE is stopping... -- 06:05:25.599 DEBUG [4193]: Closing database connection -- 06:05:25.599 SQL [4193]: pgsql_close() -- 06:05:25.882 INFO [4834]: COREGRADE is starting... -- 06:05:25.882 INFO [4834]: Version from config: 1.0 -- 06:05:25.882 DEBUG [4834]: Connecting to database... -- 06:05:25.882 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:05:25.882 SQL [4834]: pgsql_db_connect() -- 06:05:25.886 DEBUG [4834]: Database connection successful -- 06:05:25.886 INFO [4834]: _SERVER found -- 06:05:25.886 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 06:05:25.886 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 06:05:25.886 INFO [4834]: QUERY_STRING = /asdasdasd -- 06:05:25.886 INFO [4834]: HTTP_X_FORWARDED_FOR = 140.238.159.183 -- 06:05:25.901 INFO [4834]: COREGRADE is stopping... -- 06:05:25.901 DEBUG [4834]: Closing database connection -- 06:05:25.901 SQL [4834]: pgsql_close() -- 06:05:26.151 INFO [4193]: COREGRADE is starting... -- 06:05:26.152 INFO [4193]: Version from config: 1.0 -- 06:05:26.152 DEBUG [4193]: Connecting to database... -- 06:05:26.152 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:05:26.152 SQL [4193]: pgsql_db_connect() -- 06:05:26.156 DEBUG [4193]: Database connection successful -- 06:05:26.156 INFO [4193]: _SERVER found -- 06:05:26.156 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 06:05:26.156 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 06:05:26.156 INFO [4193]: QUERY_STRING = /console -- 06:05:26.156 INFO [4193]: HTTP_X_FORWARDED_FOR = 140.238.159.183 -- 06:05:26.167 INFO [4193]: COREGRADE is stopping... -- 06:05:26.167 DEBUG [4193]: Closing database connection -- 06:05:26.167 SQL [4193]: pgsql_close() -- 06:05:26.779 INFO [4193]: COREGRADE is starting... -- 06:05:26.779 INFO [4193]: Version from config: 1.0 -- 06:05:26.779 DEBUG [4193]: Connecting to database... -- 06:05:26.779 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:05:26.779 SQL [4193]: pgsql_db_connect() -- 06:05:26.783 DEBUG [4193]: Database connection successful -- 06:05:26.783 INFO [4193]: _SERVER found -- 06:05:26.783 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 06:05:26.783 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 06:05:26.783 INFO [4193]: QUERY_STRING = /horde/imp/test.php -- 06:05:26.783 INFO [4193]: HTTP_X_FORWARDED_FOR = 140.238.159.183 -- 06:05:26.794 INFO [4193]: COREGRADE is stopping... -- 06:05:26.794 DEBUG [4193]: Closing database connection -- 06:05:26.794 SQL [4193]: pgsql_close() -- 06:05:27.157 INFO [4834]: COREGRADE is starting... -- 06:05:27.158 INFO [4834]: Version from config: 1.0 -- 06:05:27.158 DEBUG [4834]: Connecting to database... -- 06:05:27.158 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:05:27.158 SQL [4834]: pgsql_db_connect() -- 06:05:27.162 DEBUG [4834]: Database connection successful -- 06:05:27.162 INFO [4834]: _SERVER found -- 06:05:27.162 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 06:05:27.162 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 06:05:27.162 INFO [4834]: QUERY_STRING = /login.action -- 06:05:27.162 INFO [4834]: HTTP_X_FORWARDED_FOR = 140.238.159.183 -- 06:05:27.173 INFO [4834]: COREGRADE is stopping... -- 06:05:27.173 DEBUG [4834]: Closing database connection -- 06:05:27.173 SQL [4834]: pgsql_close() -- 06:05:27.435 INFO [4834]: COREGRADE is starting... -- 06:05:27.436 INFO [4834]: Version from config: 1.0 -- 06:05:27.436 DEBUG [4834]: Connecting to database... -- 06:05:27.436 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:05:27.436 SQL [4834]: pgsql_db_connect() -- 06:05:27.440 DEBUG [4834]: Database connection successful -- 06:05:27.440 INFO [4834]: _SERVER found -- 06:05:27.440 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 06:05:27.440 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 06:05:27.440 INFO [4834]: QUERY_STRING = /login -- 06:05:27.440 INFO [4834]: HTTP_X_FORWARDED_FOR = 140.238.159.183 -- 06:05:27.451 INFO [4834]: COREGRADE is stopping... -- 06:05:27.451 DEBUG [4834]: Closing database connection -- 06:05:27.451 SQL [4834]: pgsql_close() -- 06:05:27.695 INFO [4834]: COREGRADE is starting... -- 06:05:27.695 INFO [4834]: Version from config: 1.0 -- 06:05:27.695 DEBUG [4834]: Connecting to database... -- 06:05:27.695 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:05:27.695 SQL [4834]: pgsql_db_connect() -- 06:05:27.699 DEBUG [4834]: Database connection successful -- 06:05:27.699 INFO [4834]: _SERVER found -- 06:05:27.699 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 06:05:27.699 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 06:05:27.699 INFO [4834]: QUERY_STRING = /phpMyAdmin/scripts/setup.php -- 06:05:27.699 INFO [4834]: HTTP_X_FORWARDED_FOR = 140.238.159.183 -- 06:05:27.710 INFO [4834]: COREGRADE is stopping... -- 06:05:27.710 DEBUG [4834]: Closing database connection -- 06:05:27.710 SQL [4834]: pgsql_close() -- 07:14:06.750 INFO [4194]: COREGRADE is starting... -- 07:14:06.751 INFO [4194]: Version from config: 1.0 -- 07:14:06.751 DEBUG [4194]: Connecting to database... -- 07:14:06.751 DEBUG [4194]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:14:06.751 SQL [4194]: pgsql_db_connect() -- 07:14:06.791 INFO [4194]: COREGRADE is starting... -- 07:14:06.792 INFO [4194]: Version from config: 1.0 -- 07:14:06.792 DEBUG [4194]: Connecting to database... -- 07:14:06.792 DEBUG [4194]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:14:06.792 SQL [4194]: pgsql_db_connect() -- 07:14:06.796 DEBUG [4194]: Database connection successful -- 07:14:06.796 INFO [4194]: _SERVER found -- 07:14:06.796 INFO [4194]: REMOTE_ADDR = 10.0.0.15 -- 07:14:06.796 INFO [4194]: SERVER_NAME = oameye.works.coregrade.com -- 07:14:06.796 INFO [4194]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938 -- 07:14:06.796 INFO [4194]: QUERY_STRING = -- 07:14:06.796 INFO [4194]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:14:06.796 INFO [4194]: SystemStatus()09-09-********~************ -- 07:14:06.796 INFO [4194]: long coregrade_api_main(CVars in, CVars &out) -- 07:14:06.796 INFO [4194]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 07:14:06.796 INFO [4194]: account calls -- 07:14:06.796 INFO [4194]: account_calls() -- 07:14:06.796 INFO [4194]: LoginCoreGradeAccount() -- 07:14:06.796 FLOG_MAX [4194]: REQ_STRING(username) -- 07:14:06.796 FLOG_MAX [4194]: REQ_STRING(password) -- 07:14:06.796 FLOG_MAX [4194]: REQ_STRING(sessionid) -- 07:14:06.796 FLOG_MAX [4194]: long load_db_record( CVars &rec, const char * query, ... ) -- 07:14:06.796 SQL [4194]: pgsql_query() -- 07:14:06.796 SQL [4194]: About to run query: -- 07:14:06.796 SQL [4194]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 07:14:06.800 SQL [4194]: Found rows: 1 -- 07:14:06.800 FLOG_MAX [4194]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 07:14:06.800 INFO [4194]: long SessionCheck(long uid, const char *sessionid, int create ) -- 07:14:06.800 SQL [4194]: pgsql_exec() -- 07:14:06.800 SQL [4194]: About to run query: -- 07:14:06.800 SQL [4194]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 07:14:06.802 SQL [4194]: PQcmdTuples: 1 -- 07:14:06.802 SQL [4194]: Affected rows: 1 -- 07:14:06.802 SQL [4194]: pgsql_exec() -- 07:14:06.802 SQL [4194]: About to run query: -- 07:14:06.802 SQL [4194]: DELETE FROM members_session WHERE member_id=5 -- 07:14:06.802 SQL [4194]: PQcmdTuples: 0 -- 07:14:06.802 SQL [4194]: Affected rows: 0 -- 07:14:06.802 SQL [4194]: pgsql_query() -- 07:14:06.802 SQL [4194]: About to run query: -- 07:14:06.802 SQL [4194]: SELECT * FROM members_session WHERE member_id=5 AND session<>'BE551AD035785DF0B583F8612875C0DB' -- 07:14:06.803 SQL [4194]: Found rows: 0 -- 07:14:06.803 SQL [4194]: Found rows: 0 -- 07:14:06.803 FLOG_MAX [4194]: long load_db_record( CVars &rec, const char * query, ... ) -- 07:14:06.803 SQL [4194]: pgsql_query() -- 07:14:06.803 SQL [4194]: About to run query: -- 07:14:06.803 SQL [4194]: SELECT * FROM members_session WHERE member_id=5 AND session='BE551AD035785DF0B583F8612875C0DB' -- 07:14:06.803 SQL [4194]: Found rows: 0 -- 07:14:06.803 SQL [4194]: Found rows: 0 -- 07:14:06.803 FLOG_MAX [4194]: insert_db_record() -- 07:14:06.803 SQL [4194]: pgsql_exec() -- 07:14:06.803 SQL [4194]: About to run query: -- 07:14:06.803 SQL [4194]: INSERT INTO members_session (member_id,session) VALUES ('5','BE551AD035785DF0B583F8612875C0DB') -- 07:14:06.805 SQL [4194]: PQcmdTuples: 1 -- 07:14:06.805 SQL [4194]: Affected rows: 1 -- 07:14:06.805 FLOG_MAX [4194]: SELECT currval('members_session_id_seq') -- 07:14:06.805 SQL [4194]: pgsql_query() -- 07:14:06.805 SQL [4194]: About to run query: -- 07:14:06.805 SQL [4194]: SELECT currval('members_session_id_seq') -- 07:14:06.805 SQL [4194]: Found rows: 1 -- 07:14:06.805 INFO [4194]: CreateDefaultPage() -- 07:14:06.805 FLOG_MAX [4194]: long load_db_record( CVars &rec, const char * query, ... ) -- 07:14:06.805 SQL [4194]: pgsql_query() -- 07:14:06.805 SQL [4194]: About to run query: -- 07:14:06.805 SQL [4194]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 07:14:06.805 SQL [4194]: Found rows: 1 -- 07:14:06.805 FLOG_MAX [4194]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 07:14:06.805 SQL [4194]: pgsql_query() -- 07:14:06.805 SQL [4194]: About to run query: -- 07:14:06.805 SQL [4194]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 07:14:06.806 SQL [4194]: Found rows: 1 -- 07:14:06.806 INFO [4194]: /CreateDefaultPage() -- 07:14:06.806 INFO [4194]: /LoginCoreGradeAccount() -- 07:14:06.806 INFO [4194]: RET: added=2020-02-05 06:47:23.982154 -- 07:14:06.806 INFO [4194]: RET: email=ameye+11@chiefsoft.com -- 07:14:06.806 INFO [4194]: RET: firstname=Olu -- 07:14:06.806 INFO [4194]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 07:14:06.806 INFO [4194]: RET: id=5 -- 07:14:06.806 INFO [4194]: RET: last_login= -- 07:14:06.806 INFO [4194]: RET: lastname=Amey -- 07:14:06.806 INFO [4194]: RET: loc=192.168.1.13 -- 07:14:06.806 INFO [4194]: RET: member_id=5 -- 07:14:06.806 INFO [4194]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 07:14:06.806 INFO [4194]: RET: phone= -- 07:14:06.806 INFO [4194]: RET: pid= -- 07:14:06.806 INFO [4194]: RET: result=YES I GET TO BACK END -- 07:14:06.806 INFO [4194]: RET: sessionid=BE551AD035785DF0B583F8612875C0DB -- 07:14:06.806 INFO [4194]: RET: status=1 -- 07:14:06.806 INFO [4194]: RET: stauts=OK -- 07:14:06.806 INFO [4194]: RET: username=ameye+11@chiefsoft.com -- 07:14:06.806 INFO [4194]: RET: verified= -- 07:14:06.808 INFO [4194]: COREGRADE is stopping... -- 07:14:06.808 DEBUG [4194]: Closing database connection -- 07:14:06.808 SQL [4194]: pgsql_close() -- 07:14:06.755 DEBUG [4194]: Database connection successful -- 07:14:06.755 INFO [4194]: _SERVER found -- 07:14:06.755 INFO [4194]: REMOTE_ADDR = 10.0.0.15 -- 07:14:06.755 INFO [4194]: SERVER_NAME = oameye.works.coregrade.com -- 07:14:06.755 INFO [4194]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938 -- 07:14:06.755 INFO [4194]: QUERY_STRING = /auth -- 07:14:06.755 INFO [4194]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:14:06.808 INFO [4194]: COREGRADE is stopping... -- 07:14:06.808 DEBUG [4194]: Closing database connection -- 07:14:06.808 SQL [4194]: pgsql_close() -- 07:14:06.826 INFO [4194]: COREGRADE is starting... -- 07:14:06.827 INFO [4194]: Version from config: 1.0 -- 07:14:06.827 DEBUG [4194]: Connecting to database... -- 07:14:06.827 DEBUG [4194]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:14:06.827 SQL [4194]: pgsql_db_connect() -- 07:14:06.831 DEBUG [4194]: Database connection successful -- 07:14:06.831 INFO [4194]: _SERVER found -- 07:14:06.831 INFO [4194]: REMOTE_ADDR = 10.0.0.15 -- 07:14:06.831 INFO [4194]: SERVER_NAME = oameye.works.coregrade.com -- 07:14:06.831 INFO [4194]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=e5a3alq1d10fv2e058o3jpkm8r3d875c -- 07:14:06.831 INFO [4194]: QUERY_STRING = /member/index -- 07:14:06.831 INFO [4194]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:14:06.871 INFO [4194]: COREGRADE is stopping... -- 07:14:06.871 DEBUG [4194]: Closing database connection -- 07:14:06.871 SQL [4194]: pgsql_close() -- 07:14:07.625 INFO [4194]: COREGRADE is starting... -- 07:14:07.625 INFO [4194]: Version from config: 1.0 -- 07:14:07.625 DEBUG [4194]: Connecting to database... -- 07:14:07.625 DEBUG [4194]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:14:07.625 SQL [4194]: pgsql_db_connect() -- 07:14:07.629 DEBUG [4194]: Database connection successful -- 07:14:07.629 INFO [4194]: _SERVER found -- 07:14:07.629 INFO [4194]: REMOTE_ADDR = 10.0.0.15 -- 07:14:07.629 INFO [4194]: SERVER_NAME = oameye.works.coregrade.com -- 07:14:07.629 INFO [4194]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=e5a3alq1d10fv2e058o3jpkm8r3d875c -- 07:14:07.629 INFO [4194]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 07:14:07.629 INFO [4194]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:14:07.641 INFO [4194]: COREGRADE is stopping... -- 07:14:07.641 DEBUG [4194]: Closing database connection -- 07:14:07.641 SQL [4194]: pgsql_close() -- 07:15:48.657 INFO [4195]: COREGRADE is starting... -- 07:15:48.657 INFO [4195]: Version from config: 1.0 -- 07:15:48.657 DEBUG [4195]: Connecting to database... -- 07:15:48.657 DEBUG [4195]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:15:48.657 SQL [4195]: pgsql_db_connect() -- 07:15:48.661 DEBUG [4195]: Database connection successful -- 07:15:48.661 INFO [4195]: _SERVER found -- 07:15:48.661 INFO [4195]: REMOTE_ADDR = 10.0.0.15 -- 07:15:48.661 INFO [4195]: SERVER_NAME = oameye.works.coregrade.com -- 07:15:48.661 INFO [4195]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=e5a3alq1d10fv2e058o3jpkm8r3d875c -- 07:15:48.661 INFO [4195]: QUERY_STRING = /member/myprofile -- 07:15:48.661 INFO [4195]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:15:48.704 INFO [4195]: COREGRADE is stopping... -- 07:15:48.704 DEBUG [4195]: Closing database connection -- 07:15:48.704 SQL [4195]: pgsql_close() -- 07:15:48.883 INFO [4195]: COREGRADE is starting... -- 07:15:48.884 INFO [4195]: Version from config: 1.0 -- 07:15:48.884 DEBUG [4195]: Connecting to database... -- 07:15:48.884 DEBUG [4195]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:15:48.884 SQL [4195]: pgsql_db_connect() -- 07:15:48.888 DEBUG [4195]: Database connection successful -- 07:15:48.888 INFO [4195]: _SERVER found -- 07:15:48.888 INFO [4195]: REMOTE_ADDR = 10.0.0.15 -- 07:15:48.888 INFO [4195]: SERVER_NAME = oameye.works.coregrade.com -- 07:15:48.888 INFO [4195]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=e5a3alq1d10fv2e058o3jpkm8r3d875c -- 07:15:48.888 INFO [4195]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 07:15:48.888 INFO [4195]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:15:48.899 INFO [4195]: COREGRADE is stopping... -- 07:15:48.899 DEBUG [4195]: Closing database connection -- 07:15:48.899 SQL [4195]: pgsql_close() -- 07:57:05.280 INFO [4191]: COREGRADE is starting... -- 07:57:05.281 INFO [4191]: Version from config: 1.0 -- 07:57:05.281 DEBUG [4191]: Connecting to database... -- 07:57:05.281 DEBUG [4191]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:57:05.281 SQL [4191]: pgsql_db_connect() -- 07:57:05.285 DEBUG [4191]: Database connection successful -- 07:57:05.285 INFO [4191]: _SERVER found -- 07:57:05.285 INFO [4191]: REMOTE_ADDR = 10.0.0.15 -- 07:57:05.285 INFO [4191]: SERVER_NAME = oameye.works.coregrade.com -- 07:57:05.285 INFO [4191]: QUERY_STRING = /TP/public/index.php -- 07:57:05.285 INFO [4191]: HTTP_X_FORWARDED_FOR = 118.89.191.62 -- 07:57:05.301 INFO [4191]: COREGRADE is stopping... -- 07:57:05.301 DEBUG [4191]: Closing database connection -- 07:57:05.301 SQL [4191]: pgsql_close() -- 07:57:07.443 INFO [4191]: COREGRADE is starting... -- 07:57:07.443 INFO [4191]: Version from config: 1.0 -- 07:57:07.443 DEBUG [4191]: Connecting to database... -- 07:57:07.443 DEBUG [4191]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:57:07.443 SQL [4191]: pgsql_db_connect() -- 07:57:07.447 DEBUG [4191]: Database connection successful -- 07:57:07.447 INFO [4191]: _SERVER found -- 07:57:07.447 INFO [4191]: REMOTE_ADDR = 10.0.0.15 -- 07:57:07.447 INFO [4191]: SERVER_NAME = oameye.works.coregrade.com -- 07:57:07.447 INFO [4191]: QUERY_STRING = /TP/index.php -- 07:57:07.447 INFO [4191]: HTTP_X_FORWARDED_FOR = 118.89.191.62 -- 07:57:07.458 INFO [4191]: COREGRADE is stopping... -- 07:57:07.458 DEBUG [4191]: Closing database connection -- 07:57:07.458 SQL [4191]: pgsql_close() -- 07:57:08.780 INFO [4191]: COREGRADE is starting... -- 07:57:08.780 INFO [4191]: Version from config: 1.0 -- 07:57:08.780 DEBUG [4191]: Connecting to database... -- 07:57:08.780 DEBUG [4191]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:57:08.780 SQL [4191]: pgsql_db_connect() -- 07:57:08.784 DEBUG [4191]: Database connection successful -- 07:57:08.784 INFO [4191]: _SERVER found -- 07:57:08.784 INFO [4191]: REMOTE_ADDR = 10.0.0.15 -- 07:57:08.784 INFO [4191]: SERVER_NAME = oameye.works.coregrade.com -- 07:57:08.784 INFO [4191]: QUERY_STRING = /thinkphp/html/public/index.php -- 07:57:08.784 INFO [4191]: HTTP_X_FORWARDED_FOR = 118.89.191.62 -- 07:57:08.795 INFO [4191]: COREGRADE is stopping... -- 07:57:08.795 DEBUG [4191]: Closing database connection -- 07:57:08.795 SQL [4191]: pgsql_close() -- 07:57:10.192 INFO [4191]: COREGRADE is starting... -- 07:57:10.192 INFO [4191]: Version from config: 1.0 -- 07:57:10.192 DEBUG [4191]: Connecting to database... -- 07:57:10.192 DEBUG [4191]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:57:10.192 SQL [4191]: pgsql_db_connect() -- 07:57:10.196 DEBUG [4191]: Database connection successful -- 07:57:10.196 INFO [4191]: _SERVER found -- 07:57:10.196 INFO [4191]: REMOTE_ADDR = 10.0.0.15 -- 07:57:10.196 INFO [4191]: SERVER_NAME = oameye.works.coregrade.com -- 07:57:10.196 INFO [4191]: QUERY_STRING = /html/public/index.php -- 07:57:10.196 INFO [4191]: HTTP_X_FORWARDED_FOR = 118.89.191.62 -- 07:57:10.207 INFO [4191]: COREGRADE is stopping... -- 07:57:10.208 DEBUG [4191]: Closing database connection -- 07:57:10.208 SQL [4191]: pgsql_close() -- 07:57:12.550 INFO [4191]: COREGRADE is starting... -- 07:57:12.550 INFO [4191]: Version from config: 1.0 -- 07:57:12.550 DEBUG [4191]: Connecting to database... -- 07:57:12.550 DEBUG [4191]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:57:12.550 SQL [4191]: pgsql_db_connect() -- 07:57:12.554 DEBUG [4191]: Database connection successful -- 07:57:12.554 INFO [4191]: _SERVER found -- 07:57:12.554 INFO [4191]: REMOTE_ADDR = 10.0.0.15 -- 07:57:12.554 INFO [4191]: SERVER_NAME = oameye.works.coregrade.com -- 07:57:12.554 INFO [4191]: QUERY_STRING = /public/index.php -- 07:57:12.554 INFO [4191]: HTTP_X_FORWARDED_FOR = 118.89.191.62 -- 07:57:12.565 INFO [4191]: COREGRADE is stopping... -- 07:57:12.565 DEBUG [4191]: Closing database connection -- 07:57:12.565 SQL [4191]: pgsql_close() -- 07:57:14.907 INFO [4191]: COREGRADE is starting... -- 07:57:14.907 INFO [4191]: Version from config: 1.0 -- 07:57:14.907 DEBUG [4191]: Connecting to database... -- 07:57:14.907 DEBUG [4191]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:57:14.907 SQL [4191]: pgsql_db_connect() -- 07:57:14.911 DEBUG [4191]: Database connection successful -- 07:57:14.911 INFO [4191]: _SERVER found -- 07:57:14.911 INFO [4191]: REMOTE_ADDR = 10.0.0.15 -- 07:57:14.911 INFO [4191]: SERVER_NAME = oameye.works.coregrade.com -- 07:57:14.911 INFO [4191]: QUERY_STRING = /TP/html/public/index.php -- 07:57:14.911 INFO [4191]: HTTP_X_FORWARDED_FOR = 118.89.191.62 -- 07:57:14.923 INFO [4191]: COREGRADE is stopping... -- 07:57:14.923 DEBUG [4191]: Closing database connection -- 07:57:14.923 SQL [4191]: pgsql_close() -- 07:57:17.518 INFO [4191]: COREGRADE is starting... -- 07:57:17.519 INFO [4191]: Version from config: 1.0 -- 07:57:17.519 DEBUG [4191]: Connecting to database... -- 07:57:17.519 DEBUG [4191]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:57:17.519 SQL [4191]: pgsql_db_connect() -- 07:57:17.523 DEBUG [4191]: Database connection successful -- 07:57:17.523 INFO [4191]: _SERVER found -- 07:57:17.523 INFO [4191]: REMOTE_ADDR = 10.0.0.15 -- 07:57:17.523 INFO [4191]: SERVER_NAME = oameye.works.coregrade.com -- 07:57:17.523 INFO [4191]: QUERY_STRING = /elrekt.php -- 07:57:17.523 INFO [4191]: HTTP_X_FORWARDED_FOR = 118.89.191.62 -- 07:57:17.534 INFO [4191]: COREGRADE is stopping... -- 07:57:17.534 DEBUG [4191]: Closing database connection -- 07:57:17.534 SQL [4191]: pgsql_close() -- 07:57:21.401 INFO [4251]: COREGRADE is starting... -- 07:57:21.402 INFO [4251]: Version from config: 1.0 -- 07:57:21.402 DEBUG [4251]: Connecting to database... -- 07:57:21.402 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:57:21.402 SQL [4251]: pgsql_db_connect() -- 07:57:21.406 DEBUG [4251]: Database connection successful -- 07:57:21.406 INFO [4251]: _SERVER found -- 07:57:21.406 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 07:57:21.406 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 07:57:21.406 INFO [4251]: QUERY_STRING = -- 07:57:21.406 INFO [4251]: HTTP_X_FORWARDED_FOR = 118.89.191.62 -- 07:57:21.441 INFO [4251]: COREGRADE is stopping... -- 07:57:21.441 DEBUG [4251]: Closing database connection -- 07:57:21.441 SQL [4251]: pgsql_close() -- 07:57:23.334 INFO [4192]: COREGRADE is starting... -- 07:57:23.335 INFO [4192]: Version from config: 1.0 -- 07:57:23.335 DEBUG [4192]: Connecting to database... -- 07:57:23.335 DEBUG [4192]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:57:23.335 SQL [4192]: pgsql_db_connect() -- 07:57:23.339 DEBUG [4192]: Database connection successful -- 07:57:23.339 INFO [4192]: _SERVER found -- 07:57:23.339 INFO [4192]: REMOTE_ADDR = 10.0.0.15 -- 07:57:23.339 INFO [4192]: SERVER_NAME = oameye.works.coregrade.com -- 07:57:23.339 INFO [4192]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 07:57:23.339 INFO [4192]: HTTP_X_FORWARDED_FOR = 118.89.191.62 -- 07:57:23.373 INFO [4192]: COREGRADE is stopping... -- 07:57:23.373 DEBUG [4192]: Closing database connection -- 07:57:23.373 SQL [4192]: pgsql_close() -- 07:57:26.460 INFO [4192]: COREGRADE is starting... -- 07:57:26.461 INFO [4192]: Version from config: 1.0 -- 07:57:26.461 DEBUG [4192]: Connecting to database... -- 07:57:26.461 DEBUG [4192]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:57:26.461 SQL [4192]: pgsql_db_connect() -- 07:57:26.465 DEBUG [4192]: Database connection successful -- 07:57:26.465 INFO [4192]: _SERVER found -- 07:57:26.465 INFO [4192]: REMOTE_ADDR = 10.0.0.15 -- 07:57:26.465 INFO [4192]: SERVER_NAME = oameye.works.coregrade.com -- 07:57:26.465 INFO [4192]: QUERY_STRING = s=captcha -- 07:57:26.465 INFO [4192]: HTTP_X_FORWARDED_FOR = 118.89.191.62 -- 07:57:26.496 INFO [4192]: COREGRADE is stopping... -- 07:57:26.496 DEBUG [4192]: Closing database connection -- 07:57:26.496 SQL [4192]: pgsql_close() -- 07:57:31.903 INFO [4193]: COREGRADE is starting... -- 07:57:31.903 INFO [4193]: Version from config: 1.0 -- 07:57:31.903 DEBUG [4193]: Connecting to database... -- 07:57:31.903 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:57:31.903 SQL [4193]: pgsql_db_connect() -- 07:57:31.907 DEBUG [4193]: Database connection successful -- 07:57:31.907 INFO [4193]: _SERVER found -- 07:57:31.907 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 07:57:31.907 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 07:57:31.907 INFO [4193]: QUERY_STRING = -- 07:57:31.907 INFO [4193]: HTTP_X_FORWARDED_FOR = 118.89.191.62 -- 07:57:31.941 INFO [4193]: COREGRADE is stopping... -- 07:57:31.941 DEBUG [4193]: Closing database connection -- 07:57:31.941 SQL [4193]: pgsql_close() -- 08:06:59.006 INFO [4834]: COREGRADE is starting... -- 08:06:59.006 INFO [4834]: Version from config: 1.0 -- 08:06:59.006 DEBUG [4834]: Connecting to database... -- 08:06:59.006 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:06:59.006 SQL [4834]: pgsql_db_connect() -- 08:06:59.011 DEBUG [4834]: Database connection successful -- 08:06:59.011 INFO [4834]: _SERVER found -- 08:06:59.011 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 08:06:59.011 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 08:06:59.011 INFO [4834]: QUERY_STRING = /robots.txt -- 08:06:59.011 INFO [4834]: HTTP_X_FORWARDED_FOR = 66.249.64.180 -- 08:06:59.024 INFO [4834]: COREGRADE is stopping... -- 08:06:59.024 DEBUG [4834]: Closing database connection -- 08:06:59.024 SQL [4834]: pgsql_close() -- 08:18:30.369 INFO [4194]: COREGRADE is starting... -- 08:18:30.369 INFO [4194]: Version from config: 1.0 -- 08:18:30.369 DEBUG [4194]: Connecting to database... -- 08:18:30.369 DEBUG [4194]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:18:30.369 SQL [4194]: pgsql_db_connect() -- 08:18:30.374 DEBUG [4194]: Database connection successful -- 08:18:30.374 INFO [4194]: _SERVER found -- 08:18:30.374 INFO [4194]: REMOTE_ADDR = 10.0.0.15 -- 08:18:30.374 INFO [4194]: SERVER_NAME = oameye.works.coregrade.com -- 08:18:30.374 INFO [4194]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845 -- 08:18:30.374 INFO [4194]: QUERY_STRING = -- 08:18:30.374 INFO [4194]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:18:30.410 INFO [4194]: COREGRADE is stopping... -- 08:18:30.410 DEBUG [4194]: Closing database connection -- 08:18:30.410 SQL [4194]: pgsql_close() -- 08:18:30.548 INFO [4194]: COREGRADE is starting... -- 08:18:30.548 INFO [4194]: Version from config: 1.0 -- 08:18:30.548 DEBUG [4194]: Connecting to database... -- 08:18:30.548 DEBUG [4194]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:18:30.548 SQL [4194]: pgsql_db_connect() -- 08:18:30.552 DEBUG [4194]: Database connection successful -- 08:18:30.552 INFO [4194]: _SERVER found -- 08:18:30.552 INFO [4194]: REMOTE_ADDR = 10.0.0.15 -- 08:18:30.552 INFO [4194]: SERVER_NAME = oameye.works.coregrade.com -- 08:18:30.552 INFO [4194]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=sh90c81ngt6sf66evbujksp0pf4qvvoi -- 08:18:30.552 INFO [4194]: QUERY_STRING = /assets/img/footer_1.jpg -- 08:18:30.553 INFO [4194]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:18:30.564 INFO [4194]: COREGRADE is stopping... -- 08:18:30.564 DEBUG [4194]: Closing database connection -- 08:18:30.564 SQL [4194]: pgsql_close() -- 08:35:59.513 INFO [4195]: COREGRADE is starting... -- 08:35:59.513 INFO [4195]: Version from config: 1.0 -- 08:35:59.513 DEBUG [4195]: Connecting to database... -- 08:35:59.513 DEBUG [4195]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:35:59.513 SQL [4195]: pgsql_db_connect() -- 08:35:59.517 DEBUG [4195]: Database connection successful -- 08:35:59.517 INFO [4195]: _SERVER found -- 08:35:59.517 INFO [4195]: REMOTE_ADDR = 10.0.0.15 -- 08:35:59.517 INFO [4195]: SERVER_NAME = oameye.works.coregrade.com -- 08:35:59.517 INFO [4195]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=sh90c81ngt6sf66evbujksp0pf4qvvoi -- 08:35:59.517 INFO [4195]: QUERY_STRING = -- 08:35:59.517 INFO [4195]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:35:59.552 INFO [4195]: COREGRADE is stopping... -- 08:35:59.552 DEBUG [4195]: Closing database connection -- 08:35:59.552 SQL [4195]: pgsql_close() -- 08:35:59.656 INFO [4195]: COREGRADE is starting... -- 08:35:59.656 INFO [4195]: Version from config: 1.0 -- 08:35:59.656 DEBUG [4195]: Connecting to database... -- 08:35:59.656 DEBUG [4195]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:35:59.656 SQL [4195]: pgsql_db_connect() -- 08:35:59.660 DEBUG [4195]: Database connection successful -- 08:35:59.660 INFO [4195]: _SERVER found -- 08:35:59.660 INFO [4195]: REMOTE_ADDR = 10.0.0.15 -- 08:35:59.660 INFO [4195]: SERVER_NAME = oameye.works.coregrade.com -- 08:35:59.660 INFO [4195]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=1j4b9lic783865172ih06iq5fs5dqmn3 -- 08:35:59.660 INFO [4195]: QUERY_STRING = /assets/img/footer_1.jpg -- 08:35:59.660 INFO [4195]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:35:59.672 INFO [4195]: COREGRADE is stopping... -- 08:35:59.672 DEBUG [4195]: Closing database connection -- 08:35:59.672 SQL [4195]: pgsql_close() -- 08:37:01.711 INFO [4191]: COREGRADE is starting... -- 08:37:01.712 INFO [4191]: Version from config: 1.0 -- 08:37:01.712 DEBUG [4191]: Connecting to database... -- 08:37:01.712 DEBUG [4191]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:01.712 SQL [4191]: pgsql_db_connect() -- 08:37:01.716 DEBUG [4191]: Database connection successful -- 08:37:01.716 INFO [4191]: _SERVER found -- 08:37:01.716 INFO [4191]: REMOTE_ADDR = 10.0.0.15 -- 08:37:01.716 INFO [4191]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:01.716 INFO [4191]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=e5a3alq1d10fv2e058o3jpkm8r3d875c -- 08:37:01.716 INFO [4191]: QUERY_STRING = -- 08:37:01.716 INFO [4191]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:01.752 INFO [4191]: COREGRADE is stopping... -- 08:37:01.752 DEBUG [4191]: Closing database connection -- 08:37:01.752 SQL [4191]: pgsql_close() -- 08:37:02.550 INFO [4191]: COREGRADE is starting... -- 08:37:02.550 INFO [4191]: Version from config: 1.0 -- 08:37:02.550 DEBUG [4191]: Connecting to database... -- 08:37:02.550 DEBUG [4191]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:02.550 SQL [4191]: pgsql_db_connect() -- 08:37:02.554 DEBUG [4191]: Database connection successful -- 08:37:02.554 INFO [4191]: _SERVER found -- 08:37:02.554 INFO [4191]: REMOTE_ADDR = 10.0.0.15 -- 08:37:02.554 INFO [4191]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:02.554 INFO [4191]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=hvu7a5bn92ep1k627llh5fs3300kt97s -- 08:37:02.554 INFO [4191]: QUERY_STRING = /assets/img/footer_1.jpg -- 08:37:02.554 INFO [4191]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:02.566 INFO [4191]: COREGRADE is stopping... -- 08:37:02.566 DEBUG [4191]: Closing database connection -- 08:37:02.566 SQL [4191]: pgsql_close() -- 08:37:04.532 INFO [4191]: COREGRADE is starting... -- 08:37:04.532 INFO [4191]: Version from config: 1.0 -- 08:37:04.532 DEBUG [4191]: Connecting to database... -- 08:37:04.532 DEBUG [4191]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:04.532 SQL [4191]: pgsql_db_connect() -- 08:37:04.536 DEBUG [4191]: Database connection successful -- 08:37:04.536 INFO [4191]: _SERVER found -- 08:37:04.536 INFO [4191]: REMOTE_ADDR = 10.0.0.15 -- 08:37:04.536 INFO [4191]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:04.536 INFO [4191]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=hvu7a5bn92ep1k627llh5fs3300kt97s; _gat_gtag_UA_54829827_2=1 -- 08:37:04.536 INFO [4191]: QUERY_STRING = /welcome/viewLogin -- 08:37:04.536 INFO [4191]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:04.566 INFO [4191]: COREGRADE is stopping... -- 08:37:04.566 DEBUG [4191]: Closing database connection -- 08:37:04.566 SQL [4191]: pgsql_close() -- 08:37:04.578 INFO [4191]: COREGRADE is starting... -- 08:37:04.579 INFO [4191]: Version from config: 1.0 -- 08:37:04.579 DEBUG [4191]: Connecting to database... -- 08:37:04.579 DEBUG [4191]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:04.579 SQL [4191]: pgsql_db_connect() -- 08:37:04.583 DEBUG [4191]: Database connection successful -- 08:37:04.583 INFO [4191]: _SERVER found -- 08:37:04.583 INFO [4191]: REMOTE_ADDR = 10.0.0.15 -- 08:37:04.583 INFO [4191]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:04.583 INFO [4191]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=hvu7a5bn92ep1k627llh5fs3300kt97s; _gat_gtag_UA_54829827_2=1 -- 08:37:04.583 INFO [4191]: QUERY_STRING = /auth -- 08:37:04.583 INFO [4191]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:04.614 INFO [4191]: COREGRADE is stopping... -- 08:37:04.614 DEBUG [4191]: Closing database connection -- 08:37:04.614 SQL [4191]: pgsql_close() -- 08:37:04.629 INFO [4191]: COREGRADE is starting... -- 08:37:04.629 INFO [4191]: Version from config: 1.0 -- 08:37:04.629 DEBUG [4191]: Connecting to database... -- 08:37:04.629 DEBUG [4191]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:04.629 SQL [4191]: pgsql_db_connect() -- 08:37:04.633 DEBUG [4191]: Database connection successful -- 08:37:04.633 INFO [4191]: _SERVER found -- 08:37:04.633 INFO [4191]: REMOTE_ADDR = 10.0.0.15 -- 08:37:04.633 INFO [4191]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:04.633 INFO [4191]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=hvu7a5bn92ep1k627llh5fs3300kt97s; _gat_gtag_UA_54829827_2=1 -- 08:37:04.633 INFO [4191]: QUERY_STRING = /auth/index -- 08:37:04.633 INFO [4191]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:04.665 INFO [4191]: COREGRADE is stopping... -- 08:37:04.665 DEBUG [4191]: Closing database connection -- 08:37:04.665 SQL [4191]: pgsql_close() -- 08:37:16.673 INFO [4251]: COREGRADE is starting... -- 08:37:16.673 INFO [4251]: Version from config: 1.0 -- 08:37:16.673 DEBUG [4251]: Connecting to database... -- 08:37:16.673 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:16.673 SQL [4251]: pgsql_db_connect() -- 08:37:16.677 DEBUG [4251]: Database connection successful -- 08:37:16.677 INFO [4251]: _SERVER found -- 08:37:16.677 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 08:37:16.677 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:16.677 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=hvu7a5bn92ep1k627llh5fs3300kt97s; _gat_gtag_UA_54829827_2=1 -- 08:37:16.677 INFO [4251]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 08:37:16.677 INFO [4251]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:37:16.690 INFO [4251]: COREGRADE is stopping... -- 08:37:16.690 DEBUG [4251]: Closing database connection -- 08:37:16.690 SQL [4251]: pgsql_close() -- 08:37:30.333 INFO [4192]: COREGRADE is starting... -- 08:37:30.333 INFO [4192]: Version from config: 1.0 -- 08:37:30.333 DEBUG [4192]: Connecting to database... -- 08:37:30.333 DEBUG [4192]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:30.333 SQL [4192]: pgsql_db_connect() -- 08:37:30.372 INFO [4192]: COREGRADE is starting... -- 08:37:30.372 INFO [4192]: Version from config: 1.0 -- 08:37:30.372 DEBUG [4192]: Connecting to database... -- 08:37:30.372 DEBUG [4192]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:30.372 SQL [4192]: pgsql_db_connect() -- 08:37:30.376 DEBUG [4192]: Database connection successful -- 08:37:30.376 INFO [4192]: _SERVER found -- 08:37:30.376 INFO [4192]: REMOTE_ADDR = 10.0.0.15 -- 08:37:30.376 INFO [4192]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:30.376 INFO [4192]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069 -- 08:37:30.376 INFO [4192]: QUERY_STRING = -- 08:37:30.376 INFO [4192]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:37:30.376 INFO [4192]: SystemStatus()09-09-********~************ -- 08:37:30.376 INFO [4192]: long coregrade_api_main(CVars in, CVars &out) -- 08:37:30.376 INFO [4192]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 08:37:30.376 INFO [4192]: account calls -- 08:37:30.376 INFO [4192]: account_calls() -- 08:37:30.376 INFO [4192]: LoginCoreGradeAccount() -- 08:37:30.376 FLOG_MAX [4192]: REQ_STRING(username) -- 08:37:30.376 FLOG_MAX [4192]: REQ_STRING(password) -- 08:37:30.376 FLOG_MAX [4192]: REQ_STRING(sessionid) -- 08:37:30.376 FLOG_MAX [4192]: long load_db_record( CVars &rec, const char * query, ... ) -- 08:37:30.376 SQL [4192]: pgsql_query() -- 08:37:30.376 SQL [4192]: About to run query: -- 08:37:30.376 SQL [4192]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 08:37:30.380 SQL [4192]: Found rows: 1 -- 08:37:30.380 FLOG_MAX [4192]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 08:37:30.380 INFO [4192]: long SessionCheck(long uid, const char *sessionid, int create ) -- 08:37:30.380 SQL [4192]: pgsql_exec() -- 08:37:30.380 SQL [4192]: About to run query: -- 08:37:30.380 SQL [4192]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 08:37:30.382 SQL [4192]: PQcmdTuples: 1 -- 08:37:30.382 SQL [4192]: Affected rows: 1 -- 08:37:30.382 SQL [4192]: pgsql_exec() -- 08:37:30.382 SQL [4192]: About to run query: -- 08:37:30.382 SQL [4192]: DELETE FROM members_session WHERE member_id=5 -- 08:37:30.382 SQL [4192]: PQcmdTuples: 0 -- 08:37:30.382 SQL [4192]: Affected rows: 0 -- 08:37:30.382 SQL [4192]: pgsql_query() -- 08:37:30.382 SQL [4192]: About to run query: -- 08:37:30.382 SQL [4192]: SELECT * FROM members_session WHERE member_id=5 AND session<>'7EBC5693B3D2BCFE2B45A5853FF8A2DD' -- 08:37:30.383 SQL [4192]: Found rows: 0 -- 08:37:30.383 SQL [4192]: Found rows: 0 -- 08:37:30.383 FLOG_MAX [4192]: long load_db_record( CVars &rec, const char * query, ... ) -- 08:37:30.383 SQL [4192]: pgsql_query() -- 08:37:30.383 SQL [4192]: About to run query: -- 08:37:30.383 SQL [4192]: SELECT * FROM members_session WHERE member_id=5 AND session='7EBC5693B3D2BCFE2B45A5853FF8A2DD' -- 08:37:30.384 SQL [4192]: Found rows: 0 -- 08:37:30.384 SQL [4192]: Found rows: 0 -- 08:37:30.384 FLOG_MAX [4192]: insert_db_record() -- 08:37:30.384 SQL [4192]: pgsql_exec() -- 08:37:30.384 SQL [4192]: About to run query: -- 08:37:30.384 SQL [4192]: INSERT INTO members_session (member_id,session) VALUES ('5','7EBC5693B3D2BCFE2B45A5853FF8A2DD') -- 08:37:30.385 SQL [4192]: PQcmdTuples: 1 -- 08:37:30.385 SQL [4192]: Affected rows: 1 -- 08:37:30.385 FLOG_MAX [4192]: SELECT currval('members_session_id_seq') -- 08:37:30.385 SQL [4192]: pgsql_query() -- 08:37:30.385 SQL [4192]: About to run query: -- 08:37:30.385 SQL [4192]: SELECT currval('members_session_id_seq') -- 08:37:30.386 SQL [4192]: Found rows: 1 -- 08:37:30.386 INFO [4192]: CreateDefaultPage() -- 08:37:30.386 FLOG_MAX [4192]: long load_db_record( CVars &rec, const char * query, ... ) -- 08:37:30.386 SQL [4192]: pgsql_query() -- 08:37:30.386 SQL [4192]: About to run query: -- 08:37:30.386 SQL [4192]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 08:37:30.386 SQL [4192]: Found rows: 1 -- 08:37:30.386 FLOG_MAX [4192]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 08:37:30.386 SQL [4192]: pgsql_query() -- 08:37:30.386 SQL [4192]: About to run query: -- 08:37:30.386 SQL [4192]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 08:37:30.387 SQL [4192]: Found rows: 1 -- 08:37:30.387 INFO [4192]: /CreateDefaultPage() -- 08:37:30.387 INFO [4192]: /LoginCoreGradeAccount() -- 08:37:30.387 INFO [4192]: RET: added=2020-02-05 06:47:23.982154 -- 08:37:30.387 INFO [4192]: RET: email=ameye+11@chiefsoft.com -- 08:37:30.387 INFO [4192]: RET: firstname=Olu -- 08:37:30.387 INFO [4192]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 08:37:30.387 INFO [4192]: RET: id=5 -- 08:37:30.387 INFO [4192]: RET: last_login= -- 08:37:30.387 INFO [4192]: RET: lastname=Amey -- 08:37:30.387 INFO [4192]: RET: loc=192.168.1.13 -- 08:37:30.387 INFO [4192]: RET: member_id=5 -- 08:37:30.387 INFO [4192]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 08:37:30.387 INFO [4192]: RET: phone= -- 08:37:30.387 INFO [4192]: RET: pid= -- 08:37:30.387 INFO [4192]: RET: result=YES I GET TO BACK END -- 08:37:30.387 INFO [4192]: RET: sessionid=7EBC5693B3D2BCFE2B45A5853FF8A2DD -- 08:37:30.387 INFO [4192]: RET: status=1 -- 08:37:30.387 INFO [4192]: RET: stauts=OK -- 08:37:30.387 INFO [4192]: RET: username=ameye+11@chiefsoft.com -- 08:37:30.387 INFO [4192]: RET: verified= -- 08:37:30.388 INFO [4192]: COREGRADE is stopping... -- 08:37:30.388 DEBUG [4192]: Closing database connection -- 08:37:30.388 SQL [4192]: pgsql_close() -- 08:37:30.338 DEBUG [4192]: Database connection successful -- 08:37:30.338 INFO [4192]: _SERVER found -- 08:37:30.338 INFO [4192]: REMOTE_ADDR = 10.0.0.15 -- 08:37:30.338 INFO [4192]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:30.338 INFO [4192]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069 -- 08:37:30.338 INFO [4192]: QUERY_STRING = /auth -- 08:37:30.338 INFO [4192]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:37:30.389 INFO [4192]: COREGRADE is stopping... -- 08:37:30.389 DEBUG [4192]: Closing database connection -- 08:37:30.389 SQL [4192]: pgsql_close() -- 08:37:30.420 INFO [4192]: COREGRADE is starting... -- 08:37:30.420 INFO [4192]: Version from config: 1.0 -- 08:37:30.420 DEBUG [4192]: Connecting to database... -- 08:37:30.420 DEBUG [4192]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:30.420 SQL [4192]: pgsql_db_connect() -- 08:37:30.424 DEBUG [4192]: Database connection successful -- 08:37:30.424 INFO [4192]: _SERVER found -- 08:37:30.424 INFO [4192]: REMOTE_ADDR = 10.0.0.15 -- 08:37:30.424 INFO [4192]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:30.424 INFO [4192]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=au5g4nnt2upcqrg92a46oo7eicsvobbh -- 08:37:30.424 INFO [4192]: QUERY_STRING = /member/index -- 08:37:30.425 INFO [4192]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:37:30.466 INFO [4192]: COREGRADE is stopping... -- 08:37:30.466 DEBUG [4192]: Closing database connection -- 08:37:30.466 SQL [4192]: pgsql_close() -- 08:37:31.281 INFO [4195]: COREGRADE is starting... -- 08:37:31.281 INFO [4195]: Version from config: 1.0 -- 08:37:31.281 DEBUG [4195]: Connecting to database... -- 08:37:31.281 DEBUG [4195]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:31.281 SQL [4195]: pgsql_db_connect() -- 08:37:31.286 DEBUG [4195]: Database connection successful -- 08:37:31.286 INFO [4195]: _SERVER found -- 08:37:31.286 INFO [4195]: REMOTE_ADDR = 10.0.0.15 -- 08:37:31.286 INFO [4195]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:31.286 INFO [4195]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=au5g4nnt2upcqrg92a46oo7eicsvobbh -- 08:37:31.286 INFO [4195]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 08:37:31.286 INFO [4195]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:37:31.297 INFO [4195]: COREGRADE is stopping... -- 08:37:31.298 DEBUG [4195]: Closing database connection -- 08:37:31.298 SQL [4195]: pgsql_close() -- 08:37:31.615 INFO [4193]: COREGRADE is starting... -- 08:37:31.615 INFO [4193]: Version from config: 1.0 -- 08:37:31.615 DEBUG [4193]: Connecting to database... -- 08:37:31.615 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:37:31.615 SQL [4193]: pgsql_db_connect() -- 08:37:31.620 DEBUG [4193]: Database connection successful -- 08:37:31.620 INFO [4193]: _SERVER found -- 08:37:31.620 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 08:37:31.620 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 08:37:31.620 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=au5g4nnt2upcqrg92a46oo7eicsvobbh -- 08:37:31.620 INFO [4193]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 08:37:31.620 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:37:31.633 INFO [4193]: COREGRADE is stopping... -- 08:37:31.633 DEBUG [4193]: Closing database connection -- 08:37:31.633 SQL [4193]: pgsql_close() -- 08:40:04.901 INFO [4194]: COREGRADE is starting... -- 08:40:04.901 INFO [4194]: Version from config: 1.0 -- 08:40:04.901 DEBUG [4194]: Connecting to database... -- 08:40:04.901 DEBUG [4194]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:40:04.901 SQL [4194]: pgsql_db_connect() -- 08:40:04.907 DEBUG [4194]: Database connection successful -- 08:40:04.907 INFO [4194]: _SERVER found -- 08:40:04.907 INFO [4194]: REMOTE_ADDR = 10.0.0.15 -- 08:40:04.907 INFO [4194]: SERVER_NAME = oameye.works.coregrade.com -- 08:40:04.907 INFO [4194]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=hvu7a5bn92ep1k627llh5fs3300kt97s -- 08:40:04.907 INFO [4194]: QUERY_STRING = /authdd -- 08:40:04.907 INFO [4194]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:40:04.919 INFO [4194]: COREGRADE is stopping... -- 08:40:04.919 DEBUG [4194]: Closing database connection -- 08:40:04.919 SQL [4194]: pgsql_close() -- 08:40:05.068 INFO [4194]: COREGRADE is starting... -- 08:40:05.068 INFO [4194]: Version from config: 1.0 -- 08:40:05.068 DEBUG [4194]: Connecting to database... -- 08:40:05.068 DEBUG [4194]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:40:05.068 SQL [4194]: pgsql_db_connect() -- 08:40:05.072 DEBUG [4194]: Database connection successful -- 08:40:05.073 INFO [4194]: _SERVER found -- 08:40:05.073 INFO [4194]: REMOTE_ADDR = 10.0.0.15 -- 08:40:05.073 INFO [4194]: SERVER_NAME = oameye.works.coregrade.com -- 08:40:05.073 INFO [4194]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=hvu7a5bn92ep1k627llh5fs3300kt97s -- 08:40:05.073 INFO [4194]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 08:40:05.073 INFO [4194]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:40:05.084 INFO [4194]: COREGRADE is stopping... -- 08:40:05.084 DEBUG [4194]: Closing database connection -- 08:40:05.084 SQL [4194]: pgsql_close() -- 08:40:07.498 INFO [4194]: COREGRADE is starting... -- 08:40:07.498 INFO [4194]: Version from config: 1.0 -- 08:40:07.498 DEBUG [4194]: Connecting to database... -- 08:40:07.498 DEBUG [4194]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:40:07.498 SQL [4194]: pgsql_db_connect() -- 08:40:07.503 DEBUG [4194]: Database connection successful -- 08:40:07.503 INFO [4194]: _SERVER found -- 08:40:07.503 INFO [4194]: REMOTE_ADDR = 10.0.0.15 -- 08:40:07.503 INFO [4194]: SERVER_NAME = oameye.works.coregrade.com -- 08:40:07.503 INFO [4194]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561 -- 08:40:07.503 INFO [4194]: QUERY_STRING = /kkk -- 08:40:07.503 INFO [4194]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 08:40:07.514 INFO [4194]: COREGRADE is stopping... -- 08:40:07.514 DEBUG [4194]: Closing database connection -- 08:40:07.514 SQL [4194]: pgsql_close() -- 08:40:07.661 INFO [4194]: COREGRADE is starting... -- 08:40:07.661 INFO [4194]: Version from config: 1.0 -- 08:40:07.661 DEBUG [4194]: Connecting to database... -- 08:40:07.661 DEBUG [4194]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:40:07.661 SQL [4194]: pgsql_db_connect() -- 08:40:07.665 DEBUG [4194]: Database connection successful -- 08:40:07.665 INFO [4194]: _SERVER found -- 08:40:07.665 INFO [4194]: REMOTE_ADDR = 10.0.0.15 -- 08:40:07.665 INFO [4194]: SERVER_NAME = oameye.works.coregrade.com -- 08:40:07.665 INFO [4194]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561 -- 08:40:07.665 INFO [4194]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 08:40:07.665 INFO [4194]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 08:40:07.677 INFO [4194]: COREGRADE is stopping... -- 08:40:07.677 DEBUG [4194]: Closing database connection -- 08:40:07.677 SQL [4194]: pgsql_close() -- 08:40:55.777 INFO [4193]: COREGRADE is starting... -- 08:40:55.777 INFO [4193]: Version from config: 1.0 -- 08:40:55.777 DEBUG [4193]: Connecting to database... -- 08:40:55.777 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:40:55.777 SQL [4193]: pgsql_db_connect() -- 08:40:55.782 DEBUG [4193]: Database connection successful -- 08:40:55.782 INFO [4193]: _SERVER found -- 08:40:55.782 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 08:40:55.782 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 08:40:55.782 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561 -- 08:40:55.782 INFO [4193]: QUERY_STRING = /kkk -- 08:40:55.782 INFO [4193]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 08:40:55.794 INFO [4193]: COREGRADE is stopping... -- 08:40:55.794 DEBUG [4193]: Closing database connection -- 08:40:55.794 SQL [4193]: pgsql_close() -- 08:40:55.967 INFO [4193]: COREGRADE is starting... -- 08:40:55.968 INFO [4193]: Version from config: 1.0 -- 08:40:55.968 DEBUG [4193]: Connecting to database... -- 08:40:55.968 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:40:55.968 SQL [4193]: pgsql_db_connect() -- 08:40:55.972 DEBUG [4193]: Database connection successful -- 08:40:55.972 INFO [4193]: _SERVER found -- 08:40:55.972 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 08:40:55.972 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 08:40:55.972 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561 -- 08:40:55.972 INFO [4193]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 08:40:55.972 INFO [4193]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 08:40:55.984 INFO [4193]: COREGRADE is stopping... -- 08:40:55.984 DEBUG [4193]: Closing database connection -- 08:40:55.984 SQL [4193]: pgsql_close() -- 08:41:01.750 INFO [4195]: COREGRADE is starting... -- 08:41:01.751 INFO [4195]: Version from config: 1.0 -- 08:41:01.751 DEBUG [4195]: Connecting to database... -- 08:41:01.751 DEBUG [4195]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:41:01.751 SQL [4195]: pgsql_db_connect() -- 08:41:01.755 DEBUG [4195]: Database connection successful -- 08:41:01.755 INFO [4195]: _SERVER found -- 08:41:01.755 INFO [4195]: REMOTE_ADDR = 10.0.0.15 -- 08:41:01.755 INFO [4195]: SERVER_NAME = oameye.works.coregrade.com -- 08:41:01.755 INFO [4195]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561 -- 08:41:01.755 INFO [4195]: QUERY_STRING = -- 08:41:01.755 INFO [4195]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 08:41:01.788 INFO [4195]: COREGRADE is stopping... -- 08:41:01.789 DEBUG [4195]: Closing database connection -- 08:41:01.789 SQL [4195]: pgsql_close() -- 08:41:01.975 INFO [4251]: COREGRADE is starting... -- 08:41:01.975 INFO [4251]: Version from config: 1.0 -- 08:41:01.975 DEBUG [4251]: Connecting to database... -- 08:41:01.976 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:41:01.976 SQL [4251]: pgsql_db_connect() -- 08:41:01.980 DEBUG [4251]: Database connection successful -- 08:41:01.980 INFO [4251]: _SERVER found -- 08:41:01.980 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 08:41:01.980 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 08:41:01.980 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=fdhalqjeap74a8si0f9lo966foaqvqki -- 08:41:01.980 INFO [4251]: QUERY_STRING = /assets/img/footer_1.jpg -- 08:41:01.980 INFO [4251]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 08:41:01.992 INFO [4251]: COREGRADE is stopping... -- 08:41:01.992 DEBUG [4251]: Closing database connection -- 08:41:01.992 SQL [4251]: pgsql_close() -- 08:41:30.789 INFO [4834]: COREGRADE is starting... -- 08:41:30.789 INFO [4834]: Version from config: 1.0 -- 08:41:30.789 DEBUG [4834]: Connecting to database... -- 08:41:30.789 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:41:30.789 SQL [4834]: pgsql_db_connect() -- 08:41:30.794 DEBUG [4834]: Database connection successful -- 08:41:30.794 INFO [4834]: _SERVER found -- 08:41:30.794 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 08:41:30.794 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 08:41:30.794 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=1j4b9lic783865172ih06iq5fs5dqmn3 -- 08:41:30.794 INFO [4834]: QUERY_STRING = -- 08:41:30.794 INFO [4834]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:41:30.836 INFO [4834]: COREGRADE is stopping... -- 08:41:30.836 DEBUG [4834]: Closing database connection -- 08:41:30.836 SQL [4834]: pgsql_close() -- 08:41:30.908 INFO [4834]: COREGRADE is starting... -- 08:41:30.908 INFO [4834]: Version from config: 1.0 -- 08:41:30.908 DEBUG [4834]: Connecting to database... -- 08:41:30.908 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:41:30.908 SQL [4834]: pgsql_db_connect() -- 08:41:30.912 DEBUG [4834]: Database connection successful -- 08:41:30.912 INFO [4834]: _SERVER found -- 08:41:30.912 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 08:41:30.912 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 08:41:30.912 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=pkclaa17g8llrme4jeqlp8qfd1iqscpl -- 08:41:30.912 INFO [4834]: QUERY_STRING = /assets/img/footer_1.jpg -- 08:41:30.912 INFO [4834]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:41:30.923 INFO [4834]: COREGRADE is stopping... -- 08:41:30.923 DEBUG [4834]: Closing database connection -- 08:41:30.923 SQL [4834]: pgsql_close() -- 08:41:54.815 INFO [5686]: COREGRADE is starting... -- 08:41:54.816 INFO [5686]: Version from config: 1.0 -- 08:41:54.816 DEBUG [5686]: Connecting to database... -- 08:41:54.816 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:41:54.816 SQL [5686]: pgsql_db_connect() -- 08:41:54.820 DEBUG [5686]: Database connection successful -- 08:41:54.820 INFO [5686]: _SERVER found -- 08:41:54.820 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 08:41:54.820 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 08:41:54.820 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=pkclaa17g8llrme4jeqlp8qfd1iqscpl; _gat_gtag_UA_54829827_2=1 -- 08:41:54.820 INFO [5686]: QUERY_STRING = -- 08:41:54.820 INFO [5686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:41:54.863 INFO [5686]: COREGRADE is stopping... -- 08:41:54.863 DEBUG [5686]: Closing database connection -- 08:41:54.863 SQL [5686]: pgsql_close() -- 08:41:55.565 INFO [5686]: COREGRADE is starting... -- 08:41:55.565 INFO [5686]: Version from config: 1.0 -- 08:41:55.565 DEBUG [5686]: Connecting to database... -- 08:41:55.565 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:41:55.565 SQL [5686]: pgsql_db_connect() -- 08:41:55.569 DEBUG [5686]: Database connection successful -- 08:41:55.569 INFO [5686]: _SERVER found -- 08:41:55.569 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 08:41:55.569 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 08:41:55.569 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=pkclaa17g8llrme4jeqlp8qfd1iqscpl; _gat_gtag_UA_54829827_2=1 -- 08:41:55.569 INFO [5686]: QUERY_STRING = /assets/img/footer_1.jpg -- 08:41:55.569 INFO [5686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:41:55.581 INFO [5686]: COREGRADE is stopping... -- 08:41:55.581 DEBUG [5686]: Closing database connection -- 08:41:55.581 SQL [5686]: pgsql_close() -- 08:42:58.104 INFO [5682]: COREGRADE is starting... -- 08:42:58.104 INFO [5682]: Version from config: 1.0 -- 08:42:58.104 DEBUG [5682]: Connecting to database... -- 08:42:58.104 DEBUG [5682]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:42:58.104 SQL [5682]: pgsql_db_connect() -- 08:42:58.108 DEBUG [5682]: Database connection successful -- 08:42:58.108 INFO [5682]: _SERVER found -- 08:42:58.108 INFO [5682]: REMOTE_ADDR = 10.0.0.15 -- 08:42:58.108 INFO [5682]: SERVER_NAME = oameye.works.coregrade.com -- 08:42:58.108 INFO [5682]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=au5g4nnt2upcqrg92a46oo7eicsvobbh -- 08:42:58.108 INFO [5682]: QUERY_STRING = /member/index -- 08:42:58.108 INFO [5682]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:42:58.154 INFO [5682]: COREGRADE is stopping... -- 08:42:58.154 DEBUG [5682]: Closing database connection -- 08:42:58.154 SQL [5682]: pgsql_close() -- 08:42:58.664 INFO [4195]: COREGRADE is starting... -- 08:42:58.664 INFO [4195]: Version from config: 1.0 -- 08:42:58.664 DEBUG [4195]: Connecting to database... -- 08:42:58.664 DEBUG [4195]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:42:58.664 SQL [4195]: pgsql_db_connect() -- 08:42:58.669 DEBUG [4195]: Database connection successful -- 08:42:58.669 INFO [4195]: _SERVER found -- 08:42:58.669 INFO [4195]: REMOTE_ADDR = 10.0.0.15 -- 08:42:58.669 INFO [4195]: SERVER_NAME = oameye.works.coregrade.com -- 08:42:58.669 INFO [4195]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=8fmccds7leksfh29a72kai606ftcl8u4 -- 08:42:58.669 INFO [4195]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 08:42:58.669 INFO [4195]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:42:58.680 INFO [4195]: COREGRADE is stopping... -- 08:42:58.680 DEBUG [4195]: Closing database connection -- 08:42:58.680 SQL [4195]: pgsql_close() -- 08:43:01.245 INFO [5682]: COREGRADE is starting... -- 08:43:01.245 INFO [5682]: Version from config: 1.0 -- 08:43:01.245 DEBUG [5682]: Connecting to database... -- 08:43:01.245 DEBUG [5682]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:01.245 SQL [5682]: pgsql_db_connect() -- 08:43:01.250 DEBUG [5682]: Database connection successful -- 08:43:01.250 INFO [5682]: _SERVER found -- 08:43:01.250 INFO [5682]: REMOTE_ADDR = 10.0.0.15 -- 08:43:01.250 INFO [5682]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:01.250 INFO [5682]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=8fmccds7leksfh29a72kai606ftcl8u4 -- 08:43:01.250 INFO [5682]: QUERY_STRING = /member/mycalendar -- 08:43:01.250 INFO [5682]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:01.289 INFO [5682]: COREGRADE is stopping... -- 08:43:01.289 DEBUG [5682]: Closing database connection -- 08:43:01.289 SQL [5682]: pgsql_close() -- 08:43:01.497 INFO [4195]: COREGRADE is starting... -- 08:43:01.497 INFO [4195]: Version from config: 1.0 -- 08:43:01.497 DEBUG [4195]: Connecting to database... -- 08:43:01.497 DEBUG [4195]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:01.497 SQL [4195]: pgsql_db_connect() -- 08:43:01.501 DEBUG [4195]: Database connection successful -- 08:43:01.501 INFO [4195]: _SERVER found -- 08:43:01.501 INFO [4195]: REMOTE_ADDR = 10.0.0.15 -- 08:43:01.501 INFO [4195]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:01.501 INFO [4195]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=8fmccds7leksfh29a72kai606ftcl8u4 -- 08:43:01.501 INFO [4195]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 08:43:01.501 INFO [4195]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:01.512 INFO [4195]: COREGRADE is stopping... -- 08:43:01.512 DEBUG [4195]: Closing database connection -- 08:43:01.512 SQL [4195]: pgsql_close() -- 08:43:06.203 INFO [4195]: COREGRADE is starting... -- 08:43:06.204 INFO [4195]: Version from config: 1.0 -- 08:43:06.204 DEBUG [4195]: Connecting to database... -- 08:43:06.204 DEBUG [4195]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:06.204 SQL [4195]: pgsql_db_connect() -- 08:43:06.208 DEBUG [4195]: Database connection successful -- 08:43:06.208 INFO [4195]: _SERVER found -- 08:43:06.208 INFO [4195]: REMOTE_ADDR = 10.0.0.15 -- 08:43:06.208 INFO [4195]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:06.208 INFO [4195]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=8fmccds7leksfh29a72kai606ftcl8u4 -- 08:43:06.208 INFO [4195]: QUERY_STRING = /member/classroom -- 08:43:06.208 INFO [4195]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:06.220 INFO [4195]: COREGRADE is stopping... -- 08:43:06.220 DEBUG [4195]: Closing database connection -- 08:43:06.220 SQL [4195]: pgsql_close() -- 08:43:06.474 INFO [5687]: COREGRADE is starting... -- 08:43:06.474 INFO [5687]: Version from config: 1.0 -- 08:43:06.474 DEBUG [5687]: Connecting to database... -- 08:43:06.474 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:06.474 SQL [5687]: pgsql_db_connect() -- 08:43:06.478 DEBUG [5687]: Database connection successful -- 08:43:06.478 INFO [5687]: _SERVER found -- 08:43:06.478 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 08:43:06.478 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:06.478 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=8fmccds7leksfh29a72kai606ftcl8u4 -- 08:43:06.478 INFO [5687]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 08:43:06.478 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:06.490 INFO [5687]: COREGRADE is stopping... -- 08:43:06.490 DEBUG [5687]: Closing database connection -- 08:43:06.490 SQL [5687]: pgsql_close() -- 08:43:10.002 INFO [5687]: COREGRADE is starting... -- 08:43:10.002 INFO [5687]: Version from config: 1.0 -- 08:43:10.002 DEBUG [5687]: Connecting to database... -- 08:43:10.002 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:10.002 SQL [5687]: pgsql_db_connect() -- 08:43:10.006 DEBUG [5687]: Database connection successful -- 08:43:10.006 INFO [5687]: _SERVER found -- 08:43:10.006 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 08:43:10.006 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:10.006 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=8fmccds7leksfh29a72kai606ftcl8u4 -- 08:43:10.006 INFO [5687]: QUERY_STRING = /member/mycalendar -- 08:43:10.006 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:10.048 INFO [5687]: COREGRADE is stopping... -- 08:43:10.048 DEBUG [5687]: Closing database connection -- 08:43:10.048 SQL [5687]: pgsql_close() -- 08:43:11.620 INFO [5687]: COREGRADE is starting... -- 08:43:11.621 INFO [5687]: Version from config: 1.0 -- 08:43:11.621 DEBUG [5687]: Connecting to database... -- 08:43:11.621 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:11.621 SQL [5687]: pgsql_db_connect() -- 08:43:11.625 DEBUG [5687]: Database connection successful -- 08:43:11.625 INFO [5687]: _SERVER found -- 08:43:11.625 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 08:43:11.625 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:11.625 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=8fmccds7leksfh29a72kai606ftcl8u4 -- 08:43:11.625 INFO [5687]: QUERY_STRING = /member/mycalendar -- 08:43:11.625 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:11.661 INFO [5687]: COREGRADE is stopping... -- 08:43:11.661 DEBUG [5687]: Closing database connection -- 08:43:11.661 SQL [5687]: pgsql_close() -- 08:43:11.830 INFO [5687]: COREGRADE is starting... -- 08:43:11.831 INFO [5687]: Version from config: 1.0 -- 08:43:11.831 DEBUG [5687]: Connecting to database... -- 08:43:11.831 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:11.831 SQL [5687]: pgsql_db_connect() -- 08:43:11.835 DEBUG [5687]: Database connection successful -- 08:43:11.835 INFO [5687]: _SERVER found -- 08:43:11.835 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 08:43:11.835 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:11.835 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=8fmccds7leksfh29a72kai606ftcl8u4 -- 08:43:11.835 INFO [5687]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 08:43:11.835 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:43:11.846 INFO [5687]: COREGRADE is stopping... -- 08:43:11.846 DEBUG [5687]: Closing database connection -- 08:43:11.846 SQL [5687]: pgsql_close() -- 08:44:11.102 INFO [5697]: COREGRADE is starting... -- 08:44:11.103 INFO [5697]: Version from config: 1.0 -- 08:44:11.103 DEBUG [5697]: Connecting to database... -- 08:44:11.103 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:44:11.103 SQL [5697]: pgsql_db_connect() -- 08:44:11.107 DEBUG [5697]: Database connection successful -- 08:44:11.107 INFO [5697]: _SERVER found -- 08:44:11.107 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 08:44:11.107 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 08:44:11.107 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=8fmccds7leksfh29a72kai606ftcl8u4 -- 08:44:11.107 INFO [5697]: QUERY_STRING = /member/mycalendar -- 08:44:11.107 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:44:11.152 INFO [5697]: COREGRADE is stopping... -- 08:44:11.152 DEBUG [5697]: Closing database connection -- 08:44:11.152 SQL [5697]: pgsql_close() -- 08:44:11.675 INFO [5697]: COREGRADE is starting... -- 08:44:11.675 INFO [5697]: Version from config: 1.0 -- 08:44:11.675 DEBUG [5697]: Connecting to database... -- 08:44:11.675 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:44:11.675 SQL [5697]: pgsql_db_connect() -- 08:44:11.680 DEBUG [5697]: Database connection successful -- 08:44:11.680 INFO [5697]: _SERVER found -- 08:44:11.680 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 08:44:11.680 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 08:44:11.680 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=8fmccds7leksfh29a72kai606ftcl8u4 -- 08:44:11.680 INFO [5697]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 08:44:11.680 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:44:11.691 INFO [5697]: COREGRADE is stopping... -- 08:44:11.691 DEBUG [5697]: Closing database connection -- 08:44:11.691 SQL [5697]: pgsql_close() -- 08:47:47.423 INFO [4193]: COREGRADE is starting... -- 08:47:47.423 INFO [4193]: Version from config: 1.0 -- 08:47:47.423 DEBUG [4193]: Connecting to database... -- 08:47:47.423 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:47:47.423 SQL [4193]: pgsql_db_connect() -- 08:47:47.428 DEBUG [4193]: Database connection successful -- 08:47:47.428 INFO [4193]: _SERVER found -- 08:47:47.428 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 08:47:47.428 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 08:47:47.428 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=8fmccds7leksfh29a72kai606ftcl8u4 -- 08:47:47.428 INFO [4193]: QUERY_STRING = /member/mycalendar -- 08:47:47.428 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:47:47.441 INFO [4193]: COREGRADE is stopping... -- 08:47:47.441 DEBUG [4193]: Closing database connection -- 08:47:47.441 SQL [4193]: pgsql_close() -- 08:47:49.195 INFO [4195]: COREGRADE is starting... -- 08:47:49.196 INFO [4195]: Version from config: 1.0 -- 08:47:49.196 DEBUG [4195]: Connecting to database... -- 08:47:49.196 DEBUG [4195]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:47:49.196 SQL [4195]: pgsql_db_connect() -- 08:47:49.200 DEBUG [4195]: Database connection successful -- 08:47:49.200 INFO [4195]: _SERVER found -- 08:47:49.200 INFO [4195]: REMOTE_ADDR = 10.0.0.15 -- 08:47:49.200 INFO [4195]: SERVER_NAME = oameye.works.coregrade.com -- 08:47:49.200 INFO [4195]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=8fmccds7leksfh29a72kai606ftcl8u4 -- 08:47:49.200 INFO [4195]: QUERY_STRING = /member/index -- 08:47:49.200 INFO [4195]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:47:49.212 INFO [4195]: COREGRADE is stopping... -- 08:47:49.213 DEBUG [4195]: Closing database connection -- 08:47:49.213 SQL [4195]: pgsql_close() -- 08:48:33.345 INFO [5687]: COREGRADE is starting... -- 08:48:33.345 INFO [5687]: Version from config: 1.0 -- 08:48:33.345 DEBUG [5687]: Connecting to database... -- 08:48:33.345 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:48:33.345 SQL [5687]: pgsql_db_connect() -- 08:48:33.350 DEBUG [5687]: Database connection successful -- 08:48:33.350 INFO [5687]: _SERVER found -- 08:48:33.350 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 08:48:33.350 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 08:48:33.350 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=8fmccds7leksfh29a72kai606ftcl8u4 -- 08:48:33.350 INFO [5687]: QUERY_STRING = /member/index -- 08:48:33.350 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:48:33.392 INFO [5687]: COREGRADE is stopping... -- 08:48:33.392 DEBUG [5687]: Closing database connection -- 08:48:33.392 SQL [5687]: pgsql_close() -- 08:48:33.956 INFO [5752]: COREGRADE is starting... -- 08:48:33.956 INFO [5752]: Version from config: 1.0 -- 08:48:33.956 DEBUG [5752]: Connecting to database... -- 08:48:33.956 DEBUG [5752]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:48:33.956 SQL [5752]: pgsql_db_connect() -- 08:48:33.961 DEBUG [5752]: Database connection successful -- 08:48:33.961 INFO [5752]: _SERVER found -- 08:48:33.961 INFO [5752]: REMOTE_ADDR = 10.0.0.15 -- 08:48:33.961 INFO [5752]: SERVER_NAME = oameye.works.coregrade.com -- 08:48:33.961 INFO [5752]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=tij5e2ka9ncct52mnf80ogjvr4lhftbu -- 08:48:33.961 INFO [5752]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 08:48:33.961 INFO [5752]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:48:33.975 INFO [5752]: COREGRADE is stopping... -- 08:48:33.976 DEBUG [5752]: Closing database connection -- 08:48:33.976 SQL [5752]: pgsql_close() -- 08:48:34.030 INFO [5687]: COREGRADE is starting... -- 08:48:34.030 INFO [5687]: Version from config: 1.0 -- 08:48:34.030 DEBUG [5687]: Connecting to database... -- 08:48:34.031 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:48:34.031 SQL [5687]: pgsql_db_connect() -- 08:48:34.035 DEBUG [5687]: Database connection successful -- 08:48:34.035 INFO [5687]: _SERVER found -- 08:48:34.035 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 08:48:34.035 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 08:48:34.035 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=tij5e2ka9ncct52mnf80ogjvr4lhftbu -- 08:48:34.035 INFO [5687]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 08:48:34.035 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:48:34.046 INFO [5687]: COREGRADE is stopping... -- 08:48:34.046 DEBUG [5687]: Closing database connection -- 08:48:34.046 SQL [5687]: pgsql_close() -- 08:48:35.570 INFO [5687]: COREGRADE is starting... -- 08:48:35.570 INFO [5687]: Version from config: 1.0 -- 08:48:35.570 DEBUG [5687]: Connecting to database... -- 08:48:35.570 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:48:35.570 SQL [5687]: pgsql_db_connect() -- 08:48:35.575 DEBUG [5687]: Database connection successful -- 08:48:35.575 INFO [5687]: _SERVER found -- 08:48:35.575 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 08:48:35.575 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 08:48:35.575 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=tij5e2ka9ncct52mnf80ogjvr4lhftbu -- 08:48:35.575 INFO [5687]: QUERY_STRING = /member/classroom -- 08:48:35.575 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:48:35.617 INFO [5687]: COREGRADE is stopping... -- 08:48:35.617 DEBUG [5687]: Closing database connection -- 08:48:35.617 SQL [5687]: pgsql_close() -- 08:48:35.814 INFO [5687]: COREGRADE is starting... -- 08:48:35.814 INFO [5687]: Version from config: 1.0 -- 08:48:35.814 DEBUG [5687]: Connecting to database... -- 08:48:35.814 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:48:35.814 SQL [5687]: pgsql_db_connect() -- 08:48:35.815 INFO [5685]: COREGRADE is starting... -- 08:48:35.815 INFO [5685]: Version from config: 1.0 -- 08:48:35.815 DEBUG [5685]: Connecting to database... -- 08:48:35.815 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:48:35.815 SQL [5685]: pgsql_db_connect() -- 08:48:35.819 DEBUG [5687]: Database connection successful -- 08:48:35.819 INFO [5687]: _SERVER found -- 08:48:35.819 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 08:48:35.819 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 08:48:35.819 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=tij5e2ka9ncct52mnf80ogjvr4lhftbu -- 08:48:35.819 INFO [5687]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 08:48:35.819 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:48:35.830 INFO [5687]: COREGRADE is stopping... -- 08:48:35.830 DEBUG [5687]: Closing database connection -- 08:48:35.830 SQL [5687]: pgsql_close() -- 08:48:35.819 DEBUG [5685]: Database connection successful -- 08:48:35.819 INFO [5685]: _SERVER found -- 08:48:35.819 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 08:48:35.819 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 08:48:35.819 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=tij5e2ka9ncct52mnf80ogjvr4lhftbu -- 08:48:35.819 INFO [5685]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 08:48:35.819 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:48:35.833 INFO [5685]: COREGRADE is stopping... -- 08:48:35.833 DEBUG [5685]: Closing database connection -- 08:48:35.833 SQL [5685]: pgsql_close() -- 08:48:35.970 INFO [5685]: COREGRADE is starting... -- 08:48:35.970 INFO [5685]: Version from config: 1.0 -- 08:48:35.970 DEBUG [5685]: Connecting to database... -- 08:48:35.970 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:48:35.970 SQL [5685]: pgsql_db_connect() -- 08:48:35.974 DEBUG [5685]: Database connection successful -- 08:48:35.974 INFO [5685]: _SERVER found -- 08:48:35.974 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 08:48:35.974 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 08:48:35.974 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=tij5e2ka9ncct52mnf80ogjvr4lhftbu -- 08:48:35.974 INFO [5685]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 08:48:35.974 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:48:35.986 INFO [5685]: COREGRADE is stopping... -- 08:48:35.986 DEBUG [5685]: Closing database connection -- 08:48:35.986 SQL [5685]: pgsql_close() -- 08:50:14.901 INFO [5682]: COREGRADE is starting... -- 08:50:14.901 INFO [5682]: Version from config: 1.0 -- 08:50:14.901 DEBUG [5682]: Connecting to database... -- 08:50:14.901 DEBUG [5682]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:14.901 SQL [5682]: pgsql_db_connect() -- 08:50:14.905 DEBUG [5682]: Database connection successful -- 08:50:14.905 INFO [5682]: _SERVER found -- 08:50:14.905 INFO [5682]: REMOTE_ADDR = 10.0.0.15 -- 08:50:14.905 INFO [5682]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:14.905 INFO [5682]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=tij5e2ka9ncct52mnf80ogjvr4lhftbu -- 08:50:14.905 INFO [5682]: QUERY_STRING = /member/classroom -- 08:50:14.905 INFO [5682]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:50:14.952 INFO [5682]: COREGRADE is stopping... -- 08:50:14.953 DEBUG [5682]: Closing database connection -- 08:50:14.953 SQL [5682]: pgsql_close() -- 08:50:15.513 INFO [5697]: COREGRADE is starting... -- 08:50:15.513 INFO [5697]: Version from config: 1.0 -- 08:50:15.513 DEBUG [5697]: Connecting to database... -- 08:50:15.513 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:15.513 SQL [5697]: pgsql_db_connect() -- 08:50:15.515 INFO [4193]: COREGRADE is starting... -- 08:50:15.515 INFO [4193]: Version from config: 1.0 -- 08:50:15.515 DEBUG [4193]: Connecting to database... -- 08:50:15.515 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:15.515 SQL [4193]: pgsql_db_connect() -- 08:50:15.518 DEBUG [5697]: Database connection successful -- 08:50:15.518 INFO [5697]: _SERVER found -- 08:50:15.518 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 08:50:15.518 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:15.518 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=tij5e2ka9ncct52mnf80ogjvr4lhftbu -- 08:50:15.518 INFO [5697]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 08:50:15.518 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:50:15.530 INFO [5697]: COREGRADE is stopping... -- 08:50:15.530 DEBUG [5697]: Closing database connection -- 08:50:15.530 SQL [5697]: pgsql_close() -- 08:50:15.520 DEBUG [4193]: Database connection successful -- 08:50:15.520 INFO [4193]: _SERVER found -- 08:50:15.520 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 08:50:15.520 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:15.520 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=tij5e2ka9ncct52mnf80ogjvr4lhftbu -- 08:50:15.520 INFO [4193]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 08:50:15.520 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:50:15.532 INFO [4193]: COREGRADE is stopping... -- 08:50:15.532 DEBUG [4193]: Closing database connection -- 08:50:15.532 SQL [4193]: pgsql_close() -- 08:50:19.783 INFO [4193]: COREGRADE is starting... -- 08:50:19.784 INFO [4193]: Version from config: 1.0 -- 08:50:19.784 DEBUG [4193]: Connecting to database... -- 08:50:19.784 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:19.784 SQL [4193]: pgsql_db_connect() -- 08:50:19.788 DEBUG [4193]: Database connection successful -- 08:50:19.788 INFO [4193]: _SERVER found -- 08:50:19.788 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 08:50:19.788 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:19.788 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=tij5e2ka9ncct52mnf80ogjvr4lhftbu -- 08:50:19.788 INFO [4193]: QUERY_STRING = /member -- 08:50:19.788 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:50:19.830 INFO [4193]: COREGRADE is stopping... -- 08:50:19.831 DEBUG [4193]: Closing database connection -- 08:50:19.831 SQL [4193]: pgsql_close() -- 08:50:20.014 INFO [5697]: COREGRADE is starting... -- 08:50:20.014 INFO [5697]: Version from config: 1.0 -- 08:50:20.014 DEBUG [5697]: Connecting to database... -- 08:50:20.014 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:20.014 SQL [5697]: pgsql_db_connect() -- 08:50:20.018 DEBUG [5697]: Database connection successful -- 08:50:20.018 INFO [5697]: _SERVER found -- 08:50:20.018 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 08:50:20.018 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:20.018 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=tij5e2ka9ncct52mnf80ogjvr4lhftbu -- 08:50:20.018 INFO [5697]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 08:50:20.018 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:50:20.030 INFO [5697]: COREGRADE is stopping... -- 08:50:20.030 DEBUG [5697]: Closing database connection -- 08:50:20.030 SQL [5697]: pgsql_close() -- 08:50:20.119 INFO [5697]: COREGRADE is starting... -- 08:50:20.120 INFO [5697]: Version from config: 1.0 -- 08:50:20.120 DEBUG [5697]: Connecting to database... -- 08:50:20.120 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:20.120 SQL [5697]: pgsql_db_connect() -- 08:50:20.124 DEBUG [5697]: Database connection successful -- 08:50:20.124 INFO [5697]: _SERVER found -- 08:50:20.124 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 08:50:20.124 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:20.124 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=tij5e2ka9ncct52mnf80ogjvr4lhftbu -- 08:50:20.124 INFO [5697]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 08:50:20.124 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:50:20.135 INFO [5697]: COREGRADE is stopping... -- 08:50:20.135 DEBUG [5697]: Closing database connection -- 08:50:20.135 SQL [5697]: pgsql_close() -- 08:50:21.271 INFO [4195]: COREGRADE is starting... -- 08:50:21.271 INFO [4195]: Version from config: 1.0 -- 08:50:21.271 DEBUG [4195]: Connecting to database... -- 08:50:21.272 DEBUG [4195]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:21.272 SQL [4195]: pgsql_db_connect() -- 08:50:21.276 DEBUG [4195]: Database connection successful -- 08:50:21.276 INFO [4195]: _SERVER found -- 08:50:21.276 INFO [4195]: REMOTE_ADDR = 10.0.0.15 -- 08:50:21.276 INFO [4195]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:21.276 INFO [4195]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=tij5e2ka9ncct52mnf80ogjvr4lhftbu -- 08:50:21.276 INFO [4195]: QUERY_STRING = /member/classroom -- 08:50:21.276 INFO [4195]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:50:21.318 INFO [4195]: COREGRADE is stopping... -- 08:50:21.318 DEBUG [4195]: Closing database connection -- 08:50:21.318 SQL [4195]: pgsql_close() -- 08:50:21.608 INFO [4195]: COREGRADE is starting... -- 08:50:21.608 INFO [5686]: COREGRADE is starting... -- 08:50:21.608 INFO [4195]: Version from config: 1.0 -- 08:50:21.608 DEBUG [4195]: Connecting to database... -- 08:50:21.608 DEBUG [4195]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:21.608 INFO [5686]: Version from config: 1.0 -- 08:50:21.608 DEBUG [5686]: Connecting to database... -- 08:50:21.608 SQL [4195]: pgsql_db_connect() -- 08:50:21.608 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:21.608 SQL [5686]: pgsql_db_connect() -- 08:50:21.612 DEBUG [4195]: Database connection successful -- 08:50:21.612 INFO [4195]: _SERVER found -- 08:50:21.612 INFO [4195]: REMOTE_ADDR = 10.0.0.15 -- 08:50:21.612 INFO [4195]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:21.612 INFO [4195]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=tij5e2ka9ncct52mnf80ogjvr4lhftbu -- 08:50:21.612 INFO [4195]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 08:50:21.612 INFO [4195]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:50:21.624 INFO [4195]: COREGRADE is stopping... -- 08:50:21.624 DEBUG [4195]: Closing database connection -- 08:50:21.624 SQL [4195]: pgsql_close() -- 08:50:21.612 DEBUG [5686]: Database connection successful -- 08:50:21.612 INFO [5686]: _SERVER found -- 08:50:21.612 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 08:50:21.612 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:21.612 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=tij5e2ka9ncct52mnf80ogjvr4lhftbu -- 08:50:21.612 INFO [5686]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 08:50:21.612 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:50:21.624 INFO [5686]: COREGRADE is stopping... -- 08:50:21.624 DEBUG [5686]: Closing database connection -- 08:50:21.624 SQL [5686]: pgsql_close() -- 08:50:43.674 INFO [4251]: COREGRADE is starting... -- 08:50:43.674 INFO [4251]: Version from config: 1.0 -- 08:50:43.674 DEBUG [4251]: Connecting to database... -- 08:50:43.674 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:43.674 SQL [4251]: pgsql_db_connect() -- 08:50:43.678 DEBUG [4251]: Database connection successful -- 08:50:43.678 INFO [4251]: _SERVER found -- 08:50:43.678 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 08:50:43.678 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:43.678 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=tij5e2ka9ncct52mnf80ogjvr4lhftbu -- 08:50:43.678 INFO [4251]: QUERY_STRING = /member/page -- 08:50:43.678 INFO [4251]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:50:43.722 INFO [4251]: COREGRADE is stopping... -- 08:50:43.722 DEBUG [4251]: Closing database connection -- 08:50:43.722 SQL [4251]: pgsql_close() -- 08:50:43.935 INFO [4251]: COREGRADE is starting... -- 08:50:43.935 INFO [4251]: Version from config: 1.0 -- 08:50:43.935 DEBUG [4251]: Connecting to database... -- 08:50:43.935 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:43.935 SQL [4251]: pgsql_db_connect() -- 08:50:43.939 DEBUG [4251]: Database connection successful -- 08:50:43.939 INFO [4251]: _SERVER found -- 08:50:43.939 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 08:50:43.939 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:43.939 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=tij5e2ka9ncct52mnf80ogjvr4lhftbu -- 08:50:43.939 INFO [4251]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 08:50:43.939 INFO [4251]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:50:43.951 INFO [4251]: COREGRADE is stopping... -- 08:50:43.951 DEBUG [4251]: Closing database connection -- 08:50:43.951 SQL [4251]: pgsql_close() -- 08:50:47.426 INFO [4251]: COREGRADE is starting... -- 08:50:47.426 INFO [4251]: Version from config: 1.0 -- 08:50:47.426 DEBUG [4251]: Connecting to database... -- 08:50:47.426 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:47.426 SQL [4251]: pgsql_db_connect() -- 08:50:47.430 DEBUG [4251]: Database connection successful -- 08:50:47.430 INFO [4251]: _SERVER found -- 08:50:47.430 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 08:50:47.430 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:47.430 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=tij5e2ka9ncct52mnf80ogjvr4lhftbu -- 08:50:47.430 INFO [4251]: QUERY_STRING = /member/configure -- 08:50:47.430 INFO [4251]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:50:47.473 INFO [4251]: COREGRADE is stopping... -- 08:50:47.473 DEBUG [4251]: Closing database connection -- 08:50:47.473 SQL [4251]: pgsql_close() -- 08:50:47.787 INFO [5752]: COREGRADE is starting... -- 08:50:47.787 INFO [5687]: COREGRADE is starting... -- 08:50:47.787 INFO [5752]: Version from config: 1.0 -- 08:50:47.787 DEBUG [5752]: Connecting to database... -- 08:50:47.787 INFO [5687]: Version from config: 1.0 -- 08:50:47.787 DEBUG [5687]: Connecting to database... -- 08:50:47.787 DEBUG [5752]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:47.787 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:47.787 SQL [5752]: pgsql_db_connect() -- 08:50:47.787 SQL [5687]: pgsql_db_connect() -- 08:50:47.792 DEBUG [5752]: Database connection successful -- 08:50:47.792 INFO [5752]: _SERVER found -- 08:50:47.792 INFO [5752]: REMOTE_ADDR = 10.0.0.15 -- 08:50:47.792 INFO [5752]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:47.792 INFO [5752]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=tij5e2ka9ncct52mnf80ogjvr4lhftbu -- 08:50:47.792 INFO [5752]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 08:50:47.792 INFO [5752]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:50:47.803 INFO [5752]: COREGRADE is stopping... -- 08:50:47.803 DEBUG [5752]: Closing database connection -- 08:50:47.803 SQL [5752]: pgsql_close() -- 08:50:47.792 DEBUG [5687]: Database connection successful -- 08:50:47.792 INFO [5687]: _SERVER found -- 08:50:47.792 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 08:50:47.792 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:47.792 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=tij5e2ka9ncct52mnf80ogjvr4lhftbu -- 08:50:47.792 INFO [5687]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 08:50:47.792 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:50:47.804 INFO [5687]: COREGRADE is stopping... -- 08:50:47.804 DEBUG [5687]: Closing database connection -- 08:50:47.804 SQL [5687]: pgsql_close() -- 08:50:47.873 INFO [5687]: COREGRADE is starting... -- 08:50:47.873 INFO [5687]: Version from config: 1.0 -- 08:50:47.873 DEBUG [5687]: Connecting to database... -- 08:50:47.873 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:47.873 SQL [5687]: pgsql_db_connect() -- 08:50:47.877 DEBUG [5687]: Database connection successful -- 08:50:47.877 INFO [5687]: _SERVER found -- 08:50:47.877 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 08:50:47.877 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:47.877 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=tij5e2ka9ncct52mnf80ogjvr4lhftbu -- 08:50:47.877 INFO [5687]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 08:50:47.877 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:50:47.889 INFO [5687]: COREGRADE is stopping... -- 08:50:47.889 DEBUG [5687]: Closing database connection -- 08:50:47.889 SQL [5687]: pgsql_close() -- 08:50:50.311 INFO [5687]: COREGRADE is starting... -- 08:50:50.311 INFO [5687]: Version from config: 1.0 -- 08:50:50.312 DEBUG [5687]: Connecting to database... -- 08:50:50.312 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:50.312 SQL [5687]: pgsql_db_connect() -- 08:50:50.316 DEBUG [5687]: Database connection successful -- 08:50:50.316 INFO [5687]: _SERVER found -- 08:50:50.316 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 08:50:50.316 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:50.316 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=tij5e2ka9ncct52mnf80ogjvr4lhftbu -- 08:50:50.316 INFO [5687]: QUERY_STRING = /member/viewSharePage -- 08:50:50.316 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:50:50.350 INFO [5687]: COREGRADE is stopping... -- 08:50:50.350 DEBUG [5687]: Closing database connection -- 08:50:50.350 SQL [5687]: pgsql_close() -- 08:50:59.153 INFO [5682]: COREGRADE is starting... -- 08:50:59.153 INFO [5682]: Version from config: 1.0 -- 08:50:59.153 DEBUG [5682]: Connecting to database... -- 08:50:59.153 DEBUG [5682]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:59.153 SQL [5682]: pgsql_db_connect() -- 08:50:59.157 DEBUG [5682]: Database connection successful -- 08:50:59.157 INFO [5682]: _SERVER found -- 08:50:59.157 INFO [5682]: REMOTE_ADDR = 10.0.0.15 -- 08:50:59.157 INFO [5682]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:59.157 INFO [5682]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=pkclaa17g8llrme4jeqlp8qfd1iqscpl -- 08:50:59.157 INFO [5682]: QUERY_STRING = -- 08:50:59.157 INFO [5682]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:50:59.197 INFO [5682]: COREGRADE is stopping... -- 08:50:59.197 DEBUG [5682]: Closing database connection -- 08:50:59.197 SQL [5682]: pgsql_close() -- 08:50:59.263 INFO [5682]: COREGRADE is starting... -- 08:50:59.263 INFO [5682]: Version from config: 1.0 -- 08:50:59.263 DEBUG [5682]: Connecting to database... -- 08:50:59.263 DEBUG [5682]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:59.263 SQL [5682]: pgsql_db_connect() -- 08:50:59.267 DEBUG [5682]: Database connection successful -- 08:50:59.267 INFO [5682]: _SERVER found -- 08:50:59.267 INFO [5682]: REMOTE_ADDR = 10.0.0.15 -- 08:50:59.267 INFO [5682]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:59.267 INFO [5682]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=9etoee52bibigi4acb2j0b0fvs0ld7qa -- 08:50:59.267 INFO [5682]: QUERY_STRING = /assets/img/footer_1.jpg -- 08:50:59.267 INFO [5682]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:50:59.279 INFO [5682]: COREGRADE is stopping... -- 08:50:59.279 DEBUG [5682]: Closing database connection -- 08:50:59.279 SQL [5682]: pgsql_close() -- 08:54:20.928 INFO [4834]: COREGRADE is starting... -- 08:54:20.928 INFO [4834]: Version from config: 1.0 -- 08:54:20.928 DEBUG [4834]: Connecting to database... -- 08:54:20.928 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:54:20.928 SQL [4834]: pgsql_db_connect() -- 08:54:20.932 DEBUG [4834]: Database connection successful -- 08:54:20.932 INFO [4834]: _SERVER found -- 08:54:20.932 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 08:54:20.932 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 08:54:20.932 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=tij5e2ka9ncct52mnf80ogjvr4lhftbu -- 08:54:20.932 INFO [4834]: QUERY_STRING = /member/mycalendar -- 08:54:20.932 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:54:20.975 INFO [4834]: COREGRADE is stopping... -- 08:54:20.975 DEBUG [4834]: Closing database connection -- 08:54:20.975 SQL [4834]: pgsql_close() -- 08:54:21.161 INFO [4834]: COREGRADE is starting... -- 08:54:21.161 INFO [4834]: Version from config: 1.0 -- 08:54:21.161 DEBUG [4834]: Connecting to database... -- 08:54:21.161 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:54:21.161 SQL [4834]: pgsql_db_connect() -- 08:54:21.166 DEBUG [4834]: Database connection successful -- 08:54:21.166 INFO [4834]: _SERVER found -- 08:54:21.166 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 08:54:21.166 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 08:54:21.166 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=28nd9p8o3991uv2gr05an1324hp79epd -- 08:54:21.166 INFO [4834]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 08:54:21.166 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:54:21.177 INFO [4834]: COREGRADE is stopping... -- 08:54:21.177 DEBUG [4834]: Closing database connection -- 08:54:21.177 SQL [4834]: pgsql_close() -- 08:54:21.271 INFO [4834]: COREGRADE is starting... -- 08:54:21.271 INFO [4834]: Version from config: 1.0 -- 08:54:21.271 DEBUG [4834]: Connecting to database... -- 08:54:21.271 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:54:21.271 SQL [4834]: pgsql_db_connect() -- 08:54:21.275 DEBUG [4834]: Database connection successful -- 08:54:21.275 INFO [4834]: _SERVER found -- 08:54:21.275 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 08:54:21.275 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 08:54:21.275 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=28nd9p8o3991uv2gr05an1324hp79epd -- 08:54:21.275 INFO [4834]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 08:54:21.275 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:54:21.287 INFO [4834]: COREGRADE is stopping... -- 08:54:21.287 DEBUG [4834]: Closing database connection -- 08:54:21.287 SQL [4834]: pgsql_close() -- 08:54:24.674 INFO [4193]: COREGRADE is starting... -- 08:54:24.674 INFO [4193]: Version from config: 1.0 -- 08:54:24.674 DEBUG [4193]: Connecting to database... -- 08:54:24.674 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:54:24.674 SQL [4193]: pgsql_db_connect() -- 08:54:24.679 DEBUG [4193]: Database connection successful -- 08:54:24.679 INFO [4193]: _SERVER found -- 08:54:24.679 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 08:54:24.679 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 08:54:24.679 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=28nd9p8o3991uv2gr05an1324hp79epd -- 08:54:24.679 INFO [4193]: QUERY_STRING = /member/mycalendar -- 08:54:24.679 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:54:24.721 INFO [4193]: COREGRADE is stopping... -- 08:54:24.721 DEBUG [4193]: Closing database connection -- 08:54:24.721 SQL [4193]: pgsql_close() -- 08:54:25.246 INFO [4195]: COREGRADE is starting... -- 08:54:25.246 INFO [4195]: Version from config: 1.0 -- 08:54:25.246 DEBUG [4195]: Connecting to database... -- 08:54:25.246 DEBUG [4195]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:54:25.246 SQL [4195]: pgsql_db_connect() -- 08:54:25.250 DEBUG [4195]: Database connection successful -- 08:54:25.250 INFO [4195]: _SERVER found -- 08:54:25.250 INFO [4195]: REMOTE_ADDR = 10.0.0.15 -- 08:54:25.250 INFO [4195]: SERVER_NAME = oameye.works.coregrade.com -- 08:54:25.250 INFO [4195]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=28nd9p8o3991uv2gr05an1324hp79epd -- 08:54:25.250 INFO [4195]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 08:54:25.250 INFO [4195]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:54:25.262 INFO [4195]: COREGRADE is stopping... -- 08:54:25.262 DEBUG [4195]: Closing database connection -- 08:54:25.262 SQL [4195]: pgsql_close() -- 08:54:25.318 INFO [4834]: COREGRADE is starting... -- 08:54:25.319 INFO [4834]: Version from config: 1.0 -- 08:54:25.319 DEBUG [4834]: Connecting to database... -- 08:54:25.319 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:54:25.319 SQL [4834]: pgsql_db_connect() -- 08:54:25.323 DEBUG [4834]: Database connection successful -- 08:54:25.323 INFO [4834]: _SERVER found -- 08:54:25.323 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 08:54:25.323 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 08:54:25.323 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=28nd9p8o3991uv2gr05an1324hp79epd -- 08:54:25.323 INFO [4834]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 08:54:25.323 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:54:25.335 INFO [4834]: COREGRADE is stopping... -- 08:54:25.335 DEBUG [4834]: Closing database connection -- 08:54:25.335 SQL [4834]: pgsql_close() -- 08:55:12.583 INFO [4251]: COREGRADE is starting... -- 08:55:12.583 INFO [4251]: Version from config: 1.0 -- 08:55:12.583 DEBUG [4251]: Connecting to database... -- 08:55:12.583 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:55:12.583 SQL [4251]: pgsql_db_connect() -- 08:55:12.587 DEBUG [4251]: Database connection successful -- 08:55:12.587 INFO [4251]: _SERVER found -- 08:55:12.587 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 08:55:12.587 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 08:55:12.587 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=9etoee52bibigi4acb2j0b0fvs0ld7qa -- 08:55:12.587 INFO [4251]: QUERY_STRING = -- 08:55:12.587 INFO [4251]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:55:12.620 INFO [4251]: COREGRADE is stopping... -- 08:55:12.620 DEBUG [4251]: Closing database connection -- 08:55:12.620 SQL [4251]: pgsql_close() -- 08:55:12.694 INFO [4251]: COREGRADE is starting... -- 08:55:12.694 INFO [4251]: Version from config: 1.0 -- 08:55:12.694 DEBUG [4251]: Connecting to database... -- 08:55:12.694 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:55:12.694 SQL [4251]: pgsql_db_connect() -- 08:55:12.698 DEBUG [4251]: Database connection successful -- 08:55:12.698 INFO [4251]: _SERVER found -- 08:55:12.698 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 08:55:12.698 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 08:55:12.698 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=9etoee52bibigi4acb2j0b0fvs0ld7qa -- 08:55:12.698 INFO [4251]: QUERY_STRING = /assets/img/footer_1.jpg -- 08:55:12.698 INFO [4251]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:55:12.710 INFO [4251]: COREGRADE is stopping... -- 08:55:12.710 DEBUG [4251]: Closing database connection -- 08:55:12.710 SQL [4251]: pgsql_close() -- 08:56:00.801 INFO [5685]: COREGRADE is starting... -- 08:56:00.802 INFO [5685]: Version from config: 1.0 -- 08:56:00.802 DEBUG [5685]: Connecting to database... -- 08:56:00.802 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:56:00.802 SQL [5685]: pgsql_db_connect() -- 08:56:00.806 DEBUG [5685]: Database connection successful -- 08:56:00.806 INFO [5685]: _SERVER found -- 08:56:00.806 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 08:56:00.806 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 08:56:00.806 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=9etoee52bibigi4acb2j0b0fvs0ld7qa; _gat_gtag_UA_54829827_2=1 -- 08:56:00.806 INFO [5685]: QUERY_STRING = /auth/newuser -- 08:56:00.806 INFO [5685]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:56:00.842 INFO [5685]: COREGRADE is stopping... -- 08:56:00.842 DEBUG [5685]: Closing database connection -- 08:56:00.842 SQL [5685]: pgsql_close() -- 08:56:01.064 INFO [5685]: COREGRADE is starting... -- 08:56:01.064 INFO [5685]: Version from config: 1.0 -- 08:56:01.064 DEBUG [5685]: Connecting to database... -- 08:56:01.064 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:56:01.064 SQL [5685]: pgsql_db_connect() -- 08:56:01.068 DEBUG [5685]: Database connection successful -- 08:56:01.068 INFO [5685]: _SERVER found -- 08:56:01.068 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 08:56:01.068 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 08:56:01.068 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; _gat_gtag_UA_54829827_2=1; ci_session=dos61re9378rub9qh45vdv2aug3bfvol -- 08:56:01.068 INFO [5685]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 08:56:01.068 INFO [5685]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:56:01.080 INFO [5685]: COREGRADE is stopping... -- 08:56:01.080 DEBUG [5685]: Closing database connection -- 08:56:01.080 SQL [5685]: pgsql_close() -- 08:57:12.813 INFO [5752]: COREGRADE is starting... -- 08:57:12.813 INFO [5752]: Version from config: 1.0 -- 08:57:12.813 DEBUG [5752]: Connecting to database... -- 08:57:12.813 DEBUG [5752]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:57:12.813 SQL [5752]: pgsql_db_connect() -- 08:57:12.818 DEBUG [5752]: Database connection successful -- 08:57:12.818 INFO [5752]: _SERVER found -- 08:57:12.818 INFO [5752]: REMOTE_ADDR = 10.0.0.15 -- 08:57:12.818 INFO [5752]: SERVER_NAME = oameye.works.coregrade.com -- 08:57:12.818 INFO [5752]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=dos61re9378rub9qh45vdv2aug3bfvol; _gat_gtag_UA_54829827_2=1 -- 08:57:12.818 INFO [5752]: QUERY_STRING = -- 08:57:12.818 INFO [5752]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:57:12.859 INFO [5752]: COREGRADE is stopping... -- 08:57:12.859 DEBUG [5752]: Closing database connection -- 08:57:12.859 SQL [5752]: pgsql_close() -- 08:57:12.964 INFO [5752]: COREGRADE is starting... -- 08:57:12.964 INFO [5752]: Version from config: 1.0 -- 08:57:12.964 DEBUG [5752]: Connecting to database... -- 08:57:12.964 DEBUG [5752]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:57:12.964 SQL [5752]: pgsql_db_connect() -- 08:57:12.968 DEBUG [5752]: Database connection successful -- 08:57:12.968 INFO [5752]: _SERVER found -- 08:57:12.968 INFO [5752]: REMOTE_ADDR = 10.0.0.15 -- 08:57:12.968 INFO [5752]: SERVER_NAME = oameye.works.coregrade.com -- 08:57:12.968 INFO [5752]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=dos61re9378rub9qh45vdv2aug3bfvol; _gat_gtag_UA_54829827_2=1 -- 08:57:12.968 INFO [5752]: QUERY_STRING = /assets/img/footer_1.jpg -- 08:57:12.968 INFO [5752]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:57:12.979 INFO [5752]: COREGRADE is stopping... -- 08:57:12.979 DEBUG [5752]: Closing database connection -- 08:57:12.979 SQL [5752]: pgsql_close() -- 08:57:20.360 INFO [5687]: COREGRADE is starting... -- 08:57:20.361 INFO [5687]: Version from config: 1.0 -- 08:57:20.361 DEBUG [5687]: Connecting to database... -- 08:57:20.361 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:57:20.361 SQL [5687]: pgsql_db_connect() -- 08:57:20.365 DEBUG [5687]: Database connection successful -- 08:57:20.365 INFO [5687]: _SERVER found -- 08:57:20.365 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 08:57:20.365 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 08:57:20.365 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=28nd9p8o3991uv2gr05an1324hp79epd -- 08:57:20.365 INFO [5687]: QUERY_STRING = /member/mycalendar -- 08:57:20.365 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:57:20.402 INFO [5687]: COREGRADE is stopping... -- 08:57:20.402 DEBUG [5687]: Closing database connection -- 08:57:20.402 SQL [5687]: pgsql_close() -- 08:57:20.910 INFO [5687]: COREGRADE is starting... -- 08:57:20.910 INFO [5687]: Version from config: 1.0 -- 08:57:20.910 DEBUG [5687]: Connecting to database... -- 08:57:20.910 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:57:20.910 SQL [5687]: pgsql_db_connect() -- 08:57:20.914 DEBUG [5687]: Database connection successful -- 08:57:20.914 INFO [5687]: _SERVER found -- 08:57:20.914 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 08:57:20.914 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 08:57:20.914 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=28nd9p8o3991uv2gr05an1324hp79epd -- 08:57:20.914 INFO [5687]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 08:57:20.914 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:57:20.926 INFO [5687]: COREGRADE is stopping... -- 08:57:20.926 DEBUG [5687]: Closing database connection -- 08:57:20.926 SQL [5687]: pgsql_close() -- 08:58:23.148 INFO [5686]: COREGRADE is starting... -- 08:58:23.148 INFO [5686]: Version from config: 1.0 -- 08:58:23.148 DEBUG [5686]: Connecting to database... -- 08:58:23.148 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:58:23.148 SQL [5686]: pgsql_db_connect() -- 08:58:23.152 DEBUG [5686]: Database connection successful -- 08:58:23.152 INFO [5686]: _SERVER found -- 08:58:23.152 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 08:58:23.152 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 08:58:23.152 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=28nd9p8o3991uv2gr05an1324hp79epd -- 08:58:23.152 INFO [5686]: QUERY_STRING = /member/classroom -- 08:58:23.152 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:58:23.197 INFO [5686]: COREGRADE is stopping... -- 08:58:23.197 DEBUG [5686]: Closing database connection -- 08:58:23.197 SQL [5686]: pgsql_close() -- 08:58:23.519 INFO [4834]: COREGRADE is starting... -- 08:58:23.519 INFO [4251]: COREGRADE is starting... -- 08:58:23.519 INFO [4834]: Version from config: 1.0 -- 08:58:23.519 DEBUG [4834]: Connecting to database... -- 08:58:23.519 INFO [4251]: Version from config: 1.0 -- 08:58:23.519 DEBUG [4251]: Connecting to database... -- 08:58:23.519 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:58:23.519 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:58:23.519 SQL [4834]: pgsql_db_connect() -- 08:58:23.519 SQL [4251]: pgsql_db_connect() -- 08:58:23.523 DEBUG [4834]: Database connection successful -- 08:58:23.523 INFO [4834]: _SERVER found -- 08:58:23.523 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 08:58:23.523 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 08:58:23.523 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=28nd9p8o3991uv2gr05an1324hp79epd -- 08:58:23.523 INFO [4834]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 08:58:23.523 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:58:23.535 INFO [4834]: COREGRADE is stopping... -- 08:58:23.523 DEBUG [4251]: Database connection successful -- 08:58:23.523 INFO [4251]: _SERVER found -- 08:58:23.523 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 08:58:23.523 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 08:58:23.523 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=28nd9p8o3991uv2gr05an1324hp79epd -- 08:58:23.523 INFO [4251]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 08:58:23.523 INFO [4251]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:58:23.535 INFO [4251]: COREGRADE is stopping... -- 08:58:23.535 DEBUG [4834]: Closing database connection -- 08:58:23.535 SQL [4834]: pgsql_close() -- 08:58:23.535 DEBUG [4251]: Closing database connection -- 08:58:23.535 SQL [4251]: pgsql_close() -- 08:58:23.603 INFO [4834]: COREGRADE is starting... -- 08:58:23.604 INFO [4834]: Version from config: 1.0 -- 08:58:23.604 DEBUG [4834]: Connecting to database... -- 08:58:23.604 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:58:23.604 SQL [4834]: pgsql_db_connect() -- 08:58:23.608 DEBUG [4834]: Database connection successful -- 08:58:23.608 INFO [4834]: _SERVER found -- 08:58:23.608 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 08:58:23.608 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 08:58:23.608 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=28nd9p8o3991uv2gr05an1324hp79epd -- 08:58:23.608 INFO [4834]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 08:58:23.608 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 08:58:23.619 INFO [4834]: COREGRADE is stopping... -- 08:58:23.619 DEBUG [4834]: Closing database connection -- 08:58:23.619 SQL [4834]: pgsql_close() -- 09:56:04.178 INFO [5697]: COREGRADE is starting... -- 09:56:04.178 INFO [5697]: Version from config: 1.0 -- 09:56:04.178 DEBUG [5697]: Connecting to database... -- 09:56:04.178 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:56:04.178 SQL [5697]: pgsql_db_connect() -- 09:56:04.182 DEBUG [5697]: Database connection successful -- 09:56:04.182 INFO [5697]: _SERVER found -- 09:56:04.182 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 09:56:04.182 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 09:56:04.182 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=hvu7a5bn92ep1k627llh5fs3300kt97s -- 09:56:04.182 INFO [5697]: QUERY_STRING = /auth -- 09:56:04.182 INFO [5697]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:56:04.218 INFO [5697]: COREGRADE is stopping... -- 09:56:04.218 DEBUG [5697]: Closing database connection -- 09:56:04.218 SQL [5697]: pgsql_close() -- 09:56:04.373 INFO [5697]: COREGRADE is starting... -- 09:56:04.374 INFO [5697]: Version from config: 1.0 -- 09:56:04.374 DEBUG [5697]: Connecting to database... -- 09:56:04.374 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:56:04.374 SQL [5697]: pgsql_db_connect() -- 09:56:04.378 DEBUG [5697]: Database connection successful -- 09:56:04.378 INFO [5697]: _SERVER found -- 09:56:04.378 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 09:56:04.378 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 09:56:04.378 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=8fgf3d7mbgnmpdi1lappc0lcsn2inbsn -- 09:56:04.378 INFO [5697]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 09:56:04.378 INFO [5697]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 09:56:04.389 INFO [5697]: COREGRADE is stopping... -- 09:56:04.389 DEBUG [5697]: Closing database connection -- 09:56:04.389 SQL [5697]: pgsql_close() -- 10:17:42.224 INFO [4193]: COREGRADE is starting... -- 10:17:42.224 INFO [4195]: COREGRADE is starting... -- 10:17:42.227 INFO [4195]: Version from config: 1.0 -- 10:17:42.227 DEBUG [4195]: Connecting to database... -- 10:17:42.227 INFO [4193]: Version from config: 1.0 -- 10:17:42.227 DEBUG [4193]: Connecting to database... -- 10:17:42.227 DEBUG [4195]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:17:42.227 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:17:42.227 SQL [4195]: pgsql_db_connect() -- 10:17:42.227 SQL [4193]: pgsql_db_connect() -- 10:17:42.233 DEBUG [4195]: Database connection successful -- 10:17:42.233 INFO [4195]: _SERVER found -- 10:17:42.233 INFO [4195]: REMOTE_ADDR = 10.0.0.15 -- 10:17:42.233 INFO [4195]: SERVER_NAME = oameye.works.coregrade.com -- 10:17:42.233 INFO [4195]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=fdhalqjeap74a8si0f9lo966foaqvqki -- 10:17:42.233 INFO [4195]: QUERY_STRING = /auth -- 10:17:42.233 INFO [4195]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 10:17:42.273 INFO [4195]: COREGRADE is stopping... -- 10:17:42.273 DEBUG [4195]: Closing database connection -- 10:17:42.273 SQL [4195]: pgsql_close() -- 10:17:42.233 DEBUG [4193]: Database connection successful -- 10:17:42.233 INFO [4193]: _SERVER found -- 10:17:42.233 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 10:17:42.233 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 10:17:42.233 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=fdhalqjeap74a8si0f9lo966foaqvqki -- 10:17:42.233 INFO [4193]: QUERY_STRING = /welcome/viewLogin -- 10:17:42.233 INFO [4193]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 10:17:42.275 INFO [4193]: COREGRADE is stopping... -- 10:17:42.275 DEBUG [4193]: Closing database connection -- 10:17:42.275 SQL [4193]: pgsql_close() -- 10:17:42.313 INFO [4193]: COREGRADE is starting... -- 10:17:42.313 INFO [4193]: Version from config: 1.0 -- 10:17:42.313 DEBUG [4193]: Connecting to database... -- 10:17:42.313 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:17:42.313 SQL [4193]: pgsql_db_connect() -- 10:17:42.317 DEBUG [4193]: Database connection successful -- 10:17:42.317 INFO [4193]: _SERVER found -- 10:17:42.317 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 10:17:42.317 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 10:17:42.317 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=fdhalqjeap74a8si0f9lo966foaqvqki -- 10:17:42.317 INFO [4193]: QUERY_STRING = /auth/index -- 10:17:42.317 INFO [4193]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 10:17:42.348 INFO [4193]: COREGRADE is stopping... -- 10:17:42.348 DEBUG [4193]: Closing database connection -- 10:17:42.348 SQL [4193]: pgsql_close() -- 10:17:42.489 INFO [4193]: COREGRADE is starting... -- 10:17:42.489 INFO [4193]: Version from config: 1.0 -- 10:17:42.489 DEBUG [4193]: Connecting to database... -- 10:17:42.489 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:17:42.489 SQL [4193]: pgsql_db_connect() -- 10:17:42.493 DEBUG [4193]: Database connection successful -- 10:17:42.493 INFO [4193]: _SERVER found -- 10:17:42.493 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 10:17:42.493 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 10:17:42.493 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=fdhalqjeap74a8si0f9lo966foaqvqki -- 10:17:42.493 INFO [4193]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:17:42.493 INFO [4193]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 10:17:42.504 INFO [4193]: COREGRADE is stopping... -- 10:17:42.504 DEBUG [4193]: Closing database connection -- 10:17:42.504 SQL [4193]: pgsql_close() -- 10:18:04.770 INFO [5682]: COREGRADE is starting... -- 10:18:04.771 INFO [5682]: Version from config: 1.0 -- 10:18:04.771 DEBUG [5682]: Connecting to database... -- 10:18:04.771 DEBUG [5682]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:18:04.771 SQL [5682]: pgsql_db_connect() -- 10:18:04.775 DEBUG [5682]: Database connection successful -- 10:18:04.775 INFO [5682]: _SERVER found -- 10:18:04.775 INFO [5682]: REMOTE_ADDR = 10.0.0.15 -- 10:18:04.775 INFO [5682]: SERVER_NAME = oameye.works.coregrade.com -- 10:18:04.775 INFO [5682]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=28nd9p8o3991uv2gr05an1324hp79epd -- 10:18:04.775 INFO [5682]: QUERY_STRING = /member/mycalendar -- 10:18:04.775 INFO [5682]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:18:04.815 INFO [5682]: COREGRADE is stopping... -- 10:18:04.815 DEBUG [5682]: Closing database connection -- 10:18:04.815 SQL [5682]: pgsql_close() -- 10:18:05.033 INFO [5682]: COREGRADE is starting... -- 10:18:05.033 INFO [5682]: Version from config: 1.0 -- 10:18:05.033 DEBUG [5682]: Connecting to database... -- 10:18:05.033 DEBUG [5682]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:18:05.033 SQL [5682]: pgsql_db_connect() -- 10:18:05.037 DEBUG [5682]: Database connection successful -- 10:18:05.037 INFO [5682]: _SERVER found -- 10:18:05.037 INFO [5682]: REMOTE_ADDR = 10.0.0.15 -- 10:18:05.037 INFO [5682]: SERVER_NAME = oameye.works.coregrade.com -- 10:18:05.037 INFO [5682]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=aukf8hj874hg6pg867s9hdtmhqih122d -- 10:18:05.037 INFO [5682]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:18:05.037 INFO [5682]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:18:05.048 INFO [5682]: COREGRADE is stopping... -- 10:18:05.048 DEBUG [5682]: Closing database connection -- 10:18:05.048 SQL [5682]: pgsql_close() -- 10:18:05.138 INFO [5682]: COREGRADE is starting... -- 10:18:05.138 INFO [5682]: Version from config: 1.0 -- 10:18:05.138 DEBUG [5682]: Connecting to database... -- 10:18:05.138 DEBUG [5682]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:18:05.138 SQL [5682]: pgsql_db_connect() -- 10:18:05.142 DEBUG [5682]: Database connection successful -- 10:18:05.142 INFO [5682]: _SERVER found -- 10:18:05.142 INFO [5682]: REMOTE_ADDR = 10.0.0.15 -- 10:18:05.142 INFO [5682]: SERVER_NAME = oameye.works.coregrade.com -- 10:18:05.142 INFO [5682]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=aukf8hj874hg6pg867s9hdtmhqih122d -- 10:18:05.142 INFO [5682]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 10:18:05.142 INFO [5682]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:18:05.153 INFO [5682]: COREGRADE is stopping... -- 10:18:05.153 DEBUG [5682]: Closing database connection -- 10:18:05.153 SQL [5682]: pgsql_close() -- 10:18:05.839 INFO [5687]: COREGRADE is starting... -- 10:18:05.839 INFO [5687]: Version from config: 1.0 -- 10:18:05.839 DEBUG [5687]: Connecting to database... -- 10:18:05.839 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:18:05.839 SQL [5687]: pgsql_db_connect() -- 10:18:05.843 DEBUG [5687]: Database connection successful -- 10:18:05.843 INFO [5687]: _SERVER found -- 10:18:05.843 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 10:18:05.843 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 10:18:05.843 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=aukf8hj874hg6pg867s9hdtmhqih122d -- 10:18:05.843 INFO [5687]: QUERY_STRING = /member/classroom -- 10:18:05.843 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:18:05.887 INFO [5687]: COREGRADE is stopping... -- 10:18:05.887 DEBUG [5687]: Closing database connection -- 10:18:05.887 SQL [5687]: pgsql_close() -- 10:18:06.078 INFO [5687]: COREGRADE is starting... -- 10:18:06.078 INFO [5687]: Version from config: 1.0 -- 10:18:06.078 DEBUG [5687]: Connecting to database... -- 10:18:06.078 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:18:06.078 SQL [5687]: pgsql_db_connect() -- 10:18:06.082 DEBUG [5687]: Database connection successful -- 10:18:06.082 INFO [5687]: _SERVER found -- 10:18:06.082 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 10:18:06.082 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 10:18:06.082 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=aukf8hj874hg6pg867s9hdtmhqih122d -- 10:18:06.082 INFO [5687]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:18:06.083 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:18:06.094 INFO [5687]: COREGRADE is stopping... -- 10:18:06.094 DEBUG [5687]: Closing database connection -- 10:18:06.094 SQL [5687]: pgsql_close() -- 10:18:06.154 INFO [5682]: COREGRADE is starting... -- 10:18:06.154 INFO [5682]: Version from config: 1.0 -- 10:18:06.154 DEBUG [5682]: Connecting to database... -- 10:18:06.154 DEBUG [5682]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:18:06.154 SQL [5682]: pgsql_db_connect() -- 10:18:06.158 DEBUG [5682]: Database connection successful -- 10:18:06.158 INFO [5682]: _SERVER found -- 10:18:06.158 INFO [5682]: REMOTE_ADDR = 10.0.0.15 -- 10:18:06.158 INFO [5682]: SERVER_NAME = oameye.works.coregrade.com -- 10:18:06.158 INFO [5682]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=aukf8hj874hg6pg867s9hdtmhqih122d -- 10:18:06.158 INFO [5682]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 10:18:06.158 INFO [5682]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:18:06.169 INFO [5682]: COREGRADE is stopping... -- 10:18:06.169 DEBUG [5682]: Closing database connection -- 10:18:06.169 SQL [5682]: pgsql_close() -- 10:18:07.740 INFO [5687]: COREGRADE is starting... -- 10:18:07.740 INFO [5687]: Version from config: 1.0 -- 10:18:07.740 DEBUG [5687]: Connecting to database... -- 10:18:07.740 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:18:07.740 SQL [5687]: pgsql_db_connect() -- 10:18:07.744 DEBUG [5687]: Database connection successful -- 10:18:07.744 INFO [5687]: _SERVER found -- 10:18:07.744 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 10:18:07.744 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 10:18:07.744 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=aukf8hj874hg6pg867s9hdtmhqih122d -- 10:18:07.744 INFO [5687]: QUERY_STRING = /member/mycalendar -- 10:18:07.744 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:18:07.781 INFO [5687]: COREGRADE is stopping... -- 10:18:07.782 DEBUG [5687]: Closing database connection -- 10:18:07.782 SQL [5687]: pgsql_close() -- 10:18:07.951 INFO [5682]: COREGRADE is starting... -- 10:18:07.952 INFO [5682]: Version from config: 1.0 -- 10:18:07.952 DEBUG [5682]: Connecting to database... -- 10:18:07.952 DEBUG [5682]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:18:07.952 SQL [5682]: pgsql_db_connect() -- 10:18:07.956 DEBUG [5682]: Database connection successful -- 10:18:07.956 INFO [5682]: _SERVER found -- 10:18:07.956 INFO [5682]: REMOTE_ADDR = 10.0.0.15 -- 10:18:07.956 INFO [5682]: SERVER_NAME = oameye.works.coregrade.com -- 10:18:07.956 INFO [5682]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=aukf8hj874hg6pg867s9hdtmhqih122d -- 10:18:07.956 INFO [5682]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:18:07.956 INFO [5682]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:18:07.967 INFO [5682]: COREGRADE is stopping... -- 10:18:07.967 DEBUG [5682]: Closing database connection -- 10:18:07.967 SQL [5682]: pgsql_close() -- 10:18:17.621 INFO [5686]: COREGRADE is starting... -- 10:18:17.622 INFO [5686]: Version from config: 1.0 -- 10:18:17.622 DEBUG [5686]: Connecting to database... -- 10:18:17.622 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:18:17.622 SQL [5686]: pgsql_db_connect() -- 10:18:17.626 DEBUG [5686]: Database connection successful -- 10:18:17.626 INFO [5686]: _SERVER found -- 10:18:17.626 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 10:18:17.626 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 10:18:17.626 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=aukf8hj874hg6pg867s9hdtmhqih122d -- 10:18:17.626 INFO [5686]: QUERY_STRING = /member/classroom -- 10:18:17.626 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:18:17.668 INFO [5686]: COREGRADE is stopping... -- 10:18:17.669 DEBUG [5686]: Closing database connection -- 10:18:17.669 SQL [5686]: pgsql_close() -- 10:18:17.866 INFO [5686]: COREGRADE is starting... -- 10:18:17.866 INFO [5686]: Version from config: 1.0 -- 10:18:17.866 DEBUG [5686]: Connecting to database... -- 10:18:17.866 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:18:17.866 SQL [5686]: pgsql_db_connect() -- 10:18:17.870 DEBUG [5686]: Database connection successful -- 10:18:17.870 INFO [5686]: _SERVER found -- 10:18:17.870 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 10:18:17.870 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 10:18:17.870 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=aukf8hj874hg6pg867s9hdtmhqih122d -- 10:18:17.870 INFO [5686]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:18:17.870 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:18:17.881 INFO [5686]: COREGRADE is stopping... -- 10:18:17.882 DEBUG [5686]: Closing database connection -- 10:18:17.882 SQL [5686]: pgsql_close() -- 10:18:17.973 INFO [5686]: COREGRADE is starting... -- 10:18:17.973 INFO [5686]: Version from config: 1.0 -- 10:18:17.973 DEBUG [5686]: Connecting to database... -- 10:18:17.973 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:18:17.973 SQL [5686]: pgsql_db_connect() -- 10:18:17.977 DEBUG [5686]: Database connection successful -- 10:18:17.977 INFO [5686]: _SERVER found -- 10:18:17.977 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 10:18:17.977 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 10:18:17.977 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=aukf8hj874hg6pg867s9hdtmhqih122d -- 10:18:17.977 INFO [5686]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 10:18:17.977 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:18:17.989 INFO [5686]: COREGRADE is stopping... -- 10:18:17.989 DEBUG [5686]: Closing database connection -- 10:18:17.989 SQL [5686]: pgsql_close() -- 10:25:19.327 INFO [4251]: COREGRADE is starting... -- 10:25:19.327 INFO [4251]: Version from config: 1.0 -- 10:25:19.327 DEBUG [4251]: Connecting to database... -- 10:25:19.327 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:25:19.327 SQL [4251]: pgsql_db_connect() -- 10:25:19.332 DEBUG [4251]: Database connection successful -- 10:25:19.332 INFO [4251]: _SERVER found -- 10:25:19.332 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 10:25:19.332 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 10:25:19.332 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=aukf8hj874hg6pg867s9hdtmhqih122d -- 10:25:19.332 INFO [4251]: QUERY_STRING = /auth/logout -- 10:25:19.332 INFO [4251]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:25:19.366 INFO [4251]: COREGRADE is stopping... -- 10:25:19.366 DEBUG [4251]: Closing database connection -- 10:25:19.366 SQL [4251]: pgsql_close() -- 10:25:19.622 INFO [5752]: COREGRADE is starting... -- 10:25:19.622 INFO [5752]: Version from config: 1.0 -- 10:25:19.622 DEBUG [5752]: Connecting to database... -- 10:25:19.622 DEBUG [5752]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:25:19.622 SQL [5752]: pgsql_db_connect() -- 10:25:19.626 DEBUG [5752]: Database connection successful -- 10:25:19.626 INFO [5752]: _SERVER found -- 10:25:19.626 INFO [5752]: REMOTE_ADDR = 10.0.0.15 -- 10:25:19.626 INFO [5752]: SERVER_NAME = oameye.works.coregrade.com -- 10:25:19.626 INFO [5752]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=dqab6hqqkhfgm65b5kv049r3i8q6f1pb -- 10:25:19.626 INFO [5752]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:25:19.626 INFO [5752]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:25:19.640 INFO [5752]: COREGRADE is stopping... -- 10:25:19.640 DEBUG [5752]: Closing database connection -- 10:25:19.640 SQL [5752]: pgsql_close() -- 10:31:13.244 INFO [5685]: COREGRADE is starting... -- 10:31:13.244 INFO [5685]: Version from config: 1.0 -- 10:31:13.244 DEBUG [5685]: Connecting to database... -- 10:31:13.244 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:31:13.244 SQL [5685]: pgsql_db_connect() -- 10:31:13.281 INFO [5685]: COREGRADE is starting... -- 10:31:13.281 INFO [5685]: Version from config: 1.0 -- 10:31:13.281 DEBUG [5685]: Connecting to database... -- 10:31:13.281 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:31:13.281 SQL [5685]: pgsql_db_connect() -- 10:31:13.285 DEBUG [5685]: Database connection successful -- 10:31:13.285 INFO [5685]: _SERVER found -- 10:31:13.285 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 10:31:13.285 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 10:31:13.285 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=dqab6hqqkhfgm65b5kv049r3i8q6f1pb; _gid=GA1.2.2044091736.1586960731 -- 10:31:13.285 INFO [5685]: QUERY_STRING = -- 10:31:13.285 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:31:13.285 INFO [5685]: SystemStatus()09-09-********~************ -- 10:31:13.285 INFO [5685]: long coregrade_api_main(CVars in, CVars &out) -- 10:31:13.285 INFO [5685]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 10:31:13.285 INFO [5685]: account calls -- 10:31:13.285 INFO [5685]: account_calls() -- 10:31:13.285 INFO [5685]: LoginCoreGradeAccount() -- 10:31:13.285 FLOG_MAX [5685]: REQ_STRING(username) -- 10:31:13.285 FLOG_MAX [5685]: REQ_STRING(password) -- 10:31:13.285 FLOG_MAX [5685]: REQ_STRING(sessionid) -- 10:31:13.286 FLOG_MAX [5685]: long load_db_record( CVars &rec, const char * query, ... ) -- 10:31:13.286 SQL [5685]: pgsql_query() -- 10:31:13.286 SQL [5685]: About to run query: -- 10:31:13.286 SQL [5685]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 10:31:13.289 SQL [5685]: Found rows: 1 -- 10:31:13.289 FLOG_MAX [5685]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 10:31:13.289 INFO [5685]: long SessionCheck(long uid, const char *sessionid, int create ) -- 10:31:13.289 SQL [5685]: pgsql_exec() -- 10:31:13.289 SQL [5685]: About to run query: -- 10:31:13.289 SQL [5685]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 10:31:13.360 SQL [5685]: PQcmdTuples: 1 -- 10:31:13.360 SQL [5685]: Affected rows: 1 -- 10:31:13.360 SQL [5685]: pgsql_exec() -- 10:31:13.360 SQL [5685]: About to run query: -- 10:31:13.360 SQL [5685]: DELETE FROM members_session WHERE member_id=5 -- 10:31:13.360 SQL [5685]: PQcmdTuples: 0 -- 10:31:13.360 SQL [5685]: Affected rows: 0 -- 10:31:13.360 SQL [5685]: pgsql_query() -- 10:31:13.360 SQL [5685]: About to run query: -- 10:31:13.360 SQL [5685]: SELECT * FROM members_session WHERE member_id=5 AND session<>'EE8C94AE80491F6C146737123FE8EA6D' -- 10:31:13.361 SQL [5685]: Found rows: 0 -- 10:31:13.361 SQL [5685]: Found rows: 0 -- 10:31:13.361 FLOG_MAX [5685]: long load_db_record( CVars &rec, const char * query, ... ) -- 10:31:13.361 SQL [5685]: pgsql_query() -- 10:31:13.361 SQL [5685]: About to run query: -- 10:31:13.361 SQL [5685]: SELECT * FROM members_session WHERE member_id=5 AND session='EE8C94AE80491F6C146737123FE8EA6D' -- 10:31:13.361 SQL [5685]: Found rows: 0 -- 10:31:13.361 SQL [5685]: Found rows: 0 -- 10:31:13.361 FLOG_MAX [5685]: insert_db_record() -- 10:31:13.361 SQL [5685]: pgsql_exec() -- 10:31:13.361 SQL [5685]: About to run query: -- 10:31:13.361 SQL [5685]: INSERT INTO members_session (member_id,session) VALUES ('5','EE8C94AE80491F6C146737123FE8EA6D') -- 10:31:13.363 SQL [5685]: PQcmdTuples: 1 -- 10:31:13.363 SQL [5685]: Affected rows: 1 -- 10:31:13.363 FLOG_MAX [5685]: SELECT currval('members_session_id_seq') -- 10:31:13.363 SQL [5685]: pgsql_query() -- 10:31:13.363 SQL [5685]: About to run query: -- 10:31:13.363 SQL [5685]: SELECT currval('members_session_id_seq') -- 10:31:13.363 SQL [5685]: Found rows: 1 -- 10:31:13.363 INFO [5685]: CreateDefaultPage() -- 10:31:13.363 FLOG_MAX [5685]: long load_db_record( CVars &rec, const char * query, ... ) -- 10:31:13.363 SQL [5685]: pgsql_query() -- 10:31:13.363 SQL [5685]: About to run query: -- 10:31:13.363 SQL [5685]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 10:31:13.364 SQL [5685]: Found rows: 1 -- 10:31:13.364 FLOG_MAX [5685]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 10:31:13.364 SQL [5685]: pgsql_query() -- 10:31:13.364 SQL [5685]: About to run query: -- 10:31:13.364 SQL [5685]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 10:31:13.364 SQL [5685]: Found rows: 1 -- 10:31:13.364 INFO [5685]: /CreateDefaultPage() -- 10:31:13.364 INFO [5685]: /LoginCoreGradeAccount() -- 10:31:13.364 INFO [5685]: RET: added=2020-02-05 06:47:23.982154 -- 10:31:13.364 INFO [5685]: RET: email=ameye+11@chiefsoft.com -- 10:31:13.364 INFO [5685]: RET: firstname=Olu -- 10:31:13.364 INFO [5685]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 10:31:13.364 INFO [5685]: RET: id=5 -- 10:31:13.364 INFO [5685]: RET: last_login= -- 10:31:13.364 INFO [5685]: RET: lastname=Amey -- 10:31:13.364 INFO [5685]: RET: loc=192.168.1.13 -- 10:31:13.364 INFO [5685]: RET: member_id=5 -- 10:31:13.364 INFO [5685]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 10:31:13.364 INFO [5685]: RET: phone= -- 10:31:13.364 INFO [5685]: RET: pid= -- 10:31:13.364 INFO [5685]: RET: result=YES I GET TO BACK END -- 10:31:13.364 INFO [5685]: RET: sessionid=EE8C94AE80491F6C146737123FE8EA6D -- 10:31:13.364 INFO [5685]: RET: status=1 -- 10:31:13.364 INFO [5685]: RET: stauts=OK -- 10:31:13.364 INFO [5685]: RET: username=ameye+11@chiefsoft.com -- 10:31:13.364 INFO [5685]: RET: verified= -- 10:31:13.366 INFO [5685]: COREGRADE is stopping... -- 10:31:13.366 DEBUG [5685]: Closing database connection -- 10:31:13.366 SQL [5685]: pgsql_close() -- 10:31:13.248 DEBUG [5685]: Database connection successful -- 10:31:13.248 INFO [5685]: _SERVER found -- 10:31:13.248 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 10:31:13.248 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 10:31:13.248 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=dqab6hqqkhfgm65b5kv049r3i8q6f1pb; _gid=GA1.2.2044091736.1586960731 -- 10:31:13.248 INFO [5685]: QUERY_STRING = /auth -- 10:31:13.248 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:31:13.366 INFO [5685]: COREGRADE is stopping... -- 10:31:13.366 DEBUG [5685]: Closing database connection -- 10:31:13.366 SQL [5685]: pgsql_close() -- 10:31:13.395 INFO [5685]: COREGRADE is starting... -- 10:31:13.395 INFO [5685]: Version from config: 1.0 -- 10:31:13.395 DEBUG [5685]: Connecting to database... -- 10:31:13.395 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:31:13.395 SQL [5685]: pgsql_db_connect() -- 10:31:13.399 DEBUG [5685]: Database connection successful -- 10:31:13.399 INFO [5685]: _SERVER found -- 10:31:13.399 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 10:31:13.399 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 10:31:13.399 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=7etau5bkm58hen9332h3aiq5tsfv5ni6; _gid=GA1.2.2044091736.1586960731 -- 10:31:13.399 INFO [5685]: QUERY_STRING = /member/index -- 10:31:13.399 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:31:13.440 INFO [5685]: COREGRADE is stopping... -- 10:31:13.440 DEBUG [5685]: Closing database connection -- 10:31:13.440 SQL [5685]: pgsql_close() -- 10:31:13.645 INFO [5685]: COREGRADE is starting... -- 10:31:13.645 INFO [5685]: Version from config: 1.0 -- 10:31:13.645 DEBUG [5685]: Connecting to database... -- 10:31:13.645 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:31:13.645 SQL [5685]: pgsql_db_connect() -- 10:31:13.650 DEBUG [5685]: Database connection successful -- 10:31:13.650 INFO [5685]: _SERVER found -- 10:31:13.650 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 10:31:13.650 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 10:31:13.650 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=7etau5bkm58hen9332h3aiq5tsfv5ni6; _gid=GA1.2.2044091736.1586960731 -- 10:31:13.650 INFO [5685]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:31:13.650 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:31:13.661 INFO [5685]: COREGRADE is stopping... -- 10:31:13.661 DEBUG [5685]: Closing database connection -- 10:31:13.661 SQL [5685]: pgsql_close() -- 10:31:13.771 INFO [5685]: COREGRADE is starting... -- 10:31:13.771 INFO [5685]: Version from config: 1.0 -- 10:31:13.771 DEBUG [5685]: Connecting to database... -- 10:31:13.771 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:31:13.771 SQL [5685]: pgsql_db_connect() -- 10:31:13.775 DEBUG [5685]: Database connection successful -- 10:31:13.775 INFO [5685]: _SERVER found -- 10:31:13.775 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 10:31:13.775 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 10:31:13.775 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=7etau5bkm58hen9332h3aiq5tsfv5ni6; _gid=GA1.2.2044091736.1586960731 -- 10:31:13.775 INFO [5685]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 10:31:13.775 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:31:13.786 INFO [5685]: COREGRADE is stopping... -- 10:31:13.786 DEBUG [5685]: Closing database connection -- 10:31:13.786 SQL [5685]: pgsql_close() -- 10:31:15.507 INFO [5685]: COREGRADE is starting... -- 10:31:15.508 INFO [5685]: Version from config: 1.0 -- 10:31:15.508 DEBUG [5685]: Connecting to database... -- 10:31:15.508 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:31:15.508 SQL [5685]: pgsql_db_connect() -- 10:31:15.512 DEBUG [5685]: Database connection successful -- 10:31:15.512 INFO [5685]: _SERVER found -- 10:31:15.512 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 10:31:15.512 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 10:31:15.512 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=7etau5bkm58hen9332h3aiq5tsfv5ni6; _gid=GA1.2.2044091736.1586960731 -- 10:31:15.512 INFO [5685]: QUERY_STRING = /member/classroom -- 10:31:15.512 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:31:15.554 INFO [5685]: COREGRADE is stopping... -- 10:31:15.554 DEBUG [5685]: Closing database connection -- 10:31:15.554 SQL [5685]: pgsql_close() -- 10:31:15.857 INFO [5685]: COREGRADE is starting... -- 10:31:15.857 INFO [5685]: Version from config: 1.0 -- 10:31:15.857 DEBUG [5685]: Connecting to database... -- 10:31:15.857 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:31:15.857 SQL [5685]: pgsql_db_connect() -- 10:31:15.858 INFO [4834]: COREGRADE is starting... -- 10:31:15.858 INFO [4834]: Version from config: 1.0 -- 10:31:15.858 DEBUG [4834]: Connecting to database... -- 10:31:15.858 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:31:15.858 SQL [4834]: pgsql_db_connect() -- 10:31:15.861 DEBUG [5685]: Database connection successful -- 10:31:15.861 INFO [5685]: _SERVER found -- 10:31:15.861 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 10:31:15.861 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 10:31:15.861 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=7etau5bkm58hen9332h3aiq5tsfv5ni6; _gid=GA1.2.2044091736.1586960731 -- 10:31:15.861 INFO [5685]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:31:15.861 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:31:15.873 INFO [5685]: COREGRADE is stopping... -- 10:31:15.873 DEBUG [5685]: Closing database connection -- 10:31:15.873 SQL [5685]: pgsql_close() -- 10:31:15.862 DEBUG [4834]: Database connection successful -- 10:31:15.862 INFO [4834]: _SERVER found -- 10:31:15.862 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 10:31:15.862 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 10:31:15.862 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=7etau5bkm58hen9332h3aiq5tsfv5ni6; _gid=GA1.2.2044091736.1586960731 -- 10:31:15.862 INFO [4834]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 10:31:15.862 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:31:15.874 INFO [4834]: COREGRADE is stopping... -- 10:31:15.874 DEBUG [4834]: Closing database connection -- 10:31:15.874 SQL [4834]: pgsql_close() -- 10:31:15.923 INFO [5685]: COREGRADE is starting... -- 10:31:15.924 INFO [5685]: Version from config: 1.0 -- 10:31:15.924 DEBUG [5685]: Connecting to database... -- 10:31:15.924 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:31:15.924 SQL [5685]: pgsql_db_connect() -- 10:31:15.928 DEBUG [5685]: Database connection successful -- 10:31:15.928 INFO [5685]: _SERVER found -- 10:31:15.928 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 10:31:15.928 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 10:31:15.928 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=7etau5bkm58hen9332h3aiq5tsfv5ni6; _gid=GA1.2.2044091736.1586960731 -- 10:31:15.928 INFO [5685]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 10:31:15.928 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:31:15.939 INFO [5685]: COREGRADE is stopping... -- 10:31:15.939 DEBUG [5685]: Closing database connection -- 10:31:15.940 SQL [5685]: pgsql_close() -- 10:42:20.936 INFO [4195]: COREGRADE is starting... -- 10:42:20.937 INFO [4195]: Version from config: 1.0 -- 10:42:20.937 DEBUG [4195]: Connecting to database... -- 10:42:20.937 DEBUG [4195]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:42:20.937 SQL [4195]: pgsql_db_connect() -- 10:42:20.941 DEBUG [4195]: Database connection successful -- 10:42:20.941 INFO [4195]: _SERVER found -- 10:42:20.941 INFO [4195]: REMOTE_ADDR = 10.0.0.15 -- 10:42:20.941 INFO [4195]: SERVER_NAME = oameye.works.coregrade.com -- 10:42:20.941 INFO [4195]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=7etau5bkm58hen9332h3aiq5tsfv5ni6; _gid=GA1.2.2044091736.1586960731 -- 10:42:20.941 INFO [4195]: QUERY_STRING = /member/classroom -- 10:42:20.941 INFO [4195]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:42:20.986 INFO [4195]: COREGRADE is stopping... -- 10:42:20.986 DEBUG [4195]: Closing database connection -- 10:42:20.986 SQL [4195]: pgsql_close() -- 10:42:21.746 INFO [5682]: COREGRADE is starting... -- 10:42:21.746 INFO [5686]: COREGRADE is starting... -- 10:42:21.746 INFO [5682]: Version from config: 1.0 -- 10:42:21.746 DEBUG [5682]: Connecting to database... -- 10:42:21.746 INFO [5686]: Version from config: 1.0 -- 10:42:21.746 DEBUG [5686]: Connecting to database... -- 10:42:21.746 DEBUG [5682]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:42:21.746 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:42:21.746 SQL [5682]: pgsql_db_connect() -- 10:42:21.746 SQL [5686]: pgsql_db_connect() -- 10:42:21.751 DEBUG [5682]: Database connection successful -- 10:42:21.751 INFO [5682]: _SERVER found -- 10:42:21.751 INFO [5682]: REMOTE_ADDR = 10.0.0.15 -- 10:42:21.751 INFO [5682]: SERVER_NAME = oameye.works.coregrade.com -- 10:42:21.751 INFO [5682]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=cts5qesvmac881e6tl7dvtmqeu52gb1p; _gid=GA1.2.2044091736.1586960731 -- 10:42:21.751 INFO [5682]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 10:42:21.751 INFO [5682]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:42:21.762 INFO [5682]: COREGRADE is stopping... -- 10:42:21.750 DEBUG [5686]: Database connection successful -- 10:42:21.750 INFO [5686]: _SERVER found -- 10:42:21.750 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 10:42:21.750 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 10:42:21.750 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=cts5qesvmac881e6tl7dvtmqeu52gb1p; _gid=GA1.2.2044091736.1586960731 -- 10:42:21.750 INFO [5686]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:42:21.750 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:42:21.762 INFO [5686]: COREGRADE is stopping... -- 10:42:21.762 DEBUG [5682]: Closing database connection -- 10:42:21.762 DEBUG [5686]: Closing database connection -- 10:42:21.762 SQL [5682]: pgsql_close() -- 10:42:21.762 SQL [5686]: pgsql_close() -- 10:42:21.801 INFO [4195]: COREGRADE is starting... -- 10:42:21.802 INFO [4195]: Version from config: 1.0 -- 10:42:21.802 DEBUG [4195]: Connecting to database... -- 10:42:21.802 DEBUG [4195]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:42:21.802 SQL [4195]: pgsql_db_connect() -- 10:42:21.806 DEBUG [4195]: Database connection successful -- 10:42:21.806 INFO [4195]: _SERVER found -- 10:42:21.806 INFO [4195]: REMOTE_ADDR = 10.0.0.15 -- 10:42:21.806 INFO [4195]: SERVER_NAME = oameye.works.coregrade.com -- 10:42:21.806 INFO [4195]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=cts5qesvmac881e6tl7dvtmqeu52gb1p; _gid=GA1.2.2044091736.1586960731 -- 10:42:21.806 INFO [4195]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 10:42:21.806 INFO [4195]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:42:21.817 INFO [4195]: COREGRADE is stopping... -- 10:42:21.817 DEBUG [4195]: Closing database connection -- 10:42:21.817 SQL [4195]: pgsql_close() -- 10:42:25.069 INFO [4193]: COREGRADE is starting... -- 10:42:25.069 INFO [4193]: Version from config: 1.0 -- 10:42:25.069 DEBUG [4193]: Connecting to database... -- 10:42:25.069 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:42:25.069 SQL [4193]: pgsql_db_connect() -- 10:42:25.073 DEBUG [4193]: Database connection successful -- 10:42:25.073 INFO [4193]: _SERVER found -- 10:42:25.073 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 10:42:25.073 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 10:42:25.073 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=cts5qesvmac881e6tl7dvtmqeu52gb1p; _gid=GA1.2.2044091736.1586960731 -- 10:42:25.073 INFO [4193]: QUERY_STRING = /member/classroom -- 10:42:25.073 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:42:25.121 INFO [4193]: COREGRADE is stopping... -- 10:42:25.121 DEBUG [4193]: Closing database connection -- 10:42:25.121 SQL [4193]: pgsql_close() -- 10:42:25.312 INFO [5686]: COREGRADE is starting... -- 10:42:25.312 INFO [5686]: Version from config: 1.0 -- 10:42:25.312 DEBUG [5686]: Connecting to database... -- 10:42:25.312 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:42:25.312 SQL [5686]: pgsql_db_connect() -- 10:42:25.315 INFO [5687]: COREGRADE is starting... -- 10:42:25.315 INFO [5687]: Version from config: 1.0 -- 10:42:25.315 DEBUG [5687]: Connecting to database... -- 10:42:25.315 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:42:25.315 SQL [5687]: pgsql_db_connect() -- 10:42:25.316 DEBUG [5686]: Database connection successful -- 10:42:25.316 INFO [5686]: _SERVER found -- 10:42:25.316 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 10:42:25.316 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 10:42:25.316 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=cts5qesvmac881e6tl7dvtmqeu52gb1p; _gid=GA1.2.2044091736.1586960731 -- 10:42:25.316 INFO [5686]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:42:25.316 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:42:25.328 INFO [5686]: COREGRADE is stopping... -- 10:42:25.328 DEBUG [5686]: Closing database connection -- 10:42:25.328 SQL [5686]: pgsql_close() -- 10:42:25.319 DEBUG [5687]: Database connection successful -- 10:42:25.319 INFO [5687]: _SERVER found -- 10:42:25.319 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 10:42:25.319 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 10:42:25.319 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=cts5qesvmac881e6tl7dvtmqeu52gb1p; _gid=GA1.2.2044091736.1586960731 -- 10:42:25.319 INFO [5687]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 10:42:25.319 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:42:25.331 INFO [5687]: COREGRADE is stopping... -- 10:42:25.331 DEBUG [5687]: Closing database connection -- 10:42:25.331 SQL [5687]: pgsql_close() -- 10:42:25.466 INFO [5687]: COREGRADE is starting... -- 10:42:25.467 INFO [5687]: Version from config: 1.0 -- 10:42:25.467 DEBUG [5687]: Connecting to database... -- 10:42:25.467 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:42:25.467 SQL [5687]: pgsql_db_connect() -- 10:42:25.471 DEBUG [5687]: Database connection successful -- 10:42:25.471 INFO [5687]: _SERVER found -- 10:42:25.471 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 10:42:25.471 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 10:42:25.471 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=cts5qesvmac881e6tl7dvtmqeu52gb1p; _gid=GA1.2.2044091736.1586960731 -- 10:42:25.471 INFO [5687]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 10:42:25.471 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:42:25.483 INFO [5687]: COREGRADE is stopping... -- 10:42:25.483 DEBUG [5687]: Closing database connection -- 10:42:25.483 SQL [5687]: pgsql_close() -- 10:42:28.343 INFO [4193]: COREGRADE is starting... -- 10:42:28.343 INFO [4193]: Version from config: 1.0 -- 10:42:28.343 DEBUG [4193]: Connecting to database... -- 10:42:28.343 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:42:28.343 SQL [4193]: pgsql_db_connect() -- 10:42:28.347 DEBUG [4193]: Database connection successful -- 10:42:28.347 INFO [4193]: _SERVER found -- 10:42:28.347 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 10:42:28.347 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 10:42:28.347 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=cts5qesvmac881e6tl7dvtmqeu52gb1p; _gid=GA1.2.2044091736.1586960731 -- 10:42:28.347 INFO [4193]: QUERY_STRING = /member/classroom -- 10:42:28.347 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:42:28.394 INFO [4193]: COREGRADE is stopping... -- 10:42:28.394 DEBUG [4193]: Closing database connection -- 10:42:28.394 SQL [4193]: pgsql_close() -- 10:42:28.603 INFO [4193]: COREGRADE is starting... -- 10:42:28.603 INFO [4193]: Version from config: 1.0 -- 10:42:28.603 DEBUG [4193]: Connecting to database... -- 10:42:28.603 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:42:28.603 SQL [4193]: pgsql_db_connect() -- 10:42:28.607 DEBUG [4193]: Database connection successful -- 10:42:28.607 INFO [4193]: _SERVER found -- 10:42:28.607 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 10:42:28.607 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 10:42:28.607 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=cts5qesvmac881e6tl7dvtmqeu52gb1p; _gid=GA1.2.2044091736.1586960731 -- 10:42:28.607 INFO [4193]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:42:28.607 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:42:28.618 INFO [4193]: COREGRADE is stopping... -- 10:42:28.618 DEBUG [4193]: Closing database connection -- 10:42:28.618 SQL [4193]: pgsql_close() -- 10:42:28.686 INFO [4193]: COREGRADE is starting... -- 10:42:28.687 INFO [4193]: Version from config: 1.0 -- 10:42:28.687 DEBUG [4193]: Connecting to database... -- 10:42:28.687 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:42:28.687 SQL [4193]: pgsql_db_connect() -- 10:42:28.691 DEBUG [4193]: Database connection successful -- 10:42:28.691 INFO [4193]: _SERVER found -- 10:42:28.691 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 10:42:28.691 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 10:42:28.691 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=cts5qesvmac881e6tl7dvtmqeu52gb1p; _gid=GA1.2.2044091736.1586960731 -- 10:42:28.691 INFO [4193]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 10:42:28.691 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:42:28.702 INFO [4193]: COREGRADE is stopping... -- 10:42:28.702 DEBUG [4193]: Closing database connection -- 10:42:28.702 SQL [4193]: pgsql_close() -- 10:43:05.077 INFO [4834]: COREGRADE is starting... -- 10:43:05.077 INFO [4834]: Version from config: 1.0 -- 10:43:05.077 DEBUG [4834]: Connecting to database... -- 10:43:05.077 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:43:05.077 SQL [4834]: pgsql_db_connect() -- 10:43:05.081 DEBUG [4834]: Database connection successful -- 10:43:05.081 INFO [4834]: _SERVER found -- 10:43:05.081 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 10:43:05.081 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 10:43:05.081 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=cts5qesvmac881e6tl7dvtmqeu52gb1p; _gid=GA1.2.2044091736.1586960731 -- 10:43:05.081 INFO [4834]: QUERY_STRING = /member/classroom -- 10:43:05.081 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:43:05.128 INFO [4834]: COREGRADE is stopping... -- 10:43:05.128 DEBUG [4834]: Closing database connection -- 10:43:05.128 SQL [4834]: pgsql_close() -- 10:43:05.660 INFO [4251]: COREGRADE is starting... -- 10:43:05.660 INFO [4251]: Version from config: 1.0 -- 10:43:05.660 DEBUG [4251]: Connecting to database... -- 10:43:05.660 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:43:05.660 SQL [4251]: pgsql_db_connect() -- 10:43:05.664 DEBUG [4251]: Database connection successful -- 10:43:05.664 INFO [4251]: _SERVER found -- 10:43:05.664 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 10:43:05.664 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 10:43:05.664 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=cts5qesvmac881e6tl7dvtmqeu52gb1p; _gid=GA1.2.2044091736.1586960731 -- 10:43:05.664 INFO [4251]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:43:05.664 INFO [4251]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:43:05.677 INFO [4251]: COREGRADE is stopping... -- 10:43:05.677 DEBUG [4251]: Closing database connection -- 10:43:05.677 SQL [4251]: pgsql_close() -- 10:44:05.439 INFO [5686]: COREGRADE is starting... -- 10:44:05.440 INFO [5686]: Version from config: 1.0 -- 10:44:05.440 DEBUG [5686]: Connecting to database... -- 10:44:05.440 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:44:05.440 SQL [5686]: pgsql_db_connect() -- 10:44:05.444 DEBUG [5686]: Database connection successful -- 10:44:05.444 INFO [5686]: _SERVER found -- 10:44:05.444 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 10:44:05.444 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 10:44:05.444 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=cts5qesvmac881e6tl7dvtmqeu52gb1p; _gid=GA1.2.2044091736.1586960731 -- 10:44:05.444 INFO [5686]: QUERY_STRING = /member/classroom -- 10:44:05.444 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:44:05.486 INFO [5686]: COREGRADE is stopping... -- 10:44:05.486 DEBUG [5686]: Closing database connection -- 10:44:05.486 SQL [5686]: pgsql_close() -- 10:44:06.011 INFO [5687]: COREGRADE is starting... -- 10:44:06.012 INFO [5687]: Version from config: 1.0 -- 10:44:06.012 DEBUG [5687]: Connecting to database... -- 10:44:06.012 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:44:06.012 SQL [5687]: pgsql_db_connect() -- 10:44:06.016 DEBUG [5687]: Database connection successful -- 10:44:06.016 INFO [5687]: _SERVER found -- 10:44:06.016 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 10:44:06.016 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 10:44:06.016 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=cts5qesvmac881e6tl7dvtmqeu52gb1p; _gid=GA1.2.2044091736.1586960731 -- 10:44:06.016 INFO [5687]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:44:06.016 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:44:06.027 INFO [5687]: COREGRADE is stopping... -- 10:44:06.027 DEBUG [5687]: Closing database connection -- 10:44:06.028 SQL [5687]: pgsql_close() -- 10:44:06.060 INFO [6485]: COREGRADE is starting... -- 10:44:06.060 INFO [6485]: Version from config: 1.0 -- 10:44:06.060 DEBUG [6485]: Connecting to database... -- 10:44:06.060 DEBUG [6485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:44:06.060 SQL [6485]: pgsql_db_connect() -- 10:44:06.064 DEBUG [6485]: Database connection successful -- 10:44:06.064 INFO [6485]: _SERVER found -- 10:44:06.064 INFO [6485]: REMOTE_ADDR = 10.0.0.15 -- 10:44:06.064 INFO [6485]: SERVER_NAME = oameye.works.coregrade.com -- 10:44:06.064 INFO [6485]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=cts5qesvmac881e6tl7dvtmqeu52gb1p; _gid=GA1.2.2044091736.1586960731 -- 10:44:06.064 INFO [6485]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 10:44:06.064 INFO [6485]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:44:06.079 INFO [6485]: COREGRADE is stopping... -- 10:44:06.079 DEBUG [6485]: Closing database connection -- 10:44:06.079 SQL [6485]: pgsql_close() -- 10:44:06.180 INFO [6485]: COREGRADE is starting... -- 10:44:06.181 INFO [6485]: Version from config: 1.0 -- 10:44:06.181 DEBUG [6485]: Connecting to database... -- 10:44:06.181 DEBUG [6485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:44:06.181 SQL [6485]: pgsql_db_connect() -- 10:44:06.185 DEBUG [6485]: Database connection successful -- 10:44:06.185 INFO [6485]: _SERVER found -- 10:44:06.185 INFO [6485]: REMOTE_ADDR = 10.0.0.15 -- 10:44:06.185 INFO [6485]: SERVER_NAME = oameye.works.coregrade.com -- 10:44:06.185 INFO [6485]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=cts5qesvmac881e6tl7dvtmqeu52gb1p; _gid=GA1.2.2044091736.1586960731 -- 10:44:06.185 INFO [6485]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 10:44:06.185 INFO [6485]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:44:06.197 INFO [6485]: COREGRADE is stopping... -- 10:44:06.197 DEBUG [6485]: Closing database connection -- 10:44:06.197 SQL [6485]: pgsql_close() -- 10:45:12.329 INFO [4834]: COREGRADE is starting... -- 10:45:12.330 INFO [4834]: Version from config: 1.0 -- 10:45:12.330 DEBUG [4834]: Connecting to database... -- 10:45:12.330 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:45:12.330 SQL [4834]: pgsql_db_connect() -- 10:45:12.334 DEBUG [4834]: Database connection successful -- 10:45:12.334 INFO [4834]: _SERVER found -- 10:45:12.334 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 10:45:12.334 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 10:45:12.334 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=cts5qesvmac881e6tl7dvtmqeu52gb1p; _gid=GA1.2.2044091736.1586960731 -- 10:45:12.334 INFO [4834]: QUERY_STRING = /member/classroom -- 10:45:12.334 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:45:12.377 INFO [4834]: COREGRADE is stopping... -- 10:45:12.377 DEBUG [4834]: Closing database connection -- 10:45:12.377 SQL [4834]: pgsql_close() -- 10:45:12.917 INFO [5682]: COREGRADE is starting... -- 10:45:12.917 INFO [5682]: Version from config: 1.0 -- 10:45:12.917 DEBUG [5682]: Connecting to database... -- 10:45:12.917 DEBUG [5682]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:45:12.917 SQL [5682]: pgsql_db_connect() -- 10:45:12.922 DEBUG [5682]: Database connection successful -- 10:45:12.922 INFO [5682]: _SERVER found -- 10:45:12.922 INFO [5682]: REMOTE_ADDR = 10.0.0.15 -- 10:45:12.922 INFO [5682]: SERVER_NAME = oameye.works.coregrade.com -- 10:45:12.922 INFO [5682]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=cts5qesvmac881e6tl7dvtmqeu52gb1p; _gid=GA1.2.2044091736.1586960731 -- 10:45:12.922 INFO [5682]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:45:12.922 INFO [5682]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:45:12.933 INFO [5682]: COREGRADE is stopping... -- 10:45:12.933 DEBUG [5682]: Closing database connection -- 10:45:12.933 SQL [5682]: pgsql_close() -- 10:45:12.971 INFO [4834]: COREGRADE is starting... -- 10:45:12.971 INFO [4834]: Version from config: 1.0 -- 10:45:12.971 DEBUG [4834]: Connecting to database... -- 10:45:12.971 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:45:12.971 SQL [4834]: pgsql_db_connect() -- 10:45:12.975 DEBUG [4834]: Database connection successful -- 10:45:12.975 INFO [4834]: _SERVER found -- 10:45:12.975 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 10:45:12.975 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 10:45:12.975 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=cts5qesvmac881e6tl7dvtmqeu52gb1p; _gid=GA1.2.2044091736.1586960731 -- 10:45:12.975 INFO [4834]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 10:45:12.975 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:45:12.987 INFO [4834]: COREGRADE is stopping... -- 10:45:12.987 DEBUG [4834]: Closing database connection -- 10:45:12.987 SQL [4834]: pgsql_close() -- 10:46:05.221 INFO [5697]: COREGRADE is starting... -- 10:46:05.221 INFO [5697]: Version from config: 1.0 -- 10:46:05.221 DEBUG [5697]: Connecting to database... -- 10:46:05.221 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:46:05.221 SQL [5697]: pgsql_db_connect() -- 10:46:05.225 DEBUG [5697]: Database connection successful -- 10:46:05.225 INFO [5697]: _SERVER found -- 10:46:05.225 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 10:46:05.225 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 10:46:05.225 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=cts5qesvmac881e6tl7dvtmqeu52gb1p; _gid=GA1.2.2044091736.1586960731 -- 10:46:05.225 INFO [5697]: QUERY_STRING = /member/classroom -- 10:46:05.225 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:46:05.269 INFO [5697]: COREGRADE is stopping... -- 10:46:05.269 DEBUG [5697]: Closing database connection -- 10:46:05.269 SQL [5697]: pgsql_close() -- 10:46:05.817 INFO [5697]: COREGRADE is starting... -- 10:46:05.817 INFO [5697]: Version from config: 1.0 -- 10:46:05.817 DEBUG [5697]: Connecting to database... -- 10:46:05.817 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:46:05.817 SQL [5697]: pgsql_db_connect() -- 10:46:05.821 DEBUG [5697]: Database connection successful -- 10:46:05.821 INFO [5697]: _SERVER found -- 10:46:05.821 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 10:46:05.821 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 10:46:05.821 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=cts5qesvmac881e6tl7dvtmqeu52gb1p; _gid=GA1.2.2044091736.1586960731 -- 10:46:05.821 INFO [5697]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:46:05.821 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:46:05.833 INFO [5697]: COREGRADE is stopping... -- 10:46:05.833 DEBUG [5697]: Closing database connection -- 10:46:05.833 SQL [5697]: pgsql_close() -- 10:46:05.907 INFO [5697]: COREGRADE is starting... -- 10:46:05.907 INFO [5697]: Version from config: 1.0 -- 10:46:05.907 DEBUG [5697]: Connecting to database... -- 10:46:05.907 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:46:05.907 SQL [5697]: pgsql_db_connect() -- 10:46:05.911 DEBUG [5697]: Database connection successful -- 10:46:05.911 INFO [5697]: _SERVER found -- 10:46:05.911 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 10:46:05.911 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 10:46:05.911 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=cts5qesvmac881e6tl7dvtmqeu52gb1p; _gid=GA1.2.2044091736.1586960731 -- 10:46:05.911 INFO [5697]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 10:46:05.911 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:46:05.922 INFO [5697]: COREGRADE is stopping... -- 10:46:05.922 DEBUG [5697]: Closing database connection -- 10:46:05.922 SQL [5697]: pgsql_close() -- 10:47:01.201 INFO [4251]: COREGRADE is starting... -- 10:47:01.202 INFO [4251]: Version from config: 1.0 -- 10:47:01.202 DEBUG [4251]: Connecting to database... -- 10:47:01.202 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:47:01.202 SQL [4251]: pgsql_db_connect() -- 10:47:01.206 DEBUG [4251]: Database connection successful -- 10:47:01.206 INFO [4251]: _SERVER found -- 10:47:01.206 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 10:47:01.206 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 10:47:01.206 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=cts5qesvmac881e6tl7dvtmqeu52gb1p; _gid=GA1.2.2044091736.1586960731 -- 10:47:01.206 INFO [4251]: QUERY_STRING = /member/classroom -- 10:47:01.206 INFO [4251]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:47:01.249 INFO [4251]: COREGRADE is stopping... -- 10:47:01.249 DEBUG [4251]: Closing database connection -- 10:47:01.249 SQL [4251]: pgsql_close() -- 10:47:01.720 INFO [5682]: COREGRADE is starting... -- 10:47:01.720 INFO [5682]: Version from config: 1.0 -- 10:47:01.720 DEBUG [5682]: Connecting to database... -- 10:47:01.720 DEBUG [5682]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:47:01.720 SQL [5682]: pgsql_db_connect() -- 10:47:01.724 DEBUG [5682]: Database connection successful -- 10:47:01.724 INFO [5682]: _SERVER found -- 10:47:01.724 INFO [5682]: REMOTE_ADDR = 10.0.0.15 -- 10:47:01.724 INFO [5682]: SERVER_NAME = oameye.works.coregrade.com -- 10:47:01.724 INFO [5682]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=cts5qesvmac881e6tl7dvtmqeu52gb1p; _gid=GA1.2.2044091736.1586960731 -- 10:47:01.724 INFO [5682]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:47:01.724 INFO [5682]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:47:01.736 INFO [5682]: COREGRADE is stopping... -- 10:47:01.736 DEBUG [5682]: Closing database connection -- 10:47:01.736 SQL [5682]: pgsql_close() -- 10:47:01.799 INFO [4251]: COREGRADE is starting... -- 10:47:01.799 INFO [4251]: Version from config: 1.0 -- 10:47:01.799 DEBUG [4251]: Connecting to database... -- 10:47:01.799 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:47:01.799 SQL [4251]: pgsql_db_connect() -- 10:47:01.803 DEBUG [4251]: Database connection successful -- 10:47:01.803 INFO [4251]: _SERVER found -- 10:47:01.803 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 10:47:01.803 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 10:47:01.803 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=cts5qesvmac881e6tl7dvtmqeu52gb1p; _gid=GA1.2.2044091736.1586960731 -- 10:47:01.803 INFO [4251]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 10:47:01.803 INFO [4251]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:47:01.815 INFO [4251]: COREGRADE is stopping... -- 10:47:01.815 DEBUG [4251]: Closing database connection -- 10:47:01.815 SQL [4251]: pgsql_close() -- 11:13:24.549 INFO [4193]: COREGRADE is starting... -- 11:13:24.550 INFO [4193]: Version from config: 1.0 -- 11:13:24.550 DEBUG [4193]: Connecting to database... -- 11:13:24.550 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:13:24.550 SQL [4193]: pgsql_db_connect() -- 11:13:24.555 DEBUG [4193]: Database connection successful -- 11:13:24.555 INFO [4193]: _SERVER found -- 11:13:24.555 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 11:13:24.555 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 11:13:24.555 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=cts5qesvmac881e6tl7dvtmqeu52gb1p; _gid=GA1.2.2044091736.1586960731 -- 11:13:24.555 INFO [4193]: QUERY_STRING = /member/configure -- 11:13:24.555 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:13:24.607 INFO [4193]: COREGRADE is stopping... -- 11:13:24.607 DEBUG [4193]: Closing database connection -- 11:13:24.607 SQL [4193]: pgsql_close() -- 11:13:24.959 INFO [5686]: COREGRADE is starting... -- 11:13:24.959 INFO [6485]: COREGRADE is starting... -- 11:13:24.959 INFO [6485]: Version from config: 1.0 -- 11:13:24.959 DEBUG [6485]: Connecting to database... -- 11:13:24.959 INFO [5686]: Version from config: 1.0 -- 11:13:24.959 DEBUG [5686]: Connecting to database... -- 11:13:24.959 DEBUG [6485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:13:24.959 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:13:24.959 SQL [6485]: pgsql_db_connect() -- 11:13:24.959 SQL [5686]: pgsql_db_connect() -- 11:13:24.964 DEBUG [5686]: Database connection successful -- 11:13:24.964 INFO [5686]: _SERVER found -- 11:13:24.964 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 11:13:24.964 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 11:13:24.964 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=80gq8ara6ti06philt6c8ur4skn54hat; _gid=GA1.2.2044091736.1586960731 -- 11:13:24.964 INFO [5686]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:13:24.964 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:13:24.977 INFO [5686]: COREGRADE is stopping... -- 11:13:24.964 DEBUG [6485]: Database connection successful -- 11:13:24.964 INFO [6485]: _SERVER found -- 11:13:24.964 INFO [6485]: REMOTE_ADDR = 10.0.0.15 -- 11:13:24.964 INFO [6485]: SERVER_NAME = oameye.works.coregrade.com -- 11:13:24.964 INFO [6485]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=80gq8ara6ti06philt6c8ur4skn54hat; _gid=GA1.2.2044091736.1586960731 -- 11:13:24.964 INFO [6485]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 11:13:24.964 INFO [6485]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:13:24.977 INFO [6485]: COREGRADE is stopping... -- 11:13:24.977 DEBUG [5686]: Closing database connection -- 11:13:24.977 DEBUG [6485]: Closing database connection -- 11:13:24.977 SQL [5686]: pgsql_close() -- 11:13:24.977 SQL [6485]: pgsql_close() -- 11:13:25.059 INFO [5686]: COREGRADE is starting... -- 11:13:25.060 INFO [5686]: Version from config: 1.0 -- 11:13:25.060 DEBUG [5686]: Connecting to database... -- 11:13:25.060 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:13:25.060 SQL [5686]: pgsql_db_connect() -- 11:13:25.064 DEBUG [5686]: Database connection successful -- 11:13:25.064 INFO [5686]: _SERVER found -- 11:13:25.064 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 11:13:25.064 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 11:13:25.064 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=80gq8ara6ti06philt6c8ur4skn54hat; _gid=GA1.2.2044091736.1586960731 -- 11:13:25.064 INFO [5686]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 11:13:25.064 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:13:25.076 INFO [5686]: COREGRADE is stopping... -- 11:13:25.076 DEBUG [5686]: Closing database connection -- 11:13:25.076 SQL [5686]: pgsql_close() -- 11:13:25.998 INFO [5685]: COREGRADE is starting... -- 11:13:25.998 INFO [5685]: Version from config: 1.0 -- 11:13:25.998 DEBUG [5685]: Connecting to database... -- 11:13:25.998 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:13:25.998 SQL [5685]: pgsql_db_connect() -- 11:13:26.003 DEBUG [5685]: Database connection successful -- 11:13:26.003 INFO [5685]: _SERVER found -- 11:13:26.003 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 11:13:26.003 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 11:13:26.003 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=80gq8ara6ti06philt6c8ur4skn54hat; _gid=GA1.2.2044091736.1586960731 -- 11:13:26.003 INFO [5685]: QUERY_STRING = /member -- 11:13:26.003 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:13:26.045 INFO [5685]: COREGRADE is stopping... -- 11:13:26.045 DEBUG [5685]: Closing database connection -- 11:13:26.045 SQL [5685]: pgsql_close() -- 11:13:26.280 INFO [5686]: COREGRADE is starting... -- 11:13:26.280 INFO [5686]: Version from config: 1.0 -- 11:13:26.280 DEBUG [5686]: Connecting to database... -- 11:13:26.280 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:13:26.280 SQL [5686]: pgsql_db_connect() -- 11:13:26.285 DEBUG [5686]: Database connection successful -- 11:13:26.285 INFO [5686]: _SERVER found -- 11:13:26.285 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 11:13:26.285 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 11:13:26.285 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=80gq8ara6ti06philt6c8ur4skn54hat; _gid=GA1.2.2044091736.1586960731 -- 11:13:26.285 INFO [5686]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:13:26.285 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:13:26.296 INFO [5686]: COREGRADE is stopping... -- 11:13:26.296 DEBUG [5686]: Closing database connection -- 11:13:26.296 SQL [5686]: pgsql_close() -- 11:13:27.558 INFO [5685]: COREGRADE is starting... -- 11:13:27.558 INFO [5685]: Version from config: 1.0 -- 11:13:27.558 DEBUG [5685]: Connecting to database... -- 11:13:27.558 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:13:27.558 SQL [5685]: pgsql_db_connect() -- 11:13:27.563 DEBUG [5685]: Database connection successful -- 11:13:27.563 INFO [5685]: _SERVER found -- 11:13:27.563 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 11:13:27.563 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 11:13:27.563 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=80gq8ara6ti06philt6c8ur4skn54hat; _gid=GA1.2.2044091736.1586960731 -- 11:13:27.563 INFO [5685]: QUERY_STRING = /member/mycalendar -- 11:13:27.563 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:13:27.602 INFO [5685]: COREGRADE is stopping... -- 11:13:27.602 DEBUG [5685]: Closing database connection -- 11:13:27.602 SQL [5685]: pgsql_close() -- 11:13:27.814 INFO [5686]: COREGRADE is starting... -- 11:13:27.814 INFO [5686]: Version from config: 1.0 -- 11:13:27.814 DEBUG [5686]: Connecting to database... -- 11:13:27.814 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:13:27.814 SQL [5686]: pgsql_db_connect() -- 11:13:27.819 DEBUG [5686]: Database connection successful -- 11:13:27.819 INFO [5686]: _SERVER found -- 11:13:27.819 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 11:13:27.819 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 11:13:27.819 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=80gq8ara6ti06philt6c8ur4skn54hat; _gid=GA1.2.2044091736.1586960731 -- 11:13:27.819 INFO [5686]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:13:27.819 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:13:27.830 INFO [5686]: COREGRADE is stopping... -- 11:13:27.831 DEBUG [5686]: Closing database connection -- 11:13:27.831 SQL [5686]: pgsql_close() -- 11:13:29.680 INFO [5685]: COREGRADE is starting... -- 11:13:29.680 INFO [5685]: Version from config: 1.0 -- 11:13:29.680 DEBUG [5685]: Connecting to database... -- 11:13:29.680 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:13:29.680 SQL [5685]: pgsql_db_connect() -- 11:13:29.685 DEBUG [5685]: Database connection successful -- 11:13:29.685 INFO [5685]: _SERVER found -- 11:13:29.685 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 11:13:29.685 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 11:13:29.685 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=80gq8ara6ti06philt6c8ur4skn54hat; _gid=GA1.2.2044091736.1586960731 -- 11:13:29.685 INFO [5685]: QUERY_STRING = /member/classroom -- 11:13:29.685 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:13:29.728 INFO [5685]: COREGRADE is stopping... -- 11:13:29.728 DEBUG [5685]: Closing database connection -- 11:13:29.728 SQL [5685]: pgsql_close() -- 11:13:29.923 INFO [5686]: COREGRADE is starting... -- 11:13:29.924 INFO [5686]: Version from config: 1.0 -- 11:13:29.924 DEBUG [5686]: Connecting to database... -- 11:13:29.924 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:13:29.924 SQL [5686]: pgsql_db_connect() -- 11:13:29.928 DEBUG [5686]: Database connection successful -- 11:13:29.928 INFO [5686]: _SERVER found -- 11:13:29.928 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 11:13:29.928 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 11:13:29.928 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=80gq8ara6ti06philt6c8ur4skn54hat; _gid=GA1.2.2044091736.1586960731 -- 11:13:29.928 INFO [5686]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:13:29.928 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:13:29.940 INFO [5686]: COREGRADE is stopping... -- 11:13:29.940 DEBUG [5686]: Closing database connection -- 11:13:29.940 SQL [5686]: pgsql_close() -- 11:14:47.418 INFO [5697]: COREGRADE is starting... -- 11:14:47.418 INFO [5697]: Version from config: 1.0 -- 11:14:47.418 DEBUG [5697]: Connecting to database... -- 11:14:47.418 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:14:47.418 SQL [5697]: pgsql_db_connect() -- 11:14:47.423 DEBUG [5697]: Database connection successful -- 11:14:47.423 INFO [5697]: _SERVER found -- 11:14:47.423 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 11:14:47.423 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 11:14:47.423 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=80gq8ara6ti06philt6c8ur4skn54hat; _gid=GA1.2.2044091736.1586960731 -- 11:14:47.423 INFO [5697]: QUERY_STRING = /member/classroom -- 11:14:47.423 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:14:47.468 INFO [5697]: COREGRADE is stopping... -- 11:14:47.468 DEBUG [5697]: Closing database connection -- 11:14:47.468 SQL [5697]: pgsql_close() -- 11:14:47.962 INFO [4834]: COREGRADE is starting... -- 11:14:47.962 INFO [4834]: Version from config: 1.0 -- 11:14:47.962 DEBUG [4834]: Connecting to database... -- 11:14:47.962 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:14:47.962 SQL [4834]: pgsql_db_connect() -- 11:14:47.967 DEBUG [4834]: Database connection successful -- 11:14:47.967 INFO [4834]: _SERVER found -- 11:14:47.967 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 11:14:47.967 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 11:14:47.967 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=80gq8ara6ti06philt6c8ur4skn54hat; _gid=GA1.2.2044091736.1586960731 -- 11:14:47.967 INFO [4834]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:14:47.967 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:14:47.979 INFO [4834]: COREGRADE is stopping... -- 11:14:47.979 DEBUG [4834]: Closing database connection -- 11:14:47.979 SQL [4834]: pgsql_close() -- 11:27:46.936 INFO [4251]: COREGRADE is starting... -- 11:27:46.937 INFO [4251]: Version from config: 1.0 -- 11:27:46.937 DEBUG [4251]: Connecting to database... -- 11:27:46.937 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:27:46.937 SQL [4251]: pgsql_db_connect() -- 11:27:46.942 DEBUG [4251]: Database connection successful -- 11:27:46.942 INFO [4251]: _SERVER found -- 11:27:46.942 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 11:27:46.942 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 11:27:46.942 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=80gq8ara6ti06philt6c8ur4skn54hat; _gid=GA1.2.2044091736.1586960731 -- 11:27:46.942 INFO [4251]: QUERY_STRING = /member/classroom -- 11:27:46.942 INFO [4251]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:27:46.989 INFO [4251]: COREGRADE is stopping... -- 11:27:46.989 DEBUG [4251]: Closing database connection -- 11:27:46.989 SQL [4251]: pgsql_close() -- 11:27:47.527 INFO [5687]: COREGRADE is starting... -- 11:27:47.527 INFO [5687]: Version from config: 1.0 -- 11:27:47.527 DEBUG [5687]: Connecting to database... -- 11:27:47.527 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:27:47.527 SQL [5687]: pgsql_db_connect() -- 11:27:47.532 DEBUG [5687]: Database connection successful -- 11:27:47.532 INFO [5687]: _SERVER found -- 11:27:47.532 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 11:27:47.532 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 11:27:47.532 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 11:27:47.532 INFO [5687]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:27:47.532 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:27:47.546 INFO [5687]: COREGRADE is stopping... -- 11:27:47.546 DEBUG [5687]: Closing database connection -- 11:27:47.546 SQL [5687]: pgsql_close() -- 11:27:47.613 INFO [4251]: COREGRADE is starting... -- 11:27:47.614 INFO [4251]: Version from config: 1.0 -- 11:27:47.614 DEBUG [4251]: Connecting to database... -- 11:27:47.614 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:27:47.614 SQL [4251]: pgsql_db_connect() -- 11:27:47.619 DEBUG [4251]: Database connection successful -- 11:27:47.619 INFO [4251]: _SERVER found -- 11:27:47.619 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 11:27:47.619 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 11:27:47.619 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 11:27:47.619 INFO [4251]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 11:27:47.619 INFO [4251]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:27:47.630 INFO [4251]: COREGRADE is stopping... -- 11:27:47.630 DEBUG [4251]: Closing database connection -- 11:27:47.630 SQL [4251]: pgsql_close() -- 11:27:48.811 INFO [5687]: COREGRADE is starting... -- 11:27:48.811 INFO [5687]: Version from config: 1.0 -- 11:27:48.811 DEBUG [5687]: Connecting to database... -- 11:27:48.811 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:27:48.811 SQL [5687]: pgsql_db_connect() -- 11:27:48.816 DEBUG [5687]: Database connection successful -- 11:27:48.816 INFO [5687]: _SERVER found -- 11:27:48.816 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 11:27:48.816 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 11:27:48.816 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 11:27:48.816 INFO [5687]: QUERY_STRING = /member/viewRoom -- 11:27:48.816 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:27:48.849 INFO [5687]: COREGRADE is stopping... -- 11:27:48.849 DEBUG [5687]: Closing database connection -- 11:27:48.849 SQL [5687]: pgsql_close() -- 11:27:49.871 INFO [5687]: COREGRADE is starting... -- 11:27:49.871 INFO [5687]: Version from config: 1.0 -- 11:27:49.871 DEBUG [5687]: Connecting to database... -- 11:27:49.871 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:27:49.871 SQL [5687]: pgsql_db_connect() -- 11:27:49.876 DEBUG [5687]: Database connection successful -- 11:27:49.876 INFO [5687]: _SERVER found -- 11:27:49.876 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 11:27:49.876 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 11:27:49.876 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 11:27:49.876 INFO [5687]: QUERY_STRING = /member/viewRoom -- 11:27:49.876 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:27:49.908 INFO [5687]: COREGRADE is stopping... -- 11:27:49.908 DEBUG [5687]: Closing database connection -- 11:27:49.908 SQL [5687]: pgsql_close() -- 11:28:42.425 INFO [5697]: COREGRADE is starting... -- 11:28:42.426 INFO [5697]: Version from config: 1.0 -- 11:28:42.426 DEBUG [5697]: Connecting to database... -- 11:28:42.426 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:28:42.426 SQL [5697]: pgsql_db_connect() -- 11:28:42.431 DEBUG [5697]: Database connection successful -- 11:28:42.431 INFO [5697]: _SERVER found -- 11:28:42.431 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 11:28:42.431 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 11:28:42.431 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 11:28:42.431 INFO [5697]: QUERY_STRING = /member/classroom -- 11:28:42.431 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:28:42.475 INFO [5697]: COREGRADE is stopping... -- 11:28:42.475 DEBUG [5697]: Closing database connection -- 11:28:42.475 SQL [5697]: pgsql_close() -- 11:28:42.676 INFO [5697]: COREGRADE is starting... -- 11:28:42.677 INFO [5697]: Version from config: 1.0 -- 11:28:42.677 DEBUG [5697]: Connecting to database... -- 11:28:42.677 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:28:42.677 SQL [5697]: pgsql_db_connect() -- 11:28:42.681 DEBUG [5697]: Database connection successful -- 11:28:42.681 INFO [5697]: _SERVER found -- 11:28:42.681 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 11:28:42.681 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 11:28:42.681 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 11:28:42.681 INFO [5697]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:28:42.681 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:28:42.693 INFO [5697]: COREGRADE is stopping... -- 11:28:42.693 DEBUG [5697]: Closing database connection -- 11:28:42.693 SQL [5697]: pgsql_close() -- 11:28:42.828 INFO [5697]: COREGRADE is starting... -- 11:28:42.828 INFO [5697]: Version from config: 1.0 -- 11:28:42.828 DEBUG [5697]: Connecting to database... -- 11:28:42.828 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:28:42.828 SQL [5697]: pgsql_db_connect() -- 11:28:42.833 DEBUG [5697]: Database connection successful -- 11:28:42.833 INFO [5697]: _SERVER found -- 11:28:42.833 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 11:28:42.833 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 11:28:42.833 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 11:28:42.833 INFO [5697]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 11:28:42.833 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:28:42.844 INFO [5697]: COREGRADE is stopping... -- 11:28:42.844 DEBUG [5697]: Closing database connection -- 11:28:42.844 SQL [5697]: pgsql_close() -- 11:28:43.587 INFO [5697]: COREGRADE is starting... -- 11:28:43.588 INFO [5697]: Version from config: 1.0 -- 11:28:43.588 DEBUG [5697]: Connecting to database... -- 11:28:43.588 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:28:43.588 SQL [5697]: pgsql_db_connect() -- 11:28:43.592 DEBUG [5697]: Database connection successful -- 11:28:43.592 INFO [5697]: _SERVER found -- 11:28:43.592 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 11:28:43.592 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 11:28:43.592 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 11:28:43.592 INFO [5697]: QUERY_STRING = /member/viewRoom -- 11:28:43.592 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:28:43.624 INFO [5697]: COREGRADE is stopping... -- 11:28:43.624 DEBUG [5697]: Closing database connection -- 11:28:43.624 SQL [5697]: pgsql_close() -- 11:28:45.093 INFO [5697]: COREGRADE is starting... -- 11:28:45.093 INFO [5697]: Version from config: 1.0 -- 11:28:45.093 DEBUG [5697]: Connecting to database... -- 11:28:45.093 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:28:45.093 SQL [5697]: pgsql_db_connect() -- 11:28:45.098 DEBUG [5697]: Database connection successful -- 11:28:45.098 INFO [5697]: _SERVER found -- 11:28:45.098 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 11:28:45.098 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 11:28:45.098 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 11:28:45.098 INFO [5697]: QUERY_STRING = /member/viewRoom -- 11:28:45.098 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:28:45.130 INFO [5697]: COREGRADE is stopping... -- 11:28:45.130 DEBUG [5697]: Closing database connection -- 11:28:45.130 SQL [5697]: pgsql_close() -- 11:28:45.600 INFO [5697]: COREGRADE is starting... -- 11:28:45.600 INFO [5697]: Version from config: 1.0 -- 11:28:45.600 DEBUG [5697]: Connecting to database... -- 11:28:45.600 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:28:45.600 SQL [5697]: pgsql_db_connect() -- 11:28:45.605 DEBUG [5697]: Database connection successful -- 11:28:45.605 INFO [5697]: _SERVER found -- 11:28:45.605 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 11:28:45.605 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 11:28:45.605 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 11:28:45.605 INFO [5697]: QUERY_STRING = /member/viewRoom -- 11:28:45.605 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:28:45.637 INFO [5697]: COREGRADE is stopping... -- 11:28:45.637 DEBUG [5697]: Closing database connection -- 11:28:45.637 SQL [5697]: pgsql_close() -- 11:28:46.119 INFO [5697]: COREGRADE is starting... -- 11:28:46.120 INFO [5697]: Version from config: 1.0 -- 11:28:46.120 DEBUG [5697]: Connecting to database... -- 11:28:46.120 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:28:46.120 SQL [5697]: pgsql_db_connect() -- 11:28:46.124 DEBUG [5697]: Database connection successful -- 11:28:46.124 INFO [5697]: _SERVER found -- 11:28:46.124 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 11:28:46.124 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 11:28:46.124 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 11:28:46.124 INFO [5697]: QUERY_STRING = /member/viewRoom -- 11:28:46.124 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:28:46.156 INFO [5697]: COREGRADE is stopping... -- 11:28:46.156 DEBUG [5697]: Closing database connection -- 11:28:46.156 SQL [5697]: pgsql_close() -- 11:31:17.650 INFO [4834]: COREGRADE is starting... -- 11:31:17.650 INFO [4834]: Version from config: 1.0 -- 11:31:17.650 DEBUG [4834]: Connecting to database... -- 11:31:17.650 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:31:17.650 SQL [4834]: pgsql_db_connect() -- 11:31:17.656 DEBUG [4834]: Database connection successful -- 11:31:17.656 INFO [4834]: _SERVER found -- 11:31:17.656 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 11:31:17.656 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 11:31:17.656 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 11:31:17.656 INFO [4834]: QUERY_STRING = /member/viewRoom -- 11:31:17.656 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:31:17.695 INFO [4834]: COREGRADE is stopping... -- 11:31:17.695 DEBUG [4834]: Closing database connection -- 11:31:17.695 SQL [4834]: pgsql_close() -- 11:31:18.311 INFO [4834]: COREGRADE is starting... -- 11:31:18.312 INFO [4834]: Version from config: 1.0 -- 11:31:18.312 DEBUG [4834]: Connecting to database... -- 11:31:18.312 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:31:18.312 SQL [4834]: pgsql_db_connect() -- 11:31:18.317 DEBUG [4834]: Database connection successful -- 11:31:18.317 INFO [4834]: _SERVER found -- 11:31:18.317 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 11:31:18.317 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 11:31:18.317 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 11:31:18.317 INFO [4834]: QUERY_STRING = /member/viewRoom -- 11:31:18.317 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:31:18.350 INFO [4834]: COREGRADE is stopping... -- 11:31:18.351 DEBUG [4834]: Closing database connection -- 11:31:18.351 SQL [4834]: pgsql_close() -- 11:38:36.965 INFO [6715]: COREGRADE is starting... -- 11:38:36.965 INFO [6715]: Version from config: 1.0 -- 11:38:36.965 DEBUG [6715]: Connecting to database... -- 11:38:36.965 DEBUG [6715]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:38:36.965 SQL [6715]: pgsql_db_connect() -- 11:38:36.970 DEBUG [6715]: Database connection successful -- 11:38:36.970 INFO [6715]: _SERVER found -- 11:38:36.970 INFO [6715]: REMOTE_ADDR = 10.0.0.15 -- 11:38:36.970 INFO [6715]: SERVER_NAME = oameye.works.coregrade.com -- 11:38:36.970 INFO [6715]: HTTP_COOKIE = _ga=GA1.2.741559843.1578756903; _gid=GA1.2.1972033761.1586879141 -- 11:38:36.970 INFO [6715]: QUERY_STRING = -- 11:38:36.970 INFO [6715]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 11:38:37.017 INFO [6715]: COREGRADE is stopping... -- 11:38:37.017 DEBUG [6715]: Closing database connection -- 11:38:37.017 SQL [6715]: pgsql_close() -- 11:50:42.767 INFO [5685]: COREGRADE is starting... -- 11:50:42.767 INFO [5685]: Version from config: 1.0 -- 11:50:42.767 DEBUG [5685]: Connecting to database... -- 11:50:42.767 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:50:42.767 SQL [5685]: pgsql_db_connect() -- 11:50:42.772 DEBUG [5685]: Database connection successful -- 11:50:42.772 INFO [5685]: _SERVER found -- 11:50:42.772 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 11:50:42.772 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 11:50:42.772 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 11:50:42.772 INFO [5685]: QUERY_STRING = /member/viewRoom -- 11:50:42.772 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:50:42.805 INFO [5685]: COREGRADE is stopping... -- 11:50:42.805 DEBUG [5685]: Closing database connection -- 11:50:42.805 SQL [5685]: pgsql_close() -- 11:50:44.292 INFO [5685]: COREGRADE is starting... -- 11:50:44.293 INFO [5685]: Version from config: 1.0 -- 11:50:44.293 DEBUG [5685]: Connecting to database... -- 11:50:44.293 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:50:44.293 SQL [5685]: pgsql_db_connect() -- 11:50:44.297 DEBUG [5685]: Database connection successful -- 11:50:44.297 INFO [5685]: _SERVER found -- 11:50:44.297 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 11:50:44.297 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 11:50:44.297 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 11:50:44.297 INFO [5685]: QUERY_STRING = /member/viewRoom -- 11:50:44.297 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:50:44.328 INFO [5685]: COREGRADE is stopping... -- 11:50:44.328 DEBUG [5685]: Closing database connection -- 11:50:44.328 SQL [5685]: pgsql_close() -- 11:50:45.443 INFO [5685]: COREGRADE is starting... -- 11:50:45.443 INFO [5685]: Version from config: 1.0 -- 11:50:45.443 DEBUG [5685]: Connecting to database... -- 11:50:45.443 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:50:45.443 SQL [5685]: pgsql_db_connect() -- 11:50:45.447 DEBUG [5685]: Database connection successful -- 11:50:45.447 INFO [5685]: _SERVER found -- 11:50:45.447 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 11:50:45.447 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 11:50:45.447 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 11:50:45.447 INFO [5685]: QUERY_STRING = /member/viewRoom -- 11:50:45.447 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:50:45.478 INFO [5685]: COREGRADE is stopping... -- 11:50:45.478 DEBUG [5685]: Closing database connection -- 11:50:45.478 SQL [5685]: pgsql_close() -- 11:50:46.227 INFO [5685]: COREGRADE is starting... -- 11:50:46.227 INFO [5685]: Version from config: 1.0 -- 11:50:46.227 DEBUG [5685]: Connecting to database... -- 11:50:46.227 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:50:46.227 SQL [5685]: pgsql_db_connect() -- 11:50:46.231 DEBUG [5685]: Database connection successful -- 11:50:46.231 INFO [5685]: _SERVER found -- 11:50:46.231 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 11:50:46.231 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 11:50:46.231 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 11:50:46.231 INFO [5685]: QUERY_STRING = /member/viewRoom -- 11:50:46.231 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:50:46.262 INFO [5685]: COREGRADE is stopping... -- 11:50:46.262 DEBUG [5685]: Closing database connection -- 11:50:46.262 SQL [5685]: pgsql_close() -- 11:50:46.815 INFO [5685]: COREGRADE is starting... -- 11:50:46.815 INFO [5685]: Version from config: 1.0 -- 11:50:46.815 DEBUG [5685]: Connecting to database... -- 11:50:46.815 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:50:46.815 SQL [5685]: pgsql_db_connect() -- 11:50:46.819 DEBUG [5685]: Database connection successful -- 11:50:46.819 INFO [5685]: _SERVER found -- 11:50:46.819 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 11:50:46.819 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 11:50:46.819 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 11:50:46.819 INFO [5685]: QUERY_STRING = /member/viewRoom -- 11:50:46.819 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:50:46.850 INFO [5685]: COREGRADE is stopping... -- 11:50:46.850 DEBUG [5685]: Closing database connection -- 11:50:46.850 SQL [5685]: pgsql_close() -- 11:50:47.266 INFO [5685]: COREGRADE is starting... -- 11:50:47.266 INFO [5685]: Version from config: 1.0 -- 11:50:47.266 DEBUG [5685]: Connecting to database... -- 11:50:47.266 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:50:47.266 SQL [5685]: pgsql_db_connect() -- 11:50:47.270 DEBUG [5685]: Database connection successful -- 11:50:47.270 INFO [5685]: _SERVER found -- 11:50:47.270 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 11:50:47.270 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 11:50:47.270 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 11:50:47.270 INFO [5685]: QUERY_STRING = /member/viewRoom -- 11:50:47.270 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:50:47.301 INFO [5685]: COREGRADE is stopping... -- 11:50:47.301 DEBUG [5685]: Closing database connection -- 11:50:47.301 SQL [5685]: pgsql_close() -- 11:50:48.178 INFO [5685]: COREGRADE is starting... -- 11:50:48.179 INFO [5685]: Version from config: 1.0 -- 11:50:48.179 DEBUG [5685]: Connecting to database... -- 11:50:48.179 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:50:48.179 SQL [5685]: pgsql_db_connect() -- 11:50:48.183 DEBUG [5685]: Database connection successful -- 11:50:48.183 INFO [5685]: _SERVER found -- 11:50:48.183 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 11:50:48.183 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 11:50:48.183 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 11:50:48.183 INFO [5685]: QUERY_STRING = /member/viewRoom -- 11:50:48.183 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:50:48.213 INFO [5685]: COREGRADE is stopping... -- 11:50:48.213 DEBUG [5685]: Closing database connection -- 11:50:48.213 SQL [5685]: pgsql_close() -- 11:50:48.560 INFO [5685]: COREGRADE is starting... -- 11:50:48.560 INFO [5685]: Version from config: 1.0 -- 11:50:48.560 DEBUG [5685]: Connecting to database... -- 11:50:48.560 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:50:48.560 SQL [5685]: pgsql_db_connect() -- 11:50:48.564 DEBUG [5685]: Database connection successful -- 11:50:48.564 INFO [5685]: _SERVER found -- 11:50:48.564 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 11:50:48.564 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 11:50:48.564 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 11:50:48.564 INFO [5685]: QUERY_STRING = /member/viewRoom -- 11:50:48.564 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:50:48.595 INFO [5685]: COREGRADE is stopping... -- 11:50:48.595 DEBUG [5685]: Closing database connection -- 11:50:48.595 SQL [5685]: pgsql_close() -- 11:50:49.293 INFO [5685]: COREGRADE is starting... -- 11:50:49.293 INFO [5685]: Version from config: 1.0 -- 11:50:49.293 DEBUG [5685]: Connecting to database... -- 11:50:49.293 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:50:49.293 SQL [5685]: pgsql_db_connect() -- 11:50:49.297 DEBUG [5685]: Database connection successful -- 11:50:49.297 INFO [5685]: _SERVER found -- 11:50:49.297 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 11:50:49.297 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 11:50:49.297 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 11:50:49.297 INFO [5685]: QUERY_STRING = /member/viewRoom -- 11:50:49.297 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:50:49.328 INFO [5685]: COREGRADE is stopping... -- 11:50:49.328 DEBUG [5685]: Closing database connection -- 11:50:49.328 SQL [5685]: pgsql_close() -- 11:50:49.793 INFO [5685]: COREGRADE is starting... -- 11:50:49.793 INFO [5685]: Version from config: 1.0 -- 11:50:49.793 DEBUG [5685]: Connecting to database... -- 11:50:49.793 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:50:49.793 SQL [5685]: pgsql_db_connect() -- 11:50:49.798 DEBUG [5685]: Database connection successful -- 11:50:49.798 INFO [5685]: _SERVER found -- 11:50:49.798 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 11:50:49.798 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 11:50:49.798 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 11:50:49.798 INFO [5685]: QUERY_STRING = /member/viewRoom -- 11:50:49.798 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:50:49.829 INFO [5685]: COREGRADE is stopping... -- 11:50:49.829 DEBUG [5685]: Closing database connection -- 11:50:49.829 SQL [5685]: pgsql_close() -- 11:52:48.834 INFO [5686]: COREGRADE is starting... -- 11:52:48.834 INFO [5686]: Version from config: 1.0 -- 11:52:48.834 DEBUG [5686]: Connecting to database... -- 11:52:48.834 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:52:48.834 SQL [5686]: pgsql_db_connect() -- 11:52:48.839 DEBUG [5686]: Database connection successful -- 11:52:48.839 INFO [5686]: _SERVER found -- 11:52:48.839 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 11:52:48.839 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 11:52:48.839 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 11:52:48.839 INFO [5686]: QUERY_STRING = /member/viewRoom -- 11:52:48.839 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:52:48.871 INFO [5686]: COREGRADE is stopping... -- 11:52:48.871 DEBUG [5686]: Closing database connection -- 11:52:48.871 SQL [5686]: pgsql_close() -- 11:52:50.665 INFO [5686]: COREGRADE is starting... -- 11:52:50.665 INFO [5686]: Version from config: 1.0 -- 11:52:50.665 DEBUG [5686]: Connecting to database... -- 11:52:50.665 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:52:50.665 SQL [5686]: pgsql_db_connect() -- 11:52:50.669 DEBUG [5686]: Database connection successful -- 11:52:50.669 INFO [5686]: _SERVER found -- 11:52:50.669 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 11:52:50.669 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 11:52:50.670 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 11:52:50.670 INFO [5686]: QUERY_STRING = /member/viewRoom -- 11:52:50.670 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:52:50.700 INFO [5686]: COREGRADE is stopping... -- 11:52:50.700 DEBUG [5686]: Closing database connection -- 11:52:50.700 SQL [5686]: pgsql_close() -- 11:52:51.399 INFO [5686]: COREGRADE is starting... -- 11:52:51.399 INFO [5686]: Version from config: 1.0 -- 11:52:51.399 DEBUG [5686]: Connecting to database... -- 11:52:51.399 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:52:51.399 SQL [5686]: pgsql_db_connect() -- 11:52:51.403 DEBUG [5686]: Database connection successful -- 11:52:51.403 INFO [5686]: _SERVER found -- 11:52:51.403 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 11:52:51.403 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 11:52:51.403 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 11:52:51.403 INFO [5686]: QUERY_STRING = /member/viewRoom -- 11:52:51.403 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:52:51.433 INFO [5686]: COREGRADE is stopping... -- 11:52:51.434 DEBUG [5686]: Closing database connection -- 11:52:51.434 SQL [5686]: pgsql_close() -- 11:52:52.066 INFO [5686]: COREGRADE is starting... -- 11:52:52.066 INFO [5686]: Version from config: 1.0 -- 11:52:52.066 DEBUG [5686]: Connecting to database... -- 11:52:52.067 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:52:52.067 SQL [5686]: pgsql_db_connect() -- 11:52:52.071 DEBUG [5686]: Database connection successful -- 11:52:52.071 INFO [5686]: _SERVER found -- 11:52:52.071 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 11:52:52.071 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 11:52:52.071 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 11:52:52.071 INFO [5686]: QUERY_STRING = /member/viewRoom -- 11:52:52.071 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:52:52.101 INFO [5686]: COREGRADE is stopping... -- 11:52:52.101 DEBUG [5686]: Closing database connection -- 11:52:52.101 SQL [5686]: pgsql_close() -- 11:52:52.702 INFO [5686]: COREGRADE is starting... -- 11:52:52.703 INFO [5686]: Version from config: 1.0 -- 11:52:52.703 DEBUG [5686]: Connecting to database... -- 11:52:52.703 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:52:52.703 SQL [5686]: pgsql_db_connect() -- 11:52:52.707 DEBUG [5686]: Database connection successful -- 11:52:52.707 INFO [5686]: _SERVER found -- 11:52:52.707 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 11:52:52.707 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 11:52:52.707 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 11:52:52.707 INFO [5686]: QUERY_STRING = /member/viewRoom -- 11:52:52.707 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:52:52.737 INFO [5686]: COREGRADE is stopping... -- 11:52:52.737 DEBUG [5686]: Closing database connection -- 11:52:52.738 SQL [5686]: pgsql_close() -- 11:52:53.399 INFO [5686]: COREGRADE is starting... -- 11:52:53.400 INFO [5686]: Version from config: 1.0 -- 11:52:53.400 DEBUG [5686]: Connecting to database... -- 11:52:53.400 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:52:53.400 SQL [5686]: pgsql_db_connect() -- 11:52:53.404 DEBUG [5686]: Database connection successful -- 11:52:53.404 INFO [5686]: _SERVER found -- 11:52:53.404 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 11:52:53.404 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 11:52:53.404 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 11:52:53.404 INFO [5686]: QUERY_STRING = /member/viewRoom -- 11:52:53.404 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:52:53.435 INFO [5686]: COREGRADE is stopping... -- 11:52:53.435 DEBUG [5686]: Closing database connection -- 11:52:53.435 SQL [5686]: pgsql_close() -- 11:53:11.063 INFO [4251]: COREGRADE is starting... -- 11:53:11.063 INFO [4251]: Version from config: 1.0 -- 11:53:11.063 DEBUG [4251]: Connecting to database... -- 11:53:11.063 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:53:11.063 SQL [4251]: pgsql_db_connect() -- 11:53:11.067 DEBUG [4251]: Database connection successful -- 11:53:11.067 INFO [4251]: _SERVER found -- 11:53:11.067 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 11:53:11.067 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 11:53:11.067 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 11:53:11.067 INFO [4251]: QUERY_STRING = /member/viewRoom -- 11:53:11.067 INFO [4251]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:53:11.099 INFO [4251]: COREGRADE is stopping... -- 11:53:11.099 DEBUG [4251]: Closing database connection -- 11:53:11.099 SQL [4251]: pgsql_close() -- 11:53:12.406 INFO [4251]: COREGRADE is starting... -- 11:53:12.406 INFO [4251]: Version from config: 1.0 -- 11:53:12.406 DEBUG [4251]: Connecting to database... -- 11:53:12.406 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:53:12.406 SQL [4251]: pgsql_db_connect() -- 11:53:12.410 DEBUG [4251]: Database connection successful -- 11:53:12.410 INFO [4251]: _SERVER found -- 11:53:12.410 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 11:53:12.410 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 11:53:12.410 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 11:53:12.410 INFO [4251]: QUERY_STRING = /member/viewRoom -- 11:53:12.410 INFO [4251]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:53:12.441 INFO [4251]: COREGRADE is stopping... -- 11:53:12.441 DEBUG [4251]: Closing database connection -- 11:53:12.441 SQL [4251]: pgsql_close() -- 11:53:13.489 INFO [4251]: COREGRADE is starting... -- 11:53:13.489 INFO [4251]: Version from config: 1.0 -- 11:53:13.489 DEBUG [4251]: Connecting to database... -- 11:53:13.490 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:53:13.490 SQL [4251]: pgsql_db_connect() -- 11:53:13.494 DEBUG [4251]: Database connection successful -- 11:53:13.494 INFO [4251]: _SERVER found -- 11:53:13.494 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 11:53:13.494 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 11:53:13.494 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 11:53:13.494 INFO [4251]: QUERY_STRING = /member/viewRoom -- 11:53:13.494 INFO [4251]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:53:13.524 INFO [4251]: COREGRADE is stopping... -- 11:53:13.524 DEBUG [4251]: Closing database connection -- 11:53:13.524 SQL [4251]: pgsql_close() -- 12:08:11.162 INFO [5687]: COREGRADE is starting... -- 12:08:11.163 INFO [5687]: Version from config: 1.0 -- 12:08:11.163 DEBUG [5687]: Connecting to database... -- 12:08:11.163 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:08:11.163 SQL [5687]: pgsql_db_connect() -- 12:08:11.167 DEBUG [5687]: Database connection successful -- 12:08:11.167 INFO [5687]: _SERVER found -- 12:08:11.167 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 12:08:11.167 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 12:08:11.167 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 12:08:11.167 INFO [5687]: QUERY_STRING = /member/viewRoom -- 12:08:11.167 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:08:11.202 INFO [5687]: COREGRADE is stopping... -- 12:08:11.202 DEBUG [5687]: Closing database connection -- 12:08:11.202 SQL [5687]: pgsql_close() -- 12:09:01.304 INFO [6508]: COREGRADE is starting... -- 12:09:01.304 INFO [6508]: Version from config: 1.0 -- 12:09:01.304 DEBUG [6508]: Connecting to database... -- 12:09:01.304 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:01.304 SQL [6508]: pgsql_db_connect() -- 12:09:01.309 DEBUG [6508]: Database connection successful -- 12:09:01.309 INFO [6508]: _SERVER found -- 12:09:01.309 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 12:09:01.309 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 12:09:01.309 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 12:09:01.309 INFO [6508]: QUERY_STRING = /member/viewRoom -- 12:09:01.309 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:09:01.348 INFO [6508]: COREGRADE is stopping... -- 12:09:01.348 DEBUG [6508]: Closing database connection -- 12:09:01.348 SQL [6508]: pgsql_close() -- 12:09:02.330 INFO [6508]: COREGRADE is starting... -- 12:09:02.331 INFO [6508]: Version from config: 1.0 -- 12:09:02.331 DEBUG [6508]: Connecting to database... -- 12:09:02.331 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:02.331 SQL [6508]: pgsql_db_connect() -- 12:09:02.335 DEBUG [6508]: Database connection successful -- 12:09:02.335 INFO [6508]: _SERVER found -- 12:09:02.335 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 12:09:02.335 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 12:09:02.335 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 12:09:02.335 INFO [6508]: QUERY_STRING = /member/viewRoom -- 12:09:02.335 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:09:02.366 INFO [6508]: COREGRADE is stopping... -- 12:09:02.366 DEBUG [6508]: Closing database connection -- 12:09:02.366 SQL [6508]: pgsql_close() -- 12:09:03.654 INFO [6508]: COREGRADE is starting... -- 12:09:03.654 INFO [6508]: Version from config: 1.0 -- 12:09:03.654 DEBUG [6508]: Connecting to database... -- 12:09:03.654 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:03.654 SQL [6508]: pgsql_db_connect() -- 12:09:03.658 DEBUG [6508]: Database connection successful -- 12:09:03.658 INFO [6508]: _SERVER found -- 12:09:03.658 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 12:09:03.658 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 12:09:03.658 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 12:09:03.658 INFO [6508]: QUERY_STRING = /member/viewRoom -- 12:09:03.658 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:09:03.689 INFO [6508]: COREGRADE is stopping... -- 12:09:03.689 DEBUG [6508]: Closing database connection -- 12:09:03.689 SQL [6508]: pgsql_close() -- 12:09:55.100 INFO [5697]: COREGRADE is starting... -- 12:09:55.100 INFO [5697]: Version from config: 1.0 -- 12:09:55.100 DEBUG [5697]: Connecting to database... -- 12:09:55.100 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:55.100 SQL [5697]: pgsql_db_connect() -- 12:09:55.104 DEBUG [5697]: Database connection successful -- 12:09:55.104 INFO [5697]: _SERVER found -- 12:09:55.104 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 12:09:55.104 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 12:09:55.104 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 12:09:55.104 INFO [5697]: QUERY_STRING = /member/viewRoom -- 12:09:55.104 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:09:55.137 INFO [5697]: COREGRADE is stopping... -- 12:09:55.137 DEBUG [5697]: Closing database connection -- 12:09:55.137 SQL [5697]: pgsql_close() -- 12:09:56.412 INFO [5697]: COREGRADE is starting... -- 12:09:56.412 INFO [5697]: Version from config: 1.0 -- 12:09:56.412 DEBUG [5697]: Connecting to database... -- 12:09:56.412 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:56.412 SQL [5697]: pgsql_db_connect() -- 12:09:56.416 DEBUG [5697]: Database connection successful -- 12:09:56.416 INFO [5697]: _SERVER found -- 12:09:56.416 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 12:09:56.416 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 12:09:56.416 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 12:09:56.416 INFO [5697]: QUERY_STRING = /member/viewRoom -- 12:09:56.416 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:09:56.447 INFO [5697]: COREGRADE is stopping... -- 12:09:56.447 DEBUG [5697]: Closing database connection -- 12:09:56.447 SQL [5697]: pgsql_close() -- 12:09:57.466 INFO [5697]: COREGRADE is starting... -- 12:09:57.466 INFO [5697]: Version from config: 1.0 -- 12:09:57.466 DEBUG [5697]: Connecting to database... -- 12:09:57.466 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:57.466 SQL [5697]: pgsql_db_connect() -- 12:09:57.470 DEBUG [5697]: Database connection successful -- 12:09:57.470 INFO [5697]: _SERVER found -- 12:09:57.470 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 12:09:57.470 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 12:09:57.470 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 12:09:57.470 INFO [5697]: QUERY_STRING = /member/viewRoom -- 12:09:57.470 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:09:57.501 INFO [5697]: COREGRADE is stopping... -- 12:09:57.501 DEBUG [5697]: Closing database connection -- 12:09:57.501 SQL [5697]: pgsql_close() -- 12:09:58.506 INFO [5697]: COREGRADE is starting... -- 12:09:58.506 INFO [5697]: Version from config: 1.0 -- 12:09:58.506 DEBUG [5697]: Connecting to database... -- 12:09:58.506 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:58.506 SQL [5697]: pgsql_db_connect() -- 12:09:58.510 DEBUG [5697]: Database connection successful -- 12:09:58.510 INFO [5697]: _SERVER found -- 12:09:58.510 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 12:09:58.510 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 12:09:58.510 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 12:09:58.510 INFO [5697]: QUERY_STRING = /member/viewRoom -- 12:09:58.510 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:09:58.541 INFO [5697]: COREGRADE is stopping... -- 12:09:58.541 DEBUG [5697]: Closing database connection -- 12:09:58.541 SQL [5697]: pgsql_close() -- 12:10:42.398 INFO [4834]: COREGRADE is starting... -- 12:10:42.398 INFO [4834]: Version from config: 1.0 -- 12:10:42.398 DEBUG [4834]: Connecting to database... -- 12:10:42.398 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:10:42.398 SQL [4834]: pgsql_db_connect() -- 12:10:42.402 DEBUG [4834]: Database connection successful -- 12:10:42.402 INFO [4834]: _SERVER found -- 12:10:42.402 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 12:10:42.402 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 12:10:42.402 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=e834ebpd6lg4rte2voj6j95o4056rfuh; _gid=GA1.2.2044091736.1586960731 -- 12:10:42.402 INFO [4834]: QUERY_STRING = /member/configure -- 12:10:42.402 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:10:42.449 INFO [4834]: COREGRADE is stopping... -- 12:10:42.449 DEBUG [4834]: Closing database connection -- 12:10:42.449 SQL [4834]: pgsql_close() -- 12:10:42.798 INFO [6715]: COREGRADE is starting... -- 12:10:42.798 INFO [6485]: COREGRADE is starting... -- 12:10:42.799 INFO [6485]: Version from config: 1.0 -- 12:10:42.799 DEBUG [6485]: Connecting to database... -- 12:10:42.799 INFO [6715]: Version from config: 1.0 -- 12:10:42.799 DEBUG [6715]: Connecting to database... -- 12:10:42.799 DEBUG [6485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:10:42.799 DEBUG [6715]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:10:42.799 SQL [6485]: pgsql_db_connect() -- 12:10:42.799 SQL [6715]: pgsql_db_connect() -- 12:10:42.804 DEBUG [6485]: Database connection successful -- 12:10:42.804 INFO [6485]: _SERVER found -- 12:10:42.804 INFO [6485]: REMOTE_ADDR = 10.0.0.15 -- 12:10:42.804 INFO [6485]: SERVER_NAME = oameye.works.coregrade.com -- 12:10:42.804 INFO [6485]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=fdihgf0qtmou72no6ptd36u3tub6oldg; _gid=GA1.2.2044091736.1586960731 -- 12:10:42.804 INFO [6485]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 12:10:42.804 INFO [6485]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:10:42.816 INFO [6485]: COREGRADE is stopping... -- 12:10:42.803 DEBUG [6715]: Database connection successful -- 12:10:42.803 INFO [6715]: _SERVER found -- 12:10:42.803 INFO [6715]: REMOTE_ADDR = 10.0.0.15 -- 12:10:42.803 INFO [6715]: SERVER_NAME = oameye.works.coregrade.com -- 12:10:42.803 INFO [6715]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=fdihgf0qtmou72no6ptd36u3tub6oldg; _gid=GA1.2.2044091736.1586960731 -- 12:10:42.803 INFO [6715]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:10:42.803 INFO [6715]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:10:42.816 INFO [6715]: COREGRADE is stopping... -- 12:10:42.816 DEBUG [6485]: Closing database connection -- 12:10:42.816 DEBUG [6715]: Closing database connection -- 12:10:42.816 SQL [6485]: pgsql_close() -- 12:10:42.816 SQL [6715]: pgsql_close() -- 12:10:43.876 INFO [6485]: COREGRADE is starting... -- 12:10:43.876 INFO [6485]: Version from config: 1.0 -- 12:10:43.876 DEBUG [6485]: Connecting to database... -- 12:10:43.876 DEBUG [6485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:10:43.876 SQL [6485]: pgsql_db_connect() -- 12:10:43.880 DEBUG [6485]: Database connection successful -- 12:10:43.880 INFO [6485]: _SERVER found -- 12:10:43.880 INFO [6485]: REMOTE_ADDR = 10.0.0.15 -- 12:10:43.880 INFO [6485]: SERVER_NAME = oameye.works.coregrade.com -- 12:10:43.880 INFO [6485]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=fdihgf0qtmou72no6ptd36u3tub6oldg; _gid=GA1.2.2044091736.1586960731 -- 12:10:43.880 INFO [6485]: QUERY_STRING = /member/classroom -- 12:10:43.880 INFO [6485]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:10:43.929 INFO [6485]: COREGRADE is stopping... -- 12:10:43.929 DEBUG [6485]: Closing database connection -- 12:10:43.929 SQL [6485]: pgsql_close() -- 12:10:44.107 INFO [6715]: COREGRADE is starting... -- 12:10:44.107 INFO [6715]: Version from config: 1.0 -- 12:10:44.107 DEBUG [6715]: Connecting to database... -- 12:10:44.107 DEBUG [6715]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:10:44.107 SQL [6715]: pgsql_db_connect() -- 12:10:44.113 DEBUG [6715]: Database connection successful -- 12:10:44.113 INFO [6715]: _SERVER found -- 12:10:44.113 INFO [6715]: REMOTE_ADDR = 10.0.0.15 -- 12:10:44.113 INFO [6715]: SERVER_NAME = oameye.works.coregrade.com -- 12:10:44.113 INFO [6715]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=fdihgf0qtmou72no6ptd36u3tub6oldg; _gid=GA1.2.2044091736.1586960731 -- 12:10:44.113 INFO [6715]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:10:44.113 INFO [6715]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:10:44.125 INFO [6715]: COREGRADE is stopping... -- 12:10:44.125 DEBUG [6715]: Closing database connection -- 12:10:44.125 SQL [6715]: pgsql_close() -- 12:10:45.003 INFO [5686]: COREGRADE is starting... -- 12:10:45.004 INFO [5686]: Version from config: 1.0 -- 12:10:45.004 DEBUG [5686]: Connecting to database... -- 12:10:45.004 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:10:45.004 SQL [5686]: pgsql_db_connect() -- 12:10:45.008 DEBUG [5686]: Database connection successful -- 12:10:45.008 INFO [5686]: _SERVER found -- 12:10:45.008 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 12:10:45.008 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 12:10:45.008 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=fdihgf0qtmou72no6ptd36u3tub6oldg; _gid=GA1.2.2044091736.1586960731 -- 12:10:45.008 INFO [5686]: QUERY_STRING = /member/viewRoom -- 12:10:45.008 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:10:45.039 INFO [5686]: COREGRADE is stopping... -- 12:10:45.039 DEBUG [5686]: Closing database connection -- 12:10:45.039 SQL [5686]: pgsql_close() -- 12:11:08.278 INFO [4251]: COREGRADE is starting... -- 12:11:08.278 INFO [4251]: Version from config: 1.0 -- 12:11:08.278 DEBUG [4251]: Connecting to database... -- 12:11:08.278 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:11:08.278 SQL [4251]: pgsql_db_connect() -- 12:11:08.282 DEBUG [4251]: Database connection successful -- 12:11:08.282 INFO [4251]: _SERVER found -- 12:11:08.282 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 12:11:08.282 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 12:11:08.282 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=fdihgf0qtmou72no6ptd36u3tub6oldg; _gid=GA1.2.2044091736.1586960731 -- 12:11:08.282 INFO [4251]: QUERY_STRING = /member/viewRoom -- 12:11:08.282 INFO [4251]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:11:08.314 INFO [4251]: COREGRADE is stopping... -- 12:11:08.314 DEBUG [4251]: Closing database connection -- 12:11:08.314 SQL [4251]: pgsql_close() -- 12:11:09.607 INFO [4251]: COREGRADE is starting... -- 12:11:09.607 INFO [4251]: Version from config: 1.0 -- 12:11:09.607 DEBUG [4251]: Connecting to database... -- 12:11:09.607 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:11:09.607 SQL [4251]: pgsql_db_connect() -- 12:11:09.611 DEBUG [4251]: Database connection successful -- 12:11:09.611 INFO [4251]: _SERVER found -- 12:11:09.611 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 12:11:09.611 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 12:11:09.611 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=fdihgf0qtmou72no6ptd36u3tub6oldg; _gid=GA1.2.2044091736.1586960731 -- 12:11:09.611 INFO [4251]: QUERY_STRING = /member/viewRoom -- 12:11:09.611 INFO [4251]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:11:09.642 INFO [4251]: COREGRADE is stopping... -- 12:11:09.642 DEBUG [4251]: Closing database connection -- 12:11:09.642 SQL [4251]: pgsql_close() -- 12:12:33.574 INFO [5687]: COREGRADE is starting... -- 12:12:33.574 INFO [5687]: Version from config: 1.0 -- 12:12:33.575 DEBUG [5687]: Connecting to database... -- 12:12:33.575 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:12:33.575 SQL [5687]: pgsql_db_connect() -- 12:12:33.579 DEBUG [5687]: Database connection successful -- 12:12:33.579 INFO [5687]: _SERVER found -- 12:12:33.579 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 12:12:33.579 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 12:12:33.579 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=fdihgf0qtmou72no6ptd36u3tub6oldg; _gid=GA1.2.2044091736.1586960731 -- 12:12:33.579 INFO [5687]: QUERY_STRING = /member/viewRoom -- 12:12:33.579 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:12:33.611 INFO [5687]: COREGRADE is stopping... -- 12:12:33.611 DEBUG [5687]: Closing database connection -- 12:12:33.611 SQL [5687]: pgsql_close() -- 12:12:34.746 INFO [5687]: COREGRADE is starting... -- 12:12:34.746 INFO [5687]: Version from config: 1.0 -- 12:12:34.746 DEBUG [5687]: Connecting to database... -- 12:12:34.746 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:12:34.746 SQL [5687]: pgsql_db_connect() -- 12:12:34.751 DEBUG [5687]: Database connection successful -- 12:12:34.751 INFO [5687]: _SERVER found -- 12:12:34.751 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 12:12:34.751 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 12:12:34.751 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=fdihgf0qtmou72no6ptd36u3tub6oldg; _gid=GA1.2.2044091736.1586960731 -- 12:12:34.751 INFO [5687]: QUERY_STRING = /member/viewRoom -- 12:12:34.751 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:12:34.781 INFO [5687]: COREGRADE is stopping... -- 12:12:34.781 DEBUG [5687]: Closing database connection -- 12:12:34.781 SQL [5687]: pgsql_close() -- 12:12:35.642 INFO [5687]: COREGRADE is starting... -- 12:12:35.643 INFO [5687]: Version from config: 1.0 -- 12:12:35.643 DEBUG [5687]: Connecting to database... -- 12:12:35.643 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:12:35.643 SQL [5687]: pgsql_db_connect() -- 12:12:35.647 DEBUG [5687]: Database connection successful -- 12:12:35.647 INFO [5687]: _SERVER found -- 12:12:35.647 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 12:12:35.647 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 12:12:35.647 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=fdihgf0qtmou72no6ptd36u3tub6oldg; _gid=GA1.2.2044091736.1586960731 -- 12:12:35.647 INFO [5687]: QUERY_STRING = /member/viewRoom -- 12:12:35.647 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:12:35.677 INFO [5687]: COREGRADE is stopping... -- 12:12:35.677 DEBUG [5687]: Closing database connection -- 12:12:35.678 SQL [5687]: pgsql_close() -- 12:12:36.160 INFO [5687]: COREGRADE is starting... -- 12:12:36.161 INFO [5687]: Version from config: 1.0 -- 12:12:36.161 DEBUG [5687]: Connecting to database... -- 12:12:36.161 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:12:36.161 SQL [5687]: pgsql_db_connect() -- 12:12:36.165 DEBUG [5687]: Database connection successful -- 12:12:36.165 INFO [5687]: _SERVER found -- 12:12:36.165 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 12:12:36.165 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 12:12:36.165 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=fdihgf0qtmou72no6ptd36u3tub6oldg; _gid=GA1.2.2044091736.1586960731 -- 12:12:36.165 INFO [5687]: QUERY_STRING = /member/viewRoom -- 12:12:36.165 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:12:36.195 INFO [5687]: COREGRADE is stopping... -- 12:12:36.195 DEBUG [5687]: Closing database connection -- 12:12:36.195 SQL [5687]: pgsql_close() -- 12:30:48.592 INFO [6508]: COREGRADE is starting... -- 12:30:48.593 INFO [6508]: Version from config: 1.0 -- 12:30:48.593 DEBUG [6508]: Connecting to database... -- 12:30:48.593 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:30:48.593 SQL [6508]: pgsql_db_connect() -- 12:30:48.597 DEBUG [6508]: Database connection successful -- 12:30:48.597 INFO [6508]: _SERVER found -- 12:30:48.597 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 12:30:48.597 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 12:30:48.597 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=fdihgf0qtmou72no6ptd36u3tub6oldg; _gid=GA1.2.2044091736.1586960731 -- 12:30:48.597 INFO [6508]: QUERY_STRING = /member/viewRoom -- 12:30:48.597 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:30:48.633 INFO [6508]: COREGRADE is stopping... -- 12:30:48.633 DEBUG [6508]: Closing database connection -- 12:30:48.633 SQL [6508]: pgsql_close() -- 12:30:49.621 INFO [6508]: COREGRADE is starting... -- 12:30:49.621 INFO [6508]: Version from config: 1.0 -- 12:30:49.621 DEBUG [6508]: Connecting to database... -- 12:30:49.621 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:30:49.621 SQL [6508]: pgsql_db_connect() -- 12:30:49.625 DEBUG [6508]: Database connection successful -- 12:30:49.625 INFO [6508]: _SERVER found -- 12:30:49.625 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 12:30:49.625 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 12:30:49.625 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=fdihgf0qtmou72no6ptd36u3tub6oldg; _gid=GA1.2.2044091736.1586960731 -- 12:30:49.625 INFO [6508]: QUERY_STRING = /member/viewRoom -- 12:30:49.625 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:30:49.657 INFO [6508]: COREGRADE is stopping... -- 12:30:49.657 DEBUG [6508]: Closing database connection -- 12:30:49.657 SQL [6508]: pgsql_close() -- 12:31:10.931 INFO [5697]: COREGRADE is starting... -- 12:31:10.932 INFO [5697]: Version from config: 1.0 -- 12:31:10.932 DEBUG [5697]: Connecting to database... -- 12:31:10.932 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:31:10.932 SQL [5697]: pgsql_db_connect() -- 12:31:10.936 DEBUG [5697]: Database connection successful -- 12:31:10.936 INFO [5697]: _SERVER found -- 12:31:10.936 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 12:31:10.936 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 12:31:10.936 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=fdihgf0qtmou72no6ptd36u3tub6oldg; _gid=GA1.2.2044091736.1586960731 -- 12:31:10.936 INFO [5697]: QUERY_STRING = /member/viewRoom -- 12:31:10.936 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:31:10.969 INFO [5697]: COREGRADE is stopping... -- 12:31:10.969 DEBUG [5697]: Closing database connection -- 12:31:10.969 SQL [5697]: pgsql_close() -- 12:31:11.830 INFO [5697]: COREGRADE is starting... -- 12:31:11.830 INFO [5697]: Version from config: 1.0 -- 12:31:11.830 DEBUG [5697]: Connecting to database... -- 12:31:11.830 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:31:11.830 SQL [5697]: pgsql_db_connect() -- 12:31:11.834 DEBUG [5697]: Database connection successful -- 12:31:11.834 INFO [5697]: _SERVER found -- 12:31:11.834 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 12:31:11.834 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 12:31:11.834 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=fdihgf0qtmou72no6ptd36u3tub6oldg; _gid=GA1.2.2044091736.1586960731 -- 12:31:11.834 INFO [5697]: QUERY_STRING = /member/viewRoom -- 12:31:11.834 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:31:11.865 INFO [5697]: COREGRADE is stopping... -- 12:31:11.865 DEBUG [5697]: Closing database connection -- 12:31:11.865 SQL [5697]: pgsql_close() -- 12:31:12.874 INFO [5697]: COREGRADE is starting... -- 12:31:12.875 INFO [5697]: Version from config: 1.0 -- 12:31:12.875 DEBUG [5697]: Connecting to database... -- 12:31:12.875 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:31:12.875 SQL [5697]: pgsql_db_connect() -- 12:31:12.879 DEBUG [5697]: Database connection successful -- 12:31:12.879 INFO [5697]: _SERVER found -- 12:31:12.879 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 12:31:12.879 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 12:31:12.879 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=fdihgf0qtmou72no6ptd36u3tub6oldg; _gid=GA1.2.2044091736.1586960731 -- 12:31:12.879 INFO [5697]: QUERY_STRING = /member/viewRoom -- 12:31:12.879 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:31:12.910 INFO [5697]: COREGRADE is stopping... -- 12:31:12.910 DEBUG [5697]: Closing database connection -- 12:31:12.910 SQL [5697]: pgsql_close() -- 12:31:46.945 INFO [4834]: COREGRADE is starting... -- 12:31:46.946 INFO [4834]: Version from config: 1.0 -- 12:31:46.946 DEBUG [4834]: Connecting to database... -- 12:31:46.946 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:31:46.946 SQL [4834]: pgsql_db_connect() -- 12:31:46.950 DEBUG [4834]: Database connection successful -- 12:31:46.950 INFO [4834]: _SERVER found -- 12:31:46.950 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 12:31:46.950 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 12:31:46.950 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=fdihgf0qtmou72no6ptd36u3tub6oldg; _gid=GA1.2.2044091736.1586960731 -- 12:31:46.950 INFO [4834]: QUERY_STRING = /member/viewRoom -- 12:31:46.950 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:31:46.985 INFO [4834]: COREGRADE is stopping... -- 12:31:46.985 DEBUG [4834]: Closing database connection -- 12:31:46.985 SQL [4834]: pgsql_close() -- 12:31:47.955 INFO [4834]: COREGRADE is starting... -- 12:31:47.955 INFO [4834]: Version from config: 1.0 -- 12:31:47.955 DEBUG [4834]: Connecting to database... -- 12:31:47.956 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:31:47.956 SQL [4834]: pgsql_db_connect() -- 12:31:47.960 DEBUG [4834]: Database connection successful -- 12:31:47.960 INFO [4834]: _SERVER found -- 12:31:47.960 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 12:31:47.960 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 12:31:47.960 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=fdihgf0qtmou72no6ptd36u3tub6oldg; _gid=GA1.2.2044091736.1586960731 -- 12:31:47.960 INFO [4834]: QUERY_STRING = /member/viewRoom -- 12:31:47.960 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:31:47.991 INFO [4834]: COREGRADE is stopping... -- 12:31:47.991 DEBUG [4834]: Closing database connection -- 12:31:47.991 SQL [4834]: pgsql_close() -- 12:38:30.447 INFO [6485]: COREGRADE is starting... -- 12:38:30.448 INFO [6485]: Version from config: 1.0 -- 12:38:30.448 DEBUG [6485]: Connecting to database... -- 12:38:30.448 DEBUG [6485]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:38:30.448 SQL [6485]: pgsql_db_connect() -- 12:38:30.452 DEBUG [6485]: Database connection successful -- 12:38:30.452 INFO [6485]: _SERVER found -- 12:38:30.452 INFO [6485]: REMOTE_ADDR = 10.0.0.15 -- 12:38:30.452 INFO [6485]: SERVER_NAME = oameye.works.coregrade.com -- 12:38:30.452 INFO [6485]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=fdihgf0qtmou72no6ptd36u3tub6oldg; _gid=GA1.2.2044091736.1586960731 -- 12:38:30.452 INFO [6485]: QUERY_STRING = /member/viewRoom -- 12:38:30.452 INFO [6485]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:38:30.487 INFO [6485]: COREGRADE is stopping... -- 12:38:30.487 DEBUG [6485]: Closing database connection -- 12:38:30.487 SQL [6485]: pgsql_close() -- 12:40:57.726 INFO [4193]: COREGRADE is starting... -- 12:40:57.726 INFO [4193]: Version from config: 1.0 -- 12:40:57.726 DEBUG [4193]: Connecting to database... -- 12:40:57.726 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:40:57.726 SQL [4193]: pgsql_db_connect() -- 12:40:57.730 DEBUG [4193]: Database connection successful -- 12:40:57.730 INFO [4193]: _SERVER found -- 12:40:57.730 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 12:40:57.730 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 12:40:57.730 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=fdihgf0qtmou72no6ptd36u3tub6oldg; _gid=GA1.2.2044091736.1586960731 -- 12:40:57.730 INFO [4193]: QUERY_STRING = /member/viewRoom -- 12:40:57.730 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:40:57.767 INFO [4193]: COREGRADE is stopping... -- 12:40:57.767 DEBUG [4193]: Closing database connection -- 12:40:57.767 SQL [4193]: pgsql_close() -- 12:41:45.855 INFO [5685]: COREGRADE is starting... -- 12:41:45.855 INFO [5685]: Version from config: 1.0 -- 12:41:45.855 DEBUG [5685]: Connecting to database... -- 12:41:45.855 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:41:45.855 SQL [5685]: pgsql_db_connect() -- 12:41:45.859 DEBUG [5685]: Database connection successful -- 12:41:45.859 INFO [5685]: _SERVER found -- 12:41:45.859 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 12:41:45.859 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 12:41:45.859 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=fdihgf0qtmou72no6ptd36u3tub6oldg; _gid=GA1.2.2044091736.1586960731 -- 12:41:45.859 INFO [5685]: QUERY_STRING = /member/viewRoom -- 12:41:45.859 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:41:45.893 INFO [5685]: COREGRADE is stopping... -- 12:41:45.893 DEBUG [5685]: Closing database connection -- 12:41:45.893 SQL [5685]: pgsql_close() -- 12:45:17.457 INFO [6715]: COREGRADE is starting... -- 12:45:17.457 INFO [6715]: Version from config: 1.0 -- 12:45:17.457 DEBUG [6715]: Connecting to database... -- 12:45:17.457 DEBUG [6715]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:45:17.457 SQL [6715]: pgsql_db_connect() -- 12:45:17.462 DEBUG [6715]: Database connection successful -- 12:45:17.462 INFO [6715]: _SERVER found -- 12:45:17.462 INFO [6715]: REMOTE_ADDR = 10.0.0.15 -- 12:45:17.462 INFO [6715]: SERVER_NAME = oameye.works.coregrade.com -- 12:45:17.462 INFO [6715]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=fdihgf0qtmou72no6ptd36u3tub6oldg; _gid=GA1.2.2044091736.1586960731 -- 12:45:17.462 INFO [6715]: QUERY_STRING = /member/viewRoom -- 12:45:17.462 INFO [6715]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:45:17.498 INFO [6715]: COREGRADE is stopping... -- 12:45:17.498 DEBUG [6715]: Closing database connection -- 12:45:17.498 SQL [6715]: pgsql_close() -- 12:45:21.293 INFO [6715]: COREGRADE is starting... -- 12:45:21.294 INFO [6715]: Version from config: 1.0 -- 12:45:21.294 DEBUG [6715]: Connecting to database... -- 12:45:21.294 DEBUG [6715]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:45:21.294 SQL [6715]: pgsql_db_connect() -- 12:45:21.298 DEBUG [6715]: Database connection successful -- 12:45:21.298 INFO [6715]: _SERVER found -- 12:45:21.298 INFO [6715]: REMOTE_ADDR = 10.0.0.15 -- 12:45:21.298 INFO [6715]: SERVER_NAME = oameye.works.coregrade.com -- 12:45:21.298 INFO [6715]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=fdihgf0qtmou72no6ptd36u3tub6oldg; _gid=GA1.2.2044091736.1586960731 -- 12:45:21.298 INFO [6715]: QUERY_STRING = /member/viewRoom -- 12:45:21.298 INFO [6715]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:45:21.329 INFO [6715]: COREGRADE is stopping... -- 12:45:21.329 DEBUG [6715]: Closing database connection -- 12:45:21.329 SQL [6715]: pgsql_close() -- 12:45:22.535 INFO [6715]: COREGRADE is starting... -- 12:45:22.535 INFO [6715]: Version from config: 1.0 -- 12:45:22.535 DEBUG [6715]: Connecting to database... -- 12:45:22.535 DEBUG [6715]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:45:22.535 SQL [6715]: pgsql_db_connect() -- 12:45:22.539 DEBUG [6715]: Database connection successful -- 12:45:22.539 INFO [6715]: _SERVER found -- 12:45:22.539 INFO [6715]: REMOTE_ADDR = 10.0.0.15 -- 12:45:22.539 INFO [6715]: SERVER_NAME = oameye.works.coregrade.com -- 12:45:22.539 INFO [6715]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=fdihgf0qtmou72no6ptd36u3tub6oldg; _gid=GA1.2.2044091736.1586960731 -- 12:45:22.539 INFO [6715]: QUERY_STRING = /member/viewRoom -- 12:45:22.539 INFO [6715]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:45:22.570 INFO [6715]: COREGRADE is stopping... -- 12:45:22.570 DEBUG [6715]: Closing database connection -- 12:45:22.570 SQL [6715]: pgsql_close() -- 13:31:58.057 INFO [5686]: COREGRADE is starting... -- 13:31:58.058 INFO [5686]: Version from config: 1.0 -- 13:31:58.058 DEBUG [5686]: Connecting to database... -- 13:31:58.058 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:31:58.058 SQL [5686]: pgsql_db_connect() -- 13:31:58.063 DEBUG [5686]: Database connection successful -- 13:31:58.063 INFO [5686]: _SERVER found -- 13:31:58.063 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 13:31:58.063 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 13:31:58.063 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=fdihgf0qtmou72no6ptd36u3tub6oldg; _gid=GA1.2.2044091736.1586960731 -- 13:31:58.063 INFO [5686]: QUERY_STRING = /member/classroom -- 13:31:58.063 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:31:58.108 INFO [5686]: COREGRADE is stopping... -- 13:31:58.108 DEBUG [5686]: Closing database connection -- 13:31:58.108 SQL [5686]: pgsql_close() -- 13:31:58.720 INFO [5686]: COREGRADE is starting... -- 13:31:58.720 INFO [5686]: Version from config: 1.0 -- 13:31:58.720 DEBUG [5686]: Connecting to database... -- 13:31:58.720 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:31:58.720 SQL [5686]: pgsql_db_connect() -- 13:31:58.724 DEBUG [5686]: Database connection successful -- 13:31:58.724 INFO [5686]: _SERVER found -- 13:31:58.724 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 13:31:58.724 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 13:31:58.724 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=123t7699hp7mf1l6ssl2put1q4j6kprl; _gid=GA1.2.2044091736.1586960731 -- 13:31:58.724 INFO [5686]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 13:31:58.724 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:31:58.736 INFO [5686]: COREGRADE is stopping... -- 13:31:58.736 DEBUG [5686]: Closing database connection -- 13:31:58.736 SQL [5686]: pgsql_close() -- 13:31:58.823 INFO [5686]: COREGRADE is starting... -- 13:31:58.823 INFO [5686]: Version from config: 1.0 -- 13:31:58.823 DEBUG [5686]: Connecting to database... -- 13:31:58.823 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:31:58.823 SQL [5686]: pgsql_db_connect() -- 13:31:58.827 DEBUG [5686]: Database connection successful -- 13:31:58.827 INFO [5686]: _SERVER found -- 13:31:58.827 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 13:31:58.827 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 13:31:58.827 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=123t7699hp7mf1l6ssl2put1q4j6kprl; _gid=GA1.2.2044091736.1586960731 -- 13:31:58.827 INFO [5686]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 13:31:58.827 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:31:58.839 INFO [5686]: COREGRADE is stopping... -- 13:31:58.839 DEBUG [5686]: Closing database connection -- 13:31:58.840 SQL [5686]: pgsql_close() -- 13:31:59.419 INFO [5686]: COREGRADE is starting... -- 13:31:59.419 INFO [5686]: Version from config: 1.0 -- 13:31:59.419 DEBUG [5686]: Connecting to database... -- 13:31:59.419 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:31:59.419 SQL [5686]: pgsql_db_connect() -- 13:31:59.423 DEBUG [5686]: Database connection successful -- 13:31:59.423 INFO [5686]: _SERVER found -- 13:31:59.423 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 13:31:59.423 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 13:31:59.423 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=123t7699hp7mf1l6ssl2put1q4j6kprl; _gid=GA1.2.2044091736.1586960731 -- 13:31:59.423 INFO [5686]: QUERY_STRING = /member/viewRoom -- 13:31:59.423 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:31:59.454 INFO [5686]: COREGRADE is stopping... -- 13:31:59.454 DEBUG [5686]: Closing database connection -- 13:31:59.454 SQL [5686]: pgsql_close() -- 13:32:46.608 INFO [4193]: COREGRADE is starting... -- 13:32:46.609 INFO [4193]: Version from config: 1.0 -- 13:32:46.609 DEBUG [4193]: Connecting to database... -- 13:32:46.609 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:32:46.609 SQL [4193]: pgsql_db_connect() -- 13:32:46.613 DEBUG [4193]: Database connection successful -- 13:32:46.613 INFO [4193]: _SERVER found -- 13:32:46.613 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 13:32:46.613 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 13:32:46.613 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=123t7699hp7mf1l6ssl2put1q4j6kprl; _gid=GA1.2.2044091736.1586960731 -- 13:32:46.613 INFO [4193]: QUERY_STRING = /member/viewRoom -- 13:32:46.613 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:32:46.647 INFO [4193]: COREGRADE is stopping... -- 13:32:46.647 DEBUG [4193]: Closing database connection -- 13:32:46.647 SQL [4193]: pgsql_close() -- 13:33:46.154 INFO [5685]: COREGRADE is starting... -- 13:33:46.154 INFO [5685]: Version from config: 1.0 -- 13:33:46.154 DEBUG [5685]: Connecting to database... -- 13:33:46.154 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:33:46.154 SQL [5685]: pgsql_db_connect() -- 13:33:46.158 DEBUG [5685]: Database connection successful -- 13:33:46.158 INFO [5685]: _SERVER found -- 13:33:46.158 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 13:33:46.158 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 13:33:46.158 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=123t7699hp7mf1l6ssl2put1q4j6kprl; _gid=GA1.2.2044091736.1586960731 -- 13:33:46.158 INFO [5685]: QUERY_STRING = /member/viewRoom -- 13:33:46.158 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:33:46.191 INFO [5685]: COREGRADE is stopping... -- 13:33:46.191 DEBUG [5685]: Closing database connection -- 13:33:46.191 SQL [5685]: pgsql_close() -- 13:34:39.267 INFO [6715]: COREGRADE is starting... -- 13:34:39.267 INFO [6715]: Version from config: 1.0 -- 13:34:39.267 DEBUG [6715]: Connecting to database... -- 13:34:39.267 DEBUG [6715]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:34:39.267 SQL [6715]: pgsql_db_connect() -- 13:34:39.272 DEBUG [6715]: Database connection successful -- 13:34:39.272 INFO [6715]: _SERVER found -- 13:34:39.272 INFO [6715]: REMOTE_ADDR = 10.0.0.15 -- 13:34:39.272 INFO [6715]: SERVER_NAME = oameye.works.coregrade.com -- 13:34:39.272 INFO [6715]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=123t7699hp7mf1l6ssl2put1q4j6kprl; _gid=GA1.2.2044091736.1586960731 -- 13:34:39.272 INFO [6715]: QUERY_STRING = /member/classroom -- 13:34:39.272 INFO [6715]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:34:39.316 INFO [6715]: COREGRADE is stopping... -- 13:34:39.316 DEBUG [6715]: Closing database connection -- 13:34:39.316 SQL [6715]: pgsql_close() -- 13:34:39.835 INFO [5697]: COREGRADE is starting... -- 13:34:39.835 INFO [5697]: Version from config: 1.0 -- 13:34:39.835 DEBUG [5697]: Connecting to database... -- 13:34:39.835 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:34:39.835 SQL [5697]: pgsql_db_connect() -- 13:34:39.839 DEBUG [5697]: Database connection successful -- 13:34:39.839 INFO [5697]: _SERVER found -- 13:34:39.839 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 13:34:39.839 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 13:34:39.839 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=123t7699hp7mf1l6ssl2put1q4j6kprl; _gid=GA1.2.2044091736.1586960731 -- 13:34:39.839 INFO [5697]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 13:34:39.839 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:34:39.852 INFO [5697]: COREGRADE is stopping... -- 13:34:39.852 DEBUG [5697]: Closing database connection -- 13:34:39.852 SQL [5697]: pgsql_close() -- 13:34:39.932 INFO [6715]: COREGRADE is starting... -- 13:34:39.932 INFO [6715]: Version from config: 1.0 -- 13:34:39.932 DEBUG [6715]: Connecting to database... -- 13:34:39.932 DEBUG [6715]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:34:39.932 SQL [6715]: pgsql_db_connect() -- 13:34:39.937 DEBUG [6715]: Database connection successful -- 13:34:39.937 INFO [6715]: _SERVER found -- 13:34:39.937 INFO [6715]: REMOTE_ADDR = 10.0.0.15 -- 13:34:39.937 INFO [6715]: SERVER_NAME = oameye.works.coregrade.com -- 13:34:39.937 INFO [6715]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=123t7699hp7mf1l6ssl2put1q4j6kprl; _gid=GA1.2.2044091736.1586960731 -- 13:34:39.937 INFO [6715]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 13:34:39.937 INFO [6715]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:34:39.948 INFO [6715]: COREGRADE is stopping... -- 13:34:39.948 DEBUG [6715]: Closing database connection -- 13:34:39.948 SQL [6715]: pgsql_close() -- 13:34:41.582 INFO [6508]: COREGRADE is starting... -- 13:34:41.583 INFO [6508]: Version from config: 1.0 -- 13:34:41.583 DEBUG [6508]: Connecting to database... -- 13:34:41.583 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:34:41.583 SQL [6508]: pgsql_db_connect() -- 13:34:41.587 DEBUG [6508]: Database connection successful -- 13:34:41.587 INFO [6508]: _SERVER found -- 13:34:41.587 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 13:34:41.587 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 13:34:41.587 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=123t7699hp7mf1l6ssl2put1q4j6kprl; _gid=GA1.2.2044091736.1586960731 -- 13:34:41.587 INFO [6508]: QUERY_STRING = /member/viewRoom -- 13:34:41.587 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:34:41.621 INFO [6508]: COREGRADE is stopping... -- 13:34:41.621 DEBUG [6508]: Closing database connection -- 13:34:41.621 SQL [6508]: pgsql_close() -- 13:35:38.875 INFO [5687]: COREGRADE is starting... -- 13:35:38.876 INFO [5687]: Version from config: 1.0 -- 13:35:38.876 DEBUG [5687]: Connecting to database... -- 13:35:38.876 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:35:38.876 SQL [5687]: pgsql_db_connect() -- 13:35:38.880 DEBUG [5687]: Database connection successful -- 13:35:38.880 INFO [5687]: _SERVER found -- 13:35:38.880 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 13:35:38.880 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 13:35:38.880 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=123t7699hp7mf1l6ssl2put1q4j6kprl; _gid=GA1.2.2044091736.1586960731 -- 13:35:38.880 INFO [5687]: QUERY_STRING = /member/viewRoom -- 13:35:38.880 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:35:38.913 INFO [5687]: COREGRADE is stopping... -- 13:35:38.913 DEBUG [5687]: Closing database connection -- 13:35:38.913 SQL [5687]: pgsql_close() -- 13:36:23.621 INFO [4251]: COREGRADE is starting... -- 13:36:23.621 INFO [4251]: Version from config: 1.0 -- 13:36:23.621 DEBUG [4251]: Connecting to database... -- 13:36:23.621 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:36:23.621 SQL [4251]: pgsql_db_connect() -- 13:36:23.625 DEBUG [4251]: Database connection successful -- 13:36:23.625 INFO [4251]: _SERVER found -- 13:36:23.625 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 13:36:23.625 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 13:36:23.625 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=123t7699hp7mf1l6ssl2put1q4j6kprl; _gid=GA1.2.2044091736.1586960731 -- 13:36:23.625 INFO [4251]: QUERY_STRING = /member/viewRoom -- 13:36:23.625 INFO [4251]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:36:23.657 INFO [4251]: COREGRADE is stopping... -- 13:36:23.657 DEBUG [4251]: Closing database connection -- 13:36:23.657 SQL [4251]: pgsql_close() -- 13:36:59.793 INFO [5686]: COREGRADE is starting... -- 13:36:59.794 INFO [5686]: Version from config: 1.0 -- 13:36:59.794 DEBUG [5686]: Connecting to database... -- 13:36:59.794 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:36:59.794 SQL [5686]: pgsql_db_connect() -- 13:36:59.798 DEBUG [5686]: Database connection successful -- 13:36:59.798 INFO [5686]: _SERVER found -- 13:36:59.798 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 13:36:59.798 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 13:36:59.798 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=123t7699hp7mf1l6ssl2put1q4j6kprl; _gid=GA1.2.2044091736.1586960731 -- 13:36:59.798 INFO [5686]: QUERY_STRING = /member/viewRoom -- 13:36:59.798 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:36:59.830 INFO [5686]: COREGRADE is stopping... -- 13:36:59.830 DEBUG [5686]: Closing database connection -- 13:36:59.830 SQL [5686]: pgsql_close() -- 13:38:40.376 INFO [4193]: COREGRADE is starting... -- 13:38:40.376 INFO [4193]: Version from config: 1.0 -- 13:38:40.376 DEBUG [4193]: Connecting to database... -- 13:38:40.376 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:38:40.376 SQL [4193]: pgsql_db_connect() -- 13:38:40.381 DEBUG [4193]: Database connection successful -- 13:38:40.381 INFO [4193]: _SERVER found -- 13:38:40.381 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 13:38:40.381 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 13:38:40.381 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=123t7699hp7mf1l6ssl2put1q4j6kprl; _gid=GA1.2.2044091736.1586960731 -- 13:38:40.381 INFO [4193]: QUERY_STRING = /member/viewRoom -- 13:38:40.381 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:38:40.414 INFO [4193]: COREGRADE is stopping... -- 13:38:40.414 DEBUG [4193]: Closing database connection -- 13:38:40.414 SQL [4193]: pgsql_close() -- 13:38:41.599 INFO [4193]: COREGRADE is starting... -- 13:38:41.600 INFO [4193]: Version from config: 1.0 -- 13:38:41.600 DEBUG [4193]: Connecting to database... -- 13:38:41.600 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:38:41.600 SQL [4193]: pgsql_db_connect() -- 13:38:41.604 DEBUG [4193]: Database connection successful -- 13:38:41.604 INFO [4193]: _SERVER found -- 13:38:41.604 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 13:38:41.604 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 13:38:41.604 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=123t7699hp7mf1l6ssl2put1q4j6kprl; _gid=GA1.2.2044091736.1586960731 -- 13:38:41.604 INFO [4193]: QUERY_STRING = /member/viewRoom -- 13:38:41.604 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:38:41.635 INFO [4193]: COREGRADE is stopping... -- 13:38:41.635 DEBUG [4193]: Closing database connection -- 13:38:41.635 SQL [4193]: pgsql_close() -- 13:38:46.128 INFO [4193]: COREGRADE is starting... -- 13:38:46.128 INFO [4193]: Version from config: 1.0 -- 13:38:46.128 DEBUG [4193]: Connecting to database... -- 13:38:46.128 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:38:46.129 SQL [4193]: pgsql_db_connect() -- 13:38:46.133 DEBUG [4193]: Database connection successful -- 13:38:46.133 INFO [4193]: _SERVER found -- 13:38:46.133 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 13:38:46.133 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 13:38:46.133 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=123t7699hp7mf1l6ssl2put1q4j6kprl; _gid=GA1.2.2044091736.1586960731 -- 13:38:46.133 INFO [4193]: QUERY_STRING = /member/classroom -- 13:38:46.133 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:38:46.176 INFO [4193]: COREGRADE is stopping... -- 13:38:46.176 DEBUG [4193]: Closing database connection -- 13:38:46.176 SQL [4193]: pgsql_close() -- 13:38:46.458 INFO [4193]: COREGRADE is starting... -- 13:38:46.458 INFO [4193]: Version from config: 1.0 -- 13:38:46.458 DEBUG [4193]: Connecting to database... -- 13:38:46.458 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:38:46.458 SQL [4193]: pgsql_db_connect() -- 13:38:46.462 DEBUG [4193]: Database connection successful -- 13:38:46.462 INFO [4193]: _SERVER found -- 13:38:46.462 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 13:38:46.462 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 13:38:46.462 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=sk29roimbodk7s8j2mqmt3q3tl5qei67; _gid=GA1.2.2044091736.1586960731 -- 13:38:46.462 INFO [4193]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 13:38:46.462 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:38:46.474 INFO [4193]: COREGRADE is stopping... -- 13:38:46.474 DEBUG [4193]: Closing database connection -- 13:38:46.474 SQL [4193]: pgsql_close() -- 13:38:48.303 INFO [4193]: COREGRADE is starting... -- 13:38:48.303 INFO [4193]: Version from config: 1.0 -- 13:38:48.303 DEBUG [4193]: Connecting to database... -- 13:38:48.303 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:38:48.303 SQL [4193]: pgsql_db_connect() -- 13:38:48.307 DEBUG [4193]: Database connection successful -- 13:38:48.307 INFO [4193]: _SERVER found -- 13:38:48.307 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 13:38:48.307 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 13:38:48.307 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=sk29roimbodk7s8j2mqmt3q3tl5qei67; _gid=GA1.2.2044091736.1586960731 -- 13:38:48.307 INFO [4193]: QUERY_STRING = /member/viewRoom -- 13:38:48.307 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:38:48.341 INFO [4193]: COREGRADE is stopping... -- 13:38:48.341 DEBUG [4193]: Closing database connection -- 13:38:48.341 SQL [4193]: pgsql_close() -- 13:43:28.777 INFO [5685]: COREGRADE is starting... -- 13:43:28.777 INFO [5685]: Version from config: 1.0 -- 13:43:28.777 DEBUG [5685]: Connecting to database... -- 13:43:28.777 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:43:28.777 SQL [5685]: pgsql_db_connect() -- 13:43:28.784 DEBUG [5685]: Database connection successful -- 13:43:28.784 INFO [5685]: _SERVER found -- 13:43:28.784 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 13:43:28.784 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 13:43:28.784 INFO [5685]: QUERY_STRING = -- 13:43:28.784 INFO [5685]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 13:43:28.823 INFO [5685]: COREGRADE is stopping... -- 13:43:28.823 DEBUG [5685]: Closing database connection -- 13:43:28.823 SQL [5685]: pgsql_close() -- 15:08:01.520 INFO [7377]: COREGRADE is starting... -- 15:08:01.520 INFO [7377]: Version from config: 1.0 -- 15:08:01.520 DEBUG [7377]: Connecting to database... -- 15:08:01.520 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:08:01.520 SQL [7377]: pgsql_db_connect() -- 15:08:01.525 DEBUG [7377]: Database connection successful -- 15:08:01.525 INFO [7377]: _SERVER found -- 15:08:01.525 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 15:08:01.525 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 15:08:01.525 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1035126347.1586859928 -- 15:08:01.525 INFO [7377]: QUERY_STRING = -- 15:08:01.525 INFO [7377]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:08:01.574 INFO [7377]: COREGRADE is stopping... -- 15:08:01.574 DEBUG [7377]: Closing database connection -- 15:08:01.574 SQL [7377]: pgsql_close() -- 15:08:03.018 INFO [4834]: COREGRADE is starting... -- 15:08:03.019 INFO [4834]: Version from config: 1.0 -- 15:08:03.019 DEBUG [4834]: Connecting to database... -- 15:08:03.019 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:08:03.019 SQL [4834]: pgsql_db_connect() -- 15:08:03.024 DEBUG [4834]: Database connection successful -- 15:08:03.024 INFO [4834]: _SERVER found -- 15:08:03.024 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 15:08:03.024 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 15:08:03.024 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1035126347.1586859928; ci_session=lcsrb2qtkq05175df6m6sokuhh0mpd9q -- 15:08:03.024 INFO [4834]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:08:03.024 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:08:03.036 INFO [4834]: COREGRADE is stopping... -- 15:08:03.036 DEBUG [4834]: Closing database connection -- 15:08:03.036 SQL [4834]: pgsql_close() -- 15:08:54.371 INFO [6508]: COREGRADE is starting... -- 15:08:54.371 INFO [6508]: Version from config: 1.0 -- 15:08:54.371 DEBUG [6508]: Connecting to database... -- 15:08:54.371 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:08:54.371 SQL [6508]: pgsql_db_connect() -- 15:08:54.376 DEBUG [6508]: Database connection successful -- 15:08:54.376 INFO [6508]: _SERVER found -- 15:08:54.376 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 15:08:54.376 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 15:08:54.376 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1035126347.1586859928; ci_session=lcsrb2qtkq05175df6m6sokuhh0mpd9q; _gat_gtag_UA_54829827_2=1 -- 15:08:54.376 INFO [6508]: QUERY_STRING = /home/aboutus -- 15:08:54.376 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:08:54.412 INFO [6508]: COREGRADE is stopping... -- 15:08:54.412 DEBUG [6508]: Closing database connection -- 15:08:54.412 SQL [6508]: pgsql_close() -- 15:08:55.216 INFO [5686]: COREGRADE is starting... -- 15:08:55.216 INFO [5686]: Version from config: 1.0 -- 15:08:55.216 DEBUG [5686]: Connecting to database... -- 15:08:55.216 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:08:55.216 SQL [5686]: pgsql_db_connect() -- 15:08:55.220 DEBUG [5686]: Database connection successful -- 15:08:55.220 INFO [5686]: _SERVER found -- 15:08:55.220 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 15:08:55.220 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 15:08:55.220 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1035126347.1586859928; ci_session=lcsrb2qtkq05175df6m6sokuhh0mpd9q; _gat_gtag_UA_54829827_2=1 -- 15:08:55.220 INFO [5686]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:08:55.220 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:08:55.232 INFO [5686]: COREGRADE is stopping... -- 15:08:55.232 DEBUG [5686]: Closing database connection -- 15:08:55.232 SQL [5686]: pgsql_close() -- 15:08:59.271 INFO [5685]: COREGRADE is starting... -- 15:08:59.271 INFO [5685]: Version from config: 1.0 -- 15:08:59.271 DEBUG [5685]: Connecting to database... -- 15:08:59.271 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:08:59.271 SQL [5685]: pgsql_db_connect() -- 15:08:59.275 DEBUG [5685]: Database connection successful -- 15:08:59.275 INFO [5685]: _SERVER found -- 15:08:59.275 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 15:08:59.275 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 15:08:59.275 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1035126347.1586859928; ci_session=lcsrb2qtkq05175df6m6sokuhh0mpd9q; _gat_gtag_UA_54829827_2=1 -- 15:08:59.275 INFO [5685]: QUERY_STRING = /home/terms -- 15:08:59.275 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:08:59.308 INFO [5685]: COREGRADE is stopping... -- 15:08:59.308 DEBUG [5685]: Closing database connection -- 15:08:59.308 SQL [5685]: pgsql_close() -- 15:09:04.549 INFO [7377]: COREGRADE is starting... -- 15:09:04.550 INFO [7377]: Version from config: 1.0 -- 15:09:04.550 DEBUG [7377]: Connecting to database... -- 15:09:04.550 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:09:04.550 SQL [7377]: pgsql_db_connect() -- 15:09:04.553 DEBUG [7377]: Database connection successful -- 15:09:04.553 INFO [7377]: _SERVER found -- 15:09:04.553 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 15:09:04.553 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 15:09:04.553 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1035126347.1586859928; ci_session=lcsrb2qtkq05175df6m6sokuhh0mpd9q -- 15:09:04.553 INFO [7377]: QUERY_STRING = /home/privacy -- 15:09:04.553 INFO [7377]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:09:04.585 INFO [7377]: COREGRADE is stopping... -- 15:09:04.585 DEBUG [7377]: Closing database connection -- 15:09:04.585 SQL [7377]: pgsql_close() -- 15:09:08.321 INFO [5697]: COREGRADE is starting... -- 15:09:08.322 INFO [5697]: Version from config: 1.0 -- 15:09:08.322 DEBUG [5697]: Connecting to database... -- 15:09:08.322 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:09:08.322 SQL [5697]: pgsql_db_connect() -- 15:09:08.326 DEBUG [5697]: Database connection successful -- 15:09:08.326 INFO [5697]: _SERVER found -- 15:09:08.326 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 15:09:08.326 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 15:09:08.326 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1035126347.1586859928; ci_session=lcsrb2qtkq05175df6m6sokuhh0mpd9q -- 15:09:08.326 INFO [5697]: QUERY_STRING = /home/security -- 15:09:08.326 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:09:08.358 INFO [5697]: COREGRADE is stopping... -- 15:09:08.359 DEBUG [5697]: Closing database connection -- 15:09:08.359 SQL [5697]: pgsql_close() -- 15:09:11.120 INFO [5697]: COREGRADE is starting... -- 15:09:11.120 INFO [5697]: Version from config: 1.0 -- 15:09:11.120 DEBUG [5697]: Connecting to database... -- 15:09:11.120 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:09:11.120 SQL [5697]: pgsql_db_connect() -- 15:09:11.124 DEBUG [5697]: Database connection successful -- 15:09:11.124 INFO [5697]: _SERVER found -- 15:09:11.124 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 15:09:11.124 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 15:09:11.124 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1035126347.1586859928; ci_session=lcsrb2qtkq05175df6m6sokuhh0mpd9q -- 15:09:11.124 INFO [5697]: QUERY_STRING = -- 15:09:11.124 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:09:11.160 INFO [5697]: COREGRADE is stopping... -- 15:09:11.160 DEBUG [5697]: Closing database connection -- 15:09:11.160 SQL [5697]: pgsql_close() -- 15:09:11.614 INFO [5697]: COREGRADE is starting... -- 15:09:11.615 INFO [5697]: Version from config: 1.0 -- 15:09:11.615 DEBUG [5697]: Connecting to database... -- 15:09:11.615 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:09:11.615 SQL [5697]: pgsql_db_connect() -- 15:09:11.619 DEBUG [5697]: Database connection successful -- 15:09:11.619 INFO [5697]: _SERVER found -- 15:09:11.619 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 15:09:11.619 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 15:09:11.619 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1035126347.1586859928; ci_session=lcsrb2qtkq05175df6m6sokuhh0mpd9q -- 15:09:11.619 INFO [5697]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:09:11.619 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:09:11.630 INFO [5697]: COREGRADE is stopping... -- 15:09:11.630 DEBUG [5697]: Closing database connection -- 15:09:11.630 SQL [5697]: pgsql_close() -- 15:15:01.229 INFO [4834]: COREGRADE is starting... -- 15:15:01.230 INFO [4834]: Version from config: 1.0 -- 15:15:01.230 DEBUG [4834]: Connecting to database... -- 15:15:01.230 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:15:01.230 SQL [4834]: pgsql_db_connect() -- 15:15:01.234 DEBUG [4834]: Database connection successful -- 15:15:01.234 INFO [4834]: _SERVER found -- 15:15:01.234 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 15:15:01.234 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 15:15:01.234 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1035126347.1586859928; ci_session=lcsrb2qtkq05175df6m6sokuhh0mpd9q -- 15:15:01.234 INFO [4834]: QUERY_STRING = -- 15:15:01.234 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:15:01.273 INFO [4834]: COREGRADE is stopping... -- 15:15:01.273 DEBUG [4834]: Closing database connection -- 15:15:01.273 SQL [4834]: pgsql_close() -- 15:15:01.698 INFO [4834]: COREGRADE is starting... -- 15:15:01.698 INFO [4834]: Version from config: 1.0 -- 15:15:01.698 DEBUG [4834]: Connecting to database... -- 15:15:01.698 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:15:01.698 SQL [4834]: pgsql_db_connect() -- 15:15:01.703 DEBUG [4834]: Database connection successful -- 15:15:01.703 INFO [4834]: _SERVER found -- 15:15:01.703 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 15:15:01.703 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 15:15:01.703 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1035126347.1586859928; ci_session=r9k9r1dqtkpldgl8ptokm2itakarbqed -- 15:15:01.703 INFO [4834]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:15:01.703 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:15:01.714 INFO [4834]: COREGRADE is stopping... -- 15:15:01.714 DEBUG [4834]: Closing database connection -- 15:15:01.714 SQL [4834]: pgsql_close() -- 16:49:05.433 INFO [7885]: COREGRADE is starting... -- 16:49:05.433 INFO [7885]: Version from config: 1.0 -- 16:49:05.434 DEBUG [7885]: Connecting to database... -- 16:49:05.434 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:49:05.434 SQL [7885]: pgsql_db_connect() -- 16:49:05.438 DEBUG [7885]: Database connection successful -- 16:49:05.438 INFO [7885]: _SERVER found -- 16:49:05.438 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 16:49:05.438 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 16:49:05.438 INFO [7885]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; _gat_gtag_UA_54829827_2=1 -- 16:49:05.438 INFO [7885]: QUERY_STRING = -- 16:49:05.438 INFO [7885]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:49:05.486 INFO [7885]: COREGRADE is stopping... -- 16:49:05.486 DEBUG [7885]: Closing database connection -- 16:49:05.486 SQL [7885]: pgsql_close() -- 16:49:07.204 INFO [5687]: COREGRADE is starting... -- 16:49:07.204 INFO [5687]: Version from config: 1.0 -- 16:49:07.204 DEBUG [5687]: Connecting to database... -- 16:49:07.204 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:49:07.204 SQL [5687]: pgsql_db_connect() -- 16:49:07.209 DEBUG [5687]: Database connection successful -- 16:49:07.209 INFO [5687]: _SERVER found -- 16:49:07.209 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 16:49:07.209 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 16:49:07.209 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; _gat_gtag_UA_54829827_2=1; ci_session=fs4ptsbc2d7nnq3rcfhub00lo30strob -- 16:49:07.209 INFO [5687]: QUERY_STRING = -- 16:49:07.209 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:49:07.247 INFO [5687]: COREGRADE is stopping... -- 16:49:07.247 DEBUG [5687]: Closing database connection -- 16:49:07.247 SQL [5687]: pgsql_close() -- 16:49:08.018 INFO [7885]: COREGRADE is starting... -- 16:49:08.018 INFO [7885]: Version from config: 1.0 -- 16:49:08.018 DEBUG [7885]: Connecting to database... -- 16:49:08.018 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:49:08.018 SQL [7885]: pgsql_db_connect() -- 16:49:08.022 DEBUG [7885]: Database connection successful -- 16:49:08.022 INFO [7885]: _SERVER found -- 16:49:08.022 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 16:49:08.022 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 16:49:08.022 INFO [7885]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; _gat_gtag_UA_54829827_2=1; ci_session=fs4ptsbc2d7nnq3rcfhub00lo30strob -- 16:49:08.022 INFO [7885]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:49:08.022 INFO [7885]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:49:08.033 INFO [7885]: COREGRADE is stopping... -- 16:49:08.033 DEBUG [7885]: Closing database connection -- 16:49:08.033 SQL [7885]: pgsql_close() -- 16:49:19.316 INFO [4251]: COREGRADE is starting... -- 16:49:19.316 INFO [4251]: Version from config: 1.0 -- 16:49:19.316 DEBUG [4251]: Connecting to database... -- 16:49:19.316 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:49:19.316 SQL [4251]: pgsql_db_connect() -- 16:49:19.320 DEBUG [4251]: Database connection successful -- 16:49:19.320 INFO [4251]: _SERVER found -- 16:49:19.320 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 16:49:19.320 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 16:49:19.320 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; _gat_gtag_UA_54829827_2=1; ci_session=fs4ptsbc2d7nnq3rcfhub00lo30strob -- 16:49:19.320 INFO [4251]: QUERY_STRING = /home/security -- 16:49:19.320 INFO [4251]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:49:19.354 INFO [4251]: COREGRADE is stopping... -- 16:49:19.354 DEBUG [4251]: Closing database connection -- 16:49:19.354 SQL [4251]: pgsql_close() -- 16:49:20.112 INFO [4251]: COREGRADE is starting... -- 16:49:20.112 INFO [4251]: Version from config: 1.0 -- 16:49:20.112 DEBUG [4251]: Connecting to database... -- 16:49:20.112 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:49:20.112 SQL [4251]: pgsql_db_connect() -- 16:49:20.116 DEBUG [4251]: Database connection successful -- 16:49:20.116 INFO [4251]: _SERVER found -- 16:49:20.116 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 16:49:20.116 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 16:49:20.116 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; _gat_gtag_UA_54829827_2=1; ci_session=fs4ptsbc2d7nnq3rcfhub00lo30strob -- 16:49:20.116 INFO [4251]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:49:20.116 INFO [4251]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:49:20.128 INFO [4251]: COREGRADE is stopping... -- 16:49:20.128 DEBUG [4251]: Closing database connection -- 16:49:20.128 SQL [4251]: pgsql_close() -- 16:49:34.825 INFO [4193]: COREGRADE is starting... -- 16:49:34.825 INFO [4193]: Version from config: 1.0 -- 16:49:34.825 DEBUG [4193]: Connecting to database... -- 16:49:34.825 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:49:34.825 SQL [4193]: pgsql_db_connect() -- 16:49:34.829 DEBUG [4193]: Database connection successful -- 16:49:34.829 INFO [4193]: _SERVER found -- 16:49:34.829 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 16:49:34.829 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 16:49:34.829 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; _gat_gtag_UA_54829827_2=1; ci_session=fs4ptsbc2d7nnq3rcfhub00lo30strob -- 16:49:34.829 INFO [4193]: QUERY_STRING = /home/security -- 16:49:34.829 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:49:34.864 INFO [4193]: COREGRADE is stopping... -- 16:49:34.864 DEBUG [4193]: Closing database connection -- 16:49:34.864 SQL [4193]: pgsql_close() -- 16:49:34.993 INFO [4193]: COREGRADE is starting... -- 16:49:34.993 INFO [4193]: Version from config: 1.0 -- 16:49:34.993 DEBUG [4193]: Connecting to database... -- 16:49:34.994 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:49:34.994 SQL [4193]: pgsql_db_connect() -- 16:49:34.998 DEBUG [4193]: Database connection successful -- 16:49:34.998 INFO [4193]: _SERVER found -- 16:49:34.998 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 16:49:34.998 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 16:49:34.998 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; _gat_gtag_UA_54829827_2=1; ci_session=fs4ptsbc2d7nnq3rcfhub00lo30strob -- 16:49:34.998 INFO [4193]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:49:34.998 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:49:35.009 INFO [4193]: COREGRADE is stopping... -- 16:49:35.009 DEBUG [4193]: Closing database connection -- 16:49:35.009 SQL [4193]: pgsql_close() -- 16:50:09.312 INFO [6508]: COREGRADE is starting... -- 16:50:09.313 INFO [6508]: Version from config: 1.0 -- 16:50:09.313 DEBUG [6508]: Connecting to database... -- 16:50:09.313 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:50:09.313 SQL [6508]: pgsql_db_connect() -- 16:50:09.318 DEBUG [6508]: Database connection successful -- 16:50:09.318 INFO [6508]: _SERVER found -- 16:50:09.318 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 16:50:09.318 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 16:50:09.318 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=fs4ptsbc2d7nnq3rcfhub00lo30strob -- 16:50:09.318 INFO [6508]: QUERY_STRING = /home/security -- 16:50:09.318 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:50:09.354 INFO [6508]: COREGRADE is stopping... -- 16:50:09.354 DEBUG [6508]: Closing database connection -- 16:50:09.354 SQL [6508]: pgsql_close() -- 16:50:09.537 INFO [6508]: COREGRADE is starting... -- 16:50:09.538 INFO [6508]: Version from config: 1.0 -- 16:50:09.538 DEBUG [6508]: Connecting to database... -- 16:50:09.538 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:50:09.538 SQL [6508]: pgsql_db_connect() -- 16:50:09.542 DEBUG [6508]: Database connection successful -- 16:50:09.542 INFO [6508]: _SERVER found -- 16:50:09.542 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 16:50:09.542 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 16:50:09.542 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=fs4ptsbc2d7nnq3rcfhub00lo30strob -- 16:50:09.542 INFO [6508]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:50:09.542 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:50:09.554 INFO [6508]: COREGRADE is stopping... -- 16:50:09.554 DEBUG [6508]: Closing database connection -- 16:50:09.554 SQL [6508]: pgsql_close() -- 16:56:01.770 INFO [5686]: COREGRADE is starting... -- 16:56:01.770 INFO [5686]: Version from config: 1.0 -- 16:56:01.770 DEBUG [5686]: Connecting to database... -- 16:56:01.770 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:01.770 SQL [5686]: pgsql_db_connect() -- 16:56:01.775 DEBUG [5686]: Database connection successful -- 16:56:01.775 INFO [5686]: _SERVER found -- 16:56:01.775 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 16:56:01.775 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 16:56:01.775 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=fs4ptsbc2d7nnq3rcfhub00lo30strob -- 16:56:01.775 INFO [5686]: QUERY_STRING = /home/security -- 16:56:01.775 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:56:01.809 INFO [5686]: COREGRADE is stopping... -- 16:56:01.809 DEBUG [5686]: Closing database connection -- 16:56:01.809 SQL [5686]: pgsql_close() -- 16:56:02.006 INFO [5686]: COREGRADE is starting... -- 16:56:02.007 INFO [5686]: Version from config: 1.0 -- 16:56:02.007 DEBUG [5686]: Connecting to database... -- 16:56:02.007 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:02.007 SQL [5686]: pgsql_db_connect() -- 16:56:02.011 DEBUG [5686]: Database connection successful -- 16:56:02.011 INFO [5686]: _SERVER found -- 16:56:02.011 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 16:56:02.011 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 16:56:02.011 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=94m6dg2le39nfs7e3cu6qdhrao2kv31q -- 16:56:02.011 INFO [5686]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:56:02.011 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:56:02.022 INFO [5686]: COREGRADE is stopping... -- 16:56:02.022 DEBUG [5686]: Closing database connection -- 16:56:02.022 SQL [5686]: pgsql_close() -- 16:56:04.590 INFO [5686]: COREGRADE is starting... -- 16:56:04.590 INFO [5686]: Version from config: 1.0 -- 16:56:04.590 DEBUG [5686]: Connecting to database... -- 16:56:04.590 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:04.590 SQL [5686]: pgsql_db_connect() -- 16:56:04.594 DEBUG [5686]: Database connection successful -- 16:56:04.594 INFO [5686]: _SERVER found -- 16:56:04.594 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 16:56:04.594 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 16:56:04.594 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=94m6dg2le39nfs7e3cu6qdhrao2kv31q -- 16:56:04.594 INFO [5686]: QUERY_STRING = -- 16:56:04.594 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:56:04.625 INFO [5686]: COREGRADE is stopping... -- 16:56:04.626 DEBUG [5686]: Closing database connection -- 16:56:04.626 SQL [5686]: pgsql_close() -- 16:56:04.796 INFO [5686]: COREGRADE is starting... -- 16:56:04.797 INFO [5686]: Version from config: 1.0 -- 16:56:04.797 DEBUG [5686]: Connecting to database... -- 16:56:04.797 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:04.797 SQL [5686]: pgsql_db_connect() -- 16:56:04.801 DEBUG [5686]: Database connection successful -- 16:56:04.801 INFO [5686]: _SERVER found -- 16:56:04.801 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 16:56:04.801 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 16:56:04.801 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=94m6dg2le39nfs7e3cu6qdhrao2kv31q -- 16:56:04.801 INFO [5686]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:56:04.801 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:56:04.812 INFO [5686]: COREGRADE is stopping... -- 16:56:04.812 DEBUG [5686]: Closing database connection -- 16:56:04.812 SQL [5686]: pgsql_close() -- 16:56:10.889 INFO [5685]: COREGRADE is starting... -- 16:56:10.889 INFO [5685]: Version from config: 1.0 -- 16:56:10.889 DEBUG [5685]: Connecting to database... -- 16:56:10.889 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:10.889 SQL [5685]: pgsql_db_connect() -- 16:56:10.893 DEBUG [5685]: Database connection successful -- 16:56:10.893 INFO [5685]: _SERVER found -- 16:56:10.893 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 16:56:10.893 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 16:56:10.893 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=94m6dg2le39nfs7e3cu6qdhrao2kv31q; _gat_gtag_UA_54829827_2=1 -- 16:56:10.893 INFO [5685]: QUERY_STRING = /home/security -- 16:56:10.893 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:56:10.926 INFO [5685]: COREGRADE is stopping... -- 16:56:10.926 DEBUG [5685]: Closing database connection -- 16:56:10.926 SQL [5685]: pgsql_close() -- 16:56:11.168 INFO [5685]: COREGRADE is starting... -- 16:56:11.168 INFO [5685]: Version from config: 1.0 -- 16:56:11.168 DEBUG [5685]: Connecting to database... -- 16:56:11.168 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:11.168 SQL [5685]: pgsql_db_connect() -- 16:56:11.172 DEBUG [5685]: Database connection successful -- 16:56:11.172 INFO [5685]: _SERVER found -- 16:56:11.172 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 16:56:11.172 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 16:56:11.172 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=94m6dg2le39nfs7e3cu6qdhrao2kv31q; _gat_gtag_UA_54829827_2=1 -- 16:56:11.172 INFO [5685]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:56:11.172 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:56:11.184 INFO [5685]: COREGRADE is stopping... -- 16:56:11.184 DEBUG [5685]: Closing database connection -- 16:56:11.184 SQL [5685]: pgsql_close() -- 16:56:17.532 INFO [7377]: COREGRADE is starting... -- 16:56:17.532 INFO [7377]: Version from config: 1.0 -- 16:56:17.532 DEBUG [7377]: Connecting to database... -- 16:56:17.532 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:17.532 SQL [7377]: pgsql_db_connect() -- 16:56:17.537 DEBUG [7377]: Database connection successful -- 16:56:17.537 INFO [7377]: _SERVER found -- 16:56:17.537 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 16:56:17.537 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 16:56:17.537 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=94m6dg2le39nfs7e3cu6qdhrao2kv31q; _gat_gtag_UA_54829827_2=1 -- 16:56:17.537 INFO [7377]: QUERY_STRING = -- 16:56:17.537 INFO [7377]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:56:17.571 INFO [7377]: COREGRADE is stopping... -- 16:56:17.571 DEBUG [7377]: Closing database connection -- 16:56:17.571 SQL [7377]: pgsql_close() -- 16:56:19.942 INFO [7377]: COREGRADE is starting... -- 16:56:19.942 INFO [7377]: Version from config: 1.0 -- 16:56:19.942 DEBUG [7377]: Connecting to database... -- 16:56:19.942 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:19.942 SQL [7377]: pgsql_db_connect() -- 16:56:19.946 DEBUG [7377]: Database connection successful -- 16:56:19.946 INFO [7377]: _SERVER found -- 16:56:19.946 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 16:56:19.946 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 16:56:19.946 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=94m6dg2le39nfs7e3cu6qdhrao2kv31q; _gat_gtag_UA_54829827_2=1 -- 16:56:19.946 INFO [7377]: QUERY_STRING = /home/privacy -- 16:56:19.946 INFO [7377]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:56:19.977 INFO [7377]: COREGRADE is stopping... -- 16:56:19.977 DEBUG [7377]: Closing database connection -- 16:56:19.977 SQL [7377]: pgsql_close() -- 16:56:20.140 INFO [7377]: COREGRADE is starting... -- 16:56:20.140 INFO [7377]: Version from config: 1.0 -- 16:56:20.140 DEBUG [7377]: Connecting to database... -- 16:56:20.140 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:20.140 SQL [7377]: pgsql_db_connect() -- 16:56:20.144 DEBUG [7377]: Database connection successful -- 16:56:20.144 INFO [7377]: _SERVER found -- 16:56:20.144 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 16:56:20.144 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 16:56:20.144 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=94m6dg2le39nfs7e3cu6qdhrao2kv31q; _gat_gtag_UA_54829827_2=1 -- 16:56:20.144 INFO [7377]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:56:20.144 INFO [7377]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:56:20.155 INFO [7377]: COREGRADE is stopping... -- 16:56:20.155 DEBUG [7377]: Closing database connection -- 16:56:20.156 SQL [7377]: pgsql_close() -- 16:56:22.942 INFO [7377]: COREGRADE is starting... -- 16:56:22.942 INFO [7377]: Version from config: 1.0 -- 16:56:22.942 DEBUG [7377]: Connecting to database... -- 16:56:22.942 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:22.942 SQL [7377]: pgsql_db_connect() -- 16:56:22.946 DEBUG [7377]: Database connection successful -- 16:56:22.946 INFO [7377]: _SERVER found -- 16:56:22.946 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 16:56:22.946 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 16:56:22.946 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=94m6dg2le39nfs7e3cu6qdhrao2kv31q; _gat_gtag_UA_54829827_2=1 -- 16:56:22.946 INFO [7377]: QUERY_STRING = -- 16:56:22.946 INFO [7377]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:56:22.977 INFO [7377]: COREGRADE is stopping... -- 16:56:22.977 DEBUG [7377]: Closing database connection -- 16:56:22.977 SQL [7377]: pgsql_close() -- 16:56:26.134 INFO [7377]: COREGRADE is starting... -- 16:56:26.134 INFO [7377]: Version from config: 1.0 -- 16:56:26.134 DEBUG [7377]: Connecting to database... -- 16:56:26.134 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:26.134 SQL [7377]: pgsql_db_connect() -- 16:56:26.139 DEBUG [7377]: Database connection successful -- 16:56:26.139 INFO [7377]: _SERVER found -- 16:56:26.139 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 16:56:26.139 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 16:56:26.139 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=94m6dg2le39nfs7e3cu6qdhrao2kv31q; _gat_gtag_UA_54829827_2=1 -- 16:56:26.139 INFO [7377]: QUERY_STRING = /home/terms -- 16:56:26.139 INFO [7377]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:56:26.170 INFO [7377]: COREGRADE is stopping... -- 16:56:26.170 DEBUG [7377]: Closing database connection -- 16:56:26.170 SQL [7377]: pgsql_close() -- 16:56:26.325 INFO [7377]: COREGRADE is starting... -- 16:56:26.325 INFO [7377]: Version from config: 1.0 -- 16:56:26.325 DEBUG [7377]: Connecting to database... -- 16:56:26.325 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:26.325 SQL [7377]: pgsql_db_connect() -- 16:56:26.329 DEBUG [7377]: Database connection successful -- 16:56:26.329 INFO [7377]: _SERVER found -- 16:56:26.329 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 16:56:26.329 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 16:56:26.329 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=94m6dg2le39nfs7e3cu6qdhrao2kv31q; _gat_gtag_UA_54829827_2=1 -- 16:56:26.329 INFO [7377]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:56:26.329 INFO [7377]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:56:26.340 INFO [7377]: COREGRADE is stopping... -- 16:56:26.340 DEBUG [7377]: Closing database connection -- 16:56:26.340 SQL [7377]: pgsql_close() -- 16:57:38.499 INFO [5697]: COREGRADE is starting... -- 16:57:38.499 INFO [5697]: Version from config: 1.0 -- 16:57:38.499 DEBUG [5697]: Connecting to database... -- 16:57:38.499 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:38.499 SQL [5697]: pgsql_db_connect() -- 16:57:38.504 DEBUG [5697]: Database connection successful -- 16:57:38.504 INFO [5697]: _SERVER found -- 16:57:38.504 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 16:57:38.504 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 16:57:38.504 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=94m6dg2le39nfs7e3cu6qdhrao2kv31q -- 16:57:38.504 INFO [5697]: QUERY_STRING = -- 16:57:38.504 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:57:38.537 INFO [5697]: COREGRADE is stopping... -- 16:57:38.537 DEBUG [5697]: Closing database connection -- 16:57:38.537 SQL [5697]: pgsql_close() -- 16:57:38.717 INFO [5697]: COREGRADE is starting... -- 16:57:38.718 INFO [5697]: Version from config: 1.0 -- 16:57:38.718 DEBUG [5697]: Connecting to database... -- 16:57:38.718 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:38.718 SQL [5697]: pgsql_db_connect() -- 16:57:38.722 DEBUG [5697]: Database connection successful -- 16:57:38.722 INFO [5697]: _SERVER found -- 16:57:38.722 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 16:57:38.722 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 16:57:38.722 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=94m6dg2le39nfs7e3cu6qdhrao2kv31q -- 16:57:38.722 INFO [5697]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:57:38.722 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:57:38.733 INFO [5697]: COREGRADE is stopping... -- 16:57:38.733 DEBUG [5697]: Closing database connection -- 16:57:38.733 SQL [5697]: pgsql_close() -- 16:58:16.253 INFO [4834]: COREGRADE is starting... -- 16:58:16.253 INFO [4834]: Version from config: 1.0 -- 16:58:16.253 DEBUG [4834]: Connecting to database... -- 16:58:16.253 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:16.254 SQL [4834]: pgsql_db_connect() -- 16:58:16.258 DEBUG [4834]: Database connection successful -- 16:58:16.258 INFO [4834]: _SERVER found -- 16:58:16.258 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 16:58:16.258 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 16:58:16.258 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=94m6dg2le39nfs7e3cu6qdhrao2kv31q; _gat_gtag_UA_54829827_2=1 -- 16:58:16.258 INFO [4834]: QUERY_STRING = /home/howitworks -- 16:58:16.258 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:58:16.292 INFO [4834]: COREGRADE is stopping... -- 16:58:16.292 DEBUG [4834]: Closing database connection -- 16:58:16.292 SQL [4834]: pgsql_close() -- 16:58:16.480 INFO [4834]: COREGRADE is starting... -- 16:58:16.480 INFO [4834]: Version from config: 1.0 -- 16:58:16.480 DEBUG [4834]: Connecting to database... -- 16:58:16.480 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:16.480 SQL [4834]: pgsql_db_connect() -- 16:58:16.485 DEBUG [4834]: Database connection successful -- 16:58:16.485 INFO [4834]: _SERVER found -- 16:58:16.485 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 16:58:16.485 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 16:58:16.485 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=94m6dg2le39nfs7e3cu6qdhrao2kv31q; _gat_gtag_UA_54829827_2=1 -- 16:58:16.485 INFO [4834]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:58:16.485 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:58:16.496 INFO [4834]: COREGRADE is stopping... -- 16:58:16.496 DEBUG [4834]: Closing database connection -- 16:58:16.496 SQL [4834]: pgsql_close() -- 16:58:19.320 INFO [4834]: COREGRADE is starting... -- 16:58:19.320 INFO [4834]: Version from config: 1.0 -- 16:58:19.320 DEBUG [4834]: Connecting to database... -- 16:58:19.320 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:19.320 SQL [4834]: pgsql_db_connect() -- 16:58:19.324 DEBUG [4834]: Database connection successful -- 16:58:19.324 INFO [4834]: _SERVER found -- 16:58:19.324 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 16:58:19.324 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 16:58:19.324 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=94m6dg2le39nfs7e3cu6qdhrao2kv31q; _gat_gtag_UA_54829827_2=1 -- 16:58:19.324 INFO [4834]: QUERY_STRING = -- 16:58:19.324 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:58:19.356 INFO [4834]: COREGRADE is stopping... -- 16:58:19.356 DEBUG [4834]: Closing database connection -- 16:58:19.356 SQL [4834]: pgsql_close() -- 16:58:19.499 INFO [4834]: COREGRADE is starting... -- 16:58:19.499 INFO [4834]: Version from config: 1.0 -- 16:58:19.499 DEBUG [4834]: Connecting to database... -- 16:58:19.499 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:19.499 SQL [4834]: pgsql_db_connect() -- 16:58:19.503 DEBUG [4834]: Database connection successful -- 16:58:19.503 INFO [4834]: _SERVER found -- 16:58:19.503 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 16:58:19.503 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 16:58:19.503 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=94m6dg2le39nfs7e3cu6qdhrao2kv31q; _gat_gtag_UA_54829827_2=1 -- 16:58:19.503 INFO [4834]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:58:19.503 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:58:19.515 INFO [4834]: COREGRADE is stopping... -- 16:58:19.515 DEBUG [4834]: Closing database connection -- 16:58:19.515 SQL [4834]: pgsql_close() -- 17:05:36.661 INFO [5687]: COREGRADE is starting... -- 17:05:36.661 INFO [5687]: Version from config: 1.0 -- 17:05:36.661 DEBUG [5687]: Connecting to database... -- 17:05:36.661 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:36.661 SQL [5687]: pgsql_db_connect() -- 17:05:36.665 DEBUG [5687]: Database connection successful -- 17:05:36.665 INFO [5687]: _SERVER found -- 17:05:36.665 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 17:05:36.665 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:36.665 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; _gid=GA1.2.2044091736.1586960731 -- 17:05:36.665 INFO [5687]: QUERY_STRING = /auth -- 17:05:36.665 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:05:36.699 INFO [5687]: COREGRADE is stopping... -- 17:05:36.699 DEBUG [5687]: Closing database connection -- 17:05:36.699 SQL [5687]: pgsql_close() -- 17:05:37.725 INFO [5687]: COREGRADE is starting... -- 17:05:37.725 INFO [5687]: Version from config: 1.0 -- 17:05:37.725 DEBUG [5687]: Connecting to database... -- 17:05:37.725 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:37.725 SQL [5687]: pgsql_db_connect() -- 17:05:37.729 DEBUG [5687]: Database connection successful -- 17:05:37.729 INFO [5687]: _SERVER found -- 17:05:37.729 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 17:05:37.729 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:37.729 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; _gid=GA1.2.2044091736.1586960731; ci_session=ik7fct0a8avb129pn9277ph27f6oiik2 -- 17:05:37.729 INFO [5687]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:05:37.729 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:05:37.741 INFO [5687]: COREGRADE is stopping... -- 17:05:37.742 DEBUG [5687]: Closing database connection -- 17:05:37.742 SQL [5687]: pgsql_close() -- 17:05:37.962 INFO [5687]: COREGRADE is starting... -- 17:05:37.963 INFO [5687]: Version from config: 1.0 -- 17:05:37.963 DEBUG [5687]: Connecting to database... -- 17:05:37.963 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:37.963 SQL [5687]: pgsql_db_connect() -- 17:05:37.967 DEBUG [5687]: Database connection successful -- 17:05:37.967 INFO [5687]: _SERVER found -- 17:05:37.967 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 17:05:37.967 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:37.967 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; _gid=GA1.2.2044091736.1586960731; ci_session=ik7fct0a8avb129pn9277ph27f6oiik2 -- 17:05:37.967 INFO [5687]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 17:05:37.967 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:05:37.978 INFO [5687]: COREGRADE is stopping... -- 17:05:37.978 DEBUG [5687]: Closing database connection -- 17:05:37.978 SQL [5687]: pgsql_close() -- 17:19:09.537 INFO [5686]: COREGRADE is starting... -- 17:19:09.538 INFO [5686]: Version from config: 1.0 -- 17:19:09.538 DEBUG [5686]: Connecting to database... -- 17:19:09.538 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:19:09.538 SQL [5686]: pgsql_db_connect() -- 17:19:09.543 DEBUG [5686]: Database connection successful -- 17:19:09.543 INFO [5686]: _SERVER found -- 17:19:09.543 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 17:19:09.543 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 17:19:09.543 INFO [5686]: QUERY_STRING = /robots.txt -- 17:19:09.543 INFO [5686]: HTTP_X_FORWARDED_FOR = 157.55.39.17 -- 17:19:09.556 INFO [5686]: COREGRADE is stopping... -- 17:19:09.556 DEBUG [5686]: Closing database connection -- 17:19:09.556 SQL [5686]: pgsql_close() -- 17:19:10.203 INFO [5686]: COREGRADE is starting... -- 17:19:10.204 INFO [5686]: Version from config: 1.0 -- 17:19:10.204 DEBUG [5686]: Connecting to database... -- 17:19:10.204 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:19:10.204 SQL [5686]: pgsql_db_connect() -- 17:19:10.208 DEBUG [5686]: Database connection successful -- 17:19:10.208 INFO [5686]: _SERVER found -- 17:19:10.208 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 17:19:10.208 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 17:19:10.208 INFO [5686]: QUERY_STRING = /robots.txt -- 17:19:10.208 INFO [5686]: HTTP_X_FORWARDED_FOR = 157.55.39.17 -- 17:19:10.219 INFO [5686]: COREGRADE is stopping... -- 17:19:10.219 DEBUG [5686]: Closing database connection -- 17:19:10.219 SQL [5686]: pgsql_close() -- 17:19:15.076 INFO [5686]: COREGRADE is starting... -- 17:19:15.077 INFO [5686]: Version from config: 1.0 -- 17:19:15.077 DEBUG [5686]: Connecting to database... -- 17:19:15.077 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:19:15.077 SQL [5686]: pgsql_db_connect() -- 17:19:15.081 DEBUG [5686]: Database connection successful -- 17:19:15.081 INFO [5686]: _SERVER found -- 17:19:15.081 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 17:19:15.081 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 17:19:15.081 INFO [5686]: QUERY_STRING = /home/aboutus -- 17:19:15.081 INFO [5686]: HTTP_X_FORWARDED_FOR = 207.46.13.175 -- 17:19:15.113 INFO [5686]: COREGRADE is stopping... -- 17:19:15.113 DEBUG [5686]: Closing database connection -- 17:19:15.113 SQL [5686]: pgsql_close() -- 17:37:12.166 INFO [5685]: COREGRADE is starting... -- 17:37:12.166 INFO [5685]: Version from config: 1.0 -- 17:37:12.166 DEBUG [5685]: Connecting to database... -- 17:37:12.166 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:12.166 SQL [5685]: pgsql_db_connect() -- 17:37:12.170 DEBUG [5685]: Database connection successful -- 17:37:12.170 INFO [5685]: _SERVER found -- 17:37:12.170 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 17:37:12.170 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 17:37:12.170 INFO [5685]: QUERY_STRING = -- 17:37:12.170 INFO [5685]: HTTP_X_FORWARDED_FOR = 13.232.159.238 -- 17:37:12.204 INFO [5685]: COREGRADE is stopping... -- 17:37:12.204 DEBUG [5685]: Closing database connection -- 17:37:12.204 SQL [5685]: pgsql_close() -- 17:37:14.007 INFO [7377]: COREGRADE is starting... -- 17:37:14.007 INFO [7377]: Version from config: 1.0 -- 17:37:14.007 DEBUG [7377]: Connecting to database... -- 17:37:14.007 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:14.007 SQL [7377]: pgsql_db_connect() -- 17:37:14.011 DEBUG [7377]: Database connection successful -- 17:37:14.011 INFO [7377]: _SERVER found -- 17:37:14.011 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 17:37:14.011 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 17:37:14.011 INFO [7377]: QUERY_STRING = /asdasdasd -- 17:37:14.011 INFO [7377]: HTTP_X_FORWARDED_FOR = 13.232.159.238 -- 17:37:14.024 INFO [7377]: COREGRADE is stopping... -- 17:37:14.024 DEBUG [7377]: Closing database connection -- 17:37:14.024 SQL [7377]: pgsql_close() -- 17:37:15.529 INFO [7377]: COREGRADE is starting... -- 17:37:15.530 INFO [7377]: Version from config: 1.0 -- 17:37:15.530 DEBUG [7377]: Connecting to database... -- 17:37:15.530 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:15.530 SQL [7377]: pgsql_db_connect() -- 17:37:15.534 DEBUG [7377]: Database connection successful -- 17:37:15.534 INFO [7377]: _SERVER found -- 17:37:15.534 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 17:37:15.534 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 17:37:15.534 INFO [7377]: QUERY_STRING = /console -- 17:37:15.534 INFO [7377]: HTTP_X_FORWARDED_FOR = 13.232.159.238 -- 17:37:15.545 INFO [7377]: COREGRADE is stopping... -- 17:37:15.545 DEBUG [7377]: Closing database connection -- 17:37:15.545 SQL [7377]: pgsql_close() -- 17:37:18.641 INFO [7377]: COREGRADE is starting... -- 17:37:18.641 INFO [7377]: Version from config: 1.0 -- 17:37:18.641 DEBUG [7377]: Connecting to database... -- 17:37:18.641 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:18.641 SQL [7377]: pgsql_db_connect() -- 17:37:18.645 DEBUG [7377]: Database connection successful -- 17:37:18.645 INFO [7377]: _SERVER found -- 17:37:18.645 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 17:37:18.645 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 17:37:18.645 INFO [7377]: QUERY_STRING = /horde/imp/test.php -- 17:37:18.645 INFO [7377]: HTTP_X_FORWARDED_FOR = 13.232.159.238 -- 17:37:18.657 INFO [7377]: COREGRADE is stopping... -- 17:37:18.657 DEBUG [7377]: Closing database connection -- 17:37:18.657 SQL [7377]: pgsql_close() -- 17:37:20.194 INFO [5697]: COREGRADE is starting... -- 17:37:20.194 INFO [5697]: Version from config: 1.0 -- 17:37:20.194 DEBUG [5697]: Connecting to database... -- 17:37:20.194 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:20.194 SQL [5697]: pgsql_db_connect() -- 17:37:20.198 DEBUG [5697]: Database connection successful -- 17:37:20.198 INFO [5697]: _SERVER found -- 17:37:20.198 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 17:37:20.198 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 17:37:20.198 INFO [5697]: QUERY_STRING = /login.action -- 17:37:20.198 INFO [5697]: HTTP_X_FORWARDED_FOR = 13.232.159.238 -- 17:37:20.211 INFO [5697]: COREGRADE is stopping... -- 17:37:20.211 DEBUG [5697]: Closing database connection -- 17:37:20.211 SQL [5697]: pgsql_close() -- 17:37:21.782 INFO [7377]: COREGRADE is starting... -- 17:37:21.782 INFO [7377]: Version from config: 1.0 -- 17:37:21.782 DEBUG [7377]: Connecting to database... -- 17:37:21.782 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:21.782 SQL [7377]: pgsql_db_connect() -- 17:37:21.786 DEBUG [7377]: Database connection successful -- 17:37:21.786 INFO [7377]: _SERVER found -- 17:37:21.786 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 17:37:21.786 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 17:37:21.786 INFO [7377]: QUERY_STRING = /login -- 17:37:21.786 INFO [7377]: HTTP_X_FORWARDED_FOR = 13.232.159.238 -- 17:37:21.798 INFO [7377]: COREGRADE is stopping... -- 17:37:21.798 DEBUG [7377]: Closing database connection -- 17:37:21.798 SQL [7377]: pgsql_close() -- 17:37:23.367 INFO [7377]: COREGRADE is starting... -- 17:37:23.367 INFO [7377]: Version from config: 1.0 -- 17:37:23.367 DEBUG [7377]: Connecting to database... -- 17:37:23.367 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:37:23.367 SQL [7377]: pgsql_db_connect() -- 17:37:23.371 DEBUG [7377]: Database connection successful -- 17:37:23.371 INFO [7377]: _SERVER found -- 17:37:23.371 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 17:37:23.371 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 17:37:23.371 INFO [7377]: QUERY_STRING = /phpMyAdmin/scripts/setup.php -- 17:37:23.371 INFO [7377]: HTTP_X_FORWARDED_FOR = 13.232.159.238 -- 17:37:23.382 INFO [7377]: COREGRADE is stopping... -- 17:37:23.383 DEBUG [7377]: Closing database connection -- 17:37:23.383 SQL [7377]: pgsql_close() -- 17:41:00.951 INFO [4834]: COREGRADE is starting... -- 17:41:00.952 INFO [4834]: Version from config: 1.0 -- 17:41:00.952 DEBUG [4834]: Connecting to database... -- 17:41:00.952 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:00.952 SQL [4834]: pgsql_db_connect() -- 17:41:00.956 DEBUG [4834]: Database connection successful -- 17:41:00.956 INFO [4834]: _SERVER found -- 17:41:00.956 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 17:41:00.956 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:00.956 INFO [4834]: QUERY_STRING = /TP/public/index.php -- 17:41:00.956 INFO [4834]: HTTP_X_FORWARDED_FOR = 193.112.94.172 -- 17:41:00.968 INFO [4834]: COREGRADE is stopping... -- 17:41:00.968 DEBUG [4834]: Closing database connection -- 17:41:00.968 SQL [4834]: pgsql_close() -- 17:41:02.323 INFO [4193]: COREGRADE is starting... -- 17:41:02.323 INFO [4193]: Version from config: 1.0 -- 17:41:02.323 DEBUG [4193]: Connecting to database... -- 17:41:02.323 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:02.323 SQL [4193]: pgsql_db_connect() -- 17:41:02.327 DEBUG [4193]: Database connection successful -- 17:41:02.327 INFO [4193]: _SERVER found -- 17:41:02.327 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 17:41:02.327 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:02.327 INFO [4193]: QUERY_STRING = /TP/index.php -- 17:41:02.327 INFO [4193]: HTTP_X_FORWARDED_FOR = 193.112.94.172 -- 17:41:02.340 INFO [4193]: COREGRADE is stopping... -- 17:41:02.340 DEBUG [4193]: Closing database connection -- 17:41:02.340 SQL [4193]: pgsql_close() -- 17:41:03.770 INFO [7885]: COREGRADE is starting... -- 17:41:03.771 INFO [7885]: Version from config: 1.0 -- 17:41:03.771 DEBUG [7885]: Connecting to database... -- 17:41:03.771 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:03.771 SQL [7885]: pgsql_db_connect() -- 17:41:03.775 DEBUG [7885]: Database connection successful -- 17:41:03.775 INFO [7885]: _SERVER found -- 17:41:03.775 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 17:41:03.775 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:03.775 INFO [7885]: QUERY_STRING = /thinkphp/html/public/index.php -- 17:41:03.775 INFO [7885]: HTTP_X_FORWARDED_FOR = 193.112.94.172 -- 17:41:03.787 INFO [7885]: COREGRADE is stopping... -- 17:41:03.787 DEBUG [7885]: Closing database connection -- 17:41:03.787 SQL [7885]: pgsql_close() -- 17:41:05.135 INFO [7885]: COREGRADE is starting... -- 17:41:05.135 INFO [7885]: Version from config: 1.0 -- 17:41:05.135 DEBUG [7885]: Connecting to database... -- 17:41:05.135 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:05.135 SQL [7885]: pgsql_db_connect() -- 17:41:05.140 DEBUG [7885]: Database connection successful -- 17:41:05.140 INFO [7885]: _SERVER found -- 17:41:05.140 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 17:41:05.140 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:05.140 INFO [7885]: QUERY_STRING = /html/public/index.php -- 17:41:05.140 INFO [7885]: HTTP_X_FORWARDED_FOR = 193.112.94.172 -- 17:41:05.151 INFO [7885]: COREGRADE is stopping... -- 17:41:05.151 DEBUG [7885]: Closing database connection -- 17:41:05.151 SQL [7885]: pgsql_close() -- 17:41:06.712 INFO [4193]: COREGRADE is starting... -- 17:41:06.712 INFO [4193]: Version from config: 1.0 -- 17:41:06.712 DEBUG [4193]: Connecting to database... -- 17:41:06.712 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:06.712 SQL [4193]: pgsql_db_connect() -- 17:41:06.717 DEBUG [4193]: Database connection successful -- 17:41:06.717 INFO [4193]: _SERVER found -- 17:41:06.717 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 17:41:06.717 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:06.717 INFO [4193]: QUERY_STRING = /public/index.php -- 17:41:06.717 INFO [4193]: HTTP_X_FORWARDED_FOR = 193.112.94.172 -- 17:41:06.728 INFO [4193]: COREGRADE is stopping... -- 17:41:06.728 DEBUG [4193]: Closing database connection -- 17:41:06.728 SQL [4193]: pgsql_close() -- 17:41:08.093 INFO [7885]: COREGRADE is starting... -- 17:41:08.093 INFO [7885]: Version from config: 1.0 -- 17:41:08.093 DEBUG [7885]: Connecting to database... -- 17:41:08.093 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:08.093 SQL [7885]: pgsql_db_connect() -- 17:41:08.097 DEBUG [7885]: Database connection successful -- 17:41:08.097 INFO [7885]: _SERVER found -- 17:41:08.097 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 17:41:08.097 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:08.097 INFO [7885]: QUERY_STRING = /TP/html/public/index.php -- 17:41:08.097 INFO [7885]: HTTP_X_FORWARDED_FOR = 193.112.94.172 -- 17:41:08.109 INFO [7885]: COREGRADE is stopping... -- 17:41:08.109 DEBUG [7885]: Closing database connection -- 17:41:08.109 SQL [7885]: pgsql_close() -- 17:41:09.441 INFO [7885]: COREGRADE is starting... -- 17:41:09.441 INFO [7885]: Version from config: 1.0 -- 17:41:09.441 DEBUG [7885]: Connecting to database... -- 17:41:09.441 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:09.441 SQL [7885]: pgsql_db_connect() -- 17:41:09.445 DEBUG [7885]: Database connection successful -- 17:41:09.445 INFO [7885]: _SERVER found -- 17:41:09.445 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 17:41:09.445 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:09.445 INFO [7885]: QUERY_STRING = /elrekt.php -- 17:41:09.445 INFO [7885]: HTTP_X_FORWARDED_FOR = 193.112.94.172 -- 17:41:09.457 INFO [7885]: COREGRADE is stopping... -- 17:41:09.457 DEBUG [7885]: Closing database connection -- 17:41:09.457 SQL [7885]: pgsql_close() -- 17:41:10.848 INFO [7885]: COREGRADE is starting... -- 17:41:10.848 INFO [7885]: Version from config: 1.0 -- 17:41:10.848 DEBUG [7885]: Connecting to database... -- 17:41:10.848 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:10.848 SQL [7885]: pgsql_db_connect() -- 17:41:10.852 DEBUG [7885]: Database connection successful -- 17:41:10.852 INFO [7885]: _SERVER found -- 17:41:10.852 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 17:41:10.852 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:10.852 INFO [7885]: QUERY_STRING = -- 17:41:10.852 INFO [7885]: HTTP_X_FORWARDED_FOR = 193.112.94.172 -- 17:41:10.885 INFO [7885]: COREGRADE is stopping... -- 17:41:10.885 DEBUG [7885]: Closing database connection -- 17:41:10.885 SQL [7885]: pgsql_close() -- 17:41:12.355 INFO [6508]: COREGRADE is starting... -- 17:41:12.356 INFO [6508]: Version from config: 1.0 -- 17:41:12.356 DEBUG [6508]: Connecting to database... -- 17:41:12.356 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:12.356 SQL [6508]: pgsql_db_connect() -- 17:41:12.360 DEBUG [6508]: Database connection successful -- 17:41:12.360 INFO [6508]: _SERVER found -- 17:41:12.360 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 17:41:12.360 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:12.360 INFO [6508]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 17:41:12.360 INFO [6508]: HTTP_X_FORWARDED_FOR = 193.112.94.172 -- 17:41:12.400 INFO [6508]: COREGRADE is stopping... -- 17:41:12.400 DEBUG [6508]: Closing database connection -- 17:41:12.400 SQL [6508]: pgsql_close() -- 17:41:13.764 INFO [6508]: COREGRADE is starting... -- 17:41:13.765 INFO [6508]: Version from config: 1.0 -- 17:41:13.765 DEBUG [6508]: Connecting to database... -- 17:41:13.765 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:13.765 SQL [6508]: pgsql_db_connect() -- 17:41:13.769 DEBUG [6508]: Database connection successful -- 17:41:13.769 INFO [6508]: _SERVER found -- 17:41:13.769 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 17:41:13.769 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:13.769 INFO [6508]: QUERY_STRING = s=captcha -- 17:41:13.769 INFO [6508]: HTTP_X_FORWARDED_FOR = 193.112.94.172 -- 17:41:13.800 INFO [6508]: COREGRADE is stopping... -- 17:41:13.800 DEBUG [6508]: Closing database connection -- 17:41:13.800 SQL [6508]: pgsql_close() -- 17:41:15.146 INFO [6508]: COREGRADE is starting... -- 17:41:15.146 INFO [6508]: Version from config: 1.0 -- 17:41:15.146 DEBUG [6508]: Connecting to database... -- 17:41:15.146 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:15.146 SQL [6508]: pgsql_db_connect() -- 17:41:15.151 DEBUG [6508]: Database connection successful -- 17:41:15.151 INFO [6508]: _SERVER found -- 17:41:15.151 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 17:41:15.151 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:15.151 INFO [6508]: QUERY_STRING = -- 17:41:15.151 INFO [6508]: HTTP_X_FORWARDED_FOR = 193.112.94.172 -- 17:41:15.182 INFO [6508]: COREGRADE is stopping... -- 17:41:15.182 DEBUG [6508]: Closing database connection -- 17:41:15.182 SQL [6508]: pgsql_close() -- 18:35:07.178 INFO [4251]: COREGRADE is starting... -- 18:35:07.178 INFO [4251]: Version from config: 1.0 -- 18:35:07.178 DEBUG [4251]: Connecting to database... -- 18:35:07.178 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:35:07.179 SQL [4251]: pgsql_db_connect() -- 18:35:07.183 DEBUG [4251]: Database connection successful -- 18:35:07.183 INFO [4251]: _SERVER found -- 18:35:07.183 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 18:35:07.183 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 18:35:07.183 INFO [4251]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 18:35:07.183 INFO [4251]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 18:35:07.197 INFO [4251]: COREGRADE is stopping... -- 18:35:07.197 DEBUG [4251]: Closing database connection -- 18:35:07.197 SQL [4251]: pgsql_close() -- 18:58:40.792 INFO [5687]: COREGRADE is starting... -- 18:58:40.792 INFO [5687]: Version from config: 1.0 -- 18:58:40.792 DEBUG [5687]: Connecting to database... -- 18:58:40.792 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:58:40.792 SQL [5687]: pgsql_db_connect() -- 18:58:40.797 DEBUG [5687]: Database connection successful -- 18:58:40.797 INFO [5687]: _SERVER found -- 18:58:40.797 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 18:58:40.797 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 18:58:40.797 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845 -- 18:58:40.797 INFO [5687]: QUERY_STRING = -- 18:58:40.797 INFO [5687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:58:40.832 INFO [5687]: COREGRADE is stopping... -- 18:58:40.832 DEBUG [5687]: Closing database connection -- 18:58:40.832 SQL [5687]: pgsql_close() -- 18:58:41.458 INFO [5687]: COREGRADE is starting... -- 18:58:41.458 INFO [5687]: Version from config: 1.0 -- 18:58:41.458 DEBUG [5687]: Connecting to database... -- 18:58:41.458 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:58:41.458 SQL [5687]: pgsql_db_connect() -- 18:58:41.462 DEBUG [5687]: Database connection successful -- 18:58:41.462 INFO [5687]: _SERVER found -- 18:58:41.462 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 18:58:41.462 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 18:58:41.462 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=8pqa5usbg0bpjrpaj3q4sgrc92c9o2hp -- 18:58:41.462 INFO [5687]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:58:41.462 INFO [5687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:58:41.474 INFO [5687]: COREGRADE is stopping... -- 18:58:41.474 DEBUG [5687]: Closing database connection -- 18:58:41.474 SQL [5687]: pgsql_close() -- 18:59:01.887 INFO [5686]: COREGRADE is starting... -- 18:59:01.887 INFO [5686]: Version from config: 1.0 -- 18:59:01.887 DEBUG [5686]: Connecting to database... -- 18:59:01.887 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:59:01.887 SQL [5686]: pgsql_db_connect() -- 18:59:01.891 DEBUG [5686]: Database connection successful -- 18:59:01.891 INFO [5686]: _SERVER found -- 18:59:01.891 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 18:59:01.891 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 18:59:01.891 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=8pqa5usbg0bpjrpaj3q4sgrc92c9o2hp; _gat_gtag_UA_54829827_2=1 -- 18:59:01.891 INFO [5686]: QUERY_STRING = /home/aboutus -- 18:59:01.891 INFO [5686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:59:01.924 INFO [5686]: COREGRADE is stopping... -- 18:59:01.924 DEBUG [5686]: Closing database connection -- 18:59:01.924 SQL [5686]: pgsql_close() -- 18:59:02.115 INFO [5686]: COREGRADE is starting... -- 18:59:02.115 INFO [5686]: Version from config: 1.0 -- 18:59:02.115 DEBUG [5686]: Connecting to database... -- 18:59:02.115 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:59:02.115 SQL [5686]: pgsql_db_connect() -- 18:59:02.119 DEBUG [5686]: Database connection successful -- 18:59:02.119 INFO [5686]: _SERVER found -- 18:59:02.119 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 18:59:02.119 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 18:59:02.119 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=8pqa5usbg0bpjrpaj3q4sgrc92c9o2hp; _gat_gtag_UA_54829827_2=1 -- 18:59:02.119 INFO [5686]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:59:02.119 INFO [5686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:59:02.131 INFO [5686]: COREGRADE is stopping... -- 18:59:02.131 DEBUG [5686]: Closing database connection -- 18:59:02.131 SQL [5686]: pgsql_close() -- 18:59:05.992 INFO [5686]: COREGRADE is starting... -- 18:59:05.993 INFO [5686]: Version from config: 1.0 -- 18:59:05.993 DEBUG [5686]: Connecting to database... -- 18:59:05.993 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:59:05.993 SQL [5686]: pgsql_db_connect() -- 18:59:05.997 DEBUG [5686]: Database connection successful -- 18:59:05.997 INFO [5686]: _SERVER found -- 18:59:05.997 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 18:59:05.997 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 18:59:05.997 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=8pqa5usbg0bpjrpaj3q4sgrc92c9o2hp; _gat_gtag_UA_54829827_2=1 -- 18:59:05.997 INFO [5686]: QUERY_STRING = -- 18:59:05.997 INFO [5686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:59:06.028 INFO [5686]: COREGRADE is stopping... -- 18:59:06.028 DEBUG [5686]: Closing database connection -- 18:59:06.028 SQL [5686]: pgsql_close() -- 18:59:06.181 INFO [5686]: COREGRADE is starting... -- 18:59:06.181 INFO [5686]: Version from config: 1.0 -- 18:59:06.181 DEBUG [5686]: Connecting to database... -- 18:59:06.181 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:59:06.181 SQL [5686]: pgsql_db_connect() -- 18:59:06.185 DEBUG [5686]: Database connection successful -- 18:59:06.185 INFO [5686]: _SERVER found -- 18:59:06.185 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 18:59:06.185 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 18:59:06.185 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=8pqa5usbg0bpjrpaj3q4sgrc92c9o2hp; _gat_gtag_UA_54829827_2=1 -- 18:59:06.185 INFO [5686]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:59:06.185 INFO [5686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:59:06.196 INFO [5686]: COREGRADE is stopping... -- 18:59:06.196 DEBUG [5686]: Closing database connection -- 18:59:06.196 SQL [5686]: pgsql_close() -- 19:03:10.535 INFO [5685]: COREGRADE is starting... -- 19:03:10.535 INFO [5685]: Version from config: 1.0 -- 19:03:10.535 DEBUG [5685]: Connecting to database... -- 19:03:10.535 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:03:10.535 SQL [5685]: pgsql_db_connect() -- 19:03:10.539 DEBUG [5685]: Database connection successful -- 19:03:10.539 INFO [5685]: _SERVER found -- 19:03:10.539 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 19:03:10.539 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 19:03:10.539 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481 -- 19:03:10.539 INFO [5685]: QUERY_STRING = -- 19:03:10.539 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:03:10.573 INFO [5685]: COREGRADE is stopping... -- 19:03:10.573 DEBUG [5685]: Closing database connection -- 19:03:10.573 SQL [5685]: pgsql_close() -- 19:03:11.260 INFO [7377]: COREGRADE is starting... -- 19:03:11.261 INFO [7377]: Version from config: 1.0 -- 19:03:11.261 DEBUG [7377]: Connecting to database... -- 19:03:11.261 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:03:11.261 SQL [7377]: pgsql_db_connect() -- 19:03:11.265 DEBUG [7377]: Database connection successful -- 19:03:11.265 INFO [7377]: _SERVER found -- 19:03:11.265 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 19:03:11.265 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 19:03:11.265 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=126offcqvbrmnramnvrdijvkph8l2odm -- 19:03:11.265 INFO [7377]: QUERY_STRING = -- 19:03:11.265 INFO [7377]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:03:11.298 INFO [7377]: COREGRADE is stopping... -- 19:03:11.298 DEBUG [7377]: Closing database connection -- 19:03:11.298 SQL [7377]: pgsql_close() -- 19:03:12.073 INFO [7377]: COREGRADE is starting... -- 19:03:12.073 INFO [7377]: Version from config: 1.0 -- 19:03:12.073 DEBUG [7377]: Connecting to database... -- 19:03:12.073 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:03:12.073 SQL [7377]: pgsql_db_connect() -- 19:03:12.077 DEBUG [7377]: Database connection successful -- 19:03:12.077 INFO [7377]: _SERVER found -- 19:03:12.077 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 19:03:12.077 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 19:03:12.077 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=126offcqvbrmnramnvrdijvkph8l2odm -- 19:03:12.077 INFO [7377]: QUERY_STRING = /assets/img/footer_1.jpg -- 19:03:12.077 INFO [7377]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:03:12.089 INFO [7377]: COREGRADE is stopping... -- 19:03:12.089 DEBUG [7377]: Closing database connection -- 19:03:12.089 SQL [7377]: pgsql_close() -- 19:03:18.805 INFO [4834]: COREGRADE is starting... -- 19:03:18.805 INFO [4834]: Version from config: 1.0 -- 19:03:18.805 DEBUG [4834]: Connecting to database... -- 19:03:18.805 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:03:18.805 SQL [4834]: pgsql_db_connect() -- 19:03:18.809 DEBUG [4834]: Database connection successful -- 19:03:18.809 INFO [4834]: _SERVER found -- 19:03:18.809 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 19:03:18.809 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 19:03:18.809 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=126offcqvbrmnramnvrdijvkph8l2odm; _gat_gtag_UA_54829827_2=1 -- 19:03:18.809 INFO [4834]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 19:03:18.809 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:03:18.822 INFO [4834]: COREGRADE is stopping... -- 19:03:18.822 DEBUG [4834]: Closing database connection -- 19:03:18.822 SQL [4834]: pgsql_close() -- 19:44:01.976 INFO [4193]: COREGRADE is starting... -- 19:44:01.977 INFO [4193]: Version from config: 1.0 -- 19:44:01.977 DEBUG [4193]: Connecting to database... -- 19:44:01.977 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:44:01.977 SQL [4193]: pgsql_db_connect() -- 19:44:01.981 DEBUG [4193]: Database connection successful -- 19:44:01.981 INFO [4193]: _SERVER found -- 19:44:01.981 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 19:44:01.981 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 19:44:01.981 INFO [4193]: QUERY_STRING = -- 19:44:01.981 INFO [4193]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 19:44:02.025 INFO [4193]: COREGRADE is stopping... -- 19:44:02.025 DEBUG [4193]: Closing database connection -- 19:44:02.025 SQL [4193]: pgsql_close() -- 19:47:35.713 INFO [7885]: COREGRADE is starting... -- 19:47:35.713 INFO [7885]: Version from config: 1.0 -- 19:47:35.713 DEBUG [7885]: Connecting to database... -- 19:47:35.713 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:35.713 SQL [7885]: pgsql_db_connect() -- 19:47:35.717 DEBUG [7885]: Database connection successful -- 19:47:35.717 INFO [7885]: _SERVER found -- 19:47:35.717 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 19:47:35.717 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 19:47:35.717 INFO [7885]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=8pqa5usbg0bpjrpaj3q4sgrc92c9o2hp -- 19:47:35.717 INFO [7885]: QUERY_STRING = -- 19:47:35.717 INFO [7885]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:47:35.752 INFO [7885]: COREGRADE is stopping... -- 19:47:35.752 DEBUG [7885]: Closing database connection -- 19:47:35.752 SQL [7885]: pgsql_close() -- 19:47:35.943 INFO [7885]: COREGRADE is starting... -- 19:47:35.943 INFO [7885]: Version from config: 1.0 -- 19:47:35.943 DEBUG [7885]: Connecting to database... -- 19:47:35.943 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:35.943 SQL [7885]: pgsql_db_connect() -- 19:47:35.947 DEBUG [7885]: Database connection successful -- 19:47:35.947 INFO [7885]: _SERVER found -- 19:47:35.947 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 19:47:35.947 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 19:47:35.947 INFO [7885]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=r69hlg425n6s8ej0jcnvh5136dr31tue -- 19:47:35.947 INFO [7885]: QUERY_STRING = /assets/img/footer_1.jpg -- 19:47:35.947 INFO [7885]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:47:35.959 INFO [7885]: COREGRADE is stopping... -- 19:47:35.959 DEBUG [7885]: Closing database connection -- 19:47:35.959 SQL [7885]: pgsql_close() -- 19:47:56.900 INFO [6508]: COREGRADE is starting... -- 19:47:56.901 INFO [6508]: Version from config: 1.0 -- 19:47:56.901 DEBUG [6508]: Connecting to database... -- 19:47:56.901 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:56.901 SQL [6508]: pgsql_db_connect() -- 19:47:56.905 DEBUG [6508]: Database connection successful -- 19:47:56.905 INFO [6508]: _SERVER found -- 19:47:56.905 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 19:47:56.905 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 19:47:56.905 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=r69hlg425n6s8ej0jcnvh5136dr31tue; _gat_gtag_UA_54829827_2=1 -- 19:47:56.905 INFO [6508]: QUERY_STRING = -- 19:47:56.905 INFO [6508]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:47:56.941 INFO [6508]: COREGRADE is stopping... -- 19:47:56.941 DEBUG [6508]: Closing database connection -- 19:47:56.941 SQL [6508]: pgsql_close() -- 19:47:57.045 INFO [6508]: COREGRADE is starting... -- 19:47:57.045 INFO [6508]: Version from config: 1.0 -- 19:47:57.045 DEBUG [6508]: Connecting to database... -- 19:47:57.045 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:57.045 SQL [6508]: pgsql_db_connect() -- 19:47:57.049 DEBUG [6508]: Database connection successful -- 19:47:57.049 INFO [6508]: _SERVER found -- 19:47:57.049 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 19:47:57.049 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 19:47:57.049 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=r69hlg425n6s8ej0jcnvh5136dr31tue; _gat_gtag_UA_54829827_2=1 -- 19:47:57.049 INFO [6508]: QUERY_STRING = /assets/img/footer_1.jpg -- 19:47:57.049 INFO [6508]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:47:57.061 INFO [6508]: COREGRADE is stopping... -- 19:47:57.061 DEBUG [6508]: Closing database connection -- 19:47:57.061 SQL [6508]: pgsql_close() -- 20:06:01.917 INFO [4251]: COREGRADE is starting... -- 20:06:01.917 INFO [4251]: Version from config: 1.0 -- 20:06:01.917 DEBUG [4251]: Connecting to database... -- 20:06:01.917 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:06:01.917 SQL [4251]: pgsql_db_connect() -- 20:06:01.922 DEBUG [4251]: Database connection successful -- 20:06:01.922 INFO [4251]: _SERVER found -- 20:06:01.922 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 20:06:01.922 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 20:06:01.922 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=126offcqvbrmnramnvrdijvkph8l2odm -- 20:06:01.922 INFO [4251]: QUERY_STRING = -- 20:06:01.922 INFO [4251]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:06:01.957 INFO [4251]: COREGRADE is stopping... -- 20:06:01.957 DEBUG [4251]: Closing database connection -- 20:06:01.957 SQL [4251]: pgsql_close() -- 20:06:02.292 INFO [5687]: COREGRADE is starting... -- 20:06:02.292 INFO [5687]: Version from config: 1.0 -- 20:06:02.292 DEBUG [5687]: Connecting to database... -- 20:06:02.292 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:06:02.292 SQL [5687]: pgsql_db_connect() -- 20:06:02.296 DEBUG [5687]: Database connection successful -- 20:06:02.296 INFO [5687]: _SERVER found -- 20:06:02.296 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 20:06:02.296 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 20:06:02.296 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=r12doma1bn6gu1rbsiflgrtd1301vpf7 -- 20:06:02.296 INFO [5687]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:06:02.296 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:06:02.308 INFO [5687]: COREGRADE is stopping... -- 20:06:02.309 DEBUG [5687]: Closing database connection -- 20:06:02.309 SQL [5687]: pgsql_close() -- 20:07:19.303 INFO [5686]: COREGRADE is starting... -- 20:07:19.304 INFO [5686]: Version from config: 1.0 -- 20:07:19.304 DEBUG [5686]: Connecting to database... -- 20:07:19.304 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:19.304 SQL [5686]: pgsql_db_connect() -- 20:07:19.308 DEBUG [5686]: Database connection successful -- 20:07:19.308 INFO [5686]: _SERVER found -- 20:07:19.308 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 20:07:19.308 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 20:07:19.308 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=r12doma1bn6gu1rbsiflgrtd1301vpf7 -- 20:07:19.308 INFO [5686]: QUERY_STRING = -- 20:07:19.308 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:07:19.340 INFO [5686]: COREGRADE is stopping... -- 20:07:19.340 DEBUG [5686]: Closing database connection -- 20:07:19.340 SQL [5686]: pgsql_close() -- 20:07:19.767 INFO [5686]: COREGRADE is starting... -- 20:07:19.768 INFO [5686]: Version from config: 1.0 -- 20:07:19.768 DEBUG [5686]: Connecting to database... -- 20:07:19.768 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:19.768 SQL [5686]: pgsql_db_connect() -- 20:07:19.772 DEBUG [5686]: Database connection successful -- 20:07:19.772 INFO [5686]: _SERVER found -- 20:07:19.772 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 20:07:19.772 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 20:07:19.772 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=r12doma1bn6gu1rbsiflgrtd1301vpf7 -- 20:07:19.772 INFO [5686]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:07:19.772 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:07:19.783 INFO [5686]: COREGRADE is stopping... -- 20:07:19.783 DEBUG [5686]: Closing database connection -- 20:07:19.783 SQL [5686]: pgsql_close() -- 20:08:26.743 INFO [5685]: COREGRADE is starting... -- 20:08:26.743 INFO [5685]: Version from config: 1.0 -- 20:08:26.743 DEBUG [5685]: Connecting to database... -- 20:08:26.743 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:08:26.743 SQL [5685]: pgsql_db_connect() -- 20:08:26.747 DEBUG [5685]: Database connection successful -- 20:08:26.747 INFO [5685]: _SERVER found -- 20:08:26.747 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 20:08:26.747 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 20:08:26.747 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=r12doma1bn6gu1rbsiflgrtd1301vpf7 -- 20:08:26.747 INFO [5685]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 20:08:26.747 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:08:26.760 INFO [5685]: COREGRADE is stopping... -- 20:08:26.760 DEBUG [5685]: Closing database connection -- 20:08:26.760 SQL [5685]: pgsql_close() -- 20:08:30.144 INFO [5685]: COREGRADE is starting... -- 20:08:30.145 INFO [5685]: Version from config: 1.0 -- 20:08:30.145 DEBUG [5685]: Connecting to database... -- 20:08:30.145 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:08:30.145 SQL [5685]: pgsql_db_connect() -- 20:08:30.149 DEBUG [5685]: Database connection successful -- 20:08:30.149 INFO [5685]: _SERVER found -- 20:08:30.149 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 20:08:30.149 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 20:08:30.149 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=r12doma1bn6gu1rbsiflgrtd1301vpf7 -- 20:08:30.149 INFO [5685]: QUERY_STRING = -- 20:08:30.149 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:08:30.180 INFO [5685]: COREGRADE is stopping... -- 20:08:30.180 DEBUG [5685]: Closing database connection -- 20:08:30.180 SQL [5685]: pgsql_close() -- 20:08:30.563 INFO [5685]: COREGRADE is starting... -- 20:08:30.563 INFO [5685]: Version from config: 1.0 -- 20:08:30.563 DEBUG [5685]: Connecting to database... -- 20:08:30.563 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:08:30.563 SQL [5685]: pgsql_db_connect() -- 20:08:30.567 DEBUG [5685]: Database connection successful -- 20:08:30.567 INFO [5685]: _SERVER found -- 20:08:30.567 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 20:08:30.567 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 20:08:30.567 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=r12doma1bn6gu1rbsiflgrtd1301vpf7 -- 20:08:30.567 INFO [5685]: QUERY_STRING = /favicon.ico -- 20:08:30.567 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:08:30.579 INFO [5685]: COREGRADE is stopping... -- 20:08:30.579 DEBUG [5685]: Closing database connection -- 20:08:30.579 SQL [5685]: pgsql_close() -- 20:14:07.038 INFO [5697]: COREGRADE is starting... -- 20:14:07.038 INFO [5697]: Version from config: 1.0 -- 20:14:07.038 DEBUG [5697]: Connecting to database... -- 20:14:07.038 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:14:07.038 SQL [5697]: pgsql_db_connect() -- 20:14:07.043 DEBUG [5697]: Database connection successful -- 20:14:07.043 INFO [5697]: _SERVER found -- 20:14:07.043 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 20:14:07.043 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 20:14:07.043 INFO [5697]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 20:14:07.043 INFO [5697]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 20:14:07.055 INFO [5697]: COREGRADE is stopping... -- 20:14:07.055 DEBUG [5697]: Closing database connection -- 20:14:07.056 SQL [5697]: pgsql_close() -- 20:18:45.485 INFO [7377]: COREGRADE is starting... -- 20:18:45.486 INFO [7377]: Version from config: 1.0 -- 20:18:45.486 DEBUG [7377]: Connecting to database... -- 20:18:45.486 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:18:45.486 SQL [7377]: pgsql_db_connect() -- 20:18:45.491 DEBUG [7377]: Database connection successful -- 20:18:45.491 INFO [7377]: _SERVER found -- 20:18:45.491 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 20:18:45.491 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 20:18:45.491 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=r12doma1bn6gu1rbsiflgrtd1301vpf7 -- 20:18:45.491 INFO [7377]: QUERY_STRING = -- 20:18:45.491 INFO [7377]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:18:45.527 INFO [7377]: COREGRADE is stopping... -- 20:18:45.527 DEBUG [7377]: Closing database connection -- 20:18:45.527 SQL [7377]: pgsql_close() -- 20:18:45.649 INFO [7377]: COREGRADE is starting... -- 20:18:45.649 INFO [7377]: Version from config: 1.0 -- 20:18:45.649 DEBUG [7377]: Connecting to database... -- 20:18:45.649 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:18:45.649 SQL [7377]: pgsql_db_connect() -- 20:18:45.654 DEBUG [7377]: Database connection successful -- 20:18:45.654 INFO [7377]: _SERVER found -- 20:18:45.654 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 20:18:45.654 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 20:18:45.654 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=v7dvfur6neghveqjecchvu04ckutsjot -- 20:18:45.654 INFO [7377]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:18:45.654 INFO [7377]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:18:45.665 INFO [7377]: COREGRADE is stopping... -- 20:18:45.665 DEBUG [7377]: Closing database connection -- 20:18:45.665 SQL [7377]: pgsql_close() -- 20:19:11.690 INFO [4834]: COREGRADE is starting... -- 20:19:11.690 INFO [4834]: Version from config: 1.0 -- 20:19:11.690 DEBUG [4834]: Connecting to database... -- 20:19:11.690 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:19:11.690 SQL [4834]: pgsql_db_connect() -- 20:19:11.695 DEBUG [4834]: Database connection successful -- 20:19:11.695 INFO [4834]: _SERVER found -- 20:19:11.695 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 20:19:11.695 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 20:19:11.695 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=v7dvfur6neghveqjecchvu04ckutsjot; _gat_gtag_UA_54829827_2=1 -- 20:19:11.695 INFO [4834]: QUERY_STRING = -- 20:19:11.695 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:19:11.731 INFO [4834]: COREGRADE is stopping... -- 20:19:11.731 DEBUG [4834]: Closing database connection -- 20:19:11.731 SQL [4834]: pgsql_close() -- 20:19:11.921 INFO [4834]: COREGRADE is starting... -- 20:19:11.921 INFO [4834]: Version from config: 1.0 -- 20:19:11.921 DEBUG [4834]: Connecting to database... -- 20:19:11.921 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:19:11.921 SQL [4834]: pgsql_db_connect() -- 20:19:11.926 DEBUG [4834]: Database connection successful -- 20:19:11.926 INFO [4834]: _SERVER found -- 20:19:11.926 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 20:19:11.926 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 20:19:11.926 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=v7dvfur6neghveqjecchvu04ckutsjot; _gat_gtag_UA_54829827_2=1 -- 20:19:11.926 INFO [4834]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:19:11.926 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:19:11.937 INFO [4834]: COREGRADE is stopping... -- 20:19:11.937 DEBUG [4834]: Closing database connection -- 20:19:11.937 SQL [4834]: pgsql_close() -- 20:22:31.608 INFO [4193]: COREGRADE is starting... -- 20:22:31.609 INFO [4193]: Version from config: 1.0 -- 20:22:31.609 DEBUG [4193]: Connecting to database... -- 20:22:31.609 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:22:31.609 SQL [4193]: pgsql_db_connect() -- 20:22:31.613 DEBUG [4193]: Database connection successful -- 20:22:31.613 INFO [4193]: _SERVER found -- 20:22:31.613 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 20:22:31.613 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 20:22:31.613 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=v7dvfur6neghveqjecchvu04ckutsjot -- 20:22:31.613 INFO [4193]: QUERY_STRING = -- 20:22:31.613 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:22:31.649 INFO [4193]: COREGRADE is stopping... -- 20:22:31.649 DEBUG [4193]: Closing database connection -- 20:22:31.649 SQL [4193]: pgsql_close() -- 20:22:31.869 INFO [4193]: COREGRADE is starting... -- 20:22:31.869 INFO [4193]: Version from config: 1.0 -- 20:22:31.869 DEBUG [4193]: Connecting to database... -- 20:22:31.869 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:22:31.869 SQL [4193]: pgsql_db_connect() -- 20:22:31.873 DEBUG [4193]: Database connection successful -- 20:22:31.873 INFO [4193]: _SERVER found -- 20:22:31.873 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 20:22:31.873 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 20:22:31.873 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=v7dvfur6neghveqjecchvu04ckutsjot -- 20:22:31.873 INFO [4193]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:22:31.873 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:22:31.884 INFO [4193]: COREGRADE is stopping... -- 20:22:31.884 DEBUG [4193]: Closing database connection -- 20:22:31.884 SQL [4193]: pgsql_close() -- 20:25:36.732 INFO [7885]: COREGRADE is starting... -- 20:25:36.732 INFO [7885]: Version from config: 1.0 -- 20:25:36.732 DEBUG [7885]: Connecting to database... -- 20:25:36.732 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:25:36.732 SQL [7885]: pgsql_db_connect() -- 20:25:36.736 DEBUG [7885]: Database connection successful -- 20:25:36.736 INFO [7885]: _SERVER found -- 20:25:36.736 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 20:25:36.736 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 20:25:36.736 INFO [7885]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=v7dvfur6neghveqjecchvu04ckutsjot -- 20:25:36.736 INFO [7885]: QUERY_STRING = -- 20:25:36.736 INFO [7885]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:25:36.770 INFO [7885]: COREGRADE is stopping... -- 20:25:36.770 DEBUG [7885]: Closing database connection -- 20:25:36.770 SQL [7885]: pgsql_close() -- 20:25:36.943 INFO [7885]: COREGRADE is starting... -- 20:25:36.943 INFO [7885]: Version from config: 1.0 -- 20:25:36.943 DEBUG [7885]: Connecting to database... -- 20:25:36.943 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:25:36.943 SQL [7885]: pgsql_db_connect() -- 20:25:36.947 DEBUG [7885]: Database connection successful -- 20:25:36.947 INFO [7885]: _SERVER found -- 20:25:36.947 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 20:25:36.947 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 20:25:36.947 INFO [7885]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=ahu3prqt22vkg8nftmn4niu1gls0e3h3 -- 20:25:36.947 INFO [7885]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:25:36.947 INFO [7885]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:25:36.959 INFO [7885]: COREGRADE is stopping... -- 20:25:36.959 DEBUG [7885]: Closing database connection -- 20:25:36.959 SQL [7885]: pgsql_close() -- 20:26:10.052 INFO [6508]: COREGRADE is starting... -- 20:26:10.052 INFO [6508]: Version from config: 1.0 -- 20:26:10.052 DEBUG [6508]: Connecting to database... -- 20:26:10.052 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:26:10.052 SQL [6508]: pgsql_db_connect() -- 20:26:10.056 DEBUG [6508]: Database connection successful -- 20:26:10.056 INFO [6508]: _SERVER found -- 20:26:10.056 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 20:26:10.056 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 20:26:10.056 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=ahu3prqt22vkg8nftmn4niu1gls0e3h3; _gat_gtag_UA_54829827_2=1 -- 20:26:10.056 INFO [6508]: QUERY_STRING = -- 20:26:10.056 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:26:10.091 INFO [6508]: COREGRADE is stopping... -- 20:26:10.091 DEBUG [6508]: Closing database connection -- 20:26:10.091 SQL [6508]: pgsql_close() -- 20:26:10.334 INFO [6508]: COREGRADE is starting... -- 20:26:10.334 INFO [6508]: Version from config: 1.0 -- 20:26:10.334 DEBUG [6508]: Connecting to database... -- 20:26:10.334 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:26:10.334 SQL [6508]: pgsql_db_connect() -- 20:26:10.338 DEBUG [6508]: Database connection successful -- 20:26:10.338 INFO [6508]: _SERVER found -- 20:26:10.338 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 20:26:10.338 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 20:26:10.338 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=ahu3prqt22vkg8nftmn4niu1gls0e3h3; _gat_gtag_UA_54829827_2=1 -- 20:26:10.338 INFO [6508]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:26:10.338 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:26:10.350 INFO [6508]: COREGRADE is stopping... -- 20:26:10.350 DEBUG [6508]: Closing database connection -- 20:26:10.350 SQL [6508]: pgsql_close() -- 20:36:31.443 INFO [4251]: COREGRADE is starting... -- 20:36:31.443 INFO [4251]: Version from config: 1.0 -- 20:36:31.443 DEBUG [4251]: Connecting to database... -- 20:36:31.443 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:36:31.443 SQL [4251]: pgsql_db_connect() -- 20:36:31.448 DEBUG [4251]: Database connection successful -- 20:36:31.448 INFO [4251]: _SERVER found -- 20:36:31.448 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 20:36:31.448 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 20:36:31.448 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=ahu3prqt22vkg8nftmn4niu1gls0e3h3 -- 20:36:31.448 INFO [4251]: QUERY_STRING = -- 20:36:31.448 INFO [4251]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:36:31.482 INFO [4251]: COREGRADE is stopping... -- 20:36:31.482 DEBUG [4251]: Closing database connection -- 20:36:31.482 SQL [4251]: pgsql_close() -- 20:36:31.691 INFO [4251]: COREGRADE is starting... -- 20:36:31.692 INFO [4251]: Version from config: 1.0 -- 20:36:31.692 DEBUG [4251]: Connecting to database... -- 20:36:31.692 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:36:31.692 SQL [4251]: pgsql_db_connect() -- 20:36:31.696 DEBUG [4251]: Database connection successful -- 20:36:31.696 INFO [4251]: _SERVER found -- 20:36:31.696 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 20:36:31.696 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 20:36:31.696 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=i208v0f9f2iu2n60dajpiqvtf3ba6qc9 -- 20:36:31.696 INFO [4251]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:36:31.696 INFO [4251]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:36:31.707 INFO [4251]: COREGRADE is stopping... -- 20:36:31.707 DEBUG [4251]: Closing database connection -- 20:36:31.707 SQL [4251]: pgsql_close() -- 20:39:31.537 INFO [5687]: COREGRADE is starting... -- 20:39:31.538 INFO [5687]: Version from config: 1.0 -- 20:39:31.538 DEBUG [5687]: Connecting to database... -- 20:39:31.538 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:39:31.538 SQL [5687]: pgsql_db_connect() -- 20:39:31.542 DEBUG [5687]: Database connection successful -- 20:39:31.542 INFO [5687]: _SERVER found -- 20:39:31.542 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 20:39:31.542 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 20:39:31.542 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=i208v0f9f2iu2n60dajpiqvtf3ba6qc9 -- 20:39:31.542 INFO [5687]: QUERY_STRING = -- 20:39:31.542 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:39:31.575 INFO [5687]: COREGRADE is stopping... -- 20:39:31.575 DEBUG [5687]: Closing database connection -- 20:39:31.575 SQL [5687]: pgsql_close() -- 20:39:31.688 INFO [5687]: COREGRADE is starting... -- 20:39:31.688 INFO [5687]: Version from config: 1.0 -- 20:39:31.688 DEBUG [5687]: Connecting to database... -- 20:39:31.688 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:39:31.688 SQL [5687]: pgsql_db_connect() -- 20:39:31.692 DEBUG [5687]: Database connection successful -- 20:39:31.692 INFO [5687]: _SERVER found -- 20:39:31.692 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 20:39:31.692 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 20:39:31.692 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=i208v0f9f2iu2n60dajpiqvtf3ba6qc9 -- 20:39:31.692 INFO [5687]: QUERY_STRING = /assets/img/Progress Monitoring.png -- 20:39:31.692 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:39:31.704 INFO [5687]: COREGRADE is stopping... -- 20:39:31.704 DEBUG [5687]: Closing database connection -- 20:39:31.704 SQL [5687]: pgsql_close() -- 20:39:31.788 INFO [5687]: COREGRADE is starting... -- 20:39:31.788 INFO [5687]: Version from config: 1.0 -- 20:39:31.788 DEBUG [5687]: Connecting to database... -- 20:39:31.788 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:39:31.788 SQL [5687]: pgsql_db_connect() -- 20:39:31.792 DEBUG [5687]: Database connection successful -- 20:39:31.792 INFO [5687]: _SERVER found -- 20:39:31.792 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 20:39:31.792 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 20:39:31.792 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=i208v0f9f2iu2n60dajpiqvtf3ba6qc9 -- 20:39:31.792 INFO [5687]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:39:31.792 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:39:31.804 INFO [5687]: COREGRADE is stopping... -- 20:39:31.804 DEBUG [5687]: Closing database connection -- 20:39:31.804 SQL [5687]: pgsql_close() -- 20:40:32.051 INFO [5686]: COREGRADE is starting... -- 20:40:32.051 INFO [5686]: Version from config: 1.0 -- 20:40:32.051 DEBUG [5686]: Connecting to database... -- 20:40:32.051 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:40:32.051 SQL [5686]: pgsql_db_connect() -- 20:40:32.055 DEBUG [5686]: Database connection successful -- 20:40:32.055 INFO [5686]: _SERVER found -- 20:40:32.055 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 20:40:32.055 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 20:40:32.055 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=i208v0f9f2iu2n60dajpiqvtf3ba6qc9 -- 20:40:32.055 INFO [5686]: QUERY_STRING = -- 20:40:32.055 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:40:32.087 INFO [5686]: COREGRADE is stopping... -- 20:40:32.087 DEBUG [5686]: Closing database connection -- 20:40:32.087 SQL [5686]: pgsql_close() -- 20:40:32.309 INFO [5686]: COREGRADE is starting... -- 20:40:32.309 INFO [5686]: Version from config: 1.0 -- 20:40:32.309 DEBUG [5686]: Connecting to database... -- 20:40:32.309 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:40:32.309 SQL [5686]: pgsql_db_connect() -- 20:40:32.314 DEBUG [5686]: Database connection successful -- 20:40:32.314 INFO [5686]: _SERVER found -- 20:40:32.314 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 20:40:32.314 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 20:40:32.314 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=i208v0f9f2iu2n60dajpiqvtf3ba6qc9 -- 20:40:32.314 INFO [5686]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:40:32.314 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:40:32.325 INFO [5686]: COREGRADE is stopping... -- 20:40:32.325 DEBUG [5686]: Closing database connection -- 20:40:32.325 SQL [5686]: pgsql_close() -- 20:41:33.480 INFO [5685]: COREGRADE is starting... -- 20:41:33.481 INFO [5685]: Version from config: 1.0 -- 20:41:33.481 DEBUG [5685]: Connecting to database... -- 20:41:33.481 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:41:33.481 SQL [5685]: pgsql_db_connect() -- 20:41:33.485 DEBUG [5685]: Database connection successful -- 20:41:33.485 INFO [5685]: _SERVER found -- 20:41:33.485 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 20:41:33.485 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 20:41:33.485 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=i208v0f9f2iu2n60dajpiqvtf3ba6qc9 -- 20:41:33.485 INFO [5685]: QUERY_STRING = /home/contactus -- 20:41:33.485 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:41:33.518 INFO [5685]: COREGRADE is stopping... -- 20:41:33.518 DEBUG [5685]: Closing database connection -- 20:41:33.518 SQL [5685]: pgsql_close() -- 20:41:34.142 INFO [5685]: COREGRADE is starting... -- 20:41:34.142 INFO [5685]: Version from config: 1.0 -- 20:41:34.142 DEBUG [5685]: Connecting to database... -- 20:41:34.142 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:41:34.142 SQL [5685]: pgsql_db_connect() -- 20:41:34.146 DEBUG [5685]: Database connection successful -- 20:41:34.146 INFO [5685]: _SERVER found -- 20:41:34.146 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 20:41:34.146 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 20:41:34.146 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=k07o2or8jmc94131sij7s2urkd4groip -- 20:41:34.146 INFO [5685]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 20:41:34.146 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:41:34.157 INFO [5685]: COREGRADE is stopping... -- 20:41:34.158 DEBUG [5685]: Closing database connection -- 20:41:34.158 SQL [5685]: pgsql_close() -- 20:41:37.695 INFO [5685]: COREGRADE is starting... -- 20:41:37.695 INFO [5685]: Version from config: 1.0 -- 20:41:37.695 DEBUG [5685]: Connecting to database... -- 20:41:37.695 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:41:37.695 SQL [5685]: pgsql_db_connect() -- 20:41:37.699 DEBUG [5685]: Database connection successful -- 20:41:37.699 INFO [5685]: _SERVER found -- 20:41:37.699 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 20:41:37.699 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 20:41:37.699 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=k07o2or8jmc94131sij7s2urkd4groip -- 20:41:37.699 INFO [5685]: QUERY_STRING = -- 20:41:37.699 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:41:37.730 INFO [5685]: COREGRADE is stopping... -- 20:41:37.730 DEBUG [5685]: Closing database connection -- 20:41:37.730 SQL [5685]: pgsql_close() -- 20:41:39.594 INFO [5685]: COREGRADE is starting... -- 20:41:39.595 INFO [5685]: Version from config: 1.0 -- 20:41:39.595 DEBUG [5685]: Connecting to database... -- 20:41:39.595 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:41:39.595 SQL [5685]: pgsql_db_connect() -- 20:41:39.599 DEBUG [5685]: Database connection successful -- 20:41:39.599 INFO [5685]: _SERVER found -- 20:41:39.599 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 20:41:39.599 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 20:41:39.599 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=k07o2or8jmc94131sij7s2urkd4groip; _gat_gtag_UA_54829827_2=1 -- 20:41:39.599 INFO [5685]: QUERY_STRING = /home/faq -- 20:41:39.599 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:41:39.630 INFO [5685]: COREGRADE is stopping... -- 20:41:39.630 DEBUG [5685]: Closing database connection -- 20:41:39.630 SQL [5685]: pgsql_close() -- 20:41:39.849 INFO [5685]: COREGRADE is starting... -- 20:41:39.849 INFO [5685]: Version from config: 1.0 -- 20:41:39.849 DEBUG [5685]: Connecting to database... -- 20:41:39.849 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:41:39.849 SQL [5685]: pgsql_db_connect() -- 20:41:39.853 DEBUG [5685]: Database connection successful -- 20:41:39.853 INFO [5685]: _SERVER found -- 20:41:39.853 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 20:41:39.853 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 20:41:39.853 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=k07o2or8jmc94131sij7s2urkd4groip; _gat_gtag_UA_54829827_2=1 -- 20:41:39.853 INFO [5685]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 20:41:39.853 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:41:39.864 INFO [5685]: COREGRADE is stopping... -- 20:41:39.864 DEBUG [5685]: Closing database connection -- 20:41:39.864 SQL [5685]: pgsql_close() -- 20:42:16.281 INFO [5697]: COREGRADE is starting... -- 20:42:16.281 INFO [5697]: Version from config: 1.0 -- 20:42:16.281 DEBUG [5697]: Connecting to database... -- 20:42:16.281 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:42:16.281 SQL [5697]: pgsql_db_connect() -- 20:42:16.285 DEBUG [5697]: Database connection successful -- 20:42:16.285 INFO [5697]: _SERVER found -- 20:42:16.285 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 20:42:16.285 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 20:42:16.285 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=k07o2or8jmc94131sij7s2urkd4groip; _gat_gtag_UA_54829827_2=1 -- 20:42:16.285 INFO [5697]: QUERY_STRING = -- 20:42:16.285 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:42:16.317 INFO [5697]: COREGRADE is stopping... -- 20:42:16.317 DEBUG [5697]: Closing database connection -- 20:42:16.317 SQL [5697]: pgsql_close() -- 20:42:16.505 INFO [5697]: COREGRADE is starting... -- 20:42:16.506 INFO [5697]: Version from config: 1.0 -- 20:42:16.506 DEBUG [5697]: Connecting to database... -- 20:42:16.506 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:42:16.506 SQL [5697]: pgsql_db_connect() -- 20:42:16.510 DEBUG [5697]: Database connection successful -- 20:42:16.510 INFO [5697]: _SERVER found -- 20:42:16.510 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 20:42:16.510 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 20:42:16.510 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=k07o2or8jmc94131sij7s2urkd4groip; _gat_gtag_UA_54829827_2=1 -- 20:42:16.510 INFO [5697]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:42:16.510 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:42:16.521 INFO [5697]: COREGRADE is stopping... -- 20:42:16.521 DEBUG [5697]: Closing database connection -- 20:42:16.521 SQL [5697]: pgsql_close() -- 20:43:04.194 INFO [7377]: COREGRADE is starting... -- 20:43:04.194 INFO [7377]: Version from config: 1.0 -- 20:43:04.194 DEBUG [7377]: Connecting to database... -- 20:43:04.194 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:43:04.194 SQL [7377]: pgsql_db_connect() -- 20:43:04.198 DEBUG [7377]: Database connection successful -- 20:43:04.198 INFO [7377]: _SERVER found -- 20:43:04.198 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 20:43:04.198 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 20:43:04.198 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=k07o2or8jmc94131sij7s2urkd4groip -- 20:43:04.198 INFO [7377]: QUERY_STRING = /home/aboutus -- 20:43:04.198 INFO [7377]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:43:04.231 INFO [7377]: COREGRADE is stopping... -- 20:43:04.232 DEBUG [7377]: Closing database connection -- 20:43:04.232 SQL [7377]: pgsql_close() -- 20:43:04.518 INFO [4834]: COREGRADE is starting... -- 20:43:04.518 INFO [4834]: Version from config: 1.0 -- 20:43:04.518 DEBUG [4834]: Connecting to database... -- 20:43:04.518 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:43:04.518 SQL [4834]: pgsql_db_connect() -- 20:43:04.522 DEBUG [4834]: Database connection successful -- 20:43:04.522 INFO [4834]: _SERVER found -- 20:43:04.522 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 20:43:04.522 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 20:43:04.522 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=k07o2or8jmc94131sij7s2urkd4groip -- 20:43:04.522 INFO [4834]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 20:43:04.522 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:43:04.534 INFO [4834]: COREGRADE is stopping... -- 20:43:04.534 DEBUG [4834]: Closing database connection -- 20:43:04.534 SQL [4834]: pgsql_close() -- 20:43:11.918 INFO [4193]: COREGRADE is starting... -- 20:43:11.918 INFO [4193]: Version from config: 1.0 -- 20:43:11.918 DEBUG [4193]: Connecting to database... -- 20:43:11.918 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:43:11.918 SQL [4193]: pgsql_db_connect() -- 20:43:11.922 DEBUG [4193]: Database connection successful -- 20:43:11.922 INFO [4193]: _SERVER found -- 20:43:11.922 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 20:43:11.922 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 20:43:11.922 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=k07o2or8jmc94131sij7s2urkd4groip -- 20:43:11.922 INFO [4193]: QUERY_STRING = /home/aboutus -- 20:43:11.922 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:43:11.957 INFO [4193]: COREGRADE is stopping... -- 20:43:11.957 DEBUG [4193]: Closing database connection -- 20:43:11.957 SQL [4193]: pgsql_close() -- 20:43:15.066 INFO [4193]: COREGRADE is starting... -- 20:43:15.066 INFO [4193]: Version from config: 1.0 -- 20:43:15.066 DEBUG [4193]: Connecting to database... -- 20:43:15.066 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:43:15.066 SQL [4193]: pgsql_db_connect() -- 20:43:15.070 DEBUG [4193]: Database connection successful -- 20:43:15.070 INFO [4193]: _SERVER found -- 20:43:15.070 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 20:43:15.070 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 20:43:15.070 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=k07o2or8jmc94131sij7s2urkd4groip -- 20:43:15.070 INFO [4193]: QUERY_STRING = -- 20:43:15.070 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:43:15.104 INFO [4193]: COREGRADE is stopping... -- 20:43:15.104 DEBUG [4193]: Closing database connection -- 20:43:15.104 SQL [4193]: pgsql_close() -- 20:43:15.623 INFO [4193]: COREGRADE is starting... -- 20:43:15.623 INFO [4193]: Version from config: 1.0 -- 20:43:15.623 DEBUG [4193]: Connecting to database... -- 20:43:15.623 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:43:15.623 SQL [4193]: pgsql_db_connect() -- 20:43:15.627 DEBUG [4193]: Database connection successful -- 20:43:15.627 INFO [4193]: _SERVER found -- 20:43:15.627 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 20:43:15.627 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 20:43:15.627 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=k07o2or8jmc94131sij7s2urkd4groip -- 20:43:15.627 INFO [4193]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:43:15.627 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:43:15.639 INFO [4193]: COREGRADE is stopping... -- 20:43:15.639 DEBUG [4193]: Closing database connection -- 20:43:15.639 SQL [4193]: pgsql_close() -- 20:56:33.286 INFO [7885]: COREGRADE is starting... -- 20:56:33.286 INFO [7885]: Version from config: 1.0 -- 20:56:33.286 DEBUG [7885]: Connecting to database... -- 20:56:33.286 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:56:33.286 SQL [7885]: pgsql_db_connect() -- 20:56:33.291 DEBUG [7885]: Database connection successful -- 20:56:33.291 INFO [7885]: _SERVER found -- 20:56:33.291 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 20:56:33.291 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 20:56:33.291 INFO [7885]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=k07o2or8jmc94131sij7s2urkd4groip -- 20:56:33.291 INFO [7885]: QUERY_STRING = -- 20:56:33.291 INFO [7885]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:56:33.325 INFO [7885]: COREGRADE is stopping... -- 20:56:33.325 DEBUG [7885]: Closing database connection -- 20:56:33.325 SQL [7885]: pgsql_close() -- 20:56:33.727 INFO [6508]: COREGRADE is starting... -- 20:56:33.727 INFO [6508]: Version from config: 1.0 -- 20:56:33.727 DEBUG [6508]: Connecting to database... -- 20:56:33.727 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:56:33.727 SQL [6508]: pgsql_db_connect() -- 20:56:33.732 DEBUG [6508]: Database connection successful -- 20:56:33.732 INFO [6508]: _SERVER found -- 20:56:33.732 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 20:56:33.732 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 20:56:33.732 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=v32t689h3ftrnmfvbiehs10682j66lu7 -- 20:56:33.732 INFO [6508]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:56:33.732 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:56:33.746 INFO [6508]: COREGRADE is stopping... -- 20:56:33.746 DEBUG [6508]: Closing database connection -- 20:56:33.746 SQL [6508]: pgsql_close() -- 20:56:36.342 INFO [6508]: COREGRADE is starting... -- 20:56:36.342 INFO [6508]: Version from config: 1.0 -- 20:56:36.342 DEBUG [6508]: Connecting to database... -- 20:56:36.342 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:56:36.342 SQL [6508]: pgsql_db_connect() -- 20:56:36.346 DEBUG [6508]: Database connection successful -- 20:56:36.346 INFO [6508]: _SERVER found -- 20:56:36.346 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 20:56:36.346 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 20:56:36.346 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=v32t689h3ftrnmfvbiehs10682j66lu7; _gat_gtag_UA_54829827_2=1 -- 20:56:36.347 INFO [6508]: QUERY_STRING = /home/privacy -- 20:56:36.347 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:56:36.380 INFO [6508]: COREGRADE is stopping... -- 20:56:36.380 DEBUG [6508]: Closing database connection -- 20:56:36.380 SQL [6508]: pgsql_close() -- 20:56:36.697 INFO [6508]: COREGRADE is starting... -- 20:56:36.698 INFO [6508]: Version from config: 1.0 -- 20:56:36.698 DEBUG [6508]: Connecting to database... -- 20:56:36.698 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:56:36.698 SQL [6508]: pgsql_db_connect() -- 20:56:36.702 DEBUG [6508]: Database connection successful -- 20:56:36.702 INFO [6508]: _SERVER found -- 20:56:36.702 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 20:56:36.702 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 20:56:36.702 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=v32t689h3ftrnmfvbiehs10682j66lu7; _gat_gtag_UA_54829827_2=1 -- 20:56:36.702 INFO [6508]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 20:56:36.702 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:56:36.714 INFO [6508]: COREGRADE is stopping... -- 20:56:36.714 DEBUG [6508]: Closing database connection -- 20:56:36.714 SQL [6508]: pgsql_close() -- 20:58:24.063 INFO [4251]: COREGRADE is starting... -- 20:58:24.064 INFO [4251]: Version from config: 1.0 -- 20:58:24.064 DEBUG [4251]: Connecting to database... -- 20:58:24.064 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:58:24.064 SQL [4251]: pgsql_db_connect() -- 20:58:24.068 DEBUG [4251]: Database connection successful -- 20:58:24.068 INFO [4251]: _SERVER found -- 20:58:24.068 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 20:58:24.068 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 20:58:24.068 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=v32t689h3ftrnmfvbiehs10682j66lu7 -- 20:58:24.068 INFO [4251]: QUERY_STRING = /home/privacy -- 20:58:24.068 INFO [4251]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:58:24.102 INFO [4251]: COREGRADE is stopping... -- 20:58:24.102 DEBUG [4251]: Closing database connection -- 20:58:24.102 SQL [4251]: pgsql_close() -- 20:58:24.390 INFO [4251]: COREGRADE is starting... -- 20:58:24.390 INFO [4251]: Version from config: 1.0 -- 20:58:24.390 DEBUG [4251]: Connecting to database... -- 20:58:24.390 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:58:24.390 SQL [4251]: pgsql_db_connect() -- 20:58:24.395 DEBUG [4251]: Database connection successful -- 20:58:24.395 INFO [4251]: _SERVER found -- 20:58:24.395 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 20:58:24.395 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 20:58:24.395 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=v32t689h3ftrnmfvbiehs10682j66lu7 -- 20:58:24.395 INFO [4251]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 20:58:24.395 INFO [4251]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:58:24.406 INFO [4251]: COREGRADE is stopping... -- 20:58:24.406 DEBUG [4251]: Closing database connection -- 20:58:24.406 SQL [4251]: pgsql_close() -- 21:19:34.243 INFO [5687]: COREGRADE is starting... -- 21:19:34.244 INFO [5687]: Version from config: 1.0 -- 21:19:34.244 DEBUG [5687]: Connecting to database... -- 21:19:34.244 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:19:34.244 SQL [5687]: pgsql_db_connect() -- 21:19:34.248 DEBUG [5687]: Database connection successful -- 21:19:34.248 INFO [5687]: _SERVER found -- 21:19:34.248 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 21:19:34.248 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 21:19:34.248 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=v32t689h3ftrnmfvbiehs10682j66lu7 -- 21:19:34.248 INFO [5687]: QUERY_STRING = /home/privacy -- 21:19:34.248 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:19:34.283 INFO [5687]: COREGRADE is stopping... -- 21:19:34.283 DEBUG [5687]: Closing database connection -- 21:19:34.283 SQL [5687]: pgsql_close() -- 21:19:34.568 INFO [5687]: COREGRADE is starting... -- 21:19:34.568 INFO [5687]: Version from config: 1.0 -- 21:19:34.568 DEBUG [5687]: Connecting to database... -- 21:19:34.568 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:19:34.568 SQL [5687]: pgsql_db_connect() -- 21:19:34.573 DEBUG [5687]: Database connection successful -- 21:19:34.573 INFO [5687]: _SERVER found -- 21:19:34.573 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 21:19:34.573 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 21:19:34.573 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=mur1kq15ujdn2j33stehhmjb0nmqb6vr -- 21:19:34.573 INFO [5687]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:19:34.573 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:19:34.584 INFO [5687]: COREGRADE is stopping... -- 21:19:34.584 DEBUG [5687]: Closing database connection -- 21:19:34.584 SQL [5687]: pgsql_close() -- 21:22:21.276 INFO [5686]: COREGRADE is starting... -- 21:22:21.276 INFO [5686]: Version from config: 1.0 -- 21:22:21.276 DEBUG [5686]: Connecting to database... -- 21:22:21.276 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:22:21.276 SQL [5686]: pgsql_db_connect() -- 21:22:21.280 DEBUG [5686]: Database connection successful -- 21:22:21.280 INFO [5686]: _SERVER found -- 21:22:21.280 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 21:22:21.280 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 21:22:21.280 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=mur1kq15ujdn2j33stehhmjb0nmqb6vr -- 21:22:21.281 INFO [5686]: QUERY_STRING = /home/privacy -- 21:22:21.281 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:22:21.314 INFO [5686]: COREGRADE is stopping... -- 21:22:21.314 DEBUG [5686]: Closing database connection -- 21:22:21.314 SQL [5686]: pgsql_close() -- 21:22:21.475 INFO [5686]: COREGRADE is starting... -- 21:22:21.475 INFO [5686]: Version from config: 1.0 -- 21:22:21.475 DEBUG [5686]: Connecting to database... -- 21:22:21.475 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:22:21.475 SQL [5686]: pgsql_db_connect() -- 21:22:21.479 DEBUG [5686]: Database connection successful -- 21:22:21.479 INFO [5686]: _SERVER found -- 21:22:21.479 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 21:22:21.479 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 21:22:21.479 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=mur1kq15ujdn2j33stehhmjb0nmqb6vr -- 21:22:21.479 INFO [5686]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:22:21.479 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:22:21.491 INFO [5686]: COREGRADE is stopping... -- 21:22:21.491 DEBUG [5686]: Closing database connection -- 21:22:21.491 SQL [5686]: pgsql_close() -- 21:22:25.049 INFO [5686]: COREGRADE is starting... -- 21:22:25.049 INFO [5686]: Version from config: 1.0 -- 21:22:25.049 DEBUG [5686]: Connecting to database... -- 21:22:25.049 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:22:25.049 SQL [5686]: pgsql_db_connect() -- 21:22:25.053 DEBUG [5686]: Database connection successful -- 21:22:25.053 INFO [5686]: _SERVER found -- 21:22:25.053 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 21:22:25.053 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 21:22:25.053 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=mur1kq15ujdn2j33stehhmjb0nmqb6vr -- 21:22:25.053 INFO [5686]: QUERY_STRING = -- 21:22:25.053 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:22:25.084 INFO [5686]: COREGRADE is stopping... -- 21:22:25.084 DEBUG [5686]: Closing database connection -- 21:22:25.084 SQL [5686]: pgsql_close() -- 21:22:25.313 INFO [5686]: COREGRADE is starting... -- 21:22:25.313 INFO [5686]: Version from config: 1.0 -- 21:22:25.313 DEBUG [5686]: Connecting to database... -- 21:22:25.313 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:22:25.313 SQL [5686]: pgsql_db_connect() -- 21:22:25.317 DEBUG [5686]: Database connection successful -- 21:22:25.317 INFO [5686]: _SERVER found -- 21:22:25.317 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 21:22:25.317 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 21:22:25.317 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=mur1kq15ujdn2j33stehhmjb0nmqb6vr -- 21:22:25.317 INFO [5686]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:22:25.317 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:22:25.329 INFO [5686]: COREGRADE is stopping... -- 21:22:25.329 DEBUG [5686]: Closing database connection -- 21:22:25.329 SQL [5686]: pgsql_close() -- 21:24:36.496 INFO [5685]: COREGRADE is starting... -- 21:24:36.497 INFO [5685]: Version from config: 1.0 -- 21:24:36.497 DEBUG [5685]: Connecting to database... -- 21:24:36.497 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:24:36.497 SQL [5685]: pgsql_db_connect() -- 21:24:36.501 DEBUG [5685]: Database connection successful -- 21:24:36.501 INFO [5685]: _SERVER found -- 21:24:36.501 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 21:24:36.501 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 21:24:36.501 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=mur1kq15ujdn2j33stehhmjb0nmqb6vr -- 21:24:36.501 INFO [5685]: QUERY_STRING = /home/aboutus -- 21:24:36.501 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:24:36.533 INFO [5685]: COREGRADE is stopping... -- 21:24:36.533 DEBUG [5685]: Closing database connection -- 21:24:36.533 SQL [5685]: pgsql_close() -- 21:24:37.011 INFO [5685]: COREGRADE is starting... -- 21:24:37.011 INFO [5685]: Version from config: 1.0 -- 21:24:37.011 DEBUG [5685]: Connecting to database... -- 21:24:37.011 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:24:37.011 SQL [5685]: pgsql_db_connect() -- 21:24:37.015 DEBUG [5685]: Database connection successful -- 21:24:37.015 INFO [5685]: _SERVER found -- 21:24:37.015 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 21:24:37.015 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 21:24:37.015 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=ukdvlqlqmdni3e0c91ft2b531j5urtup -- 21:24:37.015 INFO [5685]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:24:37.015 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:24:37.026 INFO [5685]: COREGRADE is stopping... -- 21:24:37.026 DEBUG [5685]: Closing database connection -- 21:24:37.026 SQL [5685]: pgsql_close() -- 21:24:43.127 INFO [5697]: COREGRADE is starting... -- 21:24:43.128 INFO [5697]: Version from config: 1.0 -- 21:24:43.128 DEBUG [5697]: Connecting to database... -- 21:24:43.128 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:24:43.128 SQL [5697]: pgsql_db_connect() -- 21:24:43.132 DEBUG [5697]: Database connection successful -- 21:24:43.132 INFO [5697]: _SERVER found -- 21:24:43.132 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 21:24:43.132 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 21:24:43.132 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=ukdvlqlqmdni3e0c91ft2b531j5urtup -- 21:24:43.132 INFO [5697]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 21:24:43.132 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:24:43.145 INFO [5697]: COREGRADE is stopping... -- 21:24:43.145 DEBUG [5697]: Closing database connection -- 21:24:43.145 SQL [5697]: pgsql_close() -- 21:26:43.389 INFO [7377]: COREGRADE is starting... -- 21:26:43.389 INFO [7377]: Version from config: 1.0 -- 21:26:43.389 DEBUG [7377]: Connecting to database... -- 21:26:43.389 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:26:43.389 SQL [7377]: pgsql_db_connect() -- 21:26:43.393 DEBUG [7377]: Database connection successful -- 21:26:43.393 INFO [7377]: _SERVER found -- 21:26:43.393 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 21:26:43.393 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 21:26:43.393 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=ukdvlqlqmdni3e0c91ft2b531j5urtup -- 21:26:43.393 INFO [7377]: QUERY_STRING = /home/aboutus -- 21:26:43.393 INFO [7377]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:26:43.427 INFO [7377]: COREGRADE is stopping... -- 21:26:43.427 DEBUG [7377]: Closing database connection -- 21:26:43.427 SQL [7377]: pgsql_close() -- 21:26:43.593 INFO [7377]: COREGRADE is starting... -- 21:26:43.593 INFO [7377]: Version from config: 1.0 -- 21:26:43.593 DEBUG [7377]: Connecting to database... -- 21:26:43.593 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:26:43.593 SQL [7377]: pgsql_db_connect() -- 21:26:43.597 DEBUG [7377]: Database connection successful -- 21:26:43.597 INFO [7377]: _SERVER found -- 21:26:43.597 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 21:26:43.597 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 21:26:43.597 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=ukdvlqlqmdni3e0c91ft2b531j5urtup -- 21:26:43.597 INFO [7377]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:26:43.597 INFO [7377]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:26:43.609 INFO [7377]: COREGRADE is stopping... -- 21:26:43.609 DEBUG [7377]: Closing database connection -- 21:26:43.609 SQL [7377]: pgsql_close() -- 21:26:43.825 INFO [7377]: COREGRADE is starting... -- 21:26:43.826 INFO [7377]: Version from config: 1.0 -- 21:26:43.826 DEBUG [7377]: Connecting to database... -- 21:26:43.826 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:26:43.826 SQL [7377]: pgsql_db_connect() -- 21:26:43.830 DEBUG [7377]: Database connection successful -- 21:26:43.830 INFO [7377]: _SERVER found -- 21:26:43.830 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 21:26:43.830 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 21:26:43.830 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=ukdvlqlqmdni3e0c91ft2b531j5urtup -- 21:26:43.830 INFO [7377]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 21:26:43.830 INFO [7377]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:26:43.841 INFO [7377]: COREGRADE is stopping... -- 21:26:43.841 DEBUG [7377]: Closing database connection -- 21:26:43.841 SQL [7377]: pgsql_close() -- 21:27:20.882 INFO [4834]: COREGRADE is starting... -- 21:27:20.882 INFO [4834]: Version from config: 1.0 -- 21:27:20.882 DEBUG [4834]: Connecting to database... -- 21:27:20.882 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:20.882 SQL [4834]: pgsql_db_connect() -- 21:27:20.886 DEBUG [4834]: Database connection successful -- 21:27:20.886 INFO [4834]: _SERVER found -- 21:27:20.886 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 21:27:20.886 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 21:27:20.886 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=ukdvlqlqmdni3e0c91ft2b531j5urtup -- 21:27:20.886 INFO [4834]: QUERY_STRING = -- 21:27:20.886 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:27:20.924 INFO [4834]: COREGRADE is stopping... -- 21:27:20.924 DEBUG [4834]: Closing database connection -- 21:27:20.924 SQL [4834]: pgsql_close() -- 21:27:21.277 INFO [4834]: COREGRADE is starting... -- 21:27:21.278 INFO [4834]: Version from config: 1.0 -- 21:27:21.278 DEBUG [4834]: Connecting to database... -- 21:27:21.278 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:21.278 SQL [4834]: pgsql_db_connect() -- 21:27:21.282 DEBUG [4834]: Database connection successful -- 21:27:21.282 INFO [4834]: _SERVER found -- 21:27:21.282 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 21:27:21.282 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 21:27:21.282 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=ukdvlqlqmdni3e0c91ft2b531j5urtup -- 21:27:21.282 INFO [4834]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:27:21.282 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:27:21.293 INFO [4834]: COREGRADE is stopping... -- 21:27:21.293 DEBUG [4834]: Closing database connection -- 21:27:21.293 SQL [4834]: pgsql_close() -- 21:27:27.314 INFO [4193]: COREGRADE is starting... -- 21:27:27.314 INFO [4193]: Version from config: 1.0 -- 21:27:27.314 DEBUG [4193]: Connecting to database... -- 21:27:27.314 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:27.314 SQL [4193]: pgsql_db_connect() -- 21:27:27.319 DEBUG [4193]: Database connection successful -- 21:27:27.319 INFO [4193]: _SERVER found -- 21:27:27.319 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 21:27:27.319 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 21:27:27.319 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=ukdvlqlqmdni3e0c91ft2b531j5urtup; _gat_gtag_UA_54829827_2=1 -- 21:27:27.319 INFO [4193]: QUERY_STRING = /home/aboutus -- 21:27:27.319 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:27:27.355 INFO [4193]: COREGRADE is stopping... -- 21:27:27.355 DEBUG [4193]: Closing database connection -- 21:27:27.355 SQL [4193]: pgsql_close() -- 21:27:27.551 INFO [4193]: COREGRADE is starting... -- 21:27:27.551 INFO [4193]: Version from config: 1.0 -- 21:27:27.551 DEBUG [4193]: Connecting to database... -- 21:27:27.551 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:27.551 SQL [4193]: pgsql_db_connect() -- 21:27:27.555 DEBUG [4193]: Database connection successful -- 21:27:27.555 INFO [4193]: _SERVER found -- 21:27:27.555 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 21:27:27.555 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 21:27:27.555 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=ukdvlqlqmdni3e0c91ft2b531j5urtup; _gat_gtag_UA_54829827_2=1 -- 21:27:27.555 INFO [4193]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:27:27.555 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:27:27.567 INFO [4193]: COREGRADE is stopping... -- 21:27:27.567 DEBUG [4193]: Closing database connection -- 21:27:27.567 SQL [4193]: pgsql_close() -- 21:27:56.357 INFO [7885]: COREGRADE is starting... -- 21:27:56.358 INFO [7885]: Version from config: 1.0 -- 21:27:56.358 DEBUG [7885]: Connecting to database... -- 21:27:56.358 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:56.358 SQL [7885]: pgsql_db_connect() -- 21:27:56.362 DEBUG [7885]: Database connection successful -- 21:27:56.362 INFO [7885]: _SERVER found -- 21:27:56.362 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 21:27:56.362 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 21:27:56.362 INFO [7885]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=ukdvlqlqmdni3e0c91ft2b531j5urtup; _gat_gtag_UA_54829827_2=1 -- 21:27:56.362 INFO [7885]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 21:27:56.362 INFO [7885]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:27:56.374 INFO [7885]: COREGRADE is stopping... -- 21:27:56.374 DEBUG [7885]: Closing database connection -- 21:27:56.374 SQL [7885]: pgsql_close() -- 21:30:05.226 INFO [6508]: COREGRADE is starting... -- 21:30:05.226 INFO [6508]: Version from config: 1.0 -- 21:30:05.226 DEBUG [6508]: Connecting to database... -- 21:30:05.226 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:30:05.226 SQL [6508]: pgsql_db_connect() -- 21:30:05.230 DEBUG [6508]: Database connection successful -- 21:30:05.230 INFO [6508]: _SERVER found -- 21:30:05.230 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 21:30:05.230 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 21:30:05.230 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=ukdvlqlqmdni3e0c91ft2b531j5urtup -- 21:30:05.230 INFO [6508]: QUERY_STRING = /assets2/vendors/js/waves.min.js.map -- 21:30:05.230 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:30:05.243 INFO [6508]: COREGRADE is stopping... -- 21:30:05.243 DEBUG [6508]: Closing database connection -- 21:30:05.243 SQL [6508]: pgsql_close() -- 22:50:38.667 INFO [4251]: COREGRADE is starting... -- 22:50:38.668 INFO [4251]: Version from config: 1.0 -- 22:50:38.668 DEBUG [4251]: Connecting to database... -- 22:50:38.668 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:50:38.668 SQL [4251]: pgsql_db_connect() -- 22:50:38.673 DEBUG [4251]: Database connection successful -- 22:50:38.673 INFO [4251]: _SERVER found -- 22:50:38.673 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 22:50:38.673 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 22:50:38.673 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845 -- 22:50:38.673 INFO [4251]: QUERY_STRING = -- 22:50:38.673 INFO [4251]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:50:38.709 INFO [4251]: COREGRADE is stopping... -- 22:50:38.709 DEBUG [4251]: Closing database connection -- 22:50:38.709 SQL [4251]: pgsql_close() -- 22:50:38.941 INFO [4251]: COREGRADE is starting... -- 22:50:38.941 INFO [4251]: Version from config: 1.0 -- 22:50:38.941 DEBUG [4251]: Connecting to database... -- 22:50:38.941 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:50:38.941 SQL [4251]: pgsql_db_connect() -- 22:50:38.945 DEBUG [4251]: Database connection successful -- 22:50:38.945 INFO [4251]: _SERVER found -- 22:50:38.945 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 22:50:38.945 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 22:50:38.945 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=g1sbmq50j6nslb7pu5avmmor02dq5e31 -- 22:50:38.945 INFO [4251]: QUERY_STRING = /assets/img/footer_1.jpg -- 22:50:38.946 INFO [4251]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:50:38.957 INFO [4251]: COREGRADE is stopping... -- 22:50:38.957 DEBUG [4251]: Closing database connection -- 22:50:38.957 SQL [4251]: pgsql_close() -- 22:50:59.793 INFO [5687]: COREGRADE is starting... -- 22:50:59.793 INFO [5687]: Version from config: 1.0 -- 22:50:59.793 DEBUG [5687]: Connecting to database... -- 22:50:59.793 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:50:59.793 SQL [5687]: pgsql_db_connect() -- 22:50:59.797 DEBUG [5687]: Database connection successful -- 22:50:59.797 INFO [5687]: _SERVER found -- 22:50:59.797 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 22:50:59.797 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 22:50:59.797 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=g1sbmq50j6nslb7pu5avmmor02dq5e31; _gat_gtag_UA_54829827_2=1 -- 22:50:59.797 INFO [5687]: QUERY_STRING = -- 22:50:59.797 INFO [5687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:50:59.831 INFO [5687]: COREGRADE is stopping... -- 22:50:59.831 DEBUG [5687]: Closing database connection -- 22:50:59.831 SQL [5687]: pgsql_close() -- 22:51:00.156 INFO [5687]: COREGRADE is starting... -- 22:51:00.156 INFO [5687]: Version from config: 1.0 -- 22:51:00.156 DEBUG [5687]: Connecting to database... -- 22:51:00.156 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:51:00.156 SQL [5687]: pgsql_db_connect() -- 22:51:00.160 DEBUG [5687]: Database connection successful -- 22:51:00.160 INFO [5687]: _SERVER found -- 22:51:00.160 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 22:51:00.160 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 22:51:00.160 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=g1sbmq50j6nslb7pu5avmmor02dq5e31; _gat_gtag_UA_54829827_2=1 -- 22:51:00.160 INFO [5687]: QUERY_STRING = /assets/img/footer_1.jpg -- 22:51:00.160 INFO [5687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 22:51:00.172 INFO [5687]: COREGRADE is stopping... -- 22:51:00.172 DEBUG [5687]: Closing database connection -- 22:51:00.172 SQL [5687]: pgsql_close() -- 23:12:13.318 INFO [5686]: COREGRADE is starting... -- 23:12:13.318 INFO [5686]: Version from config: 1.0 -- 23:12:13.318 DEBUG [5686]: Connecting to database... -- 23:12:13.318 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:12:13.318 SQL [5686]: pgsql_db_connect() -- 23:12:13.323 DEBUG [5686]: Database connection successful -- 23:12:13.323 INFO [5686]: _SERVER found -- 23:12:13.323 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 23:12:13.323 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 23:12:13.323 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1035126347.1586859928 -- 23:12:13.323 INFO [5686]: QUERY_STRING = -- 23:12:13.323 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 23:12:13.356 INFO [5686]: COREGRADE is stopping... -- 23:12:13.356 DEBUG [5686]: Closing database connection -- 23:12:13.356 SQL [5686]: pgsql_close() -- 23:54:43.793 INFO [4834]: COREGRADE is starting... -- 23:54:43.794 INFO [4834]: Version from config: 1.0 -- 23:54:43.794 DEBUG [4834]: Connecting to database... -- 23:54:43.794 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:54:43.794 SQL [4834]: pgsql_db_connect() -- 23:54:43.798 DEBUG [4834]: Database connection successful -- 23:54:43.798 INFO [4834]: _SERVER found -- 23:54:43.798 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 23:54:43.798 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 23:54:43.798 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1158531760.1586527998 -- 23:54:43.798 INFO [4834]: QUERY_STRING = -- 23:54:43.798 INFO [4834]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:54:43.835 INFO [4834]: COREGRADE is stopping... -- 23:54:43.835 DEBUG [4834]: Closing database connection -- 23:54:43.835 SQL [4834]: pgsql_close() -- 23:54:44.944 INFO [4834]: COREGRADE is starting... -- 23:54:44.944 INFO [4834]: Version from config: 1.0 -- 23:54:44.944 DEBUG [4834]: Connecting to database... -- 23:54:44.945 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:54:44.945 SQL [4834]: pgsql_db_connect() -- 23:54:44.949 DEBUG [4834]: Database connection successful -- 23:54:44.949 INFO [4834]: _SERVER found -- 23:54:44.949 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 23:54:44.949 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 23:54:44.949 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1158531760.1586527998; ci_session=l5g4nmgdv54viujnvf81iomsg8rff38f -- 23:54:44.949 INFO [4834]: QUERY_STRING = /assets/img/footer_1.jpg -- 23:54:44.949 INFO [4834]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:54:44.960 INFO [4834]: COREGRADE is stopping... -- 23:54:44.960 DEBUG [4834]: Closing database connection -- 23:54:44.960 SQL [4834]: pgsql_close() -- 23:55:19.804 INFO [4193]: COREGRADE is starting... -- 23:55:19.805 INFO [4193]: Version from config: 1.0 -- 23:55:19.805 DEBUG [4193]: Connecting to database... -- 23:55:19.805 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:55:19.805 SQL [4193]: pgsql_db_connect() -- 23:55:19.809 DEBUG [4193]: Database connection successful -- 23:55:19.809 INFO [4193]: _SERVER found -- 23:55:19.809 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 23:55:19.809 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 23:55:19.809 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=g1sbmq50j6nslb7pu5avmmor02dq5e31 -- 23:55:19.809 INFO [4193]: QUERY_STRING = -- 23:55:19.809 INFO [4193]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:55:19.845 INFO [4193]: COREGRADE is stopping... -- 23:55:19.845 DEBUG [4193]: Closing database connection -- 23:55:19.845 SQL [4193]: pgsql_close() -- 23:55:19.941 INFO [4193]: COREGRADE is starting... -- 23:55:19.941 INFO [4193]: Version from config: 1.0 -- 23:55:19.941 DEBUG [4193]: Connecting to database... -- 23:55:19.941 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:55:19.941 SQL [4193]: pgsql_db_connect() -- 23:55:19.945 DEBUG [4193]: Database connection successful -- 23:55:19.945 INFO [4193]: _SERVER found -- 23:55:19.945 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 23:55:19.945 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 23:55:19.945 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=puk0vfn8c8h3d8cpfa2e25nrftvopi0k -- 23:55:19.945 INFO [4193]: QUERY_STRING = /assets/img/footer_1.jpg -- 23:55:19.945 INFO [4193]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:55:19.957 INFO [4193]: COREGRADE is stopping... -- 23:55:19.957 DEBUG [4193]: Closing database connection -- 23:55:19.957 SQL [4193]: pgsql_close() -- 23:55:49.076 INFO [7885]: COREGRADE is starting... -- 23:55:49.076 INFO [7885]: Version from config: 1.0 -- 23:55:49.076 DEBUG [7885]: Connecting to database... -- 23:55:49.076 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:55:49.076 SQL [7885]: pgsql_db_connect() -- 23:55:49.081 DEBUG [7885]: Database connection successful -- 23:55:49.081 INFO [7885]: _SERVER found -- 23:55:49.081 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 23:55:49.081 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 23:55:49.081 INFO [7885]: QUERY_STRING = /auth/newuser -- 23:55:49.081 INFO [7885]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:55:49.113 INFO [7885]: COREGRADE is stopping... -- 23:55:49.113 DEBUG [7885]: Closing database connection -- 23:55:49.113 SQL [7885]: pgsql_close() -- 23:55:49.468 INFO [7885]: COREGRADE is starting... -- 23:55:49.468 INFO [7885]: Version from config: 1.0 -- 23:55:49.468 DEBUG [7885]: Connecting to database... -- 23:55:49.468 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:55:49.468 SQL [7885]: pgsql_db_connect() -- 23:55:49.472 DEBUG [7885]: Database connection successful -- 23:55:49.472 INFO [7885]: _SERVER found -- 23:55:49.472 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 23:55:49.472 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 23:55:49.472 INFO [7885]: HTTP_COOKIE = ci_session=80s2ulks32m7am171qmngcv9q847675s -- 23:55:49.472 INFO [7885]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 23:55:49.472 INFO [7885]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:55:49.483 INFO [7885]: COREGRADE is stopping... -- 23:55:49.483 DEBUG [7885]: Closing database connection -- 23:55:49.483 SQL [7885]: pgsql_close() -- 23:55:49.945 INFO [7885]: COREGRADE is starting... -- 23:55:49.945 INFO [7885]: Version from config: 1.0 -- 23:55:49.945 DEBUG [7885]: Connecting to database... -- 23:55:49.945 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:55:49.946 SQL [7885]: pgsql_db_connect() -- 23:55:49.950 DEBUG [7885]: Database connection successful -- 23:55:49.950 INFO [7885]: _SERVER found -- 23:55:49.950 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 23:55:49.950 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 23:55:49.950 INFO [7885]: HTTP_COOKIE = ci_session=80s2ulks32m7am171qmngcv9q847675s -- 23:55:49.950 INFO [7885]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 23:55:49.950 INFO [7885]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:55:49.961 INFO [7885]: COREGRADE is stopping... -- 23:55:49.961 DEBUG [7885]: Closing database connection -- 23:55:49.961 SQL [7885]: pgsql_close() -- 23:55:52.280 INFO [7885]: COREGRADE is starting... -- 23:55:52.280 INFO [7885]: Version from config: 1.0 -- 23:55:52.280 DEBUG [7885]: Connecting to database... -- 23:55:52.280 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:55:52.280 SQL [7885]: pgsql_db_connect() -- 23:55:52.285 DEBUG [7885]: Database connection successful -- 23:55:52.285 INFO [7885]: _SERVER found -- 23:55:52.285 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 23:55:52.285 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 23:55:52.285 INFO [7885]: HTTP_COOKIE = ci_session=80s2ulks32m7am171qmngcv9q847675s -- 23:55:52.285 INFO [7885]: QUERY_STRING = /auth -- 23:55:52.285 INFO [7885]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:55:52.317 INFO [7885]: COREGRADE is stopping... -- 23:55:52.317 DEBUG [7885]: Closing database connection -- 23:55:52.317 SQL [7885]: pgsql_close() -- 23:56:28.990 INFO [6508]: COREGRADE is starting... -- 23:56:28.990 INFO [6508]: Version from config: 1.0 -- 23:56:28.990 DEBUG [6508]: Connecting to database... -- 23:56:28.990 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:56:28.990 SQL [6508]: pgsql_db_connect() -- 23:56:29.031 INFO [6508]: COREGRADE is starting... -- 23:56:29.032 INFO [6508]: Version from config: 1.0 -- 23:56:29.032 DEBUG [6508]: Connecting to database... -- 23:56:29.032 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:56:29.032 SQL [6508]: pgsql_db_connect() -- 23:56:29.036 DEBUG [6508]: Database connection successful -- 23:56:29.036 INFO [6508]: _SERVER found -- 23:56:29.036 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 23:56:29.036 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 23:56:29.036 INFO [6508]: HTTP_COOKIE = ci_session=80s2ulks32m7am171qmngcv9q847675s -- 23:56:29.036 INFO [6508]: QUERY_STRING = -- 23:56:29.036 INFO [6508]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:56:29.036 INFO [6508]: SystemStatus()09-09-********~************ -- 23:56:29.036 INFO [6508]: long coregrade_api_main(CVars in, CVars &out) -- 23:56:29.036 INFO [6508]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 23:56:29.036 INFO [6508]: account calls -- 23:56:29.036 INFO [6508]: account_calls() -- 23:56:29.036 INFO [6508]: LoginCoreGradeAccount() -- 23:56:29.036 FLOG_MAX [6508]: REQ_STRING(username) -- 23:56:29.036 FLOG_MAX [6508]: REQ_STRING(password) -- 23:56:29.036 FLOG_MAX [6508]: REQ_STRING(sessionid) -- 23:56:29.036 FLOG_MAX [6508]: long load_db_record( CVars &rec, const char * query, ... ) -- 23:56:29.036 SQL [6508]: pgsql_query() -- 23:56:29.036 SQL [6508]: About to run query: -- 23:56:29.036 SQL [6508]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345t78') -- 23:56:29.040 SQL [6508]: Found rows: 0 -- 23:56:29.040 SQL [6508]: Found rows: 0 -- 23:56:29.040 INFO [6508]: long SessionCheck(long uid, const char *sessionid, int create ) -- 23:56:29.040 FLOG_MAX [6508]: long load_db_record( CVars &rec, const char * query, ... ) -- 23:56:29.040 SQL [6508]: pgsql_query() -- 23:56:29.040 SQL [6508]: About to run query: -- 23:56:29.040 SQL [6508]: SELECT upper(md5( now()::text )) AS folder -- 23:56:29.040 SQL [6508]: Found rows: 1 -- 23:56:29.040 FLOG_MAX [6508]: load_db_record(SELECT upper(md5( now()::text )) AS folder) num_cols=1 -- 23:56:29.040 FLOG_MAX [6508]: update_db_record() -- 23:56:29.040 FLOG_MAX [6508]: Bad parameter exception: 'id' -- 23:56:29.040 INFO [6508]: RET: folder=EBA0C83BE184E510BE6823AE6E3E8392 -- 23:56:29.040 INFO [6508]: RET: member_id= -- 23:56:29.040 INFO [6508]: RET: result=YES I GET TO BACK END -- 23:56:29.040 INFO [6508]: RET: sessionid= -- 23:56:29.040 INFO [6508]: RET: status=Incorrect input parameter -- 23:56:29.042 INFO [6508]: COREGRADE is stopping... -- 23:56:29.042 DEBUG [6508]: Closing database connection -- 23:56:29.042 SQL [6508]: pgsql_close() -- 23:56:28.995 DEBUG [6508]: Database connection successful -- 23:56:28.995 INFO [6508]: _SERVER found -- 23:56:28.995 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 23:56:28.995 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 23:56:28.995 INFO [6508]: HTTP_COOKIE = ci_session=80s2ulks32m7am171qmngcv9q847675s -- 23:56:28.995 INFO [6508]: QUERY_STRING = /auth -- 23:56:28.995 INFO [6508]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:56:29.042 INFO [6508]: COREGRADE is stopping... -- 23:56:29.042 DEBUG [6508]: Closing database connection -- 23:56:29.042 SQL [6508]: pgsql_close() -- 23:56:54.824 INFO [4251]: COREGRADE is starting... -- 23:56:54.824 INFO [4251]: Version from config: 1.0 -- 23:56:54.824 DEBUG [4251]: Connecting to database... -- 23:56:54.824 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:56:54.824 SQL [4251]: pgsql_db_connect() -- 23:56:54.829 DEBUG [4251]: Database connection successful -- 23:56:54.829 INFO [4251]: _SERVER found -- 23:56:54.829 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 23:56:54.829 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 23:56:54.829 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=puk0vfn8c8h3d8cpfa2e25nrftvopi0k -- 23:56:54.829 INFO [4251]: QUERY_STRING = /auth -- 23:56:54.829 INFO [4251]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:56:54.862 INFO [4251]: COREGRADE is stopping... -- 23:56:54.862 DEBUG [4251]: Closing database connection -- 23:56:54.862 SQL [4251]: pgsql_close() -- 23:56:55.044 INFO [4251]: COREGRADE is starting... -- 23:56:55.045 INFO [4251]: Version from config: 1.0 -- 23:56:55.045 DEBUG [4251]: Connecting to database... -- 23:56:55.045 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:56:55.045 SQL [4251]: pgsql_db_connect() -- 23:56:55.049 DEBUG [4251]: Database connection successful -- 23:56:55.049 INFO [4251]: _SERVER found -- 23:56:55.049 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 23:56:55.049 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 23:56:55.049 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=puk0vfn8c8h3d8cpfa2e25nrftvopi0k -- 23:56:55.049 INFO [4251]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 23:56:55.049 INFO [4251]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 23:56:55.060 INFO [4251]: COREGRADE is stopping... -- 23:56:55.060 DEBUG [4251]: Closing database connection -- 23:56:55.060 SQL [4251]: pgsql_close() -- 00:13:24.425 INFO [5685]: COREGRADE is starting... -- 00:13:24.425 INFO [5685]: Version from config: 1.0 -- 00:13:24.425 DEBUG [5685]: Connecting to database... -- 00:13:24.425 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:13:24.425 SQL [5685]: pgsql_db_connect() -- 00:13:24.430 DEBUG [5685]: Database connection successful -- 00:13:24.430 INFO [5685]: _SERVER found -- 00:13:24.430 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 00:13:24.430 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 00:13:24.430 INFO [5685]: QUERY_STRING = -- 00:13:24.430 INFO [5685]: HTTP_X_FORWARDED_FOR = 185.237.177.238 -- 00:13:24.465 INFO [5685]: COREGRADE is stopping... -- 00:13:24.465 DEBUG [5685]: Closing database connection -- 00:13:24.465 SQL [5685]: pgsql_close() -- 00:40:45.259 INFO [5697]: COREGRADE is starting... -- 00:40:45.260 INFO [5697]: Version from config: 1.0 -- 00:40:45.260 DEBUG [5697]: Connecting to database... -- 00:40:45.260 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:40:45.260 SQL [5697]: pgsql_db_connect() -- 00:40:45.264 DEBUG [5697]: Database connection successful -- 00:40:45.264 INFO [5697]: _SERVER found -- 00:40:45.264 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 00:40:45.264 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 00:40:45.264 INFO [5697]: QUERY_STRING = /wp-login.php -- 00:40:45.264 INFO [5697]: HTTP_X_FORWARDED_FOR = 37.187.75.16 -- 00:40:45.278 INFO [5697]: COREGRADE is stopping... -- 00:40:45.278 DEBUG [5697]: Closing database connection -- 00:40:45.278 SQL [5697]: pgsql_close() -- 00:41:40.657 INFO [7377]: COREGRADE is starting... -- 00:41:40.657 INFO [7377]: Version from config: 1.0 -- 00:41:40.657 DEBUG [7377]: Connecting to database... -- 00:41:40.657 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:41:40.657 SQL [7377]: pgsql_db_connect() -- 00:41:40.661 DEBUG [7377]: Database connection successful -- 00:41:40.661 INFO [7377]: _SERVER found -- 00:41:40.661 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 00:41:40.661 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 00:41:40.661 INFO [7377]: QUERY_STRING = /robots.txt -- 00:41:40.661 INFO [7377]: HTTP_X_FORWARDED_FOR = 37.187.75.16 -- 00:41:40.674 INFO [7377]: COREGRADE is stopping... -- 00:41:40.674 DEBUG [7377]: Closing database connection -- 00:41:40.674 SQL [7377]: pgsql_close() -- 01:25:21.783 INFO [5686]: COREGRADE is starting... -- 01:25:21.784 INFO [5686]: Version from config: 1.0 -- 01:25:21.784 DEBUG [5686]: Connecting to database... -- 01:25:21.784 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:25:21.784 SQL [5686]: pgsql_db_connect() -- 01:25:21.789 DEBUG [5686]: Database connection successful -- 01:25:21.789 INFO [5686]: _SERVER found -- 01:25:21.789 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 01:25:21.789 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 01:25:21.789 INFO [5686]: QUERY_STRING = /.well-known/acme-challenge/K4PiMZYh99bt85sy9tVjI5jL8IlNoqnBJ1JMHjt9Seg -- 01:25:21.789 INFO [5686]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 01:25:21.803 INFO [5686]: COREGRADE is stopping... -- 01:25:21.803 DEBUG [5686]: Closing database connection -- 01:25:21.803 SQL [5686]: pgsql_close() -- 01:25:22.015 INFO [4193]: COREGRADE is starting... -- 01:25:22.015 INFO [4193]: Version from config: 1.0 -- 01:25:22.015 DEBUG [4193]: Connecting to database... -- 01:25:22.015 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:25:22.015 SQL [4193]: pgsql_db_connect() -- 01:25:22.019 DEBUG [4193]: Database connection successful -- 01:25:22.019 INFO [4193]: _SERVER found -- 01:25:22.019 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 01:25:22.019 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 01:25:22.019 INFO [4193]: QUERY_STRING = /.well-known/acme-challenge/K4PiMZYh99bt85sy9tVjI5jL8IlNoqnBJ1JMHjt9Seg -- 01:25:22.019 INFO [4193]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 01:25:22.034 INFO [4193]: COREGRADE is stopping... -- 01:25:22.034 DEBUG [4193]: Closing database connection -- 01:25:22.034 SQL [4193]: pgsql_close() -- 01:25:22.110 INFO [4193]: COREGRADE is starting... -- 01:25:22.110 INFO [4193]: Version from config: 1.0 -- 01:25:22.110 DEBUG [4193]: Connecting to database... -- 01:25:22.110 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:25:22.110 SQL [4193]: pgsql_db_connect() -- 01:25:22.121 INFO [6508]: COREGRADE is starting... -- 01:25:22.122 INFO [6508]: Version from config: 1.0 -- 01:25:22.122 DEBUG [6508]: Connecting to database... -- 01:25:22.122 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:25:22.122 SQL [6508]: pgsql_db_connect() -- 01:25:22.114 DEBUG [4193]: Database connection successful -- 01:25:22.114 INFO [4193]: _SERVER found -- 01:25:22.114 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 01:25:22.114 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 01:25:22.114 INFO [4193]: QUERY_STRING = /.well-known/acme-challenge/K4PiMZYh99bt85sy9tVjI5jL8IlNoqnBJ1JMHjt9Seg -- 01:25:22.114 INFO [4193]: HTTP_X_FORWARDED_FOR = 52.28.236.88 -- 01:25:22.125 INFO [4193]: COREGRADE is stopping... -- 01:25:22.125 DEBUG [4193]: Closing database connection -- 01:25:22.125 SQL [4193]: pgsql_close() -- 01:25:22.126 DEBUG [6508]: Database connection successful -- 01:25:22.126 INFO [6508]: _SERVER found -- 01:25:22.126 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 01:25:22.126 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 01:25:22.126 INFO [6508]: QUERY_STRING = /.well-known/acme-challenge/K4PiMZYh99bt85sy9tVjI5jL8IlNoqnBJ1JMHjt9Seg -- 01:25:22.126 INFO [6508]: HTTP_X_FORWARDED_FOR = 34.222.229.130 -- 01:25:22.141 INFO [6508]: COREGRADE is stopping... -- 01:25:22.141 DEBUG [6508]: Closing database connection -- 01:25:22.141 SQL [6508]: pgsql_close() -- 06:21:02.141 INFO [7377]: COREGRADE is starting... -- 06:21:02.142 INFO [7377]: Version from config: 1.0 -- 06:21:02.142 DEBUG [7377]: Connecting to database... -- 06:21:02.142 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:21:02.142 SQL [7377]: pgsql_db_connect() -- 06:21:02.147 DEBUG [7377]: Database connection successful -- 06:21:02.147 INFO [7377]: _SERVER found -- 06:21:02.147 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 06:21:02.147 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 06:21:02.147 INFO [7377]: QUERY_STRING = -- 06:21:02.147 INFO [7377]: HTTP_X_FORWARDED_FOR = 171.67.70.85 -- 06:21:02.185 INFO [7377]: COREGRADE is stopping... -- 06:21:02.185 DEBUG [7377]: Closing database connection -- 06:21:02.185 SQL [7377]: pgsql_close() -- 07:27:40.228 INFO [5686]: COREGRADE is starting... -- 07:27:40.229 INFO [5686]: Version from config: 1.0 -- 07:27:40.229 DEBUG [5686]: Connecting to database... -- 07:27:40.229 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:27:40.229 SQL [5686]: pgsql_db_connect() -- 07:27:40.234 DEBUG [5686]: Database connection successful -- 07:27:40.234 INFO [5686]: _SERVER found -- 07:27:40.234 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 07:27:40.234 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 07:27:40.234 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1035126347.1586859928 -- 07:27:40.234 INFO [5686]: QUERY_STRING = -- 07:27:40.234 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:27:40.269 INFO [5686]: COREGRADE is stopping... -- 07:27:40.269 DEBUG [5686]: Closing database connection -- 07:27:40.269 SQL [5686]: pgsql_close() -- 07:27:43.085 INFO [5686]: COREGRADE is starting... -- 07:27:43.085 INFO [5686]: Version from config: 1.0 -- 07:27:43.085 DEBUG [5686]: Connecting to database... -- 07:27:43.085 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:27:43.085 SQL [5686]: pgsql_db_connect() -- 07:27:43.090 DEBUG [5686]: Database connection successful -- 07:27:43.090 INFO [5686]: _SERVER found -- 07:27:43.090 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 07:27:43.090 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 07:27:43.090 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1035126347.1586859928; ci_session=5nggfbfdq85nqo7qgkfdjqu5ikiegavj; _gat_gtag_UA_54829827_2=1 -- 07:27:43.090 INFO [5686]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:27:43.090 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:27:43.101 INFO [5686]: COREGRADE is stopping... -- 07:27:43.101 DEBUG [5686]: Closing database connection -- 07:27:43.101 SQL [5686]: pgsql_close() -- 07:28:36.228 INFO [6508]: COREGRADE is starting... -- 07:28:36.228 INFO [6508]: Version from config: 1.0 -- 07:28:36.228 DEBUG [6508]: Connecting to database... -- 07:28:36.228 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:28:36.228 SQL [6508]: pgsql_db_connect() -- 07:28:36.233 DEBUG [6508]: Database connection successful -- 07:28:36.233 INFO [6508]: _SERVER found -- 07:28:36.233 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 07:28:36.233 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 07:28:36.233 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1035126347.1586859928; ci_session=5nggfbfdq85nqo7qgkfdjqu5ikiegavj; _gat_gtag_UA_54829827_2=1 -- 07:28:36.233 INFO [6508]: QUERY_STRING = -- 07:28:36.233 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:28:36.269 INFO [6508]: COREGRADE is stopping... -- 07:28:36.269 DEBUG [6508]: Closing database connection -- 07:28:36.269 SQL [6508]: pgsql_close() -- 07:28:36.548 INFO [6508]: COREGRADE is starting... -- 07:28:36.548 INFO [6508]: Version from config: 1.0 -- 07:28:36.548 DEBUG [6508]: Connecting to database... -- 07:28:36.548 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:28:36.548 SQL [6508]: pgsql_db_connect() -- 07:28:36.553 DEBUG [6508]: Database connection successful -- 07:28:36.553 INFO [6508]: _SERVER found -- 07:28:36.553 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 07:28:36.553 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 07:28:36.553 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1035126347.1586859928; ci_session=5nggfbfdq85nqo7qgkfdjqu5ikiegavj; _gat_gtag_UA_54829827_2=1 -- 07:28:36.553 INFO [6508]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:28:36.553 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:28:36.564 INFO [6508]: COREGRADE is stopping... -- 07:28:36.564 DEBUG [6508]: Closing database connection -- 07:28:36.564 SQL [6508]: pgsql_close() -- 07:28:55.563 INFO [7885]: COREGRADE is starting... -- 07:28:55.563 INFO [7885]: Version from config: 1.0 -- 07:28:55.563 DEBUG [7885]: Connecting to database... -- 07:28:55.563 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:28:55.563 SQL [7885]: pgsql_db_connect() -- 07:28:55.567 DEBUG [7885]: Database connection successful -- 07:28:55.567 INFO [7885]: _SERVER found -- 07:28:55.567 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 07:28:55.567 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 07:28:55.567 INFO [7885]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1035126347.1586859928; ci_session=5nggfbfdq85nqo7qgkfdjqu5ikiegavj -- 07:28:55.567 INFO [7885]: QUERY_STRING = /home/security -- 07:28:55.567 INFO [7885]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:28:55.601 INFO [7885]: COREGRADE is stopping... -- 07:28:55.601 DEBUG [7885]: Closing database connection -- 07:28:55.601 SQL [7885]: pgsql_close() -- 07:28:56.122 INFO [5687]: COREGRADE is starting... -- 07:28:56.122 INFO [5687]: Version from config: 1.0 -- 07:28:56.122 DEBUG [5687]: Connecting to database... -- 07:28:56.122 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:28:56.122 SQL [5687]: pgsql_db_connect() -- 07:28:56.126 DEBUG [5687]: Database connection successful -- 07:28:56.126 INFO [5687]: _SERVER found -- 07:28:56.126 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 07:28:56.126 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 07:28:56.126 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1035126347.1586859928; ci_session=5nggfbfdq85nqo7qgkfdjqu5ikiegavj -- 07:28:56.126 INFO [5687]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 07:28:56.126 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:28:56.138 INFO [5687]: COREGRADE is stopping... -- 07:28:56.138 DEBUG [5687]: Closing database connection -- 07:28:56.138 SQL [5687]: pgsql_close() -- 07:29:01.197 INFO [5687]: COREGRADE is starting... -- 07:29:01.197 INFO [5687]: Version from config: 1.0 -- 07:29:01.197 DEBUG [5687]: Connecting to database... -- 07:29:01.197 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:01.197 SQL [5687]: pgsql_db_connect() -- 07:29:01.201 DEBUG [5687]: Database connection successful -- 07:29:01.201 INFO [5687]: _SERVER found -- 07:29:01.201 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 07:29:01.201 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 07:29:01.201 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1035126347.1586859928; ci_session=5nggfbfdq85nqo7qgkfdjqu5ikiegavj -- 07:29:01.201 INFO [5687]: QUERY_STRING = /home/privacy -- 07:29:01.201 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:29:01.234 INFO [5687]: COREGRADE is stopping... -- 07:29:01.234 DEBUG [5687]: Closing database connection -- 07:29:01.234 SQL [5687]: pgsql_close() -- 07:29:05.933 INFO [5687]: COREGRADE is starting... -- 07:29:05.934 INFO [5687]: Version from config: 1.0 -- 07:29:05.934 DEBUG [5687]: Connecting to database... -- 07:29:05.934 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:05.934 SQL [5687]: pgsql_db_connect() -- 07:29:05.938 DEBUG [5687]: Database connection successful -- 07:29:05.938 INFO [5687]: _SERVER found -- 07:29:05.938 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 07:29:05.938 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 07:29:05.938 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1035126347.1586859928; ci_session=5nggfbfdq85nqo7qgkfdjqu5ikiegavj -- 07:29:05.938 INFO [5687]: QUERY_STRING = /home/terms -- 07:29:05.938 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:29:05.970 INFO [5687]: COREGRADE is stopping... -- 07:29:05.970 DEBUG [5687]: Closing database connection -- 07:29:05.970 SQL [5687]: pgsql_close() -- 07:29:08.424 INFO [5687]: COREGRADE is starting... -- 07:29:08.424 INFO [5687]: Version from config: 1.0 -- 07:29:08.424 DEBUG [5687]: Connecting to database... -- 07:29:08.424 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:08.424 SQL [5687]: pgsql_db_connect() -- 07:29:08.428 DEBUG [5687]: Database connection successful -- 07:29:08.428 INFO [5687]: _SERVER found -- 07:29:08.428 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 07:29:08.428 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 07:29:08.428 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1035126347.1586859928; ci_session=5nggfbfdq85nqo7qgkfdjqu5ikiegavj -- 07:29:08.428 INFO [5687]: QUERY_STRING = -- 07:29:08.428 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:29:08.459 INFO [5687]: COREGRADE is stopping... -- 07:29:08.459 DEBUG [5687]: Closing database connection -- 07:29:08.459 SQL [5687]: pgsql_close() -- 07:29:08.837 INFO [5687]: COREGRADE is starting... -- 07:29:08.837 INFO [5687]: Version from config: 1.0 -- 07:29:08.837 DEBUG [5687]: Connecting to database... -- 07:29:08.837 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:08.837 SQL [5687]: pgsql_db_connect() -- 07:29:08.841 DEBUG [5687]: Database connection successful -- 07:29:08.841 INFO [5687]: _SERVER found -- 07:29:08.841 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 07:29:08.841 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 07:29:08.841 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1035126347.1586859928; ci_session=5nggfbfdq85nqo7qgkfdjqu5ikiegavj -- 07:29:08.841 INFO [5687]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:29:08.841 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:29:08.852 INFO [5687]: COREGRADE is stopping... -- 07:29:08.852 DEBUG [5687]: Closing database connection -- 07:29:08.852 SQL [5687]: pgsql_close() -- 07:30:24.461 INFO [5697]: COREGRADE is starting... -- 07:30:24.461 INFO [5697]: Version from config: 1.0 -- 07:30:24.461 DEBUG [5697]: Connecting to database... -- 07:30:24.461 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:30:24.462 SQL [5697]: pgsql_db_connect() -- 07:30:24.466 DEBUG [5697]: Database connection successful -- 07:30:24.466 INFO [5697]: _SERVER found -- 07:30:24.466 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 07:30:24.466 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 07:30:24.466 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1035126347.1586859928; ci_session=5nggfbfdq85nqo7qgkfdjqu5ikiegavj -- 07:30:24.466 INFO [5697]: QUERY_STRING = -- 07:30:24.466 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:30:24.498 INFO [5697]: COREGRADE is stopping... -- 07:30:24.498 DEBUG [5697]: Closing database connection -- 07:30:24.498 SQL [5697]: pgsql_close() -- 07:30:42.491 INFO [7377]: COREGRADE is starting... -- 07:30:42.491 INFO [7377]: Version from config: 1.0 -- 07:30:42.491 DEBUG [7377]: Connecting to database... -- 07:30:42.491 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:30:42.491 SQL [7377]: pgsql_db_connect() -- 07:30:42.495 DEBUG [7377]: Database connection successful -- 07:30:42.495 INFO [7377]: _SERVER found -- 07:30:42.495 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 07:30:42.495 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 07:30:42.495 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1035126347.1586859928; ci_session=5nggfbfdq85nqo7qgkfdjqu5ikiegavj; _gat_gtag_UA_54829827_2=1 -- 07:30:42.495 INFO [7377]: QUERY_STRING = -- 07:30:42.495 INFO [7377]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:30:42.528 INFO [7377]: COREGRADE is stopping... -- 07:30:42.528 DEBUG [7377]: Closing database connection -- 07:30:42.528 SQL [7377]: pgsql_close() -- 07:47:03.013 INFO [4834]: COREGRADE is starting... -- 07:47:03.013 INFO [4834]: Version from config: 1.0 -- 07:47:03.013 DEBUG [4834]: Connecting to database... -- 07:47:03.013 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:47:03.013 SQL [4834]: pgsql_db_connect() -- 07:47:03.018 DEBUG [4834]: Database connection successful -- 07:47:03.018 INFO [4834]: _SERVER found -- 07:47:03.018 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 07:47:03.018 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 07:47:03.018 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938 -- 07:47:03.018 INFO [4834]: QUERY_STRING = -- 07:47:03.018 INFO [4834]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:47:03.057 INFO [4834]: COREGRADE is stopping... -- 07:47:03.057 DEBUG [4834]: Closing database connection -- 07:47:03.057 SQL [4834]: pgsql_close() -- 07:47:03.331 INFO [4834]: COREGRADE is starting... -- 07:47:03.331 INFO [4834]: Version from config: 1.0 -- 07:47:03.331 DEBUG [4834]: Connecting to database... -- 07:47:03.331 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:47:03.331 SQL [4834]: pgsql_db_connect() -- 07:47:03.336 DEBUG [4834]: Database connection successful -- 07:47:03.336 INFO [4834]: _SERVER found -- 07:47:03.336 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 07:47:03.336 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 07:47:03.336 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=v3fvc04i12s03qntv3ubvg1uir91aum4 -- 07:47:03.336 INFO [4834]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:47:03.336 INFO [4834]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:47:03.347 INFO [4834]: COREGRADE is stopping... -- 07:47:03.347 DEBUG [4834]: Closing database connection -- 07:47:03.347 SQL [4834]: pgsql_close() -- 07:59:26.418 INFO [4193]: COREGRADE is starting... -- 07:59:26.418 INFO [4193]: Version from config: 1.0 -- 07:59:26.418 DEBUG [4193]: Connecting to database... -- 07:59:26.418 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:59:26.418 SQL [4193]: pgsql_db_connect() -- 07:59:26.422 DEBUG [4193]: Database connection successful -- 07:59:26.422 INFO [4193]: _SERVER found -- 07:59:26.422 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 07:59:26.422 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 07:59:26.422 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845 -- 07:59:26.422 INFO [4193]: QUERY_STRING = -- 07:59:26.422 INFO [4193]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:59:26.462 INFO [4193]: COREGRADE is stopping... -- 07:59:26.462 DEBUG [4193]: Closing database connection -- 07:59:26.462 SQL [4193]: pgsql_close() -- 07:59:26.923 INFO [4193]: COREGRADE is starting... -- 07:59:26.923 INFO [4193]: Version from config: 1.0 -- 07:59:26.923 DEBUG [4193]: Connecting to database... -- 07:59:26.923 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:59:26.923 SQL [4193]: pgsql_db_connect() -- 07:59:26.928 DEBUG [4193]: Database connection successful -- 07:59:26.928 INFO [4193]: _SERVER found -- 07:59:26.928 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 07:59:26.928 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 07:59:26.928 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=rfjr4gh59hptdqhvsd548e5arb8o7uet -- 07:59:26.928 INFO [4193]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:59:26.928 INFO [4193]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:59:26.939 INFO [4193]: COREGRADE is stopping... -- 07:59:26.939 DEBUG [4193]: Closing database connection -- 07:59:26.939 SQL [4193]: pgsql_close() -- 08:33:22.586 INFO [5686]: COREGRADE is starting... -- 08:33:22.586 INFO [5686]: Version from config: 1.0 -- 08:33:22.586 DEBUG [5686]: Connecting to database... -- 08:33:22.586 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:33:22.586 SQL [5686]: pgsql_db_connect() -- 08:33:22.591 DEBUG [5686]: Database connection successful -- 08:33:22.591 INFO [5686]: _SERVER found -- 08:33:22.591 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 08:33:22.591 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 08:33:22.591 INFO [5686]: QUERY_STRING = -- 08:33:22.591 INFO [5686]: HTTP_X_FORWARDED_FOR = 106.75.26.68 -- 08:33:22.626 INFO [5686]: COREGRADE is stopping... -- 08:33:22.626 DEBUG [5686]: Closing database connection -- 08:33:22.626 SQL [5686]: pgsql_close() -- 08:33:51.854 INFO [6508]: COREGRADE is starting... -- 08:33:51.854 INFO [6508]: Version from config: 1.0 -- 08:33:51.854 DEBUG [6508]: Connecting to database... -- 08:33:51.855 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:33:51.855 SQL [6508]: pgsql_db_connect() -- 08:33:51.859 DEBUG [6508]: Database connection successful -- 08:33:51.859 INFO [6508]: _SERVER found -- 08:33:51.859 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 08:33:51.859 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 08:33:51.859 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561 -- 08:33:51.859 INFO [6508]: QUERY_STRING = -- 08:33:51.859 INFO [6508]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 08:33:51.894 INFO [6508]: COREGRADE is stopping... -- 08:33:51.894 DEBUG [6508]: Closing database connection -- 08:33:51.894 SQL [6508]: pgsql_close() -- 08:33:52.123 INFO [7885]: COREGRADE is starting... -- 08:33:52.124 INFO [7885]: Version from config: 1.0 -- 08:33:52.124 DEBUG [7885]: Connecting to database... -- 08:33:52.124 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:33:52.124 SQL [7885]: pgsql_db_connect() -- 08:33:52.128 DEBUG [7885]: Database connection successful -- 08:33:52.128 INFO [7885]: _SERVER found -- 08:33:52.128 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 08:33:52.128 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 08:33:52.128 INFO [7885]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=ir76kji16m4r1d9cg6djh9p90kteckub -- 08:33:52.128 INFO [7885]: QUERY_STRING = /assets/img/footer_1.jpg -- 08:33:52.128 INFO [7885]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 08:33:52.140 INFO [7885]: COREGRADE is stopping... -- 08:33:52.140 DEBUG [7885]: Closing database connection -- 08:33:52.140 SQL [7885]: pgsql_close() -- 08:35:22.248 INFO [5697]: COREGRADE is starting... -- 08:35:22.248 INFO [5697]: Version from config: 1.0 -- 08:35:22.249 DEBUG [5697]: Connecting to database... -- 08:35:22.249 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:35:22.249 SQL [5697]: pgsql_db_connect() -- 08:35:22.253 DEBUG [5697]: Database connection successful -- 08:35:22.253 INFO [5697]: _SERVER found -- 08:35:22.253 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 08:35:22.253 INFO [5697]: SERVER_NAME = tokslaw.works.coregrade.com -- 08:35:22.253 INFO [5697]: QUERY_STRING = -- 08:35:22.253 INFO [5697]: HTTP_X_FORWARDED_FOR = 106.75.26.68 -- 08:35:22.286 INFO [5697]: COREGRADE is stopping... -- 08:35:22.286 DEBUG [5697]: Closing database connection -- 08:35:22.286 SQL [5697]: pgsql_close() -- 10:14:13.966 INFO [7377]: COREGRADE is starting... -- 10:14:13.966 INFO [7377]: Version from config: 1.0 -- 10:14:13.966 DEBUG [7377]: Connecting to database... -- 10:14:13.966 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:14:13.966 SQL [7377]: pgsql_db_connect() -- 10:14:13.972 DEBUG [7377]: Database connection successful -- 10:14:13.972 INFO [7377]: _SERVER found -- 10:14:13.972 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 10:14:13.972 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 10:14:13.972 INFO [7377]: QUERY_STRING = /robots.txt -- 10:14:13.972 INFO [7377]: HTTP_X_FORWARDED_FOR = 66.249.79.118 -- 10:14:13.989 INFO [7377]: COREGRADE is stopping... -- 10:14:13.989 DEBUG [7377]: Closing database connection -- 10:14:13.989 SQL [7377]: pgsql_close() -- 10:14:14.066 INFO [7377]: COREGRADE is starting... -- 10:14:14.066 INFO [7377]: Version from config: 1.0 -- 10:14:14.066 DEBUG [7377]: Connecting to database... -- 10:14:14.066 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:14:14.066 SQL [7377]: pgsql_db_connect() -- 10:14:14.071 DEBUG [7377]: Database connection successful -- 10:14:14.071 INFO [7377]: _SERVER found -- 10:14:14.071 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 10:14:14.071 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 10:14:14.071 INFO [7377]: QUERY_STRING = -- 10:14:14.071 INFO [7377]: HTTP_X_FORWARDED_FOR = 66.249.79.118 -- 10:14:14.107 INFO [7377]: COREGRADE is stopping... -- 10:14:14.107 DEBUG [7377]: Closing database connection -- 10:14:14.107 SQL [7377]: pgsql_close() -- 10:33:21.073 INFO [4193]: COREGRADE is starting... -- 10:33:21.074 INFO [4193]: Version from config: 1.0 -- 10:33:21.074 DEBUG [4193]: Connecting to database... -- 10:33:21.074 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:33:21.074 SQL [4193]: pgsql_db_connect() -- 10:33:21.079 DEBUG [4193]: Database connection successful -- 10:33:21.079 INFO [4193]: _SERVER found -- 10:33:21.079 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 10:33:21.079 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 10:33:21.079 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845 -- 10:33:21.079 INFO [4193]: QUERY_STRING = -- 10:33:21.079 INFO [4193]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:33:21.119 INFO [4193]: COREGRADE is stopping... -- 10:33:21.119 DEBUG [4193]: Closing database connection -- 10:33:21.119 SQL [4193]: pgsql_close() -- 10:33:21.644 INFO [4193]: COREGRADE is starting... -- 10:33:21.644 INFO [4193]: Version from config: 1.0 -- 10:33:21.644 DEBUG [4193]: Connecting to database... -- 10:33:21.644 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:33:21.644 SQL [4193]: pgsql_db_connect() -- 10:33:21.648 DEBUG [4193]: Database connection successful -- 10:33:21.648 INFO [4193]: _SERVER found -- 10:33:21.648 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 10:33:21.648 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 10:33:21.648 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=9p5ujsd0qc7l8fq7lka2977pir3t9tt3 -- 10:33:21.648 INFO [4193]: QUERY_STRING = /assets/img/footer_1.jpg -- 10:33:21.648 INFO [4193]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:33:21.660 INFO [4193]: COREGRADE is stopping... -- 10:33:21.660 DEBUG [4193]: Closing database connection -- 10:33:21.660 SQL [4193]: pgsql_close() -- 10:39:50.432 INFO [5686]: COREGRADE is starting... -- 10:39:50.433 INFO [5686]: Version from config: 1.0 -- 10:39:50.433 DEBUG [5686]: Connecting to database... -- 10:39:50.433 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:39:50.433 SQL [5686]: pgsql_db_connect() -- 10:39:50.437 DEBUG [5686]: Database connection successful -- 10:39:50.437 INFO [5686]: _SERVER found -- 10:39:50.437 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 10:39:50.437 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 10:39:50.437 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=9p5ujsd0qc7l8fq7lka2977pir3t9tt3 -- 10:39:50.437 INFO [5686]: QUERY_STRING = /auth -- 10:39:50.437 INFO [5686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:39:50.470 INFO [5686]: COREGRADE is stopping... -- 10:39:50.470 DEBUG [5686]: Closing database connection -- 10:39:50.470 SQL [5686]: pgsql_close() -- 10:39:50.482 INFO [5686]: COREGRADE is starting... -- 10:39:50.483 INFO [5686]: Version from config: 1.0 -- 10:39:50.483 DEBUG [5686]: Connecting to database... -- 10:39:50.483 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:39:50.483 SQL [5686]: pgsql_db_connect() -- 10:39:50.487 DEBUG [5686]: Database connection successful -- 10:39:50.487 INFO [5686]: _SERVER found -- 10:39:50.487 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 10:39:50.487 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 10:39:50.487 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=9p5ujsd0qc7l8fq7lka2977pir3t9tt3 -- 10:39:50.487 INFO [5686]: QUERY_STRING = /welcome/viewLogin -- 10:39:50.487 INFO [5686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:39:50.517 INFO [5686]: COREGRADE is stopping... -- 10:39:50.517 DEBUG [5686]: Closing database connection -- 10:39:50.517 SQL [5686]: pgsql_close() -- 10:40:05.653 INFO [4251]: COREGRADE is starting... -- 10:40:05.653 INFO [4251]: Version from config: 1.0 -- 10:40:05.653 DEBUG [4251]: Connecting to database... -- 10:40:05.653 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:40:05.653 SQL [4251]: pgsql_db_connect() -- 10:40:05.657 DEBUG [4251]: Database connection successful -- 10:40:05.657 INFO [4251]: _SERVER found -- 10:40:05.657 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 10:40:05.657 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 10:40:05.657 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=tpde2066j42jck6ojakpq5s0no82rfdn -- 10:40:05.657 INFO [4251]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 10:40:05.657 INFO [4251]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:40:05.669 INFO [4251]: COREGRADE is stopping... -- 10:40:05.670 DEBUG [4251]: Closing database connection -- 10:40:05.670 SQL [4251]: pgsql_close() -- 10:41:31.913 INFO [5685]: COREGRADE is starting... -- 10:41:31.914 INFO [5685]: Version from config: 1.0 -- 10:41:31.914 DEBUG [5685]: Connecting to database... -- 10:41:31.914 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:41:31.914 SQL [5685]: pgsql_db_connect() -- 10:41:31.918 DEBUG [5685]: Database connection successful -- 10:41:31.918 INFO [5685]: _SERVER found -- 10:41:31.918 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 10:41:31.918 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 10:41:31.918 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377 -- 10:41:31.918 INFO [5685]: QUERY_STRING = -- 10:41:31.918 INFO [5685]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:41:31.952 INFO [5685]: COREGRADE is stopping... -- 10:41:31.952 DEBUG [5685]: Closing database connection -- 10:41:31.952 SQL [5685]: pgsql_close() -- 10:41:32.849 INFO [5685]: COREGRADE is starting... -- 10:41:32.849 INFO [5685]: Version from config: 1.0 -- 10:41:32.849 DEBUG [5685]: Connecting to database... -- 10:41:32.849 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:41:32.849 SQL [5685]: pgsql_db_connect() -- 10:41:32.854 DEBUG [5685]: Database connection successful -- 10:41:32.854 INFO [5685]: _SERVER found -- 10:41:32.854 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 10:41:32.854 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 10:41:32.854 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=98ppul6dc5qc4fd6lh3pigeap7mt2t8p -- 10:41:32.854 INFO [5685]: QUERY_STRING = /assets/img/footer_1.jpg -- 10:41:32.854 INFO [5685]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:41:32.865 INFO [5685]: COREGRADE is stopping... -- 10:41:32.865 DEBUG [5685]: Closing database connection -- 10:41:32.865 SQL [5685]: pgsql_close() -- 10:43:36.440 INFO [6508]: COREGRADE is starting... -- 10:43:36.440 INFO [6508]: Version from config: 1.0 -- 10:43:36.440 DEBUG [6508]: Connecting to database... -- 10:43:36.440 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:43:36.440 SQL [6508]: pgsql_db_connect() -- 10:43:36.445 DEBUG [6508]: Database connection successful -- 10:43:36.445 INFO [6508]: _SERVER found -- 10:43:36.445 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 10:43:36.445 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 10:43:36.445 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=98ppul6dc5qc4fd6lh3pigeap7mt2t8p -- 10:43:36.445 INFO [6508]: QUERY_STRING = /welcome/viewLogin -- 10:43:36.445 INFO [6508]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:43:36.480 INFO [6508]: COREGRADE is stopping... -- 10:43:36.480 DEBUG [6508]: Closing database connection -- 10:43:36.480 SQL [6508]: pgsql_close() -- 10:43:36.504 INFO [6508]: COREGRADE is starting... -- 10:43:36.504 INFO [6508]: Version from config: 1.0 -- 10:43:36.504 DEBUG [6508]: Connecting to database... -- 10:43:36.504 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:43:36.504 SQL [6508]: pgsql_db_connect() -- 10:43:36.509 DEBUG [6508]: Database connection successful -- 10:43:36.509 INFO [6508]: _SERVER found -- 10:43:36.509 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 10:43:36.509 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 10:43:36.509 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=98ppul6dc5qc4fd6lh3pigeap7mt2t8p -- 10:43:36.509 INFO [6508]: QUERY_STRING = /auth -- 10:43:36.509 INFO [6508]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:43:36.542 INFO [6508]: COREGRADE is stopping... -- 10:43:36.542 DEBUG [6508]: Closing database connection -- 10:43:36.542 SQL [6508]: pgsql_close() -- 10:43:36.557 INFO [6508]: COREGRADE is starting... -- 10:43:36.557 INFO [6508]: Version from config: 1.0 -- 10:43:36.557 DEBUG [6508]: Connecting to database... -- 10:43:36.557 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:43:36.557 SQL [6508]: pgsql_db_connect() -- 10:43:36.562 DEBUG [6508]: Database connection successful -- 10:43:36.562 INFO [6508]: _SERVER found -- 10:43:36.562 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 10:43:36.562 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 10:43:36.562 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=98ppul6dc5qc4fd6lh3pigeap7mt2t8p -- 10:43:36.562 INFO [6508]: QUERY_STRING = /auth/index -- 10:43:36.562 INFO [6508]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:43:36.595 INFO [6508]: COREGRADE is stopping... -- 10:43:36.595 DEBUG [6508]: Closing database connection -- 10:43:36.595 SQL [6508]: pgsql_close() -- 10:45:32.455 INFO [7885]: COREGRADE is starting... -- 10:45:32.455 INFO [7885]: Version from config: 1.0 -- 10:45:32.455 DEBUG [7885]: Connecting to database... -- 10:45:32.455 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:45:32.455 SQL [7885]: pgsql_db_connect() -- 10:45:32.492 INFO [7885]: COREGRADE is starting... -- 10:45:32.492 INFO [7885]: Version from config: 1.0 -- 10:45:32.492 DEBUG [7885]: Connecting to database... -- 10:45:32.492 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:45:32.492 SQL [7885]: pgsql_db_connect() -- 10:45:32.496 DEBUG [7885]: Database connection successful -- 10:45:32.496 INFO [7885]: _SERVER found -- 10:45:32.496 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 10:45:32.496 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 10:45:32.496 INFO [7885]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=98ppul6dc5qc4fd6lh3pigeap7mt2t8p -- 10:45:32.496 INFO [7885]: QUERY_STRING = -- 10:45:32.496 INFO [7885]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:45:32.497 INFO [7885]: SystemStatus()09-09-********~************ -- 10:45:32.497 INFO [7885]: long coregrade_api_main(CVars in, CVars &out) -- 10:45:32.497 INFO [7885]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 10:45:32.497 INFO [7885]: account calls -- 10:45:32.497 INFO [7885]: account_calls() -- 10:45:32.497 INFO [7885]: LoginCoreGradeAccount() -- 10:45:32.497 FLOG_MAX [7885]: REQ_STRING(username) -- 10:45:32.497 FLOG_MAX [7885]: REQ_STRING(password) -- 10:45:32.497 FLOG_MAX [7885]: REQ_STRING(sessionid) -- 10:45:32.497 FLOG_MAX [7885]: long load_db_record( CVars &rec, const char * query, ... ) -- 10:45:32.497 SQL [7885]: pgsql_query() -- 10:45:32.497 SQL [7885]: About to run query: -- 10:45:32.497 SQL [7885]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678') -- 10:45:32.501 SQL [7885]: Found rows: 1 -- 10:45:32.501 FLOG_MAX [7885]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678')) num_cols=16 -- 10:45:32.501 INFO [7885]: long SessionCheck(long uid, const char *sessionid, int create ) -- 10:45:32.501 SQL [7885]: pgsql_exec() -- 10:45:32.501 SQL [7885]: About to run query: -- 10:45:32.501 SQL [7885]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 10:45:32.502 SQL [7885]: PQcmdTuples: 1 -- 10:45:32.502 SQL [7885]: Affected rows: 1 -- 10:45:32.502 SQL [7885]: pgsql_exec() -- 10:45:32.502 SQL [7885]: About to run query: -- 10:45:32.502 SQL [7885]: DELETE FROM members_session WHERE member_id=7 -- 10:45:32.503 SQL [7885]: PQcmdTuples: 0 -- 10:45:32.503 SQL [7885]: Affected rows: 0 -- 10:45:32.503 SQL [7885]: pgsql_query() -- 10:45:32.503 SQL [7885]: About to run query: -- 10:45:32.503 SQL [7885]: SELECT * FROM members_session WHERE member_id=7 AND session<>'FA187A5C9B342B26D234307613BCFE52' -- 10:45:32.504 SQL [7885]: Found rows: 0 -- 10:45:32.504 SQL [7885]: Found rows: 0 -- 10:45:32.504 FLOG_MAX [7885]: long load_db_record( CVars &rec, const char * query, ... ) -- 10:45:32.504 SQL [7885]: pgsql_query() -- 10:45:32.504 SQL [7885]: About to run query: -- 10:45:32.504 SQL [7885]: SELECT * FROM members_session WHERE member_id=7 AND session='FA187A5C9B342B26D234307613BCFE52' -- 10:45:32.504 SQL [7885]: Found rows: 0 -- 10:45:32.504 SQL [7885]: Found rows: 0 -- 10:45:32.504 FLOG_MAX [7885]: insert_db_record() -- 10:45:32.504 SQL [7885]: pgsql_exec() -- 10:45:32.504 SQL [7885]: About to run query: -- 10:45:32.504 SQL [7885]: INSERT INTO members_session (member_id,session) VALUES ('7','FA187A5C9B342B26D234307613BCFE52') -- 10:45:32.506 SQL [7885]: PQcmdTuples: 1 -- 10:45:32.506 SQL [7885]: Affected rows: 1 -- 10:45:32.506 FLOG_MAX [7885]: SELECT currval('members_session_id_seq') -- 10:45:32.506 SQL [7885]: pgsql_query() -- 10:45:32.506 SQL [7885]: About to run query: -- 10:45:32.506 SQL [7885]: SELECT currval('members_session_id_seq') -- 10:45:32.506 SQL [7885]: Found rows: 1 -- 10:45:32.506 INFO [7885]: CreateDefaultPage() -- 10:45:32.506 FLOG_MAX [7885]: long load_db_record( CVars &rec, const char * query, ... ) -- 10:45:32.506 SQL [7885]: pgsql_query() -- 10:45:32.506 SQL [7885]: About to run query: -- 10:45:32.506 SQL [7885]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 10:45:32.506 SQL [7885]: Found rows: 1 -- 10:45:32.506 FLOG_MAX [7885]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 10:45:32.506 SQL [7885]: pgsql_query() -- 10:45:32.506 SQL [7885]: About to run query: -- 10:45:32.506 SQL [7885]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 10:45:32.507 SQL [7885]: Found rows: 1 -- 10:45:32.507 INFO [7885]: /CreateDefaultPage() -- 10:45:32.507 INFO [7885]: /LoginCoreGradeAccount() -- 10:45:32.507 INFO [7885]: RET: added=2020-02-05 09:42:12.816064 -- 10:45:32.507 INFO [7885]: RET: email=tokslaw@chiefsoft.com -- 10:45:32.507 INFO [7885]: RET: firstname=Tokunbo -- 10:45:32.507 INFO [7885]: RET: folder=5D06B187B1E2285A63AD1D0ECB670D98 -- 10:45:32.507 INFO [7885]: RET: id=7 -- 10:45:32.507 INFO [7885]: RET: last_login= -- 10:45:32.507 INFO [7885]: RET: lastname=Lawal -- 10:45:32.507 INFO [7885]: RET: loc=192.168.1.13 -- 10:45:32.507 INFO [7885]: RET: member_id=7 -- 10:45:32.507 INFO [7885]: RET: password=25d55ad283aa400af464c76d713c07ad -- 10:45:32.507 INFO [7885]: RET: phone= -- 10:45:32.507 INFO [7885]: RET: pid= -- 10:45:32.507 INFO [7885]: RET: result=YES I GET TO BACK END -- 10:45:32.507 INFO [7885]: RET: sessionid=FA187A5C9B342B26D234307613BCFE52 -- 10:45:32.507 INFO [7885]: RET: status=1 -- 10:45:32.507 INFO [7885]: RET: stauts=OK -- 10:45:32.507 INFO [7885]: RET: username=tokslaw@chiefsoft.com -- 10:45:32.507 INFO [7885]: RET: verified= -- 10:45:32.509 INFO [7885]: COREGRADE is stopping... -- 10:45:32.509 DEBUG [7885]: Closing database connection -- 10:45:32.509 SQL [7885]: pgsql_close() -- 10:45:32.460 DEBUG [7885]: Database connection successful -- 10:45:32.460 INFO [7885]: _SERVER found -- 10:45:32.460 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 10:45:32.460 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 10:45:32.460 INFO [7885]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=98ppul6dc5qc4fd6lh3pigeap7mt2t8p -- 10:45:32.460 INFO [7885]: QUERY_STRING = /auth -- 10:45:32.460 INFO [7885]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:45:32.509 INFO [7885]: COREGRADE is stopping... -- 10:45:32.509 DEBUG [7885]: Closing database connection -- 10:45:32.509 SQL [7885]: pgsql_close() -- 10:45:32.523 INFO [7885]: COREGRADE is starting... -- 10:45:32.523 INFO [7885]: Version from config: 1.0 -- 10:45:32.523 DEBUG [7885]: Connecting to database... -- 10:45:32.523 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:45:32.523 SQL [7885]: pgsql_db_connect() -- 10:45:32.528 DEBUG [7885]: Database connection successful -- 10:45:32.528 INFO [7885]: _SERVER found -- 10:45:32.528 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 10:45:32.528 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 10:45:32.528 INFO [7885]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=98ppul6dc5qc4fd6lh3pigeap7mt2t8p -- 10:45:32.528 INFO [7885]: QUERY_STRING = /member/index -- 10:45:32.528 INFO [7885]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:45:32.568 INFO [7885]: COREGRADE is stopping... -- 10:45:32.568 DEBUG [7885]: Closing database connection -- 10:45:32.568 SQL [7885]: pgsql_close() -- 10:45:33.077 INFO [7885]: COREGRADE is starting... -- 10:45:33.077 INFO [7885]: Version from config: 1.0 -- 10:45:33.077 DEBUG [7885]: Connecting to database... -- 10:45:33.077 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:45:33.078 SQL [7885]: pgsql_db_connect() -- 10:45:33.082 DEBUG [7885]: Database connection successful -- 10:45:33.082 INFO [7885]: _SERVER found -- 10:45:33.082 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 10:45:33.082 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 10:45:33.082 INFO [7885]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=98ppul6dc5qc4fd6lh3pigeap7mt2t8p -- 10:45:33.082 INFO [7885]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:45:33.082 INFO [7885]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:45:33.093 INFO [7885]: COREGRADE is stopping... -- 10:45:33.093 DEBUG [7885]: Closing database connection -- 10:45:33.093 SQL [7885]: pgsql_close() -- 10:48:22.155 INFO [5687]: COREGRADE is starting... -- 10:48:22.156 INFO [5687]: Version from config: 1.0 -- 10:48:22.156 DEBUG [5687]: Connecting to database... -- 10:48:22.156 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:48:22.156 SQL [5687]: pgsql_db_connect() -- 10:48:22.160 DEBUG [5687]: Database connection successful -- 10:48:22.160 INFO [5687]: _SERVER found -- 10:48:22.160 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 10:48:22.160 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 10:48:22.160 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=98ppul6dc5qc4fd6lh3pigeap7mt2t8p -- 10:48:22.160 INFO [5687]: QUERY_STRING = /member/page -- 10:48:22.160 INFO [5687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:48:22.206 INFO [5687]: COREGRADE is stopping... -- 10:48:22.206 DEBUG [5687]: Closing database connection -- 10:48:22.206 SQL [5687]: pgsql_close() -- 10:48:22.608 INFO [5687]: COREGRADE is starting... -- 10:48:22.608 INFO [5687]: Version from config: 1.0 -- 10:48:22.608 DEBUG [5687]: Connecting to database... -- 10:48:22.608 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:48:22.608 SQL [5687]: pgsql_db_connect() -- 10:48:22.613 DEBUG [5687]: Database connection successful -- 10:48:22.613 INFO [5687]: _SERVER found -- 10:48:22.613 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 10:48:22.613 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 10:48:22.613 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=pvaenh29ptukvctgr7ah670jjmglcdup -- 10:48:22.613 INFO [5687]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:48:22.613 INFO [5687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:48:22.624 INFO [5687]: COREGRADE is stopping... -- 10:48:22.624 DEBUG [5687]: Closing database connection -- 10:48:22.624 SQL [5687]: pgsql_close() -- 10:49:25.187 INFO [5697]: COREGRADE is starting... -- 10:49:25.187 INFO [5697]: Version from config: 1.0 -- 10:49:25.187 DEBUG [5697]: Connecting to database... -- 10:49:25.187 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:25.187 SQL [5697]: pgsql_db_connect() -- 10:49:25.191 DEBUG [5697]: Database connection successful -- 10:49:25.191 INFO [5697]: _SERVER found -- 10:49:25.191 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 10:49:25.191 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 10:49:25.191 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=pvaenh29ptukvctgr7ah670jjmglcdup -- 10:49:25.191 INFO [5697]: QUERY_STRING = /member -- 10:49:25.191 INFO [5697]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:49:25.235 INFO [5697]: COREGRADE is stopping... -- 10:49:25.235 DEBUG [5697]: Closing database connection -- 10:49:25.235 SQL [5697]: pgsql_close() -- 10:49:56.849 INFO [7377]: COREGRADE is starting... -- 10:49:56.849 INFO [7377]: Version from config: 1.0 -- 10:49:56.849 DEBUG [7377]: Connecting to database... -- 10:49:56.849 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:56.849 SQL [7377]: pgsql_db_connect() -- 10:49:56.854 DEBUG [7377]: Database connection successful -- 10:49:56.854 INFO [7377]: _SERVER found -- 10:49:56.854 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 10:49:56.854 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 10:49:56.854 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=pvaenh29ptukvctgr7ah670jjmglcdup; _gat_gtag_UA_54829827_2=1 -- 10:49:56.854 INFO [7377]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:49:56.854 INFO [7377]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:49:56.866 INFO [7377]: COREGRADE is stopping... -- 10:49:56.866 DEBUG [7377]: Closing database connection -- 10:49:56.866 SQL [7377]: pgsql_close() -- 10:53:30.561 INFO [4834]: COREGRADE is starting... -- 10:53:30.561 INFO [4834]: Version from config: 1.0 -- 10:53:30.561 DEBUG [4834]: Connecting to database... -- 10:53:30.561 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:53:30.562 SQL [4834]: pgsql_db_connect() -- 10:53:30.566 DEBUG [4834]: Database connection successful -- 10:53:30.566 INFO [4834]: _SERVER found -- 10:53:30.566 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 10:53:30.566 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 10:53:30.566 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=pvaenh29ptukvctgr7ah670jjmglcdup -- 10:53:30.566 INFO [4834]: QUERY_STRING = /member/page -- 10:53:30.566 INFO [4834]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:53:30.615 INFO [4834]: COREGRADE is stopping... -- 10:53:30.615 DEBUG [4834]: Closing database connection -- 10:53:30.615 SQL [4834]: pgsql_close() -- 10:53:31.101 INFO [4834]: COREGRADE is starting... -- 10:53:31.102 INFO [4834]: Version from config: 1.0 -- 10:53:31.102 DEBUG [4834]: Connecting to database... -- 10:53:31.102 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:53:31.102 SQL [4834]: pgsql_db_connect() -- 10:53:31.106 DEBUG [4834]: Database connection successful -- 10:53:31.106 INFO [4834]: _SERVER found -- 10:53:31.106 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 10:53:31.106 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 10:53:31.106 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=lndqrjgutcdctbavh1gl0m00kjf9ogoi -- 10:53:31.106 INFO [4834]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:53:31.106 INFO [4834]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 10:53:31.118 INFO [4834]: COREGRADE is stopping... -- 10:53:31.118 DEBUG [4834]: Closing database connection -- 10:53:31.118 SQL [4834]: pgsql_close() -- 12:05:10.968 INFO [4193]: COREGRADE is starting... -- 12:05:10.968 INFO [4193]: Version from config: 1.0 -- 12:05:10.968 DEBUG [4193]: Connecting to database... -- 12:05:10.968 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:05:10.968 SQL [4193]: pgsql_db_connect() -- 12:05:10.973 DEBUG [4193]: Database connection successful -- 12:05:10.973 INFO [4193]: _SERVER found -- 12:05:10.973 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 12:05:10.973 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 12:05:10.973 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=lndqrjgutcdctbavh1gl0m00kjf9ogoi -- 12:05:10.973 INFO [4193]: QUERY_STRING = /member/configure -- 12:05:10.973 INFO [4193]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:05:11.028 INFO [4193]: COREGRADE is stopping... -- 12:05:11.028 DEBUG [4193]: Closing database connection -- 12:05:11.028 SQL [4193]: pgsql_close() -- 12:05:11.744 INFO [4193]: COREGRADE is starting... -- 12:05:11.745 INFO [4193]: Version from config: 1.0 -- 12:05:11.745 DEBUG [4193]: Connecting to database... -- 12:05:11.745 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:05:11.745 SQL [4193]: pgsql_db_connect() -- 12:05:11.749 DEBUG [4193]: Database connection successful -- 12:05:11.749 INFO [4193]: _SERVER found -- 12:05:11.749 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 12:05:11.749 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 12:05:11.749 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=k231i6v4j97gi8arll30sr38tat6r9e6 -- 12:05:11.749 INFO [4193]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:05:11.749 INFO [4193]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:05:11.760 INFO [4193]: COREGRADE is stopping... -- 12:05:11.760 DEBUG [4193]: Closing database connection -- 12:05:11.760 SQL [4193]: pgsql_close() -- 12:05:11.783 INFO [4193]: COREGRADE is starting... -- 12:05:11.783 INFO [4193]: Version from config: 1.0 -- 12:05:11.783 DEBUG [4193]: Connecting to database... -- 12:05:11.783 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:05:11.783 SQL [4193]: pgsql_db_connect() -- 12:05:11.787 DEBUG [4193]: Database connection successful -- 12:05:11.787 INFO [4193]: _SERVER found -- 12:05:11.787 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 12:05:11.787 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 12:05:11.787 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=k231i6v4j97gi8arll30sr38tat6r9e6 -- 12:05:11.787 INFO [4193]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 12:05:11.787 INFO [4193]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:05:11.798 INFO [4193]: COREGRADE is stopping... -- 12:05:11.798 DEBUG [4193]: Closing database connection -- 12:05:11.798 SQL [4193]: pgsql_close() -- 12:05:26.514 INFO [5686]: COREGRADE is starting... -- 12:05:26.514 INFO [5686]: Version from config: 1.0 -- 12:05:26.514 DEBUG [5686]: Connecting to database... -- 12:05:26.514 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:05:26.514 SQL [5686]: pgsql_db_connect() -- 12:05:26.518 DEBUG [5686]: Database connection successful -- 12:05:26.518 INFO [5686]: _SERVER found -- 12:05:26.518 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 12:05:26.518 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 12:05:26.518 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=k231i6v4j97gi8arll30sr38tat6r9e6 -- 12:05:26.518 INFO [5686]: QUERY_STRING = /member -- 12:05:26.518 INFO [5686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:05:26.560 INFO [5686]: COREGRADE is stopping... -- 12:05:26.560 DEBUG [5686]: Closing database connection -- 12:05:26.560 SQL [5686]: pgsql_close() -- 12:05:26.973 INFO [5686]: COREGRADE is starting... -- 12:05:26.973 INFO [5686]: Version from config: 1.0 -- 12:05:26.973 DEBUG [5686]: Connecting to database... -- 12:05:26.973 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:05:26.973 SQL [5686]: pgsql_db_connect() -- 12:05:26.978 DEBUG [5686]: Database connection successful -- 12:05:26.978 INFO [5686]: _SERVER found -- 12:05:26.978 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 12:05:26.978 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 12:05:26.978 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=k231i6v4j97gi8arll30sr38tat6r9e6 -- 12:05:26.978 INFO [5686]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:05:26.978 INFO [5686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:05:26.989 INFO [5686]: COREGRADE is stopping... -- 12:05:26.989 DEBUG [5686]: Closing database connection -- 12:05:26.989 SQL [5686]: pgsql_close() -- 12:05:30.962 INFO [5686]: COREGRADE is starting... -- 12:05:30.963 INFO [5686]: Version from config: 1.0 -- 12:05:30.963 DEBUG [5686]: Connecting to database... -- 12:05:30.963 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:05:30.963 SQL [5686]: pgsql_db_connect() -- 12:05:30.967 DEBUG [5686]: Database connection successful -- 12:05:30.967 INFO [5686]: _SERVER found -- 12:05:30.967 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 12:05:30.967 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 12:05:30.967 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=k231i6v4j97gi8arll30sr38tat6r9e6 -- 12:05:30.967 INFO [5686]: QUERY_STRING = /member/page -- 12:05:30.967 INFO [5686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:05:31.008 INFO [5686]: COREGRADE is stopping... -- 12:05:31.008 DEBUG [5686]: Closing database connection -- 12:05:31.008 SQL [5686]: pgsql_close() -- 12:05:31.186 INFO [5686]: COREGRADE is starting... -- 12:05:31.186 INFO [5686]: Version from config: 1.0 -- 12:05:31.186 DEBUG [5686]: Connecting to database... -- 12:05:31.186 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:05:31.186 SQL [5686]: pgsql_db_connect() -- 12:05:31.190 DEBUG [5686]: Database connection successful -- 12:05:31.190 INFO [5686]: _SERVER found -- 12:05:31.190 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 12:05:31.190 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 12:05:31.190 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=k231i6v4j97gi8arll30sr38tat6r9e6 -- 12:05:31.190 INFO [5686]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:05:31.190 INFO [5686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:05:31.201 INFO [5686]: COREGRADE is stopping... -- 12:05:31.201 DEBUG [5686]: Closing database connection -- 12:05:31.201 SQL [5686]: pgsql_close() -- 12:05:42.017 INFO [4251]: COREGRADE is starting... -- 12:05:42.018 INFO [4251]: Version from config: 1.0 -- 12:05:42.018 DEBUG [4251]: Connecting to database... -- 12:05:42.018 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:05:42.018 SQL [4251]: pgsql_db_connect() -- 12:05:42.022 DEBUG [4251]: Database connection successful -- 12:05:42.022 INFO [4251]: _SERVER found -- 12:05:42.022 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 12:05:42.022 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 12:05:42.022 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=k231i6v4j97gi8arll30sr38tat6r9e6 -- 12:05:42.022 INFO [4251]: QUERY_STRING = /member -- 12:05:42.022 INFO [4251]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:05:42.063 INFO [4251]: COREGRADE is stopping... -- 12:05:42.063 DEBUG [4251]: Closing database connection -- 12:05:42.063 SQL [4251]: pgsql_close() -- 12:05:56.231 INFO [5685]: COREGRADE is starting... -- 12:05:56.231 INFO [5685]: Version from config: 1.0 -- 12:05:56.231 DEBUG [5685]: Connecting to database... -- 12:05:56.231 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:05:56.231 SQL [5685]: pgsql_db_connect() -- 12:05:56.235 DEBUG [5685]: Database connection successful -- 12:05:56.235 INFO [5685]: _SERVER found -- 12:05:56.235 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 12:05:56.235 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 12:05:56.235 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=k231i6v4j97gi8arll30sr38tat6r9e6 -- 12:05:56.235 INFO [5685]: QUERY_STRING = /member/page -- 12:05:56.235 INFO [5685]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:05:56.277 INFO [5685]: COREGRADE is stopping... -- 12:05:56.277 DEBUG [5685]: Closing database connection -- 12:05:56.277 SQL [5685]: pgsql_close() -- 12:05:56.297 INFO [5685]: COREGRADE is starting... -- 12:05:56.297 INFO [5685]: Version from config: 1.0 -- 12:05:56.297 DEBUG [5685]: Connecting to database... -- 12:05:56.297 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:05:56.297 SQL [5685]: pgsql_db_connect() -- 12:05:56.301 DEBUG [5685]: Database connection successful -- 12:05:56.301 INFO [5685]: _SERVER found -- 12:05:56.301 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 12:05:56.301 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 12:05:56.301 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=k231i6v4j97gi8arll30sr38tat6r9e6 -- 12:05:56.301 INFO [5685]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:05:56.301 INFO [5685]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:05:56.313 INFO [5685]: COREGRADE is stopping... -- 12:05:56.313 DEBUG [5685]: Closing database connection -- 12:05:56.313 SQL [5685]: pgsql_close() -- 12:06:27.715 INFO [6508]: COREGRADE is starting... -- 12:06:27.715 INFO [6508]: Version from config: 1.0 -- 12:06:27.715 DEBUG [6508]: Connecting to database... -- 12:06:27.715 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:06:27.715 SQL [6508]: pgsql_db_connect() -- 12:06:27.719 DEBUG [6508]: Database connection successful -- 12:06:27.719 INFO [6508]: _SERVER found -- 12:06:27.719 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 12:06:27.719 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 12:06:27.719 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=k231i6v4j97gi8arll30sr38tat6r9e6 -- 12:06:27.719 INFO [6508]: QUERY_STRING = /member -- 12:06:27.719 INFO [6508]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:06:27.763 INFO [6508]: COREGRADE is stopping... -- 12:06:27.763 DEBUG [6508]: Closing database connection -- 12:06:27.763 SQL [6508]: pgsql_close() -- 12:06:59.422 INFO [7885]: COREGRADE is starting... -- 12:06:59.423 INFO [7885]: Version from config: 1.0 -- 12:06:59.423 DEBUG [7885]: Connecting to database... -- 12:06:59.423 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:06:59.423 SQL [7885]: pgsql_db_connect() -- 12:06:59.427 DEBUG [7885]: Database connection successful -- 12:06:59.427 INFO [7885]: _SERVER found -- 12:06:59.427 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 12:06:59.427 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 12:06:59.427 INFO [7885]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=k231i6v4j97gi8arll30sr38tat6r9e6 -- 12:06:59.427 INFO [7885]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:06:59.427 INFO [7885]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:06:59.439 INFO [7885]: COREGRADE is stopping... -- 12:06:59.439 DEBUG [7885]: Closing database connection -- 12:06:59.439 SQL [7885]: pgsql_close() -- 12:09:12.208 INFO [5687]: COREGRADE is starting... -- 12:09:12.208 INFO [5687]: Version from config: 1.0 -- 12:09:12.208 DEBUG [5687]: Connecting to database... -- 12:09:12.208 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:12.208 SQL [5687]: pgsql_db_connect() -- 12:09:12.213 DEBUG [5687]: Database connection successful -- 12:09:12.213 INFO [5687]: _SERVER found -- 12:09:12.213 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 12:09:12.213 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 12:09:12.213 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=k231i6v4j97gi8arll30sr38tat6r9e6 -- 12:09:12.213 INFO [5687]: QUERY_STRING = /member/page -- 12:09:12.213 INFO [5687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:09:12.257 INFO [5687]: COREGRADE is stopping... -- 12:09:12.257 DEBUG [5687]: Closing database connection -- 12:09:12.257 SQL [5687]: pgsql_close() -- 12:09:12.779 INFO [5687]: COREGRADE is starting... -- 12:09:12.779 INFO [5687]: Version from config: 1.0 -- 12:09:12.779 DEBUG [5687]: Connecting to database... -- 12:09:12.779 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:12.779 SQL [5687]: pgsql_db_connect() -- 12:09:12.784 DEBUG [5687]: Database connection successful -- 12:09:12.784 INFO [5687]: _SERVER found -- 12:09:12.784 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 12:09:12.784 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 12:09:12.784 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=k231i6v4j97gi8arll30sr38tat6r9e6 -- 12:09:12.784 INFO [5687]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:09:12.784 INFO [5687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:09:12.795 INFO [5687]: COREGRADE is stopping... -- 12:09:12.795 DEBUG [5687]: Closing database connection -- 12:09:12.795 SQL [5687]: pgsql_close() -- 12:17:21.339 INFO [5697]: COREGRADE is starting... -- 12:17:21.339 INFO [5697]: Version from config: 1.0 -- 12:17:21.339 DEBUG [5697]: Connecting to database... -- 12:17:21.339 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:17:21.339 SQL [5697]: pgsql_db_connect() -- 12:17:21.344 DEBUG [5697]: Database connection successful -- 12:17:21.344 INFO [5697]: _SERVER found -- 12:17:21.344 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 12:17:21.344 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 12:17:21.344 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=k231i6v4j97gi8arll30sr38tat6r9e6 -- 12:17:21.344 INFO [5697]: QUERY_STRING = /member/configure -- 12:17:21.344 INFO [5697]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:17:21.390 INFO [5697]: COREGRADE is stopping... -- 12:17:21.390 DEBUG [5697]: Closing database connection -- 12:17:21.390 SQL [5697]: pgsql_close() -- 12:17:21.819 INFO [5697]: COREGRADE is starting... -- 12:17:21.819 INFO [5697]: Version from config: 1.0 -- 12:17:21.819 DEBUG [5697]: Connecting to database... -- 12:17:21.820 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:17:21.820 SQL [5697]: pgsql_db_connect() -- 12:17:21.824 DEBUG [5697]: Database connection successful -- 12:17:21.824 INFO [5697]: _SERVER found -- 12:17:21.824 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 12:17:21.824 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 12:17:21.824 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=o0ffb68n3kder58eancagvv70na3u2p5 -- 12:17:21.824 INFO [5697]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:17:21.824 INFO [5697]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:17:21.835 INFO [5697]: COREGRADE is stopping... -- 12:17:21.835 DEBUG [5697]: Closing database connection -- 12:17:21.835 SQL [5697]: pgsql_close() -- 12:17:21.861 INFO [5697]: COREGRADE is starting... -- 12:17:21.862 INFO [5697]: Version from config: 1.0 -- 12:17:21.862 DEBUG [5697]: Connecting to database... -- 12:17:21.862 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:17:21.862 SQL [5697]: pgsql_db_connect() -- 12:17:21.866 DEBUG [5697]: Database connection successful -- 12:17:21.866 INFO [5697]: _SERVER found -- 12:17:21.866 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 12:17:21.866 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 12:17:21.866 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=o0ffb68n3kder58eancagvv70na3u2p5 -- 12:17:21.866 INFO [5697]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 12:17:21.866 INFO [5697]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:17:21.877 INFO [5697]: COREGRADE is stopping... -- 12:17:21.877 DEBUG [5697]: Closing database connection -- 12:17:21.877 SQL [5697]: pgsql_close() -- 12:17:24.785 INFO [5697]: COREGRADE is starting... -- 12:17:24.786 INFO [5697]: Version from config: 1.0 -- 12:17:24.786 DEBUG [5697]: Connecting to database... -- 12:17:24.786 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:17:24.786 SQL [5697]: pgsql_db_connect() -- 12:17:24.790 DEBUG [5697]: Database connection successful -- 12:17:24.790 INFO [5697]: _SERVER found -- 12:17:24.790 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 12:17:24.790 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 12:17:24.790 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=o0ffb68n3kder58eancagvv70na3u2p5 -- 12:17:24.790 INFO [5697]: QUERY_STRING = /member -- 12:17:24.790 INFO [5697]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:17:24.829 INFO [5697]: COREGRADE is stopping... -- 12:17:24.829 DEBUG [5697]: Closing database connection -- 12:17:24.829 SQL [5697]: pgsql_close() -- 12:17:24.883 INFO [5697]: COREGRADE is starting... -- 12:17:24.883 INFO [5697]: Version from config: 1.0 -- 12:17:24.883 DEBUG [5697]: Connecting to database... -- 12:17:24.883 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:17:24.883 SQL [5697]: pgsql_db_connect() -- 12:17:24.888 DEBUG [5697]: Database connection successful -- 12:17:24.888 INFO [5697]: _SERVER found -- 12:17:24.888 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 12:17:24.888 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 12:17:24.888 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=o0ffb68n3kder58eancagvv70na3u2p5 -- 12:17:24.888 INFO [5697]: QUERY_STRING = /member -- 12:17:24.888 INFO [5697]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:17:24.927 INFO [5697]: COREGRADE is stopping... -- 12:17:24.927 DEBUG [5697]: Closing database connection -- 12:17:24.927 SQL [5697]: pgsql_close() -- 12:17:25.311 INFO [5697]: COREGRADE is starting... -- 12:17:25.311 INFO [5697]: Version from config: 1.0 -- 12:17:25.311 DEBUG [5697]: Connecting to database... -- 12:17:25.311 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:17:25.311 SQL [5697]: pgsql_db_connect() -- 12:17:25.315 DEBUG [5697]: Database connection successful -- 12:17:25.315 INFO [5697]: _SERVER found -- 12:17:25.315 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 12:17:25.315 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 12:17:25.315 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=o0ffb68n3kder58eancagvv70na3u2p5 -- 12:17:25.315 INFO [5697]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:17:25.315 INFO [5697]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:17:25.327 INFO [5697]: COREGRADE is stopping... -- 12:17:25.327 DEBUG [5697]: Closing database connection -- 12:17:25.327 SQL [5697]: pgsql_close() -- 12:17:37.565 INFO [7377]: COREGRADE is starting... -- 12:17:37.565 INFO [7377]: Version from config: 1.0 -- 12:17:37.565 DEBUG [7377]: Connecting to database... -- 12:17:37.565 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:17:37.565 SQL [7377]: pgsql_db_connect() -- 12:17:37.569 DEBUG [7377]: Database connection successful -- 12:17:37.569 INFO [7377]: _SERVER found -- 12:17:37.569 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 12:17:37.569 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 12:17:37.569 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=o0ffb68n3kder58eancagvv70na3u2p5 -- 12:17:37.569 INFO [7377]: QUERY_STRING = /member/page -- 12:17:37.569 INFO [7377]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:17:37.613 INFO [7377]: COREGRADE is stopping... -- 12:17:37.613 DEBUG [7377]: Closing database connection -- 12:17:37.613 SQL [7377]: pgsql_close() -- 12:17:57.283 INFO [4834]: COREGRADE is starting... -- 12:17:57.284 INFO [4834]: Version from config: 1.0 -- 12:17:57.284 DEBUG [4834]: Connecting to database... -- 12:17:57.284 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:17:57.284 SQL [4834]: pgsql_db_connect() -- 12:17:57.288 DEBUG [4834]: Database connection successful -- 12:17:57.288 INFO [4834]: _SERVER found -- 12:17:57.288 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 12:17:57.288 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 12:17:57.288 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=o0ffb68n3kder58eancagvv70na3u2p5 -- 12:17:57.288 INFO [4834]: QUERY_STRING = /member -- 12:17:57.288 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:17:57.332 INFO [4834]: COREGRADE is stopping... -- 12:17:57.332 DEBUG [4834]: Closing database connection -- 12:17:57.332 SQL [4834]: pgsql_close() -- 12:17:57.568 INFO [4834]: COREGRADE is starting... -- 12:17:57.568 INFO [4834]: Version from config: 1.0 -- 12:17:57.568 DEBUG [4834]: Connecting to database... -- 12:17:57.568 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:17:57.568 SQL [4834]: pgsql_db_connect() -- 12:17:57.572 DEBUG [4834]: Database connection successful -- 12:17:57.572 INFO [4834]: _SERVER found -- 12:17:57.572 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 12:17:57.572 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 12:17:57.572 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=o0ffb68n3kder58eancagvv70na3u2p5 -- 12:17:57.572 INFO [4834]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:17:57.572 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:17:57.584 INFO [4834]: COREGRADE is stopping... -- 12:17:57.584 DEBUG [4834]: Closing database connection -- 12:17:57.584 SQL [4834]: pgsql_close() -- 12:17:59.227 INFO [4834]: COREGRADE is starting... -- 12:17:59.227 INFO [4834]: Version from config: 1.0 -- 12:17:59.227 DEBUG [4834]: Connecting to database... -- 12:17:59.227 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:17:59.227 SQL [4834]: pgsql_db_connect() -- 12:17:59.231 DEBUG [4834]: Database connection successful -- 12:17:59.231 INFO [4834]: _SERVER found -- 12:17:59.231 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 12:17:59.231 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 12:17:59.231 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=o0ffb68n3kder58eancagvv70na3u2p5 -- 12:17:59.231 INFO [4834]: QUERY_STRING = /member/page -- 12:17:59.231 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:17:59.276 INFO [4834]: COREGRADE is stopping... -- 12:17:59.276 DEBUG [4834]: Closing database connection -- 12:17:59.276 SQL [4834]: pgsql_close() -- 12:17:59.492 INFO [4834]: COREGRADE is starting... -- 12:17:59.492 INFO [4834]: Version from config: 1.0 -- 12:17:59.492 DEBUG [4834]: Connecting to database... -- 12:17:59.492 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:17:59.492 SQL [4834]: pgsql_db_connect() -- 12:17:59.496 DEBUG [4834]: Database connection successful -- 12:17:59.496 INFO [4834]: _SERVER found -- 12:17:59.496 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 12:17:59.496 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 12:17:59.496 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=o0ffb68n3kder58eancagvv70na3u2p5 -- 12:17:59.496 INFO [4834]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:17:59.496 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:17:59.508 INFO [4834]: COREGRADE is stopping... -- 12:17:59.508 DEBUG [4834]: Closing database connection -- 12:17:59.508 SQL [4834]: pgsql_close() -- 12:18:07.632 INFO [4193]: COREGRADE is starting... -- 12:18:07.632 INFO [4193]: Version from config: 1.0 -- 12:18:07.632 DEBUG [4193]: Connecting to database... -- 12:18:07.632 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:18:07.632 SQL [4193]: pgsql_db_connect() -- 12:18:07.636 DEBUG [4193]: Database connection successful -- 12:18:07.636 INFO [4193]: _SERVER found -- 12:18:07.636 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 12:18:07.636 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 12:18:07.636 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=o0ffb68n3kder58eancagvv70na3u2p5 -- 12:18:07.636 INFO [4193]: QUERY_STRING = /member/configure -- 12:18:07.636 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:18:07.683 INFO [4193]: COREGRADE is stopping... -- 12:18:07.683 DEBUG [4193]: Closing database connection -- 12:18:07.683 SQL [4193]: pgsql_close() -- 12:18:07.999 INFO [4193]: COREGRADE is starting... -- 12:18:07.999 INFO [4193]: Version from config: 1.0 -- 12:18:07.999 DEBUG [4193]: Connecting to database... -- 12:18:07.999 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:18:07.999 SQL [4193]: pgsql_db_connect() -- 12:18:08.003 DEBUG [4193]: Database connection successful -- 12:18:08.003 INFO [4193]: _SERVER found -- 12:18:08.003 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 12:18:08.003 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 12:18:08.003 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=o0ffb68n3kder58eancagvv70na3u2p5 -- 12:18:08.003 INFO [4193]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 12:18:08.003 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:18:08.015 INFO [4193]: COREGRADE is stopping... -- 12:18:08.015 DEBUG [4193]: Closing database connection -- 12:18:08.015 SQL [4193]: pgsql_close() -- 12:19:37.634 INFO [5686]: COREGRADE is starting... -- 12:19:37.634 INFO [5686]: Version from config: 1.0 -- 12:19:37.634 DEBUG [5686]: Connecting to database... -- 12:19:37.634 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:19:37.634 SQL [5686]: pgsql_db_connect() -- 12:19:37.638 DEBUG [5686]: Database connection successful -- 12:19:37.638 INFO [5686]: _SERVER found -- 12:19:37.638 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 12:19:37.638 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 12:19:37.638 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=o0ffb68n3kder58eancagvv70na3u2p5 -- 12:19:37.638 INFO [5686]: QUERY_STRING = /member/configure -- 12:19:37.638 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:19:37.682 INFO [5686]: COREGRADE is stopping... -- 12:19:37.682 DEBUG [5686]: Closing database connection -- 12:19:37.682 SQL [5686]: pgsql_close() -- 12:19:37.917 INFO [5686]: COREGRADE is starting... -- 12:19:37.917 INFO [5686]: Version from config: 1.0 -- 12:19:37.917 DEBUG [5686]: Connecting to database... -- 12:19:37.917 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:19:37.917 SQL [5686]: pgsql_db_connect() -- 12:19:37.926 INFO [4251]: COREGRADE is starting... -- 12:19:37.926 INFO [4251]: Version from config: 1.0 -- 12:19:37.926 DEBUG [4251]: Connecting to database... -- 12:19:37.926 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:19:37.926 SQL [4251]: pgsql_db_connect() -- 12:19:37.921 DEBUG [5686]: Database connection successful -- 12:19:37.921 INFO [5686]: _SERVER found -- 12:19:37.921 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 12:19:37.921 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 12:19:37.921 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=o0ffb68n3kder58eancagvv70na3u2p5 -- 12:19:37.921 INFO [5686]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:19:37.921 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:19:37.933 INFO [5686]: COREGRADE is stopping... -- 12:19:37.933 DEBUG [5686]: Closing database connection -- 12:19:37.933 SQL [5686]: pgsql_close() -- 12:19:37.930 DEBUG [4251]: Database connection successful -- 12:19:37.930 INFO [4251]: _SERVER found -- 12:19:37.930 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 12:19:37.930 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 12:19:37.930 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=o0ffb68n3kder58eancagvv70na3u2p5 -- 12:19:37.930 INFO [4251]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 12:19:37.930 INFO [4251]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:19:37.942 INFO [4251]: COREGRADE is stopping... -- 12:19:37.942 DEBUG [4251]: Closing database connection -- 12:19:37.942 SQL [4251]: pgsql_close() -- 12:19:44.929 INFO [5685]: COREGRADE is starting... -- 12:19:44.930 INFO [5685]: Version from config: 1.0 -- 12:19:44.930 DEBUG [5685]: Connecting to database... -- 12:19:44.930 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:19:44.930 SQL [5685]: pgsql_db_connect() -- 12:19:44.934 DEBUG [5685]: Database connection successful -- 12:19:44.934 INFO [5685]: _SERVER found -- 12:19:44.934 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 12:19:44.934 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 12:19:44.934 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=o0ffb68n3kder58eancagvv70na3u2p5 -- 12:19:44.934 INFO [5685]: QUERY_STRING = /member -- 12:19:44.934 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:19:44.974 INFO [5685]: COREGRADE is stopping... -- 12:19:44.974 DEBUG [5685]: Closing database connection -- 12:19:44.974 SQL [5685]: pgsql_close() -- 12:19:45.370 INFO [5685]: COREGRADE is starting... -- 12:19:45.370 INFO [5685]: Version from config: 1.0 -- 12:19:45.370 DEBUG [5685]: Connecting to database... -- 12:19:45.370 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:19:45.370 SQL [5685]: pgsql_db_connect() -- 12:19:45.375 DEBUG [5685]: Database connection successful -- 12:19:45.375 INFO [5685]: _SERVER found -- 12:19:45.375 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 12:19:45.375 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 12:19:45.375 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=o0ffb68n3kder58eancagvv70na3u2p5 -- 12:19:45.375 INFO [5685]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:19:45.375 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:19:45.386 INFO [5685]: COREGRADE is stopping... -- 12:19:45.386 DEBUG [5685]: Closing database connection -- 12:19:45.386 SQL [5685]: pgsql_close() -- 12:19:47.142 INFO [5685]: COREGRADE is starting... -- 12:19:47.142 INFO [5685]: Version from config: 1.0 -- 12:19:47.142 DEBUG [5685]: Connecting to database... -- 12:19:47.142 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:19:47.143 SQL [5685]: pgsql_db_connect() -- 12:19:47.147 DEBUG [5685]: Database connection successful -- 12:19:47.147 INFO [5685]: _SERVER found -- 12:19:47.147 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 12:19:47.147 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 12:19:47.147 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=o0ffb68n3kder58eancagvv70na3u2p5 -- 12:19:47.147 INFO [5685]: QUERY_STRING = /member/configure -- 12:19:47.147 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:19:47.189 INFO [5685]: COREGRADE is stopping... -- 12:19:47.189 DEBUG [5685]: Closing database connection -- 12:19:47.189 SQL [5685]: pgsql_close() -- 12:19:47.378 INFO [5685]: COREGRADE is starting... -- 12:19:47.378 INFO [5685]: Version from config: 1.0 -- 12:19:47.378 DEBUG [5685]: Connecting to database... -- 12:19:47.378 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:19:47.378 SQL [5685]: pgsql_db_connect() -- 12:19:47.382 DEBUG [5685]: Database connection successful -- 12:19:47.382 INFO [5685]: _SERVER found -- 12:19:47.382 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 12:19:47.382 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 12:19:47.382 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=o0ffb68n3kder58eancagvv70na3u2p5 -- 12:19:47.382 INFO [5685]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 12:19:47.382 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:19:47.394 INFO [5685]: COREGRADE is stopping... -- 12:19:47.394 DEBUG [5685]: Closing database connection -- 12:19:47.394 SQL [5685]: pgsql_close() -- 12:26:47.571 INFO [6508]: COREGRADE is starting... -- 12:26:47.571 INFO [6508]: Version from config: 1.0 -- 12:26:47.571 DEBUG [6508]: Connecting to database... -- 12:26:47.571 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:26:47.571 SQL [6508]: pgsql_db_connect() -- 12:26:47.576 DEBUG [6508]: Database connection successful -- 12:26:47.576 INFO [6508]: _SERVER found -- 12:26:47.576 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 12:26:47.576 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 12:26:47.576 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=o0ffb68n3kder58eancagvv70na3u2p5 -- 12:26:47.576 INFO [6508]: QUERY_STRING = /member/page -- 12:26:47.576 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:26:47.623 INFO [6508]: COREGRADE is stopping... -- 12:26:47.623 DEBUG [6508]: Closing database connection -- 12:26:47.623 SQL [6508]: pgsql_close() -- 12:28:37.307 INFO [7885]: COREGRADE is starting... -- 12:28:37.308 INFO [7885]: Version from config: 1.0 -- 12:28:37.308 DEBUG [7885]: Connecting to database... -- 12:28:37.308 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:28:37.308 SQL [7885]: pgsql_db_connect() -- 12:28:37.313 DEBUG [7885]: Database connection successful -- 12:28:37.313 INFO [7885]: _SERVER found -- 12:28:37.313 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 12:28:37.313 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 12:28:37.313 INFO [7885]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=p1ml5vocqu8v295vf0gb336ettpg6g89 -- 12:28:37.313 INFO [7885]: QUERY_STRING = /member -- 12:28:37.313 INFO [7885]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:28:37.357 INFO [7885]: COREGRADE is stopping... -- 12:28:37.357 DEBUG [7885]: Closing database connection -- 12:28:37.357 SQL [7885]: pgsql_close() -- 12:28:39.553 INFO [5687]: COREGRADE is starting... -- 12:28:39.554 INFO [5687]: Version from config: 1.0 -- 12:28:39.554 DEBUG [5687]: Connecting to database... -- 12:28:39.554 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:28:39.554 SQL [5687]: pgsql_db_connect() -- 12:28:39.559 DEBUG [5687]: Database connection successful -- 12:28:39.559 INFO [5687]: _SERVER found -- 12:28:39.559 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 12:28:39.559 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 12:28:39.559 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=p1ml5vocqu8v295vf0gb336ettpg6g89 -- 12:28:39.559 INFO [5687]: QUERY_STRING = /member/page -- 12:28:39.559 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:28:39.606 INFO [5687]: COREGRADE is stopping... -- 12:28:39.606 DEBUG [5687]: Closing database connection -- 12:28:39.606 SQL [5687]: pgsql_close() -- 12:30:57.439 INFO [5697]: COREGRADE is starting... -- 12:30:57.439 INFO [5697]: Version from config: 1.0 -- 12:30:57.439 DEBUG [5697]: Connecting to database... -- 12:30:57.439 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:30:57.439 SQL [5697]: pgsql_db_connect() -- 12:30:57.444 DEBUG [5697]: Database connection successful -- 12:30:57.444 INFO [5697]: _SERVER found -- 12:30:57.444 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 12:30:57.444 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 12:30:57.444 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=p1ml5vocqu8v295vf0gb336ettpg6g89 -- 12:30:57.444 INFO [5697]: QUERY_STRING = /member/classroom -- 12:30:57.444 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:30:57.491 INFO [5697]: COREGRADE is stopping... -- 12:30:57.491 DEBUG [5697]: Closing database connection -- 12:30:57.491 SQL [5697]: pgsql_close() -- 12:31:19.838 INFO [7377]: COREGRADE is starting... -- 12:31:19.838 INFO [7377]: Version from config: 1.0 -- 12:31:19.838 DEBUG [7377]: Connecting to database... -- 12:31:19.838 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:31:19.838 SQL [7377]: pgsql_db_connect() -- 12:31:19.843 DEBUG [7377]: Database connection successful -- 12:31:19.843 INFO [7377]: _SERVER found -- 12:31:19.843 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 12:31:19.843 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 12:31:19.843 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=p1ml5vocqu8v295vf0gb336ettpg6g89 -- 12:31:19.843 INFO [7377]: QUERY_STRING = /member/viewRoom -- 12:31:19.843 INFO [7377]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:31:19.878 INFO [7377]: COREGRADE is stopping... -- 12:31:19.878 DEBUG [7377]: Closing database connection -- 12:31:19.878 SQL [7377]: pgsql_close() -- 12:31:32.873 INFO [4834]: COREGRADE is starting... -- 12:31:32.874 INFO [4834]: Version from config: 1.0 -- 12:31:32.874 DEBUG [4834]: Connecting to database... -- 12:31:32.874 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:31:32.874 SQL [4834]: pgsql_db_connect() -- 12:31:32.878 DEBUG [4834]: Database connection successful -- 12:31:32.878 INFO [4834]: _SERVER found -- 12:31:32.878 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 12:31:32.878 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 12:31:32.878 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=p1ml5vocqu8v295vf0gb336ettpg6g89 -- 12:31:32.878 INFO [4834]: QUERY_STRING = /member/viewRoom -- 12:31:32.878 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:31:32.919 INFO [4834]: COREGRADE is stopping... -- 12:31:32.919 DEBUG [4834]: Closing database connection -- 12:31:32.919 SQL [4834]: pgsql_close() -- 12:31:35.522 INFO [4834]: COREGRADE is starting... -- 12:31:35.522 INFO [4834]: Version from config: 1.0 -- 12:31:35.522 DEBUG [4834]: Connecting to database... -- 12:31:35.522 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:31:35.522 SQL [4834]: pgsql_db_connect() -- 12:31:35.527 DEBUG [4834]: Database connection successful -- 12:31:35.527 INFO [4834]: _SERVER found -- 12:31:35.527 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 12:31:35.527 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 12:31:35.527 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=p1ml5vocqu8v295vf0gb336ettpg6g89 -- 12:31:35.527 INFO [4834]: QUERY_STRING = /member/viewRoom -- 12:31:35.527 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:31:35.565 INFO [4834]: COREGRADE is stopping... -- 12:31:35.565 DEBUG [4834]: Closing database connection -- 12:31:35.565 SQL [4834]: pgsql_close() -- 12:31:36.473 INFO [4834]: COREGRADE is starting... -- 12:31:36.474 INFO [4834]: Version from config: 1.0 -- 12:31:36.474 DEBUG [4834]: Connecting to database... -- 12:31:36.474 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:31:36.474 SQL [4834]: pgsql_db_connect() -- 12:31:36.478 DEBUG [4834]: Database connection successful -- 12:31:36.478 INFO [4834]: _SERVER found -- 12:31:36.478 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 12:31:36.478 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 12:31:36.478 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=p1ml5vocqu8v295vf0gb336ettpg6g89 -- 12:31:36.478 INFO [4834]: QUERY_STRING = /member/viewRoom -- 12:31:36.478 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:31:36.517 INFO [4834]: COREGRADE is stopping... -- 12:31:36.517 DEBUG [4834]: Closing database connection -- 12:31:36.517 SQL [4834]: pgsql_close() -- 12:31:38.114 INFO [4834]: COREGRADE is starting... -- 12:31:38.115 INFO [4834]: Version from config: 1.0 -- 12:31:38.115 DEBUG [4834]: Connecting to database... -- 12:31:38.115 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:31:38.115 SQL [4834]: pgsql_db_connect() -- 12:31:38.119 DEBUG [4834]: Database connection successful -- 12:31:38.119 INFO [4834]: _SERVER found -- 12:31:38.119 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 12:31:38.119 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 12:31:38.119 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=p1ml5vocqu8v295vf0gb336ettpg6g89 -- 12:31:38.119 INFO [4834]: QUERY_STRING = /member/viewRoom -- 12:31:38.119 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:31:38.154 INFO [4834]: COREGRADE is stopping... -- 12:31:38.154 DEBUG [4834]: Closing database connection -- 12:31:38.154 SQL [4834]: pgsql_close() -- 12:32:52.570 INFO [4193]: COREGRADE is starting... -- 12:32:52.571 INFO [4193]: Version from config: 1.0 -- 12:32:52.571 DEBUG [4193]: Connecting to database... -- 12:32:52.571 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:32:52.571 SQL [4193]: pgsql_db_connect() -- 12:32:52.575 DEBUG [4193]: Database connection successful -- 12:32:52.575 INFO [4193]: _SERVER found -- 12:32:52.575 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 12:32:52.575 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 12:32:52.575 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=p1ml5vocqu8v295vf0gb336ettpg6g89 -- 12:32:52.575 INFO [4193]: QUERY_STRING = /member/classroom -- 12:32:52.575 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:32:52.623 INFO [4193]: COREGRADE is stopping... -- 12:32:52.623 DEBUG [4193]: Closing database connection -- 12:32:52.623 SQL [4193]: pgsql_close() -- 12:35:30.383 INFO [4251]: COREGRADE is starting... -- 12:35:30.384 INFO [4251]: Version from config: 1.0 -- 12:35:30.384 DEBUG [4251]: Connecting to database... -- 12:35:30.384 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:35:30.384 SQL [4251]: pgsql_db_connect() -- 12:35:30.388 DEBUG [4251]: Database connection successful -- 12:35:30.388 INFO [4251]: _SERVER found -- 12:35:30.388 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 12:35:30.388 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 12:35:30.388 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481 -- 12:35:30.388 INFO [4251]: QUERY_STRING = -- 12:35:30.388 INFO [4251]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:35:30.422 INFO [4251]: COREGRADE is stopping... -- 12:35:30.422 DEBUG [4251]: Closing database connection -- 12:35:30.422 SQL [4251]: pgsql_close() -- 12:35:30.519 INFO [4251]: COREGRADE is starting... -- 12:35:30.519 INFO [4251]: Version from config: 1.0 -- 12:35:30.519 DEBUG [4251]: Connecting to database... -- 12:35:30.519 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:35:30.519 SQL [4251]: pgsql_db_connect() -- 12:35:30.523 DEBUG [4251]: Database connection successful -- 12:35:30.523 INFO [4251]: _SERVER found -- 12:35:30.523 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 12:35:30.523 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 12:35:30.523 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=skar7nhr1nt0pjqmj989uroqg2v0ricv -- 12:35:30.523 INFO [4251]: QUERY_STRING = -- 12:35:30.523 INFO [4251]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:35:30.554 INFO [4251]: COREGRADE is stopping... -- 12:35:30.554 DEBUG [4251]: Closing database connection -- 12:35:30.554 SQL [4251]: pgsql_close() -- 12:35:33.266 INFO [4251]: COREGRADE is starting... -- 12:35:33.266 INFO [4251]: Version from config: 1.0 -- 12:35:33.266 DEBUG [4251]: Connecting to database... -- 12:35:33.266 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:35:33.266 SQL [4251]: pgsql_db_connect() -- 12:35:33.270 DEBUG [4251]: Database connection successful -- 12:35:33.270 INFO [4251]: _SERVER found -- 12:35:33.270 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 12:35:33.270 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 12:35:33.270 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=skar7nhr1nt0pjqmj989uroqg2v0ricv -- 12:35:33.270 INFO [4251]: QUERY_STRING = /assets/img/footer_1.jpg -- 12:35:33.270 INFO [4251]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:35:33.282 INFO [4251]: COREGRADE is stopping... -- 12:35:33.282 DEBUG [4251]: Closing database connection -- 12:35:33.282 SQL [4251]: pgsql_close() -- 12:35:40.823 INFO [5686]: COREGRADE is starting... -- 12:35:40.824 INFO [5686]: Version from config: 1.0 -- 12:35:40.824 DEBUG [5686]: Connecting to database... -- 12:35:40.824 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:35:40.824 SQL [5686]: pgsql_db_connect() -- 12:35:40.828 DEBUG [5686]: Database connection successful -- 12:35:40.828 INFO [5686]: _SERVER found -- 12:35:40.828 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 12:35:40.828 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 12:35:40.828 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=skar7nhr1nt0pjqmj989uroqg2v0ricv; _gat_gtag_UA_54829827_2=1 -- 12:35:40.828 INFO [5686]: QUERY_STRING = /home/terms -- 12:35:40.828 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:35:40.860 INFO [5686]: COREGRADE is stopping... -- 12:35:40.860 DEBUG [5686]: Closing database connection -- 12:35:40.860 SQL [5686]: pgsql_close() -- 12:35:41.028 INFO [5686]: COREGRADE is starting... -- 12:35:41.029 INFO [5686]: Version from config: 1.0 -- 12:35:41.029 DEBUG [5686]: Connecting to database... -- 12:35:41.029 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:35:41.029 SQL [5686]: pgsql_db_connect() -- 12:35:41.033 DEBUG [5686]: Database connection successful -- 12:35:41.033 INFO [5686]: _SERVER found -- 12:35:41.033 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 12:35:41.033 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 12:35:41.033 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=skar7nhr1nt0pjqmj989uroqg2v0ricv; _gat_gtag_UA_54829827_2=1 -- 12:35:41.033 INFO [5686]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 12:35:41.033 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:35:41.044 INFO [5686]: COREGRADE is stopping... -- 12:35:41.044 DEBUG [5686]: Closing database connection -- 12:35:41.044 SQL [5686]: pgsql_close() -- 12:35:49.391 INFO [5685]: COREGRADE is starting... -- 12:35:49.391 INFO [5685]: Version from config: 1.0 -- 12:35:49.391 DEBUG [5685]: Connecting to database... -- 12:35:49.391 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:35:49.391 SQL [5685]: pgsql_db_connect() -- 12:35:49.395 DEBUG [5685]: Database connection successful -- 12:35:49.395 INFO [5685]: _SERVER found -- 12:35:49.395 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 12:35:49.395 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 12:35:49.395 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=skar7nhr1nt0pjqmj989uroqg2v0ricv; _gat_gtag_UA_54829827_2=1 -- 12:35:49.395 INFO [5685]: QUERY_STRING = -- 12:35:49.395 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:35:49.428 INFO [5685]: COREGRADE is stopping... -- 12:35:49.428 DEBUG [5685]: Closing database connection -- 12:35:49.428 SQL [5685]: pgsql_close() -- 12:35:51.757 INFO [5685]: COREGRADE is starting... -- 12:35:51.757 INFO [5685]: Version from config: 1.0 -- 12:35:51.757 DEBUG [5685]: Connecting to database... -- 12:35:51.757 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:35:51.758 SQL [5685]: pgsql_db_connect() -- 12:35:51.762 DEBUG [5685]: Database connection successful -- 12:35:51.762 INFO [5685]: _SERVER found -- 12:35:51.762 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 12:35:51.762 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 12:35:51.762 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=skar7nhr1nt0pjqmj989uroqg2v0ricv; _gat_gtag_UA_54829827_2=1 -- 12:35:51.762 INFO [5685]: QUERY_STRING = /home/privacy -- 12:35:51.762 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:35:51.793 INFO [5685]: COREGRADE is stopping... -- 12:35:51.793 DEBUG [5685]: Closing database connection -- 12:35:51.793 SQL [5685]: pgsql_close() -- 12:35:51.982 INFO [5685]: COREGRADE is starting... -- 12:35:51.982 INFO [5685]: Version from config: 1.0 -- 12:35:51.982 DEBUG [5685]: Connecting to database... -- 12:35:51.982 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:35:51.982 SQL [5685]: pgsql_db_connect() -- 12:35:51.986 DEBUG [5685]: Database connection successful -- 12:35:51.986 INFO [5685]: _SERVER found -- 12:35:51.986 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 12:35:51.986 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 12:35:51.986 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=skar7nhr1nt0pjqmj989uroqg2v0ricv; _gat_gtag_UA_54829827_2=1 -- 12:35:51.986 INFO [5685]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 12:35:51.986 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:35:51.997 INFO [5685]: COREGRADE is stopping... -- 12:35:51.997 DEBUG [5685]: Closing database connection -- 12:35:51.997 SQL [5685]: pgsql_close() -- 12:35:57.688 INFO [6508]: COREGRADE is starting... -- 12:35:57.689 INFO [6508]: Version from config: 1.0 -- 12:35:57.689 DEBUG [6508]: Connecting to database... -- 12:35:57.689 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:35:57.689 SQL [6508]: pgsql_db_connect() -- 12:35:57.693 DEBUG [6508]: Database connection successful -- 12:35:57.693 INFO [6508]: _SERVER found -- 12:35:57.693 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 12:35:57.693 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 12:35:57.693 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=skar7nhr1nt0pjqmj989uroqg2v0ricv; _gat_gtag_UA_54829827_2=1 -- 12:35:57.693 INFO [6508]: QUERY_STRING = -- 12:35:57.693 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:35:57.725 INFO [6508]: COREGRADE is stopping... -- 12:35:57.725 DEBUG [6508]: Closing database connection -- 12:35:57.725 SQL [6508]: pgsql_close() -- 12:35:59.432 INFO [6508]: COREGRADE is starting... -- 12:35:59.433 INFO [6508]: Version from config: 1.0 -- 12:35:59.433 DEBUG [6508]: Connecting to database... -- 12:35:59.433 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:35:59.433 SQL [6508]: pgsql_db_connect() -- 12:35:59.437 DEBUG [6508]: Database connection successful -- 12:35:59.437 INFO [6508]: _SERVER found -- 12:35:59.437 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 12:35:59.437 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 12:35:59.437 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=skar7nhr1nt0pjqmj989uroqg2v0ricv; _gat_gtag_UA_54829827_2=1 -- 12:35:59.437 INFO [6508]: QUERY_STRING = /home/security -- 12:35:59.437 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:35:59.468 INFO [6508]: COREGRADE is stopping... -- 12:35:59.468 DEBUG [6508]: Closing database connection -- 12:35:59.468 SQL [6508]: pgsql_close() -- 12:36:04.112 INFO [6508]: COREGRADE is starting... -- 12:36:04.112 INFO [6508]: Version from config: 1.0 -- 12:36:04.112 DEBUG [6508]: Connecting to database... -- 12:36:04.112 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:36:04.112 SQL [6508]: pgsql_db_connect() -- 12:36:04.116 DEBUG [6508]: Database connection successful -- 12:36:04.116 INFO [6508]: _SERVER found -- 12:36:04.116 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 12:36:04.116 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 12:36:04.116 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=skar7nhr1nt0pjqmj989uroqg2v0ricv; _gat_gtag_UA_54829827_2=1 -- 12:36:04.116 INFO [6508]: QUERY_STRING = -- 12:36:04.116 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:36:04.147 INFO [6508]: COREGRADE is stopping... -- 12:36:04.147 DEBUG [6508]: Closing database connection -- 12:36:04.147 SQL [6508]: pgsql_close() -- 12:36:05.624 INFO [6508]: COREGRADE is starting... -- 12:36:05.625 INFO [6508]: Version from config: 1.0 -- 12:36:05.625 DEBUG [6508]: Connecting to database... -- 12:36:05.625 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:36:05.625 SQL [6508]: pgsql_db_connect() -- 12:36:05.629 DEBUG [6508]: Database connection successful -- 12:36:05.629 INFO [6508]: _SERVER found -- 12:36:05.629 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 12:36:05.629 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 12:36:05.629 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=skar7nhr1nt0pjqmj989uroqg2v0ricv; _gat_gtag_UA_54829827_2=1 -- 12:36:05.629 INFO [6508]: QUERY_STRING = /home/aboutus -- 12:36:05.629 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:36:05.660 INFO [6508]: COREGRADE is stopping... -- 12:36:05.660 DEBUG [6508]: Closing database connection -- 12:36:05.660 SQL [6508]: pgsql_close() -- 12:36:27.072 INFO [7885]: COREGRADE is starting... -- 12:36:27.072 INFO [7885]: Version from config: 1.0 -- 12:36:27.072 DEBUG [7885]: Connecting to database... -- 12:36:27.072 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:36:27.073 SQL [7885]: pgsql_db_connect() -- 12:36:27.077 DEBUG [7885]: Database connection successful -- 12:36:27.077 INFO [7885]: _SERVER found -- 12:36:27.077 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 12:36:27.077 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 12:36:27.077 INFO [7885]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=gigdj1dchq3kc32rja4lppbiia0hp3vp -- 12:36:27.077 INFO [7885]: QUERY_STRING = /member/classroom -- 12:36:27.077 INFO [7885]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:36:27.120 INFO [7885]: COREGRADE is stopping... -- 12:36:27.120 DEBUG [7885]: Closing database connection -- 12:36:27.120 SQL [7885]: pgsql_close() -- 12:36:27.784 INFO [7885]: COREGRADE is starting... -- 12:36:27.784 INFO [7885]: Version from config: 1.0 -- 12:36:27.784 DEBUG [7885]: Connecting to database... -- 12:36:27.784 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:36:27.784 SQL [7885]: pgsql_db_connect() -- 12:36:27.788 DEBUG [7885]: Database connection successful -- 12:36:27.788 INFO [7885]: _SERVER found -- 12:36:27.788 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 12:36:27.788 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 12:36:27.788 INFO [7885]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=gigdj1dchq3kc32rja4lppbiia0hp3vp -- 12:36:27.788 INFO [7885]: QUERY_STRING = /member/classroom -- 12:36:27.788 INFO [7885]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:36:27.830 INFO [7885]: COREGRADE is stopping... -- 12:36:27.830 DEBUG [7885]: Closing database connection -- 12:36:27.830 SQL [7885]: pgsql_close() -- 12:36:29.843 INFO [7885]: COREGRADE is starting... -- 12:36:29.843 INFO [7885]: Version from config: 1.0 -- 12:36:29.843 DEBUG [7885]: Connecting to database... -- 12:36:29.844 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:36:29.844 SQL [7885]: pgsql_db_connect() -- 12:36:29.848 DEBUG [7885]: Database connection successful -- 12:36:29.848 INFO [7885]: _SERVER found -- 12:36:29.848 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 12:36:29.848 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 12:36:29.848 INFO [7885]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=gigdj1dchq3kc32rja4lppbiia0hp3vp -- 12:36:29.848 INFO [7885]: QUERY_STRING = /member/classroom -- 12:36:29.848 INFO [7885]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:36:29.889 INFO [7885]: COREGRADE is stopping... -- 12:36:29.889 DEBUG [7885]: Closing database connection -- 12:36:29.890 SQL [7885]: pgsql_close() -- 12:36:35.686 INFO [5687]: COREGRADE is starting... -- 12:36:35.686 INFO [5687]: Version from config: 1.0 -- 12:36:35.686 DEBUG [5687]: Connecting to database... -- 12:36:35.686 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:36:35.686 SQL [5687]: pgsql_db_connect() -- 12:36:35.691 DEBUG [5687]: Database connection successful -- 12:36:35.691 INFO [5687]: _SERVER found -- 12:36:35.691 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 12:36:35.691 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 12:36:35.691 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=gigdj1dchq3kc32rja4lppbiia0hp3vp -- 12:36:35.691 INFO [5687]: QUERY_STRING = /member/configure -- 12:36:35.691 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:36:35.735 INFO [5687]: COREGRADE is stopping... -- 12:36:35.735 DEBUG [5687]: Closing database connection -- 12:36:35.735 SQL [5687]: pgsql_close() -- 12:37:02.797 INFO [5697]: COREGRADE is starting... -- 12:37:02.797 INFO [5697]: Version from config: 1.0 -- 12:37:02.797 DEBUG [5697]: Connecting to database... -- 12:37:02.797 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:37:02.797 SQL [5697]: pgsql_db_connect() -- 12:37:02.801 DEBUG [5697]: Database connection successful -- 12:37:02.801 INFO [5697]: _SERVER found -- 12:37:02.801 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 12:37:02.801 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 12:37:02.801 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=skar7nhr1nt0pjqmj989uroqg2v0ricv -- 12:37:02.801 INFO [5697]: QUERY_STRING = /home/aboutus -- 12:37:02.801 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:37:02.835 INFO [5697]: COREGRADE is stopping... -- 12:37:02.835 DEBUG [5697]: Closing database connection -- 12:37:02.835 SQL [5697]: pgsql_close() -- 12:40:08.957 INFO [7377]: COREGRADE is starting... -- 12:40:08.958 INFO [7377]: Version from config: 1.0 -- 12:40:08.958 DEBUG [7377]: Connecting to database... -- 12:40:08.958 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:40:08.958 SQL [7377]: pgsql_db_connect() -- 12:40:08.962 DEBUG [7377]: Database connection successful -- 12:40:08.962 INFO [7377]: _SERVER found -- 12:40:08.962 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 12:40:08.962 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 12:40:08.962 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=skar7nhr1nt0pjqmj989uroqg2v0ricv -- 12:40:08.962 INFO [7377]: QUERY_STRING = -- 12:40:08.962 INFO [7377]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:40:08.995 INFO [7377]: COREGRADE is stopping... -- 12:40:08.995 DEBUG [7377]: Closing database connection -- 12:40:08.995 SQL [7377]: pgsql_close() -- 12:40:09.777 INFO [7377]: COREGRADE is starting... -- 12:40:09.777 INFO [7377]: Version from config: 1.0 -- 12:40:09.777 DEBUG [7377]: Connecting to database... -- 12:40:09.777 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:40:09.777 SQL [7377]: pgsql_db_connect() -- 12:40:09.781 DEBUG [7377]: Database connection successful -- 12:40:09.781 INFO [7377]: _SERVER found -- 12:40:09.781 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 12:40:09.781 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 12:40:09.781 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=skar7nhr1nt0pjqmj989uroqg2v0ricv -- 12:40:09.781 INFO [7377]: QUERY_STRING = /assets/img/footer_1.jpg -- 12:40:09.781 INFO [7377]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:40:09.793 INFO [7377]: COREGRADE is stopping... -- 12:40:09.793 DEBUG [7377]: Closing database connection -- 12:40:09.793 SQL [7377]: pgsql_close() -- 12:41:14.944 INFO [4834]: COREGRADE is starting... -- 12:41:14.945 INFO [4834]: Version from config: 1.0 -- 12:41:14.945 DEBUG [4834]: Connecting to database... -- 12:41:14.945 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:41:14.945 SQL [4834]: pgsql_db_connect() -- 12:41:14.949 DEBUG [4834]: Database connection successful -- 12:41:14.949 INFO [4834]: _SERVER found -- 12:41:14.949 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 12:41:14.949 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 12:41:14.949 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=skar7nhr1nt0pjqmj989uroqg2v0ricv -- 12:41:14.949 INFO [4834]: QUERY_STRING = /home/aboutus -- 12:41:14.949 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:41:14.985 INFO [4834]: COREGRADE is stopping... -- 12:41:14.985 DEBUG [4834]: Closing database connection -- 12:41:14.985 SQL [4834]: pgsql_close() -- 12:41:29.223 INFO [4193]: COREGRADE is starting... -- 12:41:29.223 INFO [4193]: Version from config: 1.0 -- 12:41:29.223 DEBUG [4193]: Connecting to database... -- 12:41:29.223 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:41:29.223 SQL [4193]: pgsql_db_connect() -- 12:41:29.227 DEBUG [4193]: Database connection successful -- 12:41:29.227 INFO [4193]: _SERVER found -- 12:41:29.227 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 12:41:29.227 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 12:41:29.227 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=930aueb97ttrjt7qi25ibac5v3vfgo2a -- 12:41:29.227 INFO [4193]: QUERY_STRING = /auth -- 12:41:29.227 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:41:29.263 INFO [4193]: COREGRADE is stopping... -- 12:41:29.263 DEBUG [4193]: Closing database connection -- 12:41:29.263 SQL [4193]: pgsql_close() -- 12:41:31.508 INFO [4193]: COREGRADE is starting... -- 12:41:31.509 INFO [4193]: Version from config: 1.0 -- 12:41:31.509 DEBUG [4193]: Connecting to database... -- 12:41:31.509 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:41:31.509 SQL [4193]: pgsql_db_connect() -- 12:41:31.513 DEBUG [4193]: Database connection successful -- 12:41:31.513 INFO [4193]: _SERVER found -- 12:41:31.513 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 12:41:31.513 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 12:41:31.513 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=930aueb97ttrjt7qi25ibac5v3vfgo2a -- 12:41:31.513 INFO [4193]: QUERY_STRING = -- 12:41:31.513 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:41:31.546 INFO [4193]: COREGRADE is stopping... -- 12:41:31.546 DEBUG [4193]: Closing database connection -- 12:41:31.546 SQL [4193]: pgsql_close() -- 12:41:31.798 INFO [4193]: COREGRADE is starting... -- 12:41:31.798 INFO [4193]: Version from config: 1.0 -- 12:41:31.798 DEBUG [4193]: Connecting to database... -- 12:41:31.798 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:41:31.798 SQL [4193]: pgsql_db_connect() -- 12:41:31.802 DEBUG [4193]: Database connection successful -- 12:41:31.802 INFO [4193]: _SERVER found -- 12:41:31.802 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 12:41:31.802 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 12:41:31.802 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=930aueb97ttrjt7qi25ibac5v3vfgo2a -- 12:41:31.802 INFO [4193]: QUERY_STRING = /assets/img/footer_1.jpg -- 12:41:31.802 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:41:31.814 INFO [4193]: COREGRADE is stopping... -- 12:41:31.814 DEBUG [4193]: Closing database connection -- 12:41:31.814 SQL [4193]: pgsql_close() -- 12:44:52.035 INFO [4251]: COREGRADE is starting... -- 12:44:52.035 INFO [4251]: Version from config: 1.0 -- 12:44:52.035 DEBUG [4251]: Connecting to database... -- 12:44:52.035 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:44:52.035 SQL [4251]: pgsql_db_connect() -- 12:44:52.039 DEBUG [4251]: Database connection successful -- 12:44:52.039 INFO [4251]: _SERVER found -- 12:44:52.039 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 12:44:52.039 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 12:44:52.039 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=gigdj1dchq3kc32rja4lppbiia0hp3vp -- 12:44:52.039 INFO [4251]: QUERY_STRING = /member/page -- 12:44:52.039 INFO [4251]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:44:52.084 INFO [4251]: COREGRADE is stopping... -- 12:44:52.084 DEBUG [4251]: Closing database connection -- 12:44:52.084 SQL [4251]: pgsql_close() -- 12:45:00.268 INFO [5686]: COREGRADE is starting... -- 12:45:00.268 INFO [5686]: Version from config: 1.0 -- 12:45:00.268 DEBUG [5686]: Connecting to database... -- 12:45:00.268 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:45:00.268 SQL [5686]: pgsql_db_connect() -- 12:45:00.272 DEBUG [5686]: Database connection successful -- 12:45:00.272 INFO [5686]: _SERVER found -- 12:45:00.272 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 12:45:00.272 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 12:45:00.272 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=8cudim29rbacd42iiago8l3844qp3d5o -- 12:45:00.272 INFO [5686]: QUERY_STRING = /member/configure -- 12:45:00.272 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:45:00.315 INFO [5686]: COREGRADE is stopping... -- 12:45:00.315 DEBUG [5686]: Closing database connection -- 12:45:00.315 SQL [5686]: pgsql_close() -- 12:45:06.684 INFO [5685]: COREGRADE is starting... -- 12:45:06.685 INFO [5685]: Version from config: 1.0 -- 12:45:06.685 DEBUG [5685]: Connecting to database... -- 12:45:06.685 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:45:06.685 SQL [5685]: pgsql_db_connect() -- 12:45:06.689 DEBUG [5685]: Database connection successful -- 12:45:06.689 INFO [5685]: _SERVER found -- 12:45:06.689 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 12:45:06.689 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 12:45:06.689 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=8cudim29rbacd42iiago8l3844qp3d5o -- 12:45:06.689 INFO [5685]: QUERY_STRING = /member/myprofile -- 12:45:06.689 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:45:06.728 INFO [5685]: COREGRADE is stopping... -- 12:45:06.728 DEBUG [5685]: Closing database connection -- 12:45:06.728 SQL [5685]: pgsql_close() -- 12:48:28.496 INFO [6508]: COREGRADE is starting... -- 12:48:28.496 INFO [6508]: Version from config: 1.0 -- 12:48:28.496 DEBUG [6508]: Connecting to database... -- 12:48:28.496 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:48:28.496 SQL [6508]: pgsql_db_connect() -- 12:48:28.501 DEBUG [6508]: Database connection successful -- 12:48:28.501 INFO [6508]: _SERVER found -- 12:48:28.501 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 12:48:28.501 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 12:48:28.501 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845 -- 12:48:28.501 INFO [6508]: QUERY_STRING = -- 12:48:28.501 INFO [6508]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:48:28.534 INFO [6508]: COREGRADE is stopping... -- 12:48:28.534 DEBUG [6508]: Closing database connection -- 12:48:28.534 SQL [6508]: pgsql_close() -- 12:48:28.639 INFO [6508]: COREGRADE is starting... -- 12:48:28.639 INFO [6508]: Version from config: 1.0 -- 12:48:28.639 DEBUG [6508]: Connecting to database... -- 12:48:28.639 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:48:28.639 SQL [6508]: pgsql_db_connect() -- 12:48:28.643 DEBUG [6508]: Database connection successful -- 12:48:28.643 INFO [6508]: _SERVER found -- 12:48:28.643 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 12:48:28.643 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 12:48:28.643 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=j8go3gfti70rsscatcbppajei60kl603 -- 12:48:28.643 INFO [6508]: QUERY_STRING = /assets/img/footer_1.jpg -- 12:48:28.643 INFO [6508]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:48:28.655 INFO [6508]: COREGRADE is stopping... -- 12:48:28.655 DEBUG [6508]: Closing database connection -- 12:48:28.655 SQL [6508]: pgsql_close() -- 12:52:37.583 INFO [7885]: COREGRADE is starting... -- 12:52:37.583 INFO [7885]: Version from config: 1.0 -- 12:52:37.583 DEBUG [7885]: Connecting to database... -- 12:52:37.583 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:52:37.583 SQL [7885]: pgsql_db_connect() -- 12:52:37.588 DEBUG [7885]: Database connection successful -- 12:52:37.588 INFO [7885]: _SERVER found -- 12:52:37.588 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 12:52:37.588 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 12:52:37.588 INFO [7885]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=j8go3gfti70rsscatcbppajei60kl603 -- 12:52:37.588 INFO [7885]: QUERY_STRING = -- 12:52:37.588 INFO [7885]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:52:37.621 INFO [7885]: COREGRADE is stopping... -- 12:52:37.621 DEBUG [7885]: Closing database connection -- 12:52:37.621 SQL [7885]: pgsql_close() -- 12:58:00.492 INFO [5687]: COREGRADE is starting... -- 12:58:00.492 INFO [5687]: Version from config: 1.0 -- 12:58:00.492 DEBUG [5687]: Connecting to database... -- 12:58:00.492 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:58:00.492 SQL [5687]: pgsql_db_connect() -- 12:58:00.497 DEBUG [5687]: Database connection successful -- 12:58:00.497 INFO [5687]: _SERVER found -- 12:58:00.497 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 12:58:00.497 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 12:58:00.497 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624 -- 12:58:00.497 INFO [5687]: QUERY_STRING = /home/aboutus -- 12:58:00.497 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:58:00.532 INFO [5687]: COREGRADE is stopping... -- 12:58:00.532 DEBUG [5687]: Closing database connection -- 12:58:00.532 SQL [5687]: pgsql_close() -- 12:58:01.068 INFO [5687]: COREGRADE is starting... -- 12:58:01.068 INFO [5687]: Version from config: 1.0 -- 12:58:01.068 DEBUG [5687]: Connecting to database... -- 12:58:01.068 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:58:01.068 SQL [5687]: pgsql_db_connect() -- 12:58:01.073 DEBUG [5687]: Database connection successful -- 12:58:01.073 INFO [5687]: _SERVER found -- 12:58:01.073 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 12:58:01.073 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 12:58:01.073 INFO [5687]: HTTP_COOKIE = ci_session=08vggud9nsq1d3tl93l5ute0316hkk9e; _ga=GA1.2.2030761402.1585610624 -- 12:58:01.073 INFO [5687]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 12:58:01.073 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:58:01.084 INFO [5687]: COREGRADE is stopping... -- 12:58:01.084 DEBUG [5687]: Closing database connection -- 12:58:01.084 SQL [5687]: pgsql_close() -- 12:58:01.316 INFO [5687]: COREGRADE is starting... -- 12:58:01.316 INFO [5687]: Version from config: 1.0 -- 12:58:01.316 DEBUG [5687]: Connecting to database... -- 12:58:01.316 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:58:01.316 SQL [5687]: pgsql_db_connect() -- 12:58:01.321 DEBUG [5687]: Database connection successful -- 12:58:01.321 INFO [5687]: _SERVER found -- 12:58:01.321 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 12:58:01.321 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 12:58:01.321 INFO [5687]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 12:58:01.321 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:58:01.332 INFO [5687]: COREGRADE is stopping... -- 12:58:01.332 DEBUG [5687]: Closing database connection -- 12:58:01.332 SQL [5687]: pgsql_close() -- 12:58:01.357 INFO [5687]: COREGRADE is starting... -- 12:58:01.357 INFO [5687]: Version from config: 1.0 -- 12:58:01.357 DEBUG [5687]: Connecting to database... -- 12:58:01.357 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:58:01.357 SQL [5687]: pgsql_db_connect() -- 12:58:01.361 DEBUG [5687]: Database connection successful -- 12:58:01.361 INFO [5687]: _SERVER found -- 12:58:01.361 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 12:58:01.361 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 12:58:01.361 INFO [5687]: QUERY_STRING = /apple-touch-icon-precomposed.png -- 12:58:01.361 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:58:01.373 INFO [5687]: COREGRADE is stopping... -- 12:58:01.373 DEBUG [5687]: Closing database connection -- 12:58:01.373 SQL [5687]: pgsql_close() -- 12:58:01.401 INFO [5687]: COREGRADE is starting... -- 12:58:01.401 INFO [5687]: Version from config: 1.0 -- 12:58:01.401 DEBUG [5687]: Connecting to database... -- 12:58:01.402 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:58:01.402 SQL [5687]: pgsql_db_connect() -- 12:58:01.406 DEBUG [5687]: Database connection successful -- 12:58:01.406 INFO [5687]: _SERVER found -- 12:58:01.406 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 12:58:01.406 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 12:58:01.406 INFO [5687]: QUERY_STRING = /apple-touch-icon.png -- 12:58:01.406 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:58:01.417 INFO [5687]: COREGRADE is stopping... -- 12:58:01.417 DEBUG [5687]: Closing database connection -- 12:58:01.417 SQL [5687]: pgsql_close() -- 13:00:30.668 INFO [5697]: COREGRADE is starting... -- 13:00:30.669 INFO [5697]: Version from config: 1.0 -- 13:00:30.669 DEBUG [5697]: Connecting to database... -- 13:00:30.669 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:00:30.669 SQL [5697]: pgsql_db_connect() -- 13:00:30.673 DEBUG [5697]: Database connection successful -- 13:00:30.673 INFO [5697]: _SERVER found -- 13:00:30.673 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 13:00:30.673 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 13:00:30.673 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=8cudim29rbacd42iiago8l3844qp3d5o -- 13:00:30.673 INFO [5697]: QUERY_STRING = /member/page -- 13:00:30.673 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:00:30.718 INFO [5697]: COREGRADE is stopping... -- 13:00:30.718 DEBUG [5697]: Closing database connection -- 13:00:30.718 SQL [5697]: pgsql_close() -- 13:00:31.884 INFO [5697]: COREGRADE is starting... -- 13:00:31.884 INFO [5697]: Version from config: 1.0 -- 13:00:31.884 DEBUG [5697]: Connecting to database... -- 13:00:31.884 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:00:31.884 SQL [5697]: pgsql_db_connect() -- 13:00:31.889 DEBUG [5697]: Database connection successful -- 13:00:31.889 INFO [5697]: _SERVER found -- 13:00:31.889 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 13:00:31.889 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 13:00:31.889 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=r2sk9k1u60k2iqdv9tkj3sddst2agnjr -- 13:00:31.889 INFO [5697]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 13:00:31.889 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:00:31.900 INFO [5697]: COREGRADE is stopping... -- 13:00:31.900 DEBUG [5697]: Closing database connection -- 13:00:31.900 SQL [5697]: pgsql_close() -- 13:00:42.755 INFO [7377]: COREGRADE is starting... -- 13:00:42.756 INFO [7377]: Version from config: 1.0 -- 13:00:42.756 DEBUG [7377]: Connecting to database... -- 13:00:42.756 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:00:42.756 SQL [7377]: pgsql_db_connect() -- 13:00:42.760 DEBUG [7377]: Database connection successful -- 13:00:42.760 INFO [7377]: _SERVER found -- 13:00:42.760 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 13:00:42.760 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 13:00:42.760 INFO [7377]: HTTP_COOKIE = ci_session=08vggud9nsq1d3tl93l5ute0316hkk9e; _ga=GA1.2.2030761402.1585610624 -- 13:00:42.760 INFO [7377]: QUERY_STRING = /home/aboutus -- 13:00:42.760 INFO [7377]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:00:42.793 INFO [7377]: COREGRADE is stopping... -- 13:00:42.793 DEBUG [7377]: Closing database connection -- 13:00:42.793 SQL [7377]: pgsql_close() -- 13:00:42.821 INFO [7377]: COREGRADE is starting... -- 13:00:42.821 INFO [7377]: Version from config: 1.0 -- 13:00:42.821 DEBUG [7377]: Connecting to database... -- 13:00:42.821 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:00:42.821 SQL [7377]: pgsql_db_connect() -- 13:00:42.825 DEBUG [7377]: Database connection successful -- 13:00:42.825 INFO [7377]: _SERVER found -- 13:00:42.825 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 13:00:42.825 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 13:00:42.825 INFO [7377]: HTTP_COOKIE = ci_session=08vggud9nsq1d3tl93l5ute0316hkk9e; _ga=GA1.2.2030761402.1585610624 -- 13:00:42.825 INFO [7377]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:00:42.825 INFO [7377]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:00:42.837 INFO [7377]: COREGRADE is stopping... -- 13:00:42.837 DEBUG [7377]: Closing database connection -- 13:00:42.837 SQL [7377]: pgsql_close() -- 13:00:42.903 INFO [4834]: COREGRADE is starting... -- 13:00:42.903 INFO [4834]: Version from config: 1.0 -- 13:00:42.903 DEBUG [4834]: Connecting to database... -- 13:00:42.903 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:00:42.903 SQL [4834]: pgsql_db_connect() -- 13:00:42.924 INFO [7377]: COREGRADE is starting... -- 13:00:42.925 INFO [7377]: Version from config: 1.0 -- 13:00:42.925 DEBUG [7377]: Connecting to database... -- 13:00:42.925 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:00:42.925 SQL [7377]: pgsql_db_connect() -- 13:00:42.929 DEBUG [7377]: Database connection successful -- 13:00:42.929 INFO [7377]: _SERVER found -- 13:00:42.929 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 13:00:42.929 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 13:00:42.929 INFO [7377]: HTTP_COOKIE = ci_session=08vggud9nsq1d3tl93l5ute0316hkk9e; _ga=GA1.2.2030761402.1585610624 -- 13:00:42.929 INFO [7377]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:00:42.929 INFO [7377]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:00:42.940 INFO [7377]: COREGRADE is stopping... -- 13:00:42.940 DEBUG [7377]: Closing database connection -- 13:00:42.940 SQL [7377]: pgsql_close() -- 13:00:42.908 DEBUG [4834]: Database connection successful -- 13:00:42.908 INFO [4834]: _SERVER found -- 13:00:42.908 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 13:00:42.908 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 13:00:42.908 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1073336077.1587056389; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1277282327.1587056389 -- 13:00:42.908 INFO [4834]: QUERY_STRING = -- 13:00:42.908 INFO [4834]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 13:00:42.943 INFO [4834]: COREGRADE is stopping... -- 13:00:42.943 DEBUG [4834]: Closing database connection -- 13:00:42.943 SQL [4834]: pgsql_close() -- 13:00:43.569 INFO [4834]: COREGRADE is starting... -- 13:00:43.569 INFO [4834]: Version from config: 1.0 -- 13:00:43.569 DEBUG [4834]: Connecting to database... -- 13:00:43.569 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:00:43.569 SQL [4834]: pgsql_db_connect() -- 13:00:43.573 DEBUG [4834]: Database connection successful -- 13:00:43.573 INFO [4834]: _SERVER found -- 13:00:43.573 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 13:00:43.573 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 13:00:43.573 INFO [4834]: HTTP_COOKIE = ci_session=e6oh84jrtg80mhkfdjek29pr1frsk5om; _ga=GA1.2.1073336077.1587056389; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1277282327.1587056389 -- 13:00:43.573 INFO [4834]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:00:43.573 INFO [4834]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 13:00:43.585 INFO [4834]: COREGRADE is stopping... -- 13:00:43.585 DEBUG [4834]: Closing database connection -- 13:00:43.585 SQL [4834]: pgsql_close() -- 13:01:08.379 INFO [5686]: COREGRADE is starting... -- 13:01:08.379 INFO [5686]: Version from config: 1.0 -- 13:01:08.379 DEBUG [5686]: Connecting to database... -- 13:01:08.379 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:01:08.379 SQL [5686]: pgsql_db_connect() -- 13:01:08.384 DEBUG [5686]: Database connection successful -- 13:01:08.384 INFO [5686]: _SERVER found -- 13:01:08.384 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 13:01:08.384 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 13:01:08.384 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=r2sk9k1u60k2iqdv9tkj3sddst2agnjr -- 13:01:08.384 INFO [5686]: QUERY_STRING = /home/faq -- 13:01:08.384 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:01:08.416 INFO [5686]: COREGRADE is stopping... -- 13:01:08.416 DEBUG [5686]: Closing database connection -- 13:01:08.416 SQL [5686]: pgsql_close() -- 13:01:08.849 INFO [5686]: COREGRADE is starting... -- 13:01:08.850 INFO [5686]: Version from config: 1.0 -- 13:01:08.850 DEBUG [5686]: Connecting to database... -- 13:01:08.850 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:01:08.850 SQL [5686]: pgsql_db_connect() -- 13:01:08.854 DEBUG [5686]: Database connection successful -- 13:01:08.854 INFO [5686]: _SERVER found -- 13:01:08.854 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 13:01:08.854 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 13:01:08.854 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=r2sk9k1u60k2iqdv9tkj3sddst2agnjr -- 13:01:08.854 INFO [5686]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:01:08.854 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:01:08.865 INFO [5686]: COREGRADE is stopping... -- 13:01:08.865 DEBUG [5686]: Closing database connection -- 13:01:08.865 SQL [5686]: pgsql_close() -- 13:02:14.227 INFO [5685]: COREGRADE is starting... -- 13:02:14.227 INFO [5685]: Version from config: 1.0 -- 13:02:14.227 DEBUG [5685]: Connecting to database... -- 13:02:14.227 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:02:14.227 SQL [5685]: pgsql_db_connect() -- 13:02:14.231 DEBUG [5685]: Database connection successful -- 13:02:14.231 INFO [5685]: _SERVER found -- 13:02:14.231 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 13:02:14.231 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 13:02:14.231 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=r2sk9k1u60k2iqdv9tkj3sddst2agnjr -- 13:02:14.231 INFO [5685]: QUERY_STRING = -- 13:02:14.231 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:02:14.263 INFO [5685]: COREGRADE is stopping... -- 13:02:14.263 DEBUG [5685]: Closing database connection -- 13:02:14.263 SQL [5685]: pgsql_close() -- 13:02:14.958 INFO [5685]: COREGRADE is starting... -- 13:02:14.958 INFO [5685]: Version from config: 1.0 -- 13:02:14.958 DEBUG [5685]: Connecting to database... -- 13:02:14.958 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:02:14.958 SQL [5685]: pgsql_db_connect() -- 13:02:14.962 DEBUG [5685]: Database connection successful -- 13:02:14.962 INFO [5685]: _SERVER found -- 13:02:14.962 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 13:02:14.962 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 13:02:14.962 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=r2sk9k1u60k2iqdv9tkj3sddst2agnjr -- 13:02:14.962 INFO [5685]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:02:14.962 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:02:14.974 INFO [5685]: COREGRADE is stopping... -- 13:02:14.974 DEBUG [5685]: Closing database connection -- 13:02:14.974 SQL [5685]: pgsql_close() -- 13:02:17.616 INFO [5685]: COREGRADE is starting... -- 13:02:17.616 INFO [5685]: Version from config: 1.0 -- 13:02:17.616 DEBUG [5685]: Connecting to database... -- 13:02:17.616 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:02:17.616 SQL [5685]: pgsql_db_connect() -- 13:02:17.639 INFO [6508]: COREGRADE is starting... -- 13:02:17.639 INFO [6508]: Version from config: 1.0 -- 13:02:17.639 DEBUG [6508]: Connecting to database... -- 13:02:17.639 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:02:17.639 SQL [6508]: pgsql_db_connect() -- 13:02:17.621 DEBUG [5685]: Database connection successful -- 13:02:17.621 INFO [5685]: _SERVER found -- 13:02:17.621 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 13:02:17.621 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 13:02:17.621 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=r2sk9k1u60k2iqdv9tkj3sddst2agnjr; _gat_gtag_UA_54829827_2=1 -- 13:02:17.621 INFO [5685]: QUERY_STRING = /auth -- 13:02:17.621 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:02:17.653 INFO [5685]: COREGRADE is stopping... -- 13:02:17.653 DEBUG [5685]: Closing database connection -- 13:02:17.653 SQL [5685]: pgsql_close() -- 13:02:17.643 DEBUG [6508]: Database connection successful -- 13:02:17.643 INFO [6508]: _SERVER found -- 13:02:17.643 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 13:02:17.643 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 13:02:17.643 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=r2sk9k1u60k2iqdv9tkj3sddst2agnjr; _gat_gtag_UA_54829827_2=1 -- 13:02:17.643 INFO [6508]: QUERY_STRING = /welcome/viewLogin -- 13:02:17.643 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:02:17.675 INFO [6508]: COREGRADE is stopping... -- 13:02:17.675 DEBUG [6508]: Closing database connection -- 13:02:17.675 SQL [6508]: pgsql_close() -- 13:02:18.027 INFO [6508]: COREGRADE is starting... -- 13:02:18.027 INFO [6508]: Version from config: 1.0 -- 13:02:18.027 DEBUG [6508]: Connecting to database... -- 13:02:18.027 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:02:18.027 SQL [6508]: pgsql_db_connect() -- 13:02:18.031 DEBUG [6508]: Database connection successful -- 13:02:18.031 INFO [6508]: _SERVER found -- 13:02:18.031 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 13:02:18.031 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 13:02:18.031 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=r2sk9k1u60k2iqdv9tkj3sddst2agnjr; _gat_gtag_UA_54829827_2=1 -- 13:02:18.031 INFO [6508]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:02:18.031 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:02:18.043 INFO [6508]: COREGRADE is stopping... -- 13:02:18.043 DEBUG [6508]: Closing database connection -- 13:02:18.043 SQL [6508]: pgsql_close() -- 13:02:21.577 INFO [6508]: COREGRADE is starting... -- 13:02:21.578 INFO [6508]: Version from config: 1.0 -- 13:02:21.578 DEBUG [6508]: Connecting to database... -- 13:02:21.578 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:02:21.578 SQL [6508]: pgsql_db_connect() -- 13:02:21.613 INFO [6508]: COREGRADE is starting... -- 13:02:21.613 INFO [6508]: Version from config: 1.0 -- 13:02:21.613 DEBUG [6508]: Connecting to database... -- 13:02:21.613 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:02:21.613 SQL [6508]: pgsql_db_connect() -- 13:02:21.617 DEBUG [6508]: Database connection successful -- 13:02:21.617 INFO [6508]: _SERVER found -- 13:02:21.617 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 13:02:21.617 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 13:02:21.617 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=r2sk9k1u60k2iqdv9tkj3sddst2agnjr; _gat_gtag_UA_54829827_2=1 -- 13:02:21.617 INFO [6508]: QUERY_STRING = -- 13:02:21.617 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:02:21.617 INFO [6508]: SystemStatus()09-09-********~************ -- 13:02:21.617 INFO [6508]: long coregrade_api_main(CVars in, CVars &out) -- 13:02:21.617 INFO [6508]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 13:02:21.617 INFO [6508]: account calls -- 13:02:21.617 INFO [6508]: account_calls() -- 13:02:21.617 INFO [6508]: LoginCoreGradeAccount() -- 13:02:21.617 FLOG_MAX [6508]: REQ_STRING(username) -- 13:02:21.617 FLOG_MAX [6508]: REQ_STRING(password) -- 13:02:21.617 FLOG_MAX [6508]: REQ_STRING(sessionid) -- 13:02:21.617 FLOG_MAX [6508]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:02:21.617 SQL [6508]: pgsql_query() -- 13:02:21.617 SQL [6508]: About to run query: -- 13:02:21.617 SQL [6508]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678') -- 13:02:21.621 SQL [6508]: Found rows: 1 -- 13:02:21.621 FLOG_MAX [6508]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678')) num_cols=16 -- 13:02:21.621 INFO [6508]: long SessionCheck(long uid, const char *sessionid, int create ) -- 13:02:21.621 SQL [6508]: pgsql_exec() -- 13:02:21.621 SQL [6508]: About to run query: -- 13:02:21.621 SQL [6508]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 13:02:21.622 SQL [6508]: PQcmdTuples: 1 -- 13:02:21.622 SQL [6508]: Affected rows: 1 -- 13:02:21.622 SQL [6508]: pgsql_exec() -- 13:02:21.622 SQL [6508]: About to run query: -- 13:02:21.622 SQL [6508]: DELETE FROM members_session WHERE member_id=7 -- 13:02:21.622 SQL [6508]: PQcmdTuples: 0 -- 13:02:21.622 SQL [6508]: Affected rows: 0 -- 13:02:21.622 SQL [6508]: pgsql_query() -- 13:02:21.622 SQL [6508]: About to run query: -- 13:02:21.622 SQL [6508]: SELECT * FROM members_session WHERE member_id=7 AND session<>'9D502EB668A0CE153E179A62AB149E4D' -- 13:02:21.623 SQL [6508]: Found rows: 0 -- 13:02:21.623 SQL [6508]: Found rows: 0 -- 13:02:21.623 FLOG_MAX [6508]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:02:21.623 SQL [6508]: pgsql_query() -- 13:02:21.623 SQL [6508]: About to run query: -- 13:02:21.623 SQL [6508]: SELECT * FROM members_session WHERE member_id=7 AND session='9D502EB668A0CE153E179A62AB149E4D' -- 13:02:21.624 SQL [6508]: Found rows: 0 -- 13:02:21.624 SQL [6508]: Found rows: 0 -- 13:02:21.624 FLOG_MAX [6508]: insert_db_record() -- 13:02:21.624 SQL [6508]: pgsql_exec() -- 13:02:21.624 SQL [6508]: About to run query: -- 13:02:21.624 SQL [6508]: INSERT INTO members_session (member_id,session) VALUES ('7','9D502EB668A0CE153E179A62AB149E4D') -- 13:02:21.625 SQL [6508]: PQcmdTuples: 1 -- 13:02:21.625 SQL [6508]: Affected rows: 1 -- 13:02:21.625 FLOG_MAX [6508]: SELECT currval('members_session_id_seq') -- 13:02:21.625 SQL [6508]: pgsql_query() -- 13:02:21.625 SQL [6508]: About to run query: -- 13:02:21.625 SQL [6508]: SELECT currval('members_session_id_seq') -- 13:02:21.626 SQL [6508]: Found rows: 1 -- 13:02:21.626 INFO [6508]: CreateDefaultPage() -- 13:02:21.626 FLOG_MAX [6508]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:02:21.626 SQL [6508]: pgsql_query() -- 13:02:21.626 SQL [6508]: About to run query: -- 13:02:21.626 SQL [6508]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 13:02:21.626 SQL [6508]: Found rows: 1 -- 13:02:21.626 FLOG_MAX [6508]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 13:02:21.626 SQL [6508]: pgsql_query() -- 13:02:21.626 SQL [6508]: About to run query: -- 13:02:21.626 SQL [6508]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 13:02:21.626 SQL [6508]: Found rows: 1 -- 13:02:21.626 INFO [6508]: /CreateDefaultPage() -- 13:02:21.626 INFO [6508]: /LoginCoreGradeAccount() -- 13:02:21.626 INFO [6508]: RET: added=2020-02-05 09:42:12.816064 -- 13:02:21.626 INFO [6508]: RET: email=tokslaw@chiefsoft.com -- 13:02:21.626 INFO [6508]: RET: firstname=Tokunbo -- 13:02:21.626 INFO [6508]: RET: folder=5D06B187B1E2285A63AD1D0ECB670D98 -- 13:02:21.626 INFO [6508]: RET: id=7 -- 13:02:21.626 INFO [6508]: RET: last_login= -- 13:02:21.626 INFO [6508]: RET: lastname=Lawal -- 13:02:21.626 INFO [6508]: RET: loc=192.168.1.13 -- 13:02:21.626 INFO [6508]: RET: member_id=7 -- 13:02:21.626 INFO [6508]: RET: password=25d55ad283aa400af464c76d713c07ad -- 13:02:21.626 INFO [6508]: RET: phone= -- 13:02:21.626 INFO [6508]: RET: pid= -- 13:02:21.626 INFO [6508]: RET: result=YES I GET TO BACK END -- 13:02:21.626 INFO [6508]: RET: sessionid=9D502EB668A0CE153E179A62AB149E4D -- 13:02:21.626 INFO [6508]: RET: status=1 -- 13:02:21.626 INFO [6508]: RET: stauts=OK -- 13:02:21.626 INFO [6508]: RET: username=tokslaw@chiefsoft.com -- 13:02:21.626 INFO [6508]: RET: verified= -- 13:02:21.628 INFO [6508]: COREGRADE is stopping... -- 13:02:21.628 DEBUG [6508]: Closing database connection -- 13:02:21.628 SQL [6508]: pgsql_close() -- 13:02:21.582 DEBUG [6508]: Database connection successful -- 13:02:21.582 INFO [6508]: _SERVER found -- 13:02:21.582 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 13:02:21.582 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 13:02:21.582 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=r2sk9k1u60k2iqdv9tkj3sddst2agnjr; _gat_gtag_UA_54829827_2=1 -- 13:02:21.582 INFO [6508]: QUERY_STRING = /auth -- 13:02:21.582 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:02:21.628 INFO [6508]: COREGRADE is stopping... -- 13:02:21.628 DEBUG [6508]: Closing database connection -- 13:02:21.628 SQL [6508]: pgsql_close() -- 13:02:21.671 INFO [6508]: COREGRADE is starting... -- 13:02:21.671 INFO [6508]: Version from config: 1.0 -- 13:02:21.671 DEBUG [6508]: Connecting to database... -- 13:02:21.671 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:02:21.671 SQL [6508]: pgsql_db_connect() -- 13:02:21.675 DEBUG [6508]: Database connection successful -- 13:02:21.675 INFO [6508]: _SERVER found -- 13:02:21.675 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 13:02:21.675 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 13:02:21.675 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=r2sk9k1u60k2iqdv9tkj3sddst2agnjr; _gat_gtag_UA_54829827_2=1 -- 13:02:21.675 INFO [6508]: QUERY_STRING = /member/index -- 13:02:21.675 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:02:21.715 INFO [6508]: COREGRADE is stopping... -- 13:02:21.715 DEBUG [6508]: Closing database connection -- 13:02:21.715 SQL [6508]: pgsql_close() -- 13:02:22.169 INFO [6508]: COREGRADE is starting... -- 13:02:22.169 INFO [6508]: Version from config: 1.0 -- 13:02:22.169 DEBUG [6508]: Connecting to database... -- 13:02:22.169 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:02:22.169 SQL [6508]: pgsql_db_connect() -- 13:02:22.173 DEBUG [6508]: Database connection successful -- 13:02:22.173 INFO [6508]: _SERVER found -- 13:02:22.173 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 13:02:22.173 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 13:02:22.173 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=r2sk9k1u60k2iqdv9tkj3sddst2agnjr; _gat_gtag_UA_54829827_2=1 -- 13:02:22.173 INFO [6508]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 13:02:22.173 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:02:22.184 INFO [6508]: COREGRADE is stopping... -- 13:02:22.184 DEBUG [6508]: Closing database connection -- 13:02:22.184 SQL [6508]: pgsql_close() -- 13:02:32.243 INFO [7885]: COREGRADE is starting... -- 13:02:32.244 INFO [7885]: Version from config: 1.0 -- 13:02:32.244 DEBUG [7885]: Connecting to database... -- 13:02:32.244 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:02:32.244 SQL [7885]: pgsql_db_connect() -- 13:02:32.248 DEBUG [7885]: Database connection successful -- 13:02:32.248 INFO [7885]: _SERVER found -- 13:02:32.248 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 13:02:32.248 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 13:02:32.248 INFO [7885]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=r2sk9k1u60k2iqdv9tkj3sddst2agnjr; _gat_gtag_UA_54829827_2=1 -- 13:02:32.248 INFO [7885]: QUERY_STRING = /member/page -- 13:02:32.248 INFO [7885]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:02:32.291 INFO [7885]: COREGRADE is stopping... -- 13:02:32.291 DEBUG [7885]: Closing database connection -- 13:02:32.291 SQL [7885]: pgsql_close() -- 13:03:57.166 INFO [5687]: COREGRADE is starting... -- 13:03:57.166 INFO [5687]: Version from config: 1.0 -- 13:03:57.166 DEBUG [5687]: Connecting to database... -- 13:03:57.166 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:03:57.166 SQL [5687]: pgsql_db_connect() -- 13:03:57.170 DEBUG [5687]: Database connection successful -- 13:03:57.170 INFO [5687]: _SERVER found -- 13:03:57.170 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 13:03:57.170 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 13:03:57.170 INFO [5687]: HTTP_COOKIE = ci_session=08vggud9nsq1d3tl93l5ute0316hkk9e; _ga=GA1.2.2030761402.1585610624 -- 13:03:57.170 INFO [5687]: QUERY_STRING = -- 13:03:57.170 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:03:57.203 INFO [5687]: COREGRADE is stopping... -- 13:03:57.203 DEBUG [5687]: Closing database connection -- 13:03:57.203 SQL [5687]: pgsql_close() -- 13:03:57.408 INFO [5687]: COREGRADE is starting... -- 13:03:57.408 INFO [5687]: Version from config: 1.0 -- 13:03:57.408 DEBUG [5687]: Connecting to database... -- 13:03:57.408 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:03:57.408 SQL [5687]: pgsql_db_connect() -- 13:03:57.413 DEBUG [5687]: Database connection successful -- 13:03:57.413 INFO [5687]: _SERVER found -- 13:03:57.413 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 13:03:57.413 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 13:03:57.413 INFO [5687]: HTTP_COOKIE = ci_session=d29ma85kh9k9u9kef4jmk72h1abp758e; _ga=GA1.2.2030761402.1585610624 -- 13:03:57.413 INFO [5687]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:03:57.413 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:03:57.424 INFO [5687]: COREGRADE is stopping... -- 13:03:57.424 DEBUG [5687]: Closing database connection -- 13:03:57.424 SQL [5687]: pgsql_close() -- 13:04:02.559 INFO [4251]: COREGRADE is starting... -- 13:04:02.559 INFO [4251]: Version from config: 1.0 -- 13:04:02.559 DEBUG [4251]: Connecting to database... -- 13:04:02.559 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:04:02.559 SQL [4251]: pgsql_db_connect() -- 13:04:02.563 DEBUG [4251]: Database connection successful -- 13:04:02.563 INFO [4251]: _SERVER found -- 13:04:02.563 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 13:04:02.563 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 13:04:02.563 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=r2sk9k1u60k2iqdv9tkj3sddst2agnjr -- 13:04:02.563 INFO [4251]: QUERY_STRING = /member/configure -- 13:04:02.563 INFO [4251]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:04:02.606 INFO [4251]: COREGRADE is stopping... -- 13:04:02.606 DEBUG [4251]: Closing database connection -- 13:04:02.606 SQL [4251]: pgsql_close() -- 13:04:02.960 INFO [4251]: COREGRADE is starting... -- 13:04:02.960 INFO [4251]: Version from config: 1.0 -- 13:04:02.960 DEBUG [4251]: Connecting to database... -- 13:04:02.960 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:04:02.960 SQL [4251]: pgsql_db_connect() -- 13:04:02.964 DEBUG [4251]: Database connection successful -- 13:04:02.964 INFO [4251]: _SERVER found -- 13:04:02.964 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 13:04:02.964 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 13:04:02.964 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=r2sk9k1u60k2iqdv9tkj3sddst2agnjr -- 13:04:02.964 INFO [4251]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 13:04:02.964 INFO [4251]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:04:02.975 INFO [4251]: COREGRADE is stopping... -- 13:04:02.975 DEBUG [4251]: Closing database connection -- 13:04:02.976 SQL [4251]: pgsql_close() -- 13:04:07.426 INFO [4193]: COREGRADE is starting... -- 13:04:07.426 INFO [4193]: Version from config: 1.0 -- 13:04:07.426 DEBUG [4193]: Connecting to database... -- 13:04:07.426 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:04:07.426 SQL [4193]: pgsql_db_connect() -- 13:04:07.460 INFO [4834]: COREGRADE is starting... -- 13:04:07.460 INFO [4834]: Version from config: 1.0 -- 13:04:07.460 DEBUG [4834]: Connecting to database... -- 13:04:07.460 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:04:07.460 SQL [4834]: pgsql_db_connect() -- 13:04:07.430 DEBUG [4193]: Database connection successful -- 13:04:07.430 INFO [4193]: _SERVER found -- 13:04:07.430 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 13:04:07.430 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 13:04:07.430 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.138698439.1587056638; ci_session=d29ma85kh9k9u9kef4jmk72h1abp758e -- 13:04:07.430 INFO [4193]: QUERY_STRING = -- 13:04:07.430 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:04:07.467 INFO [4193]: COREGRADE is stopping... -- 13:04:07.467 DEBUG [4193]: Closing database connection -- 13:04:07.467 SQL [4193]: pgsql_close() -- 13:04:07.464 DEBUG [4834]: Database connection successful -- 13:04:07.464 INFO [4834]: _SERVER found -- 13:04:07.464 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 13:04:07.464 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 13:04:07.464 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.138698439.1587056638; ci_session=d29ma85kh9k9u9kef4jmk72h1abp758e -- 13:04:07.464 INFO [4834]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:04:07.464 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:04:07.477 INFO [4834]: COREGRADE is stopping... -- 13:04:07.477 DEBUG [4834]: Closing database connection -- 13:04:07.477 SQL [4834]: pgsql_close() -- 13:04:09.809 INFO [4834]: COREGRADE is starting... -- 13:04:09.809 INFO [4834]: Version from config: 1.0 -- 13:04:09.809 DEBUG [4834]: Connecting to database... -- 13:04:09.809 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:04:09.809 SQL [4834]: pgsql_db_connect() -- 13:04:09.813 INFO [4193]: COREGRADE is starting... -- 13:04:09.814 INFO [4193]: Version from config: 1.0 -- 13:04:09.814 DEBUG [4193]: Connecting to database... -- 13:04:09.814 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:04:09.814 SQL [4193]: pgsql_db_connect() -- 13:04:09.817 DEBUG [4193]: Database connection successful -- 13:04:09.817 INFO [4193]: _SERVER found -- 13:04:09.817 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 13:04:09.817 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 13:04:09.817 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.138698439.1587056638; _gat_gtag_UA_54829827_2=1; ci_session=d29ma85kh9k9u9kef4jmk72h1abp758e -- 13:04:09.817 INFO [4193]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:04:09.817 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:04:09.829 INFO [4193]: COREGRADE is stopping... -- 13:04:09.829 DEBUG [4193]: Closing database connection -- 13:04:09.829 SQL [4193]: pgsql_close() -- 13:04:09.813 DEBUG [4834]: Database connection successful -- 13:04:09.813 INFO [4834]: _SERVER found -- 13:04:09.813 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 13:04:09.813 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 13:04:09.813 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.138698439.1587056638; _gat_gtag_UA_54829827_2=1; ci_session=d29ma85kh9k9u9kef4jmk72h1abp758e -- 13:04:09.813 INFO [4834]: QUERY_STRING = -- 13:04:09.813 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:04:09.847 INFO [4834]: COREGRADE is stopping... -- 13:04:09.847 DEBUG [4834]: Closing database connection -- 13:04:09.847 SQL [4834]: pgsql_close() -- 13:04:09.920 INFO [4834]: COREGRADE is starting... -- 13:04:09.920 INFO [4834]: Version from config: 1.0 -- 13:04:09.920 DEBUG [4834]: Connecting to database... -- 13:04:09.920 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:04:09.920 SQL [4834]: pgsql_db_connect() -- 13:04:09.924 DEBUG [4834]: Database connection successful -- 13:04:09.924 INFO [4834]: _SERVER found -- 13:04:09.924 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 13:04:09.924 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 13:04:09.924 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.138698439.1587056638; _gat_gtag_UA_54829827_2=1; ci_session=d29ma85kh9k9u9kef4jmk72h1abp758e -- 13:04:09.924 INFO [4834]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:04:09.924 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:04:09.936 INFO [4834]: COREGRADE is stopping... -- 13:04:09.936 DEBUG [4834]: Closing database connection -- 13:04:09.936 SQL [4834]: pgsql_close() -- 13:04:13.380 INFO [4834]: COREGRADE is starting... -- 13:04:13.380 INFO [4834]: Version from config: 1.0 -- 13:04:13.380 DEBUG [4834]: Connecting to database... -- 13:04:13.380 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:04:13.380 SQL [4834]: pgsql_db_connect() -- 13:04:13.385 INFO [4193]: COREGRADE is starting... -- 13:04:13.385 INFO [4193]: Version from config: 1.0 -- 13:04:13.385 DEBUG [4193]: Connecting to database... -- 13:04:13.385 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:04:13.385 SQL [4193]: pgsql_db_connect() -- 13:04:13.389 DEBUG [4193]: Database connection successful -- 13:04:13.389 INFO [4193]: _SERVER found -- 13:04:13.389 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 13:04:13.389 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 13:04:13.389 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.138698439.1587056638; _gat_gtag_UA_54829827_2=1; ci_session=d29ma85kh9k9u9kef4jmk72h1abp758e -- 13:04:13.389 INFO [4193]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:04:13.389 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:04:13.400 INFO [4193]: COREGRADE is stopping... -- 13:04:13.400 DEBUG [4193]: Closing database connection -- 13:04:13.400 SQL [4193]: pgsql_close() -- 13:04:13.385 DEBUG [4834]: Database connection successful -- 13:04:13.385 INFO [4834]: _SERVER found -- 13:04:13.385 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 13:04:13.385 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 13:04:13.385 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.138698439.1587056638; _gat_gtag_UA_54829827_2=1; ci_session=d29ma85kh9k9u9kef4jmk72h1abp758e -- 13:04:13.385 INFO [4834]: QUERY_STRING = -- 13:04:13.385 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:04:13.418 INFO [4834]: COREGRADE is stopping... -- 13:04:13.418 DEBUG [4834]: Closing database connection -- 13:04:13.418 SQL [4834]: pgsql_close() -- 13:04:13.471 INFO [4834]: COREGRADE is starting... -- 13:04:13.472 INFO [4834]: Version from config: 1.0 -- 13:04:13.472 DEBUG [4834]: Connecting to database... -- 13:04:13.472 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:04:13.472 SQL [4834]: pgsql_db_connect() -- 13:04:13.476 DEBUG [4834]: Database connection successful -- 13:04:13.476 INFO [4834]: _SERVER found -- 13:04:13.476 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 13:04:13.476 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 13:04:13.476 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.138698439.1587056638; _gat_gtag_UA_54829827_2=1; ci_session=d29ma85kh9k9u9kef4jmk72h1abp758e -- 13:04:13.476 INFO [4834]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:04:13.476 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:04:13.487 INFO [4834]: COREGRADE is stopping... -- 13:04:13.487 DEBUG [4834]: Closing database connection -- 13:04:13.487 SQL [4834]: pgsql_close() -- 13:04:14.953 INFO [4834]: COREGRADE is starting... -- 13:04:14.953 INFO [4834]: Version from config: 1.0 -- 13:04:14.953 DEBUG [4834]: Connecting to database... -- 13:04:14.953 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:04:14.953 SQL [4834]: pgsql_db_connect() -- 13:04:14.958 INFO [4193]: COREGRADE is starting... -- 13:04:14.958 INFO [4193]: Version from config: 1.0 -- 13:04:14.958 DEBUG [4193]: Connecting to database... -- 13:04:14.958 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:04:14.958 SQL [4193]: pgsql_db_connect() -- 13:04:14.962 DEBUG [4193]: Database connection successful -- 13:04:14.962 INFO [4193]: _SERVER found -- 13:04:14.962 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 13:04:14.962 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 13:04:14.962 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.138698439.1587056638; _gat_gtag_UA_54829827_2=1; ci_session=d29ma85kh9k9u9kef4jmk72h1abp758e -- 13:04:14.962 INFO [4193]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:04:14.962 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:04:14.973 INFO [4193]: COREGRADE is stopping... -- 13:04:14.973 DEBUG [4193]: Closing database connection -- 13:04:14.973 SQL [4193]: pgsql_close() -- 13:04:14.957 DEBUG [4834]: Database connection successful -- 13:04:14.957 INFO [4834]: _SERVER found -- 13:04:14.957 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 13:04:14.957 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 13:04:14.957 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.138698439.1587056638; _gat_gtag_UA_54829827_2=1; ci_session=d29ma85kh9k9u9kef4jmk72h1abp758e -- 13:04:14.957 INFO [4834]: QUERY_STRING = -- 13:04:14.957 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:04:14.990 INFO [4834]: COREGRADE is stopping... -- 13:04:14.991 DEBUG [4834]: Closing database connection -- 13:04:14.991 SQL [4834]: pgsql_close() -- 13:04:15.049 INFO [4834]: COREGRADE is starting... -- 13:04:15.049 INFO [4834]: Version from config: 1.0 -- 13:04:15.049 DEBUG [4834]: Connecting to database... -- 13:04:15.049 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:04:15.049 SQL [4834]: pgsql_db_connect() -- 13:04:15.053 DEBUG [4834]: Database connection successful -- 13:04:15.053 INFO [4834]: _SERVER found -- 13:04:15.053 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 13:04:15.053 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 13:04:15.053 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.138698439.1587056638; _gat_gtag_UA_54829827_2=1; ci_session=d29ma85kh9k9u9kef4jmk72h1abp758e -- 13:04:15.053 INFO [4834]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:04:15.053 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:04:15.065 INFO [4834]: COREGRADE is stopping... -- 13:04:15.065 DEBUG [4834]: Closing database connection -- 13:04:15.065 SQL [4834]: pgsql_close() -- 13:06:48.200 INFO [5686]: COREGRADE is starting... -- 13:06:48.200 INFO [5686]: Version from config: 1.0 -- 13:06:48.200 DEBUG [5686]: Connecting to database... -- 13:06:48.200 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:06:48.200 SQL [5686]: pgsql_db_connect() -- 13:06:48.238 INFO [5686]: COREGRADE is starting... -- 13:06:48.238 INFO [5686]: Version from config: 1.0 -- 13:06:48.238 DEBUG [5686]: Connecting to database... -- 13:06:48.238 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:06:48.238 SQL [5686]: pgsql_db_connect() -- 13:06:48.243 DEBUG [5686]: Database connection successful -- 13:06:48.243 INFO [5686]: _SERVER found -- 13:06:48.243 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 13:06:48.243 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 13:06:48.243 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=r2sk9k1u60k2iqdv9tkj3sddst2agnjr -- 13:06:48.243 INFO [5686]: QUERY_STRING = -- 13:06:48.243 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:06:48.243 INFO [5686]: SystemStatus()09-09-********~************ -- 13:06:48.243 INFO [5686]: long coregrade_api_main(CVars in, CVars &out) -- 13:06:48.243 INFO [5686]: long coregrade_api_main(CVars in, CVars &out) action =11027 -- 13:06:48.243 INFO [5686]: account calls -- 13:06:48.243 INFO [5686]: account_calls() -- 13:06:48.243 INFO [5686]: CreateUserPage() -- 13:06:48.243 FLOG_MAX [5686]: REQ_STRING(description) -- 13:06:48.243 FLOG_MAX [5686]: REQ_STRING(title) -- 13:06:48.243 FLOG_MAX [5686]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:06:48.243 SQL [5686]: pgsql_query() -- 13:06:48.243 SQL [5686]: About to run query: -- 13:06:48.243 SQL [5686]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 13:06:48.244 SQL [5686]: Found rows: 1 -- 13:06:48.244 FLOG_MAX [5686]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 13:06:48.244 FLOG_MAX [5686]: insert_db_record() -- 13:06:48.244 SQL [5686]: pgsql_exec() -- 13:06:48.244 SQL [5686]: About to run query: -- 13:06:48.244 SQL [5686]: INSERT INTO members_pages (description,member_id,page_key,page_mode,title) VALUES ('HACKING -INSTALLATION OF NETWORKS -THREATS MANAGEMENT','7','PG5C62669DAE704212CCCC971DBD1E5708','OTHERPG','NETWORKING') -- 13:06:48.247 SQL [5686]: PQcmdTuples: 1 -- 13:06:48.247 SQL [5686]: Affected rows: 1 -- 13:06:48.247 FLOG_MAX [5686]: SELECT currval('members_pages_id_seq') -- 13:06:48.247 SQL [5686]: pgsql_query() -- 13:06:48.247 SQL [5686]: About to run query: -- 13:06:48.247 SQL [5686]: SELECT currval('members_pages_id_seq') -- 13:06:48.248 SQL [5686]: Found rows: 1 -- 13:06:48.248 INFO [5686]: /CreateUserPage() -- 13:06:48.248 INFO [5686]: RET: page_key=PG5C62669DAE704212CCCC971DBD1E5708 -- 13:06:48.248 INFO [5686]: RET: result=YES I GET TO BACK END -- 13:06:48.260 INFO [5686]: COREGRADE is stopping... -- 13:06:48.260 DEBUG [5686]: Closing database connection -- 13:06:48.260 SQL [5686]: pgsql_close() -- 13:06:48.205 DEBUG [5686]: Database connection successful -- 13:06:48.205 INFO [5686]: _SERVER found -- 13:06:48.205 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 13:06:48.205 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 13:06:48.205 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=r2sk9k1u60k2iqdv9tkj3sddst2agnjr -- 13:06:48.205 INFO [5686]: QUERY_STRING = /member/addcard -- 13:06:48.205 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:06:48.261 INFO [5686]: COREGRADE is stopping... -- 13:06:48.261 DEBUG [5686]: Closing database connection -- 13:06:48.261 SQL [5686]: pgsql_close() -- 13:06:55.145 INFO [5685]: COREGRADE is starting... -- 13:06:55.145 INFO [5685]: Version from config: 1.0 -- 13:06:55.145 DEBUG [5685]: Connecting to database... -- 13:06:55.145 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:06:55.145 SQL [5685]: pgsql_db_connect() -- 13:06:55.149 DEBUG [5685]: Database connection successful -- 13:06:55.149 INFO [5685]: _SERVER found -- 13:06:55.149 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 13:06:55.149 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 13:06:55.149 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=5u96amgigcdqcitlp0jne0761m4omrc7 -- 13:06:55.149 INFO [5685]: QUERY_STRING = /member -- 13:06:55.149 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:06:55.190 INFO [5685]: COREGRADE is stopping... -- 13:06:55.190 DEBUG [5685]: Closing database connection -- 13:06:55.190 SQL [5685]: pgsql_close() -- 13:08:41.365 INFO [6508]: COREGRADE is starting... -- 13:08:41.365 INFO [6508]: Version from config: 1.0 -- 13:08:41.365 DEBUG [6508]: Connecting to database... -- 13:08:41.365 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:08:41.365 SQL [6508]: pgsql_db_connect() -- 13:08:41.369 DEBUG [6508]: Database connection successful -- 13:08:41.369 INFO [6508]: _SERVER found -- 13:08:41.369 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 13:08:41.369 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 13:08:41.369 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.138698439.1587056638; ci_session=d29ma85kh9k9u9kef4jmk72h1abp758e -- 13:08:41.369 INFO [6508]: QUERY_STRING = -- 13:08:41.369 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:08:41.404 INFO [6508]: COREGRADE is stopping... -- 13:08:41.404 DEBUG [6508]: Closing database connection -- 13:08:41.404 SQL [6508]: pgsql_close() -- 13:08:41.444 INFO [7885]: COREGRADE is starting... -- 13:08:41.444 INFO [7885]: Version from config: 1.0 -- 13:08:41.444 DEBUG [7885]: Connecting to database... -- 13:08:41.444 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:08:41.444 SQL [7885]: pgsql_db_connect() -- 13:08:41.448 DEBUG [7885]: Database connection successful -- 13:08:41.448 INFO [7885]: _SERVER found -- 13:08:41.448 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 13:08:41.448 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 13:08:41.448 INFO [7885]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.138698439.1587056638; ci_session=d29ma85kh9k9u9kef4jmk72h1abp758e -- 13:08:41.448 INFO [7885]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:08:41.448 INFO [7885]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:08:41.460 INFO [7885]: COREGRADE is stopping... -- 13:08:41.460 DEBUG [7885]: Closing database connection -- 13:08:41.460 SQL [7885]: pgsql_close() -- 13:08:41.473 INFO [6508]: COREGRADE is starting... -- 13:08:41.473 INFO [6508]: Version from config: 1.0 -- 13:08:41.473 DEBUG [6508]: Connecting to database... -- 13:08:41.473 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:08:41.474 SQL [6508]: pgsql_db_connect() -- 13:08:41.478 DEBUG [6508]: Database connection successful -- 13:08:41.478 INFO [6508]: _SERVER found -- 13:08:41.478 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 13:08:41.478 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 13:08:41.478 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.138698439.1587056638; ci_session=d29ma85kh9k9u9kef4jmk72h1abp758e -- 13:08:41.478 INFO [6508]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:08:41.478 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:08:41.489 INFO [6508]: COREGRADE is stopping... -- 13:08:41.489 DEBUG [6508]: Closing database connection -- 13:08:41.489 SQL [6508]: pgsql_close() -- 13:08:43.022 INFO [7885]: COREGRADE is starting... -- 13:08:43.022 INFO [7885]: Version from config: 1.0 -- 13:08:43.022 DEBUG [7885]: Connecting to database... -- 13:08:43.022 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:08:43.022 SQL [7885]: pgsql_db_connect() -- 13:08:43.027 INFO [6508]: COREGRADE is starting... -- 13:08:43.027 INFO [6508]: Version from config: 1.0 -- 13:08:43.027 DEBUG [6508]: Connecting to database... -- 13:08:43.027 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:08:43.027 SQL [6508]: pgsql_db_connect() -- 13:08:43.026 DEBUG [7885]: Database connection successful -- 13:08:43.026 INFO [7885]: _SERVER found -- 13:08:43.026 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 13:08:43.026 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 13:08:43.026 INFO [7885]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.138698439.1587056638; ci_session=d29ma85kh9k9u9kef4jmk72h1abp758e -- 13:08:43.026 INFO [7885]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:08:43.026 INFO [7885]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:08:43.038 INFO [7885]: COREGRADE is stopping... -- 13:08:43.038 DEBUG [7885]: Closing database connection -- 13:08:43.038 SQL [7885]: pgsql_close() -- 13:08:43.031 DEBUG [6508]: Database connection successful -- 13:08:43.031 INFO [6508]: _SERVER found -- 13:08:43.031 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 13:08:43.031 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 13:08:43.031 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.138698439.1587056638; ci_session=d29ma85kh9k9u9kef4jmk72h1abp758e -- 13:08:43.031 INFO [6508]: QUERY_STRING = -- 13:08:43.031 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:08:43.062 INFO [6508]: COREGRADE is stopping... -- 13:08:43.063 DEBUG [6508]: Closing database connection -- 13:08:43.063 SQL [6508]: pgsql_close() -- 13:08:43.128 INFO [6508]: COREGRADE is starting... -- 13:08:43.129 INFO [6508]: Version from config: 1.0 -- 13:08:43.129 DEBUG [6508]: Connecting to database... -- 13:08:43.129 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:08:43.129 SQL [6508]: pgsql_db_connect() -- 13:08:43.132 DEBUG [6508]: Database connection successful -- 13:08:43.132 INFO [6508]: _SERVER found -- 13:08:43.132 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 13:08:43.132 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 13:08:43.133 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.138698439.1587056638; ci_session=d29ma85kh9k9u9kef4jmk72h1abp758e -- 13:08:43.133 INFO [6508]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:08:43.133 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:08:43.144 INFO [6508]: COREGRADE is stopping... -- 13:08:43.144 DEBUG [6508]: Closing database connection -- 13:08:43.144 SQL [6508]: pgsql_close() -- 13:08:44.675 INFO [6508]: COREGRADE is starting... -- 13:08:44.675 INFO [6508]: Version from config: 1.0 -- 13:08:44.675 DEBUG [6508]: Connecting to database... -- 13:08:44.675 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:08:44.675 SQL [6508]: pgsql_db_connect() -- 13:08:44.680 INFO [7885]: COREGRADE is starting... -- 13:08:44.680 INFO [7885]: Version from config: 1.0 -- 13:08:44.680 DEBUG [7885]: Connecting to database... -- 13:08:44.680 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:08:44.680 SQL [7885]: pgsql_db_connect() -- 13:08:44.684 DEBUG [7885]: Database connection successful -- 13:08:44.684 INFO [7885]: _SERVER found -- 13:08:44.684 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 13:08:44.684 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 13:08:44.684 INFO [7885]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.138698439.1587056638; _gat_gtag_UA_54829827_2=1; ci_session=d29ma85kh9k9u9kef4jmk72h1abp758e -- 13:08:44.684 INFO [7885]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:08:44.684 INFO [7885]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:08:44.695 INFO [7885]: COREGRADE is stopping... -- 13:08:44.695 DEBUG [7885]: Closing database connection -- 13:08:44.695 SQL [7885]: pgsql_close() -- 13:08:44.680 DEBUG [6508]: Database connection successful -- 13:08:44.680 INFO [6508]: _SERVER found -- 13:08:44.680 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 13:08:44.680 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 13:08:44.680 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.138698439.1587056638; _gat_gtag_UA_54829827_2=1; ci_session=d29ma85kh9k9u9kef4jmk72h1abp758e -- 13:08:44.680 INFO [6508]: QUERY_STRING = -- 13:08:44.680 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:08:44.711 INFO [6508]: COREGRADE is stopping... -- 13:08:44.711 DEBUG [6508]: Closing database connection -- 13:08:44.711 SQL [6508]: pgsql_close() -- 13:08:44.771 INFO [6508]: COREGRADE is starting... -- 13:08:44.771 INFO [6508]: Version from config: 1.0 -- 13:08:44.771 DEBUG [6508]: Connecting to database... -- 13:08:44.771 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:08:44.771 SQL [6508]: pgsql_db_connect() -- 13:08:44.775 DEBUG [6508]: Database connection successful -- 13:08:44.775 INFO [6508]: _SERVER found -- 13:08:44.775 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 13:08:44.775 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 13:08:44.775 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.138698439.1587056638; _gat_gtag_UA_54829827_2=1; ci_session=d29ma85kh9k9u9kef4jmk72h1abp758e -- 13:08:44.775 INFO [6508]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:08:44.775 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:08:44.787 INFO [6508]: COREGRADE is stopping... -- 13:08:44.787 DEBUG [6508]: Closing database connection -- 13:08:44.787 SQL [6508]: pgsql_close() -- 13:08:45.962 INFO [6508]: COREGRADE is starting... -- 13:08:45.962 INFO [6508]: Version from config: 1.0 -- 13:08:45.962 DEBUG [6508]: Connecting to database... -- 13:08:45.962 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:08:45.962 SQL [6508]: pgsql_db_connect() -- 13:08:45.967 INFO [7885]: COREGRADE is starting... -- 13:08:45.968 INFO [7885]: Version from config: 1.0 -- 13:08:45.968 DEBUG [7885]: Connecting to database... -- 13:08:45.968 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:08:45.968 SQL [7885]: pgsql_db_connect() -- 13:08:45.972 DEBUG [7885]: Database connection successful -- 13:08:45.972 INFO [7885]: _SERVER found -- 13:08:45.972 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 13:08:45.972 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 13:08:45.972 INFO [7885]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.138698439.1587056638; _gat_gtag_UA_54829827_2=1; ci_session=d29ma85kh9k9u9kef4jmk72h1abp758e -- 13:08:45.972 INFO [7885]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:08:45.972 INFO [7885]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:08:45.983 INFO [7885]: COREGRADE is stopping... -- 13:08:45.983 DEBUG [7885]: Closing database connection -- 13:08:45.983 SQL [7885]: pgsql_close() -- 13:08:45.967 DEBUG [6508]: Database connection successful -- 13:08:45.967 INFO [6508]: _SERVER found -- 13:08:45.967 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 13:08:45.967 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 13:08:45.967 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.138698439.1587056638; _gat_gtag_UA_54829827_2=1; ci_session=d29ma85kh9k9u9kef4jmk72h1abp758e -- 13:08:45.967 INFO [6508]: QUERY_STRING = -- 13:08:45.967 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:08:45.998 INFO [6508]: COREGRADE is stopping... -- 13:08:45.998 DEBUG [6508]: Closing database connection -- 13:08:45.998 SQL [6508]: pgsql_close() -- 13:08:46.054 INFO [6508]: COREGRADE is starting... -- 13:08:46.054 INFO [6508]: Version from config: 1.0 -- 13:08:46.054 DEBUG [6508]: Connecting to database... -- 13:08:46.054 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:08:46.054 SQL [6508]: pgsql_db_connect() -- 13:08:46.058 DEBUG [6508]: Database connection successful -- 13:08:46.058 INFO [6508]: _SERVER found -- 13:08:46.058 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 13:08:46.058 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 13:08:46.058 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.138698439.1587056638; _gat_gtag_UA_54829827_2=1; ci_session=d29ma85kh9k9u9kef4jmk72h1abp758e -- 13:08:46.058 INFO [6508]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:08:46.058 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:08:46.069 INFO [6508]: COREGRADE is stopping... -- 13:08:46.069 DEBUG [6508]: Closing database connection -- 13:08:46.069 SQL [6508]: pgsql_close() -- 13:09:18.809 INFO [5687]: COREGRADE is starting... -- 13:09:18.809 INFO [5687]: Version from config: 1.0 -- 13:09:18.809 DEBUG [5687]: Connecting to database... -- 13:09:18.809 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:18.809 SQL [5687]: pgsql_db_connect() -- 13:09:18.814 DEBUG [5687]: Database connection successful -- 13:09:18.814 INFO [5687]: _SERVER found -- 13:09:18.814 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 13:09:18.814 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 13:09:18.814 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=5u96amgigcdqcitlp0jne0761m4omrc7 -- 13:09:18.814 INFO [5687]: QUERY_STRING = /member -- 13:09:18.814 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:09:18.855 INFO [5687]: COREGRADE is stopping... -- 13:09:18.855 DEBUG [5687]: Closing database connection -- 13:09:18.855 SQL [5687]: pgsql_close() -- 13:09:27.356 INFO [5697]: COREGRADE is starting... -- 13:09:27.356 INFO [5697]: Version from config: 1.0 -- 13:09:27.356 DEBUG [5697]: Connecting to database... -- 13:09:27.357 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:27.357 SQL [5697]: pgsql_db_connect() -- 13:09:27.361 DEBUG [5697]: Database connection successful -- 13:09:27.361 INFO [5697]: _SERVER found -- 13:09:27.361 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 13:09:27.361 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 13:09:27.361 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=5u96amgigcdqcitlp0jne0761m4omrc7 -- 13:09:27.361 INFO [5697]: QUERY_STRING = /member/page -- 13:09:27.361 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:09:27.404 INFO [5697]: COREGRADE is stopping... -- 13:09:27.404 DEBUG [5697]: Closing database connection -- 13:09:27.404 SQL [5697]: pgsql_close() -- 13:09:30.638 INFO [5697]: COREGRADE is starting... -- 13:09:30.638 INFO [5697]: Version from config: 1.0 -- 13:09:30.638 DEBUG [5697]: Connecting to database... -- 13:09:30.638 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:30.638 SQL [5697]: pgsql_db_connect() -- 13:09:30.642 DEBUG [5697]: Database connection successful -- 13:09:30.642 INFO [5697]: _SERVER found -- 13:09:30.642 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 13:09:30.642 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 13:09:30.642 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=5u96amgigcdqcitlp0jne0761m4omrc7 -- 13:09:30.642 INFO [5697]: QUERY_STRING = /member -- 13:09:30.642 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:09:30.682 INFO [5697]: COREGRADE is stopping... -- 13:09:30.682 DEBUG [5697]: Closing database connection -- 13:09:30.682 SQL [5697]: pgsql_close() -- 13:09:47.708 INFO [7377]: COREGRADE is starting... -- 13:09:47.708 INFO [7377]: Version from config: 1.0 -- 13:09:47.708 DEBUG [7377]: Connecting to database... -- 13:09:47.708 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:47.708 SQL [7377]: pgsql_db_connect() -- 13:09:47.712 DEBUG [7377]: Database connection successful -- 13:09:47.712 INFO [7377]: _SERVER found -- 13:09:47.712 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 13:09:47.712 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 13:09:47.712 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=5u96amgigcdqcitlp0jne0761m4omrc7 -- 13:09:47.712 INFO [7377]: QUERY_STRING = /member/page -- 13:09:47.712 INFO [7377]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:09:47.755 INFO [7377]: COREGRADE is stopping... -- 13:09:47.755 DEBUG [7377]: Closing database connection -- 13:09:47.755 SQL [7377]: pgsql_close() -- 13:10:07.493 INFO [4251]: COREGRADE is starting... -- 13:10:07.493 INFO [4251]: Version from config: 1.0 -- 13:10:07.493 DEBUG [4251]: Connecting to database... -- 13:10:07.493 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:10:07.493 SQL [4251]: pgsql_db_connect() -- 13:10:07.497 DEBUG [4251]: Database connection successful -- 13:10:07.497 INFO [4251]: _SERVER found -- 13:10:07.497 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 13:10:07.497 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 13:10:07.497 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=5u96amgigcdqcitlp0jne0761m4omrc7 -- 13:10:07.497 INFO [4251]: QUERY_STRING = /member -- 13:10:07.497 INFO [4251]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:10:07.538 INFO [4251]: COREGRADE is stopping... -- 13:10:07.538 DEBUG [4251]: Closing database connection -- 13:10:07.538 SQL [4251]: pgsql_close() -- 13:10:44.503 INFO [4193]: COREGRADE is starting... -- 13:10:44.504 INFO [4193]: Version from config: 1.0 -- 13:10:44.504 DEBUG [4193]: Connecting to database... -- 13:10:44.504 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:10:44.504 SQL [4193]: pgsql_db_connect() -- 13:10:44.508 DEBUG [4193]: Database connection successful -- 13:10:44.508 INFO [4193]: _SERVER found -- 13:10:44.508 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 13:10:44.508 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 13:10:44.508 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=5u96amgigcdqcitlp0jne0761m4omrc7 -- 13:10:44.508 INFO [4193]: QUERY_STRING = -- 13:10:44.508 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:10:44.543 INFO [4193]: COREGRADE is stopping... -- 13:10:44.543 DEBUG [4193]: Closing database connection -- 13:10:44.543 SQL [4193]: pgsql_close() -- 13:10:45.172 INFO [4193]: COREGRADE is starting... -- 13:10:45.172 INFO [4193]: Version from config: 1.0 -- 13:10:45.172 DEBUG [4193]: Connecting to database... -- 13:10:45.172 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:10:45.172 SQL [4193]: pgsql_db_connect() -- 13:10:45.177 DEBUG [4193]: Database connection successful -- 13:10:45.177 INFO [4193]: _SERVER found -- 13:10:45.177 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 13:10:45.177 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 13:10:45.177 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=5u96amgigcdqcitlp0jne0761m4omrc7 -- 13:10:45.177 INFO [4193]: QUERY_STRING = -- 13:10:45.177 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:10:45.210 INFO [4193]: COREGRADE is stopping... -- 13:10:45.210 DEBUG [4193]: Closing database connection -- 13:10:45.210 SQL [4193]: pgsql_close() -- 13:10:45.793 INFO [4193]: COREGRADE is starting... -- 13:10:45.793 INFO [4193]: Version from config: 1.0 -- 13:10:45.793 DEBUG [4193]: Connecting to database... -- 13:10:45.793 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:10:45.793 SQL [4193]: pgsql_db_connect() -- 13:10:45.797 DEBUG [4193]: Database connection successful -- 13:10:45.797 INFO [4193]: _SERVER found -- 13:10:45.797 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 13:10:45.797 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 13:10:45.797 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=5u96amgigcdqcitlp0jne0761m4omrc7 -- 13:10:45.797 INFO [4193]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:10:45.797 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:10:45.809 INFO [4193]: COREGRADE is stopping... -- 13:10:45.809 DEBUG [4193]: Closing database connection -- 13:10:45.809 SQL [4193]: pgsql_close() -- 13:10:49.110 INFO [4193]: COREGRADE is starting... -- 13:10:49.111 INFO [4193]: Version from config: 1.0 -- 13:10:49.111 DEBUG [4193]: Connecting to database... -- 13:10:49.111 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:10:49.111 SQL [4193]: pgsql_db_connect() -- 13:10:49.115 DEBUG [4193]: Database connection successful -- 13:10:49.115 INFO [4193]: _SERVER found -- 13:10:49.115 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 13:10:49.115 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 13:10:49.115 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=5u96amgigcdqcitlp0jne0761m4omrc7; _gat_gtag_UA_54829827_2=1 -- 13:10:49.115 INFO [4193]: QUERY_STRING = /home/faq -- 13:10:49.115 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:10:49.149 INFO [4193]: COREGRADE is stopping... -- 13:10:49.149 DEBUG [4193]: Closing database connection -- 13:10:49.149 SQL [4193]: pgsql_close() -- 13:10:49.565 INFO [4193]: COREGRADE is starting... -- 13:10:49.565 INFO [4193]: Version from config: 1.0 -- 13:10:49.565 DEBUG [4193]: Connecting to database... -- 13:10:49.565 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:10:49.565 SQL [4193]: pgsql_db_connect() -- 13:10:49.569 DEBUG [4193]: Database connection successful -- 13:10:49.569 INFO [4193]: _SERVER found -- 13:10:49.569 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 13:10:49.569 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 13:10:49.569 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=5u96amgigcdqcitlp0jne0761m4omrc7; _gat_gtag_UA_54829827_2=1 -- 13:10:49.569 INFO [4193]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:10:49.569 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:10:49.581 INFO [4193]: COREGRADE is stopping... -- 13:10:49.581 DEBUG [4193]: Closing database connection -- 13:10:49.581 SQL [4193]: pgsql_close() -- 13:11:26.882 INFO [4834]: COREGRADE is starting... -- 13:11:26.882 INFO [4834]: Version from config: 1.0 -- 13:11:26.882 DEBUG [4834]: Connecting to database... -- 13:11:26.882 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:11:26.882 SQL [4834]: pgsql_db_connect() -- 13:11:26.887 DEBUG [4834]: Database connection successful -- 13:11:26.887 INFO [4834]: _SERVER found -- 13:11:26.887 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 13:11:26.887 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 13:11:26.887 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.138698439.1587056638; ci_session=d29ma85kh9k9u9kef4jmk72h1abp758e -- 13:11:26.887 INFO [4834]: QUERY_STRING = -- 13:11:26.887 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:11:26.922 INFO [4834]: COREGRADE is stopping... -- 13:11:26.922 DEBUG [4834]: Closing database connection -- 13:11:26.922 SQL [4834]: pgsql_close() -- 13:11:26.959 INFO [5686]: COREGRADE is starting... -- 13:11:26.960 INFO [5686]: Version from config: 1.0 -- 13:11:26.960 DEBUG [5686]: Connecting to database... -- 13:11:26.960 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:11:26.960 SQL [5686]: pgsql_db_connect() -- 13:11:26.964 DEBUG [5686]: Database connection successful -- 13:11:26.964 INFO [5686]: _SERVER found -- 13:11:26.964 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 13:11:26.964 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 13:11:26.964 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.138698439.1587056638; ci_session=d29ma85kh9k9u9kef4jmk72h1abp758e -- 13:11:26.964 INFO [5686]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:11:26.964 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:11:26.975 INFO [5686]: COREGRADE is stopping... -- 13:11:26.975 DEBUG [5686]: Closing database connection -- 13:11:26.975 SQL [5686]: pgsql_close() -- 13:11:26.988 INFO [4834]: COREGRADE is starting... -- 13:11:26.989 INFO [4834]: Version from config: 1.0 -- 13:11:26.989 DEBUG [4834]: Connecting to database... -- 13:11:26.989 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:11:26.989 SQL [4834]: pgsql_db_connect() -- 13:11:26.993 DEBUG [4834]: Database connection successful -- 13:11:26.993 INFO [4834]: _SERVER found -- 13:11:26.993 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 13:11:26.993 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 13:11:26.993 INFO [4834]: HTTP_COOKIE = ci_session=fd4bug9ukfrpf949141jp2valqeq0tsg; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.138698439.1587056638 -- 13:11:26.993 INFO [4834]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:11:26.993 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:11:27.005 INFO [4834]: COREGRADE is stopping... -- 13:11:27.005 DEBUG [4834]: Closing database connection -- 13:11:27.005 SQL [4834]: pgsql_close() -- 13:11:32.134 INFO [5685]: COREGRADE is starting... -- 13:11:32.134 INFO [5685]: Version from config: 1.0 -- 13:11:32.134 DEBUG [5685]: Connecting to database... -- 13:11:32.134 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:11:32.134 SQL [5685]: pgsql_db_connect() -- 13:11:32.138 DEBUG [5685]: Database connection successful -- 13:11:32.138 INFO [5685]: _SERVER found -- 13:11:32.138 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 13:11:32.138 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 13:11:32.138 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=5u96amgigcdqcitlp0jne0761m4omrc7; _gat_gtag_UA_54829827_2=1 -- 13:11:32.138 INFO [5685]: QUERY_STRING = /member/page -- 13:11:32.138 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:11:32.181 INFO [5685]: COREGRADE is stopping... -- 13:11:32.181 DEBUG [5685]: Closing database connection -- 13:11:32.181 SQL [5685]: pgsql_close() -- 13:11:32.474 INFO [5685]: COREGRADE is starting... -- 13:11:32.474 INFO [5685]: Version from config: 1.0 -- 13:11:32.474 DEBUG [5685]: Connecting to database... -- 13:11:32.474 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:11:32.474 SQL [5685]: pgsql_db_connect() -- 13:11:32.478 DEBUG [5685]: Database connection successful -- 13:11:32.478 INFO [5685]: _SERVER found -- 13:11:32.478 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 13:11:32.478 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 13:11:32.478 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=5u96amgigcdqcitlp0jne0761m4omrc7; _gat_gtag_UA_54829827_2=1 -- 13:11:32.478 INFO [5685]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 13:11:32.478 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:11:32.490 INFO [5685]: COREGRADE is stopping... -- 13:11:32.490 DEBUG [5685]: Closing database connection -- 13:11:32.490 SQL [5685]: pgsql_close() -- 13:11:34.821 INFO [5685]: COREGRADE is starting... -- 13:11:34.821 INFO [5685]: Version from config: 1.0 -- 13:11:34.821 DEBUG [5685]: Connecting to database... -- 13:11:34.821 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:11:34.821 SQL [5685]: pgsql_db_connect() -- 13:11:34.825 DEBUG [5685]: Database connection successful -- 13:11:34.825 INFO [5685]: _SERVER found -- 13:11:34.825 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 13:11:34.825 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 13:11:34.825 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=5u96amgigcdqcitlp0jne0761m4omrc7; _gat_gtag_UA_54829827_2=1 -- 13:11:34.825 INFO [5685]: QUERY_STRING = /member/configure -- 13:11:34.825 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:11:34.867 INFO [5685]: COREGRADE is stopping... -- 13:11:34.867 DEBUG [5685]: Closing database connection -- 13:11:34.867 SQL [5685]: pgsql_close() -- 13:11:35.284 INFO [5685]: COREGRADE is starting... -- 13:11:35.284 INFO [5685]: Version from config: 1.0 -- 13:11:35.284 DEBUG [5685]: Connecting to database... -- 13:11:35.284 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:11:35.284 SQL [5685]: pgsql_db_connect() -- 13:11:35.288 DEBUG [5685]: Database connection successful -- 13:11:35.288 INFO [5685]: _SERVER found -- 13:11:35.288 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 13:11:35.288 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 13:11:35.288 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=5u96amgigcdqcitlp0jne0761m4omrc7; _gat_gtag_UA_54829827_2=1 -- 13:11:35.288 INFO [5685]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 13:11:35.288 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:11:35.299 INFO [5685]: COREGRADE is stopping... -- 13:11:35.299 DEBUG [5685]: Closing database connection -- 13:11:35.299 SQL [5685]: pgsql_close() -- 13:11:35.308 INFO [5685]: COREGRADE is starting... -- 13:11:35.308 INFO [5685]: Version from config: 1.0 -- 13:11:35.308 DEBUG [5685]: Connecting to database... -- 13:11:35.308 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:11:35.308 SQL [5685]: pgsql_db_connect() -- 13:11:35.312 DEBUG [5685]: Database connection successful -- 13:11:35.312 INFO [5685]: _SERVER found -- 13:11:35.312 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 13:11:35.312 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 13:11:35.312 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=5u96amgigcdqcitlp0jne0761m4omrc7; _gat_gtag_UA_54829827_2=1 -- 13:11:35.312 INFO [5685]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 13:11:35.312 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:11:35.323 INFO [5685]: COREGRADE is stopping... -- 13:11:35.323 DEBUG [5685]: Closing database connection -- 13:11:35.323 SQL [5685]: pgsql_close() -- 13:11:41.136 INFO [7885]: COREGRADE is starting... -- 13:11:41.136 INFO [7885]: Version from config: 1.0 -- 13:11:41.136 DEBUG [7885]: Connecting to database... -- 13:11:41.136 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:11:41.136 SQL [7885]: pgsql_db_connect() -- 13:11:41.140 DEBUG [7885]: Database connection successful -- 13:11:41.140 INFO [7885]: _SERVER found -- 13:11:41.140 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 13:11:41.140 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 13:11:41.140 INFO [7885]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=5u96amgigcdqcitlp0jne0761m4omrc7; _gat_gtag_UA_54829827_2=1 -- 13:11:41.140 INFO [7885]: QUERY_STRING = /member/configure -- 13:11:41.140 INFO [7885]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:11:41.183 INFO [7885]: COREGRADE is stopping... -- 13:11:41.183 DEBUG [7885]: Closing database connection -- 13:11:41.183 SQL [7885]: pgsql_close() -- 13:11:56.190 INFO [6508]: COREGRADE is starting... -- 13:11:56.190 INFO [6508]: Version from config: 1.0 -- 13:11:56.190 DEBUG [6508]: Connecting to database... -- 13:11:56.190 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:11:56.190 SQL [6508]: pgsql_db_connect() -- 13:11:56.194 DEBUG [6508]: Database connection successful -- 13:11:56.194 INFO [6508]: _SERVER found -- 13:11:56.194 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 13:11:56.194 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 13:11:56.194 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=5u96amgigcdqcitlp0jne0761m4omrc7 -- 13:11:56.194 INFO [6508]: QUERY_STRING = /member/mycalendar -- 13:11:56.194 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:11:56.233 INFO [6508]: COREGRADE is stopping... -- 13:11:56.233 DEBUG [6508]: Closing database connection -- 13:11:56.233 SQL [6508]: pgsql_close() -- 13:11:58.501 INFO [5687]: COREGRADE is starting... -- 13:11:58.501 INFO [5687]: Version from config: 1.0 -- 13:11:58.501 DEBUG [5687]: Connecting to database... -- 13:11:58.501 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:11:58.501 SQL [5687]: pgsql_db_connect() -- 13:11:58.505 DEBUG [5687]: Database connection successful -- 13:11:58.505 INFO [5687]: _SERVER found -- 13:11:58.505 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 13:11:58.505 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 13:11:58.505 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=s9qus0pda0ml7d4fp2lm0eq3o6kopakr -- 13:11:58.505 INFO [5687]: QUERY_STRING = /member/configure -- 13:11:58.505 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:11:58.548 INFO [5687]: COREGRADE is stopping... -- 13:11:58.548 DEBUG [5687]: Closing database connection -- 13:11:58.548 SQL [5687]: pgsql_close() -- 13:12:04.524 INFO [5697]: COREGRADE is starting... -- 13:12:04.524 INFO [5697]: Version from config: 1.0 -- 13:12:04.524 DEBUG [5697]: Connecting to database... -- 13:12:04.524 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:12:04.524 SQL [5697]: pgsql_db_connect() -- 13:12:04.528 DEBUG [5697]: Database connection successful -- 13:12:04.528 INFO [5697]: _SERVER found -- 13:12:04.528 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 13:12:04.528 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 13:12:04.528 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=s9qus0pda0ml7d4fp2lm0eq3o6kopakr -- 13:12:04.528 INFO [5697]: QUERY_STRING = /member/page -- 13:12:04.528 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:12:04.571 INFO [5697]: COREGRADE is stopping... -- 13:12:04.571 DEBUG [5697]: Closing database connection -- 13:12:04.571 SQL [5697]: pgsql_close() -- 13:12:08.281 INFO [7377]: COREGRADE is starting... -- 13:12:08.282 INFO [7377]: Version from config: 1.0 -- 13:12:08.282 DEBUG [7377]: Connecting to database... -- 13:12:08.282 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:12:08.282 SQL [7377]: pgsql_db_connect() -- 13:12:08.286 DEBUG [7377]: Database connection successful -- 13:12:08.286 INFO [7377]: _SERVER found -- 13:12:08.286 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 13:12:08.286 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 13:12:08.286 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=s9qus0pda0ml7d4fp2lm0eq3o6kopakr -- 13:12:08.286 INFO [7377]: QUERY_STRING = /member/configure -- 13:12:08.286 INFO [7377]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:12:08.329 INFO [7377]: COREGRADE is stopping... -- 13:12:08.329 DEBUG [7377]: Closing database connection -- 13:12:08.329 SQL [7377]: pgsql_close() -- 13:12:08.596 INFO [7377]: COREGRADE is starting... -- 13:12:08.596 INFO [7377]: Version from config: 1.0 -- 13:12:08.596 DEBUG [7377]: Connecting to database... -- 13:12:08.596 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:12:08.596 SQL [7377]: pgsql_db_connect() -- 13:12:08.608 INFO [5697]: COREGRADE is starting... -- 13:12:08.608 INFO [5697]: Version from config: 1.0 -- 13:12:08.608 DEBUG [5697]: Connecting to database... -- 13:12:08.608 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:12:08.608 SQL [5697]: pgsql_db_connect() -- 13:12:08.601 DEBUG [7377]: Database connection successful -- 13:12:08.601 INFO [7377]: _SERVER found -- 13:12:08.601 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 13:12:08.601 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 13:12:08.601 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=s9qus0pda0ml7d4fp2lm0eq3o6kopakr -- 13:12:08.601 INFO [7377]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 13:12:08.601 INFO [7377]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:12:08.612 INFO [7377]: COREGRADE is stopping... -- 13:12:08.612 DEBUG [7377]: Closing database connection -- 13:12:08.612 SQL [7377]: pgsql_close() -- 13:12:08.612 DEBUG [5697]: Database connection successful -- 13:12:08.612 INFO [5697]: _SERVER found -- 13:12:08.612 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 13:12:08.612 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 13:12:08.612 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=s9qus0pda0ml7d4fp2lm0eq3o6kopakr -- 13:12:08.612 INFO [5697]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 13:12:08.612 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:12:08.624 INFO [5697]: COREGRADE is stopping... -- 13:12:08.624 DEBUG [5697]: Closing database connection -- 13:12:08.624 SQL [5697]: pgsql_close() -- 13:12:12.129 INFO [5697]: COREGRADE is starting... -- 13:12:12.130 INFO [5697]: Version from config: 1.0 -- 13:12:12.130 DEBUG [5697]: Connecting to database... -- 13:12:12.130 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:12:12.130 SQL [5697]: pgsql_db_connect() -- 13:12:12.134 DEBUG [5697]: Database connection successful -- 13:12:12.134 INFO [5697]: _SERVER found -- 13:12:12.134 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 13:12:12.134 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 13:12:12.134 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=s9qus0pda0ml7d4fp2lm0eq3o6kopakr -- 13:12:12.134 INFO [5697]: QUERY_STRING = /member/page -- 13:12:12.134 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:12:12.175 INFO [5697]: COREGRADE is stopping... -- 13:12:12.175 DEBUG [5697]: Closing database connection -- 13:12:12.175 SQL [5697]: pgsql_close() -- 13:12:38.394 INFO [4251]: COREGRADE is starting... -- 13:12:38.394 INFO [4251]: Version from config: 1.0 -- 13:12:38.394 DEBUG [4251]: Connecting to database... -- 13:12:38.394 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:12:38.394 SQL [4251]: pgsql_db_connect() -- 13:12:38.398 DEBUG [4251]: Database connection successful -- 13:12:38.398 INFO [4251]: _SERVER found -- 13:12:38.398 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 13:12:38.398 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 13:12:38.398 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=s9qus0pda0ml7d4fp2lm0eq3o6kopakr -- 13:12:38.398 INFO [4251]: QUERY_STRING = /member/configure -- 13:12:38.398 INFO [4251]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:12:38.443 INFO [4251]: COREGRADE is stopping... -- 13:12:38.443 DEBUG [4251]: Closing database connection -- 13:12:38.443 SQL [4251]: pgsql_close() -- 13:13:02.549 INFO [4193]: COREGRADE is starting... -- 13:13:02.549 INFO [4193]: Version from config: 1.0 -- 13:13:02.549 DEBUG [4193]: Connecting to database... -- 13:13:02.549 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:13:02.549 SQL [4193]: pgsql_db_connect() -- 13:13:02.554 DEBUG [4193]: Database connection successful -- 13:13:02.554 INFO [4193]: _SERVER found -- 13:13:02.554 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 13:13:02.554 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 13:13:02.554 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=s9qus0pda0ml7d4fp2lm0eq3o6kopakr -- 13:13:02.554 INFO [4193]: QUERY_STRING = /member -- 13:13:02.554 INFO [4193]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:13:02.597 INFO [4193]: COREGRADE is stopping... -- 13:13:02.597 DEBUG [4193]: Closing database connection -- 13:13:02.597 SQL [4193]: pgsql_close() -- 13:13:10.880 INFO [5686]: COREGRADE is starting... -- 13:13:10.880 INFO [5686]: Version from config: 1.0 -- 13:13:10.880 DEBUG [5686]: Connecting to database... -- 13:13:10.880 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:13:10.880 SQL [5686]: pgsql_db_connect() -- 13:13:10.885 DEBUG [5686]: Database connection successful -- 13:13:10.885 INFO [5686]: _SERVER found -- 13:13:10.885 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 13:13:10.885 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 13:13:10.885 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=s9qus0pda0ml7d4fp2lm0eq3o6kopakr -- 13:13:10.885 INFO [5686]: QUERY_STRING = /member/page -- 13:13:10.885 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:13:10.926 INFO [5686]: COREGRADE is stopping... -- 13:13:10.926 DEBUG [5686]: Closing database connection -- 13:13:10.926 SQL [5686]: pgsql_close() -- 13:13:15.711 INFO [5686]: COREGRADE is starting... -- 13:13:15.712 INFO [5686]: Version from config: 1.0 -- 13:13:15.712 DEBUG [5686]: Connecting to database... -- 13:13:15.712 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:13:15.712 SQL [5686]: pgsql_db_connect() -- 13:13:15.716 DEBUG [5686]: Database connection successful -- 13:13:15.716 INFO [5686]: _SERVER found -- 13:13:15.716 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 13:13:15.716 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 13:13:15.716 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=s9qus0pda0ml7d4fp2lm0eq3o6kopakr -- 13:13:15.716 INFO [5686]: QUERY_STRING = /member/configure -- 13:13:15.716 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:13:15.758 INFO [5686]: COREGRADE is stopping... -- 13:13:15.758 DEBUG [5686]: Closing database connection -- 13:13:15.758 SQL [5686]: pgsql_close() -- 13:14:03.032 INFO [4834]: COREGRADE is starting... -- 13:14:03.032 INFO [4834]: Version from config: 1.0 -- 13:14:03.032 DEBUG [4834]: Connecting to database... -- 13:14:03.032 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:14:03.032 SQL [4834]: pgsql_db_connect() -- 13:14:03.037 DEBUG [4834]: Database connection successful -- 13:14:03.037 INFO [4834]: _SERVER found -- 13:14:03.037 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 13:14:03.037 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 13:14:03.037 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=s9qus0pda0ml7d4fp2lm0eq3o6kopakr -- 13:14:03.037 INFO [4834]: QUERY_STRING = /member -- 13:14:03.037 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:14:03.082 INFO [4834]: COREGRADE is stopping... -- 13:14:03.082 DEBUG [4834]: Closing database connection -- 13:14:03.082 SQL [4834]: pgsql_close() -- 13:14:03.327 INFO [4834]: COREGRADE is starting... -- 13:14:03.327 INFO [4834]: Version from config: 1.0 -- 13:14:03.327 DEBUG [4834]: Connecting to database... -- 13:14:03.327 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:14:03.327 SQL [4834]: pgsql_db_connect() -- 13:14:03.331 DEBUG [4834]: Database connection successful -- 13:14:03.331 INFO [4834]: _SERVER found -- 13:14:03.331 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 13:14:03.331 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 13:14:03.331 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=s9qus0pda0ml7d4fp2lm0eq3o6kopakr -- 13:14:03.331 INFO [4834]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 13:14:03.331 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:14:03.343 INFO [4834]: COREGRADE is stopping... -- 13:14:03.343 DEBUG [4834]: Closing database connection -- 13:14:03.343 SQL [4834]: pgsql_close() -- 13:14:06.989 INFO [4834]: COREGRADE is starting... -- 13:14:06.989 INFO [4834]: Version from config: 1.0 -- 13:14:06.989 DEBUG [4834]: Connecting to database... -- 13:14:06.989 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:14:06.989 SQL [4834]: pgsql_db_connect() -- 13:14:06.994 DEBUG [4834]: Database connection successful -- 13:14:06.994 INFO [4834]: _SERVER found -- 13:14:06.994 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 13:14:06.994 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 13:14:06.994 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=s9qus0pda0ml7d4fp2lm0eq3o6kopakr -- 13:14:06.994 INFO [4834]: QUERY_STRING = /member/page -- 13:14:06.994 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:14:07.038 INFO [4834]: COREGRADE is stopping... -- 13:14:07.038 DEBUG [4834]: Closing database connection -- 13:14:07.038 SQL [4834]: pgsql_close() -- 13:14:07.566 INFO [4834]: COREGRADE is starting... -- 13:14:07.567 INFO [4834]: Version from config: 1.0 -- 13:14:07.567 DEBUG [4834]: Connecting to database... -- 13:14:07.567 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:14:07.567 SQL [4834]: pgsql_db_connect() -- 13:14:07.571 DEBUG [4834]: Database connection successful -- 13:14:07.571 INFO [4834]: _SERVER found -- 13:14:07.571 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 13:14:07.571 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 13:14:07.571 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=s9qus0pda0ml7d4fp2lm0eq3o6kopakr -- 13:14:07.571 INFO [4834]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 13:14:07.571 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:14:07.583 INFO [4834]: COREGRADE is stopping... -- 13:14:07.583 DEBUG [4834]: Closing database connection -- 13:14:07.583 SQL [4834]: pgsql_close() -- 13:14:11.925 INFO [4834]: COREGRADE is starting... -- 13:14:11.925 INFO [4834]: Version from config: 1.0 -- 13:14:11.925 DEBUG [4834]: Connecting to database... -- 13:14:11.925 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:14:11.925 SQL [4834]: pgsql_db_connect() -- 13:14:11.929 DEBUG [4834]: Database connection successful -- 13:14:11.929 INFO [4834]: _SERVER found -- 13:14:11.929 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 13:14:11.929 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 13:14:11.929 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=s9qus0pda0ml7d4fp2lm0eq3o6kopakr -- 13:14:11.929 INFO [4834]: QUERY_STRING = /member -- 13:14:11.929 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:14:11.972 INFO [4834]: COREGRADE is stopping... -- 13:14:11.972 DEBUG [4834]: Closing database connection -- 13:14:11.972 SQL [4834]: pgsql_close() -- 13:14:14.421 INFO [4834]: COREGRADE is starting... -- 13:14:14.421 INFO [4834]: Version from config: 1.0 -- 13:14:14.421 DEBUG [4834]: Connecting to database... -- 13:14:14.421 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:14:14.421 SQL [4834]: pgsql_db_connect() -- 13:14:14.425 DEBUG [4834]: Database connection successful -- 13:14:14.425 INFO [4834]: _SERVER found -- 13:14:14.425 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 13:14:14.425 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 13:14:14.425 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=s9qus0pda0ml7d4fp2lm0eq3o6kopakr -- 13:14:14.425 INFO [4834]: QUERY_STRING = /member/configure -- 13:14:14.425 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:14:14.473 INFO [4834]: COREGRADE is stopping... -- 13:14:14.473 DEBUG [4834]: Closing database connection -- 13:14:14.473 SQL [4834]: pgsql_close() -- 13:14:14.657 INFO [4834]: COREGRADE is starting... -- 13:14:14.657 INFO [4834]: Version from config: 1.0 -- 13:14:14.657 DEBUG [4834]: Connecting to database... -- 13:14:14.657 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:14:14.657 SQL [4834]: pgsql_db_connect() -- 13:14:14.661 DEBUG [4834]: Database connection successful -- 13:14:14.661 INFO [4834]: _SERVER found -- 13:14:14.661 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 13:14:14.661 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 13:14:14.661 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=s9qus0pda0ml7d4fp2lm0eq3o6kopakr -- 13:14:14.661 INFO [4834]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 13:14:14.661 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:14:14.673 INFO [4834]: COREGRADE is stopping... -- 13:14:14.673 DEBUG [4834]: Closing database connection -- 13:14:14.673 SQL [4834]: pgsql_close() -- 13:25:45.092 INFO [5685]: COREGRADE is starting... -- 13:25:45.093 INFO [5685]: Version from config: 1.0 -- 13:25:45.093 DEBUG [5685]: Connecting to database... -- 13:25:45.093 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:25:45.093 SQL [5685]: pgsql_db_connect() -- 13:25:45.097 DEBUG [5685]: Database connection successful -- 13:25:45.097 INFO [5685]: _SERVER found -- 13:25:45.097 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 13:25:45.097 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 13:25:45.097 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=s9qus0pda0ml7d4fp2lm0eq3o6kopakr -- 13:25:45.097 INFO [5685]: QUERY_STRING = /member -- 13:25:45.097 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:25:45.141 INFO [5685]: COREGRADE is stopping... -- 13:25:45.141 DEBUG [5685]: Closing database connection -- 13:25:45.141 SQL [5685]: pgsql_close() -- 13:25:45.349 INFO [5685]: COREGRADE is starting... -- 13:25:45.349 INFO [5685]: Version from config: 1.0 -- 13:25:45.349 DEBUG [5685]: Connecting to database... -- 13:25:45.349 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:25:45.349 SQL [5685]: pgsql_db_connect() -- 13:25:45.353 DEBUG [5685]: Database connection successful -- 13:25:45.353 INFO [5685]: _SERVER found -- 13:25:45.353 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 13:25:45.353 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 13:25:45.353 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=n8k83gl1r00fh446n2j2khoeb8205f7s -- 13:25:45.353 INFO [5685]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 13:25:45.353 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:25:45.365 INFO [5685]: COREGRADE is stopping... -- 13:25:45.365 DEBUG [5685]: Closing database connection -- 13:25:45.365 SQL [5685]: pgsql_close() -- 13:25:47.033 INFO [5685]: COREGRADE is starting... -- 13:25:47.034 INFO [5685]: Version from config: 1.0 -- 13:25:47.034 DEBUG [5685]: Connecting to database... -- 13:25:47.034 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:25:47.034 SQL [5685]: pgsql_db_connect() -- 13:25:47.038 DEBUG [5685]: Database connection successful -- 13:25:47.038 INFO [5685]: _SERVER found -- 13:25:47.038 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 13:25:47.038 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 13:25:47.038 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=n8k83gl1r00fh446n2j2khoeb8205f7s -- 13:25:47.038 INFO [5685]: QUERY_STRING = /member/page -- 13:25:47.038 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:25:47.080 INFO [5685]: COREGRADE is stopping... -- 13:25:47.080 DEBUG [5685]: Closing database connection -- 13:25:47.080 SQL [5685]: pgsql_close() -- 13:25:47.518 INFO [5685]: COREGRADE is starting... -- 13:25:47.518 INFO [5685]: Version from config: 1.0 -- 13:25:47.518 DEBUG [5685]: Connecting to database... -- 13:25:47.518 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:25:47.518 SQL [5685]: pgsql_db_connect() -- 13:25:47.522 DEBUG [5685]: Database connection successful -- 13:25:47.522 INFO [5685]: _SERVER found -- 13:25:47.522 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 13:25:47.522 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 13:25:47.522 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=n8k83gl1r00fh446n2j2khoeb8205f7s -- 13:25:47.522 INFO [5685]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 13:25:47.522 INFO [5685]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:25:47.534 INFO [5685]: COREGRADE is stopping... -- 13:25:47.534 DEBUG [5685]: Closing database connection -- 13:25:47.534 SQL [5685]: pgsql_close() -- 13:25:55.916 INFO [7885]: COREGRADE is starting... -- 13:25:55.917 INFO [7885]: Version from config: 1.0 -- 13:25:55.917 DEBUG [7885]: Connecting to database... -- 13:25:55.917 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:25:55.917 SQL [7885]: pgsql_db_connect() -- 13:25:55.921 DEBUG [7885]: Database connection successful -- 13:25:55.921 INFO [7885]: _SERVER found -- 13:25:55.921 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 13:25:55.921 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 13:25:55.921 INFO [7885]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=n8k83gl1r00fh446n2j2khoeb8205f7s -- 13:25:55.921 INFO [7885]: QUERY_STRING = /member/configure -- 13:25:55.921 INFO [7885]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:25:55.964 INFO [7885]: COREGRADE is stopping... -- 13:25:55.964 DEBUG [7885]: Closing database connection -- 13:25:55.964 SQL [7885]: pgsql_close() -- 13:25:56.247 INFO [7885]: COREGRADE is starting... -- 13:25:56.247 INFO [7885]: Version from config: 1.0 -- 13:25:56.247 DEBUG [7885]: Connecting to database... -- 13:25:56.247 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:25:56.247 SQL [7885]: pgsql_db_connect() -- 13:25:56.253 INFO [6508]: COREGRADE is starting... -- 13:25:56.254 INFO [6508]: Version from config: 1.0 -- 13:25:56.254 DEBUG [6508]: Connecting to database... -- 13:25:56.254 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:25:56.254 SQL [6508]: pgsql_db_connect() -- 13:25:56.252 DEBUG [7885]: Database connection successful -- 13:25:56.252 INFO [7885]: _SERVER found -- 13:25:56.252 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 13:25:56.252 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 13:25:56.252 INFO [7885]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=n8k83gl1r00fh446n2j2khoeb8205f7s -- 13:25:56.252 INFO [7885]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 13:25:56.252 INFO [7885]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:25:56.263 INFO [7885]: COREGRADE is stopping... -- 13:25:56.263 DEBUG [7885]: Closing database connection -- 13:25:56.263 SQL [7885]: pgsql_close() -- 13:25:56.258 DEBUG [6508]: Database connection successful -- 13:25:56.258 INFO [6508]: _SERVER found -- 13:25:56.258 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 13:25:56.258 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 13:25:56.258 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=n8k83gl1r00fh446n2j2khoeb8205f7s -- 13:25:56.258 INFO [6508]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 13:25:56.258 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:25:56.270 INFO [6508]: COREGRADE is stopping... -- 13:25:56.270 DEBUG [6508]: Closing database connection -- 13:25:56.270 SQL [6508]: pgsql_close() -- 13:28:00.073 INFO [5687]: COREGRADE is starting... -- 13:28:00.074 INFO [5687]: Version from config: 1.0 -- 13:28:00.074 DEBUG [5687]: Connecting to database... -- 13:28:00.074 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:28:00.074 SQL [5687]: pgsql_db_connect() -- 13:28:00.078 DEBUG [5687]: Database connection successful -- 13:28:00.078 INFO [5687]: _SERVER found -- 13:28:00.078 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 13:28:00.078 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 13:28:00.078 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=n8k83gl1r00fh446n2j2khoeb8205f7s -- 13:28:00.078 INFO [5687]: QUERY_STRING = /member/viewSharePage -- 13:28:00.078 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:28:00.114 INFO [5687]: COREGRADE is stopping... -- 13:28:00.114 DEBUG [5687]: Closing database connection -- 13:28:00.114 SQL [5687]: pgsql_close() -- 13:34:23.693 INFO [7377]: COREGRADE is starting... -- 13:34:23.694 INFO [7377]: Version from config: 1.0 -- 13:34:23.694 DEBUG [7377]: Connecting to database... -- 13:34:23.694 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:34:23.694 SQL [7377]: pgsql_db_connect() -- 13:34:23.698 DEBUG [7377]: Database connection successful -- 13:34:23.698 INFO [7377]: _SERVER found -- 13:34:23.698 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 13:34:23.698 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 13:34:23.698 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=n8k83gl1r00fh446n2j2khoeb8205f7s -- 13:34:23.698 INFO [7377]: QUERY_STRING = /member/configure -- 13:34:23.698 INFO [7377]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:34:23.745 INFO [7377]: COREGRADE is stopping... -- 13:34:23.745 DEBUG [7377]: Closing database connection -- 13:34:23.745 SQL [7377]: pgsql_close() -- 13:34:24.189 INFO [7377]: COREGRADE is starting... -- 13:34:24.189 INFO [7377]: Version from config: 1.0 -- 13:34:24.189 DEBUG [7377]: Connecting to database... -- 13:34:24.189 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:34:24.189 SQL [7377]: pgsql_db_connect() -- 13:34:24.190 INFO [5697]: COREGRADE is starting... -- 13:34:24.190 INFO [5697]: Version from config: 1.0 -- 13:34:24.190 DEBUG [5697]: Connecting to database... -- 13:34:24.190 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:34:24.190 SQL [5697]: pgsql_db_connect() -- 13:34:24.194 DEBUG [7377]: Database connection successful -- 13:34:24.194 INFO [7377]: _SERVER found -- 13:34:24.194 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 13:34:24.194 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 13:34:24.194 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=q12hvp24rtn9ai2584aupq2aaj570enp -- 13:34:24.194 INFO [7377]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 13:34:24.194 INFO [7377]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:34:24.206 INFO [7377]: COREGRADE is stopping... -- 13:34:24.206 DEBUG [7377]: Closing database connection -- 13:34:24.206 SQL [7377]: pgsql_close() -- 13:34:24.194 DEBUG [5697]: Database connection successful -- 13:34:24.194 INFO [5697]: _SERVER found -- 13:34:24.194 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 13:34:24.194 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 13:34:24.194 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=q12hvp24rtn9ai2584aupq2aaj570enp -- 13:34:24.194 INFO [5697]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 13:34:24.194 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:34:24.207 INFO [5697]: COREGRADE is stopping... -- 13:34:24.207 DEBUG [5697]: Closing database connection -- 13:34:24.207 SQL [5697]: pgsql_close() -- 13:34:25.698 INFO [5697]: COREGRADE is starting... -- 13:34:25.699 INFO [5697]: Version from config: 1.0 -- 13:34:25.699 DEBUG [5697]: Connecting to database... -- 13:34:25.699 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:34:25.699 SQL [5697]: pgsql_db_connect() -- 13:34:25.703 DEBUG [5697]: Database connection successful -- 13:34:25.703 INFO [5697]: _SERVER found -- 13:34:25.703 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 13:34:25.703 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 13:34:25.703 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=q12hvp24rtn9ai2584aupq2aaj570enp -- 13:34:25.703 INFO [5697]: QUERY_STRING = /member -- 13:34:25.703 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:34:25.743 INFO [5697]: COREGRADE is stopping... -- 13:34:25.743 DEBUG [5697]: Closing database connection -- 13:34:25.743 SQL [5697]: pgsql_close() -- 13:34:26.110 INFO [5697]: COREGRADE is starting... -- 13:34:26.110 INFO [5697]: Version from config: 1.0 -- 13:34:26.110 DEBUG [5697]: Connecting to database... -- 13:34:26.110 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:34:26.110 SQL [5697]: pgsql_db_connect() -- 13:34:26.114 DEBUG [5697]: Database connection successful -- 13:34:26.114 INFO [5697]: _SERVER found -- 13:34:26.114 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 13:34:26.114 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 13:34:26.114 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=q12hvp24rtn9ai2584aupq2aaj570enp -- 13:34:26.114 INFO [5697]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 13:34:26.114 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:34:26.125 INFO [5697]: COREGRADE is stopping... -- 13:34:26.125 DEBUG [5697]: Closing database connection -- 13:34:26.125 SQL [5697]: pgsql_close() -- 13:34:27.926 INFO [5697]: COREGRADE is starting... -- 13:34:27.926 INFO [5697]: Version from config: 1.0 -- 13:34:27.926 DEBUG [5697]: Connecting to database... -- 13:34:27.926 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:34:27.926 SQL [5697]: pgsql_db_connect() -- 13:34:27.930 DEBUG [5697]: Database connection successful -- 13:34:27.930 INFO [5697]: _SERVER found -- 13:34:27.930 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 13:34:27.930 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 13:34:27.930 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=q12hvp24rtn9ai2584aupq2aaj570enp -- 13:34:27.930 INFO [5697]: QUERY_STRING = /member/page -- 13:34:27.930 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:34:27.972 INFO [5697]: COREGRADE is stopping... -- 13:34:27.972 DEBUG [5697]: Closing database connection -- 13:34:27.972 SQL [5697]: pgsql_close() -- 14:06:40.355 INFO [4251]: COREGRADE is starting... -- 14:06:40.356 INFO [4251]: Version from config: 1.0 -- 14:06:40.356 DEBUG [4251]: Connecting to database... -- 14:06:40.356 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:06:40.356 SQL [4251]: pgsql_db_connect() -- 14:06:40.360 DEBUG [4251]: Database connection successful -- 14:06:40.360 INFO [4251]: _SERVER found -- 14:06:40.360 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 14:06:40.360 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 14:06:40.360 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=j8go3gfti70rsscatcbppajei60kl603 -- 14:06:40.360 INFO [4251]: QUERY_STRING = -- 14:06:40.360 INFO [4251]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:06:40.397 INFO [4251]: COREGRADE is stopping... -- 14:06:40.397 DEBUG [4251]: Closing database connection -- 14:06:40.397 SQL [4251]: pgsql_close() -- 14:06:40.546 INFO [4251]: COREGRADE is starting... -- 14:06:40.546 INFO [4251]: Version from config: 1.0 -- 14:06:40.546 DEBUG [4251]: Connecting to database... -- 14:06:40.546 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:06:40.546 SQL [4251]: pgsql_db_connect() -- 14:06:40.550 DEBUG [4251]: Database connection successful -- 14:06:40.550 INFO [4251]: _SERVER found -- 14:06:40.550 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 14:06:40.550 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 14:06:40.550 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=jh5ltl2isa1rse8ppo6j3jsjh5mrk25t -- 14:06:40.550 INFO [4251]: QUERY_STRING = /assets/img/footer_1.jpg -- 14:06:40.550 INFO [4251]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:06:40.562 INFO [4251]: COREGRADE is stopping... -- 14:06:40.562 DEBUG [4251]: Closing database connection -- 14:06:40.562 SQL [4251]: pgsql_close() -- 14:07:03.346 INFO [4193]: COREGRADE is starting... -- 14:07:03.347 INFO [4193]: Version from config: 1.0 -- 14:07:03.347 DEBUG [4193]: Connecting to database... -- 14:07:03.347 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:07:03.347 SQL [4193]: pgsql_db_connect() -- 14:07:03.351 DEBUG [4193]: Database connection successful -- 14:07:03.351 INFO [4193]: _SERVER found -- 14:07:03.351 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 14:07:03.351 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 14:07:03.351 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=jh5ltl2isa1rse8ppo6j3jsjh5mrk25t; _gat_gtag_UA_54829827_2=1 -- 14:07:03.351 INFO [4193]: QUERY_STRING = -- 14:07:03.351 INFO [4193]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:07:03.389 INFO [4193]: COREGRADE is stopping... -- 14:07:03.389 DEBUG [4193]: Closing database connection -- 14:07:03.389 SQL [4193]: pgsql_close() -- 14:07:03.505 INFO [4193]: COREGRADE is starting... -- 14:07:03.505 INFO [4193]: Version from config: 1.0 -- 14:07:03.505 DEBUG [4193]: Connecting to database... -- 14:07:03.505 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:07:03.505 SQL [4193]: pgsql_db_connect() -- 14:07:03.509 DEBUG [4193]: Database connection successful -- 14:07:03.509 INFO [4193]: _SERVER found -- 14:07:03.509 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 14:07:03.509 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 14:07:03.509 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=jh5ltl2isa1rse8ppo6j3jsjh5mrk25t; _gat_gtag_UA_54829827_2=1 -- 14:07:03.509 INFO [4193]: QUERY_STRING = /assets/img/footer_1.jpg -- 14:07:03.509 INFO [4193]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:07:03.521 INFO [4193]: COREGRADE is stopping... -- 14:07:03.521 DEBUG [4193]: Closing database connection -- 14:07:03.521 SQL [4193]: pgsql_close() -- 14:07:07.812 INFO [4193]: COREGRADE is starting... -- 14:07:07.812 INFO [4193]: Version from config: 1.0 -- 14:07:07.812 DEBUG [4193]: Connecting to database... -- 14:07:07.812 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:07:07.812 SQL [4193]: pgsql_db_connect() -- 14:07:07.817 DEBUG [4193]: Database connection successful -- 14:07:07.817 INFO [4193]: _SERVER found -- 14:07:07.817 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 14:07:07.817 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 14:07:07.817 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=jh5ltl2isa1rse8ppo6j3jsjh5mrk25t; _gat_gtag_UA_54829827_2=1 -- 14:07:07.817 INFO [4193]: QUERY_STRING = /home/faq -- 14:07:07.817 INFO [4193]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:07:07.852 INFO [4193]: COREGRADE is stopping... -- 14:07:07.852 DEBUG [4193]: Closing database connection -- 14:07:07.852 SQL [4193]: pgsql_close() -- 14:07:08.016 INFO [4193]: COREGRADE is starting... -- 14:07:08.017 INFO [4193]: Version from config: 1.0 -- 14:07:08.017 DEBUG [4193]: Connecting to database... -- 14:07:08.017 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:07:08.017 SQL [4193]: pgsql_db_connect() -- 14:07:08.021 DEBUG [4193]: Database connection successful -- 14:07:08.021 INFO [4193]: _SERVER found -- 14:07:08.021 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 14:07:08.021 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 14:07:08.021 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=jh5ltl2isa1rse8ppo6j3jsjh5mrk25t; _gat_gtag_UA_54829827_2=1 -- 14:07:08.021 INFO [4193]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:07:08.021 INFO [4193]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:07:08.033 INFO [4193]: COREGRADE is stopping... -- 14:07:08.033 DEBUG [4193]: Closing database connection -- 14:07:08.033 SQL [4193]: pgsql_close() -- 14:18:45.492 INFO [5686]: COREGRADE is starting... -- 14:18:45.493 INFO [5686]: Version from config: 1.0 -- 14:18:45.493 DEBUG [5686]: Connecting to database... -- 14:18:45.493 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:18:45.493 SQL [5686]: pgsql_db_connect() -- 14:18:45.497 DEBUG [5686]: Database connection successful -- 14:18:45.497 INFO [5686]: _SERVER found -- 14:18:45.497 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 14:18:45.497 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 14:18:45.497 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=jh5ltl2isa1rse8ppo6j3jsjh5mrk25t; _gat_gtag_UA_54829827_2=1 -- 14:18:45.497 INFO [5686]: QUERY_STRING = -- 14:18:45.497 INFO [5686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:18:45.530 INFO [5686]: COREGRADE is stopping... -- 14:18:45.530 DEBUG [5686]: Closing database connection -- 14:18:45.530 SQL [5686]: pgsql_close() -- 14:18:45.611 INFO [5686]: COREGRADE is starting... -- 14:18:45.611 INFO [5686]: Version from config: 1.0 -- 14:18:45.611 DEBUG [5686]: Connecting to database... -- 14:18:45.611 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:18:45.611 SQL [5686]: pgsql_db_connect() -- 14:18:45.615 DEBUG [5686]: Database connection successful -- 14:18:45.615 INFO [5686]: _SERVER found -- 14:18:45.615 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 14:18:45.615 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 14:18:45.615 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; _gat_gtag_UA_54829827_2=1; ci_session=24mvipaf8h8ue2np91cnd101b665ul0a -- 14:18:45.615 INFO [5686]: QUERY_STRING = /assets/img/footer_1.jpg -- 14:18:45.615 INFO [5686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:18:45.626 INFO [5686]: COREGRADE is stopping... -- 14:18:45.626 DEBUG [5686]: Closing database connection -- 14:18:45.626 SQL [5686]: pgsql_close() -- 14:19:02.750 INFO [4834]: COREGRADE is starting... -- 14:19:02.751 INFO [4834]: Version from config: 1.0 -- 14:19:02.751 DEBUG [4834]: Connecting to database... -- 14:19:02.751 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:19:02.751 SQL [4834]: pgsql_db_connect() -- 14:19:02.755 DEBUG [4834]: Database connection successful -- 14:19:02.755 INFO [4834]: _SERVER found -- 14:19:02.755 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 14:19:02.755 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 14:19:02.755 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; _gat_gtag_UA_54829827_2=1; ci_session=24mvipaf8h8ue2np91cnd101b665ul0a -- 14:19:02.755 INFO [4834]: QUERY_STRING = /home/faq -- 14:19:02.755 INFO [4834]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:19:02.792 INFO [4834]: COREGRADE is stopping... -- 14:19:02.792 DEBUG [4834]: Closing database connection -- 14:19:02.792 SQL [4834]: pgsql_close() -- 14:19:03.001 INFO [4834]: COREGRADE is starting... -- 14:19:03.001 INFO [4834]: Version from config: 1.0 -- 14:19:03.001 DEBUG [4834]: Connecting to database... -- 14:19:03.001 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:19:03.001 SQL [4834]: pgsql_db_connect() -- 14:19:03.006 DEBUG [4834]: Database connection successful -- 14:19:03.006 INFO [4834]: _SERVER found -- 14:19:03.006 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 14:19:03.006 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 14:19:03.006 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; _gat_gtag_UA_54829827_2=1; ci_session=24mvipaf8h8ue2np91cnd101b665ul0a -- 14:19:03.006 INFO [4834]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:19:03.006 INFO [4834]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:19:03.017 INFO [4834]: COREGRADE is stopping... -- 14:19:03.017 DEBUG [4834]: Closing database connection -- 14:19:03.017 SQL [4834]: pgsql_close() -- 14:21:07.349 INFO [5685]: COREGRADE is starting... -- 14:21:07.349 INFO [5685]: Version from config: 1.0 -- 14:21:07.349 DEBUG [5685]: Connecting to database... -- 14:21:07.349 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:21:07.349 SQL [5685]: pgsql_db_connect() -- 14:21:07.353 DEBUG [5685]: Database connection successful -- 14:21:07.353 INFO [5685]: _SERVER found -- 14:21:07.353 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 14:21:07.353 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 14:21:07.353 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=24mvipaf8h8ue2np91cnd101b665ul0a -- 14:21:07.353 INFO [5685]: QUERY_STRING = -- 14:21:07.353 INFO [5685]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:21:07.385 INFO [5685]: COREGRADE is stopping... -- 14:21:07.385 DEBUG [5685]: Closing database connection -- 14:21:07.385 SQL [5685]: pgsql_close() -- 14:21:07.492 INFO [5685]: COREGRADE is starting... -- 14:21:07.493 INFO [5685]: Version from config: 1.0 -- 14:21:07.493 DEBUG [5685]: Connecting to database... -- 14:21:07.493 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:21:07.493 SQL [5685]: pgsql_db_connect() -- 14:21:07.497 DEBUG [5685]: Database connection successful -- 14:21:07.497 INFO [5685]: _SERVER found -- 14:21:07.497 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 14:21:07.497 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 14:21:07.497 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=24mvipaf8h8ue2np91cnd101b665ul0a -- 14:21:07.497 INFO [5685]: QUERY_STRING = /assets/img/footer_1.jpg -- 14:21:07.497 INFO [5685]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:21:07.508 INFO [5685]: COREGRADE is stopping... -- 14:21:07.508 DEBUG [5685]: Closing database connection -- 14:21:07.508 SQL [5685]: pgsql_close() -- 14:21:26.850 INFO [7885]: COREGRADE is starting... -- 14:21:26.850 INFO [7885]: Version from config: 1.0 -- 14:21:26.850 DEBUG [7885]: Connecting to database... -- 14:21:26.850 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:21:26.850 SQL [7885]: pgsql_db_connect() -- 14:21:26.854 DEBUG [7885]: Database connection successful -- 14:21:26.854 INFO [7885]: _SERVER found -- 14:21:26.854 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 14:21:26.854 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 14:21:26.854 INFO [7885]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=24mvipaf8h8ue2np91cnd101b665ul0a; _gat_gtag_UA_54829827_2=1 -- 14:21:26.854 INFO [7885]: QUERY_STRING = /auth -- 14:21:26.854 INFO [7885]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:21:26.889 INFO [7885]: COREGRADE is stopping... -- 14:21:26.889 DEBUG [7885]: Closing database connection -- 14:21:26.889 SQL [7885]: pgsql_close() -- 14:21:26.914 INFO [7885]: COREGRADE is starting... -- 14:21:26.914 INFO [7885]: Version from config: 1.0 -- 14:21:26.914 DEBUG [7885]: Connecting to database... -- 14:21:26.914 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:21:26.915 SQL [7885]: pgsql_db_connect() -- 14:21:26.922 DEBUG [7885]: Database connection successful -- 14:21:26.922 INFO [7885]: _SERVER found -- 14:21:26.922 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 14:21:26.922 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 14:21:26.922 INFO [7885]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=24mvipaf8h8ue2np91cnd101b665ul0a; _gat_gtag_UA_54829827_2=1 -- 14:21:26.922 INFO [7885]: QUERY_STRING = /welcome/viewLogin -- 14:21:26.922 INFO [7885]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:21:26.953 INFO [7885]: COREGRADE is stopping... -- 14:21:26.953 DEBUG [7885]: Closing database connection -- 14:21:26.953 SQL [7885]: pgsql_close() -- 14:21:56.768 INFO [6508]: COREGRADE is starting... -- 14:21:56.768 INFO [6508]: Version from config: 1.0 -- 14:21:56.768 DEBUG [6508]: Connecting to database... -- 14:21:56.768 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:21:56.768 SQL [6508]: pgsql_db_connect() -- 14:21:56.772 DEBUG [6508]: Database connection successful -- 14:21:56.772 INFO [6508]: _SERVER found -- 14:21:56.772 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 14:21:56.772 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 14:21:56.772 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=930aueb97ttrjt7qi25ibac5v3vfgo2a -- 14:21:56.772 INFO [6508]: QUERY_STRING = -- 14:21:56.772 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:21:56.807 INFO [6508]: COREGRADE is stopping... -- 14:21:56.807 DEBUG [6508]: Closing database connection -- 14:21:56.807 SQL [6508]: pgsql_close() -- 14:21:58.368 INFO [6508]: COREGRADE is starting... -- 14:21:58.368 INFO [6508]: Version from config: 1.0 -- 14:21:58.368 DEBUG [6508]: Connecting to database... -- 14:21:58.368 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:21:58.368 SQL [6508]: pgsql_db_connect() -- 14:21:58.372 DEBUG [6508]: Database connection successful -- 14:21:58.372 INFO [6508]: _SERVER found -- 14:21:58.372 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 14:21:58.372 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 14:21:58.372 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=1lioijucfu8gdc0do7u4d7tnlm3k9vn6 -- 14:21:58.372 INFO [6508]: QUERY_STRING = /assets/img/footer_1.jpg -- 14:21:58.372 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:21:58.383 INFO [6508]: COREGRADE is stopping... -- 14:21:58.383 DEBUG [6508]: Closing database connection -- 14:21:58.383 SQL [6508]: pgsql_close() -- 14:22:03.727 INFO [5687]: COREGRADE is starting... -- 14:22:03.727 INFO [5687]: Version from config: 1.0 -- 14:22:03.727 DEBUG [5687]: Connecting to database... -- 14:22:03.727 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:22:03.727 SQL [5687]: pgsql_db_connect() -- 14:22:03.732 INFO [7377]: COREGRADE is starting... -- 14:22:03.732 INFO [7377]: Version from config: 1.0 -- 14:22:03.732 DEBUG [7377]: Connecting to database... -- 14:22:03.732 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:22:03.732 SQL [7377]: pgsql_db_connect() -- 14:22:03.732 DEBUG [5687]: Database connection successful -- 14:22:03.732 INFO [5687]: _SERVER found -- 14:22:03.732 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 14:22:03.732 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 14:22:03.732 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=1lioijucfu8gdc0do7u4d7tnlm3k9vn6; _gat_gtag_UA_54829827_2=1 -- 14:22:03.732 INFO [5687]: QUERY_STRING = /auth -- 14:22:03.732 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:22:03.765 INFO [5687]: COREGRADE is stopping... -- 14:22:03.765 DEBUG [5687]: Closing database connection -- 14:22:03.765 SQL [5687]: pgsql_close() -- 14:22:03.736 DEBUG [7377]: Database connection successful -- 14:22:03.736 INFO [7377]: _SERVER found -- 14:22:03.736 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 14:22:03.736 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 14:22:03.736 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=1lioijucfu8gdc0do7u4d7tnlm3k9vn6; _gat_gtag_UA_54829827_2=1 -- 14:22:03.736 INFO [7377]: QUERY_STRING = /welcome/viewLogin -- 14:22:03.736 INFO [7377]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:22:03.767 INFO [7377]: COREGRADE is stopping... -- 14:22:03.767 DEBUG [7377]: Closing database connection -- 14:22:03.767 SQL [7377]: pgsql_close() -- 14:22:03.808 INFO [7377]: COREGRADE is starting... -- 14:22:03.808 INFO [7377]: Version from config: 1.0 -- 14:22:03.808 DEBUG [7377]: Connecting to database... -- 14:22:03.808 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:22:03.808 SQL [7377]: pgsql_db_connect() -- 14:22:03.812 DEBUG [7377]: Database connection successful -- 14:22:03.812 INFO [7377]: _SERVER found -- 14:22:03.812 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 14:22:03.812 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 14:22:03.812 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=1lioijucfu8gdc0do7u4d7tnlm3k9vn6; _gat_gtag_UA_54829827_2=1 -- 14:22:03.812 INFO [7377]: QUERY_STRING = /auth/index -- 14:22:03.812 INFO [7377]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:22:03.844 INFO [7377]: COREGRADE is stopping... -- 14:22:03.844 DEBUG [7377]: Closing database connection -- 14:22:03.844 SQL [7377]: pgsql_close() -- 14:22:04.193 INFO [7377]: COREGRADE is starting... -- 14:22:04.194 INFO [7377]: Version from config: 1.0 -- 14:22:04.194 DEBUG [7377]: Connecting to database... -- 14:22:04.194 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:22:04.194 SQL [7377]: pgsql_db_connect() -- 14:22:04.198 DEBUG [7377]: Database connection successful -- 14:22:04.198 INFO [7377]: _SERVER found -- 14:22:04.198 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 14:22:04.198 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 14:22:04.198 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=1lioijucfu8gdc0do7u4d7tnlm3k9vn6; _gat_gtag_UA_54829827_2=1 -- 14:22:04.198 INFO [7377]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:22:04.198 INFO [7377]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:22:04.209 INFO [7377]: COREGRADE is stopping... -- 14:22:04.209 DEBUG [7377]: Closing database connection -- 14:22:04.209 SQL [7377]: pgsql_close() -- 14:22:06.355 INFO [7377]: COREGRADE is starting... -- 14:22:06.355 INFO [7377]: Version from config: 1.0 -- 14:22:06.355 DEBUG [7377]: Connecting to database... -- 14:22:06.355 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:22:06.355 SQL [7377]: pgsql_db_connect() -- 14:22:06.390 INFO [7377]: COREGRADE is starting... -- 14:22:06.391 INFO [7377]: Version from config: 1.0 -- 14:22:06.391 DEBUG [7377]: Connecting to database... -- 14:22:06.391 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:22:06.391 SQL [7377]: pgsql_db_connect() -- 14:22:06.395 DEBUG [7377]: Database connection successful -- 14:22:06.395 INFO [7377]: _SERVER found -- 14:22:06.395 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 14:22:06.395 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 14:22:06.395 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=1lioijucfu8gdc0do7u4d7tnlm3k9vn6; _gat_gtag_UA_54829827_2=1 -- 14:22:06.395 INFO [7377]: QUERY_STRING = -- 14:22:06.395 INFO [7377]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:22:06.395 INFO [7377]: SystemStatus()09-09-********~************ -- 14:22:06.395 INFO [7377]: long coregrade_api_main(CVars in, CVars &out) -- 14:22:06.395 INFO [7377]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 14:22:06.395 INFO [7377]: account calls -- 14:22:06.395 INFO [7377]: account_calls() -- 14:22:06.395 INFO [7377]: LoginCoreGradeAccount() -- 14:22:06.395 FLOG_MAX [7377]: REQ_STRING(username) -- 14:22:06.395 FLOG_MAX [7377]: REQ_STRING(password) -- 14:22:06.395 FLOG_MAX [7377]: REQ_STRING(sessionid) -- 14:22:06.395 FLOG_MAX [7377]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:22:06.395 SQL [7377]: pgsql_query() -- 14:22:06.395 SQL [7377]: About to run query: -- 14:22:06.395 SQL [7377]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678') -- 14:22:06.399 SQL [7377]: Found rows: 1 -- 14:22:06.399 FLOG_MAX [7377]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678')) num_cols=16 -- 14:22:06.399 INFO [7377]: long SessionCheck(long uid, const char *sessionid, int create ) -- 14:22:06.399 SQL [7377]: pgsql_exec() -- 14:22:06.399 SQL [7377]: About to run query: -- 14:22:06.399 SQL [7377]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 14:22:06.401 SQL [7377]: PQcmdTuples: 1 -- 14:22:06.401 SQL [7377]: Affected rows: 1 -- 14:22:06.401 SQL [7377]: pgsql_exec() -- 14:22:06.401 SQL [7377]: About to run query: -- 14:22:06.401 SQL [7377]: DELETE FROM members_session WHERE member_id=7 -- 14:22:06.401 SQL [7377]: PQcmdTuples: 0 -- 14:22:06.401 SQL [7377]: Affected rows: 0 -- 14:22:06.401 SQL [7377]: pgsql_query() -- 14:22:06.401 SQL [7377]: About to run query: -- 14:22:06.401 SQL [7377]: SELECT * FROM members_session WHERE member_id=7 AND session<>'F59340CA65BD768E22F9D658740904D6' -- 14:22:06.402 SQL [7377]: Found rows: 0 -- 14:22:06.402 SQL [7377]: Found rows: 0 -- 14:22:06.402 FLOG_MAX [7377]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:22:06.402 SQL [7377]: pgsql_query() -- 14:22:06.402 SQL [7377]: About to run query: -- 14:22:06.402 SQL [7377]: SELECT * FROM members_session WHERE member_id=7 AND session='F59340CA65BD768E22F9D658740904D6' -- 14:22:06.402 SQL [7377]: Found rows: 0 -- 14:22:06.402 SQL [7377]: Found rows: 0 -- 14:22:06.402 FLOG_MAX [7377]: insert_db_record() -- 14:22:06.402 SQL [7377]: pgsql_exec() -- 14:22:06.402 SQL [7377]: About to run query: -- 14:22:06.402 SQL [7377]: INSERT INTO members_session (member_id,session) VALUES ('7','F59340CA65BD768E22F9D658740904D6') -- 14:22:06.404 SQL [7377]: PQcmdTuples: 1 -- 14:22:06.404 SQL [7377]: Affected rows: 1 -- 14:22:06.404 FLOG_MAX [7377]: SELECT currval('members_session_id_seq') -- 14:22:06.404 SQL [7377]: pgsql_query() -- 14:22:06.404 SQL [7377]: About to run query: -- 14:22:06.404 SQL [7377]: SELECT currval('members_session_id_seq') -- 14:22:06.404 SQL [7377]: Found rows: 1 -- 14:22:06.404 INFO [7377]: CreateDefaultPage() -- 14:22:06.404 FLOG_MAX [7377]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:22:06.404 SQL [7377]: pgsql_query() -- 14:22:06.404 SQL [7377]: About to run query: -- 14:22:06.404 SQL [7377]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 14:22:06.405 SQL [7377]: Found rows: 1 -- 14:22:06.405 FLOG_MAX [7377]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 14:22:06.405 SQL [7377]: pgsql_query() -- 14:22:06.405 SQL [7377]: About to run query: -- 14:22:06.405 SQL [7377]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 14:22:06.405 SQL [7377]: Found rows: 1 -- 14:22:06.405 INFO [7377]: /CreateDefaultPage() -- 14:22:06.405 INFO [7377]: /LoginCoreGradeAccount() -- 14:22:06.405 INFO [7377]: RET: added=2020-02-05 09:42:12.816064 -- 14:22:06.405 INFO [7377]: RET: email=tokslaw@chiefsoft.com -- 14:22:06.405 INFO [7377]: RET: firstname=Tokunbo -- 14:22:06.405 INFO [7377]: RET: folder=5D06B187B1E2285A63AD1D0ECB670D98 -- 14:22:06.405 INFO [7377]: RET: id=7 -- 14:22:06.405 INFO [7377]: RET: last_login= -- 14:22:06.405 INFO [7377]: RET: lastname=Lawal -- 14:22:06.405 INFO [7377]: RET: loc=192.168.1.13 -- 14:22:06.405 INFO [7377]: RET: member_id=7 -- 14:22:06.405 INFO [7377]: RET: password=25d55ad283aa400af464c76d713c07ad -- 14:22:06.405 INFO [7377]: RET: phone= -- 14:22:06.405 INFO [7377]: RET: pid= -- 14:22:06.405 INFO [7377]: RET: result=YES I GET TO BACK END -- 14:22:06.405 INFO [7377]: RET: sessionid=F59340CA65BD768E22F9D658740904D6 -- 14:22:06.405 INFO [7377]: RET: status=1 -- 14:22:06.405 INFO [7377]: RET: stauts=OK -- 14:22:06.405 INFO [7377]: RET: username=tokslaw@chiefsoft.com -- 14:22:06.405 INFO [7377]: RET: verified= -- 14:22:06.407 INFO [7377]: COREGRADE is stopping... -- 14:22:06.407 DEBUG [7377]: Closing database connection -- 14:22:06.407 SQL [7377]: pgsql_close() -- 14:22:06.360 DEBUG [7377]: Database connection successful -- 14:22:06.360 INFO [7377]: _SERVER found -- 14:22:06.360 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 14:22:06.360 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 14:22:06.360 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=1lioijucfu8gdc0do7u4d7tnlm3k9vn6; _gat_gtag_UA_54829827_2=1 -- 14:22:06.360 INFO [7377]: QUERY_STRING = /auth -- 14:22:06.360 INFO [7377]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:22:06.407 INFO [7377]: COREGRADE is stopping... -- 14:22:06.407 DEBUG [7377]: Closing database connection -- 14:22:06.407 SQL [7377]: pgsql_close() -- 14:22:06.452 INFO [7377]: COREGRADE is starting... -- 14:22:06.453 INFO [7377]: Version from config: 1.0 -- 14:22:06.453 DEBUG [7377]: Connecting to database... -- 14:22:06.453 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:22:06.453 SQL [7377]: pgsql_db_connect() -- 14:22:06.457 DEBUG [7377]: Database connection successful -- 14:22:06.457 INFO [7377]: _SERVER found -- 14:22:06.457 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 14:22:06.457 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 14:22:06.457 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=1lioijucfu8gdc0do7u4d7tnlm3k9vn6; _gat_gtag_UA_54829827_2=1 -- 14:22:06.457 INFO [7377]: QUERY_STRING = /member/index -- 14:22:06.457 INFO [7377]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:22:06.497 INFO [7377]: COREGRADE is stopping... -- 14:22:06.497 DEBUG [7377]: Closing database connection -- 14:22:06.497 SQL [7377]: pgsql_close() -- 14:22:07.259 INFO [5687]: COREGRADE is starting... -- 14:22:07.259 INFO [5687]: Version from config: 1.0 -- 14:22:07.259 DEBUG [5687]: Connecting to database... -- 14:22:07.259 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:22:07.259 SQL [5687]: pgsql_db_connect() -- 14:22:07.263 DEBUG [5687]: Database connection successful -- 14:22:07.263 INFO [5687]: _SERVER found -- 14:22:07.263 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 14:22:07.263 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 14:22:07.263 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=1lioijucfu8gdc0do7u4d7tnlm3k9vn6; _gat_gtag_UA_54829827_2=1 -- 14:22:07.263 INFO [5687]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:22:07.263 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:22:07.274 INFO [5687]: COREGRADE is stopping... -- 14:22:07.274 DEBUG [5687]: Closing database connection -- 14:22:07.274 SQL [5687]: pgsql_close() -- 14:22:20.328 INFO [5686]: COREGRADE is starting... -- 14:22:20.328 INFO [5686]: Version from config: 1.0 -- 14:22:20.328 DEBUG [5686]: Connecting to database... -- 14:22:20.328 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:22:20.328 SQL [5686]: pgsql_db_connect() -- 14:22:20.332 DEBUG [5686]: Database connection successful -- 14:22:20.332 INFO [5686]: _SERVER found -- 14:22:20.332 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 14:22:20.332 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 14:22:20.332 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=1lioijucfu8gdc0do7u4d7tnlm3k9vn6; _gat_gtag_UA_54829827_2=1 -- 14:22:20.332 INFO [5686]: QUERY_STRING = /member/page -- 14:22:20.332 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:22:20.375 INFO [5686]: COREGRADE is stopping... -- 14:22:20.375 DEBUG [5686]: Closing database connection -- 14:22:20.375 SQL [5686]: pgsql_close() -- 14:22:24.524 INFO [7885]: COREGRADE is starting... -- 14:22:24.524 INFO [7885]: Version from config: 1.0 -- 14:22:24.524 DEBUG [7885]: Connecting to database... -- 14:22:24.524 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:22:24.524 SQL [7885]: pgsql_db_connect() -- 14:22:24.529 DEBUG [7885]: Database connection successful -- 14:22:24.529 INFO [7885]: _SERVER found -- 14:22:24.529 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 14:22:24.529 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 14:22:24.529 INFO [7885]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=24mvipaf8h8ue2np91cnd101b665ul0a -- 14:22:24.529 INFO [7885]: QUERY_STRING = /auth -- 14:22:24.529 INFO [7885]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:22:24.560 INFO [7885]: COREGRADE is stopping... -- 14:22:24.560 DEBUG [7885]: Closing database connection -- 14:22:24.560 SQL [7885]: pgsql_close() -- 14:22:24.723 INFO [7885]: COREGRADE is starting... -- 14:22:24.723 INFO [7885]: Version from config: 1.0 -- 14:22:24.723 DEBUG [7885]: Connecting to database... -- 14:22:24.723 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:22:24.723 SQL [7885]: pgsql_db_connect() -- 14:22:24.727 DEBUG [7885]: Database connection successful -- 14:22:24.727 INFO [7885]: _SERVER found -- 14:22:24.727 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 14:22:24.727 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 14:22:24.727 INFO [7885]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=24mvipaf8h8ue2np91cnd101b665ul0a -- 14:22:24.727 INFO [7885]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:22:24.727 INFO [7885]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:22:24.738 INFO [7885]: COREGRADE is stopping... -- 14:22:24.738 DEBUG [7885]: Closing database connection -- 14:22:24.738 SQL [7885]: pgsql_close() -- 14:22:41.912 INFO [6508]: COREGRADE is starting... -- 14:22:41.912 INFO [6508]: Version from config: 1.0 -- 14:22:41.912 DEBUG [6508]: Connecting to database... -- 14:22:41.912 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:22:41.912 SQL [6508]: pgsql_db_connect() -- 14:22:41.917 DEBUG [6508]: Database connection successful -- 14:22:41.917 INFO [6508]: _SERVER found -- 14:22:41.917 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 14:22:41.917 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 14:22:41.917 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=1lioijucfu8gdc0do7u4d7tnlm3k9vn6; _gat_gtag_UA_54829827_2=1 -- 14:22:41.917 INFO [6508]: QUERY_STRING = /member/viewCardAddAction -- 14:22:41.917 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:22:41.948 INFO [6508]: COREGRADE is stopping... -- 14:22:41.948 DEBUG [6508]: Closing database connection -- 14:22:41.948 SQL [6508]: pgsql_close() -- 14:22:43.900 INFO [6508]: COREGRADE is starting... -- 14:22:43.900 INFO [6508]: Version from config: 1.0 -- 14:22:43.900 DEBUG [6508]: Connecting to database... -- 14:22:43.900 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:22:43.900 SQL [6508]: pgsql_db_connect() -- 14:22:43.904 DEBUG [6508]: Database connection successful -- 14:22:43.904 INFO [6508]: _SERVER found -- 14:22:43.904 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 14:22:43.904 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 14:22:43.904 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=1lioijucfu8gdc0do7u4d7tnlm3k9vn6; _gat_gtag_UA_54829827_2=1 -- 14:22:43.904 INFO [6508]: QUERY_STRING = /member/viewCardAddAction -- 14:22:43.904 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:22:43.936 INFO [6508]: COREGRADE is stopping... -- 14:22:43.936 DEBUG [6508]: Closing database connection -- 14:22:43.936 SQL [6508]: pgsql_close() -- 14:22:45.140 INFO [6508]: COREGRADE is starting... -- 14:22:45.141 INFO [6508]: Version from config: 1.0 -- 14:22:45.141 DEBUG [6508]: Connecting to database... -- 14:22:45.141 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:22:45.141 SQL [6508]: pgsql_db_connect() -- 14:22:45.145 DEBUG [6508]: Database connection successful -- 14:22:45.145 INFO [6508]: _SERVER found -- 14:22:45.145 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 14:22:45.145 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 14:22:45.145 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=1lioijucfu8gdc0do7u4d7tnlm3k9vn6; _gat_gtag_UA_54829827_2=1 -- 14:22:45.145 INFO [6508]: QUERY_STRING = /member/viewCardAddAction -- 14:22:45.145 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:22:45.176 INFO [6508]: COREGRADE is stopping... -- 14:22:45.176 DEBUG [6508]: Closing database connection -- 14:22:45.176 SQL [6508]: pgsql_close() -- 14:22:46.793 INFO [6508]: COREGRADE is starting... -- 14:22:46.793 INFO [6508]: Version from config: 1.0 -- 14:22:46.793 DEBUG [6508]: Connecting to database... -- 14:22:46.793 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:22:46.793 SQL [6508]: pgsql_db_connect() -- 14:22:46.797 DEBUG [6508]: Database connection successful -- 14:22:46.797 INFO [6508]: _SERVER found -- 14:22:46.797 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 14:22:46.797 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 14:22:46.797 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=1lioijucfu8gdc0do7u4d7tnlm3k9vn6; _gat_gtag_UA_54829827_2=1 -- 14:22:46.797 INFO [6508]: QUERY_STRING = /member/viewCardAddAction -- 14:22:46.797 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:22:46.828 INFO [6508]: COREGRADE is stopping... -- 14:22:46.828 DEBUG [6508]: Closing database connection -- 14:22:46.828 SQL [6508]: pgsql_close() -- 14:22:47.904 INFO [6508]: COREGRADE is starting... -- 14:22:47.904 INFO [6508]: Version from config: 1.0 -- 14:22:47.904 DEBUG [6508]: Connecting to database... -- 14:22:47.905 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:22:47.905 SQL [6508]: pgsql_db_connect() -- 14:22:47.909 DEBUG [6508]: Database connection successful -- 14:22:47.909 INFO [6508]: _SERVER found -- 14:22:47.909 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 14:22:47.909 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 14:22:47.909 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=1lioijucfu8gdc0do7u4d7tnlm3k9vn6; _gat_gtag_UA_54829827_2=1 -- 14:22:47.909 INFO [6508]: QUERY_STRING = /member/viewCardAddAction -- 14:22:47.909 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:22:47.940 INFO [6508]: COREGRADE is stopping... -- 14:22:47.940 DEBUG [6508]: Closing database connection -- 14:22:47.940 SQL [6508]: pgsql_close() -- 14:22:48.949 INFO [6508]: COREGRADE is starting... -- 14:22:48.949 INFO [6508]: Version from config: 1.0 -- 14:22:48.949 DEBUG [6508]: Connecting to database... -- 14:22:48.949 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:22:48.949 SQL [6508]: pgsql_db_connect() -- 14:22:48.953 DEBUG [6508]: Database connection successful -- 14:22:48.953 INFO [6508]: _SERVER found -- 14:22:48.953 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 14:22:48.953 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 14:22:48.953 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=1lioijucfu8gdc0do7u4d7tnlm3k9vn6; _gat_gtag_UA_54829827_2=1 -- 14:22:48.953 INFO [6508]: QUERY_STRING = /member/viewCardAddAction -- 14:22:48.953 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:22:48.984 INFO [6508]: COREGRADE is stopping... -- 14:22:48.984 DEBUG [6508]: Closing database connection -- 14:22:48.984 SQL [6508]: pgsql_close() -- 14:22:50.489 INFO [6508]: COREGRADE is starting... -- 14:22:50.489 INFO [6508]: Version from config: 1.0 -- 14:22:50.489 DEBUG [6508]: Connecting to database... -- 14:22:50.489 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:22:50.489 SQL [6508]: pgsql_db_connect() -- 14:22:50.494 DEBUG [6508]: Database connection successful -- 14:22:50.494 INFO [6508]: _SERVER found -- 14:22:50.494 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 14:22:50.494 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 14:22:50.494 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=1lioijucfu8gdc0do7u4d7tnlm3k9vn6; _gat_gtag_UA_54829827_2=1 -- 14:22:50.494 INFO [6508]: QUERY_STRING = /member/viewCardAddAction -- 14:22:50.494 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:22:50.525 INFO [6508]: COREGRADE is stopping... -- 14:22:50.525 DEBUG [6508]: Closing database connection -- 14:22:50.525 SQL [6508]: pgsql_close() -- 14:22:51.673 INFO [6508]: COREGRADE is starting... -- 14:22:51.673 INFO [6508]: Version from config: 1.0 -- 14:22:51.673 DEBUG [6508]: Connecting to database... -- 14:22:51.673 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:22:51.673 SQL [6508]: pgsql_db_connect() -- 14:22:51.677 DEBUG [6508]: Database connection successful -- 14:22:51.677 INFO [6508]: _SERVER found -- 14:22:51.677 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 14:22:51.677 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 14:22:51.677 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=1lioijucfu8gdc0do7u4d7tnlm3k9vn6; _gat_gtag_UA_54829827_2=1 -- 14:22:51.677 INFO [6508]: QUERY_STRING = /member/viewCardAddAction -- 14:22:51.677 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:22:51.708 INFO [6508]: COREGRADE is stopping... -- 14:22:51.708 DEBUG [6508]: Closing database connection -- 14:22:51.708 SQL [6508]: pgsql_close() -- 14:22:52.943 INFO [6508]: COREGRADE is starting... -- 14:22:52.943 INFO [6508]: Version from config: 1.0 -- 14:22:52.943 DEBUG [6508]: Connecting to database... -- 14:22:52.943 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:22:52.943 SQL [6508]: pgsql_db_connect() -- 14:22:52.948 DEBUG [6508]: Database connection successful -- 14:22:52.948 INFO [6508]: _SERVER found -- 14:22:52.948 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 14:22:52.948 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 14:22:52.948 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=1lioijucfu8gdc0do7u4d7tnlm3k9vn6; _gat_gtag_UA_54829827_2=1 -- 14:22:52.948 INFO [6508]: QUERY_STRING = /member/viewCardAddAction -- 14:22:52.948 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:22:52.979 INFO [6508]: COREGRADE is stopping... -- 14:22:52.979 DEBUG [6508]: Closing database connection -- 14:22:52.979 SQL [6508]: pgsql_close() -- 14:28:39.316 INFO [4251]: COREGRADE is starting... -- 14:28:39.317 INFO [4251]: Version from config: 1.0 -- 14:28:39.317 DEBUG [4251]: Connecting to database... -- 14:28:39.317 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:28:39.317 SQL [4251]: pgsql_db_connect() -- 14:28:39.321 DEBUG [4251]: Database connection successful -- 14:28:39.321 INFO [4251]: _SERVER found -- 14:28:39.321 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 14:28:39.321 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 14:28:39.321 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=1lioijucfu8gdc0do7u4d7tnlm3k9vn6 -- 14:28:39.321 INFO [4251]: QUERY_STRING = /member/viewCardAddAction -- 14:28:39.321 INFO [4251]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:28:39.355 INFO [4251]: COREGRADE is stopping... -- 14:28:39.355 DEBUG [4251]: Closing database connection -- 14:28:39.355 SQL [4251]: pgsql_close() -- 14:30:56.583 INFO [4193]: COREGRADE is starting... -- 14:30:56.583 INFO [4193]: Version from config: 1.0 -- 14:30:56.583 DEBUG [4193]: Connecting to database... -- 14:30:56.583 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:56.583 SQL [4193]: pgsql_db_connect() -- 14:30:56.625 INFO [4193]: COREGRADE is starting... -- 14:30:56.625 INFO [4193]: Version from config: 1.0 -- 14:30:56.625 DEBUG [4193]: Connecting to database... -- 14:30:56.625 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:56.625 SQL [4193]: pgsql_db_connect() -- 14:30:56.629 DEBUG [4193]: Database connection successful -- 14:30:56.629 INFO [4193]: _SERVER found -- 14:30:56.629 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 14:30:56.629 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 14:30:56.629 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=24mvipaf8h8ue2np91cnd101b665ul0a -- 14:30:56.629 INFO [4193]: QUERY_STRING = -- 14:30:56.629 INFO [4193]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:30:56.630 INFO [4193]: SystemStatus()09-09-********~************ -- 14:30:56.630 INFO [4193]: long coregrade_api_main(CVars in, CVars &out) -- 14:30:56.630 INFO [4193]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 14:30:56.630 INFO [4193]: account calls -- 14:30:56.630 INFO [4193]: account_calls() -- 14:30:56.630 INFO [4193]: LoginCoreGradeAccount() -- 14:30:56.630 FLOG_MAX [4193]: REQ_STRING(username) -- 14:30:56.630 FLOG_MAX [4193]: REQ_STRING(password) -- 14:30:56.630 FLOG_MAX [4193]: REQ_STRING(sessionid) -- 14:30:56.630 FLOG_MAX [4193]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:30:56.630 SQL [4193]: pgsql_query() -- 14:30:56.630 SQL [4193]: About to run query: -- 14:30:56.630 SQL [4193]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678') -- 14:30:56.633 SQL [4193]: Found rows: 1 -- 14:30:56.633 FLOG_MAX [4193]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678')) num_cols=16 -- 14:30:56.633 INFO [4193]: long SessionCheck(long uid, const char *sessionid, int create ) -- 14:30:56.633 SQL [4193]: pgsql_exec() -- 14:30:56.633 SQL [4193]: About to run query: -- 14:30:56.633 SQL [4193]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 14:30:56.634 SQL [4193]: PQcmdTuples: 0 -- 14:30:56.634 SQL [4193]: Affected rows: 0 -- 14:30:56.634 SQL [4193]: pgsql_exec() -- 14:30:56.634 SQL [4193]: About to run query: -- 14:30:56.634 SQL [4193]: DELETE FROM members_session WHERE member_id=7 -- 14:30:56.635 SQL [4193]: PQcmdTuples: 1 -- 14:30:56.636 SQL [4193]: Affected rows: 1 -- 14:30:56.636 SQL [4193]: pgsql_query() -- 14:30:56.636 SQL [4193]: About to run query: -- 14:30:56.636 SQL [4193]: SELECT * FROM members_session WHERE member_id=7 AND session<>'54303023BB64A21BE3213EBDD52FD9BE' -- 14:30:56.636 SQL [4193]: Found rows: 0 -- 14:30:56.636 SQL [4193]: Found rows: 0 -- 14:30:56.636 FLOG_MAX [4193]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:30:56.636 SQL [4193]: pgsql_query() -- 14:30:56.636 SQL [4193]: About to run query: -- 14:30:56.636 SQL [4193]: SELECT * FROM members_session WHERE member_id=7 AND session='54303023BB64A21BE3213EBDD52FD9BE' -- 14:30:56.637 SQL [4193]: Found rows: 0 -- 14:30:56.637 SQL [4193]: Found rows: 0 -- 14:30:56.637 FLOG_MAX [4193]: insert_db_record() -- 14:30:56.637 SQL [4193]: pgsql_exec() -- 14:30:56.637 SQL [4193]: About to run query: -- 14:30:56.637 SQL [4193]: INSERT INTO members_session (member_id,session) VALUES ('7','54303023BB64A21BE3213EBDD52FD9BE') -- 14:30:56.638 SQL [4193]: PQcmdTuples: 1 -- 14:30:56.638 SQL [4193]: Affected rows: 1 -- 14:30:56.638 FLOG_MAX [4193]: SELECT currval('members_session_id_seq') -- 14:30:56.638 SQL [4193]: pgsql_query() -- 14:30:56.638 SQL [4193]: About to run query: -- 14:30:56.638 SQL [4193]: SELECT currval('members_session_id_seq') -- 14:30:56.639 SQL [4193]: Found rows: 1 -- 14:30:56.639 INFO [4193]: CreateDefaultPage() -- 14:30:56.639 FLOG_MAX [4193]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:30:56.639 SQL [4193]: pgsql_query() -- 14:30:56.639 SQL [4193]: About to run query: -- 14:30:56.639 SQL [4193]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 14:30:56.639 SQL [4193]: Found rows: 1 -- 14:30:56.639 FLOG_MAX [4193]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 14:30:56.639 SQL [4193]: pgsql_query() -- 14:30:56.639 SQL [4193]: About to run query: -- 14:30:56.639 SQL [4193]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 14:30:56.639 SQL [4193]: Found rows: 1 -- 14:30:56.639 INFO [4193]: /CreateDefaultPage() -- 14:30:56.639 INFO [4193]: /LoginCoreGradeAccount() -- 14:30:56.639 INFO [4193]: RET: added=2020-02-05 09:42:12.816064 -- 14:30:56.639 INFO [4193]: RET: email=tokslaw@chiefsoft.com -- 14:30:56.639 INFO [4193]: RET: firstname=Tokunbo -- 14:30:56.639 INFO [4193]: RET: folder=5D06B187B1E2285A63AD1D0ECB670D98 -- 14:30:56.639 INFO [4193]: RET: id=7 -- 14:30:56.639 INFO [4193]: RET: last_login= -- 14:30:56.639 INFO [4193]: RET: lastname=Lawal -- 14:30:56.639 INFO [4193]: RET: loc=192.168.1.13 -- 14:30:56.639 INFO [4193]: RET: member_id=7 -- 14:30:56.639 INFO [4193]: RET: password=25d55ad283aa400af464c76d713c07ad -- 14:30:56.639 INFO [4193]: RET: phone= -- 14:30:56.640 INFO [4193]: RET: pid= -- 14:30:56.640 INFO [4193]: RET: result=YES I GET TO BACK END -- 14:30:56.640 INFO [4193]: RET: sessionid=54303023BB64A21BE3213EBDD52FD9BE -- 14:30:56.640 INFO [4193]: RET: status=1 -- 14:30:56.640 INFO [4193]: RET: stauts=OK -- 14:30:56.640 INFO [4193]: RET: username=tokslaw@chiefsoft.com -- 14:30:56.640 INFO [4193]: RET: verified= -- 14:30:56.641 INFO [4193]: COREGRADE is stopping... -- 14:30:56.641 DEBUG [4193]: Closing database connection -- 14:30:56.641 SQL [4193]: pgsql_close() -- 14:30:56.588 DEBUG [4193]: Database connection successful -- 14:30:56.588 INFO [4193]: _SERVER found -- 14:30:56.588 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 14:30:56.588 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 14:30:56.588 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=24mvipaf8h8ue2np91cnd101b665ul0a -- 14:30:56.588 INFO [4193]: QUERY_STRING = /auth -- 14:30:56.588 INFO [4193]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:30:56.642 INFO [4193]: COREGRADE is stopping... -- 14:30:56.642 DEBUG [4193]: Closing database connection -- 14:30:56.642 SQL [4193]: pgsql_close() -- 14:30:56.684 INFO [4193]: COREGRADE is starting... -- 14:30:56.684 INFO [4193]: Version from config: 1.0 -- 14:30:56.684 DEBUG [4193]: Connecting to database... -- 14:30:56.684 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:56.684 SQL [4193]: pgsql_db_connect() -- 14:30:56.689 DEBUG [4193]: Database connection successful -- 14:30:56.689 INFO [4193]: _SERVER found -- 14:30:56.689 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 14:30:56.689 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 14:30:56.689 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=kkf6dherk1jf1ta9p6n8m0amp63vtuk6 -- 14:30:56.689 INFO [4193]: QUERY_STRING = /member/index -- 14:30:56.689 INFO [4193]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:30:56.731 INFO [4193]: COREGRADE is stopping... -- 14:30:56.731 DEBUG [4193]: Closing database connection -- 14:30:56.731 SQL [4193]: pgsql_close() -- 14:30:57.158 INFO [4193]: COREGRADE is starting... -- 14:30:57.158 INFO [4193]: Version from config: 1.0 -- 14:30:57.158 DEBUG [4193]: Connecting to database... -- 14:30:57.159 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:57.159 SQL [4193]: pgsql_db_connect() -- 14:30:57.163 DEBUG [4193]: Database connection successful -- 14:30:57.163 INFO [4193]: _SERVER found -- 14:30:57.163 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 14:30:57.163 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 14:30:57.163 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=kkf6dherk1jf1ta9p6n8m0amp63vtuk6 -- 14:30:57.163 INFO [4193]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:30:57.163 INFO [4193]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:30:57.175 INFO [4193]: COREGRADE is stopping... -- 14:30:57.175 DEBUG [4193]: Closing database connection -- 14:30:57.175 SQL [4193]: pgsql_close() -- 14:31:00.269 INFO [4193]: COREGRADE is starting... -- 14:31:00.270 INFO [4193]: Version from config: 1.0 -- 14:31:00.270 DEBUG [4193]: Connecting to database... -- 14:31:00.270 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:31:00.270 SQL [4193]: pgsql_db_connect() -- 14:31:00.274 DEBUG [4193]: Database connection successful -- 14:31:00.274 INFO [4193]: _SERVER found -- 14:31:00.274 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 14:31:00.274 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 14:31:00.274 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=kkf6dherk1jf1ta9p6n8m0amp63vtuk6 -- 14:31:00.274 INFO [4193]: QUERY_STRING = /member/page -- 14:31:00.274 INFO [4193]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:31:00.317 INFO [4193]: COREGRADE is stopping... -- 14:31:00.317 DEBUG [4193]: Closing database connection -- 14:31:00.317 SQL [4193]: pgsql_close() -- 14:36:10.971 INFO [5697]: COREGRADE is starting... -- 14:36:10.972 INFO [5697]: Version from config: 1.0 -- 14:36:10.972 DEBUG [5697]: Connecting to database... -- 14:36:10.972 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:36:10.972 SQL [5697]: pgsql_db_connect() -- 14:36:10.976 DEBUG [5697]: Database connection successful -- 14:36:10.976 INFO [5697]: _SERVER found -- 14:36:10.976 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 14:36:10.976 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 14:36:10.976 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=q12hvp24rtn9ai2584aupq2aaj570enp -- 14:36:10.976 INFO [5697]: QUERY_STRING = /home/faq -- 14:36:10.976 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:36:11.010 INFO [5697]: COREGRADE is stopping... -- 14:36:11.010 DEBUG [5697]: Closing database connection -- 14:36:11.010 SQL [5697]: pgsql_close() -- 14:36:11.432 INFO [5697]: COREGRADE is starting... -- 14:36:11.432 INFO [5697]: Version from config: 1.0 -- 14:36:11.432 DEBUG [5697]: Connecting to database... -- 14:36:11.432 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:36:11.432 SQL [5697]: pgsql_db_connect() -- 14:36:11.436 DEBUG [5697]: Database connection successful -- 14:36:11.436 INFO [5697]: _SERVER found -- 14:36:11.436 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 14:36:11.436 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 14:36:11.436 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=8v6buvjfaf27s5drqi66im53n0gnv7un -- 14:36:11.436 INFO [5697]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:36:11.436 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:36:11.448 INFO [5697]: COREGRADE is stopping... -- 14:36:11.448 DEBUG [5697]: Closing database connection -- 14:36:11.448 SQL [5697]: pgsql_close() -- 14:36:11.732 INFO [5697]: COREGRADE is starting... -- 14:36:11.733 INFO [5697]: Version from config: 1.0 -- 14:36:11.733 DEBUG [5697]: Connecting to database... -- 14:36:11.733 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:36:11.733 SQL [5697]: pgsql_db_connect() -- 14:36:11.737 DEBUG [5697]: Database connection successful -- 14:36:11.737 INFO [5697]: _SERVER found -- 14:36:11.737 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 14:36:11.737 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 14:36:11.737 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=8v6buvjfaf27s5drqi66im53n0gnv7un -- 14:36:11.737 INFO [5697]: QUERY_STRING = /home/faq -- 14:36:11.737 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:36:11.768 INFO [5697]: COREGRADE is stopping... -- 14:36:11.768 DEBUG [5697]: Closing database connection -- 14:36:11.768 SQL [5697]: pgsql_close() -- 14:36:11.934 INFO [5697]: COREGRADE is starting... -- 14:36:11.934 INFO [5697]: Version from config: 1.0 -- 14:36:11.934 DEBUG [5697]: Connecting to database... -- 14:36:11.934 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:36:11.934 SQL [5697]: pgsql_db_connect() -- 14:36:11.938 DEBUG [5697]: Database connection successful -- 14:36:11.938 INFO [5697]: _SERVER found -- 14:36:11.938 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 14:36:11.938 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 14:36:11.938 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=8v6buvjfaf27s5drqi66im53n0gnv7un -- 14:36:11.938 INFO [5697]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:36:11.938 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:36:11.950 INFO [5697]: COREGRADE is stopping... -- 14:36:11.950 DEBUG [5697]: Closing database connection -- 14:36:11.950 SQL [5697]: pgsql_close() -- 14:36:12.204 INFO [5697]: COREGRADE is starting... -- 14:36:12.204 INFO [5697]: Version from config: 1.0 -- 14:36:12.204 DEBUG [5697]: Connecting to database... -- 14:36:12.204 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:36:12.204 SQL [5697]: pgsql_db_connect() -- 14:36:12.208 DEBUG [5697]: Database connection successful -- 14:36:12.208 INFO [5697]: _SERVER found -- 14:36:12.208 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 14:36:12.208 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 14:36:12.208 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=8v6buvjfaf27s5drqi66im53n0gnv7un -- 14:36:12.208 INFO [5697]: QUERY_STRING = /home/faq -- 14:36:12.208 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:36:12.239 INFO [5697]: COREGRADE is stopping... -- 14:36:12.239 DEBUG [5697]: Closing database connection -- 14:36:12.239 SQL [5697]: pgsql_close() -- 14:36:12.900 INFO [5697]: COREGRADE is starting... -- 14:36:12.900 INFO [5697]: Version from config: 1.0 -- 14:36:12.900 DEBUG [5697]: Connecting to database... -- 14:36:12.900 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:36:12.900 SQL [5697]: pgsql_db_connect() -- 14:36:12.904 DEBUG [5697]: Database connection successful -- 14:36:12.904 INFO [5697]: _SERVER found -- 14:36:12.904 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 14:36:12.904 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 14:36:12.904 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=8v6buvjfaf27s5drqi66im53n0gnv7un -- 14:36:12.904 INFO [5697]: QUERY_STRING = /home/faq -- 14:36:12.904 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:36:12.936 INFO [5697]: COREGRADE is stopping... -- 14:36:12.936 DEBUG [5697]: Closing database connection -- 14:36:12.936 SQL [5697]: pgsql_close() -- 14:36:13.312 INFO [5697]: COREGRADE is starting... -- 14:36:13.313 INFO [5697]: Version from config: 1.0 -- 14:36:13.313 DEBUG [5697]: Connecting to database... -- 14:36:13.313 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:36:13.313 SQL [5697]: pgsql_db_connect() -- 14:36:13.317 DEBUG [5697]: Database connection successful -- 14:36:13.317 INFO [5697]: _SERVER found -- 14:36:13.317 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 14:36:13.317 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 14:36:13.317 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=8v6buvjfaf27s5drqi66im53n0gnv7un -- 14:36:13.317 INFO [5697]: QUERY_STRING = /home/faq -- 14:36:13.317 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:36:13.349 INFO [5697]: COREGRADE is stopping... -- 14:36:13.349 DEBUG [5697]: Closing database connection -- 14:36:13.349 SQL [5697]: pgsql_close() -- 14:41:33.508 INFO [5687]: COREGRADE is starting... -- 14:41:33.508 INFO [5687]: Version from config: 1.0 -- 14:41:33.508 DEBUG [5687]: Connecting to database... -- 14:41:33.508 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:41:33.508 SQL [5687]: pgsql_db_connect() -- 14:41:33.513 DEBUG [5687]: Database connection successful -- 14:41:33.513 INFO [5687]: _SERVER found -- 14:41:33.513 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 14:41:33.513 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 14:41:33.513 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=kkf6dherk1jf1ta9p6n8m0amp63vtuk6 -- 14:41:33.513 INFO [5687]: QUERY_STRING = /home/faq -- 14:41:33.513 INFO [5687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:41:33.546 INFO [5687]: COREGRADE is stopping... -- 14:41:33.546 DEBUG [5687]: Closing database connection -- 14:41:33.546 SQL [5687]: pgsql_close() -- 14:41:33.829 INFO [5687]: COREGRADE is starting... -- 14:41:33.829 INFO [5687]: Version from config: 1.0 -- 14:41:33.829 DEBUG [5687]: Connecting to database... -- 14:41:33.830 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:41:33.830 SQL [5687]: pgsql_db_connect() -- 14:41:33.834 DEBUG [5687]: Database connection successful -- 14:41:33.834 INFO [5687]: _SERVER found -- 14:41:33.834 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 14:41:33.834 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 14:41:33.834 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=a357qcl7r9rq9imchtvqtl4pd8dp76vs -- 14:41:33.834 INFO [5687]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:41:33.834 INFO [5687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:41:33.845 INFO [5687]: COREGRADE is stopping... -- 14:41:33.845 DEBUG [5687]: Closing database connection -- 14:41:33.845 SQL [5687]: pgsql_close() -- 14:42:51.414 INFO [5686]: COREGRADE is starting... -- 14:42:51.414 INFO [5686]: Version from config: 1.0 -- 14:42:51.414 DEBUG [5686]: Connecting to database... -- 14:42:51.414 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:42:51.414 SQL [5686]: pgsql_db_connect() -- 14:42:51.418 DEBUG [5686]: Database connection successful -- 14:42:51.418 INFO [5686]: _SERVER found -- 14:42:51.418 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 14:42:51.418 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 14:42:51.418 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=a357qcl7r9rq9imchtvqtl4pd8dp76vs -- 14:42:51.418 INFO [5686]: QUERY_STRING = -- 14:42:51.418 INFO [5686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:42:51.450 INFO [5686]: COREGRADE is stopping... -- 14:42:51.450 DEBUG [5686]: Closing database connection -- 14:42:51.450 SQL [5686]: pgsql_close() -- 14:42:51.541 INFO [5686]: COREGRADE is starting... -- 14:42:51.542 INFO [5686]: Version from config: 1.0 -- 14:42:51.542 DEBUG [5686]: Connecting to database... -- 14:42:51.542 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:42:51.542 SQL [5686]: pgsql_db_connect() -- 14:42:51.546 DEBUG [5686]: Database connection successful -- 14:42:51.546 INFO [5686]: _SERVER found -- 14:42:51.546 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 14:42:51.546 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 14:42:51.546 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=a357qcl7r9rq9imchtvqtl4pd8dp76vs -- 14:42:51.546 INFO [5686]: QUERY_STRING = /assets/img/footer_1.jpg -- 14:42:51.546 INFO [5686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:42:51.557 INFO [5686]: COREGRADE is stopping... -- 14:42:51.557 DEBUG [5686]: Closing database connection -- 14:42:51.557 SQL [5686]: pgsql_close() -- 14:43:07.825 INFO [4834]: COREGRADE is starting... -- 14:43:07.826 INFO [4834]: Version from config: 1.0 -- 14:43:07.826 DEBUG [4834]: Connecting to database... -- 14:43:07.826 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:43:07.826 SQL [4834]: pgsql_db_connect() -- 14:43:07.830 DEBUG [4834]: Database connection successful -- 14:43:07.830 INFO [4834]: _SERVER found -- 14:43:07.830 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 14:43:07.830 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 14:43:07.830 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=a357qcl7r9rq9imchtvqtl4pd8dp76vs; _gat_gtag_UA_54829827_2=1 -- 14:43:07.830 INFO [4834]: QUERY_STRING = /auth -- 14:43:07.830 INFO [4834]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:43:07.865 INFO [4834]: COREGRADE is stopping... -- 14:43:07.865 DEBUG [4834]: Closing database connection -- 14:43:07.865 SQL [4834]: pgsql_close() -- 14:43:23.393 INFO [5685]: COREGRADE is starting... -- 14:43:23.394 INFO [5685]: Version from config: 1.0 -- 14:43:23.394 DEBUG [5685]: Connecting to database... -- 14:43:23.394 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:43:23.394 SQL [5685]: pgsql_db_connect() -- 14:43:23.398 DEBUG [5685]: Database connection successful -- 14:43:23.398 INFO [5685]: _SERVER found -- 14:43:23.398 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 14:43:23.398 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 14:43:23.398 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=a357qcl7r9rq9imchtvqtl4pd8dp76vs; _gat_gtag_UA_54829827_2=1 -- 14:43:23.398 INFO [5685]: QUERY_STRING = /auth -- 14:43:23.398 INFO [5685]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:43:23.431 INFO [5685]: COREGRADE is stopping... -- 14:43:23.431 DEBUG [5685]: Closing database connection -- 14:43:23.431 SQL [5685]: pgsql_close() -- 14:43:23.750 INFO [5685]: COREGRADE is starting... -- 14:43:23.750 INFO [5685]: Version from config: 1.0 -- 14:43:23.750 DEBUG [5685]: Connecting to database... -- 14:43:23.750 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:43:23.750 SQL [5685]: pgsql_db_connect() -- 14:43:23.754 DEBUG [5685]: Database connection successful -- 14:43:23.754 INFO [5685]: _SERVER found -- 14:43:23.754 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 14:43:23.754 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 14:43:23.754 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=a357qcl7r9rq9imchtvqtl4pd8dp76vs; _gat_gtag_UA_54829827_2=1 -- 14:43:23.754 INFO [5685]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:43:23.754 INFO [5685]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:43:23.766 INFO [5685]: COREGRADE is stopping... -- 14:43:23.766 DEBUG [5685]: Closing database connection -- 14:43:23.766 SQL [5685]: pgsql_close() -- 14:43:26.224 INFO [5685]: COREGRADE is starting... -- 14:43:26.224 INFO [5685]: Version from config: 1.0 -- 14:43:26.224 DEBUG [5685]: Connecting to database... -- 14:43:26.224 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:43:26.224 SQL [5685]: pgsql_db_connect() -- 14:43:26.259 INFO [5685]: COREGRADE is starting... -- 14:43:26.260 INFO [5685]: Version from config: 1.0 -- 14:43:26.260 DEBUG [5685]: Connecting to database... -- 14:43:26.260 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:43:26.260 SQL [5685]: pgsql_db_connect() -- 14:43:26.264 DEBUG [5685]: Database connection successful -- 14:43:26.264 INFO [5685]: _SERVER found -- 14:43:26.264 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 14:43:26.264 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 14:43:26.264 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=a357qcl7r9rq9imchtvqtl4pd8dp76vs; _gat_gtag_UA_54829827_2=1 -- 14:43:26.264 INFO [5685]: QUERY_STRING = -- 14:43:26.264 INFO [5685]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:43:26.264 INFO [5685]: SystemStatus()09-09-********~************ -- 14:43:26.264 INFO [5685]: long coregrade_api_main(CVars in, CVars &out) -- 14:43:26.264 INFO [5685]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 14:43:26.264 INFO [5685]: account calls -- 14:43:26.264 INFO [5685]: account_calls() -- 14:43:26.264 INFO [5685]: LoginCoreGradeAccount() -- 14:43:26.264 FLOG_MAX [5685]: REQ_STRING(username) -- 14:43:26.264 FLOG_MAX [5685]: REQ_STRING(password) -- 14:43:26.264 FLOG_MAX [5685]: REQ_STRING(sessionid) -- 14:43:26.264 FLOG_MAX [5685]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:43:26.264 SQL [5685]: pgsql_query() -- 14:43:26.264 SQL [5685]: About to run query: -- 14:43:26.264 SQL [5685]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678') -- 14:43:26.267 SQL [5685]: Found rows: 1 -- 14:43:26.267 FLOG_MAX [5685]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678')) num_cols=16 -- 14:43:26.267 INFO [5685]: long SessionCheck(long uid, const char *sessionid, int create ) -- 14:43:26.267 SQL [5685]: pgsql_exec() -- 14:43:26.267 SQL [5685]: About to run query: -- 14:43:26.267 SQL [5685]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 14:43:26.268 SQL [5685]: PQcmdTuples: 0 -- 14:43:26.268 SQL [5685]: Affected rows: 0 -- 14:43:26.268 SQL [5685]: pgsql_exec() -- 14:43:26.268 SQL [5685]: About to run query: -- 14:43:26.268 SQL [5685]: DELETE FROM members_session WHERE member_id=7 -- 14:43:26.269 SQL [5685]: PQcmdTuples: 1 -- 14:43:26.269 SQL [5685]: Affected rows: 1 -- 14:43:26.269 SQL [5685]: pgsql_query() -- 14:43:26.269 SQL [5685]: About to run query: -- 14:43:26.269 SQL [5685]: SELECT * FROM members_session WHERE member_id=7 AND session<>'9738509292FB9DF3F5B1DF432866B3FD' -- 14:43:26.270 SQL [5685]: Found rows: 0 -- 14:43:26.270 SQL [5685]: Found rows: 0 -- 14:43:26.270 FLOG_MAX [5685]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:43:26.270 SQL [5685]: pgsql_query() -- 14:43:26.270 SQL [5685]: About to run query: -- 14:43:26.270 SQL [5685]: SELECT * FROM members_session WHERE member_id=7 AND session='9738509292FB9DF3F5B1DF432866B3FD' -- 14:43:26.270 SQL [5685]: Found rows: 0 -- 14:43:26.270 SQL [5685]: Found rows: 0 -- 14:43:26.270 FLOG_MAX [5685]: insert_db_record() -- 14:43:26.270 SQL [5685]: pgsql_exec() -- 14:43:26.270 SQL [5685]: About to run query: -- 14:43:26.270 SQL [5685]: INSERT INTO members_session (member_id,session) VALUES ('7','9738509292FB9DF3F5B1DF432866B3FD') -- 14:43:26.272 SQL [5685]: PQcmdTuples: 1 -- 14:43:26.272 SQL [5685]: Affected rows: 1 -- 14:43:26.272 FLOG_MAX [5685]: SELECT currval('members_session_id_seq') -- 14:43:26.272 SQL [5685]: pgsql_query() -- 14:43:26.272 SQL [5685]: About to run query: -- 14:43:26.272 SQL [5685]: SELECT currval('members_session_id_seq') -- 14:43:26.272 SQL [5685]: Found rows: 1 -- 14:43:26.272 INFO [5685]: CreateDefaultPage() -- 14:43:26.272 FLOG_MAX [5685]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:43:26.272 SQL [5685]: pgsql_query() -- 14:43:26.272 SQL [5685]: About to run query: -- 14:43:26.272 SQL [5685]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 14:43:26.272 SQL [5685]: Found rows: 1 -- 14:43:26.272 FLOG_MAX [5685]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 14:43:26.272 SQL [5685]: pgsql_query() -- 14:43:26.272 SQL [5685]: About to run query: -- 14:43:26.273 SQL [5685]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 14:43:26.273 SQL [5685]: Found rows: 1 -- 14:43:26.273 INFO [5685]: /CreateDefaultPage() -- 14:43:26.273 INFO [5685]: /LoginCoreGradeAccount() -- 14:43:26.273 INFO [5685]: RET: added=2020-02-05 09:42:12.816064 -- 14:43:26.273 INFO [5685]: RET: email=tokslaw@chiefsoft.com -- 14:43:26.273 INFO [5685]: RET: firstname=Tokunbo -- 14:43:26.273 INFO [5685]: RET: folder=5D06B187B1E2285A63AD1D0ECB670D98 -- 14:43:26.273 INFO [5685]: RET: id=7 -- 14:43:26.273 INFO [5685]: RET: last_login= -- 14:43:26.273 INFO [5685]: RET: lastname=Lawal -- 14:43:26.273 INFO [5685]: RET: loc=192.168.1.13 -- 14:43:26.273 INFO [5685]: RET: member_id=7 -- 14:43:26.273 INFO [5685]: RET: password=25d55ad283aa400af464c76d713c07ad -- 14:43:26.273 INFO [5685]: RET: phone= -- 14:43:26.273 INFO [5685]: RET: pid= -- 14:43:26.273 INFO [5685]: RET: result=YES I GET TO BACK END -- 14:43:26.273 INFO [5685]: RET: sessionid=9738509292FB9DF3F5B1DF432866B3FD -- 14:43:26.273 INFO [5685]: RET: status=1 -- 14:43:26.273 INFO [5685]: RET: stauts=OK -- 14:43:26.273 INFO [5685]: RET: username=tokslaw@chiefsoft.com -- 14:43:26.273 INFO [5685]: RET: verified= -- 14:43:26.275 INFO [5685]: COREGRADE is stopping... -- 14:43:26.275 DEBUG [5685]: Closing database connection -- 14:43:26.275 SQL [5685]: pgsql_close() -- 14:43:26.229 DEBUG [5685]: Database connection successful -- 14:43:26.229 INFO [5685]: _SERVER found -- 14:43:26.229 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 14:43:26.229 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 14:43:26.229 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=a357qcl7r9rq9imchtvqtl4pd8dp76vs; _gat_gtag_UA_54829827_2=1 -- 14:43:26.229 INFO [5685]: QUERY_STRING = /auth -- 14:43:26.229 INFO [5685]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:43:26.275 INFO [5685]: COREGRADE is stopping... -- 14:43:26.275 DEBUG [5685]: Closing database connection -- 14:43:26.275 SQL [5685]: pgsql_close() -- 14:43:26.293 INFO [5685]: COREGRADE is starting... -- 14:43:26.293 INFO [5685]: Version from config: 1.0 -- 14:43:26.293 DEBUG [5685]: Connecting to database... -- 14:43:26.293 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:43:26.293 SQL [5685]: pgsql_db_connect() -- 14:43:26.297 DEBUG [5685]: Database connection successful -- 14:43:26.297 INFO [5685]: _SERVER found -- 14:43:26.297 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 14:43:26.297 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 14:43:26.297 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=a357qcl7r9rq9imchtvqtl4pd8dp76vs; _gat_gtag_UA_54829827_2=1 -- 14:43:26.297 INFO [5685]: QUERY_STRING = /member/index -- 14:43:26.297 INFO [5685]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:43:26.337 INFO [5685]: COREGRADE is stopping... -- 14:43:26.337 DEBUG [5685]: Closing database connection -- 14:43:26.337 SQL [5685]: pgsql_close() -- 14:43:26.534 INFO [5685]: COREGRADE is starting... -- 14:43:26.535 INFO [5685]: Version from config: 1.0 -- 14:43:26.535 DEBUG [5685]: Connecting to database... -- 14:43:26.535 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:43:26.535 SQL [5685]: pgsql_db_connect() -- 14:43:26.539 DEBUG [5685]: Database connection successful -- 14:43:26.539 INFO [5685]: _SERVER found -- 14:43:26.539 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 14:43:26.539 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 14:43:26.539 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=a357qcl7r9rq9imchtvqtl4pd8dp76vs; _gat_gtag_UA_54829827_2=1 -- 14:43:26.539 INFO [5685]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:43:26.539 INFO [5685]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:43:26.550 INFO [5685]: COREGRADE is stopping... -- 14:43:26.550 DEBUG [5685]: Closing database connection -- 14:43:26.550 SQL [5685]: pgsql_close() -- 14:43:45.276 INFO [7885]: COREGRADE is starting... -- 14:43:45.276 INFO [7885]: Version from config: 1.0 -- 14:43:45.276 DEBUG [7885]: Connecting to database... -- 14:43:45.276 DEBUG [7885]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:43:45.276 SQL [7885]: pgsql_db_connect() -- 14:43:45.280 DEBUG [7885]: Database connection successful -- 14:43:45.280 INFO [7885]: _SERVER found -- 14:43:45.280 INFO [7885]: REMOTE_ADDR = 10.0.0.15 -- 14:43:45.280 INFO [7885]: SERVER_NAME = oameye.works.coregrade.com -- 14:43:45.280 INFO [7885]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=a357qcl7r9rq9imchtvqtl4pd8dp76vs; _gat_gtag_UA_54829827_2=1 -- 14:43:45.280 INFO [7885]: QUERY_STRING = /member/page -- 14:43:45.280 INFO [7885]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:43:45.326 INFO [7885]: COREGRADE is stopping... -- 14:43:45.326 DEBUG [7885]: Closing database connection -- 14:43:45.326 SQL [7885]: pgsql_close() -- 14:44:19.943 INFO [6508]: COREGRADE is starting... -- 14:44:19.943 INFO [6508]: Version from config: 1.0 -- 14:44:19.943 DEBUG [6508]: Connecting to database... -- 14:44:19.943 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:44:19.943 SQL [6508]: pgsql_db_connect() -- 14:44:19.948 DEBUG [6508]: Database connection successful -- 14:44:19.948 INFO [6508]: _SERVER found -- 14:44:19.948 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 14:44:19.948 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 14:44:19.948 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=a357qcl7r9rq9imchtvqtl4pd8dp76vs -- 14:44:19.948 INFO [6508]: QUERY_STRING = /member/index -- 14:44:19.948 INFO [6508]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:44:19.990 INFO [6508]: COREGRADE is stopping... -- 14:44:19.990 DEBUG [6508]: Closing database connection -- 14:44:19.990 SQL [6508]: pgsql_close() -- 14:44:20.171 INFO [6508]: COREGRADE is starting... -- 14:44:20.172 INFO [6508]: Version from config: 1.0 -- 14:44:20.172 DEBUG [6508]: Connecting to database... -- 14:44:20.172 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:44:20.172 SQL [6508]: pgsql_db_connect() -- 14:44:20.176 DEBUG [6508]: Database connection successful -- 14:44:20.176 INFO [6508]: _SERVER found -- 14:44:20.176 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 14:44:20.176 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 14:44:20.176 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=a357qcl7r9rq9imchtvqtl4pd8dp76vs -- 14:44:20.176 INFO [6508]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:44:20.176 INFO [6508]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:44:20.187 INFO [6508]: COREGRADE is stopping... -- 14:44:20.187 DEBUG [6508]: Closing database connection -- 14:44:20.187 SQL [6508]: pgsql_close() -- 14:44:24.915 INFO [6508]: COREGRADE is starting... -- 14:44:24.916 INFO [6508]: Version from config: 1.0 -- 14:44:24.916 DEBUG [6508]: Connecting to database... -- 14:44:24.916 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:44:24.916 SQL [6508]: pgsql_db_connect() -- 14:44:24.920 DEBUG [6508]: Database connection successful -- 14:44:24.920 INFO [6508]: _SERVER found -- 14:44:24.920 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 14:44:24.920 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 14:44:24.920 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=a357qcl7r9rq9imchtvqtl4pd8dp76vs -- 14:44:24.920 INFO [6508]: QUERY_STRING = /member/page -- 14:44:24.920 INFO [6508]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:44:24.961 INFO [6508]: COREGRADE is stopping... -- 14:44:24.961 DEBUG [6508]: Closing database connection -- 14:44:24.961 SQL [6508]: pgsql_close() -- 14:44:25.161 INFO [6508]: COREGRADE is starting... -- 14:44:25.161 INFO [6508]: Version from config: 1.0 -- 14:44:25.161 DEBUG [6508]: Connecting to database... -- 14:44:25.161 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:44:25.161 SQL [6508]: pgsql_db_connect() -- 14:44:25.165 DEBUG [6508]: Database connection successful -- 14:44:25.165 INFO [6508]: _SERVER found -- 14:44:25.165 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 14:44:25.165 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 14:44:25.165 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=a357qcl7r9rq9imchtvqtl4pd8dp76vs -- 14:44:25.165 INFO [6508]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:44:25.165 INFO [6508]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:44:25.176 INFO [6508]: COREGRADE is stopping... -- 14:44:25.176 DEBUG [6508]: Closing database connection -- 14:44:25.176 SQL [6508]: pgsql_close() -- 14:45:03.688 INFO [4251]: COREGRADE is starting... -- 14:45:03.688 INFO [4251]: Version from config: 1.0 -- 14:45:03.688 DEBUG [4251]: Connecting to database... -- 14:45:03.688 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:45:03.688 SQL [4251]: pgsql_db_connect() -- 14:45:03.692 DEBUG [4251]: Database connection successful -- 14:45:03.692 INFO [4251]: _SERVER found -- 14:45:03.692 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 14:45:03.692 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 14:45:03.692 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=a357qcl7r9rq9imchtvqtl4pd8dp76vs -- 14:45:03.692 INFO [4251]: QUERY_STRING = /member/viewCardAddAction -- 14:45:03.692 INFO [4251]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:45:03.725 INFO [4251]: COREGRADE is stopping... -- 14:45:03.725 DEBUG [4251]: Closing database connection -- 14:45:03.725 SQL [4251]: pgsql_close() -- 14:45:24.617 INFO [4193]: COREGRADE is starting... -- 14:45:24.618 INFO [4193]: Version from config: 1.0 -- 14:45:24.618 DEBUG [4193]: Connecting to database... -- 14:45:24.618 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:45:24.618 SQL [4193]: pgsql_db_connect() -- 14:45:24.622 DEBUG [4193]: Database connection successful -- 14:45:24.622 INFO [4193]: _SERVER found -- 14:45:24.622 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 14:45:24.622 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 14:45:24.622 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=a357qcl7r9rq9imchtvqtl4pd8dp76vs -- 14:45:24.622 INFO [4193]: QUERY_STRING = /member/viewCardAddAction -- 14:45:24.622 INFO [4193]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:45:24.655 INFO [4193]: COREGRADE is stopping... -- 14:45:24.655 DEBUG [4193]: Closing database connection -- 14:45:24.655 SQL [4193]: pgsql_close() -- 14:45:24.668 INFO [4193]: COREGRADE is starting... -- 14:45:24.668 INFO [4193]: Version from config: 1.0 -- 14:45:24.668 DEBUG [4193]: Connecting to database... -- 14:45:24.668 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:45:24.668 SQL [4193]: pgsql_db_connect() -- 14:45:24.672 DEBUG [4193]: Database connection successful -- 14:45:24.672 INFO [4193]: _SERVER found -- 14:45:24.672 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 14:45:24.672 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 14:45:24.672 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=a357qcl7r9rq9imchtvqtl4pd8dp76vs -- 14:45:24.672 INFO [4193]: QUERY_STRING = /member/viewCardAddAction -- 14:45:24.672 INFO [4193]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:45:24.704 INFO [4193]: COREGRADE is stopping... -- 14:45:24.704 DEBUG [4193]: Closing database connection -- 14:45:24.704 SQL [4193]: pgsql_close() -- 15:04:11.705 INFO [7377]: COREGRADE is starting... -- 15:04:11.705 INFO [7377]: Version from config: 1.0 -- 15:04:11.705 DEBUG [7377]: Connecting to database... -- 15:04:11.705 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:04:11.705 SQL [7377]: pgsql_db_connect() -- 15:04:11.711 DEBUG [7377]: Database connection successful -- 15:04:11.711 INFO [7377]: _SERVER found -- 15:04:11.711 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 15:04:11.711 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 15:04:11.711 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911 -- 15:04:11.711 INFO [7377]: QUERY_STRING = -- 15:04:11.711 INFO [7377]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:04:11.748 INFO [7377]: COREGRADE is stopping... -- 15:04:11.748 DEBUG [7377]: Closing database connection -- 15:04:11.748 SQL [7377]: pgsql_close() -- 15:04:12.158 INFO [5697]: COREGRADE is starting... -- 15:04:12.158 INFO [5697]: Version from config: 1.0 -- 15:04:12.158 DEBUG [5697]: Connecting to database... -- 15:04:12.158 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:04:12.158 SQL [5697]: pgsql_db_connect() -- 15:04:12.163 DEBUG [5697]: Database connection successful -- 15:04:12.163 INFO [5697]: _SERVER found -- 15:04:12.163 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 15:04:12.163 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 15:04:12.163 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=5m75n45o4lpllf45q0p80mphc05k8rj6 -- 15:04:12.163 INFO [5697]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:04:12.163 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:04:12.176 INFO [5697]: COREGRADE is stopping... -- 15:04:12.176 DEBUG [5697]: Closing database connection -- 15:04:12.176 SQL [5697]: pgsql_close() -- 15:04:16.720 INFO [5687]: COREGRADE is starting... -- 15:04:16.720 INFO [5687]: Version from config: 1.0 -- 15:04:16.720 DEBUG [5687]: Connecting to database... -- 15:04:16.720 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:04:16.720 SQL [5687]: pgsql_db_connect() -- 15:04:16.725 DEBUG [5687]: Database connection successful -- 15:04:16.725 INFO [5687]: _SERVER found -- 15:04:16.725 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 15:04:16.725 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 15:04:16.725 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=5m75n45o4lpllf45q0p80mphc05k8rj6; _gid=GA1.2.449013359.1587063852; _gat_gtag_UA_54829827_2=1 -- 15:04:16.725 INFO [5687]: QUERY_STRING = /home/howitworks -- 15:04:16.725 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:04:16.759 INFO [5687]: COREGRADE is stopping... -- 15:04:16.759 DEBUG [5687]: Closing database connection -- 15:04:16.759 SQL [5687]: pgsql_close() -- 15:04:17.071 INFO [5687]: COREGRADE is starting... -- 15:04:17.071 INFO [5687]: Version from config: 1.0 -- 15:04:17.071 DEBUG [5687]: Connecting to database... -- 15:04:17.071 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:04:17.071 SQL [5687]: pgsql_db_connect() -- 15:04:17.076 DEBUG [5687]: Database connection successful -- 15:04:17.076 INFO [5687]: _SERVER found -- 15:04:17.076 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 15:04:17.076 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 15:04:17.076 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=5m75n45o4lpllf45q0p80mphc05k8rj6; _gid=GA1.2.449013359.1587063852; _gat_gtag_UA_54829827_2=1 -- 15:04:17.076 INFO [5687]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:04:17.076 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:04:17.087 INFO [5687]: COREGRADE is stopping... -- 15:04:17.087 DEBUG [5687]: Closing database connection -- 15:04:17.087 SQL [5687]: pgsql_close() -- 15:04:21.230 INFO [5687]: COREGRADE is starting... -- 15:04:21.230 INFO [5687]: Version from config: 1.0 -- 15:04:21.230 DEBUG [5687]: Connecting to database... -- 15:04:21.230 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:04:21.230 SQL [5687]: pgsql_db_connect() -- 15:04:21.235 DEBUG [5687]: Database connection successful -- 15:04:21.235 INFO [5687]: _SERVER found -- 15:04:21.235 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 15:04:21.235 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 15:04:21.235 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=5m75n45o4lpllf45q0p80mphc05k8rj6; _gid=GA1.2.449013359.1587063852; _gat_gtag_UA_54829827_2=1 -- 15:04:21.235 INFO [5687]: QUERY_STRING = /home/howitworks -- 15:04:21.235 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:04:21.266 INFO [5687]: COREGRADE is stopping... -- 15:04:21.266 DEBUG [5687]: Closing database connection -- 15:04:21.266 SQL [5687]: pgsql_close() -- 15:04:21.383 INFO [5687]: COREGRADE is starting... -- 15:04:21.384 INFO [5687]: Version from config: 1.0 -- 15:04:21.384 DEBUG [5687]: Connecting to database... -- 15:04:21.384 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:04:21.384 SQL [5687]: pgsql_db_connect() -- 15:04:21.388 DEBUG [5687]: Database connection successful -- 15:04:21.388 INFO [5687]: _SERVER found -- 15:04:21.388 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 15:04:21.388 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 15:04:21.388 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=5m75n45o4lpllf45q0p80mphc05k8rj6; _gid=GA1.2.449013359.1587063852; _gat_gtag_UA_54829827_2=1 -- 15:04:21.388 INFO [5687]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:04:21.388 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:04:21.399 INFO [5687]: COREGRADE is stopping... -- 15:04:21.399 DEBUG [5687]: Closing database connection -- 15:04:21.399 SQL [5687]: pgsql_close() -- 15:10:28.683 INFO [6508]: COREGRADE is starting... -- 15:10:28.683 INFO [6508]: Version from config: 1.0 -- 15:10:28.683 DEBUG [6508]: Connecting to database... -- 15:10:28.683 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:28.683 SQL [6508]: pgsql_db_connect() -- 15:10:28.687 DEBUG [6508]: Database connection successful -- 15:10:28.687 INFO [6508]: _SERVER found -- 15:10:28.687 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 15:10:28.687 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 15:10:28.687 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=a357qcl7r9rq9imchtvqtl4pd8dp76vs -- 15:10:28.687 INFO [6508]: QUERY_STRING = /member/classroom -- 15:10:28.687 INFO [6508]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:10:28.734 INFO [6508]: COREGRADE is stopping... -- 15:10:28.734 DEBUG [6508]: Closing database connection -- 15:10:28.734 SQL [6508]: pgsql_close() -- 15:10:28.980 INFO [6508]: COREGRADE is starting... -- 15:10:28.981 INFO [6508]: Version from config: 1.0 -- 15:10:28.981 DEBUG [6508]: Connecting to database... -- 15:10:28.981 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:28.981 SQL [6508]: pgsql_db_connect() -- 15:10:28.985 DEBUG [6508]: Database connection successful -- 15:10:28.985 INFO [6508]: _SERVER found -- 15:10:28.985 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 15:10:28.985 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 15:10:28.985 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=hcb3n6qaasn7fv93jcv24ku56vm7ksma -- 15:10:28.985 INFO [6508]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:10:28.985 INFO [6508]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:10:28.996 INFO [6508]: COREGRADE is stopping... -- 15:10:28.996 DEBUG [6508]: Closing database connection -- 15:10:28.996 SQL [6508]: pgsql_close() -- 15:10:30.755 INFO [6508]: COREGRADE is starting... -- 15:10:30.755 INFO [6508]: Version from config: 1.0 -- 15:10:30.755 DEBUG [6508]: Connecting to database... -- 15:10:30.755 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:30.755 SQL [6508]: pgsql_db_connect() -- 15:10:30.760 DEBUG [6508]: Database connection successful -- 15:10:30.760 INFO [6508]: _SERVER found -- 15:10:30.760 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 15:10:30.760 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 15:10:30.760 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=hcb3n6qaasn7fv93jcv24ku56vm7ksma -- 15:10:30.760 INFO [6508]: QUERY_STRING = /member/viewRoom -- 15:10:30.760 INFO [6508]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:10:30.791 INFO [6508]: COREGRADE is stopping... -- 15:10:30.791 DEBUG [6508]: Closing database connection -- 15:10:30.791 SQL [6508]: pgsql_close() -- 15:10:49.679 INFO [4251]: COREGRADE is starting... -- 15:10:49.680 INFO [4251]: Version from config: 1.0 -- 15:10:49.680 DEBUG [4251]: Connecting to database... -- 15:10:49.680 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:49.680 SQL [4251]: pgsql_db_connect() -- 15:10:49.684 DEBUG [4251]: Database connection successful -- 15:10:49.684 INFO [4251]: _SERVER found -- 15:10:49.684 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 15:10:49.684 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 15:10:49.684 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=hcb3n6qaasn7fv93jcv24ku56vm7ksma -- 15:10:49.684 INFO [4251]: QUERY_STRING = /member/viewRoom -- 15:10:49.684 INFO [4251]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:10:49.720 INFO [4251]: COREGRADE is stopping... -- 15:10:49.720 DEBUG [4251]: Closing database connection -- 15:10:49.720 SQL [4251]: pgsql_close() -- 15:10:51.771 INFO [4251]: COREGRADE is starting... -- 15:10:51.771 INFO [4251]: Version from config: 1.0 -- 15:10:51.771 DEBUG [4251]: Connecting to database... -- 15:10:51.771 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:51.771 SQL [4251]: pgsql_db_connect() -- 15:10:51.776 DEBUG [4251]: Database connection successful -- 15:10:51.776 INFO [4251]: _SERVER found -- 15:10:51.776 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 15:10:51.776 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 15:10:51.776 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=hcb3n6qaasn7fv93jcv24ku56vm7ksma -- 15:10:51.776 INFO [4251]: QUERY_STRING = /member/classroom -- 15:10:51.776 INFO [4251]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:10:51.817 INFO [4251]: COREGRADE is stopping... -- 15:10:51.817 DEBUG [4251]: Closing database connection -- 15:10:51.817 SQL [4251]: pgsql_close() -- 15:10:52.033 INFO [4251]: COREGRADE is starting... -- 15:10:52.033 INFO [4251]: Version from config: 1.0 -- 15:10:52.033 DEBUG [4251]: Connecting to database... -- 15:10:52.033 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:52.033 SQL [4251]: pgsql_db_connect() -- 15:10:52.037 DEBUG [4251]: Database connection successful -- 15:10:52.037 INFO [4251]: _SERVER found -- 15:10:52.037 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 15:10:52.037 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 15:10:52.037 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=hcb3n6qaasn7fv93jcv24ku56vm7ksma -- 15:10:52.037 INFO [4251]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:10:52.037 INFO [4251]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:10:52.048 INFO [4251]: COREGRADE is stopping... -- 15:10:52.048 DEBUG [4251]: Closing database connection -- 15:10:52.048 SQL [4251]: pgsql_close() -- 15:13:22.498 INFO [4193]: COREGRADE is starting... -- 15:13:22.499 INFO [4193]: Version from config: 1.0 -- 15:13:22.499 DEBUG [4193]: Connecting to database... -- 15:13:22.499 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:13:22.499 SQL [4193]: pgsql_db_connect() -- 15:13:22.503 DEBUG [4193]: Database connection successful -- 15:13:22.503 INFO [4193]: _SERVER found -- 15:13:22.503 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 15:13:22.503 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 15:13:22.503 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=hcb3n6qaasn7fv93jcv24ku56vm7ksma -- 15:13:22.503 INFO [4193]: QUERY_STRING = /member/classroom -- 15:13:22.503 INFO [4193]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:13:22.549 INFO [4193]: COREGRADE is stopping... -- 15:13:22.549 DEBUG [4193]: Closing database connection -- 15:13:22.550 SQL [4193]: pgsql_close() -- 15:13:22.784 INFO [4193]: COREGRADE is starting... -- 15:13:22.785 INFO [4193]: Version from config: 1.0 -- 15:13:22.785 DEBUG [4193]: Connecting to database... -- 15:13:22.785 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:13:22.785 SQL [4193]: pgsql_db_connect() -- 15:13:22.789 DEBUG [4193]: Database connection successful -- 15:13:22.789 INFO [4193]: _SERVER found -- 15:13:22.789 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 15:13:22.789 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 15:13:22.789 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=hcb3n6qaasn7fv93jcv24ku56vm7ksma -- 15:13:22.789 INFO [4193]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:13:22.789 INFO [4193]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:13:22.801 INFO [4193]: COREGRADE is stopping... -- 15:13:22.801 DEBUG [4193]: Closing database connection -- 15:13:22.801 SQL [4193]: pgsql_close() -- 15:15:15.471 INFO [15006]: COREGRADE is starting... -- 15:15:15.472 INFO [15006]: Version from config: 1.0 -- 15:15:15.472 DEBUG [15006]: Connecting to database... -- 15:15:15.472 DEBUG [15006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:15:15.472 SQL [15006]: pgsql_db_connect() -- 15:15:15.477 DEBUG [15006]: Database connection successful -- 15:15:15.477 INFO [15006]: _SERVER found -- 15:15:15.477 INFO [15006]: REMOTE_ADDR = 10.0.0.15 -- 15:15:15.477 INFO [15006]: SERVER_NAME = oameye.works.coregrade.com -- 15:15:15.477 INFO [15006]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=hcb3n6qaasn7fv93jcv24ku56vm7ksma -- 15:15:15.477 INFO [15006]: QUERY_STRING = /member/viewRoom -- 15:15:15.477 INFO [15006]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:15:15.517 INFO [15006]: COREGRADE is stopping... -- 15:15:15.517 DEBUG [15006]: Closing database connection -- 15:15:15.518 SQL [15006]: pgsql_close() -- 15:17:23.369 INFO [5686]: COREGRADE is starting... -- 15:17:23.370 INFO [5686]: Version from config: 1.0 -- 15:17:23.370 DEBUG [5686]: Connecting to database... -- 15:17:23.370 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:17:23.370 SQL [5686]: pgsql_db_connect() -- 15:17:23.374 DEBUG [5686]: Database connection successful -- 15:17:23.374 INFO [5686]: _SERVER found -- 15:17:23.374 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 15:17:23.374 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 15:17:23.374 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=hcb3n6qaasn7fv93jcv24ku56vm7ksma -- 15:17:23.374 INFO [5686]: QUERY_STRING = /member/classroom -- 15:17:23.374 INFO [5686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:17:23.419 INFO [5686]: COREGRADE is stopping... -- 15:17:23.419 DEBUG [5686]: Closing database connection -- 15:17:23.419 SQL [5686]: pgsql_close() -- 15:17:23.555 INFO [5686]: COREGRADE is starting... -- 15:17:23.555 INFO [5686]: Version from config: 1.0 -- 15:17:23.555 DEBUG [5686]: Connecting to database... -- 15:17:23.555 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:17:23.555 SQL [5686]: pgsql_db_connect() -- 15:17:23.559 DEBUG [5686]: Database connection successful -- 15:17:23.559 INFO [5686]: _SERVER found -- 15:17:23.559 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 15:17:23.559 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 15:17:23.559 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=7nqetiud7c50kd55nv0dd0522k3gras6 -- 15:17:23.559 INFO [5686]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:17:23.559 INFO [5686]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:17:23.570 INFO [5686]: COREGRADE is stopping... -- 15:17:23.570 DEBUG [5686]: Closing database connection -- 15:17:23.570 SQL [5686]: pgsql_close() -- 15:18:05.080 INFO [5697]: COREGRADE is starting... -- 15:18:05.080 INFO [5697]: Version from config: 1.0 -- 15:18:05.080 DEBUG [5697]: Connecting to database... -- 15:18:05.080 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:18:05.080 SQL [5697]: pgsql_db_connect() -- 15:18:05.084 DEBUG [5697]: Database connection successful -- 15:18:05.084 INFO [5697]: _SERVER found -- 15:18:05.084 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 15:18:05.084 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 15:18:05.084 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=7nqetiud7c50kd55nv0dd0522k3gras6 -- 15:18:05.084 INFO [5697]: QUERY_STRING = /member/classroom -- 15:18:05.084 INFO [5697]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:18:05.128 INFO [5697]: COREGRADE is stopping... -- 15:18:05.128 DEBUG [5697]: Closing database connection -- 15:18:05.128 SQL [5697]: pgsql_close() -- 15:18:05.306 INFO [5697]: COREGRADE is starting... -- 15:18:05.306 INFO [5697]: Version from config: 1.0 -- 15:18:05.306 DEBUG [5697]: Connecting to database... -- 15:18:05.306 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:18:05.306 SQL [5697]: pgsql_db_connect() -- 15:18:05.310 DEBUG [5697]: Database connection successful -- 15:18:05.310 INFO [5697]: _SERVER found -- 15:18:05.310 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 15:18:05.310 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 15:18:05.310 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=7nqetiud7c50kd55nv0dd0522k3gras6 -- 15:18:05.310 INFO [5697]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:18:05.310 INFO [5697]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:18:05.321 INFO [5697]: COREGRADE is stopping... -- 15:18:05.322 DEBUG [5697]: Closing database connection -- 15:18:05.322 SQL [5697]: pgsql_close() -- 15:18:24.054 INFO [4834]: COREGRADE is starting... -- 15:18:24.054 INFO [4834]: Version from config: 1.0 -- 15:18:24.054 DEBUG [4834]: Connecting to database... -- 15:18:24.054 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:18:24.054 SQL [4834]: pgsql_db_connect() -- 15:18:24.059 DEBUG [4834]: Database connection successful -- 15:18:24.059 INFO [4834]: _SERVER found -- 15:18:24.059 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 15:18:24.059 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 15:18:24.059 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=7nqetiud7c50kd55nv0dd0522k3gras6 -- 15:18:24.059 INFO [4834]: QUERY_STRING = /member/classroom -- 15:18:24.059 INFO [4834]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:18:24.106 INFO [4834]: COREGRADE is stopping... -- 15:18:24.106 DEBUG [4834]: Closing database connection -- 15:18:24.106 SQL [4834]: pgsql_close() -- 15:18:24.214 INFO [4834]: COREGRADE is starting... -- 15:18:24.214 INFO [4834]: Version from config: 1.0 -- 15:18:24.214 DEBUG [4834]: Connecting to database... -- 15:18:24.214 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:18:24.214 SQL [4834]: pgsql_db_connect() -- 15:18:24.218 DEBUG [4834]: Database connection successful -- 15:18:24.218 INFO [4834]: _SERVER found -- 15:18:24.218 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 15:18:24.218 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 15:18:24.218 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=7nqetiud7c50kd55nv0dd0522k3gras6 -- 15:18:24.218 INFO [4834]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:18:24.218 INFO [4834]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:18:24.230 INFO [4834]: COREGRADE is stopping... -- 15:18:24.230 DEBUG [4834]: Closing database connection -- 15:18:24.230 SQL [4834]: pgsql_close() -- 15:18:26.726 INFO [4834]: COREGRADE is starting... -- 15:18:26.727 INFO [4834]: Version from config: 1.0 -- 15:18:26.727 DEBUG [4834]: Connecting to database... -- 15:18:26.727 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:18:26.727 SQL [4834]: pgsql_db_connect() -- 15:18:26.731 DEBUG [4834]: Database connection successful -- 15:18:26.731 INFO [4834]: _SERVER found -- 15:18:26.731 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 15:18:26.731 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 15:18:26.731 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=7nqetiud7c50kd55nv0dd0522k3gras6 -- 15:18:26.731 INFO [4834]: QUERY_STRING = screen=member/ -- 15:18:26.731 INFO [4834]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:18:26.774 INFO [4834]: COREGRADE is stopping... -- 15:18:26.774 DEBUG [4834]: Closing database connection -- 15:18:26.775 SQL [4834]: pgsql_close() -- 15:18:26.971 INFO [4834]: COREGRADE is starting... -- 15:18:26.972 INFO [4834]: Version from config: 1.0 -- 15:18:26.972 DEBUG [4834]: Connecting to database... -- 15:18:26.972 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:18:26.972 SQL [4834]: pgsql_db_connect() -- 15:18:26.976 DEBUG [4834]: Database connection successful -- 15:18:26.976 INFO [4834]: _SERVER found -- 15:18:26.976 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 15:18:26.976 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 15:18:26.976 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=7nqetiud7c50kd55nv0dd0522k3gras6 -- 15:18:26.976 INFO [4834]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:18:26.976 INFO [4834]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:18:26.988 INFO [4834]: COREGRADE is stopping... -- 15:18:26.988 DEBUG [4834]: Closing database connection -- 15:18:26.988 SQL [4834]: pgsql_close() -- 15:18:29.349 INFO [4834]: COREGRADE is starting... -- 15:18:29.350 INFO [4834]: Version from config: 1.0 -- 15:18:29.350 DEBUG [4834]: Connecting to database... -- 15:18:29.350 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:18:29.350 SQL [4834]: pgsql_db_connect() -- 15:18:29.354 DEBUG [4834]: Database connection successful -- 15:18:29.354 INFO [4834]: _SERVER found -- 15:18:29.354 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 15:18:29.354 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 15:18:29.354 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=7nqetiud7c50kd55nv0dd0522k3gras6 -- 15:18:29.354 INFO [4834]: QUERY_STRING = /member/classroom -- 15:18:29.354 INFO [4834]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:18:29.399 INFO [4834]: COREGRADE is stopping... -- 15:18:29.399 DEBUG [4834]: Closing database connection -- 15:18:29.399 SQL [4834]: pgsql_close() -- 15:18:30.927 INFO [4834]: COREGRADE is starting... -- 15:18:30.927 INFO [4834]: Version from config: 1.0 -- 15:18:30.927 DEBUG [4834]: Connecting to database... -- 15:18:30.927 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:18:30.927 SQL [4834]: pgsql_db_connect() -- 15:18:30.931 DEBUG [4834]: Database connection successful -- 15:18:30.931 INFO [4834]: _SERVER found -- 15:18:30.931 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 15:18:30.931 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 15:18:30.931 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=7nqetiud7c50kd55nv0dd0522k3gras6 -- 15:18:30.931 INFO [4834]: QUERY_STRING = /member/viewRoom -- 15:18:30.931 INFO [4834]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:18:30.965 INFO [4834]: COREGRADE is stopping... -- 15:18:30.966 DEBUG [4834]: Closing database connection -- 15:18:30.966 SQL [4834]: pgsql_close() -- 15:21:45.989 INFO [7377]: COREGRADE is starting... -- 15:21:45.989 INFO [7377]: Version from config: 1.0 -- 15:21:45.989 DEBUG [7377]: Connecting to database... -- 15:21:45.989 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:21:45.989 SQL [7377]: pgsql_db_connect() -- 15:21:45.993 DEBUG [7377]: Database connection successful -- 15:21:45.993 INFO [7377]: _SERVER found -- 15:21:45.993 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 15:21:45.993 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 15:21:45.993 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=7nqetiud7c50kd55nv0dd0522k3gras6 -- 15:21:45.993 INFO [7377]: QUERY_STRING = /member/classroom -- 15:21:45.993 INFO [7377]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:21:46.037 INFO [7377]: COREGRADE is stopping... -- 15:21:46.037 DEBUG [7377]: Closing database connection -- 15:21:46.037 SQL [7377]: pgsql_close() -- 15:21:48.936 INFO [7377]: COREGRADE is starting... -- 15:21:48.936 INFO [7377]: Version from config: 1.0 -- 15:21:48.936 DEBUG [7377]: Connecting to database... -- 15:21:48.936 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:21:48.936 SQL [7377]: pgsql_db_connect() -- 15:21:48.941 DEBUG [7377]: Database connection successful -- 15:21:48.941 INFO [7377]: _SERVER found -- 15:21:48.941 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 15:21:48.941 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 15:21:48.941 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=7nqetiud7c50kd55nv0dd0522k3gras6 -- 15:21:48.941 INFO [7377]: QUERY_STRING = /member/classroom -- 15:21:48.941 INFO [7377]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:21:48.983 INFO [7377]: COREGRADE is stopping... -- 15:21:48.983 DEBUG [7377]: Closing database connection -- 15:21:48.983 SQL [7377]: pgsql_close() -- 15:21:49.280 INFO [7377]: COREGRADE is starting... -- 15:21:49.281 INFO [7377]: Version from config: 1.0 -- 15:21:49.281 DEBUG [7377]: Connecting to database... -- 15:21:49.281 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:21:49.281 SQL [7377]: pgsql_db_connect() -- 15:21:49.285 DEBUG [7377]: Database connection successful -- 15:21:49.285 INFO [7377]: _SERVER found -- 15:21:49.285 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 15:21:49.285 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 15:21:49.285 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=7nqetiud7c50kd55nv0dd0522k3gras6 -- 15:21:49.285 INFO [7377]: QUERY_STRING = /member/classroom -- 15:21:49.285 INFO [7377]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:21:49.327 INFO [7377]: COREGRADE is stopping... -- 15:21:49.327 DEBUG [7377]: Closing database connection -- 15:21:49.327 SQL [7377]: pgsql_close() -- 15:22:10.133 INFO [5685]: COREGRADE is starting... -- 15:22:10.133 INFO [5685]: Version from config: 1.0 -- 15:22:10.133 DEBUG [5685]: Connecting to database... -- 15:22:10.133 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:22:10.133 SQL [5685]: pgsql_db_connect() -- 15:22:10.137 DEBUG [5685]: Database connection successful -- 15:22:10.137 INFO [5685]: _SERVER found -- 15:22:10.137 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 15:22:10.137 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 15:22:10.137 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=7nqetiud7c50kd55nv0dd0522k3gras6 -- 15:22:10.137 INFO [5685]: QUERY_STRING = /member -- 15:22:10.137 INFO [5685]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:22:10.178 INFO [5685]: COREGRADE is stopping... -- 15:22:10.178 DEBUG [5685]: Closing database connection -- 15:22:10.178 SQL [5685]: pgsql_close() -- 15:32:42.396 INFO [5687]: COREGRADE is starting... -- 15:32:42.397 INFO [5687]: Version from config: 1.0 -- 15:32:42.397 DEBUG [5687]: Connecting to database... -- 15:32:42.397 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:32:42.397 SQL [5687]: pgsql_db_connect() -- 15:32:42.401 DEBUG [5687]: Database connection successful -- 15:32:42.401 INFO [5687]: _SERVER found -- 15:32:42.401 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 15:32:42.401 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 15:32:42.401 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=1lioijucfu8gdc0do7u4d7tnlm3k9vn6 -- 15:32:42.401 INFO [5687]: QUERY_STRING = -- 15:32:42.401 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:32:42.435 INFO [5687]: COREGRADE is stopping... -- 15:32:42.435 DEBUG [5687]: Closing database connection -- 15:32:42.435 SQL [5687]: pgsql_close() -- 15:32:42.604 INFO [5687]: COREGRADE is starting... -- 15:32:42.604 INFO [5687]: Version from config: 1.0 -- 15:32:42.604 DEBUG [5687]: Connecting to database... -- 15:32:42.604 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:32:42.604 SQL [5687]: pgsql_db_connect() -- 15:32:42.608 DEBUG [5687]: Database connection successful -- 15:32:42.608 INFO [5687]: _SERVER found -- 15:32:42.608 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 15:32:42.608 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 15:32:42.608 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=93lraov6gnb6mo2g6aeqf8gf9gjl5vnr -- 15:32:42.608 INFO [5687]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:32:42.608 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:32:42.620 INFO [5687]: COREGRADE is stopping... -- 15:32:42.620 DEBUG [5687]: Closing database connection -- 15:32:42.620 SQL [5687]: pgsql_close() -- 15:32:48.916 INFO [6508]: COREGRADE is starting... -- 15:32:48.917 INFO [6508]: Version from config: 1.0 -- 15:32:48.917 DEBUG [6508]: Connecting to database... -- 15:32:48.917 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:32:48.917 SQL [6508]: pgsql_db_connect() -- 15:32:48.921 DEBUG [6508]: Database connection successful -- 15:32:48.921 INFO [6508]: _SERVER found -- 15:32:48.921 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 15:32:48.921 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 15:32:48.921 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=93lraov6gnb6mo2g6aeqf8gf9gjl5vnr; _gat_gtag_UA_54829827_2=1 -- 15:32:48.921 INFO [6508]: QUERY_STRING = /home/howitworks -- 15:32:48.921 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:32:48.955 INFO [6508]: COREGRADE is stopping... -- 15:32:48.955 DEBUG [6508]: Closing database connection -- 15:32:48.955 SQL [6508]: pgsql_close() -- 15:32:49.230 INFO [6508]: COREGRADE is starting... -- 15:32:49.230 INFO [6508]: Version from config: 1.0 -- 15:32:49.231 DEBUG [6508]: Connecting to database... -- 15:32:49.231 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:32:49.231 SQL [6508]: pgsql_db_connect() -- 15:32:49.235 DEBUG [6508]: Database connection successful -- 15:32:49.235 INFO [6508]: _SERVER found -- 15:32:49.235 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 15:32:49.235 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 15:32:49.235 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=93lraov6gnb6mo2g6aeqf8gf9gjl5vnr; _gat_gtag_UA_54829827_2=1 -- 15:32:49.235 INFO [6508]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:32:49.235 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:32:49.246 INFO [6508]: COREGRADE is stopping... -- 15:32:49.246 DEBUG [6508]: Closing database connection -- 15:32:49.246 SQL [6508]: pgsql_close() -- 15:35:54.310 INFO [4251]: COREGRADE is starting... -- 15:35:54.311 INFO [4251]: Version from config: 1.0 -- 15:35:54.311 DEBUG [4251]: Connecting to database... -- 15:35:54.311 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:35:54.311 SQL [4251]: pgsql_db_connect() -- 15:35:54.315 DEBUG [4251]: Database connection successful -- 15:35:54.315 INFO [4251]: _SERVER found -- 15:35:54.315 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 15:35:54.315 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 15:35:54.315 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=7nqetiud7c50kd55nv0dd0522k3gras6 -- 15:35:54.315 INFO [4251]: QUERY_STRING = /member -- 15:35:54.315 INFO [4251]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:35:54.358 INFO [4251]: COREGRADE is stopping... -- 15:35:54.358 DEBUG [4251]: Closing database connection -- 15:35:54.358 SQL [4251]: pgsql_close() -- 15:35:54.516 INFO [4251]: COREGRADE is starting... -- 15:35:54.517 INFO [4251]: Version from config: 1.0 -- 15:35:54.517 DEBUG [4251]: Connecting to database... -- 15:35:54.517 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:35:54.517 SQL [4251]: pgsql_db_connect() -- 15:35:54.521 DEBUG [4251]: Database connection successful -- 15:35:54.521 INFO [4251]: _SERVER found -- 15:35:54.521 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 15:35:54.521 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 15:35:54.521 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=ipq9at3j5mtqsq6pj3fnktbb7e3qbail -- 15:35:54.521 INFO [4251]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:35:54.521 INFO [4251]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:35:54.532 INFO [4251]: COREGRADE is stopping... -- 15:35:54.532 DEBUG [4251]: Closing database connection -- 15:35:54.532 SQL [4251]: pgsql_close() -- 15:35:56.779 INFO [4251]: COREGRADE is starting... -- 15:35:56.779 INFO [4251]: Version from config: 1.0 -- 15:35:56.779 DEBUG [4251]: Connecting to database... -- 15:35:56.779 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:35:56.779 SQL [4251]: pgsql_db_connect() -- 15:35:56.783 DEBUG [4251]: Database connection successful -- 15:35:56.783 INFO [4251]: _SERVER found -- 15:35:56.783 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 15:35:56.783 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 15:35:56.783 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=ipq9at3j5mtqsq6pj3fnktbb7e3qbail -- 15:35:56.783 INFO [4251]: QUERY_STRING = /member -- 15:35:56.783 INFO [4251]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:35:56.823 INFO [4251]: COREGRADE is stopping... -- 15:35:56.823 DEBUG [4251]: Closing database connection -- 15:35:56.823 SQL [4251]: pgsql_close() -- 15:35:56.957 INFO [4251]: COREGRADE is starting... -- 15:35:56.957 INFO [4251]: Version from config: 1.0 -- 15:35:56.957 DEBUG [4251]: Connecting to database... -- 15:35:56.957 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:35:56.957 SQL [4251]: pgsql_db_connect() -- 15:35:56.961 DEBUG [4251]: Database connection successful -- 15:35:56.961 INFO [4251]: _SERVER found -- 15:35:56.961 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 15:35:56.961 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 15:35:56.961 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=ipq9at3j5mtqsq6pj3fnktbb7e3qbail -- 15:35:56.961 INFO [4251]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:35:56.961 INFO [4251]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:35:56.972 INFO [4251]: COREGRADE is stopping... -- 15:35:56.972 DEBUG [4251]: Closing database connection -- 15:35:56.972 SQL [4251]: pgsql_close() -- 15:36:41.396 INFO [4193]: COREGRADE is starting... -- 15:36:41.396 INFO [4193]: Version from config: 1.0 -- 15:36:41.396 DEBUG [4193]: Connecting to database... -- 15:36:41.396 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:36:41.396 SQL [4193]: pgsql_db_connect() -- 15:36:41.401 DEBUG [4193]: Database connection successful -- 15:36:41.401 INFO [4193]: _SERVER found -- 15:36:41.401 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 15:36:41.401 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 15:36:41.401 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=ipq9at3j5mtqsq6pj3fnktbb7e3qbail -- 15:36:41.401 INFO [4193]: QUERY_STRING = -- 15:36:41.401 INFO [4193]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:36:41.434 INFO [4193]: COREGRADE is stopping... -- 15:36:41.434 DEBUG [4193]: Closing database connection -- 15:36:41.434 SQL [4193]: pgsql_close() -- 15:36:41.652 INFO [4193]: COREGRADE is starting... -- 15:36:41.653 INFO [4193]: Version from config: 1.0 -- 15:36:41.653 DEBUG [4193]: Connecting to database... -- 15:36:41.653 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:36:41.653 SQL [4193]: pgsql_db_connect() -- 15:36:41.657 DEBUG [4193]: Database connection successful -- 15:36:41.657 INFO [4193]: _SERVER found -- 15:36:41.657 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 15:36:41.657 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 15:36:41.657 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=ipq9at3j5mtqsq6pj3fnktbb7e3qbail -- 15:36:41.657 INFO [4193]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:36:41.657 INFO [4193]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:36:41.669 INFO [4193]: COREGRADE is stopping... -- 15:36:41.669 DEBUG [4193]: Closing database connection -- 15:36:41.669 SQL [4193]: pgsql_close() -- 15:37:09.512 INFO [15006]: COREGRADE is starting... -- 15:37:09.512 INFO [15006]: Version from config: 1.0 -- 15:37:09.512 DEBUG [15006]: Connecting to database... -- 15:37:09.512 DEBUG [15006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:09.512 SQL [15006]: pgsql_db_connect() -- 15:37:09.516 DEBUG [15006]: Database connection successful -- 15:37:09.516 INFO [15006]: _SERVER found -- 15:37:09.516 INFO [15006]: REMOTE_ADDR = 10.0.0.15 -- 15:37:09.516 INFO [15006]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:09.516 INFO [15006]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=ipq9at3j5mtqsq6pj3fnktbb7e3qbail; _gat_gtag_UA_54829827_2=1 -- 15:37:09.516 INFO [15006]: QUERY_STRING = /home/howitworks -- 15:37:09.516 INFO [15006]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:09.550 INFO [15006]: COREGRADE is stopping... -- 15:37:09.550 DEBUG [15006]: Closing database connection -- 15:37:09.550 SQL [15006]: pgsql_close() -- 15:37:09.690 INFO [15006]: COREGRADE is starting... -- 15:37:09.690 INFO [15006]: Version from config: 1.0 -- 15:37:09.690 DEBUG [15006]: Connecting to database... -- 15:37:09.690 DEBUG [15006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:09.690 SQL [15006]: pgsql_db_connect() -- 15:37:09.694 DEBUG [15006]: Database connection successful -- 15:37:09.694 INFO [15006]: _SERVER found -- 15:37:09.694 INFO [15006]: REMOTE_ADDR = 10.0.0.15 -- 15:37:09.694 INFO [15006]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:09.694 INFO [15006]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=ipq9at3j5mtqsq6pj3fnktbb7e3qbail; _gat_gtag_UA_54829827_2=1 -- 15:37:09.694 INFO [15006]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:37:09.694 INFO [15006]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:37:09.706 INFO [15006]: COREGRADE is stopping... -- 15:37:09.706 DEBUG [15006]: Closing database connection -- 15:37:09.706 SQL [15006]: pgsql_close() -- 15:37:12.046 INFO [5686]: COREGRADE is starting... -- 15:37:12.046 INFO [5686]: Version from config: 1.0 -- 15:37:12.046 DEBUG [5686]: Connecting to database... -- 15:37:12.046 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:12.046 SQL [5686]: pgsql_db_connect() -- 15:37:12.050 DEBUG [5686]: Database connection successful -- 15:37:12.050 INFO [5686]: _SERVER found -- 15:37:12.050 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 15:37:12.050 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:12.050 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=93lraov6gnb6mo2g6aeqf8gf9gjl5vnr -- 15:37:12.050 INFO [5686]: QUERY_STRING = /member/page -- 15:37:12.050 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:37:12.094 INFO [5686]: COREGRADE is stopping... -- 15:37:12.094 DEBUG [5686]: Closing database connection -- 15:37:12.094 SQL [5686]: pgsql_close() -- 15:37:12.544 INFO [5686]: COREGRADE is starting... -- 15:37:12.544 INFO [5686]: Version from config: 1.0 -- 15:37:12.544 DEBUG [5686]: Connecting to database... -- 15:37:12.544 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:12.544 SQL [5686]: pgsql_db_connect() -- 15:37:12.548 DEBUG [5686]: Database connection successful -- 15:37:12.548 INFO [5686]: _SERVER found -- 15:37:12.548 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 15:37:12.548 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:12.548 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=93lraov6gnb6mo2g6aeqf8gf9gjl5vnr -- 15:37:12.548 INFO [5686]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:37:12.548 INFO [5686]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:37:12.560 INFO [5686]: COREGRADE is stopping... -- 15:37:12.560 DEBUG [5686]: Closing database connection -- 15:37:12.560 SQL [5686]: pgsql_close() -- 15:37:15.905 INFO [15006]: COREGRADE is starting... -- 15:37:15.905 INFO [15006]: Version from config: 1.0 -- 15:37:15.905 DEBUG [15006]: Connecting to database... -- 15:37:15.905 DEBUG [15006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:15.905 SQL [15006]: pgsql_db_connect() -- 15:37:15.909 DEBUG [15006]: Database connection successful -- 15:37:15.909 INFO [15006]: _SERVER found -- 15:37:15.909 INFO [15006]: REMOTE_ADDR = 10.0.0.15 -- 15:37:15.909 INFO [15006]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:15.909 INFO [15006]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=93lraov6gnb6mo2g6aeqf8gf9gjl5vnr -- 15:37:15.909 INFO [15006]: QUERY_STRING = -- 15:37:15.909 INFO [15006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:37:15.947 INFO [15006]: COREGRADE is stopping... -- 15:37:15.948 DEBUG [15006]: Closing database connection -- 15:37:15.948 SQL [15006]: pgsql_close() -- 15:37:16.245 INFO [15006]: COREGRADE is starting... -- 15:37:16.245 INFO [15006]: Version from config: 1.0 -- 15:37:16.245 DEBUG [15006]: Connecting to database... -- 15:37:16.245 DEBUG [15006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:16.245 SQL [15006]: pgsql_db_connect() -- 15:37:16.249 DEBUG [15006]: Database connection successful -- 15:37:16.249 INFO [15006]: _SERVER found -- 15:37:16.249 INFO [15006]: REMOTE_ADDR = 10.0.0.15 -- 15:37:16.249 INFO [15006]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:16.249 INFO [15006]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=93lraov6gnb6mo2g6aeqf8gf9gjl5vnr -- 15:37:16.249 INFO [15006]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:37:16.249 INFO [15006]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:37:16.261 INFO [15006]: COREGRADE is stopping... -- 15:37:16.261 DEBUG [15006]: Closing database connection -- 15:37:16.261 SQL [15006]: pgsql_close() -- 15:38:42.186 INFO [5697]: COREGRADE is starting... -- 15:38:42.186 INFO [5697]: Version from config: 1.0 -- 15:38:42.186 DEBUG [5697]: Connecting to database... -- 15:38:42.186 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:38:42.186 SQL [5697]: pgsql_db_connect() -- 15:38:42.191 DEBUG [5697]: Database connection successful -- 15:38:42.191 INFO [5697]: _SERVER found -- 15:38:42.191 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 15:38:42.191 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 15:38:42.191 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=93lraov6gnb6mo2g6aeqf8gf9gjl5vnr -- 15:38:42.191 INFO [5697]: QUERY_STRING = /home/howitworks -- 15:38:42.191 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:38:42.223 INFO [5697]: COREGRADE is stopping... -- 15:38:42.223 DEBUG [5697]: Closing database connection -- 15:38:42.223 SQL [5697]: pgsql_close() -- 15:38:42.446 INFO [5697]: COREGRADE is starting... -- 15:38:42.446 INFO [5697]: Version from config: 1.0 -- 15:38:42.446 DEBUG [5697]: Connecting to database... -- 15:38:42.446 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:38:42.446 SQL [5697]: pgsql_db_connect() -- 15:38:42.450 DEBUG [5697]: Database connection successful -- 15:38:42.450 INFO [5697]: _SERVER found -- 15:38:42.450 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 15:38:42.450 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 15:38:42.450 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=s6jv3g2ae42ts2pl99bm2nvrubrf2o5i -- 15:38:42.450 INFO [5697]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:38:42.450 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:38:42.461 INFO [5697]: COREGRADE is stopping... -- 15:38:42.461 DEBUG [5697]: Closing database connection -- 15:38:42.461 SQL [5697]: pgsql_close() -- 15:38:44.604 INFO [5697]: COREGRADE is starting... -- 15:38:44.604 INFO [5697]: Version from config: 1.0 -- 15:38:44.604 DEBUG [5697]: Connecting to database... -- 15:38:44.604 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:38:44.604 SQL [5697]: pgsql_db_connect() -- 15:38:44.608 DEBUG [5697]: Database connection successful -- 15:38:44.608 INFO [5697]: _SERVER found -- 15:38:44.608 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 15:38:44.608 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 15:38:44.608 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=ipq9at3j5mtqsq6pj3fnktbb7e3qbail -- 15:38:44.608 INFO [5697]: QUERY_STRING = /home/howitworks -- 15:38:44.608 INFO [5697]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:38:44.639 INFO [5697]: COREGRADE is stopping... -- 15:38:44.639 DEBUG [5697]: Closing database connection -- 15:38:44.639 SQL [5697]: pgsql_close() -- 15:38:44.737 INFO [5697]: COREGRADE is starting... -- 15:38:44.737 INFO [5697]: Version from config: 1.0 -- 15:38:44.737 DEBUG [5697]: Connecting to database... -- 15:38:44.737 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:38:44.737 SQL [5697]: pgsql_db_connect() -- 15:38:44.741 DEBUG [5697]: Database connection successful -- 15:38:44.741 INFO [5697]: _SERVER found -- 15:38:44.741 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 15:38:44.741 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 15:38:44.741 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=ipq9at3j5mtqsq6pj3fnktbb7e3qbail -- 15:38:44.741 INFO [5697]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:38:44.741 INFO [5697]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:38:44.753 INFO [5697]: COREGRADE is stopping... -- 15:38:44.753 DEBUG [5697]: Closing database connection -- 15:38:44.753 SQL [5697]: pgsql_close() -- 15:43:55.567 INFO [4834]: COREGRADE is starting... -- 15:43:55.567 INFO [4834]: Version from config: 1.0 -- 15:43:55.567 DEBUG [4834]: Connecting to database... -- 15:43:55.567 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:43:55.567 SQL [4834]: pgsql_db_connect() -- 15:43:55.572 DEBUG [4834]: Database connection successful -- 15:43:55.572 INFO [4834]: _SERVER found -- 15:43:55.572 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 15:43:55.572 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 15:43:55.572 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=ipq9at3j5mtqsq6pj3fnktbb7e3qbail -- 15:43:55.572 INFO [4834]: QUERY_STRING = /home/howitworks -- 15:43:55.572 INFO [4834]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:43:55.609 INFO [4834]: COREGRADE is stopping... -- 15:43:55.609 DEBUG [4834]: Closing database connection -- 15:43:55.609 SQL [4834]: pgsql_close() -- 15:43:55.835 INFO [4834]: COREGRADE is starting... -- 15:43:55.835 INFO [4834]: Version from config: 1.0 -- 15:43:55.835 DEBUG [4834]: Connecting to database... -- 15:43:55.835 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:43:55.835 SQL [4834]: pgsql_db_connect() -- 15:43:55.840 DEBUG [4834]: Database connection successful -- 15:43:55.840 INFO [4834]: _SERVER found -- 15:43:55.840 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 15:43:55.840 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 15:43:55.840 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=jk8tk9l28dlnq109pt6vishp6n9ceeg4 -- 15:43:55.840 INFO [4834]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:43:55.840 INFO [4834]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:43:55.852 INFO [4834]: COREGRADE is stopping... -- 15:43:55.852 DEBUG [4834]: Closing database connection -- 15:43:55.852 SQL [4834]: pgsql_close() -- 15:47:47.068 INFO [7377]: COREGRADE is starting... -- 15:47:47.068 INFO [7377]: Version from config: 1.0 -- 15:47:47.068 DEBUG [7377]: Connecting to database... -- 15:47:47.068 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:47:47.068 SQL [7377]: pgsql_db_connect() -- 15:47:47.072 DEBUG [7377]: Database connection successful -- 15:47:47.072 INFO [7377]: _SERVER found -- 15:47:47.072 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 15:47:47.072 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 15:47:47.072 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=jk8tk9l28dlnq109pt6vishp6n9ceeg4 -- 15:47:47.072 INFO [7377]: QUERY_STRING = /home/howitworks -- 15:47:47.072 INFO [7377]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:47:47.106 INFO [7377]: COREGRADE is stopping... -- 15:47:47.106 DEBUG [7377]: Closing database connection -- 15:47:47.106 SQL [7377]: pgsql_close() -- 15:47:47.288 INFO [7377]: COREGRADE is starting... -- 15:47:47.289 INFO [7377]: Version from config: 1.0 -- 15:47:47.289 DEBUG [7377]: Connecting to database... -- 15:47:47.289 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:47:47.289 SQL [7377]: pgsql_db_connect() -- 15:47:47.293 DEBUG [7377]: Database connection successful -- 15:47:47.293 INFO [7377]: _SERVER found -- 15:47:47.293 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 15:47:47.293 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 15:47:47.293 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=jk8tk9l28dlnq109pt6vishp6n9ceeg4 -- 15:47:47.293 INFO [7377]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:47:47.293 INFO [7377]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:47:47.304 INFO [7377]: COREGRADE is stopping... -- 15:47:47.304 DEBUG [7377]: Closing database connection -- 15:47:47.304 SQL [7377]: pgsql_close() -- 15:50:10.117 INFO [5685]: COREGRADE is starting... -- 15:50:10.117 INFO [5685]: Version from config: 1.0 -- 15:50:10.117 DEBUG [5685]: Connecting to database... -- 15:50:10.117 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:10.118 SQL [5685]: pgsql_db_connect() -- 15:50:10.122 DEBUG [5685]: Database connection successful -- 15:50:10.122 INFO [5685]: _SERVER found -- 15:50:10.122 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 15:50:10.122 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 15:50:10.122 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=jk8tk9l28dlnq109pt6vishp6n9ceeg4 -- 15:50:10.122 INFO [5685]: QUERY_STRING = /home/howitworks -- 15:50:10.122 INFO [5685]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:50:10.154 INFO [5685]: COREGRADE is stopping... -- 15:50:10.154 DEBUG [5685]: Closing database connection -- 15:50:10.154 SQL [5685]: pgsql_close() -- 15:50:10.301 INFO [5685]: COREGRADE is starting... -- 15:50:10.301 INFO [5685]: Version from config: 1.0 -- 15:50:10.301 DEBUG [5685]: Connecting to database... -- 15:50:10.301 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:10.301 SQL [5685]: pgsql_db_connect() -- 15:50:10.306 DEBUG [5685]: Database connection successful -- 15:50:10.306 INFO [5685]: _SERVER found -- 15:50:10.306 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 15:50:10.306 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 15:50:10.306 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=n0pil1dp14mf0i072nkjlulsb0bimlci -- 15:50:10.306 INFO [5685]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:50:10.306 INFO [5685]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:50:10.317 INFO [5685]: COREGRADE is stopping... -- 15:50:10.317 DEBUG [5685]: Closing database connection -- 15:50:10.317 SQL [5685]: pgsql_close() -- 15:51:03.950 INFO [5687]: COREGRADE is starting... -- 15:51:03.950 INFO [5687]: Version from config: 1.0 -- 15:51:03.950 DEBUG [5687]: Connecting to database... -- 15:51:03.950 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:51:03.950 SQL [5687]: pgsql_db_connect() -- 15:51:03.954 DEBUG [5687]: Database connection successful -- 15:51:03.954 INFO [5687]: _SERVER found -- 15:51:03.954 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 15:51:03.954 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 15:51:03.954 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=s6jv3g2ae42ts2pl99bm2nvrubrf2o5i -- 15:51:03.954 INFO [5687]: QUERY_STRING = /home/howitworks -- 15:51:03.954 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:51:03.987 INFO [5687]: COREGRADE is stopping... -- 15:51:03.987 DEBUG [5687]: Closing database connection -- 15:51:03.987 SQL [5687]: pgsql_close() -- 15:51:04.212 INFO [5687]: COREGRADE is starting... -- 15:51:04.212 INFO [5687]: Version from config: 1.0 -- 15:51:04.212 DEBUG [5687]: Connecting to database... -- 15:51:04.212 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:51:04.212 SQL [5687]: pgsql_db_connect() -- 15:51:04.216 DEBUG [5687]: Database connection successful -- 15:51:04.216 INFO [5687]: _SERVER found -- 15:51:04.216 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 15:51:04.216 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 15:51:04.216 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=p4h2tjb97ape3juai9ce7vag6fkdp4d5 -- 15:51:04.216 INFO [5687]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:51:04.216 INFO [5687]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:51:04.228 INFO [5687]: COREGRADE is stopping... -- 15:51:04.228 DEBUG [5687]: Closing database connection -- 15:51:04.228 SQL [5687]: pgsql_close() -- 15:52:05.381 INFO [6508]: COREGRADE is starting... -- 15:52:05.381 INFO [6508]: Version from config: 1.0 -- 15:52:05.381 DEBUG [6508]: Connecting to database... -- 15:52:05.382 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:52:05.382 SQL [6508]: pgsql_db_connect() -- 15:52:05.386 DEBUG [6508]: Database connection successful -- 15:52:05.386 INFO [6508]: _SERVER found -- 15:52:05.386 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 15:52:05.386 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 15:52:05.386 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=p4h2tjb97ape3juai9ce7vag6fkdp4d5 -- 15:52:05.386 INFO [6508]: QUERY_STRING = -- 15:52:05.386 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:52:05.419 INFO [6508]: COREGRADE is stopping... -- 15:52:05.419 DEBUG [6508]: Closing database connection -- 15:52:05.419 SQL [6508]: pgsql_close() -- 15:52:05.579 INFO [6508]: COREGRADE is starting... -- 15:52:05.579 INFO [6508]: Version from config: 1.0 -- 15:52:05.579 DEBUG [6508]: Connecting to database... -- 15:52:05.579 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:52:05.579 SQL [6508]: pgsql_db_connect() -- 15:52:05.583 DEBUG [6508]: Database connection successful -- 15:52:05.583 INFO [6508]: _SERVER found -- 15:52:05.583 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 15:52:05.583 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 15:52:05.583 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=p4h2tjb97ape3juai9ce7vag6fkdp4d5 -- 15:52:05.583 INFO [6508]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:52:05.583 INFO [6508]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:52:05.595 INFO [6508]: COREGRADE is stopping... -- 15:52:05.595 DEBUG [6508]: Closing database connection -- 15:52:05.595 SQL [6508]: pgsql_close() -- 15:52:11.995 INFO [4251]: COREGRADE is starting... -- 15:52:11.995 INFO [4251]: Version from config: 1.0 -- 15:52:11.995 DEBUG [4251]: Connecting to database... -- 15:52:11.995 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:52:11.995 SQL [4251]: pgsql_db_connect() -- 15:52:11.999 DEBUG [4251]: Database connection successful -- 15:52:11.999 INFO [4251]: _SERVER found -- 15:52:11.999 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 15:52:11.999 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 15:52:11.999 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=p4h2tjb97ape3juai9ce7vag6fkdp4d5; _gat_gtag_UA_54829827_2=1 -- 15:52:11.999 INFO [4251]: QUERY_STRING = /home/howitworks -- 15:52:11.999 INFO [4251]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:52:12.032 INFO [4251]: COREGRADE is stopping... -- 15:52:12.032 DEBUG [4251]: Closing database connection -- 15:52:12.032 SQL [4251]: pgsql_close() -- 15:52:12.209 INFO [4251]: COREGRADE is starting... -- 15:52:12.209 INFO [4251]: Version from config: 1.0 -- 15:52:12.209 DEBUG [4251]: Connecting to database... -- 15:52:12.209 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:52:12.209 SQL [4251]: pgsql_db_connect() -- 15:52:12.213 DEBUG [4251]: Database connection successful -- 15:52:12.213 INFO [4251]: _SERVER found -- 15:52:12.213 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 15:52:12.213 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 15:52:12.213 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=p4h2tjb97ape3juai9ce7vag6fkdp4d5; _gat_gtag_UA_54829827_2=1 -- 15:52:12.213 INFO [4251]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:52:12.213 INFO [4251]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:52:12.225 INFO [4251]: COREGRADE is stopping... -- 15:52:12.225 DEBUG [4251]: Closing database connection -- 15:52:12.225 SQL [4251]: pgsql_close() -- 16:25:58.019 INFO [15006]: COREGRADE is starting... -- 16:25:58.020 INFO [15006]: Version from config: 1.0 -- 16:25:58.020 DEBUG [15006]: Connecting to database... -- 16:25:58.020 DEBUG [15006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:58.020 SQL [15006]: pgsql_db_connect() -- 16:25:58.025 DEBUG [15006]: Database connection successful -- 16:25:58.025 INFO [15006]: _SERVER found -- 16:25:58.025 INFO [15006]: REMOTE_ADDR = 10.0.0.15 -- 16:25:58.025 INFO [15006]: SERVER_NAME = oameye.works.coregrade.com -- 16:25:58.025 INFO [15006]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=n0pil1dp14mf0i072nkjlulsb0bimlci -- 16:25:58.025 INFO [15006]: QUERY_STRING = -- 16:25:58.025 INFO [15006]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:58.060 INFO [15006]: COREGRADE is stopping... -- 16:25:58.060 DEBUG [15006]: Closing database connection -- 16:25:58.060 SQL [15006]: pgsql_close() -- 16:25:58.171 INFO [15006]: COREGRADE is starting... -- 16:25:58.171 INFO [15006]: Version from config: 1.0 -- 16:25:58.171 DEBUG [15006]: Connecting to database... -- 16:25:58.171 DEBUG [15006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:58.171 SQL [15006]: pgsql_db_connect() -- 16:25:58.175 DEBUG [15006]: Database connection successful -- 16:25:58.175 INFO [15006]: _SERVER found -- 16:25:58.175 INFO [15006]: REMOTE_ADDR = 10.0.0.15 -- 16:25:58.175 INFO [15006]: SERVER_NAME = oameye.works.coregrade.com -- 16:25:58.175 INFO [15006]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=kqpskdql2s68m2pbhddu0guom7r38uon -- 16:25:58.175 INFO [15006]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:25:58.175 INFO [15006]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:25:58.186 INFO [15006]: COREGRADE is stopping... -- 16:25:58.186 DEBUG [15006]: Closing database connection -- 16:25:58.186 SQL [15006]: pgsql_close() -- 16:26:01.147 INFO [15006]: COREGRADE is starting... -- 16:26:01.148 INFO [15006]: Version from config: 1.0 -- 16:26:01.148 DEBUG [15006]: Connecting to database... -- 16:26:01.148 DEBUG [15006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:01.148 SQL [15006]: pgsql_db_connect() -- 16:26:01.152 DEBUG [15006]: Database connection successful -- 16:26:01.152 INFO [15006]: _SERVER found -- 16:26:01.152 INFO [15006]: REMOTE_ADDR = 10.0.0.15 -- 16:26:01.152 INFO [15006]: SERVER_NAME = oameye.works.coregrade.com -- 16:26:01.152 INFO [15006]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=kqpskdql2s68m2pbhddu0guom7r38uon; _gat_gtag_UA_54829827_2=1 -- 16:26:01.152 INFO [15006]: QUERY_STRING = /welcome/viewLogin -- 16:26:01.152 INFO [15006]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:01.183 INFO [15006]: COREGRADE is stopping... -- 16:26:01.183 DEBUG [15006]: Closing database connection -- 16:26:01.183 SQL [15006]: pgsql_close() -- 16:26:01.195 INFO [15006]: COREGRADE is starting... -- 16:26:01.196 INFO [15006]: Version from config: 1.0 -- 16:26:01.196 DEBUG [15006]: Connecting to database... -- 16:26:01.196 DEBUG [15006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:01.196 SQL [15006]: pgsql_db_connect() -- 16:26:01.200 DEBUG [15006]: Database connection successful -- 16:26:01.200 INFO [15006]: _SERVER found -- 16:26:01.200 INFO [15006]: REMOTE_ADDR = 10.0.0.15 -- 16:26:01.200 INFO [15006]: SERVER_NAME = oameye.works.coregrade.com -- 16:26:01.200 INFO [15006]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=kqpskdql2s68m2pbhddu0guom7r38uon; _gat_gtag_UA_54829827_2=1 -- 16:26:01.200 INFO [15006]: QUERY_STRING = /auth -- 16:26:01.200 INFO [15006]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:01.231 INFO [15006]: COREGRADE is stopping... -- 16:26:01.231 DEBUG [15006]: Closing database connection -- 16:26:01.231 SQL [15006]: pgsql_close() -- 16:26:01.241 INFO [15006]: COREGRADE is starting... -- 16:26:01.241 INFO [15006]: Version from config: 1.0 -- 16:26:01.241 DEBUG [15006]: Connecting to database... -- 16:26:01.241 DEBUG [15006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:01.241 SQL [15006]: pgsql_db_connect() -- 16:26:01.246 DEBUG [15006]: Database connection successful -- 16:26:01.246 INFO [15006]: _SERVER found -- 16:26:01.246 INFO [15006]: REMOTE_ADDR = 10.0.0.15 -- 16:26:01.246 INFO [15006]: SERVER_NAME = oameye.works.coregrade.com -- 16:26:01.246 INFO [15006]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=kqpskdql2s68m2pbhddu0guom7r38uon; _gat_gtag_UA_54829827_2=1 -- 16:26:01.246 INFO [15006]: QUERY_STRING = /auth/index -- 16:26:01.246 INFO [15006]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:01.277 INFO [15006]: COREGRADE is stopping... -- 16:26:01.277 DEBUG [15006]: Closing database connection -- 16:26:01.277 SQL [15006]: pgsql_close() -- 16:26:13.012 INFO [5697]: COREGRADE is starting... -- 16:26:13.012 INFO [5697]: Version from config: 1.0 -- 16:26:13.012 DEBUG [5697]: Connecting to database... -- 16:26:13.012 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:13.012 SQL [5697]: pgsql_db_connect() -- 16:26:13.016 DEBUG [5697]: Database connection successful -- 16:26:13.016 INFO [5697]: _SERVER found -- 16:26:13.016 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 16:26:13.016 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 16:26:13.016 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=kqpskdql2s68m2pbhddu0guom7r38uon; _gat_gtag_UA_54829827_2=1 -- 16:26:13.016 INFO [5697]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:26:13.016 INFO [5697]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:13.029 INFO [5697]: COREGRADE is stopping... -- 16:26:13.029 DEBUG [5697]: Closing database connection -- 16:26:13.029 SQL [5697]: pgsql_close() -- 16:26:16.559 INFO [5697]: COREGRADE is starting... -- 16:26:16.559 INFO [5697]: Version from config: 1.0 -- 16:26:16.559 DEBUG [5697]: Connecting to database... -- 16:26:16.559 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:16.559 SQL [5697]: pgsql_db_connect() -- 16:26:16.594 INFO [5697]: COREGRADE is starting... -- 16:26:16.594 INFO [5697]: Version from config: 1.0 -- 16:26:16.594 DEBUG [5697]: Connecting to database... -- 16:26:16.594 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:16.594 SQL [5697]: pgsql_db_connect() -- 16:26:16.598 DEBUG [5697]: Database connection successful -- 16:26:16.598 INFO [5697]: _SERVER found -- 16:26:16.598 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 16:26:16.598 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 16:26:16.598 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=kqpskdql2s68m2pbhddu0guom7r38uon; _gat_gtag_UA_54829827_2=1 -- 16:26:16.598 INFO [5697]: QUERY_STRING = -- 16:26:16.598 INFO [5697]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:16.598 INFO [5697]: SystemStatus()09-09-********~************ -- 16:26:16.598 INFO [5697]: long coregrade_api_main(CVars in, CVars &out) -- 16:26:16.598 INFO [5697]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 16:26:16.598 INFO [5697]: account calls -- 16:26:16.598 INFO [5697]: account_calls() -- 16:26:16.598 INFO [5697]: LoginCoreGradeAccount() -- 16:26:16.598 FLOG_MAX [5697]: REQ_STRING(username) -- 16:26:16.599 FLOG_MAX [5697]: REQ_STRING(password) -- 16:26:16.599 FLOG_MAX [5697]: REQ_STRING(sessionid) -- 16:26:16.599 FLOG_MAX [5697]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:26:16.599 SQL [5697]: pgsql_query() -- 16:26:16.599 SQL [5697]: About to run query: -- 16:26:16.599 SQL [5697]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678') -- 16:26:16.603 SQL [5697]: Found rows: 1 -- 16:26:16.603 FLOG_MAX [5697]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678')) num_cols=16 -- 16:26:16.603 INFO [5697]: long SessionCheck(long uid, const char *sessionid, int create ) -- 16:26:16.603 SQL [5697]: pgsql_exec() -- 16:26:16.603 SQL [5697]: About to run query: -- 16:26:16.603 SQL [5697]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 16:26:16.604 SQL [5697]: PQcmdTuples: 1 -- 16:26:16.604 SQL [5697]: Affected rows: 1 -- 16:26:16.604 SQL [5697]: pgsql_exec() -- 16:26:16.604 SQL [5697]: About to run query: -- 16:26:16.604 SQL [5697]: DELETE FROM members_session WHERE member_id=7 -- 16:26:16.605 SQL [5697]: PQcmdTuples: 0 -- 16:26:16.605 SQL [5697]: Affected rows: 0 -- 16:26:16.605 SQL [5697]: pgsql_query() -- 16:26:16.605 SQL [5697]: About to run query: -- 16:26:16.605 SQL [5697]: SELECT * FROM members_session WHERE member_id=7 AND session<>'A30CEBD54F01CC39DA3EAF59A7ED59E0' -- 16:26:16.605 SQL [5697]: Found rows: 0 -- 16:26:16.605 SQL [5697]: Found rows: 0 -- 16:26:16.605 FLOG_MAX [5697]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:26:16.605 SQL [5697]: pgsql_query() -- 16:26:16.605 SQL [5697]: About to run query: -- 16:26:16.605 SQL [5697]: SELECT * FROM members_session WHERE member_id=7 AND session='A30CEBD54F01CC39DA3EAF59A7ED59E0' -- 16:26:16.606 SQL [5697]: Found rows: 0 -- 16:26:16.606 SQL [5697]: Found rows: 0 -- 16:26:16.606 FLOG_MAX [5697]: insert_db_record() -- 16:26:16.606 SQL [5697]: pgsql_exec() -- 16:26:16.606 SQL [5697]: About to run query: -- 16:26:16.606 SQL [5697]: INSERT INTO members_session (member_id,session) VALUES ('7','A30CEBD54F01CC39DA3EAF59A7ED59E0') -- 16:26:16.607 SQL [5697]: PQcmdTuples: 1 -- 16:26:16.607 SQL [5697]: Affected rows: 1 -- 16:26:16.607 FLOG_MAX [5697]: SELECT currval('members_session_id_seq') -- 16:26:16.607 SQL [5697]: pgsql_query() -- 16:26:16.607 SQL [5697]: About to run query: -- 16:26:16.607 SQL [5697]: SELECT currval('members_session_id_seq') -- 16:26:16.607 SQL [5697]: Found rows: 1 -- 16:26:16.608 INFO [5697]: CreateDefaultPage() -- 16:26:16.608 FLOG_MAX [5697]: long load_db_record( CVars &rec, const char * query, ... ) -- 16:26:16.608 SQL [5697]: pgsql_query() -- 16:26:16.608 SQL [5697]: About to run query: -- 16:26:16.608 SQL [5697]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 16:26:16.608 SQL [5697]: Found rows: 1 -- 16:26:16.608 FLOG_MAX [5697]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 16:26:16.608 SQL [5697]: pgsql_query() -- 16:26:16.608 SQL [5697]: About to run query: -- 16:26:16.608 SQL [5697]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 16:26:16.608 SQL [5697]: Found rows: 1 -- 16:26:16.608 INFO [5697]: /CreateDefaultPage() -- 16:26:16.608 INFO [5697]: /LoginCoreGradeAccount() -- 16:26:16.608 INFO [5697]: RET: added=2020-02-05 09:42:12.816064 -- 16:26:16.608 INFO [5697]: RET: email=tokslaw@chiefsoft.com -- 16:26:16.608 INFO [5697]: RET: firstname=Tokunbo -- 16:26:16.608 INFO [5697]: RET: folder=5D06B187B1E2285A63AD1D0ECB670D98 -- 16:26:16.608 INFO [5697]: RET: id=7 -- 16:26:16.608 INFO [5697]: RET: last_login= -- 16:26:16.608 INFO [5697]: RET: lastname=Lawal -- 16:26:16.608 INFO [5697]: RET: loc=192.168.1.13 -- 16:26:16.608 INFO [5697]: RET: member_id=7 -- 16:26:16.608 INFO [5697]: RET: password=25d55ad283aa400af464c76d713c07ad -- 16:26:16.608 INFO [5697]: RET: phone= -- 16:26:16.608 INFO [5697]: RET: pid= -- 16:26:16.608 INFO [5697]: RET: result=YES I GET TO BACK END -- 16:26:16.608 INFO [5697]: RET: sessionid=A30CEBD54F01CC39DA3EAF59A7ED59E0 -- 16:26:16.608 INFO [5697]: RET: status=1 -- 16:26:16.608 INFO [5697]: RET: stauts=OK -- 16:26:16.608 INFO [5697]: RET: username=tokslaw@chiefsoft.com -- 16:26:16.608 INFO [5697]: RET: verified= -- 16:26:16.610 INFO [5697]: COREGRADE is stopping... -- 16:26:16.610 DEBUG [5697]: Closing database connection -- 16:26:16.610 SQL [5697]: pgsql_close() -- 16:26:16.563 DEBUG [5697]: Database connection successful -- 16:26:16.563 INFO [5697]: _SERVER found -- 16:26:16.563 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 16:26:16.563 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 16:26:16.563 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=kqpskdql2s68m2pbhddu0guom7r38uon; _gat_gtag_UA_54829827_2=1 -- 16:26:16.563 INFO [5697]: QUERY_STRING = /auth -- 16:26:16.563 INFO [5697]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:16.610 INFO [5697]: COREGRADE is stopping... -- 16:26:16.610 DEBUG [5697]: Closing database connection -- 16:26:16.610 SQL [5697]: pgsql_close() -- 16:26:16.631 INFO [5697]: COREGRADE is starting... -- 16:26:16.632 INFO [5697]: Version from config: 1.0 -- 16:26:16.632 DEBUG [5697]: Connecting to database... -- 16:26:16.632 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:16.632 SQL [5697]: pgsql_db_connect() -- 16:26:16.636 DEBUG [5697]: Database connection successful -- 16:26:16.636 INFO [5697]: _SERVER found -- 16:26:16.636 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 16:26:16.636 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 16:26:16.636 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=kqpskdql2s68m2pbhddu0guom7r38uon; _gat_gtag_UA_54829827_2=1 -- 16:26:16.636 INFO [5697]: QUERY_STRING = /member/index -- 16:26:16.636 INFO [5697]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:16.676 INFO [5697]: COREGRADE is stopping... -- 16:26:16.676 DEBUG [5697]: Closing database connection -- 16:26:16.676 SQL [5697]: pgsql_close() -- 16:26:17.016 INFO [5697]: COREGRADE is starting... -- 16:26:17.016 INFO [5697]: Version from config: 1.0 -- 16:26:17.016 DEBUG [5697]: Connecting to database... -- 16:26:17.016 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:17.016 SQL [5697]: pgsql_db_connect() -- 16:26:17.020 DEBUG [5697]: Database connection successful -- 16:26:17.020 INFO [5697]: _SERVER found -- 16:26:17.020 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 16:26:17.020 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 16:26:17.020 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=kqpskdql2s68m2pbhddu0guom7r38uon; _gat_gtag_UA_54829827_2=1 -- 16:26:17.020 INFO [5697]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:26:17.020 INFO [5697]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:17.032 INFO [5697]: COREGRADE is stopping... -- 16:26:17.032 DEBUG [5697]: Closing database connection -- 16:26:17.032 SQL [5697]: pgsql_close() -- 16:26:59.546 INFO [4834]: COREGRADE is starting... -- 16:26:59.547 INFO [4834]: Version from config: 1.0 -- 16:26:59.547 DEBUG [4834]: Connecting to database... -- 16:26:59.547 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:59.547 SQL [4834]: pgsql_db_connect() -- 16:26:59.551 DEBUG [4834]: Database connection successful -- 16:26:59.551 INFO [4834]: _SERVER found -- 16:26:59.551 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 16:26:59.551 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 16:26:59.551 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=kqpskdql2s68m2pbhddu0guom7r38uon -- 16:26:59.551 INFO [4834]: QUERY_STRING = /member/page -- 16:26:59.551 INFO [4834]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:59.600 INFO [4834]: COREGRADE is stopping... -- 16:26:59.600 DEBUG [4834]: Closing database connection -- 16:26:59.600 SQL [4834]: pgsql_close() -- 16:26:59.809 INFO [4834]: COREGRADE is starting... -- 16:26:59.809 INFO [4834]: Version from config: 1.0 -- 16:26:59.809 DEBUG [4834]: Connecting to database... -- 16:26:59.809 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:59.809 SQL [4834]: pgsql_db_connect() -- 16:26:59.813 DEBUG [4834]: Database connection successful -- 16:26:59.813 INFO [4834]: _SERVER found -- 16:26:59.813 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 16:26:59.813 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 16:26:59.813 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=kqpskdql2s68m2pbhddu0guom7r38uon -- 16:26:59.813 INFO [4834]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:26:59.813 INFO [4834]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:26:59.825 INFO [4834]: COREGRADE is stopping... -- 16:26:59.825 DEBUG [4834]: Closing database connection -- 16:26:59.825 SQL [4834]: pgsql_close() -- 16:29:08.125 INFO [7377]: COREGRADE is starting... -- 16:29:08.125 INFO [7377]: Version from config: 1.0 -- 16:29:08.125 DEBUG [7377]: Connecting to database... -- 16:29:08.125 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:29:08.125 SQL [7377]: pgsql_db_connect() -- 16:29:08.130 DEBUG [7377]: Database connection successful -- 16:29:08.130 INFO [7377]: _SERVER found -- 16:29:08.130 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 16:29:08.130 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 16:29:08.130 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938 -- 16:29:08.130 INFO [7377]: QUERY_STRING = -- 16:29:08.130 INFO [7377]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:29:08.163 INFO [7377]: COREGRADE is stopping... -- 16:29:08.163 DEBUG [7377]: Closing database connection -- 16:29:08.163 SQL [7377]: pgsql_close() -- 16:29:08.382 INFO [7377]: COREGRADE is starting... -- 16:29:08.382 INFO [7377]: Version from config: 1.0 -- 16:29:08.382 DEBUG [7377]: Connecting to database... -- 16:29:08.382 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:29:08.382 SQL [7377]: pgsql_db_connect() -- 16:29:08.387 DEBUG [7377]: Database connection successful -- 16:29:08.387 INFO [7377]: _SERVER found -- 16:29:08.387 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 16:29:08.387 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 16:29:08.387 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=c1poq2n7ohl4u283hjbnpfdl713nrm1p -- 16:29:08.387 INFO [7377]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:29:08.387 INFO [7377]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:29:08.398 INFO [7377]: COREGRADE is stopping... -- 16:29:08.398 DEBUG [7377]: Closing database connection -- 16:29:08.398 SQL [7377]: pgsql_close() -- 16:29:11.829 INFO [7377]: COREGRADE is starting... -- 16:29:11.829 INFO [7377]: Version from config: 1.0 -- 16:29:11.829 DEBUG [7377]: Connecting to database... -- 16:29:11.829 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:29:11.829 SQL [7377]: pgsql_db_connect() -- 16:29:11.833 DEBUG [7377]: Database connection successful -- 16:29:11.833 INFO [7377]: _SERVER found -- 16:29:11.833 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 16:29:11.833 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 16:29:11.833 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=c1poq2n7ohl4u283hjbnpfdl713nrm1p; _gat_gtag_UA_54829827_2=1 -- 16:29:11.833 INFO [7377]: QUERY_STRING = -- 16:29:11.833 INFO [7377]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:29:11.865 INFO [7377]: COREGRADE is stopping... -- 16:29:11.865 DEBUG [7377]: Closing database connection -- 16:29:11.865 SQL [7377]: pgsql_close() -- 16:30:32.352 INFO [5685]: COREGRADE is starting... -- 16:30:32.352 INFO [5685]: Version from config: 1.0 -- 16:30:32.352 DEBUG [5685]: Connecting to database... -- 16:30:32.352 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:30:32.352 SQL [5685]: pgsql_db_connect() -- 16:30:32.356 DEBUG [5685]: Database connection successful -- 16:30:32.356 INFO [5685]: _SERVER found -- 16:30:32.356 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 16:30:32.356 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 16:30:32.356 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=kqpskdql2s68m2pbhddu0guom7r38uon -- 16:30:32.356 INFO [5685]: QUERY_STRING = /member -- 16:30:32.356 INFO [5685]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:30:32.399 INFO [5685]: COREGRADE is stopping... -- 16:30:32.399 DEBUG [5685]: Closing database connection -- 16:30:32.399 SQL [5685]: pgsql_close() -- 16:30:32.509 INFO [5685]: COREGRADE is starting... -- 16:30:32.509 INFO [5685]: Version from config: 1.0 -- 16:30:32.509 DEBUG [5685]: Connecting to database... -- 16:30:32.509 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:30:32.509 SQL [5685]: pgsql_db_connect() -- 16:30:32.513 DEBUG [5685]: Database connection successful -- 16:30:32.514 INFO [5685]: _SERVER found -- 16:30:32.514 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 16:30:32.514 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 16:30:32.514 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=kqpskdql2s68m2pbhddu0guom7r38uon -- 16:30:32.514 INFO [5685]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:30:32.514 INFO [5685]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:30:32.525 INFO [5685]: COREGRADE is stopping... -- 16:30:32.525 DEBUG [5685]: Closing database connection -- 16:30:32.525 SQL [5685]: pgsql_close() -- 16:30:32.791 INFO [5685]: COREGRADE is starting... -- 16:30:32.791 INFO [5685]: Version from config: 1.0 -- 16:30:32.791 DEBUG [5685]: Connecting to database... -- 16:30:32.791 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:30:32.791 SQL [5685]: pgsql_db_connect() -- 16:30:32.795 DEBUG [5685]: Database connection successful -- 16:30:32.796 INFO [5685]: _SERVER found -- 16:30:32.796 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 16:30:32.796 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 16:30:32.796 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=kqpskdql2s68m2pbhddu0guom7r38uon -- 16:30:32.796 INFO [5685]: QUERY_STRING = /member/configure -- 16:30:32.796 INFO [5685]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:30:32.838 INFO [5685]: COREGRADE is stopping... -- 16:30:32.838 DEBUG [5685]: Closing database connection -- 16:30:32.838 SQL [5685]: pgsql_close() -- 16:30:32.985 INFO [5685]: COREGRADE is starting... -- 16:30:32.985 INFO [5685]: Version from config: 1.0 -- 16:30:32.985 DEBUG [5685]: Connecting to database... -- 16:30:32.985 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:30:32.985 SQL [5685]: pgsql_db_connect() -- 16:30:32.989 DEBUG [5685]: Database connection successful -- 16:30:32.990 INFO [5685]: _SERVER found -- 16:30:32.990 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 16:30:32.990 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 16:30:32.990 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=kqpskdql2s68m2pbhddu0guom7r38uon -- 16:30:32.990 INFO [5685]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 16:30:32.990 INFO [5685]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:30:32.001 INFO [5685]: COREGRADE is stopping... -- 16:30:32.001 DEBUG [5685]: Closing database connection -- 16:30:32.001 SQL [5685]: pgsql_close() -- 16:30:34.067 INFO [5685]: COREGRADE is starting... -- 16:30:34.067 INFO [5685]: Version from config: 1.0 -- 16:30:34.067 DEBUG [5685]: Connecting to database... -- 16:30:34.067 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:30:34.067 SQL [5685]: pgsql_db_connect() -- 16:30:34.071 DEBUG [5685]: Database connection successful -- 16:30:34.071 INFO [5685]: _SERVER found -- 16:30:34.071 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 16:30:34.071 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 16:30:34.071 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=kqpskdql2s68m2pbhddu0guom7r38uon -- 16:30:34.071 INFO [5685]: QUERY_STRING = /member -- 16:30:34.071 INFO [5685]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:30:34.111 INFO [5685]: COREGRADE is stopping... -- 16:30:34.111 DEBUG [5685]: Closing database connection -- 16:30:34.111 SQL [5685]: pgsql_close() -- 16:30:36.738 INFO [5685]: COREGRADE is starting... -- 16:30:36.739 INFO [5685]: Version from config: 1.0 -- 16:30:36.739 DEBUG [5685]: Connecting to database... -- 16:30:36.739 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:30:36.739 SQL [5685]: pgsql_db_connect() -- 16:30:36.743 DEBUG [5685]: Database connection successful -- 16:30:36.743 INFO [5685]: _SERVER found -- 16:30:36.743 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 16:30:36.743 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 16:30:36.743 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=kqpskdql2s68m2pbhddu0guom7r38uon -- 16:30:36.743 INFO [5685]: QUERY_STRING = /member/page -- 16:30:36.743 INFO [5685]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:30:36.784 INFO [5685]: COREGRADE is stopping... -- 16:30:36.784 DEBUG [5685]: Closing database connection -- 16:30:36.784 SQL [5685]: pgsql_close() -- 16:30:54.519 INFO [5687]: COREGRADE is starting... -- 16:30:54.519 INFO [5687]: Version from config: 1.0 -- 16:30:54.519 DEBUG [5687]: Connecting to database... -- 16:30:54.519 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:30:54.519 SQL [5687]: pgsql_db_connect() -- 16:30:54.523 DEBUG [5687]: Database connection successful -- 16:30:54.524 INFO [5687]: _SERVER found -- 16:30:54.524 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 16:30:54.524 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 16:30:54.524 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=kqpskdql2s68m2pbhddu0guom7r38uon -- 16:30:54.524 INFO [5687]: QUERY_STRING = /member -- 16:30:54.524 INFO [5687]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:30:54.565 INFO [5687]: COREGRADE is stopping... -- 16:30:54.565 DEBUG [5687]: Closing database connection -- 16:30:54.565 SQL [5687]: pgsql_close() -- 16:31:02.758 INFO [6508]: COREGRADE is starting... -- 16:31:02.758 INFO [6508]: Version from config: 1.0 -- 16:31:02.758 DEBUG [6508]: Connecting to database... -- 16:31:02.758 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:02.758 SQL [6508]: pgsql_db_connect() -- 16:31:02.762 DEBUG [6508]: Database connection successful -- 16:31:02.762 INFO [6508]: _SERVER found -- 16:31:02.762 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 16:31:02.762 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 16:31:02.762 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561 -- 16:31:02.762 INFO [6508]: QUERY_STRING = -- 16:31:02.762 INFO [6508]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:31:02.795 INFO [6508]: COREGRADE is stopping... -- 16:31:02.795 DEBUG [6508]: Closing database connection -- 16:31:02.795 SQL [6508]: pgsql_close() -- 16:31:02.989 INFO [6508]: COREGRADE is starting... -- 16:31:02.989 INFO [6508]: Version from config: 1.0 -- 16:31:02.989 DEBUG [6508]: Connecting to database... -- 16:31:02.989 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:02.989 SQL [6508]: pgsql_db_connect() -- 16:31:02.993 DEBUG [6508]: Database connection successful -- 16:31:02.993 INFO [6508]: _SERVER found -- 16:31:02.993 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 16:31:02.993 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 16:31:02.993 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=hkv5bki87bieoc1uvrngjn7gho8va251 -- 16:31:02.993 INFO [6508]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:31:02.993 INFO [6508]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:31:03.004 INFO [6508]: COREGRADE is stopping... -- 16:31:03.004 DEBUG [6508]: Closing database connection -- 16:31:03.004 SQL [6508]: pgsql_close() -- 16:31:04.973 INFO [4251]: COREGRADE is starting... -- 16:31:04.973 INFO [4251]: Version from config: 1.0 -- 16:31:04.973 DEBUG [4251]: Connecting to database... -- 16:31:04.973 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:04.973 SQL [4251]: pgsql_db_connect() -- 16:31:04.977 DEBUG [4251]: Database connection successful -- 16:31:04.977 INFO [4251]: _SERVER found -- 16:31:04.977 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 16:31:04.977 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 16:31:04.977 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=hkv5bki87bieoc1uvrngjn7gho8va251; _gat_gtag_UA_54829827_2=1 -- 16:31:04.977 INFO [4251]: QUERY_STRING = -- 16:31:04.977 INFO [4251]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:31:05.010 INFO [4251]: COREGRADE is stopping... -- 16:31:05.010 DEBUG [4251]: Closing database connection -- 16:31:05.010 SQL [4251]: pgsql_close() -- 16:31:17.360 INFO [5686]: COREGRADE is starting... -- 16:31:17.360 INFO [5686]: Version from config: 1.0 -- 16:31:17.360 DEBUG [5686]: Connecting to database... -- 16:31:17.360 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:17.360 SQL [5686]: pgsql_db_connect() -- 16:31:17.364 DEBUG [5686]: Database connection successful -- 16:31:17.364 INFO [5686]: _SERVER found -- 16:31:17.364 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 16:31:17.364 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 16:31:17.364 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=hkv5bki87bieoc1uvrngjn7gho8va251; _gat_gtag_UA_54829827_2=1 -- 16:31:17.364 INFO [5686]: QUERY_STRING = -- 16:31:17.364 INFO [5686]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:31:17.396 INFO [5686]: COREGRADE is stopping... -- 16:31:17.396 DEBUG [5686]: Closing database connection -- 16:31:17.396 SQL [5686]: pgsql_close() -- 16:31:18.067 INFO [5686]: COREGRADE is starting... -- 16:31:18.068 INFO [5686]: Version from config: 1.0 -- 16:31:18.068 DEBUG [5686]: Connecting to database... -- 16:31:18.068 DEBUG [5686]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:18.068 SQL [5686]: pgsql_db_connect() -- 16:31:18.072 DEBUG [5686]: Database connection successful -- 16:31:18.072 INFO [5686]: _SERVER found -- 16:31:18.072 INFO [5686]: REMOTE_ADDR = 10.0.0.15 -- 16:31:18.072 INFO [5686]: SERVER_NAME = oameye.works.coregrade.com -- 16:31:18.072 INFO [5686]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=hkv5bki87bieoc1uvrngjn7gho8va251; _gat_gtag_UA_54829827_2=1 -- 16:31:18.072 INFO [5686]: QUERY_STRING = -- 16:31:18.072 INFO [5686]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:31:18.103 INFO [5686]: COREGRADE is stopping... -- 16:31:18.103 DEBUG [5686]: Closing database connection -- 16:31:18.103 SQL [5686]: pgsql_close() -- 16:31:28.096 INFO [15006]: COREGRADE is starting... -- 16:31:28.096 INFO [15006]: Version from config: 1.0 -- 16:31:28.096 DEBUG [15006]: Connecting to database... -- 16:31:28.096 DEBUG [15006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:28.096 SQL [15006]: pgsql_db_connect() -- 16:31:28.101 DEBUG [15006]: Database connection successful -- 16:31:28.101 INFO [15006]: _SERVER found -- 16:31:28.101 INFO [15006]: REMOTE_ADDR = 10.0.0.15 -- 16:31:28.101 INFO [15006]: SERVER_NAME = oameye.works.coregrade.com -- 16:31:28.101 INFO [15006]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=kqpskdql2s68m2pbhddu0guom7r38uon -- 16:31:28.101 INFO [15006]: QUERY_STRING = /member/page -- 16:31:28.101 INFO [15006]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:31:28.145 INFO [15006]: COREGRADE is stopping... -- 16:31:28.145 DEBUG [15006]: Closing database connection -- 16:31:28.145 SQL [15006]: pgsql_close() -- 16:31:30.039 INFO [5697]: COREGRADE is starting... -- 16:31:30.040 INFO [5697]: Version from config: 1.0 -- 16:31:30.040 DEBUG [5697]: Connecting to database... -- 16:31:30.040 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:30.040 SQL [5697]: pgsql_db_connect() -- 16:31:30.044 DEBUG [5697]: Database connection successful -- 16:31:30.044 INFO [5697]: _SERVER found -- 16:31:30.044 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 16:31:30.044 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 16:31:30.044 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=8v6buvjfaf27s5drqi66im53n0gnv7un -- 16:31:30.044 INFO [5697]: QUERY_STRING = /home/faq -- 16:31:30.044 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:31:30.078 INFO [5697]: COREGRADE is stopping... -- 16:31:30.078 DEBUG [5697]: Closing database connection -- 16:31:30.078 SQL [5697]: pgsql_close() -- 16:31:30.883 INFO [5697]: COREGRADE is starting... -- 16:31:30.883 INFO [5697]: Version from config: 1.0 -- 16:31:30.883 DEBUG [5697]: Connecting to database... -- 16:31:30.883 DEBUG [5697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:30.883 SQL [5697]: pgsql_db_connect() -- 16:31:30.887 DEBUG [5697]: Database connection successful -- 16:31:30.887 INFO [5697]: _SERVER found -- 16:31:30.887 INFO [5697]: REMOTE_ADDR = 10.0.0.15 -- 16:31:30.887 INFO [5697]: SERVER_NAME = oameye.works.coregrade.com -- 16:31:30.887 INFO [5697]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=4i7i4o2mbt4c1oh8p0lu5juigdfjpihj -- 16:31:30.887 INFO [5697]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:31:30.887 INFO [5697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:31:30.898 INFO [5697]: COREGRADE is stopping... -- 16:31:30.898 DEBUG [5697]: Closing database connection -- 16:31:30.898 SQL [5697]: pgsql_close() -- 16:31:51.251 INFO [4834]: COREGRADE is starting... -- 16:31:51.252 INFO [4834]: Version from config: 1.0 -- 16:31:51.252 DEBUG [4834]: Connecting to database... -- 16:31:51.252 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:51.252 SQL [4834]: pgsql_db_connect() -- 16:31:51.256 DEBUG [4834]: Database connection successful -- 16:31:51.256 INFO [4834]: _SERVER found -- 16:31:51.256 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 16:31:51.256 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 16:31:51.256 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=4i7i4o2mbt4c1oh8p0lu5juigdfjpihj -- 16:31:51.256 INFO [4834]: QUERY_STRING = /member -- 16:31:51.256 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:31:51.299 INFO [4834]: COREGRADE is stopping... -- 16:31:51.299 DEBUG [4834]: Closing database connection -- 16:31:51.299 SQL [4834]: pgsql_close() -- 16:31:52.131 INFO [4834]: COREGRADE is starting... -- 16:31:52.131 INFO [4834]: Version from config: 1.0 -- 16:31:52.131 DEBUG [4834]: Connecting to database... -- 16:31:52.131 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:52.131 SQL [4834]: pgsql_db_connect() -- 16:31:52.135 DEBUG [4834]: Database connection successful -- 16:31:52.135 INFO [4834]: _SERVER found -- 16:31:52.135 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 16:31:52.135 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 16:31:52.135 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=4i7i4o2mbt4c1oh8p0lu5juigdfjpihj -- 16:31:52.135 INFO [4834]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:31:52.135 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:31:52.147 INFO [4834]: COREGRADE is stopping... -- 16:31:52.147 DEBUG [4834]: Closing database connection -- 16:31:52.147 SQL [4834]: pgsql_close() -- 16:31:56.046 INFO [4834]: COREGRADE is starting... -- 16:31:56.046 INFO [4834]: Version from config: 1.0 -- 16:31:56.046 DEBUG [4834]: Connecting to database... -- 16:31:56.046 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:56.046 SQL [4834]: pgsql_db_connect() -- 16:31:56.050 DEBUG [4834]: Database connection successful -- 16:31:56.050 INFO [4834]: _SERVER found -- 16:31:56.050 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 16:31:56.050 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 16:31:56.050 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=4i7i4o2mbt4c1oh8p0lu5juigdfjpihj -- 16:31:56.050 INFO [4834]: QUERY_STRING = /member/page -- 16:31:56.050 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:31:56.095 INFO [4834]: COREGRADE is stopping... -- 16:31:56.095 DEBUG [4834]: Closing database connection -- 16:31:56.095 SQL [4834]: pgsql_close() -- 16:31:56.511 INFO [4834]: COREGRADE is starting... -- 16:31:56.511 INFO [4834]: Version from config: 1.0 -- 16:31:56.511 DEBUG [4834]: Connecting to database... -- 16:31:56.511 DEBUG [4834]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:56.511 SQL [4834]: pgsql_db_connect() -- 16:31:56.515 DEBUG [4834]: Database connection successful -- 16:31:56.515 INFO [4834]: _SERVER found -- 16:31:56.515 INFO [4834]: REMOTE_ADDR = 10.0.0.15 -- 16:31:56.515 INFO [4834]: SERVER_NAME = oameye.works.coregrade.com -- 16:31:56.515 INFO [4834]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=4i7i4o2mbt4c1oh8p0lu5juigdfjpihj -- 16:31:56.515 INFO [4834]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:31:56.515 INFO [4834]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:31:56.527 INFO [4834]: COREGRADE is stopping... -- 16:31:56.527 DEBUG [4834]: Closing database connection -- 16:31:56.527 SQL [4834]: pgsql_close() -- 16:32:04.174 INFO [7377]: COREGRADE is starting... -- 16:32:04.174 INFO [7377]: Version from config: 1.0 -- 16:32:04.174 DEBUG [7377]: Connecting to database... -- 16:32:04.174 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:32:04.174 SQL [7377]: pgsql_db_connect() -- 16:32:04.178 DEBUG [7377]: Database connection successful -- 16:32:04.178 INFO [7377]: _SERVER found -- 16:32:04.178 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 16:32:04.178 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 16:32:04.178 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=c1poq2n7ohl4u283hjbnpfdl713nrm1p -- 16:32:04.178 INFO [7377]: QUERY_STRING = -- 16:32:04.178 INFO [7377]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:32:04.210 INFO [7377]: COREGRADE is stopping... -- 16:32:04.210 DEBUG [7377]: Closing database connection -- 16:32:04.210 SQL [7377]: pgsql_close() -- 16:32:04.698 INFO [7377]: COREGRADE is starting... -- 16:32:04.698 INFO [7377]: Version from config: 1.0 -- 16:32:04.698 DEBUG [7377]: Connecting to database... -- 16:32:04.698 DEBUG [7377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:32:04.698 SQL [7377]: pgsql_db_connect() -- 16:32:04.702 DEBUG [7377]: Database connection successful -- 16:32:04.702 INFO [7377]: _SERVER found -- 16:32:04.702 INFO [7377]: REMOTE_ADDR = 10.0.0.15 -- 16:32:04.702 INFO [7377]: SERVER_NAME = oameye.works.coregrade.com -- 16:32:04.702 INFO [7377]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=c1poq2n7ohl4u283hjbnpfdl713nrm1p -- 16:32:04.702 INFO [7377]: QUERY_STRING = /assets/img/footer_1.jpg -- 16:32:04.702 INFO [7377]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:32:04.714 INFO [7377]: COREGRADE is stopping... -- 16:32:04.714 DEBUG [7377]: Closing database connection -- 16:32:04.714 SQL [7377]: pgsql_close() -- 16:32:08.230 INFO [5685]: COREGRADE is starting... -- 16:32:08.230 INFO [5685]: Version from config: 1.0 -- 16:32:08.231 DEBUG [5685]: Connecting to database... -- 16:32:08.231 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:32:08.231 SQL [5685]: pgsql_db_connect() -- 16:32:08.235 DEBUG [5685]: Database connection successful -- 16:32:08.235 INFO [5685]: _SERVER found -- 16:32:08.235 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 16:32:08.235 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 16:32:08.235 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=hkv5bki87bieoc1uvrngjn7gho8va251 -- 16:32:08.235 INFO [5685]: QUERY_STRING = -- 16:32:08.235 INFO [5685]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:32:08.265 INFO [5685]: COREGRADE is stopping... -- 16:32:08.266 DEBUG [5685]: Closing database connection -- 16:32:08.266 SQL [5685]: pgsql_close() -- 16:32:11.524 INFO [5685]: COREGRADE is starting... -- 16:32:11.524 INFO [5685]: Version from config: 1.0 -- 16:32:11.524 DEBUG [5685]: Connecting to database... -- 16:32:11.524 DEBUG [5685]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:32:11.525 SQL [5685]: pgsql_db_connect() -- 16:32:11.529 DEBUG [5685]: Database connection successful -- 16:32:11.529 INFO [5685]: _SERVER found -- 16:32:11.529 INFO [5685]: REMOTE_ADDR = 10.0.0.15 -- 16:32:11.529 INFO [5685]: SERVER_NAME = oameye.works.coregrade.com -- 16:32:11.529 INFO [5685]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=hkv5bki87bieoc1uvrngjn7gho8va251; _gat_gtag_UA_54829827_2=1 -- 16:32:11.529 INFO [5685]: QUERY_STRING = -- 16:32:11.529 INFO [5685]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:32:11.559 INFO [5685]: COREGRADE is stopping... -- 16:32:11.559 DEBUG [5685]: Closing database connection -- 16:32:11.559 SQL [5685]: pgsql_close() -- 16:32:26.169 INFO [5687]: COREGRADE is starting... -- 16:32:26.170 INFO [5687]: Version from config: 1.0 -- 16:32:26.170 DEBUG [5687]: Connecting to database... -- 16:32:26.170 DEBUG [5687]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:32:26.170 SQL [5687]: pgsql_db_connect() -- 16:32:26.175 INFO [4193]: COREGRADE is starting... -- 16:32:26.175 INFO [4193]: Version from config: 1.0 -- 16:32:26.175 DEBUG [4193]: Connecting to database... -- 16:32:26.175 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:32:26.175 SQL [4193]: pgsql_db_connect() -- 16:32:26.174 DEBUG [5687]: Database connection successful -- 16:32:26.174 INFO [5687]: _SERVER found -- 16:32:26.174 INFO [5687]: REMOTE_ADDR = 10.0.0.15 -- 16:32:26.174 INFO [5687]: SERVER_NAME = oameye.works.coregrade.com -- 16:32:26.174 INFO [5687]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=hkv5bki87bieoc1uvrngjn7gho8va251; _gat_gtag_UA_54829827_2=1 -- 16:32:26.174 INFO [5687]: QUERY_STRING = /auth -- 16:32:26.174 INFO [5687]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:32:26.207 INFO [5687]: COREGRADE is stopping... -- 16:32:26.207 DEBUG [5687]: Closing database connection -- 16:32:26.207 SQL [5687]: pgsql_close() -- 16:32:26.180 DEBUG [4193]: Database connection successful -- 16:32:26.180 INFO [4193]: _SERVER found -- 16:32:26.180 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 16:32:26.180 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 16:32:26.180 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=hkv5bki87bieoc1uvrngjn7gho8va251; _gat_gtag_UA_54829827_2=1 -- 16:32:26.180 INFO [4193]: QUERY_STRING = /welcome/viewLogin -- 16:32:26.180 INFO [4193]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:32:26.213 INFO [4193]: COREGRADE is stopping... -- 16:32:26.213 DEBUG [4193]: Closing database connection -- 16:32:26.213 SQL [4193]: pgsql_close() -- 16:32:26.392 INFO [4193]: COREGRADE is starting... -- 16:32:26.392 INFO [4193]: Version from config: 1.0 -- 16:32:26.392 DEBUG [4193]: Connecting to database... -- 16:32:26.392 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:32:26.392 SQL [4193]: pgsql_db_connect() -- 16:32:26.396 DEBUG [4193]: Database connection successful -- 16:32:26.396 INFO [4193]: _SERVER found -- 16:32:26.396 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 16:32:26.396 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 16:32:26.396 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=hkv5bki87bieoc1uvrngjn7gho8va251; _gat_gtag_UA_54829827_2=1 -- 16:32:26.396 INFO [4193]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 16:32:26.396 INFO [4193]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:32:26.407 INFO [4193]: COREGRADE is stopping... -- 16:32:26.407 DEBUG [4193]: Closing database connection -- 16:32:26.408 SQL [4193]: pgsql_close() -- 16:32:27.849 INFO [4193]: COREGRADE is starting... -- 16:32:27.849 INFO [4193]: Version from config: 1.0 -- 16:32:27.849 DEBUG [4193]: Connecting to database... -- 16:32:27.849 DEBUG [4193]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:32:27.849 SQL [4193]: pgsql_db_connect() -- 16:32:27.853 DEBUG [4193]: Database connection successful -- 16:32:27.853 INFO [4193]: _SERVER found -- 16:32:27.853 INFO [4193]: REMOTE_ADDR = 10.0.0.15 -- 16:32:27.853 INFO [4193]: SERVER_NAME = oameye.works.coregrade.com -- 16:32:27.853 INFO [4193]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=hkv5bki87bieoc1uvrngjn7gho8va251; _gat_gtag_UA_54829827_2=1 -- 16:32:27.853 INFO [4193]: QUERY_STRING = -- 16:32:27.853 INFO [4193]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:32:27.884 INFO [4193]: COREGRADE is stopping... -- 16:32:27.884 DEBUG [4193]: Closing database connection -- 16:32:27.884 SQL [4193]: pgsql_close() -- 16:32:36.431 INFO [6508]: COREGRADE is starting... -- 16:32:36.431 INFO [6508]: Version from config: 1.0 -- 16:32:36.431 DEBUG [6508]: Connecting to database... -- 16:32:36.432 DEBUG [6508]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:32:36.432 SQL [6508]: pgsql_db_connect() -- 16:32:36.436 DEBUG [6508]: Database connection successful -- 16:32:36.436 INFO [6508]: _SERVER found -- 16:32:36.436 INFO [6508]: REMOTE_ADDR = 10.0.0.15 -- 16:32:36.436 INFO [6508]: SERVER_NAME = oameye.works.coregrade.com -- 16:32:36.436 INFO [6508]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; _gid=GA1.2.986311218.1586468561; ci_session=hkv5bki87bieoc1uvrngjn7gho8va251; _gat_gtag_UA_54829827_2=1 -- 16:32:36.436 INFO [6508]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 16:32:36.436 INFO [6508]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 16:32:36.447 INFO [6508]: COREGRADE is stopping... -- 16:32:36.447 DEBUG [6508]: Closing database connection -- 16:32:36.447 SQL [6508]: pgsql_close() -- 16:33:09.244 INFO [4251]: COREGRADE is starting... -- 16:33:09.245 INFO [4251]: Version from config: 1.0 -- 16:33:09.245 DEBUG [4251]: Connecting to database... -- 16:33:09.245 DEBUG [4251]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:33:09.245 SQL [4251]: pgsql_db_connect() -- 16:33:09.249 DEBUG [4251]: Database connection successful -- 16:33:09.249 INFO [4251]: _SERVER found -- 16:33:09.249 INFO [4251]: REMOTE_ADDR = 10.0.0.15 -- 16:33:09.249 INFO [4251]: SERVER_NAME = oameye.works.coregrade.com -- 16:33:09.249 INFO [4251]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1101474284.1586465938; ci_session=c1poq2n7ohl4u283hjbnpfdl713nrm1p -- 16:33:09.249 INFO [4251]: QUERY_STRING = /assets/css/bootstrap.min.css.map -- 16:33:09.249 INFO [4251]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 16:33:09.261 INFO [4251]: COREGRADE is stopping... -- 16:33:09.261 DEBUG [4251]: Closing database connection -- 16:33:09.261 SQL [4251]: pgsql_close() -- 16:39:06.162 INFO [24008]: COREGRADE is starting... -- 16:39:06.163 INFO [24008]: Version from config: 1.0 -- 16:39:06.163 DEBUG [24008]: Connecting to database... -- 16:39:06.163 DEBUG [24008]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:39:06.163 SQL [24008]: pgsql_db_connect() -- 16:39:06.167 DEBUG [24008]: Database connection successful -- 16:39:06.167 INFO [24008]: _SERVER found -- 16:39:06.167 INFO [24008]: REMOTE_ADDR = 10.0.0.15 -- 16:39:06.167 INFO [24008]: SERVER_NAME = oameye.works.coregrade.com -- 16:39:06.167 INFO [24008]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=4i7i4o2mbt4c1oh8p0lu5juigdfjpihj -- 16:39:06.167 INFO [24008]: QUERY_STRING = /member/viewCardAddAction -- 16:39:06.167 INFO [24008]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:39:06.206 INFO [24008]: COREGRADE is stopping... -- 16:39:06.206 DEBUG [24008]: Closing database connection -- 16:39:06.206 SQL [24008]: pgsql_close() -- 16:47:45.543 INFO [32321]: COREGRADE is starting... -- 16:47:45.544 INFO [32321]: Version from config: 1.0 -- 16:47:45.544 DEBUG [32321]: Connecting to database... -- 16:47:45.544 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:47:45.544 SQL [32321]: pgsql_db_connect() -- 16:47:45.549 DEBUG [32321]: Database connection successful -- 16:47:45.549 INFO [32321]: _SERVER found -- 16:47:45.549 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 16:47:45.549 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 16:47:45.549 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=4i7i4o2mbt4c1oh8p0lu5juigdfjpihj -- 16:47:45.549 INFO [32321]: QUERY_STRING = /member/configure -- 16:47:45.549 INFO [32321]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:47:45.601 INFO [32321]: COREGRADE is stopping... -- 16:47:45.601 DEBUG [32321]: Closing database connection -- 16:47:45.601 SQL [32321]: pgsql_close() -- 16:47:46.031 INFO [32321]: COREGRADE is starting... -- 16:47:46.031 INFO [32321]: Version from config: 1.0 -- 16:47:46.031 DEBUG [32321]: Connecting to database... -- 16:47:46.031 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:47:46.031 SQL [32321]: pgsql_db_connect() -- 16:47:46.036 DEBUG [32321]: Database connection successful -- 16:47:46.036 INFO [32321]: _SERVER found -- 16:47:46.036 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 16:47:46.036 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 16:47:46.036 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=lg2908grmacspupbntb5pbuspqnq4e5p -- 16:47:46.036 INFO [32321]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:47:46.036 INFO [32321]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:47:46.047 INFO [32321]: COREGRADE is stopping... -- 16:47:46.047 DEBUG [32321]: Closing database connection -- 16:47:46.047 SQL [32321]: pgsql_close() -- 16:47:46.050 INFO [32321]: COREGRADE is starting... -- 16:47:46.050 INFO [32321]: Version from config: 1.0 -- 16:47:46.050 DEBUG [32321]: Connecting to database... -- 16:47:46.050 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:47:46.051 SQL [32321]: pgsql_db_connect() -- 16:47:46.054 DEBUG [32321]: Database connection successful -- 16:47:46.054 INFO [32321]: _SERVER found -- 16:47:46.054 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 16:47:46.054 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 16:47:46.054 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=lg2908grmacspupbntb5pbuspqnq4e5p -- 16:47:46.054 INFO [32321]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 16:47:46.054 INFO [32321]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:47:46.066 INFO [32321]: COREGRADE is stopping... -- 16:47:46.066 DEBUG [32321]: Closing database connection -- 16:47:46.066 SQL [32321]: pgsql_close() -- 16:49:47.578 INFO [32322]: COREGRADE is starting... -- 16:49:47.578 INFO [32322]: Version from config: 1.0 -- 16:49:47.578 DEBUG [32322]: Connecting to database... -- 16:49:47.578 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:49:47.578 SQL [32322]: pgsql_db_connect() -- 16:49:47.583 DEBUG [32322]: Database connection successful -- 16:49:47.583 INFO [32322]: _SERVER found -- 16:49:47.583 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 16:49:47.583 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 16:49:47.583 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=lg2908grmacspupbntb5pbuspqnq4e5p -- 16:49:47.583 INFO [32322]: QUERY_STRING = /member/configure -- 16:49:47.583 INFO [32322]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:49:47.636 INFO [32322]: COREGRADE is stopping... -- 16:49:47.636 DEBUG [32322]: Closing database connection -- 16:49:47.636 SQL [32322]: pgsql_close() -- 16:49:48.019 INFO [32322]: COREGRADE is starting... -- 16:49:48.020 INFO [32322]: Version from config: 1.0 -- 16:49:48.020 DEBUG [32322]: Connecting to database... -- 16:49:48.020 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:49:48.020 SQL [32322]: pgsql_db_connect() -- 16:49:48.030 INFO [32323]: COREGRADE is starting... -- 16:49:48.031 INFO [32323]: Version from config: 1.0 -- 16:49:48.031 DEBUG [32323]: Connecting to database... -- 16:49:48.031 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:49:48.031 SQL [32323]: pgsql_db_connect() -- 16:49:48.024 DEBUG [32322]: Database connection successful -- 16:49:48.024 INFO [32322]: _SERVER found -- 16:49:48.024 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 16:49:48.024 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 16:49:48.024 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=lg2908grmacspupbntb5pbuspqnq4e5p -- 16:49:48.024 INFO [32322]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 16:49:48.024 INFO [32322]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:49:48.035 INFO [32322]: COREGRADE is stopping... -- 16:49:48.036 DEBUG [32322]: Closing database connection -- 16:49:48.036 SQL [32322]: pgsql_close() -- 16:49:48.035 DEBUG [32323]: Database connection successful -- 16:49:48.035 INFO [32323]: _SERVER found -- 16:49:48.035 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 16:49:48.035 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 16:49:48.035 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=lg2908grmacspupbntb5pbuspqnq4e5p -- 16:49:48.035 INFO [32323]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 16:49:48.035 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:49:48.050 INFO [32323]: COREGRADE is stopping... -- 16:49:48.050 DEBUG [32323]: Closing database connection -- 16:49:48.050 SQL [32323]: pgsql_close() -- 16:49:48.414 INFO [32323]: COREGRADE is starting... -- 16:49:48.415 INFO [32323]: Version from config: 1.0 -- 16:49:48.415 DEBUG [32323]: Connecting to database... -- 16:49:48.415 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:49:48.415 SQL [32323]: pgsql_db_connect() -- 16:49:48.419 DEBUG [32323]: Database connection successful -- 16:49:48.419 INFO [32323]: _SERVER found -- 16:49:48.419 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 16:49:48.419 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 16:49:48.419 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=lg2908grmacspupbntb5pbuspqnq4e5p -- 16:49:48.419 INFO [32323]: QUERY_STRING = /member/configure -- 16:49:48.419 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:49:48.467 INFO [32323]: COREGRADE is stopping... -- 16:49:48.467 DEBUG [32323]: Closing database connection -- 16:49:48.467 SQL [32323]: pgsql_close() -- 16:49:49.201 INFO [32323]: COREGRADE is starting... -- 16:49:49.201 INFO [32323]: Version from config: 1.0 -- 16:49:49.201 DEBUG [32323]: Connecting to database... -- 16:49:49.201 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:49:49.201 SQL [32323]: pgsql_db_connect() -- 16:49:49.205 DEBUG [32323]: Database connection successful -- 16:49:49.206 INFO [32323]: _SERVER found -- 16:49:49.206 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 16:49:49.206 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 16:49:49.206 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=lg2908grmacspupbntb5pbuspqnq4e5p -- 16:49:49.206 INFO [32323]: QUERY_STRING = /member/configure -- 16:49:49.206 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:49:49.248 INFO [32323]: COREGRADE is stopping... -- 16:49:49.248 DEBUG [32323]: Closing database connection -- 16:49:49.248 SQL [32323]: pgsql_close() -- 16:49:52.576 INFO [32323]: COREGRADE is starting... -- 16:49:52.576 INFO [32323]: Version from config: 1.0 -- 16:49:52.576 DEBUG [32323]: Connecting to database... -- 16:49:52.576 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:49:52.576 SQL [32323]: pgsql_db_connect() -- 16:49:52.580 DEBUG [32323]: Database connection successful -- 16:49:52.580 INFO [32323]: _SERVER found -- 16:49:52.580 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 16:49:52.580 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 16:49:52.580 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=lg2908grmacspupbntb5pbuspqnq4e5p -- 16:49:52.580 INFO [32323]: QUERY_STRING = /member/classroom -- 16:49:52.580 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:49:52.623 INFO [32323]: COREGRADE is stopping... -- 16:49:52.623 DEBUG [32323]: Closing database connection -- 16:49:52.623 SQL [32323]: pgsql_close() -- 16:49:55.770 INFO [32323]: COREGRADE is starting... -- 16:49:55.771 INFO [32323]: Version from config: 1.0 -- 16:49:55.771 DEBUG [32323]: Connecting to database... -- 16:49:55.771 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:49:55.771 SQL [32323]: pgsql_db_connect() -- 16:49:55.775 DEBUG [32323]: Database connection successful -- 16:49:55.775 INFO [32323]: _SERVER found -- 16:49:55.775 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 16:49:55.775 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 16:49:55.775 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=lg2908grmacspupbntb5pbuspqnq4e5p -- 16:49:55.775 INFO [32323]: QUERY_STRING = /member/viewRoom -- 16:49:55.775 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:49:55.806 INFO [32323]: COREGRADE is stopping... -- 16:49:55.807 DEBUG [32323]: Closing database connection -- 16:49:55.807 SQL [32323]: pgsql_close() -- 16:49:57.728 INFO [32323]: COREGRADE is starting... -- 16:49:57.729 INFO [32323]: Version from config: 1.0 -- 16:49:57.729 DEBUG [32323]: Connecting to database... -- 16:49:57.729 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:49:57.729 SQL [32323]: pgsql_db_connect() -- 16:49:57.733 DEBUG [32323]: Database connection successful -- 16:49:57.733 INFO [32323]: _SERVER found -- 16:49:57.733 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 16:49:57.733 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 16:49:57.733 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=lg2908grmacspupbntb5pbuspqnq4e5p -- 16:49:57.733 INFO [32323]: QUERY_STRING = /member/viewRoom -- 16:49:57.733 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:49:57.767 INFO [32323]: COREGRADE is stopping... -- 16:49:57.767 DEBUG [32323]: Closing database connection -- 16:49:57.767 SQL [32323]: pgsql_close() -- 16:49:59.953 INFO [32324]: COREGRADE is starting... -- 16:49:59.954 INFO [32324]: Version from config: 1.0 -- 16:49:59.954 DEBUG [32324]: Connecting to database... -- 16:49:59.954 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:49:59.954 SQL [32324]: pgsql_db_connect() -- 16:49:59.958 DEBUG [32324]: Database connection successful -- 16:49:59.958 INFO [32324]: _SERVER found -- 16:49:59.958 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 16:49:59.958 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 16:49:59.958 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=lg2908grmacspupbntb5pbuspqnq4e5p -- 16:49:59.958 INFO [32324]: QUERY_STRING = /member/viewRoom -- 16:49:59.958 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:49:59.999 INFO [32324]: COREGRADE is stopping... -- 16:49:59.999 DEBUG [32324]: Closing database connection -- 16:49:59.999 SQL [32324]: pgsql_close() -- 16:50:00.757 INFO [32324]: COREGRADE is starting... -- 16:50:00.758 INFO [32324]: Version from config: 1.0 -- 16:50:00.758 DEBUG [32324]: Connecting to database... -- 16:50:00.758 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:50:00.758 SQL [32324]: pgsql_db_connect() -- 16:50:00.762 DEBUG [32324]: Database connection successful -- 16:50:00.762 INFO [32324]: _SERVER found -- 16:50:00.762 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 16:50:00.762 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 16:50:00.762 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=lg2908grmacspupbntb5pbuspqnq4e5p -- 16:50:00.762 INFO [32324]: QUERY_STRING = /member/viewRoom -- 16:50:00.762 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:50:00.800 INFO [32324]: COREGRADE is stopping... -- 16:50:00.800 DEBUG [32324]: Closing database connection -- 16:50:00.800 SQL [32324]: pgsql_close() -- 16:50:02.000 INFO [32324]: COREGRADE is starting... -- 16:50:02.000 INFO [32324]: Version from config: 1.0 -- 16:50:02.000 DEBUG [32324]: Connecting to database... -- 16:50:02.000 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:50:02.000 SQL [32324]: pgsql_db_connect() -- 16:50:02.005 DEBUG [32324]: Database connection successful -- 16:50:02.005 INFO [32324]: _SERVER found -- 16:50:02.005 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 16:50:02.005 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 16:50:02.005 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=lg2908grmacspupbntb5pbuspqnq4e5p -- 16:50:02.005 INFO [32324]: QUERY_STRING = /member/viewRoom -- 16:50:02.005 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:50:02.045 INFO [32324]: COREGRADE is stopping... -- 16:50:02.045 DEBUG [32324]: Closing database connection -- 16:50:02.045 SQL [32324]: pgsql_close() -- 16:50:03.155 INFO [32324]: COREGRADE is starting... -- 16:50:03.155 INFO [32324]: Version from config: 1.0 -- 16:50:03.155 DEBUG [32324]: Connecting to database... -- 16:50:03.155 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:50:03.155 SQL [32324]: pgsql_db_connect() -- 16:50:03.159 DEBUG [32324]: Database connection successful -- 16:50:03.159 INFO [32324]: _SERVER found -- 16:50:03.159 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 16:50:03.159 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 16:50:03.159 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=lg2908grmacspupbntb5pbuspqnq4e5p -- 16:50:03.159 INFO [32324]: QUERY_STRING = /member/viewRoom -- 16:50:03.159 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:50:03.194 INFO [32324]: COREGRADE is stopping... -- 16:50:03.194 DEBUG [32324]: Closing database connection -- 16:50:03.194 SQL [32324]: pgsql_close() -- 16:50:06.485 INFO [32324]: COREGRADE is starting... -- 16:50:06.485 INFO [32324]: Version from config: 1.0 -- 16:50:06.485 DEBUG [32324]: Connecting to database... -- 16:50:06.485 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:50:06.485 SQL [32324]: pgsql_db_connect() -- 16:50:06.490 DEBUG [32324]: Database connection successful -- 16:50:06.490 INFO [32324]: _SERVER found -- 16:50:06.490 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 16:50:06.490 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 16:50:06.490 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=lg2908grmacspupbntb5pbuspqnq4e5p -- 16:50:06.490 INFO [32324]: QUERY_STRING = /member/viewRoom -- 16:50:06.490 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:50:06.525 INFO [32324]: COREGRADE is stopping... -- 16:50:06.525 DEBUG [32324]: Closing database connection -- 16:50:06.525 SQL [32324]: pgsql_close() -- 16:50:09.716 INFO [32324]: COREGRADE is starting... -- 16:50:09.716 INFO [32324]: Version from config: 1.0 -- 16:50:09.716 DEBUG [32324]: Connecting to database... -- 16:50:09.716 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:50:09.716 SQL [32324]: pgsql_db_connect() -- 16:50:09.720 DEBUG [32324]: Database connection successful -- 16:50:09.720 INFO [32324]: _SERVER found -- 16:50:09.720 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 16:50:09.720 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 16:50:09.720 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; _gid=GA1.2.799692404.1586928377; ci_session=lg2908grmacspupbntb5pbuspqnq4e5p -- 16:50:09.720 INFO [32324]: QUERY_STRING = /member/viewRoom -- 16:50:09.720 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:50:09.755 INFO [32324]: COREGRADE is stopping... -- 16:50:09.755 DEBUG [32324]: Closing database connection -- 16:50:09.755 SQL [32324]: pgsql_close() -- 17:16:35.027 INFO [32325]: COREGRADE is starting... -- 17:16:35.027 INFO [32325]: Version from config: 1.0 -- 17:16:35.027 DEBUG [32325]: Connecting to database... -- 17:16:35.027 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:16:35.027 SQL [32325]: pgsql_db_connect() -- 17:16:35.032 DEBUG [32325]: Database connection successful -- 17:16:35.032 INFO [32325]: _SERVER found -- 17:16:35.032 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 17:16:35.032 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 17:16:35.032 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852 -- 17:16:35.032 INFO [32325]: QUERY_STRING = -- 17:16:35.032 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:16:35.081 INFO [32325]: COREGRADE is stopping... -- 17:16:35.081 DEBUG [32325]: Closing database connection -- 17:16:35.081 SQL [32325]: pgsql_close() -- 17:16:35.201 INFO [32325]: COREGRADE is starting... -- 17:16:35.202 INFO [32325]: Version from config: 1.0 -- 17:16:35.202 DEBUG [32325]: Connecting to database... -- 17:16:35.202 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:16:35.202 SQL [32325]: pgsql_db_connect() -- 17:16:35.206 DEBUG [32325]: Database connection successful -- 17:16:35.206 INFO [32325]: _SERVER found -- 17:16:35.206 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 17:16:35.206 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 17:16:35.206 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=p7ke91q7ulqsk567el88h36bl12cv555 -- 17:16:35.206 INFO [32325]: QUERY_STRING = /assets/img/footer_1.jpg -- 17:16:35.206 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:16:35.219 INFO [32325]: COREGRADE is stopping... -- 17:16:35.219 DEBUG [32325]: Closing database connection -- 17:16:35.219 SQL [32325]: pgsql_close() -- 17:17:17.087 INFO [32376]: COREGRADE is starting... -- 17:17:17.088 INFO [32376]: Version from config: 1.0 -- 17:17:17.088 DEBUG [32376]: Connecting to database... -- 17:17:17.088 DEBUG [32376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:17.088 SQL [32376]: pgsql_db_connect() -- 17:17:17.091 INFO [32321]: COREGRADE is starting... -- 17:17:17.091 INFO [32321]: Version from config: 1.0 -- 17:17:17.091 DEBUG [32321]: Connecting to database... -- 17:17:17.091 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:17.091 SQL [32321]: pgsql_db_connect() -- 17:17:17.095 DEBUG [32321]: Database connection successful -- 17:17:17.095 INFO [32321]: _SERVER found -- 17:17:17.095 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 17:17:17.095 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:17.095 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=p7ke91q7ulqsk567el88h36bl12cv555; _gat_gtag_UA_54829827_2=1 -- 17:17:17.095 INFO [32321]: QUERY_STRING = /auth -- 17:17:17.095 INFO [32321]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:17:17.129 INFO [32321]: COREGRADE is stopping... -- 17:17:17.129 DEBUG [32321]: Closing database connection -- 17:17:17.129 SQL [32321]: pgsql_close() -- 17:17:17.092 DEBUG [32376]: Database connection successful -- 17:17:17.092 INFO [32376]: _SERVER found -- 17:17:17.092 INFO [32376]: REMOTE_ADDR = 10.0.0.15 -- 17:17:17.092 INFO [32376]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:17.092 INFO [32376]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=p7ke91q7ulqsk567el88h36bl12cv555; _gat_gtag_UA_54829827_2=1 -- 17:17:17.092 INFO [32376]: QUERY_STRING = /welcome/viewLogin -- 17:17:17.092 INFO [32376]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:17:17.132 INFO [32376]: COREGRADE is stopping... -- 17:17:17.132 DEBUG [32376]: Closing database connection -- 17:17:17.132 SQL [32376]: pgsql_close() -- 17:17:17.267 INFO [32376]: COREGRADE is starting... -- 17:17:17.267 INFO [32376]: Version from config: 1.0 -- 17:17:17.267 DEBUG [32376]: Connecting to database... -- 17:17:17.267 DEBUG [32376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:17.267 SQL [32376]: pgsql_db_connect() -- 17:17:17.271 DEBUG [32376]: Database connection successful -- 17:17:17.271 INFO [32376]: _SERVER found -- 17:17:17.271 INFO [32376]: REMOTE_ADDR = 10.0.0.15 -- 17:17:17.271 INFO [32376]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:17.271 INFO [32376]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=p7ke91q7ulqsk567el88h36bl12cv555; _gat_gtag_UA_54829827_2=1 -- 17:17:17.271 INFO [32376]: QUERY_STRING = /auth/index -- 17:17:17.271 INFO [32376]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:17:17.307 INFO [32376]: COREGRADE is stopping... -- 17:17:17.307 DEBUG [32376]: Closing database connection -- 17:17:17.308 SQL [32376]: pgsql_close() -- 17:17:18.148 INFO [32376]: COREGRADE is starting... -- 17:17:18.148 INFO [32376]: Version from config: 1.0 -- 17:17:18.148 DEBUG [32376]: Connecting to database... -- 17:17:18.148 DEBUG [32376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:18.148 SQL [32376]: pgsql_db_connect() -- 17:17:18.152 DEBUG [32376]: Database connection successful -- 17:17:18.152 INFO [32376]: _SERVER found -- 17:17:18.152 INFO [32376]: REMOTE_ADDR = 10.0.0.15 -- 17:17:18.152 INFO [32376]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:18.152 INFO [32376]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=p7ke91q7ulqsk567el88h36bl12cv555; _gat_gtag_UA_54829827_2=1 -- 17:17:18.152 INFO [32376]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:17:18.152 INFO [32376]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:17:18.166 INFO [32376]: COREGRADE is stopping... -- 17:17:18.166 DEBUG [32376]: Closing database connection -- 17:17:18.166 SQL [32376]: pgsql_close() -- 17:17:24.342 INFO [32387]: COREGRADE is starting... -- 17:17:24.342 INFO [32387]: Version from config: 1.0 -- 17:17:24.342 DEBUG [32387]: Connecting to database... -- 17:17:24.342 DEBUG [32387]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:24.342 SQL [32387]: pgsql_db_connect() -- 17:17:24.385 INFO [32387]: COREGRADE is starting... -- 17:17:24.385 INFO [32387]: Version from config: 1.0 -- 17:17:24.385 DEBUG [32387]: Connecting to database... -- 17:17:24.385 DEBUG [32387]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:24.385 SQL [32387]: pgsql_db_connect() -- 17:17:24.389 DEBUG [32387]: Database connection successful -- 17:17:24.389 INFO [32387]: _SERVER found -- 17:17:24.389 INFO [32387]: REMOTE_ADDR = 10.0.0.15 -- 17:17:24.389 INFO [32387]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:24.389 INFO [32387]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=p7ke91q7ulqsk567el88h36bl12cv555; _gat_gtag_UA_54829827_2=1 -- 17:17:24.389 INFO [32387]: QUERY_STRING = -- 17:17:24.389 INFO [32387]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:17:24.389 INFO [32387]: SystemStatus()09-09-********~************ -- 17:17:24.389 INFO [32387]: long coregrade_api_main(CVars in, CVars &out) -- 17:17:24.389 INFO [32387]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 17:17:24.389 INFO [32387]: account calls -- 17:17:24.389 INFO [32387]: account_calls() -- 17:17:24.389 INFO [32387]: LoginCoreGradeAccount() -- 17:17:24.389 FLOG_MAX [32387]: REQ_STRING(username) -- 17:17:24.389 FLOG_MAX [32387]: REQ_STRING(password) -- 17:17:24.389 FLOG_MAX [32387]: REQ_STRING(sessionid) -- 17:17:24.389 FLOG_MAX [32387]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:17:24.389 SQL [32387]: pgsql_query() -- 17:17:24.389 SQL [32387]: About to run query: -- 17:17:24.389 SQL [32387]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may120002') -- 17:17:24.393 SQL [32387]: Found rows: 0 -- 17:17:24.393 SQL [32387]: Found rows: 0 -- 17:17:24.393 INFO [32387]: long SessionCheck(long uid, const char *sessionid, int create ) -- 17:17:24.393 FLOG_MAX [32387]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:17:24.393 SQL [32387]: pgsql_query() -- 17:17:24.393 SQL [32387]: About to run query: -- 17:17:24.393 SQL [32387]: SELECT upper(md5( now()::text )) AS folder -- 17:17:24.393 SQL [32387]: Found rows: 1 -- 17:17:24.393 FLOG_MAX [32387]: load_db_record(SELECT upper(md5( now()::text )) AS folder) num_cols=1 -- 17:17:24.393 FLOG_MAX [32387]: update_db_record() -- 17:17:24.393 FLOG_MAX [32387]: Bad parameter exception: 'id' -- 17:17:24.393 INFO [32387]: RET: folder=4E52B1168AE8CF9C63DFC1F69E83798A -- 17:17:24.393 INFO [32387]: RET: member_id= -- 17:17:24.393 INFO [32387]: RET: result=YES I GET TO BACK END -- 17:17:24.393 INFO [32387]: RET: sessionid= -- 17:17:24.393 INFO [32387]: RET: status=Incorrect input parameter -- 17:17:24.395 INFO [32387]: COREGRADE is stopping... -- 17:17:24.395 DEBUG [32387]: Closing database connection -- 17:17:24.395 SQL [32387]: pgsql_close() -- 17:17:24.347 DEBUG [32387]: Database connection successful -- 17:17:24.347 INFO [32387]: _SERVER found -- 17:17:24.347 INFO [32387]: REMOTE_ADDR = 10.0.0.15 -- 17:17:24.347 INFO [32387]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:24.347 INFO [32387]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=p7ke91q7ulqsk567el88h36bl12cv555; _gat_gtag_UA_54829827_2=1 -- 17:17:24.347 INFO [32387]: QUERY_STRING = /auth -- 17:17:24.347 INFO [32387]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:17:24.395 INFO [32387]: COREGRADE is stopping... -- 17:17:24.395 DEBUG [32387]: Closing database connection -- 17:17:24.395 SQL [32387]: pgsql_close() -- 17:17:32.539 INFO [32322]: COREGRADE is starting... -- 17:17:32.539 INFO [32322]: Version from config: 1.0 -- 17:17:32.539 DEBUG [32322]: Connecting to database... -- 17:17:32.539 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:32.539 SQL [32322]: pgsql_db_connect() -- 17:17:32.576 INFO [32322]: COREGRADE is starting... -- 17:17:32.576 INFO [32322]: Version from config: 1.0 -- 17:17:32.576 DEBUG [32322]: Connecting to database... -- 17:17:32.576 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:32.576 SQL [32322]: pgsql_db_connect() -- 17:17:32.580 DEBUG [32322]: Database connection successful -- 17:17:32.580 INFO [32322]: _SERVER found -- 17:17:32.580 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 17:17:32.580 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:32.580 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=p7ke91q7ulqsk567el88h36bl12cv555; _gat_gtag_UA_54829827_2=1 -- 17:17:32.580 INFO [32322]: QUERY_STRING = -- 17:17:32.580 INFO [32322]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:17:32.580 INFO [32322]: SystemStatus()09-09-********~************ -- 17:17:32.580 INFO [32322]: long coregrade_api_main(CVars in, CVars &out) -- 17:17:32.580 INFO [32322]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 17:17:32.580 INFO [32322]: account calls -- 17:17:32.580 INFO [32322]: account_calls() -- 17:17:32.580 INFO [32322]: LoginCoreGradeAccount() -- 17:17:32.580 FLOG_MAX [32322]: REQ_STRING(username) -- 17:17:32.580 FLOG_MAX [32322]: REQ_STRING(password) -- 17:17:32.580 FLOG_MAX [32322]: REQ_STRING(sessionid) -- 17:17:32.580 FLOG_MAX [32322]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:17:32.580 SQL [32322]: pgsql_query() -- 17:17:32.580 SQL [32322]: About to run query: -- 17:17:32.580 SQL [32322]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 17:17:32.584 SQL [32322]: Found rows: 1 -- 17:17:32.584 FLOG_MAX [32322]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 17:17:32.584 INFO [32322]: long SessionCheck(long uid, const char *sessionid, int create ) -- 17:17:32.584 SQL [32322]: pgsql_exec() -- 17:17:32.584 SQL [32322]: About to run query: -- 17:17:32.584 SQL [32322]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 17:17:32.585 SQL [32322]: PQcmdTuples: 1 -- 17:17:32.585 SQL [32322]: Affected rows: 1 -- 17:17:32.585 SQL [32322]: pgsql_exec() -- 17:17:32.585 SQL [32322]: About to run query: -- 17:17:32.585 SQL [32322]: DELETE FROM members_session WHERE member_id=5 -- 17:17:32.585 SQL [32322]: PQcmdTuples: 0 -- 17:17:32.585 SQL [32322]: Affected rows: 0 -- 17:17:32.585 SQL [32322]: pgsql_query() -- 17:17:32.585 SQL [32322]: About to run query: -- 17:17:32.585 SQL [32322]: SELECT * FROM members_session WHERE member_id=5 AND session<>'1C6C982F36D9EFFAE128DEB1A6CB8217' -- 17:17:32.586 SQL [32322]: Found rows: 0 -- 17:17:32.586 SQL [32322]: Found rows: 0 -- 17:17:32.586 FLOG_MAX [32322]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:17:32.586 SQL [32322]: pgsql_query() -- 17:17:32.586 SQL [32322]: About to run query: -- 17:17:32.586 SQL [32322]: SELECT * FROM members_session WHERE member_id=5 AND session='1C6C982F36D9EFFAE128DEB1A6CB8217' -- 17:17:32.587 SQL [32322]: Found rows: 0 -- 17:17:32.587 SQL [32322]: Found rows: 0 -- 17:17:32.587 FLOG_MAX [32322]: insert_db_record() -- 17:17:32.587 SQL [32322]: pgsql_exec() -- 17:17:32.587 SQL [32322]: About to run query: -- 17:17:32.587 SQL [32322]: INSERT INTO members_session (member_id,session) VALUES ('5','1C6C982F36D9EFFAE128DEB1A6CB8217') -- 17:17:32.588 SQL [32322]: PQcmdTuples: 1 -- 17:17:32.588 SQL [32322]: Affected rows: 1 -- 17:17:32.588 FLOG_MAX [32322]: SELECT currval('members_session_id_seq') -- 17:17:32.588 SQL [32322]: pgsql_query() -- 17:17:32.588 SQL [32322]: About to run query: -- 17:17:32.588 SQL [32322]: SELECT currval('members_session_id_seq') -- 17:17:32.589 SQL [32322]: Found rows: 1 -- 17:17:32.589 INFO [32322]: CreateDefaultPage() -- 17:17:32.589 FLOG_MAX [32322]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:17:32.589 SQL [32322]: pgsql_query() -- 17:17:32.589 SQL [32322]: About to run query: -- 17:17:32.589 SQL [32322]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 17:17:32.589 SQL [32322]: Found rows: 1 -- 17:17:32.589 FLOG_MAX [32322]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 17:17:32.589 SQL [32322]: pgsql_query() -- 17:17:32.589 SQL [32322]: About to run query: -- 17:17:32.589 SQL [32322]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 17:17:32.589 SQL [32322]: Found rows: 1 -- 17:17:32.589 INFO [32322]: /CreateDefaultPage() -- 17:17:32.589 INFO [32322]: /LoginCoreGradeAccount() -- 17:17:32.589 INFO [32322]: RET: added=2020-02-05 06:47:23.982154 -- 17:17:32.589 INFO [32322]: RET: email=ameye+11@chiefsoft.com -- 17:17:32.589 INFO [32322]: RET: firstname=Olu -- 17:17:32.589 INFO [32322]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 17:17:32.589 INFO [32322]: RET: id=5 -- 17:17:32.589 INFO [32322]: RET: last_login= -- 17:17:32.589 INFO [32322]: RET: lastname=Amey -- 17:17:32.589 INFO [32322]: RET: loc=192.168.1.13 -- 17:17:32.589 INFO [32322]: RET: member_id=5 -- 17:17:32.589 INFO [32322]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 17:17:32.589 INFO [32322]: RET: phone= -- 17:17:32.589 INFO [32322]: RET: pid= -- 17:17:32.589 INFO [32322]: RET: result=YES I GET TO BACK END -- 17:17:32.589 INFO [32322]: RET: sessionid=1C6C982F36D9EFFAE128DEB1A6CB8217 -- 17:17:32.589 INFO [32322]: RET: status=1 -- 17:17:32.589 INFO [32322]: RET: stauts=OK -- 17:17:32.589 INFO [32322]: RET: username=ameye+11@chiefsoft.com -- 17:17:32.589 INFO [32322]: RET: verified= -- 17:17:32.591 INFO [32322]: COREGRADE is stopping... -- 17:17:32.591 DEBUG [32322]: Closing database connection -- 17:17:32.591 SQL [32322]: pgsql_close() -- 17:17:32.543 DEBUG [32322]: Database connection successful -- 17:17:32.543 INFO [32322]: _SERVER found -- 17:17:32.543 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 17:17:32.543 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:32.543 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=p7ke91q7ulqsk567el88h36bl12cv555; _gat_gtag_UA_54829827_2=1 -- 17:17:32.543 INFO [32322]: QUERY_STRING = /auth -- 17:17:32.543 INFO [32322]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:17:32.591 INFO [32322]: COREGRADE is stopping... -- 17:17:32.591 DEBUG [32322]: Closing database connection -- 17:17:32.591 SQL [32322]: pgsql_close() -- 17:17:32.632 INFO [32322]: COREGRADE is starting... -- 17:17:32.632 INFO [32322]: Version from config: 1.0 -- 17:17:32.632 DEBUG [32322]: Connecting to database... -- 17:17:32.632 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:32.632 SQL [32322]: pgsql_db_connect() -- 17:17:32.636 DEBUG [32322]: Database connection successful -- 17:17:32.636 INFO [32322]: _SERVER found -- 17:17:32.636 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 17:17:32.636 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:32.636 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=p7ke91q7ulqsk567el88h36bl12cv555; _gat_gtag_UA_54829827_2=1 -- 17:17:32.636 INFO [32322]: QUERY_STRING = /member/index -- 17:17:32.636 INFO [32322]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:17:32.676 INFO [32322]: COREGRADE is stopping... -- 17:17:32.676 DEBUG [32322]: Closing database connection -- 17:17:32.676 SQL [32322]: pgsql_close() -- 17:17:32.930 INFO [32323]: COREGRADE is starting... -- 17:17:32.930 INFO [32323]: Version from config: 1.0 -- 17:17:32.930 DEBUG [32323]: Connecting to database... -- 17:17:32.930 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:32.930 SQL [32323]: pgsql_db_connect() -- 17:17:32.934 DEBUG [32323]: Database connection successful -- 17:17:32.934 INFO [32323]: _SERVER found -- 17:17:32.934 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 17:17:32.934 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:32.934 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=p7ke91q7ulqsk567el88h36bl12cv555; _gat_gtag_UA_54829827_2=1 -- 17:17:32.934 INFO [32323]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:17:32.934 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:17:32.947 INFO [32323]: COREGRADE is stopping... -- 17:17:32.947 DEBUG [32323]: Closing database connection -- 17:17:32.947 SQL [32323]: pgsql_close() -- 17:17:39.513 INFO [32325]: COREGRADE is starting... -- 17:17:39.513 INFO [32325]: Version from config: 1.0 -- 17:17:39.513 DEBUG [32325]: Connecting to database... -- 17:17:39.513 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:39.513 SQL [32325]: pgsql_db_connect() -- 17:17:39.517 DEBUG [32325]: Database connection successful -- 17:17:39.517 INFO [32325]: _SERVER found -- 17:17:39.517 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 17:17:39.517 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:39.517 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=p7ke91q7ulqsk567el88h36bl12cv555 -- 17:17:39.517 INFO [32325]: QUERY_STRING = /member/classroom -- 17:17:39.517 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:17:39.563 INFO [32325]: COREGRADE is stopping... -- 17:17:39.563 DEBUG [32325]: Closing database connection -- 17:17:39.563 SQL [32325]: pgsql_close() -- 17:17:41.121 INFO [32325]: COREGRADE is starting... -- 17:17:41.122 INFO [32325]: Version from config: 1.0 -- 17:17:41.122 DEBUG [32325]: Connecting to database... -- 17:17:41.122 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:41.122 SQL [32325]: pgsql_db_connect() -- 17:17:41.126 DEBUG [32325]: Database connection successful -- 17:17:41.126 INFO [32325]: _SERVER found -- 17:17:41.126 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 17:17:41.126 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:41.126 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=p7ke91q7ulqsk567el88h36bl12cv555 -- 17:17:41.126 INFO [32325]: QUERY_STRING = /member/viewRoom -- 17:17:41.126 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:17:41.160 INFO [32325]: COREGRADE is stopping... -- 17:17:41.160 DEBUG [32325]: Closing database connection -- 17:17:41.160 SQL [32325]: pgsql_close() -- 17:17:43.446 INFO [32325]: COREGRADE is starting... -- 17:17:43.446 INFO [32325]: Version from config: 1.0 -- 17:17:43.446 DEBUG [32325]: Connecting to database... -- 17:17:43.446 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:43.446 SQL [32325]: pgsql_db_connect() -- 17:17:43.450 DEBUG [32325]: Database connection successful -- 17:17:43.450 INFO [32325]: _SERVER found -- 17:17:43.450 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 17:17:43.450 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:43.450 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=p7ke91q7ulqsk567el88h36bl12cv555 -- 17:17:43.450 INFO [32325]: QUERY_STRING = /member/viewRoom -- 17:17:43.450 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:17:43.485 INFO [32325]: COREGRADE is stopping... -- 17:17:43.485 DEBUG [32325]: Closing database connection -- 17:17:43.485 SQL [32325]: pgsql_close() -- 17:17:45.791 INFO [32325]: COREGRADE is starting... -- 17:17:45.791 INFO [32325]: Version from config: 1.0 -- 17:17:45.791 DEBUG [32325]: Connecting to database... -- 17:17:45.792 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:45.792 SQL [32325]: pgsql_db_connect() -- 17:17:45.795 DEBUG [32325]: Database connection successful -- 17:17:45.795 INFO [32325]: _SERVER found -- 17:17:45.795 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 17:17:45.795 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:45.795 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=p7ke91q7ulqsk567el88h36bl12cv555 -- 17:17:45.796 INFO [32325]: QUERY_STRING = /member/viewRoom -- 17:17:45.796 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:17:45.826 INFO [32325]: COREGRADE is stopping... -- 17:17:45.826 DEBUG [32325]: Closing database connection -- 17:17:45.826 SQL [32325]: pgsql_close() -- 17:17:55.057 INFO [32321]: COREGRADE is starting... -- 17:17:55.058 INFO [32321]: Version from config: 1.0 -- 17:17:55.058 DEBUG [32321]: Connecting to database... -- 17:17:55.058 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:17:55.058 SQL [32321]: pgsql_db_connect() -- 17:17:55.062 DEBUG [32321]: Database connection successful -- 17:17:55.062 INFO [32321]: _SERVER found -- 17:17:55.062 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 17:17:55.062 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 17:17:55.062 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=p7ke91q7ulqsk567el88h36bl12cv555 -- 17:17:55.062 INFO [32321]: QUERY_STRING = /member -- 17:17:55.062 INFO [32321]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:17:55.102 INFO [32321]: COREGRADE is stopping... -- 17:17:55.102 DEBUG [32321]: Closing database connection -- 17:17:55.102 SQL [32321]: pgsql_close() -- 17:18:02.201 INFO [32376]: COREGRADE is starting... -- 17:18:02.201 INFO [32376]: Version from config: 1.0 -- 17:18:02.201 DEBUG [32376]: Connecting to database... -- 17:18:02.201 DEBUG [32376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:18:02.201 SQL [32376]: pgsql_db_connect() -- 17:18:02.205 DEBUG [32376]: Database connection successful -- 17:18:02.205 INFO [32376]: _SERVER found -- 17:18:02.205 INFO [32376]: REMOTE_ADDR = 10.0.0.15 -- 17:18:02.205 INFO [32376]: SERVER_NAME = oameye.works.coregrade.com -- 17:18:02.205 INFO [32376]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=p7ke91q7ulqsk567el88h36bl12cv555 -- 17:18:02.205 INFO [32376]: QUERY_STRING = /member/page -- 17:18:02.205 INFO [32376]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:18:02.252 INFO [32376]: COREGRADE is stopping... -- 17:18:02.252 DEBUG [32376]: Closing database connection -- 17:18:02.252 SQL [32376]: pgsql_close() -- 17:18:11.933 INFO [32324]: COREGRADE is starting... -- 17:18:11.934 INFO [32324]: Version from config: 1.0 -- 17:18:11.934 DEBUG [32324]: Connecting to database... -- 17:18:11.934 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:18:11.934 SQL [32324]: pgsql_db_connect() -- 17:18:11.937 DEBUG [32324]: Database connection successful -- 17:18:11.938 INFO [32324]: _SERVER found -- 17:18:11.938 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 17:18:11.938 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 17:18:11.938 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=p7ke91q7ulqsk567el88h36bl12cv555 -- 17:18:11.938 INFO [32324]: QUERY_STRING = /member/configure -- 17:18:11.938 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:18:11.986 INFO [32324]: COREGRADE is stopping... -- 17:18:11.987 DEBUG [32324]: Closing database connection -- 17:18:11.987 SQL [32324]: pgsql_close() -- 17:18:12.082 INFO [32324]: COREGRADE is starting... -- 17:18:12.082 INFO [32324]: Version from config: 1.0 -- 17:18:12.082 DEBUG [32324]: Connecting to database... -- 17:18:12.082 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:18:12.082 SQL [32324]: pgsql_db_connect() -- 17:18:12.086 DEBUG [32324]: Database connection successful -- 17:18:12.086 INFO [32324]: _SERVER found -- 17:18:12.086 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 17:18:12.086 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 17:18:12.086 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=p7ke91q7ulqsk567el88h36bl12cv555 -- 17:18:12.086 INFO [32324]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 17:18:12.086 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:18:12.098 INFO [32324]: COREGRADE is stopping... -- 17:18:12.098 DEBUG [32324]: Closing database connection -- 17:18:12.098 SQL [32324]: pgsql_close() -- 17:18:15.625 INFO [32324]: COREGRADE is starting... -- 17:18:15.625 INFO [32324]: Version from config: 1.0 -- 17:18:15.625 DEBUG [32324]: Connecting to database... -- 17:18:15.625 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:18:15.625 SQL [32324]: pgsql_db_connect() -- 17:18:15.629 DEBUG [32324]: Database connection successful -- 17:18:15.629 INFO [32324]: _SERVER found -- 17:18:15.629 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 17:18:15.629 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 17:18:15.629 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=p7ke91q7ulqsk567el88h36bl12cv555 -- 17:18:15.629 INFO [32324]: QUERY_STRING = /member/viewSharePage -- 17:18:15.629 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:18:15.663 INFO [32324]: COREGRADE is stopping... -- 17:18:15.663 DEBUG [32324]: Closing database connection -- 17:18:15.663 SQL [32324]: pgsql_close() -- 17:19:26.255 INFO [32322]: COREGRADE is starting... -- 17:19:26.255 INFO [32322]: Version from config: 1.0 -- 17:19:26.255 DEBUG [32322]: Connecting to database... -- 17:19:26.255 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:19:26.255 SQL [32322]: pgsql_db_connect() -- 17:19:26.259 DEBUG [32322]: Database connection successful -- 17:19:26.259 INFO [32322]: _SERVER found -- 17:19:26.259 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 17:19:26.259 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 17:19:26.259 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=p7ke91q7ulqsk567el88h36bl12cv555 -- 17:19:26.259 INFO [32322]: QUERY_STRING = /member -- 17:19:26.259 INFO [32322]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:19:26.300 INFO [32322]: COREGRADE is stopping... -- 17:19:26.300 DEBUG [32322]: Closing database connection -- 17:19:26.300 SQL [32322]: pgsql_close() -- 17:19:28.067 INFO [32322]: COREGRADE is starting... -- 17:19:28.068 INFO [32322]: Version from config: 1.0 -- 17:19:28.068 DEBUG [32322]: Connecting to database... -- 17:19:28.068 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:19:28.068 SQL [32322]: pgsql_db_connect() -- 17:19:28.072 DEBUG [32322]: Database connection successful -- 17:19:28.072 INFO [32322]: _SERVER found -- 17:19:28.072 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 17:19:28.072 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 17:19:28.072 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=p7ke91q7ulqsk567el88h36bl12cv555 -- 17:19:28.072 INFO [32322]: QUERY_STRING = /member/page -- 17:19:28.072 INFO [32322]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:19:28.114 INFO [32322]: COREGRADE is stopping... -- 17:19:28.114 DEBUG [32322]: Closing database connection -- 17:19:28.114 SQL [32322]: pgsql_close() -- 17:19:40.296 INFO [32325]: COREGRADE is starting... -- 17:19:40.297 INFO [32325]: Version from config: 1.0 -- 17:19:40.297 DEBUG [32325]: Connecting to database... -- 17:19:40.297 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:19:40.297 SQL [32325]: pgsql_db_connect() -- 17:19:40.301 DEBUG [32325]: Database connection successful -- 17:19:40.301 INFO [32325]: _SERVER found -- 17:19:40.301 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 17:19:40.301 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 17:19:40.301 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=p7ke91q7ulqsk567el88h36bl12cv555 -- 17:19:40.301 INFO [32325]: QUERY_STRING = /member/viewCardAddAction -- 17:19:40.301 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:19:40.332 INFO [32325]: COREGRADE is stopping... -- 17:19:40.332 DEBUG [32325]: Closing database connection -- 17:19:40.332 SQL [32325]: pgsql_close() -- 17:19:41.386 INFO [32325]: COREGRADE is starting... -- 17:19:41.386 INFO [32325]: Version from config: 1.0 -- 17:19:41.386 DEBUG [32325]: Connecting to database... -- 17:19:41.386 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:19:41.386 SQL [32325]: pgsql_db_connect() -- 17:19:41.390 DEBUG [32325]: Database connection successful -- 17:19:41.390 INFO [32325]: _SERVER found -- 17:19:41.390 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 17:19:41.390 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 17:19:41.390 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=p7ke91q7ulqsk567el88h36bl12cv555 -- 17:19:41.390 INFO [32325]: QUERY_STRING = /member/viewCardAddAction -- 17:19:41.390 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:19:41.421 INFO [32325]: COREGRADE is stopping... -- 17:19:41.422 DEBUG [32325]: Closing database connection -- 17:19:41.422 SQL [32325]: pgsql_close() -- 17:20:19.084 INFO [32321]: COREGRADE is starting... -- 17:20:19.084 INFO [32321]: Version from config: 1.0 -- 17:20:19.084 DEBUG [32321]: Connecting to database... -- 17:20:19.084 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:19.084 SQL [32321]: pgsql_db_connect() -- 17:20:19.088 DEBUG [32321]: Database connection successful -- 17:20:19.088 INFO [32321]: _SERVER found -- 17:20:19.088 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 17:20:19.088 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:19.088 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=p7ke91q7ulqsk567el88h36bl12cv555 -- 17:20:19.088 INFO [32321]: QUERY_STRING = /member/configure -- 17:20:19.088 INFO [32321]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:20:19.132 INFO [32321]: COREGRADE is stopping... -- 17:20:19.132 DEBUG [32321]: Closing database connection -- 17:20:19.132 SQL [32321]: pgsql_close() -- 17:20:25.111 INFO [32387]: COREGRADE is starting... -- 17:20:25.111 INFO [32387]: Version from config: 1.0 -- 17:20:25.111 DEBUG [32387]: Connecting to database... -- 17:20:25.111 DEBUG [32387]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:25.111 SQL [32387]: pgsql_db_connect() -- 17:20:25.116 DEBUG [32387]: Database connection successful -- 17:20:25.116 INFO [32387]: _SERVER found -- 17:20:25.116 INFO [32387]: REMOTE_ADDR = 10.0.0.15 -- 17:20:25.116 INFO [32387]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:25.116 INFO [32387]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=p7ke91q7ulqsk567el88h36bl12cv555 -- 17:20:25.116 INFO [32387]: QUERY_STRING = /member/viewSharePage -- 17:20:25.116 INFO [32387]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:20:25.155 INFO [32387]: COREGRADE is stopping... -- 17:20:25.155 DEBUG [32387]: Closing database connection -- 17:20:25.155 SQL [32387]: pgsql_close() -- 17:21:39.700 INFO [32562]: COREGRADE is starting... -- 17:21:39.700 INFO [32562]: Version from config: 1.0 -- 17:21:39.700 DEBUG [32562]: Connecting to database... -- 17:21:39.700 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:21:39.700 SQL [32562]: pgsql_db_connect() -- 17:21:39.743 INFO [32562]: COREGRADE is starting... -- 17:21:39.743 INFO [32562]: Version from config: 1.0 -- 17:21:39.743 DEBUG [32562]: Connecting to database... -- 17:21:39.743 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:21:39.743 SQL [32562]: pgsql_db_connect() -- 17:21:39.747 DEBUG [32562]: Database connection successful -- 17:21:39.747 INFO [32562]: _SERVER found -- 17:21:39.747 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 17:21:39.747 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 17:21:39.747 INFO [32562]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=p7ke91q7ulqsk567el88h36bl12cv555 -- 17:21:39.747 INFO [32562]: QUERY_STRING = -- 17:21:39.747 INFO [32562]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:21:39.747 INFO [32562]: SystemStatus()09-09-********~************ -- 17:21:39.747 INFO [32562]: long coregrade_api_main(CVars in, CVars &out) -- 17:21:39.747 INFO [32562]: long coregrade_api_main(CVars in, CVars &out) action =11027 -- 17:21:39.747 INFO [32562]: account calls -- 17:21:39.747 INFO [32562]: account_calls() -- 17:21:39.747 INFO [32562]: CreateUserPage() -- 17:21:39.747 FLOG_MAX [32562]: REQ_STRING(description) -- 17:21:39.747 FLOG_MAX [32562]: REQ_STRING(title) -- 17:21:39.747 FLOG_MAX [32562]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:21:39.748 SQL [32562]: pgsql_query() -- 17:21:39.748 SQL [32562]: About to run query: -- 17:21:39.748 SQL [32562]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 17:21:39.749 SQL [32562]: Found rows: 1 -- 17:21:39.749 FLOG_MAX [32562]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 17:21:39.749 FLOG_MAX [32562]: insert_db_record() -- 17:21:39.749 SQL [32562]: pgsql_exec() -- 17:21:39.749 SQL [32562]: About to run query: -- 17:21:39.749 SQL [32562]: INSERT INTO members_pages (description,member_id,page_key,page_mode,title) VALUES ('To teach if you pay','5','PGEC391A94B108EDA818B950C5D06C3534','OTHERPG','Ike Engineering Class') -- 17:21:39.752 SQL [32562]: PQcmdTuples: 1 -- 17:21:39.752 SQL [32562]: Affected rows: 1 -- 17:21:39.752 FLOG_MAX [32562]: SELECT currval('members_pages_id_seq') -- 17:21:39.752 SQL [32562]: pgsql_query() -- 17:21:39.752 SQL [32562]: About to run query: -- 17:21:39.752 SQL [32562]: SELECT currval('members_pages_id_seq') -- 17:21:39.752 SQL [32562]: Found rows: 1 -- 17:21:39.752 INFO [32562]: /CreateUserPage() -- 17:21:39.752 INFO [32562]: RET: page_key=PGEC391A94B108EDA818B950C5D06C3534 -- 17:21:39.752 INFO [32562]: RET: result=YES I GET TO BACK END -- 17:21:39.765 INFO [32562]: COREGRADE is stopping... -- 17:21:39.765 DEBUG [32562]: Closing database connection -- 17:21:39.765 SQL [32562]: pgsql_close() -- 17:21:39.705 DEBUG [32562]: Database connection successful -- 17:21:39.705 INFO [32562]: _SERVER found -- 17:21:39.705 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 17:21:39.705 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 17:21:39.705 INFO [32562]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=p7ke91q7ulqsk567el88h36bl12cv555 -- 17:21:39.705 INFO [32562]: QUERY_STRING = /member/addcard -- 17:21:39.705 INFO [32562]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:21:39.766 INFO [32562]: COREGRADE is stopping... -- 17:21:39.766 DEBUG [32562]: Closing database connection -- 17:21:39.766 SQL [32562]: pgsql_close() -- 17:21:45.221 INFO [32376]: COREGRADE is starting... -- 17:21:45.221 INFO [32376]: Version from config: 1.0 -- 17:21:45.221 DEBUG [32376]: Connecting to database... -- 17:21:45.221 DEBUG [32376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:21:45.221 SQL [32376]: pgsql_db_connect() -- 17:21:45.225 DEBUG [32376]: Database connection successful -- 17:21:45.225 INFO [32376]: _SERVER found -- 17:21:45.225 INFO [32376]: REMOTE_ADDR = 10.0.0.15 -- 17:21:45.225 INFO [32376]: SERVER_NAME = oameye.works.coregrade.com -- 17:21:45.225 INFO [32376]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=ktb1aepnegm2h72h3rc7dsru855pnhtm -- 17:21:45.225 INFO [32376]: QUERY_STRING = /member -- 17:21:45.225 INFO [32376]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:21:45.266 INFO [32376]: COREGRADE is stopping... -- 17:21:45.266 DEBUG [32376]: Closing database connection -- 17:21:45.266 SQL [32376]: pgsql_close() -- 17:21:46.884 INFO [32376]: COREGRADE is starting... -- 17:21:46.884 INFO [32376]: Version from config: 1.0 -- 17:21:46.884 DEBUG [32376]: Connecting to database... -- 17:21:46.884 DEBUG [32376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:21:46.884 SQL [32376]: pgsql_db_connect() -- 17:21:46.889 DEBUG [32376]: Database connection successful -- 17:21:46.889 INFO [32376]: _SERVER found -- 17:21:46.889 INFO [32376]: REMOTE_ADDR = 10.0.0.15 -- 17:21:46.889 INFO [32376]: SERVER_NAME = oameye.works.coregrade.com -- 17:21:46.889 INFO [32376]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=ktb1aepnegm2h72h3rc7dsru855pnhtm -- 17:21:46.889 INFO [32376]: QUERY_STRING = /member/page -- 17:21:46.889 INFO [32376]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:21:46.931 INFO [32376]: COREGRADE is stopping... -- 17:21:46.931 DEBUG [32376]: Closing database connection -- 17:21:46.931 SQL [32376]: pgsql_close() -- 17:21:52.183 INFO [32323]: COREGRADE is starting... -- 17:21:52.183 INFO [32323]: Version from config: 1.0 -- 17:21:52.183 DEBUG [32323]: Connecting to database... -- 17:21:52.183 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:21:52.183 SQL [32323]: pgsql_db_connect() -- 17:21:52.188 DEBUG [32323]: Database connection successful -- 17:21:52.188 INFO [32323]: _SERVER found -- 17:21:52.188 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 17:21:52.188 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 17:21:52.188 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=ktb1aepnegm2h72h3rc7dsru855pnhtm -- 17:21:52.188 INFO [32323]: QUERY_STRING = /member/viewCardAddAction -- 17:21:52.188 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:21:52.220 INFO [32323]: COREGRADE is stopping... -- 17:21:52.220 DEBUG [32323]: Closing database connection -- 17:21:52.220 SQL [32323]: pgsql_close() -- 17:22:11.017 INFO [32325]: COREGRADE is starting... -- 17:22:11.017 INFO [32325]: Version from config: 1.0 -- 17:22:11.017 DEBUG [32325]: Connecting to database... -- 17:22:11.017 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:22:11.017 SQL [32325]: pgsql_db_connect() -- 17:22:11.053 INFO [32325]: COREGRADE is starting... -- 17:22:11.054 INFO [32325]: Version from config: 1.0 -- 17:22:11.054 DEBUG [32325]: Connecting to database... -- 17:22:11.054 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:22:11.054 SQL [32325]: pgsql_db_connect() -- 17:22:11.058 DEBUG [32325]: Database connection successful -- 17:22:11.058 INFO [32325]: _SERVER found -- 17:22:11.058 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 17:22:11.058 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 17:22:11.058 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=ktb1aepnegm2h72h3rc7dsru855pnhtm -- 17:22:11.058 INFO [32325]: QUERY_STRING = -- 17:22:11.058 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:22:11.058 INFO [32325]: SystemStatus()09-09-********~************ -- 17:22:11.058 INFO [32325]: long coregrade_api_main(CVars in, CVars &out) -- 17:22:11.058 INFO [32325]: long coregrade_api_main(CVars in, CVars &out) action =11029 -- 17:22:11.058 INFO [32325]: account calls -- 17:22:11.058 INFO [32325]: account_calls() -- 17:22:11.058 INFO [32325]: AddPageCard() -- 17:22:11.058 FLOG_MAX [32325]: REQ_STRING(title) -- 17:22:11.058 FLOG_MAX [32325]: REQ_STRING(item_type) -- 17:22:11.058 FLOG_MAX [32325]: REQ_STRING(sessionid) -- 17:22:11.058 FLOG_MAX [32325]: REQ_STRING(detail) -- 17:22:11.058 FLOG_MAX [32325]: insert_db_record() -- 17:22:11.058 SQL [32325]: pgsql_exec() -- 17:22:11.058 SQL [32325]: About to run query: -- 17:22:11.058 SQL [32325]: INSERT INTO members_page_item (detail,item_type,member_id,page_id,title) VALUES ('See to all this - -And more','NOTECARD','5','21','Daily Review') -- 17:22:11.062 SQL [32325]: PQcmdTuples: 1 -- 17:22:11.063 SQL [32325]: Affected rows: 1 -- 17:22:11.063 FLOG_MAX [32325]: SELECT currval('members_page_item_id_seq') -- 17:22:11.063 SQL [32325]: pgsql_query() -- 17:22:11.063 SQL [32325]: About to run query: -- 17:22:11.063 SQL [32325]: SELECT currval('members_page_item_id_seq') -- 17:22:11.063 SQL [32325]: Found rows: 1 -- 17:22:11.063 INFO [32325]: /AddPageCard() -- 17:22:11.063 INFO [32325]: RET: page_item_id=38 -- 17:22:11.063 INFO [32325]: RET: result=YES I GET TO BACK END -- 17:22:11.063 INFO [32325]: COREGRADE is stopping... -- 17:22:11.063 DEBUG [32325]: Closing database connection -- 17:22:11.063 SQL [32325]: pgsql_close() -- 17:22:11.022 DEBUG [32325]: Database connection successful -- 17:22:11.022 INFO [32325]: _SERVER found -- 17:22:11.022 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 17:22:11.022 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 17:22:11.022 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=ktb1aepnegm2h72h3rc7dsru855pnhtm -- 17:22:11.022 INFO [32325]: QUERY_STRING = /member/addNotecard -- 17:22:11.022 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:22:11.063 INFO [32325]: COREGRADE is stopping... -- 17:22:11.064 DEBUG [32325]: Closing database connection -- 17:22:11.064 SQL [32325]: pgsql_close() -- 17:22:14.582 INFO [32325]: COREGRADE is starting... -- 17:22:14.582 INFO [32325]: Version from config: 1.0 -- 17:22:14.582 DEBUG [32325]: Connecting to database... -- 17:22:14.582 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:22:14.582 SQL [32325]: pgsql_db_connect() -- 17:22:14.586 DEBUG [32325]: Database connection successful -- 17:22:14.586 INFO [32325]: _SERVER found -- 17:22:14.586 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 17:22:14.586 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 17:22:14.586 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=ktb1aepnegm2h72h3rc7dsru855pnhtm -- 17:22:14.586 INFO [32325]: QUERY_STRING = /member/configure -- 17:22:14.586 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:22:14.629 INFO [32325]: COREGRADE is stopping... -- 17:22:14.629 DEBUG [32325]: Closing database connection -- 17:22:14.629 SQL [32325]: pgsql_close() -- 17:22:15.403 INFO [32325]: COREGRADE is starting... -- 17:22:15.403 INFO [32325]: Version from config: 1.0 -- 17:22:15.403 DEBUG [32325]: Connecting to database... -- 17:22:15.403 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:22:15.403 SQL [32325]: pgsql_db_connect() -- 17:22:15.407 DEBUG [32325]: Database connection successful -- 17:22:15.407 INFO [32325]: _SERVER found -- 17:22:15.407 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 17:22:15.407 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 17:22:15.407 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=ktb1aepnegm2h72h3rc7dsru855pnhtm -- 17:22:15.407 INFO [32325]: QUERY_STRING = /member -- 17:22:15.407 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:22:15.447 INFO [32325]: COREGRADE is stopping... -- 17:22:15.448 DEBUG [32325]: Closing database connection -- 17:22:15.448 SQL [32325]: pgsql_close() -- 17:22:16.355 INFO [32325]: COREGRADE is starting... -- 17:22:16.356 INFO [32325]: Version from config: 1.0 -- 17:22:16.356 DEBUG [32325]: Connecting to database... -- 17:22:16.356 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:22:16.356 SQL [32325]: pgsql_db_connect() -- 17:22:16.360 DEBUG [32325]: Database connection successful -- 17:22:16.360 INFO [32325]: _SERVER found -- 17:22:16.360 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 17:22:16.360 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 17:22:16.360 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=ktb1aepnegm2h72h3rc7dsru855pnhtm -- 17:22:16.360 INFO [32325]: QUERY_STRING = /member/page -- 17:22:16.360 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:22:16.402 INFO [32325]: COREGRADE is stopping... -- 17:22:16.402 DEBUG [32325]: Closing database connection -- 17:22:16.402 SQL [32325]: pgsql_close() -- 17:22:25.651 INFO [32321]: COREGRADE is starting... -- 17:22:25.651 INFO [32321]: Version from config: 1.0 -- 17:22:25.651 DEBUG [32321]: Connecting to database... -- 17:22:25.651 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:22:25.651 SQL [32321]: pgsql_db_connect() -- 17:22:25.656 DEBUG [32321]: Database connection successful -- 17:22:25.656 INFO [32321]: _SERVER found -- 17:22:25.656 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 17:22:25.656 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 17:22:25.656 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=ktb1aepnegm2h72h3rc7dsru855pnhtm -- 17:22:25.656 INFO [32321]: QUERY_STRING = /member/configure -- 17:22:25.656 INFO [32321]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:22:25.699 INFO [32321]: COREGRADE is stopping... -- 17:22:25.699 DEBUG [32321]: Closing database connection -- 17:22:25.699 SQL [32321]: pgsql_close() -- 17:22:28.955 INFO [32321]: COREGRADE is starting... -- 17:22:28.955 INFO [32321]: Version from config: 1.0 -- 17:22:28.955 DEBUG [32321]: Connecting to database... -- 17:22:28.955 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:22:28.955 SQL [32321]: pgsql_db_connect() -- 17:22:28.959 DEBUG [32321]: Database connection successful -- 17:22:28.959 INFO [32321]: _SERVER found -- 17:22:28.959 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 17:22:28.959 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 17:22:28.959 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=ktb1aepnegm2h72h3rc7dsru855pnhtm -- 17:22:28.959 INFO [32321]: QUERY_STRING = /member/viewSharePage -- 17:22:28.959 INFO [32321]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:22:28.993 INFO [32321]: COREGRADE is stopping... -- 17:22:28.993 DEBUG [32321]: Closing database connection -- 17:22:28.993 SQL [32321]: pgsql_close() -- 17:23:16.587 INFO [32387]: COREGRADE is starting... -- 17:23:16.588 INFO [32387]: Version from config: 1.0 -- 17:23:16.588 DEBUG [32387]: Connecting to database... -- 17:23:16.588 DEBUG [32387]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:23:16.588 SQL [32387]: pgsql_db_connect() -- 17:23:16.592 DEBUG [32387]: Database connection successful -- 17:23:16.592 INFO [32387]: _SERVER found -- 17:23:16.592 INFO [32387]: REMOTE_ADDR = 10.0.0.15 -- 17:23:16.592 INFO [32387]: SERVER_NAME = oameye.works.coregrade.com -- 17:23:16.592 INFO [32387]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=ktb1aepnegm2h72h3rc7dsru855pnhtm -- 17:23:16.592 INFO [32387]: QUERY_STRING = /member/classroom -- 17:23:16.592 INFO [32387]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:23:16.639 INFO [32387]: COREGRADE is stopping... -- 17:23:16.639 DEBUG [32387]: Closing database connection -- 17:23:16.639 SQL [32387]: pgsql_close() -- 17:23:19.449 INFO [32387]: COREGRADE is starting... -- 17:23:19.449 INFO [32387]: Version from config: 1.0 -- 17:23:19.449 DEBUG [32387]: Connecting to database... -- 17:23:19.449 DEBUG [32387]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:23:19.449 SQL [32387]: pgsql_db_connect() -- 17:23:19.453 DEBUG [32387]: Database connection successful -- 17:23:19.453 INFO [32387]: _SERVER found -- 17:23:19.453 INFO [32387]: REMOTE_ADDR = 10.0.0.15 -- 17:23:19.453 INFO [32387]: SERVER_NAME = oameye.works.coregrade.com -- 17:23:19.453 INFO [32387]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=ktb1aepnegm2h72h3rc7dsru855pnhtm -- 17:23:19.453 INFO [32387]: QUERY_STRING = /member/viewRoom -- 17:23:19.453 INFO [32387]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:23:19.485 INFO [32387]: COREGRADE is stopping... -- 17:23:19.485 DEBUG [32387]: Closing database connection -- 17:23:19.485 SQL [32387]: pgsql_close() -- 17:23:23.865 INFO [32387]: COREGRADE is starting... -- 17:23:23.865 INFO [32387]: Version from config: 1.0 -- 17:23:23.865 DEBUG [32387]: Connecting to database... -- 17:23:23.865 DEBUG [32387]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:23:23.865 SQL [32387]: pgsql_db_connect() -- 17:23:23.869 DEBUG [32387]: Database connection successful -- 17:23:23.869 INFO [32387]: _SERVER found -- 17:23:23.869 INFO [32387]: REMOTE_ADDR = 10.0.0.15 -- 17:23:23.869 INFO [32387]: SERVER_NAME = oameye.works.coregrade.com -- 17:23:23.869 INFO [32387]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=ktb1aepnegm2h72h3rc7dsru855pnhtm -- 17:23:23.869 INFO [32387]: QUERY_STRING = /member/viewRoom -- 17:23:23.869 INFO [32387]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:23:23.904 INFO [32387]: COREGRADE is stopping... -- 17:23:23.904 DEBUG [32387]: Closing database connection -- 17:23:23.904 SQL [32387]: pgsql_close() -- 17:23:26.722 INFO [32387]: COREGRADE is starting... -- 17:23:26.722 INFO [32387]: Version from config: 1.0 -- 17:23:26.722 DEBUG [32387]: Connecting to database... -- 17:23:26.722 DEBUG [32387]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:23:26.722 SQL [32387]: pgsql_db_connect() -- 17:23:26.727 DEBUG [32387]: Database connection successful -- 17:23:26.727 INFO [32387]: _SERVER found -- 17:23:26.727 INFO [32387]: REMOTE_ADDR = 10.0.0.15 -- 17:23:26.727 INFO [32387]: SERVER_NAME = oameye.works.coregrade.com -- 17:23:26.727 INFO [32387]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=ktb1aepnegm2h72h3rc7dsru855pnhtm -- 17:23:26.727 INFO [32387]: QUERY_STRING = /member/viewRoom -- 17:23:26.727 INFO [32387]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:23:26.758 INFO [32387]: COREGRADE is stopping... -- 17:23:26.758 DEBUG [32387]: Closing database connection -- 17:23:26.758 SQL [32387]: pgsql_close() -- 17:23:58.828 INFO [32562]: COREGRADE is starting... -- 17:23:58.828 INFO [32562]: Version from config: 1.0 -- 17:23:58.828 DEBUG [32562]: Connecting to database... -- 17:23:58.828 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:23:58.828 SQL [32562]: pgsql_db_connect() -- 17:23:58.832 DEBUG [32562]: Database connection successful -- 17:23:58.832 INFO [32562]: _SERVER found -- 17:23:58.832 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 17:23:58.832 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 17:23:58.832 INFO [32562]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=ktb1aepnegm2h72h3rc7dsru855pnhtm -- 17:23:58.832 INFO [32562]: QUERY_STRING = /member -- 17:23:58.832 INFO [32562]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:23:58.876 INFO [32562]: COREGRADE is stopping... -- 17:23:58.876 DEBUG [32562]: Closing database connection -- 17:23:58.876 SQL [32562]: pgsql_close() -- 17:25:46.309 INFO [32376]: COREGRADE is starting... -- 17:25:46.310 INFO [32376]: Version from config: 1.0 -- 17:25:46.310 DEBUG [32376]: Connecting to database... -- 17:25:46.310 DEBUG [32376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:25:46.310 SQL [32376]: pgsql_db_connect() -- 17:25:46.314 DEBUG [32376]: Database connection successful -- 17:25:46.314 INFO [32376]: _SERVER found -- 17:25:46.314 INFO [32376]: REMOTE_ADDR = 10.0.0.15 -- 17:25:46.314 INFO [32376]: SERVER_NAME = oameye.works.coregrade.com -- 17:25:46.314 INFO [32376]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852; ci_session=ktb1aepnegm2h72h3rc7dsru855pnhtm -- 17:25:46.314 INFO [32376]: QUERY_STRING = /member/page -- 17:25:46.314 INFO [32376]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:25:46.357 INFO [32376]: COREGRADE is stopping... -- 17:25:46.357 DEBUG [32376]: Closing database connection -- 17:25:46.357 SQL [32376]: pgsql_close() -- 17:46:07.643 INFO [32322]: COREGRADE is starting... -- 17:46:07.643 INFO [32322]: Version from config: 1.0 -- 17:46:07.643 DEBUG [32322]: Connecting to database... -- 17:46:07.643 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:07.643 SQL [32322]: pgsql_db_connect() -- 17:46:07.648 DEBUG [32322]: Database connection successful -- 17:46:07.648 INFO [32322]: _SERVER found -- 17:46:07.648 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 17:46:07.648 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 17:46:07.648 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=p4h2tjb97ape3juai9ce7vag6fkdp4d5; _gat_gtag_UA_54829827_2=1 -- 17:46:07.648 INFO [32322]: QUERY_STRING = -- 17:46:07.648 INFO [32322]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:46:07.689 INFO [32322]: COREGRADE is stopping... -- 17:46:07.689 DEBUG [32322]: Closing database connection -- 17:46:07.689 SQL [32322]: pgsql_close() -- 17:46:07.999 INFO [32322]: COREGRADE is starting... -- 17:46:07.999 INFO [32322]: Version from config: 1.0 -- 17:46:07.999 DEBUG [32322]: Connecting to database... -- 17:46:07.999 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:07.999 SQL [32322]: pgsql_db_connect() -- 17:46:08.003 DEBUG [32322]: Database connection successful -- 17:46:08.003 INFO [32322]: _SERVER found -- 17:46:08.003 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 17:46:08.003 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 17:46:08.003 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; _gat_gtag_UA_54829827_2=1; ci_session=lj6pdkjnq825flkgqirhqqugfknn3bfs -- 17:46:08.003 INFO [32322]: QUERY_STRING = /assets/img/footer_1.jpg -- 17:46:08.003 INFO [32322]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:46:08.015 INFO [32322]: COREGRADE is stopping... -- 17:46:08.015 DEBUG [32322]: Closing database connection -- 17:46:08.015 SQL [32322]: pgsql_close() -- 17:46:27.466 INFO [32325]: COREGRADE is starting... -- 17:46:27.466 INFO [32325]: Version from config: 1.0 -- 17:46:27.466 DEBUG [32325]: Connecting to database... -- 17:46:27.466 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:27.467 SQL [32325]: pgsql_db_connect() -- 17:46:27.471 DEBUG [32325]: Database connection successful -- 17:46:27.471 INFO [32325]: _SERVER found -- 17:46:27.471 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 17:46:27.471 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 17:46:27.471 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; _gat_gtag_UA_54829827_2=1; ci_session=lj6pdkjnq825flkgqirhqqugfknn3bfs -- 17:46:27.471 INFO [32325]: QUERY_STRING = /home/howitworks -- 17:46:27.471 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:46:27.504 INFO [32325]: COREGRADE is stopping... -- 17:46:27.505 DEBUG [32325]: Closing database connection -- 17:46:27.505 SQL [32325]: pgsql_close() -- 17:46:27.772 INFO [32325]: COREGRADE is starting... -- 17:46:27.772 INFO [32325]: Version from config: 1.0 -- 17:46:27.772 DEBUG [32325]: Connecting to database... -- 17:46:27.772 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:27.772 SQL [32325]: pgsql_db_connect() -- 17:46:27.776 DEBUG [32325]: Database connection successful -- 17:46:27.776 INFO [32325]: _SERVER found -- 17:46:27.776 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 17:46:27.776 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 17:46:27.776 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; _gat_gtag_UA_54829827_2=1; ci_session=lj6pdkjnq825flkgqirhqqugfknn3bfs -- 17:46:27.776 INFO [32325]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:46:27.776 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:46:27.788 INFO [32325]: COREGRADE is stopping... -- 17:46:27.788 DEBUG [32325]: Closing database connection -- 17:46:27.788 SQL [32325]: pgsql_close() -- 17:46:56.726 INFO [32321]: COREGRADE is starting... -- 17:46:56.726 INFO [32321]: Version from config: 1.0 -- 17:46:56.726 DEBUG [32321]: Connecting to database... -- 17:46:56.726 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:56.726 SQL [32321]: pgsql_db_connect() -- 17:46:56.731 DEBUG [32321]: Database connection successful -- 17:46:56.731 INFO [32321]: _SERVER found -- 17:46:56.731 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 17:46:56.731 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 17:46:56.731 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=lj6pdkjnq825flkgqirhqqugfknn3bfs -- 17:46:56.731 INFO [32321]: QUERY_STRING = -- 17:46:56.731 INFO [32321]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:46:56.768 INFO [32321]: COREGRADE is stopping... -- 17:46:56.768 DEBUG [32321]: Closing database connection -- 17:46:56.768 SQL [32321]: pgsql_close() -- 17:46:56.950 INFO [32321]: COREGRADE is starting... -- 17:46:56.950 INFO [32321]: Version from config: 1.0 -- 17:46:56.950 DEBUG [32321]: Connecting to database... -- 17:46:56.950 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:46:56.950 SQL [32321]: pgsql_db_connect() -- 17:46:56.954 DEBUG [32321]: Database connection successful -- 17:46:56.954 INFO [32321]: _SERVER found -- 17:46:56.954 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 17:46:56.954 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 17:46:56.954 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=lj6pdkjnq825flkgqirhqqugfknn3bfs -- 17:46:56.954 INFO [32321]: QUERY_STRING = /assets/img/footer_1.jpg -- 17:46:56.954 INFO [32321]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:46:56.965 INFO [32321]: COREGRADE is stopping... -- 17:46:56.965 DEBUG [32321]: Closing database connection -- 17:46:56.965 SQL [32321]: pgsql_close() -- 17:47:05.280 INFO [32387]: COREGRADE is starting... -- 17:47:05.280 INFO [32387]: Version from config: 1.0 -- 17:47:05.280 DEBUG [32387]: Connecting to database... -- 17:47:05.280 DEBUG [32387]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:05.281 SQL [32387]: pgsql_db_connect() -- 17:47:05.285 DEBUG [32387]: Database connection successful -- 17:47:05.285 INFO [32387]: _SERVER found -- 17:47:05.285 INFO [32387]: REMOTE_ADDR = 10.0.0.15 -- 17:47:05.285 INFO [32387]: SERVER_NAME = oameye.works.coregrade.com -- 17:47:05.285 INFO [32387]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=lj6pdkjnq825flkgqirhqqugfknn3bfs; _gat_gtag_UA_54829827_2=1 -- 17:47:05.285 INFO [32387]: QUERY_STRING = /welcome/viewLogin -- 17:47:05.285 INFO [32387]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:47:05.315 INFO [32387]: COREGRADE is stopping... -- 17:47:05.315 DEBUG [32387]: Closing database connection -- 17:47:05.315 SQL [32387]: pgsql_close() -- 17:47:05.347 INFO [32387]: COREGRADE is starting... -- 17:47:05.347 INFO [32562]: COREGRADE is starting... -- 17:47:05.347 INFO [32387]: Version from config: 1.0 -- 17:47:05.347 DEBUG [32387]: Connecting to database... -- 17:47:05.347 DEBUG [32387]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:05.347 SQL [32387]: pgsql_db_connect() -- 17:47:05.347 INFO [32562]: Version from config: 1.0 -- 17:47:05.347 DEBUG [32562]: Connecting to database... -- 17:47:05.347 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:05.347 SQL [32562]: pgsql_db_connect() -- 17:47:05.351 DEBUG [32387]: Database connection successful -- 17:47:05.351 INFO [32387]: _SERVER found -- 17:47:05.351 INFO [32387]: REMOTE_ADDR = 10.0.0.15 -- 17:47:05.351 INFO [32387]: SERVER_NAME = oameye.works.coregrade.com -- 17:47:05.351 INFO [32387]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=lj6pdkjnq825flkgqirhqqugfknn3bfs; _gat_gtag_UA_54829827_2=1 -- 17:47:05.351 INFO [32387]: QUERY_STRING = /auth/index -- 17:47:05.351 INFO [32387]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:47:05.383 INFO [32387]: COREGRADE is stopping... -- 17:47:05.383 DEBUG [32387]: Closing database connection -- 17:47:05.383 SQL [32387]: pgsql_close() -- 17:47:05.351 DEBUG [32562]: Database connection successful -- 17:47:05.351 INFO [32562]: _SERVER found -- 17:47:05.351 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 17:47:05.351 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 17:47:05.351 INFO [32562]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=lj6pdkjnq825flkgqirhqqugfknn3bfs; _gat_gtag_UA_54829827_2=1 -- 17:47:05.351 INFO [32562]: QUERY_STRING = /auth -- 17:47:05.351 INFO [32562]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:47:05.387 INFO [32562]: COREGRADE is stopping... -- 17:47:05.387 DEBUG [32562]: Closing database connection -- 17:47:05.387 SQL [32562]: pgsql_close() -- 17:47:05.601 INFO [32562]: COREGRADE is starting... -- 17:47:05.601 INFO [32562]: Version from config: 1.0 -- 17:47:05.601 DEBUG [32562]: Connecting to database... -- 17:47:05.602 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:05.602 SQL [32562]: pgsql_db_connect() -- 17:47:05.606 DEBUG [32562]: Database connection successful -- 17:47:05.606 INFO [32562]: _SERVER found -- 17:47:05.606 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 17:47:05.606 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 17:47:05.606 INFO [32562]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=lj6pdkjnq825flkgqirhqqugfknn3bfs; _gat_gtag_UA_54829827_2=1 -- 17:47:05.606 INFO [32562]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:47:05.606 INFO [32562]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:47:05.617 INFO [32562]: COREGRADE is stopping... -- 17:47:05.617 DEBUG [32562]: Closing database connection -- 17:47:05.617 SQL [32562]: pgsql_close() -- 18:02:10.669 INFO [32376]: COREGRADE is starting... -- 18:02:10.670 INFO [32376]: Version from config: 1.0 -- 18:02:10.670 DEBUG [32376]: Connecting to database... -- 18:02:10.670 DEBUG [32376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:02:10.670 SQL [32376]: pgsql_db_connect() -- 18:02:10.674 DEBUG [32376]: Database connection successful -- 18:02:10.674 INFO [32376]: _SERVER found -- 18:02:10.674 INFO [32376]: REMOTE_ADDR = 10.0.0.15 -- 18:02:10.674 INFO [32376]: SERVER_NAME = oameye.works.coregrade.com -- 18:02:10.674 INFO [32376]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=hv7jg67ovclqnonlbijpnpgrp00of8a1 -- 18:02:10.674 INFO [32376]: QUERY_STRING = /auth -- 18:02:10.674 INFO [32376]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:02:10.709 INFO [32376]: COREGRADE is stopping... -- 18:02:10.709 DEBUG [32376]: Closing database connection -- 18:02:10.709 SQL [32376]: pgsql_close() -- 18:02:10.956 INFO [32376]: COREGRADE is starting... -- 18:02:10.956 INFO [32376]: Version from config: 1.0 -- 18:02:10.956 DEBUG [32376]: Connecting to database... -- 18:02:10.956 DEBUG [32376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:02:10.956 SQL [32376]: pgsql_db_connect() -- 18:02:10.961 DEBUG [32376]: Database connection successful -- 18:02:10.961 INFO [32376]: _SERVER found -- 18:02:10.961 INFO [32376]: REMOTE_ADDR = 10.0.0.15 -- 18:02:10.961 INFO [32376]: SERVER_NAME = oameye.works.coregrade.com -- 18:02:10.961 INFO [32376]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=uo91qgigrkiejnqi52012s0e92cvdfje -- 18:02:10.961 INFO [32376]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:02:10.961 INFO [32376]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:02:10.972 INFO [32376]: COREGRADE is stopping... -- 18:02:10.972 DEBUG [32376]: Closing database connection -- 18:02:10.972 SQL [32376]: pgsql_close() -- 18:15:57.281 INFO [32324]: COREGRADE is starting... -- 18:15:57.281 INFO [32324]: Version from config: 1.0 -- 18:15:57.281 DEBUG [32324]: Connecting to database... -- 18:15:57.281 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:15:57.281 SQL [32324]: pgsql_db_connect() -- 18:15:57.286 DEBUG [32324]: Database connection successful -- 18:15:57.286 INFO [32324]: _SERVER found -- 18:15:57.286 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 18:15:57.286 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 18:15:57.286 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=uo91qgigrkiejnqi52012s0e92cvdfje -- 18:15:57.286 INFO [32324]: QUERY_STRING = /auth -- 18:15:57.286 INFO [32324]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:15:57.323 INFO [32324]: COREGRADE is stopping... -- 18:15:57.323 DEBUG [32324]: Closing database connection -- 18:15:57.323 SQL [32324]: pgsql_close() -- 18:15:57.576 INFO [32324]: COREGRADE is starting... -- 18:15:57.577 INFO [32324]: Version from config: 1.0 -- 18:15:57.577 DEBUG [32324]: Connecting to database... -- 18:15:57.577 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:15:57.577 SQL [32324]: pgsql_db_connect() -- 18:15:57.581 DEBUG [32324]: Database connection successful -- 18:15:57.581 INFO [32324]: _SERVER found -- 18:15:57.581 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 18:15:57.581 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 18:15:57.581 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=omm7de7m3dr0qabvp25sueae2f0hj39r -- 18:15:57.581 INFO [32324]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:15:57.581 INFO [32324]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:15:57.592 INFO [32324]: COREGRADE is stopping... -- 18:15:57.592 DEBUG [32324]: Closing database connection -- 18:15:57.592 SQL [32324]: pgsql_close() -- 18:17:59.885 INFO [32323]: COREGRADE is starting... -- 18:17:59.885 INFO [32323]: Version from config: 1.0 -- 18:17:59.885 DEBUG [32323]: Connecting to database... -- 18:17:59.885 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:17:59.885 SQL [32323]: pgsql_db_connect() -- 18:17:59.890 DEBUG [32323]: Database connection successful -- 18:17:59.890 INFO [32323]: _SERVER found -- 18:17:59.890 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 18:17:59.890 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 18:17:59.890 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=lj6pdkjnq825flkgqirhqqugfknn3bfs -- 18:17:59.890 INFO [32323]: QUERY_STRING = -- 18:17:59.890 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:17:59.932 INFO [32323]: COREGRADE is stopping... -- 18:17:59.932 DEBUG [32323]: Closing database connection -- 18:17:59.932 SQL [32323]: pgsql_close() -- 18:18:00.169 INFO [32323]: COREGRADE is starting... -- 18:18:00.170 INFO [32323]: Version from config: 1.0 -- 18:18:00.170 DEBUG [32323]: Connecting to database... -- 18:18:00.170 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:18:00.170 SQL [32323]: pgsql_db_connect() -- 18:18:00.175 DEBUG [32323]: Database connection successful -- 18:18:00.175 INFO [32323]: _SERVER found -- 18:18:00.175 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 18:18:00.175 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 18:18:00.175 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=e2uag1iiukd740i64ev7k2fe44p9mguc -- 18:18:00.175 INFO [32323]: QUERY_STRING = -- 18:18:00.175 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:18:00.207 INFO [32323]: COREGRADE is stopping... -- 18:18:00.207 DEBUG [32323]: Closing database connection -- 18:18:00.207 SQL [32323]: pgsql_close() -- 18:18:01.921 INFO [32323]: COREGRADE is starting... -- 18:18:01.921 INFO [32323]: Version from config: 1.0 -- 18:18:01.921 DEBUG [32323]: Connecting to database... -- 18:18:01.921 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:18:01.921 SQL [32323]: pgsql_db_connect() -- 18:18:01.926 DEBUG [32323]: Database connection successful -- 18:18:01.926 INFO [32323]: _SERVER found -- 18:18:01.926 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 18:18:01.926 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 18:18:01.926 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=e2uag1iiukd740i64ev7k2fe44p9mguc -- 18:18:01.926 INFO [32323]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:18:01.926 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:18:01.937 INFO [32323]: COREGRADE is stopping... -- 18:18:01.938 DEBUG [32323]: Closing database connection -- 18:18:01.938 SQL [32323]: pgsql_close() -- 18:18:13.130 INFO [32322]: COREGRADE is starting... -- 18:18:13.131 INFO [32322]: Version from config: 1.0 -- 18:18:13.131 DEBUG [32322]: Connecting to database... -- 18:18:13.131 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:18:13.131 SQL [32322]: pgsql_db_connect() -- 18:18:13.135 DEBUG [32322]: Database connection successful -- 18:18:13.135 INFO [32322]: _SERVER found -- 18:18:13.135 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 18:18:13.135 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 18:18:13.135 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=e2uag1iiukd740i64ev7k2fe44p9mguc; _gat_gtag_UA_54829827_2=1 -- 18:18:13.135 INFO [32322]: QUERY_STRING = /home/howitworks -- 18:18:13.135 INFO [32322]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:18:13.169 INFO [32322]: COREGRADE is stopping... -- 18:18:13.169 DEBUG [32322]: Closing database connection -- 18:18:13.169 SQL [32322]: pgsql_close() -- 18:18:13.353 INFO [32322]: COREGRADE is starting... -- 18:18:13.353 INFO [32322]: Version from config: 1.0 -- 18:18:13.353 DEBUG [32322]: Connecting to database... -- 18:18:13.353 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:18:13.353 SQL [32322]: pgsql_db_connect() -- 18:18:13.357 DEBUG [32322]: Database connection successful -- 18:18:13.357 INFO [32322]: _SERVER found -- 18:18:13.357 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 18:18:13.357 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 18:18:13.357 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=e2uag1iiukd740i64ev7k2fe44p9mguc; _gat_gtag_UA_54829827_2=1 -- 18:18:13.357 INFO [32322]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:18:13.357 INFO [32322]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:18:13.369 INFO [32322]: COREGRADE is stopping... -- 18:18:13.369 DEBUG [32322]: Closing database connection -- 18:18:13.369 SQL [32322]: pgsql_close() -- 18:18:18.603 INFO [32325]: COREGRADE is starting... -- 18:18:18.603 INFO [32325]: Version from config: 1.0 -- 18:18:18.603 DEBUG [32325]: Connecting to database... -- 18:18:18.603 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:18:18.603 SQL [32325]: pgsql_db_connect() -- 18:18:18.607 DEBUG [32325]: Database connection successful -- 18:18:18.607 INFO [32325]: _SERVER found -- 18:18:18.607 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 18:18:18.607 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 18:18:18.607 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=e2uag1iiukd740i64ev7k2fe44p9mguc; _gat_gtag_UA_54829827_2=1 -- 18:18:18.607 INFO [32325]: QUERY_STRING = -- 18:18:18.607 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:18:18.641 INFO [32325]: COREGRADE is stopping... -- 18:18:18.641 DEBUG [32325]: Closing database connection -- 18:18:18.641 SQL [32325]: pgsql_close() -- 18:18:21.461 INFO [32325]: COREGRADE is starting... -- 18:18:21.461 INFO [32325]: Version from config: 1.0 -- 18:18:21.461 DEBUG [32325]: Connecting to database... -- 18:18:21.461 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:18:21.461 SQL [32325]: pgsql_db_connect() -- 18:18:21.466 DEBUG [32325]: Database connection successful -- 18:18:21.466 INFO [32325]: _SERVER found -- 18:18:21.466 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 18:18:21.466 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 18:18:21.466 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=e2uag1iiukd740i64ev7k2fe44p9mguc; _gat_gtag_UA_54829827_2=1 -- 18:18:21.466 INFO [32325]: QUERY_STRING = /home/aboutus -- 18:18:21.466 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:18:21.498 INFO [32325]: COREGRADE is stopping... -- 18:18:21.498 DEBUG [32325]: Closing database connection -- 18:18:21.498 SQL [32325]: pgsql_close() -- 18:18:21.673 INFO [32325]: COREGRADE is starting... -- 18:18:21.673 INFO [32325]: Version from config: 1.0 -- 18:18:21.673 DEBUG [32325]: Connecting to database... -- 18:18:21.673 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:18:21.673 SQL [32325]: pgsql_db_connect() -- 18:18:21.677 DEBUG [32325]: Database connection successful -- 18:18:21.677 INFO [32325]: _SERVER found -- 18:18:21.677 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 18:18:21.677 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 18:18:21.677 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=e2uag1iiukd740i64ev7k2fe44p9mguc; _gat_gtag_UA_54829827_2=1 -- 18:18:21.677 INFO [32325]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:18:21.677 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:18:21.689 INFO [32325]: COREGRADE is stopping... -- 18:18:21.689 DEBUG [32325]: Closing database connection -- 18:18:21.689 SQL [32325]: pgsql_close() -- 18:18:24.101 INFO [32325]: COREGRADE is starting... -- 18:18:24.101 INFO [32325]: Version from config: 1.0 -- 18:18:24.101 DEBUG [32325]: Connecting to database... -- 18:18:24.101 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:18:24.101 SQL [32325]: pgsql_db_connect() -- 18:18:24.105 DEBUG [32325]: Database connection successful -- 18:18:24.105 INFO [32325]: _SERVER found -- 18:18:24.105 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 18:18:24.105 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 18:18:24.105 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=e2uag1iiukd740i64ev7k2fe44p9mguc; _gat_gtag_UA_54829827_2=1 -- 18:18:24.105 INFO [32325]: QUERY_STRING = -- 18:18:24.105 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:18:24.137 INFO [32325]: COREGRADE is stopping... -- 18:18:24.137 DEBUG [32325]: Closing database connection -- 18:18:24.137 SQL [32325]: pgsql_close() -- 18:18:26.507 INFO [32325]: COREGRADE is starting... -- 18:18:26.507 INFO [32325]: Version from config: 1.0 -- 18:18:26.507 DEBUG [32325]: Connecting to database... -- 18:18:26.507 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:18:26.507 SQL [32325]: pgsql_db_connect() -- 18:18:26.511 DEBUG [32325]: Database connection successful -- 18:18:26.511 INFO [32325]: _SERVER found -- 18:18:26.511 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 18:18:26.511 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 18:18:26.511 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=e2uag1iiukd740i64ev7k2fe44p9mguc; _gat_gtag_UA_54829827_2=1 -- 18:18:26.511 INFO [32325]: QUERY_STRING = /home/security -- 18:18:26.511 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:18:26.544 INFO [32325]: COREGRADE is stopping... -- 18:18:26.544 DEBUG [32325]: Closing database connection -- 18:18:26.544 SQL [32325]: pgsql_close() -- 18:18:26.747 INFO [32325]: COREGRADE is starting... -- 18:18:26.747 INFO [32325]: Version from config: 1.0 -- 18:18:26.747 DEBUG [32325]: Connecting to database... -- 18:18:26.747 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:18:26.747 SQL [32325]: pgsql_db_connect() -- 18:18:26.752 DEBUG [32325]: Database connection successful -- 18:18:26.752 INFO [32325]: _SERVER found -- 18:18:26.752 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 18:18:26.752 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 18:18:26.752 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=e2uag1iiukd740i64ev7k2fe44p9mguc; _gat_gtag_UA_54829827_2=1 -- 18:18:26.752 INFO [32325]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:18:26.752 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:18:26.764 INFO [32325]: COREGRADE is stopping... -- 18:18:26.764 DEBUG [32325]: Closing database connection -- 18:18:26.764 SQL [32325]: pgsql_close() -- 18:18:28.198 INFO [32325]: COREGRADE is starting... -- 18:18:28.199 INFO [32325]: Version from config: 1.0 -- 18:18:28.199 DEBUG [32325]: Connecting to database... -- 18:18:28.199 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:18:28.199 SQL [32325]: pgsql_db_connect() -- 18:18:28.203 DEBUG [32325]: Database connection successful -- 18:18:28.203 INFO [32325]: _SERVER found -- 18:18:28.203 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 18:18:28.203 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 18:18:28.203 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=e2uag1iiukd740i64ev7k2fe44p9mguc; _gat_gtag_UA_54829827_2=1 -- 18:18:28.203 INFO [32325]: QUERY_STRING = -- 18:18:28.203 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:18:28.235 INFO [32325]: COREGRADE is stopping... -- 18:18:28.235 DEBUG [32325]: Closing database connection -- 18:18:28.235 SQL [32325]: pgsql_close() -- 18:18:29.713 INFO [32325]: COREGRADE is starting... -- 18:18:29.713 INFO [32325]: Version from config: 1.0 -- 18:18:29.713 DEBUG [32325]: Connecting to database... -- 18:18:29.713 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:18:29.713 SQL [32325]: pgsql_db_connect() -- 18:18:29.717 DEBUG [32325]: Database connection successful -- 18:18:29.717 INFO [32325]: _SERVER found -- 18:18:29.717 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 18:18:29.717 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 18:18:29.717 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=e2uag1iiukd740i64ev7k2fe44p9mguc; _gat_gtag_UA_54829827_2=1 -- 18:18:29.717 INFO [32325]: QUERY_STRING = /home/privacy -- 18:18:29.717 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:18:29.750 INFO [32325]: COREGRADE is stopping... -- 18:18:29.750 DEBUG [32325]: Closing database connection -- 18:18:29.750 SQL [32325]: pgsql_close() -- 18:18:31.528 INFO [32325]: COREGRADE is starting... -- 18:18:31.529 INFO [32325]: Version from config: 1.0 -- 18:18:31.529 DEBUG [32325]: Connecting to database... -- 18:18:31.529 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:18:31.529 SQL [32325]: pgsql_db_connect() -- 18:18:31.533 DEBUG [32325]: Database connection successful -- 18:18:31.533 INFO [32325]: _SERVER found -- 18:18:31.533 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 18:18:31.533 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 18:18:31.533 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=e2uag1iiukd740i64ev7k2fe44p9mguc; _gat_gtag_UA_54829827_2=1 -- 18:18:31.533 INFO [32325]: QUERY_STRING = -- 18:18:31.533 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:18:31.565 INFO [32325]: COREGRADE is stopping... -- 18:18:31.565 DEBUG [32325]: Closing database connection -- 18:18:31.565 SQL [32325]: pgsql_close() -- 18:18:33.581 INFO [32325]: COREGRADE is starting... -- 18:18:33.581 INFO [32325]: Version from config: 1.0 -- 18:18:33.581 DEBUG [32325]: Connecting to database... -- 18:18:33.581 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:18:33.581 SQL [32325]: pgsql_db_connect() -- 18:18:33.586 DEBUG [32325]: Database connection successful -- 18:18:33.586 INFO [32325]: _SERVER found -- 18:18:33.586 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 18:18:33.586 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 18:18:33.586 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=e2uag1iiukd740i64ev7k2fe44p9mguc; _gat_gtag_UA_54829827_2=1 -- 18:18:33.586 INFO [32325]: QUERY_STRING = /home/privacy -- 18:18:33.586 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:18:33.627 INFO [32325]: COREGRADE is stopping... -- 18:18:33.627 DEBUG [32325]: Closing database connection -- 18:18:33.627 SQL [32325]: pgsql_close() -- 18:18:38.743 INFO [32321]: COREGRADE is starting... -- 18:18:38.743 INFO [32321]: Version from config: 1.0 -- 18:18:38.743 DEBUG [32321]: Connecting to database... -- 18:18:38.743 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:18:38.743 SQL [32321]: pgsql_db_connect() -- 18:18:38.748 DEBUG [32321]: Database connection successful -- 18:18:38.748 INFO [32321]: _SERVER found -- 18:18:38.748 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 18:18:38.748 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 18:18:38.748 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=e2uag1iiukd740i64ev7k2fe44p9mguc; _gat_gtag_UA_54829827_2=1 -- 18:18:38.748 INFO [32321]: QUERY_STRING = -- 18:18:38.748 INFO [32321]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:18:38.782 INFO [32321]: COREGRADE is stopping... -- 18:18:38.782 DEBUG [32321]: Closing database connection -- 18:18:38.782 SQL [32321]: pgsql_close() -- 18:19:03.564 INFO [32387]: COREGRADE is starting... -- 18:19:03.564 INFO [32387]: Version from config: 1.0 -- 18:19:03.564 DEBUG [32387]: Connecting to database... -- 18:19:03.564 DEBUG [32387]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:19:03.564 SQL [32387]: pgsql_db_connect() -- 18:19:03.568 DEBUG [32387]: Database connection successful -- 18:19:03.568 INFO [32387]: _SERVER found -- 18:19:03.568 INFO [32387]: REMOTE_ADDR = 10.0.0.15 -- 18:19:03.568 INFO [32387]: SERVER_NAME = oameye.works.coregrade.com -- 18:19:03.568 INFO [32387]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=e2uag1iiukd740i64ev7k2fe44p9mguc -- 18:19:03.568 INFO [32387]: QUERY_STRING = /home/faq -- 18:19:03.568 INFO [32387]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:19:03.601 INFO [32387]: COREGRADE is stopping... -- 18:19:03.601 DEBUG [32387]: Closing database connection -- 18:19:03.601 SQL [32387]: pgsql_close() -- 18:19:03.800 INFO [32387]: COREGRADE is starting... -- 18:19:03.800 INFO [32387]: Version from config: 1.0 -- 18:19:03.800 DEBUG [32387]: Connecting to database... -- 18:19:03.800 DEBUG [32387]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:19:03.800 SQL [32387]: pgsql_db_connect() -- 18:19:03.805 DEBUG [32387]: Database connection successful -- 18:19:03.805 INFO [32387]: _SERVER found -- 18:19:03.805 INFO [32387]: REMOTE_ADDR = 10.0.0.15 -- 18:19:03.805 INFO [32387]: SERVER_NAME = oameye.works.coregrade.com -- 18:19:03.805 INFO [32387]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=e2uag1iiukd740i64ev7k2fe44p9mguc -- 18:19:03.805 INFO [32387]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:19:03.805 INFO [32387]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:19:03.816 INFO [32387]: COREGRADE is stopping... -- 18:19:03.816 DEBUG [32387]: Closing database connection -- 18:19:03.816 SQL [32387]: pgsql_close() -- 18:19:58.841 INFO [32562]: COREGRADE is starting... -- 18:19:58.842 INFO [32562]: Version from config: 1.0 -- 18:19:58.842 DEBUG [32562]: Connecting to database... -- 18:19:58.842 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:19:58.842 SQL [32562]: pgsql_db_connect() -- 18:19:58.846 DEBUG [32562]: Database connection successful -- 18:19:58.846 INFO [32562]: _SERVER found -- 18:19:58.846 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 18:19:58.846 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 18:19:58.846 INFO [32562]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=e2uag1iiukd740i64ev7k2fe44p9mguc -- 18:19:58.846 INFO [32562]: QUERY_STRING = /home/faq -- 18:19:58.846 INFO [32562]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:19:58.880 INFO [32562]: COREGRADE is stopping... -- 18:19:58.880 DEBUG [32562]: Closing database connection -- 18:19:58.880 SQL [32562]: pgsql_close() -- 18:19:59.038 INFO [32562]: COREGRADE is starting... -- 18:19:59.038 INFO [32562]: Version from config: 1.0 -- 18:19:59.038 DEBUG [32562]: Connecting to database... -- 18:19:59.038 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:19:59.038 SQL [32562]: pgsql_db_connect() -- 18:19:59.043 DEBUG [32562]: Database connection successful -- 18:19:59.043 INFO [32562]: _SERVER found -- 18:19:59.043 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 18:19:59.043 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 18:19:59.043 INFO [32562]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.1254061804.1586900481; ci_session=e2uag1iiukd740i64ev7k2fe44p9mguc -- 18:19:59.043 INFO [32562]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:19:59.043 INFO [32562]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:19:59.054 INFO [32562]: COREGRADE is stopping... -- 18:19:59.054 DEBUG [32562]: Closing database connection -- 18:19:59.054 SQL [32562]: pgsql_close() -- 19:11:28.581 INFO [32376]: COREGRADE is starting... -- 19:11:28.581 INFO [32376]: Version from config: 1.0 -- 19:11:28.581 DEBUG [32376]: Connecting to database... -- 19:11:28.581 DEBUG [32376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:11:28.581 SQL [32376]: pgsql_db_connect() -- 19:11:28.586 DEBUG [32376]: Database connection successful -- 19:11:28.586 INFO [32376]: _SERVER found -- 19:11:28.586 INFO [32376]: REMOTE_ADDR = 10.0.0.15 -- 19:11:28.586 INFO [32376]: SERVER_NAME = oameye.works.coregrade.com -- 19:11:28.586 INFO [32376]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=omm7de7m3dr0qabvp25sueae2f0hj39r -- 19:11:28.586 INFO [32376]: QUERY_STRING = /auth -- 19:11:28.586 INFO [32376]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:11:28.621 INFO [32376]: COREGRADE is stopping... -- 19:11:28.621 DEBUG [32376]: Closing database connection -- 19:11:28.621 SQL [32376]: pgsql_close() -- 19:11:28.811 INFO [32376]: COREGRADE is starting... -- 19:11:28.811 INFO [32376]: Version from config: 1.0 -- 19:11:28.811 DEBUG [32376]: Connecting to database... -- 19:11:28.811 DEBUG [32376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:11:28.811 SQL [32376]: pgsql_db_connect() -- 19:11:28.815 DEBUG [32376]: Database connection successful -- 19:11:28.815 INFO [32376]: _SERVER found -- 19:11:28.815 INFO [32376]: REMOTE_ADDR = 10.0.0.15 -- 19:11:28.815 INFO [32376]: SERVER_NAME = oameye.works.coregrade.com -- 19:11:28.815 INFO [32376]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=s8u3l8916iampj8b8gs7oe7oh46365nc -- 19:11:28.815 INFO [32376]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 19:11:28.815 INFO [32376]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:11:28.826 INFO [32376]: COREGRADE is stopping... -- 19:11:28.826 DEBUG [32376]: Closing database connection -- 19:11:28.826 SQL [32376]: pgsql_close() -- 19:13:01.737 INFO [32324]: COREGRADE is starting... -- 19:13:01.737 INFO [32324]: Version from config: 1.0 -- 19:13:01.737 DEBUG [32324]: Connecting to database... -- 19:13:01.737 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:13:01.737 SQL [32324]: pgsql_db_connect() -- 19:13:01.741 DEBUG [32324]: Database connection successful -- 19:13:01.741 INFO [32324]: _SERVER found -- 19:13:01.741 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 19:13:01.741 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 19:13:01.741 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.729994086.1581303194; _gid=GA1.2.1035126347.1586859928 -- 19:13:01.741 INFO [32324]: QUERY_STRING = -- 19:13:01.741 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:13:01.782 INFO [32324]: COREGRADE is stopping... -- 19:13:01.782 DEBUG [32324]: Closing database connection -- 19:13:01.782 SQL [32324]: pgsql_close() -- 19:40:17.836 INFO [32562]: COREGRADE is starting... -- 19:40:17.837 INFO [32562]: Version from config: 1.0 -- 19:40:17.837 DEBUG [32562]: Connecting to database... -- 19:40:17.837 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:40:17.837 SQL [32562]: pgsql_db_connect() -- 19:40:17.842 DEBUG [32562]: Database connection successful -- 19:40:17.842 INFO [32562]: _SERVER found -- 19:40:17.842 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 19:40:17.842 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 19:40:17.842 INFO [32562]: QUERY_STRING = -- 19:40:17.842 INFO [32562]: HTTP_X_FORWARDED_FOR = 66.249.79.118 -- 19:40:17.884 INFO [32562]: COREGRADE is stopping... -- 19:40:17.884 DEBUG [32562]: Closing database connection -- 19:40:17.884 SQL [32562]: pgsql_close() -- 20:05:46.991 INFO [32376]: COREGRADE is starting... -- 20:05:46.992 INFO [32376]: Version from config: 1.0 -- 20:05:46.992 DEBUG [32376]: Connecting to database... -- 20:05:46.992 DEBUG [32376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:05:46.992 SQL [32376]: pgsql_db_connect() -- 20:05:46.996 DEBUG [32376]: Database connection successful -- 20:05:46.996 INFO [32376]: _SERVER found -- 20:05:46.996 INFO [32376]: REMOTE_ADDR = 10.0.0.15 -- 20:05:46.996 INFO [32376]: SERVER_NAME = oameye.works.coregrade.com -- 20:05:46.996 INFO [32376]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.449013359.1587063852 -- 20:05:46.996 INFO [32376]: QUERY_STRING = /auth -- 20:05:46.996 INFO [32376]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:05:47.032 INFO [32376]: COREGRADE is stopping... -- 20:05:47.032 DEBUG [32376]: Closing database connection -- 20:05:47.032 SQL [32376]: pgsql_close() -- 21:16:13.562 INFO [742]: COREGRADE is starting... -- 21:16:13.563 INFO [742]: Version from config: 1.0 -- 21:16:13.563 DEBUG [742]: Connecting to database... -- 21:16:13.563 DEBUG [742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:13.563 SQL [742]: pgsql_db_connect() -- 21:16:13.567 DEBUG [742]: Database connection successful -- 21:16:13.567 INFO [742]: _SERVER found -- 21:16:13.567 INFO [742]: REMOTE_ADDR = 10.0.0.15 -- 21:16:13.567 INFO [742]: SERVER_NAME = oameye.works.coregrade.com -- 21:16:13.567 INFO [742]: QUERY_STRING = /robots.txt -- 21:16:13.567 INFO [742]: HTTP_X_FORWARDED_FOR = 157.55.39.17 -- 21:16:13.584 INFO [742]: COREGRADE is stopping... -- 21:16:13.584 DEBUG [742]: Closing database connection -- 21:16:13.584 SQL [742]: pgsql_close() -- 21:16:14.104 INFO [743]: COREGRADE is starting... -- 21:16:14.105 INFO [743]: Version from config: 1.0 -- 21:16:14.105 DEBUG [743]: Connecting to database... -- 21:16:14.105 DEBUG [743]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:14.105 SQL [743]: pgsql_db_connect() -- 21:16:14.109 DEBUG [743]: Database connection successful -- 21:16:14.109 INFO [743]: _SERVER found -- 21:16:14.109 INFO [743]: REMOTE_ADDR = 10.0.0.15 -- 21:16:14.109 INFO [743]: SERVER_NAME = oameye.works.coregrade.com -- 21:16:14.109 INFO [743]: QUERY_STRING = /robots.txt -- 21:16:14.109 INFO [743]: HTTP_X_FORWARDED_FOR = 157.55.39.17 -- 21:16:14.124 INFO [743]: COREGRADE is stopping... -- 21:16:14.124 DEBUG [743]: Closing database connection -- 21:16:14.124 SQL [743]: pgsql_close() -- 21:16:40.348 INFO [32325]: COREGRADE is starting... -- 21:16:40.348 INFO [32325]: Version from config: 1.0 -- 21:16:40.348 DEBUG [32325]: Connecting to database... -- 21:16:40.348 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:16:40.348 SQL [32325]: pgsql_db_connect() -- 21:16:40.353 DEBUG [32325]: Database connection successful -- 21:16:40.353 INFO [32325]: _SERVER found -- 21:16:40.353 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 21:16:40.353 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 21:16:40.353 INFO [32325]: QUERY_STRING = /home/security -- 21:16:40.353 INFO [32325]: HTTP_X_FORWARDED_FOR = 207.46.13.175 -- 21:16:40.390 INFO [32325]: COREGRADE is stopping... -- 21:16:40.390 DEBUG [32325]: Closing database connection -- 21:16:40.390 SQL [32325]: pgsql_close() -- 01:34:03.950 INFO [32321]: COREGRADE is starting... -- 01:34:03.950 INFO [32321]: Version from config: 1.0 -- 01:34:03.950 DEBUG [32321]: Connecting to database... -- 01:34:03.950 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:34:03.950 SQL [32321]: pgsql_db_connect() -- 01:34:03.955 DEBUG [32321]: Database connection successful -- 01:34:03.955 INFO [32321]: _SERVER found -- 01:34:03.955 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 01:34:03.955 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 01:34:03.955 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845 -- 01:34:03.955 INFO [32321]: QUERY_STRING = screen=member/ -- 01:34:03.955 INFO [32321]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:34:03.991 INFO [32321]: COREGRADE is stopping... -- 01:34:03.991 DEBUG [32321]: Closing database connection -- 01:34:03.991 SQL [32321]: pgsql_close() -- 01:34:04.012 INFO [32321]: COREGRADE is starting... -- 01:34:04.012 INFO [32321]: Version from config: 1.0 -- 01:34:04.012 DEBUG [32321]: Connecting to database... -- 01:34:04.012 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:34:04.012 SQL [32321]: pgsql_db_connect() -- 01:34:04.016 DEBUG [32321]: Database connection successful -- 01:34:04.016 INFO [32321]: _SERVER found -- 01:34:04.016 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 01:34:04.016 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 01:34:04.016 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=m0itlt9p2qha1lelnhcjc197flmiujis -- 01:34:04.016 INFO [32321]: QUERY_STRING = -- 01:34:04.016 INFO [32321]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:34:04.049 INFO [32321]: COREGRADE is stopping... -- 01:34:04.049 DEBUG [32321]: Closing database connection -- 01:34:04.049 SQL [32321]: pgsql_close() -- 01:34:04.345 INFO [32321]: COREGRADE is starting... -- 01:34:04.346 INFO [32321]: Version from config: 1.0 -- 01:34:04.346 DEBUG [32321]: Connecting to database... -- 01:34:04.346 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:34:04.346 SQL [32321]: pgsql_db_connect() -- 01:34:04.350 DEBUG [32321]: Database connection successful -- 01:34:04.350 INFO [32321]: _SERVER found -- 01:34:04.350 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 01:34:04.350 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 01:34:04.350 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=m0itlt9p2qha1lelnhcjc197flmiujis -- 01:34:04.350 INFO [32321]: QUERY_STRING = /assets/img/footer_1.jpg -- 01:34:04.350 INFO [32321]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:34:04.361 INFO [32321]: COREGRADE is stopping... -- 01:34:04.361 DEBUG [32321]: Closing database connection -- 01:34:04.361 SQL [32321]: pgsql_close() -- 01:34:16.871 INFO [32324]: COREGRADE is starting... -- 01:34:16.871 INFO [32324]: Version from config: 1.0 -- 01:34:16.871 DEBUG [32324]: Connecting to database... -- 01:34:16.871 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:34:16.871 SQL [32324]: pgsql_db_connect() -- 01:34:16.875 DEBUG [32324]: Database connection successful -- 01:34:16.875 INFO [32324]: _SERVER found -- 01:34:16.875 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 01:34:16.875 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 01:34:16.875 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=m0itlt9p2qha1lelnhcjc197flmiujis; _gat_gtag_UA_54829827_2=1 -- 01:34:16.875 INFO [32324]: QUERY_STRING = /auth -- 01:34:16.875 INFO [32324]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:34:16.908 INFO [32324]: COREGRADE is stopping... -- 01:34:16.908 DEBUG [32324]: Closing database connection -- 01:34:16.908 SQL [32324]: pgsql_close() -- 01:34:16.916 INFO [32324]: COREGRADE is starting... -- 01:34:16.916 INFO [32324]: Version from config: 1.0 -- 01:34:16.916 DEBUG [32324]: Connecting to database... -- 01:34:16.916 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:34:16.916 SQL [32324]: pgsql_db_connect() -- 01:34:16.920 DEBUG [32324]: Database connection successful -- 01:34:16.920 INFO [32324]: _SERVER found -- 01:34:16.920 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 01:34:16.920 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 01:34:16.920 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=m0itlt9p2qha1lelnhcjc197flmiujis; _gat_gtag_UA_54829827_2=1 -- 01:34:16.920 INFO [32324]: QUERY_STRING = /welcome/viewLogin -- 01:34:16.920 INFO [32324]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:34:16.950 INFO [32324]: COREGRADE is stopping... -- 01:34:16.950 DEBUG [32324]: Closing database connection -- 01:34:16.950 SQL [32324]: pgsql_close() -- 01:37:19.219 INFO [32322]: COREGRADE is starting... -- 01:37:19.219 INFO [32322]: Version from config: 1.0 -- 01:37:19.219 DEBUG [32322]: Connecting to database... -- 01:37:19.219 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:37:19.219 SQL [32322]: pgsql_db_connect() -- 01:37:19.223 DEBUG [32322]: Database connection successful -- 01:37:19.223 INFO [32322]: _SERVER found -- 01:37:19.223 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 01:37:19.223 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 01:37:19.223 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=m0itlt9p2qha1lelnhcjc197flmiujis -- 01:37:19.223 INFO [32322]: QUERY_STRING = screen=member/ -- 01:37:19.223 INFO [32322]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:37:19.257 INFO [32322]: COREGRADE is stopping... -- 01:37:19.257 DEBUG [32322]: Closing database connection -- 01:37:19.257 SQL [32322]: pgsql_close() -- 01:37:19.267 INFO [32322]: COREGRADE is starting... -- 01:37:19.267 INFO [32322]: Version from config: 1.0 -- 01:37:19.267 DEBUG [32322]: Connecting to database... -- 01:37:19.267 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:37:19.267 SQL [32322]: pgsql_db_connect() -- 01:37:19.271 DEBUG [32322]: Database connection successful -- 01:37:19.271 INFO [32322]: _SERVER found -- 01:37:19.271 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 01:37:19.271 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 01:37:19.271 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=m0itlt9p2qha1lelnhcjc197flmiujis -- 01:37:19.271 INFO [32322]: QUERY_STRING = -- 01:37:19.271 INFO [32322]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:37:19.302 INFO [32322]: COREGRADE is stopping... -- 01:37:19.303 DEBUG [32322]: Closing database connection -- 01:37:19.303 SQL [32322]: pgsql_close() -- 01:37:19.478 INFO [32322]: COREGRADE is starting... -- 01:37:19.479 INFO [32322]: Version from config: 1.0 -- 01:37:19.479 DEBUG [32322]: Connecting to database... -- 01:37:19.479 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:37:19.479 SQL [32322]: pgsql_db_connect() -- 01:37:19.483 DEBUG [32322]: Database connection successful -- 01:37:19.483 INFO [32322]: _SERVER found -- 01:37:19.483 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 01:37:19.483 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 01:37:19.483 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=m0itlt9p2qha1lelnhcjc197flmiujis -- 01:37:19.483 INFO [32322]: QUERY_STRING = /assets/img/footer_1.jpg -- 01:37:19.483 INFO [32322]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:37:19.494 INFO [32322]: COREGRADE is stopping... -- 01:37:19.494 DEBUG [32322]: Closing database connection -- 01:37:19.494 SQL [32322]: pgsql_close() -- 01:37:38.465 INFO [32323]: COREGRADE is starting... -- 01:37:38.466 INFO [32323]: Version from config: 1.0 -- 01:37:38.466 DEBUG [32323]: Connecting to database... -- 01:37:38.466 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:37:38.466 SQL [32323]: pgsql_db_connect() -- 01:37:38.470 DEBUG [32323]: Database connection successful -- 01:37:38.470 INFO [32323]: _SERVER found -- 01:37:38.470 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 01:37:38.470 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 01:37:38.470 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=m0itlt9p2qha1lelnhcjc197flmiujis; _gat_gtag_UA_54829827_2=1 -- 01:37:38.470 INFO [32323]: QUERY_STRING = /auth -- 01:37:38.470 INFO [32323]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:37:38.503 INFO [32323]: COREGRADE is stopping... -- 01:37:38.503 DEBUG [32323]: Closing database connection -- 01:37:38.503 SQL [32323]: pgsql_close() -- 01:37:38.639 INFO [32323]: COREGRADE is starting... -- 01:37:38.640 INFO [32323]: Version from config: 1.0 -- 01:37:38.640 DEBUG [32323]: Connecting to database... -- 01:37:38.640 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:37:38.640 SQL [32323]: pgsql_db_connect() -- 01:37:38.644 DEBUG [32323]: Database connection successful -- 01:37:38.644 INFO [32323]: _SERVER found -- 01:37:38.644 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 01:37:38.644 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 01:37:38.644 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=m0itlt9p2qha1lelnhcjc197flmiujis; _gat_gtag_UA_54829827_2=1 -- 01:37:38.644 INFO [32323]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 01:37:38.644 INFO [32323]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:37:38.655 INFO [32323]: COREGRADE is stopping... -- 01:37:38.655 DEBUG [32323]: Closing database connection -- 01:37:38.655 SQL [32323]: pgsql_close() -- 01:37:43.285 INFO [32323]: COREGRADE is starting... -- 01:37:43.285 INFO [32323]: Version from config: 1.0 -- 01:37:43.285 DEBUG [32323]: Connecting to database... -- 01:37:43.285 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:37:43.285 SQL [32323]: pgsql_db_connect() -- 01:37:43.320 INFO [32323]: COREGRADE is starting... -- 01:37:43.320 INFO [32323]: Version from config: 1.0 -- 01:37:43.320 DEBUG [32323]: Connecting to database... -- 01:37:43.320 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:37:43.320 SQL [32323]: pgsql_db_connect() -- 01:37:43.325 DEBUG [32323]: Database connection successful -- 01:37:43.325 INFO [32323]: _SERVER found -- 01:37:43.325 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 01:37:43.325 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 01:37:43.325 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=m0itlt9p2qha1lelnhcjc197flmiujis; _gat_gtag_UA_54829827_2=1 -- 01:37:43.325 INFO [32323]: QUERY_STRING = -- 01:37:43.325 INFO [32323]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:37:43.325 INFO [32323]: SystemStatus()09-09-********~************ -- 01:37:43.325 INFO [32323]: long coregrade_api_main(CVars in, CVars &out) -- 01:37:43.325 INFO [32323]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 01:37:43.325 INFO [32323]: account calls -- 01:37:43.325 INFO [32323]: account_calls() -- 01:37:43.325 INFO [32323]: LoginCoreGradeAccount() -- 01:37:43.325 FLOG_MAX [32323]: REQ_STRING(username) -- 01:37:43.325 FLOG_MAX [32323]: REQ_STRING(password) -- 01:37:43.325 FLOG_MAX [32323]: REQ_STRING(sessionid) -- 01:37:43.325 FLOG_MAX [32323]: long load_db_record( CVars &rec, const char * query, ... ) -- 01:37:43.325 SQL [32323]: pgsql_query() -- 01:37:43.325 SQL [32323]: About to run query: -- 01:37:43.325 SQL [32323]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678') -- 01:37:43.329 SQL [32323]: Found rows: 1 -- 01:37:43.329 FLOG_MAX [32323]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678')) num_cols=16 -- 01:37:43.329 INFO [32323]: long SessionCheck(long uid, const char *sessionid, int create ) -- 01:37:43.329 SQL [32323]: pgsql_exec() -- 01:37:43.329 SQL [32323]: About to run query: -- 01:37:43.329 SQL [32323]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 01:37:43.331 SQL [32323]: PQcmdTuples: 1 -- 01:37:43.331 SQL [32323]: Affected rows: 1 -- 01:37:43.331 SQL [32323]: pgsql_exec() -- 01:37:43.331 SQL [32323]: About to run query: -- 01:37:43.331 SQL [32323]: DELETE FROM members_session WHERE member_id=7 -- 01:37:43.331 SQL [32323]: PQcmdTuples: 0 -- 01:37:43.331 SQL [32323]: Affected rows: 0 -- 01:37:43.331 SQL [32323]: pgsql_query() -- 01:37:43.331 SQL [32323]: About to run query: -- 01:37:43.331 SQL [32323]: SELECT * FROM members_session WHERE member_id=7 AND session<>'82EDD6B6CBA9B622367317C865D3ED43' -- 01:37:43.332 SQL [32323]: Found rows: 0 -- 01:37:43.332 SQL [32323]: Found rows: 0 -- 01:37:43.332 FLOG_MAX [32323]: long load_db_record( CVars &rec, const char * query, ... ) -- 01:37:43.332 SQL [32323]: pgsql_query() -- 01:37:43.332 SQL [32323]: About to run query: -- 01:37:43.332 SQL [32323]: SELECT * FROM members_session WHERE member_id=7 AND session='82EDD6B6CBA9B622367317C865D3ED43' -- 01:37:43.332 SQL [32323]: Found rows: 0 -- 01:37:43.332 SQL [32323]: Found rows: 0 -- 01:37:43.332 FLOG_MAX [32323]: insert_db_record() -- 01:37:43.332 SQL [32323]: pgsql_exec() -- 01:37:43.332 SQL [32323]: About to run query: -- 01:37:43.332 SQL [32323]: INSERT INTO members_session (member_id,session) VALUES ('7','82EDD6B6CBA9B622367317C865D3ED43') -- 01:37:43.334 SQL [32323]: PQcmdTuples: 1 -- 01:37:43.334 SQL [32323]: Affected rows: 1 -- 01:37:43.334 FLOG_MAX [32323]: SELECT currval('members_session_id_seq') -- 01:37:43.334 SQL [32323]: pgsql_query() -- 01:37:43.334 SQL [32323]: About to run query: -- 01:37:43.334 SQL [32323]: SELECT currval('members_session_id_seq') -- 01:37:43.334 SQL [32323]: Found rows: 1 -- 01:37:43.334 INFO [32323]: CreateDefaultPage() -- 01:37:43.334 FLOG_MAX [32323]: long load_db_record( CVars &rec, const char * query, ... ) -- 01:37:43.334 SQL [32323]: pgsql_query() -- 01:37:43.334 SQL [32323]: About to run query: -- 01:37:43.335 SQL [32323]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 01:37:43.335 SQL [32323]: Found rows: 1 -- 01:37:43.335 FLOG_MAX [32323]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 01:37:43.335 SQL [32323]: pgsql_query() -- 01:37:43.335 SQL [32323]: About to run query: -- 01:37:43.335 SQL [32323]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 01:37:43.335 SQL [32323]: Found rows: 1 -- 01:37:43.335 INFO [32323]: /CreateDefaultPage() -- 01:37:43.335 INFO [32323]: /LoginCoreGradeAccount() -- 01:37:43.335 INFO [32323]: RET: added=2020-02-05 09:42:12.816064 -- 01:37:43.335 INFO [32323]: RET: email=tokslaw@chiefsoft.com -- 01:37:43.335 INFO [32323]: RET: firstname=Tokunbo -- 01:37:43.335 INFO [32323]: RET: folder=5D06B187B1E2285A63AD1D0ECB670D98 -- 01:37:43.335 INFO [32323]: RET: id=7 -- 01:37:43.335 INFO [32323]: RET: last_login= -- 01:37:43.335 INFO [32323]: RET: lastname=Lawal -- 01:37:43.335 INFO [32323]: RET: loc=192.168.1.13 -- 01:37:43.335 INFO [32323]: RET: member_id=7 -- 01:37:43.335 INFO [32323]: RET: password=25d55ad283aa400af464c76d713c07ad -- 01:37:43.335 INFO [32323]: RET: phone= -- 01:37:43.335 INFO [32323]: RET: pid= -- 01:37:43.335 INFO [32323]: RET: result=YES I GET TO BACK END -- 01:37:43.335 INFO [32323]: RET: sessionid=82EDD6B6CBA9B622367317C865D3ED43 -- 01:37:43.335 INFO [32323]: RET: status=1 -- 01:37:43.335 INFO [32323]: RET: stauts=OK -- 01:37:43.335 INFO [32323]: RET: username=tokslaw@chiefsoft.com -- 01:37:43.335 INFO [32323]: RET: verified= -- 01:37:43.337 INFO [32323]: COREGRADE is stopping... -- 01:37:43.337 DEBUG [32323]: Closing database connection -- 01:37:43.337 SQL [32323]: pgsql_close() -- 01:37:43.289 DEBUG [32323]: Database connection successful -- 01:37:43.289 INFO [32323]: _SERVER found -- 01:37:43.289 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 01:37:43.289 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 01:37:43.289 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=m0itlt9p2qha1lelnhcjc197flmiujis; _gat_gtag_UA_54829827_2=1 -- 01:37:43.289 INFO [32323]: QUERY_STRING = /auth -- 01:37:43.289 INFO [32323]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:37:43.338 INFO [32323]: COREGRADE is stopping... -- 01:37:43.338 DEBUG [32323]: Closing database connection -- 01:37:43.338 SQL [32323]: pgsql_close() -- 01:37:43.345 INFO [32323]: COREGRADE is starting... -- 01:37:43.345 INFO [32323]: Version from config: 1.0 -- 01:37:43.345 DEBUG [32323]: Connecting to database... -- 01:37:43.345 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:37:43.345 SQL [32323]: pgsql_db_connect() -- 01:37:43.349 DEBUG [32323]: Database connection successful -- 01:37:43.349 INFO [32323]: _SERVER found -- 01:37:43.349 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 01:37:43.349 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 01:37:43.349 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=m0itlt9p2qha1lelnhcjc197flmiujis; _gat_gtag_UA_54829827_2=1 -- 01:37:43.349 INFO [32323]: QUERY_STRING = /member/index -- 01:37:43.349 INFO [32323]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:37:43.389 INFO [32323]: COREGRADE is stopping... -- 01:37:43.389 DEBUG [32323]: Closing database connection -- 01:37:43.389 SQL [32323]: pgsql_close() -- 01:37:43.614 INFO [32323]: COREGRADE is starting... -- 01:37:43.615 INFO [32323]: Version from config: 1.0 -- 01:37:43.615 DEBUG [32323]: Connecting to database... -- 01:37:43.615 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:37:43.615 SQL [32323]: pgsql_db_connect() -- 01:37:43.619 DEBUG [32323]: Database connection successful -- 01:37:43.619 INFO [32323]: _SERVER found -- 01:37:43.619 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 01:37:43.619 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 01:37:43.619 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=m0itlt9p2qha1lelnhcjc197flmiujis; _gat_gtag_UA_54829827_2=1 -- 01:37:43.619 INFO [32323]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 01:37:43.619 INFO [32323]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:37:43.630 INFO [32323]: COREGRADE is stopping... -- 01:37:43.630 DEBUG [32323]: Closing database connection -- 01:37:43.630 SQL [32323]: pgsql_close() -- 01:37:58.879 INFO [32562]: COREGRADE is starting... -- 01:37:58.879 INFO [32562]: Version from config: 1.0 -- 01:37:58.879 DEBUG [32562]: Connecting to database... -- 01:37:58.879 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:37:58.879 SQL [32562]: pgsql_db_connect() -- 01:37:58.883 DEBUG [32562]: Database connection successful -- 01:37:58.883 INFO [32562]: _SERVER found -- 01:37:58.883 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 01:37:58.883 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 01:37:58.883 INFO [32562]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=m0itlt9p2qha1lelnhcjc197flmiujis; _gat_gtag_UA_54829827_2=1 -- 01:37:58.883 INFO [32562]: QUERY_STRING = /member/classroom -- 01:37:58.883 INFO [32562]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:37:58.928 INFO [32562]: COREGRADE is stopping... -- 01:37:58.928 DEBUG [32562]: Closing database connection -- 01:37:58.928 SQL [32562]: pgsql_close() -- 01:38:24.141 INFO [32376]: COREGRADE is starting... -- 01:38:24.141 INFO [32376]: Version from config: 1.0 -- 01:38:24.141 DEBUG [32376]: Connecting to database... -- 01:38:24.141 DEBUG [32376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:38:24.141 SQL [32376]: pgsql_db_connect() -- 01:38:24.145 DEBUG [32376]: Database connection successful -- 01:38:24.145 INFO [32376]: _SERVER found -- 01:38:24.145 INFO [32376]: REMOTE_ADDR = 10.0.0.15 -- 01:38:24.145 INFO [32376]: SERVER_NAME = oameye.works.coregrade.com -- 01:38:24.145 INFO [32376]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=m0itlt9p2qha1lelnhcjc197flmiujis -- 01:38:24.145 INFO [32376]: QUERY_STRING = /member/viewRoom -- 01:38:24.145 INFO [32376]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 01:38:24.181 INFO [32376]: COREGRADE is stopping... -- 01:38:24.181 DEBUG [32376]: Closing database connection -- 01:38:24.181 SQL [32376]: pgsql_close() -- 03:53:29.097 INFO [741]: COREGRADE is starting... -- 03:53:29.097 INFO [741]: Version from config: 1.0 -- 03:53:29.097 DEBUG [741]: Connecting to database... -- 03:53:29.097 DEBUG [741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:53:29.097 SQL [741]: pgsql_db_connect() -- 03:53:29.102 DEBUG [741]: Database connection successful -- 03:53:29.102 INFO [741]: _SERVER found -- 03:53:29.102 INFO [741]: REMOTE_ADDR = 10.0.0.15 -- 03:53:29.102 INFO [741]: SERVER_NAME = oameye.works.coregrade.com -- 03:53:29.102 INFO [741]: QUERY_STRING = /robots.txt -- 03:53:29.102 INFO [741]: HTTP_X_FORWARDED_FOR = 66.249.79.118 -- 03:53:29.116 INFO [741]: COREGRADE is stopping... -- 03:53:29.116 DEBUG [741]: Closing database connection -- 03:53:29.116 SQL [741]: pgsql_close() -- 03:53:29.357 INFO [742]: COREGRADE is starting... -- 03:53:29.357 INFO [742]: Version from config: 1.0 -- 03:53:29.357 DEBUG [742]: Connecting to database... -- 03:53:29.357 DEBUG [742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:53:29.357 SQL [742]: pgsql_db_connect() -- 03:53:29.362 DEBUG [742]: Database connection successful -- 03:53:29.362 INFO [742]: _SERVER found -- 03:53:29.362 INFO [742]: REMOTE_ADDR = 10.0.0.15 -- 03:53:29.362 INFO [742]: SERVER_NAME = oameye.works.coregrade.com -- 03:53:29.362 INFO [742]: QUERY_STRING = -- 03:53:29.362 INFO [742]: HTTP_X_FORWARDED_FOR = 66.249.79.116 -- 03:53:29.407 INFO [742]: COREGRADE is stopping... -- 03:53:29.407 DEBUG [742]: Closing database connection -- 03:53:29.407 SQL [742]: pgsql_close() -- 04:06:09.292 INFO [32325]: COREGRADE is starting... -- 04:06:09.293 INFO [32325]: Version from config: 1.0 -- 04:06:09.293 DEBUG [32325]: Connecting to database... -- 04:06:09.293 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:06:09.293 SQL [32325]: pgsql_db_connect() -- 04:06:09.297 DEBUG [32325]: Database connection successful -- 04:06:09.297 INFO [32325]: _SERVER found -- 04:06:09.297 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 04:06:09.297 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 04:06:09.297 INFO [32325]: QUERY_STRING = /.well-known/acme-challenge/4sfyR0-SxkHfcHOitwkWiyDLDg4LWGBepbEvRUfPzAI -- 04:06:09.297 INFO [32325]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 04:06:09.311 INFO [32325]: COREGRADE is stopping... -- 04:06:09.311 DEBUG [32325]: Closing database connection -- 04:06:09.311 SQL [32325]: pgsql_close() -- 04:06:09.605 INFO [32324]: COREGRADE is starting... -- 04:06:09.606 INFO [32324]: Version from config: 1.0 -- 04:06:09.606 DEBUG [32324]: Connecting to database... -- 04:06:09.606 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:06:09.606 SQL [32324]: pgsql_db_connect() -- 04:06:09.610 DEBUG [32324]: Database connection successful -- 04:06:09.610 INFO [32324]: _SERVER found -- 04:06:09.610 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 04:06:09.610 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 04:06:09.610 INFO [32324]: QUERY_STRING = /.well-known/acme-challenge/4sfyR0-SxkHfcHOitwkWiyDLDg4LWGBepbEvRUfPzAI -- 04:06:09.610 INFO [32324]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 04:06:09.626 INFO [32324]: COREGRADE is stopping... -- 04:06:09.626 DEBUG [32324]: Closing database connection -- 04:06:09.626 SQL [32324]: pgsql_close() -- 04:06:09.630 INFO [32325]: COREGRADE is starting... -- 04:06:09.630 INFO [32325]: Version from config: 1.0 -- 04:06:09.630 DEBUG [32325]: Connecting to database... -- 04:06:09.630 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:06:09.630 SQL [32325]: pgsql_db_connect() -- 04:06:09.634 DEBUG [32325]: Database connection successful -- 04:06:09.634 INFO [32325]: _SERVER found -- 04:06:09.634 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 04:06:09.634 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 04:06:09.634 INFO [32325]: QUERY_STRING = /.well-known/acme-challenge/4sfyR0-SxkHfcHOitwkWiyDLDg4LWGBepbEvRUfPzAI -- 04:06:09.634 INFO [32325]: HTTP_X_FORWARDED_FOR = 52.28.236.88 -- 04:06:09.646 INFO [32325]: COREGRADE is stopping... -- 04:06:09.646 DEBUG [32325]: Closing database connection -- 04:06:09.646 SQL [32325]: pgsql_close() -- 04:17:59.275 INFO [32323]: COREGRADE is starting... -- 04:17:59.275 INFO [32323]: Version from config: 1.0 -- 04:17:59.275 DEBUG [32323]: Connecting to database... -- 04:17:59.275 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:17:59.275 SQL [32323]: pgsql_db_connect() -- 04:17:59.280 DEBUG [32323]: Database connection successful -- 04:17:59.280 INFO [32323]: _SERVER found -- 04:17:59.280 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 04:17:59.280 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 04:17:59.280 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845 -- 04:17:59.280 INFO [32323]: QUERY_STRING = /auth -- 04:17:59.280 INFO [32323]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 04:17:59.315 INFO [32323]: COREGRADE is stopping... -- 04:17:59.315 DEBUG [32323]: Closing database connection -- 04:17:59.315 SQL [32323]: pgsql_close() -- 14:43:41.999 INFO [32562]: COREGRADE is starting... -- 14:43:41.000 INFO [32562]: Version from config: 1.0 -- 14:43:41.000 DEBUG [32562]: Connecting to database... -- 14:43:41.000 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:43:41.000 SQL [32562]: pgsql_db_connect() -- 14:43:42.005 DEBUG [32562]: Database connection successful -- 14:43:42.005 INFO [32562]: _SERVER found -- 14:43:42.005 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 14:43:42.005 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 14:43:42.005 INFO [32562]: QUERY_STRING = /TP/public/index.php -- 14:43:42.005 INFO [32562]: HTTP_X_FORWARDED_FOR = 111.230.174.239 -- 14:43:42.019 INFO [32562]: COREGRADE is stopping... -- 14:43:42.019 DEBUG [32562]: Closing database connection -- 14:43:42.019 SQL [32562]: pgsql_close() -- 14:43:43.357 INFO [32376]: COREGRADE is starting... -- 14:43:43.357 INFO [32376]: Version from config: 1.0 -- 14:43:43.357 DEBUG [32376]: Connecting to database... -- 14:43:43.357 DEBUG [32376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:43:43.357 SQL [32376]: pgsql_db_connect() -- 14:43:43.362 DEBUG [32376]: Database connection successful -- 14:43:43.362 INFO [32376]: _SERVER found -- 14:43:43.362 INFO [32376]: REMOTE_ADDR = 10.0.0.15 -- 14:43:43.362 INFO [32376]: SERVER_NAME = oameye.works.coregrade.com -- 14:43:43.362 INFO [32376]: QUERY_STRING = /TP/index.php -- 14:43:43.362 INFO [32376]: HTTP_X_FORWARDED_FOR = 111.230.174.239 -- 14:43:43.375 INFO [32376]: COREGRADE is stopping... -- 14:43:43.375 DEBUG [32376]: Closing database connection -- 14:43:43.375 SQL [32376]: pgsql_close() -- 14:43:44.676 INFO [32376]: COREGRADE is starting... -- 14:43:44.676 INFO [32376]: Version from config: 1.0 -- 14:43:44.676 DEBUG [32376]: Connecting to database... -- 14:43:44.676 DEBUG [32376]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:43:44.676 SQL [32376]: pgsql_db_connect() -- 14:43:44.680 DEBUG [32376]: Database connection successful -- 14:43:44.680 INFO [32376]: _SERVER found -- 14:43:44.680 INFO [32376]: REMOTE_ADDR = 10.0.0.15 -- 14:43:44.680 INFO [32376]: SERVER_NAME = oameye.works.coregrade.com -- 14:43:44.680 INFO [32376]: QUERY_STRING = /thinkphp/html/public/index.php -- 14:43:44.680 INFO [32376]: HTTP_X_FORWARDED_FOR = 111.230.174.239 -- 14:43:44.691 INFO [32376]: COREGRADE is stopping... -- 14:43:44.691 DEBUG [32376]: Closing database connection -- 14:43:44.692 SQL [32376]: pgsql_close() -- 14:43:46.003 INFO [742]: COREGRADE is starting... -- 14:43:46.004 INFO [742]: Version from config: 1.0 -- 14:43:46.004 DEBUG [742]: Connecting to database... -- 14:43:46.004 DEBUG [742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:43:46.004 SQL [742]: pgsql_db_connect() -- 14:43:46.008 DEBUG [742]: Database connection successful -- 14:43:46.008 INFO [742]: _SERVER found -- 14:43:46.008 INFO [742]: REMOTE_ADDR = 10.0.0.15 -- 14:43:46.008 INFO [742]: SERVER_NAME = oameye.works.coregrade.com -- 14:43:46.008 INFO [742]: QUERY_STRING = /html/public/index.php -- 14:43:46.008 INFO [742]: HTTP_X_FORWARDED_FOR = 111.230.174.239 -- 14:43:46.022 INFO [742]: COREGRADE is stopping... -- 14:43:46.022 DEBUG [742]: Closing database connection -- 14:43:46.022 SQL [742]: pgsql_close() -- 14:43:47.925 INFO [742]: COREGRADE is starting... -- 14:43:47.925 INFO [742]: Version from config: 1.0 -- 14:43:47.925 DEBUG [742]: Connecting to database... -- 14:43:47.925 DEBUG [742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:43:47.925 SQL [742]: pgsql_db_connect() -- 14:43:47.929 DEBUG [742]: Database connection successful -- 14:43:47.929 INFO [742]: _SERVER found -- 14:43:47.929 INFO [742]: REMOTE_ADDR = 10.0.0.15 -- 14:43:47.929 INFO [742]: SERVER_NAME = oameye.works.coregrade.com -- 14:43:47.929 INFO [742]: QUERY_STRING = /public/index.php -- 14:43:47.929 INFO [742]: HTTP_X_FORWARDED_FOR = 111.230.174.239 -- 14:43:47.940 INFO [742]: COREGRADE is stopping... -- 14:43:47.940 DEBUG [742]: Closing database connection -- 14:43:47.941 SQL [742]: pgsql_close() -- 14:43:51.241 INFO [741]: COREGRADE is starting... -- 14:43:51.241 INFO [741]: Version from config: 1.0 -- 14:43:51.241 DEBUG [741]: Connecting to database... -- 14:43:51.242 DEBUG [741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:43:51.242 SQL [741]: pgsql_db_connect() -- 14:43:51.246 DEBUG [741]: Database connection successful -- 14:43:51.246 INFO [741]: _SERVER found -- 14:43:51.246 INFO [741]: REMOTE_ADDR = 10.0.0.15 -- 14:43:51.246 INFO [741]: SERVER_NAME = oameye.works.coregrade.com -- 14:43:51.246 INFO [741]: QUERY_STRING = /TP/html/public/index.php -- 14:43:51.246 INFO [741]: HTTP_X_FORWARDED_FOR = 111.230.174.239 -- 14:43:51.259 INFO [741]: COREGRADE is stopping... -- 14:43:51.259 DEBUG [741]: Closing database connection -- 14:43:51.259 SQL [741]: pgsql_close() -- 14:43:52.557 INFO [741]: COREGRADE is starting... -- 14:43:52.557 INFO [741]: Version from config: 1.0 -- 14:43:52.557 DEBUG [741]: Connecting to database... -- 14:43:52.557 DEBUG [741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:43:52.557 SQL [741]: pgsql_db_connect() -- 14:43:52.561 DEBUG [741]: Database connection successful -- 14:43:52.561 INFO [741]: _SERVER found -- 14:43:52.561 INFO [741]: REMOTE_ADDR = 10.0.0.15 -- 14:43:52.561 INFO [741]: SERVER_NAME = oameye.works.coregrade.com -- 14:43:52.561 INFO [741]: QUERY_STRING = /elrekt.php -- 14:43:52.561 INFO [741]: HTTP_X_FORWARDED_FOR = 111.230.174.239 -- 14:43:52.572 INFO [741]: COREGRADE is stopping... -- 14:43:52.572 DEBUG [741]: Closing database connection -- 14:43:52.572 SQL [741]: pgsql_close() -- 14:43:54.089 INFO [741]: COREGRADE is starting... -- 14:43:54.089 INFO [741]: Version from config: 1.0 -- 14:43:54.089 DEBUG [741]: Connecting to database... -- 14:43:54.089 DEBUG [741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:43:54.089 SQL [741]: pgsql_db_connect() -- 14:43:54.094 DEBUG [741]: Database connection successful -- 14:43:54.094 INFO [741]: _SERVER found -- 14:43:54.094 INFO [741]: REMOTE_ADDR = 10.0.0.15 -- 14:43:54.094 INFO [741]: SERVER_NAME = oameye.works.coregrade.com -- 14:43:54.094 INFO [741]: QUERY_STRING = -- 14:43:54.094 INFO [741]: HTTP_X_FORWARDED_FOR = 111.230.174.239 -- 14:43:54.136 INFO [741]: COREGRADE is stopping... -- 14:43:54.136 DEBUG [741]: Closing database connection -- 14:43:54.136 SQL [741]: pgsql_close() -- 14:43:55.425 INFO [743]: COREGRADE is starting... -- 14:43:55.425 INFO [743]: Version from config: 1.0 -- 14:43:55.425 DEBUG [743]: Connecting to database... -- 14:43:55.425 DEBUG [743]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:43:55.425 SQL [743]: pgsql_db_connect() -- 14:43:55.430 DEBUG [743]: Database connection successful -- 14:43:55.430 INFO [743]: _SERVER found -- 14:43:55.430 INFO [743]: REMOTE_ADDR = 10.0.0.15 -- 14:43:55.430 INFO [743]: SERVER_NAME = oameye.works.coregrade.com -- 14:43:55.430 INFO [743]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 14:43:55.430 INFO [743]: HTTP_X_FORWARDED_FOR = 111.230.174.239 -- 14:43:55.472 INFO [743]: COREGRADE is stopping... -- 14:43:55.472 DEBUG [743]: Closing database connection -- 14:43:55.472 SQL [743]: pgsql_close() -- 14:43:56.781 INFO [743]: COREGRADE is starting... -- 14:43:56.781 INFO [743]: Version from config: 1.0 -- 14:43:56.781 DEBUG [743]: Connecting to database... -- 14:43:56.781 DEBUG [743]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:43:56.781 SQL [743]: pgsql_db_connect() -- 14:43:56.786 DEBUG [743]: Database connection successful -- 14:43:56.786 INFO [743]: _SERVER found -- 14:43:56.786 INFO [743]: REMOTE_ADDR = 10.0.0.15 -- 14:43:56.786 INFO [743]: SERVER_NAME = oameye.works.coregrade.com -- 14:43:56.786 INFO [743]: QUERY_STRING = s=captcha -- 14:43:56.786 INFO [743]: HTTP_X_FORWARDED_FOR = 111.230.174.239 -- 14:43:56.817 INFO [743]: COREGRADE is stopping... -- 14:43:56.817 DEBUG [743]: Closing database connection -- 14:43:56.817 SQL [743]: pgsql_close() -- 14:43:58.119 INFO [741]: COREGRADE is starting... -- 14:43:58.120 INFO [741]: Version from config: 1.0 -- 14:43:58.120 DEBUG [741]: Connecting to database... -- 14:43:58.120 DEBUG [741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:43:58.120 SQL [741]: pgsql_db_connect() -- 14:43:58.124 DEBUG [741]: Database connection successful -- 14:43:58.124 INFO [741]: _SERVER found -- 14:43:58.124 INFO [741]: REMOTE_ADDR = 10.0.0.15 -- 14:43:58.124 INFO [741]: SERVER_NAME = oameye.works.coregrade.com -- 14:43:58.124 INFO [741]: QUERY_STRING = -- 14:43:58.124 INFO [741]: HTTP_X_FORWARDED_FOR = 111.230.174.239 -- 14:43:58.157 INFO [741]: COREGRADE is stopping... -- 14:43:58.157 DEBUG [741]: Closing database connection -- 14:43:58.157 SQL [741]: pgsql_close() -- 14:45:30.633 INFO [32324]: COREGRADE is starting... -- 14:45:30.633 INFO [32324]: Version from config: 1.0 -- 14:45:30.633 DEBUG [32324]: Connecting to database... -- 14:45:30.633 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:45:30.634 SQL [32324]: pgsql_db_connect() -- 14:45:30.638 DEBUG [32324]: Database connection successful -- 14:45:30.638 INFO [32324]: _SERVER found -- 14:45:30.638 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 14:45:30.638 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 14:45:30.638 INFO [32324]: QUERY_STRING = -- 14:45:30.638 INFO [32324]: HTTP_X_FORWARDED_FOR = 106.12.222.214 -- 14:45:30.671 INFO [32324]: COREGRADE is stopping... -- 14:45:30.671 DEBUG [32324]: Closing database connection -- 14:45:30.671 SQL [32324]: pgsql_close() -- 14:45:32.816 INFO [32321]: COREGRADE is starting... -- 14:45:32.816 INFO [32321]: Version from config: 1.0 -- 14:45:32.816 DEBUG [32321]: Connecting to database... -- 14:45:32.816 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:45:32.816 SQL [32321]: pgsql_db_connect() -- 14:45:32.821 DEBUG [32321]: Database connection successful -- 14:45:32.821 INFO [32321]: _SERVER found -- 14:45:32.821 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 14:45:32.821 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 14:45:32.821 INFO [32321]: HTTP_COOKIE = ci_session=tapnadkj2nmiv9t0qlmui67s2iov9m7d; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.1087959686.1587149131; _ga=GA1.2.1726616338.1587149131 -- 14:45:32.821 INFO [32321]: QUERY_STRING = /assets/img/footer_1.jpg -- 14:45:32.821 INFO [32321]: HTTP_X_FORWARDED_FOR = 106.12.222.214 -- 14:45:32.833 INFO [32321]: COREGRADE is stopping... -- 14:45:32.833 DEBUG [32321]: Closing database connection -- 14:45:32.833 SQL [32321]: pgsql_close() -- 15:48:21.281 INFO [742]: COREGRADE is starting... -- 15:48:21.281 INFO [742]: Version from config: 1.0 -- 15:48:21.281 DEBUG [742]: Connecting to database... -- 15:48:21.281 DEBUG [742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:48:21.281 SQL [742]: pgsql_db_connect() -- 15:48:21.287 DEBUG [742]: Database connection successful -- 15:48:21.287 INFO [742]: _SERVER found -- 15:48:21.287 INFO [742]: REMOTE_ADDR = 10.0.0.15 -- 15:48:21.287 INFO [742]: SERVER_NAME = oameye.works.coregrade.com -- 15:48:21.287 INFO [742]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845 -- 15:48:21.287 INFO [742]: QUERY_STRING = -- 15:48:21.287 INFO [742]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:48:21.322 INFO [742]: COREGRADE is stopping... -- 15:48:21.322 DEBUG [742]: Closing database connection -- 15:48:21.322 SQL [742]: pgsql_close() -- 15:48:21.693 INFO [742]: COREGRADE is starting... -- 15:48:21.694 INFO [742]: Version from config: 1.0 -- 15:48:21.694 DEBUG [742]: Connecting to database... -- 15:48:21.694 DEBUG [742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:48:21.694 SQL [742]: pgsql_db_connect() -- 15:48:21.698 DEBUG [742]: Database connection successful -- 15:48:21.698 INFO [742]: _SERVER found -- 15:48:21.698 INFO [742]: REMOTE_ADDR = 10.0.0.15 -- 15:48:21.698 INFO [742]: SERVER_NAME = oameye.works.coregrade.com -- 15:48:21.698 INFO [742]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=50gov49jc901p5oqfgssisriesihqcgg -- 15:48:21.698 INFO [742]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:48:21.698 INFO [742]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:48:21.710 INFO [742]: COREGRADE is stopping... -- 15:48:21.710 DEBUG [742]: Closing database connection -- 15:48:21.710 SQL [742]: pgsql_close() -- 15:49:35.275 INFO [743]: COREGRADE is starting... -- 15:49:35.275 INFO [743]: Version from config: 1.0 -- 15:49:35.275 DEBUG [743]: Connecting to database... -- 15:49:35.275 DEBUG [743]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:49:35.275 SQL [743]: pgsql_db_connect() -- 15:49:35.279 DEBUG [743]: Database connection successful -- 15:49:35.279 INFO [743]: _SERVER found -- 15:49:35.279 INFO [743]: REMOTE_ADDR = 10.0.0.15 -- 15:49:35.279 INFO [743]: SERVER_NAME = oameye.works.coregrade.com -- 15:49:35.279 INFO [743]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=50gov49jc901p5oqfgssisriesihqcgg -- 15:49:35.279 INFO [743]: QUERY_STRING = -- 15:49:35.279 INFO [743]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:49:35.313 INFO [743]: COREGRADE is stopping... -- 15:49:35.313 DEBUG [743]: Closing database connection -- 15:49:35.313 SQL [743]: pgsql_close() -- 15:49:35.530 INFO [743]: COREGRADE is starting... -- 15:49:35.530 INFO [743]: Version from config: 1.0 -- 15:49:35.530 DEBUG [743]: Connecting to database... -- 15:49:35.530 DEBUG [743]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:49:35.530 SQL [743]: pgsql_db_connect() -- 15:49:35.534 DEBUG [743]: Database connection successful -- 15:49:35.534 INFO [743]: _SERVER found -- 15:49:35.534 INFO [743]: REMOTE_ADDR = 10.0.0.15 -- 15:49:35.534 INFO [743]: SERVER_NAME = oameye.works.coregrade.com -- 15:49:35.534 INFO [743]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.2057531727.1586624845; ci_session=50gov49jc901p5oqfgssisriesihqcgg -- 15:49:35.534 INFO [743]: QUERY_STRING = /favicon.ico -- 15:49:35.534 INFO [743]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:49:35.545 INFO [743]: COREGRADE is stopping... -- 15:49:35.545 DEBUG [743]: Closing database connection -- 15:49:35.545 SQL [743]: pgsql_close() -- 23:25:05.971 INFO [5948]: COREGRADE is starting... -- 23:25:05.971 INFO [5948]: Version from config: 1.0 -- 23:25:05.971 DEBUG [5948]: Connecting to database... -- 23:25:05.971 DEBUG [5948]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:25:05.971 SQL [5948]: pgsql_db_connect() -- 23:25:05.976 DEBUG [5948]: Database connection successful -- 23:25:05.976 INFO [5948]: _SERVER found -- 23:25:05.976 INFO [5948]: REMOTE_ADDR = 10.0.0.15 -- 23:25:05.976 INFO [5948]: SERVER_NAME = oameye.works.coregrade.com -- 23:25:05.976 INFO [5948]: QUERY_STRING = -- 23:25:05.976 INFO [5948]: HTTP_X_FORWARDED_FOR = 134.119.180.47 -- 23:25:06.026 INFO [5948]: COREGRADE is stopping... -- 23:25:06.026 DEBUG [5948]: Closing database connection -- 23:25:06.026 SQL [5948]: pgsql_close() -- 00:40:52.320 INFO [32322]: COREGRADE is starting... -- 00:40:52.320 INFO [32322]: Version from config: 1.0 -- 00:40:52.320 DEBUG [32322]: Connecting to database... -- 00:40:52.320 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:40:52.320 SQL [32322]: pgsql_db_connect() -- 00:40:52.325 DEBUG [32322]: Database connection successful -- 00:40:52.325 INFO [32322]: _SERVER found -- 00:40:52.325 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 00:40:52.325 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 00:40:52.325 INFO [32322]: QUERY_STRING = -- 00:40:52.325 INFO [32322]: HTTP_X_FORWARDED_FOR = 216.139.241.125 -- 00:40:52.362 INFO [32322]: COREGRADE is stopping... -- 00:40:52.362 DEBUG [32322]: Closing database connection -- 00:40:52.362 SQL [32322]: pgsql_close() -- 00:48:46.083 INFO [32323]: COREGRADE is starting... -- 00:48:46.084 INFO [32323]: Version from config: 1.0 -- 00:48:46.084 DEBUG [32323]: Connecting to database... -- 00:48:46.084 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:46.084 SQL [32323]: pgsql_db_connect() -- 00:48:46.088 DEBUG [32323]: Database connection successful -- 00:48:46.088 INFO [32323]: _SERVER found -- 00:48:46.088 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 00:48:46.088 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 00:48:46.088 INFO [32323]: QUERY_STRING = /.well-known/acme-challenge/wGwSTUtMgW8y7liUuQqRnx_Oa0mOYlndtnngpBkVaUI -- 00:48:46.088 INFO [32323]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 00:48:46.102 INFO [32323]: COREGRADE is stopping... -- 00:48:46.102 DEBUG [32323]: Closing database connection -- 00:48:46.102 SQL [32323]: pgsql_close() -- 00:48:46.245 INFO [32325]: COREGRADE is starting... -- 00:48:46.245 INFO [32325]: Version from config: 1.0 -- 00:48:46.245 DEBUG [32325]: Connecting to database... -- 00:48:46.245 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:46.245 SQL [32325]: pgsql_db_connect() -- 00:48:46.250 DEBUG [32325]: Database connection successful -- 00:48:46.250 INFO [32325]: _SERVER found -- 00:48:46.250 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 00:48:46.250 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 00:48:46.250 INFO [32325]: QUERY_STRING = /.well-known/acme-challenge/wGwSTUtMgW8y7liUuQqRnx_Oa0mOYlndtnngpBkVaUI -- 00:48:46.250 INFO [32325]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 00:48:46.262 INFO [32325]: COREGRADE is stopping... -- 00:48:46.262 DEBUG [32325]: Closing database connection -- 00:48:46.262 SQL [32325]: pgsql_close() -- 00:52:11.387 INFO [32562]: COREGRADE is starting... -- 00:52:11.387 INFO [32562]: Version from config: 1.0 -- 00:52:11.387 DEBUG [32562]: Connecting to database... -- 00:52:11.387 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:52:11.387 SQL [32562]: pgsql_db_connect() -- 00:52:11.391 DEBUG [32562]: Database connection successful -- 00:52:11.391 INFO [32562]: _SERVER found -- 00:52:11.391 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 00:52:11.391 INFO [32562]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:52:11.391 INFO [32562]: QUERY_STRING = /wp-login.php -- 00:52:11.391 INFO [32562]: HTTP_X_FORWARDED_FOR = 103.129.223.126 -- 00:52:11.405 INFO [32562]: COREGRADE is stopping... -- 00:52:11.405 DEBUG [32562]: Closing database connection -- 00:52:11.405 SQL [32562]: pgsql_close() -- 03:13:43.394 INFO [32321]: COREGRADE is starting... -- 03:13:43.394 INFO [32321]: Version from config: 1.0 -- 03:13:43.394 DEBUG [32321]: Connecting to database... -- 03:13:43.394 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:13:43.394 SQL [32321]: pgsql_db_connect() -- 03:13:43.399 DEBUG [32321]: Database connection successful -- 03:13:43.399 INFO [32321]: _SERVER found -- 03:13:43.399 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 03:13:43.399 INFO [32321]: SERVER_NAME = tokslaw.works.coregrade.com -- 03:13:43.399 INFO [32321]: QUERY_STRING = /wp-login.php -- 03:13:43.399 INFO [32321]: HTTP_X_FORWARDED_FOR = 138.68.57.207 -- 03:13:43.413 INFO [32321]: COREGRADE is stopping... -- 03:13:43.413 DEBUG [32321]: Closing database connection -- 03:13:43.413 SQL [32321]: pgsql_close() -- 12:11:38.562 INFO [742]: COREGRADE is starting... -- 12:11:38.563 INFO [742]: Version from config: 1.0 -- 12:11:38.563 DEBUG [742]: Connecting to database... -- 12:11:38.563 DEBUG [742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:11:38.563 SQL [742]: pgsql_db_connect() -- 12:11:38.567 DEBUG [742]: Database connection successful -- 12:11:38.567 INFO [742]: _SERVER found -- 12:11:38.567 INFO [742]: REMOTE_ADDR = 10.0.0.15 -- 12:11:38.568 INFO [742]: SERVER_NAME = oameye.works.coregrade.com -- 12:11:38.568 INFO [742]: QUERY_STRING = /solr/admin/info/system -- 12:11:38.568 INFO [742]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 12:11:38.582 INFO [742]: COREGRADE is stopping... -- 12:11:38.582 DEBUG [742]: Closing database connection -- 12:11:38.582 SQL [742]: pgsql_close() -- 12:13:38.020 INFO [743]: COREGRADE is starting... -- 12:13:38.020 INFO [743]: Version from config: 1.0 -- 12:13:38.020 DEBUG [743]: Connecting to database... -- 12:13:38.020 DEBUG [743]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:13:38.020 SQL [743]: pgsql_db_connect() -- 12:13:38.025 DEBUG [743]: Database connection successful -- 12:13:38.025 INFO [743]: _SERVER found -- 12:13:38.025 INFO [743]: REMOTE_ADDR = 10.0.0.15 -- 12:13:38.025 INFO [743]: SERVER_NAME = oameye.works.coregrade.com -- 12:13:38.025 INFO [743]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 12:13:38.025 INFO [743]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 12:13:38.061 INFO [743]: COREGRADE is stopping... -- 12:13:38.061 DEBUG [743]: Closing database connection -- 12:13:38.061 SQL [743]: pgsql_close() -- 12:13:40.054 INFO [743]: COREGRADE is starting... -- 12:13:40.055 INFO [743]: Version from config: 1.0 -- 12:13:40.055 DEBUG [743]: Connecting to database... -- 12:13:40.055 DEBUG [743]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:13:40.055 SQL [743]: pgsql_db_connect() -- 12:13:40.059 DEBUG [743]: Database connection successful -- 12:13:40.059 INFO [743]: _SERVER found -- 12:13:40.059 INFO [743]: REMOTE_ADDR = 10.0.0.15 -- 12:13:40.059 INFO [743]: SERVER_NAME = oameye.works.coregrade.com -- 12:13:40.059 INFO [743]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 12:13:40.059 INFO [743]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 12:13:40.090 INFO [743]: COREGRADE is stopping... -- 12:13:40.090 DEBUG [743]: Closing database connection -- 12:13:40.090 SQL [743]: pgsql_close() -- 12:15:09.421 INFO [741]: COREGRADE is starting... -- 12:15:09.421 INFO [741]: Version from config: 1.0 -- 12:15:09.421 DEBUG [741]: Connecting to database... -- 12:15:09.421 DEBUG [741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:15:09.421 SQL [741]: pgsql_db_connect() -- 12:15:09.425 DEBUG [741]: Database connection successful -- 12:15:09.425 INFO [741]: _SERVER found -- 12:15:09.425 INFO [741]: REMOTE_ADDR = 10.0.0.15 -- 12:15:09.425 INFO [741]: SERVER_NAME = oameye.works.coregrade.com -- 12:15:09.425 INFO [741]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 12:15:09.425 INFO [741]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 12:15:09.462 INFO [741]: COREGRADE is stopping... -- 12:15:09.462 DEBUG [741]: Closing database connection -- 12:15:09.462 SQL [741]: pgsql_close() -- 14:04:11.064 INFO [5948]: COREGRADE is starting... -- 14:04:11.064 INFO [5948]: Version from config: 1.0 -- 14:04:11.064 DEBUG [5948]: Connecting to database... -- 14:04:11.064 DEBUG [5948]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:04:11.064 SQL [5948]: pgsql_db_connect() -- 14:04:11.069 DEBUG [5948]: Database connection successful -- 14:04:11.069 INFO [5948]: _SERVER found -- 14:04:11.069 INFO [5948]: REMOTE_ADDR = 10.0.0.15 -- 14:04:11.069 INFO [5948]: SERVER_NAME = oameye.works.coregrade.com -- 14:04:11.069 INFO [5948]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 14:04:11.069 INFO [5948]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 14:04:11.085 INFO [5948]: COREGRADE is stopping... -- 14:04:11.085 DEBUG [5948]: Closing database connection -- 14:04:11.085 SQL [5948]: pgsql_close() -- 14:19:22.459 INFO [32322]: COREGRADE is starting... -- 14:19:22.459 INFO [32322]: Version from config: 1.0 -- 14:19:22.459 DEBUG [32322]: Connecting to database... -- 14:19:22.459 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:19:22.459 SQL [32322]: pgsql_db_connect() -- 14:19:22.464 DEBUG [32322]: Database connection successful -- 14:19:22.464 INFO [32322]: _SERVER found -- 14:19:22.464 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 14:19:22.464 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 14:19:22.464 INFO [32322]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 14:19:22.464 INFO [32322]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 14:19:22.477 INFO [32322]: COREGRADE is stopping... -- 14:19:22.477 DEBUG [32322]: Closing database connection -- 14:19:22.477 SQL [32322]: pgsql_close() -- 18:06:23.931 INFO [32323]: COREGRADE is starting... -- 18:06:23.932 INFO [32323]: Version from config: 1.0 -- 18:06:23.932 DEBUG [32323]: Connecting to database... -- 18:06:23.932 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:23.932 SQL [32323]: pgsql_db_connect() -- 18:06:23.937 DEBUG [32323]: Database connection successful -- 18:06:23.937 INFO [32323]: _SERVER found -- 18:06:23.937 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 18:06:23.937 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 18:06:23.937 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911 -- 18:06:23.937 INFO [32323]: QUERY_STRING = -- 18:06:23.937 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:06:23.976 INFO [32323]: COREGRADE is stopping... -- 18:06:23.976 DEBUG [32323]: Closing database connection -- 18:06:23.976 SQL [32323]: pgsql_close() -- 18:06:24.189 INFO [32323]: COREGRADE is starting... -- 18:06:24.189 INFO [32323]: Version from config: 1.0 -- 18:06:24.189 DEBUG [32323]: Connecting to database... -- 18:06:24.189 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:24.189 SQL [32323]: pgsql_db_connect() -- 18:06:24.194 DEBUG [32323]: Database connection successful -- 18:06:24.194 INFO [32323]: _SERVER found -- 18:06:24.194 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 18:06:24.194 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 18:06:24.194 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=9lt57j5dad72m49vnhj9o2bfce0ecj70 -- 18:06:24.194 INFO [32323]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:06:24.194 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:06:24.205 INFO [32323]: COREGRADE is stopping... -- 18:06:24.205 DEBUG [32323]: Closing database connection -- 18:06:24.205 SQL [32323]: pgsql_close() -- 18:06:27.656 INFO [32323]: COREGRADE is starting... -- 18:06:27.657 INFO [32323]: Version from config: 1.0 -- 18:06:27.657 DEBUG [32323]: Connecting to database... -- 18:06:27.657 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:27.657 SQL [32323]: pgsql_db_connect() -- 18:06:27.675 INFO [32325]: COREGRADE is starting... -- 18:06:27.676 INFO [32325]: Version from config: 1.0 -- 18:06:27.676 DEBUG [32325]: Connecting to database... -- 18:06:27.676 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:27.676 SQL [32325]: pgsql_db_connect() -- 18:06:27.661 DEBUG [32323]: Database connection successful -- 18:06:27.661 INFO [32323]: _SERVER found -- 18:06:27.661 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 18:06:27.661 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 18:06:27.661 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=9lt57j5dad72m49vnhj9o2bfce0ecj70; _gid=GA1.2.1053642110.1587247584; _gat_gtag_UA_54829827_2=1 -- 18:06:27.661 INFO [32323]: QUERY_STRING = /welcome/viewLogin -- 18:06:27.661 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:06:27.692 INFO [32323]: COREGRADE is stopping... -- 18:06:27.692 DEBUG [32323]: Closing database connection -- 18:06:27.692 SQL [32323]: pgsql_close() -- 18:06:27.680 DEBUG [32325]: Database connection successful -- 18:06:27.680 INFO [32325]: _SERVER found -- 18:06:27.680 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 18:06:27.680 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 18:06:27.680 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=9lt57j5dad72m49vnhj9o2bfce0ecj70; _gid=GA1.2.1053642110.1587247584; _gat_gtag_UA_54829827_2=1 -- 18:06:27.680 INFO [32325]: QUERY_STRING = /auth -- 18:06:27.680 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:06:27.715 INFO [32325]: COREGRADE is stopping... -- 18:06:27.715 DEBUG [32325]: Closing database connection -- 18:06:27.715 SQL [32325]: pgsql_close() -- 18:06:27.724 INFO [32325]: COREGRADE is starting... -- 18:06:27.724 INFO [32325]: Version from config: 1.0 -- 18:06:27.724 DEBUG [32325]: Connecting to database... -- 18:06:27.724 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:27.724 SQL [32325]: pgsql_db_connect() -- 18:06:27.728 DEBUG [32325]: Database connection successful -- 18:06:27.728 INFO [32325]: _SERVER found -- 18:06:27.728 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 18:06:27.728 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 18:06:27.728 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=9lt57j5dad72m49vnhj9o2bfce0ecj70; _gid=GA1.2.1053642110.1587247584; _gat_gtag_UA_54829827_2=1 -- 18:06:27.728 INFO [32325]: QUERY_STRING = /auth/index -- 18:06:27.728 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:06:27.760 INFO [32325]: COREGRADE is stopping... -- 18:06:27.760 DEBUG [32325]: Closing database connection -- 18:06:27.760 SQL [32325]: pgsql_close() -- 18:06:27.829 INFO [32325]: COREGRADE is starting... -- 18:06:27.829 INFO [32325]: Version from config: 1.0 -- 18:06:27.829 DEBUG [32325]: Connecting to database... -- 18:06:27.829 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:27.829 SQL [32325]: pgsql_db_connect() -- 18:06:27.833 DEBUG [32325]: Database connection successful -- 18:06:27.833 INFO [32325]: _SERVER found -- 18:06:27.833 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 18:06:27.833 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 18:06:27.833 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=9lt57j5dad72m49vnhj9o2bfce0ecj70; _gid=GA1.2.1053642110.1587247584; _gat_gtag_UA_54829827_2=1 -- 18:06:27.833 INFO [32325]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:06:27.833 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:06:27.845 INFO [32325]: COREGRADE is stopping... -- 18:06:27.845 DEBUG [32325]: Closing database connection -- 18:06:27.845 SQL [32325]: pgsql_close() -- 18:06:34.735 INFO [32324]: COREGRADE is starting... -- 18:06:34.735 INFO [32324]: Version from config: 1.0 -- 18:06:34.735 DEBUG [32324]: Connecting to database... -- 18:06:34.735 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:34.735 SQL [32324]: pgsql_db_connect() -- 18:06:34.772 INFO [32324]: COREGRADE is starting... -- 18:06:34.772 INFO [32324]: Version from config: 1.0 -- 18:06:34.772 DEBUG [32324]: Connecting to database... -- 18:06:34.772 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:34.772 SQL [32324]: pgsql_db_connect() -- 18:06:34.776 DEBUG [32324]: Database connection successful -- 18:06:34.776 INFO [32324]: _SERVER found -- 18:06:34.776 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 18:06:34.776 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 18:06:34.776 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=9lt57j5dad72m49vnhj9o2bfce0ecj70; _gid=GA1.2.1053642110.1587247584; _gat_gtag_UA_54829827_2=1 -- 18:06:34.776 INFO [32324]: QUERY_STRING = -- 18:06:34.776 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:06:34.776 INFO [32324]: SystemStatus()09-09-********~************ -- 18:06:34.776 INFO [32324]: long coregrade_api_main(CVars in, CVars &out) -- 18:06:34.776 INFO [32324]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 18:06:34.776 INFO [32324]: account calls -- 18:06:34.776 INFO [32324]: account_calls() -- 18:06:34.776 INFO [32324]: LoginCoreGradeAccount() -- 18:06:34.776 FLOG_MAX [32324]: REQ_STRING(username) -- 18:06:34.776 FLOG_MAX [32324]: REQ_STRING(password) -- 18:06:34.776 FLOG_MAX [32324]: REQ_STRING(sessionid) -- 18:06:34.776 FLOG_MAX [32324]: long load_db_record( CVars &rec, const char * query, ... ) -- 18:06:34.776 SQL [32324]: pgsql_query() -- 18:06:34.777 SQL [32324]: About to run query: -- 18:06:34.777 SQL [32324]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 18:06:34.781 SQL [32324]: Found rows: 1 -- 18:06:34.781 FLOG_MAX [32324]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 18:06:34.781 INFO [32324]: long SessionCheck(long uid, const char *sessionid, int create ) -- 18:06:34.781 SQL [32324]: pgsql_exec() -- 18:06:34.781 SQL [32324]: About to run query: -- 18:06:34.781 SQL [32324]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 18:06:34.782 SQL [32324]: PQcmdTuples: 1 -- 18:06:34.782 SQL [32324]: Affected rows: 1 -- 18:06:34.782 SQL [32324]: pgsql_exec() -- 18:06:34.782 SQL [32324]: About to run query: -- 18:06:34.782 SQL [32324]: DELETE FROM members_session WHERE member_id=5 -- 18:06:34.783 SQL [32324]: PQcmdTuples: 0 -- 18:06:34.783 SQL [32324]: Affected rows: 0 -- 18:06:34.783 SQL [32324]: pgsql_query() -- 18:06:34.783 SQL [32324]: About to run query: -- 18:06:34.783 SQL [32324]: SELECT * FROM members_session WHERE member_id=5 AND session<>'1D0E041F737BBB59A586999DD4DFF239' -- 18:06:34.784 SQL [32324]: Found rows: 0 -- 18:06:34.784 SQL [32324]: Found rows: 0 -- 18:06:34.784 FLOG_MAX [32324]: long load_db_record( CVars &rec, const char * query, ... ) -- 18:06:34.784 SQL [32324]: pgsql_query() -- 18:06:34.784 SQL [32324]: About to run query: -- 18:06:34.784 SQL [32324]: SELECT * FROM members_session WHERE member_id=5 AND session='1D0E041F737BBB59A586999DD4DFF239' -- 18:06:34.784 SQL [32324]: Found rows: 0 -- 18:06:34.784 SQL [32324]: Found rows: 0 -- 18:06:34.784 FLOG_MAX [32324]: insert_db_record() -- 18:06:34.784 SQL [32324]: pgsql_exec() -- 18:06:34.784 SQL [32324]: About to run query: -- 18:06:34.784 SQL [32324]: INSERT INTO members_session (member_id,session) VALUES ('5','1D0E041F737BBB59A586999DD4DFF239') -- 18:06:34.786 SQL [32324]: PQcmdTuples: 1 -- 18:06:34.786 SQL [32324]: Affected rows: 1 -- 18:06:34.786 FLOG_MAX [32324]: SELECT currval('members_session_id_seq') -- 18:06:34.786 SQL [32324]: pgsql_query() -- 18:06:34.786 SQL [32324]: About to run query: -- 18:06:34.786 SQL [32324]: SELECT currval('members_session_id_seq') -- 18:06:34.786 SQL [32324]: Found rows: 1 -- 18:06:34.786 INFO [32324]: CreateDefaultPage() -- 18:06:34.786 FLOG_MAX [32324]: long load_db_record( CVars &rec, const char * query, ... ) -- 18:06:34.786 SQL [32324]: pgsql_query() -- 18:06:34.786 SQL [32324]: About to run query: -- 18:06:34.786 SQL [32324]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 18:06:34.787 SQL [32324]: Found rows: 1 -- 18:06:34.787 FLOG_MAX [32324]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 18:06:34.787 SQL [32324]: pgsql_query() -- 18:06:34.787 SQL [32324]: About to run query: -- 18:06:34.787 SQL [32324]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 18:06:34.787 SQL [32324]: Found rows: 1 -- 18:06:34.787 INFO [32324]: /CreateDefaultPage() -- 18:06:34.787 INFO [32324]: /LoginCoreGradeAccount() -- 18:06:34.787 INFO [32324]: RET: added=2020-02-05 06:47:23.982154 -- 18:06:34.787 INFO [32324]: RET: email=ameye+11@chiefsoft.com -- 18:06:34.787 INFO [32324]: RET: firstname=Olu -- 18:06:34.787 INFO [32324]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 18:06:34.787 INFO [32324]: RET: id=5 -- 18:06:34.787 INFO [32324]: RET: last_login= -- 18:06:34.787 INFO [32324]: RET: lastname=Amey -- 18:06:34.787 INFO [32324]: RET: loc=192.168.1.13 -- 18:06:34.787 INFO [32324]: RET: member_id=5 -- 18:06:34.787 INFO [32324]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 18:06:34.787 INFO [32324]: RET: phone= -- 18:06:34.787 INFO [32324]: RET: pid= -- 18:06:34.787 INFO [32324]: RET: result=YES I GET TO BACK END -- 18:06:34.787 INFO [32324]: RET: sessionid=1D0E041F737BBB59A586999DD4DFF239 -- 18:06:34.787 INFO [32324]: RET: status=1 -- 18:06:34.787 INFO [32324]: RET: stauts=OK -- 18:06:34.787 INFO [32324]: RET: username=ameye+11@chiefsoft.com -- 18:06:34.787 INFO [32324]: RET: verified= -- 18:06:34.789 INFO [32324]: COREGRADE is stopping... -- 18:06:34.789 DEBUG [32324]: Closing database connection -- 18:06:34.789 SQL [32324]: pgsql_close() -- 18:06:34.739 DEBUG [32324]: Database connection successful -- 18:06:34.739 INFO [32324]: _SERVER found -- 18:06:34.739 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 18:06:34.739 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 18:06:34.739 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=9lt57j5dad72m49vnhj9o2bfce0ecj70; _gid=GA1.2.1053642110.1587247584; _gat_gtag_UA_54829827_2=1 -- 18:06:34.739 INFO [32324]: QUERY_STRING = /auth -- 18:06:34.739 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:06:34.789 INFO [32324]: COREGRADE is stopping... -- 18:06:34.789 DEBUG [32324]: Closing database connection -- 18:06:34.789 SQL [32324]: pgsql_close() -- 18:06:34.818 INFO [32324]: COREGRADE is starting... -- 18:06:34.819 INFO [32324]: Version from config: 1.0 -- 18:06:34.819 DEBUG [32324]: Connecting to database... -- 18:06:34.819 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:34.819 SQL [32324]: pgsql_db_connect() -- 18:06:34.823 DEBUG [32324]: Database connection successful -- 18:06:34.823 INFO [32324]: _SERVER found -- 18:06:34.823 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 18:06:34.823 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 18:06:34.823 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=9lt57j5dad72m49vnhj9o2bfce0ecj70; _gid=GA1.2.1053642110.1587247584; _gat_gtag_UA_54829827_2=1 -- 18:06:34.823 INFO [32324]: QUERY_STRING = /member/index -- 18:06:34.823 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:06:34.863 INFO [32324]: COREGRADE is stopping... -- 18:06:34.863 DEBUG [32324]: Closing database connection -- 18:06:34.863 SQL [32324]: pgsql_close() -- 18:06:34.994 INFO [32324]: COREGRADE is starting... -- 18:06:34.994 INFO [32324]: Version from config: 1.0 -- 18:06:34.994 DEBUG [32324]: Connecting to database... -- 18:06:34.994 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:34.994 SQL [32324]: pgsql_db_connect() -- 18:06:34.998 DEBUG [32324]: Database connection successful -- 18:06:34.998 INFO [32324]: _SERVER found -- 18:06:34.998 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 18:06:34.998 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 18:06:34.998 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=9lt57j5dad72m49vnhj9o2bfce0ecj70; _gid=GA1.2.1053642110.1587247584; _gat_gtag_UA_54829827_2=1 -- 18:06:34.998 INFO [32324]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 18:06:34.998 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:06:35.009 INFO [32324]: COREGRADE is stopping... -- 18:06:35.009 DEBUG [32324]: Closing database connection -- 18:06:35.009 SQL [32324]: pgsql_close() -- 18:06:38.689 INFO [32324]: COREGRADE is starting... -- 18:06:38.689 INFO [32324]: Version from config: 1.0 -- 18:06:38.689 DEBUG [32324]: Connecting to database... -- 18:06:38.689 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:38.689 SQL [32324]: pgsql_db_connect() -- 18:06:38.693 DEBUG [32324]: Database connection successful -- 18:06:38.693 INFO [32324]: _SERVER found -- 18:06:38.693 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 18:06:38.693 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 18:06:38.693 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=9lt57j5dad72m49vnhj9o2bfce0ecj70; _gid=GA1.2.1053642110.1587247584; _gat_gtag_UA_54829827_2=1 -- 18:06:38.693 INFO [32324]: QUERY_STRING = /member/classroom -- 18:06:38.693 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:06:38.736 INFO [32324]: COREGRADE is stopping... -- 18:06:38.736 DEBUG [32324]: Closing database connection -- 18:06:38.736 SQL [32324]: pgsql_close() -- 18:06:40.715 INFO [32324]: COREGRADE is starting... -- 18:06:40.715 INFO [32324]: Version from config: 1.0 -- 18:06:40.715 DEBUG [32324]: Connecting to database... -- 18:06:40.715 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:40.715 SQL [32324]: pgsql_db_connect() -- 18:06:40.719 DEBUG [32324]: Database connection successful -- 18:06:40.719 INFO [32324]: _SERVER found -- 18:06:40.719 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 18:06:40.719 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 18:06:40.719 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=9lt57j5dad72m49vnhj9o2bfce0ecj70; _gid=GA1.2.1053642110.1587247584; _gat_gtag_UA_54829827_2=1 -- 18:06:40.719 INFO [32324]: QUERY_STRING = /member/viewRoom -- 18:06:40.719 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:06:40.754 INFO [32324]: COREGRADE is stopping... -- 18:06:40.754 DEBUG [32324]: Closing database connection -- 18:06:40.754 SQL [32324]: pgsql_close() -- 18:06:41.797 INFO [32324]: COREGRADE is starting... -- 18:06:41.797 INFO [32324]: Version from config: 1.0 -- 18:06:41.797 DEBUG [32324]: Connecting to database... -- 18:06:41.797 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:41.797 SQL [32324]: pgsql_db_connect() -- 18:06:41.801 DEBUG [32324]: Database connection successful -- 18:06:41.801 INFO [32324]: _SERVER found -- 18:06:41.801 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 18:06:41.801 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 18:06:41.801 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=9lt57j5dad72m49vnhj9o2bfce0ecj70; _gid=GA1.2.1053642110.1587247584; _gat_gtag_UA_54829827_2=1 -- 18:06:41.801 INFO [32324]: QUERY_STRING = /member/viewRoom -- 18:06:41.801 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:06:41.832 INFO [32324]: COREGRADE is stopping... -- 18:06:41.832 DEBUG [32324]: Closing database connection -- 18:06:41.832 SQL [32324]: pgsql_close() -- 18:06:42.258 INFO [32324]: COREGRADE is starting... -- 18:06:42.258 INFO [32324]: Version from config: 1.0 -- 18:06:42.258 DEBUG [32324]: Connecting to database... -- 18:06:42.258 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:42.258 SQL [32324]: pgsql_db_connect() -- 18:06:42.262 DEBUG [32324]: Database connection successful -- 18:06:42.262 INFO [32324]: _SERVER found -- 18:06:42.262 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 18:06:42.262 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 18:06:42.262 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=9lt57j5dad72m49vnhj9o2bfce0ecj70; _gid=GA1.2.1053642110.1587247584; _gat_gtag_UA_54829827_2=1 -- 18:06:42.262 INFO [32324]: QUERY_STRING = /member/viewRoom -- 18:06:42.262 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:06:42.296 INFO [32324]: COREGRADE is stopping... -- 18:06:42.296 DEBUG [32324]: Closing database connection -- 18:06:42.296 SQL [32324]: pgsql_close() -- 18:06:43.237 INFO [32324]: COREGRADE is starting... -- 18:06:43.237 INFO [32324]: Version from config: 1.0 -- 18:06:43.237 DEBUG [32324]: Connecting to database... -- 18:06:43.237 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:43.237 SQL [32324]: pgsql_db_connect() -- 18:06:43.242 DEBUG [32324]: Database connection successful -- 18:06:43.242 INFO [32324]: _SERVER found -- 18:06:43.242 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 18:06:43.242 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 18:06:43.242 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=9lt57j5dad72m49vnhj9o2bfce0ecj70; _gid=GA1.2.1053642110.1587247584; _gat_gtag_UA_54829827_2=1 -- 18:06:43.242 INFO [32324]: QUERY_STRING = /member/viewRoom -- 18:06:43.242 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:06:43.273 INFO [32324]: COREGRADE is stopping... -- 18:06:43.273 DEBUG [32324]: Closing database connection -- 18:06:43.273 SQL [32324]: pgsql_close() -- 18:06:43.834 INFO [32324]: COREGRADE is starting... -- 18:06:43.834 INFO [32324]: Version from config: 1.0 -- 18:06:43.834 DEBUG [32324]: Connecting to database... -- 18:06:43.834 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:43.834 SQL [32324]: pgsql_db_connect() -- 18:06:43.838 DEBUG [32324]: Database connection successful -- 18:06:43.838 INFO [32324]: _SERVER found -- 18:06:43.838 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 18:06:43.838 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 18:06:43.838 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=9lt57j5dad72m49vnhj9o2bfce0ecj70; _gid=GA1.2.1053642110.1587247584; _gat_gtag_UA_54829827_2=1 -- 18:06:43.838 INFO [32324]: QUERY_STRING = /member/viewRoom -- 18:06:43.838 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:06:43.874 INFO [32324]: COREGRADE is stopping... -- 18:06:43.874 DEBUG [32324]: Closing database connection -- 18:06:43.874 SQL [32324]: pgsql_close() -- 18:06:44.833 INFO [32324]: COREGRADE is starting... -- 18:06:44.834 INFO [32324]: Version from config: 1.0 -- 18:06:44.834 DEBUG [32324]: Connecting to database... -- 18:06:44.834 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:06:44.834 SQL [32324]: pgsql_db_connect() -- 18:06:44.838 DEBUG [32324]: Database connection successful -- 18:06:44.838 INFO [32324]: _SERVER found -- 18:06:44.838 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 18:06:44.838 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 18:06:44.838 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=9lt57j5dad72m49vnhj9o2bfce0ecj70; _gid=GA1.2.1053642110.1587247584; _gat_gtag_UA_54829827_2=1 -- 18:06:44.838 INFO [32324]: QUERY_STRING = /member/viewRoom -- 18:06:44.838 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:06:44.869 INFO [32324]: COREGRADE is stopping... -- 18:06:44.869 DEBUG [32324]: Closing database connection -- 18:06:44.869 SQL [32324]: pgsql_close() -- 18:45:49.304 INFO [32562]: COREGRADE is starting... -- 18:45:49.304 INFO [32562]: Version from config: 1.0 -- 18:45:49.304 DEBUG [32562]: Connecting to database... -- 18:45:49.304 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:45:49.304 SQL [32562]: pgsql_db_connect() -- 18:45:49.309 DEBUG [32562]: Database connection successful -- 18:45:49.309 INFO [32562]: _SERVER found -- 18:45:49.309 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 18:45:49.309 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 18:45:49.309 INFO [32562]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175 -- 18:45:49.309 INFO [32562]: QUERY_STRING = -- 18:45:49.309 INFO [32562]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 18:45:49.345 INFO [32562]: COREGRADE is stopping... -- 18:45:49.345 DEBUG [32562]: Closing database connection -- 18:45:49.345 SQL [32562]: pgsql_close() -- 18:45:49.584 INFO [32321]: COREGRADE is starting... -- 18:45:49.584 INFO [32321]: Version from config: 1.0 -- 18:45:49.584 DEBUG [32321]: Connecting to database... -- 18:45:49.584 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:45:49.584 SQL [32321]: pgsql_db_connect() -- 18:45:49.588 DEBUG [32321]: Database connection successful -- 18:45:49.588 INFO [32321]: _SERVER found -- 18:45:49.588 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 18:45:49.588 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 18:45:49.588 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; ci_session=ru78nhjeu0o1051b772l3ijm4rh82g3s -- 18:45:49.588 INFO [32321]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:45:49.588 INFO [32321]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 18:45:49.601 INFO [32321]: COREGRADE is stopping... -- 18:45:49.601 DEBUG [32321]: Closing database connection -- 18:45:49.601 SQL [32321]: pgsql_close() -- 18:46:06.352 INFO [743]: COREGRADE is starting... -- 18:46:06.352 INFO [743]: Version from config: 1.0 -- 18:46:06.352 DEBUG [743]: Connecting to database... -- 18:46:06.352 DEBUG [743]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:46:06.353 SQL [743]: pgsql_db_connect() -- 18:46:06.357 DEBUG [743]: Database connection successful -- 18:46:06.357 INFO [743]: _SERVER found -- 18:46:06.357 INFO [743]: REMOTE_ADDR = 10.0.0.15 -- 18:46:06.357 INFO [743]: SERVER_NAME = oameye.works.coregrade.com -- 18:46:06.357 INFO [743]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; ci_session=ru78nhjeu0o1051b772l3ijm4rh82g3s; _gid=GA1.2.1542549560.1587249950; _gat_gtag_UA_54829827_2=1 -- 18:46:06.357 INFO [743]: QUERY_STRING = -- 18:46:06.357 INFO [743]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 18:46:06.391 INFO [743]: COREGRADE is stopping... -- 18:46:06.391 DEBUG [743]: Closing database connection -- 18:46:06.391 SQL [743]: pgsql_close() -- 18:50:37.965 INFO [741]: COREGRADE is starting... -- 18:50:37.965 INFO [741]: Version from config: 1.0 -- 18:50:37.965 DEBUG [741]: Connecting to database... -- 18:50:37.965 DEBUG [741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:50:37.966 SQL [741]: pgsql_db_connect() -- 18:50:37.970 DEBUG [741]: Database connection successful -- 18:50:37.970 INFO [741]: _SERVER found -- 18:50:37.970 INFO [741]: REMOTE_ADDR = 10.0.0.15 -- 18:50:37.970 INFO [741]: SERVER_NAME = oameye.works.coregrade.com -- 18:50:37.970 INFO [741]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=9lt57j5dad72m49vnhj9o2bfce0ecj70; _gid=GA1.2.1053642110.1587247584 -- 18:50:37.970 INFO [741]: QUERY_STRING = /member/classroom -- 18:50:37.970 INFO [741]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:50:38.021 INFO [741]: COREGRADE is stopping... -- 18:50:38.021 DEBUG [741]: Closing database connection -- 18:50:38.021 SQL [741]: pgsql_close() -- 18:51:54.723 INFO [5948]: COREGRADE is starting... -- 18:51:54.723 INFO [5948]: Version from config: 1.0 -- 18:51:54.723 DEBUG [5948]: Connecting to database... -- 18:51:54.723 DEBUG [5948]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:54.723 SQL [5948]: pgsql_db_connect() -- 18:51:54.728 DEBUG [5948]: Database connection successful -- 18:51:54.728 INFO [5948]: _SERVER found -- 18:51:54.728 INFO [5948]: REMOTE_ADDR = 10.0.0.15 -- 18:51:54.728 INFO [5948]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:54.728 INFO [5948]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=hmfdcsuj3tt83p4q429hf6utqs7f7ijq -- 18:51:54.728 INFO [5948]: QUERY_STRING = /member/classroom -- 18:51:54.728 INFO [5948]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:51:54.777 INFO [5948]: COREGRADE is stopping... -- 18:51:54.777 DEBUG [5948]: Closing database connection -- 18:51:54.777 SQL [5948]: pgsql_close() -- 18:51:56.306 INFO [5948]: COREGRADE is starting... -- 18:51:56.306 INFO [5948]: Version from config: 1.0 -- 18:51:56.306 DEBUG [5948]: Connecting to database... -- 18:51:56.306 DEBUG [5948]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:56.306 SQL [5948]: pgsql_db_connect() -- 18:51:56.310 DEBUG [5948]: Database connection successful -- 18:51:56.310 INFO [5948]: _SERVER found -- 18:51:56.310 INFO [5948]: REMOTE_ADDR = 10.0.0.15 -- 18:51:56.310 INFO [5948]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:56.310 INFO [5948]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=hmfdcsuj3tt83p4q429hf6utqs7f7ijq -- 18:51:56.310 INFO [5948]: QUERY_STRING = /member/viewRoom -- 18:51:56.310 INFO [5948]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:51:56.345 INFO [5948]: COREGRADE is stopping... -- 18:51:56.346 DEBUG [5948]: Closing database connection -- 18:51:56.346 SQL [5948]: pgsql_close() -- 18:52:48.109 INFO [32322]: COREGRADE is starting... -- 18:52:48.109 INFO [32322]: Version from config: 1.0 -- 18:52:48.109 DEBUG [32322]: Connecting to database... -- 18:52:48.109 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:52:48.109 SQL [32322]: pgsql_db_connect() -- 18:52:48.113 DEBUG [32322]: Database connection successful -- 18:52:48.113 INFO [32322]: _SERVER found -- 18:52:48.113 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 18:52:48.113 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 18:52:48.113 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=hmfdcsuj3tt83p4q429hf6utqs7f7ijq -- 18:52:48.113 INFO [32322]: QUERY_STRING = /member/classroom -- 18:52:48.113 INFO [32322]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:52:48.159 INFO [32322]: COREGRADE is stopping... -- 18:52:48.159 DEBUG [32322]: Closing database connection -- 18:52:48.159 SQL [32322]: pgsql_close() -- 18:52:50.081 INFO [32322]: COREGRADE is starting... -- 18:52:50.081 INFO [32322]: Version from config: 1.0 -- 18:52:50.081 DEBUG [32322]: Connecting to database... -- 18:52:50.081 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:52:50.081 SQL [32322]: pgsql_db_connect() -- 18:52:50.085 DEBUG [32322]: Database connection successful -- 18:52:50.085 INFO [32322]: _SERVER found -- 18:52:50.085 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 18:52:50.085 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 18:52:50.085 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=hmfdcsuj3tt83p4q429hf6utqs7f7ijq -- 18:52:50.085 INFO [32322]: QUERY_STRING = /member/viewRoom -- 18:52:50.085 INFO [32322]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:52:50.116 INFO [32322]: COREGRADE is stopping... -- 18:52:50.116 DEBUG [32322]: Closing database connection -- 18:52:50.116 SQL [32322]: pgsql_close() -- 18:52:51.367 INFO [32322]: COREGRADE is starting... -- 18:52:51.367 INFO [32322]: Version from config: 1.0 -- 18:52:51.367 DEBUG [32322]: Connecting to database... -- 18:52:51.367 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:52:51.367 SQL [32322]: pgsql_db_connect() -- 18:52:51.371 DEBUG [32322]: Database connection successful -- 18:52:51.371 INFO [32322]: _SERVER found -- 18:52:51.371 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 18:52:51.371 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 18:52:51.371 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=hmfdcsuj3tt83p4q429hf6utqs7f7ijq -- 18:52:51.371 INFO [32322]: QUERY_STRING = /member/viewRoom -- 18:52:51.371 INFO [32322]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:52:51.402 INFO [32322]: COREGRADE is stopping... -- 18:52:51.402 DEBUG [32322]: Closing database connection -- 18:52:51.402 SQL [32322]: pgsql_close() -- 18:52:52.142 INFO [32322]: COREGRADE is starting... -- 18:52:52.143 INFO [32322]: Version from config: 1.0 -- 18:52:52.143 DEBUG [32322]: Connecting to database... -- 18:52:52.143 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:52:52.143 SQL [32322]: pgsql_db_connect() -- 18:52:52.147 DEBUG [32322]: Database connection successful -- 18:52:52.147 INFO [32322]: _SERVER found -- 18:52:52.147 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 18:52:52.147 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 18:52:52.147 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=hmfdcsuj3tt83p4q429hf6utqs7f7ijq -- 18:52:52.147 INFO [32322]: QUERY_STRING = /member/viewRoom -- 18:52:52.147 INFO [32322]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:52:52.178 INFO [32322]: COREGRADE is stopping... -- 18:52:52.178 DEBUG [32322]: Closing database connection -- 18:52:52.178 SQL [32322]: pgsql_close() -- 18:52:52.717 INFO [32322]: COREGRADE is starting... -- 18:52:52.717 INFO [32322]: Version from config: 1.0 -- 18:52:52.717 DEBUG [32322]: Connecting to database... -- 18:52:52.717 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:52:52.717 SQL [32322]: pgsql_db_connect() -- 18:52:52.721 DEBUG [32322]: Database connection successful -- 18:52:52.721 INFO [32322]: _SERVER found -- 18:52:52.721 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 18:52:52.721 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 18:52:52.721 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=hmfdcsuj3tt83p4q429hf6utqs7f7ijq -- 18:52:52.721 INFO [32322]: QUERY_STRING = /member/viewRoom -- 18:52:52.721 INFO [32322]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:52:52.752 INFO [32322]: COREGRADE is stopping... -- 18:52:52.752 DEBUG [32322]: Closing database connection -- 18:52:52.752 SQL [32322]: pgsql_close() -- 18:56:46.350 INFO [32323]: COREGRADE is starting... -- 18:56:46.350 INFO [32323]: Version from config: 1.0 -- 18:56:46.350 DEBUG [32323]: Connecting to database... -- 18:56:46.350 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:56:46.350 SQL [32323]: pgsql_db_connect() -- 18:56:46.355 DEBUG [32323]: Database connection successful -- 18:56:46.355 INFO [32323]: _SERVER found -- 18:56:46.355 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 18:56:46.355 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 18:56:46.355 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=hmfdcsuj3tt83p4q429hf6utqs7f7ijq -- 18:56:46.355 INFO [32323]: QUERY_STRING = /member -- 18:56:46.355 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:56:46.399 INFO [32323]: COREGRADE is stopping... -- 18:56:46.399 DEBUG [32323]: Closing database connection -- 18:56:46.399 SQL [32323]: pgsql_close() -- 18:56:48.152 INFO [32323]: COREGRADE is starting... -- 18:56:48.152 INFO [32323]: Version from config: 1.0 -- 18:56:48.152 DEBUG [32323]: Connecting to database... -- 18:56:48.152 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:56:48.152 SQL [32323]: pgsql_db_connect() -- 18:56:48.157 DEBUG [32323]: Database connection successful -- 18:56:48.157 INFO [32323]: _SERVER found -- 18:56:48.157 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 18:56:48.157 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 18:56:48.157 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=jn29b4me5oi3tac11q2j93uluo2e5m2h -- 18:56:48.157 INFO [32323]: QUERY_STRING = /member/configure -- 18:56:48.157 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:56:48.202 INFO [32323]: COREGRADE is stopping... -- 18:56:48.202 DEBUG [32323]: Closing database connection -- 18:56:48.202 SQL [32323]: pgsql_close() -- 18:56:48.308 INFO [32323]: COREGRADE is starting... -- 18:56:48.308 INFO [32323]: Version from config: 1.0 -- 18:56:48.308 DEBUG [32323]: Connecting to database... -- 18:56:48.308 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:56:48.308 SQL [32323]: pgsql_db_connect() -- 18:56:48.313 DEBUG [32323]: Database connection successful -- 18:56:48.313 INFO [32323]: _SERVER found -- 18:56:48.313 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 18:56:48.313 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 18:56:48.313 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=jn29b4me5oi3tac11q2j93uluo2e5m2h -- 18:56:48.313 INFO [32323]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 18:56:48.313 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:56:48.324 INFO [32323]: COREGRADE is stopping... -- 18:56:48.324 DEBUG [32323]: Closing database connection -- 18:56:48.324 SQL [32323]: pgsql_close() -- 18:56:49.590 INFO [32323]: COREGRADE is starting... -- 18:56:49.590 INFO [32323]: Version from config: 1.0 -- 18:56:49.590 DEBUG [32323]: Connecting to database... -- 18:56:49.590 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:56:49.590 SQL [32323]: pgsql_db_connect() -- 18:56:49.595 DEBUG [32323]: Database connection successful -- 18:56:49.595 INFO [32323]: _SERVER found -- 18:56:49.595 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 18:56:49.595 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 18:56:49.595 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=jn29b4me5oi3tac11q2j93uluo2e5m2h -- 18:56:49.595 INFO [32323]: QUERY_STRING = /member/classroom -- 18:56:49.595 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:56:49.639 INFO [32323]: COREGRADE is stopping... -- 18:56:49.639 DEBUG [32323]: Closing database connection -- 18:56:49.639 SQL [32323]: pgsql_close() -- 18:56:50.831 INFO [32323]: COREGRADE is starting... -- 18:56:50.831 INFO [32323]: Version from config: 1.0 -- 18:56:50.831 DEBUG [32323]: Connecting to database... -- 18:56:50.831 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:56:50.831 SQL [32323]: pgsql_db_connect() -- 18:56:50.836 DEBUG [32323]: Database connection successful -- 18:56:50.836 INFO [32323]: _SERVER found -- 18:56:50.836 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 18:56:50.836 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 18:56:50.836 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=jn29b4me5oi3tac11q2j93uluo2e5m2h -- 18:56:50.836 INFO [32323]: QUERY_STRING = /member/viewRoom -- 18:56:50.836 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:56:50.872 INFO [32323]: COREGRADE is stopping... -- 18:56:50.872 DEBUG [32323]: Closing database connection -- 18:56:50.872 SQL [32323]: pgsql_close() -- 18:56:51.368 INFO [32323]: COREGRADE is starting... -- 18:56:51.369 INFO [32323]: Version from config: 1.0 -- 18:56:51.369 DEBUG [32323]: Connecting to database... -- 18:56:51.369 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:56:51.369 SQL [32323]: pgsql_db_connect() -- 18:56:51.373 DEBUG [32323]: Database connection successful -- 18:56:51.373 INFO [32323]: _SERVER found -- 18:56:51.373 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 18:56:51.373 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 18:56:51.373 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=jn29b4me5oi3tac11q2j93uluo2e5m2h -- 18:56:51.373 INFO [32323]: QUERY_STRING = /member/viewRoom -- 18:56:51.373 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:56:51.405 INFO [32323]: COREGRADE is stopping... -- 18:56:51.405 DEBUG [32323]: Closing database connection -- 18:56:51.405 SQL [32323]: pgsql_close() -- 18:58:05.937 INFO [32325]: COREGRADE is starting... -- 18:58:05.938 INFO [32325]: Version from config: 1.0 -- 18:58:05.938 DEBUG [32325]: Connecting to database... -- 18:58:05.938 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:58:05.938 SQL [32325]: pgsql_db_connect() -- 18:58:05.942 DEBUG [32325]: Database connection successful -- 18:58:05.942 INFO [32325]: _SERVER found -- 18:58:05.942 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 18:58:05.942 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 18:58:05.942 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=jn29b4me5oi3tac11q2j93uluo2e5m2h -- 18:58:05.942 INFO [32325]: QUERY_STRING = /member/classroom -- 18:58:05.942 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:58:05.987 INFO [32325]: COREGRADE is stopping... -- 18:58:05.987 DEBUG [32325]: Closing database connection -- 18:58:05.987 SQL [32325]: pgsql_close() -- 18:58:07.158 INFO [32325]: COREGRADE is starting... -- 18:58:07.158 INFO [32325]: Version from config: 1.0 -- 18:58:07.158 DEBUG [32325]: Connecting to database... -- 18:58:07.159 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:58:07.159 SQL [32325]: pgsql_db_connect() -- 18:58:07.163 DEBUG [32325]: Database connection successful -- 18:58:07.163 INFO [32325]: _SERVER found -- 18:58:07.163 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 18:58:07.163 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 18:58:07.163 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=jn29b4me5oi3tac11q2j93uluo2e5m2h -- 18:58:07.163 INFO [32325]: QUERY_STRING = /member/viewRoom -- 18:58:07.163 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:58:07.194 INFO [32325]: COREGRADE is stopping... -- 18:58:07.194 DEBUG [32325]: Closing database connection -- 18:58:07.194 SQL [32325]: pgsql_close() -- 19:01:14.173 INFO [32324]: COREGRADE is starting... -- 19:01:14.173 INFO [32324]: Version from config: 1.0 -- 19:01:14.173 DEBUG [32324]: Connecting to database... -- 19:01:14.173 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:01:14.173 SQL [32324]: pgsql_db_connect() -- 19:01:14.177 DEBUG [32324]: Database connection successful -- 19:01:14.177 INFO [32324]: _SERVER found -- 19:01:14.177 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 19:01:14.177 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 19:01:14.177 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=jn29b4me5oi3tac11q2j93uluo2e5m2h -- 19:01:14.177 INFO [32324]: QUERY_STRING = /member/classroom -- 19:01:14.177 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:01:14.222 INFO [32324]: COREGRADE is stopping... -- 19:01:14.222 DEBUG [32324]: Closing database connection -- 19:01:14.222 SQL [32324]: pgsql_close() -- 19:01:15.674 INFO [32324]: COREGRADE is starting... -- 19:01:15.674 INFO [32324]: Version from config: 1.0 -- 19:01:15.674 DEBUG [32324]: Connecting to database... -- 19:01:15.674 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:01:15.674 SQL [32324]: pgsql_db_connect() -- 19:01:15.678 DEBUG [32324]: Database connection successful -- 19:01:15.678 INFO [32324]: _SERVER found -- 19:01:15.678 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 19:01:15.678 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 19:01:15.678 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=jn29b4me5oi3tac11q2j93uluo2e5m2h -- 19:01:15.678 INFO [32324]: QUERY_STRING = /member/viewRoom -- 19:01:15.678 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:01:15.709 INFO [32324]: COREGRADE is stopping... -- 19:01:15.709 DEBUG [32324]: Closing database connection -- 19:01:15.709 SQL [32324]: pgsql_close() -- 19:01:18.059 INFO [32324]: COREGRADE is starting... -- 19:01:18.059 INFO [32324]: Version from config: 1.0 -- 19:01:18.059 DEBUG [32324]: Connecting to database... -- 19:01:18.059 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:01:18.059 SQL [32324]: pgsql_db_connect() -- 19:01:18.063 DEBUG [32324]: Database connection successful -- 19:01:18.063 INFO [32324]: _SERVER found -- 19:01:18.063 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 19:01:18.063 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 19:01:18.063 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=jn29b4me5oi3tac11q2j93uluo2e5m2h -- 19:01:18.063 INFO [32324]: QUERY_STRING = /member/classroom -- 19:01:18.063 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:01:18.105 INFO [32324]: COREGRADE is stopping... -- 19:01:18.106 DEBUG [32324]: Closing database connection -- 19:01:18.106 SQL [32324]: pgsql_close() -- 19:01:20.045 INFO [32324]: COREGRADE is starting... -- 19:01:20.046 INFO [32324]: Version from config: 1.0 -- 19:01:20.046 DEBUG [32324]: Connecting to database... -- 19:01:20.046 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:01:20.046 SQL [32324]: pgsql_db_connect() -- 19:01:20.050 DEBUG [32324]: Database connection successful -- 19:01:20.050 INFO [32324]: _SERVER found -- 19:01:20.050 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 19:01:20.050 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 19:01:20.050 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=jn29b4me5oi3tac11q2j93uluo2e5m2h -- 19:01:20.050 INFO [32324]: QUERY_STRING = /member/viewRoom -- 19:01:20.050 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:01:20.081 INFO [32324]: COREGRADE is stopping... -- 19:01:20.081 DEBUG [32324]: Closing database connection -- 19:01:20.081 SQL [32324]: pgsql_close() -- 19:04:30.452 INFO [32562]: COREGRADE is starting... -- 19:04:30.452 INFO [32562]: Version from config: 1.0 -- 19:04:30.452 DEBUG [32562]: Connecting to database... -- 19:04:30.452 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:04:30.452 SQL [32562]: pgsql_db_connect() -- 19:04:30.456 DEBUG [32562]: Database connection successful -- 19:04:30.456 INFO [32562]: _SERVER found -- 19:04:30.456 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 19:04:30.456 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 19:04:30.456 INFO [32562]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=jn29b4me5oi3tac11q2j93uluo2e5m2h -- 19:04:30.456 INFO [32562]: QUERY_STRING = /member/classroom -- 19:04:30.456 INFO [32562]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:04:30.501 INFO [32562]: COREGRADE is stopping... -- 19:04:30.501 DEBUG [32562]: Closing database connection -- 19:04:30.501 SQL [32562]: pgsql_close() -- 19:04:31.945 INFO [32562]: COREGRADE is starting... -- 19:04:31.945 INFO [32562]: Version from config: 1.0 -- 19:04:31.945 DEBUG [32562]: Connecting to database... -- 19:04:31.945 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:04:31.945 SQL [32562]: pgsql_db_connect() -- 19:04:31.950 DEBUG [32562]: Database connection successful -- 19:04:31.950 INFO [32562]: _SERVER found -- 19:04:31.950 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 19:04:31.950 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 19:04:31.950 INFO [32562]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=qn1aqqlprslrr6s06krtfr9fftv4ecu5 -- 19:04:31.950 INFO [32562]: QUERY_STRING = /member/viewRoom -- 19:04:31.950 INFO [32562]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:04:31.980 INFO [32562]: COREGRADE is stopping... -- 19:04:31.980 DEBUG [32562]: Closing database connection -- 19:04:31.980 SQL [32562]: pgsql_close() -- 19:07:04.611 INFO [742]: COREGRADE is starting... -- 19:07:04.612 INFO [742]: Version from config: 1.0 -- 19:07:04.612 DEBUG [742]: Connecting to database... -- 19:07:04.612 DEBUG [742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:04.612 SQL [742]: pgsql_db_connect() -- 19:07:04.616 DEBUG [742]: Database connection successful -- 19:07:04.616 INFO [742]: _SERVER found -- 19:07:04.616 INFO [742]: REMOTE_ADDR = 10.0.0.15 -- 19:07:04.616 INFO [742]: SERVER_NAME = oameye.works.coregrade.com -- 19:07:04.616 INFO [742]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=qn1aqqlprslrr6s06krtfr9fftv4ecu5 -- 19:07:04.616 INFO [742]: QUERY_STRING = /member/classroom -- 19:07:04.616 INFO [742]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:07:04.662 INFO [742]: COREGRADE is stopping... -- 19:07:04.662 DEBUG [742]: Closing database connection -- 19:07:04.662 SQL [742]: pgsql_close() -- 19:07:06.239 INFO [742]: COREGRADE is starting... -- 19:07:06.240 INFO [742]: Version from config: 1.0 -- 19:07:06.240 DEBUG [742]: Connecting to database... -- 19:07:06.240 DEBUG [742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:06.240 SQL [742]: pgsql_db_connect() -- 19:07:06.244 DEBUG [742]: Database connection successful -- 19:07:06.244 INFO [742]: _SERVER found -- 19:07:06.244 INFO [742]: REMOTE_ADDR = 10.0.0.15 -- 19:07:06.244 INFO [742]: SERVER_NAME = oameye.works.coregrade.com -- 19:07:06.244 INFO [742]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=qn1aqqlprslrr6s06krtfr9fftv4ecu5 -- 19:07:06.244 INFO [742]: QUERY_STRING = /member/viewRoom -- 19:07:06.244 INFO [742]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:07:06.275 INFO [742]: COREGRADE is stopping... -- 19:07:06.275 DEBUG [742]: Closing database connection -- 19:07:06.275 SQL [742]: pgsql_close() -- 19:10:00.349 INFO [32321]: COREGRADE is starting... -- 19:10:00.349 INFO [32321]: Version from config: 1.0 -- 19:10:00.349 DEBUG [32321]: Connecting to database... -- 19:10:00.349 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:10:00.349 SQL [32321]: pgsql_db_connect() -- 19:10:00.354 DEBUG [32321]: Database connection successful -- 19:10:00.354 INFO [32321]: _SERVER found -- 19:10:00.354 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 19:10:00.354 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 19:10:00.354 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=qn1aqqlprslrr6s06krtfr9fftv4ecu5 -- 19:10:00.354 INFO [32321]: QUERY_STRING = /member/classroom -- 19:10:00.354 INFO [32321]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:10:00.399 INFO [32321]: COREGRADE is stopping... -- 19:10:00.399 DEBUG [32321]: Closing database connection -- 19:10:00.399 SQL [32321]: pgsql_close() -- 19:10:04.578 INFO [32321]: COREGRADE is starting... -- 19:10:04.578 INFO [32321]: Version from config: 1.0 -- 19:10:04.578 DEBUG [32321]: Connecting to database... -- 19:10:04.578 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:10:04.578 SQL [32321]: pgsql_db_connect() -- 19:10:04.583 DEBUG [32321]: Database connection successful -- 19:10:04.583 INFO [32321]: _SERVER found -- 19:10:04.583 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 19:10:04.583 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 19:10:04.583 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=d6hbel6a8hcl54uufv3tr1nj82i49ij1 -- 19:10:04.583 INFO [32321]: QUERY_STRING = /member/viewRoom -- 19:10:04.583 INFO [32321]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:10:04.614 INFO [32321]: COREGRADE is stopping... -- 19:10:04.614 DEBUG [32321]: Closing database connection -- 19:10:04.614 SQL [32321]: pgsql_close() -- 19:10:07.360 INFO [32321]: COREGRADE is starting... -- 19:10:07.360 INFO [32321]: Version from config: 1.0 -- 19:10:07.360 DEBUG [32321]: Connecting to database... -- 19:10:07.360 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:10:07.360 SQL [32321]: pgsql_db_connect() -- 19:10:07.364 DEBUG [32321]: Database connection successful -- 19:10:07.364 INFO [32321]: _SERVER found -- 19:10:07.364 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 19:10:07.364 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 19:10:07.364 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=d6hbel6a8hcl54uufv3tr1nj82i49ij1 -- 19:10:07.364 INFO [32321]: QUERY_STRING = /member/deletePageAction -- 19:10:07.364 INFO [32321]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:10:07.396 INFO [32321]: COREGRADE is stopping... -- 19:10:07.397 DEBUG [32321]: Closing database connection -- 19:10:07.397 SQL [32321]: pgsql_close() -- 19:10:09.987 INFO [32321]: COREGRADE is starting... -- 19:10:09.987 INFO [32321]: Version from config: 1.0 -- 19:10:09.987 DEBUG [32321]: Connecting to database... -- 19:10:09.987 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:10:09.987 SQL [32321]: pgsql_db_connect() -- 19:10:09.991 DEBUG [32321]: Database connection successful -- 19:10:09.991 INFO [32321]: _SERVER found -- 19:10:09.991 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 19:10:09.991 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 19:10:09.991 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=d6hbel6a8hcl54uufv3tr1nj82i49ij1 -- 19:10:09.991 INFO [32321]: QUERY_STRING = /member/deletePageAction -- 19:10:09.991 INFO [32321]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:10:10.024 INFO [32321]: COREGRADE is stopping... -- 19:10:10.024 DEBUG [32321]: Closing database connection -- 19:10:10.024 SQL [32321]: pgsql_close() -- 19:10:14.552 INFO [32321]: COREGRADE is starting... -- 19:10:14.552 INFO [32321]: Version from config: 1.0 -- 19:10:14.552 DEBUG [32321]: Connecting to database... -- 19:10:14.552 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:10:14.552 SQL [32321]: pgsql_db_connect() -- 19:10:14.556 DEBUG [32321]: Database connection successful -- 19:10:14.556 INFO [32321]: _SERVER found -- 19:10:14.556 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 19:10:14.556 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 19:10:14.557 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=d6hbel6a8hcl54uufv3tr1nj82i49ij1 -- 19:10:14.557 INFO [32321]: QUERY_STRING = /member/deletePageAction -- 19:10:14.557 INFO [32321]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:10:14.589 INFO [32321]: COREGRADE is stopping... -- 19:10:14.589 DEBUG [32321]: Closing database connection -- 19:10:14.589 SQL [32321]: pgsql_close() -- 19:10:23.118 INFO [743]: COREGRADE is starting... -- 19:10:23.118 INFO [743]: Version from config: 1.0 -- 19:10:23.118 DEBUG [743]: Connecting to database... -- 19:10:23.118 DEBUG [743]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:10:23.118 SQL [743]: pgsql_db_connect() -- 19:10:23.122 DEBUG [743]: Database connection successful -- 19:10:23.122 INFO [743]: _SERVER found -- 19:10:23.122 INFO [743]: REMOTE_ADDR = 10.0.0.15 -- 19:10:23.122 INFO [743]: SERVER_NAME = oameye.works.coregrade.com -- 19:10:23.122 INFO [743]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=d6hbel6a8hcl54uufv3tr1nj82i49ij1 -- 19:10:23.122 INFO [743]: QUERY_STRING = /member/viewRoom -- 19:10:23.122 INFO [743]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:10:23.155 INFO [743]: COREGRADE is stopping... -- 19:10:23.155 DEBUG [743]: Closing database connection -- 19:10:23.155 SQL [743]: pgsql_close() -- 19:10:26.029 INFO [743]: COREGRADE is starting... -- 19:10:26.030 INFO [743]: Version from config: 1.0 -- 19:10:26.030 DEBUG [743]: Connecting to database... -- 19:10:26.030 DEBUG [743]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:10:26.030 SQL [743]: pgsql_db_connect() -- 19:10:26.034 DEBUG [743]: Database connection successful -- 19:10:26.034 INFO [743]: _SERVER found -- 19:10:26.034 INFO [743]: REMOTE_ADDR = 10.0.0.15 -- 19:10:26.034 INFO [743]: SERVER_NAME = oameye.works.coregrade.com -- 19:10:26.034 INFO [743]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=d6hbel6a8hcl54uufv3tr1nj82i49ij1 -- 19:10:26.034 INFO [743]: QUERY_STRING = /member/addNewSubscriber -- 19:10:26.034 INFO [743]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:10:26.064 INFO [743]: COREGRADE is stopping... -- 19:10:26.064 DEBUG [743]: Closing database connection -- 19:10:26.064 SQL [743]: pgsql_close() -- 19:10:28.427 INFO [743]: COREGRADE is starting... -- 19:10:28.427 INFO [743]: Version from config: 1.0 -- 19:10:28.427 DEBUG [743]: Connecting to database... -- 19:10:28.427 DEBUG [743]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:10:28.427 SQL [743]: pgsql_db_connect() -- 19:10:28.431 DEBUG [743]: Database connection successful -- 19:10:28.431 INFO [743]: _SERVER found -- 19:10:28.431 INFO [743]: REMOTE_ADDR = 10.0.0.15 -- 19:10:28.431 INFO [743]: SERVER_NAME = oameye.works.coregrade.com -- 19:10:28.431 INFO [743]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=d6hbel6a8hcl54uufv3tr1nj82i49ij1 -- 19:10:28.431 INFO [743]: QUERY_STRING = /member/addNewSubscriber -- 19:10:28.431 INFO [743]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:10:28.462 INFO [743]: COREGRADE is stopping... -- 19:10:28.462 DEBUG [743]: Closing database connection -- 19:10:28.462 SQL [743]: pgsql_close() -- 19:12:33.735 INFO [741]: COREGRADE is starting... -- 19:12:33.736 INFO [741]: Version from config: 1.0 -- 19:12:33.736 DEBUG [741]: Connecting to database... -- 19:12:33.736 DEBUG [741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:12:33.736 SQL [741]: pgsql_db_connect() -- 19:12:33.740 DEBUG [741]: Database connection successful -- 19:12:33.740 INFO [741]: _SERVER found -- 19:12:33.740 INFO [741]: REMOTE_ADDR = 10.0.0.15 -- 19:12:33.740 INFO [741]: SERVER_NAME = oameye.works.coregrade.com -- 19:12:33.740 INFO [741]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=d6hbel6a8hcl54uufv3tr1nj82i49ij1 -- 19:12:33.740 INFO [741]: QUERY_STRING = /member/addNewSubscriber -- 19:12:33.740 INFO [741]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:12:33.775 INFO [741]: COREGRADE is stopping... -- 19:12:33.775 DEBUG [741]: Closing database connection -- 19:12:33.775 SQL [741]: pgsql_close() -- 19:38:20.071 INFO [5948]: COREGRADE is starting... -- 19:38:20.072 INFO [5948]: Version from config: 1.0 -- 19:38:20.072 DEBUG [5948]: Connecting to database... -- 19:38:20.072 DEBUG [5948]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:38:20.072 SQL [5948]: pgsql_db_connect() -- 19:38:20.076 DEBUG [5948]: Database connection successful -- 19:38:20.076 INFO [5948]: _SERVER found -- 19:38:20.076 INFO [5948]: REMOTE_ADDR = 10.0.0.15 -- 19:38:20.076 INFO [5948]: SERVER_NAME = oameye.works.coregrade.com -- 19:38:20.076 INFO [5948]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=d6hbel6a8hcl54uufv3tr1nj82i49ij1 -- 19:38:20.076 INFO [5948]: QUERY_STRING = /member/classroom -- 19:38:20.076 INFO [5948]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:38:20.124 INFO [5948]: COREGRADE is stopping... -- 19:38:20.125 DEBUG [5948]: Closing database connection -- 19:38:20.125 SQL [5948]: pgsql_close() -- 19:38:22.431 INFO [5948]: COREGRADE is starting... -- 19:38:22.431 INFO [5948]: Version from config: 1.0 -- 19:38:22.431 DEBUG [5948]: Connecting to database... -- 19:38:22.431 DEBUG [5948]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:38:22.432 SQL [5948]: pgsql_db_connect() -- 19:38:22.436 DEBUG [5948]: Database connection successful -- 19:38:22.436 INFO [5948]: _SERVER found -- 19:38:22.436 INFO [5948]: REMOTE_ADDR = 10.0.0.15 -- 19:38:22.436 INFO [5948]: SERVER_NAME = oameye.works.coregrade.com -- 19:38:22.436 INFO [5948]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0f6t5sj0utnp3mcc5908g6g0ohj8sl6c -- 19:38:22.436 INFO [5948]: QUERY_STRING = /member/viewRoom -- 19:38:22.436 INFO [5948]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:38:22.467 INFO [5948]: COREGRADE is stopping... -- 19:38:22.467 DEBUG [5948]: Closing database connection -- 19:38:22.467 SQL [5948]: pgsql_close() -- 19:38:25.409 INFO [5948]: COREGRADE is starting... -- 19:38:25.410 INFO [5948]: Version from config: 1.0 -- 19:38:25.410 DEBUG [5948]: Connecting to database... -- 19:38:25.410 DEBUG [5948]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:38:25.410 SQL [5948]: pgsql_db_connect() -- 19:38:25.414 DEBUG [5948]: Database connection successful -- 19:38:25.414 INFO [5948]: _SERVER found -- 19:38:25.414 INFO [5948]: REMOTE_ADDR = 10.0.0.15 -- 19:38:25.414 INFO [5948]: SERVER_NAME = oameye.works.coregrade.com -- 19:38:25.414 INFO [5948]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0f6t5sj0utnp3mcc5908g6g0ohj8sl6c -- 19:38:25.414 INFO [5948]: QUERY_STRING = /member/classroom -- 19:38:25.414 INFO [5948]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:38:25.457 INFO [5948]: COREGRADE is stopping... -- 19:38:25.457 DEBUG [5948]: Closing database connection -- 19:38:25.457 SQL [5948]: pgsql_close() -- 19:38:27.341 INFO [5948]: COREGRADE is starting... -- 19:38:27.341 INFO [5948]: Version from config: 1.0 -- 19:38:27.341 DEBUG [5948]: Connecting to database... -- 19:38:27.341 DEBUG [5948]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:38:27.341 SQL [5948]: pgsql_db_connect() -- 19:38:27.346 DEBUG [5948]: Database connection successful -- 19:38:27.346 INFO [5948]: _SERVER found -- 19:38:27.346 INFO [5948]: REMOTE_ADDR = 10.0.0.15 -- 19:38:27.346 INFO [5948]: SERVER_NAME = oameye.works.coregrade.com -- 19:38:27.346 INFO [5948]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0f6t5sj0utnp3mcc5908g6g0ohj8sl6c -- 19:38:27.346 INFO [5948]: QUERY_STRING = /member/viewRoom -- 19:38:27.346 INFO [5948]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:38:27.377 INFO [5948]: COREGRADE is stopping... -- 19:38:27.377 DEBUG [5948]: Closing database connection -- 19:38:27.377 SQL [5948]: pgsql_close() -- 19:38:31.415 INFO [5948]: COREGRADE is starting... -- 19:38:31.416 INFO [5948]: Version from config: 1.0 -- 19:38:31.416 DEBUG [5948]: Connecting to database... -- 19:38:31.416 DEBUG [5948]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:38:31.416 SQL [5948]: pgsql_db_connect() -- 19:38:31.420 DEBUG [5948]: Database connection successful -- 19:38:31.420 INFO [5948]: _SERVER found -- 19:38:31.420 INFO [5948]: REMOTE_ADDR = 10.0.0.15 -- 19:38:31.420 INFO [5948]: SERVER_NAME = oameye.works.coregrade.com -- 19:38:31.420 INFO [5948]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0f6t5sj0utnp3mcc5908g6g0ohj8sl6c -- 19:38:31.420 INFO [5948]: QUERY_STRING = /member/classroom -- 19:38:31.420 INFO [5948]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:38:31.463 INFO [5948]: COREGRADE is stopping... -- 19:38:31.463 DEBUG [5948]: Closing database connection -- 19:38:31.463 SQL [5948]: pgsql_close() -- 19:38:33.527 INFO [5948]: COREGRADE is starting... -- 19:38:33.527 INFO [5948]: Version from config: 1.0 -- 19:38:33.527 DEBUG [5948]: Connecting to database... -- 19:38:33.527 DEBUG [5948]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:38:33.527 SQL [5948]: pgsql_db_connect() -- 19:38:33.531 DEBUG [5948]: Database connection successful -- 19:38:33.531 INFO [5948]: _SERVER found -- 19:38:33.531 INFO [5948]: REMOTE_ADDR = 10.0.0.15 -- 19:38:33.531 INFO [5948]: SERVER_NAME = oameye.works.coregrade.com -- 19:38:33.531 INFO [5948]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0f6t5sj0utnp3mcc5908g6g0ohj8sl6c -- 19:38:33.531 INFO [5948]: QUERY_STRING = /member/viewRoom -- 19:38:33.531 INFO [5948]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:38:33.563 INFO [5948]: COREGRADE is stopping... -- 19:38:33.563 DEBUG [5948]: Closing database connection -- 19:38:33.563 SQL [5948]: pgsql_close() -- 19:39:29.639 INFO [32322]: COREGRADE is starting... -- 19:39:29.640 INFO [32322]: Version from config: 1.0 -- 19:39:29.640 DEBUG [32322]: Connecting to database... -- 19:39:29.640 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:39:29.640 SQL [32322]: pgsql_db_connect() -- 19:39:29.644 DEBUG [32322]: Database connection successful -- 19:39:29.644 INFO [32322]: _SERVER found -- 19:39:29.644 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 19:39:29.644 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 19:39:29.644 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0f6t5sj0utnp3mcc5908g6g0ohj8sl6c -- 19:39:29.644 INFO [32322]: QUERY_STRING = /member/classroom -- 19:39:29.644 INFO [32322]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:39:29.690 INFO [32322]: COREGRADE is stopping... -- 19:39:29.690 DEBUG [32322]: Closing database connection -- 19:39:29.690 SQL [32322]: pgsql_close() -- 19:39:31.133 INFO [32322]: COREGRADE is starting... -- 19:39:31.133 INFO [32322]: Version from config: 1.0 -- 19:39:31.133 DEBUG [32322]: Connecting to database... -- 19:39:31.134 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:39:31.134 SQL [32322]: pgsql_db_connect() -- 19:39:31.138 DEBUG [32322]: Database connection successful -- 19:39:31.138 INFO [32322]: _SERVER found -- 19:39:31.138 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 19:39:31.138 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 19:39:31.138 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0f6t5sj0utnp3mcc5908g6g0ohj8sl6c -- 19:39:31.138 INFO [32322]: QUERY_STRING = /member/viewRoom -- 19:39:31.138 INFO [32322]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:39:31.169 INFO [32322]: COREGRADE is stopping... -- 19:39:31.169 DEBUG [32322]: Closing database connection -- 19:39:31.169 SQL [32322]: pgsql_close() -- 19:39:32.383 INFO [32322]: COREGRADE is starting... -- 19:39:32.383 INFO [32322]: Version from config: 1.0 -- 19:39:32.383 DEBUG [32322]: Connecting to database... -- 19:39:32.383 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:39:32.383 SQL [32322]: pgsql_db_connect() -- 19:39:32.387 DEBUG [32322]: Database connection successful -- 19:39:32.387 INFO [32322]: _SERVER found -- 19:39:32.387 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 19:39:32.387 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 19:39:32.387 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0f6t5sj0utnp3mcc5908g6g0ohj8sl6c -- 19:39:32.387 INFO [32322]: QUERY_STRING = /member/addNewSubscriber -- 19:39:32.387 INFO [32322]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:39:32.418 INFO [32322]: COREGRADE is stopping... -- 19:39:32.418 DEBUG [32322]: Closing database connection -- 19:39:32.418 SQL [32322]: pgsql_close() -- 19:39:33.295 INFO [32322]: COREGRADE is starting... -- 19:39:33.296 INFO [32322]: Version from config: 1.0 -- 19:39:33.296 DEBUG [32322]: Connecting to database... -- 19:39:33.296 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:39:33.296 SQL [32322]: pgsql_db_connect() -- 19:39:33.300 DEBUG [32322]: Database connection successful -- 19:39:33.300 INFO [32322]: _SERVER found -- 19:39:33.300 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 19:39:33.300 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 19:39:33.300 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0f6t5sj0utnp3mcc5908g6g0ohj8sl6c -- 19:39:33.300 INFO [32322]: QUERY_STRING = /member/addNewSubscriber -- 19:39:33.300 INFO [32322]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:39:33.334 INFO [32322]: COREGRADE is stopping... -- 19:39:33.334 DEBUG [32322]: Closing database connection -- 19:39:33.334 SQL [32322]: pgsql_close() -- 19:39:33.956 INFO [32322]: COREGRADE is starting... -- 19:39:33.956 INFO [32322]: Version from config: 1.0 -- 19:39:33.956 DEBUG [32322]: Connecting to database... -- 19:39:33.956 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:39:33.956 SQL [32322]: pgsql_db_connect() -- 19:39:33.960 DEBUG [32322]: Database connection successful -- 19:39:33.960 INFO [32322]: _SERVER found -- 19:39:33.960 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 19:39:33.960 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 19:39:33.960 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0f6t5sj0utnp3mcc5908g6g0ohj8sl6c -- 19:39:33.960 INFO [32322]: QUERY_STRING = /member/addNewSubscriber -- 19:39:33.960 INFO [32322]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:39:33.991 INFO [32322]: COREGRADE is stopping... -- 19:39:33.991 DEBUG [32322]: Closing database connection -- 19:39:33.991 SQL [32322]: pgsql_close() -- 19:39:37.216 INFO [32322]: COREGRADE is starting... -- 19:39:37.216 INFO [32322]: Version from config: 1.0 -- 19:39:37.216 DEBUG [32322]: Connecting to database... -- 19:39:37.216 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:39:37.216 SQL [32322]: pgsql_db_connect() -- 19:39:37.220 DEBUG [32322]: Database connection successful -- 19:39:37.220 INFO [32322]: _SERVER found -- 19:39:37.220 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 19:39:37.220 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 19:39:37.220 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0f6t5sj0utnp3mcc5908g6g0ohj8sl6c -- 19:39:37.220 INFO [32322]: QUERY_STRING = /member/addNewSubscriber -- 19:39:37.220 INFO [32322]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:39:37.251 INFO [32322]: COREGRADE is stopping... -- 19:39:37.252 DEBUG [32322]: Closing database connection -- 19:39:37.252 SQL [32322]: pgsql_close() -- 19:39:39.474 INFO [32322]: COREGRADE is starting... -- 19:39:39.474 INFO [32322]: Version from config: 1.0 -- 19:39:39.474 DEBUG [32322]: Connecting to database... -- 19:39:39.474 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:39:39.474 SQL [32322]: pgsql_db_connect() -- 19:39:39.478 DEBUG [32322]: Database connection successful -- 19:39:39.478 INFO [32322]: _SERVER found -- 19:39:39.478 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 19:39:39.478 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 19:39:39.478 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0f6t5sj0utnp3mcc5908g6g0ohj8sl6c -- 19:39:39.478 INFO [32322]: QUERY_STRING = /member/addNewSubscriber -- 19:39:39.478 INFO [32322]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:39:39.509 INFO [32322]: COREGRADE is stopping... -- 19:39:39.509 DEBUG [32322]: Closing database connection -- 19:39:39.509 SQL [32322]: pgsql_close() -- 19:39:40.452 INFO [32322]: COREGRADE is starting... -- 19:39:40.452 INFO [32322]: Version from config: 1.0 -- 19:39:40.452 DEBUG [32322]: Connecting to database... -- 19:39:40.452 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:39:40.452 SQL [32322]: pgsql_db_connect() -- 19:39:40.456 DEBUG [32322]: Database connection successful -- 19:39:40.456 INFO [32322]: _SERVER found -- 19:39:40.456 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 19:39:40.456 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 19:39:40.456 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0f6t5sj0utnp3mcc5908g6g0ohj8sl6c -- 19:39:40.456 INFO [32322]: QUERY_STRING = /member/addNewSubscriber -- 19:39:40.456 INFO [32322]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:39:40.487 INFO [32322]: COREGRADE is stopping... -- 19:39:40.487 DEBUG [32322]: Closing database connection -- 19:39:40.487 SQL [32322]: pgsql_close() -- 19:39:41.252 INFO [32322]: COREGRADE is starting... -- 19:39:41.253 INFO [32322]: Version from config: 1.0 -- 19:39:41.253 DEBUG [32322]: Connecting to database... -- 19:39:41.253 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:39:41.253 SQL [32322]: pgsql_db_connect() -- 19:39:41.257 DEBUG [32322]: Database connection successful -- 19:39:41.257 INFO [32322]: _SERVER found -- 19:39:41.257 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 19:39:41.257 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 19:39:41.257 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0f6t5sj0utnp3mcc5908g6g0ohj8sl6c -- 19:39:41.257 INFO [32322]: QUERY_STRING = /member/addNewSubscriber -- 19:39:41.257 INFO [32322]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:39:41.288 INFO [32322]: COREGRADE is stopping... -- 19:39:41.288 DEBUG [32322]: Closing database connection -- 19:39:41.288 SQL [32322]: pgsql_close() -- 19:40:23.091 INFO [32323]: COREGRADE is starting... -- 19:40:23.091 INFO [32323]: Version from config: 1.0 -- 19:40:23.091 DEBUG [32323]: Connecting to database... -- 19:40:23.091 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:40:23.091 SQL [32323]: pgsql_db_connect() -- 19:40:23.095 DEBUG [32323]: Database connection successful -- 19:40:23.095 INFO [32323]: _SERVER found -- 19:40:23.095 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 19:40:23.095 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 19:40:23.095 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0f6t5sj0utnp3mcc5908g6g0ohj8sl6c -- 19:40:23.095 INFO [32323]: QUERY_STRING = /member/classroom -- 19:40:23.095 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:40:23.140 INFO [32323]: COREGRADE is stopping... -- 19:40:23.140 DEBUG [32323]: Closing database connection -- 19:40:23.140 SQL [32323]: pgsql_close() -- 19:40:24.449 INFO [32323]: COREGRADE is starting... -- 19:40:24.450 INFO [32323]: Version from config: 1.0 -- 19:40:24.450 DEBUG [32323]: Connecting to database... -- 19:40:24.450 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:40:24.450 SQL [32323]: pgsql_db_connect() -- 19:40:24.454 DEBUG [32323]: Database connection successful -- 19:40:24.454 INFO [32323]: _SERVER found -- 19:40:24.454 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 19:40:24.454 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 19:40:24.454 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0f6t5sj0utnp3mcc5908g6g0ohj8sl6c -- 19:40:24.454 INFO [32323]: QUERY_STRING = /member/viewRoom -- 19:40:24.454 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:40:24.485 INFO [32323]: COREGRADE is stopping... -- 19:40:24.486 DEBUG [32323]: Closing database connection -- 19:40:24.486 SQL [32323]: pgsql_close() -- 19:40:27.076 INFO [32323]: COREGRADE is starting... -- 19:40:27.076 INFO [32323]: Version from config: 1.0 -- 19:40:27.076 DEBUG [32323]: Connecting to database... -- 19:40:27.076 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:40:27.076 SQL [32323]: pgsql_db_connect() -- 19:40:27.080 DEBUG [32323]: Database connection successful -- 19:40:27.080 INFO [32323]: _SERVER found -- 19:40:27.080 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 19:40:27.080 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 19:40:27.080 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0f6t5sj0utnp3mcc5908g6g0ohj8sl6c -- 19:40:27.080 INFO [32323]: QUERY_STRING = /member/addNewSubscriber -- 19:40:27.080 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:40:27.111 INFO [32323]: COREGRADE is stopping... -- 19:40:27.111 DEBUG [32323]: Closing database connection -- 19:40:27.111 SQL [32323]: pgsql_close() -- 19:41:18.803 INFO [32325]: COREGRADE is starting... -- 19:41:18.803 INFO [32325]: Version from config: 1.0 -- 19:41:18.803 DEBUG [32325]: Connecting to database... -- 19:41:18.803 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:41:18.803 SQL [32325]: pgsql_db_connect() -- 19:41:18.807 DEBUG [32325]: Database connection successful -- 19:41:18.807 INFO [32325]: _SERVER found -- 19:41:18.807 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 19:41:18.807 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 19:41:18.807 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0f6t5sj0utnp3mcc5908g6g0ohj8sl6c -- 19:41:18.807 INFO [32325]: QUERY_STRING = /member/classroom -- 19:41:18.807 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:41:18.852 INFO [32325]: COREGRADE is stopping... -- 19:41:18.852 DEBUG [32325]: Closing database connection -- 19:41:18.852 SQL [32325]: pgsql_close() -- 19:41:20.616 INFO [32325]: COREGRADE is starting... -- 19:41:20.616 INFO [32325]: Version from config: 1.0 -- 19:41:20.616 DEBUG [32325]: Connecting to database... -- 19:41:20.616 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:41:20.616 SQL [32325]: pgsql_db_connect() -- 19:41:20.620 DEBUG [32325]: Database connection successful -- 19:41:20.620 INFO [32325]: _SERVER found -- 19:41:20.620 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 19:41:20.620 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 19:41:20.620 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0f6t5sj0utnp3mcc5908g6g0ohj8sl6c -- 19:41:20.620 INFO [32325]: QUERY_STRING = /member/viewRoom -- 19:41:20.620 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:41:20.652 INFO [32325]: COREGRADE is stopping... -- 19:41:20.652 DEBUG [32325]: Closing database connection -- 19:41:20.652 SQL [32325]: pgsql_close() -- 19:41:23.750 INFO [32325]: COREGRADE is starting... -- 19:41:23.750 INFO [32325]: Version from config: 1.0 -- 19:41:23.750 DEBUG [32325]: Connecting to database... -- 19:41:23.750 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:41:23.750 SQL [32325]: pgsql_db_connect() -- 19:41:23.754 DEBUG [32325]: Database connection successful -- 19:41:23.754 INFO [32325]: _SERVER found -- 19:41:23.754 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 19:41:23.754 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 19:41:23.754 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0f6t5sj0utnp3mcc5908g6g0ohj8sl6c -- 19:41:23.754 INFO [32325]: QUERY_STRING = /member/addNewSubscriber -- 19:41:23.754 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:41:23.785 INFO [32325]: COREGRADE is stopping... -- 19:41:23.785 DEBUG [32325]: Closing database connection -- 19:41:23.785 SQL [32325]: pgsql_close() -- 19:41:26.236 INFO [32325]: COREGRADE is starting... -- 19:41:26.236 INFO [32325]: Version from config: 1.0 -- 19:41:26.236 DEBUG [32325]: Connecting to database... -- 19:41:26.236 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:41:26.236 SQL [32325]: pgsql_db_connect() -- 19:41:26.241 DEBUG [32325]: Database connection successful -- 19:41:26.241 INFO [32325]: _SERVER found -- 19:41:26.241 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 19:41:26.241 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 19:41:26.241 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0f6t5sj0utnp3mcc5908g6g0ohj8sl6c -- 19:41:26.241 INFO [32325]: QUERY_STRING = /member/addNewSubscriber -- 19:41:26.241 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:41:26.272 INFO [32325]: COREGRADE is stopping... -- 19:41:26.272 DEBUG [32325]: Closing database connection -- 19:41:26.272 SQL [32325]: pgsql_close() -- 19:48:22.178 INFO [32324]: COREGRADE is starting... -- 19:48:22.178 INFO [32324]: Version from config: 1.0 -- 19:48:22.178 DEBUG [32324]: Connecting to database... -- 19:48:22.178 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:48:22.178 SQL [32324]: pgsql_db_connect() -- 19:48:22.183 DEBUG [32324]: Database connection successful -- 19:48:22.183 INFO [32324]: _SERVER found -- 19:48:22.183 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 19:48:22.183 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 19:48:22.183 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0f6t5sj0utnp3mcc5908g6g0ohj8sl6c -- 19:48:22.183 INFO [32324]: QUERY_STRING = /member/classroom -- 19:48:22.183 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:48:22.229 INFO [32324]: COREGRADE is stopping... -- 19:48:22.230 DEBUG [32324]: Closing database connection -- 19:48:22.230 SQL [32324]: pgsql_close() -- 19:48:24.529 INFO [32324]: COREGRADE is starting... -- 19:48:24.529 INFO [32324]: Version from config: 1.0 -- 19:48:24.529 DEBUG [32324]: Connecting to database... -- 19:48:24.529 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:48:24.529 SQL [32324]: pgsql_db_connect() -- 19:48:24.533 DEBUG [32324]: Database connection successful -- 19:48:24.533 INFO [32324]: _SERVER found -- 19:48:24.533 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 19:48:24.533 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 19:48:24.533 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 19:48:24.533 INFO [32324]: QUERY_STRING = /member/viewRoom -- 19:48:24.533 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:48:24.565 INFO [32324]: COREGRADE is stopping... -- 19:48:24.565 DEBUG [32324]: Closing database connection -- 19:48:24.565 SQL [32324]: pgsql_close() -- 19:48:27.247 INFO [32324]: COREGRADE is starting... -- 19:48:27.248 INFO [32324]: Version from config: 1.0 -- 19:48:27.248 DEBUG [32324]: Connecting to database... -- 19:48:27.248 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:48:27.248 SQL [32324]: pgsql_db_connect() -- 19:48:27.252 DEBUG [32324]: Database connection successful -- 19:48:27.252 INFO [32324]: _SERVER found -- 19:48:27.252 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 19:48:27.252 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 19:48:27.252 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 19:48:27.252 INFO [32324]: QUERY_STRING = /member/classroom -- 19:48:27.252 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:48:27.295 INFO [32324]: COREGRADE is stopping... -- 19:48:27.295 DEBUG [32324]: Closing database connection -- 19:48:27.295 SQL [32324]: pgsql_close() -- 19:48:28.752 INFO [32324]: COREGRADE is starting... -- 19:48:28.752 INFO [32324]: Version from config: 1.0 -- 19:48:28.752 DEBUG [32324]: Connecting to database... -- 19:48:28.752 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:48:28.752 SQL [32324]: pgsql_db_connect() -- 19:48:28.756 DEBUG [32324]: Database connection successful -- 19:48:28.756 INFO [32324]: _SERVER found -- 19:48:28.756 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 19:48:28.756 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 19:48:28.756 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 19:48:28.756 INFO [32324]: QUERY_STRING = /member/viewRoom -- 19:48:28.756 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:48:28.787 INFO [32324]: COREGRADE is stopping... -- 19:48:28.787 DEBUG [32324]: Closing database connection -- 19:48:28.787 SQL [32324]: pgsql_close() -- 19:48:33.851 INFO [32562]: COREGRADE is starting... -- 19:48:33.851 INFO [32562]: Version from config: 1.0 -- 19:48:33.851 DEBUG [32562]: Connecting to database... -- 19:48:33.851 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:48:33.851 SQL [32562]: pgsql_db_connect() -- 19:48:33.856 DEBUG [32562]: Database connection successful -- 19:48:33.856 INFO [32562]: _SERVER found -- 19:48:33.856 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 19:48:33.856 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 19:48:33.856 INFO [32562]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 19:48:33.856 INFO [32562]: QUERY_STRING = /member/classroom -- 19:48:33.856 INFO [32562]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:48:33.899 INFO [32562]: COREGRADE is stopping... -- 19:48:33.899 DEBUG [32562]: Closing database connection -- 19:48:33.900 SQL [32562]: pgsql_close() -- 19:49:55.898 INFO [742]: COREGRADE is starting... -- 19:49:55.898 INFO [742]: Version from config: 1.0 -- 19:49:55.898 DEBUG [742]: Connecting to database... -- 19:49:55.898 DEBUG [742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:49:55.898 SQL [742]: pgsql_db_connect() -- 19:49:55.903 DEBUG [742]: Database connection successful -- 19:49:55.903 INFO [742]: _SERVER found -- 19:49:55.903 INFO [742]: REMOTE_ADDR = 10.0.0.15 -- 19:49:55.903 INFO [742]: SERVER_NAME = oameye.works.coregrade.com -- 19:49:55.903 INFO [742]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 19:49:55.903 INFO [742]: QUERY_STRING = /member/classroom -- 19:49:55.903 INFO [742]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:49:55.948 INFO [742]: COREGRADE is stopping... -- 19:49:55.948 DEBUG [742]: Closing database connection -- 19:49:55.948 SQL [742]: pgsql_close() -- 19:49:56.900 INFO [742]: COREGRADE is starting... -- 19:49:56.900 INFO [742]: Version from config: 1.0 -- 19:49:56.900 DEBUG [742]: Connecting to database... -- 19:49:56.900 DEBUG [742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:49:56.900 SQL [742]: pgsql_db_connect() -- 19:49:56.904 DEBUG [742]: Database connection successful -- 19:49:56.904 INFO [742]: _SERVER found -- 19:49:56.904 INFO [742]: REMOTE_ADDR = 10.0.0.15 -- 19:49:56.904 INFO [742]: SERVER_NAME = oameye.works.coregrade.com -- 19:49:56.904 INFO [742]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 19:49:56.904 INFO [742]: QUERY_STRING = /member/viewRoom -- 19:49:56.904 INFO [742]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:49:56.935 INFO [742]: COREGRADE is stopping... -- 19:49:56.935 DEBUG [742]: Closing database connection -- 19:49:56.935 SQL [742]: pgsql_close() -- 19:50:15.605 INFO [32321]: COREGRADE is starting... -- 19:50:15.606 INFO [32321]: Version from config: 1.0 -- 19:50:15.606 DEBUG [32321]: Connecting to database... -- 19:50:15.606 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:50:15.606 SQL [32321]: pgsql_db_connect() -- 19:50:15.610 DEBUG [32321]: Database connection successful -- 19:50:15.610 INFO [32321]: _SERVER found -- 19:50:15.610 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 19:50:15.610 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 19:50:15.610 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 19:50:15.610 INFO [32321]: QUERY_STRING = /member/classroom -- 19:50:15.610 INFO [32321]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:50:15.654 INFO [32321]: COREGRADE is stopping... -- 19:50:15.654 DEBUG [32321]: Closing database connection -- 19:50:15.654 SQL [32321]: pgsql_close() -- 19:50:15.783 INFO [32321]: COREGRADE is starting... -- 19:50:15.783 INFO [32321]: Version from config: 1.0 -- 19:50:15.783 DEBUG [32321]: Connecting to database... -- 19:50:15.783 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:50:15.783 SQL [32321]: pgsql_db_connect() -- 19:50:15.787 DEBUG [32321]: Database connection successful -- 19:50:15.787 INFO [32321]: _SERVER found -- 19:50:15.787 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 19:50:15.787 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 19:50:15.787 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 19:50:15.787 INFO [32321]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:50:15.787 INFO [32321]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:50:15.799 INFO [32321]: COREGRADE is stopping... -- 19:50:15.799 DEBUG [32321]: Closing database connection -- 19:50:15.799 SQL [32321]: pgsql_close() -- 19:51:21.095 INFO [743]: COREGRADE is starting... -- 19:51:21.095 INFO [743]: Version from config: 1.0 -- 19:51:21.095 DEBUG [743]: Connecting to database... -- 19:51:21.095 DEBUG [743]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:51:21.095 SQL [743]: pgsql_db_connect() -- 19:51:21.100 DEBUG [743]: Database connection successful -- 19:51:21.100 INFO [743]: _SERVER found -- 19:51:21.100 INFO [743]: REMOTE_ADDR = 10.0.0.15 -- 19:51:21.100 INFO [743]: SERVER_NAME = oameye.works.coregrade.com -- 19:51:21.100 INFO [743]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 19:51:21.100 INFO [743]: QUERY_STRING = /member/classroom -- 19:51:21.100 INFO [743]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:51:21.145 INFO [743]: COREGRADE is stopping... -- 19:51:21.145 DEBUG [743]: Closing database connection -- 19:51:21.145 SQL [743]: pgsql_close() -- 19:51:21.263 INFO [743]: COREGRADE is starting... -- 19:51:21.263 INFO [743]: Version from config: 1.0 -- 19:51:21.263 DEBUG [743]: Connecting to database... -- 19:51:21.263 DEBUG [743]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:51:21.263 SQL [743]: pgsql_db_connect() -- 19:51:21.268 DEBUG [743]: Database connection successful -- 19:51:21.268 INFO [743]: _SERVER found -- 19:51:21.268 INFO [743]: REMOTE_ADDR = 10.0.0.15 -- 19:51:21.268 INFO [743]: SERVER_NAME = oameye.works.coregrade.com -- 19:51:21.268 INFO [743]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 19:51:21.268 INFO [743]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 19:51:21.268 INFO [743]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:51:21.279 INFO [743]: COREGRADE is stopping... -- 19:51:21.279 DEBUG [743]: Closing database connection -- 19:51:21.279 SQL [743]: pgsql_close() -- 19:51:22.963 INFO [743]: COREGRADE is starting... -- 19:51:22.963 INFO [743]: Version from config: 1.0 -- 19:51:22.963 DEBUG [743]: Connecting to database... -- 19:51:22.964 DEBUG [743]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:51:22.964 SQL [743]: pgsql_db_connect() -- 19:51:22.968 DEBUG [743]: Database connection successful -- 19:51:22.968 INFO [743]: _SERVER found -- 19:51:22.968 INFO [743]: REMOTE_ADDR = 10.0.0.15 -- 19:51:22.968 INFO [743]: SERVER_NAME = oameye.works.coregrade.com -- 19:51:22.968 INFO [743]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 19:51:22.968 INFO [743]: QUERY_STRING = /member/viewRoom -- 19:51:22.968 INFO [743]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:51:22.999 INFO [743]: COREGRADE is stopping... -- 19:51:22.999 DEBUG [743]: Closing database connection -- 19:51:22.999 SQL [743]: pgsql_close() -- 19:51:28.250 INFO [741]: COREGRADE is starting... -- 19:51:28.250 INFO [741]: Version from config: 1.0 -- 19:51:28.250 DEBUG [741]: Connecting to database... -- 19:51:28.250 DEBUG [741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:51:28.250 SQL [741]: pgsql_db_connect() -- 19:51:28.254 DEBUG [741]: Database connection successful -- 19:51:28.254 INFO [741]: _SERVER found -- 19:51:28.254 INFO [741]: REMOTE_ADDR = 10.0.0.15 -- 19:51:28.254 INFO [741]: SERVER_NAME = oameye.works.coregrade.com -- 19:51:28.254 INFO [741]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 19:51:28.254 INFO [741]: QUERY_STRING = /member/addNewSubscriber -- 19:51:28.254 INFO [741]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:51:28.289 INFO [741]: COREGRADE is stopping... -- 19:51:28.289 DEBUG [741]: Closing database connection -- 19:51:28.289 SQL [741]: pgsql_close() -- 19:51:35.364 INFO [5948]: COREGRADE is starting... -- 19:51:35.364 INFO [5948]: Version from config: 1.0 -- 19:51:35.364 DEBUG [5948]: Connecting to database... -- 19:51:35.364 DEBUG [5948]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:51:35.364 SQL [5948]: pgsql_db_connect() -- 19:51:35.368 DEBUG [5948]: Database connection successful -- 19:51:35.368 INFO [5948]: _SERVER found -- 19:51:35.368 INFO [5948]: REMOTE_ADDR = 10.0.0.15 -- 19:51:35.368 INFO [5948]: SERVER_NAME = oameye.works.coregrade.com -- 19:51:35.368 INFO [5948]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 19:51:35.368 INFO [5948]: QUERY_STRING = /member/addNewSubscriber -- 19:51:35.368 INFO [5948]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:51:35.399 INFO [5948]: COREGRADE is stopping... -- 19:51:35.399 DEBUG [5948]: Closing database connection -- 19:51:35.399 SQL [5948]: pgsql_close() -- 19:51:42.938 INFO [32322]: COREGRADE is starting... -- 19:51:42.938 INFO [32322]: Version from config: 1.0 -- 19:51:42.938 DEBUG [32322]: Connecting to database... -- 19:51:42.938 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:51:42.938 SQL [32322]: pgsql_db_connect() -- 19:51:42.942 DEBUG [32322]: Database connection successful -- 19:51:42.942 INFO [32322]: _SERVER found -- 19:51:42.942 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 19:51:42.942 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 19:51:42.942 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 19:51:42.942 INFO [32322]: QUERY_STRING = /member/addNewSubscriber -- 19:51:42.942 INFO [32322]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:51:42.974 INFO [32322]: COREGRADE is stopping... -- 19:51:42.974 DEBUG [32322]: Closing database connection -- 19:51:42.974 SQL [32322]: pgsql_close() -- 19:52:32.940 INFO [32323]: COREGRADE is starting... -- 19:52:32.940 INFO [32323]: Version from config: 1.0 -- 19:52:32.940 DEBUG [32323]: Connecting to database... -- 19:52:32.940 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:52:32.940 SQL [32323]: pgsql_db_connect() -- 19:52:32.944 DEBUG [32323]: Database connection successful -- 19:52:32.944 INFO [32323]: _SERVER found -- 19:52:32.944 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 19:52:32.944 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 19:52:32.944 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 19:52:32.944 INFO [32323]: QUERY_STRING = /member/viewRoom -- 19:52:32.944 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:52:32.976 INFO [32323]: COREGRADE is stopping... -- 19:52:32.976 DEBUG [32323]: Closing database connection -- 19:52:32.976 SQL [32323]: pgsql_close() -- 19:52:36.670 INFO [32323]: COREGRADE is starting... -- 19:52:36.670 INFO [32323]: Version from config: 1.0 -- 19:52:36.670 DEBUG [32323]: Connecting to database... -- 19:52:36.670 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:52:36.670 SQL [32323]: pgsql_db_connect() -- 19:52:36.675 DEBUG [32323]: Database connection successful -- 19:52:36.675 INFO [32323]: _SERVER found -- 19:52:36.675 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 19:52:36.675 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 19:52:36.675 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 19:52:36.675 INFO [32323]: QUERY_STRING = /member/addNewSubscriber -- 19:52:36.675 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:52:36.705 INFO [32323]: COREGRADE is stopping... -- 19:52:36.705 DEBUG [32323]: Closing database connection -- 19:52:36.705 SQL [32323]: pgsql_close() -- 19:52:43.239 INFO [32325]: COREGRADE is starting... -- 19:52:43.240 INFO [32325]: Version from config: 1.0 -- 19:52:43.240 DEBUG [32325]: Connecting to database... -- 19:52:43.240 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:52:43.240 SQL [32325]: pgsql_db_connect() -- 19:52:43.244 DEBUG [32325]: Database connection successful -- 19:52:43.244 INFO [32325]: _SERVER found -- 19:52:43.244 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 19:52:43.244 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 19:52:43.244 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 19:52:43.244 INFO [32325]: QUERY_STRING = /member/addNewSubscriber -- 19:52:43.244 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:52:43.276 INFO [32325]: COREGRADE is stopping... -- 19:52:43.276 DEBUG [32325]: Closing database connection -- 19:52:43.276 SQL [32325]: pgsql_close() -- 19:52:47.243 INFO [32325]: COREGRADE is starting... -- 19:52:47.243 INFO [32325]: Version from config: 1.0 -- 19:52:47.243 DEBUG [32325]: Connecting to database... -- 19:52:47.243 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:52:47.243 SQL [32325]: pgsql_db_connect() -- 19:52:47.247 DEBUG [32325]: Database connection successful -- 19:52:47.247 INFO [32325]: _SERVER found -- 19:52:47.247 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 19:52:47.247 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 19:52:47.247 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 19:52:47.247 INFO [32325]: QUERY_STRING = /member/addNewSubscriber -- 19:52:47.247 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:52:47.278 INFO [32325]: COREGRADE is stopping... -- 19:52:47.278 DEBUG [32325]: Closing database connection -- 19:52:47.278 SQL [32325]: pgsql_close() -- 19:52:53.164 INFO [32324]: COREGRADE is starting... -- 19:52:53.165 INFO [32324]: Version from config: 1.0 -- 19:52:53.165 DEBUG [32324]: Connecting to database... -- 19:52:53.165 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:52:53.165 SQL [32324]: pgsql_db_connect() -- 19:52:53.169 DEBUG [32324]: Database connection successful -- 19:52:53.169 INFO [32324]: _SERVER found -- 19:52:53.169 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 19:52:53.169 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 19:52:53.169 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 19:52:53.169 INFO [32324]: QUERY_STRING = /member/addNewSubscriber -- 19:52:53.169 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:52:53.200 INFO [32324]: COREGRADE is stopping... -- 19:52:53.201 DEBUG [32324]: Closing database connection -- 19:52:53.201 SQL [32324]: pgsql_close() -- 19:52:59.121 INFO [32562]: COREGRADE is starting... -- 19:52:59.122 INFO [32562]: Version from config: 1.0 -- 19:52:59.122 DEBUG [32562]: Connecting to database... -- 19:52:59.122 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:52:59.122 SQL [32562]: pgsql_db_connect() -- 19:52:59.126 DEBUG [32562]: Database connection successful -- 19:52:59.126 INFO [32562]: _SERVER found -- 19:52:59.126 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 19:52:59.126 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 19:52:59.126 INFO [32562]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 19:52:59.126 INFO [32562]: QUERY_STRING = /member/addNewSubscriber -- 19:52:59.126 INFO [32562]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:52:59.158 INFO [32562]: COREGRADE is stopping... -- 19:52:59.158 DEBUG [32562]: Closing database connection -- 19:52:59.158 SQL [32562]: pgsql_close() -- 19:53:10.481 INFO [742]: COREGRADE is starting... -- 19:53:10.481 INFO [742]: Version from config: 1.0 -- 19:53:10.481 DEBUG [742]: Connecting to database... -- 19:53:10.481 DEBUG [742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:53:10.481 SQL [742]: pgsql_db_connect() -- 19:53:10.485 DEBUG [742]: Database connection successful -- 19:53:10.485 INFO [742]: _SERVER found -- 19:53:10.485 INFO [742]: REMOTE_ADDR = 10.0.0.15 -- 19:53:10.485 INFO [742]: SERVER_NAME = oameye.works.coregrade.com -- 19:53:10.485 INFO [742]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 19:53:10.485 INFO [742]: QUERY_STRING = /member/addNewSubscriber -- 19:53:10.485 INFO [742]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:53:10.517 INFO [742]: COREGRADE is stopping... -- 19:53:10.517 DEBUG [742]: Closing database connection -- 19:53:10.517 SQL [742]: pgsql_close() -- 19:54:39.229 INFO [32321]: COREGRADE is starting... -- 19:54:39.229 INFO [32321]: Version from config: 1.0 -- 19:54:39.229 DEBUG [32321]: Connecting to database... -- 19:54:39.229 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:54:39.229 SQL [32321]: pgsql_db_connect() -- 19:54:39.234 DEBUG [32321]: Database connection successful -- 19:54:39.234 INFO [32321]: _SERVER found -- 19:54:39.234 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 19:54:39.234 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 19:54:39.234 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 19:54:39.234 INFO [32321]: QUERY_STRING = /member/viewRoom -- 19:54:39.234 INFO [32321]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:54:39.266 INFO [32321]: COREGRADE is stopping... -- 19:54:39.266 DEBUG [32321]: Closing database connection -- 19:54:39.266 SQL [32321]: pgsql_close() -- 19:54:42.141 INFO [32321]: COREGRADE is starting... -- 19:54:42.142 INFO [32321]: Version from config: 1.0 -- 19:54:42.142 DEBUG [32321]: Connecting to database... -- 19:54:42.142 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:54:42.142 SQL [32321]: pgsql_db_connect() -- 19:54:42.146 DEBUG [32321]: Database connection successful -- 19:54:42.146 INFO [32321]: _SERVER found -- 19:54:42.146 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 19:54:42.146 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 19:54:42.146 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 19:54:42.146 INFO [32321]: QUERY_STRING = /member/addNewSubscriber -- 19:54:42.146 INFO [32321]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:54:42.177 INFO [32321]: COREGRADE is stopping... -- 19:54:42.177 DEBUG [32321]: Closing database connection -- 19:54:42.177 SQL [32321]: pgsql_close() -- 19:54:50.736 INFO [743]: COREGRADE is starting... -- 19:54:50.737 INFO [743]: Version from config: 1.0 -- 19:54:50.737 DEBUG [743]: Connecting to database... -- 19:54:50.737 DEBUG [743]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:54:50.737 SQL [743]: pgsql_db_connect() -- 19:54:50.741 DEBUG [743]: Database connection successful -- 19:54:50.741 INFO [743]: _SERVER found -- 19:54:50.741 INFO [743]: REMOTE_ADDR = 10.0.0.15 -- 19:54:50.741 INFO [743]: SERVER_NAME = oameye.works.coregrade.com -- 19:54:50.741 INFO [743]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 19:54:50.741 INFO [743]: QUERY_STRING = /member/addNewSubscriber -- 19:54:50.741 INFO [743]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:54:50.773 INFO [743]: COREGRADE is stopping... -- 19:54:50.773 DEBUG [743]: Closing database connection -- 19:54:50.773 SQL [743]: pgsql_close() -- 19:55:26.912 INFO [741]: COREGRADE is starting... -- 19:55:26.912 INFO [741]: Version from config: 1.0 -- 19:55:26.912 DEBUG [741]: Connecting to database... -- 19:55:26.912 DEBUG [741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:55:26.912 SQL [741]: pgsql_db_connect() -- 19:55:26.916 DEBUG [741]: Database connection successful -- 19:55:26.916 INFO [741]: _SERVER found -- 19:55:26.916 INFO [741]: REMOTE_ADDR = 10.0.0.15 -- 19:55:26.916 INFO [741]: SERVER_NAME = oameye.works.coregrade.com -- 19:55:26.916 INFO [741]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 19:55:26.916 INFO [741]: QUERY_STRING = /member/addNewSubscriber -- 19:55:26.916 INFO [741]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:55:26.950 INFO [741]: COREGRADE is stopping... -- 19:55:26.950 DEBUG [741]: Closing database connection -- 19:55:26.950 SQL [741]: pgsql_close() -- 19:56:26.239 INFO [5948]: COREGRADE is starting... -- 19:56:26.239 INFO [5948]: Version from config: 1.0 -- 19:56:26.239 DEBUG [5948]: Connecting to database... -- 19:56:26.239 DEBUG [5948]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:26.239 SQL [5948]: pgsql_db_connect() -- 19:56:26.244 DEBUG [5948]: Database connection successful -- 19:56:26.244 INFO [5948]: _SERVER found -- 19:56:26.244 INFO [5948]: REMOTE_ADDR = 10.0.0.15 -- 19:56:26.244 INFO [5948]: SERVER_NAME = oameye.works.coregrade.com -- 19:56:26.244 INFO [5948]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 19:56:26.244 INFO [5948]: QUERY_STRING = /member/viewRoom -- 19:56:26.244 INFO [5948]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:56:26.278 INFO [5948]: COREGRADE is stopping... -- 19:56:26.278 DEBUG [5948]: Closing database connection -- 19:56:26.278 SQL [5948]: pgsql_close() -- 19:57:18.422 INFO [32322]: COREGRADE is starting... -- 19:57:18.422 INFO [32322]: Version from config: 1.0 -- 19:57:18.422 DEBUG [32322]: Connecting to database... -- 19:57:18.422 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:57:18.422 SQL [32322]: pgsql_db_connect() -- 19:57:18.427 DEBUG [32322]: Database connection successful -- 19:57:18.427 INFO [32322]: _SERVER found -- 19:57:18.427 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 19:57:18.427 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 19:57:18.427 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 19:57:18.427 INFO [32322]: QUERY_STRING = /member/viewRoom -- 19:57:18.427 INFO [32322]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:57:18.460 INFO [32322]: COREGRADE is stopping... -- 19:57:18.460 DEBUG [32322]: Closing database connection -- 19:57:18.460 SQL [32322]: pgsql_close() -- 19:57:23.230 INFO [32322]: COREGRADE is starting... -- 19:57:23.231 INFO [32322]: Version from config: 1.0 -- 19:57:23.231 DEBUG [32322]: Connecting to database... -- 19:57:23.231 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:57:23.231 SQL [32322]: pgsql_db_connect() -- 19:57:23.236 DEBUG [32322]: Database connection successful -- 19:57:23.236 INFO [32322]: _SERVER found -- 19:57:23.236 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 19:57:23.236 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 19:57:23.236 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 19:57:23.236 INFO [32322]: QUERY_STRING = /member/addNewSubscriber -- 19:57:23.236 INFO [32322]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 19:57:23.268 INFO [32322]: COREGRADE is stopping... -- 19:57:23.268 DEBUG [32322]: Closing database connection -- 19:57:23.268 SQL [32322]: pgsql_close() -- 20:31:17.939 INFO [32323]: COREGRADE is starting... -- 20:31:17.940 INFO [32323]: Version from config: 1.0 -- 20:31:17.940 DEBUG [32323]: Connecting to database... -- 20:31:17.940 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:31:17.940 SQL [32323]: pgsql_db_connect() -- 20:31:17.946 DEBUG [32323]: Database connection successful -- 20:31:17.946 INFO [32323]: _SERVER found -- 20:31:17.946 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 20:31:17.946 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 20:31:17.946 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 20:31:17.946 INFO [32323]: QUERY_STRING = /member/addNewSubscriber -- 20:31:17.946 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:31:17.986 INFO [32323]: COREGRADE is stopping... -- 20:31:17.986 DEBUG [32323]: Closing database connection -- 20:31:17.986 SQL [32323]: pgsql_close() -- 20:31:19.176 INFO [32323]: COREGRADE is starting... -- 20:31:19.176 INFO [32323]: Version from config: 1.0 -- 20:31:19.176 DEBUG [32323]: Connecting to database... -- 20:31:19.176 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:31:19.177 SQL [32323]: pgsql_db_connect() -- 20:31:19.181 DEBUG [32323]: Database connection successful -- 20:31:19.181 INFO [32323]: _SERVER found -- 20:31:19.181 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 20:31:19.181 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 20:31:19.181 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 20:31:19.181 INFO [32323]: QUERY_STRING = /member/addNewSubscriber -- 20:31:19.181 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:31:19.212 INFO [32323]: COREGRADE is stopping... -- 20:31:19.212 DEBUG [32323]: Closing database connection -- 20:31:19.212 SQL [32323]: pgsql_close() -- 20:31:20.413 INFO [32323]: COREGRADE is starting... -- 20:31:20.414 INFO [32323]: Version from config: 1.0 -- 20:31:20.414 DEBUG [32323]: Connecting to database... -- 20:31:20.414 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:31:20.414 SQL [32323]: pgsql_db_connect() -- 20:31:20.418 DEBUG [32323]: Database connection successful -- 20:31:20.418 INFO [32323]: _SERVER found -- 20:31:20.418 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 20:31:20.418 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 20:31:20.418 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 20:31:20.418 INFO [32323]: QUERY_STRING = /member/addNewSubscriber -- 20:31:20.418 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:31:20.449 INFO [32323]: COREGRADE is stopping... -- 20:31:20.449 DEBUG [32323]: Closing database connection -- 20:31:20.449 SQL [32323]: pgsql_close() -- 20:31:21.105 INFO [32323]: COREGRADE is starting... -- 20:31:21.105 INFO [32323]: Version from config: 1.0 -- 20:31:21.105 DEBUG [32323]: Connecting to database... -- 20:31:21.105 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:31:21.105 SQL [32323]: pgsql_db_connect() -- 20:31:21.109 DEBUG [32323]: Database connection successful -- 20:31:21.109 INFO [32323]: _SERVER found -- 20:31:21.109 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 20:31:21.109 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 20:31:21.109 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 20:31:21.110 INFO [32323]: QUERY_STRING = /member/addNewSubscriber -- 20:31:21.110 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:31:21.140 INFO [32323]: COREGRADE is stopping... -- 20:31:21.140 DEBUG [32323]: Closing database connection -- 20:31:21.140 SQL [32323]: pgsql_close() -- 20:31:27.795 INFO [32325]: COREGRADE is starting... -- 20:31:27.795 INFO [32325]: Version from config: 1.0 -- 20:31:27.795 DEBUG [32325]: Connecting to database... -- 20:31:27.795 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:31:27.795 SQL [32325]: pgsql_db_connect() -- 20:31:27.799 DEBUG [32325]: Database connection successful -- 20:31:27.799 INFO [32325]: _SERVER found -- 20:31:27.799 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 20:31:27.799 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 20:31:27.799 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 20:31:27.799 INFO [32325]: QUERY_STRING = /member/addNewSubscriber -- 20:31:27.799 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:31:27.832 INFO [32325]: COREGRADE is stopping... -- 20:31:27.832 DEBUG [32325]: Closing database connection -- 20:31:27.832 SQL [32325]: pgsql_close() -- 20:31:28.696 INFO [32325]: COREGRADE is starting... -- 20:31:28.696 INFO [32325]: Version from config: 1.0 -- 20:31:28.696 DEBUG [32325]: Connecting to database... -- 20:31:28.696 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:31:28.696 SQL [32325]: pgsql_db_connect() -- 20:31:28.700 DEBUG [32325]: Database connection successful -- 20:31:28.700 INFO [32325]: _SERVER found -- 20:31:28.700 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 20:31:28.700 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 20:31:28.700 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 20:31:28.700 INFO [32325]: QUERY_STRING = /member/addNewSubscriber -- 20:31:28.700 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:31:28.731 INFO [32325]: COREGRADE is stopping... -- 20:31:28.731 DEBUG [32325]: Closing database connection -- 20:31:28.731 SQL [32325]: pgsql_close() -- 20:32:17.660 INFO [32324]: COREGRADE is starting... -- 20:32:17.661 INFO [32324]: Version from config: 1.0 -- 20:32:17.661 DEBUG [32324]: Connecting to database... -- 20:32:17.661 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:32:17.661 SQL [32324]: pgsql_db_connect() -- 20:32:17.665 DEBUG [32324]: Database connection successful -- 20:32:17.665 INFO [32324]: _SERVER found -- 20:32:17.665 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 20:32:17.665 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 20:32:17.665 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 20:32:17.665 INFO [32324]: QUERY_STRING = /member/addNewSubscriber -- 20:32:17.665 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:32:17.698 INFO [32324]: COREGRADE is stopping... -- 20:32:17.698 DEBUG [32324]: Closing database connection -- 20:32:17.698 SQL [32324]: pgsql_close() -- 20:32:18.346 INFO [32324]: COREGRADE is starting... -- 20:32:18.347 INFO [32324]: Version from config: 1.0 -- 20:32:18.347 DEBUG [32324]: Connecting to database... -- 20:32:18.347 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:32:18.347 SQL [32324]: pgsql_db_connect() -- 20:32:18.351 DEBUG [32324]: Database connection successful -- 20:32:18.351 INFO [32324]: _SERVER found -- 20:32:18.351 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 20:32:18.351 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 20:32:18.351 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 20:32:18.351 INFO [32324]: QUERY_STRING = /member/addNewSubscriber -- 20:32:18.351 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:32:18.382 INFO [32324]: COREGRADE is stopping... -- 20:32:18.382 DEBUG [32324]: Closing database connection -- 20:32:18.382 SQL [32324]: pgsql_close() -- 20:32:18.930 INFO [32324]: COREGRADE is starting... -- 20:32:18.930 INFO [32324]: Version from config: 1.0 -- 20:32:18.930 DEBUG [32324]: Connecting to database... -- 20:32:18.930 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:32:18.930 SQL [32324]: pgsql_db_connect() -- 20:32:18.934 DEBUG [32324]: Database connection successful -- 20:32:18.934 INFO [32324]: _SERVER found -- 20:32:18.934 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 20:32:18.934 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 20:32:18.934 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 20:32:18.934 INFO [32324]: QUERY_STRING = /member/addNewSubscriber -- 20:32:18.934 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:32:18.965 INFO [32324]: COREGRADE is stopping... -- 20:32:18.965 DEBUG [32324]: Closing database connection -- 20:32:18.965 SQL [32324]: pgsql_close() -- 20:32:19.478 INFO [32324]: COREGRADE is starting... -- 20:32:19.478 INFO [32324]: Version from config: 1.0 -- 20:32:19.478 DEBUG [32324]: Connecting to database... -- 20:32:19.478 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:32:19.478 SQL [32324]: pgsql_db_connect() -- 20:32:19.482 DEBUG [32324]: Database connection successful -- 20:32:19.482 INFO [32324]: _SERVER found -- 20:32:19.482 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 20:32:19.482 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 20:32:19.482 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 20:32:19.482 INFO [32324]: QUERY_STRING = /member/addNewSubscriber -- 20:32:19.482 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:32:19.513 INFO [32324]: COREGRADE is stopping... -- 20:32:19.513 DEBUG [32324]: Closing database connection -- 20:32:19.513 SQL [32324]: pgsql_close() -- 20:32:19.964 INFO [32324]: COREGRADE is starting... -- 20:32:19.964 INFO [32324]: Version from config: 1.0 -- 20:32:19.964 DEBUG [32324]: Connecting to database... -- 20:32:19.964 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:32:19.964 SQL [32324]: pgsql_db_connect() -- 20:32:19.968 DEBUG [32324]: Database connection successful -- 20:32:19.968 INFO [32324]: _SERVER found -- 20:32:19.968 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 20:32:19.968 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 20:32:19.968 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 20:32:19.968 INFO [32324]: QUERY_STRING = /member/addNewSubscriber -- 20:32:19.968 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:32:19.999 INFO [32324]: COREGRADE is stopping... -- 20:32:19.999 DEBUG [32324]: Closing database connection -- 20:32:19.999 SQL [32324]: pgsql_close() -- 20:32:47.778 INFO [32562]: COREGRADE is starting... -- 20:32:47.779 INFO [32562]: Version from config: 1.0 -- 20:32:47.779 DEBUG [32562]: Connecting to database... -- 20:32:47.779 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:32:47.779 SQL [32562]: pgsql_db_connect() -- 20:32:47.783 DEBUG [32562]: Database connection successful -- 20:32:47.783 INFO [32562]: _SERVER found -- 20:32:47.783 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 20:32:47.783 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 20:32:47.783 INFO [32562]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 20:32:47.783 INFO [32562]: QUERY_STRING = /member/addNewSubscriber -- 20:32:47.783 INFO [32562]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:32:47.815 INFO [32562]: COREGRADE is stopping... -- 20:32:47.815 DEBUG [32562]: Closing database connection -- 20:32:47.815 SQL [32562]: pgsql_close() -- 20:32:48.726 INFO [32562]: COREGRADE is starting... -- 20:32:48.726 INFO [32562]: Version from config: 1.0 -- 20:32:48.726 DEBUG [32562]: Connecting to database... -- 20:32:48.726 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:32:48.726 SQL [32562]: pgsql_db_connect() -- 20:32:48.730 DEBUG [32562]: Database connection successful -- 20:32:48.730 INFO [32562]: _SERVER found -- 20:32:48.730 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 20:32:48.730 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 20:32:48.730 INFO [32562]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 20:32:48.730 INFO [32562]: QUERY_STRING = /member/addNewSubscriber -- 20:32:48.730 INFO [32562]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:32:48.761 INFO [32562]: COREGRADE is stopping... -- 20:32:48.761 DEBUG [32562]: Closing database connection -- 20:32:48.761 SQL [32562]: pgsql_close() -- 20:32:49.407 INFO [32562]: COREGRADE is starting... -- 20:32:49.407 INFO [32562]: Version from config: 1.0 -- 20:32:49.407 DEBUG [32562]: Connecting to database... -- 20:32:49.408 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:32:49.408 SQL [32562]: pgsql_db_connect() -- 20:32:49.412 DEBUG [32562]: Database connection successful -- 20:32:49.412 INFO [32562]: _SERVER found -- 20:32:49.412 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 20:32:49.412 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 20:32:49.412 INFO [32562]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 20:32:49.412 INFO [32562]: QUERY_STRING = /member/addNewSubscriber -- 20:32:49.412 INFO [32562]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:32:49.443 INFO [32562]: COREGRADE is stopping... -- 20:32:49.443 DEBUG [32562]: Closing database connection -- 20:32:49.443 SQL [32562]: pgsql_close() -- 20:32:49.974 INFO [32562]: COREGRADE is starting... -- 20:32:49.974 INFO [32562]: Version from config: 1.0 -- 20:32:49.974 DEBUG [32562]: Connecting to database... -- 20:32:49.974 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:32:49.974 SQL [32562]: pgsql_db_connect() -- 20:32:49.979 DEBUG [32562]: Database connection successful -- 20:32:49.979 INFO [32562]: _SERVER found -- 20:32:49.979 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 20:32:49.979 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 20:32:49.979 INFO [32562]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 20:32:49.979 INFO [32562]: QUERY_STRING = /member/addNewSubscriber -- 20:32:49.979 INFO [32562]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:32:50.010 INFO [32562]: COREGRADE is stopping... -- 20:32:50.010 DEBUG [32562]: Closing database connection -- 20:32:50.010 SQL [32562]: pgsql_close() -- 20:32:50.497 INFO [32562]: COREGRADE is starting... -- 20:32:50.498 INFO [32562]: Version from config: 1.0 -- 20:32:50.498 DEBUG [32562]: Connecting to database... -- 20:32:50.498 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:32:50.498 SQL [32562]: pgsql_db_connect() -- 20:32:50.502 DEBUG [32562]: Database connection successful -- 20:32:50.502 INFO [32562]: _SERVER found -- 20:32:50.502 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 20:32:50.502 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 20:32:50.502 INFO [32562]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 20:32:50.502 INFO [32562]: QUERY_STRING = /member/addNewSubscriber -- 20:32:50.502 INFO [32562]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:32:50.533 INFO [32562]: COREGRADE is stopping... -- 20:32:50.533 DEBUG [32562]: Closing database connection -- 20:32:50.533 SQL [32562]: pgsql_close() -- 20:32:51.034 INFO [32562]: COREGRADE is starting... -- 20:32:51.034 INFO [32562]: Version from config: 1.0 -- 20:32:51.034 DEBUG [32562]: Connecting to database... -- 20:32:51.034 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:32:51.034 SQL [32562]: pgsql_db_connect() -- 20:32:51.038 DEBUG [32562]: Database connection successful -- 20:32:51.038 INFO [32562]: _SERVER found -- 20:32:51.038 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 20:32:51.038 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 20:32:51.038 INFO [32562]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 20:32:51.038 INFO [32562]: QUERY_STRING = /member/addNewSubscriber -- 20:32:51.038 INFO [32562]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:32:51.069 INFO [32562]: COREGRADE is stopping... -- 20:32:51.069 DEBUG [32562]: Closing database connection -- 20:32:51.069 SQL [32562]: pgsql_close() -- 20:32:51.533 INFO [32562]: COREGRADE is starting... -- 20:32:51.533 INFO [32562]: Version from config: 1.0 -- 20:32:51.533 DEBUG [32562]: Connecting to database... -- 20:32:51.533 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:32:51.533 SQL [32562]: pgsql_db_connect() -- 20:32:51.537 DEBUG [32562]: Database connection successful -- 20:32:51.537 INFO [32562]: _SERVER found -- 20:32:51.537 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 20:32:51.537 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 20:32:51.537 INFO [32562]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 20:32:51.537 INFO [32562]: QUERY_STRING = /member/addNewSubscriber -- 20:32:51.537 INFO [32562]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:32:51.569 INFO [32562]: COREGRADE is stopping... -- 20:32:51.569 DEBUG [32562]: Closing database connection -- 20:32:51.569 SQL [32562]: pgsql_close() -- 20:32:52.024 INFO [32562]: COREGRADE is starting... -- 20:32:52.024 INFO [32562]: Version from config: 1.0 -- 20:32:52.024 DEBUG [32562]: Connecting to database... -- 20:32:52.024 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:32:52.024 SQL [32562]: pgsql_db_connect() -- 20:32:52.028 DEBUG [32562]: Database connection successful -- 20:32:52.028 INFO [32562]: _SERVER found -- 20:32:52.028 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 20:32:52.028 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 20:32:52.028 INFO [32562]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 20:32:52.028 INFO [32562]: QUERY_STRING = /member/addNewSubscriber -- 20:32:52.028 INFO [32562]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:32:52.059 INFO [32562]: COREGRADE is stopping... -- 20:32:52.059 DEBUG [32562]: Closing database connection -- 20:32:52.059 SQL [32562]: pgsql_close() -- 20:32:52.443 INFO [32562]: COREGRADE is starting... -- 20:32:52.443 INFO [32562]: Version from config: 1.0 -- 20:32:52.443 DEBUG [32562]: Connecting to database... -- 20:32:52.443 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:32:52.443 SQL [32562]: pgsql_db_connect() -- 20:32:52.447 DEBUG [32562]: Database connection successful -- 20:32:52.447 INFO [32562]: _SERVER found -- 20:32:52.447 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 20:32:52.447 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 20:32:52.447 INFO [32562]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 20:32:52.447 INFO [32562]: QUERY_STRING = /member/addNewSubscriber -- 20:32:52.447 INFO [32562]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:32:52.479 INFO [32562]: COREGRADE is stopping... -- 20:32:52.479 DEBUG [32562]: Closing database connection -- 20:32:52.479 SQL [32562]: pgsql_close() -- 20:32:52.756 INFO [32562]: COREGRADE is starting... -- 20:32:52.756 INFO [32562]: Version from config: 1.0 -- 20:32:52.756 DEBUG [32562]: Connecting to database... -- 20:32:52.756 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:32:52.756 SQL [32562]: pgsql_db_connect() -- 20:32:52.761 DEBUG [32562]: Database connection successful -- 20:32:52.761 INFO [32562]: _SERVER found -- 20:32:52.761 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 20:32:52.761 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 20:32:52.761 INFO [32562]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 20:32:52.761 INFO [32562]: QUERY_STRING = /member/addNewSubscriber -- 20:32:52.761 INFO [32562]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:32:52.792 INFO [32562]: COREGRADE is stopping... -- 20:32:52.792 DEBUG [32562]: Closing database connection -- 20:32:52.792 SQL [32562]: pgsql_close() -- 20:32:53.736 INFO [32562]: COREGRADE is starting... -- 20:32:53.737 INFO [32562]: Version from config: 1.0 -- 20:32:53.737 DEBUG [32562]: Connecting to database... -- 20:32:53.737 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:32:53.737 SQL [32562]: pgsql_db_connect() -- 20:32:53.741 DEBUG [32562]: Database connection successful -- 20:32:53.741 INFO [32562]: _SERVER found -- 20:32:53.741 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 20:32:53.741 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 20:32:53.741 INFO [32562]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 20:32:53.741 INFO [32562]: QUERY_STRING = /member/addNewSubscriber -- 20:32:53.741 INFO [32562]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:32:53.772 INFO [32562]: COREGRADE is stopping... -- 20:32:53.772 DEBUG [32562]: Closing database connection -- 20:32:53.772 SQL [32562]: pgsql_close() -- 20:32:57.197 INFO [32562]: COREGRADE is starting... -- 20:32:57.198 INFO [32562]: Version from config: 1.0 -- 20:32:57.198 DEBUG [32562]: Connecting to database... -- 20:32:57.198 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:32:57.198 SQL [32562]: pgsql_db_connect() -- 20:32:57.202 DEBUG [32562]: Database connection successful -- 20:32:57.202 INFO [32562]: _SERVER found -- 20:32:57.202 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 20:32:57.202 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 20:32:57.202 INFO [32562]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=s8spk2mo7n0d5aire0urdnpj6ko0blj1 -- 20:32:57.202 INFO [32562]: QUERY_STRING = /member/classroom -- 20:32:57.202 INFO [32562]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:32:57.245 INFO [32562]: COREGRADE is stopping... -- 20:32:57.245 DEBUG [32562]: Closing database connection -- 20:32:57.245 SQL [32562]: pgsql_close() -- 20:32:57.463 INFO [32562]: COREGRADE is starting... -- 20:32:57.463 INFO [32562]: Version from config: 1.0 -- 20:32:57.463 DEBUG [32562]: Connecting to database... -- 20:32:57.463 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:32:57.463 SQL [32562]: pgsql_db_connect() -- 20:32:57.467 DEBUG [32562]: Database connection successful -- 20:32:57.467 INFO [32562]: _SERVER found -- 20:32:57.467 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 20:32:57.467 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 20:32:57.467 INFO [32562]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 20:32:57.467 INFO [32562]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 20:32:57.467 INFO [32562]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:32:57.479 INFO [32562]: COREGRADE is stopping... -- 20:32:57.479 DEBUG [32562]: Closing database connection -- 20:32:57.479 SQL [32562]: pgsql_close() -- 20:32:58.802 INFO [32562]: COREGRADE is starting... -- 20:32:58.802 INFO [32562]: Version from config: 1.0 -- 20:32:58.802 DEBUG [32562]: Connecting to database... -- 20:32:58.802 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:32:58.802 SQL [32562]: pgsql_db_connect() -- 20:32:58.807 DEBUG [32562]: Database connection successful -- 20:32:58.807 INFO [32562]: _SERVER found -- 20:32:58.807 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 20:32:58.807 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 20:32:58.807 INFO [32562]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 20:32:58.807 INFO [32562]: QUERY_STRING = /member/viewRoom -- 20:32:58.807 INFO [32562]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:32:58.838 INFO [32562]: COREGRADE is stopping... -- 20:32:58.838 DEBUG [32562]: Closing database connection -- 20:32:58.838 SQL [32562]: pgsql_close() -- 20:33:01.197 INFO [32562]: COREGRADE is starting... -- 20:33:01.197 INFO [32562]: Version from config: 1.0 -- 20:33:01.197 DEBUG [32562]: Connecting to database... -- 20:33:01.197 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:33:01.197 SQL [32562]: pgsql_db_connect() -- 20:33:01.201 DEBUG [32562]: Database connection successful -- 20:33:01.201 INFO [32562]: _SERVER found -- 20:33:01.201 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 20:33:01.201 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 20:33:01.201 INFO [32562]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 20:33:01.201 INFO [32562]: QUERY_STRING = /member/addNewSubscriber -- 20:33:01.201 INFO [32562]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:33:01.232 INFO [32562]: COREGRADE is stopping... -- 20:33:01.232 DEBUG [32562]: Closing database connection -- 20:33:01.232 SQL [32562]: pgsql_close() -- 20:33:05.897 INFO [32562]: COREGRADE is starting... -- 20:33:05.897 INFO [32562]: Version from config: 1.0 -- 20:33:05.897 DEBUG [32562]: Connecting to database... -- 20:33:05.897 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:33:05.897 SQL [32562]: pgsql_db_connect() -- 20:33:05.901 DEBUG [32562]: Database connection successful -- 20:33:05.901 INFO [32562]: _SERVER found -- 20:33:05.901 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 20:33:05.901 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 20:33:05.901 INFO [32562]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 20:33:05.901 INFO [32562]: QUERY_STRING = /member/addNewSubscriber -- 20:33:05.901 INFO [32562]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:33:05.932 INFO [32562]: COREGRADE is stopping... -- 20:33:05.932 DEBUG [32562]: Closing database connection -- 20:33:05.932 SQL [32562]: pgsql_close() -- 20:33:25.035 INFO [742]: COREGRADE is starting... -- 20:33:25.035 INFO [742]: Version from config: 1.0 -- 20:33:25.035 DEBUG [742]: Connecting to database... -- 20:33:25.035 DEBUG [742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:33:25.035 SQL [742]: pgsql_db_connect() -- 20:33:25.039 DEBUG [742]: Database connection successful -- 20:33:25.039 INFO [742]: _SERVER found -- 20:33:25.039 INFO [742]: REMOTE_ADDR = 10.0.0.15 -- 20:33:25.039 INFO [742]: SERVER_NAME = oameye.works.coregrade.com -- 20:33:25.039 INFO [742]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 20:33:25.039 INFO [742]: QUERY_STRING = /member/addNewSubscriber -- 20:33:25.039 INFO [742]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:33:25.071 INFO [742]: COREGRADE is stopping... -- 20:33:25.072 DEBUG [742]: Closing database connection -- 20:33:25.072 SQL [742]: pgsql_close() -- 20:33:25.747 INFO [742]: COREGRADE is starting... -- 20:33:25.747 INFO [742]: Version from config: 1.0 -- 20:33:25.747 DEBUG [742]: Connecting to database... -- 20:33:25.747 DEBUG [742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:33:25.747 SQL [742]: pgsql_db_connect() -- 20:33:25.751 DEBUG [742]: Database connection successful -- 20:33:25.751 INFO [742]: _SERVER found -- 20:33:25.751 INFO [742]: REMOTE_ADDR = 10.0.0.15 -- 20:33:25.751 INFO [742]: SERVER_NAME = oameye.works.coregrade.com -- 20:33:25.751 INFO [742]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 20:33:25.751 INFO [742]: QUERY_STRING = /member/addNewSubscriber -- 20:33:25.751 INFO [742]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:33:25.782 INFO [742]: COREGRADE is stopping... -- 20:33:25.782 DEBUG [742]: Closing database connection -- 20:33:25.782 SQL [742]: pgsql_close() -- 20:33:26.484 INFO [742]: COREGRADE is starting... -- 20:33:26.484 INFO [742]: Version from config: 1.0 -- 20:33:26.484 DEBUG [742]: Connecting to database... -- 20:33:26.485 DEBUG [742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:33:26.485 SQL [742]: pgsql_db_connect() -- 20:33:26.489 DEBUG [742]: Database connection successful -- 20:33:26.489 INFO [742]: _SERVER found -- 20:33:26.489 INFO [742]: REMOTE_ADDR = 10.0.0.15 -- 20:33:26.489 INFO [742]: SERVER_NAME = oameye.works.coregrade.com -- 20:33:26.489 INFO [742]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 20:33:26.489 INFO [742]: QUERY_STRING = /member/addNewSubscriber -- 20:33:26.489 INFO [742]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:33:26.520 INFO [742]: COREGRADE is stopping... -- 20:33:26.520 DEBUG [742]: Closing database connection -- 20:33:26.520 SQL [742]: pgsql_close() -- 20:33:27.149 INFO [742]: COREGRADE is starting... -- 20:33:27.149 INFO [742]: Version from config: 1.0 -- 20:33:27.149 DEBUG [742]: Connecting to database... -- 20:33:27.149 DEBUG [742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:33:27.149 SQL [742]: pgsql_db_connect() -- 20:33:27.153 DEBUG [742]: Database connection successful -- 20:33:27.153 INFO [742]: _SERVER found -- 20:33:27.153 INFO [742]: REMOTE_ADDR = 10.0.0.15 -- 20:33:27.153 INFO [742]: SERVER_NAME = oameye.works.coregrade.com -- 20:33:27.153 INFO [742]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 20:33:27.153 INFO [742]: QUERY_STRING = /member/addNewSubscriber -- 20:33:27.153 INFO [742]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:33:27.184 INFO [742]: COREGRADE is stopping... -- 20:33:27.184 DEBUG [742]: Closing database connection -- 20:33:27.184 SQL [742]: pgsql_close() -- 20:33:27.776 INFO [742]: COREGRADE is starting... -- 20:33:27.777 INFO [742]: Version from config: 1.0 -- 20:33:27.777 DEBUG [742]: Connecting to database... -- 20:33:27.777 DEBUG [742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:33:27.777 SQL [742]: pgsql_db_connect() -- 20:33:27.781 DEBUG [742]: Database connection successful -- 20:33:27.781 INFO [742]: _SERVER found -- 20:33:27.781 INFO [742]: REMOTE_ADDR = 10.0.0.15 -- 20:33:27.781 INFO [742]: SERVER_NAME = oameye.works.coregrade.com -- 20:33:27.781 INFO [742]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 20:33:27.781 INFO [742]: QUERY_STRING = /member/addNewSubscriber -- 20:33:27.781 INFO [742]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:33:27.812 INFO [742]: COREGRADE is stopping... -- 20:33:27.812 DEBUG [742]: Closing database connection -- 20:33:27.812 SQL [742]: pgsql_close() -- 20:33:28.375 INFO [742]: COREGRADE is starting... -- 20:33:28.375 INFO [742]: Version from config: 1.0 -- 20:33:28.375 DEBUG [742]: Connecting to database... -- 20:33:28.375 DEBUG [742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:33:28.375 SQL [742]: pgsql_db_connect() -- 20:33:28.379 DEBUG [742]: Database connection successful -- 20:33:28.379 INFO [742]: _SERVER found -- 20:33:28.379 INFO [742]: REMOTE_ADDR = 10.0.0.15 -- 20:33:28.379 INFO [742]: SERVER_NAME = oameye.works.coregrade.com -- 20:33:28.379 INFO [742]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 20:33:28.379 INFO [742]: QUERY_STRING = /member/addNewSubscriber -- 20:33:28.379 INFO [742]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:33:28.410 INFO [742]: COREGRADE is stopping... -- 20:33:28.410 DEBUG [742]: Closing database connection -- 20:33:28.410 SQL [742]: pgsql_close() -- 20:33:28.917 INFO [742]: COREGRADE is starting... -- 20:33:28.917 INFO [742]: Version from config: 1.0 -- 20:33:28.917 DEBUG [742]: Connecting to database... -- 20:33:28.917 DEBUG [742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:33:28.917 SQL [742]: pgsql_db_connect() -- 20:33:28.922 DEBUG [742]: Database connection successful -- 20:33:28.922 INFO [742]: _SERVER found -- 20:33:28.922 INFO [742]: REMOTE_ADDR = 10.0.0.15 -- 20:33:28.922 INFO [742]: SERVER_NAME = oameye.works.coregrade.com -- 20:33:28.922 INFO [742]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 20:33:28.922 INFO [742]: QUERY_STRING = /member/addNewSubscriber -- 20:33:28.922 INFO [742]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:33:28.952 INFO [742]: COREGRADE is stopping... -- 20:33:28.952 DEBUG [742]: Closing database connection -- 20:33:28.952 SQL [742]: pgsql_close() -- 20:33:29.539 INFO [742]: COREGRADE is starting... -- 20:33:29.540 INFO [742]: Version from config: 1.0 -- 20:33:29.540 DEBUG [742]: Connecting to database... -- 20:33:29.540 DEBUG [742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:33:29.540 SQL [742]: pgsql_db_connect() -- 20:33:29.544 DEBUG [742]: Database connection successful -- 20:33:29.544 INFO [742]: _SERVER found -- 20:33:29.544 INFO [742]: REMOTE_ADDR = 10.0.0.15 -- 20:33:29.544 INFO [742]: SERVER_NAME = oameye.works.coregrade.com -- 20:33:29.544 INFO [742]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 20:33:29.544 INFO [742]: QUERY_STRING = /member/addNewSubscriber -- 20:33:29.544 INFO [742]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:33:29.575 INFO [742]: COREGRADE is stopping... -- 20:33:29.575 DEBUG [742]: Closing database connection -- 20:33:29.575 SQL [742]: pgsql_close() -- 20:33:30.118 INFO [742]: COREGRADE is starting... -- 20:33:30.118 INFO [742]: Version from config: 1.0 -- 20:33:30.118 DEBUG [742]: Connecting to database... -- 20:33:30.118 DEBUG [742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:33:30.118 SQL [742]: pgsql_db_connect() -- 20:33:30.122 DEBUG [742]: Database connection successful -- 20:33:30.122 INFO [742]: _SERVER found -- 20:33:30.122 INFO [742]: REMOTE_ADDR = 10.0.0.15 -- 20:33:30.122 INFO [742]: SERVER_NAME = oameye.works.coregrade.com -- 20:33:30.122 INFO [742]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 20:33:30.122 INFO [742]: QUERY_STRING = /member/addNewSubscriber -- 20:33:30.122 INFO [742]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:33:30.153 INFO [742]: COREGRADE is stopping... -- 20:33:30.153 DEBUG [742]: Closing database connection -- 20:33:30.153 SQL [742]: pgsql_close() -- 20:35:21.382 INFO [32321]: COREGRADE is starting... -- 20:35:21.383 INFO [32321]: Version from config: 1.0 -- 20:35:21.383 DEBUG [32321]: Connecting to database... -- 20:35:21.383 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:35:21.383 SQL [32321]: pgsql_db_connect() -- 20:35:21.387 DEBUG [32321]: Database connection successful -- 20:35:21.387 INFO [32321]: _SERVER found -- 20:35:21.387 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 20:35:21.387 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 20:35:21.387 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 20:35:21.387 INFO [32321]: QUERY_STRING = /member/addNewSubscriber -- 20:35:21.387 INFO [32321]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:35:21.421 INFO [32321]: COREGRADE is stopping... -- 20:35:21.421 DEBUG [32321]: Closing database connection -- 20:35:21.421 SQL [32321]: pgsql_close() -- 20:35:23.172 INFO [32321]: COREGRADE is starting... -- 20:35:23.173 INFO [32321]: Version from config: 1.0 -- 20:35:23.173 DEBUG [32321]: Connecting to database... -- 20:35:23.173 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:35:23.173 SQL [32321]: pgsql_db_connect() -- 20:35:23.177 DEBUG [32321]: Database connection successful -- 20:35:23.177 INFO [32321]: _SERVER found -- 20:35:23.177 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 20:35:23.177 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 20:35:23.177 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 20:35:23.177 INFO [32321]: QUERY_STRING = /member/viewRoom -- 20:35:23.177 INFO [32321]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:35:23.208 INFO [32321]: COREGRADE is stopping... -- 20:35:23.208 DEBUG [32321]: Closing database connection -- 20:35:23.208 SQL [32321]: pgsql_close() -- 20:35:28.099 INFO [32321]: COREGRADE is starting... -- 20:35:28.099 INFO [32321]: Version from config: 1.0 -- 20:35:28.099 DEBUG [32321]: Connecting to database... -- 20:35:28.099 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:35:28.099 SQL [32321]: pgsql_db_connect() -- 20:35:28.103 DEBUG [32321]: Database connection successful -- 20:35:28.103 INFO [32321]: _SERVER found -- 20:35:28.103 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 20:35:28.103 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 20:35:28.103 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 20:35:28.103 INFO [32321]: QUERY_STRING = /member/addNewSubscriber -- 20:35:28.103 INFO [32321]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:35:28.134 INFO [32321]: COREGRADE is stopping... -- 20:35:28.134 DEBUG [32321]: Closing database connection -- 20:35:28.134 SQL [32321]: pgsql_close() -- 20:35:28.740 INFO [32321]: COREGRADE is starting... -- 20:35:28.740 INFO [32321]: Version from config: 1.0 -- 20:35:28.740 DEBUG [32321]: Connecting to database... -- 20:35:28.740 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:35:28.740 SQL [32321]: pgsql_db_connect() -- 20:35:28.744 DEBUG [32321]: Database connection successful -- 20:35:28.744 INFO [32321]: _SERVER found -- 20:35:28.744 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 20:35:28.744 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 20:35:28.744 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 20:35:28.744 INFO [32321]: QUERY_STRING = /member/addNewSubscriber -- 20:35:28.744 INFO [32321]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:35:28.775 INFO [32321]: COREGRADE is stopping... -- 20:35:28.775 DEBUG [32321]: Closing database connection -- 20:35:28.775 SQL [32321]: pgsql_close() -- 20:35:29.855 INFO [32321]: COREGRADE is starting... -- 20:35:29.855 INFO [32321]: Version from config: 1.0 -- 20:35:29.855 DEBUG [32321]: Connecting to database... -- 20:35:29.855 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:35:29.855 SQL [32321]: pgsql_db_connect() -- 20:35:29.859 DEBUG [32321]: Database connection successful -- 20:35:29.859 INFO [32321]: _SERVER found -- 20:35:29.859 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 20:35:29.859 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 20:35:29.859 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 20:35:29.859 INFO [32321]: QUERY_STRING = /member/addNewSubscriber -- 20:35:29.859 INFO [32321]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:35:29.890 INFO [32321]: COREGRADE is stopping... -- 20:35:29.890 DEBUG [32321]: Closing database connection -- 20:35:29.890 SQL [32321]: pgsql_close() -- 20:35:30.486 INFO [32321]: COREGRADE is starting... -- 20:35:30.487 INFO [32321]: Version from config: 1.0 -- 20:35:30.487 DEBUG [32321]: Connecting to database... -- 20:35:30.487 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:35:30.487 SQL [32321]: pgsql_db_connect() -- 20:35:30.491 DEBUG [32321]: Database connection successful -- 20:35:30.491 INFO [32321]: _SERVER found -- 20:35:30.491 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 20:35:30.491 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 20:35:30.491 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 20:35:30.491 INFO [32321]: QUERY_STRING = /member/addNewSubscriber -- 20:35:30.491 INFO [32321]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:35:30.522 INFO [32321]: COREGRADE is stopping... -- 20:35:30.522 DEBUG [32321]: Closing database connection -- 20:35:30.522 SQL [32321]: pgsql_close() -- 20:35:31.109 INFO [32321]: COREGRADE is starting... -- 20:35:31.109 INFO [32321]: Version from config: 1.0 -- 20:35:31.109 DEBUG [32321]: Connecting to database... -- 20:35:31.109 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:35:31.109 SQL [32321]: pgsql_db_connect() -- 20:35:31.113 DEBUG [32321]: Database connection successful -- 20:35:31.113 INFO [32321]: _SERVER found -- 20:35:31.113 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 20:35:31.114 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 20:35:31.114 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 20:35:31.114 INFO [32321]: QUERY_STRING = /member/addNewSubscriber -- 20:35:31.114 INFO [32321]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:35:31.144 INFO [32321]: COREGRADE is stopping... -- 20:35:31.144 DEBUG [32321]: Closing database connection -- 20:35:31.144 SQL [32321]: pgsql_close() -- 20:35:31.665 INFO [32321]: COREGRADE is starting... -- 20:35:31.665 INFO [32321]: Version from config: 1.0 -- 20:35:31.665 DEBUG [32321]: Connecting to database... -- 20:35:31.665 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:35:31.665 SQL [32321]: pgsql_db_connect() -- 20:35:31.670 DEBUG [32321]: Database connection successful -- 20:35:31.670 INFO [32321]: _SERVER found -- 20:35:31.670 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 20:35:31.670 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 20:35:31.670 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 20:35:31.670 INFO [32321]: QUERY_STRING = /member/addNewSubscriber -- 20:35:31.670 INFO [32321]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:35:31.700 INFO [32321]: COREGRADE is stopping... -- 20:35:31.700 DEBUG [32321]: Closing database connection -- 20:35:31.700 SQL [32321]: pgsql_close() -- 20:35:32.428 INFO [32321]: COREGRADE is starting... -- 20:35:32.428 INFO [32321]: Version from config: 1.0 -- 20:35:32.428 DEBUG [32321]: Connecting to database... -- 20:35:32.428 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:35:32.428 SQL [32321]: pgsql_db_connect() -- 20:35:32.432 DEBUG [32321]: Database connection successful -- 20:35:32.432 INFO [32321]: _SERVER found -- 20:35:32.432 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 20:35:32.432 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 20:35:32.432 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 20:35:32.432 INFO [32321]: QUERY_STRING = /member/addNewSubscriber -- 20:35:32.432 INFO [32321]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:35:32.463 INFO [32321]: COREGRADE is stopping... -- 20:35:32.463 DEBUG [32321]: Closing database connection -- 20:35:32.463 SQL [32321]: pgsql_close() -- 20:40:40.195 INFO [743]: COREGRADE is starting... -- 20:40:40.195 INFO [743]: Version from config: 1.0 -- 20:40:40.195 DEBUG [743]: Connecting to database... -- 20:40:40.195 DEBUG [743]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:40:40.195 SQL [743]: pgsql_db_connect() -- 20:40:40.199 DEBUG [743]: Database connection successful -- 20:40:40.199 INFO [743]: _SERVER found -- 20:40:40.199 INFO [743]: REMOTE_ADDR = 10.0.0.15 -- 20:40:40.199 INFO [743]: SERVER_NAME = oameye.works.coregrade.com -- 20:40:40.199 INFO [743]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 20:40:40.199 INFO [743]: QUERY_STRING = /member/addNewSubscriber -- 20:40:40.199 INFO [743]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:40:40.233 INFO [743]: COREGRADE is stopping... -- 20:40:40.233 DEBUG [743]: Closing database connection -- 20:40:40.233 SQL [743]: pgsql_close() -- 20:41:31.028 INFO [741]: COREGRADE is starting... -- 20:41:31.028 INFO [741]: Version from config: 1.0 -- 20:41:31.028 DEBUG [741]: Connecting to database... -- 20:41:31.028 DEBUG [741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:41:31.028 SQL [741]: pgsql_db_connect() -- 20:41:31.032 DEBUG [741]: Database connection successful -- 20:41:31.032 INFO [741]: _SERVER found -- 20:41:31.032 INFO [741]: REMOTE_ADDR = 10.0.0.15 -- 20:41:31.032 INFO [741]: SERVER_NAME = oameye.works.coregrade.com -- 20:41:31.032 INFO [741]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 20:41:31.032 INFO [741]: QUERY_STRING = /member/addNewSubscriber -- 20:41:31.032 INFO [741]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:41:31.068 INFO [741]: COREGRADE is stopping... -- 20:41:31.068 DEBUG [741]: Closing database connection -- 20:41:31.068 SQL [741]: pgsql_close() -- 20:42:08.367 INFO [5948]: COREGRADE is starting... -- 20:42:08.368 INFO [5948]: Version from config: 1.0 -- 20:42:08.368 DEBUG [5948]: Connecting to database... -- 20:42:08.368 DEBUG [5948]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:42:08.368 SQL [5948]: pgsql_db_connect() -- 20:42:08.372 DEBUG [5948]: Database connection successful -- 20:42:08.372 INFO [5948]: _SERVER found -- 20:42:08.372 INFO [5948]: REMOTE_ADDR = 10.0.0.15 -- 20:42:08.372 INFO [5948]: SERVER_NAME = oameye.works.coregrade.com -- 20:42:08.372 INFO [5948]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 20:42:08.372 INFO [5948]: QUERY_STRING = /member/addNewSubscriber -- 20:42:08.372 INFO [5948]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:42:08.404 INFO [5948]: COREGRADE is stopping... -- 20:42:08.404 DEBUG [5948]: Closing database connection -- 20:42:08.404 SQL [5948]: pgsql_close() -- 20:42:11.644 INFO [5948]: COREGRADE is starting... -- 20:42:11.644 INFO [5948]: Version from config: 1.0 -- 20:42:11.644 DEBUG [5948]: Connecting to database... -- 20:42:11.644 DEBUG [5948]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:42:11.644 SQL [5948]: pgsql_db_connect() -- 20:42:11.648 DEBUG [5948]: Database connection successful -- 20:42:11.648 INFO [5948]: _SERVER found -- 20:42:11.648 INFO [5948]: REMOTE_ADDR = 10.0.0.15 -- 20:42:11.648 INFO [5948]: SERVER_NAME = oameye.works.coregrade.com -- 20:42:11.648 INFO [5948]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 20:42:11.648 INFO [5948]: QUERY_STRING = /member/addNewSubscriber -- 20:42:11.648 INFO [5948]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:42:11.679 INFO [5948]: COREGRADE is stopping... -- 20:42:11.679 DEBUG [5948]: Closing database connection -- 20:42:11.679 SQL [5948]: pgsql_close() -- 20:42:12.803 INFO [5948]: COREGRADE is starting... -- 20:42:12.803 INFO [5948]: Version from config: 1.0 -- 20:42:12.803 DEBUG [5948]: Connecting to database... -- 20:42:12.803 DEBUG [5948]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:42:12.803 SQL [5948]: pgsql_db_connect() -- 20:42:12.808 DEBUG [5948]: Database connection successful -- 20:42:12.808 INFO [5948]: _SERVER found -- 20:42:12.808 INFO [5948]: REMOTE_ADDR = 10.0.0.15 -- 20:42:12.808 INFO [5948]: SERVER_NAME = oameye.works.coregrade.com -- 20:42:12.808 INFO [5948]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 20:42:12.808 INFO [5948]: QUERY_STRING = /member/addNewSubscriber -- 20:42:12.808 INFO [5948]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:42:12.839 INFO [5948]: COREGRADE is stopping... -- 20:42:12.839 DEBUG [5948]: Closing database connection -- 20:42:12.839 SQL [5948]: pgsql_close() -- 20:42:13.594 INFO [5948]: COREGRADE is starting... -- 20:42:13.594 INFO [5948]: Version from config: 1.0 -- 20:42:13.594 DEBUG [5948]: Connecting to database... -- 20:42:13.594 DEBUG [5948]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:42:13.594 SQL [5948]: pgsql_db_connect() -- 20:42:13.599 DEBUG [5948]: Database connection successful -- 20:42:13.599 INFO [5948]: _SERVER found -- 20:42:13.599 INFO [5948]: REMOTE_ADDR = 10.0.0.15 -- 20:42:13.599 INFO [5948]: SERVER_NAME = oameye.works.coregrade.com -- 20:42:13.599 INFO [5948]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 20:42:13.599 INFO [5948]: QUERY_STRING = /member/addNewSubscriber -- 20:42:13.599 INFO [5948]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:42:13.630 INFO [5948]: COREGRADE is stopping... -- 20:42:13.630 DEBUG [5948]: Closing database connection -- 20:42:13.630 SQL [5948]: pgsql_close() -- 20:45:50.635 INFO [32322]: COREGRADE is starting... -- 20:45:50.635 INFO [32322]: Version from config: 1.0 -- 20:45:50.635 DEBUG [32322]: Connecting to database... -- 20:45:50.635 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:45:50.635 SQL [32322]: pgsql_db_connect() -- 20:45:50.640 DEBUG [32322]: Database connection successful -- 20:45:50.640 INFO [32322]: _SERVER found -- 20:45:50.640 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 20:45:50.640 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 20:45:50.640 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 20:45:50.640 INFO [32322]: QUERY_STRING = /member/viewRoom -- 20:45:50.640 INFO [32322]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:45:50.673 INFO [32322]: COREGRADE is stopping... -- 20:45:50.673 DEBUG [32322]: Closing database connection -- 20:45:50.673 SQL [32322]: pgsql_close() -- 20:46:10.887 INFO [32323]: COREGRADE is starting... -- 20:46:10.888 INFO [32323]: Version from config: 1.0 -- 20:46:10.888 DEBUG [32323]: Connecting to database... -- 20:46:10.888 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:46:10.888 SQL [32323]: pgsql_db_connect() -- 20:46:10.892 DEBUG [32323]: Database connection successful -- 20:46:10.892 INFO [32323]: _SERVER found -- 20:46:10.892 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 20:46:10.892 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 20:46:10.892 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 20:46:10.892 INFO [32323]: QUERY_STRING = /member/addNewSubscriber -- 20:46:10.892 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:46:10.929 INFO [32323]: COREGRADE is stopping... -- 20:46:10.929 DEBUG [32323]: Closing database connection -- 20:46:10.929 SQL [32323]: pgsql_close() -- 20:46:45.904 INFO [32325]: COREGRADE is starting... -- 20:46:45.904 INFO [32325]: Version from config: 1.0 -- 20:46:45.904 DEBUG [32325]: Connecting to database... -- 20:46:45.904 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:46:45.904 SQL [32325]: pgsql_db_connect() -- 20:46:45.908 DEBUG [32325]: Database connection successful -- 20:46:45.908 INFO [32325]: _SERVER found -- 20:46:45.908 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 20:46:45.908 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 20:46:45.908 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 20:46:45.908 INFO [32325]: QUERY_STRING = /member/addNewSubscriber -- 20:46:45.908 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:46:45.944 INFO [32325]: COREGRADE is stopping... -- 20:46:45.944 DEBUG [32325]: Closing database connection -- 20:46:45.944 SQL [32325]: pgsql_close() -- 20:46:51.718 INFO [32324]: COREGRADE is starting... -- 20:46:51.718 INFO [32324]: Version from config: 1.0 -- 20:46:51.718 DEBUG [32324]: Connecting to database... -- 20:46:51.718 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:46:51.718 SQL [32324]: pgsql_db_connect() -- 20:46:51.722 DEBUG [32324]: Database connection successful -- 20:46:51.722 INFO [32324]: _SERVER found -- 20:46:51.722 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 20:46:51.722 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 20:46:51.722 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 20:46:51.722 INFO [32324]: QUERY_STRING = /member/addNewSubscriber -- 20:46:51.722 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:46:51.757 INFO [32324]: COREGRADE is stopping... -- 20:46:51.757 DEBUG [32324]: Closing database connection -- 20:46:51.757 SQL [32324]: pgsql_close() -- 20:46:55.922 INFO [32324]: COREGRADE is starting... -- 20:46:55.923 INFO [32324]: Version from config: 1.0 -- 20:46:55.923 DEBUG [32324]: Connecting to database... -- 20:46:55.923 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:46:55.923 SQL [32324]: pgsql_db_connect() -- 20:46:55.927 DEBUG [32324]: Database connection successful -- 20:46:55.927 INFO [32324]: _SERVER found -- 20:46:55.927 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 20:46:55.927 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 20:46:55.927 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 20:46:55.927 INFO [32324]: QUERY_STRING = /member/addNewSubscriber -- 20:46:55.927 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:46:55.961 INFO [32324]: COREGRADE is stopping... -- 20:46:55.961 DEBUG [32324]: Closing database connection -- 20:46:55.961 SQL [32324]: pgsql_close() -- 20:50:14.359 INFO [32562]: COREGRADE is starting... -- 20:50:14.359 INFO [32562]: Version from config: 1.0 -- 20:50:14.359 DEBUG [32562]: Connecting to database... -- 20:50:14.359 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:50:14.359 SQL [32562]: pgsql_db_connect() -- 20:50:14.363 DEBUG [32562]: Database connection successful -- 20:50:14.363 INFO [32562]: _SERVER found -- 20:50:14.363 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 20:50:14.363 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 20:50:14.363 INFO [32562]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 20:50:14.363 INFO [32562]: QUERY_STRING = /member/viewRoom -- 20:50:14.363 INFO [32562]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:50:14.396 INFO [32562]: COREGRADE is stopping... -- 20:50:14.396 DEBUG [32562]: Closing database connection -- 20:50:14.396 SQL [32562]: pgsql_close() -- 21:06:41.957 INFO [742]: COREGRADE is starting... -- 21:06:41.958 INFO [742]: Version from config: 1.0 -- 21:06:41.958 DEBUG [742]: Connecting to database... -- 21:06:41.958 DEBUG [742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:06:41.958 SQL [742]: pgsql_db_connect() -- 21:06:41.962 DEBUG [742]: Database connection successful -- 21:06:41.962 INFO [742]: _SERVER found -- 21:06:41.962 INFO [742]: REMOTE_ADDR = 10.0.0.15 -- 21:06:41.962 INFO [742]: SERVER_NAME = oameye.works.coregrade.com -- 21:06:41.962 INFO [742]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 21:06:41.962 INFO [742]: QUERY_STRING = /member/viewRoom -- 21:06:41.962 INFO [742]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:06:42.001 INFO [742]: COREGRADE is stopping... -- 21:06:42.001 DEBUG [742]: Closing database connection -- 21:06:42.001 SQL [742]: pgsql_close() -- 21:07:34.243 INFO [32321]: COREGRADE is starting... -- 21:07:34.243 INFO [32321]: Version from config: 1.0 -- 21:07:34.243 DEBUG [32321]: Connecting to database... -- 21:07:34.243 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:34.243 SQL [32321]: pgsql_db_connect() -- 21:07:34.247 DEBUG [32321]: Database connection successful -- 21:07:34.247 INFO [32321]: _SERVER found -- 21:07:34.247 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 21:07:34.247 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 21:07:34.247 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 21:07:34.247 INFO [32321]: QUERY_STRING = /member/viewRoom -- 21:07:34.247 INFO [32321]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:07:34.283 INFO [32321]: COREGRADE is stopping... -- 21:07:34.283 DEBUG [32321]: Closing database connection -- 21:07:34.283 SQL [32321]: pgsql_close() -- 21:07:34.923 INFO [743]: COREGRADE is starting... -- 21:07:34.923 INFO [743]: Version from config: 1.0 -- 21:07:34.923 DEBUG [743]: Connecting to database... -- 21:07:34.923 DEBUG [743]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:34.923 SQL [743]: pgsql_db_connect() -- 21:07:34.927 DEBUG [743]: Database connection successful -- 21:07:34.927 INFO [743]: _SERVER found -- 21:07:34.927 INFO [743]: REMOTE_ADDR = 10.0.0.15 -- 21:07:34.927 INFO [743]: SERVER_NAME = oameye.works.coregrade.com -- 21:07:34.927 INFO [743]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 21:07:34.927 INFO [743]: QUERY_STRING = /member/viewRoom -- 21:07:34.927 INFO [743]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:07:34.964 INFO [743]: COREGRADE is stopping... -- 21:07:34.964 DEBUG [743]: Closing database connection -- 21:07:34.964 SQL [743]: pgsql_close() -- 21:07:35.903 INFO [743]: COREGRADE is starting... -- 21:07:35.903 INFO [743]: Version from config: 1.0 -- 21:07:35.903 DEBUG [743]: Connecting to database... -- 21:07:35.903 DEBUG [743]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:35.903 SQL [743]: pgsql_db_connect() -- 21:07:35.907 DEBUG [743]: Database connection successful -- 21:07:35.907 INFO [743]: _SERVER found -- 21:07:35.907 INFO [743]: REMOTE_ADDR = 10.0.0.15 -- 21:07:35.907 INFO [743]: SERVER_NAME = oameye.works.coregrade.com -- 21:07:35.907 INFO [743]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 21:07:35.907 INFO [743]: QUERY_STRING = /member/viewRoom -- 21:07:35.907 INFO [743]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:07:35.941 INFO [743]: COREGRADE is stopping... -- 21:07:35.941 DEBUG [743]: Closing database connection -- 21:07:35.941 SQL [743]: pgsql_close() -- 21:17:32.244 INFO [741]: COREGRADE is starting... -- 21:17:32.244 INFO [741]: Version from config: 1.0 -- 21:17:32.244 DEBUG [741]: Connecting to database... -- 21:17:32.244 DEBUG [741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:17:32.244 SQL [741]: pgsql_db_connect() -- 21:17:32.248 DEBUG [741]: Database connection successful -- 21:17:32.248 INFO [741]: _SERVER found -- 21:17:32.248 INFO [741]: REMOTE_ADDR = 10.0.0.15 -- 21:17:32.248 INFO [741]: SERVER_NAME = oameye.works.coregrade.com -- 21:17:32.248 INFO [741]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 21:17:32.248 INFO [741]: QUERY_STRING = /member/viewRoom -- 21:17:32.248 INFO [741]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:17:32.288 INFO [741]: COREGRADE is stopping... -- 21:17:32.288 DEBUG [741]: Closing database connection -- 21:17:32.288 SQL [741]: pgsql_close() -- 21:19:30.385 INFO [5948]: COREGRADE is starting... -- 21:19:30.385 INFO [5948]: Version from config: 1.0 -- 21:19:30.385 DEBUG [5948]: Connecting to database... -- 21:19:30.385 DEBUG [5948]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:19:30.385 SQL [5948]: pgsql_db_connect() -- 21:19:30.390 DEBUG [5948]: Database connection successful -- 21:19:30.390 INFO [5948]: _SERVER found -- 21:19:30.390 INFO [5948]: REMOTE_ADDR = 10.0.0.15 -- 21:19:30.390 INFO [5948]: SERVER_NAME = oameye.works.coregrade.com -- 21:19:30.390 INFO [5948]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 21:19:30.390 INFO [5948]: QUERY_STRING = /member/viewRoom -- 21:19:30.390 INFO [5948]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:19:30.426 INFO [5948]: COREGRADE is stopping... -- 21:19:30.426 DEBUG [5948]: Closing database connection -- 21:19:30.426 SQL [5948]: pgsql_close() -- 21:20:30.188 INFO [32322]: COREGRADE is starting... -- 21:20:30.188 INFO [32322]: Version from config: 1.0 -- 21:20:30.188 DEBUG [32322]: Connecting to database... -- 21:20:30.188 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:20:30.188 SQL [32322]: pgsql_db_connect() -- 21:20:30.193 DEBUG [32322]: Database connection successful -- 21:20:30.193 INFO [32322]: _SERVER found -- 21:20:30.193 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 21:20:30.193 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 21:20:30.193 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 21:20:30.193 INFO [32322]: QUERY_STRING = /member/viewRoom -- 21:20:30.193 INFO [32322]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:20:30.231 INFO [32322]: COREGRADE is stopping... -- 21:20:30.231 DEBUG [32322]: Closing database connection -- 21:20:30.231 SQL [32322]: pgsql_close() -- 21:20:55.941 INFO [32323]: COREGRADE is starting... -- 21:20:55.941 INFO [32323]: Version from config: 1.0 -- 21:20:55.941 DEBUG [32323]: Connecting to database... -- 21:20:55.941 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:20:55.941 SQL [32323]: pgsql_db_connect() -- 21:20:55.945 DEBUG [32323]: Database connection successful -- 21:20:55.945 INFO [32323]: _SERVER found -- 21:20:55.945 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 21:20:55.945 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 21:20:55.945 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 21:20:55.945 INFO [32323]: QUERY_STRING = /member/viewRoom -- 21:20:55.945 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:20:55.982 INFO [32323]: COREGRADE is stopping... -- 21:20:55.982 DEBUG [32323]: Closing database connection -- 21:20:55.982 SQL [32323]: pgsql_close() -- 21:21:22.223 INFO [32325]: COREGRADE is starting... -- 21:21:22.223 INFO [32325]: Version from config: 1.0 -- 21:21:22.223 DEBUG [32325]: Connecting to database... -- 21:21:22.223 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:21:22.223 SQL [32325]: pgsql_db_connect() -- 21:21:22.227 DEBUG [32325]: Database connection successful -- 21:21:22.227 INFO [32325]: _SERVER found -- 21:21:22.227 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 21:21:22.227 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 21:21:22.227 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 21:21:22.227 INFO [32325]: QUERY_STRING = /member/viewRoom -- 21:21:22.227 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:21:22.263 INFO [32325]: COREGRADE is stopping... -- 21:21:22.263 DEBUG [32325]: Closing database connection -- 21:21:22.263 SQL [32325]: pgsql_close() -- 21:22:19.493 INFO [32324]: COREGRADE is starting... -- 21:22:19.493 INFO [32324]: Version from config: 1.0 -- 21:22:19.493 DEBUG [32324]: Connecting to database... -- 21:22:19.493 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:22:19.493 SQL [32324]: pgsql_db_connect() -- 21:22:19.498 DEBUG [32324]: Database connection successful -- 21:22:19.498 INFO [32324]: _SERVER found -- 21:22:19.498 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 21:22:19.498 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 21:22:19.498 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 21:22:19.498 INFO [32324]: QUERY_STRING = /member/viewRoom -- 21:22:19.498 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:22:19.535 INFO [32324]: COREGRADE is stopping... -- 21:22:19.535 DEBUG [32324]: Closing database connection -- 21:22:19.535 SQL [32324]: pgsql_close() -- 21:22:57.047 INFO [32562]: COREGRADE is starting... -- 21:22:57.048 INFO [32562]: Version from config: 1.0 -- 21:22:57.048 DEBUG [32562]: Connecting to database... -- 21:22:57.048 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:22:57.048 SQL [32562]: pgsql_db_connect() -- 21:22:57.052 DEBUG [32562]: Database connection successful -- 21:22:57.052 INFO [32562]: _SERVER found -- 21:22:57.052 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 21:22:57.052 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 21:22:57.052 INFO [32562]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 21:22:57.052 INFO [32562]: QUERY_STRING = /member/viewRoom -- 21:22:57.052 INFO [32562]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:22:57.087 INFO [32562]: COREGRADE is stopping... -- 21:22:57.087 DEBUG [32562]: Closing database connection -- 21:22:57.087 SQL [32562]: pgsql_close() -- 21:23:20.834 INFO [742]: COREGRADE is starting... -- 21:23:20.834 INFO [742]: Version from config: 1.0 -- 21:23:20.834 DEBUG [742]: Connecting to database... -- 21:23:20.834 DEBUG [742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:23:20.834 SQL [742]: pgsql_db_connect() -- 21:23:20.838 DEBUG [742]: Database connection successful -- 21:23:20.838 INFO [742]: _SERVER found -- 21:23:20.838 INFO [742]: REMOTE_ADDR = 10.0.0.15 -- 21:23:20.838 INFO [742]: SERVER_NAME = oameye.works.coregrade.com -- 21:23:20.838 INFO [742]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 21:23:20.838 INFO [742]: QUERY_STRING = /member/viewRoom -- 21:23:20.838 INFO [742]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:23:20.873 INFO [742]: COREGRADE is stopping... -- 21:23:20.873 DEBUG [742]: Closing database connection -- 21:23:20.873 SQL [742]: pgsql_close() -- 21:30:15.570 INFO [32321]: COREGRADE is starting... -- 21:30:15.570 INFO [32321]: Version from config: 1.0 -- 21:30:15.570 DEBUG [32321]: Connecting to database... -- 21:30:15.570 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:30:15.570 SQL [32321]: pgsql_db_connect() -- 21:30:15.574 DEBUG [32321]: Database connection successful -- 21:30:15.574 INFO [32321]: _SERVER found -- 21:30:15.574 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 21:30:15.574 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 21:30:15.574 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=2c97oeje5s7j098fjnkbe3sunnqp5hdv -- 21:30:15.574 INFO [32321]: QUERY_STRING = /member/classroom -- 21:30:15.574 INFO [32321]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:30:15.620 INFO [32321]: COREGRADE is stopping... -- 21:30:15.620 DEBUG [32321]: Closing database connection -- 21:30:15.620 SQL [32321]: pgsql_close() -- 21:30:15.821 INFO [32321]: COREGRADE is starting... -- 21:30:15.821 INFO [32321]: Version from config: 1.0 -- 21:30:15.821 DEBUG [32321]: Connecting to database... -- 21:30:15.821 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:30:15.821 SQL [32321]: pgsql_db_connect() -- 21:30:15.825 DEBUG [32321]: Database connection successful -- 21:30:15.825 INFO [32321]: _SERVER found -- 21:30:15.825 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 21:30:15.825 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 21:30:15.825 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 21:30:15.825 INFO [32321]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:30:15.825 INFO [32321]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:30:15.837 INFO [32321]: COREGRADE is stopping... -- 21:30:15.837 DEBUG [32321]: Closing database connection -- 21:30:15.837 SQL [32321]: pgsql_close() -- 21:30:17.589 INFO [32321]: COREGRADE is starting... -- 21:30:17.590 INFO [32321]: Version from config: 1.0 -- 21:30:17.590 DEBUG [32321]: Connecting to database... -- 21:30:17.590 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:30:17.590 SQL [32321]: pgsql_db_connect() -- 21:30:17.594 DEBUG [32321]: Database connection successful -- 21:30:17.594 INFO [32321]: _SERVER found -- 21:30:17.594 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 21:30:17.594 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 21:30:17.594 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 21:30:17.594 INFO [32321]: QUERY_STRING = /member/viewRoom -- 21:30:17.594 INFO [32321]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:30:17.628 INFO [32321]: COREGRADE is stopping... -- 21:30:17.628 DEBUG [32321]: Closing database connection -- 21:30:17.628 SQL [32321]: pgsql_close() -- 21:30:24.554 INFO [743]: COREGRADE is starting... -- 21:30:24.554 INFO [743]: Version from config: 1.0 -- 21:30:24.554 DEBUG [743]: Connecting to database... -- 21:30:24.554 DEBUG [743]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:30:24.554 SQL [743]: pgsql_db_connect() -- 21:30:24.559 DEBUG [743]: Database connection successful -- 21:30:24.559 INFO [743]: _SERVER found -- 21:30:24.559 INFO [743]: REMOTE_ADDR = 10.0.0.15 -- 21:30:24.559 INFO [743]: SERVER_NAME = oameye.works.coregrade.com -- 21:30:24.559 INFO [743]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 21:30:24.559 INFO [743]: QUERY_STRING = /member/viewRoom -- 21:30:24.559 INFO [743]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:30:24.594 INFO [743]: COREGRADE is stopping... -- 21:30:24.594 DEBUG [743]: Closing database connection -- 21:30:24.594 SQL [743]: pgsql_close() -- 21:30:26.598 INFO [743]: COREGRADE is starting... -- 21:30:26.598 INFO [743]: Version from config: 1.0 -- 21:30:26.598 DEBUG [743]: Connecting to database... -- 21:30:26.598 DEBUG [743]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:30:26.598 SQL [743]: pgsql_db_connect() -- 21:30:26.602 DEBUG [743]: Database connection successful -- 21:30:26.602 INFO [743]: _SERVER found -- 21:30:26.602 INFO [743]: REMOTE_ADDR = 10.0.0.15 -- 21:30:26.602 INFO [743]: SERVER_NAME = oameye.works.coregrade.com -- 21:30:26.602 INFO [743]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 21:30:26.602 INFO [743]: QUERY_STRING = /member/viewRoom -- 21:30:26.602 INFO [743]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:30:26.637 INFO [743]: COREGRADE is stopping... -- 21:30:26.637 DEBUG [743]: Closing database connection -- 21:30:26.637 SQL [743]: pgsql_close() -- 21:30:28.111 INFO [743]: COREGRADE is starting... -- 21:30:28.111 INFO [743]: Version from config: 1.0 -- 21:30:28.111 DEBUG [743]: Connecting to database... -- 21:30:28.111 DEBUG [743]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:30:28.111 SQL [743]: pgsql_db_connect() -- 21:30:28.115 DEBUG [743]: Database connection successful -- 21:30:28.115 INFO [743]: _SERVER found -- 21:30:28.115 INFO [743]: REMOTE_ADDR = 10.0.0.15 -- 21:30:28.115 INFO [743]: SERVER_NAME = oameye.works.coregrade.com -- 21:30:28.115 INFO [743]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 21:30:28.115 INFO [743]: QUERY_STRING = /member/viewRoom -- 21:30:28.115 INFO [743]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:30:28.149 INFO [743]: COREGRADE is stopping... -- 21:30:28.149 DEBUG [743]: Closing database connection -- 21:30:28.149 SQL [743]: pgsql_close() -- 21:30:31.211 INFO [743]: COREGRADE is starting... -- 21:30:31.211 INFO [743]: Version from config: 1.0 -- 21:30:31.211 DEBUG [743]: Connecting to database... -- 21:30:31.211 DEBUG [743]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:30:31.211 SQL [743]: pgsql_db_connect() -- 21:30:31.215 DEBUG [743]: Database connection successful -- 21:30:31.215 INFO [743]: _SERVER found -- 21:30:31.215 INFO [743]: REMOTE_ADDR = 10.0.0.15 -- 21:30:31.215 INFO [743]: SERVER_NAME = oameye.works.coregrade.com -- 21:30:31.215 INFO [743]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 21:30:31.215 INFO [743]: QUERY_STRING = /member/viewRoom -- 21:30:31.215 INFO [743]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:30:31.250 INFO [743]: COREGRADE is stopping... -- 21:30:31.250 DEBUG [743]: Closing database connection -- 21:30:31.250 SQL [743]: pgsql_close() -- 21:32:38.103 INFO [741]: COREGRADE is starting... -- 21:32:38.103 INFO [741]: Version from config: 1.0 -- 21:32:38.103 DEBUG [741]: Connecting to database... -- 21:32:38.103 DEBUG [741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:32:38.103 SQL [741]: pgsql_db_connect() -- 21:32:38.107 DEBUG [741]: Database connection successful -- 21:32:38.107 INFO [741]: _SERVER found -- 21:32:38.107 INFO [741]: REMOTE_ADDR = 10.0.0.15 -- 21:32:38.107 INFO [741]: SERVER_NAME = oameye.works.coregrade.com -- 21:32:38.107 INFO [741]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 21:32:38.107 INFO [741]: QUERY_STRING = /member/viewRoom -- 21:32:38.107 INFO [741]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:32:38.146 INFO [741]: COREGRADE is stopping... -- 21:32:38.146 DEBUG [741]: Closing database connection -- 21:32:38.146 SQL [741]: pgsql_close() -- 21:36:20.166 INFO [5948]: COREGRADE is starting... -- 21:36:20.167 INFO [5948]: Version from config: 1.0 -- 21:36:20.167 DEBUG [5948]: Connecting to database... -- 21:36:20.167 DEBUG [5948]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:36:20.167 SQL [5948]: pgsql_db_connect() -- 21:36:20.171 DEBUG [5948]: Database connection successful -- 21:36:20.171 INFO [5948]: _SERVER found -- 21:36:20.171 INFO [5948]: REMOTE_ADDR = 10.0.0.15 -- 21:36:20.171 INFO [5948]: SERVER_NAME = oameye.works.coregrade.com -- 21:36:20.171 INFO [5948]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 21:36:20.171 INFO [5948]: QUERY_STRING = /member/viewRoom -- 21:36:20.171 INFO [5948]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:36:20.207 INFO [5948]: COREGRADE is stopping... -- 21:36:20.207 DEBUG [5948]: Closing database connection -- 21:36:20.207 SQL [5948]: pgsql_close() -- 21:36:53.572 INFO [32322]: COREGRADE is starting... -- 21:36:53.573 INFO [32322]: Version from config: 1.0 -- 21:36:53.573 DEBUG [32322]: Connecting to database... -- 21:36:53.573 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:36:53.573 SQL [32322]: pgsql_db_connect() -- 21:36:53.577 DEBUG [32322]: Database connection successful -- 21:36:53.577 INFO [32322]: _SERVER found -- 21:36:53.577 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 21:36:53.577 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 21:36:53.577 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 21:36:53.577 INFO [32322]: QUERY_STRING = /member/viewRoom -- 21:36:53.577 INFO [32322]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:36:53.613 INFO [32322]: COREGRADE is stopping... -- 21:36:53.613 DEBUG [32322]: Closing database connection -- 21:36:53.613 SQL [32322]: pgsql_close() -- 21:38:14.739 INFO [32323]: COREGRADE is starting... -- 21:38:14.739 INFO [32323]: Version from config: 1.0 -- 21:38:14.739 DEBUG [32323]: Connecting to database... -- 21:38:14.739 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:38:14.739 SQL [32323]: pgsql_db_connect() -- 21:38:14.743 DEBUG [32323]: Database connection successful -- 21:38:14.743 INFO [32323]: _SERVER found -- 21:38:14.743 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 21:38:14.743 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 21:38:14.743 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 21:38:14.743 INFO [32323]: QUERY_STRING = /member/viewRoom -- 21:38:14.743 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:38:14.780 INFO [32323]: COREGRADE is stopping... -- 21:38:14.780 DEBUG [32323]: Closing database connection -- 21:38:14.780 SQL [32323]: pgsql_close() -- 21:43:29.630 INFO [32325]: COREGRADE is starting... -- 21:43:29.630 INFO [32325]: Version from config: 1.0 -- 21:43:29.630 DEBUG [32325]: Connecting to database... -- 21:43:29.630 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:43:29.630 SQL [32325]: pgsql_db_connect() -- 21:43:29.635 DEBUG [32325]: Database connection successful -- 21:43:29.635 INFO [32325]: _SERVER found -- 21:43:29.635 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 21:43:29.635 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 21:43:29.635 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 21:43:29.635 INFO [32325]: QUERY_STRING = /member/viewRoom -- 21:43:29.635 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:43:29.673 INFO [32325]: COREGRADE is stopping... -- 21:43:29.673 DEBUG [32325]: Closing database connection -- 21:43:29.673 SQL [32325]: pgsql_close() -- 21:45:14.759 INFO [32324]: COREGRADE is starting... -- 21:45:14.759 INFO [32324]: Version from config: 1.0 -- 21:45:14.759 DEBUG [32324]: Connecting to database... -- 21:45:14.759 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:45:14.759 SQL [32324]: pgsql_db_connect() -- 21:45:14.764 DEBUG [32324]: Database connection successful -- 21:45:14.764 INFO [32324]: _SERVER found -- 21:45:14.764 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 21:45:14.764 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 21:45:14.764 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 21:45:14.764 INFO [32324]: QUERY_STRING = /member/viewRoom -- 21:45:14.764 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:45:14.798 INFO [32324]: COREGRADE is stopping... -- 21:45:14.798 DEBUG [32324]: Closing database connection -- 21:45:14.798 SQL [32324]: pgsql_close() -- 21:45:16.094 INFO [32324]: COREGRADE is starting... -- 21:45:16.094 INFO [32324]: Version from config: 1.0 -- 21:45:16.094 DEBUG [32324]: Connecting to database... -- 21:45:16.094 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:45:16.094 SQL [32324]: pgsql_db_connect() -- 21:45:16.099 DEBUG [32324]: Database connection successful -- 21:45:16.099 INFO [32324]: _SERVER found -- 21:45:16.099 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 21:45:16.099 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 21:45:16.099 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 21:45:16.099 INFO [32324]: QUERY_STRING = /member/viewRoom -- 21:45:16.099 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:45:16.134 INFO [32324]: COREGRADE is stopping... -- 21:45:16.134 DEBUG [32324]: Closing database connection -- 21:45:16.134 SQL [32324]: pgsql_close() -- 21:45:18.348 INFO [32324]: COREGRADE is starting... -- 21:45:18.348 INFO [32324]: Version from config: 1.0 -- 21:45:18.348 DEBUG [32324]: Connecting to database... -- 21:45:18.348 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:45:18.348 SQL [32324]: pgsql_db_connect() -- 21:45:18.353 DEBUG [32324]: Database connection successful -- 21:45:18.353 INFO [32324]: _SERVER found -- 21:45:18.353 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 21:45:18.353 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 21:45:18.353 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 21:45:18.353 INFO [32324]: QUERY_STRING = /member/viewRoom -- 21:45:18.353 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:45:18.385 INFO [32324]: COREGRADE is stopping... -- 21:45:18.385 DEBUG [32324]: Closing database connection -- 21:45:18.385 SQL [32324]: pgsql_close() -- 21:45:19.404 INFO [32324]: COREGRADE is starting... -- 21:45:19.404 INFO [32324]: Version from config: 1.0 -- 21:45:19.404 DEBUG [32324]: Connecting to database... -- 21:45:19.404 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:45:19.404 SQL [32324]: pgsql_db_connect() -- 21:45:19.409 DEBUG [32324]: Database connection successful -- 21:45:19.409 INFO [32324]: _SERVER found -- 21:45:19.409 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 21:45:19.409 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 21:45:19.409 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 21:45:19.409 INFO [32324]: QUERY_STRING = /member/viewRoom -- 21:45:19.409 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:45:19.444 INFO [32324]: COREGRADE is stopping... -- 21:45:19.444 DEBUG [32324]: Closing database connection -- 21:45:19.444 SQL [32324]: pgsql_close() -- 21:45:22.110 INFO [32324]: COREGRADE is starting... -- 21:45:22.110 INFO [32324]: Version from config: 1.0 -- 21:45:22.110 DEBUG [32324]: Connecting to database... -- 21:45:22.110 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:45:22.110 SQL [32324]: pgsql_db_connect() -- 21:45:22.115 DEBUG [32324]: Database connection successful -- 21:45:22.115 INFO [32324]: _SERVER found -- 21:45:22.115 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 21:45:22.115 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 21:45:22.115 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 21:45:22.115 INFO [32324]: QUERY_STRING = /member/viewRoom -- 21:45:22.115 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:45:22.147 INFO [32324]: COREGRADE is stopping... -- 21:45:22.147 DEBUG [32324]: Closing database connection -- 21:45:22.147 SQL [32324]: pgsql_close() -- 21:45:57.497 INFO [32562]: COREGRADE is starting... -- 21:45:57.497 INFO [32562]: Version from config: 1.0 -- 21:45:57.497 DEBUG [32562]: Connecting to database... -- 21:45:57.497 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:45:57.497 SQL [32562]: pgsql_db_connect() -- 21:45:57.501 DEBUG [32562]: Database connection successful -- 21:45:57.501 INFO [32562]: _SERVER found -- 21:45:57.501 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 21:45:57.501 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 21:45:57.501 INFO [32562]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 21:45:57.501 INFO [32562]: QUERY_STRING = /member/viewRoom -- 21:45:57.501 INFO [32562]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:45:57.535 INFO [32562]: COREGRADE is stopping... -- 21:45:57.535 DEBUG [32562]: Closing database connection -- 21:45:57.535 SQL [32562]: pgsql_close() -- 21:49:06.316 INFO [742]: COREGRADE is starting... -- 21:49:06.317 INFO [742]: Version from config: 1.0 -- 21:49:06.317 DEBUG [742]: Connecting to database... -- 21:49:06.317 DEBUG [742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:49:06.317 SQL [742]: pgsql_db_connect() -- 21:49:06.321 DEBUG [742]: Database connection successful -- 21:49:06.321 INFO [742]: _SERVER found -- 21:49:06.321 INFO [742]: REMOTE_ADDR = 10.0.0.15 -- 21:49:06.321 INFO [742]: SERVER_NAME = oameye.works.coregrade.com -- 21:49:06.321 INFO [742]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 21:49:06.321 INFO [742]: QUERY_STRING = /member/viewRoom -- 21:49:06.321 INFO [742]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:49:06.355 INFO [742]: COREGRADE is stopping... -- 21:49:06.355 DEBUG [742]: Closing database connection -- 21:49:06.355 SQL [742]: pgsql_close() -- 21:49:55.505 INFO [32321]: COREGRADE is starting... -- 21:49:55.505 INFO [32321]: Version from config: 1.0 -- 21:49:55.505 DEBUG [32321]: Connecting to database... -- 21:49:55.505 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:49:55.506 SQL [32321]: pgsql_db_connect() -- 21:49:55.510 DEBUG [32321]: Database connection successful -- 21:49:55.510 INFO [32321]: _SERVER found -- 21:49:55.510 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 21:49:55.510 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 21:49:55.510 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 21:49:55.510 INFO [32321]: QUERY_STRING = /member/viewRoom -- 21:49:55.510 INFO [32321]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:49:55.543 INFO [32321]: COREGRADE is stopping... -- 21:49:55.543 DEBUG [32321]: Closing database connection -- 21:49:55.543 SQL [32321]: pgsql_close() -- 21:52:00.814 INFO [743]: COREGRADE is starting... -- 21:52:00.814 INFO [743]: Version from config: 1.0 -- 21:52:00.814 DEBUG [743]: Connecting to database... -- 21:52:00.814 DEBUG [743]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:52:00.814 SQL [743]: pgsql_db_connect() -- 21:52:00.818 DEBUG [743]: Database connection successful -- 21:52:00.818 INFO [743]: _SERVER found -- 21:52:00.818 INFO [743]: REMOTE_ADDR = 10.0.0.15 -- 21:52:00.818 INFO [743]: SERVER_NAME = oameye.works.coregrade.com -- 21:52:00.818 INFO [743]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 21:52:00.818 INFO [743]: QUERY_STRING = /member/viewRoom -- 21:52:00.818 INFO [743]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:52:00.853 INFO [743]: COREGRADE is stopping... -- 21:52:00.853 DEBUG [743]: Closing database connection -- 21:52:00.853 SQL [743]: pgsql_close() -- 21:52:45.980 INFO [741]: COREGRADE is starting... -- 21:52:45.980 INFO [741]: Version from config: 1.0 -- 21:52:45.980 DEBUG [741]: Connecting to database... -- 21:52:45.980 DEBUG [741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:52:45.980 SQL [741]: pgsql_db_connect() -- 21:52:45.984 DEBUG [741]: Database connection successful -- 21:52:45.984 INFO [741]: _SERVER found -- 21:52:45.984 INFO [741]: REMOTE_ADDR = 10.0.0.15 -- 21:52:45.984 INFO [741]: SERVER_NAME = oameye.works.coregrade.com -- 21:52:45.984 INFO [741]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 21:52:45.984 INFO [741]: QUERY_STRING = /member/viewRoom -- 21:52:45.984 INFO [741]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:52:46.018 INFO [741]: COREGRADE is stopping... -- 21:52:46.018 DEBUG [741]: Closing database connection -- 21:52:46.018 SQL [741]: pgsql_close() -- 21:53:21.353 INFO [5948]: COREGRADE is starting... -- 21:53:21.354 INFO [5948]: Version from config: 1.0 -- 21:53:21.354 DEBUG [5948]: Connecting to database... -- 21:53:21.354 DEBUG [5948]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:53:21.354 SQL [5948]: pgsql_db_connect() -- 21:53:21.358 DEBUG [5948]: Database connection successful -- 21:53:21.358 INFO [5948]: _SERVER found -- 21:53:21.358 INFO [5948]: REMOTE_ADDR = 10.0.0.15 -- 21:53:21.358 INFO [5948]: SERVER_NAME = oameye.works.coregrade.com -- 21:53:21.358 INFO [5948]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 21:53:21.358 INFO [5948]: QUERY_STRING = /member/viewRoom -- 21:53:21.358 INFO [5948]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:53:21.392 INFO [5948]: COREGRADE is stopping... -- 21:53:21.392 DEBUG [5948]: Closing database connection -- 21:53:21.392 SQL [5948]: pgsql_close() -- 22:01:31.096 INFO [32322]: COREGRADE is starting... -- 22:01:31.097 INFO [32322]: Version from config: 1.0 -- 22:01:31.097 DEBUG [32322]: Connecting to database... -- 22:01:31.097 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:01:31.097 SQL [32322]: pgsql_db_connect() -- 22:01:31.101 DEBUG [32322]: Database connection successful -- 22:01:31.101 INFO [32322]: _SERVER found -- 22:01:31.101 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 22:01:31.101 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 22:01:31.101 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 22:01:31.101 INFO [32322]: QUERY_STRING = /member/viewRoom -- 22:01:31.101 INFO [32322]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:01:31.135 INFO [32322]: COREGRADE is stopping... -- 22:01:31.135 DEBUG [32322]: Closing database connection -- 22:01:31.135 SQL [32322]: pgsql_close() -- 22:02:12.872 INFO [32323]: COREGRADE is starting... -- 22:02:12.872 INFO [32323]: Version from config: 1.0 -- 22:02:12.872 DEBUG [32323]: Connecting to database... -- 22:02:12.872 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:02:12.872 SQL [32323]: pgsql_db_connect() -- 22:02:12.876 DEBUG [32323]: Database connection successful -- 22:02:12.876 INFO [32323]: _SERVER found -- 22:02:12.876 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 22:02:12.876 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 22:02:12.876 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 22:02:12.876 INFO [32323]: QUERY_STRING = /member/viewRoom -- 22:02:12.876 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:02:12.909 INFO [32323]: COREGRADE is stopping... -- 22:02:12.909 DEBUG [32323]: Closing database connection -- 22:02:12.909 SQL [32323]: pgsql_close() -- 22:03:34.117 INFO [32325]: COREGRADE is starting... -- 22:03:34.117 INFO [32325]: Version from config: 1.0 -- 22:03:34.117 DEBUG [32325]: Connecting to database... -- 22:03:34.117 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:03:34.117 SQL [32325]: pgsql_db_connect() -- 22:03:34.121 DEBUG [32325]: Database connection successful -- 22:03:34.121 INFO [32325]: _SERVER found -- 22:03:34.121 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 22:03:34.121 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 22:03:34.121 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 22:03:34.121 INFO [32325]: QUERY_STRING = /member/viewRoom -- 22:03:34.121 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:03:34.155 INFO [32325]: COREGRADE is stopping... -- 22:03:34.155 DEBUG [32325]: Closing database connection -- 22:03:34.155 SQL [32325]: pgsql_close() -- 22:03:58.132 INFO [32324]: COREGRADE is starting... -- 22:03:58.132 INFO [32324]: Version from config: 1.0 -- 22:03:58.132 DEBUG [32324]: Connecting to database... -- 22:03:58.132 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:03:58.132 SQL [32324]: pgsql_db_connect() -- 22:03:58.136 DEBUG [32324]: Database connection successful -- 22:03:58.136 INFO [32324]: _SERVER found -- 22:03:58.136 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 22:03:58.136 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 22:03:58.136 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 22:03:58.136 INFO [32324]: QUERY_STRING = /member/viewRoom -- 22:03:58.136 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:03:58.168 INFO [32324]: COREGRADE is stopping... -- 22:03:58.168 DEBUG [32324]: Closing database connection -- 22:03:58.168 SQL [32324]: pgsql_close() -- 22:04:18.579 INFO [32562]: COREGRADE is starting... -- 22:04:18.579 INFO [32562]: Version from config: 1.0 -- 22:04:18.579 DEBUG [32562]: Connecting to database... -- 22:04:18.579 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:04:18.579 SQL [32562]: pgsql_db_connect() -- 22:04:18.583 DEBUG [32562]: Database connection successful -- 22:04:18.583 INFO [32562]: _SERVER found -- 22:04:18.583 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 22:04:18.583 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 22:04:18.583 INFO [32562]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 22:04:18.583 INFO [32562]: QUERY_STRING = /member/viewRoom -- 22:04:18.583 INFO [32562]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:04:18.616 INFO [32562]: COREGRADE is stopping... -- 22:04:18.616 DEBUG [32562]: Closing database connection -- 22:04:18.616 SQL [32562]: pgsql_close() -- 22:05:01.173 INFO [742]: COREGRADE is starting... -- 22:05:01.173 INFO [742]: Version from config: 1.0 -- 22:05:01.173 DEBUG [742]: Connecting to database... -- 22:05:01.173 DEBUG [742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:05:01.173 SQL [742]: pgsql_db_connect() -- 22:05:01.177 DEBUG [742]: Database connection successful -- 22:05:01.177 INFO [742]: _SERVER found -- 22:05:01.177 INFO [742]: REMOTE_ADDR = 10.0.0.15 -- 22:05:01.177 INFO [742]: SERVER_NAME = oameye.works.coregrade.com -- 22:05:01.177 INFO [742]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 22:05:01.177 INFO [742]: QUERY_STRING = /member/viewRoom -- 22:05:01.177 INFO [742]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:05:01.210 INFO [742]: COREGRADE is stopping... -- 22:05:01.210 DEBUG [742]: Closing database connection -- 22:05:01.210 SQL [742]: pgsql_close() -- 22:06:03.042 INFO [32321]: COREGRADE is starting... -- 22:06:03.042 INFO [32321]: Version from config: 1.0 -- 22:06:03.042 DEBUG [32321]: Connecting to database... -- 22:06:03.042 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:06:03.042 SQL [32321]: pgsql_db_connect() -- 22:06:03.046 DEBUG [32321]: Database connection successful -- 22:06:03.046 INFO [32321]: _SERVER found -- 22:06:03.046 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 22:06:03.046 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 22:06:03.046 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 22:06:03.046 INFO [32321]: QUERY_STRING = /member/viewRoom -- 22:06:03.046 INFO [32321]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:06:03.079 INFO [32321]: COREGRADE is stopping... -- 22:06:03.079 DEBUG [32321]: Closing database connection -- 22:06:03.079 SQL [32321]: pgsql_close() -- 22:12:41.957 INFO [743]: COREGRADE is starting... -- 22:12:41.957 INFO [743]: Version from config: 1.0 -- 22:12:41.957 DEBUG [743]: Connecting to database... -- 22:12:41.957 DEBUG [743]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:12:41.957 SQL [743]: pgsql_db_connect() -- 22:12:41.961 DEBUG [743]: Database connection successful -- 22:12:41.962 INFO [743]: _SERVER found -- 22:12:41.962 INFO [743]: REMOTE_ADDR = 10.0.0.15 -- 22:12:41.962 INFO [743]: SERVER_NAME = oameye.works.coregrade.com -- 22:12:41.962 INFO [743]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 22:12:41.962 INFO [743]: QUERY_STRING = /member/viewRoom -- 22:12:41.962 INFO [743]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:12:41.995 INFO [743]: COREGRADE is stopping... -- 22:12:41.995 DEBUG [743]: Closing database connection -- 22:12:41.995 SQL [743]: pgsql_close() -- 22:17:49.614 INFO [741]: COREGRADE is starting... -- 22:17:49.614 INFO [741]: Version from config: 1.0 -- 22:17:49.614 DEBUG [741]: Connecting to database... -- 22:17:49.614 DEBUG [741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:17:49.614 SQL [741]: pgsql_db_connect() -- 22:17:49.618 DEBUG [741]: Database connection successful -- 22:17:49.618 INFO [741]: _SERVER found -- 22:17:49.618 INFO [741]: REMOTE_ADDR = 10.0.0.15 -- 22:17:49.618 INFO [741]: SERVER_NAME = oameye.works.coregrade.com -- 22:17:49.618 INFO [741]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 22:17:49.618 INFO [741]: QUERY_STRING = /member/viewRoom -- 22:17:49.618 INFO [741]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:17:49.651 INFO [741]: COREGRADE is stopping... -- 22:17:49.651 DEBUG [741]: Closing database connection -- 22:17:49.651 SQL [741]: pgsql_close() -- 22:18:41.827 INFO [5948]: COREGRADE is starting... -- 22:18:41.827 INFO [5948]: Version from config: 1.0 -- 22:18:41.827 DEBUG [5948]: Connecting to database... -- 22:18:41.827 DEBUG [5948]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:18:41.827 SQL [5948]: pgsql_db_connect() -- 22:18:41.832 DEBUG [5948]: Database connection successful -- 22:18:41.832 INFO [5948]: _SERVER found -- 22:18:41.832 INFO [5948]: REMOTE_ADDR = 10.0.0.15 -- 22:18:41.832 INFO [5948]: SERVER_NAME = oameye.works.coregrade.com -- 22:18:41.832 INFO [5948]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 22:18:41.832 INFO [5948]: QUERY_STRING = /member/viewRoom -- 22:18:41.832 INFO [5948]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:18:41.866 INFO [5948]: COREGRADE is stopping... -- 22:18:41.866 DEBUG [5948]: Closing database connection -- 22:18:41.866 SQL [5948]: pgsql_close() -- 22:19:43.463 INFO [32322]: COREGRADE is starting... -- 22:19:43.463 INFO [32322]: Version from config: 1.0 -- 22:19:43.463 DEBUG [32322]: Connecting to database... -- 22:19:43.463 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:19:43.463 SQL [32322]: pgsql_db_connect() -- 22:19:43.468 DEBUG [32322]: Database connection successful -- 22:19:43.468 INFO [32322]: _SERVER found -- 22:19:43.468 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 22:19:43.468 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 22:19:43.468 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 22:19:43.468 INFO [32322]: QUERY_STRING = /member/viewRoom -- 22:19:43.468 INFO [32322]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:19:43.502 INFO [32322]: COREGRADE is stopping... -- 22:19:43.502 DEBUG [32322]: Closing database connection -- 22:19:43.502 SQL [32322]: pgsql_close() -- 22:20:16.284 INFO [32323]: COREGRADE is starting... -- 22:20:16.284 INFO [32323]: Version from config: 1.0 -- 22:20:16.284 DEBUG [32323]: Connecting to database... -- 22:20:16.284 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:20:16.284 SQL [32323]: pgsql_db_connect() -- 22:20:16.288 DEBUG [32323]: Database connection successful -- 22:20:16.288 INFO [32323]: _SERVER found -- 22:20:16.288 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 22:20:16.288 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 22:20:16.288 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 22:20:16.288 INFO [32323]: QUERY_STRING = /member/viewRoom -- 22:20:16.288 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:20:16.321 INFO [32323]: COREGRADE is stopping... -- 22:20:16.321 DEBUG [32323]: Closing database connection -- 22:20:16.321 SQL [32323]: pgsql_close() -- 22:26:22.122 INFO [32325]: COREGRADE is starting... -- 22:26:22.123 INFO [32325]: Version from config: 1.0 -- 22:26:22.123 DEBUG [32325]: Connecting to database... -- 22:26:22.123 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:26:22.123 SQL [32325]: pgsql_db_connect() -- 22:26:22.127 DEBUG [32325]: Database connection successful -- 22:26:22.127 INFO [32325]: _SERVER found -- 22:26:22.127 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 22:26:22.127 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 22:26:22.127 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 22:26:22.127 INFO [32325]: QUERY_STRING = /member/viewRoom -- 22:26:22.127 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:26:22.160 INFO [32325]: COREGRADE is stopping... -- 22:26:22.160 DEBUG [32325]: Closing database connection -- 22:26:22.161 SQL [32325]: pgsql_close() -- 22:27:24.567 INFO [32324]: COREGRADE is starting... -- 22:27:24.568 INFO [32324]: Version from config: 1.0 -- 22:27:24.568 DEBUG [32324]: Connecting to database... -- 22:27:24.568 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:24.568 SQL [32324]: pgsql_db_connect() -- 22:27:24.572 DEBUG [32324]: Database connection successful -- 22:27:24.572 INFO [32324]: _SERVER found -- 22:27:24.572 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 22:27:24.572 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 22:27:24.572 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 22:27:24.572 INFO [32324]: QUERY_STRING = /member/viewRoom -- 22:27:24.572 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:27:24.606 INFO [32324]: COREGRADE is stopping... -- 22:27:24.606 DEBUG [32324]: Closing database connection -- 22:27:24.606 SQL [32324]: pgsql_close() -- 22:28:04.633 INFO [32562]: COREGRADE is starting... -- 22:28:04.633 INFO [32562]: Version from config: 1.0 -- 22:28:04.633 DEBUG [32562]: Connecting to database... -- 22:28:04.633 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:28:04.633 SQL [32562]: pgsql_db_connect() -- 22:28:04.638 DEBUG [32562]: Database connection successful -- 22:28:04.638 INFO [32562]: _SERVER found -- 22:28:04.638 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 22:28:04.638 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 22:28:04.638 INFO [32562]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 22:28:04.638 INFO [32562]: QUERY_STRING = /member/viewRoom -- 22:28:04.638 INFO [32562]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:28:04.673 INFO [32562]: COREGRADE is stopping... -- 22:28:04.673 DEBUG [32562]: Closing database connection -- 22:28:04.673 SQL [32562]: pgsql_close() -- 22:54:23.581 INFO [742]: COREGRADE is starting... -- 22:54:23.581 INFO [742]: Version from config: 1.0 -- 22:54:23.581 DEBUG [742]: Connecting to database... -- 22:54:23.581 DEBUG [742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:54:23.581 SQL [742]: pgsql_db_connect() -- 22:54:23.586 DEBUG [742]: Database connection successful -- 22:54:23.586 INFO [742]: _SERVER found -- 22:54:23.586 INFO [742]: REMOTE_ADDR = 10.0.0.15 -- 22:54:23.586 INFO [742]: SERVER_NAME = oameye.works.coregrade.com -- 22:54:23.586 INFO [742]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 22:54:23.586 INFO [742]: QUERY_STRING = /member/viewRoom -- 22:54:23.586 INFO [742]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:54:23.621 INFO [742]: COREGRADE is stopping... -- 22:54:23.621 DEBUG [742]: Closing database connection -- 22:54:23.621 SQL [742]: pgsql_close() -- 22:54:23.670 INFO [742]: COREGRADE is starting... -- 22:54:23.670 INFO [742]: Version from config: 1.0 -- 22:54:23.670 DEBUG [742]: Connecting to database... -- 22:54:23.670 DEBUG [742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:54:23.670 SQL [742]: pgsql_db_connect() -- 22:54:23.674 DEBUG [742]: Database connection successful -- 22:54:23.674 INFO [742]: _SERVER found -- 22:54:23.674 INFO [742]: REMOTE_ADDR = 10.0.0.15 -- 22:54:23.674 INFO [742]: SERVER_NAME = oameye.works.coregrade.com -- 22:54:23.674 INFO [742]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 22:54:23.674 INFO [742]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 22:54:23.674 INFO [742]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:54:23.685 INFO [742]: COREGRADE is stopping... -- 22:54:23.685 DEBUG [742]: Closing database connection -- 22:54:23.685 SQL [742]: pgsql_close() -- 22:55:50.915 INFO [32321]: COREGRADE is starting... -- 22:55:50.916 INFO [32321]: Version from config: 1.0 -- 22:55:50.916 DEBUG [32321]: Connecting to database... -- 22:55:50.916 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:55:50.916 SQL [32321]: pgsql_db_connect() -- 22:55:50.920 DEBUG [32321]: Database connection successful -- 22:55:50.920 INFO [32321]: _SERVER found -- 22:55:50.920 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 22:55:50.920 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 22:55:50.920 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 22:55:50.920 INFO [32321]: QUERY_STRING = /member/viewRoom -- 22:55:50.920 INFO [32321]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:55:50.953 INFO [32321]: COREGRADE is stopping... -- 22:55:50.953 DEBUG [32321]: Closing database connection -- 22:55:50.953 SQL [32321]: pgsql_close() -- 23:18:06.703 INFO [743]: COREGRADE is starting... -- 23:18:06.704 INFO [743]: Version from config: 1.0 -- 23:18:06.704 DEBUG [743]: Connecting to database... -- 23:18:06.704 DEBUG [743]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:18:06.704 SQL [743]: pgsql_db_connect() -- 23:18:06.708 DEBUG [743]: Database connection successful -- 23:18:06.708 INFO [743]: _SERVER found -- 23:18:06.708 INFO [743]: REMOTE_ADDR = 10.0.0.15 -- 23:18:06.708 INFO [743]: SERVER_NAME = oameye.works.coregrade.com -- 23:18:06.708 INFO [743]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 23:18:06.708 INFO [743]: QUERY_STRING = /member/viewRoom -- 23:18:06.708 INFO [743]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 23:18:06.743 INFO [743]: COREGRADE is stopping... -- 23:18:06.743 DEBUG [743]: Closing database connection -- 23:18:06.743 SQL [743]: pgsql_close() -- 23:19:08.790 INFO [741]: COREGRADE is starting... -- 23:19:08.790 INFO [741]: Version from config: 1.0 -- 23:19:08.790 DEBUG [741]: Connecting to database... -- 23:19:08.790 DEBUG [741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:19:08.790 SQL [741]: pgsql_db_connect() -- 23:19:08.795 DEBUG [741]: Database connection successful -- 23:19:08.795 INFO [741]: _SERVER found -- 23:19:08.795 INFO [741]: REMOTE_ADDR = 10.0.0.15 -- 23:19:08.795 INFO [741]: SERVER_NAME = oameye.works.coregrade.com -- 23:19:08.795 INFO [741]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 23:19:08.795 INFO [741]: QUERY_STRING = /member/viewRoom -- 23:19:08.795 INFO [741]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 23:19:08.831 INFO [741]: COREGRADE is stopping... -- 23:19:08.831 DEBUG [741]: Closing database connection -- 23:19:08.831 SQL [741]: pgsql_close() -- 23:21:59.880 INFO [5948]: COREGRADE is starting... -- 23:21:59.881 INFO [5948]: Version from config: 1.0 -- 23:21:59.881 DEBUG [5948]: Connecting to database... -- 23:21:59.881 DEBUG [5948]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:21:59.881 SQL [5948]: pgsql_db_connect() -- 23:21:59.885 DEBUG [5948]: Database connection successful -- 23:21:59.885 INFO [5948]: _SERVER found -- 23:21:59.885 INFO [5948]: REMOTE_ADDR = 10.0.0.15 -- 23:21:59.885 INFO [5948]: SERVER_NAME = oameye.works.coregrade.com -- 23:21:59.885 INFO [5948]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 23:21:59.885 INFO [5948]: QUERY_STRING = /member/viewRoom -- 23:21:59.885 INFO [5948]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 23:21:59.919 INFO [5948]: COREGRADE is stopping... -- 23:21:59.919 DEBUG [5948]: Closing database connection -- 23:21:59.919 SQL [5948]: pgsql_close() -- 23:22:49.609 INFO [32322]: COREGRADE is starting... -- 23:22:49.609 INFO [32322]: Version from config: 1.0 -- 23:22:49.609 DEBUG [32322]: Connecting to database... -- 23:22:49.609 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:22:49.609 SQL [32322]: pgsql_db_connect() -- 23:22:49.613 DEBUG [32322]: Database connection successful -- 23:22:49.613 INFO [32322]: _SERVER found -- 23:22:49.613 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 23:22:49.613 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 23:22:49.613 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 23:22:49.613 INFO [32322]: QUERY_STRING = /member/viewRoom -- 23:22:49.613 INFO [32322]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 23:22:49.648 INFO [32322]: COREGRADE is stopping... -- 23:22:49.648 DEBUG [32322]: Closing database connection -- 23:22:49.648 SQL [32322]: pgsql_close() -- 23:23:16.580 INFO [32323]: COREGRADE is starting... -- 23:23:16.580 INFO [32323]: Version from config: 1.0 -- 23:23:16.580 DEBUG [32323]: Connecting to database... -- 23:23:16.580 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:23:16.580 SQL [32323]: pgsql_db_connect() -- 23:23:16.585 DEBUG [32323]: Database connection successful -- 23:23:16.585 INFO [32323]: _SERVER found -- 23:23:16.585 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 23:23:16.585 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 23:23:16.585 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 23:23:16.585 INFO [32323]: QUERY_STRING = /member/viewRoom -- 23:23:16.585 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 23:23:16.617 INFO [32323]: COREGRADE is stopping... -- 23:23:16.617 DEBUG [32323]: Closing database connection -- 23:23:16.617 SQL [32323]: pgsql_close() -- 23:23:48.245 INFO [32325]: COREGRADE is starting... -- 23:23:48.245 INFO [32325]: Version from config: 1.0 -- 23:23:48.245 DEBUG [32325]: Connecting to database... -- 23:23:48.245 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:23:48.245 SQL [32325]: pgsql_db_connect() -- 23:23:48.249 DEBUG [32325]: Database connection successful -- 23:23:48.249 INFO [32325]: _SERVER found -- 23:23:48.249 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 23:23:48.249 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 23:23:48.249 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 23:23:48.249 INFO [32325]: QUERY_STRING = /member/viewRoom -- 23:23:48.249 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 23:23:48.282 INFO [32325]: COREGRADE is stopping... -- 23:23:48.282 DEBUG [32325]: Closing database connection -- 23:23:48.282 SQL [32325]: pgsql_close() -- 23:24:34.008 INFO [32324]: COREGRADE is starting... -- 23:24:34.008 INFO [32324]: Version from config: 1.0 -- 23:24:34.008 DEBUG [32324]: Connecting to database... -- 23:24:34.008 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:24:34.008 SQL [32324]: pgsql_db_connect() -- 23:24:34.012 DEBUG [32324]: Database connection successful -- 23:24:34.012 INFO [32324]: _SERVER found -- 23:24:34.012 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 23:24:34.012 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 23:24:34.012 INFO [32324]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 23:24:34.012 INFO [32324]: QUERY_STRING = /member/viewRoom -- 23:24:34.012 INFO [32324]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 23:24:34.046 INFO [32324]: COREGRADE is stopping... -- 23:24:34.046 DEBUG [32324]: Closing database connection -- 23:24:34.046 SQL [32324]: pgsql_close() -- 23:54:55.761 INFO [32562]: COREGRADE is starting... -- 23:54:55.762 INFO [32562]: Version from config: 1.0 -- 23:54:55.762 DEBUG [32562]: Connecting to database... -- 23:54:55.762 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:54:55.762 SQL [32562]: pgsql_db_connect() -- 23:54:55.766 DEBUG [32562]: Database connection successful -- 23:54:55.766 INFO [32562]: _SERVER found -- 23:54:55.766 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 23:54:55.766 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 23:54:55.766 INFO [32562]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 23:54:55.766 INFO [32562]: QUERY_STRING = /member/viewRoom -- 23:54:55.766 INFO [32562]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 23:54:55.801 INFO [32562]: COREGRADE is stopping... -- 23:54:55.801 DEBUG [32562]: Closing database connection -- 23:54:55.801 SQL [32562]: pgsql_close() -- 23:55:44.396 INFO [742]: COREGRADE is starting... -- 23:55:44.397 INFO [742]: Version from config: 1.0 -- 23:55:44.397 DEBUG [742]: Connecting to database... -- 23:55:44.397 DEBUG [742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:55:44.397 SQL [742]: pgsql_db_connect() -- 23:55:44.401 DEBUG [742]: Database connection successful -- 23:55:44.401 INFO [742]: _SERVER found -- 23:55:44.401 INFO [742]: REMOTE_ADDR = 10.0.0.15 -- 23:55:44.401 INFO [742]: SERVER_NAME = oameye.works.coregrade.com -- 23:55:44.401 INFO [742]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 23:55:44.401 INFO [742]: QUERY_STRING = /member/viewRoom -- 23:55:44.401 INFO [742]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 23:55:44.435 INFO [742]: COREGRADE is stopping... -- 23:55:44.435 DEBUG [742]: Closing database connection -- 23:55:44.435 SQL [742]: pgsql_close() -- 23:56:34.444 INFO [32321]: COREGRADE is starting... -- 23:56:34.445 INFO [32321]: Version from config: 1.0 -- 23:56:34.445 DEBUG [32321]: Connecting to database... -- 23:56:34.445 DEBUG [32321]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:56:34.445 SQL [32321]: pgsql_db_connect() -- 23:56:34.449 DEBUG [32321]: Database connection successful -- 23:56:34.449 INFO [32321]: _SERVER found -- 23:56:34.449 INFO [32321]: REMOTE_ADDR = 10.0.0.15 -- 23:56:34.449 INFO [32321]: SERVER_NAME = oameye.works.coregrade.com -- 23:56:34.449 INFO [32321]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 23:56:34.449 INFO [32321]: QUERY_STRING = /member/viewRoom -- 23:56:34.449 INFO [32321]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 23:56:34.483 INFO [32321]: COREGRADE is stopping... -- 23:56:34.483 DEBUG [32321]: Closing database connection -- 23:56:34.483 SQL [32321]: pgsql_close() -- 23:57:09.117 INFO [743]: COREGRADE is starting... -- 23:57:09.117 INFO [743]: Version from config: 1.0 -- 23:57:09.117 DEBUG [743]: Connecting to database... -- 23:57:09.117 DEBUG [743]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:57:09.117 SQL [743]: pgsql_db_connect() -- 23:57:09.121 DEBUG [743]: Database connection successful -- 23:57:09.121 INFO [743]: _SERVER found -- 23:57:09.121 INFO [743]: REMOTE_ADDR = 10.0.0.15 -- 23:57:09.121 INFO [743]: SERVER_NAME = oameye.works.coregrade.com -- 23:57:09.121 INFO [743]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 23:57:09.121 INFO [743]: QUERY_STRING = /member/viewRoom -- 23:57:09.121 INFO [743]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 23:57:09.156 INFO [743]: COREGRADE is stopping... -- 23:57:09.156 DEBUG [743]: Closing database connection -- 23:57:09.156 SQL [743]: pgsql_close() -- 23:57:55.040 INFO [741]: COREGRADE is starting... -- 23:57:55.040 INFO [741]: Version from config: 1.0 -- 23:57:55.040 DEBUG [741]: Connecting to database... -- 23:57:55.040 DEBUG [741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:57:55.040 SQL [741]: pgsql_db_connect() -- 23:57:55.044 DEBUG [741]: Database connection successful -- 23:57:55.044 INFO [741]: _SERVER found -- 23:57:55.044 INFO [741]: REMOTE_ADDR = 10.0.0.15 -- 23:57:55.044 INFO [741]: SERVER_NAME = oameye.works.coregrade.com -- 23:57:55.044 INFO [741]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 23:57:55.044 INFO [741]: QUERY_STRING = /member/viewRoom -- 23:57:55.044 INFO [741]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 23:57:55.079 INFO [741]: COREGRADE is stopping... -- 23:57:55.079 DEBUG [741]: Closing database connection -- 23:57:55.079 SQL [741]: pgsql_close() -- 23:57:55.907 INFO [741]: COREGRADE is starting... -- 23:57:55.908 INFO [741]: Version from config: 1.0 -- 23:57:55.908 DEBUG [741]: Connecting to database... -- 23:57:55.908 DEBUG [741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:57:55.908 SQL [741]: pgsql_db_connect() -- 23:57:55.912 DEBUG [741]: Database connection successful -- 23:57:55.912 INFO [741]: _SERVER found -- 23:57:55.912 INFO [741]: REMOTE_ADDR = 10.0.0.15 -- 23:57:55.912 INFO [741]: SERVER_NAME = oameye.works.coregrade.com -- 23:57:55.912 INFO [741]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 23:57:55.912 INFO [741]: QUERY_STRING = /member/viewRoom -- 23:57:55.912 INFO [741]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 23:57:55.945 INFO [741]: COREGRADE is stopping... -- 23:57:55.945 DEBUG [741]: Closing database connection -- 23:57:55.945 SQL [741]: pgsql_close() -- 23:58:39.041 INFO [5948]: COREGRADE is starting... -- 23:58:39.041 INFO [5948]: Version from config: 1.0 -- 23:58:39.041 DEBUG [5948]: Connecting to database... -- 23:58:39.041 DEBUG [5948]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:58:39.041 SQL [5948]: pgsql_db_connect() -- 23:58:39.045 DEBUG [5948]: Database connection successful -- 23:58:39.045 INFO [5948]: _SERVER found -- 23:58:39.045 INFO [5948]: REMOTE_ADDR = 10.0.0.15 -- 23:58:39.045 INFO [5948]: SERVER_NAME = oameye.works.coregrade.com -- 23:58:39.045 INFO [5948]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 23:58:39.045 INFO [5948]: QUERY_STRING = /member/viewRoom -- 23:58:39.045 INFO [5948]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 23:58:39.078 INFO [5948]: COREGRADE is stopping... -- 23:58:39.078 DEBUG [5948]: Closing database connection -- 23:58:39.078 SQL [5948]: pgsql_close() -- 23:59:21.055 INFO [32322]: COREGRADE is starting... -- 23:59:21.056 INFO [32322]: Version from config: 1.0 -- 23:59:21.056 DEBUG [32322]: Connecting to database... -- 23:59:21.056 DEBUG [32322]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:59:21.056 SQL [32322]: pgsql_db_connect() -- 23:59:21.060 DEBUG [32322]: Database connection successful -- 23:59:21.060 INFO [32322]: _SERVER found -- 23:59:21.060 INFO [32322]: REMOTE_ADDR = 10.0.0.15 -- 23:59:21.060 INFO [32322]: SERVER_NAME = oameye.works.coregrade.com -- 23:59:21.060 INFO [32322]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 23:59:21.060 INFO [32322]: QUERY_STRING = /member/viewRoom -- 23:59:21.060 INFO [32322]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 23:59:21.093 INFO [32322]: COREGRADE is stopping... -- 23:59:21.093 DEBUG [32322]: Closing database connection -- 23:59:21.093 SQL [32322]: pgsql_close() -- 00:03:45.982 INFO [32323]: COREGRADE is starting... -- 00:03:45.982 INFO [32323]: Version from config: 1.0 -- 00:03:45.982 DEBUG [32323]: Connecting to database... -- 00:03:45.982 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:03:45.982 SQL [32323]: pgsql_db_connect() -- 00:03:45.987 DEBUG [32323]: Database connection successful -- 00:03:45.987 INFO [32323]: _SERVER found -- 00:03:45.987 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 00:03:45.987 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 00:03:45.987 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=9krkiv7sa8nu496qjtjeop1nd0kkjmo5 -- 00:03:45.987 INFO [32323]: QUERY_STRING = /member/classroom -- 00:03:45.987 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 00:03:46.034 INFO [32323]: COREGRADE is stopping... -- 00:03:46.034 DEBUG [32323]: Closing database connection -- 00:03:46.034 SQL [32323]: pgsql_close() -- 00:03:46.190 INFO [32323]: COREGRADE is starting... -- 00:03:46.190 INFO [32323]: Version from config: 1.0 -- 00:03:46.190 DEBUG [32323]: Connecting to database... -- 00:03:46.190 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:03:46.190 SQL [32323]: pgsql_db_connect() -- 00:03:46.194 DEBUG [32323]: Database connection successful -- 00:03:46.194 INFO [32323]: _SERVER found -- 00:03:46.194 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 00:03:46.194 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 00:03:46.194 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0he787bkc3e04ckhal0bgdu269lnnlh3 -- 00:03:46.194 INFO [32323]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:03:46.194 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 00:03:46.205 INFO [32323]: COREGRADE is stopping... -- 00:03:46.205 DEBUG [32323]: Closing database connection -- 00:03:46.205 SQL [32323]: pgsql_close() -- 00:03:47.300 INFO [32323]: COREGRADE is starting... -- 00:03:47.300 INFO [32323]: Version from config: 1.0 -- 00:03:47.300 DEBUG [32323]: Connecting to database... -- 00:03:47.300 DEBUG [32323]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:03:47.300 SQL [32323]: pgsql_db_connect() -- 00:03:47.304 DEBUG [32323]: Database connection successful -- 00:03:47.304 INFO [32323]: _SERVER found -- 00:03:47.304 INFO [32323]: REMOTE_ADDR = 10.0.0.15 -- 00:03:47.304 INFO [32323]: SERVER_NAME = oameye.works.coregrade.com -- 00:03:47.304 INFO [32323]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0he787bkc3e04ckhal0bgdu269lnnlh3 -- 00:03:47.304 INFO [32323]: QUERY_STRING = /member/viewRoom -- 00:03:47.304 INFO [32323]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 00:03:47.335 INFO [32323]: COREGRADE is stopping... -- 00:03:47.335 DEBUG [32323]: Closing database connection -- 00:03:47.335 SQL [32323]: pgsql_close() -- 00:03:53.920 INFO [32325]: COREGRADE is starting... -- 00:03:53.921 INFO [32325]: Version from config: 1.0 -- 00:03:53.921 DEBUG [32325]: Connecting to database... -- 00:03:53.921 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:03:53.921 SQL [32325]: pgsql_db_connect() -- 00:03:53.925 DEBUG [32325]: Database connection successful -- 00:03:53.925 INFO [32325]: _SERVER found -- 00:03:53.925 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 00:03:53.925 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 00:03:53.925 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0he787bkc3e04ckhal0bgdu269lnnlh3 -- 00:03:53.925 INFO [32325]: QUERY_STRING = /member/classroom -- 00:03:53.925 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 00:03:53.970 INFO [32325]: COREGRADE is stopping... -- 00:03:53.971 DEBUG [32325]: Closing database connection -- 00:03:53.971 SQL [32325]: pgsql_close() -- 00:03:54.095 INFO [32325]: COREGRADE is starting... -- 00:03:54.095 INFO [32325]: Version from config: 1.0 -- 00:03:54.095 DEBUG [32325]: Connecting to database... -- 00:03:54.095 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:03:54.095 SQL [32325]: pgsql_db_connect() -- 00:03:54.099 DEBUG [32325]: Database connection successful -- 00:03:54.099 INFO [32325]: _SERVER found -- 00:03:54.099 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 00:03:54.099 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 00:03:54.099 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0he787bkc3e04ckhal0bgdu269lnnlh3 -- 00:03:54.099 INFO [32325]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 00:03:54.099 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 00:03:54.111 INFO [32325]: COREGRADE is stopping... -- 00:03:54.111 DEBUG [32325]: Closing database connection -- 00:03:54.111 SQL [32325]: pgsql_close() -- 00:03:55.518 INFO [32325]: COREGRADE is starting... -- 00:03:55.518 INFO [32325]: Version from config: 1.0 -- 00:03:55.518 DEBUG [32325]: Connecting to database... -- 00:03:55.518 DEBUG [32325]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:03:55.518 SQL [32325]: pgsql_db_connect() -- 00:03:55.522 DEBUG [32325]: Database connection successful -- 00:03:55.522 INFO [32325]: _SERVER found -- 00:03:55.522 INFO [32325]: REMOTE_ADDR = 10.0.0.15 -- 00:03:55.522 INFO [32325]: SERVER_NAME = oameye.works.coregrade.com -- 00:03:55.522 INFO [32325]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0he787bkc3e04ckhal0bgdu269lnnlh3 -- 00:03:55.522 INFO [32325]: QUERY_STRING = /member/viewRoom -- 00:03:55.522 INFO [32325]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 00:03:55.553 INFO [32325]: COREGRADE is stopping... -- 00:03:55.553 DEBUG [32325]: Closing database connection -- 00:03:55.553 SQL [32325]: pgsql_close() -- 00:20:03.050 INFO [32324]: COREGRADE is starting... -- 00:20:03.050 INFO [32324]: Version from config: 1.0 -- 00:20:03.050 DEBUG [32324]: Connecting to database... -- 00:20:03.050 DEBUG [32324]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:20:03.050 SQL [32324]: pgsql_db_connect() -- 00:20:03.054 DEBUG [32324]: Database connection successful -- 00:20:03.054 INFO [32324]: _SERVER found -- 00:20:03.054 INFO [32324]: REMOTE_ADDR = 10.0.0.15 -- 00:20:03.054 INFO [32324]: SERVER_NAME = oameye.works.coregrade.com -- 00:20:03.054 INFO [32324]: QUERY_STRING = -- 00:20:03.054 INFO [32324]: HTTP_X_FORWARDED_FOR = 128.14.133.58 -- 00:20:03.088 INFO [32324]: COREGRADE is stopping... -- 00:20:03.088 DEBUG [32324]: Closing database connection -- 00:20:03.088 SQL [32324]: pgsql_close() -- 02:19:54.064 INFO [32562]: COREGRADE is starting... -- 02:19:54.064 INFO [32562]: Version from config: 1.0 -- 02:19:54.064 DEBUG [32562]: Connecting to database... -- 02:19:54.064 DEBUG [32562]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:19:54.064 SQL [32562]: pgsql_db_connect() -- 02:19:54.070 DEBUG [32562]: Database connection successful -- 02:19:54.070 INFO [32562]: _SERVER found -- 02:19:54.070 INFO [32562]: REMOTE_ADDR = 10.0.0.15 -- 02:19:54.070 INFO [32562]: SERVER_NAME = oameye.works.coregrade.com -- 02:19:54.070 INFO [32562]: QUERY_STRING = -- 02:19:54.070 INFO [32562]: HTTP_X_FORWARDED_FOR = 202.107.188.11 -- 02:19:54.107 INFO [32562]: COREGRADE is stopping... -- 02:19:54.108 DEBUG [32562]: Closing database connection -- 02:19:54.108 SQL [32562]: pgsql_close() -- 03:31:39.999 INFO [16093]: COREGRADE is starting... -- 03:31:39.000 INFO [16093]: Version from config: 1.0 -- 03:31:39.000 DEBUG [16093]: Connecting to database... -- 03:31:39.000 DEBUG [16093]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:31:39.000 SQL [16093]: pgsql_db_connect() -- 03:31:40.004 DEBUG [16093]: Database connection successful -- 03:31:40.004 INFO [16093]: _SERVER found -- 03:31:40.004 INFO [16093]: REMOTE_ADDR = 10.0.0.15 -- 03:31:40.004 INFO [16093]: SERVER_NAME = oameye.works.coregrade.com -- 03:31:40.004 INFO [16093]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800 -- 03:31:40.004 INFO [16093]: QUERY_STRING = -- 03:31:40.004 INFO [16093]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 03:31:40.050 INFO [16093]: COREGRADE is stopping... -- 03:31:40.050 DEBUG [16093]: Closing database connection -- 03:31:40.050 SQL [16093]: pgsql_close() -- 03:31:43.879 INFO [16093]: COREGRADE is starting... -- 03:31:43.879 INFO [16093]: Version from config: 1.0 -- 03:31:43.879 DEBUG [16093]: Connecting to database... -- 03:31:43.879 DEBUG [16093]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:31:43.879 SQL [16093]: pgsql_db_connect() -- 03:31:43.884 DEBUG [16093]: Database connection successful -- 03:31:43.884 INFO [16093]: _SERVER found -- 03:31:43.884 INFO [16093]: REMOTE_ADDR = 10.0.0.15 -- 03:31:43.884 INFO [16093]: SERVER_NAME = oameye.works.coregrade.com -- 03:31:43.884 INFO [16093]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=p7lkimr8958oltepbm9ga5jdp6v5sf1u; _gid=GA1.2.436899636.1587281501; _gat_gtag_UA_54829827_2=1 -- 03:31:43.884 INFO [16093]: QUERY_STRING = /assets/img/footer_1.jpg -- 03:31:43.884 INFO [16093]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 03:31:43.895 INFO [16093]: COREGRADE is stopping... -- 03:31:43.895 DEBUG [16093]: Closing database connection -- 03:31:43.895 SQL [16093]: pgsql_close() -- 03:31:48.428 INFO [16093]: COREGRADE is starting... -- 03:31:48.429 INFO [16093]: Version from config: 1.0 -- 03:31:48.429 DEBUG [16093]: Connecting to database... -- 03:31:48.429 DEBUG [16093]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:31:48.429 SQL [16093]: pgsql_db_connect() -- 03:31:48.434 INFO [16096]: COREGRADE is starting... -- 03:31:48.434 INFO [16096]: Version from config: 1.0 -- 03:31:48.434 DEBUG [16096]: Connecting to database... -- 03:31:48.434 DEBUG [16096]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:31:48.434 SQL [16096]: pgsql_db_connect() -- 03:31:48.433 DEBUG [16093]: Database connection successful -- 03:31:48.433 INFO [16093]: _SERVER found -- 03:31:48.433 INFO [16093]: REMOTE_ADDR = 10.0.0.15 -- 03:31:48.433 INFO [16093]: SERVER_NAME = oameye.works.coregrade.com -- 03:31:48.433 INFO [16093]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=p7lkimr8958oltepbm9ga5jdp6v5sf1u; _gid=GA1.2.436899636.1587281501; _gat_gtag_UA_54829827_2=1 -- 03:31:48.433 INFO [16093]: QUERY_STRING = /welcome/viewLogin -- 03:31:48.433 INFO [16093]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 03:31:48.464 INFO [16093]: COREGRADE is stopping... -- 03:31:48.464 DEBUG [16093]: Closing database connection -- 03:31:48.464 SQL [16093]: pgsql_close() -- 03:31:48.438 DEBUG [16096]: Database connection successful -- 03:31:48.438 INFO [16096]: _SERVER found -- 03:31:48.438 INFO [16096]: REMOTE_ADDR = 10.0.0.15 -- 03:31:48.438 INFO [16096]: SERVER_NAME = oameye.works.coregrade.com -- 03:31:48.438 INFO [16096]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=p7lkimr8958oltepbm9ga5jdp6v5sf1u; _gid=GA1.2.436899636.1587281501; _gat_gtag_UA_54829827_2=1 -- 03:31:48.438 INFO [16096]: QUERY_STRING = /auth -- 03:31:48.438 INFO [16096]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 03:31:48.477 INFO [16096]: COREGRADE is stopping... -- 03:31:48.477 DEBUG [16096]: Closing database connection -- 03:31:48.477 SQL [16096]: pgsql_close() -- 03:31:48.496 INFO [16096]: COREGRADE is starting... -- 03:31:48.496 INFO [16096]: Version from config: 1.0 -- 03:31:48.496 DEBUG [16096]: Connecting to database... -- 03:31:48.496 DEBUG [16096]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:31:48.496 SQL [16096]: pgsql_db_connect() -- 03:31:48.500 DEBUG [16096]: Database connection successful -- 03:31:48.500 INFO [16096]: _SERVER found -- 03:31:48.500 INFO [16096]: REMOTE_ADDR = 10.0.0.15 -- 03:31:48.500 INFO [16096]: SERVER_NAME = oameye.works.coregrade.com -- 03:31:48.500 INFO [16096]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=p7lkimr8958oltepbm9ga5jdp6v5sf1u; _gid=GA1.2.436899636.1587281501; _gat_gtag_UA_54829827_2=1 -- 03:31:48.500 INFO [16096]: QUERY_STRING = /auth/index -- 03:31:48.500 INFO [16096]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 03:31:48.532 INFO [16096]: COREGRADE is stopping... -- 03:31:48.532 DEBUG [16096]: Closing database connection -- 03:31:48.532 SQL [16096]: pgsql_close() -- 03:31:50.865 INFO [16096]: COREGRADE is starting... -- 03:31:50.865 INFO [16096]: Version from config: 1.0 -- 03:31:50.865 DEBUG [16096]: Connecting to database... -- 03:31:50.866 DEBUG [16096]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:31:50.866 SQL [16096]: pgsql_db_connect() -- 03:31:50.870 DEBUG [16096]: Database connection successful -- 03:31:50.870 INFO [16096]: _SERVER found -- 03:31:50.870 INFO [16096]: REMOTE_ADDR = 10.0.0.15 -- 03:31:50.870 INFO [16096]: SERVER_NAME = oameye.works.coregrade.com -- 03:31:50.870 INFO [16096]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=p7lkimr8958oltepbm9ga5jdp6v5sf1u; _gid=GA1.2.436899636.1587281501; _gat_gtag_UA_54829827_2=1 -- 03:31:50.870 INFO [16096]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 03:31:50.870 INFO [16096]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 03:31:50.881 INFO [16096]: COREGRADE is stopping... -- 03:31:50.881 DEBUG [16096]: Closing database connection -- 03:31:50.881 SQL [16096]: pgsql_close() -- 03:32:00.159 INFO [16097]: COREGRADE is starting... -- 03:32:00.160 INFO [16097]: Version from config: 1.0 -- 03:32:00.160 DEBUG [16097]: Connecting to database... -- 03:32:00.160 DEBUG [16097]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:32:00.160 SQL [16097]: pgsql_db_connect() -- 03:32:00.202 INFO [16097]: COREGRADE is starting... -- 03:32:00.202 INFO [16097]: Version from config: 1.0 -- 03:32:00.202 DEBUG [16097]: Connecting to database... -- 03:32:00.202 DEBUG [16097]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:32:00.202 SQL [16097]: pgsql_db_connect() -- 03:32:00.206 DEBUG [16097]: Database connection successful -- 03:32:00.206 INFO [16097]: _SERVER found -- 03:32:00.206 INFO [16097]: REMOTE_ADDR = 10.0.0.15 -- 03:32:00.206 INFO [16097]: SERVER_NAME = oameye.works.coregrade.com -- 03:32:00.206 INFO [16097]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=p7lkimr8958oltepbm9ga5jdp6v5sf1u; _gid=GA1.2.436899636.1587281501; _gat_gtag_UA_54829827_2=1 -- 03:32:00.206 INFO [16097]: QUERY_STRING = -- 03:32:00.206 INFO [16097]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 03:32:00.206 INFO [16097]: SystemStatus()09-09-********~************ -- 03:32:00.206 INFO [16097]: long coregrade_api_main(CVars in, CVars &out) -- 03:32:00.206 INFO [16097]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 03:32:00.206 INFO [16097]: account calls -- 03:32:00.206 INFO [16097]: account_calls() -- 03:32:00.206 INFO [16097]: LoginCoreGradeAccount() -- 03:32:00.206 FLOG_MAX [16097]: REQ_STRING(username) -- 03:32:00.206 FLOG_MAX [16097]: REQ_STRING(password) -- 03:32:00.206 FLOG_MAX [16097]: REQ_STRING(sessionid) -- 03:32:00.206 FLOG_MAX [16097]: long load_db_record( CVars &rec, const char * query, ... ) -- 03:32:00.206 SQL [16097]: pgsql_query() -- 03:32:00.206 SQL [16097]: About to run query: -- 03:32:00.206 SQL [16097]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678') -- 03:32:00.210 SQL [16097]: Found rows: 1 -- 03:32:00.210 FLOG_MAX [16097]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678')) num_cols=16 -- 03:32:00.210 INFO [16097]: long SessionCheck(long uid, const char *sessionid, int create ) -- 03:32:00.210 SQL [16097]: pgsql_exec() -- 03:32:00.210 SQL [16097]: About to run query: -- 03:32:00.210 SQL [16097]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 03:32:00.211 SQL [16097]: PQcmdTuples: 1 -- 03:32:00.211 SQL [16097]: Affected rows: 1 -- 03:32:00.211 SQL [16097]: pgsql_exec() -- 03:32:00.211 SQL [16097]: About to run query: -- 03:32:00.211 SQL [16097]: DELETE FROM members_session WHERE member_id=7 -- 03:32:00.211 SQL [16097]: PQcmdTuples: 0 -- 03:32:00.211 SQL [16097]: Affected rows: 0 -- 03:32:00.211 SQL [16097]: pgsql_query() -- 03:32:00.211 SQL [16097]: About to run query: -- 03:32:00.211 SQL [16097]: SELECT * FROM members_session WHERE member_id=7 AND session<>'E168460F55C9FD7D954EA124EAB284BD' -- 03:32:00.212 SQL [16097]: Found rows: 0 -- 03:32:00.212 SQL [16097]: Found rows: 0 -- 03:32:00.212 FLOG_MAX [16097]: long load_db_record( CVars &rec, const char * query, ... ) -- 03:32:00.212 SQL [16097]: pgsql_query() -- 03:32:00.212 SQL [16097]: About to run query: -- 03:32:00.212 SQL [16097]: SELECT * FROM members_session WHERE member_id=7 AND session='E168460F55C9FD7D954EA124EAB284BD' -- 03:32:00.213 SQL [16097]: Found rows: 0 -- 03:32:00.213 SQL [16097]: Found rows: 0 -- 03:32:00.213 FLOG_MAX [16097]: insert_db_record() -- 03:32:00.213 SQL [16097]: pgsql_exec() -- 03:32:00.213 SQL [16097]: About to run query: -- 03:32:00.213 SQL [16097]: INSERT INTO members_session (member_id,session) VALUES ('7','E168460F55C9FD7D954EA124EAB284BD') -- 03:32:00.214 SQL [16097]: PQcmdTuples: 1 -- 03:32:00.214 SQL [16097]: Affected rows: 1 -- 03:32:00.214 FLOG_MAX [16097]: SELECT currval('members_session_id_seq') -- 03:32:00.214 SQL [16097]: pgsql_query() -- 03:32:00.214 SQL [16097]: About to run query: -- 03:32:00.214 SQL [16097]: SELECT currval('members_session_id_seq') -- 03:32:00.214 SQL [16097]: Found rows: 1 -- 03:32:00.215 INFO [16097]: CreateDefaultPage() -- 03:32:00.215 FLOG_MAX [16097]: long load_db_record( CVars &rec, const char * query, ... ) -- 03:32:00.215 SQL [16097]: pgsql_query() -- 03:32:00.215 SQL [16097]: About to run query: -- 03:32:00.215 SQL [16097]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 03:32:00.215 SQL [16097]: Found rows: 1 -- 03:32:00.215 FLOG_MAX [16097]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 03:32:00.215 SQL [16097]: pgsql_query() -- 03:32:00.215 SQL [16097]: About to run query: -- 03:32:00.215 SQL [16097]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 03:32:00.215 SQL [16097]: Found rows: 1 -- 03:32:00.215 INFO [16097]: /CreateDefaultPage() -- 03:32:00.215 INFO [16097]: /LoginCoreGradeAccount() -- 03:32:00.215 INFO [16097]: RET: added=2020-02-05 09:42:12.816064 -- 03:32:00.215 INFO [16097]: RET: email=tokslaw@chiefsoft.com -- 03:32:00.215 INFO [16097]: RET: firstname=Tokunbo -- 03:32:00.215 INFO [16097]: RET: folder=5D06B187B1E2285A63AD1D0ECB670D98 -- 03:32:00.215 INFO [16097]: RET: id=7 -- 03:32:00.215 INFO [16097]: RET: last_login= -- 03:32:00.215 INFO [16097]: RET: lastname=Lawal -- 03:32:00.215 INFO [16097]: RET: loc=192.168.1.13 -- 03:32:00.215 INFO [16097]: RET: member_id=7 -- 03:32:00.215 INFO [16097]: RET: password=25d55ad283aa400af464c76d713c07ad -- 03:32:00.215 INFO [16097]: RET: phone= -- 03:32:00.215 INFO [16097]: RET: pid= -- 03:32:00.215 INFO [16097]: RET: result=YES I GET TO BACK END -- 03:32:00.215 INFO [16097]: RET: sessionid=E168460F55C9FD7D954EA124EAB284BD -- 03:32:00.215 INFO [16097]: RET: status=1 -- 03:32:00.215 INFO [16097]: RET: stauts=OK -- 03:32:00.215 INFO [16097]: RET: username=tokslaw@chiefsoft.com -- 03:32:00.215 INFO [16097]: RET: verified= -- 03:32:00.217 INFO [16097]: COREGRADE is stopping... -- 03:32:00.217 DEBUG [16097]: Closing database connection -- 03:32:00.217 SQL [16097]: pgsql_close() -- 03:32:00.164 DEBUG [16097]: Database connection successful -- 03:32:00.164 INFO [16097]: _SERVER found -- 03:32:00.164 INFO [16097]: REMOTE_ADDR = 10.0.0.15 -- 03:32:00.164 INFO [16097]: SERVER_NAME = oameye.works.coregrade.com -- 03:32:00.164 INFO [16097]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=p7lkimr8958oltepbm9ga5jdp6v5sf1u; _gid=GA1.2.436899636.1587281501; _gat_gtag_UA_54829827_2=1 -- 03:32:00.164 INFO [16097]: QUERY_STRING = /auth -- 03:32:00.164 INFO [16097]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 03:32:00.217 INFO [16097]: COREGRADE is stopping... -- 03:32:00.217 DEBUG [16097]: Closing database connection -- 03:32:00.218 SQL [16097]: pgsql_close() -- 03:32:00.247 INFO [16097]: COREGRADE is starting... -- 03:32:00.248 INFO [16097]: Version from config: 1.0 -- 03:32:00.248 DEBUG [16097]: Connecting to database... -- 03:32:00.248 DEBUG [16097]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:32:00.248 SQL [16097]: pgsql_db_connect() -- 03:32:00.252 DEBUG [16097]: Database connection successful -- 03:32:00.252 INFO [16097]: _SERVER found -- 03:32:00.252 INFO [16097]: REMOTE_ADDR = 10.0.0.15 -- 03:32:00.252 INFO [16097]: SERVER_NAME = oameye.works.coregrade.com -- 03:32:00.252 INFO [16097]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=p7lkimr8958oltepbm9ga5jdp6v5sf1u; _gid=GA1.2.436899636.1587281501; _gat_gtag_UA_54829827_2=1 -- 03:32:00.252 INFO [16097]: QUERY_STRING = /member/index -- 03:32:00.252 INFO [16097]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 03:32:00.293 INFO [16097]: COREGRADE is stopping... -- 03:32:00.293 DEBUG [16097]: Closing database connection -- 03:32:00.293 SQL [16097]: pgsql_close() -- 03:32:01.263 INFO [16097]: COREGRADE is starting... -- 03:32:01.263 INFO [16097]: Version from config: 1.0 -- 03:32:01.263 DEBUG [16097]: Connecting to database... -- 03:32:01.263 DEBUG [16097]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:32:01.263 SQL [16097]: pgsql_db_connect() -- 03:32:01.267 DEBUG [16097]: Database connection successful -- 03:32:01.267 INFO [16097]: _SERVER found -- 03:32:01.267 INFO [16097]: REMOTE_ADDR = 10.0.0.15 -- 03:32:01.267 INFO [16097]: SERVER_NAME = oameye.works.coregrade.com -- 03:32:01.267 INFO [16097]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=p7lkimr8958oltepbm9ga5jdp6v5sf1u; _gid=GA1.2.436899636.1587281501; _gat_gtag_UA_54829827_2=1 -- 03:32:01.267 INFO [16097]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 03:32:01.267 INFO [16097]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 03:32:01.278 INFO [16097]: COREGRADE is stopping... -- 03:32:01.278 DEBUG [16097]: Closing database connection -- 03:32:01.278 SQL [16097]: pgsql_close() -- 03:32:09.605 INFO [16131]: COREGRADE is starting... -- 03:32:09.605 INFO [16131]: Version from config: 1.0 -- 03:32:09.605 DEBUG [16131]: Connecting to database... -- 03:32:09.605 DEBUG [16131]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:32:09.605 SQL [16131]: pgsql_db_connect() -- 03:32:09.609 DEBUG [16131]: Database connection successful -- 03:32:09.609 INFO [16131]: _SERVER found -- 03:32:09.609 INFO [16131]: REMOTE_ADDR = 10.0.0.15 -- 03:32:09.609 INFO [16131]: SERVER_NAME = oameye.works.coregrade.com -- 03:32:09.609 INFO [16131]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=p7lkimr8958oltepbm9ga5jdp6v5sf1u; _gid=GA1.2.436899636.1587281501; _gat_gtag_UA_54829827_2=1 -- 03:32:09.609 INFO [16131]: QUERY_STRING = /member/configure -- 03:32:09.609 INFO [16131]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 03:32:09.660 INFO [16131]: COREGRADE is stopping... -- 03:32:09.660 DEBUG [16131]: Closing database connection -- 03:32:09.660 SQL [16131]: pgsql_close() -- 03:32:09.823 INFO [16131]: COREGRADE is starting... -- 03:32:09.823 INFO [16131]: Version from config: 1.0 -- 03:32:09.823 DEBUG [16131]: Connecting to database... -- 03:32:09.823 DEBUG [16131]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:32:09.823 SQL [16131]: pgsql_db_connect() -- 03:32:09.827 DEBUG [16131]: Database connection successful -- 03:32:09.827 INFO [16131]: _SERVER found -- 03:32:09.827 INFO [16131]: REMOTE_ADDR = 10.0.0.15 -- 03:32:09.827 INFO [16131]: SERVER_NAME = oameye.works.coregrade.com -- 03:32:09.827 INFO [16131]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=p7lkimr8958oltepbm9ga5jdp6v5sf1u; _gid=GA1.2.436899636.1587281501; _gat_gtag_UA_54829827_2=1 -- 03:32:09.827 INFO [16131]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 03:32:09.827 INFO [16131]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 03:32:09.839 INFO [16131]: COREGRADE is stopping... -- 03:32:09.839 DEBUG [16131]: Closing database connection -- 03:32:09.839 SQL [16131]: pgsql_close() -- 03:32:12.403 INFO [16131]: COREGRADE is starting... -- 03:32:12.403 INFO [16131]: Version from config: 1.0 -- 03:32:12.403 DEBUG [16131]: Connecting to database... -- 03:32:12.403 DEBUG [16131]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:32:12.403 SQL [16131]: pgsql_db_connect() -- 03:32:12.407 DEBUG [16131]: Database connection successful -- 03:32:12.407 INFO [16131]: _SERVER found -- 03:32:12.407 INFO [16131]: REMOTE_ADDR = 10.0.0.15 -- 03:32:12.407 INFO [16131]: SERVER_NAME = oameye.works.coregrade.com -- 03:32:12.407 INFO [16131]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=p7lkimr8958oltepbm9ga5jdp6v5sf1u; _gid=GA1.2.436899636.1587281501; _gat_gtag_UA_54829827_2=1 -- 03:32:12.407 INFO [16131]: QUERY_STRING = /member/classroom -- 03:32:12.407 INFO [16131]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 03:32:12.449 INFO [16131]: COREGRADE is stopping... -- 03:32:12.449 DEBUG [16131]: Closing database connection -- 03:32:12.449 SQL [16131]: pgsql_close() -- 03:32:15.244 INFO [16131]: COREGRADE is starting... -- 03:32:15.244 INFO [16131]: Version from config: 1.0 -- 03:32:15.244 DEBUG [16131]: Connecting to database... -- 03:32:15.244 DEBUG [16131]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:32:15.244 SQL [16131]: pgsql_db_connect() -- 03:32:15.249 DEBUG [16131]: Database connection successful -- 03:32:15.249 INFO [16131]: _SERVER found -- 03:32:15.249 INFO [16131]: REMOTE_ADDR = 10.0.0.15 -- 03:32:15.249 INFO [16131]: SERVER_NAME = oameye.works.coregrade.com -- 03:32:15.249 INFO [16131]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=p7lkimr8958oltepbm9ga5jdp6v5sf1u; _gid=GA1.2.436899636.1587281501; _gat_gtag_UA_54829827_2=1 -- 03:32:15.249 INFO [16131]: QUERY_STRING = /member/viewRoom -- 03:32:15.249 INFO [16131]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 03:32:15.284 INFO [16131]: COREGRADE is stopping... -- 03:32:15.284 DEBUG [16131]: Closing database connection -- 03:32:15.284 SQL [16131]: pgsql_close() -- 03:32:16.998 INFO [16131]: COREGRADE is starting... -- 03:32:16.998 INFO [16131]: Version from config: 1.0 -- 03:32:16.998 DEBUG [16131]: Connecting to database... -- 03:32:16.998 DEBUG [16131]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:32:16.998 SQL [16131]: pgsql_db_connect() -- 03:32:17.002 DEBUG [16131]: Database connection successful -- 03:32:17.002 INFO [16131]: _SERVER found -- 03:32:17.002 INFO [16131]: REMOTE_ADDR = 10.0.0.15 -- 03:32:17.002 INFO [16131]: SERVER_NAME = oameye.works.coregrade.com -- 03:32:17.002 INFO [16131]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=p7lkimr8958oltepbm9ga5jdp6v5sf1u; _gid=GA1.2.436899636.1587281501; _gat_gtag_UA_54829827_2=1 -- 03:32:17.002 INFO [16131]: QUERY_STRING = /member/viewRoom -- 03:32:17.002 INFO [16131]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 03:32:17.033 INFO [16131]: COREGRADE is stopping... -- 03:32:17.033 DEBUG [16131]: Closing database connection -- 03:32:17.033 SQL [16131]: pgsql_close() -- 03:32:36.693 INFO [16132]: COREGRADE is starting... -- 03:32:36.693 INFO [16132]: Version from config: 1.0 -- 03:32:36.693 DEBUG [16132]: Connecting to database... -- 03:32:36.693 DEBUG [16132]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:32:36.693 SQL [16132]: pgsql_db_connect() -- 03:32:36.697 DEBUG [16132]: Database connection successful -- 03:32:36.697 INFO [16132]: _SERVER found -- 03:32:36.697 INFO [16132]: REMOTE_ADDR = 10.0.0.15 -- 03:32:36.697 INFO [16132]: SERVER_NAME = oameye.works.coregrade.com -- 03:32:36.697 INFO [16132]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=p7lkimr8958oltepbm9ga5jdp6v5sf1u; _gid=GA1.2.436899636.1587281501; _gat_gtag_UA_54829827_2=1 -- 03:32:36.697 INFO [16132]: QUERY_STRING = /member/classroom -- 03:32:36.697 INFO [16132]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 03:32:36.747 INFO [16132]: COREGRADE is stopping... -- 03:32:36.747 DEBUG [16132]: Closing database connection -- 03:32:36.747 SQL [16132]: pgsql_close() -- 03:32:41.189 INFO [16132]: COREGRADE is starting... -- 03:32:41.189 INFO [16132]: Version from config: 1.0 -- 03:32:41.189 DEBUG [16132]: Connecting to database... -- 03:32:41.189 DEBUG [16132]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:32:41.189 SQL [16132]: pgsql_db_connect() -- 03:32:41.193 DEBUG [16132]: Database connection successful -- 03:32:41.193 INFO [16132]: _SERVER found -- 03:32:41.193 INFO [16132]: REMOTE_ADDR = 10.0.0.15 -- 03:32:41.193 INFO [16132]: SERVER_NAME = oameye.works.coregrade.com -- 03:32:41.193 INFO [16132]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=p7lkimr8958oltepbm9ga5jdp6v5sf1u; _gid=GA1.2.436899636.1587281501; _gat_gtag_UA_54829827_2=1 -- 03:32:41.193 INFO [16132]: QUERY_STRING = /member/viewRoom -- 03:32:41.193 INFO [16132]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 03:32:41.224 INFO [16132]: COREGRADE is stopping... -- 03:32:41.224 DEBUG [16132]: Closing database connection -- 03:32:41.224 SQL [16132]: pgsql_close() -- 03:32:49.794 INFO [16133]: COREGRADE is starting... -- 03:32:49.794 INFO [16133]: Version from config: 1.0 -- 03:32:49.794 DEBUG [16133]: Connecting to database... -- 03:32:49.794 DEBUG [16133]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:32:49.794 SQL [16133]: pgsql_db_connect() -- 03:32:49.798 DEBUG [16133]: Database connection successful -- 03:32:49.798 INFO [16133]: _SERVER found -- 03:32:49.798 INFO [16133]: REMOTE_ADDR = 10.0.0.15 -- 03:32:49.798 INFO [16133]: SERVER_NAME = oameye.works.coregrade.com -- 03:32:49.798 INFO [16133]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=p7lkimr8958oltepbm9ga5jdp6v5sf1u; _gid=GA1.2.436899636.1587281501 -- 03:32:49.798 INFO [16133]: QUERY_STRING = /member/viewRoom -- 03:32:49.798 INFO [16133]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 03:32:49.837 INFO [16133]: COREGRADE is stopping... -- 03:32:49.837 DEBUG [16133]: Closing database connection -- 03:32:49.837 SQL [16133]: pgsql_close() -- 03:32:52.783 INFO [16133]: COREGRADE is starting... -- 03:32:52.784 INFO [16133]: Version from config: 1.0 -- 03:32:52.784 DEBUG [16133]: Connecting to database... -- 03:32:52.784 DEBUG [16133]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:32:52.784 SQL [16133]: pgsql_db_connect() -- 03:32:52.788 DEBUG [16133]: Database connection successful -- 03:32:52.788 INFO [16133]: _SERVER found -- 03:32:52.788 INFO [16133]: REMOTE_ADDR = 10.0.0.15 -- 03:32:52.788 INFO [16133]: SERVER_NAME = oameye.works.coregrade.com -- 03:32:52.788 INFO [16133]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=p7lkimr8958oltepbm9ga5jdp6v5sf1u; _gid=GA1.2.436899636.1587281501 -- 03:32:52.788 INFO [16133]: QUERY_STRING = /member/viewRoom -- 03:32:52.788 INFO [16133]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 03:32:52.823 INFO [16133]: COREGRADE is stopping... -- 03:32:52.823 DEBUG [16133]: Closing database connection -- 03:32:52.823 SQL [16133]: pgsql_close() -- 03:32:55.095 INFO [16133]: COREGRADE is starting... -- 03:32:55.095 INFO [16133]: Version from config: 1.0 -- 03:32:55.095 DEBUG [16133]: Connecting to database... -- 03:32:55.095 DEBUG [16133]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:32:55.095 SQL [16133]: pgsql_db_connect() -- 03:32:55.099 DEBUG [16133]: Database connection successful -- 03:32:55.099 INFO [16133]: _SERVER found -- 03:32:55.099 INFO [16133]: REMOTE_ADDR = 10.0.0.15 -- 03:32:55.099 INFO [16133]: SERVER_NAME = oameye.works.coregrade.com -- 03:32:55.099 INFO [16133]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=p7lkimr8958oltepbm9ga5jdp6v5sf1u; _gid=GA1.2.436899636.1587281501 -- 03:32:55.099 INFO [16133]: QUERY_STRING = /member/viewRoom -- 03:32:55.099 INFO [16133]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 03:32:55.130 INFO [16133]: COREGRADE is stopping... -- 03:32:55.130 DEBUG [16133]: Closing database connection -- 03:32:55.130 SQL [16133]: pgsql_close() -- 03:32:57.842 INFO [16133]: COREGRADE is starting... -- 03:32:57.842 INFO [16133]: Version from config: 1.0 -- 03:32:57.842 DEBUG [16133]: Connecting to database... -- 03:32:57.843 DEBUG [16133]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:32:57.843 SQL [16133]: pgsql_db_connect() -- 03:32:57.847 DEBUG [16133]: Database connection successful -- 03:32:57.847 INFO [16133]: _SERVER found -- 03:32:57.847 INFO [16133]: REMOTE_ADDR = 10.0.0.15 -- 03:32:57.847 INFO [16133]: SERVER_NAME = oameye.works.coregrade.com -- 03:32:57.847 INFO [16133]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=p7lkimr8958oltepbm9ga5jdp6v5sf1u; _gid=GA1.2.436899636.1587281501 -- 03:32:57.847 INFO [16133]: QUERY_STRING = /member/viewRoom -- 03:32:57.847 INFO [16133]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 03:32:57.880 INFO [16133]: COREGRADE is stopping... -- 03:32:57.880 DEBUG [16133]: Closing database connection -- 03:32:57.880 SQL [16133]: pgsql_close() -- 03:58:18.451 INFO [16095]: COREGRADE is starting... -- 03:58:18.451 INFO [16095]: Version from config: 1.0 -- 03:58:18.451 DEBUG [16095]: Connecting to database... -- 03:58:18.451 DEBUG [16095]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:58:18.451 SQL [16095]: pgsql_db_connect() -- 03:58:18.456 DEBUG [16095]: Database connection successful -- 03:58:18.456 INFO [16095]: _SERVER found -- 03:58:18.456 INFO [16095]: REMOTE_ADDR = 10.0.0.15 -- 03:58:18.456 INFO [16095]: SERVER_NAME = oameye.works.coregrade.com -- 03:58:18.456 INFO [16095]: QUERY_STRING = /wp-login.php -- 03:58:18.456 INFO [16095]: HTTP_X_FORWARDED_FOR = 180.76.111.242 -- 03:58:18.473 INFO [16095]: COREGRADE is stopping... -- 03:58:18.473 DEBUG [16095]: Closing database connection -- 03:58:18.473 SQL [16095]: pgsql_close() -- 04:42:25.972 INFO [16094]: COREGRADE is starting... -- 04:42:25.972 INFO [16094]: Version from config: 1.0 -- 04:42:25.972 DEBUG [16094]: Connecting to database... -- 04:42:25.972 DEBUG [16094]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:42:25.972 SQL [16094]: pgsql_db_connect() -- 04:42:25.977 DEBUG [16094]: Database connection successful -- 04:42:25.977 INFO [16094]: _SERVER found -- 04:42:25.977 INFO [16094]: REMOTE_ADDR = 10.0.0.15 -- 04:42:25.977 INFO [16094]: SERVER_NAME = oameye.works.coregrade.com -- 04:42:25.977 INFO [16094]: QUERY_STRING = -- 04:42:25.977 INFO [16094]: HTTP_X_FORWARDED_FOR = 51.77.231.245 -- 04:42:26.024 INFO [16094]: COREGRADE is stopping... -- 04:42:26.024 DEBUG [16094]: Closing database connection -- 04:42:26.024 SQL [16094]: pgsql_close() -- 04:56:30.463 INFO [16093]: COREGRADE is starting... -- 04:56:30.463 INFO [16093]: Version from config: 1.0 -- 04:56:30.463 DEBUG [16093]: Connecting to database... -- 04:56:30.463 DEBUG [16093]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:56:30.463 SQL [16093]: pgsql_db_connect() -- 04:56:30.468 DEBUG [16093]: Database connection successful -- 04:56:30.468 INFO [16093]: _SERVER found -- 04:56:30.468 INFO [16093]: REMOTE_ADDR = 10.0.0.15 -- 04:56:30.468 INFO [16093]: SERVER_NAME = oameye.works.coregrade.com -- 04:56:30.468 INFO [16093]: QUERY_STRING = /.well-known/acme-challenge/gTzSZER2-8NubIGC1SWutWwZwmJ_HDJr5387DTqHLo8 -- 04:56:30.468 INFO [16093]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 04:56:30.482 INFO [16093]: COREGRADE is stopping... -- 04:56:30.482 DEBUG [16093]: Closing database connection -- 04:56:30.482 SQL [16093]: pgsql_close() -- 04:56:30.739 INFO [16097]: COREGRADE is starting... -- 04:56:30.739 INFO [16097]: Version from config: 1.0 -- 04:56:30.739 DEBUG [16097]: Connecting to database... -- 04:56:30.739 DEBUG [16097]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:56:30.739 SQL [16097]: pgsql_db_connect() -- 04:56:30.743 DEBUG [16097]: Database connection successful -- 04:56:30.743 INFO [16097]: _SERVER found -- 04:56:30.743 INFO [16097]: REMOTE_ADDR = 10.0.0.15 -- 04:56:30.743 INFO [16097]: SERVER_NAME = oameye.works.coregrade.com -- 04:56:30.743 INFO [16097]: QUERY_STRING = /.well-known/acme-challenge/gTzSZER2-8NubIGC1SWutWwZwmJ_HDJr5387DTqHLo8 -- 04:56:30.743 INFO [16097]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 04:56:30.757 INFO [16097]: COREGRADE is stopping... -- 04:56:30.757 DEBUG [16097]: Closing database connection -- 04:56:30.757 SQL [16097]: pgsql_close() -- 04:56:30.823 INFO [16097]: COREGRADE is starting... -- 04:56:30.823 INFO [16097]: Version from config: 1.0 -- 04:56:30.823 DEBUG [16097]: Connecting to database... -- 04:56:30.823 DEBUG [16097]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:56:30.823 SQL [16097]: pgsql_db_connect() -- 04:56:30.828 DEBUG [16097]: Database connection successful -- 04:56:30.828 INFO [16097]: _SERVER found -- 04:56:30.828 INFO [16097]: REMOTE_ADDR = 10.0.0.15 -- 04:56:30.828 INFO [16097]: SERVER_NAME = oameye.works.coregrade.com -- 04:56:30.828 INFO [16097]: QUERY_STRING = /.well-known/acme-challenge/gTzSZER2-8NubIGC1SWutWwZwmJ_HDJr5387DTqHLo8 -- 04:56:30.828 INFO [16097]: HTTP_X_FORWARDED_FOR = 52.28.236.88 -- 04:56:30.839 INFO [16097]: COREGRADE is stopping... -- 04:56:30.839 DEBUG [16097]: Closing database connection -- 04:56:30.839 SQL [16097]: pgsql_close() -- 05:56:48.488 INFO [16131]: COREGRADE is starting... -- 05:56:48.488 INFO [16131]: Version from config: 1.0 -- 05:56:48.488 DEBUG [16131]: Connecting to database... -- 05:56:48.488 DEBUG [16131]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:56:48.488 SQL [16131]: pgsql_db_connect() -- 05:56:48.493 DEBUG [16131]: Database connection successful -- 05:56:48.493 INFO [16131]: _SERVER found -- 05:56:48.493 INFO [16131]: REMOTE_ADDR = 10.0.0.15 -- 05:56:48.493 INFO [16131]: SERVER_NAME = oameye.works.coregrade.com -- 05:56:48.493 INFO [16131]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584 -- 05:56:48.493 INFO [16131]: QUERY_STRING = /auth -- 05:56:48.493 INFO [16131]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 05:56:48.530 INFO [16131]: COREGRADE is stopping... -- 05:56:48.530 DEBUG [16131]: Closing database connection -- 05:56:48.530 SQL [16131]: pgsql_close() -- 05:56:48.949 INFO [16131]: COREGRADE is starting... -- 05:56:48.949 INFO [16131]: Version from config: 1.0 -- 05:56:48.949 DEBUG [16131]: Connecting to database... -- 05:56:48.949 DEBUG [16131]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:56:48.949 SQL [16131]: pgsql_db_connect() -- 05:56:48.953 DEBUG [16131]: Database connection successful -- 05:56:48.953 INFO [16131]: _SERVER found -- 05:56:48.953 INFO [16131]: REMOTE_ADDR = 10.0.0.15 -- 05:56:48.953 INFO [16131]: SERVER_NAME = oameye.works.coregrade.com -- 05:56:48.953 INFO [16131]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=np8lj5i1g6a7igl7vv6sfrvfuntu2duo -- 05:56:48.953 INFO [16131]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 05:56:48.953 INFO [16131]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 05:56:48.964 INFO [16131]: COREGRADE is stopping... -- 05:56:48.964 DEBUG [16131]: Closing database connection -- 05:56:48.964 SQL [16131]: pgsql_close() -- 10:04:22.653 INFO [16132]: COREGRADE is starting... -- 10:04:22.653 INFO [16132]: Version from config: 1.0 -- 10:04:22.653 DEBUG [16132]: Connecting to database... -- 10:04:22.653 DEBUG [16132]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:04:22.653 SQL [16132]: pgsql_db_connect() -- 10:04:22.696 INFO [16132]: COREGRADE is starting... -- 10:04:22.696 INFO [16132]: Version from config: 1.0 -- 10:04:22.696 DEBUG [16132]: Connecting to database... -- 10:04:22.696 DEBUG [16132]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:04:22.696 SQL [16132]: pgsql_db_connect() -- 10:04:22.700 DEBUG [16132]: Database connection successful -- 10:04:22.700 INFO [16132]: _SERVER found -- 10:04:22.700 INFO [16132]: REMOTE_ADDR = 10.0.0.15 -- 10:04:22.700 INFO [16132]: SERVER_NAME = oameye.works.coregrade.com -- 10:04:22.700 INFO [16132]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584 -- 10:04:22.700 INFO [16132]: QUERY_STRING = -- 10:04:22.700 INFO [16132]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:04:22.700 INFO [16132]: SystemStatus()09-09-********~************ -- 10:04:22.700 INFO [16132]: long coregrade_api_main(CVars in, CVars &out) -- 10:04:22.700 INFO [16132]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 10:04:22.700 INFO [16132]: account calls -- 10:04:22.700 INFO [16132]: account_calls() -- 10:04:22.700 INFO [16132]: LoginCoreGradeAccount() -- 10:04:22.700 FLOG_MAX [16132]: REQ_STRING(username) -- 10:04:22.701 FLOG_MAX [16132]: REQ_STRING(password) -- 10:04:22.701 FLOG_MAX [16132]: REQ_STRING(sessionid) -- 10:04:22.701 FLOG_MAX [16132]: long load_db_record( CVars &rec, const char * query, ... ) -- 10:04:22.701 SQL [16132]: pgsql_query() -- 10:04:22.701 SQL [16132]: About to run query: -- 10:04:22.701 SQL [16132]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 10:04:22.705 SQL [16132]: Found rows: 1 -- 10:04:22.705 FLOG_MAX [16132]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 10:04:22.705 INFO [16132]: long SessionCheck(long uid, const char *sessionid, int create ) -- 10:04:22.705 SQL [16132]: pgsql_exec() -- 10:04:22.705 SQL [16132]: About to run query: -- 10:04:22.705 SQL [16132]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 10:04:22.707 SQL [16132]: PQcmdTuples: 1 -- 10:04:22.707 SQL [16132]: Affected rows: 1 -- 10:04:22.707 SQL [16132]: pgsql_exec() -- 10:04:22.707 SQL [16132]: About to run query: -- 10:04:22.707 SQL [16132]: DELETE FROM members_session WHERE member_id=5 -- 10:04:22.707 SQL [16132]: PQcmdTuples: 0 -- 10:04:22.707 SQL [16132]: Affected rows: 0 -- 10:04:22.707 SQL [16132]: pgsql_query() -- 10:04:22.707 SQL [16132]: About to run query: -- 10:04:22.707 SQL [16132]: SELECT * FROM members_session WHERE member_id=5 AND session<>'0612CBCBAB5C24E978B20B9DD808E3D5' -- 10:04:22.708 SQL [16132]: Found rows: 0 -- 10:04:22.708 SQL [16132]: Found rows: 0 -- 10:04:22.708 FLOG_MAX [16132]: long load_db_record( CVars &rec, const char * query, ... ) -- 10:04:22.708 SQL [16132]: pgsql_query() -- 10:04:22.708 SQL [16132]: About to run query: -- 10:04:22.708 SQL [16132]: SELECT * FROM members_session WHERE member_id=5 AND session='0612CBCBAB5C24E978B20B9DD808E3D5' -- 10:04:22.708 SQL [16132]: Found rows: 0 -- 10:04:22.708 SQL [16132]: Found rows: 0 -- 10:04:22.708 FLOG_MAX [16132]: insert_db_record() -- 10:04:22.708 SQL [16132]: pgsql_exec() -- 10:04:22.708 SQL [16132]: About to run query: -- 10:04:22.708 SQL [16132]: INSERT INTO members_session (member_id,session) VALUES ('5','0612CBCBAB5C24E978B20B9DD808E3D5') -- 10:04:22.710 SQL [16132]: PQcmdTuples: 1 -- 10:04:22.710 SQL [16132]: Affected rows: 1 -- 10:04:22.710 FLOG_MAX [16132]: SELECT currval('members_session_id_seq') -- 10:04:22.710 SQL [16132]: pgsql_query() -- 10:04:22.710 SQL [16132]: About to run query: -- 10:04:22.710 SQL [16132]: SELECT currval('members_session_id_seq') -- 10:04:22.710 SQL [16132]: Found rows: 1 -- 10:04:22.710 INFO [16132]: CreateDefaultPage() -- 10:04:22.710 FLOG_MAX [16132]: long load_db_record( CVars &rec, const char * query, ... ) -- 10:04:22.710 SQL [16132]: pgsql_query() -- 10:04:22.710 SQL [16132]: About to run query: -- 10:04:22.710 SQL [16132]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 10:04:22.711 SQL [16132]: Found rows: 1 -- 10:04:22.711 FLOG_MAX [16132]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 10:04:22.711 SQL [16132]: pgsql_query() -- 10:04:22.711 SQL [16132]: About to run query: -- 10:04:22.711 SQL [16132]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 10:04:22.711 SQL [16132]: Found rows: 1 -- 10:04:22.711 INFO [16132]: /CreateDefaultPage() -- 10:04:22.711 INFO [16132]: /LoginCoreGradeAccount() -- 10:04:22.711 INFO [16132]: RET: added=2020-02-05 06:47:23.982154 -- 10:04:22.711 INFO [16132]: RET: email=ameye+11@chiefsoft.com -- 10:04:22.711 INFO [16132]: RET: firstname=Olu -- 10:04:22.711 INFO [16132]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 10:04:22.711 INFO [16132]: RET: id=5 -- 10:04:22.711 INFO [16132]: RET: last_login= -- 10:04:22.711 INFO [16132]: RET: lastname=Amey -- 10:04:22.711 INFO [16132]: RET: loc=192.168.1.13 -- 10:04:22.711 INFO [16132]: RET: member_id=5 -- 10:04:22.711 INFO [16132]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 10:04:22.711 INFO [16132]: RET: phone= -- 10:04:22.711 INFO [16132]: RET: pid= -- 10:04:22.711 INFO [16132]: RET: result=YES I GET TO BACK END -- 10:04:22.711 INFO [16132]: RET: sessionid=0612CBCBAB5C24E978B20B9DD808E3D5 -- 10:04:22.711 INFO [16132]: RET: status=1 -- 10:04:22.711 INFO [16132]: RET: stauts=OK -- 10:04:22.711 INFO [16132]: RET: username=ameye+11@chiefsoft.com -- 10:04:22.711 INFO [16132]: RET: verified= -- 10:04:22.713 INFO [16132]: COREGRADE is stopping... -- 10:04:22.713 DEBUG [16132]: Closing database connection -- 10:04:22.713 SQL [16132]: pgsql_close() -- 10:04:22.659 DEBUG [16132]: Database connection successful -- 10:04:22.659 INFO [16132]: _SERVER found -- 10:04:22.659 INFO [16132]: REMOTE_ADDR = 10.0.0.15 -- 10:04:22.659 INFO [16132]: SERVER_NAME = oameye.works.coregrade.com -- 10:04:22.659 INFO [16132]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584 -- 10:04:22.659 INFO [16132]: QUERY_STRING = /auth -- 10:04:22.659 INFO [16132]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:04:22.713 INFO [16132]: COREGRADE is stopping... -- 10:04:22.713 DEBUG [16132]: Closing database connection -- 10:04:22.713 SQL [16132]: pgsql_close() -- 10:04:22.744 INFO [16132]: COREGRADE is starting... -- 10:04:22.744 INFO [16132]: Version from config: 1.0 -- 10:04:22.744 DEBUG [16132]: Connecting to database... -- 10:04:22.744 DEBUG [16132]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:04:22.744 SQL [16132]: pgsql_db_connect() -- 10:04:22.748 DEBUG [16132]: Database connection successful -- 10:04:22.748 INFO [16132]: _SERVER found -- 10:04:22.748 INFO [16132]: REMOTE_ADDR = 10.0.0.15 -- 10:04:22.748 INFO [16132]: SERVER_NAME = oameye.works.coregrade.com -- 10:04:22.748 INFO [16132]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=iv03ig3cq18csafc5np7eo2bjfeabrjs -- 10:04:22.748 INFO [16132]: QUERY_STRING = /member/index -- 10:04:22.748 INFO [16132]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:04:22.789 INFO [16132]: COREGRADE is stopping... -- 10:04:22.789 DEBUG [16132]: Closing database connection -- 10:04:22.789 SQL [16132]: pgsql_close() -- 10:04:23.035 INFO [16095]: COREGRADE is starting... -- 10:04:23.035 INFO [16095]: Version from config: 1.0 -- 10:04:23.036 DEBUG [16095]: Connecting to database... -- 10:04:23.036 DEBUG [16095]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:04:23.036 SQL [16095]: pgsql_db_connect() -- 10:04:23.040 DEBUG [16095]: Database connection successful -- 10:04:23.040 INFO [16095]: _SERVER found -- 10:04:23.040 INFO [16095]: REMOTE_ADDR = 10.0.0.15 -- 10:04:23.040 INFO [16095]: SERVER_NAME = oameye.works.coregrade.com -- 10:04:23.040 INFO [16095]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=iv03ig3cq18csafc5np7eo2bjfeabrjs -- 10:04:23.040 INFO [16095]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:04:23.040 INFO [16095]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:04:23.054 INFO [16095]: COREGRADE is stopping... -- 10:04:23.054 DEBUG [16095]: Closing database connection -- 10:04:23.054 SQL [16095]: pgsql_close() -- 10:04:28.655 INFO [16094]: COREGRADE is starting... -- 10:04:28.655 INFO [16094]: Version from config: 1.0 -- 10:04:28.655 DEBUG [16094]: Connecting to database... -- 10:04:28.655 DEBUG [16094]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:04:28.655 SQL [16094]: pgsql_db_connect() -- 10:04:28.660 DEBUG [16094]: Database connection successful -- 10:04:28.660 INFO [16094]: _SERVER found -- 10:04:28.660 INFO [16094]: REMOTE_ADDR = 10.0.0.15 -- 10:04:28.660 INFO [16094]: SERVER_NAME = oameye.works.coregrade.com -- 10:04:28.660 INFO [16094]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=iv03ig3cq18csafc5np7eo2bjfeabrjs -- 10:04:28.660 INFO [16094]: QUERY_STRING = /member/mycalendar -- 10:04:28.660 INFO [16094]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:04:28.700 INFO [16094]: COREGRADE is stopping... -- 10:04:28.700 DEBUG [16094]: Closing database connection -- 10:04:28.700 SQL [16094]: pgsql_close() -- 10:04:30.575 INFO [16094]: COREGRADE is starting... -- 10:04:30.575 INFO [16094]: Version from config: 1.0 -- 10:04:30.575 DEBUG [16094]: Connecting to database... -- 10:04:30.575 DEBUG [16094]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:04:30.575 SQL [16094]: pgsql_db_connect() -- 10:04:30.579 DEBUG [16094]: Database connection successful -- 10:04:30.579 INFO [16094]: _SERVER found -- 10:04:30.579 INFO [16094]: REMOTE_ADDR = 10.0.0.15 -- 10:04:30.579 INFO [16094]: SERVER_NAME = oameye.works.coregrade.com -- 10:04:30.579 INFO [16094]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=iv03ig3cq18csafc5np7eo2bjfeabrjs -- 10:04:30.579 INFO [16094]: QUERY_STRING = /member/classroom -- 10:04:30.579 INFO [16094]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:04:30.622 INFO [16094]: COREGRADE is stopping... -- 10:04:30.622 DEBUG [16094]: Closing database connection -- 10:04:30.622 SQL [16094]: pgsql_close() -- 10:04:32.373 INFO [16094]: COREGRADE is starting... -- 10:04:32.373 INFO [16094]: Version from config: 1.0 -- 10:04:32.373 DEBUG [16094]: Connecting to database... -- 10:04:32.374 DEBUG [16094]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:04:32.374 SQL [16094]: pgsql_db_connect() -- 10:04:32.378 DEBUG [16094]: Database connection successful -- 10:04:32.378 INFO [16094]: _SERVER found -- 10:04:32.378 INFO [16094]: REMOTE_ADDR = 10.0.0.15 -- 10:04:32.378 INFO [16094]: SERVER_NAME = oameye.works.coregrade.com -- 10:04:32.378 INFO [16094]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=iv03ig3cq18csafc5np7eo2bjfeabrjs -- 10:04:32.378 INFO [16094]: QUERY_STRING = /member/viewRoom -- 10:04:32.378 INFO [16094]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:04:32.411 INFO [16094]: COREGRADE is stopping... -- 10:04:32.411 DEBUG [16094]: Closing database connection -- 10:04:32.411 SQL [16094]: pgsql_close() -- 10:04:34.547 INFO [16094]: COREGRADE is starting... -- 10:04:34.548 INFO [16094]: Version from config: 1.0 -- 10:04:34.548 DEBUG [16094]: Connecting to database... -- 10:04:34.548 DEBUG [16094]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:04:34.548 SQL [16094]: pgsql_db_connect() -- 10:04:34.552 DEBUG [16094]: Database connection successful -- 10:04:34.552 INFO [16094]: _SERVER found -- 10:04:34.552 INFO [16094]: REMOTE_ADDR = 10.0.0.15 -- 10:04:34.552 INFO [16094]: SERVER_NAME = oameye.works.coregrade.com -- 10:04:34.552 INFO [16094]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=iv03ig3cq18csafc5np7eo2bjfeabrjs -- 10:04:34.552 INFO [16094]: QUERY_STRING = /member/viewRoom -- 10:04:34.552 INFO [16094]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:04:34.583 INFO [16094]: COREGRADE is stopping... -- 10:04:34.583 DEBUG [16094]: Closing database connection -- 10:04:34.583 SQL [16094]: pgsql_close() -- 10:24:29.144 INFO [16093]: COREGRADE is starting... -- 10:24:29.144 INFO [16093]: Version from config: 1.0 -- 10:24:29.144 DEBUG [16093]: Connecting to database... -- 10:24:29.144 DEBUG [16093]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:24:29.144 SQL [16093]: pgsql_db_connect() -- 10:24:29.149 DEBUG [16093]: Database connection successful -- 10:24:29.149 INFO [16093]: _SERVER found -- 10:24:29.149 INFO [16093]: REMOTE_ADDR = 10.0.0.15 -- 10:24:29.149 INFO [16093]: SERVER_NAME = oameye.works.coregrade.com -- 10:24:29.149 INFO [16093]: QUERY_STRING = -- 10:24:29.149 INFO [16093]: HTTP_X_FORWARDED_FOR = 165.227.227.25 -- 10:24:29.189 INFO [16093]: COREGRADE is stopping... -- 10:24:29.189 DEBUG [16093]: Closing database connection -- 10:24:29.189 SQL [16093]: pgsql_close() -- 10:26:39.742 INFO [16096]: COREGRADE is starting... -- 10:26:39.743 INFO [16096]: Version from config: 1.0 -- 10:26:39.743 DEBUG [16096]: Connecting to database... -- 10:26:39.743 DEBUG [16096]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:26:39.743 SQL [16096]: pgsql_db_connect() -- 10:26:39.747 DEBUG [16096]: Database connection successful -- 10:26:39.747 INFO [16096]: _SERVER found -- 10:26:39.747 INFO [16096]: REMOTE_ADDR = 10.0.0.15 -- 10:26:39.747 INFO [16096]: SERVER_NAME = oameye.works.coregrade.com -- 10:26:39.747 INFO [16096]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=iv03ig3cq18csafc5np7eo2bjfeabrjs -- 10:26:39.747 INFO [16096]: QUERY_STRING = /member/viewRoom -- 10:26:39.747 INFO [16096]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:26:39.782 INFO [16096]: COREGRADE is stopping... -- 10:26:39.783 DEBUG [16096]: Closing database connection -- 10:26:39.783 SQL [16096]: pgsql_close() -- 10:28:01.585 INFO [16097]: COREGRADE is starting... -- 10:28:01.585 INFO [16097]: Version from config: 1.0 -- 10:28:01.585 DEBUG [16097]: Connecting to database... -- 10:28:01.585 DEBUG [16097]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:28:01.585 SQL [16097]: pgsql_db_connect() -- 10:28:01.590 DEBUG [16097]: Database connection successful -- 10:28:01.590 INFO [16097]: _SERVER found -- 10:28:01.590 INFO [16097]: REMOTE_ADDR = 10.0.0.15 -- 10:28:01.590 INFO [16097]: SERVER_NAME = oameye.works.coregrade.com -- 10:28:01.590 INFO [16097]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=iv03ig3cq18csafc5np7eo2bjfeabrjs -- 10:28:01.590 INFO [16097]: QUERY_STRING = /member/viewRoom -- 10:28:01.590 INFO [16097]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:28:01.623 INFO [16097]: COREGRADE is stopping... -- 10:28:01.623 DEBUG [16097]: Closing database connection -- 10:28:01.623 SQL [16097]: pgsql_close() -- 10:28:23.355 INFO [16131]: COREGRADE is starting... -- 10:28:23.355 INFO [16131]: Version from config: 1.0 -- 10:28:23.355 DEBUG [16131]: Connecting to database... -- 10:28:23.355 DEBUG [16131]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:28:23.355 SQL [16131]: pgsql_db_connect() -- 10:28:23.360 DEBUG [16131]: Database connection successful -- 10:28:23.360 INFO [16131]: _SERVER found -- 10:28:23.360 INFO [16131]: REMOTE_ADDR = 10.0.0.15 -- 10:28:23.360 INFO [16131]: SERVER_NAME = oameye.works.coregrade.com -- 10:28:23.360 INFO [16131]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=iv03ig3cq18csafc5np7eo2bjfeabrjs -- 10:28:23.360 INFO [16131]: QUERY_STRING = /member/viewRoom -- 10:28:23.360 INFO [16131]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:28:23.393 INFO [16131]: COREGRADE is stopping... -- 10:28:23.393 DEBUG [16131]: Closing database connection -- 10:28:23.393 SQL [16131]: pgsql_close() -- 10:28:25.397 INFO [16131]: COREGRADE is starting... -- 10:28:25.397 INFO [16131]: Version from config: 1.0 -- 10:28:25.397 DEBUG [16131]: Connecting to database... -- 10:28:25.397 DEBUG [16131]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:28:25.397 SQL [16131]: pgsql_db_connect() -- 10:28:25.402 DEBUG [16131]: Database connection successful -- 10:28:25.402 INFO [16131]: _SERVER found -- 10:28:25.402 INFO [16131]: REMOTE_ADDR = 10.0.0.15 -- 10:28:25.402 INFO [16131]: SERVER_NAME = oameye.works.coregrade.com -- 10:28:25.402 INFO [16131]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=iv03ig3cq18csafc5np7eo2bjfeabrjs -- 10:28:25.402 INFO [16131]: QUERY_STRING = /member/viewRoom -- 10:28:25.402 INFO [16131]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:28:25.434 INFO [16131]: COREGRADE is stopping... -- 10:28:25.434 DEBUG [16131]: Closing database connection -- 10:28:25.434 SQL [16131]: pgsql_close() -- 10:28:55.630 INFO [16095]: COREGRADE is starting... -- 10:28:55.630 INFO [16095]: Version from config: 1.0 -- 10:28:55.630 DEBUG [16095]: Connecting to database... -- 10:28:55.630 DEBUG [16095]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:28:55.630 SQL [16095]: pgsql_db_connect() -- 10:28:55.635 DEBUG [16095]: Database connection successful -- 10:28:55.635 INFO [16095]: _SERVER found -- 10:28:55.635 INFO [16095]: REMOTE_ADDR = 10.0.0.15 -- 10:28:55.635 INFO [16095]: SERVER_NAME = oameye.works.coregrade.com -- 10:28:55.635 INFO [16095]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=iv03ig3cq18csafc5np7eo2bjfeabrjs -- 10:28:55.635 INFO [16095]: QUERY_STRING = /member/viewRoom -- 10:28:55.635 INFO [16095]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:28:55.672 INFO [16095]: COREGRADE is stopping... -- 10:28:55.672 DEBUG [16095]: Closing database connection -- 10:28:55.672 SQL [16095]: pgsql_close() -- 10:30:59.240 INFO [16132]: COREGRADE is starting... -- 10:30:59.240 INFO [16132]: Version from config: 1.0 -- 10:30:59.240 DEBUG [16132]: Connecting to database... -- 10:30:59.240 DEBUG [16132]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:30:59.240 SQL [16132]: pgsql_db_connect() -- 10:30:59.245 DEBUG [16132]: Database connection successful -- 10:30:59.245 INFO [16132]: _SERVER found -- 10:30:59.245 INFO [16132]: REMOTE_ADDR = 10.0.0.15 -- 10:30:59.245 INFO [16132]: SERVER_NAME = oameye.works.coregrade.com -- 10:30:59.245 INFO [16132]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=iv03ig3cq18csafc5np7eo2bjfeabrjs -- 10:30:59.245 INFO [16132]: QUERY_STRING = /member/classroom -- 10:30:59.245 INFO [16132]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:30:59.294 INFO [16132]: COREGRADE is stopping... -- 10:30:59.294 DEBUG [16132]: Closing database connection -- 10:30:59.294 SQL [16132]: pgsql_close() -- 10:30:59.396 INFO [16132]: COREGRADE is starting... -- 10:30:59.397 INFO [16132]: Version from config: 1.0 -- 10:30:59.397 DEBUG [16132]: Connecting to database... -- 10:30:59.397 DEBUG [16132]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:30:59.397 SQL [16132]: pgsql_db_connect() -- 10:30:59.402 DEBUG [16132]: Database connection successful -- 10:30:59.402 INFO [16132]: _SERVER found -- 10:30:59.402 INFO [16132]: REMOTE_ADDR = 10.0.0.15 -- 10:30:59.402 INFO [16132]: SERVER_NAME = oameye.works.coregrade.com -- 10:30:59.402 INFO [16132]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=pksjs5avg4sjrcldh5qv38gogec7jr1b -- 10:30:59.402 INFO [16132]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:30:59.402 INFO [16132]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:30:59.413 INFO [16132]: COREGRADE is stopping... -- 10:30:59.413 DEBUG [16132]: Closing database connection -- 10:30:59.414 SQL [16132]: pgsql_close() -- 10:31:00.757 INFO [16132]: COREGRADE is starting... -- 10:31:00.758 INFO [16132]: Version from config: 1.0 -- 10:31:00.758 DEBUG [16132]: Connecting to database... -- 10:31:00.758 DEBUG [16132]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:31:00.758 SQL [16132]: pgsql_db_connect() -- 10:31:00.763 DEBUG [16132]: Database connection successful -- 10:31:00.763 INFO [16132]: _SERVER found -- 10:31:00.763 INFO [16132]: REMOTE_ADDR = 10.0.0.15 -- 10:31:00.763 INFO [16132]: SERVER_NAME = oameye.works.coregrade.com -- 10:31:00.763 INFO [16132]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=pksjs5avg4sjrcldh5qv38gogec7jr1b -- 10:31:00.763 INFO [16132]: QUERY_STRING = /member/viewRoom -- 10:31:00.763 INFO [16132]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:31:00.795 INFO [16132]: COREGRADE is stopping... -- 10:31:00.796 DEBUG [16132]: Closing database connection -- 10:31:00.796 SQL [16132]: pgsql_close() -- 10:32:13.490 INFO [16133]: COREGRADE is starting... -- 10:32:13.490 INFO [16133]: Version from config: 1.0 -- 10:32:13.490 DEBUG [16133]: Connecting to database... -- 10:32:13.490 DEBUG [16133]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:32:13.490 SQL [16133]: pgsql_db_connect() -- 10:32:13.495 DEBUG [16133]: Database connection successful -- 10:32:13.495 INFO [16133]: _SERVER found -- 10:32:13.495 INFO [16133]: REMOTE_ADDR = 10.0.0.15 -- 10:32:13.495 INFO [16133]: SERVER_NAME = oameye.works.coregrade.com -- 10:32:13.495 INFO [16133]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=pksjs5avg4sjrcldh5qv38gogec7jr1b -- 10:32:13.495 INFO [16133]: QUERY_STRING = /member/viewRoom -- 10:32:13.495 INFO [16133]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:32:13.529 INFO [16133]: COREGRADE is stopping... -- 10:32:13.529 DEBUG [16133]: Closing database connection -- 10:32:13.529 SQL [16133]: pgsql_close() -- 10:32:19.698 INFO [16094]: COREGRADE is starting... -- 10:32:19.698 INFO [16094]: Version from config: 1.0 -- 10:32:19.698 DEBUG [16094]: Connecting to database... -- 10:32:19.698 DEBUG [16094]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:32:19.698 SQL [16094]: pgsql_db_connect() -- 10:32:19.703 DEBUG [16094]: Database connection successful -- 10:32:19.703 INFO [16094]: _SERVER found -- 10:32:19.703 INFO [16094]: REMOTE_ADDR = 10.0.0.15 -- 10:32:19.703 INFO [16094]: SERVER_NAME = oameye.works.coregrade.com -- 10:32:19.703 INFO [16094]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=pksjs5avg4sjrcldh5qv38gogec7jr1b -- 10:32:19.703 INFO [16094]: QUERY_STRING = /member/classroom -- 10:32:19.703 INFO [16094]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:32:19.748 INFO [16094]: COREGRADE is stopping... -- 10:32:19.748 DEBUG [16094]: Closing database connection -- 10:32:19.748 SQL [16094]: pgsql_close() -- 10:32:19.877 INFO [16094]: COREGRADE is starting... -- 10:32:19.878 INFO [16094]: Version from config: 1.0 -- 10:32:19.878 DEBUG [16094]: Connecting to database... -- 10:32:19.878 DEBUG [16094]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:32:19.878 SQL [16094]: pgsql_db_connect() -- 10:32:19.883 DEBUG [16094]: Database connection successful -- 10:32:19.883 INFO [16094]: _SERVER found -- 10:32:19.883 INFO [16094]: REMOTE_ADDR = 10.0.0.15 -- 10:32:19.883 INFO [16094]: SERVER_NAME = oameye.works.coregrade.com -- 10:32:19.883 INFO [16094]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=pksjs5avg4sjrcldh5qv38gogec7jr1b -- 10:32:19.883 INFO [16094]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:32:19.883 INFO [16094]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:32:19.894 INFO [16094]: COREGRADE is stopping... -- 10:32:19.894 DEBUG [16094]: Closing database connection -- 10:32:19.894 SQL [16094]: pgsql_close() -- 10:32:22.430 INFO [16094]: COREGRADE is starting... -- 10:32:22.430 INFO [16094]: Version from config: 1.0 -- 10:32:22.430 DEBUG [16094]: Connecting to database... -- 10:32:22.430 DEBUG [16094]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:32:22.430 SQL [16094]: pgsql_db_connect() -- 10:32:22.435 DEBUG [16094]: Database connection successful -- 10:32:22.435 INFO [16094]: _SERVER found -- 10:32:22.435 INFO [16094]: REMOTE_ADDR = 10.0.0.15 -- 10:32:22.435 INFO [16094]: SERVER_NAME = oameye.works.coregrade.com -- 10:32:22.435 INFO [16094]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=pksjs5avg4sjrcldh5qv38gogec7jr1b -- 10:32:22.435 INFO [16094]: QUERY_STRING = /member/viewRoom -- 10:32:22.435 INFO [16094]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:32:22.467 INFO [16094]: COREGRADE is stopping... -- 10:32:22.467 DEBUG [16094]: Closing database connection -- 10:32:22.467 SQL [16094]: pgsql_close() -- 10:32:55.230 INFO [16093]: COREGRADE is starting... -- 10:32:55.231 INFO [16093]: Version from config: 1.0 -- 10:32:55.231 DEBUG [16093]: Connecting to database... -- 10:32:55.231 DEBUG [16093]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:32:55.231 SQL [16093]: pgsql_db_connect() -- 10:32:55.236 DEBUG [16093]: Database connection successful -- 10:32:55.236 INFO [16093]: _SERVER found -- 10:32:55.236 INFO [16093]: REMOTE_ADDR = 10.0.0.15 -- 10:32:55.236 INFO [16093]: SERVER_NAME = oameye.works.coregrade.com -- 10:32:55.236 INFO [16093]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=pksjs5avg4sjrcldh5qv38gogec7jr1b -- 10:32:55.236 INFO [16093]: QUERY_STRING = /member/viewRoom -- 10:32:55.236 INFO [16093]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:32:55.270 INFO [16093]: COREGRADE is stopping... -- 10:32:55.270 DEBUG [16093]: Closing database connection -- 10:32:55.270 SQL [16093]: pgsql_close() -- 10:33:02.645 INFO [16096]: COREGRADE is starting... -- 10:33:02.645 INFO [16096]: Version from config: 1.0 -- 10:33:02.645 DEBUG [16096]: Connecting to database... -- 10:33:02.645 DEBUG [16096]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:33:02.645 SQL [16096]: pgsql_db_connect() -- 10:33:02.650 DEBUG [16096]: Database connection successful -- 10:33:02.650 INFO [16096]: _SERVER found -- 10:33:02.650 INFO [16096]: REMOTE_ADDR = 10.0.0.15 -- 10:33:02.650 INFO [16096]: SERVER_NAME = oameye.works.coregrade.com -- 10:33:02.650 INFO [16096]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=pksjs5avg4sjrcldh5qv38gogec7jr1b -- 10:33:02.650 INFO [16096]: QUERY_STRING = /member/classroom -- 10:33:02.650 INFO [16096]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:33:02.695 INFO [16096]: COREGRADE is stopping... -- 10:33:02.695 DEBUG [16096]: Closing database connection -- 10:33:02.695 SQL [16096]: pgsql_close() -- 10:33:02.804 INFO [16096]: COREGRADE is starting... -- 10:33:02.804 INFO [16096]: Version from config: 1.0 -- 10:33:02.804 DEBUG [16096]: Connecting to database... -- 10:33:02.804 DEBUG [16096]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:33:02.804 SQL [16096]: pgsql_db_connect() -- 10:33:02.809 DEBUG [16096]: Database connection successful -- 10:33:02.809 INFO [16096]: _SERVER found -- 10:33:02.809 INFO [16096]: REMOTE_ADDR = 10.0.0.15 -- 10:33:02.809 INFO [16096]: SERVER_NAME = oameye.works.coregrade.com -- 10:33:02.809 INFO [16096]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=pksjs5avg4sjrcldh5qv38gogec7jr1b -- 10:33:02.809 INFO [16096]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 10:33:02.809 INFO [16096]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:33:02.821 INFO [16096]: COREGRADE is stopping... -- 10:33:02.821 DEBUG [16096]: Closing database connection -- 10:33:02.821 SQL [16096]: pgsql_close() -- 10:34:11.097 INFO [16097]: COREGRADE is starting... -- 10:34:11.097 INFO [16097]: Version from config: 1.0 -- 10:34:11.097 DEBUG [16097]: Connecting to database... -- 10:34:11.097 DEBUG [16097]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:34:11.097 SQL [16097]: pgsql_db_connect() -- 10:34:11.101 DEBUG [16097]: Database connection successful -- 10:34:11.101 INFO [16097]: _SERVER found -- 10:34:11.101 INFO [16097]: REMOTE_ADDR = 10.0.0.15 -- 10:34:11.101 INFO [16097]: SERVER_NAME = oameye.works.coregrade.com -- 10:34:11.101 INFO [16097]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=pksjs5avg4sjrcldh5qv38gogec7jr1b -- 10:34:11.101 INFO [16097]: QUERY_STRING = /member/viewRoom -- 10:34:11.101 INFO [16097]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:34:11.135 INFO [16097]: COREGRADE is stopping... -- 10:34:11.135 DEBUG [16097]: Closing database connection -- 10:34:11.135 SQL [16097]: pgsql_close() -- 10:34:20.379 INFO [16131]: COREGRADE is starting... -- 10:34:20.380 INFO [16131]: Version from config: 1.0 -- 10:34:20.380 DEBUG [16131]: Connecting to database... -- 10:34:20.380 DEBUG [16131]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:34:20.380 SQL [16131]: pgsql_db_connect() -- 10:34:20.384 DEBUG [16131]: Database connection successful -- 10:34:20.384 INFO [16131]: _SERVER found -- 10:34:20.384 INFO [16131]: REMOTE_ADDR = 10.0.0.15 -- 10:34:20.384 INFO [16131]: SERVER_NAME = oameye.works.coregrade.com -- 10:34:20.384 INFO [16131]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=pksjs5avg4sjrcldh5qv38gogec7jr1b -- 10:34:20.384 INFO [16131]: QUERY_STRING = /member/addNewRoom -- 10:34:20.384 INFO [16131]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:34:20.418 INFO [16131]: COREGRADE is stopping... -- 10:34:20.418 DEBUG [16131]: Closing database connection -- 10:34:20.418 SQL [16131]: pgsql_close() -- 10:35:18.204 INFO [16095]: COREGRADE is starting... -- 10:35:18.204 INFO [16095]: Version from config: 1.0 -- 10:35:18.204 DEBUG [16095]: Connecting to database... -- 10:35:18.204 DEBUG [16095]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:35:18.204 SQL [16095]: pgsql_db_connect() -- 10:35:18.208 DEBUG [16095]: Database connection successful -- 10:35:18.208 INFO [16095]: _SERVER found -- 10:35:18.208 INFO [16095]: REMOTE_ADDR = 10.0.0.15 -- 10:35:18.208 INFO [16095]: SERVER_NAME = oameye.works.coregrade.com -- 10:35:18.208 INFO [16095]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=pksjs5avg4sjrcldh5qv38gogec7jr1b -- 10:35:18.208 INFO [16095]: QUERY_STRING = /member/viewRoom -- 10:35:18.208 INFO [16095]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:35:18.241 INFO [16095]: COREGRADE is stopping... -- 10:35:18.241 DEBUG [16095]: Closing database connection -- 10:35:18.241 SQL [16095]: pgsql_close() -- 10:35:25.526 INFO [16132]: COREGRADE is starting... -- 10:35:25.526 INFO [16132]: Version from config: 1.0 -- 10:35:25.526 DEBUG [16132]: Connecting to database... -- 10:35:25.526 DEBUG [16132]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:35:25.526 SQL [16132]: pgsql_db_connect() -- 10:35:25.530 DEBUG [16132]: Database connection successful -- 10:35:25.530 INFO [16132]: _SERVER found -- 10:35:25.530 INFO [16132]: REMOTE_ADDR = 10.0.0.15 -- 10:35:25.530 INFO [16132]: SERVER_NAME = oameye.works.coregrade.com -- 10:35:25.530 INFO [16132]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=pksjs5avg4sjrcldh5qv38gogec7jr1b -- 10:35:25.530 INFO [16132]: QUERY_STRING = /member/addNewRoom -- 10:35:25.530 INFO [16132]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:35:25.564 INFO [16132]: COREGRADE is stopping... -- 10:35:25.564 DEBUG [16132]: Closing database connection -- 10:35:25.564 SQL [16132]: pgsql_close() -- 10:40:11.313 INFO [16133]: COREGRADE is starting... -- 10:40:11.314 INFO [16133]: Version from config: 1.0 -- 10:40:11.314 DEBUG [16133]: Connecting to database... -- 10:40:11.314 DEBUG [16133]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:40:11.314 SQL [16133]: pgsql_db_connect() -- 10:40:11.318 DEBUG [16133]: Database connection successful -- 10:40:11.318 INFO [16133]: _SERVER found -- 10:40:11.318 INFO [16133]: REMOTE_ADDR = 10.0.0.15 -- 10:40:11.318 INFO [16133]: SERVER_NAME = oameye.works.coregrade.com -- 10:40:11.318 INFO [16133]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=pksjs5avg4sjrcldh5qv38gogec7jr1b -- 10:40:11.318 INFO [16133]: QUERY_STRING = /member/viewRoom -- 10:40:11.318 INFO [16133]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:40:11.350 INFO [16133]: COREGRADE is stopping... -- 10:40:11.350 DEBUG [16133]: Closing database connection -- 10:40:11.350 SQL [16133]: pgsql_close() -- 10:40:20.051 INFO [16094]: COREGRADE is starting... -- 10:40:20.051 INFO [16094]: Version from config: 1.0 -- 10:40:20.051 DEBUG [16094]: Connecting to database... -- 10:40:20.052 DEBUG [16094]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:40:20.052 SQL [16094]: pgsql_db_connect() -- 10:40:20.055 DEBUG [16094]: Database connection successful -- 10:40:20.056 INFO [16094]: _SERVER found -- 10:40:20.056 INFO [16094]: REMOTE_ADDR = 10.0.0.15 -- 10:40:20.056 INFO [16094]: SERVER_NAME = oameye.works.coregrade.com -- 10:40:20.056 INFO [16094]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=pksjs5avg4sjrcldh5qv38gogec7jr1b -- 10:40:20.056 INFO [16094]: QUERY_STRING = /member/addNewRoom -- 10:40:20.056 INFO [16094]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:40:20.089 INFO [16094]: COREGRADE is stopping... -- 10:40:20.089 DEBUG [16094]: Closing database connection -- 10:40:20.089 SQL [16094]: pgsql_close() -- 10:41:41.162 INFO [16093]: COREGRADE is starting... -- 10:41:41.162 INFO [16093]: Version from config: 1.0 -- 10:41:41.162 DEBUG [16093]: Connecting to database... -- 10:41:41.162 DEBUG [16093]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:41:41.162 SQL [16093]: pgsql_db_connect() -- 10:41:41.166 DEBUG [16093]: Database connection successful -- 10:41:41.166 INFO [16093]: _SERVER found -- 10:41:41.166 INFO [16093]: REMOTE_ADDR = 10.0.0.15 -- 10:41:41.166 INFO [16093]: SERVER_NAME = oameye.works.coregrade.com -- 10:41:41.166 INFO [16093]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=pksjs5avg4sjrcldh5qv38gogec7jr1b -- 10:41:41.166 INFO [16093]: QUERY_STRING = /member/viewRoom -- 10:41:41.166 INFO [16093]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:41:41.199 INFO [16093]: COREGRADE is stopping... -- 10:41:41.199 DEBUG [16093]: Closing database connection -- 10:41:41.199 SQL [16093]: pgsql_close() -- 10:41:47.787 INFO [16096]: COREGRADE is starting... -- 10:41:47.787 INFO [16096]: Version from config: 1.0 -- 10:41:47.787 DEBUG [16096]: Connecting to database... -- 10:41:47.787 DEBUG [16096]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:41:47.787 SQL [16096]: pgsql_db_connect() -- 10:41:47.791 DEBUG [16096]: Database connection successful -- 10:41:47.791 INFO [16096]: _SERVER found -- 10:41:47.791 INFO [16096]: REMOTE_ADDR = 10.0.0.15 -- 10:41:47.791 INFO [16096]: SERVER_NAME = oameye.works.coregrade.com -- 10:41:47.791 INFO [16096]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=pksjs5avg4sjrcldh5qv38gogec7jr1b -- 10:41:47.791 INFO [16096]: QUERY_STRING = /member/addNewRoom -- 10:41:47.791 INFO [16096]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:41:47.828 INFO [16096]: COREGRADE is stopping... -- 10:41:47.828 DEBUG [16096]: Closing database connection -- 10:41:47.828 SQL [16096]: pgsql_close() -- 10:42:21.513 INFO [16097]: COREGRADE is starting... -- 10:42:21.514 INFO [16097]: Version from config: 1.0 -- 10:42:21.514 DEBUG [16097]: Connecting to database... -- 10:42:21.514 DEBUG [16097]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:42:21.514 SQL [16097]: pgsql_db_connect() -- 10:42:21.518 DEBUG [16097]: Database connection successful -- 10:42:21.518 INFO [16097]: _SERVER found -- 10:42:21.518 INFO [16097]: REMOTE_ADDR = 10.0.0.15 -- 10:42:21.518 INFO [16097]: SERVER_NAME = oameye.works.coregrade.com -- 10:42:21.518 INFO [16097]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=pksjs5avg4sjrcldh5qv38gogec7jr1b -- 10:42:21.518 INFO [16097]: QUERY_STRING = /member/addNewRoom -- 10:42:21.518 INFO [16097]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:42:21.553 INFO [16097]: COREGRADE is stopping... -- 10:42:21.553 DEBUG [16097]: Closing database connection -- 10:42:21.553 SQL [16097]: pgsql_close() -- 10:43:02.628 INFO [16131]: COREGRADE is starting... -- 10:43:02.628 INFO [16131]: Version from config: 1.0 -- 10:43:02.628 DEBUG [16131]: Connecting to database... -- 10:43:02.629 DEBUG [16131]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:43:02.629 SQL [16131]: pgsql_db_connect() -- 10:43:02.633 DEBUG [16131]: Database connection successful -- 10:43:02.633 INFO [16131]: _SERVER found -- 10:43:02.633 INFO [16131]: REMOTE_ADDR = 10.0.0.15 -- 10:43:02.633 INFO [16131]: SERVER_NAME = oameye.works.coregrade.com -- 10:43:02.633 INFO [16131]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=pksjs5avg4sjrcldh5qv38gogec7jr1b -- 10:43:02.633 INFO [16131]: QUERY_STRING = /member/viewRoom -- 10:43:02.633 INFO [16131]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:43:02.665 INFO [16131]: COREGRADE is stopping... -- 10:43:02.665 DEBUG [16131]: Closing database connection -- 10:43:02.665 SQL [16131]: pgsql_close() -- 10:44:16.608 INFO [16095]: COREGRADE is starting... -- 10:44:16.608 INFO [16095]: Version from config: 1.0 -- 10:44:16.608 DEBUG [16095]: Connecting to database... -- 10:44:16.608 DEBUG [16095]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:44:16.608 SQL [16095]: pgsql_db_connect() -- 10:44:16.612 DEBUG [16095]: Database connection successful -- 10:44:16.612 INFO [16095]: _SERVER found -- 10:44:16.612 INFO [16095]: REMOTE_ADDR = 10.0.0.15 -- 10:44:16.612 INFO [16095]: SERVER_NAME = oameye.works.coregrade.com -- 10:44:16.612 INFO [16095]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=pksjs5avg4sjrcldh5qv38gogec7jr1b -- 10:44:16.612 INFO [16095]: QUERY_STRING = /member/viewRoom -- 10:44:16.612 INFO [16095]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:44:16.645 INFO [16095]: COREGRADE is stopping... -- 10:44:16.645 DEBUG [16095]: Closing database connection -- 10:44:16.645 SQL [16095]: pgsql_close() -- 10:44:58.542 INFO [16132]: COREGRADE is starting... -- 10:44:58.542 INFO [16132]: Version from config: 1.0 -- 10:44:58.542 DEBUG [16132]: Connecting to database... -- 10:44:58.542 DEBUG [16132]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:44:58.542 SQL [16132]: pgsql_db_connect() -- 10:44:58.546 DEBUG [16132]: Database connection successful -- 10:44:58.546 INFO [16132]: _SERVER found -- 10:44:58.546 INFO [16132]: REMOTE_ADDR = 10.0.0.15 -- 10:44:58.546 INFO [16132]: SERVER_NAME = oameye.works.coregrade.com -- 10:44:58.546 INFO [16132]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=pksjs5avg4sjrcldh5qv38gogec7jr1b -- 10:44:58.546 INFO [16132]: QUERY_STRING = /member/viewRoom -- 10:44:58.546 INFO [16132]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:44:58.579 INFO [16132]: COREGRADE is stopping... -- 10:44:58.579 DEBUG [16132]: Closing database connection -- 10:44:58.579 SQL [16132]: pgsql_close() -- 11:34:55.589 INFO [16133]: COREGRADE is starting... -- 11:34:55.589 INFO [16133]: Version from config: 1.0 -- 11:34:55.589 DEBUG [16133]: Connecting to database... -- 11:34:55.589 DEBUG [16133]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:34:55.589 SQL [16133]: pgsql_db_connect() -- 11:34:55.594 DEBUG [16133]: Database connection successful -- 11:34:55.594 INFO [16133]: _SERVER found -- 11:34:55.594 INFO [16133]: REMOTE_ADDR = 10.0.0.15 -- 11:34:55.594 INFO [16133]: SERVER_NAME = oameye.works.coregrade.com -- 11:34:55.594 INFO [16133]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=pksjs5avg4sjrcldh5qv38gogec7jr1b -- 11:34:55.594 INFO [16133]: QUERY_STRING = /member/viewRoom -- 11:34:55.594 INFO [16133]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:34:55.634 INFO [16133]: COREGRADE is stopping... -- 11:34:55.634 DEBUG [16133]: Closing database connection -- 11:34:55.634 SQL [16133]: pgsql_close() -- 11:36:40.287 INFO [16094]: COREGRADE is starting... -- 11:36:40.288 INFO [16094]: Version from config: 1.0 -- 11:36:40.288 DEBUG [16094]: Connecting to database... -- 11:36:40.288 DEBUG [16094]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:36:40.288 SQL [16094]: pgsql_db_connect() -- 11:36:40.292 DEBUG [16094]: Database connection successful -- 11:36:40.292 INFO [16094]: _SERVER found -- 11:36:40.292 INFO [16094]: REMOTE_ADDR = 10.0.0.15 -- 11:36:40.292 INFO [16094]: SERVER_NAME = oameye.works.coregrade.com -- 11:36:40.292 INFO [16094]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=pksjs5avg4sjrcldh5qv38gogec7jr1b -- 11:36:40.292 INFO [16094]: QUERY_STRING = /member/viewRoom -- 11:36:40.292 INFO [16094]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:36:40.329 INFO [16094]: COREGRADE is stopping... -- 11:36:40.329 DEBUG [16094]: Closing database connection -- 11:36:40.329 SQL [16094]: pgsql_close() -- 11:39:12.033 INFO [16093]: COREGRADE is starting... -- 11:39:12.033 INFO [16093]: Version from config: 1.0 -- 11:39:12.033 DEBUG [16093]: Connecting to database... -- 11:39:12.034 DEBUG [16093]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:39:12.034 SQL [16093]: pgsql_db_connect() -- 11:39:12.038 DEBUG [16093]: Database connection successful -- 11:39:12.038 INFO [16093]: _SERVER found -- 11:39:12.038 INFO [16093]: REMOTE_ADDR = 10.0.0.15 -- 11:39:12.038 INFO [16093]: SERVER_NAME = oameye.works.coregrade.com -- 11:39:12.038 INFO [16093]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=pksjs5avg4sjrcldh5qv38gogec7jr1b -- 11:39:12.038 INFO [16093]: QUERY_STRING = /member/viewRoom -- 11:39:12.038 INFO [16093]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:39:12.077 INFO [16093]: COREGRADE is stopping... -- 11:39:12.077 DEBUG [16093]: Closing database connection -- 11:39:12.077 SQL [16093]: pgsql_close() -- 11:40:20.079 INFO [16096]: COREGRADE is starting... -- 11:40:20.080 INFO [16096]: Version from config: 1.0 -- 11:40:20.080 DEBUG [16096]: Connecting to database... -- 11:40:20.080 DEBUG [16096]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:40:20.080 SQL [16096]: pgsql_db_connect() -- 11:40:20.084 DEBUG [16096]: Database connection successful -- 11:40:20.084 INFO [16096]: _SERVER found -- 11:40:20.084 INFO [16096]: REMOTE_ADDR = 10.0.0.15 -- 11:40:20.084 INFO [16096]: SERVER_NAME = oameye.works.coregrade.com -- 11:40:20.084 INFO [16096]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=pksjs5avg4sjrcldh5qv38gogec7jr1b -- 11:40:20.084 INFO [16096]: QUERY_STRING = /member/viewRoom -- 11:40:20.084 INFO [16096]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:40:20.123 INFO [16096]: COREGRADE is stopping... -- 11:40:20.123 DEBUG [16096]: Closing database connection -- 11:40:20.123 SQL [16096]: pgsql_close() -- 11:48:03.949 INFO [16097]: COREGRADE is starting... -- 11:48:03.949 INFO [16097]: Version from config: 1.0 -- 11:48:03.949 DEBUG [16097]: Connecting to database... -- 11:48:03.949 DEBUG [16097]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:48:03.949 SQL [16097]: pgsql_db_connect() -- 11:48:03.954 DEBUG [16097]: Database connection successful -- 11:48:03.954 INFO [16097]: _SERVER found -- 11:48:03.954 INFO [16097]: REMOTE_ADDR = 10.0.0.15 -- 11:48:03.954 INFO [16097]: SERVER_NAME = oameye.works.coregrade.com -- 11:48:03.954 INFO [16097]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=pksjs5avg4sjrcldh5qv38gogec7jr1b -- 11:48:03.954 INFO [16097]: QUERY_STRING = /member/viewRoom -- 11:48:03.954 INFO [16097]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:48:03.995 INFO [16097]: COREGRADE is stopping... -- 11:48:03.995 DEBUG [16097]: Closing database connection -- 11:48:03.995 SQL [16097]: pgsql_close() -- 11:48:33.978 INFO [16131]: COREGRADE is starting... -- 11:48:33.978 INFO [16131]: Version from config: 1.0 -- 11:48:33.978 DEBUG [16131]: Connecting to database... -- 11:48:33.978 DEBUG [16131]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:48:33.978 SQL [16131]: pgsql_db_connect() -- 11:48:33.983 DEBUG [16131]: Database connection successful -- 11:48:33.983 INFO [16131]: _SERVER found -- 11:48:33.983 INFO [16131]: REMOTE_ADDR = 10.0.0.15 -- 11:48:33.983 INFO [16131]: SERVER_NAME = oameye.works.coregrade.com -- 11:48:33.983 INFO [16131]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=pksjs5avg4sjrcldh5qv38gogec7jr1b -- 11:48:33.983 INFO [16131]: QUERY_STRING = /member/viewRoom -- 11:48:33.983 INFO [16131]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:48:34.023 INFO [16131]: COREGRADE is stopping... -- 11:48:34.023 DEBUG [16131]: Closing database connection -- 11:48:34.023 SQL [16131]: pgsql_close() -- 11:49:25.441 INFO [16095]: COREGRADE is starting... -- 11:49:25.442 INFO [16095]: Version from config: 1.0 -- 11:49:25.442 DEBUG [16095]: Connecting to database... -- 11:49:25.442 DEBUG [16095]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:25.442 SQL [16095]: pgsql_db_connect() -- 11:49:25.447 DEBUG [16095]: Database connection successful -- 11:49:25.447 INFO [16095]: _SERVER found -- 11:49:25.447 INFO [16095]: REMOTE_ADDR = 10.0.0.15 -- 11:49:25.447 INFO [16095]: SERVER_NAME = oameye.works.coregrade.com -- 11:49:25.447 INFO [16095]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=pksjs5avg4sjrcldh5qv38gogec7jr1b -- 11:49:25.447 INFO [16095]: QUERY_STRING = /member/viewRoom -- 11:49:25.447 INFO [16095]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:49:25.486 INFO [16095]: COREGRADE is stopping... -- 11:49:25.486 DEBUG [16095]: Closing database connection -- 11:49:25.486 SQL [16095]: pgsql_close() -- 11:50:35.561 INFO [16132]: COREGRADE is starting... -- 11:50:35.561 INFO [16132]: Version from config: 1.0 -- 11:50:35.561 DEBUG [16132]: Connecting to database... -- 11:50:35.561 DEBUG [16132]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:50:35.561 SQL [16132]: pgsql_db_connect() -- 11:50:35.566 DEBUG [16132]: Database connection successful -- 11:50:35.566 INFO [16132]: _SERVER found -- 11:50:35.566 INFO [16132]: REMOTE_ADDR = 10.0.0.15 -- 11:50:35.566 INFO [16132]: SERVER_NAME = oameye.works.coregrade.com -- 11:50:35.566 INFO [16132]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=pksjs5avg4sjrcldh5qv38gogec7jr1b -- 11:50:35.566 INFO [16132]: QUERY_STRING = /member/viewRoom -- 11:50:35.566 INFO [16132]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:50:35.607 INFO [16132]: COREGRADE is stopping... -- 11:50:35.607 DEBUG [16132]: Closing database connection -- 11:50:35.607 SQL [16132]: pgsql_close() -- 11:50:38.221 INFO [16132]: COREGRADE is starting... -- 11:50:38.222 INFO [16132]: Version from config: 1.0 -- 11:50:38.222 DEBUG [16132]: Connecting to database... -- 11:50:38.222 DEBUG [16132]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:50:38.222 SQL [16132]: pgsql_db_connect() -- 11:50:38.227 DEBUG [16132]: Database connection successful -- 11:50:38.227 INFO [16132]: _SERVER found -- 11:50:38.227 INFO [16132]: REMOTE_ADDR = 10.0.0.15 -- 11:50:38.227 INFO [16132]: SERVER_NAME = oameye.works.coregrade.com -- 11:50:38.227 INFO [16132]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=pksjs5avg4sjrcldh5qv38gogec7jr1b -- 11:50:38.227 INFO [16132]: QUERY_STRING = /member/viewRoom -- 11:50:38.227 INFO [16132]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:50:38.263 INFO [16132]: COREGRADE is stopping... -- 11:50:38.263 DEBUG [16132]: Closing database connection -- 11:50:38.263 SQL [16132]: pgsql_close() -- 11:50:40.301 INFO [16132]: COREGRADE is starting... -- 11:50:40.302 INFO [16132]: Version from config: 1.0 -- 11:50:40.302 DEBUG [16132]: Connecting to database... -- 11:50:40.302 DEBUG [16132]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:50:40.302 SQL [16132]: pgsql_db_connect() -- 11:50:40.307 DEBUG [16132]: Database connection successful -- 11:50:40.307 INFO [16132]: _SERVER found -- 11:50:40.307 INFO [16132]: REMOTE_ADDR = 10.0.0.15 -- 11:50:40.307 INFO [16132]: SERVER_NAME = oameye.works.coregrade.com -- 11:50:40.307 INFO [16132]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=pksjs5avg4sjrcldh5qv38gogec7jr1b -- 11:50:40.307 INFO [16132]: QUERY_STRING = /member/viewRoom -- 11:50:40.307 INFO [16132]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:50:40.344 INFO [16132]: COREGRADE is stopping... -- 11:50:40.344 DEBUG [16132]: Closing database connection -- 11:50:40.344 SQL [16132]: pgsql_close() -- 11:50:41.445 INFO [16132]: COREGRADE is starting... -- 11:50:41.445 INFO [16132]: Version from config: 1.0 -- 11:50:41.445 DEBUG [16132]: Connecting to database... -- 11:50:41.445 DEBUG [16132]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:50:41.445 SQL [16132]: pgsql_db_connect() -- 11:50:41.450 DEBUG [16132]: Database connection successful -- 11:50:41.450 INFO [16132]: _SERVER found -- 11:50:41.450 INFO [16132]: REMOTE_ADDR = 10.0.0.15 -- 11:50:41.450 INFO [16132]: SERVER_NAME = oameye.works.coregrade.com -- 11:50:41.450 INFO [16132]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=pksjs5avg4sjrcldh5qv38gogec7jr1b -- 11:50:41.450 INFO [16132]: QUERY_STRING = /member/configure -- 11:50:41.450 INFO [16132]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:50:41.495 INFO [16132]: COREGRADE is stopping... -- 11:50:41.495 DEBUG [16132]: Closing database connection -- 11:50:41.495 SQL [16132]: pgsql_close() -- 11:50:41.665 INFO [16132]: COREGRADE is starting... -- 11:50:41.665 INFO [16133]: COREGRADE is starting... -- 11:50:41.665 INFO [16132]: Version from config: 1.0 -- 11:50:41.665 DEBUG [16132]: Connecting to database... -- 11:50:41.665 DEBUG [16132]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:50:41.665 INFO [16133]: Version from config: 1.0 -- 11:50:41.665 DEBUG [16133]: Connecting to database... -- 11:50:41.665 SQL [16132]: pgsql_db_connect() -- 11:50:41.665 DEBUG [16133]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:50:41.665 SQL [16133]: pgsql_db_connect() -- 11:50:41.670 DEBUG [16132]: Database connection successful -- 11:50:41.670 INFO [16132]: _SERVER found -- 11:50:41.670 INFO [16132]: REMOTE_ADDR = 10.0.0.15 -- 11:50:41.670 INFO [16132]: SERVER_NAME = oameye.works.coregrade.com -- 11:50:41.670 INFO [16132]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=kqp3j7lr3gnv4euae559orrsng8b8cib -- 11:50:41.670 INFO [16132]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:50:41.670 INFO [16132]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:50:41.682 INFO [16132]: COREGRADE is stopping... -- 11:50:41.682 DEBUG [16132]: Closing database connection -- 11:50:41.682 SQL [16132]: pgsql_close() -- 11:50:41.670 DEBUG [16133]: Database connection successful -- 11:50:41.670 INFO [16133]: _SERVER found -- 11:50:41.670 INFO [16133]: REMOTE_ADDR = 10.0.0.15 -- 11:50:41.670 INFO [16133]: SERVER_NAME = oameye.works.coregrade.com -- 11:50:41.670 INFO [16133]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=kqp3j7lr3gnv4euae559orrsng8b8cib -- 11:50:41.670 INFO [16133]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 11:50:41.670 INFO [16133]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:50:41.682 INFO [16133]: COREGRADE is stopping... -- 11:50:41.682 DEBUG [16133]: Closing database connection -- 11:50:41.682 SQL [16133]: pgsql_close() -- 11:50:44.876 INFO [16133]: COREGRADE is starting... -- 11:50:44.876 INFO [16133]: Version from config: 1.0 -- 11:50:44.876 DEBUG [16133]: Connecting to database... -- 11:50:44.876 DEBUG [16133]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:50:44.876 SQL [16133]: pgsql_db_connect() -- 11:50:44.881 DEBUG [16133]: Database connection successful -- 11:50:44.881 INFO [16133]: _SERVER found -- 11:50:44.881 INFO [16133]: REMOTE_ADDR = 10.0.0.15 -- 11:50:44.881 INFO [16133]: SERVER_NAME = oameye.works.coregrade.com -- 11:50:44.881 INFO [16133]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=kqp3j7lr3gnv4euae559orrsng8b8cib -- 11:50:44.881 INFO [16133]: QUERY_STRING = /member/viewSharePage -- 11:50:44.881 INFO [16133]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:50:44.917 INFO [16133]: COREGRADE is stopping... -- 11:50:44.917 DEBUG [16133]: Closing database connection -- 11:50:44.917 SQL [16133]: pgsql_close() -- 11:52:46.900 INFO [16094]: COREGRADE is starting... -- 11:52:46.900 INFO [16094]: Version from config: 1.0 -- 11:52:46.900 DEBUG [16094]: Connecting to database... -- 11:52:46.900 DEBUG [16094]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:52:46.900 SQL [16094]: pgsql_db_connect() -- 11:52:46.905 DEBUG [16094]: Database connection successful -- 11:52:46.905 INFO [16094]: _SERVER found -- 11:52:46.905 INFO [16094]: REMOTE_ADDR = 10.0.0.15 -- 11:52:46.905 INFO [16094]: SERVER_NAME = works.coregrade.com -- 11:52:46.905 INFO [16094]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584 -- 11:52:46.905 INFO [16094]: QUERY_STRING = -- 11:52:46.905 INFO [16094]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:52:46.939 INFO [16094]: COREGRADE is stopping... -- 11:52:46.939 DEBUG [16094]: Closing database connection -- 11:52:46.939 SQL [16094]: pgsql_close() -- 11:52:47.185 INFO [16093]: COREGRADE is starting... -- 11:52:47.185 INFO [16093]: Version from config: 1.0 -- 11:52:47.185 DEBUG [16093]: Connecting to database... -- 11:52:47.185 DEBUG [16093]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:52:47.185 SQL [16093]: pgsql_db_connect() -- 11:52:47.195 INFO [16096]: COREGRADE is starting... -- 11:52:47.195 INFO [16096]: Version from config: 1.0 -- 11:52:47.195 DEBUG [16096]: Connecting to database... -- 11:52:47.195 DEBUG [16096]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:52:47.195 SQL [16096]: pgsql_db_connect() -- 11:52:47.190 DEBUG [16093]: Database connection successful -- 11:52:47.190 INFO [16093]: _SERVER found -- 11:52:47.190 INFO [16093]: REMOTE_ADDR = 10.0.0.15 -- 11:52:47.190 INFO [16093]: SERVER_NAME = works.coregrade.com -- 11:52:47.190 INFO [16093]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k -- 11:52:47.190 INFO [16093]: QUERY_STRING = /assets/img/App_view-3.png -- 11:52:47.190 INFO [16093]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:52:47.203 INFO [16093]: COREGRADE is stopping... -- 11:52:47.203 DEBUG [16093]: Closing database connection -- 11:52:47.203 SQL [16093]: pgsql_close() -- 11:52:47.200 DEBUG [16096]: Database connection successful -- 11:52:47.200 INFO [16096]: _SERVER found -- 11:52:47.200 INFO [16096]: REMOTE_ADDR = 10.0.0.15 -- 11:52:47.200 INFO [16096]: SERVER_NAME = works.coregrade.com -- 11:52:47.200 INFO [16096]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k -- 11:52:47.200 INFO [16096]: QUERY_STRING = /assets/img/institutional.png -- 11:52:47.200 INFO [16096]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:52:47.216 INFO [16096]: COREGRADE is stopping... -- 11:52:47.216 DEBUG [16096]: Closing database connection -- 11:52:47.216 SQL [16096]: pgsql_close() -- 11:52:47.226 INFO [16093]: COREGRADE is starting... -- 11:52:47.227 INFO [16093]: Version from config: 1.0 -- 11:52:47.227 DEBUG [16093]: Connecting to database... -- 11:52:47.227 DEBUG [16093]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:52:47.227 SQL [16093]: pgsql_db_connect() -- 11:52:47.230 INFO [16097]: COREGRADE is starting... -- 11:52:47.230 INFO [16097]: Version from config: 1.0 -- 11:52:47.230 DEBUG [16097]: Connecting to database... -- 11:52:47.230 DEBUG [16097]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:52:47.230 SQL [16097]: pgsql_db_connect() -- 11:52:47.232 DEBUG [16093]: Database connection successful -- 11:52:47.232 INFO [16093]: _SERVER found -- 11:52:47.232 INFO [16093]: REMOTE_ADDR = 10.0.0.15 -- 11:52:47.232 INFO [16093]: SERVER_NAME = works.coregrade.com -- 11:52:47.232 INFO [16093]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k -- 11:52:47.232 INFO [16093]: QUERY_STRING = /assets/img/progress_monitoring.png -- 11:52:47.232 INFO [16093]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:52:47.247 INFO [16093]: COREGRADE is stopping... -- 11:52:47.247 DEBUG [16093]: Closing database connection -- 11:52:47.247 SQL [16093]: pgsql_close() -- 11:52:47.235 DEBUG [16097]: Database connection successful -- 11:52:47.235 INFO [16097]: _SERVER found -- 11:52:47.235 INFO [16097]: REMOTE_ADDR = 10.0.0.15 -- 11:52:47.235 INFO [16097]: SERVER_NAME = works.coregrade.com -- 11:52:47.235 INFO [16097]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k -- 11:52:47.235 INFO [16097]: QUERY_STRING = /assets/img/Groups.png -- 11:52:47.235 INFO [16097]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:52:47.248 INFO [16097]: COREGRADE is stopping... -- 11:52:47.248 DEBUG [16097]: Closing database connection -- 11:52:47.248 SQL [16097]: pgsql_close() -- 11:52:47.270 INFO [16093]: COREGRADE is starting... -- 11:52:47.270 INFO [16093]: Version from config: 1.0 -- 11:52:47.270 DEBUG [16093]: Connecting to database... -- 11:52:47.270 DEBUG [16093]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:52:47.270 SQL [16093]: pgsql_db_connect() -- 11:52:47.276 INFO [16097]: COREGRADE is starting... -- 11:52:47.277 INFO [16097]: Version from config: 1.0 -- 11:52:47.277 DEBUG [16097]: Connecting to database... -- 11:52:47.277 DEBUG [16097]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:52:47.277 SQL [16097]: pgsql_db_connect() -- 11:52:47.275 DEBUG [16093]: Database connection successful -- 11:52:47.275 INFO [16093]: _SERVER found -- 11:52:47.275 INFO [16093]: REMOTE_ADDR = 10.0.0.15 -- 11:52:47.275 INFO [16093]: SERVER_NAME = works.coregrade.com -- 11:52:47.275 INFO [16093]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k -- 11:52:47.275 INFO [16093]: QUERY_STRING = /assets/img/goal_settings.png -- 11:52:47.275 INFO [16093]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:52:47.286 INFO [16093]: COREGRADE is stopping... -- 11:52:47.286 DEBUG [16093]: Closing database connection -- 11:52:47.287 SQL [16093]: pgsql_close() -- 11:52:47.281 DEBUG [16097]: Database connection successful -- 11:52:47.281 INFO [16097]: _SERVER found -- 11:52:47.281 INFO [16097]: REMOTE_ADDR = 10.0.0.15 -- 11:52:47.281 INFO [16097]: SERVER_NAME = works.coregrade.com -- 11:52:47.281 INFO [16097]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k -- 11:52:47.281 INFO [16097]: QUERY_STRING = /assets/img/alerts.png -- 11:52:47.281 INFO [16097]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:52:47.299 INFO [16097]: COREGRADE is stopping... -- 11:52:47.299 DEBUG [16097]: Closing database connection -- 11:52:47.299 SQL [16097]: pgsql_close() -- 11:52:47.320 INFO [16096]: COREGRADE is starting... -- 11:52:47.321 INFO [16096]: Version from config: 1.0 -- 11:52:47.321 DEBUG [16096]: Connecting to database... -- 11:52:47.321 DEBUG [16096]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:52:47.321 SQL [16096]: pgsql_db_connect() -- 11:52:47.326 INFO [16093]: COREGRADE is starting... -- 11:52:47.326 INFO [16093]: Version from config: 1.0 -- 11:52:47.326 DEBUG [16093]: Connecting to database... -- 11:52:47.326 DEBUG [16093]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:52:47.326 SQL [16093]: pgsql_db_connect() -- 11:52:47.325 DEBUG [16096]: Database connection successful -- 11:52:47.325 INFO [16096]: _SERVER found -- 11:52:47.325 INFO [16096]: REMOTE_ADDR = 10.0.0.15 -- 11:52:47.325 INFO [16096]: SERVER_NAME = works.coregrade.com -- 11:52:47.325 INFO [16096]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:52:47.325 INFO [16096]: QUERY_STRING = /assets/img/footer_1.jpg -- 11:52:47.325 INFO [16096]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:52:47.337 INFO [16096]: COREGRADE is stopping... -- 11:52:47.337 DEBUG [16096]: Closing database connection -- 11:52:47.337 SQL [16096]: pgsql_close() -- 11:52:47.330 DEBUG [16093]: Database connection successful -- 11:52:47.330 INFO [16093]: _SERVER found -- 11:52:47.330 INFO [16093]: REMOTE_ADDR = 10.0.0.15 -- 11:52:47.330 INFO [16093]: SERVER_NAME = works.coregrade.com -- 11:52:47.330 INFO [16093]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:52:47.330 INFO [16093]: QUERY_STRING = /assets/img/App_view-3.png -- 11:52:47.330 INFO [16093]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:52:47.343 INFO [16093]: COREGRADE is stopping... -- 11:52:47.343 DEBUG [16093]: Closing database connection -- 11:52:47.343 SQL [16093]: pgsql_close() -- 11:52:52.318 INFO [16093]: COREGRADE is starting... -- 11:52:52.319 INFO [16093]: Version from config: 1.0 -- 11:52:52.319 DEBUG [16093]: Connecting to database... -- 11:52:52.319 DEBUG [16093]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:52:52.319 SQL [16093]: pgsql_db_connect() -- 11:52:52.323 DEBUG [16093]: Database connection successful -- 11:52:52.323 INFO [16093]: _SERVER found -- 11:52:52.323 INFO [16093]: REMOTE_ADDR = 10.0.0.15 -- 11:52:52.323 INFO [16093]: SERVER_NAME = works.coregrade.com -- 11:52:52.323 INFO [16093]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:52:52.323 INFO [16093]: QUERY_STRING = -- 11:52:52.323 INFO [16093]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:52:52.355 INFO [16093]: COREGRADE is stopping... -- 11:52:52.355 DEBUG [16093]: Closing database connection -- 11:52:52.355 SQL [16093]: pgsql_close() -- 11:52:52.529 INFO [16131]: COREGRADE is starting... -- 11:52:52.530 INFO [16131]: Version from config: 1.0 -- 11:52:52.530 DEBUG [16131]: Connecting to database... -- 11:52:52.530 DEBUG [16131]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:52:52.530 SQL [16131]: pgsql_db_connect() -- 11:52:52.534 INFO [16093]: COREGRADE is starting... -- 11:52:52.534 INFO [16095]: COREGRADE is starting... -- 11:52:52.534 INFO [16093]: Version from config: 1.0 -- 11:52:52.534 DEBUG [16093]: Connecting to database... -- 11:52:52.534 INFO [16095]: Version from config: 1.0 -- 11:52:52.534 DEBUG [16095]: Connecting to database... -- 11:52:52.534 DEBUG [16093]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:52:52.534 DEBUG [16095]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:52:52.534 SQL [16093]: pgsql_db_connect() -- 11:52:52.534 SQL [16095]: pgsql_db_connect() -- 11:52:52.540 INFO [16133]: COREGRADE is starting... -- 11:52:52.541 INFO [16133]: Version from config: 1.0 -- 11:52:52.541 DEBUG [16133]: Connecting to database... -- 11:52:52.541 DEBUG [16133]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:52:52.541 SQL [16133]: pgsql_db_connect() -- 11:52:52.545 INFO [16132]: COREGRADE is starting... -- 11:52:52.545 INFO [16132]: Version from config: 1.0 -- 11:52:52.545 DEBUG [16132]: Connecting to database... -- 11:52:52.545 DEBUG [16132]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:52:52.545 SQL [16132]: pgsql_db_connect() -- 11:52:52.534 DEBUG [16131]: Database connection successful -- 11:52:52.534 INFO [16131]: _SERVER found -- 11:52:52.534 INFO [16131]: REMOTE_ADDR = 10.0.0.15 -- 11:52:52.534 INFO [16131]: SERVER_NAME = works.coregrade.com -- 11:52:52.534 INFO [16131]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:52:52.534 INFO [16131]: QUERY_STRING = /assets/img/progress_monitoring.png -- 11:52:52.534 INFO [16131]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:52:52.546 INFO [16131]: COREGRADE is stopping... -- 11:52:52.546 DEBUG [16131]: Closing database connection -- 11:52:52.546 SQL [16131]: pgsql_close() -- 11:52:52.539 DEBUG [16095]: Database connection successful -- 11:52:52.539 INFO [16095]: _SERVER found -- 11:52:52.539 INFO [16095]: REMOTE_ADDR = 10.0.0.15 -- 11:52:52.539 INFO [16095]: SERVER_NAME = works.coregrade.com -- 11:52:52.539 INFO [16095]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:52:52.539 INFO [16095]: QUERY_STRING = /assets/img/institutional.png -- 11:52:52.539 INFO [16095]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:52:52.551 INFO [16095]: COREGRADE is stopping... -- 11:52:52.551 DEBUG [16095]: Closing database connection -- 11:52:52.551 SQL [16095]: pgsql_close() -- 11:52:52.545 DEBUG [16093]: Database connection successful -- 11:52:52.545 INFO [16093]: _SERVER found -- 11:52:52.545 INFO [16093]: REMOTE_ADDR = 10.0.0.15 -- 11:52:52.545 INFO [16093]: SERVER_NAME = works.coregrade.com -- 11:52:52.545 INFO [16093]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:52:52.545 INFO [16093]: QUERY_STRING = /assets/img/Groups.png -- 11:52:52.545 INFO [16093]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:52:52.559 INFO [16093]: COREGRADE is stopping... -- 11:52:52.559 DEBUG [16093]: Closing database connection -- 11:52:52.559 SQL [16093]: pgsql_close() -- 11:52:52.552 DEBUG [16132]: Database connection successful -- 11:52:52.552 INFO [16132]: _SERVER found -- 11:52:52.552 INFO [16132]: REMOTE_ADDR = 10.0.0.15 -- 11:52:52.552 INFO [16132]: SERVER_NAME = works.coregrade.com -- 11:52:52.552 INFO [16132]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:52:52.552 INFO [16132]: QUERY_STRING = /assets/img/alerts.png -- 11:52:52.552 INFO [16132]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:52:52.565 INFO [16132]: COREGRADE is stopping... -- 11:52:52.565 DEBUG [16132]: Closing database connection -- 11:52:52.565 SQL [16132]: pgsql_close() -- 11:52:52.556 DEBUG [16133]: Database connection successful -- 11:52:52.556 INFO [16133]: _SERVER found -- 11:52:52.556 INFO [16133]: REMOTE_ADDR = 10.0.0.15 -- 11:52:52.556 INFO [16133]: SERVER_NAME = works.coregrade.com -- 11:52:52.556 INFO [16133]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:52:52.556 INFO [16133]: QUERY_STRING = /assets/img/App_view-3.png -- 11:52:52.556 INFO [16133]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:52:52.568 INFO [16133]: COREGRADE is stopping... -- 11:52:52.568 DEBUG [16133]: Closing database connection -- 11:52:52.568 SQL [16133]: pgsql_close() -- 11:52:52.578 INFO [16132]: COREGRADE is starting... -- 11:52:52.578 INFO [16132]: Version from config: 1.0 -- 11:52:52.578 DEBUG [16132]: Connecting to database... -- 11:52:52.578 DEBUG [16132]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:52:52.578 SQL [16132]: pgsql_db_connect() -- 11:52:52.582 DEBUG [16132]: Database connection successful -- 11:52:52.582 INFO [16132]: _SERVER found -- 11:52:52.582 INFO [16132]: REMOTE_ADDR = 10.0.0.15 -- 11:52:52.582 INFO [16132]: SERVER_NAME = works.coregrade.com -- 11:52:52.582 INFO [16132]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:52:52.582 INFO [16132]: QUERY_STRING = /assets/img/goal_settings.png -- 11:52:52.582 INFO [16132]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:52:52.594 INFO [16132]: COREGRADE is stopping... -- 11:52:52.594 DEBUG [16132]: Closing database connection -- 11:52:52.594 SQL [16132]: pgsql_close() -- 11:52:52.666 INFO [16133]: COREGRADE is starting... -- 11:52:52.666 INFO [16133]: Version from config: 1.0 -- 11:52:52.666 DEBUG [16133]: Connecting to database... -- 11:52:52.666 DEBUG [16133]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:52:52.666 SQL [16133]: pgsql_db_connect() -- 11:52:52.670 DEBUG [16133]: Database connection successful -- 11:52:52.670 INFO [16133]: _SERVER found -- 11:52:52.670 INFO [16133]: REMOTE_ADDR = 10.0.0.15 -- 11:52:52.670 INFO [16133]: SERVER_NAME = works.coregrade.com -- 11:52:52.670 INFO [16133]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:52:52.670 INFO [16133]: QUERY_STRING = /assets/img/footer_1.jpg -- 11:52:52.670 INFO [16133]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:52:52.681 INFO [16133]: COREGRADE is stopping... -- 11:52:52.681 DEBUG [16133]: Closing database connection -- 11:52:52.681 SQL [16133]: pgsql_close() -- 11:52:52.700 INFO [16133]: COREGRADE is starting... -- 11:52:52.700 INFO [16133]: Version from config: 1.0 -- 11:52:52.700 DEBUG [16133]: Connecting to database... -- 11:52:52.700 DEBUG [16133]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:52:52.700 SQL [16133]: pgsql_db_connect() -- 11:52:52.704 DEBUG [16133]: Database connection successful -- 11:52:52.704 INFO [16133]: _SERVER found -- 11:52:52.704 INFO [16133]: REMOTE_ADDR = 10.0.0.15 -- 11:52:52.704 INFO [16133]: SERVER_NAME = works.coregrade.com -- 11:52:52.704 INFO [16133]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:52:52.704 INFO [16133]: QUERY_STRING = /assets/img/App_view-3.png -- 11:52:52.704 INFO [16133]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:52:52.715 INFO [16133]: COREGRADE is stopping... -- 11:52:52.715 DEBUG [16133]: Closing database connection -- 11:52:52.715 SQL [16133]: pgsql_close() -- 11:54:50.656 INFO [28880]: COREGRADE is starting... -- 11:54:50.656 INFO [28880]: Version from config: 1.0 -- 11:54:50.656 DEBUG [28880]: Connecting to database... -- 11:54:50.656 DEBUG [28880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:54:50.656 SQL [28880]: pgsql_db_connect() -- 11:54:50.661 DEBUG [28880]: Database connection successful -- 11:54:50.661 INFO [28880]: _SERVER found -- 11:54:50.661 INFO [28880]: REMOTE_ADDR = 10.0.0.15 -- 11:54:50.661 INFO [28880]: SERVER_NAME = works.coregrade.com -- 11:54:50.661 INFO [28880]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k -- 11:54:50.661 INFO [28880]: QUERY_STRING = -- 11:54:50.661 INFO [28880]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:54:50.705 INFO [28880]: COREGRADE is stopping... -- 11:54:50.705 DEBUG [28880]: Closing database connection -- 11:54:50.705 SQL [28880]: pgsql_close() -- 11:54:51.111 INFO [28884]: COREGRADE is starting... -- 11:54:51.111 INFO [28884]: Version from config: 1.0 -- 11:54:51.111 DEBUG [28884]: Connecting to database... -- 11:54:51.111 DEBUG [28884]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:54:51.111 SQL [28884]: pgsql_db_connect() -- 11:54:51.116 DEBUG [28884]: Database connection successful -- 11:54:51.116 INFO [28884]: _SERVER found -- 11:54:51.116 INFO [28884]: REMOTE_ADDR = 10.0.0.15 -- 11:54:51.116 INFO [28884]: SERVER_NAME = works.coregrade.com -- 11:54:51.116 INFO [28884]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:54:51.116 INFO [28884]: QUERY_STRING = /assets/img/footer_1.jpg -- 11:54:51.116 INFO [28884]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:54:51.130 INFO [28884]: COREGRADE is stopping... -- 11:54:51.130 DEBUG [28884]: Closing database connection -- 11:54:51.130 SQL [28884]: pgsql_close() -- 11:54:54.176 INFO [28884]: COREGRADE is starting... -- 11:54:54.176 INFO [28884]: Version from config: 1.0 -- 11:54:54.176 DEBUG [28884]: Connecting to database... -- 11:54:54.176 DEBUG [28884]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:54:54.177 SQL [28884]: pgsql_db_connect() -- 11:54:54.187 INFO [28880]: COREGRADE is starting... -- 11:54:54.187 INFO [28880]: Version from config: 1.0 -- 11:54:54.187 DEBUG [28880]: Connecting to database... -- 11:54:54.187 DEBUG [28880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:54:54.187 SQL [28880]: pgsql_db_connect() -- 11:54:54.180 DEBUG [28884]: Database connection successful -- 11:54:54.180 INFO [28884]: _SERVER found -- 11:54:54.180 INFO [28884]: REMOTE_ADDR = 10.0.0.15 -- 11:54:54.180 INFO [28884]: SERVER_NAME = works.coregrade.com -- 11:54:54.180 INFO [28884]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:54:54.180 INFO [28884]: QUERY_STRING = /welcome/viewLogin -- 11:54:54.180 INFO [28884]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:54:54.215 INFO [28884]: COREGRADE is stopping... -- 11:54:54.215 DEBUG [28884]: Closing database connection -- 11:54:54.215 SQL [28884]: pgsql_close() -- 11:54:54.191 DEBUG [28880]: Database connection successful -- 11:54:54.191 INFO [28880]: _SERVER found -- 11:54:54.191 INFO [28880]: REMOTE_ADDR = 10.0.0.15 -- 11:54:54.191 INFO [28880]: SERVER_NAME = works.coregrade.com -- 11:54:54.191 INFO [28880]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:54:54.191 INFO [28880]: QUERY_STRING = /auth -- 11:54:54.191 INFO [28880]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:54:54.225 INFO [28880]: COREGRADE is stopping... -- 11:54:54.225 DEBUG [28880]: Closing database connection -- 11:54:54.226 SQL [28880]: pgsql_close() -- 11:54:54.241 INFO [28880]: COREGRADE is starting... -- 11:54:54.241 INFO [28880]: Version from config: 1.0 -- 11:54:54.241 DEBUG [28880]: Connecting to database... -- 11:54:54.241 DEBUG [28880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:54:54.241 SQL [28880]: pgsql_db_connect() -- 11:54:54.245 DEBUG [28880]: Database connection successful -- 11:54:54.245 INFO [28880]: _SERVER found -- 11:54:54.245 INFO [28880]: REMOTE_ADDR = 10.0.0.15 -- 11:54:54.245 INFO [28880]: SERVER_NAME = works.coregrade.com -- 11:54:54.245 INFO [28880]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:54:54.245 INFO [28880]: QUERY_STRING = /auth/index -- 11:54:54.245 INFO [28880]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:54:54.280 INFO [28880]: COREGRADE is stopping... -- 11:54:54.280 DEBUG [28880]: Closing database connection -- 11:54:54.280 SQL [28880]: pgsql_close() -- 11:54:54.415 INFO [30968]: COREGRADE is starting... -- 11:54:54.416 INFO [30968]: Version from config: 1.0 -- 11:54:54.416 DEBUG [30968]: Connecting to database... -- 11:54:54.416 DEBUG [30968]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:54:54.416 SQL [30968]: pgsql_db_connect() -- 11:54:54.420 DEBUG [30968]: Database connection successful -- 11:54:54.420 INFO [30968]: _SERVER found -- 11:54:54.420 INFO [30968]: REMOTE_ADDR = 10.0.0.15 -- 11:54:54.420 INFO [30968]: SERVER_NAME = works.coregrade.com -- 11:54:54.420 INFO [30968]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:54:54.420 INFO [30968]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 11:54:54.420 INFO [30968]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:54:54.435 INFO [30968]: COREGRADE is stopping... -- 11:54:54.435 DEBUG [30968]: Closing database connection -- 11:54:54.435 SQL [30968]: pgsql_close() -- 11:54:54.509 INFO [30968]: COREGRADE is starting... -- 11:54:54.510 INFO [30968]: Version from config: 1.0 -- 11:54:54.510 DEBUG [30968]: Connecting to database... -- 11:54:54.510 DEBUG [30968]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:54:54.510 SQL [30968]: pgsql_db_connect() -- 11:54:54.514 DEBUG [30968]: Database connection successful -- 11:54:54.514 INFO [30968]: _SERVER found -- 11:54:54.514 INFO [30968]: REMOTE_ADDR = 10.0.0.15 -- 11:54:54.514 INFO [30968]: SERVER_NAME = works.coregrade.com -- 11:54:54.514 INFO [30968]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:54:54.514 INFO [30968]: QUERY_STRING = /assets2/data/locales/en.json -- 11:54:54.514 INFO [30968]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:54:54.527 INFO [30968]: COREGRADE is stopping... -- 11:54:54.527 DEBUG [30968]: Closing database connection -- 11:54:54.527 SQL [30968]: pgsql_close() -- 11:55:03.919 INFO [31697]: COREGRADE is starting... -- 11:55:03.919 INFO [31697]: Version from config: 1.0 -- 11:55:03.919 DEBUG [31697]: Connecting to database... -- 11:55:03.919 DEBUG [31697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:55:03.919 SQL [31697]: pgsql_db_connect() -- 11:55:03.923 DEBUG [31697]: Database connection successful -- 11:55:03.923 INFO [31697]: _SERVER found -- 11:55:03.923 INFO [31697]: REMOTE_ADDR = 10.0.0.15 -- 11:55:03.923 INFO [31697]: SERVER_NAME = works.coregrade.com -- 11:55:03.923 INFO [31697]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:55:03.923 INFO [31697]: QUERY_STRING = /auth -- 11:55:03.923 INFO [31697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:55:04.014 INFO [31697]: COREGRADE is starting... -- 11:55:04.015 INFO [31697]: Version from config: 1.0 -- 11:55:04.015 DEBUG [31697]: Connecting to database... -- 11:55:04.015 DEBUG [31697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:55:04.015 SQL [31697]: pgsql_db_connect() -- 11:55:04.019 DEBUG [31697]: Database connection successful -- 11:55:04.019 INFO [31697]: _SERVER found -- 11:55:04.019 INFO [31697]: REMOTE_ADDR = 10.0.0.15 -- 11:55:04.019 INFO [31697]: SERVER_NAME = works.coregrade.com -- 11:55:04.019 INFO [31697]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:55:04.019 INFO [31697]: QUERY_STRING = /member/index -- 11:55:04.019 INFO [31697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:55:04.061 INFO [31697]: COREGRADE is stopping... -- 11:55:04.061 DEBUG [31697]: Closing database connection -- 11:55:04.061 SQL [31697]: pgsql_close() -- 11:55:04.477 INFO [31702]: COREGRADE is starting... -- 11:55:04.477 INFO [31702]: Version from config: 1.0 -- 11:55:04.477 DEBUG [31702]: Connecting to database... -- 11:55:04.477 DEBUG [31702]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:55:04.477 SQL [31702]: pgsql_db_connect() -- 11:55:04.482 DEBUG [31702]: Database connection successful -- 11:55:04.482 INFO [31702]: _SERVER found -- 11:55:04.482 INFO [31702]: REMOTE_ADDR = 10.0.0.15 -- 11:55:04.482 INFO [31702]: SERVER_NAME = works.coregrade.com -- 11:55:04.482 INFO [31702]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:55:04.482 INFO [31702]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:55:04.482 INFO [31702]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:55:04.498 INFO [31702]: COREGRADE is stopping... -- 11:55:04.498 DEBUG [31702]: Closing database connection -- 11:55:04.498 SQL [31702]: pgsql_close() -- 11:55:04.650 INFO [31697]: COREGRADE is starting... -- 11:55:04.650 INFO [31697]: Version from config: 1.0 -- 11:55:04.650 DEBUG [31697]: Connecting to database... -- 11:55:04.650 DEBUG [31697]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:55:04.650 SQL [31697]: pgsql_db_connect() -- 11:55:04.654 DEBUG [31697]: Database connection successful -- 11:55:04.654 INFO [31697]: _SERVER found -- 11:55:04.654 INFO [31697]: REMOTE_ADDR = 10.0.0.15 -- 11:55:04.654 INFO [31697]: SERVER_NAME = works.coregrade.com -- 11:55:04.654 INFO [31697]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:55:04.654 INFO [31697]: QUERY_STRING = /assets2/data/locales/en.json -- 11:55:04.654 INFO [31697]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:55:04.665 INFO [31697]: COREGRADE is stopping... -- 11:55:04.665 DEBUG [31697]: Closing database connection -- 11:55:04.665 SQL [31697]: pgsql_close() -- 11:55:12.749 INFO [28880]: COREGRADE is starting... -- 11:55:12.749 INFO [28880]: Version from config: 1.0 -- 11:55:12.749 DEBUG [28880]: Connecting to database... -- 11:55:12.749 DEBUG [28880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:55:12.749 SQL [28880]: pgsql_db_connect() -- 11:55:12.753 DEBUG [28880]: Database connection successful -- 11:55:12.753 INFO [28880]: _SERVER found -- 11:55:12.753 INFO [28880]: REMOTE_ADDR = 10.0.0.15 -- 11:55:12.753 INFO [28880]: SERVER_NAME = works.coregrade.com -- 11:55:12.753 INFO [28880]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:55:12.753 INFO [28880]: QUERY_STRING = /member/classroom -- 11:55:12.753 INFO [28880]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:55:12.800 INFO [28880]: COREGRADE is stopping... -- 11:55:12.800 DEBUG [28880]: Closing database connection -- 11:55:12.800 SQL [28880]: pgsql_close() -- 11:55:13.144 INFO [28882]: COREGRADE is starting... -- 11:55:13.144 INFO [28882]: Version from config: 1.0 -- 11:55:13.144 DEBUG [28882]: Connecting to database... -- 11:55:13.144 DEBUG [28882]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:55:13.144 SQL [28882]: pgsql_db_connect() -- 11:55:13.148 DEBUG [28882]: Database connection successful -- 11:55:13.148 INFO [28882]: _SERVER found -- 11:55:13.148 INFO [28882]: REMOTE_ADDR = 10.0.0.15 -- 11:55:13.148 INFO [28882]: SERVER_NAME = works.coregrade.com -- 11:55:13.148 INFO [28882]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:55:13.148 INFO [28882]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:55:13.148 INFO [28882]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:55:13.163 INFO [28882]: COREGRADE is stopping... -- 11:55:13.163 DEBUG [28882]: Closing database connection -- 11:55:13.163 SQL [28882]: pgsql_close() -- 11:55:13.278 INFO [28882]: COREGRADE is starting... -- 11:55:13.278 INFO [28882]: Version from config: 1.0 -- 11:55:13.278 DEBUG [28882]: Connecting to database... -- 11:55:13.278 DEBUG [28882]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:55:13.278 SQL [28882]: pgsql_db_connect() -- 11:55:13.283 DEBUG [28882]: Database connection successful -- 11:55:13.283 INFO [28882]: _SERVER found -- 11:55:13.283 INFO [28882]: REMOTE_ADDR = 10.0.0.15 -- 11:55:13.283 INFO [28882]: SERVER_NAME = works.coregrade.com -- 11:55:13.283 INFO [28882]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:55:13.283 INFO [28882]: QUERY_STRING = /assets2/data/locales/en.json -- 11:55:13.283 INFO [28882]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:55:13.296 INFO [28882]: COREGRADE is stopping... -- 11:55:13.296 DEBUG [28882]: Closing database connection -- 11:55:13.296 SQL [28882]: pgsql_close() -- 11:55:14.471 INFO [28882]: COREGRADE is starting... -- 11:55:14.472 INFO [28882]: Version from config: 1.0 -- 11:55:14.472 DEBUG [28882]: Connecting to database... -- 11:55:14.472 DEBUG [28882]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:55:14.472 SQL [28882]: pgsql_db_connect() -- 11:55:14.476 DEBUG [28882]: Database connection successful -- 11:55:14.476 INFO [28882]: _SERVER found -- 11:55:14.476 INFO [28882]: REMOTE_ADDR = 10.0.0.15 -- 11:55:14.476 INFO [28882]: SERVER_NAME = works.coregrade.com -- 11:55:14.476 INFO [28882]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:55:14.476 INFO [28882]: QUERY_STRING = /member/viewRoom -- 11:55:14.476 INFO [28882]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:55:14.518 INFO [28882]: COREGRADE is stopping... -- 11:55:14.518 DEBUG [28882]: Closing database connection -- 11:55:14.518 SQL [28882]: pgsql_close() -- 11:55:16.293 INFO [28883]: COREGRADE is starting... -- 11:55:16.293 INFO [28883]: Version from config: 1.0 -- 11:55:16.293 DEBUG [28883]: Connecting to database... -- 11:55:16.293 DEBUG [28883]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:55:16.293 SQL [28883]: pgsql_db_connect() -- 11:55:16.297 DEBUG [28883]: Database connection successful -- 11:55:16.297 INFO [28883]: _SERVER found -- 11:55:16.298 INFO [28883]: REMOTE_ADDR = 10.0.0.15 -- 11:55:16.298 INFO [28883]: SERVER_NAME = works.coregrade.com -- 11:55:16.298 INFO [28883]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:55:16.298 INFO [28883]: QUERY_STRING = /member/viewRoom -- 11:55:16.298 INFO [28883]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:55:16.339 INFO [28883]: COREGRADE is stopping... -- 11:55:16.339 DEBUG [28883]: Closing database connection -- 11:55:16.339 SQL [28883]: pgsql_close() -- 11:55:23.365 INFO [28881]: COREGRADE is starting... -- 11:55:23.366 INFO [28881]: Version from config: 1.0 -- 11:55:23.366 DEBUG [28881]: Connecting to database... -- 11:55:23.366 DEBUG [28881]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:55:23.366 SQL [28881]: pgsql_db_connect() -- 11:55:23.370 DEBUG [28881]: Database connection successful -- 11:55:23.370 INFO [28881]: _SERVER found -- 11:55:23.370 INFO [28881]: REMOTE_ADDR = 10.0.0.15 -- 11:55:23.370 INFO [28881]: SERVER_NAME = works.coregrade.com -- 11:55:23.370 INFO [28881]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:55:23.370 INFO [28881]: QUERY_STRING = /member/viewRoom -- 11:55:23.370 INFO [28881]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:55:23.412 INFO [28881]: COREGRADE is stopping... -- 11:55:23.412 DEBUG [28881]: Closing database connection -- 11:55:23.412 SQL [28881]: pgsql_close() -- 11:55:27.544 INFO [31702]: COREGRADE is starting... -- 11:55:27.544 INFO [31702]: Version from config: 1.0 -- 11:55:27.544 DEBUG [31702]: Connecting to database... -- 11:55:27.544 DEBUG [31702]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:55:27.544 SQL [31702]: pgsql_db_connect() -- 11:55:27.549 DEBUG [31702]: Database connection successful -- 11:55:27.549 INFO [31702]: _SERVER found -- 11:55:27.549 INFO [31702]: REMOTE_ADDR = 10.0.0.15 -- 11:55:27.549 INFO [31702]: SERVER_NAME = works.coregrade.com -- 11:55:27.549 INFO [31702]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:55:27.549 INFO [31702]: QUERY_STRING = /member -- 11:55:27.549 INFO [31702]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:55:27.596 INFO [31702]: COREGRADE is stopping... -- 11:55:27.596 DEBUG [31702]: Closing database connection -- 11:55:27.596 SQL [31702]: pgsql_close() -- 11:55:27.889 INFO [31698]: COREGRADE is starting... -- 11:55:27.890 INFO [31698]: Version from config: 1.0 -- 11:55:27.890 DEBUG [31698]: Connecting to database... -- 11:55:27.890 DEBUG [31698]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:55:27.890 SQL [31698]: pgsql_db_connect() -- 11:55:27.894 DEBUG [31698]: Database connection successful -- 11:55:27.894 INFO [31698]: _SERVER found -- 11:55:27.894 INFO [31698]: REMOTE_ADDR = 10.0.0.15 -- 11:55:27.894 INFO [31698]: SERVER_NAME = works.coregrade.com -- 11:55:27.894 INFO [31698]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:55:27.894 INFO [31698]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:55:27.894 INFO [31698]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:55:27.910 INFO [31698]: COREGRADE is stopping... -- 11:55:27.910 DEBUG [31698]: Closing database connection -- 11:55:27.910 SQL [31698]: pgsql_close() -- 11:55:28.021 INFO [31702]: COREGRADE is starting... -- 11:55:28.021 INFO [31702]: Version from config: 1.0 -- 11:55:28.021 DEBUG [31702]: Connecting to database... -- 11:55:28.021 DEBUG [31702]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:55:28.021 SQL [31702]: pgsql_db_connect() -- 11:55:28.025 DEBUG [31702]: Database connection successful -- 11:55:28.025 INFO [31702]: _SERVER found -- 11:55:28.025 INFO [31702]: REMOTE_ADDR = 10.0.0.15 -- 11:55:28.025 INFO [31702]: SERVER_NAME = works.coregrade.com -- 11:55:28.025 INFO [31702]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:55:28.025 INFO [31702]: QUERY_STRING = /assets2/data/locales/en.json -- 11:55:28.025 INFO [31702]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:55:28.037 INFO [31702]: COREGRADE is stopping... -- 11:55:28.037 DEBUG [31702]: Closing database connection -- 11:55:28.037 SQL [31702]: pgsql_close() -- 11:55:29.488 INFO [31702]: COREGRADE is starting... -- 11:55:29.489 INFO [31702]: Version from config: 1.0 -- 11:55:29.489 DEBUG [31702]: Connecting to database... -- 11:55:29.489 DEBUG [31702]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:55:29.489 SQL [31702]: pgsql_db_connect() -- 11:55:29.493 DEBUG [31702]: Database connection successful -- 11:55:29.493 INFO [31702]: _SERVER found -- 11:55:29.493 INFO [31702]: REMOTE_ADDR = 10.0.0.15 -- 11:55:29.493 INFO [31702]: SERVER_NAME = works.coregrade.com -- 11:55:29.493 INFO [31702]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:55:29.493 INFO [31702]: QUERY_STRING = /member/mycalendar -- 11:55:29.493 INFO [31702]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:55:29.535 INFO [31702]: COREGRADE is stopping... -- 11:55:29.535 DEBUG [31702]: Closing database connection -- 11:55:29.535 SQL [31702]: pgsql_close() -- 11:55:29.642 INFO [31702]: COREGRADE is starting... -- 11:55:29.642 INFO [31702]: Version from config: 1.0 -- 11:55:29.642 DEBUG [31702]: Connecting to database... -- 11:55:29.642 DEBUG [31702]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:55:29.642 SQL [31702]: pgsql_db_connect() -- 11:55:29.646 DEBUG [31702]: Database connection successful -- 11:55:29.646 INFO [31702]: _SERVER found -- 11:55:29.646 INFO [31702]: REMOTE_ADDR = 10.0.0.15 -- 11:55:29.646 INFO [31702]: SERVER_NAME = works.coregrade.com -- 11:55:29.646 INFO [31702]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:55:29.646 INFO [31702]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:55:29.646 INFO [31702]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:55:29.659 INFO [31702]: COREGRADE is stopping... -- 11:55:29.659 DEBUG [31702]: Closing database connection -- 11:55:29.659 SQL [31702]: pgsql_close() -- 11:55:29.749 INFO [31702]: COREGRADE is starting... -- 11:55:29.749 INFO [31702]: Version from config: 1.0 -- 11:55:29.749 DEBUG [31702]: Connecting to database... -- 11:55:29.749 DEBUG [31702]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:55:29.749 SQL [31702]: pgsql_db_connect() -- 11:55:29.753 DEBUG [31702]: Database connection successful -- 11:55:29.753 INFO [31702]: _SERVER found -- 11:55:29.753 INFO [31702]: REMOTE_ADDR = 10.0.0.15 -- 11:55:29.753 INFO [31702]: SERVER_NAME = works.coregrade.com -- 11:55:29.753 INFO [31702]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:55:29.753 INFO [31702]: QUERY_STRING = /assets2/data/locales/en.json -- 11:55:29.753 INFO [31702]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:55:29.766 INFO [31702]: COREGRADE is stopping... -- 11:55:29.766 DEBUG [31702]: Closing database connection -- 11:55:29.766 SQL [31702]: pgsql_close() -- 11:55:30.753 INFO [31702]: COREGRADE is starting... -- 11:55:30.753 INFO [31702]: Version from config: 1.0 -- 11:55:30.753 DEBUG [31702]: Connecting to database... -- 11:55:30.753 DEBUG [31702]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:55:30.753 SQL [31702]: pgsql_db_connect() -- 11:55:30.757 DEBUG [31702]: Database connection successful -- 11:55:30.757 INFO [31702]: _SERVER found -- 11:55:30.757 INFO [31702]: REMOTE_ADDR = 10.0.0.15 -- 11:55:30.757 INFO [31702]: SERVER_NAME = works.coregrade.com -- 11:55:30.757 INFO [31702]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:55:30.757 INFO [31702]: QUERY_STRING = /member/classroom -- 11:55:30.757 INFO [31702]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:55:30.804 INFO [31702]: COREGRADE is stopping... -- 11:55:30.804 DEBUG [31702]: Closing database connection -- 11:55:30.804 SQL [31702]: pgsql_close() -- 11:55:30.917 INFO [31702]: COREGRADE is starting... -- 11:55:30.917 INFO [31702]: Version from config: 1.0 -- 11:55:30.917 DEBUG [31702]: Connecting to database... -- 11:55:30.917 DEBUG [31702]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:55:30.917 SQL [31702]: pgsql_db_connect() -- 11:55:30.921 DEBUG [31702]: Database connection successful -- 11:55:30.921 INFO [31702]: _SERVER found -- 11:55:30.921 INFO [31702]: REMOTE_ADDR = 10.0.0.15 -- 11:55:30.921 INFO [31702]: SERVER_NAME = works.coregrade.com -- 11:55:30.921 INFO [31702]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:55:30.921 INFO [31702]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:55:30.921 INFO [31702]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:55:30.934 INFO [31702]: COREGRADE is stopping... -- 11:55:30.934 DEBUG [31702]: Closing database connection -- 11:55:30.934 SQL [31702]: pgsql_close() -- 11:55:30.978 INFO [31702]: COREGRADE is starting... -- 11:55:30.978 INFO [31702]: Version from config: 1.0 -- 11:55:30.978 DEBUG [31702]: Connecting to database... -- 11:55:30.978 DEBUG [31702]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:55:30.978 SQL [31702]: pgsql_db_connect() -- 11:55:30.983 DEBUG [31702]: Database connection successful -- 11:55:30.983 INFO [31702]: _SERVER found -- 11:55:30.983 INFO [31702]: REMOTE_ADDR = 10.0.0.15 -- 11:55:30.983 INFO [31702]: SERVER_NAME = works.coregrade.com -- 11:55:30.983 INFO [31702]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:55:30.983 INFO [31702]: QUERY_STRING = /assets2/data/locales/en.json -- 11:55:30.983 INFO [31702]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:55:30.996 INFO [31702]: COREGRADE is stopping... -- 11:55:30.996 DEBUG [31702]: Closing database connection -- 11:55:30.996 SQL [31702]: pgsql_close() -- 11:55:32.962 INFO [31702]: COREGRADE is starting... -- 11:55:32.963 INFO [31702]: Version from config: 1.0 -- 11:55:32.963 DEBUG [31702]: Connecting to database... -- 11:55:32.963 DEBUG [31702]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:55:32.963 SQL [31702]: pgsql_db_connect() -- 11:55:32.967 DEBUG [31702]: Database connection successful -- 11:55:32.967 INFO [31702]: _SERVER found -- 11:55:32.967 INFO [31702]: REMOTE_ADDR = 10.0.0.15 -- 11:55:32.967 INFO [31702]: SERVER_NAME = works.coregrade.com -- 11:55:32.967 INFO [31702]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:55:32.967 INFO [31702]: QUERY_STRING = /member/viewRoom -- 11:55:32.967 INFO [31702]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:55:33.009 INFO [31702]: COREGRADE is stopping... -- 11:55:33.009 DEBUG [31702]: Closing database connection -- 11:55:33.009 SQL [31702]: pgsql_close() -- 11:55:34.695 INFO [28882]: COREGRADE is starting... -- 11:55:34.695 INFO [28882]: Version from config: 1.0 -- 11:55:34.695 DEBUG [28882]: Connecting to database... -- 11:55:34.695 DEBUG [28882]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:55:34.695 SQL [28882]: pgsql_db_connect() -- 11:55:34.699 DEBUG [28882]: Database connection successful -- 11:55:34.699 INFO [28882]: _SERVER found -- 11:55:34.699 INFO [28882]: REMOTE_ADDR = 10.0.0.15 -- 11:55:34.699 INFO [28882]: SERVER_NAME = works.coregrade.com -- 11:55:34.699 INFO [28882]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:55:34.699 INFO [28882]: QUERY_STRING = /member/viewRoom -- 11:55:34.699 INFO [28882]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:55:34.738 INFO [28882]: COREGRADE is stopping... -- 11:55:34.738 DEBUG [28882]: Closing database connection -- 11:55:34.738 SQL [28882]: pgsql_close() -- 11:55:36.133 INFO [28883]: COREGRADE is starting... -- 11:55:36.133 INFO [28883]: Version from config: 1.0 -- 11:55:36.133 DEBUG [28883]: Connecting to database... -- 11:55:36.133 DEBUG [28883]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:55:36.133 SQL [28883]: pgsql_db_connect() -- 11:55:36.137 DEBUG [28883]: Database connection successful -- 11:55:36.137 INFO [28883]: _SERVER found -- 11:55:36.137 INFO [28883]: REMOTE_ADDR = 10.0.0.15 -- 11:55:36.137 INFO [28883]: SERVER_NAME = works.coregrade.com -- 11:55:36.137 INFO [28883]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:55:36.137 INFO [28883]: QUERY_STRING = /member/viewRoom -- 11:55:36.137 INFO [28883]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:55:36.177 INFO [28883]: COREGRADE is stopping... -- 11:55:36.177 DEBUG [28883]: Closing database connection -- 11:55:36.177 SQL [28883]: pgsql_close() -- 11:55:37.520 INFO [28883]: COREGRADE is starting... -- 11:55:37.521 INFO [28883]: Version from config: 1.0 -- 11:55:37.521 DEBUG [28883]: Connecting to database... -- 11:55:37.521 DEBUG [28883]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:55:37.521 SQL [28883]: pgsql_db_connect() -- 11:55:37.525 DEBUG [28883]: Database connection successful -- 11:55:37.525 INFO [28883]: _SERVER found -- 11:55:37.525 INFO [28883]: REMOTE_ADDR = 10.0.0.15 -- 11:55:37.525 INFO [28883]: SERVER_NAME = works.coregrade.com -- 11:55:37.525 INFO [28883]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k; _gat_gtag_UA_54829827_2=1 -- 11:55:37.525 INFO [28883]: QUERY_STRING = /member/viewRoom -- 11:55:37.525 INFO [28883]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:55:37.563 INFO [28883]: COREGRADE is stopping... -- 11:55:37.563 DEBUG [28883]: Closing database connection -- 11:55:37.563 SQL [28883]: pgsql_close() -- 11:56:06.081 INFO [28880]: COREGRADE is starting... -- 11:56:06.081 INFO [28880]: Version from config: 1.0 -- 11:56:06.081 DEBUG [28880]: Connecting to database... -- 11:56:06.081 DEBUG [28880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:06.081 SQL [28880]: pgsql_db_connect() -- 11:56:06.085 DEBUG [28880]: Database connection successful -- 11:56:06.085 INFO [28880]: _SERVER found -- 11:56:06.085 INFO [28880]: REMOTE_ADDR = 10.0.0.15 -- 11:56:06.085 INFO [28880]: SERVER_NAME = works.coregrade.com -- 11:56:06.085 INFO [28880]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k -- 11:56:06.085 INFO [28880]: QUERY_STRING = /member/configure -- 11:56:06.085 INFO [28880]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:56:06.131 INFO [28880]: COREGRADE is stopping... -- 11:56:06.131 DEBUG [28880]: Closing database connection -- 11:56:06.131 SQL [28880]: pgsql_close() -- 11:56:06.466 INFO [30968]: COREGRADE is starting... -- 11:56:06.466 INFO [30968]: Version from config: 1.0 -- 11:56:06.466 DEBUG [30968]: Connecting to database... -- 11:56:06.466 DEBUG [30968]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:06.466 SQL [30968]: pgsql_db_connect() -- 11:56:06.468 INFO [28880]: COREGRADE is starting... -- 11:56:06.468 INFO [28880]: Version from config: 1.0 -- 11:56:06.468 DEBUG [28880]: Connecting to database... -- 11:56:06.468 DEBUG [28880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:06.468 SQL [28880]: pgsql_db_connect() -- 11:56:06.470 DEBUG [30968]: Database connection successful -- 11:56:06.470 INFO [30968]: _SERVER found -- 11:56:06.470 INFO [30968]: REMOTE_ADDR = 10.0.0.15 -- 11:56:06.470 INFO [30968]: SERVER_NAME = works.coregrade.com -- 11:56:06.470 INFO [30968]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k -- 11:56:06.470 INFO [30968]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:56:06.470 INFO [30968]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:56:06.483 INFO [30968]: COREGRADE is stopping... -- 11:56:06.483 DEBUG [30968]: Closing database connection -- 11:56:06.483 SQL [30968]: pgsql_close() -- 11:56:06.472 DEBUG [28880]: Database connection successful -- 11:56:06.472 INFO [28880]: _SERVER found -- 11:56:06.472 INFO [28880]: REMOTE_ADDR = 10.0.0.15 -- 11:56:06.472 INFO [28880]: SERVER_NAME = works.coregrade.com -- 11:56:06.472 INFO [28880]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k -- 11:56:06.472 INFO [28880]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 11:56:06.472 INFO [28880]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:56:06.485 INFO [28880]: COREGRADE is stopping... -- 11:56:06.485 DEBUG [28880]: Closing database connection -- 11:56:06.485 SQL [28880]: pgsql_close() -- 11:56:06.583 INFO [28884]: COREGRADE is starting... -- 11:56:06.583 INFO [28884]: Version from config: 1.0 -- 11:56:06.583 DEBUG [28884]: Connecting to database... -- 11:56:06.583 DEBUG [28884]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:06.583 SQL [28884]: pgsql_db_connect() -- 11:56:06.587 DEBUG [28884]: Database connection successful -- 11:56:06.587 INFO [28884]: _SERVER found -- 11:56:06.587 INFO [28884]: REMOTE_ADDR = 10.0.0.15 -- 11:56:06.587 INFO [28884]: SERVER_NAME = works.coregrade.com -- 11:56:06.587 INFO [28884]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k -- 11:56:06.587 INFO [28884]: QUERY_STRING = /assets2/data/locales/en.json -- 11:56:06.587 INFO [28884]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:56:06.599 INFO [28884]: COREGRADE is stopping... -- 11:56:06.599 DEBUG [28884]: Closing database connection -- 11:56:06.599 SQL [28884]: pgsql_close() -- 11:56:07.550 INFO [28884]: COREGRADE is starting... -- 11:56:07.550 INFO [28884]: Version from config: 1.0 -- 11:56:07.550 DEBUG [28884]: Connecting to database... -- 11:56:07.550 DEBUG [28884]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:07.550 SQL [28884]: pgsql_db_connect() -- 11:56:07.554 DEBUG [28884]: Database connection successful -- 11:56:07.554 INFO [28884]: _SERVER found -- 11:56:07.554 INFO [28884]: REMOTE_ADDR = 10.0.0.15 -- 11:56:07.554 INFO [28884]: SERVER_NAME = works.coregrade.com -- 11:56:07.554 INFO [28884]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k -- 11:56:07.554 INFO [28884]: QUERY_STRING = /member -- 11:56:07.554 INFO [28884]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:56:07.595 INFO [28884]: COREGRADE is stopping... -- 11:56:07.595 DEBUG [28884]: Closing database connection -- 11:56:07.595 SQL [28884]: pgsql_close() -- 11:56:07.695 INFO [28884]: COREGRADE is starting... -- 11:56:07.695 INFO [28884]: Version from config: 1.0 -- 11:56:07.695 DEBUG [28884]: Connecting to database... -- 11:56:07.695 DEBUG [28884]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:07.695 SQL [28884]: pgsql_db_connect() -- 11:56:07.700 DEBUG [28884]: Database connection successful -- 11:56:07.700 INFO [28884]: _SERVER found -- 11:56:07.700 INFO [28884]: REMOTE_ADDR = 10.0.0.15 -- 11:56:07.700 INFO [28884]: SERVER_NAME = works.coregrade.com -- 11:56:07.700 INFO [28884]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k -- 11:56:07.700 INFO [28884]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:56:07.700 INFO [28884]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:56:07.711 INFO [28884]: COREGRADE is stopping... -- 11:56:07.711 DEBUG [28884]: Closing database connection -- 11:56:07.711 SQL [28884]: pgsql_close() -- 11:56:07.768 INFO [28884]: COREGRADE is starting... -- 11:56:07.769 INFO [28884]: Version from config: 1.0 -- 11:56:07.769 DEBUG [28884]: Connecting to database... -- 11:56:07.769 DEBUG [28884]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:07.769 SQL [28884]: pgsql_db_connect() -- 11:56:07.773 DEBUG [28884]: Database connection successful -- 11:56:07.773 INFO [28884]: _SERVER found -- 11:56:07.773 INFO [28884]: REMOTE_ADDR = 10.0.0.15 -- 11:56:07.773 INFO [28884]: SERVER_NAME = works.coregrade.com -- 11:56:07.773 INFO [28884]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k -- 11:56:07.773 INFO [28884]: QUERY_STRING = /assets2/data/locales/en.json -- 11:56:07.773 INFO [28884]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:56:07.784 INFO [28884]: COREGRADE is stopping... -- 11:56:07.784 DEBUG [28884]: Closing database connection -- 11:56:07.784 SQL [28884]: pgsql_close() -- 11:56:09.186 INFO [28884]: COREGRADE is starting... -- 11:56:09.186 INFO [28884]: Version from config: 1.0 -- 11:56:09.186 DEBUG [28884]: Connecting to database... -- 11:56:09.186 DEBUG [28884]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:09.186 SQL [28884]: pgsql_db_connect() -- 11:56:09.190 DEBUG [28884]: Database connection successful -- 11:56:09.190 INFO [28884]: _SERVER found -- 11:56:09.190 INFO [28884]: REMOTE_ADDR = 10.0.0.15 -- 11:56:09.190 INFO [28884]: SERVER_NAME = works.coregrade.com -- 11:56:09.190 INFO [28884]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k -- 11:56:09.190 INFO [28884]: QUERY_STRING = /member/classroom -- 11:56:09.190 INFO [28884]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:56:09.233 INFO [28884]: COREGRADE is stopping... -- 11:56:09.234 DEBUG [28884]: Closing database connection -- 11:56:09.234 SQL [28884]: pgsql_close() -- 11:56:09.375 INFO [28884]: COREGRADE is starting... -- 11:56:09.375 INFO [28884]: Version from config: 1.0 -- 11:56:09.375 DEBUG [28884]: Connecting to database... -- 11:56:09.375 DEBUG [28884]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:09.375 SQL [28884]: pgsql_db_connect() -- 11:56:09.379 DEBUG [28884]: Database connection successful -- 11:56:09.379 INFO [28884]: _SERVER found -- 11:56:09.379 INFO [28884]: REMOTE_ADDR = 10.0.0.15 -- 11:56:09.379 INFO [28884]: SERVER_NAME = works.coregrade.com -- 11:56:09.379 INFO [28884]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k -- 11:56:09.379 INFO [28884]: QUERY_STRING = /assets2/data/locales/en.json -- 11:56:09.379 INFO [28884]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:56:09.391 INFO [28884]: COREGRADE is stopping... -- 11:56:09.391 DEBUG [28884]: Closing database connection -- 11:56:09.391 SQL [28884]: pgsql_close() -- 11:56:10.283 INFO [28884]: COREGRADE is starting... -- 11:56:10.283 INFO [28884]: Version from config: 1.0 -- 11:56:10.283 DEBUG [28884]: Connecting to database... -- 11:56:10.283 DEBUG [28884]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:10.283 SQL [28884]: pgsql_db_connect() -- 11:56:10.287 DEBUG [28884]: Database connection successful -- 11:56:10.287 INFO [28884]: _SERVER found -- 11:56:10.287 INFO [28884]: REMOTE_ADDR = 10.0.0.15 -- 11:56:10.287 INFO [28884]: SERVER_NAME = works.coregrade.com -- 11:56:10.287 INFO [28884]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k -- 11:56:10.287 INFO [28884]: QUERY_STRING = /member/configure -- 11:56:10.287 INFO [28884]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:56:10.331 INFO [28884]: COREGRADE is stopping... -- 11:56:10.331 DEBUG [28884]: Closing database connection -- 11:56:10.331 SQL [28884]: pgsql_close() -- 11:56:10.455 INFO [28880]: COREGRADE is starting... -- 11:56:10.455 INFO [28884]: COREGRADE is starting... -- 11:56:10.455 INFO [28884]: Version from config: 1.0 -- 11:56:10.455 DEBUG [28884]: Connecting to database... -- 11:56:10.455 INFO [28880]: Version from config: 1.0 -- 11:56:10.455 DEBUG [28880]: Connecting to database... -- 11:56:10.455 DEBUG [28884]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:10.455 DEBUG [28880]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:10.455 SQL [28884]: pgsql_db_connect() -- 11:56:10.455 SQL [28880]: pgsql_db_connect() -- 11:56:10.459 DEBUG [28884]: Database connection successful -- 11:56:10.459 INFO [28884]: _SERVER found -- 11:56:10.459 INFO [28884]: REMOTE_ADDR = 10.0.0.15 -- 11:56:10.459 INFO [28884]: SERVER_NAME = works.coregrade.com -- 11:56:10.459 INFO [28884]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k -- 11:56:10.459 INFO [28884]: QUERY_STRING = /assets2/data/locales/en.json -- 11:56:10.459 INFO [28884]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:56:10.470 INFO [28884]: COREGRADE is stopping... -- 11:56:10.459 DEBUG [28880]: Database connection successful -- 11:56:10.459 INFO [28880]: _SERVER found -- 11:56:10.459 INFO [28880]: REMOTE_ADDR = 10.0.0.15 -- 11:56:10.459 INFO [28880]: SERVER_NAME = works.coregrade.com -- 11:56:10.459 INFO [28880]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k -- 11:56:10.459 INFO [28880]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 11:56:10.459 INFO [28880]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:56:10.470 INFO [28880]: COREGRADE is stopping... -- 11:56:10.470 DEBUG [28884]: Closing database connection -- 11:56:10.470 DEBUG [28880]: Closing database connection -- 11:56:10.470 SQL [28884]: pgsql_close() -- 11:56:10.471 SQL [28880]: pgsql_close() -- 11:56:11.419 INFO [28884]: COREGRADE is starting... -- 11:56:11.419 INFO [28884]: Version from config: 1.0 -- 11:56:11.419 DEBUG [28884]: Connecting to database... -- 11:56:11.419 DEBUG [28884]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:11.419 SQL [28884]: pgsql_db_connect() -- 11:56:11.423 DEBUG [28884]: Database connection successful -- 11:56:11.423 INFO [28884]: _SERVER found -- 11:56:11.423 INFO [28884]: REMOTE_ADDR = 10.0.0.15 -- 11:56:11.423 INFO [28884]: SERVER_NAME = works.coregrade.com -- 11:56:11.423 INFO [28884]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k -- 11:56:11.423 INFO [28884]: QUERY_STRING = /member/mycalendar -- 11:56:11.423 INFO [28884]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:56:11.461 INFO [28884]: COREGRADE is stopping... -- 11:56:11.461 DEBUG [28884]: Closing database connection -- 11:56:11.461 SQL [28884]: pgsql_close() -- 11:56:11.665 INFO [28884]: COREGRADE is starting... -- 11:56:11.665 INFO [28884]: Version from config: 1.0 -- 11:56:11.665 DEBUG [28884]: Connecting to database... -- 11:56:11.665 DEBUG [28884]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:11.665 SQL [28884]: pgsql_db_connect() -- 11:56:11.669 DEBUG [28884]: Database connection successful -- 11:56:11.669 INFO [28884]: _SERVER found -- 11:56:11.669 INFO [28884]: REMOTE_ADDR = 10.0.0.15 -- 11:56:11.669 INFO [28884]: SERVER_NAME = works.coregrade.com -- 11:56:11.669 INFO [28884]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k -- 11:56:11.669 INFO [28884]: QUERY_STRING = /assets2/data/locales/en.json -- 11:56:11.669 INFO [28884]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:56:11.681 INFO [28884]: COREGRADE is stopping... -- 11:56:11.681 DEBUG [28884]: Closing database connection -- 11:56:11.681 SQL [28884]: pgsql_close() -- 11:56:12.925 INFO [28884]: COREGRADE is starting... -- 11:56:12.925 INFO [28884]: Version from config: 1.0 -- 11:56:12.925 DEBUG [28884]: Connecting to database... -- 11:56:12.925 DEBUG [28884]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:12.925 SQL [28884]: pgsql_db_connect() -- 11:56:12.929 DEBUG [28884]: Database connection successful -- 11:56:12.929 INFO [28884]: _SERVER found -- 11:56:12.929 INFO [28884]: REMOTE_ADDR = 10.0.0.15 -- 11:56:12.929 INFO [28884]: SERVER_NAME = works.coregrade.com -- 11:56:12.929 INFO [28884]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k -- 11:56:12.929 INFO [28884]: QUERY_STRING = /member/classroom -- 11:56:12.929 INFO [28884]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:56:12.972 INFO [28884]: COREGRADE is stopping... -- 11:56:12.972 DEBUG [28884]: Closing database connection -- 11:56:12.972 SQL [28884]: pgsql_close() -- 11:56:13.090 INFO [28884]: COREGRADE is starting... -- 11:56:13.090 INFO [28884]: Version from config: 1.0 -- 11:56:13.090 DEBUG [28884]: Connecting to database... -- 11:56:13.090 DEBUG [28884]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:13.090 SQL [28884]: pgsql_db_connect() -- 11:56:13.094 DEBUG [28884]: Database connection successful -- 11:56:13.094 INFO [28884]: _SERVER found -- 11:56:13.094 INFO [28884]: REMOTE_ADDR = 10.0.0.15 -- 11:56:13.094 INFO [28884]: SERVER_NAME = works.coregrade.com -- 11:56:13.094 INFO [28884]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k -- 11:56:13.094 INFO [28884]: QUERY_STRING = /assets2/data/locales/en.json -- 11:56:13.094 INFO [28884]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:56:13.105 INFO [28884]: COREGRADE is stopping... -- 11:56:13.105 DEBUG [28884]: Closing database connection -- 11:56:13.105 SQL [28884]: pgsql_close() -- 11:56:14.389 INFO [28884]: COREGRADE is starting... -- 11:56:14.389 INFO [28884]: Version from config: 1.0 -- 11:56:14.389 DEBUG [28884]: Connecting to database... -- 11:56:14.389 DEBUG [28884]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:14.389 SQL [28884]: pgsql_db_connect() -- 11:56:14.393 DEBUG [28884]: Database connection successful -- 11:56:14.393 INFO [28884]: _SERVER found -- 11:56:14.393 INFO [28884]: REMOTE_ADDR = 10.0.0.15 -- 11:56:14.393 INFO [28884]: SERVER_NAME = works.coregrade.com -- 11:56:14.393 INFO [28884]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k -- 11:56:14.393 INFO [28884]: QUERY_STRING = /member/viewRoom -- 11:56:14.393 INFO [28884]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:56:14.429 INFO [28884]: COREGRADE is stopping... -- 11:56:14.429 DEBUG [28884]: Closing database connection -- 11:56:14.429 SQL [28884]: pgsql_close() -- 11:56:15.648 INFO [28884]: COREGRADE is starting... -- 11:56:15.648 INFO [28884]: Version from config: 1.0 -- 11:56:15.648 DEBUG [28884]: Connecting to database... -- 11:56:15.648 DEBUG [28884]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:15.648 SQL [28884]: pgsql_db_connect() -- 11:56:15.652 DEBUG [28884]: Database connection successful -- 11:56:15.652 INFO [28884]: _SERVER found -- 11:56:15.652 INFO [28884]: REMOTE_ADDR = 10.0.0.15 -- 11:56:15.652 INFO [28884]: SERVER_NAME = works.coregrade.com -- 11:56:15.652 INFO [28884]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k -- 11:56:15.652 INFO [28884]: QUERY_STRING = /member/viewRoom -- 11:56:15.652 INFO [28884]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:56:15.689 INFO [28884]: COREGRADE is stopping... -- 11:56:15.689 DEBUG [28884]: Closing database connection -- 11:56:15.689 SQL [28884]: pgsql_close() -- 11:58:06.569 INFO [6947]: COREGRADE is starting... -- 11:58:06.570 INFO [6947]: Version from config: 1.0 -- 11:58:06.570 DEBUG [6947]: Connecting to database... -- 11:58:06.570 DEBUG [6947]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:58:06.570 SQL [6947]: pgsql_db_connect() -- 11:58:06.574 DEBUG [6947]: Database connection successful -- 11:58:06.574 INFO [6947]: _SERVER found -- 11:58:06.574 INFO [6947]: REMOTE_ADDR = 10.0.0.15 -- 11:58:06.574 INFO [6947]: SERVER_NAME = works.coregrade.com -- 11:58:06.574 INFO [6947]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k -- 11:58:06.574 INFO [6947]: QUERY_STRING = /member/viewRoom -- 11:58:06.574 INFO [6947]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:58:06.617 INFO [6947]: COREGRADE is stopping... -- 11:58:06.617 DEBUG [6947]: Closing database connection -- 11:58:06.617 SQL [6947]: pgsql_close() -- 11:58:07.998 INFO [6947]: COREGRADE is starting... -- 11:58:07.998 INFO [6947]: Version from config: 1.0 -- 11:58:07.998 DEBUG [6947]: Connecting to database... -- 11:58:07.998 DEBUG [6947]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:58:07.998 SQL [6947]: pgsql_db_connect() -- 11:58:08.002 DEBUG [6947]: Database connection successful -- 11:58:08.002 INFO [6947]: _SERVER found -- 11:58:08.002 INFO [6947]: REMOTE_ADDR = 10.0.0.15 -- 11:58:08.002 INFO [6947]: SERVER_NAME = works.coregrade.com -- 11:58:08.002 INFO [6947]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k -- 11:58:08.002 INFO [6947]: QUERY_STRING = /member/viewRoom -- 11:58:08.002 INFO [6947]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:58:08.044 INFO [6947]: COREGRADE is stopping... -- 11:58:08.044 DEBUG [6947]: Closing database connection -- 11:58:08.044 SQL [6947]: pgsql_close() -- 11:58:09.621 INFO [6947]: COREGRADE is starting... -- 11:58:09.621 INFO [6947]: Version from config: 1.0 -- 11:58:09.621 DEBUG [6947]: Connecting to database... -- 11:58:09.621 DEBUG [6947]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:58:09.621 SQL [6947]: pgsql_db_connect() -- 11:58:09.625 DEBUG [6947]: Database connection successful -- 11:58:09.625 INFO [6947]: _SERVER found -- 11:58:09.625 INFO [6947]: REMOTE_ADDR = 10.0.0.15 -- 11:58:09.625 INFO [6947]: SERVER_NAME = works.coregrade.com -- 11:58:09.625 INFO [6947]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0u5t1fk5bsj349haiv3e2jl7u772to6k -- 11:58:09.625 INFO [6947]: QUERY_STRING = /member/viewRoom -- 11:58:09.625 INFO [6947]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:58:09.663 INFO [6947]: COREGRADE is stopping... -- 11:58:09.663 DEBUG [6947]: Closing database connection -- 11:58:09.663 SQL [6947]: pgsql_close() -- 12:05:01.660 INFO [15366]: COREGRADE is starting... -- 12:05:01.660 INFO [15366]: Version from config: 1.0 -- 12:05:01.660 DEBUG [15366]: Connecting to database... -- 12:05:01.660 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:05:01.661 SQL [15366]: pgsql_db_connect() -- 12:05:01.665 DEBUG [15366]: Database connection successful -- 12:05:01.665 INFO [15366]: _SERVER found -- 12:05:01.665 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 12:05:01.665 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 12:05:01.665 INFO [15366]: QUERY_STRING = /robots.txt -- 12:05:01.665 INFO [15366]: HTTP_X_FORWARDED_FOR = 66.249.64.184 -- 12:05:01.681 INFO [15366]: COREGRADE is stopping... -- 12:05:01.681 DEBUG [15366]: Closing database connection -- 12:05:01.681 SQL [15366]: pgsql_close() -- 12:05:02.027 INFO [15367]: COREGRADE is starting... -- 12:05:02.027 INFO [15367]: Version from config: 1.0 -- 12:05:02.027 DEBUG [15367]: Connecting to database... -- 12:05:02.027 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:05:02.027 SQL [15367]: pgsql_db_connect() -- 12:05:02.031 DEBUG [15367]: Database connection successful -- 12:05:02.031 INFO [15367]: _SERVER found -- 12:05:02.031 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 12:05:02.031 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 12:05:02.031 INFO [15367]: QUERY_STRING = -- 12:05:02.031 INFO [15367]: HTTP_X_FORWARDED_FOR = 66.249.64.180 -- 12:05:02.077 INFO [15367]: COREGRADE is stopping... -- 12:05:02.077 DEBUG [15367]: Closing database connection -- 12:05:02.077 SQL [15367]: pgsql_close() -- 12:05:29.899 INFO [15369]: COREGRADE is starting... -- 12:05:29.899 INFO [15369]: Version from config: 1.0 -- 12:05:29.899 DEBUG [15369]: Connecting to database... -- 12:05:29.899 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:05:29.899 SQL [15369]: pgsql_db_connect() -- 12:05:29.904 DEBUG [15369]: Database connection successful -- 12:05:29.904 INFO [15369]: _SERVER found -- 12:05:29.904 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 12:05:29.904 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 12:05:29.904 INFO [15369]: QUERY_STRING = /favicon.ico -- 12:05:29.904 INFO [15369]: HTTP_X_FORWARDED_FOR = 66.249.64.180 -- 12:05:29.919 INFO [15369]: COREGRADE is stopping... -- 12:05:29.919 DEBUG [15369]: Closing database connection -- 12:05:29.919 SQL [15369]: pgsql_close() -- 12:24:19.203 INFO [15371]: COREGRADE is starting... -- 12:24:19.203 INFO [15371]: Version from config: 1.0 -- 12:24:19.203 DEBUG [15371]: Connecting to database... -- 12:24:19.203 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:24:19.203 SQL [15371]: pgsql_db_connect() -- 12:24:19.208 DEBUG [15371]: Database connection successful -- 12:24:19.208 INFO [15371]: _SERVER found -- 12:24:19.208 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 12:24:19.208 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 12:24:19.208 INFO [15371]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=kqp3j7lr3gnv4euae559orrsng8b8cib -- 12:24:19.208 INFO [15371]: QUERY_STRING = /member -- 12:24:19.208 INFO [15371]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:24:19.260 INFO [15371]: COREGRADE is stopping... -- 12:24:19.261 DEBUG [15371]: Closing database connection -- 12:24:19.261 SQL [15371]: pgsql_close() -- 12:24:19.409 INFO [15371]: COREGRADE is starting... -- 12:24:19.409 INFO [15371]: Version from config: 1.0 -- 12:24:19.409 DEBUG [15371]: Connecting to database... -- 12:24:19.409 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:24:19.409 SQL [15371]: pgsql_db_connect() -- 12:24:19.413 DEBUG [15371]: Database connection successful -- 12:24:19.413 INFO [15371]: _SERVER found -- 12:24:19.413 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 12:24:19.413 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 12:24:19.413 INFO [15371]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0sq15ianuo5gj727qak38ku674a66feb -- 12:24:19.413 INFO [15371]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:24:19.413 INFO [15371]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:24:19.426 INFO [15371]: COREGRADE is stopping... -- 12:24:19.426 DEBUG [15371]: Closing database connection -- 12:24:19.426 SQL [15371]: pgsql_close() -- 12:24:24.280 INFO [15371]: COREGRADE is starting... -- 12:24:24.280 INFO [15371]: Version from config: 1.0 -- 12:24:24.280 DEBUG [15371]: Connecting to database... -- 12:24:24.280 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:24:24.281 SQL [15371]: pgsql_db_connect() -- 12:24:24.285 DEBUG [15371]: Database connection successful -- 12:24:24.285 INFO [15371]: _SERVER found -- 12:24:24.285 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 12:24:24.285 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 12:24:24.285 INFO [15371]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0sq15ianuo5gj727qak38ku674a66feb -- 12:24:24.285 INFO [15371]: QUERY_STRING = /member/page -- 12:24:24.285 INFO [15371]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:24:24.332 INFO [15371]: COREGRADE is stopping... -- 12:24:24.332 DEBUG [15371]: Closing database connection -- 12:24:24.332 SQL [15371]: pgsql_close() -- 12:24:24.473 INFO [15371]: COREGRADE is starting... -- 12:24:24.473 INFO [15371]: Version from config: 1.0 -- 12:24:24.473 DEBUG [15371]: Connecting to database... -- 12:24:24.473 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:24:24.473 SQL [15371]: pgsql_db_connect() -- 12:24:24.477 DEBUG [15371]: Database connection successful -- 12:24:24.477 INFO [15371]: _SERVER found -- 12:24:24.477 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 12:24:24.477 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 12:24:24.477 INFO [15371]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0sq15ianuo5gj727qak38ku674a66feb -- 12:24:24.477 INFO [15371]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:24:24.477 INFO [15371]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:24:24.489 INFO [15371]: COREGRADE is stopping... -- 12:24:24.489 DEBUG [15371]: Closing database connection -- 12:24:24.489 SQL [15371]: pgsql_close() -- 12:24:54.511 INFO [15433]: COREGRADE is starting... -- 12:24:54.511 INFO [15433]: Version from config: 1.0 -- 12:24:54.511 DEBUG [15433]: Connecting to database... -- 12:24:54.511 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:24:54.511 SQL [15433]: pgsql_db_connect() -- 12:24:54.515 DEBUG [15433]: Database connection successful -- 12:24:54.515 INFO [15433]: _SERVER found -- 12:24:54.515 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 12:24:54.515 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 12:24:54.515 INFO [15433]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0sq15ianuo5gj727qak38ku674a66feb -- 12:24:54.515 INFO [15433]: QUERY_STRING = /member -- 12:24:54.515 INFO [15433]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:24:54.565 INFO [15433]: COREGRADE is stopping... -- 12:24:54.565 DEBUG [15433]: Closing database connection -- 12:24:54.565 SQL [15433]: pgsql_close() -- 12:24:54.701 INFO [15433]: COREGRADE is starting... -- 12:24:54.701 INFO [15433]: Version from config: 1.0 -- 12:24:54.701 DEBUG [15433]: Connecting to database... -- 12:24:54.701 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:24:54.701 SQL [15433]: pgsql_db_connect() -- 12:24:54.705 DEBUG [15433]: Database connection successful -- 12:24:54.705 INFO [15433]: _SERVER found -- 12:24:54.705 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 12:24:54.705 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 12:24:54.705 INFO [15433]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0sq15ianuo5gj727qak38ku674a66feb -- 12:24:54.705 INFO [15433]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:24:54.705 INFO [15433]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:24:54.717 INFO [15433]: COREGRADE is stopping... -- 12:24:54.717 DEBUG [15433]: Closing database connection -- 12:24:54.717 SQL [15433]: pgsql_close() -- 12:24:55.920 INFO [15433]: COREGRADE is starting... -- 12:24:55.920 INFO [15433]: Version from config: 1.0 -- 12:24:55.920 DEBUG [15433]: Connecting to database... -- 12:24:55.920 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:24:55.920 SQL [15433]: pgsql_db_connect() -- 12:24:55.924 DEBUG [15433]: Database connection successful -- 12:24:55.924 INFO [15433]: _SERVER found -- 12:24:55.924 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 12:24:55.924 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 12:24:55.924 INFO [15433]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0sq15ianuo5gj727qak38ku674a66feb -- 12:24:55.924 INFO [15433]: QUERY_STRING = /member/configure -- 12:24:55.924 INFO [15433]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:24:55.970 INFO [15433]: COREGRADE is stopping... -- 12:24:55.971 DEBUG [15433]: Closing database connection -- 12:24:55.971 SQL [15433]: pgsql_close() -- 12:24:56.092 INFO [15433]: COREGRADE is starting... -- 12:24:56.092 INFO [15433]: Version from config: 1.0 -- 12:24:56.092 DEBUG [15433]: Connecting to database... -- 12:24:56.092 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:24:56.092 SQL [15433]: pgsql_db_connect() -- 12:24:56.100 INFO [15434]: COREGRADE is starting... -- 12:24:56.100 INFO [15434]: Version from config: 1.0 -- 12:24:56.100 DEBUG [15434]: Connecting to database... -- 12:24:56.100 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:24:56.100 SQL [15434]: pgsql_db_connect() -- 12:24:56.097 DEBUG [15433]: Database connection successful -- 12:24:56.097 INFO [15433]: _SERVER found -- 12:24:56.097 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 12:24:56.097 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 12:24:56.097 INFO [15433]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0sq15ianuo5gj727qak38ku674a66feb -- 12:24:56.097 INFO [15433]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:24:56.097 INFO [15433]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:24:56.108 INFO [15433]: COREGRADE is stopping... -- 12:24:56.108 DEBUG [15433]: Closing database connection -- 12:24:56.108 SQL [15433]: pgsql_close() -- 12:24:56.104 DEBUG [15434]: Database connection successful -- 12:24:56.104 INFO [15434]: _SERVER found -- 12:24:56.104 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 12:24:56.104 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 12:24:56.104 INFO [15434]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0sq15ianuo5gj727qak38ku674a66feb -- 12:24:56.104 INFO [15434]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 12:24:56.104 INFO [15434]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:24:56.119 INFO [15434]: COREGRADE is stopping... -- 12:24:56.119 DEBUG [15434]: Closing database connection -- 12:24:56.119 SQL [15434]: pgsql_close() -- 12:25:02.014 INFO [15366]: COREGRADE is starting... -- 12:25:02.014 INFO [15366]: Version from config: 1.0 -- 12:25:02.014 DEBUG [15366]: Connecting to database... -- 12:25:02.014 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:25:02.014 SQL [15366]: pgsql_db_connect() -- 12:25:02.018 DEBUG [15366]: Database connection successful -- 12:25:02.018 INFO [15366]: _SERVER found -- 12:25:02.018 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 12:25:02.018 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 12:25:02.018 INFO [15366]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0sq15ianuo5gj727qak38ku674a66feb -- 12:25:02.018 INFO [15366]: QUERY_STRING = /member/viewSharePage -- 12:25:02.018 INFO [15366]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:25:02.058 INFO [15366]: COREGRADE is stopping... -- 12:25:02.058 DEBUG [15366]: Closing database connection -- 12:25:02.058 SQL [15366]: pgsql_close() -- 12:25:07.351 INFO [15367]: COREGRADE is starting... -- 12:25:07.351 INFO [15367]: Version from config: 1.0 -- 12:25:07.351 DEBUG [15367]: Connecting to database... -- 12:25:07.351 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:25:07.351 SQL [15367]: pgsql_db_connect() -- 12:25:07.356 DEBUG [15367]: Database connection successful -- 12:25:07.356 INFO [15367]: _SERVER found -- 12:25:07.356 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 12:25:07.356 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 12:25:07.356 INFO [15367]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0sq15ianuo5gj727qak38ku674a66feb -- 12:25:07.356 INFO [15367]: QUERY_STRING = /member/page -- 12:25:07.356 INFO [15367]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:25:07.403 INFO [15367]: COREGRADE is stopping... -- 12:25:07.403 DEBUG [15367]: Closing database connection -- 12:25:07.403 SQL [15367]: pgsql_close() -- 12:25:07.544 INFO [15367]: COREGRADE is starting... -- 12:25:07.545 INFO [15367]: Version from config: 1.0 -- 12:25:07.545 DEBUG [15367]: Connecting to database... -- 12:25:07.545 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:25:07.545 SQL [15367]: pgsql_db_connect() -- 12:25:07.549 DEBUG [15367]: Database connection successful -- 12:25:07.549 INFO [15367]: _SERVER found -- 12:25:07.549 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 12:25:07.549 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 12:25:07.549 INFO [15367]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0sq15ianuo5gj727qak38ku674a66feb -- 12:25:07.549 INFO [15367]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:25:07.549 INFO [15367]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:25:07.561 INFO [15367]: COREGRADE is stopping... -- 12:25:07.561 DEBUG [15367]: Closing database connection -- 12:25:07.561 SQL [15367]: pgsql_close() -- 12:25:16.654 INFO [15370]: COREGRADE is starting... -- 12:25:16.654 INFO [15370]: Version from config: 1.0 -- 12:25:16.654 DEBUG [15370]: Connecting to database... -- 12:25:16.654 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:25:16.654 SQL [15370]: pgsql_db_connect() -- 12:25:16.658 DEBUG [15370]: Database connection successful -- 12:25:16.658 INFO [15370]: _SERVER found -- 12:25:16.658 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 12:25:16.658 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 12:25:16.658 INFO [15370]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0sq15ianuo5gj727qak38ku674a66feb -- 12:25:16.658 INFO [15370]: QUERY_STRING = /member/viewCardAddAction -- 12:25:16.658 INFO [15370]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:25:16.697 INFO [15370]: COREGRADE is stopping... -- 12:25:16.697 DEBUG [15370]: Closing database connection -- 12:25:16.697 SQL [15370]: pgsql_close() -- 12:25:56.171 INFO [15371]: COREGRADE is starting... -- 12:25:56.172 INFO [15371]: Version from config: 1.0 -- 12:25:56.172 DEBUG [15371]: Connecting to database... -- 12:25:56.172 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:25:56.172 SQL [15371]: pgsql_db_connect() -- 12:25:56.176 DEBUG [15371]: Database connection successful -- 12:25:56.176 INFO [15371]: _SERVER found -- 12:25:56.176 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 12:25:56.176 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 12:25:56.176 INFO [15371]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0sq15ianuo5gj727qak38ku674a66feb -- 12:25:56.176 INFO [15371]: QUERY_STRING = /member/classroom -- 12:25:56.176 INFO [15371]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:25:56.219 INFO [15371]: COREGRADE is stopping... -- 12:25:56.219 DEBUG [15371]: Closing database connection -- 12:25:56.219 SQL [15371]: pgsql_close() -- 12:25:56.474 INFO [15371]: COREGRADE is starting... -- 12:25:56.475 INFO [15371]: Version from config: 1.0 -- 12:25:56.475 DEBUG [15371]: Connecting to database... -- 12:25:56.475 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:25:56.475 SQL [15371]: pgsql_db_connect() -- 12:25:56.479 DEBUG [15371]: Database connection successful -- 12:25:56.479 INFO [15371]: _SERVER found -- 12:25:56.479 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 12:25:56.479 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 12:25:56.479 INFO [15371]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0sq15ianuo5gj727qak38ku674a66feb -- 12:25:56.479 INFO [15371]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:25:56.479 INFO [15371]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:25:56.490 INFO [15371]: COREGRADE is stopping... -- 12:25:56.490 DEBUG [15371]: Closing database connection -- 12:25:56.490 SQL [15371]: pgsql_close() -- 12:27:07.927 INFO [15429]: COREGRADE is starting... -- 12:27:07.927 INFO [15429]: Version from config: 1.0 -- 12:27:07.927 DEBUG [15429]: Connecting to database... -- 12:27:07.927 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:27:07.928 SQL [15429]: pgsql_db_connect() -- 12:27:07.932 DEBUG [15429]: Database connection successful -- 12:27:07.932 INFO [15429]: _SERVER found -- 12:27:07.932 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 12:27:07.932 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 12:27:07.932 INFO [15429]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0sq15ianuo5gj727qak38ku674a66feb -- 12:27:07.932 INFO [15429]: QUERY_STRING = /member/viewRoom -- 12:27:07.932 INFO [15429]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:27:07.976 INFO [15429]: COREGRADE is stopping... -- 12:27:07.976 DEBUG [15429]: Closing database connection -- 12:27:07.976 SQL [15429]: pgsql_close() -- 12:27:09.626 INFO [15429]: COREGRADE is starting... -- 12:27:09.626 INFO [15429]: Version from config: 1.0 -- 12:27:09.626 DEBUG [15429]: Connecting to database... -- 12:27:09.626 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:27:09.626 SQL [15429]: pgsql_db_connect() -- 12:27:09.630 DEBUG [15429]: Database connection successful -- 12:27:09.630 INFO [15429]: _SERVER found -- 12:27:09.630 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 12:27:09.630 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 12:27:09.630 INFO [15429]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0sq15ianuo5gj727qak38ku674a66feb -- 12:27:09.630 INFO [15429]: QUERY_STRING = /member/viewRoom -- 12:27:09.630 INFO [15429]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:27:09.668 INFO [15429]: COREGRADE is stopping... -- 12:27:09.668 DEBUG [15429]: Closing database connection -- 12:27:09.668 SQL [15429]: pgsql_close() -- 12:31:46.075 INFO [15433]: COREGRADE is starting... -- 12:31:46.075 INFO [15433]: Version from config: 1.0 -- 12:31:46.075 DEBUG [15433]: Connecting to database... -- 12:31:46.075 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:31:46.075 SQL [15433]: pgsql_db_connect() -- 12:31:46.080 DEBUG [15433]: Database connection successful -- 12:31:46.080 INFO [15433]: _SERVER found -- 12:31:46.080 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 12:31:46.080 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 12:31:46.080 INFO [15433]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=0sq15ianuo5gj727qak38ku674a66feb -- 12:31:46.080 INFO [15433]: QUERY_STRING = /member -- 12:31:46.080 INFO [15433]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:31:46.123 INFO [15433]: COREGRADE is stopping... -- 12:31:46.123 DEBUG [15433]: Closing database connection -- 12:31:46.123 SQL [15433]: pgsql_close() -- 12:31:46.376 INFO [15433]: COREGRADE is starting... -- 12:31:46.377 INFO [15433]: Version from config: 1.0 -- 12:31:46.377 DEBUG [15433]: Connecting to database... -- 12:31:46.377 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:31:46.377 SQL [15433]: pgsql_db_connect() -- 12:31:46.381 DEBUG [15433]: Database connection successful -- 12:31:46.381 INFO [15433]: _SERVER found -- 12:31:46.381 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 12:31:46.381 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 12:31:46.381 INFO [15433]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=22h6ams6n9u60fg3leh1s88in1ij7bn0 -- 12:31:46.381 INFO [15433]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:31:46.381 INFO [15433]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:31:46.392 INFO [15433]: COREGRADE is stopping... -- 12:31:46.392 DEBUG [15433]: Closing database connection -- 12:31:46.392 SQL [15433]: pgsql_close() -- 12:31:47.767 INFO [15433]: COREGRADE is starting... -- 12:31:47.768 INFO [15433]: Version from config: 1.0 -- 12:31:47.768 DEBUG [15433]: Connecting to database... -- 12:31:47.768 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:31:47.768 SQL [15433]: pgsql_db_connect() -- 12:31:47.772 DEBUG [15433]: Database connection successful -- 12:31:47.772 INFO [15433]: _SERVER found -- 12:31:47.772 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 12:31:47.772 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 12:31:47.772 INFO [15433]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=22h6ams6n9u60fg3leh1s88in1ij7bn0 -- 12:31:47.772 INFO [15433]: QUERY_STRING = /member/page -- 12:31:47.772 INFO [15433]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:31:47.815 INFO [15433]: COREGRADE is stopping... -- 12:31:47.815 DEBUG [15433]: Closing database connection -- 12:31:47.815 SQL [15433]: pgsql_close() -- 12:31:47.954 INFO [15433]: COREGRADE is starting... -- 12:31:47.955 INFO [15433]: Version from config: 1.0 -- 12:31:47.955 DEBUG [15433]: Connecting to database... -- 12:31:47.955 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:31:47.955 SQL [15433]: pgsql_db_connect() -- 12:31:47.959 DEBUG [15433]: Database connection successful -- 12:31:47.959 INFO [15433]: _SERVER found -- 12:31:47.959 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 12:31:47.959 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 12:31:47.959 INFO [15433]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=22h6ams6n9u60fg3leh1s88in1ij7bn0 -- 12:31:47.959 INFO [15433]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:31:47.959 INFO [15433]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:31:47.970 INFO [15433]: COREGRADE is stopping... -- 12:31:47.970 DEBUG [15433]: Closing database connection -- 12:31:47.970 SQL [15433]: pgsql_close() -- 12:31:53.086 INFO [15434]: COREGRADE is starting... -- 12:31:53.087 INFO [15434]: Version from config: 1.0 -- 12:31:53.087 DEBUG [15434]: Connecting to database... -- 12:31:53.087 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:31:53.087 SQL [15434]: pgsql_db_connect() -- 12:31:53.091 DEBUG [15434]: Database connection successful -- 12:31:53.091 INFO [15434]: _SERVER found -- 12:31:53.091 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 12:31:53.091 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 12:31:53.091 INFO [15434]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=22h6ams6n9u60fg3leh1s88in1ij7bn0 -- 12:31:53.091 INFO [15434]: QUERY_STRING = /member/configure -- 12:31:53.091 INFO [15434]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:31:53.141 INFO [15434]: COREGRADE is stopping... -- 12:31:53.141 DEBUG [15434]: Closing database connection -- 12:31:53.141 SQL [15434]: pgsql_close() -- 12:31:53.256 INFO [15434]: COREGRADE is starting... -- 12:31:53.256 INFO [15434]: Version from config: 1.0 -- 12:31:53.256 DEBUG [15434]: Connecting to database... -- 12:31:53.256 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:31:53.256 SQL [15434]: pgsql_db_connect() -- 12:31:53.259 INFO [15367]: COREGRADE is starting... -- 12:31:53.259 INFO [15367]: Version from config: 1.0 -- 12:31:53.259 DEBUG [15367]: Connecting to database... -- 12:31:53.259 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:31:53.259 SQL [15367]: pgsql_db_connect() -- 12:31:53.261 DEBUG [15434]: Database connection successful -- 12:31:53.261 INFO [15434]: _SERVER found -- 12:31:53.261 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 12:31:53.261 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 12:31:53.261 INFO [15434]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=22h6ams6n9u60fg3leh1s88in1ij7bn0 -- 12:31:53.261 INFO [15434]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:31:53.261 INFO [15434]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:31:53.272 INFO [15434]: COREGRADE is stopping... -- 12:31:53.272 DEBUG [15434]: Closing database connection -- 12:31:53.272 SQL [15434]: pgsql_close() -- 12:31:53.263 DEBUG [15367]: Database connection successful -- 12:31:53.263 INFO [15367]: _SERVER found -- 12:31:53.263 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 12:31:53.263 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 12:31:53.263 INFO [15367]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=22h6ams6n9u60fg3leh1s88in1ij7bn0 -- 12:31:53.263 INFO [15367]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 12:31:53.263 INFO [15367]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:31:53.275 INFO [15367]: COREGRADE is stopping... -- 12:31:53.275 DEBUG [15367]: Closing database connection -- 12:31:53.275 SQL [15367]: pgsql_close() -- 12:31:55.168 INFO [15367]: COREGRADE is starting... -- 12:31:55.169 INFO [15367]: Version from config: 1.0 -- 12:31:55.169 DEBUG [15367]: Connecting to database... -- 12:31:55.169 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:31:55.169 SQL [15367]: pgsql_db_connect() -- 12:31:55.173 DEBUG [15367]: Database connection successful -- 12:31:55.173 INFO [15367]: _SERVER found -- 12:31:55.173 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 12:31:55.173 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 12:31:55.173 INFO [15367]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=22h6ams6n9u60fg3leh1s88in1ij7bn0 -- 12:31:55.173 INFO [15367]: QUERY_STRING = /member/configure -- 12:31:55.173 INFO [15367]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:31:55.219 INFO [15367]: COREGRADE is stopping... -- 12:31:55.219 DEBUG [15367]: Closing database connection -- 12:31:55.219 SQL [15367]: pgsql_close() -- 12:31:55.335 INFO [15367]: COREGRADE is starting... -- 12:31:55.336 INFO [15367]: Version from config: 1.0 -- 12:31:55.336 DEBUG [15367]: Connecting to database... -- 12:31:55.336 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:31:55.336 SQL [15367]: pgsql_db_connect() -- 12:31:55.337 INFO [15434]: COREGRADE is starting... -- 12:31:55.337 INFO [15434]: Version from config: 1.0 -- 12:31:55.337 DEBUG [15434]: Connecting to database... -- 12:31:55.337 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:31:55.337 SQL [15434]: pgsql_db_connect() -- 12:31:55.340 DEBUG [15367]: Database connection successful -- 12:31:55.340 INFO [15367]: _SERVER found -- 12:31:55.340 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 12:31:55.340 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 12:31:55.340 INFO [15367]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=22h6ams6n9u60fg3leh1s88in1ij7bn0 -- 12:31:55.340 INFO [15367]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 12:31:55.340 INFO [15367]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:31:55.351 INFO [15367]: COREGRADE is stopping... -- 12:31:55.351 DEBUG [15367]: Closing database connection -- 12:31:55.351 SQL [15367]: pgsql_close() -- 12:31:55.341 DEBUG [15434]: Database connection successful -- 12:31:55.341 INFO [15434]: _SERVER found -- 12:31:55.341 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 12:31:55.341 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 12:31:55.341 INFO [15434]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=22h6ams6n9u60fg3leh1s88in1ij7bn0 -- 12:31:55.341 INFO [15434]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:31:55.341 INFO [15434]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:31:55.352 INFO [15434]: COREGRADE is stopping... -- 12:31:55.352 DEBUG [15434]: Closing database connection -- 12:31:55.352 SQL [15434]: pgsql_close() -- 12:31:55.738 INFO [15434]: COREGRADE is starting... -- 12:31:55.739 INFO [15434]: Version from config: 1.0 -- 12:31:55.739 DEBUG [15434]: Connecting to database... -- 12:31:55.739 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:31:55.739 SQL [15434]: pgsql_db_connect() -- 12:31:55.743 DEBUG [15434]: Database connection successful -- 12:31:55.743 INFO [15434]: _SERVER found -- 12:31:55.743 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 12:31:55.743 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 12:31:55.743 INFO [15434]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=22h6ams6n9u60fg3leh1s88in1ij7bn0 -- 12:31:55.743 INFO [15434]: QUERY_STRING = /member/configure -- 12:31:55.743 INFO [15434]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:31:55.786 INFO [15434]: COREGRADE is stopping... -- 12:31:55.786 DEBUG [15434]: Closing database connection -- 12:31:55.786 SQL [15434]: pgsql_close() -- 12:31:57.874 INFO [15434]: COREGRADE is starting... -- 12:31:57.874 INFO [15434]: Version from config: 1.0 -- 12:31:57.874 DEBUG [15434]: Connecting to database... -- 12:31:57.874 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:31:57.874 SQL [15434]: pgsql_db_connect() -- 12:31:57.878 DEBUG [15434]: Database connection successful -- 12:31:57.878 INFO [15434]: _SERVER found -- 12:31:57.878 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 12:31:57.878 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 12:31:57.878 INFO [15434]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=22h6ams6n9u60fg3leh1s88in1ij7bn0 -- 12:31:57.878 INFO [15434]: QUERY_STRING = /member/configure -- 12:31:57.878 INFO [15434]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:31:57.921 INFO [15434]: COREGRADE is stopping... -- 12:31:57.921 DEBUG [15434]: Closing database connection -- 12:31:57.921 SQL [15434]: pgsql_close() -- 12:32:01.012 INFO [15434]: COREGRADE is starting... -- 12:32:01.012 INFO [15434]: Version from config: 1.0 -- 12:32:01.012 DEBUG [15434]: Connecting to database... -- 12:32:01.012 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:32:01.012 SQL [15434]: pgsql_db_connect() -- 12:32:01.016 DEBUG [15434]: Database connection successful -- 12:32:01.016 INFO [15434]: _SERVER found -- 12:32:01.016 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 12:32:01.016 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 12:32:01.016 INFO [15434]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=22h6ams6n9u60fg3leh1s88in1ij7bn0 -- 12:32:01.016 INFO [15434]: QUERY_STRING = /member/page -- 12:32:01.016 INFO [15434]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:32:01.059 INFO [15434]: COREGRADE is stopping... -- 12:32:01.059 DEBUG [15434]: Closing database connection -- 12:32:01.059 SQL [15434]: pgsql_close() -- 12:35:20.810 INFO [15369]: COREGRADE is starting... -- 12:35:20.810 INFO [15369]: Version from config: 1.0 -- 12:35:20.810 DEBUG [15369]: Connecting to database... -- 12:35:20.810 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:35:20.810 SQL [15369]: pgsql_db_connect() -- 12:35:20.814 DEBUG [15369]: Database connection successful -- 12:35:20.814 INFO [15369]: _SERVER found -- 12:35:20.814 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 12:35:20.814 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 12:35:20.814 INFO [15369]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=22h6ams6n9u60fg3leh1s88in1ij7bn0 -- 12:35:20.814 INFO [15369]: QUERY_STRING = /member/configure -- 12:35:20.814 INFO [15369]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:35:20.865 INFO [15369]: COREGRADE is stopping... -- 12:35:20.865 DEBUG [15369]: Closing database connection -- 12:35:20.865 SQL [15369]: pgsql_close() -- 12:35:20.997 INFO [15369]: COREGRADE is starting... -- 12:35:20.998 INFO [15369]: Version from config: 1.0 -- 12:35:20.998 DEBUG [15369]: Connecting to database... -- 12:35:20.998 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:35:20.998 SQL [15369]: pgsql_db_connect() -- 12:35:21.006 INFO [15366]: COREGRADE is starting... -- 12:35:21.006 INFO [15366]: Version from config: 1.0 -- 12:35:21.006 DEBUG [15366]: Connecting to database... -- 12:35:21.006 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:35:21.006 SQL [15366]: pgsql_db_connect() -- 12:35:21.002 DEBUG [15369]: Database connection successful -- 12:35:21.002 INFO [15369]: _SERVER found -- 12:35:21.002 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 12:35:21.002 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 12:35:21.002 INFO [15369]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=22h6ams6n9u60fg3leh1s88in1ij7bn0 -- 12:35:21.002 INFO [15369]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:35:21.002 INFO [15369]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:35:21.014 INFO [15369]: COREGRADE is stopping... -- 12:35:21.014 DEBUG [15369]: Closing database connection -- 12:35:21.014 SQL [15369]: pgsql_close() -- 12:35:21.010 DEBUG [15366]: Database connection successful -- 12:35:21.010 INFO [15366]: _SERVER found -- 12:35:21.010 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 12:35:21.010 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 12:35:21.010 INFO [15366]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=22h6ams6n9u60fg3leh1s88in1ij7bn0 -- 12:35:21.010 INFO [15366]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 12:35:21.010 INFO [15366]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:35:21.022 INFO [15366]: COREGRADE is stopping... -- 12:35:21.022 DEBUG [15366]: Closing database connection -- 12:35:21.022 SQL [15366]: pgsql_close() -- 12:36:22.337 INFO [15370]: COREGRADE is starting... -- 12:36:22.338 INFO [15370]: Version from config: 1.0 -- 12:36:22.338 DEBUG [15370]: Connecting to database... -- 12:36:22.338 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:36:22.338 SQL [15370]: pgsql_db_connect() -- 12:36:22.342 DEBUG [15370]: Database connection successful -- 12:36:22.342 INFO [15370]: _SERVER found -- 12:36:22.342 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 12:36:22.342 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 12:36:22.342 INFO [15370]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=22h6ams6n9u60fg3leh1s88in1ij7bn0 -- 12:36:22.342 INFO [15370]: QUERY_STRING = /member/page -- 12:36:22.342 INFO [15370]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:36:22.388 INFO [15370]: COREGRADE is stopping... -- 12:36:22.388 DEBUG [15370]: Closing database connection -- 12:36:22.388 SQL [15370]: pgsql_close() -- 12:36:22.539 INFO [15370]: COREGRADE is starting... -- 12:36:22.540 INFO [15370]: Version from config: 1.0 -- 12:36:22.540 DEBUG [15370]: Connecting to database... -- 12:36:22.540 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:36:22.540 SQL [15370]: pgsql_db_connect() -- 12:36:22.544 DEBUG [15370]: Database connection successful -- 12:36:22.544 INFO [15370]: _SERVER found -- 12:36:22.544 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 12:36:22.544 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 12:36:22.544 INFO [15370]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=22h6ams6n9u60fg3leh1s88in1ij7bn0 -- 12:36:22.544 INFO [15370]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:36:22.544 INFO [15370]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:36:22.555 INFO [15370]: COREGRADE is stopping... -- 12:36:22.555 DEBUG [15370]: Closing database connection -- 12:36:22.555 SQL [15370]: pgsql_close() -- 12:36:27.260 INFO [15370]: COREGRADE is starting... -- 12:36:27.260 INFO [15370]: Version from config: 1.0 -- 12:36:27.260 DEBUG [15370]: Connecting to database... -- 12:36:27.260 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:36:27.260 SQL [15370]: pgsql_db_connect() -- 12:36:27.264 DEBUG [15370]: Database connection successful -- 12:36:27.264 INFO [15370]: _SERVER found -- 12:36:27.264 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 12:36:27.264 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 12:36:27.264 INFO [15370]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=22h6ams6n9u60fg3leh1s88in1ij7bn0 -- 12:36:27.264 INFO [15370]: QUERY_STRING = /member -- 12:36:27.264 INFO [15370]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:36:27.306 INFO [15370]: COREGRADE is stopping... -- 12:36:27.306 DEBUG [15370]: Closing database connection -- 12:36:27.306 SQL [15370]: pgsql_close() -- 12:36:27.431 INFO [15370]: COREGRADE is starting... -- 12:36:27.431 INFO [15370]: Version from config: 1.0 -- 12:36:27.431 DEBUG [15370]: Connecting to database... -- 12:36:27.431 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:36:27.431 SQL [15370]: pgsql_db_connect() -- 12:36:27.435 DEBUG [15370]: Database connection successful -- 12:36:27.435 INFO [15370]: _SERVER found -- 12:36:27.435 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 12:36:27.435 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 12:36:27.435 INFO [15370]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=22h6ams6n9u60fg3leh1s88in1ij7bn0 -- 12:36:27.435 INFO [15370]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:36:27.435 INFO [15370]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:36:27.446 INFO [15370]: COREGRADE is stopping... -- 12:36:27.446 DEBUG [15370]: Closing database connection -- 12:36:27.446 SQL [15370]: pgsql_close() -- 12:56:32.836 INFO [15371]: COREGRADE is starting... -- 12:56:32.836 INFO [15371]: Version from config: 1.0 -- 12:56:32.836 DEBUG [15371]: Connecting to database... -- 12:56:32.836 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:56:32.836 SQL [15371]: pgsql_db_connect() -- 12:56:32.842 DEBUG [15371]: Database connection successful -- 12:56:32.842 INFO [15371]: _SERVER found -- 12:56:32.842 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 12:56:32.842 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 12:56:32.842 INFO [15371]: QUERY_STRING = -- 12:56:32.842 INFO [15371]: HTTP_X_FORWARDED_FOR = 192.236.192.3 -- 12:56:32.883 INFO [15371]: COREGRADE is stopping... -- 12:56:32.884 DEBUG [15371]: Closing database connection -- 12:56:32.884 SQL [15371]: pgsql_close() -- 12:57:32.121 INFO [15429]: COREGRADE is starting... -- 12:57:32.121 INFO [15429]: Version from config: 1.0 -- 12:57:32.121 DEBUG [15429]: Connecting to database... -- 12:57:32.121 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:57:32.121 SQL [15429]: pgsql_db_connect() -- 12:57:32.126 DEBUG [15429]: Database connection successful -- 12:57:32.126 INFO [15429]: _SERVER found -- 12:57:32.126 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 12:57:32.126 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 12:57:32.126 INFO [15429]: QUERY_STRING = -- 12:57:32.126 INFO [15429]: HTTP_X_FORWARDED_FOR = 192.236.163.117 -- 12:57:32.170 INFO [15429]: COREGRADE is stopping... -- 12:57:32.170 DEBUG [15429]: Closing database connection -- 12:57:32.170 SQL [15429]: pgsql_close() -- 12:57:42.441 INFO [15433]: COREGRADE is starting... -- 12:57:42.441 INFO [15433]: Version from config: 1.0 -- 12:57:42.441 DEBUG [15433]: Connecting to database... -- 12:57:42.441 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:57:42.441 SQL [15433]: pgsql_db_connect() -- 12:57:42.446 DEBUG [15433]: Database connection successful -- 12:57:42.446 INFO [15433]: _SERVER found -- 12:57:42.446 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 12:57:42.446 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 12:57:42.446 INFO [15433]: QUERY_STRING = -- 12:57:42.446 INFO [15433]: HTTP_X_FORWARDED_FOR = 192.119.73.108 -- 12:57:42.486 INFO [15433]: COREGRADE is stopping... -- 12:57:42.486 DEBUG [15433]: Closing database connection -- 12:57:42.486 SQL [15433]: pgsql_close() -- 12:57:59.833 INFO [15367]: COREGRADE is starting... -- 12:57:59.833 INFO [15367]: Version from config: 1.0 -- 12:57:59.833 DEBUG [15367]: Connecting to database... -- 12:57:59.833 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:57:59.833 SQL [15367]: pgsql_db_connect() -- 12:57:59.838 DEBUG [15367]: Database connection successful -- 12:57:59.838 INFO [15367]: _SERVER found -- 12:57:59.838 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 12:57:59.838 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 12:57:59.838 INFO [15367]: QUERY_STRING = -- 12:57:59.838 INFO [15367]: HTTP_X_FORWARDED_FOR = 142.11.227.204 -- 12:57:59.873 INFO [15367]: COREGRADE is stopping... -- 12:57:59.873 DEBUG [15367]: Closing database connection -- 12:57:59.873 SQL [15367]: pgsql_close() -- 12:58:35.364 INFO [15434]: COREGRADE is starting... -- 12:58:35.365 INFO [15434]: Version from config: 1.0 -- 12:58:35.365 DEBUG [15434]: Connecting to database... -- 12:58:35.365 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:58:35.365 SQL [15434]: pgsql_db_connect() -- 12:58:35.369 DEBUG [15434]: Database connection successful -- 12:58:35.369 INFO [15434]: _SERVER found -- 12:58:35.369 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 12:58:35.369 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 12:58:35.369 INFO [15434]: QUERY_STRING = -- 12:58:35.369 INFO [15434]: HTTP_X_FORWARDED_FOR = 142.11.211.250 -- 12:58:35.409 INFO [15434]: COREGRADE is stopping... -- 12:58:35.409 DEBUG [15434]: Closing database connection -- 12:58:35.409 SQL [15434]: pgsql_close() -- 12:58:35.502 INFO [15434]: COREGRADE is starting... -- 12:58:35.502 INFO [15434]: Version from config: 1.0 -- 12:58:35.502 DEBUG [15434]: Connecting to database... -- 12:58:35.502 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:58:35.502 SQL [15434]: pgsql_db_connect() -- 12:58:35.507 DEBUG [15434]: Database connection successful -- 12:58:35.507 INFO [15434]: _SERVER found -- 12:58:35.507 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 12:58:35.507 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 12:58:35.507 INFO [15434]: QUERY_STRING = -- 12:58:35.507 INFO [15434]: HTTP_X_FORWARDED_FOR = 104.168.148.236 -- 12:58:35.538 INFO [15434]: COREGRADE is stopping... -- 12:58:35.538 DEBUG [15434]: Closing database connection -- 12:58:35.538 SQL [15434]: pgsql_close() -- 12:58:58.251 INFO [15369]: COREGRADE is starting... -- 12:58:58.252 INFO [15369]: Version from config: 1.0 -- 12:58:58.252 DEBUG [15369]: Connecting to database... -- 12:58:58.252 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:58:58.252 SQL [15369]: pgsql_db_connect() -- 12:58:58.256 DEBUG [15369]: Database connection successful -- 12:58:58.256 INFO [15369]: _SERVER found -- 12:58:58.256 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 12:58:58.256 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 12:58:58.256 INFO [15369]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.436899636.1587281501 -- 12:58:58.256 INFO [15369]: QUERY_STRING = -- 12:58:58.256 INFO [15369]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:58:58.295 INFO [15369]: COREGRADE is stopping... -- 12:58:58.295 DEBUG [15369]: Closing database connection -- 12:58:58.295 SQL [15369]: pgsql_close() -- 12:59:02.831 INFO [15369]: COREGRADE is starting... -- 12:59:02.832 INFO [15369]: Version from config: 1.0 -- 12:59:02.832 DEBUG [15369]: Connecting to database... -- 12:59:02.832 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:59:02.832 SQL [15369]: pgsql_db_connect() -- 12:59:02.836 DEBUG [15369]: Database connection successful -- 12:59:02.836 INFO [15369]: _SERVER found -- 12:59:02.836 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 12:59:02.836 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 12:59:02.836 INFO [15369]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.436899636.1587281501; ci_session=f3qsq58kcllhg9m8s0akmggmuldd3nai; _gat_gtag_UA_54829827_2=1 -- 12:59:02.836 INFO [15369]: QUERY_STRING = /assets/img/footer_1.jpg -- 12:59:02.836 INFO [15369]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:59:02.848 INFO [15369]: COREGRADE is stopping... -- 12:59:02.848 DEBUG [15369]: Closing database connection -- 12:59:02.848 SQL [15369]: pgsql_close() -- 12:59:06.549 INFO [15369]: COREGRADE is starting... -- 12:59:06.550 INFO [15369]: Version from config: 1.0 -- 12:59:06.550 DEBUG [15369]: Connecting to database... -- 12:59:06.550 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:59:06.550 SQL [15369]: pgsql_db_connect() -- 12:59:06.554 DEBUG [15369]: Database connection successful -- 12:59:06.554 INFO [15369]: _SERVER found -- 12:59:06.554 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 12:59:06.554 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 12:59:06.554 INFO [15369]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.436899636.1587281501; ci_session=f3qsq58kcllhg9m8s0akmggmuldd3nai; _gat_gtag_UA_54829827_2=1 -- 12:59:06.554 INFO [15369]: QUERY_STRING = /welcome/viewLogin -- 12:59:06.554 INFO [15369]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:59:06.585 INFO [15369]: COREGRADE is stopping... -- 12:59:06.585 DEBUG [15369]: Closing database connection -- 12:59:06.585 SQL [15369]: pgsql_close() -- 12:59:06.614 INFO [15369]: COREGRADE is starting... -- 12:59:06.614 INFO [15369]: Version from config: 1.0 -- 12:59:06.614 DEBUG [15369]: Connecting to database... -- 12:59:06.614 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:59:06.614 SQL [15369]: pgsql_db_connect() -- 12:59:06.616 INFO [15366]: COREGRADE is starting... -- 12:59:06.616 INFO [15366]: Version from config: 1.0 -- 12:59:06.616 DEBUG [15366]: Connecting to database... -- 12:59:06.616 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:59:06.616 SQL [15366]: pgsql_db_connect() -- 12:59:06.618 DEBUG [15369]: Database connection successful -- 12:59:06.618 INFO [15369]: _SERVER found -- 12:59:06.618 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 12:59:06.618 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 12:59:06.618 INFO [15369]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.436899636.1587281501; ci_session=f3qsq58kcllhg9m8s0akmggmuldd3nai; _gat_gtag_UA_54829827_2=1 -- 12:59:06.618 INFO [15369]: QUERY_STRING = /auth/index -- 12:59:06.618 INFO [15369]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:59:06.651 INFO [15369]: COREGRADE is stopping... -- 12:59:06.651 DEBUG [15369]: Closing database connection -- 12:59:06.651 SQL [15369]: pgsql_close() -- 12:59:06.620 DEBUG [15366]: Database connection successful -- 12:59:06.620 INFO [15366]: _SERVER found -- 12:59:06.620 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 12:59:06.620 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 12:59:06.620 INFO [15366]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.436899636.1587281501; ci_session=f3qsq58kcllhg9m8s0akmggmuldd3nai; _gat_gtag_UA_54829827_2=1 -- 12:59:06.620 INFO [15366]: QUERY_STRING = /auth -- 12:59:06.620 INFO [15366]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:59:06.655 INFO [15366]: COREGRADE is stopping... -- 12:59:06.655 DEBUG [15366]: Closing database connection -- 12:59:06.655 SQL [15366]: pgsql_close() -- 12:59:07.345 INFO [15366]: COREGRADE is starting... -- 12:59:07.345 INFO [15366]: Version from config: 1.0 -- 12:59:07.345 DEBUG [15366]: Connecting to database... -- 12:59:07.345 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:59:07.345 SQL [15366]: pgsql_db_connect() -- 12:59:07.349 DEBUG [15366]: Database connection successful -- 12:59:07.349 INFO [15366]: _SERVER found -- 12:59:07.349 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 12:59:07.349 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 12:59:07.349 INFO [15366]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.436899636.1587281501; ci_session=f3qsq58kcllhg9m8s0akmggmuldd3nai; _gat_gtag_UA_54829827_2=1 -- 12:59:07.349 INFO [15366]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 12:59:07.349 INFO [15366]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:59:07.361 INFO [15366]: COREGRADE is stopping... -- 12:59:07.361 DEBUG [15366]: Closing database connection -- 12:59:07.361 SQL [15366]: pgsql_close() -- 12:59:11.584 INFO [15366]: COREGRADE is starting... -- 12:59:11.584 INFO [15366]: Version from config: 1.0 -- 12:59:11.584 DEBUG [15366]: Connecting to database... -- 12:59:11.584 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:59:11.584 SQL [15366]: pgsql_db_connect() -- 12:59:11.620 INFO [15366]: COREGRADE is starting... -- 12:59:11.620 INFO [15366]: Version from config: 1.0 -- 12:59:11.620 DEBUG [15366]: Connecting to database... -- 12:59:11.620 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:59:11.620 SQL [15366]: pgsql_db_connect() -- 12:59:11.624 DEBUG [15366]: Database connection successful -- 12:59:11.624 INFO [15366]: _SERVER found -- 12:59:11.624 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 12:59:11.624 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 12:59:11.624 INFO [15366]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.436899636.1587281501; ci_session=f3qsq58kcllhg9m8s0akmggmuldd3nai; _gat_gtag_UA_54829827_2=1 -- 12:59:11.624 INFO [15366]: QUERY_STRING = -- 12:59:11.624 INFO [15366]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:59:11.624 INFO [15366]: SystemStatus()09-09-********~************ -- 12:59:11.624 INFO [15366]: long coregrade_api_main(CVars in, CVars &out) -- 12:59:11.624 INFO [15366]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 12:59:11.624 INFO [15366]: account calls -- 12:59:11.624 INFO [15366]: account_calls() -- 12:59:11.624 INFO [15366]: LoginCoreGradeAccount() -- 12:59:11.624 FLOG_MAX [15366]: REQ_STRING(username) -- 12:59:11.625 FLOG_MAX [15366]: REQ_STRING(password) -- 12:59:11.625 FLOG_MAX [15366]: REQ_STRING(sessionid) -- 12:59:11.625 FLOG_MAX [15366]: long load_db_record( CVars &rec, const char * query, ... ) -- 12:59:11.625 SQL [15366]: pgsql_query() -- 12:59:11.625 SQL [15366]: About to run query: -- 12:59:11.625 SQL [15366]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678') -- 12:59:11.629 SQL [15366]: Found rows: 1 -- 12:59:11.629 FLOG_MAX [15366]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678')) num_cols=16 -- 12:59:11.629 INFO [15366]: long SessionCheck(long uid, const char *sessionid, int create ) -- 12:59:11.629 SQL [15366]: pgsql_exec() -- 12:59:11.629 SQL [15366]: About to run query: -- 12:59:11.629 SQL [15366]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 12:59:11.630 SQL [15366]: PQcmdTuples: 1 -- 12:59:11.630 SQL [15366]: Affected rows: 1 -- 12:59:11.630 SQL [15366]: pgsql_exec() -- 12:59:11.630 SQL [15366]: About to run query: -- 12:59:11.630 SQL [15366]: DELETE FROM members_session WHERE member_id=7 -- 12:59:11.631 SQL [15366]: PQcmdTuples: 0 -- 12:59:11.631 SQL [15366]: Affected rows: 0 -- 12:59:11.631 SQL [15366]: pgsql_query() -- 12:59:11.631 SQL [15366]: About to run query: -- 12:59:11.631 SQL [15366]: SELECT * FROM members_session WHERE member_id=7 AND session<>'615A10034A19CBD0ED01235B7204CAEC' -- 12:59:11.631 SQL [15366]: Found rows: 0 -- 12:59:11.631 SQL [15366]: Found rows: 0 -- 12:59:11.631 FLOG_MAX [15366]: long load_db_record( CVars &rec, const char * query, ... ) -- 12:59:11.631 SQL [15366]: pgsql_query() -- 12:59:11.631 SQL [15366]: About to run query: -- 12:59:11.631 SQL [15366]: SELECT * FROM members_session WHERE member_id=7 AND session='615A10034A19CBD0ED01235B7204CAEC' -- 12:59:11.632 SQL [15366]: Found rows: 0 -- 12:59:11.632 SQL [15366]: Found rows: 0 -- 12:59:11.632 FLOG_MAX [15366]: insert_db_record() -- 12:59:11.632 SQL [15366]: pgsql_exec() -- 12:59:11.632 SQL [15366]: About to run query: -- 12:59:11.632 SQL [15366]: INSERT INTO members_session (member_id,session) VALUES ('7','615A10034A19CBD0ED01235B7204CAEC') -- 12:59:11.634 SQL [15366]: PQcmdTuples: 1 -- 12:59:11.634 SQL [15366]: Affected rows: 1 -- 12:59:11.634 FLOG_MAX [15366]: SELECT currval('members_session_id_seq') -- 12:59:11.634 SQL [15366]: pgsql_query() -- 12:59:11.634 SQL [15366]: About to run query: -- 12:59:11.634 SQL [15366]: SELECT currval('members_session_id_seq') -- 12:59:11.634 SQL [15366]: Found rows: 1 -- 12:59:11.634 INFO [15366]: CreateDefaultPage() -- 12:59:11.634 FLOG_MAX [15366]: long load_db_record( CVars &rec, const char * query, ... ) -- 12:59:11.634 SQL [15366]: pgsql_query() -- 12:59:11.634 SQL [15366]: About to run query: -- 12:59:11.634 SQL [15366]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 12:59:11.634 SQL [15366]: Found rows: 1 -- 12:59:11.634 FLOG_MAX [15366]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 12:59:11.634 SQL [15366]: pgsql_query() -- 12:59:11.634 SQL [15366]: About to run query: -- 12:59:11.634 SQL [15366]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 12:59:11.635 SQL [15366]: Found rows: 1 -- 12:59:11.635 INFO [15366]: /CreateDefaultPage() -- 12:59:11.635 INFO [15366]: /LoginCoreGradeAccount() -- 12:59:11.635 INFO [15366]: RET: added=2020-02-05 09:42:12.816064 -- 12:59:11.635 INFO [15366]: RET: email=tokslaw@chiefsoft.com -- 12:59:11.635 INFO [15366]: RET: firstname=Tokunbo -- 12:59:11.635 INFO [15366]: RET: folder=5D06B187B1E2285A63AD1D0ECB670D98 -- 12:59:11.635 INFO [15366]: RET: id=7 -- 12:59:11.635 INFO [15366]: RET: last_login= -- 12:59:11.635 INFO [15366]: RET: lastname=Lawal -- 12:59:11.635 INFO [15366]: RET: loc=192.168.1.13 -- 12:59:11.635 INFO [15366]: RET: member_id=7 -- 12:59:11.635 INFO [15366]: RET: password=25d55ad283aa400af464c76d713c07ad -- 12:59:11.635 INFO [15366]: RET: phone= -- 12:59:11.635 INFO [15366]: RET: pid= -- 12:59:11.635 INFO [15366]: RET: result=YES I GET TO BACK END -- 12:59:11.635 INFO [15366]: RET: sessionid=615A10034A19CBD0ED01235B7204CAEC -- 12:59:11.635 INFO [15366]: RET: status=1 -- 12:59:11.635 INFO [15366]: RET: stauts=OK -- 12:59:11.635 INFO [15366]: RET: username=tokslaw@chiefsoft.com -- 12:59:11.635 INFO [15366]: RET: verified= -- 12:59:11.636 INFO [15366]: COREGRADE is stopping... -- 12:59:11.636 DEBUG [15366]: Closing database connection -- 12:59:11.637 SQL [15366]: pgsql_close() -- 12:59:11.588 DEBUG [15366]: Database connection successful -- 12:59:11.588 INFO [15366]: _SERVER found -- 12:59:11.588 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 12:59:11.588 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 12:59:11.588 INFO [15366]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.436899636.1587281501; ci_session=f3qsq58kcllhg9m8s0akmggmuldd3nai; _gat_gtag_UA_54829827_2=1 -- 12:59:11.588 INFO [15366]: QUERY_STRING = /auth -- 12:59:11.588 INFO [15366]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:59:11.637 INFO [15366]: COREGRADE is stopping... -- 12:59:11.637 DEBUG [15366]: Closing database connection -- 12:59:11.637 SQL [15366]: pgsql_close() -- 12:59:11.668 INFO [15366]: COREGRADE is starting... -- 12:59:11.668 INFO [15366]: Version from config: 1.0 -- 12:59:11.668 DEBUG [15366]: Connecting to database... -- 12:59:11.668 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:59:11.668 SQL [15366]: pgsql_db_connect() -- 12:59:11.672 DEBUG [15366]: Database connection successful -- 12:59:11.672 INFO [15366]: _SERVER found -- 12:59:11.672 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 12:59:11.672 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 12:59:11.672 INFO [15366]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.436899636.1587281501; ci_session=f3qsq58kcllhg9m8s0akmggmuldd3nai; _gat_gtag_UA_54829827_2=1 -- 12:59:11.672 INFO [15366]: QUERY_STRING = /member/index -- 12:59:11.672 INFO [15366]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:59:11.714 INFO [15366]: COREGRADE is stopping... -- 12:59:11.715 DEBUG [15366]: Closing database connection -- 12:59:11.715 SQL [15366]: pgsql_close() -- 12:59:13.470 INFO [15366]: COREGRADE is starting... -- 12:59:13.471 INFO [15366]: Version from config: 1.0 -- 12:59:13.471 DEBUG [15366]: Connecting to database... -- 12:59:13.471 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:59:13.471 SQL [15366]: pgsql_db_connect() -- 12:59:13.475 DEBUG [15366]: Database connection successful -- 12:59:13.475 INFO [15366]: _SERVER found -- 12:59:13.475 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 12:59:13.475 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 12:59:13.475 INFO [15366]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.436899636.1587281501; ci_session=f3qsq58kcllhg9m8s0akmggmuldd3nai; _gat_gtag_UA_54829827_2=1 -- 12:59:13.475 INFO [15366]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:59:13.475 INFO [15366]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:59:13.487 INFO [15366]: COREGRADE is stopping... -- 12:59:13.487 DEBUG [15366]: Closing database connection -- 12:59:13.487 SQL [15366]: pgsql_close() -- 12:59:26.865 INFO [15370]: COREGRADE is starting... -- 12:59:26.866 INFO [15370]: Version from config: 1.0 -- 12:59:26.866 DEBUG [15370]: Connecting to database... -- 12:59:26.866 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:59:26.866 SQL [15370]: pgsql_db_connect() -- 12:59:26.870 DEBUG [15370]: Database connection successful -- 12:59:26.870 INFO [15370]: _SERVER found -- 12:59:26.870 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 12:59:26.870 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 12:59:26.870 INFO [15370]: QUERY_STRING = -- 12:59:26.870 INFO [15370]: HTTP_X_FORWARDED_FOR = 142.11.227.204 -- 12:59:26.909 INFO [15370]: COREGRADE is stopping... -- 12:59:26.909 DEBUG [15370]: Closing database connection -- 12:59:26.909 SQL [15370]: pgsql_close() -- 12:59:31.957 INFO [15371]: COREGRADE is starting... -- 12:59:31.958 INFO [15371]: Version from config: 1.0 -- 12:59:31.958 DEBUG [15371]: Connecting to database... -- 12:59:31.958 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:59:31.958 SQL [15371]: pgsql_db_connect() -- 12:59:31.962 DEBUG [15371]: Database connection successful -- 12:59:31.962 INFO [15371]: _SERVER found -- 12:59:31.962 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 12:59:31.962 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 12:59:31.962 INFO [15371]: QUERY_STRING = -- 12:59:31.962 INFO [15371]: HTTP_X_FORWARDED_FOR = 104.168.148.236 -- 12:59:31.995 INFO [15371]: COREGRADE is stopping... -- 12:59:31.995 DEBUG [15371]: Closing database connection -- 12:59:31.995 SQL [15371]: pgsql_close() -- 12:59:33.853 INFO [15371]: COREGRADE is starting... -- 12:59:33.854 INFO [15371]: Version from config: 1.0 -- 12:59:33.854 DEBUG [15371]: Connecting to database... -- 12:59:33.854 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:59:33.854 SQL [15371]: pgsql_db_connect() -- 12:59:33.858 DEBUG [15371]: Database connection successful -- 12:59:33.858 INFO [15371]: _SERVER found -- 12:59:33.858 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 12:59:33.858 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 12:59:33.858 INFO [15371]: QUERY_STRING = -- 12:59:33.858 INFO [15371]: HTTP_X_FORWARDED_FOR = 192.236.163.119 -- 12:59:33.890 INFO [15371]: COREGRADE is stopping... -- 12:59:33.890 DEBUG [15371]: Closing database connection -- 12:59:33.890 SQL [15371]: pgsql_close() -- 12:59:35.322 INFO [15429]: COREGRADE is starting... -- 12:59:35.323 INFO [15429]: Version from config: 1.0 -- 12:59:35.323 DEBUG [15429]: Connecting to database... -- 12:59:35.323 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:59:35.323 SQL [15429]: pgsql_db_connect() -- 12:59:35.327 DEBUG [15429]: Database connection successful -- 12:59:35.327 INFO [15429]: _SERVER found -- 12:59:35.327 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 12:59:35.327 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 12:59:35.327 INFO [15429]: QUERY_STRING = -- 12:59:35.327 INFO [15429]: HTTP_X_FORWARDED_FOR = 23.254.164.181 -- 12:59:35.361 INFO [15429]: COREGRADE is stopping... -- 12:59:35.361 DEBUG [15429]: Closing database connection -- 12:59:35.361 SQL [15429]: pgsql_close() -- 12:59:42.337 INFO [15433]: COREGRADE is starting... -- 12:59:42.337 INFO [15433]: Version from config: 1.0 -- 12:59:42.337 DEBUG [15433]: Connecting to database... -- 12:59:42.337 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:59:42.337 SQL [15433]: pgsql_db_connect() -- 12:59:42.341 DEBUG [15433]: Database connection successful -- 12:59:42.341 INFO [15433]: _SERVER found -- 12:59:42.341 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 12:59:42.341 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 12:59:42.341 INFO [15433]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.436899636.1587281501; ci_session=f3qsq58kcllhg9m8s0akmggmuldd3nai; _gat_gtag_UA_54829827_2=1 -- 12:59:42.341 INFO [15433]: QUERY_STRING = /member/classroom -- 12:59:42.341 INFO [15433]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:59:42.386 INFO [15433]: COREGRADE is stopping... -- 12:59:42.386 DEBUG [15433]: Closing database connection -- 12:59:42.386 SQL [15433]: pgsql_close() -- 12:59:42.637 INFO [15433]: COREGRADE is starting... -- 12:59:42.637 INFO [15433]: Version from config: 1.0 -- 12:59:42.638 DEBUG [15433]: Connecting to database... -- 12:59:42.638 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:59:42.638 SQL [15433]: pgsql_db_connect() -- 12:59:42.642 DEBUG [15433]: Database connection successful -- 12:59:42.642 INFO [15433]: _SERVER found -- 12:59:42.642 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 12:59:42.642 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 12:59:42.642 INFO [15433]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.436899636.1587281501; ci_session=f3qsq58kcllhg9m8s0akmggmuldd3nai; _gat_gtag_UA_54829827_2=1 -- 12:59:42.642 INFO [15433]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 12:59:42.642 INFO [15433]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:59:42.654 INFO [15433]: COREGRADE is stopping... -- 12:59:42.654 DEBUG [15433]: Closing database connection -- 12:59:42.654 SQL [15433]: pgsql_close() -- 12:59:44.710 INFO [15433]: COREGRADE is starting... -- 12:59:44.711 INFO [15433]: Version from config: 1.0 -- 12:59:44.711 DEBUG [15433]: Connecting to database... -- 12:59:44.711 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:59:44.711 SQL [15433]: pgsql_db_connect() -- 12:59:44.715 DEBUG [15433]: Database connection successful -- 12:59:44.715 INFO [15433]: _SERVER found -- 12:59:44.715 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 12:59:44.715 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 12:59:44.715 INFO [15433]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.436899636.1587281501; ci_session=f3qsq58kcllhg9m8s0akmggmuldd3nai; _gat_gtag_UA_54829827_2=1 -- 12:59:44.715 INFO [15433]: QUERY_STRING = /member/viewRoom -- 12:59:44.715 INFO [15433]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:59:44.750 INFO [15433]: COREGRADE is stopping... -- 12:59:44.750 DEBUG [15433]: Closing database connection -- 12:59:44.750 SQL [15433]: pgsql_close() -- 12:59:48.285 INFO [15433]: COREGRADE is starting... -- 12:59:48.285 INFO [15433]: Version from config: 1.0 -- 12:59:48.285 DEBUG [15433]: Connecting to database... -- 12:59:48.286 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:59:48.286 SQL [15433]: pgsql_db_connect() -- 12:59:48.290 DEBUG [15433]: Database connection successful -- 12:59:48.290 INFO [15433]: _SERVER found -- 12:59:48.290 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 12:59:48.290 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 12:59:48.290 INFO [15433]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.436899636.1587281501; ci_session=f3qsq58kcllhg9m8s0akmggmuldd3nai; _gat_gtag_UA_54829827_2=1 -- 12:59:48.290 INFO [15433]: QUERY_STRING = /member/viewRoom -- 12:59:48.290 INFO [15433]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:59:48.327 INFO [15433]: COREGRADE is stopping... -- 12:59:48.327 DEBUG [15433]: Closing database connection -- 12:59:48.327 SQL [15433]: pgsql_close() -- 12:59:53.134 INFO [15433]: COREGRADE is starting... -- 12:59:53.134 INFO [15433]: Version from config: 1.0 -- 12:59:53.134 DEBUG [15433]: Connecting to database... -- 12:59:53.134 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:59:53.134 SQL [15433]: pgsql_db_connect() -- 12:59:53.139 DEBUG [15433]: Database connection successful -- 12:59:53.139 INFO [15433]: _SERVER found -- 12:59:53.139 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 12:59:53.139 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 12:59:53.139 INFO [15433]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.436899636.1587281501; ci_session=f3qsq58kcllhg9m8s0akmggmuldd3nai; _gat_gtag_UA_54829827_2=1 -- 12:59:53.139 INFO [15433]: QUERY_STRING = /member/viewRoom -- 12:59:53.139 INFO [15433]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:59:53.174 INFO [15433]: COREGRADE is stopping... -- 12:59:53.174 DEBUG [15433]: Closing database connection -- 12:59:53.174 SQL [15433]: pgsql_close() -- 12:59:58.314 INFO [15367]: COREGRADE is starting... -- 12:59:58.315 INFO [15367]: Version from config: 1.0 -- 12:59:58.315 DEBUG [15367]: Connecting to database... -- 12:59:58.315 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:59:58.315 SQL [15367]: pgsql_db_connect() -- 12:59:58.319 DEBUG [15367]: Database connection successful -- 12:59:58.319 INFO [15367]: _SERVER found -- 12:59:58.319 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 12:59:58.319 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 12:59:58.319 INFO [15367]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.436899636.1587281501; ci_session=f3qsq58kcllhg9m8s0akmggmuldd3nai; _gat_gtag_UA_54829827_2=1 -- 12:59:58.319 INFO [15367]: QUERY_STRING = /member/viewRoom -- 12:59:58.319 INFO [15367]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 12:59:58.357 INFO [15367]: COREGRADE is stopping... -- 12:59:58.357 DEBUG [15367]: Closing database connection -- 12:59:58.357 SQL [15367]: pgsql_close() -- 13:00:13.906 INFO [15434]: COREGRADE is starting... -- 13:00:13.907 INFO [15434]: Version from config: 1.0 -- 13:00:13.907 DEBUG [15434]: Connecting to database... -- 13:00:13.907 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:00:13.907 SQL [15434]: pgsql_db_connect() -- 13:00:13.911 DEBUG [15434]: Database connection successful -- 13:00:13.911 INFO [15434]: _SERVER found -- 13:00:13.911 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 13:00:13.911 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 13:00:13.911 INFO [15434]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.436899636.1587281501; ci_session=f3qsq58kcllhg9m8s0akmggmuldd3nai -- 13:00:13.911 INFO [15434]: QUERY_STRING = /member/viewRoom -- 13:00:13.911 INFO [15434]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:00:13.946 INFO [15434]: COREGRADE is stopping... -- 13:00:13.946 DEBUG [15434]: Closing database connection -- 13:00:13.946 SQL [15434]: pgsql_close() -- 13:00:32.712 INFO [15369]: COREGRADE is starting... -- 13:00:32.712 INFO [15369]: Version from config: 1.0 -- 13:00:32.712 DEBUG [15369]: Connecting to database... -- 13:00:32.712 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:00:32.712 SQL [15369]: pgsql_db_connect() -- 13:00:32.717 DEBUG [15369]: Database connection successful -- 13:00:32.717 INFO [15369]: _SERVER found -- 13:00:32.717 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 13:00:32.717 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 13:00:32.717 INFO [15369]: QUERY_STRING = -- 13:00:32.717 INFO [15369]: HTTP_X_FORWARDED_FOR = 104.168.148.236 -- 13:00:32.749 INFO [15369]: COREGRADE is stopping... -- 13:00:32.749 DEBUG [15369]: Closing database connection -- 13:00:32.749 SQL [15369]: pgsql_close() -- 13:00:33.129 INFO [15366]: COREGRADE is starting... -- 13:00:33.130 INFO [15366]: Version from config: 1.0 -- 13:00:33.130 DEBUG [15366]: Connecting to database... -- 13:00:33.130 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:00:33.130 SQL [15366]: pgsql_db_connect() -- 13:00:33.134 DEBUG [15366]: Database connection successful -- 13:00:33.134 INFO [15366]: _SERVER found -- 13:00:33.134 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 13:00:33.134 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 13:00:33.134 INFO [15366]: QUERY_STRING = -- 13:00:33.134 INFO [15366]: HTTP_X_FORWARDED_FOR = 142.11.211.250 -- 13:00:33.173 INFO [15366]: COREGRADE is stopping... -- 13:00:33.173 DEBUG [15366]: Closing database connection -- 13:00:33.173 SQL [15366]: pgsql_close() -- 13:00:38.991 INFO [15370]: COREGRADE is starting... -- 13:00:38.991 INFO [15370]: Version from config: 1.0 -- 13:00:38.991 DEBUG [15370]: Connecting to database... -- 13:00:38.991 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:00:38.991 SQL [15370]: pgsql_db_connect() -- 13:00:38.995 DEBUG [15370]: Database connection successful -- 13:00:38.995 INFO [15370]: _SERVER found -- 13:00:38.995 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 13:00:38.995 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 13:00:38.995 INFO [15370]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.436899636.1587281501; ci_session=f3qsq58kcllhg9m8s0akmggmuldd3nai -- 13:00:38.995 INFO [15370]: QUERY_STRING = /member/addNewSubscriber -- 13:00:38.996 INFO [15370]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:00:39.032 INFO [15370]: COREGRADE is stopping... -- 13:00:39.032 DEBUG [15370]: Closing database connection -- 13:00:39.032 SQL [15370]: pgsql_close() -- 13:00:43.219 INFO [15370]: COREGRADE is starting... -- 13:00:43.219 INFO [15370]: Version from config: 1.0 -- 13:00:43.219 DEBUG [15370]: Connecting to database... -- 13:00:43.219 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:00:43.219 SQL [15370]: pgsql_db_connect() -- 13:00:43.223 DEBUG [15370]: Database connection successful -- 13:00:43.223 INFO [15370]: _SERVER found -- 13:00:43.223 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 13:00:43.223 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 13:00:43.223 INFO [15370]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.436899636.1587281501; ci_session=f3qsq58kcllhg9m8s0akmggmuldd3nai -- 13:00:43.223 INFO [15370]: QUERY_STRING = /member/classroom -- 13:00:43.223 INFO [15370]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:00:43.269 INFO [15370]: COREGRADE is stopping... -- 13:00:43.269 DEBUG [15370]: Closing database connection -- 13:00:43.269 SQL [15370]: pgsql_close() -- 13:00:43.478 INFO [15370]: COREGRADE is starting... -- 13:00:43.478 INFO [15370]: Version from config: 1.0 -- 13:00:43.478 DEBUG [15370]: Connecting to database... -- 13:00:43.478 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:00:43.479 SQL [15370]: pgsql_db_connect() -- 13:00:43.483 DEBUG [15370]: Database connection successful -- 13:00:43.483 INFO [15370]: _SERVER found -- 13:00:43.483 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 13:00:43.483 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 13:00:43.483 INFO [15370]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.436899636.1587281501; ci_session=f3qsq58kcllhg9m8s0akmggmuldd3nai -- 13:00:43.483 INFO [15370]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 13:00:43.483 INFO [15370]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:00:43.494 INFO [15370]: COREGRADE is stopping... -- 13:00:43.494 DEBUG [15370]: Closing database connection -- 13:00:43.494 SQL [15370]: pgsql_close() -- 13:00:46.440 INFO [15370]: COREGRADE is starting... -- 13:00:46.441 INFO [15370]: Version from config: 1.0 -- 13:00:46.441 DEBUG [15370]: Connecting to database... -- 13:00:46.441 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:00:46.441 SQL [15370]: pgsql_db_connect() -- 13:00:46.445 DEBUG [15370]: Database connection successful -- 13:00:46.445 INFO [15370]: _SERVER found -- 13:00:46.445 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 13:00:46.445 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 13:00:46.445 INFO [15370]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.436899636.1587281501; ci_session=f3qsq58kcllhg9m8s0akmggmuldd3nai -- 13:00:46.445 INFO [15370]: QUERY_STRING = /member/viewRoom -- 13:00:46.445 INFO [15370]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:00:46.481 INFO [15370]: COREGRADE is stopping... -- 13:00:46.481 DEBUG [15370]: Closing database connection -- 13:00:46.481 SQL [15370]: pgsql_close() -- 13:00:52.502 INFO [15371]: COREGRADE is starting... -- 13:00:52.502 INFO [15371]: Version from config: 1.0 -- 13:00:52.502 DEBUG [15371]: Connecting to database... -- 13:00:52.502 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:00:52.502 SQL [15371]: pgsql_db_connect() -- 13:00:52.507 DEBUG [15371]: Database connection successful -- 13:00:52.507 INFO [15371]: _SERVER found -- 13:00:52.507 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 13:00:52.507 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 13:00:52.507 INFO [15371]: QUERY_STRING = -- 13:00:52.507 INFO [15371]: HTTP_X_FORWARDED_FOR = 104.168.148.236 -- 13:00:52.539 INFO [15371]: COREGRADE is stopping... -- 13:00:52.539 DEBUG [15371]: Closing database connection -- 13:00:52.539 SQL [15371]: pgsql_close() -- 13:00:52.546 INFO [15371]: COREGRADE is starting... -- 13:00:52.546 INFO [15371]: Version from config: 1.0 -- 13:00:52.546 DEBUG [15371]: Connecting to database... -- 13:00:52.546 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:00:52.546 SQL [15371]: pgsql_db_connect() -- 13:00:52.551 DEBUG [15371]: Database connection successful -- 13:00:52.551 INFO [15371]: _SERVER found -- 13:00:52.551 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 13:00:52.551 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 13:00:52.551 INFO [15371]: QUERY_STRING = -- 13:00:52.551 INFO [15371]: HTTP_X_FORWARDED_FOR = 142.11.211.250 -- 13:00:52.582 INFO [15371]: COREGRADE is stopping... -- 13:00:52.582 DEBUG [15371]: Closing database connection -- 13:00:52.582 SQL [15371]: pgsql_close() -- 13:02:00.725 INFO [15429]: COREGRADE is starting... -- 13:02:00.725 INFO [15429]: Version from config: 1.0 -- 13:02:00.725 DEBUG [15429]: Connecting to database... -- 13:02:00.725 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:02:00.725 SQL [15429]: pgsql_db_connect() -- 13:02:00.729 DEBUG [15429]: Database connection successful -- 13:02:00.729 INFO [15429]: _SERVER found -- 13:02:00.729 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 13:02:00.729 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 13:02:00.729 INFO [15429]: QUERY_STRING = -- 13:02:00.729 INFO [15429]: HTTP_X_FORWARDED_FOR = 104.168.166.234 -- 13:02:00.762 INFO [15429]: COREGRADE is stopping... -- 13:02:00.762 DEBUG [15429]: Closing database connection -- 13:02:00.762 SQL [15429]: pgsql_close() -- 13:02:11.748 INFO [15433]: COREGRADE is starting... -- 13:02:11.748 INFO [15433]: Version from config: 1.0 -- 13:02:11.748 DEBUG [15433]: Connecting to database... -- 13:02:11.748 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:02:11.748 SQL [15433]: pgsql_db_connect() -- 13:02:11.752 DEBUG [15433]: Database connection successful -- 13:02:11.752 INFO [15433]: _SERVER found -- 13:02:11.752 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 13:02:11.752 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 13:02:11.752 INFO [15433]: QUERY_STRING = -- 13:02:11.752 INFO [15433]: HTTP_X_FORWARDED_FOR = 142.11.211.250 -- 13:02:11.784 INFO [15433]: COREGRADE is stopping... -- 13:02:11.784 DEBUG [15433]: Closing database connection -- 13:02:11.784 SQL [15433]: pgsql_close() -- 13:02:18.610 INFO [15367]: COREGRADE is starting... -- 13:02:18.610 INFO [15367]: Version from config: 1.0 -- 13:02:18.610 DEBUG [15367]: Connecting to database... -- 13:02:18.610 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:02:18.610 SQL [15367]: pgsql_db_connect() -- 13:02:18.614 DEBUG [15367]: Database connection successful -- 13:02:18.614 INFO [15367]: _SERVER found -- 13:02:18.614 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 13:02:18.614 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 13:02:18.614 INFO [15367]: QUERY_STRING = -- 13:02:18.614 INFO [15367]: HTTP_X_FORWARDED_FOR = 104.168.166.234 -- 13:02:18.646 INFO [15367]: COREGRADE is stopping... -- 13:02:18.646 DEBUG [15367]: Closing database connection -- 13:02:18.646 SQL [15367]: pgsql_close() -- 13:02:19.556 INFO [15434]: COREGRADE is starting... -- 13:02:19.556 INFO [15434]: Version from config: 1.0 -- 13:02:19.556 DEBUG [15434]: Connecting to database... -- 13:02:19.556 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:02:19.556 SQL [15434]: pgsql_db_connect() -- 13:02:19.560 DEBUG [15434]: Database connection successful -- 13:02:19.560 INFO [15434]: _SERVER found -- 13:02:19.560 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 13:02:19.560 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 13:02:19.560 INFO [15434]: QUERY_STRING = -- 13:02:19.560 INFO [15434]: HTTP_X_FORWARDED_FOR = 23.254.164.181 -- 13:02:19.592 INFO [15434]: COREGRADE is stopping... -- 13:02:19.592 DEBUG [15434]: Closing database connection -- 13:02:19.592 SQL [15434]: pgsql_close() -- 13:03:09.492 INFO [15369]: COREGRADE is starting... -- 13:03:09.493 INFO [15369]: Version from config: 1.0 -- 13:03:09.493 DEBUG [15369]: Connecting to database... -- 13:03:09.493 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:03:09.493 SQL [15369]: pgsql_db_connect() -- 13:03:09.497 DEBUG [15369]: Database connection successful -- 13:03:09.497 INFO [15369]: _SERVER found -- 13:03:09.497 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 13:03:09.497 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 13:03:09.497 INFO [15369]: QUERY_STRING = -- 13:03:09.497 INFO [15369]: HTTP_X_FORWARDED_FOR = 142.11.211.250 -- 13:03:09.529 INFO [15369]: COREGRADE is stopping... -- 13:03:09.529 DEBUG [15369]: Closing database connection -- 13:03:09.529 SQL [15369]: pgsql_close() -- 13:03:09.829 INFO [15366]: COREGRADE is starting... -- 13:03:09.830 INFO [15366]: Version from config: 1.0 -- 13:03:09.830 DEBUG [15366]: Connecting to database... -- 13:03:09.830 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:03:09.830 SQL [15366]: pgsql_db_connect() -- 13:03:09.834 DEBUG [15366]: Database connection successful -- 13:03:09.834 INFO [15366]: _SERVER found -- 13:03:09.834 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 13:03:09.834 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 13:03:09.834 INFO [15366]: QUERY_STRING = -- 13:03:09.834 INFO [15366]: HTTP_X_FORWARDED_FOR = 104.168.148.236 -- 13:03:09.865 INFO [15366]: COREGRADE is stopping... -- 13:03:09.865 DEBUG [15366]: Closing database connection -- 13:03:09.865 SQL [15366]: pgsql_close() -- 13:04:01.645 INFO [15370]: COREGRADE is starting... -- 13:04:01.645 INFO [15370]: Version from config: 1.0 -- 13:04:01.645 DEBUG [15370]: Connecting to database... -- 13:04:01.645 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:04:01.645 SQL [15370]: pgsql_db_connect() -- 13:04:01.649 DEBUG [15370]: Database connection successful -- 13:04:01.649 INFO [15370]: _SERVER found -- 13:04:01.649 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 13:04:01.649 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 13:04:01.649 INFO [15370]: QUERY_STRING = -- 13:04:01.649 INFO [15370]: HTTP_X_FORWARDED_FOR = 192.236.192.6 -- 13:04:01.682 INFO [15370]: COREGRADE is stopping... -- 13:04:01.682 DEBUG [15370]: Closing database connection -- 13:04:01.682 SQL [15370]: pgsql_close() -- 13:04:02.006 INFO [15370]: COREGRADE is starting... -- 13:04:02.006 INFO [15370]: Version from config: 1.0 -- 13:04:02.006 DEBUG [15370]: Connecting to database... -- 13:04:02.006 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:04:02.006 SQL [15370]: pgsql_db_connect() -- 13:04:02.010 DEBUG [15370]: Database connection successful -- 13:04:02.010 INFO [15370]: _SERVER found -- 13:04:02.010 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 13:04:02.010 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 13:04:02.010 INFO [15370]: QUERY_STRING = -- 13:04:02.010 INFO [15370]: HTTP_X_FORWARDED_FOR = 104.168.148.236 -- 13:04:02.042 INFO [15370]: COREGRADE is stopping... -- 13:04:02.042 DEBUG [15370]: Closing database connection -- 13:04:02.042 SQL [15370]: pgsql_close() -- 13:04:03.054 INFO [15370]: COREGRADE is starting... -- 13:04:03.054 INFO [15370]: Version from config: 1.0 -- 13:04:03.054 DEBUG [15370]: Connecting to database... -- 13:04:03.054 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:04:03.054 SQL [15370]: pgsql_db_connect() -- 13:04:03.058 DEBUG [15370]: Database connection successful -- 13:04:03.058 INFO [15370]: _SERVER found -- 13:04:03.058 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 13:04:03.058 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 13:04:03.058 INFO [15370]: QUERY_STRING = -- 13:04:03.058 INFO [15370]: HTTP_X_FORWARDED_FOR = 192.236.162.232 -- 13:04:03.090 INFO [15370]: COREGRADE is stopping... -- 13:04:03.090 DEBUG [15370]: Closing database connection -- 13:04:03.090 SQL [15370]: pgsql_close() -- 13:04:14.683 INFO [15371]: COREGRADE is starting... -- 13:04:14.683 INFO [15371]: Version from config: 1.0 -- 13:04:14.683 DEBUG [15371]: Connecting to database... -- 13:04:14.683 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:04:14.683 SQL [15371]: pgsql_db_connect() -- 13:04:14.687 DEBUG [15371]: Database connection successful -- 13:04:14.687 INFO [15371]: _SERVER found -- 13:04:14.687 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 13:04:14.687 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 13:04:14.687 INFO [15371]: QUERY_STRING = -- 13:04:14.687 INFO [15371]: HTTP_X_FORWARDED_FOR = 192.236.192.119 -- 13:04:14.720 INFO [15371]: COREGRADE is stopping... -- 13:04:14.720 DEBUG [15371]: Closing database connection -- 13:04:14.720 SQL [15371]: pgsql_close() -- 13:05:01.546 INFO [15429]: COREGRADE is starting... -- 13:05:01.546 INFO [15429]: Version from config: 1.0 -- 13:05:01.546 DEBUG [15429]: Connecting to database... -- 13:05:01.546 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:05:01.546 SQL [15429]: pgsql_db_connect() -- 13:05:01.551 DEBUG [15429]: Database connection successful -- 13:05:01.551 INFO [15429]: _SERVER found -- 13:05:01.551 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 13:05:01.551 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 13:05:01.551 INFO [15429]: QUERY_STRING = -- 13:05:01.551 INFO [15429]: HTTP_X_FORWARDED_FOR = 66.249.64.182 -- 13:05:01.583 INFO [15429]: COREGRADE is stopping... -- 13:05:01.583 DEBUG [15429]: Closing database connection -- 13:05:01.583 SQL [15429]: pgsql_close() -- 13:05:07.440 INFO [15433]: COREGRADE is starting... -- 13:05:07.440 INFO [15433]: Version from config: 1.0 -- 13:05:07.440 DEBUG [15433]: Connecting to database... -- 13:05:07.440 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:05:07.440 SQL [15433]: pgsql_db_connect() -- 13:05:07.444 DEBUG [15433]: Database connection successful -- 13:05:07.444 INFO [15433]: _SERVER found -- 13:05:07.444 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 13:05:07.444 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 13:05:07.444 INFO [15433]: QUERY_STRING = -- 13:05:07.444 INFO [15433]: HTTP_X_FORWARDED_FOR = 192.236.192.119 -- 13:05:07.476 INFO [15433]: COREGRADE is stopping... -- 13:05:07.476 DEBUG [15433]: Closing database connection -- 13:05:07.476 SQL [15433]: pgsql_close() -- 13:05:18.700 INFO [15367]: COREGRADE is starting... -- 13:05:18.700 INFO [15367]: Version from config: 1.0 -- 13:05:18.700 DEBUG [15367]: Connecting to database... -- 13:05:18.700 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:05:18.700 SQL [15367]: pgsql_db_connect() -- 13:05:18.704 DEBUG [15367]: Database connection successful -- 13:05:18.704 INFO [15367]: _SERVER found -- 13:05:18.704 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 13:05:18.704 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 13:05:18.704 INFO [15367]: QUERY_STRING = -- 13:05:18.704 INFO [15367]: HTTP_X_FORWARDED_FOR = 192.236.192.3 -- 13:05:18.736 INFO [15367]: COREGRADE is stopping... -- 13:05:18.736 DEBUG [15367]: Closing database connection -- 13:05:18.736 SQL [15367]: pgsql_close() -- 13:05:23.554 INFO [15367]: COREGRADE is starting... -- 13:05:23.555 INFO [15367]: Version from config: 1.0 -- 13:05:23.555 DEBUG [15367]: Connecting to database... -- 13:05:23.555 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:05:23.555 SQL [15367]: pgsql_db_connect() -- 13:05:23.559 DEBUG [15367]: Database connection successful -- 13:05:23.559 INFO [15367]: _SERVER found -- 13:05:23.559 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 13:05:23.559 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 13:05:23.559 INFO [15367]: QUERY_STRING = -- 13:05:23.559 INFO [15367]: HTTP_X_FORWARDED_FOR = 142.11.213.254 -- 13:05:23.590 INFO [15367]: COREGRADE is stopping... -- 13:05:23.590 DEBUG [15367]: Closing database connection -- 13:05:23.590 SQL [15367]: pgsql_close() -- 13:05:32.783 INFO [15434]: COREGRADE is starting... -- 13:05:32.783 INFO [15434]: Version from config: 1.0 -- 13:05:32.783 DEBUG [15434]: Connecting to database... -- 13:05:32.784 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:05:32.784 SQL [15434]: pgsql_db_connect() -- 13:05:32.788 DEBUG [15434]: Database connection successful -- 13:05:32.788 INFO [15434]: _SERVER found -- 13:05:32.788 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 13:05:32.788 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 13:05:32.788 INFO [15434]: QUERY_STRING = -- 13:05:32.788 INFO [15434]: HTTP_X_FORWARDED_FOR = 192.236.163.117 -- 13:05:32.820 INFO [15434]: COREGRADE is stopping... -- 13:05:32.820 DEBUG [15434]: Closing database connection -- 13:05:32.820 SQL [15434]: pgsql_close() -- 13:05:41.243 INFO [15369]: COREGRADE is starting... -- 13:05:41.244 INFO [15369]: Version from config: 1.0 -- 13:05:41.244 DEBUG [15369]: Connecting to database... -- 13:05:41.244 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:05:41.244 SQL [15369]: pgsql_db_connect() -- 13:05:41.248 DEBUG [15369]: Database connection successful -- 13:05:41.248 INFO [15369]: _SERVER found -- 13:05:41.248 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 13:05:41.248 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 13:05:41.248 INFO [15369]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.436899636.1587281501; ci_session=f3qsq58kcllhg9m8s0akmggmuldd3nai -- 13:05:41.248 INFO [15369]: QUERY_STRING = /member/configure -- 13:05:41.248 INFO [15369]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:05:41.293 INFO [15369]: COREGRADE is stopping... -- 13:05:41.293 DEBUG [15369]: Closing database connection -- 13:05:41.293 SQL [15369]: pgsql_close() -- 13:05:41.554 INFO [15369]: COREGRADE is starting... -- 13:05:41.555 INFO [15369]: Version from config: 1.0 -- 13:05:41.555 DEBUG [15369]: Connecting to database... -- 13:05:41.555 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:05:41.555 SQL [15369]: pgsql_db_connect() -- 13:05:41.559 DEBUG [15369]: Database connection successful -- 13:05:41.559 INFO [15369]: _SERVER found -- 13:05:41.559 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 13:05:41.559 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 13:05:41.559 INFO [15369]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.436899636.1587281501; ci_session=rculriq685di9qd27slr18rn1dio0sph -- 13:05:41.559 INFO [15369]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 13:05:41.559 INFO [15369]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:05:41.570 INFO [15369]: COREGRADE is stopping... -- 13:05:41.570 DEBUG [15369]: Closing database connection -- 13:05:41.570 SQL [15369]: pgsql_close() -- 13:05:41.677 INFO [15369]: COREGRADE is starting... -- 13:05:41.677 INFO [15369]: Version from config: 1.0 -- 13:05:41.677 DEBUG [15369]: Connecting to database... -- 13:05:41.677 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:05:41.677 SQL [15369]: pgsql_db_connect() -- 13:05:41.681 DEBUG [15369]: Database connection successful -- 13:05:41.681 INFO [15369]: _SERVER found -- 13:05:41.681 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 13:05:41.681 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 13:05:41.681 INFO [15369]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.436899636.1587281501; ci_session=rculriq685di9qd27slr18rn1dio0sph -- 13:05:41.681 INFO [15369]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 13:05:41.681 INFO [15369]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:05:41.692 INFO [15369]: COREGRADE is stopping... -- 13:05:41.693 DEBUG [15369]: Closing database connection -- 13:05:41.693 SQL [15369]: pgsql_close() -- 13:05:43.017 INFO [15369]: COREGRADE is starting... -- 13:05:43.018 INFO [15369]: Version from config: 1.0 -- 13:05:43.018 DEBUG [15369]: Connecting to database... -- 13:05:43.018 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:05:43.018 SQL [15369]: pgsql_db_connect() -- 13:05:43.022 DEBUG [15369]: Database connection successful -- 13:05:43.022 INFO [15369]: _SERVER found -- 13:05:43.022 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 13:05:43.022 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 13:05:43.022 INFO [15369]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.436899636.1587281501; ci_session=rculriq685di9qd27slr18rn1dio0sph -- 13:05:43.022 INFO [15369]: QUERY_STRING = /member -- 13:05:43.022 INFO [15369]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:05:43.062 INFO [15369]: COREGRADE is stopping... -- 13:05:43.062 DEBUG [15369]: Closing database connection -- 13:05:43.062 SQL [15369]: pgsql_close() -- 13:05:45.205 INFO [15369]: COREGRADE is starting... -- 13:05:45.206 INFO [15369]: Version from config: 1.0 -- 13:05:45.206 DEBUG [15369]: Connecting to database... -- 13:05:45.206 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:05:45.206 SQL [15369]: pgsql_db_connect() -- 13:05:45.210 DEBUG [15369]: Database connection successful -- 13:05:45.210 INFO [15369]: _SERVER found -- 13:05:45.210 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 13:05:45.210 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 13:05:45.210 INFO [15369]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.436899636.1587281501; ci_session=rculriq685di9qd27slr18rn1dio0sph -- 13:05:45.210 INFO [15369]: QUERY_STRING = /member/classroom -- 13:05:45.210 INFO [15369]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:05:45.252 INFO [15369]: COREGRADE is stopping... -- 13:05:45.252 DEBUG [15369]: Closing database connection -- 13:05:45.252 SQL [15369]: pgsql_close() -- 13:05:59.448 INFO [15366]: COREGRADE is starting... -- 13:05:59.448 INFO [15366]: Version from config: 1.0 -- 13:05:59.448 DEBUG [15366]: Connecting to database... -- 13:05:59.448 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:05:59.448 SQL [15366]: pgsql_db_connect() -- 13:05:59.452 DEBUG [15366]: Database connection successful -- 13:05:59.452 INFO [15366]: _SERVER found -- 13:05:59.452 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 13:05:59.452 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 13:05:59.452 INFO [15366]: QUERY_STRING = -- 13:05:59.452 INFO [15366]: HTTP_X_FORWARDED_FOR = 192.119.73.108 -- 13:05:59.484 INFO [15366]: COREGRADE is stopping... -- 13:05:59.484 DEBUG [15366]: Closing database connection -- 13:05:59.484 SQL [15366]: pgsql_close() -- 13:06:24.794 INFO [15370]: COREGRADE is starting... -- 13:06:24.794 INFO [15370]: Version from config: 1.0 -- 13:06:24.794 DEBUG [15370]: Connecting to database... -- 13:06:24.794 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:06:24.794 SQL [15370]: pgsql_db_connect() -- 13:06:24.798 DEBUG [15370]: Database connection successful -- 13:06:24.798 INFO [15370]: _SERVER found -- 13:06:24.798 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 13:06:24.798 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 13:06:24.798 INFO [15370]: QUERY_STRING = -- 13:06:24.798 INFO [15370]: HTTP_X_FORWARDED_FOR = 192.236.192.6 -- 13:06:24.830 INFO [15370]: COREGRADE is stopping... -- 13:06:24.830 DEBUG [15370]: Closing database connection -- 13:06:24.830 SQL [15370]: pgsql_close() -- 13:07:10.961 INFO [15371]: COREGRADE is starting... -- 13:07:10.961 INFO [15371]: Version from config: 1.0 -- 13:07:10.961 DEBUG [15371]: Connecting to database... -- 13:07:10.961 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:07:10.961 SQL [15371]: pgsql_db_connect() -- 13:07:10.965 DEBUG [15371]: Database connection successful -- 13:07:10.965 INFO [15371]: _SERVER found -- 13:07:10.965 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 13:07:10.965 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 13:07:10.965 INFO [15371]: QUERY_STRING = -- 13:07:10.965 INFO [15371]: HTTP_X_FORWARDED_FOR = 23.254.164.181 -- 13:07:10.997 INFO [15371]: COREGRADE is stopping... -- 13:07:10.997 DEBUG [15371]: Closing database connection -- 13:07:10.997 SQL [15371]: pgsql_close() -- 13:07:20.484 INFO [15429]: COREGRADE is starting... -- 13:07:20.484 INFO [15429]: Version from config: 1.0 -- 13:07:20.484 DEBUG [15429]: Connecting to database... -- 13:07:20.484 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:07:20.484 SQL [15429]: pgsql_db_connect() -- 13:07:20.488 DEBUG [15429]: Database connection successful -- 13:07:20.488 INFO [15429]: _SERVER found -- 13:07:20.488 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 13:07:20.488 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 13:07:20.488 INFO [15429]: QUERY_STRING = -- 13:07:20.488 INFO [15429]: HTTP_X_FORWARDED_FOR = 142.11.211.250 -- 13:07:20.521 INFO [15429]: COREGRADE is stopping... -- 13:07:20.521 DEBUG [15429]: Closing database connection -- 13:07:20.521 SQL [15429]: pgsql_close() -- 13:07:20.822 INFO [15429]: COREGRADE is starting... -- 13:07:20.822 INFO [15429]: Version from config: 1.0 -- 13:07:20.822 DEBUG [15429]: Connecting to database... -- 13:07:20.822 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:07:20.822 SQL [15429]: pgsql_db_connect() -- 13:07:20.826 DEBUG [15429]: Database connection successful -- 13:07:20.826 INFO [15429]: _SERVER found -- 13:07:20.826 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 13:07:20.826 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 13:07:20.826 INFO [15429]: QUERY_STRING = -- 13:07:20.826 INFO [15429]: HTTP_X_FORWARDED_FOR = 104.168.148.236 -- 13:07:20.857 INFO [15429]: COREGRADE is stopping... -- 13:07:20.857 DEBUG [15429]: Closing database connection -- 13:07:20.857 SQL [15429]: pgsql_close() -- 13:07:56.384 INFO [15433]: COREGRADE is starting... -- 13:07:56.384 INFO [15433]: Version from config: 1.0 -- 13:07:56.384 DEBUG [15433]: Connecting to database... -- 13:07:56.384 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:07:56.384 SQL [15433]: pgsql_db_connect() -- 13:07:56.388 DEBUG [15433]: Database connection successful -- 13:07:56.388 INFO [15433]: _SERVER found -- 13:07:56.388 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 13:07:56.388 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 13:07:56.388 INFO [15433]: QUERY_STRING = -- 13:07:56.388 INFO [15433]: HTTP_X_FORWARDED_FOR = 142.11.211.250 -- 13:07:56.420 INFO [15433]: COREGRADE is stopping... -- 13:07:56.420 DEBUG [15433]: Closing database connection -- 13:07:56.420 SQL [15433]: pgsql_close() -- 13:08:11.411 INFO [15367]: COREGRADE is starting... -- 13:08:11.412 INFO [15367]: Version from config: 1.0 -- 13:08:11.412 DEBUG [15367]: Connecting to database... -- 13:08:11.412 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:08:11.412 SQL [15367]: pgsql_db_connect() -- 13:08:11.416 DEBUG [15367]: Database connection successful -- 13:08:11.416 INFO [15367]: _SERVER found -- 13:08:11.416 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 13:08:11.416 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 13:08:11.416 INFO [15367]: QUERY_STRING = -- 13:08:11.416 INFO [15367]: HTTP_X_FORWARDED_FOR = 192.236.163.119 -- 13:08:11.448 INFO [15367]: COREGRADE is stopping... -- 13:08:11.448 DEBUG [15367]: Closing database connection -- 13:08:11.448 SQL [15367]: pgsql_close() -- 13:08:33.711 INFO [15434]: COREGRADE is starting... -- 13:08:33.711 INFO [15434]: Version from config: 1.0 -- 13:08:33.711 DEBUG [15434]: Connecting to database... -- 13:08:33.711 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:08:33.711 SQL [15434]: pgsql_db_connect() -- 13:08:33.716 DEBUG [15434]: Database connection successful -- 13:08:33.716 INFO [15434]: _SERVER found -- 13:08:33.716 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 13:08:33.716 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 13:08:33.716 INFO [15434]: QUERY_STRING = -- 13:08:33.716 INFO [15434]: HTTP_X_FORWARDED_FOR = 23.254.164.48 -- 13:08:33.748 INFO [15434]: COREGRADE is stopping... -- 13:08:33.748 DEBUG [15434]: Closing database connection -- 13:08:33.748 SQL [15434]: pgsql_close() -- 13:08:37.476 INFO [15434]: COREGRADE is starting... -- 13:08:37.476 INFO [15434]: Version from config: 1.0 -- 13:08:37.477 DEBUG [15434]: Connecting to database... -- 13:08:37.477 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:08:37.477 SQL [15434]: pgsql_db_connect() -- 13:08:37.481 DEBUG [15434]: Database connection successful -- 13:08:37.481 INFO [15434]: _SERVER found -- 13:08:37.481 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 13:08:37.481 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 13:08:37.481 INFO [15434]: QUERY_STRING = -- 13:08:37.481 INFO [15434]: HTTP_X_FORWARDED_FOR = 142.11.211.250 -- 13:08:37.511 INFO [15434]: COREGRADE is stopping... -- 13:08:37.511 DEBUG [15434]: Closing database connection -- 13:08:37.512 SQL [15434]: pgsql_close() -- 13:08:37.770 INFO [15434]: COREGRADE is starting... -- 13:08:37.770 INFO [15434]: Version from config: 1.0 -- 13:08:37.770 DEBUG [15434]: Connecting to database... -- 13:08:37.770 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:08:37.770 SQL [15434]: pgsql_db_connect() -- 13:08:37.774 DEBUG [15434]: Database connection successful -- 13:08:37.774 INFO [15434]: _SERVER found -- 13:08:37.774 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 13:08:37.774 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 13:08:37.774 INFO [15434]: QUERY_STRING = -- 13:08:37.774 INFO [15434]: HTTP_X_FORWARDED_FOR = 104.168.148.236 -- 13:08:37.805 INFO [15434]: COREGRADE is stopping... -- 13:08:37.805 DEBUG [15434]: Closing database connection -- 13:08:37.805 SQL [15434]: pgsql_close() -- 13:08:40.185 INFO [15369]: COREGRADE is starting... -- 13:08:40.186 INFO [15369]: Version from config: 1.0 -- 13:08:40.186 DEBUG [15369]: Connecting to database... -- 13:08:40.186 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:08:40.186 SQL [15369]: pgsql_db_connect() -- 13:08:40.190 DEBUG [15369]: Database connection successful -- 13:08:40.190 INFO [15369]: _SERVER found -- 13:08:40.190 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 13:08:40.190 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 13:08:40.190 INFO [15369]: QUERY_STRING = -- 13:08:40.190 INFO [15369]: HTTP_X_FORWARDED_FOR = 192.119.73.108 -- 13:08:40.222 INFO [15369]: COREGRADE is stopping... -- 13:08:40.222 DEBUG [15369]: Closing database connection -- 13:08:40.222 SQL [15369]: pgsql_close() -- 13:08:40.993 INFO [15434]: COREGRADE is starting... -- 13:08:40.993 INFO [15434]: Version from config: 1.0 -- 13:08:40.993 DEBUG [15434]: Connecting to database... -- 13:08:40.993 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:08:40.993 SQL [15434]: pgsql_db_connect() -- 13:08:40.997 DEBUG [15434]: Database connection successful -- 13:08:40.997 INFO [15434]: _SERVER found -- 13:08:40.997 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 13:08:40.997 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 13:08:40.997 INFO [15434]: QUERY_STRING = -- 13:08:40.997 INFO [15434]: HTTP_X_FORWARDED_FOR = 142.11.213.254 -- 13:08:41.028 INFO [15434]: COREGRADE is stopping... -- 13:08:41.028 DEBUG [15434]: Closing database connection -- 13:08:41.028 SQL [15434]: pgsql_close() -- 13:08:48.318 INFO [15366]: COREGRADE is starting... -- 13:08:48.318 INFO [15366]: Version from config: 1.0 -- 13:08:48.318 DEBUG [15366]: Connecting to database... -- 13:08:48.318 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:08:48.318 SQL [15366]: pgsql_db_connect() -- 13:08:48.321 INFO [15370]: COREGRADE is starting... -- 13:08:48.322 INFO [15370]: Version from config: 1.0 -- 13:08:48.322 DEBUG [15370]: Connecting to database... -- 13:08:48.322 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:08:48.322 SQL [15370]: pgsql_db_connect() -- 13:08:48.322 DEBUG [15366]: Database connection successful -- 13:08:48.322 INFO [15366]: _SERVER found -- 13:08:48.322 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 13:08:48.322 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 13:08:48.322 INFO [15366]: QUERY_STRING = -- 13:08:48.322 INFO [15366]: HTTP_X_FORWARDED_FOR = 192.236.192.6 -- 13:08:48.355 INFO [15366]: COREGRADE is stopping... -- 13:08:48.355 DEBUG [15366]: Closing database connection -- 13:08:48.355 SQL [15366]: pgsql_close() -- 13:08:48.326 DEBUG [15370]: Database connection successful -- 13:08:48.326 INFO [15370]: _SERVER found -- 13:08:48.326 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 13:08:48.326 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 13:08:48.326 INFO [15370]: QUERY_STRING = -- 13:08:48.326 INFO [15370]: HTTP_X_FORWARDED_FOR = 104.168.194.148 -- 13:08:48.358 INFO [15370]: COREGRADE is stopping... -- 13:08:48.358 DEBUG [15370]: Closing database connection -- 13:08:48.358 SQL [15370]: pgsql_close() -- 13:08:51.137 INFO [15371]: COREGRADE is starting... -- 13:08:51.137 INFO [15371]: Version from config: 1.0 -- 13:08:51.137 DEBUG [15371]: Connecting to database... -- 13:08:51.137 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:08:51.137 SQL [15371]: pgsql_db_connect() -- 13:08:51.141 DEBUG [15371]: Database connection successful -- 13:08:51.141 INFO [15371]: _SERVER found -- 13:08:51.141 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 13:08:51.141 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 13:08:51.141 INFO [15371]: QUERY_STRING = -- 13:08:51.141 INFO [15371]: HTTP_X_FORWARDED_FOR = 192.236.162.232 -- 13:08:51.172 INFO [15371]: COREGRADE is stopping... -- 13:08:51.172 DEBUG [15371]: Closing database connection -- 13:08:51.172 SQL [15371]: pgsql_close() -- 13:08:52.265 INFO [15371]: COREGRADE is starting... -- 13:08:52.266 INFO [15371]: Version from config: 1.0 -- 13:08:52.266 DEBUG [15371]: Connecting to database... -- 13:08:52.266 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:08:52.266 SQL [15371]: pgsql_db_connect() -- 13:08:52.270 DEBUG [15371]: Database connection successful -- 13:08:52.270 INFO [15371]: _SERVER found -- 13:08:52.270 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 13:08:52.270 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 13:08:52.270 INFO [15371]: QUERY_STRING = -- 13:08:52.270 INFO [15371]: HTTP_X_FORWARDED_FOR = 104.168.166.234 -- 13:08:52.301 INFO [15371]: COREGRADE is stopping... -- 13:08:52.301 DEBUG [15371]: Closing database connection -- 13:08:52.301 SQL [15371]: pgsql_close() -- 13:08:53.880 INFO [15371]: COREGRADE is starting... -- 13:08:53.881 INFO [15371]: Version from config: 1.0 -- 13:08:53.881 DEBUG [15371]: Connecting to database... -- 13:08:53.881 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:08:53.881 SQL [15371]: pgsql_db_connect() -- 13:08:53.885 DEBUG [15371]: Database connection successful -- 13:08:53.885 INFO [15371]: _SERVER found -- 13:08:53.885 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 13:08:53.885 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 13:08:53.885 INFO [15371]: QUERY_STRING = -- 13:08:53.885 INFO [15371]: HTTP_X_FORWARDED_FOR = 192.236.163.117 -- 13:08:53.916 INFO [15371]: COREGRADE is stopping... -- 13:08:53.916 DEBUG [15371]: Closing database connection -- 13:08:53.916 SQL [15371]: pgsql_close() -- 13:08:55.104 INFO [15371]: COREGRADE is starting... -- 13:08:55.105 INFO [15371]: Version from config: 1.0 -- 13:08:55.105 DEBUG [15371]: Connecting to database... -- 13:08:55.105 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:08:55.105 SQL [15371]: pgsql_db_connect() -- 13:08:55.109 DEBUG [15371]: Database connection successful -- 13:08:55.109 INFO [15371]: _SERVER found -- 13:08:55.109 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 13:08:55.109 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 13:08:55.109 INFO [15371]: QUERY_STRING = -- 13:08:55.109 INFO [15371]: HTTP_X_FORWARDED_FOR = 23.254.164.181 -- 13:08:55.139 INFO [15371]: COREGRADE is stopping... -- 13:08:55.140 DEBUG [15371]: Closing database connection -- 13:08:55.140 SQL [15371]: pgsql_close() -- 13:08:56.934 INFO [15371]: COREGRADE is starting... -- 13:08:56.934 INFO [15371]: Version from config: 1.0 -- 13:08:56.934 DEBUG [15371]: Connecting to database... -- 13:08:56.934 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:08:56.934 SQL [15371]: pgsql_db_connect() -- 13:08:56.939 DEBUG [15371]: Database connection successful -- 13:08:56.939 INFO [15371]: _SERVER found -- 13:08:56.939 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 13:08:56.939 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 13:08:56.939 INFO [15371]: QUERY_STRING = -- 13:08:56.939 INFO [15371]: HTTP_X_FORWARDED_FOR = 104.168.194.148 -- 13:08:56.969 INFO [15371]: COREGRADE is stopping... -- 13:08:56.969 DEBUG [15371]: Closing database connection -- 13:08:56.969 SQL [15371]: pgsql_close() -- 13:09:35.157 INFO [15429]: COREGRADE is starting... -- 13:09:35.157 INFO [15429]: Version from config: 1.0 -- 13:09:35.158 DEBUG [15429]: Connecting to database... -- 13:09:35.158 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:35.158 SQL [15429]: pgsql_db_connect() -- 13:09:35.162 DEBUG [15429]: Database connection successful -- 13:09:35.162 INFO [15429]: _SERVER found -- 13:09:35.162 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 13:09:35.162 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 13:09:35.162 INFO [15429]: QUERY_STRING = -- 13:09:35.162 INFO [15429]: HTTP_X_FORWARDED_FOR = 23.254.164.181 -- 13:09:35.193 INFO [15429]: COREGRADE is stopping... -- 13:09:35.193 DEBUG [15429]: Closing database connection -- 13:09:35.193 SQL [15429]: pgsql_close() -- 13:09:41.151 INFO [15433]: COREGRADE is starting... -- 13:09:41.151 INFO [15433]: Version from config: 1.0 -- 13:09:41.151 DEBUG [15433]: Connecting to database... -- 13:09:41.151 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:41.151 SQL [15433]: pgsql_db_connect() -- 13:09:41.155 DEBUG [15433]: Database connection successful -- 13:09:41.155 INFO [15433]: _SERVER found -- 13:09:41.155 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 13:09:41.155 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 13:09:41.155 INFO [15433]: QUERY_STRING = -- 13:09:41.155 INFO [15433]: HTTP_X_FORWARDED_FOR = 142.11.213.254 -- 13:09:41.187 INFO [15433]: COREGRADE is stopping... -- 13:09:41.187 DEBUG [15433]: Closing database connection -- 13:09:41.187 SQL [15433]: pgsql_close() -- 13:09:41.398 INFO [15367]: COREGRADE is starting... -- 13:09:41.398 INFO [15367]: Version from config: 1.0 -- 13:09:41.398 DEBUG [15367]: Connecting to database... -- 13:09:41.398 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:41.398 SQL [15367]: pgsql_db_connect() -- 13:09:41.433 INFO [15367]: COREGRADE is starting... -- 13:09:41.434 INFO [15367]: Version from config: 1.0 -- 13:09:41.434 DEBUG [15367]: Connecting to database... -- 13:09:41.434 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:41.434 SQL [15367]: pgsql_db_connect() -- 13:09:41.437 DEBUG [15367]: Database connection successful -- 13:09:41.437 INFO [15367]: _SERVER found -- 13:09:41.437 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 13:09:41.437 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 13:09:41.437 INFO [15367]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.139226156.1587315123 -- 13:09:41.437 INFO [15367]: QUERY_STRING = -- 13:09:41.437 INFO [15367]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:09:41.437 INFO [15367]: SystemStatus()09-09-********~************ -- 13:09:41.437 INFO [15367]: long coregrade_api_main(CVars in, CVars &out) -- 13:09:41.437 INFO [15367]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 13:09:41.437 INFO [15367]: account calls -- 13:09:41.438 INFO [15367]: account_calls() -- 13:09:41.438 INFO [15367]: LoginCoreGradeAccount() -- 13:09:41.438 FLOG_MAX [15367]: REQ_STRING(username) -- 13:09:41.438 FLOG_MAX [15367]: REQ_STRING(password) -- 13:09:41.438 FLOG_MAX [15367]: REQ_STRING(sessionid) -- 13:09:41.438 FLOG_MAX [15367]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:09:41.438 SQL [15367]: pgsql_query() -- 13:09:41.438 SQL [15367]: About to run query: -- 13:09:41.438 SQL [15367]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678') -- 13:09:41.442 SQL [15367]: Found rows: 1 -- 13:09:41.442 FLOG_MAX [15367]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678')) num_cols=16 -- 13:09:41.442 INFO [15367]: long SessionCheck(long uid, const char *sessionid, int create ) -- 13:09:41.442 SQL [15367]: pgsql_exec() -- 13:09:41.442 SQL [15367]: About to run query: -- 13:09:41.442 SQL [15367]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 13:09:41.443 SQL [15367]: PQcmdTuples: 0 -- 13:09:41.443 SQL [15367]: Affected rows: 0 -- 13:09:41.443 SQL [15367]: pgsql_exec() -- 13:09:41.443 SQL [15367]: About to run query: -- 13:09:41.443 SQL [15367]: DELETE FROM members_session WHERE member_id=7 -- 13:09:41.444 SQL [15367]: PQcmdTuples: 1 -- 13:09:41.444 SQL [15367]: Affected rows: 1 -- 13:09:41.444 SQL [15367]: pgsql_query() -- 13:09:41.444 SQL [15367]: About to run query: -- 13:09:41.444 SQL [15367]: SELECT * FROM members_session WHERE member_id=7 AND session<>'33A14514A006DBBD56082D0E270DC04C' -- 13:09:41.444 SQL [15367]: Found rows: 0 -- 13:09:41.444 SQL [15367]: Found rows: 0 -- 13:09:41.444 FLOG_MAX [15367]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:09:41.444 SQL [15367]: pgsql_query() -- 13:09:41.444 SQL [15367]: About to run query: -- 13:09:41.444 SQL [15367]: SELECT * FROM members_session WHERE member_id=7 AND session='33A14514A006DBBD56082D0E270DC04C' -- 13:09:41.445 SQL [15367]: Found rows: 0 -- 13:09:41.445 SQL [15367]: Found rows: 0 -- 13:09:41.445 FLOG_MAX [15367]: insert_db_record() -- 13:09:41.445 SQL [15367]: pgsql_exec() -- 13:09:41.445 SQL [15367]: About to run query: -- 13:09:41.445 SQL [15367]: INSERT INTO members_session (member_id,session) VALUES ('7','33A14514A006DBBD56082D0E270DC04C') -- 13:09:41.446 SQL [15367]: PQcmdTuples: 1 -- 13:09:41.446 SQL [15367]: Affected rows: 1 -- 13:09:41.446 FLOG_MAX [15367]: SELECT currval('members_session_id_seq') -- 13:09:41.446 SQL [15367]: pgsql_query() -- 13:09:41.446 SQL [15367]: About to run query: -- 13:09:41.446 SQL [15367]: SELECT currval('members_session_id_seq') -- 13:09:41.447 SQL [15367]: Found rows: 1 -- 13:09:41.447 INFO [15367]: CreateDefaultPage() -- 13:09:41.447 FLOG_MAX [15367]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:09:41.447 SQL [15367]: pgsql_query() -- 13:09:41.447 SQL [15367]: About to run query: -- 13:09:41.447 SQL [15367]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 13:09:41.447 SQL [15367]: Found rows: 1 -- 13:09:41.447 FLOG_MAX [15367]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 13:09:41.447 SQL [15367]: pgsql_query() -- 13:09:41.447 SQL [15367]: About to run query: -- 13:09:41.447 SQL [15367]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 13:09:41.448 SQL [15367]: Found rows: 1 -- 13:09:41.448 INFO [15367]: /CreateDefaultPage() -- 13:09:41.448 INFO [15367]: /LoginCoreGradeAccount() -- 13:09:41.448 INFO [15367]: RET: added=2020-02-05 09:42:12.816064 -- 13:09:41.448 INFO [15367]: RET: email=tokslaw@chiefsoft.com -- 13:09:41.448 INFO [15367]: RET: firstname=Tokunbo -- 13:09:41.448 INFO [15367]: RET: folder=5D06B187B1E2285A63AD1D0ECB670D98 -- 13:09:41.448 INFO [15367]: RET: id=7 -- 13:09:41.448 INFO [15367]: RET: last_login= -- 13:09:41.448 INFO [15367]: RET: lastname=Lawal -- 13:09:41.448 INFO [15367]: RET: loc=192.168.1.13 -- 13:09:41.448 INFO [15367]: RET: member_id=7 -- 13:09:41.448 INFO [15367]: RET: password=25d55ad283aa400af464c76d713c07ad -- 13:09:41.448 INFO [15367]: RET: phone= -- 13:09:41.448 INFO [15367]: RET: pid= -- 13:09:41.448 INFO [15367]: RET: result=YES I GET TO BACK END -- 13:09:41.448 INFO [15367]: RET: sessionid=33A14514A006DBBD56082D0E270DC04C -- 13:09:41.448 INFO [15367]: RET: status=1 -- 13:09:41.448 INFO [15367]: RET: stauts=OK -- 13:09:41.448 INFO [15367]: RET: username=tokslaw@chiefsoft.com -- 13:09:41.448 INFO [15367]: RET: verified= -- 13:09:41.449 INFO [15367]: COREGRADE is stopping... -- 13:09:41.449 DEBUG [15367]: Closing database connection -- 13:09:41.449 SQL [15367]: pgsql_close() -- 13:09:41.402 DEBUG [15367]: Database connection successful -- 13:09:41.402 INFO [15367]: _SERVER found -- 13:09:41.402 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 13:09:41.402 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 13:09:41.402 INFO [15367]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.139226156.1587315123 -- 13:09:41.402 INFO [15367]: QUERY_STRING = /auth -- 13:09:41.402 INFO [15367]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:09:41.449 INFO [15367]: COREGRADE is stopping... -- 13:09:41.450 DEBUG [15367]: Closing database connection -- 13:09:41.450 SQL [15367]: pgsql_close() -- 13:09:41.464 INFO [15367]: COREGRADE is starting... -- 13:09:41.464 INFO [15367]: Version from config: 1.0 -- 13:09:41.464 DEBUG [15367]: Connecting to database... -- 13:09:41.464 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:41.464 SQL [15367]: pgsql_db_connect() -- 13:09:41.470 DEBUG [15367]: Database connection successful -- 13:09:41.470 INFO [15367]: _SERVER found -- 13:09:41.470 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 13:09:41.470 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 13:09:41.470 INFO [15367]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.139226156.1587315123; ci_session=u7g9au54r439m3jtm9f00ll1tf54vvhi -- 13:09:41.470 INFO [15367]: QUERY_STRING = /member/index -- 13:09:41.470 INFO [15367]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:09:41.511 INFO [15367]: COREGRADE is stopping... -- 13:09:41.511 DEBUG [15367]: Closing database connection -- 13:09:41.511 SQL [15367]: pgsql_close() -- 13:09:41.583 INFO [15367]: COREGRADE is starting... -- 13:09:41.583 INFO [15367]: Version from config: 1.0 -- 13:09:41.583 DEBUG [15367]: Connecting to database... -- 13:09:41.583 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:41.583 SQL [15367]: pgsql_db_connect() -- 13:09:41.587 DEBUG [15367]: Database connection successful -- 13:09:41.587 INFO [15367]: _SERVER found -- 13:09:41.587 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 13:09:41.587 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 13:09:41.587 INFO [15367]: QUERY_STRING = -- 13:09:41.587 INFO [15367]: HTTP_X_FORWARDED_FOR = 192.236.192.6 -- 13:09:41.618 INFO [15367]: COREGRADE is stopping... -- 13:09:41.618 DEBUG [15367]: Closing database connection -- 13:09:41.618 SQL [15367]: pgsql_close() -- 13:09:41.936 INFO [15367]: COREGRADE is starting... -- 13:09:41.937 INFO [15367]: Version from config: 1.0 -- 13:09:41.937 DEBUG [15367]: Connecting to database... -- 13:09:41.937 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:41.937 SQL [15367]: pgsql_db_connect() -- 13:09:41.941 DEBUG [15367]: Database connection successful -- 13:09:41.941 INFO [15367]: _SERVER found -- 13:09:41.941 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 13:09:41.941 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 13:09:41.941 INFO [15367]: HTTP_COOKIE = _ga=GA1.2.144139114.1586624845; _gid=GA1.2.139226156.1587315123; ci_session=u7g9au54r439m3jtm9f00ll1tf54vvhi -- 13:09:41.941 INFO [15367]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 13:09:41.941 INFO [15367]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:09:41.952 INFO [15367]: COREGRADE is stopping... -- 13:09:41.952 DEBUG [15367]: Closing database connection -- 13:09:41.952 SQL [15367]: pgsql_close() -- 13:09:54.056 INFO [15369]: COREGRADE is starting... -- 13:09:54.056 INFO [15369]: Version from config: 1.0 -- 13:09:54.056 DEBUG [15369]: Connecting to database... -- 13:09:54.056 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:54.056 SQL [15369]: pgsql_db_connect() -- 13:09:54.060 DEBUG [15369]: Database connection successful -- 13:09:54.060 INFO [15369]: _SERVER found -- 13:09:54.060 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 13:09:54.060 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 13:09:54.060 INFO [15369]: QUERY_STRING = -- 13:09:54.060 INFO [15369]: HTTP_X_FORWARDED_FOR = 142.11.213.254 -- 13:09:54.091 INFO [15369]: COREGRADE is stopping... -- 13:09:54.091 DEBUG [15369]: Closing database connection -- 13:09:54.091 SQL [15369]: pgsql_close() -- 13:09:55.432 INFO [15369]: COREGRADE is starting... -- 13:09:55.432 INFO [15369]: Version from config: 1.0 -- 13:09:55.432 DEBUG [15369]: Connecting to database... -- 13:09:55.432 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:55.432 SQL [15369]: pgsql_db_connect() -- 13:09:55.436 DEBUG [15369]: Database connection successful -- 13:09:55.436 INFO [15369]: _SERVER found -- 13:09:55.436 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 13:09:55.436 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 13:09:55.436 INFO [15369]: QUERY_STRING = -- 13:09:55.436 INFO [15369]: HTTP_X_FORWARDED_FOR = 192.236.192.6 -- 13:09:55.467 INFO [15369]: COREGRADE is stopping... -- 13:09:55.467 DEBUG [15369]: Closing database connection -- 13:09:55.467 SQL [15369]: pgsql_close() -- 13:10:44.681 INFO [15434]: COREGRADE is starting... -- 13:10:44.682 INFO [15434]: Version from config: 1.0 -- 13:10:44.682 DEBUG [15434]: Connecting to database... -- 13:10:44.682 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:10:44.682 SQL [15434]: pgsql_db_connect() -- 13:10:44.686 DEBUG [15434]: Database connection successful -- 13:10:44.686 INFO [15434]: _SERVER found -- 13:10:44.686 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 13:10:44.686 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 13:10:44.686 INFO [15434]: QUERY_STRING = -- 13:10:44.686 INFO [15434]: HTTP_X_FORWARDED_FOR = 192.236.192.119 -- 13:10:44.718 INFO [15434]: COREGRADE is stopping... -- 13:10:44.718 DEBUG [15434]: Closing database connection -- 13:10:44.718 SQL [15434]: pgsql_close() -- 13:11:53.480 INFO [15366]: COREGRADE is starting... -- 13:11:53.480 INFO [15366]: Version from config: 1.0 -- 13:11:53.480 DEBUG [15366]: Connecting to database... -- 13:11:53.480 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:11:53.480 SQL [15366]: pgsql_db_connect() -- 13:11:53.484 DEBUG [15366]: Database connection successful -- 13:11:53.484 INFO [15366]: _SERVER found -- 13:11:53.484 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 13:11:53.484 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 13:11:53.484 INFO [15366]: QUERY_STRING = -- 13:11:53.484 INFO [15366]: HTTP_X_FORWARDED_FOR = 104.168.194.148 -- 13:11:53.517 INFO [15366]: COREGRADE is stopping... -- 13:11:53.517 DEBUG [15366]: Closing database connection -- 13:11:53.517 SQL [15366]: pgsql_close() -- 13:11:53.539 INFO [15370]: COREGRADE is starting... -- 13:11:53.539 INFO [15370]: Version from config: 1.0 -- 13:11:53.540 DEBUG [15370]: Connecting to database... -- 13:11:53.540 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:11:53.540 SQL [15370]: pgsql_db_connect() -- 13:11:53.544 DEBUG [15370]: Database connection successful -- 13:11:53.544 INFO [15370]: _SERVER found -- 13:11:53.544 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 13:11:53.544 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 13:11:53.544 INFO [15370]: QUERY_STRING = -- 13:11:53.544 INFO [15370]: HTTP_X_FORWARDED_FOR = 192.119.73.107 -- 13:11:53.576 INFO [15370]: COREGRADE is stopping... -- 13:11:53.576 DEBUG [15370]: Closing database connection -- 13:11:53.576 SQL [15370]: pgsql_close() -- 13:12:50.382 INFO [15371]: COREGRADE is starting... -- 13:12:50.383 INFO [15371]: Version from config: 1.0 -- 13:12:50.383 DEBUG [15371]: Connecting to database... -- 13:12:50.383 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:12:50.383 SQL [15371]: pgsql_db_connect() -- 13:12:50.387 DEBUG [15371]: Database connection successful -- 13:12:50.387 INFO [15371]: _SERVER found -- 13:12:50.387 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 13:12:50.387 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 13:12:50.387 INFO [15371]: QUERY_STRING = -- 13:12:50.387 INFO [15371]: HTTP_X_FORWARDED_FOR = 142.11.211.250 -- 13:12:50.419 INFO [15371]: COREGRADE is stopping... -- 13:12:50.419 DEBUG [15371]: Closing database connection -- 13:12:50.419 SQL [15371]: pgsql_close() -- 13:12:53.887 INFO [15429]: COREGRADE is starting... -- 13:12:53.888 INFO [15429]: Version from config: 1.0 -- 13:12:53.888 DEBUG [15429]: Connecting to database... -- 13:12:53.888 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:12:53.888 SQL [15429]: pgsql_db_connect() -- 13:12:53.892 DEBUG [15429]: Database connection successful -- 13:12:53.892 INFO [15429]: _SERVER found -- 13:12:53.892 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 13:12:53.892 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 13:12:53.892 INFO [15429]: QUERY_STRING = -- 13:12:53.892 INFO [15429]: HTTP_X_FORWARDED_FOR = 23.254.164.181 -- 13:12:53.923 INFO [15429]: COREGRADE is stopping... -- 13:12:53.923 DEBUG [15429]: Closing database connection -- 13:12:53.923 SQL [15429]: pgsql_close() -- 13:13:30.167 INFO [15433]: COREGRADE is starting... -- 13:13:30.168 INFO [15433]: Version from config: 1.0 -- 13:13:30.168 DEBUG [15433]: Connecting to database... -- 13:13:30.168 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:13:30.168 SQL [15433]: pgsql_db_connect() -- 13:13:30.172 DEBUG [15433]: Database connection successful -- 13:13:30.172 INFO [15433]: _SERVER found -- 13:13:30.172 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 13:13:30.172 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 13:13:30.172 INFO [15433]: QUERY_STRING = -- 13:13:30.172 INFO [15433]: HTTP_X_FORWARDED_FOR = 23.254.164.181 -- 13:13:30.204 INFO [15433]: COREGRADE is stopping... -- 13:13:30.204 DEBUG [15433]: Closing database connection -- 13:13:30.204 SQL [15433]: pgsql_close() -- 13:13:44.186 INFO [15367]: COREGRADE is starting... -- 13:13:44.186 INFO [15367]: Version from config: 1.0 -- 13:13:44.186 DEBUG [15367]: Connecting to database... -- 13:13:44.186 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:13:44.186 SQL [15367]: pgsql_db_connect() -- 13:13:44.190 DEBUG [15367]: Database connection successful -- 13:13:44.190 INFO [15367]: _SERVER found -- 13:13:44.190 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 13:13:44.190 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 13:13:44.190 INFO [15367]: QUERY_STRING = -- 13:13:44.190 INFO [15367]: HTTP_X_FORWARDED_FOR = 104.168.148.236 -- 13:13:44.223 INFO [15367]: COREGRADE is stopping... -- 13:13:44.223 DEBUG [15367]: Closing database connection -- 13:13:44.223 SQL [15367]: pgsql_close() -- 13:13:52.588 INFO [15369]: COREGRADE is starting... -- 13:13:52.588 INFO [15369]: Version from config: 1.0 -- 13:13:52.588 DEBUG [15369]: Connecting to database... -- 13:13:52.588 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:13:52.588 SQL [15369]: pgsql_db_connect() -- 13:13:52.592 DEBUG [15369]: Database connection successful -- 13:13:52.592 INFO [15369]: _SERVER found -- 13:13:52.592 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 13:13:52.592 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 13:13:52.592 INFO [15369]: QUERY_STRING = -- 13:13:52.592 INFO [15369]: HTTP_X_FORWARDED_FOR = 192.236.192.119 -- 13:13:52.624 INFO [15369]: COREGRADE is stopping... -- 13:13:52.624 DEBUG [15369]: Closing database connection -- 13:13:52.624 SQL [15369]: pgsql_close() -- 13:13:58.586 INFO [15434]: COREGRADE is starting... -- 13:13:58.586 INFO [15434]: Version from config: 1.0 -- 13:13:58.586 DEBUG [15434]: Connecting to database... -- 13:13:58.586 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:13:58.586 SQL [15434]: pgsql_db_connect() -- 13:13:58.590 DEBUG [15434]: Database connection successful -- 13:13:58.590 INFO [15434]: _SERVER found -- 13:13:58.590 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 13:13:58.590 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 13:13:58.590 INFO [15434]: QUERY_STRING = -- 13:13:58.590 INFO [15434]: HTTP_X_FORWARDED_FOR = 142.11.227.204 -- 13:13:58.622 INFO [15434]: COREGRADE is stopping... -- 13:13:58.622 DEBUG [15434]: Closing database connection -- 13:13:58.622 SQL [15434]: pgsql_close() -- 13:13:59.567 INFO [15366]: COREGRADE is starting... -- 13:13:59.567 INFO [15366]: Version from config: 1.0 -- 13:13:59.567 DEBUG [15366]: Connecting to database... -- 13:13:59.567 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:13:59.567 SQL [15366]: pgsql_db_connect() -- 13:13:59.571 DEBUG [15366]: Database connection successful -- 13:13:59.571 INFO [15366]: _SERVER found -- 13:13:59.571 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 13:13:59.571 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 13:13:59.571 INFO [15366]: QUERY_STRING = -- 13:13:59.571 INFO [15366]: HTTP_X_FORWARDED_FOR = 23.254.164.48 -- 13:13:59.603 INFO [15366]: COREGRADE is stopping... -- 13:13:59.603 DEBUG [15366]: Closing database connection -- 13:13:59.603 SQL [15366]: pgsql_close() -- 13:14:58.424 INFO [15370]: COREGRADE is starting... -- 13:14:58.424 INFO [15370]: Version from config: 1.0 -- 13:14:58.424 DEBUG [15370]: Connecting to database... -- 13:14:58.424 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:14:58.424 SQL [15370]: pgsql_db_connect() -- 13:14:58.428 DEBUG [15370]: Database connection successful -- 13:14:58.428 INFO [15370]: _SERVER found -- 13:14:58.428 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 13:14:58.428 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 13:14:58.428 INFO [15370]: QUERY_STRING = -- 13:14:58.428 INFO [15370]: HTTP_X_FORWARDED_FOR = 192.236.192.3 -- 13:14:58.461 INFO [15370]: COREGRADE is stopping... -- 13:14:58.461 DEBUG [15370]: Closing database connection -- 13:14:58.461 SQL [15370]: pgsql_close() -- 13:14:58.634 INFO [15370]: COREGRADE is starting... -- 13:14:58.635 INFO [15370]: Version from config: 1.0 -- 13:14:58.635 DEBUG [15370]: Connecting to database... -- 13:14:58.635 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:14:58.635 SQL [15370]: pgsql_db_connect() -- 13:14:58.639 DEBUG [15370]: Database connection successful -- 13:14:58.639 INFO [15370]: _SERVER found -- 13:14:58.639 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 13:14:58.639 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 13:14:58.639 INFO [15370]: QUERY_STRING = -- 13:14:58.639 INFO [15370]: HTTP_X_FORWARDED_FOR = 192.236.192.6 -- 13:14:58.670 INFO [15370]: COREGRADE is stopping... -- 13:14:58.670 DEBUG [15370]: Closing database connection -- 13:14:58.670 SQL [15370]: pgsql_close() -- 13:15:20.089 INFO [15371]: COREGRADE is starting... -- 13:15:20.090 INFO [15371]: Version from config: 1.0 -- 13:15:20.090 DEBUG [15371]: Connecting to database... -- 13:15:20.090 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:15:20.090 SQL [15371]: pgsql_db_connect() -- 13:15:20.094 DEBUG [15371]: Database connection successful -- 13:15:20.094 INFO [15371]: _SERVER found -- 13:15:20.094 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 13:15:20.094 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 13:15:20.094 INFO [15371]: QUERY_STRING = -- 13:15:20.094 INFO [15371]: HTTP_X_FORWARDED_FOR = 192.236.192.119 -- 13:15:20.126 INFO [15371]: COREGRADE is stopping... -- 13:15:20.126 DEBUG [15371]: Closing database connection -- 13:15:20.126 SQL [15371]: pgsql_close() -- 13:16:02.626 INFO [15429]: COREGRADE is starting... -- 13:16:02.626 INFO [15429]: Version from config: 1.0 -- 13:16:02.626 DEBUG [15429]: Connecting to database... -- 13:16:02.627 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:16:02.627 SQL [15429]: pgsql_db_connect() -- 13:16:02.631 DEBUG [15429]: Database connection successful -- 13:16:02.631 INFO [15429]: _SERVER found -- 13:16:02.631 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 13:16:02.631 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 13:16:02.631 INFO [15429]: QUERY_STRING = -- 13:16:02.631 INFO [15429]: HTTP_X_FORWARDED_FOR = 23.254.164.48 -- 13:16:02.663 INFO [15429]: COREGRADE is stopping... -- 13:16:02.663 DEBUG [15429]: Closing database connection -- 13:16:02.663 SQL [15429]: pgsql_close() -- 13:16:11.151 INFO [15433]: COREGRADE is starting... -- 13:16:11.151 INFO [15433]: Version from config: 1.0 -- 13:16:11.151 DEBUG [15433]: Connecting to database... -- 13:16:11.151 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:16:11.151 SQL [15433]: pgsql_db_connect() -- 13:16:11.155 DEBUG [15433]: Database connection successful -- 13:16:11.155 INFO [15433]: _SERVER found -- 13:16:11.155 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 13:16:11.155 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 13:16:11.155 INFO [15433]: QUERY_STRING = -- 13:16:11.155 INFO [15433]: HTTP_X_FORWARDED_FOR = 23.254.164.181 -- 13:16:11.187 INFO [15433]: COREGRADE is stopping... -- 13:16:11.187 DEBUG [15433]: Closing database connection -- 13:16:11.187 SQL [15433]: pgsql_close() -- 13:16:49.693 INFO [15367]: COREGRADE is starting... -- 13:16:49.693 INFO [15367]: Version from config: 1.0 -- 13:16:49.693 DEBUG [15367]: Connecting to database... -- 13:16:49.693 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:16:49.693 SQL [15367]: pgsql_db_connect() -- 13:16:49.697 DEBUG [15367]: Database connection successful -- 13:16:49.697 INFO [15367]: _SERVER found -- 13:16:49.697 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 13:16:49.697 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 13:16:49.697 INFO [15367]: QUERY_STRING = -- 13:16:49.697 INFO [15367]: HTTP_X_FORWARDED_FOR = 104.168.148.236 -- 13:16:49.729 INFO [15367]: COREGRADE is stopping... -- 13:16:49.729 DEBUG [15367]: Closing database connection -- 13:16:49.729 SQL [15367]: pgsql_close() -- 13:16:57.184 INFO [15369]: COREGRADE is starting... -- 13:16:57.185 INFO [15369]: Version from config: 1.0 -- 13:16:57.185 DEBUG [15369]: Connecting to database... -- 13:16:57.185 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:16:57.185 SQL [15369]: pgsql_db_connect() -- 13:16:57.189 DEBUG [15369]: Database connection successful -- 13:16:57.189 INFO [15369]: _SERVER found -- 13:16:57.189 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 13:16:57.189 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 13:16:57.189 INFO [15369]: QUERY_STRING = -- 13:16:57.189 INFO [15369]: HTTP_X_FORWARDED_FOR = 192.236.162.232 -- 13:16:57.221 INFO [15369]: COREGRADE is stopping... -- 13:16:57.221 DEBUG [15369]: Closing database connection -- 13:16:57.221 SQL [15369]: pgsql_close() -- 13:16:57.605 INFO [15369]: COREGRADE is starting... -- 13:16:57.606 INFO [15369]: Version from config: 1.0 -- 13:16:57.606 DEBUG [15369]: Connecting to database... -- 13:16:57.606 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:16:57.606 SQL [15369]: pgsql_db_connect() -- 13:16:57.610 DEBUG [15369]: Database connection successful -- 13:16:57.610 INFO [15369]: _SERVER found -- 13:16:57.610 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 13:16:57.610 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 13:16:57.610 INFO [15369]: QUERY_STRING = -- 13:16:57.610 INFO [15369]: HTTP_X_FORWARDED_FOR = 192.119.73.108 -- 13:16:57.641 INFO [15369]: COREGRADE is stopping... -- 13:16:57.641 DEBUG [15369]: Closing database connection -- 13:16:57.641 SQL [15369]: pgsql_close() -- 13:17:06.154 INFO [15434]: COREGRADE is starting... -- 13:17:06.154 INFO [15434]: Version from config: 1.0 -- 13:17:06.154 DEBUG [15434]: Connecting to database... -- 13:17:06.154 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:17:06.154 SQL [15434]: pgsql_db_connect() -- 13:17:06.158 DEBUG [15434]: Database connection successful -- 13:17:06.158 INFO [15434]: _SERVER found -- 13:17:06.158 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 13:17:06.158 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 13:17:06.158 INFO [15434]: QUERY_STRING = -- 13:17:06.158 INFO [15434]: HTTP_X_FORWARDED_FOR = 192.236.192.119 -- 13:17:06.190 INFO [15434]: COREGRADE is stopping... -- 13:17:06.190 DEBUG [15434]: Closing database connection -- 13:17:06.190 SQL [15434]: pgsql_close() -- 13:17:52.276 INFO [15366]: COREGRADE is starting... -- 13:17:52.276 INFO [15366]: Version from config: 1.0 -- 13:17:52.277 DEBUG [15366]: Connecting to database... -- 13:17:52.277 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:17:52.277 SQL [15366]: pgsql_db_connect() -- 13:17:52.281 DEBUG [15366]: Database connection successful -- 13:17:52.281 INFO [15366]: _SERVER found -- 13:17:52.281 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 13:17:52.281 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 13:17:52.281 INFO [15366]: QUERY_STRING = -- 13:17:52.281 INFO [15366]: HTTP_X_FORWARDED_FOR = 192.119.73.108 -- 13:17:52.313 INFO [15366]: COREGRADE is stopping... -- 13:17:52.313 DEBUG [15366]: Closing database connection -- 13:17:52.313 SQL [15366]: pgsql_close() -- 13:17:52.902 INFO [15366]: COREGRADE is starting... -- 13:17:52.903 INFO [15366]: Version from config: 1.0 -- 13:17:52.903 DEBUG [15366]: Connecting to database... -- 13:17:52.903 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:17:52.903 SQL [15366]: pgsql_db_connect() -- 13:17:52.907 DEBUG [15366]: Database connection successful -- 13:17:52.907 INFO [15366]: _SERVER found -- 13:17:52.907 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 13:17:52.907 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 13:17:52.907 INFO [15366]: QUERY_STRING = -- 13:17:52.907 INFO [15366]: HTTP_X_FORWARDED_FOR = 192.236.162.232 -- 13:17:52.938 INFO [15366]: COREGRADE is stopping... -- 13:17:52.938 DEBUG [15366]: Closing database connection -- 13:17:52.938 SQL [15366]: pgsql_close() -- 13:17:54.264 INFO [15366]: COREGRADE is starting... -- 13:17:54.264 INFO [15366]: Version from config: 1.0 -- 13:17:54.264 DEBUG [15366]: Connecting to database... -- 13:17:54.264 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:17:54.264 SQL [15366]: pgsql_db_connect() -- 13:17:54.268 DEBUG [15366]: Database connection successful -- 13:17:54.268 INFO [15366]: _SERVER found -- 13:17:54.268 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 13:17:54.268 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 13:17:54.268 INFO [15366]: QUERY_STRING = -- 13:17:54.268 INFO [15366]: HTTP_X_FORWARDED_FOR = 142.11.211.250 -- 13:17:54.299 INFO [15366]: COREGRADE is stopping... -- 13:17:54.299 DEBUG [15366]: Closing database connection -- 13:17:54.299 SQL [15366]: pgsql_close() -- 13:17:54.338 INFO [15370]: COREGRADE is starting... -- 13:17:54.338 INFO [15370]: Version from config: 1.0 -- 13:17:54.338 DEBUG [15370]: Connecting to database... -- 13:17:54.338 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:17:54.338 SQL [15370]: pgsql_db_connect() -- 13:17:54.342 DEBUG [15370]: Database connection successful -- 13:17:54.342 INFO [15370]: _SERVER found -- 13:17:54.342 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 13:17:54.342 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 13:17:54.342 INFO [15370]: QUERY_STRING = -- 13:17:54.342 INFO [15370]: HTTP_X_FORWARDED_FOR = 23.254.164.181 -- 13:17:54.374 INFO [15370]: COREGRADE is stopping... -- 13:17:54.374 DEBUG [15370]: Closing database connection -- 13:17:54.374 SQL [15370]: pgsql_close() -- 13:18:04.589 INFO [15371]: COREGRADE is starting... -- 13:18:04.590 INFO [15371]: Version from config: 1.0 -- 13:18:04.590 DEBUG [15371]: Connecting to database... -- 13:18:04.590 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:18:04.590 SQL [15371]: pgsql_db_connect() -- 13:18:04.594 DEBUG [15371]: Database connection successful -- 13:18:04.594 INFO [15371]: _SERVER found -- 13:18:04.594 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 13:18:04.594 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 13:18:04.594 INFO [15371]: QUERY_STRING = -- 13:18:04.594 INFO [15371]: HTTP_X_FORWARDED_FOR = 23.254.164.181 -- 13:18:04.626 INFO [15371]: COREGRADE is stopping... -- 13:18:04.626 DEBUG [15371]: Closing database connection -- 13:18:04.626 SQL [15371]: pgsql_close() -- 13:18:11.442 INFO [15429]: COREGRADE is starting... -- 13:18:11.442 INFO [15429]: Version from config: 1.0 -- 13:18:11.442 DEBUG [15429]: Connecting to database... -- 13:18:11.442 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:18:11.442 SQL [15429]: pgsql_db_connect() -- 13:18:11.446 DEBUG [15429]: Database connection successful -- 13:18:11.446 INFO [15429]: _SERVER found -- 13:18:11.446 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 13:18:11.446 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 13:18:11.446 INFO [15429]: QUERY_STRING = -- 13:18:11.446 INFO [15429]: HTTP_X_FORWARDED_FOR = 192.236.162.232 -- 13:18:11.478 INFO [15429]: COREGRADE is stopping... -- 13:18:11.478 DEBUG [15429]: Closing database connection -- 13:18:11.478 SQL [15429]: pgsql_close() -- 13:19:52.340 INFO [15433]: COREGRADE is starting... -- 13:19:52.341 INFO [15433]: Version from config: 1.0 -- 13:19:52.341 DEBUG [15433]: Connecting to database... -- 13:19:52.341 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:19:52.341 SQL [15433]: pgsql_db_connect() -- 13:19:52.345 DEBUG [15433]: Database connection successful -- 13:19:52.345 INFO [15433]: _SERVER found -- 13:19:52.345 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 13:19:52.345 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 13:19:52.345 INFO [15433]: QUERY_STRING = -- 13:19:52.345 INFO [15433]: HTTP_X_FORWARDED_FOR = 192.236.192.119 -- 13:19:52.379 INFO [15433]: COREGRADE is stopping... -- 13:19:52.379 DEBUG [15433]: Closing database connection -- 13:19:52.379 SQL [15433]: pgsql_close() -- 13:19:52.496 INFO [15367]: COREGRADE is starting... -- 13:19:52.497 INFO [15367]: Version from config: 1.0 -- 13:19:52.497 DEBUG [15367]: Connecting to database... -- 13:19:52.497 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:19:52.497 SQL [15367]: pgsql_db_connect() -- 13:19:52.501 DEBUG [15367]: Database connection successful -- 13:19:52.501 INFO [15367]: _SERVER found -- 13:19:52.501 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 13:19:52.501 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 13:19:52.501 INFO [15367]: QUERY_STRING = -- 13:19:52.501 INFO [15367]: HTTP_X_FORWARDED_FOR = 192.236.163.119 -- 13:19:52.533 INFO [15367]: COREGRADE is stopping... -- 13:19:52.533 DEBUG [15367]: Closing database connection -- 13:19:52.533 SQL [15367]: pgsql_close() -- 13:20:13.425 INFO [15369]: COREGRADE is starting... -- 13:20:13.425 INFO [15369]: Version from config: 1.0 -- 13:20:13.425 DEBUG [15369]: Connecting to database... -- 13:20:13.425 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:20:13.425 SQL [15369]: pgsql_db_connect() -- 13:20:13.429 DEBUG [15369]: Database connection successful -- 13:20:13.429 INFO [15369]: _SERVER found -- 13:20:13.429 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 13:20:13.429 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 13:20:13.429 INFO [15369]: QUERY_STRING = -- 13:20:13.429 INFO [15369]: HTTP_X_FORWARDED_FOR = 192.236.163.117 -- 13:20:13.461 INFO [15369]: COREGRADE is stopping... -- 13:20:13.461 DEBUG [15369]: Closing database connection -- 13:20:13.461 SQL [15369]: pgsql_close() -- 13:20:14.697 INFO [15434]: COREGRADE is starting... -- 13:20:14.698 INFO [15434]: Version from config: 1.0 -- 13:20:14.698 DEBUG [15434]: Connecting to database... -- 13:20:14.698 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:20:14.698 SQL [15434]: pgsql_db_connect() -- 13:20:14.702 DEBUG [15434]: Database connection successful -- 13:20:14.702 INFO [15434]: _SERVER found -- 13:20:14.702 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 13:20:14.702 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 13:20:14.702 INFO [15434]: QUERY_STRING = -- 13:20:14.702 INFO [15434]: HTTP_X_FORWARDED_FOR = 104.168.166.234 -- 13:20:14.733 INFO [15434]: COREGRADE is stopping... -- 13:20:14.733 DEBUG [15434]: Closing database connection -- 13:20:14.733 SQL [15434]: pgsql_close() -- 13:21:02.823 INFO [15366]: COREGRADE is starting... -- 13:21:02.823 INFO [15366]: Version from config: 1.0 -- 13:21:02.823 DEBUG [15366]: Connecting to database... -- 13:21:02.823 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:21:02.823 SQL [15366]: pgsql_db_connect() -- 13:21:02.828 DEBUG [15366]: Database connection successful -- 13:21:02.828 INFO [15366]: _SERVER found -- 13:21:02.828 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 13:21:02.828 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 13:21:02.828 INFO [15366]: QUERY_STRING = -- 13:21:02.828 INFO [15366]: HTTP_X_FORWARDED_FOR = 142.11.211.250 -- 13:21:02.861 INFO [15366]: COREGRADE is stopping... -- 13:21:02.861 DEBUG [15366]: Closing database connection -- 13:21:02.861 SQL [15366]: pgsql_close() -- 13:21:02.952 INFO [15366]: COREGRADE is starting... -- 13:21:02.952 INFO [15366]: Version from config: 1.0 -- 13:21:02.952 DEBUG [15366]: Connecting to database... -- 13:21:02.952 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:21:02.952 SQL [15366]: pgsql_db_connect() -- 13:21:02.957 DEBUG [15366]: Database connection successful -- 13:21:02.957 INFO [15366]: _SERVER found -- 13:21:02.957 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 13:21:02.957 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 13:21:02.957 INFO [15366]: QUERY_STRING = -- 13:21:02.957 INFO [15366]: HTTP_X_FORWARDED_FOR = 23.254.164.181 -- 13:21:02.989 INFO [15366]: COREGRADE is stopping... -- 13:21:02.989 DEBUG [15366]: Closing database connection -- 13:21:02.989 SQL [15366]: pgsql_close() -- 13:21:33.197 INFO [15370]: COREGRADE is starting... -- 13:21:33.197 INFO [15370]: Version from config: 1.0 -- 13:21:33.197 DEBUG [15370]: Connecting to database... -- 13:21:33.197 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:21:33.197 SQL [15370]: pgsql_db_connect() -- 13:21:33.202 DEBUG [15370]: Database connection successful -- 13:21:33.202 INFO [15370]: _SERVER found -- 13:21:33.202 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 13:21:33.202 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 13:21:33.202 INFO [15370]: QUERY_STRING = -- 13:21:33.202 INFO [15370]: HTTP_X_FORWARDED_FOR = 192.236.192.3 -- 13:21:33.236 INFO [15370]: COREGRADE is stopping... -- 13:21:33.236 DEBUG [15370]: Closing database connection -- 13:21:33.236 SQL [15370]: pgsql_close() -- 13:21:35.595 INFO [15370]: COREGRADE is starting... -- 13:21:35.595 INFO [15370]: Version from config: 1.0 -- 13:21:35.595 DEBUG [15370]: Connecting to database... -- 13:21:35.595 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:21:35.595 SQL [15370]: pgsql_db_connect() -- 13:21:35.600 DEBUG [15370]: Database connection successful -- 13:21:35.600 INFO [15370]: _SERVER found -- 13:21:35.600 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 13:21:35.600 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 13:21:35.600 INFO [15370]: QUERY_STRING = -- 13:21:35.600 INFO [15370]: HTTP_X_FORWARDED_FOR = 192.236.163.119 -- 13:21:35.632 INFO [15370]: COREGRADE is stopping... -- 13:21:35.632 DEBUG [15370]: Closing database connection -- 13:21:35.632 SQL [15370]: pgsql_close() -- 13:22:14.603 INFO [15371]: COREGRADE is starting... -- 13:22:14.604 INFO [15371]: Version from config: 1.0 -- 13:22:14.604 DEBUG [15371]: Connecting to database... -- 13:22:14.604 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:22:14.604 SQL [15371]: pgsql_db_connect() -- 13:22:14.608 DEBUG [15371]: Database connection successful -- 13:22:14.608 INFO [15371]: _SERVER found -- 13:22:14.608 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 13:22:14.608 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 13:22:14.608 INFO [15371]: QUERY_STRING = -- 13:22:14.608 INFO [15371]: HTTP_X_FORWARDED_FOR = 142.11.211.250 -- 13:22:14.642 INFO [15371]: COREGRADE is stopping... -- 13:22:14.642 DEBUG [15371]: Closing database connection -- 13:22:14.642 SQL [15371]: pgsql_close() -- 13:22:21.365 INFO [15429]: COREGRADE is starting... -- 13:22:21.365 INFO [15429]: Version from config: 1.0 -- 13:22:21.365 DEBUG [15429]: Connecting to database... -- 13:22:21.365 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:22:21.365 SQL [15429]: pgsql_db_connect() -- 13:22:21.369 DEBUG [15429]: Database connection successful -- 13:22:21.369 INFO [15429]: _SERVER found -- 13:22:21.369 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 13:22:21.369 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 13:22:21.369 INFO [15429]: QUERY_STRING = -- 13:22:21.369 INFO [15429]: HTTP_X_FORWARDED_FOR = 23.254.164.181 -- 13:22:21.402 INFO [15429]: COREGRADE is stopping... -- 13:22:21.402 DEBUG [15429]: Closing database connection -- 13:22:21.402 SQL [15429]: pgsql_close() -- 13:22:30.177 INFO [15433]: COREGRADE is starting... -- 13:22:30.177 INFO [15433]: Version from config: 1.0 -- 13:22:30.177 DEBUG [15433]: Connecting to database... -- 13:22:30.177 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:22:30.177 SQL [15433]: pgsql_db_connect() -- 13:22:30.182 DEBUG [15433]: Database connection successful -- 13:22:30.182 INFO [15433]: _SERVER found -- 13:22:30.182 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 13:22:30.182 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 13:22:30.182 INFO [15433]: QUERY_STRING = -- 13:22:30.182 INFO [15433]: HTTP_X_FORWARDED_FOR = 192.236.162.232 -- 13:22:30.215 INFO [15433]: COREGRADE is stopping... -- 13:22:30.215 DEBUG [15433]: Closing database connection -- 13:22:30.215 SQL [15433]: pgsql_close() -- 13:23:02.097 INFO [15367]: COREGRADE is starting... -- 13:23:02.097 INFO [15367]: Version from config: 1.0 -- 13:23:02.097 DEBUG [15367]: Connecting to database... -- 13:23:02.097 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:23:02.097 SQL [15367]: pgsql_db_connect() -- 13:23:02.102 DEBUG [15367]: Database connection successful -- 13:23:02.102 INFO [15367]: _SERVER found -- 13:23:02.102 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 13:23:02.102 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 13:23:02.102 INFO [15367]: QUERY_STRING = -- 13:23:02.102 INFO [15367]: HTTP_X_FORWARDED_FOR = 192.119.73.107 -- 13:23:02.135 INFO [15367]: COREGRADE is stopping... -- 13:23:02.136 DEBUG [15367]: Closing database connection -- 13:23:02.136 SQL [15367]: pgsql_close() -- 13:23:02.248 INFO [15369]: COREGRADE is starting... -- 13:23:02.249 INFO [15369]: Version from config: 1.0 -- 13:23:02.249 DEBUG [15369]: Connecting to database... -- 13:23:02.249 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:23:02.249 SQL [15369]: pgsql_db_connect() -- 13:23:02.253 DEBUG [15369]: Database connection successful -- 13:23:02.253 INFO [15369]: _SERVER found -- 13:23:02.253 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 13:23:02.253 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 13:23:02.253 INFO [15369]: QUERY_STRING = -- 13:23:02.253 INFO [15369]: HTTP_X_FORWARDED_FOR = 104.168.166.234 -- 13:23:02.286 INFO [15369]: COREGRADE is stopping... -- 13:23:02.286 DEBUG [15369]: Closing database connection -- 13:23:02.286 SQL [15369]: pgsql_close() -- 13:23:16.757 INFO [15434]: COREGRADE is starting... -- 13:23:16.758 INFO [15434]: Version from config: 1.0 -- 13:23:16.758 DEBUG [15434]: Connecting to database... -- 13:23:16.758 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:23:16.758 SQL [15434]: pgsql_db_connect() -- 13:23:16.762 DEBUG [15434]: Database connection successful -- 13:23:16.762 INFO [15434]: _SERVER found -- 13:23:16.762 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 13:23:16.762 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 13:23:16.762 INFO [15434]: QUERY_STRING = -- 13:23:16.762 INFO [15434]: HTTP_X_FORWARDED_FOR = 192.236.192.3 -- 13:23:16.795 INFO [15434]: COREGRADE is stopping... -- 13:23:16.795 DEBUG [15434]: Closing database connection -- 13:23:16.795 SQL [15434]: pgsql_close() -- 13:23:23.474 INFO [15366]: COREGRADE is starting... -- 13:23:23.475 INFO [15366]: Version from config: 1.0 -- 13:23:23.475 DEBUG [15366]: Connecting to database... -- 13:23:23.475 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:23:23.475 SQL [15366]: pgsql_db_connect() -- 13:23:23.479 DEBUG [15366]: Database connection successful -- 13:23:23.479 INFO [15366]: _SERVER found -- 13:23:23.479 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 13:23:23.479 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 13:23:23.479 INFO [15366]: QUERY_STRING = -- 13:23:23.479 INFO [15366]: HTTP_X_FORWARDED_FOR = 192.236.163.119 -- 13:23:23.512 INFO [15366]: COREGRADE is stopping... -- 13:23:23.512 DEBUG [15366]: Closing database connection -- 13:23:23.512 SQL [15366]: pgsql_close() -- 13:24:18.194 INFO [15370]: COREGRADE is starting... -- 13:24:18.194 INFO [15370]: Version from config: 1.0 -- 13:24:18.194 DEBUG [15370]: Connecting to database... -- 13:24:18.194 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:24:18.194 SQL [15370]: pgsql_db_connect() -- 13:24:18.199 DEBUG [15370]: Database connection successful -- 13:24:18.199 INFO [15370]: _SERVER found -- 13:24:18.199 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 13:24:18.199 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 13:24:18.199 INFO [15370]: QUERY_STRING = -- 13:24:18.199 INFO [15370]: HTTP_X_FORWARDED_FOR = 23.254.164.48 -- 13:24:18.232 INFO [15370]: COREGRADE is stopping... -- 13:24:18.232 DEBUG [15370]: Closing database connection -- 13:24:18.232 SQL [15370]: pgsql_close() -- 13:24:21.692 INFO [15371]: COREGRADE is starting... -- 13:24:21.692 INFO [15371]: Version from config: 1.0 -- 13:24:21.692 DEBUG [15371]: Connecting to database... -- 13:24:21.692 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:24:21.692 SQL [15371]: pgsql_db_connect() -- 13:24:21.696 DEBUG [15371]: Database connection successful -- 13:24:21.696 INFO [15371]: _SERVER found -- 13:24:21.696 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 13:24:21.697 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 13:24:21.697 INFO [15371]: QUERY_STRING = -- 13:24:21.697 INFO [15371]: HTTP_X_FORWARDED_FOR = 192.119.73.108 -- 13:24:21.729 INFO [15371]: COREGRADE is stopping... -- 13:24:21.729 DEBUG [15371]: Closing database connection -- 13:24:21.729 SQL [15371]: pgsql_close() -- 13:25:14.933 INFO [15429]: COREGRADE is starting... -- 13:25:14.933 INFO [15429]: Version from config: 1.0 -- 13:25:14.933 DEBUG [15429]: Connecting to database... -- 13:25:14.933 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:25:14.933 SQL [15429]: pgsql_db_connect() -- 13:25:14.937 DEBUG [15429]: Database connection successful -- 13:25:14.937 INFO [15429]: _SERVER found -- 13:25:14.937 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 13:25:14.937 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 13:25:14.937 INFO [15429]: QUERY_STRING = -- 13:25:14.937 INFO [15429]: HTTP_X_FORWARDED_FOR = 142.11.213.254 -- 13:25:14.969 INFO [15429]: COREGRADE is stopping... -- 13:25:14.969 DEBUG [15429]: Closing database connection -- 13:25:14.969 SQL [15429]: pgsql_close() -- 13:25:17.585 INFO [15429]: COREGRADE is starting... -- 13:25:17.585 INFO [15429]: Version from config: 1.0 -- 13:25:17.585 DEBUG [15429]: Connecting to database... -- 13:25:17.585 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:25:17.585 SQL [15429]: pgsql_db_connect() -- 13:25:17.589 DEBUG [15429]: Database connection successful -- 13:25:17.589 INFO [15429]: _SERVER found -- 13:25:17.589 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 13:25:17.589 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 13:25:17.589 INFO [15429]: QUERY_STRING = -- 13:25:17.589 INFO [15429]: HTTP_X_FORWARDED_FOR = 192.236.192.6 -- 13:25:17.620 INFO [15429]: COREGRADE is stopping... -- 13:25:17.620 DEBUG [15429]: Closing database connection -- 13:25:17.620 SQL [15429]: pgsql_close() -- 13:26:00.130 INFO [15433]: COREGRADE is starting... -- 13:26:00.130 INFO [15433]: Version from config: 1.0 -- 13:26:00.130 DEBUG [15433]: Connecting to database... -- 13:26:00.131 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:26:00.131 SQL [15433]: pgsql_db_connect() -- 13:26:00.135 DEBUG [15433]: Database connection successful -- 13:26:00.135 INFO [15433]: _SERVER found -- 13:26:00.135 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 13:26:00.135 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 13:26:00.135 INFO [15433]: QUERY_STRING = -- 13:26:00.135 INFO [15433]: HTTP_X_FORWARDED_FOR = 142.11.211.250 -- 13:26:00.167 INFO [15433]: COREGRADE is stopping... -- 13:26:00.167 DEBUG [15433]: Closing database connection -- 13:26:00.167 SQL [15433]: pgsql_close() -- 13:26:01.434 INFO [15433]: COREGRADE is starting... -- 13:26:01.434 INFO [15433]: Version from config: 1.0 -- 13:26:01.434 DEBUG [15433]: Connecting to database... -- 13:26:01.434 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:26:01.434 SQL [15433]: pgsql_db_connect() -- 13:26:01.438 DEBUG [15433]: Database connection successful -- 13:26:01.438 INFO [15433]: _SERVER found -- 13:26:01.438 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 13:26:01.438 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 13:26:01.438 INFO [15433]: QUERY_STRING = -- 13:26:01.438 INFO [15433]: HTTP_X_FORWARDED_FOR = 23.254.164.181 -- 13:26:01.469 INFO [15433]: COREGRADE is stopping... -- 13:26:01.469 DEBUG [15433]: Closing database connection -- 13:26:01.469 SQL [15433]: pgsql_close() -- 13:26:04.265 INFO [15433]: COREGRADE is starting... -- 13:26:04.265 INFO [15433]: Version from config: 1.0 -- 13:26:04.265 DEBUG [15433]: Connecting to database... -- 13:26:04.265 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:26:04.265 SQL [15433]: pgsql_db_connect() -- 13:26:04.269 DEBUG [15433]: Database connection successful -- 13:26:04.269 INFO [15433]: _SERVER found -- 13:26:04.269 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 13:26:04.269 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 13:26:04.269 INFO [15433]: QUERY_STRING = -- 13:26:04.269 INFO [15433]: HTTP_X_FORWARDED_FOR = 192.119.73.107 -- 13:26:04.300 INFO [15433]: COREGRADE is stopping... -- 13:26:04.300 DEBUG [15433]: Closing database connection -- 13:26:04.300 SQL [15433]: pgsql_close() -- 13:26:13.267 INFO [15367]: COREGRADE is starting... -- 13:26:13.267 INFO [15367]: Version from config: 1.0 -- 13:26:13.267 DEBUG [15367]: Connecting to database... -- 13:26:13.267 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:26:13.267 SQL [15367]: pgsql_db_connect() -- 13:26:13.271 DEBUG [15367]: Database connection successful -- 13:26:13.271 INFO [15367]: _SERVER found -- 13:26:13.271 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 13:26:13.271 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 13:26:13.271 INFO [15367]: QUERY_STRING = -- 13:26:13.271 INFO [15367]: HTTP_X_FORWARDED_FOR = 104.168.166.234 -- 13:26:13.303 INFO [15367]: COREGRADE is stopping... -- 13:26:13.303 DEBUG [15367]: Closing database connection -- 13:26:13.303 SQL [15367]: pgsql_close() -- 13:26:51.646 INFO [15369]: COREGRADE is starting... -- 13:26:51.646 INFO [15369]: Version from config: 1.0 -- 13:26:51.646 DEBUG [15369]: Connecting to database... -- 13:26:51.646 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:26:51.646 SQL [15369]: pgsql_db_connect() -- 13:26:51.650 DEBUG [15369]: Database connection successful -- 13:26:51.650 INFO [15369]: _SERVER found -- 13:26:51.650 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 13:26:51.650 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 13:26:51.650 INFO [15369]: QUERY_STRING = -- 13:26:51.650 INFO [15369]: HTTP_X_FORWARDED_FOR = 142.11.211.250 -- 13:26:51.682 INFO [15369]: COREGRADE is stopping... -- 13:26:51.682 DEBUG [15369]: Closing database connection -- 13:26:51.682 SQL [15369]: pgsql_close() -- 13:26:52.701 INFO [15434]: COREGRADE is starting... -- 13:26:52.701 INFO [15434]: Version from config: 1.0 -- 13:26:52.701 DEBUG [15434]: Connecting to database... -- 13:26:52.701 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:26:52.701 SQL [15434]: pgsql_db_connect() -- 13:26:52.705 DEBUG [15434]: Database connection successful -- 13:26:52.705 INFO [15434]: _SERVER found -- 13:26:52.705 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 13:26:52.705 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 13:26:52.705 INFO [15434]: QUERY_STRING = -- 13:26:52.705 INFO [15434]: HTTP_X_FORWARDED_FOR = 23.254.164.181 -- 13:26:52.737 INFO [15434]: COREGRADE is stopping... -- 13:26:52.737 DEBUG [15434]: Closing database connection -- 13:26:52.737 SQL [15434]: pgsql_close() -- 13:27:06.206 INFO [15366]: COREGRADE is starting... -- 13:27:06.206 INFO [15366]: Version from config: 1.0 -- 13:27:06.206 DEBUG [15366]: Connecting to database... -- 13:27:06.206 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:27:06.206 SQL [15366]: pgsql_db_connect() -- 13:27:06.210 DEBUG [15366]: Database connection successful -- 13:27:06.210 INFO [15366]: _SERVER found -- 13:27:06.210 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 13:27:06.210 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 13:27:06.210 INFO [15366]: QUERY_STRING = -- 13:27:06.210 INFO [15366]: HTTP_X_FORWARDED_FOR = 142.11.211.250 -- 13:27:06.242 INFO [15366]: COREGRADE is stopping... -- 13:27:06.242 DEBUG [15366]: Closing database connection -- 13:27:06.242 SQL [15366]: pgsql_close() -- 13:27:23.336 INFO [15370]: COREGRADE is starting... -- 13:27:23.336 INFO [15370]: Version from config: 1.0 -- 13:27:23.336 DEBUG [15370]: Connecting to database... -- 13:27:23.336 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:27:23.336 SQL [15370]: pgsql_db_connect() -- 13:27:23.340 DEBUG [15370]: Database connection successful -- 13:27:23.340 INFO [15370]: _SERVER found -- 13:27:23.340 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 13:27:23.340 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 13:27:23.340 INFO [15370]: QUERY_STRING = -- 13:27:23.340 INFO [15370]: HTTP_X_FORWARDED_FOR = 23.254.164.181 -- 13:27:23.372 INFO [15370]: COREGRADE is stopping... -- 13:27:23.372 DEBUG [15370]: Closing database connection -- 13:27:23.372 SQL [15370]: pgsql_close() -- 13:27:59.795 INFO [15371]: COREGRADE is starting... -- 13:27:59.795 INFO [15371]: Version from config: 1.0 -- 13:27:59.795 DEBUG [15371]: Connecting to database... -- 13:27:59.795 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:27:59.795 SQL [15371]: pgsql_db_connect() -- 13:27:59.799 DEBUG [15371]: Database connection successful -- 13:27:59.799 INFO [15371]: _SERVER found -- 13:27:59.799 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 13:27:59.799 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 13:27:59.799 INFO [15371]: QUERY_STRING = -- 13:27:59.799 INFO [15371]: HTTP_X_FORWARDED_FOR = 23.254.164.181 -- 13:27:59.835 INFO [15371]: COREGRADE is stopping... -- 13:27:59.835 DEBUG [15371]: Closing database connection -- 13:27:59.835 SQL [15371]: pgsql_close() -- 13:27:59.933 INFO [15371]: COREGRADE is starting... -- 13:27:59.933 INFO [15371]: Version from config: 1.0 -- 13:27:59.933 DEBUG [15371]: Connecting to database... -- 13:27:59.933 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:27:59.933 SQL [15371]: pgsql_db_connect() -- 13:27:59.937 DEBUG [15371]: Database connection successful -- 13:27:59.937 INFO [15371]: _SERVER found -- 13:27:59.937 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 13:27:59.937 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 13:27:59.937 INFO [15371]: QUERY_STRING = -- 13:27:59.937 INFO [15371]: HTTP_X_FORWARDED_FOR = 192.236.162.232 -- 13:27:59.968 INFO [15371]: COREGRADE is stopping... -- 13:27:59.968 DEBUG [15371]: Closing database connection -- 13:27:59.968 SQL [15371]: pgsql_close() -- 13:28:06.486 INFO [15429]: COREGRADE is starting... -- 13:28:06.486 INFO [15429]: Version from config: 1.0 -- 13:28:06.486 DEBUG [15429]: Connecting to database... -- 13:28:06.486 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:28:06.486 SQL [15429]: pgsql_db_connect() -- 13:28:06.490 DEBUG [15429]: Database connection successful -- 13:28:06.490 INFO [15429]: _SERVER found -- 13:28:06.490 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 13:28:06.490 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 13:28:06.490 INFO [15429]: QUERY_STRING = -- 13:28:06.490 INFO [15429]: HTTP_X_FORWARDED_FOR = 142.11.211.250 -- 13:28:06.522 INFO [15429]: COREGRADE is stopping... -- 13:28:06.522 DEBUG [15429]: Closing database connection -- 13:28:06.522 SQL [15429]: pgsql_close() -- 13:28:06.736 INFO [15429]: COREGRADE is starting... -- 13:28:06.737 INFO [15429]: Version from config: 1.0 -- 13:28:06.737 DEBUG [15429]: Connecting to database... -- 13:28:06.737 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:28:06.737 SQL [15429]: pgsql_db_connect() -- 13:28:06.741 DEBUG [15429]: Database connection successful -- 13:28:06.741 INFO [15429]: _SERVER found -- 13:28:06.741 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 13:28:06.741 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 13:28:06.741 INFO [15429]: QUERY_STRING = -- 13:28:06.741 INFO [15429]: HTTP_X_FORWARDED_FOR = 104.168.148.236 -- 13:28:06.772 INFO [15429]: COREGRADE is stopping... -- 13:28:06.772 DEBUG [15429]: Closing database connection -- 13:28:06.772 SQL [15429]: pgsql_close() -- 13:29:08.315 INFO [15433]: COREGRADE is starting... -- 13:29:08.315 INFO [15433]: Version from config: 1.0 -- 13:29:08.315 DEBUG [15433]: Connecting to database... -- 13:29:08.315 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:08.315 SQL [15433]: pgsql_db_connect() -- 13:29:08.320 DEBUG [15433]: Database connection successful -- 13:29:08.320 INFO [15433]: _SERVER found -- 13:29:08.320 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 13:29:08.320 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 13:29:08.320 INFO [15433]: QUERY_STRING = -- 13:29:08.320 INFO [15433]: HTTP_X_FORWARDED_FOR = 23.254.164.48 -- 13:29:08.352 INFO [15433]: COREGRADE is stopping... -- 13:29:08.352 DEBUG [15433]: Closing database connection -- 13:29:08.352 SQL [15433]: pgsql_close() -- 13:29:09.852 INFO [15367]: COREGRADE is starting... -- 13:29:09.852 INFO [15367]: Version from config: 1.0 -- 13:29:09.852 DEBUG [15367]: Connecting to database... -- 13:29:09.852 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:09.852 SQL [15367]: pgsql_db_connect() -- 13:29:09.856 DEBUG [15367]: Database connection successful -- 13:29:09.856 INFO [15367]: _SERVER found -- 13:29:09.856 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 13:29:09.856 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 13:29:09.856 INFO [15367]: QUERY_STRING = -- 13:29:09.856 INFO [15367]: HTTP_X_FORWARDED_FOR = 142.11.227.204 -- 13:29:09.888 INFO [15367]: COREGRADE is stopping... -- 13:29:09.888 DEBUG [15367]: Closing database connection -- 13:29:09.888 SQL [15367]: pgsql_close() -- 13:30:16.923 INFO [15369]: COREGRADE is starting... -- 13:30:16.924 INFO [15369]: Version from config: 1.0 -- 13:30:16.924 DEBUG [15369]: Connecting to database... -- 13:30:16.924 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:30:16.924 SQL [15369]: pgsql_db_connect() -- 13:30:16.928 DEBUG [15369]: Database connection successful -- 13:30:16.928 INFO [15369]: _SERVER found -- 13:30:16.928 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 13:30:16.928 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 13:30:16.928 INFO [15369]: QUERY_STRING = -- 13:30:16.928 INFO [15369]: HTTP_X_FORWARDED_FOR = 142.11.211.250 -- 13:30:16.960 INFO [15369]: COREGRADE is stopping... -- 13:30:16.960 DEBUG [15369]: Closing database connection -- 13:30:16.960 SQL [15369]: pgsql_close() -- 13:30:17.136 INFO [15434]: COREGRADE is starting... -- 13:30:17.136 INFO [15434]: Version from config: 1.0 -- 13:30:17.136 DEBUG [15434]: Connecting to database... -- 13:30:17.136 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:30:17.136 SQL [15434]: pgsql_db_connect() -- 13:30:17.140 DEBUG [15434]: Database connection successful -- 13:30:17.140 INFO [15434]: _SERVER found -- 13:30:17.140 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 13:30:17.140 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 13:30:17.140 INFO [15434]: QUERY_STRING = -- 13:30:17.140 INFO [15434]: HTTP_X_FORWARDED_FOR = 104.168.148.236 -- 13:30:17.172 INFO [15434]: COREGRADE is stopping... -- 13:30:17.172 DEBUG [15434]: Closing database connection -- 13:30:17.172 SQL [15434]: pgsql_close() -- 13:31:31.827 INFO [15366]: COREGRADE is starting... -- 13:31:31.828 INFO [15366]: Version from config: 1.0 -- 13:31:31.828 DEBUG [15366]: Connecting to database... -- 13:31:31.828 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:31:31.828 SQL [15366]: pgsql_db_connect() -- 13:31:31.832 DEBUG [15366]: Database connection successful -- 13:31:31.832 INFO [15366]: _SERVER found -- 13:31:31.832 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 13:31:31.832 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 13:31:31.832 INFO [15366]: QUERY_STRING = -- 13:31:31.832 INFO [15366]: HTTP_X_FORWARDED_FOR = 192.119.73.108 -- 13:31:31.865 INFO [15366]: COREGRADE is stopping... -- 13:31:31.865 DEBUG [15366]: Closing database connection -- 13:31:31.865 SQL [15366]: pgsql_close() -- 13:31:32.634 INFO [15370]: COREGRADE is starting... -- 13:31:32.634 INFO [15370]: Version from config: 1.0 -- 13:31:32.634 DEBUG [15370]: Connecting to database... -- 13:31:32.634 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:31:32.634 SQL [15370]: pgsql_db_connect() -- 13:31:32.638 DEBUG [15370]: Database connection successful -- 13:31:32.638 INFO [15370]: _SERVER found -- 13:31:32.638 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 13:31:32.638 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 13:31:32.638 INFO [15370]: QUERY_STRING = -- 13:31:32.638 INFO [15370]: HTTP_X_FORWARDED_FOR = 192.236.162.232 -- 13:31:32.672 INFO [15370]: COREGRADE is stopping... -- 13:31:32.672 DEBUG [15370]: Closing database connection -- 13:31:32.672 SQL [15370]: pgsql_close() -- 13:33:25.628 INFO [15371]: COREGRADE is starting... -- 13:33:25.628 INFO [15371]: Version from config: 1.0 -- 13:33:25.628 DEBUG [15371]: Connecting to database... -- 13:33:25.628 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:33:25.628 SQL [15371]: pgsql_db_connect() -- 13:33:25.632 DEBUG [15371]: Database connection successful -- 13:33:25.632 INFO [15371]: _SERVER found -- 13:33:25.632 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 13:33:25.632 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 13:33:25.632 INFO [15371]: QUERY_STRING = -- 13:33:25.632 INFO [15371]: HTTP_X_FORWARDED_FOR = 192.236.192.6 -- 13:33:25.665 INFO [15371]: COREGRADE is stopping... -- 13:33:25.665 DEBUG [15371]: Closing database connection -- 13:33:25.665 SQL [15371]: pgsql_close() -- 13:33:32.310 INFO [15429]: COREGRADE is starting... -- 13:33:32.310 INFO [15429]: Version from config: 1.0 -- 13:33:32.310 DEBUG [15429]: Connecting to database... -- 13:33:32.310 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:33:32.310 SQL [15429]: pgsql_db_connect() -- 13:33:32.314 DEBUG [15429]: Database connection successful -- 13:33:32.314 INFO [15429]: _SERVER found -- 13:33:32.314 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 13:33:32.314 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 13:33:32.314 INFO [15429]: QUERY_STRING = -- 13:33:32.314 INFO [15429]: HTTP_X_FORWARDED_FOR = 192.236.192.3 -- 13:33:32.347 INFO [15429]: COREGRADE is stopping... -- 13:33:32.347 DEBUG [15429]: Closing database connection -- 13:33:32.347 SQL [15429]: pgsql_close() -- 13:34:31.831 INFO [15433]: COREGRADE is starting... -- 13:34:31.831 INFO [15433]: Version from config: 1.0 -- 13:34:31.831 DEBUG [15433]: Connecting to database... -- 13:34:31.831 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:34:31.831 SQL [15433]: pgsql_db_connect() -- 13:34:31.836 DEBUG [15433]: Database connection successful -- 13:34:31.836 INFO [15433]: _SERVER found -- 13:34:31.836 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 13:34:31.836 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 13:34:31.836 INFO [15433]: QUERY_STRING = -- 13:34:31.836 INFO [15433]: HTTP_X_FORWARDED_FOR = 142.11.211.250 -- 13:34:31.869 INFO [15433]: COREGRADE is stopping... -- 13:34:31.869 DEBUG [15433]: Closing database connection -- 13:34:31.869 SQL [15433]: pgsql_close() -- 13:34:32.047 INFO [15433]: COREGRADE is starting... -- 13:34:32.048 INFO [15433]: Version from config: 1.0 -- 13:34:32.048 DEBUG [15433]: Connecting to database... -- 13:34:32.048 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:34:32.048 SQL [15433]: pgsql_db_connect() -- 13:34:32.052 DEBUG [15433]: Database connection successful -- 13:34:32.052 INFO [15433]: _SERVER found -- 13:34:32.052 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 13:34:32.052 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 13:34:32.052 INFO [15433]: QUERY_STRING = -- 13:34:32.052 INFO [15433]: HTTP_X_FORWARDED_FOR = 104.168.148.236 -- 13:34:32.083 INFO [15433]: COREGRADE is stopping... -- 13:34:32.083 DEBUG [15433]: Closing database connection -- 13:34:32.083 SQL [15433]: pgsql_close() -- 13:35:12.241 INFO [15367]: COREGRADE is starting... -- 13:35:12.241 INFO [15367]: Version from config: 1.0 -- 13:35:12.241 DEBUG [15367]: Connecting to database... -- 13:35:12.241 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:35:12.241 SQL [15367]: pgsql_db_connect() -- 13:35:12.245 DEBUG [15367]: Database connection successful -- 13:35:12.245 INFO [15367]: _SERVER found -- 13:35:12.245 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 13:35:12.245 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 13:35:12.245 INFO [15367]: QUERY_STRING = -- 13:35:12.245 INFO [15367]: HTTP_X_FORWARDED_FOR = 23.254.164.181 -- 13:35:12.279 INFO [15367]: COREGRADE is stopping... -- 13:35:12.279 DEBUG [15367]: Closing database connection -- 13:35:12.279 SQL [15367]: pgsql_close() -- 13:35:12.282 INFO [15367]: COREGRADE is starting... -- 13:35:12.282 INFO [15367]: Version from config: 1.0 -- 13:35:12.282 DEBUG [15367]: Connecting to database... -- 13:35:12.282 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:35:12.282 SQL [15367]: pgsql_db_connect() -- 13:35:12.286 DEBUG [15367]: Database connection successful -- 13:35:12.286 INFO [15367]: _SERVER found -- 13:35:12.286 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 13:35:12.286 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 13:35:12.286 INFO [15367]: QUERY_STRING = -- 13:35:12.286 INFO [15367]: HTTP_X_FORWARDED_FOR = 142.11.211.250 -- 13:35:12.317 INFO [15367]: COREGRADE is stopping... -- 13:35:12.317 DEBUG [15367]: Closing database connection -- 13:35:12.317 SQL [15367]: pgsql_close() -- 13:35:33.032 INFO [15369]: COREGRADE is starting... -- 13:35:33.032 INFO [15369]: Version from config: 1.0 -- 13:35:33.032 DEBUG [15369]: Connecting to database... -- 13:35:33.032 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:35:33.032 SQL [15369]: pgsql_db_connect() -- 13:35:33.036 DEBUG [15369]: Database connection successful -- 13:35:33.036 INFO [15369]: _SERVER found -- 13:35:33.036 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 13:35:33.036 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 13:35:33.036 INFO [15369]: QUERY_STRING = -- 13:35:33.036 INFO [15369]: HTTP_X_FORWARDED_FOR = 192.236.163.117 -- 13:35:33.069 INFO [15369]: COREGRADE is stopping... -- 13:35:33.069 DEBUG [15369]: Closing database connection -- 13:35:33.070 SQL [15369]: pgsql_close() -- 13:35:33.919 INFO [15369]: COREGRADE is starting... -- 13:35:33.919 INFO [15369]: Version from config: 1.0 -- 13:35:33.919 DEBUG [15369]: Connecting to database... -- 13:35:33.919 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:35:33.919 SQL [15369]: pgsql_db_connect() -- 13:35:33.923 DEBUG [15369]: Database connection successful -- 13:35:33.923 INFO [15369]: _SERVER found -- 13:35:33.923 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 13:35:33.923 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 13:35:33.923 INFO [15369]: QUERY_STRING = -- 13:35:33.923 INFO [15369]: HTTP_X_FORWARDED_FOR = 142.11.227.204 -- 13:35:33.954 INFO [15369]: COREGRADE is stopping... -- 13:35:33.954 DEBUG [15369]: Closing database connection -- 13:35:33.954 SQL [15369]: pgsql_close() -- 13:36:10.350 INFO [15434]: COREGRADE is starting... -- 13:36:10.350 INFO [15434]: Version from config: 1.0 -- 13:36:10.350 DEBUG [15434]: Connecting to database... -- 13:36:10.350 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:36:10.350 SQL [15434]: pgsql_db_connect() -- 13:36:10.354 DEBUG [15434]: Database connection successful -- 13:36:10.354 INFO [15434]: _SERVER found -- 13:36:10.354 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 13:36:10.354 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 13:36:10.354 INFO [15434]: QUERY_STRING = -- 13:36:10.354 INFO [15434]: HTTP_X_FORWARDED_FOR = 142.11.211.250 -- 13:36:10.386 INFO [15434]: COREGRADE is stopping... -- 13:36:10.386 DEBUG [15434]: Closing database connection -- 13:36:10.386 SQL [15434]: pgsql_close() -- 13:36:10.673 INFO [15434]: COREGRADE is starting... -- 13:36:10.673 INFO [15434]: Version from config: 1.0 -- 13:36:10.673 DEBUG [15434]: Connecting to database... -- 13:36:10.673 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:36:10.673 SQL [15434]: pgsql_db_connect() -- 13:36:10.678 DEBUG [15434]: Database connection successful -- 13:36:10.678 INFO [15434]: _SERVER found -- 13:36:10.678 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 13:36:10.678 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 13:36:10.678 INFO [15434]: QUERY_STRING = -- 13:36:10.678 INFO [15434]: HTTP_X_FORWARDED_FOR = 104.168.148.236 -- 13:36:10.709 INFO [15434]: COREGRADE is stopping... -- 13:36:10.709 DEBUG [15434]: Closing database connection -- 13:36:10.709 SQL [15434]: pgsql_close() -- 13:36:16.615 INFO [15366]: COREGRADE is starting... -- 13:36:16.615 INFO [15366]: Version from config: 1.0 -- 13:36:16.615 DEBUG [15366]: Connecting to database... -- 13:36:16.615 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:36:16.615 SQL [15366]: pgsql_db_connect() -- 13:36:16.619 DEBUG [15366]: Database connection successful -- 13:36:16.619 INFO [15366]: _SERVER found -- 13:36:16.619 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 13:36:16.619 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 13:36:16.619 INFO [15366]: QUERY_STRING = -- 13:36:16.619 INFO [15366]: HTTP_X_FORWARDED_FOR = 23.254.164.48 -- 13:36:16.651 INFO [15366]: COREGRADE is stopping... -- 13:36:16.651 DEBUG [15366]: Closing database connection -- 13:36:16.651 SQL [15366]: pgsql_close() -- 13:36:17.040 INFO [15366]: COREGRADE is starting... -- 13:36:17.041 INFO [15366]: Version from config: 1.0 -- 13:36:17.041 DEBUG [15366]: Connecting to database... -- 13:36:17.041 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:36:17.041 SQL [15366]: pgsql_db_connect() -- 13:36:17.045 DEBUG [15366]: Database connection successful -- 13:36:17.045 INFO [15366]: _SERVER found -- 13:36:17.045 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 13:36:17.045 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 13:36:17.045 INFO [15366]: QUERY_STRING = -- 13:36:17.045 INFO [15366]: HTTP_X_FORWARDED_FOR = 104.168.166.234 -- 13:36:17.076 INFO [15366]: COREGRADE is stopping... -- 13:36:17.076 DEBUG [15366]: Closing database connection -- 13:36:17.076 SQL [15366]: pgsql_close() -- 13:36:25.908 INFO [15370]: COREGRADE is starting... -- 13:36:25.909 INFO [15370]: Version from config: 1.0 -- 13:36:25.909 DEBUG [15370]: Connecting to database... -- 13:36:25.909 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:36:25.909 SQL [15370]: pgsql_db_connect() -- 13:36:25.913 DEBUG [15370]: Database connection successful -- 13:36:25.913 INFO [15370]: _SERVER found -- 13:36:25.913 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 13:36:25.913 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 13:36:25.913 INFO [15370]: QUERY_STRING = -- 13:36:25.913 INFO [15370]: HTTP_X_FORWARDED_FOR = 192.236.162.232 -- 13:36:25.946 INFO [15370]: COREGRADE is stopping... -- 13:36:25.946 DEBUG [15370]: Closing database connection -- 13:36:25.946 SQL [15370]: pgsql_close() -- 13:36:26.911 INFO [15371]: COREGRADE is starting... -- 13:36:26.912 INFO [15371]: Version from config: 1.0 -- 13:36:26.912 DEBUG [15371]: Connecting to database... -- 13:36:26.912 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:36:26.912 SQL [15371]: pgsql_db_connect() -- 13:36:26.916 DEBUG [15371]: Database connection successful -- 13:36:26.916 INFO [15371]: _SERVER found -- 13:36:26.916 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 13:36:26.916 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 13:36:26.916 INFO [15371]: QUERY_STRING = -- 13:36:26.916 INFO [15371]: HTTP_X_FORWARDED_FOR = 192.236.192.3 -- 13:36:26.948 INFO [15371]: COREGRADE is stopping... -- 13:36:26.948 DEBUG [15371]: Closing database connection -- 13:36:26.948 SQL [15371]: pgsql_close() -- 13:36:52.119 INFO [15429]: COREGRADE is starting... -- 13:36:52.120 INFO [15429]: Version from config: 1.0 -- 13:36:52.120 DEBUG [15429]: Connecting to database... -- 13:36:52.120 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:36:52.120 SQL [15429]: pgsql_db_connect() -- 13:36:52.124 DEBUG [15429]: Database connection successful -- 13:36:52.124 INFO [15429]: _SERVER found -- 13:36:52.124 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 13:36:52.124 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 13:36:52.124 INFO [15429]: QUERY_STRING = -- 13:36:52.124 INFO [15429]: HTTP_X_FORWARDED_FOR = 192.236.163.117 -- 13:36:52.157 INFO [15429]: COREGRADE is stopping... -- 13:36:52.157 DEBUG [15429]: Closing database connection -- 13:36:52.157 SQL [15429]: pgsql_close() -- 13:36:59.116 INFO [15433]: COREGRADE is starting... -- 13:36:59.116 INFO [15433]: Version from config: 1.0 -- 13:36:59.116 DEBUG [15433]: Connecting to database... -- 13:36:59.116 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:36:59.116 SQL [15433]: pgsql_db_connect() -- 13:36:59.120 DEBUG [15433]: Database connection successful -- 13:36:59.120 INFO [15433]: _SERVER found -- 13:36:59.120 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 13:36:59.120 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 13:36:59.120 INFO [15433]: QUERY_STRING = -- 13:36:59.120 INFO [15433]: HTTP_X_FORWARDED_FOR = 104.168.194.148 -- 13:36:59.153 INFO [15433]: COREGRADE is stopping... -- 13:36:59.153 DEBUG [15433]: Closing database connection -- 13:36:59.153 SQL [15433]: pgsql_close() -- 13:37:01.183 INFO [15367]: COREGRADE is starting... -- 13:37:01.183 INFO [15367]: Version from config: 1.0 -- 13:37:01.183 DEBUG [15367]: Connecting to database... -- 13:37:01.183 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:37:01.184 SQL [15367]: pgsql_db_connect() -- 13:37:01.188 DEBUG [15367]: Database connection successful -- 13:37:01.188 INFO [15367]: _SERVER found -- 13:37:01.188 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 13:37:01.188 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 13:37:01.188 INFO [15367]: QUERY_STRING = -- 13:37:01.188 INFO [15367]: HTTP_X_FORWARDED_FOR = 142.11.211.250 -- 13:37:01.219 INFO [15367]: COREGRADE is stopping... -- 13:37:01.219 DEBUG [15367]: Closing database connection -- 13:37:01.219 SQL [15367]: pgsql_close() -- 13:37:01.514 INFO [15367]: COREGRADE is starting... -- 13:37:01.514 INFO [15367]: Version from config: 1.0 -- 13:37:01.514 DEBUG [15367]: Connecting to database... -- 13:37:01.514 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:37:01.514 SQL [15367]: pgsql_db_connect() -- 13:37:01.519 DEBUG [15367]: Database connection successful -- 13:37:01.519 INFO [15367]: _SERVER found -- 13:37:01.519 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 13:37:01.519 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 13:37:01.519 INFO [15367]: QUERY_STRING = -- 13:37:01.519 INFO [15367]: HTTP_X_FORWARDED_FOR = 104.168.148.236 -- 13:37:01.551 INFO [15367]: COREGRADE is stopping... -- 13:37:01.552 DEBUG [15367]: Closing database connection -- 13:37:01.552 SQL [15367]: pgsql_close() -- 13:37:56.877 INFO [15369]: COREGRADE is starting... -- 13:37:56.877 INFO [15369]: Version from config: 1.0 -- 13:37:56.877 DEBUG [15369]: Connecting to database... -- 13:37:56.877 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:37:56.877 SQL [15369]: pgsql_db_connect() -- 13:37:56.881 DEBUG [15369]: Database connection successful -- 13:37:56.881 INFO [15369]: _SERVER found -- 13:37:56.881 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 13:37:56.881 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 13:37:56.881 INFO [15369]: QUERY_STRING = -- 13:37:56.881 INFO [15369]: HTTP_X_FORWARDED_FOR = 142.11.227.204 -- 13:37:56.913 INFO [15369]: COREGRADE is stopping... -- 13:37:56.914 DEBUG [15369]: Closing database connection -- 13:37:56.914 SQL [15369]: pgsql_close() -- 13:37:58.247 INFO [15434]: COREGRADE is starting... -- 13:37:58.247 INFO [15434]: Version from config: 1.0 -- 13:37:58.247 DEBUG [15434]: Connecting to database... -- 13:37:58.247 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:37:58.247 SQL [15434]: pgsql_db_connect() -- 13:37:58.251 DEBUG [15434]: Database connection successful -- 13:37:58.251 INFO [15434]: _SERVER found -- 13:37:58.251 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 13:37:58.251 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 13:37:58.251 INFO [15434]: QUERY_STRING = -- 13:37:58.251 INFO [15434]: HTTP_X_FORWARDED_FOR = 192.119.73.107 -- 13:37:58.283 INFO [15434]: COREGRADE is stopping... -- 13:37:58.283 DEBUG [15434]: Closing database connection -- 13:37:58.283 SQL [15434]: pgsql_close() -- 13:38:00.831 INFO [15369]: COREGRADE is starting... -- 13:38:00.832 INFO [15369]: Version from config: 1.0 -- 13:38:00.832 DEBUG [15369]: Connecting to database... -- 13:38:00.832 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:38:00.832 SQL [15369]: pgsql_db_connect() -- 13:38:00.836 DEBUG [15369]: Database connection successful -- 13:38:00.836 INFO [15369]: _SERVER found -- 13:38:00.836 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 13:38:00.836 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 13:38:00.836 INFO [15369]: QUERY_STRING = -- 13:38:00.836 INFO [15369]: HTTP_X_FORWARDED_FOR = 104.168.166.234 -- 13:38:00.867 INFO [15369]: COREGRADE is stopping... -- 13:38:00.867 DEBUG [15369]: Closing database connection -- 13:38:00.867 SQL [15369]: pgsql_close() -- 13:38:01.386 INFO [15366]: COREGRADE is starting... -- 13:38:01.387 INFO [15366]: Version from config: 1.0 -- 13:38:01.387 DEBUG [15366]: Connecting to database... -- 13:38:01.387 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:38:01.387 SQL [15366]: pgsql_db_connect() -- 13:38:01.391 DEBUG [15366]: Database connection successful -- 13:38:01.391 INFO [15366]: _SERVER found -- 13:38:01.391 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 13:38:01.391 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 13:38:01.391 INFO [15366]: QUERY_STRING = -- 13:38:01.391 INFO [15366]: HTTP_X_FORWARDED_FOR = 192.236.163.117 -- 13:38:01.423 INFO [15366]: COREGRADE is stopping... -- 13:38:01.423 DEBUG [15366]: Closing database connection -- 13:38:01.423 SQL [15366]: pgsql_close() -- 13:38:43.541 INFO [15370]: COREGRADE is starting... -- 13:38:43.541 INFO [15370]: Version from config: 1.0 -- 13:38:43.541 DEBUG [15370]: Connecting to database... -- 13:38:43.541 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:38:43.541 SQL [15370]: pgsql_db_connect() -- 13:38:43.546 DEBUG [15370]: Database connection successful -- 13:38:43.546 INFO [15370]: _SERVER found -- 13:38:43.546 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 13:38:43.546 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 13:38:43.546 INFO [15370]: QUERY_STRING = -- 13:38:43.546 INFO [15370]: HTTP_X_FORWARDED_FOR = 104.168.148.236 -- 13:38:43.579 INFO [15370]: COREGRADE is stopping... -- 13:38:43.579 DEBUG [15370]: Closing database connection -- 13:38:43.579 SQL [15370]: pgsql_close() -- 13:38:43.923 INFO [15370]: COREGRADE is starting... -- 13:38:43.924 INFO [15370]: Version from config: 1.0 -- 13:38:43.924 DEBUG [15370]: Connecting to database... -- 13:38:43.924 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:38:43.924 SQL [15370]: pgsql_db_connect() -- 13:38:43.928 DEBUG [15370]: Database connection successful -- 13:38:43.928 INFO [15370]: _SERVER found -- 13:38:43.928 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 13:38:43.928 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 13:38:43.928 INFO [15370]: QUERY_STRING = -- 13:38:43.928 INFO [15370]: HTTP_X_FORWARDED_FOR = 192.236.192.119 -- 13:38:43.960 INFO [15370]: COREGRADE is stopping... -- 13:38:43.960 DEBUG [15370]: Closing database connection -- 13:38:43.960 SQL [15370]: pgsql_close() -- 13:39:57.193 INFO [15371]: COREGRADE is starting... -- 13:39:57.193 INFO [15371]: Version from config: 1.0 -- 13:39:57.193 DEBUG [15371]: Connecting to database... -- 13:39:57.194 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:39:57.194 SQL [15371]: pgsql_db_connect() -- 13:39:57.198 DEBUG [15371]: Database connection successful -- 13:39:57.198 INFO [15371]: _SERVER found -- 13:39:57.198 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 13:39:57.198 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 13:39:57.198 INFO [15371]: QUERY_STRING = -- 13:39:57.198 INFO [15371]: HTTP_X_FORWARDED_FOR = 192.236.192.3 -- 13:39:57.230 INFO [15371]: COREGRADE is stopping... -- 13:39:57.230 DEBUG [15371]: Closing database connection -- 13:39:57.230 SQL [15371]: pgsql_close() -- 13:39:57.295 INFO [15429]: COREGRADE is starting... -- 13:39:57.295 INFO [15429]: Version from config: 1.0 -- 13:39:57.295 DEBUG [15429]: Connecting to database... -- 13:39:57.295 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:39:57.295 SQL [15429]: pgsql_db_connect() -- 13:39:57.299 DEBUG [15429]: Database connection successful -- 13:39:57.299 INFO [15429]: _SERVER found -- 13:39:57.299 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 13:39:57.299 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 13:39:57.299 INFO [15429]: QUERY_STRING = -- 13:39:57.299 INFO [15429]: HTTP_X_FORWARDED_FOR = 192.236.192.6 -- 13:39:57.332 INFO [15429]: COREGRADE is stopping... -- 13:39:57.332 DEBUG [15429]: Closing database connection -- 13:39:57.332 SQL [15429]: pgsql_close() -- 13:40:22.284 INFO [15433]: COREGRADE is starting... -- 13:40:22.284 INFO [15433]: Version from config: 1.0 -- 13:40:22.284 DEBUG [15433]: Connecting to database... -- 13:40:22.284 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:40:22.284 SQL [15433]: pgsql_db_connect() -- 13:40:22.289 DEBUG [15433]: Database connection successful -- 13:40:22.289 INFO [15433]: _SERVER found -- 13:40:22.289 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 13:40:22.289 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 13:40:22.289 INFO [15433]: QUERY_STRING = -- 13:40:22.289 INFO [15433]: HTTP_X_FORWARDED_FOR = 192.236.162.232 -- 13:40:22.322 INFO [15433]: COREGRADE is stopping... -- 13:40:22.322 DEBUG [15433]: Closing database connection -- 13:40:22.322 SQL [15433]: pgsql_close() -- 13:40:27.909 INFO [15367]: COREGRADE is starting... -- 13:40:27.909 INFO [15367]: Version from config: 1.0 -- 13:40:27.909 DEBUG [15367]: Connecting to database... -- 13:40:27.909 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:40:27.909 SQL [15367]: pgsql_db_connect() -- 13:40:27.913 DEBUG [15367]: Database connection successful -- 13:40:27.913 INFO [15367]: _SERVER found -- 13:40:27.913 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 13:40:27.913 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 13:40:27.913 INFO [15367]: QUERY_STRING = -- 13:40:27.913 INFO [15367]: HTTP_X_FORWARDED_FOR = 23.254.164.181 -- 13:40:27.946 INFO [15367]: COREGRADE is stopping... -- 13:40:27.946 DEBUG [15367]: Closing database connection -- 13:40:27.946 SQL [15367]: pgsql_close() -- 13:41:00.599 INFO [15434]: COREGRADE is starting... -- 13:41:00.600 INFO [15434]: Version from config: 1.0 -- 13:41:00.600 DEBUG [15434]: Connecting to database... -- 13:41:00.600 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:41:00.600 SQL [15434]: pgsql_db_connect() -- 13:41:00.604 DEBUG [15434]: Database connection successful -- 13:41:00.604 INFO [15434]: _SERVER found -- 13:41:00.604 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 13:41:00.604 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 13:41:00.604 INFO [15434]: QUERY_STRING = -- 13:41:00.604 INFO [15434]: HTTP_X_FORWARDED_FOR = 192.236.163.117 -- 13:41:00.636 INFO [15434]: COREGRADE is stopping... -- 13:41:00.636 DEBUG [15434]: Closing database connection -- 13:41:00.636 SQL [15434]: pgsql_close() -- 13:41:01.308 INFO [15434]: COREGRADE is starting... -- 13:41:01.309 INFO [15434]: Version from config: 1.0 -- 13:41:01.309 DEBUG [15434]: Connecting to database... -- 13:41:01.309 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:41:01.309 SQL [15434]: pgsql_db_connect() -- 13:41:01.313 DEBUG [15434]: Database connection successful -- 13:41:01.313 INFO [15434]: _SERVER found -- 13:41:01.313 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 13:41:01.313 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 13:41:01.313 INFO [15434]: QUERY_STRING = -- 13:41:01.313 INFO [15434]: HTTP_X_FORWARDED_FOR = 104.168.166.234 -- 13:41:01.344 INFO [15434]: COREGRADE is stopping... -- 13:41:01.344 DEBUG [15434]: Closing database connection -- 13:41:01.344 SQL [15434]: pgsql_close() -- 13:41:47.150 INFO [15369]: COREGRADE is starting... -- 13:41:47.150 INFO [15369]: Version from config: 1.0 -- 13:41:47.150 DEBUG [15369]: Connecting to database... -- 13:41:47.150 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:41:47.150 SQL [15369]: pgsql_db_connect() -- 13:41:47.154 DEBUG [15369]: Database connection successful -- 13:41:47.154 INFO [15369]: _SERVER found -- 13:41:47.154 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 13:41:47.154 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 13:41:47.154 INFO [15369]: QUERY_STRING = -- 13:41:47.154 INFO [15369]: HTTP_X_FORWARDED_FOR = 104.168.148.236 -- 13:41:47.186 INFO [15369]: COREGRADE is stopping... -- 13:41:47.186 DEBUG [15369]: Closing database connection -- 13:41:47.186 SQL [15369]: pgsql_close() -- 13:41:47.735 INFO [15369]: COREGRADE is starting... -- 13:41:47.735 INFO [15369]: Version from config: 1.0 -- 13:41:47.735 DEBUG [15369]: Connecting to database... -- 13:41:47.735 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:41:47.735 SQL [15369]: pgsql_db_connect() -- 13:41:47.739 DEBUG [15369]: Database connection successful -- 13:41:47.739 INFO [15369]: _SERVER found -- 13:41:47.739 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 13:41:47.739 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 13:41:47.739 INFO [15369]: QUERY_STRING = -- 13:41:47.739 INFO [15369]: HTTP_X_FORWARDED_FOR = 104.168.166.234 -- 13:41:47.770 INFO [15369]: COREGRADE is stopping... -- 13:41:47.770 DEBUG [15369]: Closing database connection -- 13:41:47.770 SQL [15369]: pgsql_close() -- 13:42:03.337 INFO [15366]: COREGRADE is starting... -- 13:42:03.337 INFO [15366]: Version from config: 1.0 -- 13:42:03.337 DEBUG [15366]: Connecting to database... -- 13:42:03.337 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:42:03.337 SQL [15366]: pgsql_db_connect() -- 13:42:03.341 DEBUG [15366]: Database connection successful -- 13:42:03.341 INFO [15366]: _SERVER found -- 13:42:03.341 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 13:42:03.341 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 13:42:03.341 INFO [15366]: QUERY_STRING = -- 13:42:03.341 INFO [15366]: HTTP_X_FORWARDED_FOR = 192.236.192.119 -- 13:42:03.373 INFO [15366]: COREGRADE is stopping... -- 13:42:03.373 DEBUG [15366]: Closing database connection -- 13:42:03.373 SQL [15366]: pgsql_close() -- 13:42:59.536 INFO [15370]: COREGRADE is starting... -- 13:42:59.536 INFO [15370]: Version from config: 1.0 -- 13:42:59.536 DEBUG [15370]: Connecting to database... -- 13:42:59.536 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:42:59.536 SQL [15370]: pgsql_db_connect() -- 13:42:59.540 DEBUG [15370]: Database connection successful -- 13:42:59.540 INFO [15370]: _SERVER found -- 13:42:59.540 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 13:42:59.540 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 13:42:59.540 INFO [15370]: QUERY_STRING = -- 13:42:59.540 INFO [15370]: HTTP_X_FORWARDED_FOR = 192.236.163.119 -- 13:42:59.573 INFO [15370]: COREGRADE is stopping... -- 13:42:59.573 DEBUG [15370]: Closing database connection -- 13:42:59.573 SQL [15370]: pgsql_close() -- 13:43:00.109 INFO [15371]: COREGRADE is starting... -- 13:43:00.109 INFO [15371]: Version from config: 1.0 -- 13:43:00.109 DEBUG [15371]: Connecting to database... -- 13:43:00.109 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:43:00.109 SQL [15371]: pgsql_db_connect() -- 13:43:00.113 DEBUG [15371]: Database connection successful -- 13:43:00.113 INFO [15371]: _SERVER found -- 13:43:00.113 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 13:43:00.113 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 13:43:00.113 INFO [15371]: QUERY_STRING = -- 13:43:00.113 INFO [15371]: HTTP_X_FORWARDED_FOR = 192.236.192.119 -- 13:43:00.145 INFO [15371]: COREGRADE is stopping... -- 13:43:00.145 DEBUG [15371]: Closing database connection -- 13:43:00.145 SQL [15371]: pgsql_close() -- 13:43:48.116 INFO [15429]: COREGRADE is starting... -- 13:43:48.117 INFO [15429]: Version from config: 1.0 -- 13:43:48.117 DEBUG [15429]: Connecting to database... -- 13:43:48.117 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:43:48.117 SQL [15429]: pgsql_db_connect() -- 13:43:48.121 DEBUG [15429]: Database connection successful -- 13:43:48.121 INFO [15429]: _SERVER found -- 13:43:48.121 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 13:43:48.121 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 13:43:48.121 INFO [15429]: QUERY_STRING = -- 13:43:48.121 INFO [15429]: HTTP_X_FORWARDED_FOR = 192.236.162.232 -- 13:43:48.153 INFO [15429]: COREGRADE is stopping... -- 13:43:48.153 DEBUG [15429]: Closing database connection -- 13:43:48.153 SQL [15429]: pgsql_close() -- 13:43:48.785 INFO [15429]: COREGRADE is starting... -- 13:43:48.785 INFO [15429]: Version from config: 1.0 -- 13:43:48.785 DEBUG [15429]: Connecting to database... -- 13:43:48.785 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:43:48.785 SQL [15429]: pgsql_db_connect() -- 13:43:48.789 DEBUG [15429]: Database connection successful -- 13:43:48.789 INFO [15429]: _SERVER found -- 13:43:48.789 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 13:43:48.789 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 13:43:48.789 INFO [15429]: QUERY_STRING = -- 13:43:48.789 INFO [15429]: HTTP_X_FORWARDED_FOR = 192.119.73.108 -- 13:43:48.820 INFO [15429]: COREGRADE is stopping... -- 13:43:48.820 DEBUG [15429]: Closing database connection -- 13:43:48.820 SQL [15429]: pgsql_close() -- 13:43:59.742 INFO [15433]: COREGRADE is starting... -- 13:43:59.742 INFO [15433]: Version from config: 1.0 -- 13:43:59.742 DEBUG [15433]: Connecting to database... -- 13:43:59.742 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:43:59.742 SQL [15433]: pgsql_db_connect() -- 13:43:59.746 DEBUG [15433]: Database connection successful -- 13:43:59.746 INFO [15433]: _SERVER found -- 13:43:59.746 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 13:43:59.746 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 13:43:59.746 INFO [15433]: QUERY_STRING = -- 13:43:59.746 INFO [15433]: HTTP_X_FORWARDED_FOR = 104.168.166.234 -- 13:43:59.778 INFO [15433]: COREGRADE is stopping... -- 13:43:59.778 DEBUG [15433]: Closing database connection -- 13:43:59.778 SQL [15433]: pgsql_close() -- 13:44:00.809 INFO [15433]: COREGRADE is starting... -- 13:44:00.809 INFO [15433]: Version from config: 1.0 -- 13:44:00.809 DEBUG [15433]: Connecting to database... -- 13:44:00.809 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:44:00.809 SQL [15433]: pgsql_db_connect() -- 13:44:00.813 DEBUG [15433]: Database connection successful -- 13:44:00.813 INFO [15433]: _SERVER found -- 13:44:00.813 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 13:44:00.813 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 13:44:00.813 INFO [15433]: QUERY_STRING = -- 13:44:00.813 INFO [15433]: HTTP_X_FORWARDED_FOR = 192.119.73.107 -- 13:44:00.844 INFO [15433]: COREGRADE is stopping... -- 13:44:00.844 DEBUG [15433]: Closing database connection -- 13:44:00.844 SQL [15433]: pgsql_close() -- 13:44:09.446 INFO [15367]: COREGRADE is starting... -- 13:44:09.446 INFO [15367]: Version from config: 1.0 -- 13:44:09.447 DEBUG [15367]: Connecting to database... -- 13:44:09.447 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:44:09.447 SQL [15367]: pgsql_db_connect() -- 13:44:09.451 DEBUG [15367]: Database connection successful -- 13:44:09.451 INFO [15367]: _SERVER found -- 13:44:09.451 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 13:44:09.451 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 13:44:09.451 INFO [15367]: QUERY_STRING = -- 13:44:09.451 INFO [15367]: HTTP_X_FORWARDED_FOR = 192.119.73.107 -- 13:44:09.483 INFO [15367]: COREGRADE is stopping... -- 13:44:09.483 DEBUG [15367]: Closing database connection -- 13:44:09.483 SQL [15367]: pgsql_close() -- 13:44:11.233 INFO [15367]: COREGRADE is starting... -- 13:44:11.233 INFO [15367]: Version from config: 1.0 -- 13:44:11.233 DEBUG [15367]: Connecting to database... -- 13:44:11.233 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:44:11.233 SQL [15367]: pgsql_db_connect() -- 13:44:11.237 DEBUG [15367]: Database connection successful -- 13:44:11.237 INFO [15367]: _SERVER found -- 13:44:11.237 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 13:44:11.237 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 13:44:11.237 INFO [15367]: QUERY_STRING = -- 13:44:11.237 INFO [15367]: HTTP_X_FORWARDED_FOR = 104.168.166.234 -- 13:44:11.268 INFO [15367]: COREGRADE is stopping... -- 13:44:11.268 DEBUG [15367]: Closing database connection -- 13:44:11.268 SQL [15367]: pgsql_close() -- 13:45:07.144 INFO [15434]: COREGRADE is starting... -- 13:45:07.144 INFO [15434]: Version from config: 1.0 -- 13:45:07.144 DEBUG [15434]: Connecting to database... -- 13:45:07.144 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:45:07.144 SQL [15434]: pgsql_db_connect() -- 13:45:07.148 DEBUG [15434]: Database connection successful -- 13:45:07.148 INFO [15434]: _SERVER found -- 13:45:07.148 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 13:45:07.148 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 13:45:07.148 INFO [15434]: QUERY_STRING = -- 13:45:07.148 INFO [15434]: HTTP_X_FORWARDED_FOR = 192.236.192.6 -- 13:45:07.180 INFO [15434]: COREGRADE is stopping... -- 13:45:07.180 DEBUG [15434]: Closing database connection -- 13:45:07.180 SQL [15434]: pgsql_close() -- 13:45:18.270 INFO [15369]: COREGRADE is starting... -- 13:45:18.271 INFO [15369]: Version from config: 1.0 -- 13:45:18.271 DEBUG [15369]: Connecting to database... -- 13:45:18.271 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:45:18.271 SQL [15369]: pgsql_db_connect() -- 13:45:18.275 DEBUG [15369]: Database connection successful -- 13:45:18.275 INFO [15369]: _SERVER found -- 13:45:18.275 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 13:45:18.275 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 13:45:18.275 INFO [15369]: QUERY_STRING = -- 13:45:18.275 INFO [15369]: HTTP_X_FORWARDED_FOR = 192.236.192.119 -- 13:45:18.307 INFO [15369]: COREGRADE is stopping... -- 13:45:18.307 DEBUG [15369]: Closing database connection -- 13:45:18.307 SQL [15369]: pgsql_close() -- 13:45:57.141 INFO [15366]: COREGRADE is starting... -- 13:45:57.141 INFO [15366]: Version from config: 1.0 -- 13:45:57.141 DEBUG [15366]: Connecting to database... -- 13:45:57.141 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:45:57.141 SQL [15366]: pgsql_db_connect() -- 13:45:57.145 DEBUG [15366]: Database connection successful -- 13:45:57.145 INFO [15366]: _SERVER found -- 13:45:57.145 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 13:45:57.145 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 13:45:57.145 INFO [15366]: QUERY_STRING = -- 13:45:57.145 INFO [15366]: HTTP_X_FORWARDED_FOR = 192.236.162.232 -- 13:45:57.178 INFO [15366]: COREGRADE is stopping... -- 13:45:57.178 DEBUG [15366]: Closing database connection -- 13:45:57.178 SQL [15366]: pgsql_close() -- 13:46:01.424 INFO [15366]: COREGRADE is starting... -- 13:46:01.424 INFO [15366]: Version from config: 1.0 -- 13:46:01.424 DEBUG [15366]: Connecting to database... -- 13:46:01.424 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:46:01.425 SQL [15366]: pgsql_db_connect() -- 13:46:01.429 DEBUG [15366]: Database connection successful -- 13:46:01.429 INFO [15366]: _SERVER found -- 13:46:01.429 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 13:46:01.429 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 13:46:01.429 INFO [15366]: QUERY_STRING = -- 13:46:01.429 INFO [15366]: HTTP_X_FORWARDED_FOR = 142.11.227.204 -- 13:46:01.460 INFO [15366]: COREGRADE is stopping... -- 13:46:01.460 DEBUG [15366]: Closing database connection -- 13:46:01.460 SQL [15366]: pgsql_close() -- 13:46:57.285 INFO [15370]: COREGRADE is starting... -- 13:46:57.285 INFO [15370]: Version from config: 1.0 -- 13:46:57.285 DEBUG [15370]: Connecting to database... -- 13:46:57.285 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:46:57.285 SQL [15370]: pgsql_db_connect() -- 13:46:57.289 DEBUG [15370]: Database connection successful -- 13:46:57.289 INFO [15370]: _SERVER found -- 13:46:57.289 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 13:46:57.289 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 13:46:57.289 INFO [15370]: QUERY_STRING = -- 13:46:57.289 INFO [15370]: HTTP_X_FORWARDED_FOR = 104.168.166.234 -- 13:46:57.322 INFO [15370]: COREGRADE is stopping... -- 13:46:57.322 DEBUG [15370]: Closing database connection -- 13:46:57.322 SQL [15370]: pgsql_close() -- 13:46:57.550 INFO [15370]: COREGRADE is starting... -- 13:46:57.550 INFO [15370]: Version from config: 1.0 -- 13:46:57.550 DEBUG [15370]: Connecting to database... -- 13:46:57.550 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:46:57.550 SQL [15370]: pgsql_db_connect() -- 13:46:57.554 DEBUG [15370]: Database connection successful -- 13:46:57.554 INFO [15370]: _SERVER found -- 13:46:57.554 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 13:46:57.554 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 13:46:57.554 INFO [15370]: QUERY_STRING = -- 13:46:57.554 INFO [15370]: HTTP_X_FORWARDED_FOR = 192.236.163.117 -- 13:46:57.586 INFO [15370]: COREGRADE is stopping... -- 13:46:57.586 DEBUG [15370]: Closing database connection -- 13:46:57.586 SQL [15370]: pgsql_close() -- 13:47:05.404 INFO [15371]: COREGRADE is starting... -- 13:47:05.404 INFO [15371]: Version from config: 1.0 -- 13:47:05.404 DEBUG [15371]: Connecting to database... -- 13:47:05.404 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:47:05.404 SQL [15371]: pgsql_db_connect() -- 13:47:05.409 DEBUG [15371]: Database connection successful -- 13:47:05.409 INFO [15371]: _SERVER found -- 13:47:05.409 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 13:47:05.409 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 13:47:05.409 INFO [15371]: QUERY_STRING = -- 13:47:05.409 INFO [15371]: HTTP_X_FORWARDED_FOR = 104.168.194.148 -- 13:47:05.440 INFO [15371]: COREGRADE is stopping... -- 13:47:05.441 DEBUG [15371]: Closing database connection -- 13:47:05.441 SQL [15371]: pgsql_close() -- 13:47:10.982 INFO [15429]: COREGRADE is starting... -- 13:47:10.982 INFO [15429]: Version from config: 1.0 -- 13:47:10.982 DEBUG [15429]: Connecting to database... -- 13:47:10.982 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:47:10.982 SQL [15429]: pgsql_db_connect() -- 13:47:10.986 DEBUG [15429]: Database connection successful -- 13:47:10.986 INFO [15429]: _SERVER found -- 13:47:10.986 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 13:47:10.986 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 13:47:10.986 INFO [15429]: QUERY_STRING = -- 13:47:10.986 INFO [15429]: HTTP_X_FORWARDED_FOR = 104.168.194.148 -- 13:47:11.018 INFO [15429]: COREGRADE is stopping... -- 13:47:11.018 DEBUG [15429]: Closing database connection -- 13:47:11.018 SQL [15429]: pgsql_close() -- 13:47:16.253 INFO [15433]: COREGRADE is starting... -- 13:47:16.254 INFO [15433]: Version from config: 1.0 -- 13:47:16.254 DEBUG [15433]: Connecting to database... -- 13:47:16.254 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:47:16.254 SQL [15433]: pgsql_db_connect() -- 13:47:16.258 DEBUG [15433]: Database connection successful -- 13:47:16.258 INFO [15433]: _SERVER found -- 13:47:16.258 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 13:47:16.258 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 13:47:16.258 INFO [15433]: QUERY_STRING = -- 13:47:16.258 INFO [15433]: HTTP_X_FORWARDED_FOR = 192.236.163.117 -- 13:47:16.289 INFO [15433]: COREGRADE is stopping... -- 13:47:16.289 DEBUG [15433]: Closing database connection -- 13:47:16.289 SQL [15433]: pgsql_close() -- 13:47:18.917 INFO [15433]: COREGRADE is starting... -- 13:47:18.918 INFO [15433]: Version from config: 1.0 -- 13:47:18.918 DEBUG [15433]: Connecting to database... -- 13:47:18.918 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:47:18.918 SQL [15433]: pgsql_db_connect() -- 13:47:18.922 DEBUG [15433]: Database connection successful -- 13:47:18.922 INFO [15433]: _SERVER found -- 13:47:18.922 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 13:47:18.922 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 13:47:18.922 INFO [15433]: QUERY_STRING = -- 13:47:18.922 INFO [15433]: HTTP_X_FORWARDED_FOR = 192.236.163.117 -- 13:47:18.953 INFO [15433]: COREGRADE is stopping... -- 13:47:18.953 DEBUG [15433]: Closing database connection -- 13:47:18.953 SQL [15433]: pgsql_close() -- 15:43:48.041 INFO [15366]: COREGRADE is starting... -- 15:43:48.042 INFO [15366]: Version from config: 1.0 -- 15:43:48.042 DEBUG [15366]: Connecting to database... -- 15:43:48.042 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:43:48.042 SQL [15366]: pgsql_db_connect() -- 15:43:48.046 DEBUG [15366]: Database connection successful -- 15:43:48.046 INFO [15366]: _SERVER found -- 15:43:48.046 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 15:43:48.046 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 15:43:48.046 INFO [15366]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584 -- 15:43:48.046 INFO [15366]: QUERY_STRING = /auth -- 15:43:48.046 INFO [15366]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:43:48.083 INFO [15366]: COREGRADE is stopping... -- 15:43:48.083 DEBUG [15366]: Closing database connection -- 15:43:48.083 SQL [15366]: pgsql_close() -- 15:43:48.464 INFO [15366]: COREGRADE is starting... -- 15:43:48.465 INFO [15366]: Version from config: 1.0 -- 15:43:48.465 DEBUG [15366]: Connecting to database... -- 15:43:48.465 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:43:48.465 SQL [15366]: pgsql_db_connect() -- 15:43:48.469 DEBUG [15366]: Database connection successful -- 15:43:48.469 INFO [15366]: _SERVER found -- 15:43:48.469 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 15:43:48.469 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 15:43:48.469 INFO [15366]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1053642110.1587247584; ci_session=1ifdt5ffa44p732gcrc7bsllq4cglmlo -- 15:43:48.469 INFO [15366]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:43:48.469 INFO [15366]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:43:48.480 INFO [15366]: COREGRADE is stopping... -- 15:43:48.481 DEBUG [15366]: Closing database connection -- 15:43:48.481 SQL [15366]: pgsql_close() -- 19:13:37.612 INFO [15370]: COREGRADE is starting... -- 19:13:37.612 INFO [15370]: Version from config: 1.0 -- 19:13:37.612 DEBUG [15370]: Connecting to database... -- 19:13:37.612 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:13:37.612 SQL [15370]: pgsql_db_connect() -- 19:13:37.617 DEBUG [15370]: Database connection successful -- 19:13:37.617 INFO [15370]: _SERVER found -- 19:13:37.617 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 19:13:37.617 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 19:13:37.617 INFO [15370]: QUERY_STRING = /wp-login.php -- 19:13:37.617 INFO [15370]: HTTP_X_FORWARDED_FOR = 46.105.99.163 -- 19:13:37.632 INFO [15370]: COREGRADE is stopping... -- 19:13:37.632 DEBUG [15370]: Closing database connection -- 19:13:37.632 SQL [15370]: pgsql_close() -- 19:14:50.646 INFO [15371]: COREGRADE is starting... -- 19:14:50.647 INFO [15371]: Version from config: 1.0 -- 19:14:50.647 DEBUG [15371]: Connecting to database... -- 19:14:50.647 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:14:50.647 SQL [15371]: pgsql_db_connect() -- 19:14:50.651 DEBUG [15371]: Database connection successful -- 19:14:50.651 INFO [15371]: _SERVER found -- 19:14:50.651 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 19:14:50.651 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 19:14:50.651 INFO [15371]: QUERY_STRING = /robots.txt -- 19:14:50.651 INFO [15371]: HTTP_X_FORWARDED_FOR = 46.105.99.163 -- 19:14:50.676 INFO [15371]: COREGRADE is stopping... -- 19:14:50.676 DEBUG [15371]: Closing database connection -- 19:14:50.676 SQL [15371]: pgsql_close() -- 00:21:48.288 INFO [15429]: COREGRADE is starting... -- 00:21:48.289 INFO [15429]: Version from config: 1.0 -- 00:21:48.289 DEBUG [15429]: Connecting to database... -- 00:21:48.289 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:21:48.289 SQL [15429]: pgsql_db_connect() -- 00:21:48.294 DEBUG [15429]: Database connection successful -- 00:21:48.294 INFO [15429]: _SERVER found -- 00:21:48.294 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 00:21:48.294 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 00:21:48.294 INFO [15429]: QUERY_STRING = /.well-known/acme-challenge/gxBhG2rKUJz0tixMeqSigiIar8f-h6svSN9uhMAdWjk -- 00:21:48.294 INFO [15429]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 00:21:48.311 INFO [15429]: COREGRADE is stopping... -- 00:21:48.311 DEBUG [15429]: Closing database connection -- 00:21:48.311 SQL [15429]: pgsql_close() -- 00:21:48.483 INFO [15429]: COREGRADE is starting... -- 00:21:48.483 INFO [15429]: Version from config: 1.0 -- 00:21:48.483 DEBUG [15429]: Connecting to database... -- 00:21:48.483 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:21:48.483 SQL [15429]: pgsql_db_connect() -- 00:21:48.487 DEBUG [15429]: Database connection successful -- 00:21:48.487 INFO [15429]: _SERVER found -- 00:21:48.487 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 00:21:48.487 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 00:21:48.487 INFO [15429]: QUERY_STRING = /.well-known/acme-challenge/gxBhG2rKUJz0tixMeqSigiIar8f-h6svSN9uhMAdWjk -- 00:21:48.487 INFO [15429]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 00:21:48.499 INFO [15429]: COREGRADE is stopping... -- 00:21:48.499 DEBUG [15429]: Closing database connection -- 00:21:48.499 SQL [15429]: pgsql_close() -- 00:21:48.624 INFO [15429]: COREGRADE is starting... -- 00:21:48.624 INFO [15429]: Version from config: 1.0 -- 00:21:48.624 DEBUG [15429]: Connecting to database... -- 00:21:48.624 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:21:48.624 SQL [15429]: pgsql_db_connect() -- 00:21:48.628 DEBUG [15429]: Database connection successful -- 00:21:48.628 INFO [15429]: _SERVER found -- 00:21:48.628 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 00:21:48.628 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 00:21:48.628 INFO [15429]: QUERY_STRING = /.well-known/acme-challenge/gxBhG2rKUJz0tixMeqSigiIar8f-h6svSN9uhMAdWjk -- 00:21:48.628 INFO [15429]: HTTP_X_FORWARDED_FOR = 52.28.236.88 -- 00:21:48.639 INFO [15429]: COREGRADE is stopping... -- 00:21:48.639 DEBUG [15429]: Closing database connection -- 00:21:48.639 SQL [15429]: pgsql_close() -- 00:22:51.380 INFO [15367]: COREGRADE is starting... -- 00:22:51.381 INFO [15367]: Version from config: 1.0 -- 00:22:51.381 DEBUG [15367]: Connecting to database... -- 00:22:51.381 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:22:51.381 SQL [15367]: pgsql_db_connect() -- 00:22:51.385 DEBUG [15367]: Database connection successful -- 00:22:51.385 INFO [15367]: _SERVER found -- 00:22:51.385 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 00:22:51.385 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 00:22:51.385 INFO [15367]: QUERY_STRING = -- 00:22:51.385 INFO [15367]: HTTP_X_FORWARDED_FOR = 113.172.42.116 -- 00:22:51.420 INFO [15367]: COREGRADE is stopping... -- 00:22:51.420 DEBUG [15367]: Closing database connection -- 00:22:51.420 SQL [15367]: pgsql_close() -- 02:14:41.204 INFO [15369]: COREGRADE is starting... -- 02:14:41.205 INFO [15369]: Version from config: 1.0 -- 02:14:41.205 DEBUG [15369]: Connecting to database... -- 02:14:41.205 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:14:41.205 SQL [15369]: pgsql_db_connect() -- 02:14:41.209 DEBUG [15369]: Database connection successful -- 02:14:41.209 INFO [15369]: _SERVER found -- 02:14:41.209 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 02:14:41.209 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 02:14:41.209 INFO [15369]: QUERY_STRING = -- 02:14:41.209 INFO [15369]: HTTP_X_FORWARDED_FOR = 185.40.4.48 -- 02:14:41.247 INFO [15369]: COREGRADE is stopping... -- 02:14:41.247 DEBUG [15369]: Closing database connection -- 02:14:41.247 SQL [15369]: pgsql_close() -- 09:50:05.783 INFO [15434]: COREGRADE is starting... -- 09:50:05.783 INFO [15434]: Version from config: 1.0 -- 09:50:05.783 DEBUG [15434]: Connecting to database... -- 09:50:05.783 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:50:05.784 SQL [15434]: pgsql_db_connect() -- 09:50:05.788 DEBUG [15434]: Database connection successful -- 09:50:05.788 INFO [15434]: _SERVER found -- 09:50:05.788 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 09:50:05.788 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 09:50:05.788 INFO [15434]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.436899636.1587281501 -- 09:50:05.788 INFO [15434]: QUERY_STRING = /auth -- 09:50:05.788 INFO [15434]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:50:05.829 INFO [15434]: COREGRADE is stopping... -- 09:50:05.829 DEBUG [15434]: Closing database connection -- 09:50:05.829 SQL [15434]: pgsql_close() -- 09:50:13.290 INFO [15434]: COREGRADE is starting... -- 09:50:13.290 INFO [15434]: Version from config: 1.0 -- 09:50:13.290 DEBUG [15434]: Connecting to database... -- 09:50:13.290 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:50:13.290 SQL [15434]: pgsql_db_connect() -- 09:50:13.294 DEBUG [15434]: Database connection successful -- 09:50:13.294 INFO [15434]: _SERVER found -- 09:50:13.294 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 09:50:13.294 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 09:50:13.294 INFO [15434]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.436899636.1587281501; ci_session=3hgepfj30l8m7psga87moampo08tmc5f -- 09:50:13.294 INFO [15434]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 09:50:13.294 INFO [15434]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:50:13.306 INFO [15434]: COREGRADE is stopping... -- 09:50:13.306 DEBUG [15434]: Closing database connection -- 09:50:13.306 SQL [15434]: pgsql_close() -- 11:47:10.991 INFO [15366]: COREGRADE is starting... -- 11:47:10.991 INFO [15366]: Version from config: 1.0 -- 11:47:10.991 DEBUG [15366]: Connecting to database... -- 11:47:10.991 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:47:10.991 SQL [15366]: pgsql_db_connect() -- 11:47:11.031 INFO [15366]: COREGRADE is starting... -- 11:47:11.032 INFO [15366]: Version from config: 1.0 -- 11:47:11.032 DEBUG [15366]: Connecting to database... -- 11:47:11.032 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:47:11.032 SQL [15366]: pgsql_db_connect() -- 11:47:11.036 DEBUG [15366]: Database connection successful -- 11:47:11.036 INFO [15366]: _SERVER found -- 11:47:11.036 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 11:47:11.036 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 11:47:11.036 INFO [15366]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.436899636.1587281501; ci_session=3hgepfj30l8m7psga87moampo08tmc5f -- 11:47:11.036 INFO [15366]: QUERY_STRING = -- 11:47:11.036 INFO [15366]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:47:11.036 INFO [15366]: SystemStatus()09-09-********~************ -- 11:47:11.036 INFO [15366]: long coregrade_api_main(CVars in, CVars &out) -- 11:47:11.036 INFO [15366]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 11:47:11.036 INFO [15366]: account calls -- 11:47:11.036 INFO [15366]: account_calls() -- 11:47:11.036 INFO [15366]: LoginCoreGradeAccount() -- 11:47:11.036 FLOG_MAX [15366]: REQ_STRING(username) -- 11:47:11.036 FLOG_MAX [15366]: REQ_STRING(password) -- 11:47:11.036 FLOG_MAX [15366]: REQ_STRING(sessionid) -- 11:47:11.036 FLOG_MAX [15366]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:47:11.036 SQL [15366]: pgsql_query() -- 11:47:11.036 SQL [15366]: About to run query: -- 11:47:11.036 SQL [15366]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678') -- 11:47:11.040 SQL [15366]: Found rows: 1 -- 11:47:11.040 FLOG_MAX [15366]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678')) num_cols=16 -- 11:47:11.040 INFO [15366]: long SessionCheck(long uid, const char *sessionid, int create ) -- 11:47:11.040 SQL [15366]: pgsql_exec() -- 11:47:11.040 SQL [15366]: About to run query: -- 11:47:11.040 SQL [15366]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 11:47:11.042 SQL [15366]: PQcmdTuples: 1 -- 11:47:11.042 SQL [15366]: Affected rows: 1 -- 11:47:11.042 SQL [15366]: pgsql_exec() -- 11:47:11.042 SQL [15366]: About to run query: -- 11:47:11.042 SQL [15366]: DELETE FROM members_session WHERE member_id=7 -- 11:47:11.042 SQL [15366]: PQcmdTuples: 0 -- 11:47:11.042 SQL [15366]: Affected rows: 0 -- 11:47:11.042 SQL [15366]: pgsql_query() -- 11:47:11.042 SQL [15366]: About to run query: -- 11:47:11.042 SQL [15366]: SELECT * FROM members_session WHERE member_id=7 AND session<>'E66F443CA574A4F2EE786FFF524FEB4B' -- 11:47:11.043 SQL [15366]: Found rows: 0 -- 11:47:11.043 SQL [15366]: Found rows: 0 -- 11:47:11.043 FLOG_MAX [15366]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:47:11.043 SQL [15366]: pgsql_query() -- 11:47:11.043 SQL [15366]: About to run query: -- 11:47:11.043 SQL [15366]: SELECT * FROM members_session WHERE member_id=7 AND session='E66F443CA574A4F2EE786FFF524FEB4B' -- 11:47:11.043 SQL [15366]: Found rows: 0 -- 11:47:11.043 SQL [15366]: Found rows: 0 -- 11:47:11.043 FLOG_MAX [15366]: insert_db_record() -- 11:47:11.043 SQL [15366]: pgsql_exec() -- 11:47:11.043 SQL [15366]: About to run query: -- 11:47:11.043 SQL [15366]: INSERT INTO members_session (member_id,session) VALUES ('7','E66F443CA574A4F2EE786FFF524FEB4B') -- 11:47:11.045 SQL [15366]: PQcmdTuples: 1 -- 11:47:11.045 SQL [15366]: Affected rows: 1 -- 11:47:11.045 FLOG_MAX [15366]: SELECT currval('members_session_id_seq') -- 11:47:11.045 SQL [15366]: pgsql_query() -- 11:47:11.045 SQL [15366]: About to run query: -- 11:47:11.045 SQL [15366]: SELECT currval('members_session_id_seq') -- 11:47:11.046 SQL [15366]: Found rows: 1 -- 11:47:11.046 INFO [15366]: CreateDefaultPage() -- 11:47:11.046 FLOG_MAX [15366]: long load_db_record( CVars &rec, const char * query, ... ) -- 11:47:11.046 SQL [15366]: pgsql_query() -- 11:47:11.046 SQL [15366]: About to run query: -- 11:47:11.046 SQL [15366]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 11:47:11.046 SQL [15366]: Found rows: 1 -- 11:47:11.046 FLOG_MAX [15366]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 11:47:11.046 SQL [15366]: pgsql_query() -- 11:47:11.046 SQL [15366]: About to run query: -- 11:47:11.046 SQL [15366]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 11:47:11.047 SQL [15366]: Found rows: 1 -- 11:47:11.047 INFO [15366]: /CreateDefaultPage() -- 11:47:11.047 INFO [15366]: /LoginCoreGradeAccount() -- 11:47:11.047 INFO [15366]: RET: added=2020-02-05 09:42:12.816064 -- 11:47:11.047 INFO [15366]: RET: email=tokslaw@chiefsoft.com -- 11:47:11.047 INFO [15366]: RET: firstname=Tokunbo -- 11:47:11.047 INFO [15366]: RET: folder=5D06B187B1E2285A63AD1D0ECB670D98 -- 11:47:11.047 INFO [15366]: RET: id=7 -- 11:47:11.047 INFO [15366]: RET: last_login= -- 11:47:11.047 INFO [15366]: RET: lastname=Lawal -- 11:47:11.047 INFO [15366]: RET: loc=192.168.1.13 -- 11:47:11.047 INFO [15366]: RET: member_id=7 -- 11:47:11.047 INFO [15366]: RET: password=25d55ad283aa400af464c76d713c07ad -- 11:47:11.047 INFO [15366]: RET: phone= -- 11:47:11.047 INFO [15366]: RET: pid= -- 11:47:11.047 INFO [15366]: RET: result=YES I GET TO BACK END -- 11:47:11.047 INFO [15366]: RET: sessionid=E66F443CA574A4F2EE786FFF524FEB4B -- 11:47:11.047 INFO [15366]: RET: status=1 -- 11:47:11.047 INFO [15366]: RET: stauts=OK -- 11:47:11.047 INFO [15366]: RET: username=tokslaw@chiefsoft.com -- 11:47:11.047 INFO [15366]: RET: verified= -- 11:47:11.048 INFO [15366]: COREGRADE is stopping... -- 11:47:11.048 DEBUG [15366]: Closing database connection -- 11:47:11.048 SQL [15366]: pgsql_close() -- 11:47:10.996 DEBUG [15366]: Database connection successful -- 11:47:10.996 INFO [15366]: _SERVER found -- 11:47:10.996 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 11:47:10.996 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 11:47:10.996 INFO [15366]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.436899636.1587281501; ci_session=3hgepfj30l8m7psga87moampo08tmc5f -- 11:47:10.996 INFO [15366]: QUERY_STRING = /auth -- 11:47:10.996 INFO [15366]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:47:11.049 INFO [15366]: COREGRADE is stopping... -- 11:47:11.049 DEBUG [15366]: Closing database connection -- 11:47:11.049 SQL [15366]: pgsql_close() -- 11:47:11.079 INFO [15366]: COREGRADE is starting... -- 11:47:11.079 INFO [15366]: Version from config: 1.0 -- 11:47:11.079 DEBUG [15366]: Connecting to database... -- 11:47:11.079 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:47:11.079 SQL [15366]: pgsql_db_connect() -- 11:47:11.083 DEBUG [15366]: Database connection successful -- 11:47:11.083 INFO [15366]: _SERVER found -- 11:47:11.083 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 11:47:11.083 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 11:47:11.083 INFO [15366]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.436899636.1587281501; ci_session=m07epkr1omovis3c00tnl69d9pk0vdsp -- 11:47:11.083 INFO [15366]: QUERY_STRING = /member/index -- 11:47:11.083 INFO [15366]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:47:11.126 INFO [15366]: COREGRADE is stopping... -- 11:47:11.126 DEBUG [15366]: Closing database connection -- 11:47:11.126 SQL [15366]: pgsql_close() -- 11:47:12.184 INFO [15366]: COREGRADE is starting... -- 11:47:12.184 INFO [15366]: Version from config: 1.0 -- 11:47:12.184 DEBUG [15366]: Connecting to database... -- 11:47:12.184 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:47:12.184 SQL [15366]: pgsql_db_connect() -- 11:47:12.188 DEBUG [15366]: Database connection successful -- 11:47:12.188 INFO [15366]: _SERVER found -- 11:47:12.188 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 11:47:12.188 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 11:47:12.188 INFO [15366]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.436899636.1587281501; ci_session=m07epkr1omovis3c00tnl69d9pk0vdsp -- 11:47:12.188 INFO [15366]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 11:47:12.188 INFO [15366]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:47:12.200 INFO [15366]: COREGRADE is stopping... -- 11:47:12.200 DEBUG [15366]: Closing database connection -- 11:47:12.200 SQL [15366]: pgsql_close() -- 11:47:15.952 INFO [15366]: COREGRADE is starting... -- 11:47:15.952 INFO [15366]: Version from config: 1.0 -- 11:47:15.952 DEBUG [15366]: Connecting to database... -- 11:47:15.952 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:47:15.952 SQL [15366]: pgsql_db_connect() -- 11:47:15.956 DEBUG [15366]: Database connection successful -- 11:47:15.956 INFO [15366]: _SERVER found -- 11:47:15.956 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 11:47:15.956 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 11:47:15.956 INFO [15366]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.436899636.1587281501; ci_session=m07epkr1omovis3c00tnl69d9pk0vdsp -- 11:47:15.956 INFO [15366]: QUERY_STRING = /member/classroom -- 11:47:15.956 INFO [15366]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:47:15.999 INFO [15366]: COREGRADE is stopping... -- 11:47:15.999 DEBUG [15366]: Closing database connection -- 11:47:15.999 SQL [15366]: pgsql_close() -- 11:47:18.105 INFO [15366]: COREGRADE is starting... -- 11:47:18.105 INFO [15366]: Version from config: 1.0 -- 11:47:18.105 DEBUG [15366]: Connecting to database... -- 11:47:18.105 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:47:18.105 SQL [15366]: pgsql_db_connect() -- 11:47:18.109 DEBUG [15366]: Database connection successful -- 11:47:18.109 INFO [15366]: _SERVER found -- 11:47:18.109 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 11:47:18.109 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 11:47:18.109 INFO [15366]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.436899636.1587281501; ci_session=m07epkr1omovis3c00tnl69d9pk0vdsp -- 11:47:18.109 INFO [15366]: QUERY_STRING = /member/viewRoom -- 11:47:18.109 INFO [15366]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:47:18.145 INFO [15366]: COREGRADE is stopping... -- 11:47:18.145 DEBUG [15366]: Closing database connection -- 11:47:18.145 SQL [15366]: pgsql_close() -- 11:47:19.779 INFO [15366]: COREGRADE is starting... -- 11:47:19.779 INFO [15366]: Version from config: 1.0 -- 11:47:19.779 DEBUG [15366]: Connecting to database... -- 11:47:19.779 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:47:19.779 SQL [15366]: pgsql_db_connect() -- 11:47:19.783 DEBUG [15366]: Database connection successful -- 11:47:19.783 INFO [15366]: _SERVER found -- 11:47:19.783 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 11:47:19.783 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 11:47:19.783 INFO [15366]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.436899636.1587281501; ci_session=m07epkr1omovis3c00tnl69d9pk0vdsp -- 11:47:19.783 INFO [15366]: QUERY_STRING = /member/viewRoom -- 11:47:19.783 INFO [15366]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:47:19.820 INFO [15366]: COREGRADE is stopping... -- 11:47:19.820 DEBUG [15366]: Closing database connection -- 11:47:19.820 SQL [15366]: pgsql_close() -- 11:47:22.696 INFO [15366]: COREGRADE is starting... -- 11:47:22.697 INFO [15366]: Version from config: 1.0 -- 11:47:22.697 DEBUG [15366]: Connecting to database... -- 11:47:22.697 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:47:22.697 SQL [15366]: pgsql_db_connect() -- 11:47:22.701 DEBUG [15366]: Database connection successful -- 11:47:22.701 INFO [15366]: _SERVER found -- 11:47:22.701 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 11:47:22.701 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 11:47:22.701 INFO [15366]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.436899636.1587281501; ci_session=m07epkr1omovis3c00tnl69d9pk0vdsp -- 11:47:22.701 INFO [15366]: QUERY_STRING = /member/viewRoom -- 11:47:22.701 INFO [15366]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:47:22.737 INFO [15366]: COREGRADE is stopping... -- 11:47:22.737 DEBUG [15366]: Closing database connection -- 11:47:22.737 SQL [15366]: pgsql_close() -- 11:47:27.209 INFO [15366]: COREGRADE is starting... -- 11:47:27.209 INFO [15366]: Version from config: 1.0 -- 11:47:27.210 DEBUG [15366]: Connecting to database... -- 11:47:27.210 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:47:27.210 SQL [15366]: pgsql_db_connect() -- 11:47:27.214 DEBUG [15366]: Database connection successful -- 11:47:27.214 INFO [15366]: _SERVER found -- 11:47:27.214 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 11:47:27.214 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 11:47:27.214 INFO [15366]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.436899636.1587281501; ci_session=m07epkr1omovis3c00tnl69d9pk0vdsp -- 11:47:27.214 INFO [15366]: QUERY_STRING = /member/viewRoom -- 11:47:27.214 INFO [15366]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 11:47:27.247 INFO [15366]: COREGRADE is stopping... -- 11:47:27.247 DEBUG [15366]: Closing database connection -- 11:47:27.247 SQL [15366]: pgsql_close() -- 14:13:56.053 INFO [15370]: COREGRADE is starting... -- 14:13:56.053 INFO [15370]: Version from config: 1.0 -- 14:13:56.053 DEBUG [15370]: Connecting to database... -- 14:13:56.053 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:13:56.053 SQL [15370]: pgsql_db_connect() -- 14:13:56.058 DEBUG [15370]: Database connection successful -- 14:13:56.058 INFO [15370]: _SERVER found -- 14:13:56.058 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 14:13:56.058 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 14:13:56.058 INFO [15370]: QUERY_STRING = /TP/public/index.php -- 14:13:56.058 INFO [15370]: HTTP_X_FORWARDED_FOR = 108.61.216.68 -- 14:13:56.072 INFO [15370]: COREGRADE is stopping... -- 14:13:56.072 DEBUG [15370]: Closing database connection -- 14:13:56.072 SQL [15370]: pgsql_close() -- 14:13:56.432 INFO [15370]: COREGRADE is starting... -- 14:13:56.433 INFO [15370]: Version from config: 1.0 -- 14:13:56.433 DEBUG [15370]: Connecting to database... -- 14:13:56.433 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:13:56.433 SQL [15370]: pgsql_db_connect() -- 14:13:56.437 DEBUG [15370]: Database connection successful -- 14:13:56.437 INFO [15370]: _SERVER found -- 14:13:56.437 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 14:13:56.437 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 14:13:56.437 INFO [15370]: QUERY_STRING = /TP/index.php -- 14:13:56.437 INFO [15370]: HTTP_X_FORWARDED_FOR = 108.61.216.68 -- 14:13:56.448 INFO [15370]: COREGRADE is stopping... -- 14:13:56.448 DEBUG [15370]: Closing database connection -- 14:13:56.448 SQL [15370]: pgsql_close() -- 14:13:56.868 INFO [15370]: COREGRADE is starting... -- 14:13:56.868 INFO [15370]: Version from config: 1.0 -- 14:13:56.868 DEBUG [15370]: Connecting to database... -- 14:13:56.868 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:13:56.868 SQL [15370]: pgsql_db_connect() -- 14:13:56.872 DEBUG [15370]: Database connection successful -- 14:13:56.872 INFO [15370]: _SERVER found -- 14:13:56.872 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 14:13:56.872 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 14:13:56.872 INFO [15370]: QUERY_STRING = /thinkphp/html/public/index.php -- 14:13:56.872 INFO [15370]: HTTP_X_FORWARDED_FOR = 108.61.216.68 -- 14:13:56.884 INFO [15370]: COREGRADE is stopping... -- 14:13:56.884 DEBUG [15370]: Closing database connection -- 14:13:56.884 SQL [15370]: pgsql_close() -- 14:13:57.244 INFO [15370]: COREGRADE is starting... -- 14:13:57.244 INFO [15370]: Version from config: 1.0 -- 14:13:57.244 DEBUG [15370]: Connecting to database... -- 14:13:57.244 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:13:57.244 SQL [15370]: pgsql_db_connect() -- 14:13:57.248 DEBUG [15370]: Database connection successful -- 14:13:57.248 INFO [15370]: _SERVER found -- 14:13:57.248 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 14:13:57.248 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 14:13:57.248 INFO [15370]: QUERY_STRING = /html/public/index.php -- 14:13:57.248 INFO [15370]: HTTP_X_FORWARDED_FOR = 108.61.216.68 -- 14:13:57.260 INFO [15370]: COREGRADE is stopping... -- 14:13:57.260 DEBUG [15370]: Closing database connection -- 14:13:57.260 SQL [15370]: pgsql_close() -- 14:13:57.611 INFO [15371]: COREGRADE is starting... -- 14:13:57.611 INFO [15371]: Version from config: 1.0 -- 14:13:57.611 DEBUG [15371]: Connecting to database... -- 14:13:57.611 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:13:57.611 SQL [15371]: pgsql_db_connect() -- 14:13:57.615 DEBUG [15371]: Database connection successful -- 14:13:57.615 INFO [15371]: _SERVER found -- 14:13:57.615 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 14:13:57.615 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 14:13:57.615 INFO [15371]: QUERY_STRING = /public/index.php -- 14:13:57.615 INFO [15371]: HTTP_X_FORWARDED_FOR = 108.61.216.68 -- 14:13:57.630 INFO [15371]: COREGRADE is stopping... -- 14:13:57.631 DEBUG [15371]: Closing database connection -- 14:13:57.631 SQL [15371]: pgsql_close() -- 14:13:58.112 INFO [15371]: COREGRADE is starting... -- 14:13:58.113 INFO [15371]: Version from config: 1.0 -- 14:13:58.113 DEBUG [15371]: Connecting to database... -- 14:13:58.113 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:13:58.113 SQL [15371]: pgsql_db_connect() -- 14:13:58.117 DEBUG [15371]: Database connection successful -- 14:13:58.117 INFO [15371]: _SERVER found -- 14:13:58.117 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 14:13:58.117 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 14:13:58.117 INFO [15371]: QUERY_STRING = /TP/html/public/index.php -- 14:13:58.117 INFO [15371]: HTTP_X_FORWARDED_FOR = 108.61.216.68 -- 14:13:58.128 INFO [15371]: COREGRADE is stopping... -- 14:13:58.128 DEBUG [15371]: Closing database connection -- 14:13:58.128 SQL [15371]: pgsql_close() -- 14:13:58.471 INFO [15370]: COREGRADE is starting... -- 14:13:58.471 INFO [15370]: Version from config: 1.0 -- 14:13:58.471 DEBUG [15370]: Connecting to database... -- 14:13:58.471 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:13:58.471 SQL [15370]: pgsql_db_connect() -- 14:13:58.475 DEBUG [15370]: Database connection successful -- 14:13:58.475 INFO [15370]: _SERVER found -- 14:13:58.475 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 14:13:58.475 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 14:13:58.475 INFO [15370]: QUERY_STRING = /elrekt.php -- 14:13:58.475 INFO [15370]: HTTP_X_FORWARDED_FOR = 108.61.216.68 -- 14:13:58.487 INFO [15370]: COREGRADE is stopping... -- 14:13:58.487 DEBUG [15370]: Closing database connection -- 14:13:58.487 SQL [15370]: pgsql_close() -- 14:13:58.843 INFO [15370]: COREGRADE is starting... -- 14:13:58.843 INFO [15370]: Version from config: 1.0 -- 14:13:58.843 DEBUG [15370]: Connecting to database... -- 14:13:58.843 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:13:58.843 SQL [15370]: pgsql_db_connect() -- 14:13:58.847 DEBUG [15370]: Database connection successful -- 14:13:58.847 INFO [15370]: _SERVER found -- 14:13:58.847 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 14:13:58.847 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 14:13:58.847 INFO [15370]: QUERY_STRING = -- 14:13:58.847 INFO [15370]: HTTP_X_FORWARDED_FOR = 108.61.216.68 -- 14:13:58.883 INFO [15370]: COREGRADE is stopping... -- 14:13:58.883 DEBUG [15370]: Closing database connection -- 14:13:58.883 SQL [15370]: pgsql_close() -- 14:13:59.228 INFO [15370]: COREGRADE is starting... -- 14:13:59.229 INFO [15370]: Version from config: 1.0 -- 14:13:59.229 DEBUG [15370]: Connecting to database... -- 14:13:59.229 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:13:59.229 SQL [15370]: pgsql_db_connect() -- 14:13:59.233 DEBUG [15370]: Database connection successful -- 14:13:59.233 INFO [15370]: _SERVER found -- 14:13:59.233 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 14:13:59.233 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 14:13:59.233 INFO [15370]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 14:13:59.233 INFO [15370]: HTTP_X_FORWARDED_FOR = 108.61.216.68 -- 14:13:59.264 INFO [15370]: COREGRADE is stopping... -- 14:13:59.264 DEBUG [15370]: Closing database connection -- 14:13:59.264 SQL [15370]: pgsql_close() -- 14:13:59.610 INFO [15370]: COREGRADE is starting... -- 14:13:59.611 INFO [15370]: Version from config: 1.0 -- 14:13:59.611 DEBUG [15370]: Connecting to database... -- 14:13:59.611 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:13:59.611 SQL [15370]: pgsql_db_connect() -- 14:13:59.615 DEBUG [15370]: Database connection successful -- 14:13:59.615 INFO [15370]: _SERVER found -- 14:13:59.615 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 14:13:59.615 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 14:13:59.615 INFO [15370]: QUERY_STRING = s=captcha -- 14:13:59.615 INFO [15370]: HTTP_X_FORWARDED_FOR = 108.61.216.68 -- 14:13:59.646 INFO [15370]: COREGRADE is stopping... -- 14:13:59.646 DEBUG [15370]: Closing database connection -- 14:13:59.646 SQL [15370]: pgsql_close() -- 14:13:59.989 INFO [15370]: COREGRADE is starting... -- 14:13:59.989 INFO [15370]: Version from config: 1.0 -- 14:13:59.989 DEBUG [15370]: Connecting to database... -- 14:13:59.989 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:13:59.989 SQL [15370]: pgsql_db_connect() -- 14:13:59.994 DEBUG [15370]: Database connection successful -- 14:13:59.994 INFO [15370]: _SERVER found -- 14:13:59.994 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 14:13:59.994 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 14:13:59.994 INFO [15370]: QUERY_STRING = -- 14:13:59.994 INFO [15370]: HTTP_X_FORWARDED_FOR = 108.61.216.68 -- 14:14:00.025 INFO [15370]: COREGRADE is stopping... -- 14:14:00.025 DEBUG [15370]: Closing database connection -- 14:14:00.025 SQL [15370]: pgsql_close() -- 15:12:19.949 INFO [15433]: COREGRADE is starting... -- 15:12:19.950 INFO [15433]: Version from config: 1.0 -- 15:12:19.950 DEBUG [15433]: Connecting to database... -- 15:12:19.950 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:12:19.950 SQL [15433]: pgsql_db_connect() -- 15:12:19.955 DEBUG [15433]: Database connection successful -- 15:12:19.955 INFO [15433]: _SERVER found -- 15:12:19.955 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 15:12:19.955 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 15:12:19.955 INFO [15433]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 15:12:19.955 INFO [15433]: QUERY_STRING = /cp -- 15:12:19.955 INFO [15433]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:12:19.969 INFO [15433]: COREGRADE is stopping... -- 15:12:19.969 DEBUG [15433]: Closing database connection -- 15:12:19.969 SQL [15433]: pgsql_close() -- 15:12:20.344 INFO [15433]: COREGRADE is starting... -- 15:12:20.345 INFO [15433]: Version from config: 1.0 -- 15:12:20.345 DEBUG [15433]: Connecting to database... -- 15:12:20.345 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:12:20.345 SQL [15433]: pgsql_db_connect() -- 15:12:20.349 DEBUG [15433]: Database connection successful -- 15:12:20.349 INFO [15433]: _SERVER found -- 15:12:20.349 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 15:12:20.349 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 15:12:20.349 INFO [15433]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 15:12:20.349 INFO [15433]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:12:20.349 INFO [15433]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:12:20.360 INFO [15433]: COREGRADE is stopping... -- 15:12:20.360 DEBUG [15433]: Closing database connection -- 15:12:20.360 SQL [15433]: pgsql_close() -- 15:56:30.740 INFO [15429]: COREGRADE is starting... -- 15:56:30.741 INFO [15429]: Version from config: 1.0 -- 15:56:30.741 DEBUG [15429]: Connecting to database... -- 15:56:30.741 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:56:30.741 SQL [15429]: pgsql_db_connect() -- 15:56:30.745 DEBUG [15429]: Database connection successful -- 15:56:30.745 INFO [15429]: _SERVER found -- 15:56:30.745 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 15:56:30.745 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 15:56:30.745 INFO [15429]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911 -- 15:56:30.745 INFO [15429]: QUERY_STRING = /auth -- 15:56:30.745 INFO [15429]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:56:30.783 INFO [15429]: COREGRADE is stopping... -- 15:56:30.783 DEBUG [15429]: Closing database connection -- 15:56:30.783 SQL [15429]: pgsql_close() -- 15:56:47.390 INFO [15434]: COREGRADE is starting... -- 15:56:47.390 INFO [15434]: Version from config: 1.0 -- 15:56:47.390 DEBUG [15434]: Connecting to database... -- 15:56:47.390 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:56:47.390 SQL [15434]: pgsql_db_connect() -- 15:56:47.395 DEBUG [15434]: Database connection successful -- 15:56:47.395 INFO [15434]: _SERVER found -- 15:56:47.395 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 15:56:47.395 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 15:56:47.395 INFO [15434]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=n74p1rt8vg3stdl71eju9o7k324l7e08 -- 15:56:47.395 INFO [15434]: QUERY_STRING = /home/cp -- 15:56:47.395 INFO [15434]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:56:47.428 INFO [15434]: COREGRADE is stopping... -- 15:56:47.428 DEBUG [15434]: Closing database connection -- 15:56:47.428 SQL [15434]: pgsql_close() -- 15:56:47.524 INFO [15434]: COREGRADE is starting... -- 15:56:47.524 INFO [15434]: Version from config: 1.0 -- 15:56:47.524 DEBUG [15434]: Connecting to database... -- 15:56:47.524 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:56:47.524 SQL [15434]: pgsql_db_connect() -- 15:56:47.528 DEBUG [15434]: Database connection successful -- 15:56:47.528 INFO [15434]: _SERVER found -- 15:56:47.528 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 15:56:47.528 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 15:56:47.528 INFO [15434]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=n74p1rt8vg3stdl71eju9o7k324l7e08 -- 15:56:47.528 INFO [15434]: QUERY_STRING = /favicon.ico -- 15:56:47.528 INFO [15434]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:56:47.539 INFO [15434]: COREGRADE is stopping... -- 15:56:47.539 DEBUG [15434]: Closing database connection -- 15:56:47.540 SQL [15434]: pgsql_close() -- 16:56:00.205 INFO [15366]: COREGRADE is starting... -- 16:56:00.205 INFO [15366]: Version from config: 1.0 -- 16:56:00.205 DEBUG [15366]: Connecting to database... -- 16:56:00.205 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:00.205 SQL [15366]: pgsql_db_connect() -- 16:56:00.210 DEBUG [15366]: Database connection successful -- 16:56:00.210 INFO [15366]: _SERVER found -- 16:56:00.210 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 16:56:00.210 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 16:56:00.210 INFO [15366]: QUERY_STRING = -- 16:56:00.210 INFO [15366]: HTTP_X_FORWARDED_FOR = 45.143.220.134 -- 16:56:00.248 INFO [15366]: COREGRADE is stopping... -- 16:56:00.248 DEBUG [15366]: Closing database connection -- 16:56:00.248 SQL [15366]: pgsql_close() -- 17:35:45.142 INFO [15371]: COREGRADE is starting... -- 17:35:45.143 INFO [15371]: Version from config: 1.0 -- 17:35:45.143 DEBUG [15371]: Connecting to database... -- 17:35:45.143 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:35:45.143 SQL [15371]: pgsql_db_connect() -- 17:35:45.148 DEBUG [15371]: Database connection successful -- 17:35:45.148 INFO [15371]: _SERVER found -- 17:35:45.148 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 17:35:45.148 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 17:35:45.148 INFO [15371]: QUERY_STRING = -- 17:35:45.148 INFO [15371]: HTTP_X_FORWARDED_FOR = 178.62.9.12 -- 17:35:45.187 INFO [15371]: COREGRADE is stopping... -- 17:35:45.187 DEBUG [15371]: Closing database connection -- 17:35:45.187 SQL [15371]: pgsql_close() -- 22:03:31.513 INFO [15370]: COREGRADE is starting... -- 22:03:31.514 INFO [15370]: Version from config: 1.0 -- 22:03:31.514 DEBUG [15370]: Connecting to database... -- 22:03:31.514 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:03:31.514 SQL [15370]: pgsql_db_connect() -- 22:03:31.519 DEBUG [15370]: Database connection successful -- 22:03:31.519 INFO [15370]: _SERVER found -- 22:03:31.519 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 22:03:31.519 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 22:03:31.519 INFO [15370]: HTTP_COOKIE = _ga=GA1.2.1073336077.1587056389 -- 22:03:31.519 INFO [15370]: QUERY_STRING = -- 22:03:31.519 INFO [15370]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 22:03:31.558 INFO [15370]: COREGRADE is stopping... -- 22:03:31.558 DEBUG [15370]: Closing database connection -- 22:03:31.558 SQL [15370]: pgsql_close() -- 22:03:32.075 INFO [15429]: COREGRADE is starting... -- 22:03:32.075 INFO [15429]: Version from config: 1.0 -- 22:03:32.075 DEBUG [15429]: Connecting to database... -- 22:03:32.075 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:03:32.075 SQL [15429]: pgsql_db_connect() -- 22:03:32.080 DEBUG [15429]: Database connection successful -- 22:03:32.080 INFO [15429]: _SERVER found -- 22:03:32.080 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 22:03:32.080 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 22:03:32.080 INFO [15429]: HTTP_COOKIE = ci_session=fg79thg3pp1u0br2eh3gsibdpe06o1ck; _ga=GA1.2.1073336077.1587056389 -- 22:03:32.080 INFO [15429]: QUERY_STRING = /assets/img/footer_1.jpg -- 22:03:32.080 INFO [15429]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 22:03:32.092 INFO [15429]: COREGRADE is stopping... -- 22:03:32.093 DEBUG [15429]: Closing database connection -- 22:03:32.093 SQL [15429]: pgsql_close() -- 22:08:06.329 INFO [15369]: COREGRADE is starting... -- 22:08:06.329 INFO [15369]: Version from config: 1.0 -- 22:08:06.329 DEBUG [15369]: Connecting to database... -- 22:08:06.329 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:06.329 SQL [15369]: pgsql_db_connect() -- 22:08:06.334 DEBUG [15369]: Database connection successful -- 22:08:06.334 INFO [15369]: _SERVER found -- 22:08:06.334 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 22:08:06.334 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:06.334 INFO [15369]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.1650242061.1587386608 -- 22:08:06.334 INFO [15369]: QUERY_STRING = -- 22:08:06.334 INFO [15369]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:08:06.370 INFO [15369]: COREGRADE is stopping... -- 22:08:06.370 DEBUG [15369]: Closing database connection -- 22:08:06.370 SQL [15369]: pgsql_close() -- 22:08:06.601 INFO [15434]: COREGRADE is starting... -- 22:08:06.602 INFO [15434]: Version from config: 1.0 -- 22:08:06.602 DEBUG [15434]: Connecting to database... -- 22:08:06.602 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:06.602 SQL [15434]: pgsql_db_connect() -- 22:08:06.606 DEBUG [15434]: Database connection successful -- 22:08:06.606 INFO [15434]: _SERVER found -- 22:08:06.606 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 22:08:06.606 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:06.606 INFO [15434]: HTTP_COOKIE = ci_session=7tiailb7vaa5hu23vc21pljv1vcntro3; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.1650242061.1587386608 -- 22:08:06.606 INFO [15434]: QUERY_STRING = /assets/img/footer_1.jpg -- 22:08:06.606 INFO [15434]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:08:06.619 INFO [15434]: COREGRADE is stopping... -- 22:08:06.619 DEBUG [15434]: Closing database connection -- 22:08:06.619 SQL [15434]: pgsql_close() -- 22:08:06.981 INFO [15367]: COREGRADE is starting... -- 22:08:06.981 INFO [15367]: Version from config: 1.0 -- 22:08:06.981 DEBUG [15367]: Connecting to database... -- 22:08:06.981 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:06.981 SQL [15367]: pgsql_db_connect() -- 22:08:06.986 DEBUG [15367]: Database connection successful -- 22:08:06.986 INFO [15367]: _SERVER found -- 22:08:06.986 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 22:08:06.986 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:06.986 INFO [15367]: QUERY_STRING = /apple-touch-icon-precomposed.png -- 22:08:06.986 INFO [15367]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:08:06.999 INFO [15367]: COREGRADE is stopping... -- 22:08:06.999 DEBUG [15367]: Closing database connection -- 22:08:06.999 SQL [15367]: pgsql_close() -- 22:08:07.030 INFO [15367]: COREGRADE is starting... -- 22:08:07.030 INFO [15367]: Version from config: 1.0 -- 22:08:07.030 DEBUG [15367]: Connecting to database... -- 22:08:07.030 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:07.030 SQL [15367]: pgsql_db_connect() -- 22:08:07.034 DEBUG [15367]: Database connection successful -- 22:08:07.034 INFO [15367]: _SERVER found -- 22:08:07.034 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 22:08:07.034 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:07.034 INFO [15367]: QUERY_STRING = /apple-touch-icon.png -- 22:08:07.034 INFO [15367]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:08:07.046 INFO [15367]: COREGRADE is stopping... -- 22:08:07.046 DEBUG [15367]: Closing database connection -- 22:08:07.046 SQL [15367]: pgsql_close() -- 22:08:25.488 INFO [15371]: COREGRADE is starting... -- 22:08:25.489 INFO [15371]: Version from config: 1.0 -- 22:08:25.489 DEBUG [15371]: Connecting to database... -- 22:08:25.489 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:25.489 SQL [15371]: pgsql_db_connect() -- 22:08:25.494 DEBUG [15371]: Database connection successful -- 22:08:25.494 INFO [15371]: _SERVER found -- 22:08:25.494 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 22:08:25.494 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:25.494 INFO [15371]: HTTP_COOKIE = ci_session=fg79thg3pp1u0br2eh3gsibdpe06o1ck; _ga=GA1.2.1073336077.1587056389 -- 22:08:25.494 INFO [15371]: QUERY_STRING = -- 22:08:25.494 INFO [15371]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 22:08:25.528 INFO [15371]: COREGRADE is stopping... -- 22:08:25.528 DEBUG [15371]: Closing database connection -- 22:08:25.528 SQL [15371]: pgsql_close() -- 22:08:25.771 INFO [15371]: COREGRADE is starting... -- 22:08:25.771 INFO [15371]: Version from config: 1.0 -- 22:08:25.771 DEBUG [15371]: Connecting to database... -- 22:08:25.771 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:25.771 SQL [15371]: pgsql_db_connect() -- 22:08:25.776 DEBUG [15371]: Database connection successful -- 22:08:25.776 INFO [15371]: _SERVER found -- 22:08:25.776 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 22:08:25.776 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:25.776 INFO [15371]: HTTP_COOKIE = ci_session=fg79thg3pp1u0br2eh3gsibdpe06o1ck; _ga=GA1.2.1073336077.1587056389 -- 22:08:25.776 INFO [15371]: QUERY_STRING = /assets/img/footer_1.jpg -- 22:08:25.776 INFO [15371]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 22:08:25.788 INFO [15371]: COREGRADE is stopping... -- 22:08:25.788 DEBUG [15371]: Closing database connection -- 22:08:25.788 SQL [15371]: pgsql_close() -- 22:08:49.647 INFO [15370]: COREGRADE is starting... -- 22:08:49.648 INFO [15370]: Version from config: 1.0 -- 22:08:49.648 DEBUG [15370]: Connecting to database... -- 22:08:49.648 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:49.648 SQL [15370]: pgsql_db_connect() -- 22:08:49.652 DEBUG [15370]: Database connection successful -- 22:08:49.652 INFO [15370]: _SERVER found -- 22:08:49.652 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 22:08:49.652 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:49.652 INFO [15370]: QUERY_STRING = -- 22:08:49.652 INFO [15370]: HTTP_X_FORWARDED_FOR = 18.207.245.226 -- 22:08:49.686 INFO [15370]: COREGRADE is stopping... -- 22:08:49.686 DEBUG [15370]: Closing database connection -- 22:08:49.686 SQL [15370]: pgsql_close() -- 22:08:49.913 INFO [15370]: COREGRADE is starting... -- 22:08:49.913 INFO [15370]: Version from config: 1.0 -- 22:08:49.913 DEBUG [15370]: Connecting to database... -- 22:08:49.913 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:49.913 SQL [15370]: pgsql_db_connect() -- 22:08:49.918 DEBUG [15370]: Database connection successful -- 22:08:49.918 INFO [15370]: _SERVER found -- 22:08:49.918 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 22:08:49.918 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:49.918 INFO [15370]: QUERY_STRING = /favicon.ico -- 22:08:49.918 INFO [15370]: HTTP_X_FORWARDED_FOR = 18.207.245.226 -- 22:08:49.929 INFO [15370]: COREGRADE is stopping... -- 22:08:49.930 DEBUG [15370]: Closing database connection -- 22:08:49.930 SQL [15370]: pgsql_close() -- 22:09:07.127 INFO [15429]: COREGRADE is starting... -- 22:09:07.127 INFO [15429]: Version from config: 1.0 -- 22:09:07.127 DEBUG [15429]: Connecting to database... -- 22:09:07.127 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:09:07.127 SQL [15429]: pgsql_db_connect() -- 22:09:07.132 DEBUG [15429]: Database connection successful -- 22:09:07.132 INFO [15429]: _SERVER found -- 22:09:07.132 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 22:09:07.132 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 22:09:07.132 INFO [15429]: HTTP_COOKIE = ci_session=fg79thg3pp1u0br2eh3gsibdpe06o1ck; _ga=GA1.2.1073336077.1587056389 -- 22:09:07.132 INFO [15429]: QUERY_STRING = -- 22:09:07.132 INFO [15429]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 22:09:07.165 INFO [15429]: COREGRADE is stopping... -- 22:09:07.165 DEBUG [15429]: Closing database connection -- 22:09:07.165 SQL [15429]: pgsql_close() -- 22:09:07.470 INFO [15429]: COREGRADE is starting... -- 22:09:07.471 INFO [15429]: Version from config: 1.0 -- 22:09:07.471 DEBUG [15429]: Connecting to database... -- 22:09:07.471 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:09:07.471 SQL [15429]: pgsql_db_connect() -- 22:09:07.475 DEBUG [15429]: Database connection successful -- 22:09:07.475 INFO [15429]: _SERVER found -- 22:09:07.475 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 22:09:07.475 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 22:09:07.475 INFO [15429]: HTTP_COOKIE = ci_session=cjrlid24f37vb5lmn1ke68as3ilpemls; _ga=GA1.2.1073336077.1587056389 -- 22:09:07.475 INFO [15429]: QUERY_STRING = /assets/img/footer_1.jpg -- 22:09:07.475 INFO [15429]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 22:09:07.487 INFO [15429]: COREGRADE is stopping... -- 22:09:07.487 DEBUG [15429]: Closing database connection -- 22:09:07.487 SQL [15429]: pgsql_close() -- 22:09:54.582 INFO [15366]: COREGRADE is starting... -- 22:09:54.583 INFO [15366]: Version from config: 1.0 -- 22:09:54.583 DEBUG [15366]: Connecting to database... -- 22:09:54.583 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:09:54.583 SQL [15366]: pgsql_db_connect() -- 22:09:54.585 INFO [24592]: COREGRADE is starting... -- 22:09:54.585 INFO [24592]: Version from config: 1.0 -- 22:09:54.585 DEBUG [24592]: Connecting to database... -- 22:09:54.585 DEBUG [24592]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:09:54.585 SQL [24592]: pgsql_db_connect() -- 22:09:54.588 DEBUG [15366]: Database connection successful -- 22:09:54.588 INFO [15366]: _SERVER found -- 22:09:54.588 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 22:09:54.588 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 22:09:54.588 INFO [15366]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175 -- 22:09:54.588 INFO [15366]: QUERY_STRING = /welcome/viewLogin -- 22:09:54.588 INFO [15366]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:09:54.622 INFO [15366]: COREGRADE is stopping... -- 22:09:54.622 DEBUG [15366]: Closing database connection -- 22:09:54.622 SQL [15366]: pgsql_close() -- 22:09:54.590 DEBUG [24592]: Database connection successful -- 22:09:54.590 INFO [24592]: _SERVER found -- 22:09:54.590 INFO [24592]: REMOTE_ADDR = 10.0.0.15 -- 22:09:54.590 INFO [24592]: SERVER_NAME = oameye.works.coregrade.com -- 22:09:54.590 INFO [24592]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175 -- 22:09:54.590 INFO [24592]: QUERY_STRING = /auth -- 22:09:54.590 INFO [24592]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:09:54.632 INFO [24592]: COREGRADE is stopping... -- 22:09:54.632 DEBUG [24592]: Closing database connection -- 22:09:54.632 SQL [24592]: pgsql_close() -- 22:09:54.656 INFO [15366]: COREGRADE is starting... -- 22:09:54.656 INFO [15366]: Version from config: 1.0 -- 22:09:54.656 DEBUG [15366]: Connecting to database... -- 22:09:54.656 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:09:54.656 SQL [15366]: pgsql_db_connect() -- 22:09:54.661 DEBUG [15366]: Database connection successful -- 22:09:54.661 INFO [15366]: _SERVER found -- 22:09:54.661 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 22:09:54.661 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 22:09:54.661 INFO [15366]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; ci_session=oh76ecv1b97tejqnurc6hghdu6mqfpji -- 22:09:54.661 INFO [15366]: QUERY_STRING = /auth/index -- 22:09:54.661 INFO [15366]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:09:54.694 INFO [15366]: COREGRADE is stopping... -- 22:09:54.694 DEBUG [15366]: Closing database connection -- 22:09:54.694 SQL [15366]: pgsql_close() -- 22:09:54.906 INFO [15434]: COREGRADE is starting... -- 22:09:54.906 INFO [15434]: Version from config: 1.0 -- 22:09:54.906 DEBUG [15434]: Connecting to database... -- 22:09:54.906 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:09:54.906 SQL [15434]: pgsql_db_connect() -- 22:09:54.911 DEBUG [15434]: Database connection successful -- 22:09:54.911 INFO [15434]: _SERVER found -- 22:09:54.911 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 22:09:54.911 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 22:09:54.911 INFO [15434]: HTTP_COOKIE = _ga=GA1.2.72093845.1585879175; ci_session=pe5n31dj220vdkkoi1pqpse717tnjn7m -- 22:09:54.911 INFO [15434]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:09:54.911 INFO [15434]: HTTP_X_FORWARDED_FOR = 34.73.120.225 -- 22:09:54.922 INFO [15434]: COREGRADE is stopping... -- 22:09:54.922 DEBUG [15434]: Closing database connection -- 22:09:54.923 SQL [15434]: pgsql_close() -- 22:10:05.122 INFO [15371]: COREGRADE is starting... -- 22:10:05.122 INFO [15371]: Version from config: 1.0 -- 22:10:05.122 DEBUG [15371]: Connecting to database... -- 22:10:05.122 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:10:05.122 SQL [15371]: pgsql_db_connect() -- 22:10:05.127 DEBUG [15371]: Database connection successful -- 22:10:05.127 INFO [15371]: _SERVER found -- 22:10:05.127 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 22:10:05.127 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 22:10:05.127 INFO [15371]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.1650242061.1587386608; ci_session=7tiailb7vaa5hu23vc21pljv1vcntro3 -- 22:10:05.127 INFO [15371]: QUERY_STRING = /auth -- 22:10:05.127 INFO [15371]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:10:05.160 INFO [15371]: COREGRADE is stopping... -- 22:10:05.160 DEBUG [15371]: Closing database connection -- 22:10:05.160 SQL [15371]: pgsql_close() -- 22:10:05.456 INFO [15429]: COREGRADE is starting... -- 22:10:05.456 INFO [15429]: Version from config: 1.0 -- 22:10:05.456 DEBUG [15429]: Connecting to database... -- 22:10:05.456 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:10:05.456 SQL [15429]: pgsql_db_connect() -- 22:10:05.461 DEBUG [15429]: Database connection successful -- 22:10:05.461 INFO [15429]: _SERVER found -- 22:10:05.461 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 22:10:05.461 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 22:10:05.461 INFO [15429]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.1650242061.1587386608; ci_session=7tiailb7vaa5hu23vc21pljv1vcntro3 -- 22:10:05.461 INFO [15429]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 22:10:05.461 INFO [15429]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:10:05.473 INFO [15429]: COREGRADE is stopping... -- 22:10:05.473 DEBUG [15429]: Closing database connection -- 22:10:05.473 SQL [15429]: pgsql_close() -- 22:10:10.421 INFO [15429]: COREGRADE is starting... -- 22:10:10.422 INFO [15429]: Version from config: 1.0 -- 22:10:10.422 DEBUG [15429]: Connecting to database... -- 22:10:10.422 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:10:10.422 SQL [15429]: pgsql_db_connect() -- 22:10:10.458 INFO [15429]: COREGRADE is starting... -- 22:10:10.458 INFO [15429]: Version from config: 1.0 -- 22:10:10.459 DEBUG [15429]: Connecting to database... -- 22:10:10.459 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:10:10.459 SQL [15429]: pgsql_db_connect() -- 22:10:10.463 DEBUG [15429]: Database connection successful -- 22:10:10.463 INFO [15429]: _SERVER found -- 22:10:10.463 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 22:10:10.463 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 22:10:10.463 INFO [15429]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.1650242061.1587386608; ci_session=7tiailb7vaa5hu23vc21pljv1vcntro3 -- 22:10:10.463 INFO [15429]: QUERY_STRING = -- 22:10:10.463 INFO [15429]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:10:10.463 INFO [15429]: SystemStatus()09-09-********~************ -- 22:10:10.463 INFO [15429]: long coregrade_api_main(CVars in, CVars &out) -- 22:10:10.463 INFO [15429]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 22:10:10.463 INFO [15429]: account calls -- 22:10:10.463 INFO [15429]: account_calls() -- 22:10:10.463 INFO [15429]: LoginCoreGradeAccount() -- 22:10:10.463 FLOG_MAX [15429]: REQ_STRING(username) -- 22:10:10.463 FLOG_MAX [15429]: REQ_STRING(password) -- 22:10:10.463 FLOG_MAX [15429]: REQ_STRING(sessionid) -- 22:10:10.463 FLOG_MAX [15429]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:10:10.463 SQL [15429]: pgsql_query() -- 22:10:10.463 SQL [15429]: About to run query: -- 22:10:10.463 SQL [15429]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 22:10:10.467 SQL [15429]: Found rows: 1 -- 22:10:10.467 FLOG_MAX [15429]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 22:10:10.467 INFO [15429]: long SessionCheck(long uid, const char *sessionid, int create ) -- 22:10:10.467 SQL [15429]: pgsql_exec() -- 22:10:10.467 SQL [15429]: About to run query: -- 22:10:10.467 SQL [15429]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 22:10:10.469 SQL [15429]: PQcmdTuples: 1 -- 22:10:10.469 SQL [15429]: Affected rows: 1 -- 22:10:10.469 SQL [15429]: pgsql_exec() -- 22:10:10.469 SQL [15429]: About to run query: -- 22:10:10.469 SQL [15429]: DELETE FROM members_session WHERE member_id=5 -- 22:10:10.469 SQL [15429]: PQcmdTuples: 0 -- 22:10:10.469 SQL [15429]: Affected rows: 0 -- 22:10:10.469 SQL [15429]: pgsql_query() -- 22:10:10.469 SQL [15429]: About to run query: -- 22:10:10.469 SQL [15429]: SELECT * FROM members_session WHERE member_id=5 AND session<>'8D8D624DCE49C732EC4E30321627E9F1' -- 22:10:10.470 SQL [15429]: Found rows: 0 -- 22:10:10.470 SQL [15429]: Found rows: 0 -- 22:10:10.470 FLOG_MAX [15429]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:10:10.470 SQL [15429]: pgsql_query() -- 22:10:10.470 SQL [15429]: About to run query: -- 22:10:10.470 SQL [15429]: SELECT * FROM members_session WHERE member_id=5 AND session='8D8D624DCE49C732EC4E30321627E9F1' -- 22:10:10.471 SQL [15429]: Found rows: 0 -- 22:10:10.471 SQL [15429]: Found rows: 0 -- 22:10:10.471 FLOG_MAX [15429]: insert_db_record() -- 22:10:10.471 SQL [15429]: pgsql_exec() -- 22:10:10.471 SQL [15429]: About to run query: -- 22:10:10.471 SQL [15429]: INSERT INTO members_session (member_id,session) VALUES ('5','8D8D624DCE49C732EC4E30321627E9F1') -- 22:10:10.472 SQL [15429]: PQcmdTuples: 1 -- 22:10:10.472 SQL [15429]: Affected rows: 1 -- 22:10:10.472 FLOG_MAX [15429]: SELECT currval('members_session_id_seq') -- 22:10:10.472 SQL [15429]: pgsql_query() -- 22:10:10.472 SQL [15429]: About to run query: -- 22:10:10.472 SQL [15429]: SELECT currval('members_session_id_seq') -- 22:10:10.473 SQL [15429]: Found rows: 1 -- 22:10:10.473 INFO [15429]: CreateDefaultPage() -- 22:10:10.473 FLOG_MAX [15429]: long load_db_record( CVars &rec, const char * query, ... ) -- 22:10:10.473 SQL [15429]: pgsql_query() -- 22:10:10.473 SQL [15429]: About to run query: -- 22:10:10.473 SQL [15429]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 22:10:10.473 SQL [15429]: Found rows: 1 -- 22:10:10.473 FLOG_MAX [15429]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 22:10:10.473 SQL [15429]: pgsql_query() -- 22:10:10.473 SQL [15429]: About to run query: -- 22:10:10.473 SQL [15429]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 22:10:10.474 SQL [15429]: Found rows: 1 -- 22:10:10.474 INFO [15429]: /CreateDefaultPage() -- 22:10:10.474 INFO [15429]: /LoginCoreGradeAccount() -- 22:10:10.474 INFO [15429]: RET: added=2020-02-05 06:47:23.982154 -- 22:10:10.474 INFO [15429]: RET: email=ameye+11@chiefsoft.com -- 22:10:10.474 INFO [15429]: RET: firstname=Olu -- 22:10:10.474 INFO [15429]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 22:10:10.474 INFO [15429]: RET: id=5 -- 22:10:10.474 INFO [15429]: RET: last_login= -- 22:10:10.474 INFO [15429]: RET: lastname=Amey -- 22:10:10.474 INFO [15429]: RET: loc=192.168.1.13 -- 22:10:10.474 INFO [15429]: RET: member_id=5 -- 22:10:10.474 INFO [15429]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 22:10:10.474 INFO [15429]: RET: phone= -- 22:10:10.474 INFO [15429]: RET: pid= -- 22:10:10.474 INFO [15429]: RET: result=YES I GET TO BACK END -- 22:10:10.474 INFO [15429]: RET: sessionid=8D8D624DCE49C732EC4E30321627E9F1 -- 22:10:10.474 INFO [15429]: RET: status=1 -- 22:10:10.474 INFO [15429]: RET: stauts=OK -- 22:10:10.474 INFO [15429]: RET: username=ameye+11@chiefsoft.com -- 22:10:10.474 INFO [15429]: RET: verified= -- 22:10:10.475 INFO [15429]: COREGRADE is stopping... -- 22:10:10.475 DEBUG [15429]: Closing database connection -- 22:10:10.475 SQL [15429]: pgsql_close() -- 22:10:10.426 DEBUG [15429]: Database connection successful -- 22:10:10.426 INFO [15429]: _SERVER found -- 22:10:10.426 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 22:10:10.426 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 22:10:10.426 INFO [15429]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.1650242061.1587386608; ci_session=7tiailb7vaa5hu23vc21pljv1vcntro3 -- 22:10:10.426 INFO [15429]: QUERY_STRING = /auth -- 22:10:10.426 INFO [15429]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:10:10.476 INFO [15429]: COREGRADE is stopping... -- 22:10:10.476 DEBUG [15429]: Closing database connection -- 22:10:10.476 SQL [15429]: pgsql_close() -- 22:10:10.515 INFO [15429]: COREGRADE is starting... -- 22:10:10.515 INFO [15429]: Version from config: 1.0 -- 22:10:10.515 DEBUG [15429]: Connecting to database... -- 22:10:10.515 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:10:10.515 SQL [15429]: pgsql_db_connect() -- 22:10:10.520 DEBUG [15429]: Database connection successful -- 22:10:10.520 INFO [15429]: _SERVER found -- 22:10:10.520 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 22:10:10.520 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 22:10:10.520 INFO [15429]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.1650242061.1587386608; ci_session=7tiailb7vaa5hu23vc21pljv1vcntro3 -- 22:10:10.520 INFO [15429]: QUERY_STRING = /member/index -- 22:10:10.520 INFO [15429]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:10:10.562 INFO [15429]: COREGRADE is stopping... -- 22:10:10.562 DEBUG [15429]: Closing database connection -- 22:10:10.562 SQL [15429]: pgsql_close() -- 22:10:10.868 INFO [24616]: COREGRADE is starting... -- 22:10:10.868 INFO [24616]: Version from config: 1.0 -- 22:10:10.868 DEBUG [24616]: Connecting to database... -- 22:10:10.868 DEBUG [24616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:10:10.868 SQL [24616]: pgsql_db_connect() -- 22:10:10.873 DEBUG [24616]: Database connection successful -- 22:10:10.873 INFO [24616]: _SERVER found -- 22:10:10.873 INFO [24616]: REMOTE_ADDR = 10.0.0.15 -- 22:10:10.873 INFO [24616]: SERVER_NAME = oameye.works.coregrade.com -- 22:10:10.873 INFO [24616]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.1650242061.1587386608; ci_session=7tiailb7vaa5hu23vc21pljv1vcntro3 -- 22:10:10.873 INFO [24616]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 22:10:10.873 INFO [24616]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 22:10:10.888 INFO [24616]: COREGRADE is stopping... -- 22:10:10.889 DEBUG [24616]: Closing database connection -- 22:10:10.889 SQL [24616]: pgsql_close() -- 23:28:26.856 INFO [15366]: COREGRADE is starting... -- 23:28:26.857 INFO [15366]: Version from config: 1.0 -- 23:28:26.857 DEBUG [15366]: Connecting to database... -- 23:28:26.857 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:28:26.857 SQL [15366]: pgsql_db_connect() -- 23:28:26.862 DEBUG [15366]: Database connection successful -- 23:28:26.862 INFO [15366]: _SERVER found -- 23:28:26.862 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 23:28:26.862 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 23:28:26.862 INFO [15366]: QUERY_STRING = /.well-known/acme-challenge/_QAT9ykdIYcd4lkxUuHvOHpA8vCbJLmPFr8mDlYMbFk -- 23:28:26.862 INFO [15366]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 23:28:26.877 INFO [15366]: COREGRADE is stopping... -- 23:28:26.877 DEBUG [15366]: Closing database connection -- 23:28:26.877 SQL [15366]: pgsql_close() -- 23:28:27.126 INFO [15434]: COREGRADE is starting... -- 23:28:27.126 INFO [15434]: Version from config: 1.0 -- 23:28:27.126 DEBUG [15434]: Connecting to database... -- 23:28:27.126 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:28:27.126 SQL [15434]: pgsql_db_connect() -- 23:28:27.130 DEBUG [15434]: Database connection successful -- 23:28:27.130 INFO [15434]: _SERVER found -- 23:28:27.130 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 23:28:27.130 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 23:28:27.130 INFO [15434]: QUERY_STRING = /.well-known/acme-challenge/_QAT9ykdIYcd4lkxUuHvOHpA8vCbJLmPFr8mDlYMbFk -- 23:28:27.130 INFO [15434]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 23:28:27.143 INFO [15434]: COREGRADE is stopping... -- 23:28:27.143 DEBUG [15434]: Closing database connection -- 23:28:27.143 SQL [15434]: pgsql_close() -- 23:28:27.180 INFO [15371]: COREGRADE is starting... -- 23:28:27.181 INFO [15371]: Version from config: 1.0 -- 23:28:27.181 DEBUG [15371]: Connecting to database... -- 23:28:27.181 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:28:27.181 SQL [15371]: pgsql_db_connect() -- 23:28:27.193 INFO [15434]: COREGRADE is starting... -- 23:28:27.193 INFO [15434]: Version from config: 1.0 -- 23:28:27.193 DEBUG [15434]: Connecting to database... -- 23:28:27.193 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:28:27.193 SQL [15434]: pgsql_db_connect() -- 23:28:27.185 DEBUG [15371]: Database connection successful -- 23:28:27.185 INFO [15371]: _SERVER found -- 23:28:27.185 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 23:28:27.185 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 23:28:27.185 INFO [15371]: QUERY_STRING = /.well-known/acme-challenge/_QAT9ykdIYcd4lkxUuHvOHpA8vCbJLmPFr8mDlYMbFk -- 23:28:27.185 INFO [15371]: HTTP_X_FORWARDED_FOR = 52.28.236.88 -- 23:28:27.200 INFO [15371]: COREGRADE is stopping... -- 23:28:27.200 DEBUG [15371]: Closing database connection -- 23:28:27.200 SQL [15371]: pgsql_close() -- 23:28:27.199 DEBUG [15434]: Database connection successful -- 23:28:27.199 INFO [15434]: _SERVER found -- 23:28:27.199 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 23:28:27.199 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 23:28:27.199 INFO [15434]: QUERY_STRING = /.well-known/acme-challenge/_QAT9ykdIYcd4lkxUuHvOHpA8vCbJLmPFr8mDlYMbFk -- 23:28:27.199 INFO [15434]: HTTP_X_FORWARDED_FOR = 34.222.229.130 -- 23:28:27.211 INFO [15434]: COREGRADE is stopping... -- 23:28:27.211 DEBUG [15434]: Closing database connection -- 23:28:27.211 SQL [15434]: pgsql_close() -- 01:01:52.104 INFO [15370]: COREGRADE is starting... -- 01:01:52.104 INFO [15370]: Version from config: 1.0 -- 01:01:52.104 DEBUG [15370]: Connecting to database... -- 01:01:52.104 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:01:52.104 SQL [15370]: pgsql_db_connect() -- 01:01:52.109 DEBUG [15370]: Database connection successful -- 01:01:52.109 INFO [15370]: _SERVER found -- 01:01:52.109 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 01:01:52.109 INFO [15370]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:01:52.109 INFO [15370]: QUERY_STRING = /wp-login.php -- 01:01:52.109 INFO [15370]: HTTP_X_FORWARDED_FOR = 192.99.36.177 -- 01:01:52.124 INFO [15370]: COREGRADE is stopping... -- 01:01:52.124 DEBUG [15370]: Closing database connection -- 01:01:52.124 SQL [15370]: pgsql_close() -- 01:01:52.966 INFO [15429]: COREGRADE is starting... -- 01:01:52.966 INFO [15429]: Version from config: 1.0 -- 01:01:52.966 DEBUG [15429]: Connecting to database... -- 01:01:52.966 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:01:52.966 SQL [15429]: pgsql_db_connect() -- 01:01:52.970 DEBUG [15429]: Database connection successful -- 01:01:52.970 INFO [15429]: _SERVER found -- 01:01:52.970 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 01:01:52.970 INFO [15429]: SERVER_NAME = tokslaw.works.coregrade.com -- 01:01:52.970 INFO [15429]: QUERY_STRING = /robots.txt -- 01:01:52.970 INFO [15429]: HTTP_X_FORWARDED_FOR = 192.99.36.177 -- 01:01:52.983 INFO [15429]: COREGRADE is stopping... -- 01:01:52.983 DEBUG [15429]: Closing database connection -- 01:01:52.983 SQL [15429]: pgsql_close() -- 01:24:09.709 INFO [24592]: COREGRADE is starting... -- 01:24:09.709 INFO [24592]: Version from config: 1.0 -- 01:24:09.709 DEBUG [24592]: Connecting to database... -- 01:24:09.709 DEBUG [24592]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:24:09.709 SQL [24592]: pgsql_db_connect() -- 01:24:09.714 DEBUG [24592]: Database connection successful -- 01:24:09.714 INFO [24592]: _SERVER found -- 01:24:09.714 INFO [24592]: REMOTE_ADDR = 10.0.0.15 -- 01:24:09.714 INFO [24592]: SERVER_NAME = oameye.works.coregrade.com -- 01:24:09.714 INFO [24592]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.1650242061.1587386608 -- 01:24:09.714 INFO [24592]: QUERY_STRING = /auth -- 01:24:09.714 INFO [24592]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 01:24:09.754 INFO [24592]: COREGRADE is stopping... -- 01:24:09.754 DEBUG [24592]: Closing database connection -- 01:24:09.754 SQL [24592]: pgsql_close() -- 01:24:10.185 INFO [24592]: COREGRADE is starting... -- 01:24:10.185 INFO [24592]: Version from config: 1.0 -- 01:24:10.185 DEBUG [24592]: Connecting to database... -- 01:24:10.185 DEBUG [24592]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:24:10.185 SQL [24592]: pgsql_db_connect() -- 01:24:10.190 DEBUG [24592]: Database connection successful -- 01:24:10.190 INFO [24592]: _SERVER found -- 01:24:10.190 INFO [24592]: REMOTE_ADDR = 10.0.0.15 -- 01:24:10.190 INFO [24592]: SERVER_NAME = oameye.works.coregrade.com -- 01:24:10.190 INFO [24592]: HTTP_COOKIE = ci_session=8vt15pv9e45ecp7r6qhial2qj27bek7l; _ga=GA1.2.2030761402.1585610624; _gid=GA1.2.1650242061.1587386608 -- 01:24:10.190 INFO [24592]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 01:24:10.190 INFO [24592]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 01:24:10.204 INFO [24592]: COREGRADE is stopping... -- 01:24:10.204 DEBUG [24592]: Closing database connection -- 01:24:10.204 SQL [24592]: pgsql_close() -- 01:49:45.191 INFO [15369]: COREGRADE is starting... -- 01:49:45.192 INFO [15369]: Version from config: 1.0 -- 01:49:45.192 DEBUG [15369]: Connecting to database... -- 01:49:45.192 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:49:45.192 SQL [15369]: pgsql_db_connect() -- 01:49:45.197 DEBUG [15369]: Database connection successful -- 01:49:45.197 INFO [15369]: _SERVER found -- 01:49:45.197 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 01:49:45.197 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 01:49:45.197 INFO [15369]: QUERY_STRING = -- 01:49:45.197 INFO [15369]: HTTP_X_FORWARDED_FOR = 128.14.133.58 -- 01:49:45.233 INFO [15369]: COREGRADE is stopping... -- 01:49:45.233 DEBUG [15369]: Closing database connection -- 01:49:45.233 SQL [15369]: pgsql_close() -- 04:11:52.324 INFO [24616]: COREGRADE is starting... -- 04:11:52.324 INFO [24616]: Version from config: 1.0 -- 04:11:52.324 DEBUG [24616]: Connecting to database... -- 04:11:52.324 DEBUG [24616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:11:52.324 SQL [24616]: pgsql_db_connect() -- 04:11:52.329 DEBUG [24616]: Database connection successful -- 04:11:52.329 INFO [24616]: _SERVER found -- 04:11:52.329 INFO [24616]: REMOTE_ADDR = 10.0.0.15 -- 04:11:52.329 INFO [24616]: SERVER_NAME = oameye.works.coregrade.com -- 04:11:52.329 INFO [24616]: QUERY_STRING = /robots.txt -- 04:11:52.329 INFO [24616]: HTTP_X_FORWARDED_FOR = 66.249.64.182 -- 04:11:52.343 INFO [24616]: COREGRADE is stopping... -- 04:11:52.343 DEBUG [24616]: Closing database connection -- 04:11:52.343 SQL [24616]: pgsql_close() -- 04:11:54.597 INFO [15366]: COREGRADE is starting... -- 04:11:54.597 INFO [15366]: Version from config: 1.0 -- 04:11:54.597 DEBUG [15366]: Connecting to database... -- 04:11:54.597 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:11:54.597 SQL [15366]: pgsql_db_connect() -- 04:11:54.601 DEBUG [15366]: Database connection successful -- 04:11:54.601 INFO [15366]: _SERVER found -- 04:11:54.601 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 04:11:54.601 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 04:11:54.601 INFO [15366]: QUERY_STRING = -- 04:11:54.601 INFO [15366]: HTTP_X_FORWARDED_FOR = 66.249.64.180 -- 04:11:54.635 INFO [15366]: COREGRADE is stopping... -- 04:11:54.635 DEBUG [15366]: Closing database connection -- 04:11:54.635 SQL [15366]: pgsql_close() -- 11:41:29.866 INFO [15367]: COREGRADE is starting... -- 11:41:29.866 INFO [15367]: Version from config: 1.0 -- 11:41:29.866 DEBUG [15367]: Connecting to database... -- 11:41:29.866 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:41:29.866 SQL [15367]: pgsql_db_connect() -- 11:41:29.872 DEBUG [15367]: Database connection successful -- 11:41:29.872 INFO [15367]: _SERVER found -- 11:41:29.872 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 11:41:29.872 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 11:41:29.872 INFO [15367]: QUERY_STRING = -- 11:41:29.872 INFO [15367]: HTTP_X_FORWARDED_FOR = 198.108.66.176 -- 11:41:29.909 INFO [15367]: COREGRADE is stopping... -- 11:41:29.909 DEBUG [15367]: Closing database connection -- 11:41:29.909 SQL [15367]: pgsql_close() -- 15:46:46.603 INFO [15371]: COREGRADE is starting... -- 15:46:46.603 INFO [15371]: Version from config: 1.0 -- 15:46:46.603 DEBUG [15371]: Connecting to database... -- 15:46:46.603 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:46:46.603 SQL [15371]: pgsql_db_connect() -- 15:46:46.609 DEBUG [15371]: Database connection successful -- 15:46:46.609 INFO [15371]: _SERVER found -- 15:46:46.609 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 15:46:46.609 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 15:46:46.609 INFO [15371]: QUERY_STRING = -- 15:46:46.609 INFO [15371]: HTTP_X_FORWARDED_FOR = 128.14.209.234 -- 15:46:46.648 INFO [15371]: COREGRADE is stopping... -- 15:46:46.648 DEBUG [15371]: Closing database connection -- 15:46:46.648 SQL [15371]: pgsql_close() -- 15:50:04.336 INFO [15434]: COREGRADE is starting... -- 15:50:04.336 INFO [15434]: Version from config: 1.0 -- 15:50:04.336 DEBUG [15434]: Connecting to database... -- 15:50:04.336 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:04.336 SQL [15434]: pgsql_db_connect() -- 15:50:04.341 DEBUG [15434]: Database connection successful -- 15:50:04.341 INFO [15434]: _SERVER found -- 15:50:04.341 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 15:50:04.341 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 15:50:04.341 INFO [15434]: HTTP_COOKIE = _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1496783461.1587434947 -- 15:50:04.341 INFO [15434]: QUERY_STRING = /auth -- 15:50:04.341 INFO [15434]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 15:50:04.377 INFO [15434]: COREGRADE is stopping... -- 15:50:04.377 DEBUG [15434]: Closing database connection -- 15:50:04.377 SQL [15434]: pgsql_close() -- 15:50:04.680 INFO [15434]: COREGRADE is starting... -- 15:50:04.680 INFO [15434]: Version from config: 1.0 -- 15:50:04.680 DEBUG [15434]: Connecting to database... -- 15:50:04.680 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:04.680 SQL [15434]: pgsql_db_connect() -- 15:50:04.685 DEBUG [15434]: Database connection successful -- 15:50:04.685 INFO [15434]: _SERVER found -- 15:50:04.685 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 15:50:04.685 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 15:50:04.685 INFO [15434]: HTTP_COOKIE = ci_session=gdm9ia80ksindhebj78c246qbuhfn15v; _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1496783461.1587434947 -- 15:50:04.685 INFO [15434]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:50:04.685 INFO [15434]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 15:50:04.696 INFO [15434]: COREGRADE is stopping... -- 15:50:04.696 DEBUG [15434]: Closing database connection -- 15:50:04.696 SQL [15434]: pgsql_close() -- 15:50:24.061 INFO [24592]: COREGRADE is starting... -- 15:50:24.061 INFO [24592]: Version from config: 1.0 -- 15:50:24.061 DEBUG [24592]: Connecting to database... -- 15:50:24.061 DEBUG [24592]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:24.061 SQL [24592]: pgsql_db_connect() -- 15:50:24.101 INFO [24592]: COREGRADE is starting... -- 15:50:24.102 INFO [24592]: Version from config: 1.0 -- 15:50:24.102 DEBUG [24592]: Connecting to database... -- 15:50:24.102 DEBUG [24592]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:24.102 SQL [24592]: pgsql_db_connect() -- 15:50:24.105 DEBUG [24592]: Database connection successful -- 15:50:24.105 INFO [24592]: _SERVER found -- 15:50:24.105 INFO [24592]: REMOTE_ADDR = 10.0.0.15 -- 15:50:24.105 INFO [24592]: SERVER_NAME = oameye.works.coregrade.com -- 15:50:24.105 INFO [24592]: HTTP_COOKIE = ci_session=gdm9ia80ksindhebj78c246qbuhfn15v; _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1496783461.1587434947 -- 15:50:24.105 INFO [24592]: QUERY_STRING = -- 15:50:24.105 INFO [24592]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 15:50:24.106 INFO [24592]: SystemStatus()09-09-********~************ -- 15:50:24.106 INFO [24592]: long coregrade_api_main(CVars in, CVars &out) -- 15:50:24.106 INFO [24592]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 15:50:24.106 INFO [24592]: account calls -- 15:50:24.106 INFO [24592]: account_calls() -- 15:50:24.106 INFO [24592]: LoginCoreGradeAccount() -- 15:50:24.106 FLOG_MAX [24592]: REQ_STRING(username) -- 15:50:24.106 FLOG_MAX [24592]: REQ_STRING(password) -- 15:50:24.106 FLOG_MAX [24592]: REQ_STRING(sessionid) -- 15:50:24.106 FLOG_MAX [24592]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:50:24.106 SQL [24592]: pgsql_query() -- 15:50:24.106 SQL [24592]: About to run query: -- 15:50:24.106 SQL [24592]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 15:50:24.110 SQL [24592]: Found rows: 1 -- 15:50:24.110 FLOG_MAX [24592]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 15:50:24.110 INFO [24592]: long SessionCheck(long uid, const char *sessionid, int create ) -- 15:50:24.110 SQL [24592]: pgsql_exec() -- 15:50:24.110 SQL [24592]: About to run query: -- 15:50:24.110 SQL [24592]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 15:50:24.111 SQL [24592]: PQcmdTuples: 1 -- 15:50:24.111 SQL [24592]: Affected rows: 1 -- 15:50:24.111 SQL [24592]: pgsql_exec() -- 15:50:24.111 SQL [24592]: About to run query: -- 15:50:24.111 SQL [24592]: DELETE FROM members_session WHERE member_id=5 -- 15:50:24.112 SQL [24592]: PQcmdTuples: 0 -- 15:50:24.112 SQL [24592]: Affected rows: 0 -- 15:50:24.112 SQL [24592]: pgsql_query() -- 15:50:24.112 SQL [24592]: About to run query: -- 15:50:24.112 SQL [24592]: SELECT * FROM members_session WHERE member_id=5 AND session<>'E078A1D11B38AE82A4E8F0A15A67162E' -- 15:50:24.112 SQL [24592]: Found rows: 0 -- 15:50:24.112 SQL [24592]: Found rows: 0 -- 15:50:24.112 FLOG_MAX [24592]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:50:24.112 SQL [24592]: pgsql_query() -- 15:50:24.112 SQL [24592]: About to run query: -- 15:50:24.112 SQL [24592]: SELECT * FROM members_session WHERE member_id=5 AND session='E078A1D11B38AE82A4E8F0A15A67162E' -- 15:50:24.113 SQL [24592]: Found rows: 0 -- 15:50:24.113 SQL [24592]: Found rows: 0 -- 15:50:24.113 FLOG_MAX [24592]: insert_db_record() -- 15:50:24.113 SQL [24592]: pgsql_exec() -- 15:50:24.113 SQL [24592]: About to run query: -- 15:50:24.113 SQL [24592]: INSERT INTO members_session (member_id,session) VALUES ('5','E078A1D11B38AE82A4E8F0A15A67162E') -- 15:50:24.114 SQL [24592]: PQcmdTuples: 1 -- 15:50:24.114 SQL [24592]: Affected rows: 1 -- 15:50:24.114 FLOG_MAX [24592]: SELECT currval('members_session_id_seq') -- 15:50:24.114 SQL [24592]: pgsql_query() -- 15:50:24.114 SQL [24592]: About to run query: -- 15:50:24.114 SQL [24592]: SELECT currval('members_session_id_seq') -- 15:50:24.115 SQL [24592]: Found rows: 1 -- 15:50:24.115 INFO [24592]: CreateDefaultPage() -- 15:50:24.115 FLOG_MAX [24592]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:50:24.115 SQL [24592]: pgsql_query() -- 15:50:24.115 SQL [24592]: About to run query: -- 15:50:24.115 SQL [24592]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 15:50:24.115 SQL [24592]: Found rows: 1 -- 15:50:24.115 FLOG_MAX [24592]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 15:50:24.115 SQL [24592]: pgsql_query() -- 15:50:24.115 SQL [24592]: About to run query: -- 15:50:24.115 SQL [24592]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 15:50:24.116 SQL [24592]: Found rows: 1 -- 15:50:24.116 INFO [24592]: /CreateDefaultPage() -- 15:50:24.116 INFO [24592]: /LoginCoreGradeAccount() -- 15:50:24.116 INFO [24592]: RET: added=2020-02-05 06:47:23.982154 -- 15:50:24.116 INFO [24592]: RET: email=ameye+11@chiefsoft.com -- 15:50:24.116 INFO [24592]: RET: firstname=Olu -- 15:50:24.116 INFO [24592]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 15:50:24.116 INFO [24592]: RET: id=5 -- 15:50:24.116 INFO [24592]: RET: last_login= -- 15:50:24.116 INFO [24592]: RET: lastname=Amey -- 15:50:24.116 INFO [24592]: RET: loc=192.168.1.13 -- 15:50:24.116 INFO [24592]: RET: member_id=5 -- 15:50:24.116 INFO [24592]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 15:50:24.116 INFO [24592]: RET: phone= -- 15:50:24.116 INFO [24592]: RET: pid= -- 15:50:24.116 INFO [24592]: RET: result=YES I GET TO BACK END -- 15:50:24.116 INFO [24592]: RET: sessionid=E078A1D11B38AE82A4E8F0A15A67162E -- 15:50:24.116 INFO [24592]: RET: status=1 -- 15:50:24.116 INFO [24592]: RET: stauts=OK -- 15:50:24.116 INFO [24592]: RET: username=ameye+11@chiefsoft.com -- 15:50:24.116 INFO [24592]: RET: verified= -- 15:50:24.117 INFO [24592]: COREGRADE is stopping... -- 15:50:24.117 DEBUG [24592]: Closing database connection -- 15:50:24.117 SQL [24592]: pgsql_close() -- 15:50:24.065 DEBUG [24592]: Database connection successful -- 15:50:24.065 INFO [24592]: _SERVER found -- 15:50:24.065 INFO [24592]: REMOTE_ADDR = 10.0.0.15 -- 15:50:24.065 INFO [24592]: SERVER_NAME = oameye.works.coregrade.com -- 15:50:24.065 INFO [24592]: HTTP_COOKIE = ci_session=gdm9ia80ksindhebj78c246qbuhfn15v; _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1496783461.1587434947 -- 15:50:24.065 INFO [24592]: QUERY_STRING = /auth -- 15:50:24.065 INFO [24592]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 15:50:24.118 INFO [24592]: COREGRADE is stopping... -- 15:50:24.118 DEBUG [24592]: Closing database connection -- 15:50:24.118 SQL [24592]: pgsql_close() -- 15:50:24.144 INFO [24592]: COREGRADE is starting... -- 15:50:24.144 INFO [24592]: Version from config: 1.0 -- 15:50:24.144 DEBUG [24592]: Connecting to database... -- 15:50:24.144 DEBUG [24592]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:24.144 SQL [24592]: pgsql_db_connect() -- 15:50:24.148 DEBUG [24592]: Database connection successful -- 15:50:24.148 INFO [24592]: _SERVER found -- 15:50:24.148 INFO [24592]: REMOTE_ADDR = 10.0.0.15 -- 15:50:24.148 INFO [24592]: SERVER_NAME = oameye.works.coregrade.com -- 15:50:24.148 INFO [24592]: HTTP_COOKIE = ci_session=gdm9ia80ksindhebj78c246qbuhfn15v; _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1496783461.1587434947 -- 15:50:24.148 INFO [24592]: QUERY_STRING = /member/index -- 15:50:24.148 INFO [24592]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 15:50:24.189 INFO [24592]: COREGRADE is stopping... -- 15:50:24.189 DEBUG [24592]: Closing database connection -- 15:50:24.189 SQL [24592]: pgsql_close() -- 15:50:24.583 INFO [15369]: COREGRADE is starting... -- 15:50:24.583 INFO [15369]: Version from config: 1.0 -- 15:50:24.583 DEBUG [15369]: Connecting to database... -- 15:50:24.583 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:24.583 SQL [15369]: pgsql_db_connect() -- 15:50:24.588 DEBUG [15369]: Database connection successful -- 15:50:24.588 INFO [15369]: _SERVER found -- 15:50:24.588 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 15:50:24.588 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 15:50:24.588 INFO [15369]: HTTP_COOKIE = ci_session=gdm9ia80ksindhebj78c246qbuhfn15v; _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1496783461.1587434947 -- 15:50:24.588 INFO [15369]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:50:24.588 INFO [15369]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 15:50:24.601 INFO [15369]: COREGRADE is stopping... -- 15:50:24.601 DEBUG [15369]: Closing database connection -- 15:50:24.601 SQL [15369]: pgsql_close() -- 15:50:43.924 INFO [15371]: COREGRADE is starting... -- 15:50:43.924 INFO [15371]: Version from config: 1.0 -- 15:50:43.924 DEBUG [15371]: Connecting to database... -- 15:50:43.924 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:43.924 SQL [15371]: pgsql_db_connect() -- 15:50:43.928 DEBUG [15371]: Database connection successful -- 15:50:43.928 INFO [15371]: _SERVER found -- 15:50:43.928 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 15:50:43.928 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 15:50:43.928 INFO [15371]: HTTP_COOKIE = ci_session=gdm9ia80ksindhebj78c246qbuhfn15v; _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1496783461.1587434947 -- 15:50:43.928 INFO [15371]: QUERY_STRING = /member/page -- 15:50:43.928 INFO [15371]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 15:50:43.972 INFO [15371]: COREGRADE is stopping... -- 15:50:43.972 DEBUG [15371]: Closing database connection -- 15:50:43.972 SQL [15371]: pgsql_close() -- 15:50:44.170 INFO [15371]: COREGRADE is starting... -- 15:50:44.171 INFO [15371]: Version from config: 1.0 -- 15:50:44.171 DEBUG [15371]: Connecting to database... -- 15:50:44.171 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:44.171 SQL [15371]: pgsql_db_connect() -- 15:50:44.175 DEBUG [15371]: Database connection successful -- 15:50:44.175 INFO [15371]: _SERVER found -- 15:50:44.175 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 15:50:44.175 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 15:50:44.175 INFO [15371]: HTTP_COOKIE = ci_session=gdm9ia80ksindhebj78c246qbuhfn15v; _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1496783461.1587434947 -- 15:50:44.175 INFO [15371]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:50:44.175 INFO [15371]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 15:50:44.186 INFO [15371]: COREGRADE is stopping... -- 15:50:44.186 DEBUG [15371]: Closing database connection -- 15:50:44.186 SQL [15371]: pgsql_close() -- 15:54:02.852 INFO [15370]: COREGRADE is starting... -- 15:54:02.852 INFO [15370]: Version from config: 1.0 -- 15:54:02.852 DEBUG [15370]: Connecting to database... -- 15:54:02.852 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:54:02.852 SQL [15370]: pgsql_db_connect() -- 15:54:02.856 DEBUG [15370]: Database connection successful -- 15:54:02.856 INFO [15370]: _SERVER found -- 15:54:02.856 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 15:54:02.856 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 15:54:02.856 INFO [15370]: HTTP_COOKIE = ci_session=gdm9ia80ksindhebj78c246qbuhfn15v; _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1496783461.1587434947 -- 15:54:02.856 INFO [15370]: QUERY_STRING = /member/classroom -- 15:54:02.856 INFO [15370]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 15:54:02.902 INFO [15370]: COREGRADE is stopping... -- 15:54:02.902 DEBUG [15370]: Closing database connection -- 15:54:02.902 SQL [15370]: pgsql_close() -- 15:54:03.060 INFO [15370]: COREGRADE is starting... -- 15:54:03.061 INFO [15370]: Version from config: 1.0 -- 15:54:03.061 DEBUG [15370]: Connecting to database... -- 15:54:03.061 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:54:03.061 SQL [15370]: pgsql_db_connect() -- 15:54:03.065 DEBUG [15370]: Database connection successful -- 15:54:03.065 INFO [15370]: _SERVER found -- 15:54:03.065 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 15:54:03.065 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 15:54:03.065 INFO [15370]: HTTP_COOKIE = ci_session=gdm9ia80ksindhebj78c246qbuhfn15v; _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1496783461.1587434947 -- 15:54:03.065 INFO [15370]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:54:03.065 INFO [15370]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 15:54:03.076 INFO [15370]: COREGRADE is stopping... -- 15:54:03.076 DEBUG [15370]: Closing database connection -- 15:54:03.076 SQL [15370]: pgsql_close() -- 15:54:06.044 INFO [15370]: COREGRADE is starting... -- 15:54:06.044 INFO [15370]: Version from config: 1.0 -- 15:54:06.044 DEBUG [15370]: Connecting to database... -- 15:54:06.045 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:54:06.045 SQL [15370]: pgsql_db_connect() -- 15:54:06.049 DEBUG [15370]: Database connection successful -- 15:54:06.049 INFO [15370]: _SERVER found -- 15:54:06.049 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 15:54:06.049 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 15:54:06.049 INFO [15370]: HTTP_COOKIE = ci_session=gdm9ia80ksindhebj78c246qbuhfn15v; _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1496783461.1587434947 -- 15:54:06.049 INFO [15370]: QUERY_STRING = /member/viewRoom -- 15:54:06.049 INFO [15370]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 15:54:06.083 INFO [15370]: COREGRADE is stopping... -- 15:54:06.083 DEBUG [15370]: Closing database connection -- 15:54:06.083 SQL [15370]: pgsql_close() -- 15:54:14.872 INFO [15366]: COREGRADE is starting... -- 15:54:14.872 INFO [15366]: Version from config: 1.0 -- 15:54:14.872 DEBUG [15366]: Connecting to database... -- 15:54:14.872 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:54:14.872 SQL [15366]: pgsql_db_connect() -- 15:54:14.876 DEBUG [15366]: Database connection successful -- 15:54:14.876 INFO [15366]: _SERVER found -- 15:54:14.876 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 15:54:14.876 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 15:54:14.876 INFO [15366]: HTTP_COOKIE = ci_session=gdm9ia80ksindhebj78c246qbuhfn15v; _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1496783461.1587434947 -- 15:54:14.876 INFO [15366]: QUERY_STRING = /member/viewRoom -- 15:54:14.876 INFO [15366]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 15:54:14.914 INFO [15366]: COREGRADE is stopping... -- 15:54:14.914 DEBUG [15366]: Closing database connection -- 15:54:14.914 SQL [15366]: pgsql_close() -- 15:54:14.919 INFO [15367]: COREGRADE is starting... -- 15:54:14.920 INFO [15367]: Version from config: 1.0 -- 15:54:14.920 DEBUG [15367]: Connecting to database... -- 15:54:14.920 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:54:14.920 SQL [15367]: pgsql_db_connect() -- 15:54:14.924 DEBUG [15367]: Database connection successful -- 15:54:14.924 INFO [15367]: _SERVER found -- 15:54:14.924 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 15:54:14.924 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 15:54:14.924 INFO [15367]: HTTP_COOKIE = ci_session=gdm9ia80ksindhebj78c246qbuhfn15v; _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1496783461.1587434947 -- 15:54:14.924 INFO [15367]: QUERY_STRING = /member/viewRoom -- 15:54:14.924 INFO [15367]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 15:54:14.960 INFO [15367]: COREGRADE is stopping... -- 15:54:14.960 DEBUG [15367]: Closing database connection -- 15:54:14.960 SQL [15367]: pgsql_close() -- 15:54:16.245 INFO [15366]: COREGRADE is starting... -- 15:54:16.245 INFO [15366]: Version from config: 1.0 -- 15:54:16.245 DEBUG [15366]: Connecting to database... -- 15:54:16.245 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:54:16.245 SQL [15366]: pgsql_db_connect() -- 15:54:16.249 DEBUG [15366]: Database connection successful -- 15:54:16.249 INFO [15366]: _SERVER found -- 15:54:16.249 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 15:54:16.249 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 15:54:16.249 INFO [15366]: HTTP_COOKIE = ci_session=gdm9ia80ksindhebj78c246qbuhfn15v; _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1496783461.1587434947 -- 15:54:16.249 INFO [15366]: QUERY_STRING = /member/viewRoom -- 15:54:16.249 INFO [15366]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 15:54:16.284 INFO [15366]: COREGRADE is stopping... -- 15:54:16.284 DEBUG [15366]: Closing database connection -- 15:54:16.284 SQL [15366]: pgsql_close() -- 15:54:22.894 INFO [15434]: COREGRADE is starting... -- 15:54:22.894 INFO [15434]: Version from config: 1.0 -- 15:54:22.894 DEBUG [15434]: Connecting to database... -- 15:54:22.894 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:54:22.894 SQL [15434]: pgsql_db_connect() -- 15:54:22.898 DEBUG [15434]: Database connection successful -- 15:54:22.898 INFO [15434]: _SERVER found -- 15:54:22.898 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 15:54:22.898 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 15:54:22.898 INFO [15434]: HTTP_COOKIE = ci_session=gdm9ia80ksindhebj78c246qbuhfn15v; _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1496783461.1587434947 -- 15:54:22.898 INFO [15434]: QUERY_STRING = /member/mycalendar -- 15:54:22.898 INFO [15434]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 15:54:22.937 INFO [15434]: COREGRADE is stopping... -- 15:54:22.937 DEBUG [15434]: Closing database connection -- 15:54:22.937 SQL [15434]: pgsql_close() -- 15:54:23.033 INFO [15434]: COREGRADE is starting... -- 15:54:23.033 INFO [15434]: Version from config: 1.0 -- 15:54:23.033 DEBUG [15434]: Connecting to database... -- 15:54:23.033 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:54:23.033 SQL [15434]: pgsql_db_connect() -- 15:54:23.037 DEBUG [15434]: Database connection successful -- 15:54:23.037 INFO [15434]: _SERVER found -- 15:54:23.037 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 15:54:23.037 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 15:54:23.037 INFO [15434]: HTTP_COOKIE = ci_session=gdm9ia80ksindhebj78c246qbuhfn15v; _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1496783461.1587434947 -- 15:54:23.037 INFO [15434]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:54:23.037 INFO [15434]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 15:54:23.048 INFO [15434]: COREGRADE is stopping... -- 15:54:23.048 DEBUG [15434]: Closing database connection -- 15:54:23.048 SQL [15434]: pgsql_close() -- 15:54:27.293 INFO [15434]: COREGRADE is starting... -- 15:54:27.294 INFO [15434]: Version from config: 1.0 -- 15:54:27.294 DEBUG [15434]: Connecting to database... -- 15:54:27.294 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:54:27.294 SQL [15434]: pgsql_db_connect() -- 15:54:27.298 DEBUG [15434]: Database connection successful -- 15:54:27.298 INFO [15434]: _SERVER found -- 15:54:27.298 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 15:54:27.298 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 15:54:27.298 INFO [15434]: HTTP_COOKIE = ci_session=gdm9ia80ksindhebj78c246qbuhfn15v; _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1496783461.1587434947 -- 15:54:27.298 INFO [15434]: QUERY_STRING = /member/configure -- 15:54:27.298 INFO [15434]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 15:54:27.341 INFO [15434]: COREGRADE is stopping... -- 15:54:27.341 DEBUG [15434]: Closing database connection -- 15:54:27.341 SQL [15434]: pgsql_close() -- 15:54:27.520 INFO [15434]: COREGRADE is starting... -- 15:54:27.520 INFO [15434]: Version from config: 1.0 -- 15:54:27.520 DEBUG [15434]: Connecting to database... -- 15:54:27.520 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:54:27.520 SQL [15434]: pgsql_db_connect() -- 15:54:27.524 DEBUG [15434]: Database connection successful -- 15:54:27.524 INFO [15434]: _SERVER found -- 15:54:27.524 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 15:54:27.524 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 15:54:27.524 INFO [15434]: HTTP_COOKIE = ci_session=gdm9ia80ksindhebj78c246qbuhfn15v; _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1496783461.1587434947 -- 15:54:27.524 INFO [15434]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:54:27.524 INFO [15434]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 15:54:27.535 INFO [15434]: COREGRADE is stopping... -- 15:54:27.535 DEBUG [15434]: Closing database connection -- 15:54:27.535 SQL [15434]: pgsql_close() -- 15:54:27.578 INFO [15433]: COREGRADE is starting... -- 15:54:27.578 INFO [15433]: Version from config: 1.0 -- 15:54:27.578 DEBUG [15433]: Connecting to database... -- 15:54:27.578 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:54:27.578 SQL [15433]: pgsql_db_connect() -- 15:54:27.582 DEBUG [15433]: Database connection successful -- 15:54:27.582 INFO [15433]: _SERVER found -- 15:54:27.582 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 15:54:27.582 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 15:54:27.582 INFO [15433]: HTTP_COOKIE = ci_session=gdm9ia80ksindhebj78c246qbuhfn15v; _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1496783461.1587434947 -- 15:54:27.582 INFO [15433]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 15:54:27.582 INFO [15433]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 15:54:27.594 INFO [15433]: COREGRADE is stopping... -- 15:54:27.594 DEBUG [15433]: Closing database connection -- 15:54:27.594 SQL [15433]: pgsql_close() -- 18:10:54.308 INFO [24592]: COREGRADE is starting... -- 18:10:54.309 INFO [24592]: Version from config: 1.0 -- 18:10:54.309 DEBUG [24592]: Connecting to database... -- 18:10:54.309 DEBUG [24592]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:10:54.309 SQL [24592]: pgsql_db_connect() -- 18:10:54.313 DEBUG [24592]: Database connection successful -- 18:10:54.313 INFO [24592]: _SERVER found -- 18:10:54.313 INFO [24592]: REMOTE_ADDR = 10.0.0.15 -- 18:10:54.313 INFO [24592]: SERVER_NAME = oameye.works.coregrade.com -- 18:10:54.313 INFO [24592]: QUERY_STRING = -- 18:10:54.313 INFO [24592]: HTTP_X_FORWARDED_FOR = 123.139.57.210 -- 18:10:54.355 INFO [24592]: COREGRADE is stopping... -- 18:10:54.355 DEBUG [24592]: Closing database connection -- 18:10:54.355 SQL [24592]: pgsql_close() -- 18:10:56.570 INFO [15369]: COREGRADE is starting... -- 18:10:56.571 INFO [15369]: Version from config: 1.0 -- 18:10:56.571 DEBUG [15369]: Connecting to database... -- 18:10:56.571 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:10:56.571 SQL [15369]: pgsql_db_connect() -- 18:10:56.575 DEBUG [15369]: Database connection successful -- 18:10:56.575 INFO [15369]: _SERVER found -- 18:10:56.575 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 18:10:56.575 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 18:10:56.575 INFO [15369]: QUERY_STRING = /dana-na/auth/url_default/welcome.cgi -- 18:10:56.575 INFO [15369]: HTTP_X_FORWARDED_FOR = 123.139.57.210 -- 18:10:56.606 INFO [15369]: COREGRADE is stopping... -- 18:10:56.606 DEBUG [15369]: Closing database connection -- 18:10:56.606 SQL [15369]: pgsql_close() -- 20:00:33.468 INFO [15429]: COREGRADE is starting... -- 20:00:33.469 INFO [15429]: Version from config: 1.0 -- 20:00:33.469 DEBUG [15429]: Connecting to database... -- 20:00:33.469 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:00:33.469 SQL [15429]: pgsql_db_connect() -- 20:00:33.474 DEBUG [15429]: Database connection successful -- 20:00:33.474 INFO [15429]: _SERVER found -- 20:00:33.474 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 20:00:33.474 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 20:00:33.474 INFO [15429]: QUERY_STRING = /robots.txt -- 20:00:33.474 INFO [15429]: HTTP_X_FORWARDED_FOR = 66.249.73.212 -- 20:00:33.490 INFO [15429]: COREGRADE is stopping... -- 20:00:33.490 DEBUG [15429]: Closing database connection -- 20:00:33.490 SQL [15429]: pgsql_close() -- 20:00:33.522 INFO [15429]: COREGRADE is starting... -- 20:00:33.522 INFO [15429]: Version from config: 1.0 -- 20:00:33.522 DEBUG [15429]: Connecting to database... -- 20:00:33.522 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:00:33.522 SQL [15429]: pgsql_db_connect() -- 20:00:33.527 DEBUG [15429]: Database connection successful -- 20:00:33.527 INFO [15429]: _SERVER found -- 20:00:33.527 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 20:00:33.527 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 20:00:33.527 INFO [15429]: QUERY_STRING = -- 20:00:33.527 INFO [15429]: HTTP_X_FORWARDED_FOR = 66.249.73.212 -- 20:00:33.561 INFO [15429]: COREGRADE is stopping... -- 20:00:33.561 DEBUG [15429]: Closing database connection -- 20:00:33.561 SQL [15429]: pgsql_close() -- 21:18:19.026 INFO [15370]: COREGRADE is starting... -- 21:18:19.026 INFO [15370]: Version from config: 1.0 -- 21:18:19.026 DEBUG [15370]: Connecting to database... -- 21:18:19.026 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:18:19.026 SQL [15370]: pgsql_db_connect() -- 21:18:19.031 DEBUG [15370]: Database connection successful -- 21:18:19.031 INFO [15370]: _SERVER found -- 21:18:19.031 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 21:18:19.031 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 21:18:19.031 INFO [15370]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800 -- 21:18:19.031 INFO [15370]: QUERY_STRING = -- 21:18:19.031 INFO [15370]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:18:19.070 INFO [15370]: COREGRADE is stopping... -- 21:18:19.070 DEBUG [15370]: Closing database connection -- 21:18:19.070 SQL [15370]: pgsql_close() -- 21:18:19.151 INFO [15370]: COREGRADE is starting... -- 21:18:19.151 INFO [15370]: Version from config: 1.0 -- 21:18:19.151 DEBUG [15370]: Connecting to database... -- 21:18:19.151 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:18:19.151 SQL [15370]: pgsql_db_connect() -- 21:18:19.155 DEBUG [15370]: Database connection successful -- 21:18:19.155 INFO [15370]: _SERVER found -- 21:18:19.155 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 21:18:19.155 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 21:18:19.155 INFO [15370]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=r2s7lc9ca80kabhimcnruv22svbigaih -- 21:18:19.155 INFO [15370]: QUERY_STRING = -- 21:18:19.155 INFO [15370]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:18:19.187 INFO [15370]: COREGRADE is stopping... -- 21:18:19.187 DEBUG [15370]: Closing database connection -- 21:18:19.187 SQL [15370]: pgsql_close() -- 21:18:21.611 INFO [15370]: COREGRADE is starting... -- 21:18:21.611 INFO [15370]: Version from config: 1.0 -- 21:18:21.611 DEBUG [15370]: Connecting to database... -- 21:18:21.611 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:18:21.611 SQL [15370]: pgsql_db_connect() -- 21:18:21.615 DEBUG [15370]: Database connection successful -- 21:18:21.615 INFO [15370]: _SERVER found -- 21:18:21.615 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 21:18:21.615 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 21:18:21.615 INFO [15370]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=r2s7lc9ca80kabhimcnruv22svbigaih; _gid=GA1.2.177644958.1587518296; _gat_gtag_UA_54829827_2=1 -- 21:18:21.615 INFO [15370]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:18:21.615 INFO [15370]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:18:21.627 INFO [15370]: COREGRADE is stopping... -- 21:18:21.627 DEBUG [15370]: Closing database connection -- 21:18:21.627 SQL [15370]: pgsql_close() -- 21:18:24.910 INFO [15370]: COREGRADE is starting... -- 21:18:24.911 INFO [15370]: Version from config: 1.0 -- 21:18:24.911 DEBUG [15370]: Connecting to database... -- 21:18:24.911 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:18:24.911 SQL [15370]: pgsql_db_connect() -- 21:18:24.920 INFO [15367]: COREGRADE is starting... -- 21:18:24.920 INFO [15367]: Version from config: 1.0 -- 21:18:24.921 DEBUG [15367]: Connecting to database... -- 21:18:24.921 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:18:24.921 SQL [15367]: pgsql_db_connect() -- 21:18:24.915 DEBUG [15370]: Database connection successful -- 21:18:24.915 INFO [15370]: _SERVER found -- 21:18:24.915 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 21:18:24.915 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 21:18:24.915 INFO [15370]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=r2s7lc9ca80kabhimcnruv22svbigaih; _gid=GA1.2.177644958.1587518296; _gat_gtag_UA_54829827_2=1 -- 21:18:24.915 INFO [15370]: QUERY_STRING = /welcome/viewLogin -- 21:18:24.915 INFO [15370]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:18:24.946 INFO [15370]: COREGRADE is stopping... -- 21:18:24.946 DEBUG [15370]: Closing database connection -- 21:18:24.946 SQL [15370]: pgsql_close() -- 21:18:24.925 DEBUG [15367]: Database connection successful -- 21:18:24.925 INFO [15367]: _SERVER found -- 21:18:24.925 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 21:18:24.925 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 21:18:24.925 INFO [15367]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=r2s7lc9ca80kabhimcnruv22svbigaih; _gid=GA1.2.177644958.1587518296; _gat_gtag_UA_54829827_2=1 -- 21:18:24.925 INFO [15367]: QUERY_STRING = /auth -- 21:18:24.925 INFO [15367]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:18:24.960 INFO [15367]: COREGRADE is stopping... -- 21:18:24.960 DEBUG [15367]: Closing database connection -- 21:18:24.960 SQL [15367]: pgsql_close() -- 21:18:24.974 INFO [15367]: COREGRADE is starting... -- 21:18:24.974 INFO [15367]: Version from config: 1.0 -- 21:18:24.974 DEBUG [15367]: Connecting to database... -- 21:18:24.974 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:18:24.974 SQL [15367]: pgsql_db_connect() -- 21:18:24.978 DEBUG [15367]: Database connection successful -- 21:18:24.978 INFO [15367]: _SERVER found -- 21:18:24.978 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 21:18:24.978 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 21:18:24.978 INFO [15367]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=r2s7lc9ca80kabhimcnruv22svbigaih; _gid=GA1.2.177644958.1587518296; _gat_gtag_UA_54829827_2=1 -- 21:18:24.978 INFO [15367]: QUERY_STRING = /auth/index -- 21:18:24.978 INFO [15367]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:18:25.010 INFO [15367]: COREGRADE is stopping... -- 21:18:25.010 DEBUG [15367]: Closing database connection -- 21:18:25.010 SQL [15367]: pgsql_close() -- 21:18:25.894 INFO [15367]: COREGRADE is starting... -- 21:18:25.894 INFO [15367]: Version from config: 1.0 -- 21:18:25.894 DEBUG [15367]: Connecting to database... -- 21:18:25.894 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:18:25.895 SQL [15367]: pgsql_db_connect() -- 21:18:25.899 DEBUG [15367]: Database connection successful -- 21:18:25.899 INFO [15367]: _SERVER found -- 21:18:25.899 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 21:18:25.899 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 21:18:25.899 INFO [15367]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=r2s7lc9ca80kabhimcnruv22svbigaih; _gid=GA1.2.177644958.1587518296; _gat_gtag_UA_54829827_2=1 -- 21:18:25.899 INFO [15367]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:18:25.899 INFO [15367]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:18:25.911 INFO [15367]: COREGRADE is stopping... -- 21:18:25.911 DEBUG [15367]: Closing database connection -- 21:18:25.911 SQL [15367]: pgsql_close() -- 21:18:27.825 INFO [15367]: COREGRADE is starting... -- 21:18:27.826 INFO [15367]: Version from config: 1.0 -- 21:18:27.826 DEBUG [15367]: Connecting to database... -- 21:18:27.826 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:18:27.826 SQL [15367]: pgsql_db_connect() -- 21:18:27.861 INFO [15367]: COREGRADE is starting... -- 21:18:27.861 INFO [15367]: Version from config: 1.0 -- 21:18:27.861 DEBUG [15367]: Connecting to database... -- 21:18:27.861 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:18:27.861 SQL [15367]: pgsql_db_connect() -- 21:18:27.865 DEBUG [15367]: Database connection successful -- 21:18:27.865 INFO [15367]: _SERVER found -- 21:18:27.865 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 21:18:27.865 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 21:18:27.865 INFO [15367]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=r2s7lc9ca80kabhimcnruv22svbigaih; _gid=GA1.2.177644958.1587518296; _gat_gtag_UA_54829827_2=1 -- 21:18:27.865 INFO [15367]: QUERY_STRING = -- 21:18:27.865 INFO [15367]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:18:27.865 INFO [15367]: SystemStatus()09-09-********~************ -- 21:18:27.865 INFO [15367]: long coregrade_api_main(CVars in, CVars &out) -- 21:18:27.865 INFO [15367]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 21:18:27.865 INFO [15367]: account calls -- 21:18:27.865 INFO [15367]: account_calls() -- 21:18:27.865 INFO [15367]: LoginCoreGradeAccount() -- 21:18:27.865 FLOG_MAX [15367]: REQ_STRING(username) -- 21:18:27.865 FLOG_MAX [15367]: REQ_STRING(password) -- 21:18:27.865 FLOG_MAX [15367]: REQ_STRING(sessionid) -- 21:18:27.865 FLOG_MAX [15367]: long load_db_record( CVars &rec, const char * query, ... ) -- 21:18:27.865 SQL [15367]: pgsql_query() -- 21:18:27.865 SQL [15367]: About to run query: -- 21:18:27.865 SQL [15367]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678') -- 21:18:27.869 SQL [15367]: Found rows: 1 -- 21:18:27.869 FLOG_MAX [15367]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('tokslaw@chiefsoft.com') AND password= md5('12345678')) num_cols=16 -- 21:18:27.869 INFO [15367]: long SessionCheck(long uid, const char *sessionid, int create ) -- 21:18:27.869 SQL [15367]: pgsql_exec() -- 21:18:27.869 SQL [15367]: About to run query: -- 21:18:27.869 SQL [15367]: DELETE FROM members_session WHERE member_id=7 AND updated < (now() - interval '35 minutes') -- 21:18:27.871 SQL [15367]: PQcmdTuples: 1 -- 21:18:27.871 SQL [15367]: Affected rows: 1 -- 21:18:27.871 SQL [15367]: pgsql_exec() -- 21:18:27.871 SQL [15367]: About to run query: -- 21:18:27.871 SQL [15367]: DELETE FROM members_session WHERE member_id=7 -- 21:18:27.871 SQL [15367]: PQcmdTuples: 0 -- 21:18:27.871 SQL [15367]: Affected rows: 0 -- 21:18:27.871 SQL [15367]: pgsql_query() -- 21:18:27.871 SQL [15367]: About to run query: -- 21:18:27.871 SQL [15367]: SELECT * FROM members_session WHERE member_id=7 AND session<>'7CED611803D720C587C8EF3EBCEDE53B' -- 21:18:27.872 SQL [15367]: Found rows: 0 -- 21:18:27.872 SQL [15367]: Found rows: 0 -- 21:18:27.872 FLOG_MAX [15367]: long load_db_record( CVars &rec, const char * query, ... ) -- 21:18:27.872 SQL [15367]: pgsql_query() -- 21:18:27.872 SQL [15367]: About to run query: -- 21:18:27.872 SQL [15367]: SELECT * FROM members_session WHERE member_id=7 AND session='7CED611803D720C587C8EF3EBCEDE53B' -- 21:18:27.872 SQL [15367]: Found rows: 0 -- 21:18:27.872 SQL [15367]: Found rows: 0 -- 21:18:27.872 FLOG_MAX [15367]: insert_db_record() -- 21:18:27.872 SQL [15367]: pgsql_exec() -- 21:18:27.873 SQL [15367]: About to run query: -- 21:18:27.873 SQL [15367]: INSERT INTO members_session (member_id,session) VALUES ('7','7CED611803D720C587C8EF3EBCEDE53B') -- 21:18:27.874 SQL [15367]: PQcmdTuples: 1 -- 21:18:27.874 SQL [15367]: Affected rows: 1 -- 21:18:27.874 FLOG_MAX [15367]: SELECT currval('members_session_id_seq') -- 21:18:27.874 SQL [15367]: pgsql_query() -- 21:18:27.874 SQL [15367]: About to run query: -- 21:18:27.874 SQL [15367]: SELECT currval('members_session_id_seq') -- 21:18:27.874 SQL [15367]: Found rows: 1 -- 21:18:27.874 INFO [15367]: CreateDefaultPage() -- 21:18:27.874 FLOG_MAX [15367]: long load_db_record( CVars &rec, const char * query, ... ) -- 21:18:27.874 SQL [15367]: pgsql_query() -- 21:18:27.874 SQL [15367]: About to run query: -- 21:18:27.875 SQL [15367]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 21:18:27.875 SQL [15367]: Found rows: 1 -- 21:18:27.875 FLOG_MAX [15367]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 21:18:27.875 SQL [15367]: pgsql_query() -- 21:18:27.875 SQL [15367]: About to run query: -- 21:18:27.875 SQL [15367]: SELECT id FROM members_pages WHERE member_id = 7 AND page_mode='DEFAULT' -- 21:18:27.875 SQL [15367]: Found rows: 1 -- 21:18:27.875 INFO [15367]: /CreateDefaultPage() -- 21:18:27.875 INFO [15367]: /LoginCoreGradeAccount() -- 21:18:27.875 INFO [15367]: RET: added=2020-02-05 09:42:12.816064 -- 21:18:27.875 INFO [15367]: RET: email=tokslaw@chiefsoft.com -- 21:18:27.875 INFO [15367]: RET: firstname=Tokunbo -- 21:18:27.875 INFO [15367]: RET: folder=5D06B187B1E2285A63AD1D0ECB670D98 -- 21:18:27.875 INFO [15367]: RET: id=7 -- 21:18:27.875 INFO [15367]: RET: last_login= -- 21:18:27.875 INFO [15367]: RET: lastname=Lawal -- 21:18:27.875 INFO [15367]: RET: loc=192.168.1.13 -- 21:18:27.875 INFO [15367]: RET: member_id=7 -- 21:18:27.875 INFO [15367]: RET: password=25d55ad283aa400af464c76d713c07ad -- 21:18:27.875 INFO [15367]: RET: phone= -- 21:18:27.875 INFO [15367]: RET: pid= -- 21:18:27.875 INFO [15367]: RET: result=YES I GET TO BACK END -- 21:18:27.875 INFO [15367]: RET: sessionid=7CED611803D720C587C8EF3EBCEDE53B -- 21:18:27.875 INFO [15367]: RET: status=1 -- 21:18:27.875 INFO [15367]: RET: stauts=OK -- 21:18:27.875 INFO [15367]: RET: username=tokslaw@chiefsoft.com -- 21:18:27.875 INFO [15367]: RET: verified= -- 21:18:27.877 INFO [15367]: COREGRADE is stopping... -- 21:18:27.877 DEBUG [15367]: Closing database connection -- 21:18:27.877 SQL [15367]: pgsql_close() -- 21:18:27.830 DEBUG [15367]: Database connection successful -- 21:18:27.830 INFO [15367]: _SERVER found -- 21:18:27.830 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 21:18:27.830 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 21:18:27.830 INFO [15367]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=r2s7lc9ca80kabhimcnruv22svbigaih; _gid=GA1.2.177644958.1587518296; _gat_gtag_UA_54829827_2=1 -- 21:18:27.830 INFO [15367]: QUERY_STRING = /auth -- 21:18:27.830 INFO [15367]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:18:27.877 INFO [15367]: COREGRADE is stopping... -- 21:18:27.877 DEBUG [15367]: Closing database connection -- 21:18:27.877 SQL [15367]: pgsql_close() -- 21:18:27.910 INFO [15367]: COREGRADE is starting... -- 21:18:27.910 INFO [15367]: Version from config: 1.0 -- 21:18:27.910 DEBUG [15367]: Connecting to database... -- 21:18:27.910 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:18:27.910 SQL [15367]: pgsql_db_connect() -- 21:18:27.914 DEBUG [15367]: Database connection successful -- 21:18:27.914 INFO [15367]: _SERVER found -- 21:18:27.914 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 21:18:27.914 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 21:18:27.914 INFO [15367]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=r2s7lc9ca80kabhimcnruv22svbigaih; _gid=GA1.2.177644958.1587518296; _gat_gtag_UA_54829827_2=1 -- 21:18:27.914 INFO [15367]: QUERY_STRING = /member/index -- 21:18:27.914 INFO [15367]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:18:27.955 INFO [15367]: COREGRADE is stopping... -- 21:18:27.955 DEBUG [15367]: Closing database connection -- 21:18:27.955 SQL [15367]: pgsql_close() -- 21:18:28.946 INFO [15367]: COREGRADE is starting... -- 21:18:28.947 INFO [15367]: Version from config: 1.0 -- 21:18:28.947 DEBUG [15367]: Connecting to database... -- 21:18:28.947 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:18:28.947 SQL [15367]: pgsql_db_connect() -- 21:18:28.951 DEBUG [15367]: Database connection successful -- 21:18:28.951 INFO [15367]: _SERVER found -- 21:18:28.951 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 21:18:28.951 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 21:18:28.951 INFO [15367]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; ci_session=r2s7lc9ca80kabhimcnruv22svbigaih; _gid=GA1.2.177644958.1587518296; _gat_gtag_UA_54829827_2=1 -- 21:18:28.951 INFO [15367]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:18:28.951 INFO [15367]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:18:28.962 INFO [15367]: COREGRADE is stopping... -- 21:18:28.962 DEBUG [15367]: Closing database connection -- 21:18:28.962 SQL [15367]: pgsql_close() -- 00:13:39.761 INFO [15366]: COREGRADE is starting... -- 00:13:39.762 INFO [15366]: Version from config: 1.0 -- 00:13:39.762 DEBUG [15366]: Connecting to database... -- 00:13:39.762 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:13:39.762 SQL [15366]: pgsql_db_connect() -- 00:13:39.767 DEBUG [15366]: Database connection successful -- 00:13:39.767 INFO [15366]: _SERVER found -- 00:13:39.767 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 00:13:39.767 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 00:13:39.767 INFO [15366]: QUERY_STRING = /.well-known/acme-challenge/KUvBKZ_aDjuM3crwvPzNwqbWy9Fvg0QlR9Coctg2bOE -- 00:13:39.767 INFO [15366]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 00:13:39.807 INFO [15366]: COREGRADE is stopping... -- 00:13:39.807 DEBUG [15366]: Closing database connection -- 00:13:39.807 SQL [15366]: pgsql_close() -- 00:13:39.908 INFO [15366]: COREGRADE is starting... -- 00:13:39.909 INFO [15366]: Version from config: 1.0 -- 00:13:39.909 DEBUG [15366]: Connecting to database... -- 00:13:39.909 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:13:39.909 SQL [15366]: pgsql_db_connect() -- 00:13:39.913 DEBUG [15366]: Database connection successful -- 00:13:39.913 INFO [15366]: _SERVER found -- 00:13:39.913 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 00:13:39.913 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 00:13:39.913 INFO [15366]: QUERY_STRING = /.well-known/acme-challenge/KUvBKZ_aDjuM3crwvPzNwqbWy9Fvg0QlR9Coctg2bOE -- 00:13:39.913 INFO [15366]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 00:13:39.925 INFO [15366]: COREGRADE is stopping... -- 00:13:39.925 DEBUG [15366]: Closing database connection -- 00:13:39.925 SQL [15366]: pgsql_close() -- 00:13:40.089 INFO [24592]: COREGRADE is starting... -- 00:13:40.089 INFO [24592]: Version from config: 1.0 -- 00:13:40.089 DEBUG [24592]: Connecting to database... -- 00:13:40.089 DEBUG [24592]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:13:40.089 SQL [24592]: pgsql_db_connect() -- 00:13:40.094 DEBUG [24592]: Database connection successful -- 00:13:40.094 INFO [24592]: _SERVER found -- 00:13:40.094 INFO [24592]: REMOTE_ADDR = 10.0.0.15 -- 00:13:40.094 INFO [24592]: SERVER_NAME = oameye.works.coregrade.com -- 00:13:40.094 INFO [24592]: QUERY_STRING = /.well-known/acme-challenge/KUvBKZ_aDjuM3crwvPzNwqbWy9Fvg0QlR9Coctg2bOE -- 00:13:40.094 INFO [24592]: HTTP_X_FORWARDED_FOR = 52.28.236.88 -- 00:13:40.106 INFO [24592]: COREGRADE is stopping... -- 00:13:40.106 DEBUG [24592]: Closing database connection -- 00:13:40.106 SQL [24592]: pgsql_close() -- 07:33:25.045 INFO [15369]: COREGRADE is starting... -- 07:33:25.045 INFO [15369]: Version from config: 1.0 -- 07:33:25.045 DEBUG [15369]: Connecting to database... -- 07:33:25.045 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:33:25.045 SQL [15369]: pgsql_db_connect() -- 07:33:25.050 DEBUG [15369]: Database connection successful -- 07:33:25.050 INFO [15369]: _SERVER found -- 07:33:25.050 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 07:33:25.050 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 07:33:25.050 INFO [15369]: HTTP_COOKIE = _ga=GA1.2.1073336077.1587056389 -- 07:33:25.050 INFO [15369]: QUERY_STRING = /auth -- 07:33:25.050 INFO [15369]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 07:33:25.089 INFO [15369]: COREGRADE is stopping... -- 07:33:25.089 DEBUG [15369]: Closing database connection -- 07:33:25.089 SQL [15369]: pgsql_close() -- 07:33:25.380 INFO [15369]: COREGRADE is starting... -- 07:33:25.381 INFO [15369]: Version from config: 1.0 -- 07:33:25.381 DEBUG [15369]: Connecting to database... -- 07:33:25.381 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:33:25.381 SQL [15369]: pgsql_db_connect() -- 07:33:25.385 DEBUG [15369]: Database connection successful -- 07:33:25.385 INFO [15369]: _SERVER found -- 07:33:25.385 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 07:33:25.385 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 07:33:25.385 INFO [15369]: HTTP_COOKIE = ci_session=dqcq8abj2is4v1ro11snt963b52b7csk; _ga=GA1.2.1073336077.1587056389 -- 07:33:25.385 INFO [15369]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 07:33:25.385 INFO [15369]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 07:33:25.396 INFO [15369]: COREGRADE is stopping... -- 07:33:25.396 DEBUG [15369]: Closing database connection -- 07:33:25.396 SQL [15369]: pgsql_close() -- 08:36:17.721 INFO [15371]: COREGRADE is starting... -- 08:36:17.721 INFO [15371]: Version from config: 1.0 -- 08:36:17.721 DEBUG [15371]: Connecting to database... -- 08:36:17.721 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:36:17.721 SQL [15371]: pgsql_db_connect() -- 08:36:17.726 DEBUG [15371]: Database connection successful -- 08:36:17.726 INFO [15371]: _SERVER found -- 08:36:17.726 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 08:36:17.726 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 08:36:17.726 INFO [15371]: QUERY_STRING = /solr/admin/info/system -- 08:36:17.726 INFO [15371]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 08:36:17.741 INFO [15371]: COREGRADE is stopping... -- 08:36:17.741 DEBUG [15371]: Closing database connection -- 08:36:17.741 SQL [15371]: pgsql_close() -- 08:43:50.804 INFO [24616]: COREGRADE is starting... -- 08:43:50.804 INFO [24616]: Version from config: 1.0 -- 08:43:50.804 DEBUG [24616]: Connecting to database... -- 08:43:50.804 DEBUG [24616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:50.804 SQL [24616]: pgsql_db_connect() -- 08:43:50.809 DEBUG [24616]: Database connection successful -- 08:43:50.809 INFO [24616]: _SERVER found -- 08:43:50.809 INFO [24616]: REMOTE_ADDR = 10.0.0.15 -- 08:43:50.809 INFO [24616]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:50.809 INFO [24616]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 08:43:50.809 INFO [24616]: QUERY_STRING = /member -- 08:43:50.809 INFO [24616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:43:50.847 INFO [24616]: COREGRADE is stopping... -- 08:43:50.847 DEBUG [24616]: Closing database connection -- 08:43:50.847 SQL [24616]: pgsql_close() -- 08:43:50.857 INFO [24616]: COREGRADE is starting... -- 08:43:50.858 INFO [24616]: Version from config: 1.0 -- 08:43:50.858 DEBUG [24616]: Connecting to database... -- 08:43:50.858 DEBUG [24616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:50.858 SQL [24616]: pgsql_db_connect() -- 08:43:50.862 DEBUG [24616]: Database connection successful -- 08:43:50.862 INFO [24616]: _SERVER found -- 08:43:50.862 INFO [24616]: REMOTE_ADDR = 10.0.0.15 -- 08:43:50.862 INFO [24616]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:50.862 INFO [24616]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=tu0a9u0l8gi65qq9remqvc9immarbubt -- 08:43:50.862 INFO [24616]: QUERY_STRING = -- 08:43:50.862 INFO [24616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:43:50.903 INFO [24616]: COREGRADE is stopping... -- 08:43:50.903 DEBUG [24616]: Closing database connection -- 08:43:50.903 SQL [24616]: pgsql_close() -- 08:43:51.247 INFO [24616]: COREGRADE is starting... -- 08:43:51.248 INFO [24616]: Version from config: 1.0 -- 08:43:51.248 DEBUG [24616]: Connecting to database... -- 08:43:51.248 DEBUG [24616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:43:51.248 SQL [24616]: pgsql_db_connect() -- 08:43:51.252 DEBUG [24616]: Database connection successful -- 08:43:51.252 INFO [24616]: _SERVER found -- 08:43:51.252 INFO [24616]: REMOTE_ADDR = 10.0.0.15 -- 08:43:51.252 INFO [24616]: SERVER_NAME = oameye.works.coregrade.com -- 08:43:51.252 INFO [24616]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=tu0a9u0l8gi65qq9remqvc9immarbubt -- 08:43:51.252 INFO [24616]: QUERY_STRING = /assets/img/footer_1.jpg -- 08:43:51.252 INFO [24616]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:43:51.263 INFO [24616]: COREGRADE is stopping... -- 08:43:51.263 DEBUG [24616]: Closing database connection -- 08:43:51.263 SQL [24616]: pgsql_close() -- 08:44:47.879 INFO [15429]: COREGRADE is starting... -- 08:44:47.879 INFO [15429]: Version from config: 1.0 -- 08:44:47.879 DEBUG [15429]: Connecting to database... -- 08:44:47.879 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:44:47.879 SQL [15429]: pgsql_db_connect() -- 08:44:47.883 DEBUG [15429]: Database connection successful -- 08:44:47.883 INFO [15429]: _SERVER found -- 08:44:47.883 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 08:44:47.883 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 08:44:47.883 INFO [15429]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 08:44:47.883 INFO [15429]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 08:44:47.917 INFO [15429]: COREGRADE is stopping... -- 08:44:47.917 DEBUG [15429]: Closing database connection -- 08:44:47.917 SQL [15429]: pgsql_close() -- 08:44:48.762 INFO [15370]: COREGRADE is starting... -- 08:44:48.762 INFO [15370]: Version from config: 1.0 -- 08:44:48.762 DEBUG [15370]: Connecting to database... -- 08:44:48.762 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:44:48.762 SQL [15370]: pgsql_db_connect() -- 08:44:48.767 DEBUG [15370]: Database connection successful -- 08:44:48.767 INFO [15370]: _SERVER found -- 08:44:48.767 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 08:44:48.767 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 08:44:48.767 INFO [15370]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 08:44:48.767 INFO [15370]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 08:44:48.801 INFO [15370]: COREGRADE is stopping... -- 08:44:48.801 DEBUG [15370]: Closing database connection -- 08:44:48.801 SQL [15370]: pgsql_close() -- 08:50:30.502 INFO [15367]: COREGRADE is starting... -- 08:50:30.503 INFO [15367]: Version from config: 1.0 -- 08:50:30.503 DEBUG [15367]: Connecting to database... -- 08:50:30.503 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:50:30.503 SQL [15367]: pgsql_db_connect() -- 08:50:30.507 DEBUG [15367]: Database connection successful -- 08:50:30.507 INFO [15367]: _SERVER found -- 08:50:30.507 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 08:50:30.507 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 08:50:30.507 INFO [15367]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 08:50:30.507 INFO [15367]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 08:50:30.542 INFO [15367]: COREGRADE is stopping... -- 08:50:30.542 DEBUG [15367]: Closing database connection -- 08:50:30.542 SQL [15367]: pgsql_close() -- 09:23:21.330 INFO [15366]: COREGRADE is starting... -- 09:23:21.331 INFO [15366]: Version from config: 1.0 -- 09:23:21.331 DEBUG [15366]: Connecting to database... -- 09:23:21.331 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:23:21.331 SQL [15366]: pgsql_db_connect() -- 09:23:21.335 DEBUG [15366]: Database connection successful -- 09:23:21.335 INFO [15366]: _SERVER found -- 09:23:21.335 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 09:23:21.335 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 09:23:21.335 INFO [15366]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.177644958.1587518296 -- 09:23:21.335 INFO [15366]: QUERY_STRING = /auth -- 09:23:21.335 INFO [15366]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:23:21.371 INFO [15366]: COREGRADE is stopping... -- 09:23:21.371 DEBUG [15366]: Closing database connection -- 09:23:21.371 SQL [15366]: pgsql_close() -- 09:23:22.970 INFO [15366]: COREGRADE is starting... -- 09:23:22.970 INFO [15366]: Version from config: 1.0 -- 09:23:22.970 DEBUG [15366]: Connecting to database... -- 09:23:22.970 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:23:22.970 SQL [15366]: pgsql_db_connect() -- 09:23:22.975 DEBUG [15366]: Database connection successful -- 09:23:22.975 INFO [15366]: _SERVER found -- 09:23:22.975 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 09:23:22.975 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 09:23:22.975 INFO [15366]: HTTP_COOKIE = _ga=GA1.2.2114512537.1586652800; _gid=GA1.2.177644958.1587518296; ci_session=hru1vta3q85ko3jb1e3nmaqnbaqp9lak -- 09:23:22.975 INFO [15366]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 09:23:22.975 INFO [15366]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:23:22.986 INFO [15366]: COREGRADE is stopping... -- 09:23:22.986 DEBUG [15366]: Closing database connection -- 09:23:22.986 SQL [15366]: pgsql_close() -- 09:48:41.076 INFO [15433]: COREGRADE is starting... -- 09:48:41.076 INFO [15433]: Version from config: 1.0 -- 09:48:41.076 DEBUG [15433]: Connecting to database... -- 09:48:41.076 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:48:41.076 SQL [15433]: pgsql_db_connect() -- 09:48:41.081 DEBUG [15433]: Database connection successful -- 09:48:41.081 INFO [15433]: _SERVER found -- 09:48:41.081 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 09:48:41.081 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 09:48:41.081 INFO [15433]: QUERY_STRING = /Telerik.Web.UI.WebResource.axd -- 09:48:41.081 INFO [15433]: HTTP_X_FORWARDED_FOR = 128.14.133.58 -- 09:48:41.095 INFO [15433]: COREGRADE is stopping... -- 09:48:41.095 DEBUG [15433]: Closing database connection -- 09:48:41.095 SQL [15433]: pgsql_close() -- 10:10:50.593 INFO [24592]: COREGRADE is starting... -- 10:10:50.593 INFO [24592]: Version from config: 1.0 -- 10:10:50.593 DEBUG [24592]: Connecting to database... -- 10:10:50.593 DEBUG [24592]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:10:50.593 SQL [24592]: pgsql_db_connect() -- 10:10:50.598 DEBUG [24592]: Database connection successful -- 10:10:50.598 INFO [24592]: _SERVER found -- 10:10:50.598 INFO [24592]: REMOTE_ADDR = 10.0.0.15 -- 10:10:50.598 INFO [24592]: SERVER_NAME = oameye.works.coregrade.com -- 10:10:50.598 INFO [24592]: QUERY_STRING = -- 10:10:50.598 INFO [24592]: HTTP_X_FORWARDED_FOR = 144.21.103.101 -- 10:10:50.633 INFO [24592]: COREGRADE is stopping... -- 10:10:50.633 DEBUG [24592]: Closing database connection -- 10:10:50.633 SQL [24592]: pgsql_close() -- 10:10:51.317 INFO [24592]: COREGRADE is starting... -- 10:10:51.317 INFO [24592]: Version from config: 1.0 -- 10:10:51.317 DEBUG [24592]: Connecting to database... -- 10:10:51.317 DEBUG [24592]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:10:51.317 SQL [24592]: pgsql_db_connect() -- 10:10:51.322 DEBUG [24592]: Database connection successful -- 10:10:51.322 INFO [24592]: _SERVER found -- 10:10:51.322 INFO [24592]: REMOTE_ADDR = 10.0.0.15 -- 10:10:51.322 INFO [24592]: SERVER_NAME = oameye.works.coregrade.com -- 10:10:51.322 INFO [24592]: QUERY_STRING = /dana-na/auth/url_default/welcome.cgi -- 10:10:51.322 INFO [24592]: HTTP_X_FORWARDED_FOR = 144.21.103.101 -- 10:10:51.333 INFO [24592]: COREGRADE is stopping... -- 10:10:51.333 DEBUG [24592]: Closing database connection -- 10:10:51.333 SQL [24592]: pgsql_close() -- 13:07:39.594 INFO [15434]: COREGRADE is starting... -- 13:07:39.594 INFO [15434]: Version from config: 1.0 -- 13:07:39.594 DEBUG [15434]: Connecting to database... -- 13:07:39.594 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:07:39.594 SQL [15434]: pgsql_db_connect() -- 13:07:39.599 DEBUG [15434]: Database connection successful -- 13:07:39.599 INFO [15434]: _SERVER found -- 13:07:39.599 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 13:07:39.599 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 13:07:39.599 INFO [15434]: QUERY_STRING = /TP/public/index.php -- 13:07:39.599 INFO [15434]: HTTP_X_FORWARDED_FOR = 52.83.208.239 -- 13:07:39.614 INFO [15434]: COREGRADE is stopping... -- 13:07:39.614 DEBUG [15434]: Closing database connection -- 13:07:39.614 SQL [15434]: pgsql_close() -- 13:07:41.686 INFO [15434]: COREGRADE is starting... -- 13:07:41.686 INFO [15434]: Version from config: 1.0 -- 13:07:41.686 DEBUG [15434]: Connecting to database... -- 13:07:41.686 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:07:41.686 SQL [15434]: pgsql_db_connect() -- 13:07:41.690 DEBUG [15434]: Database connection successful -- 13:07:41.690 INFO [15434]: _SERVER found -- 13:07:41.690 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 13:07:41.690 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 13:07:41.690 INFO [15434]: QUERY_STRING = /TP/index.php -- 13:07:41.690 INFO [15434]: HTTP_X_FORWARDED_FOR = 52.83.208.239 -- 13:07:41.702 INFO [15434]: COREGRADE is stopping... -- 13:07:41.702 DEBUG [15434]: Closing database connection -- 13:07:41.702 SQL [15434]: pgsql_close() -- 13:07:43.673 INFO [15369]: COREGRADE is starting... -- 13:07:43.673 INFO [15369]: Version from config: 1.0 -- 13:07:43.673 DEBUG [15369]: Connecting to database... -- 13:07:43.673 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:07:43.673 SQL [15369]: pgsql_db_connect() -- 13:07:43.677 DEBUG [15369]: Database connection successful -- 13:07:43.677 INFO [15369]: _SERVER found -- 13:07:43.677 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 13:07:43.677 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 13:07:43.677 INFO [15369]: QUERY_STRING = /thinkphp/html/public/index.php -- 13:07:43.677 INFO [15369]: HTTP_X_FORWARDED_FOR = 52.83.208.239 -- 13:07:43.691 INFO [15369]: COREGRADE is stopping... -- 13:07:43.691 DEBUG [15369]: Closing database connection -- 13:07:43.691 SQL [15369]: pgsql_close() -- 13:07:45.793 INFO [15369]: COREGRADE is starting... -- 13:07:45.794 INFO [15369]: Version from config: 1.0 -- 13:07:45.794 DEBUG [15369]: Connecting to database... -- 13:07:45.794 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:07:45.794 SQL [15369]: pgsql_db_connect() -- 13:07:45.798 DEBUG [15369]: Database connection successful -- 13:07:45.798 INFO [15369]: _SERVER found -- 13:07:45.798 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 13:07:45.798 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 13:07:45.798 INFO [15369]: QUERY_STRING = /html/public/index.php -- 13:07:45.798 INFO [15369]: HTTP_X_FORWARDED_FOR = 52.83.208.239 -- 13:07:45.809 INFO [15369]: COREGRADE is stopping... -- 13:07:45.809 DEBUG [15369]: Closing database connection -- 13:07:45.809 SQL [15369]: pgsql_close() -- 13:07:47.896 INFO [15369]: COREGRADE is starting... -- 13:07:47.897 INFO [15369]: Version from config: 1.0 -- 13:07:47.897 DEBUG [15369]: Connecting to database... -- 13:07:47.897 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:07:47.897 SQL [15369]: pgsql_db_connect() -- 13:07:47.901 DEBUG [15369]: Database connection successful -- 13:07:47.901 INFO [15369]: _SERVER found -- 13:07:47.901 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 13:07:47.901 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 13:07:47.901 INFO [15369]: QUERY_STRING = /public/index.php -- 13:07:47.901 INFO [15369]: HTTP_X_FORWARDED_FOR = 52.83.208.239 -- 13:07:47.912 INFO [15369]: COREGRADE is stopping... -- 13:07:47.912 DEBUG [15369]: Closing database connection -- 13:07:47.912 SQL [15369]: pgsql_close() -- 13:07:50.089 INFO [15371]: COREGRADE is starting... -- 13:07:50.090 INFO [15371]: Version from config: 1.0 -- 13:07:50.090 DEBUG [15371]: Connecting to database... -- 13:07:50.090 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:07:50.090 SQL [15371]: pgsql_db_connect() -- 13:07:50.094 DEBUG [15371]: Database connection successful -- 13:07:50.094 INFO [15371]: _SERVER found -- 13:07:50.094 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 13:07:50.094 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 13:07:50.094 INFO [15371]: QUERY_STRING = /TP/html/public/index.php -- 13:07:50.094 INFO [15371]: HTTP_X_FORWARDED_FOR = 52.83.208.239 -- 13:07:50.108 INFO [15371]: COREGRADE is stopping... -- 13:07:50.108 DEBUG [15371]: Closing database connection -- 13:07:50.108 SQL [15371]: pgsql_close() -- 13:07:52.201 INFO [15369]: COREGRADE is starting... -- 13:07:52.202 INFO [15369]: Version from config: 1.0 -- 13:07:52.202 DEBUG [15369]: Connecting to database... -- 13:07:52.202 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:07:52.202 SQL [15369]: pgsql_db_connect() -- 13:07:52.206 DEBUG [15369]: Database connection successful -- 13:07:52.206 INFO [15369]: _SERVER found -- 13:07:52.206 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 13:07:52.206 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 13:07:52.206 INFO [15369]: QUERY_STRING = /elrekt.php -- 13:07:52.206 INFO [15369]: HTTP_X_FORWARDED_FOR = 52.83.208.239 -- 13:07:52.217 INFO [15369]: COREGRADE is stopping... -- 13:07:52.217 DEBUG [15369]: Closing database connection -- 13:07:52.217 SQL [15369]: pgsql_close() -- 13:07:54.294 INFO [15369]: COREGRADE is starting... -- 13:07:54.294 INFO [15369]: Version from config: 1.0 -- 13:07:54.294 DEBUG [15369]: Connecting to database... -- 13:07:54.294 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:07:54.294 SQL [15369]: pgsql_db_connect() -- 13:07:54.299 DEBUG [15369]: Database connection successful -- 13:07:54.299 INFO [15369]: _SERVER found -- 13:07:54.299 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 13:07:54.299 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 13:07:54.299 INFO [15369]: QUERY_STRING = -- 13:07:54.299 INFO [15369]: HTTP_X_FORWARDED_FOR = 52.83.208.239 -- 13:07:54.331 INFO [15369]: COREGRADE is stopping... -- 13:07:54.331 DEBUG [15369]: Closing database connection -- 13:07:54.331 SQL [15369]: pgsql_close() -- 13:07:56.399 INFO [15369]: COREGRADE is starting... -- 13:07:56.399 INFO [15369]: Version from config: 1.0 -- 13:07:56.399 DEBUG [15369]: Connecting to database... -- 13:07:56.399 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:07:56.399 SQL [15369]: pgsql_db_connect() -- 13:07:56.404 DEBUG [15369]: Database connection successful -- 13:07:56.404 INFO [15369]: _SERVER found -- 13:07:56.404 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 13:07:56.404 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 13:07:56.404 INFO [15369]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 13:07:56.404 INFO [15369]: HTTP_X_FORWARDED_FOR = 52.83.208.239 -- 13:07:56.435 INFO [15369]: COREGRADE is stopping... -- 13:07:56.435 DEBUG [15369]: Closing database connection -- 13:07:56.435 SQL [15369]: pgsql_close() -- 13:07:58.494 INFO [24616]: COREGRADE is starting... -- 13:07:58.494 INFO [24616]: Version from config: 1.0 -- 13:07:58.494 DEBUG [24616]: Connecting to database... -- 13:07:58.494 DEBUG [24616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:07:58.494 SQL [24616]: pgsql_db_connect() -- 13:07:58.498 DEBUG [24616]: Database connection successful -- 13:07:58.498 INFO [24616]: _SERVER found -- 13:07:58.498 INFO [24616]: REMOTE_ADDR = 10.0.0.15 -- 13:07:58.498 INFO [24616]: SERVER_NAME = oameye.works.coregrade.com -- 13:07:58.498 INFO [24616]: QUERY_STRING = s=captcha -- 13:07:58.498 INFO [24616]: HTTP_X_FORWARDED_FOR = 52.83.208.239 -- 13:07:58.531 INFO [24616]: COREGRADE is stopping... -- 13:07:58.531 DEBUG [24616]: Closing database connection -- 13:07:58.531 SQL [24616]: pgsql_close() -- 13:08:01.289 INFO [15429]: COREGRADE is starting... -- 13:08:01.289 INFO [15429]: Version from config: 1.0 -- 13:08:01.289 DEBUG [15429]: Connecting to database... -- 13:08:01.289 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:08:01.289 SQL [15429]: pgsql_db_connect() -- 13:08:01.293 DEBUG [15429]: Database connection successful -- 13:08:01.293 INFO [15429]: _SERVER found -- 13:08:01.293 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 13:08:01.293 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 13:08:01.293 INFO [15429]: QUERY_STRING = -- 13:08:01.293 INFO [15429]: HTTP_X_FORWARDED_FOR = 52.83.208.239 -- 13:08:01.326 INFO [15429]: COREGRADE is stopping... -- 13:08:01.326 DEBUG [15429]: Closing database connection -- 13:08:01.326 SQL [15429]: pgsql_close() -- 14:56:13.243 INFO [15370]: COREGRADE is starting... -- 14:56:13.244 INFO [15370]: Version from config: 1.0 -- 14:56:13.244 DEBUG [15370]: Connecting to database... -- 14:56:13.244 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:56:13.244 SQL [15370]: pgsql_db_connect() -- 14:56:13.250 DEBUG [15370]: Database connection successful -- 14:56:13.250 INFO [15370]: _SERVER found -- 14:56:13.250 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 14:56:13.250 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 14:56:13.250 INFO [15370]: QUERY_STRING = -- 14:56:13.250 INFO [15370]: HTTP_X_FORWARDED_FOR = 128.14.209.226 -- 14:56:13.290 INFO [15370]: COREGRADE is stopping... -- 14:56:13.290 DEBUG [15370]: Closing database connection -- 14:56:13.290 SQL [15370]: pgsql_close() -- 15:25:26.014 INFO [15367]: COREGRADE is starting... -- 15:25:26.014 INFO [15367]: Version from config: 1.0 -- 15:25:26.014 DEBUG [15367]: Connecting to database... -- 15:25:26.014 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:26.014 SQL [15367]: pgsql_db_connect() -- 15:25:26.019 DEBUG [15367]: Database connection successful -- 15:25:26.019 INFO [15367]: _SERVER found -- 15:25:26.019 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 15:25:26.019 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 15:25:26.019 INFO [15367]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 15:25:26.019 INFO [15367]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 15:25:26.033 INFO [15367]: COREGRADE is stopping... -- 15:25:26.033 DEBUG [15367]: Closing database connection -- 15:25:26.033 SQL [15367]: pgsql_close() -- 16:17:40.782 INFO [15366]: COREGRADE is starting... -- 16:17:40.783 INFO [15366]: Version from config: 1.0 -- 16:17:40.783 DEBUG [15366]: Connecting to database... -- 16:17:40.783 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:17:40.783 SQL [15366]: pgsql_db_connect() -- 16:17:40.788 DEBUG [15366]: Database connection successful -- 16:17:40.788 INFO [15366]: _SERVER found -- 16:17:40.788 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 16:17:40.788 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 16:17:40.788 INFO [15366]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 16:17:40.788 INFO [15366]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 16:17:40.802 INFO [15366]: COREGRADE is stopping... -- 16:17:40.802 DEBUG [15366]: Closing database connection -- 16:17:40.802 SQL [15366]: pgsql_close() -- 23:42:47.285 INFO [24592]: COREGRADE is starting... -- 23:42:47.286 INFO [24592]: Version from config: 1.0 -- 23:42:47.286 DEBUG [24592]: Connecting to database... -- 23:42:47.286 DEBUG [24592]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:42:47.286 SQL [24592]: pgsql_db_connect() -- 23:42:47.291 DEBUG [24592]: Database connection successful -- 23:42:47.291 INFO [24592]: _SERVER found -- 23:42:47.291 INFO [24592]: REMOTE_ADDR = 10.0.0.15 -- 23:42:47.291 INFO [24592]: SERVER_NAME = oameye.works.coregrade.com -- 23:42:47.291 INFO [24592]: QUERY_STRING = /.well-known/acme-challenge/AjajKoJSWx6CxsNockehuG76sD2TbQlNfWrdSNbUXpE -- 23:42:47.291 INFO [24592]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 23:42:47.310 INFO [24592]: COREGRADE is stopping... -- 23:42:47.310 DEBUG [24592]: Closing database connection -- 23:42:47.310 SQL [24592]: pgsql_close() -- 23:42:47.345 INFO [15434]: COREGRADE is starting... -- 23:42:47.346 INFO [15434]: Version from config: 1.0 -- 23:42:47.346 DEBUG [15434]: Connecting to database... -- 23:42:47.346 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:42:47.346 SQL [15434]: pgsql_db_connect() -- 23:42:47.350 DEBUG [15434]: Database connection successful -- 23:42:47.350 INFO [15434]: _SERVER found -- 23:42:47.350 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 23:42:47.350 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 23:42:47.350 INFO [15434]: QUERY_STRING = /.well-known/acme-challenge/AjajKoJSWx6CxsNockehuG76sD2TbQlNfWrdSNbUXpE -- 23:42:47.350 INFO [15434]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 23:42:47.363 INFO [15434]: COREGRADE is stopping... -- 23:42:47.363 DEBUG [15434]: Closing database connection -- 23:42:47.363 SQL [15434]: pgsql_close() -- 03:44:28.045 INFO [15369]: COREGRADE is starting... -- 03:44:28.046 INFO [15369]: Version from config: 1.0 -- 03:44:28.046 DEBUG [15369]: Connecting to database... -- 03:44:28.046 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:44:28.046 SQL [15369]: pgsql_db_connect() -- 03:44:28.051 DEBUG [15369]: Database connection successful -- 03:44:28.051 INFO [15369]: _SERVER found -- 03:44:28.051 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 03:44:28.051 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 03:44:28.051 INFO [15369]: QUERY_STRING = -- 03:44:28.051 INFO [15369]: HTTP_X_FORWARDED_FOR = 183.136.225.45 -- 03:44:28.086 INFO [15369]: COREGRADE is stopping... -- 03:44:28.086 DEBUG [15369]: Closing database connection -- 03:44:28.086 SQL [15369]: pgsql_close() -- 07:38:20.481 INFO [24616]: COREGRADE is starting... -- 07:38:20.482 INFO [24616]: Version from config: 1.0 -- 07:38:20.482 DEBUG [24616]: Connecting to database... -- 07:38:20.482 DEBUG [24616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:38:20.482 SQL [24616]: pgsql_db_connect() -- 07:38:20.487 DEBUG [24616]: Database connection successful -- 07:38:20.487 INFO [24616]: _SERVER found -- 07:38:20.487 INFO [24616]: REMOTE_ADDR = 10.0.0.15 -- 07:38:20.487 INFO [24616]: SERVER_NAME = oameye.works.coregrade.com -- 07:38:20.487 INFO [24616]: QUERY_STRING = /TP/public/index.php -- 07:38:20.487 INFO [24616]: HTTP_X_FORWARDED_FOR = 221.13.17.29 -- 07:38:20.501 INFO [24616]: COREGRADE is stopping... -- 07:38:20.501 DEBUG [24616]: Closing database connection -- 07:38:20.501 SQL [24616]: pgsql_close() -- 07:38:23.270 INFO [24616]: COREGRADE is starting... -- 07:38:23.270 INFO [24616]: Version from config: 1.0 -- 07:38:23.270 DEBUG [24616]: Connecting to database... -- 07:38:23.270 DEBUG [24616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:38:23.270 SQL [24616]: pgsql_db_connect() -- 07:38:23.275 DEBUG [24616]: Database connection successful -- 07:38:23.275 INFO [24616]: _SERVER found -- 07:38:23.275 INFO [24616]: REMOTE_ADDR = 10.0.0.15 -- 07:38:23.275 INFO [24616]: SERVER_NAME = oameye.works.coregrade.com -- 07:38:23.275 INFO [24616]: QUERY_STRING = /TP/index.php -- 07:38:23.275 INFO [24616]: HTTP_X_FORWARDED_FOR = 221.13.17.29 -- 07:38:23.286 INFO [24616]: COREGRADE is stopping... -- 07:38:23.286 DEBUG [24616]: Closing database connection -- 07:38:23.286 SQL [24616]: pgsql_close() -- 07:38:25.099 INFO [24616]: COREGRADE is starting... -- 07:38:25.099 INFO [24616]: Version from config: 1.0 -- 07:38:25.099 DEBUG [24616]: Connecting to database... -- 07:38:25.099 DEBUG [24616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:38:25.099 SQL [24616]: pgsql_db_connect() -- 07:38:25.104 DEBUG [24616]: Database connection successful -- 07:38:25.104 INFO [24616]: _SERVER found -- 07:38:25.104 INFO [24616]: REMOTE_ADDR = 10.0.0.15 -- 07:38:25.104 INFO [24616]: SERVER_NAME = oameye.works.coregrade.com -- 07:38:25.104 INFO [24616]: QUERY_STRING = /thinkphp/html/public/index.php -- 07:38:25.104 INFO [24616]: HTTP_X_FORWARDED_FOR = 221.13.17.29 -- 07:38:25.115 INFO [24616]: COREGRADE is stopping... -- 07:38:25.115 DEBUG [24616]: Closing database connection -- 07:38:25.115 SQL [24616]: pgsql_close() -- 07:38:27.114 INFO [15429]: COREGRADE is starting... -- 07:38:27.115 INFO [15429]: Version from config: 1.0 -- 07:38:27.115 DEBUG [15429]: Connecting to database... -- 07:38:27.115 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:38:27.115 SQL [15429]: pgsql_db_connect() -- 07:38:27.119 DEBUG [15429]: Database connection successful -- 07:38:27.119 INFO [15429]: _SERVER found -- 07:38:27.119 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 07:38:27.119 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 07:38:27.119 INFO [15429]: QUERY_STRING = /html/public/index.php -- 07:38:27.119 INFO [15429]: HTTP_X_FORWARDED_FOR = 221.13.17.29 -- 07:38:27.132 INFO [15429]: COREGRADE is stopping... -- 07:38:27.132 DEBUG [15429]: Closing database connection -- 07:38:27.132 SQL [15429]: pgsql_close() -- 07:38:34.780 INFO [15370]: COREGRADE is starting... -- 07:38:34.780 INFO [15370]: Version from config: 1.0 -- 07:38:34.780 DEBUG [15370]: Connecting to database... -- 07:38:34.780 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:38:34.780 SQL [15370]: pgsql_db_connect() -- 07:38:34.785 DEBUG [15370]: Database connection successful -- 07:38:34.785 INFO [15370]: _SERVER found -- 07:38:34.785 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 07:38:34.785 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 07:38:34.785 INFO [15370]: QUERY_STRING = -- 07:38:34.785 INFO [15370]: HTTP_X_FORWARDED_FOR = 221.13.17.29 -- 07:38:34.821 INFO [15370]: COREGRADE is stopping... -- 07:38:34.821 DEBUG [15370]: Closing database connection -- 07:38:34.821 SQL [15370]: pgsql_close() -- 07:52:32.815 INFO [15367]: COREGRADE is starting... -- 07:52:32.816 INFO [15367]: Version from config: 1.0 -- 07:52:32.816 DEBUG [15367]: Connecting to database... -- 07:52:32.816 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:52:32.816 SQL [15367]: pgsql_db_connect() -- 07:52:32.820 DEBUG [15367]: Database connection successful -- 07:52:32.820 INFO [15367]: _SERVER found -- 07:52:32.820 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 07:52:32.820 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 07:52:32.820 INFO [15367]: QUERY_STRING = /.env -- 07:52:32.820 INFO [15367]: HTTP_X_FORWARDED_FOR = 51.159.0.129 -- 07:52:32.834 INFO [15367]: COREGRADE is stopping... -- 07:52:32.834 DEBUG [15367]: Closing database connection -- 07:52:32.834 SQL [15367]: pgsql_close() -- 12:12:25.231 INFO [24592]: COREGRADE is starting... -- 12:12:25.232 INFO [24592]: Version from config: 1.0 -- 12:12:25.232 DEBUG [24592]: Connecting to database... -- 12:12:25.232 DEBUG [24592]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:12:25.232 SQL [24592]: pgsql_db_connect() -- 12:12:25.239 DEBUG [24592]: Database connection successful -- 12:12:25.239 INFO [24592]: _SERVER found -- 12:12:25.239 INFO [24592]: REMOTE_ADDR = 10.0.0.15 -- 12:12:25.239 INFO [24592]: SERVER_NAME = oameye.works.coregrade.com -- 12:12:25.239 INFO [24592]: QUERY_STRING = /robots.txt -- 12:12:25.239 INFO [24592]: HTTP_X_FORWARDED_FOR = 66.249.66.216 -- 12:12:25.259 INFO [24592]: COREGRADE is stopping... -- 12:12:25.259 DEBUG [24592]: Closing database connection -- 12:12:25.259 SQL [24592]: pgsql_close() -- 12:12:25.341 INFO [24592]: COREGRADE is starting... -- 12:12:25.341 INFO [24592]: Version from config: 1.0 -- 12:12:25.341 DEBUG [24592]: Connecting to database... -- 12:12:25.341 DEBUG [24592]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:12:25.341 SQL [24592]: pgsql_db_connect() -- 12:12:25.345 DEBUG [24592]: Database connection successful -- 12:12:25.345 INFO [24592]: _SERVER found -- 12:12:25.345 INFO [24592]: REMOTE_ADDR = 10.0.0.15 -- 12:12:25.345 INFO [24592]: SERVER_NAME = oameye.works.coregrade.com -- 12:12:25.345 INFO [24592]: QUERY_STRING = /home/terms -- 12:12:25.345 INFO [24592]: HTTP_X_FORWARDED_FOR = 66.249.66.212 -- 12:12:25.382 INFO [24592]: COREGRADE is stopping... -- 12:12:25.382 DEBUG [24592]: Closing database connection -- 12:12:25.382 SQL [24592]: pgsql_close() -- 13:03:05.879 INFO [15371]: COREGRADE is starting... -- 13:03:05.880 INFO [15371]: Version from config: 1.0 -- 13:03:05.880 DEBUG [15371]: Connecting to database... -- 13:03:05.880 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:03:05.880 SQL [15371]: pgsql_db_connect() -- 13:03:05.885 DEBUG [15371]: Database connection successful -- 13:03:05.885 INFO [15371]: _SERVER found -- 13:03:05.885 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 13:03:05.885 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 13:03:05.885 INFO [15371]: QUERY_STRING = -- 13:03:05.885 INFO [15371]: HTTP_X_FORWARDED_FOR = 183.136.225.45 -- 13:03:05.921 INFO [15371]: COREGRADE is stopping... -- 13:03:05.921 DEBUG [15371]: Closing database connection -- 13:03:05.921 SQL [15371]: pgsql_close() -- 13:11:55.962 INFO [15369]: COREGRADE is starting... -- 13:11:55.963 INFO [15369]: Version from config: 1.0 -- 13:11:55.963 DEBUG [15369]: Connecting to database... -- 13:11:55.963 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:11:55.963 SQL [15369]: pgsql_db_connect() -- 13:11:55.967 DEBUG [15369]: Database connection successful -- 13:11:55.967 INFO [15369]: _SERVER found -- 13:11:55.967 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 13:11:55.967 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 13:11:55.967 INFO [15369]: QUERY_STRING = -- 13:11:55.967 INFO [15369]: HTTP_X_FORWARDED_FOR = 45.195.146.140 -- 13:11:56.002 INFO [15369]: COREGRADE is stopping... -- 13:11:56.002 DEBUG [15369]: Closing database connection -- 13:11:56.002 SQL [15369]: pgsql_close() -- 13:58:56.232 INFO [24616]: COREGRADE is starting... -- 13:58:56.233 INFO [24616]: Version from config: 1.0 -- 13:58:56.233 DEBUG [24616]: Connecting to database... -- 13:58:56.233 DEBUG [24616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:58:56.233 SQL [24616]: pgsql_db_connect() -- 13:58:56.238 DEBUG [24616]: Database connection successful -- 13:58:56.238 INFO [24616]: _SERVER found -- 13:58:56.238 INFO [24616]: REMOTE_ADDR = 10.0.0.15 -- 13:58:56.238 INFO [24616]: SERVER_NAME = oameye.works.coregrade.com -- 13:58:56.238 INFO [24616]: QUERY_STRING = -- 13:58:56.238 INFO [24616]: HTTP_X_FORWARDED_FOR = 128.14.134.134 -- 13:58:56.274 INFO [24616]: COREGRADE is stopping... -- 13:58:56.274 DEBUG [24616]: Closing database connection -- 13:58:56.275 SQL [24616]: pgsql_close() -- 14:33:26.900 INFO [15429]: COREGRADE is starting... -- 14:33:26.900 INFO [15429]: Version from config: 1.0 -- 14:33:26.900 DEBUG [15429]: Connecting to database... -- 14:33:26.900 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:33:26.900 SQL [15429]: pgsql_db_connect() -- 14:33:26.906 DEBUG [15429]: Database connection successful -- 14:33:26.906 INFO [15429]: _SERVER found -- 14:33:26.906 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 14:33:26.906 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 14:33:26.906 INFO [15429]: QUERY_STRING = /solr/admin/info/system -- 14:33:26.906 INFO [15429]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 14:33:26.920 INFO [15429]: COREGRADE is stopping... -- 14:33:26.920 DEBUG [15429]: Closing database connection -- 14:33:26.920 SQL [15429]: pgsql_close() -- 14:40:57.551 INFO [15370]: COREGRADE is starting... -- 14:40:57.552 INFO [15370]: Version from config: 1.0 -- 14:40:57.552 DEBUG [15370]: Connecting to database... -- 14:40:57.552 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:40:57.552 SQL [15370]: pgsql_db_connect() -- 14:40:57.556 DEBUG [15370]: Database connection successful -- 14:40:57.556 INFO [15370]: _SERVER found -- 14:40:57.556 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 14:40:57.556 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 14:40:57.556 INFO [15370]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 14:40:57.556 INFO [15370]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 14:40:57.592 INFO [15370]: COREGRADE is stopping... -- 14:40:57.592 DEBUG [15370]: Closing database connection -- 14:40:57.592 SQL [15370]: pgsql_close() -- 14:40:58.040 INFO [15367]: COREGRADE is starting... -- 14:40:58.040 INFO [15367]: Version from config: 1.0 -- 14:40:58.040 DEBUG [15367]: Connecting to database... -- 14:40:58.040 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:40:58.040 SQL [15367]: pgsql_db_connect() -- 14:40:58.044 DEBUG [15367]: Database connection successful -- 14:40:58.044 INFO [15367]: _SERVER found -- 14:40:58.044 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 14:40:58.044 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 14:40:58.044 INFO [15367]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 14:40:58.044 INFO [15367]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 14:40:58.078 INFO [15367]: COREGRADE is stopping... -- 14:40:58.078 DEBUG [15367]: Closing database connection -- 14:40:58.078 SQL [15367]: pgsql_close() -- 14:44:39.200 INFO [15366]: COREGRADE is starting... -- 14:44:39.200 INFO [15366]: Version from config: 1.0 -- 14:44:39.200 DEBUG [15366]: Connecting to database... -- 14:44:39.200 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:44:39.200 SQL [15366]: pgsql_db_connect() -- 14:44:39.205 DEBUG [15366]: Database connection successful -- 14:44:39.205 INFO [15366]: _SERVER found -- 14:44:39.205 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 14:44:39.205 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 14:44:39.205 INFO [15366]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 14:44:39.205 INFO [15366]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 14:44:39.239 INFO [15366]: COREGRADE is stopping... -- 14:44:39.239 DEBUG [15366]: Closing database connection -- 14:44:39.239 SQL [15366]: pgsql_close() -- 15:36:15.173 INFO [15433]: COREGRADE is starting... -- 15:36:15.173 INFO [15433]: Version from config: 1.0 -- 15:36:15.173 DEBUG [15433]: Connecting to database... -- 15:36:15.174 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:36:15.174 SQL [15433]: pgsql_db_connect() -- 15:36:15.178 DEBUG [15433]: Database connection successful -- 15:36:15.178 INFO [15433]: _SERVER found -- 15:36:15.178 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 15:36:15.178 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 15:36:15.178 INFO [15433]: QUERY_STRING = -- 15:36:15.178 INFO [15433]: HTTP_X_FORWARDED_FOR = 178.62.204.133 -- 15:36:15.217 INFO [15433]: COREGRADE is stopping... -- 15:36:15.217 DEBUG [15433]: Closing database connection -- 15:36:15.217 SQL [15433]: pgsql_close() -- 15:51:59.948 INFO [15434]: COREGRADE is starting... -- 15:51:59.948 INFO [15434]: Version from config: 1.0 -- 15:51:59.948 DEBUG [15434]: Connecting to database... -- 15:51:59.948 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:51:59.948 SQL [15434]: pgsql_db_connect() -- 15:51:59.952 DEBUG [15434]: Database connection successful -- 15:51:59.952 INFO [15434]: _SERVER found -- 15:51:59.952 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 15:51:59.952 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 15:51:59.952 INFO [15434]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699 -- 15:51:59.952 INFO [15434]: QUERY_STRING = /member/viewRoom -- 15:51:59.952 INFO [15434]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:51:59.987 INFO [15434]: COREGRADE is stopping... -- 15:51:59.987 DEBUG [15434]: Closing database connection -- 15:51:59.987 SQL [15434]: pgsql_close() -- 15:52:00.076 INFO [15434]: COREGRADE is starting... -- 15:52:00.076 INFO [15434]: Version from config: 1.0 -- 15:52:00.076 DEBUG [15434]: Connecting to database... -- 15:52:00.076 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:52:00.076 SQL [15434]: pgsql_db_connect() -- 15:52:00.080 DEBUG [15434]: Database connection successful -- 15:52:00.080 INFO [15434]: _SERVER found -- 15:52:00.080 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 15:52:00.080 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 15:52:00.080 INFO [15434]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=kn8q0uqbuuo3fd96voe9urf6fvo5oqcq -- 15:52:00.080 INFO [15434]: QUERY_STRING = -- 15:52:00.080 INFO [15434]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:52:00.111 INFO [15434]: COREGRADE is stopping... -- 15:52:00.111 DEBUG [15434]: Closing database connection -- 15:52:00.111 SQL [15434]: pgsql_close() -- 15:52:01.960 INFO [15434]: COREGRADE is starting... -- 15:52:01.961 INFO [15434]: Version from config: 1.0 -- 15:52:01.961 DEBUG [15434]: Connecting to database... -- 15:52:01.961 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:52:01.961 SQL [15434]: pgsql_db_connect() -- 15:52:01.965 DEBUG [15434]: Database connection successful -- 15:52:01.965 INFO [15434]: _SERVER found -- 15:52:01.965 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 15:52:01.965 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 15:52:01.965 INFO [15434]: HTTP_COOKIE = _ga=GA1.2.1139080682.1579519699; ci_session=kn8q0uqbuuo3fd96voe9urf6fvo5oqcq -- 15:52:01.965 INFO [15434]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:52:01.965 INFO [15434]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:52:01.976 INFO [15434]: COREGRADE is stopping... -- 15:52:01.976 DEBUG [15434]: Closing database connection -- 15:52:01.976 SQL [15434]: pgsql_close() -- 20:14:34.077 INFO [15369]: COREGRADE is starting... -- 20:14:34.079 INFO [15369]: Version from config: 1.0 -- 20:14:34.079 DEBUG [15369]: Connecting to database... -- 20:14:34.079 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:14:34.079 SQL [15369]: pgsql_db_connect() -- 20:14:34.084 DEBUG [15369]: Database connection successful -- 20:14:34.084 INFO [15369]: _SERVER found -- 20:14:34.084 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 20:14:34.084 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 20:14:34.084 INFO [15369]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 20:14:34.084 INFO [15369]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 20:14:34.099 INFO [15369]: COREGRADE is stopping... -- 20:14:34.099 DEBUG [15369]: Closing database connection -- 20:14:34.099 SQL [15369]: pgsql_close() -- 20:25:47.613 INFO [24616]: COREGRADE is starting... -- 20:25:47.614 INFO [24616]: Version from config: 1.0 -- 20:25:47.614 DEBUG [24616]: Connecting to database... -- 20:25:47.614 DEBUG [24616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:25:47.614 SQL [24616]: pgsql_db_connect() -- 20:25:47.618 DEBUG [24616]: Database connection successful -- 20:25:47.618 INFO [24616]: _SERVER found -- 20:25:47.618 INFO [24616]: REMOTE_ADDR = 10.0.0.15 -- 20:25:47.618 INFO [24616]: SERVER_NAME = oameye.works.coregrade.com -- 20:25:47.618 INFO [24616]: QUERY_STRING = /favicon.ico -- 20:25:47.618 INFO [24616]: HTTP_X_FORWARDED_FOR = 93.174.95.106 -- 20:25:47.631 INFO [24616]: COREGRADE is stopping... -- 20:25:47.631 DEBUG [24616]: Closing database connection -- 20:25:47.632 SQL [24616]: pgsql_close() -- 20:25:49.095 INFO [15429]: COREGRADE is starting... -- 20:25:49.095 INFO [15429]: Version from config: 1.0 -- 20:25:49.095 DEBUG [15429]: Connecting to database... -- 20:25:49.095 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:25:49.095 SQL [15429]: pgsql_db_connect() -- 20:25:49.099 DEBUG [15429]: Database connection successful -- 20:25:49.100 INFO [15429]: _SERVER found -- 20:25:49.100 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 20:25:49.100 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 20:25:49.100 INFO [15429]: QUERY_STRING = -- 20:25:49.100 INFO [15429]: HTTP_X_FORWARDED_FOR = 93.174.95.106 -- 20:25:49.134 INFO [15429]: COREGRADE is stopping... -- 20:25:49.134 DEBUG [15429]: Closing database connection -- 20:25:49.134 SQL [15429]: pgsql_close() -- 20:25:50.844 INFO [24616]: COREGRADE is starting... -- 20:25:50.844 INFO [24616]: Version from config: 1.0 -- 20:25:50.844 DEBUG [24616]: Connecting to database... -- 20:25:50.844 DEBUG [24616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:25:50.844 SQL [24616]: pgsql_db_connect() -- 20:25:50.848 DEBUG [24616]: Database connection successful -- 20:25:50.848 INFO [24616]: _SERVER found -- 20:25:50.848 INFO [24616]: REMOTE_ADDR = 10.0.0.15 -- 20:25:50.848 INFO [24616]: SERVER_NAME = oameye.works.coregrade.com -- 20:25:50.848 INFO [24616]: QUERY_STRING = /favicon.ico -- 20:25:50.848 INFO [24616]: HTTP_X_FORWARDED_FOR = 93.174.95.106 -- 20:25:50.859 INFO [24616]: COREGRADE is stopping... -- 20:25:50.859 DEBUG [24616]: Closing database connection -- 20:25:50.859 SQL [24616]: pgsql_close() -- 20:25:56.872 INFO [15370]: COREGRADE is starting... -- 20:25:56.872 INFO [15370]: Version from config: 1.0 -- 20:25:56.872 DEBUG [15370]: Connecting to database... -- 20:25:56.872 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:25:56.872 SQL [15370]: pgsql_db_connect() -- 20:25:56.876 DEBUG [15370]: Database connection successful -- 20:25:56.876 INFO [15370]: _SERVER found -- 20:25:56.876 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 20:25:56.876 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 20:25:56.876 INFO [15370]: QUERY_STRING = /robots.txt -- 20:25:56.876 INFO [15370]: HTTP_X_FORWARDED_FOR = 93.174.95.106 -- 20:25:56.889 INFO [15370]: COREGRADE is stopping... -- 20:25:56.889 DEBUG [15370]: Closing database connection -- 20:25:56.889 SQL [15370]: pgsql_close() -- 20:25:57.347 INFO [15370]: COREGRADE is starting... -- 20:25:57.347 INFO [15370]: Version from config: 1.0 -- 20:25:57.347 DEBUG [15370]: Connecting to database... -- 20:25:57.347 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:25:57.347 SQL [15370]: pgsql_db_connect() -- 20:25:57.351 DEBUG [15370]: Database connection successful -- 20:25:57.351 INFO [15370]: _SERVER found -- 20:25:57.351 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 20:25:57.351 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 20:25:57.351 INFO [15370]: QUERY_STRING = /sitemap.xml -- 20:25:57.351 INFO [15370]: HTTP_X_FORWARDED_FOR = 93.174.95.106 -- 20:25:57.363 INFO [15370]: COREGRADE is stopping... -- 20:25:57.363 DEBUG [15370]: Closing database connection -- 20:25:57.363 SQL [15370]: pgsql_close() -- 20:25:57.789 INFO [15370]: COREGRADE is starting... -- 20:25:57.789 INFO [15370]: Version from config: 1.0 -- 20:25:57.789 DEBUG [15370]: Connecting to database... -- 20:25:57.789 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:25:57.789 SQL [15370]: pgsql_db_connect() -- 20:25:57.794 DEBUG [15370]: Database connection successful -- 20:25:57.794 INFO [15370]: _SERVER found -- 20:25:57.794 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 20:25:57.794 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 20:25:57.794 INFO [15370]: QUERY_STRING = /.well-known/security.txt -- 20:25:57.794 INFO [15370]: HTTP_X_FORWARDED_FOR = 93.174.95.106 -- 20:25:57.805 INFO [15370]: COREGRADE is stopping... -- 20:25:57.805 DEBUG [15370]: Closing database connection -- 20:25:57.805 SQL [15370]: pgsql_close() -- 20:58:05.467 INFO [15367]: COREGRADE is starting... -- 20:58:05.467 INFO [15367]: Version from config: 1.0 -- 20:58:05.467 DEBUG [15367]: Connecting to database... -- 20:58:05.467 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:58:05.467 SQL [15367]: pgsql_db_connect() -- 20:58:05.472 DEBUG [15367]: Database connection successful -- 20:58:05.472 INFO [15367]: _SERVER found -- 20:58:05.472 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 20:58:05.472 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 20:58:05.472 INFO [15367]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 20:58:05.472 INFO [15367]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 20:58:05.486 INFO [15367]: COREGRADE is stopping... -- 20:58:05.486 DEBUG [15367]: Closing database connection -- 20:58:05.486 SQL [15367]: pgsql_close() -- 21:13:24.470 INFO [15366]: COREGRADE is starting... -- 21:13:24.471 INFO [15366]: Version from config: 1.0 -- 21:13:24.471 DEBUG [15366]: Connecting to database... -- 21:13:24.471 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:13:24.471 SQL [15366]: pgsql_db_connect() -- 21:13:24.476 DEBUG [15366]: Database connection successful -- 21:13:24.476 INFO [15366]: _SERVER found -- 21:13:24.476 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 21:13:24.476 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 21:13:24.476 INFO [15366]: QUERY_STRING = /dana-na/auth/url_default/welcome.cgi -- 21:13:24.476 INFO [15366]: HTTP_X_FORWARDED_FOR = 129.213.60.60 -- 21:13:24.489 INFO [15366]: COREGRADE is stopping... -- 21:13:24.489 DEBUG [15366]: Closing database connection -- 21:13:24.489 SQL [15366]: pgsql_close() -- 21:13:24.715 INFO [15433]: COREGRADE is starting... -- 21:13:24.716 INFO [15433]: Version from config: 1.0 -- 21:13:24.716 DEBUG [15433]: Connecting to database... -- 21:13:24.716 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:13:24.716 SQL [15433]: pgsql_db_connect() -- 21:13:24.720 DEBUG [15433]: Database connection successful -- 21:13:24.720 INFO [15433]: _SERVER found -- 21:13:24.720 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 21:13:24.720 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 21:13:24.720 INFO [15433]: QUERY_STRING = /remote/login -- 21:13:24.720 INFO [15433]: HTTP_X_FORWARDED_FOR = 129.213.60.60 -- 21:13:24.733 INFO [15433]: COREGRADE is stopping... -- 21:13:24.733 DEBUG [15433]: Closing database connection -- 21:13:24.733 SQL [15433]: pgsql_close() -- 21:13:25.005 INFO [15366]: COREGRADE is starting... -- 21:13:25.005 INFO [15366]: Version from config: 1.0 -- 21:13:25.005 DEBUG [15366]: Connecting to database... -- 21:13:25.005 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:13:25.005 SQL [15366]: pgsql_db_connect() -- 21:13:25.009 DEBUG [15366]: Database connection successful -- 21:13:25.009 INFO [15366]: _SERVER found -- 21:13:25.009 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 21:13:25.009 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 21:13:25.009 INFO [15366]: QUERY_STRING = -- 21:13:25.009 INFO [15366]: HTTP_X_FORWARDED_FOR = 129.213.60.60 -- 21:13:25.041 INFO [15366]: COREGRADE is stopping... -- 21:13:25.041 DEBUG [15366]: Closing database connection -- 21:13:25.041 SQL [15366]: pgsql_close() -- 21:13:25.220 INFO [15366]: COREGRADE is starting... -- 21:13:25.221 INFO [15366]: Version from config: 1.0 -- 21:13:25.221 DEBUG [15366]: Connecting to database... -- 21:13:25.221 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:13:25.221 SQL [15366]: pgsql_db_connect() -- 21:13:25.225 DEBUG [15366]: Database connection successful -- 21:13:25.225 INFO [15366]: _SERVER found -- 21:13:25.225 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 21:13:25.225 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 21:13:25.225 INFO [15366]: QUERY_STRING = /index.asp -- 21:13:25.225 INFO [15366]: HTTP_X_FORWARDED_FOR = 129.213.60.60 -- 21:13:25.236 INFO [15366]: COREGRADE is stopping... -- 21:13:25.236 DEBUG [15366]: Closing database connection -- 21:13:25.236 SQL [15366]: pgsql_close() -- 21:47:03.068 INFO [15371]: COREGRADE is starting... -- 21:47:03.068 INFO [15371]: Version from config: 1.0 -- 21:47:03.068 DEBUG [15371]: Connecting to database... -- 21:47:03.068 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:03.068 SQL [15371]: pgsql_db_connect() -- 21:47:03.073 DEBUG [15371]: Database connection successful -- 21:47:03.073 INFO [15371]: _SERVER found -- 21:47:03.073 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 21:47:03.073 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 21:47:03.073 INFO [15371]: QUERY_STRING = /dana-na/auth/url_default/welcome.cgi -- 21:47:03.073 INFO [15371]: HTTP_X_FORWARDED_FOR = 150.136.11.100 -- 21:47:03.087 INFO [15371]: COREGRADE is stopping... -- 21:47:03.087 DEBUG [15371]: Closing database connection -- 21:47:03.087 SQL [15371]: pgsql_close() -- 21:47:03.228 INFO [15371]: COREGRADE is starting... -- 21:47:03.228 INFO [15371]: Version from config: 1.0 -- 21:47:03.228 DEBUG [15371]: Connecting to database... -- 21:47:03.228 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:03.228 SQL [15371]: pgsql_db_connect() -- 21:47:03.232 DEBUG [15371]: Database connection successful -- 21:47:03.232 INFO [15371]: _SERVER found -- 21:47:03.232 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 21:47:03.232 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 21:47:03.232 INFO [15371]: QUERY_STRING = /remote/login -- 21:47:03.232 INFO [15371]: HTTP_X_FORWARDED_FOR = 150.136.11.100 -- 21:47:03.243 INFO [15371]: COREGRADE is stopping... -- 21:47:03.243 DEBUG [15371]: Closing database connection -- 21:47:03.243 SQL [15371]: pgsql_close() -- 21:47:03.375 INFO [15371]: COREGRADE is starting... -- 21:47:03.375 INFO [15371]: Version from config: 1.0 -- 21:47:03.375 DEBUG [15371]: Connecting to database... -- 21:47:03.375 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:03.375 SQL [15371]: pgsql_db_connect() -- 21:47:03.379 DEBUG [15371]: Database connection successful -- 21:47:03.379 INFO [15371]: _SERVER found -- 21:47:03.379 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 21:47:03.379 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 21:47:03.379 INFO [15371]: QUERY_STRING = -- 21:47:03.379 INFO [15371]: HTTP_X_FORWARDED_FOR = 150.136.11.100 -- 21:47:03.413 INFO [15371]: COREGRADE is stopping... -- 21:47:03.413 DEBUG [15371]: Closing database connection -- 21:47:03.413 SQL [15371]: pgsql_close() -- 21:47:03.662 INFO [15371]: COREGRADE is starting... -- 21:47:03.662 INFO [15371]: Version from config: 1.0 -- 21:47:03.662 DEBUG [15371]: Connecting to database... -- 21:47:03.662 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:03.662 SQL [15371]: pgsql_db_connect() -- 21:47:03.666 DEBUG [15371]: Database connection successful -- 21:47:03.666 INFO [15371]: _SERVER found -- 21:47:03.666 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 21:47:03.666 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 21:47:03.666 INFO [15371]: QUERY_STRING = /index.asp -- 21:47:03.666 INFO [15371]: HTTP_X_FORWARDED_FOR = 150.136.11.100 -- 21:47:03.677 INFO [15371]: COREGRADE is stopping... -- 21:47:03.678 DEBUG [15371]: Closing database connection -- 21:47:03.678 SQL [15371]: pgsql_close() -- 00:50:27.418 INFO [15369]: COREGRADE is starting... -- 00:50:27.419 INFO [15369]: Version from config: 1.0 -- 00:50:27.419 DEBUG [15369]: Connecting to database... -- 00:50:27.419 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:50:27.419 SQL [15369]: pgsql_db_connect() -- 00:50:27.423 DEBUG [15369]: Database connection successful -- 00:50:27.423 INFO [15369]: _SERVER found -- 00:50:27.423 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 00:50:27.423 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 00:50:27.423 INFO [15369]: QUERY_STRING = /dana-na/auth/url_default/welcome.cgi -- 00:50:27.423 INFO [15369]: HTTP_X_FORWARDED_FOR = 141.145.116.229 -- 00:50:27.438 INFO [15369]: COREGRADE is stopping... -- 00:50:27.439 DEBUG [15369]: Closing database connection -- 00:50:27.439 SQL [15369]: pgsql_close() -- 00:50:28.021 INFO [15369]: COREGRADE is starting... -- 00:50:28.022 INFO [15369]: Version from config: 1.0 -- 00:50:28.022 DEBUG [15369]: Connecting to database... -- 00:50:28.022 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:50:28.022 SQL [15369]: pgsql_db_connect() -- 00:50:28.026 DEBUG [15369]: Database connection successful -- 00:50:28.026 INFO [15369]: _SERVER found -- 00:50:28.026 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 00:50:28.026 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 00:50:28.026 INFO [15369]: QUERY_STRING = /remote/login -- 00:50:28.026 INFO [15369]: HTTP_X_FORWARDED_FOR = 141.145.116.229 -- 00:50:28.037 INFO [15369]: COREGRADE is stopping... -- 00:50:28.037 DEBUG [15369]: Closing database connection -- 00:50:28.037 SQL [15369]: pgsql_close() -- 00:50:28.616 INFO [15369]: COREGRADE is starting... -- 00:50:28.616 INFO [15369]: Version from config: 1.0 -- 00:50:28.616 DEBUG [15369]: Connecting to database... -- 00:50:28.616 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:50:28.616 SQL [15369]: pgsql_db_connect() -- 00:50:28.620 DEBUG [15369]: Database connection successful -- 00:50:28.620 INFO [15369]: _SERVER found -- 00:50:28.620 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 00:50:28.620 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 00:50:28.620 INFO [15369]: QUERY_STRING = -- 00:50:28.620 INFO [15369]: HTTP_X_FORWARDED_FOR = 141.145.116.229 -- 00:50:28.653 INFO [15369]: COREGRADE is stopping... -- 00:50:28.653 DEBUG [15369]: Closing database connection -- 00:50:28.653 SQL [15369]: pgsql_close() -- 00:50:30.357 INFO [15429]: COREGRADE is starting... -- 00:50:30.357 INFO [15429]: Version from config: 1.0 -- 00:50:30.357 DEBUG [15429]: Connecting to database... -- 00:50:30.357 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:50:30.358 SQL [15429]: pgsql_db_connect() -- 00:50:30.362 DEBUG [15429]: Database connection successful -- 00:50:30.362 INFO [15429]: _SERVER found -- 00:50:30.362 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 00:50:30.362 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 00:50:30.362 INFO [15429]: QUERY_STRING = /index.asp -- 00:50:30.362 INFO [15429]: HTTP_X_FORWARDED_FOR = 141.145.116.229 -- 00:50:30.375 INFO [15429]: COREGRADE is stopping... -- 00:50:30.375 DEBUG [15429]: Closing database connection -- 00:50:30.375 SQL [15429]: pgsql_close() -- 00:51:05.413 INFO [15370]: COREGRADE is starting... -- 00:51:05.413 INFO [15370]: Version from config: 1.0 -- 00:51:05.413 DEBUG [15370]: Connecting to database... -- 00:51:05.413 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:51:05.413 SQL [15370]: pgsql_db_connect() -- 00:51:05.417 DEBUG [15370]: Database connection successful -- 00:51:05.417 INFO [15370]: _SERVER found -- 00:51:05.417 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 00:51:05.417 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 00:51:05.417 INFO [15370]: QUERY_STRING = /dana-na/auth/url_default/welcome.cgi -- 00:51:05.417 INFO [15370]: HTTP_X_FORWARDED_FOR = 158.255.211.215 -- 00:51:05.430 INFO [15370]: COREGRADE is stopping... -- 00:51:05.430 DEBUG [15370]: Closing database connection -- 00:51:05.430 SQL [15370]: pgsql_close() -- 00:51:08.863 INFO [15367]: COREGRADE is starting... -- 00:51:08.864 INFO [15367]: Version from config: 1.0 -- 00:51:08.864 DEBUG [15367]: Connecting to database... -- 00:51:08.864 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:51:08.864 SQL [15367]: pgsql_db_connect() -- 00:51:08.868 DEBUG [15367]: Database connection successful -- 00:51:08.868 INFO [15367]: _SERVER found -- 00:51:08.868 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 00:51:08.868 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 00:51:08.868 INFO [15367]: QUERY_STRING = /remote/login -- 00:51:08.868 INFO [15367]: HTTP_X_FORWARDED_FOR = 158.255.211.215 -- 00:51:08.880 INFO [15367]: COREGRADE is stopping... -- 00:51:08.880 DEBUG [15367]: Closing database connection -- 00:51:08.880 SQL [15367]: pgsql_close() -- 00:51:12.216 INFO [15433]: COREGRADE is starting... -- 00:51:12.216 INFO [15433]: Version from config: 1.0 -- 00:51:12.216 DEBUG [15433]: Connecting to database... -- 00:51:12.216 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:51:12.216 SQL [15433]: pgsql_db_connect() -- 00:51:12.220 DEBUG [15433]: Database connection successful -- 00:51:12.220 INFO [15433]: _SERVER found -- 00:51:12.220 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 00:51:12.220 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 00:51:12.220 INFO [15433]: QUERY_STRING = -- 00:51:12.220 INFO [15433]: HTTP_X_FORWARDED_FOR = 158.255.211.215 -- 00:51:12.252 INFO [15433]: COREGRADE is stopping... -- 00:51:12.252 DEBUG [15433]: Closing database connection -- 00:51:12.252 SQL [15433]: pgsql_close() -- 00:51:15.189 INFO [15433]: COREGRADE is starting... -- 00:51:15.190 INFO [15433]: Version from config: 1.0 -- 00:51:15.190 DEBUG [15433]: Connecting to database... -- 00:51:15.190 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:51:15.190 SQL [15433]: pgsql_db_connect() -- 00:51:15.194 DEBUG [15433]: Database connection successful -- 00:51:15.194 INFO [15433]: _SERVER found -- 00:51:15.194 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 00:51:15.194 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 00:51:15.194 INFO [15433]: QUERY_STRING = /index.asp -- 00:51:15.194 INFO [15433]: HTTP_X_FORWARDED_FOR = 158.255.211.215 -- 00:51:15.205 INFO [15433]: COREGRADE is stopping... -- 00:51:15.205 DEBUG [15433]: Closing database connection -- 00:51:15.205 SQL [15433]: pgsql_close() -- 00:52:09.107 INFO [15366]: COREGRADE is starting... -- 00:52:09.108 INFO [15366]: Version from config: 1.0 -- 00:52:09.108 DEBUG [15366]: Connecting to database... -- 00:52:09.108 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:52:09.108 SQL [15366]: pgsql_db_connect() -- 00:52:09.112 DEBUG [15366]: Database connection successful -- 00:52:09.112 INFO [15366]: _SERVER found -- 00:52:09.112 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 00:52:09.112 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 00:52:09.112 INFO [15366]: QUERY_STRING = /dana-na/auth/url_default/welcome.cgi -- 00:52:09.112 INFO [15366]: HTTP_X_FORWARDED_FOR = 132.145.221.160 -- 00:52:09.125 INFO [15366]: COREGRADE is stopping... -- 00:52:09.125 DEBUG [15366]: Closing database connection -- 00:52:09.125 SQL [15366]: pgsql_close() -- 00:52:09.285 INFO [15366]: COREGRADE is starting... -- 00:52:09.285 INFO [15366]: Version from config: 1.0 -- 00:52:09.285 DEBUG [15366]: Connecting to database... -- 00:52:09.285 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:52:09.285 SQL [15366]: pgsql_db_connect() -- 00:52:09.289 DEBUG [15366]: Database connection successful -- 00:52:09.289 INFO [15366]: _SERVER found -- 00:52:09.289 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 00:52:09.289 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 00:52:09.289 INFO [15366]: QUERY_STRING = /remote/login -- 00:52:09.289 INFO [15366]: HTTP_X_FORWARDED_FOR = 132.145.221.160 -- 00:52:09.300 INFO [15366]: COREGRADE is stopping... -- 00:52:09.300 DEBUG [15366]: Closing database connection -- 00:52:09.300 SQL [15366]: pgsql_close() -- 00:52:09.433 INFO [24592]: COREGRADE is starting... -- 00:52:09.434 INFO [24592]: Version from config: 1.0 -- 00:52:09.434 DEBUG [24592]: Connecting to database... -- 00:52:09.434 DEBUG [24592]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:52:09.434 SQL [24592]: pgsql_db_connect() -- 00:52:09.438 DEBUG [24592]: Database connection successful -- 00:52:09.438 INFO [24592]: _SERVER found -- 00:52:09.438 INFO [24592]: REMOTE_ADDR = 10.0.0.15 -- 00:52:09.438 INFO [24592]: SERVER_NAME = oameye.works.coregrade.com -- 00:52:09.438 INFO [24592]: QUERY_STRING = -- 00:52:09.438 INFO [24592]: HTTP_X_FORWARDED_FOR = 132.145.221.160 -- 00:52:09.470 INFO [24592]: COREGRADE is stopping... -- 00:52:09.470 DEBUG [24592]: Closing database connection -- 00:52:09.470 SQL [24592]: pgsql_close() -- 00:52:09.640 INFO [15366]: COREGRADE is starting... -- 00:52:09.640 INFO [15366]: Version from config: 1.0 -- 00:52:09.640 DEBUG [15366]: Connecting to database... -- 00:52:09.640 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:52:09.640 SQL [15366]: pgsql_db_connect() -- 00:52:09.644 DEBUG [15366]: Database connection successful -- 00:52:09.644 INFO [15366]: _SERVER found -- 00:52:09.644 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 00:52:09.644 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 00:52:09.644 INFO [15366]: QUERY_STRING = /index.asp -- 00:52:09.644 INFO [15366]: HTTP_X_FORWARDED_FOR = 132.145.221.160 -- 00:52:09.655 INFO [15366]: COREGRADE is stopping... -- 00:52:09.655 DEBUG [15366]: Closing database connection -- 00:52:09.655 SQL [15366]: pgsql_close() -- 01:10:16.493 INFO [15371]: COREGRADE is starting... -- 01:10:16.493 INFO [15371]: Version from config: 1.0 -- 01:10:16.493 DEBUG [15371]: Connecting to database... -- 01:10:16.493 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:10:16.493 SQL [15371]: pgsql_db_connect() -- 01:10:16.498 DEBUG [15371]: Database connection successful -- 01:10:16.498 INFO [15371]: _SERVER found -- 01:10:16.498 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 01:10:16.498 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 01:10:16.498 INFO [15371]: QUERY_STRING = -- 01:10:16.498 INFO [15371]: HTTP_X_FORWARDED_FOR = 183.136.225.44 -- 01:10:16.533 INFO [15371]: COREGRADE is stopping... -- 01:10:16.533 DEBUG [15371]: Closing database connection -- 01:10:16.533 SQL [15371]: pgsql_close() -- 05:08:51.129 INFO [15434]: COREGRADE is starting... -- 05:08:51.130 INFO [15434]: Version from config: 1.0 -- 05:08:51.130 DEBUG [15434]: Connecting to database... -- 05:08:51.130 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:51.130 SQL [15434]: pgsql_db_connect() -- 05:08:51.135 DEBUG [15434]: Database connection successful -- 05:08:51.135 INFO [15434]: _SERVER found -- 05:08:51.135 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 05:08:51.135 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 05:08:51.135 INFO [15434]: QUERY_STRING = /TP/public/index.php -- 05:08:51.135 INFO [15434]: HTTP_X_FORWARDED_FOR = 114.215.254.34 -- 05:08:51.150 INFO [15434]: COREGRADE is stopping... -- 05:08:51.150 DEBUG [15434]: Closing database connection -- 05:08:51.150 SQL [15434]: pgsql_close() -- 05:08:56.311 INFO [15369]: COREGRADE is starting... -- 05:08:56.311 INFO [15369]: Version from config: 1.0 -- 05:08:56.311 DEBUG [15369]: Connecting to database... -- 05:08:56.311 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:56.311 SQL [15369]: pgsql_db_connect() -- 05:08:56.316 DEBUG [15369]: Database connection successful -- 05:08:56.316 INFO [15369]: _SERVER found -- 05:08:56.316 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 05:08:56.316 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 05:08:56.316 INFO [15369]: QUERY_STRING = /TP/index.php -- 05:08:56.316 INFO [15369]: HTTP_X_FORWARDED_FOR = 114.215.254.34 -- 05:08:56.329 INFO [15369]: COREGRADE is stopping... -- 05:08:56.329 DEBUG [15369]: Closing database connection -- 05:08:56.329 SQL [15369]: pgsql_close() -- 05:08:58.795 INFO [15429]: COREGRADE is starting... -- 05:08:58.795 INFO [15429]: Version from config: 1.0 -- 05:08:58.795 DEBUG [15429]: Connecting to database... -- 05:08:58.795 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:58.795 SQL [15429]: pgsql_db_connect() -- 05:08:58.800 DEBUG [15429]: Database connection successful -- 05:08:58.800 INFO [15429]: _SERVER found -- 05:08:58.800 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 05:08:58.800 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 05:08:58.800 INFO [15429]: QUERY_STRING = /thinkphp/html/public/index.php -- 05:08:58.800 INFO [15429]: HTTP_X_FORWARDED_FOR = 114.215.254.34 -- 05:08:58.812 INFO [15429]: COREGRADE is stopping... -- 05:08:58.812 DEBUG [15429]: Closing database connection -- 05:08:58.812 SQL [15429]: pgsql_close() -- 05:09:00.716 INFO [15369]: COREGRADE is starting... -- 05:09:00.717 INFO [15369]: Version from config: 1.0 -- 05:09:00.717 DEBUG [15369]: Connecting to database... -- 05:09:00.717 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:09:00.717 SQL [15369]: pgsql_db_connect() -- 05:09:00.721 DEBUG [15369]: Database connection successful -- 05:09:00.721 INFO [15369]: _SERVER found -- 05:09:00.721 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 05:09:00.721 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 05:09:00.721 INFO [15369]: QUERY_STRING = /html/public/index.php -- 05:09:00.721 INFO [15369]: HTTP_X_FORWARDED_FOR = 114.215.254.34 -- 05:09:00.732 INFO [15369]: COREGRADE is stopping... -- 05:09:00.732 DEBUG [15369]: Closing database connection -- 05:09:00.732 SQL [15369]: pgsql_close() -- 05:09:02.409 INFO [24616]: COREGRADE is starting... -- 05:09:02.409 INFO [24616]: Version from config: 1.0 -- 05:09:02.409 DEBUG [24616]: Connecting to database... -- 05:09:02.409 DEBUG [24616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:09:02.409 SQL [24616]: pgsql_db_connect() -- 05:09:02.413 DEBUG [24616]: Database connection successful -- 05:09:02.413 INFO [24616]: _SERVER found -- 05:09:02.413 INFO [24616]: REMOTE_ADDR = 10.0.0.15 -- 05:09:02.413 INFO [24616]: SERVER_NAME = oameye.works.coregrade.com -- 05:09:02.413 INFO [24616]: QUERY_STRING = /public/index.php -- 05:09:02.413 INFO [24616]: HTTP_X_FORWARDED_FOR = 114.215.254.34 -- 05:09:02.425 INFO [24616]: COREGRADE is stopping... -- 05:09:02.425 DEBUG [24616]: Closing database connection -- 05:09:02.425 SQL [24616]: pgsql_close() -- 05:09:05.011 INFO [15370]: COREGRADE is starting... -- 05:09:05.011 INFO [15370]: Version from config: 1.0 -- 05:09:05.011 DEBUG [15370]: Connecting to database... -- 05:09:05.011 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:09:05.011 SQL [15370]: pgsql_db_connect() -- 05:09:05.015 DEBUG [15370]: Database connection successful -- 05:09:05.015 INFO [15370]: _SERVER found -- 05:09:05.015 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 05:09:05.015 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 05:09:05.015 INFO [15370]: QUERY_STRING = /TP/html/public/index.php -- 05:09:05.015 INFO [15370]: HTTP_X_FORWARDED_FOR = 114.215.254.34 -- 05:09:05.028 INFO [15370]: COREGRADE is stopping... -- 05:09:05.028 DEBUG [15370]: Closing database connection -- 05:09:05.028 SQL [15370]: pgsql_close() -- 05:09:06.607 INFO [15370]: COREGRADE is starting... -- 05:09:06.607 INFO [15370]: Version from config: 1.0 -- 05:09:06.607 DEBUG [15370]: Connecting to database... -- 05:09:06.607 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:09:06.607 SQL [15370]: pgsql_db_connect() -- 05:09:06.611 DEBUG [15370]: Database connection successful -- 05:09:06.611 INFO [15370]: _SERVER found -- 05:09:06.611 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 05:09:06.611 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 05:09:06.611 INFO [15370]: QUERY_STRING = /elrekt.php -- 05:09:06.611 INFO [15370]: HTTP_X_FORWARDED_FOR = 114.215.254.34 -- 05:09:06.623 INFO [15370]: COREGRADE is stopping... -- 05:09:06.623 DEBUG [15370]: Closing database connection -- 05:09:06.623 SQL [15370]: pgsql_close() -- 05:09:09.265 INFO [15367]: COREGRADE is starting... -- 05:09:09.265 INFO [15367]: Version from config: 1.0 -- 05:09:09.265 DEBUG [15367]: Connecting to database... -- 05:09:09.265 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:09:09.265 SQL [15367]: pgsql_db_connect() -- 05:09:09.269 DEBUG [15367]: Database connection successful -- 05:09:09.269 INFO [15367]: _SERVER found -- 05:09:09.269 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 05:09:09.269 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 05:09:09.269 INFO [15367]: QUERY_STRING = -- 05:09:09.269 INFO [15367]: HTTP_X_FORWARDED_FOR = 114.215.254.34 -- 05:09:09.304 INFO [15367]: COREGRADE is stopping... -- 05:09:09.304 DEBUG [15367]: Closing database connection -- 05:09:09.304 SQL [15367]: pgsql_close() -- 05:09:10.901 INFO [15433]: COREGRADE is starting... -- 05:09:10.902 INFO [15433]: Version from config: 1.0 -- 05:09:10.902 DEBUG [15433]: Connecting to database... -- 05:09:10.902 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:09:10.902 SQL [15433]: pgsql_db_connect() -- 05:09:10.906 DEBUG [15433]: Database connection successful -- 05:09:10.906 INFO [15433]: _SERVER found -- 05:09:10.906 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 05:09:10.906 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 05:09:10.906 INFO [15433]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 05:09:10.906 INFO [15433]: HTTP_X_FORWARDED_FOR = 114.215.254.34 -- 05:09:10.939 INFO [15433]: COREGRADE is stopping... -- 05:09:10.939 DEBUG [15433]: Closing database connection -- 05:09:10.939 SQL [15433]: pgsql_close() -- 05:09:12.629 INFO [24592]: COREGRADE is starting... -- 05:09:12.629 INFO [24592]: Version from config: 1.0 -- 05:09:12.629 DEBUG [24592]: Connecting to database... -- 05:09:12.629 DEBUG [24592]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:09:12.629 SQL [24592]: pgsql_db_connect() -- 05:09:12.633 DEBUG [24592]: Database connection successful -- 05:09:12.633 INFO [24592]: _SERVER found -- 05:09:12.633 INFO [24592]: REMOTE_ADDR = 10.0.0.15 -- 05:09:12.633 INFO [24592]: SERVER_NAME = oameye.works.coregrade.com -- 05:09:12.633 INFO [24592]: QUERY_STRING = s=captcha -- 05:09:12.633 INFO [24592]: HTTP_X_FORWARDED_FOR = 114.215.254.34 -- 05:09:12.665 INFO [24592]: COREGRADE is stopping... -- 05:09:12.665 DEBUG [24592]: Closing database connection -- 05:09:12.665 SQL [24592]: pgsql_close() -- 05:09:15.283 INFO [15433]: COREGRADE is starting... -- 05:09:15.283 INFO [15433]: Version from config: 1.0 -- 05:09:15.283 DEBUG [15433]: Connecting to database... -- 05:09:15.283 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:09:15.283 SQL [15433]: pgsql_db_connect() -- 05:09:15.287 DEBUG [15433]: Database connection successful -- 05:09:15.287 INFO [15433]: _SERVER found -- 05:09:15.287 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 05:09:15.287 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 05:09:15.287 INFO [15433]: QUERY_STRING = -- 05:09:15.287 INFO [15433]: HTTP_X_FORWARDED_FOR = 114.215.254.34 -- 05:09:15.319 INFO [15433]: COREGRADE is stopping... -- 05:09:15.319 DEBUG [15433]: Closing database connection -- 05:09:15.319 SQL [15433]: pgsql_close() -- 05:46:32.158 INFO [15366]: COREGRADE is starting... -- 05:46:32.160 INFO [15366]: Version from config: 1.0 -- 05:46:32.160 DEBUG [15366]: Connecting to database... -- 05:46:32.160 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:46:32.161 SQL [15366]: pgsql_db_connect() -- 05:46:32.166 DEBUG [15366]: Database connection successful -- 05:46:32.166 INFO [15366]: _SERVER found -- 05:46:32.166 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 05:46:32.166 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 05:46:32.166 INFO [15366]: QUERY_STRING = /.well-known/acme-challenge/VPmSlq6wDRI0AKJwgCYP56338KO0jdXTV1SQGnqkfXs -- 05:46:32.166 INFO [15366]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 05:46:32.186 INFO [15366]: COREGRADE is stopping... -- 05:46:32.186 DEBUG [15366]: Closing database connection -- 05:46:32.186 SQL [15366]: pgsql_close() -- 05:46:32.283 INFO [15366]: COREGRADE is starting... -- 05:46:32.283 INFO [15366]: Version from config: 1.0 -- 05:46:32.283 DEBUG [15366]: Connecting to database... -- 05:46:32.283 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:46:32.283 SQL [15366]: pgsql_db_connect() -- 05:46:32.288 DEBUG [15366]: Database connection successful -- 05:46:32.288 INFO [15366]: _SERVER found -- 05:46:32.288 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 05:46:32.288 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 05:46:32.288 INFO [15366]: QUERY_STRING = /.well-known/acme-challenge/VPmSlq6wDRI0AKJwgCYP56338KO0jdXTV1SQGnqkfXs -- 05:46:32.288 INFO [15366]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 05:46:32.300 INFO [15366]: COREGRADE is stopping... -- 05:46:32.300 DEBUG [15366]: Closing database connection -- 05:46:32.300 SQL [15366]: pgsql_close() -- 05:46:32.397 INFO [15434]: COREGRADE is starting... -- 05:46:32.397 INFO [15434]: Version from config: 1.0 -- 05:46:32.397 DEBUG [15434]: Connecting to database... -- 05:46:32.397 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:46:32.397 SQL [15434]: pgsql_db_connect() -- 05:46:32.401 DEBUG [15434]: Database connection successful -- 05:46:32.401 INFO [15434]: _SERVER found -- 05:46:32.401 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 05:46:32.401 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 05:46:32.401 INFO [15434]: QUERY_STRING = /.well-known/acme-challenge/VPmSlq6wDRI0AKJwgCYP56338KO0jdXTV1SQGnqkfXs -- 05:46:32.401 INFO [15434]: HTTP_X_FORWARDED_FOR = 52.28.236.88 -- 05:46:32.414 INFO [15434]: COREGRADE is stopping... -- 05:46:32.414 DEBUG [15434]: Closing database connection -- 05:46:32.414 SQL [15434]: pgsql_close() -- 07:20:20.584 INFO [15429]: COREGRADE is starting... -- 07:20:20.584 INFO [15429]: Version from config: 1.0 -- 07:20:20.584 DEBUG [15429]: Connecting to database... -- 07:20:20.584 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:20:20.584 SQL [15429]: pgsql_db_connect() -- 07:20:20.589 DEBUG [15429]: Database connection successful -- 07:20:20.589 INFO [15429]: _SERVER found -- 07:20:20.589 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 07:20:20.589 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 07:20:20.589 INFO [15429]: QUERY_STRING = -- 07:20:20.589 INFO [15429]: HTTP_X_FORWARDED_FOR = 122.228.19.79 -- 07:20:20.625 INFO [15429]: COREGRADE is stopping... -- 07:20:20.625 DEBUG [15429]: Closing database connection -- 07:20:20.625 SQL [15429]: pgsql_close() -- 07:36:47.013 INFO [24616]: COREGRADE is starting... -- 07:36:47.014 INFO [24616]: Version from config: 1.0 -- 07:36:47.014 DEBUG [24616]: Connecting to database... -- 07:36:47.014 DEBUG [24616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:36:47.014 SQL [24616]: pgsql_db_connect() -- 07:36:47.019 DEBUG [24616]: Database connection successful -- 07:36:47.019 INFO [24616]: _SERVER found -- 07:36:47.019 INFO [24616]: REMOTE_ADDR = 10.0.0.15 -- 07:36:47.019 INFO [24616]: SERVER_NAME = oameye.works.coregrade.com -- 07:36:47.019 INFO [24616]: QUERY_STRING = /dana-na/auth/url_default/welcome.cgi -- 07:36:47.019 INFO [24616]: HTTP_X_FORWARDED_FOR = 144.21.103.14 -- 07:36:47.033 INFO [24616]: COREGRADE is stopping... -- 07:36:47.033 DEBUG [24616]: Closing database connection -- 07:36:47.033 SQL [24616]: pgsql_close() -- 07:36:47.623 INFO [15369]: COREGRADE is starting... -- 07:36:47.624 INFO [15369]: Version from config: 1.0 -- 07:36:47.624 DEBUG [15369]: Connecting to database... -- 07:36:47.624 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:36:47.624 SQL [15369]: pgsql_db_connect() -- 07:36:47.628 DEBUG [15369]: Database connection successful -- 07:36:47.628 INFO [15369]: _SERVER found -- 07:36:47.628 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 07:36:47.628 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 07:36:47.628 INFO [15369]: QUERY_STRING = /remote/login -- 07:36:47.628 INFO [15369]: HTTP_X_FORWARDED_FOR = 144.21.103.14 -- 07:36:47.641 INFO [15369]: COREGRADE is stopping... -- 07:36:47.641 DEBUG [15369]: Closing database connection -- 07:36:47.641 SQL [15369]: pgsql_close() -- 07:36:48.228 INFO [15370]: COREGRADE is starting... -- 07:36:48.228 INFO [15370]: Version from config: 1.0 -- 07:36:48.228 DEBUG [15370]: Connecting to database... -- 07:36:48.229 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:36:48.229 SQL [15370]: pgsql_db_connect() -- 07:36:48.233 DEBUG [15370]: Database connection successful -- 07:36:48.233 INFO [15370]: _SERVER found -- 07:36:48.233 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 07:36:48.233 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 07:36:48.233 INFO [15370]: QUERY_STRING = -- 07:36:48.233 INFO [15370]: HTTP_X_FORWARDED_FOR = 144.21.103.14 -- 07:36:48.268 INFO [15370]: COREGRADE is stopping... -- 07:36:48.268 DEBUG [15370]: Closing database connection -- 07:36:48.268 SQL [15370]: pgsql_close() -- 07:36:48.958 INFO [24616]: COREGRADE is starting... -- 07:36:48.959 INFO [24616]: Version from config: 1.0 -- 07:36:48.959 DEBUG [24616]: Connecting to database... -- 07:36:48.959 DEBUG [24616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:36:48.959 SQL [24616]: pgsql_db_connect() -- 07:36:48.963 DEBUG [24616]: Database connection successful -- 07:36:48.963 INFO [24616]: _SERVER found -- 07:36:48.963 INFO [24616]: REMOTE_ADDR = 10.0.0.15 -- 07:36:48.963 INFO [24616]: SERVER_NAME = oameye.works.coregrade.com -- 07:36:48.963 INFO [24616]: QUERY_STRING = /index.asp -- 07:36:48.963 INFO [24616]: HTTP_X_FORWARDED_FOR = 144.21.103.14 -- 07:36:48.974 INFO [24616]: COREGRADE is stopping... -- 07:36:48.974 DEBUG [24616]: Closing database connection -- 07:36:48.974 SQL [24616]: pgsql_close() -- 07:55:18.929 INFO [15367]: COREGRADE is starting... -- 07:55:18.930 INFO [15367]: Version from config: 1.0 -- 07:55:18.930 DEBUG [15367]: Connecting to database... -- 07:55:18.930 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:55:18.930 SQL [15367]: pgsql_db_connect() -- 07:55:18.934 DEBUG [15367]: Database connection successful -- 07:55:18.934 INFO [15367]: _SERVER found -- 07:55:18.934 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 07:55:18.934 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 07:55:18.934 INFO [15367]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 07:55:18.934 INFO [15367]: QUERY_STRING = -- 07:55:18.934 INFO [15367]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:55:18.972 INFO [15367]: COREGRADE is stopping... -- 07:55:18.972 DEBUG [15367]: Closing database connection -- 07:55:18.972 SQL [15367]: pgsql_close() -- 07:55:19.257 INFO [15367]: COREGRADE is starting... -- 07:55:19.257 INFO [15367]: Version from config: 1.0 -- 07:55:19.257 DEBUG [15367]: Connecting to database... -- 07:55:19.257 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:55:19.257 SQL [15367]: pgsql_db_connect() -- 07:55:19.262 DEBUG [15367]: Database connection successful -- 07:55:19.262 INFO [15367]: _SERVER found -- 07:55:19.262 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 07:55:19.262 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 07:55:19.262 INFO [15367]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=0kmnlnui3mtsldkfq12pu3jo62ar0u95 -- 07:55:19.262 INFO [15367]: QUERY_STRING = /assets/img/footer_1.jpg -- 07:55:19.262 INFO [15367]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:55:19.273 INFO [15367]: COREGRADE is stopping... -- 07:55:19.274 DEBUG [15367]: Closing database connection -- 07:55:19.274 SQL [15367]: pgsql_close() -- 08:10:36.528 INFO [24592]: COREGRADE is starting... -- 08:10:36.528 INFO [24592]: Version from config: 1.0 -- 08:10:36.528 DEBUG [24592]: Connecting to database... -- 08:10:36.528 DEBUG [24592]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:10:36.528 SQL [24592]: pgsql_db_connect() -- 08:10:36.533 DEBUG [24592]: Database connection successful -- 08:10:36.533 INFO [24592]: _SERVER found -- 08:10:36.533 INFO [24592]: REMOTE_ADDR = 10.0.0.15 -- 08:10:36.533 INFO [24592]: SERVER_NAME = oameye.works.coregrade.com -- 08:10:36.533 INFO [24592]: QUERY_STRING = /dana-na/auth/url_default/welcome.cgi -- 08:10:36.533 INFO [24592]: HTTP_X_FORWARDED_FOR = 93.153.124.163 -- 08:10:36.546 INFO [24592]: COREGRADE is stopping... -- 08:10:36.546 DEBUG [24592]: Closing database connection -- 08:10:36.546 SQL [24592]: pgsql_close() -- 08:10:37.397 INFO [24592]: COREGRADE is starting... -- 08:10:37.397 INFO [24592]: Version from config: 1.0 -- 08:10:37.397 DEBUG [24592]: Connecting to database... -- 08:10:37.397 DEBUG [24592]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:10:37.397 SQL [24592]: pgsql_db_connect() -- 08:10:37.401 DEBUG [24592]: Database connection successful -- 08:10:37.401 INFO [24592]: _SERVER found -- 08:10:37.401 INFO [24592]: REMOTE_ADDR = 10.0.0.15 -- 08:10:37.401 INFO [24592]: SERVER_NAME = oameye.works.coregrade.com -- 08:10:37.401 INFO [24592]: QUERY_STRING = /remote/login -- 08:10:37.401 INFO [24592]: HTTP_X_FORWARDED_FOR = 93.153.124.163 -- 08:10:37.413 INFO [24592]: COREGRADE is stopping... -- 08:10:37.413 DEBUG [24592]: Closing database connection -- 08:10:37.413 SQL [24592]: pgsql_close() -- 08:10:38.433 INFO [24592]: COREGRADE is starting... -- 08:10:38.433 INFO [24592]: Version from config: 1.0 -- 08:10:38.433 DEBUG [24592]: Connecting to database... -- 08:10:38.433 DEBUG [24592]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:10:38.433 SQL [24592]: pgsql_db_connect() -- 08:10:38.437 DEBUG [24592]: Database connection successful -- 08:10:38.437 INFO [24592]: _SERVER found -- 08:10:38.437 INFO [24592]: REMOTE_ADDR = 10.0.0.15 -- 08:10:38.437 INFO [24592]: SERVER_NAME = oameye.works.coregrade.com -- 08:10:38.437 INFO [24592]: QUERY_STRING = -- 08:10:38.437 INFO [24592]: HTTP_X_FORWARDED_FOR = 93.153.124.163 -- 08:10:38.470 INFO [24592]: COREGRADE is stopping... -- 08:10:38.470 DEBUG [24592]: Closing database connection -- 08:10:38.470 SQL [24592]: pgsql_close() -- 08:10:39.466 INFO [24592]: COREGRADE is starting... -- 08:10:39.467 INFO [24592]: Version from config: 1.0 -- 08:10:39.467 DEBUG [24592]: Connecting to database... -- 08:10:39.467 DEBUG [24592]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:10:39.467 SQL [24592]: pgsql_db_connect() -- 08:10:39.471 DEBUG [24592]: Database connection successful -- 08:10:39.471 INFO [24592]: _SERVER found -- 08:10:39.471 INFO [24592]: REMOTE_ADDR = 10.0.0.15 -- 08:10:39.471 INFO [24592]: SERVER_NAME = oameye.works.coregrade.com -- 08:10:39.471 INFO [24592]: QUERY_STRING = /index.asp -- 08:10:39.471 INFO [24592]: HTTP_X_FORWARDED_FOR = 93.153.124.163 -- 08:10:39.482 INFO [24592]: COREGRADE is stopping... -- 08:10:39.482 DEBUG [24592]: Closing database connection -- 08:10:39.482 SQL [24592]: pgsql_close() -- 10:35:55.102 INFO [15433]: COREGRADE is starting... -- 10:35:55.102 INFO [15433]: Version from config: 1.0 -- 10:35:55.102 DEBUG [15433]: Connecting to database... -- 10:35:55.102 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:35:55.102 SQL [15433]: pgsql_db_connect() -- 10:35:55.107 DEBUG [15433]: Database connection successful -- 10:35:55.107 INFO [15433]: _SERVER found -- 10:35:55.107 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 10:35:55.107 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 10:35:55.107 INFO [15433]: QUERY_STRING = /TP/public/index.php -- 10:35:55.107 INFO [15433]: HTTP_X_FORWARDED_FOR = 223.240.88.127 -- 10:35:55.122 INFO [15433]: COREGRADE is stopping... -- 10:35:55.122 DEBUG [15433]: Closing database connection -- 10:35:55.122 SQL [15433]: pgsql_close() -- 10:35:59.978 INFO [15433]: COREGRADE is starting... -- 10:35:59.979 INFO [15433]: Version from config: 1.0 -- 10:35:59.979 DEBUG [15433]: Connecting to database... -- 10:35:59.979 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:35:59.979 SQL [15433]: pgsql_db_connect() -- 10:35:59.983 DEBUG [15433]: Database connection successful -- 10:35:59.983 INFO [15433]: _SERVER found -- 10:35:59.983 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 10:35:59.983 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 10:35:59.983 INFO [15433]: QUERY_STRING = -- 10:35:59.983 INFO [15433]: HTTP_X_FORWARDED_FOR = 223.240.88.127 -- 10:36:00.016 INFO [15433]: COREGRADE is stopping... -- 10:36:00.016 DEBUG [15433]: Closing database connection -- 10:36:00.017 SQL [15433]: pgsql_close() -- 14:20:33.874 INFO [15371]: COREGRADE is starting... -- 14:20:33.874 INFO [15371]: Version from config: 1.0 -- 14:20:33.874 DEBUG [15371]: Connecting to database... -- 14:20:33.874 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:20:33.874 SQL [15371]: pgsql_db_connect() -- 14:20:33.879 DEBUG [15371]: Database connection successful -- 14:20:33.879 INFO [15371]: _SERVER found -- 14:20:33.879 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 14:20:33.879 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 14:20:33.879 INFO [15371]: QUERY_STRING = /solr/admin/info/system -- 14:20:33.879 INFO [15371]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 14:20:33.894 INFO [15371]: COREGRADE is stopping... -- 14:20:33.894 DEBUG [15371]: Closing database connection -- 14:20:33.894 SQL [15371]: pgsql_close() -- 14:20:34.272 INFO [15366]: COREGRADE is starting... -- 14:20:34.273 INFO [15366]: Version from config: 1.0 -- 14:20:34.273 DEBUG [15366]: Connecting to database... -- 14:20:34.273 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:20:34.273 SQL [15366]: pgsql_db_connect() -- 14:20:34.277 DEBUG [15366]: Database connection successful -- 14:20:34.277 INFO [15366]: _SERVER found -- 14:20:34.277 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 14:20:34.277 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 14:20:34.277 INFO [15366]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 14:20:34.277 INFO [15366]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 14:20:34.312 INFO [15366]: COREGRADE is stopping... -- 14:20:34.312 DEBUG [15366]: Closing database connection -- 14:20:34.312 SQL [15366]: pgsql_close() -- 14:20:34.389 INFO [15366]: COREGRADE is starting... -- 14:20:34.389 INFO [15366]: Version from config: 1.0 -- 14:20:34.389 DEBUG [15366]: Connecting to database... -- 14:20:34.389 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:20:34.389 SQL [15366]: pgsql_db_connect() -- 14:20:34.394 DEBUG [15366]: Database connection successful -- 14:20:34.394 INFO [15366]: _SERVER found -- 14:20:34.394 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 14:20:34.394 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 14:20:34.394 INFO [15366]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 14:20:34.394 INFO [15366]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 14:20:34.428 INFO [15366]: COREGRADE is stopping... -- 14:20:34.428 DEBUG [15366]: Closing database connection -- 14:20:34.428 SQL [15366]: pgsql_close() -- 14:20:40.265 INFO [15434]: COREGRADE is starting... -- 14:20:40.265 INFO [15434]: Version from config: 1.0 -- 14:20:40.265 DEBUG [15434]: Connecting to database... -- 14:20:40.265 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:20:40.265 SQL [15434]: pgsql_db_connect() -- 14:20:40.270 DEBUG [15434]: Database connection successful -- 14:20:40.270 INFO [15434]: _SERVER found -- 14:20:40.270 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 14:20:40.270 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 14:20:40.270 INFO [15434]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 14:20:40.270 INFO [15434]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 14:20:40.303 INFO [15434]: COREGRADE is stopping... -- 14:20:40.303 DEBUG [15434]: Closing database connection -- 14:20:40.303 SQL [15434]: pgsql_close() -- 15:21:38.214 INFO [15429]: COREGRADE is starting... -- 15:21:38.215 INFO [15429]: Version from config: 1.0 -- 15:21:38.215 DEBUG [15429]: Connecting to database... -- 15:21:38.215 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:21:38.215 SQL [15429]: pgsql_db_connect() -- 15:21:38.219 DEBUG [15429]: Database connection successful -- 15:21:38.219 INFO [15429]: _SERVER found -- 15:21:38.219 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 15:21:38.219 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 15:21:38.219 INFO [15429]: QUERY_STRING = /dana-na/auth/url_default/welcome.cgi -- 15:21:38.219 INFO [15429]: HTTP_X_FORWARDED_FOR = 67.210.108.163 -- 15:21:38.234 INFO [15429]: COREGRADE is stopping... -- 15:21:38.234 DEBUG [15429]: Closing database connection -- 15:21:38.234 SQL [15429]: pgsql_close() -- 15:21:38.604 INFO [15369]: COREGRADE is starting... -- 15:21:38.605 INFO [15369]: Version from config: 1.0 -- 15:21:38.605 DEBUG [15369]: Connecting to database... -- 15:21:38.605 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:21:38.605 SQL [15369]: pgsql_db_connect() -- 15:21:38.609 DEBUG [15369]: Database connection successful -- 15:21:38.609 INFO [15369]: _SERVER found -- 15:21:38.609 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 15:21:38.609 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 15:21:38.609 INFO [15369]: QUERY_STRING = /remote/login -- 15:21:38.609 INFO [15369]: HTTP_X_FORWARDED_FOR = 67.210.108.163 -- 15:21:38.622 INFO [15369]: COREGRADE is stopping... -- 15:21:38.623 DEBUG [15369]: Closing database connection -- 15:21:38.623 SQL [15369]: pgsql_close() -- 15:21:39.008 INFO [15370]: COREGRADE is starting... -- 15:21:39.008 INFO [15370]: Version from config: 1.0 -- 15:21:39.008 DEBUG [15370]: Connecting to database... -- 15:21:39.008 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:21:39.008 SQL [15370]: pgsql_db_connect() -- 15:21:39.012 DEBUG [15370]: Database connection successful -- 15:21:39.012 INFO [15370]: _SERVER found -- 15:21:39.012 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 15:21:39.012 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 15:21:39.012 INFO [15370]: QUERY_STRING = -- 15:21:39.012 INFO [15370]: HTTP_X_FORWARDED_FOR = 67.210.108.163 -- 15:21:39.047 INFO [15370]: COREGRADE is stopping... -- 15:21:39.047 DEBUG [15370]: Closing database connection -- 15:21:39.047 SQL [15370]: pgsql_close() -- 15:21:39.478 INFO [15370]: COREGRADE is starting... -- 15:21:39.478 INFO [15370]: Version from config: 1.0 -- 15:21:39.478 DEBUG [15370]: Connecting to database... -- 15:21:39.478 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:21:39.478 SQL [15370]: pgsql_db_connect() -- 15:21:39.482 DEBUG [15370]: Database connection successful -- 15:21:39.482 INFO [15370]: _SERVER found -- 15:21:39.482 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 15:21:39.482 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 15:21:39.482 INFO [15370]: QUERY_STRING = /index.asp -- 15:21:39.482 INFO [15370]: HTTP_X_FORWARDED_FOR = 67.210.108.163 -- 15:21:39.493 INFO [15370]: COREGRADE is stopping... -- 15:21:39.493 DEBUG [15370]: Closing database connection -- 15:21:39.493 SQL [15370]: pgsql_close() -- 15:33:43.024 INFO [24616]: COREGRADE is starting... -- 15:33:43.024 INFO [24616]: Version from config: 1.0 -- 15:33:43.024 DEBUG [24616]: Connecting to database... -- 15:33:43.024 DEBUG [24616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:33:43.024 SQL [24616]: pgsql_db_connect() -- 15:33:43.028 DEBUG [24616]: Database connection successful -- 15:33:43.028 INFO [24616]: _SERVER found -- 15:33:43.028 INFO [24616]: REMOTE_ADDR = 10.0.0.15 -- 15:33:43.028 INFO [24616]: SERVER_NAME = oameye.works.coregrade.com -- 15:33:43.028 INFO [24616]: QUERY_STRING = /api/jsonws/invoke -- 15:33:43.028 INFO [24616]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 15:33:43.041 INFO [24616]: COREGRADE is stopping... -- 15:33:43.041 DEBUG [24616]: Closing database connection -- 15:33:43.041 SQL [24616]: pgsql_close() -- 16:14:41.122 INFO [24592]: COREGRADE is starting... -- 16:14:41.122 INFO [24592]: Version from config: 1.0 -- 16:14:41.122 DEBUG [24592]: Connecting to database... -- 16:14:41.122 DEBUG [24592]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:14:41.122 SQL [24592]: pgsql_db_connect() -- 16:14:41.127 DEBUG [24592]: Database connection successful -- 16:14:41.127 INFO [24592]: _SERVER found -- 16:14:41.127 INFO [24592]: REMOTE_ADDR = 10.0.0.15 -- 16:14:41.127 INFO [24592]: SERVER_NAME = oameye.works.coregrade.com -- 16:14:41.127 INFO [24592]: QUERY_STRING = /dana-na/auth/url_default/welcome.cgi -- 16:14:41.127 INFO [24592]: HTTP_X_FORWARDED_FOR = 115.124.120.219 -- 16:14:41.141 INFO [24592]: COREGRADE is stopping... -- 16:14:41.141 DEBUG [24592]: Closing database connection -- 16:14:41.141 SQL [24592]: pgsql_close() -- 16:14:43.066 INFO [15433]: COREGRADE is starting... -- 16:14:43.066 INFO [15433]: Version from config: 1.0 -- 16:14:43.066 DEBUG [15433]: Connecting to database... -- 16:14:43.066 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:14:43.066 SQL [15433]: pgsql_db_connect() -- 16:14:43.070 DEBUG [15433]: Database connection successful -- 16:14:43.070 INFO [15433]: _SERVER found -- 16:14:43.070 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 16:14:43.070 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 16:14:43.070 INFO [15433]: QUERY_STRING = /remote/login -- 16:14:43.070 INFO [15433]: HTTP_X_FORWARDED_FOR = 115.124.120.219 -- 16:14:43.083 INFO [15433]: COREGRADE is stopping... -- 16:14:43.083 DEBUG [15433]: Closing database connection -- 16:14:43.083 SQL [15433]: pgsql_close() -- 16:14:44.921 INFO [15433]: COREGRADE is starting... -- 16:14:44.921 INFO [15433]: Version from config: 1.0 -- 16:14:44.921 DEBUG [15433]: Connecting to database... -- 16:14:44.921 DEBUG [15433]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:14:44.921 SQL [15433]: pgsql_db_connect() -- 16:14:44.925 DEBUG [15433]: Database connection successful -- 16:14:44.925 INFO [15433]: _SERVER found -- 16:14:44.925 INFO [15433]: REMOTE_ADDR = 10.0.0.15 -- 16:14:44.925 INFO [15433]: SERVER_NAME = oameye.works.coregrade.com -- 16:14:44.925 INFO [15433]: QUERY_STRING = -- 16:14:44.925 INFO [15433]: HTTP_X_FORWARDED_FOR = 115.124.120.219 -- 16:14:44.957 INFO [15433]: COREGRADE is stopping... -- 16:14:44.957 DEBUG [15433]: Closing database connection -- 16:14:44.957 SQL [15433]: pgsql_close() -- 16:14:48.373 INFO [15366]: COREGRADE is starting... -- 16:14:48.373 INFO [15366]: Version from config: 1.0 -- 16:14:48.373 DEBUG [15366]: Connecting to database... -- 16:14:48.373 DEBUG [15366]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:14:48.373 SQL [15366]: pgsql_db_connect() -- 16:14:48.377 DEBUG [15366]: Database connection successful -- 16:14:48.377 INFO [15366]: _SERVER found -- 16:14:48.377 INFO [15366]: REMOTE_ADDR = 10.0.0.15 -- 16:14:48.377 INFO [15366]: SERVER_NAME = oameye.works.coregrade.com -- 16:14:48.377 INFO [15366]: QUERY_STRING = /index.asp -- 16:14:48.377 INFO [15366]: HTTP_X_FORWARDED_FOR = 115.124.120.219 -- 16:14:48.390 INFO [15366]: COREGRADE is stopping... -- 16:14:48.390 DEBUG [15366]: Closing database connection -- 16:14:48.390 SQL [15366]: pgsql_close() -- 18:00:10.725 INFO [15371]: COREGRADE is starting... -- 18:00:10.726 INFO [15371]: Version from config: 1.0 -- 18:00:10.726 DEBUG [15371]: Connecting to database... -- 18:00:10.726 DEBUG [15371]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:00:10.726 SQL [15371]: pgsql_db_connect() -- 18:00:10.731 DEBUG [15371]: Database connection successful -- 18:00:10.731 INFO [15371]: _SERVER found -- 18:00:10.731 INFO [15371]: REMOTE_ADDR = 10.0.0.15 -- 18:00:10.731 INFO [15371]: SERVER_NAME = oameye.works.coregrade.com -- 18:00:10.731 INFO [15371]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 18:00:10.731 INFO [15371]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 18:00:10.750 INFO [15371]: COREGRADE is stopping... -- 18:00:10.750 DEBUG [15371]: Closing database connection -- 18:00:10.750 SQL [15371]: pgsql_close() -- 18:20:51.359 INFO [15434]: COREGRADE is starting... -- 18:20:51.359 INFO [15434]: Version from config: 1.0 -- 18:20:51.359 DEBUG [15434]: Connecting to database... -- 18:20:51.359 DEBUG [15434]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:20:51.359 SQL [15434]: pgsql_db_connect() -- 18:20:51.363 DEBUG [15434]: Database connection successful -- 18:20:51.363 INFO [15434]: _SERVER found -- 18:20:51.363 INFO [15434]: REMOTE_ADDR = 10.0.0.15 -- 18:20:51.363 INFO [15434]: SERVER_NAME = oameye.works.coregrade.com -- 18:20:51.363 INFO [15434]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 18:20:51.363 INFO [15434]: HTTP_X_FORWARDED_FOR = 5.101.0.209 -- 18:20:51.377 INFO [15434]: COREGRADE is stopping... -- 18:20:51.378 DEBUG [15434]: Closing database connection -- 18:20:51.378 SQL [15434]: pgsql_close() -- 19:31:00.854 INFO [15429]: COREGRADE is starting... -- 19:31:00.855 INFO [15429]: Version from config: 1.0 -- 19:31:00.855 DEBUG [15429]: Connecting to database... -- 19:31:00.855 DEBUG [15429]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:31:00.855 SQL [15429]: pgsql_db_connect() -- 19:31:00.860 DEBUG [15429]: Database connection successful -- 19:31:00.860 INFO [15429]: _SERVER found -- 19:31:00.860 INFO [15429]: REMOTE_ADDR = 10.0.0.15 -- 19:31:00.860 INFO [15429]: SERVER_NAME = oameye.works.coregrade.com -- 19:31:00.860 INFO [15429]: QUERY_STRING = -- 19:31:00.860 INFO [15429]: HTTP_X_FORWARDED_FOR = 183.136.225.45 -- 19:31:00.895 INFO [15429]: COREGRADE is stopping... -- 19:31:00.896 DEBUG [15429]: Closing database connection -- 19:31:00.896 SQL [15429]: pgsql_close() -- 21:20:31.506 INFO [15369]: COREGRADE is starting... -- 21:20:31.507 INFO [15369]: Version from config: 1.0 -- 21:20:31.507 DEBUG [15369]: Connecting to database... -- 21:20:31.507 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:20:31.507 SQL [15369]: pgsql_db_connect() -- 21:20:31.511 DEBUG [15369]: Database connection successful -- 21:20:31.511 INFO [15369]: _SERVER found -- 21:20:31.511 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 21:20:31.511 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 21:20:31.511 INFO [15369]: QUERY_STRING = -- 21:20:31.511 INFO [15369]: HTTP_X_FORWARDED_FOR = 168.138.144.172 -- 21:20:31.549 INFO [15369]: COREGRADE is stopping... -- 21:20:31.549 DEBUG [15369]: Closing database connection -- 21:20:31.549 SQL [15369]: pgsql_close() -- 21:20:32.975 INFO [15370]: COREGRADE is starting... -- 21:20:32.975 INFO [15370]: Version from config: 1.0 -- 21:20:32.975 DEBUG [15370]: Connecting to database... -- 21:20:32.975 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:20:32.975 SQL [15370]: pgsql_db_connect() -- 21:20:32.979 DEBUG [15370]: Database connection successful -- 21:20:32.979 INFO [15370]: _SERVER found -- 21:20:32.979 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 21:20:32.979 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 21:20:32.979 INFO [15370]: QUERY_STRING = /home.asp -- 21:20:32.979 INFO [15370]: HTTP_X_FORWARDED_FOR = 168.138.144.172 -- 21:20:32.992 INFO [15370]: COREGRADE is stopping... -- 21:20:32.992 DEBUG [15370]: Closing database connection -- 21:20:32.992 SQL [15370]: pgsql_close() -- 21:20:34.096 INFO [15369]: COREGRADE is starting... -- 21:20:34.097 INFO [15369]: Version from config: 1.0 -- 21:20:34.097 DEBUG [15369]: Connecting to database... -- 21:20:34.097 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:20:34.097 SQL [15369]: pgsql_db_connect() -- 21:20:34.101 DEBUG [15369]: Database connection successful -- 21:20:34.101 INFO [15369]: _SERVER found -- 21:20:34.101 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 21:20:34.101 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 21:20:34.101 INFO [15369]: QUERY_STRING = /login.cgi -- 21:20:34.101 INFO [15369]: HTTP_X_FORWARDED_FOR = 168.138.144.172 -- 21:20:34.112 INFO [15369]: COREGRADE is stopping... -- 21:20:34.112 DEBUG [15369]: Closing database connection -- 21:20:34.112 SQL [15369]: pgsql_close() -- 21:20:36.303 INFO [24616]: COREGRADE is starting... -- 21:20:36.303 INFO [24616]: Version from config: 1.0 -- 21:20:36.303 DEBUG [24616]: Connecting to database... -- 21:20:36.303 DEBUG [24616]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:20:36.303 SQL [24616]: pgsql_db_connect() -- 21:20:36.307 DEBUG [24616]: Database connection successful -- 21:20:36.307 INFO [24616]: _SERVER found -- 21:20:36.307 INFO [24616]: REMOTE_ADDR = 10.0.0.15 -- 21:20:36.307 INFO [24616]: SERVER_NAME = oameye.works.coregrade.com -- 21:20:36.307 INFO [24616]: QUERY_STRING = /dana-na/auth/url_default/welcome.cgi -- 21:20:36.307 INFO [24616]: HTTP_X_FORWARDED_FOR = 168.138.144.172 -- 21:20:36.319 INFO [24616]: COREGRADE is stopping... -- 21:20:36.319 DEBUG [24616]: Closing database connection -- 21:20:36.319 SQL [24616]: pgsql_close() -- 21:20:37.250 INFO [15370]: COREGRADE is starting... -- 21:20:37.250 INFO [15370]: Version from config: 1.0 -- 21:20:37.250 DEBUG [15370]: Connecting to database... -- 21:20:37.250 DEBUG [15370]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:20:37.250 SQL [15370]: pgsql_db_connect() -- 21:20:37.254 DEBUG [15370]: Database connection successful -- 21:20:37.254 INFO [15370]: _SERVER found -- 21:20:37.254 INFO [15370]: REMOTE_ADDR = 10.0.0.15 -- 21:20:37.254 INFO [15370]: SERVER_NAME = oameye.works.coregrade.com -- 21:20:37.254 INFO [15370]: QUERY_STRING = /remote/login -- 21:20:37.254 INFO [15370]: HTTP_X_FORWARDED_FOR = 168.138.144.172 -- 21:20:37.266 INFO [15370]: COREGRADE is stopping... -- 21:20:37.266 DEBUG [15370]: Closing database connection -- 21:20:37.266 SQL [15370]: pgsql_close() -- 21:20:38.238 INFO [15369]: COREGRADE is starting... -- 21:20:38.239 INFO [15369]: Version from config: 1.0 -- 21:20:38.239 DEBUG [15369]: Connecting to database... -- 21:20:38.239 DEBUG [15369]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:20:38.239 SQL [15369]: pgsql_db_connect() -- 21:20:38.243 DEBUG [15369]: Database connection successful -- 21:20:38.243 INFO [15369]: _SERVER found -- 21:20:38.243 INFO [15369]: REMOTE_ADDR = 10.0.0.15 -- 21:20:38.243 INFO [15369]: SERVER_NAME = oameye.works.coregrade.com -- 21:20:38.243 INFO [15369]: QUERY_STRING = /index.asp -- 21:20:38.243 INFO [15369]: HTTP_X_FORWARDED_FOR = 168.138.144.172 -- 21:20:38.254 INFO [15369]: COREGRADE is stopping... -- 21:20:38.254 DEBUG [15369]: Closing database connection -- 21:20:38.254 SQL [15369]: pgsql_close() -- 21:33:17.618 INFO [15367]: COREGRADE is starting... -- 21:33:17.619 INFO [15367]: Version from config: 1.0 -- 21:33:17.619 DEBUG [15367]: Connecting to database... -- 21:33:17.619 DEBUG [15367]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:33:17.619 SQL [15367]: pgsql_db_connect() -- 21:33:17.623 DEBUG [15367]: Database connection successful -- 21:33:17.623 INFO [15367]: _SERVER found -- 21:33:17.623 INFO [15367]: REMOTE_ADDR = 10.0.0.15 -- 21:33:17.623 INFO [15367]: SERVER_NAME = oameye.works.coregrade.com -- 21:33:17.623 INFO [15367]: QUERY_STRING = -- 21:33:17.623 INFO [15367]: HTTP_X_FORWARDED_FOR = 183.136.225.45 -- 21:33:17.659 INFO [15367]: COREGRADE is stopping... -- 21:33:17.659 DEBUG [15367]: Closing database connection -- 21:33:17.659 SQL [15367]: pgsql_close() -- 22:34:28.579 INFO [19523]: COREGRADE is starting... -- 22:34:28.580 INFO [19523]: Version from config: 1.0 -- 22:34:28.580 DEBUG [19523]: Connecting to database... -- 22:34:28.580 DEBUG [19523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:34:28.580 SQL [19523]: pgsql_db_connect() -- 22:34:28.585 DEBUG [19523]: Database connection successful -- 22:34:28.585 INFO [19523]: _SERVER found -- 22:34:28.585 INFO [19523]: REMOTE_ADDR = 10.0.0.15 -- 22:34:28.585 INFO [19523]: SERVER_NAME = oameye.works.coregrade.com -- 22:34:28.585 INFO [19523]: QUERY_STRING = -- 22:34:28.585 INFO [19523]: HTTP_X_FORWARDED_FOR = 37.9.169.11 -- 22:34:28.635 INFO [19523]: COREGRADE is stopping... -- 22:34:28.635 DEBUG [19523]: Closing database connection -- 22:34:28.635 SQL [19523]: pgsql_close() -- 22:34:29.558 INFO [19524]: COREGRADE is starting... -- 22:34:29.559 INFO [19524]: Version from config: 1.0 -- 22:34:29.559 DEBUG [19524]: Connecting to database... -- 22:34:29.559 DEBUG [19524]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:34:29.559 SQL [19524]: pgsql_db_connect() -- 22:34:29.565 DEBUG [19524]: Database connection successful -- 22:34:29.565 INFO [19524]: _SERVER found -- 22:34:29.565 INFO [19524]: REMOTE_ADDR = 10.0.0.15 -- 22:34:29.565 INFO [19524]: SERVER_NAME = oameye.works.coregrade.com -- 22:34:29.565 INFO [19524]: QUERY_STRING = /home.asp -- 22:34:29.565 INFO [19524]: HTTP_X_FORWARDED_FOR = 37.9.169.11 -- 22:34:29.581 INFO [19524]: COREGRADE is stopping... -- 22:34:29.581 DEBUG [19524]: Closing database connection -- 22:34:29.581 SQL [19524]: pgsql_close() -- 22:34:30.375 INFO [19523]: COREGRADE is starting... -- 22:34:30.375 INFO [19523]: Version from config: 1.0 -- 22:34:30.375 DEBUG [19523]: Connecting to database... -- 22:34:30.375 DEBUG [19523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:34:30.375 SQL [19523]: pgsql_db_connect() -- 22:34:30.379 DEBUG [19523]: Database connection successful -- 22:34:30.379 INFO [19523]: _SERVER found -- 22:34:30.379 INFO [19523]: REMOTE_ADDR = 10.0.0.15 -- 22:34:30.379 INFO [19523]: SERVER_NAME = oameye.works.coregrade.com -- 22:34:30.379 INFO [19523]: QUERY_STRING = /login.cgi -- 22:34:30.379 INFO [19523]: HTTP_X_FORWARDED_FOR = 37.9.169.11 -- 22:34:30.391 INFO [19523]: COREGRADE is stopping... -- 22:34:30.391 DEBUG [19523]: Closing database connection -- 22:34:30.391 SQL [19523]: pgsql_close() -- 22:34:32.248 INFO [19523]: COREGRADE is starting... -- 22:34:32.249 INFO [19523]: Version from config: 1.0 -- 22:34:32.249 DEBUG [19523]: Connecting to database... -- 22:34:32.249 DEBUG [19523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:34:32.249 SQL [19523]: pgsql_db_connect() -- 22:34:32.253 DEBUG [19523]: Database connection successful -- 22:34:32.253 INFO [19523]: _SERVER found -- 22:34:32.253 INFO [19523]: REMOTE_ADDR = 10.0.0.15 -- 22:34:32.253 INFO [19523]: SERVER_NAME = oameye.works.coregrade.com -- 22:34:32.253 INFO [19523]: QUERY_STRING = /dana-na/auth/url_default/welcome.cgi -- 22:34:32.253 INFO [19523]: HTTP_X_FORWARDED_FOR = 37.9.169.11 -- 22:34:32.264 INFO [19523]: COREGRADE is stopping... -- 22:34:32.264 DEBUG [19523]: Closing database connection -- 22:34:32.264 SQL [19523]: pgsql_close() -- 22:34:33.059 INFO [19523]: COREGRADE is starting... -- 22:34:33.059 INFO [19523]: Version from config: 1.0 -- 22:34:33.059 DEBUG [19523]: Connecting to database... -- 22:34:33.059 DEBUG [19523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:34:33.059 SQL [19523]: pgsql_db_connect() -- 22:34:33.063 DEBUG [19523]: Database connection successful -- 22:34:33.063 INFO [19523]: _SERVER found -- 22:34:33.063 INFO [19523]: REMOTE_ADDR = 10.0.0.15 -- 22:34:33.063 INFO [19523]: SERVER_NAME = oameye.works.coregrade.com -- 22:34:33.063 INFO [19523]: QUERY_STRING = /remote/login -- 22:34:33.063 INFO [19523]: HTTP_X_FORWARDED_FOR = 37.9.169.11 -- 22:34:33.075 INFO [19523]: COREGRADE is stopping... -- 22:34:33.075 DEBUG [19523]: Closing database connection -- 22:34:33.075 SQL [19523]: pgsql_close() -- 22:34:33.845 INFO [19523]: COREGRADE is starting... -- 22:34:33.845 INFO [19523]: Version from config: 1.0 -- 22:34:33.845 DEBUG [19523]: Connecting to database... -- 22:34:33.845 DEBUG [19523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:34:33.845 SQL [19523]: pgsql_db_connect() -- 22:34:33.850 DEBUG [19523]: Database connection successful -- 22:34:33.850 INFO [19523]: _SERVER found -- 22:34:33.850 INFO [19523]: REMOTE_ADDR = 10.0.0.15 -- 22:34:33.850 INFO [19523]: SERVER_NAME = oameye.works.coregrade.com -- 22:34:33.850 INFO [19523]: QUERY_STRING = /index.asp -- 22:34:33.850 INFO [19523]: HTTP_X_FORWARDED_FOR = 37.9.169.11 -- 22:34:33.861 INFO [19523]: COREGRADE is stopping... -- 22:34:33.861 DEBUG [19523]: Closing database connection -- 22:34:33.861 SQL [19523]: pgsql_close() -- 23:24:03.314 INFO [19526]: COREGRADE is starting... -- 23:24:03.315 INFO [19526]: Version from config: 1.0 -- 23:24:03.315 DEBUG [19526]: Connecting to database... -- 23:24:03.315 DEBUG [19526]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:24:03.315 SQL [19526]: pgsql_db_connect() -- 23:24:03.319 DEBUG [19526]: Database connection successful -- 23:24:03.319 INFO [19526]: _SERVER found -- 23:24:03.319 INFO [19526]: REMOTE_ADDR = 10.0.0.15 -- 23:24:03.319 INFO [19526]: SERVER_NAME = oameye.works.coregrade.com -- 23:24:03.319 INFO [19526]: QUERY_STRING = -- 23:24:03.319 INFO [19526]: HTTP_X_FORWARDED_FOR = 202.53.8.129 -- 23:24:03.369 INFO [19526]: COREGRADE is stopping... -- 23:24:03.369 DEBUG [19526]: Closing database connection -- 23:24:03.369 SQL [19526]: pgsql_close() -- 23:24:05.853 INFO [19527]: COREGRADE is starting... -- 23:24:05.854 INFO [19527]: Version from config: 1.0 -- 23:24:05.854 DEBUG [19527]: Connecting to database... -- 23:24:05.854 DEBUG [19527]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:24:05.854 SQL [19527]: pgsql_db_connect() -- 23:24:05.858 DEBUG [19527]: Database connection successful -- 23:24:05.858 INFO [19527]: _SERVER found -- 23:24:05.858 INFO [19527]: REMOTE_ADDR = 10.0.0.15 -- 23:24:05.858 INFO [19527]: SERVER_NAME = oameye.works.coregrade.com -- 23:24:05.858 INFO [19527]: QUERY_STRING = /home.asp -- 23:24:05.858 INFO [19527]: HTTP_X_FORWARDED_FOR = 202.53.8.129 -- 23:24:05.875 INFO [19527]: COREGRADE is stopping... -- 23:24:05.875 DEBUG [19527]: Closing database connection -- 23:24:05.875 SQL [19527]: pgsql_close() -- 23:24:07.482 INFO [19526]: COREGRADE is starting... -- 23:24:07.482 INFO [19526]: Version from config: 1.0 -- 23:24:07.482 DEBUG [19526]: Connecting to database... -- 23:24:07.482 DEBUG [19526]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:24:07.482 SQL [19526]: pgsql_db_connect() -- 23:24:07.486 DEBUG [19526]: Database connection successful -- 23:24:07.486 INFO [19526]: _SERVER found -- 23:24:07.486 INFO [19526]: REMOTE_ADDR = 10.0.0.15 -- 23:24:07.486 INFO [19526]: SERVER_NAME = oameye.works.coregrade.com -- 23:24:07.486 INFO [19526]: QUERY_STRING = /login.cgi -- 23:24:07.486 INFO [19526]: HTTP_X_FORWARDED_FOR = 202.53.8.129 -- 23:24:07.498 INFO [19526]: COREGRADE is stopping... -- 23:24:07.498 DEBUG [19526]: Closing database connection -- 23:24:07.498 SQL [19526]: pgsql_close() -- 23:24:12.391 INFO [19526]: COREGRADE is starting... -- 23:24:12.391 INFO [19526]: Version from config: 1.0 -- 23:24:12.391 DEBUG [19526]: Connecting to database... -- 23:24:12.391 DEBUG [19526]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:24:12.391 SQL [19526]: pgsql_db_connect() -- 23:24:12.396 DEBUG [19526]: Database connection successful -- 23:24:12.396 INFO [19526]: _SERVER found -- 23:24:12.396 INFO [19526]: REMOTE_ADDR = 10.0.0.15 -- 23:24:12.396 INFO [19526]: SERVER_NAME = oameye.works.coregrade.com -- 23:24:12.396 INFO [19526]: QUERY_STRING = /dana-na/auth/url_default/welcome.cgi -- 23:24:12.396 INFO [19526]: HTTP_X_FORWARDED_FOR = 202.53.8.129 -- 23:24:12.407 INFO [19526]: COREGRADE is stopping... -- 23:24:12.407 DEBUG [19526]: Closing database connection -- 23:24:12.407 SQL [19526]: pgsql_close() -- 23:24:13.986 INFO [19525]: COREGRADE is starting... -- 23:24:13.986 INFO [19525]: Version from config: 1.0 -- 23:24:13.986 DEBUG [19525]: Connecting to database... -- 23:24:13.986 DEBUG [19525]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:24:13.986 SQL [19525]: pgsql_db_connect() -- 23:24:13.990 DEBUG [19525]: Database connection successful -- 23:24:13.990 INFO [19525]: _SERVER found -- 23:24:13.990 INFO [19525]: REMOTE_ADDR = 10.0.0.15 -- 23:24:13.990 INFO [19525]: SERVER_NAME = oameye.works.coregrade.com -- 23:24:13.990 INFO [19525]: QUERY_STRING = /remote/login -- 23:24:13.990 INFO [19525]: HTTP_X_FORWARDED_FOR = 202.53.8.129 -- 23:24:14.007 INFO [19525]: COREGRADE is stopping... -- 23:24:14.007 DEBUG [19525]: Closing database connection -- 23:24:14.007 SQL [19525]: pgsql_close() -- 23:24:16.170 INFO [19837]: COREGRADE is starting... -- 23:24:16.170 INFO [19837]: Version from config: 1.0 -- 23:24:16.170 DEBUG [19837]: Connecting to database... -- 23:24:16.170 DEBUG [19837]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:24:16.170 SQL [19837]: pgsql_db_connect() -- 23:24:16.174 DEBUG [19837]: Database connection successful -- 23:24:16.174 INFO [19837]: _SERVER found -- 23:24:16.174 INFO [19837]: REMOTE_ADDR = 10.0.0.15 -- 23:24:16.174 INFO [19837]: SERVER_NAME = oameye.works.coregrade.com -- 23:24:16.174 INFO [19837]: QUERY_STRING = /index.asp -- 23:24:16.174 INFO [19837]: HTTP_X_FORWARDED_FOR = 202.53.8.129 -- 23:24:16.190 INFO [19837]: COREGRADE is stopping... -- 23:24:16.190 DEBUG [19837]: Closing database connection -- 23:24:16.190 SQL [19837]: pgsql_close() -- 00:16:34.291 INFO [19839]: COREGRADE is starting... -- 00:16:34.292 INFO [19839]: Version from config: 1.0 -- 00:16:34.292 DEBUG [19839]: Connecting to database... -- 00:16:34.292 DEBUG [19839]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:16:34.292 SQL [19839]: pgsql_db_connect() -- 00:16:34.297 DEBUG [19839]: Database connection successful -- 00:16:34.297 INFO [19839]: _SERVER found -- 00:16:34.297 INFO [19839]: REMOTE_ADDR = 10.0.0.15 -- 00:16:34.297 INFO [19839]: SERVER_NAME = oameye.works.coregrade.com -- 00:16:34.297 INFO [19839]: QUERY_STRING = /.well-known/acme-challenge/xrtRH8BHL3cdgOrDVhRCWtz2jrf0CuEhqWsSL_wiLzs -- 00:16:34.297 INFO [19839]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 00:16:34.316 INFO [19839]: COREGRADE is stopping... -- 00:16:34.316 DEBUG [19839]: Closing database connection -- 00:16:34.316 SQL [19839]: pgsql_close() -- 00:16:34.498 INFO [19524]: COREGRADE is starting... -- 00:16:34.499 INFO [19524]: Version from config: 1.0 -- 00:16:34.499 DEBUG [19524]: Connecting to database... -- 00:16:34.499 DEBUG [19524]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:16:34.499 SQL [19524]: pgsql_db_connect() -- 00:16:34.503 DEBUG [19524]: Database connection successful -- 00:16:34.503 INFO [19524]: _SERVER found -- 00:16:34.503 INFO [19524]: REMOTE_ADDR = 10.0.0.15 -- 00:16:34.503 INFO [19524]: SERVER_NAME = oameye.works.coregrade.com -- 00:16:34.503 INFO [19524]: QUERY_STRING = /.well-known/acme-challenge/xrtRH8BHL3cdgOrDVhRCWtz2jrf0CuEhqWsSL_wiLzs -- 00:16:34.503 INFO [19524]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 00:16:34.517 INFO [19524]: COREGRADE is stopping... -- 00:16:34.517 DEBUG [19524]: Closing database connection -- 00:16:34.517 SQL [19524]: pgsql_close() -- 00:16:34.527 INFO [19523]: COREGRADE is starting... -- 00:16:34.527 INFO [19523]: Version from config: 1.0 -- 00:16:34.527 DEBUG [19523]: Connecting to database... -- 00:16:34.527 DEBUG [19523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:16:34.527 SQL [19523]: pgsql_db_connect() -- 00:16:34.531 DEBUG [19523]: Database connection successful -- 00:16:34.531 INFO [19523]: _SERVER found -- 00:16:34.531 INFO [19523]: REMOTE_ADDR = 10.0.0.15 -- 00:16:34.531 INFO [19523]: SERVER_NAME = oameye.works.coregrade.com -- 00:16:34.531 INFO [19523]: QUERY_STRING = /.well-known/acme-challenge/xrtRH8BHL3cdgOrDVhRCWtz2jrf0CuEhqWsSL_wiLzs -- 00:16:34.531 INFO [19523]: HTTP_X_FORWARDED_FOR = 34.222.229.130 -- 00:16:34.551 INFO [19523]: COREGRADE is stopping... -- 00:16:34.551 DEBUG [19523]: Closing database connection -- 00:16:34.551 SQL [19523]: pgsql_close() -- 00:16:34.697 INFO [19523]: COREGRADE is starting... -- 00:16:34.698 INFO [19523]: Version from config: 1.0 -- 00:16:34.698 DEBUG [19523]: Connecting to database... -- 00:16:34.698 DEBUG [19523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:16:34.698 SQL [19523]: pgsql_db_connect() -- 00:16:34.702 DEBUG [19523]: Database connection successful -- 00:16:34.702 INFO [19523]: _SERVER found -- 00:16:34.702 INFO [19523]: REMOTE_ADDR = 10.0.0.15 -- 00:16:34.702 INFO [19523]: SERVER_NAME = oameye.works.coregrade.com -- 00:16:34.702 INFO [19523]: QUERY_STRING = /.well-known/acme-challenge/xrtRH8BHL3cdgOrDVhRCWtz2jrf0CuEhqWsSL_wiLzs -- 00:16:34.702 INFO [19523]: HTTP_X_FORWARDED_FOR = 52.28.236.88 -- 00:16:34.713 INFO [19523]: COREGRADE is stopping... -- 00:16:34.713 DEBUG [19523]: Closing database connection -- 00:16:34.713 SQL [19523]: pgsql_close() -- 00:28:21.858 INFO [19527]: COREGRADE is starting... -- 00:28:21.858 INFO [19527]: Version from config: 1.0 -- 00:28:21.858 DEBUG [19527]: Connecting to database... -- 00:28:21.858 DEBUG [19527]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:21.858 SQL [19527]: pgsql_db_connect() -- 00:28:21.863 DEBUG [19527]: Database connection successful -- 00:28:21.863 INFO [19527]: _SERVER found -- 00:28:21.863 INFO [19527]: REMOTE_ADDR = 10.0.0.15 -- 00:28:21.863 INFO [19527]: SERVER_NAME = oameye.works.coregrade.com -- 00:28:21.863 INFO [19527]: QUERY_STRING = -- 00:28:21.863 INFO [19527]: HTTP_X_FORWARDED_FOR = 67.225.238.42 -- 00:28:21.912 INFO [19527]: COREGRADE is stopping... -- 00:28:21.912 DEBUG [19527]: Closing database connection -- 00:28:21.912 SQL [19527]: pgsql_close() -- 00:28:23.772 INFO [19527]: COREGRADE is starting... -- 00:28:23.772 INFO [19527]: Version from config: 1.0 -- 00:28:23.772 DEBUG [19527]: Connecting to database... -- 00:28:23.772 DEBUG [19527]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:23.773 SQL [19527]: pgsql_db_connect() -- 00:28:23.777 DEBUG [19527]: Database connection successful -- 00:28:23.777 INFO [19527]: _SERVER found -- 00:28:23.777 INFO [19527]: REMOTE_ADDR = 10.0.0.15 -- 00:28:23.777 INFO [19527]: SERVER_NAME = oameye.works.coregrade.com -- 00:28:23.777 INFO [19527]: QUERY_STRING = /home.asp -- 00:28:23.777 INFO [19527]: HTTP_X_FORWARDED_FOR = 67.225.238.42 -- 00:28:23.789 INFO [19527]: COREGRADE is stopping... -- 00:28:23.789 DEBUG [19527]: Closing database connection -- 00:28:23.789 SQL [19527]: pgsql_close() -- 00:28:24.028 INFO [19526]: COREGRADE is starting... -- 00:28:24.028 INFO [19526]: Version from config: 1.0 -- 00:28:24.028 DEBUG [19526]: Connecting to database... -- 00:28:24.028 DEBUG [19526]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:24.028 SQL [19526]: pgsql_db_connect() -- 00:28:24.032 DEBUG [19526]: Database connection successful -- 00:28:24.032 INFO [19526]: _SERVER found -- 00:28:24.032 INFO [19526]: REMOTE_ADDR = 10.0.0.15 -- 00:28:24.032 INFO [19526]: SERVER_NAME = oameye.works.coregrade.com -- 00:28:24.032 INFO [19526]: QUERY_STRING = /login.cgi -- 00:28:24.032 INFO [19526]: HTTP_X_FORWARDED_FOR = 67.225.238.42 -- 00:28:24.046 INFO [19526]: COREGRADE is stopping... -- 00:28:24.046 DEBUG [19526]: Closing database connection -- 00:28:24.046 SQL [19526]: pgsql_close() -- 00:28:24.700 INFO [19526]: COREGRADE is starting... -- 00:28:24.700 INFO [19526]: Version from config: 1.0 -- 00:28:24.700 DEBUG [19526]: Connecting to database... -- 00:28:24.700 DEBUG [19526]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:24.700 SQL [19526]: pgsql_db_connect() -- 00:28:24.704 DEBUG [19526]: Database connection successful -- 00:28:24.704 INFO [19526]: _SERVER found -- 00:28:24.704 INFO [19526]: REMOTE_ADDR = 10.0.0.15 -- 00:28:24.704 INFO [19526]: SERVER_NAME = oameye.works.coregrade.com -- 00:28:24.704 INFO [19526]: QUERY_STRING = /dana-na/auth/url_default/welcome.cgi -- 00:28:24.704 INFO [19526]: HTTP_X_FORWARDED_FOR = 67.225.238.42 -- 00:28:24.715 INFO [19526]: COREGRADE is stopping... -- 00:28:24.715 DEBUG [19526]: Closing database connection -- 00:28:24.715 SQL [19526]: pgsql_close() -- 00:28:24.953 INFO [19526]: COREGRADE is starting... -- 00:28:24.953 INFO [19526]: Version from config: 1.0 -- 00:28:24.953 DEBUG [19526]: Connecting to database... -- 00:28:24.953 DEBUG [19526]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:24.953 SQL [19526]: pgsql_db_connect() -- 00:28:24.957 DEBUG [19526]: Database connection successful -- 00:28:24.957 INFO [19526]: _SERVER found -- 00:28:24.957 INFO [19526]: REMOTE_ADDR = 10.0.0.15 -- 00:28:24.957 INFO [19526]: SERVER_NAME = oameye.works.coregrade.com -- 00:28:24.957 INFO [19526]: QUERY_STRING = /remote/login -- 00:28:24.957 INFO [19526]: HTTP_X_FORWARDED_FOR = 67.225.238.42 -- 00:28:24.968 INFO [19526]: COREGRADE is stopping... -- 00:28:24.969 DEBUG [19526]: Closing database connection -- 00:28:24.969 SQL [19526]: pgsql_close() -- 00:28:25.205 INFO [19526]: COREGRADE is starting... -- 00:28:25.206 INFO [19526]: Version from config: 1.0 -- 00:28:25.206 DEBUG [19526]: Connecting to database... -- 00:28:25.206 DEBUG [19526]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:25.206 SQL [19526]: pgsql_db_connect() -- 00:28:25.210 DEBUG [19526]: Database connection successful -- 00:28:25.210 INFO [19526]: _SERVER found -- 00:28:25.210 INFO [19526]: REMOTE_ADDR = 10.0.0.15 -- 00:28:25.210 INFO [19526]: SERVER_NAME = oameye.works.coregrade.com -- 00:28:25.210 INFO [19526]: QUERY_STRING = /index.asp -- 00:28:25.210 INFO [19526]: HTTP_X_FORWARDED_FOR = 67.225.238.42 -- 00:28:25.221 INFO [19526]: COREGRADE is stopping... -- 00:28:25.221 DEBUG [19526]: Closing database connection -- 00:28:25.221 SQL [19526]: pgsql_close() -- 00:49:34.606 INFO [19837]: COREGRADE is starting... -- 00:49:34.607 INFO [19837]: Version from config: 1.0 -- 00:49:34.607 DEBUG [19837]: Connecting to database... -- 00:49:34.607 DEBUG [19837]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:49:34.607 SQL [19837]: pgsql_db_connect() -- 00:49:34.612 DEBUG [19837]: Database connection successful -- 00:49:34.612 INFO [19837]: _SERVER found -- 00:49:34.612 INFO [19837]: REMOTE_ADDR = 10.0.0.15 -- 00:49:34.612 INFO [19837]: SERVER_NAME = oameye.works.coregrade.com -- 00:49:34.612 INFO [19837]: QUERY_STRING = -- 00:49:34.612 INFO [19837]: HTTP_X_FORWARDED_FOR = 157.230.180.88 -- 00:49:34.660 INFO [19837]: COREGRADE is stopping... -- 00:49:34.660 DEBUG [19837]: Closing database connection -- 00:49:34.660 SQL [19837]: pgsql_close() -- 00:49:34.901 INFO [19837]: COREGRADE is starting... -- 00:49:34.901 INFO [19837]: Version from config: 1.0 -- 00:49:34.901 DEBUG [19837]: Connecting to database... -- 00:49:34.901 DEBUG [19837]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:49:34.901 SQL [19837]: pgsql_db_connect() -- 00:49:34.906 DEBUG [19837]: Database connection successful -- 00:49:34.906 INFO [19837]: _SERVER found -- 00:49:34.906 INFO [19837]: REMOTE_ADDR = 10.0.0.15 -- 00:49:34.906 INFO [19837]: SERVER_NAME = oameye.works.coregrade.com -- 00:49:34.906 INFO [19837]: QUERY_STRING = /home.asp -- 00:49:34.906 INFO [19837]: HTTP_X_FORWARDED_FOR = 157.230.180.88 -- 00:49:34.917 INFO [19837]: COREGRADE is stopping... -- 00:49:34.917 DEBUG [19837]: Closing database connection -- 00:49:34.917 SQL [19837]: pgsql_close() -- 00:49:35.142 INFO [19837]: COREGRADE is starting... -- 00:49:35.142 INFO [19837]: Version from config: 1.0 -- 00:49:35.142 DEBUG [19837]: Connecting to database... -- 00:49:35.142 DEBUG [19837]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:49:35.142 SQL [19837]: pgsql_db_connect() -- 00:49:35.146 DEBUG [19837]: Database connection successful -- 00:49:35.146 INFO [19837]: _SERVER found -- 00:49:35.146 INFO [19837]: REMOTE_ADDR = 10.0.0.15 -- 00:49:35.146 INFO [19837]: SERVER_NAME = oameye.works.coregrade.com -- 00:49:35.146 INFO [19837]: QUERY_STRING = /login.cgi -- 00:49:35.146 INFO [19837]: HTTP_X_FORWARDED_FOR = 157.230.180.88 -- 00:49:35.157 INFO [19837]: COREGRADE is stopping... -- 00:49:35.157 DEBUG [19837]: Closing database connection -- 00:49:35.157 SQL [19837]: pgsql_close() -- 00:49:35.649 INFO [19837]: COREGRADE is starting... -- 00:49:35.649 INFO [19837]: Version from config: 1.0 -- 00:49:35.649 DEBUG [19837]: Connecting to database... -- 00:49:35.649 DEBUG [19837]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:49:35.649 SQL [19837]: pgsql_db_connect() -- 00:49:35.653 DEBUG [19837]: Database connection successful -- 00:49:35.653 INFO [19837]: _SERVER found -- 00:49:35.653 INFO [19837]: REMOTE_ADDR = 10.0.0.15 -- 00:49:35.653 INFO [19837]: SERVER_NAME = oameye.works.coregrade.com -- 00:49:35.653 INFO [19837]: QUERY_STRING = /dana-na/auth/url_default/welcome.cgi -- 00:49:35.653 INFO [19837]: HTTP_X_FORWARDED_FOR = 157.230.180.88 -- 00:49:35.665 INFO [19837]: COREGRADE is stopping... -- 00:49:35.665 DEBUG [19837]: Closing database connection -- 00:49:35.665 SQL [19837]: pgsql_close() -- 00:49:35.932 INFO [19837]: COREGRADE is starting... -- 00:49:35.932 INFO [19837]: Version from config: 1.0 -- 00:49:35.932 DEBUG [19837]: Connecting to database... -- 00:49:35.932 DEBUG [19837]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:49:35.932 SQL [19837]: pgsql_db_connect() -- 00:49:35.936 DEBUG [19837]: Database connection successful -- 00:49:35.936 INFO [19837]: _SERVER found -- 00:49:35.936 INFO [19837]: REMOTE_ADDR = 10.0.0.15 -- 00:49:35.936 INFO [19837]: SERVER_NAME = oameye.works.coregrade.com -- 00:49:35.936 INFO [19837]: QUERY_STRING = /remote/login -- 00:49:35.936 INFO [19837]: HTTP_X_FORWARDED_FOR = 157.230.180.88 -- 00:49:35.948 INFO [19837]: COREGRADE is stopping... -- 00:49:35.948 DEBUG [19837]: Closing database connection -- 00:49:35.948 SQL [19837]: pgsql_close() -- 00:49:36.147 INFO [19837]: COREGRADE is starting... -- 00:49:36.147 INFO [19837]: Version from config: 1.0 -- 00:49:36.147 DEBUG [19837]: Connecting to database... -- 00:49:36.147 DEBUG [19837]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:49:36.147 SQL [19837]: pgsql_db_connect() -- 00:49:36.152 DEBUG [19837]: Database connection successful -- 00:49:36.152 INFO [19837]: _SERVER found -- 00:49:36.152 INFO [19837]: REMOTE_ADDR = 10.0.0.15 -- 00:49:36.152 INFO [19837]: SERVER_NAME = oameye.works.coregrade.com -- 00:49:36.152 INFO [19837]: QUERY_STRING = /index.asp -- 00:49:36.152 INFO [19837]: HTTP_X_FORWARDED_FOR = 157.230.180.88 -- 00:49:36.163 INFO [19837]: COREGRADE is stopping... -- 00:49:36.163 DEBUG [19837]: Closing database connection -- 00:49:36.163 SQL [19837]: pgsql_close() -- 04:36:35.334 INFO [20304]: COREGRADE is starting... -- 04:36:35.335 INFO [20304]: Version from config: 1.0 -- 04:36:35.335 DEBUG [20304]: Connecting to database... -- 04:36:35.335 DEBUG [20304]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:36:35.335 SQL [20304]: pgsql_db_connect() -- 04:36:35.340 DEBUG [20304]: Database connection successful -- 04:36:35.340 INFO [20304]: _SERVER found -- 04:36:35.340 INFO [20304]: REMOTE_ADDR = 10.0.0.15 -- 04:36:35.340 INFO [20304]: SERVER_NAME = oameye.works.coregrade.com -- 04:36:35.340 INFO [20304]: QUERY_STRING = -- 04:36:35.340 INFO [20304]: HTTP_X_FORWARDED_FOR = 158.255.211.215 -- 04:36:35.389 INFO [20304]: COREGRADE is stopping... -- 04:36:35.389 DEBUG [20304]: Closing database connection -- 04:36:35.389 SQL [20304]: pgsql_close() -- 04:36:38.184 INFO [20304]: COREGRADE is starting... -- 04:36:38.184 INFO [20304]: Version from config: 1.0 -- 04:36:38.184 DEBUG [20304]: Connecting to database... -- 04:36:38.184 DEBUG [20304]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:36:38.184 SQL [20304]: pgsql_db_connect() -- 04:36:38.189 DEBUG [20304]: Database connection successful -- 04:36:38.189 INFO [20304]: _SERVER found -- 04:36:38.189 INFO [20304]: REMOTE_ADDR = 10.0.0.15 -- 04:36:38.189 INFO [20304]: SERVER_NAME = oameye.works.coregrade.com -- 04:36:38.189 INFO [20304]: QUERY_STRING = /home.asp -- 04:36:38.189 INFO [20304]: HTTP_X_FORWARDED_FOR = 158.255.211.215 -- 04:36:38.201 INFO [20304]: COREGRADE is stopping... -- 04:36:38.201 DEBUG [20304]: Closing database connection -- 04:36:38.201 SQL [20304]: pgsql_close() -- 04:36:41.203 INFO [19839]: COREGRADE is starting... -- 04:36:41.203 INFO [19839]: Version from config: 1.0 -- 04:36:41.203 DEBUG [19839]: Connecting to database... -- 04:36:41.203 DEBUG [19839]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:36:41.203 SQL [19839]: pgsql_db_connect() -- 04:36:41.207 DEBUG [19839]: Database connection successful -- 04:36:41.207 INFO [19839]: _SERVER found -- 04:36:41.207 INFO [19839]: REMOTE_ADDR = 10.0.0.15 -- 04:36:41.207 INFO [19839]: SERVER_NAME = oameye.works.coregrade.com -- 04:36:41.207 INFO [19839]: QUERY_STRING = /login.cgi -- 04:36:41.207 INFO [19839]: HTTP_X_FORWARDED_FOR = 158.255.211.215 -- 04:36:41.222 INFO [19839]: COREGRADE is stopping... -- 04:36:41.222 DEBUG [19839]: Closing database connection -- 04:36:41.222 SQL [19839]: pgsql_close() -- 04:36:47.403 INFO [19524]: COREGRADE is starting... -- 04:36:47.403 INFO [19524]: Version from config: 1.0 -- 04:36:47.403 DEBUG [19524]: Connecting to database... -- 04:36:47.403 DEBUG [19524]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:36:47.403 SQL [19524]: pgsql_db_connect() -- 04:36:47.407 DEBUG [19524]: Database connection successful -- 04:36:47.407 INFO [19524]: _SERVER found -- 04:36:47.407 INFO [19524]: REMOTE_ADDR = 10.0.0.15 -- 04:36:47.407 INFO [19524]: SERVER_NAME = oameye.works.coregrade.com -- 04:36:47.407 INFO [19524]: QUERY_STRING = /dana-na/auth/url_default/welcome.cgi -- 04:36:47.407 INFO [19524]: HTTP_X_FORWARDED_FOR = 158.255.211.215 -- 04:36:47.422 INFO [19524]: COREGRADE is stopping... -- 04:36:47.422 DEBUG [19524]: Closing database connection -- 04:36:47.422 SQL [19524]: pgsql_close() -- 04:36:50.138 INFO [19840]: COREGRADE is starting... -- 04:36:50.138 INFO [19840]: Version from config: 1.0 -- 04:36:50.138 DEBUG [19840]: Connecting to database... -- 04:36:50.138 DEBUG [19840]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:36:50.138 SQL [19840]: pgsql_db_connect() -- 04:36:50.142 DEBUG [19840]: Database connection successful -- 04:36:50.142 INFO [19840]: _SERVER found -- 04:36:50.142 INFO [19840]: REMOTE_ADDR = 10.0.0.15 -- 04:36:50.142 INFO [19840]: SERVER_NAME = oameye.works.coregrade.com -- 04:36:50.142 INFO [19840]: QUERY_STRING = /remote/login -- 04:36:50.142 INFO [19840]: HTTP_X_FORWARDED_FOR = 158.255.211.215 -- 04:36:50.157 INFO [19840]: COREGRADE is stopping... -- 04:36:50.157 DEBUG [19840]: Closing database connection -- 04:36:50.157 SQL [19840]: pgsql_close() -- 04:36:53.170 INFO [19840]: COREGRADE is starting... -- 04:36:53.171 INFO [19840]: Version from config: 1.0 -- 04:36:53.171 DEBUG [19840]: Connecting to database... -- 04:36:53.171 DEBUG [19840]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:36:53.171 SQL [19840]: pgsql_db_connect() -- 04:36:53.175 DEBUG [19840]: Database connection successful -- 04:36:53.175 INFO [19840]: _SERVER found -- 04:36:53.175 INFO [19840]: REMOTE_ADDR = 10.0.0.15 -- 04:36:53.175 INFO [19840]: SERVER_NAME = oameye.works.coregrade.com -- 04:36:53.175 INFO [19840]: QUERY_STRING = /index.asp -- 04:36:53.175 INFO [19840]: HTTP_X_FORWARDED_FOR = 158.255.211.215 -- 04:36:53.187 INFO [19840]: COREGRADE is stopping... -- 04:36:53.187 DEBUG [19840]: Closing database connection -- 04:36:53.187 SQL [19840]: pgsql_close() -- 05:25:08.630 INFO [19523]: COREGRADE is starting... -- 05:25:08.631 INFO [19523]: Version from config: 1.0 -- 05:25:08.631 DEBUG [19523]: Connecting to database... -- 05:25:08.631 DEBUG [19523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:25:08.631 SQL [19523]: pgsql_db_connect() -- 05:25:08.635 DEBUG [19523]: Database connection successful -- 05:25:08.635 INFO [19523]: _SERVER found -- 05:25:08.635 INFO [19523]: REMOTE_ADDR = 10.0.0.15 -- 05:25:08.635 INFO [19523]: SERVER_NAME = tokslaw.works.coregrade.com -- 05:25:08.635 INFO [19523]: QUERY_STRING = /wp-login.php -- 05:25:08.635 INFO [19523]: HTTP_X_FORWARDED_FOR = 86.109.170.96 -- 05:25:08.650 INFO [19523]: COREGRADE is stopping... -- 05:25:08.650 DEBUG [19523]: Closing database connection -- 05:25:08.650 SQL [19523]: pgsql_close() -- 07:21:51.649 INFO [19527]: COREGRADE is starting... -- 07:21:51.649 INFO [19527]: Version from config: 1.0 -- 07:21:51.649 DEBUG [19527]: Connecting to database... -- 07:21:51.649 DEBUG [19527]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:21:51.649 SQL [19527]: pgsql_db_connect() -- 07:21:51.654 DEBUG [19527]: Database connection successful -- 07:21:51.654 INFO [19527]: _SERVER found -- 07:21:51.654 INFO [19527]: REMOTE_ADDR = 10.0.0.15 -- 07:21:51.654 INFO [19527]: SERVER_NAME = oameye.works.coregrade.com -- 07:21:51.654 INFO [19527]: QUERY_STRING = -- 07:21:51.654 INFO [19527]: HTTP_X_FORWARDED_FOR = 190.90.59.124 -- 07:21:51.693 INFO [19527]: COREGRADE is stopping... -- 07:21:51.693 DEBUG [19527]: Closing database connection -- 07:21:51.693 SQL [19527]: pgsql_close() -- 07:21:52.295 INFO [19526]: COREGRADE is starting... -- 07:21:52.295 INFO [19526]: Version from config: 1.0 -- 07:21:52.295 DEBUG [19526]: Connecting to database... -- 07:21:52.295 DEBUG [19526]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:21:52.295 SQL [19526]: pgsql_db_connect() -- 07:21:52.299 DEBUG [19526]: Database connection successful -- 07:21:52.299 INFO [19526]: _SERVER found -- 07:21:52.299 INFO [19526]: REMOTE_ADDR = 10.0.0.15 -- 07:21:52.299 INFO [19526]: SERVER_NAME = oameye.works.coregrade.com -- 07:21:52.299 INFO [19526]: QUERY_STRING = /home.asp -- 07:21:52.299 INFO [19526]: HTTP_X_FORWARDED_FOR = 190.90.59.124 -- 07:21:52.314 INFO [19526]: COREGRADE is stopping... -- 07:21:52.314 DEBUG [19526]: Closing database connection -- 07:21:52.314 SQL [19526]: pgsql_close() -- 07:21:52.850 INFO [19527]: COREGRADE is starting... -- 07:21:52.850 INFO [19527]: Version from config: 1.0 -- 07:21:52.850 DEBUG [19527]: Connecting to database... -- 07:21:52.850 DEBUG [19527]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:21:52.851 SQL [19527]: pgsql_db_connect() -- 07:21:52.855 DEBUG [19527]: Database connection successful -- 07:21:52.855 INFO [19527]: _SERVER found -- 07:21:52.855 INFO [19527]: REMOTE_ADDR = 10.0.0.15 -- 07:21:52.855 INFO [19527]: SERVER_NAME = oameye.works.coregrade.com -- 07:21:52.855 INFO [19527]: QUERY_STRING = /login.cgi -- 07:21:52.855 INFO [19527]: HTTP_X_FORWARDED_FOR = 190.90.59.124 -- 07:21:52.866 INFO [19527]: COREGRADE is stopping... -- 07:21:52.866 DEBUG [19527]: Closing database connection -- 07:21:52.866 SQL [19527]: pgsql_close() -- 07:21:54.069 INFO [19527]: COREGRADE is starting... -- 07:21:54.069 INFO [19527]: Version from config: 1.0 -- 07:21:54.069 DEBUG [19527]: Connecting to database... -- 07:21:54.069 DEBUG [19527]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:21:54.069 SQL [19527]: pgsql_db_connect() -- 07:21:54.073 DEBUG [19527]: Database connection successful -- 07:21:54.073 INFO [19527]: _SERVER found -- 07:21:54.073 INFO [19527]: REMOTE_ADDR = 10.0.0.15 -- 07:21:54.073 INFO [19527]: SERVER_NAME = oameye.works.coregrade.com -- 07:21:54.073 INFO [19527]: QUERY_STRING = /dana-na/auth/url_default/welcome.cgi -- 07:21:54.073 INFO [19527]: HTTP_X_FORWARDED_FOR = 190.90.59.124 -- 07:21:54.085 INFO [19527]: COREGRADE is stopping... -- 07:21:54.085 DEBUG [19527]: Closing database connection -- 07:21:54.085 SQL [19527]: pgsql_close() -- 07:21:54.644 INFO [19527]: COREGRADE is starting... -- 07:21:54.644 INFO [19527]: Version from config: 1.0 -- 07:21:54.644 DEBUG [19527]: Connecting to database... -- 07:21:54.644 DEBUG [19527]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:21:54.644 SQL [19527]: pgsql_db_connect() -- 07:21:54.648 DEBUG [19527]: Database connection successful -- 07:21:54.648 INFO [19527]: _SERVER found -- 07:21:54.648 INFO [19527]: REMOTE_ADDR = 10.0.0.15 -- 07:21:54.648 INFO [19527]: SERVER_NAME = oameye.works.coregrade.com -- 07:21:54.648 INFO [19527]: QUERY_STRING = /remote/login -- 07:21:54.648 INFO [19527]: HTTP_X_FORWARDED_FOR = 190.90.59.124 -- 07:21:54.660 INFO [19527]: COREGRADE is stopping... -- 07:21:54.660 DEBUG [19527]: Closing database connection -- 07:21:54.660 SQL [19527]: pgsql_close() -- 07:21:55.174 INFO [19527]: COREGRADE is starting... -- 07:21:55.175 INFO [19527]: Version from config: 1.0 -- 07:21:55.175 DEBUG [19527]: Connecting to database... -- 07:21:55.175 DEBUG [19527]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:21:55.175 SQL [19527]: pgsql_db_connect() -- 07:21:55.179 DEBUG [19527]: Database connection successful -- 07:21:55.179 INFO [19527]: _SERVER found -- 07:21:55.179 INFO [19527]: REMOTE_ADDR = 10.0.0.15 -- 07:21:55.179 INFO [19527]: SERVER_NAME = oameye.works.coregrade.com -- 07:21:55.179 INFO [19527]: QUERY_STRING = /index.asp -- 07:21:55.179 INFO [19527]: HTTP_X_FORWARDED_FOR = 190.90.59.124 -- 07:21:55.190 INFO [19527]: COREGRADE is stopping... -- 07:21:55.190 DEBUG [19527]: Closing database connection -- 07:21:55.190 SQL [19527]: pgsql_close() -- 09:49:36.313 INFO [19525]: COREGRADE is starting... -- 09:49:36.313 INFO [19525]: Version from config: 1.0 -- 09:49:36.313 DEBUG [19525]: Connecting to database... -- 09:49:36.313 DEBUG [19525]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:36.313 SQL [19525]: pgsql_db_connect() -- 09:49:36.318 DEBUG [19525]: Database connection successful -- 09:49:36.318 INFO [19525]: _SERVER found -- 09:49:36.318 INFO [19525]: REMOTE_ADDR = 10.0.0.15 -- 09:49:36.318 INFO [19525]: SERVER_NAME = oameye.works.coregrade.com -- 09:49:36.318 INFO [19525]: QUERY_STRING = -- 09:49:36.318 INFO [19525]: HTTP_X_FORWARDED_FOR = 89.96.152.188 -- 09:49:36.366 INFO [19525]: COREGRADE is stopping... -- 09:49:36.366 DEBUG [19525]: Closing database connection -- 09:49:36.366 SQL [19525]: pgsql_close() -- 12:42:06.791 INFO [19837]: COREGRADE is starting... -- 12:42:06.791 INFO [19837]: Version from config: 1.0 -- 12:42:06.791 DEBUG [19837]: Connecting to database... -- 12:42:06.791 DEBUG [19837]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:42:06.791 SQL [19837]: pgsql_db_connect() -- 12:42:06.796 DEBUG [19837]: Database connection successful -- 12:42:06.796 INFO [19837]: _SERVER found -- 12:42:06.796 INFO [19837]: REMOTE_ADDR = 10.0.0.15 -- 12:42:06.796 INFO [19837]: SERVER_NAME = oameye.works.coregrade.com -- 12:42:06.796 INFO [19837]: QUERY_STRING = -- 12:42:06.796 INFO [19837]: HTTP_X_FORWARDED_FOR = 218.60.56.122 -- 12:42:06.838 INFO [19837]: COREGRADE is stopping... -- 12:42:06.838 DEBUG [19837]: Closing database connection -- 12:42:06.838 SQL [19837]: pgsql_close() -- 12:42:12.122 INFO [20304]: COREGRADE is starting... -- 12:42:12.122 INFO [20304]: Version from config: 1.0 -- 12:42:12.122 DEBUG [20304]: Connecting to database... -- 12:42:12.122 DEBUG [20304]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:42:12.122 SQL [20304]: pgsql_db_connect() -- 12:42:12.127 DEBUG [20304]: Database connection successful -- 12:42:12.127 INFO [20304]: _SERVER found -- 12:42:12.127 INFO [20304]: REMOTE_ADDR = 10.0.0.15 -- 12:42:12.127 INFO [20304]: SERVER_NAME = oameye.works.coregrade.com -- 12:42:12.127 INFO [20304]: QUERY_STRING = /home.asp -- 12:42:12.127 INFO [20304]: HTTP_X_FORWARDED_FOR = 218.60.56.122 -- 12:42:12.139 INFO [20304]: COREGRADE is stopping... -- 12:42:12.139 DEBUG [20304]: Closing database connection -- 12:42:12.139 SQL [20304]: pgsql_close() -- 12:42:16.050 INFO [19839]: COREGRADE is starting... -- 12:42:16.050 INFO [19839]: Version from config: 1.0 -- 12:42:16.050 DEBUG [19839]: Connecting to database... -- 12:42:16.050 DEBUG [19839]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:42:16.050 SQL [19839]: pgsql_db_connect() -- 12:42:16.054 DEBUG [19839]: Database connection successful -- 12:42:16.054 INFO [19839]: _SERVER found -- 12:42:16.054 INFO [19839]: REMOTE_ADDR = 10.0.0.15 -- 12:42:16.054 INFO [19839]: SERVER_NAME = oameye.works.coregrade.com -- 12:42:16.054 INFO [19839]: QUERY_STRING = /login.cgi -- 12:42:16.054 INFO [19839]: HTTP_X_FORWARDED_FOR = 218.60.56.122 -- 12:42:16.067 INFO [19839]: COREGRADE is stopping... -- 12:42:16.067 DEBUG [19839]: Closing database connection -- 12:42:16.067 SQL [19839]: pgsql_close() -- 12:42:24.782 INFO [19840]: COREGRADE is starting... -- 12:42:24.782 INFO [19840]: Version from config: 1.0 -- 12:42:24.782 DEBUG [19840]: Connecting to database... -- 12:42:24.782 DEBUG [19840]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:42:24.782 SQL [19840]: pgsql_db_connect() -- 12:42:24.786 DEBUG [19840]: Database connection successful -- 12:42:24.786 INFO [19840]: _SERVER found -- 12:42:24.786 INFO [19840]: REMOTE_ADDR = 10.0.0.15 -- 12:42:24.786 INFO [19840]: SERVER_NAME = oameye.works.coregrade.com -- 12:42:24.786 INFO [19840]: QUERY_STRING = /dana-na/auth/url_default/welcome.cgi -- 12:42:24.786 INFO [19840]: HTTP_X_FORWARDED_FOR = 218.60.56.122 -- 12:42:24.800 INFO [19840]: COREGRADE is stopping... -- 12:42:24.800 DEBUG [19840]: Closing database connection -- 12:42:24.800 SQL [19840]: pgsql_close() -- 12:42:28.311 INFO [19840]: COREGRADE is starting... -- 12:42:28.311 INFO [19840]: Version from config: 1.0 -- 12:42:28.311 DEBUG [19840]: Connecting to database... -- 12:42:28.311 DEBUG [19840]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:42:28.311 SQL [19840]: pgsql_db_connect() -- 12:42:28.315 DEBUG [19840]: Database connection successful -- 12:42:28.315 INFO [19840]: _SERVER found -- 12:42:28.315 INFO [19840]: REMOTE_ADDR = 10.0.0.15 -- 12:42:28.315 INFO [19840]: SERVER_NAME = oameye.works.coregrade.com -- 12:42:28.315 INFO [19840]: QUERY_STRING = /remote/login -- 12:42:28.315 INFO [19840]: HTTP_X_FORWARDED_FOR = 218.60.56.122 -- 12:42:28.327 INFO [19840]: COREGRADE is stopping... -- 12:42:28.327 DEBUG [19840]: Closing database connection -- 12:42:28.327 SQL [19840]: pgsql_close() -- 12:42:32.616 INFO [19523]: COREGRADE is starting... -- 12:42:32.616 INFO [19523]: Version from config: 1.0 -- 12:42:32.616 DEBUG [19523]: Connecting to database... -- 12:42:32.616 DEBUG [19523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:42:32.616 SQL [19523]: pgsql_db_connect() -- 12:42:32.621 DEBUG [19523]: Database connection successful -- 12:42:32.621 INFO [19523]: _SERVER found -- 12:42:32.621 INFO [19523]: REMOTE_ADDR = 10.0.0.15 -- 12:42:32.621 INFO [19523]: SERVER_NAME = oameye.works.coregrade.com -- 12:42:32.621 INFO [19523]: QUERY_STRING = /index.asp -- 12:42:32.621 INFO [19523]: HTTP_X_FORWARDED_FOR = 218.60.56.122 -- 12:42:32.634 INFO [19523]: COREGRADE is stopping... -- 12:42:32.634 DEBUG [19523]: Closing database connection -- 12:42:32.634 SQL [19523]: pgsql_close() -- 13:53:29.462 INFO [19526]: COREGRADE is starting... -- 13:53:29.463 INFO [19526]: Version from config: 1.0 -- 13:53:29.463 DEBUG [19526]: Connecting to database... -- 13:53:29.463 DEBUG [19526]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:53:29.463 SQL [19526]: pgsql_db_connect() -- 13:53:29.467 DEBUG [19526]: Database connection successful -- 13:53:29.467 INFO [19526]: _SERVER found -- 13:53:29.467 INFO [19526]: REMOTE_ADDR = 10.0.0.15 -- 13:53:29.467 INFO [19526]: SERVER_NAME = oameye.works.coregrade.com -- 13:53:29.467 INFO [19526]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 13:53:29.467 INFO [19526]: QUERY_STRING = -- 13:53:29.467 INFO [19526]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:53:29.508 INFO [19526]: COREGRADE is stopping... -- 13:53:29.508 DEBUG [19526]: Closing database connection -- 13:53:29.508 SQL [19526]: pgsql_close() -- 13:53:29.913 INFO [19526]: COREGRADE is starting... -- 13:53:29.913 INFO [19526]: Version from config: 1.0 -- 13:53:29.913 DEBUG [19526]: Connecting to database... -- 13:53:29.913 DEBUG [19526]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:53:29.913 SQL [19526]: pgsql_db_connect() -- 13:53:29.917 DEBUG [19526]: Database connection successful -- 13:53:29.917 INFO [19526]: _SERVER found -- 13:53:29.917 INFO [19526]: REMOTE_ADDR = 10.0.0.15 -- 13:53:29.917 INFO [19526]: SERVER_NAME = oameye.works.coregrade.com -- 13:53:29.917 INFO [19526]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=8a1fsdslb7ch2016pq1653oqk1iaolr7 -- 13:53:29.917 INFO [19526]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:53:29.917 INFO [19526]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:53:29.929 INFO [19526]: COREGRADE is stopping... -- 13:53:29.929 DEBUG [19526]: Closing database connection -- 13:53:29.929 SQL [19526]: pgsql_close() -- 15:57:30.257 INFO [19527]: COREGRADE is starting... -- 15:57:30.257 INFO [19527]: Version from config: 1.0 -- 15:57:30.257 DEBUG [19527]: Connecting to database... -- 15:57:30.257 DEBUG [19527]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:30.258 SQL [19527]: pgsql_db_connect() -- 15:57:30.263 DEBUG [19527]: Database connection successful -- 15:57:30.263 INFO [19527]: _SERVER found -- 15:57:30.263 INFO [19527]: REMOTE_ADDR = 10.0.0.15 -- 15:57:30.263 INFO [19527]: SERVER_NAME = oameye.works.coregrade.com -- 15:57:30.263 INFO [19527]: QUERY_STRING = -- 15:57:30.263 INFO [19527]: HTTP_X_FORWARDED_FOR = 169.62.49.122 -- 15:57:30.301 INFO [19527]: COREGRADE is stopping... -- 15:57:30.301 DEBUG [19527]: Closing database connection -- 15:57:30.301 SQL [19527]: pgsql_close() -- 15:57:30.452 INFO [19525]: COREGRADE is starting... -- 15:57:30.453 INFO [19525]: Version from config: 1.0 -- 15:57:30.453 DEBUG [19525]: Connecting to database... -- 15:57:30.453 DEBUG [19525]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:30.453 SQL [19525]: pgsql_db_connect() -- 15:57:30.457 DEBUG [19525]: Database connection successful -- 15:57:30.457 INFO [19525]: _SERVER found -- 15:57:30.457 INFO [19525]: REMOTE_ADDR = 10.0.0.15 -- 15:57:30.457 INFO [19525]: SERVER_NAME = oameye.works.coregrade.com -- 15:57:30.457 INFO [19525]: QUERY_STRING = /home.asp -- 15:57:30.457 INFO [19525]: HTTP_X_FORWARDED_FOR = 169.62.49.122 -- 15:57:30.470 INFO [19525]: COREGRADE is stopping... -- 15:57:30.470 DEBUG [19525]: Closing database connection -- 15:57:30.470 SQL [19525]: pgsql_close() -- 15:57:30.666 INFO [19525]: COREGRADE is starting... -- 15:57:30.667 INFO [19525]: Version from config: 1.0 -- 15:57:30.667 DEBUG [19525]: Connecting to database... -- 15:57:30.667 DEBUG [19525]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:30.667 SQL [19525]: pgsql_db_connect() -- 15:57:30.671 DEBUG [19525]: Database connection successful -- 15:57:30.671 INFO [19525]: _SERVER found -- 15:57:30.671 INFO [19525]: REMOTE_ADDR = 10.0.0.15 -- 15:57:30.671 INFO [19525]: SERVER_NAME = oameye.works.coregrade.com -- 15:57:30.671 INFO [19525]: QUERY_STRING = /login.cgi -- 15:57:30.671 INFO [19525]: HTTP_X_FORWARDED_FOR = 169.62.49.122 -- 15:57:30.682 INFO [19525]: COREGRADE is stopping... -- 15:57:30.682 DEBUG [19525]: Closing database connection -- 15:57:30.682 SQL [19525]: pgsql_close() -- 15:57:30.989 INFO [19525]: COREGRADE is starting... -- 15:57:30.989 INFO [19525]: Version from config: 1.0 -- 15:57:30.989 DEBUG [19525]: Connecting to database... -- 15:57:30.989 DEBUG [19525]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:30.989 SQL [19525]: pgsql_db_connect() -- 15:57:30.993 DEBUG [19525]: Database connection successful -- 15:57:30.993 INFO [19525]: _SERVER found -- 15:57:30.993 INFO [19525]: REMOTE_ADDR = 10.0.0.15 -- 15:57:30.993 INFO [19525]: SERVER_NAME = oameye.works.coregrade.com -- 15:57:30.994 INFO [19525]: QUERY_STRING = /dana-na/auth/url_default/welcome.cgi -- 15:57:30.994 INFO [19525]: HTTP_X_FORWARDED_FOR = 169.62.49.122 -- 15:57:31.005 INFO [19525]: COREGRADE is stopping... -- 15:57:31.005 DEBUG [19525]: Closing database connection -- 15:57:31.005 SQL [19525]: pgsql_close() -- 15:57:31.134 INFO [19525]: COREGRADE is starting... -- 15:57:31.135 INFO [19525]: Version from config: 1.0 -- 15:57:31.135 DEBUG [19525]: Connecting to database... -- 15:57:31.135 DEBUG [19525]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:31.135 SQL [19525]: pgsql_db_connect() -- 15:57:31.139 DEBUG [19525]: Database connection successful -- 15:57:31.139 INFO [19525]: _SERVER found -- 15:57:31.139 INFO [19525]: REMOTE_ADDR = 10.0.0.15 -- 15:57:31.139 INFO [19525]: SERVER_NAME = oameye.works.coregrade.com -- 15:57:31.139 INFO [19525]: QUERY_STRING = /remote/login -- 15:57:31.139 INFO [19525]: HTTP_X_FORWARDED_FOR = 169.62.49.122 -- 15:57:31.150 INFO [19525]: COREGRADE is stopping... -- 15:57:31.150 DEBUG [19525]: Closing database connection -- 15:57:31.150 SQL [19525]: pgsql_close() -- 15:57:31.281 INFO [19525]: COREGRADE is starting... -- 15:57:31.281 INFO [19525]: Version from config: 1.0 -- 15:57:31.281 DEBUG [19525]: Connecting to database... -- 15:57:31.281 DEBUG [19525]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:31.281 SQL [19525]: pgsql_db_connect() -- 15:57:31.285 DEBUG [19525]: Database connection successful -- 15:57:31.285 INFO [19525]: _SERVER found -- 15:57:31.285 INFO [19525]: REMOTE_ADDR = 10.0.0.15 -- 15:57:31.285 INFO [19525]: SERVER_NAME = oameye.works.coregrade.com -- 15:57:31.285 INFO [19525]: QUERY_STRING = /index.asp -- 15:57:31.285 INFO [19525]: HTTP_X_FORWARDED_FOR = 169.62.49.122 -- 15:57:31.296 INFO [19525]: COREGRADE is stopping... -- 15:57:31.296 DEBUG [19525]: Closing database connection -- 15:57:31.296 SQL [19525]: pgsql_close() -- 16:22:49.597 INFO [19837]: COREGRADE is starting... -- 16:22:49.597 INFO [19837]: Version from config: 1.0 -- 16:22:49.597 DEBUG [19837]: Connecting to database... -- 16:22:49.597 DEBUG [19837]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:22:49.597 SQL [19837]: pgsql_db_connect() -- 16:22:49.602 DEBUG [19837]: Database connection successful -- 16:22:49.602 INFO [19837]: _SERVER found -- 16:22:49.602 INFO [19837]: REMOTE_ADDR = 10.0.0.15 -- 16:22:49.602 INFO [19837]: SERVER_NAME = oameye.works.coregrade.com -- 16:22:49.602 INFO [19837]: QUERY_STRING = -- 16:22:49.602 INFO [19837]: HTTP_X_FORWARDED_FOR = 115.124.120.219 -- 16:22:49.639 INFO [19837]: COREGRADE is stopping... -- 16:22:49.639 DEBUG [19837]: Closing database connection -- 16:22:49.640 SQL [19837]: pgsql_close() -- 16:22:51.761 INFO [19837]: COREGRADE is starting... -- 16:22:51.762 INFO [19837]: Version from config: 1.0 -- 16:22:51.762 DEBUG [19837]: Connecting to database... -- 16:22:51.762 DEBUG [19837]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:22:51.762 SQL [19837]: pgsql_db_connect() -- 16:22:51.766 DEBUG [19837]: Database connection successful -- 16:22:51.766 INFO [19837]: _SERVER found -- 16:22:51.766 INFO [19837]: REMOTE_ADDR = 10.0.0.15 -- 16:22:51.766 INFO [19837]: SERVER_NAME = oameye.works.coregrade.com -- 16:22:51.766 INFO [19837]: QUERY_STRING = /home.asp -- 16:22:51.766 INFO [19837]: HTTP_X_FORWARDED_FOR = 115.124.120.219 -- 16:22:51.777 INFO [19837]: COREGRADE is stopping... -- 16:22:51.777 DEBUG [19837]: Closing database connection -- 16:22:51.777 SQL [19837]: pgsql_close() -- 16:22:53.672 INFO [20304]: COREGRADE is starting... -- 16:22:53.672 INFO [20304]: Version from config: 1.0 -- 16:22:53.672 DEBUG [20304]: Connecting to database... -- 16:22:53.673 DEBUG [20304]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:22:53.673 SQL [20304]: pgsql_db_connect() -- 16:22:53.677 DEBUG [20304]: Database connection successful -- 16:22:53.677 INFO [20304]: _SERVER found -- 16:22:53.677 INFO [20304]: REMOTE_ADDR = 10.0.0.15 -- 16:22:53.677 INFO [20304]: SERVER_NAME = oameye.works.coregrade.com -- 16:22:53.677 INFO [20304]: QUERY_STRING = /login.cgi -- 16:22:53.677 INFO [20304]: HTTP_X_FORWARDED_FOR = 115.124.120.219 -- 16:22:53.689 INFO [20304]: COREGRADE is stopping... -- 16:22:53.689 DEBUG [20304]: Closing database connection -- 16:22:53.689 SQL [20304]: pgsql_close() -- 16:23:04.026 INFO [19524]: COREGRADE is starting... -- 16:23:04.026 INFO [19524]: Version from config: 1.0 -- 16:23:04.026 DEBUG [19524]: Connecting to database... -- 16:23:04.026 DEBUG [19524]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:04.026 SQL [19524]: pgsql_db_connect() -- 16:23:04.030 DEBUG [19524]: Database connection successful -- 16:23:04.030 INFO [19524]: _SERVER found -- 16:23:04.030 INFO [19524]: REMOTE_ADDR = 10.0.0.15 -- 16:23:04.030 INFO [19524]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:04.030 INFO [19524]: QUERY_STRING = /dana-na/auth/url_default/welcome.cgi -- 16:23:04.030 INFO [19524]: HTTP_X_FORWARDED_FOR = 115.124.120.219 -- 16:23:04.044 INFO [19524]: COREGRADE is stopping... -- 16:23:04.044 DEBUG [19524]: Closing database connection -- 16:23:04.044 SQL [19524]: pgsql_close() -- 16:23:10.912 INFO [19840]: COREGRADE is starting... -- 16:23:10.912 INFO [19840]: Version from config: 1.0 -- 16:23:10.912 DEBUG [19840]: Connecting to database... -- 16:23:10.912 DEBUG [19840]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:10.912 SQL [19840]: pgsql_db_connect() -- 16:23:10.916 DEBUG [19840]: Database connection successful -- 16:23:10.916 INFO [19840]: _SERVER found -- 16:23:10.916 INFO [19840]: REMOTE_ADDR = 10.0.0.15 -- 16:23:10.916 INFO [19840]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:10.916 INFO [19840]: QUERY_STRING = /remote/login -- 16:23:10.916 INFO [19840]: HTTP_X_FORWARDED_FOR = 115.124.120.219 -- 16:23:10.929 INFO [19840]: COREGRADE is stopping... -- 16:23:10.929 DEBUG [19840]: Closing database connection -- 16:23:10.929 SQL [19840]: pgsql_close() -- 16:23:12.729 INFO [19523]: COREGRADE is starting... -- 16:23:12.729 INFO [19523]: Version from config: 1.0 -- 16:23:12.729 DEBUG [19523]: Connecting to database... -- 16:23:12.729 DEBUG [19523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:23:12.729 SQL [19523]: pgsql_db_connect() -- 16:23:12.733 DEBUG [19523]: Database connection successful -- 16:23:12.733 INFO [19523]: _SERVER found -- 16:23:12.733 INFO [19523]: REMOTE_ADDR = 10.0.0.15 -- 16:23:12.733 INFO [19523]: SERVER_NAME = oameye.works.coregrade.com -- 16:23:12.733 INFO [19523]: QUERY_STRING = /index.asp -- 16:23:12.733 INFO [19523]: HTTP_X_FORWARDED_FOR = 115.124.120.219 -- 16:23:12.746 INFO [19523]: COREGRADE is stopping... -- 16:23:12.746 DEBUG [19523]: Closing database connection -- 16:23:12.746 SQL [19523]: pgsql_close() -- 21:08:47.988 INFO [19526]: COREGRADE is starting... -- 21:08:47.988 INFO [19526]: Version from config: 1.0 -- 21:08:47.988 DEBUG [19526]: Connecting to database... -- 21:08:47.988 DEBUG [19526]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:08:47.988 SQL [19526]: pgsql_db_connect() -- 21:08:47.993 DEBUG [19526]: Database connection successful -- 21:08:47.993 INFO [19526]: _SERVER found -- 21:08:47.993 INFO [19526]: REMOTE_ADDR = 10.0.0.15 -- 21:08:47.993 INFO [19526]: SERVER_NAME = oameye.works.coregrade.com -- 21:08:47.993 INFO [19526]: QUERY_STRING = -- 21:08:47.993 INFO [19526]: HTTP_X_FORWARDED_FOR = 132.145.175.90 -- 21:08:48.036 INFO [19526]: COREGRADE is stopping... -- 21:08:48.036 DEBUG [19526]: Closing database connection -- 21:08:48.036 SQL [19526]: pgsql_close() -- 21:08:48.231 INFO [19527]: COREGRADE is starting... -- 21:08:48.231 INFO [19527]: Version from config: 1.0 -- 21:08:48.231 DEBUG [19527]: Connecting to database... -- 21:08:48.231 DEBUG [19527]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:08:48.231 SQL [19527]: pgsql_db_connect() -- 21:08:48.235 DEBUG [19527]: Database connection successful -- 21:08:48.235 INFO [19527]: _SERVER found -- 21:08:48.235 INFO [19527]: REMOTE_ADDR = 10.0.0.15 -- 21:08:48.235 INFO [19527]: SERVER_NAME = oameye.works.coregrade.com -- 21:08:48.235 INFO [19527]: QUERY_STRING = /home.asp -- 21:08:48.235 INFO [19527]: HTTP_X_FORWARDED_FOR = 132.145.175.90 -- 21:08:48.249 INFO [19527]: COREGRADE is stopping... -- 21:08:48.249 DEBUG [19527]: Closing database connection -- 21:08:48.249 SQL [19527]: pgsql_close() -- 21:08:48.414 INFO [19525]: COREGRADE is starting... -- 21:08:48.415 INFO [19525]: Version from config: 1.0 -- 21:08:48.415 DEBUG [19525]: Connecting to database... -- 21:08:48.415 DEBUG [19525]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:08:48.415 SQL [19525]: pgsql_db_connect() -- 21:08:48.419 DEBUG [19525]: Database connection successful -- 21:08:48.419 INFO [19525]: _SERVER found -- 21:08:48.419 INFO [19525]: REMOTE_ADDR = 10.0.0.15 -- 21:08:48.419 INFO [19525]: SERVER_NAME = oameye.works.coregrade.com -- 21:08:48.419 INFO [19525]: QUERY_STRING = /login.cgi -- 21:08:48.419 INFO [19525]: HTTP_X_FORWARDED_FOR = 132.145.175.90 -- 21:08:48.432 INFO [19525]: COREGRADE is stopping... -- 21:08:48.432 DEBUG [19525]: Closing database connection -- 21:08:48.432 SQL [19525]: pgsql_close() -- 21:08:48.991 INFO [19837]: COREGRADE is starting... -- 21:08:48.992 INFO [19837]: Version from config: 1.0 -- 21:08:48.992 DEBUG [19837]: Connecting to database... -- 21:08:48.992 DEBUG [19837]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:08:48.992 SQL [19837]: pgsql_db_connect() -- 21:08:48.996 DEBUG [19837]: Database connection successful -- 21:08:48.996 INFO [19837]: _SERVER found -- 21:08:48.996 INFO [19837]: REMOTE_ADDR = 10.0.0.15 -- 21:08:48.996 INFO [19837]: SERVER_NAME = oameye.works.coregrade.com -- 21:08:48.996 INFO [19837]: QUERY_STRING = /dana-na/auth/url_default/welcome.cgi -- 21:08:48.996 INFO [19837]: HTTP_X_FORWARDED_FOR = 132.145.175.90 -- 21:08:49.010 INFO [19837]: COREGRADE is stopping... -- 21:08:49.010 DEBUG [19837]: Closing database connection -- 21:08:49.010 SQL [19837]: pgsql_close() -- 21:08:52.264 INFO [19837]: COREGRADE is starting... -- 21:08:52.264 INFO [19837]: Version from config: 1.0 -- 21:08:52.264 DEBUG [19837]: Connecting to database... -- 21:08:52.264 DEBUG [19837]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:08:52.264 SQL [19837]: pgsql_db_connect() -- 21:08:52.268 DEBUG [19837]: Database connection successful -- 21:08:52.268 INFO [19837]: _SERVER found -- 21:08:52.268 INFO [19837]: REMOTE_ADDR = 10.0.0.15 -- 21:08:52.268 INFO [19837]: SERVER_NAME = oameye.works.coregrade.com -- 21:08:52.268 INFO [19837]: QUERY_STRING = /remote/login -- 21:08:52.268 INFO [19837]: HTTP_X_FORWARDED_FOR = 132.145.175.90 -- 21:08:52.280 INFO [19837]: COREGRADE is stopping... -- 21:08:52.280 DEBUG [19837]: Closing database connection -- 21:08:52.280 SQL [19837]: pgsql_close() -- 21:08:52.424 INFO [19837]: COREGRADE is starting... -- 21:08:52.425 INFO [19837]: Version from config: 1.0 -- 21:08:52.425 DEBUG [19837]: Connecting to database... -- 21:08:52.425 DEBUG [19837]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:08:52.425 SQL [19837]: pgsql_db_connect() -- 21:08:52.429 DEBUG [19837]: Database connection successful -- 21:08:52.429 INFO [19837]: _SERVER found -- 21:08:52.429 INFO [19837]: REMOTE_ADDR = 10.0.0.15 -- 21:08:52.429 INFO [19837]: SERVER_NAME = oameye.works.coregrade.com -- 21:08:52.429 INFO [19837]: QUERY_STRING = /index.asp -- 21:08:52.429 INFO [19837]: HTTP_X_FORWARDED_FOR = 132.145.175.90 -- 21:08:52.440 INFO [19837]: COREGRADE is stopping... -- 21:08:52.440 DEBUG [19837]: Closing database connection -- 21:08:52.440 SQL [19837]: pgsql_close() -- 22:17:36.350 INFO [20304]: COREGRADE is starting... -- 22:17:36.351 INFO [20304]: Version from config: 1.0 -- 22:17:36.351 DEBUG [20304]: Connecting to database... -- 22:17:36.351 DEBUG [20304]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:17:36.351 SQL [20304]: pgsql_db_connect() -- 22:17:36.355 DEBUG [20304]: Database connection successful -- 22:17:36.355 INFO [20304]: _SERVER found -- 22:17:36.355 INFO [20304]: REMOTE_ADDR = 10.0.0.15 -- 22:17:36.355 INFO [20304]: SERVER_NAME = oameye.works.coregrade.com -- 22:17:36.355 INFO [20304]: QUERY_STRING = -- 22:17:36.355 INFO [20304]: HTTP_X_FORWARDED_FOR = 181.15.243.250 -- 22:17:36.391 INFO [20304]: COREGRADE is stopping... -- 22:17:36.391 DEBUG [20304]: Closing database connection -- 22:17:36.391 SQL [20304]: pgsql_close() -- 00:12:01.922 INFO [19839]: COREGRADE is starting... -- 00:12:01.923 INFO [19839]: Version from config: 1.0 -- 00:12:01.923 DEBUG [19839]: Connecting to database... -- 00:12:01.923 DEBUG [19839]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:12:01.923 SQL [19839]: pgsql_db_connect() -- 00:12:01.928 DEBUG [19839]: Database connection successful -- 00:12:01.928 INFO [19839]: _SERVER found -- 00:12:01.928 INFO [19839]: REMOTE_ADDR = 10.0.0.15 -- 00:12:01.928 INFO [19839]: SERVER_NAME = oameye.works.coregrade.com -- 00:12:01.928 INFO [19839]: QUERY_STRING = /.well-known/acme-challenge/jtxXcmpxuZJY8a3zzTPjYNuuPDZP-2aDrTJB7fF0RfM -- 00:12:01.928 INFO [19839]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 00:12:01.943 INFO [19839]: COREGRADE is stopping... -- 00:12:01.944 DEBUG [19839]: Closing database connection -- 00:12:01.944 SQL [19839]: pgsql_close() -- 00:12:02.070 INFO [19840]: COREGRADE is starting... -- 00:12:02.071 INFO [19840]: Version from config: 1.0 -- 00:12:02.071 DEBUG [19840]: Connecting to database... -- 00:12:02.071 DEBUG [19840]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:12:02.071 SQL [19840]: pgsql_db_connect() -- 00:12:02.094 INFO [19523]: COREGRADE is starting... -- 00:12:02.094 INFO [19523]: Version from config: 1.0 -- 00:12:02.094 DEBUG [19523]: Connecting to database... -- 00:12:02.094 DEBUG [19523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:12:02.094 SQL [19523]: pgsql_db_connect() -- 00:12:02.075 DEBUG [19840]: Database connection successful -- 00:12:02.075 INFO [19840]: _SERVER found -- 00:12:02.075 INFO [19840]: REMOTE_ADDR = 10.0.0.15 -- 00:12:02.075 INFO [19840]: SERVER_NAME = oameye.works.coregrade.com -- 00:12:02.075 INFO [19840]: QUERY_STRING = /.well-known/acme-challenge/jtxXcmpxuZJY8a3zzTPjYNuuPDZP-2aDrTJB7fF0RfM -- 00:12:02.075 INFO [19840]: HTTP_X_FORWARDED_FOR = 34.222.229.130 -- 00:12:02.121 INFO [19840]: COREGRADE is stopping... -- 00:12:02.121 DEBUG [19840]: Closing database connection -- 00:12:02.121 SQL [19840]: pgsql_close() -- 00:12:02.106 DEBUG [19523]: Database connection successful -- 00:12:02.106 INFO [19523]: _SERVER found -- 00:12:02.106 INFO [19523]: REMOTE_ADDR = 10.0.0.15 -- 00:12:02.106 INFO [19523]: SERVER_NAME = oameye.works.coregrade.com -- 00:12:02.106 INFO [19523]: QUERY_STRING = /.well-known/acme-challenge/jtxXcmpxuZJY8a3zzTPjYNuuPDZP-2aDrTJB7fF0RfM -- 00:12:02.106 INFO [19523]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 00:12:02.130 INFO [19523]: COREGRADE is stopping... -- 00:12:02.130 DEBUG [19523]: Closing database connection -- 00:12:02.130 SQL [19523]: pgsql_close() -- 00:44:27.508 INFO [20304]: COREGRADE is starting... -- 00:44:27.508 INFO [20304]: Version from config: 1.0 -- 00:44:27.508 DEBUG [20304]: Connecting to database... -- 00:44:27.508 DEBUG [20304]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:44:27.508 SQL [20304]: pgsql_db_connect() -- 00:44:27.513 DEBUG [20304]: Database connection successful -- 00:44:27.513 INFO [20304]: _SERVER found -- 00:44:27.513 INFO [20304]: REMOTE_ADDR = 10.0.0.15 -- 00:44:27.513 INFO [20304]: SERVER_NAME = oameye.works.coregrade.com -- 00:44:27.513 INFO [20304]: QUERY_STRING = -- 00:44:27.513 INFO [20304]: HTTP_X_FORWARDED_FOR = 198.108.66.240 -- 00:44:27.550 INFO [20304]: COREGRADE is stopping... -- 00:44:27.550 DEBUG [20304]: Closing database connection -- 00:44:27.550 SQL [20304]: pgsql_close() -- 03:49:43.684 INFO [27404]: COREGRADE is starting... -- 03:49:43.685 INFO [27404]: Version from config: 1.0 -- 03:49:43.685 DEBUG [27404]: Connecting to database... -- 03:49:43.685 DEBUG [27404]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:49:43.685 SQL [27404]: pgsql_db_connect() -- 03:49:43.689 DEBUG [27404]: Database connection successful -- 03:49:43.689 INFO [27404]: _SERVER found -- 03:49:43.689 INFO [27404]: REMOTE_ADDR = 10.0.0.15 -- 03:49:43.689 INFO [27404]: SERVER_NAME = oameye.works.coregrade.com -- 03:49:43.689 INFO [27404]: QUERY_STRING = -- 03:49:43.689 INFO [27404]: HTTP_X_FORWARDED_FOR = 128.14.133.58 -- 03:49:43.739 INFO [27404]: COREGRADE is stopping... -- 03:49:43.740 DEBUG [27404]: Closing database connection -- 03:49:43.740 SQL [27404]: pgsql_close() -- 04:01:10.411 INFO [27405]: COREGRADE is starting... -- 04:01:10.411 INFO [27405]: Version from config: 1.0 -- 04:01:10.411 DEBUG [27405]: Connecting to database... -- 04:01:10.411 DEBUG [27405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:01:10.411 SQL [27405]: pgsql_db_connect() -- 04:01:10.416 DEBUG [27405]: Database connection successful -- 04:01:10.416 INFO [27405]: _SERVER found -- 04:01:10.416 INFO [27405]: REMOTE_ADDR = 10.0.0.15 -- 04:01:10.416 INFO [27405]: SERVER_NAME = oameye.works.coregrade.com -- 04:01:10.416 INFO [27405]: QUERY_STRING = -- 04:01:10.416 INFO [27405]: HTTP_X_FORWARDED_FOR = 65.151.37.49 -- 04:01:10.463 INFO [27405]: COREGRADE is stopping... -- 04:01:10.463 DEBUG [27405]: Closing database connection -- 04:01:10.463 SQL [27405]: pgsql_close() -- 04:59:23.786 INFO [27406]: COREGRADE is starting... -- 04:59:23.786 INFO [27406]: Version from config: 1.0 -- 04:59:23.786 DEBUG [27406]: Connecting to database... -- 04:59:23.786 DEBUG [27406]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:59:23.786 SQL [27406]: pgsql_db_connect() -- 04:59:23.792 DEBUG [27406]: Database connection successful -- 04:59:23.792 INFO [27406]: _SERVER found -- 04:59:23.792 INFO [27406]: REMOTE_ADDR = 10.0.0.15 -- 04:59:23.792 INFO [27406]: SERVER_NAME = oameye.works.coregrade.com -- 04:59:23.792 INFO [27406]: QUERY_STRING = -- 04:59:23.792 INFO [27406]: HTTP_X_FORWARDED_FOR = 103.11.117.116 -- 04:59:23.842 INFO [27406]: COREGRADE is stopping... -- 04:59:23.842 DEBUG [27406]: Closing database connection -- 04:59:23.842 SQL [27406]: pgsql_close() -- 08:52:07.141 INFO [27407]: COREGRADE is starting... -- 08:52:07.141 INFO [27407]: Version from config: 1.0 -- 08:52:07.141 DEBUG [27407]: Connecting to database... -- 08:52:07.141 DEBUG [27407]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:52:07.141 SQL [27407]: pgsql_db_connect() -- 08:52:07.146 DEBUG [27407]: Database connection successful -- 08:52:07.146 INFO [27407]: _SERVER found -- 08:52:07.146 INFO [27407]: REMOTE_ADDR = 10.0.0.15 -- 08:52:07.146 INFO [27407]: SERVER_NAME = oameye.works.coregrade.com -- 08:52:07.146 INFO [27407]: QUERY_STRING = /TP/public/index.php -- 08:52:07.146 INFO [27407]: HTTP_X_FORWARDED_FOR = 114.215.106.115 -- 08:52:07.163 INFO [27407]: COREGRADE is stopping... -- 08:52:07.163 DEBUG [27407]: Closing database connection -- 08:52:07.163 SQL [27407]: pgsql_close() -- 08:52:09.241 INFO [27408]: COREGRADE is starting... -- 08:52:09.242 INFO [27408]: Version from config: 1.0 -- 08:52:09.242 DEBUG [27408]: Connecting to database... -- 08:52:09.242 DEBUG [27408]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:52:09.242 SQL [27408]: pgsql_db_connect() -- 08:52:09.246 DEBUG [27408]: Database connection successful -- 08:52:09.246 INFO [27408]: _SERVER found -- 08:52:09.246 INFO [27408]: REMOTE_ADDR = 10.0.0.15 -- 08:52:09.246 INFO [27408]: SERVER_NAME = oameye.works.coregrade.com -- 08:52:09.246 INFO [27408]: QUERY_STRING = /TP/index.php -- 08:52:09.246 INFO [27408]: HTTP_X_FORWARDED_FOR = 114.215.106.115 -- 08:52:09.262 INFO [27408]: COREGRADE is stopping... -- 08:52:09.262 DEBUG [27408]: Closing database connection -- 08:52:09.262 SQL [27408]: pgsql_close() -- 08:52:11.766 INFO [27517]: COREGRADE is starting... -- 08:52:11.767 INFO [27517]: Version from config: 1.0 -- 08:52:11.767 DEBUG [27517]: Connecting to database... -- 08:52:11.767 DEBUG [27517]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:52:11.767 SQL [27517]: pgsql_db_connect() -- 08:52:11.772 DEBUG [27517]: Database connection successful -- 08:52:11.772 INFO [27517]: _SERVER found -- 08:52:11.772 INFO [27517]: REMOTE_ADDR = 10.0.0.15 -- 08:52:11.772 INFO [27517]: SERVER_NAME = oameye.works.coregrade.com -- 08:52:11.772 INFO [27517]: QUERY_STRING = /thinkphp/html/public/index.php -- 08:52:11.772 INFO [27517]: HTTP_X_FORWARDED_FOR = 114.215.106.115 -- 08:52:11.789 INFO [27517]: COREGRADE is stopping... -- 08:52:11.789 DEBUG [27517]: Closing database connection -- 08:52:11.789 SQL [27517]: pgsql_close() -- 08:52:13.762 INFO [27517]: COREGRADE is starting... -- 08:52:13.762 INFO [27517]: Version from config: 1.0 -- 08:52:13.762 DEBUG [27517]: Connecting to database... -- 08:52:13.762 DEBUG [27517]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:52:13.762 SQL [27517]: pgsql_db_connect() -- 08:52:13.767 DEBUG [27517]: Database connection successful -- 08:52:13.767 INFO [27517]: _SERVER found -- 08:52:13.767 INFO [27517]: REMOTE_ADDR = 10.0.0.15 -- 08:52:13.767 INFO [27517]: SERVER_NAME = oameye.works.coregrade.com -- 08:52:13.767 INFO [27517]: QUERY_STRING = /html/public/index.php -- 08:52:13.767 INFO [27517]: HTTP_X_FORWARDED_FOR = 114.215.106.115 -- 08:52:13.778 INFO [27517]: COREGRADE is stopping... -- 08:52:13.778 DEBUG [27517]: Closing database connection -- 08:52:13.778 SQL [27517]: pgsql_close() -- 08:52:15.751 INFO [27517]: COREGRADE is starting... -- 08:52:15.751 INFO [27517]: Version from config: 1.0 -- 08:52:15.751 DEBUG [27517]: Connecting to database... -- 08:52:15.751 DEBUG [27517]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:52:15.751 SQL [27517]: pgsql_db_connect() -- 08:52:15.756 DEBUG [27517]: Database connection successful -- 08:52:15.756 INFO [27517]: _SERVER found -- 08:52:15.756 INFO [27517]: REMOTE_ADDR = 10.0.0.15 -- 08:52:15.756 INFO [27517]: SERVER_NAME = oameye.works.coregrade.com -- 08:52:15.756 INFO [27517]: QUERY_STRING = /public/index.php -- 08:52:15.756 INFO [27517]: HTTP_X_FORWARDED_FOR = 114.215.106.115 -- 08:52:15.767 INFO [27517]: COREGRADE is stopping... -- 08:52:15.767 DEBUG [27517]: Closing database connection -- 08:52:15.767 SQL [27517]: pgsql_close() -- 08:52:17.859 INFO [27517]: COREGRADE is starting... -- 08:52:17.859 INFO [27517]: Version from config: 1.0 -- 08:52:17.859 DEBUG [27517]: Connecting to database... -- 08:52:17.859 DEBUG [27517]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:52:17.859 SQL [27517]: pgsql_db_connect() -- 08:52:17.863 DEBUG [27517]: Database connection successful -- 08:52:17.863 INFO [27517]: _SERVER found -- 08:52:17.863 INFO [27517]: REMOTE_ADDR = 10.0.0.15 -- 08:52:17.863 INFO [27517]: SERVER_NAME = oameye.works.coregrade.com -- 08:52:17.863 INFO [27517]: QUERY_STRING = /TP/html/public/index.php -- 08:52:17.863 INFO [27517]: HTTP_X_FORWARDED_FOR = 114.215.106.115 -- 08:52:17.874 INFO [27517]: COREGRADE is stopping... -- 08:52:17.874 DEBUG [27517]: Closing database connection -- 08:52:17.874 SQL [27517]: pgsql_close() -- 08:52:20.020 INFO [27517]: COREGRADE is starting... -- 08:52:20.020 INFO [27517]: Version from config: 1.0 -- 08:52:20.020 DEBUG [27517]: Connecting to database... -- 08:52:20.020 DEBUG [27517]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:52:20.020 SQL [27517]: pgsql_db_connect() -- 08:52:20.025 DEBUG [27517]: Database connection successful -- 08:52:20.025 INFO [27517]: _SERVER found -- 08:52:20.025 INFO [27517]: REMOTE_ADDR = 10.0.0.15 -- 08:52:20.025 INFO [27517]: SERVER_NAME = oameye.works.coregrade.com -- 08:52:20.025 INFO [27517]: QUERY_STRING = /elrekt.php -- 08:52:20.025 INFO [27517]: HTTP_X_FORWARDED_FOR = 114.215.106.115 -- 08:52:20.036 INFO [27517]: COREGRADE is stopping... -- 08:52:20.036 DEBUG [27517]: Closing database connection -- 08:52:20.036 SQL [27517]: pgsql_close() -- 08:52:22.759 INFO [27517]: COREGRADE is starting... -- 08:52:22.759 INFO [27517]: Version from config: 1.0 -- 08:52:22.759 DEBUG [27517]: Connecting to database... -- 08:52:22.759 DEBUG [27517]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:52:22.759 SQL [27517]: pgsql_db_connect() -- 08:52:22.764 DEBUG [27517]: Database connection successful -- 08:52:22.764 INFO [27517]: _SERVER found -- 08:52:22.764 INFO [27517]: REMOTE_ADDR = 10.0.0.15 -- 08:52:22.764 INFO [27517]: SERVER_NAME = oameye.works.coregrade.com -- 08:52:22.764 INFO [27517]: QUERY_STRING = -- 08:52:22.764 INFO [27517]: HTTP_X_FORWARDED_FOR = 114.215.106.115 -- 08:52:22.806 INFO [27517]: COREGRADE is stopping... -- 08:52:22.806 DEBUG [27517]: Closing database connection -- 08:52:22.806 SQL [27517]: pgsql_close() -- 08:52:25.901 INFO [27404]: COREGRADE is starting... -- 08:52:25.901 INFO [27404]: Version from config: 1.0 -- 08:52:25.901 DEBUG [27404]: Connecting to database... -- 08:52:25.901 DEBUG [27404]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:52:25.901 SQL [27404]: pgsql_db_connect() -- 08:52:25.905 DEBUG [27404]: Database connection successful -- 08:52:25.905 INFO [27404]: _SERVER found -- 08:52:25.905 INFO [27404]: REMOTE_ADDR = 10.0.0.15 -- 08:52:25.905 INFO [27404]: SERVER_NAME = oameye.works.coregrade.com -- 08:52:25.905 INFO [27404]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 08:52:25.905 INFO [27404]: HTTP_X_FORWARDED_FOR = 114.215.106.115 -- 08:52:25.942 INFO [27404]: COREGRADE is stopping... -- 08:52:25.942 DEBUG [27404]: Closing database connection -- 08:52:25.942 SQL [27404]: pgsql_close() -- 08:52:29.054 INFO [27405]: COREGRADE is starting... -- 08:52:29.055 INFO [27405]: Version from config: 1.0 -- 08:52:29.055 DEBUG [27405]: Connecting to database... -- 08:52:29.055 DEBUG [27405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:52:29.055 SQL [27405]: pgsql_db_connect() -- 08:52:29.059 DEBUG [27405]: Database connection successful -- 08:52:29.059 INFO [27405]: _SERVER found -- 08:52:29.059 INFO [27405]: REMOTE_ADDR = 10.0.0.15 -- 08:52:29.059 INFO [27405]: SERVER_NAME = oameye.works.coregrade.com -- 08:52:29.059 INFO [27405]: QUERY_STRING = s=captcha -- 08:52:29.059 INFO [27405]: HTTP_X_FORWARDED_FOR = 114.215.106.115 -- 08:52:29.094 INFO [27405]: COREGRADE is stopping... -- 08:52:29.094 DEBUG [27405]: Closing database connection -- 08:52:29.094 SQL [27405]: pgsql_close() -- 08:52:30.913 INFO [27404]: COREGRADE is starting... -- 08:52:30.913 INFO [27404]: Version from config: 1.0 -- 08:52:30.913 DEBUG [27404]: Connecting to database... -- 08:52:30.913 DEBUG [27404]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:52:30.913 SQL [27404]: pgsql_db_connect() -- 08:52:30.917 DEBUG [27404]: Database connection successful -- 08:52:30.917 INFO [27404]: _SERVER found -- 08:52:30.917 INFO [27404]: REMOTE_ADDR = 10.0.0.15 -- 08:52:30.917 INFO [27404]: SERVER_NAME = oameye.works.coregrade.com -- 08:52:30.917 INFO [27404]: QUERY_STRING = -- 08:52:30.917 INFO [27404]: HTTP_X_FORWARDED_FOR = 114.215.106.115 -- 08:52:30.948 INFO [27404]: COREGRADE is stopping... -- 08:52:30.948 DEBUG [27404]: Closing database connection -- 08:52:30.948 SQL [27404]: pgsql_close() -- 10:10:35.549 INFO [27406]: COREGRADE is starting... -- 10:10:35.550 INFO [27406]: Version from config: 1.0 -- 10:10:35.550 DEBUG [27406]: Connecting to database... -- 10:10:35.550 DEBUG [27406]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:10:35.550 SQL [27406]: pgsql_db_connect() -- 10:10:35.555 DEBUG [27406]: Database connection successful -- 10:10:35.555 INFO [27406]: _SERVER found -- 10:10:35.555 INFO [27406]: REMOTE_ADDR = 10.0.0.15 -- 10:10:35.555 INFO [27406]: SERVER_NAME = oameye.works.coregrade.com -- 10:10:35.555 INFO [27406]: QUERY_STRING = -- 10:10:35.555 INFO [27406]: HTTP_X_FORWARDED_FOR = 34.216.173.136 -- 10:10:35.593 INFO [27406]: COREGRADE is stopping... -- 10:10:35.593 DEBUG [27406]: Closing database connection -- 10:10:35.594 SQL [27406]: pgsql_close() -- 12:36:46.626 INFO [28789]: COREGRADE is starting... -- 12:36:46.626 INFO [28789]: Version from config: 1.0 -- 12:36:46.626 DEBUG [28789]: Connecting to database... -- 12:36:46.626 DEBUG [28789]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:36:46.626 SQL [28789]: pgsql_db_connect() -- 12:36:46.631 DEBUG [28789]: Database connection successful -- 12:36:46.631 INFO [28789]: _SERVER found -- 12:36:46.631 INFO [28789]: REMOTE_ADDR = 10.0.0.15 -- 12:36:46.631 INFO [28789]: SERVER_NAME = oameye.works.coregrade.com -- 12:36:46.631 INFO [28789]: QUERY_STRING = /robots.txt -- 12:36:46.631 INFO [28789]: HTTP_X_FORWARDED_FOR = 66.249.64.180 -- 12:36:46.649 INFO [28789]: COREGRADE is stopping... -- 12:36:46.649 DEBUG [28789]: Closing database connection -- 12:36:46.649 SQL [28789]: pgsql_close() -- 12:36:46.680 INFO [28789]: COREGRADE is starting... -- 12:36:46.681 INFO [28789]: Version from config: 1.0 -- 12:36:46.681 DEBUG [28789]: Connecting to database... -- 12:36:46.681 DEBUG [28789]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:36:46.681 SQL [28789]: pgsql_db_connect() -- 12:36:46.685 DEBUG [28789]: Database connection successful -- 12:36:46.685 INFO [28789]: _SERVER found -- 12:36:46.685 INFO [28789]: REMOTE_ADDR = 10.0.0.15 -- 12:36:46.685 INFO [28789]: SERVER_NAME = oameye.works.coregrade.com -- 12:36:46.685 INFO [28789]: QUERY_STRING = -- 12:36:46.685 INFO [28789]: HTTP_X_FORWARDED_FOR = 66.249.64.180 -- 12:36:46.729 INFO [28789]: COREGRADE is stopping... -- 12:36:46.729 DEBUG [28789]: Closing database connection -- 12:36:46.729 SQL [28789]: pgsql_close() -- 12:37:54.194 INFO [27407]: COREGRADE is starting... -- 12:37:54.194 INFO [27407]: Version from config: 1.0 -- 12:37:54.194 DEBUG [27407]: Connecting to database... -- 12:37:54.194 DEBUG [27407]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:37:54.194 SQL [27407]: pgsql_db_connect() -- 12:37:54.198 DEBUG [27407]: Database connection successful -- 12:37:54.198 INFO [27407]: _SERVER found -- 12:37:54.198 INFO [27407]: REMOTE_ADDR = 10.0.0.15 -- 12:37:54.198 INFO [27407]: SERVER_NAME = oameye.works.coregrade.com -- 12:37:54.198 INFO [27407]: QUERY_STRING = /favicon.ico -- 12:37:54.198 INFO [27407]: HTTP_X_FORWARDED_FOR = 66.249.64.180 -- 12:37:54.212 INFO [27407]: COREGRADE is stopping... -- 12:37:54.212 DEBUG [27407]: Closing database connection -- 12:37:54.212 SQL [27407]: pgsql_close() -- 13:36:47.815 INFO [27408]: COREGRADE is starting... -- 13:36:47.816 INFO [27408]: Version from config: 1.0 -- 13:36:47.816 DEBUG [27408]: Connecting to database... -- 13:36:47.816 DEBUG [27408]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:36:47.816 SQL [27408]: pgsql_db_connect() -- 13:36:47.821 DEBUG [27408]: Database connection successful -- 13:36:47.821 INFO [27408]: _SERVER found -- 13:36:47.821 INFO [27408]: REMOTE_ADDR = 10.0.0.15 -- 13:36:47.821 INFO [27408]: SERVER_NAME = oameye.works.coregrade.com -- 13:36:47.821 INFO [27408]: QUERY_STRING = -- 13:36:47.821 INFO [27408]: HTTP_X_FORWARDED_FOR = 66.249.64.182 -- 13:36:47.870 INFO [27408]: COREGRADE is stopping... -- 13:36:47.870 DEBUG [27408]: Closing database connection -- 13:36:47.870 SQL [27408]: pgsql_close() -- 13:37:30.080 INFO [27517]: COREGRADE is starting... -- 13:37:30.080 INFO [27517]: Version from config: 1.0 -- 13:37:30.080 DEBUG [27517]: Connecting to database... -- 13:37:30.080 DEBUG [27517]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:37:30.080 SQL [27517]: pgsql_db_connect() -- 13:37:30.085 DEBUG [27517]: Database connection successful -- 13:37:30.085 INFO [27517]: _SERVER found -- 13:37:30.085 INFO [27517]: REMOTE_ADDR = 10.0.0.15 -- 13:37:30.085 INFO [27517]: SERVER_NAME = oameye.works.coregrade.com -- 13:37:30.085 INFO [27517]: QUERY_STRING = /favicon.ico -- 13:37:30.085 INFO [27517]: HTTP_X_FORWARDED_FOR = 66.249.64.180 -- 13:37:30.098 INFO [27517]: COREGRADE is stopping... -- 13:37:30.098 DEBUG [27517]: Closing database connection -- 13:37:30.098 SQL [27517]: pgsql_close() -- 16:29:47.154 INFO [27405]: COREGRADE is starting... -- 16:29:47.155 INFO [27405]: Version from config: 1.0 -- 16:29:47.155 DEBUG [27405]: Connecting to database... -- 16:29:47.155 DEBUG [27405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:29:47.155 SQL [27405]: pgsql_db_connect() -- 16:29:47.159 DEBUG [27405]: Database connection successful -- 16:29:47.159 INFO [27405]: _SERVER found -- 16:29:47.159 INFO [27405]: REMOTE_ADDR = 10.0.0.15 -- 16:29:47.159 INFO [27405]: SERVER_NAME = oameye.works.coregrade.com -- 16:29:47.159 INFO [27405]: HTTP_COOKIE = _ga=GA1.2.1073336077.1587056389 -- 16:29:47.159 INFO [27405]: QUERY_STRING = -- 16:29:47.159 INFO [27405]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 16:29:47.200 INFO [27405]: COREGRADE is stopping... -- 16:29:47.200 DEBUG [27405]: Closing database connection -- 16:29:47.200 SQL [27405]: pgsql_close() -- 00:22:11.108 INFO [27404]: COREGRADE is starting... -- 00:22:11.108 INFO [27404]: Version from config: 1.0 -- 00:22:11.108 DEBUG [27404]: Connecting to database... -- 00:22:11.108 DEBUG [27404]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:22:11.108 SQL [27404]: pgsql_db_connect() -- 00:22:11.113 DEBUG [27404]: Database connection successful -- 00:22:11.113 INFO [27404]: _SERVER found -- 00:22:11.113 INFO [27404]: REMOTE_ADDR = 10.0.0.15 -- 00:22:11.113 INFO [27404]: SERVER_NAME = oameye.works.coregrade.com -- 00:22:11.113 INFO [27404]: QUERY_STRING = -- 00:22:11.113 INFO [27404]: HTTP_X_FORWARDED_FOR = 190.202.89.69 -- 00:22:11.153 INFO [27404]: COREGRADE is stopping... -- 00:22:11.153 DEBUG [27404]: Closing database connection -- 00:22:11.153 SQL [27404]: pgsql_close() -- 00:22:15.267 INFO [27404]: COREGRADE is starting... -- 00:22:15.267 INFO [27404]: Version from config: 1.0 -- 00:22:15.267 DEBUG [27404]: Connecting to database... -- 00:22:15.268 DEBUG [27404]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:22:15.268 SQL [27404]: pgsql_db_connect() -- 00:22:15.272 DEBUG [27404]: Database connection successful -- 00:22:15.272 INFO [27404]: _SERVER found -- 00:22:15.272 INFO [27404]: REMOTE_ADDR = 10.0.0.15 -- 00:22:15.272 INFO [27404]: SERVER_NAME = oameye.works.coregrade.com -- 00:22:15.272 INFO [27404]: QUERY_STRING = /home.asp -- 00:22:15.272 INFO [27404]: HTTP_X_FORWARDED_FOR = 190.202.89.69 -- 00:22:15.283 INFO [27404]: COREGRADE is stopping... -- 00:22:15.284 DEBUG [27404]: Closing database connection -- 00:22:15.284 SQL [27404]: pgsql_close() -- 00:22:17.703 INFO [27404]: COREGRADE is starting... -- 00:22:17.704 INFO [27404]: Version from config: 1.0 -- 00:22:17.704 DEBUG [27404]: Connecting to database... -- 00:22:17.704 DEBUG [27404]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:22:17.704 SQL [27404]: pgsql_db_connect() -- 00:22:17.708 DEBUG [27404]: Database connection successful -- 00:22:17.708 INFO [27404]: _SERVER found -- 00:22:17.708 INFO [27404]: REMOTE_ADDR = 10.0.0.15 -- 00:22:17.708 INFO [27404]: SERVER_NAME = oameye.works.coregrade.com -- 00:22:17.708 INFO [27404]: QUERY_STRING = /login.cgi -- 00:22:17.708 INFO [27404]: HTTP_X_FORWARDED_FOR = 190.202.89.69 -- 00:22:17.719 INFO [27404]: COREGRADE is stopping... -- 00:22:17.719 DEBUG [27404]: Closing database connection -- 00:22:17.719 SQL [27404]: pgsql_close() -- 00:22:22.906 INFO [27404]: COREGRADE is starting... -- 00:22:22.906 INFO [27404]: Version from config: 1.0 -- 00:22:22.906 DEBUG [27404]: Connecting to database... -- 00:22:22.906 DEBUG [27404]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:22:22.906 SQL [27404]: pgsql_db_connect() -- 00:22:22.910 DEBUG [27404]: Database connection successful -- 00:22:22.910 INFO [27404]: _SERVER found -- 00:22:22.910 INFO [27404]: REMOTE_ADDR = 10.0.0.15 -- 00:22:22.910 INFO [27404]: SERVER_NAME = oameye.works.coregrade.com -- 00:22:22.910 INFO [27404]: QUERY_STRING = /dana-na/auth/url_default/welcome.cgi -- 00:22:22.910 INFO [27404]: HTTP_X_FORWARDED_FOR = 190.202.89.69 -- 00:22:22.922 INFO [27404]: COREGRADE is stopping... -- 00:22:22.922 DEBUG [27404]: Closing database connection -- 00:22:22.922 SQL [27404]: pgsql_close() -- 00:22:27.370 INFO [27404]: COREGRADE is starting... -- 00:22:27.371 INFO [27404]: Version from config: 1.0 -- 00:22:27.371 DEBUG [27404]: Connecting to database... -- 00:22:27.371 DEBUG [27404]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:22:27.371 SQL [27404]: pgsql_db_connect() -- 00:22:27.375 DEBUG [27404]: Database connection successful -- 00:22:27.375 INFO [27404]: _SERVER found -- 00:22:27.375 INFO [27404]: REMOTE_ADDR = 10.0.0.15 -- 00:22:27.375 INFO [27404]: SERVER_NAME = oameye.works.coregrade.com -- 00:22:27.375 INFO [27404]: QUERY_STRING = /remote/login -- 00:22:27.375 INFO [27404]: HTTP_X_FORWARDED_FOR = 190.202.89.69 -- 00:22:27.386 INFO [27404]: COREGRADE is stopping... -- 00:22:27.386 DEBUG [27404]: Closing database connection -- 00:22:27.386 SQL [27404]: pgsql_close() -- 00:22:29.231 INFO [27406]: COREGRADE is starting... -- 00:22:29.232 INFO [27406]: Version from config: 1.0 -- 00:22:29.232 DEBUG [27406]: Connecting to database... -- 00:22:29.232 DEBUG [27406]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:22:29.232 SQL [27406]: pgsql_db_connect() -- 00:22:29.236 DEBUG [27406]: Database connection successful -- 00:22:29.236 INFO [27406]: _SERVER found -- 00:22:29.236 INFO [27406]: REMOTE_ADDR = 10.0.0.15 -- 00:22:29.236 INFO [27406]: SERVER_NAME = oameye.works.coregrade.com -- 00:22:29.236 INFO [27406]: QUERY_STRING = /index.asp -- 00:22:29.236 INFO [27406]: HTTP_X_FORWARDED_FOR = 190.202.89.69 -- 00:22:29.249 INFO [27406]: COREGRADE is stopping... -- 00:22:29.249 DEBUG [27406]: Closing database connection -- 00:22:29.249 SQL [27406]: pgsql_close() -- 01:00:01.425 INFO [28787]: COREGRADE is starting... -- 01:00:01.426 INFO [28787]: Version from config: 1.0 -- 01:00:01.426 DEBUG [28787]: Connecting to database... -- 01:00:01.426 DEBUG [28787]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:00:01.426 SQL [28787]: pgsql_db_connect() -- 01:00:01.431 DEBUG [28787]: Database connection successful -- 01:00:01.431 INFO [28787]: _SERVER found -- 01:00:01.431 INFO [28787]: REMOTE_ADDR = 10.0.0.15 -- 01:00:01.431 INFO [28787]: SERVER_NAME = oameye.works.coregrade.com -- 01:00:01.431 INFO [28787]: QUERY_STRING = /.well-known/acme-challenge/SgVCUllhHVrusCn4BAl_Qwe5eGUaaHFOPZFV3mjofL4 -- 01:00:01.431 INFO [28787]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 01:00:01.452 INFO [28787]: COREGRADE is stopping... -- 01:00:01.452 DEBUG [28787]: Closing database connection -- 01:00:01.453 SQL [28787]: pgsql_close() -- 01:00:01.609 INFO [27407]: COREGRADE is starting... -- 01:00:01.609 INFO [27407]: Version from config: 1.0 -- 01:00:01.609 DEBUG [27407]: Connecting to database... -- 01:00:01.609 DEBUG [27407]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:00:01.609 SQL [27407]: pgsql_db_connect() -- 01:00:01.614 DEBUG [27407]: Database connection successful -- 01:00:01.614 INFO [27407]: _SERVER found -- 01:00:01.614 INFO [27407]: REMOTE_ADDR = 10.0.0.15 -- 01:00:01.614 INFO [27407]: SERVER_NAME = oameye.works.coregrade.com -- 01:00:01.614 INFO [27407]: QUERY_STRING = /.well-known/acme-challenge/SgVCUllhHVrusCn4BAl_Qwe5eGUaaHFOPZFV3mjofL4 -- 01:00:01.614 INFO [27407]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 01:00:01.631 INFO [27407]: COREGRADE is stopping... -- 01:00:01.631 DEBUG [27407]: Closing database connection -- 01:00:01.631 SQL [27407]: pgsql_close() -- 01:00:01.768 INFO [27407]: COREGRADE is starting... -- 01:00:01.768 INFO [27407]: Version from config: 1.0 -- 01:00:01.768 DEBUG [27407]: Connecting to database... -- 01:00:01.768 DEBUG [27407]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:00:01.768 SQL [27407]: pgsql_db_connect() -- 01:00:01.774 DEBUG [27407]: Database connection successful -- 01:00:01.774 INFO [27407]: _SERVER found -- 01:00:01.774 INFO [27407]: REMOTE_ADDR = 10.0.0.15 -- 01:00:01.774 INFO [27407]: SERVER_NAME = oameye.works.coregrade.com -- 01:00:01.774 INFO [27407]: QUERY_STRING = /.well-known/acme-challenge/SgVCUllhHVrusCn4BAl_Qwe5eGUaaHFOPZFV3mjofL4 -- 01:00:01.774 INFO [27407]: HTTP_X_FORWARDED_FOR = 52.28.236.88 -- 01:00:01.786 INFO [27407]: COREGRADE is stopping... -- 01:00:01.786 DEBUG [27407]: Closing database connection -- 01:00:01.786 SQL [27407]: pgsql_close() -- 02:52:12.611 INFO [27405]: COREGRADE is starting... -- 02:52:12.611 INFO [27405]: Version from config: 1.0 -- 02:52:12.611 DEBUG [27405]: Connecting to database... -- 02:52:12.611 DEBUG [27405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:52:12.611 SQL [27405]: pgsql_db_connect() -- 02:52:12.616 DEBUG [27405]: Database connection successful -- 02:52:12.616 INFO [27405]: _SERVER found -- 02:52:12.616 INFO [27405]: REMOTE_ADDR = 10.0.0.15 -- 02:52:12.616 INFO [27405]: SERVER_NAME = oameye.works.coregrade.com -- 02:52:12.616 INFO [27405]: QUERY_STRING = -- 02:52:12.616 INFO [27405]: HTTP_X_FORWARDED_FOR = 144.21.103.14 -- 02:52:12.655 INFO [27405]: COREGRADE is stopping... -- 02:52:12.655 DEBUG [27405]: Closing database connection -- 02:52:12.655 SQL [27405]: pgsql_close() -- 02:52:13.337 INFO [27405]: COREGRADE is starting... -- 02:52:13.337 INFO [27405]: Version from config: 1.0 -- 02:52:13.337 DEBUG [27405]: Connecting to database... -- 02:52:13.337 DEBUG [27405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:52:13.337 SQL [27405]: pgsql_db_connect() -- 02:52:13.342 DEBUG [27405]: Database connection successful -- 02:52:13.342 INFO [27405]: _SERVER found -- 02:52:13.342 INFO [27405]: REMOTE_ADDR = 10.0.0.15 -- 02:52:13.342 INFO [27405]: SERVER_NAME = oameye.works.coregrade.com -- 02:52:13.342 INFO [27405]: QUERY_STRING = /home.asp -- 02:52:13.342 INFO [27405]: HTTP_X_FORWARDED_FOR = 144.21.103.14 -- 02:52:13.353 INFO [27405]: COREGRADE is stopping... -- 02:52:13.353 DEBUG [27405]: Closing database connection -- 02:52:13.353 SQL [27405]: pgsql_close() -- 02:52:13.990 INFO [27405]: COREGRADE is starting... -- 02:52:13.990 INFO [27405]: Version from config: 1.0 -- 02:52:13.990 DEBUG [27405]: Connecting to database... -- 02:52:13.990 DEBUG [27405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:52:13.990 SQL [27405]: pgsql_db_connect() -- 02:52:13.994 DEBUG [27405]: Database connection successful -- 02:52:13.994 INFO [27405]: _SERVER found -- 02:52:13.994 INFO [27405]: REMOTE_ADDR = 10.0.0.15 -- 02:52:13.994 INFO [27405]: SERVER_NAME = oameye.works.coregrade.com -- 02:52:13.994 INFO [27405]: QUERY_STRING = /login.cgi -- 02:52:13.994 INFO [27405]: HTTP_X_FORWARDED_FOR = 144.21.103.14 -- 02:52:14.006 INFO [27405]: COREGRADE is stopping... -- 02:52:14.006 DEBUG [27405]: Closing database connection -- 02:52:14.006 SQL [27405]: pgsql_close() -- 02:52:15.400 INFO [27405]: COREGRADE is starting... -- 02:52:15.400 INFO [27405]: Version from config: 1.0 -- 02:52:15.400 DEBUG [27405]: Connecting to database... -- 02:52:15.400 DEBUG [27405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:52:15.400 SQL [27405]: pgsql_db_connect() -- 02:52:15.405 DEBUG [27405]: Database connection successful -- 02:52:15.405 INFO [27405]: _SERVER found -- 02:52:15.405 INFO [27405]: REMOTE_ADDR = 10.0.0.15 -- 02:52:15.405 INFO [27405]: SERVER_NAME = oameye.works.coregrade.com -- 02:52:15.405 INFO [27405]: QUERY_STRING = /dana-na/auth/url_default/welcome.cgi -- 02:52:15.405 INFO [27405]: HTTP_X_FORWARDED_FOR = 144.21.103.14 -- 02:52:15.416 INFO [27405]: COREGRADE is stopping... -- 02:52:15.416 DEBUG [27405]: Closing database connection -- 02:52:15.416 SQL [27405]: pgsql_close() -- 02:52:16.015 INFO [27405]: COREGRADE is starting... -- 02:52:16.015 INFO [27405]: Version from config: 1.0 -- 02:52:16.015 DEBUG [27405]: Connecting to database... -- 02:52:16.015 DEBUG [27405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:52:16.015 SQL [27405]: pgsql_db_connect() -- 02:52:16.020 DEBUG [27405]: Database connection successful -- 02:52:16.020 INFO [27405]: _SERVER found -- 02:52:16.020 INFO [27405]: REMOTE_ADDR = 10.0.0.15 -- 02:52:16.020 INFO [27405]: SERVER_NAME = oameye.works.coregrade.com -- 02:52:16.020 INFO [27405]: QUERY_STRING = /remote/login -- 02:52:16.020 INFO [27405]: HTTP_X_FORWARDED_FOR = 144.21.103.14 -- 02:52:16.031 INFO [27405]: COREGRADE is stopping... -- 02:52:16.031 DEBUG [27405]: Closing database connection -- 02:52:16.031 SQL [27405]: pgsql_close() -- 02:52:16.637 INFO [27405]: COREGRADE is starting... -- 02:52:16.638 INFO [27405]: Version from config: 1.0 -- 02:52:16.638 DEBUG [27405]: Connecting to database... -- 02:52:16.638 DEBUG [27405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:52:16.638 SQL [27405]: pgsql_db_connect() -- 02:52:16.642 DEBUG [27405]: Database connection successful -- 02:52:16.642 INFO [27405]: _SERVER found -- 02:52:16.642 INFO [27405]: REMOTE_ADDR = 10.0.0.15 -- 02:52:16.642 INFO [27405]: SERVER_NAME = oameye.works.coregrade.com -- 02:52:16.642 INFO [27405]: QUERY_STRING = /index.asp -- 02:52:16.642 INFO [27405]: HTTP_X_FORWARDED_FOR = 144.21.103.14 -- 02:52:16.654 INFO [27405]: COREGRADE is stopping... -- 02:52:16.654 DEBUG [27405]: Closing database connection -- 02:52:16.654 SQL [27405]: pgsql_close() -- 04:48:07.791 INFO [27406]: COREGRADE is starting... -- 04:48:07.791 INFO [27406]: Version from config: 1.0 -- 04:48:07.791 DEBUG [27406]: Connecting to database... -- 04:48:07.791 DEBUG [27406]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:07.791 SQL [27406]: pgsql_db_connect() -- 04:48:07.796 DEBUG [27406]: Database connection successful -- 04:48:07.797 INFO [27406]: _SERVER found -- 04:48:07.797 INFO [27406]: REMOTE_ADDR = 10.0.0.15 -- 04:48:07.797 INFO [27406]: SERVER_NAME = oameye.works.coregrade.com -- 04:48:07.797 INFO [27406]: QUERY_STRING = /dana-na/auth/url_default/welcome.cgi -- 04:48:07.797 INFO [27406]: HTTP_X_FORWARDED_FOR = 103.108.142.114 -- 04:48:07.811 INFO [27406]: COREGRADE is stopping... -- 04:48:07.811 DEBUG [27406]: Closing database connection -- 04:48:07.811 SQL [27406]: pgsql_close() -- 04:48:09.118 INFO [27406]: COREGRADE is starting... -- 04:48:09.118 INFO [27406]: Version from config: 1.0 -- 04:48:09.118 DEBUG [27406]: Connecting to database... -- 04:48:09.119 DEBUG [27406]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:09.119 SQL [27406]: pgsql_db_connect() -- 04:48:09.123 DEBUG [27406]: Database connection successful -- 04:48:09.123 INFO [27406]: _SERVER found -- 04:48:09.123 INFO [27406]: REMOTE_ADDR = 10.0.0.15 -- 04:48:09.123 INFO [27406]: SERVER_NAME = oameye.works.coregrade.com -- 04:48:09.123 INFO [27406]: QUERY_STRING = /remote/login -- 04:48:09.123 INFO [27406]: HTTP_X_FORWARDED_FOR = 103.108.142.114 -- 04:48:09.134 INFO [27406]: COREGRADE is stopping... -- 04:48:09.134 DEBUG [27406]: Closing database connection -- 04:48:09.134 SQL [27406]: pgsql_close() -- 04:48:10.464 INFO [27406]: COREGRADE is starting... -- 04:48:10.464 INFO [27406]: Version from config: 1.0 -- 04:48:10.464 DEBUG [27406]: Connecting to database... -- 04:48:10.465 DEBUG [27406]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:10.465 SQL [27406]: pgsql_db_connect() -- 04:48:10.469 DEBUG [27406]: Database connection successful -- 04:48:10.469 INFO [27406]: _SERVER found -- 04:48:10.469 INFO [27406]: REMOTE_ADDR = 10.0.0.15 -- 04:48:10.469 INFO [27406]: SERVER_NAME = oameye.works.coregrade.com -- 04:48:10.469 INFO [27406]: QUERY_STRING = -- 04:48:10.469 INFO [27406]: HTTP_X_FORWARDED_FOR = 103.108.142.114 -- 04:48:10.504 INFO [27406]: COREGRADE is stopping... -- 04:48:10.504 DEBUG [27406]: Closing database connection -- 04:48:10.504 SQL [27406]: pgsql_close() -- 04:48:12.075 INFO [27406]: COREGRADE is starting... -- 04:48:12.075 INFO [27406]: Version from config: 1.0 -- 04:48:12.075 DEBUG [27406]: Connecting to database... -- 04:48:12.075 DEBUG [27406]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:12.075 SQL [27406]: pgsql_db_connect() -- 04:48:12.079 DEBUG [27406]: Database connection successful -- 04:48:12.079 INFO [27406]: _SERVER found -- 04:48:12.079 INFO [27406]: REMOTE_ADDR = 10.0.0.15 -- 04:48:12.079 INFO [27406]: SERVER_NAME = oameye.works.coregrade.com -- 04:48:12.079 INFO [27406]: QUERY_STRING = /index.asp -- 04:48:12.079 INFO [27406]: HTTP_X_FORWARDED_FOR = 103.108.142.114 -- 04:48:12.090 INFO [27406]: COREGRADE is stopping... -- 04:48:12.090 DEBUG [27406]: Closing database connection -- 04:48:12.090 SQL [27406]: pgsql_close() -- 07:04:53.079 INFO [431]: COREGRADE is starting... -- 07:04:53.079 INFO [431]: Version from config: 1.0 -- 07:04:53.079 DEBUG [431]: Connecting to database... -- 07:04:53.079 DEBUG [431]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:04:53.079 SQL [431]: pgsql_db_connect() -- 07:04:53.125 INFO [431]: COREGRADE is starting... -- 07:04:53.126 INFO [431]: Version from config: 1.0 -- 07:04:53.126 DEBUG [431]: Connecting to database... -- 07:04:53.126 DEBUG [431]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:04:53.126 SQL [431]: pgsql_db_connect() -- 07:04:53.131 DEBUG [431]: Database connection successful -- 07:04:53.131 INFO [431]: _SERVER found -- 07:04:53.131 INFO [431]: REMOTE_ADDR = 10.0.0.15 -- 07:04:53.131 INFO [431]: SERVER_NAME = oameye.works.coregrade.com -- 07:04:53.131 INFO [431]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624 -- 07:04:53.131 INFO [431]: QUERY_STRING = -- 07:04:53.131 INFO [431]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:04:53.131 INFO [431]: SystemStatus()09-09-********~************ -- 07:04:53.131 INFO [431]: long coregrade_api_main(CVars in, CVars &out) -- 07:04:53.131 INFO [431]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 07:04:53.131 INFO [431]: account calls -- 07:04:53.131 INFO [431]: account_calls() -- 07:04:53.131 INFO [431]: LoginCoreGradeAccount() -- 07:04:53.131 FLOG_MAX [431]: REQ_STRING(username) -- 07:04:53.131 FLOG_MAX [431]: REQ_STRING(password) -- 07:04:53.131 FLOG_MAX [431]: REQ_STRING(sessionid) -- 07:04:53.131 FLOG_MAX [431]: long load_db_record( CVars &rec, const char * query, ... ) -- 07:04:53.131 SQL [431]: pgsql_query() -- 07:04:53.131 SQL [431]: About to run query: -- 07:04:53.131 SQL [431]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 07:04:53.135 SQL [431]: Found rows: 1 -- 07:04:53.135 FLOG_MAX [431]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 07:04:53.135 INFO [431]: long SessionCheck(long uid, const char *sessionid, int create ) -- 07:04:53.135 SQL [431]: pgsql_exec() -- 07:04:53.135 SQL [431]: About to run query: -- 07:04:53.135 SQL [431]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 07:04:53.137 SQL [431]: PQcmdTuples: 1 -- 07:04:53.137 SQL [431]: Affected rows: 1 -- 07:04:53.137 SQL [431]: pgsql_exec() -- 07:04:53.137 SQL [431]: About to run query: -- 07:04:53.137 SQL [431]: DELETE FROM members_session WHERE member_id=5 -- 07:04:53.137 SQL [431]: PQcmdTuples: 0 -- 07:04:53.137 SQL [431]: Affected rows: 0 -- 07:04:53.137 SQL [431]: pgsql_query() -- 07:04:53.137 SQL [431]: About to run query: -- 07:04:53.137 SQL [431]: SELECT * FROM members_session WHERE member_id=5 AND session<>'789120204A539DA14A7C0C84ED52A30C' -- 07:04:53.138 SQL [431]: Found rows: 0 -- 07:04:53.138 SQL [431]: Found rows: 0 -- 07:04:53.138 FLOG_MAX [431]: long load_db_record( CVars &rec, const char * query, ... ) -- 07:04:53.138 SQL [431]: pgsql_query() -- 07:04:53.138 SQL [431]: About to run query: -- 07:04:53.138 SQL [431]: SELECT * FROM members_session WHERE member_id=5 AND session='789120204A539DA14A7C0C84ED52A30C' -- 07:04:53.138 SQL [431]: Found rows: 0 -- 07:04:53.138 SQL [431]: Found rows: 0 -- 07:04:53.138 FLOG_MAX [431]: insert_db_record() -- 07:04:53.138 SQL [431]: pgsql_exec() -- 07:04:53.139 SQL [431]: About to run query: -- 07:04:53.139 SQL [431]: INSERT INTO members_session (member_id,session) VALUES ('5','789120204A539DA14A7C0C84ED52A30C') -- 07:04:53.140 SQL [431]: PQcmdTuples: 1 -- 07:04:53.140 SQL [431]: Affected rows: 1 -- 07:04:53.140 FLOG_MAX [431]: SELECT currval('members_session_id_seq') -- 07:04:53.140 SQL [431]: pgsql_query() -- 07:04:53.140 SQL [431]: About to run query: -- 07:04:53.140 SQL [431]: SELECT currval('members_session_id_seq') -- 07:04:53.141 SQL [431]: Found rows: 1 -- 07:04:53.141 INFO [431]: CreateDefaultPage() -- 07:04:53.141 FLOG_MAX [431]: long load_db_record( CVars &rec, const char * query, ... ) -- 07:04:53.141 SQL [431]: pgsql_query() -- 07:04:53.141 SQL [431]: About to run query: -- 07:04:53.141 SQL [431]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 07:04:53.141 SQL [431]: Found rows: 1 -- 07:04:53.141 FLOG_MAX [431]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 07:04:53.141 SQL [431]: pgsql_query() -- 07:04:53.141 SQL [431]: About to run query: -- 07:04:53.141 SQL [431]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 07:04:53.142 SQL [431]: Found rows: 1 -- 07:04:53.142 INFO [431]: /CreateDefaultPage() -- 07:04:53.142 INFO [431]: /LoginCoreGradeAccount() -- 07:04:53.142 INFO [431]: RET: added=2020-02-05 06:47:23.982154 -- 07:04:53.142 INFO [431]: RET: email=ameye+11@chiefsoft.com -- 07:04:53.142 INFO [431]: RET: firstname=Olu -- 07:04:53.142 INFO [431]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 07:04:53.142 INFO [431]: RET: id=5 -- 07:04:53.142 INFO [431]: RET: last_login= -- 07:04:53.142 INFO [431]: RET: lastname=Amey -- 07:04:53.142 INFO [431]: RET: loc=192.168.1.13 -- 07:04:53.142 INFO [431]: RET: member_id=5 -- 07:04:53.142 INFO [431]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 07:04:53.142 INFO [431]: RET: phone= -- 07:04:53.142 INFO [431]: RET: pid= -- 07:04:53.142 INFO [431]: RET: result=YES I GET TO BACK END -- 07:04:53.142 INFO [431]: RET: sessionid=789120204A539DA14A7C0C84ED52A30C -- 07:04:53.142 INFO [431]: RET: status=1 -- 07:04:53.142 INFO [431]: RET: stauts=OK -- 07:04:53.142 INFO [431]: RET: username=ameye+11@chiefsoft.com -- 07:04:53.142 INFO [431]: RET: verified= -- 07:04:53.143 INFO [431]: COREGRADE is stopping... -- 07:04:53.143 DEBUG [431]: Closing database connection -- 07:04:53.143 SQL [431]: pgsql_close() -- 07:04:53.084 DEBUG [431]: Database connection successful -- 07:04:53.084 INFO [431]: _SERVER found -- 07:04:53.084 INFO [431]: REMOTE_ADDR = 10.0.0.15 -- 07:04:53.084 INFO [431]: SERVER_NAME = oameye.works.coregrade.com -- 07:04:53.084 INFO [431]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624 -- 07:04:53.084 INFO [431]: QUERY_STRING = /auth -- 07:04:53.084 INFO [431]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:04:53.144 INFO [431]: COREGRADE is stopping... -- 07:04:53.144 DEBUG [431]: Closing database connection -- 07:04:53.144 SQL [431]: pgsql_close() -- 07:04:53.181 INFO [431]: COREGRADE is starting... -- 07:04:53.181 INFO [431]: Version from config: 1.0 -- 07:04:53.181 DEBUG [431]: Connecting to database... -- 07:04:53.181 DEBUG [431]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:04:53.181 SQL [431]: pgsql_db_connect() -- 07:04:53.185 DEBUG [431]: Database connection successful -- 07:04:53.185 INFO [431]: _SERVER found -- 07:04:53.185 INFO [431]: REMOTE_ADDR = 10.0.0.15 -- 07:04:53.185 INFO [431]: SERVER_NAME = oameye.works.coregrade.com -- 07:04:53.185 INFO [431]: HTTP_COOKIE = ci_session=fo8fdh1tu2b6squ80ks8msc97nngadj4; _ga=GA1.2.2030761402.1585610624 -- 07:04:53.185 INFO [431]: QUERY_STRING = /member/index -- 07:04:53.185 INFO [431]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:04:53.228 INFO [431]: COREGRADE is stopping... -- 07:04:53.228 DEBUG [431]: Closing database connection -- 07:04:53.228 SQL [431]: pgsql_close() -- 07:04:53.789 INFO [431]: COREGRADE is starting... -- 07:04:53.789 INFO [431]: Version from config: 1.0 -- 07:04:53.789 DEBUG [431]: Connecting to database... -- 07:04:53.789 DEBUG [431]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:04:53.789 SQL [431]: pgsql_db_connect() -- 07:04:53.794 DEBUG [431]: Database connection successful -- 07:04:53.794 INFO [431]: _SERVER found -- 07:04:53.794 INFO [431]: REMOTE_ADDR = 10.0.0.15 -- 07:04:53.794 INFO [431]: SERVER_NAME = oameye.works.coregrade.com -- 07:04:53.794 INFO [431]: HTTP_COOKIE = ci_session=fo8fdh1tu2b6squ80ks8msc97nngadj4; _ga=GA1.2.2030761402.1585610624 -- 07:04:53.794 INFO [431]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 07:04:53.794 INFO [431]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:04:53.805 INFO [431]: COREGRADE is stopping... -- 07:04:53.805 DEBUG [431]: Closing database connection -- 07:04:53.805 SQL [431]: pgsql_close() -- 07:04:54.132 INFO [431]: COREGRADE is starting... -- 07:04:54.133 INFO [431]: Version from config: 1.0 -- 07:04:54.133 DEBUG [431]: Connecting to database... -- 07:04:54.133 DEBUG [431]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:04:54.133 SQL [431]: pgsql_db_connect() -- 07:04:54.137 DEBUG [431]: Database connection successful -- 07:04:54.137 INFO [431]: _SERVER found -- 07:04:54.137 INFO [431]: REMOTE_ADDR = 10.0.0.15 -- 07:04:54.137 INFO [431]: SERVER_NAME = oameye.works.coregrade.com -- 07:04:54.137 INFO [431]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 07:04:54.137 INFO [431]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:04:54.148 INFO [431]: COREGRADE is stopping... -- 07:04:54.148 DEBUG [431]: Closing database connection -- 07:04:54.148 SQL [431]: pgsql_close() -- 07:04:54.177 INFO [431]: COREGRADE is starting... -- 07:04:54.177 INFO [431]: Version from config: 1.0 -- 07:04:54.177 DEBUG [431]: Connecting to database... -- 07:04:54.177 DEBUG [431]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:04:54.177 SQL [431]: pgsql_db_connect() -- 07:04:54.181 DEBUG [431]: Database connection successful -- 07:04:54.181 INFO [431]: _SERVER found -- 07:04:54.181 INFO [431]: REMOTE_ADDR = 10.0.0.15 -- 07:04:54.181 INFO [431]: SERVER_NAME = oameye.works.coregrade.com -- 07:04:54.181 INFO [431]: QUERY_STRING = /apple-touch-icon-precomposed.png -- 07:04:54.181 INFO [431]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:04:54.192 INFO [431]: COREGRADE is stopping... -- 07:04:54.192 DEBUG [431]: Closing database connection -- 07:04:54.192 SQL [431]: pgsql_close() -- 07:04:54.222 INFO [431]: COREGRADE is starting... -- 07:04:54.222 INFO [431]: Version from config: 1.0 -- 07:04:54.222 DEBUG [431]: Connecting to database... -- 07:04:54.222 DEBUG [431]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:04:54.222 SQL [431]: pgsql_db_connect() -- 07:04:54.226 DEBUG [431]: Database connection successful -- 07:04:54.226 INFO [431]: _SERVER found -- 07:04:54.226 INFO [431]: REMOTE_ADDR = 10.0.0.15 -- 07:04:54.226 INFO [431]: SERVER_NAME = oameye.works.coregrade.com -- 07:04:54.226 INFO [431]: QUERY_STRING = /apple-touch-icon.png -- 07:04:54.226 INFO [431]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:04:54.237 INFO [431]: COREGRADE is stopping... -- 07:04:54.237 DEBUG [431]: Closing database connection -- 07:04:54.238 SQL [431]: pgsql_close() -- 07:04:55.946 INFO [431]: COREGRADE is starting... -- 07:04:55.947 INFO [431]: Version from config: 1.0 -- 07:04:55.947 DEBUG [431]: Connecting to database... -- 07:04:55.947 DEBUG [431]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:04:55.947 SQL [431]: pgsql_db_connect() -- 07:04:55.951 DEBUG [431]: Database connection successful -- 07:04:55.951 INFO [431]: _SERVER found -- 07:04:55.951 INFO [431]: REMOTE_ADDR = 10.0.0.15 -- 07:04:55.951 INFO [431]: SERVER_NAME = oameye.works.coregrade.com -- 07:04:55.951 INFO [431]: HTTP_COOKIE = ci_session=fo8fdh1tu2b6squ80ks8msc97nngadj4; _ga=GA1.2.2030761402.1585610624 -- 07:04:55.951 INFO [431]: QUERY_STRING = /member/classroom -- 07:04:55.951 INFO [431]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:04:55.993 INFO [431]: COREGRADE is stopping... -- 07:04:55.993 DEBUG [431]: Closing database connection -- 07:04:55.993 SQL [431]: pgsql_close() -- 07:04:56.064 INFO [431]: COREGRADE is starting... -- 07:04:56.064 INFO [431]: Version from config: 1.0 -- 07:04:56.064 DEBUG [431]: Connecting to database... -- 07:04:56.064 DEBUG [431]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:04:56.064 SQL [431]: pgsql_db_connect() -- 07:04:56.068 DEBUG [431]: Database connection successful -- 07:04:56.068 INFO [431]: _SERVER found -- 07:04:56.068 INFO [431]: REMOTE_ADDR = 10.0.0.15 -- 07:04:56.068 INFO [431]: SERVER_NAME = oameye.works.coregrade.com -- 07:04:56.068 INFO [431]: HTTP_COOKIE = ci_session=fo8fdh1tu2b6squ80ks8msc97nngadj4; _ga=GA1.2.2030761402.1585610624 -- 07:04:56.068 INFO [431]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 07:04:56.068 INFO [431]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:04:56.080 INFO [431]: COREGRADE is stopping... -- 07:04:56.080 DEBUG [431]: Closing database connection -- 07:04:56.080 SQL [431]: pgsql_close() -- 07:04:57.173 INFO [431]: COREGRADE is starting... -- 07:04:57.174 INFO [431]: Version from config: 1.0 -- 07:04:57.174 DEBUG [431]: Connecting to database... -- 07:04:57.174 DEBUG [431]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:04:57.174 SQL [431]: pgsql_db_connect() -- 07:04:57.178 DEBUG [431]: Database connection successful -- 07:04:57.178 INFO [431]: _SERVER found -- 07:04:57.178 INFO [431]: REMOTE_ADDR = 10.0.0.15 -- 07:04:57.178 INFO [431]: SERVER_NAME = oameye.works.coregrade.com -- 07:04:57.178 INFO [431]: HTTP_COOKIE = ci_session=fo8fdh1tu2b6squ80ks8msc97nngadj4; _ga=GA1.2.2030761402.1585610624 -- 07:04:57.178 INFO [431]: QUERY_STRING = /member/viewRoom -- 07:04:57.178 INFO [431]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:04:57.212 INFO [431]: COREGRADE is stopping... -- 07:04:57.212 DEBUG [431]: Closing database connection -- 07:04:57.212 SQL [431]: pgsql_close() -- 07:05:19.725 INFO [28787]: COREGRADE is starting... -- 07:05:19.725 INFO [28787]: Version from config: 1.0 -- 07:05:19.725 DEBUG [28787]: Connecting to database... -- 07:05:19.725 DEBUG [28787]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:05:19.725 SQL [28787]: pgsql_db_connect() -- 07:05:19.729 DEBUG [28787]: Database connection successful -- 07:05:19.729 INFO [28787]: _SERVER found -- 07:05:19.729 INFO [28787]: REMOTE_ADDR = 10.0.0.15 -- 07:05:19.729 INFO [28787]: SERVER_NAME = oameye.works.coregrade.com -- 07:05:19.729 INFO [28787]: HTTP_COOKIE = ci_session=fo8fdh1tu2b6squ80ks8msc97nngadj4; _ga=GA1.2.2030761402.1585610624 -- 07:05:19.729 INFO [28787]: QUERY_STRING = /member/viewRoom -- 07:05:19.729 INFO [28787]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:05:19.770 INFO [28787]: COREGRADE is stopping... -- 07:05:19.770 DEBUG [28787]: Closing database connection -- 07:05:19.770 SQL [28787]: pgsql_close() -- 07:09:01.301 INFO [28789]: COREGRADE is starting... -- 07:09:01.301 INFO [28789]: Version from config: 1.0 -- 07:09:01.301 DEBUG [28789]: Connecting to database... -- 07:09:01.301 DEBUG [28789]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:09:01.301 SQL [28789]: pgsql_db_connect() -- 07:09:01.305 DEBUG [28789]: Database connection successful -- 07:09:01.305 INFO [28789]: _SERVER found -- 07:09:01.305 INFO [28789]: REMOTE_ADDR = 10.0.0.15 -- 07:09:01.305 INFO [28789]: SERVER_NAME = oameye.works.coregrade.com -- 07:09:01.305 INFO [28789]: HTTP_COOKIE = ci_session=fo8fdh1tu2b6squ80ks8msc97nngadj4; _ga=GA1.2.2030761402.1585610624 -- 07:09:01.305 INFO [28789]: QUERY_STRING = /member/classroom -- 07:09:01.305 INFO [28789]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:09:01.355 INFO [28789]: COREGRADE is stopping... -- 07:09:01.355 DEBUG [28789]: Closing database connection -- 07:09:01.355 SQL [28789]: pgsql_close() -- 07:09:01.875 INFO [28789]: COREGRADE is starting... -- 07:09:01.875 INFO [28789]: Version from config: 1.0 -- 07:09:01.875 DEBUG [28789]: Connecting to database... -- 07:09:01.875 DEBUG [28789]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:09:01.875 SQL [28789]: pgsql_db_connect() -- 07:09:01.879 DEBUG [28789]: Database connection successful -- 07:09:01.879 INFO [28789]: _SERVER found -- 07:09:01.879 INFO [28789]: REMOTE_ADDR = 10.0.0.15 -- 07:09:01.879 INFO [28789]: SERVER_NAME = oameye.works.coregrade.com -- 07:09:01.879 INFO [28789]: HTTP_COOKIE = ci_session=fo8fdh1tu2b6squ80ks8msc97nngadj4; _ga=GA1.2.2030761402.1585610624 -- 07:09:01.879 INFO [28789]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 07:09:01.879 INFO [28789]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:09:01.891 INFO [28789]: COREGRADE is stopping... -- 07:09:01.891 DEBUG [28789]: Closing database connection -- 07:09:01.891 SQL [28789]: pgsql_close() -- 07:09:06.135 INFO [28789]: COREGRADE is starting... -- 07:09:06.135 INFO [28789]: Version from config: 1.0 -- 07:09:06.135 DEBUG [28789]: Connecting to database... -- 07:09:06.135 DEBUG [28789]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:09:06.135 SQL [28789]: pgsql_db_connect() -- 07:09:06.140 DEBUG [28789]: Database connection successful -- 07:09:06.140 INFO [28789]: _SERVER found -- 07:09:06.140 INFO [28789]: REMOTE_ADDR = 10.0.0.15 -- 07:09:06.140 INFO [28789]: SERVER_NAME = oameye.works.coregrade.com -- 07:09:06.140 INFO [28789]: HTTP_COOKIE = ci_session=fo8fdh1tu2b6squ80ks8msc97nngadj4; _ga=GA1.2.2030761402.1585610624 -- 07:09:06.140 INFO [28789]: QUERY_STRING = /member/mycalendar -- 07:09:06.140 INFO [28789]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:09:06.180 INFO [28789]: COREGRADE is stopping... -- 07:09:06.180 DEBUG [28789]: Closing database connection -- 07:09:06.180 SQL [28789]: pgsql_close() -- 07:09:06.265 INFO [28789]: COREGRADE is starting... -- 07:09:06.266 INFO [28789]: Version from config: 1.0 -- 07:09:06.266 DEBUG [28789]: Connecting to database... -- 07:09:06.266 DEBUG [28789]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:09:06.266 SQL [28789]: pgsql_db_connect() -- 07:09:06.270 DEBUG [28789]: Database connection successful -- 07:09:06.270 INFO [28789]: _SERVER found -- 07:09:06.270 INFO [28789]: REMOTE_ADDR = 10.0.0.15 -- 07:09:06.270 INFO [28789]: SERVER_NAME = oameye.works.coregrade.com -- 07:09:06.270 INFO [28789]: HTTP_COOKIE = ci_session=fo8fdh1tu2b6squ80ks8msc97nngadj4; _ga=GA1.2.2030761402.1585610624 -- 07:09:06.270 INFO [28789]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 07:09:06.270 INFO [28789]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:09:06.281 INFO [28789]: COREGRADE is stopping... -- 07:09:06.281 DEBUG [28789]: Closing database connection -- 07:09:06.281 SQL [28789]: pgsql_close() -- 07:09:11.944 INFO [27407]: COREGRADE is starting... -- 07:09:11.945 INFO [27407]: Version from config: 1.0 -- 07:09:11.945 DEBUG [27407]: Connecting to database... -- 07:09:11.945 DEBUG [27407]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:09:11.945 SQL [27407]: pgsql_db_connect() -- 07:09:11.966 INFO [27408]: COREGRADE is starting... -- 07:09:11.967 INFO [27408]: Version from config: 1.0 -- 07:09:11.967 DEBUG [27408]: Connecting to database... -- 07:09:11.967 DEBUG [27408]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:09:11.967 SQL [27408]: pgsql_db_connect() -- 07:09:11.971 DEBUG [27408]: Database connection successful -- 07:09:11.971 INFO [27408]: _SERVER found -- 07:09:11.971 INFO [27408]: REMOTE_ADDR = 10.0.0.15 -- 07:09:11.971 INFO [27408]: SERVER_NAME = oameye.works.coregrade.com -- 07:09:11.971 INFO [27408]: HTTP_COOKIE = ci_session=fo8fdh1tu2b6squ80ks8msc97nngadj4; _ga=GA1.2.2030761402.1585610624 -- 07:09:11.971 INFO [27408]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 07:09:11.971 INFO [27408]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:09:11.984 INFO [27408]: COREGRADE is stopping... -- 07:09:11.984 DEBUG [27408]: Closing database connection -- 07:09:11.984 SQL [27408]: pgsql_close() -- 07:09:11.949 DEBUG [27407]: Database connection successful -- 07:09:11.949 INFO [27407]: _SERVER found -- 07:09:11.949 INFO [27407]: REMOTE_ADDR = 10.0.0.15 -- 07:09:11.949 INFO [27407]: SERVER_NAME = oameye.works.coregrade.com -- 07:09:11.949 INFO [27407]: HTTP_COOKIE = ci_session=fo8fdh1tu2b6squ80ks8msc97nngadj4; _ga=GA1.2.2030761402.1585610624 -- 07:09:11.949 INFO [27407]: QUERY_STRING = /member/classroom -- 07:09:11.949 INFO [27407]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:09:11.998 INFO [27407]: COREGRADE is stopping... -- 07:09:11.998 DEBUG [27407]: Closing database connection -- 07:09:11.998 SQL [27407]: pgsql_close() -- 07:09:14.449 INFO [27407]: COREGRADE is starting... -- 07:09:14.450 INFO [27407]: Version from config: 1.0 -- 07:09:14.450 DEBUG [27407]: Connecting to database... -- 07:09:14.450 DEBUG [27407]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:09:14.450 SQL [27407]: pgsql_db_connect() -- 07:09:14.454 DEBUG [27407]: Database connection successful -- 07:09:14.454 INFO [27407]: _SERVER found -- 07:09:14.454 INFO [27407]: REMOTE_ADDR = 10.0.0.15 -- 07:09:14.454 INFO [27407]: SERVER_NAME = oameye.works.coregrade.com -- 07:09:14.454 INFO [27407]: HTTP_COOKIE = ci_session=fo8fdh1tu2b6squ80ks8msc97nngadj4; _ga=GA1.2.2030761402.1585610624 -- 07:09:14.454 INFO [27407]: QUERY_STRING = /member/viewRoom -- 07:09:14.454 INFO [27407]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 07:09:14.491 INFO [27407]: COREGRADE is stopping... -- 07:09:14.491 DEBUG [27407]: Closing database connection -- 07:09:14.491 SQL [27407]: pgsql_close() -- 08:26:37.762 INFO [27517]: COREGRADE is starting... -- 08:26:37.763 INFO [27517]: Version from config: 1.0 -- 08:26:37.763 DEBUG [27517]: Connecting to database... -- 08:26:37.763 DEBUG [27517]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:26:37.763 SQL [27517]: pgsql_db_connect() -- 08:26:37.767 DEBUG [27517]: Database connection successful -- 08:26:37.767 INFO [27517]: _SERVER found -- 08:26:37.767 INFO [27517]: REMOTE_ADDR = 10.0.0.15 -- 08:26:37.767 INFO [27517]: SERVER_NAME = oameye.works.coregrade.com -- 08:26:37.767 INFO [27517]: QUERY_STRING = -- 08:26:37.767 INFO [27517]: HTTP_X_FORWARDED_FOR = 132.145.240.2 -- 08:26:37.807 INFO [27517]: COREGRADE is stopping... -- 08:26:37.807 DEBUG [27517]: Closing database connection -- 08:26:37.807 SQL [27517]: pgsql_close() -- 08:26:38.670 INFO [27405]: COREGRADE is starting... -- 08:26:38.670 INFO [27405]: Version from config: 1.0 -- 08:26:38.670 DEBUG [27405]: Connecting to database... -- 08:26:38.670 DEBUG [27405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:26:38.670 SQL [27405]: pgsql_db_connect() -- 08:26:38.674 DEBUG [27405]: Database connection successful -- 08:26:38.674 INFO [27405]: _SERVER found -- 08:26:38.674 INFO [27405]: REMOTE_ADDR = 10.0.0.15 -- 08:26:38.674 INFO [27405]: SERVER_NAME = oameye.works.coregrade.com -- 08:26:38.674 INFO [27405]: QUERY_STRING = /home.asp -- 08:26:38.674 INFO [27405]: HTTP_X_FORWARDED_FOR = 132.145.240.2 -- 08:26:38.688 INFO [27405]: COREGRADE is stopping... -- 08:26:38.688 DEBUG [27405]: Closing database connection -- 08:26:38.688 SQL [27405]: pgsql_close() -- 08:26:39.389 INFO [27404]: COREGRADE is starting... -- 08:26:39.390 INFO [27404]: Version from config: 1.0 -- 08:26:39.390 DEBUG [27404]: Connecting to database... -- 08:26:39.390 DEBUG [27404]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:26:39.390 SQL [27404]: pgsql_db_connect() -- 08:26:39.394 DEBUG [27404]: Database connection successful -- 08:26:39.394 INFO [27404]: _SERVER found -- 08:26:39.394 INFO [27404]: REMOTE_ADDR = 10.0.0.15 -- 08:26:39.394 INFO [27404]: SERVER_NAME = oameye.works.coregrade.com -- 08:26:39.394 INFO [27404]: QUERY_STRING = /login.cgi -- 08:26:39.394 INFO [27404]: HTTP_X_FORWARDED_FOR = 132.145.240.2 -- 08:26:39.408 INFO [27404]: COREGRADE is stopping... -- 08:26:39.408 DEBUG [27404]: Closing database connection -- 08:26:39.408 SQL [27404]: pgsql_close() -- 08:26:41.052 INFO [27404]: COREGRADE is starting... -- 08:26:41.052 INFO [27404]: Version from config: 1.0 -- 08:26:41.052 DEBUG [27404]: Connecting to database... -- 08:26:41.052 DEBUG [27404]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:26:41.052 SQL [27404]: pgsql_db_connect() -- 08:26:41.056 DEBUG [27404]: Database connection successful -- 08:26:41.056 INFO [27404]: _SERVER found -- 08:26:41.056 INFO [27404]: REMOTE_ADDR = 10.0.0.15 -- 08:26:41.056 INFO [27404]: SERVER_NAME = oameye.works.coregrade.com -- 08:26:41.056 INFO [27404]: QUERY_STRING = /dana-na/auth/url_default/welcome.cgi -- 08:26:41.056 INFO [27404]: HTTP_X_FORWARDED_FOR = 132.145.240.2 -- 08:26:41.067 INFO [27404]: COREGRADE is stopping... -- 08:26:41.067 DEBUG [27404]: Closing database connection -- 08:26:41.068 SQL [27404]: pgsql_close() -- 08:26:41.822 INFO [27405]: COREGRADE is starting... -- 08:26:41.822 INFO [27405]: Version from config: 1.0 -- 08:26:41.822 DEBUG [27405]: Connecting to database... -- 08:26:41.822 DEBUG [27405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:26:41.822 SQL [27405]: pgsql_db_connect() -- 08:26:41.827 DEBUG [27405]: Database connection successful -- 08:26:41.827 INFO [27405]: _SERVER found -- 08:26:41.827 INFO [27405]: REMOTE_ADDR = 10.0.0.15 -- 08:26:41.827 INFO [27405]: SERVER_NAME = oameye.works.coregrade.com -- 08:26:41.827 INFO [27405]: QUERY_STRING = /remote/login -- 08:26:41.827 INFO [27405]: HTTP_X_FORWARDED_FOR = 132.145.240.2 -- 08:26:41.838 INFO [27405]: COREGRADE is stopping... -- 08:26:41.838 DEBUG [27405]: Closing database connection -- 08:26:41.838 SQL [27405]: pgsql_close() -- 08:26:42.530 INFO [27517]: COREGRADE is starting... -- 08:26:42.530 INFO [27517]: Version from config: 1.0 -- 08:26:42.530 DEBUG [27517]: Connecting to database... -- 08:26:42.530 DEBUG [27517]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:26:42.530 SQL [27517]: pgsql_db_connect() -- 08:26:42.535 DEBUG [27517]: Database connection successful -- 08:26:42.535 INFO [27517]: _SERVER found -- 08:26:42.535 INFO [27517]: REMOTE_ADDR = 10.0.0.15 -- 08:26:42.535 INFO [27517]: SERVER_NAME = oameye.works.coregrade.com -- 08:26:42.535 INFO [27517]: QUERY_STRING = /index.asp -- 08:26:42.535 INFO [27517]: HTTP_X_FORWARDED_FOR = 132.145.240.2 -- 08:26:42.546 INFO [27517]: COREGRADE is stopping... -- 08:26:42.546 DEBUG [27517]: Closing database connection -- 08:26:42.546 SQL [27517]: pgsql_close() -- 08:44:17.311 INFO [27406]: COREGRADE is starting... -- 08:44:17.312 INFO [27406]: Version from config: 1.0 -- 08:44:17.312 DEBUG [27406]: Connecting to database... -- 08:44:17.312 DEBUG [27406]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:44:17.312 SQL [27406]: pgsql_db_connect() -- 08:44:17.316 DEBUG [27406]: Database connection successful -- 08:44:17.316 INFO [27406]: _SERVER found -- 08:44:17.316 INFO [27406]: REMOTE_ADDR = 10.0.0.15 -- 08:44:17.316 INFO [27406]: SERVER_NAME = oameye.works.coregrade.com -- 08:44:17.316 INFO [27406]: QUERY_STRING = /robots.txt -- 08:44:17.316 INFO [27406]: HTTP_X_FORWARDED_FOR = 66.249.64.180 -- 08:44:17.329 INFO [27406]: COREGRADE is stopping... -- 08:44:17.329 DEBUG [27406]: Closing database connection -- 08:44:17.329 SQL [27406]: pgsql_close() -- 08:44:17.363 INFO [27406]: COREGRADE is starting... -- 08:44:17.363 INFO [27406]: Version from config: 1.0 -- 08:44:17.363 DEBUG [27406]: Connecting to database... -- 08:44:17.363 DEBUG [27406]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:44:17.363 SQL [27406]: pgsql_db_connect() -- 08:44:17.367 DEBUG [27406]: Database connection successful -- 08:44:17.367 INFO [27406]: _SERVER found -- 08:44:17.367 INFO [27406]: REMOTE_ADDR = 10.0.0.15 -- 08:44:17.367 INFO [27406]: SERVER_NAME = oameye.works.coregrade.com -- 08:44:17.367 INFO [27406]: QUERY_STRING = /welcome/viewLogin -- 08:44:17.367 INFO [27406]: HTTP_X_FORWARDED_FOR = 66.249.64.180 -- 08:44:17.399 INFO [27406]: COREGRADE is stopping... -- 08:44:17.399 DEBUG [27406]: Closing database connection -- 08:44:17.399 SQL [27406]: pgsql_close() -- 08:44:18.428 INFO [432]: COREGRADE is starting... -- 08:44:18.429 INFO [432]: Version from config: 1.0 -- 08:44:18.429 DEBUG [432]: Connecting to database... -- 08:44:18.429 DEBUG [432]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:44:18.429 SQL [432]: pgsql_db_connect() -- 08:44:18.433 DEBUG [432]: Database connection successful -- 08:44:18.433 INFO [432]: _SERVER found -- 08:44:18.433 INFO [432]: REMOTE_ADDR = 10.0.0.15 -- 08:44:18.433 INFO [432]: SERVER_NAME = oameye.works.coregrade.com -- 08:44:18.433 INFO [432]: HTTP_COOKIE = ci_session=36dbabfsbv7p161l0ot0u9r3ou8on2ff -- 08:44:18.433 INFO [432]: QUERY_STRING = /auth/index -- 08:44:18.433 INFO [432]: HTTP_X_FORWARDED_FOR = 66.249.64.184 -- 08:44:18.473 INFO [432]: COREGRADE is stopping... -- 08:44:18.473 DEBUG [432]: Closing database connection -- 08:44:18.473 SQL [432]: pgsql_close() -- 09:49:12.966 INFO [431]: COREGRADE is starting... -- 09:49:12.967 INFO [431]: Version from config: 1.0 -- 09:49:12.967 DEBUG [431]: Connecting to database... -- 09:49:12.967 DEBUG [431]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:12.967 SQL [431]: pgsql_db_connect() -- 09:49:12.972 DEBUG [431]: Database connection successful -- 09:49:12.972 INFO [431]: _SERVER found -- 09:49:12.972 INFO [431]: REMOTE_ADDR = 10.0.0.15 -- 09:49:12.972 INFO [431]: SERVER_NAME = oameye.works.coregrade.com -- 09:49:12.972 INFO [431]: HTTP_COOKIE = _ga=GA1.2.2030761402.1585610624 -- 09:49:12.972 INFO [431]: QUERY_STRING = /auth -- 09:49:12.972 INFO [431]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:49:13.009 INFO [431]: COREGRADE is stopping... -- 09:49:13.009 DEBUG [431]: Closing database connection -- 09:49:13.009 SQL [431]: pgsql_close() -- 09:49:14.791 INFO [431]: COREGRADE is starting... -- 09:49:14.791 INFO [431]: Version from config: 1.0 -- 09:49:14.791 DEBUG [431]: Connecting to database... -- 09:49:14.791 DEBUG [431]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:14.791 SQL [431]: pgsql_db_connect() -- 09:49:14.795 DEBUG [431]: Database connection successful -- 09:49:14.795 INFO [431]: _SERVER found -- 09:49:14.795 INFO [431]: REMOTE_ADDR = 10.0.0.15 -- 09:49:14.795 INFO [431]: SERVER_NAME = oameye.works.coregrade.com -- 09:49:14.795 INFO [431]: HTTP_COOKIE = ci_session=n05o9tsg29pnu7ui94j275q0sjcqnaas; _ga=GA1.2.2030761402.1585610624 -- 09:49:14.795 INFO [431]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 09:49:14.795 INFO [431]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 09:49:14.807 INFO [431]: COREGRADE is stopping... -- 09:49:14.807 DEBUG [431]: Closing database connection -- 09:49:14.807 SQL [431]: pgsql_close() -- 09:55:09.443 INFO [28787]: COREGRADE is starting... -- 09:55:09.443 INFO [28787]: Version from config: 1.0 -- 09:55:09.443 DEBUG [28787]: Connecting to database... -- 09:55:09.444 DEBUG [28787]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:55:09.444 SQL [28787]: pgsql_db_connect() -- 09:55:09.448 DEBUG [28787]: Database connection successful -- 09:55:09.448 INFO [28787]: _SERVER found -- 09:55:09.448 INFO [28787]: REMOTE_ADDR = 10.0.0.15 -- 09:55:09.448 INFO [28787]: SERVER_NAME = oameye.works.coregrade.com -- 09:55:09.448 INFO [28787]: QUERY_STRING = -- 09:55:09.448 INFO [28787]: HTTP_X_FORWARDED_FOR = 185.234.218.68 -- 09:55:09.482 INFO [28787]: COREGRADE is stopping... -- 09:55:09.482 DEBUG [28787]: Closing database connection -- 09:55:09.482 SQL [28787]: pgsql_close() -- 10:09:13.996 INFO [28789]: COREGRADE is starting... -- 10:09:13.996 INFO [28789]: Version from config: 1.0 -- 10:09:13.996 DEBUG [28789]: Connecting to database... -- 10:09:13.996 DEBUG [28789]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:13.996 SQL [28789]: pgsql_db_connect() -- 10:09:14.001 DEBUG [28789]: Database connection successful -- 10:09:14.001 INFO [28789]: _SERVER found -- 10:09:14.001 INFO [28789]: REMOTE_ADDR = 10.0.0.15 -- 10:09:14.001 INFO [28789]: SERVER_NAME = oameye.works.coregrade.com -- 10:09:14.001 INFO [28789]: QUERY_STRING = /TP/public/index.php -- 10:09:14.001 INFO [28789]: HTTP_X_FORWARDED_FOR = 114.215.188.78 -- 10:09:14.016 INFO [28789]: COREGRADE is stopping... -- 10:09:14.016 DEBUG [28789]: Closing database connection -- 10:09:14.016 SQL [28789]: pgsql_close() -- 10:09:17.674 INFO [28789]: COREGRADE is starting... -- 10:09:17.674 INFO [28789]: Version from config: 1.0 -- 10:09:17.674 DEBUG [28789]: Connecting to database... -- 10:09:17.675 DEBUG [28789]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:17.675 SQL [28789]: pgsql_db_connect() -- 10:09:17.679 DEBUG [28789]: Database connection successful -- 10:09:17.679 INFO [28789]: _SERVER found -- 10:09:17.679 INFO [28789]: REMOTE_ADDR = 10.0.0.15 -- 10:09:17.679 INFO [28789]: SERVER_NAME = oameye.works.coregrade.com -- 10:09:17.679 INFO [28789]: QUERY_STRING = /TP/index.php -- 10:09:17.679 INFO [28789]: HTTP_X_FORWARDED_FOR = 114.215.188.78 -- 10:09:17.690 INFO [28789]: COREGRADE is stopping... -- 10:09:17.690 DEBUG [28789]: Closing database connection -- 10:09:17.690 SQL [28789]: pgsql_close() -- 10:09:22.299 INFO [28789]: COREGRADE is starting... -- 10:09:22.299 INFO [28789]: Version from config: 1.0 -- 10:09:22.299 DEBUG [28789]: Connecting to database... -- 10:09:22.299 DEBUG [28789]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:22.299 SQL [28789]: pgsql_db_connect() -- 10:09:22.303 DEBUG [28789]: Database connection successful -- 10:09:22.303 INFO [28789]: _SERVER found -- 10:09:22.303 INFO [28789]: REMOTE_ADDR = 10.0.0.15 -- 10:09:22.303 INFO [28789]: SERVER_NAME = oameye.works.coregrade.com -- 10:09:22.303 INFO [28789]: QUERY_STRING = /thinkphp/html/public/index.php -- 10:09:22.303 INFO [28789]: HTTP_X_FORWARDED_FOR = 114.215.188.78 -- 10:09:22.314 INFO [28789]: COREGRADE is stopping... -- 10:09:22.314 DEBUG [28789]: Closing database connection -- 10:09:22.314 SQL [28789]: pgsql_close() -- 10:09:25.851 INFO [28789]: COREGRADE is starting... -- 10:09:25.851 INFO [28789]: Version from config: 1.0 -- 10:09:25.851 DEBUG [28789]: Connecting to database... -- 10:09:25.851 DEBUG [28789]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:25.852 SQL [28789]: pgsql_db_connect() -- 10:09:25.856 DEBUG [28789]: Database connection successful -- 10:09:25.856 INFO [28789]: _SERVER found -- 10:09:25.856 INFO [28789]: REMOTE_ADDR = 10.0.0.15 -- 10:09:25.856 INFO [28789]: SERVER_NAME = oameye.works.coregrade.com -- 10:09:25.856 INFO [28789]: QUERY_STRING = /html/public/index.php -- 10:09:25.856 INFO [28789]: HTTP_X_FORWARDED_FOR = 114.215.188.78 -- 10:09:25.867 INFO [28789]: COREGRADE is stopping... -- 10:09:25.867 DEBUG [28789]: Closing database connection -- 10:09:25.867 SQL [28789]: pgsql_close() -- 10:09:28.579 INFO [27408]: COREGRADE is starting... -- 10:09:28.580 INFO [27408]: Version from config: 1.0 -- 10:09:28.580 DEBUG [27408]: Connecting to database... -- 10:09:28.580 DEBUG [27408]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:28.580 SQL [27408]: pgsql_db_connect() -- 10:09:28.584 DEBUG [27408]: Database connection successful -- 10:09:28.584 INFO [27408]: _SERVER found -- 10:09:28.584 INFO [27408]: REMOTE_ADDR = 10.0.0.15 -- 10:09:28.584 INFO [27408]: SERVER_NAME = oameye.works.coregrade.com -- 10:09:28.584 INFO [27408]: QUERY_STRING = /public/index.php -- 10:09:28.584 INFO [27408]: HTTP_X_FORWARDED_FOR = 114.215.188.78 -- 10:09:28.598 INFO [27408]: COREGRADE is stopping... -- 10:09:28.598 DEBUG [27408]: Closing database connection -- 10:09:28.598 SQL [27408]: pgsql_close() -- 10:09:32.561 INFO [27407]: COREGRADE is starting... -- 10:09:32.561 INFO [27407]: Version from config: 1.0 -- 10:09:32.561 DEBUG [27407]: Connecting to database... -- 10:09:32.561 DEBUG [27407]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:32.561 SQL [27407]: pgsql_db_connect() -- 10:09:32.565 DEBUG [27407]: Database connection successful -- 10:09:32.565 INFO [27407]: _SERVER found -- 10:09:32.565 INFO [27407]: REMOTE_ADDR = 10.0.0.15 -- 10:09:32.565 INFO [27407]: SERVER_NAME = oameye.works.coregrade.com -- 10:09:32.565 INFO [27407]: QUERY_STRING = /TP/html/public/index.php -- 10:09:32.565 INFO [27407]: HTTP_X_FORWARDED_FOR = 114.215.188.78 -- 10:09:32.578 INFO [27407]: COREGRADE is stopping... -- 10:09:32.578 DEBUG [27407]: Closing database connection -- 10:09:32.578 SQL [27407]: pgsql_close() -- 10:09:37.310 INFO [27404]: COREGRADE is starting... -- 10:09:37.310 INFO [27404]: Version from config: 1.0 -- 10:09:37.310 DEBUG [27404]: Connecting to database... -- 10:09:37.310 DEBUG [27404]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:37.310 SQL [27404]: pgsql_db_connect() -- 10:09:37.314 DEBUG [27404]: Database connection successful -- 10:09:37.314 INFO [27404]: _SERVER found -- 10:09:37.314 INFO [27404]: REMOTE_ADDR = 10.0.0.15 -- 10:09:37.314 INFO [27404]: SERVER_NAME = oameye.works.coregrade.com -- 10:09:37.314 INFO [27404]: QUERY_STRING = /elrekt.php -- 10:09:37.314 INFO [27404]: HTTP_X_FORWARDED_FOR = 114.215.188.78 -- 10:09:37.327 INFO [27404]: COREGRADE is stopping... -- 10:09:37.327 DEBUG [27404]: Closing database connection -- 10:09:37.327 SQL [27404]: pgsql_close() -- 10:09:42.225 INFO [27404]: COREGRADE is starting... -- 10:09:42.225 INFO [27404]: Version from config: 1.0 -- 10:09:42.225 DEBUG [27404]: Connecting to database... -- 10:09:42.225 DEBUG [27404]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:42.225 SQL [27404]: pgsql_db_connect() -- 10:09:42.229 DEBUG [27404]: Database connection successful -- 10:09:42.229 INFO [27404]: _SERVER found -- 10:09:42.229 INFO [27404]: REMOTE_ADDR = 10.0.0.15 -- 10:09:42.229 INFO [27404]: SERVER_NAME = oameye.works.coregrade.com -- 10:09:42.229 INFO [27404]: QUERY_STRING = -- 10:09:42.229 INFO [27404]: HTTP_X_FORWARDED_FOR = 114.215.188.78 -- 10:09:42.263 INFO [27404]: COREGRADE is stopping... -- 10:09:42.264 DEBUG [27404]: Closing database connection -- 10:09:42.264 SQL [27404]: pgsql_close() -- 10:09:45.259 INFO [27405]: COREGRADE is starting... -- 10:09:45.260 INFO [27405]: Version from config: 1.0 -- 10:09:45.260 DEBUG [27405]: Connecting to database... -- 10:09:45.260 DEBUG [27405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:45.260 SQL [27405]: pgsql_db_connect() -- 10:09:45.264 DEBUG [27405]: Database connection successful -- 10:09:45.264 INFO [27405]: _SERVER found -- 10:09:45.264 INFO [27405]: REMOTE_ADDR = 10.0.0.15 -- 10:09:45.264 INFO [27405]: SERVER_NAME = oameye.works.coregrade.com -- 10:09:45.264 INFO [27405]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 10:09:45.264 INFO [27405]: HTTP_X_FORWARDED_FOR = 114.215.188.78 -- 10:09:45.298 INFO [27405]: COREGRADE is stopping... -- 10:09:45.298 DEBUG [27405]: Closing database connection -- 10:09:45.298 SQL [27405]: pgsql_close() -- 10:09:48.619 INFO [27517]: COREGRADE is starting... -- 10:09:48.620 INFO [27517]: Version from config: 1.0 -- 10:09:48.620 DEBUG [27517]: Connecting to database... -- 10:09:48.620 DEBUG [27517]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:48.620 SQL [27517]: pgsql_db_connect() -- 10:09:48.624 DEBUG [27517]: Database connection successful -- 10:09:48.624 INFO [27517]: _SERVER found -- 10:09:48.624 INFO [27517]: REMOTE_ADDR = 10.0.0.15 -- 10:09:48.624 INFO [27517]: SERVER_NAME = oameye.works.coregrade.com -- 10:09:48.624 INFO [27517]: QUERY_STRING = s=captcha -- 10:09:48.624 INFO [27517]: HTTP_X_FORWARDED_FOR = 114.215.188.78 -- 10:09:48.658 INFO [27517]: COREGRADE is stopping... -- 10:09:48.658 DEBUG [27517]: Closing database connection -- 10:09:48.658 SQL [27517]: pgsql_close() -- 10:09:50.332 INFO [27517]: COREGRADE is starting... -- 10:09:50.332 INFO [27517]: Version from config: 1.0 -- 10:09:50.332 DEBUG [27517]: Connecting to database... -- 10:09:50.332 DEBUG [27517]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:50.332 SQL [27517]: pgsql_db_connect() -- 10:09:50.336 DEBUG [27517]: Database connection successful -- 10:09:50.336 INFO [27517]: _SERVER found -- 10:09:50.336 INFO [27517]: REMOTE_ADDR = 10.0.0.15 -- 10:09:50.336 INFO [27517]: SERVER_NAME = oameye.works.coregrade.com -- 10:09:50.336 INFO [27517]: QUERY_STRING = -- 10:09:50.336 INFO [27517]: HTTP_X_FORWARDED_FOR = 114.215.188.78 -- 10:09:50.372 INFO [27517]: COREGRADE is stopping... -- 10:09:50.372 DEBUG [27517]: Closing database connection -- 10:09:50.372 SQL [27517]: pgsql_close() -- 11:05:38.030 INFO [27406]: COREGRADE is starting... -- 11:05:38.030 INFO [27406]: Version from config: 1.0 -- 11:05:38.030 DEBUG [27406]: Connecting to database... -- 11:05:38.030 DEBUG [27406]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:05:38.030 SQL [27406]: pgsql_db_connect() -- 11:05:38.035 DEBUG [27406]: Database connection successful -- 11:05:38.035 INFO [27406]: _SERVER found -- 11:05:38.035 INFO [27406]: REMOTE_ADDR = 10.0.0.15 -- 11:05:38.035 INFO [27406]: SERVER_NAME = oameye.works.coregrade.com -- 11:05:38.035 INFO [27406]: QUERY_STRING = /wp-login.php -- 11:05:38.035 INFO [27406]: HTTP_X_FORWARDED_FOR = 142.93.174.86 -- 11:05:38.049 INFO [27406]: COREGRADE is stopping... -- 11:05:38.049 DEBUG [27406]: Closing database connection -- 11:05:38.049 SQL [27406]: pgsql_close() -- 19:37:10.408 INFO [432]: COREGRADE is starting... -- 19:37:10.408 INFO [432]: Version from config: 1.0 -- 19:37:10.408 DEBUG [432]: Connecting to database... -- 19:37:10.409 DEBUG [432]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:37:10.409 SQL [432]: pgsql_db_connect() -- 19:37:10.414 DEBUG [432]: Database connection successful -- 19:37:10.414 INFO [432]: _SERVER found -- 19:37:10.414 INFO [432]: REMOTE_ADDR = 10.0.0.15 -- 19:37:10.414 INFO [432]: SERVER_NAME = oameye.works.coregrade.com -- 19:37:10.414 INFO [432]: QUERY_STRING = -- 19:37:10.414 INFO [432]: HTTP_X_FORWARDED_FOR = 3.0.209.206 -- 19:37:10.466 INFO [432]: COREGRADE is stopping... -- 19:37:10.466 DEBUG [432]: Closing database connection -- 19:37:10.467 SQL [432]: pgsql_close() -- 01:19:38.614 INFO [431]: COREGRADE is starting... -- 01:19:38.615 INFO [431]: Version from config: 1.0 -- 01:19:38.615 DEBUG [431]: Connecting to database... -- 01:19:38.615 DEBUG [431]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:19:38.615 SQL [431]: pgsql_db_connect() -- 01:19:38.621 DEBUG [431]: Database connection successful -- 01:19:38.621 INFO [431]: _SERVER found -- 01:19:38.621 INFO [431]: REMOTE_ADDR = 10.0.0.15 -- 01:19:38.621 INFO [431]: SERVER_NAME = oameye.works.coregrade.com -- 01:19:38.621 INFO [431]: QUERY_STRING = /.well-known/acme-challenge/QFUgR3N4BHtGOFN94pDKj9tUC4Dytv7zvnQWvN2DoVs -- 01:19:38.621 INFO [431]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 01:19:38.636 INFO [431]: COREGRADE is stopping... -- 01:19:38.636 DEBUG [431]: Closing database connection -- 01:19:38.636 SQL [431]: pgsql_close() -- 01:19:38.905 INFO [431]: COREGRADE is starting... -- 01:19:38.905 INFO [431]: Version from config: 1.0 -- 01:19:38.905 DEBUG [431]: Connecting to database... -- 01:19:38.905 DEBUG [431]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:19:38.905 SQL [431]: pgsql_db_connect() -- 01:19:38.909 DEBUG [431]: Database connection successful -- 01:19:38.909 INFO [431]: _SERVER found -- 01:19:38.909 INFO [431]: REMOTE_ADDR = 10.0.0.15 -- 01:19:38.909 INFO [431]: SERVER_NAME = oameye.works.coregrade.com -- 01:19:38.909 INFO [431]: QUERY_STRING = /.well-known/acme-challenge/QFUgR3N4BHtGOFN94pDKj9tUC4Dytv7zvnQWvN2DoVs -- 01:19:38.909 INFO [431]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 01:19:38.921 INFO [431]: COREGRADE is stopping... -- 01:19:38.921 DEBUG [431]: Closing database connection -- 01:19:38.921 SQL [431]: pgsql_close() -- 01:19:39.004 INFO [431]: COREGRADE is starting... -- 01:19:39.004 INFO [431]: Version from config: 1.0 -- 01:19:39.004 DEBUG [431]: Connecting to database... -- 01:19:39.004 DEBUG [431]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:19:39.004 SQL [431]: pgsql_db_connect() -- 01:19:39.008 DEBUG [431]: Database connection successful -- 01:19:39.008 INFO [431]: _SERVER found -- 01:19:39.008 INFO [431]: REMOTE_ADDR = 10.0.0.15 -- 01:19:39.008 INFO [431]: SERVER_NAME = oameye.works.coregrade.com -- 01:19:39.008 INFO [431]: QUERY_STRING = /.well-known/acme-challenge/QFUgR3N4BHtGOFN94pDKj9tUC4Dytv7zvnQWvN2DoVs -- 01:19:39.008 INFO [431]: HTTP_X_FORWARDED_FOR = 18.196.96.172 -- 01:19:39.020 INFO [431]: COREGRADE is stopping... -- 01:19:39.020 DEBUG [431]: Closing database connection -- 01:19:39.020 SQL [431]: pgsql_close() -- 08:59:42.277 INFO [28789]: COREGRADE is starting... -- 08:59:42.277 INFO [28789]: Version from config: 1.0 -- 08:59:42.277 DEBUG [28789]: Connecting to database... -- 08:59:42.277 DEBUG [28789]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:59:42.277 SQL [28789]: pgsql_db_connect() -- 08:59:42.282 DEBUG [28789]: Database connection successful -- 08:59:42.282 INFO [28789]: _SERVER found -- 08:59:42.282 INFO [28789]: REMOTE_ADDR = 10.0.0.15 -- 08:59:42.282 INFO [28789]: SERVER_NAME = oameye.works.coregrade.com -- 08:59:42.282 INFO [28789]: QUERY_STRING = -- 08:59:42.282 INFO [28789]: HTTP_X_FORWARDED_FOR = 144.202.68.196 -- 08:59:42.324 INFO [28789]: COREGRADE is stopping... -- 08:59:42.324 DEBUG [28789]: Closing database connection -- 08:59:42.324 SQL [28789]: pgsql_close() -- 09:23:38.920 INFO [27408]: COREGRADE is starting... -- 09:23:38.921 INFO [27408]: Version from config: 1.0 -- 09:23:38.921 DEBUG [27408]: Connecting to database... -- 09:23:38.921 DEBUG [27408]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:23:38.921 SQL [27408]: pgsql_db_connect() -- 09:23:38.925 DEBUG [27408]: Database connection successful -- 09:23:38.925 INFO [27408]: _SERVER found -- 09:23:38.925 INFO [27408]: REMOTE_ADDR = 10.0.0.15 -- 09:23:38.925 INFO [27408]: SERVER_NAME = oameye.works.coregrade.com -- 09:23:38.925 INFO [27408]: QUERY_STRING = s=index/think%5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=10086 -- 09:23:38.925 INFO [27408]: HTTP_X_FORWARDED_FOR = 122.112.169.80 -- 09:23:38.964 INFO [27408]: COREGRADE is stopping... -- 09:23:38.964 DEBUG [27408]: Closing database connection -- 09:23:38.964 SQL [27408]: pgsql_close() -- 09:23:39.576 INFO [27407]: COREGRADE is starting... -- 09:23:39.577 INFO [27407]: Version from config: 1.0 -- 09:23:39.577 DEBUG [27407]: Connecting to database... -- 09:23:39.577 DEBUG [27407]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:23:39.577 SQL [27407]: pgsql_db_connect() -- 09:23:39.581 DEBUG [27407]: Database connection successful -- 09:23:39.581 INFO [27407]: _SERVER found -- 09:23:39.581 INFO [27407]: REMOTE_ADDR = 10.0.0.15 -- 09:23:39.581 INFO [27407]: SERVER_NAME = oameye.works.coregrade.com -- 09:23:39.581 INFO [27407]: QUERY_STRING = -- 09:23:39.581 INFO [27407]: HTTP_X_FORWARDED_FOR = 122.112.169.80 -- 09:23:39.589 INFO [27407]: COREGRADE is stopping... -- 09:23:39.589 DEBUG [27407]: Closing database connection -- 09:23:39.589 SQL [27407]: pgsql_close() -- 09:23:39.956 INFO [27404]: COREGRADE is starting... -- 09:23:39.956 INFO [27404]: Version from config: 1.0 -- 09:23:39.956 DEBUG [27404]: Connecting to database... -- 09:23:39.956 DEBUG [27404]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:23:39.956 SQL [27404]: pgsql_db_connect() -- 09:23:39.960 DEBUG [27404]: Database connection successful -- 09:23:39.960 INFO [27404]: _SERVER found -- 09:23:39.960 INFO [27404]: REMOTE_ADDR = 10.0.0.15 -- 09:23:39.960 INFO [27404]: SERVER_NAME = oameye.works.coregrade.com -- 09:23:39.960 INFO [27404]: QUERY_STRING = s=/module/aciton/param1/$%7B@print(md5(10086))%7D -- 09:23:39.960 INFO [27404]: HTTP_X_FORWARDED_FOR = 122.112.169.80 -- 09:23:39.996 INFO [27404]: COREGRADE is stopping... -- 09:23:39.996 DEBUG [27404]: Closing database connection -- 09:23:39.996 SQL [27404]: pgsql_close() -- 09:23:57.901 INFO [27405]: COREGRADE is starting... -- 09:23:57.902 INFO [27405]: Version from config: 1.0 -- 09:23:57.902 DEBUG [27405]: Connecting to database... -- 09:23:57.902 DEBUG [27405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:23:57.902 SQL [27405]: pgsql_db_connect() -- 09:23:57.906 DEBUG [27405]: Database connection successful -- 09:23:57.906 INFO [27405]: _SERVER found -- 09:23:57.906 INFO [27405]: REMOTE_ADDR = 10.0.0.15 -- 09:23:57.906 INFO [27405]: SERVER_NAME = oameye.works.coregrade.com -- 09:23:57.906 INFO [27405]: QUERY_STRING = /base/post.php -- 09:23:57.906 INFO [27405]: HTTP_X_FORWARDED_FOR = 122.112.169.80 -- 09:23:57.919 INFO [27405]: COREGRADE is stopping... -- 09:23:57.919 DEBUG [27405]: Closing database connection -- 09:23:57.919 SQL [27405]: pgsql_close() -- 10:07:51.902 INFO [27517]: COREGRADE is starting... -- 10:07:51.902 INFO [27517]: Version from config: 1.0 -- 10:07:51.902 DEBUG [27517]: Connecting to database... -- 10:07:51.902 DEBUG [27517]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:07:51.902 SQL [27517]: pgsql_db_connect() -- 10:07:51.907 DEBUG [27517]: Database connection successful -- 10:07:51.907 INFO [27517]: _SERVER found -- 10:07:51.907 INFO [27517]: REMOTE_ADDR = 10.0.0.15 -- 10:07:51.907 INFO [27517]: SERVER_NAME = oameye.works.coregrade.com -- 10:07:51.907 INFO [27517]: QUERY_STRING = screen=App/&content=%3C?php%20phpinfo();?%3E -- 10:07:51.907 INFO [27517]: HTTP_X_FORWARDED_FOR = 50.206.204.146 -- 10:07:51.921 INFO [27517]: COREGRADE is stopping... -- 10:07:51.921 DEBUG [27517]: Closing database connection -- 10:07:51.921 SQL [27517]: pgsql_close() -- 10:13:35.918 INFO [27406]: COREGRADE is starting... -- 10:13:35.918 INFO [27406]: Version from config: 1.0 -- 10:13:35.918 DEBUG [27406]: Connecting to database... -- 10:13:35.918 DEBUG [27406]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:13:35.918 SQL [27406]: pgsql_db_connect() -- 10:13:35.922 DEBUG [27406]: Database connection successful -- 10:13:35.922 INFO [27406]: _SERVER found -- 10:13:35.922 INFO [27406]: REMOTE_ADDR = 10.0.0.15 -- 10:13:35.922 INFO [27406]: SERVER_NAME = oameye.works.coregrade.com -- 10:13:35.922 INFO [27406]: QUERY_STRING = /TP/public/index.php -- 10:13:35.922 INFO [27406]: HTTP_X_FORWARDED_FOR = 117.50.13.251 -- 10:13:35.936 INFO [27406]: COREGRADE is stopping... -- 10:13:35.936 DEBUG [27406]: Closing database connection -- 10:13:35.936 SQL [27406]: pgsql_close() -- 11:33:02.913 INFO [432]: COREGRADE is starting... -- 11:33:02.913 INFO [432]: Version from config: 1.0 -- 11:33:02.913 DEBUG [432]: Connecting to database... -- 11:33:02.913 DEBUG [432]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:33:02.913 SQL [432]: pgsql_db_connect() -- 11:33:02.918 DEBUG [432]: Database connection successful -- 11:33:02.918 INFO [432]: _SERVER found -- 11:33:02.918 INFO [432]: REMOTE_ADDR = 10.0.0.15 -- 11:33:02.918 INFO [432]: SERVER_NAME = oameye.works.coregrade.com -- 11:33:02.918 INFO [432]: QUERY_STRING = /wp-login.php -- 11:33:02.918 INFO [432]: HTTP_X_FORWARDED_FOR = 192.99.4.63 -- 11:33:02.933 INFO [432]: COREGRADE is stopping... -- 11:33:02.933 DEBUG [432]: Closing database connection -- 11:33:02.933 SQL [432]: pgsql_close() -- 11:33:08.611 INFO [28787]: COREGRADE is starting... -- 11:33:08.611 INFO [28787]: Version from config: 1.0 -- 11:33:08.611 DEBUG [28787]: Connecting to database... -- 11:33:08.611 DEBUG [28787]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:33:08.611 SQL [28787]: pgsql_db_connect() -- 11:33:08.615 DEBUG [28787]: Database connection successful -- 11:33:08.615 INFO [28787]: _SERVER found -- 11:33:08.615 INFO [28787]: REMOTE_ADDR = 10.0.0.15 -- 11:33:08.615 INFO [28787]: SERVER_NAME = oameye.works.coregrade.com -- 11:33:08.615 INFO [28787]: QUERY_STRING = /robots.txt -- 11:33:08.615 INFO [28787]: HTTP_X_FORWARDED_FOR = 192.99.4.63 -- 11:33:08.628 INFO [28787]: COREGRADE is stopping... -- 11:33:08.628 DEBUG [28787]: Closing database connection -- 11:33:08.628 SQL [28787]: pgsql_close() -- 13:54:34.858 INFO [431]: COREGRADE is starting... -- 13:54:34.859 INFO [431]: Version from config: 1.0 -- 13:54:34.859 DEBUG [431]: Connecting to database... -- 13:54:34.859 DEBUG [431]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:54:34.859 SQL [431]: pgsql_db_connect() -- 13:54:34.864 DEBUG [431]: Database connection successful -- 13:54:34.864 INFO [431]: _SERVER found -- 13:54:34.864 INFO [431]: REMOTE_ADDR = 10.0.0.15 -- 13:54:34.864 INFO [431]: SERVER_NAME = oameye.works.coregrade.com -- 13:54:34.864 INFO [431]: QUERY_STRING = f=search&m=index&keyword=aaa%2527%256f%2572%2520%2575%2570%2564%2561%2574%2565%2578%256d%256c%2528%2531%252c%2563%256f%256e%2563%2561%2574%2528%2531%252c%256d%2564%2535%2528%2531%2530%2530%2538%2536%2529%2529%252c%2531%2529%2523 -- 13:54:34.864 INFO [431]: HTTP_X_FORWARDED_FOR = 213.120.213.251 -- 13:54:34.909 INFO [431]: COREGRADE is stopping... -- 13:54:34.910 DEBUG [431]: Closing database connection -- 13:54:34.910 SQL [431]: pgsql_close() -- 19:49:45.791 INFO [28789]: COREGRADE is starting... -- 19:49:45.792 INFO [28789]: Version from config: 1.0 -- 19:49:45.792 DEBUG [28789]: Connecting to database... -- 19:49:45.792 DEBUG [28789]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:49:45.792 SQL [28789]: pgsql_db_connect() -- 19:49:45.797 DEBUG [28789]: Database connection successful -- 19:49:45.797 INFO [28789]: _SERVER found -- 19:49:45.797 INFO [28789]: REMOTE_ADDR = 10.0.0.15 -- 19:49:45.797 INFO [28789]: SERVER_NAME = oameye.works.coregrade.com -- 19:49:45.797 INFO [28789]: QUERY_STRING = /dana-na/auth/url_default/welcome.cgi -- 19:49:45.797 INFO [28789]: HTTP_X_FORWARDED_FOR = 35.229.249.135 -- 19:49:45.812 INFO [28789]: COREGRADE is stopping... -- 19:49:45.812 DEBUG [28789]: Closing database connection -- 19:49:45.812 SQL [28789]: pgsql_close() -- 19:49:46.955 INFO [28789]: COREGRADE is starting... -- 19:49:46.956 INFO [28789]: Version from config: 1.0 -- 19:49:46.956 DEBUG [28789]: Connecting to database... -- 19:49:46.956 DEBUG [28789]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:49:46.956 SQL [28789]: pgsql_db_connect() -- 19:49:46.960 DEBUG [28789]: Database connection successful -- 19:49:46.960 INFO [28789]: _SERVER found -- 19:49:46.960 INFO [28789]: REMOTE_ADDR = 10.0.0.15 -- 19:49:46.960 INFO [28789]: SERVER_NAME = oameye.works.coregrade.com -- 19:49:46.960 INFO [28789]: QUERY_STRING = /remote/login -- 19:49:46.960 INFO [28789]: HTTP_X_FORWARDED_FOR = 35.229.249.135 -- 19:49:46.972 INFO [28789]: COREGRADE is stopping... -- 19:49:46.972 DEBUG [28789]: Closing database connection -- 19:49:46.972 SQL [28789]: pgsql_close() -- 19:49:48.125 INFO [28789]: COREGRADE is starting... -- 19:49:48.126 INFO [28789]: Version from config: 1.0 -- 19:49:48.126 DEBUG [28789]: Connecting to database... -- 19:49:48.126 DEBUG [28789]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:49:48.126 SQL [28789]: pgsql_db_connect() -- 19:49:48.130 DEBUG [28789]: Database connection successful -- 19:49:48.130 INFO [28789]: _SERVER found -- 19:49:48.130 INFO [28789]: REMOTE_ADDR = 10.0.0.15 -- 19:49:48.130 INFO [28789]: SERVER_NAME = oameye.works.coregrade.com -- 19:49:48.130 INFO [28789]: QUERY_STRING = -- 19:49:48.130 INFO [28789]: HTTP_X_FORWARDED_FOR = 35.229.249.135 -- 19:49:48.166 INFO [28789]: COREGRADE is stopping... -- 19:49:48.166 DEBUG [28789]: Closing database connection -- 19:49:48.166 SQL [28789]: pgsql_close() -- 19:49:49.507 INFO [28789]: COREGRADE is starting... -- 19:49:49.507 INFO [28789]: Version from config: 1.0 -- 19:49:49.507 DEBUG [28789]: Connecting to database... -- 19:49:49.507 DEBUG [28789]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:49:49.507 SQL [28789]: pgsql_db_connect() -- 19:49:49.511 DEBUG [28789]: Database connection successful -- 19:49:49.511 INFO [28789]: _SERVER found -- 19:49:49.511 INFO [28789]: REMOTE_ADDR = 10.0.0.15 -- 19:49:49.511 INFO [28789]: SERVER_NAME = oameye.works.coregrade.com -- 19:49:49.511 INFO [28789]: QUERY_STRING = /index.asp -- 19:49:49.511 INFO [28789]: HTTP_X_FORWARDED_FOR = 35.229.249.135 -- 19:49:49.523 INFO [28789]: COREGRADE is stopping... -- 19:49:49.523 DEBUG [28789]: Closing database connection -- 19:49:49.523 SQL [28789]: pgsql_close() -- 20:10:41.036 INFO [27407]: COREGRADE is starting... -- 20:10:41.036 INFO [27407]: Version from config: 1.0 -- 20:10:41.036 DEBUG [27407]: Connecting to database... -- 20:10:41.036 DEBUG [27407]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:10:41.036 SQL [27407]: pgsql_db_connect() -- 20:10:41.041 DEBUG [27407]: Database connection successful -- 20:10:41.041 INFO [27407]: _SERVER found -- 20:10:41.041 INFO [27407]: REMOTE_ADDR = 10.0.0.15 -- 20:10:41.041 INFO [27407]: SERVER_NAME = oameye.works.coregrade.com -- 20:10:41.041 INFO [27407]: QUERY_STRING = -- 20:10:41.041 INFO [27407]: HTTP_X_FORWARDED_FOR = 130.61.83.191 -- 20:10:41.085 INFO [27407]: COREGRADE is stopping... -- 20:10:41.086 DEBUG [27407]: Closing database connection -- 20:10:41.086 SQL [27407]: pgsql_close() -- 20:10:41.850 INFO [27407]: COREGRADE is starting... -- 20:10:41.851 INFO [27407]: Version from config: 1.0 -- 20:10:41.851 DEBUG [27407]: Connecting to database... -- 20:10:41.851 DEBUG [27407]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:10:41.851 SQL [27407]: pgsql_db_connect() -- 20:10:41.855 DEBUG [27407]: Database connection successful -- 20:10:41.855 INFO [27407]: _SERVER found -- 20:10:41.855 INFO [27407]: REMOTE_ADDR = 10.0.0.15 -- 20:10:41.855 INFO [27407]: SERVER_NAME = oameye.works.coregrade.com -- 20:10:41.855 INFO [27407]: QUERY_STRING = /home.asp -- 20:10:41.855 INFO [27407]: HTTP_X_FORWARDED_FOR = 130.61.83.191 -- 20:10:41.867 INFO [27407]: COREGRADE is stopping... -- 20:10:41.867 DEBUG [27407]: Closing database connection -- 20:10:41.867 SQL [27407]: pgsql_close() -- 20:10:42.638 INFO [27407]: COREGRADE is starting... -- 20:10:42.638 INFO [27407]: Version from config: 1.0 -- 20:10:42.638 DEBUG [27407]: Connecting to database... -- 20:10:42.638 DEBUG [27407]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:10:42.638 SQL [27407]: pgsql_db_connect() -- 20:10:42.642 DEBUG [27407]: Database connection successful -- 20:10:42.642 INFO [27407]: _SERVER found -- 20:10:42.642 INFO [27407]: REMOTE_ADDR = 10.0.0.15 -- 20:10:42.642 INFO [27407]: SERVER_NAME = oameye.works.coregrade.com -- 20:10:42.642 INFO [27407]: QUERY_STRING = /login.cgi -- 20:10:42.642 INFO [27407]: HTTP_X_FORWARDED_FOR = 130.61.83.191 -- 20:10:42.654 INFO [27407]: COREGRADE is stopping... -- 20:10:42.654 DEBUG [27407]: Closing database connection -- 20:10:42.654 SQL [27407]: pgsql_close() -- 20:10:44.319 INFO [27407]: COREGRADE is starting... -- 20:10:44.320 INFO [27407]: Version from config: 1.0 -- 20:10:44.320 DEBUG [27407]: Connecting to database... -- 20:10:44.320 DEBUG [27407]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:10:44.320 SQL [27407]: pgsql_db_connect() -- 20:10:44.324 DEBUG [27407]: Database connection successful -- 20:10:44.324 INFO [27407]: _SERVER found -- 20:10:44.324 INFO [27407]: REMOTE_ADDR = 10.0.0.15 -- 20:10:44.324 INFO [27407]: SERVER_NAME = oameye.works.coregrade.com -- 20:10:44.324 INFO [27407]: QUERY_STRING = /dana-na/auth/url_default/welcome.cgi -- 20:10:44.324 INFO [27407]: HTTP_X_FORWARDED_FOR = 130.61.83.191 -- 20:10:44.335 INFO [27407]: COREGRADE is stopping... -- 20:10:44.335 DEBUG [27407]: Closing database connection -- 20:10:44.335 SQL [27407]: pgsql_close() -- 20:10:45.028 INFO [27407]: COREGRADE is starting... -- 20:10:45.029 INFO [27407]: Version from config: 1.0 -- 20:10:45.029 DEBUG [27407]: Connecting to database... -- 20:10:45.029 DEBUG [27407]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:10:45.029 SQL [27407]: pgsql_db_connect() -- 20:10:45.033 DEBUG [27407]: Database connection successful -- 20:10:45.033 INFO [27407]: _SERVER found -- 20:10:45.033 INFO [27407]: REMOTE_ADDR = 10.0.0.15 -- 20:10:45.033 INFO [27407]: SERVER_NAME = oameye.works.coregrade.com -- 20:10:45.033 INFO [27407]: QUERY_STRING = /remote/login -- 20:10:45.033 INFO [27407]: HTTP_X_FORWARDED_FOR = 130.61.83.191 -- 20:10:45.044 INFO [27407]: COREGRADE is stopping... -- 20:10:45.044 DEBUG [27407]: Closing database connection -- 20:10:45.044 SQL [27407]: pgsql_close() -- 20:10:45.783 INFO [27407]: COREGRADE is starting... -- 20:10:45.783 INFO [27407]: Version from config: 1.0 -- 20:10:45.783 DEBUG [27407]: Connecting to database... -- 20:10:45.783 DEBUG [27407]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:10:45.783 SQL [27407]: pgsql_db_connect() -- 20:10:45.787 DEBUG [27407]: Database connection successful -- 20:10:45.787 INFO [27407]: _SERVER found -- 20:10:45.787 INFO [27407]: REMOTE_ADDR = 10.0.0.15 -- 20:10:45.787 INFO [27407]: SERVER_NAME = oameye.works.coregrade.com -- 20:10:45.787 INFO [27407]: QUERY_STRING = /index.asp -- 20:10:45.787 INFO [27407]: HTTP_X_FORWARDED_FOR = 130.61.83.191 -- 20:10:45.799 INFO [27407]: COREGRADE is stopping... -- 20:10:45.799 DEBUG [27407]: Closing database connection -- 20:10:45.799 SQL [27407]: pgsql_close() -- 00:36:17.176 INFO [27404]: COREGRADE is starting... -- 00:36:17.176 INFO [27404]: Version from config: 1.0 -- 00:36:17.176 DEBUG [27404]: Connecting to database... -- 00:36:17.176 DEBUG [27404]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:36:17.176 SQL [27404]: pgsql_db_connect() -- 00:36:17.181 DEBUG [27404]: Database connection successful -- 00:36:17.181 INFO [27404]: _SERVER found -- 00:36:17.181 INFO [27404]: REMOTE_ADDR = 10.0.0.15 -- 00:36:17.181 INFO [27404]: SERVER_NAME = oameye.works.coregrade.com -- 00:36:17.181 INFO [27404]: QUERY_STRING = /.well-known/acme-challenge/Ey4y33AjCEPDbuZr5x83NJcCS4g9FkRNCA_KWRWm1QM -- 00:36:17.181 INFO [27404]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 00:36:17.205 INFO [27404]: COREGRADE is stopping... -- 00:36:17.205 DEBUG [27404]: Closing database connection -- 00:36:17.205 SQL [27404]: pgsql_close() -- 00:36:17.343 INFO [27517]: COREGRADE is starting... -- 00:36:17.344 INFO [27517]: Version from config: 1.0 -- 00:36:17.344 DEBUG [27517]: Connecting to database... -- 00:36:17.344 DEBUG [27517]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:36:17.344 SQL [27517]: pgsql_db_connect() -- 00:36:17.348 DEBUG [27517]: Database connection successful -- 00:36:17.348 INFO [27517]: _SERVER found -- 00:36:17.348 INFO [27517]: REMOTE_ADDR = 10.0.0.15 -- 00:36:17.348 INFO [27517]: SERVER_NAME = oameye.works.coregrade.com -- 00:36:17.348 INFO [27517]: QUERY_STRING = /.well-known/acme-challenge/Ey4y33AjCEPDbuZr5x83NJcCS4g9FkRNCA_KWRWm1QM -- 00:36:17.348 INFO [27517]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 00:36:17.366 INFO [27517]: COREGRADE is stopping... -- 00:36:17.366 DEBUG [27517]: Closing database connection -- 00:36:17.366 SQL [27517]: pgsql_close() -- 00:36:17.451 INFO [27404]: COREGRADE is starting... -- 00:36:17.451 INFO [27404]: Version from config: 1.0 -- 00:36:17.451 DEBUG [27404]: Connecting to database... -- 00:36:17.451 DEBUG [27404]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:36:17.452 SQL [27404]: pgsql_db_connect() -- 00:36:17.456 DEBUG [27404]: Database connection successful -- 00:36:17.456 INFO [27404]: _SERVER found -- 00:36:17.456 INFO [27404]: REMOTE_ADDR = 10.0.0.15 -- 00:36:17.456 INFO [27404]: SERVER_NAME = oameye.works.coregrade.com -- 00:36:17.456 INFO [27404]: QUERY_STRING = /.well-known/acme-challenge/Ey4y33AjCEPDbuZr5x83NJcCS4g9FkRNCA_KWRWm1QM -- 00:36:17.456 INFO [27404]: HTTP_X_FORWARDED_FOR = 34.222.229.130 -- 00:36:17.468 INFO [27404]: COREGRADE is stopping... -- 00:36:17.468 DEBUG [27404]: Closing database connection -- 00:36:17.468 SQL [27404]: pgsql_close() -- 00:36:17.517 INFO [27517]: COREGRADE is starting... -- 00:36:17.517 INFO [27517]: Version from config: 1.0 -- 00:36:17.517 DEBUG [27517]: Connecting to database... -- 00:36:17.517 DEBUG [27517]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:36:17.517 SQL [27517]: pgsql_db_connect() -- 00:36:17.521 DEBUG [27517]: Database connection successful -- 00:36:17.521 INFO [27517]: _SERVER found -- 00:36:17.521 INFO [27517]: REMOTE_ADDR = 10.0.0.15 -- 00:36:17.521 INFO [27517]: SERVER_NAME = oameye.works.coregrade.com -- 00:36:17.521 INFO [27517]: QUERY_STRING = /.well-known/acme-challenge/Ey4y33AjCEPDbuZr5x83NJcCS4g9FkRNCA_KWRWm1QM -- 00:36:17.521 INFO [27517]: HTTP_X_FORWARDED_FOR = 52.28.236.88 -- 00:36:17.533 INFO [27517]: COREGRADE is stopping... -- 00:36:17.533 DEBUG [27517]: Closing database connection -- 00:36:17.533 SQL [27517]: pgsql_close() -- 04:38:55.664 INFO [28787]: COREGRADE is starting... -- 04:38:55.664 INFO [28787]: Version from config: 1.0 -- 04:38:55.664 DEBUG [28787]: Connecting to database... -- 04:38:55.664 DEBUG [28787]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:38:55.664 SQL [28787]: pgsql_db_connect() -- 04:38:55.670 DEBUG [28787]: Database connection successful -- 04:38:55.670 INFO [28787]: _SERVER found -- 04:38:55.670 INFO [28787]: REMOTE_ADDR = 10.0.0.15 -- 04:38:55.670 INFO [28787]: SERVER_NAME = oameye.works.coregrade.com -- 04:38:55.670 INFO [28787]: QUERY_STRING = -- 04:38:55.670 INFO [28787]: HTTP_X_FORWARDED_FOR = 193.118.53.194 -- 04:38:55.709 INFO [28787]: COREGRADE is stopping... -- 04:38:55.709 DEBUG [28787]: Closing database connection -- 04:38:55.709 SQL [28787]: pgsql_close() -- 09:56:34.639 INFO [431]: COREGRADE is starting... -- 09:56:34.640 INFO [431]: Version from config: 1.0 -- 09:56:34.640 DEBUG [431]: Connecting to database... -- 09:56:34.640 DEBUG [431]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:56:34.640 SQL [431]: pgsql_db_connect() -- 09:56:34.645 DEBUG [431]: Database connection successful -- 09:56:34.645 INFO [431]: _SERVER found -- 09:56:34.645 INFO [431]: REMOTE_ADDR = 10.0.0.15 -- 09:56:34.645 INFO [431]: SERVER_NAME = oameye.works.coregrade.com -- 09:56:34.645 INFO [431]: QUERY_STRING = -- 09:56:34.645 INFO [431]: HTTP_X_FORWARDED_FOR = 150.136.248.154 -- 09:56:34.682 INFO [431]: COREGRADE is stopping... -- 09:56:34.682 DEBUG [431]: Closing database connection -- 09:56:34.682 SQL [431]: pgsql_close() -- 09:56:34.850 INFO [28789]: COREGRADE is starting... -- 09:56:34.851 INFO [28789]: Version from config: 1.0 -- 09:56:34.851 DEBUG [28789]: Connecting to database... -- 09:56:34.851 DEBUG [28789]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:56:34.851 SQL [28789]: pgsql_db_connect() -- 09:56:34.855 DEBUG [28789]: Database connection successful -- 09:56:34.855 INFO [28789]: _SERVER found -- 09:56:34.855 INFO [28789]: REMOTE_ADDR = 10.0.0.15 -- 09:56:34.855 INFO [28789]: SERVER_NAME = oameye.works.coregrade.com -- 09:56:34.855 INFO [28789]: QUERY_STRING = /home.asp -- 09:56:34.855 INFO [28789]: HTTP_X_FORWARDED_FOR = 150.136.248.154 -- 09:56:34.870 INFO [28789]: COREGRADE is stopping... -- 09:56:34.870 DEBUG [28789]: Closing database connection -- 09:56:34.870 SQL [28789]: pgsql_close() -- 09:56:35.016 INFO [431]: COREGRADE is starting... -- 09:56:35.016 INFO [431]: Version from config: 1.0 -- 09:56:35.016 DEBUG [431]: Connecting to database... -- 09:56:35.016 DEBUG [431]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:56:35.016 SQL [431]: pgsql_db_connect() -- 09:56:35.020 DEBUG [431]: Database connection successful -- 09:56:35.020 INFO [431]: _SERVER found -- 09:56:35.020 INFO [431]: REMOTE_ADDR = 10.0.0.15 -- 09:56:35.020 INFO [431]: SERVER_NAME = oameye.works.coregrade.com -- 09:56:35.020 INFO [431]: QUERY_STRING = /login.cgi -- 09:56:35.020 INFO [431]: HTTP_X_FORWARDED_FOR = 150.136.248.154 -- 09:56:35.032 INFO [431]: COREGRADE is stopping... -- 09:56:35.032 DEBUG [431]: Closing database connection -- 09:56:35.032 SQL [431]: pgsql_close() -- 09:56:35.429 INFO [431]: COREGRADE is starting... -- 09:56:35.429 INFO [431]: Version from config: 1.0 -- 09:56:35.429 DEBUG [431]: Connecting to database... -- 09:56:35.429 DEBUG [431]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:56:35.429 SQL [431]: pgsql_db_connect() -- 09:56:35.434 DEBUG [431]: Database connection successful -- 09:56:35.434 INFO [431]: _SERVER found -- 09:56:35.434 INFO [431]: REMOTE_ADDR = 10.0.0.15 -- 09:56:35.434 INFO [431]: SERVER_NAME = oameye.works.coregrade.com -- 09:56:35.434 INFO [431]: QUERY_STRING = /dana-na/auth/url_default/welcome.cgi -- 09:56:35.434 INFO [431]: HTTP_X_FORWARDED_FOR = 150.136.248.154 -- 09:56:35.445 INFO [431]: COREGRADE is stopping... -- 09:56:35.445 DEBUG [431]: Closing database connection -- 09:56:35.445 SQL [431]: pgsql_close() -- 09:56:35.583 INFO [28789]: COREGRADE is starting... -- 09:56:35.583 INFO [28789]: Version from config: 1.0 -- 09:56:35.583 DEBUG [28789]: Connecting to database... -- 09:56:35.583 DEBUG [28789]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:56:35.583 SQL [28789]: pgsql_db_connect() -- 09:56:35.587 DEBUG [28789]: Database connection successful -- 09:56:35.588 INFO [28789]: _SERVER found -- 09:56:35.588 INFO [28789]: REMOTE_ADDR = 10.0.0.15 -- 09:56:35.588 INFO [28789]: SERVER_NAME = oameye.works.coregrade.com -- 09:56:35.588 INFO [28789]: QUERY_STRING = /remote/login -- 09:56:35.588 INFO [28789]: HTTP_X_FORWARDED_FOR = 150.136.248.154 -- 09:56:35.599 INFO [28789]: COREGRADE is stopping... -- 09:56:35.599 DEBUG [28789]: Closing database connection -- 09:56:35.599 SQL [28789]: pgsql_close() -- 09:56:35.744 INFO [27408]: COREGRADE is starting... -- 09:56:35.745 INFO [27408]: Version from config: 1.0 -- 09:56:35.745 DEBUG [27408]: Connecting to database... -- 09:56:35.745 DEBUG [27408]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:56:35.745 SQL [27408]: pgsql_db_connect() -- 09:56:35.749 DEBUG [27408]: Database connection successful -- 09:56:35.749 INFO [27408]: _SERVER found -- 09:56:35.749 INFO [27408]: REMOTE_ADDR = 10.0.0.15 -- 09:56:35.749 INFO [27408]: SERVER_NAME = oameye.works.coregrade.com -- 09:56:35.749 INFO [27408]: QUERY_STRING = /index.asp -- 09:56:35.749 INFO [27408]: HTTP_X_FORWARDED_FOR = 150.136.248.154 -- 09:56:35.762 INFO [27408]: COREGRADE is stopping... -- 09:56:35.763 DEBUG [27408]: Closing database connection -- 09:56:35.763 SQL [27408]: pgsql_close() -- 13:32:15.777 INFO [27407]: COREGRADE is starting... -- 13:32:15.778 INFO [27407]: Version from config: 1.0 -- 13:32:15.778 DEBUG [27407]: Connecting to database... -- 13:32:15.778 DEBUG [27407]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:32:15.778 SQL [27407]: pgsql_db_connect() -- 13:32:15.782 DEBUG [27407]: Database connection successful -- 13:32:15.782 INFO [27407]: _SERVER found -- 13:32:15.782 INFO [27407]: REMOTE_ADDR = 10.0.0.15 -- 13:32:15.782 INFO [27407]: SERVER_NAME = oameye.works.coregrade.com -- 13:32:15.782 INFO [27407]: QUERY_STRING = -- 13:32:15.782 INFO [27407]: HTTP_X_FORWARDED_FOR = 128.68.126.251 -- 13:32:15.821 INFO [27407]: COREGRADE is stopping... -- 13:32:15.821 DEBUG [27407]: Closing database connection -- 13:32:15.821 SQL [27407]: pgsql_close() -- 17:59:02.329 INFO [27405]: COREGRADE is starting... -- 17:59:02.329 INFO [27405]: Version from config: 1.0 -- 17:59:02.329 DEBUG [27405]: Connecting to database... -- 17:59:02.329 DEBUG [27405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:59:02.329 SQL [27405]: pgsql_db_connect() -- 17:59:02.335 DEBUG [27405]: Database connection successful -- 17:59:02.335 INFO [27405]: _SERVER found -- 17:59:02.335 INFO [27405]: REMOTE_ADDR = 10.0.0.15 -- 17:59:02.335 INFO [27405]: SERVER_NAME = oameye.works.coregrade.com -- 17:59:02.335 INFO [27405]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.431982062.1588184990 -- 17:59:02.335 INFO [27405]: QUERY_STRING = -- 17:59:02.335 INFO [27405]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:59:02.375 INFO [27405]: COREGRADE is stopping... -- 17:59:02.375 DEBUG [27405]: Closing database connection -- 17:59:02.375 SQL [27405]: pgsql_close() -- 17:59:02.737 INFO [27406]: COREGRADE is starting... -- 17:59:02.738 INFO [27406]: Version from config: 1.0 -- 17:59:02.738 DEBUG [27406]: Connecting to database... -- 17:59:02.738 DEBUG [27406]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:59:02.738 SQL [27406]: pgsql_db_connect() -- 17:59:02.742 DEBUG [27406]: Database connection successful -- 17:59:02.742 INFO [27406]: _SERVER found -- 17:59:02.742 INFO [27406]: REMOTE_ADDR = 10.0.0.15 -- 17:59:02.742 INFO [27406]: SERVER_NAME = oameye.works.coregrade.com -- 17:59:02.742 INFO [27406]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.431982062.1588184990; ci_session=fjbivl4hcbdll9tv4co4kt28tlhrom2t -- 17:59:02.742 INFO [27406]: QUERY_STRING = /assets/img/footer_1.jpg -- 17:59:02.742 INFO [27406]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:59:02.755 INFO [27406]: COREGRADE is stopping... -- 17:59:02.755 DEBUG [27406]: Closing database connection -- 17:59:02.755 SQL [27406]: pgsql_close() -- 01:20:01.950 INFO [27404]: COREGRADE is starting... -- 01:20:01.950 INFO [27404]: Version from config: 1.0 -- 01:20:01.950 DEBUG [27404]: Connecting to database... -- 01:20:01.950 DEBUG [27404]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:20:01.951 SQL [27404]: pgsql_db_connect() -- 01:20:01.955 DEBUG [27404]: Database connection successful -- 01:20:01.955 INFO [27404]: _SERVER found -- 01:20:01.955 INFO [27404]: REMOTE_ADDR = 10.0.0.15 -- 01:20:01.955 INFO [27404]: SERVER_NAME = oameye.works.coregrade.com -- 01:20:01.955 INFO [27404]: QUERY_STRING = -- 01:20:01.955 INFO [27404]: HTTP_X_FORWARDED_FOR = 193.118.53.202 -- 01:20:01.997 INFO [27404]: COREGRADE is stopping... -- 01:20:01.997 DEBUG [27404]: Closing database connection -- 01:20:01.997 SQL [27404]: pgsql_close() -- 01:56:13.109 INFO [27517]: COREGRADE is starting... -- 01:56:13.109 INFO [27517]: Version from config: 1.0 -- 01:56:13.109 DEBUG [27517]: Connecting to database... -- 01:56:13.109 DEBUG [27517]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:56:13.109 SQL [27517]: pgsql_db_connect() -- 01:56:13.113 DEBUG [27517]: Database connection successful -- 01:56:13.113 INFO [27517]: _SERVER found -- 01:56:13.113 INFO [27517]: REMOTE_ADDR = 10.0.0.15 -- 01:56:13.113 INFO [27517]: SERVER_NAME = oameye.works.coregrade.com -- 01:56:13.113 INFO [27517]: QUERY_STRING = -- 01:56:13.113 INFO [27517]: HTTP_X_FORWARDED_FOR = 185.234.217.172 -- 01:56:13.152 INFO [27517]: COREGRADE is stopping... -- 01:56:13.153 DEBUG [27517]: Closing database connection -- 01:56:13.153 SQL [27517]: pgsql_close() -- 01:56:14.105 INFO [27517]: COREGRADE is starting... -- 01:56:14.105 INFO [27517]: Version from config: 1.0 -- 01:56:14.105 DEBUG [27517]: Connecting to database... -- 01:56:14.105 DEBUG [27517]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:56:14.105 SQL [27517]: pgsql_db_connect() -- 01:56:14.109 DEBUG [27517]: Database connection successful -- 01:56:14.109 INFO [27517]: _SERVER found -- 01:56:14.109 INFO [27517]: REMOTE_ADDR = 10.0.0.15 -- 01:56:14.109 INFO [27517]: SERVER_NAME = oameye.works.coregrade.com -- 01:56:14.109 INFO [27517]: QUERY_STRING = /index.asp -- 01:56:14.109 INFO [27517]: HTTP_X_FORWARDED_FOR = 185.234.217.172 -- 01:56:14.121 INFO [27517]: COREGRADE is stopping... -- 01:56:14.121 DEBUG [27517]: Closing database connection -- 01:56:14.121 SQL [27517]: pgsql_close() -- 02:11:04.833 INFO [28787]: COREGRADE is starting... -- 02:11:04.833 INFO [28787]: Version from config: 1.0 -- 02:11:04.833 DEBUG [28787]: Connecting to database... -- 02:11:04.833 DEBUG [28787]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:11:04.833 SQL [28787]: pgsql_db_connect() -- 02:11:04.838 DEBUG [28787]: Database connection successful -- 02:11:04.838 INFO [28787]: _SERVER found -- 02:11:04.838 INFO [28787]: REMOTE_ADDR = 10.0.0.15 -- 02:11:04.838 INFO [28787]: SERVER_NAME = oameye.works.coregrade.com -- 02:11:04.838 INFO [28787]: QUERY_STRING = /.well-known/acme-challenge/DjKV7feRZCe8CJiJ9NpdK9k99HrbElHKH2QV9-oqIRA -- 02:11:04.838 INFO [28787]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 02:11:04.851 INFO [28787]: COREGRADE is stopping... -- 02:11:04.851 DEBUG [28787]: Closing database connection -- 02:11:04.851 SQL [28787]: pgsql_close() -- 02:11:04.993 INFO [28787]: COREGRADE is starting... -- 02:11:04.993 INFO [28787]: Version from config: 1.0 -- 02:11:04.993 DEBUG [28787]: Connecting to database... -- 02:11:04.993 DEBUG [28787]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:11:04.993 SQL [28787]: pgsql_db_connect() -- 02:11:04.997 DEBUG [28787]: Database connection successful -- 02:11:04.997 INFO [28787]: _SERVER found -- 02:11:04.997 INFO [28787]: REMOTE_ADDR = 10.0.0.15 -- 02:11:04.997 INFO [28787]: SERVER_NAME = oameye.works.coregrade.com -- 02:11:04.997 INFO [28787]: QUERY_STRING = /.well-known/acme-challenge/DjKV7feRZCe8CJiJ9NpdK9k99HrbElHKH2QV9-oqIRA -- 02:11:04.997 INFO [28787]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 02:11:05.009 INFO [28787]: COREGRADE is stopping... -- 02:11:05.009 DEBUG [28787]: Closing database connection -- 02:11:05.009 SQL [28787]: pgsql_close() -- 02:11:05.148 INFO [27407]: COREGRADE is starting... -- 02:11:05.148 INFO [27407]: Version from config: 1.0 -- 02:11:05.148 DEBUG [27407]: Connecting to database... -- 02:11:05.148 DEBUG [27407]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:11:05.148 SQL [27407]: pgsql_db_connect() -- 02:11:05.152 DEBUG [27407]: Database connection successful -- 02:11:05.152 INFO [27407]: _SERVER found -- 02:11:05.152 INFO [27407]: REMOTE_ADDR = 10.0.0.15 -- 02:11:05.152 INFO [27407]: SERVER_NAME = oameye.works.coregrade.com -- 02:11:05.152 INFO [27407]: QUERY_STRING = /.well-known/acme-challenge/DjKV7feRZCe8CJiJ9NpdK9k99HrbElHKH2QV9-oqIRA -- 02:11:05.152 INFO [27407]: HTTP_X_FORWARDED_FOR = 52.28.236.88 -- 02:11:05.165 INFO [27407]: COREGRADE is stopping... -- 02:11:05.165 DEBUG [27407]: Closing database connection -- 02:11:05.165 SQL [27407]: pgsql_close() -- 02:31:42.220 INFO [432]: COREGRADE is starting... -- 02:31:42.220 INFO [432]: Version from config: 1.0 -- 02:31:42.220 DEBUG [432]: Connecting to database... -- 02:31:42.220 DEBUG [432]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:31:42.220 SQL [432]: pgsql_db_connect() -- 02:31:42.225 DEBUG [432]: Database connection successful -- 02:31:42.225 INFO [432]: _SERVER found -- 02:31:42.225 INFO [432]: REMOTE_ADDR = 10.0.0.15 -- 02:31:42.225 INFO [432]: SERVER_NAME = oameye.works.coregrade.com -- 02:31:42.225 INFO [432]: QUERY_STRING = -- 02:31:42.225 INFO [432]: HTTP_X_FORWARDED_FOR = 141.145.116.229 -- 02:31:42.261 INFO [432]: COREGRADE is stopping... -- 02:31:42.261 DEBUG [432]: Closing database connection -- 02:31:42.261 SQL [432]: pgsql_close() -- 02:31:42.943 INFO [27405]: COREGRADE is starting... -- 02:31:42.944 INFO [27405]: Version from config: 1.0 -- 02:31:42.944 DEBUG [27405]: Connecting to database... -- 02:31:42.944 DEBUG [27405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:31:42.944 SQL [27405]: pgsql_db_connect() -- 02:31:42.948 DEBUG [27405]: Database connection successful -- 02:31:42.948 INFO [27405]: _SERVER found -- 02:31:42.948 INFO [27405]: REMOTE_ADDR = 10.0.0.15 -- 02:31:42.948 INFO [27405]: SERVER_NAME = oameye.works.coregrade.com -- 02:31:42.948 INFO [27405]: QUERY_STRING = /home.asp -- 02:31:42.948 INFO [27405]: HTTP_X_FORWARDED_FOR = 141.145.116.229 -- 02:31:42.962 INFO [27405]: COREGRADE is stopping... -- 02:31:42.962 DEBUG [27405]: Closing database connection -- 02:31:42.962 SQL [27405]: pgsql_close() -- 02:31:43.551 INFO [27405]: COREGRADE is starting... -- 02:31:43.551 INFO [27405]: Version from config: 1.0 -- 02:31:43.551 DEBUG [27405]: Connecting to database... -- 02:31:43.551 DEBUG [27405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:31:43.551 SQL [27405]: pgsql_db_connect() -- 02:31:43.555 DEBUG [27405]: Database connection successful -- 02:31:43.555 INFO [27405]: _SERVER found -- 02:31:43.555 INFO [27405]: REMOTE_ADDR = 10.0.0.15 -- 02:31:43.555 INFO [27405]: SERVER_NAME = oameye.works.coregrade.com -- 02:31:43.555 INFO [27405]: QUERY_STRING = /login.cgi -- 02:31:43.555 INFO [27405]: HTTP_X_FORWARDED_FOR = 141.145.116.229 -- 02:31:43.566 INFO [27405]: COREGRADE is stopping... -- 02:31:43.567 DEBUG [27405]: Closing database connection -- 02:31:43.567 SQL [27405]: pgsql_close() -- 02:31:46.012 INFO [27405]: COREGRADE is starting... -- 02:31:46.013 INFO [27405]: Version from config: 1.0 -- 02:31:46.013 DEBUG [27405]: Connecting to database... -- 02:31:46.013 DEBUG [27405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:31:46.013 SQL [27405]: pgsql_db_connect() -- 02:31:46.017 DEBUG [27405]: Database connection successful -- 02:31:46.017 INFO [27405]: _SERVER found -- 02:31:46.017 INFO [27405]: REMOTE_ADDR = 10.0.0.15 -- 02:31:46.017 INFO [27405]: SERVER_NAME = oameye.works.coregrade.com -- 02:31:46.017 INFO [27405]: QUERY_STRING = /dana-na/auth/url_default/welcome.cgi -- 02:31:46.017 INFO [27405]: HTTP_X_FORWARDED_FOR = 141.145.116.229 -- 02:31:46.028 INFO [27405]: COREGRADE is stopping... -- 02:31:46.028 DEBUG [27405]: Closing database connection -- 02:31:46.028 SQL [27405]: pgsql_close() -- 02:31:46.611 INFO [27405]: COREGRADE is starting... -- 02:31:46.611 INFO [27405]: Version from config: 1.0 -- 02:31:46.611 DEBUG [27405]: Connecting to database... -- 02:31:46.611 DEBUG [27405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:31:46.611 SQL [27405]: pgsql_db_connect() -- 02:31:46.615 DEBUG [27405]: Database connection successful -- 02:31:46.615 INFO [27405]: _SERVER found -- 02:31:46.615 INFO [27405]: REMOTE_ADDR = 10.0.0.15 -- 02:31:46.615 INFO [27405]: SERVER_NAME = oameye.works.coregrade.com -- 02:31:46.615 INFO [27405]: QUERY_STRING = /remote/login -- 02:31:46.615 INFO [27405]: HTTP_X_FORWARDED_FOR = 141.145.116.229 -- 02:31:46.626 INFO [27405]: COREGRADE is stopping... -- 02:31:46.626 DEBUG [27405]: Closing database connection -- 02:31:46.626 SQL [27405]: pgsql_close() -- 02:31:47.220 INFO [27405]: COREGRADE is starting... -- 02:31:47.221 INFO [27405]: Version from config: 1.0 -- 02:31:47.221 DEBUG [27405]: Connecting to database... -- 02:31:47.221 DEBUG [27405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:31:47.221 SQL [27405]: pgsql_db_connect() -- 02:31:47.225 DEBUG [27405]: Database connection successful -- 02:31:47.225 INFO [27405]: _SERVER found -- 02:31:47.225 INFO [27405]: REMOTE_ADDR = 10.0.0.15 -- 02:31:47.225 INFO [27405]: SERVER_NAME = oameye.works.coregrade.com -- 02:31:47.225 INFO [27405]: QUERY_STRING = /index.asp -- 02:31:47.225 INFO [27405]: HTTP_X_FORWARDED_FOR = 141.145.116.229 -- 02:31:47.236 INFO [27405]: COREGRADE is stopping... -- 02:31:47.236 DEBUG [27405]: Closing database connection -- 02:31:47.236 SQL [27405]: pgsql_close() -- 06:33:25.311 INFO [27406]: COREGRADE is starting... -- 06:33:25.311 INFO [27406]: Version from config: 1.0 -- 06:33:25.311 DEBUG [27406]: Connecting to database... -- 06:33:25.311 DEBUG [27406]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:33:25.311 SQL [27406]: pgsql_db_connect() -- 06:33:25.316 DEBUG [27406]: Database connection successful -- 06:33:25.316 INFO [27406]: _SERVER found -- 06:33:25.316 INFO [27406]: REMOTE_ADDR = 10.0.0.15 -- 06:33:25.316 INFO [27406]: SERVER_NAME = oameye.works.coregrade.com -- 06:33:25.316 INFO [27406]: QUERY_STRING = -- 06:33:25.316 INFO [27406]: HTTP_X_FORWARDED_FOR = 129.213.109.242 -- 06:33:25.355 INFO [27406]: COREGRADE is stopping... -- 06:33:25.355 DEBUG [27406]: Closing database connection -- 06:33:25.355 SQL [27406]: pgsql_close() -- 06:33:25.508 INFO [27406]: COREGRADE is starting... -- 06:33:25.509 INFO [27406]: Version from config: 1.0 -- 06:33:25.509 DEBUG [27406]: Connecting to database... -- 06:33:25.509 DEBUG [27406]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:33:25.509 SQL [27406]: pgsql_db_connect() -- 06:33:25.513 DEBUG [27406]: Database connection successful -- 06:33:25.513 INFO [27406]: _SERVER found -- 06:33:25.513 INFO [27406]: REMOTE_ADDR = 10.0.0.15 -- 06:33:25.513 INFO [27406]: SERVER_NAME = oameye.works.coregrade.com -- 06:33:25.513 INFO [27406]: QUERY_STRING = /home.asp -- 06:33:25.513 INFO [27406]: HTTP_X_FORWARDED_FOR = 129.213.109.242 -- 06:33:25.524 INFO [27406]: COREGRADE is stopping... -- 06:33:25.524 DEBUG [27406]: Closing database connection -- 06:33:25.525 SQL [27406]: pgsql_close() -- 06:33:25.653 INFO [27406]: COREGRADE is starting... -- 06:33:25.653 INFO [27406]: Version from config: 1.0 -- 06:33:25.653 DEBUG [27406]: Connecting to database... -- 06:33:25.653 DEBUG [27406]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:33:25.653 SQL [27406]: pgsql_db_connect() -- 06:33:25.657 DEBUG [27406]: Database connection successful -- 06:33:25.657 INFO [27406]: _SERVER found -- 06:33:25.657 INFO [27406]: REMOTE_ADDR = 10.0.0.15 -- 06:33:25.657 INFO [27406]: SERVER_NAME = oameye.works.coregrade.com -- 06:33:25.657 INFO [27406]: QUERY_STRING = /login.cgi -- 06:33:25.657 INFO [27406]: HTTP_X_FORWARDED_FOR = 129.213.109.242 -- 06:33:25.668 INFO [27406]: COREGRADE is stopping... -- 06:33:25.668 DEBUG [27406]: Closing database connection -- 06:33:25.668 SQL [27406]: pgsql_close() -- 06:33:25.985 INFO [27404]: COREGRADE is starting... -- 06:33:25.985 INFO [27404]: Version from config: 1.0 -- 06:33:25.985 DEBUG [27404]: Connecting to database... -- 06:33:25.985 DEBUG [27404]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:33:25.985 SQL [27404]: pgsql_db_connect() -- 06:33:25.989 DEBUG [27404]: Database connection successful -- 06:33:25.989 INFO [27404]: _SERVER found -- 06:33:25.989 INFO [27404]: REMOTE_ADDR = 10.0.0.15 -- 06:33:25.989 INFO [27404]: SERVER_NAME = oameye.works.coregrade.com -- 06:33:25.989 INFO [27404]: QUERY_STRING = /dana-na/auth/url_default/welcome.cgi -- 06:33:25.989 INFO [27404]: HTTP_X_FORWARDED_FOR = 129.213.109.242 -- 06:33:26.003 INFO [27404]: COREGRADE is stopping... -- 06:33:26.003 DEBUG [27404]: Closing database connection -- 06:33:26.003 SQL [27404]: pgsql_close() -- 06:33:26.132 INFO [27404]: COREGRADE is starting... -- 06:33:26.132 INFO [27404]: Version from config: 1.0 -- 06:33:26.132 DEBUG [27404]: Connecting to database... -- 06:33:26.132 DEBUG [27404]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:33:26.132 SQL [27404]: pgsql_db_connect() -- 06:33:26.136 DEBUG [27404]: Database connection successful -- 06:33:26.136 INFO [27404]: _SERVER found -- 06:33:26.136 INFO [27404]: REMOTE_ADDR = 10.0.0.15 -- 06:33:26.136 INFO [27404]: SERVER_NAME = oameye.works.coregrade.com -- 06:33:26.136 INFO [27404]: QUERY_STRING = /remote/login -- 06:33:26.136 INFO [27404]: HTTP_X_FORWARDED_FOR = 129.213.109.242 -- 06:33:26.147 INFO [27404]: COREGRADE is stopping... -- 06:33:26.148 DEBUG [27404]: Closing database connection -- 06:33:26.148 SQL [27404]: pgsql_close() -- 06:33:26.278 INFO [27517]: COREGRADE is starting... -- 06:33:26.278 INFO [27517]: Version from config: 1.0 -- 06:33:26.278 DEBUG [27517]: Connecting to database... -- 06:33:26.278 DEBUG [27517]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:33:26.278 SQL [27517]: pgsql_db_connect() -- 06:33:26.282 DEBUG [27517]: Database connection successful -- 06:33:26.282 INFO [27517]: _SERVER found -- 06:33:26.282 INFO [27517]: REMOTE_ADDR = 10.0.0.15 -- 06:33:26.282 INFO [27517]: SERVER_NAME = oameye.works.coregrade.com -- 06:33:26.282 INFO [27517]: QUERY_STRING = /index.asp -- 06:33:26.282 INFO [27517]: HTTP_X_FORWARDED_FOR = 129.213.109.242 -- 06:33:26.296 INFO [27517]: COREGRADE is stopping... -- 06:33:26.296 DEBUG [27517]: Closing database connection -- 06:33:26.296 SQL [27517]: pgsql_close() -- 08:10:32.484 INFO [431]: COREGRADE is starting... -- 08:10:32.484 INFO [431]: Version from config: 1.0 -- 08:10:32.484 DEBUG [431]: Connecting to database... -- 08:10:32.484 DEBUG [431]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:10:32.484 SQL [431]: pgsql_db_connect() -- 08:10:32.489 DEBUG [431]: Database connection successful -- 08:10:32.489 INFO [431]: _SERVER found -- 08:10:32.489 INFO [431]: REMOTE_ADDR = 10.0.0.15 -- 08:10:32.489 INFO [431]: SERVER_NAME = oameye.works.coregrade.com -- 08:10:32.489 INFO [431]: QUERY_STRING = -- 08:10:32.489 INFO [431]: HTTP_X_FORWARDED_FOR = 35.222.170.114 -- 08:10:32.527 INFO [431]: COREGRADE is stopping... -- 08:10:32.527 DEBUG [431]: Closing database connection -- 08:10:32.527 SQL [431]: pgsql_close() -- 08:10:32.786 INFO [431]: COREGRADE is starting... -- 08:10:32.787 INFO [431]: Version from config: 1.0 -- 08:10:32.787 DEBUG [431]: Connecting to database... -- 08:10:32.787 DEBUG [431]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:10:32.787 SQL [431]: pgsql_db_connect() -- 08:10:32.791 DEBUG [431]: Database connection successful -- 08:10:32.791 INFO [431]: _SERVER found -- 08:10:32.791 INFO [431]: REMOTE_ADDR = 10.0.0.15 -- 08:10:32.791 INFO [431]: SERVER_NAME = oameye.works.coregrade.com -- 08:10:32.791 INFO [431]: QUERY_STRING = /home.asp -- 08:10:32.791 INFO [431]: HTTP_X_FORWARDED_FOR = 35.222.170.114 -- 08:10:32.804 INFO [431]: COREGRADE is stopping... -- 08:10:32.804 DEBUG [431]: Closing database connection -- 08:10:32.804 SQL [431]: pgsql_close() -- 08:10:33.049 INFO [28787]: COREGRADE is starting... -- 08:10:33.049 INFO [28787]: Version from config: 1.0 -- 08:10:33.049 DEBUG [28787]: Connecting to database... -- 08:10:33.049 DEBUG [28787]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:10:33.049 SQL [28787]: pgsql_db_connect() -- 08:10:33.054 DEBUG [28787]: Database connection successful -- 08:10:33.054 INFO [28787]: _SERVER found -- 08:10:33.054 INFO [28787]: REMOTE_ADDR = 10.0.0.15 -- 08:10:33.054 INFO [28787]: SERVER_NAME = oameye.works.coregrade.com -- 08:10:33.054 INFO [28787]: QUERY_STRING = /login.cgi -- 08:10:33.054 INFO [28787]: HTTP_X_FORWARDED_FOR = 35.222.170.114 -- 08:10:33.067 INFO [28787]: COREGRADE is stopping... -- 08:10:33.067 DEBUG [28787]: Closing database connection -- 08:10:33.067 SQL [28787]: pgsql_close() -- 08:10:33.869 INFO [431]: COREGRADE is starting... -- 08:10:33.869 INFO [431]: Version from config: 1.0 -- 08:10:33.869 DEBUG [431]: Connecting to database... -- 08:10:33.869 DEBUG [431]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:10:33.869 SQL [431]: pgsql_db_connect() -- 08:10:33.874 DEBUG [431]: Database connection successful -- 08:10:33.874 INFO [431]: _SERVER found -- 08:10:33.874 INFO [431]: REMOTE_ADDR = 10.0.0.15 -- 08:10:33.874 INFO [431]: SERVER_NAME = oameye.works.coregrade.com -- 08:10:33.874 INFO [431]: QUERY_STRING = /dana-na/auth/url_default/welcome.cgi -- 08:10:33.874 INFO [431]: HTTP_X_FORWARDED_FOR = 35.222.170.114 -- 08:10:33.885 INFO [431]: COREGRADE is stopping... -- 08:10:33.886 DEBUG [431]: Closing database connection -- 08:10:33.886 SQL [431]: pgsql_close() -- 08:10:34.148 INFO [431]: COREGRADE is starting... -- 08:10:34.148 INFO [431]: Version from config: 1.0 -- 08:10:34.148 DEBUG [431]: Connecting to database... -- 08:10:34.148 DEBUG [431]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:10:34.148 SQL [431]: pgsql_db_connect() -- 08:10:34.152 DEBUG [431]: Database connection successful -- 08:10:34.152 INFO [431]: _SERVER found -- 08:10:34.152 INFO [431]: REMOTE_ADDR = 10.0.0.15 -- 08:10:34.152 INFO [431]: SERVER_NAME = oameye.works.coregrade.com -- 08:10:34.152 INFO [431]: QUERY_STRING = /remote/login -- 08:10:34.152 INFO [431]: HTTP_X_FORWARDED_FOR = 35.222.170.114 -- 08:10:34.164 INFO [431]: COREGRADE is stopping... -- 08:10:34.164 DEBUG [431]: Closing database connection -- 08:10:34.164 SQL [431]: pgsql_close() -- 08:10:34.498 INFO [431]: COREGRADE is starting... -- 08:10:34.498 INFO [431]: Version from config: 1.0 -- 08:10:34.498 DEBUG [431]: Connecting to database... -- 08:10:34.498 DEBUG [431]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:10:34.498 SQL [431]: pgsql_db_connect() -- 08:10:34.503 DEBUG [431]: Database connection successful -- 08:10:34.503 INFO [431]: _SERVER found -- 08:10:34.503 INFO [431]: REMOTE_ADDR = 10.0.0.15 -- 08:10:34.503 INFO [431]: SERVER_NAME = oameye.works.coregrade.com -- 08:10:34.503 INFO [431]: QUERY_STRING = /index.asp -- 08:10:34.503 INFO [431]: HTTP_X_FORWARDED_FOR = 35.222.170.114 -- 08:10:34.514 INFO [431]: COREGRADE is stopping... -- 08:10:34.514 DEBUG [431]: Closing database connection -- 08:10:34.514 SQL [431]: pgsql_close() -- 12:04:47.727 INFO [28789]: COREGRADE is starting... -- 12:04:47.727 INFO [28789]: Version from config: 1.0 -- 12:04:47.727 DEBUG [28789]: Connecting to database... -- 12:04:47.727 DEBUG [28789]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:04:47.727 SQL [28789]: pgsql_db_connect() -- 12:04:47.732 DEBUG [28789]: Database connection successful -- 12:04:47.732 INFO [28789]: _SERVER found -- 12:04:47.732 INFO [28789]: REMOTE_ADDR = 10.0.0.15 -- 12:04:47.732 INFO [28789]: SERVER_NAME = oameye.works.coregrade.com -- 12:04:47.732 INFO [28789]: QUERY_STRING = -- 12:04:47.732 INFO [28789]: HTTP_X_FORWARDED_FOR = 193.118.53.202 -- 12:04:47.768 INFO [28789]: COREGRADE is stopping... -- 12:04:47.768 DEBUG [28789]: Closing database connection -- 12:04:47.768 SQL [28789]: pgsql_close() -- 15:20:35.093 INFO [27408]: COREGRADE is starting... -- 15:20:35.094 INFO [27408]: Version from config: 1.0 -- 15:20:35.094 DEBUG [27408]: Connecting to database... -- 15:20:35.094 DEBUG [27408]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:20:35.094 SQL [27408]: pgsql_db_connect() -- 15:20:35.099 DEBUG [27408]: Database connection successful -- 15:20:35.099 INFO [27408]: _SERVER found -- 15:20:35.099 INFO [27408]: REMOTE_ADDR = 10.0.0.15 -- 15:20:35.099 INFO [27408]: SERVER_NAME = oameye.works.coregrade.com -- 15:20:35.099 INFO [27408]: QUERY_STRING = /TP/public/index.php -- 15:20:35.099 INFO [27408]: HTTP_X_FORWARDED_FOR = 111.230.56.117 -- 15:20:35.114 INFO [27408]: COREGRADE is stopping... -- 15:20:35.114 DEBUG [27408]: Closing database connection -- 15:20:35.115 SQL [27408]: pgsql_close() -- 15:20:36.523 INFO [27407]: COREGRADE is starting... -- 15:20:36.523 INFO [27407]: Version from config: 1.0 -- 15:20:36.523 DEBUG [27407]: Connecting to database... -- 15:20:36.523 DEBUG [27407]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:20:36.523 SQL [27407]: pgsql_db_connect() -- 15:20:36.527 DEBUG [27407]: Database connection successful -- 15:20:36.527 INFO [27407]: _SERVER found -- 15:20:36.527 INFO [27407]: REMOTE_ADDR = 10.0.0.15 -- 15:20:36.527 INFO [27407]: SERVER_NAME = oameye.works.coregrade.com -- 15:20:36.527 INFO [27407]: QUERY_STRING = /TP/index.php -- 15:20:36.527 INFO [27407]: HTTP_X_FORWARDED_FOR = 111.230.56.117 -- 15:20:36.541 INFO [27407]: COREGRADE is stopping... -- 15:20:36.541 DEBUG [27407]: Closing database connection -- 15:20:36.541 SQL [27407]: pgsql_close() -- 15:20:37.908 INFO [27408]: COREGRADE is starting... -- 15:20:37.909 INFO [27408]: Version from config: 1.0 -- 15:20:37.909 DEBUG [27408]: Connecting to database... -- 15:20:37.909 DEBUG [27408]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:20:37.909 SQL [27408]: pgsql_db_connect() -- 15:20:37.913 DEBUG [27408]: Database connection successful -- 15:20:37.913 INFO [27408]: _SERVER found -- 15:20:37.913 INFO [27408]: REMOTE_ADDR = 10.0.0.15 -- 15:20:37.913 INFO [27408]: SERVER_NAME = oameye.works.coregrade.com -- 15:20:37.913 INFO [27408]: QUERY_STRING = /thinkphp/html/public/index.php -- 15:20:37.913 INFO [27408]: HTTP_X_FORWARDED_FOR = 111.230.56.117 -- 15:20:37.924 INFO [27408]: COREGRADE is stopping... -- 15:20:37.924 DEBUG [27408]: Closing database connection -- 15:20:37.924 SQL [27408]: pgsql_close() -- 15:20:39.343 INFO [27408]: COREGRADE is starting... -- 15:20:39.343 INFO [27408]: Version from config: 1.0 -- 15:20:39.343 DEBUG [27408]: Connecting to database... -- 15:20:39.343 DEBUG [27408]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:20:39.343 SQL [27408]: pgsql_db_connect() -- 15:20:39.347 DEBUG [27408]: Database connection successful -- 15:20:39.347 INFO [27408]: _SERVER found -- 15:20:39.347 INFO [27408]: REMOTE_ADDR = 10.0.0.15 -- 15:20:39.347 INFO [27408]: SERVER_NAME = oameye.works.coregrade.com -- 15:20:39.347 INFO [27408]: QUERY_STRING = /html/public/index.php -- 15:20:39.347 INFO [27408]: HTTP_X_FORWARDED_FOR = 111.230.56.117 -- 15:20:39.358 INFO [27408]: COREGRADE is stopping... -- 15:20:39.358 DEBUG [27408]: Closing database connection -- 15:20:39.358 SQL [27408]: pgsql_close() -- 15:20:40.725 INFO [27408]: COREGRADE is starting... -- 15:20:40.725 INFO [27408]: Version from config: 1.0 -- 15:20:40.725 DEBUG [27408]: Connecting to database... -- 15:20:40.725 DEBUG [27408]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:20:40.725 SQL [27408]: pgsql_db_connect() -- 15:20:40.729 DEBUG [27408]: Database connection successful -- 15:20:40.729 INFO [27408]: _SERVER found -- 15:20:40.729 INFO [27408]: REMOTE_ADDR = 10.0.0.15 -- 15:20:40.729 INFO [27408]: SERVER_NAME = oameye.works.coregrade.com -- 15:20:40.729 INFO [27408]: QUERY_STRING = /public/index.php -- 15:20:40.729 INFO [27408]: HTTP_X_FORWARDED_FOR = 111.230.56.117 -- 15:20:40.741 INFO [27408]: COREGRADE is stopping... -- 15:20:40.741 DEBUG [27408]: Closing database connection -- 15:20:40.741 SQL [27408]: pgsql_close() -- 15:20:45.740 INFO [27408]: COREGRADE is starting... -- 15:20:45.740 INFO [27408]: Version from config: 1.0 -- 15:20:45.740 DEBUG [27408]: Connecting to database... -- 15:20:45.740 DEBUG [27408]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:20:45.740 SQL [27408]: pgsql_db_connect() -- 15:20:45.745 DEBUG [27408]: Database connection successful -- 15:20:45.745 INFO [27408]: _SERVER found -- 15:20:45.745 INFO [27408]: REMOTE_ADDR = 10.0.0.15 -- 15:20:45.745 INFO [27408]: SERVER_NAME = oameye.works.coregrade.com -- 15:20:45.745 INFO [27408]: QUERY_STRING = /TP/html/public/index.php -- 15:20:45.745 INFO [27408]: HTTP_X_FORWARDED_FOR = 111.230.56.117 -- 15:20:45.756 INFO [27408]: COREGRADE is stopping... -- 15:20:45.756 DEBUG [27408]: Closing database connection -- 15:20:45.756 SQL [27408]: pgsql_close() -- 15:20:47.822 INFO [27408]: COREGRADE is starting... -- 15:20:47.822 INFO [27408]: Version from config: 1.0 -- 15:20:47.822 DEBUG [27408]: Connecting to database... -- 15:20:47.822 DEBUG [27408]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:20:47.822 SQL [27408]: pgsql_db_connect() -- 15:20:47.826 DEBUG [27408]: Database connection successful -- 15:20:47.826 INFO [27408]: _SERVER found -- 15:20:47.826 INFO [27408]: REMOTE_ADDR = 10.0.0.15 -- 15:20:47.826 INFO [27408]: SERVER_NAME = oameye.works.coregrade.com -- 15:20:47.826 INFO [27408]: QUERY_STRING = /elrekt.php -- 15:20:47.826 INFO [27408]: HTTP_X_FORWARDED_FOR = 111.230.56.117 -- 15:20:47.838 INFO [27408]: COREGRADE is stopping... -- 15:20:47.838 DEBUG [27408]: Closing database connection -- 15:20:47.838 SQL [27408]: pgsql_close() -- 15:20:50.204 INFO [432]: COREGRADE is starting... -- 15:20:50.204 INFO [432]: Version from config: 1.0 -- 15:20:50.204 DEBUG [432]: Connecting to database... -- 15:20:50.204 DEBUG [432]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:20:50.204 SQL [432]: pgsql_db_connect() -- 15:20:50.208 DEBUG [432]: Database connection successful -- 15:20:50.208 INFO [432]: _SERVER found -- 15:20:50.208 INFO [432]: REMOTE_ADDR = 10.0.0.15 -- 15:20:50.208 INFO [432]: SERVER_NAME = oameye.works.coregrade.com -- 15:20:50.208 INFO [432]: QUERY_STRING = -- 15:20:50.208 INFO [432]: HTTP_X_FORWARDED_FOR = 111.230.56.117 -- 15:20:50.245 INFO [432]: COREGRADE is stopping... -- 15:20:50.245 DEBUG [432]: Closing database connection -- 15:20:50.245 SQL [432]: pgsql_close() -- 15:20:52.185 INFO [27405]: COREGRADE is starting... -- 15:20:52.186 INFO [27405]: Version from config: 1.0 -- 15:20:52.186 DEBUG [27405]: Connecting to database... -- 15:20:52.186 DEBUG [27405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:20:52.186 SQL [27405]: pgsql_db_connect() -- 15:20:52.190 DEBUG [27405]: Database connection successful -- 15:20:52.190 INFO [27405]: _SERVER found -- 15:20:52.190 INFO [27405]: REMOTE_ADDR = 10.0.0.15 -- 15:20:52.190 INFO [27405]: SERVER_NAME = oameye.works.coregrade.com -- 15:20:52.190 INFO [27405]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 15:20:52.190 INFO [27405]: HTTP_X_FORWARDED_FOR = 111.230.56.117 -- 15:20:52.225 INFO [27405]: COREGRADE is stopping... -- 15:20:52.225 DEBUG [27405]: Closing database connection -- 15:20:52.225 SQL [27405]: pgsql_close() -- 15:20:53.842 INFO [432]: COREGRADE is starting... -- 15:20:53.842 INFO [432]: Version from config: 1.0 -- 15:20:53.842 DEBUG [432]: Connecting to database... -- 15:20:53.842 DEBUG [432]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:20:53.842 SQL [432]: pgsql_db_connect() -- 15:20:53.846 DEBUG [432]: Database connection successful -- 15:20:53.846 INFO [432]: _SERVER found -- 15:20:53.846 INFO [432]: REMOTE_ADDR = 10.0.0.15 -- 15:20:53.846 INFO [432]: SERVER_NAME = oameye.works.coregrade.com -- 15:20:53.846 INFO [432]: QUERY_STRING = s=captcha -- 15:20:53.846 INFO [432]: HTTP_X_FORWARDED_FOR = 111.230.56.117 -- 15:20:53.878 INFO [432]: COREGRADE is stopping... -- 15:20:53.878 DEBUG [432]: Closing database connection -- 15:20:53.878 SQL [432]: pgsql_close() -- 15:20:56.302 INFO [27406]: COREGRADE is starting... -- 15:20:56.302 INFO [27406]: Version from config: 1.0 -- 15:20:56.302 DEBUG [27406]: Connecting to database... -- 15:20:56.302 DEBUG [27406]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:20:56.302 SQL [27406]: pgsql_db_connect() -- 15:20:56.306 DEBUG [27406]: Database connection successful -- 15:20:56.306 INFO [27406]: _SERVER found -- 15:20:56.306 INFO [27406]: REMOTE_ADDR = 10.0.0.15 -- 15:20:56.306 INFO [27406]: SERVER_NAME = oameye.works.coregrade.com -- 15:20:56.306 INFO [27406]: QUERY_STRING = -- 15:20:56.306 INFO [27406]: HTTP_X_FORWARDED_FOR = 111.230.56.117 -- 15:20:56.340 INFO [27406]: COREGRADE is stopping... -- 15:20:56.340 DEBUG [27406]: Closing database connection -- 15:20:56.340 SQL [27406]: pgsql_close() -- 15:33:13.813 INFO [27404]: COREGRADE is starting... -- 15:33:13.814 INFO [27404]: Version from config: 1.0 -- 15:33:13.814 DEBUG [27404]: Connecting to database... -- 15:33:13.814 DEBUG [27404]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:33:13.814 SQL [27404]: pgsql_db_connect() -- 15:33:13.818 DEBUG [27404]: Database connection successful -- 15:33:13.818 INFO [27404]: _SERVER found -- 15:33:13.818 INFO [27404]: REMOTE_ADDR = 10.0.0.15 -- 15:33:13.818 INFO [27404]: SERVER_NAME = oameye.works.coregrade.com -- 15:33:13.818 INFO [27404]: QUERY_STRING = /TP/public/index.php -- 15:33:13.818 INFO [27404]: HTTP_X_FORWARDED_FOR = 118.24.18.51 -- 15:33:13.832 INFO [27404]: COREGRADE is stopping... -- 15:33:13.832 DEBUG [27404]: Closing database connection -- 15:33:13.832 SQL [27404]: pgsql_close() -- 15:33:16.501 INFO [27517]: COREGRADE is starting... -- 15:33:16.501 INFO [27517]: Version from config: 1.0 -- 15:33:16.501 DEBUG [27517]: Connecting to database... -- 15:33:16.501 DEBUG [27517]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:33:16.501 SQL [27517]: pgsql_db_connect() -- 15:33:16.505 DEBUG [27517]: Database connection successful -- 15:33:16.505 INFO [27517]: _SERVER found -- 15:33:16.505 INFO [27517]: REMOTE_ADDR = 10.0.0.15 -- 15:33:16.505 INFO [27517]: SERVER_NAME = oameye.works.coregrade.com -- 15:33:16.505 INFO [27517]: QUERY_STRING = /TP/index.php -- 15:33:16.505 INFO [27517]: HTTP_X_FORWARDED_FOR = 118.24.18.51 -- 15:33:16.519 INFO [27517]: COREGRADE is stopping... -- 15:33:16.519 DEBUG [27517]: Closing database connection -- 15:33:16.519 SQL [27517]: pgsql_close() -- 15:33:18.201 INFO [28787]: COREGRADE is starting... -- 15:33:18.201 INFO [28787]: Version from config: 1.0 -- 15:33:18.201 DEBUG [28787]: Connecting to database... -- 15:33:18.201 DEBUG [28787]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:33:18.201 SQL [28787]: pgsql_db_connect() -- 15:33:18.205 DEBUG [28787]: Database connection successful -- 15:33:18.205 INFO [28787]: _SERVER found -- 15:33:18.205 INFO [28787]: REMOTE_ADDR = 10.0.0.15 -- 15:33:18.205 INFO [28787]: SERVER_NAME = oameye.works.coregrade.com -- 15:33:18.205 INFO [28787]: QUERY_STRING = /thinkphp/html/public/index.php -- 15:33:18.205 INFO [28787]: HTTP_X_FORWARDED_FOR = 118.24.18.51 -- 15:33:18.218 INFO [28787]: COREGRADE is stopping... -- 15:33:18.218 DEBUG [28787]: Closing database connection -- 15:33:18.218 SQL [28787]: pgsql_close() -- 15:33:20.030 INFO [28787]: COREGRADE is starting... -- 15:33:20.030 INFO [28787]: Version from config: 1.0 -- 15:33:20.030 DEBUG [28787]: Connecting to database... -- 15:33:20.030 DEBUG [28787]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:33:20.030 SQL [28787]: pgsql_db_connect() -- 15:33:20.034 DEBUG [28787]: Database connection successful -- 15:33:20.034 INFO [28787]: _SERVER found -- 15:33:20.034 INFO [28787]: REMOTE_ADDR = 10.0.0.15 -- 15:33:20.034 INFO [28787]: SERVER_NAME = oameye.works.coregrade.com -- 15:33:20.034 INFO [28787]: QUERY_STRING = /html/public/index.php -- 15:33:20.034 INFO [28787]: HTTP_X_FORWARDED_FOR = 118.24.18.51 -- 15:33:20.046 INFO [28787]: COREGRADE is stopping... -- 15:33:20.046 DEBUG [28787]: Closing database connection -- 15:33:20.046 SQL [28787]: pgsql_close() -- 15:33:21.692 INFO [431]: COREGRADE is starting... -- 15:33:21.693 INFO [431]: Version from config: 1.0 -- 15:33:21.693 DEBUG [431]: Connecting to database... -- 15:33:21.693 DEBUG [431]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:33:21.693 SQL [431]: pgsql_db_connect() -- 15:33:21.697 DEBUG [431]: Database connection successful -- 15:33:21.697 INFO [431]: _SERVER found -- 15:33:21.697 INFO [431]: REMOTE_ADDR = 10.0.0.15 -- 15:33:21.697 INFO [431]: SERVER_NAME = oameye.works.coregrade.com -- 15:33:21.697 INFO [431]: QUERY_STRING = /public/index.php -- 15:33:21.697 INFO [431]: HTTP_X_FORWARDED_FOR = 118.24.18.51 -- 15:33:21.709 INFO [431]: COREGRADE is stopping... -- 15:33:21.709 DEBUG [431]: Closing database connection -- 15:33:21.709 SQL [431]: pgsql_close() -- 15:33:24.281 INFO [431]: COREGRADE is starting... -- 15:33:24.281 INFO [431]: Version from config: 1.0 -- 15:33:24.281 DEBUG [431]: Connecting to database... -- 15:33:24.281 DEBUG [431]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:33:24.281 SQL [431]: pgsql_db_connect() -- 15:33:24.285 DEBUG [431]: Database connection successful -- 15:33:24.285 INFO [431]: _SERVER found -- 15:33:24.285 INFO [431]: REMOTE_ADDR = 10.0.0.15 -- 15:33:24.285 INFO [431]: SERVER_NAME = oameye.works.coregrade.com -- 15:33:24.285 INFO [431]: QUERY_STRING = /TP/html/public/index.php -- 15:33:24.285 INFO [431]: HTTP_X_FORWARDED_FOR = 118.24.18.51 -- 15:33:24.296 INFO [431]: COREGRADE is stopping... -- 15:33:24.296 DEBUG [431]: Closing database connection -- 15:33:24.296 SQL [431]: pgsql_close() -- 15:33:25.908 INFO [28789]: COREGRADE is starting... -- 15:33:25.908 INFO [28789]: Version from config: 1.0 -- 15:33:25.908 DEBUG [28789]: Connecting to database... -- 15:33:25.908 DEBUG [28789]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:33:25.908 SQL [28789]: pgsql_db_connect() -- 15:33:25.912 DEBUG [28789]: Database connection successful -- 15:33:25.912 INFO [28789]: _SERVER found -- 15:33:25.912 INFO [28789]: REMOTE_ADDR = 10.0.0.15 -- 15:33:25.912 INFO [28789]: SERVER_NAME = oameye.works.coregrade.com -- 15:33:25.912 INFO [28789]: QUERY_STRING = /elrekt.php -- 15:33:25.912 INFO [28789]: HTTP_X_FORWARDED_FOR = 118.24.18.51 -- 15:33:25.925 INFO [28789]: COREGRADE is stopping... -- 15:33:25.925 DEBUG [28789]: Closing database connection -- 15:33:25.925 SQL [28789]: pgsql_close() -- 15:33:27.634 INFO [28789]: COREGRADE is starting... -- 15:33:27.634 INFO [28789]: Version from config: 1.0 -- 15:33:27.634 DEBUG [28789]: Connecting to database... -- 15:33:27.634 DEBUG [28789]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:33:27.634 SQL [28789]: pgsql_db_connect() -- 15:33:27.638 DEBUG [28789]: Database connection successful -- 15:33:27.638 INFO [28789]: _SERVER found -- 15:33:27.638 INFO [28789]: REMOTE_ADDR = 10.0.0.15 -- 15:33:27.638 INFO [28789]: SERVER_NAME = oameye.works.coregrade.com -- 15:33:27.638 INFO [28789]: QUERY_STRING = -- 15:33:27.638 INFO [28789]: HTTP_X_FORWARDED_FOR = 118.24.18.51 -- 15:33:27.672 INFO [28789]: COREGRADE is stopping... -- 15:33:27.672 DEBUG [28789]: Closing database connection -- 15:33:27.672 SQL [28789]: pgsql_close() -- 15:33:29.321 INFO [27407]: COREGRADE is starting... -- 15:33:29.321 INFO [27407]: Version from config: 1.0 -- 15:33:29.321 DEBUG [27407]: Connecting to database... -- 15:33:29.321 DEBUG [27407]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:33:29.321 SQL [27407]: pgsql_db_connect() -- 15:33:29.325 DEBUG [27407]: Database connection successful -- 15:33:29.325 INFO [27407]: _SERVER found -- 15:33:29.325 INFO [27407]: REMOTE_ADDR = 10.0.0.15 -- 15:33:29.325 INFO [27407]: SERVER_NAME = oameye.works.coregrade.com -- 15:33:29.325 INFO [27407]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 15:33:29.325 INFO [27407]: HTTP_X_FORWARDED_FOR = 118.24.18.51 -- 15:33:29.360 INFO [27407]: COREGRADE is stopping... -- 15:33:29.360 DEBUG [27407]: Closing database connection -- 15:33:29.360 SQL [27407]: pgsql_close() -- 15:33:31.074 INFO [27408]: COREGRADE is starting... -- 15:33:31.074 INFO [27408]: Version from config: 1.0 -- 15:33:31.074 DEBUG [27408]: Connecting to database... -- 15:33:31.074 DEBUG [27408]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:33:31.074 SQL [27408]: pgsql_db_connect() -- 15:33:31.078 DEBUG [27408]: Database connection successful -- 15:33:31.078 INFO [27408]: _SERVER found -- 15:33:31.078 INFO [27408]: REMOTE_ADDR = 10.0.0.15 -- 15:33:31.078 INFO [27408]: SERVER_NAME = oameye.works.coregrade.com -- 15:33:31.078 INFO [27408]: QUERY_STRING = s=captcha -- 15:33:31.078 INFO [27408]: HTTP_X_FORWARDED_FOR = 118.24.18.51 -- 15:33:31.113 INFO [27408]: COREGRADE is stopping... -- 15:33:31.113 DEBUG [27408]: Closing database connection -- 15:33:31.113 SQL [27408]: pgsql_close() -- 15:33:36.177 INFO [27405]: COREGRADE is starting... -- 15:33:36.177 INFO [27405]: Version from config: 1.0 -- 15:33:36.177 DEBUG [27405]: Connecting to database... -- 15:33:36.177 DEBUG [27405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:33:36.177 SQL [27405]: pgsql_db_connect() -- 15:33:36.181 DEBUG [27405]: Database connection successful -- 15:33:36.181 INFO [27405]: _SERVER found -- 15:33:36.181 INFO [27405]: REMOTE_ADDR = 10.0.0.15 -- 15:33:36.181 INFO [27405]: SERVER_NAME = oameye.works.coregrade.com -- 15:33:36.181 INFO [27405]: QUERY_STRING = -- 15:33:36.181 INFO [27405]: HTTP_X_FORWARDED_FOR = 118.24.18.51 -- 15:33:36.214 INFO [27405]: COREGRADE is stopping... -- 15:33:36.214 DEBUG [27405]: Closing database connection -- 15:33:36.214 SQL [27405]: pgsql_close() -- 01:29:04.386 INFO [432]: COREGRADE is starting... -- 01:29:04.386 INFO [432]: Version from config: 1.0 -- 01:29:04.386 DEBUG [432]: Connecting to database... -- 01:29:04.386 DEBUG [432]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:29:04.386 SQL [432]: pgsql_db_connect() -- 01:29:04.391 DEBUG [432]: Database connection successful -- 01:29:04.391 INFO [432]: _SERVER found -- 01:29:04.391 INFO [432]: REMOTE_ADDR = 10.0.0.15 -- 01:29:04.391 INFO [432]: SERVER_NAME = oameye.works.coregrade.com -- 01:29:04.391 INFO [432]: QUERY_STRING = /.well-known/acme-challenge/-Cnlsrs2hSeV2ElZTt0anz-SElVOUuzUehB-D-peVxg -- 01:29:04.391 INFO [432]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 01:29:04.413 INFO [432]: COREGRADE is stopping... -- 01:29:04.413 DEBUG [432]: Closing database connection -- 01:29:04.413 SQL [432]: pgsql_close() -- 01:29:04.521 INFO [27406]: COREGRADE is starting... -- 01:29:04.521 INFO [27406]: Version from config: 1.0 -- 01:29:04.521 DEBUG [27406]: Connecting to database... -- 01:29:04.521 DEBUG [27406]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:29:04.521 SQL [27406]: pgsql_db_connect() -- 01:29:04.525 DEBUG [27406]: Database connection successful -- 01:29:04.525 INFO [27406]: _SERVER found -- 01:29:04.525 INFO [27406]: REMOTE_ADDR = 10.0.0.15 -- 01:29:04.525 INFO [27406]: SERVER_NAME = oameye.works.coregrade.com -- 01:29:04.525 INFO [27406]: QUERY_STRING = /.well-known/acme-challenge/-Cnlsrs2hSeV2ElZTt0anz-SElVOUuzUehB-D-peVxg -- 01:29:04.525 INFO [27406]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 01:29:04.539 INFO [27406]: COREGRADE is stopping... -- 01:29:04.539 DEBUG [27406]: Closing database connection -- 01:29:04.539 SQL [27406]: pgsql_close() -- 01:29:04.568 INFO [27406]: COREGRADE is starting... -- 01:29:04.568 INFO [27406]: Version from config: 1.0 -- 01:29:04.568 DEBUG [27406]: Connecting to database... -- 01:29:04.568 DEBUG [27406]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:29:04.568 SQL [27406]: pgsql_db_connect() -- 01:29:04.573 DEBUG [27406]: Database connection successful -- 01:29:04.573 INFO [27406]: _SERVER found -- 01:29:04.573 INFO [27406]: REMOTE_ADDR = 10.0.0.15 -- 01:29:04.573 INFO [27406]: SERVER_NAME = oameye.works.coregrade.com -- 01:29:04.573 INFO [27406]: QUERY_STRING = /.well-known/acme-challenge/-Cnlsrs2hSeV2ElZTt0anz-SElVOUuzUehB-D-peVxg -- 01:29:04.573 INFO [27406]: HTTP_X_FORWARDED_FOR = 34.222.229.130 -- 01:29:04.587 INFO [27406]: COREGRADE is stopping... -- 01:29:04.587 DEBUG [27406]: Closing database connection -- 01:29:04.587 SQL [27406]: pgsql_close() -- 06:15:54.053 INFO [28787]: COREGRADE is starting... -- 06:15:54.053 INFO [28787]: Version from config: 1.0 -- 06:15:54.053 DEBUG [28787]: Connecting to database... -- 06:15:54.053 DEBUG [28787]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:15:54.053 SQL [28787]: pgsql_db_connect() -- 06:15:54.058 DEBUG [28787]: Database connection successful -- 06:15:54.058 INFO [28787]: _SERVER found -- 06:15:54.058 INFO [28787]: REMOTE_ADDR = 10.0.0.15 -- 06:15:54.058 INFO [28787]: SERVER_NAME = oameye.works.coregrade.com -- 06:15:54.058 INFO [28787]: QUERY_STRING = /TP/public/index.php -- 06:15:54.058 INFO [28787]: HTTP_X_FORWARDED_FOR = 111.13.67.138 -- 06:15:54.072 INFO [28787]: COREGRADE is stopping... -- 06:15:54.072 DEBUG [28787]: Closing database connection -- 06:15:54.072 SQL [28787]: pgsql_close() -- 06:16:01.651 INFO [431]: COREGRADE is starting... -- 06:16:01.651 INFO [431]: Version from config: 1.0 -- 06:16:01.651 DEBUG [431]: Connecting to database... -- 06:16:01.651 DEBUG [431]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:16:01.651 SQL [431]: pgsql_db_connect() -- 06:16:01.655 DEBUG [431]: Database connection successful -- 06:16:01.655 INFO [431]: _SERVER found -- 06:16:01.655 INFO [431]: REMOTE_ADDR = 10.0.0.15 -- 06:16:01.655 INFO [431]: SERVER_NAME = oameye.works.coregrade.com -- 06:16:01.655 INFO [431]: QUERY_STRING = -- 06:16:01.655 INFO [431]: HTTP_X_FORWARDED_FOR = 111.13.67.138 -- 06:16:01.691 INFO [431]: COREGRADE is stopping... -- 06:16:01.691 DEBUG [431]: Closing database connection -- 06:16:01.691 SQL [431]: pgsql_close() -- 09:22:20.255 INFO [28789]: COREGRADE is starting... -- 09:22:20.255 INFO [28789]: Version from config: 1.0 -- 09:22:20.255 DEBUG [28789]: Connecting to database... -- 09:22:20.255 DEBUG [28789]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:22:20.255 SQL [28789]: pgsql_db_connect() -- 09:22:20.260 DEBUG [28789]: Database connection successful -- 09:22:20.260 INFO [28789]: _SERVER found -- 09:22:20.260 INFO [28789]: REMOTE_ADDR = 10.0.0.15 -- 09:22:20.260 INFO [28789]: SERVER_NAME = oameye.works.coregrade.com -- 09:22:20.260 INFO [28789]: QUERY_STRING = /TP/public/index.php -- 09:22:20.260 INFO [28789]: HTTP_X_FORWARDED_FOR = 192.227.223.14 -- 09:22:20.276 INFO [28789]: COREGRADE is stopping... -- 09:22:20.276 DEBUG [28789]: Closing database connection -- 09:22:20.276 SQL [28789]: pgsql_close() -- 09:22:21.015 INFO [27407]: COREGRADE is starting... -- 09:22:21.015 INFO [27407]: Version from config: 1.0 -- 09:22:21.015 DEBUG [27407]: Connecting to database... -- 09:22:21.015 DEBUG [27407]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:22:21.015 SQL [27407]: pgsql_db_connect() -- 09:22:21.020 DEBUG [27407]: Database connection successful -- 09:22:21.020 INFO [27407]: _SERVER found -- 09:22:21.020 INFO [27407]: REMOTE_ADDR = 10.0.0.15 -- 09:22:21.020 INFO [27407]: SERVER_NAME = oameye.works.coregrade.com -- 09:22:21.020 INFO [27407]: QUERY_STRING = /TP/index.php -- 09:22:21.020 INFO [27407]: HTTP_X_FORWARDED_FOR = 192.227.223.14 -- 09:22:21.033 INFO [27407]: COREGRADE is stopping... -- 09:22:21.033 DEBUG [27407]: Closing database connection -- 09:22:21.033 SQL [27407]: pgsql_close() -- 09:22:21.732 INFO [28789]: COREGRADE is starting... -- 09:22:21.732 INFO [28789]: Version from config: 1.0 -- 09:22:21.732 DEBUG [28789]: Connecting to database... -- 09:22:21.732 DEBUG [28789]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:22:21.732 SQL [28789]: pgsql_db_connect() -- 09:22:21.736 DEBUG [28789]: Database connection successful -- 09:22:21.736 INFO [28789]: _SERVER found -- 09:22:21.736 INFO [28789]: REMOTE_ADDR = 10.0.0.15 -- 09:22:21.736 INFO [28789]: SERVER_NAME = oameye.works.coregrade.com -- 09:22:21.736 INFO [28789]: QUERY_STRING = /thinkphp/html/public/index.php -- 09:22:21.736 INFO [28789]: HTTP_X_FORWARDED_FOR = 192.227.223.14 -- 09:22:21.748 INFO [28789]: COREGRADE is stopping... -- 09:22:21.748 DEBUG [28789]: Closing database connection -- 09:22:21.748 SQL [28789]: pgsql_close() -- 09:22:22.470 INFO [27408]: COREGRADE is starting... -- 09:22:22.470 INFO [27408]: Version from config: 1.0 -- 09:22:22.470 DEBUG [27408]: Connecting to database... -- 09:22:22.470 DEBUG [27408]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:22:22.470 SQL [27408]: pgsql_db_connect() -- 09:22:22.474 DEBUG [27408]: Database connection successful -- 09:22:22.474 INFO [27408]: _SERVER found -- 09:22:22.474 INFO [27408]: REMOTE_ADDR = 10.0.0.15 -- 09:22:22.474 INFO [27408]: SERVER_NAME = oameye.works.coregrade.com -- 09:22:22.474 INFO [27408]: QUERY_STRING = /html/public/index.php -- 09:22:22.474 INFO [27408]: HTTP_X_FORWARDED_FOR = 192.227.223.14 -- 09:22:22.488 INFO [27408]: COREGRADE is stopping... -- 09:22:22.488 DEBUG [27408]: Closing database connection -- 09:22:22.488 SQL [27408]: pgsql_close() -- 09:22:23.196 INFO [27407]: COREGRADE is starting... -- 09:22:23.196 INFO [27407]: Version from config: 1.0 -- 09:22:23.196 DEBUG [27407]: Connecting to database... -- 09:22:23.196 DEBUG [27407]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:22:23.196 SQL [27407]: pgsql_db_connect() -- 09:22:23.200 DEBUG [27407]: Database connection successful -- 09:22:23.200 INFO [27407]: _SERVER found -- 09:22:23.200 INFO [27407]: REMOTE_ADDR = 10.0.0.15 -- 09:22:23.200 INFO [27407]: SERVER_NAME = oameye.works.coregrade.com -- 09:22:23.200 INFO [27407]: QUERY_STRING = /public/index.php -- 09:22:23.200 INFO [27407]: HTTP_X_FORWARDED_FOR = 192.227.223.14 -- 09:22:23.212 INFO [27407]: COREGRADE is stopping... -- 09:22:23.212 DEBUG [27407]: Closing database connection -- 09:22:23.212 SQL [27407]: pgsql_close() -- 09:22:23.923 INFO [27407]: COREGRADE is starting... -- 09:22:23.923 INFO [27407]: Version from config: 1.0 -- 09:22:23.923 DEBUG [27407]: Connecting to database... -- 09:22:23.923 DEBUG [27407]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:22:23.923 SQL [27407]: pgsql_db_connect() -- 09:22:23.928 DEBUG [27407]: Database connection successful -- 09:22:23.928 INFO [27407]: _SERVER found -- 09:22:23.928 INFO [27407]: REMOTE_ADDR = 10.0.0.15 -- 09:22:23.928 INFO [27407]: SERVER_NAME = oameye.works.coregrade.com -- 09:22:23.928 INFO [27407]: QUERY_STRING = /TP/html/public/index.php -- 09:22:23.928 INFO [27407]: HTTP_X_FORWARDED_FOR = 192.227.223.14 -- 09:22:23.939 INFO [27407]: COREGRADE is stopping... -- 09:22:23.939 DEBUG [27407]: Closing database connection -- 09:22:23.939 SQL [27407]: pgsql_close() -- 09:22:24.649 INFO [27407]: COREGRADE is starting... -- 09:22:24.649 INFO [27407]: Version from config: 1.0 -- 09:22:24.649 DEBUG [27407]: Connecting to database... -- 09:22:24.649 DEBUG [27407]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:22:24.649 SQL [27407]: pgsql_db_connect() -- 09:22:24.653 DEBUG [27407]: Database connection successful -- 09:22:24.653 INFO [27407]: _SERVER found -- 09:22:24.653 INFO [27407]: REMOTE_ADDR = 10.0.0.15 -- 09:22:24.653 INFO [27407]: SERVER_NAME = oameye.works.coregrade.com -- 09:22:24.653 INFO [27407]: QUERY_STRING = /elrekt.php -- 09:22:24.653 INFO [27407]: HTTP_X_FORWARDED_FOR = 192.227.223.14 -- 09:22:24.665 INFO [27407]: COREGRADE is stopping... -- 09:22:24.665 DEBUG [27407]: Closing database connection -- 09:22:24.665 SQL [27407]: pgsql_close() -- 09:22:25.306 INFO [27407]: COREGRADE is starting... -- 09:22:25.307 INFO [27407]: Version from config: 1.0 -- 09:22:25.307 DEBUG [27407]: Connecting to database... -- 09:22:25.307 DEBUG [27407]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:22:25.307 SQL [27407]: pgsql_db_connect() -- 09:22:25.311 DEBUG [27407]: Database connection successful -- 09:22:25.311 INFO [27407]: _SERVER found -- 09:22:25.311 INFO [27407]: REMOTE_ADDR = 10.0.0.15 -- 09:22:25.311 INFO [27407]: SERVER_NAME = oameye.works.coregrade.com -- 09:22:25.311 INFO [27407]: QUERY_STRING = -- 09:22:25.311 INFO [27407]: HTTP_X_FORWARDED_FOR = 192.227.223.14 -- 09:22:25.346 INFO [27407]: COREGRADE is stopping... -- 09:22:25.347 DEBUG [27407]: Closing database connection -- 09:22:25.347 SQL [27407]: pgsql_close() -- 09:22:26.028 INFO [27408]: COREGRADE is starting... -- 09:22:26.028 INFO [27408]: Version from config: 1.0 -- 09:22:26.028 DEBUG [27408]: Connecting to database... -- 09:22:26.028 DEBUG [27408]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:22:26.028 SQL [27408]: pgsql_db_connect() -- 09:22:26.033 DEBUG [27408]: Database connection successful -- 09:22:26.033 INFO [27408]: _SERVER found -- 09:22:26.033 INFO [27408]: REMOTE_ADDR = 10.0.0.15 -- 09:22:26.033 INFO [27408]: SERVER_NAME = oameye.works.coregrade.com -- 09:22:26.033 INFO [27408]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 09:22:26.033 INFO [27408]: HTTP_X_FORWARDED_FOR = 192.227.223.14 -- 09:22:26.067 INFO [27408]: COREGRADE is stopping... -- 09:22:26.067 DEBUG [27408]: Closing database connection -- 09:22:26.067 SQL [27408]: pgsql_close() -- 09:22:26.772 INFO [27408]: COREGRADE is starting... -- 09:22:26.772 INFO [27408]: Version from config: 1.0 -- 09:22:26.772 DEBUG [27408]: Connecting to database... -- 09:22:26.772 DEBUG [27408]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:22:26.772 SQL [27408]: pgsql_db_connect() -- 09:22:26.776 DEBUG [27408]: Database connection successful -- 09:22:26.776 INFO [27408]: _SERVER found -- 09:22:26.776 INFO [27408]: REMOTE_ADDR = 10.0.0.15 -- 09:22:26.776 INFO [27408]: SERVER_NAME = oameye.works.coregrade.com -- 09:22:26.776 INFO [27408]: QUERY_STRING = s=captcha -- 09:22:26.776 INFO [27408]: HTTP_X_FORWARDED_FOR = 192.227.223.14 -- 09:22:26.810 INFO [27408]: COREGRADE is stopping... -- 09:22:26.810 DEBUG [27408]: Closing database connection -- 09:22:26.810 SQL [27408]: pgsql_close() -- 09:22:27.508 INFO [27408]: COREGRADE is starting... -- 09:22:27.508 INFO [27408]: Version from config: 1.0 -- 09:22:27.508 DEBUG [27408]: Connecting to database... -- 09:22:27.508 DEBUG [27408]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:22:27.508 SQL [27408]: pgsql_db_connect() -- 09:22:27.512 DEBUG [27408]: Database connection successful -- 09:22:27.512 INFO [27408]: _SERVER found -- 09:22:27.512 INFO [27408]: REMOTE_ADDR = 10.0.0.15 -- 09:22:27.512 INFO [27408]: SERVER_NAME = oameye.works.coregrade.com -- 09:22:27.512 INFO [27408]: QUERY_STRING = -- 09:22:27.512 INFO [27408]: HTTP_X_FORWARDED_FOR = 192.227.223.14 -- 09:22:27.545 INFO [27408]: COREGRADE is stopping... -- 09:22:27.545 DEBUG [27408]: Closing database connection -- 09:22:27.545 SQL [27408]: pgsql_close() -- 11:16:47.816 INFO [27405]: COREGRADE is starting... -- 11:16:47.817 INFO [27405]: Version from config: 1.0 -- 11:16:47.817 DEBUG [27405]: Connecting to database... -- 11:16:47.817 DEBUG [27405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:16:47.817 SQL [27405]: pgsql_db_connect() -- 11:16:47.821 DEBUG [27405]: Database connection successful -- 11:16:47.821 INFO [27405]: _SERVER found -- 11:16:47.821 INFO [27405]: REMOTE_ADDR = 10.0.0.15 -- 11:16:47.821 INFO [27405]: SERVER_NAME = oameye.works.coregrade.com -- 11:16:47.821 INFO [27405]: QUERY_STRING = -- 11:16:47.821 INFO [27405]: HTTP_X_FORWARDED_FOR = 150.136.227.32 -- 11:16:47.861 INFO [27405]: COREGRADE is stopping... -- 11:16:47.861 DEBUG [27405]: Closing database connection -- 11:16:47.861 SQL [27405]: pgsql_close() -- 11:16:48.087 INFO [432]: COREGRADE is starting... -- 11:16:48.087 INFO [432]: Version from config: 1.0 -- 11:16:48.087 DEBUG [432]: Connecting to database... -- 11:16:48.087 DEBUG [432]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:16:48.087 SQL [432]: pgsql_db_connect() -- 11:16:48.091 DEBUG [432]: Database connection successful -- 11:16:48.091 INFO [432]: _SERVER found -- 11:16:48.091 INFO [432]: REMOTE_ADDR = 10.0.0.15 -- 11:16:48.091 INFO [432]: SERVER_NAME = oameye.works.coregrade.com -- 11:16:48.091 INFO [432]: QUERY_STRING = /home.asp -- 11:16:48.091 INFO [432]: HTTP_X_FORWARDED_FOR = 150.136.227.32 -- 11:16:48.104 INFO [432]: COREGRADE is stopping... -- 11:16:48.105 DEBUG [432]: Closing database connection -- 11:16:48.105 SQL [432]: pgsql_close() -- 11:16:48.270 INFO [27406]: COREGRADE is starting... -- 11:16:48.270 INFO [27406]: Version from config: 1.0 -- 11:16:48.270 DEBUG [27406]: Connecting to database... -- 11:16:48.270 DEBUG [27406]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:16:48.270 SQL [27406]: pgsql_db_connect() -- 11:16:48.274 DEBUG [27406]: Database connection successful -- 11:16:48.274 INFO [27406]: _SERVER found -- 11:16:48.274 INFO [27406]: REMOTE_ADDR = 10.0.0.15 -- 11:16:48.274 INFO [27406]: SERVER_NAME = oameye.works.coregrade.com -- 11:16:48.274 INFO [27406]: QUERY_STRING = /login.cgi -- 11:16:48.274 INFO [27406]: HTTP_X_FORWARDED_FOR = 150.136.227.32 -- 11:16:48.287 INFO [27406]: COREGRADE is stopping... -- 11:16:48.287 DEBUG [27406]: Closing database connection -- 11:16:48.287 SQL [27406]: pgsql_close() -- 11:16:49.222 INFO [27517]: COREGRADE is starting... -- 11:16:49.222 INFO [27517]: Version from config: 1.0 -- 11:16:49.222 DEBUG [27517]: Connecting to database... -- 11:16:49.222 DEBUG [27517]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:16:49.222 SQL [27517]: pgsql_db_connect() -- 11:16:49.226 DEBUG [27517]: Database connection successful -- 11:16:49.226 INFO [27517]: _SERVER found -- 11:16:49.226 INFO [27517]: REMOTE_ADDR = 10.0.0.15 -- 11:16:49.226 INFO [27517]: SERVER_NAME = oameye.works.coregrade.com -- 11:16:49.226 INFO [27517]: QUERY_STRING = /dana-na/auth/url_default/welcome.cgi -- 11:16:49.226 INFO [27517]: HTTP_X_FORWARDED_FOR = 150.136.227.32 -- 11:16:49.240 INFO [27517]: COREGRADE is stopping... -- 11:16:49.240 DEBUG [27517]: Closing database connection -- 11:16:49.240 SQL [27517]: pgsql_close() -- 11:16:49.467 INFO [432]: COREGRADE is starting... -- 11:16:49.467 INFO [432]: Version from config: 1.0 -- 11:16:49.467 DEBUG [432]: Connecting to database... -- 11:16:49.468 DEBUG [432]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:16:49.468 SQL [432]: pgsql_db_connect() -- 11:16:49.472 DEBUG [432]: Database connection successful -- 11:16:49.472 INFO [432]: _SERVER found -- 11:16:49.472 INFO [432]: REMOTE_ADDR = 10.0.0.15 -- 11:16:49.472 INFO [432]: SERVER_NAME = oameye.works.coregrade.com -- 11:16:49.472 INFO [432]: QUERY_STRING = /remote/login -- 11:16:49.472 INFO [432]: HTTP_X_FORWARDED_FOR = 150.136.227.32 -- 11:16:49.483 INFO [432]: COREGRADE is stopping... -- 11:16:49.483 DEBUG [432]: Closing database connection -- 11:16:49.483 SQL [432]: pgsql_close() -- 11:16:49.625 INFO [27406]: COREGRADE is starting... -- 11:16:49.625 INFO [27406]: Version from config: 1.0 -- 11:16:49.625 DEBUG [27406]: Connecting to database... -- 11:16:49.625 DEBUG [27406]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:16:49.625 SQL [27406]: pgsql_db_connect() -- 11:16:49.629 DEBUG [27406]: Database connection successful -- 11:16:49.629 INFO [27406]: _SERVER found -- 11:16:49.629 INFO [27406]: REMOTE_ADDR = 10.0.0.15 -- 11:16:49.629 INFO [27406]: SERVER_NAME = oameye.works.coregrade.com -- 11:16:49.629 INFO [27406]: QUERY_STRING = /index.asp -- 11:16:49.629 INFO [27406]: HTTP_X_FORWARDED_FOR = 150.136.227.32 -- 11:16:49.641 INFO [27406]: COREGRADE is stopping... -- 11:16:49.641 DEBUG [27406]: Closing database connection -- 11:16:49.641 SQL [27406]: pgsql_close() -- 15:06:35.510 INFO [27404]: COREGRADE is starting... -- 15:06:35.511 INFO [27404]: Version from config: 1.0 -- 15:06:35.511 DEBUG [27404]: Connecting to database... -- 15:06:35.511 DEBUG [27404]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:06:35.511 SQL [27404]: pgsql_db_connect() -- 15:06:35.516 DEBUG [27404]: Database connection successful -- 15:06:35.516 INFO [27404]: _SERVER found -- 15:06:35.516 INFO [27404]: REMOTE_ADDR = 10.0.0.15 -- 15:06:35.516 INFO [27404]: SERVER_NAME = oameye.works.coregrade.com -- 15:06:35.516 INFO [27404]: HTTP_COOKIE = _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1022816185.1588359366 -- 15:06:35.516 INFO [27404]: QUERY_STRING = -- 15:06:35.516 INFO [27404]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 15:06:35.558 INFO [27404]: COREGRADE is stopping... -- 15:06:35.558 DEBUG [27404]: Closing database connection -- 15:06:35.558 SQL [27404]: pgsql_close() -- 15:06:36.103 INFO [27404]: COREGRADE is starting... -- 15:06:36.103 INFO [27404]: Version from config: 1.0 -- 15:06:36.103 DEBUG [27404]: Connecting to database... -- 15:06:36.103 DEBUG [27404]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:06:36.103 SQL [27404]: pgsql_db_connect() -- 15:06:36.107 DEBUG [27404]: Database connection successful -- 15:06:36.107 INFO [27404]: _SERVER found -- 15:06:36.107 INFO [27404]: REMOTE_ADDR = 10.0.0.15 -- 15:06:36.107 INFO [27404]: SERVER_NAME = oameye.works.coregrade.com -- 15:06:36.107 INFO [27404]: HTTP_COOKIE = ci_session=mtee7gbmu2vuekugjdl9ffnar4tlko3r; _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1022816185.1588359366 -- 15:06:36.107 INFO [27404]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:06:36.107 INFO [27404]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 15:06:36.119 INFO [27404]: COREGRADE is stopping... -- 15:06:36.119 DEBUG [27404]: Closing database connection -- 15:06:36.119 SQL [27404]: pgsql_close() -- 17:56:49.110 INFO [431]: COREGRADE is starting... -- 17:56:49.110 INFO [431]: Version from config: 1.0 -- 17:56:49.110 DEBUG [431]: Connecting to database... -- 17:56:49.110 DEBUG [431]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:56:49.110 SQL [431]: pgsql_db_connect() -- 17:56:49.115 DEBUG [431]: Database connection successful -- 17:56:49.115 INFO [431]: _SERVER found -- 17:56:49.115 INFO [431]: REMOTE_ADDR = 10.0.0.15 -- 17:56:49.115 INFO [431]: SERVER_NAME = oameye.works.coregrade.com -- 17:56:49.115 INFO [431]: HTTP_COOKIE = _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1022816185.1588359366 -- 17:56:49.115 INFO [431]: QUERY_STRING = /auth -- 17:56:49.115 INFO [431]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 17:56:49.153 INFO [431]: COREGRADE is stopping... -- 17:56:49.153 DEBUG [431]: Closing database connection -- 17:56:49.153 SQL [431]: pgsql_close() -- 17:56:49.575 INFO [431]: COREGRADE is starting... -- 17:56:49.576 INFO [431]: Version from config: 1.0 -- 17:56:49.576 DEBUG [431]: Connecting to database... -- 17:56:49.576 DEBUG [431]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:56:49.576 SQL [431]: pgsql_db_connect() -- 17:56:49.580 DEBUG [431]: Database connection successful -- 17:56:49.580 INFO [431]: _SERVER found -- 17:56:49.580 INFO [431]: REMOTE_ADDR = 10.0.0.15 -- 17:56:49.580 INFO [431]: SERVER_NAME = oameye.works.coregrade.com -- 17:56:49.580 INFO [431]: HTTP_COOKIE = ci_session=ao6fndv1d065f1q4rmtm8emru4cv6fpb; _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1022816185.1588359366 -- 17:56:49.580 INFO [431]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:56:49.580 INFO [431]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 17:56:49.591 INFO [431]: COREGRADE is stopping... -- 17:56:49.591 DEBUG [431]: Closing database connection -- 17:56:49.591 SQL [431]: pgsql_close() -- 17:57:00.097 INFO [27517]: COREGRADE is starting... -- 17:57:00.098 INFO [27517]: Version from config: 1.0 -- 17:57:00.098 DEBUG [27517]: Connecting to database... -- 17:57:00.098 DEBUG [27517]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:57:00.098 SQL [27517]: pgsql_db_connect() -- 17:57:00.138 INFO [27517]: COREGRADE is starting... -- 17:57:00.138 INFO [27517]: Version from config: 1.0 -- 17:57:00.138 DEBUG [27517]: Connecting to database... -- 17:57:00.138 DEBUG [27517]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:57:00.138 SQL [27517]: pgsql_db_connect() -- 17:57:00.142 DEBUG [27517]: Database connection successful -- 17:57:00.142 INFO [27517]: _SERVER found -- 17:57:00.142 INFO [27517]: REMOTE_ADDR = 10.0.0.15 -- 17:57:00.142 INFO [27517]: SERVER_NAME = oameye.works.coregrade.com -- 17:57:00.142 INFO [27517]: HTTP_COOKIE = ci_session=ao6fndv1d065f1q4rmtm8emru4cv6fpb; _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1022816185.1588359366 -- 17:57:00.142 INFO [27517]: QUERY_STRING = -- 17:57:00.142 INFO [27517]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 17:57:00.142 INFO [27517]: SystemStatus()09-09-********~************ -- 17:57:00.142 INFO [27517]: long coregrade_api_main(CVars in, CVars &out) -- 17:57:00.142 INFO [27517]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 17:57:00.142 INFO [27517]: account calls -- 17:57:00.142 INFO [27517]: account_calls() -- 17:57:00.142 INFO [27517]: LoginCoreGradeAccount() -- 17:57:00.142 FLOG_MAX [27517]: REQ_STRING(username) -- 17:57:00.142 FLOG_MAX [27517]: REQ_STRING(password) -- 17:57:00.142 FLOG_MAX [27517]: REQ_STRING(sessionid) -- 17:57:00.142 FLOG_MAX [27517]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:57:00.142 SQL [27517]: pgsql_query() -- 17:57:00.142 SQL [27517]: About to run query: -- 17:57:00.142 SQL [27517]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 17:57:00.146 SQL [27517]: Found rows: 1 -- 17:57:00.146 FLOG_MAX [27517]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 17:57:00.146 INFO [27517]: long SessionCheck(long uid, const char *sessionid, int create ) -- 17:57:00.146 SQL [27517]: pgsql_exec() -- 17:57:00.146 SQL [27517]: About to run query: -- 17:57:00.146 SQL [27517]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 17:57:00.148 SQL [27517]: PQcmdTuples: 1 -- 17:57:00.148 SQL [27517]: Affected rows: 1 -- 17:57:00.148 SQL [27517]: pgsql_exec() -- 17:57:00.148 SQL [27517]: About to run query: -- 17:57:00.148 SQL [27517]: DELETE FROM members_session WHERE member_id=5 -- 17:57:00.148 SQL [27517]: PQcmdTuples: 0 -- 17:57:00.148 SQL [27517]: Affected rows: 0 -- 17:57:00.148 SQL [27517]: pgsql_query() -- 17:57:00.148 SQL [27517]: About to run query: -- 17:57:00.148 SQL [27517]: SELECT * FROM members_session WHERE member_id=5 AND session<>'27B792987341A2876C5DEF790E23394F' -- 17:57:00.149 SQL [27517]: Found rows: 0 -- 17:57:00.149 SQL [27517]: Found rows: 0 -- 17:57:00.149 FLOG_MAX [27517]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:57:00.149 SQL [27517]: pgsql_query() -- 17:57:00.149 SQL [27517]: About to run query: -- 17:57:00.149 SQL [27517]: SELECT * FROM members_session WHERE member_id=5 AND session='27B792987341A2876C5DEF790E23394F' -- 17:57:00.149 SQL [27517]: Found rows: 0 -- 17:57:00.149 SQL [27517]: Found rows: 0 -- 17:57:00.149 FLOG_MAX [27517]: insert_db_record() -- 17:57:00.149 SQL [27517]: pgsql_exec() -- 17:57:00.150 SQL [27517]: About to run query: -- 17:57:00.150 SQL [27517]: INSERT INTO members_session (member_id,session) VALUES ('5','27B792987341A2876C5DEF790E23394F') -- 17:57:00.151 SQL [27517]: PQcmdTuples: 1 -- 17:57:00.151 SQL [27517]: Affected rows: 1 -- 17:57:00.151 FLOG_MAX [27517]: SELECT currval('members_session_id_seq') -- 17:57:00.151 SQL [27517]: pgsql_query() -- 17:57:00.151 SQL [27517]: About to run query: -- 17:57:00.151 SQL [27517]: SELECT currval('members_session_id_seq') -- 17:57:00.152 SQL [27517]: Found rows: 1 -- 17:57:00.152 INFO [27517]: CreateDefaultPage() -- 17:57:00.152 FLOG_MAX [27517]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:57:00.152 SQL [27517]: pgsql_query() -- 17:57:00.152 SQL [27517]: About to run query: -- 17:57:00.152 SQL [27517]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 17:57:00.152 SQL [27517]: Found rows: 1 -- 17:57:00.152 FLOG_MAX [27517]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 17:57:00.152 SQL [27517]: pgsql_query() -- 17:57:00.152 SQL [27517]: About to run query: -- 17:57:00.152 SQL [27517]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 17:57:00.153 SQL [27517]: Found rows: 1 -- 17:57:00.153 INFO [27517]: /CreateDefaultPage() -- 17:57:00.153 INFO [27517]: /LoginCoreGradeAccount() -- 17:57:00.153 INFO [27517]: RET: added=2020-02-05 06:47:23.982154 -- 17:57:00.153 INFO [27517]: RET: email=ameye+11@chiefsoft.com -- 17:57:00.153 INFO [27517]: RET: firstname=Olu -- 17:57:00.153 INFO [27517]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 17:57:00.153 INFO [27517]: RET: id=5 -- 17:57:00.153 INFO [27517]: RET: last_login= -- 17:57:00.153 INFO [27517]: RET: lastname=Amey -- 17:57:00.153 INFO [27517]: RET: loc=192.168.1.13 -- 17:57:00.153 INFO [27517]: RET: member_id=5 -- 17:57:00.153 INFO [27517]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 17:57:00.153 INFO [27517]: RET: phone= -- 17:57:00.153 INFO [27517]: RET: pid= -- 17:57:00.153 INFO [27517]: RET: result=YES I GET TO BACK END -- 17:57:00.153 INFO [27517]: RET: sessionid=27B792987341A2876C5DEF790E23394F -- 17:57:00.153 INFO [27517]: RET: status=1 -- 17:57:00.153 INFO [27517]: RET: stauts=OK -- 17:57:00.153 INFO [27517]: RET: username=ameye+11@chiefsoft.com -- 17:57:00.153 INFO [27517]: RET: verified= -- 17:57:00.154 INFO [27517]: COREGRADE is stopping... -- 17:57:00.154 DEBUG [27517]: Closing database connection -- 17:57:00.154 SQL [27517]: pgsql_close() -- 17:57:00.102 DEBUG [27517]: Database connection successful -- 17:57:00.102 INFO [27517]: _SERVER found -- 17:57:00.102 INFO [27517]: REMOTE_ADDR = 10.0.0.15 -- 17:57:00.102 INFO [27517]: SERVER_NAME = oameye.works.coregrade.com -- 17:57:00.102 INFO [27517]: HTTP_COOKIE = ci_session=ao6fndv1d065f1q4rmtm8emru4cv6fpb; _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1022816185.1588359366 -- 17:57:00.102 INFO [27517]: QUERY_STRING = /auth -- 17:57:00.102 INFO [27517]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 17:57:00.155 INFO [27517]: COREGRADE is stopping... -- 17:57:00.155 DEBUG [27517]: Closing database connection -- 17:57:00.155 SQL [27517]: pgsql_close() -- 17:57:00.185 INFO [27517]: COREGRADE is starting... -- 17:57:00.186 INFO [27517]: Version from config: 1.0 -- 17:57:00.186 DEBUG [27517]: Connecting to database... -- 17:57:00.186 DEBUG [27517]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:57:00.186 SQL [27517]: pgsql_db_connect() -- 17:57:00.190 DEBUG [27517]: Database connection successful -- 17:57:00.190 INFO [27517]: _SERVER found -- 17:57:00.190 INFO [27517]: REMOTE_ADDR = 10.0.0.15 -- 17:57:00.190 INFO [27517]: SERVER_NAME = oameye.works.coregrade.com -- 17:57:00.190 INFO [27517]: HTTP_COOKIE = ci_session=ao6fndv1d065f1q4rmtm8emru4cv6fpb; _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1022816185.1588359366 -- 17:57:00.190 INFO [27517]: QUERY_STRING = /member/index -- 17:57:00.190 INFO [27517]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 17:57:00.232 INFO [27517]: COREGRADE is stopping... -- 17:57:00.232 DEBUG [27517]: Closing database connection -- 17:57:00.232 SQL [27517]: pgsql_close() -- 17:57:00.634 INFO [432]: COREGRADE is starting... -- 17:57:00.634 INFO [432]: Version from config: 1.0 -- 17:57:00.634 DEBUG [432]: Connecting to database... -- 17:57:00.634 DEBUG [432]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:57:00.634 SQL [432]: pgsql_db_connect() -- 17:57:00.639 DEBUG [432]: Database connection successful -- 17:57:00.639 INFO [432]: _SERVER found -- 17:57:00.639 INFO [432]: REMOTE_ADDR = 10.0.0.15 -- 17:57:00.639 INFO [432]: SERVER_NAME = oameye.works.coregrade.com -- 17:57:00.639 INFO [432]: HTTP_COOKIE = ci_session=ao6fndv1d065f1q4rmtm8emru4cv6fpb; _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1022816185.1588359366 -- 17:57:00.639 INFO [432]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:57:00.639 INFO [432]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 17:57:00.653 INFO [432]: COREGRADE is stopping... -- 17:57:00.653 DEBUG [432]: Closing database connection -- 17:57:00.653 SQL [432]: pgsql_close() -- 17:57:08.117 INFO [27404]: COREGRADE is starting... -- 17:57:08.117 INFO [27404]: Version from config: 1.0 -- 17:57:08.117 DEBUG [27404]: Connecting to database... -- 17:57:08.117 DEBUG [27404]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:57:08.117 SQL [27404]: pgsql_db_connect() -- 17:57:08.121 DEBUG [27404]: Database connection successful -- 17:57:08.121 INFO [27404]: _SERVER found -- 17:57:08.121 INFO [27404]: REMOTE_ADDR = 10.0.0.15 -- 17:57:08.121 INFO [27404]: SERVER_NAME = oameye.works.coregrade.com -- 17:57:08.121 INFO [27404]: HTTP_COOKIE = ci_session=ao6fndv1d065f1q4rmtm8emru4cv6fpb; _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1022816185.1588359366 -- 17:57:08.121 INFO [27404]: QUERY_STRING = /member/configure -- 17:57:08.121 INFO [27404]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 17:57:08.169 INFO [27404]: COREGRADE is stopping... -- 17:57:08.169 DEBUG [27404]: Closing database connection -- 17:57:08.169 SQL [27404]: pgsql_close() -- 17:57:08.289 INFO [27404]: COREGRADE is starting... -- 17:57:08.290 INFO [27404]: Version from config: 1.0 -- 17:57:08.290 DEBUG [27404]: Connecting to database... -- 17:57:08.290 DEBUG [27404]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:57:08.290 SQL [27404]: pgsql_db_connect() -- 17:57:08.294 DEBUG [27404]: Database connection successful -- 17:57:08.294 INFO [27404]: _SERVER found -- 17:57:08.294 INFO [27404]: REMOTE_ADDR = 10.0.0.15 -- 17:57:08.294 INFO [27404]: SERVER_NAME = oameye.works.coregrade.com -- 17:57:08.294 INFO [27404]: HTTP_COOKIE = ci_session=ao6fndv1d065f1q4rmtm8emru4cv6fpb; _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1022816185.1588359366 -- 17:57:08.294 INFO [27404]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 17:57:08.294 INFO [27404]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 17:57:08.305 INFO [27404]: COREGRADE is stopping... -- 17:57:08.305 DEBUG [27404]: Closing database connection -- 17:57:08.305 SQL [27404]: pgsql_close() -- 17:57:08.378 INFO [28789]: COREGRADE is starting... -- 17:57:08.378 INFO [28789]: Version from config: 1.0 -- 17:57:08.378 DEBUG [28789]: Connecting to database... -- 17:57:08.378 DEBUG [28789]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:57:08.378 SQL [28789]: pgsql_db_connect() -- 17:57:08.382 DEBUG [28789]: Database connection successful -- 17:57:08.382 INFO [28789]: _SERVER found -- 17:57:08.382 INFO [28789]: REMOTE_ADDR = 10.0.0.15 -- 17:57:08.382 INFO [28789]: SERVER_NAME = oameye.works.coregrade.com -- 17:57:08.382 INFO [28789]: HTTP_COOKIE = ci_session=ao6fndv1d065f1q4rmtm8emru4cv6fpb; _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1022816185.1588359366 -- 17:57:08.382 INFO [28789]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 17:57:08.382 INFO [28789]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 17:57:08.395 INFO [28789]: COREGRADE is stopping... -- 17:57:08.395 DEBUG [28789]: Closing database connection -- 17:57:08.395 SQL [28789]: pgsql_close() -- 17:58:17.674 INFO [27408]: COREGRADE is starting... -- 17:58:17.674 INFO [27408]: Version from config: 1.0 -- 17:58:17.674 DEBUG [27408]: Connecting to database... -- 17:58:17.674 DEBUG [27408]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:58:17.674 SQL [27408]: pgsql_db_connect() -- 17:58:17.678 DEBUG [27408]: Database connection successful -- 17:58:17.678 INFO [27408]: _SERVER found -- 17:58:17.678 INFO [27408]: REMOTE_ADDR = 10.0.0.15 -- 17:58:17.678 INFO [27408]: SERVER_NAME = oameye.works.coregrade.com -- 17:58:17.678 INFO [27408]: HTTP_COOKIE = ci_session=ao6fndv1d065f1q4rmtm8emru4cv6fpb; _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1022816185.1588359366 -- 17:58:17.678 INFO [27408]: QUERY_STRING = /auth/logout -- 17:58:17.678 INFO [27408]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 17:58:17.714 INFO [27408]: COREGRADE is stopping... -- 17:58:17.714 DEBUG [27408]: Closing database connection -- 17:58:17.714 SQL [27408]: pgsql_close() -- 17:58:17.851 INFO [27408]: COREGRADE is starting... -- 17:58:17.851 INFO [27408]: Version from config: 1.0 -- 17:58:17.851 DEBUG [27408]: Connecting to database... -- 17:58:17.851 DEBUG [27408]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:58:17.851 SQL [27408]: pgsql_db_connect() -- 17:58:17.855 DEBUG [27408]: Database connection successful -- 17:58:17.855 INFO [27408]: _SERVER found -- 17:58:17.855 INFO [27408]: REMOTE_ADDR = 10.0.0.15 -- 17:58:17.855 INFO [27408]: SERVER_NAME = oameye.works.coregrade.com -- 17:58:17.855 INFO [27408]: HTTP_COOKIE = ci_session=ao6fndv1d065f1q4rmtm8emru4cv6fpb; _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1022816185.1588359366 -- 17:58:17.855 INFO [27408]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:58:17.855 INFO [27408]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 17:58:17.866 INFO [27408]: COREGRADE is stopping... -- 17:58:17.866 DEBUG [27408]: Closing database connection -- 17:58:17.866 SQL [27408]: pgsql_close() -- 17:58:28.052 INFO [27405]: COREGRADE is starting... -- 17:58:28.052 INFO [27405]: Version from config: 1.0 -- 17:58:28.052 DEBUG [27405]: Connecting to database... -- 17:58:28.052 DEBUG [27405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:58:28.052 SQL [27405]: pgsql_db_connect() -- 17:58:28.089 INFO [27405]: COREGRADE is starting... -- 17:58:28.090 INFO [27405]: Version from config: 1.0 -- 17:58:28.090 DEBUG [27405]: Connecting to database... -- 17:58:28.090 DEBUG [27405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:58:28.090 SQL [27405]: pgsql_db_connect() -- 17:58:28.094 DEBUG [27405]: Database connection successful -- 17:58:28.094 INFO [27405]: _SERVER found -- 17:58:28.094 INFO [27405]: REMOTE_ADDR = 10.0.0.15 -- 17:58:28.094 INFO [27405]: SERVER_NAME = oameye.works.coregrade.com -- 17:58:28.094 INFO [27405]: HTTP_COOKIE = ci_session=ao6fndv1d065f1q4rmtm8emru4cv6fpb; _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1022816185.1588359366 -- 17:58:28.094 INFO [27405]: QUERY_STRING = -- 17:58:28.094 INFO [27405]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 17:58:28.094 INFO [27405]: SystemStatus()09-09-********~************ -- 17:58:28.094 INFO [27405]: long coregrade_api_main(CVars in, CVars &out) -- 17:58:28.094 INFO [27405]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 17:58:28.094 INFO [27405]: account calls -- 17:58:28.094 INFO [27405]: account_calls() -- 17:58:28.094 INFO [27405]: LoginCoreGradeAccount() -- 17:58:28.094 FLOG_MAX [27405]: REQ_STRING(username) -- 17:58:28.094 FLOG_MAX [27405]: REQ_STRING(password) -- 17:58:28.094 FLOG_MAX [27405]: REQ_STRING(sessionid) -- 17:58:28.094 FLOG_MAX [27405]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:58:28.094 SQL [27405]: pgsql_query() -- 17:58:28.094 SQL [27405]: About to run query: -- 17:58:28.094 SQL [27405]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('obaxnoma@gmail.com') AND password= md5('obaro001!') -- 17:58:28.097 SQL [27405]: Found rows: 0 -- 17:58:28.097 SQL [27405]: Found rows: 0 -- 17:58:28.097 INFO [27405]: long SessionCheck(long uid, const char *sessionid, int create ) -- 17:58:28.097 FLOG_MAX [27405]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:58:28.097 SQL [27405]: pgsql_query() -- 17:58:28.097 SQL [27405]: About to run query: -- 17:58:28.097 SQL [27405]: SELECT upper(md5( now()::text )) AS folder -- 17:58:28.098 SQL [27405]: Found rows: 1 -- 17:58:28.098 FLOG_MAX [27405]: load_db_record(SELECT upper(md5( now()::text )) AS folder) num_cols=1 -- 17:58:28.098 FLOG_MAX [27405]: update_db_record() -- 17:58:28.098 FLOG_MAX [27405]: Bad parameter exception: 'id' -- 17:58:28.098 INFO [27405]: RET: folder=D9AE7A69BC18101546A5FA8A77B5BBD2 -- 17:58:28.098 INFO [27405]: RET: member_id= -- 17:58:28.098 INFO [27405]: RET: result=YES I GET TO BACK END -- 17:58:28.098 INFO [27405]: RET: sessionid= -- 17:58:28.098 INFO [27405]: RET: status=Incorrect input parameter -- 17:58:28.099 INFO [27405]: COREGRADE is stopping... -- 17:58:28.099 DEBUG [27405]: Closing database connection -- 17:58:28.099 SQL [27405]: pgsql_close() -- 17:58:28.056 DEBUG [27405]: Database connection successful -- 17:58:28.056 INFO [27405]: _SERVER found -- 17:58:28.056 INFO [27405]: REMOTE_ADDR = 10.0.0.15 -- 17:58:28.056 INFO [27405]: SERVER_NAME = oameye.works.coregrade.com -- 17:58:28.056 INFO [27405]: HTTP_COOKIE = ci_session=ao6fndv1d065f1q4rmtm8emru4cv6fpb; _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1022816185.1588359366 -- 17:58:28.056 INFO [27405]: QUERY_STRING = /auth -- 17:58:28.056 INFO [27405]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 17:58:28.099 INFO [27405]: COREGRADE is stopping... -- 17:58:28.099 DEBUG [27405]: Closing database connection -- 17:58:28.099 SQL [27405]: pgsql_close() -- 17:58:28.224 INFO [27405]: COREGRADE is starting... -- 17:58:28.224 INFO [27405]: Version from config: 1.0 -- 17:58:28.224 DEBUG [27405]: Connecting to database... -- 17:58:28.224 DEBUG [27405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:58:28.224 SQL [27405]: pgsql_db_connect() -- 17:58:28.228 DEBUG [27405]: Database connection successful -- 17:58:28.228 INFO [27405]: _SERVER found -- 17:58:28.228 INFO [27405]: REMOTE_ADDR = 10.0.0.15 -- 17:58:28.228 INFO [27405]: SERVER_NAME = oameye.works.coregrade.com -- 17:58:28.228 INFO [27405]: HTTP_COOKIE = ci_session=ao6fndv1d065f1q4rmtm8emru4cv6fpb; _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1022816185.1588359366 -- 17:58:28.228 INFO [27405]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:58:28.228 INFO [27405]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 17:58:28.239 INFO [27405]: COREGRADE is stopping... -- 17:58:28.239 DEBUG [27405]: Closing database connection -- 17:58:28.239 SQL [27405]: pgsql_close() -- 17:58:37.172 INFO [27407]: COREGRADE is starting... -- 17:58:37.173 INFO [27407]: Version from config: 1.0 -- 17:58:37.173 DEBUG [27407]: Connecting to database... -- 17:58:37.173 DEBUG [27407]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:58:37.173 SQL [27407]: pgsql_db_connect() -- 17:58:37.211 INFO [27407]: COREGRADE is starting... -- 17:58:37.212 INFO [27407]: Version from config: 1.0 -- 17:58:37.212 DEBUG [27407]: Connecting to database... -- 17:58:37.212 DEBUG [27407]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:58:37.212 SQL [27407]: pgsql_db_connect() -- 17:58:37.216 DEBUG [27407]: Database connection successful -- 17:58:37.216 INFO [27407]: _SERVER found -- 17:58:37.216 INFO [27407]: REMOTE_ADDR = 10.0.0.15 -- 17:58:37.216 INFO [27407]: SERVER_NAME = oameye.works.coregrade.com -- 17:58:37.216 INFO [27407]: HTTP_COOKIE = ci_session=ao6fndv1d065f1q4rmtm8emru4cv6fpb; _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1022816185.1588359366 -- 17:58:37.216 INFO [27407]: QUERY_STRING = -- 17:58:37.216 INFO [27407]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 17:58:37.216 INFO [27407]: SystemStatus()09-09-********~************ -- 17:58:37.216 INFO [27407]: long coregrade_api_main(CVars in, CVars &out) -- 17:58:37.216 INFO [27407]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 17:58:37.216 INFO [27407]: account calls -- 17:58:37.216 INFO [27407]: account_calls() -- 17:58:37.216 INFO [27407]: LoginCoreGradeAccount() -- 17:58:37.216 FLOG_MAX [27407]: REQ_STRING(username) -- 17:58:37.216 FLOG_MAX [27407]: REQ_STRING(password) -- 17:58:37.216 FLOG_MAX [27407]: REQ_STRING(sessionid) -- 17:58:37.216 FLOG_MAX [27407]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:58:37.216 SQL [27407]: pgsql_query() -- 17:58:37.216 SQL [27407]: About to run query: -- 17:58:37.216 SQL [27407]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('obaro') AND password= md5('obaro0!') -- 17:58:37.219 SQL [27407]: Found rows: 0 -- 17:58:37.219 SQL [27407]: Found rows: 0 -- 17:58:37.219 INFO [27407]: long SessionCheck(long uid, const char *sessionid, int create ) -- 17:58:37.219 FLOG_MAX [27407]: long load_db_record( CVars &rec, const char * query, ... ) -- 17:58:37.219 SQL [27407]: pgsql_query() -- 17:58:37.219 SQL [27407]: About to run query: -- 17:58:37.219 SQL [27407]: SELECT upper(md5( now()::text )) AS folder -- 17:58:37.219 SQL [27407]: Found rows: 1 -- 17:58:37.219 FLOG_MAX [27407]: load_db_record(SELECT upper(md5( now()::text )) AS folder) num_cols=1 -- 17:58:37.219 FLOG_MAX [27407]: update_db_record() -- 17:58:37.219 FLOG_MAX [27407]: Bad parameter exception: 'id' -- 17:58:37.220 INFO [27407]: RET: folder=B641E54D06097AC6C76B3989E7381007 -- 17:58:37.220 INFO [27407]: RET: member_id= -- 17:58:37.220 INFO [27407]: RET: result=YES I GET TO BACK END -- 17:58:37.220 INFO [27407]: RET: sessionid= -- 17:58:37.220 INFO [27407]: RET: status=Incorrect input parameter -- 17:58:37.221 INFO [27407]: COREGRADE is stopping... -- 17:58:37.221 DEBUG [27407]: Closing database connection -- 17:58:37.221 SQL [27407]: pgsql_close() -- 17:58:37.177 DEBUG [27407]: Database connection successful -- 17:58:37.177 INFO [27407]: _SERVER found -- 17:58:37.177 INFO [27407]: REMOTE_ADDR = 10.0.0.15 -- 17:58:37.177 INFO [27407]: SERVER_NAME = oameye.works.coregrade.com -- 17:58:37.177 INFO [27407]: HTTP_COOKIE = ci_session=ao6fndv1d065f1q4rmtm8emru4cv6fpb; _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1022816185.1588359366 -- 17:58:37.177 INFO [27407]: QUERY_STRING = /auth -- 17:58:37.177 INFO [27407]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 17:58:37.222 INFO [27407]: COREGRADE is stopping... -- 17:58:37.222 DEBUG [27407]: Closing database connection -- 17:58:37.222 SQL [27407]: pgsql_close() -- 17:58:37.369 INFO [27407]: COREGRADE is starting... -- 17:58:37.370 INFO [27407]: Version from config: 1.0 -- 17:58:37.370 DEBUG [27407]: Connecting to database... -- 17:58:37.370 DEBUG [27407]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:58:37.370 SQL [27407]: pgsql_db_connect() -- 17:58:37.374 DEBUG [27407]: Database connection successful -- 17:58:37.374 INFO [27407]: _SERVER found -- 17:58:37.374 INFO [27407]: REMOTE_ADDR = 10.0.0.15 -- 17:58:37.374 INFO [27407]: SERVER_NAME = oameye.works.coregrade.com -- 17:58:37.374 INFO [27407]: HTTP_COOKIE = ci_session=ao6fndv1d065f1q4rmtm8emru4cv6fpb; _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1022816185.1588359366 -- 17:58:37.374 INFO [27407]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:58:37.374 INFO [27407]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 17:58:37.385 INFO [27407]: COREGRADE is stopping... -- 17:58:37.385 DEBUG [27407]: Closing database connection -- 17:58:37.385 SQL [27407]: pgsql_close() -- 18:03:29.963 INFO [431]: COREGRADE is starting... -- 18:03:29.964 INFO [431]: Version from config: 1.0 -- 18:03:29.964 DEBUG [431]: Connecting to database... -- 18:03:29.964 DEBUG [431]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:03:29.964 SQL [431]: pgsql_db_connect() -- 18:03:29.969 DEBUG [431]: Database connection successful -- 18:03:29.969 INFO [431]: _SERVER found -- 18:03:29.969 INFO [431]: REMOTE_ADDR = 10.0.0.15 -- 18:03:29.969 INFO [431]: SERVER_NAME = oameye.works.coregrade.com -- 18:03:29.969 INFO [431]: HTTP_COOKIE = ci_session=ao6fndv1d065f1q4rmtm8emru4cv6fpb; _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1022816185.1588359366 -- 18:03:29.969 INFO [431]: QUERY_STRING = -- 18:03:29.969 INFO [431]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 18:03:30.003 INFO [431]: COREGRADE is stopping... -- 18:03:30.003 DEBUG [431]: Closing database connection -- 18:03:30.003 SQL [431]: pgsql_close() -- 18:03:30.168 INFO [431]: COREGRADE is starting... -- 18:03:30.168 INFO [431]: Version from config: 1.0 -- 18:03:30.168 DEBUG [431]: Connecting to database... -- 18:03:30.168 DEBUG [431]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:03:30.168 SQL [431]: pgsql_db_connect() -- 18:03:30.173 DEBUG [431]: Database connection successful -- 18:03:30.173 INFO [431]: _SERVER found -- 18:03:30.173 INFO [431]: REMOTE_ADDR = 10.0.0.15 -- 18:03:30.173 INFO [431]: SERVER_NAME = oameye.works.coregrade.com -- 18:03:30.173 INFO [431]: HTTP_COOKIE = ci_session=eagb9fjgu2mds3umgbddatdtld6gjh8p; _ga=GA1.2.1073336077.1587056389; _gid=GA1.2.1022816185.1588359366 -- 18:03:30.173 INFO [431]: QUERY_STRING = /assets/img/footer_1.jpg -- 18:03:30.173 INFO [431]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 18:03:30.185 INFO [431]: COREGRADE is stopping... -- 18:03:30.185 DEBUG [431]: Closing database connection -- 18:03:30.185 SQL [431]: pgsql_close() -- 00:51:40.420 INFO [27517]: COREGRADE is starting... -- 00:51:40.420 INFO [27517]: Version from config: 1.0 -- 00:51:40.420 DEBUG [27517]: Connecting to database... -- 00:51:40.420 DEBUG [27517]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:51:40.420 SQL [27517]: pgsql_db_connect() -- 00:51:40.425 DEBUG [27517]: Database connection successful -- 00:51:40.425 INFO [27517]: _SERVER found -- 00:51:40.425 INFO [27517]: REMOTE_ADDR = 10.0.0.15 -- 00:51:40.425 INFO [27517]: SERVER_NAME = oameye.works.coregrade.com -- 00:51:40.425 INFO [27517]: QUERY_STRING = /.well-known/acme-challenge/8Je8XduKvFQBII2a790GMkpm76NXn6rWvMy44bu3o8M -- 00:51:40.425 INFO [27517]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 00:51:40.446 INFO [27517]: COREGRADE is stopping... -- 00:51:40.446 DEBUG [27517]: Closing database connection -- 00:51:40.446 SQL [27517]: pgsql_close() -- 00:51:40.568 INFO [27517]: COREGRADE is starting... -- 00:51:40.568 INFO [27517]: Version from config: 1.0 -- 00:51:40.568 DEBUG [27517]: Connecting to database... -- 00:51:40.568 DEBUG [27517]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:51:40.568 SQL [27517]: pgsql_db_connect() -- 00:51:40.573 DEBUG [27517]: Database connection successful -- 00:51:40.573 INFO [27517]: _SERVER found -- 00:51:40.573 INFO [27517]: REMOTE_ADDR = 10.0.0.15 -- 00:51:40.573 INFO [27517]: SERVER_NAME = oameye.works.coregrade.com -- 00:51:40.573 INFO [27517]: QUERY_STRING = /.well-known/acme-challenge/8Je8XduKvFQBII2a790GMkpm76NXn6rWvMy44bu3o8M -- 00:51:40.573 INFO [27517]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 00:51:40.584 INFO [27517]: COREGRADE is stopping... -- 00:51:40.584 DEBUG [27517]: Closing database connection -- 00:51:40.584 SQL [27517]: pgsql_close() -- 00:51:40.729 INFO [27517]: COREGRADE is starting... -- 00:51:40.729 INFO [27517]: Version from config: 1.0 -- 00:51:40.729 DEBUG [27517]: Connecting to database... -- 00:51:40.729 DEBUG [27517]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:51:40.729 SQL [27517]: pgsql_db_connect() -- 00:51:40.733 DEBUG [27517]: Database connection successful -- 00:51:40.733 INFO [27517]: _SERVER found -- 00:51:40.733 INFO [27517]: REMOTE_ADDR = 10.0.0.15 -- 00:51:40.733 INFO [27517]: SERVER_NAME = oameye.works.coregrade.com -- 00:51:40.733 INFO [27517]: QUERY_STRING = /.well-known/acme-challenge/8Je8XduKvFQBII2a790GMkpm76NXn6rWvMy44bu3o8M -- 00:51:40.733 INFO [27517]: HTTP_X_FORWARDED_FOR = 52.28.236.88 -- 00:51:40.744 INFO [27517]: COREGRADE is stopping... -- 00:51:40.744 DEBUG [27517]: Closing database connection -- 00:51:40.744 SQL [27517]: pgsql_close() -- 08:14:40.115 INFO [27406]: COREGRADE is starting... -- 08:14:40.116 INFO [27406]: Version from config: 1.0 -- 08:14:40.116 DEBUG [27406]: Connecting to database... -- 08:14:40.116 DEBUG [27406]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:14:40.116 SQL [27406]: pgsql_db_connect() -- 08:14:40.121 DEBUG [27406]: Database connection successful -- 08:14:40.121 INFO [27406]: _SERVER found -- 08:14:40.121 INFO [27406]: REMOTE_ADDR = 10.0.0.15 -- 08:14:40.121 INFO [27406]: SERVER_NAME = oameye.works.coregrade.com -- 08:14:40.121 INFO [27406]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 08:14:40.121 INFO [27406]: QUERY_STRING = /auth -- 08:14:40.121 INFO [27406]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:14:40.160 INFO [27406]: COREGRADE is stopping... -- 08:14:40.160 DEBUG [27406]: Closing database connection -- 08:14:40.160 SQL [27406]: pgsql_close() -- 08:14:40.465 INFO [27406]: COREGRADE is starting... -- 08:14:40.466 INFO [27406]: Version from config: 1.0 -- 08:14:40.466 DEBUG [27406]: Connecting to database... -- 08:14:40.466 DEBUG [27406]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:14:40.466 SQL [27406]: pgsql_db_connect() -- 08:14:40.470 DEBUG [27406]: Database connection successful -- 08:14:40.470 INFO [27406]: _SERVER found -- 08:14:40.470 INFO [27406]: REMOTE_ADDR = 10.0.0.15 -- 08:14:40.470 INFO [27406]: SERVER_NAME = oameye.works.coregrade.com -- 08:14:40.470 INFO [27406]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=o8n5bgf2hggih6q9r79km3bpmji66pht -- 08:14:40.470 INFO [27406]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 08:14:40.470 INFO [27406]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:14:40.482 INFO [27406]: COREGRADE is stopping... -- 08:14:40.482 DEBUG [27406]: Closing database connection -- 08:14:40.482 SQL [27406]: pgsql_close() -- 08:32:27.127 INFO [27404]: COREGRADE is starting... -- 08:32:27.127 INFO [27404]: Version from config: 1.0 -- 08:32:27.127 DEBUG [27404]: Connecting to database... -- 08:32:27.127 DEBUG [27404]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:32:27.127 SQL [27404]: pgsql_db_connect() -- 08:32:27.132 DEBUG [27404]: Database connection successful -- 08:32:27.132 INFO [27404]: _SERVER found -- 08:32:27.132 INFO [27404]: REMOTE_ADDR = 10.0.0.15 -- 08:32:27.132 INFO [27404]: SERVER_NAME = oameye.works.coregrade.com -- 08:32:27.132 INFO [27404]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=o8n5bgf2hggih6q9r79km3bpmji66pht -- 08:32:27.132 INFO [27404]: QUERY_STRING = -- 08:32:27.132 INFO [27404]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:32:27.168 INFO [27404]: COREGRADE is stopping... -- 08:32:27.168 DEBUG [27404]: Closing database connection -- 08:32:27.168 SQL [27404]: pgsql_close() -- 08:32:27.491 INFO [27404]: COREGRADE is starting... -- 08:32:27.491 INFO [27404]: Version from config: 1.0 -- 08:32:27.491 DEBUG [27404]: Connecting to database... -- 08:32:27.491 DEBUG [27404]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:32:27.491 SQL [27404]: pgsql_db_connect() -- 08:32:27.495 DEBUG [27404]: Database connection successful -- 08:32:27.495 INFO [27404]: _SERVER found -- 08:32:27.495 INFO [27404]: REMOTE_ADDR = 10.0.0.15 -- 08:32:27.495 INFO [27404]: SERVER_NAME = oameye.works.coregrade.com -- 08:32:27.495 INFO [27404]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=ncd9fb2r0u34a2608biautrlc9vtehhs -- 08:32:27.495 INFO [27404]: QUERY_STRING = /assets/img/footer_1.jpg -- 08:32:27.495 INFO [27404]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:32:27.507 INFO [27404]: COREGRADE is stopping... -- 08:32:27.507 DEBUG [27404]: Closing database connection -- 08:32:27.507 SQL [27404]: pgsql_close() -- 08:33:48.615 INFO [28789]: COREGRADE is starting... -- 08:33:48.615 INFO [28789]: Version from config: 1.0 -- 08:33:48.615 DEBUG [28789]: Connecting to database... -- 08:33:48.615 DEBUG [28789]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:33:48.615 SQL [28789]: pgsql_db_connect() -- 08:33:48.619 DEBUG [28789]: Database connection successful -- 08:33:48.619 INFO [28789]: _SERVER found -- 08:33:48.619 INFO [28789]: REMOTE_ADDR = 10.0.0.15 -- 08:33:48.619 INFO [28789]: SERVER_NAME = oameye.works.coregrade.com -- 08:33:48.619 INFO [28789]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=ncd9fb2r0u34a2608biautrlc9vtehhs; _gid=GA1.2.602173301.1588422748 -- 08:33:48.619 INFO [28789]: QUERY_STRING = /cp -- 08:33:48.619 INFO [28789]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:33:48.633 INFO [28789]: COREGRADE is stopping... -- 08:33:48.633 DEBUG [28789]: Closing database connection -- 08:33:48.633 SQL [28789]: pgsql_close() -- 08:33:48.873 INFO [28789]: COREGRADE is starting... -- 08:33:48.873 INFO [28789]: Version from config: 1.0 -- 08:33:48.873 DEBUG [28789]: Connecting to database... -- 08:33:48.873 DEBUG [28789]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:33:48.873 SQL [28789]: pgsql_db_connect() -- 08:33:48.877 DEBUG [28789]: Database connection successful -- 08:33:48.877 INFO [28789]: _SERVER found -- 08:33:48.877 INFO [28789]: REMOTE_ADDR = 10.0.0.15 -- 08:33:48.877 INFO [28789]: SERVER_NAME = oameye.works.coregrade.com -- 08:33:48.877 INFO [28789]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=ncd9fb2r0u34a2608biautrlc9vtehhs; _gid=GA1.2.602173301.1588422748 -- 08:33:48.877 INFO [28789]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 08:33:48.877 INFO [28789]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:33:48.888 INFO [28789]: COREGRADE is stopping... -- 08:33:48.888 DEBUG [28789]: Closing database connection -- 08:33:48.888 SQL [28789]: pgsql_close() -- 08:36:39.826 INFO [27408]: COREGRADE is starting... -- 08:36:39.826 INFO [27408]: Version from config: 1.0 -- 08:36:39.826 DEBUG [27408]: Connecting to database... -- 08:36:39.826 DEBUG [27408]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:36:39.826 SQL [27408]: pgsql_db_connect() -- 08:36:39.831 DEBUG [27408]: Database connection successful -- 08:36:39.831 INFO [27408]: _SERVER found -- 08:36:39.831 INFO [27408]: REMOTE_ADDR = 10.0.0.15 -- 08:36:39.831 INFO [27408]: SERVER_NAME = oameye.works.coregrade.com -- 08:36:39.831 INFO [27408]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=ncd9fb2r0u34a2608biautrlc9vtehhs; _gid=GA1.2.602173301.1588422748 -- 08:36:39.831 INFO [27408]: QUERY_STRING = /authdd -- 08:36:39.831 INFO [27408]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:36:39.844 INFO [27408]: COREGRADE is stopping... -- 08:36:39.844 DEBUG [27408]: Closing database connection -- 08:36:39.844 SQL [27408]: pgsql_close() -- 08:36:39.921 INFO [27408]: COREGRADE is starting... -- 08:36:39.921 INFO [27408]: Version from config: 1.0 -- 08:36:39.921 DEBUG [27408]: Connecting to database... -- 08:36:39.921 DEBUG [27408]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:36:39.921 SQL [27408]: pgsql_db_connect() -- 08:36:39.925 DEBUG [27408]: Database connection successful -- 08:36:39.925 INFO [27408]: _SERVER found -- 08:36:39.925 INFO [27408]: REMOTE_ADDR = 10.0.0.15 -- 08:36:39.925 INFO [27408]: SERVER_NAME = oameye.works.coregrade.com -- 08:36:39.925 INFO [27408]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=ncd9fb2r0u34a2608biautrlc9vtehhs; _gid=GA1.2.602173301.1588422748 -- 08:36:39.925 INFO [27408]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 08:36:39.925 INFO [27408]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:36:39.937 INFO [27408]: COREGRADE is stopping... -- 08:36:39.937 DEBUG [27408]: Closing database connection -- 08:36:39.937 SQL [27408]: pgsql_close() -- 08:36:42.342 INFO [27408]: COREGRADE is starting... -- 08:36:42.342 INFO [27408]: Version from config: 1.0 -- 08:36:42.342 DEBUG [27408]: Connecting to database... -- 08:36:42.342 DEBUG [27408]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:36:42.342 SQL [27408]: pgsql_db_connect() -- 08:36:42.346 DEBUG [27408]: Database connection successful -- 08:36:42.346 INFO [27408]: _SERVER found -- 08:36:42.346 INFO [27408]: REMOTE_ADDR = 10.0.0.15 -- 08:36:42.346 INFO [27408]: SERVER_NAME = oameye.works.coregrade.com -- 08:36:42.346 INFO [27408]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=ncd9fb2r0u34a2608biautrlc9vtehhs; _gid=GA1.2.602173301.1588422748 -- 08:36:42.346 INFO [27408]: QUERY_STRING = -- 08:36:42.346 INFO [27408]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 08:36:42.380 INFO [27408]: COREGRADE is stopping... -- 08:36:42.380 DEBUG [27408]: Closing database connection -- 08:36:42.380 SQL [27408]: pgsql_close() -- 18:07:47.260 INFO [27405]: COREGRADE is starting... -- 18:07:47.261 INFO [27405]: Version from config: 1.0 -- 18:07:47.261 DEBUG [27405]: Connecting to database... -- 18:07:47.261 DEBUG [27405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:47.261 SQL [27405]: pgsql_db_connect() -- 18:07:47.266 DEBUG [27405]: Database connection successful -- 18:07:47.266 INFO [27405]: _SERVER found -- 18:07:47.266 INFO [27405]: REMOTE_ADDR = 10.0.0.15 -- 18:07:47.266 INFO [27405]: SERVER_NAME = oameye.works.coregrade.com -- 18:07:47.266 INFO [27405]: QUERY_STRING = -- 18:07:47.266 INFO [27405]: HTTP_X_FORWARDED_FOR = 200.143.191.58 -- 18:07:47.305 INFO [27405]: COREGRADE is stopping... -- 18:07:47.305 DEBUG [27405]: Closing database connection -- 18:07:47.305 SQL [27405]: pgsql_close() -- 18:07:48.297 INFO [27405]: COREGRADE is starting... -- 18:07:48.297 INFO [27405]: Version from config: 1.0 -- 18:07:48.297 DEBUG [27405]: Connecting to database... -- 18:07:48.297 DEBUG [27405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:48.297 SQL [27405]: pgsql_db_connect() -- 18:07:48.301 DEBUG [27405]: Database connection successful -- 18:07:48.301 INFO [27405]: _SERVER found -- 18:07:48.301 INFO [27405]: REMOTE_ADDR = 10.0.0.15 -- 18:07:48.301 INFO [27405]: SERVER_NAME = oameye.works.coregrade.com -- 18:07:48.301 INFO [27405]: QUERY_STRING = /home.asp -- 18:07:48.301 INFO [27405]: HTTP_X_FORWARDED_FOR = 200.143.191.58 -- 18:07:48.313 INFO [27405]: COREGRADE is stopping... -- 18:07:48.313 DEBUG [27405]: Closing database connection -- 18:07:48.313 SQL [27405]: pgsql_close() -- 18:07:49.163 INFO [27407]: COREGRADE is starting... -- 18:07:49.164 INFO [27407]: Version from config: 1.0 -- 18:07:49.164 DEBUG [27407]: Connecting to database... -- 18:07:49.164 DEBUG [27407]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:49.164 SQL [27407]: pgsql_db_connect() -- 18:07:49.168 DEBUG [27407]: Database connection successful -- 18:07:49.168 INFO [27407]: _SERVER found -- 18:07:49.168 INFO [27407]: REMOTE_ADDR = 10.0.0.15 -- 18:07:49.168 INFO [27407]: SERVER_NAME = oameye.works.coregrade.com -- 18:07:49.168 INFO [27407]: QUERY_STRING = /login.cgi -- 18:07:49.168 INFO [27407]: HTTP_X_FORWARDED_FOR = 200.143.191.58 -- 18:07:49.180 INFO [27407]: COREGRADE is stopping... -- 18:07:49.180 DEBUG [27407]: Closing database connection -- 18:07:49.180 SQL [27407]: pgsql_close() -- 18:07:51.179 INFO [431]: COREGRADE is starting... -- 18:07:51.179 INFO [431]: Version from config: 1.0 -- 18:07:51.179 DEBUG [431]: Connecting to database... -- 18:07:51.179 DEBUG [431]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:51.179 SQL [431]: pgsql_db_connect() -- 18:07:51.183 DEBUG [431]: Database connection successful -- 18:07:51.183 INFO [431]: _SERVER found -- 18:07:51.183 INFO [431]: REMOTE_ADDR = 10.0.0.15 -- 18:07:51.183 INFO [431]: SERVER_NAME = oameye.works.coregrade.com -- 18:07:51.183 INFO [431]: QUERY_STRING = /dana-na/auth/url_default/welcome.cgi -- 18:07:51.183 INFO [431]: HTTP_X_FORWARDED_FOR = 200.143.191.58 -- 18:07:51.196 INFO [431]: COREGRADE is stopping... -- 18:07:51.196 DEBUG [431]: Closing database connection -- 18:07:51.196 SQL [431]: pgsql_close() -- 18:07:52.100 INFO [27405]: COREGRADE is starting... -- 18:07:52.100 INFO [27405]: Version from config: 1.0 -- 18:07:52.100 DEBUG [27405]: Connecting to database... -- 18:07:52.100 DEBUG [27405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:52.100 SQL [27405]: pgsql_db_connect() -- 18:07:52.104 DEBUG [27405]: Database connection successful -- 18:07:52.104 INFO [27405]: _SERVER found -- 18:07:52.104 INFO [27405]: REMOTE_ADDR = 10.0.0.15 -- 18:07:52.104 INFO [27405]: SERVER_NAME = oameye.works.coregrade.com -- 18:07:52.104 INFO [27405]: QUERY_STRING = /remote/login -- 18:07:52.104 INFO [27405]: HTTP_X_FORWARDED_FOR = 200.143.191.58 -- 18:07:52.116 INFO [27405]: COREGRADE is stopping... -- 18:07:52.116 DEBUG [27405]: Closing database connection -- 18:07:52.116 SQL [27405]: pgsql_close() -- 18:07:53.032 INFO [27405]: COREGRADE is starting... -- 18:07:53.033 INFO [27405]: Version from config: 1.0 -- 18:07:53.033 DEBUG [27405]: Connecting to database... -- 18:07:53.033 DEBUG [27405]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:53.033 SQL [27405]: pgsql_db_connect() -- 18:07:53.037 DEBUG [27405]: Database connection successful -- 18:07:53.037 INFO [27405]: _SERVER found -- 18:07:53.037 INFO [27405]: REMOTE_ADDR = 10.0.0.15 -- 18:07:53.037 INFO [27405]: SERVER_NAME = oameye.works.coregrade.com -- 18:07:53.037 INFO [27405]: QUERY_STRING = /index.asp -- 18:07:53.037 INFO [27405]: HTTP_X_FORWARDED_FOR = 200.143.191.58 -- 18:07:53.048 INFO [27405]: COREGRADE is stopping... -- 18:07:53.048 DEBUG [27405]: Closing database connection -- 18:07:53.048 SQL [27405]: pgsql_close() -- 23:12:51.558 INFO [28787]: COREGRADE is starting... -- 23:12:51.559 INFO [28787]: Version from config: 1.0 -- 23:12:51.559 DEBUG [28787]: Connecting to database... -- 23:12:51.559 DEBUG [28787]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:12:51.559 SQL [28787]: pgsql_db_connect() -- 23:12:51.564 DEBUG [28787]: Database connection successful -- 23:12:51.564 INFO [28787]: _SERVER found -- 23:12:51.564 INFO [28787]: REMOTE_ADDR = 10.0.0.15 -- 23:12:51.564 INFO [28787]: SERVER_NAME = oameye.works.coregrade.com -- 23:12:51.564 INFO [28787]: QUERY_STRING = -- 23:12:51.564 INFO [28787]: HTTP_X_FORWARDED_FOR = 130.61.36.89 -- 23:12:51.601 INFO [28787]: COREGRADE is stopping... -- 23:12:51.601 DEBUG [28787]: Closing database connection -- 23:12:51.601 SQL [28787]: pgsql_close() -- 23:12:52.372 INFO [27517]: COREGRADE is starting... -- 23:12:52.373 INFO [27517]: Version from config: 1.0 -- 23:12:52.373 DEBUG [27517]: Connecting to database... -- 23:12:52.373 DEBUG [27517]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:12:52.373 SQL [27517]: pgsql_db_connect() -- 23:12:52.377 DEBUG [27517]: Database connection successful -- 23:12:52.377 INFO [27517]: _SERVER found -- 23:12:52.377 INFO [27517]: REMOTE_ADDR = 10.0.0.15 -- 23:12:52.377 INFO [27517]: SERVER_NAME = oameye.works.coregrade.com -- 23:12:52.377 INFO [27517]: QUERY_STRING = /home.asp -- 23:12:52.377 INFO [27517]: HTTP_X_FORWARDED_FOR = 130.61.36.89 -- 23:12:52.391 INFO [27517]: COREGRADE is stopping... -- 23:12:52.391 DEBUG [27517]: Closing database connection -- 23:12:52.391 SQL [27517]: pgsql_close() -- 23:12:53.381 INFO [28787]: COREGRADE is starting... -- 23:12:53.381 INFO [28787]: Version from config: 1.0 -- 23:12:53.381 DEBUG [28787]: Connecting to database... -- 23:12:53.381 DEBUG [28787]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:12:53.381 SQL [28787]: pgsql_db_connect() -- 23:12:53.386 DEBUG [28787]: Database connection successful -- 23:12:53.386 INFO [28787]: _SERVER found -- 23:12:53.386 INFO [28787]: REMOTE_ADDR = 10.0.0.15 -- 23:12:53.386 INFO [28787]: SERVER_NAME = oameye.works.coregrade.com -- 23:12:53.386 INFO [28787]: QUERY_STRING = /login.cgi -- 23:12:53.386 INFO [28787]: HTTP_X_FORWARDED_FOR = 130.61.36.89 -- 23:12:53.398 INFO [28787]: COREGRADE is stopping... -- 23:12:53.398 DEBUG [28787]: Closing database connection -- 23:12:53.398 SQL [28787]: pgsql_close() -- 23:12:55.012 INFO [28787]: COREGRADE is starting... -- 23:12:55.012 INFO [28787]: Version from config: 1.0 -- 23:12:55.012 DEBUG [28787]: Connecting to database... -- 23:12:55.012 DEBUG [28787]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:12:55.012 SQL [28787]: pgsql_db_connect() -- 23:12:55.017 DEBUG [28787]: Database connection successful -- 23:12:55.017 INFO [28787]: _SERVER found -- 23:12:55.017 INFO [28787]: REMOTE_ADDR = 10.0.0.15 -- 23:12:55.017 INFO [28787]: SERVER_NAME = oameye.works.coregrade.com -- 23:12:55.017 INFO [28787]: QUERY_STRING = /dana-na/auth/url_default/welcome.cgi -- 23:12:55.017 INFO [28787]: HTTP_X_FORWARDED_FOR = 130.61.36.89 -- 23:12:55.028 INFO [28787]: COREGRADE is stopping... -- 23:12:55.028 DEBUG [28787]: Closing database connection -- 23:12:55.028 SQL [28787]: pgsql_close() -- 23:12:56.065 INFO [28787]: COREGRADE is starting... -- 23:12:56.066 INFO [28787]: Version from config: 1.0 -- 23:12:56.066 DEBUG [28787]: Connecting to database... -- 23:12:56.066 DEBUG [28787]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:12:56.066 SQL [28787]: pgsql_db_connect() -- 23:12:56.070 DEBUG [28787]: Database connection successful -- 23:12:56.070 INFO [28787]: _SERVER found -- 23:12:56.070 INFO [28787]: REMOTE_ADDR = 10.0.0.15 -- 23:12:56.070 INFO [28787]: SERVER_NAME = oameye.works.coregrade.com -- 23:12:56.070 INFO [28787]: QUERY_STRING = /remote/login -- 23:12:56.070 INFO [28787]: HTTP_X_FORWARDED_FOR = 130.61.36.89 -- 23:12:56.082 INFO [28787]: COREGRADE is stopping... -- 23:12:56.082 DEBUG [28787]: Closing database connection -- 23:12:56.082 SQL [28787]: pgsql_close() -- 23:12:56.747 INFO [28787]: COREGRADE is starting... -- 23:12:56.747 INFO [28787]: Version from config: 1.0 -- 23:12:56.747 DEBUG [28787]: Connecting to database... -- 23:12:56.747 DEBUG [28787]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:12:56.747 SQL [28787]: pgsql_db_connect() -- 23:12:56.752 DEBUG [28787]: Database connection successful -- 23:12:56.752 INFO [28787]: _SERVER found -- 23:12:56.752 INFO [28787]: REMOTE_ADDR = 10.0.0.15 -- 23:12:56.752 INFO [28787]: SERVER_NAME = oameye.works.coregrade.com -- 23:12:56.752 INFO [28787]: QUERY_STRING = /index.asp -- 23:12:56.752 INFO [28787]: HTTP_X_FORWARDED_FOR = 130.61.36.89 -- 23:12:56.763 INFO [28787]: COREGRADE is stopping... -- 23:12:56.763 DEBUG [28787]: Closing database connection -- 23:12:56.763 SQL [28787]: pgsql_close() -- 03:57:04.243 INFO [6271]: COREGRADE is starting... -- 03:57:04.243 INFO [6271]: Version from config: 1.0 -- 03:57:04.243 DEBUG [6271]: Connecting to database... -- 03:57:04.243 DEBUG [6271]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:57:04.243 SQL [6271]: pgsql_db_connect() -- 03:57:04.248 DEBUG [6271]: Database connection successful -- 03:57:04.248 INFO [6271]: _SERVER found -- 03:57:04.248 INFO [6271]: REMOTE_ADDR = 10.0.0.15 -- 03:57:04.248 INFO [6271]: SERVER_NAME = oameye.works.coregrade.com -- 03:57:04.248 INFO [6271]: QUERY_STRING = /.well-known/acme-challenge/6JD-db9H2p1S4BnnGjmzAxr_IpRR0iOx1ADOdluQOK8 -- 03:57:04.248 INFO [6271]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 03:57:04.265 INFO [6271]: COREGRADE is stopping... -- 03:57:04.265 DEBUG [6271]: Closing database connection -- 03:57:04.265 SQL [6271]: pgsql_close() -- 03:57:04.390 INFO [6271]: COREGRADE is starting... -- 03:57:04.390 INFO [6271]: Version from config: 1.0 -- 03:57:04.390 DEBUG [6271]: Connecting to database... -- 03:57:04.390 DEBUG [6271]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:57:04.390 SQL [6271]: pgsql_db_connect() -- 03:57:04.394 DEBUG [6271]: Database connection successful -- 03:57:04.394 INFO [6271]: _SERVER found -- 03:57:04.394 INFO [6271]: REMOTE_ADDR = 10.0.0.15 -- 03:57:04.394 INFO [6271]: SERVER_NAME = oameye.works.coregrade.com -- 03:57:04.394 INFO [6271]: QUERY_STRING = /.well-known/acme-challenge/6JD-db9H2p1S4BnnGjmzAxr_IpRR0iOx1ADOdluQOK8 -- 03:57:04.394 INFO [6271]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 03:57:04.406 INFO [6271]: COREGRADE is stopping... -- 03:57:04.406 DEBUG [6271]: Closing database connection -- 03:57:04.406 SQL [6271]: pgsql_close() -- 11:22:37.900 INFO [6274]: COREGRADE is starting... -- 11:22:37.900 INFO [6274]: Version from config: 1.0 -- 11:22:37.900 DEBUG [6274]: Connecting to database... -- 11:22:37.900 DEBUG [6274]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:22:37.900 SQL [6274]: pgsql_db_connect() -- 11:22:37.905 DEBUG [6274]: Database connection successful -- 11:22:37.905 INFO [6274]: _SERVER found -- 11:22:37.905 INFO [6274]: REMOTE_ADDR = 10.0.0.15 -- 11:22:37.905 INFO [6274]: SERVER_NAME = oameye.works.coregrade.com -- 11:22:37.905 INFO [6274]: QUERY_STRING = /wp-login.php -- 11:22:37.905 INFO [6274]: HTTP_X_FORWARDED_FOR = 64.227.7.213 -- 11:22:37.924 INFO [6274]: COREGRADE is stopping... -- 11:22:37.924 DEBUG [6274]: Closing database connection -- 11:22:37.924 SQL [6274]: pgsql_close() -- 12:27:20.459 INFO [6275]: COREGRADE is starting... -- 12:27:20.459 INFO [6275]: Version from config: 1.0 -- 12:27:20.460 DEBUG [6275]: Connecting to database... -- 12:27:20.460 DEBUG [6275]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:27:20.460 SQL [6275]: pgsql_db_connect() -- 12:27:20.465 DEBUG [6275]: Database connection successful -- 12:27:20.465 INFO [6275]: _SERVER found -- 12:27:20.465 INFO [6275]: REMOTE_ADDR = 10.0.0.15 -- 12:27:20.465 INFO [6275]: SERVER_NAME = oameye.works.coregrade.com -- 12:27:20.465 INFO [6275]: HTTP_COOKIE = _ga=GA1.2.1073336077.1587056389 -- 12:27:20.465 INFO [6275]: QUERY_STRING = -- 12:27:20.465 INFO [6275]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 12:27:20.518 INFO [6275]: COREGRADE is stopping... -- 12:27:20.518 DEBUG [6275]: Closing database connection -- 12:27:20.518 SQL [6275]: pgsql_close() -- 12:27:21.139 INFO [6275]: COREGRADE is starting... -- 12:27:21.140 INFO [6275]: Version from config: 1.0 -- 12:27:21.140 DEBUG [6275]: Connecting to database... -- 12:27:21.140 DEBUG [6275]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:27:21.140 SQL [6275]: pgsql_db_connect() -- 12:27:21.144 DEBUG [6275]: Database connection successful -- 12:27:21.144 INFO [6275]: _SERVER found -- 12:27:21.144 INFO [6275]: REMOTE_ADDR = 10.0.0.15 -- 12:27:21.144 INFO [6275]: SERVER_NAME = oameye.works.coregrade.com -- 12:27:21.144 INFO [6275]: HTTP_COOKIE = _ga=GA1.2.1073336077.1587056389; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.616145882.1588523241; ci_session=s74nafl907o0l212de1o69s9ie5p3grk -- 12:27:21.144 INFO [6275]: QUERY_STRING = /assets/img/footer_1.jpg -- 12:27:21.144 INFO [6275]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 12:27:21.155 INFO [6275]: COREGRADE is stopping... -- 12:27:21.156 DEBUG [6275]: Closing database connection -- 12:27:21.156 SQL [6275]: pgsql_close() -- 13:19:57.264 INFO [6377]: COREGRADE is starting... -- 13:19:57.264 INFO [6377]: Version from config: 1.0 -- 13:19:57.264 DEBUG [6377]: Connecting to database... -- 13:19:57.264 DEBUG [6377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:19:57.264 SQL [6377]: pgsql_db_connect() -- 13:19:57.270 DEBUG [6377]: Database connection successful -- 13:19:57.270 INFO [6377]: _SERVER found -- 13:19:57.270 INFO [6377]: REMOTE_ADDR = 10.0.0.15 -- 13:19:57.270 INFO [6377]: SERVER_NAME = oameye.works.coregrade.com -- 13:19:57.270 INFO [6377]: QUERY_STRING = /robots.txt -- 13:19:57.270 INFO [6377]: HTTP_X_FORWARDED_FOR = 66.249.73.210 -- 13:19:57.288 INFO [6377]: COREGRADE is stopping... -- 13:19:57.288 DEBUG [6377]: Closing database connection -- 13:19:57.288 SQL [6377]: pgsql_close() -- 13:19:57.323 INFO [6377]: COREGRADE is starting... -- 13:19:57.324 INFO [6377]: Version from config: 1.0 -- 13:19:57.324 DEBUG [6377]: Connecting to database... -- 13:19:57.324 DEBUG [6377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:19:57.324 SQL [6377]: pgsql_db_connect() -- 13:19:57.328 DEBUG [6377]: Database connection successful -- 13:19:57.328 INFO [6377]: _SERVER found -- 13:19:57.328 INFO [6377]: REMOTE_ADDR = 10.0.0.15 -- 13:19:57.328 INFO [6377]: SERVER_NAME = oameye.works.coregrade.com -- 13:19:57.328 INFO [6377]: QUERY_STRING = -- 13:19:57.328 INFO [6377]: HTTP_X_FORWARDED_FOR = 66.249.73.210 -- 13:19:57.374 INFO [6377]: COREGRADE is stopping... -- 13:19:57.374 DEBUG [6377]: Closing database connection -- 13:19:57.374 SQL [6377]: pgsql_close() -- 13:20:04.359 INFO [6379]: COREGRADE is starting... -- 13:20:04.360 INFO [6379]: Version from config: 1.0 -- 13:20:04.360 DEBUG [6379]: Connecting to database... -- 13:20:04.360 DEBUG [6379]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:20:04.360 SQL [6379]: pgsql_db_connect() -- 13:20:04.364 DEBUG [6379]: Database connection successful -- 13:20:04.364 INFO [6379]: _SERVER found -- 13:20:04.364 INFO [6379]: REMOTE_ADDR = 10.0.0.15 -- 13:20:04.364 INFO [6379]: SERVER_NAME = oameye.works.coregrade.com -- 13:20:04.364 INFO [6379]: QUERY_STRING = /favicon.ico -- 13:20:04.364 INFO [6379]: HTTP_X_FORWARDED_FOR = 66.249.73.214 -- 13:20:04.381 INFO [6379]: COREGRADE is stopping... -- 13:20:04.381 DEBUG [6379]: Closing database connection -- 13:20:04.381 SQL [6379]: pgsql_close() -- 14:19:57.138 INFO [6381]: COREGRADE is starting... -- 14:19:57.138 INFO [6381]: Version from config: 1.0 -- 14:19:57.138 DEBUG [6381]: Connecting to database... -- 14:19:57.138 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:19:57.138 SQL [6381]: pgsql_db_connect() -- 14:19:57.143 DEBUG [6381]: Database connection successful -- 14:19:57.143 INFO [6381]: _SERVER found -- 14:19:57.143 INFO [6381]: REMOTE_ADDR = 10.0.0.15 -- 14:19:57.143 INFO [6381]: SERVER_NAME = oameye.works.coregrade.com -- 14:19:57.143 INFO [6381]: QUERY_STRING = -- 14:19:57.143 INFO [6381]: HTTP_X_FORWARDED_FOR = 66.249.73.212 -- 14:19:57.195 INFO [6381]: COREGRADE is stopping... -- 14:19:57.195 DEBUG [6381]: Closing database connection -- 14:19:57.195 SQL [6381]: pgsql_close() -- 23:46:19.133 INFO [6271]: COREGRADE is starting... -- 23:46:19.133 INFO [6271]: Version from config: 1.0 -- 23:46:19.133 DEBUG [6271]: Connecting to database... -- 23:46:19.133 DEBUG [6271]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:46:19.133 SQL [6271]: pgsql_db_connect() -- 23:46:19.138 DEBUG [6271]: Database connection successful -- 23:46:19.138 INFO [6271]: _SERVER found -- 23:46:19.138 INFO [6271]: REMOTE_ADDR = 10.0.0.15 -- 23:46:19.138 INFO [6271]: SERVER_NAME = oameye.works.coregrade.com -- 23:46:19.138 INFO [6271]: QUERY_STRING = -- 23:46:19.138 INFO [6271]: HTTP_X_FORWARDED_FOR = 185.237.177.228 -- 23:46:19.187 INFO [6271]: COREGRADE is stopping... -- 23:46:19.187 DEBUG [6271]: Closing database connection -- 23:46:19.187 SQL [6271]: pgsql_close() -- 00:42:01.313 INFO [6273]: COREGRADE is starting... -- 00:42:01.314 INFO [6273]: Version from config: 1.0 -- 00:42:01.314 DEBUG [6273]: Connecting to database... -- 00:42:01.314 DEBUG [6273]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:42:01.314 SQL [6273]: pgsql_db_connect() -- 00:42:01.319 DEBUG [6273]: Database connection successful -- 00:42:01.319 INFO [6273]: _SERVER found -- 00:42:01.319 INFO [6273]: REMOTE_ADDR = 10.0.0.15 -- 00:42:01.319 INFO [6273]: SERVER_NAME = oameye.works.coregrade.com -- 00:42:01.319 INFO [6273]: QUERY_STRING = /console -- 00:42:01.319 INFO [6273]: HTTP_X_FORWARDED_FOR = 149.129.126.156 -- 00:42:01.334 INFO [6273]: COREGRADE is stopping... -- 00:42:01.334 DEBUG [6273]: Closing database connection -- 00:42:01.334 SQL [6273]: pgsql_close() -- 00:42:03.956 INFO [6273]: COREGRADE is starting... -- 00:42:03.956 INFO [6273]: Version from config: 1.0 -- 00:42:03.956 DEBUG [6273]: Connecting to database... -- 00:42:03.956 DEBUG [6273]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:42:03.956 SQL [6273]: pgsql_db_connect() -- 00:42:03.960 DEBUG [6273]: Database connection successful -- 00:42:03.960 INFO [6273]: _SERVER found -- 00:42:03.960 INFO [6273]: REMOTE_ADDR = 10.0.0.15 -- 00:42:03.960 INFO [6273]: SERVER_NAME = oameye.works.coregrade.com -- 00:42:03.960 INFO [6273]: QUERY_STRING = -- 00:42:03.960 INFO [6273]: HTTP_X_FORWARDED_FOR = 149.129.126.156 -- 00:42:04.003 INFO [6273]: COREGRADE is stopping... -- 00:42:04.003 DEBUG [6273]: Closing database connection -- 00:42:04.003 SQL [6273]: pgsql_close() -- 00:42:05.525 INFO [6274]: COREGRADE is starting... -- 00:42:05.526 INFO [6274]: Version from config: 1.0 -- 00:42:05.526 DEBUG [6274]: Connecting to database... -- 00:42:05.526 DEBUG [6274]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:42:05.526 SQL [6274]: pgsql_db_connect() -- 00:42:05.530 DEBUG [6274]: Database connection successful -- 00:42:05.530 INFO [6274]: _SERVER found -- 00:42:05.530 INFO [6274]: REMOTE_ADDR = 10.0.0.15 -- 00:42:05.530 INFO [6274]: SERVER_NAME = oameye.works.coregrade.com -- 00:42:05.530 INFO [6274]: QUERY_STRING = /horde/imp/test.php -- 00:42:05.530 INFO [6274]: HTTP_X_FORWARDED_FOR = 149.129.126.156 -- 00:42:05.546 INFO [6274]: COREGRADE is stopping... -- 00:42:05.546 DEBUG [6274]: Closing database connection -- 00:42:05.546 SQL [6274]: pgsql_close() -- 00:42:06.941 INFO [6275]: COREGRADE is starting... -- 00:42:06.942 INFO [6275]: Version from config: 1.0 -- 00:42:06.942 DEBUG [6275]: Connecting to database... -- 00:42:06.942 DEBUG [6275]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:42:06.942 SQL [6275]: pgsql_db_connect() -- 00:42:06.946 DEBUG [6275]: Database connection successful -- 00:42:06.946 INFO [6275]: _SERVER found -- 00:42:06.946 INFO [6275]: REMOTE_ADDR = 10.0.0.15 -- 00:42:06.946 INFO [6275]: SERVER_NAME = oameye.works.coregrade.com -- 00:42:06.946 INFO [6275]: QUERY_STRING = /login.action -- 00:42:06.946 INFO [6275]: HTTP_X_FORWARDED_FOR = 149.129.126.156 -- 00:42:06.960 INFO [6275]: COREGRADE is stopping... -- 00:42:06.960 DEBUG [6275]: Closing database connection -- 00:42:06.960 SQL [6275]: pgsql_close() -- 00:42:08.259 INFO [6275]: COREGRADE is starting... -- 00:42:08.259 INFO [6275]: Version from config: 1.0 -- 00:42:08.259 DEBUG [6275]: Connecting to database... -- 00:42:08.259 DEBUG [6275]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:42:08.259 SQL [6275]: pgsql_db_connect() -- 00:42:08.263 DEBUG [6275]: Database connection successful -- 00:42:08.263 INFO [6275]: _SERVER found -- 00:42:08.263 INFO [6275]: REMOTE_ADDR = 10.0.0.15 -- 00:42:08.263 INFO [6275]: SERVER_NAME = oameye.works.coregrade.com -- 00:42:08.263 INFO [6275]: QUERY_STRING = /login -- 00:42:08.263 INFO [6275]: HTTP_X_FORWARDED_FOR = 149.129.126.156 -- 00:42:08.275 INFO [6275]: COREGRADE is stopping... -- 00:42:08.275 DEBUG [6275]: Closing database connection -- 00:42:08.275 SQL [6275]: pgsql_close() -- 00:42:09.590 INFO [6377]: COREGRADE is starting... -- 00:42:09.591 INFO [6377]: Version from config: 1.0 -- 00:42:09.591 DEBUG [6377]: Connecting to database... -- 00:42:09.591 DEBUG [6377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:42:09.591 SQL [6377]: pgsql_db_connect() -- 00:42:09.595 DEBUG [6377]: Database connection successful -- 00:42:09.595 INFO [6377]: _SERVER found -- 00:42:09.595 INFO [6377]: REMOTE_ADDR = 10.0.0.15 -- 00:42:09.595 INFO [6377]: SERVER_NAME = oameye.works.coregrade.com -- 00:42:09.595 INFO [6377]: QUERY_STRING = /phpMyAdmin/scripts/setup.php -- 00:42:09.595 INFO [6377]: HTTP_X_FORWARDED_FOR = 149.129.126.156 -- 00:42:09.608 INFO [6377]: COREGRADE is stopping... -- 00:42:09.608 DEBUG [6377]: Closing database connection -- 00:42:09.608 SQL [6377]: pgsql_close() -- 00:42:10.881 INFO [6275]: COREGRADE is starting... -- 00:42:10.881 INFO [6275]: Version from config: 1.0 -- 00:42:10.881 DEBUG [6275]: Connecting to database... -- 00:42:10.881 DEBUG [6275]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:42:10.881 SQL [6275]: pgsql_db_connect() -- 00:42:10.886 DEBUG [6275]: Database connection successful -- 00:42:10.886 INFO [6275]: _SERVER found -- 00:42:10.886 INFO [6275]: REMOTE_ADDR = 10.0.0.15 -- 00:42:10.886 INFO [6275]: SERVER_NAME = oameye.works.coregrade.com -- 00:42:10.886 INFO [6275]: QUERY_STRING = /phpmyadmin/scripts/setup.php -- 00:42:10.886 INFO [6275]: HTTP_X_FORWARDED_FOR = 149.129.126.156 -- 00:42:10.897 INFO [6275]: COREGRADE is stopping... -- 00:42:10.897 DEBUG [6275]: Closing database connection -- 00:42:10.897 SQL [6275]: pgsql_close() -- 00:42:12.251 INFO [6379]: COREGRADE is starting... -- 00:42:12.251 INFO [6379]: Version from config: 1.0 -- 00:42:12.251 DEBUG [6379]: Connecting to database... -- 00:42:12.251 DEBUG [6379]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:42:12.251 SQL [6379]: pgsql_db_connect() -- 00:42:12.255 DEBUG [6379]: Database connection successful -- 00:42:12.255 INFO [6379]: _SERVER found -- 00:42:12.255 INFO [6379]: REMOTE_ADDR = 10.0.0.15 -- 00:42:12.255 INFO [6379]: SERVER_NAME = oameye.works.coregrade.com -- 00:42:12.255 INFO [6379]: QUERY_STRING = /login/do_login -- 00:42:12.255 INFO [6379]: HTTP_X_FORWARDED_FOR = 149.129.126.156 -- 00:42:12.268 INFO [6379]: COREGRADE is stopping... -- 00:42:12.268 DEBUG [6379]: Closing database connection -- 00:42:12.268 SQL [6379]: pgsql_close() -- 02:31:44.138 INFO [6381]: COREGRADE is starting... -- 02:31:44.138 INFO [6381]: Version from config: 1.0 -- 02:31:44.138 DEBUG [6381]: Connecting to database... -- 02:31:44.138 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:31:44.138 SQL [6381]: pgsql_db_connect() -- 02:31:44.143 DEBUG [6381]: Database connection successful -- 02:31:44.143 INFO [6381]: _SERVER found -- 02:31:44.143 INFO [6381]: REMOTE_ADDR = 10.0.0.15 -- 02:31:44.143 INFO [6381]: SERVER_NAME = oameye.works.coregrade.com -- 02:31:44.143 INFO [6381]: QUERY_STRING = /.well-known/acme-challenge/p_kSap-3s80ebv0p5OvM8MWMt87upAkiRArSsvmoOX4 -- 02:31:44.143 INFO [6381]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 02:31:44.159 INFO [6381]: COREGRADE is stopping... -- 02:31:44.159 DEBUG [6381]: Closing database connection -- 02:31:44.159 SQL [6381]: pgsql_close() -- 02:31:44.331 INFO [11656]: COREGRADE is starting... -- 02:31:44.331 INFO [11656]: Version from config: 1.0 -- 02:31:44.331 DEBUG [11656]: Connecting to database... -- 02:31:44.331 DEBUG [11656]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:31:44.331 SQL [11656]: pgsql_db_connect() -- 02:31:44.335 DEBUG [11656]: Database connection successful -- 02:31:44.335 INFO [11656]: _SERVER found -- 02:31:44.335 INFO [11656]: REMOTE_ADDR = 10.0.0.15 -- 02:31:44.335 INFO [11656]: SERVER_NAME = oameye.works.coregrade.com -- 02:31:44.335 INFO [11656]: QUERY_STRING = /.well-known/acme-challenge/p_kSap-3s80ebv0p5OvM8MWMt87upAkiRArSsvmoOX4 -- 02:31:44.335 INFO [11656]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 02:31:44.351 INFO [11656]: COREGRADE is stopping... -- 02:31:44.351 DEBUG [11656]: Closing database connection -- 02:31:44.351 SQL [11656]: pgsql_close() -- 11:16:48.135 INFO [6272]: COREGRADE is starting... -- 11:16:48.135 INFO [6272]: Version from config: 1.0 -- 11:16:48.135 DEBUG [6272]: Connecting to database... -- 11:16:48.135 DEBUG [6272]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:16:48.135 SQL [6272]: pgsql_db_connect() -- 11:16:48.140 DEBUG [6272]: Database connection successful -- 11:16:48.140 INFO [6272]: _SERVER found -- 11:16:48.140 INFO [6272]: REMOTE_ADDR = 10.0.0.15 -- 11:16:48.140 INFO [6272]: SERVER_NAME = oameye.works.coregrade.com -- 11:16:48.140 INFO [6272]: QUERY_STRING = /TP/public/index.php -- 11:16:48.140 INFO [6272]: HTTP_X_FORWARDED_FOR = 116.196.83.248 -- 11:16:48.156 INFO [6272]: COREGRADE is stopping... -- 11:16:48.156 DEBUG [6272]: Closing database connection -- 11:16:48.156 SQL [6272]: pgsql_close() -- 11:16:50.183 INFO [6273]: COREGRADE is starting... -- 11:16:50.184 INFO [6273]: Version from config: 1.0 -- 11:16:50.184 DEBUG [6273]: Connecting to database... -- 11:16:50.184 DEBUG [6273]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:16:50.184 SQL [6273]: pgsql_db_connect() -- 11:16:50.188 DEBUG [6273]: Database connection successful -- 11:16:50.188 INFO [6273]: _SERVER found -- 11:16:50.188 INFO [6273]: REMOTE_ADDR = 10.0.0.15 -- 11:16:50.188 INFO [6273]: SERVER_NAME = oameye.works.coregrade.com -- 11:16:50.188 INFO [6273]: QUERY_STRING = /TP/index.php -- 11:16:50.188 INFO [6273]: HTTP_X_FORWARDED_FOR = 116.196.83.248 -- 11:16:50.203 INFO [6273]: COREGRADE is stopping... -- 11:16:50.203 DEBUG [6273]: Closing database connection -- 11:16:50.203 SQL [6273]: pgsql_close() -- 11:16:51.929 INFO [6273]: COREGRADE is starting... -- 11:16:51.929 INFO [6273]: Version from config: 1.0 -- 11:16:51.929 DEBUG [6273]: Connecting to database... -- 11:16:51.930 DEBUG [6273]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:16:51.930 SQL [6273]: pgsql_db_connect() -- 11:16:51.934 DEBUG [6273]: Database connection successful -- 11:16:51.934 INFO [6273]: _SERVER found -- 11:16:51.934 INFO [6273]: REMOTE_ADDR = 10.0.0.15 -- 11:16:51.934 INFO [6273]: SERVER_NAME = oameye.works.coregrade.com -- 11:16:51.934 INFO [6273]: QUERY_STRING = /thinkphp/html/public/index.php -- 11:16:51.934 INFO [6273]: HTTP_X_FORWARDED_FOR = 116.196.83.248 -- 11:16:51.945 INFO [6273]: COREGRADE is stopping... -- 11:16:51.945 DEBUG [6273]: Closing database connection -- 11:16:51.945 SQL [6273]: pgsql_close() -- 11:16:57.355 INFO [6274]: COREGRADE is starting... -- 11:16:57.355 INFO [6274]: Version from config: 1.0 -- 11:16:57.355 DEBUG [6274]: Connecting to database... -- 11:16:57.355 DEBUG [6274]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:16:57.355 SQL [6274]: pgsql_db_connect() -- 11:16:57.359 DEBUG [6274]: Database connection successful -- 11:16:57.359 INFO [6274]: _SERVER found -- 11:16:57.359 INFO [6274]: REMOTE_ADDR = 10.0.0.15 -- 11:16:57.359 INFO [6274]: SERVER_NAME = oameye.works.coregrade.com -- 11:16:57.359 INFO [6274]: QUERY_STRING = /html/public/index.php -- 11:16:57.359 INFO [6274]: HTTP_X_FORWARDED_FOR = 116.196.83.248 -- 11:16:57.372 INFO [6274]: COREGRADE is stopping... -- 11:16:57.372 DEBUG [6274]: Closing database connection -- 11:16:57.372 SQL [6274]: pgsql_close() -- 11:17:03.213 INFO [6377]: COREGRADE is starting... -- 11:17:03.213 INFO [6377]: Version from config: 1.0 -- 11:17:03.213 DEBUG [6377]: Connecting to database... -- 11:17:03.213 DEBUG [6377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:17:03.213 SQL [6377]: pgsql_db_connect() -- 11:17:03.217 DEBUG [6377]: Database connection successful -- 11:17:03.217 INFO [6377]: _SERVER found -- 11:17:03.217 INFO [6377]: REMOTE_ADDR = 10.0.0.15 -- 11:17:03.217 INFO [6377]: SERVER_NAME = oameye.works.coregrade.com -- 11:17:03.217 INFO [6377]: QUERY_STRING = /public/index.php -- 11:17:03.217 INFO [6377]: HTTP_X_FORWARDED_FOR = 116.196.83.248 -- 11:17:03.231 INFO [6377]: COREGRADE is stopping... -- 11:17:03.231 DEBUG [6377]: Closing database connection -- 11:17:03.231 SQL [6377]: pgsql_close() -- 11:17:05.971 INFO [6275]: COREGRADE is starting... -- 11:17:05.972 INFO [6275]: Version from config: 1.0 -- 11:17:05.972 DEBUG [6275]: Connecting to database... -- 11:17:05.972 DEBUG [6275]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:17:05.972 SQL [6275]: pgsql_db_connect() -- 11:17:05.976 DEBUG [6275]: Database connection successful -- 11:17:05.976 INFO [6275]: _SERVER found -- 11:17:05.976 INFO [6275]: REMOTE_ADDR = 10.0.0.15 -- 11:17:05.976 INFO [6275]: SERVER_NAME = oameye.works.coregrade.com -- 11:17:05.976 INFO [6275]: QUERY_STRING = /TP/html/public/index.php -- 11:17:05.976 INFO [6275]: HTTP_X_FORWARDED_FOR = 116.196.83.248 -- 11:17:05.989 INFO [6275]: COREGRADE is stopping... -- 11:17:05.989 DEBUG [6275]: Closing database connection -- 11:17:05.989 SQL [6275]: pgsql_close() -- 11:17:07.758 INFO [6377]: COREGRADE is starting... -- 11:17:07.758 INFO [6377]: Version from config: 1.0 -- 11:17:07.758 DEBUG [6377]: Connecting to database... -- 11:17:07.758 DEBUG [6377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:17:07.758 SQL [6377]: pgsql_db_connect() -- 11:17:07.762 DEBUG [6377]: Database connection successful -- 11:17:07.762 INFO [6377]: _SERVER found -- 11:17:07.762 INFO [6377]: REMOTE_ADDR = 10.0.0.15 -- 11:17:07.762 INFO [6377]: SERVER_NAME = oameye.works.coregrade.com -- 11:17:07.762 INFO [6377]: QUERY_STRING = /elrekt.php -- 11:17:07.762 INFO [6377]: HTTP_X_FORWARDED_FOR = 116.196.83.248 -- 11:17:07.774 INFO [6377]: COREGRADE is stopping... -- 11:17:07.774 DEBUG [6377]: Closing database connection -- 11:17:07.774 SQL [6377]: pgsql_close() -- 11:17:10.580 INFO [6377]: COREGRADE is starting... -- 11:17:10.581 INFO [6377]: Version from config: 1.0 -- 11:17:10.581 DEBUG [6377]: Connecting to database... -- 11:17:10.581 DEBUG [6377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:17:10.581 SQL [6377]: pgsql_db_connect() -- 11:17:10.585 DEBUG [6377]: Database connection successful -- 11:17:10.585 INFO [6377]: _SERVER found -- 11:17:10.585 INFO [6377]: REMOTE_ADDR = 10.0.0.15 -- 11:17:10.585 INFO [6377]: SERVER_NAME = oameye.works.coregrade.com -- 11:17:10.585 INFO [6377]: QUERY_STRING = -- 11:17:10.585 INFO [6377]: HTTP_X_FORWARDED_FOR = 116.196.83.248 -- 11:17:10.621 INFO [6377]: COREGRADE is stopping... -- 11:17:10.621 DEBUG [6377]: Closing database connection -- 11:17:10.621 SQL [6377]: pgsql_close() -- 11:17:18.591 INFO [6379]: COREGRADE is starting... -- 11:17:18.591 INFO [6379]: Version from config: 1.0 -- 11:17:18.591 DEBUG [6379]: Connecting to database... -- 11:17:18.591 DEBUG [6379]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:17:18.591 SQL [6379]: pgsql_db_connect() -- 11:17:18.595 DEBUG [6379]: Database connection successful -- 11:17:18.595 INFO [6379]: _SERVER found -- 11:17:18.595 INFO [6379]: REMOTE_ADDR = 10.0.0.15 -- 11:17:18.595 INFO [6379]: SERVER_NAME = oameye.works.coregrade.com -- 11:17:18.595 INFO [6379]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 11:17:18.595 INFO [6379]: HTTP_X_FORWARDED_FOR = 116.196.83.248 -- 11:17:18.638 INFO [6379]: COREGRADE is stopping... -- 11:17:18.638 DEBUG [6379]: Closing database connection -- 11:17:18.638 SQL [6379]: pgsql_close() -- 11:17:21.353 INFO [6381]: COREGRADE is starting... -- 11:17:21.353 INFO [6381]: Version from config: 1.0 -- 11:17:21.353 DEBUG [6381]: Connecting to database... -- 11:17:21.353 DEBUG [6381]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:17:21.353 SQL [6381]: pgsql_db_connect() -- 11:17:21.357 DEBUG [6381]: Database connection successful -- 11:17:21.357 INFO [6381]: _SERVER found -- 11:17:21.357 INFO [6381]: REMOTE_ADDR = 10.0.0.15 -- 11:17:21.357 INFO [6381]: SERVER_NAME = oameye.works.coregrade.com -- 11:17:21.357 INFO [6381]: QUERY_STRING = s=captcha -- 11:17:21.357 INFO [6381]: HTTP_X_FORWARDED_FOR = 116.196.83.248 -- 11:17:21.392 INFO [6381]: COREGRADE is stopping... -- 11:17:21.392 DEBUG [6381]: Closing database connection -- 11:17:21.392 SQL [6381]: pgsql_close() -- 11:17:23.796 INFO [11656]: COREGRADE is starting... -- 11:17:23.796 INFO [11656]: Version from config: 1.0 -- 11:17:23.796 DEBUG [11656]: Connecting to database... -- 11:17:23.796 DEBUG [11656]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:17:23.796 SQL [11656]: pgsql_db_connect() -- 11:17:23.800 DEBUG [11656]: Database connection successful -- 11:17:23.800 INFO [11656]: _SERVER found -- 11:17:23.800 INFO [11656]: REMOTE_ADDR = 10.0.0.15 -- 11:17:23.800 INFO [11656]: SERVER_NAME = oameye.works.coregrade.com -- 11:17:23.800 INFO [11656]: QUERY_STRING = -- 11:17:23.800 INFO [11656]: HTTP_X_FORWARDED_FOR = 116.196.83.248 -- 11:17:23.841 INFO [11656]: COREGRADE is stopping... -- 11:17:23.841 DEBUG [11656]: Closing database connection -- 11:17:23.841 SQL [11656]: pgsql_close() -- 16:07:42.347 INFO [6271]: COREGRADE is starting... -- 16:07:42.347 INFO [6271]: Version from config: 1.0 -- 16:07:42.347 DEBUG [6271]: Connecting to database... -- 16:07:42.347 DEBUG [6271]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:07:42.347 SQL [6271]: pgsql_db_connect() -- 16:07:42.352 DEBUG [6271]: Database connection successful -- 16:07:42.352 INFO [6271]: _SERVER found -- 16:07:42.352 INFO [6271]: REMOTE_ADDR = 10.0.0.15 -- 16:07:42.352 INFO [6271]: SERVER_NAME = oameye.works.coregrade.com -- 16:07:42.352 INFO [6271]: QUERY_STRING = -- 16:07:42.352 INFO [6271]: HTTP_X_FORWARDED_FOR = 134.209.175.125 -- 16:07:42.396 INFO [6271]: COREGRADE is stopping... -- 16:07:42.396 DEBUG [6271]: Closing database connection -- 16:07:42.396 SQL [6271]: pgsql_close() -- 17:49:19.474 INFO [6272]: COREGRADE is starting... -- 17:49:19.474 INFO [6272]: Version from config: 1.0 -- 17:49:19.474 DEBUG [6272]: Connecting to database... -- 17:49:19.474 DEBUG [6272]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:49:19.474 SQL [6272]: pgsql_db_connect() -- 17:49:19.479 DEBUG [6272]: Database connection successful -- 17:49:19.479 INFO [6272]: _SERVER found -- 17:49:19.479 INFO [6272]: REMOTE_ADDR = 10.0.0.15 -- 17:49:19.479 INFO [6272]: SERVER_NAME = tokslaw.works.coregrade.com -- 17:49:19.479 INFO [6272]: QUERY_STRING = -- 17:49:19.479 INFO [6272]: HTTP_X_FORWARDED_FOR = 68.183.61.164 -- 17:49:19.527 INFO [6272]: COREGRADE is stopping... -- 17:49:19.527 DEBUG [6272]: Closing database connection -- 17:49:19.527 SQL [6272]: pgsql_close() -- 21:17:35.132 INFO [6273]: COREGRADE is starting... -- 21:17:35.133 INFO [6273]: Version from config: 1.0 -- 21:17:35.133 DEBUG [6273]: Connecting to database... -- 21:17:35.133 DEBUG [6273]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:17:35.133 SQL [6273]: pgsql_db_connect() -- 21:17:35.138 DEBUG [6273]: Database connection successful -- 21:17:35.138 INFO [6273]: _SERVER found -- 21:17:35.138 INFO [6273]: REMOTE_ADDR = 10.0.0.15 -- 21:17:35.138 INFO [6273]: SERVER_NAME = oameye.works.coregrade.com -- 21:17:35.138 INFO [6273]: QUERY_STRING = /TP/public/index.php -- 21:17:35.138 INFO [6273]: HTTP_X_FORWARDED_FOR = 101.231.118.210 -- 21:17:35.154 INFO [6273]: COREGRADE is stopping... -- 21:17:35.154 DEBUG [6273]: Closing database connection -- 21:17:35.154 SQL [6273]: pgsql_close() -- 21:17:36.466 INFO [6273]: COREGRADE is starting... -- 21:17:36.466 INFO [6273]: Version from config: 1.0 -- 21:17:36.466 DEBUG [6273]: Connecting to database... -- 21:17:36.466 DEBUG [6273]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:17:36.466 SQL [6273]: pgsql_db_connect() -- 21:17:36.470 DEBUG [6273]: Database connection successful -- 21:17:36.470 INFO [6273]: _SERVER found -- 21:17:36.470 INFO [6273]: REMOTE_ADDR = 10.0.0.15 -- 21:17:36.470 INFO [6273]: SERVER_NAME = oameye.works.coregrade.com -- 21:17:36.470 INFO [6273]: QUERY_STRING = /TP/index.php -- 21:17:36.471 INFO [6273]: HTTP_X_FORWARDED_FOR = 101.231.118.210 -- 21:17:36.482 INFO [6273]: COREGRADE is stopping... -- 21:17:36.482 DEBUG [6273]: Closing database connection -- 21:17:36.482 SQL [6273]: pgsql_close() -- 21:17:37.809 INFO [6273]: COREGRADE is starting... -- 21:17:37.809 INFO [6273]: Version from config: 1.0 -- 21:17:37.809 DEBUG [6273]: Connecting to database... -- 21:17:37.809 DEBUG [6273]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:17:37.809 SQL [6273]: pgsql_db_connect() -- 21:17:37.813 DEBUG [6273]: Database connection successful -- 21:17:37.813 INFO [6273]: _SERVER found -- 21:17:37.813 INFO [6273]: REMOTE_ADDR = 10.0.0.15 -- 21:17:37.813 INFO [6273]: SERVER_NAME = oameye.works.coregrade.com -- 21:17:37.813 INFO [6273]: QUERY_STRING = /thinkphp/html/public/index.php -- 21:17:37.813 INFO [6273]: HTTP_X_FORWARDED_FOR = 101.231.118.210 -- 21:17:37.825 INFO [6273]: COREGRADE is stopping... -- 21:17:37.825 DEBUG [6273]: Closing database connection -- 21:17:37.825 SQL [6273]: pgsql_close() -- 21:17:39.134 INFO [6274]: COREGRADE is starting... -- 21:17:39.135 INFO [6274]: Version from config: 1.0 -- 21:17:39.135 DEBUG [6274]: Connecting to database... -- 21:17:39.135 DEBUG [6274]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:17:39.135 SQL [6274]: pgsql_db_connect() -- 21:17:39.139 DEBUG [6274]: Database connection successful -- 21:17:39.139 INFO [6274]: _SERVER found -- 21:17:39.139 INFO [6274]: REMOTE_ADDR = 10.0.0.15 -- 21:17:39.139 INFO [6274]: SERVER_NAME = oameye.works.coregrade.com -- 21:17:39.139 INFO [6274]: QUERY_STRING = /html/public/index.php -- 21:17:39.139 INFO [6274]: HTTP_X_FORWARDED_FOR = 101.231.118.210 -- 21:17:39.152 INFO [6274]: COREGRADE is stopping... -- 21:17:39.153 DEBUG [6274]: Closing database connection -- 21:17:39.153 SQL [6274]: pgsql_close() -- 21:17:40.452 INFO [6273]: COREGRADE is starting... -- 21:17:40.453 INFO [6273]: Version from config: 1.0 -- 21:17:40.453 DEBUG [6273]: Connecting to database... -- 21:17:40.453 DEBUG [6273]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:17:40.453 SQL [6273]: pgsql_db_connect() -- 21:17:40.457 DEBUG [6273]: Database connection successful -- 21:17:40.457 INFO [6273]: _SERVER found -- 21:17:40.457 INFO [6273]: REMOTE_ADDR = 10.0.0.15 -- 21:17:40.457 INFO [6273]: SERVER_NAME = oameye.works.coregrade.com -- 21:17:40.457 INFO [6273]: QUERY_STRING = /public/index.php -- 21:17:40.457 INFO [6273]: HTTP_X_FORWARDED_FOR = 101.231.118.210 -- 21:17:40.469 INFO [6273]: COREGRADE is stopping... -- 21:17:40.469 DEBUG [6273]: Closing database connection -- 21:17:40.469 SQL [6273]: pgsql_close() -- 21:17:41.856 INFO [6273]: COREGRADE is starting... -- 21:17:41.856 INFO [6273]: Version from config: 1.0 -- 21:17:41.856 DEBUG [6273]: Connecting to database... -- 21:17:41.857 DEBUG [6273]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:17:41.857 SQL [6273]: pgsql_db_connect() -- 21:17:41.861 DEBUG [6273]: Database connection successful -- 21:17:41.861 INFO [6273]: _SERVER found -- 21:17:41.861 INFO [6273]: REMOTE_ADDR = 10.0.0.15 -- 21:17:41.861 INFO [6273]: SERVER_NAME = oameye.works.coregrade.com -- 21:17:41.861 INFO [6273]: QUERY_STRING = /TP/html/public/index.php -- 21:17:41.861 INFO [6273]: HTTP_X_FORWARDED_FOR = 101.231.118.210 -- 21:17:41.872 INFO [6273]: COREGRADE is stopping... -- 21:17:41.872 DEBUG [6273]: Closing database connection -- 21:17:41.872 SQL [6273]: pgsql_close() -- 21:17:43.148 INFO [6273]: COREGRADE is starting... -- 21:17:43.149 INFO [6273]: Version from config: 1.0 -- 21:17:43.149 DEBUG [6273]: Connecting to database... -- 21:17:43.149 DEBUG [6273]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:17:43.149 SQL [6273]: pgsql_db_connect() -- 21:17:43.153 DEBUG [6273]: Database connection successful -- 21:17:43.153 INFO [6273]: _SERVER found -- 21:17:43.153 INFO [6273]: REMOTE_ADDR = 10.0.0.15 -- 21:17:43.153 INFO [6273]: SERVER_NAME = oameye.works.coregrade.com -- 21:17:43.153 INFO [6273]: QUERY_STRING = /elrekt.php -- 21:17:43.153 INFO [6273]: HTTP_X_FORWARDED_FOR = 101.231.118.210 -- 21:17:43.164 INFO [6273]: COREGRADE is stopping... -- 21:17:43.164 DEBUG [6273]: Closing database connection -- 21:17:43.164 SQL [6273]: pgsql_close() -- 21:17:44.474 INFO [6275]: COREGRADE is starting... -- 21:17:44.474 INFO [6275]: Version from config: 1.0 -- 21:17:44.474 DEBUG [6275]: Connecting to database... -- 21:17:44.475 DEBUG [6275]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:17:44.475 SQL [6275]: pgsql_db_connect() -- 21:17:44.479 DEBUG [6275]: Database connection successful -- 21:17:44.479 INFO [6275]: _SERVER found -- 21:17:44.479 INFO [6275]: REMOTE_ADDR = 10.0.0.15 -- 21:17:44.479 INFO [6275]: SERVER_NAME = oameye.works.coregrade.com -- 21:17:44.479 INFO [6275]: QUERY_STRING = -- 21:17:44.479 INFO [6275]: HTTP_X_FORWARDED_FOR = 101.231.118.210 -- 21:17:44.516 INFO [6275]: COREGRADE is stopping... -- 21:17:44.516 DEBUG [6275]: Closing database connection -- 21:17:44.516 SQL [6275]: pgsql_close() -- 21:17:45.966 INFO [6275]: COREGRADE is starting... -- 21:17:45.967 INFO [6275]: Version from config: 1.0 -- 21:17:45.967 DEBUG [6275]: Connecting to database... -- 21:17:45.967 DEBUG [6275]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:17:45.967 SQL [6275]: pgsql_db_connect() -- 21:17:45.971 DEBUG [6275]: Database connection successful -- 21:17:45.971 INFO [6275]: _SERVER found -- 21:17:45.971 INFO [6275]: REMOTE_ADDR = 10.0.0.15 -- 21:17:45.971 INFO [6275]: SERVER_NAME = oameye.works.coregrade.com -- 21:17:45.971 INFO [6275]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 21:17:45.971 INFO [6275]: HTTP_X_FORWARDED_FOR = 101.231.118.210 -- 21:17:46.002 INFO [6275]: COREGRADE is stopping... -- 21:17:46.002 DEBUG [6275]: Closing database connection -- 21:17:46.002 SQL [6275]: pgsql_close() -- 21:17:47.277 INFO [6275]: COREGRADE is starting... -- 21:17:47.277 INFO [6275]: Version from config: 1.0 -- 21:17:47.277 DEBUG [6275]: Connecting to database... -- 21:17:47.277 DEBUG [6275]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:17:47.278 SQL [6275]: pgsql_db_connect() -- 21:17:47.282 DEBUG [6275]: Database connection successful -- 21:17:47.282 INFO [6275]: _SERVER found -- 21:17:47.282 INFO [6275]: REMOTE_ADDR = 10.0.0.15 -- 21:17:47.282 INFO [6275]: SERVER_NAME = oameye.works.coregrade.com -- 21:17:47.282 INFO [6275]: QUERY_STRING = s=captcha -- 21:17:47.282 INFO [6275]: HTTP_X_FORWARDED_FOR = 101.231.118.210 -- 21:17:47.313 INFO [6275]: COREGRADE is stopping... -- 21:17:47.313 DEBUG [6275]: Closing database connection -- 21:17:47.313 SQL [6275]: pgsql_close() -- 21:17:48.577 INFO [6275]: COREGRADE is starting... -- 21:17:48.577 INFO [6275]: Version from config: 1.0 -- 21:17:48.577 DEBUG [6275]: Connecting to database... -- 21:17:48.577 DEBUG [6275]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:17:48.577 SQL [6275]: pgsql_db_connect() -- 21:17:48.581 DEBUG [6275]: Database connection successful -- 21:17:48.581 INFO [6275]: _SERVER found -- 21:17:48.581 INFO [6275]: REMOTE_ADDR = 10.0.0.15 -- 21:17:48.581 INFO [6275]: SERVER_NAME = oameye.works.coregrade.com -- 21:17:48.581 INFO [6275]: QUERY_STRING = -- 21:17:48.581 INFO [6275]: HTTP_X_FORWARDED_FOR = 101.231.118.210 -- 21:17:48.612 INFO [6275]: COREGRADE is stopping... -- 21:17:48.612 DEBUG [6275]: Closing database connection -- 21:17:48.612 SQL [6275]: pgsql_close() -- 23:49:11.968 INFO [6379]: COREGRADE is starting... -- 23:49:11.969 INFO [6379]: Version from config: 1.0 -- 23:49:11.969 DEBUG [6379]: Connecting to database... -- 23:49:11.969 DEBUG [6379]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:49:11.969 SQL [6379]: pgsql_db_connect() -- 23:49:11.976 DEBUG [6379]: Database connection successful -- 23:49:11.976 INFO [6379]: _SERVER found -- 23:49:11.976 INFO [6379]: REMOTE_ADDR = 10.0.0.15 -- 23:49:11.976 INFO [6379]: SERVER_NAME = oameye.works.coregrade.com -- 23:49:11.976 INFO [6379]: QUERY_STRING = /.well-known/acme-challenge/1AwJhp-Jl1RxbOfTR-HLvHXUHT6Kvw6Zmfo_zEUtB7k -- 23:49:11.976 INFO [6379]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 23:49:12.003 INFO [6379]: COREGRADE is stopping... -- 23:49:12.003 DEBUG [6379]: Closing database connection -- 23:49:12.003 SQL [6379]: pgsql_close() -- 23:49:12.113 INFO [6379]: COREGRADE is starting... -- 23:49:12.113 INFO [6379]: Version from config: 1.0 -- 23:49:12.113 DEBUG [6379]: Connecting to database... -- 23:49:12.113 DEBUG [6379]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:49:12.113 SQL [6379]: pgsql_db_connect() -- 23:49:12.117 DEBUG [6379]: Database connection successful -- 23:49:12.117 INFO [6379]: _SERVER found -- 23:49:12.117 INFO [6379]: REMOTE_ADDR = 10.0.0.15 -- 23:49:12.117 INFO [6379]: SERVER_NAME = oameye.works.coregrade.com -- 23:49:12.117 INFO [6379]: QUERY_STRING = /.well-known/acme-challenge/1AwJhp-Jl1RxbOfTR-HLvHXUHT6Kvw6Zmfo_zEUtB7k -- 23:49:12.117 INFO [6379]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 23:49:12.129 INFO [6379]: COREGRADE is stopping... -- 23:49:12.129 DEBUG [6379]: Closing database connection -- 23:49:12.129 SQL [6379]: pgsql_close() -- 23:49:12.149 INFO [11656]: COREGRADE is starting... -- 23:49:12.149 INFO [11656]: Version from config: 1.0 -- 23:49:12.149 DEBUG [11656]: Connecting to database... -- 23:49:12.149 DEBUG [11656]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:49:12.149 SQL [11656]: pgsql_db_connect() -- 23:49:12.153 DEBUG [11656]: Database connection successful -- 23:49:12.153 INFO [11656]: _SERVER found -- 23:49:12.153 INFO [11656]: REMOTE_ADDR = 10.0.0.15 -- 23:49:12.153 INFO [11656]: SERVER_NAME = oameye.works.coregrade.com -- 23:49:12.153 INFO [11656]: QUERY_STRING = /.well-known/acme-challenge/1AwJhp-Jl1RxbOfTR-HLvHXUHT6Kvw6Zmfo_zEUtB7k -- 23:49:12.153 INFO [11656]: HTTP_X_FORWARDED_FOR = 34.222.229.130 -- 23:49:12.167 INFO [11656]: COREGRADE is stopping... -- 23:49:12.167 DEBUG [11656]: Closing database connection -- 23:49:12.167 SQL [11656]: pgsql_close() -- 02:55:10.643 INFO [6271]: COREGRADE is starting... -- 02:55:10.643 INFO [6271]: Version from config: 1.0 -- 02:55:10.643 DEBUG [6271]: Connecting to database... -- 02:55:10.643 DEBUG [6271]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:55:10.643 SQL [6271]: pgsql_db_connect() -- 02:55:10.648 DEBUG [6271]: Database connection successful -- 02:55:10.648 INFO [6271]: _SERVER found -- 02:55:10.648 INFO [6271]: REMOTE_ADDR = 10.0.0.15 -- 02:55:10.648 INFO [6271]: SERVER_NAME = oameye.works.coregrade.com -- 02:55:10.648 INFO [6271]: QUERY_STRING = /Telerik.Web.UI.WebResource.axd -- 02:55:10.648 INFO [6271]: HTTP_X_FORWARDED_FOR = 193.118.53.202 -- 02:55:10.665 INFO [6271]: COREGRADE is stopping... -- 02:55:10.665 DEBUG [6271]: Closing database connection -- 02:55:10.665 SQL [6271]: pgsql_close() -- 03:10:44.381 INFO [6272]: COREGRADE is starting... -- 03:10:44.381 INFO [6272]: Version from config: 1.0 -- 03:10:44.381 DEBUG [6272]: Connecting to database... -- 03:10:44.381 DEBUG [6272]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:10:44.381 SQL [6272]: pgsql_db_connect() -- 03:10:44.386 DEBUG [6272]: Database connection successful -- 03:10:44.386 INFO [6272]: _SERVER found -- 03:10:44.386 INFO [6272]: REMOTE_ADDR = 10.0.0.15 -- 03:10:44.386 INFO [6272]: SERVER_NAME = oameye.works.coregrade.com -- 03:10:44.386 INFO [6272]: QUERY_STRING = /.well-known/acme-challenge/-cXe_OnM3s8KfAz_baNFuoCFwo5og7HS0Inb2Sm8pUA -- 03:10:44.386 INFO [6272]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 03:10:44.401 INFO [6272]: COREGRADE is stopping... -- 03:10:44.401 DEBUG [6272]: Closing database connection -- 03:10:44.401 SQL [6272]: pgsql_close() -- 03:10:44.463 INFO [6274]: COREGRADE is starting... -- 03:10:44.464 INFO [6274]: Version from config: 1.0 -- 03:10:44.464 DEBUG [6274]: Connecting to database... -- 03:10:44.464 DEBUG [6274]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:10:44.464 SQL [6274]: pgsql_db_connect() -- 03:10:44.468 DEBUG [6274]: Database connection successful -- 03:10:44.468 INFO [6274]: _SERVER found -- 03:10:44.468 INFO [6274]: REMOTE_ADDR = 10.0.0.15 -- 03:10:44.468 INFO [6274]: SERVER_NAME = tokslaw.works.coregrade.com -- 03:10:44.468 INFO [6274]: QUERY_STRING = /.well-known/acme-challenge/eisBb5LwF6hlYH0E8QuZPqdfe3fvuf13mwuzimE5RVY -- 03:10:44.468 INFO [6274]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 03:10:44.483 INFO [6274]: COREGRADE is stopping... -- 03:10:44.483 DEBUG [6274]: Closing database connection -- 03:10:44.483 SQL [6274]: pgsql_close() -- 03:10:44.534 INFO [6273]: COREGRADE is starting... -- 03:10:44.534 INFO [6273]: Version from config: 1.0 -- 03:10:44.535 DEBUG [6273]: Connecting to database... -- 03:10:44.535 DEBUG [6273]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:10:44.535 SQL [6273]: pgsql_db_connect() -- 03:10:44.539 DEBUG [6273]: Database connection successful -- 03:10:44.539 INFO [6273]: _SERVER found -- 03:10:44.539 INFO [6273]: REMOTE_ADDR = 10.0.0.15 -- 03:10:44.539 INFO [6273]: SERVER_NAME = oameye.works.coregrade.com -- 03:10:44.539 INFO [6273]: QUERY_STRING = /.well-known/acme-challenge/-cXe_OnM3s8KfAz_baNFuoCFwo5og7HS0Inb2Sm8pUA -- 03:10:44.539 INFO [6273]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 03:10:44.562 INFO [6273]: COREGRADE is stopping... -- 03:10:44.562 DEBUG [6273]: Closing database connection -- 03:10:44.562 SQL [6273]: pgsql_close() -- 03:10:44.618 INFO [6274]: COREGRADE is starting... -- 03:10:44.619 INFO [6274]: Version from config: 1.0 -- 03:10:44.619 DEBUG [6274]: Connecting to database... -- 03:10:44.619 DEBUG [6274]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:10:44.619 SQL [6274]: pgsql_db_connect() -- 03:10:44.623 DEBUG [6274]: Database connection successful -- 03:10:44.623 INFO [6274]: _SERVER found -- 03:10:44.623 INFO [6274]: REMOTE_ADDR = 10.0.0.15 -- 03:10:44.623 INFO [6274]: SERVER_NAME = tokslaw.works.coregrade.com -- 03:10:44.623 INFO [6274]: QUERY_STRING = /.well-known/acme-challenge/eisBb5LwF6hlYH0E8QuZPqdfe3fvuf13mwuzimE5RVY -- 03:10:44.623 INFO [6274]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 03:10:44.634 INFO [6274]: COREGRADE is stopping... -- 03:10:44.634 DEBUG [6274]: Closing database connection -- 03:10:44.634 SQL [6274]: pgsql_close() -- 03:10:44.652 INFO [6377]: COREGRADE is starting... -- 03:10:44.652 INFO [6377]: Version from config: 1.0 -- 03:10:44.652 DEBUG [6377]: Connecting to database... -- 03:10:44.652 DEBUG [6377]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:10:44.652 SQL [6377]: pgsql_db_connect() -- 03:10:44.663 INFO [6379]: COREGRADE is starting... -- 03:10:44.663 INFO [6379]: Version from config: 1.0 -- 03:10:44.663 DEBUG [6379]: Connecting to database... -- 03:10:44.663 DEBUG [6379]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:10:44.663 SQL [6379]: pgsql_db_connect() -- 03:10:44.657 DEBUG [6377]: Database connection successful -- 03:10:44.657 INFO [6377]: _SERVER found -- 03:10:44.657 INFO [6377]: REMOTE_ADDR = 10.0.0.15 -- 03:10:44.657 INFO [6377]: SERVER_NAME = oameye.works.coregrade.com -- 03:10:44.657 INFO [6377]: QUERY_STRING = /.well-known/acme-challenge/-cXe_OnM3s8KfAz_baNFuoCFwo5og7HS0Inb2Sm8pUA -- 03:10:44.657 INFO [6377]: HTTP_X_FORWARDED_FOR = 34.222.229.130 -- 03:10:44.676 INFO [6377]: COREGRADE is stopping... -- 03:10:44.676 DEBUG [6377]: Closing database connection -- 03:10:44.676 SQL [6377]: pgsql_close() -- 03:10:44.668 DEBUG [6379]: Database connection successful -- 03:10:44.668 INFO [6379]: _SERVER found -- 03:10:44.668 INFO [6379]: REMOTE_ADDR = 10.0.0.15 -- 03:10:44.668 INFO [6379]: SERVER_NAME = tokslaw.works.coregrade.com -- 03:10:44.668 INFO [6379]: QUERY_STRING = /.well-known/acme-challenge/eisBb5LwF6hlYH0E8QuZPqdfe3fvuf13mwuzimE5RVY -- 03:10:44.668 INFO [6379]: HTTP_X_FORWARDED_FOR = 34.222.229.130 -- 03:10:44.685 INFO [6379]: COREGRADE is stopping... -- 03:10:44.685 DEBUG [6379]: Closing database connection -- 03:10:44.685 SQL [6379]: pgsql_close() -- 03:46:18.215 INFO [18667]: COREGRADE is starting... -- 03:46:18.215 INFO [18667]: Version from config: 1.0 -- 03:46:18.215 DEBUG [18667]: Connecting to database... -- 03:46:18.215 DEBUG [18667]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:46:18.215 SQL [18667]: pgsql_db_connect() -- 03:46:18.221 DEBUG [18667]: Database connection successful -- 03:46:18.221 INFO [18667]: _SERVER found -- 03:46:18.221 INFO [18667]: REMOTE_ADDR = 10.0.0.15 -- 03:46:18.221 INFO [18667]: SERVER_NAME = oameye.works.coregrade.com -- 03:46:18.221 INFO [18667]: QUERY_STRING = -- 03:46:18.221 INFO [18667]: HTTP_X_FORWARDED_FOR = 51.255.109.161 -- 03:46:18.275 INFO [18667]: COREGRADE is stopping... -- 03:46:18.275 DEBUG [18667]: Closing database connection -- 03:46:18.275 SQL [18667]: pgsql_close() -- 04:27:04.899 INFO [18671]: COREGRADE is starting... -- 04:27:04.899 INFO [18671]: Version from config: 1.0 -- 04:27:04.899 DEBUG [18671]: Connecting to database... -- 04:27:04.899 DEBUG [18671]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:27:04.899 SQL [18671]: pgsql_db_connect() -- 04:27:04.905 DEBUG [18671]: Database connection successful -- 04:27:04.905 INFO [18671]: _SERVER found -- 04:27:04.905 INFO [18671]: REMOTE_ADDR = 10.0.0.15 -- 04:27:04.905 INFO [18671]: SERVER_NAME = oameye.works.coregrade.com -- 04:27:04.905 INFO [18671]: QUERY_STRING = /console -- 04:27:04.905 INFO [18671]: HTTP_X_FORWARDED_FOR = 150.136.210.90 -- 04:27:04.923 INFO [18671]: COREGRADE is stopping... -- 04:27:04.923 DEBUG [18671]: Closing database connection -- 04:27:04.923 SQL [18671]: pgsql_close() -- 04:27:08.921 INFO [18671]: COREGRADE is starting... -- 04:27:08.921 INFO [18671]: Version from config: 1.0 -- 04:27:08.921 DEBUG [18671]: Connecting to database... -- 04:27:08.921 DEBUG [18671]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:27:08.921 SQL [18671]: pgsql_db_connect() -- 04:27:08.926 DEBUG [18671]: Database connection successful -- 04:27:08.926 INFO [18671]: _SERVER found -- 04:27:08.926 INFO [18671]: REMOTE_ADDR = 10.0.0.15 -- 04:27:08.926 INFO [18671]: SERVER_NAME = oameye.works.coregrade.com -- 04:27:08.926 INFO [18671]: QUERY_STRING = -- 04:27:08.926 INFO [18671]: HTTP_X_FORWARDED_FOR = 150.136.210.90 -- 04:27:08.971 INFO [18671]: COREGRADE is stopping... -- 04:27:08.971 DEBUG [18671]: Closing database connection -- 04:27:08.971 SQL [18671]: pgsql_close() -- 04:27:10.563 INFO [18671]: COREGRADE is starting... -- 04:27:10.564 INFO [18671]: Version from config: 1.0 -- 04:27:10.564 DEBUG [18671]: Connecting to database... -- 04:27:10.564 DEBUG [18671]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:27:10.564 SQL [18671]: pgsql_db_connect() -- 04:27:10.568 DEBUG [18671]: Database connection successful -- 04:27:10.568 INFO [18671]: _SERVER found -- 04:27:10.568 INFO [18671]: REMOTE_ADDR = 10.0.0.15 -- 04:27:10.568 INFO [18671]: SERVER_NAME = oameye.works.coregrade.com -- 04:27:10.568 INFO [18671]: QUERY_STRING = /horde/imp/test.php -- 04:27:10.568 INFO [18671]: HTTP_X_FORWARDED_FOR = 150.136.210.90 -- 04:27:10.580 INFO [18671]: COREGRADE is stopping... -- 04:27:10.580 DEBUG [18671]: Closing database connection -- 04:27:10.580 SQL [18671]: pgsql_close() -- 04:27:12.197 INFO [18817]: COREGRADE is starting... -- 04:27:12.198 INFO [18817]: Version from config: 1.0 -- 04:27:12.198 DEBUG [18817]: Connecting to database... -- 04:27:12.198 DEBUG [18817]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:27:12.198 SQL [18817]: pgsql_db_connect() -- 04:27:12.203 DEBUG [18817]: Database connection successful -- 04:27:12.203 INFO [18817]: _SERVER found -- 04:27:12.203 INFO [18817]: REMOTE_ADDR = 10.0.0.15 -- 04:27:12.203 INFO [18817]: SERVER_NAME = oameye.works.coregrade.com -- 04:27:12.203 INFO [18817]: QUERY_STRING = /login.action -- 04:27:12.203 INFO [18817]: HTTP_X_FORWARDED_FOR = 150.136.210.90 -- 04:27:12.219 INFO [18817]: COREGRADE is stopping... -- 04:27:12.219 DEBUG [18817]: Closing database connection -- 04:27:12.219 SQL [18817]: pgsql_close() -- 04:27:13.413 INFO [18667]: COREGRADE is starting... -- 04:27:13.413 INFO [18667]: Version from config: 1.0 -- 04:27:13.413 DEBUG [18667]: Connecting to database... -- 04:27:13.413 DEBUG [18667]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:27:13.413 SQL [18667]: pgsql_db_connect() -- 04:27:13.418 DEBUG [18667]: Database connection successful -- 04:27:13.418 INFO [18667]: _SERVER found -- 04:27:13.418 INFO [18667]: REMOTE_ADDR = 10.0.0.15 -- 04:27:13.418 INFO [18667]: SERVER_NAME = oameye.works.coregrade.com -- 04:27:13.418 INFO [18667]: QUERY_STRING = /login -- 04:27:13.418 INFO [18667]: HTTP_X_FORWARDED_FOR = 150.136.210.90 -- 04:27:13.431 INFO [18667]: COREGRADE is stopping... -- 04:27:13.431 DEBUG [18667]: Closing database connection -- 04:27:13.431 SQL [18667]: pgsql_close() -- 04:27:15.040 INFO [18667]: COREGRADE is starting... -- 04:27:15.040 INFO [18667]: Version from config: 1.0 -- 04:27:15.040 DEBUG [18667]: Connecting to database... -- 04:27:15.040 DEBUG [18667]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:27:15.040 SQL [18667]: pgsql_db_connect() -- 04:27:15.045 DEBUG [18667]: Database connection successful -- 04:27:15.045 INFO [18667]: _SERVER found -- 04:27:15.045 INFO [18667]: REMOTE_ADDR = 10.0.0.15 -- 04:27:15.045 INFO [18667]: SERVER_NAME = oameye.works.coregrade.com -- 04:27:15.045 INFO [18667]: QUERY_STRING = /phpMyAdmin/scripts/setup.php -- 04:27:15.045 INFO [18667]: HTTP_X_FORWARDED_FOR = 150.136.210.90 -- 04:27:15.057 INFO [18667]: COREGRADE is stopping... -- 04:27:15.057 DEBUG [18667]: Closing database connection -- 04:27:15.057 SQL [18667]: pgsql_close() -- 04:27:16.599 INFO [18668]: COREGRADE is starting... -- 04:27:16.600 INFO [18668]: Version from config: 1.0 -- 04:27:16.600 DEBUG [18668]: Connecting to database... -- 04:27:16.600 DEBUG [18668]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:27:16.600 SQL [18668]: pgsql_db_connect() -- 04:27:16.604 DEBUG [18668]: Database connection successful -- 04:27:16.604 INFO [18668]: _SERVER found -- 04:27:16.604 INFO [18668]: REMOTE_ADDR = 10.0.0.15 -- 04:27:16.604 INFO [18668]: SERVER_NAME = oameye.works.coregrade.com -- 04:27:16.604 INFO [18668]: QUERY_STRING = /phpmyadmin/scripts/setup.php -- 04:27:16.604 INFO [18668]: HTTP_X_FORWARDED_FOR = 150.136.210.90 -- 04:27:16.618 INFO [18668]: COREGRADE is stopping... -- 04:27:16.618 DEBUG [18668]: Closing database connection -- 04:27:16.619 SQL [18668]: pgsql_close() -- 04:27:20.041 INFO [18668]: COREGRADE is starting... -- 04:27:20.041 INFO [18668]: Version from config: 1.0 -- 04:27:20.041 DEBUG [18668]: Connecting to database... -- 04:27:20.041 DEBUG [18668]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:27:20.042 SQL [18668]: pgsql_db_connect() -- 04:27:20.046 DEBUG [18668]: Database connection successful -- 04:27:20.046 INFO [18668]: _SERVER found -- 04:27:20.046 INFO [18668]: REMOTE_ADDR = 10.0.0.15 -- 04:27:20.046 INFO [18668]: SERVER_NAME = oameye.works.coregrade.com -- 04:27:20.046 INFO [18668]: QUERY_STRING = /login/do_login -- 04:27:20.046 INFO [18668]: HTTP_X_FORWARDED_FOR = 150.136.210.90 -- 04:27:20.058 INFO [18668]: COREGRADE is stopping... -- 04:27:20.058 DEBUG [18668]: Closing database connection -- 04:27:20.058 SQL [18668]: pgsql_close() -- 07:04:03.245 INFO [19005]: COREGRADE is starting... -- 07:04:03.246 INFO [19005]: Version from config: 1.0 -- 07:04:03.246 DEBUG [19005]: Connecting to database... -- 07:04:03.246 DEBUG [19005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:04:03.246 SQL [19005]: pgsql_db_connect() -- 07:04:03.250 DEBUG [19005]: Database connection successful -- 07:04:03.250 INFO [19005]: _SERVER found -- 07:04:03.250 INFO [19005]: REMOTE_ADDR = 10.0.0.15 -- 07:04:03.250 INFO [19005]: SERVER_NAME = oameye.works.coregrade.com -- 07:04:03.250 INFO [19005]: QUERY_STRING = -- 07:04:03.250 INFO [19005]: HTTP_X_FORWARDED_FOR = 134.122.101.173 -- 07:04:03.298 INFO [19005]: COREGRADE is stopping... -- 07:04:03.298 DEBUG [19005]: Closing database connection -- 07:04:03.298 SQL [19005]: pgsql_close() -- 07:04:03.479 INFO [19005]: COREGRADE is starting... -- 07:04:03.479 INFO [19005]: Version from config: 1.0 -- 07:04:03.479 DEBUG [19005]: Connecting to database... -- 07:04:03.479 DEBUG [19005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:04:03.479 SQL [19005]: pgsql_db_connect() -- 07:04:03.483 DEBUG [19005]: Database connection successful -- 07:04:03.483 INFO [19005]: _SERVER found -- 07:04:03.483 INFO [19005]: REMOTE_ADDR = 10.0.0.15 -- 07:04:03.483 INFO [19005]: SERVER_NAME = oameye.works.coregrade.com -- 07:04:03.483 INFO [19005]: HTTP_COOKIE = ci_session=6jusilf4s0jse3ftcen1i8ru3cgf6kjt -- 07:04:03.483 INFO [19005]: QUERY_STRING = /favicon.ico -- 07:04:03.483 INFO [19005]: HTTP_X_FORWARDED_FOR = 134.122.101.173 -- 07:04:03.494 INFO [19005]: COREGRADE is stopping... -- 07:04:03.495 DEBUG [19005]: Closing database connection -- 07:04:03.495 SQL [19005]: pgsql_close() -- 07:04:04.978 INFO [19007]: COREGRADE is starting... -- 07:04:04.979 INFO [19007]: Version from config: 1.0 -- 07:04:04.979 DEBUG [19007]: Connecting to database... -- 07:04:04.979 DEBUG [19007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:04:04.979 SQL [19007]: pgsql_db_connect() -- 07:04:04.983 DEBUG [19007]: Database connection successful -- 07:04:04.983 INFO [19007]: _SERVER found -- 07:04:04.983 INFO [19007]: REMOTE_ADDR = 10.0.0.15 -- 07:04:04.983 INFO [19007]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:04:04.983 INFO [19007]: QUERY_STRING = -- 07:04:04.983 INFO [19007]: HTTP_X_FORWARDED_FOR = 172.104.147.120 -- 07:04:05.027 INFO [19007]: COREGRADE is stopping... -- 07:04:05.027 DEBUG [19007]: Closing database connection -- 07:04:05.027 SQL [19007]: pgsql_close() -- 07:04:05.202 INFO [19007]: COREGRADE is starting... -- 07:04:05.202 INFO [19007]: Version from config: 1.0 -- 07:04:05.202 DEBUG [19007]: Connecting to database... -- 07:04:05.202 DEBUG [19007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:04:05.202 SQL [19007]: pgsql_db_connect() -- 07:04:05.206 DEBUG [19007]: Database connection successful -- 07:04:05.206 INFO [19007]: _SERVER found -- 07:04:05.206 INFO [19007]: REMOTE_ADDR = 10.0.0.15 -- 07:04:05.206 INFO [19007]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:04:05.206 INFO [19007]: HTTP_COOKIE = ci_session=o4s1stlck1u6it1hvovpi5dindtjte98 -- 07:04:05.206 INFO [19007]: QUERY_STRING = /favicon.ico -- 07:04:05.206 INFO [19007]: HTTP_X_FORWARDED_FOR = 172.104.147.120 -- 07:04:05.217 INFO [19007]: COREGRADE is stopping... -- 07:04:05.217 DEBUG [19007]: Closing database connection -- 07:04:05.217 SQL [19007]: pgsql_close() -- 07:04:10.921 INFO [18817]: COREGRADE is starting... -- 07:04:10.921 INFO [18817]: Version from config: 1.0 -- 07:04:10.921 DEBUG [18817]: Connecting to database... -- 07:04:10.921 DEBUG [18817]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:04:10.921 SQL [18817]: pgsql_db_connect() -- 07:04:10.925 DEBUG [18817]: Database connection successful -- 07:04:10.925 INFO [18817]: _SERVER found -- 07:04:10.925 INFO [18817]: REMOTE_ADDR = 10.0.0.15 -- 07:04:10.925 INFO [18817]: SERVER_NAME = oameye.works.coregrade.com -- 07:04:10.925 INFO [18817]: QUERY_STRING = -- 07:04:10.925 INFO [18817]: HTTP_X_FORWARDED_FOR = 104.237.157.11 -- 07:04:10.966 INFO [18817]: COREGRADE is stopping... -- 07:04:10.966 DEBUG [18817]: Closing database connection -- 07:04:10.966 SQL [18817]: pgsql_close() -- 07:04:11.172 INFO [18817]: COREGRADE is starting... -- 07:04:11.172 INFO [18817]: Version from config: 1.0 -- 07:04:11.172 DEBUG [18817]: Connecting to database... -- 07:04:11.172 DEBUG [18817]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:04:11.172 SQL [18817]: pgsql_db_connect() -- 07:04:11.176 DEBUG [18817]: Database connection successful -- 07:04:11.176 INFO [18817]: _SERVER found -- 07:04:11.176 INFO [18817]: REMOTE_ADDR = 10.0.0.15 -- 07:04:11.176 INFO [18817]: SERVER_NAME = oameye.works.coregrade.com -- 07:04:11.176 INFO [18817]: HTTP_COOKIE = ci_session=tc07emr7lqsvpb0t43l3ng7o35k0c5mp -- 07:04:11.176 INFO [18817]: QUERY_STRING = /favicon.ico -- 07:04:11.176 INFO [18817]: HTTP_X_FORWARDED_FOR = 104.237.157.11 -- 07:04:11.187 INFO [18817]: COREGRADE is stopping... -- 07:04:11.187 DEBUG [18817]: Closing database connection -- 07:04:11.187 SQL [18817]: pgsql_close() -- 07:04:12.910 INFO [18667]: COREGRADE is starting... -- 07:04:12.910 INFO [18667]: Version from config: 1.0 -- 07:04:12.910 DEBUG [18667]: Connecting to database... -- 07:04:12.910 DEBUG [18667]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:04:12.910 SQL [18667]: pgsql_db_connect() -- 07:04:12.914 DEBUG [18667]: Database connection successful -- 07:04:12.914 INFO [18667]: _SERVER found -- 07:04:12.914 INFO [18667]: REMOTE_ADDR = 10.0.0.15 -- 07:04:12.914 INFO [18667]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:04:12.914 INFO [18667]: QUERY_STRING = -- 07:04:12.914 INFO [18667]: HTTP_X_FORWARDED_FOR = 172.105.95.101 -- 07:04:12.949 INFO [18667]: COREGRADE is stopping... -- 07:04:12.949 DEBUG [18667]: Closing database connection -- 07:04:12.949 SQL [18667]: pgsql_close() -- 07:04:13.172 INFO [18667]: COREGRADE is starting... -- 07:04:13.172 INFO [18667]: Version from config: 1.0 -- 07:04:13.172 DEBUG [18667]: Connecting to database... -- 07:04:13.172 DEBUG [18667]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:04:13.172 SQL [18667]: pgsql_db_connect() -- 07:04:13.176 DEBUG [18667]: Database connection successful -- 07:04:13.176 INFO [18667]: _SERVER found -- 07:04:13.176 INFO [18667]: REMOTE_ADDR = 10.0.0.15 -- 07:04:13.176 INFO [18667]: SERVER_NAME = tokslaw.works.coregrade.com -- 07:04:13.176 INFO [18667]: HTTP_COOKIE = ci_session=qhr7ueh5pebpm7pbo97a8hbo4jhne3mq -- 07:04:13.176 INFO [18667]: QUERY_STRING = /favicon.ico -- 07:04:13.176 INFO [18667]: HTTP_X_FORWARDED_FOR = 172.105.95.101 -- 07:04:13.187 INFO [18667]: COREGRADE is stopping... -- 07:04:13.188 DEBUG [18667]: Closing database connection -- 07:04:13.188 SQL [18667]: pgsql_close() -- 09:47:15.026 INFO [18668]: COREGRADE is starting... -- 09:47:15.027 INFO [18668]: Version from config: 1.0 -- 09:47:15.027 DEBUG [18668]: Connecting to database... -- 09:47:15.027 DEBUG [18668]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:47:15.027 SQL [18668]: pgsql_db_connect() -- 09:47:15.031 DEBUG [18668]: Database connection successful -- 09:47:15.031 INFO [18668]: _SERVER found -- 09:47:15.031 INFO [18668]: REMOTE_ADDR = 10.0.0.15 -- 09:47:15.031 INFO [18668]: SERVER_NAME = oameye.works.coregrade.com -- 09:47:15.031 INFO [18668]: QUERY_STRING = /console -- 09:47:15.031 INFO [18668]: HTTP_X_FORWARDED_FOR = 201.245.179.123 -- 09:47:15.047 INFO [18668]: COREGRADE is stopping... -- 09:47:15.047 DEBUG [18668]: Closing database connection -- 09:47:15.047 SQL [18668]: pgsql_close() -- 09:47:16.246 INFO [18669]: COREGRADE is starting... -- 09:47:16.246 INFO [18669]: Version from config: 1.0 -- 09:47:16.246 DEBUG [18669]: Connecting to database... -- 09:47:16.246 DEBUG [18669]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:47:16.246 SQL [18669]: pgsql_db_connect() -- 09:47:16.251 DEBUG [18669]: Database connection successful -- 09:47:16.251 INFO [18669]: _SERVER found -- 09:47:16.251 INFO [18669]: REMOTE_ADDR = 10.0.0.15 -- 09:47:16.251 INFO [18669]: SERVER_NAME = oameye.works.coregrade.com -- 09:47:16.251 INFO [18669]: QUERY_STRING = -- 09:47:16.251 INFO [18669]: HTTP_X_FORWARDED_FOR = 201.245.179.123 -- 09:47:16.290 INFO [18669]: COREGRADE is stopping... -- 09:47:16.290 DEBUG [18669]: Closing database connection -- 09:47:16.290 SQL [18669]: pgsql_close() -- 09:47:16.992 INFO [18669]: COREGRADE is starting... -- 09:47:16.992 INFO [18669]: Version from config: 1.0 -- 09:47:16.992 DEBUG [18669]: Connecting to database... -- 09:47:16.992 DEBUG [18669]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:47:16.992 SQL [18669]: pgsql_db_connect() -- 09:47:16.996 DEBUG [18669]: Database connection successful -- 09:47:16.996 INFO [18669]: _SERVER found -- 09:47:16.997 INFO [18669]: REMOTE_ADDR = 10.0.0.15 -- 09:47:16.997 INFO [18669]: SERVER_NAME = oameye.works.coregrade.com -- 09:47:16.997 INFO [18669]: QUERY_STRING = /horde/imp/test.php -- 09:47:16.997 INFO [18669]: HTTP_X_FORWARDED_FOR = 201.245.179.123 -- 09:47:17.008 INFO [18669]: COREGRADE is stopping... -- 09:47:17.008 DEBUG [18669]: Closing database connection -- 09:47:17.008 SQL [18669]: pgsql_close() -- 09:47:17.580 INFO [18669]: COREGRADE is starting... -- 09:47:17.580 INFO [18669]: Version from config: 1.0 -- 09:47:17.580 DEBUG [18669]: Connecting to database... -- 09:47:17.580 DEBUG [18669]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:47:17.580 SQL [18669]: pgsql_db_connect() -- 09:47:17.584 DEBUG [18669]: Database connection successful -- 09:47:17.584 INFO [18669]: _SERVER found -- 09:47:17.584 INFO [18669]: REMOTE_ADDR = 10.0.0.15 -- 09:47:17.584 INFO [18669]: SERVER_NAME = oameye.works.coregrade.com -- 09:47:17.584 INFO [18669]: QUERY_STRING = /login.action -- 09:47:17.584 INFO [18669]: HTTP_X_FORWARDED_FOR = 201.245.179.123 -- 09:47:17.596 INFO [18669]: COREGRADE is stopping... -- 09:47:17.596 DEBUG [18669]: Closing database connection -- 09:47:17.596 SQL [18669]: pgsql_close() -- 09:47:18.178 INFO [18669]: COREGRADE is starting... -- 09:47:18.178 INFO [18669]: Version from config: 1.0 -- 09:47:18.178 DEBUG [18669]: Connecting to database... -- 09:47:18.178 DEBUG [18669]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:47:18.178 SQL [18669]: pgsql_db_connect() -- 09:47:18.182 DEBUG [18669]: Database connection successful -- 09:47:18.182 INFO [18669]: _SERVER found -- 09:47:18.182 INFO [18669]: REMOTE_ADDR = 10.0.0.15 -- 09:47:18.182 INFO [18669]: SERVER_NAME = oameye.works.coregrade.com -- 09:47:18.182 INFO [18669]: QUERY_STRING = /login -- 09:47:18.182 INFO [18669]: HTTP_X_FORWARDED_FOR = 201.245.179.123 -- 09:47:18.194 INFO [18669]: COREGRADE is stopping... -- 09:47:18.194 DEBUG [18669]: Closing database connection -- 09:47:18.194 SQL [18669]: pgsql_close() -- 09:47:18.768 INFO [18669]: COREGRADE is starting... -- 09:47:18.768 INFO [18669]: Version from config: 1.0 -- 09:47:18.768 DEBUG [18669]: Connecting to database... -- 09:47:18.768 DEBUG [18669]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:47:18.768 SQL [18669]: pgsql_db_connect() -- 09:47:18.772 DEBUG [18669]: Database connection successful -- 09:47:18.772 INFO [18669]: _SERVER found -- 09:47:18.772 INFO [18669]: REMOTE_ADDR = 10.0.0.15 -- 09:47:18.772 INFO [18669]: SERVER_NAME = oameye.works.coregrade.com -- 09:47:18.772 INFO [18669]: QUERY_STRING = /phpMyAdmin/scripts/setup.php -- 09:47:18.772 INFO [18669]: HTTP_X_FORWARDED_FOR = 201.245.179.123 -- 09:47:18.783 INFO [18669]: COREGRADE is stopping... -- 09:47:18.783 DEBUG [18669]: Closing database connection -- 09:47:18.783 SQL [18669]: pgsql_close() -- 09:47:19.383 INFO [18669]: COREGRADE is starting... -- 09:47:19.383 INFO [18669]: Version from config: 1.0 -- 09:47:19.383 DEBUG [18669]: Connecting to database... -- 09:47:19.383 DEBUG [18669]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:47:19.383 SQL [18669]: pgsql_db_connect() -- 09:47:19.387 DEBUG [18669]: Database connection successful -- 09:47:19.387 INFO [18669]: _SERVER found -- 09:47:19.387 INFO [18669]: REMOTE_ADDR = 10.0.0.15 -- 09:47:19.387 INFO [18669]: SERVER_NAME = oameye.works.coregrade.com -- 09:47:19.387 INFO [18669]: QUERY_STRING = /phpmyadmin/scripts/setup.php -- 09:47:19.387 INFO [18669]: HTTP_X_FORWARDED_FOR = 201.245.179.123 -- 09:47:19.399 INFO [18669]: COREGRADE is stopping... -- 09:47:19.399 DEBUG [18669]: Closing database connection -- 09:47:19.399 SQL [18669]: pgsql_close() -- 09:47:19.967 INFO [18669]: COREGRADE is starting... -- 09:47:19.967 INFO [18669]: Version from config: 1.0 -- 09:47:19.967 DEBUG [18669]: Connecting to database... -- 09:47:19.967 DEBUG [18669]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:47:19.967 SQL [18669]: pgsql_db_connect() -- 09:47:19.971 DEBUG [18669]: Database connection successful -- 09:47:19.971 INFO [18669]: _SERVER found -- 09:47:19.971 INFO [18669]: REMOTE_ADDR = 10.0.0.15 -- 09:47:19.971 INFO [18669]: SERVER_NAME = oameye.works.coregrade.com -- 09:47:19.971 INFO [18669]: QUERY_STRING = /login/do_login -- 09:47:19.971 INFO [18669]: HTTP_X_FORWARDED_FOR = 201.245.179.123 -- 09:47:19.983 INFO [18669]: COREGRADE is stopping... -- 09:47:19.983 DEBUG [18669]: Closing database connection -- 09:47:19.983 SQL [18669]: pgsql_close() -- 13:55:51.156 INFO [19005]: COREGRADE is starting... -- 13:55:51.157 INFO [19005]: Version from config: 1.0 -- 13:55:51.157 DEBUG [19005]: Connecting to database... -- 13:55:51.157 DEBUG [19005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:55:51.157 SQL [19005]: pgsql_db_connect() -- 13:55:51.162 DEBUG [19005]: Database connection successful -- 13:55:51.162 INFO [19005]: _SERVER found -- 13:55:51.162 INFO [19005]: REMOTE_ADDR = 10.0.0.15 -- 13:55:51.162 INFO [19005]: SERVER_NAME = oameye.works.coregrade.com -- 13:55:51.162 INFO [19005]: QUERY_STRING = -- 13:55:51.162 INFO [19005]: HTTP_X_FORWARDED_FOR = 64.225.2.67 -- 13:55:51.199 INFO [19005]: COREGRADE is stopping... -- 13:55:51.199 DEBUG [19005]: Closing database connection -- 13:55:51.199 SQL [19005]: pgsql_close() -- 15:03:03.457 INFO [19007]: COREGRADE is starting... -- 15:03:03.458 INFO [19007]: Version from config: 1.0 -- 15:03:03.458 DEBUG [19007]: Connecting to database... -- 15:03:03.458 DEBUG [19007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:03:03.458 SQL [19007]: pgsql_db_connect() -- 15:03:03.462 DEBUG [19007]: Database connection successful -- 15:03:03.462 INFO [19007]: _SERVER found -- 15:03:03.462 INFO [19007]: REMOTE_ADDR = 10.0.0.15 -- 15:03:03.462 INFO [19007]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:03:03.462 INFO [19007]: QUERY_STRING = -- 15:03:03.462 INFO [19007]: HTTP_X_FORWARDED_FOR = 157.245.113.250 -- 15:03:03.499 INFO [19007]: COREGRADE is stopping... -- 15:03:03.499 DEBUG [19007]: Closing database connection -- 15:03:03.499 SQL [19007]: pgsql_close() -- 17:02:55.172 INFO [18671]: COREGRADE is starting... -- 17:02:55.173 INFO [18671]: Version from config: 1.0 -- 17:02:55.173 DEBUG [18671]: Connecting to database... -- 17:02:55.173 DEBUG [18671]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:02:55.173 SQL [18671]: pgsql_db_connect() -- 17:02:55.177 DEBUG [18671]: Database connection successful -- 17:02:55.177 INFO [18671]: _SERVER found -- 17:02:55.177 INFO [18671]: REMOTE_ADDR = 10.0.0.15 -- 17:02:55.177 INFO [18671]: SERVER_NAME = oameye.works.coregrade.com -- 17:02:55.177 INFO [18671]: QUERY_STRING = /robots.txt -- 17:02:55.177 INFO [18671]: HTTP_X_FORWARDED_FOR = 66.249.73.212 -- 17:02:55.193 INFO [18671]: COREGRADE is stopping... -- 17:02:55.193 DEBUG [18671]: Closing database connection -- 17:02:55.193 SQL [18671]: pgsql_close() -- 17:02:55.284 INFO [18671]: COREGRADE is starting... -- 17:02:55.284 INFO [18671]: Version from config: 1.0 -- 17:02:55.284 DEBUG [18671]: Connecting to database... -- 17:02:55.284 DEBUG [18671]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:02:55.284 SQL [18671]: pgsql_db_connect() -- 17:02:55.289 DEBUG [18671]: Database connection successful -- 17:02:55.289 INFO [18671]: _SERVER found -- 17:02:55.289 INFO [18671]: REMOTE_ADDR = 10.0.0.15 -- 17:02:55.289 INFO [18671]: SERVER_NAME = oameye.works.coregrade.com -- 17:02:55.289 INFO [18671]: QUERY_STRING = -- 17:02:55.289 INFO [18671]: HTTP_X_FORWARDED_FOR = 66.249.73.214 -- 17:02:55.326 INFO [18671]: COREGRADE is stopping... -- 17:02:55.326 DEBUG [18671]: Closing database connection -- 17:02:55.326 SQL [18671]: pgsql_close() -- 17:59:32.236 INFO [18817]: COREGRADE is starting... -- 17:59:32.236 INFO [18817]: Version from config: 1.0 -- 17:59:32.236 DEBUG [18817]: Connecting to database... -- 17:59:32.236 DEBUG [18817]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:59:32.236 SQL [18817]: pgsql_db_connect() -- 17:59:32.241 DEBUG [18817]: Database connection successful -- 17:59:32.241 INFO [18817]: _SERVER found -- 17:59:32.241 INFO [18817]: REMOTE_ADDR = 10.0.0.15 -- 17:59:32.241 INFO [18817]: SERVER_NAME = oameye.works.coregrade.com -- 17:59:32.241 INFO [18817]: QUERY_STRING = /home/faq -- 17:59:32.241 INFO [18817]: HTTP_X_FORWARDED_FOR = 66.249.73.214 -- 17:59:32.283 INFO [18817]: COREGRADE is stopping... -- 17:59:32.283 DEBUG [18817]: Closing database connection -- 17:59:32.283 SQL [18817]: pgsql_close() -- 18:27:56.282 INFO [18667]: COREGRADE is starting... -- 18:27:56.282 INFO [18667]: Version from config: 1.0 -- 18:27:56.282 DEBUG [18667]: Connecting to database... -- 18:27:56.282 DEBUG [18667]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:56.282 SQL [18667]: pgsql_db_connect() -- 18:27:56.286 DEBUG [18667]: Database connection successful -- 18:27:56.286 INFO [18667]: _SERVER found -- 18:27:56.286 INFO [18667]: REMOTE_ADDR = 10.0.0.15 -- 18:27:56.286 INFO [18667]: SERVER_NAME = oameye.works.coregrade.com -- 18:27:56.286 INFO [18667]: QUERY_STRING = /home/security -- 18:27:56.286 INFO [18667]: HTTP_X_FORWARDED_FOR = 66.249.73.210 -- 18:27:56.327 INFO [18667]: COREGRADE is stopping... -- 18:27:56.327 DEBUG [18667]: Closing database connection -- 18:27:56.327 SQL [18667]: pgsql_close() -- 19:44:58.765 INFO [18670]: COREGRADE is starting... -- 19:44:58.765 INFO [18670]: Version from config: 1.0 -- 19:44:58.765 DEBUG [18670]: Connecting to database... -- 19:44:58.765 DEBUG [18670]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:44:58.765 SQL [18670]: pgsql_db_connect() -- 19:44:58.770 DEBUG [18670]: Database connection successful -- 19:44:58.770 INFO [18670]: _SERVER found -- 19:44:58.770 INFO [18670]: REMOTE_ADDR = 10.0.0.15 -- 19:44:58.770 INFO [18670]: SERVER_NAME = oameye.works.coregrade.com -- 19:44:58.770 INFO [18670]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069 -- 19:44:58.770 INFO [18670]: QUERY_STRING = /auth -- 19:44:58.770 INFO [18670]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:44:58.812 INFO [18670]: COREGRADE is stopping... -- 19:44:58.812 DEBUG [18670]: Closing database connection -- 19:44:58.812 SQL [18670]: pgsql_close() -- 19:44:59.023 INFO [18670]: COREGRADE is starting... -- 19:44:59.024 INFO [18670]: Version from config: 1.0 -- 19:44:59.024 DEBUG [18670]: Connecting to database... -- 19:44:59.024 DEBUG [18670]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:44:59.024 SQL [18670]: pgsql_db_connect() -- 19:44:59.028 DEBUG [18670]: Database connection successful -- 19:44:59.028 INFO [18670]: _SERVER found -- 19:44:59.028 INFO [18670]: REMOTE_ADDR = 10.0.0.15 -- 19:44:59.028 INFO [18670]: SERVER_NAME = oameye.works.coregrade.com -- 19:44:59.028 INFO [18670]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=29ajftfp2g3173edpodm4mpho52phi65 -- 19:44:59.028 INFO [18670]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 19:44:59.028 INFO [18670]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:44:59.040 INFO [18670]: COREGRADE is stopping... -- 19:44:59.040 DEBUG [18670]: Closing database connection -- 19:44:59.040 SQL [18670]: pgsql_close() -- 19:44:59.811 INFO [18670]: COREGRADE is starting... -- 19:44:59.811 INFO [18670]: Version from config: 1.0 -- 19:44:59.811 DEBUG [18670]: Connecting to database... -- 19:44:59.811 DEBUG [18670]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:44:59.811 SQL [18670]: pgsql_db_connect() -- 19:44:59.815 DEBUG [18670]: Database connection successful -- 19:44:59.815 INFO [18670]: _SERVER found -- 19:44:59.815 INFO [18670]: REMOTE_ADDR = 10.0.0.15 -- 19:44:59.815 INFO [18670]: SERVER_NAME = oameye.works.coregrade.com -- 19:44:59.815 INFO [18670]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=29ajftfp2g3173edpodm4mpho52phi65 -- 19:44:59.815 INFO [18670]: QUERY_STRING = /assets2/images/ico/apple-icon-120.png -- 19:44:59.815 INFO [18670]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:44:59.827 INFO [18670]: COREGRADE is stopping... -- 19:44:59.827 DEBUG [18670]: Closing database connection -- 19:44:59.827 SQL [18670]: pgsql_close() -- 22:11:00.533 INFO [19005]: COREGRADE is starting... -- 22:11:00.534 INFO [19005]: Version from config: 1.0 -- 22:11:00.534 DEBUG [19005]: Connecting to database... -- 22:11:00.534 DEBUG [19005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:11:00.534 SQL [19005]: pgsql_db_connect() -- 22:11:00.538 DEBUG [19005]: Database connection successful -- 22:11:00.539 INFO [19005]: _SERVER found -- 22:11:00.539 INFO [19005]: REMOTE_ADDR = 10.0.0.15 -- 22:11:00.539 INFO [19005]: SERVER_NAME = oameye.works.coregrade.com -- 22:11:00.539 INFO [19005]: QUERY_STRING = -- 22:11:00.539 INFO [19005]: HTTP_X_FORWARDED_FOR = 195.154.62.232 -- 22:11:00.575 INFO [19005]: COREGRADE is stopping... -- 22:11:00.575 DEBUG [19005]: Closing database connection -- 22:11:00.575 SQL [19005]: pgsql_close() -- 02:28:39.876 INFO [19007]: COREGRADE is starting... -- 02:28:39.876 INFO [19007]: Version from config: 1.0 -- 02:28:39.876 DEBUG [19007]: Connecting to database... -- 02:28:39.876 DEBUG [19007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:39.876 SQL [19007]: pgsql_db_connect() -- 02:28:39.881 DEBUG [19007]: Database connection successful -- 02:28:39.881 INFO [19007]: _SERVER found -- 02:28:39.881 INFO [19007]: REMOTE_ADDR = 10.0.0.15 -- 02:28:39.881 INFO [19007]: SERVER_NAME = oameye.works.coregrade.com -- 02:28:39.881 INFO [19007]: QUERY_STRING = /.well-known/acme-challenge/jR6fSa2gjoYQd7VTdd_SW388lVVPieHc743LVGv6JLE -- 02:28:39.881 INFO [19007]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 02:28:39.896 INFO [19007]: COREGRADE is stopping... -- 02:28:39.896 DEBUG [19007]: Closing database connection -- 02:28:39.896 SQL [19007]: pgsql_close() -- 02:28:40.077 INFO [19007]: COREGRADE is starting... -- 02:28:40.078 INFO [19007]: Version from config: 1.0 -- 02:28:40.078 DEBUG [19007]: Connecting to database... -- 02:28:40.078 DEBUG [19007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:40.078 SQL [19007]: pgsql_db_connect() -- 02:28:40.086 INFO [18817]: COREGRADE is starting... -- 02:28:40.086 INFO [18817]: Version from config: 1.0 -- 02:28:40.086 DEBUG [18817]: Connecting to database... -- 02:28:40.086 DEBUG [18817]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:40.086 SQL [18817]: pgsql_db_connect() -- 02:28:40.083 DEBUG [19007]: Database connection successful -- 02:28:40.083 INFO [19007]: _SERVER found -- 02:28:40.083 INFO [19007]: REMOTE_ADDR = 10.0.0.15 -- 02:28:40.083 INFO [19007]: SERVER_NAME = oameye.works.coregrade.com -- 02:28:40.083 INFO [19007]: QUERY_STRING = /.well-known/acme-challenge/jR6fSa2gjoYQd7VTdd_SW388lVVPieHc743LVGv6JLE -- 02:28:40.083 INFO [19007]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 02:28:40.095 INFO [19007]: COREGRADE is stopping... -- 02:28:40.095 DEBUG [19007]: Closing database connection -- 02:28:40.095 SQL [19007]: pgsql_close() -- 02:28:40.099 DEBUG [18817]: Database connection successful -- 02:28:40.099 INFO [18817]: _SERVER found -- 02:28:40.099 INFO [18817]: REMOTE_ADDR = 10.0.0.15 -- 02:28:40.099 INFO [18817]: SERVER_NAME = oameye.works.coregrade.com -- 02:28:40.099 INFO [18817]: QUERY_STRING = /.well-known/acme-challenge/jR6fSa2gjoYQd7VTdd_SW388lVVPieHc743LVGv6JLE -- 02:28:40.099 INFO [18817]: HTTP_X_FORWARDED_FOR = 34.222.229.130 -- 02:28:40.114 INFO [18817]: COREGRADE is stopping... -- 02:28:40.114 DEBUG [18817]: Closing database connection -- 02:28:40.114 SQL [18817]: pgsql_close() -- 03:32:29.249 INFO [18669]: COREGRADE is starting... -- 03:32:29.249 INFO [18669]: Version from config: 1.0 -- 03:32:29.249 DEBUG [18669]: Connecting to database... -- 03:32:29.249 DEBUG [18669]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:32:29.249 SQL [18669]: pgsql_db_connect() -- 03:32:29.254 DEBUG [18669]: Database connection successful -- 03:32:29.254 INFO [18669]: _SERVER found -- 03:32:29.254 INFO [18669]: REMOTE_ADDR = 10.0.0.15 -- 03:32:29.254 INFO [18669]: SERVER_NAME = oameye.works.coregrade.com -- 03:32:29.254 INFO [18669]: QUERY_STRING = -- 03:32:29.254 INFO [18669]: HTTP_X_FORWARDED_FOR = 45.82.255.95 -- 03:32:29.295 INFO [18669]: COREGRADE is stopping... -- 03:32:29.295 DEBUG [18669]: Closing database connection -- 03:32:29.295 SQL [18669]: pgsql_close() -- 08:29:44.732 INFO [18670]: COREGRADE is starting... -- 08:29:44.733 INFO [18670]: Version from config: 1.0 -- 08:29:44.733 DEBUG [18670]: Connecting to database... -- 08:29:44.733 DEBUG [18670]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:44.733 SQL [18670]: pgsql_db_connect() -- 08:29:44.738 DEBUG [18670]: Database connection successful -- 08:29:44.738 INFO [18670]: _SERVER found -- 08:29:44.738 INFO [18670]: REMOTE_ADDR = 10.0.0.15 -- 08:29:44.738 INFO [18670]: SERVER_NAME = oameye.works.coregrade.com -- 08:29:44.738 INFO [18670]: QUERY_STRING = -- 08:29:44.738 INFO [18670]: HTTP_X_FORWARDED_FOR = 47.92.127.170 -- 08:29:44.779 INFO [18670]: COREGRADE is stopping... -- 08:29:44.779 DEBUG [18670]: Closing database connection -- 08:29:44.779 SQL [18670]: pgsql_close() -- 12:37:00.550 INFO [19005]: COREGRADE is starting... -- 12:37:00.551 INFO [19005]: Version from config: 1.0 -- 12:37:00.551 DEBUG [19005]: Connecting to database... -- 12:37:00.551 DEBUG [19005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:37:00.551 SQL [19005]: pgsql_db_connect() -- 12:37:00.555 DEBUG [19005]: Database connection successful -- 12:37:00.555 INFO [19005]: _SERVER found -- 12:37:00.555 INFO [19005]: REMOTE_ADDR = 10.0.0.15 -- 12:37:00.555 INFO [19005]: SERVER_NAME = oameye.works.coregrade.com -- 12:37:00.555 INFO [19005]: QUERY_STRING = -- 12:37:00.555 INFO [19005]: HTTP_X_FORWARDED_FOR = 198.108.66.240 -- 12:37:00.593 INFO [19005]: COREGRADE is stopping... -- 12:37:00.593 DEBUG [19005]: Closing database connection -- 12:37:00.593 SQL [19005]: pgsql_close() -- 17:22:06.472 INFO [24698]: COREGRADE is starting... -- 17:22:06.473 INFO [24698]: Version from config: 1.0 -- 17:22:06.473 DEBUG [24698]: Connecting to database... -- 17:22:06.473 DEBUG [24698]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:22:06.473 SQL [24698]: pgsql_db_connect() -- 17:22:06.477 DEBUG [24698]: Database connection successful -- 17:22:06.477 INFO [24698]: _SERVER found -- 17:22:06.477 INFO [24698]: REMOTE_ADDR = 10.0.0.15 -- 17:22:06.477 INFO [24698]: SERVER_NAME = oameye.works.coregrade.com -- 17:22:06.478 INFO [24698]: QUERY_STRING = /s -- 17:22:06.478 INFO [24698]: HTTP_X_FORWARDED_FOR = 185.234.218.68 -- 17:22:06.495 INFO [24698]: COREGRADE is stopping... -- 17:22:06.495 DEBUG [24698]: Closing database connection -- 17:22:06.495 SQL [24698]: pgsql_close() -- 17:22:07.332 INFO [24698]: COREGRADE is starting... -- 17:22:07.333 INFO [24698]: Version from config: 1.0 -- 17:22:07.333 DEBUG [24698]: Connecting to database... -- 17:22:07.333 DEBUG [24698]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:22:07.333 SQL [24698]: pgsql_db_connect() -- 17:22:07.337 DEBUG [24698]: Database connection successful -- 17:22:07.338 INFO [24698]: _SERVER found -- 17:22:07.338 INFO [24698]: REMOTE_ADDR = 10.0.0.15 -- 17:22:07.338 INFO [24698]: SERVER_NAME = oameye.works.coregrade.com -- 17:22:07.338 INFO [24698]: QUERY_STRING = -- 17:22:07.338 INFO [24698]: HTTP_X_FORWARDED_FOR = 185.234.218.68 -- 17:22:07.382 INFO [24698]: COREGRADE is stopping... -- 17:22:07.382 DEBUG [24698]: Closing database connection -- 17:22:07.382 SQL [24698]: pgsql_close() -- 20:36:20.755 INFO [24699]: COREGRADE is starting... -- 20:36:20.755 INFO [24699]: Version from config: 1.0 -- 20:36:20.755 DEBUG [24699]: Connecting to database... -- 20:36:20.755 DEBUG [24699]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:36:20.755 SQL [24699]: pgsql_db_connect() -- 20:36:20.761 DEBUG [24699]: Database connection successful -- 20:36:20.761 INFO [24699]: _SERVER found -- 20:36:20.761 INFO [24699]: REMOTE_ADDR = 10.0.0.15 -- 20:36:20.761 INFO [24699]: SERVER_NAME = oameye.works.coregrade.com -- 20:36:20.761 INFO [24699]: QUERY_STRING = -- 20:36:20.761 INFO [24699]: HTTP_X_FORWARDED_FOR = 193.118.55.146 -- 20:36:20.810 INFO [24699]: COREGRADE is stopping... -- 20:36:20.810 DEBUG [24699]: Closing database connection -- 20:36:20.810 SQL [24699]: pgsql_close() -- 23:49:41.434 INFO [19007]: COREGRADE is starting... -- 23:49:41.435 INFO [19007]: Version from config: 1.0 -- 23:49:41.435 DEBUG [19007]: Connecting to database... -- 23:49:41.435 DEBUG [19007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:49:41.435 SQL [19007]: pgsql_db_connect() -- 23:49:41.442 DEBUG [19007]: Database connection successful -- 23:49:41.442 INFO [19007]: _SERVER found -- 23:49:41.442 INFO [19007]: REMOTE_ADDR = 10.0.0.15 -- 23:49:41.442 INFO [19007]: SERVER_NAME = oameye.works.coregrade.com -- 23:49:41.442 INFO [19007]: QUERY_STRING = /.well-known/acme-challenge/Z-tniD7l79AjLW9Kqm69_Inj_3oZJJEigLHCeW1tna8 -- 23:49:41.442 INFO [19007]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 23:49:41.457 INFO [19007]: COREGRADE is stopping... -- 23:49:41.457 DEBUG [19007]: Closing database connection -- 23:49:41.457 SQL [19007]: pgsql_close() -- 23:49:41.577 INFO [19007]: COREGRADE is starting... -- 23:49:41.577 INFO [19007]: Version from config: 1.0 -- 23:49:41.577 DEBUG [19007]: Connecting to database... -- 23:49:41.577 DEBUG [19007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:49:41.577 SQL [19007]: pgsql_db_connect() -- 23:49:41.582 DEBUG [19007]: Database connection successful -- 23:49:41.582 INFO [19007]: _SERVER found -- 23:49:41.582 INFO [19007]: REMOTE_ADDR = 10.0.0.15 -- 23:49:41.582 INFO [19007]: SERVER_NAME = oameye.works.coregrade.com -- 23:49:41.582 INFO [19007]: QUERY_STRING = /.well-known/acme-challenge/Z-tniD7l79AjLW9Kqm69_Inj_3oZJJEigLHCeW1tna8 -- 23:49:41.582 INFO [19007]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 23:49:41.593 INFO [19007]: COREGRADE is stopping... -- 23:49:41.593 DEBUG [19007]: Closing database connection -- 23:49:41.593 SQL [19007]: pgsql_close() -- 03:48:58.810 INFO [18667]: COREGRADE is starting... -- 03:48:58.810 INFO [18667]: Version from config: 1.0 -- 03:48:58.810 DEBUG [18667]: Connecting to database... -- 03:48:58.810 DEBUG [18667]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:58.810 SQL [18667]: pgsql_db_connect() -- 03:48:58.815 DEBUG [18667]: Database connection successful -- 03:48:58.815 INFO [18667]: _SERVER found -- 03:48:58.815 INFO [18667]: REMOTE_ADDR = 10.0.0.15 -- 03:48:58.815 INFO [18667]: SERVER_NAME = oameye.works.coregrade.com -- 03:48:58.815 INFO [18667]: QUERY_STRING = /console -- 03:48:58.815 INFO [18667]: HTTP_X_FORWARDED_FOR = 78.128.99.37 -- 03:48:58.829 INFO [18667]: COREGRADE is stopping... -- 03:48:58.829 DEBUG [18667]: Closing database connection -- 03:48:58.829 SQL [18667]: pgsql_close() -- 03:49:06.305 INFO [18667]: COREGRADE is starting... -- 03:49:06.305 INFO [18667]: Version from config: 1.0 -- 03:49:06.305 DEBUG [18667]: Connecting to database... -- 03:49:06.305 DEBUG [18667]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:49:06.305 SQL [18667]: pgsql_db_connect() -- 03:49:06.310 DEBUG [18667]: Database connection successful -- 03:49:06.310 INFO [18667]: _SERVER found -- 03:49:06.310 INFO [18667]: REMOTE_ADDR = 10.0.0.15 -- 03:49:06.310 INFO [18667]: SERVER_NAME = oameye.works.coregrade.com -- 03:49:06.310 INFO [18667]: QUERY_STRING = -- 03:49:06.310 INFO [18667]: HTTP_X_FORWARDED_FOR = 78.128.99.37 -- 03:49:06.404 INFO [18667]: COREGRADE is stopping... -- 03:49:06.404 DEBUG [18667]: Closing database connection -- 03:49:06.404 SQL [18667]: pgsql_close() -- 03:49:09.815 INFO [18668]: COREGRADE is starting... -- 03:49:09.816 INFO [18668]: Version from config: 1.0 -- 03:49:09.816 DEBUG [18668]: Connecting to database... -- 03:49:09.816 DEBUG [18668]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:49:09.816 SQL [18668]: pgsql_db_connect() -- 03:49:09.820 DEBUG [18668]: Database connection successful -- 03:49:09.820 INFO [18668]: _SERVER found -- 03:49:09.820 INFO [18668]: REMOTE_ADDR = 10.0.0.15 -- 03:49:09.820 INFO [18668]: SERVER_NAME = oameye.works.coregrade.com -- 03:49:09.820 INFO [18668]: QUERY_STRING = /horde/imp/test.php -- 03:49:09.820 INFO [18668]: HTTP_X_FORWARDED_FOR = 78.128.99.37 -- 03:49:09.833 INFO [18668]: COREGRADE is stopping... -- 03:49:09.833 DEBUG [18668]: Closing database connection -- 03:49:09.833 SQL [18668]: pgsql_close() -- 03:49:13.374 INFO [18669]: COREGRADE is starting... -- 03:49:13.374 INFO [18669]: Version from config: 1.0 -- 03:49:13.374 DEBUG [18669]: Connecting to database... -- 03:49:13.374 DEBUG [18669]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:49:13.374 SQL [18669]: pgsql_db_connect() -- 03:49:13.378 DEBUG [18669]: Database connection successful -- 03:49:13.378 INFO [18669]: _SERVER found -- 03:49:13.378 INFO [18669]: REMOTE_ADDR = 10.0.0.15 -- 03:49:13.378 INFO [18669]: SERVER_NAME = oameye.works.coregrade.com -- 03:49:13.378 INFO [18669]: QUERY_STRING = /login.action -- 03:49:13.378 INFO [18669]: HTTP_X_FORWARDED_FOR = 78.128.99.37 -- 03:49:13.391 INFO [18669]: COREGRADE is stopping... -- 03:49:13.391 DEBUG [18669]: Closing database connection -- 03:49:13.392 SQL [18669]: pgsql_close() -- 03:49:16.563 INFO [18670]: COREGRADE is starting... -- 03:49:16.563 INFO [18670]: Version from config: 1.0 -- 03:49:16.563 DEBUG [18670]: Connecting to database... -- 03:49:16.563 DEBUG [18670]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:49:16.563 SQL [18670]: pgsql_db_connect() -- 03:49:16.567 DEBUG [18670]: Database connection successful -- 03:49:16.567 INFO [18670]: _SERVER found -- 03:49:16.567 INFO [18670]: REMOTE_ADDR = 10.0.0.15 -- 03:49:16.567 INFO [18670]: SERVER_NAME = oameye.works.coregrade.com -- 03:49:16.567 INFO [18670]: QUERY_STRING = /login -- 03:49:16.567 INFO [18670]: HTTP_X_FORWARDED_FOR = 78.128.99.37 -- 03:49:16.580 INFO [18670]: COREGRADE is stopping... -- 03:49:16.580 DEBUG [18670]: Closing database connection -- 03:49:16.580 SQL [18670]: pgsql_close() -- 03:49:20.777 INFO [18670]: COREGRADE is starting... -- 03:49:20.777 INFO [18670]: Version from config: 1.0 -- 03:49:20.777 DEBUG [18670]: Connecting to database... -- 03:49:20.777 DEBUG [18670]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:49:20.777 SQL [18670]: pgsql_db_connect() -- 03:49:20.782 DEBUG [18670]: Database connection successful -- 03:49:20.782 INFO [18670]: _SERVER found -- 03:49:20.782 INFO [18670]: REMOTE_ADDR = 10.0.0.15 -- 03:49:20.782 INFO [18670]: SERVER_NAME = oameye.works.coregrade.com -- 03:49:20.782 INFO [18670]: QUERY_STRING = /phpMyAdmin/scripts/setup.php -- 03:49:20.782 INFO [18670]: HTTP_X_FORWARDED_FOR = 78.128.99.37 -- 03:49:20.793 INFO [18670]: COREGRADE is stopping... -- 03:49:20.793 DEBUG [18670]: Closing database connection -- 03:49:20.793 SQL [18670]: pgsql_close() -- 03:49:25.032 INFO [18670]: COREGRADE is starting... -- 03:49:25.033 INFO [18670]: Version from config: 1.0 -- 03:49:25.033 DEBUG [18670]: Connecting to database... -- 03:49:25.033 DEBUG [18670]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:49:25.033 SQL [18670]: pgsql_db_connect() -- 03:49:25.037 DEBUG [18670]: Database connection successful -- 03:49:25.037 INFO [18670]: _SERVER found -- 03:49:25.037 INFO [18670]: REMOTE_ADDR = 10.0.0.15 -- 03:49:25.037 INFO [18670]: SERVER_NAME = oameye.works.coregrade.com -- 03:49:25.037 INFO [18670]: QUERY_STRING = /phpmyadmin/scripts/setup.php -- 03:49:25.037 INFO [18670]: HTTP_X_FORWARDED_FOR = 78.128.99.37 -- 03:49:25.048 INFO [18670]: COREGRADE is stopping... -- 03:49:25.048 DEBUG [18670]: Closing database connection -- 03:49:25.048 SQL [18670]: pgsql_close() -- 03:49:29.440 INFO [18670]: COREGRADE is starting... -- 03:49:29.440 INFO [18670]: Version from config: 1.0 -- 03:49:29.440 DEBUG [18670]: Connecting to database... -- 03:49:29.440 DEBUG [18670]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:49:29.440 SQL [18670]: pgsql_db_connect() -- 03:49:29.444 DEBUG [18670]: Database connection successful -- 03:49:29.444 INFO [18670]: _SERVER found -- 03:49:29.444 INFO [18670]: REMOTE_ADDR = 10.0.0.15 -- 03:49:29.444 INFO [18670]: SERVER_NAME = oameye.works.coregrade.com -- 03:49:29.444 INFO [18670]: QUERY_STRING = /login/do_login -- 03:49:29.444 INFO [18670]: HTTP_X_FORWARDED_FOR = 78.128.99.37 -- 03:49:29.455 INFO [18670]: COREGRADE is stopping... -- 03:49:29.455 DEBUG [18670]: Closing database connection -- 03:49:29.455 SQL [18670]: pgsql_close() -- 08:36:13.927 INFO [19005]: COREGRADE is starting... -- 08:36:13.927 INFO [19005]: Version from config: 1.0 -- 08:36:13.927 DEBUG [19005]: Connecting to database... -- 08:36:13.927 DEBUG [19005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:36:13.927 SQL [19005]: pgsql_db_connect() -- 08:36:13.932 DEBUG [19005]: Database connection successful -- 08:36:13.932 INFO [19005]: _SERVER found -- 08:36:13.932 INFO [19005]: REMOTE_ADDR = 10.0.0.15 -- 08:36:13.932 INFO [19005]: SERVER_NAME = oameye.works.coregrade.com -- 08:36:13.932 INFO [19005]: QUERY_STRING = /robots.txt -- 08:36:13.932 INFO [19005]: HTTP_X_FORWARDED_FOR = 66.249.73.212 -- 08:36:13.947 INFO [19005]: COREGRADE is stopping... -- 08:36:13.948 DEBUG [19005]: Closing database connection -- 08:36:13.948 SQL [19005]: pgsql_close() -- 08:36:14.041 INFO [19005]: COREGRADE is starting... -- 08:36:14.041 INFO [19005]: Version from config: 1.0 -- 08:36:14.041 DEBUG [19005]: Connecting to database... -- 08:36:14.041 DEBUG [19005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:36:14.041 SQL [19005]: pgsql_db_connect() -- 08:36:14.045 DEBUG [19005]: Database connection successful -- 08:36:14.045 INFO [19005]: _SERVER found -- 08:36:14.045 INFO [19005]: REMOTE_ADDR = 10.0.0.15 -- 08:36:14.045 INFO [19005]: SERVER_NAME = oameye.works.coregrade.com -- 08:36:14.045 INFO [19005]: QUERY_STRING = -- 08:36:14.045 INFO [19005]: HTTP_X_FORWARDED_FOR = 66.249.73.214 -- 08:36:14.079 INFO [19005]: COREGRADE is stopping... -- 08:36:14.079 DEBUG [19005]: Closing database connection -- 08:36:14.079 SQL [19005]: pgsql_close() -- 10:59:07.583 INFO [24698]: COREGRADE is starting... -- 10:59:07.583 INFO [24698]: Version from config: 1.0 -- 10:59:07.583 DEBUG [24698]: Connecting to database... -- 10:59:07.583 DEBUG [24698]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:59:07.583 SQL [24698]: pgsql_db_connect() -- 10:59:07.588 DEBUG [24698]: Database connection successful -- 10:59:07.588 INFO [24698]: _SERVER found -- 10:59:07.588 INFO [24698]: REMOTE_ADDR = 10.0.0.15 -- 10:59:07.588 INFO [24698]: SERVER_NAME = oameye.works.coregrade.com -- 10:59:07.588 INFO [24698]: QUERY_STRING = /console -- 10:59:07.588 INFO [24698]: HTTP_X_FORWARDED_FOR = 61.0.172.181 -- 10:59:07.603 INFO [24698]: COREGRADE is stopping... -- 10:59:07.603 DEBUG [24698]: Closing database connection -- 10:59:07.603 SQL [24698]: pgsql_close() -- 10:59:17.085 INFO [24699]: COREGRADE is starting... -- 10:59:17.086 INFO [24699]: Version from config: 1.0 -- 10:59:17.086 DEBUG [24699]: Connecting to database... -- 10:59:17.086 DEBUG [24699]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:59:17.086 SQL [24699]: pgsql_db_connect() -- 10:59:17.090 DEBUG [24699]: Database connection successful -- 10:59:17.090 INFO [24699]: _SERVER found -- 10:59:17.090 INFO [24699]: REMOTE_ADDR = 10.0.0.15 -- 10:59:17.090 INFO [24699]: SERVER_NAME = oameye.works.coregrade.com -- 10:59:17.090 INFO [24699]: QUERY_STRING = -- 10:59:17.090 INFO [24699]: HTTP_X_FORWARDED_FOR = 61.0.172.181 -- 10:59:17.125 INFO [24699]: COREGRADE is stopping... -- 10:59:17.125 DEBUG [24699]: Closing database connection -- 10:59:17.125 SQL [24699]: pgsql_close() -- 10:59:22.090 INFO [18671]: COREGRADE is starting... -- 10:59:22.091 INFO [18671]: Version from config: 1.0 -- 10:59:22.091 DEBUG [18671]: Connecting to database... -- 10:59:22.091 DEBUG [18671]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:59:22.091 SQL [18671]: pgsql_db_connect() -- 10:59:22.095 DEBUG [18671]: Database connection successful -- 10:59:22.095 INFO [18671]: _SERVER found -- 10:59:22.095 INFO [18671]: REMOTE_ADDR = 10.0.0.15 -- 10:59:22.095 INFO [18671]: SERVER_NAME = oameye.works.coregrade.com -- 10:59:22.095 INFO [18671]: QUERY_STRING = /horde/imp/test.php -- 10:59:22.095 INFO [18671]: HTTP_X_FORWARDED_FOR = 61.0.172.181 -- 10:59:22.108 INFO [18671]: COREGRADE is stopping... -- 10:59:22.108 DEBUG [18671]: Closing database connection -- 10:59:22.108 SQL [18671]: pgsql_close() -- 10:59:26.919 INFO [18671]: COREGRADE is starting... -- 10:59:26.919 INFO [18671]: Version from config: 1.0 -- 10:59:26.919 DEBUG [18671]: Connecting to database... -- 10:59:26.919 DEBUG [18671]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:59:26.919 SQL [18671]: pgsql_db_connect() -- 10:59:26.923 DEBUG [18671]: Database connection successful -- 10:59:26.923 INFO [18671]: _SERVER found -- 10:59:26.923 INFO [18671]: REMOTE_ADDR = 10.0.0.15 -- 10:59:26.923 INFO [18671]: SERVER_NAME = oameye.works.coregrade.com -- 10:59:26.923 INFO [18671]: QUERY_STRING = /login.action -- 10:59:26.923 INFO [18671]: HTTP_X_FORWARDED_FOR = 61.0.172.181 -- 10:59:26.934 INFO [18671]: COREGRADE is stopping... -- 10:59:26.934 DEBUG [18671]: Closing database connection -- 10:59:26.934 SQL [18671]: pgsql_close() -- 10:59:31.628 INFO [18671]: COREGRADE is starting... -- 10:59:31.629 INFO [18671]: Version from config: 1.0 -- 10:59:31.629 DEBUG [18671]: Connecting to database... -- 10:59:31.629 DEBUG [18671]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:59:31.629 SQL [18671]: pgsql_db_connect() -- 10:59:31.633 DEBUG [18671]: Database connection successful -- 10:59:31.633 INFO [18671]: _SERVER found -- 10:59:31.633 INFO [18671]: REMOTE_ADDR = 10.0.0.15 -- 10:59:31.633 INFO [18671]: SERVER_NAME = oameye.works.coregrade.com -- 10:59:31.633 INFO [18671]: QUERY_STRING = /login -- 10:59:31.633 INFO [18671]: HTTP_X_FORWARDED_FOR = 61.0.172.181 -- 10:59:31.645 INFO [18671]: COREGRADE is stopping... -- 10:59:31.645 DEBUG [18671]: Closing database connection -- 10:59:31.645 SQL [18671]: pgsql_close() -- 10:59:36.380 INFO [19007]: COREGRADE is starting... -- 10:59:36.380 INFO [19007]: Version from config: 1.0 -- 10:59:36.380 DEBUG [19007]: Connecting to database... -- 10:59:36.381 DEBUG [19007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:59:36.381 SQL [19007]: pgsql_db_connect() -- 10:59:36.385 DEBUG [19007]: Database connection successful -- 10:59:36.385 INFO [19007]: _SERVER found -- 10:59:36.385 INFO [19007]: REMOTE_ADDR = 10.0.0.15 -- 10:59:36.385 INFO [19007]: SERVER_NAME = oameye.works.coregrade.com -- 10:59:36.385 INFO [19007]: QUERY_STRING = /phpMyAdmin/scripts/setup.php -- 10:59:36.385 INFO [19007]: HTTP_X_FORWARDED_FOR = 61.0.172.181 -- 10:59:36.397 INFO [19007]: COREGRADE is stopping... -- 10:59:36.397 DEBUG [19007]: Closing database connection -- 10:59:36.397 SQL [19007]: pgsql_close() -- 10:59:41.265 INFO [18817]: COREGRADE is starting... -- 10:59:41.265 INFO [18817]: Version from config: 1.0 -- 10:59:41.265 DEBUG [18817]: Connecting to database... -- 10:59:41.265 DEBUG [18817]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:59:41.265 SQL [18817]: pgsql_db_connect() -- 10:59:41.269 DEBUG [18817]: Database connection successful -- 10:59:41.269 INFO [18817]: _SERVER found -- 10:59:41.269 INFO [18817]: REMOTE_ADDR = 10.0.0.15 -- 10:59:41.269 INFO [18817]: SERVER_NAME = oameye.works.coregrade.com -- 10:59:41.269 INFO [18817]: QUERY_STRING = /phpmyadmin/scripts/setup.php -- 10:59:41.269 INFO [18817]: HTTP_X_FORWARDED_FOR = 61.0.172.181 -- 10:59:41.282 INFO [18817]: COREGRADE is stopping... -- 10:59:41.282 DEBUG [18817]: Closing database connection -- 10:59:41.282 SQL [18817]: pgsql_close() -- 10:59:46.307 INFO [18667]: COREGRADE is starting... -- 10:59:46.307 INFO [18667]: Version from config: 1.0 -- 10:59:46.307 DEBUG [18667]: Connecting to database... -- 10:59:46.307 DEBUG [18667]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:59:46.307 SQL [18667]: pgsql_db_connect() -- 10:59:46.311 DEBUG [18667]: Database connection successful -- 10:59:46.311 INFO [18667]: _SERVER found -- 10:59:46.311 INFO [18667]: REMOTE_ADDR = 10.0.0.15 -- 10:59:46.311 INFO [18667]: SERVER_NAME = oameye.works.coregrade.com -- 10:59:46.311 INFO [18667]: QUERY_STRING = /login/do_login -- 10:59:46.311 INFO [18667]: HTTP_X_FORWARDED_FOR = 61.0.172.181 -- 10:59:46.324 INFO [18667]: COREGRADE is stopping... -- 10:59:46.324 DEBUG [18667]: Closing database connection -- 10:59:46.324 SQL [18667]: pgsql_close() -- 23:41:00.950 INFO [18668]: COREGRADE is starting... -- 23:41:00.951 INFO [18668]: Version from config: 1.0 -- 23:41:00.951 DEBUG [18668]: Connecting to database... -- 23:41:00.951 DEBUG [18668]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:41:00.951 SQL [18668]: pgsql_db_connect() -- 23:41:00.956 DEBUG [18668]: Database connection successful -- 23:41:00.956 INFO [18668]: _SERVER found -- 23:41:00.956 INFO [18668]: REMOTE_ADDR = 10.0.0.15 -- 23:41:00.956 INFO [18668]: SERVER_NAME = oameye.works.coregrade.com -- 23:41:00.956 INFO [18668]: QUERY_STRING = /.well-known/acme-challenge/mEJ7DaH-OyX7QF69uSfJ-6RP3rrlHVxjfRKWOee9Q3U -- 23:41:00.956 INFO [18668]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 23:41:00.972 INFO [18668]: COREGRADE is stopping... -- 23:41:00.972 DEBUG [18668]: Closing database connection -- 23:41:00.972 SQL [18668]: pgsql_close() -- 23:41:01.084 INFO [18670]: COREGRADE is starting... -- 23:41:01.085 INFO [18670]: Version from config: 1.0 -- 23:41:01.085 DEBUG [18670]: Connecting to database... -- 23:41:01.085 DEBUG [18670]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:41:01.085 SQL [18670]: pgsql_db_connect() -- 23:41:01.089 DEBUG [18670]: Database connection successful -- 23:41:01.089 INFO [18670]: _SERVER found -- 23:41:01.089 INFO [18670]: REMOTE_ADDR = 10.0.0.15 -- 23:41:01.089 INFO [18670]: SERVER_NAME = oameye.works.coregrade.com -- 23:41:01.089 INFO [18670]: QUERY_STRING = /.well-known/acme-challenge/mEJ7DaH-OyX7QF69uSfJ-6RP3rrlHVxjfRKWOee9Q3U -- 23:41:01.089 INFO [18670]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 23:41:01.103 INFO [18670]: COREGRADE is stopping... -- 23:41:01.103 DEBUG [18670]: Closing database connection -- 23:41:01.103 SQL [18670]: pgsql_close() -- 01:36:53.171 INFO [24698]: COREGRADE is starting... -- 01:36:53.172 INFO [24698]: Version from config: 1.0 -- 01:36:53.172 DEBUG [24698]: Connecting to database... -- 01:36:53.172 DEBUG [24698]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:36:53.172 SQL [24698]: pgsql_db_connect() -- 01:36:53.177 DEBUG [24698]: Database connection successful -- 01:36:53.177 INFO [24698]: _SERVER found -- 01:36:53.177 INFO [24698]: REMOTE_ADDR = 10.0.0.15 -- 01:36:53.177 INFO [24698]: SERVER_NAME = oameye.works.coregrade.com -- 01:36:53.177 INFO [24698]: QUERY_STRING = /robots.txt -- 01:36:53.177 INFO [24698]: HTTP_X_FORWARDED_FOR = 66.249.70.88 -- 01:36:53.193 INFO [24698]: COREGRADE is stopping... -- 01:36:53.193 DEBUG [24698]: Closing database connection -- 01:36:53.193 SQL [24698]: pgsql_close() -- 01:36:53.286 INFO [24698]: COREGRADE is starting... -- 01:36:53.287 INFO [24698]: Version from config: 1.0 -- 01:36:53.287 DEBUG [24698]: Connecting to database... -- 01:36:53.287 DEBUG [24698]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:36:53.287 SQL [24698]: pgsql_db_connect() -- 01:36:53.291 DEBUG [24698]: Database connection successful -- 01:36:53.291 INFO [24698]: _SERVER found -- 01:36:53.291 INFO [24698]: REMOTE_ADDR = 10.0.0.15 -- 01:36:53.291 INFO [24698]: SERVER_NAME = oameye.works.coregrade.com -- 01:36:53.291 INFO [24698]: QUERY_STRING = -- 01:36:53.291 INFO [24698]: HTTP_X_FORWARDED_FOR = 66.249.70.84 -- 01:36:53.327 INFO [24698]: COREGRADE is stopping... -- 01:36:53.327 DEBUG [24698]: Closing database connection -- 01:36:53.327 SQL [24698]: pgsql_close() -- 08:59:08.376 INFO [24699]: COREGRADE is starting... -- 08:59:08.377 INFO [24699]: Version from config: 1.0 -- 08:59:08.377 DEBUG [24699]: Connecting to database... -- 08:59:08.377 DEBUG [24699]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:59:08.377 SQL [24699]: pgsql_db_connect() -- 08:59:08.382 DEBUG [24699]: Database connection successful -- 08:59:08.382 INFO [24699]: _SERVER found -- 08:59:08.382 INFO [24699]: REMOTE_ADDR = 10.0.0.15 -- 08:59:08.382 INFO [24699]: SERVER_NAME = oameye.works.coregrade.com -- 08:59:08.382 INFO [24699]: QUERY_STRING = /TP/public/index.php -- 08:59:08.382 INFO [24699]: HTTP_X_FORWARDED_FOR = 216.250.125.239 -- 08:59:08.397 INFO [24699]: COREGRADE is stopping... -- 08:59:08.397 DEBUG [24699]: Closing database connection -- 08:59:08.397 SQL [24699]: pgsql_close() -- 08:59:14.215 INFO [18671]: COREGRADE is starting... -- 08:59:14.215 INFO [18671]: Version from config: 1.0 -- 08:59:14.215 DEBUG [18671]: Connecting to database... -- 08:59:14.215 DEBUG [18671]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:59:14.215 SQL [18671]: pgsql_db_connect() -- 08:59:14.219 DEBUG [18671]: Database connection successful -- 08:59:14.219 INFO [18671]: _SERVER found -- 08:59:14.219 INFO [18671]: REMOTE_ADDR = 10.0.0.15 -- 08:59:14.219 INFO [18671]: SERVER_NAME = oameye.works.coregrade.com -- 08:59:14.219 INFO [18671]: QUERY_STRING = /TP/index.php -- 08:59:14.219 INFO [18671]: HTTP_X_FORWARDED_FOR = 216.250.125.239 -- 08:59:14.234 INFO [18671]: COREGRADE is stopping... -- 08:59:14.234 DEBUG [18671]: Closing database connection -- 08:59:14.234 SQL [18671]: pgsql_close() -- 08:59:17.687 INFO [19007]: COREGRADE is starting... -- 08:59:17.688 INFO [19007]: Version from config: 1.0 -- 08:59:17.688 DEBUG [19007]: Connecting to database... -- 08:59:17.688 DEBUG [19007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:59:17.688 SQL [19007]: pgsql_db_connect() -- 08:59:17.692 DEBUG [19007]: Database connection successful -- 08:59:17.692 INFO [19007]: _SERVER found -- 08:59:17.692 INFO [19007]: REMOTE_ADDR = 10.0.0.15 -- 08:59:17.692 INFO [19007]: SERVER_NAME = oameye.works.coregrade.com -- 08:59:17.692 INFO [19007]: QUERY_STRING = /thinkphp/html/public/index.php -- 08:59:17.692 INFO [19007]: HTTP_X_FORWARDED_FOR = 216.250.125.239 -- 08:59:17.705 INFO [19007]: COREGRADE is stopping... -- 08:59:17.705 DEBUG [19007]: Closing database connection -- 08:59:17.705 SQL [19007]: pgsql_close() -- 08:59:23.758 INFO [18817]: COREGRADE is starting... -- 08:59:23.759 INFO [18817]: Version from config: 1.0 -- 08:59:23.759 DEBUG [18817]: Connecting to database... -- 08:59:23.759 DEBUG [18817]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:59:23.759 SQL [18817]: pgsql_db_connect() -- 08:59:23.763 DEBUG [18817]: Database connection successful -- 08:59:23.763 INFO [18817]: _SERVER found -- 08:59:23.763 INFO [18817]: REMOTE_ADDR = 10.0.0.15 -- 08:59:23.763 INFO [18817]: SERVER_NAME = oameye.works.coregrade.com -- 08:59:23.763 INFO [18817]: QUERY_STRING = /html/public/index.php -- 08:59:23.763 INFO [18817]: HTTP_X_FORWARDED_FOR = 216.250.125.239 -- 08:59:23.775 INFO [18817]: COREGRADE is stopping... -- 08:59:23.776 DEBUG [18817]: Closing database connection -- 08:59:23.776 SQL [18817]: pgsql_close() -- 08:59:29.396 INFO [18667]: COREGRADE is starting... -- 08:59:29.397 INFO [18667]: Version from config: 1.0 -- 08:59:29.397 DEBUG [18667]: Connecting to database... -- 08:59:29.397 DEBUG [18667]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:59:29.397 SQL [18667]: pgsql_db_connect() -- 08:59:29.401 DEBUG [18667]: Database connection successful -- 08:59:29.401 INFO [18667]: _SERVER found -- 08:59:29.401 INFO [18667]: REMOTE_ADDR = 10.0.0.15 -- 08:59:29.401 INFO [18667]: SERVER_NAME = oameye.works.coregrade.com -- 08:59:29.401 INFO [18667]: QUERY_STRING = /public/index.php -- 08:59:29.401 INFO [18667]: HTTP_X_FORWARDED_FOR = 216.250.125.239 -- 08:59:29.416 INFO [18667]: COREGRADE is stopping... -- 08:59:29.416 DEBUG [18667]: Closing database connection -- 08:59:29.416 SQL [18667]: pgsql_close() -- 08:59:32.357 INFO [18667]: COREGRADE is starting... -- 08:59:32.357 INFO [18667]: Version from config: 1.0 -- 08:59:32.357 DEBUG [18667]: Connecting to database... -- 08:59:32.357 DEBUG [18667]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:59:32.357 SQL [18667]: pgsql_db_connect() -- 08:59:32.362 DEBUG [18667]: Database connection successful -- 08:59:32.362 INFO [18667]: _SERVER found -- 08:59:32.362 INFO [18667]: REMOTE_ADDR = 10.0.0.15 -- 08:59:32.362 INFO [18667]: SERVER_NAME = oameye.works.coregrade.com -- 08:59:32.362 INFO [18667]: QUERY_STRING = /TP/html/public/index.php -- 08:59:32.362 INFO [18667]: HTTP_X_FORWARDED_FOR = 216.250.125.239 -- 08:59:32.373 INFO [18667]: COREGRADE is stopping... -- 08:59:32.373 DEBUG [18667]: Closing database connection -- 08:59:32.373 SQL [18667]: pgsql_close() -- 08:59:37.584 INFO [18668]: COREGRADE is starting... -- 08:59:37.584 INFO [18668]: Version from config: 1.0 -- 08:59:37.584 DEBUG [18668]: Connecting to database... -- 08:59:37.584 DEBUG [18668]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:59:37.584 SQL [18668]: pgsql_db_connect() -- 08:59:37.588 DEBUG [18668]: Database connection successful -- 08:59:37.588 INFO [18668]: _SERVER found -- 08:59:37.588 INFO [18668]: REMOTE_ADDR = 10.0.0.15 -- 08:59:37.588 INFO [18668]: SERVER_NAME = oameye.works.coregrade.com -- 08:59:37.588 INFO [18668]: QUERY_STRING = /elrekt.php -- 08:59:37.588 INFO [18668]: HTTP_X_FORWARDED_FOR = 216.250.125.239 -- 08:59:37.602 INFO [18668]: COREGRADE is stopping... -- 08:59:37.602 DEBUG [18668]: Closing database connection -- 08:59:37.602 SQL [18668]: pgsql_close() -- 08:59:40.705 INFO [18669]: COREGRADE is starting... -- 08:59:40.706 INFO [18669]: Version from config: 1.0 -- 08:59:40.706 DEBUG [18669]: Connecting to database... -- 08:59:40.706 DEBUG [18669]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:59:40.706 SQL [18669]: pgsql_db_connect() -- 08:59:40.710 DEBUG [18669]: Database connection successful -- 08:59:40.710 INFO [18669]: _SERVER found -- 08:59:40.710 INFO [18669]: REMOTE_ADDR = 10.0.0.15 -- 08:59:40.710 INFO [18669]: SERVER_NAME = oameye.works.coregrade.com -- 08:59:40.710 INFO [18669]: QUERY_STRING = -- 08:59:40.710 INFO [18669]: HTTP_X_FORWARDED_FOR = 216.250.125.239 -- 08:59:40.748 INFO [18669]: COREGRADE is stopping... -- 08:59:40.748 DEBUG [18669]: Closing database connection -- 08:59:40.748 SQL [18669]: pgsql_close() -- 08:59:46.486 INFO [18670]: COREGRADE is starting... -- 08:59:46.487 INFO [18670]: Version from config: 1.0 -- 08:59:46.487 DEBUG [18670]: Connecting to database... -- 08:59:46.487 DEBUG [18670]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:59:46.487 SQL [18670]: pgsql_db_connect() -- 08:59:46.491 DEBUG [18670]: Database connection successful -- 08:59:46.491 INFO [18670]: _SERVER found -- 08:59:46.491 INFO [18670]: REMOTE_ADDR = 10.0.0.15 -- 08:59:46.491 INFO [18670]: SERVER_NAME = oameye.works.coregrade.com -- 08:59:46.491 INFO [18670]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 08:59:46.491 INFO [18670]: HTTP_X_FORWARDED_FOR = 216.250.125.239 -- 08:59:46.524 INFO [18670]: COREGRADE is stopping... -- 08:59:46.524 DEBUG [18670]: Closing database connection -- 08:59:46.524 SQL [18670]: pgsql_close() -- 08:59:51.684 INFO [19005]: COREGRADE is starting... -- 08:59:51.685 INFO [19005]: Version from config: 1.0 -- 08:59:51.685 DEBUG [19005]: Connecting to database... -- 08:59:51.685 DEBUG [19005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:59:51.685 SQL [19005]: pgsql_db_connect() -- 08:59:51.689 DEBUG [19005]: Database connection successful -- 08:59:51.689 INFO [19005]: _SERVER found -- 08:59:51.689 INFO [19005]: REMOTE_ADDR = 10.0.0.15 -- 08:59:51.689 INFO [19005]: SERVER_NAME = oameye.works.coregrade.com -- 08:59:51.689 INFO [19005]: QUERY_STRING = s=captcha -- 08:59:51.689 INFO [19005]: HTTP_X_FORWARDED_FOR = 216.250.125.239 -- 08:59:51.723 INFO [19005]: COREGRADE is stopping... -- 08:59:51.723 DEBUG [19005]: Closing database connection -- 08:59:51.723 SQL [19005]: pgsql_close() -- 08:59:55.940 INFO [19005]: COREGRADE is starting... -- 08:59:55.940 INFO [19005]: Version from config: 1.0 -- 08:59:55.940 DEBUG [19005]: Connecting to database... -- 08:59:55.940 DEBUG [19005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:59:55.940 SQL [19005]: pgsql_db_connect() -- 08:59:55.944 DEBUG [19005]: Database connection successful -- 08:59:55.944 INFO [19005]: _SERVER found -- 08:59:55.944 INFO [19005]: REMOTE_ADDR = 10.0.0.15 -- 08:59:55.944 INFO [19005]: SERVER_NAME = oameye.works.coregrade.com -- 08:59:55.944 INFO [19005]: QUERY_STRING = -- 08:59:55.944 INFO [19005]: HTTP_X_FORWARDED_FOR = 216.250.125.239 -- 08:59:55.976 INFO [19005]: COREGRADE is stopping... -- 08:59:55.976 DEBUG [19005]: Closing database connection -- 08:59:55.976 SQL [19005]: pgsql_close() -- 11:42:08.486 INFO [24698]: COREGRADE is starting... -- 11:42:08.486 INFO [24698]: Version from config: 1.0 -- 11:42:08.486 DEBUG [24698]: Connecting to database... -- 11:42:08.486 DEBUG [24698]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:42:08.486 SQL [24698]: pgsql_db_connect() -- 11:42:08.490 DEBUG [24698]: Database connection successful -- 11:42:08.490 INFO [24698]: _SERVER found -- 11:42:08.490 INFO [24698]: REMOTE_ADDR = 10.0.0.15 -- 11:42:08.490 INFO [24698]: SERVER_NAME = oameye.works.coregrade.com -- 11:42:08.490 INFO [24698]: QUERY_STRING = /solr/admin/info/system -- 11:42:08.490 INFO [24698]: HTTP_X_FORWARDED_FOR = 195.54.160.121 -- 11:42:08.506 INFO [24698]: COREGRADE is stopping... -- 11:42:08.506 DEBUG [24698]: Closing database connection -- 11:42:08.506 SQL [24698]: pgsql_close() -- 11:57:22.882 INFO [24699]: COREGRADE is starting... -- 11:57:22.882 INFO [24699]: Version from config: 1.0 -- 11:57:22.882 DEBUG [24699]: Connecting to database... -- 11:57:22.882 DEBUG [24699]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:57:22.882 SQL [24699]: pgsql_db_connect() -- 11:57:22.886 DEBUG [24699]: Database connection successful -- 11:57:22.886 INFO [24699]: _SERVER found -- 11:57:22.886 INFO [24699]: REMOTE_ADDR = 10.0.0.15 -- 11:57:22.886 INFO [24699]: SERVER_NAME = oameye.works.coregrade.com -- 11:57:22.886 INFO [24699]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 11:57:22.886 INFO [24699]: HTTP_X_FORWARDED_FOR = 195.54.160.121 -- 11:57:22.923 INFO [24699]: COREGRADE is stopping... -- 11:57:22.923 DEBUG [24699]: Closing database connection -- 11:57:22.923 SQL [24699]: pgsql_close() -- 11:57:22.949 INFO [18671]: COREGRADE is starting... -- 11:57:22.949 INFO [18671]: Version from config: 1.0 -- 11:57:22.949 DEBUG [18671]: Connecting to database... -- 11:57:22.949 DEBUG [18671]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:57:22.949 SQL [18671]: pgsql_db_connect() -- 11:57:22.953 DEBUG [18671]: Database connection successful -- 11:57:22.953 INFO [18671]: _SERVER found -- 11:57:22.953 INFO [18671]: REMOTE_ADDR = 10.0.0.15 -- 11:57:22.953 INFO [18671]: SERVER_NAME = oameye.works.coregrade.com -- 11:57:22.953 INFO [18671]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 11:57:22.953 INFO [18671]: HTTP_X_FORWARDED_FOR = 195.54.160.121 -- 11:57:22.990 INFO [18671]: COREGRADE is stopping... -- 11:57:22.990 DEBUG [18671]: Closing database connection -- 11:57:22.990 SQL [18671]: pgsql_close() -- 12:15:34.860 INFO [19007]: COREGRADE is starting... -- 12:15:34.860 INFO [19007]: Version from config: 1.0 -- 12:15:34.860 DEBUG [19007]: Connecting to database... -- 12:15:34.860 DEBUG [19007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:15:34.860 SQL [19007]: pgsql_db_connect() -- 12:15:34.864 DEBUG [19007]: Database connection successful -- 12:15:34.864 INFO [19007]: _SERVER found -- 12:15:34.864 INFO [19007]: REMOTE_ADDR = 10.0.0.15 -- 12:15:34.864 INFO [19007]: SERVER_NAME = oameye.works.coregrade.com -- 12:15:34.864 INFO [19007]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 12:15:34.864 INFO [19007]: HTTP_X_FORWARDED_FOR = 195.54.160.121 -- 12:15:34.900 INFO [19007]: COREGRADE is stopping... -- 12:15:34.900 DEBUG [19007]: Closing database connection -- 12:15:34.900 SQL [19007]: pgsql_close() -- 14:31:47.393 INFO [18817]: COREGRADE is starting... -- 14:31:47.394 INFO [18817]: Version from config: 1.0 -- 14:31:47.394 DEBUG [18817]: Connecting to database... -- 14:31:47.394 DEBUG [18817]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:31:47.394 SQL [18817]: pgsql_db_connect() -- 14:31:47.398 DEBUG [18817]: Database connection successful -- 14:31:47.398 INFO [18817]: _SERVER found -- 14:31:47.398 INFO [18817]: REMOTE_ADDR = 10.0.0.15 -- 14:31:47.398 INFO [18817]: SERVER_NAME = oameye.works.coregrade.com -- 14:31:47.398 INFO [18817]: QUERY_STRING = -- 14:31:47.398 INFO [18817]: HTTP_X_FORWARDED_FOR = 206.189.187.99 -- 14:31:47.437 INFO [18817]: COREGRADE is stopping... -- 14:31:47.437 DEBUG [18817]: Closing database connection -- 14:31:47.437 SQL [18817]: pgsql_close() -- 16:13:56.231 INFO [18667]: COREGRADE is starting... -- 16:13:56.232 INFO [18667]: Version from config: 1.0 -- 16:13:56.232 DEBUG [18667]: Connecting to database... -- 16:13:56.232 DEBUG [18667]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:13:56.232 SQL [18667]: pgsql_db_connect() -- 16:13:56.236 DEBUG [18667]: Database connection successful -- 16:13:56.236 INFO [18667]: _SERVER found -- 16:13:56.236 INFO [18667]: REMOTE_ADDR = 10.0.0.15 -- 16:13:56.236 INFO [18667]: SERVER_NAME = oameye.works.coregrade.com -- 16:13:56.236 INFO [18667]: QUERY_STRING = /api/jsonws/invoke -- 16:13:56.236 INFO [18667]: HTTP_X_FORWARDED_FOR = 195.54.160.121 -- 16:13:56.252 INFO [18667]: COREGRADE is stopping... -- 16:13:56.252 DEBUG [18667]: Closing database connection -- 16:13:56.252 SQL [18667]: pgsql_close() -- 20:19:46.660 INFO [18668]: COREGRADE is starting... -- 20:19:46.660 INFO [18668]: Version from config: 1.0 -- 20:19:46.660 DEBUG [18668]: Connecting to database... -- 20:19:46.661 DEBUG [18668]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:19:46.661 SQL [18668]: pgsql_db_connect() -- 20:19:46.666 DEBUG [18668]: Database connection successful -- 20:19:46.666 INFO [18668]: _SERVER found -- 20:19:46.666 INFO [18668]: REMOTE_ADDR = 10.0.0.15 -- 20:19:46.666 INFO [18668]: SERVER_NAME = oameye.works.coregrade.com -- 20:19:46.666 INFO [18668]: QUERY_STRING = /robots.txt -- 20:19:46.666 INFO [18668]: HTTP_X_FORWARDED_FOR = 66.249.70.88 -- 20:19:46.683 INFO [18668]: COREGRADE is stopping... -- 20:19:46.683 DEBUG [18668]: Closing database connection -- 20:19:46.683 SQL [18668]: pgsql_close() -- 20:19:46.778 INFO [18668]: COREGRADE is starting... -- 20:19:46.778 INFO [18668]: Version from config: 1.0 -- 20:19:46.778 DEBUG [18668]: Connecting to database... -- 20:19:46.778 DEBUG [18668]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:19:46.778 SQL [18668]: pgsql_db_connect() -- 20:19:46.783 DEBUG [18668]: Database connection successful -- 20:19:46.783 INFO [18668]: _SERVER found -- 20:19:46.783 INFO [18668]: REMOTE_ADDR = 10.0.0.15 -- 20:19:46.783 INFO [18668]: SERVER_NAME = oameye.works.coregrade.com -- 20:19:46.783 INFO [18668]: QUERY_STRING = -- 20:19:46.783 INFO [18668]: HTTP_X_FORWARDED_FOR = 66.249.70.86 -- 20:19:46.820 INFO [18668]: COREGRADE is stopping... -- 20:19:46.820 DEBUG [18668]: Closing database connection -- 20:19:46.820 SQL [18668]: pgsql_close() -- 20:41:44.075 INFO [18669]: COREGRADE is starting... -- 20:41:44.076 INFO [18669]: Version from config: 1.0 -- 20:41:44.076 DEBUG [18669]: Connecting to database... -- 20:41:44.076 DEBUG [18669]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:41:44.076 SQL [18669]: pgsql_db_connect() -- 20:41:44.080 DEBUG [18669]: Database connection successful -- 20:41:44.080 INFO [18669]: _SERVER found -- 20:41:44.080 INFO [18669]: REMOTE_ADDR = 10.0.0.15 -- 20:41:44.080 INFO [18669]: SERVER_NAME = oameye.works.coregrade.com -- 20:41:44.080 INFO [18669]: QUERY_STRING = /solr/admin/info/system -- 20:41:44.080 INFO [18669]: HTTP_X_FORWARDED_FOR = 195.54.160.121 -- 20:41:44.098 INFO [18669]: COREGRADE is stopping... -- 20:41:44.098 DEBUG [18669]: Closing database connection -- 20:41:44.098 SQL [18669]: pgsql_close() -- 20:48:05.303 INFO [18670]: COREGRADE is starting... -- 20:48:05.304 INFO [18670]: Version from config: 1.0 -- 20:48:05.304 DEBUG [18670]: Connecting to database... -- 20:48:05.304 DEBUG [18670]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:48:05.304 SQL [18670]: pgsql_db_connect() -- 20:48:05.308 DEBUG [18670]: Database connection successful -- 20:48:05.308 INFO [18670]: _SERVER found -- 20:48:05.308 INFO [18670]: REMOTE_ADDR = 10.0.0.15 -- 20:48:05.308 INFO [18670]: SERVER_NAME = oameye.works.coregrade.com -- 20:48:05.308 INFO [18670]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 20:48:05.308 INFO [18670]: HTTP_X_FORWARDED_FOR = 195.54.160.121 -- 20:48:05.346 INFO [18670]: COREGRADE is stopping... -- 20:48:05.346 DEBUG [18670]: Closing database connection -- 20:48:05.346 SQL [18670]: pgsql_close() -- 20:48:05.841 INFO [18670]: COREGRADE is starting... -- 20:48:05.841 INFO [18670]: Version from config: 1.0 -- 20:48:05.841 DEBUG [18670]: Connecting to database... -- 20:48:05.841 DEBUG [18670]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:48:05.841 SQL [18670]: pgsql_db_connect() -- 20:48:05.845 DEBUG [18670]: Database connection successful -- 20:48:05.845 INFO [18670]: _SERVER found -- 20:48:05.845 INFO [18670]: REMOTE_ADDR = 10.0.0.15 -- 20:48:05.845 INFO [18670]: SERVER_NAME = oameye.works.coregrade.com -- 20:48:05.845 INFO [18670]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 20:48:05.845 INFO [18670]: HTTP_X_FORWARDED_FOR = 195.54.160.121 -- 20:48:05.876 INFO [18670]: COREGRADE is stopping... -- 20:48:05.876 DEBUG [18670]: Closing database connection -- 20:48:05.876 SQL [18670]: pgsql_close() -- 20:59:50.198 INFO [19005]: COREGRADE is starting... -- 20:59:50.198 INFO [19005]: Version from config: 1.0 -- 20:59:50.198 DEBUG [19005]: Connecting to database... -- 20:59:50.198 DEBUG [19005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:59:50.198 SQL [19005]: pgsql_db_connect() -- 20:59:50.203 DEBUG [19005]: Database connection successful -- 20:59:50.203 INFO [19005]: _SERVER found -- 20:59:50.203 INFO [19005]: REMOTE_ADDR = 10.0.0.15 -- 20:59:50.203 INFO [19005]: SERVER_NAME = oameye.works.coregrade.com -- 20:59:50.203 INFO [19005]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 20:59:50.203 INFO [19005]: HTTP_X_FORWARDED_FOR = 195.54.160.121 -- 20:59:50.240 INFO [19005]: COREGRADE is stopping... -- 20:59:50.240 DEBUG [19005]: Closing database connection -- 20:59:50.240 SQL [19005]: pgsql_close() -- 23:08:45.249 INFO [24698]: COREGRADE is starting... -- 23:08:45.249 INFO [24698]: Version from config: 1.0 -- 23:08:45.249 DEBUG [24698]: Connecting to database... -- 23:08:45.249 DEBUG [24698]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:08:45.249 SQL [24698]: pgsql_db_connect() -- 23:08:45.254 DEBUG [24698]: Database connection successful -- 23:08:45.254 INFO [24698]: _SERVER found -- 23:08:45.254 INFO [24698]: REMOTE_ADDR = 10.0.0.15 -- 23:08:45.254 INFO [24698]: SERVER_NAME = oameye.works.coregrade.com -- 23:08:45.254 INFO [24698]: QUERY_STRING = /api/jsonws/invoke -- 23:08:45.254 INFO [24698]: HTTP_X_FORWARDED_FOR = 195.54.160.121 -- 23:08:45.270 INFO [24698]: COREGRADE is stopping... -- 23:08:45.270 DEBUG [24698]: Closing database connection -- 23:08:45.270 SQL [24698]: pgsql_close() -- 23:26:30.306 INFO [24699]: COREGRADE is starting... -- 23:26:30.306 INFO [24699]: Version from config: 1.0 -- 23:26:30.306 DEBUG [24699]: Connecting to database... -- 23:26:30.306 DEBUG [24699]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:26:30.306 SQL [24699]: pgsql_db_connect() -- 23:26:30.311 DEBUG [24699]: Database connection successful -- 23:26:30.311 INFO [24699]: _SERVER found -- 23:26:30.311 INFO [24699]: REMOTE_ADDR = 10.0.0.15 -- 23:26:30.311 INFO [24699]: SERVER_NAME = oameye.works.coregrade.com -- 23:26:30.311 INFO [24699]: QUERY_STRING = -- 23:26:30.311 INFO [24699]: HTTP_X_FORWARDED_FOR = 198.108.66.243 -- 23:26:30.350 INFO [24699]: COREGRADE is stopping... -- 23:26:30.350 DEBUG [24699]: Closing database connection -- 23:26:30.350 SQL [24699]: pgsql_close() -- 23:57:33.923 INFO [18671]: COREGRADE is starting... -- 23:57:33.924 INFO [18671]: Version from config: 1.0 -- 23:57:33.924 DEBUG [18671]: Connecting to database... -- 23:57:33.924 DEBUG [18671]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:57:33.924 SQL [18671]: pgsql_db_connect() -- 23:57:33.928 DEBUG [18671]: Database connection successful -- 23:57:33.928 INFO [18671]: _SERVER found -- 23:57:33.928 INFO [18671]: REMOTE_ADDR = 10.0.0.15 -- 23:57:33.928 INFO [18671]: SERVER_NAME = oameye.works.coregrade.com -- 23:57:33.928 INFO [18671]: QUERY_STRING = -- 23:57:33.928 INFO [18671]: HTTP_X_FORWARDED_FOR = 165.227.93.82 -- 23:57:33.968 INFO [18671]: COREGRADE is stopping... -- 23:57:33.968 DEBUG [18671]: Closing database connection -- 23:57:33.968 SQL [18671]: pgsql_close() -- 04:09:14.560 INFO [19007]: COREGRADE is starting... -- 04:09:14.560 INFO [19007]: Version from config: 1.0 -- 04:09:14.560 DEBUG [19007]: Connecting to database... -- 04:09:14.560 DEBUG [19007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:09:14.561 SQL [19007]: pgsql_db_connect() -- 04:09:14.566 DEBUG [19007]: Database connection successful -- 04:09:14.566 INFO [19007]: _SERVER found -- 04:09:14.566 INFO [19007]: REMOTE_ADDR = 10.0.0.15 -- 04:09:14.566 INFO [19007]: SERVER_NAME = oameye.works.coregrade.com -- 04:09:14.566 INFO [19007]: QUERY_STRING = /.well-known/acme-challenge/UL09sGjRhaACQDzV1boX-IPMb1gyC7ZSTl5HfTyjyg0 -- 04:09:14.566 INFO [19007]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 04:09:14.580 INFO [19007]: COREGRADE is stopping... -- 04:09:14.581 DEBUG [19007]: Closing database connection -- 04:09:14.581 SQL [19007]: pgsql_close() -- 04:09:14.944 INFO [18668]: COREGRADE is starting... -- 04:09:14.944 INFO [18668]: Version from config: 1.0 -- 04:09:14.944 DEBUG [18668]: Connecting to database... -- 04:09:14.944 DEBUG [18668]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:09:14.944 SQL [18668]: pgsql_db_connect() -- 04:09:14.949 DEBUG [18668]: Database connection successful -- 04:09:14.949 INFO [18668]: _SERVER found -- 04:09:14.949 INFO [18668]: REMOTE_ADDR = 10.0.0.15 -- 04:09:14.949 INFO [18668]: SERVER_NAME = oameye.works.coregrade.com -- 04:09:14.949 INFO [18668]: QUERY_STRING = /.well-known/acme-challenge/UL09sGjRhaACQDzV1boX-IPMb1gyC7ZSTl5HfTyjyg0 -- 04:09:14.949 INFO [18668]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 04:09:14.967 INFO [18668]: COREGRADE is stopping... -- 04:09:14.967 DEBUG [18668]: Closing database connection -- 04:09:14.967 SQL [18668]: pgsql_close() -- 04:09:14.971 INFO [18669]: COREGRADE is starting... -- 04:09:14.971 INFO [18669]: Version from config: 1.0 -- 04:09:14.971 DEBUG [18669]: Connecting to database... -- 04:09:14.971 DEBUG [18669]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:09:14.971 SQL [18669]: pgsql_db_connect() -- 04:09:14.975 DEBUG [18669]: Database connection successful -- 04:09:14.975 INFO [18669]: _SERVER found -- 04:09:14.975 INFO [18669]: REMOTE_ADDR = 10.0.0.15 -- 04:09:14.975 INFO [18669]: SERVER_NAME = oameye.works.coregrade.com -- 04:09:14.975 INFO [18669]: QUERY_STRING = /.well-known/acme-challenge/UL09sGjRhaACQDzV1boX-IPMb1gyC7ZSTl5HfTyjyg0 -- 04:09:14.975 INFO [18669]: HTTP_X_FORWARDED_FOR = 52.28.236.88 -- 04:09:14.992 INFO [18669]: COREGRADE is stopping... -- 04:09:14.992 DEBUG [18669]: Closing database connection -- 04:09:14.992 SQL [18669]: pgsql_close() -- 04:09:15.036 INFO [19007]: COREGRADE is starting... -- 04:09:15.036 INFO [19007]: Version from config: 1.0 -- 04:09:15.036 DEBUG [19007]: Connecting to database... -- 04:09:15.036 DEBUG [19007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:09:15.036 SQL [19007]: pgsql_db_connect() -- 04:09:15.040 DEBUG [19007]: Database connection successful -- 04:09:15.040 INFO [19007]: _SERVER found -- 04:09:15.040 INFO [19007]: REMOTE_ADDR = 10.0.0.15 -- 04:09:15.040 INFO [19007]: SERVER_NAME = oameye.works.coregrade.com -- 04:09:15.040 INFO [19007]: QUERY_STRING = /.well-known/acme-challenge/UL09sGjRhaACQDzV1boX-IPMb1gyC7ZSTl5HfTyjyg0 -- 04:09:15.040 INFO [19007]: HTTP_X_FORWARDED_FOR = 34.222.229.130 -- 04:09:15.052 INFO [19007]: COREGRADE is stopping... -- 04:09:15.052 DEBUG [19007]: Closing database connection -- 04:09:15.052 SQL [19007]: pgsql_close() -- 07:56:25.020 INFO [18670]: COREGRADE is starting... -- 07:56:25.020 INFO [18670]: Version from config: 1.0 -- 07:56:25.020 DEBUG [18670]: Connecting to database... -- 07:56:25.020 DEBUG [18670]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:56:25.020 SQL [18670]: pgsql_db_connect() -- 07:56:25.024 DEBUG [18670]: Database connection successful -- 07:56:25.024 INFO [18670]: _SERVER found -- 07:56:25.024 INFO [18670]: REMOTE_ADDR = 10.0.0.15 -- 07:56:25.024 INFO [18670]: SERVER_NAME = oameye.works.coregrade.com -- 07:56:25.024 INFO [18670]: QUERY_STRING = -- 07:56:25.024 INFO [18670]: HTTP_X_FORWARDED_FOR = 212.71.237.41 -- 07:56:25.066 INFO [18670]: COREGRADE is stopping... -- 07:56:25.066 DEBUG [18670]: Closing database connection -- 07:56:25.066 SQL [18670]: pgsql_close() -- 08:36:16.003 INFO [19005]: COREGRADE is starting... -- 08:36:16.003 INFO [19005]: Version from config: 1.0 -- 08:36:16.003 DEBUG [19005]: Connecting to database... -- 08:36:16.003 DEBUG [19005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:36:16.004 SQL [19005]: pgsql_db_connect() -- 08:36:16.008 DEBUG [19005]: Database connection successful -- 08:36:16.008 INFO [19005]: _SERVER found -- 08:36:16.008 INFO [19005]: REMOTE_ADDR = 10.0.0.15 -- 08:36:16.008 INFO [19005]: SERVER_NAME = oameye.works.coregrade.com -- 08:36:16.008 INFO [19005]: QUERY_STRING = -- 08:36:16.008 INFO [19005]: HTTP_X_FORWARDED_FOR = 212.71.237.41 -- 08:36:16.047 INFO [19005]: COREGRADE is stopping... -- 08:36:16.047 DEBUG [19005]: Closing database connection -- 08:36:16.047 SQL [19005]: pgsql_close() -- 08:44:54.124 INFO [24698]: COREGRADE is starting... -- 08:44:54.124 INFO [24698]: Version from config: 1.0 -- 08:44:54.124 DEBUG [24698]: Connecting to database... -- 08:44:54.124 DEBUG [24698]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:44:54.124 SQL [24698]: pgsql_db_connect() -- 08:44:54.128 DEBUG [24698]: Database connection successful -- 08:44:54.128 INFO [24698]: _SERVER found -- 08:44:54.128 INFO [24698]: REMOTE_ADDR = 10.0.0.15 -- 08:44:54.128 INFO [24698]: SERVER_NAME = oameye.works.coregrade.com -- 08:44:54.128 INFO [24698]: QUERY_STRING = -- 08:44:54.128 INFO [24698]: HTTP_X_FORWARDED_FOR = 212.71.237.41 -- 08:44:54.174 INFO [24698]: COREGRADE is stopping... -- 08:44:54.174 DEBUG [24698]: Closing database connection -- 08:44:54.174 SQL [24698]: pgsql_close() -- 10:39:57.456 INFO [24699]: COREGRADE is starting... -- 10:39:57.457 INFO [24699]: Version from config: 1.0 -- 10:39:57.457 DEBUG [24699]: Connecting to database... -- 10:39:57.457 DEBUG [24699]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:39:57.457 SQL [24699]: pgsql_db_connect() -- 10:39:57.461 DEBUG [24699]: Database connection successful -- 10:39:57.461 INFO [24699]: _SERVER found -- 10:39:57.461 INFO [24699]: REMOTE_ADDR = 10.0.0.15 -- 10:39:57.461 INFO [24699]: SERVER_NAME = oameye.works.coregrade.com -- 10:39:57.461 INFO [24699]: QUERY_STRING = /wp-login.php -- 10:39:57.461 INFO [24699]: HTTP_X_FORWARDED_FOR = 34.231.130.6 -- 10:39:57.476 INFO [24699]: COREGRADE is stopping... -- 10:39:57.477 DEBUG [24699]: Closing database connection -- 10:39:57.477 SQL [24699]: pgsql_close() -- 14:01:16.824 INFO [18671]: COREGRADE is starting... -- 14:01:16.824 INFO [18671]: Version from config: 1.0 -- 14:01:16.824 DEBUG [18671]: Connecting to database... -- 14:01:16.824 DEBUG [18671]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:01:16.824 SQL [18671]: pgsql_db_connect() -- 14:01:16.829 DEBUG [18671]: Database connection successful -- 14:01:16.829 INFO [18671]: _SERVER found -- 14:01:16.829 INFO [18671]: REMOTE_ADDR = 10.0.0.15 -- 14:01:16.829 INFO [18671]: SERVER_NAME = oameye.works.coregrade.com -- 14:01:16.829 INFO [18671]: HTTP_COOKIE = _ga=GA1.2.1289531376.1589047250; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.679325435.1589047250 -- 14:01:16.829 INFO [18671]: QUERY_STRING = -- 14:01:16.829 INFO [18671]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:01:16.867 INFO [18671]: COREGRADE is stopping... -- 14:01:16.867 DEBUG [18671]: Closing database connection -- 14:01:16.867 SQL [18671]: pgsql_close() -- 14:01:17.267 INFO [18817]: COREGRADE is starting... -- 14:01:17.268 INFO [18817]: Version from config: 1.0 -- 14:01:17.268 DEBUG [18817]: Connecting to database... -- 14:01:17.268 DEBUG [18817]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:01:17.268 SQL [18817]: pgsql_db_connect() -- 14:01:17.272 DEBUG [18817]: Database connection successful -- 14:01:17.272 INFO [18817]: _SERVER found -- 14:01:17.272 INFO [18817]: REMOTE_ADDR = 10.0.0.15 -- 14:01:17.272 INFO [18817]: SERVER_NAME = oameye.works.coregrade.com -- 14:01:17.272 INFO [18817]: HTTP_COOKIE = ci_session=n96h08jcunh1n5i3851blc2hcrkodl1d; _ga=GA1.2.1289531376.1589047250; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.679325435.1589047250 -- 14:01:17.272 INFO [18817]: QUERY_STRING = /assets/img/footer_1.jpg -- 14:01:17.272 INFO [18817]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:01:17.285 INFO [18817]: COREGRADE is stopping... -- 14:01:17.285 DEBUG [18817]: Closing database connection -- 14:01:17.285 SQL [18817]: pgsql_close() -- 14:01:17.480 INFO [18817]: COREGRADE is starting... -- 14:01:17.480 INFO [18817]: Version from config: 1.0 -- 14:01:17.480 DEBUG [18817]: Connecting to database... -- 14:01:17.480 DEBUG [18817]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:01:17.480 SQL [18817]: pgsql_db_connect() -- 14:01:17.484 DEBUG [18817]: Database connection successful -- 14:01:17.484 INFO [18817]: _SERVER found -- 14:01:17.484 INFO [18817]: REMOTE_ADDR = 10.0.0.15 -- 14:01:17.484 INFO [18817]: SERVER_NAME = oameye.works.coregrade.com -- 14:01:17.484 INFO [18817]: QUERY_STRING = /apple-touch-icon-precomposed.png -- 14:01:17.484 INFO [18817]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:01:17.496 INFO [18817]: COREGRADE is stopping... -- 14:01:17.496 DEBUG [18817]: Closing database connection -- 14:01:17.496 SQL [18817]: pgsql_close() -- 14:01:17.524 INFO [18817]: COREGRADE is starting... -- 14:01:17.524 INFO [18817]: Version from config: 1.0 -- 14:01:17.524 DEBUG [18817]: Connecting to database... -- 14:01:17.524 DEBUG [18817]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:01:17.524 SQL [18817]: pgsql_db_connect() -- 14:01:17.528 DEBUG [18817]: Database connection successful -- 14:01:17.528 INFO [18817]: _SERVER found -- 14:01:17.528 INFO [18817]: REMOTE_ADDR = 10.0.0.15 -- 14:01:17.528 INFO [18817]: SERVER_NAME = oameye.works.coregrade.com -- 14:01:17.528 INFO [18817]: QUERY_STRING = /apple-touch-icon.png -- 14:01:17.528 INFO [18817]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:01:17.540 INFO [18817]: COREGRADE is stopping... -- 14:01:17.540 DEBUG [18817]: Closing database connection -- 14:01:17.540 SQL [18817]: pgsql_close() -- 14:01:26.690 INFO [19007]: COREGRADE is starting... -- 14:01:26.691 INFO [19007]: Version from config: 1.0 -- 14:01:26.691 DEBUG [19007]: Connecting to database... -- 14:01:26.691 DEBUG [19007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:01:26.691 SQL [19007]: pgsql_db_connect() -- 14:01:26.695 DEBUG [19007]: Database connection successful -- 14:01:26.695 INFO [19007]: _SERVER found -- 14:01:26.695 INFO [19007]: REMOTE_ADDR = 10.0.0.15 -- 14:01:26.695 INFO [19007]: SERVER_NAME = oameye.works.coregrade.com -- 14:01:26.695 INFO [19007]: HTTP_COOKIE = _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.679325435.1589047250; ci_session=n96h08jcunh1n5i3851blc2hcrkodl1d; _gat_gtag_UA_54829827_2=1 -- 14:01:26.695 INFO [19007]: QUERY_STRING = /auth -- 14:01:26.695 INFO [19007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:01:26.730 INFO [19007]: COREGRADE is stopping... -- 14:01:26.730 DEBUG [19007]: Closing database connection -- 14:01:26.730 SQL [19007]: pgsql_close() -- 14:01:26.989 INFO [19007]: COREGRADE is starting... -- 14:01:26.989 INFO [19007]: Version from config: 1.0 -- 14:01:26.989 DEBUG [19007]: Connecting to database... -- 14:01:26.989 DEBUG [19007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:01:26.989 SQL [19007]: pgsql_db_connect() -- 14:01:26.993 DEBUG [19007]: Database connection successful -- 14:01:26.993 INFO [19007]: _SERVER found -- 14:01:26.993 INFO [19007]: REMOTE_ADDR = 10.0.0.15 -- 14:01:26.993 INFO [19007]: SERVER_NAME = oameye.works.coregrade.com -- 14:01:26.993 INFO [19007]: HTTP_COOKIE = _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.679325435.1589047250; ci_session=n96h08jcunh1n5i3851blc2hcrkodl1d; _gat_gtag_UA_54829827_2=1 -- 14:01:26.993 INFO [19007]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:01:26.993 INFO [19007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:01:27.005 INFO [19007]: COREGRADE is stopping... -- 14:01:27.005 DEBUG [19007]: Closing database connection -- 14:01:27.005 SQL [19007]: pgsql_close() -- 14:01:32.080 INFO [24698]: COREGRADE is starting... -- 14:01:32.081 INFO [24698]: Version from config: 1.0 -- 14:01:32.081 DEBUG [24698]: Connecting to database... -- 14:01:32.081 DEBUG [24698]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:01:32.081 SQL [24698]: pgsql_db_connect() -- 14:01:32.121 INFO [24698]: COREGRADE is starting... -- 14:01:32.121 INFO [24698]: Version from config: 1.0 -- 14:01:32.121 DEBUG [24698]: Connecting to database... -- 14:01:32.121 DEBUG [24698]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:01:32.121 SQL [24698]: pgsql_db_connect() -- 14:01:32.125 DEBUG [24698]: Database connection successful -- 14:01:32.125 INFO [24698]: _SERVER found -- 14:01:32.125 INFO [24698]: REMOTE_ADDR = 10.0.0.15 -- 14:01:32.125 INFO [24698]: SERVER_NAME = oameye.works.coregrade.com -- 14:01:32.125 INFO [24698]: HTTP_COOKIE = _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.679325435.1589047250; ci_session=n96h08jcunh1n5i3851blc2hcrkodl1d; _gat_gtag_UA_54829827_2=1 -- 14:01:32.125 INFO [24698]: QUERY_STRING = -- 14:01:32.125 INFO [24698]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:01:32.125 INFO [24698]: SystemStatus()09-09-********~************ -- 14:01:32.125 INFO [24698]: long coregrade_api_main(CVars in, CVars &out) -- 14:01:32.125 INFO [24698]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 14:01:32.125 INFO [24698]: account calls -- 14:01:32.125 INFO [24698]: account_calls() -- 14:01:32.125 INFO [24698]: LoginCoreGradeAccount() -- 14:01:32.125 FLOG_MAX [24698]: REQ_STRING(username) -- 14:01:32.125 FLOG_MAX [24698]: REQ_STRING(password) -- 14:01:32.125 FLOG_MAX [24698]: REQ_STRING(sessionid) -- 14:01:32.125 FLOG_MAX [24698]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:01:32.125 SQL [24698]: pgsql_query() -- 14:01:32.125 SQL [24698]: About to run query: -- 14:01:32.125 SQL [24698]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 14:01:32.129 SQL [24698]: Found rows: 1 -- 14:01:32.129 FLOG_MAX [24698]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 14:01:32.129 INFO [24698]: long SessionCheck(long uid, const char *sessionid, int create ) -- 14:01:32.129 SQL [24698]: pgsql_exec() -- 14:01:32.129 SQL [24698]: About to run query: -- 14:01:32.129 SQL [24698]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 14:01:32.131 SQL [24698]: PQcmdTuples: 1 -- 14:01:32.131 SQL [24698]: Affected rows: 1 -- 14:01:32.131 SQL [24698]: pgsql_exec() -- 14:01:32.131 SQL [24698]: About to run query: -- 14:01:32.131 SQL [24698]: DELETE FROM members_session WHERE member_id=5 -- 14:01:32.131 SQL [24698]: PQcmdTuples: 0 -- 14:01:32.131 SQL [24698]: Affected rows: 0 -- 14:01:32.131 SQL [24698]: pgsql_query() -- 14:01:32.131 SQL [24698]: About to run query: -- 14:01:32.131 SQL [24698]: SELECT * FROM members_session WHERE member_id=5 AND session<>'A3DA7561E1770CC1186EF1E6D7E36FF7' -- 14:01:32.132 SQL [24698]: Found rows: 0 -- 14:01:32.132 SQL [24698]: Found rows: 0 -- 14:01:32.132 FLOG_MAX [24698]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:01:32.132 SQL [24698]: pgsql_query() -- 14:01:32.132 SQL [24698]: About to run query: -- 14:01:32.132 SQL [24698]: SELECT * FROM members_session WHERE member_id=5 AND session='A3DA7561E1770CC1186EF1E6D7E36FF7' -- 14:01:32.132 SQL [24698]: Found rows: 0 -- 14:01:32.132 SQL [24698]: Found rows: 0 -- 14:01:32.132 FLOG_MAX [24698]: insert_db_record() -- 14:01:32.132 SQL [24698]: pgsql_exec() -- 14:01:32.132 SQL [24698]: About to run query: -- 14:01:32.132 SQL [24698]: INSERT INTO members_session (member_id,session) VALUES ('5','A3DA7561E1770CC1186EF1E6D7E36FF7') -- 14:01:32.134 SQL [24698]: PQcmdTuples: 1 -- 14:01:32.134 SQL [24698]: Affected rows: 1 -- 14:01:32.134 FLOG_MAX [24698]: SELECT currval('members_session_id_seq') -- 14:01:32.134 SQL [24698]: pgsql_query() -- 14:01:32.134 SQL [24698]: About to run query: -- 14:01:32.134 SQL [24698]: SELECT currval('members_session_id_seq') -- 14:01:32.134 SQL [24698]: Found rows: 1 -- 14:01:32.135 INFO [24698]: CreateDefaultPage() -- 14:01:32.135 FLOG_MAX [24698]: long load_db_record( CVars &rec, const char * query, ... ) -- 14:01:32.135 SQL [24698]: pgsql_query() -- 14:01:32.135 SQL [24698]: About to run query: -- 14:01:32.135 SQL [24698]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 14:01:32.135 SQL [24698]: Found rows: 1 -- 14:01:32.135 FLOG_MAX [24698]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 14:01:32.135 SQL [24698]: pgsql_query() -- 14:01:32.135 SQL [24698]: About to run query: -- 14:01:32.135 SQL [24698]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 14:01:32.135 SQL [24698]: Found rows: 1 -- 14:01:32.135 INFO [24698]: /CreateDefaultPage() -- 14:01:32.135 INFO [24698]: /LoginCoreGradeAccount() -- 14:01:32.135 INFO [24698]: RET: added=2020-02-05 06:47:23.982154 -- 14:01:32.135 INFO [24698]: RET: email=ameye+11@chiefsoft.com -- 14:01:32.135 INFO [24698]: RET: firstname=Olu -- 14:01:32.135 INFO [24698]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 14:01:32.135 INFO [24698]: RET: id=5 -- 14:01:32.135 INFO [24698]: RET: last_login= -- 14:01:32.135 INFO [24698]: RET: lastname=Amey -- 14:01:32.135 INFO [24698]: RET: loc=192.168.1.13 -- 14:01:32.135 INFO [24698]: RET: member_id=5 -- 14:01:32.135 INFO [24698]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 14:01:32.135 INFO [24698]: RET: phone= -- 14:01:32.135 INFO [24698]: RET: pid= -- 14:01:32.135 INFO [24698]: RET: result=YES I GET TO BACK END -- 14:01:32.135 INFO [24698]: RET: sessionid=A3DA7561E1770CC1186EF1E6D7E36FF7 -- 14:01:32.135 INFO [24698]: RET: status=1 -- 14:01:32.135 INFO [24698]: RET: stauts=OK -- 14:01:32.135 INFO [24698]: RET: username=ameye+11@chiefsoft.com -- 14:01:32.135 INFO [24698]: RET: verified= -- 14:01:32.137 INFO [24698]: COREGRADE is stopping... -- 14:01:32.137 DEBUG [24698]: Closing database connection -- 14:01:32.137 SQL [24698]: pgsql_close() -- 14:01:32.085 DEBUG [24698]: Database connection successful -- 14:01:32.085 INFO [24698]: _SERVER found -- 14:01:32.085 INFO [24698]: REMOTE_ADDR = 10.0.0.15 -- 14:01:32.085 INFO [24698]: SERVER_NAME = oameye.works.coregrade.com -- 14:01:32.085 INFO [24698]: HTTP_COOKIE = _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.679325435.1589047250; ci_session=n96h08jcunh1n5i3851blc2hcrkodl1d; _gat_gtag_UA_54829827_2=1 -- 14:01:32.085 INFO [24698]: QUERY_STRING = /auth -- 14:01:32.085 INFO [24698]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:01:32.138 INFO [24698]: COREGRADE is stopping... -- 14:01:32.138 DEBUG [24698]: Closing database connection -- 14:01:32.138 SQL [24698]: pgsql_close() -- 14:01:32.171 INFO [24698]: COREGRADE is starting... -- 14:01:32.172 INFO [24698]: Version from config: 1.0 -- 14:01:32.172 DEBUG [24698]: Connecting to database... -- 14:01:32.172 DEBUG [24698]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:01:32.172 SQL [24698]: pgsql_db_connect() -- 14:01:32.176 DEBUG [24698]: Database connection successful -- 14:01:32.176 INFO [24698]: _SERVER found -- 14:01:32.176 INFO [24698]: REMOTE_ADDR = 10.0.0.15 -- 14:01:32.176 INFO [24698]: SERVER_NAME = oameye.works.coregrade.com -- 14:01:32.176 INFO [24698]: HTTP_COOKIE = _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.679325435.1589047250; ci_session=n96h08jcunh1n5i3851blc2hcrkodl1d; _gat_gtag_UA_54829827_2=1 -- 14:01:32.176 INFO [24698]: QUERY_STRING = /member/index -- 14:01:32.176 INFO [24698]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:01:32.217 INFO [24698]: COREGRADE is stopping... -- 14:01:32.217 DEBUG [24698]: Closing database connection -- 14:01:32.217 SQL [24698]: pgsql_close() -- 14:01:32.500 INFO [24698]: COREGRADE is starting... -- 14:01:32.500 INFO [24698]: Version from config: 1.0 -- 14:01:32.500 DEBUG [24698]: Connecting to database... -- 14:01:32.500 DEBUG [24698]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:01:32.500 SQL [24698]: pgsql_db_connect() -- 14:01:32.504 DEBUG [24698]: Database connection successful -- 14:01:32.504 INFO [24698]: _SERVER found -- 14:01:32.504 INFO [24698]: REMOTE_ADDR = 10.0.0.15 -- 14:01:32.504 INFO [24698]: SERVER_NAME = oameye.works.coregrade.com -- 14:01:32.504 INFO [24698]: HTTP_COOKIE = _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.679325435.1589047250; ci_session=n96h08jcunh1n5i3851blc2hcrkodl1d; _gat_gtag_UA_54829827_2=1 -- 14:01:32.504 INFO [24698]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:01:32.504 INFO [24698]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:01:32.516 INFO [24698]: COREGRADE is stopping... -- 14:01:32.516 DEBUG [24698]: Closing database connection -- 14:01:32.516 SQL [24698]: pgsql_close() -- 14:01:34.146 INFO [24698]: COREGRADE is starting... -- 14:01:34.147 INFO [24698]: Version from config: 1.0 -- 14:01:34.147 DEBUG [24698]: Connecting to database... -- 14:01:34.147 DEBUG [24698]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:01:34.147 SQL [24698]: pgsql_db_connect() -- 14:01:34.151 DEBUG [24698]: Database connection successful -- 14:01:34.151 INFO [24698]: _SERVER found -- 14:01:34.151 INFO [24698]: REMOTE_ADDR = 10.0.0.15 -- 14:01:34.151 INFO [24698]: SERVER_NAME = oameye.works.coregrade.com -- 14:01:34.151 INFO [24698]: HTTP_COOKIE = _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.679325435.1589047250; ci_session=n96h08jcunh1n5i3851blc2hcrkodl1d; _gat_gtag_UA_54829827_2=1 -- 14:01:34.151 INFO [24698]: QUERY_STRING = /member/page -- 14:01:34.151 INFO [24698]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:01:34.194 INFO [24698]: COREGRADE is stopping... -- 14:01:34.194 DEBUG [24698]: Closing database connection -- 14:01:34.194 SQL [24698]: pgsql_close() -- 14:01:34.256 INFO [24698]: COREGRADE is starting... -- 14:01:34.256 INFO [24698]: Version from config: 1.0 -- 14:01:34.256 DEBUG [24698]: Connecting to database... -- 14:01:34.256 DEBUG [24698]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:01:34.256 SQL [24698]: pgsql_db_connect() -- 14:01:34.260 DEBUG [24698]: Database connection successful -- 14:01:34.260 INFO [24698]: _SERVER found -- 14:01:34.260 INFO [24698]: REMOTE_ADDR = 10.0.0.15 -- 14:01:34.260 INFO [24698]: SERVER_NAME = oameye.works.coregrade.com -- 14:01:34.260 INFO [24698]: HTTP_COOKIE = _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.679325435.1589047250; ci_session=n96h08jcunh1n5i3851blc2hcrkodl1d; _gat_gtag_UA_54829827_2=1 -- 14:01:34.260 INFO [24698]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:01:34.260 INFO [24698]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:01:34.272 INFO [24698]: COREGRADE is stopping... -- 14:01:34.272 DEBUG [24698]: Closing database connection -- 14:01:34.272 SQL [24698]: pgsql_close() -- 14:01:40.095 INFO [18671]: COREGRADE is starting... -- 14:01:40.095 INFO [18671]: Version from config: 1.0 -- 14:01:40.095 DEBUG [18671]: Connecting to database... -- 14:01:40.095 DEBUG [18671]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:01:40.095 SQL [18671]: pgsql_db_connect() -- 14:01:40.099 DEBUG [18671]: Database connection successful -- 14:01:40.099 INFO [18671]: _SERVER found -- 14:01:40.099 INFO [18671]: REMOTE_ADDR = 10.0.0.15 -- 14:01:40.099 INFO [18671]: SERVER_NAME = oameye.works.coregrade.com -- 14:01:40.099 INFO [18671]: HTTP_COOKIE = _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.679325435.1589047250; ci_session=n96h08jcunh1n5i3851blc2hcrkodl1d; _gat_gtag_UA_54829827_2=1 -- 14:01:40.099 INFO [18671]: QUERY_STRING = /member/mycalendar -- 14:01:40.099 INFO [18671]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:01:40.140 INFO [18671]: COREGRADE is stopping... -- 14:01:40.140 DEBUG [18671]: Closing database connection -- 14:01:40.140 SQL [18671]: pgsql_close() -- 14:01:40.224 INFO [18671]: COREGRADE is starting... -- 14:01:40.224 INFO [18671]: Version from config: 1.0 -- 14:01:40.224 DEBUG [18671]: Connecting to database... -- 14:01:40.224 DEBUG [18671]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:01:40.224 SQL [18671]: pgsql_db_connect() -- 14:01:40.228 DEBUG [18671]: Database connection successful -- 14:01:40.228 INFO [18671]: _SERVER found -- 14:01:40.228 INFO [18671]: REMOTE_ADDR = 10.0.0.15 -- 14:01:40.228 INFO [18671]: SERVER_NAME = oameye.works.coregrade.com -- 14:01:40.228 INFO [18671]: HTTP_COOKIE = _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.679325435.1589047250; ci_session=n96h08jcunh1n5i3851blc2hcrkodl1d; _gat_gtag_UA_54829827_2=1 -- 14:01:40.228 INFO [18671]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:01:40.228 INFO [18671]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:01:40.240 INFO [18671]: COREGRADE is stopping... -- 14:01:40.240 DEBUG [18671]: Closing database connection -- 14:01:40.240 SQL [18671]: pgsql_close() -- 14:01:47.636 INFO [18817]: COREGRADE is starting... -- 14:01:47.637 INFO [18817]: Version from config: 1.0 -- 14:01:47.637 DEBUG [18817]: Connecting to database... -- 14:01:47.637 DEBUG [18817]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:01:47.637 SQL [18817]: pgsql_db_connect() -- 14:01:47.641 DEBUG [18817]: Database connection successful -- 14:01:47.641 INFO [18817]: _SERVER found -- 14:01:47.641 INFO [18817]: REMOTE_ADDR = 10.0.0.15 -- 14:01:47.641 INFO [18817]: SERVER_NAME = oameye.works.coregrade.com -- 14:01:47.641 INFO [18817]: HTTP_COOKIE = _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.679325435.1589047250; ci_session=n96h08jcunh1n5i3851blc2hcrkodl1d; _gat_gtag_UA_54829827_2=1 -- 14:01:47.641 INFO [18817]: QUERY_STRING = /member -- 14:01:47.641 INFO [18817]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:01:47.683 INFO [18817]: COREGRADE is stopping... -- 14:01:47.683 DEBUG [18817]: Closing database connection -- 14:01:47.683 SQL [18817]: pgsql_close() -- 14:01:47.757 INFO [18817]: COREGRADE is starting... -- 14:01:47.757 INFO [18817]: Version from config: 1.0 -- 14:01:47.757 DEBUG [18817]: Connecting to database... -- 14:01:47.757 DEBUG [18817]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:01:47.757 SQL [18817]: pgsql_db_connect() -- 14:01:47.761 DEBUG [18817]: Database connection successful -- 14:01:47.761 INFO [18817]: _SERVER found -- 14:01:47.761 INFO [18817]: REMOTE_ADDR = 10.0.0.15 -- 14:01:47.761 INFO [18817]: SERVER_NAME = oameye.works.coregrade.com -- 14:01:47.761 INFO [18817]: HTTP_COOKIE = _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.679325435.1589047250; ci_session=n96h08jcunh1n5i3851blc2hcrkodl1d; _gat_gtag_UA_54829827_2=1 -- 14:01:47.761 INFO [18817]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:01:47.761 INFO [18817]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:01:47.772 INFO [18817]: COREGRADE is stopping... -- 14:01:47.772 DEBUG [18817]: Closing database connection -- 14:01:47.772 SQL [18817]: pgsql_close() -- 14:01:51.195 INFO [18817]: COREGRADE is starting... -- 14:01:51.196 INFO [18817]: Version from config: 1.0 -- 14:01:51.196 DEBUG [18817]: Connecting to database... -- 14:01:51.196 DEBUG [18817]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:01:51.196 SQL [18817]: pgsql_db_connect() -- 14:01:51.200 DEBUG [18817]: Database connection successful -- 14:01:51.200 INFO [18817]: _SERVER found -- 14:01:51.200 INFO [18817]: REMOTE_ADDR = 10.0.0.15 -- 14:01:51.200 INFO [18817]: SERVER_NAME = oameye.works.coregrade.com -- 14:01:51.200 INFO [18817]: HTTP_COOKIE = _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.679325435.1589047250; ci_session=n96h08jcunh1n5i3851blc2hcrkodl1d -- 14:01:51.200 INFO [18817]: QUERY_STRING = /member/configure -- 14:01:51.200 INFO [18817]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:01:51.243 INFO [18817]: COREGRADE is stopping... -- 14:01:51.243 DEBUG [18817]: Closing database connection -- 14:01:51.243 SQL [18817]: pgsql_close() -- 14:01:51.302 INFO [18817]: COREGRADE is starting... -- 14:01:51.302 INFO [18817]: Version from config: 1.0 -- 14:01:51.302 DEBUG [18817]: Connecting to database... -- 14:01:51.302 DEBUG [18817]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:01:51.302 SQL [18817]: pgsql_db_connect() -- 14:01:51.306 DEBUG [18817]: Database connection successful -- 14:01:51.306 INFO [18817]: _SERVER found -- 14:01:51.306 INFO [18817]: REMOTE_ADDR = 10.0.0.15 -- 14:01:51.306 INFO [18817]: SERVER_NAME = oameye.works.coregrade.com -- 14:01:51.306 INFO [18817]: HTTP_COOKIE = _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.679325435.1589047250; ci_session=n96h08jcunh1n5i3851blc2hcrkodl1d -- 14:01:51.306 INFO [18817]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:01:51.306 INFO [18817]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:01:51.318 INFO [18817]: COREGRADE is stopping... -- 14:01:51.318 DEBUG [18817]: Closing database connection -- 14:01:51.318 SQL [18817]: pgsql_close() -- 14:01:51.369 INFO [18817]: COREGRADE is starting... -- 14:01:51.369 INFO [18817]: Version from config: 1.0 -- 14:01:51.369 DEBUG [18817]: Connecting to database... -- 14:01:51.369 DEBUG [18817]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:01:51.369 SQL [18817]: pgsql_db_connect() -- 14:01:51.373 DEBUG [18817]: Database connection successful -- 14:01:51.373 INFO [18817]: _SERVER found -- 14:01:51.373 INFO [18817]: REMOTE_ADDR = 10.0.0.15 -- 14:01:51.373 INFO [18817]: SERVER_NAME = oameye.works.coregrade.com -- 14:01:51.373 INFO [18817]: HTTP_COOKIE = _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.679325435.1589047250; ci_session=n96h08jcunh1n5i3851blc2hcrkodl1d -- 14:01:51.373 INFO [18817]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 14:01:51.373 INFO [18817]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:01:51.384 INFO [18817]: COREGRADE is stopping... -- 14:01:51.385 DEBUG [18817]: Closing database connection -- 14:01:51.385 SQL [18817]: pgsql_close() -- 14:01:52.279 INFO [18817]: COREGRADE is starting... -- 14:01:52.279 INFO [18817]: Version from config: 1.0 -- 14:01:52.279 DEBUG [18817]: Connecting to database... -- 14:01:52.279 DEBUG [18817]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:01:52.279 SQL [18817]: pgsql_db_connect() -- 14:01:52.283 DEBUG [18817]: Database connection successful -- 14:01:52.283 INFO [18817]: _SERVER found -- 14:01:52.283 INFO [18817]: REMOTE_ADDR = 10.0.0.15 -- 14:01:52.283 INFO [18817]: SERVER_NAME = oameye.works.coregrade.com -- 14:01:52.283 INFO [18817]: HTTP_COOKIE = _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.679325435.1589047250; ci_session=n96h08jcunh1n5i3851blc2hcrkodl1d -- 14:01:52.283 INFO [18817]: QUERY_STRING = /member -- 14:01:52.283 INFO [18817]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:01:52.323 INFO [18817]: COREGRADE is stopping... -- 14:01:52.323 DEBUG [18817]: Closing database connection -- 14:01:52.323 SQL [18817]: pgsql_close() -- 14:01:52.387 INFO [18817]: COREGRADE is starting... -- 14:01:52.388 INFO [18817]: Version from config: 1.0 -- 14:01:52.388 DEBUG [18817]: Connecting to database... -- 14:01:52.388 DEBUG [18817]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:01:52.388 SQL [18817]: pgsql_db_connect() -- 14:01:52.392 DEBUG [18817]: Database connection successful -- 14:01:52.392 INFO [18817]: _SERVER found -- 14:01:52.392 INFO [18817]: REMOTE_ADDR = 10.0.0.15 -- 14:01:52.392 INFO [18817]: SERVER_NAME = oameye.works.coregrade.com -- 14:01:52.392 INFO [18817]: HTTP_COOKIE = _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.679325435.1589047250; ci_session=n96h08jcunh1n5i3851blc2hcrkodl1d -- 14:01:52.392 INFO [18817]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:01:52.392 INFO [18817]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:01:52.403 INFO [18817]: COREGRADE is stopping... -- 14:01:52.403 DEBUG [18817]: Closing database connection -- 14:01:52.403 SQL [18817]: pgsql_close() -- 14:01:54.318 INFO [18817]: COREGRADE is starting... -- 14:01:54.319 INFO [18817]: Version from config: 1.0 -- 14:01:54.319 DEBUG [18817]: Connecting to database... -- 14:01:54.319 DEBUG [18817]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:01:54.319 SQL [18817]: pgsql_db_connect() -- 14:01:54.323 DEBUG [18817]: Database connection successful -- 14:01:54.323 INFO [18817]: _SERVER found -- 14:01:54.323 INFO [18817]: REMOTE_ADDR = 10.0.0.15 -- 14:01:54.323 INFO [18817]: SERVER_NAME = oameye.works.coregrade.com -- 14:01:54.323 INFO [18817]: HTTP_COOKIE = _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.679325435.1589047250; ci_session=n96h08jcunh1n5i3851blc2hcrkodl1d -- 14:01:54.323 INFO [18817]: QUERY_STRING = /member/page -- 14:01:54.323 INFO [18817]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:01:54.365 INFO [18817]: COREGRADE is stopping... -- 14:01:54.365 DEBUG [18817]: Closing database connection -- 14:01:54.365 SQL [18817]: pgsql_close() -- 14:01:54.446 INFO [18817]: COREGRADE is starting... -- 14:01:54.446 INFO [18817]: Version from config: 1.0 -- 14:01:54.446 DEBUG [18817]: Connecting to database... -- 14:01:54.446 DEBUG [18817]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:01:54.446 SQL [18817]: pgsql_db_connect() -- 14:01:54.450 DEBUG [18817]: Database connection successful -- 14:01:54.450 INFO [18817]: _SERVER found -- 14:01:54.450 INFO [18817]: REMOTE_ADDR = 10.0.0.15 -- 14:01:54.450 INFO [18817]: SERVER_NAME = oameye.works.coregrade.com -- 14:01:54.450 INFO [18817]: HTTP_COOKIE = _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.679325435.1589047250; ci_session=n96h08jcunh1n5i3851blc2hcrkodl1d -- 14:01:54.450 INFO [18817]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:01:54.450 INFO [18817]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:01:54.462 INFO [18817]: COREGRADE is stopping... -- 14:01:54.462 DEBUG [18817]: Closing database connection -- 14:01:54.462 SQL [18817]: pgsql_close() -- 14:09:06.384 INFO [18668]: COREGRADE is starting... -- 14:09:06.385 INFO [18668]: Version from config: 1.0 -- 14:09:06.385 DEBUG [18668]: Connecting to database... -- 14:09:06.385 DEBUG [18668]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:09:06.385 SQL [18668]: pgsql_db_connect() -- 14:09:06.389 DEBUG [18668]: Database connection successful -- 14:09:06.389 INFO [18668]: _SERVER found -- 14:09:06.389 INFO [18668]: REMOTE_ADDR = 10.0.0.15 -- 14:09:06.389 INFO [18668]: SERVER_NAME = oameye.works.coregrade.com -- 14:09:06.389 INFO [18668]: HTTP_COOKIE = _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.679325435.1589047250; ci_session=n96h08jcunh1n5i3851blc2hcrkodl1d -- 14:09:06.389 INFO [18668]: QUERY_STRING = /member -- 14:09:06.389 INFO [18668]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:09:06.436 INFO [18668]: COREGRADE is stopping... -- 14:09:06.436 DEBUG [18668]: Closing database connection -- 14:09:06.436 SQL [18668]: pgsql_close() -- 14:09:06.567 INFO [18668]: COREGRADE is starting... -- 14:09:06.567 INFO [18668]: Version from config: 1.0 -- 14:09:06.567 DEBUG [18668]: Connecting to database... -- 14:09:06.567 DEBUG [18668]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:09:06.567 SQL [18668]: pgsql_db_connect() -- 14:09:06.571 DEBUG [18668]: Database connection successful -- 14:09:06.571 INFO [18668]: _SERVER found -- 14:09:06.571 INFO [18668]: REMOTE_ADDR = 10.0.0.15 -- 14:09:06.571 INFO [18668]: SERVER_NAME = oameye.works.coregrade.com -- 14:09:06.571 INFO [18668]: HTTP_COOKIE = ci_session=kg181ctfg4mollgieetli35un6arkto6; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.679325435.1589047250 -- 14:09:06.571 INFO [18668]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:09:06.571 INFO [18668]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:09:06.583 INFO [18668]: COREGRADE is stopping... -- 14:09:06.583 DEBUG [18668]: Closing database connection -- 14:09:06.583 SQL [18668]: pgsql_close() -- 14:10:07.344 INFO [24699]: COREGRADE is starting... -- 14:10:07.344 INFO [24699]: Version from config: 1.0 -- 14:10:07.344 DEBUG [24699]: Connecting to database... -- 14:10:07.344 DEBUG [24699]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:07.344 SQL [24699]: pgsql_db_connect() -- 14:10:07.349 DEBUG [24699]: Database connection successful -- 14:10:07.349 INFO [24699]: _SERVER found -- 14:10:07.349 INFO [24699]: REMOTE_ADDR = 10.0.0.15 -- 14:10:07.349 INFO [24699]: SERVER_NAME = oameye.works.coregrade.com -- 14:10:07.349 INFO [24699]: HTTP_COOKIE = ci_session=kg181ctfg4mollgieetli35un6arkto6; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.679325435.1589047250 -- 14:10:07.349 INFO [24699]: QUERY_STRING = /member/page -- 14:10:07.349 INFO [24699]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:10:07.395 INFO [24699]: COREGRADE is stopping... -- 14:10:07.395 DEBUG [24699]: Closing database connection -- 14:10:07.395 SQL [24699]: pgsql_close() -- 14:10:07.478 INFO [24699]: COREGRADE is starting... -- 14:10:07.479 INFO [24699]: Version from config: 1.0 -- 14:10:07.479 DEBUG [24699]: Connecting to database... -- 14:10:07.479 DEBUG [24699]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:07.479 SQL [24699]: pgsql_db_connect() -- 14:10:07.483 DEBUG [24699]: Database connection successful -- 14:10:07.483 INFO [24699]: _SERVER found -- 14:10:07.483 INFO [24699]: REMOTE_ADDR = 10.0.0.15 -- 14:10:07.483 INFO [24699]: SERVER_NAME = oameye.works.coregrade.com -- 14:10:07.483 INFO [24699]: HTTP_COOKIE = ci_session=kg181ctfg4mollgieetli35un6arkto6; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.679325435.1589047250 -- 14:10:07.483 INFO [24699]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:10:07.483 INFO [24699]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:10:07.495 INFO [24699]: COREGRADE is stopping... -- 14:10:07.495 DEBUG [24699]: Closing database connection -- 14:10:07.495 SQL [24699]: pgsql_close() -- 14:11:28.327 INFO [24698]: COREGRADE is starting... -- 14:11:28.327 INFO [24698]: Version from config: 1.0 -- 14:11:28.327 DEBUG [24698]: Connecting to database... -- 14:11:28.327 DEBUG [24698]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:11:28.327 SQL [24698]: pgsql_db_connect() -- 14:11:28.331 DEBUG [24698]: Database connection successful -- 14:11:28.331 INFO [24698]: _SERVER found -- 14:11:28.331 INFO [24698]: REMOTE_ADDR = 10.0.0.15 -- 14:11:28.331 INFO [24698]: SERVER_NAME = oameye.works.coregrade.com -- 14:11:28.331 INFO [24698]: HTTP_COOKIE = ci_session=kg181ctfg4mollgieetli35un6arkto6; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.679325435.1589047250 -- 14:11:28.331 INFO [24698]: QUERY_STRING = /member/mycalendar -- 14:11:28.331 INFO [24698]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:11:28.371 INFO [24698]: COREGRADE is stopping... -- 14:11:28.371 DEBUG [24698]: Closing database connection -- 14:11:28.371 SQL [24698]: pgsql_close() -- 14:11:28.596 INFO [24698]: COREGRADE is starting... -- 14:11:28.597 INFO [24698]: Version from config: 1.0 -- 14:11:28.597 DEBUG [24698]: Connecting to database... -- 14:11:28.597 DEBUG [24698]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:11:28.597 SQL [24698]: pgsql_db_connect() -- 14:11:28.601 DEBUG [24698]: Database connection successful -- 14:11:28.601 INFO [24698]: _SERVER found -- 14:11:28.601 INFO [24698]: REMOTE_ADDR = 10.0.0.15 -- 14:11:28.601 INFO [24698]: SERVER_NAME = oameye.works.coregrade.com -- 14:11:28.601 INFO [24698]: HTTP_COOKIE = ci_session=kg181ctfg4mollgieetli35un6arkto6; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.679325435.1589047250 -- 14:11:28.601 INFO [24698]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:11:28.601 INFO [24698]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:11:28.612 INFO [24698]: COREGRADE is stopping... -- 14:11:28.612 DEBUG [24698]: Closing database connection -- 14:11:28.612 SQL [24698]: pgsql_close() -- 14:12:07.786 INFO [18671]: COREGRADE is starting... -- 14:12:07.787 INFO [18671]: Version from config: 1.0 -- 14:12:07.787 DEBUG [18671]: Connecting to database... -- 14:12:07.787 DEBUG [18671]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:12:07.787 SQL [18671]: pgsql_db_connect() -- 14:12:07.791 DEBUG [18671]: Database connection successful -- 14:12:07.791 INFO [18671]: _SERVER found -- 14:12:07.791 INFO [18671]: REMOTE_ADDR = 10.0.0.15 -- 14:12:07.791 INFO [18671]: SERVER_NAME = oameye.works.coregrade.com -- 14:12:07.791 INFO [18671]: HTTP_COOKIE = ci_session=kg181ctfg4mollgieetli35un6arkto6; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.679325435.1589047250 -- 14:12:07.791 INFO [18671]: QUERY_STRING = /member/configure -- 14:12:07.791 INFO [18671]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:12:07.838 INFO [18671]: COREGRADE is stopping... -- 14:12:07.838 DEBUG [18671]: Closing database connection -- 14:12:07.838 SQL [18671]: pgsql_close() -- 14:12:07.918 INFO [18671]: COREGRADE is starting... -- 14:12:07.919 INFO [18671]: Version from config: 1.0 -- 14:12:07.919 DEBUG [18671]: Connecting to database... -- 14:12:07.919 DEBUG [18671]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:12:07.919 SQL [18671]: pgsql_db_connect() -- 14:12:07.923 DEBUG [18671]: Database connection successful -- 14:12:07.923 INFO [18671]: _SERVER found -- 14:12:07.923 INFO [18671]: REMOTE_ADDR = 10.0.0.15 -- 14:12:07.923 INFO [18671]: SERVER_NAME = oameye.works.coregrade.com -- 14:12:07.923 INFO [18671]: HTTP_COOKIE = ci_session=kg181ctfg4mollgieetli35un6arkto6; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.679325435.1589047250 -- 14:12:07.923 INFO [18671]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:12:07.923 INFO [18671]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:12:07.934 INFO [18671]: COREGRADE is stopping... -- 14:12:07.934 DEBUG [18671]: Closing database connection -- 14:12:07.934 SQL [18671]: pgsql_close() -- 14:12:07.989 INFO [18671]: COREGRADE is starting... -- 14:12:07.989 INFO [18671]: Version from config: 1.0 -- 14:12:07.989 DEBUG [18671]: Connecting to database... -- 14:12:07.989 DEBUG [18671]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:12:07.989 SQL [18671]: pgsql_db_connect() -- 14:12:07.993 DEBUG [18671]: Database connection successful -- 14:12:07.993 INFO [18671]: _SERVER found -- 14:12:07.993 INFO [18671]: REMOTE_ADDR = 10.0.0.15 -- 14:12:07.993 INFO [18671]: SERVER_NAME = oameye.works.coregrade.com -- 14:12:07.993 INFO [18671]: HTTP_COOKIE = ci_session=kg181ctfg4mollgieetli35un6arkto6; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.679325435.1589047250 -- 14:12:07.993 INFO [18671]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 14:12:07.993 INFO [18671]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:12:08.005 INFO [18671]: COREGRADE is stopping... -- 14:12:08.005 DEBUG [18671]: Closing database connection -- 14:12:08.005 SQL [18671]: pgsql_close() -- 14:12:09.979 INFO [18671]: COREGRADE is starting... -- 14:12:09.979 INFO [18671]: Version from config: 1.0 -- 14:12:09.979 DEBUG [18671]: Connecting to database... -- 14:12:09.979 DEBUG [18671]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:12:09.979 SQL [18671]: pgsql_db_connect() -- 14:12:09.982 INFO [18670]: COREGRADE is starting... -- 14:12:09.983 INFO [18670]: Version from config: 1.0 -- 14:12:09.983 DEBUG [18670]: Connecting to database... -- 14:12:09.983 DEBUG [18670]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:12:09.983 SQL [18670]: pgsql_db_connect() -- 14:12:09.986 DEBUG [18670]: Database connection successful -- 14:12:09.986 INFO [18670]: _SERVER found -- 14:12:09.986 INFO [18670]: REMOTE_ADDR = 10.0.0.15 -- 14:12:09.986 INFO [18670]: SERVER_NAME = oameye.works.coregrade.com -- 14:12:09.986 INFO [18670]: HTTP_COOKIE = ci_session=kg181ctfg4mollgieetli35un6arkto6; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.679325435.1589047250 -- 14:12:09.986 INFO [18670]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:12:09.986 INFO [18670]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:12:09.998 INFO [18670]: COREGRADE is stopping... -- 14:12:09.998 DEBUG [18670]: Closing database connection -- 14:12:09.998 SQL [18670]: pgsql_close() -- 14:12:09.983 DEBUG [18671]: Database connection successful -- 14:12:09.983 INFO [18671]: _SERVER found -- 14:12:09.983 INFO [18671]: REMOTE_ADDR = 10.0.0.15 -- 14:12:09.983 INFO [18671]: SERVER_NAME = oameye.works.coregrade.com -- 14:12:09.983 INFO [18671]: HTTP_COOKIE = ci_session=kg181ctfg4mollgieetli35un6arkto6; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.679325435.1589047250 -- 14:12:09.983 INFO [18671]: QUERY_STRING = /member -- 14:12:09.983 INFO [18671]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:12:10.026 INFO [18671]: COREGRADE is stopping... -- 14:12:10.026 DEBUG [18671]: Closing database connection -- 14:12:10.027 SQL [18671]: pgsql_close() -- 18:39:05.809 INFO [18817]: COREGRADE is starting... -- 18:39:05.809 INFO [18817]: Version from config: 1.0 -- 18:39:05.809 DEBUG [18817]: Connecting to database... -- 18:39:05.809 DEBUG [18817]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:05.809 SQL [18817]: pgsql_db_connect() -- 18:39:05.815 DEBUG [18817]: Database connection successful -- 18:39:05.815 INFO [18817]: _SERVER found -- 18:39:05.815 INFO [18817]: REMOTE_ADDR = 10.0.0.15 -- 18:39:05.815 INFO [18817]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:05.815 INFO [18817]: HTTP_COOKIE = _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.679325435.1589047250 -- 18:39:05.815 INFO [18817]: QUERY_STRING = /auth -- 18:39:05.815 INFO [18817]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:39:05.853 INFO [18817]: COREGRADE is stopping... -- 18:39:05.853 DEBUG [18817]: Closing database connection -- 18:39:05.853 SQL [18817]: pgsql_close() -- 18:39:06.321 INFO [18817]: COREGRADE is starting... -- 18:39:06.322 INFO [18817]: Version from config: 1.0 -- 18:39:06.322 DEBUG [18817]: Connecting to database... -- 18:39:06.322 DEBUG [18817]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:39:06.322 SQL [18817]: pgsql_db_connect() -- 18:39:06.326 DEBUG [18817]: Database connection successful -- 18:39:06.326 INFO [18817]: _SERVER found -- 18:39:06.326 INFO [18817]: REMOTE_ADDR = 10.0.0.15 -- 18:39:06.326 INFO [18817]: SERVER_NAME = oameye.works.coregrade.com -- 18:39:06.326 INFO [18817]: HTTP_COOKIE = ci_session=m2bnn25r8n98vrd6dihfo2bjo5l29vu3; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.679325435.1589047250 -- 18:39:06.326 INFO [18817]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:39:06.326 INFO [18817]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 18:39:06.338 INFO [18817]: COREGRADE is stopping... -- 18:39:06.338 DEBUG [18817]: Closing database connection -- 18:39:06.338 SQL [18817]: pgsql_close() -- 20:19:12.362 INFO [19007]: COREGRADE is starting... -- 20:19:12.363 INFO [19007]: Version from config: 1.0 -- 20:19:12.363 DEBUG [19007]: Connecting to database... -- 20:19:12.363 DEBUG [19007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:19:12.363 SQL [19007]: pgsql_db_connect() -- 20:19:12.369 DEBUG [19007]: Database connection successful -- 20:19:12.369 INFO [19007]: _SERVER found -- 20:19:12.369 INFO [19007]: REMOTE_ADDR = 10.0.0.15 -- 20:19:12.369 INFO [19007]: SERVER_NAME = oameye.works.coregrade.com -- 20:19:12.369 INFO [19007]: HTTP_COOKIE = ci_session=m2bnn25r8n98vrd6dihfo2bjo5l29vu3; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.679325435.1589047250 -- 20:19:12.369 INFO [19007]: QUERY_STRING = -- 20:19:12.369 INFO [19007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:19:12.408 INFO [19007]: COREGRADE is stopping... -- 20:19:12.408 DEBUG [19007]: Closing database connection -- 20:19:12.408 SQL [19007]: pgsql_close() -- 20:19:12.490 INFO [19007]: COREGRADE is starting... -- 20:19:12.490 INFO [19007]: Version from config: 1.0 -- 20:19:12.490 DEBUG [19007]: Connecting to database... -- 20:19:12.490 DEBUG [19007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:19:12.490 SQL [19007]: pgsql_db_connect() -- 20:19:12.495 DEBUG [19007]: Database connection successful -- 20:19:12.495 INFO [19007]: _SERVER found -- 20:19:12.495 INFO [19007]: REMOTE_ADDR = 10.0.0.15 -- 20:19:12.495 INFO [19007]: SERVER_NAME = oameye.works.coregrade.com -- 20:19:12.495 INFO [19007]: HTTP_COOKIE = ci_session=i1vsbdt568cdkvv2jvihqa52fi7ta6tv; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.679325435.1589047250 -- 20:19:12.495 INFO [19007]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:19:12.495 INFO [19007]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:19:12.507 INFO [19007]: COREGRADE is stopping... -- 20:19:12.507 DEBUG [19007]: Closing database connection -- 20:19:12.507 SQL [19007]: pgsql_close() -- 20:19:19.469 INFO [18667]: COREGRADE is starting... -- 20:19:19.471 INFO [18667]: Version from config: 1.0 -- 20:19:19.471 DEBUG [18667]: Connecting to database... -- 20:19:19.471 DEBUG [18667]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:19:19.471 SQL [18667]: pgsql_db_connect() -- 20:19:19.472 INFO [19005]: COREGRADE is starting... -- 20:19:19.473 INFO [19005]: Version from config: 1.0 -- 20:19:19.473 DEBUG [19005]: Connecting to database... -- 20:19:19.473 DEBUG [19005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:19:19.473 SQL [19005]: pgsql_db_connect() -- 20:19:19.477 DEBUG [19005]: Database connection successful -- 20:19:19.477 INFO [19005]: _SERVER found -- 20:19:19.477 INFO [19005]: REMOTE_ADDR = 10.0.0.15 -- 20:19:19.477 INFO [19005]: SERVER_NAME = oameye.works.coregrade.com -- 20:19:19.477 INFO [19005]: HTTP_COOKIE = ci_session=i1vsbdt568cdkvv2jvihqa52fi7ta6tv; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.679325435.1589047250 -- 20:19:19.477 INFO [19005]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:19:19.477 INFO [19005]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:19:19.492 INFO [19005]: COREGRADE is stopping... -- 20:19:19.492 DEBUG [19005]: Closing database connection -- 20:19:19.492 SQL [19005]: pgsql_close() -- 20:19:19.477 DEBUG [18667]: Database connection successful -- 20:19:19.477 INFO [18667]: _SERVER found -- 20:19:19.477 INFO [18667]: REMOTE_ADDR = 10.0.0.15 -- 20:19:19.477 INFO [18667]: SERVER_NAME = oameye.works.coregrade.com -- 20:19:19.477 INFO [18667]: HTTP_COOKIE = ci_session=i1vsbdt568cdkvv2jvihqa52fi7ta6tv; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.679325435.1589047250 -- 20:19:19.477 INFO [18667]: QUERY_STRING = -- 20:19:19.477 INFO [18667]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 20:19:19.516 INFO [18667]: COREGRADE is stopping... -- 20:19:19.516 DEBUG [18667]: Closing database connection -- 20:19:19.516 SQL [18667]: pgsql_close() -- 02:30:53.994 INFO [14123]: COREGRADE is starting... -- 02:30:53.995 INFO [14123]: Version from config: 1.0 -- 02:30:53.995 DEBUG [14123]: Connecting to database... -- 02:30:53.995 DEBUG [14123]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:30:53.995 SQL [14123]: pgsql_db_connect() -- 02:30:53.001 DEBUG [14123]: Database connection successful -- 02:30:53.001 INFO [14123]: _SERVER found -- 02:30:53.001 INFO [14123]: REMOTE_ADDR = 10.0.0.15 -- 02:30:53.001 INFO [14123]: SERVER_NAME = oameye.works.coregrade.com -- 02:30:53.001 INFO [14123]: QUERY_STRING = /.well-known/acme-challenge/CuU2CuSqMTIAfeeTTHhFws4G3gdKXrymHUqg5aqEYD0 -- 02:30:53.001 INFO [14123]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 02:30:54.024 INFO [14123]: COREGRADE is stopping... -- 02:30:54.024 DEBUG [14123]: Closing database connection -- 02:30:54.024 SQL [14123]: pgsql_close() -- 02:30:54.198 INFO [24699]: COREGRADE is starting... -- 02:30:54.199 INFO [24699]: Version from config: 1.0 -- 02:30:54.199 DEBUG [24699]: Connecting to database... -- 02:30:54.199 DEBUG [24699]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:30:54.199 SQL [24699]: pgsql_db_connect() -- 02:30:54.203 DEBUG [24699]: Database connection successful -- 02:30:54.203 INFO [24699]: _SERVER found -- 02:30:54.203 INFO [24699]: REMOTE_ADDR = 10.0.0.15 -- 02:30:54.203 INFO [24699]: SERVER_NAME = oameye.works.coregrade.com -- 02:30:54.203 INFO [24699]: QUERY_STRING = /.well-known/acme-challenge/CuU2CuSqMTIAfeeTTHhFws4G3gdKXrymHUqg5aqEYD0 -- 02:30:54.203 INFO [24699]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 02:30:54.217 INFO [24699]: COREGRADE is stopping... -- 02:30:54.217 DEBUG [24699]: Closing database connection -- 02:30:54.217 SQL [24699]: pgsql_close() -- 08:59:56.038 INFO [17679]: COREGRADE is starting... -- 08:59:56.039 INFO [17679]: Version from config: 1.0 -- 08:59:56.039 DEBUG [17679]: Connecting to database... -- 08:59:56.039 DEBUG [17679]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:59:56.039 SQL [17679]: pgsql_db_connect() -- 08:59:56.044 DEBUG [17679]: Database connection successful -- 08:59:56.044 INFO [17679]: _SERVER found -- 08:59:56.044 INFO [17679]: REMOTE_ADDR = 10.0.0.15 -- 08:59:56.044 INFO [17679]: SERVER_NAME = oameye.works.coregrade.com -- 08:59:56.044 INFO [17679]: QUERY_STRING = /Telerik.Web.UI.WebResource.axd -- 08:59:56.044 INFO [17679]: HTTP_X_FORWARDED_FOR = 185.141.24.103 -- 08:59:56.063 INFO [17679]: COREGRADE is stopping... -- 08:59:56.063 DEBUG [17679]: Closing database connection -- 08:59:56.063 SQL [17679]: pgsql_close() -- 15:25:51.773 INFO [17680]: COREGRADE is starting... -- 15:25:51.773 INFO [17680]: Version from config: 1.0 -- 15:25:51.773 DEBUG [17680]: Connecting to database... -- 15:25:51.773 DEBUG [17680]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:51.773 SQL [17680]: pgsql_db_connect() -- 15:25:51.779 DEBUG [17680]: Database connection successful -- 15:25:51.779 INFO [17680]: _SERVER found -- 15:25:51.779 INFO [17680]: REMOTE_ADDR = 10.0.0.15 -- 15:25:51.779 INFO [17680]: SERVER_NAME = oameye.works.coregrade.com -- 15:25:51.779 INFO [17680]: QUERY_STRING = /robots.txt -- 15:25:51.779 INFO [17680]: HTTP_X_FORWARDED_FOR = 66.249.70.88 -- 15:25:51.797 INFO [17680]: COREGRADE is stopping... -- 15:25:51.797 DEBUG [17680]: Closing database connection -- 15:25:51.797 SQL [17680]: pgsql_close() -- 15:25:51.896 INFO [17681]: COREGRADE is starting... -- 15:25:51.896 INFO [17681]: Version from config: 1.0 -- 15:25:51.896 DEBUG [17681]: Connecting to database... -- 15:25:51.896 DEBUG [17681]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:51.896 SQL [17681]: pgsql_db_connect() -- 15:25:51.901 DEBUG [17681]: Database connection successful -- 15:25:51.901 INFO [17681]: _SERVER found -- 15:25:51.901 INFO [17681]: REMOTE_ADDR = 10.0.0.15 -- 15:25:51.901 INFO [17681]: SERVER_NAME = oameye.works.coregrade.com -- 15:25:51.901 INFO [17681]: QUERY_STRING = -- 15:25:51.901 INFO [17681]: HTTP_X_FORWARDED_FOR = 66.249.70.84 -- 15:25:51.957 INFO [17681]: COREGRADE is stopping... -- 15:25:51.957 DEBUG [17681]: Closing database connection -- 15:25:51.957 SQL [17681]: pgsql_close() -- 16:02:51.453 INFO [17683]: COREGRADE is starting... -- 16:02:51.453 INFO [17683]: Version from config: 1.0 -- 16:02:51.453 DEBUG [17683]: Connecting to database... -- 16:02:51.453 DEBUG [17683]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:02:51.453 SQL [17683]: pgsql_db_connect() -- 16:02:51.458 DEBUG [17683]: Database connection successful -- 16:02:51.458 INFO [17683]: _SERVER found -- 16:02:51.458 INFO [17683]: REMOTE_ADDR = 10.0.0.15 -- 16:02:51.458 INFO [17683]: SERVER_NAME = oameye.works.coregrade.com -- 16:02:51.458 INFO [17683]: QUERY_STRING = -- 16:02:51.458 INFO [17683]: HTTP_X_FORWARDED_FOR = 66.249.70.88 -- 16:02:51.510 INFO [17683]: COREGRADE is stopping... -- 16:02:51.511 DEBUG [17683]: Closing database connection -- 16:02:51.511 SQL [17683]: pgsql_close() -- 16:03:08.685 INFO [17679]: COREGRADE is starting... -- 16:03:08.686 INFO [17679]: Version from config: 1.0 -- 16:03:08.686 DEBUG [17679]: Connecting to database... -- 16:03:08.686 DEBUG [17679]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:03:08.686 SQL [17679]: pgsql_db_connect() -- 16:03:08.690 DEBUG [17679]: Database connection successful -- 16:03:08.690 INFO [17679]: _SERVER found -- 16:03:08.690 INFO [17679]: REMOTE_ADDR = 10.0.0.15 -- 16:03:08.690 INFO [17679]: SERVER_NAME = oameye.works.coregrade.com -- 16:03:08.690 INFO [17679]: QUERY_STRING = /favicon.ico -- 16:03:08.690 INFO [17679]: HTTP_X_FORWARDED_FOR = 66.249.70.84 -- 16:03:08.704 INFO [17679]: COREGRADE is stopping... -- 16:03:08.704 DEBUG [17679]: Closing database connection -- 16:03:08.704 SQL [17679]: pgsql_close() -- 21:29:48.278 INFO [20752]: COREGRADE is starting... -- 21:29:48.279 INFO [20752]: Version from config: 1.0 -- 21:29:48.279 DEBUG [20752]: Connecting to database... -- 21:29:48.279 DEBUG [20752]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:48.279 SQL [20752]: pgsql_db_connect() -- 21:29:48.284 DEBUG [20752]: Database connection successful -- 21:29:48.284 INFO [20752]: _SERVER found -- 21:29:48.284 INFO [20752]: REMOTE_ADDR = 10.0.0.15 -- 21:29:48.284 INFO [20752]: SERVER_NAME = oameye.works.coregrade.com -- 21:29:48.284 INFO [20752]: QUERY_STRING = /auth/newuser -- 21:29:48.284 INFO [20752]: HTTP_X_FORWARDED_FOR = 66.249.70.84 -- 21:29:48.328 INFO [20752]: COREGRADE is stopping... -- 21:29:48.328 DEBUG [20752]: Closing database connection -- 21:29:48.328 SQL [20752]: pgsql_close() -- 23:06:05.420 INFO [20753]: COREGRADE is starting... -- 23:06:05.420 INFO [20753]: Version from config: 1.0 -- 23:06:05.420 DEBUG [20753]: Connecting to database... -- 23:06:05.420 DEBUG [20753]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:06:05.420 SQL [20753]: pgsql_db_connect() -- 23:06:05.425 DEBUG [20753]: Database connection successful -- 23:06:05.425 INFO [20753]: _SERVER found -- 23:06:05.425 INFO [20753]: REMOTE_ADDR = 10.0.0.15 -- 23:06:05.425 INFO [20753]: SERVER_NAME = oameye.works.coregrade.com -- 23:06:05.425 INFO [20753]: QUERY_STRING = /home/terms -- 23:06:05.425 INFO [20753]: HTTP_X_FORWARDED_FOR = 66.249.70.88 -- 23:06:05.470 INFO [20753]: COREGRADE is stopping... -- 23:06:05.470 DEBUG [20753]: Closing database connection -- 23:06:05.470 SQL [20753]: pgsql_close() -- 01:32:47.726 INFO [17681]: COREGRADE is starting... -- 01:32:47.727 INFO [17681]: Version from config: 1.0 -- 01:32:47.727 DEBUG [17681]: Connecting to database... -- 01:32:47.727 DEBUG [17681]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:32:47.727 SQL [17681]: pgsql_db_connect() -- 01:32:47.731 DEBUG [17681]: Database connection successful -- 01:32:47.731 INFO [17681]: _SERVER found -- 01:32:47.731 INFO [17681]: REMOTE_ADDR = 10.0.0.15 -- 01:32:47.731 INFO [17681]: SERVER_NAME = oameye.works.coregrade.com -- 01:32:47.731 INFO [17681]: QUERY_STRING = /.well-known/acme-challenge/XRRjgACqA1HR-50cFRN84OpNy0CDaQEY4MZOjrkZSU0 -- 01:32:47.731 INFO [17681]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 01:32:47.749 INFO [17681]: COREGRADE is stopping... -- 01:32:47.749 DEBUG [17681]: Closing database connection -- 01:32:47.749 SQL [17681]: pgsql_close() -- 01:32:47.846 INFO [17683]: COREGRADE is starting... -- 01:32:47.846 INFO [17683]: Version from config: 1.0 -- 01:32:47.846 DEBUG [17683]: Connecting to database... -- 01:32:47.846 DEBUG [17683]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:32:47.846 SQL [17683]: pgsql_db_connect() -- 01:32:47.851 DEBUG [17683]: Database connection successful -- 01:32:47.851 INFO [17683]: _SERVER found -- 01:32:47.851 INFO [17683]: REMOTE_ADDR = 10.0.0.15 -- 01:32:47.851 INFO [17683]: SERVER_NAME = oameye.works.coregrade.com -- 01:32:47.851 INFO [17683]: QUERY_STRING = /.well-known/acme-challenge/XRRjgACqA1HR-50cFRN84OpNy0CDaQEY4MZOjrkZSU0 -- 01:32:47.851 INFO [17683]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 01:32:47.871 INFO [17683]: COREGRADE is stopping... -- 01:32:47.871 DEBUG [17683]: Closing database connection -- 01:32:47.871 SQL [17683]: pgsql_close() -- 12:08:41.470 INFO [20752]: COREGRADE is starting... -- 12:08:41.471 INFO [20752]: Version from config: 1.0 -- 12:08:41.471 DEBUG [20752]: Connecting to database... -- 12:08:41.471 DEBUG [20752]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:08:41.471 SQL [20752]: pgsql_db_connect() -- 12:08:41.477 DEBUG [20752]: Database connection successful -- 12:08:41.477 INFO [20752]: _SERVER found -- 12:08:41.477 INFO [20752]: REMOTE_ADDR = 10.0.0.15 -- 12:08:41.477 INFO [20752]: SERVER_NAME = oameye.works.coregrade.com -- 12:08:41.477 INFO [20752]: QUERY_STRING = -- 12:08:41.477 INFO [20752]: HTTP_X_FORWARDED_FOR = 1.24.36.154 -- 12:08:41.525 INFO [20752]: COREGRADE is stopping... -- 12:08:41.525 DEBUG [20752]: Closing database connection -- 12:08:41.525 SQL [20752]: pgsql_close() -- 12:08:51.565 INFO [20753]: COREGRADE is starting... -- 12:08:51.566 INFO [20753]: Version from config: 1.0 -- 12:08:51.566 DEBUG [20753]: Connecting to database... -- 12:08:51.566 DEBUG [20753]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:08:51.566 SQL [20753]: pgsql_db_connect() -- 12:08:51.570 DEBUG [20753]: Database connection successful -- 12:08:51.570 INFO [20753]: _SERVER found -- 12:08:51.570 INFO [20753]: REMOTE_ADDR = 10.0.0.15 -- 12:08:51.570 INFO [20753]: SERVER_NAME = oameye.works.coregrade.com -- 12:08:51.570 INFO [20753]: QUERY_STRING = /horde/imp/test.php -- 12:08:51.570 INFO [20753]: HTTP_X_FORWARDED_FOR = 1.24.36.154 -- 12:08:51.584 INFO [20753]: COREGRADE is stopping... -- 12:08:51.584 DEBUG [20753]: Closing database connection -- 12:08:51.584 SQL [20753]: pgsql_close() -- 12:09:02.120 INFO [17680]: COREGRADE is starting... -- 12:09:02.120 INFO [17680]: Version from config: 1.0 -- 12:09:02.120 DEBUG [17680]: Connecting to database... -- 12:09:02.120 DEBUG [17680]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:02.120 SQL [17680]: pgsql_db_connect() -- 12:09:02.125 DEBUG [17680]: Database connection successful -- 12:09:02.125 INFO [17680]: _SERVER found -- 12:09:02.125 INFO [17680]: REMOTE_ADDR = 10.0.0.15 -- 12:09:02.125 INFO [17680]: SERVER_NAME = oameye.works.coregrade.com -- 12:09:02.125 INFO [17680]: QUERY_STRING = /login.action -- 12:09:02.125 INFO [17680]: HTTP_X_FORWARDED_FOR = 1.24.36.154 -- 12:09:02.141 INFO [17680]: COREGRADE is stopping... -- 12:09:02.141 DEBUG [17680]: Closing database connection -- 12:09:02.141 SQL [17680]: pgsql_close() -- 12:09:13.890 INFO [17682]: COREGRADE is starting... -- 12:09:13.890 INFO [17682]: Version from config: 1.0 -- 12:09:13.890 DEBUG [17682]: Connecting to database... -- 12:09:13.890 DEBUG [17682]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:13.890 SQL [17682]: pgsql_db_connect() -- 12:09:13.894 DEBUG [17682]: Database connection successful -- 12:09:13.894 INFO [17682]: _SERVER found -- 12:09:13.894 INFO [17682]: REMOTE_ADDR = 10.0.0.15 -- 12:09:13.894 INFO [17682]: SERVER_NAME = oameye.works.coregrade.com -- 12:09:13.894 INFO [17682]: QUERY_STRING = /login -- 12:09:13.894 INFO [17682]: HTTP_X_FORWARDED_FOR = 1.24.36.154 -- 12:09:13.909 INFO [17682]: COREGRADE is stopping... -- 12:09:13.909 DEBUG [17682]: Closing database connection -- 12:09:13.909 SQL [17682]: pgsql_close() -- 12:09:19.564 INFO [17681]: COREGRADE is starting... -- 12:09:19.565 INFO [17681]: Version from config: 1.0 -- 12:09:19.565 DEBUG [17681]: Connecting to database... -- 12:09:19.565 DEBUG [17681]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:19.565 SQL [17681]: pgsql_db_connect() -- 12:09:19.569 DEBUG [17681]: Database connection successful -- 12:09:19.569 INFO [17681]: _SERVER found -- 12:09:19.569 INFO [17681]: REMOTE_ADDR = 10.0.0.15 -- 12:09:19.569 INFO [17681]: SERVER_NAME = oameye.works.coregrade.com -- 12:09:19.569 INFO [17681]: QUERY_STRING = /phpMyAdmin/scripts/setup.php -- 12:09:19.569 INFO [17681]: HTTP_X_FORWARDED_FOR = 1.24.36.154 -- 12:09:19.584 INFO [17681]: COREGRADE is stopping... -- 12:09:19.584 DEBUG [17681]: Closing database connection -- 12:09:19.584 SQL [17681]: pgsql_close() -- 12:09:21.966 INFO [17681]: COREGRADE is starting... -- 12:09:21.967 INFO [17681]: Version from config: 1.0 -- 12:09:21.967 DEBUG [17681]: Connecting to database... -- 12:09:21.967 DEBUG [17681]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:21.967 SQL [17681]: pgsql_db_connect() -- 12:09:21.971 DEBUG [17681]: Database connection successful -- 12:09:21.971 INFO [17681]: _SERVER found -- 12:09:21.971 INFO [17681]: REMOTE_ADDR = 10.0.0.15 -- 12:09:21.971 INFO [17681]: SERVER_NAME = oameye.works.coregrade.com -- 12:09:21.971 INFO [17681]: QUERY_STRING = /phpmyadmin/scripts/setup.php -- 12:09:21.971 INFO [17681]: HTTP_X_FORWARDED_FOR = 1.24.36.154 -- 12:09:21.983 INFO [17681]: COREGRADE is stopping... -- 12:09:21.983 DEBUG [17681]: Closing database connection -- 12:09:21.983 SQL [17681]: pgsql_close() -- 12:09:27.853 INFO [17683]: COREGRADE is starting... -- 12:09:27.853 INFO [17683]: Version from config: 1.0 -- 12:09:27.853 DEBUG [17683]: Connecting to database... -- 12:09:27.853 DEBUG [17683]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:27.853 SQL [17683]: pgsql_db_connect() -- 12:09:27.858 DEBUG [17683]: Database connection successful -- 12:09:27.858 INFO [17683]: _SERVER found -- 12:09:27.858 INFO [17683]: REMOTE_ADDR = 10.0.0.15 -- 12:09:27.858 INFO [17683]: SERVER_NAME = oameye.works.coregrade.com -- 12:09:27.858 INFO [17683]: QUERY_STRING = /login/do_login -- 12:09:27.858 INFO [17683]: HTTP_X_FORWARDED_FOR = 1.24.36.154 -- 12:09:27.871 INFO [17683]: COREGRADE is stopping... -- 12:09:27.871 DEBUG [17683]: Closing database connection -- 12:09:27.871 SQL [17683]: pgsql_close() -- 14:33:01.438 INFO [19110]: COREGRADE is starting... -- 14:33:01.438 INFO [19110]: Version from config: 1.0 -- 14:33:01.438 DEBUG [19110]: Connecting to database... -- 14:33:01.438 DEBUG [19110]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:33:01.438 SQL [19110]: pgsql_db_connect() -- 14:33:01.443 DEBUG [19110]: Database connection successful -- 14:33:01.443 INFO [19110]: _SERVER found -- 14:33:01.443 INFO [19110]: REMOTE_ADDR = 10.0.0.15 -- 14:33:01.443 INFO [19110]: SERVER_NAME = tokslaw.works.coregrade.com -- 14:33:01.443 INFO [19110]: QUERY_STRING = /wp-login.php -- 14:33:01.443 INFO [19110]: HTTP_X_FORWARDED_FOR = 194.182.75.170 -- 14:33:01.459 INFO [19110]: COREGRADE is stopping... -- 14:33:01.459 DEBUG [19110]: Closing database connection -- 14:33:01.459 SQL [19110]: pgsql_close() -- 14:45:55.036 INFO [17679]: COREGRADE is starting... -- 14:45:55.036 INFO [17679]: Version from config: 1.0 -- 14:45:55.037 DEBUG [17679]: Connecting to database... -- 14:45:55.037 DEBUG [17679]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:45:55.037 SQL [17679]: pgsql_db_connect() -- 14:45:55.041 DEBUG [17679]: Database connection successful -- 14:45:55.041 INFO [17679]: _SERVER found -- 14:45:55.041 INFO [17679]: REMOTE_ADDR = 10.0.0.15 -- 14:45:55.041 INFO [17679]: SERVER_NAME = oameye.works.coregrade.com -- 14:45:55.041 INFO [17679]: QUERY_STRING = /robots.txt -- 14:45:55.041 INFO [17679]: HTTP_X_FORWARDED_FOR = 66.249.70.84 -- 14:45:55.056 INFO [17679]: COREGRADE is stopping... -- 14:45:55.056 DEBUG [17679]: Closing database connection -- 14:45:55.056 SQL [17679]: pgsql_close() -- 14:45:55.157 INFO [20752]: COREGRADE is starting... -- 14:45:55.157 INFO [20752]: Version from config: 1.0 -- 14:45:55.157 DEBUG [20752]: Connecting to database... -- 14:45:55.157 DEBUG [20752]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:45:55.157 SQL [20752]: pgsql_db_connect() -- 14:45:55.161 DEBUG [20752]: Database connection successful -- 14:45:55.161 INFO [20752]: _SERVER found -- 14:45:55.161 INFO [20752]: REMOTE_ADDR = 10.0.0.15 -- 14:45:55.161 INFO [20752]: SERVER_NAME = oameye.works.coregrade.com -- 14:45:55.161 INFO [20752]: QUERY_STRING = -- 14:45:55.161 INFO [20752]: HTTP_X_FORWARDED_FOR = 66.249.70.86 -- 14:45:55.200 INFO [20752]: COREGRADE is stopping... -- 14:45:55.201 DEBUG [20752]: Closing database connection -- 14:45:55.201 SQL [20752]: pgsql_close() -- 23:44:44.709 INFO [20753]: COREGRADE is starting... -- 23:44:44.710 INFO [20753]: Version from config: 1.0 -- 23:44:44.710 DEBUG [20753]: Connecting to database... -- 23:44:44.710 DEBUG [20753]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:44.710 SQL [20753]: pgsql_db_connect() -- 23:44:44.715 DEBUG [20753]: Database connection successful -- 23:44:44.715 INFO [20753]: _SERVER found -- 23:44:44.715 INFO [20753]: REMOTE_ADDR = 10.0.0.15 -- 23:44:44.715 INFO [20753]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:44.715 INFO [20753]: QUERY_STRING = /.well-known/acme-challenge/jcbBCyvYXIYPHEVOsjmmyDB8kVhLQpR14uDXDWKjYRA -- 23:44:44.715 INFO [20753]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 23:44:44.736 INFO [20753]: COREGRADE is stopping... -- 23:44:44.736 DEBUG [20753]: Closing database connection -- 23:44:44.736 SQL [20753]: pgsql_close() -- 23:44:44.902 INFO [20753]: COREGRADE is starting... -- 23:44:44.902 INFO [20753]: Version from config: 1.0 -- 23:44:44.902 DEBUG [20753]: Connecting to database... -- 23:44:44.902 DEBUG [20753]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:44.902 SQL [20753]: pgsql_db_connect() -- 23:44:44.902 INFO [17682]: COREGRADE is starting... -- 23:44:44.902 INFO [17682]: Version from config: 1.0 -- 23:44:44.902 DEBUG [17682]: Connecting to database... -- 23:44:44.902 DEBUG [17682]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:44.902 SQL [17682]: pgsql_db_connect() -- 23:44:44.906 DEBUG [20753]: Database connection successful -- 23:44:44.906 INFO [20753]: _SERVER found -- 23:44:44.906 INFO [20753]: REMOTE_ADDR = 10.0.0.15 -- 23:44:44.906 INFO [20753]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:44.906 INFO [20753]: QUERY_STRING = /.well-known/acme-challenge/jcbBCyvYXIYPHEVOsjmmyDB8kVhLQpR14uDXDWKjYRA -- 23:44:44.906 INFO [20753]: HTTP_X_FORWARDED_FOR = 34.209.232.166 -- 23:44:44.918 INFO [20753]: COREGRADE is stopping... -- 23:44:44.919 DEBUG [20753]: Closing database connection -- 23:44:44.919 SQL [20753]: pgsql_close() -- 23:44:44.907 DEBUG [17682]: Database connection successful -- 23:44:44.907 INFO [17682]: _SERVER found -- 23:44:44.907 INFO [17682]: REMOTE_ADDR = 10.0.0.15 -- 23:44:44.907 INFO [17682]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:44.907 INFO [17682]: QUERY_STRING = /.well-known/acme-challenge/jcbBCyvYXIYPHEVOsjmmyDB8kVhLQpR14uDXDWKjYRA -- 23:44:44.907 INFO [17682]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 23:44:44.922 INFO [17682]: COREGRADE is stopping... -- 23:44:44.922 DEBUG [17682]: Closing database connection -- 23:44:44.922 SQL [17682]: pgsql_close() -- 23:44:45.017 INFO [19110]: COREGRADE is starting... -- 23:44:45.017 INFO [19110]: Version from config: 1.0 -- 23:44:45.017 DEBUG [19110]: Connecting to database... -- 23:44:45.017 DEBUG [19110]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:44:45.017 SQL [19110]: pgsql_db_connect() -- 23:44:45.023 DEBUG [19110]: Database connection successful -- 23:44:45.023 INFO [19110]: _SERVER found -- 23:44:45.023 INFO [19110]: REMOTE_ADDR = 10.0.0.15 -- 23:44:45.023 INFO [19110]: SERVER_NAME = oameye.works.coregrade.com -- 23:44:45.023 INFO [19110]: QUERY_STRING = /.well-known/acme-challenge/jcbBCyvYXIYPHEVOsjmmyDB8kVhLQpR14uDXDWKjYRA -- 23:44:45.023 INFO [19110]: HTTP_X_FORWARDED_FOR = 18.196.96.172 -- 23:44:45.044 INFO [19110]: COREGRADE is stopping... -- 23:44:45.044 DEBUG [19110]: Closing database connection -- 23:44:45.044 SQL [19110]: pgsql_close() -- 09:01:24.386 INFO [28955]: COREGRADE is starting... -- 09:01:24.386 INFO [28955]: Version from config: 1.0 -- 09:01:24.386 DEBUG [28955]: Connecting to database... -- 09:01:24.386 DEBUG [28955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:01:24.386 SQL [28955]: pgsql_db_connect() -- 09:01:24.391 DEBUG [28955]: Database connection successful -- 09:01:24.391 INFO [28955]: _SERVER found -- 09:01:24.391 INFO [28955]: REMOTE_ADDR = 10.0.0.15 -- 09:01:24.391 INFO [28955]: SERVER_NAME = oameye.works.coregrade.com -- 09:01:24.391 INFO [28955]: QUERY_STRING = /robots.txt -- 09:01:24.391 INFO [28955]: HTTP_X_FORWARDED_FOR = 66.249.70.86 -- 09:01:24.408 INFO [28955]: COREGRADE is stopping... -- 09:01:24.409 DEBUG [28955]: Closing database connection -- 09:01:24.409 SQL [28955]: pgsql_close() -- 09:01:24.507 INFO [28956]: COREGRADE is starting... -- 09:01:24.508 INFO [28956]: Version from config: 1.0 -- 09:01:24.508 DEBUG [28956]: Connecting to database... -- 09:01:24.508 DEBUG [28956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:01:24.508 SQL [28956]: pgsql_db_connect() -- 09:01:24.512 DEBUG [28956]: Database connection successful -- 09:01:24.512 INFO [28956]: _SERVER found -- 09:01:24.512 INFO [28956]: REMOTE_ADDR = 10.0.0.15 -- 09:01:24.512 INFO [28956]: SERVER_NAME = oameye.works.coregrade.com -- 09:01:24.512 INFO [28956]: QUERY_STRING = -- 09:01:24.512 INFO [28956]: HTTP_X_FORWARDED_FOR = 66.249.70.84 -- 09:01:24.560 INFO [28956]: COREGRADE is stopping... -- 09:01:24.560 DEBUG [28956]: Closing database connection -- 09:01:24.560 SQL [28956]: pgsql_close() -- 19:28:45.495 INFO [28957]: COREGRADE is starting... -- 19:28:45.495 INFO [28957]: Version from config: 1.0 -- 19:28:45.495 DEBUG [28957]: Connecting to database... -- 19:28:45.495 DEBUG [28957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:28:45.495 SQL [28957]: pgsql_db_connect() -- 19:28:45.500 DEBUG [28957]: Database connection successful -- 19:28:45.500 INFO [28957]: _SERVER found -- 19:28:45.500 INFO [28957]: REMOTE_ADDR = 10.0.0.15 -- 19:28:45.500 INFO [28957]: SERVER_NAME = oameye.works.coregrade.com -- 19:28:45.500 INFO [28957]: QUERY_STRING = /TP/public/index.php -- 19:28:45.500 INFO [28957]: HTTP_X_FORWARDED_FOR = 158.69.188.254 -- 19:28:45.517 INFO [28957]: COREGRADE is stopping... -- 19:28:45.517 DEBUG [28957]: Closing database connection -- 19:28:45.517 SQL [28957]: pgsql_close() -- 19:28:45.757 INFO [17680]: COREGRADE is starting... -- 19:28:45.757 INFO [17680]: Version from config: 1.0 -- 19:28:45.757 DEBUG [17680]: Connecting to database... -- 19:28:45.757 DEBUG [17680]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:28:45.757 SQL [17680]: pgsql_db_connect() -- 19:28:45.762 DEBUG [17680]: Database connection successful -- 19:28:45.762 INFO [17680]: _SERVER found -- 19:28:45.762 INFO [17680]: REMOTE_ADDR = 10.0.0.15 -- 19:28:45.762 INFO [17680]: SERVER_NAME = oameye.works.coregrade.com -- 19:28:45.762 INFO [17680]: QUERY_STRING = /TP/index.php -- 19:28:45.762 INFO [17680]: HTTP_X_FORWARDED_FOR = 158.69.188.254 -- 19:28:45.776 INFO [17680]: COREGRADE is stopping... -- 19:28:45.776 DEBUG [17680]: Closing database connection -- 19:28:45.776 SQL [17680]: pgsql_close() -- 19:28:46.014 INFO [28957]: COREGRADE is starting... -- 19:28:46.015 INFO [28957]: Version from config: 1.0 -- 19:28:46.015 DEBUG [28957]: Connecting to database... -- 19:28:46.015 DEBUG [28957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:28:46.015 SQL [28957]: pgsql_db_connect() -- 19:28:46.019 DEBUG [28957]: Database connection successful -- 19:28:46.019 INFO [28957]: _SERVER found -- 19:28:46.019 INFO [28957]: REMOTE_ADDR = 10.0.0.15 -- 19:28:46.019 INFO [28957]: SERVER_NAME = oameye.works.coregrade.com -- 19:28:46.019 INFO [28957]: QUERY_STRING = /thinkphp/html/public/index.php -- 19:28:46.019 INFO [28957]: HTTP_X_FORWARDED_FOR = 158.69.188.254 -- 19:28:46.030 INFO [28957]: COREGRADE is stopping... -- 19:28:46.030 DEBUG [28957]: Closing database connection -- 19:28:46.030 SQL [28957]: pgsql_close() -- 19:28:46.257 INFO [28957]: COREGRADE is starting... -- 19:28:46.258 INFO [28957]: Version from config: 1.0 -- 19:28:46.258 DEBUG [28957]: Connecting to database... -- 19:28:46.258 DEBUG [28957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:28:46.258 SQL [28957]: pgsql_db_connect() -- 19:28:46.262 DEBUG [28957]: Database connection successful -- 19:28:46.262 INFO [28957]: _SERVER found -- 19:28:46.262 INFO [28957]: REMOTE_ADDR = 10.0.0.15 -- 19:28:46.262 INFO [28957]: SERVER_NAME = oameye.works.coregrade.com -- 19:28:46.262 INFO [28957]: QUERY_STRING = /html/public/index.php -- 19:28:46.262 INFO [28957]: HTTP_X_FORWARDED_FOR = 158.69.188.254 -- 19:28:46.273 INFO [28957]: COREGRADE is stopping... -- 19:28:46.273 DEBUG [28957]: Closing database connection -- 19:28:46.273 SQL [28957]: pgsql_close() -- 19:28:46.503 INFO [28957]: COREGRADE is starting... -- 19:28:46.503 INFO [28957]: Version from config: 1.0 -- 19:28:46.504 DEBUG [28957]: Connecting to database... -- 19:28:46.504 DEBUG [28957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:28:46.504 SQL [28957]: pgsql_db_connect() -- 19:28:46.508 DEBUG [28957]: Database connection successful -- 19:28:46.508 INFO [28957]: _SERVER found -- 19:28:46.508 INFO [28957]: REMOTE_ADDR = 10.0.0.15 -- 19:28:46.508 INFO [28957]: SERVER_NAME = oameye.works.coregrade.com -- 19:28:46.508 INFO [28957]: QUERY_STRING = /public/index.php -- 19:28:46.508 INFO [28957]: HTTP_X_FORWARDED_FOR = 158.69.188.254 -- 19:28:46.519 INFO [28957]: COREGRADE is stopping... -- 19:28:46.519 DEBUG [28957]: Closing database connection -- 19:28:46.519 SQL [28957]: pgsql_close() -- 19:28:46.747 INFO [28957]: COREGRADE is starting... -- 19:28:46.748 INFO [28957]: Version from config: 1.0 -- 19:28:46.748 DEBUG [28957]: Connecting to database... -- 19:28:46.748 DEBUG [28957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:28:46.748 SQL [28957]: pgsql_db_connect() -- 19:28:46.752 DEBUG [28957]: Database connection successful -- 19:28:46.752 INFO [28957]: _SERVER found -- 19:28:46.752 INFO [28957]: REMOTE_ADDR = 10.0.0.15 -- 19:28:46.752 INFO [28957]: SERVER_NAME = oameye.works.coregrade.com -- 19:28:46.752 INFO [28957]: QUERY_STRING = /TP/html/public/index.php -- 19:28:46.752 INFO [28957]: HTTP_X_FORWARDED_FOR = 158.69.188.254 -- 19:28:46.763 INFO [28957]: COREGRADE is stopping... -- 19:28:46.763 DEBUG [28957]: Closing database connection -- 19:28:46.763 SQL [28957]: pgsql_close() -- 19:28:46.995 INFO [28957]: COREGRADE is starting... -- 19:28:46.996 INFO [28957]: Version from config: 1.0 -- 19:28:46.996 DEBUG [28957]: Connecting to database... -- 19:28:46.996 DEBUG [28957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:28:46.996 SQL [28957]: pgsql_db_connect() -- 19:28:46.000 DEBUG [28957]: Database connection successful -- 19:28:46.000 INFO [28957]: _SERVER found -- 19:28:46.000 INFO [28957]: REMOTE_ADDR = 10.0.0.15 -- 19:28:46.000 INFO [28957]: SERVER_NAME = oameye.works.coregrade.com -- 19:28:46.000 INFO [28957]: QUERY_STRING = /elrekt.php -- 19:28:46.000 INFO [28957]: HTTP_X_FORWARDED_FOR = 158.69.188.254 -- 19:28:47.011 INFO [28957]: COREGRADE is stopping... -- 19:28:47.011 DEBUG [28957]: Closing database connection -- 19:28:47.011 SQL [28957]: pgsql_close() -- 19:28:47.241 INFO [20753]: COREGRADE is starting... -- 19:28:47.241 INFO [20753]: Version from config: 1.0 -- 19:28:47.241 DEBUG [20753]: Connecting to database... -- 19:28:47.241 DEBUG [20753]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:28:47.241 SQL [20753]: pgsql_db_connect() -- 19:28:47.245 DEBUG [20753]: Database connection successful -- 19:28:47.245 INFO [20753]: _SERVER found -- 19:28:47.245 INFO [20753]: REMOTE_ADDR = 10.0.0.15 -- 19:28:47.245 INFO [20753]: SERVER_NAME = oameye.works.coregrade.com -- 19:28:47.245 INFO [20753]: QUERY_STRING = -- 19:28:47.245 INFO [20753]: HTTP_X_FORWARDED_FOR = 158.69.188.254 -- 19:28:47.288 INFO [20753]: COREGRADE is stopping... -- 19:28:47.288 DEBUG [20753]: Closing database connection -- 19:28:47.288 SQL [20753]: pgsql_close() -- 19:28:47.521 INFO [17682]: COREGRADE is starting... -- 19:28:47.521 INFO [17682]: Version from config: 1.0 -- 19:28:47.521 DEBUG [17682]: Connecting to database... -- 19:28:47.521 DEBUG [17682]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:28:47.521 SQL [17682]: pgsql_db_connect() -- 19:28:47.525 DEBUG [17682]: Database connection successful -- 19:28:47.525 INFO [17682]: _SERVER found -- 19:28:47.525 INFO [17682]: REMOTE_ADDR = 10.0.0.15 -- 19:28:47.525 INFO [17682]: SERVER_NAME = oameye.works.coregrade.com -- 19:28:47.525 INFO [17682]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 19:28:47.525 INFO [17682]: HTTP_X_FORWARDED_FOR = 158.69.188.254 -- 19:28:47.568 INFO [17682]: COREGRADE is stopping... -- 19:28:47.568 DEBUG [17682]: Closing database connection -- 19:28:47.568 SQL [17682]: pgsql_close() -- 19:28:47.798 INFO [17681]: COREGRADE is starting... -- 19:28:47.799 INFO [17681]: Version from config: 1.0 -- 19:28:47.799 DEBUG [17681]: Connecting to database... -- 19:28:47.799 DEBUG [17681]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:28:47.799 SQL [17681]: pgsql_db_connect() -- 19:28:47.803 DEBUG [17681]: Database connection successful -- 19:28:47.803 INFO [17681]: _SERVER found -- 19:28:47.803 INFO [17681]: REMOTE_ADDR = 10.0.0.15 -- 19:28:47.803 INFO [17681]: SERVER_NAME = oameye.works.coregrade.com -- 19:28:47.803 INFO [17681]: QUERY_STRING = s=captcha -- 19:28:47.803 INFO [17681]: HTTP_X_FORWARDED_FOR = 158.69.188.254 -- 19:28:47.839 INFO [17681]: COREGRADE is stopping... -- 19:28:47.839 DEBUG [17681]: Closing database connection -- 19:28:47.839 SQL [17681]: pgsql_close() -- 19:28:48.067 INFO [28957]: COREGRADE is starting... -- 19:28:48.068 INFO [28957]: Version from config: 1.0 -- 19:28:48.068 DEBUG [28957]: Connecting to database... -- 19:28:48.068 DEBUG [28957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:28:48.068 SQL [28957]: pgsql_db_connect() -- 19:28:48.072 DEBUG [28957]: Database connection successful -- 19:28:48.072 INFO [28957]: _SERVER found -- 19:28:48.072 INFO [28957]: REMOTE_ADDR = 10.0.0.15 -- 19:28:48.072 INFO [28957]: SERVER_NAME = oameye.works.coregrade.com -- 19:28:48.072 INFO [28957]: QUERY_STRING = -- 19:28:48.072 INFO [28957]: HTTP_X_FORWARDED_FOR = 158.69.188.254 -- 19:28:48.111 INFO [28957]: COREGRADE is stopping... -- 19:28:48.111 DEBUG [28957]: Closing database connection -- 19:28:48.111 SQL [28957]: pgsql_close() -- 23:27:37.130 INFO [17683]: COREGRADE is starting... -- 23:27:37.131 INFO [17683]: Version from config: 1.0 -- 23:27:37.131 DEBUG [17683]: Connecting to database... -- 23:27:37.131 DEBUG [17683]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:37.131 SQL [17683]: pgsql_db_connect() -- 23:27:37.135 DEBUG [17683]: Database connection successful -- 23:27:37.135 INFO [17683]: _SERVER found -- 23:27:37.135 INFO [17683]: REMOTE_ADDR = 10.0.0.15 -- 23:27:37.135 INFO [17683]: SERVER_NAME = oameye.works.coregrade.com -- 23:27:37.135 INFO [17683]: QUERY_STRING = /robots.txt -- 23:27:37.135 INFO [17683]: HTTP_X_FORWARDED_FOR = 66.249.75.29 -- 23:27:37.152 INFO [17683]: COREGRADE is stopping... -- 23:27:37.152 DEBUG [17683]: Closing database connection -- 23:27:37.152 SQL [17683]: pgsql_close() -- 23:27:37.267 INFO [19110]: COREGRADE is starting... -- 23:27:37.268 INFO [19110]: Version from config: 1.0 -- 23:27:37.268 DEBUG [19110]: Connecting to database... -- 23:27:37.268 DEBUG [19110]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:37.268 SQL [19110]: pgsql_db_connect() -- 23:27:37.272 DEBUG [19110]: Database connection successful -- 23:27:37.272 INFO [19110]: _SERVER found -- 23:27:37.272 INFO [19110]: REMOTE_ADDR = 10.0.0.15 -- 23:27:37.272 INFO [19110]: SERVER_NAME = oameye.works.coregrade.com -- 23:27:37.272 INFO [19110]: QUERY_STRING = -- 23:27:37.272 INFO [19110]: HTTP_X_FORWARDED_FOR = 66.249.75.31 -- 23:27:37.318 INFO [19110]: COREGRADE is stopping... -- 23:27:37.318 DEBUG [19110]: Closing database connection -- 23:27:37.318 SQL [19110]: pgsql_close() -- 00:22:09.094 INFO [20752]: COREGRADE is starting... -- 00:22:09.095 INFO [20752]: Version from config: 1.0 -- 00:22:09.095 DEBUG [20752]: Connecting to database... -- 00:22:09.095 DEBUG [20752]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:22:09.095 SQL [20752]: pgsql_db_connect() -- 00:22:09.099 DEBUG [20752]: Database connection successful -- 00:22:09.099 INFO [20752]: _SERVER found -- 00:22:09.099 INFO [20752]: REMOTE_ADDR = 10.0.0.15 -- 00:22:09.099 INFO [20752]: SERVER_NAME = oameye.works.coregrade.com -- 00:22:09.099 INFO [20752]: QUERY_STRING = -- 00:22:09.099 INFO [20752]: HTTP_X_FORWARDED_FOR = 198.108.66.252 -- 00:22:09.139 INFO [20752]: COREGRADE is stopping... -- 00:22:09.139 DEBUG [20752]: Closing database connection -- 00:22:09.139 SQL [20752]: pgsql_close() -- 01:28:48.734 INFO [28955]: COREGRADE is starting... -- 01:28:48.734 INFO [28955]: Version from config: 1.0 -- 01:28:48.734 DEBUG [28955]: Connecting to database... -- 01:28:48.734 DEBUG [28955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:48.734 SQL [28955]: pgsql_db_connect() -- 01:28:48.739 DEBUG [28955]: Database connection successful -- 01:28:48.739 INFO [28955]: _SERVER found -- 01:28:48.739 INFO [28955]: REMOTE_ADDR = 10.0.0.15 -- 01:28:48.739 INFO [28955]: SERVER_NAME = oameye.works.coregrade.com -- 01:28:48.739 INFO [28955]: QUERY_STRING = /.well-known/acme-challenge/n6fmMt4JXVHaT21K_89NoVwIWka5W-ouRrHiXcfi_QI -- 01:28:48.739 INFO [28955]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 01:28:48.754 INFO [28955]: COREGRADE is stopping... -- 01:28:48.754 DEBUG [28955]: Closing database connection -- 01:28:48.754 SQL [28955]: pgsql_close() -- 01:28:48.954 INFO [17680]: COREGRADE is starting... -- 01:28:48.954 INFO [17680]: Version from config: 1.0 -- 01:28:48.954 DEBUG [17680]: Connecting to database... -- 01:28:48.954 DEBUG [17680]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:48.954 SQL [17680]: pgsql_db_connect() -- 01:28:48.958 DEBUG [17680]: Database connection successful -- 01:28:48.958 INFO [17680]: _SERVER found -- 01:28:48.958 INFO [17680]: REMOTE_ADDR = 10.0.0.15 -- 01:28:48.958 INFO [17680]: SERVER_NAME = oameye.works.coregrade.com -- 01:28:48.958 INFO [17680]: QUERY_STRING = /.well-known/acme-challenge/n6fmMt4JXVHaT21K_89NoVwIWka5W-ouRrHiXcfi_QI -- 01:28:48.958 INFO [17680]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 01:28:48.976 INFO [17680]: COREGRADE is stopping... -- 01:28:48.976 DEBUG [17680]: Closing database connection -- 01:28:48.976 SQL [17680]: pgsql_close() -- 03:49:22.500 INFO [20753]: COREGRADE is starting... -- 03:49:22.500 INFO [20753]: Version from config: 1.0 -- 03:49:22.500 DEBUG [20753]: Connecting to database... -- 03:49:22.501 DEBUG [20753]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:49:22.501 SQL [20753]: pgsql_db_connect() -- 03:49:22.505 DEBUG [20753]: Database connection successful -- 03:49:22.505 INFO [20753]: _SERVER found -- 03:49:22.505 INFO [20753]: REMOTE_ADDR = 10.0.0.15 -- 03:49:22.505 INFO [20753]: SERVER_NAME = oameye.works.coregrade.com -- 03:49:22.505 INFO [20753]: QUERY_STRING = /wp-login.php -- 03:49:22.505 INFO [20753]: HTTP_X_FORWARDED_FOR = 78.190.117.205 -- 03:49:22.519 INFO [20753]: COREGRADE is stopping... -- 03:49:22.520 DEBUG [20753]: Closing database connection -- 03:49:22.520 SQL [20753]: pgsql_close() -- 10:38:24.811 INFO [17682]: COREGRADE is starting... -- 10:38:24.811 INFO [17682]: Version from config: 1.0 -- 10:38:24.811 DEBUG [17682]: Connecting to database... -- 10:38:24.811 DEBUG [17682]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:38:24.811 SQL [17682]: pgsql_db_connect() -- 10:38:24.816 DEBUG [17682]: Database connection successful -- 10:38:24.816 INFO [17682]: _SERVER found -- 10:38:24.816 INFO [17682]: REMOTE_ADDR = 10.0.0.15 -- 10:38:24.816 INFO [17682]: SERVER_NAME = oameye.works.coregrade.com -- 10:38:24.816 INFO [17682]: QUERY_STRING = -- 10:38:24.816 INFO [17682]: HTTP_X_FORWARDED_FOR = 3.94.182.23 -- 10:38:24.856 INFO [17682]: COREGRADE is stopping... -- 10:38:24.856 DEBUG [17682]: Closing database connection -- 10:38:24.856 SQL [17682]: pgsql_close() -- 11:32:14.198 INFO [17681]: COREGRADE is starting... -- 11:32:14.198 INFO [17681]: Version from config: 1.0 -- 11:32:14.198 DEBUG [17681]: Connecting to database... -- 11:32:14.198 DEBUG [17681]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:32:14.198 SQL [17681]: pgsql_db_connect() -- 11:32:14.203 DEBUG [17681]: Database connection successful -- 11:32:14.203 INFO [17681]: _SERVER found -- 11:32:14.203 INFO [17681]: REMOTE_ADDR = 10.0.0.15 -- 11:32:14.203 INFO [17681]: SERVER_NAME = oameye.works.coregrade.com -- 11:32:14.203 INFO [17681]: QUERY_STRING = /TP/public/index.php -- 11:32:14.203 INFO [17681]: HTTP_X_FORWARDED_FOR = 62.234.218.151 -- 11:32:14.220 INFO [17681]: COREGRADE is stopping... -- 11:32:14.220 DEBUG [17681]: Closing database connection -- 11:32:14.220 SQL [17681]: pgsql_close() -- 19:05:59.745 INFO [28957]: COREGRADE is starting... -- 19:05:59.746 INFO [28957]: Version from config: 1.0 -- 19:05:59.746 DEBUG [28957]: Connecting to database... -- 19:05:59.746 DEBUG [28957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:05:59.746 SQL [28957]: pgsql_db_connect() -- 19:05:59.751 DEBUG [28957]: Database connection successful -- 19:05:59.751 INFO [28957]: _SERVER found -- 19:05:59.751 INFO [28957]: REMOTE_ADDR = 10.0.0.15 -- 19:05:59.751 INFO [28957]: SERVER_NAME = oameye.works.coregrade.com -- 19:05:59.751 INFO [28957]: QUERY_STRING = -- 19:05:59.751 INFO [28957]: HTTP_X_FORWARDED_FOR = 75.35.39.188 -- 19:05:59.791 INFO [28957]: COREGRADE is stopping... -- 19:05:59.791 DEBUG [28957]: Closing database connection -- 19:05:59.791 SQL [28957]: pgsql_close() -- 01:18:22.426 INFO [17683]: COREGRADE is starting... -- 01:18:22.427 INFO [17683]: Version from config: 1.0 -- 01:18:22.427 DEBUG [17683]: Connecting to database... -- 01:18:22.427 DEBUG [17683]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:18:22.427 SQL [17683]: pgsql_db_connect() -- 01:18:22.432 DEBUG [17683]: Database connection successful -- 01:18:22.432 INFO [17683]: _SERVER found -- 01:18:22.432 INFO [17683]: REMOTE_ADDR = 10.0.0.15 -- 01:18:22.432 INFO [17683]: SERVER_NAME = oameye.works.coregrade.com -- 01:18:22.432 INFO [17683]: HTTP_COOKIE = _ga=GA1.2.1225727811.1567027035 -- 01:18:22.432 INFO [17683]: QUERY_STRING = -- 01:18:22.432 INFO [17683]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 01:18:22.474 INFO [17683]: COREGRADE is stopping... -- 01:18:22.474 DEBUG [17683]: Closing database connection -- 01:18:22.474 SQL [17683]: pgsql_close() -- 01:18:23.307 INFO [28955]: COREGRADE is starting... -- 01:18:23.307 INFO [28955]: Version from config: 1.0 -- 01:18:23.307 DEBUG [28955]: Connecting to database... -- 01:18:23.307 DEBUG [28955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:18:23.307 SQL [28955]: pgsql_db_connect() -- 01:18:23.312 DEBUG [28955]: Database connection successful -- 01:18:23.312 INFO [28955]: _SERVER found -- 01:18:23.312 INFO [28955]: REMOTE_ADDR = 10.0.0.15 -- 01:18:23.312 INFO [28955]: SERVER_NAME = oameye.works.coregrade.com -- 01:18:23.312 INFO [28955]: HTTP_COOKIE = _ga=GA1.2.1225727811.1567027035; ci_session=r9k106lbg467g1da4dc5dvl8cutqss3r -- 01:18:23.312 INFO [28955]: QUERY_STRING = /assets/img/footer_1.jpg -- 01:18:23.312 INFO [28955]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 01:18:23.325 INFO [28955]: COREGRADE is stopping... -- 01:18:23.325 DEBUG [28955]: Closing database connection -- 01:18:23.325 SQL [28955]: pgsql_close() -- 01:32:39.687 INFO [17680]: COREGRADE is starting... -- 01:32:39.687 INFO [17680]: Version from config: 1.0 -- 01:32:39.687 DEBUG [17680]: Connecting to database... -- 01:32:39.687 DEBUG [17680]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:32:39.687 SQL [17680]: pgsql_db_connect() -- 01:32:39.692 DEBUG [17680]: Database connection successful -- 01:32:39.692 INFO [17680]: _SERVER found -- 01:32:39.692 INFO [17680]: REMOTE_ADDR = 10.0.0.15 -- 01:32:39.692 INFO [17680]: SERVER_NAME = oameye.works.coregrade.com -- 01:32:39.692 INFO [17680]: QUERY_STRING = /.well-known/acme-challenge/cGn_k4i5oKe_bzFSzHDCRjuk56LGdKrTmZVZtmNVYu0 -- 01:32:39.692 INFO [17680]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 01:32:39.708 INFO [17680]: COREGRADE is stopping... -- 01:32:39.708 DEBUG [17680]: Closing database connection -- 01:32:39.708 SQL [17680]: pgsql_close() -- 01:32:39.817 INFO [17680]: COREGRADE is starting... -- 01:32:39.817 INFO [17680]: Version from config: 1.0 -- 01:32:39.817 DEBUG [17680]: Connecting to database... -- 01:32:39.817 DEBUG [17680]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:32:39.817 SQL [17680]: pgsql_db_connect() -- 01:32:39.821 DEBUG [17680]: Database connection successful -- 01:32:39.821 INFO [17680]: _SERVER found -- 01:32:39.821 INFO [17680]: REMOTE_ADDR = 10.0.0.15 -- 01:32:39.821 INFO [17680]: SERVER_NAME = oameye.works.coregrade.com -- 01:32:39.821 INFO [17680]: QUERY_STRING = /.well-known/acme-challenge/cGn_k4i5oKe_bzFSzHDCRjuk56LGdKrTmZVZtmNVYu0 -- 01:32:39.821 INFO [17680]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 01:32:39.833 INFO [17680]: COREGRADE is stopping... -- 01:32:39.833 DEBUG [17680]: Closing database connection -- 01:32:39.833 SQL [17680]: pgsql_close() -- 04:05:36.258 INFO [17682]: COREGRADE is starting... -- 04:05:36.258 INFO [17682]: Version from config: 1.0 -- 04:05:36.258 DEBUG [17682]: Connecting to database... -- 04:05:36.258 DEBUG [17682]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:05:36.258 SQL [17682]: pgsql_db_connect() -- 04:05:36.263 DEBUG [17682]: Database connection successful -- 04:05:36.263 INFO [17682]: _SERVER found -- 04:05:36.263 INFO [17682]: REMOTE_ADDR = 10.0.0.15 -- 04:05:36.263 INFO [17682]: SERVER_NAME = oameye.works.coregrade.com -- 04:05:36.263 INFO [17682]: HTTP_COOKIE = _ga=GA1.2.1225727811.1567027035; _gid=GA1.2.1616193254.1589433503 -- 04:05:36.263 INFO [17682]: QUERY_STRING = -- 04:05:36.263 INFO [17682]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 04:05:36.300 INFO [17682]: COREGRADE is stopping... -- 04:05:36.301 DEBUG [17682]: Closing database connection -- 04:05:36.301 SQL [17682]: pgsql_close() -- 04:05:36.467 INFO [17682]: COREGRADE is starting... -- 04:05:36.467 INFO [17682]: Version from config: 1.0 -- 04:05:36.467 DEBUG [17682]: Connecting to database... -- 04:05:36.467 DEBUG [17682]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:05:36.467 SQL [17682]: pgsql_db_connect() -- 04:05:36.471 DEBUG [17682]: Database connection successful -- 04:05:36.471 INFO [17682]: _SERVER found -- 04:05:36.471 INFO [17682]: REMOTE_ADDR = 10.0.0.15 -- 04:05:36.471 INFO [17682]: SERVER_NAME = oameye.works.coregrade.com -- 04:05:36.471 INFO [17682]: HTTP_COOKIE = _ga=GA1.2.1225727811.1567027035; _gid=GA1.2.1616193254.1589433503; ci_session=lr8e5o0dc5pm3oh3t72d9791qtr1qlhj -- 04:05:36.471 INFO [17682]: QUERY_STRING = /assets/img/footer_1.jpg -- 04:05:36.471 INFO [17682]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 04:05:36.483 INFO [17682]: COREGRADE is stopping... -- 04:05:36.483 DEBUG [17682]: Closing database connection -- 04:05:36.483 SQL [17682]: pgsql_close() -- 07:00:49.422 INFO [17681]: COREGRADE is starting... -- 07:00:49.423 INFO [17681]: Version from config: 1.0 -- 07:00:49.423 DEBUG [17681]: Connecting to database... -- 07:00:49.423 DEBUG [17681]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:00:49.423 SQL [17681]: pgsql_db_connect() -- 07:00:49.427 DEBUG [17681]: Database connection successful -- 07:00:49.427 INFO [17681]: _SERVER found -- 07:00:49.427 INFO [17681]: REMOTE_ADDR = 10.0.0.15 -- 07:00:49.427 INFO [17681]: SERVER_NAME = oameye.works.coregrade.com -- 07:00:49.427 INFO [17681]: QUERY_STRING = -- 07:00:49.427 INFO [17681]: HTTP_X_FORWARDED_FOR = 185.234.218.68 -- 07:00:49.467 INFO [17681]: COREGRADE is stopping... -- 07:00:49.467 DEBUG [17681]: Closing database connection -- 07:00:49.467 SQL [17681]: pgsql_close() -- 21:28:14.209 INFO [28957]: COREGRADE is starting... -- 21:28:14.209 INFO [28957]: Version from config: 1.0 -- 21:28:14.209 DEBUG [28957]: Connecting to database... -- 21:28:14.209 DEBUG [28957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:28:14.209 SQL [28957]: pgsql_db_connect() -- 21:28:14.215 DEBUG [28957]: Database connection successful -- 21:28:14.215 INFO [28957]: _SERVER found -- 21:28:14.215 INFO [28957]: REMOTE_ADDR = 10.0.0.15 -- 21:28:14.215 INFO [28957]: SERVER_NAME = oameye.works.coregrade.com -- 21:28:14.215 INFO [28957]: QUERY_STRING = /robots.txt -- 21:28:14.215 INFO [28957]: HTTP_X_FORWARDED_FOR = 66.249.70.84 -- 21:28:14.231 INFO [28957]: COREGRADE is stopping... -- 21:28:14.231 DEBUG [28957]: Closing database connection -- 21:28:14.231 SQL [28957]: pgsql_close() -- 21:28:14.329 INFO [19110]: COREGRADE is starting... -- 21:28:14.329 INFO [19110]: Version from config: 1.0 -- 21:28:14.329 DEBUG [19110]: Connecting to database... -- 21:28:14.329 DEBUG [19110]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:28:14.330 SQL [19110]: pgsql_db_connect() -- 21:28:14.334 DEBUG [19110]: Database connection successful -- 21:28:14.334 INFO [19110]: _SERVER found -- 21:28:14.334 INFO [19110]: REMOTE_ADDR = 10.0.0.15 -- 21:28:14.334 INFO [19110]: SERVER_NAME = oameye.works.coregrade.com -- 21:28:14.334 INFO [19110]: QUERY_STRING = /home/terms -- 21:28:14.334 INFO [19110]: HTTP_X_FORWARDED_FOR = 66.249.70.86 -- 21:28:14.374 INFO [19110]: COREGRADE is stopping... -- 21:28:14.374 DEBUG [19110]: Closing database connection -- 21:28:14.374 SQL [19110]: pgsql_close() -- 23:20:30.420 INFO [20752]: COREGRADE is starting... -- 23:20:30.421 INFO [20752]: Version from config: 1.0 -- 23:20:30.421 DEBUG [20752]: Connecting to database... -- 23:20:30.421 DEBUG [20752]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:20:30.421 SQL [20752]: pgsql_db_connect() -- 23:20:30.425 DEBUG [20752]: Database connection successful -- 23:20:30.425 INFO [20752]: _SERVER found -- 23:20:30.425 INFO [20752]: REMOTE_ADDR = 10.0.0.15 -- 23:20:30.425 INFO [20752]: SERVER_NAME = oameye.works.coregrade.com -- 23:20:30.425 INFO [20752]: QUERY_STRING = -- 23:20:30.425 INFO [20752]: HTTP_X_FORWARDED_FOR = 161.35.48.60 -- 23:20:30.466 INFO [20752]: COREGRADE is stopping... -- 23:20:30.466 DEBUG [20752]: Closing database connection -- 23:20:30.466 SQL [20752]: pgsql_close() -- 23:36:20.704 INFO [28956]: COREGRADE is starting... -- 23:36:20.705 INFO [28956]: Version from config: 1.0 -- 23:36:20.705 DEBUG [28956]: Connecting to database... -- 23:36:20.705 DEBUG [28956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:36:20.705 SQL [28956]: pgsql_db_connect() -- 23:36:20.710 DEBUG [28956]: Database connection successful -- 23:36:20.710 INFO [28956]: _SERVER found -- 23:36:20.710 INFO [28956]: REMOTE_ADDR = 10.0.0.15 -- 23:36:20.710 INFO [28956]: SERVER_NAME = oameye.works.coregrade.com -- 23:36:20.710 INFO [28956]: QUERY_STRING = /.well-known/acme-challenge/PZ1_0WzpiPzBxg0de25KXh3WUGqxr4BKaHx96oKR48s -- 23:36:20.710 INFO [28956]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 23:36:20.730 INFO [28956]: COREGRADE is stopping... -- 23:36:20.731 DEBUG [28956]: Closing database connection -- 23:36:20.731 SQL [28956]: pgsql_close() -- 23:36:20.906 INFO [17683]: COREGRADE is starting... -- 23:36:20.906 INFO [17683]: Version from config: 1.0 -- 23:36:20.906 DEBUG [17683]: Connecting to database... -- 23:36:20.906 DEBUG [17683]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:36:20.906 SQL [17683]: pgsql_db_connect() -- 23:36:20.911 DEBUG [17683]: Database connection successful -- 23:36:20.911 INFO [17683]: _SERVER found -- 23:36:20.911 INFO [17683]: REMOTE_ADDR = 10.0.0.15 -- 23:36:20.911 INFO [17683]: SERVER_NAME = oameye.works.coregrade.com -- 23:36:20.911 INFO [17683]: QUERY_STRING = /.well-known/acme-challenge/PZ1_0WzpiPzBxg0de25KXh3WUGqxr4BKaHx96oKR48s -- 23:36:20.911 INFO [17683]: HTTP_X_FORWARDED_FOR = 34.209.232.166 -- 23:36:20.925 INFO [17683]: COREGRADE is stopping... -- 23:36:20.925 DEBUG [17683]: Closing database connection -- 23:36:20.925 SQL [17683]: pgsql_close() -- 23:36:20.966 INFO [17680]: COREGRADE is starting... -- 23:36:20.966 INFO [17680]: Version from config: 1.0 -- 23:36:20.966 DEBUG [17680]: Connecting to database... -- 23:36:20.966 DEBUG [17680]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:36:20.966 SQL [17680]: pgsql_db_connect() -- 23:36:20.970 DEBUG [17680]: Database connection successful -- 23:36:20.970 INFO [17680]: _SERVER found -- 23:36:20.970 INFO [17680]: REMOTE_ADDR = 10.0.0.15 -- 23:36:20.970 INFO [17680]: SERVER_NAME = oameye.works.coregrade.com -- 23:36:20.970 INFO [17680]: QUERY_STRING = /.well-known/acme-challenge/PZ1_0WzpiPzBxg0de25KXh3WUGqxr4BKaHx96oKR48s -- 23:36:20.970 INFO [17680]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 23:36:20.993 INFO [17680]: COREGRADE is stopping... -- 23:36:20.993 DEBUG [17680]: Closing database connection -- 23:36:20.993 SQL [17680]: pgsql_close() -- 23:36:21.022 INFO [17682]: COREGRADE is starting... -- 23:36:21.022 INFO [17682]: Version from config: 1.0 -- 23:36:21.022 DEBUG [17682]: Connecting to database... -- 23:36:21.022 DEBUG [17682]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:36:21.022 SQL [17682]: pgsql_db_connect() -- 23:36:21.026 DEBUG [17682]: Database connection successful -- 23:36:21.026 INFO [17682]: _SERVER found -- 23:36:21.026 INFO [17682]: REMOTE_ADDR = 10.0.0.15 -- 23:36:21.026 INFO [17682]: SERVER_NAME = oameye.works.coregrade.com -- 23:36:21.026 INFO [17682]: QUERY_STRING = /.well-known/acme-challenge/PZ1_0WzpiPzBxg0de25KXh3WUGqxr4BKaHx96oKR48s -- 23:36:21.026 INFO [17682]: HTTP_X_FORWARDED_FOR = 52.28.236.88 -- 23:36:21.039 INFO [17682]: COREGRADE is stopping... -- 23:36:21.039 DEBUG [17682]: Closing database connection -- 23:36:21.039 SQL [17682]: pgsql_close() -- 09:32:55.691 INFO [20752]: COREGRADE is starting... -- 09:32:55.691 INFO [20752]: Version from config: 1.0 -- 09:32:55.691 DEBUG [20752]: Connecting to database... -- 09:32:55.691 DEBUG [20752]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:32:55.691 SQL [20752]: pgsql_db_connect() -- 09:32:55.697 DEBUG [20752]: Database connection successful -- 09:32:55.697 INFO [20752]: _SERVER found -- 09:32:55.697 INFO [20752]: REMOTE_ADDR = 10.0.0.15 -- 09:32:55.697 INFO [20752]: SERVER_NAME = oameye.works.coregrade.com -- 09:32:55.697 INFO [20752]: QUERY_STRING = -- 09:32:55.697 INFO [20752]: HTTP_X_FORWARDED_FOR = 173.249.37.142 -- 09:32:55.739 INFO [20752]: COREGRADE is stopping... -- 09:32:55.739 DEBUG [20752]: Closing database connection -- 09:32:55.739 SQL [20752]: pgsql_close() -- 15:34:39.113 INFO [14933]: COREGRADE is starting... -- 15:34:39.114 INFO [14933]: Version from config: 1.0 -- 15:34:39.114 DEBUG [14933]: Connecting to database... -- 15:34:39.114 DEBUG [14933]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:34:39.114 SQL [14933]: pgsql_db_connect() -- 15:34:39.119 DEBUG [14933]: Database connection successful -- 15:34:39.119 INFO [14933]: _SERVER found -- 15:34:39.119 INFO [14933]: REMOTE_ADDR = 10.0.0.15 -- 15:34:39.119 INFO [14933]: SERVER_NAME = oameye.works.coregrade.com -- 15:34:39.119 INFO [14933]: QUERY_STRING = /TP/public/index.php -- 15:34:39.119 INFO [14933]: HTTP_X_FORWARDED_FOR = 106.52.163.90 -- 15:34:39.137 INFO [14933]: COREGRADE is stopping... -- 15:34:39.137 DEBUG [14933]: Closing database connection -- 15:34:39.137 SQL [14933]: pgsql_close() -- 15:34:40.604 INFO [14934]: COREGRADE is starting... -- 15:34:40.604 INFO [14934]: Version from config: 1.0 -- 15:34:40.604 DEBUG [14934]: Connecting to database... -- 15:34:40.604 DEBUG [14934]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:34:40.604 SQL [14934]: pgsql_db_connect() -- 15:34:40.609 DEBUG [14934]: Database connection successful -- 15:34:40.609 INFO [14934]: _SERVER found -- 15:34:40.609 INFO [14934]: REMOTE_ADDR = 10.0.0.15 -- 15:34:40.609 INFO [14934]: SERVER_NAME = oameye.works.coregrade.com -- 15:34:40.609 INFO [14934]: QUERY_STRING = /TP/index.php -- 15:34:40.609 INFO [14934]: HTTP_X_FORWARDED_FOR = 106.52.163.90 -- 15:34:40.624 INFO [14934]: COREGRADE is stopping... -- 15:34:40.624 DEBUG [14934]: Closing database connection -- 15:34:40.625 SQL [14934]: pgsql_close() -- 15:34:42.066 INFO [14933]: COREGRADE is starting... -- 15:34:42.067 INFO [14933]: Version from config: 1.0 -- 15:34:42.067 DEBUG [14933]: Connecting to database... -- 15:34:42.067 DEBUG [14933]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:34:42.067 SQL [14933]: pgsql_db_connect() -- 15:34:42.071 DEBUG [14933]: Database connection successful -- 15:34:42.071 INFO [14933]: _SERVER found -- 15:34:42.071 INFO [14933]: REMOTE_ADDR = 10.0.0.15 -- 15:34:42.071 INFO [14933]: SERVER_NAME = oameye.works.coregrade.com -- 15:34:42.071 INFO [14933]: QUERY_STRING = /thinkphp/html/public/index.php -- 15:34:42.071 INFO [14933]: HTTP_X_FORWARDED_FOR = 106.52.163.90 -- 15:34:42.084 INFO [14933]: COREGRADE is stopping... -- 15:34:42.084 DEBUG [14933]: Closing database connection -- 15:34:42.084 SQL [14933]: pgsql_close() -- 15:34:43.516 INFO [14933]: COREGRADE is starting... -- 15:34:43.516 INFO [14933]: Version from config: 1.0 -- 15:34:43.516 DEBUG [14933]: Connecting to database... -- 15:34:43.516 DEBUG [14933]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:34:43.516 SQL [14933]: pgsql_db_connect() -- 15:34:43.520 DEBUG [14933]: Database connection successful -- 15:34:43.520 INFO [14933]: _SERVER found -- 15:34:43.520 INFO [14933]: REMOTE_ADDR = 10.0.0.15 -- 15:34:43.520 INFO [14933]: SERVER_NAME = oameye.works.coregrade.com -- 15:34:43.520 INFO [14933]: QUERY_STRING = /html/public/index.php -- 15:34:43.520 INFO [14933]: HTTP_X_FORWARDED_FOR = 106.52.163.90 -- 15:34:43.531 INFO [14933]: COREGRADE is stopping... -- 15:34:43.531 DEBUG [14933]: Closing database connection -- 15:34:43.532 SQL [14933]: pgsql_close() -- 15:34:45.228 INFO [14933]: COREGRADE is starting... -- 15:34:45.229 INFO [14933]: Version from config: 1.0 -- 15:34:45.229 DEBUG [14933]: Connecting to database... -- 15:34:45.229 DEBUG [14933]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:34:45.229 SQL [14933]: pgsql_db_connect() -- 15:34:45.233 DEBUG [14933]: Database connection successful -- 15:34:45.233 INFO [14933]: _SERVER found -- 15:34:45.233 INFO [14933]: REMOTE_ADDR = 10.0.0.15 -- 15:34:45.233 INFO [14933]: SERVER_NAME = oameye.works.coregrade.com -- 15:34:45.233 INFO [14933]: QUERY_STRING = /public/index.php -- 15:34:45.233 INFO [14933]: HTTP_X_FORWARDED_FOR = 106.52.163.90 -- 15:34:45.244 INFO [14933]: COREGRADE is stopping... -- 15:34:45.244 DEBUG [14933]: Closing database connection -- 15:34:45.244 SQL [14933]: pgsql_close() -- 15:34:46.650 INFO [28956]: COREGRADE is starting... -- 15:34:46.650 INFO [28956]: Version from config: 1.0 -- 15:34:46.650 DEBUG [28956]: Connecting to database... -- 15:34:46.650 DEBUG [28956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:34:46.650 SQL [28956]: pgsql_db_connect() -- 15:34:46.654 DEBUG [28956]: Database connection successful -- 15:34:46.654 INFO [28956]: _SERVER found -- 15:34:46.654 INFO [28956]: REMOTE_ADDR = 10.0.0.15 -- 15:34:46.654 INFO [28956]: SERVER_NAME = oameye.works.coregrade.com -- 15:34:46.654 INFO [28956]: QUERY_STRING = /TP/html/public/index.php -- 15:34:46.654 INFO [28956]: HTTP_X_FORWARDED_FOR = 106.52.163.90 -- 15:34:46.668 INFO [28956]: COREGRADE is stopping... -- 15:34:46.668 DEBUG [28956]: Closing database connection -- 15:34:46.668 SQL [28956]: pgsql_close() -- 15:34:48.147 INFO [14933]: COREGRADE is starting... -- 15:34:48.147 INFO [14933]: Version from config: 1.0 -- 15:34:48.147 DEBUG [14933]: Connecting to database... -- 15:34:48.147 DEBUG [14933]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:34:48.147 SQL [14933]: pgsql_db_connect() -- 15:34:48.151 DEBUG [14933]: Database connection successful -- 15:34:48.151 INFO [14933]: _SERVER found -- 15:34:48.151 INFO [14933]: REMOTE_ADDR = 10.0.0.15 -- 15:34:48.151 INFO [14933]: SERVER_NAME = oameye.works.coregrade.com -- 15:34:48.151 INFO [14933]: QUERY_STRING = /elrekt.php -- 15:34:48.151 INFO [14933]: HTTP_X_FORWARDED_FOR = 106.52.163.90 -- 15:34:48.163 INFO [14933]: COREGRADE is stopping... -- 15:34:48.163 DEBUG [14933]: Closing database connection -- 15:34:48.163 SQL [14933]: pgsql_close() -- 15:34:49.500 INFO [14933]: COREGRADE is starting... -- 15:34:49.500 INFO [14933]: Version from config: 1.0 -- 15:34:49.500 DEBUG [14933]: Connecting to database... -- 15:34:49.500 DEBUG [14933]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:34:49.500 SQL [14933]: pgsql_db_connect() -- 15:34:49.504 DEBUG [14933]: Database connection successful -- 15:34:49.504 INFO [14933]: _SERVER found -- 15:34:49.504 INFO [14933]: REMOTE_ADDR = 10.0.0.15 -- 15:34:49.504 INFO [14933]: SERVER_NAME = oameye.works.coregrade.com -- 15:34:49.504 INFO [14933]: QUERY_STRING = -- 15:34:49.504 INFO [14933]: HTTP_X_FORWARDED_FOR = 106.52.163.90 -- 15:34:49.547 INFO [14933]: COREGRADE is stopping... -- 15:34:49.547 DEBUG [14933]: Closing database connection -- 15:34:49.547 SQL [14933]: pgsql_close() -- 15:34:50.960 INFO [14933]: COREGRADE is starting... -- 15:34:50.960 INFO [14933]: Version from config: 1.0 -- 15:34:50.960 DEBUG [14933]: Connecting to database... -- 15:34:50.960 DEBUG [14933]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:34:50.960 SQL [14933]: pgsql_db_connect() -- 15:34:50.964 DEBUG [14933]: Database connection successful -- 15:34:50.964 INFO [14933]: _SERVER found -- 15:34:50.964 INFO [14933]: REMOTE_ADDR = 10.0.0.15 -- 15:34:50.964 INFO [14933]: SERVER_NAME = oameye.works.coregrade.com -- 15:34:50.964 INFO [14933]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 15:34:50.964 INFO [14933]: HTTP_X_FORWARDED_FOR = 106.52.163.90 -- 15:34:50.999 INFO [14933]: COREGRADE is stopping... -- 15:34:50.999 DEBUG [14933]: Closing database connection -- 15:34:50.999 SQL [14933]: pgsql_close() -- 15:34:52.397 INFO [14933]: COREGRADE is starting... -- 15:34:52.398 INFO [14933]: Version from config: 1.0 -- 15:34:52.398 DEBUG [14933]: Connecting to database... -- 15:34:52.398 DEBUG [14933]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:34:52.398 SQL [14933]: pgsql_db_connect() -- 15:34:52.402 DEBUG [14933]: Database connection successful -- 15:34:52.402 INFO [14933]: _SERVER found -- 15:34:52.402 INFO [14933]: REMOTE_ADDR = 10.0.0.15 -- 15:34:52.402 INFO [14933]: SERVER_NAME = oameye.works.coregrade.com -- 15:34:52.402 INFO [14933]: QUERY_STRING = s=captcha -- 15:34:52.402 INFO [14933]: HTTP_X_FORWARDED_FOR = 106.52.163.90 -- 15:34:52.435 INFO [14933]: COREGRADE is stopping... -- 15:34:52.435 DEBUG [14933]: Closing database connection -- 15:34:52.435 SQL [14933]: pgsql_close() -- 15:34:53.830 INFO [28955]: COREGRADE is starting... -- 15:34:53.830 INFO [28955]: Version from config: 1.0 -- 15:34:53.830 DEBUG [28955]: Connecting to database... -- 15:34:53.830 DEBUG [28955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:34:53.830 SQL [28955]: pgsql_db_connect() -- 15:34:53.834 DEBUG [28955]: Database connection successful -- 15:34:53.834 INFO [28955]: _SERVER found -- 15:34:53.834 INFO [28955]: REMOTE_ADDR = 10.0.0.15 -- 15:34:53.834 INFO [28955]: SERVER_NAME = oameye.works.coregrade.com -- 15:34:53.834 INFO [28955]: QUERY_STRING = -- 15:34:53.834 INFO [28955]: HTTP_X_FORWARDED_FOR = 106.52.163.90 -- 15:34:53.875 INFO [28955]: COREGRADE is stopping... -- 15:34:53.875 DEBUG [28955]: Closing database connection -- 15:34:53.875 SQL [28955]: pgsql_close() -- 17:05:56.396 INFO [17683]: COREGRADE is starting... -- 17:05:56.397 INFO [17683]: Version from config: 1.0 -- 17:05:56.397 DEBUG [17683]: Connecting to database... -- 17:05:56.397 DEBUG [17683]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:56.397 SQL [17683]: pgsql_db_connect() -- 17:05:56.401 DEBUG [17683]: Database connection successful -- 17:05:56.401 INFO [17683]: _SERVER found -- 17:05:56.401 INFO [17683]: REMOTE_ADDR = 10.0.0.15 -- 17:05:56.401 INFO [17683]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:56.401 INFO [17683]: QUERY_STRING = -- 17:05:56.401 INFO [17683]: HTTP_X_FORWARDED_FOR = 80.82.68.18 -- 17:05:56.441 INFO [17683]: COREGRADE is stopping... -- 17:05:56.441 DEBUG [17683]: Closing database connection -- 17:05:56.441 SQL [17683]: pgsql_close() -- 17:05:56.845 INFO [17683]: COREGRADE is starting... -- 17:05:56.845 INFO [17683]: Version from config: 1.0 -- 17:05:56.845 DEBUG [17683]: Connecting to database... -- 17:05:56.845 DEBUG [17683]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:05:56.845 SQL [17683]: pgsql_db_connect() -- 17:05:56.849 DEBUG [17683]: Database connection successful -- 17:05:56.849 INFO [17683]: _SERVER found -- 17:05:56.849 INFO [17683]: REMOTE_ADDR = 10.0.0.15 -- 17:05:56.849 INFO [17683]: SERVER_NAME = oameye.works.coregrade.com -- 17:05:56.849 INFO [17683]: QUERY_STRING = /robots.txt -- 17:05:56.849 INFO [17683]: HTTP_X_FORWARDED_FOR = 80.82.68.18 -- 17:05:56.861 INFO [17683]: COREGRADE is stopping... -- 17:05:56.861 DEBUG [17683]: Closing database connection -- 17:05:56.861 SQL [17683]: pgsql_close() -- 20:21:17.190 INFO [17680]: COREGRADE is starting... -- 20:21:17.190 INFO [17680]: Version from config: 1.0 -- 20:21:17.190 DEBUG [17680]: Connecting to database... -- 20:21:17.190 DEBUG [17680]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:21:17.190 SQL [17680]: pgsql_db_connect() -- 20:21:17.195 DEBUG [17680]: Database connection successful -- 20:21:17.195 INFO [17680]: _SERVER found -- 20:21:17.195 INFO [17680]: REMOTE_ADDR = 10.0.0.15 -- 20:21:17.195 INFO [17680]: SERVER_NAME = oameye.works.coregrade.com -- 20:21:17.195 INFO [17680]: HTTP_COOKIE = _ga=GA1.2.1225727811.1567027035 -- 20:21:17.195 INFO [17680]: QUERY_STRING = -- 20:21:17.195 INFO [17680]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:21:17.242 INFO [17680]: COREGRADE is stopping... -- 20:21:17.242 DEBUG [17680]: Closing database connection -- 20:21:17.242 SQL [17680]: pgsql_close() -- 20:21:17.384 INFO [17680]: COREGRADE is starting... -- 20:21:17.384 INFO [17680]: Version from config: 1.0 -- 20:21:17.384 DEBUG [17680]: Connecting to database... -- 20:21:17.384 DEBUG [17680]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:21:17.384 SQL [17680]: pgsql_db_connect() -- 20:21:17.388 DEBUG [17680]: Database connection successful -- 20:21:17.388 INFO [17680]: _SERVER found -- 20:21:17.388 INFO [17680]: REMOTE_ADDR = 10.0.0.15 -- 20:21:17.388 INFO [17680]: SERVER_NAME = oameye.works.coregrade.com -- 20:21:17.388 INFO [17680]: HTTP_COOKIE = _ga=GA1.2.1225727811.1567027035; ci_session=2aps3qpte28dmntfi4fj2amsdbis2625 -- 20:21:17.388 INFO [17680]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:21:17.388 INFO [17680]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:21:17.400 INFO [17680]: COREGRADE is stopping... -- 20:21:17.400 DEBUG [17680]: Closing database connection -- 20:21:17.400 SQL [17680]: pgsql_close() -- 20:22:03.656 INFO [17682]: COREGRADE is starting... -- 20:22:03.656 INFO [17682]: Version from config: 1.0 -- 20:22:03.656 DEBUG [17682]: Connecting to database... -- 20:22:03.656 DEBUG [17682]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:22:03.656 SQL [17682]: pgsql_db_connect() -- 20:22:03.660 DEBUG [17682]: Database connection successful -- 20:22:03.660 INFO [17682]: _SERVER found -- 20:22:03.660 INFO [17682]: REMOTE_ADDR = 10.0.0.15 -- 20:22:03.660 INFO [17682]: SERVER_NAME = oameye.works.coregrade.com -- 20:22:03.660 INFO [17682]: HTTP_COOKIE = _ga=GA1.2.1225727811.1567027035; ci_session=2aps3qpte28dmntfi4fj2amsdbis2625; _gid=GA1.2.1729814545.1589588478; _gat_gtag_UA_54829827_2=1 -- 20:22:03.660 INFO [17682]: QUERY_STRING = /auth -- 20:22:03.660 INFO [17682]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:22:03.699 INFO [17682]: COREGRADE is stopping... -- 20:22:03.699 DEBUG [17682]: Closing database connection -- 20:22:03.700 SQL [17682]: pgsql_close() -- 20:22:03.711 INFO [17682]: COREGRADE is starting... -- 20:22:03.711 INFO [17682]: Version from config: 1.0 -- 20:22:03.711 DEBUG [17682]: Connecting to database... -- 20:22:03.711 DEBUG [17682]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:22:03.712 SQL [17682]: pgsql_db_connect() -- 20:22:03.715 DEBUG [17682]: Database connection successful -- 20:22:03.715 INFO [17682]: _SERVER found -- 20:22:03.715 INFO [17682]: REMOTE_ADDR = 10.0.0.15 -- 20:22:03.715 INFO [17682]: SERVER_NAME = oameye.works.coregrade.com -- 20:22:03.715 INFO [17682]: HTTP_COOKIE = _ga=GA1.2.1225727811.1567027035; ci_session=2aps3qpte28dmntfi4fj2amsdbis2625; _gid=GA1.2.1729814545.1589588478; _gat_gtag_UA_54829827_2=1 -- 20:22:03.715 INFO [17682]: QUERY_STRING = /welcome/viewLogin -- 20:22:03.715 INFO [17682]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:22:03.745 INFO [17682]: COREGRADE is stopping... -- 20:22:03.745 DEBUG [17682]: Closing database connection -- 20:22:03.745 SQL [17682]: pgsql_close() -- 20:22:14.225 INFO [20753]: COREGRADE is starting... -- 20:22:14.225 INFO [20753]: Version from config: 1.0 -- 20:22:14.225 DEBUG [20753]: Connecting to database... -- 20:22:14.225 DEBUG [20753]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:22:14.225 SQL [20753]: pgsql_db_connect() -- 20:22:14.230 DEBUG [20753]: Database connection successful -- 20:22:14.230 INFO [20753]: _SERVER found -- 20:22:14.230 INFO [20753]: REMOTE_ADDR = 10.0.0.15 -- 20:22:14.230 INFO [20753]: SERVER_NAME = oameye.works.coregrade.com -- 20:22:14.230 INFO [20753]: HTTP_COOKIE = _ga=GA1.2.1225727811.1567027035; ci_session=2aps3qpte28dmntfi4fj2amsdbis2625; _gid=GA1.2.1729814545.1589588478; _gat_gtag_UA_54829827_2=1 -- 20:22:14.230 INFO [20753]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 20:22:14.230 INFO [20753]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:22:14.243 INFO [20753]: COREGRADE is stopping... -- 20:22:14.243 DEBUG [20753]: Closing database connection -- 20:22:14.243 SQL [20753]: pgsql_close() -- 20:23:41.739 INFO [17681]: COREGRADE is starting... -- 20:23:41.740 INFO [17681]: Version from config: 1.0 -- 20:23:41.740 DEBUG [17681]: Connecting to database... -- 20:23:41.740 DEBUG [17681]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:23:41.740 SQL [17681]: pgsql_db_connect() -- 20:23:41.744 DEBUG [17681]: Database connection successful -- 20:23:41.744 INFO [17681]: _SERVER found -- 20:23:41.744 INFO [17681]: REMOTE_ADDR = 10.0.0.15 -- 20:23:41.744 INFO [17681]: SERVER_NAME = oameye.works.coregrade.com -- 20:23:41.744 INFO [17681]: HTTP_COOKIE = _ga=GA1.2.1225727811.1567027035; ci_session=2aps3qpte28dmntfi4fj2amsdbis2625; _gid=GA1.2.1729814545.1589588478 -- 20:23:41.744 INFO [17681]: QUERY_STRING = -- 20:23:41.744 INFO [17681]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:23:41.782 INFO [17681]: COREGRADE is stopping... -- 20:23:41.782 DEBUG [17681]: Closing database connection -- 20:23:41.782 SQL [17681]: pgsql_close() -- 20:23:41.930 INFO [17681]: COREGRADE is starting... -- 20:23:41.931 INFO [17681]: Version from config: 1.0 -- 20:23:41.931 DEBUG [17681]: Connecting to database... -- 20:23:41.931 DEBUG [17681]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:23:41.931 SQL [17681]: pgsql_db_connect() -- 20:23:41.935 DEBUG [17681]: Database connection successful -- 20:23:41.935 INFO [17681]: _SERVER found -- 20:23:41.935 INFO [17681]: REMOTE_ADDR = 10.0.0.15 -- 20:23:41.935 INFO [17681]: SERVER_NAME = oameye.works.coregrade.com -- 20:23:41.935 INFO [17681]: HTTP_COOKIE = _ga=GA1.2.1225727811.1567027035; ci_session=2aps3qpte28dmntfi4fj2amsdbis2625; _gid=GA1.2.1729814545.1589588478 -- 20:23:41.935 INFO [17681]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:23:41.935 INFO [17681]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:23:41.947 INFO [17681]: COREGRADE is stopping... -- 20:23:41.947 DEBUG [17681]: Closing database connection -- 20:23:41.947 SQL [17681]: pgsql_close() -- 20:43:17.896 INFO [20752]: COREGRADE is starting... -- 20:43:17.896 INFO [20752]: Version from config: 1.0 -- 20:43:17.896 DEBUG [20752]: Connecting to database... -- 20:43:17.896 DEBUG [20752]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:43:17.896 SQL [20752]: pgsql_db_connect() -- 20:43:17.901 DEBUG [20752]: Database connection successful -- 20:43:17.901 INFO [20752]: _SERVER found -- 20:43:17.901 INFO [20752]: REMOTE_ADDR = 10.0.0.15 -- 20:43:17.901 INFO [20752]: SERVER_NAME = oameye.works.coregrade.com -- 20:43:17.901 INFO [20752]: HTTP_COOKIE = _ga=GA1.2.1225727811.1567027035; ci_session=2aps3qpte28dmntfi4fj2amsdbis2625; _gid=GA1.2.1729814545.1589588478 -- 20:43:17.901 INFO [20752]: QUERY_STRING = /auth -- 20:43:17.901 INFO [20752]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:43:17.939 INFO [20752]: COREGRADE is stopping... -- 20:43:17.939 DEBUG [20752]: Closing database connection -- 20:43:17.939 SQL [20752]: pgsql_close() -- 20:43:18.069 INFO [20752]: COREGRADE is starting... -- 20:43:18.069 INFO [20752]: Version from config: 1.0 -- 20:43:18.069 DEBUG [20752]: Connecting to database... -- 20:43:18.069 DEBUG [20752]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:43:18.069 SQL [20752]: pgsql_db_connect() -- 20:43:18.074 DEBUG [20752]: Database connection successful -- 20:43:18.074 INFO [20752]: _SERVER found -- 20:43:18.074 INFO [20752]: REMOTE_ADDR = 10.0.0.15 -- 20:43:18.074 INFO [20752]: SERVER_NAME = oameye.works.coregrade.com -- 20:43:18.074 INFO [20752]: HTTP_COOKIE = _ga=GA1.2.1225727811.1567027035; _gid=GA1.2.1729814545.1589588478; ci_session=o5642t03vm8i2gk3ceivpcqkrjg47ho4 -- 20:43:18.074 INFO [20752]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 20:43:18.074 INFO [20752]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:43:18.085 INFO [20752]: COREGRADE is stopping... -- 20:43:18.085 DEBUG [20752]: Closing database connection -- 20:43:18.085 SQL [20752]: pgsql_close() -- 21:22:42.178 INFO [14934]: COREGRADE is starting... -- 21:22:42.179 INFO [14934]: Version from config: 1.0 -- 21:22:42.179 DEBUG [14934]: Connecting to database... -- 21:22:42.179 DEBUG [14934]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:22:42.179 SQL [14934]: pgsql_db_connect() -- 21:22:42.184 DEBUG [14934]: Database connection successful -- 21:22:42.184 INFO [14934]: _SERVER found -- 21:22:42.184 INFO [14934]: REMOTE_ADDR = 10.0.0.15 -- 21:22:42.184 INFO [14934]: SERVER_NAME = oameye.works.coregrade.com -- 21:22:42.184 INFO [14934]: HTTP_COOKIE = _ga=GA1.2.1289531376.1589047250 -- 21:22:42.184 INFO [14934]: QUERY_STRING = -- 21:22:42.184 INFO [14934]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:22:42.230 INFO [14934]: COREGRADE is stopping... -- 21:22:42.230 DEBUG [14934]: Closing database connection -- 21:22:42.230 SQL [14934]: pgsql_close() -- 21:22:42.511 INFO [14934]: COREGRADE is starting... -- 21:22:42.511 INFO [14934]: Version from config: 1.0 -- 21:22:42.511 DEBUG [14934]: Connecting to database... -- 21:22:42.511 DEBUG [14934]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:22:42.511 SQL [14934]: pgsql_db_connect() -- 21:22:42.515 DEBUG [14934]: Database connection successful -- 21:22:42.515 INFO [14934]: _SERVER found -- 21:22:42.515 INFO [14934]: REMOTE_ADDR = 10.0.0.15 -- 21:22:42.515 INFO [14934]: SERVER_NAME = oameye.works.coregrade.com -- 21:22:42.515 INFO [14934]: HTTP_COOKIE = ci_session=essku4f6klbgnjcma6j6lpojb5qe1h6h; _ga=GA1.2.1289531376.1589047250 -- 21:22:42.515 INFO [14934]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:22:42.515 INFO [14934]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:22:42.527 INFO [14934]: COREGRADE is stopping... -- 21:22:42.527 DEBUG [14934]: Closing database connection -- 21:22:42.527 SQL [14934]: pgsql_close() -- 21:22:42.991 INFO [28955]: COREGRADE is starting... -- 21:22:42.992 INFO [28955]: Version from config: 1.0 -- 21:22:42.992 DEBUG [28955]: Connecting to database... -- 21:22:42.992 DEBUG [28955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:22:42.992 SQL [28955]: pgsql_db_connect() -- 21:22:42.996 DEBUG [28955]: Database connection successful -- 21:22:42.996 INFO [28955]: _SERVER found -- 21:22:42.996 INFO [28955]: REMOTE_ADDR = 10.0.0.15 -- 21:22:42.996 INFO [28955]: SERVER_NAME = oameye.works.coregrade.com -- 21:22:42.996 INFO [28955]: QUERY_STRING = /apple-touch-icon-precomposed.png -- 21:22:42.996 INFO [28955]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:22:43.011 INFO [28955]: COREGRADE is stopping... -- 21:22:43.011 DEBUG [28955]: Closing database connection -- 21:22:43.011 SQL [28955]: pgsql_close() -- 21:22:43.038 INFO [28955]: COREGRADE is starting... -- 21:22:43.038 INFO [28955]: Version from config: 1.0 -- 21:22:43.038 DEBUG [28955]: Connecting to database... -- 21:22:43.038 DEBUG [28955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:22:43.038 SQL [28955]: pgsql_db_connect() -- 21:22:43.042 DEBUG [28955]: Database connection successful -- 21:22:43.042 INFO [28955]: _SERVER found -- 21:22:43.042 INFO [28955]: REMOTE_ADDR = 10.0.0.15 -- 21:22:43.042 INFO [28955]: SERVER_NAME = oameye.works.coregrade.com -- 21:22:43.042 INFO [28955]: QUERY_STRING = /apple-touch-icon.png -- 21:22:43.042 INFO [28955]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:22:43.054 INFO [28955]: COREGRADE is stopping... -- 21:22:43.054 DEBUG [28955]: Closing database connection -- 21:22:43.054 SQL [28955]: pgsql_close() -- 21:22:45.609 INFO [14933]: COREGRADE is starting... -- 21:22:45.610 INFO [14933]: Version from config: 1.0 -- 21:22:45.610 DEBUG [14933]: Connecting to database... -- 21:22:45.610 DEBUG [14933]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:22:45.610 SQL [14933]: pgsql_db_connect() -- 21:22:45.614 DEBUG [14933]: Database connection successful -- 21:22:45.614 INFO [14933]: _SERVER found -- 21:22:45.614 INFO [14933]: REMOTE_ADDR = 10.0.0.15 -- 21:22:45.614 INFO [14933]: SERVER_NAME = oameye.works.coregrade.com -- 21:22:45.614 INFO [14933]: HTTP_COOKIE = _ga=GA1.2.1289531376.1589047250; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.2126452732.1589592164; ci_session=essku4f6klbgnjcma6j6lpojb5qe1h6h -- 21:22:45.614 INFO [14933]: QUERY_STRING = /auth -- 21:22:45.614 INFO [14933]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:22:45.649 INFO [14933]: COREGRADE is stopping... -- 21:22:45.649 DEBUG [14933]: Closing database connection -- 21:22:45.649 SQL [14933]: pgsql_close() -- 21:22:45.863 INFO [14933]: COREGRADE is starting... -- 21:22:45.863 INFO [14933]: Version from config: 1.0 -- 21:22:45.863 DEBUG [14933]: Connecting to database... -- 21:22:45.863 DEBUG [14933]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:22:45.863 SQL [14933]: pgsql_db_connect() -- 21:22:45.867 DEBUG [14933]: Database connection successful -- 21:22:45.867 INFO [14933]: _SERVER found -- 21:22:45.867 INFO [14933]: REMOTE_ADDR = 10.0.0.15 -- 21:22:45.867 INFO [14933]: SERVER_NAME = oameye.works.coregrade.com -- 21:22:45.867 INFO [14933]: HTTP_COOKIE = _ga=GA1.2.1289531376.1589047250; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.2126452732.1589592164; ci_session=essku4f6klbgnjcma6j6lpojb5qe1h6h -- 21:22:45.867 INFO [14933]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 21:22:45.867 INFO [14933]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:22:45.880 INFO [14933]: COREGRADE is stopping... -- 21:22:45.880 DEBUG [14933]: Closing database connection -- 21:22:45.880 SQL [14933]: pgsql_close() -- 21:22:48.779 INFO [14933]: COREGRADE is starting... -- 21:22:48.780 INFO [14933]: Version from config: 1.0 -- 21:22:48.780 DEBUG [14933]: Connecting to database... -- 21:22:48.780 DEBUG [14933]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:22:48.780 SQL [14933]: pgsql_db_connect() -- 21:22:48.817 INFO [14933]: COREGRADE is starting... -- 21:22:48.817 INFO [14933]: Version from config: 1.0 -- 21:22:48.817 DEBUG [14933]: Connecting to database... -- 21:22:48.817 DEBUG [14933]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:22:48.817 SQL [14933]: pgsql_db_connect() -- 21:22:48.821 DEBUG [14933]: Database connection successful -- 21:22:48.821 INFO [14933]: _SERVER found -- 21:22:48.821 INFO [14933]: REMOTE_ADDR = 10.0.0.15 -- 21:22:48.821 INFO [14933]: SERVER_NAME = oameye.works.coregrade.com -- 21:22:48.821 INFO [14933]: HTTP_COOKIE = _ga=GA1.2.1289531376.1589047250; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.2126452732.1589592164; ci_session=essku4f6klbgnjcma6j6lpojb5qe1h6h -- 21:22:48.821 INFO [14933]: QUERY_STRING = -- 21:22:48.821 INFO [14933]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:22:48.821 INFO [14933]: SystemStatus()09-09-********~************ -- 21:22:48.821 INFO [14933]: long coregrade_api_main(CVars in, CVars &out) -- 21:22:48.821 INFO [14933]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 21:22:48.821 INFO [14933]: account calls -- 21:22:48.821 INFO [14933]: account_calls() -- 21:22:48.821 INFO [14933]: LoginCoreGradeAccount() -- 21:22:48.821 FLOG_MAX [14933]: REQ_STRING(username) -- 21:22:48.821 FLOG_MAX [14933]: REQ_STRING(password) -- 21:22:48.821 FLOG_MAX [14933]: REQ_STRING(sessionid) -- 21:22:48.821 FLOG_MAX [14933]: long load_db_record( CVars &rec, const char * query, ... ) -- 21:22:48.821 SQL [14933]: pgsql_query() -- 21:22:48.821 SQL [14933]: About to run query: -- 21:22:48.821 SQL [14933]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 21:22:48.825 SQL [14933]: Found rows: 1 -- 21:22:48.825 FLOG_MAX [14933]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 21:22:48.825 INFO [14933]: long SessionCheck(long uid, const char *sessionid, int create ) -- 21:22:48.825 SQL [14933]: pgsql_exec() -- 21:22:48.825 SQL [14933]: About to run query: -- 21:22:48.825 SQL [14933]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 21:22:48.827 SQL [14933]: PQcmdTuples: 1 -- 21:22:48.827 SQL [14933]: Affected rows: 1 -- 21:22:48.827 SQL [14933]: pgsql_exec() -- 21:22:48.827 SQL [14933]: About to run query: -- 21:22:48.827 SQL [14933]: DELETE FROM members_session WHERE member_id=5 -- 21:22:48.827 SQL [14933]: PQcmdTuples: 0 -- 21:22:48.827 SQL [14933]: Affected rows: 0 -- 21:22:48.827 SQL [14933]: pgsql_query() -- 21:22:48.827 SQL [14933]: About to run query: -- 21:22:48.827 SQL [14933]: SELECT * FROM members_session WHERE member_id=5 AND session<>'9A10925408F78788C565469BFC0C92A9' -- 21:22:48.828 SQL [14933]: Found rows: 0 -- 21:22:48.828 SQL [14933]: Found rows: 0 -- 21:22:48.828 FLOG_MAX [14933]: long load_db_record( CVars &rec, const char * query, ... ) -- 21:22:48.828 SQL [14933]: pgsql_query() -- 21:22:48.828 SQL [14933]: About to run query: -- 21:22:48.828 SQL [14933]: SELECT * FROM members_session WHERE member_id=5 AND session='9A10925408F78788C565469BFC0C92A9' -- 21:22:48.828 SQL [14933]: Found rows: 0 -- 21:22:48.828 SQL [14933]: Found rows: 0 -- 21:22:48.828 FLOG_MAX [14933]: insert_db_record() -- 21:22:48.828 SQL [14933]: pgsql_exec() -- 21:22:48.828 SQL [14933]: About to run query: -- 21:22:48.828 SQL [14933]: INSERT INTO members_session (member_id,session) VALUES ('5','9A10925408F78788C565469BFC0C92A9') -- 21:22:48.836 SQL [14933]: PQcmdTuples: 1 -- 21:22:48.836 SQL [14933]: Affected rows: 1 -- 21:22:48.836 FLOG_MAX [14933]: SELECT currval('members_session_id_seq') -- 21:22:48.836 SQL [14933]: pgsql_query() -- 21:22:48.836 SQL [14933]: About to run query: -- 21:22:48.836 SQL [14933]: SELECT currval('members_session_id_seq') -- 21:22:48.836 SQL [14933]: Found rows: 1 -- 21:22:48.836 INFO [14933]: CreateDefaultPage() -- 21:22:48.836 FLOG_MAX [14933]: long load_db_record( CVars &rec, const char * query, ... ) -- 21:22:48.836 SQL [14933]: pgsql_query() -- 21:22:48.836 SQL [14933]: About to run query: -- 21:22:48.836 SQL [14933]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 21:22:48.836 SQL [14933]: Found rows: 1 -- 21:22:48.836 FLOG_MAX [14933]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 21:22:48.836 SQL [14933]: pgsql_query() -- 21:22:48.836 SQL [14933]: About to run query: -- 21:22:48.836 SQL [14933]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 21:22:48.837 SQL [14933]: Found rows: 1 -- 21:22:48.837 INFO [14933]: /CreateDefaultPage() -- 21:22:48.837 INFO [14933]: /LoginCoreGradeAccount() -- 21:22:48.837 INFO [14933]: RET: added=2020-02-05 06:47:23.982154 -- 21:22:48.837 INFO [14933]: RET: email=ameye+11@chiefsoft.com -- 21:22:48.837 INFO [14933]: RET: firstname=Olu -- 21:22:48.837 INFO [14933]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 21:22:48.837 INFO [14933]: RET: id=5 -- 21:22:48.837 INFO [14933]: RET: last_login= -- 21:22:48.837 INFO [14933]: RET: lastname=Amey -- 21:22:48.837 INFO [14933]: RET: loc=192.168.1.13 -- 21:22:48.837 INFO [14933]: RET: member_id=5 -- 21:22:48.837 INFO [14933]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 21:22:48.837 INFO [14933]: RET: phone= -- 21:22:48.837 INFO [14933]: RET: pid= -- 21:22:48.837 INFO [14933]: RET: result=YES I GET TO BACK END -- 21:22:48.837 INFO [14933]: RET: sessionid=9A10925408F78788C565469BFC0C92A9 -- 21:22:48.837 INFO [14933]: RET: status=1 -- 21:22:48.837 INFO [14933]: RET: stauts=OK -- 21:22:48.837 INFO [14933]: RET: username=ameye+11@chiefsoft.com -- 21:22:48.837 INFO [14933]: RET: verified= -- 21:22:48.839 INFO [14933]: COREGRADE is stopping... -- 21:22:48.839 DEBUG [14933]: Closing database connection -- 21:22:48.839 SQL [14933]: pgsql_close() -- 21:22:48.784 DEBUG [14933]: Database connection successful -- 21:22:48.784 INFO [14933]: _SERVER found -- 21:22:48.784 INFO [14933]: REMOTE_ADDR = 10.0.0.15 -- 21:22:48.784 INFO [14933]: SERVER_NAME = oameye.works.coregrade.com -- 21:22:48.784 INFO [14933]: HTTP_COOKIE = _ga=GA1.2.1289531376.1589047250; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.2126452732.1589592164; ci_session=essku4f6klbgnjcma6j6lpojb5qe1h6h -- 21:22:48.784 INFO [14933]: QUERY_STRING = /auth -- 21:22:48.784 INFO [14933]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:22:48.839 INFO [14933]: COREGRADE is stopping... -- 21:22:48.839 DEBUG [14933]: Closing database connection -- 21:22:48.839 SQL [14933]: pgsql_close() -- 21:22:48.879 INFO [14933]: COREGRADE is starting... -- 21:22:48.880 INFO [14933]: Version from config: 1.0 -- 21:22:48.880 DEBUG [14933]: Connecting to database... -- 21:22:48.880 DEBUG [14933]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:22:48.880 SQL [14933]: pgsql_db_connect() -- 21:22:48.883 DEBUG [14933]: Database connection successful -- 21:22:48.884 INFO [14933]: _SERVER found -- 21:22:48.884 INFO [14933]: REMOTE_ADDR = 10.0.0.15 -- 21:22:48.884 INFO [14933]: SERVER_NAME = oameye.works.coregrade.com -- 21:22:48.884 INFO [14933]: HTTP_COOKIE = _ga=GA1.2.1289531376.1589047250; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.2126452732.1589592164; ci_session=essku4f6klbgnjcma6j6lpojb5qe1h6h -- 21:22:48.884 INFO [14933]: QUERY_STRING = /member/index -- 21:22:48.884 INFO [14933]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:22:48.924 INFO [14933]: COREGRADE is stopping... -- 21:22:48.925 DEBUG [14933]: Closing database connection -- 21:22:48.925 SQL [14933]: pgsql_close() -- 21:22:49.091 INFO [17683]: COREGRADE is starting... -- 21:22:49.092 INFO [17683]: Version from config: 1.0 -- 21:22:49.092 DEBUG [17683]: Connecting to database... -- 21:22:49.092 DEBUG [17683]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:22:49.092 SQL [17683]: pgsql_db_connect() -- 21:22:49.096 DEBUG [17683]: Database connection successful -- 21:22:49.096 INFO [17683]: _SERVER found -- 21:22:49.096 INFO [17683]: REMOTE_ADDR = 10.0.0.15 -- 21:22:49.096 INFO [17683]: SERVER_NAME = oameye.works.coregrade.com -- 21:22:49.096 INFO [17683]: HTTP_COOKIE = _ga=GA1.2.1289531376.1589047250; _gat_gtag_UA_54829827_2=1; _gid=GA1.2.2126452732.1589592164; ci_session=essku4f6klbgnjcma6j6lpojb5qe1h6h -- 21:22:49.096 INFO [17683]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:22:49.096 INFO [17683]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:22:49.111 INFO [17683]: COREGRADE is stopping... -- 21:22:49.111 DEBUG [17683]: Closing database connection -- 21:22:49.111 SQL [17683]: pgsql_close() -- 21:26:15.899 INFO [20752]: COREGRADE is starting... -- 21:26:15.899 INFO [20752]: Version from config: 1.0 -- 21:26:15.899 DEBUG [20752]: Connecting to database... -- 21:26:15.899 DEBUG [20752]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:26:15.899 SQL [20752]: pgsql_db_connect() -- 21:26:15.904 DEBUG [20752]: Database connection successful -- 21:26:15.904 INFO [20752]: _SERVER found -- 21:26:15.904 INFO [20752]: REMOTE_ADDR = 10.0.0.15 -- 21:26:15.904 INFO [20752]: SERVER_NAME = oameye.works.coregrade.com -- 21:26:15.904 INFO [20752]: HTTP_COOKIE = _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164; ci_session=essku4f6klbgnjcma6j6lpojb5qe1h6h -- 21:26:15.904 INFO [20752]: QUERY_STRING = /member/index -- 21:26:15.904 INFO [20752]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:26:15.951 INFO [20752]: COREGRADE is stopping... -- 21:26:15.951 DEBUG [20752]: Closing database connection -- 21:26:15.951 SQL [20752]: pgsql_close() -- 21:26:16.056 INFO [20752]: COREGRADE is starting... -- 21:26:16.056 INFO [20752]: Version from config: 1.0 -- 21:26:16.056 DEBUG [20752]: Connecting to database... -- 21:26:16.056 DEBUG [20752]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:26:16.056 SQL [20752]: pgsql_db_connect() -- 21:26:16.061 DEBUG [20752]: Database connection successful -- 21:26:16.061 INFO [20752]: _SERVER found -- 21:26:16.061 INFO [20752]: REMOTE_ADDR = 10.0.0.15 -- 21:26:16.061 INFO [20752]: SERVER_NAME = oameye.works.coregrade.com -- 21:26:16.061 INFO [20752]: HTTP_COOKIE = _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164; ci_session=essku4f6klbgnjcma6j6lpojb5qe1h6h -- 21:26:16.061 INFO [20752]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 21:26:16.061 INFO [20752]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 21:26:16.073 INFO [20752]: COREGRADE is stopping... -- 21:26:16.073 DEBUG [20752]: Closing database connection -- 21:26:16.073 SQL [20752]: pgsql_close() -- 00:02:49.765 INFO [28956]: COREGRADE is starting... -- 00:02:49.766 INFO [28956]: Version from config: 1.0 -- 00:02:49.766 DEBUG [28956]: Connecting to database... -- 00:02:49.766 DEBUG [28956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:49.766 SQL [28956]: pgsql_db_connect() -- 00:02:49.770 DEBUG [28956]: Database connection successful -- 00:02:49.770 INFO [28956]: _SERVER found -- 00:02:49.770 INFO [28956]: REMOTE_ADDR = 10.0.0.15 -- 00:02:49.770 INFO [28956]: SERVER_NAME = oameye.works.coregrade.com -- 00:02:49.770 INFO [28956]: HTTP_COOKIE = _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 00:02:49.770 INFO [28956]: QUERY_STRING = /auth -- 00:02:49.770 INFO [28956]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 00:02:49.808 INFO [28956]: COREGRADE is stopping... -- 00:02:49.808 DEBUG [28956]: Closing database connection -- 00:02:49.808 SQL [28956]: pgsql_close() -- 00:02:49.931 INFO [28956]: COREGRADE is starting... -- 00:02:49.931 INFO [28956]: Version from config: 1.0 -- 00:02:49.931 DEBUG [28956]: Connecting to database... -- 00:02:49.931 DEBUG [28956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:02:49.931 SQL [28956]: pgsql_db_connect() -- 00:02:49.935 DEBUG [28956]: Database connection successful -- 00:02:49.935 INFO [28956]: _SERVER found -- 00:02:49.935 INFO [28956]: REMOTE_ADDR = 10.0.0.15 -- 00:02:49.935 INFO [28956]: SERVER_NAME = oameye.works.coregrade.com -- 00:02:49.935 INFO [28956]: HTTP_COOKIE = ci_session=2ak5bnobf07uqc0hvfiisdm8kcglok93; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 00:02:49.935 INFO [28956]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 00:02:49.935 INFO [28956]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 00:02:49.947 INFO [28956]: COREGRADE is stopping... -- 00:02:49.947 DEBUG [28956]: Closing database connection -- 00:02:49.947 SQL [28956]: pgsql_close() -- 01:06:31.944 INFO [14934]: COREGRADE is starting... -- 01:06:31.945 INFO [14934]: Version from config: 1.0 -- 01:06:31.945 DEBUG [14934]: Connecting to database... -- 01:06:31.945 DEBUG [14934]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:06:31.945 SQL [14934]: pgsql_db_connect() -- 01:06:31.950 DEBUG [14934]: Database connection successful -- 01:06:31.950 INFO [14934]: _SERVER found -- 01:06:31.950 INFO [14934]: REMOTE_ADDR = 10.0.0.15 -- 01:06:31.950 INFO [14934]: SERVER_NAME = oameye.works.coregrade.com -- 01:06:31.950 INFO [14934]: QUERY_STRING = /TP/public/index.php -- 01:06:31.950 INFO [14934]: HTTP_X_FORWARDED_FOR = 122.165.148.226 -- 01:06:31.965 INFO [14934]: COREGRADE is stopping... -- 01:06:31.965 DEBUG [14934]: Closing database connection -- 01:06:31.965 SQL [14934]: pgsql_close() -- 01:06:33.622 INFO [14934]: COREGRADE is starting... -- 01:06:33.622 INFO [14934]: Version from config: 1.0 -- 01:06:33.622 DEBUG [14934]: Connecting to database... -- 01:06:33.622 DEBUG [14934]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:06:33.622 SQL [14934]: pgsql_db_connect() -- 01:06:33.626 DEBUG [14934]: Database connection successful -- 01:06:33.626 INFO [14934]: _SERVER found -- 01:06:33.626 INFO [14934]: REMOTE_ADDR = 10.0.0.15 -- 01:06:33.626 INFO [14934]: SERVER_NAME = oameye.works.coregrade.com -- 01:06:33.626 INFO [14934]: QUERY_STRING = -- 01:06:33.626 INFO [14934]: HTTP_X_FORWARDED_FOR = 122.165.148.226 -- 01:06:33.663 INFO [14934]: COREGRADE is stopping... -- 01:06:33.663 DEBUG [14934]: Closing database connection -- 01:06:33.663 SQL [14934]: pgsql_close() -- 03:41:51.540 INFO [28955]: COREGRADE is starting... -- 03:41:51.540 INFO [28955]: Version from config: 1.0 -- 03:41:51.540 DEBUG [28955]: Connecting to database... -- 03:41:51.540 DEBUG [28955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:41:51.540 SQL [28955]: pgsql_db_connect() -- 03:41:51.546 DEBUG [28955]: Database connection successful -- 03:41:51.546 INFO [28955]: _SERVER found -- 03:41:51.546 INFO [28955]: REMOTE_ADDR = 10.0.0.15 -- 03:41:51.546 INFO [28955]: SERVER_NAME = oameye.works.coregrade.com -- 03:41:51.546 INFO [28955]: QUERY_STRING = /.well-known/acme-challenge/t8Wt6GcJth65lufP6-aR_TFwzGoObR01sXBVykoGn9A -- 03:41:51.546 INFO [28955]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 03:41:51.564 INFO [28955]: COREGRADE is stopping... -- 03:41:51.564 DEBUG [28955]: Closing database connection -- 03:41:51.564 SQL [28955]: pgsql_close() -- 03:41:51.730 INFO [28955]: COREGRADE is starting... -- 03:41:51.730 INFO [28955]: Version from config: 1.0 -- 03:41:51.730 DEBUG [28955]: Connecting to database... -- 03:41:51.730 DEBUG [28955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:41:51.730 SQL [28955]: pgsql_db_connect() -- 03:41:51.735 DEBUG [28955]: Database connection successful -- 03:41:51.735 INFO [28955]: _SERVER found -- 03:41:51.735 INFO [28955]: REMOTE_ADDR = 10.0.0.15 -- 03:41:51.735 INFO [28955]: SERVER_NAME = oameye.works.coregrade.com -- 03:41:51.735 INFO [28955]: QUERY_STRING = /.well-known/acme-challenge/t8Wt6GcJth65lufP6-aR_TFwzGoObR01sXBVykoGn9A -- 03:41:51.735 INFO [28955]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 03:41:51.747 INFO [28955]: COREGRADE is stopping... -- 03:41:51.747 DEBUG [28955]: Closing database connection -- 03:41:51.747 SQL [28955]: pgsql_close() -- 03:41:51.887 INFO [28955]: COREGRADE is starting... -- 03:41:51.887 INFO [28955]: Version from config: 1.0 -- 03:41:51.887 DEBUG [28955]: Connecting to database... -- 03:41:51.887 DEBUG [28955]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:41:51.887 SQL [28955]: pgsql_db_connect() -- 03:41:51.892 DEBUG [28955]: Database connection successful -- 03:41:51.892 INFO [28955]: _SERVER found -- 03:41:51.892 INFO [28955]: REMOTE_ADDR = 10.0.0.15 -- 03:41:51.892 INFO [28955]: SERVER_NAME = oameye.works.coregrade.com -- 03:41:51.892 INFO [28955]: QUERY_STRING = /.well-known/acme-challenge/t8Wt6GcJth65lufP6-aR_TFwzGoObR01sXBVykoGn9A -- 03:41:51.892 INFO [28955]: HTTP_X_FORWARDED_FOR = 18.196.96.172 -- 03:41:51.904 INFO [28955]: COREGRADE is stopping... -- 03:41:51.904 DEBUG [28955]: Closing database connection -- 03:41:51.904 SQL [28955]: pgsql_close() -- 05:11:39.233 INFO [22346]: COREGRADE is starting... -- 05:11:39.234 INFO [22346]: Version from config: 1.0 -- 05:11:39.234 DEBUG [22346]: Connecting to database... -- 05:11:39.234 DEBUG [22346]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:11:39.234 SQL [22346]: pgsql_db_connect() -- 05:11:39.239 DEBUG [22346]: Database connection successful -- 05:11:39.239 INFO [22346]: _SERVER found -- 05:11:39.239 INFO [22346]: REMOTE_ADDR = 10.0.0.15 -- 05:11:39.239 INFO [22346]: SERVER_NAME = tokslaw.works.coregrade.com -- 05:11:39.239 INFO [22346]: QUERY_STRING = /wp-login.php -- 05:11:39.239 INFO [22346]: HTTP_X_FORWARDED_FOR = 68.232.175.208 -- 05:11:39.258 INFO [22346]: COREGRADE is stopping... -- 05:11:39.258 DEBUG [22346]: Closing database connection -- 05:11:39.258 SQL [22346]: pgsql_close() -- 05:23:17.969 INFO [22347]: COREGRADE is starting... -- 05:23:17.969 INFO [22347]: Version from config: 1.0 -- 05:23:17.969 DEBUG [22347]: Connecting to database... -- 05:23:17.969 DEBUG [22347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:23:17.969 SQL [22347]: pgsql_db_connect() -- 05:23:17.975 DEBUG [22347]: Database connection successful -- 05:23:17.975 INFO [22347]: _SERVER found -- 05:23:17.975 INFO [22347]: REMOTE_ADDR = 10.0.0.15 -- 05:23:17.975 INFO [22347]: SERVER_NAME = oameye.works.coregrade.com -- 05:23:17.975 INFO [22347]: QUERY_STRING = /robots.txt -- 05:23:17.975 INFO [22347]: HTTP_X_FORWARDED_FOR = 66.249.70.86 -- 05:23:17.993 INFO [22347]: COREGRADE is stopping... -- 05:23:17.993 DEBUG [22347]: Closing database connection -- 05:23:17.993 SQL [22347]: pgsql_close() -- 05:23:18.026 INFO [22347]: COREGRADE is starting... -- 05:23:18.026 INFO [22347]: Version from config: 1.0 -- 05:23:18.026 DEBUG [22347]: Connecting to database... -- 05:23:18.026 DEBUG [22347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:23:18.026 SQL [22347]: pgsql_db_connect() -- 05:23:18.030 DEBUG [22347]: Database connection successful -- 05:23:18.030 INFO [22347]: _SERVER found -- 05:23:18.030 INFO [22347]: REMOTE_ADDR = 10.0.0.15 -- 05:23:18.030 INFO [22347]: SERVER_NAME = oameye.works.coregrade.com -- 05:23:18.030 INFO [22347]: QUERY_STRING = -- 05:23:18.030 INFO [22347]: HTTP_X_FORWARDED_FOR = 66.249.70.86 -- 05:23:18.076 INFO [22347]: COREGRADE is stopping... -- 05:23:18.076 DEBUG [22347]: Closing database connection -- 05:23:18.076 SQL [22347]: pgsql_close() -- 09:10:27.101 INFO [22349]: COREGRADE is starting... -- 09:10:27.102 INFO [22349]: Version from config: 1.0 -- 09:10:27.102 DEBUG [22349]: Connecting to database... -- 09:10:27.102 DEBUG [22349]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:10:27.102 SQL [22349]: pgsql_db_connect() -- 09:10:27.107 DEBUG [22349]: Database connection successful -- 09:10:27.107 INFO [22349]: _SERVER found -- 09:10:27.107 INFO [22349]: REMOTE_ADDR = 10.0.0.15 -- 09:10:27.107 INFO [22349]: SERVER_NAME = oameye.works.coregrade.com -- 09:10:27.107 INFO [22349]: QUERY_STRING = /.env -- 09:10:27.107 INFO [22349]: HTTP_X_FORWARDED_FOR = 185.234.217.32 -- 09:10:27.124 INFO [22349]: COREGRADE is stopping... -- 09:10:27.124 DEBUG [22349]: Closing database connection -- 09:10:27.124 SQL [22349]: pgsql_close() -- 09:10:27.670 INFO [22350]: COREGRADE is starting... -- 09:10:27.670 INFO [22350]: Version from config: 1.0 -- 09:10:27.670 DEBUG [22350]: Connecting to database... -- 09:10:27.670 DEBUG [22350]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:10:27.670 SQL [22350]: pgsql_db_connect() -- 09:10:27.676 DEBUG [22350]: Database connection successful -- 09:10:27.676 INFO [22350]: _SERVER found -- 09:10:27.676 INFO [22350]: REMOTE_ADDR = 10.0.0.15 -- 09:10:27.676 INFO [22350]: SERVER_NAME = oameye.works.coregrade.com -- 09:10:27.676 INFO [22350]: QUERY_STRING = /sftp-config.json -- 09:10:27.676 INFO [22350]: HTTP_X_FORWARDED_FOR = 185.234.217.32 -- 09:10:27.692 INFO [22350]: COREGRADE is stopping... -- 09:10:27.692 DEBUG [22350]: Closing database connection -- 09:10:27.692 SQL [22350]: pgsql_close() -- 09:10:28.237 INFO [22349]: COREGRADE is starting... -- 09:10:28.237 INFO [22349]: Version from config: 1.0 -- 09:10:28.237 DEBUG [22349]: Connecting to database... -- 09:10:28.237 DEBUG [22349]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:10:28.237 SQL [22349]: pgsql_db_connect() -- 09:10:28.242 DEBUG [22349]: Database connection successful -- 09:10:28.242 INFO [22349]: _SERVER found -- 09:10:28.242 INFO [22349]: REMOTE_ADDR = 10.0.0.15 -- 09:10:28.242 INFO [22349]: SERVER_NAME = oameye.works.coregrade.com -- 09:10:28.242 INFO [22349]: QUERY_STRING = /.ftpconfig -- 09:10:28.242 INFO [22349]: HTTP_X_FORWARDED_FOR = 185.234.217.32 -- 09:10:28.254 INFO [22349]: COREGRADE is stopping... -- 09:10:28.254 DEBUG [22349]: Closing database connection -- 09:10:28.254 SQL [22349]: pgsql_close() -- 09:10:28.774 INFO [22349]: COREGRADE is starting... -- 09:10:28.774 INFO [22349]: Version from config: 1.0 -- 09:10:28.774 DEBUG [22349]: Connecting to database... -- 09:10:28.774 DEBUG [22349]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:10:28.774 SQL [22349]: pgsql_db_connect() -- 09:10:28.778 DEBUG [22349]: Database connection successful -- 09:10:28.778 INFO [22349]: _SERVER found -- 09:10:28.778 INFO [22349]: REMOTE_ADDR = 10.0.0.15 -- 09:10:28.778 INFO [22349]: SERVER_NAME = oameye.works.coregrade.com -- 09:10:28.778 INFO [22349]: QUERY_STRING = /.remote-sync.json -- 09:10:28.778 INFO [22349]: HTTP_X_FORWARDED_FOR = 185.234.217.32 -- 09:10:28.789 INFO [22349]: COREGRADE is stopping... -- 09:10:28.789 DEBUG [22349]: Closing database connection -- 09:10:28.789 SQL [22349]: pgsql_close() -- 09:10:29.308 INFO [22349]: COREGRADE is starting... -- 09:10:29.309 INFO [22349]: Version from config: 1.0 -- 09:10:29.309 DEBUG [22349]: Connecting to database... -- 09:10:29.309 DEBUG [22349]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:10:29.309 SQL [22349]: pgsql_db_connect() -- 09:10:29.313 DEBUG [22349]: Database connection successful -- 09:10:29.313 INFO [22349]: _SERVER found -- 09:10:29.313 INFO [22349]: REMOTE_ADDR = 10.0.0.15 -- 09:10:29.313 INFO [22349]: SERVER_NAME = oameye.works.coregrade.com -- 09:10:29.313 INFO [22349]: QUERY_STRING = /.vscode/ftp-sync.json -- 09:10:29.313 INFO [22349]: HTTP_X_FORWARDED_FOR = 185.234.217.32 -- 09:10:29.324 INFO [22349]: COREGRADE is stopping... -- 09:10:29.324 DEBUG [22349]: Closing database connection -- 09:10:29.324 SQL [22349]: pgsql_close() -- 09:10:29.876 INFO [22743]: COREGRADE is starting... -- 09:10:29.876 INFO [22743]: Version from config: 1.0 -- 09:10:29.876 DEBUG [22743]: Connecting to database... -- 09:10:29.876 DEBUG [22743]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:10:29.876 SQL [22743]: pgsql_db_connect() -- 09:10:29.881 DEBUG [22743]: Database connection successful -- 09:10:29.881 INFO [22743]: _SERVER found -- 09:10:29.881 INFO [22743]: REMOTE_ADDR = 10.0.0.15 -- 09:10:29.881 INFO [22743]: SERVER_NAME = oameye.works.coregrade.com -- 09:10:29.881 INFO [22743]: QUERY_STRING = /.vscode/sftp.json -- 09:10:29.881 INFO [22743]: HTTP_X_FORWARDED_FOR = 185.234.217.32 -- 09:10:29.896 INFO [22743]: COREGRADE is stopping... -- 09:10:29.897 DEBUG [22743]: Closing database connection -- 09:10:29.897 SQL [22743]: pgsql_close() -- 09:10:30.439 INFO [22349]: COREGRADE is starting... -- 09:10:30.440 INFO [22349]: Version from config: 1.0 -- 09:10:30.440 DEBUG [22349]: Connecting to database... -- 09:10:30.440 DEBUG [22349]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:10:30.440 SQL [22349]: pgsql_db_connect() -- 09:10:30.444 DEBUG [22349]: Database connection successful -- 09:10:30.444 INFO [22349]: _SERVER found -- 09:10:30.444 INFO [22349]: REMOTE_ADDR = 10.0.0.15 -- 09:10:30.444 INFO [22349]: SERVER_NAME = oameye.works.coregrade.com -- 09:10:30.444 INFO [22349]: QUERY_STRING = /deployment-config.json -- 09:10:30.444 INFO [22349]: HTTP_X_FORWARDED_FOR = 185.234.217.32 -- 09:10:30.455 INFO [22349]: COREGRADE is stopping... -- 09:10:30.455 DEBUG [22349]: Closing database connection -- 09:10:30.455 SQL [22349]: pgsql_close() -- 09:10:31.003 INFO [22346]: COREGRADE is starting... -- 09:10:31.003 INFO [22346]: Version from config: 1.0 -- 09:10:31.003 DEBUG [22346]: Connecting to database... -- 09:10:31.003 DEBUG [22346]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:10:31.003 SQL [22346]: pgsql_db_connect() -- 09:10:31.007 DEBUG [22346]: Database connection successful -- 09:10:31.007 INFO [22346]: _SERVER found -- 09:10:31.007 INFO [22346]: REMOTE_ADDR = 10.0.0.15 -- 09:10:31.007 INFO [22346]: SERVER_NAME = oameye.works.coregrade.com -- 09:10:31.007 INFO [22346]: QUERY_STRING = /ftpsync.settings -- 09:10:31.007 INFO [22346]: HTTP_X_FORWARDED_FOR = 185.234.217.32 -- 09:10:31.022 INFO [22346]: COREGRADE is stopping... -- 09:10:31.022 DEBUG [22346]: Closing database connection -- 09:10:31.022 SQL [22346]: pgsql_close() -- 10:40:31.133 INFO [22789]: COREGRADE is starting... -- 10:40:31.134 INFO [22789]: Version from config: 1.0 -- 10:40:31.134 DEBUG [22789]: Connecting to database... -- 10:40:31.134 DEBUG [22789]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:40:31.134 SQL [22789]: pgsql_db_connect() -- 10:40:31.139 DEBUG [22789]: Database connection successful -- 10:40:31.139 INFO [22789]: _SERVER found -- 10:40:31.139 INFO [22789]: REMOTE_ADDR = 10.0.0.15 -- 10:40:31.139 INFO [22789]: SERVER_NAME = oameye.works.coregrade.com -- 10:40:31.139 INFO [22789]: HTTP_COOKIE = _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 10:40:31.139 INFO [22789]: QUERY_STRING = -- 10:40:31.139 INFO [22789]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:40:31.188 INFO [22789]: COREGRADE is stopping... -- 10:40:31.188 DEBUG [22789]: Closing database connection -- 10:40:31.188 SQL [22789]: pgsql_close() -- 10:40:31.332 INFO [22789]: COREGRADE is starting... -- 10:40:31.333 INFO [22789]: Version from config: 1.0 -- 10:40:31.333 DEBUG [22789]: Connecting to database... -- 10:40:31.333 DEBUG [22789]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:40:31.333 SQL [22789]: pgsql_db_connect() -- 10:40:31.337 DEBUG [22789]: Database connection successful -- 10:40:31.337 INFO [22789]: _SERVER found -- 10:40:31.337 INFO [22789]: REMOTE_ADDR = 10.0.0.15 -- 10:40:31.337 INFO [22789]: SERVER_NAME = oameye.works.coregrade.com -- 10:40:31.337 INFO [22789]: HTTP_COOKIE = ci_session=iq2ps1u5q5hu4693661qpr7s85aituul; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 10:40:31.337 INFO [22789]: QUERY_STRING = /assets/img/footer_1.jpg -- 10:40:31.337 INFO [22789]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 10:40:31.348 INFO [22789]: COREGRADE is stopping... -- 10:40:31.348 DEBUG [22789]: Closing database connection -- 10:40:31.348 SQL [22789]: pgsql_close() -- 13:25:02.010 INFO [22743]: COREGRADE is starting... -- 13:25:02.010 INFO [22743]: Version from config: 1.0 -- 13:25:02.010 DEBUG [22743]: Connecting to database... -- 13:25:02.010 DEBUG [22743]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:25:02.010 SQL [22743]: pgsql_db_connect() -- 13:25:02.015 DEBUG [22743]: Database connection successful -- 13:25:02.015 INFO [22743]: _SERVER found -- 13:25:02.015 INFO [22743]: REMOTE_ADDR = 10.0.0.15 -- 13:25:02.015 INFO [22743]: SERVER_NAME = oameye.works.coregrade.com -- 13:25:02.015 INFO [22743]: QUERY_STRING = -- 13:25:02.015 INFO [22743]: HTTP_X_FORWARDED_FOR = 161.35.103.74 -- 13:25:02.050 INFO [22743]: COREGRADE is stopping... -- 13:25:02.050 DEBUG [22743]: Closing database connection -- 13:25:02.050 SQL [22743]: pgsql_close() -- 13:57:13.380 INFO [2340]: COREGRADE is starting... -- 13:57:13.380 INFO [2340]: Version from config: 1.0 -- 13:57:13.380 DEBUG [2340]: Connecting to database... -- 13:57:13.380 DEBUG [2340]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:57:13.380 SQL [2340]: pgsql_db_connect() -- 13:57:13.385 DEBUG [2340]: Database connection successful -- 13:57:13.385 INFO [2340]: _SERVER found -- 13:57:13.385 INFO [2340]: REMOTE_ADDR = 10.0.0.15 -- 13:57:13.385 INFO [2340]: SERVER_NAME = oameye.works.coregrade.com -- 13:57:13.385 INFO [2340]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979 -- 13:57:13.385 INFO [2340]: QUERY_STRING = -- 13:57:13.385 INFO [2340]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:57:13.432 INFO [2340]: COREGRADE is stopping... -- 13:57:13.432 DEBUG [2340]: Closing database connection -- 13:57:13.432 SQL [2340]: pgsql_close() -- 13:57:14.207 INFO [2340]: COREGRADE is starting... -- 13:57:14.207 INFO [2340]: Version from config: 1.0 -- 13:57:14.207 DEBUG [2340]: Connecting to database... -- 13:57:14.207 DEBUG [2340]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:57:14.207 SQL [2340]: pgsql_db_connect() -- 13:57:14.212 DEBUG [2340]: Database connection successful -- 13:57:14.212 INFO [2340]: _SERVER found -- 13:57:14.212 INFO [2340]: REMOTE_ADDR = 10.0.0.15 -- 13:57:14.212 INFO [2340]: SERVER_NAME = oameye.works.coregrade.com -- 13:57:14.212 INFO [2340]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=iul6tufbisdq2ql8dhc4rm18pcfv5b6c; _gid=GA1.2.118901071.1589651834; _gat_gtag_UA_54829827_2=1 -- 13:57:14.212 INFO [2340]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:57:14.212 INFO [2340]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:57:14.224 INFO [2340]: COREGRADE is stopping... -- 13:57:14.224 DEBUG [2340]: Closing database connection -- 13:57:14.224 SQL [2340]: pgsql_close() -- 13:57:29.655 INFO [2337]: COREGRADE is starting... -- 13:57:29.655 INFO [2337]: Version from config: 1.0 -- 13:57:29.655 DEBUG [2337]: Connecting to database... -- 13:57:29.656 DEBUG [2337]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:57:29.656 SQL [2337]: pgsql_db_connect() -- 13:57:29.660 DEBUG [2337]: Database connection successful -- 13:57:29.660 INFO [2337]: _SERVER found -- 13:57:29.660 INFO [2337]: REMOTE_ADDR = 10.0.0.15 -- 13:57:29.660 INFO [2337]: SERVER_NAME = oameye.works.coregrade.com -- 13:57:29.660 INFO [2337]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 13:57:29.660 INFO [2337]: QUERY_STRING = -- 13:57:29.660 INFO [2337]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:57:29.697 INFO [2337]: COREGRADE is stopping... -- 13:57:29.697 DEBUG [2337]: Closing database connection -- 13:57:29.697 SQL [2337]: pgsql_close() -- 13:57:30.183 INFO [2337]: COREGRADE is starting... -- 13:57:30.184 INFO [2337]: Version from config: 1.0 -- 13:57:30.184 DEBUG [2337]: Connecting to database... -- 13:57:30.184 DEBUG [2337]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:57:30.184 SQL [2337]: pgsql_db_connect() -- 13:57:30.188 DEBUG [2337]: Database connection successful -- 13:57:30.188 INFO [2337]: _SERVER found -- 13:57:30.188 INFO [2337]: REMOTE_ADDR = 10.0.0.15 -- 13:57:30.188 INFO [2337]: SERVER_NAME = oameye.works.coregrade.com -- 13:57:30.188 INFO [2337]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=rqdo6atbppo74b1tnt986ga5889abfuu; _gid=GA1.2.87282457.1589651850; _gat_gtag_UA_54829827_2=1 -- 13:57:30.188 INFO [2337]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:57:30.188 INFO [2337]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 13:57:30.199 INFO [2337]: COREGRADE is stopping... -- 13:57:30.199 DEBUG [2337]: Closing database connection -- 13:57:30.199 SQL [2337]: pgsql_close() -- 13:59:45.021 INFO [2338]: COREGRADE is starting... -- 13:59:45.022 INFO [2338]: Version from config: 1.0 -- 13:59:45.022 DEBUG [2338]: Connecting to database... -- 13:59:45.022 DEBUG [2338]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:59:45.022 SQL [2338]: pgsql_db_connect() -- 13:59:45.026 DEBUG [2338]: Database connection successful -- 13:59:45.026 INFO [2338]: _SERVER found -- 13:59:45.026 INFO [2338]: REMOTE_ADDR = 10.0.0.15 -- 13:59:45.026 INFO [2338]: SERVER_NAME = works.coregrade.com -- 13:59:45.026 INFO [2338]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834 -- 13:59:45.026 INFO [2338]: QUERY_STRING = -- 13:59:45.026 INFO [2338]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:59:45.062 INFO [2338]: COREGRADE is stopping... -- 13:59:45.062 DEBUG [2338]: Closing database connection -- 13:59:45.062 SQL [2338]: pgsql_close() -- 13:59:45.818 INFO [2403]: COREGRADE is starting... -- 13:59:45.818 INFO [2403]: Version from config: 1.0 -- 13:59:45.818 DEBUG [2403]: Connecting to database... -- 13:59:45.818 DEBUG [2403]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:59:45.818 SQL [2403]: pgsql_db_connect() -- 13:59:45.823 DEBUG [2403]: Database connection successful -- 13:59:45.823 INFO [2403]: _SERVER found -- 13:59:45.823 INFO [2403]: REMOTE_ADDR = 10.0.0.15 -- 13:59:45.823 INFO [2403]: SERVER_NAME = works.coregrade.com -- 13:59:45.823 INFO [2403]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=6i04bq4e0i3klhgi5v084iif4ktjeulg; _gat_gtag_UA_54829827_2=1 -- 13:59:45.823 INFO [2403]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:59:45.823 INFO [2403]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:59:45.838 INFO [2403]: COREGRADE is stopping... -- 13:59:45.838 DEBUG [2403]: Closing database connection -- 13:59:45.838 SQL [2403]: pgsql_close() -- 15:25:00.947 INFO [27470]: COREGRADE is starting... -- 15:25:00.948 INFO [27470]: Version from config: 1.0 -- 15:25:00.948 DEBUG [27470]: Connecting to database... -- 15:25:00.948 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:00.948 SQL [27470]: pgsql_db_connect() -- 15:25:00.952 DEBUG [27470]: Database connection successful -- 15:25:00.952 INFO [27470]: _SERVER found -- 15:25:00.952 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:25:00.952 INFO [27470]: SERVER_NAME = oameye.works.coregrade.com -- 15:25:00.952 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1225727811.1567027035; _gid=GA1.2.1729814545.1589588478 -- 15:25:00.952 INFO [27470]: QUERY_STRING = -- 15:25:00.952 INFO [27470]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:25:01.272 INFO [27470]: COREGRADE is stopping... -- 15:25:01.272 DEBUG [27470]: Closing database connection -- 15:25:01.272 SQL [27470]: pgsql_close() -- 15:25:01.429 INFO [27470]: COREGRADE is starting... -- 15:25:01.429 INFO [27470]: Version from config: 1.0 -- 15:25:01.429 DEBUG [27470]: Connecting to database... -- 15:25:01.429 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:01.429 SQL [27470]: pgsql_db_connect() -- 15:25:01.434 DEBUG [27470]: Database connection successful -- 15:25:01.434 INFO [27470]: _SERVER found -- 15:25:01.434 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:25:01.434 INFO [27470]: SERVER_NAME = oameye.works.coregrade.com -- 15:25:01.434 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1225727811.1567027035; _gid=GA1.2.1729814545.1589588478; ci_session=ujardvcvand8mt1o9nb717s68tdkeu43 -- 15:25:01.434 INFO [27470]: QUERY_STRING = /assets/img/footer_1.jpg -- 15:25:01.434 INFO [27470]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:25:01.446 INFO [27470]: COREGRADE is stopping... -- 15:25:01.447 DEBUG [27470]: Closing database connection -- 15:25:01.447 SQL [27470]: pgsql_close() -- 15:25:06.885 INFO [27472]: COREGRADE is starting... -- 15:25:06.885 INFO [27472]: Version from config: 1.0 -- 15:25:06.885 DEBUG [27472]: Connecting to database... -- 15:25:06.885 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:06.885 SQL [27472]: pgsql_db_connect() -- 15:25:06.890 DEBUG [27472]: Database connection successful -- 15:25:06.890 INFO [27472]: _SERVER found -- 15:25:06.890 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 15:25:06.890 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:06.890 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834 -- 15:25:06.890 INFO [27472]: QUERY_STRING = /start -- 15:25:06.890 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:06.910 INFO [27472]: COREGRADE is stopping... -- 15:25:06.910 DEBUG [27472]: Closing database connection -- 15:25:06.911 SQL [27472]: pgsql_close() -- 15:25:45.963 INFO [27473]: COREGRADE is starting... -- 15:25:45.963 INFO [27473]: Version from config: 1.0 -- 15:25:45.963 DEBUG [27473]: Connecting to database... -- 15:25:45.963 DEBUG [27473]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:45.963 SQL [27473]: pgsql_db_connect() -- 15:25:45.967 DEBUG [27473]: Database connection successful -- 15:25:45.967 INFO [27473]: _SERVER found -- 15:25:45.967 INFO [27473]: REMOTE_ADDR = 10.0.0.15 -- 15:25:45.967 INFO [27473]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:45.967 INFO [27473]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834 -- 15:25:45.967 INFO [27473]: QUERY_STRING = /start -- 15:25:45.967 INFO [27473]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:46.015 INFO [27473]: COREGRADE is stopping... -- 15:25:46.015 DEBUG [27473]: Closing database connection -- 15:25:46.015 SQL [27473]: pgsql_close() -- 15:25:46.128 INFO [27473]: COREGRADE is starting... -- 15:25:46.128 INFO [27473]: Version from config: 1.0 -- 15:25:46.128 DEBUG [27473]: Connecting to database... -- 15:25:46.128 DEBUG [27473]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:46.128 SQL [27473]: pgsql_db_connect() -- 15:25:46.132 DEBUG [27473]: Database connection successful -- 15:25:46.132 INFO [27473]: _SERVER found -- 15:25:46.132 INFO [27473]: REMOTE_ADDR = 10.0.0.15 -- 15:25:46.132 INFO [27473]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:46.132 INFO [27473]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:46.132 INFO [27473]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 15:25:46.132 INFO [27473]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:46.144 INFO [27473]: COREGRADE is stopping... -- 15:25:46.144 DEBUG [27473]: Closing database connection -- 15:25:46.144 SQL [27473]: pgsql_close() -- 15:25:46.178 INFO [27473]: COREGRADE is starting... -- 15:25:46.178 INFO [27473]: Version from config: 1.0 -- 15:25:46.178 DEBUG [27473]: Connecting to database... -- 15:25:46.178 DEBUG [27473]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:46.178 SQL [27473]: pgsql_db_connect() -- 15:25:46.188 INFO [27471]: COREGRADE is starting... -- 15:25:46.188 INFO [27471]: Version from config: 1.0 -- 15:25:46.188 DEBUG [27471]: Connecting to database... -- 15:25:46.188 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:46.188 SQL [27471]: pgsql_db_connect() -- 15:25:46.193 INFO [27474]: COREGRADE is starting... -- 15:25:46.182 DEBUG [27473]: Database connection successful -- 15:25:46.182 INFO [27473]: _SERVER found -- 15:25:46.182 INFO [27473]: REMOTE_ADDR = 10.0.0.15 -- 15:25:46.182 INFO [27473]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:46.182 INFO [27473]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:46.182 INFO [27473]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 15:25:46.182 INFO [27473]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:46.193 INFO [27473]: COREGRADE is stopping... -- 15:25:46.193 DEBUG [27473]: Closing database connection -- 15:25:46.193 SQL [27473]: pgsql_close() -- 15:25:46.193 INFO [27474]: Version from config: 1.0 -- 15:25:46.193 DEBUG [27474]: Connecting to database... -- 15:25:46.193 DEBUG [27474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:46.193 SQL [27474]: pgsql_db_connect() -- 15:25:46.198 INFO [27523]: COREGRADE is starting... -- 15:25:46.198 INFO [27523]: Version from config: 1.0 -- 15:25:46.198 DEBUG [27523]: Connecting to database... -- 15:25:46.198 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:46.198 SQL [27523]: pgsql_db_connect() -- 15:25:46.200 INFO [27472]: COREGRADE is starting... -- 15:25:46.200 INFO [27472]: Version from config: 1.0 -- 15:25:46.200 DEBUG [27472]: Connecting to database... -- 15:25:46.200 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:46.200 SQL [27472]: pgsql_db_connect() -- 15:25:46.193 DEBUG [27471]: Database connection successful -- 15:25:46.193 INFO [27471]: _SERVER found -- 15:25:46.193 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 15:25:46.193 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:46.193 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:46.193 INFO [27471]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 15:25:46.193 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:46.208 INFO [27471]: COREGRADE is stopping... -- 15:25:46.208 DEBUG [27471]: Closing database connection -- 15:25:46.208 SQL [27471]: pgsql_close() -- 15:25:46.198 DEBUG [27474]: Database connection successful -- 15:25:46.198 INFO [27474]: _SERVER found -- 15:25:46.198 INFO [27474]: REMOTE_ADDR = 10.0.0.15 -- 15:25:46.198 INFO [27474]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:46.198 INFO [27474]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:46.198 INFO [27474]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 15:25:46.198 INFO [27474]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:46.214 INFO [27474]: COREGRADE is stopping... -- 15:25:46.214 DEBUG [27474]: Closing database connection -- 15:25:46.214 SQL [27474]: pgsql_close() -- 15:25:46.204 DEBUG [27472]: Database connection successful -- 15:25:46.204 INFO [27472]: _SERVER found -- 15:25:46.204 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 15:25:46.204 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:46.204 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:46.204 INFO [27472]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 15:25:46.204 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:46.216 INFO [27472]: COREGRADE is stopping... -- 15:25:46.216 DEBUG [27472]: Closing database connection -- 15:25:46.216 SQL [27472]: pgsql_close() -- 15:25:46.202 DEBUG [27523]: Database connection successful -- 15:25:46.202 INFO [27523]: _SERVER found -- 15:25:46.202 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 15:25:46.202 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:46.202 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:46.202 INFO [27523]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 15:25:46.202 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:46.218 INFO [27523]: COREGRADE is stopping... -- 15:25:46.218 DEBUG [27523]: Closing database connection -- 15:25:46.218 SQL [27523]: pgsql_close() -- 15:25:46.226 INFO [27473]: COREGRADE is starting... -- 15:25:46.226 INFO [27473]: Version from config: 1.0 -- 15:25:46.226 DEBUG [27473]: Connecting to database... -- 15:25:46.226 DEBUG [27473]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:46.226 SQL [27473]: pgsql_db_connect() -- 15:25:46.230 DEBUG [27473]: Database connection successful -- 15:25:46.230 INFO [27473]: _SERVER found -- 15:25:46.230 INFO [27473]: REMOTE_ADDR = 10.0.0.15 -- 15:25:46.230 INFO [27473]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:46.230 INFO [27473]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:46.230 INFO [27473]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 15:25:46.230 INFO [27473]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:46.241 INFO [27473]: COREGRADE is stopping... -- 15:25:46.242 DEBUG [27473]: Closing database connection -- 15:25:46.242 SQL [27473]: pgsql_close() -- 15:25:46.263 INFO [27473]: COREGRADE is starting... -- 15:25:46.263 INFO [27473]: Version from config: 1.0 -- 15:25:46.263 DEBUG [27473]: Connecting to database... -- 15:25:46.263 DEBUG [27473]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:46.263 SQL [27473]: pgsql_db_connect() -- 15:25:46.267 DEBUG [27473]: Database connection successful -- 15:25:46.267 INFO [27473]: _SERVER found -- 15:25:46.267 INFO [27473]: REMOTE_ADDR = 10.0.0.15 -- 15:25:46.267 INFO [27473]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:46.267 INFO [27473]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:46.267 INFO [27473]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 15:25:46.267 INFO [27473]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:46.278 INFO [27473]: COREGRADE is stopping... -- 15:25:46.278 DEBUG [27473]: Closing database connection -- 15:25:46.278 SQL [27473]: pgsql_close() -- 15:25:46.288 INFO [27523]: COREGRADE is starting... -- 15:25:46.288 INFO [27523]: Version from config: 1.0 -- 15:25:46.288 DEBUG [27523]: Connecting to database... -- 15:25:46.288 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:46.288 SQL [27523]: pgsql_db_connect() -- 15:25:46.294 INFO [27474]: COREGRADE is starting... -- 15:25:46.294 INFO [27474]: Version from config: 1.0 -- 15:25:46.294 DEBUG [27474]: Connecting to database... -- 15:25:46.294 DEBUG [27474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:46.294 SQL [27474]: pgsql_db_connect() -- 15:25:46.299 INFO [27472]: COREGRADE is starting... -- 15:25:46.299 INFO [27472]: Version from config: 1.0 -- 15:25:46.299 DEBUG [27472]: Connecting to database... -- 15:25:46.299 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:46.299 SQL [27472]: pgsql_db_connect() -- 15:25:46.292 DEBUG [27523]: Database connection successful -- 15:25:46.292 INFO [27523]: _SERVER found -- 15:25:46.292 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 15:25:46.292 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:46.292 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:46.292 INFO [27523]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 15:25:46.292 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:46.304 INFO [27523]: COREGRADE is stopping... -- 15:25:46.304 DEBUG [27523]: Closing database connection -- 15:25:46.304 SQL [27523]: pgsql_close() -- 15:25:46.304 INFO [27471]: COREGRADE is starting... -- 15:25:46.304 INFO [27471]: Version from config: 1.0 -- 15:25:46.304 DEBUG [27471]: Connecting to database... -- 15:25:46.304 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:46.304 SQL [27471]: pgsql_db_connect() -- 15:25:46.298 DEBUG [27474]: Database connection successful -- 15:25:46.298 INFO [27474]: _SERVER found -- 15:25:46.298 INFO [27474]: REMOTE_ADDR = 10.0.0.15 -- 15:25:46.298 INFO [27474]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:46.298 INFO [27474]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:46.298 INFO [27474]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 15:25:46.298 INFO [27474]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:46.310 INFO [27474]: COREGRADE is stopping... -- 15:25:46.311 DEBUG [27474]: Closing database connection -- 15:25:46.311 SQL [27474]: pgsql_close() -- 15:25:46.303 DEBUG [27472]: Database connection successful -- 15:25:46.303 INFO [27472]: _SERVER found -- 15:25:46.303 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 15:25:46.303 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:46.303 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:46.303 INFO [27472]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 15:25:46.303 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:46.315 INFO [27472]: COREGRADE is stopping... -- 15:25:46.315 DEBUG [27472]: Closing database connection -- 15:25:46.315 SQL [27472]: pgsql_close() -- 15:25:46.308 DEBUG [27471]: Database connection successful -- 15:25:46.308 INFO [27471]: _SERVER found -- 15:25:46.308 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 15:25:46.308 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:46.308 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:46.308 INFO [27471]: QUERY_STRING = /assets/js/pages/dashboard.js -- 15:25:46.308 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:46.320 INFO [27471]: COREGRADE is stopping... -- 15:25:46.320 DEBUG [27471]: Closing database connection -- 15:25:46.320 SQL [27471]: pgsql_close() -- 15:25:46.320 INFO [27473]: COREGRADE is starting... -- 15:25:46.320 INFO [27473]: Version from config: 1.0 -- 15:25:46.320 DEBUG [27473]: Connecting to database... -- 15:25:46.320 DEBUG [27473]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:46.320 SQL [27473]: pgsql_db_connect() -- 15:25:46.324 DEBUG [27473]: Database connection successful -- 15:25:46.324 INFO [27473]: _SERVER found -- 15:25:46.324 INFO [27473]: REMOTE_ADDR = 10.0.0.15 -- 15:25:46.324 INFO [27473]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:46.324 INFO [27473]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:46.324 INFO [27473]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 15:25:46.324 INFO [27473]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:46.336 INFO [27473]: COREGRADE is stopping... -- 15:25:46.336 DEBUG [27473]: Closing database connection -- 15:25:46.336 SQL [27473]: pgsql_close() -- 15:25:46.344 INFO [27473]: COREGRADE is starting... -- 15:25:46.344 INFO [27473]: Version from config: 1.0 -- 15:25:46.344 DEBUG [27473]: Connecting to database... -- 15:25:46.344 DEBUG [27473]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:46.344 SQL [27473]: pgsql_db_connect() -- 15:25:46.348 DEBUG [27473]: Database connection successful -- 15:25:46.348 INFO [27473]: _SERVER found -- 15:25:46.348 INFO [27473]: REMOTE_ADDR = 10.0.0.15 -- 15:25:46.348 INFO [27473]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:46.348 INFO [27473]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:46.348 INFO [27473]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 15:25:46.348 INFO [27473]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:46.360 INFO [27473]: COREGRADE is stopping... -- 15:25:46.360 DEBUG [27473]: Closing database connection -- 15:25:46.360 SQL [27473]: pgsql_close() -- 15:25:46.382 INFO [27471]: COREGRADE is starting... -- 15:25:46.382 INFO [27471]: Version from config: 1.0 -- 15:25:46.382 DEBUG [27471]: Connecting to database... -- 15:25:46.382 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:46.382 SQL [27471]: pgsql_db_connect() -- 15:25:46.389 INFO [27474]: COREGRADE is starting... -- 15:25:46.389 INFO [27474]: Version from config: 1.0 -- 15:25:46.389 DEBUG [27474]: Connecting to database... -- 15:25:46.389 DEBUG [27474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:46.389 SQL [27474]: pgsql_db_connect() -- 15:25:46.395 INFO [27472]: COREGRADE is starting... -- 15:25:46.396 INFO [27472]: Version from config: 1.0 -- 15:25:46.396 DEBUG [27472]: Connecting to database... -- 15:25:46.396 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:46.396 SQL [27472]: pgsql_db_connect() -- 15:25:46.386 DEBUG [27471]: Database connection successful -- 15:25:46.386 INFO [27471]: _SERVER found -- 15:25:46.386 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 15:25:46.386 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:46.386 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:46.386 INFO [27471]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 15:25:46.386 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:46.398 INFO [27471]: COREGRADE is stopping... -- 15:25:46.398 DEBUG [27471]: Closing database connection -- 15:25:46.398 SQL [27471]: pgsql_close() -- 15:25:46.400 INFO [27471]: COREGRADE is starting... -- 15:25:46.401 INFO [27471]: Version from config: 1.0 -- 15:25:46.401 DEBUG [27471]: Connecting to database... -- 15:25:46.401 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:46.401 SQL [27471]: pgsql_db_connect() -- 15:25:46.393 DEBUG [27474]: Database connection successful -- 15:25:46.393 INFO [27474]: _SERVER found -- 15:25:46.393 INFO [27474]: REMOTE_ADDR = 10.0.0.15 -- 15:25:46.393 INFO [27474]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:46.393 INFO [27474]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:46.393 INFO [27474]: QUERY_STRING = /assets/js/pages/picker_date.js -- 15:25:46.393 INFO [27474]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:46.405 INFO [27474]: COREGRADE is stopping... -- 15:25:46.405 DEBUG [27474]: Closing database connection -- 15:25:46.405 SQL [27474]: pgsql_close() -- 15:25:46.400 DEBUG [27472]: Database connection successful -- 15:25:46.400 INFO [27472]: _SERVER found -- 15:25:46.400 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 15:25:46.400 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:46.400 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:46.400 INFO [27472]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 15:25:46.400 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:46.412 INFO [27472]: COREGRADE is stopping... -- 15:25:46.412 DEBUG [27472]: Closing database connection -- 15:25:46.412 SQL [27472]: pgsql_close() -- 15:25:46.415 INFO [27473]: COREGRADE is starting... -- 15:25:46.415 INFO [27473]: Version from config: 1.0 -- 15:25:46.416 DEBUG [27473]: Connecting to database... -- 15:25:46.416 DEBUG [27473]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:46.416 SQL [27473]: pgsql_db_connect() -- 15:25:46.404 DEBUG [27471]: Database connection successful -- 15:25:46.404 INFO [27471]: _SERVER found -- 15:25:46.404 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 15:25:46.404 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:46.404 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:46.404 INFO [27471]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 15:25:46.404 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:46.417 INFO [27471]: COREGRADE is stopping... -- 15:25:46.417 DEBUG [27471]: Closing database connection -- 15:25:46.417 SQL [27471]: pgsql_close() -- 15:25:46.426 INFO [27470]: COREGRADE is starting... -- 15:25:46.426 INFO [27470]: Version from config: 1.0 -- 15:25:46.426 DEBUG [27470]: Connecting to database... -- 15:25:46.426 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:46.426 SQL [27470]: pgsql_db_connect() -- 15:25:46.420 DEBUG [27473]: Database connection successful -- 15:25:46.420 INFO [27473]: _SERVER found -- 15:25:46.420 INFO [27473]: REMOTE_ADDR = 10.0.0.15 -- 15:25:46.420 INFO [27473]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:46.420 INFO [27473]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:46.420 INFO [27473]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 15:25:46.420 INFO [27473]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:46.431 INFO [27473]: COREGRADE is stopping... -- 15:25:46.431 DEBUG [27473]: Closing database connection -- 15:25:46.431 SQL [27473]: pgsql_close() -- 15:25:46.430 DEBUG [27470]: Database connection successful -- 15:25:46.430 INFO [27470]: _SERVER found -- 15:25:46.430 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:25:46.430 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:46.430 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:46.430 INFO [27470]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 15:25:46.430 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:46.443 INFO [27470]: COREGRADE is stopping... -- 15:25:46.443 DEBUG [27470]: Closing database connection -- 15:25:46.443 SQL [27470]: pgsql_close() -- 15:25:46.467 INFO [27471]: COREGRADE is starting... -- 15:25:46.467 INFO [27471]: Version from config: 1.0 -- 15:25:46.467 DEBUG [27471]: Connecting to database... -- 15:25:46.467 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:46.467 SQL [27471]: pgsql_db_connect() -- 15:25:46.476 INFO [27474]: COREGRADE is starting... -- 15:25:46.477 INFO [27474]: Version from config: 1.0 -- 15:25:46.477 DEBUG [27474]: Connecting to database... -- 15:25:46.477 DEBUG [27474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:46.477 SQL [27474]: pgsql_db_connect() -- 15:25:46.471 DEBUG [27471]: Database connection successful -- 15:25:46.471 INFO [27471]: _SERVER found -- 15:25:46.471 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 15:25:46.471 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:46.471 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:46.471 INFO [27471]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 15:25:46.471 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:46.483 INFO [27471]: COREGRADE is stopping... -- 15:25:46.483 DEBUG [27471]: Closing database connection -- 15:25:46.483 SQL [27471]: pgsql_close() -- 15:25:46.490 INFO [27471]: COREGRADE is starting... -- 15:25:46.490 INFO [27471]: Version from config: 1.0 -- 15:25:46.490 DEBUG [27471]: Connecting to database... -- 15:25:46.491 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:46.491 SQL [27471]: pgsql_db_connect() -- 15:25:46.491 INFO [27472]: COREGRADE is starting... -- 15:25:46.491 INFO [27472]: Version from config: 1.0 -- 15:25:46.491 DEBUG [27472]: Connecting to database... -- 15:25:46.491 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:46.491 SQL [27472]: pgsql_db_connect() -- 15:25:46.481 DEBUG [27474]: Database connection successful -- 15:25:46.481 INFO [27474]: _SERVER found -- 15:25:46.481 INFO [27474]: REMOTE_ADDR = 10.0.0.15 -- 15:25:46.481 INFO [27474]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:46.481 INFO [27474]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:46.481 INFO [27474]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 15:25:46.481 INFO [27474]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:46.494 INFO [27474]: COREGRADE is stopping... -- 15:25:46.494 DEBUG [27474]: Closing database connection -- 15:25:46.494 SQL [27474]: pgsql_close() -- 15:25:46.501 INFO [27470]: COREGRADE is starting... -- 15:25:46.501 INFO [27470]: Version from config: 1.0 -- 15:25:46.501 DEBUG [27470]: Connecting to database... -- 15:25:46.501 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:46.501 SQL [27470]: pgsql_db_connect() -- 15:25:46.495 DEBUG [27471]: Database connection successful -- 15:25:46.495 INFO [27471]: _SERVER found -- 15:25:46.495 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 15:25:46.495 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:46.495 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:46.495 INFO [27471]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 15:25:46.495 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:46.506 INFO [27471]: COREGRADE is stopping... -- 15:25:46.506 DEBUG [27471]: Closing database connection -- 15:25:46.506 SQL [27471]: pgsql_close() -- 15:25:46.495 DEBUG [27472]: Database connection successful -- 15:25:46.495 INFO [27472]: _SERVER found -- 15:25:46.495 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 15:25:46.495 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:46.495 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:46.495 INFO [27472]: QUERY_STRING = /assets/customjs/general.js -- 15:25:46.495 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:46.507 INFO [27472]: COREGRADE is stopping... -- 15:25:46.507 DEBUG [27472]: Closing database connection -- 15:25:46.507 SQL [27472]: pgsql_close() -- 15:25:46.505 DEBUG [27470]: Database connection successful -- 15:25:46.505 INFO [27470]: _SERVER found -- 15:25:46.505 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:25:46.505 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:46.505 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:46.505 INFO [27470]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 15:25:46.505 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:46.518 INFO [27470]: COREGRADE is stopping... -- 15:25:46.518 DEBUG [27470]: Closing database connection -- 15:25:46.518 SQL [27470]: pgsql_close() -- 15:25:46.590 INFO [27470]: COREGRADE is starting... -- 15:25:46.590 INFO [27470]: Version from config: 1.0 -- 15:25:46.590 DEBUG [27470]: Connecting to database... -- 15:25:46.590 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:46.590 SQL [27470]: pgsql_db_connect() -- 15:25:46.594 DEBUG [27470]: Database connection successful -- 15:25:46.594 INFO [27470]: _SERVER found -- 15:25:46.594 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:25:46.594 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:46.594 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:46.594 INFO [27470]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 15:25:46.594 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:46.606 INFO [27470]: COREGRADE is stopping... -- 15:25:46.606 DEBUG [27470]: Closing database connection -- 15:25:46.606 SQL [27470]: pgsql_close() -- 15:25:46.677 INFO [27470]: COREGRADE is starting... -- 15:25:46.677 INFO [27470]: Version from config: 1.0 -- 15:25:46.677 DEBUG [27470]: Connecting to database... -- 15:25:46.677 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:46.677 SQL [27470]: pgsql_db_connect() -- 15:25:46.681 DEBUG [27470]: Database connection successful -- 15:25:46.681 INFO [27470]: _SERVER found -- 15:25:46.681 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:25:46.681 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:46.681 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:46.681 INFO [27470]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 15:25:46.681 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:46.693 INFO [27470]: COREGRADE is stopping... -- 15:25:46.693 DEBUG [27470]: Closing database connection -- 15:25:46.693 SQL [27470]: pgsql_close() -- 15:25:46.763 INFO [27470]: COREGRADE is starting... -- 15:25:46.763 INFO [27470]: Version from config: 1.0 -- 15:25:46.763 DEBUG [27470]: Connecting to database... -- 15:25:46.763 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:46.763 SQL [27470]: pgsql_db_connect() -- 15:25:46.767 DEBUG [27470]: Database connection successful -- 15:25:46.767 INFO [27470]: _SERVER found -- 15:25:46.767 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:25:46.767 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:46.767 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:46.767 INFO [27470]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 15:25:46.767 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:46.779 INFO [27470]: COREGRADE is stopping... -- 15:25:46.779 DEBUG [27470]: Closing database connection -- 15:25:46.779 SQL [27470]: pgsql_close() -- 15:25:46.850 INFO [27470]: COREGRADE is starting... -- 15:25:46.850 INFO [27470]: Version from config: 1.0 -- 15:25:46.850 DEBUG [27470]: Connecting to database... -- 15:25:46.850 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:46.850 SQL [27470]: pgsql_db_connect() -- 15:25:46.854 DEBUG [27470]: Database connection successful -- 15:25:46.854 INFO [27470]: _SERVER found -- 15:25:46.854 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:25:46.854 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:46.854 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:46.854 INFO [27470]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 15:25:46.854 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:46.866 INFO [27470]: COREGRADE is stopping... -- 15:25:46.866 DEBUG [27470]: Closing database connection -- 15:25:46.866 SQL [27470]: pgsql_close() -- 15:25:46.936 INFO [27470]: COREGRADE is starting... -- 15:25:46.936 INFO [27470]: Version from config: 1.0 -- 15:25:46.936 DEBUG [27470]: Connecting to database... -- 15:25:46.936 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:46.936 SQL [27470]: pgsql_db_connect() -- 15:25:46.940 DEBUG [27470]: Database connection successful -- 15:25:46.940 INFO [27470]: _SERVER found -- 15:25:46.940 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:25:46.940 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:46.940 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:46.940 INFO [27470]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 15:25:46.940 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:46.952 INFO [27470]: COREGRADE is stopping... -- 15:25:46.952 DEBUG [27470]: Closing database connection -- 15:25:46.952 SQL [27470]: pgsql_close() -- 15:25:47.023 INFO [27470]: COREGRADE is starting... -- 15:25:47.023 INFO [27470]: Version from config: 1.0 -- 15:25:47.023 DEBUG [27470]: Connecting to database... -- 15:25:47.023 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:47.023 SQL [27470]: pgsql_db_connect() -- 15:25:47.027 DEBUG [27470]: Database connection successful -- 15:25:47.027 INFO [27470]: _SERVER found -- 15:25:47.027 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:25:47.027 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:47.027 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:47.027 INFO [27470]: QUERY_STRING = /assets/js/pages/dashboard.js -- 15:25:47.027 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:47.039 INFO [27470]: COREGRADE is stopping... -- 15:25:47.039 DEBUG [27470]: Closing database connection -- 15:25:47.039 SQL [27470]: pgsql_close() -- 15:25:47.111 INFO [27470]: COREGRADE is starting... -- 15:25:47.111 INFO [27470]: Version from config: 1.0 -- 15:25:47.111 DEBUG [27470]: Connecting to database... -- 15:25:47.111 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:47.111 SQL [27470]: pgsql_db_connect() -- 15:25:47.115 DEBUG [27470]: Database connection successful -- 15:25:47.115 INFO [27470]: _SERVER found -- 15:25:47.115 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:25:47.115 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:47.115 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:47.115 INFO [27470]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 15:25:47.115 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:47.127 INFO [27470]: COREGRADE is stopping... -- 15:25:47.127 DEBUG [27470]: Closing database connection -- 15:25:47.127 SQL [27470]: pgsql_close() -- 15:25:47.196 INFO [27470]: COREGRADE is starting... -- 15:25:47.197 INFO [27470]: Version from config: 1.0 -- 15:25:47.197 DEBUG [27470]: Connecting to database... -- 15:25:47.197 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:47.197 SQL [27470]: pgsql_db_connect() -- 15:25:47.200 DEBUG [27470]: Database connection successful -- 15:25:47.200 INFO [27470]: _SERVER found -- 15:25:47.200 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:25:47.200 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:47.200 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:47.200 INFO [27470]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 15:25:47.200 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:47.212 INFO [27470]: COREGRADE is stopping... -- 15:25:47.212 DEBUG [27470]: Closing database connection -- 15:25:47.212 SQL [27470]: pgsql_close() -- 15:25:47.282 INFO [27470]: COREGRADE is starting... -- 15:25:47.282 INFO [27470]: Version from config: 1.0 -- 15:25:47.282 DEBUG [27470]: Connecting to database... -- 15:25:47.283 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:47.283 SQL [27470]: pgsql_db_connect() -- 15:25:47.286 DEBUG [27470]: Database connection successful -- 15:25:47.286 INFO [27470]: _SERVER found -- 15:25:47.286 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:25:47.286 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:47.286 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:47.286 INFO [27470]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 15:25:47.286 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:47.299 INFO [27470]: COREGRADE is stopping... -- 15:25:47.299 DEBUG [27470]: Closing database connection -- 15:25:47.299 SQL [27470]: pgsql_close() -- 15:25:47.369 INFO [27470]: COREGRADE is starting... -- 15:25:47.369 INFO [27470]: Version from config: 1.0 -- 15:25:47.369 DEBUG [27470]: Connecting to database... -- 15:25:47.369 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:47.369 SQL [27470]: pgsql_db_connect() -- 15:25:47.373 DEBUG [27470]: Database connection successful -- 15:25:47.373 INFO [27470]: _SERVER found -- 15:25:47.373 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:25:47.373 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:47.373 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:47.373 INFO [27470]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 15:25:47.373 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:47.385 INFO [27470]: COREGRADE is stopping... -- 15:25:47.385 DEBUG [27470]: Closing database connection -- 15:25:47.385 SQL [27470]: pgsql_close() -- 15:25:47.458 INFO [27470]: COREGRADE is starting... -- 15:25:47.458 INFO [27470]: Version from config: 1.0 -- 15:25:47.458 DEBUG [27470]: Connecting to database... -- 15:25:47.458 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:47.458 SQL [27470]: pgsql_db_connect() -- 15:25:47.462 DEBUG [27470]: Database connection successful -- 15:25:47.462 INFO [27470]: _SERVER found -- 15:25:47.462 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:25:47.462 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:47.462 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:47.462 INFO [27470]: QUERY_STRING = /assets/js/pages/picker_date.js -- 15:25:47.462 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:47.474 INFO [27470]: COREGRADE is stopping... -- 15:25:47.474 DEBUG [27470]: Closing database connection -- 15:25:47.474 SQL [27470]: pgsql_close() -- 15:25:47.545 INFO [27470]: COREGRADE is starting... -- 15:25:47.545 INFO [27470]: Version from config: 1.0 -- 15:25:47.545 DEBUG [27470]: Connecting to database... -- 15:25:47.545 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:47.545 SQL [27470]: pgsql_db_connect() -- 15:25:47.549 DEBUG [27470]: Database connection successful -- 15:25:47.549 INFO [27470]: _SERVER found -- 15:25:47.549 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:25:47.549 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:47.549 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:47.549 INFO [27470]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 15:25:47.549 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:47.561 INFO [27470]: COREGRADE is stopping... -- 15:25:47.561 DEBUG [27470]: Closing database connection -- 15:25:47.561 SQL [27470]: pgsql_close() -- 15:25:47.631 INFO [27470]: COREGRADE is starting... -- 15:25:47.631 INFO [27470]: Version from config: 1.0 -- 15:25:47.631 DEBUG [27470]: Connecting to database... -- 15:25:47.631 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:47.631 SQL [27470]: pgsql_db_connect() -- 15:25:47.635 DEBUG [27470]: Database connection successful -- 15:25:47.635 INFO [27470]: _SERVER found -- 15:25:47.635 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:25:47.635 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:47.635 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:47.635 INFO [27470]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 15:25:47.635 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:47.647 INFO [27470]: COREGRADE is stopping... -- 15:25:47.647 DEBUG [27470]: Closing database connection -- 15:25:47.647 SQL [27470]: pgsql_close() -- 15:25:47.717 INFO [27470]: COREGRADE is starting... -- 15:25:47.717 INFO [27470]: Version from config: 1.0 -- 15:25:47.717 DEBUG [27470]: Connecting to database... -- 15:25:47.717 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:47.717 SQL [27470]: pgsql_db_connect() -- 15:25:47.721 DEBUG [27470]: Database connection successful -- 15:25:47.721 INFO [27470]: _SERVER found -- 15:25:47.721 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:25:47.721 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:47.721 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:47.721 INFO [27470]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 15:25:47.721 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:47.733 INFO [27470]: COREGRADE is stopping... -- 15:25:47.733 DEBUG [27470]: Closing database connection -- 15:25:47.733 SQL [27470]: pgsql_close() -- 15:25:47.803 INFO [27470]: COREGRADE is starting... -- 15:25:47.804 INFO [27470]: Version from config: 1.0 -- 15:25:47.804 DEBUG [27470]: Connecting to database... -- 15:25:47.804 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:47.804 SQL [27470]: pgsql_db_connect() -- 15:25:47.808 DEBUG [27470]: Database connection successful -- 15:25:47.808 INFO [27470]: _SERVER found -- 15:25:47.808 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:25:47.808 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:47.808 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:47.808 INFO [27470]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 15:25:47.808 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:47.820 INFO [27470]: COREGRADE is stopping... -- 15:25:47.820 DEBUG [27470]: Closing database connection -- 15:25:47.820 SQL [27470]: pgsql_close() -- 15:25:47.890 INFO [27470]: COREGRADE is starting... -- 15:25:47.890 INFO [27470]: Version from config: 1.0 -- 15:25:47.890 DEBUG [27470]: Connecting to database... -- 15:25:47.890 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:47.890 SQL [27470]: pgsql_db_connect() -- 15:25:47.894 DEBUG [27470]: Database connection successful -- 15:25:47.894 INFO [27470]: _SERVER found -- 15:25:47.894 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:25:47.894 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:47.894 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:47.894 INFO [27470]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 15:25:47.894 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:47.906 INFO [27470]: COREGRADE is stopping... -- 15:25:47.906 DEBUG [27470]: Closing database connection -- 15:25:47.906 SQL [27470]: pgsql_close() -- 15:25:48.007 INFO [27470]: COREGRADE is starting... -- 15:25:48.008 INFO [27470]: Version from config: 1.0 -- 15:25:48.008 DEBUG [27470]: Connecting to database... -- 15:25:48.008 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:48.008 SQL [27470]: pgsql_db_connect() -- 15:25:48.012 DEBUG [27470]: Database connection successful -- 15:25:48.012 INFO [27470]: _SERVER found -- 15:25:48.012 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:25:48.012 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:48.012 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:48.012 INFO [27470]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 15:25:48.012 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:48.024 INFO [27470]: COREGRADE is stopping... -- 15:25:48.024 DEBUG [27470]: Closing database connection -- 15:25:48.024 SQL [27470]: pgsql_close() -- 15:25:48.094 INFO [27470]: COREGRADE is starting... -- 15:25:48.094 INFO [27470]: Version from config: 1.0 -- 15:25:48.094 DEBUG [27470]: Connecting to database... -- 15:25:48.094 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:48.094 SQL [27470]: pgsql_db_connect() -- 15:25:48.098 DEBUG [27470]: Database connection successful -- 15:25:48.098 INFO [27470]: _SERVER found -- 15:25:48.098 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:25:48.098 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:48.098 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:48.098 INFO [27470]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 15:25:48.098 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:48.110 INFO [27470]: COREGRADE is stopping... -- 15:25:48.110 DEBUG [27470]: Closing database connection -- 15:25:48.110 SQL [27470]: pgsql_close() -- 15:25:48.271 INFO [27470]: COREGRADE is starting... -- 15:25:48.271 INFO [27470]: Version from config: 1.0 -- 15:25:48.271 DEBUG [27470]: Connecting to database... -- 15:25:48.271 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:25:48.271 SQL [27470]: pgsql_db_connect() -- 15:25:48.275 DEBUG [27470]: Database connection successful -- 15:25:48.275 INFO [27470]: _SERVER found -- 15:25:48.275 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:25:48.275 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:25:48.275 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:25:48.275 INFO [27470]: QUERY_STRING = /assets/customjs/general.js -- 15:25:48.275 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:25:48.287 INFO [27470]: COREGRADE is stopping... -- 15:25:48.287 DEBUG [27470]: Closing database connection -- 15:25:48.287 SQL [27470]: pgsql_close() -- 15:30:14.412 INFO [27583]: COREGRADE is starting... -- 15:30:14.413 INFO [27583]: Version from config: 1.0 -- 15:30:14.413 DEBUG [27583]: Connecting to database... -- 15:30:14.413 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:14.413 SQL [27583]: pgsql_db_connect() -- 15:30:14.418 DEBUG [27583]: Database connection successful -- 15:30:14.418 INFO [27583]: _SERVER found -- 15:30:14.418 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 15:30:14.418 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:14.418 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:14.418 INFO [27583]: QUERY_STRING = /start -- 15:30:14.418 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:14.465 INFO [27583]: COREGRADE is stopping... -- 15:30:14.465 DEBUG [27583]: Closing database connection -- 15:30:14.465 SQL [27583]: pgsql_close() -- 15:30:14.571 INFO [27583]: COREGRADE is starting... -- 15:30:14.571 INFO [27583]: Version from config: 1.0 -- 15:30:14.571 DEBUG [27583]: Connecting to database... -- 15:30:14.572 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:14.572 SQL [27583]: pgsql_db_connect() -- 15:30:14.576 DEBUG [27583]: Database connection successful -- 15:30:14.576 INFO [27583]: _SERVER found -- 15:30:14.576 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 15:30:14.576 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:14.576 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:14.576 INFO [27583]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 15:30:14.576 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:14.587 INFO [27583]: COREGRADE is stopping... -- 15:30:14.587 DEBUG [27583]: Closing database connection -- 15:30:14.587 SQL [27583]: pgsql_close() -- 15:30:14.635 INFO [27583]: COREGRADE is starting... -- 15:30:14.635 INFO [27583]: Version from config: 1.0 -- 15:30:14.635 DEBUG [27583]: Connecting to database... -- 15:30:14.635 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:14.635 SQL [27583]: pgsql_db_connect() -- 15:30:14.637 INFO [27584]: COREGRADE is starting... -- 15:30:14.637 INFO [27584]: Version from config: 1.0 -- 15:30:14.637 DEBUG [27584]: Connecting to database... -- 15:30:14.637 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:14.637 SQL [27584]: pgsql_db_connect() -- 15:30:14.644 INFO [27585]: COREGRADE is starting... -- 15:30:14.644 INFO [27585]: Version from config: 1.0 -- 15:30:14.644 DEBUG [27585]: Connecting to database... -- 15:30:14.644 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:14.644 SQL [27585]: pgsql_db_connect() -- 15:30:14.639 DEBUG [27583]: Database connection successful -- 15:30:14.639 INFO [27583]: _SERVER found -- 15:30:14.639 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 15:30:14.639 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:14.639 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:14.639 INFO [27583]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 15:30:14.639 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:14.651 INFO [27583]: COREGRADE is stopping... -- 15:30:14.651 DEBUG [27583]: Closing database connection -- 15:30:14.651 SQL [27583]: pgsql_close() -- 15:30:14.652 INFO [27586]: COREGRADE is starting... -- 15:30:14.652 INFO [27586]: Version from config: 1.0 -- 15:30:14.652 DEBUG [27586]: Connecting to database... -- 15:30:14.652 DEBUG [27586]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:14.652 SQL [27586]: pgsql_db_connect() -- 15:30:14.658 INFO [27523]: COREGRADE is starting... -- 15:30:14.658 INFO [27523]: Version from config: 1.0 -- 15:30:14.658 DEBUG [27523]: Connecting to database... -- 15:30:14.658 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:14.658 SQL [27523]: pgsql_db_connect() -- 15:30:14.642 DEBUG [27584]: Database connection successful -- 15:30:14.642 INFO [27584]: _SERVER found -- 15:30:14.642 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 15:30:14.642 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:14.642 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:14.642 INFO [27584]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 15:30:14.642 INFO [27584]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:14.659 INFO [27584]: COREGRADE is stopping... -- 15:30:14.659 DEBUG [27584]: Closing database connection -- 15:30:14.659 SQL [27584]: pgsql_close() -- 15:30:14.649 DEBUG [27585]: Database connection successful -- 15:30:14.649 INFO [27585]: _SERVER found -- 15:30:14.649 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 15:30:14.649 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:14.649 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:14.649 INFO [27585]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 15:30:14.649 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:14.665 INFO [27585]: COREGRADE is stopping... -- 15:30:14.665 DEBUG [27585]: Closing database connection -- 15:30:14.665 SQL [27585]: pgsql_close() -- 15:30:14.666 INFO [27583]: COREGRADE is starting... -- 15:30:14.666 INFO [27583]: Version from config: 1.0 -- 15:30:14.666 DEBUG [27583]: Connecting to database... -- 15:30:14.666 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:14.666 SQL [27583]: pgsql_db_connect() -- 15:30:14.656 DEBUG [27586]: Database connection successful -- 15:30:14.656 INFO [27586]: _SERVER found -- 15:30:14.656 INFO [27586]: REMOTE_ADDR = 10.0.0.15 -- 15:30:14.656 INFO [27586]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:14.656 INFO [27586]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:14.656 INFO [27586]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 15:30:14.656 INFO [27586]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:14.672 INFO [27586]: COREGRADE is stopping... -- 15:30:14.672 DEBUG [27586]: Closing database connection -- 15:30:14.672 SQL [27586]: pgsql_close() -- 15:30:14.662 DEBUG [27523]: Database connection successful -- 15:30:14.662 INFO [27523]: _SERVER found -- 15:30:14.662 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 15:30:14.662 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:14.662 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:14.662 INFO [27523]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 15:30:14.662 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:14.674 INFO [27523]: COREGRADE is stopping... -- 15:30:14.674 DEBUG [27523]: Closing database connection -- 15:30:14.674 SQL [27523]: pgsql_close() -- 15:30:14.670 DEBUG [27583]: Database connection successful -- 15:30:14.670 INFO [27583]: _SERVER found -- 15:30:14.670 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 15:30:14.670 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:14.670 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:14.670 INFO [27583]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 15:30:14.670 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:14.682 INFO [27583]: COREGRADE is stopping... -- 15:30:14.682 DEBUG [27583]: Closing database connection -- 15:30:14.682 SQL [27583]: pgsql_close() -- 15:30:14.718 INFO [27583]: COREGRADE is starting... -- 15:30:14.718 INFO [27583]: Version from config: 1.0 -- 15:30:14.718 DEBUG [27583]: Connecting to database... -- 15:30:14.718 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:14.718 SQL [27583]: pgsql_db_connect() -- 15:30:14.722 DEBUG [27583]: Database connection successful -- 15:30:14.722 INFO [27583]: _SERVER found -- 15:30:14.722 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 15:30:14.722 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:14.722 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:14.722 INFO [27583]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 15:30:14.722 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:14.733 INFO [27583]: COREGRADE is stopping... -- 15:30:14.733 DEBUG [27583]: Closing database connection -- 15:30:14.733 SQL [27583]: pgsql_close() -- 15:30:14.735 INFO [27584]: COREGRADE is starting... -- 15:30:14.736 INFO [27584]: Version from config: 1.0 -- 15:30:14.736 DEBUG [27584]: Connecting to database... -- 15:30:14.736 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:14.736 SQL [27584]: pgsql_db_connect() -- 15:30:14.744 INFO [27583]: COREGRADE is starting... -- 15:30:14.744 INFO [27583]: Version from config: 1.0 -- 15:30:14.744 DEBUG [27583]: Connecting to database... -- 15:30:14.744 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:14.744 SQL [27583]: pgsql_db_connect() -- 15:30:14.750 INFO [27523]: COREGRADE is starting... -- 15:30:14.750 INFO [27523]: Version from config: 1.0 -- 15:30:14.750 DEBUG [27523]: Connecting to database... -- 15:30:14.750 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:14.750 SQL [27523]: pgsql_db_connect() -- 15:30:14.740 DEBUG [27584]: Database connection successful -- 15:30:14.740 INFO [27584]: _SERVER found -- 15:30:14.740 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 15:30:14.740 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:14.740 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:14.740 INFO [27584]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 15:30:14.740 INFO [27584]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:14.752 INFO [27584]: COREGRADE is stopping... -- 15:30:14.752 DEBUG [27584]: Closing database connection -- 15:30:14.752 SQL [27584]: pgsql_close() -- 15:30:14.755 INFO [27586]: COREGRADE is starting... -- 15:30:14.756 INFO [27586]: Version from config: 1.0 -- 15:30:14.756 DEBUG [27586]: Connecting to database... -- 15:30:14.756 DEBUG [27586]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:14.756 SQL [27586]: pgsql_db_connect() -- 15:30:14.759 INFO [27585]: COREGRADE is starting... -- 15:30:14.759 INFO [27585]: Version from config: 1.0 -- 15:30:14.759 DEBUG [27585]: Connecting to database... -- 15:30:14.759 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:14.759 SQL [27585]: pgsql_db_connect() -- 15:30:14.748 DEBUG [27583]: Database connection successful -- 15:30:14.748 INFO [27583]: _SERVER found -- 15:30:14.748 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 15:30:14.748 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:14.748 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:14.748 INFO [27583]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 15:30:14.748 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:14.760 INFO [27583]: COREGRADE is stopping... -- 15:30:14.760 DEBUG [27583]: Closing database connection -- 15:30:14.760 SQL [27583]: pgsql_close() -- 15:30:14.755 DEBUG [27523]: Database connection successful -- 15:30:14.755 INFO [27523]: _SERVER found -- 15:30:14.755 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 15:30:14.755 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:14.755 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:14.755 INFO [27523]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 15:30:14.755 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:14.766 INFO [27523]: COREGRADE is stopping... -- 15:30:14.767 DEBUG [27523]: Closing database connection -- 15:30:14.767 SQL [27523]: pgsql_close() -- 15:30:14.761 DEBUG [27586]: Database connection successful -- 15:30:14.761 INFO [27586]: _SERVER found -- 15:30:14.761 INFO [27586]: REMOTE_ADDR = 10.0.0.15 -- 15:30:14.761 INFO [27586]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:14.761 INFO [27586]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:14.761 INFO [27586]: QUERY_STRING = /assets/js/pages/dashboard.js -- 15:30:14.761 INFO [27586]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:14.773 INFO [27586]: COREGRADE is stopping... -- 15:30:14.773 DEBUG [27586]: Closing database connection -- 15:30:14.773 SQL [27586]: pgsql_close() -- 15:30:14.764 DEBUG [27585]: Database connection successful -- 15:30:14.764 INFO [27585]: _SERVER found -- 15:30:14.764 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 15:30:14.764 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:14.764 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:14.764 INFO [27585]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 15:30:14.764 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:14.776 INFO [27585]: COREGRADE is stopping... -- 15:30:14.776 DEBUG [27585]: Closing database connection -- 15:30:14.776 SQL [27585]: pgsql_close() -- 15:30:14.797 INFO [27585]: COREGRADE is starting... -- 15:30:14.798 INFO [27585]: Version from config: 1.0 -- 15:30:14.798 DEBUG [27585]: Connecting to database... -- 15:30:14.798 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:14.798 SQL [27585]: pgsql_db_connect() -- 15:30:14.801 DEBUG [27585]: Database connection successful -- 15:30:14.801 INFO [27585]: _SERVER found -- 15:30:14.801 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 15:30:14.801 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:14.801 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:14.801 INFO [27585]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 15:30:14.801 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:14.813 INFO [27585]: COREGRADE is stopping... -- 15:30:14.813 DEBUG [27585]: Closing database connection -- 15:30:14.813 SQL [27585]: pgsql_close() -- 15:30:14.830 INFO [27584]: COREGRADE is starting... -- 15:30:14.830 INFO [27584]: Version from config: 1.0 -- 15:30:14.830 DEBUG [27584]: Connecting to database... -- 15:30:14.830 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:14.830 SQL [27584]: pgsql_db_connect() -- 15:30:14.836 INFO [27585]: COREGRADE is starting... -- 15:30:14.837 INFO [27585]: Version from config: 1.0 -- 15:30:14.837 DEBUG [27585]: Connecting to database... -- 15:30:14.837 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:14.837 SQL [27585]: pgsql_db_connect() -- 15:30:14.834 DEBUG [27584]: Database connection successful -- 15:30:14.834 INFO [27584]: _SERVER found -- 15:30:14.834 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 15:30:14.834 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:14.834 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:14.834 INFO [27584]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 15:30:14.834 INFO [27584]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:14.845 INFO [27584]: COREGRADE is stopping... -- 15:30:14.845 DEBUG [27584]: Closing database connection -- 15:30:14.845 SQL [27584]: pgsql_close() -- 15:30:14.845 INFO [27586]: COREGRADE is starting... -- 15:30:14.846 INFO [27586]: Version from config: 1.0 -- 15:30:14.846 DEBUG [27586]: Connecting to database... -- 15:30:14.846 DEBUG [27586]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:14.846 SQL [27586]: pgsql_db_connect() -- 15:30:14.852 INFO [27583]: COREGRADE is starting... -- 15:30:14.852 INFO [27583]: Version from config: 1.0 -- 15:30:14.852 DEBUG [27583]: Connecting to database... -- 15:30:14.852 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:14.852 SQL [27583]: pgsql_db_connect() -- 15:30:14.841 DEBUG [27585]: Database connection successful -- 15:30:14.841 INFO [27585]: _SERVER found -- 15:30:14.841 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 15:30:14.841 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:14.841 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:14.841 INFO [27585]: QUERY_STRING = /assets/js/pages/picker_date.js -- 15:30:14.841 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:14.852 INFO [27585]: COREGRADE is stopping... -- 15:30:14.852 DEBUG [27585]: Closing database connection -- 15:30:14.852 SQL [27585]: pgsql_close() -- 15:30:14.858 INFO [27523]: COREGRADE is starting... -- 15:30:14.858 INFO [27523]: Version from config: 1.0 -- 15:30:14.858 DEBUG [27523]: Connecting to database... -- 15:30:14.858 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:14.858 SQL [27523]: pgsql_db_connect() -- 15:30:14.850 DEBUG [27586]: Database connection successful -- 15:30:14.850 INFO [27586]: _SERVER found -- 15:30:14.850 INFO [27586]: REMOTE_ADDR = 10.0.0.15 -- 15:30:14.850 INFO [27586]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:14.850 INFO [27586]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:14.850 INFO [27586]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 15:30:14.850 INFO [27586]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:14.861 INFO [27586]: COREGRADE is stopping... -- 15:30:14.861 DEBUG [27586]: Closing database connection -- 15:30:14.861 SQL [27586]: pgsql_close() -- 15:30:14.856 DEBUG [27583]: Database connection successful -- 15:30:14.856 INFO [27583]: _SERVER found -- 15:30:14.856 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 15:30:14.856 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:14.856 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:14.856 INFO [27583]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 15:30:14.856 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:14.867 INFO [27583]: COREGRADE is stopping... -- 15:30:14.867 DEBUG [27583]: Closing database connection -- 15:30:14.867 SQL [27583]: pgsql_close() -- 15:30:14.862 DEBUG [27523]: Database connection successful -- 15:30:14.862 INFO [27523]: _SERVER found -- 15:30:14.862 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 15:30:14.862 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:14.862 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:14.862 INFO [27523]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 15:30:14.862 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:14.874 INFO [27523]: COREGRADE is stopping... -- 15:30:14.874 DEBUG [27523]: Closing database connection -- 15:30:14.874 SQL [27523]: pgsql_close() -- 15:30:14.876 INFO [27583]: COREGRADE is starting... -- 15:30:14.877 INFO [27583]: Version from config: 1.0 -- 15:30:14.877 DEBUG [27583]: Connecting to database... -- 15:30:14.877 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:14.877 SQL [27583]: pgsql_db_connect() -- 15:30:14.880 DEBUG [27583]: Database connection successful -- 15:30:14.881 INFO [27583]: _SERVER found -- 15:30:14.881 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 15:30:14.881 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:14.881 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:14.881 INFO [27583]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 15:30:14.881 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:14.892 INFO [27583]: COREGRADE is stopping... -- 15:30:14.892 DEBUG [27583]: Closing database connection -- 15:30:14.892 SQL [27583]: pgsql_close() -- 15:30:14.916 INFO [27584]: COREGRADE is starting... -- 15:30:14.917 INFO [27584]: Version from config: 1.0 -- 15:30:14.917 DEBUG [27584]: Connecting to database... -- 15:30:14.917 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:14.917 SQL [27584]: pgsql_db_connect() -- 15:30:14.924 INFO [27583]: COREGRADE is starting... -- 15:30:14.924 INFO [27583]: Version from config: 1.0 -- 15:30:14.924 DEBUG [27583]: Connecting to database... -- 15:30:14.924 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:14.924 SQL [27583]: pgsql_db_connect() -- 15:30:14.921 DEBUG [27584]: Database connection successful -- 15:30:14.921 INFO [27584]: _SERVER found -- 15:30:14.921 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 15:30:14.921 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:14.921 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:14.921 INFO [27584]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 15:30:14.921 INFO [27584]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:14.932 INFO [27584]: COREGRADE is stopping... -- 15:30:14.932 DEBUG [27584]: Closing database connection -- 15:30:14.932 SQL [27584]: pgsql_close() -- 15:30:14.933 INFO [27585]: COREGRADE is starting... -- 15:30:14.933 INFO [27585]: Version from config: 1.0 -- 15:30:14.933 DEBUG [27585]: Connecting to database... -- 15:30:14.933 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:14.933 SQL [27585]: pgsql_db_connect() -- 15:30:14.934 INFO [27523]: COREGRADE is starting... -- 15:30:14.934 INFO [27523]: Version from config: 1.0 -- 15:30:14.934 DEBUG [27523]: Connecting to database... -- 15:30:14.934 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:14.934 SQL [27523]: pgsql_db_connect() -- 15:30:14.928 DEBUG [27583]: Database connection successful -- 15:30:14.928 INFO [27583]: _SERVER found -- 15:30:14.928 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 15:30:14.928 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:14.928 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:14.928 INFO [27583]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 15:30:14.928 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:14.940 INFO [27583]: COREGRADE is stopping... -- 15:30:14.940 DEBUG [27583]: Closing database connection -- 15:30:14.940 SQL [27583]: pgsql_close() -- 15:30:14.937 DEBUG [27585]: Database connection successful -- 15:30:14.937 INFO [27585]: _SERVER found -- 15:30:14.937 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 15:30:14.937 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:14.937 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:14.937 INFO [27585]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 15:30:14.937 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:14.949 INFO [27585]: COREGRADE is stopping... -- 15:30:14.949 DEBUG [27585]: Closing database connection -- 15:30:14.949 SQL [27585]: pgsql_close() -- 15:30:14.939 DEBUG [27523]: Database connection successful -- 15:30:14.939 INFO [27523]: _SERVER found -- 15:30:14.939 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 15:30:14.939 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:14.939 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:14.939 INFO [27523]: QUERY_STRING = /assets/customjs/general.js -- 15:30:14.939 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:14.950 INFO [27523]: COREGRADE is stopping... -- 15:30:14.950 DEBUG [27523]: Closing database connection -- 15:30:14.950 SQL [27523]: pgsql_close() -- 15:30:14.955 INFO [27523]: COREGRADE is starting... -- 15:30:14.956 INFO [27523]: Version from config: 1.0 -- 15:30:14.956 DEBUG [27523]: Connecting to database... -- 15:30:14.956 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:14.956 SQL [27523]: pgsql_db_connect() -- 15:30:14.959 DEBUG [27523]: Database connection successful -- 15:30:14.959 INFO [27523]: _SERVER found -- 15:30:14.959 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 15:30:14.959 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:14.959 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:14.959 INFO [27523]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 15:30:14.959 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:14.971 INFO [27523]: COREGRADE is stopping... -- 15:30:14.971 DEBUG [27523]: Closing database connection -- 15:30:14.971 SQL [27523]: pgsql_close() -- 15:30:15.044 INFO [27523]: COREGRADE is starting... -- 15:30:15.044 INFO [27523]: Version from config: 1.0 -- 15:30:15.044 DEBUG [27523]: Connecting to database... -- 15:30:15.044 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:15.044 SQL [27523]: pgsql_db_connect() -- 15:30:15.048 DEBUG [27523]: Database connection successful -- 15:30:15.048 INFO [27523]: _SERVER found -- 15:30:15.048 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 15:30:15.048 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:15.048 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:15.048 INFO [27523]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 15:30:15.048 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:15.059 INFO [27523]: COREGRADE is stopping... -- 15:30:15.059 DEBUG [27523]: Closing database connection -- 15:30:15.059 SQL [27523]: pgsql_close() -- 15:30:15.131 INFO [27523]: COREGRADE is starting... -- 15:30:15.132 INFO [27523]: Version from config: 1.0 -- 15:30:15.132 DEBUG [27523]: Connecting to database... -- 15:30:15.132 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:15.132 SQL [27523]: pgsql_db_connect() -- 15:30:15.136 DEBUG [27523]: Database connection successful -- 15:30:15.136 INFO [27523]: _SERVER found -- 15:30:15.136 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 15:30:15.136 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:15.136 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:15.136 INFO [27523]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 15:30:15.136 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:15.147 INFO [27523]: COREGRADE is stopping... -- 15:30:15.147 DEBUG [27523]: Closing database connection -- 15:30:15.147 SQL [27523]: pgsql_close() -- 15:30:15.219 INFO [27523]: COREGRADE is starting... -- 15:30:15.219 INFO [27523]: Version from config: 1.0 -- 15:30:15.219 DEBUG [27523]: Connecting to database... -- 15:30:15.219 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:15.219 SQL [27523]: pgsql_db_connect() -- 15:30:15.223 DEBUG [27523]: Database connection successful -- 15:30:15.223 INFO [27523]: _SERVER found -- 15:30:15.223 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 15:30:15.223 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:15.223 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:15.223 INFO [27523]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 15:30:15.223 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:15.234 INFO [27523]: COREGRADE is stopping... -- 15:30:15.234 DEBUG [27523]: Closing database connection -- 15:30:15.234 SQL [27523]: pgsql_close() -- 15:30:15.306 INFO [27523]: COREGRADE is starting... -- 15:30:15.306 INFO [27523]: Version from config: 1.0 -- 15:30:15.306 DEBUG [27523]: Connecting to database... -- 15:30:15.306 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:15.306 SQL [27523]: pgsql_db_connect() -- 15:30:15.310 DEBUG [27523]: Database connection successful -- 15:30:15.310 INFO [27523]: _SERVER found -- 15:30:15.310 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 15:30:15.310 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:15.310 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:15.310 INFO [27523]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 15:30:15.310 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:15.322 INFO [27523]: COREGRADE is stopping... -- 15:30:15.322 DEBUG [27523]: Closing database connection -- 15:30:15.322 SQL [27523]: pgsql_close() -- 15:30:15.393 INFO [27523]: COREGRADE is starting... -- 15:30:15.393 INFO [27523]: Version from config: 1.0 -- 15:30:15.394 DEBUG [27523]: Connecting to database... -- 15:30:15.394 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:15.394 SQL [27523]: pgsql_db_connect() -- 15:30:15.398 DEBUG [27523]: Database connection successful -- 15:30:15.398 INFO [27523]: _SERVER found -- 15:30:15.398 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 15:30:15.398 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:15.398 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:15.398 INFO [27523]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 15:30:15.398 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:15.409 INFO [27523]: COREGRADE is stopping... -- 15:30:15.409 DEBUG [27523]: Closing database connection -- 15:30:15.409 SQL [27523]: pgsql_close() -- 15:30:15.480 INFO [27523]: COREGRADE is starting... -- 15:30:15.480 INFO [27523]: Version from config: 1.0 -- 15:30:15.480 DEBUG [27523]: Connecting to database... -- 15:30:15.480 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:15.480 SQL [27523]: pgsql_db_connect() -- 15:30:15.484 DEBUG [27523]: Database connection successful -- 15:30:15.484 INFO [27523]: _SERVER found -- 15:30:15.484 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 15:30:15.484 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:15.484 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:15.484 INFO [27523]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 15:30:15.484 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:15.496 INFO [27523]: COREGRADE is stopping... -- 15:30:15.496 DEBUG [27523]: Closing database connection -- 15:30:15.496 SQL [27523]: pgsql_close() -- 15:30:15.567 INFO [27523]: COREGRADE is starting... -- 15:30:15.567 INFO [27523]: Version from config: 1.0 -- 15:30:15.567 DEBUG [27523]: Connecting to database... -- 15:30:15.567 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:15.567 SQL [27523]: pgsql_db_connect() -- 15:30:15.571 DEBUG [27523]: Database connection successful -- 15:30:15.571 INFO [27523]: _SERVER found -- 15:30:15.571 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 15:30:15.571 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:15.571 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:15.571 INFO [27523]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 15:30:15.571 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:15.583 INFO [27523]: COREGRADE is stopping... -- 15:30:15.583 DEBUG [27523]: Closing database connection -- 15:30:15.583 SQL [27523]: pgsql_close() -- 15:30:15.654 INFO [27523]: COREGRADE is starting... -- 15:30:15.654 INFO [27523]: Version from config: 1.0 -- 15:30:15.654 DEBUG [27523]: Connecting to database... -- 15:30:15.655 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:15.655 SQL [27523]: pgsql_db_connect() -- 15:30:15.658 DEBUG [27523]: Database connection successful -- 15:30:15.658 INFO [27523]: _SERVER found -- 15:30:15.658 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 15:30:15.658 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:15.658 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:15.658 INFO [27523]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 15:30:15.658 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:15.670 INFO [27523]: COREGRADE is stopping... -- 15:30:15.670 DEBUG [27523]: Closing database connection -- 15:30:15.670 SQL [27523]: pgsql_close() -- 15:30:15.742 INFO [27523]: COREGRADE is starting... -- 15:30:15.742 INFO [27523]: Version from config: 1.0 -- 15:30:15.742 DEBUG [27523]: Connecting to database... -- 15:30:15.742 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:15.742 SQL [27523]: pgsql_db_connect() -- 15:30:15.746 DEBUG [27523]: Database connection successful -- 15:30:15.746 INFO [27523]: _SERVER found -- 15:30:15.746 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 15:30:15.746 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:15.746 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:15.746 INFO [27523]: QUERY_STRING = /assets/js/pages/dashboard.js -- 15:30:15.746 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:15.757 INFO [27523]: COREGRADE is stopping... -- 15:30:15.757 DEBUG [27523]: Closing database connection -- 15:30:15.757 SQL [27523]: pgsql_close() -- 15:30:15.830 INFO [27523]: COREGRADE is starting... -- 15:30:15.830 INFO [27523]: Version from config: 1.0 -- 15:30:15.830 DEBUG [27523]: Connecting to database... -- 15:30:15.830 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:15.830 SQL [27523]: pgsql_db_connect() -- 15:30:15.834 DEBUG [27523]: Database connection successful -- 15:30:15.834 INFO [27523]: _SERVER found -- 15:30:15.834 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 15:30:15.834 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:15.834 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:15.834 INFO [27523]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 15:30:15.834 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:15.846 INFO [27523]: COREGRADE is stopping... -- 15:30:15.846 DEBUG [27523]: Closing database connection -- 15:30:15.846 SQL [27523]: pgsql_close() -- 15:30:15.917 INFO [27523]: COREGRADE is starting... -- 15:30:15.917 INFO [27523]: Version from config: 1.0 -- 15:30:15.917 DEBUG [27523]: Connecting to database... -- 15:30:15.917 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:15.917 SQL [27523]: pgsql_db_connect() -- 15:30:15.921 DEBUG [27523]: Database connection successful -- 15:30:15.921 INFO [27523]: _SERVER found -- 15:30:15.921 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 15:30:15.921 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:15.921 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:15.921 INFO [27523]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 15:30:15.921 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:15.933 INFO [27523]: COREGRADE is stopping... -- 15:30:15.933 DEBUG [27523]: Closing database connection -- 15:30:15.933 SQL [27523]: pgsql_close() -- 15:30:16.004 INFO [27523]: COREGRADE is starting... -- 15:30:16.004 INFO [27523]: Version from config: 1.0 -- 15:30:16.004 DEBUG [27523]: Connecting to database... -- 15:30:16.004 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:16.004 SQL [27523]: pgsql_db_connect() -- 15:30:16.008 DEBUG [27523]: Database connection successful -- 15:30:16.008 INFO [27523]: _SERVER found -- 15:30:16.008 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 15:30:16.008 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:16.008 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:16.008 INFO [27523]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 15:30:16.008 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:16.020 INFO [27523]: COREGRADE is stopping... -- 15:30:16.020 DEBUG [27523]: Closing database connection -- 15:30:16.020 SQL [27523]: pgsql_close() -- 15:30:16.092 INFO [27523]: COREGRADE is starting... -- 15:30:16.092 INFO [27523]: Version from config: 1.0 -- 15:30:16.092 DEBUG [27523]: Connecting to database... -- 15:30:16.092 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:16.092 SQL [27523]: pgsql_db_connect() -- 15:30:16.096 DEBUG [27523]: Database connection successful -- 15:30:16.096 INFO [27523]: _SERVER found -- 15:30:16.096 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 15:30:16.096 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:16.096 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:16.096 INFO [27523]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 15:30:16.096 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:16.107 INFO [27523]: COREGRADE is stopping... -- 15:30:16.107 DEBUG [27523]: Closing database connection -- 15:30:16.107 SQL [27523]: pgsql_close() -- 15:30:16.179 INFO [27523]: COREGRADE is starting... -- 15:30:16.180 INFO [27523]: Version from config: 1.0 -- 15:30:16.180 DEBUG [27523]: Connecting to database... -- 15:30:16.180 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:16.180 SQL [27523]: pgsql_db_connect() -- 15:30:16.184 DEBUG [27523]: Database connection successful -- 15:30:16.184 INFO [27523]: _SERVER found -- 15:30:16.184 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 15:30:16.184 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:16.184 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:16.184 INFO [27523]: QUERY_STRING = /assets/js/pages/picker_date.js -- 15:30:16.184 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:16.195 INFO [27523]: COREGRADE is stopping... -- 15:30:16.195 DEBUG [27523]: Closing database connection -- 15:30:16.195 SQL [27523]: pgsql_close() -- 15:30:16.266 INFO [27523]: COREGRADE is starting... -- 15:30:16.267 INFO [27523]: Version from config: 1.0 -- 15:30:16.267 DEBUG [27523]: Connecting to database... -- 15:30:16.267 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:16.267 SQL [27523]: pgsql_db_connect() -- 15:30:16.271 DEBUG [27523]: Database connection successful -- 15:30:16.271 INFO [27523]: _SERVER found -- 15:30:16.271 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 15:30:16.271 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:16.271 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:16.271 INFO [27523]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 15:30:16.271 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:16.282 INFO [27523]: COREGRADE is stopping... -- 15:30:16.282 DEBUG [27523]: Closing database connection -- 15:30:16.282 SQL [27523]: pgsql_close() -- 15:30:16.353 INFO [27523]: COREGRADE is starting... -- 15:30:16.354 INFO [27523]: Version from config: 1.0 -- 15:30:16.354 DEBUG [27523]: Connecting to database... -- 15:30:16.354 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:16.354 SQL [27523]: pgsql_db_connect() -- 15:30:16.358 DEBUG [27523]: Database connection successful -- 15:30:16.358 INFO [27523]: _SERVER found -- 15:30:16.358 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 15:30:16.358 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:16.358 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:16.358 INFO [27523]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 15:30:16.358 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:16.369 INFO [27523]: COREGRADE is stopping... -- 15:30:16.369 DEBUG [27523]: Closing database connection -- 15:30:16.369 SQL [27523]: pgsql_close() -- 15:30:16.440 INFO [27523]: COREGRADE is starting... -- 15:30:16.441 INFO [27523]: Version from config: 1.0 -- 15:30:16.441 DEBUG [27523]: Connecting to database... -- 15:30:16.441 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:16.441 SQL [27523]: pgsql_db_connect() -- 15:30:16.445 DEBUG [27523]: Database connection successful -- 15:30:16.445 INFO [27523]: _SERVER found -- 15:30:16.445 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 15:30:16.445 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:16.445 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:16.445 INFO [27523]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 15:30:16.445 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:16.456 INFO [27523]: COREGRADE is stopping... -- 15:30:16.456 DEBUG [27523]: Closing database connection -- 15:30:16.456 SQL [27523]: pgsql_close() -- 15:30:16.528 INFO [27523]: COREGRADE is starting... -- 15:30:16.528 INFO [27523]: Version from config: 1.0 -- 15:30:16.528 DEBUG [27523]: Connecting to database... -- 15:30:16.528 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:16.528 SQL [27523]: pgsql_db_connect() -- 15:30:16.532 DEBUG [27523]: Database connection successful -- 15:30:16.532 INFO [27523]: _SERVER found -- 15:30:16.532 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 15:30:16.532 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:16.532 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:16.532 INFO [27523]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 15:30:16.532 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:16.543 INFO [27523]: COREGRADE is stopping... -- 15:30:16.543 DEBUG [27523]: Closing database connection -- 15:30:16.543 SQL [27523]: pgsql_close() -- 15:30:16.615 INFO [27523]: COREGRADE is starting... -- 15:30:16.615 INFO [27523]: Version from config: 1.0 -- 15:30:16.615 DEBUG [27523]: Connecting to database... -- 15:30:16.615 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:16.615 SQL [27523]: pgsql_db_connect() -- 15:30:16.619 DEBUG [27523]: Database connection successful -- 15:30:16.619 INFO [27523]: _SERVER found -- 15:30:16.619 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 15:30:16.619 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:16.619 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:16.619 INFO [27523]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 15:30:16.619 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:16.631 INFO [27523]: COREGRADE is stopping... -- 15:30:16.631 DEBUG [27523]: Closing database connection -- 15:30:16.631 SQL [27523]: pgsql_close() -- 15:30:16.712 INFO [27523]: COREGRADE is starting... -- 15:30:16.712 INFO [27523]: Version from config: 1.0 -- 15:30:16.712 DEBUG [27523]: Connecting to database... -- 15:30:16.712 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:16.712 SQL [27523]: pgsql_db_connect() -- 15:30:16.716 DEBUG [27523]: Database connection successful -- 15:30:16.716 INFO [27523]: _SERVER found -- 15:30:16.716 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 15:30:16.716 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:16.716 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:16.716 INFO [27523]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 15:30:16.716 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:16.728 INFO [27523]: COREGRADE is stopping... -- 15:30:16.728 DEBUG [27523]: Closing database connection -- 15:30:16.728 SQL [27523]: pgsql_close() -- 15:30:16.799 INFO [27523]: COREGRADE is starting... -- 15:30:16.799 INFO [27523]: Version from config: 1.0 -- 15:30:16.799 DEBUG [27523]: Connecting to database... -- 15:30:16.799 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:16.799 SQL [27523]: pgsql_db_connect() -- 15:30:16.804 DEBUG [27523]: Database connection successful -- 15:30:16.804 INFO [27523]: _SERVER found -- 15:30:16.804 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 15:30:16.804 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:16.804 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:16.804 INFO [27523]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 15:30:16.804 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:16.815 INFO [27523]: COREGRADE is stopping... -- 15:30:16.815 DEBUG [27523]: Closing database connection -- 15:30:16.815 SQL [27523]: pgsql_close() -- 15:30:16.925 INFO [27523]: COREGRADE is starting... -- 15:30:16.925 INFO [27523]: Version from config: 1.0 -- 15:30:16.925 DEBUG [27523]: Connecting to database... -- 15:30:16.925 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:16.925 SQL [27523]: pgsql_db_connect() -- 15:30:16.929 DEBUG [27523]: Database connection successful -- 15:30:16.929 INFO [27523]: _SERVER found -- 15:30:16.929 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 15:30:16.929 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:16.929 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:30:16.929 INFO [27523]: QUERY_STRING = /assets/customjs/general.js -- 15:30:16.929 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:16.941 INFO [27523]: COREGRADE is stopping... -- 15:30:16.941 DEBUG [27523]: Closing database connection -- 15:30:16.941 SQL [27523]: pgsql_close() -- 15:31:08.609 INFO [27473]: COREGRADE is starting... -- 15:31:08.610 INFO [27473]: Version from config: 1.0 -- 15:31:08.610 DEBUG [27473]: Connecting to database... -- 15:31:08.610 DEBUG [27473]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:08.610 SQL [27473]: pgsql_db_connect() -- 15:31:08.614 DEBUG [27473]: Database connection successful -- 15:31:08.614 INFO [27473]: _SERVER found -- 15:31:08.614 INFO [27473]: REMOTE_ADDR = 10.0.0.15 -- 15:31:08.614 INFO [27473]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:08.614 INFO [27473]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lvseosofcaj0136chftbnghht39hcjol -- 15:31:08.614 INFO [27473]: QUERY_STRING = /start -- 15:31:08.614 INFO [27473]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:08.650 INFO [27473]: COREGRADE is stopping... -- 15:31:08.650 DEBUG [27473]: Closing database connection -- 15:31:08.650 SQL [27473]: pgsql_close() -- 15:31:08.757 INFO [27474]: COREGRADE is starting... -- 15:31:08.757 INFO [27474]: Version from config: 1.0 -- 15:31:08.757 DEBUG [27474]: Connecting to database... -- 15:31:08.757 DEBUG [27474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:08.757 SQL [27474]: pgsql_db_connect() -- 15:31:08.761 DEBUG [27474]: Database connection successful -- 15:31:08.761 INFO [27474]: _SERVER found -- 15:31:08.761 INFO [27474]: REMOTE_ADDR = 10.0.0.15 -- 15:31:08.761 INFO [27474]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:08.761 INFO [27474]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:08.761 INFO [27474]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 15:31:08.761 INFO [27474]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:08.773 INFO [27474]: COREGRADE is stopping... -- 15:31:08.773 DEBUG [27474]: Closing database connection -- 15:31:08.773 SQL [27474]: pgsql_close() -- 15:31:08.809 INFO [27473]: COREGRADE is starting... -- 15:31:08.809 INFO [27473]: Version from config: 1.0 -- 15:31:08.809 DEBUG [27473]: Connecting to database... -- 15:31:08.809 DEBUG [27473]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:08.809 SQL [27473]: pgsql_db_connect() -- 15:31:08.820 INFO [27471]: COREGRADE is starting... -- 15:31:08.821 INFO [27471]: Version from config: 1.0 -- 15:31:08.821 DEBUG [27471]: Connecting to database... -- 15:31:08.821 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:08.821 SQL [27471]: pgsql_db_connect() -- 15:31:08.813 DEBUG [27473]: Database connection successful -- 15:31:08.813 INFO [27473]: _SERVER found -- 15:31:08.813 INFO [27473]: REMOTE_ADDR = 10.0.0.15 -- 15:31:08.813 INFO [27473]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:08.813 INFO [27473]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:08.813 INFO [27473]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 15:31:08.813 INFO [27473]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:08.824 INFO [27473]: COREGRADE is stopping... -- 15:31:08.824 DEBUG [27473]: Closing database connection -- 15:31:08.824 SQL [27473]: pgsql_close() -- 15:31:08.825 INFO [27472]: COREGRADE is starting... -- 15:31:08.826 INFO [27472]: Version from config: 1.0 -- 15:31:08.826 DEBUG [27472]: Connecting to database... -- 15:31:08.826 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:08.826 SQL [27472]: pgsql_db_connect() -- 15:31:08.829 INFO [27474]: COREGRADE is starting... -- 15:31:08.829 INFO [27474]: Version from config: 1.0 -- 15:31:08.829 DEBUG [27474]: Connecting to database... -- 15:31:08.829 DEBUG [27474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:08.829 SQL [27474]: pgsql_db_connect() -- 15:31:08.834 INFO [27470]: COREGRADE is starting... -- 15:31:08.834 INFO [27470]: Version from config: 1.0 -- 15:31:08.834 DEBUG [27470]: Connecting to database... -- 15:31:08.834 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:08.834 SQL [27470]: pgsql_db_connect() -- 15:31:08.825 DEBUG [27471]: Database connection successful -- 15:31:08.825 INFO [27471]: _SERVER found -- 15:31:08.825 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 15:31:08.825 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:08.825 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:08.825 INFO [27471]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 15:31:08.825 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:08.837 INFO [27471]: COREGRADE is stopping... -- 15:31:08.837 DEBUG [27471]: Closing database connection -- 15:31:08.837 SQL [27471]: pgsql_close() -- 15:31:08.830 DEBUG [27472]: Database connection successful -- 15:31:08.830 INFO [27472]: _SERVER found -- 15:31:08.830 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 15:31:08.830 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:08.830 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:08.830 INFO [27472]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 15:31:08.830 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:08.842 INFO [27472]: COREGRADE is stopping... -- 15:31:08.842 DEBUG [27472]: Closing database connection -- 15:31:08.842 SQL [27472]: pgsql_close() -- 15:31:08.833 DEBUG [27474]: Database connection successful -- 15:31:08.833 INFO [27474]: _SERVER found -- 15:31:08.833 INFO [27474]: REMOTE_ADDR = 10.0.0.15 -- 15:31:08.833 INFO [27474]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:08.833 INFO [27474]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:08.833 INFO [27474]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 15:31:08.833 INFO [27474]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:08.846 INFO [27474]: COREGRADE is stopping... -- 15:31:08.846 DEBUG [27474]: Closing database connection -- 15:31:08.846 SQL [27474]: pgsql_close() -- 15:31:08.838 DEBUG [27470]: Database connection successful -- 15:31:08.838 INFO [27470]: _SERVER found -- 15:31:08.838 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:31:08.838 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:08.838 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:08.838 INFO [27470]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 15:31:08.838 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:08.851 INFO [27470]: COREGRADE is stopping... -- 15:31:08.851 DEBUG [27470]: Closing database connection -- 15:31:08.851 SQL [27470]: pgsql_close() -- 15:31:08.853 INFO [27470]: COREGRADE is starting... -- 15:31:08.854 INFO [27470]: Version from config: 1.0 -- 15:31:08.854 DEBUG [27470]: Connecting to database... -- 15:31:08.854 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:08.854 SQL [27470]: pgsql_db_connect() -- 15:31:08.858 DEBUG [27470]: Database connection successful -- 15:31:08.858 INFO [27470]: _SERVER found -- 15:31:08.858 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:31:08.858 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:08.858 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:08.858 INFO [27470]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 15:31:08.858 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:08.870 INFO [27470]: COREGRADE is stopping... -- 15:31:08.870 DEBUG [27470]: Closing database connection -- 15:31:08.870 SQL [27470]: pgsql_close() -- 15:31:08.891 INFO [27472]: COREGRADE is starting... -- 15:31:08.891 INFO [27472]: Version from config: 1.0 -- 15:31:08.891 DEBUG [27472]: Connecting to database... -- 15:31:08.891 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:08.891 SQL [27472]: pgsql_db_connect() -- 15:31:08.895 DEBUG [27472]: Database connection successful -- 15:31:08.895 INFO [27472]: _SERVER found -- 15:31:08.895 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 15:31:08.895 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:08.895 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:08.895 INFO [27472]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 15:31:08.895 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:08.906 INFO [27472]: COREGRADE is stopping... -- 15:31:08.906 DEBUG [27472]: Closing database connection -- 15:31:08.906 SQL [27472]: pgsql_close() -- 15:31:08.921 INFO [27470]: COREGRADE is starting... -- 15:31:08.922 INFO [27470]: Version from config: 1.0 -- 15:31:08.922 DEBUG [27470]: Connecting to database... -- 15:31:08.922 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:08.922 SQL [27470]: pgsql_db_connect() -- 15:31:08.926 INFO [27472]: COREGRADE is starting... -- 15:31:08.926 INFO [27472]: Version from config: 1.0 -- 15:31:08.926 DEBUG [27472]: Connecting to database... -- 15:31:08.926 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:08.926 SQL [27472]: pgsql_db_connect() -- 15:31:08.930 INFO [27471]: COREGRADE is starting... -- 15:31:08.931 INFO [27471]: Version from config: 1.0 -- 15:31:08.931 DEBUG [27471]: Connecting to database... -- 15:31:08.931 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:08.931 SQL [27471]: pgsql_db_connect() -- 15:31:08.935 INFO [27474]: COREGRADE is starting... -- 15:31:08.935 INFO [27474]: Version from config: 1.0 -- 15:31:08.935 DEBUG [27474]: Connecting to database... -- 15:31:08.935 DEBUG [27474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:08.935 SQL [27474]: pgsql_db_connect() -- 15:31:08.926 DEBUG [27470]: Database connection successful -- 15:31:08.926 INFO [27470]: _SERVER found -- 15:31:08.926 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:31:08.926 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:08.926 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:08.926 INFO [27470]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 15:31:08.926 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:08.938 INFO [27470]: COREGRADE is stopping... -- 15:31:08.938 DEBUG [27470]: Closing database connection -- 15:31:08.938 SQL [27470]: pgsql_close() -- 15:31:08.930 DEBUG [27472]: Database connection successful -- 15:31:08.930 INFO [27472]: _SERVER found -- 15:31:08.930 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 15:31:08.930 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:08.930 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:08.930 INFO [27472]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 15:31:08.930 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:08.942 INFO [27472]: COREGRADE is stopping... -- 15:31:08.942 DEBUG [27472]: Closing database connection -- 15:31:08.942 SQL [27472]: pgsql_close() -- 15:31:08.935 DEBUG [27471]: Database connection successful -- 15:31:08.935 INFO [27471]: _SERVER found -- 15:31:08.935 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 15:31:08.935 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:08.935 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:08.935 INFO [27471]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 15:31:08.935 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:08.946 INFO [27471]: COREGRADE is stopping... -- 15:31:08.946 DEBUG [27471]: Closing database connection -- 15:31:08.946 SQL [27471]: pgsql_close() -- 15:31:08.949 INFO [27470]: COREGRADE is starting... -- 15:31:08.949 INFO [27470]: Version from config: 1.0 -- 15:31:08.949 DEBUG [27470]: Connecting to database... -- 15:31:08.949 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:08.949 SQL [27470]: pgsql_db_connect() -- 15:31:08.939 DEBUG [27474]: Database connection successful -- 15:31:08.939 INFO [27474]: _SERVER found -- 15:31:08.939 INFO [27474]: REMOTE_ADDR = 10.0.0.15 -- 15:31:08.939 INFO [27474]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:08.939 INFO [27474]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:08.939 INFO [27474]: QUERY_STRING = /assets/js/pages/dashboard.js -- 15:31:08.939 INFO [27474]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:08.951 INFO [27474]: COREGRADE is stopping... -- 15:31:08.951 DEBUG [27474]: Closing database connection -- 15:31:08.951 SQL [27474]: pgsql_close() -- 15:31:08.953 DEBUG [27470]: Database connection successful -- 15:31:08.953 INFO [27470]: _SERVER found -- 15:31:08.953 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:31:08.953 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:08.953 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:08.953 INFO [27470]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 15:31:08.953 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:08.965 INFO [27470]: COREGRADE is stopping... -- 15:31:08.965 DEBUG [27470]: Closing database connection -- 15:31:08.965 SQL [27470]: pgsql_close() -- 15:31:08.971 INFO [27471]: COREGRADE is starting... -- 15:31:08.971 INFO [27471]: Version from config: 1.0 -- 15:31:08.971 DEBUG [27471]: Connecting to database... -- 15:31:08.971 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:08.971 SQL [27471]: pgsql_db_connect() -- 15:31:08.975 DEBUG [27471]: Database connection successful -- 15:31:08.975 INFO [27471]: _SERVER found -- 15:31:08.975 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 15:31:08.975 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:08.975 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:08.975 INFO [27471]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 15:31:08.975 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:08.987 INFO [27471]: COREGRADE is stopping... -- 15:31:08.987 DEBUG [27471]: Closing database connection -- 15:31:08.987 SQL [27471]: pgsql_close() -- 15:31:09.016 INFO [27470]: COREGRADE is starting... -- 15:31:09.017 INFO [27470]: Version from config: 1.0 -- 15:31:09.017 DEBUG [27470]: Connecting to database... -- 15:31:09.017 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:09.017 SQL [27470]: pgsql_db_connect() -- 15:31:09.025 INFO [27471]: COREGRADE is starting... -- 15:31:09.026 INFO [27471]: Version from config: 1.0 -- 15:31:09.026 DEBUG [27471]: Connecting to database... -- 15:31:09.026 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:09.026 SQL [27471]: pgsql_db_connect() -- 15:31:09.030 INFO [27472]: COREGRADE is starting... -- 15:31:09.030 INFO [27472]: Version from config: 1.0 -- 15:31:09.030 DEBUG [27472]: Connecting to database... -- 15:31:09.030 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:09.030 SQL [27472]: pgsql_db_connect() -- 15:31:09.021 DEBUG [27470]: Database connection successful -- 15:31:09.021 INFO [27470]: _SERVER found -- 15:31:09.021 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:31:09.021 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:09.021 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:09.021 INFO [27470]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 15:31:09.021 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:09.033 INFO [27470]: COREGRADE is stopping... -- 15:31:09.033 DEBUG [27470]: Closing database connection -- 15:31:09.033 SQL [27470]: pgsql_close() -- 15:31:09.035 INFO [27474]: COREGRADE is starting... -- 15:31:09.035 INFO [27474]: Version from config: 1.0 -- 15:31:09.035 DEBUG [27474]: Connecting to database... -- 15:31:09.035 DEBUG [27474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:09.035 SQL [27474]: pgsql_db_connect() -- 15:31:09.030 DEBUG [27471]: Database connection successful -- 15:31:09.030 INFO [27471]: _SERVER found -- 15:31:09.030 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 15:31:09.030 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:09.030 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:09.030 INFO [27471]: QUERY_STRING = /assets/js/pages/picker_date.js -- 15:31:09.030 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:09.041 INFO [27471]: COREGRADE is stopping... -- 15:31:09.041 DEBUG [27471]: Closing database connection -- 15:31:09.041 SQL [27471]: pgsql_close() -- 15:31:09.044 INFO [27470]: COREGRADE is starting... -- 15:31:09.044 INFO [27470]: Version from config: 1.0 -- 15:31:09.044 DEBUG [27470]: Connecting to database... -- 15:31:09.044 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:09.044 SQL [27470]: pgsql_db_connect() -- 15:31:09.034 DEBUG [27472]: Database connection successful -- 15:31:09.034 INFO [27472]: _SERVER found -- 15:31:09.034 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 15:31:09.034 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:09.034 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:09.034 INFO [27472]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 15:31:09.034 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:09.045 INFO [27472]: COREGRADE is stopping... -- 15:31:09.045 DEBUG [27472]: Closing database connection -- 15:31:09.045 SQL [27472]: pgsql_close() -- 15:31:09.039 DEBUG [27474]: Database connection successful -- 15:31:09.039 INFO [27474]: _SERVER found -- 15:31:09.039 INFO [27474]: REMOTE_ADDR = 10.0.0.15 -- 15:31:09.039 INFO [27474]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:09.039 INFO [27474]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:09.039 INFO [27474]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 15:31:09.039 INFO [27474]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:09.050 INFO [27474]: COREGRADE is stopping... -- 15:31:09.050 DEBUG [27474]: Closing database connection -- 15:31:09.050 SQL [27474]: pgsql_close() -- 15:31:09.053 INFO [27472]: COREGRADE is starting... -- 15:31:09.054 INFO [27472]: Version from config: 1.0 -- 15:31:09.054 DEBUG [27472]: Connecting to database... -- 15:31:09.054 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:09.054 SQL [27472]: pgsql_db_connect() -- 15:31:09.048 DEBUG [27470]: Database connection successful -- 15:31:09.048 INFO [27470]: _SERVER found -- 15:31:09.048 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:31:09.048 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:09.048 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:09.048 INFO [27470]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 15:31:09.048 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:09.061 INFO [27470]: COREGRADE is stopping... -- 15:31:09.061 DEBUG [27470]: Closing database connection -- 15:31:09.061 SQL [27470]: pgsql_close() -- 15:31:09.058 DEBUG [27472]: Database connection successful -- 15:31:09.058 INFO [27472]: _SERVER found -- 15:31:09.058 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 15:31:09.058 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:09.058 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:09.058 INFO [27472]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 15:31:09.058 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:09.069 INFO [27472]: COREGRADE is stopping... -- 15:31:09.069 DEBUG [27472]: Closing database connection -- 15:31:09.069 SQL [27472]: pgsql_close() -- 15:31:09.112 INFO [27470]: COREGRADE is starting... -- 15:31:09.112 INFO [27470]: Version from config: 1.0 -- 15:31:09.112 DEBUG [27470]: Connecting to database... -- 15:31:09.112 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:09.112 SQL [27470]: pgsql_db_connect() -- 15:31:09.126 INFO [27472]: COREGRADE is starting... -- 15:31:09.126 INFO [27472]: Version from config: 1.0 -- 15:31:09.126 DEBUG [27472]: Connecting to database... -- 15:31:09.126 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:09.126 SQL [27472]: pgsql_db_connect() -- 15:31:09.116 DEBUG [27470]: Database connection successful -- 15:31:09.116 INFO [27470]: _SERVER found -- 15:31:09.116 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:31:09.116 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:09.116 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:09.116 INFO [27470]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 15:31:09.116 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:09.128 INFO [27470]: COREGRADE is stopping... -- 15:31:09.128 DEBUG [27470]: Closing database connection -- 15:31:09.128 SQL [27470]: pgsql_close() -- 15:31:09.130 INFO [27471]: COREGRADE is starting... -- 15:31:09.131 INFO [27471]: Version from config: 1.0 -- 15:31:09.131 DEBUG [27471]: Connecting to database... -- 15:31:09.131 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:09.131 SQL [27471]: pgsql_db_connect() -- 15:31:09.135 INFO [27474]: COREGRADE is starting... -- 15:31:09.135 INFO [27470]: COREGRADE is starting... -- 15:31:09.135 INFO [27474]: Version from config: 1.0 -- 15:31:09.135 DEBUG [27474]: Connecting to database... -- 15:31:09.135 DEBUG [27474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:09.135 SQL [27474]: pgsql_db_connect() -- 15:31:09.135 INFO [27470]: Version from config: 1.0 -- 15:31:09.135 DEBUG [27470]: Connecting to database... -- 15:31:09.135 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:09.135 SQL [27470]: pgsql_db_connect() -- 15:31:09.131 DEBUG [27472]: Database connection successful -- 15:31:09.131 INFO [27472]: _SERVER found -- 15:31:09.131 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 15:31:09.131 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:09.131 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:09.131 INFO [27472]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 15:31:09.131 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:09.143 INFO [27472]: COREGRADE is stopping... -- 15:31:09.143 DEBUG [27472]: Closing database connection -- 15:31:09.143 SQL [27472]: pgsql_close() -- 15:31:09.135 DEBUG [27471]: Database connection successful -- 15:31:09.135 INFO [27471]: _SERVER found -- 15:31:09.135 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 15:31:09.135 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:09.135 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:09.135 INFO [27471]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 15:31:09.135 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:09.146 INFO [27471]: COREGRADE is stopping... -- 15:31:09.147 DEBUG [27471]: Closing database connection -- 15:31:09.147 SQL [27471]: pgsql_close() -- 15:31:09.139 DEBUG [27474]: Database connection successful -- 15:31:09.139 INFO [27474]: _SERVER found -- 15:31:09.139 INFO [27474]: REMOTE_ADDR = 10.0.0.15 -- 15:31:09.139 INFO [27474]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:09.139 INFO [27474]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:09.139 INFO [27474]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 15:31:09.139 INFO [27474]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:09.151 INFO [27474]: COREGRADE is stopping... -- 15:31:09.151 DEBUG [27474]: Closing database connection -- 15:31:09.151 SQL [27474]: pgsql_close() -- 15:31:09.139 DEBUG [27470]: Database connection successful -- 15:31:09.139 INFO [27470]: _SERVER found -- 15:31:09.139 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:31:09.139 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:09.139 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:09.139 INFO [27470]: QUERY_STRING = /assets/customjs/general.js -- 15:31:09.139 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:09.151 INFO [27470]: COREGRADE is stopping... -- 15:31:09.151 DEBUG [27470]: Closing database connection -- 15:31:09.151 SQL [27470]: pgsql_close() -- 15:31:09.222 INFO [27470]: COREGRADE is starting... -- 15:31:09.222 INFO [27470]: Version from config: 1.0 -- 15:31:09.222 DEBUG [27470]: Connecting to database... -- 15:31:09.222 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:09.222 SQL [27470]: pgsql_db_connect() -- 15:31:09.226 DEBUG [27470]: Database connection successful -- 15:31:09.226 INFO [27470]: _SERVER found -- 15:31:09.226 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:31:09.226 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:09.226 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:09.226 INFO [27470]: QUERY_STRING = /assets/js/pages/dashboard.js -- 15:31:09.226 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:09.238 INFO [27470]: COREGRADE is stopping... -- 15:31:09.238 DEBUG [27470]: Closing database connection -- 15:31:09.238 SQL [27470]: pgsql_close() -- 15:31:09.308 INFO [27470]: COREGRADE is starting... -- 15:31:09.308 INFO [27470]: Version from config: 1.0 -- 15:31:09.308 DEBUG [27470]: Connecting to database... -- 15:31:09.308 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:09.308 SQL [27470]: pgsql_db_connect() -- 15:31:09.312 DEBUG [27470]: Database connection successful -- 15:31:09.312 INFO [27470]: _SERVER found -- 15:31:09.312 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:31:09.312 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:09.312 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:09.312 INFO [27470]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 15:31:09.312 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:09.324 INFO [27470]: COREGRADE is stopping... -- 15:31:09.324 DEBUG [27470]: Closing database connection -- 15:31:09.324 SQL [27470]: pgsql_close() -- 15:31:09.393 INFO [27470]: COREGRADE is starting... -- 15:31:09.394 INFO [27470]: Version from config: 1.0 -- 15:31:09.394 DEBUG [27470]: Connecting to database... -- 15:31:09.394 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:09.394 SQL [27470]: pgsql_db_connect() -- 15:31:09.398 DEBUG [27470]: Database connection successful -- 15:31:09.398 INFO [27470]: _SERVER found -- 15:31:09.398 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:31:09.398 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:09.398 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:09.398 INFO [27470]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 15:31:09.398 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:09.410 INFO [27470]: COREGRADE is stopping... -- 15:31:09.410 DEBUG [27470]: Closing database connection -- 15:31:09.410 SQL [27470]: pgsql_close() -- 15:31:09.478 INFO [27470]: COREGRADE is starting... -- 15:31:09.479 INFO [27470]: Version from config: 1.0 -- 15:31:09.479 DEBUG [27470]: Connecting to database... -- 15:31:09.479 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:09.479 SQL [27470]: pgsql_db_connect() -- 15:31:09.483 DEBUG [27470]: Database connection successful -- 15:31:09.483 INFO [27470]: _SERVER found -- 15:31:09.483 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:31:09.483 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:09.483 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:09.483 INFO [27470]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 15:31:09.483 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:09.495 INFO [27470]: COREGRADE is stopping... -- 15:31:09.495 DEBUG [27470]: Closing database connection -- 15:31:09.495 SQL [27470]: pgsql_close() -- 15:31:09.564 INFO [27470]: COREGRADE is starting... -- 15:31:09.564 INFO [27470]: Version from config: 1.0 -- 15:31:09.564 DEBUG [27470]: Connecting to database... -- 15:31:09.564 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:09.564 SQL [27470]: pgsql_db_connect() -- 15:31:09.568 DEBUG [27470]: Database connection successful -- 15:31:09.568 INFO [27470]: _SERVER found -- 15:31:09.568 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:31:09.568 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:09.568 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:09.568 INFO [27470]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 15:31:09.568 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:09.580 INFO [27470]: COREGRADE is stopping... -- 15:31:09.580 DEBUG [27470]: Closing database connection -- 15:31:09.580 SQL [27470]: pgsql_close() -- 15:31:09.650 INFO [27470]: COREGRADE is starting... -- 15:31:09.650 INFO [27470]: Version from config: 1.0 -- 15:31:09.650 DEBUG [27470]: Connecting to database... -- 15:31:09.650 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:09.650 SQL [27470]: pgsql_db_connect() -- 15:31:09.654 DEBUG [27470]: Database connection successful -- 15:31:09.654 INFO [27470]: _SERVER found -- 15:31:09.654 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:31:09.654 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:09.654 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:09.654 INFO [27470]: QUERY_STRING = /assets/js/pages/picker_date.js -- 15:31:09.654 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:09.666 INFO [27470]: COREGRADE is stopping... -- 15:31:09.666 DEBUG [27470]: Closing database connection -- 15:31:09.666 SQL [27470]: pgsql_close() -- 15:31:09.737 INFO [27470]: COREGRADE is starting... -- 15:31:09.737 INFO [27470]: Version from config: 1.0 -- 15:31:09.737 DEBUG [27470]: Connecting to database... -- 15:31:09.737 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:09.737 SQL [27470]: pgsql_db_connect() -- 15:31:09.741 DEBUG [27470]: Database connection successful -- 15:31:09.741 INFO [27470]: _SERVER found -- 15:31:09.741 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:31:09.741 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:09.741 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:09.741 INFO [27470]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 15:31:09.741 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:09.753 INFO [27470]: COREGRADE is stopping... -- 15:31:09.753 DEBUG [27470]: Closing database connection -- 15:31:09.753 SQL [27470]: pgsql_close() -- 15:31:09.822 INFO [27470]: COREGRADE is starting... -- 15:31:09.823 INFO [27470]: Version from config: 1.0 -- 15:31:09.823 DEBUG [27470]: Connecting to database... -- 15:31:09.823 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:09.823 SQL [27470]: pgsql_db_connect() -- 15:31:09.827 DEBUG [27470]: Database connection successful -- 15:31:09.827 INFO [27470]: _SERVER found -- 15:31:09.827 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:31:09.827 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:09.827 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:09.827 INFO [27470]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 15:31:09.827 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:09.839 INFO [27470]: COREGRADE is stopping... -- 15:31:09.839 DEBUG [27470]: Closing database connection -- 15:31:09.839 SQL [27470]: pgsql_close() -- 15:31:09.907 INFO [27470]: COREGRADE is starting... -- 15:31:09.908 INFO [27470]: Version from config: 1.0 -- 15:31:09.908 DEBUG [27470]: Connecting to database... -- 15:31:09.908 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:09.908 SQL [27470]: pgsql_db_connect() -- 15:31:09.912 DEBUG [27470]: Database connection successful -- 15:31:09.912 INFO [27470]: _SERVER found -- 15:31:09.912 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:31:09.912 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:09.912 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:09.912 INFO [27470]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 15:31:09.912 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:09.924 INFO [27470]: COREGRADE is stopping... -- 15:31:09.924 DEBUG [27470]: Closing database connection -- 15:31:09.924 SQL [27470]: pgsql_close() -- 15:31:09.993 INFO [27470]: COREGRADE is starting... -- 15:31:09.993 INFO [27470]: Version from config: 1.0 -- 15:31:09.993 DEBUG [27470]: Connecting to database... -- 15:31:09.993 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:09.993 SQL [27470]: pgsql_db_connect() -- 15:31:09.997 DEBUG [27470]: Database connection successful -- 15:31:09.997 INFO [27470]: _SERVER found -- 15:31:09.997 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:31:09.997 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:09.997 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:09.997 INFO [27470]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 15:31:09.997 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:10.009 INFO [27470]: COREGRADE is stopping... -- 15:31:10.009 DEBUG [27470]: Closing database connection -- 15:31:10.009 SQL [27470]: pgsql_close() -- 15:31:10.078 INFO [27470]: COREGRADE is starting... -- 15:31:10.078 INFO [27470]: Version from config: 1.0 -- 15:31:10.078 DEBUG [27470]: Connecting to database... -- 15:31:10.078 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:10.078 SQL [27470]: pgsql_db_connect() -- 15:31:10.082 DEBUG [27470]: Database connection successful -- 15:31:10.082 INFO [27470]: _SERVER found -- 15:31:10.082 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:31:10.082 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:10.082 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:10.082 INFO [27470]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 15:31:10.082 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:10.094 INFO [27470]: COREGRADE is stopping... -- 15:31:10.094 DEBUG [27470]: Closing database connection -- 15:31:10.094 SQL [27470]: pgsql_close() -- 15:31:10.182 INFO [27470]: COREGRADE is starting... -- 15:31:10.182 INFO [27470]: Version from config: 1.0 -- 15:31:10.182 DEBUG [27470]: Connecting to database... -- 15:31:10.182 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:10.182 SQL [27470]: pgsql_db_connect() -- 15:31:10.186 DEBUG [27470]: Database connection successful -- 15:31:10.186 INFO [27470]: _SERVER found -- 15:31:10.186 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:31:10.186 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:10.186 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:10.186 INFO [27470]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 15:31:10.186 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:10.198 INFO [27470]: COREGRADE is stopping... -- 15:31:10.198 DEBUG [27470]: Closing database connection -- 15:31:10.198 SQL [27470]: pgsql_close() -- 15:31:10.267 INFO [27470]: COREGRADE is starting... -- 15:31:10.267 INFO [27470]: Version from config: 1.0 -- 15:31:10.267 DEBUG [27470]: Connecting to database... -- 15:31:10.267 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:10.267 SQL [27470]: pgsql_db_connect() -- 15:31:10.271 DEBUG [27470]: Database connection successful -- 15:31:10.271 INFO [27470]: _SERVER found -- 15:31:10.271 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:31:10.271 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:10.271 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:10.271 INFO [27470]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 15:31:10.271 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:10.283 INFO [27470]: COREGRADE is stopping... -- 15:31:10.283 DEBUG [27470]: Closing database connection -- 15:31:10.283 SQL [27470]: pgsql_close() -- 15:31:10.426 INFO [27470]: COREGRADE is starting... -- 15:31:10.426 INFO [27470]: Version from config: 1.0 -- 15:31:10.426 DEBUG [27470]: Connecting to database... -- 15:31:10.426 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:31:10.426 SQL [27470]: pgsql_db_connect() -- 15:31:10.430 DEBUG [27470]: Database connection successful -- 15:31:10.430 INFO [27470]: _SERVER found -- 15:31:10.430 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:31:10.430 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:31:10.430 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:31:10.430 INFO [27470]: QUERY_STRING = /assets/customjs/general.js -- 15:31:10.430 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:31:10.442 INFO [27470]: COREGRADE is stopping... -- 15:31:10.442 DEBUG [27470]: Closing database connection -- 15:31:10.442 SQL [27470]: pgsql_close() -- 15:51:10.659 INFO [27586]: COREGRADE is starting... -- 15:51:10.659 INFO [27586]: Version from config: 1.0 -- 15:51:10.659 DEBUG [27586]: Connecting to database... -- 15:51:10.659 DEBUG [27586]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:51:10.659 SQL [27586]: pgsql_db_connect() -- 15:51:10.664 DEBUG [27586]: Database connection successful -- 15:51:10.664 INFO [27586]: _SERVER found -- 15:51:10.664 INFO [27586]: REMOTE_ADDR = 10.0.0.15 -- 15:51:10.664 INFO [27586]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:51:10.664 INFO [27586]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 15:51:10.664 INFO [27586]: QUERY_STRING = /logout -- 15:51:10.664 INFO [27586]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:51:10.677 INFO [27586]: COREGRADE is stopping... -- 15:51:10.677 DEBUG [27586]: Closing database connection -- 15:51:10.677 SQL [27586]: pgsql_close() -- 15:57:25.479 INFO [27584]: COREGRADE is starting... -- 15:57:25.480 INFO [27584]: Version from config: 1.0 -- 15:57:25.480 DEBUG [27584]: Connecting to database... -- 15:57:25.480 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:25.480 SQL [27584]: pgsql_db_connect() -- 15:57:25.484 DEBUG [27584]: Database connection successful -- 15:57:25.484 INFO [27584]: _SERVER found -- 15:57:25.484 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 15:57:25.484 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:57:25.484 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:57:25.484 INFO [27584]: QUERY_STRING = -- 15:57:25.484 INFO [27584]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:57:25.527 INFO [27584]: COREGRADE is stopping... -- 15:57:25.527 DEBUG [27584]: Closing database connection -- 15:57:25.527 SQL [27584]: pgsql_close() -- 15:57:25.622 INFO [27583]: COREGRADE is starting... -- 15:57:25.622 INFO [27583]: Version from config: 1.0 -- 15:57:25.622 DEBUG [27583]: Connecting to database... -- 15:57:25.622 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:25.622 SQL [27583]: pgsql_db_connect() -- 15:57:25.629 INFO [27585]: COREGRADE is starting... -- 15:57:25.629 INFO [27585]: Version from config: 1.0 -- 15:57:25.629 DEBUG [27585]: Connecting to database... -- 15:57:25.629 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:25.629 SQL [27585]: pgsql_db_connect() -- 15:57:25.633 INFO [27523]: COREGRADE is starting... -- 15:57:25.633 INFO [27523]: Version from config: 1.0 -- 15:57:25.633 DEBUG [27523]: Connecting to database... -- 15:57:25.633 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:25.633 SQL [27523]: pgsql_db_connect() -- 15:57:25.627 DEBUG [27583]: Database connection successful -- 15:57:25.627 INFO [27583]: _SERVER found -- 15:57:25.627 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 15:57:25.627 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:57:25.627 INFO [27583]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:57:25.627 INFO [27583]: QUERY_STRING = /assets/images/savvy-block.png -- 15:57:25.627 INFO [27583]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:57:25.640 INFO [27583]: COREGRADE is stopping... -- 15:57:25.640 DEBUG [27583]: Closing database connection -- 15:57:25.640 SQL [27583]: pgsql_close() -- 15:57:25.634 DEBUG [27585]: Database connection successful -- 15:57:25.634 INFO [27585]: _SERVER found -- 15:57:25.634 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 15:57:25.634 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:57:25.634 INFO [27585]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:57:25.634 INFO [27585]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 15:57:25.634 INFO [27585]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:57:25.647 INFO [27585]: COREGRADE is stopping... -- 15:57:25.647 DEBUG [27585]: Closing database connection -- 15:57:25.647 SQL [27585]: pgsql_close() -- 15:57:25.637 DEBUG [27523]: Database connection successful -- 15:57:25.637 INFO [27523]: _SERVER found -- 15:57:25.637 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 15:57:25.637 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:57:25.637 INFO [27523]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:57:25.637 INFO [27523]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 15:57:25.637 INFO [27523]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:57:25.650 INFO [27523]: COREGRADE is stopping... -- 15:57:25.650 DEBUG [27523]: Closing database connection -- 15:57:25.650 SQL [27523]: pgsql_close() -- 15:57:25.692 INFO [27584]: COREGRADE is starting... -- 15:57:25.692 INFO [27584]: Version from config: 1.0 -- 15:57:25.692 DEBUG [27584]: Connecting to database... -- 15:57:25.692 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:57:25.692 SQL [27584]: pgsql_db_connect() -- 15:57:25.696 DEBUG [27584]: Database connection successful -- 15:57:25.696 INFO [27584]: _SERVER found -- 15:57:25.696 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 15:57:25.696 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:57:25.696 INFO [27584]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:57:25.696 INFO [27584]: QUERY_STRING = /assets/images/savvy-block.png -- 15:57:25.696 INFO [27584]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:57:25.708 INFO [27584]: COREGRADE is stopping... -- 15:57:25.708 DEBUG [27584]: Closing database connection -- 15:57:25.708 SQL [27584]: pgsql_close() -- 15:58:13.505 INFO [27473]: COREGRADE is starting... -- 15:58:13.505 INFO [27473]: Version from config: 1.0 -- 15:58:13.505 DEBUG [27473]: Connecting to database... -- 15:58:13.505 DEBUG [27473]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:13.505 SQL [27473]: pgsql_db_connect() -- 15:58:13.514 INFO [27472]: COREGRADE is starting... -- 15:58:13.515 INFO [27472]: Version from config: 1.0 -- 15:58:13.515 DEBUG [27472]: Connecting to database... -- 15:58:13.515 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:13.515 SQL [27472]: pgsql_db_connect() -- 15:58:13.519 INFO [27471]: COREGRADE is starting... -- 15:58:13.520 INFO [27471]: Version from config: 1.0 -- 15:58:13.520 DEBUG [27471]: Connecting to database... -- 15:58:13.520 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:13.520 SQL [27471]: pgsql_db_connect() -- 15:58:13.530 INFO [27474]: COREGRADE is starting... -- 15:58:13.531 INFO [27474]: Version from config: 1.0 -- 15:58:13.531 DEBUG [27474]: Connecting to database... -- 15:58:13.531 DEBUG [27474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:13.531 SQL [27474]: pgsql_db_connect() -- 15:58:13.519 DEBUG [27472]: Database connection successful -- 15:58:13.519 INFO [27472]: _SERVER found -- 15:58:13.519 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 15:58:13.519 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:13.519 INFO [27472]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:13.519 INFO [27472]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 15:58:13.519 INFO [27472]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:13.533 INFO [27472]: COREGRADE is stopping... -- 15:58:13.533 DEBUG [27472]: Closing database connection -- 15:58:13.533 SQL [27472]: pgsql_close() -- 15:58:13.523 DEBUG [27471]: Database connection successful -- 15:58:13.524 INFO [27471]: _SERVER found -- 15:58:13.524 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 15:58:13.524 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:13.524 INFO [27471]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:13.524 INFO [27471]: QUERY_STRING = /assets/images/savvy-block.png -- 15:58:13.524 INFO [27471]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:13.536 INFO [27471]: COREGRADE is stopping... -- 15:58:13.536 DEBUG [27471]: Closing database connection -- 15:58:13.536 SQL [27471]: pgsql_close() -- 15:58:13.509 DEBUG [27473]: Database connection successful -- 15:58:13.509 INFO [27473]: _SERVER found -- 15:58:13.509 INFO [27473]: REMOTE_ADDR = 10.0.0.15 -- 15:58:13.509 INFO [27473]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:13.509 INFO [27473]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:13.509 INFO [27473]: QUERY_STRING = -- 15:58:13.509 INFO [27473]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:13.541 INFO [27473]: COREGRADE is stopping... -- 15:58:13.541 DEBUG [27473]: Closing database connection -- 15:58:13.541 SQL [27473]: pgsql_close() -- 15:58:13.535 DEBUG [27474]: Database connection successful -- 15:58:13.535 INFO [27474]: _SERVER found -- 15:58:13.535 INFO [27474]: REMOTE_ADDR = 10.0.0.15 -- 15:58:13.535 INFO [27474]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:13.535 INFO [27474]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:13.535 INFO [27474]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 15:58:13.535 INFO [27474]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:13.548 INFO [27474]: COREGRADE is stopping... -- 15:58:13.548 DEBUG [27474]: Closing database connection -- 15:58:13.548 SQL [27474]: pgsql_close() -- 15:58:13.587 INFO [27473]: COREGRADE is starting... -- 15:58:13.588 INFO [27473]: Version from config: 1.0 -- 15:58:13.588 DEBUG [27473]: Connecting to database... -- 15:58:13.588 DEBUG [27473]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:13.588 SQL [27473]: pgsql_db_connect() -- 15:58:13.596 INFO [27471]: COREGRADE is starting... -- 15:58:13.596 INFO [27471]: Version from config: 1.0 -- 15:58:13.596 DEBUG [27471]: Connecting to database... -- 15:58:13.596 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:13.596 SQL [27471]: pgsql_db_connect() -- 15:58:13.601 INFO [27472]: COREGRADE is starting... -- 15:58:13.601 INFO [27472]: Version from config: 1.0 -- 15:58:13.601 DEBUG [27472]: Connecting to database... -- 15:58:13.601 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:13.601 SQL [27472]: pgsql_db_connect() -- 15:58:13.592 DEBUG [27473]: Database connection successful -- 15:58:13.592 INFO [27473]: _SERVER found -- 15:58:13.592 INFO [27473]: REMOTE_ADDR = 10.0.0.15 -- 15:58:13.592 INFO [27473]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:13.592 INFO [27473]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:13.592 INFO [27473]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 15:58:13.592 INFO [27473]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:13.603 INFO [27473]: COREGRADE is stopping... -- 15:58:13.603 DEBUG [27473]: Closing database connection -- 15:58:13.603 SQL [27473]: pgsql_close() -- 15:58:13.600 DEBUG [27471]: Database connection successful -- 15:58:13.600 INFO [27471]: _SERVER found -- 15:58:13.600 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 15:58:13.600 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:13.600 INFO [27471]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:13.600 INFO [27471]: QUERY_STRING = /assets/images/savvy-block.png -- 15:58:13.600 INFO [27471]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:13.612 INFO [27471]: COREGRADE is stopping... -- 15:58:13.612 DEBUG [27471]: Closing database connection -- 15:58:13.612 SQL [27471]: pgsql_close() -- 15:58:13.605 DEBUG [27472]: Database connection successful -- 15:58:13.605 INFO [27472]: _SERVER found -- 15:58:13.605 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 15:58:13.605 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:13.605 INFO [27472]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:13.605 INFO [27472]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 15:58:13.605 INFO [27472]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:13.616 INFO [27472]: COREGRADE is stopping... -- 15:58:13.616 DEBUG [27472]: Closing database connection -- 15:58:13.616 SQL [27472]: pgsql_close() -- 15:58:13.653 INFO [27472]: COREGRADE is starting... -- 15:58:13.654 INFO [27472]: Version from config: 1.0 -- 15:58:13.654 DEBUG [27472]: Connecting to database... -- 15:58:13.654 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:13.654 SQL [27472]: pgsql_db_connect() -- 15:58:13.658 DEBUG [27472]: Database connection successful -- 15:58:13.658 INFO [27472]: _SERVER found -- 15:58:13.658 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 15:58:13.658 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:13.658 INFO [27472]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:13.658 INFO [27472]: QUERY_STRING = /assets/images/savvy-block.png -- 15:58:13.658 INFO [27472]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:13.669 INFO [27472]: COREGRADE is stopping... -- 15:58:13.669 DEBUG [27472]: Closing database connection -- 15:58:13.669 SQL [27472]: pgsql_close() -- 15:58:14.151 INFO [27472]: COREGRADE is starting... -- 15:58:14.151 INFO [27472]: Version from config: 1.0 -- 15:58:14.151 DEBUG [27472]: Connecting to database... -- 15:58:14.151 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:14.151 SQL [27472]: pgsql_db_connect() -- 15:58:14.160 INFO [27474]: COREGRADE is starting... -- 15:58:14.160 INFO [27474]: Version from config: 1.0 -- 15:58:14.160 DEBUG [27474]: Connecting to database... -- 15:58:14.160 DEBUG [27474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:14.160 SQL [27474]: pgsql_db_connect() -- 15:58:14.165 INFO [27471]: COREGRADE is starting... -- 15:58:14.165 INFO [27471]: Version from config: 1.0 -- 15:58:14.165 DEBUG [27471]: Connecting to database... -- 15:58:14.165 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:14.165 SQL [27471]: pgsql_db_connect() -- 15:58:14.174 INFO [27473]: COREGRADE is starting... -- 15:58:14.174 INFO [27473]: Version from config: 1.0 -- 15:58:14.174 DEBUG [27473]: Connecting to database... -- 15:58:14.174 DEBUG [27473]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:14.174 SQL [27473]: pgsql_db_connect() -- 15:58:14.164 DEBUG [27474]: Database connection successful -- 15:58:14.164 INFO [27474]: _SERVER found -- 15:58:14.164 INFO [27474]: REMOTE_ADDR = 10.0.0.15 -- 15:58:14.164 INFO [27474]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:14.164 INFO [27474]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:14.164 INFO [27474]: QUERY_STRING = /assets/images/savvy-block.png -- 15:58:14.164 INFO [27474]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:14.175 INFO [27474]: COREGRADE is stopping... -- 15:58:14.175 DEBUG [27474]: Closing database connection -- 15:58:14.175 SQL [27474]: pgsql_close() -- 15:58:14.169 DEBUG [27471]: Database connection successful -- 15:58:14.169 INFO [27471]: _SERVER found -- 15:58:14.169 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 15:58:14.169 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:14.169 INFO [27471]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:14.169 INFO [27471]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 15:58:14.169 INFO [27471]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:14.181 INFO [27471]: COREGRADE is stopping... -- 15:58:14.181 DEBUG [27471]: Closing database connection -- 15:58:14.181 SQL [27471]: pgsql_close() -- 15:58:14.178 DEBUG [27473]: Database connection successful -- 15:58:14.178 INFO [27473]: _SERVER found -- 15:58:14.178 INFO [27473]: REMOTE_ADDR = 10.0.0.15 -- 15:58:14.178 INFO [27473]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:14.178 INFO [27473]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:14.178 INFO [27473]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 15:58:14.178 INFO [27473]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:14.190 INFO [27473]: COREGRADE is stopping... -- 15:58:14.190 DEBUG [27473]: Closing database connection -- 15:58:14.190 SQL [27473]: pgsql_close() -- 15:58:14.155 DEBUG [27472]: Database connection successful -- 15:58:14.155 INFO [27472]: _SERVER found -- 15:58:14.155 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 15:58:14.155 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:14.155 INFO [27472]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:14.155 INFO [27472]: QUERY_STRING = -- 15:58:14.155 INFO [27472]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:14.195 INFO [27472]: COREGRADE is stopping... -- 15:58:14.195 DEBUG [27472]: Closing database connection -- 15:58:14.195 SQL [27472]: pgsql_close() -- 15:58:14.230 INFO [27472]: COREGRADE is starting... -- 15:58:14.231 INFO [27472]: Version from config: 1.0 -- 15:58:14.231 DEBUG [27472]: Connecting to database... -- 15:58:14.231 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:14.231 SQL [27472]: pgsql_db_connect() -- 15:58:14.235 INFO [27473]: COREGRADE is starting... -- 15:58:14.235 INFO [27473]: Version from config: 1.0 -- 15:58:14.235 DEBUG [27473]: Connecting to database... -- 15:58:14.235 DEBUG [27473]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:14.235 SQL [27473]: pgsql_db_connect() -- 15:58:14.239 INFO [27471]: COREGRADE is starting... -- 15:58:14.240 INFO [27471]: Version from config: 1.0 -- 15:58:14.240 DEBUG [27471]: Connecting to database... -- 15:58:14.240 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:14.240 SQL [27471]: pgsql_db_connect() -- 15:58:14.235 DEBUG [27472]: Database connection successful -- 15:58:14.235 INFO [27472]: _SERVER found -- 15:58:14.235 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 15:58:14.235 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:14.235 INFO [27472]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:14.235 INFO [27472]: QUERY_STRING = /assets/images/savvy-block.png -- 15:58:14.235 INFO [27472]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:14.247 INFO [27472]: COREGRADE is stopping... -- 15:58:14.247 DEBUG [27472]: Closing database connection -- 15:58:14.247 SQL [27472]: pgsql_close() -- 15:58:14.239 DEBUG [27473]: Database connection successful -- 15:58:14.239 INFO [27473]: _SERVER found -- 15:58:14.239 INFO [27473]: REMOTE_ADDR = 10.0.0.15 -- 15:58:14.239 INFO [27473]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:14.239 INFO [27473]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:14.239 INFO [27473]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 15:58:14.239 INFO [27473]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:14.250 INFO [27473]: COREGRADE is stopping... -- 15:58:14.250 DEBUG [27473]: Closing database connection -- 15:58:14.250 SQL [27473]: pgsql_close() -- 15:58:14.244 DEBUG [27471]: Database connection successful -- 15:58:14.244 INFO [27471]: _SERVER found -- 15:58:14.244 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 15:58:14.244 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:14.244 INFO [27471]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:14.244 INFO [27471]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 15:58:14.244 INFO [27471]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:14.255 INFO [27471]: COREGRADE is stopping... -- 15:58:14.255 DEBUG [27471]: Closing database connection -- 15:58:14.255 SQL [27471]: pgsql_close() -- 15:58:14.287 INFO [27471]: COREGRADE is starting... -- 15:58:14.287 INFO [27471]: Version from config: 1.0 -- 15:58:14.287 DEBUG [27471]: Connecting to database... -- 15:58:14.287 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:14.288 SQL [27471]: pgsql_db_connect() -- 15:58:14.291 DEBUG [27471]: Database connection successful -- 15:58:14.291 INFO [27471]: _SERVER found -- 15:58:14.291 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 15:58:14.291 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:14.291 INFO [27471]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:14.291 INFO [27471]: QUERY_STRING = /assets/images/savvy-block.png -- 15:58:14.291 INFO [27471]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:14.303 INFO [27471]: COREGRADE is stopping... -- 15:58:14.303 DEBUG [27471]: Closing database connection -- 15:58:14.303 SQL [27471]: pgsql_close() -- 15:58:14.968 INFO [27471]: COREGRADE is starting... -- 15:58:14.968 INFO [27471]: Version from config: 1.0 -- 15:58:14.968 DEBUG [27471]: Connecting to database... -- 15:58:14.968 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:14.968 SQL [27471]: pgsql_db_connect() -- 15:58:14.975 INFO [27472]: COREGRADE is starting... -- 15:58:14.975 INFO [27472]: Version from config: 1.0 -- 15:58:14.975 DEBUG [27472]: Connecting to database... -- 15:58:14.975 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:14.975 SQL [27472]: pgsql_db_connect() -- 15:58:14.976 INFO [27473]: COREGRADE is starting... -- 15:58:14.976 INFO [27473]: Version from config: 1.0 -- 15:58:14.976 DEBUG [27473]: Connecting to database... -- 15:58:14.976 DEBUG [27473]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:14.976 SQL [27473]: pgsql_db_connect() -- 15:58:14.985 INFO [27474]: COREGRADE is starting... -- 15:58:14.985 INFO [27474]: Version from config: 1.0 -- 15:58:14.985 DEBUG [27474]: Connecting to database... -- 15:58:14.985 DEBUG [27474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:14.985 SQL [27474]: pgsql_db_connect() -- 15:58:14.979 DEBUG [27472]: Database connection successful -- 15:58:14.979 INFO [27472]: _SERVER found -- 15:58:14.979 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 15:58:14.979 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:14.979 INFO [27472]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:14.979 INFO [27472]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 15:58:14.979 INFO [27472]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:14.990 INFO [27472]: COREGRADE is stopping... -- 15:58:14.990 DEBUG [27472]: Closing database connection -- 15:58:14.990 SQL [27472]: pgsql_close() -- 15:58:14.980 DEBUG [27473]: Database connection successful -- 15:58:14.980 INFO [27473]: _SERVER found -- 15:58:14.980 INFO [27473]: REMOTE_ADDR = 10.0.0.15 -- 15:58:14.980 INFO [27473]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:14.980 INFO [27473]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:14.980 INFO [27473]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 15:58:14.980 INFO [27473]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:14.992 INFO [27473]: COREGRADE is stopping... -- 15:58:14.992 DEBUG [27473]: Closing database connection -- 15:58:14.992 SQL [27473]: pgsql_close() -- 15:58:14.989 DEBUG [27474]: Database connection successful -- 15:58:14.989 INFO [27474]: _SERVER found -- 15:58:14.989 INFO [27474]: REMOTE_ADDR = 10.0.0.15 -- 15:58:14.989 INFO [27474]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:14.989 INFO [27474]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:14.989 INFO [27474]: QUERY_STRING = /assets/images/savvy-block.png -- 15:58:14.989 INFO [27474]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:15.001 INFO [27474]: COREGRADE is stopping... -- 15:58:15.001 DEBUG [27474]: Closing database connection -- 15:58:15.001 SQL [27474]: pgsql_close() -- 15:58:14.972 DEBUG [27471]: Database connection successful -- 15:58:14.972 INFO [27471]: _SERVER found -- 15:58:14.972 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 15:58:14.972 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:14.972 INFO [27471]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:14.972 INFO [27471]: QUERY_STRING = -- 15:58:14.972 INFO [27471]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:15.013 INFO [27471]: COREGRADE is stopping... -- 15:58:15.013 DEBUG [27471]: Closing database connection -- 15:58:15.013 SQL [27471]: pgsql_close() -- 15:58:15.042 INFO [27473]: COREGRADE is starting... -- 15:58:15.043 INFO [27473]: Version from config: 1.0 -- 15:58:15.043 DEBUG [27473]: Connecting to database... -- 15:58:15.043 DEBUG [27473]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:15.043 SQL [27473]: pgsql_db_connect() -- 15:58:15.048 INFO [27471]: COREGRADE is starting... -- 15:58:15.048 INFO [27471]: Version from config: 1.0 -- 15:58:15.048 DEBUG [27471]: Connecting to database... -- 15:58:15.048 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:15.048 SQL [27471]: pgsql_db_connect() -- 15:58:15.050 INFO [27472]: COREGRADE is starting... -- 15:58:15.050 INFO [27472]: Version from config: 1.0 -- 15:58:15.050 DEBUG [27472]: Connecting to database... -- 15:58:15.050 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:15.050 SQL [27472]: pgsql_db_connect() -- 15:58:15.047 DEBUG [27473]: Database connection successful -- 15:58:15.047 INFO [27473]: _SERVER found -- 15:58:15.047 INFO [27473]: REMOTE_ADDR = 10.0.0.15 -- 15:58:15.047 INFO [27473]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:15.047 INFO [27473]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:15.047 INFO [27473]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 15:58:15.047 INFO [27473]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:15.058 INFO [27473]: COREGRADE is stopping... -- 15:58:15.058 DEBUG [27473]: Closing database connection -- 15:58:15.058 SQL [27473]: pgsql_close() -- 15:58:15.052 DEBUG [27471]: Database connection successful -- 15:58:15.052 INFO [27471]: _SERVER found -- 15:58:15.052 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 15:58:15.052 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:15.052 INFO [27471]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:15.052 INFO [27471]: QUERY_STRING = /assets/images/savvy-block.png -- 15:58:15.052 INFO [27471]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:15.064 INFO [27471]: COREGRADE is stopping... -- 15:58:15.064 DEBUG [27471]: Closing database connection -- 15:58:15.064 SQL [27471]: pgsql_close() -- 15:58:15.054 DEBUG [27472]: Database connection successful -- 15:58:15.054 INFO [27472]: _SERVER found -- 15:58:15.054 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 15:58:15.054 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:15.054 INFO [27472]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:15.054 INFO [27472]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 15:58:15.054 INFO [27472]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:15.065 INFO [27472]: COREGRADE is stopping... -- 15:58:15.065 DEBUG [27472]: Closing database connection -- 15:58:15.065 SQL [27472]: pgsql_close() -- 15:58:16.082 INFO [27472]: COREGRADE is starting... -- 15:58:16.082 INFO [27472]: Version from config: 1.0 -- 15:58:16.082 DEBUG [27472]: Connecting to database... -- 15:58:16.082 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:16.082 SQL [27472]: pgsql_db_connect() -- 15:58:16.088 INFO [27473]: COREGRADE is starting... -- 15:58:16.088 INFO [27473]: Version from config: 1.0 -- 15:58:16.088 DEBUG [27473]: Connecting to database... -- 15:58:16.088 DEBUG [27473]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:16.088 SQL [27473]: pgsql_db_connect() -- 15:58:16.089 INFO [27471]: COREGRADE is starting... -- 15:58:16.089 INFO [27471]: Version from config: 1.0 -- 15:58:16.089 DEBUG [27471]: Connecting to database... -- 15:58:16.089 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:16.089 SQL [27471]: pgsql_db_connect() -- 15:58:16.098 INFO [27474]: COREGRADE is starting... -- 15:58:16.098 INFO [27474]: Version from config: 1.0 -- 15:58:16.098 DEBUG [27474]: Connecting to database... -- 15:58:16.098 DEBUG [27474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:16.098 SQL [27474]: pgsql_db_connect() -- 15:58:16.092 DEBUG [27473]: Database connection successful -- 15:58:16.092 INFO [27473]: _SERVER found -- 15:58:16.092 INFO [27473]: REMOTE_ADDR = 10.0.0.15 -- 15:58:16.092 INFO [27473]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:16.092 INFO [27473]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:16.092 INFO [27473]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 15:58:16.092 INFO [27473]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:16.103 INFO [27473]: COREGRADE is stopping... -- 15:58:16.103 DEBUG [27473]: Closing database connection -- 15:58:16.103 SQL [27473]: pgsql_close() -- 15:58:16.093 DEBUG [27471]: Database connection successful -- 15:58:16.093 INFO [27471]: _SERVER found -- 15:58:16.093 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 15:58:16.093 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:16.093 INFO [27471]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:16.093 INFO [27471]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 15:58:16.093 INFO [27471]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:16.104 INFO [27471]: COREGRADE is stopping... -- 15:58:16.104 DEBUG [27471]: Closing database connection -- 15:58:16.104 SQL [27471]: pgsql_close() -- 15:58:16.102 DEBUG [27474]: Database connection successful -- 15:58:16.102 INFO [27474]: _SERVER found -- 15:58:16.102 INFO [27474]: REMOTE_ADDR = 10.0.0.15 -- 15:58:16.102 INFO [27474]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:16.102 INFO [27474]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:16.102 INFO [27474]: QUERY_STRING = /assets/images/savvy-block.png -- 15:58:16.102 INFO [27474]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:16.114 INFO [27474]: COREGRADE is stopping... -- 15:58:16.114 DEBUG [27474]: Closing database connection -- 15:58:16.114 SQL [27474]: pgsql_close() -- 15:58:16.086 DEBUG [27472]: Database connection successful -- 15:58:16.086 INFO [27472]: _SERVER found -- 15:58:16.086 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 15:58:16.086 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:16.086 INFO [27472]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:16.086 INFO [27472]: QUERY_STRING = -- 15:58:16.086 INFO [27472]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:16.117 INFO [27472]: COREGRADE is stopping... -- 15:58:16.117 DEBUG [27472]: Closing database connection -- 15:58:16.117 SQL [27472]: pgsql_close() -- 15:58:16.150 INFO [27472]: COREGRADE is starting... -- 15:58:16.150 INFO [27472]: Version from config: 1.0 -- 15:58:16.150 DEBUG [27472]: Connecting to database... -- 15:58:16.150 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:16.150 SQL [27472]: pgsql_db_connect() -- 15:58:16.152 INFO [27473]: COREGRADE is starting... -- 15:58:16.152 INFO [27473]: Version from config: 1.0 -- 15:58:16.152 DEBUG [27473]: Connecting to database... -- 15:58:16.152 DEBUG [27473]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:16.152 SQL [27473]: pgsql_db_connect() -- 15:58:16.157 INFO [27471]: COREGRADE is starting... -- 15:58:16.157 INFO [27471]: Version from config: 1.0 -- 15:58:16.157 DEBUG [27471]: Connecting to database... -- 15:58:16.157 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:16.157 SQL [27471]: pgsql_db_connect() -- 15:58:16.154 DEBUG [27472]: Database connection successful -- 15:58:16.154 INFO [27472]: _SERVER found -- 15:58:16.154 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 15:58:16.154 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:16.154 INFO [27472]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:16.154 INFO [27472]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 15:58:16.154 INFO [27472]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:16.166 INFO [27472]: COREGRADE is stopping... -- 15:58:16.166 DEBUG [27472]: Closing database connection -- 15:58:16.166 SQL [27472]: pgsql_close() -- 15:58:16.156 DEBUG [27473]: Database connection successful -- 15:58:16.156 INFO [27473]: _SERVER found -- 15:58:16.156 INFO [27473]: REMOTE_ADDR = 10.0.0.15 -- 15:58:16.156 INFO [27473]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:16.156 INFO [27473]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:16.156 INFO [27473]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 15:58:16.156 INFO [27473]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:16.167 INFO [27473]: COREGRADE is stopping... -- 15:58:16.167 DEBUG [27473]: Closing database connection -- 15:58:16.168 SQL [27473]: pgsql_close() -- 15:58:16.161 DEBUG [27471]: Database connection successful -- 15:58:16.161 INFO [27471]: _SERVER found -- 15:58:16.161 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 15:58:16.161 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:16.161 INFO [27471]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:16.161 INFO [27471]: QUERY_STRING = /assets/images/savvy-block.png -- 15:58:16.161 INFO [27471]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:16.173 INFO [27471]: COREGRADE is stopping... -- 15:58:16.173 DEBUG [27471]: Closing database connection -- 15:58:16.173 SQL [27471]: pgsql_close() -- 15:58:16.545 INFO [27471]: COREGRADE is starting... -- 15:58:16.545 INFO [27471]: Version from config: 1.0 -- 15:58:16.545 DEBUG [27471]: Connecting to database... -- 15:58:16.545 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:16.545 SQL [27471]: pgsql_db_connect() -- 15:58:16.551 INFO [27472]: COREGRADE is starting... -- 15:58:16.552 INFO [27472]: Version from config: 1.0 -- 15:58:16.552 DEBUG [27472]: Connecting to database... -- 15:58:16.552 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:16.552 SQL [27472]: pgsql_db_connect() -- 15:58:16.553 INFO [27473]: COREGRADE is starting... -- 15:58:16.553 INFO [27473]: Version from config: 1.0 -- 15:58:16.553 DEBUG [27473]: Connecting to database... -- 15:58:16.553 DEBUG [27473]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:16.553 SQL [27473]: pgsql_db_connect() -- 15:58:16.554 INFO [27474]: COREGRADE is starting... -- 15:58:16.554 INFO [27474]: Version from config: 1.0 -- 15:58:16.554 DEBUG [27474]: Connecting to database... -- 15:58:16.554 DEBUG [27474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:16.554 SQL [27474]: pgsql_db_connect() -- 15:58:16.556 DEBUG [27472]: Database connection successful -- 15:58:16.556 INFO [27472]: _SERVER found -- 15:58:16.556 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 15:58:16.556 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:16.556 INFO [27472]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:16.556 INFO [27472]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 15:58:16.556 INFO [27472]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:16.567 INFO [27472]: COREGRADE is stopping... -- 15:58:16.567 DEBUG [27472]: Closing database connection -- 15:58:16.567 SQL [27472]: pgsql_close() -- 15:58:16.557 DEBUG [27473]: Database connection successful -- 15:58:16.557 INFO [27473]: _SERVER found -- 15:58:16.557 INFO [27473]: REMOTE_ADDR = 10.0.0.15 -- 15:58:16.557 INFO [27473]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:16.557 INFO [27473]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:16.557 INFO [27473]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 15:58:16.557 INFO [27473]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:16.569 INFO [27473]: COREGRADE is stopping... -- 15:58:16.569 DEBUG [27473]: Closing database connection -- 15:58:16.569 SQL [27473]: pgsql_close() -- 15:58:16.557 DEBUG [27474]: Database connection successful -- 15:58:16.557 INFO [27474]: _SERVER found -- 15:58:16.557 INFO [27474]: REMOTE_ADDR = 10.0.0.15 -- 15:58:16.557 INFO [27474]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:16.557 INFO [27474]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:16.557 INFO [27474]: QUERY_STRING = /assets/images/savvy-block.png -- 15:58:16.557 INFO [27474]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:16.569 INFO [27474]: COREGRADE is stopping... -- 15:58:16.569 DEBUG [27474]: Closing database connection -- 15:58:16.569 SQL [27474]: pgsql_close() -- 15:58:16.549 DEBUG [27471]: Database connection successful -- 15:58:16.549 INFO [27471]: _SERVER found -- 15:58:16.549 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 15:58:16.549 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:16.549 INFO [27471]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:16.549 INFO [27471]: QUERY_STRING = -- 15:58:16.549 INFO [27471]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:16.581 INFO [27471]: COREGRADE is stopping... -- 15:58:16.581 DEBUG [27471]: Closing database connection -- 15:58:16.581 SQL [27471]: pgsql_close() -- 15:58:16.617 INFO [27473]: COREGRADE is starting... -- 15:58:16.618 INFO [27473]: Version from config: 1.0 -- 15:58:16.618 DEBUG [27473]: Connecting to database... -- 15:58:16.618 DEBUG [27473]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:16.618 SQL [27473]: pgsql_db_connect() -- 15:58:16.618 INFO [27472]: COREGRADE is starting... -- 15:58:16.618 INFO [27472]: Version from config: 1.0 -- 15:58:16.618 DEBUG [27472]: Connecting to database... -- 15:58:16.618 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:16.618 SQL [27472]: pgsql_db_connect() -- 15:58:16.619 INFO [27471]: COREGRADE is starting... -- 15:58:16.619 INFO [27471]: Version from config: 1.0 -- 15:58:16.619 DEBUG [27471]: Connecting to database... -- 15:58:16.619 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:16.619 SQL [27471]: pgsql_db_connect() -- 15:58:16.622 DEBUG [27473]: Database connection successful -- 15:58:16.622 INFO [27473]: _SERVER found -- 15:58:16.622 INFO [27473]: REMOTE_ADDR = 10.0.0.15 -- 15:58:16.622 INFO [27473]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:16.622 INFO [27473]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:16.622 INFO [27473]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 15:58:16.622 INFO [27473]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:16.633 INFO [27473]: COREGRADE is stopping... -- 15:58:16.622 DEBUG [27472]: Database connection successful -- 15:58:16.622 INFO [27472]: _SERVER found -- 15:58:16.622 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 15:58:16.622 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:16.622 INFO [27472]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:16.622 INFO [27472]: QUERY_STRING = /assets/images/savvy-block.png -- 15:58:16.622 INFO [27472]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:16.633 INFO [27472]: COREGRADE is stopping... -- 15:58:16.633 DEBUG [27473]: Closing database connection -- 15:58:16.633 DEBUG [27472]: Closing database connection -- 15:58:16.633 SQL [27473]: pgsql_close() -- 15:58:16.633 SQL [27472]: pgsql_close() -- 15:58:16.623 DEBUG [27471]: Database connection successful -- 15:58:16.623 INFO [27471]: _SERVER found -- 15:58:16.623 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 15:58:16.623 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:16.623 INFO [27471]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:16.623 INFO [27471]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 15:58:16.623 INFO [27471]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:16.635 INFO [27471]: COREGRADE is stopping... -- 15:58:16.635 DEBUG [27471]: Closing database connection -- 15:58:16.635 SQL [27471]: pgsql_close() -- 15:58:17.871 INFO [27471]: COREGRADE is starting... -- 15:58:17.871 INFO [27471]: Version from config: 1.0 -- 15:58:17.871 DEBUG [27471]: Connecting to database... -- 15:58:17.871 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:17.871 SQL [27471]: pgsql_db_connect() -- 15:58:17.877 INFO [27472]: COREGRADE is starting... -- 15:58:17.877 INFO [27472]: Version from config: 1.0 -- 15:58:17.877 DEBUG [27472]: Connecting to database... -- 15:58:17.877 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:17.877 SQL [27472]: pgsql_db_connect() -- 15:58:17.879 INFO [27474]: COREGRADE is starting... -- 15:58:17.879 INFO [27473]: COREGRADE is starting... -- 15:58:17.879 INFO [27474]: Version from config: 1.0 -- 15:58:17.879 DEBUG [27474]: Connecting to database... -- 15:58:17.879 DEBUG [27474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:17.879 SQL [27474]: pgsql_db_connect() -- 15:58:17.879 INFO [27473]: Version from config: 1.0 -- 15:58:17.879 DEBUG [27473]: Connecting to database... -- 15:58:17.879 DEBUG [27473]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:17.879 SQL [27473]: pgsql_db_connect() -- 15:58:17.881 DEBUG [27472]: Database connection successful -- 15:58:17.881 INFO [27472]: _SERVER found -- 15:58:17.881 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 15:58:17.881 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:17.881 INFO [27472]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:17.881 INFO [27472]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 15:58:17.881 INFO [27472]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:17.893 INFO [27472]: COREGRADE is stopping... -- 15:58:17.893 DEBUG [27472]: Closing database connection -- 15:58:17.893 SQL [27472]: pgsql_close() -- 15:58:17.883 DEBUG [27474]: Database connection successful -- 15:58:17.883 INFO [27474]: _SERVER found -- 15:58:17.883 INFO [27474]: REMOTE_ADDR = 10.0.0.15 -- 15:58:17.883 INFO [27474]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:17.883 INFO [27474]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:17.883 INFO [27474]: QUERY_STRING = /assets/images/savvy-block.png -- 15:58:17.883 INFO [27474]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:17.894 INFO [27474]: COREGRADE is stopping... -- 15:58:17.895 DEBUG [27474]: Closing database connection -- 15:58:17.895 SQL [27474]: pgsql_close() -- 15:58:17.883 DEBUG [27473]: Database connection successful -- 15:58:17.883 INFO [27473]: _SERVER found -- 15:58:17.883 INFO [27473]: REMOTE_ADDR = 10.0.0.15 -- 15:58:17.883 INFO [27473]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:17.883 INFO [27473]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:17.883 INFO [27473]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 15:58:17.883 INFO [27473]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:17.895 INFO [27473]: COREGRADE is stopping... -- 15:58:17.895 DEBUG [27473]: Closing database connection -- 15:58:17.895 SQL [27473]: pgsql_close() -- 15:58:17.876 DEBUG [27471]: Database connection successful -- 15:58:17.876 INFO [27471]: _SERVER found -- 15:58:17.876 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 15:58:17.876 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:17.876 INFO [27471]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:17.876 INFO [27471]: QUERY_STRING = -- 15:58:17.876 INFO [27471]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:17.907 INFO [27471]: COREGRADE is stopping... -- 15:58:17.907 DEBUG [27471]: Closing database connection -- 15:58:17.907 SQL [27471]: pgsql_close() -- 15:58:17.941 INFO [27471]: COREGRADE is starting... -- 15:58:17.942 INFO [27471]: Version from config: 1.0 -- 15:58:17.942 DEBUG [27471]: Connecting to database... -- 15:58:17.942 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:17.942 SQL [27471]: pgsql_db_connect() -- 15:58:17.942 INFO [27472]: COREGRADE is starting... -- 15:58:17.942 INFO [27472]: Version from config: 1.0 -- 15:58:17.942 DEBUG [27472]: Connecting to database... -- 15:58:17.942 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:17.942 SQL [27472]: pgsql_db_connect() -- 15:58:17.943 INFO [27473]: COREGRADE is starting... -- 15:58:17.943 INFO [27473]: Version from config: 1.0 -- 15:58:17.943 DEBUG [27473]: Connecting to database... -- 15:58:17.943 DEBUG [27473]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:17.943 SQL [27473]: pgsql_db_connect() -- 15:58:17.947 DEBUG [27471]: Database connection successful -- 15:58:17.947 INFO [27471]: _SERVER found -- 15:58:17.947 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 15:58:17.947 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:17.947 INFO [27471]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:17.947 INFO [27471]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 15:58:17.947 INFO [27471]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:17.958 INFO [27471]: COREGRADE is stopping... -- 15:58:17.958 DEBUG [27471]: Closing database connection -- 15:58:17.958 SQL [27471]: pgsql_close() -- 15:58:17.947 DEBUG [27473]: Database connection successful -- 15:58:17.947 INFO [27473]: _SERVER found -- 15:58:17.947 INFO [27473]: REMOTE_ADDR = 10.0.0.15 -- 15:58:17.947 INFO [27473]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:17.947 INFO [27473]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:17.947 INFO [27473]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 15:58:17.947 INFO [27473]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:17.958 INFO [27473]: COREGRADE is stopping... -- 15:58:17.958 DEBUG [27473]: Closing database connection -- 15:58:17.958 SQL [27473]: pgsql_close() -- 15:58:17.947 DEBUG [27472]: Database connection successful -- 15:58:17.947 INFO [27472]: _SERVER found -- 15:58:17.947 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 15:58:17.947 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:17.947 INFO [27472]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:17.947 INFO [27472]: QUERY_STRING = /assets/images/savvy-block.png -- 15:58:17.947 INFO [27472]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:17.958 INFO [27472]: COREGRADE is stopping... -- 15:58:17.958 DEBUG [27472]: Closing database connection -- 15:58:17.958 SQL [27472]: pgsql_close() -- 15:58:18.324 INFO [27473]: COREGRADE is starting... -- 15:58:18.325 INFO [27473]: Version from config: 1.0 -- 15:58:18.325 DEBUG [27473]: Connecting to database... -- 15:58:18.325 DEBUG [27473]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:18.325 SQL [27473]: pgsql_db_connect() -- 15:58:18.330 INFO [27471]: COREGRADE is starting... -- 15:58:18.331 INFO [27471]: Version from config: 1.0 -- 15:58:18.331 DEBUG [27471]: Connecting to database... -- 15:58:18.331 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:18.331 SQL [27471]: pgsql_db_connect() -- 15:58:18.332 INFO [27472]: COREGRADE is starting... -- 15:58:18.332 INFO [27472]: Version from config: 1.0 -- 15:58:18.332 DEBUG [27472]: Connecting to database... -- 15:58:18.332 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:18.332 SQL [27472]: pgsql_db_connect() -- 15:58:18.332 INFO [27474]: COREGRADE is starting... -- 15:58:18.333 INFO [27474]: Version from config: 1.0 -- 15:58:18.333 DEBUG [27474]: Connecting to database... -- 15:58:18.333 DEBUG [27474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:18.333 SQL [27474]: pgsql_db_connect() -- 15:58:18.335 DEBUG [27471]: Database connection successful -- 15:58:18.335 INFO [27471]: _SERVER found -- 15:58:18.335 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 15:58:18.335 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:18.335 INFO [27471]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:18.335 INFO [27471]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 15:58:18.335 INFO [27471]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:18.347 INFO [27471]: COREGRADE is stopping... -- 15:58:18.347 DEBUG [27471]: Closing database connection -- 15:58:18.347 SQL [27471]: pgsql_close() -- 15:58:18.336 DEBUG [27472]: Database connection successful -- 15:58:18.336 INFO [27472]: _SERVER found -- 15:58:18.336 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 15:58:18.336 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:18.336 INFO [27472]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:18.336 INFO [27472]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 15:58:18.336 INFO [27472]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:18.348 INFO [27472]: COREGRADE is stopping... -- 15:58:18.348 DEBUG [27472]: Closing database connection -- 15:58:18.348 SQL [27472]: pgsql_close() -- 15:58:18.336 DEBUG [27474]: Database connection successful -- 15:58:18.336 INFO [27474]: _SERVER found -- 15:58:18.336 INFO [27474]: REMOTE_ADDR = 10.0.0.15 -- 15:58:18.336 INFO [27474]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:18.336 INFO [27474]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:18.336 INFO [27474]: QUERY_STRING = /assets/images/savvy-block.png -- 15:58:18.336 INFO [27474]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:18.348 INFO [27474]: COREGRADE is stopping... -- 15:58:18.348 DEBUG [27474]: Closing database connection -- 15:58:18.348 SQL [27474]: pgsql_close() -- 15:58:18.329 DEBUG [27473]: Database connection successful -- 15:58:18.329 INFO [27473]: _SERVER found -- 15:58:18.329 INFO [27473]: REMOTE_ADDR = 10.0.0.15 -- 15:58:18.329 INFO [27473]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:18.329 INFO [27473]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:18.329 INFO [27473]: QUERY_STRING = -- 15:58:18.329 INFO [27473]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:18.360 INFO [27473]: COREGRADE is stopping... -- 15:58:18.360 DEBUG [27473]: Closing database connection -- 15:58:18.360 SQL [27473]: pgsql_close() -- 15:58:18.395 INFO [27472]: COREGRADE is starting... -- 15:58:18.395 INFO [27473]: COREGRADE is starting... -- 15:58:18.396 INFO [27473]: Version from config: 1.0 -- 15:58:18.396 DEBUG [27473]: Connecting to database... -- 15:58:18.396 INFO [27472]: Version from config: 1.0 -- 15:58:18.396 DEBUG [27472]: Connecting to database... -- 15:58:18.396 DEBUG [27473]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:18.396 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:18.396 SQL [27473]: pgsql_db_connect() -- 15:58:18.396 SQL [27472]: pgsql_db_connect() -- 15:58:18.397 INFO [27471]: COREGRADE is starting... -- 15:58:18.397 INFO [27471]: Version from config: 1.0 -- 15:58:18.397 DEBUG [27471]: Connecting to database... -- 15:58:18.397 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:18.397 SQL [27471]: pgsql_db_connect() -- 15:58:18.400 DEBUG [27473]: Database connection successful -- 15:58:18.400 INFO [27473]: _SERVER found -- 15:58:18.400 INFO [27473]: REMOTE_ADDR = 10.0.0.15 -- 15:58:18.400 INFO [27473]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:18.400 INFO [27473]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:18.400 INFO [27473]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 15:58:18.400 INFO [27473]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:18.411 INFO [27473]: COREGRADE is stopping... -- 15:58:18.400 DEBUG [27472]: Database connection successful -- 15:58:18.400 INFO [27472]: _SERVER found -- 15:58:18.400 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 15:58:18.400 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:18.400 INFO [27472]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:18.400 INFO [27472]: QUERY_STRING = /assets/images/savvy-block.png -- 15:58:18.400 INFO [27472]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:18.411 INFO [27472]: COREGRADE is stopping... -- 15:58:18.411 DEBUG [27473]: Closing database connection -- 15:58:18.411 DEBUG [27472]: Closing database connection -- 15:58:18.411 SQL [27473]: pgsql_close() -- 15:58:18.411 SQL [27472]: pgsql_close() -- 15:58:18.401 DEBUG [27471]: Database connection successful -- 15:58:18.401 INFO [27471]: _SERVER found -- 15:58:18.401 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 15:58:18.401 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:18.401 INFO [27471]: HTTP_COOKIE = ci_session=go3q2usp2nb0cgia0ae6mmrkv4rtd06e; _ga=GA1.2.1289531376.1589047250; _gid=GA1.2.2126452732.1589592164 -- 15:58:18.401 INFO [27471]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 15:58:18.401 INFO [27471]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:18.412 INFO [27471]: COREGRADE is stopping... -- 15:58:18.412 DEBUG [27471]: Closing database connection -- 15:58:18.412 SQL [27471]: pgsql_close() -- 15:58:29.180 INFO [27470]: COREGRADE is starting... -- 15:58:29.180 INFO [27470]: Version from config: 1.0 -- 15:58:29.180 DEBUG [27470]: Connecting to database... -- 15:58:29.180 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:29.180 SQL [27470]: pgsql_db_connect() -- 15:58:29.184 DEBUG [27470]: Database connection successful -- 15:58:29.184 INFO [27470]: _SERVER found -- 15:58:29.184 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 15:58:29.184 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:29.184 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911 -- 15:58:29.184 INFO [27470]: QUERY_STRING = -- 15:58:29.184 INFO [27470]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:29.219 INFO [27470]: COREGRADE is stopping... -- 15:58:29.219 DEBUG [27470]: Closing database connection -- 15:58:29.219 SQL [27470]: pgsql_close() -- 15:58:29.303 INFO [27586]: COREGRADE is starting... -- 15:58:29.303 INFO [27586]: Version from config: 1.0 -- 15:58:29.303 DEBUG [27586]: Connecting to database... -- 15:58:29.303 DEBUG [27586]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:29.303 SQL [27586]: pgsql_db_connect() -- 15:58:29.307 INFO [27583]: COREGRADE is starting... -- 15:58:29.308 INFO [27583]: Version from config: 1.0 -- 15:58:29.308 DEBUG [27583]: Connecting to database... -- 15:58:29.308 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:29.308 SQL [27583]: pgsql_db_connect() -- 15:58:29.307 DEBUG [27586]: Database connection successful -- 15:58:29.307 INFO [27586]: _SERVER found -- 15:58:29.307 INFO [27586]: REMOTE_ADDR = 10.0.0.15 -- 15:58:29.307 INFO [27586]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:29.307 INFO [27586]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:29.307 INFO [27586]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 15:58:29.307 INFO [27586]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:29.319 INFO [27586]: COREGRADE is stopping... -- 15:58:29.319 DEBUG [27586]: Closing database connection -- 15:58:29.319 SQL [27586]: pgsql_close() -- 15:58:29.311 DEBUG [27583]: Database connection successful -- 15:58:29.311 INFO [27583]: _SERVER found -- 15:58:29.311 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 15:58:29.311 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:29.311 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:29.311 INFO [27583]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 15:58:29.311 INFO [27583]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:29.323 INFO [27583]: COREGRADE is stopping... -- 15:58:29.323 DEBUG [27583]: Closing database connection -- 15:58:29.323 SQL [27583]: pgsql_close() -- 15:58:29.360 INFO [27583]: COREGRADE is starting... -- 15:58:29.360 INFO [27583]: Version from config: 1.0 -- 15:58:29.360 DEBUG [27583]: Connecting to database... -- 15:58:29.360 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:29.360 SQL [27583]: pgsql_db_connect() -- 15:58:29.368 INFO [27586]: COREGRADE is starting... -- 15:58:29.368 INFO [27586]: Version from config: 1.0 -- 15:58:29.368 DEBUG [27586]: Connecting to database... -- 15:58:29.368 DEBUG [27586]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:29.368 SQL [27586]: pgsql_db_connect() -- 15:58:29.364 DEBUG [27583]: Database connection successful -- 15:58:29.364 INFO [27583]: _SERVER found -- 15:58:29.364 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 15:58:29.364 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:29.364 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:29.364 INFO [27583]: QUERY_STRING = /assets/images/savvy-block.png -- 15:58:29.364 INFO [27583]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:29.376 INFO [27583]: COREGRADE is stopping... -- 15:58:29.376 DEBUG [27583]: Closing database connection -- 15:58:29.376 SQL [27583]: pgsql_close() -- 15:58:29.372 DEBUG [27586]: Database connection successful -- 15:58:29.372 INFO [27586]: _SERVER found -- 15:58:29.372 INFO [27586]: REMOTE_ADDR = 10.0.0.15 -- 15:58:29.372 INFO [27586]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:29.372 INFO [27586]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:29.372 INFO [27586]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 15:58:29.372 INFO [27586]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:29.383 INFO [27586]: COREGRADE is stopping... -- 15:58:29.383 DEBUG [27586]: Closing database connection -- 15:58:29.383 SQL [27586]: pgsql_close() -- 15:58:37.482 INFO [27585]: COREGRADE is starting... -- 15:58:37.483 INFO [27585]: Version from config: 1.0 -- 15:58:37.483 DEBUG [27585]: Connecting to database... -- 15:58:37.483 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:37.483 SQL [27585]: pgsql_db_connect() -- 15:58:37.488 DEBUG [27585]: Database connection successful -- 15:58:37.488 INFO [27585]: _SERVER found -- 15:58:37.488 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 15:58:37.488 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:37.488 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:37.488 INFO [27585]: QUERY_STRING = /start -- 15:58:37.488 INFO [27585]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:37.532 INFO [27585]: COREGRADE is stopping... -- 15:58:37.532 DEBUG [27585]: Closing database connection -- 15:58:37.532 SQL [27585]: pgsql_close() -- 15:58:37.624 INFO [27585]: COREGRADE is starting... -- 15:58:37.625 INFO [27585]: Version from config: 1.0 -- 15:58:37.625 DEBUG [27585]: Connecting to database... -- 15:58:37.625 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:37.625 SQL [27585]: pgsql_db_connect() -- 15:58:37.630 INFO [27523]: COREGRADE is starting... -- 15:58:37.630 INFO [27523]: Version from config: 1.0 -- 15:58:37.630 DEBUG [27523]: Connecting to database... -- 15:58:37.630 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:37.630 SQL [27523]: pgsql_db_connect() -- 15:58:37.629 DEBUG [27585]: Database connection successful -- 15:58:37.629 INFO [27585]: _SERVER found -- 15:58:37.629 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 15:58:37.629 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:37.629 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:37.629 INFO [27585]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 15:58:37.629 INFO [27585]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:37.642 INFO [27585]: COREGRADE is stopping... -- 15:58:37.642 DEBUG [27585]: Closing database connection -- 15:58:37.642 SQL [27585]: pgsql_close() -- 15:58:37.645 INFO [27474]: COREGRADE is starting... -- 15:58:37.645 INFO [27474]: Version from config: 1.0 -- 15:58:37.645 DEBUG [27474]: Connecting to database... -- 15:58:37.645 DEBUG [27474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:37.645 SQL [27474]: pgsql_db_connect() -- 15:58:37.635 DEBUG [27523]: Database connection successful -- 15:58:37.635 INFO [27523]: _SERVER found -- 15:58:37.635 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 15:58:37.635 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:37.635 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:37.635 INFO [27523]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 15:58:37.635 INFO [27523]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:37.647 INFO [27523]: COREGRADE is stopping... -- 15:58:37.647 DEBUG [27523]: Closing database connection -- 15:58:37.647 SQL [27523]: pgsql_close() -- 15:58:37.651 INFO [27472]: COREGRADE is starting... -- 15:58:37.651 INFO [27472]: Version from config: 1.0 -- 15:58:37.651 DEBUG [27472]: Connecting to database... -- 15:58:37.651 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:37.651 SQL [27472]: pgsql_db_connect() -- 15:58:37.649 DEBUG [27474]: Database connection successful -- 15:58:37.649 INFO [27474]: _SERVER found -- 15:58:37.649 INFO [27474]: REMOTE_ADDR = 10.0.0.15 -- 15:58:37.649 INFO [27474]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:37.649 INFO [27474]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:37.649 INFO [27474]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 15:58:37.649 INFO [27474]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:37.661 INFO [27474]: COREGRADE is stopping... -- 15:58:37.661 DEBUG [27474]: Closing database connection -- 15:58:37.661 SQL [27474]: pgsql_close() -- 15:58:37.656 DEBUG [27472]: Database connection successful -- 15:58:37.656 INFO [27472]: _SERVER found -- 15:58:37.656 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 15:58:37.656 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:37.656 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:37.656 INFO [27472]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 15:58:37.656 INFO [27472]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:37.668 INFO [27472]: COREGRADE is stopping... -- 15:58:37.668 DEBUG [27472]: Closing database connection -- 15:58:37.668 SQL [27472]: pgsql_close() -- 15:58:37.670 INFO [27585]: COREGRADE is starting... -- 15:58:37.671 INFO [27585]: Version from config: 1.0 -- 15:58:37.671 DEBUG [27585]: Connecting to database... -- 15:58:37.671 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:37.671 SQL [27585]: pgsql_db_connect() -- 15:58:37.679 INFO [27523]: COREGRADE is starting... -- 15:58:37.680 INFO [27523]: Version from config: 1.0 -- 15:58:37.680 DEBUG [27523]: Connecting to database... -- 15:58:37.680 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:37.680 SQL [27523]: pgsql_db_connect() -- 15:58:37.684 INFO [27584]: COREGRADE is starting... -- 15:58:37.684 INFO [27584]: Version from config: 1.0 -- 15:58:37.684 DEBUG [27584]: Connecting to database... -- 15:58:37.684 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:37.684 SQL [27584]: pgsql_db_connect() -- 15:58:37.675 DEBUG [27585]: Database connection successful -- 15:58:37.675 INFO [27585]: _SERVER found -- 15:58:37.675 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 15:58:37.675 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:37.675 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:37.675 INFO [27585]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 15:58:37.675 INFO [27585]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:37.687 INFO [27585]: COREGRADE is stopping... -- 15:58:37.687 DEBUG [27585]: Closing database connection -- 15:58:37.687 SQL [27585]: pgsql_close() -- 15:58:37.690 INFO [27471]: COREGRADE is starting... -- 15:58:37.691 INFO [27471]: Version from config: 1.0 -- 15:58:37.691 DEBUG [27471]: Connecting to database... -- 15:58:37.691 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:37.691 SQL [27471]: pgsql_db_connect() -- 15:58:37.684 DEBUG [27523]: Database connection successful -- 15:58:37.684 INFO [27523]: _SERVER found -- 15:58:37.684 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 15:58:37.684 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:37.684 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:37.684 INFO [27523]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 15:58:37.684 INFO [27523]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:37.696 INFO [27523]: COREGRADE is stopping... -- 15:58:37.696 DEBUG [27523]: Closing database connection -- 15:58:37.696 SQL [27523]: pgsql_close() -- 15:58:37.689 DEBUG [27584]: Database connection successful -- 15:58:37.689 INFO [27584]: _SERVER found -- 15:58:37.689 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 15:58:37.689 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:37.689 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:37.689 INFO [27584]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 15:58:37.689 INFO [27584]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:37.701 INFO [27584]: COREGRADE is stopping... -- 15:58:37.701 DEBUG [27584]: Closing database connection -- 15:58:37.701 SQL [27584]: pgsql_close() -- 15:58:37.703 INFO [27474]: COREGRADE is starting... -- 15:58:37.703 INFO [27474]: Version from config: 1.0 -- 15:58:37.703 DEBUG [27474]: Connecting to database... -- 15:58:37.703 DEBUG [27474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:37.703 SQL [27474]: pgsql_db_connect() -- 15:58:37.695 DEBUG [27471]: Database connection successful -- 15:58:37.695 INFO [27471]: _SERVER found -- 15:58:37.695 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 15:58:37.695 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:37.695 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:37.695 INFO [27471]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 15:58:37.695 INFO [27471]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:37.707 INFO [27471]: COREGRADE is stopping... -- 15:58:37.707 DEBUG [27471]: Closing database connection -- 15:58:37.707 SQL [27471]: pgsql_close() -- 15:58:37.711 INFO [27472]: COREGRADE is starting... -- 15:58:37.711 INFO [27472]: Version from config: 1.0 -- 15:58:37.711 DEBUG [27472]: Connecting to database... -- 15:58:37.711 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:37.711 SQL [27472]: pgsql_db_connect() -- 15:58:37.713 INFO [27585]: COREGRADE is starting... -- 15:58:37.713 INFO [27585]: Version from config: 1.0 -- 15:58:37.713 DEBUG [27585]: Connecting to database... -- 15:58:37.713 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:37.713 SQL [27585]: pgsql_db_connect() -- 15:58:37.707 DEBUG [27474]: Database connection successful -- 15:58:37.707 INFO [27474]: _SERVER found -- 15:58:37.707 INFO [27474]: REMOTE_ADDR = 10.0.0.15 -- 15:58:37.707 INFO [27474]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:37.707 INFO [27474]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:37.707 INFO [27474]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 15:58:37.707 INFO [27474]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:37.719 INFO [27474]: COREGRADE is stopping... -- 15:58:37.719 DEBUG [27474]: Closing database connection -- 15:58:37.719 SQL [27474]: pgsql_close() -- 15:58:37.715 DEBUG [27472]: Database connection successful -- 15:58:37.716 INFO [27472]: _SERVER found -- 15:58:37.716 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 15:58:37.716 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:37.716 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:37.716 INFO [27472]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 15:58:37.716 INFO [27472]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:37.727 INFO [27472]: COREGRADE is stopping... -- 15:58:37.727 DEBUG [27472]: Closing database connection -- 15:58:37.727 SQL [27472]: pgsql_close() -- 15:58:37.717 DEBUG [27585]: Database connection successful -- 15:58:37.717 INFO [27585]: _SERVER found -- 15:58:37.717 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 15:58:37.717 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:37.717 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:37.717 INFO [27585]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 15:58:37.717 INFO [27585]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:37.729 INFO [27585]: COREGRADE is stopping... -- 15:58:37.729 DEBUG [27585]: Closing database connection -- 15:58:37.729 SQL [27585]: pgsql_close() -- 15:58:37.740 INFO [27471]: COREGRADE is starting... -- 15:58:37.740 INFO [27471]: Version from config: 1.0 -- 15:58:37.740 DEBUG [27471]: Connecting to database... -- 15:58:37.740 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:37.740 SQL [27471]: pgsql_db_connect() -- 15:58:37.744 INFO [27584]: COREGRADE is starting... -- 15:58:37.745 INFO [27584]: Version from config: 1.0 -- 15:58:37.745 DEBUG [27584]: Connecting to database... -- 15:58:37.745 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:37.745 SQL [27584]: pgsql_db_connect() -- 15:58:37.749 INFO [27523]: COREGRADE is starting... -- 15:58:37.749 INFO [27523]: Version from config: 1.0 -- 15:58:37.749 DEBUG [27523]: Connecting to database... -- 15:58:37.750 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:37.750 SQL [27523]: pgsql_db_connect() -- 15:58:37.745 DEBUG [27471]: Database connection successful -- 15:58:37.745 INFO [27471]: _SERVER found -- 15:58:37.745 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 15:58:37.745 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:37.745 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:37.745 INFO [27471]: QUERY_STRING = /assets/js/pages/dashboard.js -- 15:58:37.745 INFO [27471]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:37.757 INFO [27471]: COREGRADE is stopping... -- 15:58:37.757 DEBUG [27471]: Closing database connection -- 15:58:37.757 SQL [27471]: pgsql_close() -- 15:58:37.757 INFO [27474]: COREGRADE is starting... -- 15:58:37.758 INFO [27474]: Version from config: 1.0 -- 15:58:37.758 DEBUG [27474]: Connecting to database... -- 15:58:37.758 DEBUG [27474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:37.758 SQL [27474]: pgsql_db_connect() -- 15:58:37.761 INFO [27585]: COREGRADE is starting... -- 15:58:37.761 INFO [27585]: Version from config: 1.0 -- 15:58:37.761 DEBUG [27585]: Connecting to database... -- 15:58:37.761 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:37.761 SQL [27585]: pgsql_db_connect() -- 15:58:37.750 DEBUG [27584]: Database connection successful -- 15:58:37.750 INFO [27584]: _SERVER found -- 15:58:37.750 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 15:58:37.750 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:37.750 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:37.750 INFO [27584]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 15:58:37.750 INFO [27584]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:37.763 INFO [27584]: COREGRADE is stopping... -- 15:58:37.763 DEBUG [27584]: Closing database connection -- 15:58:37.763 SQL [27584]: pgsql_close() -- 15:58:37.754 DEBUG [27523]: Database connection successful -- 15:58:37.754 INFO [27523]: _SERVER found -- 15:58:37.754 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 15:58:37.754 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:37.754 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:37.754 INFO [27523]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 15:58:37.754 INFO [27523]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:37.766 INFO [27523]: COREGRADE is stopping... -- 15:58:37.766 DEBUG [27523]: Closing database connection -- 15:58:37.766 SQL [27523]: pgsql_close() -- 15:58:37.768 INFO [27472]: COREGRADE is starting... -- 15:58:37.768 INFO [27472]: Version from config: 1.0 -- 15:58:37.768 DEBUG [27472]: Connecting to database... -- 15:58:37.768 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:37.769 SQL [27472]: pgsql_db_connect() -- 15:58:37.762 DEBUG [27474]: Database connection successful -- 15:58:37.762 INFO [27474]: _SERVER found -- 15:58:37.762 INFO [27474]: REMOTE_ADDR = 10.0.0.15 -- 15:58:37.762 INFO [27474]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:37.762 INFO [27474]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:37.762 INFO [27474]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 15:58:37.762 INFO [27474]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:37.775 INFO [27474]: COREGRADE is stopping... -- 15:58:37.775 DEBUG [27474]: Closing database connection -- 15:58:37.775 SQL [27474]: pgsql_close() -- 15:58:37.766 DEBUG [27585]: Database connection successful -- 15:58:37.766 INFO [27585]: _SERVER found -- 15:58:37.766 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 15:58:37.766 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:37.766 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:37.766 INFO [27585]: QUERY_STRING = /assets/js/pages/picker_date.js -- 15:58:37.766 INFO [27585]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:37.778 INFO [27585]: COREGRADE is stopping... -- 15:58:37.778 DEBUG [27585]: Closing database connection -- 15:58:37.778 SQL [27585]: pgsql_close() -- 15:58:37.773 DEBUG [27472]: Database connection successful -- 15:58:37.773 INFO [27472]: _SERVER found -- 15:58:37.773 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 15:58:37.773 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:37.773 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:37.773 INFO [27472]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 15:58:37.773 INFO [27472]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:37.785 INFO [27472]: COREGRADE is stopping... -- 15:58:37.785 DEBUG [27472]: Closing database connection -- 15:58:37.785 SQL [27472]: pgsql_close() -- 15:58:37.796 INFO [27523]: COREGRADE is starting... -- 15:58:37.797 INFO [27523]: Version from config: 1.0 -- 15:58:37.797 DEBUG [27523]: Connecting to database... -- 15:58:37.797 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:37.797 SQL [27523]: pgsql_db_connect() -- 15:58:37.805 INFO [27584]: COREGRADE is starting... -- 15:58:37.805 INFO [27584]: Version from config: 1.0 -- 15:58:37.806 DEBUG [27584]: Connecting to database... -- 15:58:37.806 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:37.806 SQL [27584]: pgsql_db_connect() -- 15:58:37.810 INFO [27471]: COREGRADE is starting... -- 15:58:37.810 INFO [27471]: Version from config: 1.0 -- 15:58:37.810 DEBUG [27471]: Connecting to database... -- 15:58:37.810 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:37.810 SQL [27471]: pgsql_db_connect() -- 15:58:37.811 INFO [27585]: COREGRADE is starting... -- 15:58:37.811 INFO [27585]: Version from config: 1.0 -- 15:58:37.811 DEBUG [27585]: Connecting to database... -- 15:58:37.811 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:37.811 SQL [27585]: pgsql_db_connect() -- 15:58:37.801 DEBUG [27523]: Database connection successful -- 15:58:37.801 INFO [27523]: _SERVER found -- 15:58:37.801 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 15:58:37.801 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:37.801 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:37.801 INFO [27523]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 15:58:37.801 INFO [27523]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:37.813 INFO [27523]: COREGRADE is stopping... -- 15:58:37.813 DEBUG [27523]: Closing database connection -- 15:58:37.813 SQL [27523]: pgsql_close() -- 15:58:37.810 DEBUG [27584]: Database connection successful -- 15:58:37.810 INFO [27584]: _SERVER found -- 15:58:37.810 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 15:58:37.810 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:37.810 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:37.810 INFO [27584]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 15:58:37.810 INFO [27584]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:37.824 INFO [27584]: COREGRADE is stopping... -- 15:58:37.824 DEBUG [27584]: Closing database connection -- 15:58:37.824 SQL [27584]: pgsql_close() -- 15:58:37.815 DEBUG [27471]: Database connection successful -- 15:58:37.815 INFO [27471]: _SERVER found -- 15:58:37.815 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 15:58:37.815 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:37.815 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:37.815 INFO [27471]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 15:58:37.815 INFO [27471]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:37.827 INFO [27471]: COREGRADE is stopping... -- 15:58:37.827 DEBUG [27471]: Closing database connection -- 15:58:37.827 SQL [27471]: pgsql_close() -- 15:58:37.827 INFO [27472]: COREGRADE is starting... -- 15:58:37.827 INFO [27472]: Version from config: 1.0 -- 15:58:37.827 DEBUG [27472]: Connecting to database... -- 15:58:37.827 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:37.827 SQL [27472]: pgsql_db_connect() -- 15:58:37.816 DEBUG [27585]: Database connection successful -- 15:58:37.816 INFO [27585]: _SERVER found -- 15:58:37.816 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 15:58:37.816 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:37.816 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:37.816 INFO [27585]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 15:58:37.816 INFO [27585]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:37.829 INFO [27585]: COREGRADE is stopping... -- 15:58:37.829 DEBUG [27585]: Closing database connection -- 15:58:37.829 SQL [27585]: pgsql_close() -- 15:58:37.841 INFO [27471]: COREGRADE is starting... -- 15:58:37.842 INFO [27471]: Version from config: 1.0 -- 15:58:37.842 DEBUG [27471]: Connecting to database... -- 15:58:37.842 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:37.842 SQL [27471]: pgsql_db_connect() -- 15:58:37.832 DEBUG [27472]: Database connection successful -- 15:58:37.832 INFO [27472]: _SERVER found -- 15:58:37.832 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 15:58:37.832 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:37.832 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:37.832 INFO [27472]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 15:58:37.832 INFO [27472]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:37.844 INFO [27472]: COREGRADE is stopping... -- 15:58:37.844 DEBUG [27472]: Closing database connection -- 15:58:37.844 SQL [27472]: pgsql_close() -- 15:58:37.846 DEBUG [27471]: Database connection successful -- 15:58:37.846 INFO [27471]: _SERVER found -- 15:58:37.846 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 15:58:37.846 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:37.846 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:37.846 INFO [27471]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 15:58:37.846 INFO [27471]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:37.858 INFO [27471]: COREGRADE is stopping... -- 15:58:37.858 DEBUG [27471]: Closing database connection -- 15:58:37.858 SQL [27471]: pgsql_close() -- 15:58:37.858 INFO [27584]: COREGRADE is starting... -- 15:58:37.858 INFO [27523]: COREGRADE is starting... -- 15:58:37.859 INFO [27584]: Version from config: 1.0 -- 15:58:37.859 DEBUG [27584]: Connecting to database... -- 15:58:37.859 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:37.859 INFO [27523]: Version from config: 1.0 -- 15:58:37.859 DEBUG [27523]: Connecting to database... -- 15:58:37.859 SQL [27584]: pgsql_db_connect() -- 15:58:37.859 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:37.859 SQL [27523]: pgsql_db_connect() -- 15:58:37.864 DEBUG [27523]: Database connection successful -- 15:58:37.864 INFO [27523]: _SERVER found -- 15:58:37.864 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 15:58:37.864 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:37.864 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:37.864 INFO [27523]: QUERY_STRING = /assets/customjs/general.js -- 15:58:37.864 INFO [27523]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:37.875 INFO [27523]: COREGRADE is stopping... -- 15:58:37.875 DEBUG [27523]: Closing database connection -- 15:58:37.875 SQL [27523]: pgsql_close() -- 15:58:37.863 DEBUG [27584]: Database connection successful -- 15:58:37.864 INFO [27584]: _SERVER found -- 15:58:37.864 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 15:58:37.864 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:37.864 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:37.864 INFO [27584]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 15:58:37.864 INFO [27584]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:37.876 INFO [27584]: COREGRADE is stopping... -- 15:58:37.876 DEBUG [27584]: Closing database connection -- 15:58:37.876 SQL [27584]: pgsql_close() -- 15:58:37.907 INFO [27584]: COREGRADE is starting... -- 15:58:37.908 INFO [27584]: Version from config: 1.0 -- 15:58:37.908 DEBUG [27584]: Connecting to database... -- 15:58:37.908 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:37.908 SQL [27584]: pgsql_db_connect() -- 15:58:37.912 DEBUG [27584]: Database connection successful -- 15:58:37.912 INFO [27584]: _SERVER found -- 15:58:37.912 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 15:58:37.912 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:37.912 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:37.912 INFO [27584]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 15:58:37.912 INFO [27584]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:37.924 INFO [27584]: COREGRADE is stopping... -- 15:58:37.924 DEBUG [27584]: Closing database connection -- 15:58:37.924 SQL [27584]: pgsql_close() -- 15:58:37.959 INFO [27584]: COREGRADE is starting... -- 15:58:37.959 INFO [27584]: Version from config: 1.0 -- 15:58:37.959 DEBUG [27584]: Connecting to database... -- 15:58:37.959 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:37.959 SQL [27584]: pgsql_db_connect() -- 15:58:37.964 DEBUG [27584]: Database connection successful -- 15:58:37.964 INFO [27584]: _SERVER found -- 15:58:37.964 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 15:58:37.964 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:37.964 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:37.964 INFO [27584]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 15:58:37.964 INFO [27584]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:37.975 INFO [27584]: COREGRADE is stopping... -- 15:58:37.975 DEBUG [27584]: Closing database connection -- 15:58:37.975 SQL [27584]: pgsql_close() -- 15:58:38.007 INFO [27584]: COREGRADE is starting... -- 15:58:38.007 INFO [27584]: Version from config: 1.0 -- 15:58:38.007 DEBUG [27584]: Connecting to database... -- 15:58:38.008 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:38.008 SQL [27584]: pgsql_db_connect() -- 15:58:38.012 DEBUG [27584]: Database connection successful -- 15:58:38.012 INFO [27584]: _SERVER found -- 15:58:38.012 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 15:58:38.012 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:38.012 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:38.012 INFO [27584]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 15:58:38.012 INFO [27584]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:38.024 INFO [27584]: COREGRADE is stopping... -- 15:58:38.024 DEBUG [27584]: Closing database connection -- 15:58:38.024 SQL [27584]: pgsql_close() -- 15:58:38.053 INFO [27584]: COREGRADE is starting... -- 15:58:38.053 INFO [27584]: Version from config: 1.0 -- 15:58:38.053 DEBUG [27584]: Connecting to database... -- 15:58:38.053 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:38.053 SQL [27584]: pgsql_db_connect() -- 15:58:38.058 DEBUG [27584]: Database connection successful -- 15:58:38.058 INFO [27584]: _SERVER found -- 15:58:38.058 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 15:58:38.058 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:38.058 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:38.058 INFO [27584]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 15:58:38.058 INFO [27584]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:38.069 INFO [27584]: COREGRADE is stopping... -- 15:58:38.069 DEBUG [27584]: Closing database connection -- 15:58:38.069 SQL [27584]: pgsql_close() -- 15:58:38.098 INFO [27584]: COREGRADE is starting... -- 15:58:38.099 INFO [27584]: Version from config: 1.0 -- 15:58:38.099 DEBUG [27584]: Connecting to database... -- 15:58:38.099 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:38.099 SQL [27584]: pgsql_db_connect() -- 15:58:38.103 DEBUG [27584]: Database connection successful -- 15:58:38.103 INFO [27584]: _SERVER found -- 15:58:38.103 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 15:58:38.103 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:38.103 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:38.103 INFO [27584]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 15:58:38.103 INFO [27584]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:38.115 INFO [27584]: COREGRADE is stopping... -- 15:58:38.115 DEBUG [27584]: Closing database connection -- 15:58:38.115 SQL [27584]: pgsql_close() -- 15:58:38.142 INFO [27584]: COREGRADE is starting... -- 15:58:38.142 INFO [27584]: Version from config: 1.0 -- 15:58:38.142 DEBUG [27584]: Connecting to database... -- 15:58:38.143 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:38.143 SQL [27584]: pgsql_db_connect() -- 15:58:38.147 DEBUG [27584]: Database connection successful -- 15:58:38.147 INFO [27584]: _SERVER found -- 15:58:38.147 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 15:58:38.147 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:38.147 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:38.147 INFO [27584]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 15:58:38.147 INFO [27584]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:38.159 INFO [27584]: COREGRADE is stopping... -- 15:58:38.159 DEBUG [27584]: Closing database connection -- 15:58:38.159 SQL [27584]: pgsql_close() -- 15:58:38.197 INFO [27584]: COREGRADE is starting... -- 15:58:38.197 INFO [27584]: Version from config: 1.0 -- 15:58:38.197 DEBUG [27584]: Connecting to database... -- 15:58:38.197 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:38.197 SQL [27584]: pgsql_db_connect() -- 15:58:38.202 DEBUG [27584]: Database connection successful -- 15:58:38.202 INFO [27584]: _SERVER found -- 15:58:38.202 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 15:58:38.202 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:38.202 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:38.202 INFO [27584]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 15:58:38.202 INFO [27584]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:38.213 INFO [27584]: COREGRADE is stopping... -- 15:58:38.213 DEBUG [27584]: Closing database connection -- 15:58:38.213 SQL [27584]: pgsql_close() -- 15:58:38.245 INFO [27584]: COREGRADE is starting... -- 15:58:38.245 INFO [27584]: Version from config: 1.0 -- 15:58:38.245 DEBUG [27584]: Connecting to database... -- 15:58:38.245 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:38.245 SQL [27584]: pgsql_db_connect() -- 15:58:38.249 DEBUG [27584]: Database connection successful -- 15:58:38.249 INFO [27584]: _SERVER found -- 15:58:38.249 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 15:58:38.249 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:38.249 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:38.249 INFO [27584]: QUERY_STRING = /assets/js/pages/dashboard.js -- 15:58:38.249 INFO [27584]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:38.261 INFO [27584]: COREGRADE is stopping... -- 15:58:38.261 DEBUG [27584]: Closing database connection -- 15:58:38.261 SQL [27584]: pgsql_close() -- 15:58:38.295 INFO [27584]: COREGRADE is starting... -- 15:58:38.295 INFO [27584]: Version from config: 1.0 -- 15:58:38.295 DEBUG [27584]: Connecting to database... -- 15:58:38.295 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:38.295 SQL [27584]: pgsql_db_connect() -- 15:58:38.300 DEBUG [27584]: Database connection successful -- 15:58:38.300 INFO [27584]: _SERVER found -- 15:58:38.300 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 15:58:38.300 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:38.300 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:38.300 INFO [27584]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 15:58:38.300 INFO [27584]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:38.312 INFO [27584]: COREGRADE is stopping... -- 15:58:38.312 DEBUG [27584]: Closing database connection -- 15:58:38.312 SQL [27584]: pgsql_close() -- 15:58:38.344 INFO [27584]: COREGRADE is starting... -- 15:58:38.345 INFO [27584]: Version from config: 1.0 -- 15:58:38.345 DEBUG [27584]: Connecting to database... -- 15:58:38.345 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:38.345 SQL [27584]: pgsql_db_connect() -- 15:58:38.349 DEBUG [27584]: Database connection successful -- 15:58:38.349 INFO [27584]: _SERVER found -- 15:58:38.349 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 15:58:38.349 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:38.349 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:38.349 INFO [27584]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 15:58:38.349 INFO [27584]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:38.361 INFO [27584]: COREGRADE is stopping... -- 15:58:38.361 DEBUG [27584]: Closing database connection -- 15:58:38.361 SQL [27584]: pgsql_close() -- 15:58:38.394 INFO [27584]: COREGRADE is starting... -- 15:58:38.395 INFO [27584]: Version from config: 1.0 -- 15:58:38.395 DEBUG [27584]: Connecting to database... -- 15:58:38.395 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:38.395 SQL [27584]: pgsql_db_connect() -- 15:58:38.399 DEBUG [27584]: Database connection successful -- 15:58:38.399 INFO [27584]: _SERVER found -- 15:58:38.399 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 15:58:38.399 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:38.399 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:38.399 INFO [27584]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 15:58:38.399 INFO [27584]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:38.411 INFO [27584]: COREGRADE is stopping... -- 15:58:38.411 DEBUG [27584]: Closing database connection -- 15:58:38.411 SQL [27584]: pgsql_close() -- 15:58:38.443 INFO [27584]: COREGRADE is starting... -- 15:58:38.444 INFO [27584]: Version from config: 1.0 -- 15:58:38.444 DEBUG [27584]: Connecting to database... -- 15:58:38.444 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:38.444 SQL [27584]: pgsql_db_connect() -- 15:58:38.448 DEBUG [27584]: Database connection successful -- 15:58:38.448 INFO [27584]: _SERVER found -- 15:58:38.448 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 15:58:38.448 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:38.448 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:38.448 INFO [27584]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 15:58:38.448 INFO [27584]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:38.460 INFO [27584]: COREGRADE is stopping... -- 15:58:38.460 DEBUG [27584]: Closing database connection -- 15:58:38.460 SQL [27584]: pgsql_close() -- 15:58:38.492 INFO [27584]: COREGRADE is starting... -- 15:58:38.492 INFO [27584]: Version from config: 1.0 -- 15:58:38.492 DEBUG [27584]: Connecting to database... -- 15:58:38.492 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:38.492 SQL [27584]: pgsql_db_connect() -- 15:58:38.497 DEBUG [27584]: Database connection successful -- 15:58:38.497 INFO [27584]: _SERVER found -- 15:58:38.497 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 15:58:38.497 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:38.497 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:38.497 INFO [27584]: QUERY_STRING = /assets/js/pages/picker_date.js -- 15:58:38.497 INFO [27584]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:38.509 INFO [27584]: COREGRADE is stopping... -- 15:58:38.509 DEBUG [27584]: Closing database connection -- 15:58:38.509 SQL [27584]: pgsql_close() -- 15:58:38.541 INFO [27584]: COREGRADE is starting... -- 15:58:38.541 INFO [27584]: Version from config: 1.0 -- 15:58:38.541 DEBUG [27584]: Connecting to database... -- 15:58:38.541 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:38.541 SQL [27584]: pgsql_db_connect() -- 15:58:38.546 DEBUG [27584]: Database connection successful -- 15:58:38.546 INFO [27584]: _SERVER found -- 15:58:38.546 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 15:58:38.546 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:38.546 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:38.546 INFO [27584]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 15:58:38.546 INFO [27584]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:38.557 INFO [27584]: COREGRADE is stopping... -- 15:58:38.557 DEBUG [27584]: Closing database connection -- 15:58:38.557 SQL [27584]: pgsql_close() -- 15:58:38.591 INFO [27584]: COREGRADE is starting... -- 15:58:38.592 INFO [27584]: Version from config: 1.0 -- 15:58:38.592 DEBUG [27584]: Connecting to database... -- 15:58:38.592 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:38.592 SQL [27584]: pgsql_db_connect() -- 15:58:38.596 DEBUG [27584]: Database connection successful -- 15:58:38.596 INFO [27584]: _SERVER found -- 15:58:38.596 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 15:58:38.596 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:38.596 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:38.596 INFO [27584]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 15:58:38.596 INFO [27584]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:38.608 INFO [27584]: COREGRADE is stopping... -- 15:58:38.608 DEBUG [27584]: Closing database connection -- 15:58:38.608 SQL [27584]: pgsql_close() -- 15:58:38.648 INFO [27584]: COREGRADE is starting... -- 15:58:38.649 INFO [27584]: Version from config: 1.0 -- 15:58:38.649 DEBUG [27584]: Connecting to database... -- 15:58:38.649 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:38.649 SQL [27584]: pgsql_db_connect() -- 15:58:38.653 DEBUG [27584]: Database connection successful -- 15:58:38.653 INFO [27584]: _SERVER found -- 15:58:38.653 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 15:58:38.653 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:38.653 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:38.653 INFO [27584]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 15:58:38.653 INFO [27584]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:38.665 INFO [27584]: COREGRADE is stopping... -- 15:58:38.665 DEBUG [27584]: Closing database connection -- 15:58:38.665 SQL [27584]: pgsql_close() -- 15:58:38.696 INFO [27584]: COREGRADE is starting... -- 15:58:38.696 INFO [27584]: Version from config: 1.0 -- 15:58:38.696 DEBUG [27584]: Connecting to database... -- 15:58:38.696 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:38.696 SQL [27584]: pgsql_db_connect() -- 15:58:38.701 DEBUG [27584]: Database connection successful -- 15:58:38.701 INFO [27584]: _SERVER found -- 15:58:38.701 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 15:58:38.701 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:38.701 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:38.701 INFO [27584]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 15:58:38.701 INFO [27584]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:38.712 INFO [27584]: COREGRADE is stopping... -- 15:58:38.713 DEBUG [27584]: Closing database connection -- 15:58:38.713 SQL [27584]: pgsql_close() -- 15:58:38.744 INFO [27584]: COREGRADE is starting... -- 15:58:38.744 INFO [27584]: Version from config: 1.0 -- 15:58:38.744 DEBUG [27584]: Connecting to database... -- 15:58:38.744 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:38.744 SQL [27584]: pgsql_db_connect() -- 15:58:38.749 DEBUG [27584]: Database connection successful -- 15:58:38.749 INFO [27584]: _SERVER found -- 15:58:38.749 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 15:58:38.749 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:38.749 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:38.749 INFO [27584]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 15:58:38.749 INFO [27584]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:38.761 INFO [27584]: COREGRADE is stopping... -- 15:58:38.761 DEBUG [27584]: Closing database connection -- 15:58:38.761 SQL [27584]: pgsql_close() -- 15:58:38.837 INFO [27584]: COREGRADE is starting... -- 15:58:38.837 INFO [27584]: Version from config: 1.0 -- 15:58:38.837 DEBUG [27584]: Connecting to database... -- 15:58:38.837 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:38.837 SQL [27584]: pgsql_db_connect() -- 15:58:38.842 DEBUG [27584]: Database connection successful -- 15:58:38.842 INFO [27584]: _SERVER found -- 15:58:38.842 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 15:58:38.842 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:38.842 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:38.842 INFO [27584]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 15:58:38.842 INFO [27584]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:38.853 INFO [27584]: COREGRADE is stopping... -- 15:58:38.853 DEBUG [27584]: Closing database connection -- 15:58:38.853 SQL [27584]: pgsql_close() -- 15:58:38.885 INFO [27584]: COREGRADE is starting... -- 15:58:38.886 INFO [27584]: Version from config: 1.0 -- 15:58:38.886 DEBUG [27584]: Connecting to database... -- 15:58:38.886 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:38.886 SQL [27584]: pgsql_db_connect() -- 15:58:38.890 DEBUG [27584]: Database connection successful -- 15:58:38.890 INFO [27584]: _SERVER found -- 15:58:38.890 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 15:58:38.890 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:38.890 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:38.890 INFO [27584]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 15:58:38.890 INFO [27584]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:38.902 INFO [27584]: COREGRADE is stopping... -- 15:58:38.902 DEBUG [27584]: Closing database connection -- 15:58:38.902 SQL [27584]: pgsql_close() -- 15:58:39.036 INFO [27584]: COREGRADE is starting... -- 15:58:39.036 INFO [27584]: Version from config: 1.0 -- 15:58:39.036 DEBUG [27584]: Connecting to database... -- 15:58:39.036 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:58:39.037 SQL [27584]: pgsql_db_connect() -- 15:58:39.041 DEBUG [27584]: Database connection successful -- 15:58:39.041 INFO [27584]: _SERVER found -- 15:58:39.041 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 15:58:39.041 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:58:39.041 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 15:58:39.041 INFO [27584]: QUERY_STRING = /assets/customjs/general.js -- 15:58:39.041 INFO [27584]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:58:39.053 INFO [27584]: COREGRADE is stopping... -- 15:58:39.053 DEBUG [27584]: Closing database connection -- 15:58:39.053 SQL [27584]: pgsql_close() -- 16:16:38.641 INFO [27470]: COREGRADE is starting... -- 16:16:38.641 INFO [27470]: Version from config: 1.0 -- 16:16:38.641 DEBUG [27470]: Connecting to database... -- 16:16:38.641 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:16:38.641 SQL [27470]: pgsql_db_connect() -- 16:16:38.646 DEBUG [27470]: Database connection successful -- 16:16:38.646 INFO [27470]: _SERVER found -- 16:16:38.646 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 16:16:38.646 INFO [27470]: SERVER_NAME = oameye.works.coregrade.com -- 16:16:38.646 INFO [27470]: QUERY_STRING = /welcome/viewLogin -- 16:16:38.646 INFO [27470]: HTTP_X_FORWARDED_FOR = 66.249.70.88 -- 16:16:38.682 INFO [27470]: COREGRADE is stopping... -- 16:16:38.682 DEBUG [27470]: Closing database connection -- 16:16:38.682 SQL [27470]: pgsql_close() -- 16:16:39.838 INFO [27470]: COREGRADE is starting... -- 16:16:39.839 INFO [27470]: Version from config: 1.0 -- 16:16:39.839 DEBUG [27470]: Connecting to database... -- 16:16:39.839 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:16:39.839 SQL [27470]: pgsql_db_connect() -- 16:16:39.843 DEBUG [27470]: Database connection successful -- 16:16:39.843 INFO [27470]: _SERVER found -- 16:16:39.843 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 16:16:39.843 INFO [27470]: SERVER_NAME = oameye.works.coregrade.com -- 16:16:39.843 INFO [27470]: HTTP_COOKIE = ci_session=pq7im3kkolmtee68ijm6gbv9npkbmtaa -- 16:16:39.843 INFO [27470]: QUERY_STRING = /auth/index -- 16:16:39.843 INFO [27470]: HTTP_X_FORWARDED_FOR = 66.249.70.88 -- 16:16:39.877 INFO [27470]: COREGRADE is stopping... -- 16:16:39.877 DEBUG [27470]: Closing database connection -- 16:16:39.877 SQL [27470]: pgsql_close() -- 16:18:39.619 INFO [27583]: COREGRADE is starting... -- 16:18:39.619 INFO [27583]: Version from config: 1.0 -- 16:18:39.619 DEBUG [27583]: Connecting to database... -- 16:18:39.619 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:18:39.619 SQL [27583]: pgsql_db_connect() -- 16:18:39.624 DEBUG [27583]: Database connection successful -- 16:18:39.624 INFO [27583]: _SERVER found -- 16:18:39.624 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 16:18:39.624 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:18:39.624 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 16:18:39.624 INFO [27583]: QUERY_STRING = /logout -- 16:18:39.624 INFO [27583]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:18:39.637 INFO [27583]: COREGRADE is stopping... -- 16:18:39.637 DEBUG [27583]: Closing database connection -- 16:18:39.637 SQL [27583]: pgsql_close() -- 16:25:23.889 INFO [27586]: COREGRADE is starting... -- 16:25:23.890 INFO [27586]: Version from config: 1.0 -- 16:25:23.890 DEBUG [27586]: Connecting to database... -- 16:25:23.890 DEBUG [27586]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:23.890 SQL [27586]: pgsql_db_connect() -- 16:25:23.894 DEBUG [27586]: Database connection successful -- 16:25:23.894 INFO [27586]: _SERVER found -- 16:25:23.894 INFO [27586]: REMOTE_ADDR = 10.0.0.15 -- 16:25:23.894 INFO [27586]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:25:23.894 INFO [27586]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ut1asc82fd0vlsr6800rppaijbr6pvso -- 16:25:23.894 INFO [27586]: QUERY_STRING = /logout -- 16:25:23.894 INFO [27586]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:25:23.929 INFO [27586]: COREGRADE is stopping... -- 16:25:23.929 DEBUG [27586]: Closing database connection -- 16:25:23.929 SQL [27586]: pgsql_close() -- 16:25:24.011 INFO [27586]: COREGRADE is starting... -- 16:25:24.011 INFO [27586]: Version from config: 1.0 -- 16:25:24.011 DEBUG [27586]: Connecting to database... -- 16:25:24.011 DEBUG [27586]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:24.011 SQL [27586]: pgsql_db_connect() -- 16:25:24.015 DEBUG [27586]: Database connection successful -- 16:25:24.015 INFO [27586]: _SERVER found -- 16:25:24.015 INFO [27586]: REMOTE_ADDR = 10.0.0.15 -- 16:25:24.015 INFO [27586]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:25:24.015 INFO [27586]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=h48i37d8i4o9689dprboo7tf5gf1t73d -- 16:25:24.015 INFO [27586]: QUERY_STRING = /dash -- 16:25:24.015 INFO [27586]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:25:24.027 INFO [27586]: COREGRADE is stopping... -- 16:25:24.027 DEBUG [27586]: Closing database connection -- 16:25:24.027 SQL [27586]: pgsql_close() -- 16:25:41.446 INFO [27942]: COREGRADE is starting... -- 16:25:41.447 INFO [27942]: Version from config: 1.0 -- 16:25:41.447 DEBUG [27942]: Connecting to database... -- 16:25:41.447 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:25:41.447 SQL [27942]: pgsql_db_connect() -- 16:25:41.451 DEBUG [27942]: Database connection successful -- 16:25:41.451 INFO [27942]: _SERVER found -- 16:25:41.451 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 16:25:41.451 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:25:41.451 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=h48i37d8i4o9689dprboo7tf5gf1t73d -- 16:25:41.451 INFO [27942]: QUERY_STRING = /dash -- 16:25:41.451 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:25:41.466 INFO [27942]: COREGRADE is stopping... -- 16:25:41.466 DEBUG [27942]: Closing database connection -- 16:25:41.466 SQL [27942]: pgsql_close() -- 16:56:20.659 INFO [27585]: COREGRADE is starting... -- 16:56:20.659 INFO [27585]: Version from config: 1.0 -- 16:56:20.659 DEBUG [27585]: Connecting to database... -- 16:56:20.659 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:20.660 SQL [27585]: pgsql_db_connect() -- 16:56:20.664 DEBUG [27585]: Database connection successful -- 16:56:20.664 INFO [27585]: _SERVER found -- 16:56:20.664 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 16:56:20.664 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:56:20.664 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=h48i37d8i4o9689dprboo7tf5gf1t73d -- 16:56:20.664 INFO [27585]: QUERY_STRING = /dash -- 16:56:20.664 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:56:20.677 INFO [27585]: COREGRADE is stopping... -- 16:56:20.677 DEBUG [27585]: Closing database connection -- 16:56:20.677 SQL [27585]: pgsql_close() -- 16:56:25.773 INFO [27472]: COREGRADE is starting... -- 16:56:25.773 INFO [27472]: Version from config: 1.0 -- 16:56:25.773 DEBUG [27472]: Connecting to database... -- 16:56:25.773 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:25.773 SQL [27472]: pgsql_db_connect() -- 16:56:25.779 DEBUG [27472]: Database connection successful -- 16:56:25.779 INFO [27472]: _SERVER found -- 16:56:25.779 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 16:56:25.779 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:56:25.779 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=h48i37d8i4o9689dprboo7tf5gf1t73d -- 16:56:25.779 INFO [27472]: QUERY_STRING = /start -- 16:56:25.779 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:56:25.811 INFO [27472]: COREGRADE is stopping... -- 16:56:25.811 DEBUG [27472]: Closing database connection -- 16:56:25.811 SQL [27472]: pgsql_close() -- 16:56:25.893 INFO [27472]: COREGRADE is starting... -- 16:56:25.893 INFO [27472]: Version from config: 1.0 -- 16:56:25.893 DEBUG [27472]: Connecting to database... -- 16:56:25.893 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:25.893 SQL [27472]: pgsql_db_connect() -- 16:56:25.897 DEBUG [27472]: Database connection successful -- 16:56:25.897 INFO [27472]: _SERVER found -- 16:56:25.897 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 16:56:25.897 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:56:25.897 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2gh2fko870pmrc3f6312f5qvlkbqfejb -- 16:56:25.897 INFO [27472]: QUERY_STRING = /dash -- 16:56:25.897 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:56:25.909 INFO [27472]: COREGRADE is stopping... -- 16:56:25.909 DEBUG [27472]: Closing database connection -- 16:56:25.909 SQL [27472]: pgsql_close() -- 16:56:52.101 INFO [27471]: COREGRADE is starting... -- 16:56:52.101 INFO [27471]: Version from config: 1.0 -- 16:56:52.101 DEBUG [27471]: Connecting to database... -- 16:56:52.101 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:52.101 SQL [27471]: pgsql_db_connect() -- 16:56:52.105 DEBUG [27471]: Database connection successful -- 16:56:52.105 INFO [27471]: _SERVER found -- 16:56:52.105 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 16:56:52.105 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:56:52.105 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2gh2fko870pmrc3f6312f5qvlkbqfejb -- 16:56:52.105 INFO [27471]: QUERY_STRING = -- 16:56:52.105 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:56:52.137 INFO [27471]: COREGRADE is stopping... -- 16:56:52.137 DEBUG [27471]: Closing database connection -- 16:56:52.137 SQL [27471]: pgsql_close() -- 16:56:52.213 INFO [27471]: COREGRADE is starting... -- 16:56:52.214 INFO [27471]: Version from config: 1.0 -- 16:56:52.214 DEBUG [27471]: Connecting to database... -- 16:56:52.214 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:52.214 SQL [27471]: pgsql_db_connect() -- 16:56:52.218 DEBUG [27471]: Database connection successful -- 16:56:52.218 INFO [27471]: _SERVER found -- 16:56:52.218 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 16:56:52.218 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:56:52.218 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2gh2fko870pmrc3f6312f5qvlkbqfejb -- 16:56:52.218 INFO [27471]: QUERY_STRING = /dash -- 16:56:52.218 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:56:52.229 INFO [27471]: COREGRADE is stopping... -- 16:56:52.229 DEBUG [27471]: Closing database connection -- 16:56:52.229 SQL [27471]: pgsql_close() -- 16:56:56.062 INFO [27471]: COREGRADE is starting... -- 16:56:56.063 INFO [27471]: Version from config: 1.0 -- 16:56:56.063 DEBUG [27471]: Connecting to database... -- 16:56:56.063 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:56:56.063 SQL [27471]: pgsql_db_connect() -- 16:56:56.067 DEBUG [27471]: Database connection successful -- 16:56:56.067 INFO [27471]: _SERVER found -- 16:56:56.067 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 16:56:56.067 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:56:56.067 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2gh2fko870pmrc3f6312f5qvlkbqfejb -- 16:56:56.067 INFO [27471]: QUERY_STRING = /dash -- 16:56:56.067 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:56:56.078 INFO [27471]: COREGRADE is stopping... -- 16:56:56.078 DEBUG [27471]: Closing database connection -- 16:56:56.078 SQL [27471]: pgsql_close() -- 16:57:11.119 INFO [27523]: COREGRADE is starting... -- 16:57:11.120 INFO [27523]: Version from config: 1.0 -- 16:57:11.120 DEBUG [27523]: Connecting to database... -- 16:57:11.120 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:11.120 SQL [27523]: pgsql_db_connect() -- 16:57:11.124 DEBUG [27523]: Database connection successful -- 16:57:11.124 INFO [27523]: _SERVER found -- 16:57:11.124 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 16:57:11.124 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:57:11.124 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=vf2heauao3n6p55rafegpnvtu2cqsu4u -- 16:57:11.124 INFO [27523]: QUERY_STRING = -- 16:57:11.124 INFO [27523]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:57:11.157 INFO [27523]: COREGRADE is stopping... -- 16:57:11.157 DEBUG [27523]: Closing database connection -- 16:57:11.157 SQL [27523]: pgsql_close() -- 16:57:11.197 INFO [27523]: COREGRADE is starting... -- 16:57:11.197 INFO [27523]: Version from config: 1.0 -- 16:57:11.197 DEBUG [27523]: Connecting to database... -- 16:57:11.197 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:11.197 SQL [27523]: pgsql_db_connect() -- 16:57:11.201 DEBUG [27523]: Database connection successful -- 16:57:11.201 INFO [27523]: _SERVER found -- 16:57:11.201 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 16:57:11.201 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:57:11.201 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; ci_session=u4cg1kqe6f83pd9vr80nidv1lnm63mv9 -- 16:57:11.201 INFO [27523]: QUERY_STRING = /dash -- 16:57:11.201 INFO [27523]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 16:57:11.213 INFO [27523]: COREGRADE is stopping... -- 16:57:11.213 DEBUG [27523]: Closing database connection -- 16:57:11.213 SQL [27523]: pgsql_close() -- 16:58:45.339 INFO [27474]: COREGRADE is starting... -- 16:58:45.339 INFO [27474]: Version from config: 1.0 -- 16:58:45.339 DEBUG [27474]: Connecting to database... -- 16:58:45.339 DEBUG [27474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:45.339 SQL [27474]: pgsql_db_connect() -- 16:58:45.343 DEBUG [27474]: Database connection successful -- 16:58:45.343 INFO [27474]: _SERVER found -- 16:58:45.343 INFO [27474]: REMOTE_ADDR = 10.0.0.15 -- 16:58:45.343 INFO [27474]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:58:45.343 INFO [27474]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2gh2fko870pmrc3f6312f5qvlkbqfejb -- 16:58:45.343 INFO [27474]: QUERY_STRING = -- 16:58:45.343 INFO [27474]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:58:45.377 INFO [27474]: COREGRADE is stopping... -- 16:58:45.377 DEBUG [27474]: Closing database connection -- 16:58:45.377 SQL [27474]: pgsql_close() -- 16:58:45.454 INFO [27474]: COREGRADE is starting... -- 16:58:45.454 INFO [27474]: Version from config: 1.0 -- 16:58:45.454 DEBUG [27474]: Connecting to database... -- 16:58:45.454 DEBUG [27474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:58:45.454 SQL [27474]: pgsql_db_connect() -- 16:58:45.458 DEBUG [27474]: Database connection successful -- 16:58:45.458 INFO [27474]: _SERVER found -- 16:58:45.458 INFO [27474]: REMOTE_ADDR = 10.0.0.15 -- 16:58:45.458 INFO [27474]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:58:45.458 INFO [27474]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2gh2fko870pmrc3f6312f5qvlkbqfejb -- 16:58:45.458 INFO [27474]: QUERY_STRING = /dash -- 16:58:45.458 INFO [27474]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:58:45.470 INFO [27474]: COREGRADE is stopping... -- 16:58:45.470 DEBUG [27474]: Closing database connection -- 16:58:45.470 SQL [27474]: pgsql_close() -- 17:00:01.859 INFO [27584]: COREGRADE is starting... -- 17:00:01.860 INFO [27584]: Version from config: 1.0 -- 17:00:01.860 DEBUG [27584]: Connecting to database... -- 17:00:01.860 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:01.860 SQL [27584]: pgsql_db_connect() -- 17:00:01.864 DEBUG [27584]: Database connection successful -- 17:00:01.864 INFO [27584]: _SERVER found -- 17:00:01.864 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 17:00:01.864 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:00:01.864 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2gh2fko870pmrc3f6312f5qvlkbqfejb -- 17:00:01.864 INFO [27584]: QUERY_STRING = /dash -- 17:00:01.864 INFO [27584]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:00:01.876 INFO [27584]: COREGRADE is stopping... -- 17:00:01.876 DEBUG [27584]: Closing database connection -- 17:00:01.876 SQL [27584]: pgsql_close() -- 17:00:07.009 INFO [27470]: COREGRADE is starting... -- 17:00:07.009 INFO [27470]: Version from config: 1.0 -- 17:00:07.009 DEBUG [27470]: Connecting to database... -- 17:00:07.009 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:07.009 SQL [27470]: pgsql_db_connect() -- 17:00:07.014 DEBUG [27470]: Database connection successful -- 17:00:07.014 INFO [27470]: _SERVER found -- 17:00:07.014 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 17:00:07.014 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:00:07.014 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2gh2fko870pmrc3f6312f5qvlkbqfejb -- 17:00:07.014 INFO [27470]: QUERY_STRING = -- 17:00:07.014 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:00:07.049 INFO [27470]: COREGRADE is stopping... -- 17:00:07.049 DEBUG [27470]: Closing database connection -- 17:00:07.049 SQL [27470]: pgsql_close() -- 17:00:07.126 INFO [27470]: COREGRADE is starting... -- 17:00:07.126 INFO [27470]: Version from config: 1.0 -- 17:00:07.126 DEBUG [27470]: Connecting to database... -- 17:00:07.126 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:07.127 SQL [27470]: pgsql_db_connect() -- 17:00:07.131 DEBUG [27470]: Database connection successful -- 17:00:07.131 INFO [27470]: _SERVER found -- 17:00:07.131 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 17:00:07.131 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:00:07.131 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2gh2fko870pmrc3f6312f5qvlkbqfejb -- 17:00:07.131 INFO [27470]: QUERY_STRING = /dash -- 17:00:07.131 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:00:07.142 INFO [27470]: COREGRADE is stopping... -- 17:00:07.142 DEBUG [27470]: Closing database connection -- 17:00:07.142 SQL [27470]: pgsql_close() -- 17:00:10.145 INFO [27470]: COREGRADE is starting... -- 17:00:10.146 INFO [27470]: Version from config: 1.0 -- 17:00:10.146 DEBUG [27470]: Connecting to database... -- 17:00:10.146 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:10.146 SQL [27470]: pgsql_db_connect() -- 17:00:10.150 DEBUG [27470]: Database connection successful -- 17:00:10.150 INFO [27470]: _SERVER found -- 17:00:10.150 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 17:00:10.150 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:00:10.150 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2gh2fko870pmrc3f6312f5qvlkbqfejb -- 17:00:10.150 INFO [27470]: QUERY_STRING = /dash -- 17:00:10.150 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:00:10.162 INFO [27470]: COREGRADE is stopping... -- 17:00:10.162 DEBUG [27470]: Closing database connection -- 17:00:10.162 SQL [27470]: pgsql_close() -- 17:00:14.098 INFO [27470]: COREGRADE is starting... -- 17:00:14.098 INFO [27470]: Version from config: 1.0 -- 17:00:14.098 DEBUG [27470]: Connecting to database... -- 17:00:14.098 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:14.098 SQL [27470]: pgsql_db_connect() -- 17:00:14.102 DEBUG [27470]: Database connection successful -- 17:00:14.102 INFO [27470]: _SERVER found -- 17:00:14.102 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 17:00:14.102 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:00:14.102 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2gh2fko870pmrc3f6312f5qvlkbqfejb -- 17:00:14.102 INFO [27470]: QUERY_STRING = -- 17:00:14.102 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:00:14.135 INFO [27470]: COREGRADE is stopping... -- 17:00:14.135 DEBUG [27470]: Closing database connection -- 17:00:14.135 SQL [27470]: pgsql_close() -- 17:00:14.202 INFO [27470]: COREGRADE is starting... -- 17:00:14.203 INFO [27470]: Version from config: 1.0 -- 17:00:14.203 DEBUG [27470]: Connecting to database... -- 17:00:14.203 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:00:14.203 SQL [27470]: pgsql_db_connect() -- 17:00:14.207 DEBUG [27470]: Database connection successful -- 17:00:14.207 INFO [27470]: _SERVER found -- 17:00:14.207 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 17:00:14.207 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:00:14.207 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2gh2fko870pmrc3f6312f5qvlkbqfejb -- 17:00:14.207 INFO [27470]: QUERY_STRING = /dash -- 17:00:14.207 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:00:14.218 INFO [27470]: COREGRADE is stopping... -- 17:00:14.218 DEBUG [27470]: Closing database connection -- 17:00:14.218 SQL [27470]: pgsql_close() -- 17:01:14.048 INFO [27583]: COREGRADE is starting... -- 17:01:14.048 INFO [27583]: Version from config: 1.0 -- 17:01:14.048 DEBUG [27583]: Connecting to database... -- 17:01:14.048 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:01:14.048 SQL [27583]: pgsql_db_connect() -- 17:01:14.052 DEBUG [27583]: Database connection successful -- 17:01:14.052 INFO [27583]: _SERVER found -- 17:01:14.052 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 17:01:14.052 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:01:14.052 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2gh2fko870pmrc3f6312f5qvlkbqfejb -- 17:01:14.052 INFO [27583]: QUERY_STRING = -- 17:01:14.052 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:01:14.083 INFO [27583]: COREGRADE is stopping... -- 17:01:14.083 DEBUG [27583]: Closing database connection -- 17:01:14.083 SQL [27583]: pgsql_close() -- 17:01:14.161 INFO [27583]: COREGRADE is starting... -- 17:01:14.161 INFO [27583]: Version from config: 1.0 -- 17:01:14.161 DEBUG [27583]: Connecting to database... -- 17:01:14.161 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:01:14.161 SQL [27583]: pgsql_db_connect() -- 17:01:14.165 DEBUG [27583]: Database connection successful -- 17:01:14.165 INFO [27583]: _SERVER found -- 17:01:14.165 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 17:01:14.165 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:01:14.165 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2gh2fko870pmrc3f6312f5qvlkbqfejb -- 17:01:14.165 INFO [27583]: QUERY_STRING = /dash -- 17:01:14.165 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:01:14.176 INFO [27583]: COREGRADE is stopping... -- 17:01:14.176 DEBUG [27583]: Closing database connection -- 17:01:14.176 SQL [27583]: pgsql_close() -- 17:01:17.603 INFO [27583]: COREGRADE is starting... -- 17:01:17.604 INFO [27583]: Version from config: 1.0 -- 17:01:17.604 DEBUG [27583]: Connecting to database... -- 17:01:17.604 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:01:17.604 SQL [27583]: pgsql_db_connect() -- 17:01:17.608 DEBUG [27583]: Database connection successful -- 17:01:17.608 INFO [27583]: _SERVER found -- 17:01:17.608 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 17:01:17.608 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:01:17.608 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2gh2fko870pmrc3f6312f5qvlkbqfejb -- 17:01:17.608 INFO [27583]: QUERY_STRING = /dash -- 17:01:17.608 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:01:17.619 INFO [27583]: COREGRADE is stopping... -- 17:01:17.619 DEBUG [27583]: Closing database connection -- 17:01:17.619 SQL [27583]: pgsql_close() -- 17:01:52.678 INFO [27586]: COREGRADE is starting... -- 17:01:52.678 INFO [27586]: Version from config: 1.0 -- 17:01:52.678 DEBUG [27586]: Connecting to database... -- 17:01:52.678 DEBUG [27586]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:01:52.678 SQL [27586]: pgsql_db_connect() -- 17:01:52.683 DEBUG [27586]: Database connection successful -- 17:01:52.683 INFO [27586]: _SERVER found -- 17:01:52.683 INFO [27586]: REMOTE_ADDR = 10.0.0.15 -- 17:01:52.683 INFO [27586]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:01:52.683 INFO [27586]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2gh2fko870pmrc3f6312f5qvlkbqfejb -- 17:01:52.683 INFO [27586]: QUERY_STRING = /logout -- 17:01:52.683 INFO [27586]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:01:52.714 INFO [27586]: COREGRADE is stopping... -- 17:01:52.714 DEBUG [27586]: Closing database connection -- 17:01:52.714 SQL [27586]: pgsql_close() -- 17:01:52.792 INFO [27586]: COREGRADE is starting... -- 17:01:52.793 INFO [27586]: Version from config: 1.0 -- 17:01:52.793 DEBUG [27586]: Connecting to database... -- 17:01:52.793 DEBUG [27586]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:01:52.793 SQL [27586]: pgsql_db_connect() -- 17:01:52.797 DEBUG [27586]: Database connection successful -- 17:01:52.797 INFO [27586]: _SERVER found -- 17:01:52.797 INFO [27586]: REMOTE_ADDR = 10.0.0.15 -- 17:01:52.797 INFO [27586]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:01:52.797 INFO [27586]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:01:52.797 INFO [27586]: QUERY_STRING = /dash -- 17:01:52.797 INFO [27586]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:01:52.808 INFO [27586]: COREGRADE is stopping... -- 17:01:52.808 DEBUG [27586]: Closing database connection -- 17:01:52.808 SQL [27586]: pgsql_close() -- 17:03:08.002 INFO [27942]: COREGRADE is starting... -- 17:03:08.003 INFO [27942]: Version from config: 1.0 -- 17:03:08.003 DEBUG [27942]: Connecting to database... -- 17:03:08.003 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:08.003 SQL [27942]: pgsql_db_connect() -- 17:03:08.007 DEBUG [27942]: Database connection successful -- 17:03:08.007 INFO [27942]: _SERVER found -- 17:03:08.007 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:08.007 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:08.007 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:08.007 INFO [27942]: QUERY_STRING = -- 17:03:08.007 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:08.042 INFO [27942]: COREGRADE is stopping... -- 17:03:08.042 DEBUG [27942]: Closing database connection -- 17:03:08.042 SQL [27942]: pgsql_close() -- 17:03:08.119 INFO [27942]: COREGRADE is starting... -- 17:03:08.120 INFO [27942]: Version from config: 1.0 -- 17:03:08.120 DEBUG [27942]: Connecting to database... -- 17:03:08.120 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:08.120 SQL [27942]: pgsql_db_connect() -- 17:03:08.124 DEBUG [27942]: Database connection successful -- 17:03:08.124 INFO [27942]: _SERVER found -- 17:03:08.124 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:08.124 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:08.124 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:08.124 INFO [27942]: QUERY_STRING = /start -- 17:03:08.124 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:08.154 INFO [27942]: COREGRADE is stopping... -- 17:03:08.154 DEBUG [27942]: Closing database connection -- 17:03:08.154 SQL [27942]: pgsql_close() -- 17:03:08.231 INFO [27942]: COREGRADE is starting... -- 17:03:08.231 INFO [27942]: Version from config: 1.0 -- 17:03:08.231 DEBUG [27942]: Connecting to database... -- 17:03:08.231 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:08.231 SQL [27942]: pgsql_db_connect() -- 17:03:08.235 DEBUG [27942]: Database connection successful -- 17:03:08.235 INFO [27942]: _SERVER found -- 17:03:08.235 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:08.235 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:08.235 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:08.235 INFO [27942]: QUERY_STRING = /start -- 17:03:08.235 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:08.266 INFO [27942]: COREGRADE is stopping... -- 17:03:08.266 DEBUG [27942]: Closing database connection -- 17:03:08.266 SQL [27942]: pgsql_close() -- 17:03:08.343 INFO [27942]: COREGRADE is starting... -- 17:03:08.343 INFO [27942]: Version from config: 1.0 -- 17:03:08.343 DEBUG [27942]: Connecting to database... -- 17:03:08.343 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:08.343 SQL [27942]: pgsql_db_connect() -- 17:03:08.347 DEBUG [27942]: Database connection successful -- 17:03:08.347 INFO [27942]: _SERVER found -- 17:03:08.347 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:08.347 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:08.347 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:08.347 INFO [27942]: QUERY_STRING = /start -- 17:03:08.347 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:08.377 INFO [27942]: COREGRADE is stopping... -- 17:03:08.377 DEBUG [27942]: Closing database connection -- 17:03:08.377 SQL [27942]: pgsql_close() -- 17:03:08.444 INFO [27942]: COREGRADE is starting... -- 17:03:08.444 INFO [27942]: Version from config: 1.0 -- 17:03:08.444 DEBUG [27942]: Connecting to database... -- 17:03:08.444 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:08.444 SQL [27942]: pgsql_db_connect() -- 17:03:08.448 DEBUG [27942]: Database connection successful -- 17:03:08.448 INFO [27942]: _SERVER found -- 17:03:08.448 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:08.448 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:08.448 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:08.448 INFO [27942]: QUERY_STRING = /start -- 17:03:08.448 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:08.478 INFO [27942]: COREGRADE is stopping... -- 17:03:08.478 DEBUG [27942]: Closing database connection -- 17:03:08.478 SQL [27942]: pgsql_close() -- 17:03:08.544 INFO [27942]: COREGRADE is starting... -- 17:03:08.544 INFO [27942]: Version from config: 1.0 -- 17:03:08.544 DEBUG [27942]: Connecting to database... -- 17:03:08.544 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:08.544 SQL [27942]: pgsql_db_connect() -- 17:03:08.548 DEBUG [27942]: Database connection successful -- 17:03:08.548 INFO [27942]: _SERVER found -- 17:03:08.548 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:08.548 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:08.548 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:08.548 INFO [27942]: QUERY_STRING = /start -- 17:03:08.548 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:08.579 INFO [27942]: COREGRADE is stopping... -- 17:03:08.579 DEBUG [27942]: Closing database connection -- 17:03:08.579 SQL [27942]: pgsql_close() -- 17:03:08.644 INFO [27942]: COREGRADE is starting... -- 17:03:08.644 INFO [27942]: Version from config: 1.0 -- 17:03:08.644 DEBUG [27942]: Connecting to database... -- 17:03:08.644 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:08.644 SQL [27942]: pgsql_db_connect() -- 17:03:08.648 DEBUG [27942]: Database connection successful -- 17:03:08.648 INFO [27942]: _SERVER found -- 17:03:08.648 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:08.648 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:08.648 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:08.648 INFO [27942]: QUERY_STRING = /start -- 17:03:08.648 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:08.678 INFO [27942]: COREGRADE is stopping... -- 17:03:08.678 DEBUG [27942]: Closing database connection -- 17:03:08.678 SQL [27942]: pgsql_close() -- 17:03:08.744 INFO [27942]: COREGRADE is starting... -- 17:03:08.744 INFO [27942]: Version from config: 1.0 -- 17:03:08.744 DEBUG [27942]: Connecting to database... -- 17:03:08.744 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:08.744 SQL [27942]: pgsql_db_connect() -- 17:03:08.748 DEBUG [27942]: Database connection successful -- 17:03:08.748 INFO [27942]: _SERVER found -- 17:03:08.748 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:08.748 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:08.748 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:08.748 INFO [27942]: QUERY_STRING = /start -- 17:03:08.748 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:08.778 INFO [27942]: COREGRADE is stopping... -- 17:03:08.778 DEBUG [27942]: Closing database connection -- 17:03:08.778 SQL [27942]: pgsql_close() -- 17:03:08.843 INFO [27942]: COREGRADE is starting... -- 17:03:08.844 INFO [27942]: Version from config: 1.0 -- 17:03:08.844 DEBUG [27942]: Connecting to database... -- 17:03:08.844 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:08.844 SQL [27942]: pgsql_db_connect() -- 17:03:08.848 DEBUG [27942]: Database connection successful -- 17:03:08.848 INFO [27942]: _SERVER found -- 17:03:08.848 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:08.848 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:08.848 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:08.848 INFO [27942]: QUERY_STRING = /start -- 17:03:08.848 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:08.878 INFO [27942]: COREGRADE is stopping... -- 17:03:08.878 DEBUG [27942]: Closing database connection -- 17:03:08.878 SQL [27942]: pgsql_close() -- 17:03:08.943 INFO [27942]: COREGRADE is starting... -- 17:03:08.944 INFO [27942]: Version from config: 1.0 -- 17:03:08.944 DEBUG [27942]: Connecting to database... -- 17:03:08.944 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:08.944 SQL [27942]: pgsql_db_connect() -- 17:03:08.948 DEBUG [27942]: Database connection successful -- 17:03:08.948 INFO [27942]: _SERVER found -- 17:03:08.948 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:08.948 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:08.948 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:08.948 INFO [27942]: QUERY_STRING = /start -- 17:03:08.948 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:08.978 INFO [27942]: COREGRADE is stopping... -- 17:03:08.978 DEBUG [27942]: Closing database connection -- 17:03:08.978 SQL [27942]: pgsql_close() -- 17:03:09.043 INFO [27942]: COREGRADE is starting... -- 17:03:09.043 INFO [27942]: Version from config: 1.0 -- 17:03:09.043 DEBUG [27942]: Connecting to database... -- 17:03:09.043 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:09.043 SQL [27942]: pgsql_db_connect() -- 17:03:09.047 DEBUG [27942]: Database connection successful -- 17:03:09.047 INFO [27942]: _SERVER found -- 17:03:09.047 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:09.047 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:09.047 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:09.047 INFO [27942]: QUERY_STRING = /start -- 17:03:09.047 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:09.078 INFO [27942]: COREGRADE is stopping... -- 17:03:09.078 DEBUG [27942]: Closing database connection -- 17:03:09.078 SQL [27942]: pgsql_close() -- 17:03:09.143 INFO [27942]: COREGRADE is starting... -- 17:03:09.143 INFO [27942]: Version from config: 1.0 -- 17:03:09.143 DEBUG [27942]: Connecting to database... -- 17:03:09.143 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:09.143 SQL [27942]: pgsql_db_connect() -- 17:03:09.148 DEBUG [27942]: Database connection successful -- 17:03:09.148 INFO [27942]: _SERVER found -- 17:03:09.148 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:09.148 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:09.148 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:09.148 INFO [27942]: QUERY_STRING = /start -- 17:03:09.148 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:09.178 INFO [27942]: COREGRADE is stopping... -- 17:03:09.178 DEBUG [27942]: Closing database connection -- 17:03:09.178 SQL [27942]: pgsql_close() -- 17:03:09.243 INFO [27942]: COREGRADE is starting... -- 17:03:09.243 INFO [27942]: Version from config: 1.0 -- 17:03:09.243 DEBUG [27942]: Connecting to database... -- 17:03:09.243 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:09.243 SQL [27942]: pgsql_db_connect() -- 17:03:09.247 DEBUG [27942]: Database connection successful -- 17:03:09.247 INFO [27942]: _SERVER found -- 17:03:09.247 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:09.247 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:09.247 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:09.247 INFO [27942]: QUERY_STRING = /start -- 17:03:09.247 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:09.277 INFO [27942]: COREGRADE is stopping... -- 17:03:09.277 DEBUG [27942]: Closing database connection -- 17:03:09.277 SQL [27942]: pgsql_close() -- 17:03:09.343 INFO [27942]: COREGRADE is starting... -- 17:03:09.343 INFO [27942]: Version from config: 1.0 -- 17:03:09.343 DEBUG [27942]: Connecting to database... -- 17:03:09.343 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:09.343 SQL [27942]: pgsql_db_connect() -- 17:03:09.347 DEBUG [27942]: Database connection successful -- 17:03:09.347 INFO [27942]: _SERVER found -- 17:03:09.347 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:09.347 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:09.347 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:09.347 INFO [27942]: QUERY_STRING = /start -- 17:03:09.347 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:09.377 INFO [27942]: COREGRADE is stopping... -- 17:03:09.377 DEBUG [27942]: Closing database connection -- 17:03:09.377 SQL [27942]: pgsql_close() -- 17:03:09.442 INFO [27942]: COREGRADE is starting... -- 17:03:09.443 INFO [27942]: Version from config: 1.0 -- 17:03:09.443 DEBUG [27942]: Connecting to database... -- 17:03:09.443 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:09.443 SQL [27942]: pgsql_db_connect() -- 17:03:09.447 DEBUG [27942]: Database connection successful -- 17:03:09.447 INFO [27942]: _SERVER found -- 17:03:09.447 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:09.447 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:09.447 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:09.447 INFO [27942]: QUERY_STRING = /start -- 17:03:09.447 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:09.477 INFO [27942]: COREGRADE is stopping... -- 17:03:09.477 DEBUG [27942]: Closing database connection -- 17:03:09.477 SQL [27942]: pgsql_close() -- 17:03:09.542 INFO [27942]: COREGRADE is starting... -- 17:03:09.542 INFO [27942]: Version from config: 1.0 -- 17:03:09.542 DEBUG [27942]: Connecting to database... -- 17:03:09.542 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:09.542 SQL [27942]: pgsql_db_connect() -- 17:03:09.546 DEBUG [27942]: Database connection successful -- 17:03:09.546 INFO [27942]: _SERVER found -- 17:03:09.546 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:09.546 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:09.546 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:09.546 INFO [27942]: QUERY_STRING = /start -- 17:03:09.546 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:09.576 INFO [27942]: COREGRADE is stopping... -- 17:03:09.576 DEBUG [27942]: Closing database connection -- 17:03:09.576 SQL [27942]: pgsql_close() -- 17:03:09.641 INFO [27942]: COREGRADE is starting... -- 17:03:09.642 INFO [27942]: Version from config: 1.0 -- 17:03:09.642 DEBUG [27942]: Connecting to database... -- 17:03:09.642 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:09.642 SQL [27942]: pgsql_db_connect() -- 17:03:09.646 DEBUG [27942]: Database connection successful -- 17:03:09.646 INFO [27942]: _SERVER found -- 17:03:09.646 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:09.646 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:09.646 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:09.646 INFO [27942]: QUERY_STRING = /start -- 17:03:09.646 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:09.676 INFO [27942]: COREGRADE is stopping... -- 17:03:09.676 DEBUG [27942]: Closing database connection -- 17:03:09.676 SQL [27942]: pgsql_close() -- 17:03:09.741 INFO [27942]: COREGRADE is starting... -- 17:03:09.741 INFO [27942]: Version from config: 1.0 -- 17:03:09.741 DEBUG [27942]: Connecting to database... -- 17:03:09.741 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:09.741 SQL [27942]: pgsql_db_connect() -- 17:03:09.745 DEBUG [27942]: Database connection successful -- 17:03:09.745 INFO [27942]: _SERVER found -- 17:03:09.745 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:09.745 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:09.745 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:09.745 INFO [27942]: QUERY_STRING = /start -- 17:03:09.745 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:09.775 INFO [27942]: COREGRADE is stopping... -- 17:03:09.775 DEBUG [27942]: Closing database connection -- 17:03:09.775 SQL [27942]: pgsql_close() -- 17:03:09.841 INFO [27942]: COREGRADE is starting... -- 17:03:09.841 INFO [27942]: Version from config: 1.0 -- 17:03:09.841 DEBUG [27942]: Connecting to database... -- 17:03:09.841 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:09.841 SQL [27942]: pgsql_db_connect() -- 17:03:09.845 DEBUG [27942]: Database connection successful -- 17:03:09.845 INFO [27942]: _SERVER found -- 17:03:09.845 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:09.845 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:09.845 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:09.845 INFO [27942]: QUERY_STRING = /start -- 17:03:09.845 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:09.875 INFO [27942]: COREGRADE is stopping... -- 17:03:09.875 DEBUG [27942]: Closing database connection -- 17:03:09.875 SQL [27942]: pgsql_close() -- 17:03:09.940 INFO [27942]: COREGRADE is starting... -- 17:03:09.940 INFO [27942]: Version from config: 1.0 -- 17:03:09.940 DEBUG [27942]: Connecting to database... -- 17:03:09.940 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:09.940 SQL [27942]: pgsql_db_connect() -- 17:03:09.945 DEBUG [27942]: Database connection successful -- 17:03:09.945 INFO [27942]: _SERVER found -- 17:03:09.945 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:09.945 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:09.945 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:09.945 INFO [27942]: QUERY_STRING = /start -- 17:03:09.945 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:09.975 INFO [27942]: COREGRADE is stopping... -- 17:03:09.975 DEBUG [27942]: Closing database connection -- 17:03:09.975 SQL [27942]: pgsql_close() -- 17:03:10.153 INFO [27942]: COREGRADE is starting... -- 17:03:10.154 INFO [27942]: Version from config: 1.0 -- 17:03:10.154 DEBUG [27942]: Connecting to database... -- 17:03:10.154 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:10.154 SQL [27942]: pgsql_db_connect() -- 17:03:10.158 DEBUG [27942]: Database connection successful -- 17:03:10.158 INFO [27942]: _SERVER found -- 17:03:10.158 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:10.158 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:10.158 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:10.158 INFO [27942]: QUERY_STRING = /start -- 17:03:10.158 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:10.188 INFO [27942]: COREGRADE is stopping... -- 17:03:10.188 DEBUG [27942]: Closing database connection -- 17:03:10.188 SQL [27942]: pgsql_close() -- 17:03:10.254 INFO [27942]: COREGRADE is starting... -- 17:03:10.254 INFO [27942]: Version from config: 1.0 -- 17:03:10.254 DEBUG [27942]: Connecting to database... -- 17:03:10.254 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:10.254 SQL [27942]: pgsql_db_connect() -- 17:03:10.258 DEBUG [27942]: Database connection successful -- 17:03:10.258 INFO [27942]: _SERVER found -- 17:03:10.258 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:10.258 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:10.258 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:10.258 INFO [27942]: QUERY_STRING = /start -- 17:03:10.258 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:10.288 INFO [27942]: COREGRADE is stopping... -- 17:03:10.288 DEBUG [27942]: Closing database connection -- 17:03:10.288 SQL [27942]: pgsql_close() -- 17:03:10.353 INFO [27942]: COREGRADE is starting... -- 17:03:10.354 INFO [27942]: Version from config: 1.0 -- 17:03:10.354 DEBUG [27942]: Connecting to database... -- 17:03:10.354 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:10.354 SQL [27942]: pgsql_db_connect() -- 17:03:10.358 DEBUG [27942]: Database connection successful -- 17:03:10.358 INFO [27942]: _SERVER found -- 17:03:10.358 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:10.358 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:10.358 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:10.358 INFO [27942]: QUERY_STRING = /start -- 17:03:10.358 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:10.388 INFO [27942]: COREGRADE is stopping... -- 17:03:10.388 DEBUG [27942]: Closing database connection -- 17:03:10.388 SQL [27942]: pgsql_close() -- 17:03:10.454 INFO [27942]: COREGRADE is starting... -- 17:03:10.455 INFO [27942]: Version from config: 1.0 -- 17:03:10.455 DEBUG [27942]: Connecting to database... -- 17:03:10.455 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:10.455 SQL [27942]: pgsql_db_connect() -- 17:03:10.459 DEBUG [27942]: Database connection successful -- 17:03:10.459 INFO [27942]: _SERVER found -- 17:03:10.459 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:10.459 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:10.459 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:10.459 INFO [27942]: QUERY_STRING = /start -- 17:03:10.459 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:10.489 INFO [27942]: COREGRADE is stopping... -- 17:03:10.489 DEBUG [27942]: Closing database connection -- 17:03:10.489 SQL [27942]: pgsql_close() -- 17:03:10.554 INFO [27942]: COREGRADE is starting... -- 17:03:10.554 INFO [27942]: Version from config: 1.0 -- 17:03:10.554 DEBUG [27942]: Connecting to database... -- 17:03:10.554 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:10.554 SQL [27942]: pgsql_db_connect() -- 17:03:10.558 DEBUG [27942]: Database connection successful -- 17:03:10.559 INFO [27942]: _SERVER found -- 17:03:10.559 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:10.559 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:10.559 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:10.559 INFO [27942]: QUERY_STRING = /start -- 17:03:10.559 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:10.589 INFO [27942]: COREGRADE is stopping... -- 17:03:10.589 DEBUG [27942]: Closing database connection -- 17:03:10.589 SQL [27942]: pgsql_close() -- 17:03:10.654 INFO [27942]: COREGRADE is starting... -- 17:03:10.654 INFO [27942]: Version from config: 1.0 -- 17:03:10.654 DEBUG [27942]: Connecting to database... -- 17:03:10.654 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:10.654 SQL [27942]: pgsql_db_connect() -- 17:03:10.658 DEBUG [27942]: Database connection successful -- 17:03:10.658 INFO [27942]: _SERVER found -- 17:03:10.658 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:10.658 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:10.658 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:10.658 INFO [27942]: QUERY_STRING = /start -- 17:03:10.658 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:10.689 INFO [27942]: COREGRADE is stopping... -- 17:03:10.689 DEBUG [27942]: Closing database connection -- 17:03:10.689 SQL [27942]: pgsql_close() -- 17:03:10.753 INFO [27942]: COREGRADE is starting... -- 17:03:10.754 INFO [27942]: Version from config: 1.0 -- 17:03:10.754 DEBUG [27942]: Connecting to database... -- 17:03:10.754 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:10.754 SQL [27942]: pgsql_db_connect() -- 17:03:10.758 DEBUG [27942]: Database connection successful -- 17:03:10.758 INFO [27942]: _SERVER found -- 17:03:10.758 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:10.758 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:10.758 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:10.758 INFO [27942]: QUERY_STRING = /start -- 17:03:10.758 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:10.788 INFO [27942]: COREGRADE is stopping... -- 17:03:10.788 DEBUG [27942]: Closing database connection -- 17:03:10.788 SQL [27942]: pgsql_close() -- 17:03:10.853 INFO [27942]: COREGRADE is starting... -- 17:03:10.853 INFO [27942]: Version from config: 1.0 -- 17:03:10.853 DEBUG [27942]: Connecting to database... -- 17:03:10.853 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:10.853 SQL [27942]: pgsql_db_connect() -- 17:03:10.858 DEBUG [27942]: Database connection successful -- 17:03:10.858 INFO [27942]: _SERVER found -- 17:03:10.858 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:10.858 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:10.858 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:10.858 INFO [27942]: QUERY_STRING = /start -- 17:03:10.858 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:10.888 INFO [27942]: COREGRADE is stopping... -- 17:03:10.888 DEBUG [27942]: Closing database connection -- 17:03:10.888 SQL [27942]: pgsql_close() -- 17:03:10.953 INFO [27942]: COREGRADE is starting... -- 17:03:10.953 INFO [27942]: Version from config: 1.0 -- 17:03:10.953 DEBUG [27942]: Connecting to database... -- 17:03:10.953 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:10.953 SQL [27942]: pgsql_db_connect() -- 17:03:10.958 DEBUG [27942]: Database connection successful -- 17:03:10.958 INFO [27942]: _SERVER found -- 17:03:10.958 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:10.958 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:10.958 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:10.958 INFO [27942]: QUERY_STRING = /start -- 17:03:10.958 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:10.988 INFO [27942]: COREGRADE is stopping... -- 17:03:10.988 DEBUG [27942]: Closing database connection -- 17:03:10.988 SQL [27942]: pgsql_close() -- 17:03:11.053 INFO [27942]: COREGRADE is starting... -- 17:03:11.053 INFO [27942]: Version from config: 1.0 -- 17:03:11.053 DEBUG [27942]: Connecting to database... -- 17:03:11.053 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:11.053 SQL [27942]: pgsql_db_connect() -- 17:03:11.057 DEBUG [27942]: Database connection successful -- 17:03:11.057 INFO [27942]: _SERVER found -- 17:03:11.057 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:11.057 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:11.057 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:11.057 INFO [27942]: QUERY_STRING = /start -- 17:03:11.057 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:11.088 INFO [27942]: COREGRADE is stopping... -- 17:03:11.088 DEBUG [27942]: Closing database connection -- 17:03:11.088 SQL [27942]: pgsql_close() -- 17:03:11.153 INFO [27942]: COREGRADE is starting... -- 17:03:11.153 INFO [27942]: Version from config: 1.0 -- 17:03:11.153 DEBUG [27942]: Connecting to database... -- 17:03:11.153 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:11.153 SQL [27942]: pgsql_db_connect() -- 17:03:11.158 DEBUG [27942]: Database connection successful -- 17:03:11.158 INFO [27942]: _SERVER found -- 17:03:11.158 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:11.158 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:11.158 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:11.158 INFO [27942]: QUERY_STRING = /start -- 17:03:11.158 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:11.188 INFO [27942]: COREGRADE is stopping... -- 17:03:11.188 DEBUG [27942]: Closing database connection -- 17:03:11.188 SQL [27942]: pgsql_close() -- 17:03:11.253 INFO [27942]: COREGRADE is starting... -- 17:03:11.253 INFO [27942]: Version from config: 1.0 -- 17:03:11.253 DEBUG [27942]: Connecting to database... -- 17:03:11.253 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:11.253 SQL [27942]: pgsql_db_connect() -- 17:03:11.258 DEBUG [27942]: Database connection successful -- 17:03:11.258 INFO [27942]: _SERVER found -- 17:03:11.258 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:11.258 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:11.258 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:11.258 INFO [27942]: QUERY_STRING = /start -- 17:03:11.258 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:11.288 INFO [27942]: COREGRADE is stopping... -- 17:03:11.288 DEBUG [27942]: Closing database connection -- 17:03:11.288 SQL [27942]: pgsql_close() -- 17:03:11.353 INFO [27942]: COREGRADE is starting... -- 17:03:11.353 INFO [27942]: Version from config: 1.0 -- 17:03:11.353 DEBUG [27942]: Connecting to database... -- 17:03:11.353 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:11.353 SQL [27942]: pgsql_db_connect() -- 17:03:11.357 DEBUG [27942]: Database connection successful -- 17:03:11.357 INFO [27942]: _SERVER found -- 17:03:11.357 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:11.357 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:11.357 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:11.357 INFO [27942]: QUERY_STRING = /start -- 17:03:11.357 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:11.387 INFO [27942]: COREGRADE is stopping... -- 17:03:11.387 DEBUG [27942]: Closing database connection -- 17:03:11.387 SQL [27942]: pgsql_close() -- 17:03:11.452 INFO [27942]: COREGRADE is starting... -- 17:03:11.453 INFO [27942]: Version from config: 1.0 -- 17:03:11.453 DEBUG [27942]: Connecting to database... -- 17:03:11.453 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:11.453 SQL [27942]: pgsql_db_connect() -- 17:03:11.457 DEBUG [27942]: Database connection successful -- 17:03:11.457 INFO [27942]: _SERVER found -- 17:03:11.457 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:11.457 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:11.457 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:11.457 INFO [27942]: QUERY_STRING = /start -- 17:03:11.457 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:11.487 INFO [27942]: COREGRADE is stopping... -- 17:03:11.487 DEBUG [27942]: Closing database connection -- 17:03:11.487 SQL [27942]: pgsql_close() -- 17:03:11.552 INFO [27942]: COREGRADE is starting... -- 17:03:11.553 INFO [27942]: Version from config: 1.0 -- 17:03:11.553 DEBUG [27942]: Connecting to database... -- 17:03:11.553 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:11.553 SQL [27942]: pgsql_db_connect() -- 17:03:11.557 DEBUG [27942]: Database connection successful -- 17:03:11.557 INFO [27942]: _SERVER found -- 17:03:11.557 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:11.557 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:11.557 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:11.557 INFO [27942]: QUERY_STRING = /start -- 17:03:11.557 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:11.587 INFO [27942]: COREGRADE is stopping... -- 17:03:11.587 DEBUG [27942]: Closing database connection -- 17:03:11.587 SQL [27942]: pgsql_close() -- 17:03:11.652 INFO [27942]: COREGRADE is starting... -- 17:03:11.653 INFO [27942]: Version from config: 1.0 -- 17:03:11.653 DEBUG [27942]: Connecting to database... -- 17:03:11.653 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:11.653 SQL [27942]: pgsql_db_connect() -- 17:03:11.657 DEBUG [27942]: Database connection successful -- 17:03:11.657 INFO [27942]: _SERVER found -- 17:03:11.657 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:11.657 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:11.657 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:11.657 INFO [27942]: QUERY_STRING = /start -- 17:03:11.657 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:11.687 INFO [27942]: COREGRADE is stopping... -- 17:03:11.687 DEBUG [27942]: Closing database connection -- 17:03:11.687 SQL [27942]: pgsql_close() -- 17:03:11.752 INFO [27942]: COREGRADE is starting... -- 17:03:11.753 INFO [27942]: Version from config: 1.0 -- 17:03:11.753 DEBUG [27942]: Connecting to database... -- 17:03:11.753 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:11.753 SQL [27942]: pgsql_db_connect() -- 17:03:11.757 DEBUG [27942]: Database connection successful -- 17:03:11.757 INFO [27942]: _SERVER found -- 17:03:11.757 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:11.757 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:11.757 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:11.757 INFO [27942]: QUERY_STRING = /start -- 17:03:11.757 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:11.787 INFO [27942]: COREGRADE is stopping... -- 17:03:11.787 DEBUG [27942]: Closing database connection -- 17:03:11.787 SQL [27942]: pgsql_close() -- 17:03:11.852 INFO [27942]: COREGRADE is starting... -- 17:03:11.852 INFO [27942]: Version from config: 1.0 -- 17:03:11.852 DEBUG [27942]: Connecting to database... -- 17:03:11.852 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:11.852 SQL [27942]: pgsql_db_connect() -- 17:03:11.856 DEBUG [27942]: Database connection successful -- 17:03:11.856 INFO [27942]: _SERVER found -- 17:03:11.856 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:11.856 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:11.856 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:11.856 INFO [27942]: QUERY_STRING = /start -- 17:03:11.857 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:11.887 INFO [27942]: COREGRADE is stopping... -- 17:03:11.887 DEBUG [27942]: Closing database connection -- 17:03:11.887 SQL [27942]: pgsql_close() -- 17:03:11.952 INFO [27942]: COREGRADE is starting... -- 17:03:11.952 INFO [27942]: Version from config: 1.0 -- 17:03:11.952 DEBUG [27942]: Connecting to database... -- 17:03:11.952 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:11.952 SQL [27942]: pgsql_db_connect() -- 17:03:11.956 DEBUG [27942]: Database connection successful -- 17:03:11.956 INFO [27942]: _SERVER found -- 17:03:11.956 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:11.956 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:11.956 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:11.956 INFO [27942]: QUERY_STRING = /start -- 17:03:11.956 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:11.986 INFO [27942]: COREGRADE is stopping... -- 17:03:11.986 DEBUG [27942]: Closing database connection -- 17:03:11.986 SQL [27942]: pgsql_close() -- 17:03:12.051 INFO [27942]: COREGRADE is starting... -- 17:03:12.052 INFO [27942]: Version from config: 1.0 -- 17:03:12.052 DEBUG [27942]: Connecting to database... -- 17:03:12.052 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:12.052 SQL [27942]: pgsql_db_connect() -- 17:03:12.056 DEBUG [27942]: Database connection successful -- 17:03:12.056 INFO [27942]: _SERVER found -- 17:03:12.056 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:12.056 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:12.056 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:12.056 INFO [27942]: QUERY_STRING = /start -- 17:03:12.056 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:12.086 INFO [27942]: COREGRADE is stopping... -- 17:03:12.086 DEBUG [27942]: Closing database connection -- 17:03:12.086 SQL [27942]: pgsql_close() -- 17:03:15.453 INFO [27942]: COREGRADE is starting... -- 17:03:15.453 INFO [27942]: Version from config: 1.0 -- 17:03:15.453 DEBUG [27942]: Connecting to database... -- 17:03:15.453 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:15.453 SQL [27942]: pgsql_db_connect() -- 17:03:15.457 DEBUG [27942]: Database connection successful -- 17:03:15.457 INFO [27942]: _SERVER found -- 17:03:15.457 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:15.457 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:15.457 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:15.457 INFO [27942]: QUERY_STRING = /start -- 17:03:15.457 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:15.487 INFO [27942]: COREGRADE is stopping... -- 17:03:15.487 DEBUG [27942]: Closing database connection -- 17:03:15.487 SQL [27942]: pgsql_close() -- 17:03:15.553 INFO [27942]: COREGRADE is starting... -- 17:03:15.553 INFO [27942]: Version from config: 1.0 -- 17:03:15.553 DEBUG [27942]: Connecting to database... -- 17:03:15.553 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:15.553 SQL [27942]: pgsql_db_connect() -- 17:03:15.557 DEBUG [27942]: Database connection successful -- 17:03:15.557 INFO [27942]: _SERVER found -- 17:03:15.557 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:15.557 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:15.557 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:15.557 INFO [27942]: QUERY_STRING = /start -- 17:03:15.557 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:15.587 INFO [27942]: COREGRADE is stopping... -- 17:03:15.587 DEBUG [27942]: Closing database connection -- 17:03:15.587 SQL [27942]: pgsql_close() -- 17:03:15.653 INFO [27942]: COREGRADE is starting... -- 17:03:15.653 INFO [27942]: Version from config: 1.0 -- 17:03:15.653 DEBUG [27942]: Connecting to database... -- 17:03:15.653 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:15.653 SQL [27942]: pgsql_db_connect() -- 17:03:15.657 DEBUG [27942]: Database connection successful -- 17:03:15.657 INFO [27942]: _SERVER found -- 17:03:15.657 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:15.657 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:15.657 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:15.657 INFO [27942]: QUERY_STRING = /start -- 17:03:15.657 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:15.687 INFO [27942]: COREGRADE is stopping... -- 17:03:15.687 DEBUG [27942]: Closing database connection -- 17:03:15.687 SQL [27942]: pgsql_close() -- 17:03:15.752 INFO [27942]: COREGRADE is starting... -- 17:03:15.753 INFO [27942]: Version from config: 1.0 -- 17:03:15.753 DEBUG [27942]: Connecting to database... -- 17:03:15.753 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:15.753 SQL [27942]: pgsql_db_connect() -- 17:03:15.757 DEBUG [27942]: Database connection successful -- 17:03:15.757 INFO [27942]: _SERVER found -- 17:03:15.757 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:15.757 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:15.757 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:15.757 INFO [27942]: QUERY_STRING = /start -- 17:03:15.757 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:15.787 INFO [27942]: COREGRADE is stopping... -- 17:03:15.787 DEBUG [27942]: Closing database connection -- 17:03:15.787 SQL [27942]: pgsql_close() -- 17:03:15.853 INFO [27942]: COREGRADE is starting... -- 17:03:15.853 INFO [27942]: Version from config: 1.0 -- 17:03:15.853 DEBUG [27942]: Connecting to database... -- 17:03:15.853 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:15.853 SQL [27942]: pgsql_db_connect() -- 17:03:15.857 DEBUG [27942]: Database connection successful -- 17:03:15.857 INFO [27942]: _SERVER found -- 17:03:15.857 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:15.857 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:15.857 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:15.857 INFO [27942]: QUERY_STRING = /start -- 17:03:15.857 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:15.887 INFO [27942]: COREGRADE is stopping... -- 17:03:15.887 DEBUG [27942]: Closing database connection -- 17:03:15.887 SQL [27942]: pgsql_close() -- 17:03:15.953 INFO [27942]: COREGRADE is starting... -- 17:03:15.953 INFO [27942]: Version from config: 1.0 -- 17:03:15.953 DEBUG [27942]: Connecting to database... -- 17:03:15.953 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:15.953 SQL [27942]: pgsql_db_connect() -- 17:03:15.957 DEBUG [27942]: Database connection successful -- 17:03:15.957 INFO [27942]: _SERVER found -- 17:03:15.957 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:15.957 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:15.957 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:15.957 INFO [27942]: QUERY_STRING = /start -- 17:03:15.957 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:15.987 INFO [27942]: COREGRADE is stopping... -- 17:03:15.987 DEBUG [27942]: Closing database connection -- 17:03:15.987 SQL [27942]: pgsql_close() -- 17:03:16.052 INFO [27942]: COREGRADE is starting... -- 17:03:16.053 INFO [27942]: Version from config: 1.0 -- 17:03:16.053 DEBUG [27942]: Connecting to database... -- 17:03:16.053 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:16.053 SQL [27942]: pgsql_db_connect() -- 17:03:16.057 DEBUG [27942]: Database connection successful -- 17:03:16.057 INFO [27942]: _SERVER found -- 17:03:16.057 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:16.057 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:16.057 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:16.057 INFO [27942]: QUERY_STRING = /start -- 17:03:16.057 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:16.087 INFO [27942]: COREGRADE is stopping... -- 17:03:16.087 DEBUG [27942]: Closing database connection -- 17:03:16.087 SQL [27942]: pgsql_close() -- 17:03:16.152 INFO [27942]: COREGRADE is starting... -- 17:03:16.152 INFO [27942]: Version from config: 1.0 -- 17:03:16.152 DEBUG [27942]: Connecting to database... -- 17:03:16.152 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:16.152 SQL [27942]: pgsql_db_connect() -- 17:03:16.156 DEBUG [27942]: Database connection successful -- 17:03:16.156 INFO [27942]: _SERVER found -- 17:03:16.156 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:16.156 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:16.156 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:16.156 INFO [27942]: QUERY_STRING = /start -- 17:03:16.156 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:16.186 INFO [27942]: COREGRADE is stopping... -- 17:03:16.186 DEBUG [27942]: Closing database connection -- 17:03:16.186 SQL [27942]: pgsql_close() -- 17:03:16.251 INFO [27942]: COREGRADE is starting... -- 17:03:16.252 INFO [27942]: Version from config: 1.0 -- 17:03:16.252 DEBUG [27942]: Connecting to database... -- 17:03:16.252 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:16.252 SQL [27942]: pgsql_db_connect() -- 17:03:16.257 DEBUG [27942]: Database connection successful -- 17:03:16.257 INFO [27942]: _SERVER found -- 17:03:16.257 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:16.257 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:16.257 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:16.257 INFO [27942]: QUERY_STRING = /start -- 17:03:16.257 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:16.287 INFO [27942]: COREGRADE is stopping... -- 17:03:16.287 DEBUG [27942]: Closing database connection -- 17:03:16.287 SQL [27942]: pgsql_close() -- 17:03:16.352 INFO [27942]: COREGRADE is starting... -- 17:03:16.352 INFO [27942]: Version from config: 1.0 -- 17:03:16.352 DEBUG [27942]: Connecting to database... -- 17:03:16.352 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:16.352 SQL [27942]: pgsql_db_connect() -- 17:03:16.357 DEBUG [27942]: Database connection successful -- 17:03:16.357 INFO [27942]: _SERVER found -- 17:03:16.357 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:16.357 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:16.357 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:16.357 INFO [27942]: QUERY_STRING = /start -- 17:03:16.357 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:16.387 INFO [27942]: COREGRADE is stopping... -- 17:03:16.387 DEBUG [27942]: Closing database connection -- 17:03:16.387 SQL [27942]: pgsql_close() -- 17:03:16.453 INFO [27942]: COREGRADE is starting... -- 17:03:16.453 INFO [27942]: Version from config: 1.0 -- 17:03:16.453 DEBUG [27942]: Connecting to database... -- 17:03:16.453 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:16.453 SQL [27942]: pgsql_db_connect() -- 17:03:16.457 DEBUG [27942]: Database connection successful -- 17:03:16.457 INFO [27942]: _SERVER found -- 17:03:16.457 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:16.457 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:16.457 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:16.457 INFO [27942]: QUERY_STRING = /start -- 17:03:16.457 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:16.487 INFO [27942]: COREGRADE is stopping... -- 17:03:16.487 DEBUG [27942]: Closing database connection -- 17:03:16.487 SQL [27942]: pgsql_close() -- 17:03:16.552 INFO [27942]: COREGRADE is starting... -- 17:03:16.552 INFO [27942]: Version from config: 1.0 -- 17:03:16.552 DEBUG [27942]: Connecting to database... -- 17:03:16.552 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:16.552 SQL [27942]: pgsql_db_connect() -- 17:03:16.556 DEBUG [27942]: Database connection successful -- 17:03:16.556 INFO [27942]: _SERVER found -- 17:03:16.557 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:16.557 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:16.557 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:16.557 INFO [27942]: QUERY_STRING = /start -- 17:03:16.557 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:16.587 INFO [27942]: COREGRADE is stopping... -- 17:03:16.587 DEBUG [27942]: Closing database connection -- 17:03:16.587 SQL [27942]: pgsql_close() -- 17:03:16.652 INFO [27942]: COREGRADE is starting... -- 17:03:16.652 INFO [27942]: Version from config: 1.0 -- 17:03:16.652 DEBUG [27942]: Connecting to database... -- 17:03:16.652 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:16.652 SQL [27942]: pgsql_db_connect() -- 17:03:16.656 DEBUG [27942]: Database connection successful -- 17:03:16.656 INFO [27942]: _SERVER found -- 17:03:16.656 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:16.656 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:16.656 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:16.656 INFO [27942]: QUERY_STRING = /start -- 17:03:16.656 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:16.686 INFO [27942]: COREGRADE is stopping... -- 17:03:16.686 DEBUG [27942]: Closing database connection -- 17:03:16.686 SQL [27942]: pgsql_close() -- 17:03:16.751 INFO [27942]: COREGRADE is starting... -- 17:03:16.752 INFO [27942]: Version from config: 1.0 -- 17:03:16.752 DEBUG [27942]: Connecting to database... -- 17:03:16.752 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:16.752 SQL [27942]: pgsql_db_connect() -- 17:03:16.756 DEBUG [27942]: Database connection successful -- 17:03:16.756 INFO [27942]: _SERVER found -- 17:03:16.756 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:16.756 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:16.756 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:16.756 INFO [27942]: QUERY_STRING = /start -- 17:03:16.756 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:16.786 INFO [27942]: COREGRADE is stopping... -- 17:03:16.786 DEBUG [27942]: Closing database connection -- 17:03:16.786 SQL [27942]: pgsql_close() -- 17:03:16.851 INFO [27942]: COREGRADE is starting... -- 17:03:16.851 INFO [27942]: Version from config: 1.0 -- 17:03:16.851 DEBUG [27942]: Connecting to database... -- 17:03:16.851 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:16.851 SQL [27942]: pgsql_db_connect() -- 17:03:16.855 DEBUG [27942]: Database connection successful -- 17:03:16.855 INFO [27942]: _SERVER found -- 17:03:16.855 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:16.855 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:16.855 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:16.855 INFO [27942]: QUERY_STRING = /start -- 17:03:16.855 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:16.885 INFO [27942]: COREGRADE is stopping... -- 17:03:16.886 DEBUG [27942]: Closing database connection -- 17:03:16.886 SQL [27942]: pgsql_close() -- 17:03:16.951 INFO [27942]: COREGRADE is starting... -- 17:03:16.951 INFO [27942]: Version from config: 1.0 -- 17:03:16.951 DEBUG [27942]: Connecting to database... -- 17:03:16.951 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:16.951 SQL [27942]: pgsql_db_connect() -- 17:03:16.955 DEBUG [27942]: Database connection successful -- 17:03:16.955 INFO [27942]: _SERVER found -- 17:03:16.955 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:16.955 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:16.955 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:16.955 INFO [27942]: QUERY_STRING = /start -- 17:03:16.955 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:16.985 INFO [27942]: COREGRADE is stopping... -- 17:03:16.985 DEBUG [27942]: Closing database connection -- 17:03:16.985 SQL [27942]: pgsql_close() -- 17:03:17.050 INFO [27942]: COREGRADE is starting... -- 17:03:17.051 INFO [27942]: Version from config: 1.0 -- 17:03:17.051 DEBUG [27942]: Connecting to database... -- 17:03:17.051 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:17.051 SQL [27942]: pgsql_db_connect() -- 17:03:17.055 DEBUG [27942]: Database connection successful -- 17:03:17.055 INFO [27942]: _SERVER found -- 17:03:17.055 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:17.055 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:17.055 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:17.055 INFO [27942]: QUERY_STRING = /start -- 17:03:17.055 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:17.085 INFO [27942]: COREGRADE is stopping... -- 17:03:17.085 DEBUG [27942]: Closing database connection -- 17:03:17.085 SQL [27942]: pgsql_close() -- 17:03:17.151 INFO [27942]: COREGRADE is starting... -- 17:03:17.151 INFO [27942]: Version from config: 1.0 -- 17:03:17.151 DEBUG [27942]: Connecting to database... -- 17:03:17.151 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:17.151 SQL [27942]: pgsql_db_connect() -- 17:03:17.155 DEBUG [27942]: Database connection successful -- 17:03:17.155 INFO [27942]: _SERVER found -- 17:03:17.155 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:17.155 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:17.155 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:17.155 INFO [27942]: QUERY_STRING = /start -- 17:03:17.155 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:17.185 INFO [27942]: COREGRADE is stopping... -- 17:03:17.186 DEBUG [27942]: Closing database connection -- 17:03:17.186 SQL [27942]: pgsql_close() -- 17:03:17.251 INFO [27942]: COREGRADE is starting... -- 17:03:17.251 INFO [27942]: Version from config: 1.0 -- 17:03:17.251 DEBUG [27942]: Connecting to database... -- 17:03:17.251 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:17.251 SQL [27942]: pgsql_db_connect() -- 17:03:17.255 DEBUG [27942]: Database connection successful -- 17:03:17.255 INFO [27942]: _SERVER found -- 17:03:17.255 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:17.255 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:17.255 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:17.255 INFO [27942]: QUERY_STRING = /start -- 17:03:17.255 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:17.286 INFO [27942]: COREGRADE is stopping... -- 17:03:17.286 DEBUG [27942]: Closing database connection -- 17:03:17.286 SQL [27942]: pgsql_close() -- 17:03:17.351 INFO [27942]: COREGRADE is starting... -- 17:03:17.351 INFO [27942]: Version from config: 1.0 -- 17:03:17.352 DEBUG [27942]: Connecting to database... -- 17:03:17.352 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:17.352 SQL [27942]: pgsql_db_connect() -- 17:03:17.356 DEBUG [27942]: Database connection successful -- 17:03:17.356 INFO [27942]: _SERVER found -- 17:03:17.356 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:17.356 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:17.356 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:17.356 INFO [27942]: QUERY_STRING = /start -- 17:03:17.356 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:17.386 INFO [27942]: COREGRADE is stopping... -- 17:03:17.386 DEBUG [27942]: Closing database connection -- 17:03:17.386 SQL [27942]: pgsql_close() -- 17:03:18.856 INFO [27942]: COREGRADE is starting... -- 17:03:18.856 INFO [27942]: Version from config: 1.0 -- 17:03:18.856 DEBUG [27942]: Connecting to database... -- 17:03:18.856 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:18.856 SQL [27942]: pgsql_db_connect() -- 17:03:18.860 DEBUG [27942]: Database connection successful -- 17:03:18.860 INFO [27942]: _SERVER found -- 17:03:18.860 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:18.860 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:18.860 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:18.860 INFO [27942]: QUERY_STRING = -- 17:03:18.860 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:18.891 INFO [27942]: COREGRADE is stopping... -- 17:03:18.891 DEBUG [27942]: Closing database connection -- 17:03:18.891 SQL [27942]: pgsql_close() -- 17:03:18.956 INFO [27942]: COREGRADE is starting... -- 17:03:18.956 INFO [27942]: Version from config: 1.0 -- 17:03:18.956 DEBUG [27942]: Connecting to database... -- 17:03:18.956 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:18.956 SQL [27942]: pgsql_db_connect() -- 17:03:18.960 DEBUG [27942]: Database connection successful -- 17:03:18.960 INFO [27942]: _SERVER found -- 17:03:18.960 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:18.960 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:18.960 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:18.960 INFO [27942]: QUERY_STRING = /start -- 17:03:18.960 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:18.990 INFO [27942]: COREGRADE is stopping... -- 17:03:18.990 DEBUG [27942]: Closing database connection -- 17:03:18.990 SQL [27942]: pgsql_close() -- 17:03:19.056 INFO [27942]: COREGRADE is starting... -- 17:03:19.056 INFO [27942]: Version from config: 1.0 -- 17:03:19.056 DEBUG [27942]: Connecting to database... -- 17:03:19.056 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:19.056 SQL [27942]: pgsql_db_connect() -- 17:03:19.060 DEBUG [27942]: Database connection successful -- 17:03:19.060 INFO [27942]: _SERVER found -- 17:03:19.060 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:19.060 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:19.060 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:19.060 INFO [27942]: QUERY_STRING = /start -- 17:03:19.060 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:19.091 INFO [27942]: COREGRADE is stopping... -- 17:03:19.091 DEBUG [27942]: Closing database connection -- 17:03:19.091 SQL [27942]: pgsql_close() -- 17:03:19.156 INFO [27942]: COREGRADE is starting... -- 17:03:19.156 INFO [27942]: Version from config: 1.0 -- 17:03:19.156 DEBUG [27942]: Connecting to database... -- 17:03:19.156 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:19.156 SQL [27942]: pgsql_db_connect() -- 17:03:19.160 DEBUG [27942]: Database connection successful -- 17:03:19.160 INFO [27942]: _SERVER found -- 17:03:19.160 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:19.160 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:19.160 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:19.160 INFO [27942]: QUERY_STRING = /start -- 17:03:19.160 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:19.190 INFO [27942]: COREGRADE is stopping... -- 17:03:19.190 DEBUG [27942]: Closing database connection -- 17:03:19.190 SQL [27942]: pgsql_close() -- 17:03:19.255 INFO [27942]: COREGRADE is starting... -- 17:03:19.256 INFO [27942]: Version from config: 1.0 -- 17:03:19.256 DEBUG [27942]: Connecting to database... -- 17:03:19.256 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:19.256 SQL [27942]: pgsql_db_connect() -- 17:03:19.260 DEBUG [27942]: Database connection successful -- 17:03:19.260 INFO [27942]: _SERVER found -- 17:03:19.260 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:19.260 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:19.260 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:19.260 INFO [27942]: QUERY_STRING = /start -- 17:03:19.260 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:19.290 INFO [27942]: COREGRADE is stopping... -- 17:03:19.290 DEBUG [27942]: Closing database connection -- 17:03:19.290 SQL [27942]: pgsql_close() -- 17:03:19.356 INFO [27942]: COREGRADE is starting... -- 17:03:19.356 INFO [27942]: Version from config: 1.0 -- 17:03:19.356 DEBUG [27942]: Connecting to database... -- 17:03:19.356 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:19.356 SQL [27942]: pgsql_db_connect() -- 17:03:19.360 DEBUG [27942]: Database connection successful -- 17:03:19.360 INFO [27942]: _SERVER found -- 17:03:19.360 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:19.360 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:19.360 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:19.360 INFO [27942]: QUERY_STRING = /start -- 17:03:19.360 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:19.390 INFO [27942]: COREGRADE is stopping... -- 17:03:19.390 DEBUG [27942]: Closing database connection -- 17:03:19.390 SQL [27942]: pgsql_close() -- 17:03:19.456 INFO [27942]: COREGRADE is starting... -- 17:03:19.456 INFO [27942]: Version from config: 1.0 -- 17:03:19.456 DEBUG [27942]: Connecting to database... -- 17:03:19.456 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:19.456 SQL [27942]: pgsql_db_connect() -- 17:03:19.460 DEBUG [27942]: Database connection successful -- 17:03:19.460 INFO [27942]: _SERVER found -- 17:03:19.460 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:19.460 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:19.460 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:19.460 INFO [27942]: QUERY_STRING = /start -- 17:03:19.460 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:19.490 INFO [27942]: COREGRADE is stopping... -- 17:03:19.490 DEBUG [27942]: Closing database connection -- 17:03:19.490 SQL [27942]: pgsql_close() -- 17:03:19.556 INFO [27942]: COREGRADE is starting... -- 17:03:19.556 INFO [27942]: Version from config: 1.0 -- 17:03:19.556 DEBUG [27942]: Connecting to database... -- 17:03:19.556 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:19.556 SQL [27942]: pgsql_db_connect() -- 17:03:19.560 DEBUG [27942]: Database connection successful -- 17:03:19.560 INFO [27942]: _SERVER found -- 17:03:19.560 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:19.560 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:19.560 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:19.560 INFO [27942]: QUERY_STRING = /start -- 17:03:19.560 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:19.591 INFO [27942]: COREGRADE is stopping... -- 17:03:19.591 DEBUG [27942]: Closing database connection -- 17:03:19.591 SQL [27942]: pgsql_close() -- 17:03:19.656 INFO [27942]: COREGRADE is starting... -- 17:03:19.657 INFO [27942]: Version from config: 1.0 -- 17:03:19.657 DEBUG [27942]: Connecting to database... -- 17:03:19.657 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:19.657 SQL [27942]: pgsql_db_connect() -- 17:03:19.661 DEBUG [27942]: Database connection successful -- 17:03:19.661 INFO [27942]: _SERVER found -- 17:03:19.661 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:19.661 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:19.661 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:19.661 INFO [27942]: QUERY_STRING = /start -- 17:03:19.661 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:19.691 INFO [27942]: COREGRADE is stopping... -- 17:03:19.691 DEBUG [27942]: Closing database connection -- 17:03:19.691 SQL [27942]: pgsql_close() -- 17:03:19.756 INFO [27942]: COREGRADE is starting... -- 17:03:19.756 INFO [27942]: Version from config: 1.0 -- 17:03:19.756 DEBUG [27942]: Connecting to database... -- 17:03:19.756 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:19.756 SQL [27942]: pgsql_db_connect() -- 17:03:19.760 DEBUG [27942]: Database connection successful -- 17:03:19.761 INFO [27942]: _SERVER found -- 17:03:19.761 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:19.761 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:19.761 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:19.761 INFO [27942]: QUERY_STRING = /start -- 17:03:19.761 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:19.791 INFO [27942]: COREGRADE is stopping... -- 17:03:19.791 DEBUG [27942]: Closing database connection -- 17:03:19.791 SQL [27942]: pgsql_close() -- 17:03:19.856 INFO [27942]: COREGRADE is starting... -- 17:03:19.856 INFO [27942]: Version from config: 1.0 -- 17:03:19.856 DEBUG [27942]: Connecting to database... -- 17:03:19.856 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:19.856 SQL [27942]: pgsql_db_connect() -- 17:03:19.861 DEBUG [27942]: Database connection successful -- 17:03:19.861 INFO [27942]: _SERVER found -- 17:03:19.861 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:19.861 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:19.861 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:19.861 INFO [27942]: QUERY_STRING = /start -- 17:03:19.861 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:19.891 INFO [27942]: COREGRADE is stopping... -- 17:03:19.891 DEBUG [27942]: Closing database connection -- 17:03:19.891 SQL [27942]: pgsql_close() -- 17:03:19.956 INFO [27942]: COREGRADE is starting... -- 17:03:19.956 INFO [27942]: Version from config: 1.0 -- 17:03:19.956 DEBUG [27942]: Connecting to database... -- 17:03:19.956 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:19.956 SQL [27942]: pgsql_db_connect() -- 17:03:19.960 DEBUG [27942]: Database connection successful -- 17:03:19.960 INFO [27942]: _SERVER found -- 17:03:19.960 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:19.960 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:19.960 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:19.960 INFO [27942]: QUERY_STRING = /start -- 17:03:19.960 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:19.990 INFO [27942]: COREGRADE is stopping... -- 17:03:19.990 DEBUG [27942]: Closing database connection -- 17:03:19.990 SQL [27942]: pgsql_close() -- 17:03:20.056 INFO [27942]: COREGRADE is starting... -- 17:03:20.056 INFO [27942]: Version from config: 1.0 -- 17:03:20.056 DEBUG [27942]: Connecting to database... -- 17:03:20.056 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:20.056 SQL [27942]: pgsql_db_connect() -- 17:03:20.060 DEBUG [27942]: Database connection successful -- 17:03:20.060 INFO [27942]: _SERVER found -- 17:03:20.060 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:20.060 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:20.060 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:20.060 INFO [27942]: QUERY_STRING = /start -- 17:03:20.060 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:20.091 INFO [27942]: COREGRADE is stopping... -- 17:03:20.091 DEBUG [27942]: Closing database connection -- 17:03:20.091 SQL [27942]: pgsql_close() -- 17:03:20.156 INFO [27942]: COREGRADE is starting... -- 17:03:20.156 INFO [27942]: Version from config: 1.0 -- 17:03:20.156 DEBUG [27942]: Connecting to database... -- 17:03:20.156 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:20.156 SQL [27942]: pgsql_db_connect() -- 17:03:20.160 DEBUG [27942]: Database connection successful -- 17:03:20.160 INFO [27942]: _SERVER found -- 17:03:20.160 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:20.160 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:20.160 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:20.160 INFO [27942]: QUERY_STRING = /start -- 17:03:20.160 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:20.191 INFO [27942]: COREGRADE is stopping... -- 17:03:20.191 DEBUG [27942]: Closing database connection -- 17:03:20.191 SQL [27942]: pgsql_close() -- 17:03:20.256 INFO [27942]: COREGRADE is starting... -- 17:03:20.256 INFO [27942]: Version from config: 1.0 -- 17:03:20.256 DEBUG [27942]: Connecting to database... -- 17:03:20.256 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:20.256 SQL [27942]: pgsql_db_connect() -- 17:03:20.260 DEBUG [27942]: Database connection successful -- 17:03:20.260 INFO [27942]: _SERVER found -- 17:03:20.260 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:20.260 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:20.260 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:20.260 INFO [27942]: QUERY_STRING = /start -- 17:03:20.260 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:20.290 INFO [27942]: COREGRADE is stopping... -- 17:03:20.290 DEBUG [27942]: Closing database connection -- 17:03:20.291 SQL [27942]: pgsql_close() -- 17:03:20.356 INFO [27942]: COREGRADE is starting... -- 17:03:20.356 INFO [27942]: Version from config: 1.0 -- 17:03:20.356 DEBUG [27942]: Connecting to database... -- 17:03:20.356 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:20.356 SQL [27942]: pgsql_db_connect() -- 17:03:20.360 DEBUG [27942]: Database connection successful -- 17:03:20.360 INFO [27942]: _SERVER found -- 17:03:20.360 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:20.360 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:20.360 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:20.360 INFO [27942]: QUERY_STRING = /start -- 17:03:20.360 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:20.390 INFO [27942]: COREGRADE is stopping... -- 17:03:20.390 DEBUG [27942]: Closing database connection -- 17:03:20.390 SQL [27942]: pgsql_close() -- 17:03:20.455 INFO [27942]: COREGRADE is starting... -- 17:03:20.455 INFO [27942]: Version from config: 1.0 -- 17:03:20.455 DEBUG [27942]: Connecting to database... -- 17:03:20.455 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:20.455 SQL [27942]: pgsql_db_connect() -- 17:03:20.459 DEBUG [27942]: Database connection successful -- 17:03:20.459 INFO [27942]: _SERVER found -- 17:03:20.459 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:20.459 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:20.459 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:20.459 INFO [27942]: QUERY_STRING = /start -- 17:03:20.459 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:20.490 INFO [27942]: COREGRADE is stopping... -- 17:03:20.490 DEBUG [27942]: Closing database connection -- 17:03:20.490 SQL [27942]: pgsql_close() -- 17:03:20.555 INFO [27942]: COREGRADE is starting... -- 17:03:20.555 INFO [27942]: Version from config: 1.0 -- 17:03:20.555 DEBUG [27942]: Connecting to database... -- 17:03:20.555 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:20.555 SQL [27942]: pgsql_db_connect() -- 17:03:20.559 DEBUG [27942]: Database connection successful -- 17:03:20.559 INFO [27942]: _SERVER found -- 17:03:20.559 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:20.559 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:20.559 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:20.559 INFO [27942]: QUERY_STRING = /start -- 17:03:20.559 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:20.589 INFO [27942]: COREGRADE is stopping... -- 17:03:20.589 DEBUG [27942]: Closing database connection -- 17:03:20.589 SQL [27942]: pgsql_close() -- 17:03:20.654 INFO [27942]: COREGRADE is starting... -- 17:03:20.655 INFO [27942]: Version from config: 1.0 -- 17:03:20.655 DEBUG [27942]: Connecting to database... -- 17:03:20.655 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:20.655 SQL [27942]: pgsql_db_connect() -- 17:03:20.659 DEBUG [27942]: Database connection successful -- 17:03:20.659 INFO [27942]: _SERVER found -- 17:03:20.659 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:20.659 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:20.659 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:20.659 INFO [27942]: QUERY_STRING = /start -- 17:03:20.659 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:20.689 INFO [27942]: COREGRADE is stopping... -- 17:03:20.689 DEBUG [27942]: Closing database connection -- 17:03:20.689 SQL [27942]: pgsql_close() -- 17:03:20.754 INFO [27942]: COREGRADE is starting... -- 17:03:20.754 INFO [27942]: Version from config: 1.0 -- 17:03:20.754 DEBUG [27942]: Connecting to database... -- 17:03:20.754 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:20.754 SQL [27942]: pgsql_db_connect() -- 17:03:20.758 DEBUG [27942]: Database connection successful -- 17:03:20.758 INFO [27942]: _SERVER found -- 17:03:20.758 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:03:20.758 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:20.758 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:20.758 INFO [27942]: QUERY_STRING = /start -- 17:03:20.758 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:20.788 INFO [27942]: COREGRADE is stopping... -- 17:03:20.788 DEBUG [27942]: Closing database connection -- 17:03:20.788 SQL [27942]: pgsql_close() -- 17:03:27.228 INFO [27585]: COREGRADE is starting... -- 17:03:27.228 INFO [27585]: Version from config: 1.0 -- 17:03:27.228 DEBUG [27585]: Connecting to database... -- 17:03:27.228 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:27.228 SQL [27585]: pgsql_db_connect() -- 17:03:27.232 DEBUG [27585]: Database connection successful -- 17:03:27.232 INFO [27585]: _SERVER found -- 17:03:27.232 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 17:03:27.232 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:27.232 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:27.232 INFO [27585]: QUERY_STRING = /logout -- 17:03:27.232 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:27.263 INFO [27585]: COREGRADE is stopping... -- 17:03:27.263 DEBUG [27585]: Closing database connection -- 17:03:27.263 SQL [27585]: pgsql_close() -- 17:03:27.346 INFO [27585]: COREGRADE is starting... -- 17:03:27.346 INFO [27585]: Version from config: 1.0 -- 17:03:27.346 DEBUG [27585]: Connecting to database... -- 17:03:27.346 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:27.346 SQL [27585]: pgsql_db_connect() -- 17:03:27.350 DEBUG [27585]: Database connection successful -- 17:03:27.350 INFO [27585]: _SERVER found -- 17:03:27.350 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 17:03:27.350 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:27.350 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:27.350 INFO [27585]: QUERY_STRING = /start -- 17:03:27.350 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:27.380 INFO [27585]: COREGRADE is stopping... -- 17:03:27.380 DEBUG [27585]: Closing database connection -- 17:03:27.380 SQL [27585]: pgsql_close() -- 17:03:27.462 INFO [27585]: COREGRADE is starting... -- 17:03:27.463 INFO [27585]: Version from config: 1.0 -- 17:03:27.463 DEBUG [27585]: Connecting to database... -- 17:03:27.463 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:27.463 SQL [27585]: pgsql_db_connect() -- 17:03:27.467 DEBUG [27585]: Database connection successful -- 17:03:27.467 INFO [27585]: _SERVER found -- 17:03:27.467 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 17:03:27.467 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:27.467 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:27.467 INFO [27585]: QUERY_STRING = /start -- 17:03:27.467 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:27.496 INFO [27585]: COREGRADE is stopping... -- 17:03:27.496 DEBUG [27585]: Closing database connection -- 17:03:27.496 SQL [27585]: pgsql_close() -- 17:03:27.579 INFO [27585]: COREGRADE is starting... -- 17:03:27.579 INFO [27585]: Version from config: 1.0 -- 17:03:27.579 DEBUG [27585]: Connecting to database... -- 17:03:27.579 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:27.579 SQL [27585]: pgsql_db_connect() -- 17:03:27.584 DEBUG [27585]: Database connection successful -- 17:03:27.584 INFO [27585]: _SERVER found -- 17:03:27.584 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 17:03:27.584 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:27.584 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:27.584 INFO [27585]: QUERY_STRING = /start -- 17:03:27.584 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:27.613 INFO [27585]: COREGRADE is stopping... -- 17:03:27.613 DEBUG [27585]: Closing database connection -- 17:03:27.613 SQL [27585]: pgsql_close() -- 17:03:27.686 INFO [27585]: COREGRADE is starting... -- 17:03:27.687 INFO [27585]: Version from config: 1.0 -- 17:03:27.687 DEBUG [27585]: Connecting to database... -- 17:03:27.687 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:27.687 SQL [27585]: pgsql_db_connect() -- 17:03:27.692 DEBUG [27585]: Database connection successful -- 17:03:27.692 INFO [27585]: _SERVER found -- 17:03:27.692 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 17:03:27.692 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:27.692 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:27.692 INFO [27585]: QUERY_STRING = /start -- 17:03:27.692 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:27.722 INFO [27585]: COREGRADE is stopping... -- 17:03:27.722 DEBUG [27585]: Closing database connection -- 17:03:27.722 SQL [27585]: pgsql_close() -- 17:03:27.794 INFO [27585]: COREGRADE is starting... -- 17:03:27.794 INFO [27585]: Version from config: 1.0 -- 17:03:27.794 DEBUG [27585]: Connecting to database... -- 17:03:27.794 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:27.794 SQL [27585]: pgsql_db_connect() -- 17:03:27.798 DEBUG [27585]: Database connection successful -- 17:03:27.798 INFO [27585]: _SERVER found -- 17:03:27.798 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 17:03:27.798 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:27.798 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:27.798 INFO [27585]: QUERY_STRING = /start -- 17:03:27.798 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:27.827 INFO [27585]: COREGRADE is stopping... -- 17:03:27.827 DEBUG [27585]: Closing database connection -- 17:03:27.827 SQL [27585]: pgsql_close() -- 17:03:27.902 INFO [27585]: COREGRADE is starting... -- 17:03:27.902 INFO [27585]: Version from config: 1.0 -- 17:03:27.902 DEBUG [27585]: Connecting to database... -- 17:03:27.902 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:27.902 SQL [27585]: pgsql_db_connect() -- 17:03:27.906 DEBUG [27585]: Database connection successful -- 17:03:27.907 INFO [27585]: _SERVER found -- 17:03:27.907 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 17:03:27.907 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:27.907 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:27.907 INFO [27585]: QUERY_STRING = /start -- 17:03:27.907 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:27.936 INFO [27585]: COREGRADE is stopping... -- 17:03:27.936 DEBUG [27585]: Closing database connection -- 17:03:27.936 SQL [27585]: pgsql_close() -- 17:03:28.008 INFO [27585]: COREGRADE is starting... -- 17:03:28.009 INFO [27585]: Version from config: 1.0 -- 17:03:28.009 DEBUG [27585]: Connecting to database... -- 17:03:28.009 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:28.009 SQL [27585]: pgsql_db_connect() -- 17:03:28.013 DEBUG [27585]: Database connection successful -- 17:03:28.013 INFO [27585]: _SERVER found -- 17:03:28.013 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 17:03:28.013 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:28.013 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:28.013 INFO [27585]: QUERY_STRING = /start -- 17:03:28.013 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:28.042 INFO [27585]: COREGRADE is stopping... -- 17:03:28.042 DEBUG [27585]: Closing database connection -- 17:03:28.042 SQL [27585]: pgsql_close() -- 17:03:28.114 INFO [27585]: COREGRADE is starting... -- 17:03:28.114 INFO [27585]: Version from config: 1.0 -- 17:03:28.114 DEBUG [27585]: Connecting to database... -- 17:03:28.114 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:28.115 SQL [27585]: pgsql_db_connect() -- 17:03:28.119 DEBUG [27585]: Database connection successful -- 17:03:28.119 INFO [27585]: _SERVER found -- 17:03:28.119 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 17:03:28.119 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:28.119 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:28.119 INFO [27585]: QUERY_STRING = /start -- 17:03:28.119 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:28.148 INFO [27585]: COREGRADE is stopping... -- 17:03:28.148 DEBUG [27585]: Closing database connection -- 17:03:28.148 SQL [27585]: pgsql_close() -- 17:03:28.220 INFO [27585]: COREGRADE is starting... -- 17:03:28.220 INFO [27585]: Version from config: 1.0 -- 17:03:28.220 DEBUG [27585]: Connecting to database... -- 17:03:28.220 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:28.220 SQL [27585]: pgsql_db_connect() -- 17:03:28.224 DEBUG [27585]: Database connection successful -- 17:03:28.224 INFO [27585]: _SERVER found -- 17:03:28.224 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 17:03:28.224 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:28.224 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:28.224 INFO [27585]: QUERY_STRING = /start -- 17:03:28.224 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:28.253 INFO [27585]: COREGRADE is stopping... -- 17:03:28.253 DEBUG [27585]: Closing database connection -- 17:03:28.253 SQL [27585]: pgsql_close() -- 17:03:28.325 INFO [27585]: COREGRADE is starting... -- 17:03:28.326 INFO [27585]: Version from config: 1.0 -- 17:03:28.326 DEBUG [27585]: Connecting to database... -- 17:03:28.326 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:28.326 SQL [27585]: pgsql_db_connect() -- 17:03:28.330 DEBUG [27585]: Database connection successful -- 17:03:28.330 INFO [27585]: _SERVER found -- 17:03:28.330 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 17:03:28.330 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:28.330 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:28.330 INFO [27585]: QUERY_STRING = /start -- 17:03:28.330 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:28.359 INFO [27585]: COREGRADE is stopping... -- 17:03:28.359 DEBUG [27585]: Closing database connection -- 17:03:28.359 SQL [27585]: pgsql_close() -- 17:03:28.431 INFO [27585]: COREGRADE is starting... -- 17:03:28.431 INFO [27585]: Version from config: 1.0 -- 17:03:28.431 DEBUG [27585]: Connecting to database... -- 17:03:28.431 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:28.431 SQL [27585]: pgsql_db_connect() -- 17:03:28.435 DEBUG [27585]: Database connection successful -- 17:03:28.435 INFO [27585]: _SERVER found -- 17:03:28.435 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 17:03:28.435 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:28.435 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:28.435 INFO [27585]: QUERY_STRING = /start -- 17:03:28.435 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:28.465 INFO [27585]: COREGRADE is stopping... -- 17:03:28.465 DEBUG [27585]: Closing database connection -- 17:03:28.465 SQL [27585]: pgsql_close() -- 17:03:28.537 INFO [27585]: COREGRADE is starting... -- 17:03:28.537 INFO [27585]: Version from config: 1.0 -- 17:03:28.537 DEBUG [27585]: Connecting to database... -- 17:03:28.537 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:28.537 SQL [27585]: pgsql_db_connect() -- 17:03:28.542 DEBUG [27585]: Database connection successful -- 17:03:28.542 INFO [27585]: _SERVER found -- 17:03:28.542 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 17:03:28.542 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:28.542 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:28.542 INFO [27585]: QUERY_STRING = /start -- 17:03:28.542 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:28.571 INFO [27585]: COREGRADE is stopping... -- 17:03:28.571 DEBUG [27585]: Closing database connection -- 17:03:28.571 SQL [27585]: pgsql_close() -- 17:03:28.643 INFO [27585]: COREGRADE is starting... -- 17:03:28.643 INFO [27585]: Version from config: 1.0 -- 17:03:28.643 DEBUG [27585]: Connecting to database... -- 17:03:28.643 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:28.643 SQL [27585]: pgsql_db_connect() -- 17:03:28.648 DEBUG [27585]: Database connection successful -- 17:03:28.648 INFO [27585]: _SERVER found -- 17:03:28.648 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 17:03:28.648 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:28.648 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:28.648 INFO [27585]: QUERY_STRING = /start -- 17:03:28.648 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:28.677 INFO [27585]: COREGRADE is stopping... -- 17:03:28.677 DEBUG [27585]: Closing database connection -- 17:03:28.677 SQL [27585]: pgsql_close() -- 17:03:28.749 INFO [27585]: COREGRADE is starting... -- 17:03:28.749 INFO [27585]: Version from config: 1.0 -- 17:03:28.749 DEBUG [27585]: Connecting to database... -- 17:03:28.749 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:28.749 SQL [27585]: pgsql_db_connect() -- 17:03:28.753 DEBUG [27585]: Database connection successful -- 17:03:28.753 INFO [27585]: _SERVER found -- 17:03:28.753 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 17:03:28.753 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:28.753 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:28.753 INFO [27585]: QUERY_STRING = /start -- 17:03:28.753 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:28.783 INFO [27585]: COREGRADE is stopping... -- 17:03:28.783 DEBUG [27585]: Closing database connection -- 17:03:28.783 SQL [27585]: pgsql_close() -- 17:03:28.854 INFO [27585]: COREGRADE is starting... -- 17:03:28.855 INFO [27585]: Version from config: 1.0 -- 17:03:28.855 DEBUG [27585]: Connecting to database... -- 17:03:28.855 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:28.855 SQL [27585]: pgsql_db_connect() -- 17:03:28.859 DEBUG [27585]: Database connection successful -- 17:03:28.859 INFO [27585]: _SERVER found -- 17:03:28.859 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 17:03:28.859 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:28.859 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:28.859 INFO [27585]: QUERY_STRING = /start -- 17:03:28.859 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:28.888 INFO [27585]: COREGRADE is stopping... -- 17:03:28.888 DEBUG [27585]: Closing database connection -- 17:03:28.888 SQL [27585]: pgsql_close() -- 17:03:28.960 INFO [27585]: COREGRADE is starting... -- 17:03:28.960 INFO [27585]: Version from config: 1.0 -- 17:03:28.960 DEBUG [27585]: Connecting to database... -- 17:03:28.960 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:28.960 SQL [27585]: pgsql_db_connect() -- 17:03:28.964 DEBUG [27585]: Database connection successful -- 17:03:28.964 INFO [27585]: _SERVER found -- 17:03:28.964 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 17:03:28.964 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:28.964 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:28.964 INFO [27585]: QUERY_STRING = /start -- 17:03:28.964 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:28.994 INFO [27585]: COREGRADE is stopping... -- 17:03:28.994 DEBUG [27585]: Closing database connection -- 17:03:28.994 SQL [27585]: pgsql_close() -- 17:03:29.066 INFO [27585]: COREGRADE is starting... -- 17:03:29.066 INFO [27585]: Version from config: 1.0 -- 17:03:29.066 DEBUG [27585]: Connecting to database... -- 17:03:29.066 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:29.066 SQL [27585]: pgsql_db_connect() -- 17:03:29.070 DEBUG [27585]: Database connection successful -- 17:03:29.070 INFO [27585]: _SERVER found -- 17:03:29.070 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 17:03:29.070 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:29.070 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:29.070 INFO [27585]: QUERY_STRING = /start -- 17:03:29.070 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:29.100 INFO [27585]: COREGRADE is stopping... -- 17:03:29.100 DEBUG [27585]: Closing database connection -- 17:03:29.100 SQL [27585]: pgsql_close() -- 17:03:29.172 INFO [27585]: COREGRADE is starting... -- 17:03:29.172 INFO [27585]: Version from config: 1.0 -- 17:03:29.172 DEBUG [27585]: Connecting to database... -- 17:03:29.172 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:29.172 SQL [27585]: pgsql_db_connect() -- 17:03:29.176 DEBUG [27585]: Database connection successful -- 17:03:29.176 INFO [27585]: _SERVER found -- 17:03:29.176 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 17:03:29.176 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:29.176 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:29.176 INFO [27585]: QUERY_STRING = /start -- 17:03:29.176 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:29.206 INFO [27585]: COREGRADE is stopping... -- 17:03:29.206 DEBUG [27585]: Closing database connection -- 17:03:29.206 SQL [27585]: pgsql_close() -- 17:03:29.278 INFO [27585]: COREGRADE is starting... -- 17:03:29.278 INFO [27585]: Version from config: 1.0 -- 17:03:29.278 DEBUG [27585]: Connecting to database... -- 17:03:29.278 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:29.278 SQL [27585]: pgsql_db_connect() -- 17:03:29.283 DEBUG [27585]: Database connection successful -- 17:03:29.283 INFO [27585]: _SERVER found -- 17:03:29.283 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 17:03:29.283 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:29.283 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:29.283 INFO [27585]: QUERY_STRING = /start -- 17:03:29.283 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:29.312 INFO [27585]: COREGRADE is stopping... -- 17:03:29.312 DEBUG [27585]: Closing database connection -- 17:03:29.312 SQL [27585]: pgsql_close() -- 17:03:59.484 INFO [27472]: COREGRADE is starting... -- 17:03:59.484 INFO [27472]: Version from config: 1.0 -- 17:03:59.484 DEBUG [27472]: Connecting to database... -- 17:03:59.484 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:59.484 SQL [27472]: pgsql_db_connect() -- 17:03:59.488 DEBUG [27472]: Database connection successful -- 17:03:59.488 INFO [27472]: _SERVER found -- 17:03:59.488 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:03:59.488 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:59.488 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:59.488 INFO [27472]: QUERY_STRING = /start -- 17:03:59.488 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:59.519 INFO [27472]: COREGRADE is stopping... -- 17:03:59.520 DEBUG [27472]: Closing database connection -- 17:03:59.520 SQL [27472]: pgsql_close() -- 17:03:59.595 INFO [27472]: COREGRADE is starting... -- 17:03:59.595 INFO [27472]: Version from config: 1.0 -- 17:03:59.595 DEBUG [27472]: Connecting to database... -- 17:03:59.595 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:59.595 SQL [27472]: pgsql_db_connect() -- 17:03:59.600 DEBUG [27472]: Database connection successful -- 17:03:59.600 INFO [27472]: _SERVER found -- 17:03:59.600 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:03:59.600 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:59.600 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:59.600 INFO [27472]: QUERY_STRING = /start -- 17:03:59.600 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:59.629 INFO [27472]: COREGRADE is stopping... -- 17:03:59.629 DEBUG [27472]: Closing database connection -- 17:03:59.629 SQL [27472]: pgsql_close() -- 17:03:59.705 INFO [27472]: COREGRADE is starting... -- 17:03:59.705 INFO [27472]: Version from config: 1.0 -- 17:03:59.705 DEBUG [27472]: Connecting to database... -- 17:03:59.705 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:59.705 SQL [27472]: pgsql_db_connect() -- 17:03:59.709 DEBUG [27472]: Database connection successful -- 17:03:59.709 INFO [27472]: _SERVER found -- 17:03:59.709 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:03:59.709 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:59.709 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:59.709 INFO [27472]: QUERY_STRING = /start -- 17:03:59.709 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:59.739 INFO [27472]: COREGRADE is stopping... -- 17:03:59.739 DEBUG [27472]: Closing database connection -- 17:03:59.739 SQL [27472]: pgsql_close() -- 17:03:59.814 INFO [27472]: COREGRADE is starting... -- 17:03:59.814 INFO [27472]: Version from config: 1.0 -- 17:03:59.814 DEBUG [27472]: Connecting to database... -- 17:03:59.814 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:59.814 SQL [27472]: pgsql_db_connect() -- 17:03:59.818 DEBUG [27472]: Database connection successful -- 17:03:59.818 INFO [27472]: _SERVER found -- 17:03:59.818 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:03:59.818 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:59.818 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:59.818 INFO [27472]: QUERY_STRING = /start -- 17:03:59.818 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:59.848 INFO [27472]: COREGRADE is stopping... -- 17:03:59.848 DEBUG [27472]: Closing database connection -- 17:03:59.848 SQL [27472]: pgsql_close() -- 17:03:59.914 INFO [27472]: COREGRADE is starting... -- 17:03:59.915 INFO [27472]: Version from config: 1.0 -- 17:03:59.915 DEBUG [27472]: Connecting to database... -- 17:03:59.915 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:03:59.915 SQL [27472]: pgsql_db_connect() -- 17:03:59.919 DEBUG [27472]: Database connection successful -- 17:03:59.919 INFO [27472]: _SERVER found -- 17:03:59.919 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:03:59.919 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:03:59.919 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:03:59.919 INFO [27472]: QUERY_STRING = /start -- 17:03:59.919 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:03:59.948 INFO [27472]: COREGRADE is stopping... -- 17:03:59.948 DEBUG [27472]: Closing database connection -- 17:03:59.948 SQL [27472]: pgsql_close() -- 17:04:00.014 INFO [27472]: COREGRADE is starting... -- 17:04:00.014 INFO [27472]: Version from config: 1.0 -- 17:04:00.014 DEBUG [27472]: Connecting to database... -- 17:04:00.014 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:00.014 SQL [27472]: pgsql_db_connect() -- 17:04:00.018 DEBUG [27472]: Database connection successful -- 17:04:00.018 INFO [27472]: _SERVER found -- 17:04:00.018 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:04:00.018 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:00.018 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:00.018 INFO [27472]: QUERY_STRING = /start -- 17:04:00.018 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:00.048 INFO [27472]: COREGRADE is stopping... -- 17:04:00.048 DEBUG [27472]: Closing database connection -- 17:04:00.048 SQL [27472]: pgsql_close() -- 17:04:00.113 INFO [27472]: COREGRADE is starting... -- 17:04:00.114 INFO [27472]: Version from config: 1.0 -- 17:04:00.114 DEBUG [27472]: Connecting to database... -- 17:04:00.114 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:00.114 SQL [27472]: pgsql_db_connect() -- 17:04:00.118 DEBUG [27472]: Database connection successful -- 17:04:00.118 INFO [27472]: _SERVER found -- 17:04:00.118 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:04:00.118 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:00.118 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:00.118 INFO [27472]: QUERY_STRING = /start -- 17:04:00.118 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:00.147 INFO [27472]: COREGRADE is stopping... -- 17:04:00.147 DEBUG [27472]: Closing database connection -- 17:04:00.147 SQL [27472]: pgsql_close() -- 17:04:00.212 INFO [27472]: COREGRADE is starting... -- 17:04:00.213 INFO [27472]: Version from config: 1.0 -- 17:04:00.213 DEBUG [27472]: Connecting to database... -- 17:04:00.213 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:00.213 SQL [27472]: pgsql_db_connect() -- 17:04:00.217 DEBUG [27472]: Database connection successful -- 17:04:00.217 INFO [27472]: _SERVER found -- 17:04:00.217 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:04:00.217 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:00.217 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:00.217 INFO [27472]: QUERY_STRING = /start -- 17:04:00.217 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:00.246 INFO [27472]: COREGRADE is stopping... -- 17:04:00.246 DEBUG [27472]: Closing database connection -- 17:04:00.246 SQL [27472]: pgsql_close() -- 17:04:00.312 INFO [27472]: COREGRADE is starting... -- 17:04:00.312 INFO [27472]: Version from config: 1.0 -- 17:04:00.312 DEBUG [27472]: Connecting to database... -- 17:04:00.312 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:00.312 SQL [27472]: pgsql_db_connect() -- 17:04:00.316 DEBUG [27472]: Database connection successful -- 17:04:00.316 INFO [27472]: _SERVER found -- 17:04:00.316 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:04:00.316 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:00.316 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:00.316 INFO [27472]: QUERY_STRING = /start -- 17:04:00.316 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:00.346 INFO [27472]: COREGRADE is stopping... -- 17:04:00.346 DEBUG [27472]: Closing database connection -- 17:04:00.346 SQL [27472]: pgsql_close() -- 17:04:00.411 INFO [27472]: COREGRADE is starting... -- 17:04:00.411 INFO [27472]: Version from config: 1.0 -- 17:04:00.411 DEBUG [27472]: Connecting to database... -- 17:04:00.411 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:00.411 SQL [27472]: pgsql_db_connect() -- 17:04:00.415 DEBUG [27472]: Database connection successful -- 17:04:00.415 INFO [27472]: _SERVER found -- 17:04:00.415 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:04:00.415 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:00.415 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:00.415 INFO [27472]: QUERY_STRING = /start -- 17:04:00.415 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:00.445 INFO [27472]: COREGRADE is stopping... -- 17:04:00.445 DEBUG [27472]: Closing database connection -- 17:04:00.445 SQL [27472]: pgsql_close() -- 17:04:00.510 INFO [27472]: COREGRADE is starting... -- 17:04:00.511 INFO [27472]: Version from config: 1.0 -- 17:04:00.511 DEBUG [27472]: Connecting to database... -- 17:04:00.511 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:00.511 SQL [27472]: pgsql_db_connect() -- 17:04:00.515 DEBUG [27472]: Database connection successful -- 17:04:00.515 INFO [27472]: _SERVER found -- 17:04:00.515 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:04:00.515 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:00.515 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:00.515 INFO [27472]: QUERY_STRING = /start -- 17:04:00.515 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:00.544 INFO [27472]: COREGRADE is stopping... -- 17:04:00.545 DEBUG [27472]: Closing database connection -- 17:04:00.545 SQL [27472]: pgsql_close() -- 17:04:00.610 INFO [27472]: COREGRADE is starting... -- 17:04:00.610 INFO [27472]: Version from config: 1.0 -- 17:04:00.610 DEBUG [27472]: Connecting to database... -- 17:04:00.610 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:00.610 SQL [27472]: pgsql_db_connect() -- 17:04:00.614 DEBUG [27472]: Database connection successful -- 17:04:00.614 INFO [27472]: _SERVER found -- 17:04:00.614 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:04:00.614 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:00.614 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:00.614 INFO [27472]: QUERY_STRING = /start -- 17:04:00.614 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:00.644 INFO [27472]: COREGRADE is stopping... -- 17:04:00.644 DEBUG [27472]: Closing database connection -- 17:04:00.644 SQL [27472]: pgsql_close() -- 17:04:00.709 INFO [27472]: COREGRADE is starting... -- 17:04:00.709 INFO [27472]: Version from config: 1.0 -- 17:04:00.709 DEBUG [27472]: Connecting to database... -- 17:04:00.709 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:00.709 SQL [27472]: pgsql_db_connect() -- 17:04:00.713 DEBUG [27472]: Database connection successful -- 17:04:00.713 INFO [27472]: _SERVER found -- 17:04:00.713 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:04:00.713 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:00.713 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:00.713 INFO [27472]: QUERY_STRING = /start -- 17:04:00.713 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:00.743 INFO [27472]: COREGRADE is stopping... -- 17:04:00.743 DEBUG [27472]: Closing database connection -- 17:04:00.743 SQL [27472]: pgsql_close() -- 17:04:00.808 INFO [27472]: COREGRADE is starting... -- 17:04:00.808 INFO [27472]: Version from config: 1.0 -- 17:04:00.808 DEBUG [27472]: Connecting to database... -- 17:04:00.808 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:00.808 SQL [27472]: pgsql_db_connect() -- 17:04:00.812 DEBUG [27472]: Database connection successful -- 17:04:00.812 INFO [27472]: _SERVER found -- 17:04:00.812 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:04:00.812 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:00.812 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:00.812 INFO [27472]: QUERY_STRING = /start -- 17:04:00.812 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:00.842 INFO [27472]: COREGRADE is stopping... -- 17:04:00.842 DEBUG [27472]: Closing database connection -- 17:04:00.842 SQL [27472]: pgsql_close() -- 17:04:00.907 INFO [27472]: COREGRADE is starting... -- 17:04:00.907 INFO [27472]: Version from config: 1.0 -- 17:04:00.907 DEBUG [27472]: Connecting to database... -- 17:04:00.907 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:00.907 SQL [27472]: pgsql_db_connect() -- 17:04:00.911 DEBUG [27472]: Database connection successful -- 17:04:00.911 INFO [27472]: _SERVER found -- 17:04:00.911 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:04:00.911 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:00.911 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:00.911 INFO [27472]: QUERY_STRING = /start -- 17:04:00.911 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:00.941 INFO [27472]: COREGRADE is stopping... -- 17:04:00.941 DEBUG [27472]: Closing database connection -- 17:04:00.941 SQL [27472]: pgsql_close() -- 17:04:01.006 INFO [27472]: COREGRADE is starting... -- 17:04:01.006 INFO [27472]: Version from config: 1.0 -- 17:04:01.006 DEBUG [27472]: Connecting to database... -- 17:04:01.006 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:01.006 SQL [27472]: pgsql_db_connect() -- 17:04:01.010 DEBUG [27472]: Database connection successful -- 17:04:01.010 INFO [27472]: _SERVER found -- 17:04:01.010 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:04:01.010 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:01.010 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:01.010 INFO [27472]: QUERY_STRING = /start -- 17:04:01.010 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:01.040 INFO [27472]: COREGRADE is stopping... -- 17:04:01.040 DEBUG [27472]: Closing database connection -- 17:04:01.040 SQL [27472]: pgsql_close() -- 17:04:01.105 INFO [27472]: COREGRADE is starting... -- 17:04:01.105 INFO [27472]: Version from config: 1.0 -- 17:04:01.105 DEBUG [27472]: Connecting to database... -- 17:04:01.105 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:01.105 SQL [27472]: pgsql_db_connect() -- 17:04:01.109 DEBUG [27472]: Database connection successful -- 17:04:01.109 INFO [27472]: _SERVER found -- 17:04:01.109 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:04:01.109 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:01.109 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:01.109 INFO [27472]: QUERY_STRING = /start -- 17:04:01.109 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:01.139 INFO [27472]: COREGRADE is stopping... -- 17:04:01.139 DEBUG [27472]: Closing database connection -- 17:04:01.139 SQL [27472]: pgsql_close() -- 17:04:01.204 INFO [27472]: COREGRADE is starting... -- 17:04:01.204 INFO [27472]: Version from config: 1.0 -- 17:04:01.204 DEBUG [27472]: Connecting to database... -- 17:04:01.204 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:01.204 SQL [27472]: pgsql_db_connect() -- 17:04:01.208 DEBUG [27472]: Database connection successful -- 17:04:01.208 INFO [27472]: _SERVER found -- 17:04:01.208 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:04:01.208 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:01.208 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:01.208 INFO [27472]: QUERY_STRING = /start -- 17:04:01.208 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:01.238 INFO [27472]: COREGRADE is stopping... -- 17:04:01.238 DEBUG [27472]: Closing database connection -- 17:04:01.238 SQL [27472]: pgsql_close() -- 17:04:01.303 INFO [27472]: COREGRADE is starting... -- 17:04:01.303 INFO [27472]: Version from config: 1.0 -- 17:04:01.303 DEBUG [27472]: Connecting to database... -- 17:04:01.303 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:01.303 SQL [27472]: pgsql_db_connect() -- 17:04:01.308 DEBUG [27472]: Database connection successful -- 17:04:01.308 INFO [27472]: _SERVER found -- 17:04:01.308 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:04:01.308 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:01.308 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:01.308 INFO [27472]: QUERY_STRING = /start -- 17:04:01.308 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:01.337 INFO [27472]: COREGRADE is stopping... -- 17:04:01.337 DEBUG [27472]: Closing database connection -- 17:04:01.337 SQL [27472]: pgsql_close() -- 17:04:01.403 INFO [27472]: COREGRADE is starting... -- 17:04:01.403 INFO [27472]: Version from config: 1.0 -- 17:04:01.403 DEBUG [27472]: Connecting to database... -- 17:04:01.403 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:01.403 SQL [27472]: pgsql_db_connect() -- 17:04:01.407 DEBUG [27472]: Database connection successful -- 17:04:01.407 INFO [27472]: _SERVER found -- 17:04:01.407 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:04:01.407 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:01.407 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:01.407 INFO [27472]: QUERY_STRING = /start -- 17:04:01.407 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:01.437 INFO [27472]: COREGRADE is stopping... -- 17:04:01.437 DEBUG [27472]: Closing database connection -- 17:04:01.437 SQL [27472]: pgsql_close() -- 17:04:08.019 INFO [27471]: COREGRADE is starting... -- 17:04:08.020 INFO [27471]: Version from config: 1.0 -- 17:04:08.020 DEBUG [27471]: Connecting to database... -- 17:04:08.020 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:08.020 SQL [27471]: pgsql_db_connect() -- 17:04:08.024 DEBUG [27471]: Database connection successful -- 17:04:08.024 INFO [27471]: _SERVER found -- 17:04:08.024 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 17:04:08.024 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:08.024 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:08.024 INFO [27471]: QUERY_STRING = /start -- 17:04:08.024 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:08.058 INFO [27471]: COREGRADE is stopping... -- 17:04:08.058 DEBUG [27471]: Closing database connection -- 17:04:08.058 SQL [27471]: pgsql_close() -- 17:04:08.182 INFO [27523]: COREGRADE is starting... -- 17:04:08.183 INFO [27523]: Version from config: 1.0 -- 17:04:08.183 DEBUG [27523]: Connecting to database... -- 17:04:08.183 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:08.183 SQL [27523]: pgsql_db_connect() -- 17:04:08.187 DEBUG [27523]: Database connection successful -- 17:04:08.187 INFO [27523]: _SERVER found -- 17:04:08.187 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 17:04:08.187 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:08.187 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:08.187 INFO [27523]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 17:04:08.187 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:08.198 INFO [27523]: COREGRADE is stopping... -- 17:04:08.198 DEBUG [27523]: Closing database connection -- 17:04:08.198 SQL [27523]: pgsql_close() -- 17:04:08.252 INFO [27474]: COREGRADE is starting... -- 17:04:08.252 INFO [27474]: Version from config: 1.0 -- 17:04:08.252 DEBUG [27474]: Connecting to database... -- 17:04:08.252 DEBUG [27474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:08.252 SQL [27474]: pgsql_db_connect() -- 17:04:08.256 INFO [27523]: COREGRADE is starting... -- 17:04:08.256 INFO [27523]: Version from config: 1.0 -- 17:04:08.256 DEBUG [27523]: Connecting to database... -- 17:04:08.256 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:08.256 SQL [27523]: pgsql_db_connect() -- 17:04:08.261 INFO [27584]: COREGRADE is starting... -- 17:04:08.262 INFO [27584]: Version from config: 1.0 -- 17:04:08.262 DEBUG [27584]: Connecting to database... -- 17:04:08.262 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:08.262 SQL [27584]: pgsql_db_connect() -- 17:04:08.267 INFO [27470]: COREGRADE is starting... -- 17:04:08.267 INFO [27470]: Version from config: 1.0 -- 17:04:08.267 DEBUG [27470]: Connecting to database... -- 17:04:08.267 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:08.267 SQL [27470]: pgsql_db_connect() -- 17:04:08.256 DEBUG [27474]: Database connection successful -- 17:04:08.256 INFO [27474]: _SERVER found -- 17:04:08.256 INFO [27474]: REMOTE_ADDR = 10.0.0.15 -- 17:04:08.256 INFO [27474]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:08.256 INFO [27474]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:08.256 INFO [27474]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 17:04:08.256 INFO [27474]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:08.269 INFO [27474]: COREGRADE is stopping... -- 17:04:08.269 INFO [27471]: COREGRADE is starting... -- 17:04:08.269 DEBUG [27474]: Closing database connection -- 17:04:08.269 SQL [27474]: pgsql_close() -- 17:04:08.269 INFO [27471]: Version from config: 1.0 -- 17:04:08.269 DEBUG [27471]: Connecting to database... -- 17:04:08.269 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:08.269 SQL [27471]: pgsql_db_connect() -- 17:04:08.260 DEBUG [27523]: Database connection successful -- 17:04:08.260 INFO [27523]: _SERVER found -- 17:04:08.260 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 17:04:08.260 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:08.260 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:08.260 INFO [27523]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 17:04:08.260 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:08.272 INFO [27523]: COREGRADE is stopping... -- 17:04:08.272 DEBUG [27523]: Closing database connection -- 17:04:08.272 SQL [27523]: pgsql_close() -- 17:04:08.276 INFO [27523]: COREGRADE is starting... -- 17:04:08.276 INFO [27523]: Version from config: 1.0 -- 17:04:08.276 DEBUG [27523]: Connecting to database... -- 17:04:08.276 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:08.276 SQL [27523]: pgsql_db_connect() -- 17:04:08.266 DEBUG [27584]: Database connection successful -- 17:04:08.266 INFO [27584]: _SERVER found -- 17:04:08.266 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 17:04:08.266 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:08.266 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:08.266 INFO [27584]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 17:04:08.266 INFO [27584]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:08.278 INFO [27584]: COREGRADE is stopping... -- 17:04:08.278 DEBUG [27584]: Closing database connection -- 17:04:08.278 SQL [27584]: pgsql_close() -- 17:04:08.274 DEBUG [27471]: Database connection successful -- 17:04:08.274 INFO [27471]: _SERVER found -- 17:04:08.274 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 17:04:08.274 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:08.274 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:08.274 INFO [27471]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 17:04:08.274 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:08.286 INFO [27471]: COREGRADE is stopping... -- 17:04:08.286 DEBUG [27471]: Closing database connection -- 17:04:08.286 SQL [27471]: pgsql_close() -- 17:04:08.275 DEBUG [27470]: Database connection successful -- 17:04:08.275 INFO [27470]: _SERVER found -- 17:04:08.275 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 17:04:08.275 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:08.275 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:08.275 INFO [27470]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 17:04:08.275 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:08.287 INFO [27470]: COREGRADE is stopping... -- 17:04:08.287 DEBUG [27470]: Closing database connection -- 17:04:08.287 SQL [27470]: pgsql_close() -- 17:04:08.281 DEBUG [27523]: Database connection successful -- 17:04:08.281 INFO [27523]: _SERVER found -- 17:04:08.281 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 17:04:08.281 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:08.281 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:08.281 INFO [27523]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 17:04:08.281 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:08.292 INFO [27523]: COREGRADE is stopping... -- 17:04:08.292 DEBUG [27523]: Closing database connection -- 17:04:08.292 SQL [27523]: pgsql_close() -- 17:04:08.352 INFO [27523]: COREGRADE is starting... -- 17:04:08.352 INFO [27523]: Version from config: 1.0 -- 17:04:08.352 DEBUG [27523]: Connecting to database... -- 17:04:08.352 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:08.352 SQL [27523]: pgsql_db_connect() -- 17:04:08.356 INFO [27474]: COREGRADE is starting... -- 17:04:08.356 INFO [27471]: COREGRADE is starting... -- 17:04:08.357 INFO [27474]: Version from config: 1.0 -- 17:04:08.357 DEBUG [27474]: Connecting to database... -- 17:04:08.357 INFO [27471]: Version from config: 1.0 -- 17:04:08.357 DEBUG [27471]: Connecting to database... -- 17:04:08.357 DEBUG [27474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:08.357 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:08.357 SQL [27474]: pgsql_db_connect() -- 17:04:08.357 SQL [27471]: pgsql_db_connect() -- 17:04:08.361 INFO [27584]: COREGRADE is starting... -- 17:04:08.362 INFO [27584]: Version from config: 1.0 -- 17:04:08.362 DEBUG [27584]: Connecting to database... -- 17:04:08.362 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:08.362 SQL [27584]: pgsql_db_connect() -- 17:04:08.356 DEBUG [27523]: Database connection successful -- 17:04:08.357 INFO [27523]: _SERVER found -- 17:04:08.357 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 17:04:08.357 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:08.357 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:08.357 INFO [27523]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 17:04:08.357 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:08.368 INFO [27523]: COREGRADE is stopping... -- 17:04:08.368 DEBUG [27523]: Closing database connection -- 17:04:08.368 SQL [27523]: pgsql_close() -- 17:04:08.361 DEBUG [27474]: Database connection successful -- 17:04:08.361 INFO [27474]: _SERVER found -- 17:04:08.361 INFO [27474]: REMOTE_ADDR = 10.0.0.15 -- 17:04:08.361 INFO [27474]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:08.361 INFO [27474]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:08.361 INFO [27474]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 17:04:08.361 INFO [27474]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:08.372 INFO [27474]: COREGRADE is stopping... -- 17:04:08.372 DEBUG [27474]: Closing database connection -- 17:04:08.372 SQL [27474]: pgsql_close() -- 17:04:08.361 DEBUG [27471]: Database connection successful -- 17:04:08.361 INFO [27471]: _SERVER found -- 17:04:08.361 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 17:04:08.361 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:08.361 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:08.361 INFO [27471]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 17:04:08.361 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:08.372 INFO [27471]: COREGRADE is stopping... -- 17:04:08.372 DEBUG [27471]: Closing database connection -- 17:04:08.372 SQL [27471]: pgsql_close() -- 17:04:08.373 INFO [27470]: COREGRADE is starting... -- 17:04:08.373 INFO [27470]: Version from config: 1.0 -- 17:04:08.373 DEBUG [27470]: Connecting to database... -- 17:04:08.373 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:08.374 SQL [27470]: pgsql_db_connect() -- 17:04:08.376 INFO [27523]: COREGRADE is starting... -- 17:04:08.376 INFO [27523]: Version from config: 1.0 -- 17:04:08.376 DEBUG [27523]: Connecting to database... -- 17:04:08.376 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:08.376 SQL [27523]: pgsql_db_connect() -- 17:04:08.366 DEBUG [27584]: Database connection successful -- 17:04:08.366 INFO [27584]: _SERVER found -- 17:04:08.366 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 17:04:08.366 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:08.366 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:08.366 INFO [27584]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 17:04:08.366 INFO [27584]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:08.377 INFO [27584]: COREGRADE is stopping... -- 17:04:08.377 DEBUG [27584]: Closing database connection -- 17:04:08.377 SQL [27584]: pgsql_close() -- 17:04:08.378 DEBUG [27470]: Database connection successful -- 17:04:08.378 INFO [27470]: _SERVER found -- 17:04:08.378 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 17:04:08.378 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:08.378 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:08.378 INFO [27470]: QUERY_STRING = /assets/js/pages/dashboard.js -- 17:04:08.378 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:08.390 INFO [27470]: COREGRADE is stopping... -- 17:04:08.390 DEBUG [27470]: Closing database connection -- 17:04:08.390 SQL [27470]: pgsql_close() -- 17:04:08.381 DEBUG [27523]: Database connection successful -- 17:04:08.381 INFO [27523]: _SERVER found -- 17:04:08.381 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 17:04:08.381 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:08.381 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:08.381 INFO [27523]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 17:04:08.381 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:08.392 INFO [27523]: COREGRADE is stopping... -- 17:04:08.392 DEBUG [27523]: Closing database connection -- 17:04:08.392 SQL [27523]: pgsql_close() -- 17:04:08.442 INFO [27471]: COREGRADE is starting... -- 17:04:08.442 INFO [27471]: Version from config: 1.0 -- 17:04:08.442 DEBUG [27471]: Connecting to database... -- 17:04:08.442 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:08.442 SQL [27471]: pgsql_db_connect() -- 17:04:08.451 INFO [27523]: COREGRADE is starting... -- 17:04:08.451 INFO [27523]: Version from config: 1.0 -- 17:04:08.451 DEBUG [27523]: Connecting to database... -- 17:04:08.451 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:08.451 SQL [27523]: pgsql_db_connect() -- 17:04:08.455 INFO [27474]: COREGRADE is starting... -- 17:04:08.456 INFO [27474]: Version from config: 1.0 -- 17:04:08.456 DEBUG [27474]: Connecting to database... -- 17:04:08.456 DEBUG [27474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:08.456 SQL [27474]: pgsql_db_connect() -- 17:04:08.446 DEBUG [27471]: Database connection successful -- 17:04:08.446 INFO [27471]: _SERVER found -- 17:04:08.446 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 17:04:08.446 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:08.446 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:08.446 INFO [27471]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 17:04:08.446 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:08.458 INFO [27471]: COREGRADE is stopping... -- 17:04:08.458 DEBUG [27471]: Closing database connection -- 17:04:08.458 SQL [27471]: pgsql_close() -- 17:04:08.460 INFO [27584]: COREGRADE is starting... -- 17:04:08.460 INFO [27584]: Version from config: 1.0 -- 17:04:08.460 DEBUG [27584]: Connecting to database... -- 17:04:08.460 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:08.460 SQL [27584]: pgsql_db_connect() -- 17:04:08.466 INFO [27470]: COREGRADE is starting... -- 17:04:08.466 INFO [27470]: Version from config: 1.0 -- 17:04:08.466 DEBUG [27470]: Connecting to database... -- 17:04:08.466 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:08.466 SQL [27470]: pgsql_db_connect() -- 17:04:08.456 DEBUG [27523]: Database connection successful -- 17:04:08.456 INFO [27523]: _SERVER found -- 17:04:08.456 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 17:04:08.456 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:08.456 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:08.456 INFO [27523]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 17:04:08.456 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:08.467 INFO [27523]: COREGRADE is stopping... -- 17:04:08.467 DEBUG [27523]: Closing database connection -- 17:04:08.467 SQL [27523]: pgsql_close() -- 17:04:08.460 DEBUG [27474]: Database connection successful -- 17:04:08.460 INFO [27474]: _SERVER found -- 17:04:08.460 INFO [27474]: REMOTE_ADDR = 10.0.0.15 -- 17:04:08.460 INFO [27474]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:08.460 INFO [27474]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:08.460 INFO [27474]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 17:04:08.460 INFO [27474]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:08.471 INFO [27474]: COREGRADE is stopping... -- 17:04:08.471 DEBUG [27474]: Closing database connection -- 17:04:08.471 SQL [27474]: pgsql_close() -- 17:04:08.472 INFO [27523]: COREGRADE is starting... -- 17:04:08.472 INFO [27523]: Version from config: 1.0 -- 17:04:08.472 DEBUG [27523]: Connecting to database... -- 17:04:08.472 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:08.472 SQL [27523]: pgsql_db_connect() -- 17:04:08.465 DEBUG [27584]: Database connection successful -- 17:04:08.465 INFO [27584]: _SERVER found -- 17:04:08.465 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 17:04:08.465 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:08.465 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:08.465 INFO [27584]: QUERY_STRING = /assets/js/pages/picker_date.js -- 17:04:08.465 INFO [27584]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:08.476 INFO [27584]: COREGRADE is stopping... -- 17:04:08.476 DEBUG [27584]: Closing database connection -- 17:04:08.476 SQL [27584]: pgsql_close() -- 17:04:08.471 DEBUG [27470]: Database connection successful -- 17:04:08.471 INFO [27470]: _SERVER found -- 17:04:08.471 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 17:04:08.471 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:08.471 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:08.471 INFO [27470]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 17:04:08.471 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:08.483 INFO [27470]: COREGRADE is stopping... -- 17:04:08.483 DEBUG [27470]: Closing database connection -- 17:04:08.483 SQL [27470]: pgsql_close() -- 17:04:08.477 DEBUG [27523]: Database connection successful -- 17:04:08.477 INFO [27523]: _SERVER found -- 17:04:08.477 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 17:04:08.477 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:08.477 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:08.477 INFO [27523]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 17:04:08.477 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:08.488 INFO [27523]: COREGRADE is stopping... -- 17:04:08.488 DEBUG [27523]: Closing database connection -- 17:04:08.488 SQL [27523]: pgsql_close() -- 17:04:08.533 INFO [27471]: COREGRADE is starting... -- 17:04:08.533 INFO [27471]: Version from config: 1.0 -- 17:04:08.533 DEBUG [27471]: Connecting to database... -- 17:04:08.533 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:08.533 SQL [27471]: pgsql_db_connect() -- 17:04:08.538 DEBUG [27471]: Database connection successful -- 17:04:08.538 INFO [27471]: _SERVER found -- 17:04:08.538 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 17:04:08.538 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:08.538 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:08.538 INFO [27471]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 17:04:08.538 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:08.549 INFO [27471]: COREGRADE is stopping... -- 17:04:08.549 DEBUG [27471]: Closing database connection -- 17:04:08.549 SQL [27471]: pgsql_close() -- 17:04:08.551 INFO [27523]: COREGRADE is starting... -- 17:04:08.551 INFO [27523]: Version from config: 1.0 -- 17:04:08.551 DEBUG [27523]: Connecting to database... -- 17:04:08.551 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:08.551 SQL [27523]: pgsql_db_connect() -- 17:04:08.555 INFO [27474]: COREGRADE is starting... -- 17:04:08.555 INFO [27474]: Version from config: 1.0 -- 17:04:08.555 DEBUG [27474]: Connecting to database... -- 17:04:08.555 DEBUG [27474]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:08.555 SQL [27474]: pgsql_db_connect() -- 17:04:08.559 INFO [27584]: COREGRADE is starting... -- 17:04:08.560 INFO [27584]: Version from config: 1.0 -- 17:04:08.560 DEBUG [27584]: Connecting to database... -- 17:04:08.560 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:08.560 SQL [27584]: pgsql_db_connect() -- 17:04:08.564 INFO [27470]: COREGRADE is starting... -- 17:04:08.564 INFO [27470]: Version from config: 1.0 -- 17:04:08.565 DEBUG [27470]: Connecting to database... -- 17:04:08.565 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:08.565 SQL [27470]: pgsql_db_connect() -- 17:04:08.555 DEBUG [27523]: Database connection successful -- 17:04:08.555 INFO [27523]: _SERVER found -- 17:04:08.555 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 17:04:08.555 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:08.555 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:08.555 INFO [27523]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 17:04:08.555 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:08.566 INFO [27523]: COREGRADE is stopping... -- 17:04:08.566 DEBUG [27523]: Closing database connection -- 17:04:08.566 SQL [27523]: pgsql_close() -- 17:04:08.559 DEBUG [27474]: Database connection successful -- 17:04:08.559 INFO [27474]: _SERVER found -- 17:04:08.559 INFO [27474]: REMOTE_ADDR = 10.0.0.15 -- 17:04:08.559 INFO [27474]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:08.559 INFO [27474]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:08.559 INFO [27474]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 17:04:08.559 INFO [27474]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:08.571 INFO [27474]: COREGRADE is stopping... -- 17:04:08.571 DEBUG [27474]: Closing database connection -- 17:04:08.571 SQL [27474]: pgsql_close() -- 17:04:08.564 DEBUG [27584]: Database connection successful -- 17:04:08.564 INFO [27584]: _SERVER found -- 17:04:08.564 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 17:04:08.564 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:08.564 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:08.564 INFO [27584]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 17:04:08.564 INFO [27584]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:08.575 INFO [27584]: COREGRADE is stopping... -- 17:04:08.575 DEBUG [27584]: Closing database connection -- 17:04:08.575 SQL [27584]: pgsql_close() -- 17:04:08.578 INFO [27583]: COREGRADE is starting... -- 17:04:08.578 INFO [27583]: Version from config: 1.0 -- 17:04:08.578 DEBUG [27583]: Connecting to database... -- 17:04:08.578 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:08.578 SQL [27583]: pgsql_db_connect() -- 17:04:08.569 DEBUG [27470]: Database connection successful -- 17:04:08.569 INFO [27470]: _SERVER found -- 17:04:08.569 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 17:04:08.569 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:08.569 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:08.569 INFO [27470]: QUERY_STRING = /assets/customjs/general.js -- 17:04:08.569 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:08.582 INFO [27470]: COREGRADE is stopping... -- 17:04:08.582 DEBUG [27470]: Closing database connection -- 17:04:08.582 SQL [27470]: pgsql_close() -- 17:04:08.582 DEBUG [27583]: Database connection successful -- 17:04:08.582 INFO [27583]: _SERVER found -- 17:04:08.582 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 17:04:08.582 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:08.582 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:08.582 INFO [27583]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 17:04:08.582 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:08.594 INFO [27583]: COREGRADE is stopping... -- 17:04:08.594 DEBUG [27583]: Closing database connection -- 17:04:08.594 SQL [27583]: pgsql_close() -- 17:04:08.660 INFO [27583]: COREGRADE is starting... -- 17:04:08.660 INFO [27583]: Version from config: 1.0 -- 17:04:08.660 DEBUG [27583]: Connecting to database... -- 17:04:08.660 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:08.660 SQL [27583]: pgsql_db_connect() -- 17:04:08.664 DEBUG [27583]: Database connection successful -- 17:04:08.664 INFO [27583]: _SERVER found -- 17:04:08.664 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 17:04:08.664 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:08.664 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:08.664 INFO [27583]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 17:04:08.664 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:08.676 INFO [27583]: COREGRADE is stopping... -- 17:04:08.676 DEBUG [27583]: Closing database connection -- 17:04:08.676 SQL [27583]: pgsql_close() -- 17:04:08.742 INFO [27583]: COREGRADE is starting... -- 17:04:08.742 INFO [27583]: Version from config: 1.0 -- 17:04:08.742 DEBUG [27583]: Connecting to database... -- 17:04:08.742 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:08.742 SQL [27583]: pgsql_db_connect() -- 17:04:08.746 DEBUG [27583]: Database connection successful -- 17:04:08.746 INFO [27583]: _SERVER found -- 17:04:08.746 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 17:04:08.746 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:08.746 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:08.746 INFO [27583]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 17:04:08.746 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:08.757 INFO [27583]: COREGRADE is stopping... -- 17:04:08.758 DEBUG [27583]: Closing database connection -- 17:04:08.758 SQL [27583]: pgsql_close() -- 17:04:08.826 INFO [27583]: COREGRADE is starting... -- 17:04:08.826 INFO [27583]: Version from config: 1.0 -- 17:04:08.826 DEBUG [27583]: Connecting to database... -- 17:04:08.826 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:08.826 SQL [27583]: pgsql_db_connect() -- 17:04:08.830 DEBUG [27583]: Database connection successful -- 17:04:08.830 INFO [27583]: _SERVER found -- 17:04:08.830 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 17:04:08.830 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:08.830 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:08.830 INFO [27583]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 17:04:08.830 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:08.842 INFO [27583]: COREGRADE is stopping... -- 17:04:08.842 DEBUG [27583]: Closing database connection -- 17:04:08.842 SQL [27583]: pgsql_close() -- 17:04:08.908 INFO [27583]: COREGRADE is starting... -- 17:04:08.908 INFO [27583]: Version from config: 1.0 -- 17:04:08.908 DEBUG [27583]: Connecting to database... -- 17:04:08.908 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:08.908 SQL [27583]: pgsql_db_connect() -- 17:04:08.912 DEBUG [27583]: Database connection successful -- 17:04:08.912 INFO [27583]: _SERVER found -- 17:04:08.912 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 17:04:08.912 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:08.912 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:08.912 INFO [27583]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 17:04:08.912 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:08.923 INFO [27583]: COREGRADE is stopping... -- 17:04:08.923 DEBUG [27583]: Closing database connection -- 17:04:08.923 SQL [27583]: pgsql_close() -- 17:04:08.989 INFO [27583]: COREGRADE is starting... -- 17:04:08.989 INFO [27583]: Version from config: 1.0 -- 17:04:08.990 DEBUG [27583]: Connecting to database... -- 17:04:08.990 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:08.990 SQL [27583]: pgsql_db_connect() -- 17:04:08.994 DEBUG [27583]: Database connection successful -- 17:04:08.994 INFO [27583]: _SERVER found -- 17:04:08.994 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 17:04:08.994 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:08.994 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:08.994 INFO [27583]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 17:04:08.994 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:09.005 INFO [27583]: COREGRADE is stopping... -- 17:04:09.005 DEBUG [27583]: Closing database connection -- 17:04:09.005 SQL [27583]: pgsql_close() -- 17:04:09.074 INFO [27583]: COREGRADE is starting... -- 17:04:09.075 INFO [27583]: Version from config: 1.0 -- 17:04:09.075 DEBUG [27583]: Connecting to database... -- 17:04:09.075 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:09.075 SQL [27583]: pgsql_db_connect() -- 17:04:09.079 DEBUG [27583]: Database connection successful -- 17:04:09.079 INFO [27583]: _SERVER found -- 17:04:09.079 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 17:04:09.079 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:09.079 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:09.079 INFO [27583]: QUERY_STRING = /assets/js/pages/dashboard.js -- 17:04:09.079 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:09.090 INFO [27583]: COREGRADE is stopping... -- 17:04:09.090 DEBUG [27583]: Closing database connection -- 17:04:09.090 SQL [27583]: pgsql_close() -- 17:04:09.157 INFO [27583]: COREGRADE is starting... -- 17:04:09.157 INFO [27583]: Version from config: 1.0 -- 17:04:09.157 DEBUG [27583]: Connecting to database... -- 17:04:09.157 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:09.158 SQL [27583]: pgsql_db_connect() -- 17:04:09.162 DEBUG [27583]: Database connection successful -- 17:04:09.162 INFO [27583]: _SERVER found -- 17:04:09.162 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 17:04:09.162 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:09.162 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:09.162 INFO [27583]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 17:04:09.162 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:09.173 INFO [27583]: COREGRADE is stopping... -- 17:04:09.173 DEBUG [27583]: Closing database connection -- 17:04:09.173 SQL [27583]: pgsql_close() -- 17:04:09.239 INFO [27583]: COREGRADE is starting... -- 17:04:09.239 INFO [27583]: Version from config: 1.0 -- 17:04:09.239 DEBUG [27583]: Connecting to database... -- 17:04:09.239 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:09.239 SQL [27583]: pgsql_db_connect() -- 17:04:09.243 DEBUG [27583]: Database connection successful -- 17:04:09.243 INFO [27583]: _SERVER found -- 17:04:09.243 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 17:04:09.243 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:09.243 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:09.243 INFO [27583]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 17:04:09.243 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:09.255 INFO [27583]: COREGRADE is stopping... -- 17:04:09.255 DEBUG [27583]: Closing database connection -- 17:04:09.255 SQL [27583]: pgsql_close() -- 17:04:09.324 INFO [27583]: COREGRADE is starting... -- 17:04:09.324 INFO [27583]: Version from config: 1.0 -- 17:04:09.324 DEBUG [27583]: Connecting to database... -- 17:04:09.324 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:09.324 SQL [27583]: pgsql_db_connect() -- 17:04:09.328 DEBUG [27583]: Database connection successful -- 17:04:09.328 INFO [27583]: _SERVER found -- 17:04:09.328 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 17:04:09.328 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:09.328 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:09.328 INFO [27583]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 17:04:09.328 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:09.340 INFO [27583]: COREGRADE is stopping... -- 17:04:09.340 DEBUG [27583]: Closing database connection -- 17:04:09.340 SQL [27583]: pgsql_close() -- 17:04:09.406 INFO [27583]: COREGRADE is starting... -- 17:04:09.406 INFO [27583]: Version from config: 1.0 -- 17:04:09.406 DEBUG [27583]: Connecting to database... -- 17:04:09.406 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:09.406 SQL [27583]: pgsql_db_connect() -- 17:04:09.410 DEBUG [27583]: Database connection successful -- 17:04:09.410 INFO [27583]: _SERVER found -- 17:04:09.410 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 17:04:09.410 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:09.410 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:09.410 INFO [27583]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 17:04:09.410 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:09.422 INFO [27583]: COREGRADE is stopping... -- 17:04:09.422 DEBUG [27583]: Closing database connection -- 17:04:09.422 SQL [27583]: pgsql_close() -- 17:04:09.488 INFO [27583]: COREGRADE is starting... -- 17:04:09.488 INFO [27583]: Version from config: 1.0 -- 17:04:09.488 DEBUG [27583]: Connecting to database... -- 17:04:09.488 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:09.488 SQL [27583]: pgsql_db_connect() -- 17:04:09.492 DEBUG [27583]: Database connection successful -- 17:04:09.492 INFO [27583]: _SERVER found -- 17:04:09.492 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 17:04:09.492 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:09.492 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:09.492 INFO [27583]: QUERY_STRING = /assets/js/pages/picker_date.js -- 17:04:09.492 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:09.504 INFO [27583]: COREGRADE is stopping... -- 17:04:09.504 DEBUG [27583]: Closing database connection -- 17:04:09.504 SQL [27583]: pgsql_close() -- 17:04:09.571 INFO [27583]: COREGRADE is starting... -- 17:04:09.572 INFO [27583]: Version from config: 1.0 -- 17:04:09.572 DEBUG [27583]: Connecting to database... -- 17:04:09.572 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:09.572 SQL [27583]: pgsql_db_connect() -- 17:04:09.576 DEBUG [27583]: Database connection successful -- 17:04:09.576 INFO [27583]: _SERVER found -- 17:04:09.576 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 17:04:09.576 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:09.576 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:09.576 INFO [27583]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 17:04:09.576 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:09.587 INFO [27583]: COREGRADE is stopping... -- 17:04:09.587 DEBUG [27583]: Closing database connection -- 17:04:09.587 SQL [27583]: pgsql_close() -- 17:04:09.653 INFO [27583]: COREGRADE is starting... -- 17:04:09.653 INFO [27583]: Version from config: 1.0 -- 17:04:09.653 DEBUG [27583]: Connecting to database... -- 17:04:09.653 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:09.653 SQL [27583]: pgsql_db_connect() -- 17:04:09.658 DEBUG [27583]: Database connection successful -- 17:04:09.658 INFO [27583]: _SERVER found -- 17:04:09.658 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 17:04:09.658 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:09.658 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:09.658 INFO [27583]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 17:04:09.658 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:09.669 INFO [27583]: COREGRADE is stopping... -- 17:04:09.669 DEBUG [27583]: Closing database connection -- 17:04:09.669 SQL [27583]: pgsql_close() -- 17:04:09.736 INFO [27583]: COREGRADE is starting... -- 17:04:09.736 INFO [27583]: Version from config: 1.0 -- 17:04:09.736 DEBUG [27583]: Connecting to database... -- 17:04:09.736 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:09.736 SQL [27583]: pgsql_db_connect() -- 17:04:09.740 DEBUG [27583]: Database connection successful -- 17:04:09.740 INFO [27583]: _SERVER found -- 17:04:09.740 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 17:04:09.740 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:09.740 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:09.740 INFO [27583]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 17:04:09.740 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:09.751 INFO [27583]: COREGRADE is stopping... -- 17:04:09.751 DEBUG [27583]: Closing database connection -- 17:04:09.751 SQL [27583]: pgsql_close() -- 17:04:09.819 INFO [27583]: COREGRADE is starting... -- 17:04:09.819 INFO [27583]: Version from config: 1.0 -- 17:04:09.819 DEBUG [27583]: Connecting to database... -- 17:04:09.820 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:09.820 SQL [27583]: pgsql_db_connect() -- 17:04:09.823 DEBUG [27583]: Database connection successful -- 17:04:09.823 INFO [27583]: _SERVER found -- 17:04:09.823 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 17:04:09.823 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:09.823 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:09.823 INFO [27583]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 17:04:09.823 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:09.835 INFO [27583]: COREGRADE is stopping... -- 17:04:09.835 DEBUG [27583]: Closing database connection -- 17:04:09.835 SQL [27583]: pgsql_close() -- 17:04:09.901 INFO [27583]: COREGRADE is starting... -- 17:04:09.901 INFO [27583]: Version from config: 1.0 -- 17:04:09.901 DEBUG [27583]: Connecting to database... -- 17:04:09.901 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:09.901 SQL [27583]: pgsql_db_connect() -- 17:04:09.905 DEBUG [27583]: Database connection successful -- 17:04:09.905 INFO [27583]: _SERVER found -- 17:04:09.905 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 17:04:09.905 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:09.905 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:09.905 INFO [27583]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 17:04:09.905 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:09.916 INFO [27583]: COREGRADE is stopping... -- 17:04:09.916 DEBUG [27583]: Closing database connection -- 17:04:09.916 SQL [27583]: pgsql_close() -- 17:04:10.014 INFO [27583]: COREGRADE is starting... -- 17:04:10.015 INFO [27583]: Version from config: 1.0 -- 17:04:10.015 DEBUG [27583]: Connecting to database... -- 17:04:10.015 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:10.015 SQL [27583]: pgsql_db_connect() -- 17:04:10.019 DEBUG [27583]: Database connection successful -- 17:04:10.019 INFO [27583]: _SERVER found -- 17:04:10.019 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 17:04:10.019 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:10.019 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:10.019 INFO [27583]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 17:04:10.019 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:10.030 INFO [27583]: COREGRADE is stopping... -- 17:04:10.030 DEBUG [27583]: Closing database connection -- 17:04:10.030 SQL [27583]: pgsql_close() -- 17:04:10.099 INFO [27583]: COREGRADE is starting... -- 17:04:10.099 INFO [27583]: Version from config: 1.0 -- 17:04:10.099 DEBUG [27583]: Connecting to database... -- 17:04:10.099 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:10.099 SQL [27583]: pgsql_db_connect() -- 17:04:10.103 DEBUG [27583]: Database connection successful -- 17:04:10.103 INFO [27583]: _SERVER found -- 17:04:10.103 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 17:04:10.103 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:10.103 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:10.103 INFO [27583]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 17:04:10.103 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:10.114 INFO [27583]: COREGRADE is stopping... -- 17:04:10.114 DEBUG [27583]: Closing database connection -- 17:04:10.114 SQL [27583]: pgsql_close() -- 17:04:10.318 INFO [27583]: COREGRADE is starting... -- 17:04:10.318 INFO [27583]: Version from config: 1.0 -- 17:04:10.318 DEBUG [27583]: Connecting to database... -- 17:04:10.318 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:10.318 SQL [27583]: pgsql_db_connect() -- 17:04:10.322 DEBUG [27583]: Database connection successful -- 17:04:10.322 INFO [27583]: _SERVER found -- 17:04:10.322 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 17:04:10.322 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:10.322 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:10.322 INFO [27583]: QUERY_STRING = /assets/customjs/general.js -- 17:04:10.322 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:10.334 INFO [27583]: COREGRADE is stopping... -- 17:04:10.334 DEBUG [27583]: Closing database connection -- 17:04:10.334 SQL [27583]: pgsql_close() -- 17:04:27.608 INFO [27942]: COREGRADE is starting... -- 17:04:27.608 INFO [27942]: Version from config: 1.0 -- 17:04:27.608 DEBUG [27942]: Connecting to database... -- 17:04:27.608 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:27.608 SQL [27942]: pgsql_db_connect() -- 17:04:27.612 DEBUG [27942]: Database connection successful -- 17:04:27.612 INFO [27942]: _SERVER found -- 17:04:27.612 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:27.612 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:27.612 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:27.612 INFO [27942]: QUERY_STRING = /logout -- 17:04:27.612 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:27.643 INFO [27942]: COREGRADE is stopping... -- 17:04:27.643 DEBUG [27942]: Closing database connection -- 17:04:27.643 SQL [27942]: pgsql_close() -- 17:04:27.723 INFO [27942]: COREGRADE is starting... -- 17:04:27.723 INFO [27942]: Version from config: 1.0 -- 17:04:27.723 DEBUG [27942]: Connecting to database... -- 17:04:27.723 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:27.723 SQL [27942]: pgsql_db_connect() -- 17:04:27.727 DEBUG [27942]: Database connection successful -- 17:04:27.727 INFO [27942]: _SERVER found -- 17:04:27.727 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:27.727 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:27.727 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:27.727 INFO [27942]: QUERY_STRING = /start -- 17:04:27.727 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:27.767 INFO [27942]: COREGRADE is stopping... -- 17:04:27.767 DEBUG [27942]: Closing database connection -- 17:04:27.767 SQL [27942]: pgsql_close() -- 17:04:27.885 INFO [27942]: COREGRADE is starting... -- 17:04:27.885 INFO [27942]: Version from config: 1.0 -- 17:04:27.885 DEBUG [27942]: Connecting to database... -- 17:04:27.885 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:27.885 SQL [27942]: pgsql_db_connect() -- 17:04:27.889 DEBUG [27942]: Database connection successful -- 17:04:27.889 INFO [27942]: _SERVER found -- 17:04:27.889 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:27.889 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:27.889 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:27.889 INFO [27942]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 17:04:27.889 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:27.901 INFO [27942]: COREGRADE is stopping... -- 17:04:27.901 DEBUG [27942]: Closing database connection -- 17:04:27.901 SQL [27942]: pgsql_close() -- 17:04:27.925 INFO [27942]: COREGRADE is starting... -- 17:04:27.925 INFO [27942]: Version from config: 1.0 -- 17:04:27.925 DEBUG [27942]: Connecting to database... -- 17:04:27.925 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:27.925 SQL [27942]: pgsql_db_connect() -- 17:04:27.929 DEBUG [27942]: Database connection successful -- 17:04:27.929 INFO [27942]: _SERVER found -- 17:04:27.929 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:27.929 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:27.929 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:27.929 INFO [27942]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 17:04:27.929 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:27.940 INFO [27942]: COREGRADE is stopping... -- 17:04:27.940 DEBUG [27942]: Closing database connection -- 17:04:27.940 SQL [27942]: pgsql_close() -- 17:04:27.947 INFO [27942]: COREGRADE is starting... -- 17:04:27.947 INFO [27942]: Version from config: 1.0 -- 17:04:27.947 DEBUG [27942]: Connecting to database... -- 17:04:27.947 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:27.948 SQL [27942]: pgsql_db_connect() -- 17:04:27.955 INFO [27585]: COREGRADE is starting... -- 17:04:27.956 INFO [27585]: Version from config: 1.0 -- 17:04:27.956 DEBUG [27585]: Connecting to database... -- 17:04:27.956 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:27.956 SQL [27585]: pgsql_db_connect() -- 17:04:27.960 INFO [27472]: COREGRADE is starting... -- 17:04:27.961 INFO [27472]: Version from config: 1.0 -- 17:04:27.961 DEBUG [27472]: Connecting to database... -- 17:04:27.961 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:27.961 SQL [27472]: pgsql_db_connect() -- 17:04:27.951 DEBUG [27942]: Database connection successful -- 17:04:27.951 INFO [27942]: _SERVER found -- 17:04:27.951 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:27.951 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:27.951 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:27.952 INFO [27942]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 17:04:27.952 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:27.963 INFO [27942]: COREGRADE is stopping... -- 17:04:27.963 DEBUG [27942]: Closing database connection -- 17:04:27.963 SQL [27942]: pgsql_close() -- 17:04:27.968 INFO [28926]: COREGRADE is starting... -- 17:04:27.969 INFO [28926]: Version from config: 1.0 -- 17:04:27.969 DEBUG [28926]: Connecting to database... -- 17:04:27.969 DEBUG [28926]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:27.969 SQL [28926]: pgsql_db_connect() -- 17:04:27.960 DEBUG [27585]: Database connection successful -- 17:04:27.960 INFO [27585]: _SERVER found -- 17:04:27.960 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 17:04:27.960 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:27.960 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:27.960 INFO [27585]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 17:04:27.960 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:27.972 INFO [27585]: COREGRADE is stopping... -- 17:04:27.972 DEBUG [27585]: Closing database connection -- 17:04:27.972 SQL [27585]: pgsql_close() -- 17:04:27.965 DEBUG [27472]: Database connection successful -- 17:04:27.965 INFO [27472]: _SERVER found -- 17:04:27.965 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:04:27.965 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:27.965 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:27.965 INFO [27472]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 17:04:27.965 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:27.976 INFO [27472]: COREGRADE is stopping... -- 17:04:27.976 DEBUG [27472]: Closing database connection -- 17:04:27.976 SQL [27472]: pgsql_close() -- 17:04:27.979 INFO [27472]: COREGRADE is starting... -- 17:04:27.979 INFO [27472]: Version from config: 1.0 -- 17:04:27.979 DEBUG [27472]: Connecting to database... -- 17:04:27.979 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:27.979 SQL [27472]: pgsql_db_connect() -- 17:04:27.973 DEBUG [28926]: Database connection successful -- 17:04:27.973 INFO [28926]: _SERVER found -- 17:04:27.973 INFO [28926]: REMOTE_ADDR = 10.0.0.15 -- 17:04:27.973 INFO [28926]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:27.973 INFO [28926]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:27.973 INFO [28926]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 17:04:27.973 INFO [28926]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:27.989 INFO [28926]: COREGRADE is stopping... -- 17:04:27.989 DEBUG [28926]: Closing database connection -- 17:04:27.989 SQL [28926]: pgsql_close() -- 17:04:27.983 DEBUG [27472]: Database connection successful -- 17:04:27.983 INFO [27472]: _SERVER found -- 17:04:27.983 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:04:27.983 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:27.983 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:27.983 INFO [27472]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 17:04:27.983 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:27.995 INFO [27472]: COREGRADE is stopping... -- 17:04:27.995 DEBUG [27472]: Closing database connection -- 17:04:27.995 SQL [27472]: pgsql_close() -- 17:04:28.011 INFO [27472]: COREGRADE is starting... -- 17:04:28.012 INFO [27472]: Version from config: 1.0 -- 17:04:28.012 DEBUG [27472]: Connecting to database... -- 17:04:28.012 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:28.012 SQL [27472]: pgsql_db_connect() -- 17:04:28.016 DEBUG [27472]: Database connection successful -- 17:04:28.016 INFO [27472]: _SERVER found -- 17:04:28.016 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:04:28.016 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:28.016 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:28.016 INFO [27472]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 17:04:28.016 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:28.027 INFO [27472]: COREGRADE is stopping... -- 17:04:28.027 DEBUG [27472]: Closing database connection -- 17:04:28.027 SQL [27472]: pgsql_close() -- 17:04:28.041 INFO [27472]: COREGRADE is starting... -- 17:04:28.041 INFO [27472]: Version from config: 1.0 -- 17:04:28.041 DEBUG [27472]: Connecting to database... -- 17:04:28.041 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:28.041 SQL [27472]: pgsql_db_connect() -- 17:04:28.053 INFO [27585]: COREGRADE is starting... -- 17:04:28.053 INFO [27585]: Version from config: 1.0 -- 17:04:28.053 DEBUG [27585]: Connecting to database... -- 17:04:28.053 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:28.053 SQL [27585]: pgsql_db_connect() -- 17:04:28.045 DEBUG [27472]: Database connection successful -- 17:04:28.045 INFO [27472]: _SERVER found -- 17:04:28.045 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:04:28.045 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:28.045 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:28.045 INFO [27472]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 17:04:28.045 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:28.057 INFO [27472]: COREGRADE is stopping... -- 17:04:28.057 DEBUG [27472]: Closing database connection -- 17:04:28.057 SQL [27472]: pgsql_close() -- 17:04:28.058 INFO [27942]: COREGRADE is starting... -- 17:04:28.058 INFO [27942]: Version from config: 1.0 -- 17:04:28.058 DEBUG [27942]: Connecting to database... -- 17:04:28.058 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:28.058 SQL [27942]: pgsql_db_connect() -- 17:04:28.057 DEBUG [27585]: Database connection successful -- 17:04:28.057 INFO [27585]: _SERVER found -- 17:04:28.057 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 17:04:28.057 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:28.057 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:28.057 INFO [27585]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 17:04:28.057 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:28.068 INFO [27585]: COREGRADE is stopping... -- 17:04:28.068 DEBUG [27585]: Closing database connection -- 17:04:28.068 SQL [27585]: pgsql_close() -- 17:04:28.071 INFO [28926]: COREGRADE is starting... -- 17:04:28.071 INFO [28926]: Version from config: 1.0 -- 17:04:28.071 DEBUG [28926]: Connecting to database... -- 17:04:28.072 DEBUG [28926]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:28.072 SQL [28926]: pgsql_db_connect() -- 17:04:28.062 DEBUG [27942]: Database connection successful -- 17:04:28.062 INFO [27942]: _SERVER found -- 17:04:28.062 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:28.062 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:28.062 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:28.062 INFO [27942]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 17:04:28.062 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:28.074 INFO [27942]: COREGRADE is stopping... -- 17:04:28.074 DEBUG [27942]: Closing database connection -- 17:04:28.074 SQL [27942]: pgsql_close() -- 17:04:28.076 INFO [27942]: COREGRADE is starting... -- 17:04:28.076 INFO [27942]: Version from config: 1.0 -- 17:04:28.076 DEBUG [27942]: Connecting to database... -- 17:04:28.076 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:28.076 SQL [27942]: pgsql_db_connect() -- 17:04:28.076 DEBUG [28926]: Database connection successful -- 17:04:28.076 INFO [28926]: _SERVER found -- 17:04:28.076 INFO [28926]: REMOTE_ADDR = 10.0.0.15 -- 17:04:28.076 INFO [28926]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:28.076 INFO [28926]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:28.076 INFO [28926]: QUERY_STRING = /assets/js/pages/dashboard.js -- 17:04:28.076 INFO [28926]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:28.088 INFO [28926]: COREGRADE is stopping... -- 17:04:28.088 DEBUG [28926]: Closing database connection -- 17:04:28.088 SQL [28926]: pgsql_close() -- 17:04:28.080 DEBUG [27942]: Database connection successful -- 17:04:28.080 INFO [27942]: _SERVER found -- 17:04:28.080 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:28.080 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:28.080 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:28.080 INFO [27942]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 17:04:28.080 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:28.092 INFO [27942]: COREGRADE is stopping... -- 17:04:28.092 DEBUG [27942]: Closing database connection -- 17:04:28.092 SQL [27942]: pgsql_close() -- 17:04:28.096 INFO [27942]: COREGRADE is starting... -- 17:04:28.097 INFO [27942]: Version from config: 1.0 -- 17:04:28.097 DEBUG [27942]: Connecting to database... -- 17:04:28.097 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:28.097 SQL [27942]: pgsql_db_connect() -- 17:04:28.101 DEBUG [27942]: Database connection successful -- 17:04:28.101 INFO [27942]: _SERVER found -- 17:04:28.101 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:28.101 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:28.101 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:28.101 INFO [27942]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 17:04:28.101 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:28.112 INFO [27942]: COREGRADE is stopping... -- 17:04:28.112 DEBUG [27942]: Closing database connection -- 17:04:28.112 SQL [27942]: pgsql_close() -- 17:04:28.134 INFO [27942]: COREGRADE is starting... -- 17:04:28.134 INFO [27942]: Version from config: 1.0 -- 17:04:28.134 DEBUG [27942]: Connecting to database... -- 17:04:28.134 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:28.134 SQL [27942]: pgsql_db_connect() -- 17:04:28.149 INFO [27585]: COREGRADE is starting... -- 17:04:28.149 INFO [27585]: Version from config: 1.0 -- 17:04:28.149 DEBUG [27585]: Connecting to database... -- 17:04:28.149 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:28.149 SQL [27585]: pgsql_db_connect() -- 17:04:28.138 DEBUG [27942]: Database connection successful -- 17:04:28.138 INFO [27942]: _SERVER found -- 17:04:28.138 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:28.138 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:28.138 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:28.138 INFO [27942]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 17:04:28.138 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:28.150 INFO [27942]: COREGRADE is stopping... -- 17:04:28.150 DEBUG [27942]: Closing database connection -- 17:04:28.150 SQL [27942]: pgsql_close() -- 17:04:28.153 INFO [27942]: COREGRADE is starting... -- 17:04:28.154 INFO [27942]: Version from config: 1.0 -- 17:04:28.154 DEBUG [27942]: Connecting to database... -- 17:04:28.154 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:28.154 SQL [27942]: pgsql_db_connect() -- 17:04:28.153 DEBUG [27585]: Database connection successful -- 17:04:28.153 INFO [27585]: _SERVER found -- 17:04:28.153 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 17:04:28.153 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:28.153 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:28.153 INFO [27585]: QUERY_STRING = /assets/js/pages/picker_date.js -- 17:04:28.153 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:28.165 INFO [27585]: COREGRADE is stopping... -- 17:04:28.165 DEBUG [27585]: Closing database connection -- 17:04:28.165 SQL [27585]: pgsql_close() -- 17:04:28.158 DEBUG [27942]: Database connection successful -- 17:04:28.158 INFO [27942]: _SERVER found -- 17:04:28.158 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:28.158 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:28.158 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:28.158 INFO [27942]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 17:04:28.158 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:28.169 INFO [27942]: COREGRADE is stopping... -- 17:04:28.169 DEBUG [27942]: Closing database connection -- 17:04:28.169 SQL [27942]: pgsql_close() -- 17:04:28.169 INFO [28926]: COREGRADE is starting... -- 17:04:28.169 INFO [28926]: Version from config: 1.0 -- 17:04:28.169 DEBUG [28926]: Connecting to database... -- 17:04:28.169 DEBUG [28926]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:28.169 SQL [28926]: pgsql_db_connect() -- 17:04:28.174 INFO [27942]: COREGRADE is starting... -- 17:04:28.174 INFO [27942]: Version from config: 1.0 -- 17:04:28.174 DEBUG [27942]: Connecting to database... -- 17:04:28.174 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:28.174 SQL [27942]: pgsql_db_connect() -- 17:04:28.179 INFO [27585]: COREGRADE is starting... -- 17:04:28.179 INFO [27585]: Version from config: 1.0 -- 17:04:28.179 DEBUG [27585]: Connecting to database... -- 17:04:28.179 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:28.179 SQL [27585]: pgsql_db_connect() -- 17:04:28.174 DEBUG [28926]: Database connection successful -- 17:04:28.174 INFO [28926]: _SERVER found -- 17:04:28.174 INFO [28926]: REMOTE_ADDR = 10.0.0.15 -- 17:04:28.174 INFO [28926]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:28.174 INFO [28926]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:28.174 INFO [28926]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 17:04:28.174 INFO [28926]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:28.185 INFO [28926]: COREGRADE is stopping... -- 17:04:28.185 DEBUG [28926]: Closing database connection -- 17:04:28.185 SQL [28926]: pgsql_close() -- 17:04:28.178 DEBUG [27942]: Database connection successful -- 17:04:28.178 INFO [27942]: _SERVER found -- 17:04:28.178 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:28.178 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:28.178 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:28.178 INFO [27942]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 17:04:28.178 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:28.190 INFO [27942]: COREGRADE is stopping... -- 17:04:28.190 DEBUG [27942]: Closing database connection -- 17:04:28.190 SQL [27942]: pgsql_close() -- 17:04:28.183 DEBUG [27585]: Database connection successful -- 17:04:28.183 INFO [27585]: _SERVER found -- 17:04:28.183 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 17:04:28.183 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:28.183 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:28.183 INFO [27585]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 17:04:28.183 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:28.195 INFO [27585]: COREGRADE is stopping... -- 17:04:28.195 DEBUG [27585]: Closing database connection -- 17:04:28.195 SQL [27585]: pgsql_close() -- 17:04:28.227 INFO [27585]: COREGRADE is starting... -- 17:04:28.227 INFO [27585]: Version from config: 1.0 -- 17:04:28.227 DEBUG [27585]: Connecting to database... -- 17:04:28.227 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:28.227 SQL [27585]: pgsql_db_connect() -- 17:04:28.231 DEBUG [27585]: Database connection successful -- 17:04:28.231 INFO [27585]: _SERVER found -- 17:04:28.231 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 17:04:28.231 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:28.231 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:28.231 INFO [27585]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 17:04:28.231 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:28.242 INFO [27585]: COREGRADE is stopping... -- 17:04:28.242 DEBUG [27585]: Closing database connection -- 17:04:28.242 SQL [27585]: pgsql_close() -- 17:04:28.247 INFO [27585]: COREGRADE is starting... -- 17:04:28.247 INFO [27585]: Version from config: 1.0 -- 17:04:28.247 DEBUG [27585]: Connecting to database... -- 17:04:28.247 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:28.247 SQL [27585]: pgsql_db_connect() -- 17:04:28.252 INFO [27942]: COREGRADE is starting... -- 17:04:28.252 INFO [27942]: Version from config: 1.0 -- 17:04:28.252 DEBUG [27942]: Connecting to database... -- 17:04:28.252 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:28.252 SQL [27942]: pgsql_db_connect() -- 17:04:28.258 INFO [27472]: COREGRADE is starting... -- 17:04:28.258 INFO [27472]: Version from config: 1.0 -- 17:04:28.258 DEBUG [27472]: Connecting to database... -- 17:04:28.258 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:28.258 SQL [27472]: pgsql_db_connect() -- 17:04:28.260 INFO [28926]: COREGRADE is starting... -- 17:04:28.260 INFO [28926]: Version from config: 1.0 -- 17:04:28.260 DEBUG [28926]: Connecting to database... -- 17:04:28.260 DEBUG [28926]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:28.260 SQL [28926]: pgsql_db_connect() -- 17:04:28.251 DEBUG [27585]: Database connection successful -- 17:04:28.251 INFO [27585]: _SERVER found -- 17:04:28.251 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 17:04:28.251 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:28.251 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:28.251 INFO [27585]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 17:04:28.251 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:28.263 INFO [27585]: COREGRADE is stopping... -- 17:04:28.263 DEBUG [27585]: Closing database connection -- 17:04:28.263 SQL [27585]: pgsql_close() -- 17:04:28.256 DEBUG [27942]: Database connection successful -- 17:04:28.256 INFO [27942]: _SERVER found -- 17:04:28.256 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:28.256 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:28.256 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:28.256 INFO [27942]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 17:04:28.256 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:28.269 INFO [27942]: COREGRADE is stopping... -- 17:04:28.269 DEBUG [27942]: Closing database connection -- 17:04:28.269 SQL [27942]: pgsql_close() -- 17:04:28.263 DEBUG [27472]: Database connection successful -- 17:04:28.263 INFO [27472]: _SERVER found -- 17:04:28.263 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:04:28.263 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:28.263 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:28.263 INFO [27472]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 17:04:28.263 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:28.275 INFO [27472]: COREGRADE is stopping... -- 17:04:28.275 DEBUG [27472]: Closing database connection -- 17:04:28.275 SQL [27472]: pgsql_close() -- 17:04:28.265 DEBUG [28926]: Database connection successful -- 17:04:28.265 INFO [28926]: _SERVER found -- 17:04:28.265 INFO [28926]: REMOTE_ADDR = 10.0.0.15 -- 17:04:28.265 INFO [28926]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:28.265 INFO [28926]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:28.265 INFO [28926]: QUERY_STRING = /assets/customjs/general.js -- 17:04:28.265 INFO [28926]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:28.277 INFO [28926]: COREGRADE is stopping... -- 17:04:28.277 DEBUG [28926]: Closing database connection -- 17:04:28.277 SQL [28926]: pgsql_close() -- 17:04:28.349 INFO [28926]: COREGRADE is starting... -- 17:04:28.349 INFO [28926]: Version from config: 1.0 -- 17:04:28.349 DEBUG [28926]: Connecting to database... -- 17:04:28.349 DEBUG [28926]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:28.349 SQL [28926]: pgsql_db_connect() -- 17:04:28.353 DEBUG [28926]: Database connection successful -- 17:04:28.353 INFO [28926]: _SERVER found -- 17:04:28.353 INFO [28926]: REMOTE_ADDR = 10.0.0.15 -- 17:04:28.353 INFO [28926]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:28.353 INFO [28926]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:28.353 INFO [28926]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 17:04:28.353 INFO [28926]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:28.364 INFO [28926]: COREGRADE is stopping... -- 17:04:28.364 DEBUG [28926]: Closing database connection -- 17:04:28.364 SQL [28926]: pgsql_close() -- 17:04:28.439 INFO [28926]: COREGRADE is starting... -- 17:04:28.439 INFO [28926]: Version from config: 1.0 -- 17:04:28.439 DEBUG [28926]: Connecting to database... -- 17:04:28.439 DEBUG [28926]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:28.439 SQL [28926]: pgsql_db_connect() -- 17:04:28.444 DEBUG [28926]: Database connection successful -- 17:04:28.444 INFO [28926]: _SERVER found -- 17:04:28.444 INFO [28926]: REMOTE_ADDR = 10.0.0.15 -- 17:04:28.444 INFO [28926]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:28.444 INFO [28926]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:28.444 INFO [28926]: QUERY_STRING = /assets/js/pages/picker_date.js -- 17:04:28.444 INFO [28926]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:28.455 INFO [28926]: COREGRADE is stopping... -- 17:04:28.455 DEBUG [28926]: Closing database connection -- 17:04:28.455 SQL [28926]: pgsql_close() -- 17:04:28.529 INFO [28926]: COREGRADE is starting... -- 17:04:28.530 INFO [28926]: Version from config: 1.0 -- 17:04:28.530 DEBUG [28926]: Connecting to database... -- 17:04:28.530 DEBUG [28926]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:28.530 SQL [28926]: pgsql_db_connect() -- 17:04:28.534 DEBUG [28926]: Database connection successful -- 17:04:28.534 INFO [28926]: _SERVER found -- 17:04:28.534 INFO [28926]: REMOTE_ADDR = 10.0.0.15 -- 17:04:28.534 INFO [28926]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:28.534 INFO [28926]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:28.534 INFO [28926]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 17:04:28.534 INFO [28926]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:28.545 INFO [28926]: COREGRADE is stopping... -- 17:04:28.545 DEBUG [28926]: Closing database connection -- 17:04:28.545 SQL [28926]: pgsql_close() -- 17:04:28.617 INFO [28926]: COREGRADE is starting... -- 17:04:28.617 INFO [28926]: Version from config: 1.0 -- 17:04:28.617 DEBUG [28926]: Connecting to database... -- 17:04:28.617 DEBUG [28926]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:28.617 SQL [28926]: pgsql_db_connect() -- 17:04:28.621 DEBUG [28926]: Database connection successful -- 17:04:28.621 INFO [28926]: _SERVER found -- 17:04:28.621 INFO [28926]: REMOTE_ADDR = 10.0.0.15 -- 17:04:28.621 INFO [28926]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:28.621 INFO [28926]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:28.621 INFO [28926]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 17:04:28.621 INFO [28926]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:28.633 INFO [28926]: COREGRADE is stopping... -- 17:04:28.633 DEBUG [28926]: Closing database connection -- 17:04:28.633 SQL [28926]: pgsql_close() -- 17:04:28.705 INFO [28926]: COREGRADE is starting... -- 17:04:28.705 INFO [28926]: Version from config: 1.0 -- 17:04:28.705 DEBUG [28926]: Connecting to database... -- 17:04:28.705 DEBUG [28926]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:28.705 SQL [28926]: pgsql_db_connect() -- 17:04:28.709 DEBUG [28926]: Database connection successful -- 17:04:28.709 INFO [28926]: _SERVER found -- 17:04:28.709 INFO [28926]: REMOTE_ADDR = 10.0.0.15 -- 17:04:28.709 INFO [28926]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:28.709 INFO [28926]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:28.709 INFO [28926]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 17:04:28.709 INFO [28926]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:28.721 INFO [28926]: COREGRADE is stopping... -- 17:04:28.721 DEBUG [28926]: Closing database connection -- 17:04:28.721 SQL [28926]: pgsql_close() -- 17:04:28.793 INFO [28926]: COREGRADE is starting... -- 17:04:28.793 INFO [28926]: Version from config: 1.0 -- 17:04:28.793 DEBUG [28926]: Connecting to database... -- 17:04:28.793 DEBUG [28926]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:28.793 SQL [28926]: pgsql_db_connect() -- 17:04:28.797 DEBUG [28926]: Database connection successful -- 17:04:28.797 INFO [28926]: _SERVER found -- 17:04:28.797 INFO [28926]: REMOTE_ADDR = 10.0.0.15 -- 17:04:28.797 INFO [28926]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:28.797 INFO [28926]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:28.797 INFO [28926]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 17:04:28.797 INFO [28926]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:28.809 INFO [28926]: COREGRADE is stopping... -- 17:04:28.809 DEBUG [28926]: Closing database connection -- 17:04:28.809 SQL [28926]: pgsql_close() -- 17:04:28.881 INFO [28926]: COREGRADE is starting... -- 17:04:28.881 INFO [28926]: Version from config: 1.0 -- 17:04:28.881 DEBUG [28926]: Connecting to database... -- 17:04:28.881 DEBUG [28926]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:28.881 SQL [28926]: pgsql_db_connect() -- 17:04:28.885 DEBUG [28926]: Database connection successful -- 17:04:28.885 INFO [28926]: _SERVER found -- 17:04:28.885 INFO [28926]: REMOTE_ADDR = 10.0.0.15 -- 17:04:28.885 INFO [28926]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:28.885 INFO [28926]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:28.885 INFO [28926]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 17:04:28.885 INFO [28926]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:28.896 INFO [28926]: COREGRADE is stopping... -- 17:04:28.896 DEBUG [28926]: Closing database connection -- 17:04:28.896 SQL [28926]: pgsql_close() -- 17:04:28.980 INFO [28926]: COREGRADE is starting... -- 17:04:28.980 INFO [28926]: Version from config: 1.0 -- 17:04:28.980 DEBUG [28926]: Connecting to database... -- 17:04:28.980 DEBUG [28926]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:28.980 SQL [28926]: pgsql_db_connect() -- 17:04:28.984 DEBUG [28926]: Database connection successful -- 17:04:28.984 INFO [28926]: _SERVER found -- 17:04:28.984 INFO [28926]: REMOTE_ADDR = 10.0.0.15 -- 17:04:28.984 INFO [28926]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:28.984 INFO [28926]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:28.984 INFO [28926]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 17:04:28.984 INFO [28926]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:28.996 INFO [28926]: COREGRADE is stopping... -- 17:04:28.996 DEBUG [28926]: Closing database connection -- 17:04:28.996 SQL [28926]: pgsql_close() -- 17:04:29.068 INFO [28926]: COREGRADE is starting... -- 17:04:29.068 INFO [28926]: Version from config: 1.0 -- 17:04:29.068 DEBUG [28926]: Connecting to database... -- 17:04:29.068 DEBUG [28926]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:29.068 SQL [28926]: pgsql_db_connect() -- 17:04:29.072 DEBUG [28926]: Database connection successful -- 17:04:29.072 INFO [28926]: _SERVER found -- 17:04:29.072 INFO [28926]: REMOTE_ADDR = 10.0.0.15 -- 17:04:29.072 INFO [28926]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:29.072 INFO [28926]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:29.072 INFO [28926]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 17:04:29.072 INFO [28926]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:29.084 INFO [28926]: COREGRADE is stopping... -- 17:04:29.084 DEBUG [28926]: Closing database connection -- 17:04:29.084 SQL [28926]: pgsql_close() -- 17:04:29.203 INFO [28926]: COREGRADE is starting... -- 17:04:29.204 INFO [28926]: Version from config: 1.0 -- 17:04:29.204 DEBUG [28926]: Connecting to database... -- 17:04:29.204 DEBUG [28926]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:29.204 SQL [28926]: pgsql_db_connect() -- 17:04:29.208 DEBUG [28926]: Database connection successful -- 17:04:29.208 INFO [28926]: _SERVER found -- 17:04:29.208 INFO [28926]: REMOTE_ADDR = 10.0.0.15 -- 17:04:29.208 INFO [28926]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:29.208 INFO [28926]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:29.208 INFO [28926]: QUERY_STRING = /assets/customjs/general.js -- 17:04:29.208 INFO [28926]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:29.219 INFO [28926]: COREGRADE is stopping... -- 17:04:29.219 DEBUG [28926]: Closing database connection -- 17:04:29.219 SQL [28926]: pgsql_close() -- 17:04:30.929 INFO [28926]: COREGRADE is starting... -- 17:04:30.929 INFO [28926]: Version from config: 1.0 -- 17:04:30.929 DEBUG [28926]: Connecting to database... -- 17:04:30.929 DEBUG [28926]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:30.929 SQL [28926]: pgsql_db_connect() -- 17:04:30.934 DEBUG [28926]: Database connection successful -- 17:04:30.934 INFO [28926]: _SERVER found -- 17:04:30.934 INFO [28926]: REMOTE_ADDR = 10.0.0.15 -- 17:04:30.934 INFO [28926]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:30.934 INFO [28926]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:30.934 INFO [28926]: QUERY_STRING = /logout -- 17:04:30.934 INFO [28926]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:30.966 INFO [28926]: COREGRADE is stopping... -- 17:04:30.967 DEBUG [28926]: Closing database connection -- 17:04:30.967 SQL [28926]: pgsql_close() -- 17:04:31.039 INFO [28926]: COREGRADE is starting... -- 17:04:31.039 INFO [28926]: Version from config: 1.0 -- 17:04:31.039 DEBUG [28926]: Connecting to database... -- 17:04:31.039 DEBUG [28926]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:31.039 SQL [28926]: pgsql_db_connect() -- 17:04:31.043 DEBUG [28926]: Database connection successful -- 17:04:31.043 INFO [28926]: _SERVER found -- 17:04:31.043 INFO [28926]: REMOTE_ADDR = 10.0.0.15 -- 17:04:31.043 INFO [28926]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:31.043 INFO [28926]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:31.043 INFO [28926]: QUERY_STRING = /start -- 17:04:31.043 INFO [28926]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:31.083 INFO [28926]: COREGRADE is stopping... -- 17:04:31.083 DEBUG [28926]: Closing database connection -- 17:04:31.083 SQL [28926]: pgsql_close() -- 17:04:31.169 INFO [27472]: COREGRADE is starting... -- 17:04:31.169 INFO [27472]: Version from config: 1.0 -- 17:04:31.169 DEBUG [27472]: Connecting to database... -- 17:04:31.169 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:31.169 SQL [27472]: pgsql_db_connect() -- 17:04:31.174 INFO [27942]: COREGRADE is starting... -- 17:04:31.175 INFO [27942]: Version from config: 1.0 -- 17:04:31.175 DEBUG [27942]: Connecting to database... -- 17:04:31.175 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:31.175 SQL [27942]: pgsql_db_connect() -- 17:04:31.175 INFO [27585]: COREGRADE is starting... -- 17:04:31.176 INFO [27585]: Version from config: 1.0 -- 17:04:31.176 DEBUG [27585]: Connecting to database... -- 17:04:31.176 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:31.176 SQL [27585]: pgsql_db_connect() -- 17:04:31.177 INFO [27471]: COREGRADE is starting... -- 17:04:31.178 INFO [27471]: Version from config: 1.0 -- 17:04:31.178 DEBUG [27471]: Connecting to database... -- 17:04:31.178 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:31.178 SQL [27471]: pgsql_db_connect() -- 17:04:31.174 DEBUG [27472]: Database connection successful -- 17:04:31.174 INFO [27472]: _SERVER found -- 17:04:31.174 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:04:31.174 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:31.174 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:31.174 INFO [27472]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 17:04:31.174 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:31.185 INFO [27472]: COREGRADE is stopping... -- 17:04:31.185 DEBUG [27472]: Closing database connection -- 17:04:31.185 SQL [27472]: pgsql_close() -- 17:04:31.179 DEBUG [27942]: Database connection successful -- 17:04:31.179 INFO [27942]: _SERVER found -- 17:04:31.179 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:31.179 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:31.179 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:31.179 INFO [27942]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 17:04:31.179 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:31.191 INFO [27942]: COREGRADE is stopping... -- 17:04:31.191 DEBUG [27942]: Closing database connection -- 17:04:31.191 SQL [27942]: pgsql_close() -- 17:04:31.180 DEBUG [27585]: Database connection successful -- 17:04:31.180 INFO [27585]: _SERVER found -- 17:04:31.180 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 17:04:31.180 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:31.180 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:31.180 INFO [27585]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 17:04:31.180 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:31.191 INFO [27585]: COREGRADE is stopping... -- 17:04:31.191 DEBUG [27585]: Closing database connection -- 17:04:31.191 SQL [27585]: pgsql_close() -- 17:04:31.192 INFO [27523]: COREGRADE is starting... -- 17:04:31.192 INFO [27523]: Version from config: 1.0 -- 17:04:31.192 DEBUG [27523]: Connecting to database... -- 17:04:31.192 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:31.193 SQL [27523]: pgsql_db_connect() -- 17:04:31.181 DEBUG [27471]: Database connection successful -- 17:04:31.181 INFO [27471]: _SERVER found -- 17:04:31.181 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 17:04:31.181 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:31.181 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:31.181 INFO [27471]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 17:04:31.181 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:31.194 INFO [27471]: COREGRADE is stopping... -- 17:04:31.194 DEBUG [27471]: Closing database connection -- 17:04:31.194 SQL [27471]: pgsql_close() -- 17:04:31.198 DEBUG [27523]: Database connection successful -- 17:04:31.198 INFO [27523]: _SERVER found -- 17:04:31.198 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 17:04:31.198 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:31.198 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:31.198 INFO [27523]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 17:04:31.198 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:31.209 INFO [27523]: COREGRADE is stopping... -- 17:04:31.209 DEBUG [27523]: Closing database connection -- 17:04:31.209 SQL [27523]: pgsql_close() -- 17:04:31.238 INFO [28926]: COREGRADE is starting... -- 17:04:31.238 INFO [28926]: Version from config: 1.0 -- 17:04:31.238 DEBUG [28926]: Connecting to database... -- 17:04:31.238 DEBUG [28926]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:31.238 SQL [28926]: pgsql_db_connect() -- 17:04:31.242 DEBUG [28926]: Database connection successful -- 17:04:31.242 INFO [28926]: _SERVER found -- 17:04:31.242 INFO [28926]: REMOTE_ADDR = 10.0.0.15 -- 17:04:31.242 INFO [28926]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:31.242 INFO [28926]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:31.242 INFO [28926]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 17:04:31.242 INFO [28926]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:31.254 INFO [28926]: COREGRADE is stopping... -- 17:04:31.254 DEBUG [28926]: Closing database connection -- 17:04:31.254 SQL [28926]: pgsql_close() -- 17:04:31.257 INFO [27523]: COREGRADE is starting... -- 17:04:31.257 INFO [27523]: Version from config: 1.0 -- 17:04:31.257 DEBUG [27523]: Connecting to database... -- 17:04:31.257 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:31.257 SQL [27523]: pgsql_db_connect() -- 17:04:31.259 INFO [27471]: COREGRADE is starting... -- 17:04:31.259 INFO [27471]: Version from config: 1.0 -- 17:04:31.260 DEBUG [27471]: Connecting to database... -- 17:04:31.260 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:31.260 SQL [27471]: pgsql_db_connect() -- 17:04:31.260 INFO [27942]: COREGRADE is starting... -- 17:04:31.260 INFO [27942]: Version from config: 1.0 -- 17:04:31.260 DEBUG [27942]: Connecting to database... -- 17:04:31.260 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:31.260 SQL [27942]: pgsql_db_connect() -- 17:04:31.264 INFO [27585]: COREGRADE is starting... -- 17:04:31.264 INFO [27585]: Version from config: 1.0 -- 17:04:31.264 DEBUG [27585]: Connecting to database... -- 17:04:31.264 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:31.264 SQL [27585]: pgsql_db_connect() -- 17:04:31.262 DEBUG [27523]: Database connection successful -- 17:04:31.262 INFO [27523]: _SERVER found -- 17:04:31.262 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 17:04:31.262 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:31.262 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:31.262 INFO [27523]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 17:04:31.262 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:31.273 INFO [27523]: COREGRADE is stopping... -- 17:04:31.273 DEBUG [27523]: Closing database connection -- 17:04:31.273 SQL [27523]: pgsql_close() -- 17:04:31.264 DEBUG [27942]: Database connection successful -- 17:04:31.264 INFO [27942]: _SERVER found -- 17:04:31.264 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:31.264 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:31.264 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:31.264 INFO [27942]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 17:04:31.264 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:31.276 INFO [27942]: COREGRADE is stopping... -- 17:04:31.276 DEBUG [27942]: Closing database connection -- 17:04:31.276 SQL [27942]: pgsql_close() -- 17:04:31.263 DEBUG [27471]: Database connection successful -- 17:04:31.263 INFO [27471]: _SERVER found -- 17:04:31.263 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 17:04:31.263 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:31.263 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:31.263 INFO [27471]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 17:04:31.263 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:31.276 INFO [27471]: COREGRADE is stopping... -- 17:04:31.277 DEBUG [27471]: Closing database connection -- 17:04:31.277 SQL [27471]: pgsql_close() -- 17:04:31.277 INFO [27523]: COREGRADE is starting... -- 17:04:31.277 INFO [27523]: Version from config: 1.0 -- 17:04:31.277 DEBUG [27523]: Connecting to database... -- 17:04:31.277 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:31.277 SQL [27523]: pgsql_db_connect() -- 17:04:31.268 DEBUG [27585]: Database connection successful -- 17:04:31.268 INFO [27585]: _SERVER found -- 17:04:31.268 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 17:04:31.268 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:31.268 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:31.268 INFO [27585]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 17:04:31.268 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:31.280 INFO [27585]: COREGRADE is stopping... -- 17:04:31.280 DEBUG [27585]: Closing database connection -- 17:04:31.280 SQL [27585]: pgsql_close() -- 17:04:31.282 DEBUG [27523]: Database connection successful -- 17:04:31.282 INFO [27523]: _SERVER found -- 17:04:31.282 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 17:04:31.282 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:31.282 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:31.282 INFO [27523]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 17:04:31.282 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:31.293 INFO [27523]: COREGRADE is stopping... -- 17:04:31.293 DEBUG [27523]: Closing database connection -- 17:04:31.293 SQL [27523]: pgsql_close() -- 17:04:31.325 INFO [28926]: COREGRADE is starting... -- 17:04:31.325 INFO [28926]: Version from config: 1.0 -- 17:04:31.325 DEBUG [28926]: Connecting to database... -- 17:04:31.325 DEBUG [28926]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:31.325 SQL [28926]: pgsql_db_connect() -- 17:04:31.338 INFO [27523]: COREGRADE is starting... -- 17:04:31.338 INFO [27523]: Version from config: 1.0 -- 17:04:31.338 DEBUG [27523]: Connecting to database... -- 17:04:31.338 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:31.338 SQL [27523]: pgsql_db_connect() -- 17:04:31.329 DEBUG [28926]: Database connection successful -- 17:04:31.329 INFO [28926]: _SERVER found -- 17:04:31.329 INFO [28926]: REMOTE_ADDR = 10.0.0.15 -- 17:04:31.329 INFO [28926]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:31.329 INFO [28926]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:31.329 INFO [28926]: QUERY_STRING = /assets/js/pages/dashboard.js -- 17:04:31.329 INFO [28926]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:31.341 INFO [28926]: COREGRADE is stopping... -- 17:04:31.341 DEBUG [28926]: Closing database connection -- 17:04:31.341 SQL [28926]: pgsql_close() -- 17:04:31.342 INFO [27585]: COREGRADE is starting... -- 17:04:31.342 INFO [27585]: Version from config: 1.0 -- 17:04:31.342 DEBUG [27585]: Connecting to database... -- 17:04:31.342 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:31.342 SQL [27585]: pgsql_db_connect() -- 17:04:31.347 INFO [27942]: COREGRADE is starting... -- 17:04:31.348 INFO [27471]: COREGRADE is starting... -- 17:04:31.348 INFO [27942]: Version from config: 1.0 -- 17:04:31.348 DEBUG [27942]: Connecting to database... -- 17:04:31.348 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:31.348 SQL [27942]: pgsql_db_connect() -- 17:04:31.348 INFO [27471]: Version from config: 1.0 -- 17:04:31.348 DEBUG [27471]: Connecting to database... -- 17:04:31.348 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:31.348 SQL [27471]: pgsql_db_connect() -- 17:04:31.342 DEBUG [27523]: Database connection successful -- 17:04:31.342 INFO [27523]: _SERVER found -- 17:04:31.342 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 17:04:31.342 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:31.342 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:31.342 INFO [27523]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 17:04:31.342 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:31.354 INFO [27523]: COREGRADE is stopping... -- 17:04:31.354 DEBUG [27523]: Closing database connection -- 17:04:31.354 SQL [27523]: pgsql_close() -- 17:04:31.346 DEBUG [27585]: Database connection successful -- 17:04:31.346 INFO [27585]: _SERVER found -- 17:04:31.346 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 17:04:31.346 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:31.346 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:31.346 INFO [27585]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 17:04:31.346 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:31.358 INFO [27585]: COREGRADE is stopping... -- 17:04:31.358 DEBUG [27585]: Closing database connection -- 17:04:31.358 SQL [27585]: pgsql_close() -- 17:04:31.361 INFO [27523]: COREGRADE is starting... -- 17:04:31.361 INFO [27523]: Version from config: 1.0 -- 17:04:31.361 DEBUG [27523]: Connecting to database... -- 17:04:31.361 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:31.361 SQL [27523]: pgsql_db_connect() -- 17:04:31.352 DEBUG [27471]: Database connection successful -- 17:04:31.352 INFO [27471]: _SERVER found -- 17:04:31.352 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 17:04:31.352 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:31.352 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:31.352 INFO [27471]: QUERY_STRING = /assets/js/pages/picker_date.js -- 17:04:31.352 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:31.364 INFO [27471]: COREGRADE is stopping... -- 17:04:31.364 DEBUG [27471]: Closing database connection -- 17:04:31.364 SQL [27471]: pgsql_close() -- 17:04:31.352 DEBUG [27942]: Database connection successful -- 17:04:31.352 INFO [27942]: _SERVER found -- 17:04:31.352 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:31.352 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:31.352 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:31.352 INFO [27942]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 17:04:31.352 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:31.365 INFO [27942]: COREGRADE is stopping... -- 17:04:31.365 DEBUG [27942]: Closing database connection -- 17:04:31.365 SQL [27942]: pgsql_close() -- 17:04:31.366 DEBUG [27523]: Database connection successful -- 17:04:31.366 INFO [27523]: _SERVER found -- 17:04:31.366 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 17:04:31.366 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:31.366 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:31.366 INFO [27523]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 17:04:31.366 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:31.377 INFO [27523]: COREGRADE is stopping... -- 17:04:31.377 DEBUG [27523]: Closing database connection -- 17:04:31.377 SQL [27523]: pgsql_close() -- 17:04:31.413 INFO [28926]: COREGRADE is starting... -- 17:04:31.413 INFO [28926]: Version from config: 1.0 -- 17:04:31.413 DEBUG [28926]: Connecting to database... -- 17:04:31.413 DEBUG [28926]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:31.413 SQL [28926]: pgsql_db_connect() -- 17:04:31.418 INFO [27523]: COREGRADE is starting... -- 17:04:31.418 INFO [27523]: Version from config: 1.0 -- 17:04:31.418 DEBUG [27523]: Connecting to database... -- 17:04:31.418 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:31.418 SQL [27523]: pgsql_db_connect() -- 17:04:31.424 INFO [27942]: COREGRADE is starting... -- 17:04:31.424 INFO [27942]: Version from config: 1.0 -- 17:04:31.424 DEBUG [27942]: Connecting to database... -- 17:04:31.424 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:31.424 SQL [27942]: pgsql_db_connect() -- 17:04:31.417 DEBUG [28926]: Database connection successful -- 17:04:31.417 INFO [28926]: _SERVER found -- 17:04:31.417 INFO [28926]: REMOTE_ADDR = 10.0.0.15 -- 17:04:31.417 INFO [28926]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:31.417 INFO [28926]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:31.417 INFO [28926]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 17:04:31.417 INFO [28926]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:31.429 INFO [28926]: COREGRADE is stopping... -- 17:04:31.429 DEBUG [28926]: Closing database connection -- 17:04:31.429 SQL [28926]: pgsql_close() -- 17:04:31.432 INFO [27471]: COREGRADE is starting... -- 17:04:31.432 INFO [27471]: Version from config: 1.0 -- 17:04:31.432 DEBUG [27471]: Connecting to database... -- 17:04:31.432 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:31.432 SQL [27471]: pgsql_db_connect() -- 17:04:31.434 INFO [27585]: COREGRADE is starting... -- 17:04:31.434 INFO [27585]: Version from config: 1.0 -- 17:04:31.434 DEBUG [27585]: Connecting to database... -- 17:04:31.434 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:31.434 SQL [27585]: pgsql_db_connect() -- 17:04:31.422 DEBUG [27523]: Database connection successful -- 17:04:31.422 INFO [27523]: _SERVER found -- 17:04:31.422 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 17:04:31.422 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:31.422 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:31.422 INFO [27523]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 17:04:31.422 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:31.434 INFO [27523]: COREGRADE is stopping... -- 17:04:31.434 DEBUG [27523]: Closing database connection -- 17:04:31.434 SQL [27523]: pgsql_close() -- 17:04:31.429 DEBUG [27942]: Database connection successful -- 17:04:31.429 INFO [27942]: _SERVER found -- 17:04:31.429 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:31.429 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:31.429 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:31.429 INFO [27942]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 17:04:31.429 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:31.441 INFO [27942]: COREGRADE is stopping... -- 17:04:31.441 DEBUG [27942]: Closing database connection -- 17:04:31.441 SQL [27942]: pgsql_close() -- 17:04:31.445 INFO [27942]: COREGRADE is starting... -- 17:04:31.445 INFO [27942]: Version from config: 1.0 -- 17:04:31.445 DEBUG [27942]: Connecting to database... -- 17:04:31.445 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:31.445 SQL [27942]: pgsql_db_connect() -- 17:04:31.437 DEBUG [27471]: Database connection successful -- 17:04:31.437 INFO [27471]: _SERVER found -- 17:04:31.437 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 17:04:31.437 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:31.437 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:31.437 INFO [27471]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 17:04:31.437 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:31.448 INFO [27471]: COREGRADE is stopping... -- 17:04:31.448 DEBUG [27471]: Closing database connection -- 17:04:31.448 SQL [27471]: pgsql_close() -- 17:04:31.439 DEBUG [27585]: Database connection successful -- 17:04:31.439 INFO [27585]: _SERVER found -- 17:04:31.439 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 17:04:31.439 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:31.439 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:31.439 INFO [27585]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 17:04:31.439 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:31.451 INFO [27585]: COREGRADE is stopping... -- 17:04:31.451 DEBUG [27585]: Closing database connection -- 17:04:31.451 SQL [27585]: pgsql_close() -- 17:04:31.449 DEBUG [27942]: Database connection successful -- 17:04:31.449 INFO [27942]: _SERVER found -- 17:04:31.449 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:31.449 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:31.449 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:31.449 INFO [27942]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 17:04:31.449 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:31.461 INFO [27942]: COREGRADE is stopping... -- 17:04:31.461 DEBUG [27942]: Closing database connection -- 17:04:31.461 SQL [27942]: pgsql_close() -- 17:04:31.498 INFO [27942]: COREGRADE is starting... -- 17:04:31.499 INFO [27942]: Version from config: 1.0 -- 17:04:31.499 DEBUG [27942]: Connecting to database... -- 17:04:31.499 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:31.499 SQL [27942]: pgsql_db_connect() -- 17:04:31.499 INFO [28926]: COREGRADE is starting... -- 17:04:31.499 INFO [28926]: Version from config: 1.0 -- 17:04:31.499 DEBUG [28926]: Connecting to database... -- 17:04:31.499 DEBUG [28926]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:31.499 SQL [28926]: pgsql_db_connect() -- 17:04:31.503 DEBUG [28926]: Database connection successful -- 17:04:31.503 INFO [28926]: _SERVER found -- 17:04:31.503 INFO [28926]: REMOTE_ADDR = 10.0.0.15 -- 17:04:31.503 INFO [28926]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:31.503 INFO [28926]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:31.503 INFO [28926]: QUERY_STRING = /assets/customjs/general.js -- 17:04:31.503 INFO [28926]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:31.515 INFO [28926]: COREGRADE is stopping... -- 17:04:31.515 DEBUG [28926]: Closing database connection -- 17:04:31.515 SQL [28926]: pgsql_close() -- 17:04:31.503 DEBUG [27942]: Database connection successful -- 17:04:31.503 INFO [27942]: _SERVER found -- 17:04:31.503 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:31.503 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:31.503 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:31.503 INFO [27942]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 17:04:31.503 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:31.515 INFO [27942]: COREGRADE is stopping... -- 17:04:31.515 DEBUG [27942]: Closing database connection -- 17:04:31.515 SQL [27942]: pgsql_close() -- 17:04:31.581 INFO [27942]: COREGRADE is starting... -- 17:04:31.581 INFO [27942]: Version from config: 1.0 -- 17:04:31.581 DEBUG [27942]: Connecting to database... -- 17:04:31.581 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:31.581 SQL [27942]: pgsql_db_connect() -- 17:04:31.585 DEBUG [27942]: Database connection successful -- 17:04:31.585 INFO [27942]: _SERVER found -- 17:04:31.585 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:31.585 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:31.585 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:31.585 INFO [27942]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 17:04:31.585 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:31.597 INFO [27942]: COREGRADE is stopping... -- 17:04:31.597 DEBUG [27942]: Closing database connection -- 17:04:31.597 SQL [27942]: pgsql_close() -- 17:04:31.662 INFO [27942]: COREGRADE is starting... -- 17:04:31.663 INFO [27942]: Version from config: 1.0 -- 17:04:31.663 DEBUG [27942]: Connecting to database... -- 17:04:31.663 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:31.663 SQL [27942]: pgsql_db_connect() -- 17:04:31.667 DEBUG [27942]: Database connection successful -- 17:04:31.667 INFO [27942]: _SERVER found -- 17:04:31.667 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:31.667 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:31.667 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:31.667 INFO [27942]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 17:04:31.667 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:31.678 INFO [27942]: COREGRADE is stopping... -- 17:04:31.678 DEBUG [27942]: Closing database connection -- 17:04:31.678 SQL [27942]: pgsql_close() -- 17:04:31.744 INFO [27942]: COREGRADE is starting... -- 17:04:31.744 INFO [27942]: Version from config: 1.0 -- 17:04:31.744 DEBUG [27942]: Connecting to database... -- 17:04:31.744 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:31.744 SQL [27942]: pgsql_db_connect() -- 17:04:31.748 DEBUG [27942]: Database connection successful -- 17:04:31.748 INFO [27942]: _SERVER found -- 17:04:31.748 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:31.748 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:31.748 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:31.748 INFO [27942]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 17:04:31.748 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:31.760 INFO [27942]: COREGRADE is stopping... -- 17:04:31.760 DEBUG [27942]: Closing database connection -- 17:04:31.760 SQL [27942]: pgsql_close() -- 17:04:31.825 INFO [27942]: COREGRADE is starting... -- 17:04:31.826 INFO [27942]: Version from config: 1.0 -- 17:04:31.826 DEBUG [27942]: Connecting to database... -- 17:04:31.826 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:31.826 SQL [27942]: pgsql_db_connect() -- 17:04:31.830 DEBUG [27942]: Database connection successful -- 17:04:31.830 INFO [27942]: _SERVER found -- 17:04:31.830 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:31.830 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:31.830 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:31.830 INFO [27942]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 17:04:31.830 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:31.841 INFO [27942]: COREGRADE is stopping... -- 17:04:31.841 DEBUG [27942]: Closing database connection -- 17:04:31.841 SQL [27942]: pgsql_close() -- 17:04:31.907 INFO [27942]: COREGRADE is starting... -- 17:04:31.907 INFO [27942]: Version from config: 1.0 -- 17:04:31.907 DEBUG [27942]: Connecting to database... -- 17:04:31.907 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:31.907 SQL [27942]: pgsql_db_connect() -- 17:04:31.911 DEBUG [27942]: Database connection successful -- 17:04:31.911 INFO [27942]: _SERVER found -- 17:04:31.911 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:31.911 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:31.911 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:31.911 INFO [27942]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 17:04:31.911 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:31.923 INFO [27942]: COREGRADE is stopping... -- 17:04:31.923 DEBUG [27942]: Closing database connection -- 17:04:31.923 SQL [27942]: pgsql_close() -- 17:04:31.988 INFO [27942]: COREGRADE is starting... -- 17:04:31.988 INFO [27942]: Version from config: 1.0 -- 17:04:31.988 DEBUG [27942]: Connecting to database... -- 17:04:31.988 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:31.988 SQL [27942]: pgsql_db_connect() -- 17:04:31.993 DEBUG [27942]: Database connection successful -- 17:04:31.993 INFO [27942]: _SERVER found -- 17:04:31.993 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:31.993 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:31.993 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:31.993 INFO [27942]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 17:04:31.993 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:32.004 INFO [27942]: COREGRADE is stopping... -- 17:04:32.004 DEBUG [27942]: Closing database connection -- 17:04:32.004 SQL [27942]: pgsql_close() -- 17:04:32.070 INFO [27942]: COREGRADE is starting... -- 17:04:32.071 INFO [27942]: Version from config: 1.0 -- 17:04:32.071 DEBUG [27942]: Connecting to database... -- 17:04:32.071 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:32.071 SQL [27942]: pgsql_db_connect() -- 17:04:32.075 DEBUG [27942]: Database connection successful -- 17:04:32.075 INFO [27942]: _SERVER found -- 17:04:32.075 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:32.075 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:32.075 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:32.075 INFO [27942]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 17:04:32.075 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:32.087 INFO [27942]: COREGRADE is stopping... -- 17:04:32.087 DEBUG [27942]: Closing database connection -- 17:04:32.087 SQL [27942]: pgsql_close() -- 17:04:32.152 INFO [27942]: COREGRADE is starting... -- 17:04:32.153 INFO [27942]: Version from config: 1.0 -- 17:04:32.153 DEBUG [27942]: Connecting to database... -- 17:04:32.153 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:32.153 SQL [27942]: pgsql_db_connect() -- 17:04:32.157 DEBUG [27942]: Database connection successful -- 17:04:32.157 INFO [27942]: _SERVER found -- 17:04:32.157 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:32.157 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:32.157 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:32.157 INFO [27942]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 17:04:32.157 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:32.168 INFO [27942]: COREGRADE is stopping... -- 17:04:32.168 DEBUG [27942]: Closing database connection -- 17:04:32.168 SQL [27942]: pgsql_close() -- 17:04:32.234 INFO [27942]: COREGRADE is starting... -- 17:04:32.234 INFO [27942]: Version from config: 1.0 -- 17:04:32.234 DEBUG [27942]: Connecting to database... -- 17:04:32.234 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:32.234 SQL [27942]: pgsql_db_connect() -- 17:04:32.238 DEBUG [27942]: Database connection successful -- 17:04:32.238 INFO [27942]: _SERVER found -- 17:04:32.238 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:32.238 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:32.238 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:32.238 INFO [27942]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 17:04:32.238 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:32.250 INFO [27942]: COREGRADE is stopping... -- 17:04:32.250 DEBUG [27942]: Closing database connection -- 17:04:32.250 SQL [27942]: pgsql_close() -- 17:04:32.316 INFO [27942]: COREGRADE is starting... -- 17:04:32.316 INFO [27942]: Version from config: 1.0 -- 17:04:32.316 DEBUG [27942]: Connecting to database... -- 17:04:32.316 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:32.316 SQL [27942]: pgsql_db_connect() -- 17:04:32.320 DEBUG [27942]: Database connection successful -- 17:04:32.320 INFO [27942]: _SERVER found -- 17:04:32.320 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:32.320 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:32.320 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:32.320 INFO [27942]: QUERY_STRING = /assets/js/pages/dashboard.js -- 17:04:32.320 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:32.332 INFO [27942]: COREGRADE is stopping... -- 17:04:32.332 DEBUG [27942]: Closing database connection -- 17:04:32.332 SQL [27942]: pgsql_close() -- 17:04:32.401 INFO [27942]: COREGRADE is starting... -- 17:04:32.402 INFO [27942]: Version from config: 1.0 -- 17:04:32.402 DEBUG [27942]: Connecting to database... -- 17:04:32.402 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:32.402 SQL [27942]: pgsql_db_connect() -- 17:04:32.406 DEBUG [27942]: Database connection successful -- 17:04:32.406 INFO [27942]: _SERVER found -- 17:04:32.406 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:32.406 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:32.406 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:32.406 INFO [27942]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 17:04:32.406 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:32.417 INFO [27942]: COREGRADE is stopping... -- 17:04:32.417 DEBUG [27942]: Closing database connection -- 17:04:32.418 SQL [27942]: pgsql_close() -- 17:04:32.483 INFO [27942]: COREGRADE is starting... -- 17:04:32.483 INFO [27942]: Version from config: 1.0 -- 17:04:32.483 DEBUG [27942]: Connecting to database... -- 17:04:32.483 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:32.483 SQL [27942]: pgsql_db_connect() -- 17:04:32.488 DEBUG [27942]: Database connection successful -- 17:04:32.488 INFO [27942]: _SERVER found -- 17:04:32.488 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:32.488 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:32.488 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:32.488 INFO [27942]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 17:04:32.488 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:32.499 INFO [27942]: COREGRADE is stopping... -- 17:04:32.499 DEBUG [27942]: Closing database connection -- 17:04:32.499 SQL [27942]: pgsql_close() -- 17:04:32.565 INFO [27942]: COREGRADE is starting... -- 17:04:32.565 INFO [27942]: Version from config: 1.0 -- 17:04:32.565 DEBUG [27942]: Connecting to database... -- 17:04:32.565 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:32.565 SQL [27942]: pgsql_db_connect() -- 17:04:32.569 DEBUG [27942]: Database connection successful -- 17:04:32.569 INFO [27942]: _SERVER found -- 17:04:32.569 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:32.569 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:32.569 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:32.569 INFO [27942]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 17:04:32.569 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:32.580 INFO [27942]: COREGRADE is stopping... -- 17:04:32.580 DEBUG [27942]: Closing database connection -- 17:04:32.581 SQL [27942]: pgsql_close() -- 17:04:32.648 INFO [27942]: COREGRADE is starting... -- 17:04:32.649 INFO [27942]: Version from config: 1.0 -- 17:04:32.649 DEBUG [27942]: Connecting to database... -- 17:04:32.649 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:32.649 SQL [27942]: pgsql_db_connect() -- 17:04:32.653 DEBUG [27942]: Database connection successful -- 17:04:32.653 INFO [27942]: _SERVER found -- 17:04:32.653 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:32.653 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:32.653 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:32.653 INFO [27942]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 17:04:32.653 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:32.664 INFO [27942]: COREGRADE is stopping... -- 17:04:32.664 DEBUG [27942]: Closing database connection -- 17:04:32.664 SQL [27942]: pgsql_close() -- 17:04:32.730 INFO [27942]: COREGRADE is starting... -- 17:04:32.730 INFO [27942]: Version from config: 1.0 -- 17:04:32.730 DEBUG [27942]: Connecting to database... -- 17:04:32.730 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:32.730 SQL [27942]: pgsql_db_connect() -- 17:04:32.734 DEBUG [27942]: Database connection successful -- 17:04:32.734 INFO [27942]: _SERVER found -- 17:04:32.735 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:32.735 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:32.735 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:32.735 INFO [27942]: QUERY_STRING = /assets/js/pages/picker_date.js -- 17:04:32.735 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:32.746 INFO [27942]: COREGRADE is stopping... -- 17:04:32.746 DEBUG [27942]: Closing database connection -- 17:04:32.746 SQL [27942]: pgsql_close() -- 17:04:32.812 INFO [27942]: COREGRADE is starting... -- 17:04:32.812 INFO [27942]: Version from config: 1.0 -- 17:04:32.812 DEBUG [27942]: Connecting to database... -- 17:04:32.812 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:32.812 SQL [27942]: pgsql_db_connect() -- 17:04:32.816 DEBUG [27942]: Database connection successful -- 17:04:32.816 INFO [27942]: _SERVER found -- 17:04:32.816 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:32.816 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:32.816 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:32.816 INFO [27942]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 17:04:32.816 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:32.827 INFO [27942]: COREGRADE is stopping... -- 17:04:32.827 DEBUG [27942]: Closing database connection -- 17:04:32.827 SQL [27942]: pgsql_close() -- 17:04:32.896 INFO [27942]: COREGRADE is starting... -- 17:04:32.896 INFO [27942]: Version from config: 1.0 -- 17:04:32.896 DEBUG [27942]: Connecting to database... -- 17:04:32.896 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:32.896 SQL [27942]: pgsql_db_connect() -- 17:04:32.900 DEBUG [27942]: Database connection successful -- 17:04:32.900 INFO [27942]: _SERVER found -- 17:04:32.900 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:32.900 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:32.900 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:32.900 INFO [27942]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 17:04:32.900 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:32.912 INFO [27942]: COREGRADE is stopping... -- 17:04:32.912 DEBUG [27942]: Closing database connection -- 17:04:32.912 SQL [27942]: pgsql_close() -- 17:04:32.977 INFO [27942]: COREGRADE is starting... -- 17:04:32.977 INFO [27942]: Version from config: 1.0 -- 17:04:32.977 DEBUG [27942]: Connecting to database... -- 17:04:32.978 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:32.978 SQL [27942]: pgsql_db_connect() -- 17:04:32.982 DEBUG [27942]: Database connection successful -- 17:04:32.982 INFO [27942]: _SERVER found -- 17:04:32.982 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:32.982 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:32.982 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:32.982 INFO [27942]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 17:04:32.982 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:32.993 INFO [27942]: COREGRADE is stopping... -- 17:04:32.993 DEBUG [27942]: Closing database connection -- 17:04:32.993 SQL [27942]: pgsql_close() -- 17:04:33.059 INFO [27942]: COREGRADE is starting... -- 17:04:33.059 INFO [27942]: Version from config: 1.0 -- 17:04:33.059 DEBUG [27942]: Connecting to database... -- 17:04:33.059 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:33.059 SQL [27942]: pgsql_db_connect() -- 17:04:33.063 DEBUG [27942]: Database connection successful -- 17:04:33.063 INFO [27942]: _SERVER found -- 17:04:33.063 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:33.063 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:33.063 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:33.063 INFO [27942]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 17:04:33.063 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:33.075 INFO [27942]: COREGRADE is stopping... -- 17:04:33.075 DEBUG [27942]: Closing database connection -- 17:04:33.075 SQL [27942]: pgsql_close() -- 17:04:33.143 INFO [27942]: COREGRADE is starting... -- 17:04:33.143 INFO [27942]: Version from config: 1.0 -- 17:04:33.143 DEBUG [27942]: Connecting to database... -- 17:04:33.143 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:33.143 SQL [27942]: pgsql_db_connect() -- 17:04:33.147 DEBUG [27942]: Database connection successful -- 17:04:33.147 INFO [27942]: _SERVER found -- 17:04:33.147 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:33.147 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:33.147 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:33.147 INFO [27942]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 17:04:33.147 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:33.159 INFO [27942]: COREGRADE is stopping... -- 17:04:33.159 DEBUG [27942]: Closing database connection -- 17:04:33.159 SQL [27942]: pgsql_close() -- 17:04:33.236 INFO [27942]: COREGRADE is starting... -- 17:04:33.236 INFO [27942]: Version from config: 1.0 -- 17:04:33.236 DEBUG [27942]: Connecting to database... -- 17:04:33.236 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:33.236 SQL [27942]: pgsql_db_connect() -- 17:04:33.240 DEBUG [27942]: Database connection successful -- 17:04:33.240 INFO [27942]: _SERVER found -- 17:04:33.240 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:33.240 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:33.240 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:33.240 INFO [27942]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 17:04:33.240 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:33.252 INFO [27942]: COREGRADE is stopping... -- 17:04:33.252 DEBUG [27942]: Closing database connection -- 17:04:33.252 SQL [27942]: pgsql_close() -- 17:04:33.318 INFO [27942]: COREGRADE is starting... -- 17:04:33.318 INFO [27942]: Version from config: 1.0 -- 17:04:33.318 DEBUG [27942]: Connecting to database... -- 17:04:33.318 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:33.318 SQL [27942]: pgsql_db_connect() -- 17:04:33.322 DEBUG [27942]: Database connection successful -- 17:04:33.322 INFO [27942]: _SERVER found -- 17:04:33.322 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:33.322 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:33.322 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:33.322 INFO [27942]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 17:04:33.322 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:33.334 INFO [27942]: COREGRADE is stopping... -- 17:04:33.334 DEBUG [27942]: Closing database connection -- 17:04:33.334 SQL [27942]: pgsql_close() -- 17:04:33.435 INFO [27942]: COREGRADE is starting... -- 17:04:33.435 INFO [27942]: Version from config: 1.0 -- 17:04:33.435 DEBUG [27942]: Connecting to database... -- 17:04:33.435 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:04:33.435 SQL [27942]: pgsql_db_connect() -- 17:04:33.440 DEBUG [27942]: Database connection successful -- 17:04:33.440 INFO [27942]: _SERVER found -- 17:04:33.440 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:04:33.440 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:04:33.440 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:04:33.440 INFO [27942]: QUERY_STRING = /assets/customjs/general.js -- 17:04:33.440 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:04:33.451 INFO [27942]: COREGRADE is stopping... -- 17:04:33.451 DEBUG [27942]: Closing database connection -- 17:04:33.451 SQL [27942]: pgsql_close() -- 17:06:10.247 INFO [27584]: COREGRADE is starting... -- 17:06:10.248 INFO [27584]: Version from config: 1.0 -- 17:06:10.248 DEBUG [27584]: Connecting to database... -- 17:06:10.248 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:10.248 SQL [27584]: pgsql_db_connect() -- 17:06:10.252 DEBUG [27584]: Database connection successful -- 17:06:10.252 INFO [27584]: _SERVER found -- 17:06:10.252 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 17:06:10.252 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:10.252 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:10.252 INFO [27584]: QUERY_STRING = /start -- 17:06:10.252 INFO [27584]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:10.288 INFO [27584]: COREGRADE is stopping... -- 17:06:10.288 DEBUG [27584]: Closing database connection -- 17:06:10.288 SQL [27584]: pgsql_close() -- 17:06:10.392 INFO [27584]: COREGRADE is starting... -- 17:06:10.392 INFO [27584]: Version from config: 1.0 -- 17:06:10.392 DEBUG [27584]: Connecting to database... -- 17:06:10.392 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:10.392 SQL [27584]: pgsql_db_connect() -- 17:06:10.396 DEBUG [27584]: Database connection successful -- 17:06:10.396 INFO [27584]: _SERVER found -- 17:06:10.396 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 17:06:10.396 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:10.396 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:10.396 INFO [27584]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 17:06:10.396 INFO [27584]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:10.407 INFO [27584]: COREGRADE is stopping... -- 17:06:10.407 DEBUG [27584]: Closing database connection -- 17:06:10.407 SQL [27584]: pgsql_close() -- 17:06:10.451 INFO [27584]: COREGRADE is starting... -- 17:06:10.451 INFO [27584]: Version from config: 1.0 -- 17:06:10.451 DEBUG [27584]: Connecting to database... -- 17:06:10.451 DEBUG [27584]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:10.451 SQL [27584]: pgsql_db_connect() -- 17:06:10.460 INFO [27470]: COREGRADE is starting... -- 17:06:10.460 INFO [27470]: Version from config: 1.0 -- 17:06:10.460 DEBUG [27470]: Connecting to database... -- 17:06:10.460 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:10.460 SQL [27470]: pgsql_db_connect() -- 17:06:10.464 INFO [27583]: COREGRADE is starting... -- 17:06:10.465 INFO [27583]: Version from config: 1.0 -- 17:06:10.465 DEBUG [27583]: Connecting to database... -- 17:06:10.465 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:10.465 SQL [27583]: pgsql_db_connect() -- 17:06:10.467 INFO [29019]: COREGRADE is starting... -- 17:06:10.456 DEBUG [27584]: Database connection successful -- 17:06:10.456 INFO [27584]: _SERVER found -- 17:06:10.456 INFO [27584]: REMOTE_ADDR = 10.0.0.15 -- 17:06:10.456 INFO [27584]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:10.456 INFO [27584]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:10.456 INFO [27584]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 17:06:10.456 INFO [27584]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:10.467 INFO [27584]: COREGRADE is stopping... -- 17:06:10.467 DEBUG [27584]: Closing database connection -- 17:06:10.467 SQL [27584]: pgsql_close() -- 17:06:10.468 INFO [29019]: Version from config: 1.0 -- 17:06:10.468 DEBUG [29019]: Connecting to database... -- 17:06:10.468 DEBUG [29019]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:10.468 SQL [29019]: pgsql_db_connect() -- 17:06:10.472 INFO [27472]: COREGRADE is starting... -- 17:06:10.473 INFO [27472]: Version from config: 1.0 -- 17:06:10.473 DEBUG [27472]: Connecting to database... -- 17:06:10.473 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:10.473 SQL [27472]: pgsql_db_connect() -- 17:06:10.465 DEBUG [27470]: Database connection successful -- 17:06:10.465 INFO [27470]: _SERVER found -- 17:06:10.465 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 17:06:10.465 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:10.465 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:10.465 INFO [27470]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 17:06:10.465 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:10.478 INFO [27470]: COREGRADE is stopping... -- 17:06:10.478 DEBUG [27470]: Closing database connection -- 17:06:10.478 SQL [27470]: pgsql_close() -- 17:06:10.469 DEBUG [27583]: Database connection successful -- 17:06:10.469 INFO [27583]: _SERVER found -- 17:06:10.469 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 17:06:10.469 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:10.469 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:10.469 INFO [27583]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 17:06:10.469 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:10.481 INFO [27583]: COREGRADE is stopping... -- 17:06:10.481 DEBUG [27583]: Closing database connection -- 17:06:10.481 SQL [27583]: pgsql_close() -- 17:06:10.486 INFO [27583]: COREGRADE is starting... -- 17:06:10.487 INFO [27583]: Version from config: 1.0 -- 17:06:10.487 DEBUG [27583]: Connecting to database... -- 17:06:10.487 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:10.487 SQL [27583]: pgsql_db_connect() -- 17:06:10.472 DEBUG [29019]: Database connection successful -- 17:06:10.472 INFO [29019]: _SERVER found -- 17:06:10.472 INFO [29019]: REMOTE_ADDR = 10.0.0.15 -- 17:06:10.472 INFO [29019]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:10.472 INFO [29019]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:10.472 INFO [29019]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 17:06:10.472 INFO [29019]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:10.488 INFO [29019]: COREGRADE is stopping... -- 17:06:10.488 DEBUG [29019]: Closing database connection -- 17:06:10.488 SQL [29019]: pgsql_close() -- 17:06:10.477 DEBUG [27472]: Database connection successful -- 17:06:10.477 INFO [27472]: _SERVER found -- 17:06:10.477 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:06:10.477 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:10.477 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:10.477 INFO [27472]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 17:06:10.477 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:10.488 INFO [27472]: COREGRADE is stopping... -- 17:06:10.488 DEBUG [27472]: Closing database connection -- 17:06:10.488 SQL [27472]: pgsql_close() -- 17:06:10.491 DEBUG [27583]: Database connection successful -- 17:06:10.491 INFO [27583]: _SERVER found -- 17:06:10.491 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 17:06:10.491 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:10.491 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:10.491 INFO [27583]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 17:06:10.491 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:10.502 INFO [27583]: COREGRADE is stopping... -- 17:06:10.502 DEBUG [27583]: Closing database connection -- 17:06:10.502 SQL [27583]: pgsql_close() -- 17:06:10.545 INFO [27583]: COREGRADE is starting... -- 17:06:10.545 INFO [27583]: Version from config: 1.0 -- 17:06:10.545 DEBUG [27583]: Connecting to database... -- 17:06:10.545 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:10.545 SQL [27583]: pgsql_db_connect() -- 17:06:10.549 DEBUG [27583]: Database connection successful -- 17:06:10.549 INFO [27583]: _SERVER found -- 17:06:10.549 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 17:06:10.549 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:10.549 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:10.549 INFO [27583]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 17:06:10.549 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:10.560 INFO [27583]: COREGRADE is stopping... -- 17:06:10.560 DEBUG [27583]: Closing database connection -- 17:06:10.560 SQL [27583]: pgsql_close() -- 17:06:10.561 INFO [27470]: COREGRADE is starting... -- 17:06:10.562 INFO [27470]: Version from config: 1.0 -- 17:06:10.562 DEBUG [27470]: Connecting to database... -- 17:06:10.562 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:10.562 SQL [27470]: pgsql_db_connect() -- 17:06:10.562 INFO [29019]: COREGRADE is starting... -- 17:06:10.563 INFO [29019]: Version from config: 1.0 -- 17:06:10.563 DEBUG [29019]: Connecting to database... -- 17:06:10.563 DEBUG [29019]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:10.563 SQL [29019]: pgsql_db_connect() -- 17:06:10.566 INFO [27583]: COREGRADE is starting... -- 17:06:10.566 INFO [27583]: Version from config: 1.0 -- 17:06:10.566 DEBUG [27583]: Connecting to database... -- 17:06:10.566 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:10.566 SQL [27583]: pgsql_db_connect() -- 17:06:10.571 INFO [27472]: COREGRADE is starting... -- 17:06:10.571 INFO [27472]: Version from config: 1.0 -- 17:06:10.571 DEBUG [27472]: Connecting to database... -- 17:06:10.571 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:10.571 SQL [27472]: pgsql_db_connect() -- 17:06:10.566 DEBUG [27470]: Database connection successful -- 17:06:10.566 INFO [27470]: _SERVER found -- 17:06:10.566 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 17:06:10.566 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:10.566 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:10.566 INFO [27470]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 17:06:10.566 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:10.578 INFO [27470]: COREGRADE is stopping... -- 17:06:10.578 DEBUG [27470]: Closing database connection -- 17:06:10.578 SQL [27470]: pgsql_close() -- 17:06:10.566 DEBUG [29019]: Database connection successful -- 17:06:10.566 INFO [29019]: _SERVER found -- 17:06:10.566 INFO [29019]: REMOTE_ADDR = 10.0.0.15 -- 17:06:10.566 INFO [29019]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:10.566 INFO [29019]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:10.566 INFO [29019]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 17:06:10.566 INFO [29019]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:10.578 INFO [29019]: COREGRADE is stopping... -- 17:06:10.578 DEBUG [29019]: Closing database connection -- 17:06:10.578 SQL [29019]: pgsql_close() -- 17:06:10.570 DEBUG [27583]: Database connection successful -- 17:06:10.570 INFO [27583]: _SERVER found -- 17:06:10.570 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 17:06:10.570 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:10.570 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:10.570 INFO [27583]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 17:06:10.570 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:10.582 INFO [27583]: COREGRADE is stopping... -- 17:06:10.582 DEBUG [27583]: Closing database connection -- 17:06:10.582 SQL [27583]: pgsql_close() -- 17:06:10.582 INFO [27470]: COREGRADE is starting... -- 17:06:10.583 INFO [27470]: Version from config: 1.0 -- 17:06:10.583 DEBUG [27470]: Connecting to database... -- 17:06:10.583 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:10.583 SQL [27470]: pgsql_db_connect() -- 17:06:10.575 DEBUG [27472]: Database connection successful -- 17:06:10.575 INFO [27472]: _SERVER found -- 17:06:10.575 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:06:10.575 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:10.575 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:10.575 INFO [27472]: QUERY_STRING = /assets/js/pages/dashboard.js -- 17:06:10.576 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:10.587 INFO [27472]: COREGRADE is stopping... -- 17:06:10.587 DEBUG [27472]: Closing database connection -- 17:06:10.587 SQL [27472]: pgsql_close() -- 17:06:10.587 DEBUG [27470]: Database connection successful -- 17:06:10.587 INFO [27470]: _SERVER found -- 17:06:10.587 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 17:06:10.587 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:10.587 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:10.587 INFO [27470]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 17:06:10.587 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:10.599 INFO [27470]: COREGRADE is stopping... -- 17:06:10.599 DEBUG [27470]: Closing database connection -- 17:06:10.599 SQL [27470]: pgsql_close() -- 17:06:10.644 INFO [27470]: COREGRADE is starting... -- 17:06:10.644 INFO [27583]: COREGRADE is starting... -- 17:06:10.644 INFO [27470]: Version from config: 1.0 -- 17:06:10.644 DEBUG [27470]: Connecting to database... -- 17:06:10.644 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:10.644 SQL [27470]: pgsql_db_connect() -- 17:06:10.644 INFO [27583]: Version from config: 1.0 -- 17:06:10.644 DEBUG [27583]: Connecting to database... -- 17:06:10.644 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:10.644 SQL [27583]: pgsql_db_connect() -- 17:06:10.648 DEBUG [27583]: Database connection successful -- 17:06:10.648 INFO [27583]: _SERVER found -- 17:06:10.648 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 17:06:10.648 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:10.648 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:10.648 INFO [27583]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 17:06:10.648 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:10.660 INFO [27583]: COREGRADE is stopping... -- 17:06:10.660 DEBUG [27583]: Closing database connection -- 17:06:10.660 SQL [27583]: pgsql_close() -- 17:06:10.648 DEBUG [27470]: Database connection successful -- 17:06:10.648 INFO [27470]: _SERVER found -- 17:06:10.648 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 17:06:10.648 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:10.648 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:10.648 INFO [27470]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 17:06:10.648 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:10.660 INFO [27470]: COREGRADE is stopping... -- 17:06:10.660 DEBUG [27470]: Closing database connection -- 17:06:10.660 SQL [27470]: pgsql_close() -- 17:06:10.661 INFO [29019]: COREGRADE is starting... -- 17:06:10.661 INFO [29019]: Version from config: 1.0 -- 17:06:10.661 DEBUG [29019]: Connecting to database... -- 17:06:10.661 DEBUG [29019]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:10.661 SQL [29019]: pgsql_db_connect() -- 17:06:10.665 INFO [27470]: COREGRADE is starting... -- 17:06:10.665 INFO [27470]: Version from config: 1.0 -- 17:06:10.665 DEBUG [27470]: Connecting to database... -- 17:06:10.665 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:10.665 SQL [27470]: pgsql_db_connect() -- 17:06:10.670 INFO [27472]: COREGRADE is starting... -- 17:06:10.670 INFO [27472]: Version from config: 1.0 -- 17:06:10.670 DEBUG [27472]: Connecting to database... -- 17:06:10.670 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:10.670 SQL [27472]: pgsql_db_connect() -- 17:06:10.666 DEBUG [29019]: Database connection successful -- 17:06:10.666 INFO [29019]: _SERVER found -- 17:06:10.666 INFO [29019]: REMOTE_ADDR = 10.0.0.15 -- 17:06:10.666 INFO [29019]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:10.666 INFO [29019]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:10.666 INFO [29019]: QUERY_STRING = /assets/js/pages/picker_date.js -- 17:06:10.666 INFO [29019]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:10.677 INFO [29019]: COREGRADE is stopping... -- 17:06:10.678 DEBUG [29019]: Closing database connection -- 17:06:10.678 SQL [29019]: pgsql_close() -- 17:06:10.678 INFO [27583]: COREGRADE is starting... -- 17:06:10.678 INFO [27583]: Version from config: 1.0 -- 17:06:10.678 DEBUG [27583]: Connecting to database... -- 17:06:10.678 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:10.678 SQL [27583]: pgsql_db_connect() -- 17:06:10.669 DEBUG [27470]: Database connection successful -- 17:06:10.669 INFO [27470]: _SERVER found -- 17:06:10.669 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 17:06:10.669 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:10.669 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:10.669 INFO [27470]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 17:06:10.669 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:10.682 INFO [27470]: COREGRADE is stopping... -- 17:06:10.682 DEBUG [27470]: Closing database connection -- 17:06:10.682 SQL [27470]: pgsql_close() -- 17:06:10.674 DEBUG [27472]: Database connection successful -- 17:06:10.674 INFO [27472]: _SERVER found -- 17:06:10.674 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:06:10.674 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:10.674 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:10.674 INFO [27472]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 17:06:10.674 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:10.686 INFO [27472]: COREGRADE is stopping... -- 17:06:10.686 DEBUG [27472]: Closing database connection -- 17:06:10.686 SQL [27472]: pgsql_close() -- 17:06:10.683 DEBUG [27583]: Database connection successful -- 17:06:10.683 INFO [27583]: _SERVER found -- 17:06:10.683 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 17:06:10.683 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:10.683 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:10.683 INFO [27583]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 17:06:10.683 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:10.695 INFO [27583]: COREGRADE is stopping... -- 17:06:10.695 DEBUG [27583]: Closing database connection -- 17:06:10.695 SQL [27583]: pgsql_close() -- 17:06:10.727 INFO [27583]: COREGRADE is starting... -- 17:06:10.727 INFO [27583]: Version from config: 1.0 -- 17:06:10.727 DEBUG [27583]: Connecting to database... -- 17:06:10.727 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:10.727 SQL [27583]: pgsql_db_connect() -- 17:06:10.742 INFO [27470]: COREGRADE is starting... -- 17:06:10.743 INFO [27470]: Version from config: 1.0 -- 17:06:10.743 DEBUG [27470]: Connecting to database... -- 17:06:10.743 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:10.743 SQL [27470]: pgsql_db_connect() -- 17:06:10.731 DEBUG [27583]: Database connection successful -- 17:06:10.731 INFO [27583]: _SERVER found -- 17:06:10.731 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 17:06:10.731 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:10.731 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:10.731 INFO [27583]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 17:06:10.731 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:10.743 INFO [27583]: COREGRADE is stopping... -- 17:06:10.743 DEBUG [27583]: Closing database connection -- 17:06:10.743 SQL [27583]: pgsql_close() -- 17:06:10.757 INFO [27583]: COREGRADE is starting... -- 17:06:10.757 INFO [27583]: Version from config: 1.0 -- 17:06:10.757 DEBUG [27583]: Connecting to database... -- 17:06:10.757 DEBUG [27583]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:10.757 SQL [27583]: pgsql_db_connect() -- 17:06:10.747 DEBUG [27470]: Database connection successful -- 17:06:10.747 INFO [27470]: _SERVER found -- 17:06:10.747 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 17:06:10.747 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:10.747 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:10.747 INFO [27470]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 17:06:10.747 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:10.759 INFO [27470]: COREGRADE is stopping... -- 17:06:10.759 DEBUG [27470]: Closing database connection -- 17:06:10.759 SQL [27470]: pgsql_close() -- 17:06:10.762 INFO [29019]: COREGRADE is starting... -- 17:06:10.762 INFO [29019]: Version from config: 1.0 -- 17:06:10.762 DEBUG [29019]: Connecting to database... -- 17:06:10.762 DEBUG [29019]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:10.762 SQL [29019]: pgsql_db_connect() -- 17:06:10.766 INFO [27472]: COREGRADE is starting... -- 17:06:10.766 INFO [27472]: Version from config: 1.0 -- 17:06:10.766 DEBUG [27472]: Connecting to database... -- 17:06:10.766 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:10.766 SQL [27472]: pgsql_db_connect() -- 17:06:10.767 INFO [27470]: COREGRADE is starting... -- 17:06:10.767 INFO [27470]: Version from config: 1.0 -- 17:06:10.767 DEBUG [27470]: Connecting to database... -- 17:06:10.768 DEBUG [27470]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:10.768 SQL [27470]: pgsql_db_connect() -- 17:06:10.762 DEBUG [27583]: Database connection successful -- 17:06:10.762 INFO [27583]: _SERVER found -- 17:06:10.762 INFO [27583]: REMOTE_ADDR = 10.0.0.15 -- 17:06:10.762 INFO [27583]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:10.762 INFO [27583]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:10.762 INFO [27583]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 17:06:10.762 INFO [27583]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:10.775 INFO [27583]: COREGRADE is stopping... -- 17:06:10.775 DEBUG [27583]: Closing database connection -- 17:06:10.775 SQL [27583]: pgsql_close() -- 17:06:10.766 DEBUG [29019]: Database connection successful -- 17:06:10.766 INFO [29019]: _SERVER found -- 17:06:10.766 INFO [29019]: REMOTE_ADDR = 10.0.0.15 -- 17:06:10.766 INFO [29019]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:10.766 INFO [29019]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:10.766 INFO [29019]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 17:06:10.766 INFO [29019]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:10.777 INFO [29019]: COREGRADE is stopping... -- 17:06:10.777 DEBUG [29019]: Closing database connection -- 17:06:10.777 SQL [29019]: pgsql_close() -- 17:06:10.771 DEBUG [27472]: Database connection successful -- 17:06:10.771 INFO [27472]: _SERVER found -- 17:06:10.771 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:06:10.771 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:10.771 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:10.771 INFO [27472]: QUERY_STRING = /assets/customjs/general.js -- 17:06:10.771 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:10.783 INFO [27472]: COREGRADE is stopping... -- 17:06:10.783 DEBUG [27472]: Closing database connection -- 17:06:10.783 SQL [27472]: pgsql_close() -- 17:06:10.771 DEBUG [27470]: Database connection successful -- 17:06:10.771 INFO [27470]: _SERVER found -- 17:06:10.771 INFO [27470]: REMOTE_ADDR = 10.0.0.15 -- 17:06:10.771 INFO [27470]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:10.771 INFO [27470]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:10.771 INFO [27470]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 17:06:10.771 INFO [27470]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:10.784 INFO [27470]: COREGRADE is stopping... -- 17:06:10.784 DEBUG [27470]: Closing database connection -- 17:06:10.784 SQL [27470]: pgsql_close() -- 17:06:10.852 INFO [27472]: COREGRADE is starting... -- 17:06:10.852 INFO [27472]: Version from config: 1.0 -- 17:06:10.852 DEBUG [27472]: Connecting to database... -- 17:06:10.852 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:10.852 SQL [27472]: pgsql_db_connect() -- 17:06:10.857 DEBUG [27472]: Database connection successful -- 17:06:10.857 INFO [27472]: _SERVER found -- 17:06:10.857 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:06:10.857 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:10.857 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:10.857 INFO [27472]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 17:06:10.857 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:10.868 INFO [27472]: COREGRADE is stopping... -- 17:06:10.868 DEBUG [27472]: Closing database connection -- 17:06:10.868 SQL [27472]: pgsql_close() -- 17:06:10.940 INFO [27472]: COREGRADE is starting... -- 17:06:10.940 INFO [27472]: Version from config: 1.0 -- 17:06:10.940 DEBUG [27472]: Connecting to database... -- 17:06:10.940 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:10.940 SQL [27472]: pgsql_db_connect() -- 17:06:10.944 DEBUG [27472]: Database connection successful -- 17:06:10.944 INFO [27472]: _SERVER found -- 17:06:10.944 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:06:10.944 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:10.944 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:10.944 INFO [27472]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 17:06:10.944 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:10.956 INFO [27472]: COREGRADE is stopping... -- 17:06:10.956 DEBUG [27472]: Closing database connection -- 17:06:10.956 SQL [27472]: pgsql_close() -- 17:06:11.025 INFO [27472]: COREGRADE is starting... -- 17:06:11.025 INFO [27472]: Version from config: 1.0 -- 17:06:11.025 DEBUG [27472]: Connecting to database... -- 17:06:11.025 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:11.025 SQL [27472]: pgsql_db_connect() -- 17:06:11.030 DEBUG [27472]: Database connection successful -- 17:06:11.030 INFO [27472]: _SERVER found -- 17:06:11.030 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:06:11.030 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:11.030 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:11.030 INFO [27472]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 17:06:11.030 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:11.042 INFO [27472]: COREGRADE is stopping... -- 17:06:11.042 DEBUG [27472]: Closing database connection -- 17:06:11.042 SQL [27472]: pgsql_close() -- 17:06:11.111 INFO [27472]: COREGRADE is starting... -- 17:06:11.112 INFO [27472]: Version from config: 1.0 -- 17:06:11.112 DEBUG [27472]: Connecting to database... -- 17:06:11.112 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:11.112 SQL [27472]: pgsql_db_connect() -- 17:06:11.116 DEBUG [27472]: Database connection successful -- 17:06:11.116 INFO [27472]: _SERVER found -- 17:06:11.116 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:06:11.116 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:11.116 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:11.116 INFO [27472]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 17:06:11.116 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:11.127 INFO [27472]: COREGRADE is stopping... -- 17:06:11.127 DEBUG [27472]: Closing database connection -- 17:06:11.127 SQL [27472]: pgsql_close() -- 17:06:11.197 INFO [27472]: COREGRADE is starting... -- 17:06:11.197 INFO [27472]: Version from config: 1.0 -- 17:06:11.197 DEBUG [27472]: Connecting to database... -- 17:06:11.197 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:11.197 SQL [27472]: pgsql_db_connect() -- 17:06:11.201 DEBUG [27472]: Database connection successful -- 17:06:11.201 INFO [27472]: _SERVER found -- 17:06:11.201 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:06:11.201 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:11.201 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:11.201 INFO [27472]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 17:06:11.201 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:11.213 INFO [27472]: COREGRADE is stopping... -- 17:06:11.213 DEBUG [27472]: Closing database connection -- 17:06:11.213 SQL [27472]: pgsql_close() -- 17:06:11.283 INFO [27472]: COREGRADE is starting... -- 17:06:11.283 INFO [27472]: Version from config: 1.0 -- 17:06:11.283 DEBUG [27472]: Connecting to database... -- 17:06:11.283 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:11.283 SQL [27472]: pgsql_db_connect() -- 17:06:11.287 DEBUG [27472]: Database connection successful -- 17:06:11.287 INFO [27472]: _SERVER found -- 17:06:11.287 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:06:11.287 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:11.287 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:11.287 INFO [27472]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 17:06:11.287 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:11.299 INFO [27472]: COREGRADE is stopping... -- 17:06:11.299 DEBUG [27472]: Closing database connection -- 17:06:11.299 SQL [27472]: pgsql_close() -- 17:06:11.368 INFO [27472]: COREGRADE is starting... -- 17:06:11.369 INFO [27472]: Version from config: 1.0 -- 17:06:11.369 DEBUG [27472]: Connecting to database... -- 17:06:11.369 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:11.369 SQL [27472]: pgsql_db_connect() -- 17:06:11.373 DEBUG [27472]: Database connection successful -- 17:06:11.373 INFO [27472]: _SERVER found -- 17:06:11.373 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:06:11.373 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:11.373 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:11.373 INFO [27472]: QUERY_STRING = /assets/js/pages/dashboard.js -- 17:06:11.373 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:11.384 INFO [27472]: COREGRADE is stopping... -- 17:06:11.384 DEBUG [27472]: Closing database connection -- 17:06:11.384 SQL [27472]: pgsql_close() -- 17:06:11.458 INFO [27472]: COREGRADE is starting... -- 17:06:11.458 INFO [27472]: Version from config: 1.0 -- 17:06:11.458 DEBUG [27472]: Connecting to database... -- 17:06:11.458 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:11.458 SQL [27472]: pgsql_db_connect() -- 17:06:11.462 DEBUG [27472]: Database connection successful -- 17:06:11.462 INFO [27472]: _SERVER found -- 17:06:11.462 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:06:11.462 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:11.462 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:11.462 INFO [27472]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 17:06:11.462 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:11.474 INFO [27472]: COREGRADE is stopping... -- 17:06:11.474 DEBUG [27472]: Closing database connection -- 17:06:11.474 SQL [27472]: pgsql_close() -- 17:06:11.543 INFO [27472]: COREGRADE is starting... -- 17:06:11.543 INFO [27472]: Version from config: 1.0 -- 17:06:11.543 DEBUG [27472]: Connecting to database... -- 17:06:11.543 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:11.543 SQL [27472]: pgsql_db_connect() -- 17:06:11.547 DEBUG [27472]: Database connection successful -- 17:06:11.547 INFO [27472]: _SERVER found -- 17:06:11.547 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:06:11.547 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:11.547 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:11.547 INFO [27472]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 17:06:11.547 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:11.559 INFO [27472]: COREGRADE is stopping... -- 17:06:11.559 DEBUG [27472]: Closing database connection -- 17:06:11.559 SQL [27472]: pgsql_close() -- 17:06:11.628 INFO [27472]: COREGRADE is starting... -- 17:06:11.629 INFO [27472]: Version from config: 1.0 -- 17:06:11.629 DEBUG [27472]: Connecting to database... -- 17:06:11.629 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:11.629 SQL [27472]: pgsql_db_connect() -- 17:06:11.633 DEBUG [27472]: Database connection successful -- 17:06:11.633 INFO [27472]: _SERVER found -- 17:06:11.633 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:06:11.633 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:11.633 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:11.633 INFO [27472]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 17:06:11.633 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:11.644 INFO [27472]: COREGRADE is stopping... -- 17:06:11.644 DEBUG [27472]: Closing database connection -- 17:06:11.644 SQL [27472]: pgsql_close() -- 17:06:11.714 INFO [27472]: COREGRADE is starting... -- 17:06:11.714 INFO [27472]: Version from config: 1.0 -- 17:06:11.714 DEBUG [27472]: Connecting to database... -- 17:06:11.714 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:11.714 SQL [27472]: pgsql_db_connect() -- 17:06:11.719 DEBUG [27472]: Database connection successful -- 17:06:11.719 INFO [27472]: _SERVER found -- 17:06:11.719 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:06:11.719 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:11.719 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:11.719 INFO [27472]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 17:06:11.719 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:11.730 INFO [27472]: COREGRADE is stopping... -- 17:06:11.730 DEBUG [27472]: Closing database connection -- 17:06:11.730 SQL [27472]: pgsql_close() -- 17:06:11.800 INFO [27472]: COREGRADE is starting... -- 17:06:11.800 INFO [27472]: Version from config: 1.0 -- 17:06:11.800 DEBUG [27472]: Connecting to database... -- 17:06:11.800 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:11.800 SQL [27472]: pgsql_db_connect() -- 17:06:11.804 DEBUG [27472]: Database connection successful -- 17:06:11.804 INFO [27472]: _SERVER found -- 17:06:11.804 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:06:11.804 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:11.804 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:11.804 INFO [27472]: QUERY_STRING = /assets/js/pages/picker_date.js -- 17:06:11.804 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:11.816 INFO [27472]: COREGRADE is stopping... -- 17:06:11.816 DEBUG [27472]: Closing database connection -- 17:06:11.816 SQL [27472]: pgsql_close() -- 17:06:11.885 INFO [27472]: COREGRADE is starting... -- 17:06:11.885 INFO [27472]: Version from config: 1.0 -- 17:06:11.885 DEBUG [27472]: Connecting to database... -- 17:06:11.885 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:11.885 SQL [27472]: pgsql_db_connect() -- 17:06:11.889 DEBUG [27472]: Database connection successful -- 17:06:11.889 INFO [27472]: _SERVER found -- 17:06:11.889 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:06:11.889 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:11.889 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:11.889 INFO [27472]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 17:06:11.889 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:11.900 INFO [27472]: COREGRADE is stopping... -- 17:06:11.900 DEBUG [27472]: Closing database connection -- 17:06:11.900 SQL [27472]: pgsql_close() -- 17:06:11.969 INFO [27472]: COREGRADE is starting... -- 17:06:11.970 INFO [27472]: Version from config: 1.0 -- 17:06:11.970 DEBUG [27472]: Connecting to database... -- 17:06:11.970 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:11.970 SQL [27472]: pgsql_db_connect() -- 17:06:11.974 DEBUG [27472]: Database connection successful -- 17:06:11.974 INFO [27472]: _SERVER found -- 17:06:11.974 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:06:11.974 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:11.974 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:11.974 INFO [27472]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 17:06:11.974 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:11.985 INFO [27472]: COREGRADE is stopping... -- 17:06:11.985 DEBUG [27472]: Closing database connection -- 17:06:11.985 SQL [27472]: pgsql_close() -- 17:06:12.055 INFO [27472]: COREGRADE is starting... -- 17:06:12.055 INFO [27472]: Version from config: 1.0 -- 17:06:12.055 DEBUG [27472]: Connecting to database... -- 17:06:12.055 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:12.055 SQL [27472]: pgsql_db_connect() -- 17:06:12.059 DEBUG [27472]: Database connection successful -- 17:06:12.059 INFO [27472]: _SERVER found -- 17:06:12.059 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:06:12.059 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:12.059 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:12.059 INFO [27472]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 17:06:12.059 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:12.071 INFO [27472]: COREGRADE is stopping... -- 17:06:12.071 DEBUG [27472]: Closing database connection -- 17:06:12.071 SQL [27472]: pgsql_close() -- 17:06:12.140 INFO [27472]: COREGRADE is starting... -- 17:06:12.140 INFO [27472]: Version from config: 1.0 -- 17:06:12.140 DEBUG [27472]: Connecting to database... -- 17:06:12.140 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:12.140 SQL [27472]: pgsql_db_connect() -- 17:06:12.145 DEBUG [27472]: Database connection successful -- 17:06:12.145 INFO [27472]: _SERVER found -- 17:06:12.145 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:06:12.145 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:12.145 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:12.145 INFO [27472]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 17:06:12.145 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:12.156 INFO [27472]: COREGRADE is stopping... -- 17:06:12.156 DEBUG [27472]: Closing database connection -- 17:06:12.156 SQL [27472]: pgsql_close() -- 17:06:12.225 INFO [27472]: COREGRADE is starting... -- 17:06:12.226 INFO [27472]: Version from config: 1.0 -- 17:06:12.226 DEBUG [27472]: Connecting to database... -- 17:06:12.226 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:12.226 SQL [27472]: pgsql_db_connect() -- 17:06:12.230 DEBUG [27472]: Database connection successful -- 17:06:12.230 INFO [27472]: _SERVER found -- 17:06:12.230 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:06:12.230 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:12.230 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:12.230 INFO [27472]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 17:06:12.230 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:12.241 INFO [27472]: COREGRADE is stopping... -- 17:06:12.241 DEBUG [27472]: Closing database connection -- 17:06:12.241 SQL [27472]: pgsql_close() -- 17:06:12.325 INFO [27472]: COREGRADE is starting... -- 17:06:12.326 INFO [27472]: Version from config: 1.0 -- 17:06:12.326 DEBUG [27472]: Connecting to database... -- 17:06:12.326 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:12.326 SQL [27472]: pgsql_db_connect() -- 17:06:12.330 DEBUG [27472]: Database connection successful -- 17:06:12.330 INFO [27472]: _SERVER found -- 17:06:12.330 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:06:12.330 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:12.330 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:12.330 INFO [27472]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 17:06:12.330 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:12.341 INFO [27472]: COREGRADE is stopping... -- 17:06:12.341 DEBUG [27472]: Closing database connection -- 17:06:12.341 SQL [27472]: pgsql_close() -- 17:06:12.410 INFO [27472]: COREGRADE is starting... -- 17:06:12.411 INFO [27472]: Version from config: 1.0 -- 17:06:12.411 DEBUG [27472]: Connecting to database... -- 17:06:12.411 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:12.411 SQL [27472]: pgsql_db_connect() -- 17:06:12.415 DEBUG [27472]: Database connection successful -- 17:06:12.415 INFO [27472]: _SERVER found -- 17:06:12.415 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:06:12.415 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:12.415 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:12.415 INFO [27472]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 17:06:12.415 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:12.428 INFO [27472]: COREGRADE is stopping... -- 17:06:12.428 DEBUG [27472]: Closing database connection -- 17:06:12.428 SQL [27472]: pgsql_close() -- 17:06:12.523 INFO [27472]: COREGRADE is starting... -- 17:06:12.523 INFO [27472]: Version from config: 1.0 -- 17:06:12.523 DEBUG [27472]: Connecting to database... -- 17:06:12.523 DEBUG [27472]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:06:12.523 SQL [27472]: pgsql_db_connect() -- 17:06:12.527 DEBUG [27472]: Database connection successful -- 17:06:12.527 INFO [27472]: _SERVER found -- 17:06:12.527 INFO [27472]: REMOTE_ADDR = 10.0.0.15 -- 17:06:12.527 INFO [27472]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:06:12.527 INFO [27472]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:06:12.527 INFO [27472]: QUERY_STRING = /assets/customjs/general.js -- 17:06:12.527 INFO [27472]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:06:12.539 INFO [27472]: COREGRADE is stopping... -- 17:06:12.539 DEBUG [27472]: Closing database connection -- 17:06:12.539 SQL [27472]: pgsql_close() -- 17:07:04.087 INFO [27523]: COREGRADE is starting... -- 17:07:04.087 INFO [27523]: Version from config: 1.0 -- 17:07:04.087 DEBUG [27523]: Connecting to database... -- 17:07:04.088 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:04.088 SQL [27523]: pgsql_db_connect() -- 17:07:04.092 DEBUG [27523]: Database connection successful -- 17:07:04.092 INFO [27523]: _SERVER found -- 17:07:04.092 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 17:07:04.092 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:04.092 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u26mbgqaigtr7mked17io5egfp55m1hv -- 17:07:04.092 INFO [27523]: QUERY_STRING = /start -- 17:07:04.092 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:04.133 INFO [27523]: COREGRADE is stopping... -- 17:07:04.133 DEBUG [27523]: Closing database connection -- 17:07:04.133 SQL [27523]: pgsql_close() -- 17:07:04.235 INFO [27471]: COREGRADE is starting... -- 17:07:04.236 INFO [27471]: Version from config: 1.0 -- 17:07:04.236 DEBUG [27471]: Connecting to database... -- 17:07:04.236 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:04.236 SQL [27471]: pgsql_db_connect() -- 17:07:04.240 DEBUG [27471]: Database connection successful -- 17:07:04.240 INFO [27471]: _SERVER found -- 17:07:04.240 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 17:07:04.240 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:04.240 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:04.240 INFO [27471]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 17:07:04.240 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:04.251 INFO [27471]: COREGRADE is stopping... -- 17:07:04.251 DEBUG [27471]: Closing database connection -- 17:07:04.251 SQL [27471]: pgsql_close() -- 17:07:04.299 INFO [27471]: COREGRADE is starting... -- 17:07:04.299 INFO [27471]: Version from config: 1.0 -- 17:07:04.299 DEBUG [27471]: Connecting to database... -- 17:07:04.299 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:04.299 SQL [27471]: pgsql_db_connect() -- 17:07:04.304 INFO [27585]: COREGRADE is starting... -- 17:07:04.304 INFO [27585]: Version from config: 1.0 -- 17:07:04.304 DEBUG [27585]: Connecting to database... -- 17:07:04.304 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:04.304 SQL [27585]: pgsql_db_connect() -- 17:07:04.308 INFO [27523]: COREGRADE is starting... -- 17:07:04.308 INFO [27523]: Version from config: 1.0 -- 17:07:04.308 DEBUG [27523]: Connecting to database... -- 17:07:04.308 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:04.308 SQL [27523]: pgsql_db_connect() -- 17:07:04.309 INFO [28926]: COREGRADE is starting... -- 17:07:04.310 INFO [28926]: Version from config: 1.0 -- 17:07:04.310 DEBUG [28926]: Connecting to database... -- 17:07:04.310 DEBUG [28926]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:04.310 SQL [28926]: pgsql_db_connect() -- 17:07:04.303 DEBUG [27471]: Database connection successful -- 17:07:04.303 INFO [27471]: _SERVER found -- 17:07:04.303 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 17:07:04.303 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:04.303 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:04.303 INFO [27471]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 17:07:04.303 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:04.315 INFO [27471]: COREGRADE is stopping... -- 17:07:04.315 DEBUG [27471]: Closing database connection -- 17:07:04.315 SQL [27471]: pgsql_close() -- 17:07:04.320 INFO [27942]: COREGRADE is starting... -- 17:07:04.308 DEBUG [27585]: Database connection successful -- 17:07:04.308 INFO [27585]: _SERVER found -- 17:07:04.308 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 17:07:04.308 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:04.308 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:04.308 INFO [27585]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 17:07:04.308 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:04.320 INFO [27585]: COREGRADE is stopping... -- 17:07:04.321 DEBUG [27585]: Closing database connection -- 17:07:04.321 SQL [27585]: pgsql_close() -- 17:07:04.321 INFO [27942]: Version from config: 1.0 -- 17:07:04.321 DEBUG [27942]: Connecting to database... -- 17:07:04.321 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:04.321 SQL [27942]: pgsql_db_connect() -- 17:07:04.312 DEBUG [27523]: Database connection successful -- 17:07:04.312 INFO [27523]: _SERVER found -- 17:07:04.312 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 17:07:04.312 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:04.312 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:04.312 INFO [27523]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 17:07:04.312 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:04.324 INFO [27523]: COREGRADE is stopping... -- 17:07:04.324 DEBUG [27523]: Closing database connection -- 17:07:04.324 SQL [27523]: pgsql_close() -- 17:07:04.314 DEBUG [28926]: Database connection successful -- 17:07:04.314 INFO [28926]: _SERVER found -- 17:07:04.314 INFO [28926]: REMOTE_ADDR = 10.0.0.15 -- 17:07:04.314 INFO [28926]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:04.314 INFO [28926]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:04.314 INFO [28926]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 17:07:04.314 INFO [28926]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:04.325 INFO [28926]: COREGRADE is stopping... -- 17:07:04.325 DEBUG [28926]: Closing database connection -- 17:07:04.325 SQL [28926]: pgsql_close() -- 17:07:04.332 INFO [28926]: COREGRADE is starting... -- 17:07:04.332 INFO [28926]: Version from config: 1.0 -- 17:07:04.332 DEBUG [28926]: Connecting to database... -- 17:07:04.332 DEBUG [28926]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:04.332 SQL [28926]: pgsql_db_connect() -- 17:07:04.325 DEBUG [27942]: Database connection successful -- 17:07:04.325 INFO [27942]: _SERVER found -- 17:07:04.325 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:07:04.325 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:04.325 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:04.325 INFO [27942]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 17:07:04.325 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:04.337 INFO [27942]: COREGRADE is stopping... -- 17:07:04.337 DEBUG [27942]: Closing database connection -- 17:07:04.337 SQL [27942]: pgsql_close() -- 17:07:04.336 DEBUG [28926]: Database connection successful -- 17:07:04.336 INFO [28926]: _SERVER found -- 17:07:04.336 INFO [28926]: REMOTE_ADDR = 10.0.0.15 -- 17:07:04.336 INFO [28926]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:04.336 INFO [28926]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:04.336 INFO [28926]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 17:07:04.336 INFO [28926]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:04.348 INFO [28926]: COREGRADE is stopping... -- 17:07:04.348 DEBUG [28926]: Closing database connection -- 17:07:04.348 SQL [28926]: pgsql_close() -- 17:07:04.391 INFO [28926]: COREGRADE is starting... -- 17:07:04.391 INFO [27523]: COREGRADE is starting... -- 17:07:04.392 INFO [27523]: Version from config: 1.0 -- 17:07:04.392 DEBUG [27523]: Connecting to database... -- 17:07:04.392 INFO [28926]: Version from config: 1.0 -- 17:07:04.392 DEBUG [28926]: Connecting to database... -- 17:07:04.392 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:04.392 DEBUG [28926]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:04.392 SQL [27523]: pgsql_db_connect() -- 17:07:04.392 SQL [28926]: pgsql_db_connect() -- 17:07:04.399 INFO [27585]: COREGRADE is starting... -- 17:07:04.399 INFO [27585]: Version from config: 1.0 -- 17:07:04.399 DEBUG [27585]: Connecting to database... -- 17:07:04.399 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:04.399 SQL [27585]: pgsql_db_connect() -- 17:07:04.405 INFO [27471]: COREGRADE is starting... -- 17:07:04.406 INFO [27471]: Version from config: 1.0 -- 17:07:04.406 DEBUG [27471]: Connecting to database... -- 17:07:04.406 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:04.406 SQL [27471]: pgsql_db_connect() -- 17:07:04.396 DEBUG [27523]: Database connection successful -- 17:07:04.396 INFO [27523]: _SERVER found -- 17:07:04.396 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 17:07:04.396 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:04.396 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:04.396 INFO [27523]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 17:07:04.396 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:04.407 INFO [27523]: COREGRADE is stopping... -- 17:07:04.407 DEBUG [27523]: Closing database connection -- 17:07:04.407 SQL [27523]: pgsql_close() -- 17:07:04.396 DEBUG [28926]: Database connection successful -- 17:07:04.396 INFO [28926]: _SERVER found -- 17:07:04.396 INFO [28926]: REMOTE_ADDR = 10.0.0.15 -- 17:07:04.396 INFO [28926]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:04.396 INFO [28926]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:04.396 INFO [28926]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 17:07:04.396 INFO [28926]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:04.407 INFO [28926]: COREGRADE is stopping... -- 17:07:04.407 DEBUG [28926]: Closing database connection -- 17:07:04.407 SQL [28926]: pgsql_close() -- 17:07:04.403 DEBUG [27585]: Database connection successful -- 17:07:04.403 INFO [27585]: _SERVER found -- 17:07:04.403 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 17:07:04.403 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:04.403 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:04.403 INFO [27585]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 17:07:04.403 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:04.415 INFO [27585]: COREGRADE is stopping... -- 17:07:04.415 DEBUG [27585]: Closing database connection -- 17:07:04.415 SQL [27585]: pgsql_close() -- 17:07:04.416 INFO [27942]: COREGRADE is starting... -- 17:07:04.417 INFO [27942]: Version from config: 1.0 -- 17:07:04.417 DEBUG [27942]: Connecting to database... -- 17:07:04.417 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:04.417 SQL [27942]: pgsql_db_connect() -- 17:07:04.445 INFO [27585]: COREGRADE is starting... -- 17:07:04.445 INFO [27585]: Version from config: 1.0 -- 17:07:04.445 DEBUG [27585]: Connecting to database... -- 17:07:04.445 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:04.445 SQL [27585]: pgsql_db_connect() -- 17:07:04.410 DEBUG [27471]: Database connection successful -- 17:07:04.410 INFO [27471]: _SERVER found -- 17:07:04.410 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 17:07:04.410 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:04.410 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:04.410 INFO [27471]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 17:07:04.410 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:04.448 INFO [27471]: COREGRADE is stopping... -- 17:07:04.448 DEBUG [27471]: Closing database connection -- 17:07:04.448 SQL [27471]: pgsql_close() -- 17:07:04.447 DEBUG [27942]: Database connection successful -- 17:07:04.447 INFO [27942]: _SERVER found -- 17:07:04.447 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:07:04.447 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:04.447 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:04.447 INFO [27942]: QUERY_STRING = /assets/js/pages/dashboard.js -- 17:07:04.447 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:04.460 INFO [27942]: COREGRADE is stopping... -- 17:07:04.460 DEBUG [27942]: Closing database connection -- 17:07:04.460 SQL [27942]: pgsql_close() -- 17:07:04.455 DEBUG [27585]: Database connection successful -- 17:07:04.455 INFO [27585]: _SERVER found -- 17:07:04.455 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 17:07:04.455 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:04.455 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:04.455 INFO [27585]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 17:07:04.455 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:04.467 INFO [27585]: COREGRADE is stopping... -- 17:07:04.467 DEBUG [27585]: Closing database connection -- 17:07:04.467 SQL [27585]: pgsql_close() -- 17:07:04.477 INFO [27523]: COREGRADE is starting... -- 17:07:04.477 INFO [27523]: Version from config: 1.0 -- 17:07:04.477 DEBUG [27523]: Connecting to database... -- 17:07:04.477 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:04.477 SQL [27523]: pgsql_db_connect() -- 17:07:04.490 INFO [27585]: COREGRADE is starting... -- 17:07:04.490 INFO [27585]: Version from config: 1.0 -- 17:07:04.490 DEBUG [27585]: Connecting to database... -- 17:07:04.490 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:04.490 SQL [27585]: pgsql_db_connect() -- 17:07:04.481 DEBUG [27523]: Database connection successful -- 17:07:04.481 INFO [27523]: _SERVER found -- 17:07:04.481 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 17:07:04.481 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:04.481 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:04.481 INFO [27523]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 17:07:04.481 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:04.492 INFO [27523]: COREGRADE is stopping... -- 17:07:04.492 DEBUG [27523]: Closing database connection -- 17:07:04.492 SQL [27523]: pgsql_close() -- 17:07:04.495 INFO [27471]: COREGRADE is starting... -- 17:07:04.495 INFO [27471]: Version from config: 1.0 -- 17:07:04.495 DEBUG [27471]: Connecting to database... -- 17:07:04.495 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:04.495 SQL [27471]: pgsql_db_connect() -- 17:07:04.494 DEBUG [27585]: Database connection successful -- 17:07:04.494 INFO [27585]: _SERVER found -- 17:07:04.494 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 17:07:04.494 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:04.494 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:04.494 INFO [27585]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 17:07:04.494 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:04.506 INFO [27585]: COREGRADE is stopping... -- 17:07:04.506 DEBUG [27585]: Closing database connection -- 17:07:04.506 SQL [27585]: pgsql_close() -- 17:07:04.499 DEBUG [27471]: Database connection successful -- 17:07:04.499 INFO [27471]: _SERVER found -- 17:07:04.499 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 17:07:04.499 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:04.499 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:04.499 INFO [27471]: QUERY_STRING = /assets/js/pages/picker_date.js -- 17:07:04.499 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:04.511 INFO [27471]: COREGRADE is stopping... -- 17:07:04.511 DEBUG [27471]: Closing database connection -- 17:07:04.511 SQL [27471]: pgsql_close() -- 17:07:04.527 INFO [27471]: COREGRADE is starting... -- 17:07:04.527 INFO [27471]: Version from config: 1.0 -- 17:07:04.527 DEBUG [27471]: Connecting to database... -- 17:07:04.527 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:04.527 SQL [27471]: pgsql_db_connect() -- 17:07:04.538 INFO [27942]: COREGRADE is starting... -- 17:07:04.539 INFO [27942]: Version from config: 1.0 -- 17:07:04.539 DEBUG [27942]: Connecting to database... -- 17:07:04.539 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:04.539 SQL [27942]: pgsql_db_connect() -- 17:07:04.531 DEBUG [27471]: Database connection successful -- 17:07:04.531 INFO [27471]: _SERVER found -- 17:07:04.531 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 17:07:04.531 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:04.531 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:04.531 INFO [27471]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 17:07:04.531 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:04.542 INFO [27471]: COREGRADE is stopping... -- 17:07:04.542 DEBUG [27471]: Closing database connection -- 17:07:04.543 SQL [27471]: pgsql_close() -- 17:07:04.547 INFO [27471]: COREGRADE is starting... -- 17:07:04.547 INFO [27471]: Version from config: 1.0 -- 17:07:04.547 DEBUG [27471]: Connecting to database... -- 17:07:04.547 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:04.547 SQL [27471]: pgsql_db_connect() -- 17:07:04.543 DEBUG [27942]: Database connection successful -- 17:07:04.543 INFO [27942]: _SERVER found -- 17:07:04.543 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:07:04.543 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:04.543 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:04.543 INFO [27942]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 17:07:04.543 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:04.554 INFO [27942]: COREGRADE is stopping... -- 17:07:04.554 DEBUG [27942]: Closing database connection -- 17:07:04.554 SQL [27942]: pgsql_close() -- 17:07:04.557 INFO [27523]: COREGRADE is starting... -- 17:07:04.558 INFO [27523]: Version from config: 1.0 -- 17:07:04.558 DEBUG [27523]: Connecting to database... -- 17:07:04.558 DEBUG [27523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:04.558 SQL [27523]: pgsql_db_connect() -- 17:07:04.552 DEBUG [27471]: Database connection successful -- 17:07:04.552 INFO [27471]: _SERVER found -- 17:07:04.552 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 17:07:04.552 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:04.552 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:04.552 INFO [27471]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 17:07:04.552 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:04.564 INFO [27471]: COREGRADE is stopping... -- 17:07:04.564 DEBUG [27471]: Closing database connection -- 17:07:04.564 SQL [27471]: pgsql_close() -- 17:07:04.562 DEBUG [27523]: Database connection successful -- 17:07:04.562 INFO [27523]: _SERVER found -- 17:07:04.562 INFO [27523]: REMOTE_ADDR = 10.0.0.15 -- 17:07:04.562 INFO [27523]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:04.562 INFO [27523]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:04.562 INFO [27523]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 17:07:04.562 INFO [27523]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:04.573 INFO [27523]: COREGRADE is stopping... -- 17:07:04.573 DEBUG [27523]: Closing database connection -- 17:07:04.573 SQL [27523]: pgsql_close() -- 17:07:04.582 INFO [27471]: COREGRADE is starting... -- 17:07:04.583 INFO [27471]: Version from config: 1.0 -- 17:07:04.583 DEBUG [27471]: Connecting to database... -- 17:07:04.583 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:04.583 SQL [27471]: pgsql_db_connect() -- 17:07:04.587 INFO [27585]: COREGRADE is starting... -- 17:07:04.587 INFO [27585]: Version from config: 1.0 -- 17:07:04.587 DEBUG [27585]: Connecting to database... -- 17:07:04.587 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:04.587 SQL [27585]: pgsql_db_connect() -- 17:07:04.587 DEBUG [27471]: Database connection successful -- 17:07:04.587 INFO [27471]: _SERVER found -- 17:07:04.587 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 17:07:04.587 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:04.587 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:04.587 INFO [27471]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 17:07:04.587 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:04.598 INFO [27471]: COREGRADE is stopping... -- 17:07:04.598 DEBUG [27471]: Closing database connection -- 17:07:04.598 SQL [27471]: pgsql_close() -- 17:07:04.591 DEBUG [27585]: Database connection successful -- 17:07:04.591 INFO [27585]: _SERVER found -- 17:07:04.591 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 17:07:04.591 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:04.591 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:04.591 INFO [27585]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 17:07:04.591 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:04.602 INFO [27585]: COREGRADE is stopping... -- 17:07:04.602 DEBUG [27585]: Closing database connection -- 17:07:04.602 SQL [27585]: pgsql_close() -- 17:07:04.620 INFO [27585]: COREGRADE is starting... -- 17:07:04.621 INFO [27585]: Version from config: 1.0 -- 17:07:04.621 DEBUG [27585]: Connecting to database... -- 17:07:04.621 DEBUG [27585]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:04.621 SQL [27585]: pgsql_db_connect() -- 17:07:04.633 INFO [27942]: COREGRADE is starting... -- 17:07:04.634 INFO [27942]: Version from config: 1.0 -- 17:07:04.634 DEBUG [27942]: Connecting to database... -- 17:07:04.634 DEBUG [27942]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:04.634 SQL [27942]: pgsql_db_connect() -- 17:07:04.635 INFO [27471]: COREGRADE is starting... -- 17:07:04.635 INFO [27471]: Version from config: 1.0 -- 17:07:04.635 DEBUG [27471]: Connecting to database... -- 17:07:04.635 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:04.635 SQL [27471]: pgsql_db_connect() -- 17:07:04.625 DEBUG [27585]: Database connection successful -- 17:07:04.625 INFO [27585]: _SERVER found -- 17:07:04.625 INFO [27585]: REMOTE_ADDR = 10.0.0.15 -- 17:07:04.625 INFO [27585]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:04.625 INFO [27585]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:04.625 INFO [27585]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 17:07:04.625 INFO [27585]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:04.636 INFO [27585]: COREGRADE is stopping... -- 17:07:04.636 DEBUG [27585]: Closing database connection -- 17:07:04.636 SQL [27585]: pgsql_close() -- 17:07:04.638 DEBUG [27942]: Database connection successful -- 17:07:04.638 INFO [27942]: _SERVER found -- 17:07:04.638 INFO [27942]: REMOTE_ADDR = 10.0.0.15 -- 17:07:04.638 INFO [27942]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:04.638 INFO [27942]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:04.638 INFO [27942]: QUERY_STRING = /assets/customjs/general.js -- 17:07:04.638 INFO [27942]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:04.650 INFO [27942]: COREGRADE is stopping... -- 17:07:04.650 DEBUG [27942]: Closing database connection -- 17:07:04.650 SQL [27942]: pgsql_close() -- 17:07:04.639 DEBUG [27471]: Database connection successful -- 17:07:04.639 INFO [27471]: _SERVER found -- 17:07:04.639 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 17:07:04.639 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:04.639 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:04.639 INFO [27471]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 17:07:04.639 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:04.651 INFO [27471]: COREGRADE is stopping... -- 17:07:04.651 DEBUG [27471]: Closing database connection -- 17:07:04.651 SQL [27471]: pgsql_close() -- 17:07:04.723 INFO [27471]: COREGRADE is starting... -- 17:07:04.724 INFO [27471]: Version from config: 1.0 -- 17:07:04.724 DEBUG [27471]: Connecting to database... -- 17:07:04.724 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:04.724 SQL [27471]: pgsql_db_connect() -- 17:07:04.728 DEBUG [27471]: Database connection successful -- 17:07:04.728 INFO [27471]: _SERVER found -- 17:07:04.728 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 17:07:04.728 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:04.728 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:04.728 INFO [27471]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 17:07:04.728 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:04.739 INFO [27471]: COREGRADE is stopping... -- 17:07:04.739 DEBUG [27471]: Closing database connection -- 17:07:04.739 SQL [27471]: pgsql_close() -- 17:07:04.811 INFO [27471]: COREGRADE is starting... -- 17:07:04.812 INFO [27471]: Version from config: 1.0 -- 17:07:04.812 DEBUG [27471]: Connecting to database... -- 17:07:04.812 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:04.812 SQL [27471]: pgsql_db_connect() -- 17:07:04.816 DEBUG [27471]: Database connection successful -- 17:07:04.816 INFO [27471]: _SERVER found -- 17:07:04.816 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 17:07:04.816 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:04.816 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:04.816 INFO [27471]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 17:07:04.816 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:04.827 INFO [27471]: COREGRADE is stopping... -- 17:07:04.827 DEBUG [27471]: Closing database connection -- 17:07:04.827 SQL [27471]: pgsql_close() -- 17:07:04.899 INFO [27471]: COREGRADE is starting... -- 17:07:04.900 INFO [27471]: Version from config: 1.0 -- 17:07:04.900 DEBUG [27471]: Connecting to database... -- 17:07:04.900 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:04.900 SQL [27471]: pgsql_db_connect() -- 17:07:04.904 DEBUG [27471]: Database connection successful -- 17:07:04.904 INFO [27471]: _SERVER found -- 17:07:04.904 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 17:07:04.904 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:04.904 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:04.904 INFO [27471]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 17:07:04.904 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:04.915 INFO [27471]: COREGRADE is stopping... -- 17:07:04.915 DEBUG [27471]: Closing database connection -- 17:07:04.915 SQL [27471]: pgsql_close() -- 17:07:04.988 INFO [27471]: COREGRADE is starting... -- 17:07:04.988 INFO [27471]: Version from config: 1.0 -- 17:07:04.988 DEBUG [27471]: Connecting to database... -- 17:07:04.988 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:04.988 SQL [27471]: pgsql_db_connect() -- 17:07:04.992 DEBUG [27471]: Database connection successful -- 17:07:04.992 INFO [27471]: _SERVER found -- 17:07:04.992 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 17:07:04.992 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:04.992 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:04.992 INFO [27471]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 17:07:04.992 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:05.003 INFO [27471]: COREGRADE is stopping... -- 17:07:05.003 DEBUG [27471]: Closing database connection -- 17:07:05.003 SQL [27471]: pgsql_close() -- 17:07:05.076 INFO [27471]: COREGRADE is starting... -- 17:07:05.076 INFO [27471]: Version from config: 1.0 -- 17:07:05.076 DEBUG [27471]: Connecting to database... -- 17:07:05.076 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:05.076 SQL [27471]: pgsql_db_connect() -- 17:07:05.081 DEBUG [27471]: Database connection successful -- 17:07:05.081 INFO [27471]: _SERVER found -- 17:07:05.081 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 17:07:05.081 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:05.081 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:05.081 INFO [27471]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 17:07:05.081 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:05.092 INFO [27471]: COREGRADE is stopping... -- 17:07:05.092 DEBUG [27471]: Closing database connection -- 17:07:05.092 SQL [27471]: pgsql_close() -- 17:07:05.167 INFO [27471]: COREGRADE is starting... -- 17:07:05.167 INFO [27471]: Version from config: 1.0 -- 17:07:05.167 DEBUG [27471]: Connecting to database... -- 17:07:05.167 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:05.167 SQL [27471]: pgsql_db_connect() -- 17:07:05.171 DEBUG [27471]: Database connection successful -- 17:07:05.171 INFO [27471]: _SERVER found -- 17:07:05.171 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 17:07:05.171 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:05.171 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:05.171 INFO [27471]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 17:07:05.171 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:05.183 INFO [27471]: COREGRADE is stopping... -- 17:07:05.183 DEBUG [27471]: Closing database connection -- 17:07:05.183 SQL [27471]: pgsql_close() -- 17:07:05.255 INFO [27471]: COREGRADE is starting... -- 17:07:05.255 INFO [27471]: Version from config: 1.0 -- 17:07:05.255 DEBUG [27471]: Connecting to database... -- 17:07:05.255 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:05.255 SQL [27471]: pgsql_db_connect() -- 17:07:05.259 DEBUG [27471]: Database connection successful -- 17:07:05.259 INFO [27471]: _SERVER found -- 17:07:05.259 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 17:07:05.259 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:05.259 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:05.259 INFO [27471]: QUERY_STRING = /assets/js/pages/dashboard.js -- 17:07:05.259 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:05.271 INFO [27471]: COREGRADE is stopping... -- 17:07:05.271 DEBUG [27471]: Closing database connection -- 17:07:05.271 SQL [27471]: pgsql_close() -- 17:07:05.344 INFO [27471]: COREGRADE is starting... -- 17:07:05.344 INFO [27471]: Version from config: 1.0 -- 17:07:05.344 DEBUG [27471]: Connecting to database... -- 17:07:05.344 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:05.344 SQL [27471]: pgsql_db_connect() -- 17:07:05.348 DEBUG [27471]: Database connection successful -- 17:07:05.348 INFO [27471]: _SERVER found -- 17:07:05.348 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 17:07:05.348 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:05.348 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:05.348 INFO [27471]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 17:07:05.348 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:05.360 INFO [27471]: COREGRADE is stopping... -- 17:07:05.360 DEBUG [27471]: Closing database connection -- 17:07:05.360 SQL [27471]: pgsql_close() -- 17:07:05.431 INFO [27471]: COREGRADE is starting... -- 17:07:05.431 INFO [27471]: Version from config: 1.0 -- 17:07:05.431 DEBUG [27471]: Connecting to database... -- 17:07:05.431 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:05.431 SQL [27471]: pgsql_db_connect() -- 17:07:05.436 DEBUG [27471]: Database connection successful -- 17:07:05.436 INFO [27471]: _SERVER found -- 17:07:05.436 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 17:07:05.436 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:05.436 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:05.436 INFO [27471]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 17:07:05.436 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:05.447 INFO [27471]: COREGRADE is stopping... -- 17:07:05.447 DEBUG [27471]: Closing database connection -- 17:07:05.447 SQL [27471]: pgsql_close() -- 17:07:05.520 INFO [27471]: COREGRADE is starting... -- 17:07:05.520 INFO [27471]: Version from config: 1.0 -- 17:07:05.520 DEBUG [27471]: Connecting to database... -- 17:07:05.520 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:05.520 SQL [27471]: pgsql_db_connect() -- 17:07:05.524 DEBUG [27471]: Database connection successful -- 17:07:05.524 INFO [27471]: _SERVER found -- 17:07:05.524 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 17:07:05.524 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:05.524 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:05.524 INFO [27471]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 17:07:05.524 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:05.536 INFO [27471]: COREGRADE is stopping... -- 17:07:05.536 DEBUG [27471]: Closing database connection -- 17:07:05.536 SQL [27471]: pgsql_close() -- 17:07:05.608 INFO [27471]: COREGRADE is starting... -- 17:07:05.608 INFO [27471]: Version from config: 1.0 -- 17:07:05.608 DEBUG [27471]: Connecting to database... -- 17:07:05.608 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:05.608 SQL [27471]: pgsql_db_connect() -- 17:07:05.612 DEBUG [27471]: Database connection successful -- 17:07:05.612 INFO [27471]: _SERVER found -- 17:07:05.612 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 17:07:05.612 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:05.612 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:05.612 INFO [27471]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 17:07:05.612 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:05.624 INFO [27471]: COREGRADE is stopping... -- 17:07:05.624 DEBUG [27471]: Closing database connection -- 17:07:05.624 SQL [27471]: pgsql_close() -- 17:07:05.696 INFO [27471]: COREGRADE is starting... -- 17:07:05.696 INFO [27471]: Version from config: 1.0 -- 17:07:05.696 DEBUG [27471]: Connecting to database... -- 17:07:05.696 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:05.696 SQL [27471]: pgsql_db_connect() -- 17:07:05.700 DEBUG [27471]: Database connection successful -- 17:07:05.700 INFO [27471]: _SERVER found -- 17:07:05.700 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 17:07:05.700 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:05.700 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:05.700 INFO [27471]: QUERY_STRING = /assets/js/pages/picker_date.js -- 17:07:05.700 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:05.712 INFO [27471]: COREGRADE is stopping... -- 17:07:05.712 DEBUG [27471]: Closing database connection -- 17:07:05.712 SQL [27471]: pgsql_close() -- 17:07:05.786 INFO [27471]: COREGRADE is starting... -- 17:07:05.787 INFO [27471]: Version from config: 1.0 -- 17:07:05.787 DEBUG [27471]: Connecting to database... -- 17:07:05.787 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:05.787 SQL [27471]: pgsql_db_connect() -- 17:07:05.791 DEBUG [27471]: Database connection successful -- 17:07:05.791 INFO [27471]: _SERVER found -- 17:07:05.791 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 17:07:05.791 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:05.791 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:05.791 INFO [27471]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 17:07:05.791 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:05.802 INFO [27471]: COREGRADE is stopping... -- 17:07:05.802 DEBUG [27471]: Closing database connection -- 17:07:05.802 SQL [27471]: pgsql_close() -- 17:07:05.874 INFO [27471]: COREGRADE is starting... -- 17:07:05.875 INFO [27471]: Version from config: 1.0 -- 17:07:05.875 DEBUG [27471]: Connecting to database... -- 17:07:05.875 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:05.875 SQL [27471]: pgsql_db_connect() -- 17:07:05.879 DEBUG [27471]: Database connection successful -- 17:07:05.879 INFO [27471]: _SERVER found -- 17:07:05.879 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 17:07:05.879 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:05.879 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:05.879 INFO [27471]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 17:07:05.879 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:05.890 INFO [27471]: COREGRADE is stopping... -- 17:07:05.890 DEBUG [27471]: Closing database connection -- 17:07:05.890 SQL [27471]: pgsql_close() -- 17:07:05.962 INFO [27471]: COREGRADE is starting... -- 17:07:05.962 INFO [27471]: Version from config: 1.0 -- 17:07:05.962 DEBUG [27471]: Connecting to database... -- 17:07:05.962 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:05.962 SQL [27471]: pgsql_db_connect() -- 17:07:05.966 DEBUG [27471]: Database connection successful -- 17:07:05.966 INFO [27471]: _SERVER found -- 17:07:05.966 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 17:07:05.966 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:05.966 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:05.966 INFO [27471]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 17:07:05.966 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:05.978 INFO [27471]: COREGRADE is stopping... -- 17:07:05.978 DEBUG [27471]: Closing database connection -- 17:07:05.978 SQL [27471]: pgsql_close() -- 17:07:06.049 INFO [27471]: COREGRADE is starting... -- 17:07:06.050 INFO [27471]: Version from config: 1.0 -- 17:07:06.050 DEBUG [27471]: Connecting to database... -- 17:07:06.050 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:06.050 SQL [27471]: pgsql_db_connect() -- 17:07:06.054 DEBUG [27471]: Database connection successful -- 17:07:06.054 INFO [27471]: _SERVER found -- 17:07:06.054 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 17:07:06.054 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:06.054 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:06.054 INFO [27471]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 17:07:06.054 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:06.065 INFO [27471]: COREGRADE is stopping... -- 17:07:06.065 DEBUG [27471]: Closing database connection -- 17:07:06.065 SQL [27471]: pgsql_close() -- 17:07:06.137 INFO [27471]: COREGRADE is starting... -- 17:07:06.137 INFO [27471]: Version from config: 1.0 -- 17:07:06.137 DEBUG [27471]: Connecting to database... -- 17:07:06.138 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:06.138 SQL [27471]: pgsql_db_connect() -- 17:07:06.142 DEBUG [27471]: Database connection successful -- 17:07:06.142 INFO [27471]: _SERVER found -- 17:07:06.142 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 17:07:06.142 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:06.142 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:06.142 INFO [27471]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 17:07:06.142 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:06.153 INFO [27471]: COREGRADE is stopping... -- 17:07:06.153 DEBUG [27471]: Closing database connection -- 17:07:06.153 SQL [27471]: pgsql_close() -- 17:07:06.239 INFO [27471]: COREGRADE is starting... -- 17:07:06.240 INFO [27471]: Version from config: 1.0 -- 17:07:06.240 DEBUG [27471]: Connecting to database... -- 17:07:06.240 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:06.240 SQL [27471]: pgsql_db_connect() -- 17:07:06.244 DEBUG [27471]: Database connection successful -- 17:07:06.244 INFO [27471]: _SERVER found -- 17:07:06.244 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 17:07:06.244 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:06.244 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:06.244 INFO [27471]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 17:07:06.244 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:06.255 INFO [27471]: COREGRADE is stopping... -- 17:07:06.255 DEBUG [27471]: Closing database connection -- 17:07:06.255 SQL [27471]: pgsql_close() -- 17:07:06.327 INFO [27471]: COREGRADE is starting... -- 17:07:06.327 INFO [27471]: Version from config: 1.0 -- 17:07:06.327 DEBUG [27471]: Connecting to database... -- 17:07:06.327 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:06.327 SQL [27471]: pgsql_db_connect() -- 17:07:06.331 DEBUG [27471]: Database connection successful -- 17:07:06.331 INFO [27471]: _SERVER found -- 17:07:06.331 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 17:07:06.331 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:06.331 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:06.331 INFO [27471]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 17:07:06.331 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:06.343 INFO [27471]: COREGRADE is stopping... -- 17:07:06.343 DEBUG [27471]: Closing database connection -- 17:07:06.343 SQL [27471]: pgsql_close() -- 17:07:06.418 INFO [27471]: COREGRADE is starting... -- 17:07:06.419 INFO [27471]: Version from config: 1.0 -- 17:07:06.419 DEBUG [27471]: Connecting to database... -- 17:07:06.419 DEBUG [27471]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:07:06.419 SQL [27471]: pgsql_db_connect() -- 17:07:06.423 DEBUG [27471]: Database connection successful -- 17:07:06.423 INFO [27471]: _SERVER found -- 17:07:06.423 INFO [27471]: REMOTE_ADDR = 10.0.0.15 -- 17:07:06.423 INFO [27471]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:07:06.423 INFO [27471]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:07:06.423 INFO [27471]: QUERY_STRING = /assets/customjs/general.js -- 17:07:06.423 INFO [27471]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:07:06.434 INFO [27471]: COREGRADE is stopping... -- 17:07:06.434 DEBUG [27471]: Closing database connection -- 17:07:06.434 SQL [27471]: pgsql_close() -- 17:26:55.021 INFO [8890]: COREGRADE is starting... -- 17:26:55.021 INFO [8890]: Version from config: 1.0 -- 17:26:55.021 DEBUG [8890]: Connecting to database... -- 17:26:55.022 DEBUG [8890]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:26:55.022 SQL [8890]: pgsql_db_connect() -- 17:26:55.026 DEBUG [8890]: Database connection successful -- 17:26:55.026 INFO [8890]: _SERVER found -- 17:26:55.026 INFO [8890]: REMOTE_ADDR = 10.0.0.15 -- 17:26:55.026 INFO [8890]: SERVER_NAME = oameye.works.coregrade.com -- 17:26:55.026 INFO [8890]: QUERY_STRING = -- 17:26:55.026 INFO [8890]: HTTP_X_FORWARDED_FOR = 3.94.182.23 -- 17:26:55.072 INFO [8890]: COREGRADE is stopping... -- 17:26:55.072 DEBUG [8890]: Closing database connection -- 17:26:55.072 SQL [8890]: pgsql_close() -- 17:27:06.642 INFO [8893]: COREGRADE is starting... -- 17:27:06.643 INFO [8893]: Version from config: 1.0 -- 17:27:06.643 DEBUG [8893]: Connecting to database... -- 17:27:06.643 DEBUG [8893]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:06.643 SQL [8893]: pgsql_db_connect() -- 17:27:06.647 DEBUG [8893]: Database connection successful -- 17:27:06.647 INFO [8893]: _SERVER found -- 17:27:06.647 INFO [8893]: REMOTE_ADDR = 10.0.0.15 -- 17:27:06.647 INFO [8893]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:06.647 INFO [8893]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pveggkpi4c3vf1jgihijisr3h5p8f3p4 -- 17:27:06.647 INFO [8893]: QUERY_STRING = /logout -- 17:27:06.647 INFO [8893]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:06.684 INFO [8893]: COREGRADE is stopping... -- 17:27:06.684 DEBUG [8893]: Closing database connection -- 17:27:06.684 SQL [8893]: pgsql_close() -- 17:27:06.762 INFO [8893]: COREGRADE is starting... -- 17:27:06.762 INFO [8893]: Version from config: 1.0 -- 17:27:06.762 DEBUG [8893]: Connecting to database... -- 17:27:06.762 DEBUG [8893]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:06.762 SQL [8893]: pgsql_db_connect() -- 17:27:06.766 DEBUG [8893]: Database connection successful -- 17:27:06.766 INFO [8893]: _SERVER found -- 17:27:06.766 INFO [8893]: REMOTE_ADDR = 10.0.0.15 -- 17:27:06.766 INFO [8893]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:06.766 INFO [8893]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:06.766 INFO [8893]: QUERY_STRING = /start -- 17:27:06.766 INFO [8893]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:06.805 INFO [8893]: COREGRADE is stopping... -- 17:27:06.805 DEBUG [8893]: Closing database connection -- 17:27:06.805 SQL [8893]: pgsql_close() -- 17:27:06.900 INFO [8893]: COREGRADE is starting... -- 17:27:06.900 INFO [8893]: Version from config: 1.0 -- 17:27:06.900 DEBUG [8893]: Connecting to database... -- 17:27:06.900 DEBUG [8893]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:06.900 SQL [8893]: pgsql_db_connect() -- 17:27:06.904 DEBUG [8893]: Database connection successful -- 17:27:06.904 INFO [8893]: _SERVER found -- 17:27:06.904 INFO [8893]: REMOTE_ADDR = 10.0.0.15 -- 17:27:06.904 INFO [8893]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:06.904 INFO [8893]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:06.904 INFO [8893]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 17:27:06.904 INFO [8893]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:06.916 INFO [8893]: COREGRADE is stopping... -- 17:27:06.916 DEBUG [8893]: Closing database connection -- 17:27:06.916 SQL [8893]: pgsql_close() -- 17:27:06.951 INFO [8893]: COREGRADE is starting... -- 17:27:06.952 INFO [8893]: Version from config: 1.0 -- 17:27:06.952 DEBUG [8893]: Connecting to database... -- 17:27:06.952 DEBUG [8893]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:06.952 SQL [8893]: pgsql_db_connect() -- 17:27:06.955 DEBUG [8893]: Database connection successful -- 17:27:06.955 INFO [8893]: _SERVER found -- 17:27:06.955 INFO [8893]: REMOTE_ADDR = 10.0.0.15 -- 17:27:06.955 INFO [8893]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:06.955 INFO [8893]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:06.955 INFO [8893]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 17:27:06.955 INFO [8893]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:06.967 INFO [8893]: COREGRADE is stopping... -- 17:27:06.967 DEBUG [8893]: Closing database connection -- 17:27:06.967 SQL [8893]: pgsql_close() -- 17:27:06.977 INFO [8892]: COREGRADE is starting... -- 17:27:06.978 INFO [8892]: Version from config: 1.0 -- 17:27:06.978 DEBUG [8892]: Connecting to database... -- 17:27:06.978 DEBUG [8892]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:06.978 SQL [8892]: pgsql_db_connect() -- 17:27:06.995 INFO [8893]: COREGRADE is starting... -- 17:27:06.995 INFO [8893]: Version from config: 1.0 -- 17:27:06.995 DEBUG [8893]: Connecting to database... -- 17:27:06.995 DEBUG [8893]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:06.995 SQL [8893]: pgsql_db_connect() -- 17:27:06.982 DEBUG [8892]: Database connection successful -- 17:27:06.982 INFO [8892]: _SERVER found -- 17:27:06.982 INFO [8892]: REMOTE_ADDR = 10.0.0.15 -- 17:27:06.982 INFO [8892]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:06.982 INFO [8892]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:06.982 INFO [8892]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 17:27:06.982 INFO [8892]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:06.997 INFO [8892]: COREGRADE is stopping... -- 17:27:06.997 DEBUG [8892]: Closing database connection -- 17:27:06.997 SQL [8892]: pgsql_close() -- 17:27:06.999 DEBUG [8893]: Database connection successful -- 17:27:06.999 INFO [8893]: _SERVER found -- 17:27:06.999 INFO [8893]: REMOTE_ADDR = 10.0.0.15 -- 17:27:06.999 INFO [8893]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:06.999 INFO [8893]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:06.999 INFO [8893]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 17:27:06.999 INFO [8893]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:07.011 INFO [8893]: COREGRADE is stopping... -- 17:27:07.011 DEBUG [8893]: Closing database connection -- 17:27:07.011 SQL [8893]: pgsql_close() -- 17:27:07.032 INFO [8893]: COREGRADE is starting... -- 17:27:07.032 INFO [8893]: Version from config: 1.0 -- 17:27:07.032 DEBUG [8893]: Connecting to database... -- 17:27:07.032 DEBUG [8893]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:07.032 SQL [8893]: pgsql_db_connect() -- 17:27:07.036 DEBUG [8893]: Database connection successful -- 17:27:07.036 INFO [8893]: _SERVER found -- 17:27:07.036 INFO [8893]: REMOTE_ADDR = 10.0.0.15 -- 17:27:07.036 INFO [8893]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:07.036 INFO [8893]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:07.036 INFO [8893]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 17:27:07.036 INFO [8893]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:07.048 INFO [8893]: COREGRADE is stopping... -- 17:27:07.048 DEBUG [8893]: Closing database connection -- 17:27:07.048 SQL [8893]: pgsql_close() -- 17:27:07.079 INFO [8892]: COREGRADE is starting... -- 17:27:07.079 INFO [8892]: Version from config: 1.0 -- 17:27:07.079 DEBUG [8892]: Connecting to database... -- 17:27:07.079 DEBUG [8892]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:07.079 SQL [8892]: pgsql_db_connect() -- 17:27:07.089 INFO [8893]: COREGRADE is starting... -- 17:27:07.090 INFO [8893]: Version from config: 1.0 -- 17:27:07.090 DEBUG [8893]: Connecting to database... -- 17:27:07.090 DEBUG [8893]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:07.090 SQL [8893]: pgsql_db_connect() -- 17:27:07.083 DEBUG [8892]: Database connection successful -- 17:27:07.083 INFO [8892]: _SERVER found -- 17:27:07.083 INFO [8892]: REMOTE_ADDR = 10.0.0.15 -- 17:27:07.083 INFO [8892]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:07.083 INFO [8892]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:07.083 INFO [8892]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 17:27:07.083 INFO [8892]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:07.095 INFO [8892]: COREGRADE is stopping... -- 17:27:07.095 DEBUG [8892]: Closing database connection -- 17:27:07.095 SQL [8892]: pgsql_close() -- 17:27:07.094 DEBUG [8893]: Database connection successful -- 17:27:07.094 INFO [8893]: _SERVER found -- 17:27:07.094 INFO [8893]: REMOTE_ADDR = 10.0.0.15 -- 17:27:07.094 INFO [8893]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:07.094 INFO [8893]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:07.094 INFO [8893]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 17:27:07.094 INFO [8893]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:07.105 INFO [8893]: COREGRADE is stopping... -- 17:27:07.105 DEBUG [8893]: Closing database connection -- 17:27:07.105 SQL [8893]: pgsql_close() -- 17:27:07.113 INFO [8893]: COREGRADE is starting... -- 17:27:07.113 INFO [8893]: Version from config: 1.0 -- 17:27:07.113 DEBUG [8893]: Connecting to database... -- 17:27:07.113 DEBUG [8893]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:07.113 SQL [8893]: pgsql_db_connect() -- 17:27:07.117 DEBUG [8893]: Database connection successful -- 17:27:07.117 INFO [8893]: _SERVER found -- 17:27:07.117 INFO [8893]: REMOTE_ADDR = 10.0.0.15 -- 17:27:07.117 INFO [8893]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:07.117 INFO [8893]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:07.117 INFO [8893]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 17:27:07.117 INFO [8893]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:07.128 INFO [8893]: COREGRADE is stopping... -- 17:27:07.128 DEBUG [8893]: Closing database connection -- 17:27:07.128 SQL [8893]: pgsql_close() -- 17:27:07.178 INFO [8892]: COREGRADE is starting... -- 17:27:07.179 INFO [8892]: Version from config: 1.0 -- 17:27:07.179 DEBUG [8892]: Connecting to database... -- 17:27:07.179 DEBUG [8892]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:07.179 SQL [8892]: pgsql_db_connect() -- 17:27:07.185 INFO [8893]: COREGRADE is starting... -- 17:27:07.185 INFO [8893]: Version from config: 1.0 -- 17:27:07.185 DEBUG [8893]: Connecting to database... -- 17:27:07.185 DEBUG [8893]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:07.185 SQL [8893]: pgsql_db_connect() -- 17:27:07.183 DEBUG [8892]: Database connection successful -- 17:27:07.183 INFO [8892]: _SERVER found -- 17:27:07.183 INFO [8892]: REMOTE_ADDR = 10.0.0.15 -- 17:27:07.183 INFO [8892]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:07.183 INFO [8892]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:07.183 INFO [8892]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 17:27:07.183 INFO [8892]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:07.194 INFO [8892]: COREGRADE is stopping... -- 17:27:07.194 DEBUG [8892]: Closing database connection -- 17:27:07.194 SQL [8892]: pgsql_close() -- 17:27:07.196 INFO [8913]: COREGRADE is starting... -- 17:27:07.196 INFO [8913]: Version from config: 1.0 -- 17:27:07.196 DEBUG [8913]: Connecting to database... -- 17:27:07.196 DEBUG [8913]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:07.196 SQL [8913]: pgsql_db_connect() -- 17:27:07.189 DEBUG [8893]: Database connection successful -- 17:27:07.189 INFO [8893]: _SERVER found -- 17:27:07.189 INFO [8893]: REMOTE_ADDR = 10.0.0.15 -- 17:27:07.189 INFO [8893]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:07.189 INFO [8893]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:07.189 INFO [8893]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 17:27:07.189 INFO [8893]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:07.201 INFO [8893]: COREGRADE is stopping... -- 17:27:07.201 DEBUG [8893]: Closing database connection -- 17:27:07.201 SQL [8893]: pgsql_close() -- 17:27:07.200 DEBUG [8913]: Database connection successful -- 17:27:07.200 INFO [8913]: _SERVER found -- 17:27:07.200 INFO [8913]: REMOTE_ADDR = 10.0.0.15 -- 17:27:07.200 INFO [8913]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:07.200 INFO [8913]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:07.200 INFO [8913]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 17:27:07.200 INFO [8913]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:07.215 INFO [8913]: COREGRADE is stopping... -- 17:27:07.215 DEBUG [8913]: Closing database connection -- 17:27:07.215 SQL [8913]: pgsql_close() -- 17:27:07.270 INFO [8913]: COREGRADE is starting... -- 17:27:07.270 INFO [8913]: Version from config: 1.0 -- 17:27:07.270 DEBUG [8913]: Connecting to database... -- 17:27:07.270 DEBUG [8913]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:07.270 SQL [8913]: pgsql_db_connect() -- 17:27:07.270 INFO [8892]: COREGRADE is starting... -- 17:27:07.270 INFO [8892]: Version from config: 1.0 -- 17:27:07.270 DEBUG [8892]: Connecting to database... -- 17:27:07.270 DEBUG [8892]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:07.270 SQL [8892]: pgsql_db_connect() -- 17:27:07.280 INFO [8893]: COREGRADE is starting... -- 17:27:07.280 INFO [8893]: Version from config: 1.0 -- 17:27:07.280 DEBUG [8893]: Connecting to database... -- 17:27:07.280 DEBUG [8893]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:07.280 SQL [8893]: pgsql_db_connect() -- 17:27:07.274 DEBUG [8892]: Database connection successful -- 17:27:07.274 INFO [8892]: _SERVER found -- 17:27:07.274 INFO [8892]: REMOTE_ADDR = 10.0.0.15 -- 17:27:07.274 INFO [8892]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:07.274 INFO [8892]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:07.274 INFO [8892]: QUERY_STRING = /assets/js/pages/dashboard.js -- 17:27:07.274 INFO [8892]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:07.286 INFO [8892]: COREGRADE is stopping... -- 17:27:07.286 DEBUG [8892]: Closing database connection -- 17:27:07.286 SQL [8892]: pgsql_close() -- 17:27:07.274 DEBUG [8913]: Database connection successful -- 17:27:07.274 INFO [8913]: _SERVER found -- 17:27:07.274 INFO [8913]: REMOTE_ADDR = 10.0.0.15 -- 17:27:07.274 INFO [8913]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:07.274 INFO [8913]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:07.274 INFO [8913]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 17:27:07.274 INFO [8913]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:07.286 INFO [8913]: COREGRADE is stopping... -- 17:27:07.286 DEBUG [8913]: Closing database connection -- 17:27:07.286 SQL [8913]: pgsql_close() -- 17:27:07.284 DEBUG [8893]: Database connection successful -- 17:27:07.284 INFO [8893]: _SERVER found -- 17:27:07.284 INFO [8893]: REMOTE_ADDR = 10.0.0.15 -- 17:27:07.284 INFO [8893]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:07.284 INFO [8893]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:07.284 INFO [8893]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 17:27:07.284 INFO [8893]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:07.296 INFO [8893]: COREGRADE is stopping... -- 17:27:07.296 DEBUG [8893]: Closing database connection -- 17:27:07.296 SQL [8893]: pgsql_close() -- 17:27:07.356 INFO [8893]: COREGRADE is starting... -- 17:27:07.356 INFO [8893]: Version from config: 1.0 -- 17:27:07.356 DEBUG [8893]: Connecting to database... -- 17:27:07.356 DEBUG [8893]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:07.356 SQL [8893]: pgsql_db_connect() -- 17:27:07.359 INFO [8892]: COREGRADE is starting... -- 17:27:07.360 INFO [8892]: Version from config: 1.0 -- 17:27:07.360 DEBUG [8892]: Connecting to database... -- 17:27:07.360 DEBUG [8892]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:07.360 SQL [8892]: pgsql_db_connect() -- 17:27:07.360 INFO [8913]: COREGRADE is starting... -- 17:27:07.361 INFO [8913]: Version from config: 1.0 -- 17:27:07.361 DEBUG [8913]: Connecting to database... -- 17:27:07.361 DEBUG [8913]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:07.361 SQL [8913]: pgsql_db_connect() -- 17:27:07.360 DEBUG [8893]: Database connection successful -- 17:27:07.360 INFO [8893]: _SERVER found -- 17:27:07.360 INFO [8893]: REMOTE_ADDR = 10.0.0.15 -- 17:27:07.360 INFO [8893]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:07.360 INFO [8893]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:07.360 INFO [8893]: QUERY_STRING = /assets/js/pages/picker_date.js -- 17:27:07.360 INFO [8893]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:07.372 INFO [8893]: COREGRADE is stopping... -- 17:27:07.372 DEBUG [8893]: Closing database connection -- 17:27:07.372 SQL [8893]: pgsql_close() -- 17:27:07.363 DEBUG [8892]: Database connection successful -- 17:27:07.363 INFO [8892]: _SERVER found -- 17:27:07.363 INFO [8892]: REMOTE_ADDR = 10.0.0.15 -- 17:27:07.363 INFO [8892]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:07.363 INFO [8892]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:07.363 INFO [8892]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 17:27:07.363 INFO [8892]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:07.375 INFO [8892]: COREGRADE is stopping... -- 17:27:07.375 DEBUG [8892]: Closing database connection -- 17:27:07.375 SQL [8892]: pgsql_close() -- 17:27:07.364 DEBUG [8913]: Database connection successful -- 17:27:07.364 INFO [8913]: _SERVER found -- 17:27:07.364 INFO [8913]: REMOTE_ADDR = 10.0.0.15 -- 17:27:07.364 INFO [8913]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:07.364 INFO [8913]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:07.364 INFO [8913]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 17:27:07.364 INFO [8913]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:07.376 INFO [8913]: COREGRADE is stopping... -- 17:27:07.376 DEBUG [8913]: Closing database connection -- 17:27:07.376 SQL [8913]: pgsql_close() -- 17:27:07.442 INFO [8893]: COREGRADE is starting... -- 17:27:07.442 INFO [8913]: COREGRADE is starting... -- 17:27:07.442 INFO [8913]: Version from config: 1.0 -- 17:27:07.442 DEBUG [8913]: Connecting to database... -- 17:27:07.442 INFO [8893]: Version from config: 1.0 -- 17:27:07.442 DEBUG [8893]: Connecting to database... -- 17:27:07.442 DEBUG [8913]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:07.442 DEBUG [8893]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:07.442 SQL [8913]: pgsql_db_connect() -- 17:27:07.442 SQL [8893]: pgsql_db_connect() -- 17:27:07.446 INFO [8892]: COREGRADE is starting... -- 17:27:07.447 INFO [8892]: Version from config: 1.0 -- 17:27:07.447 DEBUG [8892]: Connecting to database... -- 17:27:07.447 DEBUG [8892]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:07.447 SQL [8892]: pgsql_db_connect() -- 17:27:07.446 DEBUG [8913]: Database connection successful -- 17:27:07.446 INFO [8913]: _SERVER found -- 17:27:07.446 INFO [8913]: REMOTE_ADDR = 10.0.0.15 -- 17:27:07.446 INFO [8913]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:07.446 INFO [8913]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:07.446 INFO [8913]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 17:27:07.446 INFO [8913]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:07.458 INFO [8913]: COREGRADE is stopping... -- 17:27:07.458 DEBUG [8913]: Closing database connection -- 17:27:07.446 DEBUG [8893]: Database connection successful -- 17:27:07.446 INFO [8893]: _SERVER found -- 17:27:07.446 INFO [8893]: REMOTE_ADDR = 10.0.0.15 -- 17:27:07.446 INFO [8893]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:07.446 INFO [8893]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:07.446 INFO [8893]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 17:27:07.446 INFO [8893]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:07.458 INFO [8893]: COREGRADE is stopping... -- 17:27:07.458 SQL [8913]: pgsql_close() -- 17:27:07.458 DEBUG [8893]: Closing database connection -- 17:27:07.458 SQL [8893]: pgsql_close() -- 17:27:07.451 DEBUG [8892]: Database connection successful -- 17:27:07.451 INFO [8892]: _SERVER found -- 17:27:07.451 INFO [8892]: REMOTE_ADDR = 10.0.0.15 -- 17:27:07.451 INFO [8892]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:07.451 INFO [8892]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:07.451 INFO [8892]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 17:27:07.451 INFO [8892]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:07.462 INFO [8892]: COREGRADE is stopping... -- 17:27:07.462 DEBUG [8892]: Closing database connection -- 17:27:07.462 SQL [8892]: pgsql_close() -- 17:27:07.523 INFO [8893]: COREGRADE is starting... -- 17:27:07.523 INFO [8893]: Version from config: 1.0 -- 17:27:07.523 DEBUG [8893]: Connecting to database... -- 17:27:07.523 DEBUG [8893]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:07.523 SQL [8893]: pgsql_db_connect() -- 17:27:07.526 INFO [8913]: COREGRADE is starting... -- 17:27:07.526 INFO [8913]: Version from config: 1.0 -- 17:27:07.526 DEBUG [8913]: Connecting to database... -- 17:27:07.526 DEBUG [8913]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:07.526 SQL [8913]: pgsql_db_connect() -- 17:27:07.533 INFO [8892]: COREGRADE is starting... -- 17:27:07.533 INFO [8892]: Version from config: 1.0 -- 17:27:07.533 DEBUG [8892]: Connecting to database... -- 17:27:07.533 DEBUG [8892]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:07.533 SQL [8892]: pgsql_db_connect() -- 17:27:07.527 DEBUG [8893]: Database connection successful -- 17:27:07.527 INFO [8893]: _SERVER found -- 17:27:07.527 INFO [8893]: REMOTE_ADDR = 10.0.0.15 -- 17:27:07.527 INFO [8893]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:07.527 INFO [8893]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:07.527 INFO [8893]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 17:27:07.527 INFO [8893]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:07.539 INFO [8893]: COREGRADE is stopping... -- 17:27:07.539 DEBUG [8893]: Closing database connection -- 17:27:07.539 SQL [8893]: pgsql_close() -- 17:27:07.530 DEBUG [8913]: Database connection successful -- 17:27:07.530 INFO [8913]: _SERVER found -- 17:27:07.530 INFO [8913]: REMOTE_ADDR = 10.0.0.15 -- 17:27:07.530 INFO [8913]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:07.530 INFO [8913]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:07.530 INFO [8913]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 17:27:07.530 INFO [8913]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:07.541 INFO [8913]: COREGRADE is stopping... -- 17:27:07.541 DEBUG [8913]: Closing database connection -- 17:27:07.541 SQL [8913]: pgsql_close() -- 17:27:07.537 DEBUG [8892]: Database connection successful -- 17:27:07.537 INFO [8892]: _SERVER found -- 17:27:07.537 INFO [8892]: REMOTE_ADDR = 10.0.0.15 -- 17:27:07.537 INFO [8892]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:07.537 INFO [8892]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:07.537 INFO [8892]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 17:27:07.537 INFO [8892]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:07.549 INFO [8892]: COREGRADE is stopping... -- 17:27:07.549 DEBUG [8892]: Closing database connection -- 17:27:07.549 SQL [8892]: pgsql_close() -- 17:27:07.606 INFO [8913]: COREGRADE is starting... -- 17:27:07.606 INFO [8913]: Version from config: 1.0 -- 17:27:07.606 DEBUG [8913]: Connecting to database... -- 17:27:07.606 DEBUG [8913]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:07.606 SQL [8913]: pgsql_db_connect() -- 17:27:07.611 INFO [8893]: COREGRADE is starting... -- 17:27:07.612 INFO [8893]: Version from config: 1.0 -- 17:27:07.612 DEBUG [8893]: Connecting to database... -- 17:27:07.612 DEBUG [8893]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:07.612 SQL [8893]: pgsql_db_connect() -- 17:27:07.610 DEBUG [8913]: Database connection successful -- 17:27:07.610 INFO [8913]: _SERVER found -- 17:27:07.610 INFO [8913]: REMOTE_ADDR = 10.0.0.15 -- 17:27:07.610 INFO [8913]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:07.610 INFO [8913]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:07.610 INFO [8913]: QUERY_STRING = /assets/customjs/general.js -- 17:27:07.610 INFO [8913]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:07.622 INFO [8913]: COREGRADE is stopping... -- 17:27:07.622 DEBUG [8913]: Closing database connection -- 17:27:07.622 SQL [8913]: pgsql_close() -- 17:27:07.616 DEBUG [8893]: Database connection successful -- 17:27:07.616 INFO [8893]: _SERVER found -- 17:27:07.616 INFO [8893]: REMOTE_ADDR = 10.0.0.15 -- 17:27:07.616 INFO [8893]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:07.616 INFO [8893]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:07.616 INFO [8893]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 17:27:07.616 INFO [8893]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:07.627 INFO [8893]: COREGRADE is stopping... -- 17:27:07.627 DEBUG [8893]: Closing database connection -- 17:27:07.627 SQL [8893]: pgsql_close() -- 17:27:07.695 INFO [8893]: COREGRADE is starting... -- 17:27:07.696 INFO [8893]: Version from config: 1.0 -- 17:27:07.696 DEBUG [8893]: Connecting to database... -- 17:27:07.696 DEBUG [8893]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:07.696 SQL [8893]: pgsql_db_connect() -- 17:27:07.699 DEBUG [8893]: Database connection successful -- 17:27:07.699 INFO [8893]: _SERVER found -- 17:27:07.699 INFO [8893]: REMOTE_ADDR = 10.0.0.15 -- 17:27:07.699 INFO [8893]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:07.699 INFO [8893]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:07.699 INFO [8893]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 17:27:07.700 INFO [8893]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:07.711 INFO [8893]: COREGRADE is stopping... -- 17:27:07.711 DEBUG [8893]: Closing database connection -- 17:27:07.711 SQL [8893]: pgsql_close() -- 17:27:07.783 INFO [8893]: COREGRADE is starting... -- 17:27:07.783 INFO [8893]: Version from config: 1.0 -- 17:27:07.783 DEBUG [8893]: Connecting to database... -- 17:27:07.783 DEBUG [8893]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:07.783 SQL [8893]: pgsql_db_connect() -- 17:27:07.787 DEBUG [8893]: Database connection successful -- 17:27:07.787 INFO [8893]: _SERVER found -- 17:27:07.787 INFO [8893]: REMOTE_ADDR = 10.0.0.15 -- 17:27:07.787 INFO [8893]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:07.787 INFO [8893]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:07.787 INFO [8893]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 17:27:07.787 INFO [8893]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:07.799 INFO [8893]: COREGRADE is stopping... -- 17:27:07.799 DEBUG [8893]: Closing database connection -- 17:27:07.799 SQL [8893]: pgsql_close() -- 17:27:07.867 INFO [8893]: COREGRADE is starting... -- 17:27:07.867 INFO [8893]: Version from config: 1.0 -- 17:27:07.867 DEBUG [8893]: Connecting to database... -- 17:27:07.867 DEBUG [8893]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:07.867 SQL [8893]: pgsql_db_connect() -- 17:27:07.871 DEBUG [8893]: Database connection successful -- 17:27:07.871 INFO [8893]: _SERVER found -- 17:27:07.871 INFO [8893]: REMOTE_ADDR = 10.0.0.15 -- 17:27:07.871 INFO [8893]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:07.871 INFO [8893]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:07.871 INFO [8893]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 17:27:07.871 INFO [8893]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:07.882 INFO [8893]: COREGRADE is stopping... -- 17:27:07.882 DEBUG [8893]: Closing database connection -- 17:27:07.882 SQL [8893]: pgsql_close() -- 17:27:07.952 INFO [8893]: COREGRADE is starting... -- 17:27:07.952 INFO [8893]: Version from config: 1.0 -- 17:27:07.952 DEBUG [8893]: Connecting to database... -- 17:27:07.952 DEBUG [8893]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:07.952 SQL [8893]: pgsql_db_connect() -- 17:27:07.956 DEBUG [8893]: Database connection successful -- 17:27:07.956 INFO [8893]: _SERVER found -- 17:27:07.956 INFO [8893]: REMOTE_ADDR = 10.0.0.15 -- 17:27:07.956 INFO [8893]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:07.956 INFO [8893]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:07.956 INFO [8893]: QUERY_STRING = /assets/js/pages/picker_date.js -- 17:27:07.956 INFO [8893]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:07.967 INFO [8893]: COREGRADE is stopping... -- 17:27:07.967 DEBUG [8893]: Closing database connection -- 17:27:07.967 SQL [8893]: pgsql_close() -- 17:27:08.036 INFO [8893]: COREGRADE is starting... -- 17:27:08.036 INFO [8893]: Version from config: 1.0 -- 17:27:08.036 DEBUG [8893]: Connecting to database... -- 17:27:08.036 DEBUG [8893]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:08.036 SQL [8893]: pgsql_db_connect() -- 17:27:08.040 DEBUG [8893]: Database connection successful -- 17:27:08.040 INFO [8893]: _SERVER found -- 17:27:08.040 INFO [8893]: REMOTE_ADDR = 10.0.0.15 -- 17:27:08.040 INFO [8893]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:08.040 INFO [8893]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:08.040 INFO [8893]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 17:27:08.040 INFO [8893]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:08.051 INFO [8893]: COREGRADE is stopping... -- 17:27:08.051 DEBUG [8893]: Closing database connection -- 17:27:08.051 SQL [8893]: pgsql_close() -- 17:27:08.120 INFO [8893]: COREGRADE is starting... -- 17:27:08.120 INFO [8893]: Version from config: 1.0 -- 17:27:08.120 DEBUG [8893]: Connecting to database... -- 17:27:08.120 DEBUG [8893]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:08.120 SQL [8893]: pgsql_db_connect() -- 17:27:08.124 DEBUG [8893]: Database connection successful -- 17:27:08.124 INFO [8893]: _SERVER found -- 17:27:08.124 INFO [8893]: REMOTE_ADDR = 10.0.0.15 -- 17:27:08.124 INFO [8893]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:08.124 INFO [8893]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:08.124 INFO [8893]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 17:27:08.124 INFO [8893]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:08.135 INFO [8893]: COREGRADE is stopping... -- 17:27:08.136 DEBUG [8893]: Closing database connection -- 17:27:08.136 SQL [8893]: pgsql_close() -- 17:27:08.204 INFO [8893]: COREGRADE is starting... -- 17:27:08.204 INFO [8893]: Version from config: 1.0 -- 17:27:08.204 DEBUG [8893]: Connecting to database... -- 17:27:08.204 DEBUG [8893]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:08.204 SQL [8893]: pgsql_db_connect() -- 17:27:08.208 DEBUG [8893]: Database connection successful -- 17:27:08.208 INFO [8893]: _SERVER found -- 17:27:08.208 INFO [8893]: REMOTE_ADDR = 10.0.0.15 -- 17:27:08.208 INFO [8893]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:08.208 INFO [8893]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:08.208 INFO [8893]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 17:27:08.208 INFO [8893]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:08.219 INFO [8893]: COREGRADE is stopping... -- 17:27:08.219 DEBUG [8893]: Closing database connection -- 17:27:08.220 SQL [8893]: pgsql_close() -- 17:27:08.288 INFO [8893]: COREGRADE is starting... -- 17:27:08.288 INFO [8893]: Version from config: 1.0 -- 17:27:08.288 DEBUG [8893]: Connecting to database... -- 17:27:08.288 DEBUG [8893]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:08.288 SQL [8893]: pgsql_db_connect() -- 17:27:08.292 DEBUG [8893]: Database connection successful -- 17:27:08.292 INFO [8893]: _SERVER found -- 17:27:08.292 INFO [8893]: REMOTE_ADDR = 10.0.0.15 -- 17:27:08.292 INFO [8893]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:08.292 INFO [8893]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:08.292 INFO [8893]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 17:27:08.292 INFO [8893]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:08.303 INFO [8893]: COREGRADE is stopping... -- 17:27:08.303 DEBUG [8893]: Closing database connection -- 17:27:08.303 SQL [8893]: pgsql_close() -- 17:27:08.372 INFO [8893]: COREGRADE is starting... -- 17:27:08.372 INFO [8893]: Version from config: 1.0 -- 17:27:08.372 DEBUG [8893]: Connecting to database... -- 17:27:08.372 DEBUG [8893]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:08.372 SQL [8893]: pgsql_db_connect() -- 17:27:08.376 DEBUG [8893]: Database connection successful -- 17:27:08.376 INFO [8893]: _SERVER found -- 17:27:08.376 INFO [8893]: REMOTE_ADDR = 10.0.0.15 -- 17:27:08.376 INFO [8893]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:08.376 INFO [8893]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:08.376 INFO [8893]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 17:27:08.376 INFO [8893]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:08.388 INFO [8893]: COREGRADE is stopping... -- 17:27:08.388 DEBUG [8893]: Closing database connection -- 17:27:08.388 SQL [8893]: pgsql_close() -- 17:27:08.518 INFO [8893]: COREGRADE is starting... -- 17:27:08.519 INFO [8893]: Version from config: 1.0 -- 17:27:08.519 DEBUG [8893]: Connecting to database... -- 17:27:08.519 DEBUG [8893]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:08.519 SQL [8893]: pgsql_db_connect() -- 17:27:08.523 DEBUG [8893]: Database connection successful -- 17:27:08.523 INFO [8893]: _SERVER found -- 17:27:08.523 INFO [8893]: REMOTE_ADDR = 10.0.0.15 -- 17:27:08.523 INFO [8893]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:08.523 INFO [8893]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:08.523 INFO [8893]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 17:27:08.523 INFO [8893]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:08.534 INFO [8893]: COREGRADE is stopping... -- 17:27:08.534 DEBUG [8893]: Closing database connection -- 17:27:08.534 SQL [8893]: pgsql_close() -- 17:27:08.603 INFO [8893]: COREGRADE is starting... -- 17:27:08.604 INFO [8893]: Version from config: 1.0 -- 17:27:08.604 DEBUG [8893]: Connecting to database... -- 17:27:08.604 DEBUG [8893]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:08.604 SQL [8893]: pgsql_db_connect() -- 17:27:08.608 DEBUG [8893]: Database connection successful -- 17:27:08.608 INFO [8893]: _SERVER found -- 17:27:08.608 INFO [8893]: REMOTE_ADDR = 10.0.0.15 -- 17:27:08.608 INFO [8893]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:08.608 INFO [8893]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:08.608 INFO [8893]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 17:27:08.608 INFO [8893]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:08.619 INFO [8893]: COREGRADE is stopping... -- 17:27:08.619 DEBUG [8893]: Closing database connection -- 17:27:08.619 SQL [8893]: pgsql_close() -- 17:27:08.689 INFO [8893]: COREGRADE is starting... -- 17:27:08.690 INFO [8893]: Version from config: 1.0 -- 17:27:08.690 DEBUG [8893]: Connecting to database... -- 17:27:08.690 DEBUG [8893]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:08.690 SQL [8893]: pgsql_db_connect() -- 17:27:08.694 DEBUG [8893]: Database connection successful -- 17:27:08.694 INFO [8893]: _SERVER found -- 17:27:08.694 INFO [8893]: REMOTE_ADDR = 10.0.0.15 -- 17:27:08.694 INFO [8893]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:27:08.694 INFO [8893]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:27:08.694 INFO [8893]: QUERY_STRING = /assets/customjs/general.js -- 17:27:08.694 INFO [8893]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:27:08.705 INFO [8893]: COREGRADE is stopping... -- 17:27:08.705 DEBUG [8893]: Closing database connection -- 17:27:08.705 SQL [8893]: pgsql_close() -- 17:47:08.934 INFO [3738]: COREGRADE is starting... -- 17:47:08.935 INFO [3738]: Version from config: 1.0 -- 17:47:08.935 DEBUG [3738]: Connecting to database... -- 17:47:08.935 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:08.935 SQL [3738]: pgsql_db_connect() -- 17:47:08.939 DEBUG [3738]: Database connection successful -- 17:47:08.939 INFO [3738]: _SERVER found -- 17:47:08.939 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 17:47:08.939 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:08.939 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=csauvdsbrqmrs1l9bph0j4pvpfiu4eip -- 17:47:08.939 INFO [3738]: QUERY_STRING = /logout -- 17:47:08.939 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:08.980 INFO [3738]: COREGRADE is stopping... -- 17:47:08.980 DEBUG [3738]: Closing database connection -- 17:47:08.980 SQL [3738]: pgsql_close() -- 17:47:09.059 INFO [3738]: COREGRADE is starting... -- 17:47:09.060 INFO [3738]: Version from config: 1.0 -- 17:47:09.060 DEBUG [3738]: Connecting to database... -- 17:47:09.060 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:09.060 SQL [3738]: pgsql_db_connect() -- 17:47:09.064 DEBUG [3738]: Database connection successful -- 17:47:09.064 INFO [3738]: _SERVER found -- 17:47:09.064 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 17:47:09.064 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:09.064 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:09.064 INFO [3738]: QUERY_STRING = /start -- 17:47:09.064 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:09.105 INFO [3738]: COREGRADE is stopping... -- 17:47:09.105 DEBUG [3738]: Closing database connection -- 17:47:09.105 SQL [3738]: pgsql_close() -- 17:47:09.228 INFO [3738]: COREGRADE is starting... -- 17:47:09.229 INFO [3738]: Version from config: 1.0 -- 17:47:09.229 DEBUG [3738]: Connecting to database... -- 17:47:09.229 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:09.229 SQL [3738]: pgsql_db_connect() -- 17:47:09.233 DEBUG [3738]: Database connection successful -- 17:47:09.233 INFO [3738]: _SERVER found -- 17:47:09.233 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 17:47:09.233 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:09.233 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:09.233 INFO [3738]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 17:47:09.233 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:09.244 INFO [3738]: COREGRADE is stopping... -- 17:47:09.244 DEBUG [3738]: Closing database connection -- 17:47:09.244 SQL [3738]: pgsql_close() -- 17:47:09.252 INFO [3738]: COREGRADE is starting... -- 17:47:09.252 INFO [3738]: Version from config: 1.0 -- 17:47:09.252 DEBUG [3738]: Connecting to database... -- 17:47:09.252 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:09.252 SQL [3738]: pgsql_db_connect() -- 17:47:09.256 DEBUG [3738]: Database connection successful -- 17:47:09.256 INFO [3738]: _SERVER found -- 17:47:09.256 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 17:47:09.256 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:09.256 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:09.256 INFO [3738]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 17:47:09.256 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:09.268 INFO [3738]: COREGRADE is stopping... -- 17:47:09.268 DEBUG [3738]: Closing database connection -- 17:47:09.268 SQL [3738]: pgsql_close() -- 17:47:09.297 INFO [3738]: COREGRADE is starting... -- 17:47:09.297 INFO [3738]: Version from config: 1.0 -- 17:47:09.297 DEBUG [3738]: Connecting to database... -- 17:47:09.297 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:09.297 SQL [3738]: pgsql_db_connect() -- 17:47:09.301 DEBUG [3738]: Database connection successful -- 17:47:09.301 INFO [3738]: _SERVER found -- 17:47:09.301 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 17:47:09.301 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:09.301 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:09.301 INFO [3738]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 17:47:09.301 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:09.313 INFO [3738]: COREGRADE is stopping... -- 17:47:09.313 DEBUG [3738]: Closing database connection -- 17:47:09.313 SQL [3738]: pgsql_close() -- 17:47:09.321 INFO [3738]: COREGRADE is starting... -- 17:47:09.322 INFO [3738]: Version from config: 1.0 -- 17:47:09.322 DEBUG [3738]: Connecting to database... -- 17:47:09.322 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:09.322 SQL [3738]: pgsql_db_connect() -- 17:47:09.326 DEBUG [3738]: Database connection successful -- 17:47:09.326 INFO [3738]: _SERVER found -- 17:47:09.326 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 17:47:09.326 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:09.326 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:09.326 INFO [3738]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 17:47:09.326 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:09.337 INFO [3738]: COREGRADE is stopping... -- 17:47:09.337 INFO [3739]: COREGRADE is starting... -- 17:47:09.337 DEBUG [3738]: Closing database connection -- 17:47:09.337 SQL [3738]: pgsql_close() -- 17:47:09.337 INFO [3739]: Version from config: 1.0 -- 17:47:09.337 DEBUG [3739]: Connecting to database... -- 17:47:09.337 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:09.337 SQL [3739]: pgsql_db_connect() -- 17:47:09.342 DEBUG [3739]: Database connection successful -- 17:47:09.342 INFO [3739]: _SERVER found -- 17:47:09.342 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 17:47:09.342 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:09.342 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:09.342 INFO [3739]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 17:47:09.342 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:09.357 INFO [3739]: COREGRADE is stopping... -- 17:47:09.357 DEBUG [3739]: Closing database connection -- 17:47:09.357 SQL [3739]: pgsql_close() -- 17:47:09.388 INFO [3739]: COREGRADE is starting... -- 17:47:09.389 INFO [3739]: Version from config: 1.0 -- 17:47:09.389 DEBUG [3739]: Connecting to database... -- 17:47:09.389 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:09.389 SQL [3739]: pgsql_db_connect() -- 17:47:09.393 DEBUG [3739]: Database connection successful -- 17:47:09.393 INFO [3739]: _SERVER found -- 17:47:09.393 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 17:47:09.393 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:09.393 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:09.393 INFO [3739]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 17:47:09.393 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:09.405 INFO [3739]: COREGRADE is stopping... -- 17:47:09.405 DEBUG [3739]: Closing database connection -- 17:47:09.405 SQL [3739]: pgsql_close() -- 17:47:09.414 INFO [3739]: COREGRADE is starting... -- 17:47:09.414 INFO [3739]: Version from config: 1.0 -- 17:47:09.414 DEBUG [3739]: Connecting to database... -- 17:47:09.414 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:09.414 SQL [3739]: pgsql_db_connect() -- 17:47:09.423 INFO [3738]: COREGRADE is starting... -- 17:47:09.424 INFO [3738]: Version from config: 1.0 -- 17:47:09.424 DEBUG [3738]: Connecting to database... -- 17:47:09.424 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:09.424 SQL [3738]: pgsql_db_connect() -- 17:47:09.418 DEBUG [3739]: Database connection successful -- 17:47:09.418 INFO [3739]: _SERVER found -- 17:47:09.418 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 17:47:09.418 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:09.418 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:09.418 INFO [3739]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 17:47:09.418 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:09.430 INFO [3739]: COREGRADE is stopping... -- 17:47:09.430 DEBUG [3739]: Closing database connection -- 17:47:09.430 SQL [3739]: pgsql_close() -- 17:47:09.428 DEBUG [3738]: Database connection successful -- 17:47:09.428 INFO [3738]: _SERVER found -- 17:47:09.428 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 17:47:09.428 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:09.428 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:09.428 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 17:47:09.428 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:09.439 INFO [3738]: COREGRADE is stopping... -- 17:47:09.439 DEBUG [3738]: Closing database connection -- 17:47:09.439 SQL [3738]: pgsql_close() -- 17:47:09.479 INFO [3738]: COREGRADE is starting... -- 17:47:09.480 INFO [3738]: Version from config: 1.0 -- 17:47:09.480 DEBUG [3738]: Connecting to database... -- 17:47:09.480 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:09.480 SQL [3738]: pgsql_db_connect() -- 17:47:09.484 DEBUG [3738]: Database connection successful -- 17:47:09.484 INFO [3738]: _SERVER found -- 17:47:09.484 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 17:47:09.484 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:09.484 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:09.484 INFO [3738]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 17:47:09.484 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:09.496 INFO [3738]: COREGRADE is stopping... -- 17:47:09.496 DEBUG [3738]: Closing database connection -- 17:47:09.496 SQL [3738]: pgsql_close() -- 17:47:09.506 INFO [3738]: COREGRADE is starting... -- 17:47:09.506 INFO [3739]: COREGRADE is starting... -- 17:47:09.507 INFO [3739]: Version from config: 1.0 -- 17:47:09.507 DEBUG [3739]: Connecting to database... -- 17:47:09.507 INFO [3738]: Version from config: 1.0 -- 17:47:09.507 DEBUG [3738]: Connecting to database... -- 17:47:09.507 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:09.507 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:09.507 SQL [3739]: pgsql_db_connect() -- 17:47:09.507 SQL [3738]: pgsql_db_connect() -- 17:47:09.511 DEBUG [3738]: Database connection successful -- 17:47:09.511 INFO [3738]: _SERVER found -- 17:47:09.511 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 17:47:09.511 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:09.511 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:09.511 INFO [3738]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 17:47:09.511 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:09.522 INFO [3738]: COREGRADE is stopping... -- 17:47:09.511 DEBUG [3739]: Database connection successful -- 17:47:09.511 INFO [3739]: _SERVER found -- 17:47:09.511 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 17:47:09.511 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:09.511 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:09.511 INFO [3739]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 17:47:09.511 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:09.522 INFO [3739]: COREGRADE is stopping... -- 17:47:09.522 DEBUG [3738]: Closing database connection -- 17:47:09.522 DEBUG [3739]: Closing database connection -- 17:47:09.522 SQL [3738]: pgsql_close() -- 17:47:09.522 SQL [3739]: pgsql_close() -- 17:47:09.573 INFO [3739]: COREGRADE is starting... -- 17:47:09.573 INFO [3739]: Version from config: 1.0 -- 17:47:09.573 DEBUG [3739]: Connecting to database... -- 17:47:09.573 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:09.573 SQL [3739]: pgsql_db_connect() -- 17:47:09.589 INFO [3738]: COREGRADE is starting... -- 17:47:09.577 DEBUG [3739]: Database connection successful -- 17:47:09.577 INFO [3739]: _SERVER found -- 17:47:09.577 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 17:47:09.577 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:09.577 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:09.577 INFO [3739]: QUERY_STRING = /assets/js/pages/dashboard.js -- 17:47:09.577 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:09.589 INFO [3739]: COREGRADE is stopping... -- 17:47:09.589 DEBUG [3739]: Closing database connection -- 17:47:09.589 SQL [3739]: pgsql_close() -- 17:47:09.589 INFO [3738]: Version from config: 1.0 -- 17:47:09.589 DEBUG [3738]: Connecting to database... -- 17:47:09.589 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:09.589 SQL [3738]: pgsql_db_connect() -- 17:47:09.592 INFO [3740]: COREGRADE is starting... -- 17:47:09.592 INFO [3740]: Version from config: 1.0 -- 17:47:09.592 DEBUG [3740]: Connecting to database... -- 17:47:09.593 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:09.593 SQL [3740]: pgsql_db_connect() -- 17:47:09.593 DEBUG [3738]: Database connection successful -- 17:47:09.593 INFO [3738]: _SERVER found -- 17:47:09.593 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 17:47:09.593 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:09.593 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:09.593 INFO [3738]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 17:47:09.593 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:09.605 INFO [3738]: COREGRADE is stopping... -- 17:47:09.605 DEBUG [3738]: Closing database connection -- 17:47:09.605 SQL [3738]: pgsql_close() -- 17:47:09.597 DEBUG [3740]: Database connection successful -- 17:47:09.597 INFO [3740]: _SERVER found -- 17:47:09.597 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 17:47:09.597 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:09.597 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:09.597 INFO [3740]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 17:47:09.597 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:09.612 INFO [3740]: COREGRADE is stopping... -- 17:47:09.612 DEBUG [3740]: Closing database connection -- 17:47:09.612 SQL [3740]: pgsql_close() -- 17:47:09.655 INFO [3740]: COREGRADE is starting... -- 17:47:09.656 INFO [3740]: Version from config: 1.0 -- 17:47:09.656 DEBUG [3740]: Connecting to database... -- 17:47:09.656 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:09.656 SQL [3740]: pgsql_db_connect() -- 17:47:09.671 INFO [3738]: COREGRADE is starting... -- 17:47:09.671 INFO [3738]: Version from config: 1.0 -- 17:47:09.671 DEBUG [3738]: Connecting to database... -- 17:47:09.671 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:09.671 SQL [3738]: pgsql_db_connect() -- 17:47:09.660 DEBUG [3740]: Database connection successful -- 17:47:09.660 INFO [3740]: _SERVER found -- 17:47:09.660 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 17:47:09.660 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:09.660 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:09.660 INFO [3740]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 17:47:09.660 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:09.672 INFO [3740]: COREGRADE is stopping... -- 17:47:09.672 DEBUG [3740]: Closing database connection -- 17:47:09.672 SQL [3740]: pgsql_close() -- 17:47:09.678 INFO [3740]: COREGRADE is starting... -- 17:47:09.678 INFO [3740]: Version from config: 1.0 -- 17:47:09.678 DEBUG [3740]: Connecting to database... -- 17:47:09.678 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:09.678 SQL [3740]: pgsql_db_connect() -- 17:47:09.675 DEBUG [3738]: Database connection successful -- 17:47:09.675 INFO [3738]: _SERVER found -- 17:47:09.675 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 17:47:09.675 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:09.675 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:09.675 INFO [3738]: QUERY_STRING = /assets/js/pages/picker_date.js -- 17:47:09.675 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:09.687 INFO [3738]: COREGRADE is stopping... -- 17:47:09.687 DEBUG [3738]: Closing database connection -- 17:47:09.687 SQL [3738]: pgsql_close() -- 17:47:09.682 DEBUG [3740]: Database connection successful -- 17:47:09.682 INFO [3740]: _SERVER found -- 17:47:09.682 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 17:47:09.682 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:09.682 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:09.682 INFO [3740]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 17:47:09.682 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:09.693 INFO [3740]: COREGRADE is stopping... -- 17:47:09.693 DEBUG [3740]: Closing database connection -- 17:47:09.693 SQL [3740]: pgsql_close() -- 17:47:09.737 INFO [3740]: COREGRADE is starting... -- 17:47:09.738 INFO [3740]: Version from config: 1.0 -- 17:47:09.738 DEBUG [3740]: Connecting to database... -- 17:47:09.738 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:09.738 SQL [3740]: pgsql_db_connect() -- 17:47:09.742 DEBUG [3740]: Database connection successful -- 17:47:09.742 INFO [3740]: _SERVER found -- 17:47:09.742 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 17:47:09.742 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:09.742 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:09.742 INFO [3740]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 17:47:09.742 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:09.753 INFO [3740]: COREGRADE is stopping... -- 17:47:09.753 DEBUG [3740]: Closing database connection -- 17:47:09.753 SQL [3740]: pgsql_close() -- 17:47:09.754 INFO [3738]: COREGRADE is starting... -- 17:47:09.754 INFO [3738]: Version from config: 1.0 -- 17:47:09.754 DEBUG [3738]: Connecting to database... -- 17:47:09.754 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:09.754 SQL [3738]: pgsql_db_connect() -- 17:47:09.758 INFO [3740]: COREGRADE is starting... -- 17:47:09.759 INFO [3740]: Version from config: 1.0 -- 17:47:09.759 DEBUG [3740]: Connecting to database... -- 17:47:09.759 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:09.759 SQL [3740]: pgsql_db_connect() -- 17:47:09.758 DEBUG [3738]: Database connection successful -- 17:47:09.758 INFO [3738]: _SERVER found -- 17:47:09.758 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 17:47:09.758 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:09.758 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:09.758 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 17:47:09.758 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:09.770 INFO [3738]: COREGRADE is stopping... -- 17:47:09.770 DEBUG [3738]: Closing database connection -- 17:47:09.770 SQL [3738]: pgsql_close() -- 17:47:09.762 DEBUG [3740]: Database connection successful -- 17:47:09.762 INFO [3740]: _SERVER found -- 17:47:09.762 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 17:47:09.762 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:09.762 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:09.762 INFO [3740]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 17:47:09.762 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:09.774 INFO [3740]: COREGRADE is stopping... -- 17:47:09.774 DEBUG [3740]: Closing database connection -- 17:47:09.774 SQL [3740]: pgsql_close() -- 17:47:09.818 INFO [3740]: COREGRADE is starting... -- 17:47:09.818 INFO [3740]: Version from config: 1.0 -- 17:47:09.818 DEBUG [3740]: Connecting to database... -- 17:47:09.818 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:09.818 SQL [3740]: pgsql_db_connect() -- 17:47:09.822 DEBUG [3740]: Database connection successful -- 17:47:09.822 INFO [3740]: _SERVER found -- 17:47:09.822 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 17:47:09.822 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:09.822 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:09.822 INFO [3740]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 17:47:09.822 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:09.834 INFO [3740]: COREGRADE is stopping... -- 17:47:09.834 DEBUG [3740]: Closing database connection -- 17:47:09.834 SQL [3740]: pgsql_close() -- 17:47:09.836 INFO [3740]: COREGRADE is starting... -- 17:47:09.837 INFO [3740]: Version from config: 1.0 -- 17:47:09.837 DEBUG [3740]: Connecting to database... -- 17:47:09.837 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:09.837 SQL [3740]: pgsql_db_connect() -- 17:47:09.839 INFO [3738]: COREGRADE is starting... -- 17:47:09.839 INFO [3738]: Version from config: 1.0 -- 17:47:09.839 DEBUG [3738]: Connecting to database... -- 17:47:09.839 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:09.839 SQL [3738]: pgsql_db_connect() -- 17:47:09.840 DEBUG [3740]: Database connection successful -- 17:47:09.840 INFO [3740]: _SERVER found -- 17:47:09.840 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 17:47:09.840 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:09.840 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:09.840 INFO [3740]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 17:47:09.840 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:09.852 INFO [3740]: COREGRADE is stopping... -- 17:47:09.852 DEBUG [3740]: Closing database connection -- 17:47:09.852 SQL [3740]: pgsql_close() -- 17:47:09.843 DEBUG [3738]: Database connection successful -- 17:47:09.843 INFO [3738]: _SERVER found -- 17:47:09.843 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 17:47:09.843 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:09.843 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:09.843 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 17:47:09.843 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:09.855 INFO [3738]: COREGRADE is stopping... -- 17:47:09.855 DEBUG [3738]: Closing database connection -- 17:47:09.855 SQL [3738]: pgsql_close() -- 17:47:09.899 INFO [3738]: COREGRADE is starting... -- 17:47:09.899 INFO [3738]: Version from config: 1.0 -- 17:47:09.899 DEBUG [3738]: Connecting to database... -- 17:47:09.899 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:09.899 SQL [3738]: pgsql_db_connect() -- 17:47:09.903 DEBUG [3738]: Database connection successful -- 17:47:09.903 INFO [3738]: _SERVER found -- 17:47:09.903 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 17:47:09.903 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:09.903 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:09.903 INFO [3738]: QUERY_STRING = /assets/customjs/general.js -- 17:47:09.903 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:09.914 INFO [3738]: COREGRADE is stopping... -- 17:47:09.914 DEBUG [3738]: Closing database connection -- 17:47:09.914 SQL [3738]: pgsql_close() -- 17:47:09.918 INFO [3738]: COREGRADE is starting... -- 17:47:09.919 INFO [3738]: Version from config: 1.0 -- 17:47:09.919 DEBUG [3738]: Connecting to database... -- 17:47:09.919 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:09.919 SQL [3738]: pgsql_db_connect() -- 17:47:09.923 DEBUG [3738]: Database connection successful -- 17:47:09.923 INFO [3738]: _SERVER found -- 17:47:09.923 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 17:47:09.923 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:09.923 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:09.923 INFO [3738]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 17:47:09.923 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:09.934 INFO [3738]: COREGRADE is stopping... -- 17:47:09.934 DEBUG [3738]: Closing database connection -- 17:47:09.934 SQL [3738]: pgsql_close() -- 17:47:10.002 INFO [3738]: COREGRADE is starting... -- 17:47:10.002 INFO [3738]: Version from config: 1.0 -- 17:47:10.002 DEBUG [3738]: Connecting to database... -- 17:47:10.002 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:10.002 SQL [3738]: pgsql_db_connect() -- 17:47:10.006 DEBUG [3738]: Database connection successful -- 17:47:10.006 INFO [3738]: _SERVER found -- 17:47:10.006 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 17:47:10.006 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:10.006 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:10.006 INFO [3738]: QUERY_STRING = /assets/js/pages/dashboard.js -- 17:47:10.006 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:10.017 INFO [3738]: COREGRADE is stopping... -- 17:47:10.017 DEBUG [3738]: Closing database connection -- 17:47:10.017 SQL [3738]: pgsql_close() -- 17:47:10.086 INFO [3738]: COREGRADE is starting... -- 17:47:10.086 INFO [3738]: Version from config: 1.0 -- 17:47:10.086 DEBUG [3738]: Connecting to database... -- 17:47:10.086 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:10.086 SQL [3738]: pgsql_db_connect() -- 17:47:10.090 DEBUG [3738]: Database connection successful -- 17:47:10.090 INFO [3738]: _SERVER found -- 17:47:10.090 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 17:47:10.090 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:10.090 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:10.090 INFO [3738]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 17:47:10.090 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:10.102 INFO [3738]: COREGRADE is stopping... -- 17:47:10.102 DEBUG [3738]: Closing database connection -- 17:47:10.102 SQL [3738]: pgsql_close() -- 17:47:10.169 INFO [3738]: COREGRADE is starting... -- 17:47:10.169 INFO [3738]: Version from config: 1.0 -- 17:47:10.169 DEBUG [3738]: Connecting to database... -- 17:47:10.169 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:10.169 SQL [3738]: pgsql_db_connect() -- 17:47:10.173 DEBUG [3738]: Database connection successful -- 17:47:10.173 INFO [3738]: _SERVER found -- 17:47:10.173 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 17:47:10.173 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:10.173 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:10.173 INFO [3738]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 17:47:10.173 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:10.185 INFO [3738]: COREGRADE is stopping... -- 17:47:10.185 DEBUG [3738]: Closing database connection -- 17:47:10.185 SQL [3738]: pgsql_close() -- 17:47:10.252 INFO [3738]: COREGRADE is starting... -- 17:47:10.252 INFO [3738]: Version from config: 1.0 -- 17:47:10.252 DEBUG [3738]: Connecting to database... -- 17:47:10.252 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:10.252 SQL [3738]: pgsql_db_connect() -- 17:47:10.256 DEBUG [3738]: Database connection successful -- 17:47:10.256 INFO [3738]: _SERVER found -- 17:47:10.256 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 17:47:10.256 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:10.256 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:10.256 INFO [3738]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 17:47:10.256 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:10.268 INFO [3738]: COREGRADE is stopping... -- 17:47:10.268 DEBUG [3738]: Closing database connection -- 17:47:10.268 SQL [3738]: pgsql_close() -- 17:47:10.334 INFO [3738]: COREGRADE is starting... -- 17:47:10.334 INFO [3738]: Version from config: 1.0 -- 17:47:10.334 DEBUG [3738]: Connecting to database... -- 17:47:10.334 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:10.334 SQL [3738]: pgsql_db_connect() -- 17:47:10.338 DEBUG [3738]: Database connection successful -- 17:47:10.338 INFO [3738]: _SERVER found -- 17:47:10.338 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 17:47:10.338 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:10.338 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:10.338 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 17:47:10.338 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:10.350 INFO [3738]: COREGRADE is stopping... -- 17:47:10.350 DEBUG [3738]: Closing database connection -- 17:47:10.350 SQL [3738]: pgsql_close() -- 17:47:10.417 INFO [3738]: COREGRADE is starting... -- 17:47:10.417 INFO [3738]: Version from config: 1.0 -- 17:47:10.417 DEBUG [3738]: Connecting to database... -- 17:47:10.417 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:10.417 SQL [3738]: pgsql_db_connect() -- 17:47:10.421 DEBUG [3738]: Database connection successful -- 17:47:10.421 INFO [3738]: _SERVER found -- 17:47:10.421 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 17:47:10.421 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:10.421 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:10.421 INFO [3738]: QUERY_STRING = /assets/js/pages/picker_date.js -- 17:47:10.421 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:10.433 INFO [3738]: COREGRADE is stopping... -- 17:47:10.433 DEBUG [3738]: Closing database connection -- 17:47:10.433 SQL [3738]: pgsql_close() -- 17:47:10.499 INFO [3738]: COREGRADE is starting... -- 17:47:10.500 INFO [3738]: Version from config: 1.0 -- 17:47:10.500 DEBUG [3738]: Connecting to database... -- 17:47:10.500 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:10.500 SQL [3738]: pgsql_db_connect() -- 17:47:10.504 DEBUG [3738]: Database connection successful -- 17:47:10.504 INFO [3738]: _SERVER found -- 17:47:10.504 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 17:47:10.504 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:10.504 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:10.504 INFO [3738]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 17:47:10.504 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:10.515 INFO [3738]: COREGRADE is stopping... -- 17:47:10.515 DEBUG [3738]: Closing database connection -- 17:47:10.515 SQL [3738]: pgsql_close() -- 17:47:10.582 INFO [3738]: COREGRADE is starting... -- 17:47:10.582 INFO [3738]: Version from config: 1.0 -- 17:47:10.582 DEBUG [3738]: Connecting to database... -- 17:47:10.582 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:10.582 SQL [3738]: pgsql_db_connect() -- 17:47:10.586 DEBUG [3738]: Database connection successful -- 17:47:10.586 INFO [3738]: _SERVER found -- 17:47:10.586 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 17:47:10.586 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:10.586 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:10.586 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 17:47:10.586 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:10.598 INFO [3738]: COREGRADE is stopping... -- 17:47:10.598 DEBUG [3738]: Closing database connection -- 17:47:10.598 SQL [3738]: pgsql_close() -- 17:47:10.664 INFO [3738]: COREGRADE is starting... -- 17:47:10.665 INFO [3738]: Version from config: 1.0 -- 17:47:10.665 DEBUG [3738]: Connecting to database... -- 17:47:10.665 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:10.665 SQL [3738]: pgsql_db_connect() -- 17:47:10.669 DEBUG [3738]: Database connection successful -- 17:47:10.669 INFO [3738]: _SERVER found -- 17:47:10.669 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 17:47:10.669 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:10.669 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:10.669 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 17:47:10.669 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:10.680 INFO [3738]: COREGRADE is stopping... -- 17:47:10.680 DEBUG [3738]: Closing database connection -- 17:47:10.680 SQL [3738]: pgsql_close() -- 17:47:10.749 INFO [3738]: COREGRADE is starting... -- 17:47:10.749 INFO [3738]: Version from config: 1.0 -- 17:47:10.749 DEBUG [3738]: Connecting to database... -- 17:47:10.749 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:10.749 SQL [3738]: pgsql_db_connect() -- 17:47:10.753 DEBUG [3738]: Database connection successful -- 17:47:10.753 INFO [3738]: _SERVER found -- 17:47:10.753 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 17:47:10.753 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:10.753 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:10.753 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 17:47:10.753 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:10.765 INFO [3738]: COREGRADE is stopping... -- 17:47:10.765 DEBUG [3738]: Closing database connection -- 17:47:10.765 SQL [3738]: pgsql_close() -- 17:47:10.832 INFO [3738]: COREGRADE is starting... -- 17:47:10.832 INFO [3738]: Version from config: 1.0 -- 17:47:10.832 DEBUG [3738]: Connecting to database... -- 17:47:10.832 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:10.832 SQL [3738]: pgsql_db_connect() -- 17:47:10.836 DEBUG [3738]: Database connection successful -- 17:47:10.836 INFO [3738]: _SERVER found -- 17:47:10.836 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 17:47:10.836 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:10.836 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:10.836 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 17:47:10.836 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:10.847 INFO [3738]: COREGRADE is stopping... -- 17:47:10.847 DEBUG [3738]: Closing database connection -- 17:47:10.847 SQL [3738]: pgsql_close() -- 17:47:10.976 INFO [3738]: COREGRADE is starting... -- 17:47:10.977 INFO [3738]: Version from config: 1.0 -- 17:47:10.977 DEBUG [3738]: Connecting to database... -- 17:47:10.977 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:10.977 SQL [3738]: pgsql_db_connect() -- 17:47:10.981 DEBUG [3738]: Database connection successful -- 17:47:10.981 INFO [3738]: _SERVER found -- 17:47:10.981 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 17:47:10.981 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:10.981 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:10.981 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 17:47:10.981 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:10.992 INFO [3738]: COREGRADE is stopping... -- 17:47:10.992 DEBUG [3738]: Closing database connection -- 17:47:10.993 SQL [3738]: pgsql_close() -- 17:47:11.060 INFO [3738]: COREGRADE is starting... -- 17:47:11.060 INFO [3738]: Version from config: 1.0 -- 17:47:11.060 DEBUG [3738]: Connecting to database... -- 17:47:11.060 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:11.060 SQL [3738]: pgsql_db_connect() -- 17:47:11.065 DEBUG [3738]: Database connection successful -- 17:47:11.065 INFO [3738]: _SERVER found -- 17:47:11.065 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 17:47:11.065 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:11.065 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:11.065 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 17:47:11.065 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:11.076 INFO [3738]: COREGRADE is stopping... -- 17:47:11.076 DEBUG [3738]: Closing database connection -- 17:47:11.076 SQL [3738]: pgsql_close() -- 17:47:11.145 INFO [3738]: COREGRADE is starting... -- 17:47:11.145 INFO [3738]: Version from config: 1.0 -- 17:47:11.145 DEBUG [3738]: Connecting to database... -- 17:47:11.145 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:11.145 SQL [3738]: pgsql_db_connect() -- 17:47:11.149 DEBUG [3738]: Database connection successful -- 17:47:11.149 INFO [3738]: _SERVER found -- 17:47:11.149 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 17:47:11.149 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:47:11.149 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 17:47:11.149 INFO [3738]: QUERY_STRING = /assets/customjs/general.js -- 17:47:11.149 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:47:11.161 INFO [3738]: COREGRADE is stopping... -- 17:47:11.161 DEBUG [3738]: Closing database connection -- 17:47:11.161 SQL [3738]: pgsql_close() -- 18:07:11.392 INFO [3741]: COREGRADE is starting... -- 18:07:11.393 INFO [3741]: Version from config: 1.0 -- 18:07:11.393 DEBUG [3741]: Connecting to database... -- 18:07:11.393 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:11.393 SQL [3741]: pgsql_db_connect() -- 18:07:11.397 DEBUG [3741]: Database connection successful -- 18:07:11.397 INFO [3741]: _SERVER found -- 18:07:11.397 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 18:07:11.397 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:07:11.397 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4r0sh42our8kjqm4jslvfk7gb7vae548 -- 18:07:11.397 INFO [3741]: QUERY_STRING = /logout -- 18:07:11.397 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:07:11.437 INFO [3741]: COREGRADE is stopping... -- 18:07:11.437 DEBUG [3741]: Closing database connection -- 18:07:11.437 SQL [3741]: pgsql_close() -- 18:07:11.518 INFO [3741]: COREGRADE is starting... -- 18:07:11.519 INFO [3741]: Version from config: 1.0 -- 18:07:11.519 DEBUG [3741]: Connecting to database... -- 18:07:11.519 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:11.519 SQL [3741]: pgsql_db_connect() -- 18:07:11.523 DEBUG [3741]: Database connection successful -- 18:07:11.523 INFO [3741]: _SERVER found -- 18:07:11.523 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 18:07:11.523 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:07:11.523 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=irsdr27uj298965ueskbo39ecjren3st -- 18:07:11.523 INFO [3741]: QUERY_STRING = /start -- 18:07:11.523 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:07:11.564 INFO [3741]: COREGRADE is stopping... -- 18:07:11.564 DEBUG [3741]: Closing database connection -- 18:07:11.564 SQL [3741]: pgsql_close() -- 18:07:11.696 INFO [3742]: COREGRADE is starting... -- 18:07:11.696 INFO [3742]: Version from config: 1.0 -- 18:07:11.696 DEBUG [3742]: Connecting to database... -- 18:07:11.696 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:11.696 SQL [3742]: pgsql_db_connect() -- 18:07:11.700 DEBUG [3742]: Database connection successful -- 18:07:11.700 INFO [3742]: _SERVER found -- 18:07:11.700 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 18:07:11.700 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:07:11.700 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=irsdr27uj298965ueskbo39ecjren3st -- 18:07:11.700 INFO [3742]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 18:07:11.700 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:07:11.716 INFO [3742]: COREGRADE is stopping... -- 18:07:11.716 DEBUG [3742]: Closing database connection -- 18:07:11.716 SQL [3742]: pgsql_close() -- 18:07:11.718 INFO [3741]: COREGRADE is starting... -- 18:07:11.719 INFO [3741]: Version from config: 1.0 -- 18:07:11.719 DEBUG [3741]: Connecting to database... -- 18:07:11.719 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:11.719 SQL [3741]: pgsql_db_connect() -- 18:07:11.723 DEBUG [3741]: Database connection successful -- 18:07:11.723 INFO [3741]: _SERVER found -- 18:07:11.723 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 18:07:11.723 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:07:11.723 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=irsdr27uj298965ueskbo39ecjren3st -- 18:07:11.723 INFO [3741]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 18:07:11.723 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:07:11.734 INFO [3741]: COREGRADE is stopping... -- 18:07:11.734 DEBUG [3741]: Closing database connection -- 18:07:11.734 SQL [3741]: pgsql_close() -- 18:07:11.758 INFO [3800]: COREGRADE is starting... -- 18:07:11.758 INFO [3800]: Version from config: 1.0 -- 18:07:11.758 DEBUG [3800]: Connecting to database... -- 18:07:11.758 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:11.758 SQL [3800]: pgsql_db_connect() -- 18:07:11.762 DEBUG [3800]: Database connection successful -- 18:07:11.762 INFO [3800]: _SERVER found -- 18:07:11.762 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 18:07:11.762 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:07:11.762 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=irsdr27uj298965ueskbo39ecjren3st -- 18:07:11.762 INFO [3800]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 18:07:11.762 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:07:11.777 INFO [3800]: COREGRADE is stopping... -- 18:07:11.777 DEBUG [3800]: Closing database connection -- 18:07:11.777 SQL [3800]: pgsql_close() -- 18:07:11.797 INFO [3742]: COREGRADE is starting... -- 18:07:11.797 INFO [3742]: Version from config: 1.0 -- 18:07:11.797 DEBUG [3742]: Connecting to database... -- 18:07:11.797 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:11.797 SQL [3742]: pgsql_db_connect() -- 18:07:11.803 INFO [3741]: COREGRADE is starting... -- 18:07:11.803 INFO [3741]: Version from config: 1.0 -- 18:07:11.803 DEBUG [3741]: Connecting to database... -- 18:07:11.803 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:11.803 SQL [3741]: pgsql_db_connect() -- 18:07:11.801 DEBUG [3742]: Database connection successful -- 18:07:11.801 INFO [3742]: _SERVER found -- 18:07:11.801 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 18:07:11.801 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:07:11.801 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=irsdr27uj298965ueskbo39ecjren3st -- 18:07:11.801 INFO [3742]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 18:07:11.801 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:07:11.813 INFO [3742]: COREGRADE is stopping... -- 18:07:11.814 DEBUG [3742]: Closing database connection -- 18:07:11.814 SQL [3742]: pgsql_close() -- 18:07:11.807 DEBUG [3741]: Database connection successful -- 18:07:11.807 INFO [3741]: _SERVER found -- 18:07:11.807 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 18:07:11.807 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:07:11.807 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=irsdr27uj298965ueskbo39ecjren3st -- 18:07:11.807 INFO [3741]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 18:07:11.807 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:07:11.819 INFO [3741]: COREGRADE is stopping... -- 18:07:11.819 DEBUG [3741]: Closing database connection -- 18:07:11.819 SQL [3741]: pgsql_close() -- 18:07:11.858 INFO [3800]: COREGRADE is starting... -- 18:07:11.858 INFO [3800]: Version from config: 1.0 -- 18:07:11.858 DEBUG [3800]: Connecting to database... -- 18:07:11.858 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:11.858 SQL [3800]: pgsql_db_connect() -- 18:07:11.862 DEBUG [3800]: Database connection successful -- 18:07:11.862 INFO [3800]: _SERVER found -- 18:07:11.862 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 18:07:11.862 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:07:11.862 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=irsdr27uj298965ueskbo39ecjren3st -- 18:07:11.862 INFO [3800]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 18:07:11.862 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:07:11.874 INFO [3800]: COREGRADE is stopping... -- 18:07:11.874 DEBUG [3800]: Closing database connection -- 18:07:11.874 SQL [3800]: pgsql_close() -- 18:07:11.888 INFO [3741]: COREGRADE is starting... -- 18:07:11.888 INFO [3741]: Version from config: 1.0 -- 18:07:11.888 DEBUG [3741]: Connecting to database... -- 18:07:11.888 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:11.888 SQL [3741]: pgsql_db_connect() -- 18:07:11.896 INFO [3742]: COREGRADE is starting... -- 18:07:11.897 INFO [3742]: Version from config: 1.0 -- 18:07:11.897 DEBUG [3742]: Connecting to database... -- 18:07:11.897 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:11.897 SQL [3742]: pgsql_db_connect() -- 18:07:11.892 DEBUG [3741]: Database connection successful -- 18:07:11.892 INFO [3741]: _SERVER found -- 18:07:11.892 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 18:07:11.892 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:07:11.892 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=irsdr27uj298965ueskbo39ecjren3st -- 18:07:11.892 INFO [3741]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 18:07:11.892 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:07:11.904 INFO [3741]: COREGRADE is stopping... -- 18:07:11.904 DEBUG [3741]: Closing database connection -- 18:07:11.904 SQL [3741]: pgsql_close() -- 18:07:11.901 DEBUG [3742]: Database connection successful -- 18:07:11.901 INFO [3742]: _SERVER found -- 18:07:11.901 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 18:07:11.901 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:07:11.901 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=irsdr27uj298965ueskbo39ecjren3st -- 18:07:11.901 INFO [3742]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 18:07:11.901 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:07:11.912 INFO [3742]: COREGRADE is stopping... -- 18:07:11.913 DEBUG [3742]: Closing database connection -- 18:07:11.913 SQL [3742]: pgsql_close() -- 18:07:11.954 INFO [3800]: COREGRADE is starting... -- 18:07:11.954 INFO [3800]: Version from config: 1.0 -- 18:07:11.954 DEBUG [3800]: Connecting to database... -- 18:07:11.954 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:11.954 SQL [3800]: pgsql_db_connect() -- 18:07:11.958 DEBUG [3800]: Database connection successful -- 18:07:11.958 INFO [3800]: _SERVER found -- 18:07:11.958 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 18:07:11.958 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:07:11.958 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=irsdr27uj298965ueskbo39ecjren3st -- 18:07:11.958 INFO [3800]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 18:07:11.958 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:07:11.969 INFO [3800]: COREGRADE is stopping... -- 18:07:11.969 DEBUG [3800]: Closing database connection -- 18:07:11.969 SQL [3800]: pgsql_close() -- 18:07:11.974 INFO [3741]: COREGRADE is starting... -- 18:07:11.974 INFO [3741]: Version from config: 1.0 -- 18:07:11.974 DEBUG [3741]: Connecting to database... -- 18:07:11.974 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:11.974 SQL [3741]: pgsql_db_connect() -- 18:07:11.986 INFO [3742]: COREGRADE is starting... -- 18:07:11.986 INFO [3742]: Version from config: 1.0 -- 18:07:11.986 DEBUG [3742]: Connecting to database... -- 18:07:11.986 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:11.986 SQL [3742]: pgsql_db_connect() -- 18:07:11.978 DEBUG [3741]: Database connection successful -- 18:07:11.978 INFO [3741]: _SERVER found -- 18:07:11.978 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 18:07:11.978 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:07:11.978 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=irsdr27uj298965ueskbo39ecjren3st -- 18:07:11.978 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 18:07:11.978 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:07:11.990 INFO [3741]: COREGRADE is stopping... -- 18:07:11.990 DEBUG [3741]: Closing database connection -- 18:07:11.990 SQL [3741]: pgsql_close() -- 18:07:11.990 DEBUG [3742]: Database connection successful -- 18:07:11.990 INFO [3742]: _SERVER found -- 18:07:11.990 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 18:07:11.990 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:07:11.990 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=irsdr27uj298965ueskbo39ecjren3st -- 18:07:11.990 INFO [3742]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 18:07:11.990 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:07:12.002 INFO [3742]: COREGRADE is stopping... -- 18:07:12.002 DEBUG [3742]: Closing database connection -- 18:07:12.002 SQL [3742]: pgsql_close() -- 18:07:12.042 INFO [3800]: COREGRADE is starting... -- 18:07:12.042 INFO [3800]: Version from config: 1.0 -- 18:07:12.042 DEBUG [3800]: Connecting to database... -- 18:07:12.042 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:12.042 SQL [3800]: pgsql_db_connect() -- 18:07:12.046 DEBUG [3800]: Database connection successful -- 18:07:12.046 INFO [3800]: _SERVER found -- 18:07:12.046 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 18:07:12.046 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:07:12.046 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=irsdr27uj298965ueskbo39ecjren3st -- 18:07:12.046 INFO [3800]: QUERY_STRING = /assets/js/pages/dashboard.js -- 18:07:12.046 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:07:12.058 INFO [3800]: COREGRADE is stopping... -- 18:07:12.058 DEBUG [3800]: Closing database connection -- 18:07:12.058 SQL [3800]: pgsql_close() -- 18:07:12.059 INFO [3741]: COREGRADE is starting... -- 18:07:12.059 INFO [3741]: Version from config: 1.0 -- 18:07:12.059 DEBUG [3741]: Connecting to database... -- 18:07:12.059 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:12.059 SQL [3741]: pgsql_db_connect() -- 18:07:12.073 INFO [3742]: COREGRADE is starting... -- 18:07:12.074 INFO [3742]: Version from config: 1.0 -- 18:07:12.074 DEBUG [3742]: Connecting to database... -- 18:07:12.074 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:12.074 SQL [3742]: pgsql_db_connect() -- 18:07:12.063 DEBUG [3741]: Database connection successful -- 18:07:12.063 INFO [3741]: _SERVER found -- 18:07:12.063 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 18:07:12.063 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:07:12.063 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=irsdr27uj298965ueskbo39ecjren3st -- 18:07:12.063 INFO [3741]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 18:07:12.063 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:07:12.074 INFO [3741]: COREGRADE is stopping... -- 18:07:12.074 DEBUG [3741]: Closing database connection -- 18:07:12.074 SQL [3741]: pgsql_close() -- 18:07:12.078 DEBUG [3742]: Database connection successful -- 18:07:12.078 INFO [3742]: _SERVER found -- 18:07:12.078 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 18:07:12.078 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:07:12.078 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=irsdr27uj298965ueskbo39ecjren3st -- 18:07:12.078 INFO [3742]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 18:07:12.078 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:07:12.089 INFO [3742]: COREGRADE is stopping... -- 18:07:12.089 DEBUG [3742]: Closing database connection -- 18:07:12.089 SQL [3742]: pgsql_close() -- 18:07:12.127 INFO [3800]: COREGRADE is starting... -- 18:07:12.127 INFO [3800]: Version from config: 1.0 -- 18:07:12.127 DEBUG [3800]: Connecting to database... -- 18:07:12.127 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:12.127 SQL [3800]: pgsql_db_connect() -- 18:07:12.131 DEBUG [3800]: Database connection successful -- 18:07:12.131 INFO [3800]: _SERVER found -- 18:07:12.131 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 18:07:12.131 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:07:12.131 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=irsdr27uj298965ueskbo39ecjren3st -- 18:07:12.131 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 18:07:12.131 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:07:12.143 INFO [3800]: COREGRADE is stopping... -- 18:07:12.143 DEBUG [3800]: Closing database connection -- 18:07:12.143 SQL [3800]: pgsql_close() -- 18:07:12.144 INFO [3741]: COREGRADE is starting... -- 18:07:12.144 INFO [3741]: Version from config: 1.0 -- 18:07:12.144 DEBUG [3741]: Connecting to database... -- 18:07:12.144 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:12.144 SQL [3741]: pgsql_db_connect() -- 18:07:12.148 DEBUG [3741]: Database connection successful -- 18:07:12.148 INFO [3741]: _SERVER found -- 18:07:12.148 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 18:07:12.148 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:07:12.148 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=irsdr27uj298965ueskbo39ecjren3st -- 18:07:12.148 INFO [3741]: QUERY_STRING = /assets/js/pages/picker_date.js -- 18:07:12.148 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:07:12.159 INFO [3741]: COREGRADE is stopping... -- 18:07:12.159 DEBUG [3741]: Closing database connection -- 18:07:12.159 SQL [3741]: pgsql_close() -- 18:07:12.162 INFO [3742]: COREGRADE is starting... -- 18:07:12.163 INFO [3742]: Version from config: 1.0 -- 18:07:12.163 DEBUG [3742]: Connecting to database... -- 18:07:12.163 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:12.163 SQL [3742]: pgsql_db_connect() -- 18:07:12.166 DEBUG [3742]: Database connection successful -- 18:07:12.166 INFO [3742]: _SERVER found -- 18:07:12.166 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 18:07:12.166 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:07:12.166 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=irsdr27uj298965ueskbo39ecjren3st -- 18:07:12.166 INFO [3742]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 18:07:12.166 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:07:12.178 INFO [3742]: COREGRADE is stopping... -- 18:07:12.178 DEBUG [3742]: Closing database connection -- 18:07:12.178 SQL [3742]: pgsql_close() -- 18:07:12.211 INFO [3800]: COREGRADE is starting... -- 18:07:12.211 INFO [3800]: Version from config: 1.0 -- 18:07:12.211 DEBUG [3800]: Connecting to database... -- 18:07:12.211 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:12.211 SQL [3800]: pgsql_db_connect() -- 18:07:12.215 DEBUG [3800]: Database connection successful -- 18:07:12.215 INFO [3800]: _SERVER found -- 18:07:12.215 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 18:07:12.215 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:07:12.215 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=irsdr27uj298965ueskbo39ecjren3st -- 18:07:12.215 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 18:07:12.215 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:07:12.227 INFO [3800]: COREGRADE is stopping... -- 18:07:12.227 DEBUG [3800]: Closing database connection -- 18:07:12.227 SQL [3800]: pgsql_close() -- 18:07:12.231 INFO [3741]: COREGRADE is starting... -- 18:07:12.231 INFO [3741]: Version from config: 1.0 -- 18:07:12.231 DEBUG [3741]: Connecting to database... -- 18:07:12.231 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:12.231 SQL [3741]: pgsql_db_connect() -- 18:07:12.235 DEBUG [3741]: Database connection successful -- 18:07:12.235 INFO [3741]: _SERVER found -- 18:07:12.235 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 18:07:12.235 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:07:12.235 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=irsdr27uj298965ueskbo39ecjren3st -- 18:07:12.235 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 18:07:12.235 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:07:12.247 INFO [3741]: COREGRADE is stopping... -- 18:07:12.247 DEBUG [3741]: Closing database connection -- 18:07:12.247 SQL [3741]: pgsql_close() -- 18:07:12.248 INFO [3742]: COREGRADE is starting... -- 18:07:12.248 INFO [3742]: Version from config: 1.0 -- 18:07:12.248 DEBUG [3742]: Connecting to database... -- 18:07:12.248 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:12.248 SQL [3742]: pgsql_db_connect() -- 18:07:12.252 DEBUG [3742]: Database connection successful -- 18:07:12.252 INFO [3742]: _SERVER found -- 18:07:12.252 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 18:07:12.252 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:07:12.252 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=irsdr27uj298965ueskbo39ecjren3st -- 18:07:12.252 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 18:07:12.252 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:07:12.264 INFO [3742]: COREGRADE is stopping... -- 18:07:12.264 DEBUG [3742]: Closing database connection -- 18:07:12.264 SQL [3742]: pgsql_close() -- 18:07:12.295 INFO [3800]: COREGRADE is starting... -- 18:07:12.296 INFO [3800]: Version from config: 1.0 -- 18:07:12.296 DEBUG [3800]: Connecting to database... -- 18:07:12.296 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:12.296 SQL [3800]: pgsql_db_connect() -- 18:07:12.300 DEBUG [3800]: Database connection successful -- 18:07:12.300 INFO [3800]: _SERVER found -- 18:07:12.300 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 18:07:12.300 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:07:12.300 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=irsdr27uj298965ueskbo39ecjren3st -- 18:07:12.300 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 18:07:12.300 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:07:12.311 INFO [3800]: COREGRADE is stopping... -- 18:07:12.311 DEBUG [3800]: Closing database connection -- 18:07:12.311 SQL [3800]: pgsql_close() -- 18:07:12.316 INFO [3741]: COREGRADE is starting... -- 18:07:12.316 INFO [3741]: Version from config: 1.0 -- 18:07:12.316 DEBUG [3741]: Connecting to database... -- 18:07:12.316 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:12.316 SQL [3741]: pgsql_db_connect() -- 18:07:12.320 DEBUG [3741]: Database connection successful -- 18:07:12.320 INFO [3741]: _SERVER found -- 18:07:12.320 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 18:07:12.320 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:07:12.320 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=irsdr27uj298965ueskbo39ecjren3st -- 18:07:12.320 INFO [3741]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 18:07:12.320 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:07:12.331 INFO [3741]: COREGRADE is stopping... -- 18:07:12.331 DEBUG [3741]: Closing database connection -- 18:07:12.331 SQL [3741]: pgsql_close() -- 18:07:12.333 INFO [3742]: COREGRADE is starting... -- 18:07:12.334 INFO [3742]: Version from config: 1.0 -- 18:07:12.334 DEBUG [3742]: Connecting to database... -- 18:07:12.334 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:12.334 SQL [3742]: pgsql_db_connect() -- 18:07:12.338 DEBUG [3742]: Database connection successful -- 18:07:12.338 INFO [3742]: _SERVER found -- 18:07:12.338 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 18:07:12.338 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:07:12.338 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=irsdr27uj298965ueskbo39ecjren3st -- 18:07:12.338 INFO [3742]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 18:07:12.338 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:07:12.349 INFO [3742]: COREGRADE is stopping... -- 18:07:12.349 DEBUG [3742]: Closing database connection -- 18:07:12.349 SQL [3742]: pgsql_close() -- 18:07:12.379 INFO [3800]: COREGRADE is starting... -- 18:07:12.380 INFO [3800]: Version from config: 1.0 -- 18:07:12.380 DEBUG [3800]: Connecting to database... -- 18:07:12.380 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:12.380 SQL [3800]: pgsql_db_connect() -- 18:07:12.383 DEBUG [3800]: Database connection successful -- 18:07:12.383 INFO [3800]: _SERVER found -- 18:07:12.384 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 18:07:12.384 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:07:12.384 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=irsdr27uj298965ueskbo39ecjren3st -- 18:07:12.384 INFO [3800]: QUERY_STRING = /assets/customjs/general.js -- 18:07:12.384 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:07:12.395 INFO [3800]: COREGRADE is stopping... -- 18:07:12.395 DEBUG [3800]: Closing database connection -- 18:07:12.395 SQL [3800]: pgsql_close() -- 18:07:12.400 INFO [3741]: COREGRADE is starting... -- 18:07:12.400 INFO [3741]: Version from config: 1.0 -- 18:07:12.400 DEBUG [3741]: Connecting to database... -- 18:07:12.400 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:12.400 SQL [3741]: pgsql_db_connect() -- 18:07:12.404 DEBUG [3741]: Database connection successful -- 18:07:12.404 INFO [3741]: _SERVER found -- 18:07:12.404 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 18:07:12.404 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:07:12.404 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=irsdr27uj298965ueskbo39ecjren3st -- 18:07:12.404 INFO [3741]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 18:07:12.404 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:07:12.415 INFO [3741]: COREGRADE is stopping... -- 18:07:12.415 DEBUG [3741]: Closing database connection -- 18:07:12.415 SQL [3741]: pgsql_close() -- 18:07:12.485 INFO [3741]: COREGRADE is starting... -- 18:07:12.485 INFO [3741]: Version from config: 1.0 -- 18:07:12.485 DEBUG [3741]: Connecting to database... -- 18:07:12.485 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:12.485 SQL [3741]: pgsql_db_connect() -- 18:07:12.489 DEBUG [3741]: Database connection successful -- 18:07:12.489 INFO [3741]: _SERVER found -- 18:07:12.489 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 18:07:12.489 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:07:12.489 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=irsdr27uj298965ueskbo39ecjren3st -- 18:07:12.489 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 18:07:12.489 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:07:12.500 INFO [3741]: COREGRADE is stopping... -- 18:07:12.500 DEBUG [3741]: Closing database connection -- 18:07:12.500 SQL [3741]: pgsql_close() -- 18:07:12.570 INFO [3741]: COREGRADE is starting... -- 18:07:12.570 INFO [3741]: Version from config: 1.0 -- 18:07:12.570 DEBUG [3741]: Connecting to database... -- 18:07:12.571 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:12.571 SQL [3741]: pgsql_db_connect() -- 18:07:12.574 DEBUG [3741]: Database connection successful -- 18:07:12.574 INFO [3741]: _SERVER found -- 18:07:12.574 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 18:07:12.574 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:07:12.574 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=irsdr27uj298965ueskbo39ecjren3st -- 18:07:12.574 INFO [3741]: QUERY_STRING = /assets/js/pages/picker_date.js -- 18:07:12.574 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:07:12.586 INFO [3741]: COREGRADE is stopping... -- 18:07:12.586 DEBUG [3741]: Closing database connection -- 18:07:12.586 SQL [3741]: pgsql_close() -- 18:07:12.655 INFO [3741]: COREGRADE is starting... -- 18:07:12.656 INFO [3741]: Version from config: 1.0 -- 18:07:12.656 DEBUG [3741]: Connecting to database... -- 18:07:12.656 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:12.656 SQL [3741]: pgsql_db_connect() -- 18:07:12.659 DEBUG [3741]: Database connection successful -- 18:07:12.659 INFO [3741]: _SERVER found -- 18:07:12.659 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 18:07:12.659 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:07:12.659 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=irsdr27uj298965ueskbo39ecjren3st -- 18:07:12.659 INFO [3741]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 18:07:12.659 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:07:12.671 INFO [3741]: COREGRADE is stopping... -- 18:07:12.671 DEBUG [3741]: Closing database connection -- 18:07:12.671 SQL [3741]: pgsql_close() -- 18:07:12.741 INFO [3741]: COREGRADE is starting... -- 18:07:12.741 INFO [3741]: Version from config: 1.0 -- 18:07:12.741 DEBUG [3741]: Connecting to database... -- 18:07:12.741 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:12.741 SQL [3741]: pgsql_db_connect() -- 18:07:12.745 DEBUG [3741]: Database connection successful -- 18:07:12.745 INFO [3741]: _SERVER found -- 18:07:12.745 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 18:07:12.745 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:07:12.745 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=irsdr27uj298965ueskbo39ecjren3st -- 18:07:12.745 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 18:07:12.745 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:07:12.757 INFO [3741]: COREGRADE is stopping... -- 18:07:12.757 DEBUG [3741]: Closing database connection -- 18:07:12.757 SQL [3741]: pgsql_close() -- 18:07:12.826 INFO [3741]: COREGRADE is starting... -- 18:07:12.826 INFO [3741]: Version from config: 1.0 -- 18:07:12.826 DEBUG [3741]: Connecting to database... -- 18:07:12.826 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:12.826 SQL [3741]: pgsql_db_connect() -- 18:07:12.831 DEBUG [3741]: Database connection successful -- 18:07:12.831 INFO [3741]: _SERVER found -- 18:07:12.831 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 18:07:12.831 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:07:12.831 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=irsdr27uj298965ueskbo39ecjren3st -- 18:07:12.831 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 18:07:12.831 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:07:12.842 INFO [3741]: COREGRADE is stopping... -- 18:07:12.842 DEBUG [3741]: Closing database connection -- 18:07:12.842 SQL [3741]: pgsql_close() -- 18:07:12.912 INFO [3741]: COREGRADE is starting... -- 18:07:12.912 INFO [3741]: Version from config: 1.0 -- 18:07:12.912 DEBUG [3741]: Connecting to database... -- 18:07:12.912 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:12.912 SQL [3741]: pgsql_db_connect() -- 18:07:12.916 DEBUG [3741]: Database connection successful -- 18:07:12.916 INFO [3741]: _SERVER found -- 18:07:12.916 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 18:07:12.916 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:07:12.916 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=irsdr27uj298965ueskbo39ecjren3st -- 18:07:12.916 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 18:07:12.916 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:07:12.928 INFO [3741]: COREGRADE is stopping... -- 18:07:12.928 DEBUG [3741]: Closing database connection -- 18:07:12.928 SQL [3741]: pgsql_close() -- 18:07:12.998 INFO [3741]: COREGRADE is starting... -- 18:07:12.998 INFO [3741]: Version from config: 1.0 -- 18:07:12.998 DEBUG [3741]: Connecting to database... -- 18:07:12.998 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:12.998 SQL [3741]: pgsql_db_connect() -- 18:07:13.002 DEBUG [3741]: Database connection successful -- 18:07:13.002 INFO [3741]: _SERVER found -- 18:07:13.002 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 18:07:13.002 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:07:13.002 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=irsdr27uj298965ueskbo39ecjren3st -- 18:07:13.002 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 18:07:13.002 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:07:13.013 INFO [3741]: COREGRADE is stopping... -- 18:07:13.013 DEBUG [3741]: Closing database connection -- 18:07:13.014 SQL [3741]: pgsql_close() -- 18:07:13.109 INFO [3741]: COREGRADE is starting... -- 18:07:13.109 INFO [3741]: Version from config: 1.0 -- 18:07:13.109 DEBUG [3741]: Connecting to database... -- 18:07:13.109 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:13.109 SQL [3741]: pgsql_db_connect() -- 18:07:13.113 DEBUG [3741]: Database connection successful -- 18:07:13.113 INFO [3741]: _SERVER found -- 18:07:13.113 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 18:07:13.113 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:07:13.113 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=irsdr27uj298965ueskbo39ecjren3st -- 18:07:13.113 INFO [3741]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 18:07:13.113 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:07:13.125 INFO [3741]: COREGRADE is stopping... -- 18:07:13.125 DEBUG [3741]: Closing database connection -- 18:07:13.125 SQL [3741]: pgsql_close() -- 18:07:13.194 INFO [3741]: COREGRADE is starting... -- 18:07:13.194 INFO [3741]: Version from config: 1.0 -- 18:07:13.194 DEBUG [3741]: Connecting to database... -- 18:07:13.194 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:13.194 SQL [3741]: pgsql_db_connect() -- 18:07:13.198 DEBUG [3741]: Database connection successful -- 18:07:13.198 INFO [3741]: _SERVER found -- 18:07:13.198 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 18:07:13.198 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:07:13.198 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=irsdr27uj298965ueskbo39ecjren3st -- 18:07:13.198 INFO [3741]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 18:07:13.198 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:07:13.210 INFO [3741]: COREGRADE is stopping... -- 18:07:13.210 DEBUG [3741]: Closing database connection -- 18:07:13.210 SQL [3741]: pgsql_close() -- 18:07:13.281 INFO [3741]: COREGRADE is starting... -- 18:07:13.281 INFO [3741]: Version from config: 1.0 -- 18:07:13.281 DEBUG [3741]: Connecting to database... -- 18:07:13.281 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:07:13.281 SQL [3741]: pgsql_db_connect() -- 18:07:13.285 DEBUG [3741]: Database connection successful -- 18:07:13.285 INFO [3741]: _SERVER found -- 18:07:13.285 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 18:07:13.285 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:07:13.285 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=irsdr27uj298965ueskbo39ecjren3st -- 18:07:13.285 INFO [3741]: QUERY_STRING = /assets/customjs/general.js -- 18:07:13.285 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:07:13.297 INFO [3741]: COREGRADE is stopping... -- 18:07:13.297 DEBUG [3741]: Closing database connection -- 18:07:13.297 SQL [3741]: pgsql_close() -- 18:27:13.519 INFO [3828]: COREGRADE is starting... -- 18:27:13.520 INFO [3828]: Version from config: 1.0 -- 18:27:13.520 DEBUG [3828]: Connecting to database... -- 18:27:13.520 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:13.520 SQL [3828]: pgsql_db_connect() -- 18:27:13.524 DEBUG [3828]: Database connection successful -- 18:27:13.524 INFO [3828]: _SERVER found -- 18:27:13.524 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 18:27:13.524 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:13.524 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=irsdr27uj298965ueskbo39ecjren3st -- 18:27:13.524 INFO [3828]: QUERY_STRING = /logout -- 18:27:13.524 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:13.563 INFO [3828]: COREGRADE is stopping... -- 18:27:13.563 DEBUG [3828]: Closing database connection -- 18:27:13.563 SQL [3828]: pgsql_close() -- 18:27:13.642 INFO [3828]: COREGRADE is starting... -- 18:27:13.642 INFO [3828]: Version from config: 1.0 -- 18:27:13.642 DEBUG [3828]: Connecting to database... -- 18:27:13.642 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:13.642 SQL [3828]: pgsql_db_connect() -- 18:27:13.646 DEBUG [3828]: Database connection successful -- 18:27:13.646 INFO [3828]: _SERVER found -- 18:27:13.646 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 18:27:13.646 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:13.646 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:13.646 INFO [3828]: QUERY_STRING = /start -- 18:27:13.646 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:13.687 INFO [3828]: COREGRADE is stopping... -- 18:27:13.687 DEBUG [3828]: Closing database connection -- 18:27:13.687 SQL [3828]: pgsql_close() -- 18:27:13.812 INFO [3829]: COREGRADE is starting... -- 18:27:13.812 INFO [3829]: Version from config: 1.0 -- 18:27:13.812 DEBUG [3829]: Connecting to database... -- 18:27:13.812 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:13.812 SQL [3829]: pgsql_db_connect() -- 18:27:13.832 INFO [3828]: COREGRADE is starting... -- 18:27:13.832 INFO [3828]: Version from config: 1.0 -- 18:27:13.832 DEBUG [3828]: Connecting to database... -- 18:27:13.832 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:13.832 SQL [3828]: pgsql_db_connect() -- 18:27:13.817 DEBUG [3829]: Database connection successful -- 18:27:13.817 INFO [3829]: _SERVER found -- 18:27:13.817 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 18:27:13.817 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:13.817 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:13.817 INFO [3829]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 18:27:13.817 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:13.833 INFO [3829]: COREGRADE is stopping... -- 18:27:13.833 DEBUG [3829]: Closing database connection -- 18:27:13.833 SQL [3829]: pgsql_close() -- 18:27:13.836 DEBUG [3828]: Database connection successful -- 18:27:13.836 INFO [3828]: _SERVER found -- 18:27:13.836 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 18:27:13.836 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:13.836 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:13.836 INFO [3828]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 18:27:13.836 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:13.848 INFO [3828]: COREGRADE is stopping... -- 18:27:13.848 DEBUG [3828]: Closing database connection -- 18:27:13.848 SQL [3828]: pgsql_close() -- 18:27:13.883 INFO [3739]: COREGRADE is starting... -- 18:27:13.884 INFO [3739]: Version from config: 1.0 -- 18:27:13.884 DEBUG [3739]: Connecting to database... -- 18:27:13.884 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:13.884 SQL [3739]: pgsql_db_connect() -- 18:27:13.887 DEBUG [3739]: Database connection successful -- 18:27:13.888 INFO [3739]: _SERVER found -- 18:27:13.888 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 18:27:13.888 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:13.888 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:13.888 INFO [3739]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 18:27:13.888 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:13.900 INFO [3739]: COREGRADE is stopping... -- 18:27:13.900 DEBUG [3739]: Closing database connection -- 18:27:13.900 SQL [3739]: pgsql_close() -- 18:27:13.912 INFO [3829]: COREGRADE is starting... -- 18:27:13.912 INFO [3829]: Version from config: 1.0 -- 18:27:13.912 DEBUG [3829]: Connecting to database... -- 18:27:13.912 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:13.912 SQL [3829]: pgsql_db_connect() -- 18:27:13.913 INFO [3828]: COREGRADE is starting... -- 18:27:13.914 INFO [3828]: Version from config: 1.0 -- 18:27:13.914 DEBUG [3828]: Connecting to database... -- 18:27:13.914 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:13.914 SQL [3828]: pgsql_db_connect() -- 18:27:13.916 DEBUG [3829]: Database connection successful -- 18:27:13.916 INFO [3829]: _SERVER found -- 18:27:13.916 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 18:27:13.916 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:13.916 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:13.916 INFO [3829]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 18:27:13.916 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:13.928 INFO [3829]: COREGRADE is stopping... -- 18:27:13.928 DEBUG [3829]: Closing database connection -- 18:27:13.928 SQL [3829]: pgsql_close() -- 18:27:13.917 DEBUG [3828]: Database connection successful -- 18:27:13.917 INFO [3828]: _SERVER found -- 18:27:13.917 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 18:27:13.917 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:13.917 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:13.917 INFO [3828]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 18:27:13.917 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:13.929 INFO [3828]: COREGRADE is stopping... -- 18:27:13.929 DEBUG [3828]: Closing database connection -- 18:27:13.929 SQL [3828]: pgsql_close() -- 18:27:13.982 INFO [3739]: COREGRADE is starting... -- 18:27:13.982 INFO [3739]: Version from config: 1.0 -- 18:27:13.982 DEBUG [3739]: Connecting to database... -- 18:27:13.982 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:13.982 SQL [3739]: pgsql_db_connect() -- 18:27:13.997 INFO [3828]: COREGRADE is starting... -- 18:27:13.997 INFO [3828]: Version from config: 1.0 -- 18:27:13.997 DEBUG [3828]: Connecting to database... -- 18:27:13.997 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:13.997 SQL [3828]: pgsql_db_connect() -- 18:27:13.986 DEBUG [3739]: Database connection successful -- 18:27:13.986 INFO [3739]: _SERVER found -- 18:27:13.986 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 18:27:13.986 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:13.986 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:13.986 INFO [3739]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 18:27:13.986 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:13.998 INFO [3739]: COREGRADE is stopping... -- 18:27:13.998 DEBUG [3739]: Closing database connection -- 18:27:13.998 SQL [3739]: pgsql_close() -- 18:27:14.008 INFO [3829]: COREGRADE is starting... -- 18:27:14.008 INFO [3829]: Version from config: 1.0 -- 18:27:14.008 DEBUG [3829]: Connecting to database... -- 18:27:14.008 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:14.008 SQL [3829]: pgsql_db_connect() -- 18:27:14.001 DEBUG [3828]: Database connection successful -- 18:27:14.001 INFO [3828]: _SERVER found -- 18:27:14.001 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 18:27:14.001 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:14.001 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:14.001 INFO [3828]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 18:27:14.001 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:14.013 INFO [3828]: COREGRADE is stopping... -- 18:27:14.013 DEBUG [3828]: Closing database connection -- 18:27:14.013 SQL [3828]: pgsql_close() -- 18:27:14.012 DEBUG [3829]: Database connection successful -- 18:27:14.012 INFO [3829]: _SERVER found -- 18:27:14.012 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 18:27:14.012 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:14.012 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:14.012 INFO [3829]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 18:27:14.012 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:14.024 INFO [3829]: COREGRADE is stopping... -- 18:27:14.024 DEBUG [3829]: Closing database connection -- 18:27:14.024 SQL [3829]: pgsql_close() -- 18:27:14.078 INFO [3739]: COREGRADE is starting... -- 18:27:14.078 INFO [3828]: COREGRADE is starting... -- 18:27:14.078 INFO [3739]: Version from config: 1.0 -- 18:27:14.078 DEBUG [3739]: Connecting to database... -- 18:27:14.078 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:14.078 SQL [3739]: pgsql_db_connect() -- 18:27:14.078 INFO [3828]: Version from config: 1.0 -- 18:27:14.078 DEBUG [3828]: Connecting to database... -- 18:27:14.078 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:14.078 SQL [3828]: pgsql_db_connect() -- 18:27:14.082 DEBUG [3739]: Database connection successful -- 18:27:14.082 INFO [3739]: _SERVER found -- 18:27:14.082 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 18:27:14.082 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:14.082 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:14.082 INFO [3739]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 18:27:14.082 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:14.094 INFO [3739]: COREGRADE is stopping... -- 18:27:14.082 DEBUG [3828]: Database connection successful -- 18:27:14.082 INFO [3828]: _SERVER found -- 18:27:14.082 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 18:27:14.082 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:14.082 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:14.082 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 18:27:14.082 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:14.094 INFO [3828]: COREGRADE is stopping... -- 18:27:14.094 DEBUG [3739]: Closing database connection -- 18:27:14.094 DEBUG [3828]: Closing database connection -- 18:27:14.094 SQL [3739]: pgsql_close() -- 18:27:14.094 SQL [3828]: pgsql_close() -- 18:27:14.097 INFO [3829]: COREGRADE is starting... -- 18:27:14.097 INFO [3829]: Version from config: 1.0 -- 18:27:14.097 DEBUG [3829]: Connecting to database... -- 18:27:14.097 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:14.097 SQL [3829]: pgsql_db_connect() -- 18:27:14.101 DEBUG [3829]: Database connection successful -- 18:27:14.101 INFO [3829]: _SERVER found -- 18:27:14.101 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 18:27:14.101 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:14.101 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:14.101 INFO [3829]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 18:27:14.101 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:14.112 INFO [3829]: COREGRADE is stopping... -- 18:27:14.112 DEBUG [3829]: Closing database connection -- 18:27:14.112 SQL [3829]: pgsql_close() -- 18:27:14.160 INFO [3828]: COREGRADE is starting... -- 18:27:14.160 INFO [3828]: Version from config: 1.0 -- 18:27:14.160 DEBUG [3828]: Connecting to database... -- 18:27:14.160 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:14.160 SQL [3828]: pgsql_db_connect() -- 18:27:14.174 INFO [3739]: COREGRADE is starting... -- 18:27:14.174 INFO [3739]: Version from config: 1.0 -- 18:27:14.174 DEBUG [3739]: Connecting to database... -- 18:27:14.175 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:14.175 SQL [3739]: pgsql_db_connect() -- 18:27:14.164 DEBUG [3828]: Database connection successful -- 18:27:14.164 INFO [3828]: _SERVER found -- 18:27:14.164 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 18:27:14.164 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:14.164 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:14.164 INFO [3828]: QUERY_STRING = /assets/js/pages/dashboard.js -- 18:27:14.164 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:14.175 INFO [3828]: COREGRADE is stopping... -- 18:27:14.175 DEBUG [3828]: Closing database connection -- 18:27:14.175 SQL [3828]: pgsql_close() -- 18:27:14.182 INFO [3829]: COREGRADE is starting... -- 18:27:14.182 INFO [3829]: Version from config: 1.0 -- 18:27:14.182 DEBUG [3829]: Connecting to database... -- 18:27:14.182 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:14.182 SQL [3829]: pgsql_db_connect() -- 18:27:14.179 DEBUG [3739]: Database connection successful -- 18:27:14.179 INFO [3739]: _SERVER found -- 18:27:14.179 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 18:27:14.179 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:14.179 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:14.179 INFO [3739]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 18:27:14.179 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:14.190 INFO [3739]: COREGRADE is stopping... -- 18:27:14.190 DEBUG [3739]: Closing database connection -- 18:27:14.190 SQL [3739]: pgsql_close() -- 18:27:14.186 DEBUG [3829]: Database connection successful -- 18:27:14.186 INFO [3829]: _SERVER found -- 18:27:14.186 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 18:27:14.186 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:14.186 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:14.186 INFO [3829]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 18:27:14.186 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:14.197 INFO [3829]: COREGRADE is stopping... -- 18:27:14.197 DEBUG [3829]: Closing database connection -- 18:27:14.197 SQL [3829]: pgsql_close() -- 18:27:14.241 INFO [3828]: COREGRADE is starting... -- 18:27:14.241 INFO [3828]: Version from config: 1.0 -- 18:27:14.241 DEBUG [3828]: Connecting to database... -- 18:27:14.241 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:14.241 SQL [3828]: pgsql_db_connect() -- 18:27:14.245 DEBUG [3828]: Database connection successful -- 18:27:14.245 INFO [3828]: _SERVER found -- 18:27:14.245 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 18:27:14.245 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:14.245 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:14.245 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 18:27:14.245 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:14.257 INFO [3828]: COREGRADE is stopping... -- 18:27:14.257 DEBUG [3828]: Closing database connection -- 18:27:14.257 SQL [3828]: pgsql_close() -- 18:27:14.259 INFO [3739]: COREGRADE is starting... -- 18:27:14.260 INFO [3739]: Version from config: 1.0 -- 18:27:14.260 DEBUG [3739]: Connecting to database... -- 18:27:14.260 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:14.260 SQL [3739]: pgsql_db_connect() -- 18:27:14.264 INFO [3829]: COREGRADE is starting... -- 18:27:14.265 INFO [3829]: Version from config: 1.0 -- 18:27:14.265 DEBUG [3829]: Connecting to database... -- 18:27:14.265 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:14.265 SQL [3829]: pgsql_db_connect() -- 18:27:14.263 DEBUG [3739]: Database connection successful -- 18:27:14.263 INFO [3739]: _SERVER found -- 18:27:14.263 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 18:27:14.263 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:14.263 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:14.263 INFO [3739]: QUERY_STRING = /assets/js/pages/picker_date.js -- 18:27:14.263 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:14.275 INFO [3739]: COREGRADE is stopping... -- 18:27:14.275 DEBUG [3739]: Closing database connection -- 18:27:14.275 SQL [3739]: pgsql_close() -- 18:27:14.268 DEBUG [3829]: Database connection successful -- 18:27:14.268 INFO [3829]: _SERVER found -- 18:27:14.268 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 18:27:14.268 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:14.268 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:14.268 INFO [3829]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 18:27:14.268 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:14.280 INFO [3829]: COREGRADE is stopping... -- 18:27:14.280 DEBUG [3829]: Closing database connection -- 18:27:14.280 SQL [3829]: pgsql_close() -- 18:27:14.322 INFO [3828]: COREGRADE is starting... -- 18:27:14.323 INFO [3828]: Version from config: 1.0 -- 18:27:14.323 DEBUG [3828]: Connecting to database... -- 18:27:14.323 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:14.323 SQL [3828]: pgsql_db_connect() -- 18:27:14.327 DEBUG [3828]: Database connection successful -- 18:27:14.327 INFO [3828]: _SERVER found -- 18:27:14.327 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 18:27:14.327 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:14.327 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:14.327 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 18:27:14.327 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:14.338 INFO [3828]: COREGRADE is stopping... -- 18:27:14.338 DEBUG [3828]: Closing database connection -- 18:27:14.338 SQL [3828]: pgsql_close() -- 18:27:14.343 INFO [3739]: COREGRADE is starting... -- 18:27:14.343 INFO [3739]: Version from config: 1.0 -- 18:27:14.343 DEBUG [3739]: Connecting to database... -- 18:27:14.343 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:14.344 SQL [3739]: pgsql_db_connect() -- 18:27:14.347 INFO [3829]: COREGRADE is starting... -- 18:27:14.348 INFO [3829]: Version from config: 1.0 -- 18:27:14.348 DEBUG [3829]: Connecting to database... -- 18:27:14.348 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:14.348 SQL [3829]: pgsql_db_connect() -- 18:27:14.348 DEBUG [3739]: Database connection successful -- 18:27:14.348 INFO [3739]: _SERVER found -- 18:27:14.348 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 18:27:14.348 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:14.348 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:14.348 INFO [3739]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 18:27:14.348 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:14.359 INFO [3739]: COREGRADE is stopping... -- 18:27:14.359 DEBUG [3739]: Closing database connection -- 18:27:14.359 SQL [3739]: pgsql_close() -- 18:27:14.351 DEBUG [3829]: Database connection successful -- 18:27:14.351 INFO [3829]: _SERVER found -- 18:27:14.351 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 18:27:14.351 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:14.351 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:14.351 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 18:27:14.351 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:14.363 INFO [3829]: COREGRADE is stopping... -- 18:27:14.363 DEBUG [3829]: Closing database connection -- 18:27:14.363 SQL [3829]: pgsql_close() -- 18:27:14.404 INFO [3828]: COREGRADE is starting... -- 18:27:14.404 INFO [3828]: Version from config: 1.0 -- 18:27:14.404 DEBUG [3828]: Connecting to database... -- 18:27:14.404 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:14.404 SQL [3828]: pgsql_db_connect() -- 18:27:14.408 DEBUG [3828]: Database connection successful -- 18:27:14.408 INFO [3828]: _SERVER found -- 18:27:14.408 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 18:27:14.408 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:14.408 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:14.408 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 18:27:14.408 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:14.419 INFO [3828]: COREGRADE is stopping... -- 18:27:14.419 DEBUG [3828]: Closing database connection -- 18:27:14.419 SQL [3828]: pgsql_close() -- 18:27:14.427 INFO [3739]: COREGRADE is starting... -- 18:27:14.427 INFO [3739]: Version from config: 1.0 -- 18:27:14.427 DEBUG [3739]: Connecting to database... -- 18:27:14.427 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:14.427 SQL [3739]: pgsql_db_connect() -- 18:27:14.433 INFO [3829]: COREGRADE is starting... -- 18:27:14.433 INFO [3829]: Version from config: 1.0 -- 18:27:14.433 DEBUG [3829]: Connecting to database... -- 18:27:14.433 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:14.433 SQL [3829]: pgsql_db_connect() -- 18:27:14.431 DEBUG [3739]: Database connection successful -- 18:27:14.431 INFO [3739]: _SERVER found -- 18:27:14.431 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 18:27:14.431 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:14.431 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:14.431 INFO [3739]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 18:27:14.431 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:14.443 INFO [3739]: COREGRADE is stopping... -- 18:27:14.443 DEBUG [3739]: Closing database connection -- 18:27:14.443 SQL [3739]: pgsql_close() -- 18:27:14.437 DEBUG [3829]: Database connection successful -- 18:27:14.437 INFO [3829]: _SERVER found -- 18:27:14.437 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 18:27:14.437 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:14.437 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:14.437 INFO [3829]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 18:27:14.437 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:14.449 INFO [3829]: COREGRADE is stopping... -- 18:27:14.449 DEBUG [3829]: Closing database connection -- 18:27:14.449 SQL [3829]: pgsql_close() -- 18:27:14.485 INFO [3828]: COREGRADE is starting... -- 18:27:14.485 INFO [3828]: Version from config: 1.0 -- 18:27:14.485 DEBUG [3828]: Connecting to database... -- 18:27:14.485 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:14.485 SQL [3828]: pgsql_db_connect() -- 18:27:14.489 DEBUG [3828]: Database connection successful -- 18:27:14.489 INFO [3828]: _SERVER found -- 18:27:14.489 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 18:27:14.489 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:14.489 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:14.489 INFO [3828]: QUERY_STRING = /assets/customjs/general.js -- 18:27:14.489 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:14.501 INFO [3828]: COREGRADE is stopping... -- 18:27:14.501 DEBUG [3828]: Closing database connection -- 18:27:14.501 SQL [3828]: pgsql_close() -- 18:27:14.511 INFO [3739]: COREGRADE is starting... -- 18:27:14.511 INFO [3739]: Version from config: 1.0 -- 18:27:14.511 DEBUG [3739]: Connecting to database... -- 18:27:14.511 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:14.511 SQL [3739]: pgsql_db_connect() -- 18:27:14.515 DEBUG [3739]: Database connection successful -- 18:27:14.515 INFO [3739]: _SERVER found -- 18:27:14.515 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 18:27:14.515 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:14.515 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:14.515 INFO [3739]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 18:27:14.515 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:14.526 INFO [3739]: COREGRADE is stopping... -- 18:27:14.526 DEBUG [3739]: Closing database connection -- 18:27:14.526 SQL [3739]: pgsql_close() -- 18:27:14.594 INFO [3739]: COREGRADE is starting... -- 18:27:14.595 INFO [3739]: Version from config: 1.0 -- 18:27:14.595 DEBUG [3739]: Connecting to database... -- 18:27:14.595 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:14.595 SQL [3739]: pgsql_db_connect() -- 18:27:14.599 DEBUG [3739]: Database connection successful -- 18:27:14.599 INFO [3739]: _SERVER found -- 18:27:14.599 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 18:27:14.599 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:14.599 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:14.599 INFO [3739]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 18:27:14.599 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:14.610 INFO [3739]: COREGRADE is stopping... -- 18:27:14.610 DEBUG [3739]: Closing database connection -- 18:27:14.610 SQL [3739]: pgsql_close() -- 18:27:14.679 INFO [3739]: COREGRADE is starting... -- 18:27:14.679 INFO [3739]: Version from config: 1.0 -- 18:27:14.679 DEBUG [3739]: Connecting to database... -- 18:27:14.679 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:14.679 SQL [3739]: pgsql_db_connect() -- 18:27:14.683 DEBUG [3739]: Database connection successful -- 18:27:14.683 INFO [3739]: _SERVER found -- 18:27:14.683 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 18:27:14.683 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:14.683 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:14.683 INFO [3739]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 18:27:14.683 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:14.694 INFO [3739]: COREGRADE is stopping... -- 18:27:14.694 DEBUG [3739]: Closing database connection -- 18:27:14.694 SQL [3739]: pgsql_close() -- 18:27:14.763 INFO [3739]: COREGRADE is starting... -- 18:27:14.763 INFO [3739]: Version from config: 1.0 -- 18:27:14.763 DEBUG [3739]: Connecting to database... -- 18:27:14.763 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:14.763 SQL [3739]: pgsql_db_connect() -- 18:27:14.767 DEBUG [3739]: Database connection successful -- 18:27:14.767 INFO [3739]: _SERVER found -- 18:27:14.767 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 18:27:14.767 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:14.767 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:14.767 INFO [3739]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 18:27:14.767 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:14.778 INFO [3739]: COREGRADE is stopping... -- 18:27:14.778 DEBUG [3739]: Closing database connection -- 18:27:14.778 SQL [3739]: pgsql_close() -- 18:27:14.846 INFO [3739]: COREGRADE is starting... -- 18:27:14.847 INFO [3739]: Version from config: 1.0 -- 18:27:14.847 DEBUG [3739]: Connecting to database... -- 18:27:14.847 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:14.847 SQL [3739]: pgsql_db_connect() -- 18:27:14.851 DEBUG [3739]: Database connection successful -- 18:27:14.851 INFO [3739]: _SERVER found -- 18:27:14.851 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 18:27:14.851 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:14.851 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:14.851 INFO [3739]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 18:27:14.851 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:14.863 INFO [3739]: COREGRADE is stopping... -- 18:27:14.863 DEBUG [3739]: Closing database connection -- 18:27:14.863 SQL [3739]: pgsql_close() -- 18:27:14.931 INFO [3739]: COREGRADE is starting... -- 18:27:14.932 INFO [3739]: Version from config: 1.0 -- 18:27:14.932 DEBUG [3739]: Connecting to database... -- 18:27:14.932 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:14.932 SQL [3739]: pgsql_db_connect() -- 18:27:14.936 DEBUG [3739]: Database connection successful -- 18:27:14.936 INFO [3739]: _SERVER found -- 18:27:14.936 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 18:27:14.936 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:14.936 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:14.936 INFO [3739]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 18:27:14.936 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:14.947 INFO [3739]: COREGRADE is stopping... -- 18:27:14.947 DEBUG [3739]: Closing database connection -- 18:27:14.947 SQL [3739]: pgsql_close() -- 18:27:15.015 INFO [3739]: COREGRADE is starting... -- 18:27:15.016 INFO [3739]: Version from config: 1.0 -- 18:27:15.016 DEBUG [3739]: Connecting to database... -- 18:27:15.016 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:15.016 SQL [3739]: pgsql_db_connect() -- 18:27:15.020 DEBUG [3739]: Database connection successful -- 18:27:15.020 INFO [3739]: _SERVER found -- 18:27:15.020 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 18:27:15.020 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:15.020 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:15.020 INFO [3739]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 18:27:15.020 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:15.031 INFO [3739]: COREGRADE is stopping... -- 18:27:15.031 DEBUG [3739]: Closing database connection -- 18:27:15.031 SQL [3739]: pgsql_close() -- 18:27:15.100 INFO [3739]: COREGRADE is starting... -- 18:27:15.100 INFO [3739]: Version from config: 1.0 -- 18:27:15.100 DEBUG [3739]: Connecting to database... -- 18:27:15.100 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:15.100 SQL [3739]: pgsql_db_connect() -- 18:27:15.104 DEBUG [3739]: Database connection successful -- 18:27:15.104 INFO [3739]: _SERVER found -- 18:27:15.104 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 18:27:15.104 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:15.104 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:15.104 INFO [3739]: QUERY_STRING = /assets/js/pages/dashboard.js -- 18:27:15.104 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:15.115 INFO [3739]: COREGRADE is stopping... -- 18:27:15.115 DEBUG [3739]: Closing database connection -- 18:27:15.115 SQL [3739]: pgsql_close() -- 18:27:15.185 INFO [3739]: COREGRADE is starting... -- 18:27:15.185 INFO [3739]: Version from config: 1.0 -- 18:27:15.185 DEBUG [3739]: Connecting to database... -- 18:27:15.185 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:15.185 SQL [3739]: pgsql_db_connect() -- 18:27:15.189 DEBUG [3739]: Database connection successful -- 18:27:15.189 INFO [3739]: _SERVER found -- 18:27:15.189 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 18:27:15.189 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:15.189 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:15.189 INFO [3739]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 18:27:15.189 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:15.201 INFO [3739]: COREGRADE is stopping... -- 18:27:15.201 DEBUG [3739]: Closing database connection -- 18:27:15.201 SQL [3739]: pgsql_close() -- 18:27:15.269 INFO [3739]: COREGRADE is starting... -- 18:27:15.269 INFO [3739]: Version from config: 1.0 -- 18:27:15.269 DEBUG [3739]: Connecting to database... -- 18:27:15.269 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:15.269 SQL [3739]: pgsql_db_connect() -- 18:27:15.273 DEBUG [3739]: Database connection successful -- 18:27:15.273 INFO [3739]: _SERVER found -- 18:27:15.273 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 18:27:15.273 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:15.273 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:15.273 INFO [3739]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 18:27:15.273 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:15.284 INFO [3739]: COREGRADE is stopping... -- 18:27:15.284 DEBUG [3739]: Closing database connection -- 18:27:15.285 SQL [3739]: pgsql_close() -- 18:27:15.353 INFO [3739]: COREGRADE is starting... -- 18:27:15.353 INFO [3739]: Version from config: 1.0 -- 18:27:15.353 DEBUG [3739]: Connecting to database... -- 18:27:15.353 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:15.353 SQL [3739]: pgsql_db_connect() -- 18:27:15.357 DEBUG [3739]: Database connection successful -- 18:27:15.357 INFO [3739]: _SERVER found -- 18:27:15.357 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 18:27:15.357 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:15.357 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:15.357 INFO [3739]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 18:27:15.357 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:15.369 INFO [3739]: COREGRADE is stopping... -- 18:27:15.369 DEBUG [3739]: Closing database connection -- 18:27:15.369 SQL [3739]: pgsql_close() -- 18:27:15.437 INFO [3739]: COREGRADE is starting... -- 18:27:15.437 INFO [3739]: Version from config: 1.0 -- 18:27:15.437 DEBUG [3739]: Connecting to database... -- 18:27:15.437 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:15.437 SQL [3739]: pgsql_db_connect() -- 18:27:15.441 DEBUG [3739]: Database connection successful -- 18:27:15.441 INFO [3739]: _SERVER found -- 18:27:15.441 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 18:27:15.441 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:15.441 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:15.441 INFO [3739]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 18:27:15.441 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:15.453 INFO [3739]: COREGRADE is stopping... -- 18:27:15.453 DEBUG [3739]: Closing database connection -- 18:27:15.453 SQL [3739]: pgsql_close() -- 18:27:15.521 INFO [3739]: COREGRADE is starting... -- 18:27:15.521 INFO [3739]: Version from config: 1.0 -- 18:27:15.521 DEBUG [3739]: Connecting to database... -- 18:27:15.521 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:15.521 SQL [3739]: pgsql_db_connect() -- 18:27:15.525 DEBUG [3739]: Database connection successful -- 18:27:15.525 INFO [3739]: _SERVER found -- 18:27:15.525 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 18:27:15.525 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:15.525 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:15.525 INFO [3739]: QUERY_STRING = /assets/js/pages/picker_date.js -- 18:27:15.525 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:15.537 INFO [3739]: COREGRADE is stopping... -- 18:27:15.537 DEBUG [3739]: Closing database connection -- 18:27:15.537 SQL [3739]: pgsql_close() -- 18:27:15.605 INFO [3739]: COREGRADE is starting... -- 18:27:15.605 INFO [3739]: Version from config: 1.0 -- 18:27:15.605 DEBUG [3739]: Connecting to database... -- 18:27:15.605 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:15.605 SQL [3739]: pgsql_db_connect() -- 18:27:15.609 DEBUG [3739]: Database connection successful -- 18:27:15.609 INFO [3739]: _SERVER found -- 18:27:15.609 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 18:27:15.609 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:15.609 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:15.609 INFO [3739]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 18:27:15.609 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:15.621 INFO [3739]: COREGRADE is stopping... -- 18:27:15.621 DEBUG [3739]: Closing database connection -- 18:27:15.621 SQL [3739]: pgsql_close() -- 18:27:15.689 INFO [3739]: COREGRADE is starting... -- 18:27:15.689 INFO [3739]: Version from config: 1.0 -- 18:27:15.689 DEBUG [3739]: Connecting to database... -- 18:27:15.689 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:15.689 SQL [3739]: pgsql_db_connect() -- 18:27:15.693 DEBUG [3739]: Database connection successful -- 18:27:15.693 INFO [3739]: _SERVER found -- 18:27:15.693 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 18:27:15.693 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:15.693 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:15.693 INFO [3739]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 18:27:15.693 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:15.705 INFO [3739]: COREGRADE is stopping... -- 18:27:15.705 DEBUG [3739]: Closing database connection -- 18:27:15.705 SQL [3739]: pgsql_close() -- 18:27:15.773 INFO [3739]: COREGRADE is starting... -- 18:27:15.773 INFO [3739]: Version from config: 1.0 -- 18:27:15.773 DEBUG [3739]: Connecting to database... -- 18:27:15.773 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:15.773 SQL [3739]: pgsql_db_connect() -- 18:27:15.777 DEBUG [3739]: Database connection successful -- 18:27:15.777 INFO [3739]: _SERVER found -- 18:27:15.777 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 18:27:15.777 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:15.777 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:15.777 INFO [3739]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 18:27:15.777 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:15.789 INFO [3739]: COREGRADE is stopping... -- 18:27:15.789 DEBUG [3739]: Closing database connection -- 18:27:15.789 SQL [3739]: pgsql_close() -- 18:27:15.857 INFO [3739]: COREGRADE is starting... -- 18:27:15.857 INFO [3739]: Version from config: 1.0 -- 18:27:15.857 DEBUG [3739]: Connecting to database... -- 18:27:15.857 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:15.857 SQL [3739]: pgsql_db_connect() -- 18:27:15.861 DEBUG [3739]: Database connection successful -- 18:27:15.861 INFO [3739]: _SERVER found -- 18:27:15.861 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 18:27:15.861 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:15.861 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:15.861 INFO [3739]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 18:27:15.861 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:15.873 INFO [3739]: COREGRADE is stopping... -- 18:27:15.873 DEBUG [3739]: Closing database connection -- 18:27:15.873 SQL [3739]: pgsql_close() -- 18:27:15.942 INFO [3739]: COREGRADE is starting... -- 18:27:15.942 INFO [3739]: Version from config: 1.0 -- 18:27:15.942 DEBUG [3739]: Connecting to database... -- 18:27:15.942 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:15.942 SQL [3739]: pgsql_db_connect() -- 18:27:15.946 DEBUG [3739]: Database connection successful -- 18:27:15.946 INFO [3739]: _SERVER found -- 18:27:15.946 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 18:27:15.946 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:15.946 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:15.946 INFO [3739]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 18:27:15.946 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:15.957 INFO [3739]: COREGRADE is stopping... -- 18:27:15.957 DEBUG [3739]: Closing database connection -- 18:27:15.957 SQL [3739]: pgsql_close() -- 18:27:16.036 INFO [3739]: COREGRADE is starting... -- 18:27:16.037 INFO [3739]: Version from config: 1.0 -- 18:27:16.037 DEBUG [3739]: Connecting to database... -- 18:27:16.037 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:16.037 SQL [3739]: pgsql_db_connect() -- 18:27:16.041 DEBUG [3739]: Database connection successful -- 18:27:16.041 INFO [3739]: _SERVER found -- 18:27:16.041 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 18:27:16.041 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:16.041 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:16.041 INFO [3739]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 18:27:16.041 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:16.052 INFO [3739]: COREGRADE is stopping... -- 18:27:16.052 DEBUG [3739]: Closing database connection -- 18:27:16.052 SQL [3739]: pgsql_close() -- 18:27:16.121 INFO [3739]: COREGRADE is starting... -- 18:27:16.121 INFO [3739]: Version from config: 1.0 -- 18:27:16.121 DEBUG [3739]: Connecting to database... -- 18:27:16.121 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:16.121 SQL [3739]: pgsql_db_connect() -- 18:27:16.125 DEBUG [3739]: Database connection successful -- 18:27:16.125 INFO [3739]: _SERVER found -- 18:27:16.125 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 18:27:16.125 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:16.125 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:16.125 INFO [3739]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 18:27:16.125 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:16.137 INFO [3739]: COREGRADE is stopping... -- 18:27:16.137 DEBUG [3739]: Closing database connection -- 18:27:16.137 SQL [3739]: pgsql_close() -- 18:27:16.207 INFO [3739]: COREGRADE is starting... -- 18:27:16.207 INFO [3739]: Version from config: 1.0 -- 18:27:16.207 DEBUG [3739]: Connecting to database... -- 18:27:16.208 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:27:16.208 SQL [3739]: pgsql_db_connect() -- 18:27:16.212 DEBUG [3739]: Database connection successful -- 18:27:16.212 INFO [3739]: _SERVER found -- 18:27:16.212 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 18:27:16.212 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:27:16.212 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:27:16.212 INFO [3739]: QUERY_STRING = /assets/customjs/general.js -- 18:27:16.212 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:27:16.223 INFO [3739]: COREGRADE is stopping... -- 18:27:16.223 DEBUG [3739]: Closing database connection -- 18:27:16.223 SQL [3739]: pgsql_close() -- 18:47:16.445 INFO [3740]: COREGRADE is starting... -- 18:47:16.445 INFO [3740]: Version from config: 1.0 -- 18:47:16.445 DEBUG [3740]: Connecting to database... -- 18:47:16.445 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:16.445 SQL [3740]: pgsql_db_connect() -- 18:47:16.449 DEBUG [3740]: Database connection successful -- 18:47:16.449 INFO [3740]: _SERVER found -- 18:47:16.449 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 18:47:16.449 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:16.449 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=63pg957l75u6b9slqo2i9cviu2f28onu -- 18:47:16.449 INFO [3740]: QUERY_STRING = /logout -- 18:47:16.449 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:16.485 INFO [3740]: COREGRADE is stopping... -- 18:47:16.485 DEBUG [3740]: Closing database connection -- 18:47:16.485 SQL [3740]: pgsql_close() -- 18:47:16.563 INFO [3740]: COREGRADE is starting... -- 18:47:16.564 INFO [3740]: Version from config: 1.0 -- 18:47:16.564 DEBUG [3740]: Connecting to database... -- 18:47:16.564 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:16.564 SQL [3740]: pgsql_db_connect() -- 18:47:16.568 DEBUG [3740]: Database connection successful -- 18:47:16.568 INFO [3740]: _SERVER found -- 18:47:16.568 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 18:47:16.568 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:16.568 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:16.568 INFO [3740]: QUERY_STRING = /start -- 18:47:16.568 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:16.609 INFO [3740]: COREGRADE is stopping... -- 18:47:16.609 DEBUG [3740]: Closing database connection -- 18:47:16.609 SQL [3740]: pgsql_close() -- 18:47:16.736 INFO [3738]: COREGRADE is starting... -- 18:47:16.736 INFO [3738]: Version from config: 1.0 -- 18:47:16.736 DEBUG [3738]: Connecting to database... -- 18:47:16.736 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:16.736 SQL [3738]: pgsql_db_connect() -- 18:47:16.740 DEBUG [3738]: Database connection successful -- 18:47:16.740 INFO [3738]: _SERVER found -- 18:47:16.740 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 18:47:16.740 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:16.740 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:16.740 INFO [3738]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 18:47:16.740 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:16.754 INFO [3738]: COREGRADE is stopping... -- 18:47:16.754 DEBUG [3738]: Closing database connection -- 18:47:16.754 SQL [3738]: pgsql_close() -- 18:47:16.755 INFO [3740]: COREGRADE is starting... -- 18:47:16.755 INFO [3740]: Version from config: 1.0 -- 18:47:16.755 DEBUG [3740]: Connecting to database... -- 18:47:16.755 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:16.755 SQL [3740]: pgsql_db_connect() -- 18:47:16.759 DEBUG [3740]: Database connection successful -- 18:47:16.759 INFO [3740]: _SERVER found -- 18:47:16.759 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 18:47:16.759 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:16.759 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:16.759 INFO [3740]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 18:47:16.759 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:16.771 INFO [3740]: COREGRADE is stopping... -- 18:47:16.771 DEBUG [3740]: Closing database connection -- 18:47:16.771 SQL [3740]: pgsql_close() -- 18:47:16.807 INFO [3742]: COREGRADE is starting... -- 18:47:16.807 INFO [3742]: Version from config: 1.0 -- 18:47:16.807 DEBUG [3742]: Connecting to database... -- 18:47:16.808 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:16.808 SQL [3742]: pgsql_db_connect() -- 18:47:16.811 DEBUG [3742]: Database connection successful -- 18:47:16.811 INFO [3742]: _SERVER found -- 18:47:16.811 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 18:47:16.811 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:16.811 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:16.811 INFO [3742]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 18:47:16.811 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:16.823 INFO [3742]: COREGRADE is stopping... -- 18:47:16.823 DEBUG [3742]: Closing database connection -- 18:47:16.824 SQL [3742]: pgsql_close() -- 18:47:16.831 INFO [3738]: COREGRADE is starting... -- 18:47:16.831 INFO [3738]: Version from config: 1.0 -- 18:47:16.831 DEBUG [3738]: Connecting to database... -- 18:47:16.831 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:16.831 SQL [3738]: pgsql_db_connect() -- 18:47:16.835 INFO [3740]: COREGRADE is starting... -- 18:47:16.835 INFO [3740]: Version from config: 1.0 -- 18:47:16.835 DEBUG [3740]: Connecting to database... -- 18:47:16.835 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:16.835 SQL [3740]: pgsql_db_connect() -- 18:47:16.835 DEBUG [3738]: Database connection successful -- 18:47:16.835 INFO [3738]: _SERVER found -- 18:47:16.835 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 18:47:16.835 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:16.835 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:16.835 INFO [3738]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 18:47:16.835 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:16.846 INFO [3738]: COREGRADE is stopping... -- 18:47:16.846 DEBUG [3738]: Closing database connection -- 18:47:16.846 SQL [3738]: pgsql_close() -- 18:47:16.839 DEBUG [3740]: Database connection successful -- 18:47:16.839 INFO [3740]: _SERVER found -- 18:47:16.839 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 18:47:16.839 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:16.839 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:16.839 INFO [3740]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 18:47:16.839 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:16.851 INFO [3740]: COREGRADE is stopping... -- 18:47:16.851 DEBUG [3740]: Closing database connection -- 18:47:16.851 SQL [3740]: pgsql_close() -- 18:47:16.907 INFO [3742]: COREGRADE is starting... -- 18:47:16.908 INFO [3742]: Version from config: 1.0 -- 18:47:16.908 DEBUG [3742]: Connecting to database... -- 18:47:16.908 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:16.908 SQL [3742]: pgsql_db_connect() -- 18:47:16.916 INFO [3740]: COREGRADE is starting... -- 18:47:16.916 INFO [3740]: Version from config: 1.0 -- 18:47:16.916 DEBUG [3740]: Connecting to database... -- 18:47:16.916 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:16.916 SQL [3740]: pgsql_db_connect() -- 18:47:16.911 DEBUG [3742]: Database connection successful -- 18:47:16.911 INFO [3742]: _SERVER found -- 18:47:16.911 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 18:47:16.911 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:16.911 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:16.911 INFO [3742]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 18:47:16.911 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:16.923 INFO [3742]: COREGRADE is stopping... -- 18:47:16.923 DEBUG [3742]: Closing database connection -- 18:47:16.923 SQL [3742]: pgsql_close() -- 18:47:16.925 INFO [3738]: COREGRADE is starting... -- 18:47:16.925 INFO [3738]: Version from config: 1.0 -- 18:47:16.925 DEBUG [3738]: Connecting to database... -- 18:47:16.925 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:16.925 SQL [3738]: pgsql_db_connect() -- 18:47:16.920 DEBUG [3740]: Database connection successful -- 18:47:16.920 INFO [3740]: _SERVER found -- 18:47:16.920 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 18:47:16.920 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:16.920 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:16.920 INFO [3740]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 18:47:16.920 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:16.931 INFO [3740]: COREGRADE is stopping... -- 18:47:16.931 DEBUG [3740]: Closing database connection -- 18:47:16.931 SQL [3740]: pgsql_close() -- 18:47:16.929 DEBUG [3738]: Database connection successful -- 18:47:16.929 INFO [3738]: _SERVER found -- 18:47:16.929 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 18:47:16.929 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:16.929 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:16.929 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 18:47:16.929 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:16.941 INFO [3738]: COREGRADE is stopping... -- 18:47:16.941 DEBUG [3738]: Closing database connection -- 18:47:16.941 SQL [3738]: pgsql_close() -- 18:47:16.997 INFO [3740]: COREGRADE is starting... -- 18:47:16.997 INFO [3740]: Version from config: 1.0 -- 18:47:16.997 DEBUG [3740]: Connecting to database... -- 18:47:16.997 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:16.997 SQL [3740]: pgsql_db_connect() -- 18:47:17.002 INFO [3742]: COREGRADE is starting... -- 18:47:17.002 INFO [3742]: Version from config: 1.0 -- 18:47:17.002 DEBUG [3742]: Connecting to database... -- 18:47:17.003 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:17.003 SQL [3742]: pgsql_db_connect() -- 18:47:17.002 DEBUG [3740]: Database connection successful -- 18:47:17.002 INFO [3740]: _SERVER found -- 18:47:17.002 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 18:47:17.002 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:17.002 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:17.002 INFO [3740]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 18:47:17.002 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:17.013 INFO [3740]: COREGRADE is stopping... -- 18:47:17.013 DEBUG [3740]: Closing database connection -- 18:47:17.013 SQL [3740]: pgsql_close() -- 18:47:17.006 DEBUG [3742]: Database connection successful -- 18:47:17.006 INFO [3742]: _SERVER found -- 18:47:17.006 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 18:47:17.006 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:17.006 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:17.006 INFO [3742]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 18:47:17.006 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:17.018 INFO [3742]: COREGRADE is stopping... -- 18:47:17.018 DEBUG [3742]: Closing database connection -- 18:47:17.018 SQL [3742]: pgsql_close() -- 18:47:17.018 INFO [3738]: COREGRADE is starting... -- 18:47:17.019 INFO [3738]: Version from config: 1.0 -- 18:47:17.019 DEBUG [3738]: Connecting to database... -- 18:47:17.019 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:17.019 SQL [3738]: pgsql_db_connect() -- 18:47:17.023 DEBUG [3738]: Database connection successful -- 18:47:17.023 INFO [3738]: _SERVER found -- 18:47:17.023 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 18:47:17.023 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:17.023 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:17.023 INFO [3738]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 18:47:17.023 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:17.034 INFO [3738]: COREGRADE is stopping... -- 18:47:17.034 DEBUG [3738]: Closing database connection -- 18:47:17.034 SQL [3738]: pgsql_close() -- 18:47:17.081 INFO [3740]: COREGRADE is starting... -- 18:47:17.081 INFO [3740]: Version from config: 1.0 -- 18:47:17.081 DEBUG [3740]: Connecting to database... -- 18:47:17.081 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:17.081 SQL [3740]: pgsql_db_connect() -- 18:47:17.085 DEBUG [3740]: Database connection successful -- 18:47:17.085 INFO [3740]: _SERVER found -- 18:47:17.085 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 18:47:17.085 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:17.085 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:17.085 INFO [3740]: QUERY_STRING = /assets/js/pages/dashboard.js -- 18:47:17.085 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:17.096 INFO [3740]: COREGRADE is stopping... -- 18:47:17.096 DEBUG [3740]: Closing database connection -- 18:47:17.096 SQL [3740]: pgsql_close() -- 18:47:17.099 INFO [3742]: COREGRADE is starting... -- 18:47:17.099 INFO [3742]: Version from config: 1.0 -- 18:47:17.099 DEBUG [3742]: Connecting to database... -- 18:47:17.099 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:17.099 SQL [3742]: pgsql_db_connect() -- 18:47:17.101 INFO [3738]: COREGRADE is starting... -- 18:47:17.102 INFO [3738]: Version from config: 1.0 -- 18:47:17.102 DEBUG [3738]: Connecting to database... -- 18:47:17.102 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:17.102 SQL [3738]: pgsql_db_connect() -- 18:47:17.103 DEBUG [3742]: Database connection successful -- 18:47:17.103 INFO [3742]: _SERVER found -- 18:47:17.103 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 18:47:17.103 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:17.103 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:17.103 INFO [3742]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 18:47:17.103 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:17.115 INFO [3742]: COREGRADE is stopping... -- 18:47:17.115 DEBUG [3742]: Closing database connection -- 18:47:17.115 SQL [3742]: pgsql_close() -- 18:47:17.105 DEBUG [3738]: Database connection successful -- 18:47:17.105 INFO [3738]: _SERVER found -- 18:47:17.105 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 18:47:17.105 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:17.105 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:17.105 INFO [3738]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 18:47:17.105 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:17.117 INFO [3738]: COREGRADE is stopping... -- 18:47:17.117 DEBUG [3738]: Closing database connection -- 18:47:17.117 SQL [3738]: pgsql_close() -- 18:47:17.162 INFO [3740]: COREGRADE is starting... -- 18:47:17.163 INFO [3740]: Version from config: 1.0 -- 18:47:17.163 DEBUG [3740]: Connecting to database... -- 18:47:17.163 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:17.163 SQL [3740]: pgsql_db_connect() -- 18:47:17.166 DEBUG [3740]: Database connection successful -- 18:47:17.166 INFO [3740]: _SERVER found -- 18:47:17.166 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 18:47:17.167 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:17.167 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:17.167 INFO [3740]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 18:47:17.167 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:17.178 INFO [3740]: COREGRADE is stopping... -- 18:47:17.178 DEBUG [3740]: Closing database connection -- 18:47:17.178 SQL [3740]: pgsql_close() -- 18:47:17.183 INFO [3738]: COREGRADE is starting... -- 18:47:17.184 INFO [3738]: Version from config: 1.0 -- 18:47:17.184 DEBUG [3738]: Connecting to database... -- 18:47:17.184 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:17.184 SQL [3738]: pgsql_db_connect() -- 18:47:17.184 INFO [3742]: COREGRADE is starting... -- 18:47:17.184 INFO [3742]: Version from config: 1.0 -- 18:47:17.184 DEBUG [3742]: Connecting to database... -- 18:47:17.184 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:17.184 SQL [3742]: pgsql_db_connect() -- 18:47:17.188 DEBUG [3738]: Database connection successful -- 18:47:17.188 INFO [3738]: _SERVER found -- 18:47:17.188 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 18:47:17.188 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:17.188 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:17.188 INFO [3738]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 18:47:17.188 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:17.199 INFO [3738]: COREGRADE is stopping... -- 18:47:17.199 DEBUG [3738]: Closing database connection -- 18:47:17.199 SQL [3738]: pgsql_close() -- 18:47:17.188 DEBUG [3742]: Database connection successful -- 18:47:17.188 INFO [3742]: _SERVER found -- 18:47:17.188 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 18:47:17.188 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:17.188 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:17.188 INFO [3742]: QUERY_STRING = /assets/js/pages/picker_date.js -- 18:47:17.188 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:17.199 INFO [3742]: COREGRADE is stopping... -- 18:47:17.199 DEBUG [3742]: Closing database connection -- 18:47:17.199 SQL [3742]: pgsql_close() -- 18:47:17.243 INFO [3740]: COREGRADE is starting... -- 18:47:17.244 INFO [3740]: Version from config: 1.0 -- 18:47:17.244 DEBUG [3740]: Connecting to database... -- 18:47:17.244 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:17.244 SQL [3740]: pgsql_db_connect() -- 18:47:17.248 DEBUG [3740]: Database connection successful -- 18:47:17.248 INFO [3740]: _SERVER found -- 18:47:17.248 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 18:47:17.248 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:17.248 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:17.248 INFO [3740]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 18:47:17.248 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:17.259 INFO [3740]: COREGRADE is stopping... -- 18:47:17.259 DEBUG [3740]: Closing database connection -- 18:47:17.259 SQL [3740]: pgsql_close() -- 18:47:17.266 INFO [3738]: COREGRADE is starting... -- 18:47:17.267 INFO [3738]: Version from config: 1.0 -- 18:47:17.267 DEBUG [3738]: Connecting to database... -- 18:47:17.267 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:17.267 SQL [3738]: pgsql_db_connect() -- 18:47:17.269 INFO [3742]: COREGRADE is starting... -- 18:47:17.269 INFO [3742]: Version from config: 1.0 -- 18:47:17.269 DEBUG [3742]: Connecting to database... -- 18:47:17.270 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:17.270 SQL [3742]: pgsql_db_connect() -- 18:47:17.271 DEBUG [3738]: Database connection successful -- 18:47:17.271 INFO [3738]: _SERVER found -- 18:47:17.271 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 18:47:17.271 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:17.271 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:17.271 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 18:47:17.271 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:17.282 INFO [3738]: COREGRADE is stopping... -- 18:47:17.282 DEBUG [3738]: Closing database connection -- 18:47:17.282 SQL [3738]: pgsql_close() -- 18:47:17.273 DEBUG [3742]: Database connection successful -- 18:47:17.273 INFO [3742]: _SERVER found -- 18:47:17.273 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 18:47:17.273 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:17.273 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:17.273 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 18:47:17.273 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:17.285 INFO [3742]: COREGRADE is stopping... -- 18:47:17.285 DEBUG [3742]: Closing database connection -- 18:47:17.285 SQL [3742]: pgsql_close() -- 18:47:17.325 INFO [3740]: COREGRADE is starting... -- 18:47:17.325 INFO [3740]: Version from config: 1.0 -- 18:47:17.325 DEBUG [3740]: Connecting to database... -- 18:47:17.325 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:17.325 SQL [3740]: pgsql_db_connect() -- 18:47:17.330 DEBUG [3740]: Database connection successful -- 18:47:17.330 INFO [3740]: _SERVER found -- 18:47:17.330 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 18:47:17.330 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:17.330 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:17.330 INFO [3740]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 18:47:17.330 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:17.341 INFO [3740]: COREGRADE is stopping... -- 18:47:17.341 DEBUG [3740]: Closing database connection -- 18:47:17.341 SQL [3740]: pgsql_close() -- 18:47:17.351 INFO [3738]: COREGRADE is starting... -- 18:47:17.351 INFO [3738]: Version from config: 1.0 -- 18:47:17.351 DEBUG [3738]: Connecting to database... -- 18:47:17.351 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:17.351 SQL [3738]: pgsql_db_connect() -- 18:47:17.353 INFO [3742]: COREGRADE is starting... -- 18:47:17.353 INFO [3742]: Version from config: 1.0 -- 18:47:17.353 DEBUG [3742]: Connecting to database... -- 18:47:17.353 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:17.353 SQL [3742]: pgsql_db_connect() -- 18:47:17.355 DEBUG [3738]: Database connection successful -- 18:47:17.355 INFO [3738]: _SERVER found -- 18:47:17.355 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 18:47:17.355 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:17.355 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:17.355 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 18:47:17.355 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:17.367 INFO [3738]: COREGRADE is stopping... -- 18:47:17.367 DEBUG [3738]: Closing database connection -- 18:47:17.367 SQL [3738]: pgsql_close() -- 18:47:17.357 DEBUG [3742]: Database connection successful -- 18:47:17.357 INFO [3742]: _SERVER found -- 18:47:17.357 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 18:47:17.357 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:17.357 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:17.357 INFO [3742]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 18:47:17.357 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:17.368 INFO [3742]: COREGRADE is stopping... -- 18:47:17.368 DEBUG [3742]: Closing database connection -- 18:47:17.368 SQL [3742]: pgsql_close() -- 18:47:17.407 INFO [3740]: COREGRADE is starting... -- 18:47:17.407 INFO [3740]: Version from config: 1.0 -- 18:47:17.407 DEBUG [3740]: Connecting to database... -- 18:47:17.407 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:17.407 SQL [3740]: pgsql_db_connect() -- 18:47:17.411 DEBUG [3740]: Database connection successful -- 18:47:17.411 INFO [3740]: _SERVER found -- 18:47:17.411 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 18:47:17.411 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:17.411 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:17.411 INFO [3740]: QUERY_STRING = /assets/customjs/general.js -- 18:47:17.411 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:17.422 INFO [3740]: COREGRADE is stopping... -- 18:47:17.422 DEBUG [3740]: Closing database connection -- 18:47:17.422 SQL [3740]: pgsql_close() -- 18:47:17.436 INFO [3742]: COREGRADE is starting... -- 18:47:17.437 INFO [3742]: Version from config: 1.0 -- 18:47:17.437 DEBUG [3742]: Connecting to database... -- 18:47:17.437 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:17.437 SQL [3742]: pgsql_db_connect() -- 18:47:17.440 DEBUG [3742]: Database connection successful -- 18:47:17.440 INFO [3742]: _SERVER found -- 18:47:17.440 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 18:47:17.440 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:17.440 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:17.440 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 18:47:17.440 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:17.452 INFO [3742]: COREGRADE is stopping... -- 18:47:17.452 DEBUG [3742]: Closing database connection -- 18:47:17.452 SQL [3742]: pgsql_close() -- 18:47:17.520 INFO [3742]: COREGRADE is starting... -- 18:47:17.520 INFO [3742]: Version from config: 1.0 -- 18:47:17.520 DEBUG [3742]: Connecting to database... -- 18:47:17.520 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:17.520 SQL [3742]: pgsql_db_connect() -- 18:47:17.525 DEBUG [3742]: Database connection successful -- 18:47:17.525 INFO [3742]: _SERVER found -- 18:47:17.525 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 18:47:17.525 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:17.525 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:17.525 INFO [3742]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 18:47:17.525 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:17.536 INFO [3742]: COREGRADE is stopping... -- 18:47:17.536 DEBUG [3742]: Closing database connection -- 18:47:17.536 SQL [3742]: pgsql_close() -- 18:47:17.605 INFO [3742]: COREGRADE is starting... -- 18:47:17.605 INFO [3742]: Version from config: 1.0 -- 18:47:17.605 DEBUG [3742]: Connecting to database... -- 18:47:17.606 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:17.606 SQL [3742]: pgsql_db_connect() -- 18:47:17.609 DEBUG [3742]: Database connection successful -- 18:47:17.609 INFO [3742]: _SERVER found -- 18:47:17.609 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 18:47:17.609 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:17.609 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:17.609 INFO [3742]: QUERY_STRING = /assets/js/pages/dashboard.js -- 18:47:17.609 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:17.621 INFO [3742]: COREGRADE is stopping... -- 18:47:17.621 DEBUG [3742]: Closing database connection -- 18:47:17.621 SQL [3742]: pgsql_close() -- 18:47:17.690 INFO [3742]: COREGRADE is starting... -- 18:47:17.690 INFO [3742]: Version from config: 1.0 -- 18:47:17.690 DEBUG [3742]: Connecting to database... -- 18:47:17.690 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:17.690 SQL [3742]: pgsql_db_connect() -- 18:47:17.694 DEBUG [3742]: Database connection successful -- 18:47:17.694 INFO [3742]: _SERVER found -- 18:47:17.694 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 18:47:17.694 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:17.694 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:17.694 INFO [3742]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 18:47:17.694 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:17.706 INFO [3742]: COREGRADE is stopping... -- 18:47:17.706 DEBUG [3742]: Closing database connection -- 18:47:17.706 SQL [3742]: pgsql_close() -- 18:47:17.774 INFO [3742]: COREGRADE is starting... -- 18:47:17.774 INFO [3742]: Version from config: 1.0 -- 18:47:17.774 DEBUG [3742]: Connecting to database... -- 18:47:17.774 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:17.774 SQL [3742]: pgsql_db_connect() -- 18:47:17.778 DEBUG [3742]: Database connection successful -- 18:47:17.778 INFO [3742]: _SERVER found -- 18:47:17.778 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 18:47:17.778 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:17.778 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:17.778 INFO [3742]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 18:47:17.778 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:17.790 INFO [3742]: COREGRADE is stopping... -- 18:47:17.790 DEBUG [3742]: Closing database connection -- 18:47:17.790 SQL [3742]: pgsql_close() -- 18:47:17.858 INFO [3742]: COREGRADE is starting... -- 18:47:17.858 INFO [3742]: Version from config: 1.0 -- 18:47:17.858 DEBUG [3742]: Connecting to database... -- 18:47:17.858 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:17.858 SQL [3742]: pgsql_db_connect() -- 18:47:17.862 DEBUG [3742]: Database connection successful -- 18:47:17.862 INFO [3742]: _SERVER found -- 18:47:17.862 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 18:47:17.862 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:17.862 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:17.862 INFO [3742]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 18:47:17.862 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:17.874 INFO [3742]: COREGRADE is stopping... -- 18:47:17.874 DEBUG [3742]: Closing database connection -- 18:47:17.874 SQL [3742]: pgsql_close() -- 18:47:17.942 INFO [3742]: COREGRADE is starting... -- 18:47:17.943 INFO [3742]: Version from config: 1.0 -- 18:47:17.943 DEBUG [3742]: Connecting to database... -- 18:47:17.943 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:17.943 SQL [3742]: pgsql_db_connect() -- 18:47:17.947 DEBUG [3742]: Database connection successful -- 18:47:17.947 INFO [3742]: _SERVER found -- 18:47:17.947 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 18:47:17.947 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:17.947 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:17.947 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 18:47:17.947 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:17.958 INFO [3742]: COREGRADE is stopping... -- 18:47:17.958 DEBUG [3742]: Closing database connection -- 18:47:17.958 SQL [3742]: pgsql_close() -- 18:47:18.027 INFO [3742]: COREGRADE is starting... -- 18:47:18.028 INFO [3742]: Version from config: 1.0 -- 18:47:18.028 DEBUG [3742]: Connecting to database... -- 18:47:18.028 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:18.028 SQL [3742]: pgsql_db_connect() -- 18:47:18.032 DEBUG [3742]: Database connection successful -- 18:47:18.032 INFO [3742]: _SERVER found -- 18:47:18.032 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 18:47:18.032 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:18.032 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:18.032 INFO [3742]: QUERY_STRING = /assets/js/pages/picker_date.js -- 18:47:18.032 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:18.043 INFO [3742]: COREGRADE is stopping... -- 18:47:18.043 DEBUG [3742]: Closing database connection -- 18:47:18.043 SQL [3742]: pgsql_close() -- 18:47:18.112 INFO [3742]: COREGRADE is starting... -- 18:47:18.112 INFO [3742]: Version from config: 1.0 -- 18:47:18.112 DEBUG [3742]: Connecting to database... -- 18:47:18.112 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:18.112 SQL [3742]: pgsql_db_connect() -- 18:47:18.116 DEBUG [3742]: Database connection successful -- 18:47:18.116 INFO [3742]: _SERVER found -- 18:47:18.116 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 18:47:18.116 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:18.116 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:18.116 INFO [3742]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 18:47:18.116 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:18.128 INFO [3742]: COREGRADE is stopping... -- 18:47:18.128 DEBUG [3742]: Closing database connection -- 18:47:18.128 SQL [3742]: pgsql_close() -- 18:47:18.196 INFO [3742]: COREGRADE is starting... -- 18:47:18.196 INFO [3742]: Version from config: 1.0 -- 18:47:18.196 DEBUG [3742]: Connecting to database... -- 18:47:18.196 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:18.196 SQL [3742]: pgsql_db_connect() -- 18:47:18.200 DEBUG [3742]: Database connection successful -- 18:47:18.200 INFO [3742]: _SERVER found -- 18:47:18.200 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 18:47:18.200 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:18.200 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:18.200 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 18:47:18.200 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:18.212 INFO [3742]: COREGRADE is stopping... -- 18:47:18.212 DEBUG [3742]: Closing database connection -- 18:47:18.212 SQL [3742]: pgsql_close() -- 18:47:18.281 INFO [3742]: COREGRADE is starting... -- 18:47:18.281 INFO [3742]: Version from config: 1.0 -- 18:47:18.281 DEBUG [3742]: Connecting to database... -- 18:47:18.281 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:18.281 SQL [3742]: pgsql_db_connect() -- 18:47:18.285 DEBUG [3742]: Database connection successful -- 18:47:18.285 INFO [3742]: _SERVER found -- 18:47:18.285 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 18:47:18.285 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:18.285 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:18.285 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 18:47:18.285 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:18.297 INFO [3742]: COREGRADE is stopping... -- 18:47:18.297 DEBUG [3742]: Closing database connection -- 18:47:18.297 SQL [3742]: pgsql_close() -- 18:47:18.365 INFO [3742]: COREGRADE is starting... -- 18:47:18.365 INFO [3742]: Version from config: 1.0 -- 18:47:18.365 DEBUG [3742]: Connecting to database... -- 18:47:18.365 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:18.365 SQL [3742]: pgsql_db_connect() -- 18:47:18.369 DEBUG [3742]: Database connection successful -- 18:47:18.369 INFO [3742]: _SERVER found -- 18:47:18.369 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 18:47:18.369 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:18.369 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:18.369 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 18:47:18.369 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:18.381 INFO [3742]: COREGRADE is stopping... -- 18:47:18.381 DEBUG [3742]: Closing database connection -- 18:47:18.381 SQL [3742]: pgsql_close() -- 18:47:18.449 INFO [3742]: COREGRADE is starting... -- 18:47:18.449 INFO [3742]: Version from config: 1.0 -- 18:47:18.449 DEBUG [3742]: Connecting to database... -- 18:47:18.449 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:18.449 SQL [3742]: pgsql_db_connect() -- 18:47:18.453 DEBUG [3742]: Database connection successful -- 18:47:18.453 INFO [3742]: _SERVER found -- 18:47:18.453 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 18:47:18.453 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:18.453 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:18.453 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 18:47:18.453 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:18.464 INFO [3742]: COREGRADE is stopping... -- 18:47:18.464 DEBUG [3742]: Closing database connection -- 18:47:18.464 SQL [3742]: pgsql_close() -- 18:47:18.543 INFO [3742]: COREGRADE is starting... -- 18:47:18.543 INFO [3742]: Version from config: 1.0 -- 18:47:18.543 DEBUG [3742]: Connecting to database... -- 18:47:18.543 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:18.543 SQL [3742]: pgsql_db_connect() -- 18:47:18.547 DEBUG [3742]: Database connection successful -- 18:47:18.547 INFO [3742]: _SERVER found -- 18:47:18.547 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 18:47:18.547 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:18.547 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:18.547 INFO [3742]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 18:47:18.547 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:18.559 INFO [3742]: COREGRADE is stopping... -- 18:47:18.559 DEBUG [3742]: Closing database connection -- 18:47:18.559 SQL [3742]: pgsql_close() -- 18:47:18.627 INFO [3742]: COREGRADE is starting... -- 18:47:18.627 INFO [3742]: Version from config: 1.0 -- 18:47:18.627 DEBUG [3742]: Connecting to database... -- 18:47:18.627 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:18.627 SQL [3742]: pgsql_db_connect() -- 18:47:18.631 DEBUG [3742]: Database connection successful -- 18:47:18.631 INFO [3742]: _SERVER found -- 18:47:18.631 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 18:47:18.631 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:18.631 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:18.631 INFO [3742]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 18:47:18.631 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:18.643 INFO [3742]: COREGRADE is stopping... -- 18:47:18.643 DEBUG [3742]: Closing database connection -- 18:47:18.643 SQL [3742]: pgsql_close() -- 18:47:18.713 INFO [3742]: COREGRADE is starting... -- 18:47:18.713 INFO [3742]: Version from config: 1.0 -- 18:47:18.713 DEBUG [3742]: Connecting to database... -- 18:47:18.713 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:47:18.713 SQL [3742]: pgsql_db_connect() -- 18:47:18.717 DEBUG [3742]: Database connection successful -- 18:47:18.717 INFO [3742]: _SERVER found -- 18:47:18.717 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 18:47:18.717 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 18:47:18.717 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 18:47:18.717 INFO [3742]: QUERY_STRING = /assets/customjs/general.js -- 18:47:18.717 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 18:47:18.728 INFO [3742]: COREGRADE is stopping... -- 18:47:18.728 DEBUG [3742]: Closing database connection -- 18:47:18.728 SQL [3742]: pgsql_close() -- 19:07:18.951 INFO [3800]: COREGRADE is starting... -- 19:07:18.952 INFO [3800]: Version from config: 1.0 -- 19:07:18.952 DEBUG [3800]: Connecting to database... -- 19:07:18.952 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:18.952 SQL [3800]: pgsql_db_connect() -- 19:07:18.957 DEBUG [3800]: Database connection successful -- 19:07:18.957 INFO [3800]: _SERVER found -- 19:07:18.957 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 19:07:18.957 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:18.957 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=on8ebspl19lrceukqr74qhkmqps1i0p2 -- 19:07:18.957 INFO [3800]: QUERY_STRING = /logout -- 19:07:18.957 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:18.994 INFO [3800]: COREGRADE is stopping... -- 19:07:18.994 DEBUG [3800]: Closing database connection -- 19:07:18.994 SQL [3800]: pgsql_close() -- 19:07:19.075 INFO [3800]: COREGRADE is starting... -- 19:07:19.075 INFO [3800]: Version from config: 1.0 -- 19:07:19.075 DEBUG [3800]: Connecting to database... -- 19:07:19.075 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:19.075 SQL [3800]: pgsql_db_connect() -- 19:07:19.080 DEBUG [3800]: Database connection successful -- 19:07:19.080 INFO [3800]: _SERVER found -- 19:07:19.080 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 19:07:19.080 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:19.080 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:19.080 INFO [3800]: QUERY_STRING = /start -- 19:07:19.080 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:19.123 INFO [3800]: COREGRADE is stopping... -- 19:07:19.123 DEBUG [3800]: Closing database connection -- 19:07:19.123 SQL [3800]: pgsql_close() -- 19:07:19.248 INFO [3800]: COREGRADE is starting... -- 19:07:19.248 INFO [3800]: Version from config: 1.0 -- 19:07:19.248 DEBUG [3800]: Connecting to database... -- 19:07:19.248 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:19.248 SQL [3800]: pgsql_db_connect() -- 19:07:19.253 DEBUG [3800]: Database connection successful -- 19:07:19.253 INFO [3800]: _SERVER found -- 19:07:19.253 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 19:07:19.253 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:19.253 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:19.253 INFO [3800]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 19:07:19.253 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:19.265 INFO [3800]: COREGRADE is stopping... -- 19:07:19.265 DEBUG [3800]: Closing database connection -- 19:07:19.265 SQL [3800]: pgsql_close() -- 19:07:19.272 INFO [3800]: COREGRADE is starting... -- 19:07:19.273 INFO [3800]: Version from config: 1.0 -- 19:07:19.273 DEBUG [3800]: Connecting to database... -- 19:07:19.273 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:19.273 SQL [3800]: pgsql_db_connect() -- 19:07:19.277 DEBUG [3800]: Database connection successful -- 19:07:19.277 INFO [3800]: _SERVER found -- 19:07:19.277 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 19:07:19.277 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:19.277 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:19.277 INFO [3800]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 19:07:19.277 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:19.289 INFO [3800]: COREGRADE is stopping... -- 19:07:19.289 DEBUG [3800]: Closing database connection -- 19:07:19.289 SQL [3800]: pgsql_close() -- 19:07:19.324 INFO [3800]: COREGRADE is starting... -- 19:07:19.324 INFO [3800]: Version from config: 1.0 -- 19:07:19.324 DEBUG [3800]: Connecting to database... -- 19:07:19.324 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:19.324 SQL [3800]: pgsql_db_connect() -- 19:07:19.329 DEBUG [3800]: Database connection successful -- 19:07:19.329 INFO [3800]: _SERVER found -- 19:07:19.329 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 19:07:19.329 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:19.329 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:19.329 INFO [3800]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 19:07:19.329 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:19.341 INFO [3800]: COREGRADE is stopping... -- 19:07:19.341 DEBUG [3800]: Closing database connection -- 19:07:19.341 SQL [3800]: pgsql_close() -- 19:07:19.345 INFO [3800]: COREGRADE is starting... -- 19:07:19.346 INFO [3800]: Version from config: 1.0 -- 19:07:19.346 DEBUG [3800]: Connecting to database... -- 19:07:19.346 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:19.346 SQL [3800]: pgsql_db_connect() -- 19:07:19.357 INFO [3741]: COREGRADE is starting... -- 19:07:19.358 INFO [3741]: Version from config: 1.0 -- 19:07:19.358 DEBUG [3741]: Connecting to database... -- 19:07:19.358 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:19.358 SQL [3741]: pgsql_db_connect() -- 19:07:19.350 DEBUG [3800]: Database connection successful -- 19:07:19.350 INFO [3800]: _SERVER found -- 19:07:19.350 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 19:07:19.350 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:19.350 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:19.350 INFO [3800]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 19:07:19.350 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:19.362 INFO [3800]: COREGRADE is stopping... -- 19:07:19.362 DEBUG [3800]: Closing database connection -- 19:07:19.362 SQL [3800]: pgsql_close() -- 19:07:19.362 DEBUG [3741]: Database connection successful -- 19:07:19.362 INFO [3741]: _SERVER found -- 19:07:19.362 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 19:07:19.362 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:19.362 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:19.362 INFO [3741]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 19:07:19.362 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:19.376 INFO [3741]: COREGRADE is stopping... -- 19:07:19.376 DEBUG [3741]: Closing database connection -- 19:07:19.376 SQL [3741]: pgsql_close() -- 19:07:19.426 INFO [3741]: COREGRADE is starting... -- 19:07:19.426 INFO [3741]: Version from config: 1.0 -- 19:07:19.426 DEBUG [3741]: Connecting to database... -- 19:07:19.426 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:19.426 SQL [3741]: pgsql_db_connect() -- 19:07:19.441 INFO [3800]: COREGRADE is starting... -- 19:07:19.442 INFO [3800]: Version from config: 1.0 -- 19:07:19.442 DEBUG [3800]: Connecting to database... -- 19:07:19.442 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:19.442 SQL [3800]: pgsql_db_connect() -- 19:07:19.431 DEBUG [3741]: Database connection successful -- 19:07:19.431 INFO [3741]: _SERVER found -- 19:07:19.431 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 19:07:19.431 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:19.431 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:19.431 INFO [3741]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 19:07:19.431 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:19.442 INFO [3741]: COREGRADE is stopping... -- 19:07:19.442 DEBUG [3741]: Closing database connection -- 19:07:19.442 SQL [3741]: pgsql_close() -- 19:07:19.445 INFO [3829]: COREGRADE is starting... -- 19:07:19.445 INFO [3829]: Version from config: 1.0 -- 19:07:19.445 DEBUG [3829]: Connecting to database... -- 19:07:19.445 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:19.445 SQL [3829]: pgsql_db_connect() -- 19:07:19.447 DEBUG [3800]: Database connection successful -- 19:07:19.447 INFO [3800]: _SERVER found -- 19:07:19.447 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 19:07:19.447 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:19.447 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:19.447 INFO [3800]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 19:07:19.447 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:19.459 INFO [3800]: COREGRADE is stopping... -- 19:07:19.459 DEBUG [3800]: Closing database connection -- 19:07:19.459 SQL [3800]: pgsql_close() -- 19:07:19.449 DEBUG [3829]: Database connection successful -- 19:07:19.449 INFO [3829]: _SERVER found -- 19:07:19.449 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 19:07:19.449 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:19.449 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:19.449 INFO [3829]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 19:07:19.449 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:19.463 INFO [3829]: COREGRADE is stopping... -- 19:07:19.463 DEBUG [3829]: Closing database connection -- 19:07:19.463 SQL [3829]: pgsql_close() -- 19:07:19.525 INFO [3829]: COREGRADE is starting... -- 19:07:19.525 INFO [3829]: Version from config: 1.0 -- 19:07:19.525 DEBUG [3829]: Connecting to database... -- 19:07:19.525 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:19.525 SQL [3829]: pgsql_db_connect() -- 19:07:19.531 INFO [3800]: COREGRADE is starting... -- 19:07:19.531 INFO [3800]: Version from config: 1.0 -- 19:07:19.531 DEBUG [3800]: Connecting to database... -- 19:07:19.531 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:19.531 SQL [3800]: pgsql_db_connect() -- 19:07:19.539 INFO [3741]: COREGRADE is starting... -- 19:07:19.539 INFO [3741]: Version from config: 1.0 -- 19:07:19.539 DEBUG [3741]: Connecting to database... -- 19:07:19.539 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:19.539 SQL [3741]: pgsql_db_connect() -- 19:07:19.530 DEBUG [3829]: Database connection successful -- 19:07:19.530 INFO [3829]: _SERVER found -- 19:07:19.530 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 19:07:19.530 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:19.530 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:19.530 INFO [3829]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 19:07:19.530 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:19.542 INFO [3829]: COREGRADE is stopping... -- 19:07:19.542 DEBUG [3829]: Closing database connection -- 19:07:19.542 SQL [3829]: pgsql_close() -- 19:07:19.535 DEBUG [3800]: Database connection successful -- 19:07:19.535 INFO [3800]: _SERVER found -- 19:07:19.535 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 19:07:19.535 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:19.535 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:19.535 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 19:07:19.535 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:19.548 INFO [3800]: COREGRADE is stopping... -- 19:07:19.548 DEBUG [3800]: Closing database connection -- 19:07:19.548 SQL [3800]: pgsql_close() -- 19:07:19.544 DEBUG [3741]: Database connection successful -- 19:07:19.544 INFO [3741]: _SERVER found -- 19:07:19.544 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 19:07:19.544 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:19.544 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:19.544 INFO [3741]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 19:07:19.544 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:19.556 INFO [3741]: COREGRADE is stopping... -- 19:07:19.556 DEBUG [3741]: Closing database connection -- 19:07:19.556 SQL [3741]: pgsql_close() -- 19:07:19.618 INFO [3741]: COREGRADE is starting... -- 19:07:19.618 INFO [3741]: Version from config: 1.0 -- 19:07:19.618 DEBUG [3741]: Connecting to database... -- 19:07:19.618 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:19.618 SQL [3741]: pgsql_db_connect() -- 19:07:19.625 INFO [3800]: COREGRADE is starting... -- 19:07:19.626 INFO [3800]: Version from config: 1.0 -- 19:07:19.626 DEBUG [3800]: Connecting to database... -- 19:07:19.626 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:19.626 SQL [3800]: pgsql_db_connect() -- 19:07:19.626 INFO [3829]: COREGRADE is starting... -- 19:07:19.626 INFO [3829]: Version from config: 1.0 -- 19:07:19.626 DEBUG [3829]: Connecting to database... -- 19:07:19.626 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:19.626 SQL [3829]: pgsql_db_connect() -- 19:07:19.623 DEBUG [3741]: Database connection successful -- 19:07:19.623 INFO [3741]: _SERVER found -- 19:07:19.623 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 19:07:19.623 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:19.623 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:19.623 INFO [3741]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 19:07:19.623 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:19.634 INFO [3741]: COREGRADE is stopping... -- 19:07:19.634 DEBUG [3741]: Closing database connection -- 19:07:19.634 SQL [3741]: pgsql_close() -- 19:07:19.630 DEBUG [3800]: Database connection successful -- 19:07:19.630 INFO [3800]: _SERVER found -- 19:07:19.630 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 19:07:19.630 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:19.630 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:19.630 INFO [3800]: QUERY_STRING = /assets/js/pages/dashboard.js -- 19:07:19.630 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:19.642 INFO [3800]: COREGRADE is stopping... -- 19:07:19.642 DEBUG [3800]: Closing database connection -- 19:07:19.642 SQL [3800]: pgsql_close() -- 19:07:19.631 DEBUG [3829]: Database connection successful -- 19:07:19.631 INFO [3829]: _SERVER found -- 19:07:19.631 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 19:07:19.631 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:19.631 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:19.631 INFO [3829]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 19:07:19.631 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:19.642 INFO [3829]: COREGRADE is stopping... -- 19:07:19.642 DEBUG [3829]: Closing database connection -- 19:07:19.642 SQL [3829]: pgsql_close() -- 19:07:19.704 INFO [3829]: COREGRADE is starting... -- 19:07:19.704 INFO [3829]: Version from config: 1.0 -- 19:07:19.704 DEBUG [3829]: Connecting to database... -- 19:07:19.704 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:19.704 SQL [3829]: pgsql_db_connect() -- 19:07:19.711 INFO [3800]: COREGRADE is starting... -- 19:07:19.712 INFO [3800]: Version from config: 1.0 -- 19:07:19.712 DEBUG [3800]: Connecting to database... -- 19:07:19.712 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:19.712 SQL [3800]: pgsql_db_connect() -- 19:07:19.716 INFO [3741]: COREGRADE is starting... -- 19:07:19.716 INFO [3741]: Version from config: 1.0 -- 19:07:19.716 DEBUG [3741]: Connecting to database... -- 19:07:19.716 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:19.716 SQL [3741]: pgsql_db_connect() -- 19:07:19.709 DEBUG [3829]: Database connection successful -- 19:07:19.709 INFO [3829]: _SERVER found -- 19:07:19.709 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 19:07:19.709 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:19.709 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:19.709 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 19:07:19.709 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:19.721 INFO [3829]: COREGRADE is stopping... -- 19:07:19.721 DEBUG [3829]: Closing database connection -- 19:07:19.721 SQL [3829]: pgsql_close() -- 19:07:19.716 DEBUG [3800]: Database connection successful -- 19:07:19.716 INFO [3800]: _SERVER found -- 19:07:19.716 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 19:07:19.716 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:19.716 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:19.716 INFO [3800]: QUERY_STRING = /assets/js/pages/picker_date.js -- 19:07:19.716 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:19.728 INFO [3800]: COREGRADE is stopping... -- 19:07:19.728 DEBUG [3800]: Closing database connection -- 19:07:19.728 SQL [3800]: pgsql_close() -- 19:07:19.720 DEBUG [3741]: Database connection successful -- 19:07:19.720 INFO [3741]: _SERVER found -- 19:07:19.720 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 19:07:19.720 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:19.720 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:19.720 INFO [3741]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 19:07:19.720 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:19.732 INFO [3741]: COREGRADE is stopping... -- 19:07:19.732 DEBUG [3741]: Closing database connection -- 19:07:19.732 SQL [3741]: pgsql_close() -- 19:07:19.789 INFO [3741]: COREGRADE is starting... -- 19:07:19.790 INFO [3741]: Version from config: 1.0 -- 19:07:19.790 DEBUG [3741]: Connecting to database... -- 19:07:19.790 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:19.790 SQL [3741]: pgsql_db_connect() -- 19:07:19.796 INFO [3800]: COREGRADE is starting... -- 19:07:19.796 INFO [3800]: Version from config: 1.0 -- 19:07:19.796 DEBUG [3800]: Connecting to database... -- 19:07:19.796 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:19.796 SQL [3800]: pgsql_db_connect() -- 19:07:19.804 INFO [3829]: COREGRADE is starting... -- 19:07:19.804 INFO [3829]: Version from config: 1.0 -- 19:07:19.804 DEBUG [3829]: Connecting to database... -- 19:07:19.804 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:19.804 SQL [3829]: pgsql_db_connect() -- 19:07:19.794 DEBUG [3741]: Database connection successful -- 19:07:19.794 INFO [3741]: _SERVER found -- 19:07:19.794 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 19:07:19.794 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:19.794 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:19.794 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 19:07:19.794 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:19.806 INFO [3741]: COREGRADE is stopping... -- 19:07:19.806 DEBUG [3741]: Closing database connection -- 19:07:19.806 SQL [3741]: pgsql_close() -- 19:07:19.801 DEBUG [3800]: Database connection successful -- 19:07:19.801 INFO [3800]: _SERVER found -- 19:07:19.801 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 19:07:19.801 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:19.801 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:19.801 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 19:07:19.801 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:19.813 INFO [3800]: COREGRADE is stopping... -- 19:07:19.813 DEBUG [3800]: Closing database connection -- 19:07:19.813 SQL [3800]: pgsql_close() -- 19:07:19.809 DEBUG [3829]: Database connection successful -- 19:07:19.809 INFO [3829]: _SERVER found -- 19:07:19.809 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 19:07:19.809 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:19.809 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:19.809 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 19:07:19.809 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:19.821 INFO [3829]: COREGRADE is stopping... -- 19:07:19.821 DEBUG [3829]: Closing database connection -- 19:07:19.821 SQL [3829]: pgsql_close() -- 19:07:19.875 INFO [3829]: COREGRADE is starting... -- 19:07:19.875 INFO [3829]: Version from config: 1.0 -- 19:07:19.875 DEBUG [3829]: Connecting to database... -- 19:07:19.875 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:19.875 SQL [3829]: pgsql_db_connect() -- 19:07:19.881 INFO [3800]: COREGRADE is starting... -- 19:07:19.881 INFO [3800]: Version from config: 1.0 -- 19:07:19.881 DEBUG [3800]: Connecting to database... -- 19:07:19.881 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:19.881 SQL [3800]: pgsql_db_connect() -- 19:07:19.879 DEBUG [3829]: Database connection successful -- 19:07:19.879 INFO [3829]: _SERVER found -- 19:07:19.879 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 19:07:19.879 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:19.879 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:19.879 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 19:07:19.879 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:19.891 INFO [3829]: COREGRADE is stopping... -- 19:07:19.891 DEBUG [3829]: Closing database connection -- 19:07:19.891 SQL [3829]: pgsql_close() -- 19:07:19.893 INFO [3741]: COREGRADE is starting... -- 19:07:19.893 INFO [3741]: Version from config: 1.0 -- 19:07:19.893 DEBUG [3741]: Connecting to database... -- 19:07:19.893 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:19.893 SQL [3741]: pgsql_db_connect() -- 19:07:19.886 DEBUG [3800]: Database connection successful -- 19:07:19.886 INFO [3800]: _SERVER found -- 19:07:19.886 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 19:07:19.886 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:19.886 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:19.886 INFO [3800]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 19:07:19.886 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:19.898 INFO [3800]: COREGRADE is stopping... -- 19:07:19.898 DEBUG [3800]: Closing database connection -- 19:07:19.898 SQL [3800]: pgsql_close() -- 19:07:19.898 DEBUG [3741]: Database connection successful -- 19:07:19.898 INFO [3741]: _SERVER found -- 19:07:19.898 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 19:07:19.898 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:19.898 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:19.898 INFO [3741]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 19:07:19.898 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:19.909 INFO [3741]: COREGRADE is stopping... -- 19:07:19.909 DEBUG [3741]: Closing database connection -- 19:07:19.909 SQL [3741]: pgsql_close() -- 19:07:19.959 INFO [3741]: COREGRADE is starting... -- 19:07:19.959 INFO [3741]: Version from config: 1.0 -- 19:07:19.959 DEBUG [3741]: Connecting to database... -- 19:07:19.959 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:19.959 SQL [3741]: pgsql_db_connect() -- 19:07:19.966 INFO [3800]: COREGRADE is starting... -- 19:07:19.966 INFO [3800]: Version from config: 1.0 -- 19:07:19.966 DEBUG [3800]: Connecting to database... -- 19:07:19.966 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:19.966 SQL [3800]: pgsql_db_connect() -- 19:07:19.964 DEBUG [3741]: Database connection successful -- 19:07:19.964 INFO [3741]: _SERVER found -- 19:07:19.964 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 19:07:19.964 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:19.964 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:19.964 INFO [3741]: QUERY_STRING = /assets/customjs/general.js -- 19:07:19.964 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:19.976 INFO [3741]: COREGRADE is stopping... -- 19:07:19.976 DEBUG [3741]: Closing database connection -- 19:07:19.976 SQL [3741]: pgsql_close() -- 19:07:19.971 DEBUG [3800]: Database connection successful -- 19:07:19.971 INFO [3800]: _SERVER found -- 19:07:19.971 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 19:07:19.971 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:19.971 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:19.971 INFO [3800]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 19:07:19.971 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:19.982 INFO [3800]: COREGRADE is stopping... -- 19:07:19.982 DEBUG [3800]: Closing database connection -- 19:07:19.983 SQL [3800]: pgsql_close() -- 19:07:20.051 INFO [3800]: COREGRADE is starting... -- 19:07:20.051 INFO [3800]: Version from config: 1.0 -- 19:07:20.051 DEBUG [3800]: Connecting to database... -- 19:07:20.051 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:20.051 SQL [3800]: pgsql_db_connect() -- 19:07:20.056 DEBUG [3800]: Database connection successful -- 19:07:20.056 INFO [3800]: _SERVER found -- 19:07:20.056 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 19:07:20.056 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:20.056 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:20.056 INFO [3800]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 19:07:20.056 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:20.068 INFO [3800]: COREGRADE is stopping... -- 19:07:20.068 DEBUG [3800]: Closing database connection -- 19:07:20.068 SQL [3800]: pgsql_close() -- 19:07:20.137 INFO [3800]: COREGRADE is starting... -- 19:07:20.137 INFO [3800]: Version from config: 1.0 -- 19:07:20.137 DEBUG [3800]: Connecting to database... -- 19:07:20.137 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:20.137 SQL [3800]: pgsql_db_connect() -- 19:07:20.142 DEBUG [3800]: Database connection successful -- 19:07:20.142 INFO [3800]: _SERVER found -- 19:07:20.142 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 19:07:20.142 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:20.142 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:20.142 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 19:07:20.142 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:20.153 INFO [3800]: COREGRADE is stopping... -- 19:07:20.153 DEBUG [3800]: Closing database connection -- 19:07:20.153 SQL [3800]: pgsql_close() -- 19:07:20.222 INFO [3800]: COREGRADE is starting... -- 19:07:20.222 INFO [3800]: Version from config: 1.0 -- 19:07:20.222 DEBUG [3800]: Connecting to database... -- 19:07:20.222 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:20.222 SQL [3800]: pgsql_db_connect() -- 19:07:20.227 DEBUG [3800]: Database connection successful -- 19:07:20.227 INFO [3800]: _SERVER found -- 19:07:20.227 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 19:07:20.227 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:20.227 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:20.227 INFO [3800]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 19:07:20.227 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:20.238 INFO [3800]: COREGRADE is stopping... -- 19:07:20.238 DEBUG [3800]: Closing database connection -- 19:07:20.238 SQL [3800]: pgsql_close() -- 19:07:20.307 INFO [3800]: COREGRADE is starting... -- 19:07:20.308 INFO [3800]: Version from config: 1.0 -- 19:07:20.308 DEBUG [3800]: Connecting to database... -- 19:07:20.308 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:20.308 SQL [3800]: pgsql_db_connect() -- 19:07:20.312 DEBUG [3800]: Database connection successful -- 19:07:20.312 INFO [3800]: _SERVER found -- 19:07:20.312 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 19:07:20.312 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:20.312 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:20.312 INFO [3800]: QUERY_STRING = /assets/js/pages/dashboard.js -- 19:07:20.312 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:20.324 INFO [3800]: COREGRADE is stopping... -- 19:07:20.324 DEBUG [3800]: Closing database connection -- 19:07:20.324 SQL [3800]: pgsql_close() -- 19:07:20.394 INFO [3800]: COREGRADE is starting... -- 19:07:20.394 INFO [3800]: Version from config: 1.0 -- 19:07:20.394 DEBUG [3800]: Connecting to database... -- 19:07:20.394 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:20.394 SQL [3800]: pgsql_db_connect() -- 19:07:20.399 DEBUG [3800]: Database connection successful -- 19:07:20.399 INFO [3800]: _SERVER found -- 19:07:20.399 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 19:07:20.399 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:20.399 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:20.399 INFO [3800]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 19:07:20.399 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:20.411 INFO [3800]: COREGRADE is stopping... -- 19:07:20.411 DEBUG [3800]: Closing database connection -- 19:07:20.411 SQL [3800]: pgsql_close() -- 19:07:20.479 INFO [3800]: COREGRADE is starting... -- 19:07:20.479 INFO [3800]: Version from config: 1.0 -- 19:07:20.480 DEBUG [3800]: Connecting to database... -- 19:07:20.480 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:20.480 SQL [3800]: pgsql_db_connect() -- 19:07:20.485 DEBUG [3800]: Database connection successful -- 19:07:20.485 INFO [3800]: _SERVER found -- 19:07:20.485 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 19:07:20.485 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:20.485 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:20.485 INFO [3800]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 19:07:20.485 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:20.497 INFO [3800]: COREGRADE is stopping... -- 19:07:20.497 DEBUG [3800]: Closing database connection -- 19:07:20.497 SQL [3800]: pgsql_close() -- 19:07:20.566 INFO [3800]: COREGRADE is starting... -- 19:07:20.566 INFO [3800]: Version from config: 1.0 -- 19:07:20.566 DEBUG [3800]: Connecting to database... -- 19:07:20.566 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:20.566 SQL [3800]: pgsql_db_connect() -- 19:07:20.571 DEBUG [3800]: Database connection successful -- 19:07:20.571 INFO [3800]: _SERVER found -- 19:07:20.571 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 19:07:20.571 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:20.571 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:20.571 INFO [3800]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 19:07:20.571 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:20.582 INFO [3800]: COREGRADE is stopping... -- 19:07:20.582 DEBUG [3800]: Closing database connection -- 19:07:20.582 SQL [3800]: pgsql_close() -- 19:07:20.651 INFO [3800]: COREGRADE is starting... -- 19:07:20.651 INFO [3800]: Version from config: 1.0 -- 19:07:20.651 DEBUG [3800]: Connecting to database... -- 19:07:20.651 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:20.651 SQL [3800]: pgsql_db_connect() -- 19:07:20.656 DEBUG [3800]: Database connection successful -- 19:07:20.656 INFO [3800]: _SERVER found -- 19:07:20.656 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 19:07:20.656 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:20.656 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:20.656 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 19:07:20.656 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:20.668 INFO [3800]: COREGRADE is stopping... -- 19:07:20.668 DEBUG [3800]: Closing database connection -- 19:07:20.668 SQL [3800]: pgsql_close() -- 19:07:20.737 INFO [3800]: COREGRADE is starting... -- 19:07:20.737 INFO [3800]: Version from config: 1.0 -- 19:07:20.737 DEBUG [3800]: Connecting to database... -- 19:07:20.737 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:20.737 SQL [3800]: pgsql_db_connect() -- 19:07:20.742 DEBUG [3800]: Database connection successful -- 19:07:20.742 INFO [3800]: _SERVER found -- 19:07:20.742 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 19:07:20.742 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:20.742 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:20.742 INFO [3800]: QUERY_STRING = /assets/js/pages/picker_date.js -- 19:07:20.742 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:20.753 INFO [3800]: COREGRADE is stopping... -- 19:07:20.753 DEBUG [3800]: Closing database connection -- 19:07:20.753 SQL [3800]: pgsql_close() -- 19:07:20.822 INFO [3800]: COREGRADE is starting... -- 19:07:20.823 INFO [3800]: Version from config: 1.0 -- 19:07:20.823 DEBUG [3800]: Connecting to database... -- 19:07:20.823 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:20.823 SQL [3800]: pgsql_db_connect() -- 19:07:20.827 DEBUG [3800]: Database connection successful -- 19:07:20.827 INFO [3800]: _SERVER found -- 19:07:20.827 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 19:07:20.827 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:20.827 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:20.827 INFO [3800]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 19:07:20.827 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:20.839 INFO [3800]: COREGRADE is stopping... -- 19:07:20.839 DEBUG [3800]: Closing database connection -- 19:07:20.839 SQL [3800]: pgsql_close() -- 19:07:20.908 INFO [3800]: COREGRADE is starting... -- 19:07:20.908 INFO [3800]: Version from config: 1.0 -- 19:07:20.908 DEBUG [3800]: Connecting to database... -- 19:07:20.908 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:20.908 SQL [3800]: pgsql_db_connect() -- 19:07:20.913 DEBUG [3800]: Database connection successful -- 19:07:20.913 INFO [3800]: _SERVER found -- 19:07:20.913 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 19:07:20.913 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:20.913 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:20.913 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 19:07:20.913 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:20.925 INFO [3800]: COREGRADE is stopping... -- 19:07:20.925 DEBUG [3800]: Closing database connection -- 19:07:20.925 SQL [3800]: pgsql_close() -- 19:07:20.994 INFO [3800]: COREGRADE is starting... -- 19:07:20.994 INFO [3800]: Version from config: 1.0 -- 19:07:20.994 DEBUG [3800]: Connecting to database... -- 19:07:20.994 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:20.994 SQL [3800]: pgsql_db_connect() -- 19:07:20.999 DEBUG [3800]: Database connection successful -- 19:07:20.999 INFO [3800]: _SERVER found -- 19:07:20.999 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 19:07:20.999 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:20.999 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:20.999 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 19:07:20.999 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:21.011 INFO [3800]: COREGRADE is stopping... -- 19:07:21.011 DEBUG [3800]: Closing database connection -- 19:07:21.011 SQL [3800]: pgsql_close() -- 19:07:21.081 INFO [3800]: COREGRADE is starting... -- 19:07:21.081 INFO [3800]: Version from config: 1.0 -- 19:07:21.081 DEBUG [3800]: Connecting to database... -- 19:07:21.081 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:21.081 SQL [3800]: pgsql_db_connect() -- 19:07:21.086 DEBUG [3800]: Database connection successful -- 19:07:21.086 INFO [3800]: _SERVER found -- 19:07:21.086 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 19:07:21.086 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:21.086 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:21.086 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 19:07:21.086 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:21.098 INFO [3800]: COREGRADE is stopping... -- 19:07:21.098 DEBUG [3800]: Closing database connection -- 19:07:21.098 SQL [3800]: pgsql_close() -- 19:07:21.167 INFO [3800]: COREGRADE is starting... -- 19:07:21.167 INFO [3800]: Version from config: 1.0 -- 19:07:21.167 DEBUG [3800]: Connecting to database... -- 19:07:21.167 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:21.167 SQL [3800]: pgsql_db_connect() -- 19:07:21.172 DEBUG [3800]: Database connection successful -- 19:07:21.172 INFO [3800]: _SERVER found -- 19:07:21.172 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 19:07:21.172 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:21.172 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:21.172 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 19:07:21.172 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:21.183 INFO [3800]: COREGRADE is stopping... -- 19:07:21.183 DEBUG [3800]: Closing database connection -- 19:07:21.183 SQL [3800]: pgsql_close() -- 19:07:21.263 INFO [3800]: COREGRADE is starting... -- 19:07:21.263 INFO [3800]: Version from config: 1.0 -- 19:07:21.263 DEBUG [3800]: Connecting to database... -- 19:07:21.263 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:21.263 SQL [3800]: pgsql_db_connect() -- 19:07:21.268 DEBUG [3800]: Database connection successful -- 19:07:21.268 INFO [3800]: _SERVER found -- 19:07:21.268 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 19:07:21.268 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:21.268 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:21.268 INFO [3800]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 19:07:21.268 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:21.279 INFO [3800]: COREGRADE is stopping... -- 19:07:21.279 DEBUG [3800]: Closing database connection -- 19:07:21.279 SQL [3800]: pgsql_close() -- 19:07:21.348 INFO [3800]: COREGRADE is starting... -- 19:07:21.348 INFO [3800]: Version from config: 1.0 -- 19:07:21.348 DEBUG [3800]: Connecting to database... -- 19:07:21.349 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:21.349 SQL [3800]: pgsql_db_connect() -- 19:07:21.353 DEBUG [3800]: Database connection successful -- 19:07:21.353 INFO [3800]: _SERVER found -- 19:07:21.353 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 19:07:21.353 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:21.353 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:21.353 INFO [3800]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 19:07:21.353 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:21.365 INFO [3800]: COREGRADE is stopping... -- 19:07:21.365 DEBUG [3800]: Closing database connection -- 19:07:21.365 SQL [3800]: pgsql_close() -- 19:07:21.435 INFO [3800]: COREGRADE is starting... -- 19:07:21.436 INFO [3800]: Version from config: 1.0 -- 19:07:21.436 DEBUG [3800]: Connecting to database... -- 19:07:21.436 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:07:21.436 SQL [3800]: pgsql_db_connect() -- 19:07:21.440 DEBUG [3800]: Database connection successful -- 19:07:21.440 INFO [3800]: _SERVER found -- 19:07:21.440 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 19:07:21.440 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:07:21.440 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:07:21.440 INFO [3800]: QUERY_STRING = /assets/customjs/general.js -- 19:07:21.440 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:07:21.452 INFO [3800]: COREGRADE is stopping... -- 19:07:21.452 DEBUG [3800]: Closing database connection -- 19:07:21.452 SQL [3800]: pgsql_close() -- 19:10:15.304 INFO [3828]: COREGRADE is starting... -- 19:10:15.304 INFO [3828]: Version from config: 1.0 -- 19:10:15.304 DEBUG [3828]: Connecting to database... -- 19:10:15.304 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:10:15.304 SQL [3828]: pgsql_db_connect() -- 19:10:15.308 DEBUG [3828]: Database connection successful -- 19:10:15.308 INFO [3828]: _SERVER found -- 19:10:15.308 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 19:10:15.308 INFO [3828]: SERVER_NAME = oameye.works.coregrade.com -- 19:10:15.308 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069 -- 19:10:15.308 INFO [3828]: QUERY_STRING = /member/classroom -- 19:10:15.308 INFO [3828]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:10:15.343 INFO [3828]: COREGRADE is stopping... -- 19:10:15.343 DEBUG [3828]: Closing database connection -- 19:10:15.343 SQL [3828]: pgsql_close() -- 19:10:15.360 INFO [3828]: COREGRADE is starting... -- 19:10:15.360 INFO [3828]: Version from config: 1.0 -- 19:10:15.360 DEBUG [3828]: Connecting to database... -- 19:10:15.360 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:10:15.360 SQL [3828]: pgsql_db_connect() -- 19:10:15.364 DEBUG [3828]: Database connection successful -- 19:10:15.364 INFO [3828]: _SERVER found -- 19:10:15.364 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 19:10:15.364 INFO [3828]: SERVER_NAME = oameye.works.coregrade.com -- 19:10:15.364 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=toqtnkcud0hc7u9kjqc6m4uli0745iqj -- 19:10:15.364 INFO [3828]: QUERY_STRING = -- 19:10:15.364 INFO [3828]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:10:15.396 INFO [3828]: COREGRADE is stopping... -- 19:10:15.396 DEBUG [3828]: Closing database connection -- 19:10:15.396 SQL [3828]: pgsql_close() -- 19:10:15.693 INFO [3828]: COREGRADE is starting... -- 19:10:15.693 INFO [3828]: Version from config: 1.0 -- 19:10:15.693 DEBUG [3828]: Connecting to database... -- 19:10:15.693 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:10:15.693 SQL [3828]: pgsql_db_connect() -- 19:10:15.697 DEBUG [3828]: Database connection successful -- 19:10:15.697 INFO [3828]: _SERVER found -- 19:10:15.697 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 19:10:15.697 INFO [3828]: SERVER_NAME = oameye.works.coregrade.com -- 19:10:15.697 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1799069572.1586781069; ci_session=toqtnkcud0hc7u9kjqc6m4uli0745iqj -- 19:10:15.697 INFO [3828]: QUERY_STRING = /assets/img/footer_1.jpg -- 19:10:15.697 INFO [3828]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:10:15.709 INFO [3828]: COREGRADE is stopping... -- 19:10:15.709 DEBUG [3828]: Closing database connection -- 19:10:15.709 SQL [3828]: pgsql_close() -- 19:27:21.672 INFO [3739]: COREGRADE is starting... -- 19:27:21.673 INFO [3739]: Version from config: 1.0 -- 19:27:21.673 DEBUG [3739]: Connecting to database... -- 19:27:21.673 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:21.673 SQL [3739]: pgsql_db_connect() -- 19:27:21.677 DEBUG [3739]: Database connection successful -- 19:27:21.677 INFO [3739]: _SERVER found -- 19:27:21.677 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 19:27:21.677 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:21.677 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qtgnmcq5dg9udpeoiinqgpur4b4k23r0 -- 19:27:21.677 INFO [3739]: QUERY_STRING = /logout -- 19:27:21.677 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:21.713 INFO [3739]: COREGRADE is stopping... -- 19:27:21.713 DEBUG [3739]: Closing database connection -- 19:27:21.713 SQL [3739]: pgsql_close() -- 19:27:21.793 INFO [3739]: COREGRADE is starting... -- 19:27:21.793 INFO [3739]: Version from config: 1.0 -- 19:27:21.793 DEBUG [3739]: Connecting to database... -- 19:27:21.793 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:21.793 SQL [3739]: pgsql_db_connect() -- 19:27:21.797 DEBUG [3739]: Database connection successful -- 19:27:21.797 INFO [3739]: _SERVER found -- 19:27:21.797 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 19:27:21.797 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:21.797 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:21.797 INFO [3739]: QUERY_STRING = /start -- 19:27:21.797 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:21.838 INFO [3739]: COREGRADE is stopping... -- 19:27:21.838 DEBUG [3739]: Closing database connection -- 19:27:21.838 SQL [3739]: pgsql_close() -- 19:27:21.966 INFO [3739]: COREGRADE is starting... -- 19:27:21.966 INFO [3739]: Version from config: 1.0 -- 19:27:21.966 DEBUG [3739]: Connecting to database... -- 19:27:21.966 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:21.966 SQL [3739]: pgsql_db_connect() -- 19:27:21.970 DEBUG [3739]: Database connection successful -- 19:27:21.970 INFO [3739]: _SERVER found -- 19:27:21.970 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 19:27:21.970 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:21.970 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:21.970 INFO [3739]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 19:27:21.970 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:21.982 INFO [3739]: COREGRADE is stopping... -- 19:27:21.982 DEBUG [3739]: Closing database connection -- 19:27:21.982 SQL [3739]: pgsql_close() -- 19:27:21.987 INFO [3739]: COREGRADE is starting... -- 19:27:21.987 INFO [3739]: Version from config: 1.0 -- 19:27:21.987 DEBUG [3739]: Connecting to database... -- 19:27:21.987 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:21.987 SQL [3739]: pgsql_db_connect() -- 19:27:21.991 DEBUG [3739]: Database connection successful -- 19:27:21.991 INFO [3739]: _SERVER found -- 19:27:21.991 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 19:27:21.991 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:21.991 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:21.991 INFO [3739]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 19:27:21.991 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:22.003 INFO [3739]: COREGRADE is stopping... -- 19:27:22.003 DEBUG [3739]: Closing database connection -- 19:27:22.003 SQL [3739]: pgsql_close() -- 19:27:22.031 INFO [3739]: COREGRADE is starting... -- 19:27:22.031 INFO [3739]: Version from config: 1.0 -- 19:27:22.031 DEBUG [3739]: Connecting to database... -- 19:27:22.031 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:22.031 SQL [3739]: pgsql_db_connect() -- 19:27:22.035 DEBUG [3739]: Database connection successful -- 19:27:22.035 INFO [3739]: _SERVER found -- 19:27:22.035 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 19:27:22.035 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:22.035 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:22.035 INFO [3739]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 19:27:22.035 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:22.046 INFO [3739]: COREGRADE is stopping... -- 19:27:22.046 DEBUG [3739]: Closing database connection -- 19:27:22.046 SQL [3739]: pgsql_close() -- 19:27:22.064 INFO [3739]: COREGRADE is starting... -- 19:27:22.065 INFO [3739]: Version from config: 1.0 -- 19:27:22.065 DEBUG [3739]: Connecting to database... -- 19:27:22.065 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:22.065 SQL [3739]: pgsql_db_connect() -- 19:27:22.069 INFO [3738]: COREGRADE is starting... -- 19:27:22.069 INFO [3738]: Version from config: 1.0 -- 19:27:22.069 DEBUG [3738]: Connecting to database... -- 19:27:22.069 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:22.069 SQL [3738]: pgsql_db_connect() -- 19:27:22.069 DEBUG [3739]: Database connection successful -- 19:27:22.069 INFO [3739]: _SERVER found -- 19:27:22.069 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 19:27:22.069 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:22.069 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:22.069 INFO [3739]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 19:27:22.069 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:22.080 INFO [3739]: COREGRADE is stopping... -- 19:27:22.080 DEBUG [3739]: Closing database connection -- 19:27:22.080 SQL [3739]: pgsql_close() -- 19:27:22.073 DEBUG [3738]: Database connection successful -- 19:27:22.073 INFO [3738]: _SERVER found -- 19:27:22.073 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 19:27:22.073 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:22.073 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:22.073 INFO [3738]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 19:27:22.073 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:22.086 INFO [3738]: COREGRADE is stopping... -- 19:27:22.087 DEBUG [3738]: Closing database connection -- 19:27:22.087 SQL [3738]: pgsql_close() -- 19:27:22.124 INFO [3738]: COREGRADE is starting... -- 19:27:22.124 INFO [3738]: Version from config: 1.0 -- 19:27:22.124 DEBUG [3738]: Connecting to database... -- 19:27:22.124 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:22.124 SQL [3738]: pgsql_db_connect() -- 19:27:22.129 DEBUG [3738]: Database connection successful -- 19:27:22.129 INFO [3738]: _SERVER found -- 19:27:22.129 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 19:27:22.129 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:22.129 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:22.129 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 19:27:22.129 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:22.140 INFO [3738]: COREGRADE is stopping... -- 19:27:22.140 DEBUG [3738]: Closing database connection -- 19:27:22.140 SQL [3738]: pgsql_close() -- 19:27:22.153 INFO [3738]: COREGRADE is starting... -- 19:27:22.154 INFO [3738]: Version from config: 1.0 -- 19:27:22.154 DEBUG [3738]: Connecting to database... -- 19:27:22.154 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:22.154 SQL [3738]: pgsql_db_connect() -- 19:27:22.162 INFO [3739]: COREGRADE is starting... -- 19:27:22.163 INFO [3739]: Version from config: 1.0 -- 19:27:22.163 DEBUG [3739]: Connecting to database... -- 19:27:22.163 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:22.163 SQL [3739]: pgsql_db_connect() -- 19:27:22.158 DEBUG [3738]: Database connection successful -- 19:27:22.158 INFO [3738]: _SERVER found -- 19:27:22.158 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 19:27:22.158 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:22.158 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:22.158 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 19:27:22.158 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:22.169 INFO [3738]: COREGRADE is stopping... -- 19:27:22.169 DEBUG [3738]: Closing database connection -- 19:27:22.169 SQL [3738]: pgsql_close() -- 19:27:22.167 DEBUG [3739]: Database connection successful -- 19:27:22.167 INFO [3739]: _SERVER found -- 19:27:22.167 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 19:27:22.167 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:22.167 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:22.167 INFO [3739]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 19:27:22.167 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:22.178 INFO [3739]: COREGRADE is stopping... -- 19:27:22.178 DEBUG [3739]: Closing database connection -- 19:27:22.178 SQL [3739]: pgsql_close() -- 19:27:22.218 INFO [3739]: COREGRADE is starting... -- 19:27:22.218 INFO [3739]: Version from config: 1.0 -- 19:27:22.218 DEBUG [3739]: Connecting to database... -- 19:27:22.218 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:22.218 SQL [3739]: pgsql_db_connect() -- 19:27:22.222 DEBUG [3739]: Database connection successful -- 19:27:22.222 INFO [3739]: _SERVER found -- 19:27:22.222 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 19:27:22.222 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:22.222 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:22.222 INFO [3739]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 19:27:22.222 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:22.234 INFO [3739]: COREGRADE is stopping... -- 19:27:22.234 DEBUG [3739]: Closing database connection -- 19:27:22.234 SQL [3739]: pgsql_close() -- 19:27:22.236 INFO [3738]: COREGRADE is starting... -- 19:27:22.236 INFO [3738]: Version from config: 1.0 -- 19:27:22.236 DEBUG [3738]: Connecting to database... -- 19:27:22.236 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:22.236 SQL [3738]: pgsql_db_connect() -- 19:27:22.240 DEBUG [3738]: Database connection successful -- 19:27:22.240 INFO [3738]: _SERVER found -- 19:27:22.240 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 19:27:22.240 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:22.240 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:22.240 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 19:27:22.240 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:22.251 INFO [3738]: COREGRADE is stopping... -- 19:27:22.251 DEBUG [3738]: Closing database connection -- 19:27:22.251 SQL [3738]: pgsql_close() -- 19:27:22.260 INFO [3738]: COREGRADE is starting... -- 19:27:22.261 INFO [3738]: Version from config: 1.0 -- 19:27:22.261 DEBUG [3738]: Connecting to database... -- 19:27:22.261 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:22.261 SQL [3738]: pgsql_db_connect() -- 19:27:22.265 DEBUG [3738]: Database connection successful -- 19:27:22.265 INFO [3738]: _SERVER found -- 19:27:22.265 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 19:27:22.265 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:22.265 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:22.265 INFO [3738]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 19:27:22.265 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:22.276 INFO [3738]: COREGRADE is stopping... -- 19:27:22.276 DEBUG [3738]: Closing database connection -- 19:27:22.276 SQL [3738]: pgsql_close() -- 19:27:22.313 INFO [3738]: COREGRADE is starting... -- 19:27:22.313 INFO [3738]: Version from config: 1.0 -- 19:27:22.313 DEBUG [3738]: Connecting to database... -- 19:27:22.313 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:22.313 SQL [3738]: pgsql_db_connect() -- 19:27:22.317 INFO [3739]: COREGRADE is starting... -- 19:27:22.317 INFO [3739]: Version from config: 1.0 -- 19:27:22.317 DEBUG [3739]: Connecting to database... -- 19:27:22.317 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:22.317 SQL [3739]: pgsql_db_connect() -- 19:27:22.317 DEBUG [3738]: Database connection successful -- 19:27:22.317 INFO [3738]: _SERVER found -- 19:27:22.317 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 19:27:22.317 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:22.317 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:22.317 INFO [3738]: QUERY_STRING = /assets/js/pages/dashboard.js -- 19:27:22.317 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:22.328 INFO [3738]: COREGRADE is stopping... -- 19:27:22.328 DEBUG [3738]: Closing database connection -- 19:27:22.328 SQL [3738]: pgsql_close() -- 19:27:22.321 DEBUG [3739]: Database connection successful -- 19:27:22.321 INFO [3739]: _SERVER found -- 19:27:22.321 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 19:27:22.321 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:22.321 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:22.321 INFO [3739]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 19:27:22.321 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:22.332 INFO [3739]: COREGRADE is stopping... -- 19:27:22.332 DEBUG [3739]: Closing database connection -- 19:27:22.332 SQL [3739]: pgsql_close() -- 19:27:22.348 INFO [3739]: COREGRADE is starting... -- 19:27:22.349 INFO [3739]: Version from config: 1.0 -- 19:27:22.349 DEBUG [3739]: Connecting to database... -- 19:27:22.349 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:22.349 SQL [3739]: pgsql_db_connect() -- 19:27:22.353 DEBUG [3739]: Database connection successful -- 19:27:22.353 INFO [3739]: _SERVER found -- 19:27:22.353 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 19:27:22.353 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:22.353 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:22.353 INFO [3739]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 19:27:22.353 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:22.364 INFO [3739]: COREGRADE is stopping... -- 19:27:22.364 DEBUG [3739]: Closing database connection -- 19:27:22.364 SQL [3739]: pgsql_close() -- 19:27:22.396 INFO [3739]: COREGRADE is starting... -- 19:27:22.396 INFO [3739]: Version from config: 1.0 -- 19:27:22.396 DEBUG [3739]: Connecting to database... -- 19:27:22.396 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:22.396 SQL [3739]: pgsql_db_connect() -- 19:27:22.397 INFO [3738]: COREGRADE is starting... -- 19:27:22.398 INFO [3738]: Version from config: 1.0 -- 19:27:22.398 DEBUG [3738]: Connecting to database... -- 19:27:22.398 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:22.398 SQL [3738]: pgsql_db_connect() -- 19:27:22.400 DEBUG [3739]: Database connection successful -- 19:27:22.400 INFO [3739]: _SERVER found -- 19:27:22.400 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 19:27:22.400 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:22.400 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:22.400 INFO [3739]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 19:27:22.400 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:22.411 INFO [3739]: COREGRADE is stopping... -- 19:27:22.411 DEBUG [3739]: Closing database connection -- 19:27:22.411 SQL [3739]: pgsql_close() -- 19:27:22.401 DEBUG [3738]: Database connection successful -- 19:27:22.401 INFO [3738]: _SERVER found -- 19:27:22.401 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 19:27:22.401 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:22.401 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:22.401 INFO [3738]: QUERY_STRING = /assets/js/pages/picker_date.js -- 19:27:22.401 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:22.413 INFO [3738]: COREGRADE is stopping... -- 19:27:22.413 DEBUG [3738]: Closing database connection -- 19:27:22.413 SQL [3738]: pgsql_close() -- 19:27:22.436 INFO [3738]: COREGRADE is starting... -- 19:27:22.436 INFO [3738]: Version from config: 1.0 -- 19:27:22.436 DEBUG [3738]: Connecting to database... -- 19:27:22.436 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:22.436 SQL [3738]: pgsql_db_connect() -- 19:27:22.440 DEBUG [3738]: Database connection successful -- 19:27:22.440 INFO [3738]: _SERVER found -- 19:27:22.440 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 19:27:22.440 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:22.440 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:22.440 INFO [3738]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 19:27:22.440 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:22.451 INFO [3738]: COREGRADE is stopping... -- 19:27:22.451 DEBUG [3738]: Closing database connection -- 19:27:22.451 SQL [3738]: pgsql_close() -- 19:27:22.478 INFO [3738]: COREGRADE is starting... -- 19:27:22.478 INFO [3738]: Version from config: 1.0 -- 19:27:22.478 DEBUG [3738]: Connecting to database... -- 19:27:22.478 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:22.478 SQL [3738]: pgsql_db_connect() -- 19:27:22.479 INFO [3739]: COREGRADE is starting... -- 19:27:22.479 INFO [3739]: Version from config: 1.0 -- 19:27:22.479 DEBUG [3739]: Connecting to database... -- 19:27:22.479 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:22.479 SQL [3739]: pgsql_db_connect() -- 19:27:22.482 DEBUG [3738]: Database connection successful -- 19:27:22.482 INFO [3738]: _SERVER found -- 19:27:22.482 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 19:27:22.482 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:22.482 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:22.482 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 19:27:22.482 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:22.494 INFO [3738]: COREGRADE is stopping... -- 19:27:22.494 DEBUG [3738]: Closing database connection -- 19:27:22.494 SQL [3738]: pgsql_close() -- 19:27:22.483 DEBUG [3739]: Database connection successful -- 19:27:22.483 INFO [3739]: _SERVER found -- 19:27:22.483 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 19:27:22.483 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:22.483 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:22.483 INFO [3739]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 19:27:22.483 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:22.494 INFO [3739]: COREGRADE is stopping... -- 19:27:22.494 DEBUG [3739]: Closing database connection -- 19:27:22.494 SQL [3739]: pgsql_close() -- 19:27:22.522 INFO [3739]: COREGRADE is starting... -- 19:27:22.522 INFO [3739]: Version from config: 1.0 -- 19:27:22.522 DEBUG [3739]: Connecting to database... -- 19:27:22.522 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:22.522 SQL [3739]: pgsql_db_connect() -- 19:27:22.526 DEBUG [3739]: Database connection successful -- 19:27:22.526 INFO [3739]: _SERVER found -- 19:27:22.526 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 19:27:22.526 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:22.526 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:22.526 INFO [3739]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 19:27:22.526 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:22.538 INFO [3739]: COREGRADE is stopping... -- 19:27:22.538 DEBUG [3739]: Closing database connection -- 19:27:22.538 SQL [3739]: pgsql_close() -- 19:27:22.560 INFO [3739]: COREGRADE is starting... -- 19:27:22.561 INFO [3738]: COREGRADE is starting... -- 19:27:22.561 INFO [3739]: Version from config: 1.0 -- 19:27:22.561 DEBUG [3739]: Connecting to database... -- 19:27:22.561 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:22.561 SQL [3739]: pgsql_db_connect() -- 19:27:22.561 INFO [3738]: Version from config: 1.0 -- 19:27:22.561 DEBUG [3738]: Connecting to database... -- 19:27:22.561 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:22.561 SQL [3738]: pgsql_db_connect() -- 19:27:22.565 DEBUG [3738]: Database connection successful -- 19:27:22.565 INFO [3738]: _SERVER found -- 19:27:22.565 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 19:27:22.565 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:22.565 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:22.565 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 19:27:22.565 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:22.576 INFO [3738]: COREGRADE is stopping... -- 19:27:22.565 DEBUG [3739]: Database connection successful -- 19:27:22.565 INFO [3739]: _SERVER found -- 19:27:22.565 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 19:27:22.565 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:22.565 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:22.565 INFO [3739]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 19:27:22.565 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:22.576 INFO [3739]: COREGRADE is stopping... -- 19:27:22.576 DEBUG [3738]: Closing database connection -- 19:27:22.576 DEBUG [3739]: Closing database connection -- 19:27:22.576 SQL [3738]: pgsql_close() -- 19:27:22.576 SQL [3739]: pgsql_close() -- 19:27:22.609 INFO [3738]: COREGRADE is starting... -- 19:27:22.609 INFO [3738]: Version from config: 1.0 -- 19:27:22.609 DEBUG [3738]: Connecting to database... -- 19:27:22.609 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:22.609 SQL [3738]: pgsql_db_connect() -- 19:27:22.613 DEBUG [3738]: Database connection successful -- 19:27:22.613 INFO [3738]: _SERVER found -- 19:27:22.613 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 19:27:22.613 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:22.613 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:22.613 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 19:27:22.613 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:22.625 INFO [3738]: COREGRADE is stopping... -- 19:27:22.625 DEBUG [3738]: Closing database connection -- 19:27:22.625 SQL [3738]: pgsql_close() -- 19:27:22.642 INFO [3738]: COREGRADE is starting... -- 19:27:22.642 INFO [3738]: Version from config: 1.0 -- 19:27:22.642 DEBUG [3738]: Connecting to database... -- 19:27:22.643 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:22.643 SQL [3738]: pgsql_db_connect() -- 19:27:22.643 INFO [3739]: COREGRADE is starting... -- 19:27:22.643 INFO [3739]: Version from config: 1.0 -- 19:27:22.643 DEBUG [3739]: Connecting to database... -- 19:27:22.643 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:22.643 SQL [3739]: pgsql_db_connect() -- 19:27:22.647 DEBUG [3738]: Database connection successful -- 19:27:22.647 INFO [3738]: _SERVER found -- 19:27:22.647 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 19:27:22.647 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:22.647 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:22.647 INFO [3738]: QUERY_STRING = /assets/customjs/general.js -- 19:27:22.647 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:22.658 INFO [3738]: COREGRADE is stopping... -- 19:27:22.658 DEBUG [3738]: Closing database connection -- 19:27:22.658 SQL [3738]: pgsql_close() -- 19:27:22.647 DEBUG [3739]: Database connection successful -- 19:27:22.647 INFO [3739]: _SERVER found -- 19:27:22.647 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 19:27:22.647 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:22.647 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:22.647 INFO [3739]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 19:27:22.647 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:22.659 INFO [3739]: COREGRADE is stopping... -- 19:27:22.659 DEBUG [3739]: Closing database connection -- 19:27:22.659 SQL [3739]: pgsql_close() -- 19:27:22.726 INFO [3738]: COREGRADE is starting... -- 19:27:22.726 INFO [3738]: Version from config: 1.0 -- 19:27:22.726 DEBUG [3738]: Connecting to database... -- 19:27:22.726 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:22.726 SQL [3738]: pgsql_db_connect() -- 19:27:22.730 DEBUG [3738]: Database connection successful -- 19:27:22.730 INFO [3738]: _SERVER found -- 19:27:22.730 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 19:27:22.730 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:22.730 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:22.730 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 19:27:22.730 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:22.741 INFO [3738]: COREGRADE is stopping... -- 19:27:22.741 DEBUG [3738]: Closing database connection -- 19:27:22.741 SQL [3738]: pgsql_close() -- 19:27:22.808 INFO [3738]: COREGRADE is starting... -- 19:27:22.808 INFO [3738]: Version from config: 1.0 -- 19:27:22.808 DEBUG [3738]: Connecting to database... -- 19:27:22.808 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:22.808 SQL [3738]: pgsql_db_connect() -- 19:27:22.812 DEBUG [3738]: Database connection successful -- 19:27:22.812 INFO [3738]: _SERVER found -- 19:27:22.812 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 19:27:22.812 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:22.812 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:22.812 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 19:27:22.812 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:22.824 INFO [3738]: COREGRADE is stopping... -- 19:27:22.824 DEBUG [3738]: Closing database connection -- 19:27:22.824 SQL [3738]: pgsql_close() -- 19:27:22.890 INFO [3738]: COREGRADE is starting... -- 19:27:22.891 INFO [3738]: Version from config: 1.0 -- 19:27:22.891 DEBUG [3738]: Connecting to database... -- 19:27:22.891 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:22.891 SQL [3738]: pgsql_db_connect() -- 19:27:22.895 DEBUG [3738]: Database connection successful -- 19:27:22.895 INFO [3738]: _SERVER found -- 19:27:22.895 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 19:27:22.895 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:22.895 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:22.895 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 19:27:22.895 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:22.906 INFO [3738]: COREGRADE is stopping... -- 19:27:22.906 DEBUG [3738]: Closing database connection -- 19:27:22.906 SQL [3738]: pgsql_close() -- 19:27:22.973 INFO [3738]: COREGRADE is starting... -- 19:27:22.973 INFO [3738]: Version from config: 1.0 -- 19:27:22.973 DEBUG [3738]: Connecting to database... -- 19:27:22.973 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:22.973 SQL [3738]: pgsql_db_connect() -- 19:27:22.977 DEBUG [3738]: Database connection successful -- 19:27:22.977 INFO [3738]: _SERVER found -- 19:27:22.977 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 19:27:22.977 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:22.977 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:22.977 INFO [3738]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 19:27:22.977 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:22.988 INFO [3738]: COREGRADE is stopping... -- 19:27:22.988 DEBUG [3738]: Closing database connection -- 19:27:22.988 SQL [3738]: pgsql_close() -- 19:27:23.055 INFO [3738]: COREGRADE is starting... -- 19:27:23.055 INFO [3738]: Version from config: 1.0 -- 19:27:23.055 DEBUG [3738]: Connecting to database... -- 19:27:23.055 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:23.055 SQL [3738]: pgsql_db_connect() -- 19:27:23.059 DEBUG [3738]: Database connection successful -- 19:27:23.059 INFO [3738]: _SERVER found -- 19:27:23.059 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 19:27:23.059 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:23.059 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:23.059 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 19:27:23.059 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:23.071 INFO [3738]: COREGRADE is stopping... -- 19:27:23.071 DEBUG [3738]: Closing database connection -- 19:27:23.071 SQL [3738]: pgsql_close() -- 19:27:23.138 INFO [3738]: COREGRADE is starting... -- 19:27:23.138 INFO [3738]: Version from config: 1.0 -- 19:27:23.138 DEBUG [3738]: Connecting to database... -- 19:27:23.138 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:23.138 SQL [3738]: pgsql_db_connect() -- 19:27:23.142 DEBUG [3738]: Database connection successful -- 19:27:23.142 INFO [3738]: _SERVER found -- 19:27:23.142 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 19:27:23.142 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:23.142 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:23.142 INFO [3738]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 19:27:23.142 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:23.154 INFO [3738]: COREGRADE is stopping... -- 19:27:23.154 DEBUG [3738]: Closing database connection -- 19:27:23.154 SQL [3738]: pgsql_close() -- 19:27:23.221 INFO [3738]: COREGRADE is starting... -- 19:27:23.221 INFO [3738]: Version from config: 1.0 -- 19:27:23.221 DEBUG [3738]: Connecting to database... -- 19:27:23.221 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:23.221 SQL [3738]: pgsql_db_connect() -- 19:27:23.225 DEBUG [3738]: Database connection successful -- 19:27:23.225 INFO [3738]: _SERVER found -- 19:27:23.225 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 19:27:23.225 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:23.225 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:23.225 INFO [3738]: QUERY_STRING = /assets/js/pages/dashboard.js -- 19:27:23.225 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:23.236 INFO [3738]: COREGRADE is stopping... -- 19:27:23.236 DEBUG [3738]: Closing database connection -- 19:27:23.236 SQL [3738]: pgsql_close() -- 19:27:23.304 INFO [3738]: COREGRADE is starting... -- 19:27:23.304 INFO [3738]: Version from config: 1.0 -- 19:27:23.304 DEBUG [3738]: Connecting to database... -- 19:27:23.304 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:23.304 SQL [3738]: pgsql_db_connect() -- 19:27:23.308 DEBUG [3738]: Database connection successful -- 19:27:23.308 INFO [3738]: _SERVER found -- 19:27:23.308 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 19:27:23.308 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:23.308 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:23.308 INFO [3738]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 19:27:23.308 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:23.320 INFO [3738]: COREGRADE is stopping... -- 19:27:23.320 DEBUG [3738]: Closing database connection -- 19:27:23.320 SQL [3738]: pgsql_close() -- 19:27:23.386 INFO [3738]: COREGRADE is starting... -- 19:27:23.387 INFO [3738]: Version from config: 1.0 -- 19:27:23.387 DEBUG [3738]: Connecting to database... -- 19:27:23.387 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:23.387 SQL [3738]: pgsql_db_connect() -- 19:27:23.391 DEBUG [3738]: Database connection successful -- 19:27:23.391 INFO [3738]: _SERVER found -- 19:27:23.391 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 19:27:23.391 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:23.391 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:23.391 INFO [3738]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 19:27:23.391 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:23.402 INFO [3738]: COREGRADE is stopping... -- 19:27:23.402 DEBUG [3738]: Closing database connection -- 19:27:23.402 SQL [3738]: pgsql_close() -- 19:27:23.470 INFO [3738]: COREGRADE is starting... -- 19:27:23.470 INFO [3738]: Version from config: 1.0 -- 19:27:23.470 DEBUG [3738]: Connecting to database... -- 19:27:23.470 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:23.470 SQL [3738]: pgsql_db_connect() -- 19:27:23.474 DEBUG [3738]: Database connection successful -- 19:27:23.474 INFO [3738]: _SERVER found -- 19:27:23.474 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 19:27:23.474 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:23.474 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:23.474 INFO [3738]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 19:27:23.474 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:23.486 INFO [3738]: COREGRADE is stopping... -- 19:27:23.486 DEBUG [3738]: Closing database connection -- 19:27:23.486 SQL [3738]: pgsql_close() -- 19:27:23.552 INFO [3738]: COREGRADE is starting... -- 19:27:23.552 INFO [3738]: Version from config: 1.0 -- 19:27:23.552 DEBUG [3738]: Connecting to database... -- 19:27:23.552 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:23.552 SQL [3738]: pgsql_db_connect() -- 19:27:23.556 DEBUG [3738]: Database connection successful -- 19:27:23.556 INFO [3738]: _SERVER found -- 19:27:23.556 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 19:27:23.556 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:23.556 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:23.556 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 19:27:23.556 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:23.568 INFO [3738]: COREGRADE is stopping... -- 19:27:23.568 DEBUG [3738]: Closing database connection -- 19:27:23.568 SQL [3738]: pgsql_close() -- 19:27:23.634 INFO [3738]: COREGRADE is starting... -- 19:27:23.634 INFO [3738]: Version from config: 1.0 -- 19:27:23.634 DEBUG [3738]: Connecting to database... -- 19:27:23.634 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:23.634 SQL [3738]: pgsql_db_connect() -- 19:27:23.638 DEBUG [3738]: Database connection successful -- 19:27:23.638 INFO [3738]: _SERVER found -- 19:27:23.638 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 19:27:23.638 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:23.638 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:23.638 INFO [3738]: QUERY_STRING = /assets/js/pages/picker_date.js -- 19:27:23.638 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:23.650 INFO [3738]: COREGRADE is stopping... -- 19:27:23.650 DEBUG [3738]: Closing database connection -- 19:27:23.650 SQL [3738]: pgsql_close() -- 19:27:23.716 INFO [3738]: COREGRADE is starting... -- 19:27:23.717 INFO [3738]: Version from config: 1.0 -- 19:27:23.717 DEBUG [3738]: Connecting to database... -- 19:27:23.717 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:23.717 SQL [3738]: pgsql_db_connect() -- 19:27:23.721 DEBUG [3738]: Database connection successful -- 19:27:23.721 INFO [3738]: _SERVER found -- 19:27:23.721 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 19:27:23.721 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:23.721 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:23.721 INFO [3738]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 19:27:23.721 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:23.732 INFO [3738]: COREGRADE is stopping... -- 19:27:23.732 DEBUG [3738]: Closing database connection -- 19:27:23.732 SQL [3738]: pgsql_close() -- 19:27:23.799 INFO [3738]: COREGRADE is starting... -- 19:27:23.799 INFO [3738]: Version from config: 1.0 -- 19:27:23.799 DEBUG [3738]: Connecting to database... -- 19:27:23.799 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:23.799 SQL [3738]: pgsql_db_connect() -- 19:27:23.803 DEBUG [3738]: Database connection successful -- 19:27:23.803 INFO [3738]: _SERVER found -- 19:27:23.803 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 19:27:23.803 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:23.803 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:23.803 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 19:27:23.803 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:23.815 INFO [3738]: COREGRADE is stopping... -- 19:27:23.815 DEBUG [3738]: Closing database connection -- 19:27:23.815 SQL [3738]: pgsql_close() -- 19:27:23.881 INFO [3738]: COREGRADE is starting... -- 19:27:23.881 INFO [3738]: Version from config: 1.0 -- 19:27:23.881 DEBUG [3738]: Connecting to database... -- 19:27:23.881 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:23.881 SQL [3738]: pgsql_db_connect() -- 19:27:23.885 DEBUG [3738]: Database connection successful -- 19:27:23.885 INFO [3738]: _SERVER found -- 19:27:23.885 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 19:27:23.885 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:23.885 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:23.885 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 19:27:23.885 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:23.897 INFO [3738]: COREGRADE is stopping... -- 19:27:23.897 DEBUG [3738]: Closing database connection -- 19:27:23.897 SQL [3738]: pgsql_close() -- 19:27:23.963 INFO [3738]: COREGRADE is starting... -- 19:27:23.963 INFO [3738]: Version from config: 1.0 -- 19:27:23.963 DEBUG [3738]: Connecting to database... -- 19:27:23.963 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:23.963 SQL [3738]: pgsql_db_connect() -- 19:27:23.967 DEBUG [3738]: Database connection successful -- 19:27:23.967 INFO [3738]: _SERVER found -- 19:27:23.967 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 19:27:23.967 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:23.967 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:23.967 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 19:27:23.967 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:23.979 INFO [3738]: COREGRADE is stopping... -- 19:27:23.979 DEBUG [3738]: Closing database connection -- 19:27:23.979 SQL [3738]: pgsql_close() -- 19:27:24.045 INFO [3738]: COREGRADE is starting... -- 19:27:24.046 INFO [3738]: Version from config: 1.0 -- 19:27:24.046 DEBUG [3738]: Connecting to database... -- 19:27:24.046 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:24.046 SQL [3738]: pgsql_db_connect() -- 19:27:24.050 DEBUG [3738]: Database connection successful -- 19:27:24.050 INFO [3738]: _SERVER found -- 19:27:24.050 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 19:27:24.050 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:24.050 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:24.050 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 19:27:24.050 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:24.061 INFO [3738]: COREGRADE is stopping... -- 19:27:24.061 DEBUG [3738]: Closing database connection -- 19:27:24.061 SQL [3738]: pgsql_close() -- 19:27:24.138 INFO [3738]: COREGRADE is starting... -- 19:27:24.139 INFO [3738]: Version from config: 1.0 -- 19:27:24.139 DEBUG [3738]: Connecting to database... -- 19:27:24.139 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:24.139 SQL [3738]: pgsql_db_connect() -- 19:27:24.143 DEBUG [3738]: Database connection successful -- 19:27:24.143 INFO [3738]: _SERVER found -- 19:27:24.143 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 19:27:24.143 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:24.143 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:24.143 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 19:27:24.143 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:24.154 INFO [3738]: COREGRADE is stopping... -- 19:27:24.154 DEBUG [3738]: Closing database connection -- 19:27:24.154 SQL [3738]: pgsql_close() -- 19:27:24.221 INFO [3738]: COREGRADE is starting... -- 19:27:24.221 INFO [3738]: Version from config: 1.0 -- 19:27:24.221 DEBUG [3738]: Connecting to database... -- 19:27:24.221 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:24.221 SQL [3738]: pgsql_db_connect() -- 19:27:24.225 DEBUG [3738]: Database connection successful -- 19:27:24.225 INFO [3738]: _SERVER found -- 19:27:24.225 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 19:27:24.225 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:24.225 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:24.225 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 19:27:24.225 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:24.236 INFO [3738]: COREGRADE is stopping... -- 19:27:24.236 DEBUG [3738]: Closing database connection -- 19:27:24.236 SQL [3738]: pgsql_close() -- 19:27:24.305 INFO [3738]: COREGRADE is starting... -- 19:27:24.305 INFO [3738]: Version from config: 1.0 -- 19:27:24.305 DEBUG [3738]: Connecting to database... -- 19:27:24.305 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:24.305 SQL [3738]: pgsql_db_connect() -- 19:27:24.309 DEBUG [3738]: Database connection successful -- 19:27:24.309 INFO [3738]: _SERVER found -- 19:27:24.309 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 19:27:24.309 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:27:24.309 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:27:24.309 INFO [3738]: QUERY_STRING = /assets/customjs/general.js -- 19:27:24.309 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:27:24.321 INFO [3738]: COREGRADE is stopping... -- 19:27:24.321 DEBUG [3738]: Closing database connection -- 19:27:24.321 SQL [3738]: pgsql_close() -- 19:47:24.540 INFO [3740]: COREGRADE is starting... -- 19:47:24.540 INFO [3740]: Version from config: 1.0 -- 19:47:24.540 DEBUG [3740]: Connecting to database... -- 19:47:24.540 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:24.540 SQL [3740]: pgsql_db_connect() -- 19:47:24.544 DEBUG [3740]: Database connection successful -- 19:47:24.544 INFO [3740]: _SERVER found -- 19:47:24.544 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 19:47:24.544 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:24.544 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=lfer2hggg14btjgfuhem4oce2grajk46 -- 19:47:24.544 INFO [3740]: QUERY_STRING = /logout -- 19:47:24.544 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:24.578 INFO [3740]: COREGRADE is stopping... -- 19:47:24.578 DEBUG [3740]: Closing database connection -- 19:47:24.578 SQL [3740]: pgsql_close() -- 19:47:24.657 INFO [3740]: COREGRADE is starting... -- 19:47:24.658 INFO [3740]: Version from config: 1.0 -- 19:47:24.658 DEBUG [3740]: Connecting to database... -- 19:47:24.658 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:24.658 SQL [3740]: pgsql_db_connect() -- 19:47:24.662 DEBUG [3740]: Database connection successful -- 19:47:24.662 INFO [3740]: _SERVER found -- 19:47:24.662 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 19:47:24.662 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:24.662 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:24.662 INFO [3740]: QUERY_STRING = /start -- 19:47:24.662 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:24.696 INFO [3740]: COREGRADE is stopping... -- 19:47:24.696 DEBUG [3740]: Closing database connection -- 19:47:24.696 SQL [3740]: pgsql_close() -- 19:47:24.820 INFO [3742]: COREGRADE is starting... -- 19:47:24.820 INFO [3742]: Version from config: 1.0 -- 19:47:24.820 DEBUG [3742]: Connecting to database... -- 19:47:24.820 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:24.820 SQL [3742]: pgsql_db_connect() -- 19:47:24.824 DEBUG [3742]: Database connection successful -- 19:47:24.824 INFO [3742]: _SERVER found -- 19:47:24.824 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 19:47:24.824 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:24.824 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:24.824 INFO [3742]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 19:47:24.824 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:24.836 INFO [3742]: COREGRADE is stopping... -- 19:47:24.836 DEBUG [3742]: Closing database connection -- 19:47:24.836 SQL [3742]: pgsql_close() -- 19:47:24.841 INFO [3740]: COREGRADE is starting... -- 19:47:24.842 INFO [3740]: Version from config: 1.0 -- 19:47:24.842 DEBUG [3740]: Connecting to database... -- 19:47:24.842 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:24.842 SQL [3740]: pgsql_db_connect() -- 19:47:24.845 DEBUG [3740]: Database connection successful -- 19:47:24.845 INFO [3740]: _SERVER found -- 19:47:24.845 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 19:47:24.845 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:24.845 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:24.845 INFO [3740]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 19:47:24.845 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:24.857 INFO [3740]: COREGRADE is stopping... -- 19:47:24.857 DEBUG [3740]: Closing database connection -- 19:47:24.857 SQL [3740]: pgsql_close() -- 19:47:24.889 INFO [3829]: COREGRADE is starting... -- 19:47:24.889 INFO [3829]: Version from config: 1.0 -- 19:47:24.889 DEBUG [3829]: Connecting to database... -- 19:47:24.889 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:24.889 SQL [3829]: pgsql_db_connect() -- 19:47:24.893 DEBUG [3829]: Database connection successful -- 19:47:24.893 INFO [3829]: _SERVER found -- 19:47:24.893 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 19:47:24.893 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:24.893 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:24.893 INFO [3829]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 19:47:24.893 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:24.905 INFO [3829]: COREGRADE is stopping... -- 19:47:24.905 DEBUG [3829]: Closing database connection -- 19:47:24.905 SQL [3829]: pgsql_close() -- 19:47:24.917 INFO [3742]: COREGRADE is starting... -- 19:47:24.917 INFO [3742]: Version from config: 1.0 -- 19:47:24.917 DEBUG [3742]: Connecting to database... -- 19:47:24.917 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:24.917 SQL [3742]: pgsql_db_connect() -- 19:47:24.923 INFO [3740]: COREGRADE is starting... -- 19:47:24.923 INFO [3740]: Version from config: 1.0 -- 19:47:24.923 DEBUG [3740]: Connecting to database... -- 19:47:24.923 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:24.923 SQL [3740]: pgsql_db_connect() -- 19:47:24.921 DEBUG [3742]: Database connection successful -- 19:47:24.921 INFO [3742]: _SERVER found -- 19:47:24.921 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 19:47:24.921 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:24.921 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:24.921 INFO [3742]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 19:47:24.921 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:24.932 INFO [3742]: COREGRADE is stopping... -- 19:47:24.932 DEBUG [3742]: Closing database connection -- 19:47:24.932 SQL [3742]: pgsql_close() -- 19:47:24.927 DEBUG [3740]: Database connection successful -- 19:47:24.927 INFO [3740]: _SERVER found -- 19:47:24.927 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 19:47:24.927 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:24.927 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:24.927 INFO [3740]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 19:47:24.927 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:24.939 INFO [3740]: COREGRADE is stopping... -- 19:47:24.939 DEBUG [3740]: Closing database connection -- 19:47:24.939 SQL [3740]: pgsql_close() -- 19:47:24.984 INFO [3829]: COREGRADE is starting... -- 19:47:24.984 INFO [3829]: Version from config: 1.0 -- 19:47:24.984 DEBUG [3829]: Connecting to database... -- 19:47:24.984 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:24.984 SQL [3829]: pgsql_db_connect() -- 19:47:24.988 DEBUG [3829]: Database connection successful -- 19:47:24.988 INFO [3829]: _SERVER found -- 19:47:24.988 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 19:47:24.988 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:24.988 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:24.988 INFO [3829]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 19:47:24.988 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:24.000 INFO [3829]: COREGRADE is stopping... -- 19:47:24.000 DEBUG [3829]: Closing database connection -- 19:47:24.000 SQL [3829]: pgsql_close() -- 19:47:25.005 INFO [3740]: COREGRADE is starting... -- 19:47:25.005 INFO [3740]: Version from config: 1.0 -- 19:47:25.005 DEBUG [3740]: Connecting to database... -- 19:47:25.005 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:25.005 SQL [3740]: pgsql_db_connect() -- 19:47:25.013 INFO [3742]: COREGRADE is starting... -- 19:47:25.013 INFO [3742]: Version from config: 1.0 -- 19:47:25.013 DEBUG [3742]: Connecting to database... -- 19:47:25.013 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:25.013 SQL [3742]: pgsql_db_connect() -- 19:47:25.009 DEBUG [3740]: Database connection successful -- 19:47:25.009 INFO [3740]: _SERVER found -- 19:47:25.009 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 19:47:25.009 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:25.009 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:25.009 INFO [3740]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 19:47:25.009 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:25.021 INFO [3740]: COREGRADE is stopping... -- 19:47:25.021 DEBUG [3740]: Closing database connection -- 19:47:25.021 SQL [3740]: pgsql_close() -- 19:47:25.017 DEBUG [3742]: Database connection successful -- 19:47:25.017 INFO [3742]: _SERVER found -- 19:47:25.017 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 19:47:25.017 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:25.017 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:25.017 INFO [3742]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 19:47:25.017 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:25.029 INFO [3742]: COREGRADE is stopping... -- 19:47:25.029 DEBUG [3742]: Closing database connection -- 19:47:25.029 SQL [3742]: pgsql_close() -- 19:47:25.077 INFO [3829]: COREGRADE is starting... -- 19:47:25.077 INFO [3829]: Version from config: 1.0 -- 19:47:25.077 DEBUG [3829]: Connecting to database... -- 19:47:25.077 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:25.077 SQL [3829]: pgsql_db_connect() -- 19:47:25.087 INFO [3740]: COREGRADE is starting... -- 19:47:25.087 INFO [3740]: Version from config: 1.0 -- 19:47:25.087 DEBUG [3740]: Connecting to database... -- 19:47:25.087 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:25.087 SQL [3740]: pgsql_db_connect() -- 19:47:25.081 DEBUG [3829]: Database connection successful -- 19:47:25.081 INFO [3829]: _SERVER found -- 19:47:25.081 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 19:47:25.081 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:25.081 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:25.081 INFO [3829]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 19:47:25.081 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:25.093 INFO [3829]: COREGRADE is stopping... -- 19:47:25.093 DEBUG [3829]: Closing database connection -- 19:47:25.093 SQL [3829]: pgsql_close() -- 19:47:25.091 DEBUG [3740]: Database connection successful -- 19:47:25.091 INFO [3740]: _SERVER found -- 19:47:25.091 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 19:47:25.091 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:25.091 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:25.091 INFO [3740]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 19:47:25.091 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:25.103 INFO [3740]: COREGRADE is stopping... -- 19:47:25.103 DEBUG [3740]: Closing database connection -- 19:47:25.103 SQL [3740]: pgsql_close() -- 19:47:25.109 INFO [3742]: COREGRADE is starting... -- 19:47:25.110 INFO [3742]: Version from config: 1.0 -- 19:47:25.110 DEBUG [3742]: Connecting to database... -- 19:47:25.110 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:25.110 SQL [3742]: pgsql_db_connect() -- 19:47:25.114 DEBUG [3742]: Database connection successful -- 19:47:25.114 INFO [3742]: _SERVER found -- 19:47:25.114 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 19:47:25.114 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:25.114 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:25.114 INFO [3742]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 19:47:25.114 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:25.125 INFO [3742]: COREGRADE is stopping... -- 19:47:25.125 DEBUG [3742]: Closing database connection -- 19:47:25.125 SQL [3742]: pgsql_close() -- 19:47:25.170 INFO [3829]: COREGRADE is starting... -- 19:47:25.171 INFO [3829]: Version from config: 1.0 -- 19:47:25.171 DEBUG [3829]: Connecting to database... -- 19:47:25.171 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:25.171 SQL [3829]: pgsql_db_connect() -- 19:47:25.172 INFO [3740]: COREGRADE is starting... -- 19:47:25.173 INFO [3740]: Version from config: 1.0 -- 19:47:25.173 DEBUG [3740]: Connecting to database... -- 19:47:25.173 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:25.173 SQL [3740]: pgsql_db_connect() -- 19:47:25.175 DEBUG [3829]: Database connection successful -- 19:47:25.175 INFO [3829]: _SERVER found -- 19:47:25.175 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 19:47:25.175 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:25.175 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:25.175 INFO [3829]: QUERY_STRING = /assets/js/pages/dashboard.js -- 19:47:25.175 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:25.186 INFO [3829]: COREGRADE is stopping... -- 19:47:25.186 DEBUG [3829]: Closing database connection -- 19:47:25.186 SQL [3829]: pgsql_close() -- 19:47:25.176 DEBUG [3740]: Database connection successful -- 19:47:25.176 INFO [3740]: _SERVER found -- 19:47:25.176 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 19:47:25.176 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:25.176 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:25.176 INFO [3740]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 19:47:25.176 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:25.188 INFO [3740]: COREGRADE is stopping... -- 19:47:25.188 DEBUG [3740]: Closing database connection -- 19:47:25.188 SQL [3740]: pgsql_close() -- 19:47:25.197 INFO [3742]: COREGRADE is starting... -- 19:47:25.198 INFO [3742]: Version from config: 1.0 -- 19:47:25.198 DEBUG [3742]: Connecting to database... -- 19:47:25.198 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:25.198 SQL [3742]: pgsql_db_connect() -- 19:47:25.202 DEBUG [3742]: Database connection successful -- 19:47:25.202 INFO [3742]: _SERVER found -- 19:47:25.202 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 19:47:25.202 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:25.202 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:25.202 INFO [3742]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 19:47:25.202 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:25.213 INFO [3742]: COREGRADE is stopping... -- 19:47:25.213 DEBUG [3742]: Closing database connection -- 19:47:25.213 SQL [3742]: pgsql_close() -- 19:47:25.254 INFO [3740]: COREGRADE is starting... -- 19:47:25.254 INFO [3829]: COREGRADE is starting... -- 19:47:25.254 INFO [3829]: Version from config: 1.0 -- 19:47:25.254 DEBUG [3829]: Connecting to database... -- 19:47:25.254 INFO [3740]: Version from config: 1.0 -- 19:47:25.254 DEBUG [3740]: Connecting to database... -- 19:47:25.254 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:25.254 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:25.254 SQL [3829]: pgsql_db_connect() -- 19:47:25.254 SQL [3740]: pgsql_db_connect() -- 19:47:25.258 DEBUG [3740]: Database connection successful -- 19:47:25.258 INFO [3740]: _SERVER found -- 19:47:25.258 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 19:47:25.258 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:25.258 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:25.258 INFO [3740]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 19:47:25.258 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:25.270 INFO [3740]: COREGRADE is stopping... -- 19:47:25.258 DEBUG [3829]: Database connection successful -- 19:47:25.258 INFO [3829]: _SERVER found -- 19:47:25.258 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 19:47:25.258 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:25.258 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:25.258 INFO [3829]: QUERY_STRING = /assets/js/pages/picker_date.js -- 19:47:25.258 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:25.270 INFO [3829]: COREGRADE is stopping... -- 19:47:25.270 DEBUG [3740]: Closing database connection -- 19:47:25.270 DEBUG [3829]: Closing database connection -- 19:47:25.270 SQL [3740]: pgsql_close() -- 19:47:25.270 SQL [3829]: pgsql_close() -- 19:47:25.283 INFO [3742]: COREGRADE is starting... -- 19:47:25.283 INFO [3742]: Version from config: 1.0 -- 19:47:25.283 DEBUG [3742]: Connecting to database... -- 19:47:25.283 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:25.283 SQL [3742]: pgsql_db_connect() -- 19:47:25.287 DEBUG [3742]: Database connection successful -- 19:47:25.287 INFO [3742]: _SERVER found -- 19:47:25.287 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 19:47:25.287 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:25.287 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:25.287 INFO [3742]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 19:47:25.287 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:25.298 INFO [3742]: COREGRADE is stopping... -- 19:47:25.298 DEBUG [3742]: Closing database connection -- 19:47:25.298 SQL [3742]: pgsql_close() -- 19:47:25.336 INFO [3740]: COREGRADE is starting... -- 19:47:25.336 INFO [3829]: COREGRADE is starting... -- 19:47:25.336 INFO [3740]: Version from config: 1.0 -- 19:47:25.336 DEBUG [3740]: Connecting to database... -- 19:47:25.336 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:25.336 SQL [3740]: pgsql_db_connect() -- 19:47:25.336 INFO [3829]: Version from config: 1.0 -- 19:47:25.336 DEBUG [3829]: Connecting to database... -- 19:47:25.336 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:25.337 SQL [3829]: pgsql_db_connect() -- 19:47:25.340 DEBUG [3740]: Database connection successful -- 19:47:25.340 INFO [3740]: _SERVER found -- 19:47:25.340 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 19:47:25.340 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:25.340 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:25.340 INFO [3740]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 19:47:25.340 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:25.352 INFO [3740]: COREGRADE is stopping... -- 19:47:25.340 DEBUG [3829]: Database connection successful -- 19:47:25.340 INFO [3829]: _SERVER found -- 19:47:25.340 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 19:47:25.340 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:25.340 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:25.340 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 19:47:25.340 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:25.352 INFO [3829]: COREGRADE is stopping... -- 19:47:25.352 DEBUG [3740]: Closing database connection -- 19:47:25.352 DEBUG [3829]: Closing database connection -- 19:47:25.352 SQL [3740]: pgsql_close() -- 19:47:25.352 SQL [3829]: pgsql_close() -- 19:47:25.367 INFO [3742]: COREGRADE is starting... -- 19:47:25.367 INFO [3742]: Version from config: 1.0 -- 19:47:25.367 DEBUG [3742]: Connecting to database... -- 19:47:25.367 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:25.367 SQL [3742]: pgsql_db_connect() -- 19:47:25.371 DEBUG [3742]: Database connection successful -- 19:47:25.371 INFO [3742]: _SERVER found -- 19:47:25.371 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 19:47:25.371 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:25.371 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:25.371 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 19:47:25.371 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:25.383 INFO [3742]: COREGRADE is stopping... -- 19:47:25.383 DEBUG [3742]: Closing database connection -- 19:47:25.383 SQL [3742]: pgsql_close() -- 19:47:25.417 INFO [3829]: COREGRADE is starting... -- 19:47:25.417 INFO [3829]: Version from config: 1.0 -- 19:47:25.417 DEBUG [3829]: Connecting to database... -- 19:47:25.417 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:25.418 SQL [3829]: pgsql_db_connect() -- 19:47:25.419 INFO [3740]: COREGRADE is starting... -- 19:47:25.419 INFO [3740]: Version from config: 1.0 -- 19:47:25.419 DEBUG [3740]: Connecting to database... -- 19:47:25.419 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:25.419 SQL [3740]: pgsql_db_connect() -- 19:47:25.421 DEBUG [3829]: Database connection successful -- 19:47:25.421 INFO [3829]: _SERVER found -- 19:47:25.421 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 19:47:25.421 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:25.421 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:25.421 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 19:47:25.421 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:25.433 INFO [3829]: COREGRADE is stopping... -- 19:47:25.433 DEBUG [3829]: Closing database connection -- 19:47:25.433 SQL [3829]: pgsql_close() -- 19:47:25.423 DEBUG [3740]: Database connection successful -- 19:47:25.423 INFO [3740]: _SERVER found -- 19:47:25.423 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 19:47:25.423 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:25.423 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:25.423 INFO [3740]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 19:47:25.423 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:25.434 INFO [3740]: COREGRADE is stopping... -- 19:47:25.434 DEBUG [3740]: Closing database connection -- 19:47:25.434 SQL [3740]: pgsql_close() -- 19:47:25.452 INFO [3742]: COREGRADE is starting... -- 19:47:25.452 INFO [3742]: Version from config: 1.0 -- 19:47:25.452 DEBUG [3742]: Connecting to database... -- 19:47:25.452 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:25.452 SQL [3742]: pgsql_db_connect() -- 19:47:25.456 DEBUG [3742]: Database connection successful -- 19:47:25.456 INFO [3742]: _SERVER found -- 19:47:25.456 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 19:47:25.456 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:25.456 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:25.456 INFO [3742]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 19:47:25.456 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:25.467 INFO [3742]: COREGRADE is stopping... -- 19:47:25.467 DEBUG [3742]: Closing database connection -- 19:47:25.467 SQL [3742]: pgsql_close() -- 19:47:25.500 INFO [3740]: COREGRADE is starting... -- 19:47:25.500 INFO [3829]: COREGRADE is starting... -- 19:47:25.500 INFO [3829]: Version from config: 1.0 -- 19:47:25.500 DEBUG [3829]: Connecting to database... -- 19:47:25.500 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:25.500 SQL [3829]: pgsql_db_connect() -- 19:47:25.500 INFO [3740]: Version from config: 1.0 -- 19:47:25.500 DEBUG [3740]: Connecting to database... -- 19:47:25.500 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:25.501 SQL [3740]: pgsql_db_connect() -- 19:47:25.504 DEBUG [3829]: Database connection successful -- 19:47:25.504 INFO [3829]: _SERVER found -- 19:47:25.504 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 19:47:25.504 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:25.504 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:25.504 INFO [3829]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 19:47:25.504 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:25.516 INFO [3829]: COREGRADE is stopping... -- 19:47:25.504 DEBUG [3740]: Database connection successful -- 19:47:25.504 INFO [3740]: _SERVER found -- 19:47:25.504 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 19:47:25.504 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:25.504 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:25.504 INFO [3740]: QUERY_STRING = /assets/customjs/general.js -- 19:47:25.504 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:25.516 INFO [3740]: COREGRADE is stopping... -- 19:47:25.516 DEBUG [3829]: Closing database connection -- 19:47:25.516 DEBUG [3740]: Closing database connection -- 19:47:25.516 SQL [3829]: pgsql_close() -- 19:47:25.516 SQL [3740]: pgsql_close() -- 19:47:25.582 INFO [3829]: COREGRADE is starting... -- 19:47:25.582 INFO [3829]: Version from config: 1.0 -- 19:47:25.582 DEBUG [3829]: Connecting to database... -- 19:47:25.582 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:25.582 SQL [3829]: pgsql_db_connect() -- 19:47:25.588 DEBUG [3829]: Database connection successful -- 19:47:25.588 INFO [3829]: _SERVER found -- 19:47:25.588 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 19:47:25.588 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:25.588 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:25.588 INFO [3829]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 19:47:25.588 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:25.599 INFO [3829]: COREGRADE is stopping... -- 19:47:25.599 DEBUG [3829]: Closing database connection -- 19:47:25.599 SQL [3829]: pgsql_close() -- 19:47:25.666 INFO [3829]: COREGRADE is starting... -- 19:47:25.666 INFO [3829]: Version from config: 1.0 -- 19:47:25.666 DEBUG [3829]: Connecting to database... -- 19:47:25.666 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:25.666 SQL [3829]: pgsql_db_connect() -- 19:47:25.670 DEBUG [3829]: Database connection successful -- 19:47:25.670 INFO [3829]: _SERVER found -- 19:47:25.670 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 19:47:25.670 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:25.670 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:25.670 INFO [3829]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 19:47:25.670 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:25.681 INFO [3829]: COREGRADE is stopping... -- 19:47:25.681 DEBUG [3829]: Closing database connection -- 19:47:25.681 SQL [3829]: pgsql_close() -- 19:47:25.748 INFO [3829]: COREGRADE is starting... -- 19:47:25.748 INFO [3829]: Version from config: 1.0 -- 19:47:25.748 DEBUG [3829]: Connecting to database... -- 19:47:25.748 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:25.748 SQL [3829]: pgsql_db_connect() -- 19:47:25.752 DEBUG [3829]: Database connection successful -- 19:47:25.752 INFO [3829]: _SERVER found -- 19:47:25.752 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 19:47:25.752 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:25.752 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:25.752 INFO [3829]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 19:47:25.752 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:25.764 INFO [3829]: COREGRADE is stopping... -- 19:47:25.764 DEBUG [3829]: Closing database connection -- 19:47:25.764 SQL [3829]: pgsql_close() -- 19:47:25.830 INFO [3829]: COREGRADE is starting... -- 19:47:25.830 INFO [3829]: Version from config: 1.0 -- 19:47:25.830 DEBUG [3829]: Connecting to database... -- 19:47:25.830 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:25.831 SQL [3829]: pgsql_db_connect() -- 19:47:25.835 DEBUG [3829]: Database connection successful -- 19:47:25.835 INFO [3829]: _SERVER found -- 19:47:25.835 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 19:47:25.835 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:25.835 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:25.835 INFO [3829]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 19:47:25.835 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:25.846 INFO [3829]: COREGRADE is stopping... -- 19:47:25.846 DEBUG [3829]: Closing database connection -- 19:47:25.846 SQL [3829]: pgsql_close() -- 19:47:25.912 INFO [3829]: COREGRADE is starting... -- 19:47:25.912 INFO [3829]: Version from config: 1.0 -- 19:47:25.912 DEBUG [3829]: Connecting to database... -- 19:47:25.912 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:25.912 SQL [3829]: pgsql_db_connect() -- 19:47:25.916 DEBUG [3829]: Database connection successful -- 19:47:25.916 INFO [3829]: _SERVER found -- 19:47:25.916 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 19:47:25.916 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:25.916 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:25.916 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 19:47:25.916 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:25.928 INFO [3829]: COREGRADE is stopping... -- 19:47:25.928 DEBUG [3829]: Closing database connection -- 19:47:25.928 SQL [3829]: pgsql_close() -- 19:47:25.995 INFO [3829]: COREGRADE is starting... -- 19:47:25.995 INFO [3829]: Version from config: 1.0 -- 19:47:25.995 DEBUG [3829]: Connecting to database... -- 19:47:25.995 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:25.995 SQL [3829]: pgsql_db_connect() -- 19:47:25.999 DEBUG [3829]: Database connection successful -- 19:47:25.999 INFO [3829]: _SERVER found -- 19:47:25.999 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 19:47:25.999 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:25.999 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:25.999 INFO [3829]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 19:47:25.999 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:26.010 INFO [3829]: COREGRADE is stopping... -- 19:47:26.010 DEBUG [3829]: Closing database connection -- 19:47:26.010 SQL [3829]: pgsql_close() -- 19:47:26.077 INFO [3829]: COREGRADE is starting... -- 19:47:26.077 INFO [3829]: Version from config: 1.0 -- 19:47:26.077 DEBUG [3829]: Connecting to database... -- 19:47:26.077 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:26.077 SQL [3829]: pgsql_db_connect() -- 19:47:26.081 DEBUG [3829]: Database connection successful -- 19:47:26.081 INFO [3829]: _SERVER found -- 19:47:26.081 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 19:47:26.081 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:26.081 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:26.081 INFO [3829]: QUERY_STRING = /assets/js/pages/dashboard.js -- 19:47:26.081 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:26.093 INFO [3829]: COREGRADE is stopping... -- 19:47:26.093 DEBUG [3829]: Closing database connection -- 19:47:26.093 SQL [3829]: pgsql_close() -- 19:47:26.160 INFO [3829]: COREGRADE is starting... -- 19:47:26.160 INFO [3829]: Version from config: 1.0 -- 19:47:26.160 DEBUG [3829]: Connecting to database... -- 19:47:26.160 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:26.160 SQL [3829]: pgsql_db_connect() -- 19:47:26.165 DEBUG [3829]: Database connection successful -- 19:47:26.165 INFO [3829]: _SERVER found -- 19:47:26.165 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 19:47:26.165 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:26.165 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:26.165 INFO [3829]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 19:47:26.165 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:26.176 INFO [3829]: COREGRADE is stopping... -- 19:47:26.176 DEBUG [3829]: Closing database connection -- 19:47:26.176 SQL [3829]: pgsql_close() -- 19:47:26.242 INFO [3829]: COREGRADE is starting... -- 19:47:26.243 INFO [3829]: Version from config: 1.0 -- 19:47:26.243 DEBUG [3829]: Connecting to database... -- 19:47:26.243 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:26.243 SQL [3829]: pgsql_db_connect() -- 19:47:26.247 DEBUG [3829]: Database connection successful -- 19:47:26.247 INFO [3829]: _SERVER found -- 19:47:26.247 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 19:47:26.247 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:26.247 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:26.247 INFO [3829]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 19:47:26.247 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:26.258 INFO [3829]: COREGRADE is stopping... -- 19:47:26.258 DEBUG [3829]: Closing database connection -- 19:47:26.258 SQL [3829]: pgsql_close() -- 19:47:26.324 INFO [3829]: COREGRADE is starting... -- 19:47:26.325 INFO [3829]: Version from config: 1.0 -- 19:47:26.325 DEBUG [3829]: Connecting to database... -- 19:47:26.325 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:26.325 SQL [3829]: pgsql_db_connect() -- 19:47:26.329 DEBUG [3829]: Database connection successful -- 19:47:26.329 INFO [3829]: _SERVER found -- 19:47:26.329 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 19:47:26.329 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:26.329 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:26.329 INFO [3829]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 19:47:26.329 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:26.340 INFO [3829]: COREGRADE is stopping... -- 19:47:26.340 DEBUG [3829]: Closing database connection -- 19:47:26.340 SQL [3829]: pgsql_close() -- 19:47:26.407 INFO [3829]: COREGRADE is starting... -- 19:47:26.407 INFO [3829]: Version from config: 1.0 -- 19:47:26.407 DEBUG [3829]: Connecting to database... -- 19:47:26.407 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:26.407 SQL [3829]: pgsql_db_connect() -- 19:47:26.411 DEBUG [3829]: Database connection successful -- 19:47:26.411 INFO [3829]: _SERVER found -- 19:47:26.411 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 19:47:26.411 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:26.411 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:26.411 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 19:47:26.411 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:26.423 INFO [3829]: COREGRADE is stopping... -- 19:47:26.423 DEBUG [3829]: Closing database connection -- 19:47:26.423 SQL [3829]: pgsql_close() -- 19:47:26.489 INFO [3829]: COREGRADE is starting... -- 19:47:26.489 INFO [3829]: Version from config: 1.0 -- 19:47:26.489 DEBUG [3829]: Connecting to database... -- 19:47:26.489 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:26.489 SQL [3829]: pgsql_db_connect() -- 19:47:26.493 DEBUG [3829]: Database connection successful -- 19:47:26.493 INFO [3829]: _SERVER found -- 19:47:26.493 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 19:47:26.493 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:26.493 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:26.493 INFO [3829]: QUERY_STRING = /assets/js/pages/picker_date.js -- 19:47:26.493 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:26.505 INFO [3829]: COREGRADE is stopping... -- 19:47:26.505 DEBUG [3829]: Closing database connection -- 19:47:26.505 SQL [3829]: pgsql_close() -- 19:47:26.571 INFO [3829]: COREGRADE is starting... -- 19:47:26.571 INFO [3829]: Version from config: 1.0 -- 19:47:26.571 DEBUG [3829]: Connecting to database... -- 19:47:26.572 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:26.572 SQL [3829]: pgsql_db_connect() -- 19:47:26.576 DEBUG [3829]: Database connection successful -- 19:47:26.576 INFO [3829]: _SERVER found -- 19:47:26.576 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 19:47:26.576 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:26.576 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:26.576 INFO [3829]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 19:47:26.576 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:26.587 INFO [3829]: COREGRADE is stopping... -- 19:47:26.587 DEBUG [3829]: Closing database connection -- 19:47:26.587 SQL [3829]: pgsql_close() -- 19:47:26.653 INFO [3829]: COREGRADE is starting... -- 19:47:26.654 INFO [3829]: Version from config: 1.0 -- 19:47:26.654 DEBUG [3829]: Connecting to database... -- 19:47:26.654 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:26.654 SQL [3829]: pgsql_db_connect() -- 19:47:26.658 DEBUG [3829]: Database connection successful -- 19:47:26.658 INFO [3829]: _SERVER found -- 19:47:26.658 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 19:47:26.658 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:26.658 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:26.658 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 19:47:26.658 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:26.669 INFO [3829]: COREGRADE is stopping... -- 19:47:26.669 DEBUG [3829]: Closing database connection -- 19:47:26.669 SQL [3829]: pgsql_close() -- 19:47:26.735 INFO [3829]: COREGRADE is starting... -- 19:47:26.735 INFO [3829]: Version from config: 1.0 -- 19:47:26.735 DEBUG [3829]: Connecting to database... -- 19:47:26.735 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:26.735 SQL [3829]: pgsql_db_connect() -- 19:47:26.739 DEBUG [3829]: Database connection successful -- 19:47:26.739 INFO [3829]: _SERVER found -- 19:47:26.739 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 19:47:26.739 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:26.739 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:26.739 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 19:47:26.739 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:26.751 INFO [3829]: COREGRADE is stopping... -- 19:47:26.751 DEBUG [3829]: Closing database connection -- 19:47:26.751 SQL [3829]: pgsql_close() -- 19:47:26.817 INFO [3829]: COREGRADE is starting... -- 19:47:26.817 INFO [3829]: Version from config: 1.0 -- 19:47:26.817 DEBUG [3829]: Connecting to database... -- 19:47:26.817 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:26.817 SQL [3829]: pgsql_db_connect() -- 19:47:26.821 DEBUG [3829]: Database connection successful -- 19:47:26.821 INFO [3829]: _SERVER found -- 19:47:26.821 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 19:47:26.821 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:26.821 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:26.821 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 19:47:26.821 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:26.833 INFO [3829]: COREGRADE is stopping... -- 19:47:26.833 DEBUG [3829]: Closing database connection -- 19:47:26.833 SQL [3829]: pgsql_close() -- 19:47:26.899 INFO [3829]: COREGRADE is starting... -- 19:47:26.899 INFO [3829]: Version from config: 1.0 -- 19:47:26.899 DEBUG [3829]: Connecting to database... -- 19:47:26.899 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:26.899 SQL [3829]: pgsql_db_connect() -- 19:47:26.903 DEBUG [3829]: Database connection successful -- 19:47:26.903 INFO [3829]: _SERVER found -- 19:47:26.903 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 19:47:26.903 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:26.903 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:26.903 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 19:47:26.903 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:26.915 INFO [3829]: COREGRADE is stopping... -- 19:47:26.915 DEBUG [3829]: Closing database connection -- 19:47:26.915 SQL [3829]: pgsql_close() -- 19:47:26.990 INFO [3829]: COREGRADE is starting... -- 19:47:26.991 INFO [3829]: Version from config: 1.0 -- 19:47:26.991 DEBUG [3829]: Connecting to database... -- 19:47:26.991 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:26.991 SQL [3829]: pgsql_db_connect() -- 19:47:26.995 DEBUG [3829]: Database connection successful -- 19:47:26.995 INFO [3829]: _SERVER found -- 19:47:26.995 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 19:47:26.995 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:26.995 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:26.995 INFO [3829]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 19:47:26.995 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:27.006 INFO [3829]: COREGRADE is stopping... -- 19:47:27.006 DEBUG [3829]: Closing database connection -- 19:47:27.006 SQL [3829]: pgsql_close() -- 19:47:27.073 INFO [3829]: COREGRADE is starting... -- 19:47:27.073 INFO [3829]: Version from config: 1.0 -- 19:47:27.073 DEBUG [3829]: Connecting to database... -- 19:47:27.073 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:27.073 SQL [3829]: pgsql_db_connect() -- 19:47:27.077 DEBUG [3829]: Database connection successful -- 19:47:27.077 INFO [3829]: _SERVER found -- 19:47:27.077 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 19:47:27.077 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:27.077 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:27.077 INFO [3829]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 19:47:27.077 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:27.089 INFO [3829]: COREGRADE is stopping... -- 19:47:27.089 DEBUG [3829]: Closing database connection -- 19:47:27.089 SQL [3829]: pgsql_close() -- 19:47:27.157 INFO [3829]: COREGRADE is starting... -- 19:47:27.157 INFO [3829]: Version from config: 1.0 -- 19:47:27.157 DEBUG [3829]: Connecting to database... -- 19:47:27.157 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:47:27.157 SQL [3829]: pgsql_db_connect() -- 19:47:27.161 DEBUG [3829]: Database connection successful -- 19:47:27.161 INFO [3829]: _SERVER found -- 19:47:27.161 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 19:47:27.161 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:47:27.161 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 19:47:27.161 INFO [3829]: QUERY_STRING = /assets/customjs/general.js -- 19:47:27.161 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 19:47:27.173 INFO [3829]: COREGRADE is stopping... -- 19:47:27.173 DEBUG [3829]: Closing database connection -- 19:47:27.173 SQL [3829]: pgsql_close() -- 20:07:27.396 INFO [3741]: COREGRADE is starting... -- 20:07:27.396 INFO [3741]: Version from config: 1.0 -- 20:07:27.396 DEBUG [3741]: Connecting to database... -- 20:07:27.396 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:27.396 SQL [3741]: pgsql_db_connect() -- 20:07:27.401 DEBUG [3741]: Database connection successful -- 20:07:27.401 INFO [3741]: _SERVER found -- 20:07:27.401 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 20:07:27.401 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:27.401 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=c7hba10frd9hngr1docbm8gi9njlagdh -- 20:07:27.401 INFO [3741]: QUERY_STRING = /logout -- 20:07:27.401 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:27.435 INFO [3741]: COREGRADE is stopping... -- 20:07:27.435 DEBUG [3741]: Closing database connection -- 20:07:27.435 SQL [3741]: pgsql_close() -- 20:07:27.513 INFO [3741]: COREGRADE is starting... -- 20:07:27.514 INFO [3741]: Version from config: 1.0 -- 20:07:27.514 DEBUG [3741]: Connecting to database... -- 20:07:27.514 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:27.514 SQL [3741]: pgsql_db_connect() -- 20:07:27.518 DEBUG [3741]: Database connection successful -- 20:07:27.518 INFO [3741]: _SERVER found -- 20:07:27.518 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 20:07:27.518 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:27.518 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:27.518 INFO [3741]: QUERY_STRING = /start -- 20:07:27.518 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:27.552 INFO [3741]: COREGRADE is stopping... -- 20:07:27.552 DEBUG [3741]: Closing database connection -- 20:07:27.552 SQL [3741]: pgsql_close() -- 20:07:27.679 INFO [3800]: COREGRADE is starting... -- 20:07:27.679 INFO [3800]: Version from config: 1.0 -- 20:07:27.679 DEBUG [3800]: Connecting to database... -- 20:07:27.679 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:27.679 SQL [3800]: pgsql_db_connect() -- 20:07:27.683 DEBUG [3800]: Database connection successful -- 20:07:27.683 INFO [3800]: _SERVER found -- 20:07:27.683 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 20:07:27.683 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:27.683 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:27.683 INFO [3800]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 20:07:27.683 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:27.695 INFO [3800]: COREGRADE is stopping... -- 20:07:27.695 DEBUG [3800]: Closing database connection -- 20:07:27.695 SQL [3800]: pgsql_close() -- 20:07:27.700 INFO [3741]: COREGRADE is starting... -- 20:07:27.700 INFO [3741]: Version from config: 1.0 -- 20:07:27.700 DEBUG [3741]: Connecting to database... -- 20:07:27.700 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:27.700 SQL [3741]: pgsql_db_connect() -- 20:07:27.704 DEBUG [3741]: Database connection successful -- 20:07:27.704 INFO [3741]: _SERVER found -- 20:07:27.704 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 20:07:27.704 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:27.704 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:27.704 INFO [3741]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 20:07:27.704 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:27.716 INFO [3741]: COREGRADE is stopping... -- 20:07:27.716 DEBUG [3741]: Closing database connection -- 20:07:27.716 SQL [3741]: pgsql_close() -- 20:07:27.754 INFO [3828]: COREGRADE is starting... -- 20:07:27.754 INFO [3828]: Version from config: 1.0 -- 20:07:27.754 DEBUG [3828]: Connecting to database... -- 20:07:27.754 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:27.754 SQL [3828]: pgsql_db_connect() -- 20:07:27.758 DEBUG [3828]: Database connection successful -- 20:07:27.758 INFO [3828]: _SERVER found -- 20:07:27.758 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 20:07:27.758 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:27.758 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:27.758 INFO [3828]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 20:07:27.758 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:27.770 INFO [3828]: COREGRADE is stopping... -- 20:07:27.770 DEBUG [3828]: Closing database connection -- 20:07:27.770 SQL [3828]: pgsql_close() -- 20:07:27.774 INFO [3800]: COREGRADE is starting... -- 20:07:27.775 INFO [3800]: Version from config: 1.0 -- 20:07:27.775 DEBUG [3800]: Connecting to database... -- 20:07:27.775 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:27.775 SQL [3800]: pgsql_db_connect() -- 20:07:27.781 INFO [3741]: COREGRADE is starting... -- 20:07:27.782 INFO [3741]: Version from config: 1.0 -- 20:07:27.782 DEBUG [3741]: Connecting to database... -- 20:07:27.782 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:27.782 SQL [3741]: pgsql_db_connect() -- 20:07:27.779 DEBUG [3800]: Database connection successful -- 20:07:27.779 INFO [3800]: _SERVER found -- 20:07:27.779 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 20:07:27.779 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:27.779 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:27.779 INFO [3800]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 20:07:27.779 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:27.790 INFO [3800]: COREGRADE is stopping... -- 20:07:27.790 DEBUG [3800]: Closing database connection -- 20:07:27.790 SQL [3800]: pgsql_close() -- 20:07:27.786 DEBUG [3741]: Database connection successful -- 20:07:27.786 INFO [3741]: _SERVER found -- 20:07:27.786 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 20:07:27.786 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:27.786 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:27.786 INFO [3741]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 20:07:27.786 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:27.797 INFO [3741]: COREGRADE is stopping... -- 20:07:27.797 DEBUG [3741]: Closing database connection -- 20:07:27.797 SQL [3741]: pgsql_close() -- 20:07:27.855 INFO [3828]: COREGRADE is starting... -- 20:07:27.855 INFO [3828]: Version from config: 1.0 -- 20:07:27.855 DEBUG [3828]: Connecting to database... -- 20:07:27.855 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:27.855 SQL [3828]: pgsql_db_connect() -- 20:07:27.863 INFO [3741]: COREGRADE is starting... -- 20:07:27.863 INFO [3741]: Version from config: 1.0 -- 20:07:27.863 DEBUG [3741]: Connecting to database... -- 20:07:27.863 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:27.863 SQL [3741]: pgsql_db_connect() -- 20:07:27.868 INFO [3800]: COREGRADE is starting... -- 20:07:27.868 INFO [3800]: Version from config: 1.0 -- 20:07:27.868 DEBUG [3800]: Connecting to database... -- 20:07:27.868 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:27.868 SQL [3800]: pgsql_db_connect() -- 20:07:27.859 DEBUG [3828]: Database connection successful -- 20:07:27.859 INFO [3828]: _SERVER found -- 20:07:27.859 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 20:07:27.859 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:27.859 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:27.859 INFO [3828]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 20:07:27.859 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:27.871 INFO [3828]: COREGRADE is stopping... -- 20:07:27.871 DEBUG [3828]: Closing database connection -- 20:07:27.871 SQL [3828]: pgsql_close() -- 20:07:27.867 DEBUG [3741]: Database connection successful -- 20:07:27.867 INFO [3741]: _SERVER found -- 20:07:27.867 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 20:07:27.867 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:27.867 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:27.867 INFO [3741]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 20:07:27.867 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:27.879 INFO [3741]: COREGRADE is stopping... -- 20:07:27.879 DEBUG [3741]: Closing database connection -- 20:07:27.879 SQL [3741]: pgsql_close() -- 20:07:27.872 DEBUG [3800]: Database connection successful -- 20:07:27.872 INFO [3800]: _SERVER found -- 20:07:27.872 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 20:07:27.872 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:27.872 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:27.872 INFO [3800]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 20:07:27.872 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:27.884 INFO [3800]: COREGRADE is stopping... -- 20:07:27.884 DEBUG [3800]: Closing database connection -- 20:07:27.884 SQL [3800]: pgsql_close() -- 20:07:27.944 INFO [3741]: COREGRADE is starting... -- 20:07:27.944 INFO [3741]: Version from config: 1.0 -- 20:07:27.944 DEBUG [3741]: Connecting to database... -- 20:07:27.945 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:27.945 SQL [3741]: pgsql_db_connect() -- 20:07:27.955 INFO [3828]: COREGRADE is starting... -- 20:07:27.956 INFO [3828]: Version from config: 1.0 -- 20:07:27.956 DEBUG [3828]: Connecting to database... -- 20:07:27.956 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:27.956 SQL [3828]: pgsql_db_connect() -- 20:07:27.948 DEBUG [3741]: Database connection successful -- 20:07:27.948 INFO [3741]: _SERVER found -- 20:07:27.948 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 20:07:27.948 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:27.949 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:27.949 INFO [3741]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 20:07:27.949 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:27.960 INFO [3741]: COREGRADE is stopping... -- 20:07:27.960 DEBUG [3741]: Closing database connection -- 20:07:27.960 SQL [3741]: pgsql_close() -- 20:07:27.961 INFO [3800]: COREGRADE is starting... -- 20:07:27.961 INFO [3800]: Version from config: 1.0 -- 20:07:27.961 DEBUG [3800]: Connecting to database... -- 20:07:27.961 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:27.961 SQL [3800]: pgsql_db_connect() -- 20:07:27.960 DEBUG [3828]: Database connection successful -- 20:07:27.960 INFO [3828]: _SERVER found -- 20:07:27.960 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 20:07:27.960 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:27.960 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:27.960 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 20:07:27.960 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:27.971 INFO [3828]: COREGRADE is stopping... -- 20:07:27.971 DEBUG [3828]: Closing database connection -- 20:07:27.972 SQL [3828]: pgsql_close() -- 20:07:27.965 DEBUG [3800]: Database connection successful -- 20:07:27.965 INFO [3800]: _SERVER found -- 20:07:27.965 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 20:07:27.965 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:27.965 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:27.965 INFO [3800]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 20:07:27.965 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:27.977 INFO [3800]: COREGRADE is stopping... -- 20:07:27.977 DEBUG [3800]: Closing database connection -- 20:07:27.977 SQL [3800]: pgsql_close() -- 20:07:28.027 INFO [3741]: COREGRADE is starting... -- 20:07:28.027 INFO [3741]: Version from config: 1.0 -- 20:07:28.027 DEBUG [3741]: Connecting to database... -- 20:07:28.027 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:28.027 SQL [3741]: pgsql_db_connect() -- 20:07:28.031 DEBUG [3741]: Database connection successful -- 20:07:28.031 INFO [3741]: _SERVER found -- 20:07:28.031 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 20:07:28.031 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:28.031 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:28.031 INFO [3741]: QUERY_STRING = /assets/js/pages/dashboard.js -- 20:07:28.031 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:28.042 INFO [3741]: COREGRADE is stopping... -- 20:07:28.042 DEBUG [3741]: Closing database connection -- 20:07:28.042 SQL [3741]: pgsql_close() -- 20:07:28.045 INFO [3800]: COREGRADE is starting... -- 20:07:28.046 INFO [3800]: Version from config: 1.0 -- 20:07:28.046 DEBUG [3800]: Connecting to database... -- 20:07:28.046 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:28.046 SQL [3800]: pgsql_db_connect() -- 20:07:28.054 INFO [3828]: COREGRADE is starting... -- 20:07:28.054 INFO [3828]: Version from config: 1.0 -- 20:07:28.054 DEBUG [3828]: Connecting to database... -- 20:07:28.054 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:28.054 SQL [3828]: pgsql_db_connect() -- 20:07:28.050 DEBUG [3800]: Database connection successful -- 20:07:28.050 INFO [3800]: _SERVER found -- 20:07:28.050 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 20:07:28.050 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:28.050 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:28.050 INFO [3800]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 20:07:28.050 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:28.061 INFO [3800]: COREGRADE is stopping... -- 20:07:28.061 DEBUG [3800]: Closing database connection -- 20:07:28.061 SQL [3800]: pgsql_close() -- 20:07:28.058 DEBUG [3828]: Database connection successful -- 20:07:28.058 INFO [3828]: _SERVER found -- 20:07:28.058 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 20:07:28.058 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:28.058 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:28.058 INFO [3828]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 20:07:28.058 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:28.069 INFO [3828]: COREGRADE is stopping... -- 20:07:28.069 DEBUG [3828]: Closing database connection -- 20:07:28.069 SQL [3828]: pgsql_close() -- 20:07:28.108 INFO [3741]: COREGRADE is starting... -- 20:07:28.109 INFO [3741]: Version from config: 1.0 -- 20:07:28.109 DEBUG [3741]: Connecting to database... -- 20:07:28.109 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:28.109 SQL [3741]: pgsql_db_connect() -- 20:07:28.113 DEBUG [3741]: Database connection successful -- 20:07:28.113 INFO [3741]: _SERVER found -- 20:07:28.113 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 20:07:28.113 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:28.113 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:28.113 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 20:07:28.113 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:28.124 INFO [3741]: COREGRADE is stopping... -- 20:07:28.124 DEBUG [3741]: Closing database connection -- 20:07:28.124 SQL [3741]: pgsql_close() -- 20:07:28.128 INFO [3800]: COREGRADE is starting... -- 20:07:28.128 INFO [3800]: Version from config: 1.0 -- 20:07:28.128 DEBUG [3800]: Connecting to database... -- 20:07:28.128 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:28.128 SQL [3800]: pgsql_db_connect() -- 20:07:28.142 INFO [3828]: COREGRADE is starting... -- 20:07:28.142 INFO [3828]: Version from config: 1.0 -- 20:07:28.142 DEBUG [3828]: Connecting to database... -- 20:07:28.142 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:28.142 SQL [3828]: pgsql_db_connect() -- 20:07:28.132 DEBUG [3800]: Database connection successful -- 20:07:28.132 INFO [3800]: _SERVER found -- 20:07:28.132 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 20:07:28.132 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:28.132 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:28.132 INFO [3800]: QUERY_STRING = /assets/js/pages/picker_date.js -- 20:07:28.132 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:28.144 INFO [3800]: COREGRADE is stopping... -- 20:07:28.144 DEBUG [3800]: Closing database connection -- 20:07:28.144 SQL [3800]: pgsql_close() -- 20:07:28.146 DEBUG [3828]: Database connection successful -- 20:07:28.146 INFO [3828]: _SERVER found -- 20:07:28.146 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 20:07:28.146 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:28.146 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:28.146 INFO [3828]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 20:07:28.146 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:28.158 INFO [3828]: COREGRADE is stopping... -- 20:07:28.158 DEBUG [3828]: Closing database connection -- 20:07:28.158 SQL [3828]: pgsql_close() -- 20:07:28.190 INFO [3741]: COREGRADE is starting... -- 20:07:28.190 INFO [3741]: Version from config: 1.0 -- 20:07:28.190 DEBUG [3741]: Connecting to database... -- 20:07:28.190 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:28.190 SQL [3741]: pgsql_db_connect() -- 20:07:28.194 DEBUG [3741]: Database connection successful -- 20:07:28.194 INFO [3741]: _SERVER found -- 20:07:28.194 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 20:07:28.194 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:28.194 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:28.194 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 20:07:28.194 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:28.206 INFO [3741]: COREGRADE is stopping... -- 20:07:28.206 DEBUG [3741]: Closing database connection -- 20:07:28.206 SQL [3741]: pgsql_close() -- 20:07:28.210 INFO [3800]: COREGRADE is starting... -- 20:07:28.210 INFO [3800]: Version from config: 1.0 -- 20:07:28.210 DEBUG [3800]: Connecting to database... -- 20:07:28.210 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:28.210 SQL [3800]: pgsql_db_connect() -- 20:07:28.214 DEBUG [3800]: Database connection successful -- 20:07:28.214 INFO [3800]: _SERVER found -- 20:07:28.214 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 20:07:28.214 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:28.214 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:28.214 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 20:07:28.214 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:28.226 INFO [3800]: COREGRADE is stopping... -- 20:07:28.226 DEBUG [3800]: Closing database connection -- 20:07:28.226 SQL [3800]: pgsql_close() -- 20:07:28.229 INFO [3828]: COREGRADE is starting... -- 20:07:28.229 INFO [3828]: Version from config: 1.0 -- 20:07:28.229 DEBUG [3828]: Connecting to database... -- 20:07:28.229 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:28.229 SQL [3828]: pgsql_db_connect() -- 20:07:28.233 DEBUG [3828]: Database connection successful -- 20:07:28.233 INFO [3828]: _SERVER found -- 20:07:28.233 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 20:07:28.233 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:28.233 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:28.233 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 20:07:28.233 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:28.245 INFO [3828]: COREGRADE is stopping... -- 20:07:28.245 DEBUG [3828]: Closing database connection -- 20:07:28.245 SQL [3828]: pgsql_close() -- 20:07:28.272 INFO [3741]: COREGRADE is starting... -- 20:07:28.272 INFO [3741]: Version from config: 1.0 -- 20:07:28.272 DEBUG [3741]: Connecting to database... -- 20:07:28.272 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:28.272 SQL [3741]: pgsql_db_connect() -- 20:07:28.276 DEBUG [3741]: Database connection successful -- 20:07:28.276 INFO [3741]: _SERVER found -- 20:07:28.276 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 20:07:28.276 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:28.276 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:28.276 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 20:07:28.276 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:28.289 INFO [3741]: COREGRADE is stopping... -- 20:07:28.289 DEBUG [3741]: Closing database connection -- 20:07:28.289 SQL [3741]: pgsql_close() -- 20:07:28.292 INFO [3800]: COREGRADE is starting... -- 20:07:28.292 INFO [3800]: Version from config: 1.0 -- 20:07:28.292 DEBUG [3800]: Connecting to database... -- 20:07:28.292 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:28.292 SQL [3800]: pgsql_db_connect() -- 20:07:28.296 DEBUG [3800]: Database connection successful -- 20:07:28.296 INFO [3800]: _SERVER found -- 20:07:28.296 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 20:07:28.296 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:28.296 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:28.296 INFO [3800]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 20:07:28.296 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:28.308 INFO [3800]: COREGRADE is stopping... -- 20:07:28.308 DEBUG [3800]: Closing database connection -- 20:07:28.308 SQL [3800]: pgsql_close() -- 20:07:28.316 INFO [3828]: COREGRADE is starting... -- 20:07:28.316 INFO [3828]: Version from config: 1.0 -- 20:07:28.316 DEBUG [3828]: Connecting to database... -- 20:07:28.316 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:28.316 SQL [3828]: pgsql_db_connect() -- 20:07:28.320 DEBUG [3828]: Database connection successful -- 20:07:28.320 INFO [3828]: _SERVER found -- 20:07:28.320 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 20:07:28.320 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:28.320 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:28.320 INFO [3828]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 20:07:28.320 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:28.332 INFO [3828]: COREGRADE is stopping... -- 20:07:28.332 DEBUG [3828]: Closing database connection -- 20:07:28.332 SQL [3828]: pgsql_close() -- 20:07:28.355 INFO [3741]: COREGRADE is starting... -- 20:07:28.355 INFO [3741]: Version from config: 1.0 -- 20:07:28.355 DEBUG [3741]: Connecting to database... -- 20:07:28.355 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:28.355 SQL [3741]: pgsql_db_connect() -- 20:07:28.359 DEBUG [3741]: Database connection successful -- 20:07:28.359 INFO [3741]: _SERVER found -- 20:07:28.359 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 20:07:28.359 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:28.359 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:28.359 INFO [3741]: QUERY_STRING = /assets/customjs/general.js -- 20:07:28.359 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:28.370 INFO [3741]: COREGRADE is stopping... -- 20:07:28.370 DEBUG [3741]: Closing database connection -- 20:07:28.370 SQL [3741]: pgsql_close() -- 20:07:28.374 INFO [3800]: COREGRADE is starting... -- 20:07:28.374 INFO [3800]: Version from config: 1.0 -- 20:07:28.374 DEBUG [3800]: Connecting to database... -- 20:07:28.374 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:28.374 SQL [3800]: pgsql_db_connect() -- 20:07:28.378 DEBUG [3800]: Database connection successful -- 20:07:28.378 INFO [3800]: _SERVER found -- 20:07:28.378 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 20:07:28.378 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:28.378 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:28.378 INFO [3800]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 20:07:28.378 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:28.390 INFO [3800]: COREGRADE is stopping... -- 20:07:28.390 DEBUG [3800]: Closing database connection -- 20:07:28.390 SQL [3800]: pgsql_close() -- 20:07:28.456 INFO [3800]: COREGRADE is starting... -- 20:07:28.456 INFO [3800]: Version from config: 1.0 -- 20:07:28.456 DEBUG [3800]: Connecting to database... -- 20:07:28.456 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:28.456 SQL [3800]: pgsql_db_connect() -- 20:07:28.460 DEBUG [3800]: Database connection successful -- 20:07:28.460 INFO [3800]: _SERVER found -- 20:07:28.460 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 20:07:28.460 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:28.460 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:28.460 INFO [3800]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 20:07:28.460 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:28.472 INFO [3800]: COREGRADE is stopping... -- 20:07:28.472 DEBUG [3800]: Closing database connection -- 20:07:28.472 SQL [3800]: pgsql_close() -- 20:07:28.538 INFO [3800]: COREGRADE is starting... -- 20:07:28.539 INFO [3800]: Version from config: 1.0 -- 20:07:28.539 DEBUG [3800]: Connecting to database... -- 20:07:28.539 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:28.539 SQL [3800]: pgsql_db_connect() -- 20:07:28.543 DEBUG [3800]: Database connection successful -- 20:07:28.543 INFO [3800]: _SERVER found -- 20:07:28.543 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 20:07:28.543 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:28.543 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:28.543 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 20:07:28.543 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:28.554 INFO [3800]: COREGRADE is stopping... -- 20:07:28.554 DEBUG [3800]: Closing database connection -- 20:07:28.554 SQL [3800]: pgsql_close() -- 20:07:28.621 INFO [3800]: COREGRADE is starting... -- 20:07:28.621 INFO [3800]: Version from config: 1.0 -- 20:07:28.621 DEBUG [3800]: Connecting to database... -- 20:07:28.621 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:28.621 SQL [3800]: pgsql_db_connect() -- 20:07:28.625 DEBUG [3800]: Database connection successful -- 20:07:28.625 INFO [3800]: _SERVER found -- 20:07:28.625 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 20:07:28.625 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:28.625 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:28.625 INFO [3800]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 20:07:28.625 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:28.637 INFO [3800]: COREGRADE is stopping... -- 20:07:28.637 DEBUG [3800]: Closing database connection -- 20:07:28.637 SQL [3800]: pgsql_close() -- 20:07:28.704 INFO [3800]: COREGRADE is starting... -- 20:07:28.705 INFO [3800]: Version from config: 1.0 -- 20:07:28.705 DEBUG [3800]: Connecting to database... -- 20:07:28.705 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:28.705 SQL [3800]: pgsql_db_connect() -- 20:07:28.709 DEBUG [3800]: Database connection successful -- 20:07:28.709 INFO [3800]: _SERVER found -- 20:07:28.709 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 20:07:28.709 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:28.709 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:28.709 INFO [3800]: QUERY_STRING = /assets/js/pages/dashboard.js -- 20:07:28.709 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:28.721 INFO [3800]: COREGRADE is stopping... -- 20:07:28.721 DEBUG [3800]: Closing database connection -- 20:07:28.721 SQL [3800]: pgsql_close() -- 20:07:28.789 INFO [3800]: COREGRADE is starting... -- 20:07:28.790 INFO [3800]: Version from config: 1.0 -- 20:07:28.790 DEBUG [3800]: Connecting to database... -- 20:07:28.790 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:28.790 SQL [3800]: pgsql_db_connect() -- 20:07:28.794 DEBUG [3800]: Database connection successful -- 20:07:28.794 INFO [3800]: _SERVER found -- 20:07:28.794 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 20:07:28.794 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:28.794 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:28.794 INFO [3800]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 20:07:28.794 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:28.805 INFO [3800]: COREGRADE is stopping... -- 20:07:28.805 DEBUG [3800]: Closing database connection -- 20:07:28.805 SQL [3800]: pgsql_close() -- 20:07:28.873 INFO [3800]: COREGRADE is starting... -- 20:07:28.873 INFO [3800]: Version from config: 1.0 -- 20:07:28.873 DEBUG [3800]: Connecting to database... -- 20:07:28.873 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:28.873 SQL [3800]: pgsql_db_connect() -- 20:07:28.878 DEBUG [3800]: Database connection successful -- 20:07:28.878 INFO [3800]: _SERVER found -- 20:07:28.878 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 20:07:28.878 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:28.878 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:28.878 INFO [3800]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 20:07:28.878 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:28.889 INFO [3800]: COREGRADE is stopping... -- 20:07:28.889 DEBUG [3800]: Closing database connection -- 20:07:28.889 SQL [3800]: pgsql_close() -- 20:07:28.956 INFO [3800]: COREGRADE is starting... -- 20:07:28.956 INFO [3800]: Version from config: 1.0 -- 20:07:28.956 DEBUG [3800]: Connecting to database... -- 20:07:28.956 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:28.956 SQL [3800]: pgsql_db_connect() -- 20:07:28.961 DEBUG [3800]: Database connection successful -- 20:07:28.961 INFO [3800]: _SERVER found -- 20:07:28.961 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 20:07:28.961 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:28.961 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:28.961 INFO [3800]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 20:07:28.961 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:28.972 INFO [3800]: COREGRADE is stopping... -- 20:07:28.972 DEBUG [3800]: Closing database connection -- 20:07:28.972 SQL [3800]: pgsql_close() -- 20:07:29.039 INFO [3800]: COREGRADE is starting... -- 20:07:29.039 INFO [3800]: Version from config: 1.0 -- 20:07:29.039 DEBUG [3800]: Connecting to database... -- 20:07:29.039 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:29.039 SQL [3800]: pgsql_db_connect() -- 20:07:29.043 DEBUG [3800]: Database connection successful -- 20:07:29.043 INFO [3800]: _SERVER found -- 20:07:29.043 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 20:07:29.043 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:29.043 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:29.043 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 20:07:29.043 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:29.055 INFO [3800]: COREGRADE is stopping... -- 20:07:29.055 DEBUG [3800]: Closing database connection -- 20:07:29.055 SQL [3800]: pgsql_close() -- 20:07:29.122 INFO [3800]: COREGRADE is starting... -- 20:07:29.122 INFO [3800]: Version from config: 1.0 -- 20:07:29.122 DEBUG [3800]: Connecting to database... -- 20:07:29.122 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:29.122 SQL [3800]: pgsql_db_connect() -- 20:07:29.126 DEBUG [3800]: Database connection successful -- 20:07:29.126 INFO [3800]: _SERVER found -- 20:07:29.126 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 20:07:29.126 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:29.126 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:29.126 INFO [3800]: QUERY_STRING = /assets/js/pages/picker_date.js -- 20:07:29.126 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:29.137 INFO [3800]: COREGRADE is stopping... -- 20:07:29.137 DEBUG [3800]: Closing database connection -- 20:07:29.137 SQL [3800]: pgsql_close() -- 20:07:29.204 INFO [3800]: COREGRADE is starting... -- 20:07:29.204 INFO [3800]: Version from config: 1.0 -- 20:07:29.204 DEBUG [3800]: Connecting to database... -- 20:07:29.204 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:29.204 SQL [3800]: pgsql_db_connect() -- 20:07:29.208 DEBUG [3800]: Database connection successful -- 20:07:29.208 INFO [3800]: _SERVER found -- 20:07:29.208 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 20:07:29.208 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:29.208 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:29.208 INFO [3800]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 20:07:29.208 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:29.220 INFO [3800]: COREGRADE is stopping... -- 20:07:29.220 DEBUG [3800]: Closing database connection -- 20:07:29.220 SQL [3800]: pgsql_close() -- 20:07:29.287 INFO [3800]: COREGRADE is starting... -- 20:07:29.287 INFO [3800]: Version from config: 1.0 -- 20:07:29.287 DEBUG [3800]: Connecting to database... -- 20:07:29.287 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:29.287 SQL [3800]: pgsql_db_connect() -- 20:07:29.291 DEBUG [3800]: Database connection successful -- 20:07:29.291 INFO [3800]: _SERVER found -- 20:07:29.291 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 20:07:29.291 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:29.291 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:29.291 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 20:07:29.291 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:29.303 INFO [3800]: COREGRADE is stopping... -- 20:07:29.303 DEBUG [3800]: Closing database connection -- 20:07:29.303 SQL [3800]: pgsql_close() -- 20:07:29.370 INFO [3800]: COREGRADE is starting... -- 20:07:29.370 INFO [3800]: Version from config: 1.0 -- 20:07:29.370 DEBUG [3800]: Connecting to database... -- 20:07:29.370 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:29.370 SQL [3800]: pgsql_db_connect() -- 20:07:29.374 DEBUG [3800]: Database connection successful -- 20:07:29.374 INFO [3800]: _SERVER found -- 20:07:29.374 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 20:07:29.374 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:29.374 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:29.374 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 20:07:29.374 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:29.386 INFO [3800]: COREGRADE is stopping... -- 20:07:29.386 DEBUG [3800]: Closing database connection -- 20:07:29.386 SQL [3800]: pgsql_close() -- 20:07:29.453 INFO [3800]: COREGRADE is starting... -- 20:07:29.453 INFO [3800]: Version from config: 1.0 -- 20:07:29.453 DEBUG [3800]: Connecting to database... -- 20:07:29.453 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:29.453 SQL [3800]: pgsql_db_connect() -- 20:07:29.457 DEBUG [3800]: Database connection successful -- 20:07:29.457 INFO [3800]: _SERVER found -- 20:07:29.457 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 20:07:29.457 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:29.457 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:29.457 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 20:07:29.457 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:29.468 INFO [3800]: COREGRADE is stopping... -- 20:07:29.468 DEBUG [3800]: Closing database connection -- 20:07:29.468 SQL [3800]: pgsql_close() -- 20:07:29.535 INFO [3800]: COREGRADE is starting... -- 20:07:29.536 INFO [3800]: Version from config: 1.0 -- 20:07:29.536 DEBUG [3800]: Connecting to database... -- 20:07:29.536 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:29.536 SQL [3800]: pgsql_db_connect() -- 20:07:29.540 DEBUG [3800]: Database connection successful -- 20:07:29.540 INFO [3800]: _SERVER found -- 20:07:29.540 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 20:07:29.540 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:29.540 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:29.540 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 20:07:29.540 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:29.551 INFO [3800]: COREGRADE is stopping... -- 20:07:29.551 DEBUG [3800]: Closing database connection -- 20:07:29.551 SQL [3800]: pgsql_close() -- 20:07:29.628 INFO [3800]: COREGRADE is starting... -- 20:07:29.628 INFO [3800]: Version from config: 1.0 -- 20:07:29.628 DEBUG [3800]: Connecting to database... -- 20:07:29.628 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:29.628 SQL [3800]: pgsql_db_connect() -- 20:07:29.632 DEBUG [3800]: Database connection successful -- 20:07:29.632 INFO [3800]: _SERVER found -- 20:07:29.632 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 20:07:29.632 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:29.632 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:29.632 INFO [3800]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 20:07:29.632 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:29.644 INFO [3800]: COREGRADE is stopping... -- 20:07:29.644 DEBUG [3800]: Closing database connection -- 20:07:29.644 SQL [3800]: pgsql_close() -- 20:07:29.711 INFO [3800]: COREGRADE is starting... -- 20:07:29.711 INFO [3800]: Version from config: 1.0 -- 20:07:29.711 DEBUG [3800]: Connecting to database... -- 20:07:29.711 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:29.711 SQL [3800]: pgsql_db_connect() -- 20:07:29.715 DEBUG [3800]: Database connection successful -- 20:07:29.715 INFO [3800]: _SERVER found -- 20:07:29.715 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 20:07:29.715 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:29.715 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:29.715 INFO [3800]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 20:07:29.715 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:29.726 INFO [3800]: COREGRADE is stopping... -- 20:07:29.726 DEBUG [3800]: Closing database connection -- 20:07:29.726 SQL [3800]: pgsql_close() -- 20:07:29.795 INFO [3800]: COREGRADE is starting... -- 20:07:29.795 INFO [3800]: Version from config: 1.0 -- 20:07:29.795 DEBUG [3800]: Connecting to database... -- 20:07:29.795 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:07:29.795 SQL [3800]: pgsql_db_connect() -- 20:07:29.799 DEBUG [3800]: Database connection successful -- 20:07:29.799 INFO [3800]: _SERVER found -- 20:07:29.799 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 20:07:29.799 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:07:29.799 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:07:29.799 INFO [3800]: QUERY_STRING = /assets/customjs/general.js -- 20:07:29.799 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:07:29.810 INFO [3800]: COREGRADE is stopping... -- 20:07:29.811 DEBUG [3800]: Closing database connection -- 20:07:29.811 SQL [3800]: pgsql_close() -- 20:27:30.030 INFO [3739]: COREGRADE is starting... -- 20:27:30.030 INFO [3739]: Version from config: 1.0 -- 20:27:30.030 DEBUG [3739]: Connecting to database... -- 20:27:30.030 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:30.030 SQL [3739]: pgsql_db_connect() -- 20:27:30.034 DEBUG [3739]: Database connection successful -- 20:27:30.034 INFO [3739]: _SERVER found -- 20:27:30.034 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 20:27:30.034 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:30.034 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=1k1h8j51ri5r8l444bi826q0gsin6c3f -- 20:27:30.034 INFO [3739]: QUERY_STRING = /logout -- 20:27:30.034 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:30.067 INFO [3739]: COREGRADE is stopping... -- 20:27:30.067 DEBUG [3739]: Closing database connection -- 20:27:30.067 SQL [3739]: pgsql_close() -- 20:27:30.146 INFO [3739]: COREGRADE is starting... -- 20:27:30.147 INFO [3739]: Version from config: 1.0 -- 20:27:30.147 DEBUG [3739]: Connecting to database... -- 20:27:30.147 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:30.147 SQL [3739]: pgsql_db_connect() -- 20:27:30.151 DEBUG [3739]: Database connection successful -- 20:27:30.151 INFO [3739]: _SERVER found -- 20:27:30.151 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 20:27:30.151 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:30.151 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:30.151 INFO [3739]: QUERY_STRING = /start -- 20:27:30.151 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:30.185 INFO [3739]: COREGRADE is stopping... -- 20:27:30.185 DEBUG [3739]: Closing database connection -- 20:27:30.185 SQL [3739]: pgsql_close() -- 20:27:30.308 INFO [3739]: COREGRADE is starting... -- 20:27:30.308 INFO [3739]: Version from config: 1.0 -- 20:27:30.308 DEBUG [3739]: Connecting to database... -- 20:27:30.308 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:30.308 SQL [3739]: pgsql_db_connect() -- 20:27:30.312 DEBUG [3739]: Database connection successful -- 20:27:30.312 INFO [3739]: _SERVER found -- 20:27:30.312 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 20:27:30.312 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:30.312 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:30.312 INFO [3739]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 20:27:30.312 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:30.323 INFO [3739]: COREGRADE is stopping... -- 20:27:30.323 DEBUG [3739]: Closing database connection -- 20:27:30.323 SQL [3739]: pgsql_close() -- 20:27:30.330 INFO [3739]: COREGRADE is starting... -- 20:27:30.330 INFO [3739]: Version from config: 1.0 -- 20:27:30.330 DEBUG [3739]: Connecting to database... -- 20:27:30.330 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:30.330 SQL [3739]: pgsql_db_connect() -- 20:27:30.334 DEBUG [3739]: Database connection successful -- 20:27:30.334 INFO [3739]: _SERVER found -- 20:27:30.334 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 20:27:30.334 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:30.334 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:30.334 INFO [3739]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 20:27:30.334 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:30.346 INFO [3739]: COREGRADE is stopping... -- 20:27:30.346 DEBUG [3739]: Closing database connection -- 20:27:30.346 SQL [3739]: pgsql_close() -- 20:27:30.380 INFO [3739]: COREGRADE is starting... -- 20:27:30.381 INFO [3739]: Version from config: 1.0 -- 20:27:30.381 DEBUG [3739]: Connecting to database... -- 20:27:30.381 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:30.381 SQL [3739]: pgsql_db_connect() -- 20:27:30.385 DEBUG [3739]: Database connection successful -- 20:27:30.385 INFO [3739]: _SERVER found -- 20:27:30.385 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 20:27:30.385 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:30.385 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:30.385 INFO [3739]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 20:27:30.385 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:30.396 INFO [3739]: COREGRADE is stopping... -- 20:27:30.396 DEBUG [3739]: Closing database connection -- 20:27:30.396 SQL [3739]: pgsql_close() -- 20:27:30.405 INFO [3739]: COREGRADE is starting... -- 20:27:30.406 INFO [3739]: Version from config: 1.0 -- 20:27:30.406 DEBUG [3739]: Connecting to database... -- 20:27:30.406 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:30.406 SQL [3739]: pgsql_db_connect() -- 20:27:30.413 INFO [3738]: COREGRADE is starting... -- 20:27:30.413 INFO [3738]: Version from config: 1.0 -- 20:27:30.413 DEBUG [3738]: Connecting to database... -- 20:27:30.413 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:30.413 SQL [3738]: pgsql_db_connect() -- 20:27:30.409 DEBUG [3739]: Database connection successful -- 20:27:30.409 INFO [3739]: _SERVER found -- 20:27:30.409 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 20:27:30.409 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:30.409 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:30.409 INFO [3739]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 20:27:30.409 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:30.421 INFO [3739]: COREGRADE is stopping... -- 20:27:30.421 DEBUG [3739]: Closing database connection -- 20:27:30.421 SQL [3739]: pgsql_close() -- 20:27:30.417 DEBUG [3738]: Database connection successful -- 20:27:30.417 INFO [3738]: _SERVER found -- 20:27:30.417 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 20:27:30.417 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:30.417 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:30.417 INFO [3738]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 20:27:30.417 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:30.431 INFO [3738]: COREGRADE is stopping... -- 20:27:30.431 DEBUG [3738]: Closing database connection -- 20:27:30.431 SQL [3738]: pgsql_close() -- 20:27:30.475 INFO [3738]: COREGRADE is starting... -- 20:27:30.476 INFO [3738]: Version from config: 1.0 -- 20:27:30.476 DEBUG [3738]: Connecting to database... -- 20:27:30.476 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:30.476 SQL [3738]: pgsql_db_connect() -- 20:27:30.480 DEBUG [3738]: Database connection successful -- 20:27:30.480 INFO [3738]: _SERVER found -- 20:27:30.480 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 20:27:30.480 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:30.480 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:30.480 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 20:27:30.480 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:30.491 INFO [3738]: COREGRADE is stopping... -- 20:27:30.491 DEBUG [3738]: Closing database connection -- 20:27:30.491 SQL [3738]: pgsql_close() -- 20:27:30.501 INFO [3738]: COREGRADE is starting... -- 20:27:30.501 INFO [3739]: COREGRADE is starting... -- 20:27:30.501 INFO [3738]: Version from config: 1.0 -- 20:27:30.501 DEBUG [3738]: Connecting to database... -- 20:27:30.501 INFO [3739]: Version from config: 1.0 -- 20:27:30.501 DEBUG [3739]: Connecting to database... -- 20:27:30.501 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:30.501 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:30.501 SQL [3738]: pgsql_db_connect() -- 20:27:30.501 SQL [3739]: pgsql_db_connect() -- 20:27:30.505 DEBUG [3738]: Database connection successful -- 20:27:30.505 INFO [3738]: _SERVER found -- 20:27:30.505 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 20:27:30.505 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:30.505 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:30.505 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 20:27:30.505 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:30.517 INFO [3738]: COREGRADE is stopping... -- 20:27:30.505 DEBUG [3739]: Database connection successful -- 20:27:30.505 INFO [3739]: _SERVER found -- 20:27:30.505 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 20:27:30.505 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:30.505 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:30.505 INFO [3739]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 20:27:30.505 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:30.517 INFO [3739]: COREGRADE is stopping... -- 20:27:30.517 DEBUG [3738]: Closing database connection -- 20:27:30.517 DEBUG [3739]: Closing database connection -- 20:27:30.517 SQL [3738]: pgsql_close() -- 20:27:30.517 SQL [3739]: pgsql_close() -- 20:27:30.571 INFO [3739]: COREGRADE is starting... -- 20:27:30.571 INFO [3739]: Version from config: 1.0 -- 20:27:30.571 DEBUG [3739]: Connecting to database... -- 20:27:30.571 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:30.571 SQL [3739]: pgsql_db_connect() -- 20:27:30.584 INFO [3738]: COREGRADE is starting... -- 20:27:30.585 INFO [3738]: Version from config: 1.0 -- 20:27:30.585 DEBUG [3738]: Connecting to database... -- 20:27:30.585 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:30.585 SQL [3738]: pgsql_db_connect() -- 20:27:30.575 DEBUG [3739]: Database connection successful -- 20:27:30.575 INFO [3739]: _SERVER found -- 20:27:30.575 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 20:27:30.575 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:30.575 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:30.575 INFO [3739]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 20:27:30.575 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:30.587 INFO [3739]: COREGRADE is stopping... -- 20:27:30.587 DEBUG [3739]: Closing database connection -- 20:27:30.587 SQL [3739]: pgsql_close() -- 20:27:30.595 INFO [3739]: COREGRADE is starting... -- 20:27:30.596 INFO [3739]: Version from config: 1.0 -- 20:27:30.596 DEBUG [3739]: Connecting to database... -- 20:27:30.596 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:30.596 SQL [3739]: pgsql_db_connect() -- 20:27:30.589 DEBUG [3738]: Database connection successful -- 20:27:30.589 INFO [3738]: _SERVER found -- 20:27:30.589 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 20:27:30.589 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:30.589 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:30.589 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 20:27:30.589 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:30.601 INFO [3738]: COREGRADE is stopping... -- 20:27:30.601 DEBUG [3738]: Closing database connection -- 20:27:30.601 SQL [3738]: pgsql_close() -- 20:27:30.600 DEBUG [3739]: Database connection successful -- 20:27:30.600 INFO [3739]: _SERVER found -- 20:27:30.600 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 20:27:30.600 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:30.600 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:30.600 INFO [3739]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 20:27:30.600 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:30.612 INFO [3739]: COREGRADE is stopping... -- 20:27:30.612 DEBUG [3739]: Closing database connection -- 20:27:30.612 SQL [3739]: pgsql_close() -- 20:27:30.667 INFO [3739]: COREGRADE is starting... -- 20:27:30.667 INFO [3739]: Version from config: 1.0 -- 20:27:30.667 DEBUG [3739]: Connecting to database... -- 20:27:30.667 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:30.667 SQL [3739]: pgsql_db_connect() -- 20:27:30.668 INFO [3738]: COREGRADE is starting... -- 20:27:30.668 INFO [3738]: Version from config: 1.0 -- 20:27:30.668 DEBUG [3738]: Connecting to database... -- 20:27:30.668 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:30.668 SQL [3738]: pgsql_db_connect() -- 20:27:30.671 DEBUG [3739]: Database connection successful -- 20:27:30.671 INFO [3739]: _SERVER found -- 20:27:30.671 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 20:27:30.671 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:30.671 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:30.671 INFO [3739]: QUERY_STRING = /assets/js/pages/dashboard.js -- 20:27:30.671 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:30.683 INFO [3739]: COREGRADE is stopping... -- 20:27:30.683 DEBUG [3739]: Closing database connection -- 20:27:30.683 SQL [3739]: pgsql_close() -- 20:27:30.684 INFO [3742]: COREGRADE is starting... -- 20:27:30.684 INFO [3742]: Version from config: 1.0 -- 20:27:30.684 DEBUG [3742]: Connecting to database... -- 20:27:30.684 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:30.684 SQL [3742]: pgsql_db_connect() -- 20:27:30.671 DEBUG [3738]: Database connection successful -- 20:27:30.671 INFO [3738]: _SERVER found -- 20:27:30.671 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 20:27:30.671 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:30.671 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:30.671 INFO [3738]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 20:27:30.671 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:30.684 INFO [3738]: COREGRADE is stopping... -- 20:27:30.684 DEBUG [3738]: Closing database connection -- 20:27:30.684 SQL [3738]: pgsql_close() -- 20:27:30.688 DEBUG [3742]: Database connection successful -- 20:27:30.688 INFO [3742]: _SERVER found -- 20:27:30.688 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 20:27:30.688 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:30.688 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:30.688 INFO [3742]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 20:27:30.688 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:30.700 INFO [3742]: COREGRADE is stopping... -- 20:27:30.700 DEBUG [3742]: Closing database connection -- 20:27:30.700 SQL [3742]: pgsql_close() -- 20:27:30.750 INFO [3742]: COREGRADE is starting... -- 20:27:30.750 INFO [3742]: Version from config: 1.0 -- 20:27:30.750 DEBUG [3742]: Connecting to database... -- 20:27:30.750 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:30.750 SQL [3742]: pgsql_db_connect() -- 20:27:30.752 INFO [3738]: COREGRADE is starting... -- 20:27:30.752 INFO [3738]: Version from config: 1.0 -- 20:27:30.752 DEBUG [3738]: Connecting to database... -- 20:27:30.752 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:30.752 SQL [3738]: pgsql_db_connect() -- 20:27:30.754 DEBUG [3742]: Database connection successful -- 20:27:30.754 INFO [3742]: _SERVER found -- 20:27:30.754 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 20:27:30.754 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:30.754 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:30.754 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 20:27:30.754 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:30.766 INFO [3742]: COREGRADE is stopping... -- 20:27:30.766 DEBUG [3742]: Closing database connection -- 20:27:30.766 SQL [3742]: pgsql_close() -- 20:27:30.756 DEBUG [3738]: Database connection successful -- 20:27:30.756 INFO [3738]: _SERVER found -- 20:27:30.756 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 20:27:30.756 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:30.756 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:30.756 INFO [3738]: QUERY_STRING = /assets/js/pages/picker_date.js -- 20:27:30.756 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:30.768 INFO [3738]: COREGRADE is stopping... -- 20:27:30.768 DEBUG [3738]: Closing database connection -- 20:27:30.768 SQL [3738]: pgsql_close() -- 20:27:30.770 INFO [3742]: COREGRADE is starting... -- 20:27:30.770 INFO [3742]: Version from config: 1.0 -- 20:27:30.770 DEBUG [3742]: Connecting to database... -- 20:27:30.770 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:30.770 SQL [3742]: pgsql_db_connect() -- 20:27:30.774 DEBUG [3742]: Database connection successful -- 20:27:30.774 INFO [3742]: _SERVER found -- 20:27:30.774 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 20:27:30.774 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:30.774 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:30.774 INFO [3742]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 20:27:30.774 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:30.786 INFO [3742]: COREGRADE is stopping... -- 20:27:30.786 DEBUG [3742]: Closing database connection -- 20:27:30.786 SQL [3742]: pgsql_close() -- 20:27:30.832 INFO [3742]: COREGRADE is starting... -- 20:27:30.832 INFO [3742]: Version from config: 1.0 -- 20:27:30.832 DEBUG [3742]: Connecting to database... -- 20:27:30.832 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:30.832 SQL [3742]: pgsql_db_connect() -- 20:27:30.837 INFO [3738]: COREGRADE is starting... -- 20:27:30.837 INFO [3738]: Version from config: 1.0 -- 20:27:30.837 DEBUG [3738]: Connecting to database... -- 20:27:30.837 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:30.837 SQL [3738]: pgsql_db_connect() -- 20:27:30.836 DEBUG [3742]: Database connection successful -- 20:27:30.836 INFO [3742]: _SERVER found -- 20:27:30.836 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 20:27:30.836 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:30.836 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:30.836 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 20:27:30.836 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:30.848 INFO [3742]: COREGRADE is stopping... -- 20:27:30.848 DEBUG [3742]: Closing database connection -- 20:27:30.848 SQL [3742]: pgsql_close() -- 20:27:30.841 DEBUG [3738]: Database connection successful -- 20:27:30.841 INFO [3738]: _SERVER found -- 20:27:30.841 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 20:27:30.841 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:30.841 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:30.841 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 20:27:30.841 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:30.853 INFO [3738]: COREGRADE is stopping... -- 20:27:30.853 DEBUG [3738]: Closing database connection -- 20:27:30.853 SQL [3738]: pgsql_close() -- 20:27:30.856 INFO [3738]: COREGRADE is starting... -- 20:27:30.856 INFO [3738]: Version from config: 1.0 -- 20:27:30.856 DEBUG [3738]: Connecting to database... -- 20:27:30.856 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:30.856 SQL [3738]: pgsql_db_connect() -- 20:27:30.860 DEBUG [3738]: Database connection successful -- 20:27:30.860 INFO [3738]: _SERVER found -- 20:27:30.860 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 20:27:30.860 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:30.860 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:30.860 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 20:27:30.860 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:30.872 INFO [3738]: COREGRADE is stopping... -- 20:27:30.872 DEBUG [3738]: Closing database connection -- 20:27:30.872 SQL [3738]: pgsql_close() -- 20:27:30.914 INFO [3738]: COREGRADE is starting... -- 20:27:30.914 INFO [3738]: Version from config: 1.0 -- 20:27:30.914 DEBUG [3738]: Connecting to database... -- 20:27:30.914 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:30.914 SQL [3738]: pgsql_db_connect() -- 20:27:30.921 INFO [3742]: COREGRADE is starting... -- 20:27:30.921 INFO [3742]: Version from config: 1.0 -- 20:27:30.921 DEBUG [3742]: Connecting to database... -- 20:27:30.921 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:30.921 SQL [3742]: pgsql_db_connect() -- 20:27:30.918 DEBUG [3738]: Database connection successful -- 20:27:30.918 INFO [3738]: _SERVER found -- 20:27:30.918 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 20:27:30.918 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:30.918 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:30.918 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 20:27:30.918 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:30.930 INFO [3738]: COREGRADE is stopping... -- 20:27:30.930 DEBUG [3738]: Closing database connection -- 20:27:30.930 SQL [3738]: pgsql_close() -- 20:27:30.925 DEBUG [3742]: Database connection successful -- 20:27:30.925 INFO [3742]: _SERVER found -- 20:27:30.925 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 20:27:30.925 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:30.925 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:30.925 INFO [3742]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 20:27:30.925 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:30.937 INFO [3742]: COREGRADE is stopping... -- 20:27:30.937 DEBUG [3742]: Closing database connection -- 20:27:30.937 SQL [3742]: pgsql_close() -- 20:27:30.940 INFO [3742]: COREGRADE is starting... -- 20:27:30.941 INFO [3742]: Version from config: 1.0 -- 20:27:30.941 DEBUG [3742]: Connecting to database... -- 20:27:30.941 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:30.941 SQL [3742]: pgsql_db_connect() -- 20:27:30.945 DEBUG [3742]: Database connection successful -- 20:27:30.945 INFO [3742]: _SERVER found -- 20:27:30.945 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 20:27:30.945 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:30.945 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:30.945 INFO [3742]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 20:27:30.945 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:30.958 INFO [3742]: COREGRADE is stopping... -- 20:27:30.958 DEBUG [3742]: Closing database connection -- 20:27:30.958 SQL [3742]: pgsql_close() -- 20:27:30.997 INFO [3742]: COREGRADE is starting... -- 20:27:30.997 INFO [3742]: Version from config: 1.0 -- 20:27:30.997 DEBUG [3742]: Connecting to database... -- 20:27:30.997 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:30.997 SQL [3742]: pgsql_db_connect() -- 20:27:31.005 INFO [3738]: COREGRADE is starting... -- 20:27:31.005 INFO [3738]: Version from config: 1.0 -- 20:27:31.005 DEBUG [3738]: Connecting to database... -- 20:27:31.005 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:31.005 SQL [3738]: pgsql_db_connect() -- 20:27:31.001 DEBUG [3742]: Database connection successful -- 20:27:31.001 INFO [3742]: _SERVER found -- 20:27:31.001 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 20:27:31.001 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:31.001 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:31.001 INFO [3742]: QUERY_STRING = /assets/customjs/general.js -- 20:27:31.001 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:31.013 INFO [3742]: COREGRADE is stopping... -- 20:27:31.013 DEBUG [3742]: Closing database connection -- 20:27:31.013 SQL [3742]: pgsql_close() -- 20:27:31.010 DEBUG [3738]: Database connection successful -- 20:27:31.010 INFO [3738]: _SERVER found -- 20:27:31.010 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 20:27:31.010 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:31.010 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:31.010 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 20:27:31.010 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:31.021 INFO [3738]: COREGRADE is stopping... -- 20:27:31.021 DEBUG [3738]: Closing database connection -- 20:27:31.021 SQL [3738]: pgsql_close() -- 20:27:31.091 INFO [3738]: COREGRADE is starting... -- 20:27:31.091 INFO [3738]: Version from config: 1.0 -- 20:27:31.091 DEBUG [3738]: Connecting to database... -- 20:27:31.091 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:31.091 SQL [3738]: pgsql_db_connect() -- 20:27:31.095 DEBUG [3738]: Database connection successful -- 20:27:31.095 INFO [3738]: _SERVER found -- 20:27:31.095 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 20:27:31.095 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:31.095 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:31.095 INFO [3738]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 20:27:31.095 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:31.107 INFO [3738]: COREGRADE is stopping... -- 20:27:31.107 DEBUG [3738]: Closing database connection -- 20:27:31.107 SQL [3738]: pgsql_close() -- 20:27:31.176 INFO [3738]: COREGRADE is starting... -- 20:27:31.176 INFO [3738]: Version from config: 1.0 -- 20:27:31.176 DEBUG [3738]: Connecting to database... -- 20:27:31.176 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:31.176 SQL [3738]: pgsql_db_connect() -- 20:27:31.180 DEBUG [3738]: Database connection successful -- 20:27:31.180 INFO [3738]: _SERVER found -- 20:27:31.180 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 20:27:31.180 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:31.180 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:31.180 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 20:27:31.180 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:31.192 INFO [3738]: COREGRADE is stopping... -- 20:27:31.192 DEBUG [3738]: Closing database connection -- 20:27:31.192 SQL [3738]: pgsql_close() -- 20:27:31.260 INFO [3738]: COREGRADE is starting... -- 20:27:31.261 INFO [3738]: Version from config: 1.0 -- 20:27:31.261 DEBUG [3738]: Connecting to database... -- 20:27:31.261 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:31.261 SQL [3738]: pgsql_db_connect() -- 20:27:31.265 DEBUG [3738]: Database connection successful -- 20:27:31.265 INFO [3738]: _SERVER found -- 20:27:31.265 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 20:27:31.265 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:31.265 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:31.265 INFO [3738]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 20:27:31.265 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:31.276 INFO [3738]: COREGRADE is stopping... -- 20:27:31.276 DEBUG [3738]: Closing database connection -- 20:27:31.276 SQL [3738]: pgsql_close() -- 20:27:31.346 INFO [3738]: COREGRADE is starting... -- 20:27:31.346 INFO [3738]: Version from config: 1.0 -- 20:27:31.346 DEBUG [3738]: Connecting to database... -- 20:27:31.346 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:31.346 SQL [3738]: pgsql_db_connect() -- 20:27:31.350 DEBUG [3738]: Database connection successful -- 20:27:31.350 INFO [3738]: _SERVER found -- 20:27:31.350 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 20:27:31.350 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:31.350 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:31.350 INFO [3738]: QUERY_STRING = /assets/js/pages/dashboard.js -- 20:27:31.350 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:31.362 INFO [3738]: COREGRADE is stopping... -- 20:27:31.362 DEBUG [3738]: Closing database connection -- 20:27:31.362 SQL [3738]: pgsql_close() -- 20:27:31.432 INFO [3738]: COREGRADE is starting... -- 20:27:31.432 INFO [3738]: Version from config: 1.0 -- 20:27:31.432 DEBUG [3738]: Connecting to database... -- 20:27:31.432 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:31.432 SQL [3738]: pgsql_db_connect() -- 20:27:31.436 DEBUG [3738]: Database connection successful -- 20:27:31.436 INFO [3738]: _SERVER found -- 20:27:31.436 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 20:27:31.436 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:31.436 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:31.436 INFO [3738]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 20:27:31.436 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:31.448 INFO [3738]: COREGRADE is stopping... -- 20:27:31.448 DEBUG [3738]: Closing database connection -- 20:27:31.448 SQL [3738]: pgsql_close() -- 20:27:31.517 INFO [3738]: COREGRADE is starting... -- 20:27:31.517 INFO [3738]: Version from config: 1.0 -- 20:27:31.517 DEBUG [3738]: Connecting to database... -- 20:27:31.517 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:31.517 SQL [3738]: pgsql_db_connect() -- 20:27:31.521 DEBUG [3738]: Database connection successful -- 20:27:31.521 INFO [3738]: _SERVER found -- 20:27:31.521 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 20:27:31.521 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:31.521 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:31.521 INFO [3738]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 20:27:31.521 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:31.533 INFO [3738]: COREGRADE is stopping... -- 20:27:31.533 DEBUG [3738]: Closing database connection -- 20:27:31.533 SQL [3738]: pgsql_close() -- 20:27:31.602 INFO [3738]: COREGRADE is starting... -- 20:27:31.602 INFO [3738]: Version from config: 1.0 -- 20:27:31.602 DEBUG [3738]: Connecting to database... -- 20:27:31.602 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:31.602 SQL [3738]: pgsql_db_connect() -- 20:27:31.606 DEBUG [3738]: Database connection successful -- 20:27:31.606 INFO [3738]: _SERVER found -- 20:27:31.606 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 20:27:31.606 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:31.606 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:31.606 INFO [3738]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 20:27:31.606 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:31.618 INFO [3738]: COREGRADE is stopping... -- 20:27:31.618 DEBUG [3738]: Closing database connection -- 20:27:31.618 SQL [3738]: pgsql_close() -- 20:27:31.686 INFO [3738]: COREGRADE is starting... -- 20:27:31.686 INFO [3738]: Version from config: 1.0 -- 20:27:31.686 DEBUG [3738]: Connecting to database... -- 20:27:31.686 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:31.687 SQL [3738]: pgsql_db_connect() -- 20:27:31.690 DEBUG [3738]: Database connection successful -- 20:27:31.690 INFO [3738]: _SERVER found -- 20:27:31.690 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 20:27:31.690 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:31.690 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:31.690 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 20:27:31.690 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:31.702 INFO [3738]: COREGRADE is stopping... -- 20:27:31.702 DEBUG [3738]: Closing database connection -- 20:27:31.702 SQL [3738]: pgsql_close() -- 20:27:31.771 INFO [3738]: COREGRADE is starting... -- 20:27:31.771 INFO [3738]: Version from config: 1.0 -- 20:27:31.771 DEBUG [3738]: Connecting to database... -- 20:27:31.771 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:31.771 SQL [3738]: pgsql_db_connect() -- 20:27:31.775 DEBUG [3738]: Database connection successful -- 20:27:31.775 INFO [3738]: _SERVER found -- 20:27:31.775 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 20:27:31.775 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:31.775 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:31.775 INFO [3738]: QUERY_STRING = /assets/js/pages/picker_date.js -- 20:27:31.775 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:31.787 INFO [3738]: COREGRADE is stopping... -- 20:27:31.787 DEBUG [3738]: Closing database connection -- 20:27:31.787 SQL [3738]: pgsql_close() -- 20:27:31.856 INFO [3738]: COREGRADE is starting... -- 20:27:31.856 INFO [3738]: Version from config: 1.0 -- 20:27:31.856 DEBUG [3738]: Connecting to database... -- 20:27:31.856 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:31.856 SQL [3738]: pgsql_db_connect() -- 20:27:31.860 DEBUG [3738]: Database connection successful -- 20:27:31.860 INFO [3738]: _SERVER found -- 20:27:31.860 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 20:27:31.860 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:31.860 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:31.860 INFO [3738]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 20:27:31.860 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:31.872 INFO [3738]: COREGRADE is stopping... -- 20:27:31.872 DEBUG [3738]: Closing database connection -- 20:27:31.872 SQL [3738]: pgsql_close() -- 20:27:31.942 INFO [3738]: COREGRADE is starting... -- 20:27:31.942 INFO [3738]: Version from config: 1.0 -- 20:27:31.942 DEBUG [3738]: Connecting to database... -- 20:27:31.942 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:31.942 SQL [3738]: pgsql_db_connect() -- 20:27:31.946 DEBUG [3738]: Database connection successful -- 20:27:31.946 INFO [3738]: _SERVER found -- 20:27:31.946 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 20:27:31.946 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:31.946 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:31.946 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 20:27:31.946 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:31.958 INFO [3738]: COREGRADE is stopping... -- 20:27:31.958 DEBUG [3738]: Closing database connection -- 20:27:31.958 SQL [3738]: pgsql_close() -- 20:27:32.028 INFO [3738]: COREGRADE is starting... -- 20:27:32.028 INFO [3738]: Version from config: 1.0 -- 20:27:32.028 DEBUG [3738]: Connecting to database... -- 20:27:32.028 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:32.028 SQL [3738]: pgsql_db_connect() -- 20:27:32.032 DEBUG [3738]: Database connection successful -- 20:27:32.032 INFO [3738]: _SERVER found -- 20:27:32.032 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 20:27:32.032 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:32.032 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:32.032 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 20:27:32.032 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:32.043 INFO [3738]: COREGRADE is stopping... -- 20:27:32.043 DEBUG [3738]: Closing database connection -- 20:27:32.043 SQL [3738]: pgsql_close() -- 20:27:32.112 INFO [3738]: COREGRADE is starting... -- 20:27:32.113 INFO [3738]: Version from config: 1.0 -- 20:27:32.113 DEBUG [3738]: Connecting to database... -- 20:27:32.113 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:32.113 SQL [3738]: pgsql_db_connect() -- 20:27:32.117 DEBUG [3738]: Database connection successful -- 20:27:32.117 INFO [3738]: _SERVER found -- 20:27:32.117 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 20:27:32.117 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:32.117 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:32.117 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 20:27:32.117 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:32.128 INFO [3738]: COREGRADE is stopping... -- 20:27:32.128 DEBUG [3738]: Closing database connection -- 20:27:32.128 SQL [3738]: pgsql_close() -- 20:27:32.198 INFO [3738]: COREGRADE is starting... -- 20:27:32.198 INFO [3738]: Version from config: 1.0 -- 20:27:32.198 DEBUG [3738]: Connecting to database... -- 20:27:32.198 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:32.198 SQL [3738]: pgsql_db_connect() -- 20:27:32.202 DEBUG [3738]: Database connection successful -- 20:27:32.202 INFO [3738]: _SERVER found -- 20:27:32.202 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 20:27:32.202 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:32.202 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:32.202 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 20:27:32.202 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:32.214 INFO [3738]: COREGRADE is stopping... -- 20:27:32.214 DEBUG [3738]: Closing database connection -- 20:27:32.214 SQL [3738]: pgsql_close() -- 20:27:32.294 INFO [3738]: COREGRADE is starting... -- 20:27:32.294 INFO [3738]: Version from config: 1.0 -- 20:27:32.294 DEBUG [3738]: Connecting to database... -- 20:27:32.294 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:32.294 SQL [3738]: pgsql_db_connect() -- 20:27:32.298 DEBUG [3738]: Database connection successful -- 20:27:32.298 INFO [3738]: _SERVER found -- 20:27:32.298 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 20:27:32.298 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:32.298 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:32.298 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 20:27:32.298 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:32.309 INFO [3738]: COREGRADE is stopping... -- 20:27:32.309 DEBUG [3738]: Closing database connection -- 20:27:32.309 SQL [3738]: pgsql_close() -- 20:27:32.379 INFO [3738]: COREGRADE is starting... -- 20:27:32.379 INFO [3738]: Version from config: 1.0 -- 20:27:32.379 DEBUG [3738]: Connecting to database... -- 20:27:32.379 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:32.379 SQL [3738]: pgsql_db_connect() -- 20:27:32.383 DEBUG [3738]: Database connection successful -- 20:27:32.383 INFO [3738]: _SERVER found -- 20:27:32.383 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 20:27:32.383 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:32.383 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:32.383 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 20:27:32.383 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:32.395 INFO [3738]: COREGRADE is stopping... -- 20:27:32.395 DEBUG [3738]: Closing database connection -- 20:27:32.395 SQL [3738]: pgsql_close() -- 20:27:32.465 INFO [3738]: COREGRADE is starting... -- 20:27:32.466 INFO [3738]: Version from config: 1.0 -- 20:27:32.466 DEBUG [3738]: Connecting to database... -- 20:27:32.466 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:27:32.466 SQL [3738]: pgsql_db_connect() -- 20:27:32.470 DEBUG [3738]: Database connection successful -- 20:27:32.470 INFO [3738]: _SERVER found -- 20:27:32.470 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 20:27:32.470 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:27:32.470 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:27:32.470 INFO [3738]: QUERY_STRING = /assets/customjs/general.js -- 20:27:32.470 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:27:32.481 INFO [3738]: COREGRADE is stopping... -- 20:27:32.481 DEBUG [3738]: Closing database connection -- 20:27:32.481 SQL [3738]: pgsql_close() -- 20:47:32.703 INFO [3740]: COREGRADE is starting... -- 20:47:32.703 INFO [3740]: Version from config: 1.0 -- 20:47:32.703 DEBUG [3740]: Connecting to database... -- 20:47:32.703 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:32.703 SQL [3740]: pgsql_db_connect() -- 20:47:32.709 DEBUG [3740]: Database connection successful -- 20:47:32.709 INFO [3740]: _SERVER found -- 20:47:32.709 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 20:47:32.709 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:32.709 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j3dh6un3dnha1qfv1tgaihvfgcinlbvv -- 20:47:32.709 INFO [3740]: QUERY_STRING = /logout -- 20:47:32.709 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:32.743 INFO [3740]: COREGRADE is stopping... -- 20:47:32.743 DEBUG [3740]: Closing database connection -- 20:47:32.743 SQL [3740]: pgsql_close() -- 20:47:32.822 INFO [3740]: COREGRADE is starting... -- 20:47:32.823 INFO [3740]: Version from config: 1.0 -- 20:47:32.823 DEBUG [3740]: Connecting to database... -- 20:47:32.823 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:32.823 SQL [3740]: pgsql_db_connect() -- 20:47:32.827 DEBUG [3740]: Database connection successful -- 20:47:32.827 INFO [3740]: _SERVER found -- 20:47:32.827 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 20:47:32.827 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:32.827 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:32.827 INFO [3740]: QUERY_STRING = /start -- 20:47:32.827 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:32.862 INFO [3740]: COREGRADE is stopping... -- 20:47:32.862 DEBUG [3740]: Closing database connection -- 20:47:32.862 SQL [3740]: pgsql_close() -- 20:47:32.991 INFO [3740]: COREGRADE is starting... -- 20:47:32.991 INFO [3740]: Version from config: 1.0 -- 20:47:32.991 DEBUG [3740]: Connecting to database... -- 20:47:32.991 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:32.991 SQL [3740]: pgsql_db_connect() -- 20:47:32.996 DEBUG [3740]: Database connection successful -- 20:47:32.996 INFO [3740]: _SERVER found -- 20:47:32.996 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 20:47:32.996 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:32.996 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:32.996 INFO [3740]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 20:47:32.996 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:33.008 INFO [3740]: COREGRADE is stopping... -- 20:47:33.008 DEBUG [3740]: Closing database connection -- 20:47:33.008 SQL [3740]: pgsql_close() -- 20:47:33.012 INFO [3740]: COREGRADE is starting... -- 20:47:33.013 INFO [3740]: Version from config: 1.0 -- 20:47:33.013 DEBUG [3740]: Connecting to database... -- 20:47:33.013 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:33.013 SQL [3740]: pgsql_db_connect() -- 20:47:33.017 DEBUG [3740]: Database connection successful -- 20:47:33.017 INFO [3740]: _SERVER found -- 20:47:33.017 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 20:47:33.017 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:33.017 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:33.017 INFO [3740]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 20:47:33.017 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:33.029 INFO [3740]: COREGRADE is stopping... -- 20:47:33.029 DEBUG [3740]: Closing database connection -- 20:47:33.029 SQL [3740]: pgsql_close() -- 20:47:33.070 INFO [3829]: COREGRADE is starting... -- 20:47:33.070 INFO [3829]: Version from config: 1.0 -- 20:47:33.070 DEBUG [3829]: Connecting to database... -- 20:47:33.070 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:33.070 SQL [3829]: pgsql_db_connect() -- 20:47:33.075 DEBUG [3829]: Database connection successful -- 20:47:33.075 INFO [3829]: _SERVER found -- 20:47:33.075 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 20:47:33.075 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:33.075 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:33.075 INFO [3829]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 20:47:33.075 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:33.087 INFO [3829]: COREGRADE is stopping... -- 20:47:33.087 DEBUG [3829]: Closing database connection -- 20:47:33.087 SQL [3829]: pgsql_close() -- 20:47:33.087 INFO [3740]: COREGRADE is starting... -- 20:47:33.087 INFO [3740]: Version from config: 1.0 -- 20:47:33.088 DEBUG [3740]: Connecting to database... -- 20:47:33.088 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:33.088 SQL [3740]: pgsql_db_connect() -- 20:47:33.098 INFO [3828]: COREGRADE is starting... -- 20:47:33.098 INFO [3828]: Version from config: 1.0 -- 20:47:33.098 DEBUG [3828]: Connecting to database... -- 20:47:33.098 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:33.098 SQL [3828]: pgsql_db_connect() -- 20:47:33.092 DEBUG [3740]: Database connection successful -- 20:47:33.092 INFO [3740]: _SERVER found -- 20:47:33.092 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 20:47:33.092 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:33.092 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:33.092 INFO [3740]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 20:47:33.092 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:33.104 INFO [3740]: COREGRADE is stopping... -- 20:47:33.104 DEBUG [3740]: Closing database connection -- 20:47:33.104 SQL [3740]: pgsql_close() -- 20:47:33.103 DEBUG [3828]: Database connection successful -- 20:47:33.103 INFO [3828]: _SERVER found -- 20:47:33.103 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 20:47:33.103 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:33.103 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:33.103 INFO [3828]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 20:47:33.103 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:33.116 INFO [3828]: COREGRADE is stopping... -- 20:47:33.116 DEBUG [3828]: Closing database connection -- 20:47:33.116 SQL [3828]: pgsql_close() -- 20:47:33.170 INFO [3829]: COREGRADE is starting... -- 20:47:33.170 INFO [3829]: Version from config: 1.0 -- 20:47:33.170 DEBUG [3829]: Connecting to database... -- 20:47:33.170 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:33.170 SQL [3829]: pgsql_db_connect() -- 20:47:33.183 INFO [3828]: COREGRADE is starting... -- 20:47:33.183 INFO [3740]: COREGRADE is starting... -- 20:47:33.184 INFO [3740]: Version from config: 1.0 -- 20:47:33.184 DEBUG [3740]: Connecting to database... -- 20:47:33.184 INFO [3828]: Version from config: 1.0 -- 20:47:33.184 DEBUG [3828]: Connecting to database... -- 20:47:33.184 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:33.184 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:33.184 SQL [3740]: pgsql_db_connect() -- 20:47:33.184 SQL [3828]: pgsql_db_connect() -- 20:47:33.175 DEBUG [3829]: Database connection successful -- 20:47:33.175 INFO [3829]: _SERVER found -- 20:47:33.175 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 20:47:33.175 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:33.175 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:33.175 INFO [3829]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 20:47:33.175 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:33.186 INFO [3829]: COREGRADE is stopping... -- 20:47:33.186 DEBUG [3829]: Closing database connection -- 20:47:33.186 SQL [3829]: pgsql_close() -- 20:47:33.188 DEBUG [3828]: Database connection successful -- 20:47:33.188 INFO [3828]: _SERVER found -- 20:47:33.188 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 20:47:33.188 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:33.188 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:33.188 INFO [3828]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 20:47:33.188 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:33.200 INFO [3828]: COREGRADE is stopping... -- 20:47:33.200 DEBUG [3828]: Closing database connection -- 20:47:33.200 SQL [3828]: pgsql_close() -- 20:47:33.189 DEBUG [3740]: Database connection successful -- 20:47:33.189 INFO [3740]: _SERVER found -- 20:47:33.189 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 20:47:33.189 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:33.189 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:33.189 INFO [3740]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 20:47:33.189 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:33.200 INFO [3740]: COREGRADE is stopping... -- 20:47:33.200 DEBUG [3740]: Closing database connection -- 20:47:33.200 SQL [3740]: pgsql_close() -- 20:47:33.269 INFO [3829]: COREGRADE is starting... -- 20:47:33.269 INFO [3740]: COREGRADE is starting... -- 20:47:33.269 INFO [3740]: Version from config: 1.0 -- 20:47:33.269 DEBUG [3740]: Connecting to database... -- 20:47:33.269 INFO [3829]: Version from config: 1.0 -- 20:47:33.269 DEBUG [3829]: Connecting to database... -- 20:47:33.269 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:33.269 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:33.269 SQL [3740]: pgsql_db_connect() -- 20:47:33.269 SQL [3829]: pgsql_db_connect() -- 20:47:33.281 INFO [3828]: COREGRADE is starting... -- 20:47:33.281 INFO [3828]: Version from config: 1.0 -- 20:47:33.281 DEBUG [3828]: Connecting to database... -- 20:47:33.281 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:33.281 SQL [3828]: pgsql_db_connect() -- 20:47:33.274 DEBUG [3740]: Database connection successful -- 20:47:33.274 INFO [3740]: _SERVER found -- 20:47:33.274 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 20:47:33.274 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:33.274 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:33.274 INFO [3740]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 20:47:33.274 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:33.286 INFO [3740]: COREGRADE is stopping... -- 20:47:33.286 DEBUG [3740]: Closing database connection -- 20:47:33.286 SQL [3740]: pgsql_close() -- 20:47:33.274 DEBUG [3829]: Database connection successful -- 20:47:33.274 INFO [3829]: _SERVER found -- 20:47:33.274 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 20:47:33.274 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:33.274 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:33.274 INFO [3829]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 20:47:33.274 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:33.286 INFO [3829]: COREGRADE is stopping... -- 20:47:33.286 DEBUG [3829]: Closing database connection -- 20:47:33.286 SQL [3829]: pgsql_close() -- 20:47:33.285 DEBUG [3828]: Database connection successful -- 20:47:33.285 INFO [3828]: _SERVER found -- 20:47:33.285 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 20:47:33.285 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:33.285 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:33.285 INFO [3828]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 20:47:33.285 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:33.297 INFO [3828]: COREGRADE is stopping... -- 20:47:33.297 DEBUG [3828]: Closing database connection -- 20:47:33.297 SQL [3828]: pgsql_close() -- 20:47:33.355 INFO [3828]: COREGRADE is starting... -- 20:47:33.356 INFO [3828]: Version from config: 1.0 -- 20:47:33.356 DEBUG [3828]: Connecting to database... -- 20:47:33.356 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:33.356 SQL [3828]: pgsql_db_connect() -- 20:47:33.368 INFO [3740]: COREGRADE is starting... -- 20:47:33.368 INFO [3829]: COREGRADE is starting... -- 20:47:33.368 INFO [3740]: Version from config: 1.0 -- 20:47:33.368 DEBUG [3740]: Connecting to database... -- 20:47:33.368 INFO [3829]: Version from config: 1.0 -- 20:47:33.368 DEBUG [3829]: Connecting to database... -- 20:47:33.368 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:33.368 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:33.368 SQL [3740]: pgsql_db_connect() -- 20:47:33.368 SQL [3829]: pgsql_db_connect() -- 20:47:33.360 DEBUG [3828]: Database connection successful -- 20:47:33.360 INFO [3828]: _SERVER found -- 20:47:33.360 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 20:47:33.360 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:33.360 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:33.360 INFO [3828]: QUERY_STRING = /assets/js/pages/dashboard.js -- 20:47:33.360 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:33.372 INFO [3828]: COREGRADE is stopping... -- 20:47:33.372 DEBUG [3828]: Closing database connection -- 20:47:33.372 SQL [3828]: pgsql_close() -- 20:47:33.373 DEBUG [3740]: Database connection successful -- 20:47:33.373 INFO [3740]: _SERVER found -- 20:47:33.373 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 20:47:33.373 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:33.373 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:33.373 INFO [3740]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 20:47:33.373 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:33.385 INFO [3740]: COREGRADE is stopping... -- 20:47:33.385 DEBUG [3740]: Closing database connection -- 20:47:33.385 SQL [3740]: pgsql_close() -- 20:47:33.373 DEBUG [3829]: Database connection successful -- 20:47:33.373 INFO [3829]: _SERVER found -- 20:47:33.373 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 20:47:33.373 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:33.373 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:33.373 INFO [3829]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 20:47:33.373 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:33.385 INFO [3829]: COREGRADE is stopping... -- 20:47:33.385 DEBUG [3829]: Closing database connection -- 20:47:33.385 SQL [3829]: pgsql_close() -- 20:47:33.439 INFO [3740]: COREGRADE is starting... -- 20:47:33.439 INFO [3740]: Version from config: 1.0 -- 20:47:33.439 DEBUG [3740]: Connecting to database... -- 20:47:33.439 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:33.439 SQL [3740]: pgsql_db_connect() -- 20:47:33.455 INFO [3828]: COREGRADE is starting... -- 20:47:33.455 INFO [3828]: Version from config: 1.0 -- 20:47:33.455 DEBUG [3828]: Connecting to database... -- 20:47:33.455 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:33.456 SQL [3828]: pgsql_db_connect() -- 20:47:33.444 DEBUG [3740]: Database connection successful -- 20:47:33.444 INFO [3740]: _SERVER found -- 20:47:33.444 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 20:47:33.444 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:33.444 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:33.444 INFO [3740]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 20:47:33.444 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:33.456 INFO [3740]: COREGRADE is stopping... -- 20:47:33.456 DEBUG [3740]: Closing database connection -- 20:47:33.456 SQL [3740]: pgsql_close() -- 20:47:33.457 INFO [3829]: COREGRADE is starting... -- 20:47:33.458 INFO [3829]: Version from config: 1.0 -- 20:47:33.458 DEBUG [3829]: Connecting to database... -- 20:47:33.458 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:33.458 SQL [3829]: pgsql_db_connect() -- 20:47:33.460 DEBUG [3828]: Database connection successful -- 20:47:33.460 INFO [3828]: _SERVER found -- 20:47:33.460 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 20:47:33.460 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:33.460 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:33.460 INFO [3828]: QUERY_STRING = /assets/js/pages/picker_date.js -- 20:47:33.460 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:33.472 INFO [3828]: COREGRADE is stopping... -- 20:47:33.472 DEBUG [3828]: Closing database connection -- 20:47:33.472 SQL [3828]: pgsql_close() -- 20:47:33.462 DEBUG [3829]: Database connection successful -- 20:47:33.462 INFO [3829]: _SERVER found -- 20:47:33.462 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 20:47:33.462 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:33.462 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:33.462 INFO [3829]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 20:47:33.462 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:33.474 INFO [3829]: COREGRADE is stopping... -- 20:47:33.474 DEBUG [3829]: Closing database connection -- 20:47:33.474 SQL [3829]: pgsql_close() -- 20:47:33.522 INFO [3828]: COREGRADE is starting... -- 20:47:33.522 INFO [3828]: Version from config: 1.0 -- 20:47:33.522 DEBUG [3828]: Connecting to database... -- 20:47:33.522 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:33.522 SQL [3828]: pgsql_db_connect() -- 20:47:33.527 DEBUG [3828]: Database connection successful -- 20:47:33.527 INFO [3828]: _SERVER found -- 20:47:33.527 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 20:47:33.527 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:33.527 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:33.527 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 20:47:33.527 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:33.538 INFO [3828]: COREGRADE is stopping... -- 20:47:33.538 DEBUG [3828]: Closing database connection -- 20:47:33.539 SQL [3828]: pgsql_close() -- 20:47:33.541 INFO [3828]: COREGRADE is starting... -- 20:47:33.541 INFO [3828]: Version from config: 1.0 -- 20:47:33.541 DEBUG [3828]: Connecting to database... -- 20:47:33.542 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:33.542 SQL [3828]: pgsql_db_connect() -- 20:47:33.545 INFO [3829]: COREGRADE is starting... -- 20:47:33.545 INFO [3829]: Version from config: 1.0 -- 20:47:33.545 DEBUG [3829]: Connecting to database... -- 20:47:33.545 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:33.545 SQL [3829]: pgsql_db_connect() -- 20:47:33.546 DEBUG [3828]: Database connection successful -- 20:47:33.546 INFO [3828]: _SERVER found -- 20:47:33.546 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 20:47:33.546 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:33.546 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:33.546 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 20:47:33.546 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:33.557 INFO [3828]: COREGRADE is stopping... -- 20:47:33.558 DEBUG [3828]: Closing database connection -- 20:47:33.558 SQL [3828]: pgsql_close() -- 20:47:33.550 DEBUG [3829]: Database connection successful -- 20:47:33.550 INFO [3829]: _SERVER found -- 20:47:33.550 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 20:47:33.550 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:33.550 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:33.550 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 20:47:33.550 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:33.562 INFO [3829]: COREGRADE is stopping... -- 20:47:33.562 DEBUG [3829]: Closing database connection -- 20:47:33.562 SQL [3829]: pgsql_close() -- 20:47:33.605 INFO [3828]: COREGRADE is starting... -- 20:47:33.605 INFO [3828]: Version from config: 1.0 -- 20:47:33.605 DEBUG [3828]: Connecting to database... -- 20:47:33.605 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:33.605 SQL [3828]: pgsql_db_connect() -- 20:47:33.610 DEBUG [3828]: Database connection successful -- 20:47:33.610 INFO [3828]: _SERVER found -- 20:47:33.610 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 20:47:33.610 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:33.610 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:33.610 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 20:47:33.610 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:33.621 INFO [3828]: COREGRADE is stopping... -- 20:47:33.622 DEBUG [3828]: Closing database connection -- 20:47:33.622 SQL [3828]: pgsql_close() -- 20:47:33.626 INFO [3828]: COREGRADE is starting... -- 20:47:33.627 INFO [3828]: Version from config: 1.0 -- 20:47:33.627 DEBUG [3828]: Connecting to database... -- 20:47:33.627 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:33.627 SQL [3828]: pgsql_db_connect() -- 20:47:33.632 INFO [3829]: COREGRADE is starting... -- 20:47:33.633 INFO [3829]: Version from config: 1.0 -- 20:47:33.633 DEBUG [3829]: Connecting to database... -- 20:47:33.633 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:33.633 SQL [3829]: pgsql_db_connect() -- 20:47:33.631 DEBUG [3828]: Database connection successful -- 20:47:33.631 INFO [3828]: _SERVER found -- 20:47:33.631 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 20:47:33.631 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:33.631 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:33.631 INFO [3828]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 20:47:33.631 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:33.643 INFO [3828]: COREGRADE is stopping... -- 20:47:33.643 DEBUG [3828]: Closing database connection -- 20:47:33.643 SQL [3828]: pgsql_close() -- 20:47:33.637 DEBUG [3829]: Database connection successful -- 20:47:33.637 INFO [3829]: _SERVER found -- 20:47:33.637 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 20:47:33.637 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:33.637 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:33.637 INFO [3829]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 20:47:33.637 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:33.650 INFO [3829]: COREGRADE is stopping... -- 20:47:33.650 DEBUG [3829]: Closing database connection -- 20:47:33.650 SQL [3829]: pgsql_close() -- 20:47:33.688 INFO [3828]: COREGRADE is starting... -- 20:47:33.688 INFO [3828]: Version from config: 1.0 -- 20:47:33.688 DEBUG [3828]: Connecting to database... -- 20:47:33.688 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:33.688 SQL [3828]: pgsql_db_connect() -- 20:47:33.693 DEBUG [3828]: Database connection successful -- 20:47:33.693 INFO [3828]: _SERVER found -- 20:47:33.693 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 20:47:33.693 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:33.693 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:33.693 INFO [3828]: QUERY_STRING = /assets/customjs/general.js -- 20:47:33.693 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:33.705 INFO [3828]: COREGRADE is stopping... -- 20:47:33.705 DEBUG [3828]: Closing database connection -- 20:47:33.705 SQL [3828]: pgsql_close() -- 20:47:33.711 INFO [3828]: COREGRADE is starting... -- 20:47:33.712 INFO [3828]: Version from config: 1.0 -- 20:47:33.712 DEBUG [3828]: Connecting to database... -- 20:47:33.712 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:33.712 SQL [3828]: pgsql_db_connect() -- 20:47:33.716 DEBUG [3828]: Database connection successful -- 20:47:33.716 INFO [3828]: _SERVER found -- 20:47:33.716 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 20:47:33.716 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:33.716 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:33.716 INFO [3828]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 20:47:33.716 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:33.728 INFO [3828]: COREGRADE is stopping... -- 20:47:33.728 DEBUG [3828]: Closing database connection -- 20:47:33.728 SQL [3828]: pgsql_close() -- 20:47:33.797 INFO [3828]: COREGRADE is starting... -- 20:47:33.797 INFO [3828]: Version from config: 1.0 -- 20:47:33.797 DEBUG [3828]: Connecting to database... -- 20:47:33.797 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:33.797 SQL [3828]: pgsql_db_connect() -- 20:47:33.802 DEBUG [3828]: Database connection successful -- 20:47:33.802 INFO [3828]: _SERVER found -- 20:47:33.802 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 20:47:33.802 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:33.802 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:33.802 INFO [3828]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 20:47:33.802 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:33.814 INFO [3828]: COREGRADE is stopping... -- 20:47:33.814 DEBUG [3828]: Closing database connection -- 20:47:33.814 SQL [3828]: pgsql_close() -- 20:47:33.883 INFO [3828]: COREGRADE is starting... -- 20:47:33.883 INFO [3828]: Version from config: 1.0 -- 20:47:33.883 DEBUG [3828]: Connecting to database... -- 20:47:33.883 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:33.883 SQL [3828]: pgsql_db_connect() -- 20:47:33.888 DEBUG [3828]: Database connection successful -- 20:47:33.888 INFO [3828]: _SERVER found -- 20:47:33.888 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 20:47:33.888 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:33.888 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:33.888 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 20:47:33.888 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:33.900 INFO [3828]: COREGRADE is stopping... -- 20:47:33.900 DEBUG [3828]: Closing database connection -- 20:47:33.900 SQL [3828]: pgsql_close() -- 20:47:33.969 INFO [3828]: COREGRADE is starting... -- 20:47:33.970 INFO [3828]: Version from config: 1.0 -- 20:47:33.970 DEBUG [3828]: Connecting to database... -- 20:47:33.970 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:33.970 SQL [3828]: pgsql_db_connect() -- 20:47:33.974 DEBUG [3828]: Database connection successful -- 20:47:33.974 INFO [3828]: _SERVER found -- 20:47:33.974 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 20:47:33.974 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:33.974 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:33.974 INFO [3828]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 20:47:33.974 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:33.986 INFO [3828]: COREGRADE is stopping... -- 20:47:33.986 DEBUG [3828]: Closing database connection -- 20:47:33.986 SQL [3828]: pgsql_close() -- 20:47:34.056 INFO [3828]: COREGRADE is starting... -- 20:47:34.056 INFO [3828]: Version from config: 1.0 -- 20:47:34.056 DEBUG [3828]: Connecting to database... -- 20:47:34.056 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:34.056 SQL [3828]: pgsql_db_connect() -- 20:47:34.061 DEBUG [3828]: Database connection successful -- 20:47:34.061 INFO [3828]: _SERVER found -- 20:47:34.061 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 20:47:34.061 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:34.061 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:34.061 INFO [3828]: QUERY_STRING = /assets/js/pages/dashboard.js -- 20:47:34.061 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:34.072 INFO [3828]: COREGRADE is stopping... -- 20:47:34.072 DEBUG [3828]: Closing database connection -- 20:47:34.072 SQL [3828]: pgsql_close() -- 20:47:34.143 INFO [3828]: COREGRADE is starting... -- 20:47:34.143 INFO [3828]: Version from config: 1.0 -- 20:47:34.143 DEBUG [3828]: Connecting to database... -- 20:47:34.143 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:34.143 SQL [3828]: pgsql_db_connect() -- 20:47:34.148 DEBUG [3828]: Database connection successful -- 20:47:34.148 INFO [3828]: _SERVER found -- 20:47:34.148 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 20:47:34.148 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:34.148 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:34.148 INFO [3828]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 20:47:34.148 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:34.159 INFO [3828]: COREGRADE is stopping... -- 20:47:34.159 DEBUG [3828]: Closing database connection -- 20:47:34.159 SQL [3828]: pgsql_close() -- 20:47:34.229 INFO [3828]: COREGRADE is starting... -- 20:47:34.229 INFO [3828]: Version from config: 1.0 -- 20:47:34.229 DEBUG [3828]: Connecting to database... -- 20:47:34.229 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:34.229 SQL [3828]: pgsql_db_connect() -- 20:47:34.234 DEBUG [3828]: Database connection successful -- 20:47:34.234 INFO [3828]: _SERVER found -- 20:47:34.234 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 20:47:34.234 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:34.234 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:34.234 INFO [3828]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 20:47:34.234 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:34.246 INFO [3828]: COREGRADE is stopping... -- 20:47:34.246 DEBUG [3828]: Closing database connection -- 20:47:34.246 SQL [3828]: pgsql_close() -- 20:47:34.315 INFO [3828]: COREGRADE is starting... -- 20:47:34.315 INFO [3828]: Version from config: 1.0 -- 20:47:34.315 DEBUG [3828]: Connecting to database... -- 20:47:34.315 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:34.316 SQL [3828]: pgsql_db_connect() -- 20:47:34.320 DEBUG [3828]: Database connection successful -- 20:47:34.320 INFO [3828]: _SERVER found -- 20:47:34.320 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 20:47:34.320 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:34.320 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:34.320 INFO [3828]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 20:47:34.320 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:34.332 INFO [3828]: COREGRADE is stopping... -- 20:47:34.332 DEBUG [3828]: Closing database connection -- 20:47:34.332 SQL [3828]: pgsql_close() -- 20:47:34.401 INFO [3828]: COREGRADE is starting... -- 20:47:34.401 INFO [3828]: Version from config: 1.0 -- 20:47:34.401 DEBUG [3828]: Connecting to database... -- 20:47:34.401 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:34.401 SQL [3828]: pgsql_db_connect() -- 20:47:34.406 DEBUG [3828]: Database connection successful -- 20:47:34.406 INFO [3828]: _SERVER found -- 20:47:34.406 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 20:47:34.406 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:34.406 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:34.406 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 20:47:34.406 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:34.418 INFO [3828]: COREGRADE is stopping... -- 20:47:34.418 DEBUG [3828]: Closing database connection -- 20:47:34.418 SQL [3828]: pgsql_close() -- 20:47:34.487 INFO [3828]: COREGRADE is starting... -- 20:47:34.488 INFO [3828]: Version from config: 1.0 -- 20:47:34.488 DEBUG [3828]: Connecting to database... -- 20:47:34.488 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:34.488 SQL [3828]: pgsql_db_connect() -- 20:47:34.492 DEBUG [3828]: Database connection successful -- 20:47:34.492 INFO [3828]: _SERVER found -- 20:47:34.492 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 20:47:34.492 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:34.492 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:34.492 INFO [3828]: QUERY_STRING = /assets/js/pages/picker_date.js -- 20:47:34.492 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:34.504 INFO [3828]: COREGRADE is stopping... -- 20:47:34.504 DEBUG [3828]: Closing database connection -- 20:47:34.504 SQL [3828]: pgsql_close() -- 20:47:34.574 INFO [3828]: COREGRADE is starting... -- 20:47:34.574 INFO [3828]: Version from config: 1.0 -- 20:47:34.574 DEBUG [3828]: Connecting to database... -- 20:47:34.574 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:34.574 SQL [3828]: pgsql_db_connect() -- 20:47:34.579 DEBUG [3828]: Database connection successful -- 20:47:34.579 INFO [3828]: _SERVER found -- 20:47:34.579 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 20:47:34.579 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:34.579 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:34.579 INFO [3828]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 20:47:34.579 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:34.590 INFO [3828]: COREGRADE is stopping... -- 20:47:34.590 DEBUG [3828]: Closing database connection -- 20:47:34.590 SQL [3828]: pgsql_close() -- 20:47:34.659 INFO [3828]: COREGRADE is starting... -- 20:47:34.660 INFO [3828]: Version from config: 1.0 -- 20:47:34.660 DEBUG [3828]: Connecting to database... -- 20:47:34.660 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:34.660 SQL [3828]: pgsql_db_connect() -- 20:47:34.664 DEBUG [3828]: Database connection successful -- 20:47:34.664 INFO [3828]: _SERVER found -- 20:47:34.664 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 20:47:34.664 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:34.664 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:34.664 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 20:47:34.664 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:34.676 INFO [3828]: COREGRADE is stopping... -- 20:47:34.676 DEBUG [3828]: Closing database connection -- 20:47:34.676 SQL [3828]: pgsql_close() -- 20:47:34.745 INFO [3828]: COREGRADE is starting... -- 20:47:34.745 INFO [3828]: Version from config: 1.0 -- 20:47:34.745 DEBUG [3828]: Connecting to database... -- 20:47:34.745 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:34.745 SQL [3828]: pgsql_db_connect() -- 20:47:34.750 DEBUG [3828]: Database connection successful -- 20:47:34.750 INFO [3828]: _SERVER found -- 20:47:34.750 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 20:47:34.750 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:34.750 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:34.750 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 20:47:34.750 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:34.761 INFO [3828]: COREGRADE is stopping... -- 20:47:34.761 DEBUG [3828]: Closing database connection -- 20:47:34.761 SQL [3828]: pgsql_close() -- 20:47:34.831 INFO [3828]: COREGRADE is starting... -- 20:47:34.831 INFO [3828]: Version from config: 1.0 -- 20:47:34.831 DEBUG [3828]: Connecting to database... -- 20:47:34.831 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:34.831 SQL [3828]: pgsql_db_connect() -- 20:47:34.835 DEBUG [3828]: Database connection successful -- 20:47:34.835 INFO [3828]: _SERVER found -- 20:47:34.835 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 20:47:34.835 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:34.835 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:34.835 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 20:47:34.835 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:34.847 INFO [3828]: COREGRADE is stopping... -- 20:47:34.847 DEBUG [3828]: Closing database connection -- 20:47:34.847 SQL [3828]: pgsql_close() -- 20:47:34.916 INFO [3828]: COREGRADE is starting... -- 20:47:34.917 INFO [3828]: Version from config: 1.0 -- 20:47:34.917 DEBUG [3828]: Connecting to database... -- 20:47:34.917 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:34.917 SQL [3828]: pgsql_db_connect() -- 20:47:34.921 DEBUG [3828]: Database connection successful -- 20:47:34.921 INFO [3828]: _SERVER found -- 20:47:34.921 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 20:47:34.921 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:34.921 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:34.921 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 20:47:34.921 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:34.933 INFO [3828]: COREGRADE is stopping... -- 20:47:34.933 DEBUG [3828]: Closing database connection -- 20:47:34.933 SQL [3828]: pgsql_close() -- 20:47:35.013 INFO [3828]: COREGRADE is starting... -- 20:47:35.013 INFO [3828]: Version from config: 1.0 -- 20:47:35.013 DEBUG [3828]: Connecting to database... -- 20:47:35.013 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:35.013 SQL [3828]: pgsql_db_connect() -- 20:47:35.018 DEBUG [3828]: Database connection successful -- 20:47:35.018 INFO [3828]: _SERVER found -- 20:47:35.018 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 20:47:35.018 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:35.018 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:35.018 INFO [3828]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 20:47:35.018 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:35.030 INFO [3828]: COREGRADE is stopping... -- 20:47:35.030 DEBUG [3828]: Closing database connection -- 20:47:35.030 SQL [3828]: pgsql_close() -- 20:47:35.099 INFO [3828]: COREGRADE is starting... -- 20:47:35.100 INFO [3828]: Version from config: 1.0 -- 20:47:35.100 DEBUG [3828]: Connecting to database... -- 20:47:35.100 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:35.100 SQL [3828]: pgsql_db_connect() -- 20:47:35.104 DEBUG [3828]: Database connection successful -- 20:47:35.104 INFO [3828]: _SERVER found -- 20:47:35.104 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 20:47:35.104 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:35.104 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:35.104 INFO [3828]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 20:47:35.104 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:35.116 INFO [3828]: COREGRADE is stopping... -- 20:47:35.116 DEBUG [3828]: Closing database connection -- 20:47:35.116 SQL [3828]: pgsql_close() -- 20:47:35.187 INFO [3828]: COREGRADE is starting... -- 20:47:35.187 INFO [3828]: Version from config: 1.0 -- 20:47:35.187 DEBUG [3828]: Connecting to database... -- 20:47:35.187 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:47:35.187 SQL [3828]: pgsql_db_connect() -- 20:47:35.192 DEBUG [3828]: Database connection successful -- 20:47:35.192 INFO [3828]: _SERVER found -- 20:47:35.192 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 20:47:35.192 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:47:35.192 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 20:47:35.192 INFO [3828]: QUERY_STRING = /assets/customjs/general.js -- 20:47:35.192 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 20:47:35.204 INFO [3828]: COREGRADE is stopping... -- 20:47:35.204 DEBUG [3828]: Closing database connection -- 20:47:35.204 SQL [3828]: pgsql_close() -- 21:07:35.426 INFO [3741]: COREGRADE is starting... -- 21:07:35.427 INFO [3741]: Version from config: 1.0 -- 21:07:35.427 DEBUG [3741]: Connecting to database... -- 21:07:35.427 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:35.427 SQL [3741]: pgsql_db_connect() -- 21:07:35.431 DEBUG [3741]: Database connection successful -- 21:07:35.431 INFO [3741]: _SERVER found -- 21:07:35.431 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 21:07:35.431 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:35.431 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=qgul2o5fssdddh6ap6ukqsdvandjkqcd -- 21:07:35.431 INFO [3741]: QUERY_STRING = /logout -- 21:07:35.431 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:35.465 INFO [3741]: COREGRADE is stopping... -- 21:07:35.465 DEBUG [3741]: Closing database connection -- 21:07:35.465 SQL [3741]: pgsql_close() -- 21:07:35.546 INFO [3741]: COREGRADE is starting... -- 21:07:35.546 INFO [3741]: Version from config: 1.0 -- 21:07:35.546 DEBUG [3741]: Connecting to database... -- 21:07:35.546 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:35.547 SQL [3741]: pgsql_db_connect() -- 21:07:35.551 DEBUG [3741]: Database connection successful -- 21:07:35.551 INFO [3741]: _SERVER found -- 21:07:35.551 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 21:07:35.551 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:35.551 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:35.551 INFO [3741]: QUERY_STRING = /start -- 21:07:35.551 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:35.584 INFO [3741]: COREGRADE is stopping... -- 21:07:35.584 DEBUG [3741]: Closing database connection -- 21:07:35.584 SQL [3741]: pgsql_close() -- 21:07:35.712 INFO [3800]: COREGRADE is starting... -- 21:07:35.712 INFO [3800]: Version from config: 1.0 -- 21:07:35.712 DEBUG [3800]: Connecting to database... -- 21:07:35.712 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:35.712 SQL [3800]: pgsql_db_connect() -- 21:07:35.716 DEBUG [3800]: Database connection successful -- 21:07:35.716 INFO [3800]: _SERVER found -- 21:07:35.716 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 21:07:35.716 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:35.716 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:35.716 INFO [3800]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 21:07:35.716 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:35.728 INFO [3800]: COREGRADE is stopping... -- 21:07:35.728 DEBUG [3800]: Closing database connection -- 21:07:35.728 SQL [3800]: pgsql_close() -- 21:07:35.734 INFO [3741]: COREGRADE is starting... -- 21:07:35.735 INFO [3741]: Version from config: 1.0 -- 21:07:35.735 DEBUG [3741]: Connecting to database... -- 21:07:35.735 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:35.735 SQL [3741]: pgsql_db_connect() -- 21:07:35.738 DEBUG [3741]: Database connection successful -- 21:07:35.738 INFO [3741]: _SERVER found -- 21:07:35.738 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 21:07:35.738 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:35.738 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:35.738 INFO [3741]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 21:07:35.738 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:35.750 INFO [3741]: COREGRADE is stopping... -- 21:07:35.750 DEBUG [3741]: Closing database connection -- 21:07:35.750 SQL [3741]: pgsql_close() -- 21:07:35.784 INFO [3739]: COREGRADE is starting... -- 21:07:35.784 INFO [3739]: Version from config: 1.0 -- 21:07:35.784 DEBUG [3739]: Connecting to database... -- 21:07:35.784 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:35.784 SQL [3739]: pgsql_db_connect() -- 21:07:35.788 DEBUG [3739]: Database connection successful -- 21:07:35.788 INFO [3739]: _SERVER found -- 21:07:35.788 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 21:07:35.788 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:35.788 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:35.788 INFO [3739]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 21:07:35.788 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:35.801 INFO [3739]: COREGRADE is stopping... -- 21:07:35.801 DEBUG [3739]: Closing database connection -- 21:07:35.801 SQL [3739]: pgsql_close() -- 21:07:35.808 INFO [3800]: COREGRADE is starting... -- 21:07:35.808 INFO [3800]: Version from config: 1.0 -- 21:07:35.808 DEBUG [3800]: Connecting to database... -- 21:07:35.808 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:35.808 SQL [3800]: pgsql_db_connect() -- 21:07:35.818 INFO [3741]: COREGRADE is starting... -- 21:07:35.818 INFO [3741]: Version from config: 1.0 -- 21:07:35.818 DEBUG [3741]: Connecting to database... -- 21:07:35.818 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:35.818 SQL [3741]: pgsql_db_connect() -- 21:07:35.812 DEBUG [3800]: Database connection successful -- 21:07:35.812 INFO [3800]: _SERVER found -- 21:07:35.812 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 21:07:35.812 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:35.812 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:35.812 INFO [3800]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 21:07:35.812 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:35.824 INFO [3800]: COREGRADE is stopping... -- 21:07:35.824 DEBUG [3800]: Closing database connection -- 21:07:35.824 SQL [3800]: pgsql_close() -- 21:07:35.823 DEBUG [3741]: Database connection successful -- 21:07:35.823 INFO [3741]: _SERVER found -- 21:07:35.823 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 21:07:35.823 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:35.823 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:35.823 INFO [3741]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 21:07:35.823 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:35.834 INFO [3741]: COREGRADE is stopping... -- 21:07:35.834 DEBUG [3741]: Closing database connection -- 21:07:35.834 SQL [3741]: pgsql_close() -- 21:07:35.885 INFO [3739]: COREGRADE is starting... -- 21:07:35.885 INFO [3739]: Version from config: 1.0 -- 21:07:35.886 DEBUG [3739]: Connecting to database... -- 21:07:35.886 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:35.886 SQL [3739]: pgsql_db_connect() -- 21:07:35.890 DEBUG [3739]: Database connection successful -- 21:07:35.890 INFO [3739]: _SERVER found -- 21:07:35.890 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 21:07:35.890 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:35.890 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:35.890 INFO [3739]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 21:07:35.890 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:35.901 INFO [3739]: COREGRADE is stopping... -- 21:07:35.901 DEBUG [3739]: Closing database connection -- 21:07:35.901 SQL [3739]: pgsql_close() -- 21:07:35.903 INFO [3800]: COREGRADE is starting... -- 21:07:35.903 INFO [3741]: COREGRADE is starting... -- 21:07:35.904 INFO [3741]: Version from config: 1.0 -- 21:07:35.904 DEBUG [3741]: Connecting to database... -- 21:07:35.904 INFO [3800]: Version from config: 1.0 -- 21:07:35.904 DEBUG [3800]: Connecting to database... -- 21:07:35.904 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:35.904 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:35.904 SQL [3741]: pgsql_db_connect() -- 21:07:35.904 SQL [3800]: pgsql_db_connect() -- 21:07:35.908 DEBUG [3800]: Database connection successful -- 21:07:35.908 INFO [3800]: _SERVER found -- 21:07:35.908 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 21:07:35.908 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:35.908 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:35.908 INFO [3800]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 21:07:35.908 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:35.919 INFO [3800]: COREGRADE is stopping... -- 21:07:35.908 DEBUG [3741]: Database connection successful -- 21:07:35.908 INFO [3741]: _SERVER found -- 21:07:35.908 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 21:07:35.908 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:35.908 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:35.908 INFO [3741]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 21:07:35.908 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:35.919 INFO [3741]: COREGRADE is stopping... -- 21:07:35.919 DEBUG [3800]: Closing database connection -- 21:07:35.919 SQL [3800]: pgsql_close() -- 21:07:35.919 DEBUG [3741]: Closing database connection -- 21:07:35.919 SQL [3741]: pgsql_close() -- 21:07:35.981 INFO [3739]: COREGRADE is starting... -- 21:07:35.981 INFO [3739]: Version from config: 1.0 -- 21:07:35.981 DEBUG [3739]: Connecting to database... -- 21:07:35.981 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:35.981 SQL [3739]: pgsql_db_connect() -- 21:07:35.990 INFO [3741]: COREGRADE is starting... -- 21:07:35.991 INFO [3741]: Version from config: 1.0 -- 21:07:35.991 DEBUG [3741]: Connecting to database... -- 21:07:35.991 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:35.991 SQL [3741]: pgsql_db_connect() -- 21:07:35.985 DEBUG [3739]: Database connection successful -- 21:07:35.985 INFO [3739]: _SERVER found -- 21:07:35.985 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 21:07:35.985 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:35.985 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:35.985 INFO [3739]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 21:07:35.985 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:35.997 INFO [3739]: COREGRADE is stopping... -- 21:07:35.997 DEBUG [3739]: Closing database connection -- 21:07:35.997 SQL [3739]: pgsql_close() -- 21:07:35.998 INFO [3800]: COREGRADE is starting... -- 21:07:35.998 INFO [3800]: Version from config: 1.0 -- 21:07:35.998 DEBUG [3800]: Connecting to database... -- 21:07:35.998 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:35.998 SQL [3800]: pgsql_db_connect() -- 21:07:35.994 DEBUG [3741]: Database connection successful -- 21:07:35.995 INFO [3741]: _SERVER found -- 21:07:35.995 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 21:07:35.995 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:35.995 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:35.995 INFO [3741]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 21:07:35.995 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:36.006 INFO [3741]: COREGRADE is stopping... -- 21:07:36.006 DEBUG [3741]: Closing database connection -- 21:07:36.006 SQL [3741]: pgsql_close() -- 21:07:36.002 DEBUG [3800]: Database connection successful -- 21:07:36.002 INFO [3800]: _SERVER found -- 21:07:36.002 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 21:07:36.002 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:36.002 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:36.002 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 21:07:36.002 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:36.013 INFO [3800]: COREGRADE is stopping... -- 21:07:36.013 DEBUG [3800]: Closing database connection -- 21:07:36.013 SQL [3800]: pgsql_close() -- 21:07:36.077 INFO [3741]: COREGRADE is starting... -- 21:07:36.077 INFO [3739]: COREGRADE is starting... -- 21:07:36.077 INFO [3739]: Version from config: 1.0 -- 21:07:36.077 DEBUG [3739]: Connecting to database... -- 21:07:36.077 INFO [3741]: Version from config: 1.0 -- 21:07:36.077 DEBUG [3741]: Connecting to database... -- 21:07:36.077 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:36.077 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:36.077 SQL [3739]: pgsql_db_connect() -- 21:07:36.077 SQL [3741]: pgsql_db_connect() -- 21:07:36.083 INFO [3800]: COREGRADE is starting... -- 21:07:36.083 INFO [3800]: Version from config: 1.0 -- 21:07:36.083 DEBUG [3800]: Connecting to database... -- 21:07:36.083 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:36.083 SQL [3800]: pgsql_db_connect() -- 21:07:36.081 DEBUG [3739]: Database connection successful -- 21:07:36.081 INFO [3739]: _SERVER found -- 21:07:36.081 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 21:07:36.081 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:36.081 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:36.081 INFO [3739]: QUERY_STRING = /assets/js/pages/dashboard.js -- 21:07:36.081 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:36.093 INFO [3739]: COREGRADE is stopping... -- 21:07:36.081 DEBUG [3741]: Database connection successful -- 21:07:36.081 INFO [3741]: _SERVER found -- 21:07:36.081 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 21:07:36.081 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:36.081 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:36.081 INFO [3741]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 21:07:36.081 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:36.093 INFO [3741]: COREGRADE is stopping... -- 21:07:36.093 DEBUG [3739]: Closing database connection -- 21:07:36.093 DEBUG [3741]: Closing database connection -- 21:07:36.093 SQL [3739]: pgsql_close() -- 21:07:36.093 SQL [3741]: pgsql_close() -- 21:07:36.087 DEBUG [3800]: Database connection successful -- 21:07:36.087 INFO [3800]: _SERVER found -- 21:07:36.087 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 21:07:36.087 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:36.087 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:36.087 INFO [3800]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 21:07:36.087 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:36.099 INFO [3800]: COREGRADE is stopping... -- 21:07:36.099 DEBUG [3800]: Closing database connection -- 21:07:36.099 SQL [3800]: pgsql_close() -- 21:07:36.161 INFO [3741]: COREGRADE is starting... -- 21:07:36.161 INFO [3741]: Version from config: 1.0 -- 21:07:36.161 DEBUG [3741]: Connecting to database... -- 21:07:36.161 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:36.161 SQL [3741]: pgsql_db_connect() -- 21:07:36.163 INFO [3739]: COREGRADE is starting... -- 21:07:36.163 INFO [3739]: Version from config: 1.0 -- 21:07:36.163 DEBUG [3739]: Connecting to database... -- 21:07:36.163 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:36.163 SQL [3739]: pgsql_db_connect() -- 21:07:36.169 INFO [3800]: COREGRADE is starting... -- 21:07:36.169 INFO [3800]: Version from config: 1.0 -- 21:07:36.169 DEBUG [3800]: Connecting to database... -- 21:07:36.169 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:36.169 SQL [3800]: pgsql_db_connect() -- 21:07:36.165 DEBUG [3741]: Database connection successful -- 21:07:36.165 INFO [3741]: _SERVER found -- 21:07:36.165 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 21:07:36.165 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:36.165 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:36.165 INFO [3741]: QUERY_STRING = /assets/js/pages/picker_date.js -- 21:07:36.165 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:36.177 INFO [3741]: COREGRADE is stopping... -- 21:07:36.177 DEBUG [3741]: Closing database connection -- 21:07:36.177 SQL [3741]: pgsql_close() -- 21:07:36.167 DEBUG [3739]: Database connection successful -- 21:07:36.167 INFO [3739]: _SERVER found -- 21:07:36.167 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 21:07:36.167 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:36.167 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:36.167 INFO [3739]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 21:07:36.167 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:36.178 INFO [3739]: COREGRADE is stopping... -- 21:07:36.178 DEBUG [3739]: Closing database connection -- 21:07:36.178 SQL [3739]: pgsql_close() -- 21:07:36.173 DEBUG [3800]: Database connection successful -- 21:07:36.173 INFO [3800]: _SERVER found -- 21:07:36.173 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 21:07:36.173 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:36.173 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:36.173 INFO [3800]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 21:07:36.173 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:36.184 INFO [3800]: COREGRADE is stopping... -- 21:07:36.184 DEBUG [3800]: Closing database connection -- 21:07:36.184 SQL [3800]: pgsql_close() -- 21:07:36.244 INFO [3741]: COREGRADE is starting... -- 21:07:36.245 INFO [3741]: Version from config: 1.0 -- 21:07:36.245 DEBUG [3741]: Connecting to database... -- 21:07:36.245 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:36.245 SQL [3741]: pgsql_db_connect() -- 21:07:36.249 INFO [3739]: COREGRADE is starting... -- 21:07:36.249 INFO [3739]: Version from config: 1.0 -- 21:07:36.249 DEBUG [3739]: Connecting to database... -- 21:07:36.249 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:36.249 SQL [3739]: pgsql_db_connect() -- 21:07:36.253 INFO [3800]: COREGRADE is starting... -- 21:07:36.253 INFO [3800]: Version from config: 1.0 -- 21:07:36.253 DEBUG [3800]: Connecting to database... -- 21:07:36.253 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:36.253 SQL [3800]: pgsql_db_connect() -- 21:07:36.249 DEBUG [3741]: Database connection successful -- 21:07:36.249 INFO [3741]: _SERVER found -- 21:07:36.249 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 21:07:36.249 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:36.249 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:36.249 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 21:07:36.249 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:36.261 INFO [3741]: COREGRADE is stopping... -- 21:07:36.261 DEBUG [3741]: Closing database connection -- 21:07:36.261 SQL [3741]: pgsql_close() -- 21:07:36.254 DEBUG [3739]: Database connection successful -- 21:07:36.254 INFO [3739]: _SERVER found -- 21:07:36.254 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 21:07:36.254 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:36.254 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:36.254 INFO [3739]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 21:07:36.254 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:36.266 INFO [3739]: COREGRADE is stopping... -- 21:07:36.266 DEBUG [3739]: Closing database connection -- 21:07:36.266 SQL [3739]: pgsql_close() -- 21:07:36.257 DEBUG [3800]: Database connection successful -- 21:07:36.257 INFO [3800]: _SERVER found -- 21:07:36.257 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 21:07:36.257 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:36.257 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:36.257 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 21:07:36.257 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:36.269 INFO [3800]: COREGRADE is stopping... -- 21:07:36.269 DEBUG [3800]: Closing database connection -- 21:07:36.269 SQL [3800]: pgsql_close() -- 21:07:36.331 INFO [3741]: COREGRADE is starting... -- 21:07:36.332 INFO [3741]: Version from config: 1.0 -- 21:07:36.332 DEBUG [3741]: Connecting to database... -- 21:07:36.332 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:36.332 SQL [3741]: pgsql_db_connect() -- 21:07:36.333 INFO [3739]: COREGRADE is starting... -- 21:07:36.333 INFO [3739]: Version from config: 1.0 -- 21:07:36.333 DEBUG [3739]: Connecting to database... -- 21:07:36.333 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:36.333 SQL [3739]: pgsql_db_connect() -- 21:07:36.337 INFO [3800]: COREGRADE is starting... -- 21:07:36.337 INFO [3800]: Version from config: 1.0 -- 21:07:36.337 DEBUG [3800]: Connecting to database... -- 21:07:36.337 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:36.337 SQL [3800]: pgsql_db_connect() -- 21:07:36.336 DEBUG [3741]: Database connection successful -- 21:07:36.336 INFO [3741]: _SERVER found -- 21:07:36.336 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 21:07:36.336 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:36.336 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:36.336 INFO [3741]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 21:07:36.336 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:36.348 INFO [3741]: COREGRADE is stopping... -- 21:07:36.348 DEBUG [3741]: Closing database connection -- 21:07:36.348 SQL [3741]: pgsql_close() -- 21:07:36.338 DEBUG [3739]: Database connection successful -- 21:07:36.338 INFO [3739]: _SERVER found -- 21:07:36.338 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 21:07:36.338 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:36.338 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:36.338 INFO [3739]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 21:07:36.338 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:36.349 INFO [3739]: COREGRADE is stopping... -- 21:07:36.349 DEBUG [3739]: Closing database connection -- 21:07:36.349 SQL [3739]: pgsql_close() -- 21:07:36.341 DEBUG [3800]: Database connection successful -- 21:07:36.341 INFO [3800]: _SERVER found -- 21:07:36.341 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 21:07:36.341 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:36.341 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:36.341 INFO [3800]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 21:07:36.341 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:36.354 INFO [3800]: COREGRADE is stopping... -- 21:07:36.354 DEBUG [3800]: Closing database connection -- 21:07:36.354 SQL [3800]: pgsql_close() -- 21:07:36.417 INFO [3741]: COREGRADE is starting... -- 21:07:36.417 INFO [3741]: Version from config: 1.0 -- 21:07:36.417 DEBUG [3741]: Connecting to database... -- 21:07:36.417 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:36.417 SQL [3741]: pgsql_db_connect() -- 21:07:36.418 INFO [3739]: COREGRADE is starting... -- 21:07:36.418 INFO [3739]: Version from config: 1.0 -- 21:07:36.418 DEBUG [3739]: Connecting to database... -- 21:07:36.418 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:36.418 SQL [3739]: pgsql_db_connect() -- 21:07:36.421 DEBUG [3741]: Database connection successful -- 21:07:36.421 INFO [3741]: _SERVER found -- 21:07:36.421 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 21:07:36.421 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:36.421 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:36.421 INFO [3741]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 21:07:36.421 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:36.433 INFO [3741]: COREGRADE is stopping... -- 21:07:36.433 DEBUG [3741]: Closing database connection -- 21:07:36.433 SQL [3741]: pgsql_close() -- 21:07:36.422 DEBUG [3739]: Database connection successful -- 21:07:36.422 INFO [3739]: _SERVER found -- 21:07:36.422 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 21:07:36.422 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:36.422 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:36.422 INFO [3739]: QUERY_STRING = /assets/customjs/general.js -- 21:07:36.422 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:36.433 INFO [3739]: COREGRADE is stopping... -- 21:07:36.433 DEBUG [3739]: Closing database connection -- 21:07:36.433 SQL [3739]: pgsql_close() -- 21:07:36.501 INFO [3741]: COREGRADE is starting... -- 21:07:36.501 INFO [3741]: Version from config: 1.0 -- 21:07:36.501 DEBUG [3741]: Connecting to database... -- 21:07:36.501 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:36.501 SQL [3741]: pgsql_db_connect() -- 21:07:36.505 DEBUG [3741]: Database connection successful -- 21:07:36.505 INFO [3741]: _SERVER found -- 21:07:36.505 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 21:07:36.505 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:36.505 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:36.505 INFO [3741]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 21:07:36.505 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:36.517 INFO [3741]: COREGRADE is stopping... -- 21:07:36.517 DEBUG [3741]: Closing database connection -- 21:07:36.517 SQL [3741]: pgsql_close() -- 21:07:36.586 INFO [3741]: COREGRADE is starting... -- 21:07:36.586 INFO [3741]: Version from config: 1.0 -- 21:07:36.586 DEBUG [3741]: Connecting to database... -- 21:07:36.586 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:36.586 SQL [3741]: pgsql_db_connect() -- 21:07:36.590 DEBUG [3741]: Database connection successful -- 21:07:36.590 INFO [3741]: _SERVER found -- 21:07:36.590 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 21:07:36.590 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:36.590 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:36.590 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 21:07:36.590 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:36.602 INFO [3741]: COREGRADE is stopping... -- 21:07:36.602 DEBUG [3741]: Closing database connection -- 21:07:36.602 SQL [3741]: pgsql_close() -- 21:07:36.670 INFO [3741]: COREGRADE is starting... -- 21:07:36.670 INFO [3741]: Version from config: 1.0 -- 21:07:36.670 DEBUG [3741]: Connecting to database... -- 21:07:36.671 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:36.671 SQL [3741]: pgsql_db_connect() -- 21:07:36.675 DEBUG [3741]: Database connection successful -- 21:07:36.675 INFO [3741]: _SERVER found -- 21:07:36.675 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 21:07:36.675 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:36.675 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:36.675 INFO [3741]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 21:07:36.675 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:36.686 INFO [3741]: COREGRADE is stopping... -- 21:07:36.686 DEBUG [3741]: Closing database connection -- 21:07:36.686 SQL [3741]: pgsql_close() -- 21:07:36.755 INFO [3741]: COREGRADE is starting... -- 21:07:36.755 INFO [3741]: Version from config: 1.0 -- 21:07:36.755 DEBUG [3741]: Connecting to database... -- 21:07:36.755 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:36.755 SQL [3741]: pgsql_db_connect() -- 21:07:36.759 DEBUG [3741]: Database connection successful -- 21:07:36.759 INFO [3741]: _SERVER found -- 21:07:36.759 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 21:07:36.759 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:36.759 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:36.759 INFO [3741]: QUERY_STRING = /assets/js/pages/dashboard.js -- 21:07:36.759 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:36.771 INFO [3741]: COREGRADE is stopping... -- 21:07:36.771 DEBUG [3741]: Closing database connection -- 21:07:36.771 SQL [3741]: pgsql_close() -- 21:07:36.840 INFO [3741]: COREGRADE is starting... -- 21:07:36.840 INFO [3741]: Version from config: 1.0 -- 21:07:36.840 DEBUG [3741]: Connecting to database... -- 21:07:36.840 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:36.840 SQL [3741]: pgsql_db_connect() -- 21:07:36.844 DEBUG [3741]: Database connection successful -- 21:07:36.844 INFO [3741]: _SERVER found -- 21:07:36.844 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 21:07:36.844 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:36.844 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:36.844 INFO [3741]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 21:07:36.844 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:36.856 INFO [3741]: COREGRADE is stopping... -- 21:07:36.856 DEBUG [3741]: Closing database connection -- 21:07:36.856 SQL [3741]: pgsql_close() -- 21:07:36.924 INFO [3741]: COREGRADE is starting... -- 21:07:36.925 INFO [3741]: Version from config: 1.0 -- 21:07:36.925 DEBUG [3741]: Connecting to database... -- 21:07:36.925 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:36.925 SQL [3741]: pgsql_db_connect() -- 21:07:36.928 DEBUG [3741]: Database connection successful -- 21:07:36.928 INFO [3741]: _SERVER found -- 21:07:36.928 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 21:07:36.928 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:36.928 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:36.928 INFO [3741]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 21:07:36.928 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:36.940 INFO [3741]: COREGRADE is stopping... -- 21:07:36.940 DEBUG [3741]: Closing database connection -- 21:07:36.940 SQL [3741]: pgsql_close() -- 21:07:37.008 INFO [3741]: COREGRADE is starting... -- 21:07:37.009 INFO [3741]: Version from config: 1.0 -- 21:07:37.009 DEBUG [3741]: Connecting to database... -- 21:07:37.009 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:37.009 SQL [3741]: pgsql_db_connect() -- 21:07:37.013 DEBUG [3741]: Database connection successful -- 21:07:37.013 INFO [3741]: _SERVER found -- 21:07:37.013 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 21:07:37.013 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:37.013 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:37.013 INFO [3741]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 21:07:37.013 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:37.024 INFO [3741]: COREGRADE is stopping... -- 21:07:37.024 DEBUG [3741]: Closing database connection -- 21:07:37.024 SQL [3741]: pgsql_close() -- 21:07:37.093 INFO [3741]: COREGRADE is starting... -- 21:07:37.093 INFO [3741]: Version from config: 1.0 -- 21:07:37.093 DEBUG [3741]: Connecting to database... -- 21:07:37.093 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:37.093 SQL [3741]: pgsql_db_connect() -- 21:07:37.097 DEBUG [3741]: Database connection successful -- 21:07:37.097 INFO [3741]: _SERVER found -- 21:07:37.097 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 21:07:37.097 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:37.097 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:37.097 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 21:07:37.097 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:37.108 INFO [3741]: COREGRADE is stopping... -- 21:07:37.108 DEBUG [3741]: Closing database connection -- 21:07:37.108 SQL [3741]: pgsql_close() -- 21:07:37.178 INFO [3741]: COREGRADE is starting... -- 21:07:37.178 INFO [3741]: Version from config: 1.0 -- 21:07:37.178 DEBUG [3741]: Connecting to database... -- 21:07:37.178 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:37.178 SQL [3741]: pgsql_db_connect() -- 21:07:37.182 DEBUG [3741]: Database connection successful -- 21:07:37.182 INFO [3741]: _SERVER found -- 21:07:37.182 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 21:07:37.182 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:37.182 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:37.182 INFO [3741]: QUERY_STRING = /assets/js/pages/picker_date.js -- 21:07:37.182 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:37.194 INFO [3741]: COREGRADE is stopping... -- 21:07:37.194 DEBUG [3741]: Closing database connection -- 21:07:37.194 SQL [3741]: pgsql_close() -- 21:07:37.264 INFO [3741]: COREGRADE is starting... -- 21:07:37.264 INFO [3741]: Version from config: 1.0 -- 21:07:37.264 DEBUG [3741]: Connecting to database... -- 21:07:37.264 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:37.265 SQL [3741]: pgsql_db_connect() -- 21:07:37.269 DEBUG [3741]: Database connection successful -- 21:07:37.269 INFO [3741]: _SERVER found -- 21:07:37.269 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 21:07:37.269 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:37.269 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:37.269 INFO [3741]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 21:07:37.269 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:37.280 INFO [3741]: COREGRADE is stopping... -- 21:07:37.280 DEBUG [3741]: Closing database connection -- 21:07:37.280 SQL [3741]: pgsql_close() -- 21:07:37.349 INFO [3741]: COREGRADE is starting... -- 21:07:37.349 INFO [3741]: Version from config: 1.0 -- 21:07:37.349 DEBUG [3741]: Connecting to database... -- 21:07:37.349 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:37.349 SQL [3741]: pgsql_db_connect() -- 21:07:37.353 DEBUG [3741]: Database connection successful -- 21:07:37.353 INFO [3741]: _SERVER found -- 21:07:37.353 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 21:07:37.353 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:37.353 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:37.353 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 21:07:37.353 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:37.365 INFO [3741]: COREGRADE is stopping... -- 21:07:37.365 DEBUG [3741]: Closing database connection -- 21:07:37.365 SQL [3741]: pgsql_close() -- 21:07:37.434 INFO [3741]: COREGRADE is starting... -- 21:07:37.434 INFO [3741]: Version from config: 1.0 -- 21:07:37.434 DEBUG [3741]: Connecting to database... -- 21:07:37.434 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:37.434 SQL [3741]: pgsql_db_connect() -- 21:07:37.438 DEBUG [3741]: Database connection successful -- 21:07:37.438 INFO [3741]: _SERVER found -- 21:07:37.438 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 21:07:37.438 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:37.438 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:37.438 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 21:07:37.438 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:37.449 INFO [3741]: COREGRADE is stopping... -- 21:07:37.449 DEBUG [3741]: Closing database connection -- 21:07:37.449 SQL [3741]: pgsql_close() -- 21:07:37.518 INFO [3741]: COREGRADE is starting... -- 21:07:37.518 INFO [3741]: Version from config: 1.0 -- 21:07:37.518 DEBUG [3741]: Connecting to database... -- 21:07:37.518 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:37.518 SQL [3741]: pgsql_db_connect() -- 21:07:37.522 DEBUG [3741]: Database connection successful -- 21:07:37.522 INFO [3741]: _SERVER found -- 21:07:37.522 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 21:07:37.522 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:37.522 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:37.522 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 21:07:37.522 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:37.534 INFO [3741]: COREGRADE is stopping... -- 21:07:37.534 DEBUG [3741]: Closing database connection -- 21:07:37.534 SQL [3741]: pgsql_close() -- 21:07:37.603 INFO [3741]: COREGRADE is starting... -- 21:07:37.603 INFO [3741]: Version from config: 1.0 -- 21:07:37.603 DEBUG [3741]: Connecting to database... -- 21:07:37.603 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:37.603 SQL [3741]: pgsql_db_connect() -- 21:07:37.607 DEBUG [3741]: Database connection successful -- 21:07:37.607 INFO [3741]: _SERVER found -- 21:07:37.607 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 21:07:37.607 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:37.607 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:37.607 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 21:07:37.607 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:37.619 INFO [3741]: COREGRADE is stopping... -- 21:07:37.619 DEBUG [3741]: Closing database connection -- 21:07:37.619 SQL [3741]: pgsql_close() -- 21:07:37.698 INFO [3741]: COREGRADE is starting... -- 21:07:37.698 INFO [3741]: Version from config: 1.0 -- 21:07:37.698 DEBUG [3741]: Connecting to database... -- 21:07:37.698 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:37.698 SQL [3741]: pgsql_db_connect() -- 21:07:37.702 DEBUG [3741]: Database connection successful -- 21:07:37.702 INFO [3741]: _SERVER found -- 21:07:37.702 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 21:07:37.702 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:37.702 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:37.702 INFO [3741]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 21:07:37.702 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:37.713 INFO [3741]: COREGRADE is stopping... -- 21:07:37.713 DEBUG [3741]: Closing database connection -- 21:07:37.713 SQL [3741]: pgsql_close() -- 21:07:37.782 INFO [3741]: COREGRADE is starting... -- 21:07:37.782 INFO [3741]: Version from config: 1.0 -- 21:07:37.782 DEBUG [3741]: Connecting to database... -- 21:07:37.782 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:37.782 SQL [3741]: pgsql_db_connect() -- 21:07:37.786 DEBUG [3741]: Database connection successful -- 21:07:37.786 INFO [3741]: _SERVER found -- 21:07:37.786 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 21:07:37.786 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:37.786 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:37.786 INFO [3741]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 21:07:37.786 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:37.798 INFO [3741]: COREGRADE is stopping... -- 21:07:37.798 DEBUG [3741]: Closing database connection -- 21:07:37.798 SQL [3741]: pgsql_close() -- 21:07:37.868 INFO [3741]: COREGRADE is starting... -- 21:07:37.868 INFO [3741]: Version from config: 1.0 -- 21:07:37.868 DEBUG [3741]: Connecting to database... -- 21:07:37.868 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:07:37.868 SQL [3741]: pgsql_db_connect() -- 21:07:37.872 DEBUG [3741]: Database connection successful -- 21:07:37.872 INFO [3741]: _SERVER found -- 21:07:37.872 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 21:07:37.872 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:07:37.872 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:07:37.872 INFO [3741]: QUERY_STRING = /assets/customjs/general.js -- 21:07:37.872 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:07:37.884 INFO [3741]: COREGRADE is stopping... -- 21:07:37.884 DEBUG [3741]: Closing database connection -- 21:07:37.884 SQL [3741]: pgsql_close() -- 21:27:38.105 INFO [3742]: COREGRADE is starting... -- 21:27:38.106 INFO [3742]: Version from config: 1.0 -- 21:27:38.106 DEBUG [3742]: Connecting to database... -- 21:27:38.106 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:38.106 SQL [3742]: pgsql_db_connect() -- 21:27:38.110 DEBUG [3742]: Database connection successful -- 21:27:38.110 INFO [3742]: _SERVER found -- 21:27:38.110 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 21:27:38.110 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:38.110 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sq6imsl8n5t8v1bbjrjum0ervsgjfjk2 -- 21:27:38.110 INFO [3742]: QUERY_STRING = /logout -- 21:27:38.110 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:38.146 INFO [3742]: COREGRADE is stopping... -- 21:27:38.146 DEBUG [3742]: Closing database connection -- 21:27:38.146 SQL [3742]: pgsql_close() -- 21:27:38.227 INFO [3742]: COREGRADE is starting... -- 21:27:38.228 INFO [3742]: Version from config: 1.0 -- 21:27:38.228 DEBUG [3742]: Connecting to database... -- 21:27:38.228 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:38.228 SQL [3742]: pgsql_db_connect() -- 21:27:38.231 DEBUG [3742]: Database connection successful -- 21:27:38.231 INFO [3742]: _SERVER found -- 21:27:38.231 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 21:27:38.231 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:38.231 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:38.231 INFO [3742]: QUERY_STRING = /start -- 21:27:38.231 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:38.274 INFO [3742]: COREGRADE is stopping... -- 21:27:38.274 DEBUG [3742]: Closing database connection -- 21:27:38.275 SQL [3742]: pgsql_close() -- 21:27:38.402 INFO [3742]: COREGRADE is starting... -- 21:27:38.402 INFO [3742]: Version from config: 1.0 -- 21:27:38.402 DEBUG [3742]: Connecting to database... -- 21:27:38.402 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:38.402 SQL [3742]: pgsql_db_connect() -- 21:27:38.406 DEBUG [3742]: Database connection successful -- 21:27:38.406 INFO [3742]: _SERVER found -- 21:27:38.406 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 21:27:38.406 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:38.406 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:38.406 INFO [3742]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 21:27:38.406 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:38.419 INFO [3742]: COREGRADE is stopping... -- 21:27:38.419 DEBUG [3742]: Closing database connection -- 21:27:38.419 SQL [3742]: pgsql_close() -- 21:27:38.427 INFO [3742]: COREGRADE is starting... -- 21:27:38.427 INFO [3742]: Version from config: 1.0 -- 21:27:38.427 DEBUG [3742]: Connecting to database... -- 21:27:38.427 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:38.427 SQL [3742]: pgsql_db_connect() -- 21:27:38.431 DEBUG [3742]: Database connection successful -- 21:27:38.431 INFO [3742]: _SERVER found -- 21:27:38.431 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 21:27:38.431 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:38.431 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:38.431 INFO [3742]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 21:27:38.431 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:38.443 INFO [3742]: COREGRADE is stopping... -- 21:27:38.443 DEBUG [3742]: Closing database connection -- 21:27:38.443 SQL [3742]: pgsql_close() -- 21:27:38.475 INFO [3742]: COREGRADE is starting... -- 21:27:38.476 INFO [3742]: Version from config: 1.0 -- 21:27:38.476 DEBUG [3742]: Connecting to database... -- 21:27:38.476 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:38.476 SQL [3742]: pgsql_db_connect() -- 21:27:38.479 DEBUG [3742]: Database connection successful -- 21:27:38.480 INFO [3742]: _SERVER found -- 21:27:38.480 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 21:27:38.480 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:38.480 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:38.480 INFO [3742]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 21:27:38.480 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:38.491 INFO [3742]: COREGRADE is stopping... -- 21:27:38.491 DEBUG [3742]: Closing database connection -- 21:27:38.491 SQL [3742]: pgsql_close() -- 21:27:38.500 INFO [3742]: COREGRADE is starting... -- 21:27:38.501 INFO [3742]: Version from config: 1.0 -- 21:27:38.501 DEBUG [3742]: Connecting to database... -- 21:27:38.501 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:38.501 SQL [3742]: pgsql_db_connect() -- 21:27:38.513 INFO [3738]: COREGRADE is starting... -- 21:27:38.513 INFO [3738]: Version from config: 1.0 -- 21:27:38.513 DEBUG [3738]: Connecting to database... -- 21:27:38.513 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:38.513 SQL [3738]: pgsql_db_connect() -- 21:27:38.505 DEBUG [3742]: Database connection successful -- 21:27:38.505 INFO [3742]: _SERVER found -- 21:27:38.505 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 21:27:38.505 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:38.505 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:38.505 INFO [3742]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 21:27:38.505 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:38.517 INFO [3742]: COREGRADE is stopping... -- 21:27:38.517 DEBUG [3742]: Closing database connection -- 21:27:38.517 SQL [3742]: pgsql_close() -- 21:27:38.517 DEBUG [3738]: Database connection successful -- 21:27:38.517 INFO [3738]: _SERVER found -- 21:27:38.517 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 21:27:38.517 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:38.517 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:38.517 INFO [3738]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 21:27:38.517 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:38.531 INFO [3738]: COREGRADE is stopping... -- 21:27:38.531 DEBUG [3738]: Closing database connection -- 21:27:38.531 SQL [3738]: pgsql_close() -- 21:27:38.572 INFO [3738]: COREGRADE is starting... -- 21:27:38.572 INFO [3738]: Version from config: 1.0 -- 21:27:38.572 DEBUG [3738]: Connecting to database... -- 21:27:38.572 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:38.572 SQL [3738]: pgsql_db_connect() -- 21:27:38.576 DEBUG [3738]: Database connection successful -- 21:27:38.576 INFO [3738]: _SERVER found -- 21:27:38.576 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 21:27:38.576 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:38.576 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:38.576 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 21:27:38.576 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:38.588 INFO [3738]: COREGRADE is stopping... -- 21:27:38.588 DEBUG [3738]: Closing database connection -- 21:27:38.588 SQL [3738]: pgsql_close() -- 21:27:38.597 INFO [3738]: COREGRADE is starting... -- 21:27:38.597 INFO [3738]: Version from config: 1.0 -- 21:27:38.597 DEBUG [3738]: Connecting to database... -- 21:27:38.597 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:38.597 SQL [3738]: pgsql_db_connect() -- 21:27:38.598 INFO [3742]: COREGRADE is starting... -- 21:27:38.599 INFO [3742]: Version from config: 1.0 -- 21:27:38.599 DEBUG [3742]: Connecting to database... -- 21:27:38.599 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:38.599 SQL [3742]: pgsql_db_connect() -- 21:27:38.601 DEBUG [3738]: Database connection successful -- 21:27:38.601 INFO [3738]: _SERVER found -- 21:27:38.601 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 21:27:38.601 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:38.601 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:38.601 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 21:27:38.601 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:38.613 INFO [3738]: COREGRADE is stopping... -- 21:27:38.613 DEBUG [3738]: Closing database connection -- 21:27:38.613 SQL [3738]: pgsql_close() -- 21:27:38.602 DEBUG [3742]: Database connection successful -- 21:27:38.602 INFO [3742]: _SERVER found -- 21:27:38.602 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 21:27:38.602 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:38.602 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:38.602 INFO [3742]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 21:27:38.602 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:38.614 INFO [3742]: COREGRADE is stopping... -- 21:27:38.614 DEBUG [3742]: Closing database connection -- 21:27:38.614 SQL [3742]: pgsql_close() -- 21:27:38.668 INFO [3742]: COREGRADE is starting... -- 21:27:38.669 INFO [3742]: Version from config: 1.0 -- 21:27:38.669 DEBUG [3742]: Connecting to database... -- 21:27:38.669 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:38.669 SQL [3742]: pgsql_db_connect() -- 21:27:38.683 INFO [3738]: COREGRADE is starting... -- 21:27:38.683 INFO [3738]: Version from config: 1.0 -- 21:27:38.683 DEBUG [3738]: Connecting to database... -- 21:27:38.683 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:38.683 SQL [3738]: pgsql_db_connect() -- 21:27:38.673 DEBUG [3742]: Database connection successful -- 21:27:38.673 INFO [3742]: _SERVER found -- 21:27:38.673 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 21:27:38.673 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:38.673 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:38.673 INFO [3742]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 21:27:38.673 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:38.685 INFO [3742]: COREGRADE is stopping... -- 21:27:38.685 DEBUG [3742]: Closing database connection -- 21:27:38.685 SQL [3742]: pgsql_close() -- 21:27:38.694 INFO [3742]: COREGRADE is starting... -- 21:27:38.694 INFO [3742]: Version from config: 1.0 -- 21:27:38.694 DEBUG [3742]: Connecting to database... -- 21:27:38.694 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:38.694 SQL [3742]: pgsql_db_connect() -- 21:27:38.687 DEBUG [3738]: Database connection successful -- 21:27:38.687 INFO [3738]: _SERVER found -- 21:27:38.687 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 21:27:38.687 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:38.687 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:38.687 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 21:27:38.687 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:38.699 INFO [3738]: COREGRADE is stopping... -- 21:27:38.699 DEBUG [3738]: Closing database connection -- 21:27:38.699 SQL [3738]: pgsql_close() -- 21:27:38.698 DEBUG [3742]: Database connection successful -- 21:27:38.698 INFO [3742]: _SERVER found -- 21:27:38.698 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 21:27:38.698 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:38.698 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:38.698 INFO [3742]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 21:27:38.698 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:38.710 INFO [3742]: COREGRADE is stopping... -- 21:27:38.710 DEBUG [3742]: Closing database connection -- 21:27:38.710 SQL [3742]: pgsql_close() -- 21:27:38.766 INFO [3742]: COREGRADE is starting... -- 21:27:38.766 INFO [3742]: Version from config: 1.0 -- 21:27:38.766 DEBUG [3742]: Connecting to database... -- 21:27:38.766 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:38.766 SQL [3742]: pgsql_db_connect() -- 21:27:38.767 INFO [3738]: COREGRADE is starting... -- 21:27:38.767 INFO [3738]: Version from config: 1.0 -- 21:27:38.767 DEBUG [3738]: Connecting to database... -- 21:27:38.767 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:38.767 SQL [3738]: pgsql_db_connect() -- 21:27:38.782 INFO [3740]: COREGRADE is starting... -- 21:27:38.782 INFO [3740]: Version from config: 1.0 -- 21:27:38.782 DEBUG [3740]: Connecting to database... -- 21:27:38.782 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:38.782 SQL [3740]: pgsql_db_connect() -- 21:27:38.770 DEBUG [3738]: Database connection successful -- 21:27:38.770 INFO [3738]: _SERVER found -- 21:27:38.770 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 21:27:38.770 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:38.770 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:38.770 INFO [3738]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 21:27:38.770 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:38.782 INFO [3738]: COREGRADE is stopping... -- 21:27:38.782 DEBUG [3738]: Closing database connection -- 21:27:38.782 SQL [3738]: pgsql_close() -- 21:27:38.770 DEBUG [3742]: Database connection successful -- 21:27:38.770 INFO [3742]: _SERVER found -- 21:27:38.770 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 21:27:38.770 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:38.770 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:38.770 INFO [3742]: QUERY_STRING = /assets/js/pages/dashboard.js -- 21:27:38.770 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:38.782 INFO [3742]: COREGRADE is stopping... -- 21:27:38.782 DEBUG [3742]: Closing database connection -- 21:27:38.782 SQL [3742]: pgsql_close() -- 21:27:38.786 DEBUG [3740]: Database connection successful -- 21:27:38.787 INFO [3740]: _SERVER found -- 21:27:38.787 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 21:27:38.787 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:38.787 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:38.787 INFO [3740]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 21:27:38.787 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:38.799 INFO [3740]: COREGRADE is stopping... -- 21:27:38.799 DEBUG [3740]: Closing database connection -- 21:27:38.799 SQL [3740]: pgsql_close() -- 21:27:38.851 INFO [3740]: COREGRADE is starting... -- 21:27:38.851 INFO [3740]: Version from config: 1.0 -- 21:27:38.851 DEBUG [3740]: Connecting to database... -- 21:27:38.851 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:38.852 SQL [3740]: pgsql_db_connect() -- 21:27:38.854 INFO [3738]: COREGRADE is starting... -- 21:27:38.854 INFO [3738]: Version from config: 1.0 -- 21:27:38.854 DEBUG [3738]: Connecting to database... -- 21:27:38.854 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:38.854 SQL [3738]: pgsql_db_connect() -- 21:27:38.856 DEBUG [3740]: Database connection successful -- 21:27:38.856 INFO [3740]: _SERVER found -- 21:27:38.856 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 21:27:38.856 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:38.856 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:38.856 INFO [3740]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 21:27:38.856 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:38.867 INFO [3740]: COREGRADE is stopping... -- 21:27:38.867 DEBUG [3740]: Closing database connection -- 21:27:38.867 SQL [3740]: pgsql_close() -- 21:27:38.869 INFO [3742]: COREGRADE is starting... -- 21:27:38.869 INFO [3742]: Version from config: 1.0 -- 21:27:38.869 DEBUG [3742]: Connecting to database... -- 21:27:38.869 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:38.869 SQL [3742]: pgsql_db_connect() -- 21:27:38.858 DEBUG [3738]: Database connection successful -- 21:27:38.858 INFO [3738]: _SERVER found -- 21:27:38.858 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 21:27:38.858 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:38.858 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:38.858 INFO [3738]: QUERY_STRING = /assets/js/pages/picker_date.js -- 21:27:38.858 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:38.869 INFO [3738]: COREGRADE is stopping... -- 21:27:38.869 DEBUG [3738]: Closing database connection -- 21:27:38.869 SQL [3738]: pgsql_close() -- 21:27:38.874 DEBUG [3742]: Database connection successful -- 21:27:38.874 INFO [3742]: _SERVER found -- 21:27:38.874 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 21:27:38.874 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:38.874 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:38.874 INFO [3742]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 21:27:38.874 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:38.886 INFO [3742]: COREGRADE is stopping... -- 21:27:38.886 DEBUG [3742]: Closing database connection -- 21:27:38.886 SQL [3742]: pgsql_close() -- 21:27:38.935 INFO [3742]: COREGRADE is starting... -- 21:27:38.936 INFO [3742]: Version from config: 1.0 -- 21:27:38.936 DEBUG [3742]: Connecting to database... -- 21:27:38.936 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:38.936 SQL [3742]: pgsql_db_connect() -- 21:27:38.939 INFO [3738]: COREGRADE is starting... -- 21:27:38.939 INFO [3738]: Version from config: 1.0 -- 21:27:38.939 DEBUG [3738]: Connecting to database... -- 21:27:38.939 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:38.939 SQL [3738]: pgsql_db_connect() -- 21:27:38.939 DEBUG [3742]: Database connection successful -- 21:27:38.939 INFO [3742]: _SERVER found -- 21:27:38.939 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 21:27:38.939 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:38.940 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:38.940 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 21:27:38.940 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:38.952 INFO [3742]: COREGRADE is stopping... -- 21:27:38.952 DEBUG [3742]: Closing database connection -- 21:27:38.952 SQL [3742]: pgsql_close() -- 21:27:38.943 DEBUG [3738]: Database connection successful -- 21:27:38.943 INFO [3738]: _SERVER found -- 21:27:38.943 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 21:27:38.943 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:38.943 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:38.943 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 21:27:38.943 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:38.955 INFO [3738]: COREGRADE is stopping... -- 21:27:38.955 DEBUG [3738]: Closing database connection -- 21:27:38.955 SQL [3738]: pgsql_close() -- 21:27:38.955 INFO [3742]: COREGRADE is starting... -- 21:27:38.956 INFO [3742]: Version from config: 1.0 -- 21:27:38.956 DEBUG [3742]: Connecting to database... -- 21:27:38.956 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:38.956 SQL [3742]: pgsql_db_connect() -- 21:27:38.960 DEBUG [3742]: Database connection successful -- 21:27:38.960 INFO [3742]: _SERVER found -- 21:27:38.960 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 21:27:38.960 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:38.960 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:38.960 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 21:27:38.960 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:38.972 INFO [3742]: COREGRADE is stopping... -- 21:27:38.972 DEBUG [3742]: Closing database connection -- 21:27:38.972 SQL [3742]: pgsql_close() -- 21:27:39.020 INFO [3742]: COREGRADE is starting... -- 21:27:39.020 INFO [3742]: Version from config: 1.0 -- 21:27:39.020 DEBUG [3742]: Connecting to database... -- 21:27:39.020 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:39.020 SQL [3742]: pgsql_db_connect() -- 21:27:39.024 INFO [3738]: COREGRADE is starting... -- 21:27:39.024 INFO [3738]: Version from config: 1.0 -- 21:27:39.024 DEBUG [3738]: Connecting to database... -- 21:27:39.024 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:39.025 SQL [3738]: pgsql_db_connect() -- 21:27:39.024 DEBUG [3742]: Database connection successful -- 21:27:39.024 INFO [3742]: _SERVER found -- 21:27:39.024 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 21:27:39.024 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:39.024 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:39.024 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 21:27:39.024 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:39.036 INFO [3742]: COREGRADE is stopping... -- 21:27:39.036 DEBUG [3742]: Closing database connection -- 21:27:39.036 SQL [3742]: pgsql_close() -- 21:27:39.028 DEBUG [3738]: Database connection successful -- 21:27:39.028 INFO [3738]: _SERVER found -- 21:27:39.028 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 21:27:39.028 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:39.028 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:39.028 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 21:27:39.028 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:39.040 INFO [3738]: COREGRADE is stopping... -- 21:27:39.040 DEBUG [3738]: Closing database connection -- 21:27:39.040 SQL [3738]: pgsql_close() -- 21:27:39.041 INFO [3742]: COREGRADE is starting... -- 21:27:39.041 INFO [3742]: Version from config: 1.0 -- 21:27:39.041 DEBUG [3742]: Connecting to database... -- 21:27:39.041 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:39.041 SQL [3742]: pgsql_db_connect() -- 21:27:39.045 DEBUG [3742]: Database connection successful -- 21:27:39.045 INFO [3742]: _SERVER found -- 21:27:39.045 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 21:27:39.045 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:39.045 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:39.045 INFO [3742]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 21:27:39.045 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:39.057 INFO [3742]: COREGRADE is stopping... -- 21:27:39.057 DEBUG [3742]: Closing database connection -- 21:27:39.057 SQL [3742]: pgsql_close() -- 21:27:39.104 INFO [3742]: COREGRADE is starting... -- 21:27:39.104 INFO [3742]: Version from config: 1.0 -- 21:27:39.104 DEBUG [3742]: Connecting to database... -- 21:27:39.105 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:39.105 SQL [3742]: pgsql_db_connect() -- 21:27:39.109 INFO [3738]: COREGRADE is starting... -- 21:27:39.109 INFO [3738]: Version from config: 1.0 -- 21:27:39.109 DEBUG [3738]: Connecting to database... -- 21:27:39.109 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:39.109 SQL [3738]: pgsql_db_connect() -- 21:27:39.108 DEBUG [3742]: Database connection successful -- 21:27:39.108 INFO [3742]: _SERVER found -- 21:27:39.108 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 21:27:39.108 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:39.108 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:39.109 INFO [3742]: QUERY_STRING = /assets/customjs/general.js -- 21:27:39.109 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:39.121 INFO [3742]: COREGRADE is stopping... -- 21:27:39.121 DEBUG [3742]: Closing database connection -- 21:27:39.121 SQL [3742]: pgsql_close() -- 21:27:39.113 DEBUG [3738]: Database connection successful -- 21:27:39.113 INFO [3738]: _SERVER found -- 21:27:39.113 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 21:27:39.113 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:39.113 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:39.113 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 21:27:39.113 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:39.125 INFO [3738]: COREGRADE is stopping... -- 21:27:39.125 DEBUG [3738]: Closing database connection -- 21:27:39.125 SQL [3738]: pgsql_close() -- 21:27:39.194 INFO [3738]: COREGRADE is starting... -- 21:27:39.194 INFO [3738]: Version from config: 1.0 -- 21:27:39.194 DEBUG [3738]: Connecting to database... -- 21:27:39.194 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:39.195 SQL [3738]: pgsql_db_connect() -- 21:27:39.198 DEBUG [3738]: Database connection successful -- 21:27:39.198 INFO [3738]: _SERVER found -- 21:27:39.199 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 21:27:39.199 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:39.199 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:39.199 INFO [3738]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 21:27:39.199 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:39.210 INFO [3738]: COREGRADE is stopping... -- 21:27:39.210 DEBUG [3738]: Closing database connection -- 21:27:39.210 SQL [3738]: pgsql_close() -- 21:27:39.280 INFO [3738]: COREGRADE is starting... -- 21:27:39.280 INFO [3738]: Version from config: 1.0 -- 21:27:39.280 DEBUG [3738]: Connecting to database... -- 21:27:39.280 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:39.280 SQL [3738]: pgsql_db_connect() -- 21:27:39.284 DEBUG [3738]: Database connection successful -- 21:27:39.284 INFO [3738]: _SERVER found -- 21:27:39.284 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 21:27:39.284 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:39.284 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:39.284 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 21:27:39.284 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:39.296 INFO [3738]: COREGRADE is stopping... -- 21:27:39.296 DEBUG [3738]: Closing database connection -- 21:27:39.296 SQL [3738]: pgsql_close() -- 21:27:39.365 INFO [3738]: COREGRADE is starting... -- 21:27:39.366 INFO [3738]: Version from config: 1.0 -- 21:27:39.366 DEBUG [3738]: Connecting to database... -- 21:27:39.366 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:39.366 SQL [3738]: pgsql_db_connect() -- 21:27:39.369 DEBUG [3738]: Database connection successful -- 21:27:39.369 INFO [3738]: _SERVER found -- 21:27:39.369 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 21:27:39.369 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:39.369 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:39.369 INFO [3738]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 21:27:39.369 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:39.381 INFO [3738]: COREGRADE is stopping... -- 21:27:39.381 DEBUG [3738]: Closing database connection -- 21:27:39.381 SQL [3738]: pgsql_close() -- 21:27:39.451 INFO [3738]: COREGRADE is starting... -- 21:27:39.452 INFO [3738]: Version from config: 1.0 -- 21:27:39.452 DEBUG [3738]: Connecting to database... -- 21:27:39.452 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:39.452 SQL [3738]: pgsql_db_connect() -- 21:27:39.456 DEBUG [3738]: Database connection successful -- 21:27:39.456 INFO [3738]: _SERVER found -- 21:27:39.456 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 21:27:39.456 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:39.456 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:39.456 INFO [3738]: QUERY_STRING = /assets/js/pages/dashboard.js -- 21:27:39.456 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:39.467 INFO [3738]: COREGRADE is stopping... -- 21:27:39.467 DEBUG [3738]: Closing database connection -- 21:27:39.467 SQL [3738]: pgsql_close() -- 21:27:39.539 INFO [3738]: COREGRADE is starting... -- 21:27:39.540 INFO [3738]: Version from config: 1.0 -- 21:27:39.540 DEBUG [3738]: Connecting to database... -- 21:27:39.540 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:39.540 SQL [3738]: pgsql_db_connect() -- 21:27:39.544 DEBUG [3738]: Database connection successful -- 21:27:39.544 INFO [3738]: _SERVER found -- 21:27:39.544 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 21:27:39.544 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:39.544 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:39.544 INFO [3738]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 21:27:39.544 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:39.556 INFO [3738]: COREGRADE is stopping... -- 21:27:39.556 DEBUG [3738]: Closing database connection -- 21:27:39.556 SQL [3738]: pgsql_close() -- 21:27:39.626 INFO [3738]: COREGRADE is starting... -- 21:27:39.626 INFO [3738]: Version from config: 1.0 -- 21:27:39.626 DEBUG [3738]: Connecting to database... -- 21:27:39.626 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:39.626 SQL [3738]: pgsql_db_connect() -- 21:27:39.630 DEBUG [3738]: Database connection successful -- 21:27:39.630 INFO [3738]: _SERVER found -- 21:27:39.630 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 21:27:39.630 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:39.630 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:39.630 INFO [3738]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 21:27:39.630 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:39.642 INFO [3738]: COREGRADE is stopping... -- 21:27:39.642 DEBUG [3738]: Closing database connection -- 21:27:39.642 SQL [3738]: pgsql_close() -- 21:27:39.711 INFO [3738]: COREGRADE is starting... -- 21:27:39.712 INFO [3738]: Version from config: 1.0 -- 21:27:39.712 DEBUG [3738]: Connecting to database... -- 21:27:39.712 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:39.712 SQL [3738]: pgsql_db_connect() -- 21:27:39.716 DEBUG [3738]: Database connection successful -- 21:27:39.716 INFO [3738]: _SERVER found -- 21:27:39.716 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 21:27:39.716 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:39.716 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:39.716 INFO [3738]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 21:27:39.716 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:39.727 INFO [3738]: COREGRADE is stopping... -- 21:27:39.727 DEBUG [3738]: Closing database connection -- 21:27:39.727 SQL [3738]: pgsql_close() -- 21:27:39.797 INFO [3738]: COREGRADE is starting... -- 21:27:39.797 INFO [3738]: Version from config: 1.0 -- 21:27:39.797 DEBUG [3738]: Connecting to database... -- 21:27:39.797 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:39.797 SQL [3738]: pgsql_db_connect() -- 21:27:39.801 DEBUG [3738]: Database connection successful -- 21:27:39.801 INFO [3738]: _SERVER found -- 21:27:39.801 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 21:27:39.801 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:39.801 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:39.801 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 21:27:39.801 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:39.813 INFO [3738]: COREGRADE is stopping... -- 21:27:39.813 DEBUG [3738]: Closing database connection -- 21:27:39.813 SQL [3738]: pgsql_close() -- 21:27:39.883 INFO [3738]: COREGRADE is starting... -- 21:27:39.883 INFO [3738]: Version from config: 1.0 -- 21:27:39.883 DEBUG [3738]: Connecting to database... -- 21:27:39.883 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:39.883 SQL [3738]: pgsql_db_connect() -- 21:27:39.887 DEBUG [3738]: Database connection successful -- 21:27:39.887 INFO [3738]: _SERVER found -- 21:27:39.887 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 21:27:39.887 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:39.887 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:39.887 INFO [3738]: QUERY_STRING = /assets/js/pages/picker_date.js -- 21:27:39.887 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:39.899 INFO [3738]: COREGRADE is stopping... -- 21:27:39.899 DEBUG [3738]: Closing database connection -- 21:27:39.899 SQL [3738]: pgsql_close() -- 21:27:39.969 INFO [3738]: COREGRADE is starting... -- 21:27:39.969 INFO [3738]: Version from config: 1.0 -- 21:27:39.969 DEBUG [3738]: Connecting to database... -- 21:27:39.969 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:39.969 SQL [3738]: pgsql_db_connect() -- 21:27:39.973 DEBUG [3738]: Database connection successful -- 21:27:39.973 INFO [3738]: _SERVER found -- 21:27:39.973 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 21:27:39.973 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:39.973 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:39.973 INFO [3738]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 21:27:39.973 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:39.984 INFO [3738]: COREGRADE is stopping... -- 21:27:39.984 DEBUG [3738]: Closing database connection -- 21:27:39.985 SQL [3738]: pgsql_close() -- 21:27:40.055 INFO [3738]: COREGRADE is starting... -- 21:27:40.055 INFO [3738]: Version from config: 1.0 -- 21:27:40.055 DEBUG [3738]: Connecting to database... -- 21:27:40.055 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:40.055 SQL [3738]: pgsql_db_connect() -- 21:27:40.059 DEBUG [3738]: Database connection successful -- 21:27:40.059 INFO [3738]: _SERVER found -- 21:27:40.059 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 21:27:40.059 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:40.059 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:40.059 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 21:27:40.059 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:40.070 INFO [3738]: COREGRADE is stopping... -- 21:27:40.070 DEBUG [3738]: Closing database connection -- 21:27:40.070 SQL [3738]: pgsql_close() -- 21:27:40.140 INFO [3738]: COREGRADE is starting... -- 21:27:40.141 INFO [3738]: Version from config: 1.0 -- 21:27:40.141 DEBUG [3738]: Connecting to database... -- 21:27:40.141 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:40.141 SQL [3738]: pgsql_db_connect() -- 21:27:40.145 DEBUG [3738]: Database connection successful -- 21:27:40.145 INFO [3738]: _SERVER found -- 21:27:40.145 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 21:27:40.145 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:40.145 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:40.145 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 21:27:40.145 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:40.156 INFO [3738]: COREGRADE is stopping... -- 21:27:40.156 DEBUG [3738]: Closing database connection -- 21:27:40.156 SQL [3738]: pgsql_close() -- 21:27:40.226 INFO [3738]: COREGRADE is starting... -- 21:27:40.226 INFO [3738]: Version from config: 1.0 -- 21:27:40.226 DEBUG [3738]: Connecting to database... -- 21:27:40.226 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:40.226 SQL [3738]: pgsql_db_connect() -- 21:27:40.230 DEBUG [3738]: Database connection successful -- 21:27:40.230 INFO [3738]: _SERVER found -- 21:27:40.230 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 21:27:40.230 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:40.230 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:40.230 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 21:27:40.230 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:40.242 INFO [3738]: COREGRADE is stopping... -- 21:27:40.242 DEBUG [3738]: Closing database connection -- 21:27:40.242 SQL [3738]: pgsql_close() -- 21:27:40.312 INFO [3738]: COREGRADE is starting... -- 21:27:40.312 INFO [3738]: Version from config: 1.0 -- 21:27:40.312 DEBUG [3738]: Connecting to database... -- 21:27:40.312 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:40.312 SQL [3738]: pgsql_db_connect() -- 21:27:40.316 DEBUG [3738]: Database connection successful -- 21:27:40.316 INFO [3738]: _SERVER found -- 21:27:40.316 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 21:27:40.316 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:40.316 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:40.316 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 21:27:40.316 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:40.328 INFO [3738]: COREGRADE is stopping... -- 21:27:40.328 DEBUG [3738]: Closing database connection -- 21:27:40.328 SQL [3738]: pgsql_close() -- 21:27:40.408 INFO [3738]: COREGRADE is starting... -- 21:27:40.408 INFO [3738]: Version from config: 1.0 -- 21:27:40.408 DEBUG [3738]: Connecting to database... -- 21:27:40.408 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:40.408 SQL [3738]: pgsql_db_connect() -- 21:27:40.412 DEBUG [3738]: Database connection successful -- 21:27:40.412 INFO [3738]: _SERVER found -- 21:27:40.412 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 21:27:40.412 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:40.412 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:40.412 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 21:27:40.412 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:40.424 INFO [3738]: COREGRADE is stopping... -- 21:27:40.424 DEBUG [3738]: Closing database connection -- 21:27:40.424 SQL [3738]: pgsql_close() -- 21:27:40.494 INFO [3738]: COREGRADE is starting... -- 21:27:40.494 INFO [3738]: Version from config: 1.0 -- 21:27:40.494 DEBUG [3738]: Connecting to database... -- 21:27:40.494 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:40.494 SQL [3738]: pgsql_db_connect() -- 21:27:40.498 DEBUG [3738]: Database connection successful -- 21:27:40.498 INFO [3738]: _SERVER found -- 21:27:40.498 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 21:27:40.498 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:40.498 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:40.498 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 21:27:40.498 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:40.509 INFO [3738]: COREGRADE is stopping... -- 21:27:40.509 DEBUG [3738]: Closing database connection -- 21:27:40.510 SQL [3738]: pgsql_close() -- 21:27:40.581 INFO [3738]: COREGRADE is starting... -- 21:27:40.581 INFO [3738]: Version from config: 1.0 -- 21:27:40.581 DEBUG [3738]: Connecting to database... -- 21:27:40.582 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:27:40.582 SQL [3738]: pgsql_db_connect() -- 21:27:40.585 DEBUG [3738]: Database connection successful -- 21:27:40.586 INFO [3738]: _SERVER found -- 21:27:40.586 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 21:27:40.586 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:27:40.586 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:27:40.586 INFO [3738]: QUERY_STRING = /assets/customjs/general.js -- 21:27:40.586 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:27:40.597 INFO [3738]: COREGRADE is stopping... -- 21:27:40.597 DEBUG [3738]: Closing database connection -- 21:27:40.597 SQL [3738]: pgsql_close() -- 21:47:40.812 INFO [3829]: COREGRADE is starting... -- 21:47:40.813 INFO [3829]: Version from config: 1.0 -- 21:47:40.813 DEBUG [3829]: Connecting to database... -- 21:47:40.813 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:40.813 SQL [3829]: pgsql_db_connect() -- 21:47:40.817 DEBUG [3829]: Database connection successful -- 21:47:40.817 INFO [3829]: _SERVER found -- 21:47:40.817 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 21:47:40.817 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:40.817 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jopaac2abblefibn3k19m6g322l4til1 -- 21:47:40.817 INFO [3829]: QUERY_STRING = /logout -- 21:47:40.817 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:40.855 INFO [3829]: COREGRADE is stopping... -- 21:47:40.855 DEBUG [3829]: Closing database connection -- 21:47:40.855 SQL [3829]: pgsql_close() -- 21:47:40.933 INFO [3829]: COREGRADE is starting... -- 21:47:40.933 INFO [3829]: Version from config: 1.0 -- 21:47:40.933 DEBUG [3829]: Connecting to database... -- 21:47:40.933 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:40.933 SQL [3829]: pgsql_db_connect() -- 21:47:40.937 DEBUG [3829]: Database connection successful -- 21:47:40.937 INFO [3829]: _SERVER found -- 21:47:40.937 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 21:47:40.937 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:40.937 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:40.937 INFO [3829]: QUERY_STRING = /start -- 21:47:40.937 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:40.980 INFO [3829]: COREGRADE is stopping... -- 21:47:40.980 DEBUG [3829]: Closing database connection -- 21:47:40.980 SQL [3829]: pgsql_close() -- 21:47:41.106 INFO [3828]: COREGRADE is starting... -- 21:47:41.106 INFO [3828]: Version from config: 1.0 -- 21:47:41.106 DEBUG [3828]: Connecting to database... -- 21:47:41.106 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:41.106 SQL [3828]: pgsql_db_connect() -- 21:47:41.110 DEBUG [3828]: Database connection successful -- 21:47:41.110 INFO [3828]: _SERVER found -- 21:47:41.110 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 21:47:41.110 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:41.110 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:41.110 INFO [3828]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 21:47:41.110 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:41.122 INFO [3828]: COREGRADE is stopping... -- 21:47:41.122 DEBUG [3828]: Closing database connection -- 21:47:41.122 SQL [3828]: pgsql_close() -- 21:47:41.124 INFO [3829]: COREGRADE is starting... -- 21:47:41.125 INFO [3829]: Version from config: 1.0 -- 21:47:41.125 DEBUG [3829]: Connecting to database... -- 21:47:41.125 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:41.125 SQL [3829]: pgsql_db_connect() -- 21:47:41.128 DEBUG [3829]: Database connection successful -- 21:47:41.128 INFO [3829]: _SERVER found -- 21:47:41.128 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 21:47:41.128 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:41.128 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:41.128 INFO [3829]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 21:47:41.128 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:41.140 INFO [3829]: COREGRADE is stopping... -- 21:47:41.140 DEBUG [3829]: Closing database connection -- 21:47:41.140 SQL [3829]: pgsql_close() -- 21:47:41.174 INFO [3828]: COREGRADE is starting... -- 21:47:41.174 INFO [3828]: Version from config: 1.0 -- 21:47:41.174 DEBUG [3828]: Connecting to database... -- 21:47:41.174 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:41.174 SQL [3828]: pgsql_db_connect() -- 21:47:41.178 DEBUG [3828]: Database connection successful -- 21:47:41.178 INFO [3828]: _SERVER found -- 21:47:41.178 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 21:47:41.178 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:41.178 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:41.178 INFO [3828]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 21:47:41.178 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:41.190 INFO [3828]: COREGRADE is stopping... -- 21:47:41.190 DEBUG [3828]: Closing database connection -- 21:47:41.190 SQL [3828]: pgsql_close() -- 21:47:41.203 INFO [3828]: COREGRADE is starting... -- 21:47:41.203 INFO [3828]: Version from config: 1.0 -- 21:47:41.203 DEBUG [3828]: Connecting to database... -- 21:47:41.203 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:41.203 SQL [3828]: pgsql_db_connect() -- 21:47:41.206 INFO [3829]: COREGRADE is starting... -- 21:47:41.207 INFO [3829]: Version from config: 1.0 -- 21:47:41.207 DEBUG [3829]: Connecting to database... -- 21:47:41.207 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:41.207 SQL [3829]: pgsql_db_connect() -- 21:47:41.207 DEBUG [3828]: Database connection successful -- 21:47:41.207 INFO [3828]: _SERVER found -- 21:47:41.207 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 21:47:41.207 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:41.207 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:41.207 INFO [3828]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 21:47:41.207 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:41.219 INFO [3828]: COREGRADE is stopping... -- 21:47:41.219 DEBUG [3828]: Closing database connection -- 21:47:41.219 SQL [3828]: pgsql_close() -- 21:47:41.211 DEBUG [3829]: Database connection successful -- 21:47:41.211 INFO [3829]: _SERVER found -- 21:47:41.211 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 21:47:41.211 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:41.211 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:41.211 INFO [3829]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 21:47:41.211 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:41.223 INFO [3829]: COREGRADE is stopping... -- 21:47:41.223 DEBUG [3829]: Closing database connection -- 21:47:41.223 SQL [3829]: pgsql_close() -- 21:47:41.267 INFO [3828]: COREGRADE is starting... -- 21:47:41.267 INFO [3828]: Version from config: 1.0 -- 21:47:41.267 DEBUG [3828]: Connecting to database... -- 21:47:41.267 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:41.267 SQL [3828]: pgsql_db_connect() -- 21:47:41.271 DEBUG [3828]: Database connection successful -- 21:47:41.271 INFO [3828]: _SERVER found -- 21:47:41.271 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 21:47:41.271 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:41.271 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:41.271 INFO [3828]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 21:47:41.271 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:41.283 INFO [3828]: COREGRADE is stopping... -- 21:47:41.283 DEBUG [3828]: Closing database connection -- 21:47:41.283 SQL [3828]: pgsql_close() -- 21:47:41.288 INFO [3829]: COREGRADE is starting... -- 21:47:41.288 INFO [3829]: Version from config: 1.0 -- 21:47:41.288 DEBUG [3829]: Connecting to database... -- 21:47:41.288 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:41.288 SQL [3829]: pgsql_db_connect() -- 21:47:41.298 INFO [3828]: COREGRADE is starting... -- 21:47:41.299 INFO [3828]: Version from config: 1.0 -- 21:47:41.299 DEBUG [3828]: Connecting to database... -- 21:47:41.299 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:41.299 SQL [3828]: pgsql_db_connect() -- 21:47:41.292 DEBUG [3829]: Database connection successful -- 21:47:41.292 INFO [3829]: _SERVER found -- 21:47:41.292 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 21:47:41.292 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:41.292 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:41.292 INFO [3829]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 21:47:41.292 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:41.304 INFO [3829]: COREGRADE is stopping... -- 21:47:41.304 DEBUG [3829]: Closing database connection -- 21:47:41.304 SQL [3829]: pgsql_close() -- 21:47:41.302 DEBUG [3828]: Database connection successful -- 21:47:41.302 INFO [3828]: _SERVER found -- 21:47:41.302 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 21:47:41.302 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:41.302 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:41.302 INFO [3828]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 21:47:41.302 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:41.314 INFO [3828]: COREGRADE is stopping... -- 21:47:41.314 DEBUG [3828]: Closing database connection -- 21:47:41.314 SQL [3828]: pgsql_close() -- 21:47:41.359 INFO [3828]: COREGRADE is starting... -- 21:47:41.360 INFO [3828]: Version from config: 1.0 -- 21:47:41.360 DEBUG [3828]: Connecting to database... -- 21:47:41.360 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:41.360 SQL [3828]: pgsql_db_connect() -- 21:47:41.369 INFO [3829]: COREGRADE is starting... -- 21:47:41.369 INFO [3829]: Version from config: 1.0 -- 21:47:41.369 DEBUG [3829]: Connecting to database... -- 21:47:41.369 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:41.369 SQL [3829]: pgsql_db_connect() -- 21:47:41.364 DEBUG [3828]: Database connection successful -- 21:47:41.364 INFO [3828]: _SERVER found -- 21:47:41.364 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 21:47:41.364 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:41.364 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:41.364 INFO [3828]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 21:47:41.364 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:41.375 INFO [3828]: COREGRADE is stopping... -- 21:47:41.375 DEBUG [3828]: Closing database connection -- 21:47:41.375 SQL [3828]: pgsql_close() -- 21:47:41.373 DEBUG [3829]: Database connection successful -- 21:47:41.373 INFO [3829]: _SERVER found -- 21:47:41.373 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 21:47:41.373 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:41.373 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:41.373 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 21:47:41.373 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:41.385 INFO [3829]: COREGRADE is stopping... -- 21:47:41.385 DEBUG [3829]: Closing database connection -- 21:47:41.385 SQL [3829]: pgsql_close() -- 21:47:41.393 INFO [3828]: COREGRADE is starting... -- 21:47:41.393 INFO [3828]: Version from config: 1.0 -- 21:47:41.393 DEBUG [3828]: Connecting to database... -- 21:47:41.393 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:41.393 SQL [3828]: pgsql_db_connect() -- 21:47:41.397 DEBUG [3828]: Database connection successful -- 21:47:41.397 INFO [3828]: _SERVER found -- 21:47:41.397 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 21:47:41.397 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:41.397 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:41.397 INFO [3828]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 21:47:41.397 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:41.409 INFO [3828]: COREGRADE is stopping... -- 21:47:41.409 DEBUG [3828]: Closing database connection -- 21:47:41.409 SQL [3828]: pgsql_close() -- 21:47:41.452 INFO [3828]: COREGRADE is starting... -- 21:47:41.452 INFO [3829]: COREGRADE is starting... -- 21:47:41.452 INFO [3829]: Version from config: 1.0 -- 21:47:41.452 DEBUG [3829]: Connecting to database... -- 21:47:41.452 INFO [3828]: Version from config: 1.0 -- 21:47:41.452 DEBUG [3828]: Connecting to database... -- 21:47:41.453 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:41.453 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:41.453 SQL [3829]: pgsql_db_connect() -- 21:47:41.453 SQL [3828]: pgsql_db_connect() -- 21:47:41.456 DEBUG [3828]: Database connection successful -- 21:47:41.456 INFO [3828]: _SERVER found -- 21:47:41.456 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 21:47:41.456 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:41.456 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:41.456 INFO [3828]: QUERY_STRING = /assets/js/pages/dashboard.js -- 21:47:41.456 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:41.468 INFO [3828]: COREGRADE is stopping... -- 21:47:41.468 DEBUG [3828]: Closing database connection -- 21:47:41.468 SQL [3828]: pgsql_close() -- 21:47:41.456 DEBUG [3829]: Database connection successful -- 21:47:41.456 INFO [3829]: _SERVER found -- 21:47:41.456 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 21:47:41.456 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:41.456 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:41.456 INFO [3829]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 21:47:41.456 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:41.468 INFO [3829]: COREGRADE is stopping... -- 21:47:41.468 DEBUG [3829]: Closing database connection -- 21:47:41.468 SQL [3829]: pgsql_close() -- 21:47:41.479 INFO [3828]: COREGRADE is starting... -- 21:47:41.479 INFO [3828]: Version from config: 1.0 -- 21:47:41.479 DEBUG [3828]: Connecting to database... -- 21:47:41.479 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:41.479 SQL [3828]: pgsql_db_connect() -- 21:47:41.483 DEBUG [3828]: Database connection successful -- 21:47:41.483 INFO [3828]: _SERVER found -- 21:47:41.483 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 21:47:41.483 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:41.483 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:41.483 INFO [3828]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 21:47:41.483 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:41.495 INFO [3828]: COREGRADE is stopping... -- 21:47:41.495 DEBUG [3828]: Closing database connection -- 21:47:41.495 SQL [3828]: pgsql_close() -- 21:47:41.534 INFO [3829]: COREGRADE is starting... -- 21:47:41.534 INFO [3829]: Version from config: 1.0 -- 21:47:41.534 DEBUG [3829]: Connecting to database... -- 21:47:41.534 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:41.534 SQL [3829]: pgsql_db_connect() -- 21:47:41.535 INFO [3828]: COREGRADE is starting... -- 21:47:41.535 INFO [3828]: Version from config: 1.0 -- 21:47:41.535 DEBUG [3828]: Connecting to database... -- 21:47:41.535 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:41.535 SQL [3828]: pgsql_db_connect() -- 21:47:41.538 DEBUG [3828]: Database connection successful -- 21:47:41.538 INFO [3828]: _SERVER found -- 21:47:41.539 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 21:47:41.539 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:41.539 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:41.539 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 21:47:41.539 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:41.550 INFO [3828]: COREGRADE is stopping... -- 21:47:41.550 DEBUG [3828]: Closing database connection -- 21:47:41.550 SQL [3828]: pgsql_close() -- 21:47:41.538 DEBUG [3829]: Database connection successful -- 21:47:41.538 INFO [3829]: _SERVER found -- 21:47:41.538 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 21:47:41.538 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:41.538 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:41.538 INFO [3829]: QUERY_STRING = /assets/js/pages/picker_date.js -- 21:47:41.538 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:41.550 INFO [3829]: COREGRADE is stopping... -- 21:47:41.550 DEBUG [3829]: Closing database connection -- 21:47:41.550 SQL [3829]: pgsql_close() -- 21:47:41.563 INFO [3828]: COREGRADE is starting... -- 21:47:41.564 INFO [3828]: Version from config: 1.0 -- 21:47:41.564 DEBUG [3828]: Connecting to database... -- 21:47:41.564 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:41.564 SQL [3828]: pgsql_db_connect() -- 21:47:41.568 DEBUG [3828]: Database connection successful -- 21:47:41.568 INFO [3828]: _SERVER found -- 21:47:41.568 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 21:47:41.568 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:41.568 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:41.568 INFO [3828]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 21:47:41.568 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:41.579 INFO [3828]: COREGRADE is stopping... -- 21:47:41.579 DEBUG [3828]: Closing database connection -- 21:47:41.579 SQL [3828]: pgsql_close() -- 21:47:41.616 INFO [3828]: COREGRADE is starting... -- 21:47:41.616 INFO [3829]: COREGRADE is starting... -- 21:47:41.616 INFO [3828]: Version from config: 1.0 -- 21:47:41.616 DEBUG [3828]: Connecting to database... -- 21:47:41.616 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:41.617 SQL [3828]: pgsql_db_connect() -- 21:47:41.617 INFO [3829]: Version from config: 1.0 -- 21:47:41.617 DEBUG [3829]: Connecting to database... -- 21:47:41.617 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:41.617 SQL [3829]: pgsql_db_connect() -- 21:47:41.620 DEBUG [3828]: Database connection successful -- 21:47:41.620 INFO [3828]: _SERVER found -- 21:47:41.621 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 21:47:41.621 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:41.621 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:41.621 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 21:47:41.621 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:41.632 INFO [3828]: COREGRADE is stopping... -- 21:47:41.632 DEBUG [3828]: Closing database connection -- 21:47:41.632 SQL [3828]: pgsql_close() -- 21:47:41.620 DEBUG [3829]: Database connection successful -- 21:47:41.620 INFO [3829]: _SERVER found -- 21:47:41.621 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 21:47:41.621 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:41.621 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:41.621 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 21:47:41.621 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:41.632 INFO [3829]: COREGRADE is stopping... -- 21:47:41.632 DEBUG [3829]: Closing database connection -- 21:47:41.632 SQL [3829]: pgsql_close() -- 21:47:41.647 INFO [3828]: COREGRADE is starting... -- 21:47:41.647 INFO [3828]: Version from config: 1.0 -- 21:47:41.647 DEBUG [3828]: Connecting to database... -- 21:47:41.647 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:41.647 SQL [3828]: pgsql_db_connect() -- 21:47:41.651 DEBUG [3828]: Database connection successful -- 21:47:41.651 INFO [3828]: _SERVER found -- 21:47:41.651 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 21:47:41.651 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:41.651 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:41.651 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 21:47:41.651 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:41.663 INFO [3828]: COREGRADE is stopping... -- 21:47:41.663 DEBUG [3828]: Closing database connection -- 21:47:41.663 SQL [3828]: pgsql_close() -- 21:47:41.697 INFO [3829]: COREGRADE is starting... -- 21:47:41.697 INFO [3829]: Version from config: 1.0 -- 21:47:41.697 DEBUG [3829]: Connecting to database... -- 21:47:41.697 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:41.697 SQL [3829]: pgsql_db_connect() -- 21:47:41.698 INFO [3828]: COREGRADE is starting... -- 21:47:41.699 INFO [3828]: Version from config: 1.0 -- 21:47:41.699 DEBUG [3828]: Connecting to database... -- 21:47:41.699 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:41.699 SQL [3828]: pgsql_db_connect() -- 21:47:41.701 DEBUG [3829]: Database connection successful -- 21:47:41.701 INFO [3829]: _SERVER found -- 21:47:41.701 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 21:47:41.701 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:41.701 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:41.701 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 21:47:41.701 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:41.714 INFO [3829]: COREGRADE is stopping... -- 21:47:41.714 DEBUG [3829]: Closing database connection -- 21:47:41.714 SQL [3829]: pgsql_close() -- 21:47:41.702 DEBUG [3828]: Database connection successful -- 21:47:41.702 INFO [3828]: _SERVER found -- 21:47:41.702 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 21:47:41.702 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:41.702 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:41.702 INFO [3828]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 21:47:41.702 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:41.714 INFO [3828]: COREGRADE is stopping... -- 21:47:41.714 DEBUG [3828]: Closing database connection -- 21:47:41.714 SQL [3828]: pgsql_close() -- 21:47:41.731 INFO [3828]: COREGRADE is starting... -- 21:47:41.731 INFO [3828]: Version from config: 1.0 -- 21:47:41.731 DEBUG [3828]: Connecting to database... -- 21:47:41.731 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:41.731 SQL [3828]: pgsql_db_connect() -- 21:47:41.735 DEBUG [3828]: Database connection successful -- 21:47:41.735 INFO [3828]: _SERVER found -- 21:47:41.735 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 21:47:41.735 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:41.735 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:41.735 INFO [3828]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 21:47:41.735 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:41.747 INFO [3828]: COREGRADE is stopping... -- 21:47:41.747 DEBUG [3828]: Closing database connection -- 21:47:41.747 SQL [3828]: pgsql_close() -- 21:47:41.779 INFO [3829]: COREGRADE is starting... -- 21:47:41.779 INFO [3828]: COREGRADE is starting... -- 21:47:41.780 INFO [3828]: Version from config: 1.0 -- 21:47:41.780 DEBUG [3828]: Connecting to database... -- 21:47:41.780 INFO [3829]: Version from config: 1.0 -- 21:47:41.780 DEBUG [3829]: Connecting to database... -- 21:47:41.780 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:41.780 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:41.780 SQL [3828]: pgsql_db_connect() -- 21:47:41.780 SQL [3829]: pgsql_db_connect() -- 21:47:41.784 DEBUG [3828]: Database connection successful -- 21:47:41.784 INFO [3828]: _SERVER found -- 21:47:41.784 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 21:47:41.784 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:41.784 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:41.784 INFO [3828]: QUERY_STRING = /assets/customjs/general.js -- 21:47:41.784 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:41.795 INFO [3828]: COREGRADE is stopping... -- 21:47:41.795 DEBUG [3828]: Closing database connection -- 21:47:41.795 SQL [3828]: pgsql_close() -- 21:47:41.784 DEBUG [3829]: Database connection successful -- 21:47:41.784 INFO [3829]: _SERVER found -- 21:47:41.784 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 21:47:41.784 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:41.784 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:41.784 INFO [3829]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 21:47:41.784 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:41.796 INFO [3829]: COREGRADE is stopping... -- 21:47:41.796 DEBUG [3829]: Closing database connection -- 21:47:41.796 SQL [3829]: pgsql_close() -- 21:47:41.861 INFO [3829]: COREGRADE is starting... -- 21:47:41.862 INFO [3829]: Version from config: 1.0 -- 21:47:41.862 DEBUG [3829]: Connecting to database... -- 21:47:41.862 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:41.862 SQL [3829]: pgsql_db_connect() -- 21:47:41.866 DEBUG [3829]: Database connection successful -- 21:47:41.866 INFO [3829]: _SERVER found -- 21:47:41.866 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 21:47:41.866 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:41.866 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:41.866 INFO [3829]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 21:47:41.866 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:41.878 INFO [3829]: COREGRADE is stopping... -- 21:47:41.878 DEBUG [3829]: Closing database connection -- 21:47:41.878 SQL [3829]: pgsql_close() -- 21:47:41.942 INFO [3829]: COREGRADE is starting... -- 21:47:41.943 INFO [3829]: Version from config: 1.0 -- 21:47:41.943 DEBUG [3829]: Connecting to database... -- 21:47:41.943 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:41.943 SQL [3829]: pgsql_db_connect() -- 21:47:41.947 DEBUG [3829]: Database connection successful -- 21:47:41.947 INFO [3829]: _SERVER found -- 21:47:41.947 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 21:47:41.947 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:41.947 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:41.947 INFO [3829]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 21:47:41.947 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:41.959 INFO [3829]: COREGRADE is stopping... -- 21:47:41.959 DEBUG [3829]: Closing database connection -- 21:47:41.959 SQL [3829]: pgsql_close() -- 21:47:42.024 INFO [3829]: COREGRADE is starting... -- 21:47:42.024 INFO [3829]: Version from config: 1.0 -- 21:47:42.024 DEBUG [3829]: Connecting to database... -- 21:47:42.024 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:42.024 SQL [3829]: pgsql_db_connect() -- 21:47:42.028 DEBUG [3829]: Database connection successful -- 21:47:42.028 INFO [3829]: _SERVER found -- 21:47:42.028 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 21:47:42.028 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:42.028 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:42.028 INFO [3829]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 21:47:42.028 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:42.040 INFO [3829]: COREGRADE is stopping... -- 21:47:42.040 DEBUG [3829]: Closing database connection -- 21:47:42.040 SQL [3829]: pgsql_close() -- 21:47:42.105 INFO [3829]: COREGRADE is starting... -- 21:47:42.106 INFO [3829]: Version from config: 1.0 -- 21:47:42.106 DEBUG [3829]: Connecting to database... -- 21:47:42.106 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:42.106 SQL [3829]: pgsql_db_connect() -- 21:47:42.110 DEBUG [3829]: Database connection successful -- 21:47:42.110 INFO [3829]: _SERVER found -- 21:47:42.110 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 21:47:42.110 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:42.110 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:42.110 INFO [3829]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 21:47:42.110 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:42.122 INFO [3829]: COREGRADE is stopping... -- 21:47:42.122 DEBUG [3829]: Closing database connection -- 21:47:42.122 SQL [3829]: pgsql_close() -- 21:47:42.187 INFO [3829]: COREGRADE is starting... -- 21:47:42.187 INFO [3829]: Version from config: 1.0 -- 21:47:42.187 DEBUG [3829]: Connecting to database... -- 21:47:42.187 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:42.187 SQL [3829]: pgsql_db_connect() -- 21:47:42.191 DEBUG [3829]: Database connection successful -- 21:47:42.191 INFO [3829]: _SERVER found -- 21:47:42.191 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 21:47:42.191 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:42.191 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:42.191 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 21:47:42.191 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:42.204 INFO [3829]: COREGRADE is stopping... -- 21:47:42.204 DEBUG [3829]: Closing database connection -- 21:47:42.204 SQL [3829]: pgsql_close() -- 21:47:42.269 INFO [3829]: COREGRADE is starting... -- 21:47:42.269 INFO [3829]: Version from config: 1.0 -- 21:47:42.269 DEBUG [3829]: Connecting to database... -- 21:47:42.269 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:42.269 SQL [3829]: pgsql_db_connect() -- 21:47:42.273 DEBUG [3829]: Database connection successful -- 21:47:42.273 INFO [3829]: _SERVER found -- 21:47:42.273 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 21:47:42.273 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:42.273 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:42.273 INFO [3829]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 21:47:42.273 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:42.285 INFO [3829]: COREGRADE is stopping... -- 21:47:42.285 DEBUG [3829]: Closing database connection -- 21:47:42.285 SQL [3829]: pgsql_close() -- 21:47:42.351 INFO [3829]: COREGRADE is starting... -- 21:47:42.351 INFO [3829]: Version from config: 1.0 -- 21:47:42.351 DEBUG [3829]: Connecting to database... -- 21:47:42.351 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:42.351 SQL [3829]: pgsql_db_connect() -- 21:47:42.355 DEBUG [3829]: Database connection successful -- 21:47:42.355 INFO [3829]: _SERVER found -- 21:47:42.355 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 21:47:42.355 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:42.355 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:42.355 INFO [3829]: QUERY_STRING = /assets/js/pages/dashboard.js -- 21:47:42.355 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:42.367 INFO [3829]: COREGRADE is stopping... -- 21:47:42.367 DEBUG [3829]: Closing database connection -- 21:47:42.367 SQL [3829]: pgsql_close() -- 21:47:42.433 INFO [3829]: COREGRADE is starting... -- 21:47:42.434 INFO [3829]: Version from config: 1.0 -- 21:47:42.434 DEBUG [3829]: Connecting to database... -- 21:47:42.434 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:42.434 SQL [3829]: pgsql_db_connect() -- 21:47:42.437 DEBUG [3829]: Database connection successful -- 21:47:42.437 INFO [3829]: _SERVER found -- 21:47:42.437 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 21:47:42.437 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:42.437 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:42.437 INFO [3829]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 21:47:42.437 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:42.449 INFO [3829]: COREGRADE is stopping... -- 21:47:42.449 DEBUG [3829]: Closing database connection -- 21:47:42.449 SQL [3829]: pgsql_close() -- 21:47:42.515 INFO [3829]: COREGRADE is starting... -- 21:47:42.515 INFO [3829]: Version from config: 1.0 -- 21:47:42.515 DEBUG [3829]: Connecting to database... -- 21:47:42.515 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:42.515 SQL [3829]: pgsql_db_connect() -- 21:47:42.519 DEBUG [3829]: Database connection successful -- 21:47:42.519 INFO [3829]: _SERVER found -- 21:47:42.519 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 21:47:42.519 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:42.519 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:42.519 INFO [3829]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 21:47:42.519 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:42.531 INFO [3829]: COREGRADE is stopping... -- 21:47:42.531 DEBUG [3829]: Closing database connection -- 21:47:42.531 SQL [3829]: pgsql_close() -- 21:47:42.597 INFO [3829]: COREGRADE is starting... -- 21:47:42.597 INFO [3829]: Version from config: 1.0 -- 21:47:42.597 DEBUG [3829]: Connecting to database... -- 21:47:42.597 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:42.597 SQL [3829]: pgsql_db_connect() -- 21:47:42.601 DEBUG [3829]: Database connection successful -- 21:47:42.601 INFO [3829]: _SERVER found -- 21:47:42.601 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 21:47:42.601 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:42.601 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:42.601 INFO [3829]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 21:47:42.601 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:42.613 INFO [3829]: COREGRADE is stopping... -- 21:47:42.613 DEBUG [3829]: Closing database connection -- 21:47:42.613 SQL [3829]: pgsql_close() -- 21:47:42.678 INFO [3829]: COREGRADE is starting... -- 21:47:42.678 INFO [3829]: Version from config: 1.0 -- 21:47:42.678 DEBUG [3829]: Connecting to database... -- 21:47:42.678 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:42.678 SQL [3829]: pgsql_db_connect() -- 21:47:42.682 DEBUG [3829]: Database connection successful -- 21:47:42.682 INFO [3829]: _SERVER found -- 21:47:42.682 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 21:47:42.682 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:42.682 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:42.682 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 21:47:42.682 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:42.694 INFO [3829]: COREGRADE is stopping... -- 21:47:42.694 DEBUG [3829]: Closing database connection -- 21:47:42.694 SQL [3829]: pgsql_close() -- 21:47:42.760 INFO [3829]: COREGRADE is starting... -- 21:47:42.760 INFO [3829]: Version from config: 1.0 -- 21:47:42.760 DEBUG [3829]: Connecting to database... -- 21:47:42.760 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:42.760 SQL [3829]: pgsql_db_connect() -- 21:47:42.764 DEBUG [3829]: Database connection successful -- 21:47:42.764 INFO [3829]: _SERVER found -- 21:47:42.764 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 21:47:42.764 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:42.764 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:42.764 INFO [3829]: QUERY_STRING = /assets/js/pages/picker_date.js -- 21:47:42.764 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:42.776 INFO [3829]: COREGRADE is stopping... -- 21:47:42.776 DEBUG [3829]: Closing database connection -- 21:47:42.776 SQL [3829]: pgsql_close() -- 21:47:42.841 INFO [3829]: COREGRADE is starting... -- 21:47:42.842 INFO [3829]: Version from config: 1.0 -- 21:47:42.842 DEBUG [3829]: Connecting to database... -- 21:47:42.842 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:42.842 SQL [3829]: pgsql_db_connect() -- 21:47:42.846 DEBUG [3829]: Database connection successful -- 21:47:42.846 INFO [3829]: _SERVER found -- 21:47:42.846 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 21:47:42.846 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:42.846 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:42.846 INFO [3829]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 21:47:42.846 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:42.858 INFO [3829]: COREGRADE is stopping... -- 21:47:42.858 DEBUG [3829]: Closing database connection -- 21:47:42.858 SQL [3829]: pgsql_close() -- 21:47:42.923 INFO [3829]: COREGRADE is starting... -- 21:47:42.923 INFO [3829]: Version from config: 1.0 -- 21:47:42.923 DEBUG [3829]: Connecting to database... -- 21:47:42.923 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:42.923 SQL [3829]: pgsql_db_connect() -- 21:47:42.927 DEBUG [3829]: Database connection successful -- 21:47:42.927 INFO [3829]: _SERVER found -- 21:47:42.927 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 21:47:42.927 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:42.927 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:42.927 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 21:47:42.927 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:42.939 INFO [3829]: COREGRADE is stopping... -- 21:47:42.939 DEBUG [3829]: Closing database connection -- 21:47:42.939 SQL [3829]: pgsql_close() -- 21:47:43.004 INFO [3829]: COREGRADE is starting... -- 21:47:43.005 INFO [3829]: Version from config: 1.0 -- 21:47:43.005 DEBUG [3829]: Connecting to database... -- 21:47:43.005 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:43.005 SQL [3829]: pgsql_db_connect() -- 21:47:43.009 DEBUG [3829]: Database connection successful -- 21:47:43.009 INFO [3829]: _SERVER found -- 21:47:43.009 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 21:47:43.009 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:43.009 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:43.009 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 21:47:43.009 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:43.021 INFO [3829]: COREGRADE is stopping... -- 21:47:43.021 DEBUG [3829]: Closing database connection -- 21:47:43.021 SQL [3829]: pgsql_close() -- 21:47:43.086 INFO [3829]: COREGRADE is starting... -- 21:47:43.086 INFO [3829]: Version from config: 1.0 -- 21:47:43.086 DEBUG [3829]: Connecting to database... -- 21:47:43.086 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:43.086 SQL [3829]: pgsql_db_connect() -- 21:47:43.090 DEBUG [3829]: Database connection successful -- 21:47:43.090 INFO [3829]: _SERVER found -- 21:47:43.090 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 21:47:43.090 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:43.090 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:43.090 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 21:47:43.090 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:43.102 INFO [3829]: COREGRADE is stopping... -- 21:47:43.102 DEBUG [3829]: Closing database connection -- 21:47:43.102 SQL [3829]: pgsql_close() -- 21:47:43.167 INFO [3829]: COREGRADE is starting... -- 21:47:43.167 INFO [3829]: Version from config: 1.0 -- 21:47:43.167 DEBUG [3829]: Connecting to database... -- 21:47:43.167 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:43.168 SQL [3829]: pgsql_db_connect() -- 21:47:43.171 DEBUG [3829]: Database connection successful -- 21:47:43.171 INFO [3829]: _SERVER found -- 21:47:43.171 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 21:47:43.171 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:43.171 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:43.171 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 21:47:43.171 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:43.183 INFO [3829]: COREGRADE is stopping... -- 21:47:43.183 DEBUG [3829]: Closing database connection -- 21:47:43.183 SQL [3829]: pgsql_close() -- 21:47:43.259 INFO [3829]: COREGRADE is starting... -- 21:47:43.259 INFO [3829]: Version from config: 1.0 -- 21:47:43.259 DEBUG [3829]: Connecting to database... -- 21:47:43.259 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:43.259 SQL [3829]: pgsql_db_connect() -- 21:47:43.263 DEBUG [3829]: Database connection successful -- 21:47:43.263 INFO [3829]: _SERVER found -- 21:47:43.263 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 21:47:43.263 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:43.263 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:43.263 INFO [3829]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 21:47:43.263 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:43.275 INFO [3829]: COREGRADE is stopping... -- 21:47:43.275 DEBUG [3829]: Closing database connection -- 21:47:43.275 SQL [3829]: pgsql_close() -- 21:47:43.340 INFO [3829]: COREGRADE is starting... -- 21:47:43.340 INFO [3829]: Version from config: 1.0 -- 21:47:43.340 DEBUG [3829]: Connecting to database... -- 21:47:43.340 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:43.340 SQL [3829]: pgsql_db_connect() -- 21:47:43.344 DEBUG [3829]: Database connection successful -- 21:47:43.344 INFO [3829]: _SERVER found -- 21:47:43.344 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 21:47:43.344 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:43.344 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:43.344 INFO [3829]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 21:47:43.344 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:43.356 INFO [3829]: COREGRADE is stopping... -- 21:47:43.357 DEBUG [3829]: Closing database connection -- 21:47:43.357 SQL [3829]: pgsql_close() -- 21:47:43.423 INFO [3829]: COREGRADE is starting... -- 21:47:43.424 INFO [3829]: Version from config: 1.0 -- 21:47:43.424 DEBUG [3829]: Connecting to database... -- 21:47:43.424 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:47:43.424 SQL [3829]: pgsql_db_connect() -- 21:47:43.428 DEBUG [3829]: Database connection successful -- 21:47:43.428 INFO [3829]: _SERVER found -- 21:47:43.428 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 21:47:43.428 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 21:47:43.428 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 21:47:43.428 INFO [3829]: QUERY_STRING = /assets/customjs/general.js -- 21:47:43.428 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:47:43.440 INFO [3829]: COREGRADE is stopping... -- 21:47:43.440 DEBUG [3829]: Closing database connection -- 21:47:43.440 SQL [3829]: pgsql_close() -- 22:07:43.656 INFO [3800]: COREGRADE is starting... -- 22:07:43.656 INFO [3800]: Version from config: 1.0 -- 22:07:43.656 DEBUG [3800]: Connecting to database... -- 22:07:43.656 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:43.656 SQL [3800]: pgsql_db_connect() -- 22:07:43.661 DEBUG [3800]: Database connection successful -- 22:07:43.661 INFO [3800]: _SERVER found -- 22:07:43.661 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 22:07:43.661 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:43.661 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sqgnafkkgfr8c4ki12lsf0fqvvbt1tmb -- 22:07:43.661 INFO [3800]: QUERY_STRING = /logout -- 22:07:43.661 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:43.694 INFO [3800]: COREGRADE is stopping... -- 22:07:43.695 DEBUG [3800]: Closing database connection -- 22:07:43.695 SQL [3800]: pgsql_close() -- 22:07:43.773 INFO [3800]: COREGRADE is starting... -- 22:07:43.773 INFO [3800]: Version from config: 1.0 -- 22:07:43.773 DEBUG [3800]: Connecting to database... -- 22:07:43.773 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:43.773 SQL [3800]: pgsql_db_connect() -- 22:07:43.777 DEBUG [3800]: Database connection successful -- 22:07:43.777 INFO [3800]: _SERVER found -- 22:07:43.777 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 22:07:43.777 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:43.777 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:43.777 INFO [3800]: QUERY_STRING = /start -- 22:07:43.777 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:43.811 INFO [3800]: COREGRADE is stopping... -- 22:07:43.811 DEBUG [3800]: Closing database connection -- 22:07:43.811 SQL [3800]: pgsql_close() -- 22:07:43.940 INFO [3739]: COREGRADE is starting... -- 22:07:43.940 INFO [3739]: Version from config: 1.0 -- 22:07:43.940 DEBUG [3739]: Connecting to database... -- 22:07:43.940 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:43.940 SQL [3739]: pgsql_db_connect() -- 22:07:43.944 DEBUG [3739]: Database connection successful -- 22:07:43.944 INFO [3739]: _SERVER found -- 22:07:43.944 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 22:07:43.944 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:43.944 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:43.944 INFO [3739]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 22:07:43.944 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:43.957 INFO [3739]: COREGRADE is stopping... -- 22:07:43.957 DEBUG [3739]: Closing database connection -- 22:07:43.957 SQL [3739]: pgsql_close() -- 22:07:43.958 INFO [3800]: COREGRADE is starting... -- 22:07:43.958 INFO [3800]: Version from config: 1.0 -- 22:07:43.958 DEBUG [3800]: Connecting to database... -- 22:07:43.958 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:43.958 SQL [3800]: pgsql_db_connect() -- 22:07:43.962 DEBUG [3800]: Database connection successful -- 22:07:43.962 INFO [3800]: _SERVER found -- 22:07:43.962 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 22:07:43.962 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:43.962 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:43.962 INFO [3800]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 22:07:43.962 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:43.974 INFO [3800]: COREGRADE is stopping... -- 22:07:43.974 DEBUG [3800]: Closing database connection -- 22:07:43.974 SQL [3800]: pgsql_close() -- 22:07:44.011 INFO [3741]: COREGRADE is starting... -- 22:07:44.011 INFO [3741]: Version from config: 1.0 -- 22:07:44.011 DEBUG [3741]: Connecting to database... -- 22:07:44.011 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:44.011 SQL [3741]: pgsql_db_connect() -- 22:07:44.015 DEBUG [3741]: Database connection successful -- 22:07:44.015 INFO [3741]: _SERVER found -- 22:07:44.015 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 22:07:44.015 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:44.015 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:44.015 INFO [3741]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 22:07:44.015 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:44.028 INFO [3741]: COREGRADE is stopping... -- 22:07:44.028 DEBUG [3741]: Closing database connection -- 22:07:44.028 SQL [3741]: pgsql_close() -- 22:07:44.035 INFO [3739]: COREGRADE is starting... -- 22:07:44.035 INFO [3739]: Version from config: 1.0 -- 22:07:44.035 DEBUG [3739]: Connecting to database... -- 22:07:44.035 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:44.035 SQL [3739]: pgsql_db_connect() -- 22:07:44.038 INFO [3800]: COREGRADE is starting... -- 22:07:44.039 INFO [3800]: Version from config: 1.0 -- 22:07:44.039 DEBUG [3800]: Connecting to database... -- 22:07:44.039 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:44.039 SQL [3800]: pgsql_db_connect() -- 22:07:44.039 DEBUG [3739]: Database connection successful -- 22:07:44.039 INFO [3739]: _SERVER found -- 22:07:44.039 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 22:07:44.039 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:44.039 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:44.039 INFO [3739]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 22:07:44.039 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:44.050 INFO [3739]: COREGRADE is stopping... -- 22:07:44.050 DEBUG [3739]: Closing database connection -- 22:07:44.050 SQL [3739]: pgsql_close() -- 22:07:44.043 DEBUG [3800]: Database connection successful -- 22:07:44.043 INFO [3800]: _SERVER found -- 22:07:44.043 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 22:07:44.043 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:44.043 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:44.043 INFO [3800]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 22:07:44.043 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:44.054 INFO [3800]: COREGRADE is stopping... -- 22:07:44.054 DEBUG [3800]: Closing database connection -- 22:07:44.054 SQL [3800]: pgsql_close() -- 22:07:44.112 INFO [3741]: COREGRADE is starting... -- 22:07:44.112 INFO [3741]: Version from config: 1.0 -- 22:07:44.112 DEBUG [3741]: Connecting to database... -- 22:07:44.112 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:44.112 SQL [3741]: pgsql_db_connect() -- 22:07:44.120 INFO [3800]: COREGRADE is starting... -- 22:07:44.120 INFO [3800]: Version from config: 1.0 -- 22:07:44.120 DEBUG [3800]: Connecting to database... -- 22:07:44.120 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:44.120 SQL [3800]: pgsql_db_connect() -- 22:07:44.127 INFO [3739]: COREGRADE is starting... -- 22:07:44.127 INFO [3739]: Version from config: 1.0 -- 22:07:44.127 DEBUG [3739]: Connecting to database... -- 22:07:44.127 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:44.127 SQL [3739]: pgsql_db_connect() -- 22:07:44.117 DEBUG [3741]: Database connection successful -- 22:07:44.117 INFO [3741]: _SERVER found -- 22:07:44.117 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 22:07:44.117 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:44.117 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:44.117 INFO [3741]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 22:07:44.117 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:44.129 INFO [3741]: COREGRADE is stopping... -- 22:07:44.129 DEBUG [3741]: Closing database connection -- 22:07:44.129 SQL [3741]: pgsql_close() -- 22:07:44.125 DEBUG [3800]: Database connection successful -- 22:07:44.125 INFO [3800]: _SERVER found -- 22:07:44.125 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 22:07:44.125 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:44.125 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:44.125 INFO [3800]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 22:07:44.125 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:44.136 INFO [3800]: COREGRADE is stopping... -- 22:07:44.136 DEBUG [3800]: Closing database connection -- 22:07:44.136 SQL [3800]: pgsql_close() -- 22:07:44.132 DEBUG [3739]: Database connection successful -- 22:07:44.132 INFO [3739]: _SERVER found -- 22:07:44.132 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 22:07:44.132 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:44.132 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:44.132 INFO [3739]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 22:07:44.132 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:44.143 INFO [3739]: COREGRADE is stopping... -- 22:07:44.143 DEBUG [3739]: Closing database connection -- 22:07:44.143 SQL [3739]: pgsql_close() -- 22:07:44.201 INFO [3800]: COREGRADE is starting... -- 22:07:44.202 INFO [3800]: Version from config: 1.0 -- 22:07:44.202 DEBUG [3800]: Connecting to database... -- 22:07:44.202 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:44.202 SQL [3800]: pgsql_db_connect() -- 22:07:44.210 INFO [3741]: COREGRADE is starting... -- 22:07:44.210 INFO [3741]: Version from config: 1.0 -- 22:07:44.210 DEBUG [3741]: Connecting to database... -- 22:07:44.210 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:44.210 SQL [3741]: pgsql_db_connect() -- 22:07:44.206 DEBUG [3800]: Database connection successful -- 22:07:44.206 INFO [3800]: _SERVER found -- 22:07:44.206 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 22:07:44.206 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:44.206 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:44.206 INFO [3800]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 22:07:44.206 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:44.217 INFO [3800]: COREGRADE is stopping... -- 22:07:44.217 DEBUG [3800]: Closing database connection -- 22:07:44.217 SQL [3800]: pgsql_close() -- 22:07:44.220 INFO [3739]: COREGRADE is starting... -- 22:07:44.220 INFO [3739]: Version from config: 1.0 -- 22:07:44.220 DEBUG [3739]: Connecting to database... -- 22:07:44.220 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:44.220 SQL [3739]: pgsql_db_connect() -- 22:07:44.214 DEBUG [3741]: Database connection successful -- 22:07:44.214 INFO [3741]: _SERVER found -- 22:07:44.214 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 22:07:44.214 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:44.214 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:44.214 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 22:07:44.214 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:44.226 INFO [3741]: COREGRADE is stopping... -- 22:07:44.226 DEBUG [3741]: Closing database connection -- 22:07:44.226 SQL [3741]: pgsql_close() -- 22:07:44.224 DEBUG [3739]: Database connection successful -- 22:07:44.224 INFO [3739]: _SERVER found -- 22:07:44.224 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 22:07:44.224 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:44.224 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:44.224 INFO [3739]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 22:07:44.224 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:44.236 INFO [3739]: COREGRADE is stopping... -- 22:07:44.236 DEBUG [3739]: Closing database connection -- 22:07:44.236 SQL [3739]: pgsql_close() -- 22:07:44.283 INFO [3800]: COREGRADE is starting... -- 22:07:44.283 INFO [3800]: Version from config: 1.0 -- 22:07:44.283 DEBUG [3800]: Connecting to database... -- 22:07:44.283 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:44.283 SQL [3800]: pgsql_db_connect() -- 22:07:44.287 DEBUG [3800]: Database connection successful -- 22:07:44.287 INFO [3800]: _SERVER found -- 22:07:44.287 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 22:07:44.287 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:44.287 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:44.287 INFO [3800]: QUERY_STRING = /assets/js/pages/dashboard.js -- 22:07:44.287 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:44.298 INFO [3800]: COREGRADE is stopping... -- 22:07:44.298 DEBUG [3800]: Closing database connection -- 22:07:44.298 SQL [3800]: pgsql_close() -- 22:07:44.305 INFO [3741]: COREGRADE is starting... -- 22:07:44.305 INFO [3739]: COREGRADE is starting... -- 22:07:44.305 INFO [3741]: Version from config: 1.0 -- 22:07:44.305 DEBUG [3741]: Connecting to database... -- 22:07:44.305 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:44.305 INFO [3739]: Version from config: 1.0 -- 22:07:44.305 DEBUG [3739]: Connecting to database... -- 22:07:44.305 SQL [3741]: pgsql_db_connect() -- 22:07:44.306 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:44.306 SQL [3739]: pgsql_db_connect() -- 22:07:44.310 DEBUG [3739]: Database connection successful -- 22:07:44.310 INFO [3739]: _SERVER found -- 22:07:44.310 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 22:07:44.310 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:44.310 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:44.310 INFO [3739]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 22:07:44.310 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:44.321 INFO [3739]: COREGRADE is stopping... -- 22:07:44.309 DEBUG [3741]: Database connection successful -- 22:07:44.309 INFO [3741]: _SERVER found -- 22:07:44.309 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 22:07:44.309 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:44.309 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:44.309 INFO [3741]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 22:07:44.309 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:44.321 INFO [3741]: COREGRADE is stopping... -- 22:07:44.321 DEBUG [3739]: Closing database connection -- 22:07:44.321 DEBUG [3741]: Closing database connection -- 22:07:44.321 SQL [3739]: pgsql_close() -- 22:07:44.321 SQL [3741]: pgsql_close() -- 22:07:44.368 INFO [3800]: COREGRADE is starting... -- 22:07:44.368 INFO [3800]: Version from config: 1.0 -- 22:07:44.368 DEBUG [3800]: Connecting to database... -- 22:07:44.368 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:44.368 SQL [3800]: pgsql_db_connect() -- 22:07:44.372 DEBUG [3800]: Database connection successful -- 22:07:44.372 INFO [3800]: _SERVER found -- 22:07:44.372 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 22:07:44.372 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:44.372 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:44.372 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 22:07:44.372 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:44.383 INFO [3800]: COREGRADE is stopping... -- 22:07:44.383 DEBUG [3800]: Closing database connection -- 22:07:44.383 SQL [3800]: pgsql_close() -- 22:07:44.388 INFO [3739]: COREGRADE is starting... -- 22:07:44.388 INFO [3739]: Version from config: 1.0 -- 22:07:44.388 DEBUG [3739]: Connecting to database... -- 22:07:44.388 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:44.388 SQL [3739]: pgsql_db_connect() -- 22:07:44.389 INFO [3741]: COREGRADE is starting... -- 22:07:44.390 INFO [3741]: Version from config: 1.0 -- 22:07:44.390 DEBUG [3741]: Connecting to database... -- 22:07:44.390 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:44.390 SQL [3741]: pgsql_db_connect() -- 22:07:44.392 DEBUG [3739]: Database connection successful -- 22:07:44.392 INFO [3739]: _SERVER found -- 22:07:44.392 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 22:07:44.392 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:44.392 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:44.392 INFO [3739]: QUERY_STRING = /assets/js/pages/picker_date.js -- 22:07:44.392 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:44.403 INFO [3739]: COREGRADE is stopping... -- 22:07:44.403 DEBUG [3739]: Closing database connection -- 22:07:44.403 SQL [3739]: pgsql_close() -- 22:07:44.393 DEBUG [3741]: Database connection successful -- 22:07:44.393 INFO [3741]: _SERVER found -- 22:07:44.393 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 22:07:44.393 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:44.393 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:44.393 INFO [3741]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 22:07:44.393 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:44.405 INFO [3741]: COREGRADE is stopping... -- 22:07:44.405 DEBUG [3741]: Closing database connection -- 22:07:44.405 SQL [3741]: pgsql_close() -- 22:07:44.448 INFO [3800]: COREGRADE is starting... -- 22:07:44.449 INFO [3800]: Version from config: 1.0 -- 22:07:44.449 DEBUG [3800]: Connecting to database... -- 22:07:44.449 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:44.449 SQL [3800]: pgsql_db_connect() -- 22:07:44.453 DEBUG [3800]: Database connection successful -- 22:07:44.453 INFO [3800]: _SERVER found -- 22:07:44.453 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 22:07:44.453 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:44.453 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:44.453 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 22:07:44.453 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:44.464 INFO [3800]: COREGRADE is stopping... -- 22:07:44.464 DEBUG [3800]: Closing database connection -- 22:07:44.464 SQL [3800]: pgsql_close() -- 22:07:44.470 INFO [3739]: COREGRADE is starting... -- 22:07:44.470 INFO [3739]: Version from config: 1.0 -- 22:07:44.470 DEBUG [3739]: Connecting to database... -- 22:07:44.470 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:44.470 SQL [3739]: pgsql_db_connect() -- 22:07:44.473 INFO [3741]: COREGRADE is starting... -- 22:07:44.473 INFO [3741]: Version from config: 1.0 -- 22:07:44.473 DEBUG [3741]: Connecting to database... -- 22:07:44.473 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:44.473 SQL [3741]: pgsql_db_connect() -- 22:07:44.474 DEBUG [3739]: Database connection successful -- 22:07:44.474 INFO [3739]: _SERVER found -- 22:07:44.474 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 22:07:44.474 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:44.474 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:44.474 INFO [3739]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 22:07:44.474 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:44.485 INFO [3739]: COREGRADE is stopping... -- 22:07:44.485 DEBUG [3739]: Closing database connection -- 22:07:44.485 SQL [3739]: pgsql_close() -- 22:07:44.477 DEBUG [3741]: Database connection successful -- 22:07:44.477 INFO [3741]: _SERVER found -- 22:07:44.477 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 22:07:44.477 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:44.477 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:44.477 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 22:07:44.477 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:44.489 INFO [3741]: COREGRADE is stopping... -- 22:07:44.489 DEBUG [3741]: Closing database connection -- 22:07:44.489 SQL [3741]: pgsql_close() -- 22:07:44.529 INFO [3800]: COREGRADE is starting... -- 22:07:44.529 INFO [3800]: Version from config: 1.0 -- 22:07:44.529 DEBUG [3800]: Connecting to database... -- 22:07:44.529 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:44.529 SQL [3800]: pgsql_db_connect() -- 22:07:44.533 DEBUG [3800]: Database connection successful -- 22:07:44.533 INFO [3800]: _SERVER found -- 22:07:44.533 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 22:07:44.533 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:44.533 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:44.533 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 22:07:44.533 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:44.545 INFO [3800]: COREGRADE is stopping... -- 22:07:44.545 DEBUG [3800]: Closing database connection -- 22:07:44.545 SQL [3800]: pgsql_close() -- 22:07:44.552 INFO [3739]: COREGRADE is starting... -- 22:07:44.552 INFO [3739]: Version from config: 1.0 -- 22:07:44.552 DEBUG [3739]: Connecting to database... -- 22:07:44.552 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:44.552 SQL [3739]: pgsql_db_connect() -- 22:07:44.556 INFO [3741]: COREGRADE is starting... -- 22:07:44.556 INFO [3741]: Version from config: 1.0 -- 22:07:44.556 DEBUG [3741]: Connecting to database... -- 22:07:44.556 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:44.556 SQL [3741]: pgsql_db_connect() -- 22:07:44.556 DEBUG [3739]: Database connection successful -- 22:07:44.556 INFO [3739]: _SERVER found -- 22:07:44.556 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 22:07:44.556 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:44.556 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:44.556 INFO [3739]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 22:07:44.556 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:44.567 INFO [3739]: COREGRADE is stopping... -- 22:07:44.567 DEBUG [3739]: Closing database connection -- 22:07:44.567 SQL [3739]: pgsql_close() -- 22:07:44.560 DEBUG [3741]: Database connection successful -- 22:07:44.560 INFO [3741]: _SERVER found -- 22:07:44.560 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 22:07:44.560 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:44.560 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:44.560 INFO [3741]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 22:07:44.560 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:44.572 INFO [3741]: COREGRADE is stopping... -- 22:07:44.572 DEBUG [3741]: Closing database connection -- 22:07:44.572 SQL [3741]: pgsql_close() -- 22:07:44.610 INFO [3800]: COREGRADE is starting... -- 22:07:44.610 INFO [3800]: Version from config: 1.0 -- 22:07:44.610 DEBUG [3800]: Connecting to database... -- 22:07:44.610 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:44.610 SQL [3800]: pgsql_db_connect() -- 22:07:44.614 DEBUG [3800]: Database connection successful -- 22:07:44.614 INFO [3800]: _SERVER found -- 22:07:44.614 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 22:07:44.614 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:44.614 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:44.614 INFO [3800]: QUERY_STRING = /assets/customjs/general.js -- 22:07:44.614 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:44.626 INFO [3800]: COREGRADE is stopping... -- 22:07:44.626 DEBUG [3800]: Closing database connection -- 22:07:44.626 SQL [3800]: pgsql_close() -- 22:07:44.634 INFO [3739]: COREGRADE is starting... -- 22:07:44.634 INFO [3739]: Version from config: 1.0 -- 22:07:44.634 DEBUG [3739]: Connecting to database... -- 22:07:44.634 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:44.634 SQL [3739]: pgsql_db_connect() -- 22:07:44.638 DEBUG [3739]: Database connection successful -- 22:07:44.638 INFO [3739]: _SERVER found -- 22:07:44.638 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 22:07:44.638 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:44.638 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:44.638 INFO [3739]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 22:07:44.638 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:44.649 INFO [3739]: COREGRADE is stopping... -- 22:07:44.649 DEBUG [3739]: Closing database connection -- 22:07:44.649 SQL [3739]: pgsql_close() -- 22:07:44.716 INFO [3739]: COREGRADE is starting... -- 22:07:44.716 INFO [3739]: Version from config: 1.0 -- 22:07:44.716 DEBUG [3739]: Connecting to database... -- 22:07:44.716 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:44.716 SQL [3739]: pgsql_db_connect() -- 22:07:44.720 DEBUG [3739]: Database connection successful -- 22:07:44.720 INFO [3739]: _SERVER found -- 22:07:44.720 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 22:07:44.720 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:44.720 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:44.720 INFO [3739]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 22:07:44.720 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:44.731 INFO [3739]: COREGRADE is stopping... -- 22:07:44.731 DEBUG [3739]: Closing database connection -- 22:07:44.731 SQL [3739]: pgsql_close() -- 22:07:44.798 INFO [3739]: COREGRADE is starting... -- 22:07:44.798 INFO [3739]: Version from config: 1.0 -- 22:07:44.798 DEBUG [3739]: Connecting to database... -- 22:07:44.798 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:44.799 SQL [3739]: pgsql_db_connect() -- 22:07:44.803 DEBUG [3739]: Database connection successful -- 22:07:44.803 INFO [3739]: _SERVER found -- 22:07:44.803 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 22:07:44.803 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:44.803 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:44.803 INFO [3739]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 22:07:44.803 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:44.814 INFO [3739]: COREGRADE is stopping... -- 22:07:44.814 DEBUG [3739]: Closing database connection -- 22:07:44.814 SQL [3739]: pgsql_close() -- 22:07:44.880 INFO [3739]: COREGRADE is starting... -- 22:07:44.881 INFO [3739]: Version from config: 1.0 -- 22:07:44.881 DEBUG [3739]: Connecting to database... -- 22:07:44.881 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:44.881 SQL [3739]: pgsql_db_connect() -- 22:07:44.885 DEBUG [3739]: Database connection successful -- 22:07:44.885 INFO [3739]: _SERVER found -- 22:07:44.885 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 22:07:44.885 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:44.885 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:44.885 INFO [3739]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 22:07:44.885 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:44.896 INFO [3739]: COREGRADE is stopping... -- 22:07:44.896 DEBUG [3739]: Closing database connection -- 22:07:44.896 SQL [3739]: pgsql_close() -- 22:07:44.963 INFO [3739]: COREGRADE is starting... -- 22:07:44.963 INFO [3739]: Version from config: 1.0 -- 22:07:44.963 DEBUG [3739]: Connecting to database... -- 22:07:44.963 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:44.963 SQL [3739]: pgsql_db_connect() -- 22:07:44.967 DEBUG [3739]: Database connection successful -- 22:07:44.967 INFO [3739]: _SERVER found -- 22:07:44.967 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 22:07:44.967 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:44.967 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:44.967 INFO [3739]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 22:07:44.967 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:44.979 INFO [3739]: COREGRADE is stopping... -- 22:07:44.979 DEBUG [3739]: Closing database connection -- 22:07:44.979 SQL [3739]: pgsql_close() -- 22:07:45.046 INFO [3739]: COREGRADE is starting... -- 22:07:45.046 INFO [3739]: Version from config: 1.0 -- 22:07:45.046 DEBUG [3739]: Connecting to database... -- 22:07:45.046 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:45.046 SQL [3739]: pgsql_db_connect() -- 22:07:45.050 DEBUG [3739]: Database connection successful -- 22:07:45.050 INFO [3739]: _SERVER found -- 22:07:45.050 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 22:07:45.050 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:45.050 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:45.050 INFO [3739]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 22:07:45.050 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:45.062 INFO [3739]: COREGRADE is stopping... -- 22:07:45.062 DEBUG [3739]: Closing database connection -- 22:07:45.062 SQL [3739]: pgsql_close() -- 22:07:45.128 INFO [3739]: COREGRADE is starting... -- 22:07:45.129 INFO [3739]: Version from config: 1.0 -- 22:07:45.129 DEBUG [3739]: Connecting to database... -- 22:07:45.129 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:45.129 SQL [3739]: pgsql_db_connect() -- 22:07:45.133 DEBUG [3739]: Database connection successful -- 22:07:45.133 INFO [3739]: _SERVER found -- 22:07:45.133 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 22:07:45.133 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:45.133 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:45.133 INFO [3739]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 22:07:45.133 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:45.145 INFO [3739]: COREGRADE is stopping... -- 22:07:45.145 DEBUG [3739]: Closing database connection -- 22:07:45.145 SQL [3739]: pgsql_close() -- 22:07:45.212 INFO [3739]: COREGRADE is starting... -- 22:07:45.212 INFO [3739]: Version from config: 1.0 -- 22:07:45.212 DEBUG [3739]: Connecting to database... -- 22:07:45.212 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:45.212 SQL [3739]: pgsql_db_connect() -- 22:07:45.216 DEBUG [3739]: Database connection successful -- 22:07:45.216 INFO [3739]: _SERVER found -- 22:07:45.216 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 22:07:45.216 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:45.216 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:45.216 INFO [3739]: QUERY_STRING = /assets/js/pages/dashboard.js -- 22:07:45.216 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:45.227 INFO [3739]: COREGRADE is stopping... -- 22:07:45.227 DEBUG [3739]: Closing database connection -- 22:07:45.227 SQL [3739]: pgsql_close() -- 22:07:45.295 INFO [3739]: COREGRADE is starting... -- 22:07:45.295 INFO [3739]: Version from config: 1.0 -- 22:07:45.295 DEBUG [3739]: Connecting to database... -- 22:07:45.295 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:45.295 SQL [3739]: pgsql_db_connect() -- 22:07:45.299 DEBUG [3739]: Database connection successful -- 22:07:45.299 INFO [3739]: _SERVER found -- 22:07:45.299 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 22:07:45.299 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:45.299 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:45.299 INFO [3739]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 22:07:45.299 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:45.311 INFO [3739]: COREGRADE is stopping... -- 22:07:45.311 DEBUG [3739]: Closing database connection -- 22:07:45.311 SQL [3739]: pgsql_close() -- 22:07:45.378 INFO [3739]: COREGRADE is starting... -- 22:07:45.378 INFO [3739]: Version from config: 1.0 -- 22:07:45.378 DEBUG [3739]: Connecting to database... -- 22:07:45.378 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:45.378 SQL [3739]: pgsql_db_connect() -- 22:07:45.382 DEBUG [3739]: Database connection successful -- 22:07:45.382 INFO [3739]: _SERVER found -- 22:07:45.382 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 22:07:45.382 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:45.382 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:45.382 INFO [3739]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 22:07:45.382 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:45.393 INFO [3739]: COREGRADE is stopping... -- 22:07:45.394 DEBUG [3739]: Closing database connection -- 22:07:45.394 SQL [3739]: pgsql_close() -- 22:07:45.460 INFO [3739]: COREGRADE is starting... -- 22:07:45.461 INFO [3739]: Version from config: 1.0 -- 22:07:45.461 DEBUG [3739]: Connecting to database... -- 22:07:45.461 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:45.461 SQL [3739]: pgsql_db_connect() -- 22:07:45.465 DEBUG [3739]: Database connection successful -- 22:07:45.465 INFO [3739]: _SERVER found -- 22:07:45.465 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 22:07:45.465 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:45.465 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:45.465 INFO [3739]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 22:07:45.465 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:45.476 INFO [3739]: COREGRADE is stopping... -- 22:07:45.476 DEBUG [3739]: Closing database connection -- 22:07:45.476 SQL [3739]: pgsql_close() -- 22:07:45.543 INFO [3739]: COREGRADE is starting... -- 22:07:45.543 INFO [3739]: Version from config: 1.0 -- 22:07:45.543 DEBUG [3739]: Connecting to database... -- 22:07:45.543 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:45.543 SQL [3739]: pgsql_db_connect() -- 22:07:45.547 DEBUG [3739]: Database connection successful -- 22:07:45.547 INFO [3739]: _SERVER found -- 22:07:45.547 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 22:07:45.547 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:45.547 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:45.547 INFO [3739]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 22:07:45.547 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:45.559 INFO [3739]: COREGRADE is stopping... -- 22:07:45.559 DEBUG [3739]: Closing database connection -- 22:07:45.559 SQL [3739]: pgsql_close() -- 22:07:45.625 INFO [3739]: COREGRADE is starting... -- 22:07:45.626 INFO [3739]: Version from config: 1.0 -- 22:07:45.626 DEBUG [3739]: Connecting to database... -- 22:07:45.626 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:45.626 SQL [3739]: pgsql_db_connect() -- 22:07:45.630 DEBUG [3739]: Database connection successful -- 22:07:45.630 INFO [3739]: _SERVER found -- 22:07:45.630 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 22:07:45.630 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:45.630 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:45.630 INFO [3739]: QUERY_STRING = /assets/js/pages/picker_date.js -- 22:07:45.630 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:45.642 INFO [3739]: COREGRADE is stopping... -- 22:07:45.642 DEBUG [3739]: Closing database connection -- 22:07:45.642 SQL [3739]: pgsql_close() -- 22:07:45.708 INFO [3739]: COREGRADE is starting... -- 22:07:45.709 INFO [3739]: Version from config: 1.0 -- 22:07:45.709 DEBUG [3739]: Connecting to database... -- 22:07:45.709 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:45.709 SQL [3739]: pgsql_db_connect() -- 22:07:45.713 DEBUG [3739]: Database connection successful -- 22:07:45.713 INFO [3739]: _SERVER found -- 22:07:45.713 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 22:07:45.713 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:45.713 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:45.713 INFO [3739]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 22:07:45.713 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:45.724 INFO [3739]: COREGRADE is stopping... -- 22:07:45.724 DEBUG [3739]: Closing database connection -- 22:07:45.724 SQL [3739]: pgsql_close() -- 22:07:45.791 INFO [3739]: COREGRADE is starting... -- 22:07:45.791 INFO [3739]: Version from config: 1.0 -- 22:07:45.791 DEBUG [3739]: Connecting to database... -- 22:07:45.791 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:45.791 SQL [3739]: pgsql_db_connect() -- 22:07:45.795 DEBUG [3739]: Database connection successful -- 22:07:45.795 INFO [3739]: _SERVER found -- 22:07:45.795 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 22:07:45.795 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:45.795 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:45.795 INFO [3739]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 22:07:45.795 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:45.807 INFO [3739]: COREGRADE is stopping... -- 22:07:45.807 DEBUG [3739]: Closing database connection -- 22:07:45.807 SQL [3739]: pgsql_close() -- 22:07:45.873 INFO [3739]: COREGRADE is starting... -- 22:07:45.873 INFO [3739]: Version from config: 1.0 -- 22:07:45.873 DEBUG [3739]: Connecting to database... -- 22:07:45.874 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:45.874 SQL [3739]: pgsql_db_connect() -- 22:07:45.878 DEBUG [3739]: Database connection successful -- 22:07:45.878 INFO [3739]: _SERVER found -- 22:07:45.878 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 22:07:45.878 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:45.878 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:45.878 INFO [3739]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 22:07:45.878 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:45.889 INFO [3739]: COREGRADE is stopping... -- 22:07:45.889 DEBUG [3739]: Closing database connection -- 22:07:45.889 SQL [3739]: pgsql_close() -- 22:07:45.956 INFO [3739]: COREGRADE is starting... -- 22:07:45.956 INFO [3739]: Version from config: 1.0 -- 22:07:45.956 DEBUG [3739]: Connecting to database... -- 22:07:45.956 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:45.956 SQL [3739]: pgsql_db_connect() -- 22:07:45.960 DEBUG [3739]: Database connection successful -- 22:07:45.960 INFO [3739]: _SERVER found -- 22:07:45.960 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 22:07:45.960 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:45.960 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:45.960 INFO [3739]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 22:07:45.960 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:45.972 INFO [3739]: COREGRADE is stopping... -- 22:07:45.972 DEBUG [3739]: Closing database connection -- 22:07:45.972 SQL [3739]: pgsql_close() -- 22:07:46.038 INFO [3739]: COREGRADE is starting... -- 22:07:46.039 INFO [3739]: Version from config: 1.0 -- 22:07:46.039 DEBUG [3739]: Connecting to database... -- 22:07:46.039 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:46.039 SQL [3739]: pgsql_db_connect() -- 22:07:46.043 DEBUG [3739]: Database connection successful -- 22:07:46.043 INFO [3739]: _SERVER found -- 22:07:46.043 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 22:07:46.043 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:46.043 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:46.043 INFO [3739]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 22:07:46.043 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:46.054 INFO [3739]: COREGRADE is stopping... -- 22:07:46.054 DEBUG [3739]: Closing database connection -- 22:07:46.054 SQL [3739]: pgsql_close() -- 22:07:46.131 INFO [3739]: COREGRADE is starting... -- 22:07:46.132 INFO [3739]: Version from config: 1.0 -- 22:07:46.132 DEBUG [3739]: Connecting to database... -- 22:07:46.132 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:46.132 SQL [3739]: pgsql_db_connect() -- 22:07:46.136 DEBUG [3739]: Database connection successful -- 22:07:46.136 INFO [3739]: _SERVER found -- 22:07:46.136 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 22:07:46.136 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:46.136 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:46.136 INFO [3739]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 22:07:46.136 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:46.147 INFO [3739]: COREGRADE is stopping... -- 22:07:46.147 DEBUG [3739]: Closing database connection -- 22:07:46.147 SQL [3739]: pgsql_close() -- 22:07:46.214 INFO [3739]: COREGRADE is starting... -- 22:07:46.215 INFO [3739]: Version from config: 1.0 -- 22:07:46.215 DEBUG [3739]: Connecting to database... -- 22:07:46.215 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:46.215 SQL [3739]: pgsql_db_connect() -- 22:07:46.219 DEBUG [3739]: Database connection successful -- 22:07:46.219 INFO [3739]: _SERVER found -- 22:07:46.219 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 22:07:46.219 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:46.219 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:46.219 INFO [3739]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 22:07:46.219 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:46.230 INFO [3739]: COREGRADE is stopping... -- 22:07:46.230 DEBUG [3739]: Closing database connection -- 22:07:46.230 SQL [3739]: pgsql_close() -- 22:07:46.298 INFO [3739]: COREGRADE is starting... -- 22:07:46.299 INFO [3739]: Version from config: 1.0 -- 22:07:46.299 DEBUG [3739]: Connecting to database... -- 22:07:46.299 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:07:46.299 SQL [3739]: pgsql_db_connect() -- 22:07:46.303 DEBUG [3739]: Database connection successful -- 22:07:46.303 INFO [3739]: _SERVER found -- 22:07:46.303 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 22:07:46.303 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:07:46.303 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:07:46.303 INFO [3739]: QUERY_STRING = /assets/customjs/general.js -- 22:07:46.303 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:07:46.314 INFO [3739]: COREGRADE is stopping... -- 22:07:46.314 DEBUG [3739]: Closing database connection -- 22:07:46.314 SQL [3739]: pgsql_close() -- 22:27:46.532 INFO [3740]: COREGRADE is starting... -- 22:27:46.532 INFO [3740]: Version from config: 1.0 -- 22:27:46.532 DEBUG [3740]: Connecting to database... -- 22:27:46.532 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:46.532 SQL [3740]: pgsql_db_connect() -- 22:27:46.536 DEBUG [3740]: Database connection successful -- 22:27:46.536 INFO [3740]: _SERVER found -- 22:27:46.536 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 22:27:46.536 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:46.536 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=2n48ok6opg1e1aeb56nf2utkkpofo2hh -- 22:27:46.536 INFO [3740]: QUERY_STRING = /logout -- 22:27:46.536 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:46.571 INFO [3740]: COREGRADE is stopping... -- 22:27:46.571 DEBUG [3740]: Closing database connection -- 22:27:46.571 SQL [3740]: pgsql_close() -- 22:27:46.650 INFO [3740]: COREGRADE is starting... -- 22:27:46.650 INFO [3740]: Version from config: 1.0 -- 22:27:46.650 DEBUG [3740]: Connecting to database... -- 22:27:46.650 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:46.650 SQL [3740]: pgsql_db_connect() -- 22:27:46.654 DEBUG [3740]: Database connection successful -- 22:27:46.654 INFO [3740]: _SERVER found -- 22:27:46.654 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 22:27:46.654 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:46.654 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:46.654 INFO [3740]: QUERY_STRING = /start -- 22:27:46.654 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:46.689 INFO [3740]: COREGRADE is stopping... -- 22:27:46.689 DEBUG [3740]: Closing database connection -- 22:27:46.689 SQL [3740]: pgsql_close() -- 22:27:46.816 INFO [3740]: COREGRADE is starting... -- 22:27:46.816 INFO [3740]: Version from config: 1.0 -- 22:27:46.816 DEBUG [3740]: Connecting to database... -- 22:27:46.816 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:46.816 SQL [3740]: pgsql_db_connect() -- 22:27:46.820 DEBUG [3740]: Database connection successful -- 22:27:46.820 INFO [3740]: _SERVER found -- 22:27:46.820 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 22:27:46.820 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:46.820 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:46.820 INFO [3740]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 22:27:46.820 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:46.832 INFO [3740]: COREGRADE is stopping... -- 22:27:46.832 DEBUG [3740]: Closing database connection -- 22:27:46.832 SQL [3740]: pgsql_close() -- 22:27:46.836 INFO [3742]: COREGRADE is starting... -- 22:27:46.836 INFO [3742]: Version from config: 1.0 -- 22:27:46.836 DEBUG [3742]: Connecting to database... -- 22:27:46.836 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:46.836 SQL [3742]: pgsql_db_connect() -- 22:27:46.840 DEBUG [3742]: Database connection successful -- 22:27:46.840 INFO [3742]: _SERVER found -- 22:27:46.840 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 22:27:46.840 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:46.840 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:46.840 INFO [3742]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 22:27:46.840 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:46.853 INFO [3742]: COREGRADE is stopping... -- 22:27:46.853 DEBUG [3742]: Closing database connection -- 22:27:46.853 SQL [3742]: pgsql_close() -- 22:27:46.875 INFO [3742]: COREGRADE is starting... -- 22:27:46.876 INFO [3742]: Version from config: 1.0 -- 22:27:46.876 DEBUG [3742]: Connecting to database... -- 22:27:46.876 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:46.876 SQL [3742]: pgsql_db_connect() -- 22:27:46.880 DEBUG [3742]: Database connection successful -- 22:27:46.880 INFO [3742]: _SERVER found -- 22:27:46.880 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 22:27:46.880 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:46.880 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:46.880 INFO [3742]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 22:27:46.880 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:46.892 INFO [3742]: COREGRADE is stopping... -- 22:27:46.892 DEBUG [3742]: Closing database connection -- 22:27:46.892 SQL [3742]: pgsql_close() -- 22:27:46.911 INFO [3742]: COREGRADE is starting... -- 22:27:46.912 INFO [3742]: Version from config: 1.0 -- 22:27:46.912 DEBUG [3742]: Connecting to database... -- 22:27:46.912 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:46.912 SQL [3742]: pgsql_db_connect() -- 22:27:46.919 INFO [3740]: COREGRADE is starting... -- 22:27:46.919 INFO [3740]: Version from config: 1.0 -- 22:27:46.919 DEBUG [3740]: Connecting to database... -- 22:27:46.919 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:46.919 SQL [3740]: pgsql_db_connect() -- 22:27:46.916 DEBUG [3742]: Database connection successful -- 22:27:46.916 INFO [3742]: _SERVER found -- 22:27:46.916 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 22:27:46.916 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:46.916 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:46.916 INFO [3742]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 22:27:46.916 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:46.928 INFO [3742]: COREGRADE is stopping... -- 22:27:46.928 DEBUG [3742]: Closing database connection -- 22:27:46.928 SQL [3742]: pgsql_close() -- 22:27:46.924 DEBUG [3740]: Database connection successful -- 22:27:46.924 INFO [3740]: _SERVER found -- 22:27:46.924 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 22:27:46.924 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:46.924 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:46.924 INFO [3740]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 22:27:46.924 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:46.936 INFO [3740]: COREGRADE is stopping... -- 22:27:46.936 DEBUG [3740]: Closing database connection -- 22:27:46.936 SQL [3740]: pgsql_close() -- 22:27:46.967 INFO [3740]: COREGRADE is starting... -- 22:27:46.967 INFO [3740]: Version from config: 1.0 -- 22:27:46.967 DEBUG [3740]: Connecting to database... -- 22:27:46.967 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:46.967 SQL [3740]: pgsql_db_connect() -- 22:27:46.971 DEBUG [3740]: Database connection successful -- 22:27:46.971 INFO [3740]: _SERVER found -- 22:27:46.972 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 22:27:46.972 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:46.972 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:46.972 INFO [3740]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 22:27:46.972 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:46.983 INFO [3740]: COREGRADE is stopping... -- 22:27:46.983 DEBUG [3740]: Closing database connection -- 22:27:46.983 SQL [3740]: pgsql_close() -- 22:27:47.002 INFO [3740]: COREGRADE is starting... -- 22:27:47.002 INFO [3740]: Version from config: 1.0 -- 22:27:47.002 DEBUG [3740]: Connecting to database... -- 22:27:47.002 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:47.002 SQL [3740]: pgsql_db_connect() -- 22:27:47.007 INFO [3742]: COREGRADE is starting... -- 22:27:47.007 INFO [3742]: Version from config: 1.0 -- 22:27:47.007 DEBUG [3742]: Connecting to database... -- 22:27:47.007 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:47.007 SQL [3742]: pgsql_db_connect() -- 22:27:47.006 DEBUG [3740]: Database connection successful -- 22:27:47.006 INFO [3740]: _SERVER found -- 22:27:47.006 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 22:27:47.006 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:47.006 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:47.006 INFO [3740]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 22:27:47.006 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:47.018 INFO [3740]: COREGRADE is stopping... -- 22:27:47.018 DEBUG [3740]: Closing database connection -- 22:27:47.018 SQL [3740]: pgsql_close() -- 22:27:47.011 DEBUG [3742]: Database connection successful -- 22:27:47.011 INFO [3742]: _SERVER found -- 22:27:47.011 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 22:27:47.011 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:47.011 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:47.011 INFO [3742]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 22:27:47.011 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:47.023 INFO [3742]: COREGRADE is stopping... -- 22:27:47.023 DEBUG [3742]: Closing database connection -- 22:27:47.023 SQL [3742]: pgsql_close() -- 22:27:47.059 INFO [3742]: COREGRADE is starting... -- 22:27:47.059 INFO [3742]: Version from config: 1.0 -- 22:27:47.059 DEBUG [3742]: Connecting to database... -- 22:27:47.059 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:47.059 SQL [3742]: pgsql_db_connect() -- 22:27:47.063 DEBUG [3742]: Database connection successful -- 22:27:47.063 INFO [3742]: _SERVER found -- 22:27:47.063 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 22:27:47.063 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:47.063 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:47.063 INFO [3742]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 22:27:47.063 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:47.076 INFO [3742]: COREGRADE is stopping... -- 22:27:47.076 DEBUG [3742]: Closing database connection -- 22:27:47.076 SQL [3742]: pgsql_close() -- 22:27:47.084 INFO [3742]: COREGRADE is starting... -- 22:27:47.084 INFO [3742]: Version from config: 1.0 -- 22:27:47.084 DEBUG [3742]: Connecting to database... -- 22:27:47.084 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:47.084 SQL [3742]: pgsql_db_connect() -- 22:27:47.089 DEBUG [3742]: Database connection successful -- 22:27:47.089 INFO [3742]: _SERVER found -- 22:27:47.089 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 22:27:47.089 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:47.089 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:47.089 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 22:27:47.089 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:47.101 INFO [3742]: COREGRADE is stopping... -- 22:27:47.101 DEBUG [3742]: Closing database connection -- 22:27:47.101 SQL [3742]: pgsql_close() -- 22:27:47.103 INFO [3740]: COREGRADE is starting... -- 22:27:47.103 INFO [3740]: Version from config: 1.0 -- 22:27:47.103 DEBUG [3740]: Connecting to database... -- 22:27:47.103 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:47.103 SQL [3740]: pgsql_db_connect() -- 22:27:47.107 DEBUG [3740]: Database connection successful -- 22:27:47.107 INFO [3740]: _SERVER found -- 22:27:47.107 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 22:27:47.107 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:47.107 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:47.107 INFO [3740]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 22:27:47.107 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:47.119 INFO [3740]: COREGRADE is stopping... -- 22:27:47.119 DEBUG [3740]: Closing database connection -- 22:27:47.119 SQL [3740]: pgsql_close() -- 22:27:47.154 INFO [3740]: COREGRADE is starting... -- 22:27:47.154 INFO [3740]: Version from config: 1.0 -- 22:27:47.154 DEBUG [3740]: Connecting to database... -- 22:27:47.154 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:47.154 SQL [3740]: pgsql_db_connect() -- 22:27:47.167 INFO [3742]: COREGRADE is starting... -- 22:27:47.168 INFO [3742]: Version from config: 1.0 -- 22:27:47.168 DEBUG [3742]: Connecting to database... -- 22:27:47.168 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:47.168 SQL [3742]: pgsql_db_connect() -- 22:27:47.158 DEBUG [3740]: Database connection successful -- 22:27:47.158 INFO [3740]: _SERVER found -- 22:27:47.158 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 22:27:47.158 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:47.158 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:47.158 INFO [3740]: QUERY_STRING = /assets/js/pages/dashboard.js -- 22:27:47.158 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:47.170 INFO [3740]: COREGRADE is stopping... -- 22:27:47.170 DEBUG [3740]: Closing database connection -- 22:27:47.170 SQL [3740]: pgsql_close() -- 22:27:47.172 DEBUG [3742]: Database connection successful -- 22:27:47.172 INFO [3742]: _SERVER found -- 22:27:47.172 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 22:27:47.172 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:47.172 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:47.172 INFO [3742]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 22:27:47.172 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:47.184 INFO [3742]: COREGRADE is stopping... -- 22:27:47.184 DEBUG [3742]: Closing database connection -- 22:27:47.184 SQL [3742]: pgsql_close() -- 22:27:47.189 INFO [3742]: COREGRADE is starting... -- 22:27:47.189 INFO [3742]: Version from config: 1.0 -- 22:27:47.190 DEBUG [3742]: Connecting to database... -- 22:27:47.190 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:47.190 SQL [3742]: pgsql_db_connect() -- 22:27:47.194 DEBUG [3742]: Database connection successful -- 22:27:47.194 INFO [3742]: _SERVER found -- 22:27:47.194 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 22:27:47.194 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:47.194 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:47.194 INFO [3742]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 22:27:47.194 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:47.206 INFO [3742]: COREGRADE is stopping... -- 22:27:47.206 DEBUG [3742]: Closing database connection -- 22:27:47.206 SQL [3742]: pgsql_close() -- 22:27:47.239 INFO [3742]: COREGRADE is starting... -- 22:27:47.239 INFO [3742]: Version from config: 1.0 -- 22:27:47.239 DEBUG [3742]: Connecting to database... -- 22:27:47.239 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:47.239 SQL [3742]: pgsql_db_connect() -- 22:27:47.251 INFO [3740]: COREGRADE is starting... -- 22:27:47.252 INFO [3740]: Version from config: 1.0 -- 22:27:47.252 DEBUG [3740]: Connecting to database... -- 22:27:47.252 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:47.252 SQL [3740]: pgsql_db_connect() -- 22:27:47.243 DEBUG [3742]: Database connection successful -- 22:27:47.243 INFO [3742]: _SERVER found -- 22:27:47.243 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 22:27:47.243 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:47.243 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:47.243 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 22:27:47.243 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:47.255 INFO [3742]: COREGRADE is stopping... -- 22:27:47.256 DEBUG [3742]: Closing database connection -- 22:27:47.256 SQL [3742]: pgsql_close() -- 22:27:47.256 DEBUG [3740]: Database connection successful -- 22:27:47.256 INFO [3740]: _SERVER found -- 22:27:47.256 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 22:27:47.256 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:47.256 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:47.256 INFO [3740]: QUERY_STRING = /assets/js/pages/picker_date.js -- 22:27:47.256 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:47.268 INFO [3740]: COREGRADE is stopping... -- 22:27:47.268 DEBUG [3740]: Closing database connection -- 22:27:47.268 SQL [3740]: pgsql_close() -- 22:27:47.276 INFO [3740]: COREGRADE is starting... -- 22:27:47.276 INFO [3740]: Version from config: 1.0 -- 22:27:47.276 DEBUG [3740]: Connecting to database... -- 22:27:47.276 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:47.276 SQL [3740]: pgsql_db_connect() -- 22:27:47.280 DEBUG [3740]: Database connection successful -- 22:27:47.280 INFO [3740]: _SERVER found -- 22:27:47.280 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 22:27:47.280 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:47.280 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:47.280 INFO [3740]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 22:27:47.280 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:47.292 INFO [3740]: COREGRADE is stopping... -- 22:27:47.292 DEBUG [3740]: Closing database connection -- 22:27:47.292 SQL [3740]: pgsql_close() -- 22:27:47.322 INFO [3740]: COREGRADE is starting... -- 22:27:47.322 INFO [3740]: Version from config: 1.0 -- 22:27:47.322 DEBUG [3740]: Connecting to database... -- 22:27:47.323 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:47.323 SQL [3740]: pgsql_db_connect() -- 22:27:47.335 INFO [3742]: COREGRADE is starting... -- 22:27:47.335 INFO [3742]: Version from config: 1.0 -- 22:27:47.335 DEBUG [3742]: Connecting to database... -- 22:27:47.335 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:47.335 SQL [3742]: pgsql_db_connect() -- 22:27:47.327 DEBUG [3740]: Database connection successful -- 22:27:47.327 INFO [3740]: _SERVER found -- 22:27:47.327 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 22:27:47.327 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:47.327 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:47.327 INFO [3740]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 22:27:47.327 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:47.338 INFO [3740]: COREGRADE is stopping... -- 22:27:47.339 DEBUG [3740]: Closing database connection -- 22:27:47.339 SQL [3740]: pgsql_close() -- 22:27:47.340 DEBUG [3742]: Database connection successful -- 22:27:47.340 INFO [3742]: _SERVER found -- 22:27:47.340 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 22:27:47.340 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:47.340 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:47.340 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 22:27:47.340 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:47.352 INFO [3742]: COREGRADE is stopping... -- 22:27:47.352 DEBUG [3742]: Closing database connection -- 22:27:47.352 SQL [3742]: pgsql_close() -- 22:27:47.363 INFO [3742]: COREGRADE is starting... -- 22:27:47.363 INFO [3742]: Version from config: 1.0 -- 22:27:47.363 DEBUG [3742]: Connecting to database... -- 22:27:47.363 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:47.363 SQL [3742]: pgsql_db_connect() -- 22:27:47.368 DEBUG [3742]: Database connection successful -- 22:27:47.368 INFO [3742]: _SERVER found -- 22:27:47.368 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 22:27:47.368 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:47.368 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:47.368 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 22:27:47.368 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:47.380 INFO [3742]: COREGRADE is stopping... -- 22:27:47.380 DEBUG [3742]: Closing database connection -- 22:27:47.380 SQL [3742]: pgsql_close() -- 22:27:47.404 INFO [3742]: COREGRADE is starting... -- 22:27:47.404 INFO [3742]: Version from config: 1.0 -- 22:27:47.404 DEBUG [3742]: Connecting to database... -- 22:27:47.404 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:47.404 SQL [3742]: pgsql_db_connect() -- 22:27:47.418 INFO [3740]: COREGRADE is starting... -- 22:27:47.419 INFO [3740]: Version from config: 1.0 -- 22:27:47.419 DEBUG [3740]: Connecting to database... -- 22:27:47.419 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:47.419 SQL [3740]: pgsql_db_connect() -- 22:27:47.409 DEBUG [3742]: Database connection successful -- 22:27:47.409 INFO [3742]: _SERVER found -- 22:27:47.409 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 22:27:47.409 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:47.409 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:47.409 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 22:27:47.409 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:47.421 INFO [3742]: COREGRADE is stopping... -- 22:27:47.421 DEBUG [3742]: Closing database connection -- 22:27:47.421 SQL [3742]: pgsql_close() -- 22:27:47.423 DEBUG [3740]: Database connection successful -- 22:27:47.423 INFO [3740]: _SERVER found -- 22:27:47.423 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 22:27:47.423 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:47.423 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:47.423 INFO [3740]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 22:27:47.423 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:47.435 INFO [3740]: COREGRADE is stopping... -- 22:27:47.435 DEBUG [3740]: Closing database connection -- 22:27:47.435 SQL [3740]: pgsql_close() -- 22:27:47.448 INFO [3740]: COREGRADE is starting... -- 22:27:47.449 INFO [3740]: Version from config: 1.0 -- 22:27:47.449 DEBUG [3740]: Connecting to database... -- 22:27:47.449 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:47.449 SQL [3740]: pgsql_db_connect() -- 22:27:47.453 DEBUG [3740]: Database connection successful -- 22:27:47.453 INFO [3740]: _SERVER found -- 22:27:47.453 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 22:27:47.453 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:47.453 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:47.453 INFO [3740]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 22:27:47.453 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:47.464 INFO [3740]: COREGRADE is stopping... -- 22:27:47.464 DEBUG [3740]: Closing database connection -- 22:27:47.464 SQL [3740]: pgsql_close() -- 22:27:47.486 INFO [3740]: COREGRADE is starting... -- 22:27:47.486 INFO [3740]: Version from config: 1.0 -- 22:27:47.486 DEBUG [3740]: Connecting to database... -- 22:27:47.486 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:47.486 SQL [3740]: pgsql_db_connect() -- 22:27:47.501 INFO [3742]: COREGRADE is starting... -- 22:27:47.501 INFO [3742]: Version from config: 1.0 -- 22:27:47.501 DEBUG [3742]: Connecting to database... -- 22:27:47.501 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:47.501 SQL [3742]: pgsql_db_connect() -- 22:27:47.490 DEBUG [3740]: Database connection successful -- 22:27:47.490 INFO [3740]: _SERVER found -- 22:27:47.490 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 22:27:47.490 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:47.490 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:47.490 INFO [3740]: QUERY_STRING = /assets/customjs/general.js -- 22:27:47.490 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:47.502 INFO [3740]: COREGRADE is stopping... -- 22:27:47.502 DEBUG [3740]: Closing database connection -- 22:27:47.502 SQL [3740]: pgsql_close() -- 22:27:47.506 DEBUG [3742]: Database connection successful -- 22:27:47.506 INFO [3742]: _SERVER found -- 22:27:47.506 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 22:27:47.506 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:47.506 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:47.506 INFO [3742]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 22:27:47.506 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:47.518 INFO [3742]: COREGRADE is stopping... -- 22:27:47.518 DEBUG [3742]: Closing database connection -- 22:27:47.518 SQL [3742]: pgsql_close() -- 22:27:47.585 INFO [3742]: COREGRADE is starting... -- 22:27:47.585 INFO [3742]: Version from config: 1.0 -- 22:27:47.585 DEBUG [3742]: Connecting to database... -- 22:27:47.585 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:47.585 SQL [3742]: pgsql_db_connect() -- 22:27:47.589 DEBUG [3742]: Database connection successful -- 22:27:47.589 INFO [3742]: _SERVER found -- 22:27:47.589 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 22:27:47.589 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:47.589 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:47.589 INFO [3742]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 22:27:47.589 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:47.601 INFO [3742]: COREGRADE is stopping... -- 22:27:47.601 DEBUG [3742]: Closing database connection -- 22:27:47.601 SQL [3742]: pgsql_close() -- 22:27:47.668 INFO [3742]: COREGRADE is starting... -- 22:27:47.669 INFO [3742]: Version from config: 1.0 -- 22:27:47.669 DEBUG [3742]: Connecting to database... -- 22:27:47.669 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:47.669 SQL [3742]: pgsql_db_connect() -- 22:27:47.673 DEBUG [3742]: Database connection successful -- 22:27:47.673 INFO [3742]: _SERVER found -- 22:27:47.673 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 22:27:47.673 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:47.673 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:47.673 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 22:27:47.673 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:47.685 INFO [3742]: COREGRADE is stopping... -- 22:27:47.685 DEBUG [3742]: Closing database connection -- 22:27:47.685 SQL [3742]: pgsql_close() -- 22:27:47.752 INFO [3742]: COREGRADE is starting... -- 22:27:47.752 INFO [3742]: Version from config: 1.0 -- 22:27:47.752 DEBUG [3742]: Connecting to database... -- 22:27:47.752 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:47.752 SQL [3742]: pgsql_db_connect() -- 22:27:47.757 DEBUG [3742]: Database connection successful -- 22:27:47.757 INFO [3742]: _SERVER found -- 22:27:47.757 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 22:27:47.757 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:47.757 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:47.757 INFO [3742]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 22:27:47.757 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:47.769 INFO [3742]: COREGRADE is stopping... -- 22:27:47.769 DEBUG [3742]: Closing database connection -- 22:27:47.769 SQL [3742]: pgsql_close() -- 22:27:47.836 INFO [3742]: COREGRADE is starting... -- 22:27:47.836 INFO [3742]: Version from config: 1.0 -- 22:27:47.836 DEBUG [3742]: Connecting to database... -- 22:27:47.836 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:47.836 SQL [3742]: pgsql_db_connect() -- 22:27:47.840 DEBUG [3742]: Database connection successful -- 22:27:47.840 INFO [3742]: _SERVER found -- 22:27:47.840 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 22:27:47.840 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:47.840 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:47.840 INFO [3742]: QUERY_STRING = /assets/js/pages/dashboard.js -- 22:27:47.840 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:47.853 INFO [3742]: COREGRADE is stopping... -- 22:27:47.853 DEBUG [3742]: Closing database connection -- 22:27:47.853 SQL [3742]: pgsql_close() -- 22:27:47.921 INFO [3742]: COREGRADE is starting... -- 22:27:47.921 INFO [3742]: Version from config: 1.0 -- 22:27:47.921 DEBUG [3742]: Connecting to database... -- 22:27:47.921 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:47.921 SQL [3742]: pgsql_db_connect() -- 22:27:47.925 DEBUG [3742]: Database connection successful -- 22:27:47.925 INFO [3742]: _SERVER found -- 22:27:47.925 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 22:27:47.925 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:47.925 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:47.925 INFO [3742]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 22:27:47.925 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:47.937 INFO [3742]: COREGRADE is stopping... -- 22:27:47.938 DEBUG [3742]: Closing database connection -- 22:27:47.938 SQL [3742]: pgsql_close() -- 22:27:48.005 INFO [3742]: COREGRADE is starting... -- 22:27:48.005 INFO [3742]: Version from config: 1.0 -- 22:27:48.005 DEBUG [3742]: Connecting to database... -- 22:27:48.005 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:48.005 SQL [3742]: pgsql_db_connect() -- 22:27:48.009 DEBUG [3742]: Database connection successful -- 22:27:48.009 INFO [3742]: _SERVER found -- 22:27:48.009 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 22:27:48.009 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:48.009 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:48.009 INFO [3742]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 22:27:48.009 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:48.021 INFO [3742]: COREGRADE is stopping... -- 22:27:48.021 DEBUG [3742]: Closing database connection -- 22:27:48.021 SQL [3742]: pgsql_close() -- 22:27:48.089 INFO [3742]: COREGRADE is starting... -- 22:27:48.089 INFO [3742]: Version from config: 1.0 -- 22:27:48.089 DEBUG [3742]: Connecting to database... -- 22:27:48.089 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:48.089 SQL [3742]: pgsql_db_connect() -- 22:27:48.093 DEBUG [3742]: Database connection successful -- 22:27:48.093 INFO [3742]: _SERVER found -- 22:27:48.093 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 22:27:48.093 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:48.093 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:48.093 INFO [3742]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 22:27:48.093 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:48.106 INFO [3742]: COREGRADE is stopping... -- 22:27:48.106 DEBUG [3742]: Closing database connection -- 22:27:48.106 SQL [3742]: pgsql_close() -- 22:27:48.173 INFO [3742]: COREGRADE is starting... -- 22:27:48.173 INFO [3742]: Version from config: 1.0 -- 22:27:48.173 DEBUG [3742]: Connecting to database... -- 22:27:48.173 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:48.173 SQL [3742]: pgsql_db_connect() -- 22:27:48.177 DEBUG [3742]: Database connection successful -- 22:27:48.177 INFO [3742]: _SERVER found -- 22:27:48.177 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 22:27:48.177 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:48.177 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:48.177 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 22:27:48.177 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:48.189 INFO [3742]: COREGRADE is stopping... -- 22:27:48.189 DEBUG [3742]: Closing database connection -- 22:27:48.189 SQL [3742]: pgsql_close() -- 22:27:48.256 INFO [3742]: COREGRADE is starting... -- 22:27:48.257 INFO [3742]: Version from config: 1.0 -- 22:27:48.257 DEBUG [3742]: Connecting to database... -- 22:27:48.257 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:48.257 SQL [3742]: pgsql_db_connect() -- 22:27:48.261 DEBUG [3742]: Database connection successful -- 22:27:48.261 INFO [3742]: _SERVER found -- 22:27:48.261 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 22:27:48.261 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:48.261 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:48.261 INFO [3742]: QUERY_STRING = /assets/js/pages/picker_date.js -- 22:27:48.261 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:48.273 INFO [3742]: COREGRADE is stopping... -- 22:27:48.273 DEBUG [3742]: Closing database connection -- 22:27:48.273 SQL [3742]: pgsql_close() -- 22:27:48.340 INFO [3742]: COREGRADE is starting... -- 22:27:48.340 INFO [3742]: Version from config: 1.0 -- 22:27:48.340 DEBUG [3742]: Connecting to database... -- 22:27:48.340 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:48.340 SQL [3742]: pgsql_db_connect() -- 22:27:48.345 DEBUG [3742]: Database connection successful -- 22:27:48.345 INFO [3742]: _SERVER found -- 22:27:48.345 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 22:27:48.345 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:48.345 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:48.345 INFO [3742]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 22:27:48.345 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:48.357 INFO [3742]: COREGRADE is stopping... -- 22:27:48.357 DEBUG [3742]: Closing database connection -- 22:27:48.357 SQL [3742]: pgsql_close() -- 22:27:48.424 INFO [3742]: COREGRADE is starting... -- 22:27:48.424 INFO [3742]: Version from config: 1.0 -- 22:27:48.424 DEBUG [3742]: Connecting to database... -- 22:27:48.425 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:48.425 SQL [3742]: pgsql_db_connect() -- 22:27:48.429 DEBUG [3742]: Database connection successful -- 22:27:48.429 INFO [3742]: _SERVER found -- 22:27:48.429 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 22:27:48.429 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:48.429 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:48.429 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 22:27:48.429 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:48.441 INFO [3742]: COREGRADE is stopping... -- 22:27:48.441 DEBUG [3742]: Closing database connection -- 22:27:48.441 SQL [3742]: pgsql_close() -- 22:27:48.508 INFO [3742]: COREGRADE is starting... -- 22:27:48.508 INFO [3742]: Version from config: 1.0 -- 22:27:48.508 DEBUG [3742]: Connecting to database... -- 22:27:48.508 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:48.508 SQL [3742]: pgsql_db_connect() -- 22:27:48.513 DEBUG [3742]: Database connection successful -- 22:27:48.513 INFO [3742]: _SERVER found -- 22:27:48.513 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 22:27:48.513 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:48.513 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:48.513 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 22:27:48.513 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:48.525 INFO [3742]: COREGRADE is stopping... -- 22:27:48.525 DEBUG [3742]: Closing database connection -- 22:27:48.525 SQL [3742]: pgsql_close() -- 22:27:48.592 INFO [3742]: COREGRADE is starting... -- 22:27:48.592 INFO [3742]: Version from config: 1.0 -- 22:27:48.592 DEBUG [3742]: Connecting to database... -- 22:27:48.592 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:48.592 SQL [3742]: pgsql_db_connect() -- 22:27:48.596 DEBUG [3742]: Database connection successful -- 22:27:48.596 INFO [3742]: _SERVER found -- 22:27:48.596 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 22:27:48.596 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:48.596 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:48.596 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 22:27:48.596 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:48.609 INFO [3742]: COREGRADE is stopping... -- 22:27:48.609 DEBUG [3742]: Closing database connection -- 22:27:48.609 SQL [3742]: pgsql_close() -- 22:27:48.676 INFO [3742]: COREGRADE is starting... -- 22:27:48.676 INFO [3742]: Version from config: 1.0 -- 22:27:48.676 DEBUG [3742]: Connecting to database... -- 22:27:48.676 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:48.676 SQL [3742]: pgsql_db_connect() -- 22:27:48.681 DEBUG [3742]: Database connection successful -- 22:27:48.681 INFO [3742]: _SERVER found -- 22:27:48.681 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 22:27:48.681 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:48.681 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:48.681 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 22:27:48.681 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:48.693 INFO [3742]: COREGRADE is stopping... -- 22:27:48.693 DEBUG [3742]: Closing database connection -- 22:27:48.693 SQL [3742]: pgsql_close() -- 22:27:48.771 INFO [3742]: COREGRADE is starting... -- 22:27:48.771 INFO [3742]: Version from config: 1.0 -- 22:27:48.771 DEBUG [3742]: Connecting to database... -- 22:27:48.771 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:48.771 SQL [3742]: pgsql_db_connect() -- 22:27:48.775 DEBUG [3742]: Database connection successful -- 22:27:48.775 INFO [3742]: _SERVER found -- 22:27:48.775 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 22:27:48.775 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:48.775 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:48.775 INFO [3742]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 22:27:48.775 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:48.788 INFO [3742]: COREGRADE is stopping... -- 22:27:48.788 DEBUG [3742]: Closing database connection -- 22:27:48.788 SQL [3742]: pgsql_close() -- 22:27:48.854 INFO [3742]: COREGRADE is starting... -- 22:27:48.855 INFO [3742]: Version from config: 1.0 -- 22:27:48.855 DEBUG [3742]: Connecting to database... -- 22:27:48.855 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:48.855 SQL [3742]: pgsql_db_connect() -- 22:27:48.859 DEBUG [3742]: Database connection successful -- 22:27:48.859 INFO [3742]: _SERVER found -- 22:27:48.859 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 22:27:48.859 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:48.859 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:48.859 INFO [3742]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 22:27:48.859 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:48.871 INFO [3742]: COREGRADE is stopping... -- 22:27:48.871 DEBUG [3742]: Closing database connection -- 22:27:48.871 SQL [3742]: pgsql_close() -- 22:27:48.940 INFO [3742]: COREGRADE is starting... -- 22:27:48.940 INFO [3742]: Version from config: 1.0 -- 22:27:48.940 DEBUG [3742]: Connecting to database... -- 22:27:48.940 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:27:48.940 SQL [3742]: pgsql_db_connect() -- 22:27:48.944 DEBUG [3742]: Database connection successful -- 22:27:48.944 INFO [3742]: _SERVER found -- 22:27:48.944 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 22:27:48.945 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:27:48.945 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:27:48.945 INFO [3742]: QUERY_STRING = /assets/customjs/general.js -- 22:27:48.945 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:27:48.957 INFO [3742]: COREGRADE is stopping... -- 22:27:48.957 DEBUG [3742]: Closing database connection -- 22:27:48.957 SQL [3742]: pgsql_close() -- 22:47:49.178 INFO [3738]: COREGRADE is starting... -- 22:47:49.178 INFO [3738]: Version from config: 1.0 -- 22:47:49.178 DEBUG [3738]: Connecting to database... -- 22:47:49.178 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:49.178 SQL [3738]: pgsql_db_connect() -- 22:47:49.183 DEBUG [3738]: Database connection successful -- 22:47:49.183 INFO [3738]: _SERVER found -- 22:47:49.183 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 22:47:49.183 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:49.183 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ho3tqrj69jeo5ce5fgnhc9c4vmdeem4r -- 22:47:49.183 INFO [3738]: QUERY_STRING = /logout -- 22:47:49.183 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:49.220 INFO [3738]: COREGRADE is stopping... -- 22:47:49.220 DEBUG [3738]: Closing database connection -- 22:47:49.220 SQL [3738]: pgsql_close() -- 22:47:49.302 INFO [3738]: COREGRADE is starting... -- 22:47:49.302 INFO [3738]: Version from config: 1.0 -- 22:47:49.303 DEBUG [3738]: Connecting to database... -- 22:47:49.303 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:49.303 SQL [3738]: pgsql_db_connect() -- 22:47:49.307 DEBUG [3738]: Database connection successful -- 22:47:49.307 INFO [3738]: _SERVER found -- 22:47:49.307 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 22:47:49.307 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:49.307 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:49.307 INFO [3738]: QUERY_STRING = /start -- 22:47:49.307 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:49.341 INFO [3738]: COREGRADE is stopping... -- 22:47:49.341 DEBUG [3738]: Closing database connection -- 22:47:49.341 SQL [3738]: pgsql_close() -- 22:47:49.472 INFO [3828]: COREGRADE is starting... -- 22:47:49.472 INFO [3828]: Version from config: 1.0 -- 22:47:49.472 DEBUG [3828]: Connecting to database... -- 22:47:49.472 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:49.472 SQL [3828]: pgsql_db_connect() -- 22:47:49.476 DEBUG [3828]: Database connection successful -- 22:47:49.476 INFO [3828]: _SERVER found -- 22:47:49.476 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 22:47:49.476 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:49.476 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:49.476 INFO [3828]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 22:47:49.476 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:49.488 INFO [3828]: COREGRADE is stopping... -- 22:47:49.488 DEBUG [3828]: Closing database connection -- 22:47:49.488 SQL [3828]: pgsql_close() -- 22:47:49.494 INFO [3738]: COREGRADE is starting... -- 22:47:49.494 INFO [3738]: Version from config: 1.0 -- 22:47:49.494 DEBUG [3738]: Connecting to database... -- 22:47:49.494 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:49.494 SQL [3738]: pgsql_db_connect() -- 22:47:49.498 DEBUG [3738]: Database connection successful -- 22:47:49.498 INFO [3738]: _SERVER found -- 22:47:49.498 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 22:47:49.498 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:49.498 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:49.498 INFO [3738]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 22:47:49.498 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:49.509 INFO [3738]: COREGRADE is stopping... -- 22:47:49.509 DEBUG [3738]: Closing database connection -- 22:47:49.509 SQL [3738]: pgsql_close() -- 22:47:49.535 INFO [3828]: COREGRADE is starting... -- 22:47:49.535 INFO [3828]: Version from config: 1.0 -- 22:47:49.535 DEBUG [3828]: Connecting to database... -- 22:47:49.535 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:49.535 SQL [3828]: pgsql_db_connect() -- 22:47:49.539 DEBUG [3828]: Database connection successful -- 22:47:49.539 INFO [3828]: _SERVER found -- 22:47:49.539 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 22:47:49.539 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:49.539 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:49.539 INFO [3828]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 22:47:49.539 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:49.550 INFO [3828]: COREGRADE is stopping... -- 22:47:49.550 DEBUG [3828]: Closing database connection -- 22:47:49.550 SQL [3828]: pgsql_close() -- 22:47:49.569 INFO [3828]: COREGRADE is starting... -- 22:47:49.569 INFO [3828]: Version from config: 1.0 -- 22:47:49.569 DEBUG [3828]: Connecting to database... -- 22:47:49.569 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:49.569 SQL [3828]: pgsql_db_connect() -- 22:47:49.577 INFO [3738]: COREGRADE is starting... -- 22:47:49.578 INFO [3738]: Version from config: 1.0 -- 22:47:49.578 DEBUG [3738]: Connecting to database... -- 22:47:49.578 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:49.578 SQL [3738]: pgsql_db_connect() -- 22:47:49.573 DEBUG [3828]: Database connection successful -- 22:47:49.573 INFO [3828]: _SERVER found -- 22:47:49.573 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 22:47:49.573 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:49.573 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:49.573 INFO [3828]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 22:47:49.573 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:49.585 INFO [3828]: COREGRADE is stopping... -- 22:47:49.585 DEBUG [3828]: Closing database connection -- 22:47:49.585 SQL [3828]: pgsql_close() -- 22:47:49.582 DEBUG [3738]: Database connection successful -- 22:47:49.582 INFO [3738]: _SERVER found -- 22:47:49.582 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 22:47:49.582 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:49.582 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:49.582 INFO [3738]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 22:47:49.582 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:49.593 INFO [3738]: COREGRADE is stopping... -- 22:47:49.593 DEBUG [3738]: Closing database connection -- 22:47:49.593 SQL [3738]: pgsql_close() -- 22:47:49.630 INFO [3828]: COREGRADE is starting... -- 22:47:49.631 INFO [3828]: Version from config: 1.0 -- 22:47:49.631 DEBUG [3828]: Connecting to database... -- 22:47:49.631 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:49.631 SQL [3828]: pgsql_db_connect() -- 22:47:49.635 DEBUG [3828]: Database connection successful -- 22:47:49.635 INFO [3828]: _SERVER found -- 22:47:49.635 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 22:47:49.635 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:49.635 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:49.635 INFO [3828]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 22:47:49.635 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:49.646 INFO [3828]: COREGRADE is stopping... -- 22:47:49.646 DEBUG [3828]: Closing database connection -- 22:47:49.646 SQL [3828]: pgsql_close() -- 22:47:49.664 INFO [3738]: COREGRADE is starting... -- 22:47:49.664 INFO [3828]: COREGRADE is starting... -- 22:47:49.665 INFO [3828]: Version from config: 1.0 -- 22:47:49.665 DEBUG [3828]: Connecting to database... -- 22:47:49.665 INFO [3738]: Version from config: 1.0 -- 22:47:49.665 DEBUG [3738]: Connecting to database... -- 22:47:49.665 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:49.665 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:49.665 SQL [3828]: pgsql_db_connect() -- 22:47:49.665 SQL [3738]: pgsql_db_connect() -- 22:47:49.669 DEBUG [3828]: Database connection successful -- 22:47:49.669 INFO [3828]: _SERVER found -- 22:47:49.669 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 22:47:49.669 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:49.669 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:49.669 INFO [3828]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 22:47:49.669 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:49.680 INFO [3828]: COREGRADE is stopping... -- 22:47:49.669 DEBUG [3738]: Database connection successful -- 22:47:49.669 INFO [3738]: _SERVER found -- 22:47:49.669 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 22:47:49.669 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:49.669 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:49.669 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 22:47:49.669 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:49.680 INFO [3738]: COREGRADE is stopping... -- 22:47:49.680 DEBUG [3828]: Closing database connection -- 22:47:49.680 DEBUG [3738]: Closing database connection -- 22:47:49.680 SQL [3828]: pgsql_close() -- 22:47:49.680 SQL [3738]: pgsql_close() -- 22:47:49.726 INFO [3828]: COREGRADE is starting... -- 22:47:49.727 INFO [3828]: Version from config: 1.0 -- 22:47:49.727 DEBUG [3828]: Connecting to database... -- 22:47:49.727 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:49.727 SQL [3828]: pgsql_db_connect() -- 22:47:49.731 DEBUG [3828]: Database connection successful -- 22:47:49.731 INFO [3828]: _SERVER found -- 22:47:49.731 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 22:47:49.731 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:49.731 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:49.731 INFO [3828]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 22:47:49.731 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:49.743 INFO [3828]: COREGRADE is stopping... -- 22:47:49.743 DEBUG [3828]: Closing database connection -- 22:47:49.743 SQL [3828]: pgsql_close() -- 22:47:49.751 INFO [3738]: COREGRADE is starting... -- 22:47:49.751 INFO [3738]: Version from config: 1.0 -- 22:47:49.751 DEBUG [3738]: Connecting to database... -- 22:47:49.751 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:49.751 SQL [3738]: pgsql_db_connect() -- 22:47:49.761 INFO [3828]: COREGRADE is starting... -- 22:47:49.761 INFO [3828]: Version from config: 1.0 -- 22:47:49.761 DEBUG [3828]: Connecting to database... -- 22:47:49.761 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:49.761 SQL [3828]: pgsql_db_connect() -- 22:47:49.755 DEBUG [3738]: Database connection successful -- 22:47:49.755 INFO [3738]: _SERVER found -- 22:47:49.755 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 22:47:49.755 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:49.755 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:49.755 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 22:47:49.755 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:49.767 INFO [3738]: COREGRADE is stopping... -- 22:47:49.767 DEBUG [3738]: Closing database connection -- 22:47:49.767 SQL [3738]: pgsql_close() -- 22:47:49.765 DEBUG [3828]: Database connection successful -- 22:47:49.765 INFO [3828]: _SERVER found -- 22:47:49.765 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 22:47:49.765 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:49.765 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:49.765 INFO [3828]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 22:47:49.765 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:49.777 INFO [3828]: COREGRADE is stopping... -- 22:47:49.777 DEBUG [3828]: Closing database connection -- 22:47:49.777 SQL [3828]: pgsql_close() -- 22:47:49.824 INFO [3828]: COREGRADE is starting... -- 22:47:49.824 INFO [3828]: Version from config: 1.0 -- 22:47:49.824 DEBUG [3828]: Connecting to database... -- 22:47:49.824 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:49.824 SQL [3828]: pgsql_db_connect() -- 22:47:49.834 INFO [3738]: COREGRADE is starting... -- 22:47:49.835 INFO [3738]: Version from config: 1.0 -- 22:47:49.835 DEBUG [3738]: Connecting to database... -- 22:47:49.835 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:49.835 SQL [3738]: pgsql_db_connect() -- 22:47:49.828 DEBUG [3828]: Database connection successful -- 22:47:49.828 INFO [3828]: _SERVER found -- 22:47:49.828 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 22:47:49.828 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:49.828 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:49.828 INFO [3828]: QUERY_STRING = /assets/js/pages/dashboard.js -- 22:47:49.828 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:49.839 INFO [3828]: COREGRADE is stopping... -- 22:47:49.839 DEBUG [3828]: Closing database connection -- 22:47:49.839 SQL [3828]: pgsql_close() -- 22:47:49.847 INFO [3828]: COREGRADE is starting... -- 22:47:49.847 INFO [3828]: Version from config: 1.0 -- 22:47:49.847 DEBUG [3828]: Connecting to database... -- 22:47:49.847 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:49.847 SQL [3828]: pgsql_db_connect() -- 22:47:49.839 DEBUG [3738]: Database connection successful -- 22:47:49.839 INFO [3738]: _SERVER found -- 22:47:49.839 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 22:47:49.839 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:49.839 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:49.839 INFO [3738]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 22:47:49.839 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:49.851 INFO [3738]: COREGRADE is stopping... -- 22:47:49.851 DEBUG [3738]: Closing database connection -- 22:47:49.851 SQL [3738]: pgsql_close() -- 22:47:49.851 DEBUG [3828]: Database connection successful -- 22:47:49.851 INFO [3828]: _SERVER found -- 22:47:49.851 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 22:47:49.851 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:49.851 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:49.851 INFO [3828]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 22:47:49.851 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:49.863 INFO [3828]: COREGRADE is stopping... -- 22:47:49.863 DEBUG [3828]: Closing database connection -- 22:47:49.863 SQL [3828]: pgsql_close() -- 22:47:49.910 INFO [3828]: COREGRADE is starting... -- 22:47:49.910 INFO [3828]: Version from config: 1.0 -- 22:47:49.910 DEBUG [3828]: Connecting to database... -- 22:47:49.910 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:49.910 SQL [3828]: pgsql_db_connect() -- 22:47:49.919 INFO [3738]: COREGRADE is starting... -- 22:47:49.919 INFO [3738]: Version from config: 1.0 -- 22:47:49.919 DEBUG [3738]: Connecting to database... -- 22:47:49.919 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:49.919 SQL [3738]: pgsql_db_connect() -- 22:47:49.914 DEBUG [3828]: Database connection successful -- 22:47:49.914 INFO [3828]: _SERVER found -- 22:47:49.914 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 22:47:49.914 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:49.914 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:49.914 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 22:47:49.914 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:49.926 INFO [3828]: COREGRADE is stopping... -- 22:47:49.926 DEBUG [3828]: Closing database connection -- 22:47:49.926 SQL [3828]: pgsql_close() -- 22:47:49.933 INFO [3828]: COREGRADE is starting... -- 22:47:49.933 INFO [3828]: Version from config: 1.0 -- 22:47:49.933 DEBUG [3828]: Connecting to database... -- 22:47:49.933 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:49.933 SQL [3828]: pgsql_db_connect() -- 22:47:49.923 DEBUG [3738]: Database connection successful -- 22:47:49.923 INFO [3738]: _SERVER found -- 22:47:49.923 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 22:47:49.923 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:49.923 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:49.923 INFO [3738]: QUERY_STRING = /assets/js/pages/picker_date.js -- 22:47:49.923 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:49.935 INFO [3738]: COREGRADE is stopping... -- 22:47:49.935 DEBUG [3738]: Closing database connection -- 22:47:49.935 SQL [3738]: pgsql_close() -- 22:47:49.937 DEBUG [3828]: Database connection successful -- 22:47:49.937 INFO [3828]: _SERVER found -- 22:47:49.937 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 22:47:49.937 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:49.937 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:49.937 INFO [3828]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 22:47:49.937 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:49.949 INFO [3828]: COREGRADE is stopping... -- 22:47:49.949 DEBUG [3828]: Closing database connection -- 22:47:49.949 SQL [3828]: pgsql_close() -- 22:47:49.996 INFO [3828]: COREGRADE is starting... -- 22:47:49.996 INFO [3828]: Version from config: 1.0 -- 22:47:49.996 DEBUG [3828]: Connecting to database... -- 22:47:49.996 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:49.996 SQL [3828]: pgsql_db_connect() -- 22:47:50.003 INFO [3738]: COREGRADE is starting... -- 22:47:50.003 INFO [3738]: Version from config: 1.0 -- 22:47:50.003 DEBUG [3738]: Connecting to database... -- 22:47:50.003 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:50.003 SQL [3738]: pgsql_db_connect() -- 22:47:49.001 DEBUG [3828]: Database connection successful -- 22:47:49.001 INFO [3828]: _SERVER found -- 22:47:49.001 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 22:47:49.001 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:49.001 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:49.001 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 22:47:49.001 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:50.012 INFO [3828]: COREGRADE is stopping... -- 22:47:50.012 DEBUG [3828]: Closing database connection -- 22:47:50.012 SQL [3828]: pgsql_close() -- 22:47:50.018 INFO [3828]: COREGRADE is starting... -- 22:47:50.018 INFO [3828]: Version from config: 1.0 -- 22:47:50.018 DEBUG [3828]: Connecting to database... -- 22:47:50.018 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:50.018 SQL [3828]: pgsql_db_connect() -- 22:47:50.007 DEBUG [3738]: Database connection successful -- 22:47:50.007 INFO [3738]: _SERVER found -- 22:47:50.007 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 22:47:50.007 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:50.007 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:50.007 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 22:47:50.007 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:50.019 INFO [3738]: COREGRADE is stopping... -- 22:47:50.019 DEBUG [3738]: Closing database connection -- 22:47:50.019 SQL [3738]: pgsql_close() -- 22:47:50.022 DEBUG [3828]: Database connection successful -- 22:47:50.022 INFO [3828]: _SERVER found -- 22:47:50.022 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 22:47:50.022 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:50.022 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:50.022 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 22:47:50.022 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:50.034 INFO [3828]: COREGRADE is stopping... -- 22:47:50.034 DEBUG [3828]: Closing database connection -- 22:47:50.034 SQL [3828]: pgsql_close() -- 22:47:50.081 INFO [3828]: COREGRADE is starting... -- 22:47:50.082 INFO [3828]: Version from config: 1.0 -- 22:47:50.082 DEBUG [3828]: Connecting to database... -- 22:47:50.082 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:50.082 SQL [3828]: pgsql_db_connect() -- 22:47:50.087 INFO [3738]: COREGRADE is starting... -- 22:47:50.087 INFO [3738]: Version from config: 1.0 -- 22:47:50.087 DEBUG [3738]: Connecting to database... -- 22:47:50.087 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:50.087 SQL [3738]: pgsql_db_connect() -- 22:47:50.086 DEBUG [3828]: Database connection successful -- 22:47:50.086 INFO [3828]: _SERVER found -- 22:47:50.086 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 22:47:50.086 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:50.086 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:50.086 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 22:47:50.086 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:50.097 INFO [3828]: COREGRADE is stopping... -- 22:47:50.097 DEBUG [3828]: Closing database connection -- 22:47:50.097 SQL [3828]: pgsql_close() -- 22:47:50.103 INFO [3828]: COREGRADE is starting... -- 22:47:50.091 DEBUG [3738]: Database connection successful -- 22:47:50.091 INFO [3738]: _SERVER found -- 22:47:50.091 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 22:47:50.091 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:50.091 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:50.091 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 22:47:50.091 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:50.103 INFO [3738]: COREGRADE is stopping... -- 22:47:50.103 DEBUG [3738]: Closing database connection -- 22:47:50.103 SQL [3738]: pgsql_close() -- 22:47:50.103 INFO [3828]: Version from config: 1.0 -- 22:47:50.103 DEBUG [3828]: Connecting to database... -- 22:47:50.103 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:50.103 SQL [3828]: pgsql_db_connect() -- 22:47:50.107 DEBUG [3828]: Database connection successful -- 22:47:50.107 INFO [3828]: _SERVER found -- 22:47:50.107 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 22:47:50.107 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:50.107 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:50.107 INFO [3828]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 22:47:50.107 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:50.119 INFO [3828]: COREGRADE is stopping... -- 22:47:50.119 DEBUG [3828]: Closing database connection -- 22:47:50.119 SQL [3828]: pgsql_close() -- 22:47:50.166 INFO [3828]: COREGRADE is starting... -- 22:47:50.166 INFO [3828]: Version from config: 1.0 -- 22:47:50.166 DEBUG [3828]: Connecting to database... -- 22:47:50.166 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:50.166 SQL [3828]: pgsql_db_connect() -- 22:47:50.171 INFO [3738]: COREGRADE is starting... -- 22:47:50.172 INFO [3738]: Version from config: 1.0 -- 22:47:50.172 DEBUG [3738]: Connecting to database... -- 22:47:50.172 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:50.172 SQL [3738]: pgsql_db_connect() -- 22:47:50.170 DEBUG [3828]: Database connection successful -- 22:47:50.170 INFO [3828]: _SERVER found -- 22:47:50.170 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 22:47:50.170 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:50.170 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:50.170 INFO [3828]: QUERY_STRING = /assets/customjs/general.js -- 22:47:50.170 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:50.182 INFO [3828]: COREGRADE is stopping... -- 22:47:50.182 DEBUG [3828]: Closing database connection -- 22:47:50.182 SQL [3828]: pgsql_close() -- 22:47:50.176 DEBUG [3738]: Database connection successful -- 22:47:50.176 INFO [3738]: _SERVER found -- 22:47:50.176 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 22:47:50.176 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:50.176 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:50.176 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 22:47:50.176 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:50.187 INFO [3738]: COREGRADE is stopping... -- 22:47:50.187 DEBUG [3738]: Closing database connection -- 22:47:50.187 SQL [3738]: pgsql_close() -- 22:47:50.255 INFO [3738]: COREGRADE is starting... -- 22:47:50.256 INFO [3738]: Version from config: 1.0 -- 22:47:50.256 DEBUG [3738]: Connecting to database... -- 22:47:50.256 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:50.256 SQL [3738]: pgsql_db_connect() -- 22:47:50.260 DEBUG [3738]: Database connection successful -- 22:47:50.260 INFO [3738]: _SERVER found -- 22:47:50.260 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 22:47:50.260 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:50.260 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:50.260 INFO [3738]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 22:47:50.260 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:50.271 INFO [3738]: COREGRADE is stopping... -- 22:47:50.271 DEBUG [3738]: Closing database connection -- 22:47:50.271 SQL [3738]: pgsql_close() -- 22:47:50.340 INFO [3738]: COREGRADE is starting... -- 22:47:50.340 INFO [3738]: Version from config: 1.0 -- 22:47:50.340 DEBUG [3738]: Connecting to database... -- 22:47:50.340 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:50.340 SQL [3738]: pgsql_db_connect() -- 22:47:50.344 DEBUG [3738]: Database connection successful -- 22:47:50.344 INFO [3738]: _SERVER found -- 22:47:50.344 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 22:47:50.344 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:50.344 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:50.344 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 22:47:50.344 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:50.355 INFO [3738]: COREGRADE is stopping... -- 22:47:50.355 DEBUG [3738]: Closing database connection -- 22:47:50.355 SQL [3738]: pgsql_close() -- 22:47:50.424 INFO [3738]: COREGRADE is starting... -- 22:47:50.424 INFO [3738]: Version from config: 1.0 -- 22:47:50.424 DEBUG [3738]: Connecting to database... -- 22:47:50.424 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:50.424 SQL [3738]: pgsql_db_connect() -- 22:47:50.428 DEBUG [3738]: Database connection successful -- 22:47:50.428 INFO [3738]: _SERVER found -- 22:47:50.428 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 22:47:50.428 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:50.428 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:50.428 INFO [3738]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 22:47:50.428 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:50.439 INFO [3738]: COREGRADE is stopping... -- 22:47:50.440 DEBUG [3738]: Closing database connection -- 22:47:50.440 SQL [3738]: pgsql_close() -- 22:47:50.508 INFO [3738]: COREGRADE is starting... -- 22:47:50.508 INFO [3738]: Version from config: 1.0 -- 22:47:50.508 DEBUG [3738]: Connecting to database... -- 22:47:50.508 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:50.508 SQL [3738]: pgsql_db_connect() -- 22:47:50.513 DEBUG [3738]: Database connection successful -- 22:47:50.513 INFO [3738]: _SERVER found -- 22:47:50.513 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 22:47:50.513 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:50.513 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:50.513 INFO [3738]: QUERY_STRING = /assets/js/pages/dashboard.js -- 22:47:50.513 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:50.524 INFO [3738]: COREGRADE is stopping... -- 22:47:50.524 DEBUG [3738]: Closing database connection -- 22:47:50.524 SQL [3738]: pgsql_close() -- 22:47:50.593 INFO [3738]: COREGRADE is starting... -- 22:47:50.593 INFO [3738]: Version from config: 1.0 -- 22:47:50.593 DEBUG [3738]: Connecting to database... -- 22:47:50.593 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:50.593 SQL [3738]: pgsql_db_connect() -- 22:47:50.598 DEBUG [3738]: Database connection successful -- 22:47:50.598 INFO [3738]: _SERVER found -- 22:47:50.598 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 22:47:50.598 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:50.598 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:50.598 INFO [3738]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 22:47:50.598 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:50.610 INFO [3738]: COREGRADE is stopping... -- 22:47:50.610 DEBUG [3738]: Closing database connection -- 22:47:50.610 SQL [3738]: pgsql_close() -- 22:47:50.679 INFO [3738]: COREGRADE is starting... -- 22:47:50.679 INFO [3738]: Version from config: 1.0 -- 22:47:50.679 DEBUG [3738]: Connecting to database... -- 22:47:50.679 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:50.679 SQL [3738]: pgsql_db_connect() -- 22:47:50.683 DEBUG [3738]: Database connection successful -- 22:47:50.683 INFO [3738]: _SERVER found -- 22:47:50.683 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 22:47:50.683 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:50.683 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:50.683 INFO [3738]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 22:47:50.683 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:50.694 INFO [3738]: COREGRADE is stopping... -- 22:47:50.694 DEBUG [3738]: Closing database connection -- 22:47:50.695 SQL [3738]: pgsql_close() -- 22:47:50.763 INFO [3738]: COREGRADE is starting... -- 22:47:50.763 INFO [3738]: Version from config: 1.0 -- 22:47:50.763 DEBUG [3738]: Connecting to database... -- 22:47:50.763 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:50.763 SQL [3738]: pgsql_db_connect() -- 22:47:50.768 DEBUG [3738]: Database connection successful -- 22:47:50.768 INFO [3738]: _SERVER found -- 22:47:50.768 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 22:47:50.768 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:50.768 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:50.768 INFO [3738]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 22:47:50.768 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:50.779 INFO [3738]: COREGRADE is stopping... -- 22:47:50.779 DEBUG [3738]: Closing database connection -- 22:47:50.779 SQL [3738]: pgsql_close() -- 22:47:50.851 INFO [3738]: COREGRADE is starting... -- 22:47:50.851 INFO [3738]: Version from config: 1.0 -- 22:47:50.852 DEBUG [3738]: Connecting to database... -- 22:47:50.852 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:50.852 SQL [3738]: pgsql_db_connect() -- 22:47:50.856 DEBUG [3738]: Database connection successful -- 22:47:50.856 INFO [3738]: _SERVER found -- 22:47:50.856 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 22:47:50.856 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:50.856 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:50.856 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 22:47:50.856 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:50.867 INFO [3738]: COREGRADE is stopping... -- 22:47:50.867 DEBUG [3738]: Closing database connection -- 22:47:50.867 SQL [3738]: pgsql_close() -- 22:47:50.936 INFO [3738]: COREGRADE is starting... -- 22:47:50.936 INFO [3738]: Version from config: 1.0 -- 22:47:50.936 DEBUG [3738]: Connecting to database... -- 22:47:50.936 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:50.936 SQL [3738]: pgsql_db_connect() -- 22:47:50.940 DEBUG [3738]: Database connection successful -- 22:47:50.940 INFO [3738]: _SERVER found -- 22:47:50.940 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 22:47:50.940 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:50.940 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:50.940 INFO [3738]: QUERY_STRING = /assets/js/pages/picker_date.js -- 22:47:50.940 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:50.952 INFO [3738]: COREGRADE is stopping... -- 22:47:50.952 DEBUG [3738]: Closing database connection -- 22:47:50.952 SQL [3738]: pgsql_close() -- 22:47:51.021 INFO [3738]: COREGRADE is starting... -- 22:47:51.022 INFO [3738]: Version from config: 1.0 -- 22:47:51.022 DEBUG [3738]: Connecting to database... -- 22:47:51.022 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:51.022 SQL [3738]: pgsql_db_connect() -- 22:47:51.026 DEBUG [3738]: Database connection successful -- 22:47:51.026 INFO [3738]: _SERVER found -- 22:47:51.026 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 22:47:51.026 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:51.026 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:51.026 INFO [3738]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 22:47:51.026 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:51.037 INFO [3738]: COREGRADE is stopping... -- 22:47:51.037 DEBUG [3738]: Closing database connection -- 22:47:51.037 SQL [3738]: pgsql_close() -- 22:47:51.106 INFO [3738]: COREGRADE is starting... -- 22:47:51.106 INFO [3738]: Version from config: 1.0 -- 22:47:51.106 DEBUG [3738]: Connecting to database... -- 22:47:51.106 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:51.106 SQL [3738]: pgsql_db_connect() -- 22:47:51.110 DEBUG [3738]: Database connection successful -- 22:47:51.110 INFO [3738]: _SERVER found -- 22:47:51.110 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 22:47:51.110 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:51.110 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:51.110 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 22:47:51.110 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:51.122 INFO [3738]: COREGRADE is stopping... -- 22:47:51.122 DEBUG [3738]: Closing database connection -- 22:47:51.122 SQL [3738]: pgsql_close() -- 22:47:51.190 INFO [3738]: COREGRADE is starting... -- 22:47:51.190 INFO [3738]: Version from config: 1.0 -- 22:47:51.190 DEBUG [3738]: Connecting to database... -- 22:47:51.190 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:51.190 SQL [3738]: pgsql_db_connect() -- 22:47:51.194 DEBUG [3738]: Database connection successful -- 22:47:51.194 INFO [3738]: _SERVER found -- 22:47:51.194 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 22:47:51.194 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:51.194 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:51.194 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 22:47:51.194 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:51.206 INFO [3738]: COREGRADE is stopping... -- 22:47:51.206 DEBUG [3738]: Closing database connection -- 22:47:51.206 SQL [3738]: pgsql_close() -- 22:47:51.274 INFO [3738]: COREGRADE is starting... -- 22:47:51.275 INFO [3738]: Version from config: 1.0 -- 22:47:51.275 DEBUG [3738]: Connecting to database... -- 22:47:51.275 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:51.275 SQL [3738]: pgsql_db_connect() -- 22:47:51.279 DEBUG [3738]: Database connection successful -- 22:47:51.279 INFO [3738]: _SERVER found -- 22:47:51.279 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 22:47:51.279 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:51.279 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:51.279 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 22:47:51.279 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:51.290 INFO [3738]: COREGRADE is stopping... -- 22:47:51.290 DEBUG [3738]: Closing database connection -- 22:47:51.290 SQL [3738]: pgsql_close() -- 22:47:51.359 INFO [3738]: COREGRADE is starting... -- 22:47:51.359 INFO [3738]: Version from config: 1.0 -- 22:47:51.359 DEBUG [3738]: Connecting to database... -- 22:47:51.359 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:51.359 SQL [3738]: pgsql_db_connect() -- 22:47:51.363 DEBUG [3738]: Database connection successful -- 22:47:51.363 INFO [3738]: _SERVER found -- 22:47:51.363 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 22:47:51.363 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:51.363 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:51.363 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 22:47:51.363 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:51.374 INFO [3738]: COREGRADE is stopping... -- 22:47:51.374 DEBUG [3738]: Closing database connection -- 22:47:51.374 SQL [3738]: pgsql_close() -- 22:47:51.453 INFO [3738]: COREGRADE is starting... -- 22:47:51.454 INFO [3738]: Version from config: 1.0 -- 22:47:51.454 DEBUG [3738]: Connecting to database... -- 22:47:51.454 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:51.454 SQL [3738]: pgsql_db_connect() -- 22:47:51.458 DEBUG [3738]: Database connection successful -- 22:47:51.458 INFO [3738]: _SERVER found -- 22:47:51.458 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 22:47:51.458 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:51.458 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:51.458 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 22:47:51.458 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:51.469 INFO [3738]: COREGRADE is stopping... -- 22:47:51.469 DEBUG [3738]: Closing database connection -- 22:47:51.469 SQL [3738]: pgsql_close() -- 22:47:51.538 INFO [3738]: COREGRADE is starting... -- 22:47:51.538 INFO [3738]: Version from config: 1.0 -- 22:47:51.538 DEBUG [3738]: Connecting to database... -- 22:47:51.538 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:51.538 SQL [3738]: pgsql_db_connect() -- 22:47:51.542 DEBUG [3738]: Database connection successful -- 22:47:51.542 INFO [3738]: _SERVER found -- 22:47:51.542 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 22:47:51.542 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:51.542 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:51.542 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 22:47:51.542 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:51.554 INFO [3738]: COREGRADE is stopping... -- 22:47:51.554 DEBUG [3738]: Closing database connection -- 22:47:51.554 SQL [3738]: pgsql_close() -- 22:47:51.624 INFO [3738]: COREGRADE is starting... -- 22:47:51.624 INFO [3738]: Version from config: 1.0 -- 22:47:51.624 DEBUG [3738]: Connecting to database... -- 22:47:51.624 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:51.624 SQL [3738]: pgsql_db_connect() -- 22:47:51.628 DEBUG [3738]: Database connection successful -- 22:47:51.628 INFO [3738]: _SERVER found -- 22:47:51.628 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 22:47:51.628 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 22:47:51.628 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 22:47:51.628 INFO [3738]: QUERY_STRING = /assets/customjs/general.js -- 22:47:51.628 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 22:47:51.640 INFO [3738]: COREGRADE is stopping... -- 22:47:51.640 DEBUG [3738]: Closing database connection -- 22:47:51.640 SQL [3738]: pgsql_close() -- 23:07:51.854 INFO [3829]: COREGRADE is starting... -- 23:07:51.854 INFO [3829]: Version from config: 1.0 -- 23:07:51.854 DEBUG [3829]: Connecting to database... -- 23:07:51.854 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:51.854 SQL [3829]: pgsql_db_connect() -- 23:07:51.859 DEBUG [3829]: Database connection successful -- 23:07:51.859 INFO [3829]: _SERVER found -- 23:07:51.859 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 23:07:51.859 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:51.859 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ernsicqv7eeafsm19bihibvgh577784k -- 23:07:51.859 INFO [3829]: QUERY_STRING = /logout -- 23:07:51.859 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:51.895 INFO [3829]: COREGRADE is stopping... -- 23:07:51.895 DEBUG [3829]: Closing database connection -- 23:07:51.895 SQL [3829]: pgsql_close() -- 23:07:51.973 INFO [3829]: COREGRADE is starting... -- 23:07:51.974 INFO [3829]: Version from config: 1.0 -- 23:07:51.974 DEBUG [3829]: Connecting to database... -- 23:07:51.974 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:51.974 SQL [3829]: pgsql_db_connect() -- 23:07:51.978 DEBUG [3829]: Database connection successful -- 23:07:51.978 INFO [3829]: _SERVER found -- 23:07:51.978 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 23:07:51.978 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:51.978 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:51.978 INFO [3829]: QUERY_STRING = /start -- 23:07:51.978 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:52.017 INFO [3829]: COREGRADE is stopping... -- 23:07:52.017 DEBUG [3829]: Closing database connection -- 23:07:52.017 SQL [3829]: pgsql_close() -- 23:07:52.148 INFO [3741]: COREGRADE is starting... -- 23:07:52.148 INFO [3741]: Version from config: 1.0 -- 23:07:52.148 DEBUG [3741]: Connecting to database... -- 23:07:52.148 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:52.148 SQL [3741]: pgsql_db_connect() -- 23:07:52.160 INFO [3829]: COREGRADE is starting... -- 23:07:52.161 INFO [3829]: Version from config: 1.0 -- 23:07:52.161 DEBUG [3829]: Connecting to database... -- 23:07:52.161 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:52.161 SQL [3829]: pgsql_db_connect() -- 23:07:52.152 DEBUG [3741]: Database connection successful -- 23:07:52.152 INFO [3741]: _SERVER found -- 23:07:52.152 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 23:07:52.152 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:52.152 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:52.152 INFO [3741]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 23:07:52.152 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:52.166 INFO [3741]: COREGRADE is stopping... -- 23:07:52.166 DEBUG [3741]: Closing database connection -- 23:07:52.166 SQL [3741]: pgsql_close() -- 23:07:52.165 DEBUG [3829]: Database connection successful -- 23:07:52.165 INFO [3829]: _SERVER found -- 23:07:52.165 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 23:07:52.165 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:52.165 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:52.165 INFO [3829]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 23:07:52.165 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:52.177 INFO [3829]: COREGRADE is stopping... -- 23:07:52.177 DEBUG [3829]: Closing database connection -- 23:07:52.177 SQL [3829]: pgsql_close() -- 23:07:52.220 INFO [3800]: COREGRADE is starting... -- 23:07:52.220 INFO [3800]: Version from config: 1.0 -- 23:07:52.220 DEBUG [3800]: Connecting to database... -- 23:07:52.220 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:52.220 SQL [3800]: pgsql_db_connect() -- 23:07:52.224 DEBUG [3800]: Database connection successful -- 23:07:52.224 INFO [3800]: _SERVER found -- 23:07:52.224 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 23:07:52.224 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:52.224 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:52.224 INFO [3800]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 23:07:52.224 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:52.236 INFO [3800]: COREGRADE is stopping... -- 23:07:52.236 DEBUG [3800]: Closing database connection -- 23:07:52.236 SQL [3800]: pgsql_close() -- 23:07:52.245 INFO [3741]: COREGRADE is starting... -- 23:07:52.245 INFO [3741]: Version from config: 1.0 -- 23:07:52.245 DEBUG [3741]: Connecting to database... -- 23:07:52.245 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:52.245 SQL [3741]: pgsql_db_connect() -- 23:07:52.245 INFO [3829]: COREGRADE is starting... -- 23:07:52.246 INFO [3829]: Version from config: 1.0 -- 23:07:52.246 DEBUG [3829]: Connecting to database... -- 23:07:52.246 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:52.246 SQL [3829]: pgsql_db_connect() -- 23:07:52.249 DEBUG [3741]: Database connection successful -- 23:07:52.249 INFO [3741]: _SERVER found -- 23:07:52.249 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 23:07:52.249 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:52.249 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:52.249 INFO [3741]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 23:07:52.249 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:52.261 INFO [3741]: COREGRADE is stopping... -- 23:07:52.261 DEBUG [3741]: Closing database connection -- 23:07:52.261 SQL [3741]: pgsql_close() -- 23:07:52.249 DEBUG [3829]: Database connection successful -- 23:07:52.249 INFO [3829]: _SERVER found -- 23:07:52.249 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 23:07:52.249 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:52.249 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:52.249 INFO [3829]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 23:07:52.249 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:52.261 INFO [3829]: COREGRADE is stopping... -- 23:07:52.261 DEBUG [3829]: Closing database connection -- 23:07:52.261 SQL [3829]: pgsql_close() -- 23:07:52.316 INFO [3800]: COREGRADE is starting... -- 23:07:52.317 INFO [3800]: Version from config: 1.0 -- 23:07:52.317 DEBUG [3800]: Connecting to database... -- 23:07:52.317 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:52.317 SQL [3800]: pgsql_db_connect() -- 23:07:52.330 INFO [3829]: COREGRADE is starting... -- 23:07:52.330 INFO [3829]: Version from config: 1.0 -- 23:07:52.330 DEBUG [3829]: Connecting to database... -- 23:07:52.330 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:52.330 SQL [3829]: pgsql_db_connect() -- 23:07:52.321 DEBUG [3800]: Database connection successful -- 23:07:52.321 INFO [3800]: _SERVER found -- 23:07:52.321 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 23:07:52.321 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:52.321 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:52.321 INFO [3800]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 23:07:52.321 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:52.332 INFO [3800]: COREGRADE is stopping... -- 23:07:52.332 DEBUG [3800]: Closing database connection -- 23:07:52.332 SQL [3800]: pgsql_close() -- 23:07:52.337 INFO [3741]: COREGRADE is starting... -- 23:07:52.337 INFO [3741]: Version from config: 1.0 -- 23:07:52.337 DEBUG [3741]: Connecting to database... -- 23:07:52.337 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:52.337 SQL [3741]: pgsql_db_connect() -- 23:07:52.335 DEBUG [3829]: Database connection successful -- 23:07:52.335 INFO [3829]: _SERVER found -- 23:07:52.335 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 23:07:52.335 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:52.335 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:52.335 INFO [3829]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 23:07:52.335 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:52.347 INFO [3829]: COREGRADE is stopping... -- 23:07:52.347 DEBUG [3829]: Closing database connection -- 23:07:52.347 SQL [3829]: pgsql_close() -- 23:07:52.341 DEBUG [3741]: Database connection successful -- 23:07:52.341 INFO [3741]: _SERVER found -- 23:07:52.341 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 23:07:52.341 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:52.341 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:52.341 INFO [3741]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 23:07:52.341 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:52.353 INFO [3741]: COREGRADE is stopping... -- 23:07:52.353 DEBUG [3741]: Closing database connection -- 23:07:52.353 SQL [3741]: pgsql_close() -- 23:07:52.414 INFO [3800]: COREGRADE is starting... -- 23:07:52.414 INFO [3829]: COREGRADE is starting... -- 23:07:52.415 INFO [3829]: Version from config: 1.0 -- 23:07:52.415 DEBUG [3829]: Connecting to database... -- 23:07:52.415 INFO [3800]: Version from config: 1.0 -- 23:07:52.415 DEBUG [3800]: Connecting to database... -- 23:07:52.415 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:52.415 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:52.415 SQL [3829]: pgsql_db_connect() -- 23:07:52.415 SQL [3800]: pgsql_db_connect() -- 23:07:52.431 INFO [3741]: COREGRADE is starting... -- 23:07:52.419 DEBUG [3800]: Database connection successful -- 23:07:52.419 INFO [3800]: _SERVER found -- 23:07:52.419 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 23:07:52.419 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:52.419 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:52.419 INFO [3800]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 23:07:52.419 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:52.431 INFO [3800]: COREGRADE is stopping... -- 23:07:52.431 DEBUG [3800]: Closing database connection -- 23:07:52.431 SQL [3800]: pgsql_close() -- 23:07:52.431 INFO [3741]: Version from config: 1.0 -- 23:07:52.431 DEBUG [3741]: Connecting to database... -- 23:07:52.431 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:52.431 SQL [3741]: pgsql_db_connect() -- 23:07:52.419 DEBUG [3829]: Database connection successful -- 23:07:52.419 INFO [3829]: _SERVER found -- 23:07:52.419 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 23:07:52.419 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:52.419 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:52.419 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 23:07:52.419 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:52.431 INFO [3829]: COREGRADE is stopping... -- 23:07:52.431 DEBUG [3829]: Closing database connection -- 23:07:52.431 SQL [3829]: pgsql_close() -- 23:07:52.436 DEBUG [3741]: Database connection successful -- 23:07:52.436 INFO [3741]: _SERVER found -- 23:07:52.436 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 23:07:52.436 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:52.436 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:52.436 INFO [3741]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 23:07:52.436 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:52.447 INFO [3741]: COREGRADE is stopping... -- 23:07:52.447 DEBUG [3741]: Closing database connection -- 23:07:52.447 SQL [3741]: pgsql_close() -- 23:07:52.497 INFO [3829]: COREGRADE is starting... -- 23:07:52.497 INFO [3829]: Version from config: 1.0 -- 23:07:52.497 DEBUG [3829]: Connecting to database... -- 23:07:52.497 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:52.497 SQL [3829]: pgsql_db_connect() -- 23:07:52.512 INFO [3800]: COREGRADE is starting... -- 23:07:52.512 INFO [3800]: Version from config: 1.0 -- 23:07:52.512 DEBUG [3800]: Connecting to database... -- 23:07:52.512 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:52.512 SQL [3800]: pgsql_db_connect() -- 23:07:52.501 DEBUG [3829]: Database connection successful -- 23:07:52.501 INFO [3829]: _SERVER found -- 23:07:52.501 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 23:07:52.501 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:52.501 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:52.501 INFO [3829]: QUERY_STRING = /assets/js/pages/dashboard.js -- 23:07:52.501 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:52.513 INFO [3829]: COREGRADE is stopping... -- 23:07:52.513 DEBUG [3829]: Closing database connection -- 23:07:52.513 SQL [3829]: pgsql_close() -- 23:07:52.514 INFO [3741]: COREGRADE is starting... -- 23:07:52.514 INFO [3741]: Version from config: 1.0 -- 23:07:52.514 DEBUG [3741]: Connecting to database... -- 23:07:52.514 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:52.514 SQL [3741]: pgsql_db_connect() -- 23:07:52.517 DEBUG [3800]: Database connection successful -- 23:07:52.517 INFO [3800]: _SERVER found -- 23:07:52.517 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 23:07:52.517 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:52.517 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:52.517 INFO [3800]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 23:07:52.517 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:52.529 INFO [3800]: COREGRADE is stopping... -- 23:07:52.529 DEBUG [3800]: Closing database connection -- 23:07:52.529 SQL [3800]: pgsql_close() -- 23:07:52.518 DEBUG [3741]: Database connection successful -- 23:07:52.518 INFO [3741]: _SERVER found -- 23:07:52.518 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 23:07:52.518 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:52.518 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:52.518 INFO [3741]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 23:07:52.518 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:52.530 INFO [3741]: COREGRADE is stopping... -- 23:07:52.530 DEBUG [3741]: Closing database connection -- 23:07:52.530 SQL [3741]: pgsql_close() -- 23:07:52.578 INFO [3829]: COREGRADE is starting... -- 23:07:52.578 INFO [3829]: Version from config: 1.0 -- 23:07:52.578 DEBUG [3829]: Connecting to database... -- 23:07:52.578 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:52.578 SQL [3829]: pgsql_db_connect() -- 23:07:52.582 DEBUG [3829]: Database connection successful -- 23:07:52.582 INFO [3829]: _SERVER found -- 23:07:52.582 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 23:07:52.582 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:52.582 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:52.582 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 23:07:52.582 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:52.594 INFO [3829]: COREGRADE is stopping... -- 23:07:52.594 DEBUG [3829]: Closing database connection -- 23:07:52.594 SQL [3829]: pgsql_close() -- 23:07:52.595 INFO [3741]: COREGRADE is starting... -- 23:07:52.596 INFO [3741]: Version from config: 1.0 -- 23:07:52.596 DEBUG [3741]: Connecting to database... -- 23:07:52.596 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:52.596 SQL [3741]: pgsql_db_connect() -- 23:07:52.599 INFO [3800]: COREGRADE is starting... -- 23:07:52.599 INFO [3800]: Version from config: 1.0 -- 23:07:52.599 DEBUG [3800]: Connecting to database... -- 23:07:52.599 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:52.599 SQL [3800]: pgsql_db_connect() -- 23:07:52.599 DEBUG [3741]: Database connection successful -- 23:07:52.599 INFO [3741]: _SERVER found -- 23:07:52.599 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 23:07:52.599 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:52.599 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:52.599 INFO [3741]: QUERY_STRING = /assets/js/pages/picker_date.js -- 23:07:52.599 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:52.611 INFO [3741]: COREGRADE is stopping... -- 23:07:52.611 DEBUG [3741]: Closing database connection -- 23:07:52.611 SQL [3741]: pgsql_close() -- 23:07:52.603 DEBUG [3800]: Database connection successful -- 23:07:52.603 INFO [3800]: _SERVER found -- 23:07:52.603 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 23:07:52.603 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:52.603 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:52.603 INFO [3800]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 23:07:52.603 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:52.615 INFO [3800]: COREGRADE is stopping... -- 23:07:52.615 DEBUG [3800]: Closing database connection -- 23:07:52.615 SQL [3800]: pgsql_close() -- 23:07:52.659 INFO [3829]: COREGRADE is starting... -- 23:07:52.659 INFO [3829]: Version from config: 1.0 -- 23:07:52.659 DEBUG [3829]: Connecting to database... -- 23:07:52.659 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:52.659 SQL [3829]: pgsql_db_connect() -- 23:07:52.663 DEBUG [3829]: Database connection successful -- 23:07:52.663 INFO [3829]: _SERVER found -- 23:07:52.663 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 23:07:52.663 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:52.663 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:52.663 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 23:07:52.663 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:52.675 INFO [3829]: COREGRADE is stopping... -- 23:07:52.675 DEBUG [3829]: Closing database connection -- 23:07:52.675 SQL [3829]: pgsql_close() -- 23:07:52.676 INFO [3741]: COREGRADE is starting... -- 23:07:52.677 INFO [3741]: Version from config: 1.0 -- 23:07:52.677 DEBUG [3741]: Connecting to database... -- 23:07:52.677 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:52.677 SQL [3741]: pgsql_db_connect() -- 23:07:52.683 INFO [3800]: COREGRADE is starting... -- 23:07:52.684 INFO [3800]: Version from config: 1.0 -- 23:07:52.684 DEBUG [3800]: Connecting to database... -- 23:07:52.684 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:52.684 SQL [3800]: pgsql_db_connect() -- 23:07:52.681 DEBUG [3741]: Database connection successful -- 23:07:52.681 INFO [3741]: _SERVER found -- 23:07:52.681 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 23:07:52.681 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:52.681 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:52.681 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 23:07:52.681 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:52.692 INFO [3741]: COREGRADE is stopping... -- 23:07:52.692 DEBUG [3741]: Closing database connection -- 23:07:52.692 SQL [3741]: pgsql_close() -- 23:07:52.688 DEBUG [3800]: Database connection successful -- 23:07:52.688 INFO [3800]: _SERVER found -- 23:07:52.688 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 23:07:52.688 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:52.688 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:52.688 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 23:07:52.688 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:52.699 INFO [3800]: COREGRADE is stopping... -- 23:07:52.699 DEBUG [3800]: Closing database connection -- 23:07:52.700 SQL [3800]: pgsql_close() -- 23:07:52.740 INFO [3829]: COREGRADE is starting... -- 23:07:52.740 INFO [3829]: Version from config: 1.0 -- 23:07:52.740 DEBUG [3829]: Connecting to database... -- 23:07:52.740 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:52.740 SQL [3829]: pgsql_db_connect() -- 23:07:52.744 DEBUG [3829]: Database connection successful -- 23:07:52.744 INFO [3829]: _SERVER found -- 23:07:52.744 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 23:07:52.744 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:52.744 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:52.744 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 23:07:52.744 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:52.756 INFO [3829]: COREGRADE is stopping... -- 23:07:52.756 DEBUG [3829]: Closing database connection -- 23:07:52.756 SQL [3829]: pgsql_close() -- 23:07:52.758 INFO [3741]: COREGRADE is starting... -- 23:07:52.758 INFO [3741]: Version from config: 1.0 -- 23:07:52.758 DEBUG [3741]: Connecting to database... -- 23:07:52.758 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:52.758 SQL [3741]: pgsql_db_connect() -- 23:07:52.768 INFO [3800]: COREGRADE is starting... -- 23:07:52.768 INFO [3800]: Version from config: 1.0 -- 23:07:52.768 DEBUG [3800]: Connecting to database... -- 23:07:52.768 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:52.768 SQL [3800]: pgsql_db_connect() -- 23:07:52.762 DEBUG [3741]: Database connection successful -- 23:07:52.762 INFO [3741]: _SERVER found -- 23:07:52.762 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 23:07:52.762 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:52.762 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:52.762 INFO [3741]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 23:07:52.762 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:52.773 INFO [3741]: COREGRADE is stopping... -- 23:07:52.773 DEBUG [3741]: Closing database connection -- 23:07:52.773 SQL [3741]: pgsql_close() -- 23:07:52.772 DEBUG [3800]: Database connection successful -- 23:07:52.772 INFO [3800]: _SERVER found -- 23:07:52.772 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 23:07:52.772 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:52.772 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:52.772 INFO [3800]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 23:07:52.772 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:52.783 INFO [3800]: COREGRADE is stopping... -- 23:07:52.784 DEBUG [3800]: Closing database connection -- 23:07:52.784 SQL [3800]: pgsql_close() -- 23:07:52.821 INFO [3829]: COREGRADE is starting... -- 23:07:52.821 INFO [3829]: Version from config: 1.0 -- 23:07:52.821 DEBUG [3829]: Connecting to database... -- 23:07:52.821 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:52.821 SQL [3829]: pgsql_db_connect() -- 23:07:52.825 DEBUG [3829]: Database connection successful -- 23:07:52.825 INFO [3829]: _SERVER found -- 23:07:52.825 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 23:07:52.825 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:52.825 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:52.825 INFO [3829]: QUERY_STRING = /assets/customjs/general.js -- 23:07:52.825 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:52.837 INFO [3829]: COREGRADE is stopping... -- 23:07:52.837 DEBUG [3829]: Closing database connection -- 23:07:52.837 SQL [3829]: pgsql_close() -- 23:07:52.839 INFO [3741]: COREGRADE is starting... -- 23:07:52.839 INFO [3741]: Version from config: 1.0 -- 23:07:52.839 DEBUG [3741]: Connecting to database... -- 23:07:52.839 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:52.839 SQL [3741]: pgsql_db_connect() -- 23:07:52.843 DEBUG [3741]: Database connection successful -- 23:07:52.843 INFO [3741]: _SERVER found -- 23:07:52.843 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 23:07:52.843 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:52.843 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:52.843 INFO [3741]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 23:07:52.843 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:52.854 INFO [3741]: COREGRADE is stopping... -- 23:07:52.855 DEBUG [3741]: Closing database connection -- 23:07:52.855 SQL [3741]: pgsql_close() -- 23:07:52.920 INFO [3741]: COREGRADE is starting... -- 23:07:52.920 INFO [3741]: Version from config: 1.0 -- 23:07:52.920 DEBUG [3741]: Connecting to database... -- 23:07:52.921 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:52.921 SQL [3741]: pgsql_db_connect() -- 23:07:52.925 DEBUG [3741]: Database connection successful -- 23:07:52.925 INFO [3741]: _SERVER found -- 23:07:52.925 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 23:07:52.925 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:52.925 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:52.925 INFO [3741]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 23:07:52.925 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:52.936 INFO [3741]: COREGRADE is stopping... -- 23:07:52.936 DEBUG [3741]: Closing database connection -- 23:07:52.936 SQL [3741]: pgsql_close() -- 23:07:53.003 INFO [3741]: COREGRADE is starting... -- 23:07:53.003 INFO [3741]: Version from config: 1.0 -- 23:07:53.003 DEBUG [3741]: Connecting to database... -- 23:07:53.003 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:53.003 SQL [3741]: pgsql_db_connect() -- 23:07:53.007 DEBUG [3741]: Database connection successful -- 23:07:53.007 INFO [3741]: _SERVER found -- 23:07:53.007 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 23:07:53.007 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:53.007 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:53.007 INFO [3741]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 23:07:53.007 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:53.019 INFO [3741]: COREGRADE is stopping... -- 23:07:53.019 DEBUG [3741]: Closing database connection -- 23:07:53.019 SQL [3741]: pgsql_close() -- 23:07:53.085 INFO [3741]: COREGRADE is starting... -- 23:07:53.086 INFO [3741]: Version from config: 1.0 -- 23:07:53.086 DEBUG [3741]: Connecting to database... -- 23:07:53.086 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:53.086 SQL [3741]: pgsql_db_connect() -- 23:07:53.090 DEBUG [3741]: Database connection successful -- 23:07:53.090 INFO [3741]: _SERVER found -- 23:07:53.090 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 23:07:53.090 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:53.090 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:53.090 INFO [3741]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 23:07:53.090 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:53.102 INFO [3741]: COREGRADE is stopping... -- 23:07:53.102 DEBUG [3741]: Closing database connection -- 23:07:53.102 SQL [3741]: pgsql_close() -- 23:07:53.168 INFO [3741]: COREGRADE is starting... -- 23:07:53.168 INFO [3741]: Version from config: 1.0 -- 23:07:53.168 DEBUG [3741]: Connecting to database... -- 23:07:53.168 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:53.168 SQL [3741]: pgsql_db_connect() -- 23:07:53.173 DEBUG [3741]: Database connection successful -- 23:07:53.173 INFO [3741]: _SERVER found -- 23:07:53.173 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 23:07:53.173 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:53.173 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:53.173 INFO [3741]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 23:07:53.173 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:53.184 INFO [3741]: COREGRADE is stopping... -- 23:07:53.184 DEBUG [3741]: Closing database connection -- 23:07:53.184 SQL [3741]: pgsql_close() -- 23:07:53.250 INFO [3741]: COREGRADE is starting... -- 23:07:53.251 INFO [3741]: Version from config: 1.0 -- 23:07:53.251 DEBUG [3741]: Connecting to database... -- 23:07:53.251 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:53.251 SQL [3741]: pgsql_db_connect() -- 23:07:53.255 DEBUG [3741]: Database connection successful -- 23:07:53.255 INFO [3741]: _SERVER found -- 23:07:53.255 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 23:07:53.255 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:53.255 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:53.255 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 23:07:53.255 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:53.266 INFO [3741]: COREGRADE is stopping... -- 23:07:53.266 DEBUG [3741]: Closing database connection -- 23:07:53.266 SQL [3741]: pgsql_close() -- 23:07:53.332 INFO [3741]: COREGRADE is starting... -- 23:07:53.332 INFO [3741]: Version from config: 1.0 -- 23:07:53.332 DEBUG [3741]: Connecting to database... -- 23:07:53.332 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:53.332 SQL [3741]: pgsql_db_connect() -- 23:07:53.336 DEBUG [3741]: Database connection successful -- 23:07:53.336 INFO [3741]: _SERVER found -- 23:07:53.336 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 23:07:53.336 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:53.336 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:53.336 INFO [3741]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 23:07:53.336 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:53.348 INFO [3741]: COREGRADE is stopping... -- 23:07:53.348 DEBUG [3741]: Closing database connection -- 23:07:53.348 SQL [3741]: pgsql_close() -- 23:07:53.414 INFO [3741]: COREGRADE is starting... -- 23:07:53.414 INFO [3741]: Version from config: 1.0 -- 23:07:53.414 DEBUG [3741]: Connecting to database... -- 23:07:53.414 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:53.414 SQL [3741]: pgsql_db_connect() -- 23:07:53.418 DEBUG [3741]: Database connection successful -- 23:07:53.418 INFO [3741]: _SERVER found -- 23:07:53.418 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 23:07:53.418 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:53.418 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:53.418 INFO [3741]: QUERY_STRING = /assets/js/pages/dashboard.js -- 23:07:53.418 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:53.430 INFO [3741]: COREGRADE is stopping... -- 23:07:53.430 DEBUG [3741]: Closing database connection -- 23:07:53.430 SQL [3741]: pgsql_close() -- 23:07:53.497 INFO [3741]: COREGRADE is starting... -- 23:07:53.497 INFO [3741]: Version from config: 1.0 -- 23:07:53.497 DEBUG [3741]: Connecting to database... -- 23:07:53.497 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:53.497 SQL [3741]: pgsql_db_connect() -- 23:07:53.501 DEBUG [3741]: Database connection successful -- 23:07:53.501 INFO [3741]: _SERVER found -- 23:07:53.501 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 23:07:53.501 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:53.501 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:53.501 INFO [3741]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 23:07:53.501 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:53.513 INFO [3741]: COREGRADE is stopping... -- 23:07:53.513 DEBUG [3741]: Closing database connection -- 23:07:53.513 SQL [3741]: pgsql_close() -- 23:07:53.579 INFO [3741]: COREGRADE is starting... -- 23:07:53.579 INFO [3741]: Version from config: 1.0 -- 23:07:53.579 DEBUG [3741]: Connecting to database... -- 23:07:53.580 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:53.580 SQL [3741]: pgsql_db_connect() -- 23:07:53.584 DEBUG [3741]: Database connection successful -- 23:07:53.584 INFO [3741]: _SERVER found -- 23:07:53.584 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 23:07:53.584 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:53.584 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:53.584 INFO [3741]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 23:07:53.584 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:53.595 INFO [3741]: COREGRADE is stopping... -- 23:07:53.595 DEBUG [3741]: Closing database connection -- 23:07:53.595 SQL [3741]: pgsql_close() -- 23:07:53.662 INFO [3741]: COREGRADE is starting... -- 23:07:53.662 INFO [3741]: Version from config: 1.0 -- 23:07:53.662 DEBUG [3741]: Connecting to database... -- 23:07:53.662 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:53.662 SQL [3741]: pgsql_db_connect() -- 23:07:53.666 DEBUG [3741]: Database connection successful -- 23:07:53.666 INFO [3741]: _SERVER found -- 23:07:53.666 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 23:07:53.666 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:53.666 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:53.666 INFO [3741]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 23:07:53.666 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:53.677 INFO [3741]: COREGRADE is stopping... -- 23:07:53.677 DEBUG [3741]: Closing database connection -- 23:07:53.677 SQL [3741]: pgsql_close() -- 23:07:53.744 INFO [3741]: COREGRADE is starting... -- 23:07:53.744 INFO [3741]: Version from config: 1.0 -- 23:07:53.744 DEBUG [3741]: Connecting to database... -- 23:07:53.744 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:53.744 SQL [3741]: pgsql_db_connect() -- 23:07:53.748 DEBUG [3741]: Database connection successful -- 23:07:53.748 INFO [3741]: _SERVER found -- 23:07:53.748 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 23:07:53.748 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:53.748 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:53.748 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 23:07:53.748 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:53.760 INFO [3741]: COREGRADE is stopping... -- 23:07:53.760 DEBUG [3741]: Closing database connection -- 23:07:53.760 SQL [3741]: pgsql_close() -- 23:07:53.826 INFO [3741]: COREGRADE is starting... -- 23:07:53.826 INFO [3741]: Version from config: 1.0 -- 23:07:53.826 DEBUG [3741]: Connecting to database... -- 23:07:53.826 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:53.826 SQL [3741]: pgsql_db_connect() -- 23:07:53.830 DEBUG [3741]: Database connection successful -- 23:07:53.830 INFO [3741]: _SERVER found -- 23:07:53.830 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 23:07:53.830 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:53.830 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:53.830 INFO [3741]: QUERY_STRING = /assets/js/pages/picker_date.js -- 23:07:53.830 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:53.842 INFO [3741]: COREGRADE is stopping... -- 23:07:53.842 DEBUG [3741]: Closing database connection -- 23:07:53.842 SQL [3741]: pgsql_close() -- 23:07:53.908 INFO [3741]: COREGRADE is starting... -- 23:07:53.908 INFO [3741]: Version from config: 1.0 -- 23:07:53.908 DEBUG [3741]: Connecting to database... -- 23:07:53.908 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:53.908 SQL [3741]: pgsql_db_connect() -- 23:07:53.912 DEBUG [3741]: Database connection successful -- 23:07:53.912 INFO [3741]: _SERVER found -- 23:07:53.912 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 23:07:53.912 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:53.912 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:53.912 INFO [3741]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 23:07:53.912 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:53.924 INFO [3741]: COREGRADE is stopping... -- 23:07:53.924 DEBUG [3741]: Closing database connection -- 23:07:53.924 SQL [3741]: pgsql_close() -- 23:07:53.990 INFO [3741]: COREGRADE is starting... -- 23:07:53.990 INFO [3741]: Version from config: 1.0 -- 23:07:53.990 DEBUG [3741]: Connecting to database... -- 23:07:53.990 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:53.990 SQL [3741]: pgsql_db_connect() -- 23:07:53.994 DEBUG [3741]: Database connection successful -- 23:07:53.994 INFO [3741]: _SERVER found -- 23:07:53.994 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 23:07:53.994 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:53.994 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:53.994 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 23:07:53.994 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:54.006 INFO [3741]: COREGRADE is stopping... -- 23:07:54.006 DEBUG [3741]: Closing database connection -- 23:07:54.006 SQL [3741]: pgsql_close() -- 23:07:54.072 INFO [3741]: COREGRADE is starting... -- 23:07:54.072 INFO [3741]: Version from config: 1.0 -- 23:07:54.072 DEBUG [3741]: Connecting to database... -- 23:07:54.072 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:54.072 SQL [3741]: pgsql_db_connect() -- 23:07:54.076 DEBUG [3741]: Database connection successful -- 23:07:54.076 INFO [3741]: _SERVER found -- 23:07:54.076 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 23:07:54.076 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:54.076 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:54.076 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 23:07:54.076 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:54.088 INFO [3741]: COREGRADE is stopping... -- 23:07:54.088 DEBUG [3741]: Closing database connection -- 23:07:54.088 SQL [3741]: pgsql_close() -- 23:07:54.154 INFO [3741]: COREGRADE is starting... -- 23:07:54.154 INFO [3741]: Version from config: 1.0 -- 23:07:54.154 DEBUG [3741]: Connecting to database... -- 23:07:54.154 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:54.154 SQL [3741]: pgsql_db_connect() -- 23:07:54.158 DEBUG [3741]: Database connection successful -- 23:07:54.158 INFO [3741]: _SERVER found -- 23:07:54.158 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 23:07:54.158 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:54.158 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:54.158 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 23:07:54.158 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:54.170 INFO [3741]: COREGRADE is stopping... -- 23:07:54.170 DEBUG [3741]: Closing database connection -- 23:07:54.170 SQL [3741]: pgsql_close() -- 23:07:54.236 INFO [3741]: COREGRADE is starting... -- 23:07:54.236 INFO [3741]: Version from config: 1.0 -- 23:07:54.236 DEBUG [3741]: Connecting to database... -- 23:07:54.236 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:54.236 SQL [3741]: pgsql_db_connect() -- 23:07:54.240 DEBUG [3741]: Database connection successful -- 23:07:54.240 INFO [3741]: _SERVER found -- 23:07:54.240 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 23:07:54.240 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:54.240 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:54.240 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 23:07:54.240 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:54.252 INFO [3741]: COREGRADE is stopping... -- 23:07:54.252 DEBUG [3741]: Closing database connection -- 23:07:54.252 SQL [3741]: pgsql_close() -- 23:07:54.328 INFO [3741]: COREGRADE is starting... -- 23:07:54.328 INFO [3741]: Version from config: 1.0 -- 23:07:54.328 DEBUG [3741]: Connecting to database... -- 23:07:54.329 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:54.329 SQL [3741]: pgsql_db_connect() -- 23:07:54.332 DEBUG [3741]: Database connection successful -- 23:07:54.332 INFO [3741]: _SERVER found -- 23:07:54.332 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 23:07:54.333 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:54.333 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:54.333 INFO [3741]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 23:07:54.333 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:54.344 INFO [3741]: COREGRADE is stopping... -- 23:07:54.344 DEBUG [3741]: Closing database connection -- 23:07:54.344 SQL [3741]: pgsql_close() -- 23:07:54.410 INFO [3741]: COREGRADE is starting... -- 23:07:54.411 INFO [3741]: Version from config: 1.0 -- 23:07:54.411 DEBUG [3741]: Connecting to database... -- 23:07:54.411 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:54.411 SQL [3741]: pgsql_db_connect() -- 23:07:54.415 DEBUG [3741]: Database connection successful -- 23:07:54.415 INFO [3741]: _SERVER found -- 23:07:54.415 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 23:07:54.415 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:54.415 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:54.415 INFO [3741]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 23:07:54.415 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:54.426 INFO [3741]: COREGRADE is stopping... -- 23:07:54.426 DEBUG [3741]: Closing database connection -- 23:07:54.426 SQL [3741]: pgsql_close() -- 23:07:54.494 INFO [3741]: COREGRADE is starting... -- 23:07:54.495 INFO [3741]: Version from config: 1.0 -- 23:07:54.495 DEBUG [3741]: Connecting to database... -- 23:07:54.495 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:07:54.495 SQL [3741]: pgsql_db_connect() -- 23:07:54.499 DEBUG [3741]: Database connection successful -- 23:07:54.499 INFO [3741]: _SERVER found -- 23:07:54.499 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 23:07:54.499 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:07:54.499 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:07:54.499 INFO [3741]: QUERY_STRING = /assets/customjs/general.js -- 23:07:54.499 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:07:54.510 INFO [3741]: COREGRADE is stopping... -- 23:07:54.510 DEBUG [3741]: Closing database connection -- 23:07:54.510 SQL [3741]: pgsql_close() -- 23:27:54.726 INFO [3739]: COREGRADE is starting... -- 23:27:54.726 INFO [3739]: Version from config: 1.0 -- 23:27:54.726 DEBUG [3739]: Connecting to database... -- 23:27:54.726 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:54.726 SQL [3739]: pgsql_db_connect() -- 23:27:54.731 DEBUG [3739]: Database connection successful -- 23:27:54.731 INFO [3739]: _SERVER found -- 23:27:54.731 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 23:27:54.731 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:54.731 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=33akutg0up3c9l92s450uu7jgdrnq9an -- 23:27:54.731 INFO [3739]: QUERY_STRING = /logout -- 23:27:54.731 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:54.764 INFO [3739]: COREGRADE is stopping... -- 23:27:54.764 DEBUG [3739]: Closing database connection -- 23:27:54.764 SQL [3739]: pgsql_close() -- 23:27:54.842 INFO [3739]: COREGRADE is starting... -- 23:27:54.842 INFO [3739]: Version from config: 1.0 -- 23:27:54.842 DEBUG [3739]: Connecting to database... -- 23:27:54.842 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:54.842 SQL [3739]: pgsql_db_connect() -- 23:27:54.846 DEBUG [3739]: Database connection successful -- 23:27:54.846 INFO [3739]: _SERVER found -- 23:27:54.846 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 23:27:54.846 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:54.846 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:54.846 INFO [3739]: QUERY_STRING = /start -- 23:27:54.846 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:54.881 INFO [3739]: COREGRADE is stopping... -- 23:27:54.881 DEBUG [3739]: Closing database connection -- 23:27:54.881 SQL [3739]: pgsql_close() -- 23:27:55.010 INFO [3740]: COREGRADE is starting... -- 23:27:55.010 INFO [3740]: Version from config: 1.0 -- 23:27:55.010 DEBUG [3740]: Connecting to database... -- 23:27:55.010 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:55.010 SQL [3740]: pgsql_db_connect() -- 23:27:55.014 DEBUG [3740]: Database connection successful -- 23:27:55.014 INFO [3740]: _SERVER found -- 23:27:55.014 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 23:27:55.014 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:55.014 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:55.014 INFO [3740]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 23:27:55.014 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:55.026 INFO [3740]: COREGRADE is stopping... -- 23:27:55.026 DEBUG [3740]: Closing database connection -- 23:27:55.026 SQL [3740]: pgsql_close() -- 23:27:55.028 INFO [3739]: COREGRADE is starting... -- 23:27:55.029 INFO [3739]: Version from config: 1.0 -- 23:27:55.029 DEBUG [3739]: Connecting to database... -- 23:27:55.029 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:55.029 SQL [3739]: pgsql_db_connect() -- 23:27:55.032 DEBUG [3739]: Database connection successful -- 23:27:55.032 INFO [3739]: _SERVER found -- 23:27:55.032 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 23:27:55.032 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:55.032 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:55.032 INFO [3739]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 23:27:55.032 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:55.044 INFO [3739]: COREGRADE is stopping... -- 23:27:55.044 DEBUG [3739]: Closing database connection -- 23:27:55.044 SQL [3739]: pgsql_close() -- 23:27:55.073 INFO [3739]: COREGRADE is starting... -- 23:27:55.073 INFO [3739]: Version from config: 1.0 -- 23:27:55.073 DEBUG [3739]: Connecting to database... -- 23:27:55.073 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:55.073 SQL [3739]: pgsql_db_connect() -- 23:27:55.077 DEBUG [3739]: Database connection successful -- 23:27:55.077 INFO [3739]: _SERVER found -- 23:27:55.077 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 23:27:55.077 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:55.077 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:55.077 INFO [3739]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 23:27:55.077 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:55.089 INFO [3739]: COREGRADE is stopping... -- 23:27:55.089 DEBUG [3739]: Closing database connection -- 23:27:55.089 SQL [3739]: pgsql_close() -- 23:27:55.105 INFO [3740]: COREGRADE is starting... -- 23:27:55.105 INFO [3740]: Version from config: 1.0 -- 23:27:55.105 DEBUG [3740]: Connecting to database... -- 23:27:55.106 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:55.106 SQL [3740]: pgsql_db_connect() -- 23:27:55.109 INFO [3739]: COREGRADE is starting... -- 23:27:55.109 INFO [3739]: Version from config: 1.0 -- 23:27:55.109 DEBUG [3739]: Connecting to database... -- 23:27:55.109 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:55.109 SQL [3739]: pgsql_db_connect() -- 23:27:55.109 DEBUG [3740]: Database connection successful -- 23:27:55.109 INFO [3740]: _SERVER found -- 23:27:55.109 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 23:27:55.109 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:55.109 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:55.109 INFO [3740]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 23:27:55.109 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:55.121 INFO [3740]: COREGRADE is stopping... -- 23:27:55.121 DEBUG [3740]: Closing database connection -- 23:27:55.121 SQL [3740]: pgsql_close() -- 23:27:55.113 DEBUG [3739]: Database connection successful -- 23:27:55.113 INFO [3739]: _SERVER found -- 23:27:55.113 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 23:27:55.113 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:55.113 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:55.113 INFO [3739]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 23:27:55.113 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:55.125 INFO [3739]: COREGRADE is stopping... -- 23:27:55.125 DEBUG [3739]: Closing database connection -- 23:27:55.125 SQL [3739]: pgsql_close() -- 23:27:55.166 INFO [3739]: COREGRADE is starting... -- 23:27:55.166 INFO [3739]: Version from config: 1.0 -- 23:27:55.166 DEBUG [3739]: Connecting to database... -- 23:27:55.166 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:55.166 SQL [3739]: pgsql_db_connect() -- 23:27:55.170 DEBUG [3739]: Database connection successful -- 23:27:55.170 INFO [3739]: _SERVER found -- 23:27:55.170 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 23:27:55.170 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:55.170 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:55.170 INFO [3739]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 23:27:55.170 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:55.182 INFO [3739]: COREGRADE is stopping... -- 23:27:55.182 DEBUG [3739]: Closing database connection -- 23:27:55.182 SQL [3739]: pgsql_close() -- 23:27:55.191 INFO [3739]: COREGRADE is starting... -- 23:27:55.191 INFO [3739]: Version from config: 1.0 -- 23:27:55.191 DEBUG [3739]: Connecting to database... -- 23:27:55.191 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:55.191 SQL [3739]: pgsql_db_connect() -- 23:27:55.200 INFO [3740]: COREGRADE is starting... -- 23:27:55.201 INFO [3740]: Version from config: 1.0 -- 23:27:55.201 DEBUG [3740]: Connecting to database... -- 23:27:55.201 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:55.201 SQL [3740]: pgsql_db_connect() -- 23:27:55.195 DEBUG [3739]: Database connection successful -- 23:27:55.195 INFO [3739]: _SERVER found -- 23:27:55.195 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 23:27:55.195 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:55.195 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:55.195 INFO [3739]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 23:27:55.195 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:55.207 INFO [3739]: COREGRADE is stopping... -- 23:27:55.207 DEBUG [3739]: Closing database connection -- 23:27:55.207 SQL [3739]: pgsql_close() -- 23:27:55.205 DEBUG [3740]: Database connection successful -- 23:27:55.205 INFO [3740]: _SERVER found -- 23:27:55.205 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 23:27:55.205 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:55.205 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:55.205 INFO [3740]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 23:27:55.205 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:55.216 INFO [3740]: COREGRADE is stopping... -- 23:27:55.216 DEBUG [3740]: Closing database connection -- 23:27:55.216 SQL [3740]: pgsql_close() -- 23:27:55.258 INFO [3739]: COREGRADE is starting... -- 23:27:55.259 INFO [3739]: Version from config: 1.0 -- 23:27:55.259 DEBUG [3739]: Connecting to database... -- 23:27:55.259 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:55.259 SQL [3739]: pgsql_db_connect() -- 23:27:55.273 INFO [3742]: COREGRADE is starting... -- 23:27:55.273 INFO [3742]: Version from config: 1.0 -- 23:27:55.273 DEBUG [3742]: Connecting to database... -- 23:27:55.273 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:55.273 SQL [3742]: pgsql_db_connect() -- 23:27:55.263 DEBUG [3739]: Database connection successful -- 23:27:55.263 INFO [3739]: _SERVER found -- 23:27:55.263 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 23:27:55.263 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:55.263 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:55.263 INFO [3739]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 23:27:55.263 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:55.274 INFO [3739]: COREGRADE is stopping... -- 23:27:55.274 DEBUG [3739]: Closing database connection -- 23:27:55.274 SQL [3739]: pgsql_close() -- 23:27:55.277 DEBUG [3742]: Database connection successful -- 23:27:55.277 INFO [3742]: _SERVER found -- 23:27:55.277 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 23:27:55.277 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:55.277 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:55.277 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 23:27:55.277 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:55.290 INFO [3742]: COREGRADE is stopping... -- 23:27:55.290 DEBUG [3742]: Closing database connection -- 23:27:55.290 SQL [3742]: pgsql_close() -- 23:27:55.295 INFO [3740]: COREGRADE is starting... -- 23:27:55.295 INFO [3740]: Version from config: 1.0 -- 23:27:55.295 DEBUG [3740]: Connecting to database... -- 23:27:55.295 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:55.295 SQL [3740]: pgsql_db_connect() -- 23:27:55.299 DEBUG [3740]: Database connection successful -- 23:27:55.299 INFO [3740]: _SERVER found -- 23:27:55.299 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 23:27:55.299 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:55.299 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:55.299 INFO [3740]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 23:27:55.299 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:55.310 INFO [3740]: COREGRADE is stopping... -- 23:27:55.310 DEBUG [3740]: Closing database connection -- 23:27:55.310 SQL [3740]: pgsql_close() -- 23:27:55.353 INFO [3742]: COREGRADE is starting... -- 23:27:55.353 INFO [3742]: Version from config: 1.0 -- 23:27:55.353 DEBUG [3742]: Connecting to database... -- 23:27:55.353 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:55.353 SQL [3742]: pgsql_db_connect() -- 23:27:55.357 INFO [3739]: COREGRADE is starting... -- 23:27:55.357 INFO [3739]: Version from config: 1.0 -- 23:27:55.357 DEBUG [3739]: Connecting to database... -- 23:27:55.357 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:55.357 SQL [3739]: pgsql_db_connect() -- 23:27:55.357 DEBUG [3742]: Database connection successful -- 23:27:55.357 INFO [3742]: _SERVER found -- 23:27:55.357 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 23:27:55.357 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:55.357 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:55.357 INFO [3742]: QUERY_STRING = /assets/js/pages/dashboard.js -- 23:27:55.357 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:55.370 INFO [3742]: COREGRADE is stopping... -- 23:27:55.370 DEBUG [3742]: Closing database connection -- 23:27:55.370 SQL [3742]: pgsql_close() -- 23:27:55.361 DEBUG [3739]: Database connection successful -- 23:27:55.361 INFO [3739]: _SERVER found -- 23:27:55.361 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 23:27:55.361 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:55.361 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:55.361 INFO [3739]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 23:27:55.361 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:55.373 INFO [3739]: COREGRADE is stopping... -- 23:27:55.373 DEBUG [3739]: Closing database connection -- 23:27:55.373 SQL [3739]: pgsql_close() -- 23:27:55.379 INFO [3740]: COREGRADE is starting... -- 23:27:55.379 INFO [3740]: Version from config: 1.0 -- 23:27:55.379 DEBUG [3740]: Connecting to database... -- 23:27:55.379 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:55.379 SQL [3740]: pgsql_db_connect() -- 23:27:55.384 DEBUG [3740]: Database connection successful -- 23:27:55.384 INFO [3740]: _SERVER found -- 23:27:55.384 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 23:27:55.384 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:55.384 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:55.384 INFO [3740]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 23:27:55.384 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:55.395 INFO [3740]: COREGRADE is stopping... -- 23:27:55.395 DEBUG [3740]: Closing database connection -- 23:27:55.395 SQL [3740]: pgsql_close() -- 23:27:55.437 INFO [3739]: COREGRADE is starting... -- 23:27:55.438 INFO [3739]: Version from config: 1.0 -- 23:27:55.438 DEBUG [3739]: Connecting to database... -- 23:27:55.438 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:55.438 SQL [3739]: pgsql_db_connect() -- 23:27:55.438 INFO [3742]: COREGRADE is starting... -- 23:27:55.438 INFO [3742]: Version from config: 1.0 -- 23:27:55.438 DEBUG [3742]: Connecting to database... -- 23:27:55.438 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:55.438 SQL [3742]: pgsql_db_connect() -- 23:27:55.442 DEBUG [3739]: Database connection successful -- 23:27:55.442 INFO [3739]: _SERVER found -- 23:27:55.442 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 23:27:55.442 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:55.442 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:55.442 INFO [3739]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 23:27:55.442 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:55.453 INFO [3739]: COREGRADE is stopping... -- 23:27:55.453 DEBUG [3739]: Closing database connection -- 23:27:55.453 SQL [3739]: pgsql_close() -- 23:27:55.442 DEBUG [3742]: Database connection successful -- 23:27:55.442 INFO [3742]: _SERVER found -- 23:27:55.442 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 23:27:55.442 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:55.442 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:55.442 INFO [3742]: QUERY_STRING = /assets/js/pages/picker_date.js -- 23:27:55.442 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:55.454 INFO [3742]: COREGRADE is stopping... -- 23:27:55.454 DEBUG [3742]: Closing database connection -- 23:27:55.454 SQL [3742]: pgsql_close() -- 23:27:55.463 INFO [3740]: COREGRADE is starting... -- 23:27:55.463 INFO [3740]: Version from config: 1.0 -- 23:27:55.463 DEBUG [3740]: Connecting to database... -- 23:27:55.464 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:55.464 SQL [3740]: pgsql_db_connect() -- 23:27:55.467 DEBUG [3740]: Database connection successful -- 23:27:55.467 INFO [3740]: _SERVER found -- 23:27:55.467 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 23:27:55.467 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:55.467 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:55.467 INFO [3740]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 23:27:55.467 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:55.479 INFO [3740]: COREGRADE is stopping... -- 23:27:55.479 DEBUG [3740]: Closing database connection -- 23:27:55.479 SQL [3740]: pgsql_close() -- 23:27:55.520 INFO [3742]: COREGRADE is starting... -- 23:27:55.520 INFO [3742]: Version from config: 1.0 -- 23:27:55.520 DEBUG [3742]: Connecting to database... -- 23:27:55.520 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:55.520 SQL [3742]: pgsql_db_connect() -- 23:27:55.521 INFO [3739]: COREGRADE is starting... -- 23:27:55.521 INFO [3739]: Version from config: 1.0 -- 23:27:55.521 DEBUG [3739]: Connecting to database... -- 23:27:55.521 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:55.521 SQL [3739]: pgsql_db_connect() -- 23:27:55.524 DEBUG [3742]: Database connection successful -- 23:27:55.524 INFO [3742]: _SERVER found -- 23:27:55.524 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 23:27:55.524 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:55.524 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:55.524 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 23:27:55.524 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:55.536 INFO [3742]: COREGRADE is stopping... -- 23:27:55.536 DEBUG [3742]: Closing database connection -- 23:27:55.536 SQL [3742]: pgsql_close() -- 23:27:55.525 DEBUG [3739]: Database connection successful -- 23:27:55.525 INFO [3739]: _SERVER found -- 23:27:55.525 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 23:27:55.525 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:55.525 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:55.525 INFO [3739]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 23:27:55.525 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:55.536 INFO [3739]: COREGRADE is stopping... -- 23:27:55.536 DEBUG [3739]: Closing database connection -- 23:27:55.536 SQL [3739]: pgsql_close() -- 23:27:55.547 INFO [3740]: COREGRADE is starting... -- 23:27:55.547 INFO [3740]: Version from config: 1.0 -- 23:27:55.547 DEBUG [3740]: Connecting to database... -- 23:27:55.547 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:55.547 SQL [3740]: pgsql_db_connect() -- 23:27:55.551 DEBUG [3740]: Database connection successful -- 23:27:55.551 INFO [3740]: _SERVER found -- 23:27:55.551 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 23:27:55.551 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:55.551 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:55.551 INFO [3740]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 23:27:55.551 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:55.563 INFO [3740]: COREGRADE is stopping... -- 23:27:55.563 DEBUG [3740]: Closing database connection -- 23:27:55.563 SQL [3740]: pgsql_close() -- 23:27:55.603 INFO [3742]: COREGRADE is starting... -- 23:27:55.603 INFO [3739]: COREGRADE is starting... -- 23:27:55.603 INFO [3739]: Version from config: 1.0 -- 23:27:55.603 DEBUG [3739]: Connecting to database... -- 23:27:55.603 INFO [3742]: Version from config: 1.0 -- 23:27:55.603 DEBUG [3742]: Connecting to database... -- 23:27:55.603 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:55.603 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:55.603 SQL [3739]: pgsql_db_connect() -- 23:27:55.603 SQL [3742]: pgsql_db_connect() -- 23:27:55.607 DEBUG [3739]: Database connection successful -- 23:27:55.607 INFO [3739]: _SERVER found -- 23:27:55.607 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 23:27:55.607 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:55.607 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:55.607 INFO [3739]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 23:27:55.607 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:55.619 INFO [3739]: COREGRADE is stopping... -- 23:27:55.619 DEBUG [3739]: Closing database connection -- 23:27:55.619 SQL [3739]: pgsql_close() -- 23:27:55.607 DEBUG [3742]: Database connection successful -- 23:27:55.607 INFO [3742]: _SERVER found -- 23:27:55.607 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 23:27:55.607 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:55.607 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:55.607 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 23:27:55.607 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:55.619 INFO [3742]: COREGRADE is stopping... -- 23:27:55.619 DEBUG [3742]: Closing database connection -- 23:27:55.619 SQL [3742]: pgsql_close() -- 23:27:55.630 INFO [3740]: COREGRADE is starting... -- 23:27:55.631 INFO [3740]: Version from config: 1.0 -- 23:27:55.631 DEBUG [3740]: Connecting to database... -- 23:27:55.631 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:55.631 SQL [3740]: pgsql_db_connect() -- 23:27:55.635 DEBUG [3740]: Database connection successful -- 23:27:55.635 INFO [3740]: _SERVER found -- 23:27:55.635 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 23:27:55.635 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:55.635 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:55.635 INFO [3740]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 23:27:55.635 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:55.646 INFO [3740]: COREGRADE is stopping... -- 23:27:55.646 DEBUG [3740]: Closing database connection -- 23:27:55.646 SQL [3740]: pgsql_close() -- 23:27:55.685 INFO [3742]: COREGRADE is starting... -- 23:27:55.685 INFO [3739]: COREGRADE is starting... -- 23:27:55.685 INFO [3742]: Version from config: 1.0 -- 23:27:55.685 DEBUG [3742]: Connecting to database... -- 23:27:55.685 INFO [3739]: Version from config: 1.0 -- 23:27:55.685 DEBUG [3739]: Connecting to database... -- 23:27:55.685 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:55.685 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:55.685 SQL [3742]: pgsql_db_connect() -- 23:27:55.685 SQL [3739]: pgsql_db_connect() -- 23:27:55.689 DEBUG [3739]: Database connection successful -- 23:27:55.689 INFO [3739]: _SERVER found -- 23:27:55.689 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 23:27:55.689 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:55.689 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:55.689 INFO [3739]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 23:27:55.689 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:55.701 INFO [3739]: COREGRADE is stopping... -- 23:27:55.701 DEBUG [3739]: Closing database connection -- 23:27:55.701 SQL [3739]: pgsql_close() -- 23:27:55.689 DEBUG [3742]: Database connection successful -- 23:27:55.689 INFO [3742]: _SERVER found -- 23:27:55.689 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 23:27:55.689 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:55.689 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:55.689 INFO [3742]: QUERY_STRING = /assets/customjs/general.js -- 23:27:55.689 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:55.701 INFO [3742]: COREGRADE is stopping... -- 23:27:55.701 DEBUG [3742]: Closing database connection -- 23:27:55.701 SQL [3742]: pgsql_close() -- 23:27:55.767 INFO [3742]: COREGRADE is starting... -- 23:27:55.768 INFO [3742]: Version from config: 1.0 -- 23:27:55.768 DEBUG [3742]: Connecting to database... -- 23:27:55.768 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:55.768 SQL [3742]: pgsql_db_connect() -- 23:27:55.772 DEBUG [3742]: Database connection successful -- 23:27:55.772 INFO [3742]: _SERVER found -- 23:27:55.772 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 23:27:55.772 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:55.772 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:55.772 INFO [3742]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 23:27:55.772 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:55.784 INFO [3742]: COREGRADE is stopping... -- 23:27:55.784 DEBUG [3742]: Closing database connection -- 23:27:55.784 SQL [3742]: pgsql_close() -- 23:27:55.850 INFO [3742]: COREGRADE is starting... -- 23:27:55.850 INFO [3742]: Version from config: 1.0 -- 23:27:55.850 DEBUG [3742]: Connecting to database... -- 23:27:55.850 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:55.850 SQL [3742]: pgsql_db_connect() -- 23:27:55.854 DEBUG [3742]: Database connection successful -- 23:27:55.854 INFO [3742]: _SERVER found -- 23:27:55.854 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 23:27:55.854 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:55.854 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:55.854 INFO [3742]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 23:27:55.854 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:55.866 INFO [3742]: COREGRADE is stopping... -- 23:27:55.866 DEBUG [3742]: Closing database connection -- 23:27:55.866 SQL [3742]: pgsql_close() -- 23:27:55.932 INFO [3742]: COREGRADE is starting... -- 23:27:55.933 INFO [3742]: Version from config: 1.0 -- 23:27:55.933 DEBUG [3742]: Connecting to database... -- 23:27:55.933 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:55.933 SQL [3742]: pgsql_db_connect() -- 23:27:55.937 DEBUG [3742]: Database connection successful -- 23:27:55.937 INFO [3742]: _SERVER found -- 23:27:55.937 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 23:27:55.937 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:55.937 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:55.937 INFO [3742]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 23:27:55.937 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:55.949 INFO [3742]: COREGRADE is stopping... -- 23:27:55.949 DEBUG [3742]: Closing database connection -- 23:27:55.949 SQL [3742]: pgsql_close() -- 23:27:56.015 INFO [3742]: COREGRADE is starting... -- 23:27:56.015 INFO [3742]: Version from config: 1.0 -- 23:27:56.015 DEBUG [3742]: Connecting to database... -- 23:27:56.015 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:56.015 SQL [3742]: pgsql_db_connect() -- 23:27:56.019 DEBUG [3742]: Database connection successful -- 23:27:56.019 INFO [3742]: _SERVER found -- 23:27:56.019 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 23:27:56.019 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:56.019 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:56.019 INFO [3742]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 23:27:56.019 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:56.031 INFO [3742]: COREGRADE is stopping... -- 23:27:56.031 DEBUG [3742]: Closing database connection -- 23:27:56.031 SQL [3742]: pgsql_close() -- 23:27:56.098 INFO [3742]: COREGRADE is starting... -- 23:27:56.098 INFO [3742]: Version from config: 1.0 -- 23:27:56.098 DEBUG [3742]: Connecting to database... -- 23:27:56.098 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:56.098 SQL [3742]: pgsql_db_connect() -- 23:27:56.102 DEBUG [3742]: Database connection successful -- 23:27:56.102 INFO [3742]: _SERVER found -- 23:27:56.102 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 23:27:56.102 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:56.102 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:56.102 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 23:27:56.102 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:56.114 INFO [3742]: COREGRADE is stopping... -- 23:27:56.114 DEBUG [3742]: Closing database connection -- 23:27:56.114 SQL [3742]: pgsql_close() -- 23:27:56.181 INFO [3742]: COREGRADE is starting... -- 23:27:56.181 INFO [3742]: Version from config: 1.0 -- 23:27:56.181 DEBUG [3742]: Connecting to database... -- 23:27:56.181 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:56.181 SQL [3742]: pgsql_db_connect() -- 23:27:56.185 DEBUG [3742]: Database connection successful -- 23:27:56.185 INFO [3742]: _SERVER found -- 23:27:56.185 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 23:27:56.185 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:56.185 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:56.185 INFO [3742]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 23:27:56.185 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:56.197 INFO [3742]: COREGRADE is stopping... -- 23:27:56.197 DEBUG [3742]: Closing database connection -- 23:27:56.197 SQL [3742]: pgsql_close() -- 23:27:56.264 INFO [3742]: COREGRADE is starting... -- 23:27:56.264 INFO [3742]: Version from config: 1.0 -- 23:27:56.264 DEBUG [3742]: Connecting to database... -- 23:27:56.264 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:56.264 SQL [3742]: pgsql_db_connect() -- 23:27:56.268 DEBUG [3742]: Database connection successful -- 23:27:56.268 INFO [3742]: _SERVER found -- 23:27:56.268 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 23:27:56.268 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:56.268 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:56.268 INFO [3742]: QUERY_STRING = /assets/js/pages/dashboard.js -- 23:27:56.268 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:56.280 INFO [3742]: COREGRADE is stopping... -- 23:27:56.280 DEBUG [3742]: Closing database connection -- 23:27:56.280 SQL [3742]: pgsql_close() -- 23:27:56.347 INFO [3742]: COREGRADE is starting... -- 23:27:56.348 INFO [3742]: Version from config: 1.0 -- 23:27:56.348 DEBUG [3742]: Connecting to database... -- 23:27:56.348 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:56.348 SQL [3742]: pgsql_db_connect() -- 23:27:56.352 DEBUG [3742]: Database connection successful -- 23:27:56.352 INFO [3742]: _SERVER found -- 23:27:56.352 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 23:27:56.352 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:56.352 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:56.352 INFO [3742]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 23:27:56.352 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:56.364 INFO [3742]: COREGRADE is stopping... -- 23:27:56.364 DEBUG [3742]: Closing database connection -- 23:27:56.364 SQL [3742]: pgsql_close() -- 23:27:56.430 INFO [3742]: COREGRADE is starting... -- 23:27:56.430 INFO [3742]: Version from config: 1.0 -- 23:27:56.430 DEBUG [3742]: Connecting to database... -- 23:27:56.430 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:56.431 SQL [3742]: pgsql_db_connect() -- 23:27:56.435 DEBUG [3742]: Database connection successful -- 23:27:56.435 INFO [3742]: _SERVER found -- 23:27:56.435 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 23:27:56.435 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:56.435 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:56.435 INFO [3742]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 23:27:56.435 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:56.447 INFO [3742]: COREGRADE is stopping... -- 23:27:56.447 DEBUG [3742]: Closing database connection -- 23:27:56.447 SQL [3742]: pgsql_close() -- 23:27:56.513 INFO [3742]: COREGRADE is starting... -- 23:27:56.513 INFO [3742]: Version from config: 1.0 -- 23:27:56.513 DEBUG [3742]: Connecting to database... -- 23:27:56.513 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:56.513 SQL [3742]: pgsql_db_connect() -- 23:27:56.517 DEBUG [3742]: Database connection successful -- 23:27:56.517 INFO [3742]: _SERVER found -- 23:27:56.517 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 23:27:56.517 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:56.517 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:56.517 INFO [3742]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 23:27:56.517 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:56.529 INFO [3742]: COREGRADE is stopping... -- 23:27:56.529 DEBUG [3742]: Closing database connection -- 23:27:56.529 SQL [3742]: pgsql_close() -- 23:27:56.596 INFO [3742]: COREGRADE is starting... -- 23:27:56.596 INFO [3742]: Version from config: 1.0 -- 23:27:56.596 DEBUG [3742]: Connecting to database... -- 23:27:56.596 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:56.596 SQL [3742]: pgsql_db_connect() -- 23:27:56.600 DEBUG [3742]: Database connection successful -- 23:27:56.600 INFO [3742]: _SERVER found -- 23:27:56.600 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 23:27:56.600 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:56.600 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:56.600 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 23:27:56.600 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:56.612 INFO [3742]: COREGRADE is stopping... -- 23:27:56.612 DEBUG [3742]: Closing database connection -- 23:27:56.612 SQL [3742]: pgsql_close() -- 23:27:56.679 INFO [3742]: COREGRADE is starting... -- 23:27:56.679 INFO [3742]: Version from config: 1.0 -- 23:27:56.679 DEBUG [3742]: Connecting to database... -- 23:27:56.679 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:56.679 SQL [3742]: pgsql_db_connect() -- 23:27:56.683 DEBUG [3742]: Database connection successful -- 23:27:56.683 INFO [3742]: _SERVER found -- 23:27:56.683 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 23:27:56.683 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:56.683 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:56.683 INFO [3742]: QUERY_STRING = /assets/js/pages/picker_date.js -- 23:27:56.683 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:56.695 INFO [3742]: COREGRADE is stopping... -- 23:27:56.695 DEBUG [3742]: Closing database connection -- 23:27:56.695 SQL [3742]: pgsql_close() -- 23:27:56.761 INFO [3742]: COREGRADE is starting... -- 23:27:56.761 INFO [3742]: Version from config: 1.0 -- 23:27:56.761 DEBUG [3742]: Connecting to database... -- 23:27:56.761 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:56.761 SQL [3742]: pgsql_db_connect() -- 23:27:56.765 DEBUG [3742]: Database connection successful -- 23:27:56.765 INFO [3742]: _SERVER found -- 23:27:56.765 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 23:27:56.765 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:56.765 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:56.765 INFO [3742]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 23:27:56.765 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:56.777 INFO [3742]: COREGRADE is stopping... -- 23:27:56.777 DEBUG [3742]: Closing database connection -- 23:27:56.777 SQL [3742]: pgsql_close() -- 23:27:56.844 INFO [3742]: COREGRADE is starting... -- 23:27:56.844 INFO [3742]: Version from config: 1.0 -- 23:27:56.844 DEBUG [3742]: Connecting to database... -- 23:27:56.844 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:56.844 SQL [3742]: pgsql_db_connect() -- 23:27:56.848 DEBUG [3742]: Database connection successful -- 23:27:56.848 INFO [3742]: _SERVER found -- 23:27:56.848 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 23:27:56.848 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:56.848 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:56.848 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 23:27:56.848 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:56.860 INFO [3742]: COREGRADE is stopping... -- 23:27:56.860 DEBUG [3742]: Closing database connection -- 23:27:56.860 SQL [3742]: pgsql_close() -- 23:27:56.926 INFO [3742]: COREGRADE is starting... -- 23:27:56.927 INFO [3742]: Version from config: 1.0 -- 23:27:56.927 DEBUG [3742]: Connecting to database... -- 23:27:56.927 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:56.927 SQL [3742]: pgsql_db_connect() -- 23:27:56.931 DEBUG [3742]: Database connection successful -- 23:27:56.931 INFO [3742]: _SERVER found -- 23:27:56.931 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 23:27:56.931 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:56.931 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:56.931 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 23:27:56.931 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:56.943 INFO [3742]: COREGRADE is stopping... -- 23:27:56.943 DEBUG [3742]: Closing database connection -- 23:27:56.943 SQL [3742]: pgsql_close() -- 23:27:57.009 INFO [3742]: COREGRADE is starting... -- 23:27:57.009 INFO [3742]: Version from config: 1.0 -- 23:27:57.009 DEBUG [3742]: Connecting to database... -- 23:27:57.009 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:57.009 SQL [3742]: pgsql_db_connect() -- 23:27:57.013 DEBUG [3742]: Database connection successful -- 23:27:57.013 INFO [3742]: _SERVER found -- 23:27:57.013 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 23:27:57.013 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:57.013 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:57.013 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 23:27:57.013 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:57.025 INFO [3742]: COREGRADE is stopping... -- 23:27:57.025 DEBUG [3742]: Closing database connection -- 23:27:57.025 SQL [3742]: pgsql_close() -- 23:27:57.092 INFO [3742]: COREGRADE is starting... -- 23:27:57.092 INFO [3742]: Version from config: 1.0 -- 23:27:57.092 DEBUG [3742]: Connecting to database... -- 23:27:57.092 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:57.092 SQL [3742]: pgsql_db_connect() -- 23:27:57.096 DEBUG [3742]: Database connection successful -- 23:27:57.096 INFO [3742]: _SERVER found -- 23:27:57.096 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 23:27:57.096 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:57.096 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:57.096 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 23:27:57.096 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:57.108 INFO [3742]: COREGRADE is stopping... -- 23:27:57.108 DEBUG [3742]: Closing database connection -- 23:27:57.108 SQL [3742]: pgsql_close() -- 23:27:57.186 INFO [3742]: COREGRADE is starting... -- 23:27:57.186 INFO [3742]: Version from config: 1.0 -- 23:27:57.186 DEBUG [3742]: Connecting to database... -- 23:27:57.186 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:57.186 SQL [3742]: pgsql_db_connect() -- 23:27:57.191 DEBUG [3742]: Database connection successful -- 23:27:57.191 INFO [3742]: _SERVER found -- 23:27:57.191 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 23:27:57.191 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:57.191 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:57.191 INFO [3742]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 23:27:57.191 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:57.203 INFO [3742]: COREGRADE is stopping... -- 23:27:57.203 DEBUG [3742]: Closing database connection -- 23:27:57.203 SQL [3742]: pgsql_close() -- 23:27:57.269 INFO [3742]: COREGRADE is starting... -- 23:27:57.270 INFO [3742]: Version from config: 1.0 -- 23:27:57.270 DEBUG [3742]: Connecting to database... -- 23:27:57.270 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:57.270 SQL [3742]: pgsql_db_connect() -- 23:27:57.274 DEBUG [3742]: Database connection successful -- 23:27:57.274 INFO [3742]: _SERVER found -- 23:27:57.274 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 23:27:57.274 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:57.274 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:57.274 INFO [3742]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 23:27:57.274 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:57.286 INFO [3742]: COREGRADE is stopping... -- 23:27:57.286 DEBUG [3742]: Closing database connection -- 23:27:57.286 SQL [3742]: pgsql_close() -- 23:27:57.354 INFO [3742]: COREGRADE is starting... -- 23:27:57.354 INFO [3742]: Version from config: 1.0 -- 23:27:57.354 DEBUG [3742]: Connecting to database... -- 23:27:57.354 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:57.354 SQL [3742]: pgsql_db_connect() -- 23:27:57.359 DEBUG [3742]: Database connection successful -- 23:27:57.359 INFO [3742]: _SERVER found -- 23:27:57.359 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 23:27:57.359 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:27:57.359 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:27:57.359 INFO [3742]: QUERY_STRING = /assets/customjs/general.js -- 23:27:57.359 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:27:57.371 INFO [3742]: COREGRADE is stopping... -- 23:27:57.371 DEBUG [3742]: Closing database connection -- 23:27:57.371 SQL [3742]: pgsql_close() -- 23:47:57.584 INFO [3828]: COREGRADE is starting... -- 23:47:57.584 INFO [3828]: Version from config: 1.0 -- 23:47:57.584 DEBUG [3828]: Connecting to database... -- 23:47:57.584 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:57.584 SQL [3828]: pgsql_db_connect() -- 23:47:57.589 DEBUG [3828]: Database connection successful -- 23:47:57.589 INFO [3828]: _SERVER found -- 23:47:57.589 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 23:47:57.589 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:57.589 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=7e53769vtjk4muin2r1dirf8c01anub8 -- 23:47:57.589 INFO [3828]: QUERY_STRING = /logout -- 23:47:57.589 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:57.622 INFO [3828]: COREGRADE is stopping... -- 23:47:57.622 DEBUG [3828]: Closing database connection -- 23:47:57.622 SQL [3828]: pgsql_close() -- 23:47:57.699 INFO [3828]: COREGRADE is starting... -- 23:47:57.700 INFO [3828]: Version from config: 1.0 -- 23:47:57.700 DEBUG [3828]: Connecting to database... -- 23:47:57.700 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:57.700 SQL [3828]: pgsql_db_connect() -- 23:47:57.704 DEBUG [3828]: Database connection successful -- 23:47:57.704 INFO [3828]: _SERVER found -- 23:47:57.704 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 23:47:57.704 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:57.704 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:57.704 INFO [3828]: QUERY_STRING = /start -- 23:47:57.704 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:57.738 INFO [3828]: COREGRADE is stopping... -- 23:47:57.738 DEBUG [3828]: Closing database connection -- 23:47:57.738 SQL [3828]: pgsql_close() -- 23:47:57.862 INFO [3738]: COREGRADE is starting... -- 23:47:57.863 INFO [3738]: Version from config: 1.0 -- 23:47:57.863 DEBUG [3738]: Connecting to database... -- 23:47:57.863 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:57.863 SQL [3738]: pgsql_db_connect() -- 23:47:57.867 DEBUG [3738]: Database connection successful -- 23:47:57.867 INFO [3738]: _SERVER found -- 23:47:57.867 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 23:47:57.867 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:57.867 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:57.867 INFO [3738]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 23:47:57.867 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:57.880 INFO [3738]: COREGRADE is stopping... -- 23:47:57.880 DEBUG [3738]: Closing database connection -- 23:47:57.880 SQL [3738]: pgsql_close() -- 23:47:57.881 INFO [3828]: COREGRADE is starting... -- 23:47:57.882 INFO [3828]: Version from config: 1.0 -- 23:47:57.882 DEBUG [3828]: Connecting to database... -- 23:47:57.882 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:57.882 SQL [3828]: pgsql_db_connect() -- 23:47:57.885 DEBUG [3828]: Database connection successful -- 23:47:57.885 INFO [3828]: _SERVER found -- 23:47:57.885 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 23:47:57.885 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:57.885 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:57.885 INFO [3828]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 23:47:57.885 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:57.897 INFO [3828]: COREGRADE is stopping... -- 23:47:57.897 DEBUG [3828]: Closing database connection -- 23:47:57.897 SQL [3828]: pgsql_close() -- 23:47:57.932 INFO [3800]: COREGRADE is starting... -- 23:47:57.933 INFO [3800]: Version from config: 1.0 -- 23:47:57.933 DEBUG [3800]: Connecting to database... -- 23:47:57.933 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:57.933 SQL [3800]: pgsql_db_connect() -- 23:47:57.937 DEBUG [3800]: Database connection successful -- 23:47:57.937 INFO [3800]: _SERVER found -- 23:47:57.937 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 23:47:57.937 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:57.937 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:57.937 INFO [3800]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 23:47:57.937 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:57.949 INFO [3800]: COREGRADE is stopping... -- 23:47:57.949 DEBUG [3800]: Closing database connection -- 23:47:57.949 SQL [3800]: pgsql_close() -- 23:47:57.958 INFO [3738]: COREGRADE is starting... -- 23:47:57.958 INFO [3738]: Version from config: 1.0 -- 23:47:57.958 DEBUG [3738]: Connecting to database... -- 23:47:57.958 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:57.958 SQL [3738]: pgsql_db_connect() -- 23:47:57.961 INFO [3828]: COREGRADE is starting... -- 23:47:57.962 INFO [3828]: Version from config: 1.0 -- 23:47:57.962 DEBUG [3828]: Connecting to database... -- 23:47:57.962 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:57.962 SQL [3828]: pgsql_db_connect() -- 23:47:57.962 DEBUG [3738]: Database connection successful -- 23:47:57.962 INFO [3738]: _SERVER found -- 23:47:57.962 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 23:47:57.962 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:57.962 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:57.962 INFO [3738]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 23:47:57.962 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:57.974 INFO [3738]: COREGRADE is stopping... -- 23:47:57.974 DEBUG [3738]: Closing database connection -- 23:47:57.974 SQL [3738]: pgsql_close() -- 23:47:57.966 DEBUG [3828]: Database connection successful -- 23:47:57.966 INFO [3828]: _SERVER found -- 23:47:57.966 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 23:47:57.966 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:57.966 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:57.966 INFO [3828]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 23:47:57.966 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:57.977 INFO [3828]: COREGRADE is stopping... -- 23:47:57.977 DEBUG [3828]: Closing database connection -- 23:47:57.977 SQL [3828]: pgsql_close() -- 23:47:58.026 INFO [3800]: COREGRADE is starting... -- 23:47:58.026 INFO [3800]: Version from config: 1.0 -- 23:47:58.026 DEBUG [3800]: Connecting to database... -- 23:47:58.027 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:58.027 SQL [3800]: pgsql_db_connect() -- 23:47:58.031 DEBUG [3800]: Database connection successful -- 23:47:58.031 INFO [3800]: _SERVER found -- 23:47:58.031 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 23:47:58.031 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:58.031 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:58.031 INFO [3800]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 23:47:58.031 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:58.042 INFO [3800]: COREGRADE is stopping... -- 23:47:58.042 DEBUG [3800]: Closing database connection -- 23:47:58.042 SQL [3800]: pgsql_close() -- 23:47:58.043 INFO [3828]: COREGRADE is starting... -- 23:47:58.043 INFO [3828]: Version from config: 1.0 -- 23:47:58.043 DEBUG [3828]: Connecting to database... -- 23:47:58.043 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:58.043 SQL [3828]: pgsql_db_connect() -- 23:47:58.051 INFO [3738]: COREGRADE is starting... -- 23:47:58.051 INFO [3738]: Version from config: 1.0 -- 23:47:58.051 DEBUG [3738]: Connecting to database... -- 23:47:58.051 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:58.051 SQL [3738]: pgsql_db_connect() -- 23:47:58.047 DEBUG [3828]: Database connection successful -- 23:47:58.047 INFO [3828]: _SERVER found -- 23:47:58.047 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 23:47:58.047 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:58.047 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:58.047 INFO [3828]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 23:47:58.047 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:58.059 INFO [3828]: COREGRADE is stopping... -- 23:47:58.059 DEBUG [3828]: Closing database connection -- 23:47:58.059 SQL [3828]: pgsql_close() -- 23:47:58.055 DEBUG [3738]: Database connection successful -- 23:47:58.055 INFO [3738]: _SERVER found -- 23:47:58.055 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 23:47:58.055 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:58.055 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:58.055 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 23:47:58.055 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:58.067 INFO [3738]: COREGRADE is stopping... -- 23:47:58.067 DEBUG [3738]: Closing database connection -- 23:47:58.067 SQL [3738]: pgsql_close() -- 23:47:58.120 INFO [3800]: COREGRADE is starting... -- 23:47:58.120 INFO [3800]: Version from config: 1.0 -- 23:47:58.120 DEBUG [3800]: Connecting to database... -- 23:47:58.120 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:58.120 SQL [3800]: pgsql_db_connect() -- 23:47:58.125 INFO [3828]: COREGRADE is starting... -- 23:47:58.125 INFO [3828]: Version from config: 1.0 -- 23:47:58.125 DEBUG [3828]: Connecting to database... -- 23:47:58.125 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:58.125 SQL [3828]: pgsql_db_connect() -- 23:47:58.124 DEBUG [3800]: Database connection successful -- 23:47:58.125 INFO [3800]: _SERVER found -- 23:47:58.125 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 23:47:58.125 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:58.125 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:58.125 INFO [3800]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 23:47:58.125 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:58.136 INFO [3800]: COREGRADE is stopping... -- 23:47:58.136 DEBUG [3800]: Closing database connection -- 23:47:58.136 SQL [3800]: pgsql_close() -- 23:47:58.129 DEBUG [3828]: Database connection successful -- 23:47:58.129 INFO [3828]: _SERVER found -- 23:47:58.129 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 23:47:58.129 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:58.129 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:58.129 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 23:47:58.129 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:58.141 INFO [3828]: COREGRADE is stopping... -- 23:47:58.141 DEBUG [3828]: Closing database connection -- 23:47:58.141 SQL [3828]: pgsql_close() -- 23:47:58.145 INFO [3738]: COREGRADE is starting... -- 23:47:58.145 INFO [3738]: Version from config: 1.0 -- 23:47:58.145 DEBUG [3738]: Connecting to database... -- 23:47:58.145 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:58.145 SQL [3738]: pgsql_db_connect() -- 23:47:58.149 DEBUG [3738]: Database connection successful -- 23:47:58.149 INFO [3738]: _SERVER found -- 23:47:58.149 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 23:47:58.149 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:58.149 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:58.149 INFO [3738]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 23:47:58.149 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:58.161 INFO [3738]: COREGRADE is stopping... -- 23:47:58.161 DEBUG [3738]: Closing database connection -- 23:47:58.161 SQL [3738]: pgsql_close() -- 23:47:58.207 INFO [3828]: COREGRADE is starting... -- 23:47:58.208 INFO [3828]: Version from config: 1.0 -- 23:47:58.208 DEBUG [3828]: Connecting to database... -- 23:47:58.208 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:58.208 SQL [3828]: pgsql_db_connect() -- 23:47:58.214 INFO [3800]: COREGRADE is starting... -- 23:47:58.214 INFO [3800]: Version from config: 1.0 -- 23:47:58.214 DEBUG [3800]: Connecting to database... -- 23:47:58.214 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:58.214 SQL [3800]: pgsql_db_connect() -- 23:47:58.212 DEBUG [3828]: Database connection successful -- 23:47:58.212 INFO [3828]: _SERVER found -- 23:47:58.212 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 23:47:58.212 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:58.212 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:58.212 INFO [3828]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 23:47:58.212 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:58.223 INFO [3828]: COREGRADE is stopping... -- 23:47:58.223 DEBUG [3828]: Closing database connection -- 23:47:58.223 SQL [3828]: pgsql_close() -- 23:47:58.227 INFO [3738]: COREGRADE is starting... -- 23:47:58.228 INFO [3738]: Version from config: 1.0 -- 23:47:58.228 DEBUG [3738]: Connecting to database... -- 23:47:58.228 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:58.228 SQL [3738]: pgsql_db_connect() -- 23:47:58.218 DEBUG [3800]: Database connection successful -- 23:47:58.218 INFO [3800]: _SERVER found -- 23:47:58.218 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 23:47:58.218 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:58.218 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:58.218 INFO [3800]: QUERY_STRING = /assets/js/pages/dashboard.js -- 23:47:58.218 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:58.230 INFO [3800]: COREGRADE is stopping... -- 23:47:58.230 DEBUG [3800]: Closing database connection -- 23:47:58.230 SQL [3800]: pgsql_close() -- 23:47:58.232 DEBUG [3738]: Database connection successful -- 23:47:58.232 INFO [3738]: _SERVER found -- 23:47:58.232 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 23:47:58.232 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:58.232 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:58.232 INFO [3738]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 23:47:58.232 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:58.243 INFO [3738]: COREGRADE is stopping... -- 23:47:58.244 DEBUG [3738]: Closing database connection -- 23:47:58.244 SQL [3738]: pgsql_close() -- 23:47:58.289 INFO [3828]: COREGRADE is starting... -- 23:47:58.290 INFO [3828]: Version from config: 1.0 -- 23:47:58.290 DEBUG [3828]: Connecting to database... -- 23:47:58.290 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:58.290 SQL [3828]: pgsql_db_connect() -- 23:47:58.297 INFO [3800]: COREGRADE is starting... -- 23:47:58.298 INFO [3800]: Version from config: 1.0 -- 23:47:58.298 DEBUG [3800]: Connecting to database... -- 23:47:58.298 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:58.298 SQL [3800]: pgsql_db_connect() -- 23:47:58.294 DEBUG [3828]: Database connection successful -- 23:47:58.294 INFO [3828]: _SERVER found -- 23:47:58.294 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 23:47:58.294 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:58.294 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:58.294 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 23:47:58.294 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:58.305 INFO [3828]: COREGRADE is stopping... -- 23:47:58.305 DEBUG [3828]: Closing database connection -- 23:47:58.305 SQL [3828]: pgsql_close() -- 23:47:58.309 INFO [3738]: COREGRADE is starting... -- 23:47:58.310 INFO [3738]: Version from config: 1.0 -- 23:47:58.310 DEBUG [3738]: Connecting to database... -- 23:47:58.310 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:58.310 SQL [3738]: pgsql_db_connect() -- 23:47:58.302 DEBUG [3800]: Database connection successful -- 23:47:58.302 INFO [3800]: _SERVER found -- 23:47:58.302 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 23:47:58.302 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:58.302 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:58.302 INFO [3800]: QUERY_STRING = /assets/js/pages/picker_date.js -- 23:47:58.302 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:58.314 INFO [3800]: COREGRADE is stopping... -- 23:47:58.314 DEBUG [3800]: Closing database connection -- 23:47:58.314 SQL [3800]: pgsql_close() -- 23:47:58.314 DEBUG [3738]: Database connection successful -- 23:47:58.314 INFO [3738]: _SERVER found -- 23:47:58.314 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 23:47:58.314 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:58.314 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:58.314 INFO [3738]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 23:47:58.314 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:58.325 INFO [3738]: COREGRADE is stopping... -- 23:47:58.325 DEBUG [3738]: Closing database connection -- 23:47:58.325 SQL [3738]: pgsql_close() -- 23:47:58.371 INFO [3828]: COREGRADE is starting... -- 23:47:58.371 INFO [3828]: Version from config: 1.0 -- 23:47:58.371 DEBUG [3828]: Connecting to database... -- 23:47:58.371 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:58.371 SQL [3828]: pgsql_db_connect() -- 23:47:58.380 INFO [3800]: COREGRADE is starting... -- 23:47:58.381 INFO [3800]: Version from config: 1.0 -- 23:47:58.381 DEBUG [3800]: Connecting to database... -- 23:47:58.381 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:58.381 SQL [3800]: pgsql_db_connect() -- 23:47:58.375 DEBUG [3828]: Database connection successful -- 23:47:58.375 INFO [3828]: _SERVER found -- 23:47:58.375 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 23:47:58.375 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:58.375 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:58.375 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 23:47:58.375 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:58.387 INFO [3828]: COREGRADE is stopping... -- 23:47:58.387 DEBUG [3828]: Closing database connection -- 23:47:58.387 SQL [3828]: pgsql_close() -- 23:47:58.390 INFO [3738]: COREGRADE is starting... -- 23:47:58.391 INFO [3738]: Version from config: 1.0 -- 23:47:58.391 DEBUG [3738]: Connecting to database... -- 23:47:58.391 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:58.391 SQL [3738]: pgsql_db_connect() -- 23:47:58.385 DEBUG [3800]: Database connection successful -- 23:47:58.385 INFO [3800]: _SERVER found -- 23:47:58.385 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 23:47:58.385 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:58.385 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:58.385 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 23:47:58.385 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:58.396 INFO [3800]: COREGRADE is stopping... -- 23:47:58.396 DEBUG [3800]: Closing database connection -- 23:47:58.396 SQL [3800]: pgsql_close() -- 23:47:58.395 DEBUG [3738]: Database connection successful -- 23:47:58.395 INFO [3738]: _SERVER found -- 23:47:58.395 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 23:47:58.395 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:58.395 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:58.395 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 23:47:58.395 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:58.406 INFO [3738]: COREGRADE is stopping... -- 23:47:58.406 DEBUG [3738]: Closing database connection -- 23:47:58.406 SQL [3738]: pgsql_close() -- 23:47:58.452 INFO [3828]: COREGRADE is starting... -- 23:47:58.452 INFO [3828]: Version from config: 1.0 -- 23:47:58.452 DEBUG [3828]: Connecting to database... -- 23:47:58.452 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:58.452 SQL [3828]: pgsql_db_connect() -- 23:47:58.463 INFO [3800]: COREGRADE is starting... -- 23:47:58.463 INFO [3800]: Version from config: 1.0 -- 23:47:58.463 DEBUG [3800]: Connecting to database... -- 23:47:58.463 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:58.463 SQL [3800]: pgsql_db_connect() -- 23:47:58.456 DEBUG [3828]: Database connection successful -- 23:47:58.456 INFO [3828]: _SERVER found -- 23:47:58.456 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 23:47:58.456 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:58.456 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:58.456 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 23:47:58.456 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:58.468 INFO [3828]: COREGRADE is stopping... -- 23:47:58.468 DEBUG [3828]: Closing database connection -- 23:47:58.468 SQL [3828]: pgsql_close() -- 23:47:58.471 INFO [3738]: COREGRADE is starting... -- 23:47:58.472 INFO [3738]: Version from config: 1.0 -- 23:47:58.472 DEBUG [3738]: Connecting to database... -- 23:47:58.472 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:58.472 SQL [3738]: pgsql_db_connect() -- 23:47:58.467 DEBUG [3800]: Database connection successful -- 23:47:58.467 INFO [3800]: _SERVER found -- 23:47:58.467 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 23:47:58.467 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:58.467 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:58.467 INFO [3800]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 23:47:58.467 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:58.479 INFO [3800]: COREGRADE is stopping... -- 23:47:58.479 DEBUG [3800]: Closing database connection -- 23:47:58.479 SQL [3800]: pgsql_close() -- 23:47:58.476 DEBUG [3738]: Database connection successful -- 23:47:58.476 INFO [3738]: _SERVER found -- 23:47:58.476 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 23:47:58.476 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:58.476 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:58.476 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 23:47:58.476 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:58.487 INFO [3738]: COREGRADE is stopping... -- 23:47:58.487 DEBUG [3738]: Closing database connection -- 23:47:58.487 SQL [3738]: pgsql_close() -- 23:47:58.533 INFO [3828]: COREGRADE is starting... -- 23:47:58.534 INFO [3828]: Version from config: 1.0 -- 23:47:58.534 DEBUG [3828]: Connecting to database... -- 23:47:58.534 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:58.534 SQL [3828]: pgsql_db_connect() -- 23:47:58.545 INFO [3800]: COREGRADE is starting... -- 23:47:58.545 INFO [3800]: Version from config: 1.0 -- 23:47:58.545 DEBUG [3800]: Connecting to database... -- 23:47:58.545 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:58.545 SQL [3800]: pgsql_db_connect() -- 23:47:58.538 DEBUG [3828]: Database connection successful -- 23:47:58.538 INFO [3828]: _SERVER found -- 23:47:58.538 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 23:47:58.538 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:58.538 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:58.538 INFO [3828]: QUERY_STRING = /assets/customjs/general.js -- 23:47:58.538 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:58.549 INFO [3828]: COREGRADE is stopping... -- 23:47:58.549 DEBUG [3828]: Closing database connection -- 23:47:58.549 SQL [3828]: pgsql_close() -- 23:47:58.549 DEBUG [3800]: Database connection successful -- 23:47:58.549 INFO [3800]: _SERVER found -- 23:47:58.549 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 23:47:58.549 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:58.549 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:58.549 INFO [3800]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 23:47:58.549 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:58.561 INFO [3800]: COREGRADE is stopping... -- 23:47:58.561 DEBUG [3800]: Closing database connection -- 23:47:58.561 SQL [3800]: pgsql_close() -- 23:47:58.628 INFO [3800]: COREGRADE is starting... -- 23:47:58.628 INFO [3800]: Version from config: 1.0 -- 23:47:58.628 DEBUG [3800]: Connecting to database... -- 23:47:58.628 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:58.628 SQL [3800]: pgsql_db_connect() -- 23:47:58.632 DEBUG [3800]: Database connection successful -- 23:47:58.632 INFO [3800]: _SERVER found -- 23:47:58.632 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 23:47:58.632 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:58.632 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:58.632 INFO [3800]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 23:47:58.632 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:58.644 INFO [3800]: COREGRADE is stopping... -- 23:47:58.644 DEBUG [3800]: Closing database connection -- 23:47:58.644 SQL [3800]: pgsql_close() -- 23:47:58.710 INFO [3800]: COREGRADE is starting... -- 23:47:58.710 INFO [3800]: Version from config: 1.0 -- 23:47:58.710 DEBUG [3800]: Connecting to database... -- 23:47:58.710 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:58.710 SQL [3800]: pgsql_db_connect() -- 23:47:58.714 DEBUG [3800]: Database connection successful -- 23:47:58.714 INFO [3800]: _SERVER found -- 23:47:58.714 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 23:47:58.714 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:58.714 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:58.714 INFO [3800]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 23:47:58.714 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:58.726 INFO [3800]: COREGRADE is stopping... -- 23:47:58.726 DEBUG [3800]: Closing database connection -- 23:47:58.726 SQL [3800]: pgsql_close() -- 23:47:58.792 INFO [3800]: COREGRADE is starting... -- 23:47:58.793 INFO [3800]: Version from config: 1.0 -- 23:47:58.793 DEBUG [3800]: Connecting to database... -- 23:47:58.793 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:58.793 SQL [3800]: pgsql_db_connect() -- 23:47:58.797 DEBUG [3800]: Database connection successful -- 23:47:58.797 INFO [3800]: _SERVER found -- 23:47:58.797 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 23:47:58.797 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:58.797 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:58.797 INFO [3800]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 23:47:58.797 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:58.808 INFO [3800]: COREGRADE is stopping... -- 23:47:58.808 DEBUG [3800]: Closing database connection -- 23:47:58.808 SQL [3800]: pgsql_close() -- 23:47:58.876 INFO [3800]: COREGRADE is starting... -- 23:47:58.876 INFO [3800]: Version from config: 1.0 -- 23:47:58.876 DEBUG [3800]: Connecting to database... -- 23:47:58.876 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:58.876 SQL [3800]: pgsql_db_connect() -- 23:47:58.880 DEBUG [3800]: Database connection successful -- 23:47:58.880 INFO [3800]: _SERVER found -- 23:47:58.880 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 23:47:58.880 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:58.880 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:58.880 INFO [3800]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 23:47:58.880 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:58.891 INFO [3800]: COREGRADE is stopping... -- 23:47:58.891 DEBUG [3800]: Closing database connection -- 23:47:58.891 SQL [3800]: pgsql_close() -- 23:47:58.958 INFO [3800]: COREGRADE is starting... -- 23:47:58.958 INFO [3800]: Version from config: 1.0 -- 23:47:58.958 DEBUG [3800]: Connecting to database... -- 23:47:58.958 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:58.958 SQL [3800]: pgsql_db_connect() -- 23:47:58.962 DEBUG [3800]: Database connection successful -- 23:47:58.962 INFO [3800]: _SERVER found -- 23:47:58.962 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 23:47:58.962 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:58.962 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:58.962 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 23:47:58.962 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:58.974 INFO [3800]: COREGRADE is stopping... -- 23:47:58.974 DEBUG [3800]: Closing database connection -- 23:47:58.974 SQL [3800]: pgsql_close() -- 23:47:59.041 INFO [3800]: COREGRADE is starting... -- 23:47:59.041 INFO [3800]: Version from config: 1.0 -- 23:47:59.041 DEBUG [3800]: Connecting to database... -- 23:47:59.041 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:59.041 SQL [3800]: pgsql_db_connect() -- 23:47:59.045 DEBUG [3800]: Database connection successful -- 23:47:59.045 INFO [3800]: _SERVER found -- 23:47:59.045 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 23:47:59.045 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:59.045 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:59.045 INFO [3800]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 23:47:59.045 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:59.056 INFO [3800]: COREGRADE is stopping... -- 23:47:59.056 DEBUG [3800]: Closing database connection -- 23:47:59.056 SQL [3800]: pgsql_close() -- 23:47:59.123 INFO [3800]: COREGRADE is starting... -- 23:47:59.123 INFO [3800]: Version from config: 1.0 -- 23:47:59.124 DEBUG [3800]: Connecting to database... -- 23:47:59.124 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:59.124 SQL [3800]: pgsql_db_connect() -- 23:47:59.128 DEBUG [3800]: Database connection successful -- 23:47:59.128 INFO [3800]: _SERVER found -- 23:47:59.128 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 23:47:59.128 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:59.128 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:59.128 INFO [3800]: QUERY_STRING = /assets/js/pages/dashboard.js -- 23:47:59.128 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:59.139 INFO [3800]: COREGRADE is stopping... -- 23:47:59.139 DEBUG [3800]: Closing database connection -- 23:47:59.139 SQL [3800]: pgsql_close() -- 23:47:59.207 INFO [3800]: COREGRADE is starting... -- 23:47:59.207 INFO [3800]: Version from config: 1.0 -- 23:47:59.207 DEBUG [3800]: Connecting to database... -- 23:47:59.207 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:59.207 SQL [3800]: pgsql_db_connect() -- 23:47:59.211 DEBUG [3800]: Database connection successful -- 23:47:59.211 INFO [3800]: _SERVER found -- 23:47:59.211 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 23:47:59.211 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:59.211 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:59.211 INFO [3800]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 23:47:59.211 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:59.222 INFO [3800]: COREGRADE is stopping... -- 23:47:59.222 DEBUG [3800]: Closing database connection -- 23:47:59.222 SQL [3800]: pgsql_close() -- 23:47:59.289 INFO [3800]: COREGRADE is starting... -- 23:47:59.289 INFO [3800]: Version from config: 1.0 -- 23:47:59.289 DEBUG [3800]: Connecting to database... -- 23:47:59.289 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:59.289 SQL [3800]: pgsql_db_connect() -- 23:47:59.294 DEBUG [3800]: Database connection successful -- 23:47:59.294 INFO [3800]: _SERVER found -- 23:47:59.294 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 23:47:59.294 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:59.294 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:59.294 INFO [3800]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 23:47:59.294 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:59.305 INFO [3800]: COREGRADE is stopping... -- 23:47:59.305 DEBUG [3800]: Closing database connection -- 23:47:59.305 SQL [3800]: pgsql_close() -- 23:47:59.372 INFO [3800]: COREGRADE is starting... -- 23:47:59.372 INFO [3800]: Version from config: 1.0 -- 23:47:59.372 DEBUG [3800]: Connecting to database... -- 23:47:59.372 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:59.372 SQL [3800]: pgsql_db_connect() -- 23:47:59.376 DEBUG [3800]: Database connection successful -- 23:47:59.376 INFO [3800]: _SERVER found -- 23:47:59.376 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 23:47:59.376 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:59.376 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:59.376 INFO [3800]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 23:47:59.376 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:59.388 INFO [3800]: COREGRADE is stopping... -- 23:47:59.388 DEBUG [3800]: Closing database connection -- 23:47:59.388 SQL [3800]: pgsql_close() -- 23:47:59.455 INFO [3800]: COREGRADE is starting... -- 23:47:59.455 INFO [3800]: Version from config: 1.0 -- 23:47:59.455 DEBUG [3800]: Connecting to database... -- 23:47:59.455 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:59.455 SQL [3800]: pgsql_db_connect() -- 23:47:59.459 DEBUG [3800]: Database connection successful -- 23:47:59.459 INFO [3800]: _SERVER found -- 23:47:59.459 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 23:47:59.459 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:59.459 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:59.459 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 23:47:59.459 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:59.470 INFO [3800]: COREGRADE is stopping... -- 23:47:59.470 DEBUG [3800]: Closing database connection -- 23:47:59.470 SQL [3800]: pgsql_close() -- 23:47:59.538 INFO [3800]: COREGRADE is starting... -- 23:47:59.538 INFO [3800]: Version from config: 1.0 -- 23:47:59.538 DEBUG [3800]: Connecting to database... -- 23:47:59.538 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:59.538 SQL [3800]: pgsql_db_connect() -- 23:47:59.542 DEBUG [3800]: Database connection successful -- 23:47:59.542 INFO [3800]: _SERVER found -- 23:47:59.542 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 23:47:59.542 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:59.542 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:59.542 INFO [3800]: QUERY_STRING = /assets/js/pages/picker_date.js -- 23:47:59.542 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:59.554 INFO [3800]: COREGRADE is stopping... -- 23:47:59.554 DEBUG [3800]: Closing database connection -- 23:47:59.554 SQL [3800]: pgsql_close() -- 23:47:59.622 INFO [3800]: COREGRADE is starting... -- 23:47:59.622 INFO [3800]: Version from config: 1.0 -- 23:47:59.622 DEBUG [3800]: Connecting to database... -- 23:47:59.622 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:59.622 SQL [3800]: pgsql_db_connect() -- 23:47:59.626 DEBUG [3800]: Database connection successful -- 23:47:59.626 INFO [3800]: _SERVER found -- 23:47:59.626 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 23:47:59.626 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:59.626 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:59.626 INFO [3800]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 23:47:59.626 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:59.638 INFO [3800]: COREGRADE is stopping... -- 23:47:59.638 DEBUG [3800]: Closing database connection -- 23:47:59.638 SQL [3800]: pgsql_close() -- 23:47:59.705 INFO [3800]: COREGRADE is starting... -- 23:47:59.705 INFO [3800]: Version from config: 1.0 -- 23:47:59.705 DEBUG [3800]: Connecting to database... -- 23:47:59.705 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:59.705 SQL [3800]: pgsql_db_connect() -- 23:47:59.709 DEBUG [3800]: Database connection successful -- 23:47:59.709 INFO [3800]: _SERVER found -- 23:47:59.709 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 23:47:59.709 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:59.709 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:59.709 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 23:47:59.709 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:59.720 INFO [3800]: COREGRADE is stopping... -- 23:47:59.720 DEBUG [3800]: Closing database connection -- 23:47:59.720 SQL [3800]: pgsql_close() -- 23:47:59.787 INFO [3800]: COREGRADE is starting... -- 23:47:59.787 INFO [3800]: Version from config: 1.0 -- 23:47:59.787 DEBUG [3800]: Connecting to database... -- 23:47:59.787 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:59.787 SQL [3800]: pgsql_db_connect() -- 23:47:59.791 DEBUG [3800]: Database connection successful -- 23:47:59.791 INFO [3800]: _SERVER found -- 23:47:59.791 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 23:47:59.791 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:59.791 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:59.791 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 23:47:59.791 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:59.803 INFO [3800]: COREGRADE is stopping... -- 23:47:59.803 DEBUG [3800]: Closing database connection -- 23:47:59.803 SQL [3800]: pgsql_close() -- 23:47:59.869 INFO [3800]: COREGRADE is starting... -- 23:47:59.870 INFO [3800]: Version from config: 1.0 -- 23:47:59.870 DEBUG [3800]: Connecting to database... -- 23:47:59.870 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:59.870 SQL [3800]: pgsql_db_connect() -- 23:47:59.874 DEBUG [3800]: Database connection successful -- 23:47:59.874 INFO [3800]: _SERVER found -- 23:47:59.874 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 23:47:59.874 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:59.874 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:59.874 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 23:47:59.874 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:59.885 INFO [3800]: COREGRADE is stopping... -- 23:47:59.885 DEBUG [3800]: Closing database connection -- 23:47:59.885 SQL [3800]: pgsql_close() -- 23:47:59.952 INFO [3800]: COREGRADE is starting... -- 23:47:59.952 INFO [3800]: Version from config: 1.0 -- 23:47:59.952 DEBUG [3800]: Connecting to database... -- 23:47:59.952 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:59.952 SQL [3800]: pgsql_db_connect() -- 23:47:59.956 DEBUG [3800]: Database connection successful -- 23:47:59.956 INFO [3800]: _SERVER found -- 23:47:59.956 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 23:47:59.956 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:47:59.956 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:47:59.956 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 23:47:59.956 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:47:59.967 INFO [3800]: COREGRADE is stopping... -- 23:47:59.967 DEBUG [3800]: Closing database connection -- 23:47:59.967 SQL [3800]: pgsql_close() -- 23:48:00.045 INFO [3800]: COREGRADE is starting... -- 23:48:00.046 INFO [3800]: Version from config: 1.0 -- 23:48:00.046 DEBUG [3800]: Connecting to database... -- 23:48:00.046 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:48:00.046 SQL [3800]: pgsql_db_connect() -- 23:48:00.050 DEBUG [3800]: Database connection successful -- 23:48:00.050 INFO [3800]: _SERVER found -- 23:48:00.050 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 23:48:00.050 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:48:00.050 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:48:00.050 INFO [3800]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 23:48:00.050 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:48:00.061 INFO [3800]: COREGRADE is stopping... -- 23:48:00.061 DEBUG [3800]: Closing database connection -- 23:48:00.061 SQL [3800]: pgsql_close() -- 23:48:00.128 INFO [3800]: COREGRADE is starting... -- 23:48:00.128 INFO [3800]: Version from config: 1.0 -- 23:48:00.128 DEBUG [3800]: Connecting to database... -- 23:48:00.128 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:48:00.128 SQL [3800]: pgsql_db_connect() -- 23:48:00.133 DEBUG [3800]: Database connection successful -- 23:48:00.133 INFO [3800]: _SERVER found -- 23:48:00.133 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 23:48:00.133 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:48:00.133 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:48:00.133 INFO [3800]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 23:48:00.133 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:48:00.144 INFO [3800]: COREGRADE is stopping... -- 23:48:00.144 DEBUG [3800]: Closing database connection -- 23:48:00.144 SQL [3800]: pgsql_close() -- 23:48:00.212 INFO [3800]: COREGRADE is starting... -- 23:48:00.213 INFO [3800]: Version from config: 1.0 -- 23:48:00.213 DEBUG [3800]: Connecting to database... -- 23:48:00.213 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:48:00.213 SQL [3800]: pgsql_db_connect() -- 23:48:00.217 DEBUG [3800]: Database connection successful -- 23:48:00.217 INFO [3800]: _SERVER found -- 23:48:00.217 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 23:48:00.217 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:48:00.217 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 23:48:00.217 INFO [3800]: QUERY_STRING = /assets/customjs/general.js -- 23:48:00.217 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 23:48:00.228 INFO [3800]: COREGRADE is stopping... -- 23:48:00.228 DEBUG [3800]: Closing database connection -- 23:48:00.228 SQL [3800]: pgsql_close() -- 00:08:00.450 INFO [3829]: COREGRADE is starting... -- 00:08:00.450 INFO [3829]: Version from config: 1.0 -- 00:08:00.450 DEBUG [3829]: Connecting to database... -- 00:08:00.450 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:00.450 SQL [3829]: pgsql_db_connect() -- 00:08:00.454 DEBUG [3829]: Database connection successful -- 00:08:00.454 INFO [3829]: _SERVER found -- 00:08:00.454 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 00:08:00.454 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:00.454 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ncog44g30v72mrkrcb68icp2huk8h723 -- 00:08:00.454 INFO [3829]: QUERY_STRING = /logout -- 00:08:00.454 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:00.491 INFO [3829]: COREGRADE is stopping... -- 00:08:00.491 DEBUG [3829]: Closing database connection -- 00:08:00.491 SQL [3829]: pgsql_close() -- 00:08:00.569 INFO [3829]: COREGRADE is starting... -- 00:08:00.570 INFO [3829]: Version from config: 1.0 -- 00:08:00.570 DEBUG [3829]: Connecting to database... -- 00:08:00.570 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:00.570 SQL [3829]: pgsql_db_connect() -- 00:08:00.574 DEBUG [3829]: Database connection successful -- 00:08:00.574 INFO [3829]: _SERVER found -- 00:08:00.574 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 00:08:00.574 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:00.574 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:00.574 INFO [3829]: QUERY_STRING = /start -- 00:08:00.574 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:00.610 INFO [3829]: COREGRADE is stopping... -- 00:08:00.610 DEBUG [3829]: Closing database connection -- 00:08:00.610 SQL [3829]: pgsql_close() -- 00:08:00.743 INFO [3741]: COREGRADE is starting... -- 00:08:00.744 INFO [3741]: Version from config: 1.0 -- 00:08:00.744 DEBUG [3741]: Connecting to database... -- 00:08:00.744 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:00.744 SQL [3741]: pgsql_db_connect() -- 00:08:00.757 INFO [3829]: COREGRADE is starting... -- 00:08:00.757 INFO [3829]: Version from config: 1.0 -- 00:08:00.757 DEBUG [3829]: Connecting to database... -- 00:08:00.757 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:00.757 SQL [3829]: pgsql_db_connect() -- 00:08:00.748 DEBUG [3741]: Database connection successful -- 00:08:00.748 INFO [3741]: _SERVER found -- 00:08:00.748 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 00:08:00.748 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:00.748 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:00.748 INFO [3741]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 00:08:00.748 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:00.760 INFO [3741]: COREGRADE is stopping... -- 00:08:00.761 DEBUG [3741]: Closing database connection -- 00:08:00.761 SQL [3741]: pgsql_close() -- 00:08:00.761 DEBUG [3829]: Database connection successful -- 00:08:00.761 INFO [3829]: _SERVER found -- 00:08:00.761 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 00:08:00.761 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:00.761 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:00.761 INFO [3829]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 00:08:00.761 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:00.773 INFO [3829]: COREGRADE is stopping... -- 00:08:00.773 DEBUG [3829]: Closing database connection -- 00:08:00.773 SQL [3829]: pgsql_close() -- 00:08:00.815 INFO [3740]: COREGRADE is starting... -- 00:08:00.815 INFO [3740]: Version from config: 1.0 -- 00:08:00.815 DEBUG [3740]: Connecting to database... -- 00:08:00.815 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:00.815 SQL [3740]: pgsql_db_connect() -- 00:08:00.819 DEBUG [3740]: Database connection successful -- 00:08:00.819 INFO [3740]: _SERVER found -- 00:08:00.819 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 00:08:00.819 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:00.819 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:00.819 INFO [3740]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 00:08:00.819 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:00.831 INFO [3740]: COREGRADE is stopping... -- 00:08:00.831 DEBUG [3740]: Closing database connection -- 00:08:00.831 SQL [3740]: pgsql_close() -- 00:08:00.841 INFO [3741]: COREGRADE is starting... -- 00:08:00.841 INFO [3829]: COREGRADE is starting... -- 00:08:00.841 INFO [3829]: Version from config: 1.0 -- 00:08:00.841 DEBUG [3829]: Connecting to database... -- 00:08:00.841 INFO [3741]: Version from config: 1.0 -- 00:08:00.841 DEBUG [3741]: Connecting to database... -- 00:08:00.841 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:00.841 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:00.841 SQL [3829]: pgsql_db_connect() -- 00:08:00.841 SQL [3741]: pgsql_db_connect() -- 00:08:00.845 DEBUG [3741]: Database connection successful -- 00:08:00.845 INFO [3741]: _SERVER found -- 00:08:00.845 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 00:08:00.845 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:00.845 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:00.845 INFO [3741]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 00:08:00.845 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:00.856 INFO [3741]: COREGRADE is stopping... -- 00:08:00.856 DEBUG [3741]: Closing database connection -- 00:08:00.856 SQL [3741]: pgsql_close() -- 00:08:00.845 DEBUG [3829]: Database connection successful -- 00:08:00.845 INFO [3829]: _SERVER found -- 00:08:00.845 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 00:08:00.845 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:00.845 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:00.845 INFO [3829]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 00:08:00.845 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:00.857 INFO [3829]: COREGRADE is stopping... -- 00:08:00.857 DEBUG [3829]: Closing database connection -- 00:08:00.857 SQL [3829]: pgsql_close() -- 00:08:00.910 INFO [3740]: COREGRADE is starting... -- 00:08:00.910 INFO [3740]: Version from config: 1.0 -- 00:08:00.910 DEBUG [3740]: Connecting to database... -- 00:08:00.911 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:00.911 SQL [3740]: pgsql_db_connect() -- 00:08:00.923 INFO [3829]: COREGRADE is starting... -- 00:08:00.923 INFO [3829]: Version from config: 1.0 -- 00:08:00.923 DEBUG [3829]: Connecting to database... -- 00:08:00.923 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:00.923 SQL [3829]: pgsql_db_connect() -- 00:08:00.914 DEBUG [3740]: Database connection successful -- 00:08:00.914 INFO [3740]: _SERVER found -- 00:08:00.915 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 00:08:00.915 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:00.915 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:00.915 INFO [3740]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 00:08:00.915 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:00.926 INFO [3740]: COREGRADE is stopping... -- 00:08:00.926 DEBUG [3740]: Closing database connection -- 00:08:00.926 SQL [3740]: pgsql_close() -- 00:08:00.936 INFO [3741]: COREGRADE is starting... -- 00:08:00.937 INFO [3741]: Version from config: 1.0 -- 00:08:00.937 DEBUG [3741]: Connecting to database... -- 00:08:00.937 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:00.937 SQL [3741]: pgsql_db_connect() -- 00:08:00.928 DEBUG [3829]: Database connection successful -- 00:08:00.928 INFO [3829]: _SERVER found -- 00:08:00.928 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 00:08:00.928 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:00.928 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:00.928 INFO [3829]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 00:08:00.928 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:00.940 INFO [3829]: COREGRADE is stopping... -- 00:08:00.940 DEBUG [3829]: Closing database connection -- 00:08:00.940 SQL [3829]: pgsql_close() -- 00:08:00.941 DEBUG [3741]: Database connection successful -- 00:08:00.941 INFO [3741]: _SERVER found -- 00:08:00.941 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 00:08:00.941 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:00.941 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:00.941 INFO [3741]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 00:08:00.941 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:00.952 INFO [3741]: COREGRADE is stopping... -- 00:08:00.952 DEBUG [3741]: Closing database connection -- 00:08:00.952 SQL [3741]: pgsql_close() -- 00:08:01.006 INFO [3829]: COREGRADE is starting... -- 00:08:01.006 INFO [3740]: COREGRADE is starting... -- 00:08:01.006 INFO [3740]: Version from config: 1.0 -- 00:08:01.006 DEBUG [3740]: Connecting to database... -- 00:08:01.006 INFO [3829]: Version from config: 1.0 -- 00:08:01.006 DEBUG [3829]: Connecting to database... -- 00:08:01.006 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:01.006 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:01.006 SQL [3740]: pgsql_db_connect() -- 00:08:01.006 SQL [3829]: pgsql_db_connect() -- 00:08:01.010 DEBUG [3740]: Database connection successful -- 00:08:01.010 INFO [3740]: _SERVER found -- 00:08:01.010 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 00:08:01.010 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:01.010 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:01.010 INFO [3740]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 00:08:01.010 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:01.022 INFO [3740]: COREGRADE is stopping... -- 00:08:01.022 DEBUG [3740]: Closing database connection -- 00:08:01.022 SQL [3740]: pgsql_close() -- 00:08:01.010 DEBUG [3829]: Database connection successful -- 00:08:01.010 INFO [3829]: _SERVER found -- 00:08:01.010 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 00:08:01.010 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:01.010 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:01.010 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 00:08:01.010 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:01.022 INFO [3829]: COREGRADE is stopping... -- 00:08:01.022 DEBUG [3829]: Closing database connection -- 00:08:01.022 SQL [3829]: pgsql_close() -- 00:08:01.032 INFO [3741]: COREGRADE is starting... -- 00:08:01.032 INFO [3741]: Version from config: 1.0 -- 00:08:01.032 DEBUG [3741]: Connecting to database... -- 00:08:01.032 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:01.032 SQL [3741]: pgsql_db_connect() -- 00:08:01.036 DEBUG [3741]: Database connection successful -- 00:08:01.036 INFO [3741]: _SERVER found -- 00:08:01.036 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 00:08:01.036 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:01.036 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:01.036 INFO [3741]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 00:08:01.036 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:01.047 INFO [3741]: COREGRADE is stopping... -- 00:08:01.047 DEBUG [3741]: Closing database connection -- 00:08:01.048 SQL [3741]: pgsql_close() -- 00:08:01.091 INFO [3829]: COREGRADE is starting... -- 00:08:01.091 INFO [3829]: Version from config: 1.0 -- 00:08:01.091 DEBUG [3829]: Connecting to database... -- 00:08:01.091 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:01.091 SQL [3829]: pgsql_db_connect() -- 00:08:01.101 INFO [3740]: COREGRADE is starting... -- 00:08:01.101 INFO [3740]: Version from config: 1.0 -- 00:08:01.101 DEBUG [3740]: Connecting to database... -- 00:08:01.101 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:01.101 SQL [3740]: pgsql_db_connect() -- 00:08:01.095 DEBUG [3829]: Database connection successful -- 00:08:01.095 INFO [3829]: _SERVER found -- 00:08:01.095 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 00:08:01.095 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:01.095 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:01.095 INFO [3829]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 00:08:01.095 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:01.107 INFO [3829]: COREGRADE is stopping... -- 00:08:01.107 DEBUG [3829]: Closing database connection -- 00:08:01.107 SQL [3829]: pgsql_close() -- 00:08:01.105 DEBUG [3740]: Database connection successful -- 00:08:01.105 INFO [3740]: _SERVER found -- 00:08:01.105 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 00:08:01.105 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:01.105 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:01.105 INFO [3740]: QUERY_STRING = /assets/js/pages/dashboard.js -- 00:08:01.105 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:01.116 INFO [3740]: COREGRADE is stopping... -- 00:08:01.116 DEBUG [3740]: Closing database connection -- 00:08:01.116 SQL [3740]: pgsql_close() -- 00:08:01.117 INFO [3741]: COREGRADE is starting... -- 00:08:01.117 INFO [3741]: Version from config: 1.0 -- 00:08:01.117 DEBUG [3741]: Connecting to database... -- 00:08:01.117 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:01.117 SQL [3741]: pgsql_db_connect() -- 00:08:01.121 DEBUG [3741]: Database connection successful -- 00:08:01.121 INFO [3741]: _SERVER found -- 00:08:01.121 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 00:08:01.121 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:01.121 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:01.121 INFO [3741]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 00:08:01.121 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:01.133 INFO [3741]: COREGRADE is stopping... -- 00:08:01.133 DEBUG [3741]: Closing database connection -- 00:08:01.133 SQL [3741]: pgsql_close() -- 00:08:01.173 INFO [3829]: COREGRADE is starting... -- 00:08:01.173 INFO [3829]: Version from config: 1.0 -- 00:08:01.173 DEBUG [3829]: Connecting to database... -- 00:08:01.173 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:01.173 SQL [3829]: pgsql_db_connect() -- 00:08:01.186 INFO [3740]: COREGRADE is starting... -- 00:08:01.186 INFO [3740]: Version from config: 1.0 -- 00:08:01.186 DEBUG [3740]: Connecting to database... -- 00:08:01.186 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:01.186 SQL [3740]: pgsql_db_connect() -- 00:08:01.177 DEBUG [3829]: Database connection successful -- 00:08:01.177 INFO [3829]: _SERVER found -- 00:08:01.177 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 00:08:01.177 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:01.177 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:01.177 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 00:08:01.177 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:01.189 INFO [3829]: COREGRADE is stopping... -- 00:08:01.189 DEBUG [3829]: Closing database connection -- 00:08:01.189 SQL [3829]: pgsql_close() -- 00:08:01.202 INFO [3741]: COREGRADE is starting... -- 00:08:01.190 DEBUG [3740]: Database connection successful -- 00:08:01.190 INFO [3740]: _SERVER found -- 00:08:01.190 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 00:08:01.190 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:01.190 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:01.190 INFO [3740]: QUERY_STRING = /assets/js/pages/picker_date.js -- 00:08:01.190 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:01.202 INFO [3740]: COREGRADE is stopping... -- 00:08:01.202 DEBUG [3740]: Closing database connection -- 00:08:01.202 SQL [3740]: pgsql_close() -- 00:08:01.202 INFO [3741]: Version from config: 1.0 -- 00:08:01.202 DEBUG [3741]: Connecting to database... -- 00:08:01.202 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:01.202 SQL [3741]: pgsql_db_connect() -- 00:08:01.206 DEBUG [3741]: Database connection successful -- 00:08:01.206 INFO [3741]: _SERVER found -- 00:08:01.206 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 00:08:01.206 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:01.206 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:01.206 INFO [3741]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 00:08:01.206 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:01.218 INFO [3741]: COREGRADE is stopping... -- 00:08:01.218 DEBUG [3741]: Closing database connection -- 00:08:01.218 SQL [3741]: pgsql_close() -- 00:08:01.255 INFO [3829]: COREGRADE is starting... -- 00:08:01.255 INFO [3829]: Version from config: 1.0 -- 00:08:01.255 DEBUG [3829]: Connecting to database... -- 00:08:01.255 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:01.255 SQL [3829]: pgsql_db_connect() -- 00:08:01.270 INFO [3740]: COREGRADE is starting... -- 00:08:01.270 INFO [3740]: Version from config: 1.0 -- 00:08:01.270 DEBUG [3740]: Connecting to database... -- 00:08:01.271 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:01.271 SQL [3740]: pgsql_db_connect() -- 00:08:01.259 DEBUG [3829]: Database connection successful -- 00:08:01.259 INFO [3829]: _SERVER found -- 00:08:01.259 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 00:08:01.259 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:01.259 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:01.259 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 00:08:01.259 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:01.271 INFO [3829]: COREGRADE is stopping... -- 00:08:01.271 DEBUG [3829]: Closing database connection -- 00:08:01.271 SQL [3829]: pgsql_close() -- 00:08:01.286 INFO [3741]: COREGRADE is starting... -- 00:08:01.274 DEBUG [3740]: Database connection successful -- 00:08:01.274 INFO [3740]: _SERVER found -- 00:08:01.274 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 00:08:01.274 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:01.274 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:01.274 INFO [3740]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 00:08:01.275 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:01.286 INFO [3740]: COREGRADE is stopping... -- 00:08:01.286 DEBUG [3740]: Closing database connection -- 00:08:01.286 INFO [3741]: Version from config: 1.0 -- 00:08:01.286 DEBUG [3741]: Connecting to database... -- 00:08:01.286 SQL [3740]: pgsql_close() -- 00:08:01.286 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:01.286 SQL [3741]: pgsql_db_connect() -- 00:08:01.291 DEBUG [3741]: Database connection successful -- 00:08:01.291 INFO [3741]: _SERVER found -- 00:08:01.291 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 00:08:01.291 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:01.291 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:01.291 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 00:08:01.291 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:01.302 INFO [3741]: COREGRADE is stopping... -- 00:08:01.302 DEBUG [3741]: Closing database connection -- 00:08:01.302 SQL [3741]: pgsql_close() -- 00:08:01.336 INFO [3829]: COREGRADE is starting... -- 00:08:01.337 INFO [3829]: Version from config: 1.0 -- 00:08:01.337 DEBUG [3829]: Connecting to database... -- 00:08:01.337 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:01.337 SQL [3829]: pgsql_db_connect() -- 00:08:01.341 DEBUG [3829]: Database connection successful -- 00:08:01.341 INFO [3829]: _SERVER found -- 00:08:01.341 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 00:08:01.341 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:01.341 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:01.341 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 00:08:01.341 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:01.353 INFO [3829]: COREGRADE is stopping... -- 00:08:01.353 DEBUG [3829]: Closing database connection -- 00:08:01.353 SQL [3829]: pgsql_close() -- 00:08:01.355 INFO [3740]: COREGRADE is starting... -- 00:08:01.355 INFO [3740]: Version from config: 1.0 -- 00:08:01.355 DEBUG [3740]: Connecting to database... -- 00:08:01.355 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:01.355 SQL [3740]: pgsql_db_connect() -- 00:08:01.359 DEBUG [3740]: Database connection successful -- 00:08:01.359 INFO [3740]: _SERVER found -- 00:08:01.359 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 00:08:01.359 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:01.359 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:01.359 INFO [3740]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 00:08:01.359 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:01.371 INFO [3740]: COREGRADE is stopping... -- 00:08:01.371 DEBUG [3740]: Closing database connection -- 00:08:01.371 SQL [3740]: pgsql_close() -- 00:08:01.371 INFO [3741]: COREGRADE is starting... -- 00:08:01.371 INFO [3741]: Version from config: 1.0 -- 00:08:01.371 DEBUG [3741]: Connecting to database... -- 00:08:01.372 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:01.372 SQL [3741]: pgsql_db_connect() -- 00:08:01.376 DEBUG [3741]: Database connection successful -- 00:08:01.376 INFO [3741]: _SERVER found -- 00:08:01.376 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 00:08:01.376 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:01.376 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:01.376 INFO [3741]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 00:08:01.376 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:01.387 INFO [3741]: COREGRADE is stopping... -- 00:08:01.387 DEBUG [3741]: Closing database connection -- 00:08:01.387 SQL [3741]: pgsql_close() -- 00:08:01.419 INFO [3829]: COREGRADE is starting... -- 00:08:01.419 INFO [3829]: Version from config: 1.0 -- 00:08:01.419 DEBUG [3829]: Connecting to database... -- 00:08:01.419 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:01.419 SQL [3829]: pgsql_db_connect() -- 00:08:01.423 DEBUG [3829]: Database connection successful -- 00:08:01.423 INFO [3829]: _SERVER found -- 00:08:01.423 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 00:08:01.423 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:01.423 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:01.423 INFO [3829]: QUERY_STRING = /assets/customjs/general.js -- 00:08:01.423 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:01.435 INFO [3829]: COREGRADE is stopping... -- 00:08:01.435 DEBUG [3829]: Closing database connection -- 00:08:01.435 SQL [3829]: pgsql_close() -- 00:08:01.439 INFO [3740]: COREGRADE is starting... -- 00:08:01.439 INFO [3740]: Version from config: 1.0 -- 00:08:01.439 DEBUG [3740]: Connecting to database... -- 00:08:01.439 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:01.439 SQL [3740]: pgsql_db_connect() -- 00:08:01.443 DEBUG [3740]: Database connection successful -- 00:08:01.443 INFO [3740]: _SERVER found -- 00:08:01.443 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 00:08:01.443 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:01.443 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:01.443 INFO [3740]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 00:08:01.443 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:01.455 INFO [3740]: COREGRADE is stopping... -- 00:08:01.455 DEBUG [3740]: Closing database connection -- 00:08:01.455 SQL [3740]: pgsql_close() -- 00:08:01.523 INFO [3740]: COREGRADE is starting... -- 00:08:01.524 INFO [3740]: Version from config: 1.0 -- 00:08:01.524 DEBUG [3740]: Connecting to database... -- 00:08:01.524 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:01.524 SQL [3740]: pgsql_db_connect() -- 00:08:01.528 DEBUG [3740]: Database connection successful -- 00:08:01.528 INFO [3740]: _SERVER found -- 00:08:01.528 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 00:08:01.528 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:01.528 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:01.528 INFO [3740]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 00:08:01.528 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:01.539 INFO [3740]: COREGRADE is stopping... -- 00:08:01.539 DEBUG [3740]: Closing database connection -- 00:08:01.539 SQL [3740]: pgsql_close() -- 00:08:01.609 INFO [3740]: COREGRADE is starting... -- 00:08:01.609 INFO [3740]: Version from config: 1.0 -- 00:08:01.609 DEBUG [3740]: Connecting to database... -- 00:08:01.609 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:01.609 SQL [3740]: pgsql_db_connect() -- 00:08:01.613 DEBUG [3740]: Database connection successful -- 00:08:01.613 INFO [3740]: _SERVER found -- 00:08:01.613 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 00:08:01.613 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:01.613 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:01.613 INFO [3740]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 00:08:01.613 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:01.625 INFO [3740]: COREGRADE is stopping... -- 00:08:01.625 DEBUG [3740]: Closing database connection -- 00:08:01.625 SQL [3740]: pgsql_close() -- 00:08:01.694 INFO [3740]: COREGRADE is starting... -- 00:08:01.694 INFO [3740]: Version from config: 1.0 -- 00:08:01.694 DEBUG [3740]: Connecting to database... -- 00:08:01.694 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:01.694 SQL [3740]: pgsql_db_connect() -- 00:08:01.699 DEBUG [3740]: Database connection successful -- 00:08:01.699 INFO [3740]: _SERVER found -- 00:08:01.699 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 00:08:01.699 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:01.699 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:01.699 INFO [3740]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 00:08:01.699 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:01.710 INFO [3740]: COREGRADE is stopping... -- 00:08:01.710 DEBUG [3740]: Closing database connection -- 00:08:01.710 SQL [3740]: pgsql_close() -- 00:08:01.779 INFO [3740]: COREGRADE is starting... -- 00:08:01.780 INFO [3740]: Version from config: 1.0 -- 00:08:01.780 DEBUG [3740]: Connecting to database... -- 00:08:01.780 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:01.780 SQL [3740]: pgsql_db_connect() -- 00:08:01.785 DEBUG [3740]: Database connection successful -- 00:08:01.785 INFO [3740]: _SERVER found -- 00:08:01.785 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 00:08:01.785 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:01.785 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:01.785 INFO [3740]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 00:08:01.785 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:01.797 INFO [3740]: COREGRADE is stopping... -- 00:08:01.797 DEBUG [3740]: Closing database connection -- 00:08:01.797 SQL [3740]: pgsql_close() -- 00:08:01.866 INFO [3740]: COREGRADE is starting... -- 00:08:01.866 INFO [3740]: Version from config: 1.0 -- 00:08:01.866 DEBUG [3740]: Connecting to database... -- 00:08:01.866 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:01.866 SQL [3740]: pgsql_db_connect() -- 00:08:01.870 DEBUG [3740]: Database connection successful -- 00:08:01.870 INFO [3740]: _SERVER found -- 00:08:01.870 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 00:08:01.870 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:01.870 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:01.870 INFO [3740]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 00:08:01.870 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:01.882 INFO [3740]: COREGRADE is stopping... -- 00:08:01.882 DEBUG [3740]: Closing database connection -- 00:08:01.882 SQL [3740]: pgsql_close() -- 00:08:01.951 INFO [3740]: COREGRADE is starting... -- 00:08:01.951 INFO [3740]: Version from config: 1.0 -- 00:08:01.951 DEBUG [3740]: Connecting to database... -- 00:08:01.951 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:01.951 SQL [3740]: pgsql_db_connect() -- 00:08:01.955 DEBUG [3740]: Database connection successful -- 00:08:01.955 INFO [3740]: _SERVER found -- 00:08:01.955 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 00:08:01.955 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:01.955 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:01.955 INFO [3740]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 00:08:01.955 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:01.967 INFO [3740]: COREGRADE is stopping... -- 00:08:01.967 DEBUG [3740]: Closing database connection -- 00:08:01.967 SQL [3740]: pgsql_close() -- 00:08:02.036 INFO [3740]: COREGRADE is starting... -- 00:08:02.036 INFO [3740]: Version from config: 1.0 -- 00:08:02.036 DEBUG [3740]: Connecting to database... -- 00:08:02.036 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:02.036 SQL [3740]: pgsql_db_connect() -- 00:08:02.041 DEBUG [3740]: Database connection successful -- 00:08:02.041 INFO [3740]: _SERVER found -- 00:08:02.041 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 00:08:02.041 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:02.041 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:02.041 INFO [3740]: QUERY_STRING = /assets/js/pages/dashboard.js -- 00:08:02.041 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:02.052 INFO [3740]: COREGRADE is stopping... -- 00:08:02.052 DEBUG [3740]: Closing database connection -- 00:08:02.052 SQL [3740]: pgsql_close() -- 00:08:02.122 INFO [3740]: COREGRADE is starting... -- 00:08:02.122 INFO [3740]: Version from config: 1.0 -- 00:08:02.122 DEBUG [3740]: Connecting to database... -- 00:08:02.122 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:02.122 SQL [3740]: pgsql_db_connect() -- 00:08:02.126 DEBUG [3740]: Database connection successful -- 00:08:02.126 INFO [3740]: _SERVER found -- 00:08:02.126 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 00:08:02.126 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:02.126 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:02.126 INFO [3740]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 00:08:02.126 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:02.138 INFO [3740]: COREGRADE is stopping... -- 00:08:02.138 DEBUG [3740]: Closing database connection -- 00:08:02.138 SQL [3740]: pgsql_close() -- 00:08:02.207 INFO [3740]: COREGRADE is starting... -- 00:08:02.207 INFO [3740]: Version from config: 1.0 -- 00:08:02.207 DEBUG [3740]: Connecting to database... -- 00:08:02.207 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:02.207 SQL [3740]: pgsql_db_connect() -- 00:08:02.211 DEBUG [3740]: Database connection successful -- 00:08:02.211 INFO [3740]: _SERVER found -- 00:08:02.211 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 00:08:02.211 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:02.211 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:02.211 INFO [3740]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 00:08:02.211 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:02.223 INFO [3740]: COREGRADE is stopping... -- 00:08:02.223 DEBUG [3740]: Closing database connection -- 00:08:02.223 SQL [3740]: pgsql_close() -- 00:08:02.292 INFO [3740]: COREGRADE is starting... -- 00:08:02.292 INFO [3740]: Version from config: 1.0 -- 00:08:02.292 DEBUG [3740]: Connecting to database... -- 00:08:02.292 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:02.292 SQL [3740]: pgsql_db_connect() -- 00:08:02.296 DEBUG [3740]: Database connection successful -- 00:08:02.296 INFO [3740]: _SERVER found -- 00:08:02.296 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 00:08:02.296 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:02.296 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:02.296 INFO [3740]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 00:08:02.296 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:02.307 INFO [3740]: COREGRADE is stopping... -- 00:08:02.307 DEBUG [3740]: Closing database connection -- 00:08:02.307 SQL [3740]: pgsql_close() -- 00:08:02.376 INFO [3740]: COREGRADE is starting... -- 00:08:02.376 INFO [3740]: Version from config: 1.0 -- 00:08:02.376 DEBUG [3740]: Connecting to database... -- 00:08:02.376 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:02.377 SQL [3740]: pgsql_db_connect() -- 00:08:02.381 DEBUG [3740]: Database connection successful -- 00:08:02.381 INFO [3740]: _SERVER found -- 00:08:02.381 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 00:08:02.381 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:02.381 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:02.381 INFO [3740]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 00:08:02.381 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:02.393 INFO [3740]: COREGRADE is stopping... -- 00:08:02.393 DEBUG [3740]: Closing database connection -- 00:08:02.393 SQL [3740]: pgsql_close() -- 00:08:02.462 INFO [3740]: COREGRADE is starting... -- 00:08:02.462 INFO [3740]: Version from config: 1.0 -- 00:08:02.462 DEBUG [3740]: Connecting to database... -- 00:08:02.462 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:02.462 SQL [3740]: pgsql_db_connect() -- 00:08:02.466 DEBUG [3740]: Database connection successful -- 00:08:02.466 INFO [3740]: _SERVER found -- 00:08:02.466 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 00:08:02.466 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:02.466 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:02.466 INFO [3740]: QUERY_STRING = /assets/js/pages/picker_date.js -- 00:08:02.466 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:02.477 INFO [3740]: COREGRADE is stopping... -- 00:08:02.478 DEBUG [3740]: Closing database connection -- 00:08:02.478 SQL [3740]: pgsql_close() -- 00:08:02.546 INFO [3740]: COREGRADE is starting... -- 00:08:02.547 INFO [3740]: Version from config: 1.0 -- 00:08:02.547 DEBUG [3740]: Connecting to database... -- 00:08:02.547 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:02.547 SQL [3740]: pgsql_db_connect() -- 00:08:02.551 DEBUG [3740]: Database connection successful -- 00:08:02.551 INFO [3740]: _SERVER found -- 00:08:02.551 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 00:08:02.551 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:02.551 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:02.551 INFO [3740]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 00:08:02.551 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:02.562 INFO [3740]: COREGRADE is stopping... -- 00:08:02.562 DEBUG [3740]: Closing database connection -- 00:08:02.562 SQL [3740]: pgsql_close() -- 00:08:02.631 INFO [3740]: COREGRADE is starting... -- 00:08:02.631 INFO [3740]: Version from config: 1.0 -- 00:08:02.631 DEBUG [3740]: Connecting to database... -- 00:08:02.631 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:02.631 SQL [3740]: pgsql_db_connect() -- 00:08:02.635 DEBUG [3740]: Database connection successful -- 00:08:02.635 INFO [3740]: _SERVER found -- 00:08:02.635 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 00:08:02.635 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:02.635 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:02.635 INFO [3740]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 00:08:02.635 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:02.647 INFO [3740]: COREGRADE is stopping... -- 00:08:02.647 DEBUG [3740]: Closing database connection -- 00:08:02.647 SQL [3740]: pgsql_close() -- 00:08:02.716 INFO [3740]: COREGRADE is starting... -- 00:08:02.716 INFO [3740]: Version from config: 1.0 -- 00:08:02.716 DEBUG [3740]: Connecting to database... -- 00:08:02.716 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:02.716 SQL [3740]: pgsql_db_connect() -- 00:08:02.720 DEBUG [3740]: Database connection successful -- 00:08:02.720 INFO [3740]: _SERVER found -- 00:08:02.720 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 00:08:02.720 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:02.720 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:02.720 INFO [3740]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 00:08:02.720 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:02.731 INFO [3740]: COREGRADE is stopping... -- 00:08:02.731 DEBUG [3740]: Closing database connection -- 00:08:02.731 SQL [3740]: pgsql_close() -- 00:08:02.800 INFO [3740]: COREGRADE is starting... -- 00:08:02.800 INFO [3740]: Version from config: 1.0 -- 00:08:02.800 DEBUG [3740]: Connecting to database... -- 00:08:02.800 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:02.800 SQL [3740]: pgsql_db_connect() -- 00:08:02.804 DEBUG [3740]: Database connection successful -- 00:08:02.804 INFO [3740]: _SERVER found -- 00:08:02.804 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 00:08:02.804 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:02.804 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:02.804 INFO [3740]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 00:08:02.804 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:02.816 INFO [3740]: COREGRADE is stopping... -- 00:08:02.816 DEBUG [3740]: Closing database connection -- 00:08:02.816 SQL [3740]: pgsql_close() -- 00:08:02.884 INFO [3740]: COREGRADE is starting... -- 00:08:02.885 INFO [3740]: Version from config: 1.0 -- 00:08:02.885 DEBUG [3740]: Connecting to database... -- 00:08:02.885 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:02.885 SQL [3740]: pgsql_db_connect() -- 00:08:02.889 DEBUG [3740]: Database connection successful -- 00:08:02.889 INFO [3740]: _SERVER found -- 00:08:02.889 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 00:08:02.889 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:02.889 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:02.889 INFO [3740]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 00:08:02.889 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:02.900 INFO [3740]: COREGRADE is stopping... -- 00:08:02.900 DEBUG [3740]: Closing database connection -- 00:08:02.900 SQL [3740]: pgsql_close() -- 00:08:02.979 INFO [3740]: COREGRADE is starting... -- 00:08:02.979 INFO [3740]: Version from config: 1.0 -- 00:08:02.979 DEBUG [3740]: Connecting to database... -- 00:08:02.979 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:02.979 SQL [3740]: pgsql_db_connect() -- 00:08:02.983 DEBUG [3740]: Database connection successful -- 00:08:02.983 INFO [3740]: _SERVER found -- 00:08:02.983 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 00:08:02.983 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:02.983 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:02.983 INFO [3740]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 00:08:02.983 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:02.995 INFO [3740]: COREGRADE is stopping... -- 00:08:02.995 DEBUG [3740]: Closing database connection -- 00:08:02.995 SQL [3740]: pgsql_close() -- 00:08:03.064 INFO [3740]: COREGRADE is starting... -- 00:08:03.064 INFO [3740]: Version from config: 1.0 -- 00:08:03.064 DEBUG [3740]: Connecting to database... -- 00:08:03.064 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:03.064 SQL [3740]: pgsql_db_connect() -- 00:08:03.068 DEBUG [3740]: Database connection successful -- 00:08:03.068 INFO [3740]: _SERVER found -- 00:08:03.068 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 00:08:03.068 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:03.068 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:03.068 INFO [3740]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 00:08:03.068 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:03.079 INFO [3740]: COREGRADE is stopping... -- 00:08:03.079 DEBUG [3740]: Closing database connection -- 00:08:03.079 SQL [3740]: pgsql_close() -- 00:08:03.150 INFO [3740]: COREGRADE is starting... -- 00:08:03.150 INFO [3740]: Version from config: 1.0 -- 00:08:03.150 DEBUG [3740]: Connecting to database... -- 00:08:03.150 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:08:03.150 SQL [3740]: pgsql_db_connect() -- 00:08:03.154 DEBUG [3740]: Database connection successful -- 00:08:03.154 INFO [3740]: _SERVER found -- 00:08:03.154 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 00:08:03.154 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:08:03.154 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:08:03.154 INFO [3740]: QUERY_STRING = /assets/customjs/general.js -- 00:08:03.154 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:08:03.166 INFO [3740]: COREGRADE is stopping... -- 00:08:03.166 DEBUG [3740]: Closing database connection -- 00:08:03.166 SQL [3740]: pgsql_close() -- 00:28:03.387 INFO [3739]: COREGRADE is starting... -- 00:28:03.387 INFO [3739]: Version from config: 1.0 -- 00:28:03.387 DEBUG [3739]: Connecting to database... -- 00:28:03.387 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:03.387 SQL [3739]: pgsql_db_connect() -- 00:28:03.391 DEBUG [3739]: Database connection successful -- 00:28:03.391 INFO [3739]: _SERVER found -- 00:28:03.391 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 00:28:03.391 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:03.391 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ap6t6vn378qbmpte01l9ii6c8nr8jo1f -- 00:28:03.391 INFO [3739]: QUERY_STRING = /logout -- 00:28:03.391 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:03.426 INFO [3739]: COREGRADE is stopping... -- 00:28:03.426 DEBUG [3739]: Closing database connection -- 00:28:03.426 SQL [3739]: pgsql_close() -- 00:28:03.507 INFO [3739]: COREGRADE is starting... -- 00:28:03.507 INFO [3739]: Version from config: 1.0 -- 00:28:03.507 DEBUG [3739]: Connecting to database... -- 00:28:03.507 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:03.507 SQL [3739]: pgsql_db_connect() -- 00:28:03.511 DEBUG [3739]: Database connection successful -- 00:28:03.511 INFO [3739]: _SERVER found -- 00:28:03.511 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 00:28:03.511 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:03.511 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:03.511 INFO [3739]: QUERY_STRING = /start -- 00:28:03.511 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:03.546 INFO [3739]: COREGRADE is stopping... -- 00:28:03.546 DEBUG [3739]: Closing database connection -- 00:28:03.546 SQL [3739]: pgsql_close() -- 00:28:03.670 INFO [3739]: COREGRADE is starting... -- 00:28:03.670 INFO [3739]: Version from config: 1.0 -- 00:28:03.670 DEBUG [3739]: Connecting to database... -- 00:28:03.670 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:03.670 SQL [3739]: pgsql_db_connect() -- 00:28:03.674 DEBUG [3739]: Database connection successful -- 00:28:03.674 INFO [3739]: _SERVER found -- 00:28:03.674 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 00:28:03.674 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:03.674 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:03.674 INFO [3739]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 00:28:03.674 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:03.685 INFO [3739]: COREGRADE is stopping... -- 00:28:03.685 DEBUG [3739]: Closing database connection -- 00:28:03.685 SQL [3739]: pgsql_close() -- 00:28:03.695 INFO [3739]: COREGRADE is starting... -- 00:28:03.695 INFO [3739]: Version from config: 1.0 -- 00:28:03.695 DEBUG [3739]: Connecting to database... -- 00:28:03.695 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:03.695 SQL [3739]: pgsql_db_connect() -- 00:28:03.699 DEBUG [3739]: Database connection successful -- 00:28:03.699 INFO [3739]: _SERVER found -- 00:28:03.699 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 00:28:03.699 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:03.699 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:03.699 INFO [3739]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 00:28:03.699 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:03.711 INFO [3739]: COREGRADE is stopping... -- 00:28:03.711 DEBUG [3739]: Closing database connection -- 00:28:03.711 SQL [3739]: pgsql_close() -- 00:28:03.742 INFO [3739]: COREGRADE is starting... -- 00:28:03.743 INFO [3739]: Version from config: 1.0 -- 00:28:03.743 DEBUG [3739]: Connecting to database... -- 00:28:03.743 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:03.743 SQL [3739]: pgsql_db_connect() -- 00:28:03.747 DEBUG [3739]: Database connection successful -- 00:28:03.747 INFO [3739]: _SERVER found -- 00:28:03.747 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 00:28:03.747 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:03.747 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:03.747 INFO [3739]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 00:28:03.747 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:03.758 INFO [3739]: COREGRADE is stopping... -- 00:28:03.758 DEBUG [3739]: Closing database connection -- 00:28:03.758 SQL [3739]: pgsql_close() -- 00:28:03.765 INFO [3739]: COREGRADE is starting... -- 00:28:03.765 INFO [3739]: Version from config: 1.0 -- 00:28:03.765 DEBUG [3739]: Connecting to database... -- 00:28:03.765 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:03.765 SQL [3739]: pgsql_db_connect() -- 00:28:03.779 INFO [3742]: COREGRADE is starting... -- 00:28:03.779 INFO [3742]: Version from config: 1.0 -- 00:28:03.779 DEBUG [3742]: Connecting to database... -- 00:28:03.779 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:03.779 SQL [3742]: pgsql_db_connect() -- 00:28:03.769 DEBUG [3739]: Database connection successful -- 00:28:03.769 INFO [3739]: _SERVER found -- 00:28:03.769 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 00:28:03.769 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:03.769 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:03.769 INFO [3739]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 00:28:03.769 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:03.781 INFO [3739]: COREGRADE is stopping... -- 00:28:03.781 DEBUG [3739]: Closing database connection -- 00:28:03.781 SQL [3739]: pgsql_close() -- 00:28:03.784 DEBUG [3742]: Database connection successful -- 00:28:03.784 INFO [3742]: _SERVER found -- 00:28:03.784 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 00:28:03.784 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:03.784 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:03.784 INFO [3742]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 00:28:03.784 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:03.796 INFO [3742]: COREGRADE is stopping... -- 00:28:03.796 DEBUG [3742]: Closing database connection -- 00:28:03.796 SQL [3742]: pgsql_close() -- 00:28:03.843 INFO [3742]: COREGRADE is starting... -- 00:28:03.843 INFO [3742]: Version from config: 1.0 -- 00:28:03.843 DEBUG [3742]: Connecting to database... -- 00:28:03.843 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:03.843 SQL [3742]: pgsql_db_connect() -- 00:28:03.848 DEBUG [3742]: Database connection successful -- 00:28:03.848 INFO [3742]: _SERVER found -- 00:28:03.848 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 00:28:03.848 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:03.848 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:03.848 INFO [3742]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 00:28:03.848 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:03.859 INFO [3742]: COREGRADE is stopping... -- 00:28:03.860 DEBUG [3742]: Closing database connection -- 00:28:03.860 SQL [3742]: pgsql_close() -- 00:28:03.860 INFO [3739]: COREGRADE is starting... -- 00:28:03.860 INFO [3739]: Version from config: 1.0 -- 00:28:03.860 DEBUG [3739]: Connecting to database... -- 00:28:03.860 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:03.860 SQL [3739]: pgsql_db_connect() -- 00:28:03.864 INFO [3742]: COREGRADE is starting... -- 00:28:03.864 INFO [3742]: Version from config: 1.0 -- 00:28:03.864 DEBUG [3742]: Connecting to database... -- 00:28:03.864 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:03.864 SQL [3742]: pgsql_db_connect() -- 00:28:03.864 DEBUG [3739]: Database connection successful -- 00:28:03.864 INFO [3739]: _SERVER found -- 00:28:03.864 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 00:28:03.864 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:03.864 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:03.864 INFO [3739]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 00:28:03.864 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:03.876 INFO [3739]: COREGRADE is stopping... -- 00:28:03.876 DEBUG [3739]: Closing database connection -- 00:28:03.876 SQL [3739]: pgsql_close() -- 00:28:03.868 DEBUG [3742]: Database connection successful -- 00:28:03.868 INFO [3742]: _SERVER found -- 00:28:03.868 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 00:28:03.868 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:03.868 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:03.868 INFO [3742]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 00:28:03.868 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:03.880 INFO [3742]: COREGRADE is stopping... -- 00:28:03.880 DEBUG [3742]: Closing database connection -- 00:28:03.880 SQL [3742]: pgsql_close() -- 00:28:03.939 INFO [3742]: COREGRADE is starting... -- 00:28:03.940 INFO [3742]: Version from config: 1.0 -- 00:28:03.940 DEBUG [3742]: Connecting to database... -- 00:28:03.940 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:03.940 SQL [3742]: pgsql_db_connect() -- 00:28:03.948 INFO [3739]: COREGRADE is starting... -- 00:28:03.948 INFO [3739]: Version from config: 1.0 -- 00:28:03.948 DEBUG [3739]: Connecting to database... -- 00:28:03.948 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:03.948 SQL [3739]: pgsql_db_connect() -- 00:28:03.944 DEBUG [3742]: Database connection successful -- 00:28:03.944 INFO [3742]: _SERVER found -- 00:28:03.944 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 00:28:03.944 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:03.944 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:03.944 INFO [3742]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 00:28:03.944 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:03.956 INFO [3742]: COREGRADE is stopping... -- 00:28:03.956 INFO [3738]: COREGRADE is starting... -- 00:28:03.956 DEBUG [3742]: Closing database connection -- 00:28:03.956 SQL [3742]: pgsql_close() -- 00:28:03.956 INFO [3738]: Version from config: 1.0 -- 00:28:03.956 DEBUG [3738]: Connecting to database... -- 00:28:03.956 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:03.956 SQL [3738]: pgsql_db_connect() -- 00:28:03.952 DEBUG [3739]: Database connection successful -- 00:28:03.952 INFO [3739]: _SERVER found -- 00:28:03.952 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 00:28:03.952 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:03.952 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:03.952 INFO [3739]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 00:28:03.952 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:03.964 INFO [3739]: COREGRADE is stopping... -- 00:28:03.964 DEBUG [3739]: Closing database connection -- 00:28:03.964 SQL [3739]: pgsql_close() -- 00:28:03.960 DEBUG [3738]: Database connection successful -- 00:28:03.960 INFO [3738]: _SERVER found -- 00:28:03.960 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 00:28:03.960 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:03.960 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:03.960 INFO [3738]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 00:28:03.960 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:03.974 INFO [3738]: COREGRADE is stopping... -- 00:28:03.974 DEBUG [3738]: Closing database connection -- 00:28:03.974 SQL [3738]: pgsql_close() -- 00:28:04.031 INFO [3738]: COREGRADE is starting... -- 00:28:04.031 INFO [3738]: Version from config: 1.0 -- 00:28:04.031 DEBUG [3738]: Connecting to database... -- 00:28:04.031 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:04.031 SQL [3738]: pgsql_db_connect() -- 00:28:04.037 INFO [3739]: COREGRADE is starting... -- 00:28:04.037 INFO [3739]: Version from config: 1.0 -- 00:28:04.037 DEBUG [3739]: Connecting to database... -- 00:28:04.037 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:04.037 SQL [3739]: pgsql_db_connect() -- 00:28:04.044 INFO [3742]: COREGRADE is starting... -- 00:28:04.044 INFO [3742]: Version from config: 1.0 -- 00:28:04.044 DEBUG [3742]: Connecting to database... -- 00:28:04.044 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:04.044 SQL [3742]: pgsql_db_connect() -- 00:28:04.035 DEBUG [3738]: Database connection successful -- 00:28:04.035 INFO [3738]: _SERVER found -- 00:28:04.035 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 00:28:04.035 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:04.035 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:04.035 INFO [3738]: QUERY_STRING = /assets/js/pages/dashboard.js -- 00:28:04.035 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:04.047 INFO [3738]: COREGRADE is stopping... -- 00:28:04.047 DEBUG [3738]: Closing database connection -- 00:28:04.047 SQL [3738]: pgsql_close() -- 00:28:04.041 DEBUG [3739]: Database connection successful -- 00:28:04.041 INFO [3739]: _SERVER found -- 00:28:04.042 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 00:28:04.042 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:04.042 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:04.042 INFO [3739]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 00:28:04.042 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:04.053 INFO [3739]: COREGRADE is stopping... -- 00:28:04.053 DEBUG [3739]: Closing database connection -- 00:28:04.053 SQL [3739]: pgsql_close() -- 00:28:04.049 DEBUG [3742]: Database connection successful -- 00:28:04.049 INFO [3742]: _SERVER found -- 00:28:04.049 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 00:28:04.049 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:04.049 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:04.049 INFO [3742]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 00:28:04.049 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:04.061 INFO [3742]: COREGRADE is stopping... -- 00:28:04.061 DEBUG [3742]: Closing database connection -- 00:28:04.061 SQL [3742]: pgsql_close() -- 00:28:04.115 INFO [3742]: COREGRADE is starting... -- 00:28:04.115 INFO [3742]: Version from config: 1.0 -- 00:28:04.115 DEBUG [3742]: Connecting to database... -- 00:28:04.115 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:04.115 SQL [3742]: pgsql_db_connect() -- 00:28:04.123 INFO [3739]: COREGRADE is starting... -- 00:28:04.123 INFO [3739]: Version from config: 1.0 -- 00:28:04.123 DEBUG [3739]: Connecting to database... -- 00:28:04.124 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:04.124 SQL [3739]: pgsql_db_connect() -- 00:28:04.130 INFO [3738]: COREGRADE is starting... -- 00:28:04.130 INFO [3738]: Version from config: 1.0 -- 00:28:04.130 DEBUG [3738]: Connecting to database... -- 00:28:04.130 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:04.130 SQL [3738]: pgsql_db_connect() -- 00:28:04.119 DEBUG [3742]: Database connection successful -- 00:28:04.119 INFO [3742]: _SERVER found -- 00:28:04.119 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 00:28:04.119 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:04.119 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:04.119 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 00:28:04.119 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:04.131 INFO [3742]: COREGRADE is stopping... -- 00:28:04.131 DEBUG [3742]: Closing database connection -- 00:28:04.131 SQL [3742]: pgsql_close() -- 00:28:04.127 DEBUG [3739]: Database connection successful -- 00:28:04.127 INFO [3739]: _SERVER found -- 00:28:04.128 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 00:28:04.128 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:04.128 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:04.128 INFO [3739]: QUERY_STRING = /assets/js/pages/picker_date.js -- 00:28:04.128 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:04.139 INFO [3739]: COREGRADE is stopping... -- 00:28:04.139 DEBUG [3739]: Closing database connection -- 00:28:04.139 SQL [3739]: pgsql_close() -- 00:28:04.134 DEBUG [3738]: Database connection successful -- 00:28:04.134 INFO [3738]: _SERVER found -- 00:28:04.134 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 00:28:04.134 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:04.134 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:04.134 INFO [3738]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 00:28:04.134 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:04.146 INFO [3738]: COREGRADE is stopping... -- 00:28:04.146 DEBUG [3738]: Closing database connection -- 00:28:04.146 SQL [3738]: pgsql_close() -- 00:28:04.199 INFO [3738]: COREGRADE is starting... -- 00:28:04.200 INFO [3738]: Version from config: 1.0 -- 00:28:04.200 DEBUG [3738]: Connecting to database... -- 00:28:04.200 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:04.200 SQL [3738]: pgsql_db_connect() -- 00:28:04.208 INFO [3739]: COREGRADE is starting... -- 00:28:04.209 INFO [3739]: Version from config: 1.0 -- 00:28:04.209 DEBUG [3739]: Connecting to database... -- 00:28:04.209 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:04.209 SQL [3739]: pgsql_db_connect() -- 00:28:04.214 INFO [3742]: COREGRADE is starting... -- 00:28:04.214 INFO [3742]: Version from config: 1.0 -- 00:28:04.214 DEBUG [3742]: Connecting to database... -- 00:28:04.214 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:04.214 SQL [3742]: pgsql_db_connect() -- 00:28:04.204 DEBUG [3738]: Database connection successful -- 00:28:04.204 INFO [3738]: _SERVER found -- 00:28:04.204 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 00:28:04.204 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:04.204 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:04.204 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 00:28:04.204 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:04.215 INFO [3738]: COREGRADE is stopping... -- 00:28:04.215 DEBUG [3738]: Closing database connection -- 00:28:04.215 SQL [3738]: pgsql_close() -- 00:28:04.213 DEBUG [3739]: Database connection successful -- 00:28:04.213 INFO [3739]: _SERVER found -- 00:28:04.213 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 00:28:04.213 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:04.213 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:04.213 INFO [3739]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 00:28:04.213 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:04.224 INFO [3739]: COREGRADE is stopping... -- 00:28:04.224 DEBUG [3739]: Closing database connection -- 00:28:04.224 SQL [3739]: pgsql_close() -- 00:28:04.219 DEBUG [3742]: Database connection successful -- 00:28:04.219 INFO [3742]: _SERVER found -- 00:28:04.219 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 00:28:04.219 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:04.219 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:04.219 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 00:28:04.219 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:04.231 INFO [3742]: COREGRADE is stopping... -- 00:28:04.231 DEBUG [3742]: Closing database connection -- 00:28:04.231 SQL [3742]: pgsql_close() -- 00:28:04.283 INFO [3742]: COREGRADE is starting... -- 00:28:04.283 INFO [3742]: Version from config: 1.0 -- 00:28:04.283 DEBUG [3742]: Connecting to database... -- 00:28:04.283 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:04.283 SQL [3742]: pgsql_db_connect() -- 00:28:04.293 INFO [3739]: COREGRADE is starting... -- 00:28:04.293 INFO [3739]: Version from config: 1.0 -- 00:28:04.293 DEBUG [3739]: Connecting to database... -- 00:28:04.293 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:04.293 SQL [3739]: pgsql_db_connect() -- 00:28:04.299 INFO [3738]: COREGRADE is starting... -- 00:28:04.299 INFO [3738]: Version from config: 1.0 -- 00:28:04.299 DEBUG [3738]: Connecting to database... -- 00:28:04.299 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:04.299 SQL [3738]: pgsql_db_connect() -- 00:28:04.287 DEBUG [3742]: Database connection successful -- 00:28:04.287 INFO [3742]: _SERVER found -- 00:28:04.287 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 00:28:04.288 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:04.288 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:04.288 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 00:28:04.288 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:04.299 INFO [3742]: COREGRADE is stopping... -- 00:28:04.300 DEBUG [3742]: Closing database connection -- 00:28:04.300 SQL [3742]: pgsql_close() -- 00:28:04.297 DEBUG [3739]: Database connection successful -- 00:28:04.297 INFO [3739]: _SERVER found -- 00:28:04.297 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 00:28:04.297 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:04.297 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:04.297 INFO [3739]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 00:28:04.297 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:04.309 INFO [3739]: COREGRADE is stopping... -- 00:28:04.309 DEBUG [3739]: Closing database connection -- 00:28:04.309 SQL [3739]: pgsql_close() -- 00:28:04.303 DEBUG [3738]: Database connection successful -- 00:28:04.303 INFO [3738]: _SERVER found -- 00:28:04.303 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 00:28:04.303 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:04.303 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:04.303 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 00:28:04.303 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:04.315 INFO [3738]: COREGRADE is stopping... -- 00:28:04.315 DEBUG [3738]: Closing database connection -- 00:28:04.315 SQL [3738]: pgsql_close() -- 00:28:04.367 INFO [3738]: COREGRADE is starting... -- 00:28:04.368 INFO [3738]: Version from config: 1.0 -- 00:28:04.368 DEBUG [3738]: Connecting to database... -- 00:28:04.368 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:04.368 SQL [3738]: pgsql_db_connect() -- 00:28:04.378 INFO [3739]: COREGRADE is starting... -- 00:28:04.378 INFO [3739]: Version from config: 1.0 -- 00:28:04.378 DEBUG [3739]: Connecting to database... -- 00:28:04.378 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:04.378 SQL [3739]: pgsql_db_connect() -- 00:28:04.372 DEBUG [3738]: Database connection successful -- 00:28:04.372 INFO [3738]: _SERVER found -- 00:28:04.372 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 00:28:04.372 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:04.372 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:04.372 INFO [3738]: QUERY_STRING = /assets/customjs/general.js -- 00:28:04.372 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:04.383 INFO [3738]: COREGRADE is stopping... -- 00:28:04.383 DEBUG [3738]: Closing database connection -- 00:28:04.383 SQL [3738]: pgsql_close() -- 00:28:04.382 DEBUG [3739]: Database connection successful -- 00:28:04.382 INFO [3739]: _SERVER found -- 00:28:04.382 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 00:28:04.382 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:04.382 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:04.382 INFO [3739]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 00:28:04.382 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:04.394 INFO [3739]: COREGRADE is stopping... -- 00:28:04.394 DEBUG [3739]: Closing database connection -- 00:28:04.394 SQL [3739]: pgsql_close() -- 00:28:04.463 INFO [3739]: COREGRADE is starting... -- 00:28:04.463 INFO [3739]: Version from config: 1.0 -- 00:28:04.463 DEBUG [3739]: Connecting to database... -- 00:28:04.463 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:04.463 SQL [3739]: pgsql_db_connect() -- 00:28:04.468 DEBUG [3739]: Database connection successful -- 00:28:04.468 INFO [3739]: _SERVER found -- 00:28:04.468 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 00:28:04.468 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:04.468 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:04.468 INFO [3739]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 00:28:04.468 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:04.479 INFO [3739]: COREGRADE is stopping... -- 00:28:04.479 DEBUG [3739]: Closing database connection -- 00:28:04.479 SQL [3739]: pgsql_close() -- 00:28:04.548 INFO [3739]: COREGRADE is starting... -- 00:28:04.548 INFO [3739]: Version from config: 1.0 -- 00:28:04.549 DEBUG [3739]: Connecting to database... -- 00:28:04.549 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:04.549 SQL [3739]: pgsql_db_connect() -- 00:28:04.553 DEBUG [3739]: Database connection successful -- 00:28:04.553 INFO [3739]: _SERVER found -- 00:28:04.553 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 00:28:04.553 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:04.553 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:04.553 INFO [3739]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 00:28:04.553 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:04.564 INFO [3739]: COREGRADE is stopping... -- 00:28:04.564 DEBUG [3739]: Closing database connection -- 00:28:04.564 SQL [3739]: pgsql_close() -- 00:28:04.633 INFO [3739]: COREGRADE is starting... -- 00:28:04.634 INFO [3739]: Version from config: 1.0 -- 00:28:04.634 DEBUG [3739]: Connecting to database... -- 00:28:04.634 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:04.634 SQL [3739]: pgsql_db_connect() -- 00:28:04.638 DEBUG [3739]: Database connection successful -- 00:28:04.638 INFO [3739]: _SERVER found -- 00:28:04.638 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 00:28:04.638 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:04.638 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:04.638 INFO [3739]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 00:28:04.638 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:04.649 INFO [3739]: COREGRADE is stopping... -- 00:28:04.649 DEBUG [3739]: Closing database connection -- 00:28:04.649 SQL [3739]: pgsql_close() -- 00:28:04.719 INFO [3739]: COREGRADE is starting... -- 00:28:04.719 INFO [3739]: Version from config: 1.0 -- 00:28:04.719 DEBUG [3739]: Connecting to database... -- 00:28:04.719 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:04.719 SQL [3739]: pgsql_db_connect() -- 00:28:04.723 DEBUG [3739]: Database connection successful -- 00:28:04.723 INFO [3739]: _SERVER found -- 00:28:04.723 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 00:28:04.723 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:04.723 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:04.723 INFO [3739]: QUERY_STRING = /assets/js/pages/dashboard.js -- 00:28:04.723 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:04.735 INFO [3739]: COREGRADE is stopping... -- 00:28:04.735 DEBUG [3739]: Closing database connection -- 00:28:04.735 SQL [3739]: pgsql_close() -- 00:28:04.805 INFO [3739]: COREGRADE is starting... -- 00:28:04.805 INFO [3739]: Version from config: 1.0 -- 00:28:04.805 DEBUG [3739]: Connecting to database... -- 00:28:04.805 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:04.805 SQL [3739]: pgsql_db_connect() -- 00:28:04.809 DEBUG [3739]: Database connection successful -- 00:28:04.809 INFO [3739]: _SERVER found -- 00:28:04.809 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 00:28:04.809 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:04.809 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:04.809 INFO [3739]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 00:28:04.809 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:04.821 INFO [3739]: COREGRADE is stopping... -- 00:28:04.821 DEBUG [3739]: Closing database connection -- 00:28:04.821 SQL [3739]: pgsql_close() -- 00:28:04.890 INFO [3739]: COREGRADE is starting... -- 00:28:04.890 INFO [3739]: Version from config: 1.0 -- 00:28:04.890 DEBUG [3739]: Connecting to database... -- 00:28:04.890 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:04.890 SQL [3739]: pgsql_db_connect() -- 00:28:04.894 DEBUG [3739]: Database connection successful -- 00:28:04.894 INFO [3739]: _SERVER found -- 00:28:04.894 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 00:28:04.894 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:04.894 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:04.894 INFO [3739]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 00:28:04.894 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:04.906 INFO [3739]: COREGRADE is stopping... -- 00:28:04.906 DEBUG [3739]: Closing database connection -- 00:28:04.906 SQL [3739]: pgsql_close() -- 00:28:04.975 INFO [3739]: COREGRADE is starting... -- 00:28:04.975 INFO [3739]: Version from config: 1.0 -- 00:28:04.975 DEBUG [3739]: Connecting to database... -- 00:28:04.975 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:04.975 SQL [3739]: pgsql_db_connect() -- 00:28:04.979 DEBUG [3739]: Database connection successful -- 00:28:04.979 INFO [3739]: _SERVER found -- 00:28:04.979 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 00:28:04.979 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:04.979 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:04.979 INFO [3739]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 00:28:04.979 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:04.991 INFO [3739]: COREGRADE is stopping... -- 00:28:04.991 DEBUG [3739]: Closing database connection -- 00:28:04.991 SQL [3739]: pgsql_close() -- 00:28:05.060 INFO [3739]: COREGRADE is starting... -- 00:28:05.061 INFO [3739]: Version from config: 1.0 -- 00:28:05.061 DEBUG [3739]: Connecting to database... -- 00:28:05.061 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:05.061 SQL [3739]: pgsql_db_connect() -- 00:28:05.065 DEBUG [3739]: Database connection successful -- 00:28:05.065 INFO [3739]: _SERVER found -- 00:28:05.065 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 00:28:05.065 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:05.065 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:05.065 INFO [3739]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 00:28:05.065 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:05.076 INFO [3739]: COREGRADE is stopping... -- 00:28:05.076 DEBUG [3739]: Closing database connection -- 00:28:05.076 SQL [3739]: pgsql_close() -- 00:28:05.146 INFO [3739]: COREGRADE is starting... -- 00:28:05.146 INFO [3739]: Version from config: 1.0 -- 00:28:05.146 DEBUG [3739]: Connecting to database... -- 00:28:05.146 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:05.146 SQL [3739]: pgsql_db_connect() -- 00:28:05.150 DEBUG [3739]: Database connection successful -- 00:28:05.150 INFO [3739]: _SERVER found -- 00:28:05.150 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 00:28:05.150 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:05.150 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:05.150 INFO [3739]: QUERY_STRING = /assets/js/pages/picker_date.js -- 00:28:05.150 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:05.162 INFO [3739]: COREGRADE is stopping... -- 00:28:05.162 DEBUG [3739]: Closing database connection -- 00:28:05.162 SQL [3739]: pgsql_close() -- 00:28:05.231 INFO [3739]: COREGRADE is starting... -- 00:28:05.232 INFO [3739]: Version from config: 1.0 -- 00:28:05.232 DEBUG [3739]: Connecting to database... -- 00:28:05.232 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:05.232 SQL [3739]: pgsql_db_connect() -- 00:28:05.236 DEBUG [3739]: Database connection successful -- 00:28:05.236 INFO [3739]: _SERVER found -- 00:28:05.236 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 00:28:05.236 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:05.236 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:05.236 INFO [3739]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 00:28:05.236 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:05.247 INFO [3739]: COREGRADE is stopping... -- 00:28:05.247 DEBUG [3739]: Closing database connection -- 00:28:05.247 SQL [3739]: pgsql_close() -- 00:28:05.317 INFO [3739]: COREGRADE is starting... -- 00:28:05.317 INFO [3739]: Version from config: 1.0 -- 00:28:05.317 DEBUG [3739]: Connecting to database... -- 00:28:05.317 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:05.317 SQL [3739]: pgsql_db_connect() -- 00:28:05.321 DEBUG [3739]: Database connection successful -- 00:28:05.321 INFO [3739]: _SERVER found -- 00:28:05.321 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 00:28:05.321 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:05.321 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:05.321 INFO [3739]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 00:28:05.321 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:05.332 INFO [3739]: COREGRADE is stopping... -- 00:28:05.332 DEBUG [3739]: Closing database connection -- 00:28:05.332 SQL [3739]: pgsql_close() -- 00:28:05.402 INFO [3739]: COREGRADE is starting... -- 00:28:05.402 INFO [3739]: Version from config: 1.0 -- 00:28:05.402 DEBUG [3739]: Connecting to database... -- 00:28:05.402 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:05.402 SQL [3739]: pgsql_db_connect() -- 00:28:05.406 DEBUG [3739]: Database connection successful -- 00:28:05.406 INFO [3739]: _SERVER found -- 00:28:05.406 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 00:28:05.406 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:05.406 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:05.406 INFO [3739]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 00:28:05.406 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:05.418 INFO [3739]: COREGRADE is stopping... -- 00:28:05.418 DEBUG [3739]: Closing database connection -- 00:28:05.418 SQL [3739]: pgsql_close() -- 00:28:05.489 INFO [3739]: COREGRADE is starting... -- 00:28:05.489 INFO [3739]: Version from config: 1.0 -- 00:28:05.489 DEBUG [3739]: Connecting to database... -- 00:28:05.489 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:05.489 SQL [3739]: pgsql_db_connect() -- 00:28:05.493 DEBUG [3739]: Database connection successful -- 00:28:05.493 INFO [3739]: _SERVER found -- 00:28:05.493 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 00:28:05.493 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:05.493 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:05.493 INFO [3739]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 00:28:05.493 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:05.505 INFO [3739]: COREGRADE is stopping... -- 00:28:05.505 DEBUG [3739]: Closing database connection -- 00:28:05.505 SQL [3739]: pgsql_close() -- 00:28:05.574 INFO [3739]: COREGRADE is starting... -- 00:28:05.574 INFO [3739]: Version from config: 1.0 -- 00:28:05.574 DEBUG [3739]: Connecting to database... -- 00:28:05.574 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:05.574 SQL [3739]: pgsql_db_connect() -- 00:28:05.578 DEBUG [3739]: Database connection successful -- 00:28:05.578 INFO [3739]: _SERVER found -- 00:28:05.578 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 00:28:05.578 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:05.578 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:05.578 INFO [3739]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 00:28:05.578 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:05.590 INFO [3739]: COREGRADE is stopping... -- 00:28:05.590 DEBUG [3739]: Closing database connection -- 00:28:05.590 SQL [3739]: pgsql_close() -- 00:28:05.670 INFO [3739]: COREGRADE is starting... -- 00:28:05.670 INFO [3739]: Version from config: 1.0 -- 00:28:05.670 DEBUG [3739]: Connecting to database... -- 00:28:05.670 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:05.670 SQL [3739]: pgsql_db_connect() -- 00:28:05.674 DEBUG [3739]: Database connection successful -- 00:28:05.674 INFO [3739]: _SERVER found -- 00:28:05.674 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 00:28:05.674 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:05.674 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:05.674 INFO [3739]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 00:28:05.674 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:05.686 INFO [3739]: COREGRADE is stopping... -- 00:28:05.686 DEBUG [3739]: Closing database connection -- 00:28:05.686 SQL [3739]: pgsql_close() -- 00:28:05.755 INFO [3739]: COREGRADE is starting... -- 00:28:05.756 INFO [3739]: Version from config: 1.0 -- 00:28:05.756 DEBUG [3739]: Connecting to database... -- 00:28:05.756 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:05.756 SQL [3739]: pgsql_db_connect() -- 00:28:05.760 DEBUG [3739]: Database connection successful -- 00:28:05.760 INFO [3739]: _SERVER found -- 00:28:05.760 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 00:28:05.760 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:05.760 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:05.760 INFO [3739]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 00:28:05.760 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:05.771 INFO [3739]: COREGRADE is stopping... -- 00:28:05.771 DEBUG [3739]: Closing database connection -- 00:28:05.771 SQL [3739]: pgsql_close() -- 00:28:05.842 INFO [3739]: COREGRADE is starting... -- 00:28:05.843 INFO [3739]: Version from config: 1.0 -- 00:28:05.843 DEBUG [3739]: Connecting to database... -- 00:28:05.843 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:28:05.843 SQL [3739]: pgsql_db_connect() -- 00:28:05.847 DEBUG [3739]: Database connection successful -- 00:28:05.847 INFO [3739]: _SERVER found -- 00:28:05.847 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 00:28:05.847 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:28:05.847 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:28:05.847 INFO [3739]: QUERY_STRING = /assets/customjs/general.js -- 00:28:05.847 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:28:05.858 INFO [3739]: COREGRADE is stopping... -- 00:28:05.858 DEBUG [3739]: Closing database connection -- 00:28:05.858 SQL [3739]: pgsql_close() -- 00:48:06.080 INFO [3828]: COREGRADE is starting... -- 00:48:06.080 INFO [3828]: Version from config: 1.0 -- 00:48:06.080 DEBUG [3828]: Connecting to database... -- 00:48:06.080 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:06.080 SQL [3828]: pgsql_db_connect() -- 00:48:06.085 DEBUG [3828]: Database connection successful -- 00:48:06.085 INFO [3828]: _SERVER found -- 00:48:06.085 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 00:48:06.085 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:06.085 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=dkkehbs47t1095vo7r4okhb7cr3t1ms0 -- 00:48:06.085 INFO [3828]: QUERY_STRING = /logout -- 00:48:06.085 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:06.119 INFO [3828]: COREGRADE is stopping... -- 00:48:06.119 DEBUG [3828]: Closing database connection -- 00:48:06.119 SQL [3828]: pgsql_close() -- 00:48:06.200 INFO [3828]: COREGRADE is starting... -- 00:48:06.200 INFO [3828]: Version from config: 1.0 -- 00:48:06.200 DEBUG [3828]: Connecting to database... -- 00:48:06.200 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:06.200 SQL [3828]: pgsql_db_connect() -- 00:48:06.204 DEBUG [3828]: Database connection successful -- 00:48:06.204 INFO [3828]: _SERVER found -- 00:48:06.204 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 00:48:06.204 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:06.204 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:06.204 INFO [3828]: QUERY_STRING = /start -- 00:48:06.204 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:06.238 INFO [3828]: COREGRADE is stopping... -- 00:48:06.238 DEBUG [3828]: Closing database connection -- 00:48:06.238 SQL [3828]: pgsql_close() -- 00:48:06.371 INFO [3800]: COREGRADE is starting... -- 00:48:06.372 INFO [3800]: Version from config: 1.0 -- 00:48:06.372 DEBUG [3800]: Connecting to database... -- 00:48:06.372 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:06.372 SQL [3800]: pgsql_db_connect() -- 00:48:06.376 DEBUG [3800]: Database connection successful -- 00:48:06.376 INFO [3800]: _SERVER found -- 00:48:06.376 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 00:48:06.376 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:06.376 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:06.376 INFO [3800]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 00:48:06.376 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:06.388 INFO [3800]: COREGRADE is stopping... -- 00:48:06.388 DEBUG [3800]: Closing database connection -- 00:48:06.388 SQL [3800]: pgsql_close() -- 00:48:06.390 INFO [3828]: COREGRADE is starting... -- 00:48:06.390 INFO [3828]: Version from config: 1.0 -- 00:48:06.390 DEBUG [3828]: Connecting to database... -- 00:48:06.390 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:06.390 SQL [3828]: pgsql_db_connect() -- 00:48:06.394 DEBUG [3828]: Database connection successful -- 00:48:06.394 INFO [3828]: _SERVER found -- 00:48:06.394 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 00:48:06.394 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:06.394 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:06.394 INFO [3828]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 00:48:06.394 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:06.406 INFO [3828]: COREGRADE is stopping... -- 00:48:06.406 DEBUG [3828]: Closing database connection -- 00:48:06.406 SQL [3828]: pgsql_close() -- 00:48:06.447 INFO [3741]: COREGRADE is starting... -- 00:48:06.447 INFO [3741]: Version from config: 1.0 -- 00:48:06.447 DEBUG [3741]: Connecting to database... -- 00:48:06.447 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:06.447 SQL [3741]: pgsql_db_connect() -- 00:48:06.451 DEBUG [3741]: Database connection successful -- 00:48:06.451 INFO [3741]: _SERVER found -- 00:48:06.451 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 00:48:06.451 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:06.451 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:06.451 INFO [3741]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 00:48:06.451 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:06.463 INFO [3741]: COREGRADE is stopping... -- 00:48:06.463 DEBUG [3741]: Closing database connection -- 00:48:06.463 SQL [3741]: pgsql_close() -- 00:48:06.468 INFO [3800]: COREGRADE is starting... -- 00:48:06.468 INFO [3800]: Version from config: 1.0 -- 00:48:06.468 DEBUG [3800]: Connecting to database... -- 00:48:06.468 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:06.468 SQL [3800]: pgsql_db_connect() -- 00:48:06.473 INFO [3828]: COREGRADE is starting... -- 00:48:06.474 INFO [3828]: Version from config: 1.0 -- 00:48:06.474 DEBUG [3828]: Connecting to database... -- 00:48:06.474 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:06.474 SQL [3828]: pgsql_db_connect() -- 00:48:06.472 DEBUG [3800]: Database connection successful -- 00:48:06.472 INFO [3800]: _SERVER found -- 00:48:06.472 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 00:48:06.472 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:06.472 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:06.472 INFO [3800]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 00:48:06.472 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:06.483 INFO [3800]: COREGRADE is stopping... -- 00:48:06.483 DEBUG [3800]: Closing database connection -- 00:48:06.483 SQL [3800]: pgsql_close() -- 00:48:06.478 DEBUG [3828]: Database connection successful -- 00:48:06.478 INFO [3828]: _SERVER found -- 00:48:06.478 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 00:48:06.478 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:06.478 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:06.478 INFO [3828]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 00:48:06.478 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:06.490 INFO [3828]: COREGRADE is stopping... -- 00:48:06.490 DEBUG [3828]: Closing database connection -- 00:48:06.490 SQL [3828]: pgsql_close() -- 00:48:06.548 INFO [3741]: COREGRADE is starting... -- 00:48:06.548 INFO [3741]: Version from config: 1.0 -- 00:48:06.548 DEBUG [3741]: Connecting to database... -- 00:48:06.548 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:06.548 SQL [3741]: pgsql_db_connect() -- 00:48:06.557 INFO [3828]: COREGRADE is starting... -- 00:48:06.557 INFO [3828]: Version from config: 1.0 -- 00:48:06.557 DEBUG [3828]: Connecting to database... -- 00:48:06.557 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:06.557 SQL [3828]: pgsql_db_connect() -- 00:48:06.564 INFO [3800]: COREGRADE is starting... -- 00:48:06.552 DEBUG [3741]: Database connection successful -- 00:48:06.552 INFO [3741]: _SERVER found -- 00:48:06.552 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 00:48:06.552 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:06.552 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:06.552 INFO [3741]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 00:48:06.552 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:06.564 INFO [3741]: COREGRADE is stopping... -- 00:48:06.564 INFO [3800]: Version from config: 1.0 -- 00:48:06.564 DEBUG [3800]: Connecting to database... -- 00:48:06.564 DEBUG [3741]: Closing database connection -- 00:48:06.564 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:06.564 SQL [3741]: pgsql_close() -- 00:48:06.564 SQL [3800]: pgsql_db_connect() -- 00:48:06.561 DEBUG [3828]: Database connection successful -- 00:48:06.561 INFO [3828]: _SERVER found -- 00:48:06.561 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 00:48:06.561 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:06.561 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:06.561 INFO [3828]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 00:48:06.561 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:06.573 INFO [3828]: COREGRADE is stopping... -- 00:48:06.573 DEBUG [3828]: Closing database connection -- 00:48:06.573 SQL [3828]: pgsql_close() -- 00:48:06.568 DEBUG [3800]: Database connection successful -- 00:48:06.568 INFO [3800]: _SERVER found -- 00:48:06.568 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 00:48:06.568 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:06.568 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:06.568 INFO [3800]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 00:48:06.568 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:06.580 INFO [3800]: COREGRADE is stopping... -- 00:48:06.580 DEBUG [3800]: Closing database connection -- 00:48:06.580 SQL [3800]: pgsql_close() -- 00:48:06.641 INFO [3828]: COREGRADE is starting... -- 00:48:06.641 INFO [3828]: Version from config: 1.0 -- 00:48:06.641 DEBUG [3828]: Connecting to database... -- 00:48:06.641 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:06.641 SQL [3828]: pgsql_db_connect() -- 00:48:06.647 INFO [3741]: COREGRADE is starting... -- 00:48:06.647 INFO [3741]: Version from config: 1.0 -- 00:48:06.647 DEBUG [3741]: Connecting to database... -- 00:48:06.647 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:06.647 SQL [3741]: pgsql_db_connect() -- 00:48:06.646 DEBUG [3828]: Database connection successful -- 00:48:06.646 INFO [3828]: _SERVER found -- 00:48:06.646 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 00:48:06.646 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:06.646 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:06.646 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 00:48:06.646 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:06.657 INFO [3828]: COREGRADE is stopping... -- 00:48:06.657 DEBUG [3828]: Closing database connection -- 00:48:06.657 SQL [3828]: pgsql_close() -- 00:48:06.659 INFO [3800]: COREGRADE is starting... -- 00:48:06.659 INFO [3800]: Version from config: 1.0 -- 00:48:06.659 DEBUG [3800]: Connecting to database... -- 00:48:06.659 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:06.659 SQL [3800]: pgsql_db_connect() -- 00:48:06.651 DEBUG [3741]: Database connection successful -- 00:48:06.651 INFO [3741]: _SERVER found -- 00:48:06.651 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 00:48:06.651 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:06.651 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:06.651 INFO [3741]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 00:48:06.651 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:06.663 INFO [3741]: COREGRADE is stopping... -- 00:48:06.663 DEBUG [3741]: Closing database connection -- 00:48:06.663 SQL [3741]: pgsql_close() -- 00:48:06.663 DEBUG [3800]: Database connection successful -- 00:48:06.663 INFO [3800]: _SERVER found -- 00:48:06.664 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 00:48:06.664 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:06.664 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:06.664 INFO [3800]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 00:48:06.664 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:06.675 INFO [3800]: COREGRADE is stopping... -- 00:48:06.675 DEBUG [3800]: Closing database connection -- 00:48:06.675 SQL [3800]: pgsql_close() -- 00:48:06.725 INFO [3828]: COREGRADE is starting... -- 00:48:06.725 INFO [3828]: Version from config: 1.0 -- 00:48:06.725 DEBUG [3828]: Connecting to database... -- 00:48:06.726 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:06.726 SQL [3828]: pgsql_db_connect() -- 00:48:06.730 DEBUG [3828]: Database connection successful -- 00:48:06.730 INFO [3828]: _SERVER found -- 00:48:06.730 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 00:48:06.730 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:06.730 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:06.730 INFO [3828]: QUERY_STRING = /assets/js/pages/dashboard.js -- 00:48:06.730 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:06.741 INFO [3828]: COREGRADE is stopping... -- 00:48:06.741 DEBUG [3828]: Closing database connection -- 00:48:06.741 SQL [3828]: pgsql_close() -- 00:48:06.746 INFO [3800]: COREGRADE is starting... -- 00:48:06.746 INFO [3741]: COREGRADE is starting... -- 00:48:06.746 INFO [3800]: Version from config: 1.0 -- 00:48:06.746 DEBUG [3800]: Connecting to database... -- 00:48:06.746 INFO [3741]: Version from config: 1.0 -- 00:48:06.746 DEBUG [3741]: Connecting to database... -- 00:48:06.746 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:06.746 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:06.746 SQL [3800]: pgsql_db_connect() -- 00:48:06.746 SQL [3741]: pgsql_db_connect() -- 00:48:06.750 DEBUG [3741]: Database connection successful -- 00:48:06.750 INFO [3741]: _SERVER found -- 00:48:06.750 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 00:48:06.750 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:06.750 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:06.750 INFO [3741]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 00:48:06.750 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:06.762 INFO [3741]: COREGRADE is stopping... -- 00:48:06.751 DEBUG [3800]: Database connection successful -- 00:48:06.751 INFO [3800]: _SERVER found -- 00:48:06.751 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 00:48:06.751 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:06.751 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:06.751 INFO [3800]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 00:48:06.751 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:06.762 INFO [3800]: COREGRADE is stopping... -- 00:48:06.762 DEBUG [3741]: Closing database connection -- 00:48:06.762 DEBUG [3800]: Closing database connection -- 00:48:06.762 SQL [3741]: pgsql_close() -- 00:48:06.762 SQL [3800]: pgsql_close() -- 00:48:06.811 INFO [3828]: COREGRADE is starting... -- 00:48:06.811 INFO [3828]: Version from config: 1.0 -- 00:48:06.811 DEBUG [3828]: Connecting to database... -- 00:48:06.811 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:06.811 SQL [3828]: pgsql_db_connect() -- 00:48:06.815 DEBUG [3828]: Database connection successful -- 00:48:06.815 INFO [3828]: _SERVER found -- 00:48:06.815 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 00:48:06.815 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:06.815 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:06.815 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 00:48:06.815 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:06.827 INFO [3828]: COREGRADE is stopping... -- 00:48:06.827 DEBUG [3828]: Closing database connection -- 00:48:06.827 SQL [3828]: pgsql_close() -- 00:48:06.831 INFO [3800]: COREGRADE is starting... -- 00:48:06.832 INFO [3800]: Version from config: 1.0 -- 00:48:06.832 DEBUG [3800]: Connecting to database... -- 00:48:06.832 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:06.832 SQL [3800]: pgsql_db_connect() -- 00:48:06.835 INFO [3741]: COREGRADE is starting... -- 00:48:06.835 INFO [3741]: Version from config: 1.0 -- 00:48:06.835 DEBUG [3741]: Connecting to database... -- 00:48:06.835 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:06.835 SQL [3741]: pgsql_db_connect() -- 00:48:06.835 DEBUG [3800]: Database connection successful -- 00:48:06.835 INFO [3800]: _SERVER found -- 00:48:06.835 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 00:48:06.835 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:06.835 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:06.835 INFO [3800]: QUERY_STRING = /assets/js/pages/picker_date.js -- 00:48:06.835 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:06.847 INFO [3800]: COREGRADE is stopping... -- 00:48:06.847 DEBUG [3800]: Closing database connection -- 00:48:06.847 SQL [3800]: pgsql_close() -- 00:48:06.839 DEBUG [3741]: Database connection successful -- 00:48:06.839 INFO [3741]: _SERVER found -- 00:48:06.839 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 00:48:06.839 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:06.839 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:06.839 INFO [3741]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 00:48:06.839 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:06.850 INFO [3741]: COREGRADE is stopping... -- 00:48:06.850 DEBUG [3741]: Closing database connection -- 00:48:06.850 SQL [3741]: pgsql_close() -- 00:48:06.895 INFO [3828]: COREGRADE is starting... -- 00:48:06.895 INFO [3828]: Version from config: 1.0 -- 00:48:06.895 DEBUG [3828]: Connecting to database... -- 00:48:06.895 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:06.895 SQL [3828]: pgsql_db_connect() -- 00:48:06.899 DEBUG [3828]: Database connection successful -- 00:48:06.899 INFO [3828]: _SERVER found -- 00:48:06.899 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 00:48:06.899 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:06.899 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:06.899 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 00:48:06.899 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:06.911 INFO [3828]: COREGRADE is stopping... -- 00:48:06.911 DEBUG [3828]: Closing database connection -- 00:48:06.911 SQL [3828]: pgsql_close() -- 00:48:06.916 INFO [3800]: COREGRADE is starting... -- 00:48:06.916 INFO [3800]: Version from config: 1.0 -- 00:48:06.916 DEBUG [3800]: Connecting to database... -- 00:48:06.916 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:06.916 SQL [3800]: pgsql_db_connect() -- 00:48:06.922 INFO [3741]: COREGRADE is starting... -- 00:48:06.922 INFO [3741]: Version from config: 1.0 -- 00:48:06.922 DEBUG [3741]: Connecting to database... -- 00:48:06.922 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:06.922 SQL [3741]: pgsql_db_connect() -- 00:48:06.920 DEBUG [3800]: Database connection successful -- 00:48:06.920 INFO [3800]: _SERVER found -- 00:48:06.920 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 00:48:06.920 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:06.920 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:06.920 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 00:48:06.920 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:06.931 INFO [3800]: COREGRADE is stopping... -- 00:48:06.931 DEBUG [3800]: Closing database connection -- 00:48:06.931 SQL [3800]: pgsql_close() -- 00:48:06.926 DEBUG [3741]: Database connection successful -- 00:48:06.926 INFO [3741]: _SERVER found -- 00:48:06.926 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 00:48:06.926 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:06.926 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:06.926 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 00:48:06.926 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:06.938 INFO [3741]: COREGRADE is stopping... -- 00:48:06.938 DEBUG [3741]: Closing database connection -- 00:48:06.938 SQL [3741]: pgsql_close() -- 00:48:06.979 INFO [3828]: COREGRADE is starting... -- 00:48:06.979 INFO [3828]: Version from config: 1.0 -- 00:48:06.979 DEBUG [3828]: Connecting to database... -- 00:48:06.979 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:06.979 SQL [3828]: pgsql_db_connect() -- 00:48:06.983 DEBUG [3828]: Database connection successful -- 00:48:06.983 INFO [3828]: _SERVER found -- 00:48:06.983 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 00:48:06.984 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:06.984 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:06.984 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 00:48:06.984 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:06.995 INFO [3828]: COREGRADE is stopping... -- 00:48:06.995 DEBUG [3828]: Closing database connection -- 00:48:06.995 SQL [3828]: pgsql_close() -- 00:48:07.000 INFO [3800]: COREGRADE is starting... -- 00:48:07.000 INFO [3800]: Version from config: 1.0 -- 00:48:07.000 DEBUG [3800]: Connecting to database... -- 00:48:07.000 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:07.000 SQL [3800]: pgsql_db_connect() -- 00:48:07.010 INFO [3741]: COREGRADE is starting... -- 00:48:07.010 INFO [3741]: Version from config: 1.0 -- 00:48:07.010 DEBUG [3741]: Connecting to database... -- 00:48:07.010 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:07.010 SQL [3741]: pgsql_db_connect() -- 00:48:07.004 DEBUG [3800]: Database connection successful -- 00:48:07.004 INFO [3800]: _SERVER found -- 00:48:07.004 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 00:48:07.004 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:07.004 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:07.004 INFO [3800]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 00:48:07.004 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:07.016 INFO [3800]: COREGRADE is stopping... -- 00:48:07.016 DEBUG [3800]: Closing database connection -- 00:48:07.016 SQL [3800]: pgsql_close() -- 00:48:07.014 DEBUG [3741]: Database connection successful -- 00:48:07.014 INFO [3741]: _SERVER found -- 00:48:07.014 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 00:48:07.014 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:07.014 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:07.014 INFO [3741]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 00:48:07.014 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:07.026 INFO [3741]: COREGRADE is stopping... -- 00:48:07.026 DEBUG [3741]: Closing database connection -- 00:48:07.026 SQL [3741]: pgsql_close() -- 00:48:07.063 INFO [3828]: COREGRADE is starting... -- 00:48:07.064 INFO [3828]: Version from config: 1.0 -- 00:48:07.064 DEBUG [3828]: Connecting to database... -- 00:48:07.064 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:07.064 SQL [3828]: pgsql_db_connect() -- 00:48:07.068 DEBUG [3828]: Database connection successful -- 00:48:07.068 INFO [3828]: _SERVER found -- 00:48:07.068 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 00:48:07.068 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:07.068 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:07.068 INFO [3828]: QUERY_STRING = /assets/customjs/general.js -- 00:48:07.068 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:07.079 INFO [3828]: COREGRADE is stopping... -- 00:48:07.079 DEBUG [3828]: Closing database connection -- 00:48:07.079 SQL [3828]: pgsql_close() -- 00:48:07.085 INFO [3800]: COREGRADE is starting... -- 00:48:07.085 INFO [3800]: Version from config: 1.0 -- 00:48:07.085 DEBUG [3800]: Connecting to database... -- 00:48:07.085 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:07.085 SQL [3800]: pgsql_db_connect() -- 00:48:07.089 DEBUG [3800]: Database connection successful -- 00:48:07.089 INFO [3800]: _SERVER found -- 00:48:07.089 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 00:48:07.089 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:07.089 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:07.089 INFO [3800]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 00:48:07.089 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:07.101 INFO [3800]: COREGRADE is stopping... -- 00:48:07.101 DEBUG [3800]: Closing database connection -- 00:48:07.101 SQL [3800]: pgsql_close() -- 00:48:07.170 INFO [3800]: COREGRADE is starting... -- 00:48:07.171 INFO [3800]: Version from config: 1.0 -- 00:48:07.171 DEBUG [3800]: Connecting to database... -- 00:48:07.171 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:07.171 SQL [3800]: pgsql_db_connect() -- 00:48:07.175 DEBUG [3800]: Database connection successful -- 00:48:07.175 INFO [3800]: _SERVER found -- 00:48:07.175 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 00:48:07.175 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:07.175 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:07.175 INFO [3800]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 00:48:07.175 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:07.187 INFO [3800]: COREGRADE is stopping... -- 00:48:07.187 DEBUG [3800]: Closing database connection -- 00:48:07.187 SQL [3800]: pgsql_close() -- 00:48:07.257 INFO [3800]: COREGRADE is starting... -- 00:48:07.257 INFO [3800]: Version from config: 1.0 -- 00:48:07.257 DEBUG [3800]: Connecting to database... -- 00:48:07.257 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:07.257 SQL [3800]: pgsql_db_connect() -- 00:48:07.261 DEBUG [3800]: Database connection successful -- 00:48:07.261 INFO [3800]: _SERVER found -- 00:48:07.261 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 00:48:07.261 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:07.261 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:07.261 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 00:48:07.261 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:07.273 INFO [3800]: COREGRADE is stopping... -- 00:48:07.273 DEBUG [3800]: Closing database connection -- 00:48:07.273 SQL [3800]: pgsql_close() -- 00:48:07.342 INFO [3800]: COREGRADE is starting... -- 00:48:07.342 INFO [3800]: Version from config: 1.0 -- 00:48:07.342 DEBUG [3800]: Connecting to database... -- 00:48:07.342 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:07.342 SQL [3800]: pgsql_db_connect() -- 00:48:07.347 DEBUG [3800]: Database connection successful -- 00:48:07.347 INFO [3800]: _SERVER found -- 00:48:07.347 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 00:48:07.347 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:07.347 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:07.347 INFO [3800]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 00:48:07.347 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:07.358 INFO [3800]: COREGRADE is stopping... -- 00:48:07.358 DEBUG [3800]: Closing database connection -- 00:48:07.358 SQL [3800]: pgsql_close() -- 00:48:07.428 INFO [3800]: COREGRADE is starting... -- 00:48:07.428 INFO [3800]: Version from config: 1.0 -- 00:48:07.428 DEBUG [3800]: Connecting to database... -- 00:48:07.429 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:07.429 SQL [3800]: pgsql_db_connect() -- 00:48:07.433 DEBUG [3800]: Database connection successful -- 00:48:07.433 INFO [3800]: _SERVER found -- 00:48:07.433 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 00:48:07.433 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:07.433 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:07.433 INFO [3800]: QUERY_STRING = /assets/js/pages/dashboard.js -- 00:48:07.433 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:07.444 INFO [3800]: COREGRADE is stopping... -- 00:48:07.444 DEBUG [3800]: Closing database connection -- 00:48:07.444 SQL [3800]: pgsql_close() -- 00:48:07.515 INFO [3800]: COREGRADE is starting... -- 00:48:07.515 INFO [3800]: Version from config: 1.0 -- 00:48:07.515 DEBUG [3800]: Connecting to database... -- 00:48:07.515 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:07.515 SQL [3800]: pgsql_db_connect() -- 00:48:07.520 DEBUG [3800]: Database connection successful -- 00:48:07.520 INFO [3800]: _SERVER found -- 00:48:07.520 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 00:48:07.520 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:07.520 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:07.520 INFO [3800]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 00:48:07.520 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:07.531 INFO [3800]: COREGRADE is stopping... -- 00:48:07.531 DEBUG [3800]: Closing database connection -- 00:48:07.531 SQL [3800]: pgsql_close() -- 00:48:07.600 INFO [3800]: COREGRADE is starting... -- 00:48:07.601 INFO [3800]: Version from config: 1.0 -- 00:48:07.601 DEBUG [3800]: Connecting to database... -- 00:48:07.601 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:07.601 SQL [3800]: pgsql_db_connect() -- 00:48:07.605 DEBUG [3800]: Database connection successful -- 00:48:07.605 INFO [3800]: _SERVER found -- 00:48:07.605 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 00:48:07.605 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:07.605 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:07.605 INFO [3800]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 00:48:07.605 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:07.617 INFO [3800]: COREGRADE is stopping... -- 00:48:07.617 DEBUG [3800]: Closing database connection -- 00:48:07.617 SQL [3800]: pgsql_close() -- 00:48:07.686 INFO [3800]: COREGRADE is starting... -- 00:48:07.686 INFO [3800]: Version from config: 1.0 -- 00:48:07.686 DEBUG [3800]: Connecting to database... -- 00:48:07.686 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:07.686 SQL [3800]: pgsql_db_connect() -- 00:48:07.691 DEBUG [3800]: Database connection successful -- 00:48:07.691 INFO [3800]: _SERVER found -- 00:48:07.691 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 00:48:07.691 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:07.691 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:07.691 INFO [3800]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 00:48:07.691 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:07.702 INFO [3800]: COREGRADE is stopping... -- 00:48:07.702 DEBUG [3800]: Closing database connection -- 00:48:07.702 SQL [3800]: pgsql_close() -- 00:48:07.771 INFO [3800]: COREGRADE is starting... -- 00:48:07.772 INFO [3800]: Version from config: 1.0 -- 00:48:07.772 DEBUG [3800]: Connecting to database... -- 00:48:07.772 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:07.772 SQL [3800]: pgsql_db_connect() -- 00:48:07.776 DEBUG [3800]: Database connection successful -- 00:48:07.776 INFO [3800]: _SERVER found -- 00:48:07.776 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 00:48:07.776 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:07.776 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:07.776 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 00:48:07.776 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:07.787 INFO [3800]: COREGRADE is stopping... -- 00:48:07.787 DEBUG [3800]: Closing database connection -- 00:48:07.787 SQL [3800]: pgsql_close() -- 00:48:07.856 INFO [3800]: COREGRADE is starting... -- 00:48:07.857 INFO [3800]: Version from config: 1.0 -- 00:48:07.857 DEBUG [3800]: Connecting to database... -- 00:48:07.857 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:07.857 SQL [3800]: pgsql_db_connect() -- 00:48:07.861 DEBUG [3800]: Database connection successful -- 00:48:07.861 INFO [3800]: _SERVER found -- 00:48:07.861 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 00:48:07.861 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:07.861 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:07.861 INFO [3800]: QUERY_STRING = /assets/js/pages/picker_date.js -- 00:48:07.861 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:07.872 INFO [3800]: COREGRADE is stopping... -- 00:48:07.872 DEBUG [3800]: Closing database connection -- 00:48:07.872 SQL [3800]: pgsql_close() -- 00:48:07.941 INFO [3800]: COREGRADE is starting... -- 00:48:07.941 INFO [3800]: Version from config: 1.0 -- 00:48:07.941 DEBUG [3800]: Connecting to database... -- 00:48:07.941 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:07.941 SQL [3800]: pgsql_db_connect() -- 00:48:07.945 DEBUG [3800]: Database connection successful -- 00:48:07.945 INFO [3800]: _SERVER found -- 00:48:07.945 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 00:48:07.945 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:07.945 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:07.945 INFO [3800]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 00:48:07.945 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:07.957 INFO [3800]: COREGRADE is stopping... -- 00:48:07.957 DEBUG [3800]: Closing database connection -- 00:48:07.957 SQL [3800]: pgsql_close() -- 00:48:08.026 INFO [3800]: COREGRADE is starting... -- 00:48:08.026 INFO [3800]: Version from config: 1.0 -- 00:48:08.026 DEBUG [3800]: Connecting to database... -- 00:48:08.026 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:08.026 SQL [3800]: pgsql_db_connect() -- 00:48:08.030 DEBUG [3800]: Database connection successful -- 00:48:08.030 INFO [3800]: _SERVER found -- 00:48:08.030 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 00:48:08.030 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:08.030 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:08.030 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 00:48:08.030 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:08.042 INFO [3800]: COREGRADE is stopping... -- 00:48:08.042 DEBUG [3800]: Closing database connection -- 00:48:08.042 SQL [3800]: pgsql_close() -- 00:48:08.111 INFO [3800]: COREGRADE is starting... -- 00:48:08.111 INFO [3800]: Version from config: 1.0 -- 00:48:08.111 DEBUG [3800]: Connecting to database... -- 00:48:08.111 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:08.111 SQL [3800]: pgsql_db_connect() -- 00:48:08.115 DEBUG [3800]: Database connection successful -- 00:48:08.115 INFO [3800]: _SERVER found -- 00:48:08.115 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 00:48:08.115 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:08.115 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:08.115 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 00:48:08.115 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:08.127 INFO [3800]: COREGRADE is stopping... -- 00:48:08.127 DEBUG [3800]: Closing database connection -- 00:48:08.127 SQL [3800]: pgsql_close() -- 00:48:08.196 INFO [3800]: COREGRADE is starting... -- 00:48:08.196 INFO [3800]: Version from config: 1.0 -- 00:48:08.196 DEBUG [3800]: Connecting to database... -- 00:48:08.196 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:08.196 SQL [3800]: pgsql_db_connect() -- 00:48:08.200 DEBUG [3800]: Database connection successful -- 00:48:08.200 INFO [3800]: _SERVER found -- 00:48:08.200 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 00:48:08.200 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:08.200 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:08.200 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 00:48:08.200 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:08.212 INFO [3800]: COREGRADE is stopping... -- 00:48:08.212 DEBUG [3800]: Closing database connection -- 00:48:08.212 SQL [3800]: pgsql_close() -- 00:48:08.281 INFO [3800]: COREGRADE is starting... -- 00:48:08.281 INFO [3800]: Version from config: 1.0 -- 00:48:08.281 DEBUG [3800]: Connecting to database... -- 00:48:08.281 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:08.281 SQL [3800]: pgsql_db_connect() -- 00:48:08.285 DEBUG [3800]: Database connection successful -- 00:48:08.285 INFO [3800]: _SERVER found -- 00:48:08.285 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 00:48:08.285 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:08.285 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:08.285 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 00:48:08.285 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:08.296 INFO [3800]: COREGRADE is stopping... -- 00:48:08.296 DEBUG [3800]: Closing database connection -- 00:48:08.296 SQL [3800]: pgsql_close() -- 00:48:08.376 INFO [3800]: COREGRADE is starting... -- 00:48:08.376 INFO [3800]: Version from config: 1.0 -- 00:48:08.376 DEBUG [3800]: Connecting to database... -- 00:48:08.376 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:08.376 SQL [3800]: pgsql_db_connect() -- 00:48:08.380 DEBUG [3800]: Database connection successful -- 00:48:08.380 INFO [3800]: _SERVER found -- 00:48:08.380 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 00:48:08.380 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:08.380 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:08.380 INFO [3800]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 00:48:08.380 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:08.392 INFO [3800]: COREGRADE is stopping... -- 00:48:08.392 DEBUG [3800]: Closing database connection -- 00:48:08.392 SQL [3800]: pgsql_close() -- 00:48:08.461 INFO [3800]: COREGRADE is starting... -- 00:48:08.461 INFO [3800]: Version from config: 1.0 -- 00:48:08.461 DEBUG [3800]: Connecting to database... -- 00:48:08.461 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:08.461 SQL [3800]: pgsql_db_connect() -- 00:48:08.466 DEBUG [3800]: Database connection successful -- 00:48:08.466 INFO [3800]: _SERVER found -- 00:48:08.466 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 00:48:08.466 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:08.466 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:08.466 INFO [3800]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 00:48:08.466 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:08.477 INFO [3800]: COREGRADE is stopping... -- 00:48:08.477 DEBUG [3800]: Closing database connection -- 00:48:08.477 SQL [3800]: pgsql_close() -- 00:48:08.548 INFO [3800]: COREGRADE is starting... -- 00:48:08.548 INFO [3800]: Version from config: 1.0 -- 00:48:08.548 DEBUG [3800]: Connecting to database... -- 00:48:08.548 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:48:08.548 SQL [3800]: pgsql_db_connect() -- 00:48:08.553 DEBUG [3800]: Database connection successful -- 00:48:08.553 INFO [3800]: _SERVER found -- 00:48:08.553 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 00:48:08.553 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 00:48:08.553 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 00:48:08.553 INFO [3800]: QUERY_STRING = /assets/customjs/general.js -- 00:48:08.553 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 00:48:08.564 INFO [3800]: COREGRADE is stopping... -- 00:48:08.564 DEBUG [3800]: Closing database connection -- 00:48:08.564 SQL [3800]: pgsql_close() -- 01:08:08.787 INFO [3829]: COREGRADE is starting... -- 01:08:08.788 INFO [3829]: Version from config: 1.0 -- 01:08:08.788 DEBUG [3829]: Connecting to database... -- 01:08:08.788 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:08.788 SQL [3829]: pgsql_db_connect() -- 01:08:08.792 DEBUG [3829]: Database connection successful -- 01:08:08.792 INFO [3829]: _SERVER found -- 01:08:08.792 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 01:08:08.792 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:08.792 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oq613v02mt8r6i54ua926geg93msq5ds -- 01:08:08.792 INFO [3829]: QUERY_STRING = /logout -- 01:08:08.792 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:08.828 INFO [3829]: COREGRADE is stopping... -- 01:08:08.828 DEBUG [3829]: Closing database connection -- 01:08:08.828 SQL [3829]: pgsql_close() -- 01:08:08.909 INFO [3829]: COREGRADE is starting... -- 01:08:08.909 INFO [3829]: Version from config: 1.0 -- 01:08:08.909 DEBUG [3829]: Connecting to database... -- 01:08:08.909 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:08.909 SQL [3829]: pgsql_db_connect() -- 01:08:08.913 DEBUG [3829]: Database connection successful -- 01:08:08.913 INFO [3829]: _SERVER found -- 01:08:08.913 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 01:08:08.913 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:08.913 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:08.913 INFO [3829]: QUERY_STRING = /start -- 01:08:08.913 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:08.949 INFO [3829]: COREGRADE is stopping... -- 01:08:08.949 DEBUG [3829]: Closing database connection -- 01:08:08.949 SQL [3829]: pgsql_close() -- 01:08:09.077 INFO [3829]: COREGRADE is starting... -- 01:08:09.077 INFO [3829]: Version from config: 1.0 -- 01:08:09.077 DEBUG [3829]: Connecting to database... -- 01:08:09.077 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:09.077 SQL [3829]: pgsql_db_connect() -- 01:08:09.081 DEBUG [3829]: Database connection successful -- 01:08:09.081 INFO [3829]: _SERVER found -- 01:08:09.081 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 01:08:09.081 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:09.081 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:09.081 INFO [3829]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 01:08:09.081 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:09.093 INFO [3829]: COREGRADE is stopping... -- 01:08:09.093 DEBUG [3829]: Closing database connection -- 01:08:09.093 SQL [3829]: pgsql_close() -- 01:08:09.099 INFO [3829]: COREGRADE is starting... -- 01:08:09.100 INFO [3829]: Version from config: 1.0 -- 01:08:09.100 DEBUG [3829]: Connecting to database... -- 01:08:09.100 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:09.100 SQL [3829]: pgsql_db_connect() -- 01:08:09.103 DEBUG [3829]: Database connection successful -- 01:08:09.103 INFO [3829]: _SERVER found -- 01:08:09.103 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 01:08:09.103 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:09.103 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:09.103 INFO [3829]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 01:08:09.103 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:09.115 INFO [3829]: COREGRADE is stopping... -- 01:08:09.115 DEBUG [3829]: Closing database connection -- 01:08:09.115 SQL [3829]: pgsql_close() -- 01:08:09.136 INFO [3829]: COREGRADE is starting... -- 01:08:09.136 INFO [3829]: Version from config: 1.0 -- 01:08:09.136 DEBUG [3829]: Connecting to database... -- 01:08:09.136 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:09.136 SQL [3829]: pgsql_db_connect() -- 01:08:09.140 DEBUG [3829]: Database connection successful -- 01:08:09.140 INFO [3829]: _SERVER found -- 01:08:09.140 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 01:08:09.140 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:09.140 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:09.140 INFO [3829]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 01:08:09.140 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:09.152 INFO [3829]: COREGRADE is stopping... -- 01:08:09.152 DEBUG [3829]: Closing database connection -- 01:08:09.152 SQL [3829]: pgsql_close() -- 01:08:09.175 INFO [3829]: COREGRADE is starting... -- 01:08:09.175 INFO [3829]: Version from config: 1.0 -- 01:08:09.175 DEBUG [3829]: Connecting to database... -- 01:08:09.175 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:09.175 SQL [3829]: pgsql_db_connect() -- 01:08:09.184 INFO [3740]: COREGRADE is starting... -- 01:08:09.185 INFO [3740]: Version from config: 1.0 -- 01:08:09.185 DEBUG [3740]: Connecting to database... -- 01:08:09.185 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:09.185 SQL [3740]: pgsql_db_connect() -- 01:08:09.179 DEBUG [3829]: Database connection successful -- 01:08:09.179 INFO [3829]: _SERVER found -- 01:08:09.179 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 01:08:09.179 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:09.179 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:09.179 INFO [3829]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 01:08:09.179 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:09.191 INFO [3829]: COREGRADE is stopping... -- 01:08:09.191 DEBUG [3829]: Closing database connection -- 01:08:09.191 SQL [3829]: pgsql_close() -- 01:08:09.189 DEBUG [3740]: Database connection successful -- 01:08:09.189 INFO [3740]: _SERVER found -- 01:08:09.189 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 01:08:09.189 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:09.189 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:09.189 INFO [3740]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 01:08:09.189 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:09.201 INFO [3740]: COREGRADE is stopping... -- 01:08:09.201 DEBUG [3740]: Closing database connection -- 01:08:09.201 SQL [3740]: pgsql_close() -- 01:08:09.228 INFO [3740]: COREGRADE is starting... -- 01:08:09.229 INFO [3740]: Version from config: 1.0 -- 01:08:09.229 DEBUG [3740]: Connecting to database... -- 01:08:09.229 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:09.229 SQL [3740]: pgsql_db_connect() -- 01:08:09.233 DEBUG [3740]: Database connection successful -- 01:08:09.233 INFO [3740]: _SERVER found -- 01:08:09.233 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 01:08:09.233 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:09.233 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:09.233 INFO [3740]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 01:08:09.233 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:09.244 INFO [3740]: COREGRADE is stopping... -- 01:08:09.244 DEBUG [3740]: Closing database connection -- 01:08:09.244 SQL [3740]: pgsql_close() -- 01:08:09.275 INFO [3740]: COREGRADE is starting... -- 01:08:09.275 INFO [3829]: COREGRADE is starting... -- 01:08:09.275 INFO [3740]: Version from config: 1.0 -- 01:08:09.275 DEBUG [3740]: Connecting to database... -- 01:08:09.275 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:09.275 SQL [3740]: pgsql_db_connect() -- 01:08:09.275 INFO [3829]: Version from config: 1.0 -- 01:08:09.275 DEBUG [3829]: Connecting to database... -- 01:08:09.275 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:09.275 SQL [3829]: pgsql_db_connect() -- 01:08:09.279 DEBUG [3740]: Database connection successful -- 01:08:09.279 INFO [3740]: _SERVER found -- 01:08:09.279 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 01:08:09.279 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:09.279 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:09.279 INFO [3740]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 01:08:09.279 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:09.290 INFO [3740]: COREGRADE is stopping... -- 01:08:09.290 DEBUG [3740]: Closing database connection -- 01:08:09.290 SQL [3740]: pgsql_close() -- 01:08:09.279 DEBUG [3829]: Database connection successful -- 01:08:09.279 INFO [3829]: _SERVER found -- 01:08:09.279 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 01:08:09.279 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:09.279 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:09.279 INFO [3829]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 01:08:09.279 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:09.291 INFO [3829]: COREGRADE is stopping... -- 01:08:09.291 DEBUG [3829]: Closing database connection -- 01:08:09.291 SQL [3829]: pgsql_close() -- 01:08:09.321 INFO [3829]: COREGRADE is starting... -- 01:08:09.321 INFO [3829]: Version from config: 1.0 -- 01:08:09.321 DEBUG [3829]: Connecting to database... -- 01:08:09.321 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:09.321 SQL [3829]: pgsql_db_connect() -- 01:08:09.325 DEBUG [3829]: Database connection successful -- 01:08:09.325 INFO [3829]: _SERVER found -- 01:08:09.325 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 01:08:09.325 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:09.325 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:09.325 INFO [3829]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 01:08:09.325 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:09.337 INFO [3829]: COREGRADE is stopping... -- 01:08:09.337 DEBUG [3829]: Closing database connection -- 01:08:09.337 SQL [3829]: pgsql_close() -- 01:08:09.359 INFO [3829]: COREGRADE is starting... -- 01:08:09.359 INFO [3829]: Version from config: 1.0 -- 01:08:09.359 DEBUG [3829]: Connecting to database... -- 01:08:09.359 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:09.359 SQL [3829]: pgsql_db_connect() -- 01:08:09.363 DEBUG [3829]: Database connection successful -- 01:08:09.363 INFO [3829]: _SERVER found -- 01:08:09.363 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 01:08:09.363 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:09.363 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:09.363 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 01:08:09.363 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:09.375 INFO [3829]: COREGRADE is stopping... -- 01:08:09.375 DEBUG [3829]: Closing database connection -- 01:08:09.375 SQL [3829]: pgsql_close() -- 01:08:09.376 INFO [3740]: COREGRADE is starting... -- 01:08:09.376 INFO [3740]: Version from config: 1.0 -- 01:08:09.376 DEBUG [3740]: Connecting to database... -- 01:08:09.376 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:09.376 SQL [3740]: pgsql_db_connect() -- 01:08:09.380 DEBUG [3740]: Database connection successful -- 01:08:09.380 INFO [3740]: _SERVER found -- 01:08:09.380 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 01:08:09.380 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:09.380 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:09.380 INFO [3740]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 01:08:09.380 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:09.391 INFO [3740]: COREGRADE is stopping... -- 01:08:09.391 DEBUG [3740]: Closing database connection -- 01:08:09.391 SQL [3740]: pgsql_close() -- 01:08:09.414 INFO [3740]: COREGRADE is starting... -- 01:08:09.414 INFO [3740]: Version from config: 1.0 -- 01:08:09.414 DEBUG [3740]: Connecting to database... -- 01:08:09.414 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:09.414 SQL [3740]: pgsql_db_connect() -- 01:08:09.418 DEBUG [3740]: Database connection successful -- 01:08:09.418 INFO [3740]: _SERVER found -- 01:08:09.418 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 01:08:09.418 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:09.418 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:09.418 INFO [3740]: QUERY_STRING = /assets/js/pages/dashboard.js -- 01:08:09.418 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:09.430 INFO [3740]: COREGRADE is stopping... -- 01:08:09.430 DEBUG [3740]: Closing database connection -- 01:08:09.430 SQL [3740]: pgsql_close() -- 01:08:09.443 INFO [3740]: COREGRADE is starting... -- 01:08:09.443 INFO [3740]: Version from config: 1.0 -- 01:08:09.443 DEBUG [3740]: Connecting to database... -- 01:08:09.443 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:09.443 SQL [3740]: pgsql_db_connect() -- 01:08:09.447 DEBUG [3740]: Database connection successful -- 01:08:09.447 INFO [3740]: _SERVER found -- 01:08:09.447 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 01:08:09.447 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:09.447 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:09.447 INFO [3740]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 01:08:09.447 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:09.458 INFO [3740]: COREGRADE is stopping... -- 01:08:09.458 DEBUG [3740]: Closing database connection -- 01:08:09.458 SQL [3740]: pgsql_close() -- 01:08:09.463 INFO [3740]: COREGRADE is starting... -- 01:08:09.463 INFO [3740]: Version from config: 1.0 -- 01:08:09.463 DEBUG [3740]: Connecting to database... -- 01:08:09.463 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:09.463 SQL [3740]: pgsql_db_connect() -- 01:08:09.467 DEBUG [3740]: Database connection successful -- 01:08:09.467 INFO [3740]: _SERVER found -- 01:08:09.467 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 01:08:09.467 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:09.467 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:09.467 INFO [3740]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 01:08:09.467 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:09.478 INFO [3740]: COREGRADE is stopping... -- 01:08:09.478 DEBUG [3740]: Closing database connection -- 01:08:09.479 SQL [3740]: pgsql_close() -- 01:08:09.495 INFO [3740]: COREGRADE is starting... -- 01:08:09.496 INFO [3740]: Version from config: 1.0 -- 01:08:09.496 DEBUG [3740]: Connecting to database... -- 01:08:09.496 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:09.496 SQL [3740]: pgsql_db_connect() -- 01:08:09.500 DEBUG [3740]: Database connection successful -- 01:08:09.500 INFO [3740]: _SERVER found -- 01:08:09.500 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 01:08:09.500 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:09.500 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:09.500 INFO [3740]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 01:08:09.500 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:09.511 INFO [3740]: COREGRADE is stopping... -- 01:08:09.511 DEBUG [3740]: Closing database connection -- 01:08:09.511 SQL [3740]: pgsql_close() -- 01:08:09.528 INFO [3740]: COREGRADE is starting... -- 01:08:09.528 INFO [3740]: Version from config: 1.0 -- 01:08:09.528 DEBUG [3740]: Connecting to database... -- 01:08:09.528 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:09.528 SQL [3740]: pgsql_db_connect() -- 01:08:09.532 DEBUG [3740]: Database connection successful -- 01:08:09.532 INFO [3740]: _SERVER found -- 01:08:09.532 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 01:08:09.532 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:09.532 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:09.532 INFO [3740]: QUERY_STRING = /assets/js/pages/picker_date.js -- 01:08:09.532 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:09.544 INFO [3740]: COREGRADE is stopping... -- 01:08:09.544 DEBUG [3740]: Closing database connection -- 01:08:09.544 SQL [3740]: pgsql_close() -- 01:08:09.549 INFO [3740]: COREGRADE is starting... -- 01:08:09.550 INFO [3740]: Version from config: 1.0 -- 01:08:09.550 DEBUG [3740]: Connecting to database... -- 01:08:09.550 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:09.550 SQL [3740]: pgsql_db_connect() -- 01:08:09.554 DEBUG [3740]: Database connection successful -- 01:08:09.554 INFO [3740]: _SERVER found -- 01:08:09.554 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 01:08:09.554 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:09.554 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:09.554 INFO [3740]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 01:08:09.554 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:09.565 INFO [3740]: COREGRADE is stopping... -- 01:08:09.565 DEBUG [3740]: Closing database connection -- 01:08:09.565 SQL [3740]: pgsql_close() -- 01:08:09.577 INFO [3740]: COREGRADE is starting... -- 01:08:09.577 INFO [3740]: Version from config: 1.0 -- 01:08:09.577 DEBUG [3740]: Connecting to database... -- 01:08:09.577 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:09.577 SQL [3740]: pgsql_db_connect() -- 01:08:09.581 DEBUG [3740]: Database connection successful -- 01:08:09.581 INFO [3740]: _SERVER found -- 01:08:09.581 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 01:08:09.581 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:09.581 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:09.581 INFO [3740]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 01:08:09.581 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:09.592 INFO [3740]: COREGRADE is stopping... -- 01:08:09.592 DEBUG [3740]: Closing database connection -- 01:08:09.592 SQL [3740]: pgsql_close() -- 01:08:09.612 INFO [3740]: COREGRADE is starting... -- 01:08:09.612 INFO [3740]: Version from config: 1.0 -- 01:08:09.612 DEBUG [3740]: Connecting to database... -- 01:08:09.612 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:09.612 SQL [3740]: pgsql_db_connect() -- 01:08:09.616 DEBUG [3740]: Database connection successful -- 01:08:09.616 INFO [3740]: _SERVER found -- 01:08:09.616 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 01:08:09.616 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:09.616 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:09.616 INFO [3740]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 01:08:09.616 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:09.627 INFO [3740]: COREGRADE is stopping... -- 01:08:09.627 DEBUG [3740]: Closing database connection -- 01:08:09.627 SQL [3740]: pgsql_close() -- 01:08:09.636 INFO [3740]: COREGRADE is starting... -- 01:08:09.636 INFO [3740]: Version from config: 1.0 -- 01:08:09.636 DEBUG [3740]: Connecting to database... -- 01:08:09.636 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:09.636 SQL [3740]: pgsql_db_connect() -- 01:08:09.640 DEBUG [3740]: Database connection successful -- 01:08:09.640 INFO [3740]: _SERVER found -- 01:08:09.640 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 01:08:09.640 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:09.640 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:09.640 INFO [3740]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 01:08:09.640 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:09.651 INFO [3740]: COREGRADE is stopping... -- 01:08:09.651 DEBUG [3740]: Closing database connection -- 01:08:09.651 SQL [3740]: pgsql_close() -- 01:08:09.657 INFO [3740]: COREGRADE is starting... -- 01:08:09.657 INFO [3740]: Version from config: 1.0 -- 01:08:09.657 DEBUG [3740]: Connecting to database... -- 01:08:09.657 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:09.657 SQL [3740]: pgsql_db_connect() -- 01:08:09.661 DEBUG [3740]: Database connection successful -- 01:08:09.661 INFO [3740]: _SERVER found -- 01:08:09.661 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 01:08:09.661 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:09.661 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:09.661 INFO [3740]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 01:08:09.661 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:09.673 INFO [3740]: COREGRADE is stopping... -- 01:08:09.673 DEBUG [3740]: Closing database connection -- 01:08:09.673 SQL [3740]: pgsql_close() -- 01:08:09.695 INFO [3740]: COREGRADE is starting... -- 01:08:09.695 INFO [3740]: Version from config: 1.0 -- 01:08:09.695 DEBUG [3740]: Connecting to database... -- 01:08:09.696 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:09.696 SQL [3740]: pgsql_db_connect() -- 01:08:09.699 DEBUG [3740]: Database connection successful -- 01:08:09.699 INFO [3740]: _SERVER found -- 01:08:09.699 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 01:08:09.699 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:09.699 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:09.699 INFO [3740]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 01:08:09.699 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:09.711 INFO [3740]: COREGRADE is stopping... -- 01:08:09.711 DEBUG [3740]: Closing database connection -- 01:08:09.711 SQL [3740]: pgsql_close() -- 01:08:09.722 INFO [3740]: COREGRADE is starting... -- 01:08:09.722 INFO [3740]: Version from config: 1.0 -- 01:08:09.722 DEBUG [3740]: Connecting to database... -- 01:08:09.722 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:09.722 SQL [3740]: pgsql_db_connect() -- 01:08:09.737 INFO [3829]: COREGRADE is starting... -- 01:08:09.738 INFO [3829]: Version from config: 1.0 -- 01:08:09.738 DEBUG [3829]: Connecting to database... -- 01:08:09.738 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:09.738 SQL [3829]: pgsql_db_connect() -- 01:08:09.726 DEBUG [3740]: Database connection successful -- 01:08:09.726 INFO [3740]: _SERVER found -- 01:08:09.726 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 01:08:09.726 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:09.726 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:09.726 INFO [3740]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 01:08:09.726 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:09.738 INFO [3740]: COREGRADE is stopping... -- 01:08:09.738 DEBUG [3740]: Closing database connection -- 01:08:09.738 SQL [3740]: pgsql_close() -- 01:08:09.742 DEBUG [3829]: Database connection successful -- 01:08:09.742 INFO [3829]: _SERVER found -- 01:08:09.742 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 01:08:09.742 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:09.742 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:09.742 INFO [3829]: QUERY_STRING = /assets/customjs/general.js -- 01:08:09.742 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:09.754 INFO [3829]: COREGRADE is stopping... -- 01:08:09.754 DEBUG [3829]: Closing database connection -- 01:08:09.754 SQL [3829]: pgsql_close() -- 01:08:09.779 INFO [3829]: COREGRADE is starting... -- 01:08:09.779 INFO [3829]: Version from config: 1.0 -- 01:08:09.779 DEBUG [3829]: Connecting to database... -- 01:08:09.779 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:09.779 SQL [3829]: pgsql_db_connect() -- 01:08:09.783 DEBUG [3829]: Database connection successful -- 01:08:09.783 INFO [3829]: _SERVER found -- 01:08:09.783 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 01:08:09.783 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:09.783 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:09.783 INFO [3829]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 01:08:09.783 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:09.795 INFO [3829]: COREGRADE is stopping... -- 01:08:09.795 DEBUG [3829]: Closing database connection -- 01:08:09.795 SQL [3829]: pgsql_close() -- 01:08:09.863 INFO [3829]: COREGRADE is starting... -- 01:08:09.863 INFO [3829]: Version from config: 1.0 -- 01:08:09.863 DEBUG [3829]: Connecting to database... -- 01:08:09.863 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:09.863 SQL [3829]: pgsql_db_connect() -- 01:08:09.867 DEBUG [3829]: Database connection successful -- 01:08:09.867 INFO [3829]: _SERVER found -- 01:08:09.867 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 01:08:09.867 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:09.867 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:09.867 INFO [3829]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 01:08:09.867 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:09.879 INFO [3829]: COREGRADE is stopping... -- 01:08:09.879 DEBUG [3829]: Closing database connection -- 01:08:09.879 SQL [3829]: pgsql_close() -- 01:08:09.947 INFO [3829]: COREGRADE is starting... -- 01:08:09.947 INFO [3829]: Version from config: 1.0 -- 01:08:09.947 DEBUG [3829]: Connecting to database... -- 01:08:09.947 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:09.947 SQL [3829]: pgsql_db_connect() -- 01:08:09.951 DEBUG [3829]: Database connection successful -- 01:08:09.951 INFO [3829]: _SERVER found -- 01:08:09.951 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 01:08:09.951 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:09.951 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:09.951 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 01:08:09.951 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:09.963 INFO [3829]: COREGRADE is stopping... -- 01:08:09.963 DEBUG [3829]: Closing database connection -- 01:08:09.963 SQL [3829]: pgsql_close() -- 01:08:10.031 INFO [3829]: COREGRADE is starting... -- 01:08:10.031 INFO [3829]: Version from config: 1.0 -- 01:08:10.031 DEBUG [3829]: Connecting to database... -- 01:08:10.031 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:10.031 SQL [3829]: pgsql_db_connect() -- 01:08:10.036 DEBUG [3829]: Database connection successful -- 01:08:10.036 INFO [3829]: _SERVER found -- 01:08:10.036 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 01:08:10.036 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:10.036 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:10.036 INFO [3829]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 01:08:10.036 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:10.048 INFO [3829]: COREGRADE is stopping... -- 01:08:10.048 DEBUG [3829]: Closing database connection -- 01:08:10.048 SQL [3829]: pgsql_close() -- 01:08:10.117 INFO [3829]: COREGRADE is starting... -- 01:08:10.117 INFO [3829]: Version from config: 1.0 -- 01:08:10.117 DEBUG [3829]: Connecting to database... -- 01:08:10.117 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:10.117 SQL [3829]: pgsql_db_connect() -- 01:08:10.121 DEBUG [3829]: Database connection successful -- 01:08:10.121 INFO [3829]: _SERVER found -- 01:08:10.121 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 01:08:10.121 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:10.121 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:10.121 INFO [3829]: QUERY_STRING = /assets/js/pages/dashboard.js -- 01:08:10.121 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:10.133 INFO [3829]: COREGRADE is stopping... -- 01:08:10.133 DEBUG [3829]: Closing database connection -- 01:08:10.133 SQL [3829]: pgsql_close() -- 01:08:10.202 INFO [3829]: COREGRADE is starting... -- 01:08:10.202 INFO [3829]: Version from config: 1.0 -- 01:08:10.202 DEBUG [3829]: Connecting to database... -- 01:08:10.202 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:10.202 SQL [3829]: pgsql_db_connect() -- 01:08:10.206 DEBUG [3829]: Database connection successful -- 01:08:10.206 INFO [3829]: _SERVER found -- 01:08:10.206 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 01:08:10.206 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:10.206 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:10.206 INFO [3829]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 01:08:10.206 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:10.218 INFO [3829]: COREGRADE is stopping... -- 01:08:10.218 DEBUG [3829]: Closing database connection -- 01:08:10.218 SQL [3829]: pgsql_close() -- 01:08:10.287 INFO [3829]: COREGRADE is starting... -- 01:08:10.287 INFO [3829]: Version from config: 1.0 -- 01:08:10.287 DEBUG [3829]: Connecting to database... -- 01:08:10.287 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:10.287 SQL [3829]: pgsql_db_connect() -- 01:08:10.291 DEBUG [3829]: Database connection successful -- 01:08:10.291 INFO [3829]: _SERVER found -- 01:08:10.291 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 01:08:10.291 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:10.291 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:10.291 INFO [3829]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 01:08:10.291 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:10.303 INFO [3829]: COREGRADE is stopping... -- 01:08:10.303 DEBUG [3829]: Closing database connection -- 01:08:10.303 SQL [3829]: pgsql_close() -- 01:08:10.371 INFO [3829]: COREGRADE is starting... -- 01:08:10.371 INFO [3829]: Version from config: 1.0 -- 01:08:10.371 DEBUG [3829]: Connecting to database... -- 01:08:10.371 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:10.371 SQL [3829]: pgsql_db_connect() -- 01:08:10.375 DEBUG [3829]: Database connection successful -- 01:08:10.375 INFO [3829]: _SERVER found -- 01:08:10.375 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 01:08:10.375 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:10.375 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:10.375 INFO [3829]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 01:08:10.375 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:10.387 INFO [3829]: COREGRADE is stopping... -- 01:08:10.387 DEBUG [3829]: Closing database connection -- 01:08:10.387 SQL [3829]: pgsql_close() -- 01:08:10.460 INFO [3829]: COREGRADE is starting... -- 01:08:10.460 INFO [3829]: Version from config: 1.0 -- 01:08:10.460 DEBUG [3829]: Connecting to database... -- 01:08:10.460 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:10.460 SQL [3829]: pgsql_db_connect() -- 01:08:10.464 DEBUG [3829]: Database connection successful -- 01:08:10.464 INFO [3829]: _SERVER found -- 01:08:10.464 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 01:08:10.464 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:10.464 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:10.464 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 01:08:10.464 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:10.476 INFO [3829]: COREGRADE is stopping... -- 01:08:10.476 DEBUG [3829]: Closing database connection -- 01:08:10.476 SQL [3829]: pgsql_close() -- 01:08:10.544 INFO [3829]: COREGRADE is starting... -- 01:08:10.544 INFO [3829]: Version from config: 1.0 -- 01:08:10.544 DEBUG [3829]: Connecting to database... -- 01:08:10.544 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:10.544 SQL [3829]: pgsql_db_connect() -- 01:08:10.549 DEBUG [3829]: Database connection successful -- 01:08:10.549 INFO [3829]: _SERVER found -- 01:08:10.549 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 01:08:10.549 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:10.549 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:10.549 INFO [3829]: QUERY_STRING = /assets/js/pages/picker_date.js -- 01:08:10.549 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:10.561 INFO [3829]: COREGRADE is stopping... -- 01:08:10.561 DEBUG [3829]: Closing database connection -- 01:08:10.561 SQL [3829]: pgsql_close() -- 01:08:10.629 INFO [3829]: COREGRADE is starting... -- 01:08:10.629 INFO [3829]: Version from config: 1.0 -- 01:08:10.629 DEBUG [3829]: Connecting to database... -- 01:08:10.629 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:10.629 SQL [3829]: pgsql_db_connect() -- 01:08:10.633 DEBUG [3829]: Database connection successful -- 01:08:10.633 INFO [3829]: _SERVER found -- 01:08:10.633 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 01:08:10.633 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:10.633 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:10.633 INFO [3829]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 01:08:10.633 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:10.645 INFO [3829]: COREGRADE is stopping... -- 01:08:10.645 DEBUG [3829]: Closing database connection -- 01:08:10.645 SQL [3829]: pgsql_close() -- 01:08:10.713 INFO [3829]: COREGRADE is starting... -- 01:08:10.714 INFO [3829]: Version from config: 1.0 -- 01:08:10.714 DEBUG [3829]: Connecting to database... -- 01:08:10.714 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:10.714 SQL [3829]: pgsql_db_connect() -- 01:08:10.718 DEBUG [3829]: Database connection successful -- 01:08:10.718 INFO [3829]: _SERVER found -- 01:08:10.718 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 01:08:10.718 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:10.718 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:10.718 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 01:08:10.718 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:10.730 INFO [3829]: COREGRADE is stopping... -- 01:08:10.730 DEBUG [3829]: Closing database connection -- 01:08:10.730 SQL [3829]: pgsql_close() -- 01:08:10.798 INFO [3829]: COREGRADE is starting... -- 01:08:10.798 INFO [3829]: Version from config: 1.0 -- 01:08:10.798 DEBUG [3829]: Connecting to database... -- 01:08:10.798 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:10.798 SQL [3829]: pgsql_db_connect() -- 01:08:10.802 DEBUG [3829]: Database connection successful -- 01:08:10.802 INFO [3829]: _SERVER found -- 01:08:10.802 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 01:08:10.802 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:10.802 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:10.802 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 01:08:10.802 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:10.814 INFO [3829]: COREGRADE is stopping... -- 01:08:10.814 DEBUG [3829]: Closing database connection -- 01:08:10.814 SQL [3829]: pgsql_close() -- 01:08:10.883 INFO [3829]: COREGRADE is starting... -- 01:08:10.883 INFO [3829]: Version from config: 1.0 -- 01:08:10.883 DEBUG [3829]: Connecting to database... -- 01:08:10.883 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:10.883 SQL [3829]: pgsql_db_connect() -- 01:08:10.887 DEBUG [3829]: Database connection successful -- 01:08:10.887 INFO [3829]: _SERVER found -- 01:08:10.887 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 01:08:10.887 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:10.887 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:10.887 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 01:08:10.887 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:10.899 INFO [3829]: COREGRADE is stopping... -- 01:08:10.899 DEBUG [3829]: Closing database connection -- 01:08:10.899 SQL [3829]: pgsql_close() -- 01:08:10.967 INFO [3829]: COREGRADE is starting... -- 01:08:10.968 INFO [3829]: Version from config: 1.0 -- 01:08:10.968 DEBUG [3829]: Connecting to database... -- 01:08:10.968 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:10.968 SQL [3829]: pgsql_db_connect() -- 01:08:10.972 DEBUG [3829]: Database connection successful -- 01:08:10.972 INFO [3829]: _SERVER found -- 01:08:10.972 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 01:08:10.972 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:10.972 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:10.972 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 01:08:10.972 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:10.984 INFO [3829]: COREGRADE is stopping... -- 01:08:10.984 DEBUG [3829]: Closing database connection -- 01:08:10.984 SQL [3829]: pgsql_close() -- 01:08:11.062 INFO [3829]: COREGRADE is starting... -- 01:08:11.062 INFO [3829]: Version from config: 1.0 -- 01:08:11.062 DEBUG [3829]: Connecting to database... -- 01:08:11.062 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:11.062 SQL [3829]: pgsql_db_connect() -- 01:08:11.066 DEBUG [3829]: Database connection successful -- 01:08:11.066 INFO [3829]: _SERVER found -- 01:08:11.066 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 01:08:11.066 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:11.066 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:11.066 INFO [3829]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 01:08:11.066 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:11.078 INFO [3829]: COREGRADE is stopping... -- 01:08:11.078 DEBUG [3829]: Closing database connection -- 01:08:11.078 SQL [3829]: pgsql_close() -- 01:08:11.147 INFO [3829]: COREGRADE is starting... -- 01:08:11.147 INFO [3829]: Version from config: 1.0 -- 01:08:11.147 DEBUG [3829]: Connecting to database... -- 01:08:11.147 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:11.147 SQL [3829]: pgsql_db_connect() -- 01:08:11.151 DEBUG [3829]: Database connection successful -- 01:08:11.151 INFO [3829]: _SERVER found -- 01:08:11.151 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 01:08:11.151 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:11.151 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:11.151 INFO [3829]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 01:08:11.151 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:11.163 INFO [3829]: COREGRADE is stopping... -- 01:08:11.163 DEBUG [3829]: Closing database connection -- 01:08:11.163 SQL [3829]: pgsql_close() -- 01:08:11.233 INFO [3829]: COREGRADE is starting... -- 01:08:11.233 INFO [3829]: Version from config: 1.0 -- 01:08:11.233 DEBUG [3829]: Connecting to database... -- 01:08:11.233 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:08:11.233 SQL [3829]: pgsql_db_connect() -- 01:08:11.237 DEBUG [3829]: Database connection successful -- 01:08:11.237 INFO [3829]: _SERVER found -- 01:08:11.237 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 01:08:11.237 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:08:11.237 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:08:11.237 INFO [3829]: QUERY_STRING = /assets/customjs/general.js -- 01:08:11.237 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:08:11.249 INFO [3829]: COREGRADE is stopping... -- 01:08:11.249 DEBUG [3829]: Closing database connection -- 01:08:11.249 SQL [3829]: pgsql_close() -- 01:28:11.467 INFO [3742]: COREGRADE is starting... -- 01:28:11.467 INFO [3742]: Version from config: 1.0 -- 01:28:11.467 DEBUG [3742]: Connecting to database... -- 01:28:11.467 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:11.467 SQL [3742]: pgsql_db_connect() -- 01:28:11.472 DEBUG [3742]: Database connection successful -- 01:28:11.472 INFO [3742]: _SERVER found -- 01:28:11.472 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 01:28:11.472 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:11.472 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5oagc6dlc321j14gmm4dfpcbt77o476n -- 01:28:11.472 INFO [3742]: QUERY_STRING = /logout -- 01:28:11.472 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:11.508 INFO [3742]: COREGRADE is stopping... -- 01:28:11.508 DEBUG [3742]: Closing database connection -- 01:28:11.508 SQL [3742]: pgsql_close() -- 01:28:11.588 INFO [3742]: COREGRADE is starting... -- 01:28:11.588 INFO [3742]: Version from config: 1.0 -- 01:28:11.588 DEBUG [3742]: Connecting to database... -- 01:28:11.588 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:11.588 SQL [3742]: pgsql_db_connect() -- 01:28:11.592 DEBUG [3742]: Database connection successful -- 01:28:11.592 INFO [3742]: _SERVER found -- 01:28:11.592 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 01:28:11.592 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:11.592 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:11.592 INFO [3742]: QUERY_STRING = /start -- 01:28:11.592 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:11.628 INFO [3742]: COREGRADE is stopping... -- 01:28:11.628 DEBUG [3742]: Closing database connection -- 01:28:11.628 SQL [3742]: pgsql_close() -- 01:28:11.758 INFO [3742]: COREGRADE is starting... -- 01:28:11.758 INFO [3742]: Version from config: 1.0 -- 01:28:11.758 DEBUG [3742]: Connecting to database... -- 01:28:11.758 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:11.758 SQL [3742]: pgsql_db_connect() -- 01:28:11.762 DEBUG [3742]: Database connection successful -- 01:28:11.762 INFO [3742]: _SERVER found -- 01:28:11.762 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 01:28:11.762 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:11.762 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:11.762 INFO [3742]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 01:28:11.762 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:11.774 INFO [3742]: COREGRADE is stopping... -- 01:28:11.774 DEBUG [3742]: Closing database connection -- 01:28:11.774 SQL [3742]: pgsql_close() -- 01:28:11.779 INFO [3742]: COREGRADE is starting... -- 01:28:11.779 INFO [3742]: Version from config: 1.0 -- 01:28:11.779 DEBUG [3742]: Connecting to database... -- 01:28:11.779 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:11.779 SQL [3742]: pgsql_db_connect() -- 01:28:11.783 DEBUG [3742]: Database connection successful -- 01:28:11.783 INFO [3742]: _SERVER found -- 01:28:11.783 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 01:28:11.783 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:11.783 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:11.783 INFO [3742]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 01:28:11.783 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:11.795 INFO [3742]: COREGRADE is stopping... -- 01:28:11.795 DEBUG [3742]: Closing database connection -- 01:28:11.795 SQL [3742]: pgsql_close() -- 01:28:11.827 INFO [3738]: COREGRADE is starting... -- 01:28:11.827 INFO [3738]: Version from config: 1.0 -- 01:28:11.827 DEBUG [3738]: Connecting to database... -- 01:28:11.827 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:11.827 SQL [3738]: pgsql_db_connect() -- 01:28:11.831 DEBUG [3738]: Database connection successful -- 01:28:11.831 INFO [3738]: _SERVER found -- 01:28:11.831 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 01:28:11.831 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:11.831 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:11.831 INFO [3738]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 01:28:11.831 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:11.845 INFO [3738]: COREGRADE is stopping... -- 01:28:11.845 DEBUG [3738]: Closing database connection -- 01:28:11.845 SQL [3738]: pgsql_close() -- 01:28:11.854 INFO [3742]: COREGRADE is starting... -- 01:28:11.854 INFO [3742]: Version from config: 1.0 -- 01:28:11.854 DEBUG [3742]: Connecting to database... -- 01:28:11.854 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:11.854 SQL [3742]: pgsql_db_connect() -- 01:28:11.862 INFO [3739]: COREGRADE is starting... -- 01:28:11.862 INFO [3739]: Version from config: 1.0 -- 01:28:11.862 DEBUG [3739]: Connecting to database... -- 01:28:11.862 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:11.862 SQL [3739]: pgsql_db_connect() -- 01:28:11.858 DEBUG [3742]: Database connection successful -- 01:28:11.858 INFO [3742]: _SERVER found -- 01:28:11.858 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 01:28:11.858 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:11.858 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:11.858 INFO [3742]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 01:28:11.858 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:11.870 INFO [3742]: COREGRADE is stopping... -- 01:28:11.870 DEBUG [3742]: Closing database connection -- 01:28:11.870 SQL [3742]: pgsql_close() -- 01:28:11.866 DEBUG [3739]: Database connection successful -- 01:28:11.866 INFO [3739]: _SERVER found -- 01:28:11.866 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 01:28:11.866 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:11.866 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:11.866 INFO [3739]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 01:28:11.866 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:11.879 INFO [3739]: COREGRADE is stopping... -- 01:28:11.879 DEBUG [3739]: Closing database connection -- 01:28:11.879 SQL [3739]: pgsql_close() -- 01:28:11.925 INFO [3738]: COREGRADE is starting... -- 01:28:11.926 INFO [3738]: Version from config: 1.0 -- 01:28:11.926 DEBUG [3738]: Connecting to database... -- 01:28:11.926 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:11.926 SQL [3738]: pgsql_db_connect() -- 01:28:11.930 DEBUG [3738]: Database connection successful -- 01:28:11.930 INFO [3738]: _SERVER found -- 01:28:11.930 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 01:28:11.930 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:11.930 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:11.930 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 01:28:11.930 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:11.941 INFO [3738]: COREGRADE is stopping... -- 01:28:11.941 DEBUG [3738]: Closing database connection -- 01:28:11.941 SQL [3738]: pgsql_close() -- 01:28:11.950 INFO [3739]: COREGRADE is starting... -- 01:28:11.950 INFO [3742]: COREGRADE is starting... -- 01:28:11.951 INFO [3742]: Version from config: 1.0 -- 01:28:11.951 DEBUG [3742]: Connecting to database... -- 01:28:11.951 INFO [3739]: Version from config: 1.0 -- 01:28:11.951 DEBUG [3739]: Connecting to database... -- 01:28:11.951 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:11.951 SQL [3742]: pgsql_db_connect() -- 01:28:11.951 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:11.951 SQL [3739]: pgsql_db_connect() -- 01:28:11.955 DEBUG [3739]: Database connection successful -- 01:28:11.955 INFO [3739]: _SERVER found -- 01:28:11.955 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 01:28:11.955 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:11.955 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:11.955 INFO [3739]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 01:28:11.955 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:11.966 INFO [3739]: COREGRADE is stopping... -- 01:28:11.966 DEBUG [3739]: Closing database connection -- 01:28:11.966 SQL [3739]: pgsql_close() -- 01:28:11.955 DEBUG [3742]: Database connection successful -- 01:28:11.955 INFO [3742]: _SERVER found -- 01:28:11.955 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 01:28:11.955 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:11.955 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:11.955 INFO [3742]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 01:28:11.955 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:11.967 INFO [3742]: COREGRADE is stopping... -- 01:28:11.967 DEBUG [3742]: Closing database connection -- 01:28:11.967 SQL [3742]: pgsql_close() -- 01:28:12.022 INFO [3738]: COREGRADE is starting... -- 01:28:12.022 INFO [3738]: Version from config: 1.0 -- 01:28:12.022 DEBUG [3738]: Connecting to database... -- 01:28:12.022 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:12.022 SQL [3738]: pgsql_db_connect() -- 01:28:12.036 INFO [3742]: COREGRADE is starting... -- 01:28:12.037 INFO [3742]: Version from config: 1.0 -- 01:28:12.037 DEBUG [3742]: Connecting to database... -- 01:28:12.037 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:12.037 SQL [3742]: pgsql_db_connect() -- 01:28:12.026 DEBUG [3738]: Database connection successful -- 01:28:12.026 INFO [3738]: _SERVER found -- 01:28:12.026 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 01:28:12.026 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:12.026 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:12.026 INFO [3738]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 01:28:12.026 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:12.038 INFO [3738]: COREGRADE is stopping... -- 01:28:12.038 DEBUG [3738]: Closing database connection -- 01:28:12.038 SQL [3738]: pgsql_close() -- 01:28:12.045 INFO [3739]: COREGRADE is starting... -- 01:28:12.045 INFO [3739]: Version from config: 1.0 -- 01:28:12.045 DEBUG [3739]: Connecting to database... -- 01:28:12.045 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:12.045 SQL [3739]: pgsql_db_connect() -- 01:28:12.041 DEBUG [3742]: Database connection successful -- 01:28:12.041 INFO [3742]: _SERVER found -- 01:28:12.041 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 01:28:12.041 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:12.041 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:12.041 INFO [3742]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 01:28:12.041 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:12.053 INFO [3742]: COREGRADE is stopping... -- 01:28:12.053 DEBUG [3742]: Closing database connection -- 01:28:12.053 SQL [3742]: pgsql_close() -- 01:28:12.049 DEBUG [3739]: Database connection successful -- 01:28:12.049 INFO [3739]: _SERVER found -- 01:28:12.049 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 01:28:12.049 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:12.049 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:12.049 INFO [3739]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 01:28:12.049 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:12.061 INFO [3739]: COREGRADE is stopping... -- 01:28:12.061 DEBUG [3739]: Closing database connection -- 01:28:12.061 SQL [3739]: pgsql_close() -- 01:28:12.119 INFO [3739]: COREGRADE is starting... -- 01:28:12.120 INFO [3739]: Version from config: 1.0 -- 01:28:12.120 DEBUG [3739]: Connecting to database... -- 01:28:12.120 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:12.120 SQL [3739]: pgsql_db_connect() -- 01:28:12.124 INFO [3738]: COREGRADE is starting... -- 01:28:12.124 INFO [3738]: Version from config: 1.0 -- 01:28:12.124 DEBUG [3738]: Connecting to database... -- 01:28:12.124 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:12.124 SQL [3738]: pgsql_db_connect() -- 01:28:12.130 INFO [3742]: COREGRADE is starting... -- 01:28:12.131 INFO [3742]: Version from config: 1.0 -- 01:28:12.131 DEBUG [3742]: Connecting to database... -- 01:28:12.131 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:12.131 SQL [3742]: pgsql_db_connect() -- 01:28:12.124 DEBUG [3739]: Database connection successful -- 01:28:12.124 INFO [3739]: _SERVER found -- 01:28:12.124 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 01:28:12.124 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:12.124 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:12.124 INFO [3739]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 01:28:12.124 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:12.135 INFO [3739]: COREGRADE is stopping... -- 01:28:12.135 DEBUG [3739]: Closing database connection -- 01:28:12.135 SQL [3739]: pgsql_close() -- 01:28:12.128 DEBUG [3738]: Database connection successful -- 01:28:12.128 INFO [3738]: _SERVER found -- 01:28:12.128 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 01:28:12.128 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:12.128 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:12.128 INFO [3738]: QUERY_STRING = /assets/js/pages/dashboard.js -- 01:28:12.128 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:12.140 INFO [3738]: COREGRADE is stopping... -- 01:28:12.140 DEBUG [3738]: Closing database connection -- 01:28:12.140 SQL [3738]: pgsql_close() -- 01:28:12.135 DEBUG [3742]: Database connection successful -- 01:28:12.135 INFO [3742]: _SERVER found -- 01:28:12.135 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 01:28:12.135 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:12.135 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:12.135 INFO [3742]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 01:28:12.135 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:12.147 INFO [3742]: COREGRADE is stopping... -- 01:28:12.147 DEBUG [3742]: Closing database connection -- 01:28:12.147 SQL [3742]: pgsql_close() -- 01:28:12.204 INFO [3742]: COREGRADE is starting... -- 01:28:12.204 INFO [3742]: Version from config: 1.0 -- 01:28:12.204 DEBUG [3742]: Connecting to database... -- 01:28:12.204 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:12.204 SQL [3742]: pgsql_db_connect() -- 01:28:12.211 INFO [3738]: COREGRADE is starting... -- 01:28:12.211 INFO [3738]: Version from config: 1.0 -- 01:28:12.211 DEBUG [3738]: Connecting to database... -- 01:28:12.211 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:12.211 SQL [3738]: pgsql_db_connect() -- 01:28:12.215 INFO [3739]: COREGRADE is starting... -- 01:28:12.216 INFO [3739]: Version from config: 1.0 -- 01:28:12.216 DEBUG [3739]: Connecting to database... -- 01:28:12.216 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:12.216 SQL [3739]: pgsql_db_connect() -- 01:28:12.208 DEBUG [3742]: Database connection successful -- 01:28:12.208 INFO [3742]: _SERVER found -- 01:28:12.208 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 01:28:12.208 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:12.208 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:12.208 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 01:28:12.208 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:12.220 INFO [3742]: COREGRADE is stopping... -- 01:28:12.220 DEBUG [3742]: Closing database connection -- 01:28:12.220 SQL [3742]: pgsql_close() -- 01:28:12.215 DEBUG [3738]: Database connection successful -- 01:28:12.215 INFO [3738]: _SERVER found -- 01:28:12.215 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 01:28:12.215 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:12.215 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:12.215 INFO [3738]: QUERY_STRING = /assets/js/pages/picker_date.js -- 01:28:12.215 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:12.227 INFO [3738]: COREGRADE is stopping... -- 01:28:12.227 DEBUG [3738]: Closing database connection -- 01:28:12.227 SQL [3738]: pgsql_close() -- 01:28:12.220 DEBUG [3739]: Database connection successful -- 01:28:12.220 INFO [3739]: _SERVER found -- 01:28:12.220 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 01:28:12.220 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:12.220 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:12.220 INFO [3739]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 01:28:12.220 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:12.231 INFO [3739]: COREGRADE is stopping... -- 01:28:12.231 DEBUG [3739]: Closing database connection -- 01:28:12.231 SQL [3739]: pgsql_close() -- 01:28:12.290 INFO [3739]: COREGRADE is starting... -- 01:28:12.290 INFO [3739]: Version from config: 1.0 -- 01:28:12.290 DEBUG [3739]: Connecting to database... -- 01:28:12.290 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:12.290 SQL [3739]: pgsql_db_connect() -- 01:28:12.299 INFO [3738]: COREGRADE is starting... -- 01:28:12.300 INFO [3742]: COREGRADE is starting... -- 01:28:12.300 INFO [3738]: Version from config: 1.0 -- 01:28:12.300 DEBUG [3738]: Connecting to database... -- 01:28:12.300 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:12.300 SQL [3738]: pgsql_db_connect() -- 01:28:12.300 INFO [3742]: Version from config: 1.0 -- 01:28:12.300 DEBUG [3742]: Connecting to database... -- 01:28:12.300 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:12.300 SQL [3742]: pgsql_db_connect() -- 01:28:12.294 DEBUG [3739]: Database connection successful -- 01:28:12.294 INFO [3739]: _SERVER found -- 01:28:12.294 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 01:28:12.294 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:12.294 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:12.294 INFO [3739]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 01:28:12.294 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:12.306 INFO [3739]: COREGRADE is stopping... -- 01:28:12.306 DEBUG [3739]: Closing database connection -- 01:28:12.306 SQL [3739]: pgsql_close() -- 01:28:12.305 DEBUG [3738]: Database connection successful -- 01:28:12.305 INFO [3738]: _SERVER found -- 01:28:12.305 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 01:28:12.305 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:12.305 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:12.305 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 01:28:12.305 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:12.317 INFO [3738]: COREGRADE is stopping... -- 01:28:12.317 DEBUG [3738]: Closing database connection -- 01:28:12.317 SQL [3738]: pgsql_close() -- 01:28:12.305 DEBUG [3742]: Database connection successful -- 01:28:12.305 INFO [3742]: _SERVER found -- 01:28:12.305 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 01:28:12.305 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:12.305 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:12.305 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 01:28:12.305 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:12.318 INFO [3742]: COREGRADE is stopping... -- 01:28:12.318 DEBUG [3742]: Closing database connection -- 01:28:12.318 SQL [3742]: pgsql_close() -- 01:28:12.373 INFO [3742]: COREGRADE is starting... -- 01:28:12.373 INFO [3742]: Version from config: 1.0 -- 01:28:12.373 DEBUG [3742]: Connecting to database... -- 01:28:12.373 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:12.373 SQL [3742]: pgsql_db_connect() -- 01:28:12.386 INFO [3739]: COREGRADE is starting... -- 01:28:12.386 INFO [3738]: COREGRADE is starting... -- 01:28:12.386 INFO [3739]: Version from config: 1.0 -- 01:28:12.386 DEBUG [3739]: Connecting to database... -- 01:28:12.386 INFO [3738]: Version from config: 1.0 -- 01:28:12.386 DEBUG [3738]: Connecting to database... -- 01:28:12.386 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:12.386 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:12.386 SQL [3739]: pgsql_db_connect() -- 01:28:12.386 SQL [3738]: pgsql_db_connect() -- 01:28:12.377 DEBUG [3742]: Database connection successful -- 01:28:12.377 INFO [3742]: _SERVER found -- 01:28:12.377 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 01:28:12.377 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:12.377 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:12.377 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 01:28:12.377 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:12.389 INFO [3742]: COREGRADE is stopping... -- 01:28:12.389 DEBUG [3742]: Closing database connection -- 01:28:12.389 SQL [3742]: pgsql_close() -- 01:28:12.391 DEBUG [3739]: Database connection successful -- 01:28:12.391 INFO [3739]: _SERVER found -- 01:28:12.391 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 01:28:12.391 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:12.391 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:12.391 INFO [3739]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 01:28:12.391 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:12.403 INFO [3739]: COREGRADE is stopping... -- 01:28:12.391 DEBUG [3738]: Database connection successful -- 01:28:12.391 INFO [3738]: _SERVER found -- 01:28:12.391 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 01:28:12.391 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:12.391 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:12.391 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 01:28:12.391 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:12.403 INFO [3738]: COREGRADE is stopping... -- 01:28:12.403 DEBUG [3739]: Closing database connection -- 01:28:12.403 DEBUG [3738]: Closing database connection -- 01:28:12.403 SQL [3739]: pgsql_close() -- 01:28:12.403 SQL [3738]: pgsql_close() -- 01:28:12.456 INFO [3739]: COREGRADE is starting... -- 01:28:12.456 INFO [3739]: Version from config: 1.0 -- 01:28:12.456 DEBUG [3739]: Connecting to database... -- 01:28:12.456 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:12.456 SQL [3739]: pgsql_db_connect() -- 01:28:12.472 INFO [3742]: COREGRADE is starting... -- 01:28:12.472 INFO [3742]: Version from config: 1.0 -- 01:28:12.472 DEBUG [3742]: Connecting to database... -- 01:28:12.472 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:12.472 SQL [3742]: pgsql_db_connect() -- 01:28:12.460 DEBUG [3739]: Database connection successful -- 01:28:12.460 INFO [3739]: _SERVER found -- 01:28:12.460 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 01:28:12.460 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:12.460 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:12.460 INFO [3739]: QUERY_STRING = /assets/customjs/general.js -- 01:28:12.460 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:12.472 INFO [3739]: COREGRADE is stopping... -- 01:28:12.472 DEBUG [3739]: Closing database connection -- 01:28:12.472 SQL [3739]: pgsql_close() -- 01:28:12.476 DEBUG [3742]: Database connection successful -- 01:28:12.476 INFO [3742]: _SERVER found -- 01:28:12.476 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 01:28:12.476 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:12.476 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:12.476 INFO [3742]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 01:28:12.476 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:12.489 INFO [3742]: COREGRADE is stopping... -- 01:28:12.489 DEBUG [3742]: Closing database connection -- 01:28:12.489 SQL [3742]: pgsql_close() -- 01:28:12.557 INFO [3742]: COREGRADE is starting... -- 01:28:12.558 INFO [3742]: Version from config: 1.0 -- 01:28:12.558 DEBUG [3742]: Connecting to database... -- 01:28:12.558 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:12.558 SQL [3742]: pgsql_db_connect() -- 01:28:12.562 DEBUG [3742]: Database connection successful -- 01:28:12.562 INFO [3742]: _SERVER found -- 01:28:12.562 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 01:28:12.562 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:12.562 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:12.562 INFO [3742]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 01:28:12.562 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:12.574 INFO [3742]: COREGRADE is stopping... -- 01:28:12.574 DEBUG [3742]: Closing database connection -- 01:28:12.574 SQL [3742]: pgsql_close() -- 01:28:12.642 INFO [3742]: COREGRADE is starting... -- 01:28:12.643 INFO [3742]: Version from config: 1.0 -- 01:28:12.643 DEBUG [3742]: Connecting to database... -- 01:28:12.643 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:12.643 SQL [3742]: pgsql_db_connect() -- 01:28:12.647 DEBUG [3742]: Database connection successful -- 01:28:12.647 INFO [3742]: _SERVER found -- 01:28:12.647 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 01:28:12.647 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:12.647 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:12.647 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 01:28:12.647 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:12.659 INFO [3742]: COREGRADE is stopping... -- 01:28:12.659 DEBUG [3742]: Closing database connection -- 01:28:12.659 SQL [3742]: pgsql_close() -- 01:28:12.728 INFO [3742]: COREGRADE is starting... -- 01:28:12.728 INFO [3742]: Version from config: 1.0 -- 01:28:12.728 DEBUG [3742]: Connecting to database... -- 01:28:12.728 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:12.728 SQL [3742]: pgsql_db_connect() -- 01:28:12.732 DEBUG [3742]: Database connection successful -- 01:28:12.732 INFO [3742]: _SERVER found -- 01:28:12.732 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 01:28:12.732 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:12.732 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:12.732 INFO [3742]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 01:28:12.732 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:12.744 INFO [3742]: COREGRADE is stopping... -- 01:28:12.745 DEBUG [3742]: Closing database connection -- 01:28:12.745 SQL [3742]: pgsql_close() -- 01:28:12.813 INFO [3742]: COREGRADE is starting... -- 01:28:12.814 INFO [3742]: Version from config: 1.0 -- 01:28:12.814 DEBUG [3742]: Connecting to database... -- 01:28:12.814 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:12.814 SQL [3742]: pgsql_db_connect() -- 01:28:12.818 DEBUG [3742]: Database connection successful -- 01:28:12.818 INFO [3742]: _SERVER found -- 01:28:12.818 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 01:28:12.818 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:12.818 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:12.818 INFO [3742]: QUERY_STRING = /assets/js/pages/dashboard.js -- 01:28:12.818 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:12.830 INFO [3742]: COREGRADE is stopping... -- 01:28:12.830 DEBUG [3742]: Closing database connection -- 01:28:12.830 SQL [3742]: pgsql_close() -- 01:28:12.900 INFO [3742]: COREGRADE is starting... -- 01:28:12.900 INFO [3742]: Version from config: 1.0 -- 01:28:12.900 DEBUG [3742]: Connecting to database... -- 01:28:12.900 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:12.900 SQL [3742]: pgsql_db_connect() -- 01:28:12.904 DEBUG [3742]: Database connection successful -- 01:28:12.904 INFO [3742]: _SERVER found -- 01:28:12.904 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 01:28:12.904 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:12.904 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:12.904 INFO [3742]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 01:28:12.904 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:12.916 INFO [3742]: COREGRADE is stopping... -- 01:28:12.916 DEBUG [3742]: Closing database connection -- 01:28:12.916 SQL [3742]: pgsql_close() -- 01:28:12.984 INFO [3742]: COREGRADE is starting... -- 01:28:12.985 INFO [3742]: Version from config: 1.0 -- 01:28:12.985 DEBUG [3742]: Connecting to database... -- 01:28:12.985 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:12.985 SQL [3742]: pgsql_db_connect() -- 01:28:12.989 DEBUG [3742]: Database connection successful -- 01:28:12.989 INFO [3742]: _SERVER found -- 01:28:12.989 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 01:28:12.989 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:12.989 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:12.989 INFO [3742]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 01:28:12.989 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:13.001 INFO [3742]: COREGRADE is stopping... -- 01:28:13.001 DEBUG [3742]: Closing database connection -- 01:28:13.001 SQL [3742]: pgsql_close() -- 01:28:13.070 INFO [3742]: COREGRADE is starting... -- 01:28:13.070 INFO [3742]: Version from config: 1.0 -- 01:28:13.070 DEBUG [3742]: Connecting to database... -- 01:28:13.071 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:13.071 SQL [3742]: pgsql_db_connect() -- 01:28:13.075 DEBUG [3742]: Database connection successful -- 01:28:13.075 INFO [3742]: _SERVER found -- 01:28:13.075 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 01:28:13.075 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:13.075 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:13.075 INFO [3742]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 01:28:13.075 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:13.087 INFO [3742]: COREGRADE is stopping... -- 01:28:13.087 DEBUG [3742]: Closing database connection -- 01:28:13.087 SQL [3742]: pgsql_close() -- 01:28:13.156 INFO [3742]: COREGRADE is starting... -- 01:28:13.156 INFO [3742]: Version from config: 1.0 -- 01:28:13.156 DEBUG [3742]: Connecting to database... -- 01:28:13.156 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:13.156 SQL [3742]: pgsql_db_connect() -- 01:28:13.160 DEBUG [3742]: Database connection successful -- 01:28:13.160 INFO [3742]: _SERVER found -- 01:28:13.160 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 01:28:13.160 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:13.160 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:13.160 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 01:28:13.160 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:13.172 INFO [3742]: COREGRADE is stopping... -- 01:28:13.172 DEBUG [3742]: Closing database connection -- 01:28:13.172 SQL [3742]: pgsql_close() -- 01:28:13.241 INFO [3742]: COREGRADE is starting... -- 01:28:13.241 INFO [3742]: Version from config: 1.0 -- 01:28:13.241 DEBUG [3742]: Connecting to database... -- 01:28:13.242 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:13.242 SQL [3742]: pgsql_db_connect() -- 01:28:13.246 DEBUG [3742]: Database connection successful -- 01:28:13.246 INFO [3742]: _SERVER found -- 01:28:13.246 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 01:28:13.246 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:13.246 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:13.246 INFO [3742]: QUERY_STRING = /assets/js/pages/picker_date.js -- 01:28:13.246 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:13.258 INFO [3742]: COREGRADE is stopping... -- 01:28:13.258 DEBUG [3742]: Closing database connection -- 01:28:13.258 SQL [3742]: pgsql_close() -- 01:28:13.326 INFO [3742]: COREGRADE is starting... -- 01:28:13.327 INFO [3742]: Version from config: 1.0 -- 01:28:13.327 DEBUG [3742]: Connecting to database... -- 01:28:13.327 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:13.327 SQL [3742]: pgsql_db_connect() -- 01:28:13.331 DEBUG [3742]: Database connection successful -- 01:28:13.331 INFO [3742]: _SERVER found -- 01:28:13.331 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 01:28:13.331 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:13.331 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:13.331 INFO [3742]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 01:28:13.331 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:13.343 INFO [3742]: COREGRADE is stopping... -- 01:28:13.343 DEBUG [3742]: Closing database connection -- 01:28:13.343 SQL [3742]: pgsql_close() -- 01:28:13.411 INFO [3742]: COREGRADE is starting... -- 01:28:13.411 INFO [3742]: Version from config: 1.0 -- 01:28:13.411 DEBUG [3742]: Connecting to database... -- 01:28:13.411 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:13.411 SQL [3742]: pgsql_db_connect() -- 01:28:13.416 DEBUG [3742]: Database connection successful -- 01:28:13.416 INFO [3742]: _SERVER found -- 01:28:13.416 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 01:28:13.416 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:13.416 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:13.416 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 01:28:13.416 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:13.428 INFO [3742]: COREGRADE is stopping... -- 01:28:13.428 DEBUG [3742]: Closing database connection -- 01:28:13.428 SQL [3742]: pgsql_close() -- 01:28:13.496 INFO [3742]: COREGRADE is starting... -- 01:28:13.496 INFO [3742]: Version from config: 1.0 -- 01:28:13.496 DEBUG [3742]: Connecting to database... -- 01:28:13.496 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:13.496 SQL [3742]: pgsql_db_connect() -- 01:28:13.502 DEBUG [3742]: Database connection successful -- 01:28:13.502 INFO [3742]: _SERVER found -- 01:28:13.502 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 01:28:13.502 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:13.502 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:13.502 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 01:28:13.502 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:13.514 INFO [3742]: COREGRADE is stopping... -- 01:28:13.514 DEBUG [3742]: Closing database connection -- 01:28:13.514 SQL [3742]: pgsql_close() -- 01:28:13.584 INFO [3742]: COREGRADE is starting... -- 01:28:13.584 INFO [3742]: Version from config: 1.0 -- 01:28:13.584 DEBUG [3742]: Connecting to database... -- 01:28:13.584 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:13.584 SQL [3742]: pgsql_db_connect() -- 01:28:13.588 DEBUG [3742]: Database connection successful -- 01:28:13.588 INFO [3742]: _SERVER found -- 01:28:13.588 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 01:28:13.588 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:13.588 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:13.588 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 01:28:13.588 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:13.601 INFO [3742]: COREGRADE is stopping... -- 01:28:13.601 DEBUG [3742]: Closing database connection -- 01:28:13.601 SQL [3742]: pgsql_close() -- 01:28:13.670 INFO [3742]: COREGRADE is starting... -- 01:28:13.671 INFO [3742]: Version from config: 1.0 -- 01:28:13.671 DEBUG [3742]: Connecting to database... -- 01:28:13.671 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:13.671 SQL [3742]: pgsql_db_connect() -- 01:28:13.675 DEBUG [3742]: Database connection successful -- 01:28:13.675 INFO [3742]: _SERVER found -- 01:28:13.675 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 01:28:13.675 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:13.675 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:13.675 INFO [3742]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 01:28:13.675 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:13.687 INFO [3742]: COREGRADE is stopping... -- 01:28:13.687 DEBUG [3742]: Closing database connection -- 01:28:13.687 SQL [3742]: pgsql_close() -- 01:28:13.766 INFO [3742]: COREGRADE is starting... -- 01:28:13.766 INFO [3742]: Version from config: 1.0 -- 01:28:13.766 DEBUG [3742]: Connecting to database... -- 01:28:13.766 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:13.766 SQL [3742]: pgsql_db_connect() -- 01:28:13.770 DEBUG [3742]: Database connection successful -- 01:28:13.770 INFO [3742]: _SERVER found -- 01:28:13.770 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 01:28:13.770 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:13.770 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:13.770 INFO [3742]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 01:28:13.770 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:13.782 INFO [3742]: COREGRADE is stopping... -- 01:28:13.782 DEBUG [3742]: Closing database connection -- 01:28:13.782 SQL [3742]: pgsql_close() -- 01:28:13.851 INFO [3742]: COREGRADE is starting... -- 01:28:13.851 INFO [3742]: Version from config: 1.0 -- 01:28:13.851 DEBUG [3742]: Connecting to database... -- 01:28:13.851 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:13.851 SQL [3742]: pgsql_db_connect() -- 01:28:13.856 DEBUG [3742]: Database connection successful -- 01:28:13.856 INFO [3742]: _SERVER found -- 01:28:13.856 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 01:28:13.856 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:13.856 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:13.856 INFO [3742]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 01:28:13.856 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:13.868 INFO [3742]: COREGRADE is stopping... -- 01:28:13.868 DEBUG [3742]: Closing database connection -- 01:28:13.868 SQL [3742]: pgsql_close() -- 01:28:13.938 INFO [3742]: COREGRADE is starting... -- 01:28:13.938 INFO [3742]: Version from config: 1.0 -- 01:28:13.938 DEBUG [3742]: Connecting to database... -- 01:28:13.938 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:28:13.938 SQL [3742]: pgsql_db_connect() -- 01:28:13.942 DEBUG [3742]: Database connection successful -- 01:28:13.942 INFO [3742]: _SERVER found -- 01:28:13.942 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 01:28:13.942 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:28:13.942 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:28:13.942 INFO [3742]: QUERY_STRING = /assets/customjs/general.js -- 01:28:13.942 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:28:13.954 INFO [3742]: COREGRADE is stopping... -- 01:28:13.954 DEBUG [3742]: Closing database connection -- 01:28:13.954 SQL [3742]: pgsql_close() -- 01:48:14.172 INFO [3741]: COREGRADE is starting... -- 01:48:14.172 INFO [3741]: Version from config: 1.0 -- 01:48:14.172 DEBUG [3741]: Connecting to database... -- 01:48:14.172 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:14.172 SQL [3741]: pgsql_db_connect() -- 01:48:14.177 DEBUG [3741]: Database connection successful -- 01:48:14.177 INFO [3741]: _SERVER found -- 01:48:14.177 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 01:48:14.177 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:14.177 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=pv57iukn48ji5t4q4l1r3d5uj6lj7i92 -- 01:48:14.177 INFO [3741]: QUERY_STRING = /logout -- 01:48:14.177 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:14.212 INFO [3741]: COREGRADE is stopping... -- 01:48:14.212 DEBUG [3741]: Closing database connection -- 01:48:14.212 SQL [3741]: pgsql_close() -- 01:48:14.290 INFO [3741]: COREGRADE is starting... -- 01:48:14.290 INFO [3741]: Version from config: 1.0 -- 01:48:14.290 DEBUG [3741]: Connecting to database... -- 01:48:14.290 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:14.290 SQL [3741]: pgsql_db_connect() -- 01:48:14.294 DEBUG [3741]: Database connection successful -- 01:48:14.294 INFO [3741]: _SERVER found -- 01:48:14.294 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 01:48:14.294 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:14.294 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:14.294 INFO [3741]: QUERY_STRING = /start -- 01:48:14.294 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:14.328 INFO [3741]: COREGRADE is stopping... -- 01:48:14.328 DEBUG [3741]: Closing database connection -- 01:48:14.328 SQL [3741]: pgsql_close() -- 01:48:14.453 INFO [3741]: COREGRADE is starting... -- 01:48:14.453 INFO [3741]: Version from config: 1.0 -- 01:48:14.453 DEBUG [3741]: Connecting to database... -- 01:48:14.453 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:14.453 SQL [3741]: pgsql_db_connect() -- 01:48:14.457 DEBUG [3741]: Database connection successful -- 01:48:14.458 INFO [3741]: _SERVER found -- 01:48:14.458 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 01:48:14.458 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:14.458 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:14.458 INFO [3741]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 01:48:14.458 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:14.469 INFO [3741]: COREGRADE is stopping... -- 01:48:14.469 DEBUG [3741]: Closing database connection -- 01:48:14.469 SQL [3741]: pgsql_close() -- 01:48:14.471 INFO [3741]: COREGRADE is starting... -- 01:48:14.472 INFO [3741]: Version from config: 1.0 -- 01:48:14.472 DEBUG [3741]: Connecting to database... -- 01:48:14.472 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:14.472 SQL [3741]: pgsql_db_connect() -- 01:48:14.476 DEBUG [3741]: Database connection successful -- 01:48:14.476 INFO [3741]: _SERVER found -- 01:48:14.476 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 01:48:14.476 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:14.476 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:14.476 INFO [3741]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 01:48:14.476 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:14.487 INFO [3741]: COREGRADE is stopping... -- 01:48:14.487 DEBUG [3741]: Closing database connection -- 01:48:14.487 SQL [3741]: pgsql_close() -- 01:48:14.526 INFO [3741]: COREGRADE is starting... -- 01:48:14.526 INFO [3741]: Version from config: 1.0 -- 01:48:14.526 DEBUG [3741]: Connecting to database... -- 01:48:14.526 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:14.526 SQL [3741]: pgsql_db_connect() -- 01:48:14.530 DEBUG [3741]: Database connection successful -- 01:48:14.530 INFO [3741]: _SERVER found -- 01:48:14.530 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 01:48:14.530 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:14.530 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:14.530 INFO [3741]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 01:48:14.530 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:14.541 INFO [3741]: COREGRADE is stopping... -- 01:48:14.541 DEBUG [3741]: Closing database connection -- 01:48:14.541 SQL [3741]: pgsql_close() -- 01:48:14.548 INFO [3741]: COREGRADE is starting... -- 01:48:14.549 INFO [3741]: Version from config: 1.0 -- 01:48:14.549 DEBUG [3741]: Connecting to database... -- 01:48:14.549 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:14.549 SQL [3741]: pgsql_db_connect() -- 01:48:14.552 INFO [3828]: COREGRADE is starting... -- 01:48:14.553 INFO [3828]: Version from config: 1.0 -- 01:48:14.553 DEBUG [3828]: Connecting to database... -- 01:48:14.553 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:14.553 SQL [3828]: pgsql_db_connect() -- 01:48:14.553 DEBUG [3741]: Database connection successful -- 01:48:14.553 INFO [3741]: _SERVER found -- 01:48:14.553 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 01:48:14.553 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:14.553 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:14.553 INFO [3741]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 01:48:14.553 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:14.564 INFO [3741]: COREGRADE is stopping... -- 01:48:14.564 DEBUG [3741]: Closing database connection -- 01:48:14.564 SQL [3741]: pgsql_close() -- 01:48:14.557 DEBUG [3828]: Database connection successful -- 01:48:14.557 INFO [3828]: _SERVER found -- 01:48:14.557 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 01:48:14.557 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:14.557 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:14.557 INFO [3828]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 01:48:14.557 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:14.570 INFO [3828]: COREGRADE is stopping... -- 01:48:14.570 DEBUG [3828]: Closing database connection -- 01:48:14.570 SQL [3828]: pgsql_close() -- 01:48:14.625 INFO [3828]: COREGRADE is starting... -- 01:48:14.625 INFO [3828]: Version from config: 1.0 -- 01:48:14.625 DEBUG [3828]: Connecting to database... -- 01:48:14.625 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:14.625 SQL [3828]: pgsql_db_connect() -- 01:48:14.634 INFO [3741]: COREGRADE is starting... -- 01:48:14.634 INFO [3741]: Version from config: 1.0 -- 01:48:14.634 DEBUG [3741]: Connecting to database... -- 01:48:14.634 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:14.634 SQL [3741]: pgsql_db_connect() -- 01:48:14.629 DEBUG [3828]: Database connection successful -- 01:48:14.629 INFO [3828]: _SERVER found -- 01:48:14.629 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 01:48:14.629 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:14.629 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:14.629 INFO [3828]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 01:48:14.629 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:14.641 INFO [3828]: COREGRADE is stopping... -- 01:48:14.641 DEBUG [3828]: Closing database connection -- 01:48:14.641 SQL [3828]: pgsql_close() -- 01:48:14.644 INFO [3828]: COREGRADE is starting... -- 01:48:14.644 INFO [3828]: Version from config: 1.0 -- 01:48:14.644 DEBUG [3828]: Connecting to database... -- 01:48:14.644 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:14.644 SQL [3828]: pgsql_db_connect() -- 01:48:14.638 DEBUG [3741]: Database connection successful -- 01:48:14.638 INFO [3741]: _SERVER found -- 01:48:14.638 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 01:48:14.638 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:14.638 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:14.638 INFO [3741]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 01:48:14.638 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:14.650 INFO [3741]: COREGRADE is stopping... -- 01:48:14.650 DEBUG [3741]: Closing database connection -- 01:48:14.650 SQL [3741]: pgsql_close() -- 01:48:14.648 DEBUG [3828]: Database connection successful -- 01:48:14.648 INFO [3828]: _SERVER found -- 01:48:14.648 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 01:48:14.648 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:14.648 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:14.648 INFO [3828]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 01:48:14.648 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:14.660 INFO [3828]: COREGRADE is stopping... -- 01:48:14.660 DEBUG [3828]: Closing database connection -- 01:48:14.660 SQL [3828]: pgsql_close() -- 01:48:14.715 INFO [3828]: COREGRADE is starting... -- 01:48:14.715 INFO [3828]: Version from config: 1.0 -- 01:48:14.715 DEBUG [3828]: Connecting to database... -- 01:48:14.715 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:14.715 SQL [3828]: pgsql_db_connect() -- 01:48:14.720 INFO [3741]: COREGRADE is starting... -- 01:48:14.720 INFO [3741]: Version from config: 1.0 -- 01:48:14.720 DEBUG [3741]: Connecting to database... -- 01:48:14.720 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:14.720 SQL [3741]: pgsql_db_connect() -- 01:48:14.719 DEBUG [3828]: Database connection successful -- 01:48:14.719 INFO [3828]: _SERVER found -- 01:48:14.719 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 01:48:14.719 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:14.719 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:14.719 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 01:48:14.719 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:14.731 INFO [3828]: COREGRADE is stopping... -- 01:48:14.731 DEBUG [3828]: Closing database connection -- 01:48:14.731 SQL [3828]: pgsql_close() -- 01:48:14.724 DEBUG [3741]: Database connection successful -- 01:48:14.724 INFO [3741]: _SERVER found -- 01:48:14.724 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 01:48:14.724 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:14.724 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:14.724 INFO [3741]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 01:48:14.724 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:14.736 INFO [3741]: COREGRADE is stopping... -- 01:48:14.736 DEBUG [3741]: Closing database connection -- 01:48:14.736 SQL [3741]: pgsql_close() -- 01:48:14.738 INFO [3828]: COREGRADE is starting... -- 01:48:14.738 INFO [3828]: Version from config: 1.0 -- 01:48:14.738 DEBUG [3828]: Connecting to database... -- 01:48:14.738 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:14.738 SQL [3828]: pgsql_db_connect() -- 01:48:14.742 DEBUG [3828]: Database connection successful -- 01:48:14.742 INFO [3828]: _SERVER found -- 01:48:14.742 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 01:48:14.742 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:14.742 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:14.742 INFO [3828]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 01:48:14.742 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:14.754 INFO [3828]: COREGRADE is stopping... -- 01:48:14.754 DEBUG [3828]: Closing database connection -- 01:48:14.754 SQL [3828]: pgsql_close() -- 01:48:14.799 INFO [3828]: COREGRADE is starting... -- 01:48:14.799 INFO [3828]: Version from config: 1.0 -- 01:48:14.799 DEBUG [3828]: Connecting to database... -- 01:48:14.799 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:14.799 SQL [3828]: pgsql_db_connect() -- 01:48:14.815 INFO [3741]: COREGRADE is starting... -- 01:48:14.803 DEBUG [3828]: Database connection successful -- 01:48:14.803 INFO [3828]: _SERVER found -- 01:48:14.803 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 01:48:14.803 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:14.803 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:14.803 INFO [3828]: QUERY_STRING = /assets/js/pages/dashboard.js -- 01:48:14.803 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:14.815 INFO [3828]: COREGRADE is stopping... -- 01:48:14.815 DEBUG [3828]: Closing database connection -- 01:48:14.815 SQL [3828]: pgsql_close() -- 01:48:14.815 INFO [3741]: Version from config: 1.0 -- 01:48:14.815 DEBUG [3741]: Connecting to database... -- 01:48:14.815 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:14.815 SQL [3741]: pgsql_db_connect() -- 01:48:14.821 INFO [3828]: COREGRADE is starting... -- 01:48:14.822 INFO [3828]: Version from config: 1.0 -- 01:48:14.822 DEBUG [3828]: Connecting to database... -- 01:48:14.822 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:14.822 SQL [3828]: pgsql_db_connect() -- 01:48:14.819 DEBUG [3741]: Database connection successful -- 01:48:14.819 INFO [3741]: _SERVER found -- 01:48:14.819 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 01:48:14.819 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:14.819 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:14.819 INFO [3741]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 01:48:14.819 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:14.831 INFO [3741]: COREGRADE is stopping... -- 01:48:14.831 DEBUG [3741]: Closing database connection -- 01:48:14.831 SQL [3741]: pgsql_close() -- 01:48:14.826 DEBUG [3828]: Database connection successful -- 01:48:14.826 INFO [3828]: _SERVER found -- 01:48:14.826 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 01:48:14.826 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:14.826 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:14.826 INFO [3828]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 01:48:14.826 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:14.837 INFO [3828]: COREGRADE is stopping... -- 01:48:14.837 DEBUG [3828]: Closing database connection -- 01:48:14.837 SQL [3828]: pgsql_close() -- 01:48:14.879 INFO [3828]: COREGRADE is starting... -- 01:48:14.880 INFO [3828]: Version from config: 1.0 -- 01:48:14.880 DEBUG [3828]: Connecting to database... -- 01:48:14.880 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:14.880 SQL [3828]: pgsql_db_connect() -- 01:48:14.884 DEBUG [3828]: Database connection successful -- 01:48:14.884 INFO [3828]: _SERVER found -- 01:48:14.884 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 01:48:14.884 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:14.884 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:14.884 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 01:48:14.884 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:14.895 INFO [3828]: COREGRADE is stopping... -- 01:48:14.895 DEBUG [3828]: Closing database connection -- 01:48:14.895 SQL [3828]: pgsql_close() -- 01:48:14.900 INFO [3828]: COREGRADE is starting... -- 01:48:14.900 INFO [3828]: Version from config: 1.0 -- 01:48:14.900 DEBUG [3828]: Connecting to database... -- 01:48:14.900 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:14.900 SQL [3828]: pgsql_db_connect() -- 01:48:14.904 INFO [3741]: COREGRADE is starting... -- 01:48:14.904 INFO [3741]: Version from config: 1.0 -- 01:48:14.904 DEBUG [3741]: Connecting to database... -- 01:48:14.904 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:14.904 SQL [3741]: pgsql_db_connect() -- 01:48:14.904 DEBUG [3828]: Database connection successful -- 01:48:14.904 INFO [3828]: _SERVER found -- 01:48:14.904 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 01:48:14.904 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:14.904 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:14.904 INFO [3828]: QUERY_STRING = /assets/js/pages/picker_date.js -- 01:48:14.904 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:14.916 INFO [3828]: COREGRADE is stopping... -- 01:48:14.916 DEBUG [3828]: Closing database connection -- 01:48:14.916 SQL [3828]: pgsql_close() -- 01:48:14.908 DEBUG [3741]: Database connection successful -- 01:48:14.908 INFO [3741]: _SERVER found -- 01:48:14.908 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 01:48:14.908 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:14.908 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:14.908 INFO [3741]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 01:48:14.908 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:14.920 INFO [3741]: COREGRADE is stopping... -- 01:48:14.920 DEBUG [3741]: Closing database connection -- 01:48:14.920 SQL [3741]: pgsql_close() -- 01:48:14.960 INFO [3741]: COREGRADE is starting... -- 01:48:14.960 INFO [3741]: Version from config: 1.0 -- 01:48:14.960 DEBUG [3741]: Connecting to database... -- 01:48:14.960 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:14.960 SQL [3741]: pgsql_db_connect() -- 01:48:14.964 DEBUG [3741]: Database connection successful -- 01:48:14.964 INFO [3741]: _SERVER found -- 01:48:14.964 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 01:48:14.964 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:14.964 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:14.964 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 01:48:14.964 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:14.976 INFO [3741]: COREGRADE is stopping... -- 01:48:14.976 DEBUG [3741]: Closing database connection -- 01:48:14.976 SQL [3741]: pgsql_close() -- 01:48:14.984 INFO [3741]: COREGRADE is starting... -- 01:48:14.984 INFO [3741]: Version from config: 1.0 -- 01:48:14.984 DEBUG [3741]: Connecting to database... -- 01:48:14.984 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:14.984 SQL [3741]: pgsql_db_connect() -- 01:48:14.986 INFO [3828]: COREGRADE is starting... -- 01:48:14.986 INFO [3828]: Version from config: 1.0 -- 01:48:14.986 DEBUG [3828]: Connecting to database... -- 01:48:14.986 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:14.986 SQL [3828]: pgsql_db_connect() -- 01:48:14.988 DEBUG [3741]: Database connection successful -- 01:48:14.988 INFO [3741]: _SERVER found -- 01:48:14.988 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 01:48:14.988 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:14.988 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:14.988 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 01:48:14.988 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:14.000 INFO [3741]: COREGRADE is stopping... -- 01:48:14.000 DEBUG [3741]: Closing database connection -- 01:48:14.000 SQL [3741]: pgsql_close() -- 01:48:14.990 DEBUG [3828]: Database connection successful -- 01:48:14.990 INFO [3828]: _SERVER found -- 01:48:14.990 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 01:48:14.990 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:14.990 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:14.990 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 01:48:14.990 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:15.002 INFO [3828]: COREGRADE is stopping... -- 01:48:15.002 DEBUG [3828]: Closing database connection -- 01:48:15.002 SQL [3828]: pgsql_close() -- 01:48:15.041 INFO [3828]: COREGRADE is starting... -- 01:48:15.041 INFO [3828]: Version from config: 1.0 -- 01:48:15.041 DEBUG [3828]: Connecting to database... -- 01:48:15.041 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:15.041 SQL [3828]: pgsql_db_connect() -- 01:48:15.045 DEBUG [3828]: Database connection successful -- 01:48:15.045 INFO [3828]: _SERVER found -- 01:48:15.045 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 01:48:15.045 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:15.045 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:15.045 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 01:48:15.045 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:15.057 INFO [3828]: COREGRADE is stopping... -- 01:48:15.057 DEBUG [3828]: Closing database connection -- 01:48:15.057 SQL [3828]: pgsql_close() -- 01:48:15.068 INFO [3741]: COREGRADE is starting... -- 01:48:15.068 INFO [3828]: COREGRADE is starting... -- 01:48:15.068 INFO [3741]: Version from config: 1.0 -- 01:48:15.068 DEBUG [3741]: Connecting to database... -- 01:48:15.068 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:15.068 SQL [3741]: pgsql_db_connect() -- 01:48:15.068 INFO [3828]: Version from config: 1.0 -- 01:48:15.068 DEBUG [3828]: Connecting to database... -- 01:48:15.068 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:15.068 SQL [3828]: pgsql_db_connect() -- 01:48:15.072 DEBUG [3828]: Database connection successful -- 01:48:15.072 INFO [3828]: _SERVER found -- 01:48:15.072 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 01:48:15.072 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:15.072 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:15.072 INFO [3828]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 01:48:15.072 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:15.084 INFO [3828]: COREGRADE is stopping... -- 01:48:15.072 DEBUG [3741]: Database connection successful -- 01:48:15.072 INFO [3741]: _SERVER found -- 01:48:15.072 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 01:48:15.072 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:15.072 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:15.072 INFO [3741]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 01:48:15.072 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:15.084 INFO [3741]: COREGRADE is stopping... -- 01:48:15.084 DEBUG [3828]: Closing database connection -- 01:48:15.084 DEBUG [3741]: Closing database connection -- 01:48:15.084 SQL [3828]: pgsql_close() -- 01:48:15.084 SQL [3741]: pgsql_close() -- 01:48:15.122 INFO [3741]: COREGRADE is starting... -- 01:48:15.122 INFO [3741]: Version from config: 1.0 -- 01:48:15.122 DEBUG [3741]: Connecting to database... -- 01:48:15.122 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:15.122 SQL [3741]: pgsql_db_connect() -- 01:48:15.126 DEBUG [3741]: Database connection successful -- 01:48:15.126 INFO [3741]: _SERVER found -- 01:48:15.126 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 01:48:15.126 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:15.126 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:15.126 INFO [3741]: QUERY_STRING = /assets/customjs/general.js -- 01:48:15.126 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:15.138 INFO [3741]: COREGRADE is stopping... -- 01:48:15.138 DEBUG [3741]: Closing database connection -- 01:48:15.138 SQL [3741]: pgsql_close() -- 01:48:15.150 INFO [3741]: COREGRADE is starting... -- 01:48:15.150 INFO [3741]: Version from config: 1.0 -- 01:48:15.150 DEBUG [3741]: Connecting to database... -- 01:48:15.150 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:15.150 SQL [3741]: pgsql_db_connect() -- 01:48:15.154 DEBUG [3741]: Database connection successful -- 01:48:15.154 INFO [3741]: _SERVER found -- 01:48:15.154 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 01:48:15.154 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:15.154 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:15.154 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 01:48:15.154 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:15.166 INFO [3741]: COREGRADE is stopping... -- 01:48:15.166 DEBUG [3741]: Closing database connection -- 01:48:15.166 SQL [3741]: pgsql_close() -- 01:48:15.233 INFO [3741]: COREGRADE is starting... -- 01:48:15.233 INFO [3741]: Version from config: 1.0 -- 01:48:15.233 DEBUG [3741]: Connecting to database... -- 01:48:15.233 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:15.233 SQL [3741]: pgsql_db_connect() -- 01:48:15.237 DEBUG [3741]: Database connection successful -- 01:48:15.237 INFO [3741]: _SERVER found -- 01:48:15.237 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 01:48:15.237 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:15.237 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:15.237 INFO [3741]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 01:48:15.237 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:15.249 INFO [3741]: COREGRADE is stopping... -- 01:48:15.249 DEBUG [3741]: Closing database connection -- 01:48:15.249 SQL [3741]: pgsql_close() -- 01:48:15.316 INFO [3741]: COREGRADE is starting... -- 01:48:15.317 INFO [3741]: Version from config: 1.0 -- 01:48:15.317 DEBUG [3741]: Connecting to database... -- 01:48:15.317 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:15.317 SQL [3741]: pgsql_db_connect() -- 01:48:15.321 DEBUG [3741]: Database connection successful -- 01:48:15.321 INFO [3741]: _SERVER found -- 01:48:15.321 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 01:48:15.321 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:15.321 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:15.321 INFO [3741]: QUERY_STRING = /assets/js/pages/dashboard.js -- 01:48:15.321 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:15.332 INFO [3741]: COREGRADE is stopping... -- 01:48:15.332 DEBUG [3741]: Closing database connection -- 01:48:15.332 SQL [3741]: pgsql_close() -- 01:48:15.400 INFO [3741]: COREGRADE is starting... -- 01:48:15.401 INFO [3741]: Version from config: 1.0 -- 01:48:15.401 DEBUG [3741]: Connecting to database... -- 01:48:15.401 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:15.401 SQL [3741]: pgsql_db_connect() -- 01:48:15.405 DEBUG [3741]: Database connection successful -- 01:48:15.405 INFO [3741]: _SERVER found -- 01:48:15.405 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 01:48:15.405 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:15.405 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:15.405 INFO [3741]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 01:48:15.405 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:15.417 INFO [3741]: COREGRADE is stopping... -- 01:48:15.417 DEBUG [3741]: Closing database connection -- 01:48:15.417 SQL [3741]: pgsql_close() -- 01:48:15.484 INFO [3741]: COREGRADE is starting... -- 01:48:15.484 INFO [3741]: Version from config: 1.0 -- 01:48:15.484 DEBUG [3741]: Connecting to database... -- 01:48:15.484 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:15.484 SQL [3741]: pgsql_db_connect() -- 01:48:15.488 DEBUG [3741]: Database connection successful -- 01:48:15.488 INFO [3741]: _SERVER found -- 01:48:15.488 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 01:48:15.488 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:15.488 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:15.488 INFO [3741]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 01:48:15.488 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:15.499 INFO [3741]: COREGRADE is stopping... -- 01:48:15.499 DEBUG [3741]: Closing database connection -- 01:48:15.499 SQL [3741]: pgsql_close() -- 01:48:15.566 INFO [3741]: COREGRADE is starting... -- 01:48:15.566 INFO [3741]: Version from config: 1.0 -- 01:48:15.566 DEBUG [3741]: Connecting to database... -- 01:48:15.567 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:15.567 SQL [3741]: pgsql_db_connect() -- 01:48:15.571 DEBUG [3741]: Database connection successful -- 01:48:15.571 INFO [3741]: _SERVER found -- 01:48:15.571 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 01:48:15.571 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:15.571 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:15.571 INFO [3741]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 01:48:15.571 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:15.582 INFO [3741]: COREGRADE is stopping... -- 01:48:15.582 DEBUG [3741]: Closing database connection -- 01:48:15.582 SQL [3741]: pgsql_close() -- 01:48:15.649 INFO [3741]: COREGRADE is starting... -- 01:48:15.649 INFO [3741]: Version from config: 1.0 -- 01:48:15.649 DEBUG [3741]: Connecting to database... -- 01:48:15.649 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:15.649 SQL [3741]: pgsql_db_connect() -- 01:48:15.653 DEBUG [3741]: Database connection successful -- 01:48:15.653 INFO [3741]: _SERVER found -- 01:48:15.653 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 01:48:15.653 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:15.653 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:15.653 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 01:48:15.653 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:15.665 INFO [3741]: COREGRADE is stopping... -- 01:48:15.665 DEBUG [3741]: Closing database connection -- 01:48:15.665 SQL [3741]: pgsql_close() -- 01:48:15.732 INFO [3741]: COREGRADE is starting... -- 01:48:15.733 INFO [3741]: Version from config: 1.0 -- 01:48:15.733 DEBUG [3741]: Connecting to database... -- 01:48:15.733 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:15.733 SQL [3741]: pgsql_db_connect() -- 01:48:15.737 DEBUG [3741]: Database connection successful -- 01:48:15.737 INFO [3741]: _SERVER found -- 01:48:15.737 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 01:48:15.737 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:15.737 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:15.737 INFO [3741]: QUERY_STRING = /assets/js/pages/picker_date.js -- 01:48:15.737 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:15.748 INFO [3741]: COREGRADE is stopping... -- 01:48:15.749 DEBUG [3741]: Closing database connection -- 01:48:15.749 SQL [3741]: pgsql_close() -- 01:48:15.816 INFO [3741]: COREGRADE is starting... -- 01:48:15.816 INFO [3741]: Version from config: 1.0 -- 01:48:15.816 DEBUG [3741]: Connecting to database... -- 01:48:15.816 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:15.816 SQL [3741]: pgsql_db_connect() -- 01:48:15.820 DEBUG [3741]: Database connection successful -- 01:48:15.820 INFO [3741]: _SERVER found -- 01:48:15.820 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 01:48:15.820 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:15.820 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:15.820 INFO [3741]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 01:48:15.820 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:15.832 INFO [3741]: COREGRADE is stopping... -- 01:48:15.832 DEBUG [3741]: Closing database connection -- 01:48:15.832 SQL [3741]: pgsql_close() -- 01:48:15.899 INFO [3741]: COREGRADE is starting... -- 01:48:15.899 INFO [3741]: Version from config: 1.0 -- 01:48:15.899 DEBUG [3741]: Connecting to database... -- 01:48:15.899 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:15.899 SQL [3741]: pgsql_db_connect() -- 01:48:15.903 DEBUG [3741]: Database connection successful -- 01:48:15.903 INFO [3741]: _SERVER found -- 01:48:15.903 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 01:48:15.903 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:15.903 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:15.903 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 01:48:15.903 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:15.915 INFO [3741]: COREGRADE is stopping... -- 01:48:15.915 DEBUG [3741]: Closing database connection -- 01:48:15.915 SQL [3741]: pgsql_close() -- 01:48:15.982 INFO [3741]: COREGRADE is starting... -- 01:48:15.982 INFO [3741]: Version from config: 1.0 -- 01:48:15.982 DEBUG [3741]: Connecting to database... -- 01:48:15.982 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:15.982 SQL [3741]: pgsql_db_connect() -- 01:48:15.986 DEBUG [3741]: Database connection successful -- 01:48:15.986 INFO [3741]: _SERVER found -- 01:48:15.986 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 01:48:15.986 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:15.986 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:15.986 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 01:48:15.986 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:15.998 INFO [3741]: COREGRADE is stopping... -- 01:48:15.998 DEBUG [3741]: Closing database connection -- 01:48:15.998 SQL [3741]: pgsql_close() -- 01:48:16.065 INFO [3741]: COREGRADE is starting... -- 01:48:16.065 INFO [3741]: Version from config: 1.0 -- 01:48:16.065 DEBUG [3741]: Connecting to database... -- 01:48:16.065 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:16.065 SQL [3741]: pgsql_db_connect() -- 01:48:16.069 DEBUG [3741]: Database connection successful -- 01:48:16.069 INFO [3741]: _SERVER found -- 01:48:16.069 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 01:48:16.069 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:16.070 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:16.070 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 01:48:16.070 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:16.081 INFO [3741]: COREGRADE is stopping... -- 01:48:16.081 DEBUG [3741]: Closing database connection -- 01:48:16.081 SQL [3741]: pgsql_close() -- 01:48:16.148 INFO [3741]: COREGRADE is starting... -- 01:48:16.148 INFO [3741]: Version from config: 1.0 -- 01:48:16.148 DEBUG [3741]: Connecting to database... -- 01:48:16.148 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:16.148 SQL [3741]: pgsql_db_connect() -- 01:48:16.152 DEBUG [3741]: Database connection successful -- 01:48:16.152 INFO [3741]: _SERVER found -- 01:48:16.152 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 01:48:16.152 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:16.152 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:16.152 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 01:48:16.152 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:16.164 INFO [3741]: COREGRADE is stopping... -- 01:48:16.164 DEBUG [3741]: Closing database connection -- 01:48:16.164 SQL [3741]: pgsql_close() -- 01:48:16.241 INFO [3741]: COREGRADE is starting... -- 01:48:16.242 INFO [3741]: Version from config: 1.0 -- 01:48:16.242 DEBUG [3741]: Connecting to database... -- 01:48:16.242 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:16.242 SQL [3741]: pgsql_db_connect() -- 01:48:16.246 DEBUG [3741]: Database connection successful -- 01:48:16.246 INFO [3741]: _SERVER found -- 01:48:16.246 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 01:48:16.246 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:16.246 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:16.246 INFO [3741]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 01:48:16.246 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:16.257 INFO [3741]: COREGRADE is stopping... -- 01:48:16.257 DEBUG [3741]: Closing database connection -- 01:48:16.257 SQL [3741]: pgsql_close() -- 01:48:16.324 INFO [3741]: COREGRADE is starting... -- 01:48:16.325 INFO [3741]: Version from config: 1.0 -- 01:48:16.325 DEBUG [3741]: Connecting to database... -- 01:48:16.325 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:16.325 SQL [3741]: pgsql_db_connect() -- 01:48:16.329 DEBUG [3741]: Database connection successful -- 01:48:16.329 INFO [3741]: _SERVER found -- 01:48:16.329 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 01:48:16.329 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:16.329 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:16.329 INFO [3741]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 01:48:16.329 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:16.340 INFO [3741]: COREGRADE is stopping... -- 01:48:16.340 DEBUG [3741]: Closing database connection -- 01:48:16.340 SQL [3741]: pgsql_close() -- 01:48:16.409 INFO [3741]: COREGRADE is starting... -- 01:48:16.409 INFO [3741]: Version from config: 1.0 -- 01:48:16.409 DEBUG [3741]: Connecting to database... -- 01:48:16.409 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:48:16.409 SQL [3741]: pgsql_db_connect() -- 01:48:16.413 DEBUG [3741]: Database connection successful -- 01:48:16.413 INFO [3741]: _SERVER found -- 01:48:16.413 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 01:48:16.413 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 01:48:16.413 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 01:48:16.413 INFO [3741]: QUERY_STRING = /assets/customjs/general.js -- 01:48:16.413 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 01:48:16.425 INFO [3741]: COREGRADE is stopping... -- 01:48:16.425 DEBUG [3741]: Closing database connection -- 01:48:16.425 SQL [3741]: pgsql_close() -- 02:08:16.641 INFO [3800]: COREGRADE is starting... -- 02:08:16.642 INFO [3800]: Version from config: 1.0 -- 02:08:16.642 DEBUG [3800]: Connecting to database... -- 02:08:16.642 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:16.642 SQL [3800]: pgsql_db_connect() -- 02:08:16.646 DEBUG [3800]: Database connection successful -- 02:08:16.646 INFO [3800]: _SERVER found -- 02:08:16.646 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 02:08:16.646 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:16.646 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=evpruh5a0apv5qs4flp2v3ngmk5o87pb -- 02:08:16.646 INFO [3800]: QUERY_STRING = /logout -- 02:08:16.646 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:16.679 INFO [3800]: COREGRADE is stopping... -- 02:08:16.679 DEBUG [3800]: Closing database connection -- 02:08:16.679 SQL [3800]: pgsql_close() -- 02:08:16.756 INFO [3800]: COREGRADE is starting... -- 02:08:16.757 INFO [3800]: Version from config: 1.0 -- 02:08:16.757 DEBUG [3800]: Connecting to database... -- 02:08:16.757 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:16.757 SQL [3800]: pgsql_db_connect() -- 02:08:16.761 DEBUG [3800]: Database connection successful -- 02:08:16.761 INFO [3800]: _SERVER found -- 02:08:16.761 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 02:08:16.761 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:16.761 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:16.761 INFO [3800]: QUERY_STRING = /start -- 02:08:16.761 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:16.795 INFO [3800]: COREGRADE is stopping... -- 02:08:16.795 DEBUG [3800]: Closing database connection -- 02:08:16.795 SQL [3800]: pgsql_close() -- 02:08:16.920 INFO [3800]: COREGRADE is starting... -- 02:08:16.921 INFO [3800]: Version from config: 1.0 -- 02:08:16.921 DEBUG [3800]: Connecting to database... -- 02:08:16.921 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:16.921 SQL [3800]: pgsql_db_connect() -- 02:08:16.925 DEBUG [3800]: Database connection successful -- 02:08:16.925 INFO [3800]: _SERVER found -- 02:08:16.925 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 02:08:16.925 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:16.925 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:16.925 INFO [3800]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 02:08:16.925 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:16.936 INFO [3800]: COREGRADE is stopping... -- 02:08:16.936 DEBUG [3800]: Closing database connection -- 02:08:16.936 SQL [3800]: pgsql_close() -- 02:08:16.941 INFO [3800]: COREGRADE is starting... -- 02:08:16.941 INFO [3800]: Version from config: 1.0 -- 02:08:16.941 DEBUG [3800]: Connecting to database... -- 02:08:16.941 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:16.941 SQL [3800]: pgsql_db_connect() -- 02:08:16.945 DEBUG [3800]: Database connection successful -- 02:08:16.945 INFO [3800]: _SERVER found -- 02:08:16.945 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 02:08:16.945 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:16.945 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:16.945 INFO [3800]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 02:08:16.945 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:16.957 INFO [3800]: COREGRADE is stopping... -- 02:08:16.957 DEBUG [3800]: Closing database connection -- 02:08:16.957 SQL [3800]: pgsql_close() -- 02:08:16.992 INFO [3800]: COREGRADE is starting... -- 02:08:16.992 INFO [3800]: Version from config: 1.0 -- 02:08:16.992 DEBUG [3800]: Connecting to database... -- 02:08:16.992 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:16.992 SQL [3800]: pgsql_db_connect() -- 02:08:16.996 DEBUG [3800]: Database connection successful -- 02:08:16.996 INFO [3800]: _SERVER found -- 02:08:16.996 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 02:08:16.996 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:16.996 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:16.996 INFO [3800]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 02:08:16.996 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:17.008 INFO [3800]: COREGRADE is stopping... -- 02:08:17.008 DEBUG [3800]: Closing database connection -- 02:08:17.008 SQL [3800]: pgsql_close() -- 02:08:17.017 INFO [3800]: COREGRADE is starting... -- 02:08:17.017 INFO [3800]: Version from config: 1.0 -- 02:08:17.017 DEBUG [3800]: Connecting to database... -- 02:08:17.017 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:17.017 SQL [3800]: pgsql_db_connect() -- 02:08:17.022 INFO [3740]: COREGRADE is starting... -- 02:08:17.023 INFO [3740]: Version from config: 1.0 -- 02:08:17.023 DEBUG [3740]: Connecting to database... -- 02:08:17.023 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:17.023 SQL [3740]: pgsql_db_connect() -- 02:08:17.021 DEBUG [3800]: Database connection successful -- 02:08:17.021 INFO [3800]: _SERVER found -- 02:08:17.021 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 02:08:17.021 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:17.021 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:17.021 INFO [3800]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 02:08:17.021 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:17.033 INFO [3800]: COREGRADE is stopping... -- 02:08:17.033 DEBUG [3800]: Closing database connection -- 02:08:17.033 SQL [3800]: pgsql_close() -- 02:08:17.027 DEBUG [3740]: Database connection successful -- 02:08:17.027 INFO [3740]: _SERVER found -- 02:08:17.027 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 02:08:17.027 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:17.027 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:17.027 INFO [3740]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 02:08:17.027 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:17.039 INFO [3740]: COREGRADE is stopping... -- 02:08:17.039 DEBUG [3740]: Closing database connection -- 02:08:17.039 SQL [3740]: pgsql_close() -- 02:08:17.087 INFO [3740]: COREGRADE is starting... -- 02:08:17.087 INFO [3740]: Version from config: 1.0 -- 02:08:17.087 DEBUG [3740]: Connecting to database... -- 02:08:17.087 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:17.087 SQL [3740]: pgsql_db_connect() -- 02:08:17.091 DEBUG [3740]: Database connection successful -- 02:08:17.091 INFO [3740]: _SERVER found -- 02:08:17.091 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 02:08:17.091 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:17.091 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:17.091 INFO [3740]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 02:08:17.091 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:17.103 INFO [3740]: COREGRADE is stopping... -- 02:08:17.103 DEBUG [3740]: Closing database connection -- 02:08:17.103 SQL [3740]: pgsql_close() -- 02:08:17.104 INFO [3800]: COREGRADE is starting... -- 02:08:17.105 INFO [3800]: Version from config: 1.0 -- 02:08:17.105 DEBUG [3800]: Connecting to database... -- 02:08:17.105 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:17.105 SQL [3800]: pgsql_db_connect() -- 02:08:17.112 INFO [3740]: COREGRADE is starting... -- 02:08:17.113 INFO [3740]: Version from config: 1.0 -- 02:08:17.113 DEBUG [3740]: Connecting to database... -- 02:08:17.113 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:17.113 SQL [3740]: pgsql_db_connect() -- 02:08:17.109 DEBUG [3800]: Database connection successful -- 02:08:17.109 INFO [3800]: _SERVER found -- 02:08:17.109 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 02:08:17.109 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:17.109 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:17.109 INFO [3800]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 02:08:17.109 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:17.120 INFO [3800]: COREGRADE is stopping... -- 02:08:17.120 DEBUG [3800]: Closing database connection -- 02:08:17.120 SQL [3800]: pgsql_close() -- 02:08:17.117 DEBUG [3740]: Database connection successful -- 02:08:17.117 INFO [3740]: _SERVER found -- 02:08:17.117 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 02:08:17.117 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:17.117 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:17.117 INFO [3740]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 02:08:17.117 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:17.128 INFO [3740]: COREGRADE is stopping... -- 02:08:17.128 DEBUG [3740]: Closing database connection -- 02:08:17.128 SQL [3740]: pgsql_close() -- 02:08:17.182 INFO [3740]: COREGRADE is starting... -- 02:08:17.182 INFO [3740]: Version from config: 1.0 -- 02:08:17.182 DEBUG [3740]: Connecting to database... -- 02:08:17.182 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:17.182 SQL [3740]: pgsql_db_connect() -- 02:08:17.186 INFO [3800]: COREGRADE is starting... -- 02:08:17.186 INFO [3800]: Version from config: 1.0 -- 02:08:17.186 DEBUG [3800]: Connecting to database... -- 02:08:17.186 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:17.186 SQL [3800]: pgsql_db_connect() -- 02:08:17.186 DEBUG [3740]: Database connection successful -- 02:08:17.186 INFO [3740]: _SERVER found -- 02:08:17.186 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 02:08:17.186 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:17.186 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:17.186 INFO [3740]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 02:08:17.186 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:17.198 INFO [3740]: COREGRADE is stopping... -- 02:08:17.198 DEBUG [3740]: Closing database connection -- 02:08:17.198 SQL [3740]: pgsql_close() -- 02:08:17.190 DEBUG [3800]: Database connection successful -- 02:08:17.190 INFO [3800]: _SERVER found -- 02:08:17.190 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 02:08:17.190 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:17.190 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:17.190 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 02:08:17.190 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:17.201 INFO [3800]: COREGRADE is stopping... -- 02:08:17.201 DEBUG [3800]: Closing database connection -- 02:08:17.201 SQL [3800]: pgsql_close() -- 02:08:17.208 INFO [3800]: COREGRADE is starting... -- 02:08:17.208 INFO [3800]: Version from config: 1.0 -- 02:08:17.208 DEBUG [3800]: Connecting to database... -- 02:08:17.208 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:17.208 SQL [3800]: pgsql_db_connect() -- 02:08:17.212 DEBUG [3800]: Database connection successful -- 02:08:17.212 INFO [3800]: _SERVER found -- 02:08:17.212 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 02:08:17.212 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:17.212 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:17.212 INFO [3800]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 02:08:17.212 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:17.224 INFO [3800]: COREGRADE is stopping... -- 02:08:17.224 DEBUG [3800]: Closing database connection -- 02:08:17.224 SQL [3800]: pgsql_close() -- 02:08:17.273 INFO [3800]: COREGRADE is starting... -- 02:08:17.273 INFO [3800]: Version from config: 1.0 -- 02:08:17.273 DEBUG [3800]: Connecting to database... -- 02:08:17.273 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:17.273 SQL [3800]: pgsql_db_connect() -- 02:08:17.278 INFO [3740]: COREGRADE is starting... -- 02:08:17.278 INFO [3740]: Version from config: 1.0 -- 02:08:17.278 DEBUG [3740]: Connecting to database... -- 02:08:17.278 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:17.278 SQL [3740]: pgsql_db_connect() -- 02:08:17.277 DEBUG [3800]: Database connection successful -- 02:08:17.277 INFO [3800]: _SERVER found -- 02:08:17.277 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 02:08:17.277 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:17.277 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:17.277 INFO [3800]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 02:08:17.277 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:17.289 INFO [3800]: COREGRADE is stopping... -- 02:08:17.289 DEBUG [3800]: Closing database connection -- 02:08:17.289 SQL [3800]: pgsql_close() -- 02:08:17.293 INFO [3800]: COREGRADE is starting... -- 02:08:17.282 DEBUG [3740]: Database connection successful -- 02:08:17.282 INFO [3740]: _SERVER found -- 02:08:17.282 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 02:08:17.282 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:17.282 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:17.282 INFO [3740]: QUERY_STRING = /assets/js/pages/dashboard.js -- 02:08:17.282 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:17.294 INFO [3740]: COREGRADE is stopping... -- 02:08:17.294 DEBUG [3740]: Closing database connection -- 02:08:17.294 SQL [3740]: pgsql_close() -- 02:08:17.294 INFO [3800]: Version from config: 1.0 -- 02:08:17.294 DEBUG [3800]: Connecting to database... -- 02:08:17.294 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:17.294 SQL [3800]: pgsql_db_connect() -- 02:08:17.298 DEBUG [3800]: Database connection successful -- 02:08:17.298 INFO [3800]: _SERVER found -- 02:08:17.298 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 02:08:17.298 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:17.298 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:17.298 INFO [3800]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 02:08:17.298 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:17.309 INFO [3800]: COREGRADE is stopping... -- 02:08:17.309 DEBUG [3800]: Closing database connection -- 02:08:17.309 SQL [3800]: pgsql_close() -- 02:08:17.354 INFO [3800]: COREGRADE is starting... -- 02:08:17.354 INFO [3800]: Version from config: 1.0 -- 02:08:17.354 DEBUG [3800]: Connecting to database... -- 02:08:17.354 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:17.354 SQL [3800]: pgsql_db_connect() -- 02:08:17.362 INFO [3740]: COREGRADE is starting... -- 02:08:17.362 INFO [3740]: Version from config: 1.0 -- 02:08:17.362 DEBUG [3740]: Connecting to database... -- 02:08:17.362 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:17.362 SQL [3740]: pgsql_db_connect() -- 02:08:17.358 DEBUG [3800]: Database connection successful -- 02:08:17.358 INFO [3800]: _SERVER found -- 02:08:17.358 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 02:08:17.358 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:17.358 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:17.358 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 02:08:17.358 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:17.370 INFO [3800]: COREGRADE is stopping... -- 02:08:17.370 DEBUG [3800]: Closing database connection -- 02:08:17.370 SQL [3800]: pgsql_close() -- 02:08:17.366 DEBUG [3740]: Database connection successful -- 02:08:17.366 INFO [3740]: _SERVER found -- 02:08:17.366 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 02:08:17.366 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:17.366 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:17.366 INFO [3740]: QUERY_STRING = /assets/js/pages/picker_date.js -- 02:08:17.366 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:17.378 INFO [3740]: COREGRADE is stopping... -- 02:08:17.378 DEBUG [3740]: Closing database connection -- 02:08:17.378 SQL [3740]: pgsql_close() -- 02:08:17.378 INFO [3800]: COREGRADE is starting... -- 02:08:17.378 INFO [3800]: Version from config: 1.0 -- 02:08:17.378 DEBUG [3800]: Connecting to database... -- 02:08:17.378 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:17.378 SQL [3800]: pgsql_db_connect() -- 02:08:17.383 DEBUG [3800]: Database connection successful -- 02:08:17.383 INFO [3800]: _SERVER found -- 02:08:17.383 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 02:08:17.383 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:17.383 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:17.383 INFO [3800]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 02:08:17.383 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:17.394 INFO [3800]: COREGRADE is stopping... -- 02:08:17.394 DEBUG [3800]: Closing database connection -- 02:08:17.394 SQL [3800]: pgsql_close() -- 02:08:17.435 INFO [3800]: COREGRADE is starting... -- 02:08:17.435 INFO [3800]: Version from config: 1.0 -- 02:08:17.435 DEBUG [3800]: Connecting to database... -- 02:08:17.435 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:17.435 SQL [3800]: pgsql_db_connect() -- 02:08:17.446 INFO [3740]: COREGRADE is starting... -- 02:08:17.447 INFO [3740]: Version from config: 1.0 -- 02:08:17.447 DEBUG [3740]: Connecting to database... -- 02:08:17.447 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:17.447 SQL [3740]: pgsql_db_connect() -- 02:08:17.439 DEBUG [3800]: Database connection successful -- 02:08:17.439 INFO [3800]: _SERVER found -- 02:08:17.439 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 02:08:17.439 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:17.439 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:17.439 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 02:08:17.439 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:17.451 INFO [3800]: COREGRADE is stopping... -- 02:08:17.451 DEBUG [3800]: Closing database connection -- 02:08:17.451 SQL [3800]: pgsql_close() -- 02:08:17.462 INFO [3800]: COREGRADE is starting... -- 02:08:17.462 INFO [3800]: Version from config: 1.0 -- 02:08:17.462 DEBUG [3800]: Connecting to database... -- 02:08:17.462 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:17.462 SQL [3800]: pgsql_db_connect() -- 02:08:17.451 DEBUG [3740]: Database connection successful -- 02:08:17.451 INFO [3740]: _SERVER found -- 02:08:17.451 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 02:08:17.451 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:17.451 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:17.451 INFO [3740]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 02:08:17.451 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:17.462 INFO [3740]: COREGRADE is stopping... -- 02:08:17.462 DEBUG [3740]: Closing database connection -- 02:08:17.462 SQL [3740]: pgsql_close() -- 02:08:17.466 DEBUG [3800]: Database connection successful -- 02:08:17.466 INFO [3800]: _SERVER found -- 02:08:17.466 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 02:08:17.466 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:17.466 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:17.466 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 02:08:17.466 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:17.478 INFO [3800]: COREGRADE is stopping... -- 02:08:17.478 DEBUG [3800]: Closing database connection -- 02:08:17.478 SQL [3800]: pgsql_close() -- 02:08:17.516 INFO [3800]: COREGRADE is starting... -- 02:08:17.516 INFO [3800]: Version from config: 1.0 -- 02:08:17.516 DEBUG [3800]: Connecting to database... -- 02:08:17.516 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:17.516 SQL [3800]: pgsql_db_connect() -- 02:08:17.530 INFO [3740]: COREGRADE is starting... -- 02:08:17.530 INFO [3740]: Version from config: 1.0 -- 02:08:17.530 DEBUG [3740]: Connecting to database... -- 02:08:17.530 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:17.530 SQL [3740]: pgsql_db_connect() -- 02:08:17.520 DEBUG [3800]: Database connection successful -- 02:08:17.520 INFO [3800]: _SERVER found -- 02:08:17.520 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 02:08:17.520 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:17.520 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:17.520 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 02:08:17.520 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:17.531 INFO [3800]: COREGRADE is stopping... -- 02:08:17.531 DEBUG [3800]: Closing database connection -- 02:08:17.531 SQL [3800]: pgsql_close() -- 02:08:17.546 INFO [3800]: COREGRADE is starting... -- 02:08:17.534 DEBUG [3740]: Database connection successful -- 02:08:17.534 INFO [3740]: _SERVER found -- 02:08:17.534 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 02:08:17.534 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:17.534 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:17.534 INFO [3740]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 02:08:17.534 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:17.546 INFO [3740]: COREGRADE is stopping... -- 02:08:17.546 DEBUG [3740]: Closing database connection -- 02:08:17.546 SQL [3740]: pgsql_close() -- 02:08:17.546 INFO [3800]: Version from config: 1.0 -- 02:08:17.546 DEBUG [3800]: Connecting to database... -- 02:08:17.546 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:17.546 SQL [3800]: pgsql_db_connect() -- 02:08:17.550 DEBUG [3800]: Database connection successful -- 02:08:17.550 INFO [3800]: _SERVER found -- 02:08:17.550 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 02:08:17.550 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:17.550 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:17.550 INFO [3800]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 02:08:17.550 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:17.562 INFO [3800]: COREGRADE is stopping... -- 02:08:17.562 DEBUG [3800]: Closing database connection -- 02:08:17.562 SQL [3800]: pgsql_close() -- 02:08:17.596 INFO [3800]: COREGRADE is starting... -- 02:08:17.597 INFO [3800]: Version from config: 1.0 -- 02:08:17.597 DEBUG [3800]: Connecting to database... -- 02:08:17.597 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:17.597 SQL [3800]: pgsql_db_connect() -- 02:08:17.601 DEBUG [3800]: Database connection successful -- 02:08:17.601 INFO [3800]: _SERVER found -- 02:08:17.601 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 02:08:17.601 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:17.601 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:17.601 INFO [3800]: QUERY_STRING = /assets/customjs/general.js -- 02:08:17.601 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:17.612 INFO [3800]: COREGRADE is stopping... -- 02:08:17.612 DEBUG [3800]: Closing database connection -- 02:08:17.612 SQL [3800]: pgsql_close() -- 02:08:17.614 INFO [3740]: COREGRADE is starting... -- 02:08:17.614 INFO [3740]: Version from config: 1.0 -- 02:08:17.614 DEBUG [3740]: Connecting to database... -- 02:08:17.614 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:17.614 SQL [3740]: pgsql_db_connect() -- 02:08:17.618 DEBUG [3740]: Database connection successful -- 02:08:17.618 INFO [3740]: _SERVER found -- 02:08:17.618 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 02:08:17.618 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:17.618 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:17.618 INFO [3740]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 02:08:17.618 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:17.629 INFO [3740]: COREGRADE is stopping... -- 02:08:17.629 DEBUG [3740]: Closing database connection -- 02:08:17.629 SQL [3740]: pgsql_close() -- 02:08:17.698 INFO [3740]: COREGRADE is starting... -- 02:08:17.698 INFO [3740]: Version from config: 1.0 -- 02:08:17.698 DEBUG [3740]: Connecting to database... -- 02:08:17.698 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:17.698 SQL [3740]: pgsql_db_connect() -- 02:08:17.702 DEBUG [3740]: Database connection successful -- 02:08:17.702 INFO [3740]: _SERVER found -- 02:08:17.702 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 02:08:17.702 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:17.702 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:17.702 INFO [3740]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 02:08:17.702 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:17.714 INFO [3740]: COREGRADE is stopping... -- 02:08:17.714 DEBUG [3740]: Closing database connection -- 02:08:17.714 SQL [3740]: pgsql_close() -- 02:08:17.782 INFO [3740]: COREGRADE is starting... -- 02:08:17.782 INFO [3740]: Version from config: 1.0 -- 02:08:17.782 DEBUG [3740]: Connecting to database... -- 02:08:17.782 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:17.782 SQL [3740]: pgsql_db_connect() -- 02:08:17.786 DEBUG [3740]: Database connection successful -- 02:08:17.786 INFO [3740]: _SERVER found -- 02:08:17.786 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 02:08:17.786 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:17.786 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:17.786 INFO [3740]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 02:08:17.786 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:17.798 INFO [3740]: COREGRADE is stopping... -- 02:08:17.798 DEBUG [3740]: Closing database connection -- 02:08:17.798 SQL [3740]: pgsql_close() -- 02:08:17.866 INFO [3740]: COREGRADE is starting... -- 02:08:17.866 INFO [3740]: Version from config: 1.0 -- 02:08:17.866 DEBUG [3740]: Connecting to database... -- 02:08:17.866 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:17.867 SQL [3740]: pgsql_db_connect() -- 02:08:17.871 DEBUG [3740]: Database connection successful -- 02:08:17.871 INFO [3740]: _SERVER found -- 02:08:17.871 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 02:08:17.871 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:17.871 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:17.871 INFO [3740]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 02:08:17.871 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:17.882 INFO [3740]: COREGRADE is stopping... -- 02:08:17.882 DEBUG [3740]: Closing database connection -- 02:08:17.882 SQL [3740]: pgsql_close() -- 02:08:17.951 INFO [3740]: COREGRADE is starting... -- 02:08:17.951 INFO [3740]: Version from config: 1.0 -- 02:08:17.951 DEBUG [3740]: Connecting to database... -- 02:08:17.951 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:17.951 SQL [3740]: pgsql_db_connect() -- 02:08:17.955 DEBUG [3740]: Database connection successful -- 02:08:17.955 INFO [3740]: _SERVER found -- 02:08:17.955 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 02:08:17.955 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:17.955 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:17.955 INFO [3740]: QUERY_STRING = /assets/js/pages/picker_date.js -- 02:08:17.955 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:17.967 INFO [3740]: COREGRADE is stopping... -- 02:08:17.967 DEBUG [3740]: Closing database connection -- 02:08:17.967 SQL [3740]: pgsql_close() -- 02:08:18.035 INFO [3740]: COREGRADE is starting... -- 02:08:18.035 INFO [3740]: Version from config: 1.0 -- 02:08:18.035 DEBUG [3740]: Connecting to database... -- 02:08:18.035 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:18.035 SQL [3740]: pgsql_db_connect() -- 02:08:18.039 DEBUG [3740]: Database connection successful -- 02:08:18.039 INFO [3740]: _SERVER found -- 02:08:18.039 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 02:08:18.039 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:18.039 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:18.039 INFO [3740]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 02:08:18.039 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:18.051 INFO [3740]: COREGRADE is stopping... -- 02:08:18.051 DEBUG [3740]: Closing database connection -- 02:08:18.051 SQL [3740]: pgsql_close() -- 02:08:18.119 INFO [3740]: COREGRADE is starting... -- 02:08:18.119 INFO [3740]: Version from config: 1.0 -- 02:08:18.119 DEBUG [3740]: Connecting to database... -- 02:08:18.119 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:18.119 SQL [3740]: pgsql_db_connect() -- 02:08:18.123 DEBUG [3740]: Database connection successful -- 02:08:18.123 INFO [3740]: _SERVER found -- 02:08:18.123 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 02:08:18.123 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:18.123 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:18.123 INFO [3740]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 02:08:18.123 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:18.135 INFO [3740]: COREGRADE is stopping... -- 02:08:18.135 DEBUG [3740]: Closing database connection -- 02:08:18.135 SQL [3740]: pgsql_close() -- 02:08:18.203 INFO [3740]: COREGRADE is starting... -- 02:08:18.203 INFO [3740]: Version from config: 1.0 -- 02:08:18.203 DEBUG [3740]: Connecting to database... -- 02:08:18.203 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:18.203 SQL [3740]: pgsql_db_connect() -- 02:08:18.207 DEBUG [3740]: Database connection successful -- 02:08:18.207 INFO [3740]: _SERVER found -- 02:08:18.207 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 02:08:18.207 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:18.207 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:18.207 INFO [3740]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 02:08:18.207 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:18.219 INFO [3740]: COREGRADE is stopping... -- 02:08:18.219 DEBUG [3740]: Closing database connection -- 02:08:18.219 SQL [3740]: pgsql_close() -- 02:08:18.288 INFO [3740]: COREGRADE is starting... -- 02:08:18.288 INFO [3740]: Version from config: 1.0 -- 02:08:18.288 DEBUG [3740]: Connecting to database... -- 02:08:18.288 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:18.288 SQL [3740]: pgsql_db_connect() -- 02:08:18.292 DEBUG [3740]: Database connection successful -- 02:08:18.292 INFO [3740]: _SERVER found -- 02:08:18.292 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 02:08:18.292 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:18.292 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:18.292 INFO [3740]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 02:08:18.292 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:18.304 INFO [3740]: COREGRADE is stopping... -- 02:08:18.304 DEBUG [3740]: Closing database connection -- 02:08:18.304 SQL [3740]: pgsql_close() -- 02:08:18.372 INFO [3740]: COREGRADE is starting... -- 02:08:18.372 INFO [3740]: Version from config: 1.0 -- 02:08:18.372 DEBUG [3740]: Connecting to database... -- 02:08:18.372 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:18.372 SQL [3740]: pgsql_db_connect() -- 02:08:18.376 DEBUG [3740]: Database connection successful -- 02:08:18.376 INFO [3740]: _SERVER found -- 02:08:18.376 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 02:08:18.376 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:18.376 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:18.376 INFO [3740]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 02:08:18.376 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:18.388 INFO [3740]: COREGRADE is stopping... -- 02:08:18.388 DEBUG [3740]: Closing database connection -- 02:08:18.388 SQL [3740]: pgsql_close() -- 02:08:18.466 INFO [3740]: COREGRADE is starting... -- 02:08:18.467 INFO [3740]: Version from config: 1.0 -- 02:08:18.467 DEBUG [3740]: Connecting to database... -- 02:08:18.467 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:18.467 SQL [3740]: pgsql_db_connect() -- 02:08:18.471 DEBUG [3740]: Database connection successful -- 02:08:18.471 INFO [3740]: _SERVER found -- 02:08:18.471 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 02:08:18.471 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:18.471 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:18.471 INFO [3740]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 02:08:18.471 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:18.482 INFO [3740]: COREGRADE is stopping... -- 02:08:18.482 DEBUG [3740]: Closing database connection -- 02:08:18.482 SQL [3740]: pgsql_close() -- 02:08:18.550 INFO [3740]: COREGRADE is starting... -- 02:08:18.550 INFO [3740]: Version from config: 1.0 -- 02:08:18.550 DEBUG [3740]: Connecting to database... -- 02:08:18.551 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:18.551 SQL [3740]: pgsql_db_connect() -- 02:08:18.554 DEBUG [3740]: Database connection successful -- 02:08:18.555 INFO [3740]: _SERVER found -- 02:08:18.555 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 02:08:18.555 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:18.555 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:18.555 INFO [3740]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 02:08:18.555 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:18.566 INFO [3740]: COREGRADE is stopping... -- 02:08:18.566 DEBUG [3740]: Closing database connection -- 02:08:18.566 SQL [3740]: pgsql_close() -- 02:08:18.636 INFO [3740]: COREGRADE is starting... -- 02:08:18.636 INFO [3740]: Version from config: 1.0 -- 02:08:18.636 DEBUG [3740]: Connecting to database... -- 02:08:18.636 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:08:18.636 SQL [3740]: pgsql_db_connect() -- 02:08:18.640 DEBUG [3740]: Database connection successful -- 02:08:18.640 INFO [3740]: _SERVER found -- 02:08:18.640 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 02:08:18.640 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:08:18.640 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:08:18.640 INFO [3740]: QUERY_STRING = /assets/customjs/general.js -- 02:08:18.640 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:08:18.652 INFO [3740]: COREGRADE is stopping... -- 02:08:18.652 DEBUG [3740]: Closing database connection -- 02:08:18.652 SQL [3740]: pgsql_close() -- 02:28:18.871 INFO [3829]: COREGRADE is starting... -- 02:28:18.871 INFO [3829]: Version from config: 1.0 -- 02:28:18.871 DEBUG [3829]: Connecting to database... -- 02:28:18.871 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:18.871 SQL [3829]: pgsql_db_connect() -- 02:28:18.876 DEBUG [3829]: Database connection successful -- 02:28:18.876 INFO [3829]: _SERVER found -- 02:28:18.876 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 02:28:18.876 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:18.876 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8n7o4q2ufdkiqleklukievlt3n19thrh -- 02:28:18.876 INFO [3829]: QUERY_STRING = /logout -- 02:28:18.876 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:18.911 INFO [3829]: COREGRADE is stopping... -- 02:28:18.911 DEBUG [3829]: Closing database connection -- 02:28:18.911 SQL [3829]: pgsql_close() -- 02:28:18.991 INFO [3829]: COREGRADE is starting... -- 02:28:18.992 INFO [3829]: Version from config: 1.0 -- 02:28:18.992 DEBUG [3829]: Connecting to database... -- 02:28:18.992 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:18.992 SQL [3829]: pgsql_db_connect() -- 02:28:18.996 DEBUG [3829]: Database connection successful -- 02:28:18.996 INFO [3829]: _SERVER found -- 02:28:18.996 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 02:28:18.996 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:18.996 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:18.996 INFO [3829]: QUERY_STRING = /start -- 02:28:18.996 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:19.032 INFO [3829]: COREGRADE is stopping... -- 02:28:19.032 DEBUG [3829]: Closing database connection -- 02:28:19.032 SQL [3829]: pgsql_close() -- 02:28:19.158 INFO [3738]: COREGRADE is starting... -- 02:28:19.159 INFO [3738]: Version from config: 1.0 -- 02:28:19.159 DEBUG [3738]: Connecting to database... -- 02:28:19.159 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:19.159 SQL [3738]: pgsql_db_connect() -- 02:28:19.163 DEBUG [3738]: Database connection successful -- 02:28:19.163 INFO [3738]: _SERVER found -- 02:28:19.163 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 02:28:19.163 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:19.163 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:19.163 INFO [3738]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 02:28:19.163 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:19.177 INFO [3738]: COREGRADE is stopping... -- 02:28:19.177 DEBUG [3738]: Closing database connection -- 02:28:19.177 SQL [3738]: pgsql_close() -- 02:28:19.182 INFO [3829]: COREGRADE is starting... -- 02:28:19.182 INFO [3829]: Version from config: 1.0 -- 02:28:19.182 DEBUG [3829]: Connecting to database... -- 02:28:19.182 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:19.182 SQL [3829]: pgsql_db_connect() -- 02:28:19.186 DEBUG [3829]: Database connection successful -- 02:28:19.186 INFO [3829]: _SERVER found -- 02:28:19.186 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 02:28:19.186 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:19.186 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:19.186 INFO [3829]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 02:28:19.186 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:19.198 INFO [3829]: COREGRADE is stopping... -- 02:28:19.198 DEBUG [3829]: Closing database connection -- 02:28:19.198 SQL [3829]: pgsql_close() -- 02:28:19.227 INFO [3738]: COREGRADE is starting... -- 02:28:19.227 INFO [3738]: Version from config: 1.0 -- 02:28:19.227 DEBUG [3738]: Connecting to database... -- 02:28:19.227 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:19.227 SQL [3738]: pgsql_db_connect() -- 02:28:19.231 DEBUG [3738]: Database connection successful -- 02:28:19.231 INFO [3738]: _SERVER found -- 02:28:19.231 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 02:28:19.231 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:19.231 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:19.231 INFO [3738]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 02:28:19.232 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:19.243 INFO [3738]: COREGRADE is stopping... -- 02:28:19.243 DEBUG [3738]: Closing database connection -- 02:28:19.243 SQL [3738]: pgsql_close() -- 02:28:19.256 INFO [3738]: COREGRADE is starting... -- 02:28:19.256 INFO [3738]: Version from config: 1.0 -- 02:28:19.256 DEBUG [3738]: Connecting to database... -- 02:28:19.256 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:19.256 SQL [3738]: pgsql_db_connect() -- 02:28:19.265 INFO [3829]: COREGRADE is starting... -- 02:28:19.265 INFO [3829]: Version from config: 1.0 -- 02:28:19.265 DEBUG [3829]: Connecting to database... -- 02:28:19.265 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:19.265 SQL [3829]: pgsql_db_connect() -- 02:28:19.260 DEBUG [3738]: Database connection successful -- 02:28:19.260 INFO [3738]: _SERVER found -- 02:28:19.260 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 02:28:19.260 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:19.260 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:19.260 INFO [3738]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 02:28:19.260 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:19.272 INFO [3738]: COREGRADE is stopping... -- 02:28:19.272 DEBUG [3738]: Closing database connection -- 02:28:19.272 SQL [3738]: pgsql_close() -- 02:28:19.269 DEBUG [3829]: Database connection successful -- 02:28:19.269 INFO [3829]: _SERVER found -- 02:28:19.269 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 02:28:19.269 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:19.269 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:19.269 INFO [3829]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 02:28:19.269 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:19.282 INFO [3829]: COREGRADE is stopping... -- 02:28:19.282 DEBUG [3829]: Closing database connection -- 02:28:19.282 SQL [3829]: pgsql_close() -- 02:28:19.320 INFO [3738]: COREGRADE is starting... -- 02:28:19.320 INFO [3738]: Version from config: 1.0 -- 02:28:19.320 DEBUG [3738]: Connecting to database... -- 02:28:19.320 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:19.320 SQL [3738]: pgsql_db_connect() -- 02:28:19.324 DEBUG [3738]: Database connection successful -- 02:28:19.324 INFO [3738]: _SERVER found -- 02:28:19.324 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 02:28:19.324 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:19.324 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:19.324 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 02:28:19.324 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:19.336 INFO [3738]: COREGRADE is stopping... -- 02:28:19.336 DEBUG [3738]: Closing database connection -- 02:28:19.336 SQL [3738]: pgsql_close() -- 02:28:19.352 INFO [3738]: COREGRADE is starting... -- 02:28:19.352 INFO [3829]: COREGRADE is starting... -- 02:28:19.352 INFO [3829]: Version from config: 1.0 -- 02:28:19.352 DEBUG [3829]: Connecting to database... -- 02:28:19.352 INFO [3738]: Version from config: 1.0 -- 02:28:19.352 DEBUG [3738]: Connecting to database... -- 02:28:19.352 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:19.352 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:19.352 SQL [3738]: pgsql_db_connect() -- 02:28:19.352 SQL [3829]: pgsql_db_connect() -- 02:28:19.356 DEBUG [3738]: Database connection successful -- 02:28:19.356 INFO [3738]: _SERVER found -- 02:28:19.356 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 02:28:19.356 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:19.356 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:19.356 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 02:28:19.356 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:19.368 INFO [3738]: COREGRADE is stopping... -- 02:28:19.368 DEBUG [3738]: Closing database connection -- 02:28:19.368 SQL [3738]: pgsql_close() -- 02:28:19.356 DEBUG [3829]: Database connection successful -- 02:28:19.356 INFO [3829]: _SERVER found -- 02:28:19.356 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 02:28:19.356 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:19.356 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:19.356 INFO [3829]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 02:28:19.356 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:19.368 INFO [3829]: COREGRADE is stopping... -- 02:28:19.368 DEBUG [3829]: Closing database connection -- 02:28:19.368 SQL [3829]: pgsql_close() -- 02:28:19.413 INFO [3738]: COREGRADE is starting... -- 02:28:19.413 INFO [3738]: Version from config: 1.0 -- 02:28:19.413 DEBUG [3738]: Connecting to database... -- 02:28:19.413 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:19.413 SQL [3738]: pgsql_db_connect() -- 02:28:19.418 DEBUG [3738]: Database connection successful -- 02:28:19.418 INFO [3738]: _SERVER found -- 02:28:19.418 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 02:28:19.418 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:19.418 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:19.418 INFO [3738]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 02:28:19.418 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:19.429 INFO [3738]: COREGRADE is stopping... -- 02:28:19.429 DEBUG [3738]: Closing database connection -- 02:28:19.429 SQL [3738]: pgsql_close() -- 02:28:19.437 INFO [3829]: COREGRADE is starting... -- 02:28:19.437 INFO [3829]: Version from config: 1.0 -- 02:28:19.437 DEBUG [3829]: Connecting to database... -- 02:28:19.437 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:19.437 SQL [3829]: pgsql_db_connect() -- 02:28:19.447 INFO [3738]: COREGRADE is starting... -- 02:28:19.447 INFO [3738]: Version from config: 1.0 -- 02:28:19.447 DEBUG [3738]: Connecting to database... -- 02:28:19.447 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:19.447 SQL [3738]: pgsql_db_connect() -- 02:28:19.441 DEBUG [3829]: Database connection successful -- 02:28:19.441 INFO [3829]: _SERVER found -- 02:28:19.441 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 02:28:19.441 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:19.441 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:19.441 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 02:28:19.441 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:19.453 INFO [3829]: COREGRADE is stopping... -- 02:28:19.453 DEBUG [3829]: Closing database connection -- 02:28:19.453 SQL [3829]: pgsql_close() -- 02:28:19.451 DEBUG [3738]: Database connection successful -- 02:28:19.451 INFO [3738]: _SERVER found -- 02:28:19.451 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 02:28:19.451 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:19.451 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:19.451 INFO [3738]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 02:28:19.451 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:19.463 INFO [3738]: COREGRADE is stopping... -- 02:28:19.463 DEBUG [3738]: Closing database connection -- 02:28:19.463 SQL [3738]: pgsql_close() -- 02:28:19.506 INFO [3738]: COREGRADE is starting... -- 02:28:19.507 INFO [3738]: Version from config: 1.0 -- 02:28:19.507 DEBUG [3738]: Connecting to database... -- 02:28:19.507 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:19.507 SQL [3738]: pgsql_db_connect() -- 02:28:19.520 INFO [3829]: COREGRADE is starting... -- 02:28:19.521 INFO [3829]: Version from config: 1.0 -- 02:28:19.521 DEBUG [3829]: Connecting to database... -- 02:28:19.521 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:19.521 SQL [3829]: pgsql_db_connect() -- 02:28:19.511 DEBUG [3738]: Database connection successful -- 02:28:19.511 INFO [3738]: _SERVER found -- 02:28:19.511 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 02:28:19.511 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:19.511 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:19.511 INFO [3738]: QUERY_STRING = /assets/js/pages/dashboard.js -- 02:28:19.511 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:19.523 INFO [3738]: COREGRADE is stopping... -- 02:28:19.523 DEBUG [3738]: Closing database connection -- 02:28:19.523 SQL [3738]: pgsql_close() -- 02:28:19.525 DEBUG [3829]: Database connection successful -- 02:28:19.525 INFO [3829]: _SERVER found -- 02:28:19.525 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 02:28:19.525 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:19.525 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:19.525 INFO [3829]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 02:28:19.525 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:19.542 INFO [3829]: COREGRADE is stopping... -- 02:28:19.542 INFO [3738]: COREGRADE is starting... -- 02:28:19.542 DEBUG [3829]: Closing database connection -- 02:28:19.542 SQL [3829]: pgsql_close() -- 02:28:19.542 INFO [3738]: Version from config: 1.0 -- 02:28:19.542 DEBUG [3738]: Connecting to database... -- 02:28:19.542 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:19.542 SQL [3738]: pgsql_db_connect() -- 02:28:19.547 DEBUG [3738]: Database connection successful -- 02:28:19.547 INFO [3738]: _SERVER found -- 02:28:19.547 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 02:28:19.547 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:19.547 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:19.547 INFO [3738]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 02:28:19.547 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:19.559 INFO [3738]: COREGRADE is stopping... -- 02:28:19.559 DEBUG [3738]: Closing database connection -- 02:28:19.559 SQL [3738]: pgsql_close() -- 02:28:19.590 INFO [3738]: COREGRADE is starting... -- 02:28:19.590 INFO [3738]: Version from config: 1.0 -- 02:28:19.590 DEBUG [3738]: Connecting to database... -- 02:28:19.590 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:19.590 SQL [3738]: pgsql_db_connect() -- 02:28:19.595 DEBUG [3738]: Database connection successful -- 02:28:19.595 INFO [3738]: _SERVER found -- 02:28:19.595 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 02:28:19.595 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:19.595 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:19.595 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 02:28:19.595 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:19.606 INFO [3738]: COREGRADE is stopping... -- 02:28:19.606 DEBUG [3738]: Closing database connection -- 02:28:19.606 SQL [3738]: pgsql_close() -- 02:28:19.609 INFO [3829]: COREGRADE is starting... -- 02:28:19.610 INFO [3829]: Version from config: 1.0 -- 02:28:19.610 DEBUG [3829]: Connecting to database... -- 02:28:19.610 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:19.610 SQL [3829]: pgsql_db_connect() -- 02:28:19.615 DEBUG [3829]: Database connection successful -- 02:28:19.615 INFO [3829]: _SERVER found -- 02:28:19.615 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 02:28:19.615 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:19.615 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:19.615 INFO [3829]: QUERY_STRING = /assets/js/pages/picker_date.js -- 02:28:19.615 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:19.627 INFO [3829]: COREGRADE is stopping... -- 02:28:19.627 DEBUG [3829]: Closing database connection -- 02:28:19.627 SQL [3829]: pgsql_close() -- 02:28:19.628 INFO [3738]: COREGRADE is starting... -- 02:28:19.628 INFO [3738]: Version from config: 1.0 -- 02:28:19.628 DEBUG [3738]: Connecting to database... -- 02:28:19.628 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:19.628 SQL [3738]: pgsql_db_connect() -- 02:28:19.632 DEBUG [3738]: Database connection successful -- 02:28:19.632 INFO [3738]: _SERVER found -- 02:28:19.632 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 02:28:19.632 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:19.632 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:19.632 INFO [3738]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 02:28:19.632 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:19.643 INFO [3738]: COREGRADE is stopping... -- 02:28:19.643 DEBUG [3738]: Closing database connection -- 02:28:19.643 SQL [3738]: pgsql_close() -- 02:28:19.672 INFO [3738]: COREGRADE is starting... -- 02:28:19.672 INFO [3738]: Version from config: 1.0 -- 02:28:19.672 DEBUG [3738]: Connecting to database... -- 02:28:19.672 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:19.672 SQL [3738]: pgsql_db_connect() -- 02:28:19.676 DEBUG [3738]: Database connection successful -- 02:28:19.676 INFO [3738]: _SERVER found -- 02:28:19.676 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 02:28:19.676 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:19.676 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:19.676 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 02:28:19.676 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:19.688 INFO [3738]: COREGRADE is stopping... -- 02:28:19.688 DEBUG [3738]: Closing database connection -- 02:28:19.688 SQL [3738]: pgsql_close() -- 02:28:19.694 INFO [3829]: COREGRADE is starting... -- 02:28:19.694 INFO [3829]: Version from config: 1.0 -- 02:28:19.694 DEBUG [3829]: Connecting to database... -- 02:28:19.694 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:19.694 SQL [3829]: pgsql_db_connect() -- 02:28:19.698 DEBUG [3829]: Database connection successful -- 02:28:19.698 INFO [3829]: _SERVER found -- 02:28:19.698 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 02:28:19.698 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:19.698 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:19.698 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 02:28:19.698 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:19.710 INFO [3829]: COREGRADE is stopping... -- 02:28:19.710 DEBUG [3829]: Closing database connection -- 02:28:19.710 SQL [3829]: pgsql_close() -- 02:28:19.712 INFO [3738]: COREGRADE is starting... -- 02:28:19.713 INFO [3738]: Version from config: 1.0 -- 02:28:19.713 DEBUG [3738]: Connecting to database... -- 02:28:19.713 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:19.713 SQL [3738]: pgsql_db_connect() -- 02:28:19.717 DEBUG [3738]: Database connection successful -- 02:28:19.717 INFO [3738]: _SERVER found -- 02:28:19.717 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 02:28:19.717 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:19.717 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:19.717 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 02:28:19.717 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:19.728 INFO [3738]: COREGRADE is stopping... -- 02:28:19.728 DEBUG [3738]: Closing database connection -- 02:28:19.728 SQL [3738]: pgsql_close() -- 02:28:19.754 INFO [3738]: COREGRADE is starting... -- 02:28:19.754 INFO [3738]: Version from config: 1.0 -- 02:28:19.754 DEBUG [3738]: Connecting to database... -- 02:28:19.754 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:19.754 SQL [3738]: pgsql_db_connect() -- 02:28:19.758 DEBUG [3738]: Database connection successful -- 02:28:19.758 INFO [3738]: _SERVER found -- 02:28:19.758 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 02:28:19.758 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:19.758 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:19.758 INFO [3738]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 02:28:19.758 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:19.770 INFO [3738]: COREGRADE is stopping... -- 02:28:19.770 DEBUG [3738]: Closing database connection -- 02:28:19.770 SQL [3738]: pgsql_close() -- 02:28:19.778 INFO [3829]: COREGRADE is starting... -- 02:28:19.778 INFO [3829]: Version from config: 1.0 -- 02:28:19.778 DEBUG [3829]: Connecting to database... -- 02:28:19.778 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:19.778 SQL [3829]: pgsql_db_connect() -- 02:28:19.782 DEBUG [3829]: Database connection successful -- 02:28:19.782 INFO [3829]: _SERVER found -- 02:28:19.782 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 02:28:19.782 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:19.782 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:19.782 INFO [3829]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 02:28:19.782 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:19.794 INFO [3829]: COREGRADE is stopping... -- 02:28:19.794 DEBUG [3829]: Closing database connection -- 02:28:19.794 SQL [3829]: pgsql_close() -- 02:28:19.797 INFO [3738]: COREGRADE is starting... -- 02:28:19.797 INFO [3738]: Version from config: 1.0 -- 02:28:19.797 DEBUG [3738]: Connecting to database... -- 02:28:19.797 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:19.797 SQL [3738]: pgsql_db_connect() -- 02:28:19.801 DEBUG [3738]: Database connection successful -- 02:28:19.801 INFO [3738]: _SERVER found -- 02:28:19.801 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 02:28:19.801 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:19.801 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:19.801 INFO [3738]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 02:28:19.801 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:19.812 INFO [3738]: COREGRADE is stopping... -- 02:28:19.812 DEBUG [3738]: Closing database connection -- 02:28:19.812 SQL [3738]: pgsql_close() -- 02:28:19.835 INFO [3738]: COREGRADE is starting... -- 02:28:19.835 INFO [3738]: Version from config: 1.0 -- 02:28:19.835 DEBUG [3738]: Connecting to database... -- 02:28:19.835 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:19.835 SQL [3738]: pgsql_db_connect() -- 02:28:19.839 DEBUG [3738]: Database connection successful -- 02:28:19.839 INFO [3738]: _SERVER found -- 02:28:19.839 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 02:28:19.839 INFO [3738]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:19.839 INFO [3738]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:19.839 INFO [3738]: QUERY_STRING = /assets/customjs/general.js -- 02:28:19.839 INFO [3738]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:19.851 INFO [3738]: COREGRADE is stopping... -- 02:28:19.851 DEBUG [3738]: Closing database connection -- 02:28:19.851 SQL [3738]: pgsql_close() -- 02:28:19.861 INFO [3829]: COREGRADE is starting... -- 02:28:19.861 INFO [3829]: Version from config: 1.0 -- 02:28:19.861 DEBUG [3829]: Connecting to database... -- 02:28:19.861 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:19.861 SQL [3829]: pgsql_db_connect() -- 02:28:19.865 DEBUG [3829]: Database connection successful -- 02:28:19.865 INFO [3829]: _SERVER found -- 02:28:19.865 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 02:28:19.865 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:19.865 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:19.865 INFO [3829]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 02:28:19.865 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:19.877 INFO [3829]: COREGRADE is stopping... -- 02:28:19.877 DEBUG [3829]: Closing database connection -- 02:28:19.877 SQL [3829]: pgsql_close() -- 02:28:19.945 INFO [3829]: COREGRADE is starting... -- 02:28:19.945 INFO [3829]: Version from config: 1.0 -- 02:28:19.945 DEBUG [3829]: Connecting to database... -- 02:28:19.945 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:19.945 SQL [3829]: pgsql_db_connect() -- 02:28:19.950 DEBUG [3829]: Database connection successful -- 02:28:19.950 INFO [3829]: _SERVER found -- 02:28:19.950 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 02:28:19.950 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:19.950 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:19.950 INFO [3829]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 02:28:19.950 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:19.962 INFO [3829]: COREGRADE is stopping... -- 02:28:19.962 DEBUG [3829]: Closing database connection -- 02:28:19.962 SQL [3829]: pgsql_close() -- 02:28:20.029 INFO [3829]: COREGRADE is starting... -- 02:28:20.029 INFO [3829]: Version from config: 1.0 -- 02:28:20.029 DEBUG [3829]: Connecting to database... -- 02:28:20.029 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:20.029 SQL [3829]: pgsql_db_connect() -- 02:28:20.033 DEBUG [3829]: Database connection successful -- 02:28:20.033 INFO [3829]: _SERVER found -- 02:28:20.033 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 02:28:20.033 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:20.033 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:20.033 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 02:28:20.033 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:20.046 INFO [3829]: COREGRADE is stopping... -- 02:28:20.046 DEBUG [3829]: Closing database connection -- 02:28:20.046 SQL [3829]: pgsql_close() -- 02:28:20.113 INFO [3829]: COREGRADE is starting... -- 02:28:20.113 INFO [3829]: Version from config: 1.0 -- 02:28:20.113 DEBUG [3829]: Connecting to database... -- 02:28:20.113 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:20.113 SQL [3829]: pgsql_db_connect() -- 02:28:20.118 DEBUG [3829]: Database connection successful -- 02:28:20.118 INFO [3829]: _SERVER found -- 02:28:20.118 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 02:28:20.118 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:20.118 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:20.118 INFO [3829]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 02:28:20.118 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:20.129 INFO [3829]: COREGRADE is stopping... -- 02:28:20.130 DEBUG [3829]: Closing database connection -- 02:28:20.130 SQL [3829]: pgsql_close() -- 02:28:20.197 INFO [3829]: COREGRADE is starting... -- 02:28:20.197 INFO [3829]: Version from config: 1.0 -- 02:28:20.197 DEBUG [3829]: Connecting to database... -- 02:28:20.198 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:20.198 SQL [3829]: pgsql_db_connect() -- 02:28:20.202 DEBUG [3829]: Database connection successful -- 02:28:20.202 INFO [3829]: _SERVER found -- 02:28:20.202 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 02:28:20.202 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:20.202 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:20.202 INFO [3829]: QUERY_STRING = /assets/js/pages/dashboard.js -- 02:28:20.202 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:20.214 INFO [3829]: COREGRADE is stopping... -- 02:28:20.214 DEBUG [3829]: Closing database connection -- 02:28:20.214 SQL [3829]: pgsql_close() -- 02:28:20.282 INFO [3829]: COREGRADE is starting... -- 02:28:20.283 INFO [3829]: Version from config: 1.0 -- 02:28:20.283 DEBUG [3829]: Connecting to database... -- 02:28:20.283 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:20.283 SQL [3829]: pgsql_db_connect() -- 02:28:20.287 DEBUG [3829]: Database connection successful -- 02:28:20.287 INFO [3829]: _SERVER found -- 02:28:20.287 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 02:28:20.287 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:20.287 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:20.287 INFO [3829]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 02:28:20.287 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:20.299 INFO [3829]: COREGRADE is stopping... -- 02:28:20.299 DEBUG [3829]: Closing database connection -- 02:28:20.299 SQL [3829]: pgsql_close() -- 02:28:20.366 INFO [3829]: COREGRADE is starting... -- 02:28:20.367 INFO [3829]: Version from config: 1.0 -- 02:28:20.367 DEBUG [3829]: Connecting to database... -- 02:28:20.367 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:20.367 SQL [3829]: pgsql_db_connect() -- 02:28:20.371 DEBUG [3829]: Database connection successful -- 02:28:20.371 INFO [3829]: _SERVER found -- 02:28:20.371 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 02:28:20.371 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:20.371 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:20.371 INFO [3829]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 02:28:20.371 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:20.383 INFO [3829]: COREGRADE is stopping... -- 02:28:20.383 DEBUG [3829]: Closing database connection -- 02:28:20.383 SQL [3829]: pgsql_close() -- 02:28:20.451 INFO [3829]: COREGRADE is starting... -- 02:28:20.451 INFO [3829]: Version from config: 1.0 -- 02:28:20.451 DEBUG [3829]: Connecting to database... -- 02:28:20.451 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:20.451 SQL [3829]: pgsql_db_connect() -- 02:28:20.455 DEBUG [3829]: Database connection successful -- 02:28:20.455 INFO [3829]: _SERVER found -- 02:28:20.455 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 02:28:20.455 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:20.455 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:20.455 INFO [3829]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 02:28:20.455 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:20.467 INFO [3829]: COREGRADE is stopping... -- 02:28:20.467 DEBUG [3829]: Closing database connection -- 02:28:20.467 SQL [3829]: pgsql_close() -- 02:28:20.535 INFO [3829]: COREGRADE is starting... -- 02:28:20.535 INFO [3829]: Version from config: 1.0 -- 02:28:20.535 DEBUG [3829]: Connecting to database... -- 02:28:20.535 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:20.535 SQL [3829]: pgsql_db_connect() -- 02:28:20.539 DEBUG [3829]: Database connection successful -- 02:28:20.539 INFO [3829]: _SERVER found -- 02:28:20.539 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 02:28:20.539 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:20.539 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:20.539 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 02:28:20.539 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:20.551 INFO [3829]: COREGRADE is stopping... -- 02:28:20.551 DEBUG [3829]: Closing database connection -- 02:28:20.551 SQL [3829]: pgsql_close() -- 02:28:20.619 INFO [3829]: COREGRADE is starting... -- 02:28:20.620 INFO [3829]: Version from config: 1.0 -- 02:28:20.620 DEBUG [3829]: Connecting to database... -- 02:28:20.620 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:20.620 SQL [3829]: pgsql_db_connect() -- 02:28:20.624 DEBUG [3829]: Database connection successful -- 02:28:20.624 INFO [3829]: _SERVER found -- 02:28:20.624 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 02:28:20.624 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:20.624 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:20.624 INFO [3829]: QUERY_STRING = /assets/js/pages/picker_date.js -- 02:28:20.624 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:20.636 INFO [3829]: COREGRADE is stopping... -- 02:28:20.636 DEBUG [3829]: Closing database connection -- 02:28:20.636 SQL [3829]: pgsql_close() -- 02:28:20.704 INFO [3829]: COREGRADE is starting... -- 02:28:20.704 INFO [3829]: Version from config: 1.0 -- 02:28:20.704 DEBUG [3829]: Connecting to database... -- 02:28:20.704 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:20.704 SQL [3829]: pgsql_db_connect() -- 02:28:20.708 DEBUG [3829]: Database connection successful -- 02:28:20.708 INFO [3829]: _SERVER found -- 02:28:20.708 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 02:28:20.708 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:20.708 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:20.708 INFO [3829]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 02:28:20.708 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:20.720 INFO [3829]: COREGRADE is stopping... -- 02:28:20.720 DEBUG [3829]: Closing database connection -- 02:28:20.720 SQL [3829]: pgsql_close() -- 02:28:20.788 INFO [3829]: COREGRADE is starting... -- 02:28:20.789 INFO [3829]: Version from config: 1.0 -- 02:28:20.789 DEBUG [3829]: Connecting to database... -- 02:28:20.789 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:20.789 SQL [3829]: pgsql_db_connect() -- 02:28:20.793 DEBUG [3829]: Database connection successful -- 02:28:20.793 INFO [3829]: _SERVER found -- 02:28:20.793 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 02:28:20.793 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:20.793 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:20.793 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 02:28:20.793 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:20.805 INFO [3829]: COREGRADE is stopping... -- 02:28:20.805 DEBUG [3829]: Closing database connection -- 02:28:20.805 SQL [3829]: pgsql_close() -- 02:28:20.873 INFO [3829]: COREGRADE is starting... -- 02:28:20.873 INFO [3829]: Version from config: 1.0 -- 02:28:20.873 DEBUG [3829]: Connecting to database... -- 02:28:20.873 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:20.873 SQL [3829]: pgsql_db_connect() -- 02:28:20.877 DEBUG [3829]: Database connection successful -- 02:28:20.877 INFO [3829]: _SERVER found -- 02:28:20.877 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 02:28:20.877 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:20.877 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:20.877 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 02:28:20.877 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:20.890 INFO [3829]: COREGRADE is stopping... -- 02:28:20.890 DEBUG [3829]: Closing database connection -- 02:28:20.890 SQL [3829]: pgsql_close() -- 02:28:20.958 INFO [3829]: COREGRADE is starting... -- 02:28:20.958 INFO [3829]: Version from config: 1.0 -- 02:28:20.958 DEBUG [3829]: Connecting to database... -- 02:28:20.958 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:20.958 SQL [3829]: pgsql_db_connect() -- 02:28:20.962 DEBUG [3829]: Database connection successful -- 02:28:20.962 INFO [3829]: _SERVER found -- 02:28:20.962 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 02:28:20.962 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:20.962 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:20.962 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 02:28:20.962 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:20.974 INFO [3829]: COREGRADE is stopping... -- 02:28:20.974 DEBUG [3829]: Closing database connection -- 02:28:20.974 SQL [3829]: pgsql_close() -- 02:28:21.042 INFO [3829]: COREGRADE is starting... -- 02:28:21.043 INFO [3829]: Version from config: 1.0 -- 02:28:21.043 DEBUG [3829]: Connecting to database... -- 02:28:21.043 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:21.043 SQL [3829]: pgsql_db_connect() -- 02:28:21.047 DEBUG [3829]: Database connection successful -- 02:28:21.047 INFO [3829]: _SERVER found -- 02:28:21.047 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 02:28:21.047 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:21.047 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:21.047 INFO [3829]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 02:28:21.047 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:21.059 INFO [3829]: COREGRADE is stopping... -- 02:28:21.059 DEBUG [3829]: Closing database connection -- 02:28:21.059 SQL [3829]: pgsql_close() -- 02:28:21.137 INFO [3829]: COREGRADE is starting... -- 02:28:21.137 INFO [3829]: Version from config: 1.0 -- 02:28:21.137 DEBUG [3829]: Connecting to database... -- 02:28:21.137 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:21.138 SQL [3829]: pgsql_db_connect() -- 02:28:21.142 DEBUG [3829]: Database connection successful -- 02:28:21.142 INFO [3829]: _SERVER found -- 02:28:21.142 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 02:28:21.142 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:21.142 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:21.142 INFO [3829]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 02:28:21.142 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:21.154 INFO [3829]: COREGRADE is stopping... -- 02:28:21.154 DEBUG [3829]: Closing database connection -- 02:28:21.154 SQL [3829]: pgsql_close() -- 02:28:21.221 INFO [3829]: COREGRADE is starting... -- 02:28:21.222 INFO [3829]: Version from config: 1.0 -- 02:28:21.222 DEBUG [3829]: Connecting to database... -- 02:28:21.222 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:21.222 SQL [3829]: pgsql_db_connect() -- 02:28:21.226 DEBUG [3829]: Database connection successful -- 02:28:21.226 INFO [3829]: _SERVER found -- 02:28:21.226 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 02:28:21.226 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:21.226 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:21.226 INFO [3829]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 02:28:21.226 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:21.238 INFO [3829]: COREGRADE is stopping... -- 02:28:21.238 DEBUG [3829]: Closing database connection -- 02:28:21.238 SQL [3829]: pgsql_close() -- 02:28:21.308 INFO [3829]: COREGRADE is starting... -- 02:28:21.308 INFO [3829]: Version from config: 1.0 -- 02:28:21.308 DEBUG [3829]: Connecting to database... -- 02:28:21.308 DEBUG [3829]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:28:21.308 SQL [3829]: pgsql_db_connect() -- 02:28:21.312 DEBUG [3829]: Database connection successful -- 02:28:21.312 INFO [3829]: _SERVER found -- 02:28:21.312 INFO [3829]: REMOTE_ADDR = 10.0.0.15 -- 02:28:21.312 INFO [3829]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:28:21.312 INFO [3829]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:28:21.312 INFO [3829]: QUERY_STRING = /assets/customjs/general.js -- 02:28:21.312 INFO [3829]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:28:21.325 INFO [3829]: COREGRADE is stopping... -- 02:28:21.325 DEBUG [3829]: Closing database connection -- 02:28:21.325 SQL [3829]: pgsql_close() -- 02:48:21.544 INFO [3739]: COREGRADE is starting... -- 02:48:21.544 INFO [3739]: Version from config: 1.0 -- 02:48:21.544 DEBUG [3739]: Connecting to database... -- 02:48:21.544 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:21.544 SQL [3739]: pgsql_db_connect() -- 02:48:21.549 DEBUG [3739]: Database connection successful -- 02:48:21.549 INFO [3739]: _SERVER found -- 02:48:21.549 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 02:48:21.549 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:21.549 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=tvurr2dncvhtsfnv823jeujevf71bb7e -- 02:48:21.549 INFO [3739]: QUERY_STRING = /logout -- 02:48:21.549 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:21.583 INFO [3739]: COREGRADE is stopping... -- 02:48:21.583 DEBUG [3739]: Closing database connection -- 02:48:21.583 SQL [3739]: pgsql_close() -- 02:48:21.662 INFO [3739]: COREGRADE is starting... -- 02:48:21.662 INFO [3739]: Version from config: 1.0 -- 02:48:21.662 DEBUG [3739]: Connecting to database... -- 02:48:21.662 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:21.663 SQL [3739]: pgsql_db_connect() -- 02:48:21.667 DEBUG [3739]: Database connection successful -- 02:48:21.667 INFO [3739]: _SERVER found -- 02:48:21.667 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 02:48:21.667 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:21.667 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:21.667 INFO [3739]: QUERY_STRING = /start -- 02:48:21.667 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:21.702 INFO [3739]: COREGRADE is stopping... -- 02:48:21.702 DEBUG [3739]: Closing database connection -- 02:48:21.702 SQL [3739]: pgsql_close() -- 02:48:21.830 INFO [3739]: COREGRADE is starting... -- 02:48:21.830 INFO [3739]: Version from config: 1.0 -- 02:48:21.830 DEBUG [3739]: Connecting to database... -- 02:48:21.830 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:21.830 SQL [3739]: pgsql_db_connect() -- 02:48:21.835 DEBUG [3739]: Database connection successful -- 02:48:21.835 INFO [3739]: _SERVER found -- 02:48:21.835 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 02:48:21.835 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:21.835 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:21.835 INFO [3739]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 02:48:21.835 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:21.847 INFO [3739]: COREGRADE is stopping... -- 02:48:21.847 DEBUG [3739]: Closing database connection -- 02:48:21.847 SQL [3739]: pgsql_close() -- 02:48:21.851 INFO [3739]: COREGRADE is starting... -- 02:48:21.852 INFO [3739]: Version from config: 1.0 -- 02:48:21.852 DEBUG [3739]: Connecting to database... -- 02:48:21.852 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:21.852 SQL [3739]: pgsql_db_connect() -- 02:48:21.856 DEBUG [3739]: Database connection successful -- 02:48:21.856 INFO [3739]: _SERVER found -- 02:48:21.856 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 02:48:21.856 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:21.856 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:21.856 INFO [3739]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 02:48:21.856 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:21.868 INFO [3739]: COREGRADE is stopping... -- 02:48:21.868 DEBUG [3739]: Closing database connection -- 02:48:21.868 SQL [3739]: pgsql_close() -- 02:48:21.903 INFO [3739]: COREGRADE is starting... -- 02:48:21.903 INFO [3739]: Version from config: 1.0 -- 02:48:21.903 DEBUG [3739]: Connecting to database... -- 02:48:21.903 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:21.903 SQL [3739]: pgsql_db_connect() -- 02:48:21.908 DEBUG [3739]: Database connection successful -- 02:48:21.908 INFO [3739]: _SERVER found -- 02:48:21.908 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 02:48:21.908 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:21.908 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:21.908 INFO [3739]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 02:48:21.908 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:21.919 INFO [3739]: COREGRADE is stopping... -- 02:48:21.919 DEBUG [3739]: Closing database connection -- 02:48:21.919 SQL [3739]: pgsql_close() -- 02:48:21.926 INFO [3739]: COREGRADE is starting... -- 02:48:21.926 INFO [3739]: Version from config: 1.0 -- 02:48:21.926 DEBUG [3739]: Connecting to database... -- 02:48:21.926 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:21.926 SQL [3739]: pgsql_db_connect() -- 02:48:21.935 INFO [3742]: COREGRADE is starting... -- 02:48:21.935 INFO [3742]: Version from config: 1.0 -- 02:48:21.935 DEBUG [3742]: Connecting to database... -- 02:48:21.935 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:21.935 SQL [3742]: pgsql_db_connect() -- 02:48:21.930 DEBUG [3739]: Database connection successful -- 02:48:21.930 INFO [3739]: _SERVER found -- 02:48:21.930 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 02:48:21.930 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:21.930 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:21.930 INFO [3739]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 02:48:21.930 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:21.942 INFO [3739]: COREGRADE is stopping... -- 02:48:21.942 DEBUG [3739]: Closing database connection -- 02:48:21.942 SQL [3739]: pgsql_close() -- 02:48:21.940 DEBUG [3742]: Database connection successful -- 02:48:21.940 INFO [3742]: _SERVER found -- 02:48:21.940 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 02:48:21.940 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:21.940 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:21.940 INFO [3742]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 02:48:21.940 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:21.954 INFO [3742]: COREGRADE is stopping... -- 02:48:21.954 DEBUG [3742]: Closing database connection -- 02:48:21.954 SQL [3742]: pgsql_close() -- 02:48:22.004 INFO [3742]: COREGRADE is starting... -- 02:48:22.004 INFO [3742]: Version from config: 1.0 -- 02:48:22.004 DEBUG [3742]: Connecting to database... -- 02:48:22.004 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:22.004 SQL [3742]: pgsql_db_connect() -- 02:48:22.009 DEBUG [3742]: Database connection successful -- 02:48:22.009 INFO [3742]: _SERVER found -- 02:48:22.009 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 02:48:22.009 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:22.009 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:22.009 INFO [3742]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 02:48:22.009 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:22.021 INFO [3742]: COREGRADE is stopping... -- 02:48:22.021 DEBUG [3742]: Closing database connection -- 02:48:22.021 SQL [3742]: pgsql_close() -- 02:48:22.022 INFO [3739]: COREGRADE is starting... -- 02:48:22.022 INFO [3739]: Version from config: 1.0 -- 02:48:22.022 DEBUG [3739]: Connecting to database... -- 02:48:22.022 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:22.022 SQL [3739]: pgsql_db_connect() -- 02:48:22.023 INFO [3828]: COREGRADE is starting... -- 02:48:22.023 INFO [3828]: Version from config: 1.0 -- 02:48:22.023 DEBUG [3828]: Connecting to database... -- 02:48:22.023 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:22.023 SQL [3828]: pgsql_db_connect() -- 02:48:22.028 DEBUG [3739]: Database connection successful -- 02:48:22.028 INFO [3739]: _SERVER found -- 02:48:22.028 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 02:48:22.028 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:22.028 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:22.028 INFO [3739]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 02:48:22.028 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:22.040 INFO [3739]: COREGRADE is stopping... -- 02:48:22.040 DEBUG [3739]: Closing database connection -- 02:48:22.040 SQL [3739]: pgsql_close() -- 02:48:22.028 DEBUG [3828]: Database connection successful -- 02:48:22.028 INFO [3828]: _SERVER found -- 02:48:22.028 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 02:48:22.028 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:22.028 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:22.028 INFO [3828]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 02:48:22.028 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:22.040 INFO [3828]: COREGRADE is stopping... -- 02:48:22.040 DEBUG [3828]: Closing database connection -- 02:48:22.040 SQL [3828]: pgsql_close() -- 02:48:22.104 INFO [3828]: COREGRADE is starting... -- 02:48:22.104 INFO [3828]: Version from config: 1.0 -- 02:48:22.104 DEBUG [3828]: Connecting to database... -- 02:48:22.104 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:22.104 SQL [3828]: pgsql_db_connect() -- 02:48:22.105 INFO [3739]: COREGRADE is starting... -- 02:48:22.106 INFO [3739]: Version from config: 1.0 -- 02:48:22.106 DEBUG [3739]: Connecting to database... -- 02:48:22.106 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:22.106 SQL [3739]: pgsql_db_connect() -- 02:48:22.120 INFO [3742]: COREGRADE is starting... -- 02:48:22.120 INFO [3742]: Version from config: 1.0 -- 02:48:22.120 DEBUG [3742]: Connecting to database... -- 02:48:22.120 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:22.120 SQL [3742]: pgsql_db_connect() -- 02:48:22.109 DEBUG [3828]: Database connection successful -- 02:48:22.109 INFO [3828]: _SERVER found -- 02:48:22.109 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 02:48:22.109 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:22.109 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:22.109 INFO [3828]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 02:48:22.109 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:22.120 INFO [3828]: COREGRADE is stopping... -- 02:48:22.120 DEBUG [3828]: Closing database connection -- 02:48:22.120 SQL [3828]: pgsql_close() -- 02:48:22.110 DEBUG [3739]: Database connection successful -- 02:48:22.110 INFO [3739]: _SERVER found -- 02:48:22.110 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 02:48:22.110 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:22.110 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:22.110 INFO [3739]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 02:48:22.110 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:22.122 INFO [3739]: COREGRADE is stopping... -- 02:48:22.122 DEBUG [3739]: Closing database connection -- 02:48:22.122 SQL [3739]: pgsql_close() -- 02:48:22.126 DEBUG [3742]: Database connection successful -- 02:48:22.126 INFO [3742]: _SERVER found -- 02:48:22.126 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 02:48:22.126 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:22.126 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:22.126 INFO [3742]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 02:48:22.126 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:22.139 INFO [3742]: COREGRADE is stopping... -- 02:48:22.139 DEBUG [3742]: Closing database connection -- 02:48:22.139 SQL [3742]: pgsql_close() -- 02:48:22.189 INFO [3742]: COREGRADE is starting... -- 02:48:22.190 INFO [3742]: Version from config: 1.0 -- 02:48:22.190 DEBUG [3742]: Connecting to database... -- 02:48:22.190 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:22.190 SQL [3742]: pgsql_db_connect() -- 02:48:22.203 INFO [3739]: COREGRADE is starting... -- 02:48:22.203 INFO [3739]: Version from config: 1.0 -- 02:48:22.203 DEBUG [3739]: Connecting to database... -- 02:48:22.203 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:22.203 SQL [3739]: pgsql_db_connect() -- 02:48:22.194 DEBUG [3742]: Database connection successful -- 02:48:22.194 INFO [3742]: _SERVER found -- 02:48:22.194 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 02:48:22.194 INFO [3742]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:22.194 INFO [3742]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:22.194 INFO [3742]: QUERY_STRING = /assets/js/pages/dashboard.js -- 02:48:22.194 INFO [3742]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:22.207 INFO [3742]: COREGRADE is stopping... -- 02:48:22.207 DEBUG [3742]: Closing database connection -- 02:48:22.207 SQL [3742]: pgsql_close() -- 02:48:22.208 INFO [3828]: COREGRADE is starting... -- 02:48:22.208 INFO [3828]: Version from config: 1.0 -- 02:48:22.208 DEBUG [3828]: Connecting to database... -- 02:48:22.208 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:22.208 SQL [3828]: pgsql_db_connect() -- 02:48:22.208 DEBUG [3739]: Database connection successful -- 02:48:22.208 INFO [3739]: _SERVER found -- 02:48:22.208 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 02:48:22.208 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:22.208 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:22.208 INFO [3739]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 02:48:22.208 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:22.221 INFO [3739]: COREGRADE is stopping... -- 02:48:22.221 DEBUG [3739]: Closing database connection -- 02:48:22.221 SQL [3739]: pgsql_close() -- 02:48:22.213 DEBUG [3828]: Database connection successful -- 02:48:22.213 INFO [3828]: _SERVER found -- 02:48:22.213 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 02:48:22.213 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:22.213 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:22.213 INFO [3828]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 02:48:22.213 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:22.225 INFO [3828]: COREGRADE is stopping... -- 02:48:22.225 DEBUG [3828]: Closing database connection -- 02:48:22.225 SQL [3828]: pgsql_close() -- 02:48:22.274 INFO [3828]: COREGRADE is starting... -- 02:48:22.274 INFO [3828]: Version from config: 1.0 -- 02:48:22.274 DEBUG [3828]: Connecting to database... -- 02:48:22.274 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:22.274 SQL [3828]: pgsql_db_connect() -- 02:48:22.279 DEBUG [3828]: Database connection successful -- 02:48:22.279 INFO [3828]: _SERVER found -- 02:48:22.279 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 02:48:22.279 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:22.279 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:22.279 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 02:48:22.279 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:22.290 INFO [3828]: COREGRADE is stopping... -- 02:48:22.290 DEBUG [3828]: Closing database connection -- 02:48:22.290 SQL [3828]: pgsql_close() -- 02:48:22.292 INFO [3739]: COREGRADE is starting... -- 02:48:22.292 INFO [3739]: Version from config: 1.0 -- 02:48:22.292 DEBUG [3739]: Connecting to database... -- 02:48:22.292 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:22.292 SQL [3739]: pgsql_db_connect() -- 02:48:22.292 INFO [3828]: COREGRADE is starting... -- 02:48:22.293 INFO [3828]: Version from config: 1.0 -- 02:48:22.293 DEBUG [3828]: Connecting to database... -- 02:48:22.293 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:22.293 SQL [3828]: pgsql_db_connect() -- 02:48:22.297 DEBUG [3739]: Database connection successful -- 02:48:22.297 INFO [3739]: _SERVER found -- 02:48:22.297 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 02:48:22.297 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:22.297 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:22.297 INFO [3739]: QUERY_STRING = /assets/js/pages/picker_date.js -- 02:48:22.297 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:22.308 INFO [3739]: COREGRADE is stopping... -- 02:48:22.308 DEBUG [3739]: Closing database connection -- 02:48:22.308 SQL [3739]: pgsql_close() -- 02:48:22.297 DEBUG [3828]: Database connection successful -- 02:48:22.297 INFO [3828]: _SERVER found -- 02:48:22.297 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 02:48:22.297 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:22.297 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:22.297 INFO [3828]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 02:48:22.297 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:22.309 INFO [3828]: COREGRADE is stopping... -- 02:48:22.309 DEBUG [3828]: Closing database connection -- 02:48:22.309 SQL [3828]: pgsql_close() -- 02:48:22.357 INFO [3828]: COREGRADE is starting... -- 02:48:22.357 INFO [3828]: Version from config: 1.0 -- 02:48:22.357 DEBUG [3828]: Connecting to database... -- 02:48:22.357 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:22.357 SQL [3828]: pgsql_db_connect() -- 02:48:22.362 DEBUG [3828]: Database connection successful -- 02:48:22.362 INFO [3828]: _SERVER found -- 02:48:22.362 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 02:48:22.362 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:22.362 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:22.362 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 02:48:22.362 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:22.373 INFO [3828]: COREGRADE is stopping... -- 02:48:22.373 DEBUG [3828]: Closing database connection -- 02:48:22.373 SQL [3828]: pgsql_close() -- 02:48:22.378 INFO [3828]: COREGRADE is starting... -- 02:48:22.378 INFO [3739]: COREGRADE is starting... -- 02:48:22.378 INFO [3828]: Version from config: 1.0 -- 02:48:22.378 DEBUG [3828]: Connecting to database... -- 02:48:22.378 INFO [3739]: Version from config: 1.0 -- 02:48:22.378 DEBUG [3739]: Connecting to database... -- 02:48:22.378 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:22.378 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:22.378 SQL [3828]: pgsql_db_connect() -- 02:48:22.378 SQL [3739]: pgsql_db_connect() -- 02:48:22.383 DEBUG [3828]: Database connection successful -- 02:48:22.383 INFO [3828]: _SERVER found -- 02:48:22.383 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 02:48:22.383 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:22.383 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:22.383 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 02:48:22.383 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:22.394 INFO [3828]: COREGRADE is stopping... -- 02:48:22.394 DEBUG [3828]: Closing database connection -- 02:48:22.394 SQL [3828]: pgsql_close() -- 02:48:22.383 DEBUG [3739]: Database connection successful -- 02:48:22.383 INFO [3739]: _SERVER found -- 02:48:22.383 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 02:48:22.383 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:22.383 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:22.383 INFO [3739]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 02:48:22.383 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:22.395 INFO [3739]: COREGRADE is stopping... -- 02:48:22.395 DEBUG [3739]: Closing database connection -- 02:48:22.395 SQL [3739]: pgsql_close() -- 02:48:22.439 INFO [3739]: COREGRADE is starting... -- 02:48:22.439 INFO [3739]: Version from config: 1.0 -- 02:48:22.439 DEBUG [3739]: Connecting to database... -- 02:48:22.439 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:22.440 SQL [3739]: pgsql_db_connect() -- 02:48:22.444 DEBUG [3739]: Database connection successful -- 02:48:22.444 INFO [3739]: _SERVER found -- 02:48:22.444 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 02:48:22.444 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:22.444 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:22.444 INFO [3739]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 02:48:22.444 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:22.456 INFO [3739]: COREGRADE is stopping... -- 02:48:22.456 DEBUG [3739]: Closing database connection -- 02:48:22.456 SQL [3739]: pgsql_close() -- 02:48:22.463 INFO [3828]: COREGRADE is starting... -- 02:48:22.463 INFO [3739]: COREGRADE is starting... -- 02:48:22.463 INFO [3739]: Version from config: 1.0 -- 02:48:22.463 DEBUG [3739]: Connecting to database... -- 02:48:22.463 INFO [3828]: Version from config: 1.0 -- 02:48:22.463 DEBUG [3828]: Connecting to database... -- 02:48:22.463 DEBUG [3739]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:22.463 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:22.463 SQL [3739]: pgsql_db_connect() -- 02:48:22.463 SQL [3828]: pgsql_db_connect() -- 02:48:22.468 DEBUG [3739]: Database connection successful -- 02:48:22.468 INFO [3739]: _SERVER found -- 02:48:22.468 INFO [3739]: REMOTE_ADDR = 10.0.0.15 -- 02:48:22.468 INFO [3739]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:22.468 INFO [3739]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:22.468 INFO [3739]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 02:48:22.468 INFO [3739]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:22.480 INFO [3739]: COREGRADE is stopping... -- 02:48:22.468 DEBUG [3828]: Database connection successful -- 02:48:22.468 INFO [3828]: _SERVER found -- 02:48:22.468 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 02:48:22.468 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:22.468 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:22.468 INFO [3828]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 02:48:22.468 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:22.480 INFO [3828]: COREGRADE is stopping... -- 02:48:22.480 DEBUG [3739]: Closing database connection -- 02:48:22.480 DEBUG [3828]: Closing database connection -- 02:48:22.480 SQL [3739]: pgsql_close() -- 02:48:22.480 SQL [3828]: pgsql_close() -- 02:48:22.522 INFO [3828]: COREGRADE is starting... -- 02:48:22.522 INFO [3828]: Version from config: 1.0 -- 02:48:22.522 DEBUG [3828]: Connecting to database... -- 02:48:22.522 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:22.522 SQL [3828]: pgsql_db_connect() -- 02:48:22.527 DEBUG [3828]: Database connection successful -- 02:48:22.527 INFO [3828]: _SERVER found -- 02:48:22.527 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 02:48:22.527 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:22.527 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:22.527 INFO [3828]: QUERY_STRING = /assets/customjs/general.js -- 02:48:22.527 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:22.538 INFO [3828]: COREGRADE is stopping... -- 02:48:22.538 DEBUG [3828]: Closing database connection -- 02:48:22.538 SQL [3828]: pgsql_close() -- 02:48:22.548 INFO [3828]: COREGRADE is starting... -- 02:48:22.548 INFO [3828]: Version from config: 1.0 -- 02:48:22.548 DEBUG [3828]: Connecting to database... -- 02:48:22.548 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:22.548 SQL [3828]: pgsql_db_connect() -- 02:48:22.553 DEBUG [3828]: Database connection successful -- 02:48:22.553 INFO [3828]: _SERVER found -- 02:48:22.553 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 02:48:22.553 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:22.553 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:22.553 INFO [3828]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 02:48:22.553 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:22.564 INFO [3828]: COREGRADE is stopping... -- 02:48:22.564 DEBUG [3828]: Closing database connection -- 02:48:22.564 SQL [3828]: pgsql_close() -- 02:48:22.633 INFO [3828]: COREGRADE is starting... -- 02:48:22.633 INFO [3828]: Version from config: 1.0 -- 02:48:22.633 DEBUG [3828]: Connecting to database... -- 02:48:22.633 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:22.633 SQL [3828]: pgsql_db_connect() -- 02:48:22.638 DEBUG [3828]: Database connection successful -- 02:48:22.638 INFO [3828]: _SERVER found -- 02:48:22.638 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 02:48:22.638 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:22.638 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:22.638 INFO [3828]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 02:48:22.638 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:22.649 INFO [3828]: COREGRADE is stopping... -- 02:48:22.650 DEBUG [3828]: Closing database connection -- 02:48:22.650 SQL [3828]: pgsql_close() -- 02:48:22.718 INFO [3828]: COREGRADE is starting... -- 02:48:22.718 INFO [3828]: Version from config: 1.0 -- 02:48:22.718 DEBUG [3828]: Connecting to database... -- 02:48:22.718 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:22.718 SQL [3828]: pgsql_db_connect() -- 02:48:22.723 DEBUG [3828]: Database connection successful -- 02:48:22.723 INFO [3828]: _SERVER found -- 02:48:22.723 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 02:48:22.723 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:22.723 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:22.723 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 02:48:22.723 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:22.734 INFO [3828]: COREGRADE is stopping... -- 02:48:22.734 DEBUG [3828]: Closing database connection -- 02:48:22.734 SQL [3828]: pgsql_close() -- 02:48:22.803 INFO [3828]: COREGRADE is starting... -- 02:48:22.803 INFO [3828]: Version from config: 1.0 -- 02:48:22.803 DEBUG [3828]: Connecting to database... -- 02:48:22.803 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:22.803 SQL [3828]: pgsql_db_connect() -- 02:48:22.808 DEBUG [3828]: Database connection successful -- 02:48:22.808 INFO [3828]: _SERVER found -- 02:48:22.808 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 02:48:22.808 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:22.808 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:22.808 INFO [3828]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 02:48:22.808 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:22.819 INFO [3828]: COREGRADE is stopping... -- 02:48:22.819 DEBUG [3828]: Closing database connection -- 02:48:22.819 SQL [3828]: pgsql_close() -- 02:48:22.888 INFO [3828]: COREGRADE is starting... -- 02:48:22.888 INFO [3828]: Version from config: 1.0 -- 02:48:22.888 DEBUG [3828]: Connecting to database... -- 02:48:22.888 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:22.888 SQL [3828]: pgsql_db_connect() -- 02:48:22.893 DEBUG [3828]: Database connection successful -- 02:48:22.893 INFO [3828]: _SERVER found -- 02:48:22.893 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 02:48:22.893 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:22.893 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:22.893 INFO [3828]: QUERY_STRING = /assets/js/pages/dashboard.js -- 02:48:22.893 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:22.904 INFO [3828]: COREGRADE is stopping... -- 02:48:22.904 DEBUG [3828]: Closing database connection -- 02:48:22.904 SQL [3828]: pgsql_close() -- 02:48:22.973 INFO [3828]: COREGRADE is starting... -- 02:48:22.974 INFO [3828]: Version from config: 1.0 -- 02:48:22.974 DEBUG [3828]: Connecting to database... -- 02:48:22.974 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:22.974 SQL [3828]: pgsql_db_connect() -- 02:48:22.978 DEBUG [3828]: Database connection successful -- 02:48:22.978 INFO [3828]: _SERVER found -- 02:48:22.978 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 02:48:22.978 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:22.978 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:22.978 INFO [3828]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 02:48:22.978 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:22.990 INFO [3828]: COREGRADE is stopping... -- 02:48:22.990 DEBUG [3828]: Closing database connection -- 02:48:22.990 SQL [3828]: pgsql_close() -- 02:48:23.058 INFO [3828]: COREGRADE is starting... -- 02:48:23.059 INFO [3828]: Version from config: 1.0 -- 02:48:23.059 DEBUG [3828]: Connecting to database... -- 02:48:23.059 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:23.059 SQL [3828]: pgsql_db_connect() -- 02:48:23.063 DEBUG [3828]: Database connection successful -- 02:48:23.063 INFO [3828]: _SERVER found -- 02:48:23.063 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 02:48:23.063 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:23.064 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:23.064 INFO [3828]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 02:48:23.064 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:23.075 INFO [3828]: COREGRADE is stopping... -- 02:48:23.075 DEBUG [3828]: Closing database connection -- 02:48:23.075 SQL [3828]: pgsql_close() -- 02:48:23.143 INFO [3828]: COREGRADE is starting... -- 02:48:23.144 INFO [3828]: Version from config: 1.0 -- 02:48:23.144 DEBUG [3828]: Connecting to database... -- 02:48:23.144 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:23.144 SQL [3828]: pgsql_db_connect() -- 02:48:23.148 DEBUG [3828]: Database connection successful -- 02:48:23.148 INFO [3828]: _SERVER found -- 02:48:23.148 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 02:48:23.148 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:23.149 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:23.149 INFO [3828]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 02:48:23.149 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:23.160 INFO [3828]: COREGRADE is stopping... -- 02:48:23.160 DEBUG [3828]: Closing database connection -- 02:48:23.160 SQL [3828]: pgsql_close() -- 02:48:23.228 INFO [3828]: COREGRADE is starting... -- 02:48:23.228 INFO [3828]: Version from config: 1.0 -- 02:48:23.228 DEBUG [3828]: Connecting to database... -- 02:48:23.228 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:23.228 SQL [3828]: pgsql_db_connect() -- 02:48:23.233 DEBUG [3828]: Database connection successful -- 02:48:23.233 INFO [3828]: _SERVER found -- 02:48:23.233 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 02:48:23.233 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:23.233 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:23.233 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 02:48:23.233 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:23.244 INFO [3828]: COREGRADE is stopping... -- 02:48:23.244 DEBUG [3828]: Closing database connection -- 02:48:23.244 SQL [3828]: pgsql_close() -- 02:48:23.313 INFO [3828]: COREGRADE is starting... -- 02:48:23.313 INFO [3828]: Version from config: 1.0 -- 02:48:23.313 DEBUG [3828]: Connecting to database... -- 02:48:23.313 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:23.313 SQL [3828]: pgsql_db_connect() -- 02:48:23.318 DEBUG [3828]: Database connection successful -- 02:48:23.318 INFO [3828]: _SERVER found -- 02:48:23.318 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 02:48:23.318 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:23.318 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:23.318 INFO [3828]: QUERY_STRING = /assets/js/pages/picker_date.js -- 02:48:23.318 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:23.330 INFO [3828]: COREGRADE is stopping... -- 02:48:23.330 DEBUG [3828]: Closing database connection -- 02:48:23.330 SQL [3828]: pgsql_close() -- 02:48:23.398 INFO [3828]: COREGRADE is starting... -- 02:48:23.398 INFO [3828]: Version from config: 1.0 -- 02:48:23.399 DEBUG [3828]: Connecting to database... -- 02:48:23.399 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:23.399 SQL [3828]: pgsql_db_connect() -- 02:48:23.403 DEBUG [3828]: Database connection successful -- 02:48:23.403 INFO [3828]: _SERVER found -- 02:48:23.403 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 02:48:23.403 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:23.403 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:23.403 INFO [3828]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 02:48:23.403 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:23.415 INFO [3828]: COREGRADE is stopping... -- 02:48:23.415 DEBUG [3828]: Closing database connection -- 02:48:23.415 SQL [3828]: pgsql_close() -- 02:48:23.483 INFO [3828]: COREGRADE is starting... -- 02:48:23.483 INFO [3828]: Version from config: 1.0 -- 02:48:23.483 DEBUG [3828]: Connecting to database... -- 02:48:23.483 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:23.483 SQL [3828]: pgsql_db_connect() -- 02:48:23.488 DEBUG [3828]: Database connection successful -- 02:48:23.488 INFO [3828]: _SERVER found -- 02:48:23.488 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 02:48:23.488 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:23.488 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:23.488 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 02:48:23.488 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:23.500 INFO [3828]: COREGRADE is stopping... -- 02:48:23.500 DEBUG [3828]: Closing database connection -- 02:48:23.500 SQL [3828]: pgsql_close() -- 02:48:23.568 INFO [3828]: COREGRADE is starting... -- 02:48:23.568 INFO [3828]: Version from config: 1.0 -- 02:48:23.568 DEBUG [3828]: Connecting to database... -- 02:48:23.568 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:23.568 SQL [3828]: pgsql_db_connect() -- 02:48:23.573 DEBUG [3828]: Database connection successful -- 02:48:23.573 INFO [3828]: _SERVER found -- 02:48:23.573 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 02:48:23.573 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:23.573 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:23.573 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 02:48:23.573 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:23.584 INFO [3828]: COREGRADE is stopping... -- 02:48:23.584 DEBUG [3828]: Closing database connection -- 02:48:23.584 SQL [3828]: pgsql_close() -- 02:48:23.652 INFO [3828]: COREGRADE is starting... -- 02:48:23.652 INFO [3828]: Version from config: 1.0 -- 02:48:23.652 DEBUG [3828]: Connecting to database... -- 02:48:23.652 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:23.652 SQL [3828]: pgsql_db_connect() -- 02:48:23.657 DEBUG [3828]: Database connection successful -- 02:48:23.657 INFO [3828]: _SERVER found -- 02:48:23.657 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 02:48:23.657 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:23.657 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:23.657 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 02:48:23.657 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:23.669 INFO [3828]: COREGRADE is stopping... -- 02:48:23.669 DEBUG [3828]: Closing database connection -- 02:48:23.669 SQL [3828]: pgsql_close() -- 02:48:23.736 INFO [3828]: COREGRADE is starting... -- 02:48:23.737 INFO [3828]: Version from config: 1.0 -- 02:48:23.737 DEBUG [3828]: Connecting to database... -- 02:48:23.737 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:23.737 SQL [3828]: pgsql_db_connect() -- 02:48:23.741 DEBUG [3828]: Database connection successful -- 02:48:23.741 INFO [3828]: _SERVER found -- 02:48:23.741 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 02:48:23.741 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:23.741 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:23.741 INFO [3828]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 02:48:23.741 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:23.753 INFO [3828]: COREGRADE is stopping... -- 02:48:23.753 DEBUG [3828]: Closing database connection -- 02:48:23.753 SQL [3828]: pgsql_close() -- 02:48:23.831 INFO [3828]: COREGRADE is starting... -- 02:48:23.832 INFO [3828]: Version from config: 1.0 -- 02:48:23.832 DEBUG [3828]: Connecting to database... -- 02:48:23.832 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:23.832 SQL [3828]: pgsql_db_connect() -- 02:48:23.836 DEBUG [3828]: Database connection successful -- 02:48:23.836 INFO [3828]: _SERVER found -- 02:48:23.836 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 02:48:23.836 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:23.836 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:23.836 INFO [3828]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 02:48:23.836 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:23.848 INFO [3828]: COREGRADE is stopping... -- 02:48:23.848 DEBUG [3828]: Closing database connection -- 02:48:23.848 SQL [3828]: pgsql_close() -- 02:48:23.916 INFO [3828]: COREGRADE is starting... -- 02:48:23.916 INFO [3828]: Version from config: 1.0 -- 02:48:23.916 DEBUG [3828]: Connecting to database... -- 02:48:23.916 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:23.916 SQL [3828]: pgsql_db_connect() -- 02:48:23.921 DEBUG [3828]: Database connection successful -- 02:48:23.921 INFO [3828]: _SERVER found -- 02:48:23.921 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 02:48:23.921 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:23.921 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:23.921 INFO [3828]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 02:48:23.921 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:23.932 INFO [3828]: COREGRADE is stopping... -- 02:48:23.932 DEBUG [3828]: Closing database connection -- 02:48:23.932 SQL [3828]: pgsql_close() -- 02:48:24.003 INFO [3828]: COREGRADE is starting... -- 02:48:24.003 INFO [3828]: Version from config: 1.0 -- 02:48:24.003 DEBUG [3828]: Connecting to database... -- 02:48:24.003 DEBUG [3828]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:24.003 SQL [3828]: pgsql_db_connect() -- 02:48:24.008 DEBUG [3828]: Database connection successful -- 02:48:24.008 INFO [3828]: _SERVER found -- 02:48:24.008 INFO [3828]: REMOTE_ADDR = 10.0.0.15 -- 02:48:24.008 INFO [3828]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 02:48:24.008 INFO [3828]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 02:48:24.008 INFO [3828]: QUERY_STRING = /assets/customjs/general.js -- 02:48:24.008 INFO [3828]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 02:48:24.020 INFO [3828]: COREGRADE is stopping... -- 02:48:24.020 DEBUG [3828]: Closing database connection -- 02:48:24.020 SQL [3828]: pgsql_close() -- 03:08:24.236 INFO [3741]: COREGRADE is starting... -- 03:08:24.237 INFO [3741]: Version from config: 1.0 -- 03:08:24.237 DEBUG [3741]: Connecting to database... -- 03:08:24.237 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:24.237 SQL [3741]: pgsql_db_connect() -- 03:08:24.241 DEBUG [3741]: Database connection successful -- 03:08:24.241 INFO [3741]: _SERVER found -- 03:08:24.241 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 03:08:24.241 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:24.241 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=47p6n5vsq7o1eohdueqtm4hlcvf1sn5l -- 03:08:24.241 INFO [3741]: QUERY_STRING = /logout -- 03:08:24.241 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:24.274 INFO [3741]: COREGRADE is stopping... -- 03:08:24.275 DEBUG [3741]: Closing database connection -- 03:08:24.275 SQL [3741]: pgsql_close() -- 03:08:24.353 INFO [3741]: COREGRADE is starting... -- 03:08:24.353 INFO [3741]: Version from config: 1.0 -- 03:08:24.353 DEBUG [3741]: Connecting to database... -- 03:08:24.353 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:24.353 SQL [3741]: pgsql_db_connect() -- 03:08:24.357 DEBUG [3741]: Database connection successful -- 03:08:24.357 INFO [3741]: _SERVER found -- 03:08:24.357 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 03:08:24.357 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:24.357 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:24.357 INFO [3741]: QUERY_STRING = /start -- 03:08:24.357 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:24.391 INFO [3741]: COREGRADE is stopping... -- 03:08:24.391 DEBUG [3741]: Closing database connection -- 03:08:24.391 SQL [3741]: pgsql_close() -- 03:08:24.518 INFO [3800]: COREGRADE is starting... -- 03:08:24.518 INFO [3800]: Version from config: 1.0 -- 03:08:24.518 DEBUG [3800]: Connecting to database... -- 03:08:24.518 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:24.518 SQL [3800]: pgsql_db_connect() -- 03:08:24.522 DEBUG [3800]: Database connection successful -- 03:08:24.522 INFO [3800]: _SERVER found -- 03:08:24.522 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 03:08:24.522 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:24.522 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:24.522 INFO [3800]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 03:08:24.522 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:24.534 INFO [3800]: COREGRADE is stopping... -- 03:08:24.534 DEBUG [3800]: Closing database connection -- 03:08:24.534 SQL [3800]: pgsql_close() -- 03:08:24.535 INFO [3741]: COREGRADE is starting... -- 03:08:24.535 INFO [3741]: Version from config: 1.0 -- 03:08:24.535 DEBUG [3741]: Connecting to database... -- 03:08:24.535 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:24.535 SQL [3741]: pgsql_db_connect() -- 03:08:24.539 DEBUG [3741]: Database connection successful -- 03:08:24.539 INFO [3741]: _SERVER found -- 03:08:24.539 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 03:08:24.539 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:24.539 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:24.539 INFO [3741]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 03:08:24.539 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:24.551 INFO [3741]: COREGRADE is stopping... -- 03:08:24.551 DEBUG [3741]: Closing database connection -- 03:08:24.551 SQL [3741]: pgsql_close() -- 03:08:24.577 INFO [3740]: COREGRADE is starting... -- 03:08:24.577 INFO [3740]: Version from config: 1.0 -- 03:08:24.577 DEBUG [3740]: Connecting to database... -- 03:08:24.577 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:24.577 SQL [3740]: pgsql_db_connect() -- 03:08:24.581 DEBUG [3740]: Database connection successful -- 03:08:24.581 INFO [3740]: _SERVER found -- 03:08:24.581 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 03:08:24.581 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:24.581 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:24.581 INFO [3740]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 03:08:24.581 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:24.593 INFO [3740]: COREGRADE is stopping... -- 03:08:24.593 DEBUG [3740]: Closing database connection -- 03:08:24.593 SQL [3740]: pgsql_close() -- 03:08:24.615 INFO [3800]: COREGRADE is starting... -- 03:08:24.615 INFO [3800]: Version from config: 1.0 -- 03:08:24.615 DEBUG [3800]: Connecting to database... -- 03:08:24.615 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:24.615 SQL [3800]: pgsql_db_connect() -- 03:08:24.616 INFO [3741]: COREGRADE is starting... -- 03:08:24.616 INFO [3741]: Version from config: 1.0 -- 03:08:24.616 DEBUG [3741]: Connecting to database... -- 03:08:24.616 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:24.616 SQL [3741]: pgsql_db_connect() -- 03:08:24.619 DEBUG [3800]: Database connection successful -- 03:08:24.619 INFO [3800]: _SERVER found -- 03:08:24.619 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 03:08:24.619 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:24.619 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:24.619 INFO [3800]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 03:08:24.619 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:24.630 INFO [3800]: COREGRADE is stopping... -- 03:08:24.630 DEBUG [3800]: Closing database connection -- 03:08:24.630 SQL [3800]: pgsql_close() -- 03:08:24.620 DEBUG [3741]: Database connection successful -- 03:08:24.620 INFO [3741]: _SERVER found -- 03:08:24.620 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 03:08:24.620 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:24.620 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:24.620 INFO [3741]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 03:08:24.620 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:24.631 INFO [3741]: COREGRADE is stopping... -- 03:08:24.631 DEBUG [3741]: Closing database connection -- 03:08:24.631 SQL [3741]: pgsql_close() -- 03:08:24.669 INFO [3740]: COREGRADE is starting... -- 03:08:24.669 INFO [3740]: Version from config: 1.0 -- 03:08:24.669 DEBUG [3740]: Connecting to database... -- 03:08:24.669 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:24.669 SQL [3740]: pgsql_db_connect() -- 03:08:24.673 DEBUG [3740]: Database connection successful -- 03:08:24.673 INFO [3740]: _SERVER found -- 03:08:24.673 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 03:08:24.673 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:24.673 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:24.673 INFO [3740]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 03:08:24.673 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:24.685 INFO [3740]: COREGRADE is stopping... -- 03:08:24.685 DEBUG [3740]: Closing database connection -- 03:08:24.685 SQL [3740]: pgsql_close() -- 03:08:24.698 INFO [3741]: COREGRADE is starting... -- 03:08:24.698 INFO [3741]: Version from config: 1.0 -- 03:08:24.698 DEBUG [3741]: Connecting to database... -- 03:08:24.698 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:24.698 SQL [3741]: pgsql_db_connect() -- 03:08:24.712 INFO [3800]: COREGRADE is starting... -- 03:08:24.712 INFO [3800]: Version from config: 1.0 -- 03:08:24.712 DEBUG [3800]: Connecting to database... -- 03:08:24.712 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:24.712 SQL [3800]: pgsql_db_connect() -- 03:08:24.702 DEBUG [3741]: Database connection successful -- 03:08:24.702 INFO [3741]: _SERVER found -- 03:08:24.702 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 03:08:24.702 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:24.702 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:24.702 INFO [3741]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 03:08:24.702 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:24.713 INFO [3741]: COREGRADE is stopping... -- 03:08:24.713 DEBUG [3741]: Closing database connection -- 03:08:24.713 SQL [3741]: pgsql_close() -- 03:08:24.716 DEBUG [3800]: Database connection successful -- 03:08:24.716 INFO [3800]: _SERVER found -- 03:08:24.716 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 03:08:24.716 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:24.716 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:24.716 INFO [3800]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 03:08:24.716 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:24.728 INFO [3800]: COREGRADE is stopping... -- 03:08:24.728 DEBUG [3800]: Closing database connection -- 03:08:24.728 SQL [3800]: pgsql_close() -- 03:08:24.761 INFO [3740]: COREGRADE is starting... -- 03:08:24.761 INFO [3740]: Version from config: 1.0 -- 03:08:24.761 DEBUG [3740]: Connecting to database... -- 03:08:24.761 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:24.761 SQL [3740]: pgsql_db_connect() -- 03:08:24.765 DEBUG [3740]: Database connection successful -- 03:08:24.765 INFO [3740]: _SERVER found -- 03:08:24.765 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 03:08:24.765 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:24.765 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:24.765 INFO [3740]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 03:08:24.765 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:24.777 INFO [3740]: COREGRADE is stopping... -- 03:08:24.777 DEBUG [3740]: Closing database connection -- 03:08:24.777 SQL [3740]: pgsql_close() -- 03:08:24.779 INFO [3741]: COREGRADE is starting... -- 03:08:24.779 INFO [3741]: Version from config: 1.0 -- 03:08:24.779 DEBUG [3741]: Connecting to database... -- 03:08:24.779 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:24.779 SQL [3741]: pgsql_db_connect() -- 03:08:24.783 DEBUG [3741]: Database connection successful -- 03:08:24.783 INFO [3741]: _SERVER found -- 03:08:24.783 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 03:08:24.783 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:24.783 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:24.783 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 03:08:24.783 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:24.795 INFO [3741]: COREGRADE is stopping... -- 03:08:24.795 DEBUG [3741]: Closing database connection -- 03:08:24.795 SQL [3741]: pgsql_close() -- 03:08:24.809 INFO [3800]: COREGRADE is starting... -- 03:08:24.809 INFO [3800]: Version from config: 1.0 -- 03:08:24.809 DEBUG [3800]: Connecting to database... -- 03:08:24.809 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:24.809 SQL [3800]: pgsql_db_connect() -- 03:08:24.813 DEBUG [3800]: Database connection successful -- 03:08:24.813 INFO [3800]: _SERVER found -- 03:08:24.813 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 03:08:24.813 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:24.813 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:24.813 INFO [3800]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 03:08:24.813 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:24.824 INFO [3800]: COREGRADE is stopping... -- 03:08:24.824 DEBUG [3800]: Closing database connection -- 03:08:24.824 SQL [3800]: pgsql_close() -- 03:08:24.853 INFO [3740]: COREGRADE is starting... -- 03:08:24.853 INFO [3740]: Version from config: 1.0 -- 03:08:24.853 DEBUG [3740]: Connecting to database... -- 03:08:24.853 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:24.853 SQL [3740]: pgsql_db_connect() -- 03:08:24.860 INFO [3741]: COREGRADE is starting... -- 03:08:24.860 INFO [3741]: Version from config: 1.0 -- 03:08:24.860 DEBUG [3741]: Connecting to database... -- 03:08:24.860 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:24.860 SQL [3741]: pgsql_db_connect() -- 03:08:24.857 DEBUG [3740]: Database connection successful -- 03:08:24.857 INFO [3740]: _SERVER found -- 03:08:24.857 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 03:08:24.857 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:24.857 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:24.857 INFO [3740]: QUERY_STRING = /assets/js/pages/dashboard.js -- 03:08:24.857 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:24.869 INFO [3740]: COREGRADE is stopping... -- 03:08:24.869 DEBUG [3740]: Closing database connection -- 03:08:24.869 SQL [3740]: pgsql_close() -- 03:08:24.864 DEBUG [3741]: Database connection successful -- 03:08:24.864 INFO [3741]: _SERVER found -- 03:08:24.864 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 03:08:24.864 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:24.864 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:24.864 INFO [3741]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 03:08:24.864 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:24.876 INFO [3741]: COREGRADE is stopping... -- 03:08:24.876 DEBUG [3741]: Closing database connection -- 03:08:24.876 SQL [3741]: pgsql_close() -- 03:08:24.895 INFO [3800]: COREGRADE is starting... -- 03:08:24.895 INFO [3800]: Version from config: 1.0 -- 03:08:24.895 DEBUG [3800]: Connecting to database... -- 03:08:24.895 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:24.895 SQL [3800]: pgsql_db_connect() -- 03:08:24.899 DEBUG [3800]: Database connection successful -- 03:08:24.899 INFO [3800]: _SERVER found -- 03:08:24.899 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 03:08:24.899 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:24.899 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:24.899 INFO [3800]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 03:08:24.899 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:24.911 INFO [3800]: COREGRADE is stopping... -- 03:08:24.911 DEBUG [3800]: Closing database connection -- 03:08:24.911 SQL [3800]: pgsql_close() -- 03:08:24.934 INFO [3740]: COREGRADE is starting... -- 03:08:24.934 INFO [3740]: Version from config: 1.0 -- 03:08:24.934 DEBUG [3740]: Connecting to database... -- 03:08:24.934 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:24.934 SQL [3740]: pgsql_db_connect() -- 03:08:24.941 INFO [3741]: COREGRADE is starting... -- 03:08:24.941 INFO [3741]: Version from config: 1.0 -- 03:08:24.941 DEBUG [3741]: Connecting to database... -- 03:08:24.941 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:24.941 SQL [3741]: pgsql_db_connect() -- 03:08:24.938 DEBUG [3740]: Database connection successful -- 03:08:24.938 INFO [3740]: _SERVER found -- 03:08:24.938 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 03:08:24.938 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:24.938 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:24.938 INFO [3740]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 03:08:24.938 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:24.949 INFO [3740]: COREGRADE is stopping... -- 03:08:24.949 DEBUG [3740]: Closing database connection -- 03:08:24.949 SQL [3740]: pgsql_close() -- 03:08:24.945 DEBUG [3741]: Database connection successful -- 03:08:24.945 INFO [3741]: _SERVER found -- 03:08:24.945 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 03:08:24.945 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:24.945 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:24.945 INFO [3741]: QUERY_STRING = /assets/js/pages/picker_date.js -- 03:08:24.945 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:24.956 INFO [3741]: COREGRADE is stopping... -- 03:08:24.956 DEBUG [3741]: Closing database connection -- 03:08:24.956 SQL [3741]: pgsql_close() -- 03:08:24.980 INFO [3800]: COREGRADE is starting... -- 03:08:24.981 INFO [3800]: Version from config: 1.0 -- 03:08:24.981 DEBUG [3800]: Connecting to database... -- 03:08:24.981 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:24.981 SQL [3800]: pgsql_db_connect() -- 03:08:24.985 DEBUG [3800]: Database connection successful -- 03:08:24.985 INFO [3800]: _SERVER found -- 03:08:24.985 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 03:08:24.985 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:24.985 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:24.985 INFO [3800]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 03:08:24.985 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:24.996 INFO [3800]: COREGRADE is stopping... -- 03:08:24.996 DEBUG [3800]: Closing database connection -- 03:08:24.996 SQL [3800]: pgsql_close() -- 03:08:25.015 INFO [3740]: COREGRADE is starting... -- 03:08:25.015 INFO [3740]: Version from config: 1.0 -- 03:08:25.015 DEBUG [3740]: Connecting to database... -- 03:08:25.015 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:25.015 SQL [3740]: pgsql_db_connect() -- 03:08:25.021 INFO [3741]: COREGRADE is starting... -- 03:08:25.022 INFO [3741]: Version from config: 1.0 -- 03:08:25.022 DEBUG [3741]: Connecting to database... -- 03:08:25.022 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:25.022 SQL [3741]: pgsql_db_connect() -- 03:08:25.019 DEBUG [3740]: Database connection successful -- 03:08:25.019 INFO [3740]: _SERVER found -- 03:08:25.019 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 03:08:25.019 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:25.019 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:25.020 INFO [3740]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 03:08:25.020 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:25.031 INFO [3740]: COREGRADE is stopping... -- 03:08:25.031 DEBUG [3740]: Closing database connection -- 03:08:25.031 SQL [3740]: pgsql_close() -- 03:08:25.026 DEBUG [3741]: Database connection successful -- 03:08:25.026 INFO [3741]: _SERVER found -- 03:08:25.026 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 03:08:25.026 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:25.026 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:25.026 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 03:08:25.026 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:25.037 INFO [3741]: COREGRADE is stopping... -- 03:08:25.037 DEBUG [3741]: Closing database connection -- 03:08:25.037 SQL [3741]: pgsql_close() -- 03:08:25.066 INFO [3800]: COREGRADE is starting... -- 03:08:25.066 INFO [3800]: Version from config: 1.0 -- 03:08:25.066 DEBUG [3800]: Connecting to database... -- 03:08:25.066 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:25.066 SQL [3800]: pgsql_db_connect() -- 03:08:25.070 DEBUG [3800]: Database connection successful -- 03:08:25.070 INFO [3800]: _SERVER found -- 03:08:25.070 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 03:08:25.070 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:25.070 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:25.070 INFO [3800]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 03:08:25.070 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:25.082 INFO [3800]: COREGRADE is stopping... -- 03:08:25.082 DEBUG [3800]: Closing database connection -- 03:08:25.082 SQL [3800]: pgsql_close() -- 03:08:25.096 INFO [3740]: COREGRADE is starting... -- 03:08:25.096 INFO [3740]: Version from config: 1.0 -- 03:08:25.096 DEBUG [3740]: Connecting to database... -- 03:08:25.096 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:25.096 SQL [3740]: pgsql_db_connect() -- 03:08:25.103 INFO [3741]: COREGRADE is starting... -- 03:08:25.103 INFO [3741]: Version from config: 1.0 -- 03:08:25.103 DEBUG [3741]: Connecting to database... -- 03:08:25.103 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:25.103 SQL [3741]: pgsql_db_connect() -- 03:08:25.100 DEBUG [3740]: Database connection successful -- 03:08:25.100 INFO [3740]: _SERVER found -- 03:08:25.100 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 03:08:25.100 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:25.100 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:25.100 INFO [3740]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 03:08:25.100 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:25.112 INFO [3740]: COREGRADE is stopping... -- 03:08:25.112 DEBUG [3740]: Closing database connection -- 03:08:25.112 SQL [3740]: pgsql_close() -- 03:08:25.108 DEBUG [3741]: Database connection successful -- 03:08:25.108 INFO [3741]: _SERVER found -- 03:08:25.108 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 03:08:25.108 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:25.108 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:25.108 INFO [3741]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 03:08:25.108 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:25.119 INFO [3741]: COREGRADE is stopping... -- 03:08:25.119 DEBUG [3741]: Closing database connection -- 03:08:25.119 SQL [3741]: pgsql_close() -- 03:08:25.151 INFO [3800]: COREGRADE is starting... -- 03:08:25.151 INFO [3800]: Version from config: 1.0 -- 03:08:25.151 DEBUG [3800]: Connecting to database... -- 03:08:25.151 DEBUG [3800]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:25.151 SQL [3800]: pgsql_db_connect() -- 03:08:25.155 DEBUG [3800]: Database connection successful -- 03:08:25.155 INFO [3800]: _SERVER found -- 03:08:25.155 INFO [3800]: REMOTE_ADDR = 10.0.0.15 -- 03:08:25.155 INFO [3800]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:25.155 INFO [3800]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:25.155 INFO [3800]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 03:08:25.155 INFO [3800]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:25.167 INFO [3800]: COREGRADE is stopping... -- 03:08:25.167 DEBUG [3800]: Closing database connection -- 03:08:25.167 SQL [3800]: pgsql_close() -- 03:08:25.176 INFO [3740]: COREGRADE is starting... -- 03:08:25.177 INFO [3740]: Version from config: 1.0 -- 03:08:25.177 DEBUG [3740]: Connecting to database... -- 03:08:25.177 DEBUG [3740]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:25.177 SQL [3740]: pgsql_db_connect() -- 03:08:25.184 INFO [3741]: COREGRADE is starting... -- 03:08:25.185 INFO [3741]: Version from config: 1.0 -- 03:08:25.185 DEBUG [3741]: Connecting to database... -- 03:08:25.185 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:25.185 SQL [3741]: pgsql_db_connect() -- 03:08:25.181 DEBUG [3740]: Database connection successful -- 03:08:25.181 INFO [3740]: _SERVER found -- 03:08:25.181 INFO [3740]: REMOTE_ADDR = 10.0.0.15 -- 03:08:25.181 INFO [3740]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:25.181 INFO [3740]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:25.181 INFO [3740]: QUERY_STRING = /assets/customjs/general.js -- 03:08:25.181 INFO [3740]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:25.192 INFO [3740]: COREGRADE is stopping... -- 03:08:25.192 DEBUG [3740]: Closing database connection -- 03:08:25.192 SQL [3740]: pgsql_close() -- 03:08:25.189 DEBUG [3741]: Database connection successful -- 03:08:25.189 INFO [3741]: _SERVER found -- 03:08:25.189 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 03:08:25.189 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:25.189 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:25.189 INFO [3741]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 03:08:25.189 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:25.200 INFO [3741]: COREGRADE is stopping... -- 03:08:25.200 DEBUG [3741]: Closing database connection -- 03:08:25.200 SQL [3741]: pgsql_close() -- 03:08:25.266 INFO [3741]: COREGRADE is starting... -- 03:08:25.266 INFO [3741]: Version from config: 1.0 -- 03:08:25.266 DEBUG [3741]: Connecting to database... -- 03:08:25.266 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:25.266 SQL [3741]: pgsql_db_connect() -- 03:08:25.270 DEBUG [3741]: Database connection successful -- 03:08:25.270 INFO [3741]: _SERVER found -- 03:08:25.270 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 03:08:25.270 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:25.270 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:25.270 INFO [3741]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 03:08:25.270 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:25.282 INFO [3741]: COREGRADE is stopping... -- 03:08:25.282 DEBUG [3741]: Closing database connection -- 03:08:25.282 SQL [3741]: pgsql_close() -- 03:08:25.349 INFO [3741]: COREGRADE is starting... -- 03:08:25.349 INFO [3741]: Version from config: 1.0 -- 03:08:25.349 DEBUG [3741]: Connecting to database... -- 03:08:25.349 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:25.349 SQL [3741]: pgsql_db_connect() -- 03:08:25.353 DEBUG [3741]: Database connection successful -- 03:08:25.353 INFO [3741]: _SERVER found -- 03:08:25.353 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 03:08:25.353 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:25.353 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:25.353 INFO [3741]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 03:08:25.353 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:25.365 INFO [3741]: COREGRADE is stopping... -- 03:08:25.365 DEBUG [3741]: Closing database connection -- 03:08:25.365 SQL [3741]: pgsql_close() -- 03:08:25.431 INFO [3741]: COREGRADE is starting... -- 03:08:25.431 INFO [3741]: Version from config: 1.0 -- 03:08:25.431 DEBUG [3741]: Connecting to database... -- 03:08:25.431 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:25.431 SQL [3741]: pgsql_db_connect() -- 03:08:25.435 DEBUG [3741]: Database connection successful -- 03:08:25.435 INFO [3741]: _SERVER found -- 03:08:25.435 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 03:08:25.435 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:25.435 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:25.435 INFO [3741]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 03:08:25.435 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:25.446 INFO [3741]: COREGRADE is stopping... -- 03:08:25.446 DEBUG [3741]: Closing database connection -- 03:08:25.447 SQL [3741]: pgsql_close() -- 03:08:25.512 INFO [3741]: COREGRADE is starting... -- 03:08:25.512 INFO [3741]: Version from config: 1.0 -- 03:08:25.512 DEBUG [3741]: Connecting to database... -- 03:08:25.512 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:25.512 SQL [3741]: pgsql_db_connect() -- 03:08:25.516 DEBUG [3741]: Database connection successful -- 03:08:25.517 INFO [3741]: _SERVER found -- 03:08:25.517 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 03:08:25.517 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:25.517 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:25.517 INFO [3741]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 03:08:25.517 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:25.528 INFO [3741]: COREGRADE is stopping... -- 03:08:25.528 DEBUG [3741]: Closing database connection -- 03:08:25.528 SQL [3741]: pgsql_close() -- 03:08:25.594 INFO [3741]: COREGRADE is starting... -- 03:08:25.594 INFO [3741]: Version from config: 1.0 -- 03:08:25.594 DEBUG [3741]: Connecting to database... -- 03:08:25.594 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:25.594 SQL [3741]: pgsql_db_connect() -- 03:08:25.598 DEBUG [3741]: Database connection successful -- 03:08:25.598 INFO [3741]: _SERVER found -- 03:08:25.598 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 03:08:25.598 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:25.598 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:25.598 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 03:08:25.598 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:25.610 INFO [3741]: COREGRADE is stopping... -- 03:08:25.610 DEBUG [3741]: Closing database connection -- 03:08:25.610 SQL [3741]: pgsql_close() -- 03:08:25.675 INFO [3741]: COREGRADE is starting... -- 03:08:25.676 INFO [3741]: Version from config: 1.0 -- 03:08:25.676 DEBUG [3741]: Connecting to database... -- 03:08:25.676 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:25.676 SQL [3741]: pgsql_db_connect() -- 03:08:25.680 DEBUG [3741]: Database connection successful -- 03:08:25.680 INFO [3741]: _SERVER found -- 03:08:25.680 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 03:08:25.680 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:25.680 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:25.680 INFO [3741]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 03:08:25.680 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:25.691 INFO [3741]: COREGRADE is stopping... -- 03:08:25.691 DEBUG [3741]: Closing database connection -- 03:08:25.691 SQL [3741]: pgsql_close() -- 03:08:25.757 INFO [3741]: COREGRADE is starting... -- 03:08:25.758 INFO [3741]: Version from config: 1.0 -- 03:08:25.758 DEBUG [3741]: Connecting to database... -- 03:08:25.758 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:25.758 SQL [3741]: pgsql_db_connect() -- 03:08:25.762 DEBUG [3741]: Database connection successful -- 03:08:25.762 INFO [3741]: _SERVER found -- 03:08:25.762 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 03:08:25.762 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:25.762 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:25.762 INFO [3741]: QUERY_STRING = /assets/js/pages/dashboard.js -- 03:08:25.762 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:25.773 INFO [3741]: COREGRADE is stopping... -- 03:08:25.773 DEBUG [3741]: Closing database connection -- 03:08:25.773 SQL [3741]: pgsql_close() -- 03:08:25.840 INFO [3741]: COREGRADE is starting... -- 03:08:25.840 INFO [3741]: Version from config: 1.0 -- 03:08:25.840 DEBUG [3741]: Connecting to database... -- 03:08:25.840 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:25.840 SQL [3741]: pgsql_db_connect() -- 03:08:25.844 DEBUG [3741]: Database connection successful -- 03:08:25.844 INFO [3741]: _SERVER found -- 03:08:25.844 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 03:08:25.844 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:25.844 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:25.844 INFO [3741]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 03:08:25.844 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:25.855 INFO [3741]: COREGRADE is stopping... -- 03:08:25.855 DEBUG [3741]: Closing database connection -- 03:08:25.855 SQL [3741]: pgsql_close() -- 03:08:25.921 INFO [3741]: COREGRADE is starting... -- 03:08:25.921 INFO [3741]: Version from config: 1.0 -- 03:08:25.921 DEBUG [3741]: Connecting to database... -- 03:08:25.921 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:25.921 SQL [3741]: pgsql_db_connect() -- 03:08:25.925 DEBUG [3741]: Database connection successful -- 03:08:25.925 INFO [3741]: _SERVER found -- 03:08:25.925 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 03:08:25.925 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:25.925 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:25.925 INFO [3741]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 03:08:25.925 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:25.936 INFO [3741]: COREGRADE is stopping... -- 03:08:25.936 DEBUG [3741]: Closing database connection -- 03:08:25.936 SQL [3741]: pgsql_close() -- 03:08:26.002 INFO [3741]: COREGRADE is starting... -- 03:08:26.002 INFO [3741]: Version from config: 1.0 -- 03:08:26.002 DEBUG [3741]: Connecting to database... -- 03:08:26.002 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:26.002 SQL [3741]: pgsql_db_connect() -- 03:08:26.006 DEBUG [3741]: Database connection successful -- 03:08:26.006 INFO [3741]: _SERVER found -- 03:08:26.006 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 03:08:26.006 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:26.006 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:26.006 INFO [3741]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 03:08:26.006 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:26.018 INFO [3741]: COREGRADE is stopping... -- 03:08:26.018 DEBUG [3741]: Closing database connection -- 03:08:26.018 SQL [3741]: pgsql_close() -- 03:08:26.084 INFO [3741]: COREGRADE is starting... -- 03:08:26.084 INFO [3741]: Version from config: 1.0 -- 03:08:26.084 DEBUG [3741]: Connecting to database... -- 03:08:26.084 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:26.084 SQL [3741]: pgsql_db_connect() -- 03:08:26.088 DEBUG [3741]: Database connection successful -- 03:08:26.088 INFO [3741]: _SERVER found -- 03:08:26.088 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 03:08:26.088 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:26.088 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:26.088 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 03:08:26.088 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:26.100 INFO [3741]: COREGRADE is stopping... -- 03:08:26.100 DEBUG [3741]: Closing database connection -- 03:08:26.100 SQL [3741]: pgsql_close() -- 03:08:26.166 INFO [3741]: COREGRADE is starting... -- 03:08:26.166 INFO [3741]: Version from config: 1.0 -- 03:08:26.166 DEBUG [3741]: Connecting to database... -- 03:08:26.166 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:26.166 SQL [3741]: pgsql_db_connect() -- 03:08:26.170 DEBUG [3741]: Database connection successful -- 03:08:26.170 INFO [3741]: _SERVER found -- 03:08:26.170 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 03:08:26.170 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:26.170 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:26.170 INFO [3741]: QUERY_STRING = /assets/js/pages/picker_date.js -- 03:08:26.170 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:26.182 INFO [3741]: COREGRADE is stopping... -- 03:08:26.182 DEBUG [3741]: Closing database connection -- 03:08:26.182 SQL [3741]: pgsql_close() -- 03:08:26.248 INFO [3741]: COREGRADE is starting... -- 03:08:26.248 INFO [3741]: Version from config: 1.0 -- 03:08:26.248 DEBUG [3741]: Connecting to database... -- 03:08:26.248 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:26.248 SQL [3741]: pgsql_db_connect() -- 03:08:26.252 DEBUG [3741]: Database connection successful -- 03:08:26.252 INFO [3741]: _SERVER found -- 03:08:26.252 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 03:08:26.252 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:26.252 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:26.252 INFO [3741]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 03:08:26.252 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:26.263 INFO [3741]: COREGRADE is stopping... -- 03:08:26.263 DEBUG [3741]: Closing database connection -- 03:08:26.263 SQL [3741]: pgsql_close() -- 03:08:26.329 INFO [3741]: COREGRADE is starting... -- 03:08:26.329 INFO [3741]: Version from config: 1.0 -- 03:08:26.329 DEBUG [3741]: Connecting to database... -- 03:08:26.329 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:26.329 SQL [3741]: pgsql_db_connect() -- 03:08:26.334 DEBUG [3741]: Database connection successful -- 03:08:26.334 INFO [3741]: _SERVER found -- 03:08:26.334 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 03:08:26.334 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:26.334 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:26.334 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 03:08:26.334 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:26.345 INFO [3741]: COREGRADE is stopping... -- 03:08:26.345 DEBUG [3741]: Closing database connection -- 03:08:26.345 SQL [3741]: pgsql_close() -- 03:08:26.411 INFO [3741]: COREGRADE is starting... -- 03:08:26.412 INFO [3741]: Version from config: 1.0 -- 03:08:26.412 DEBUG [3741]: Connecting to database... -- 03:08:26.412 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:26.412 SQL [3741]: pgsql_db_connect() -- 03:08:26.416 DEBUG [3741]: Database connection successful -- 03:08:26.416 INFO [3741]: _SERVER found -- 03:08:26.416 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 03:08:26.416 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:26.416 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:26.416 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 03:08:26.416 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:26.428 INFO [3741]: COREGRADE is stopping... -- 03:08:26.428 DEBUG [3741]: Closing database connection -- 03:08:26.428 SQL [3741]: pgsql_close() -- 03:08:26.494 INFO [3741]: COREGRADE is starting... -- 03:08:26.495 INFO [3741]: Version from config: 1.0 -- 03:08:26.495 DEBUG [3741]: Connecting to database... -- 03:08:26.495 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:26.495 SQL [3741]: pgsql_db_connect() -- 03:08:26.499 DEBUG [3741]: Database connection successful -- 03:08:26.499 INFO [3741]: _SERVER found -- 03:08:26.499 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 03:08:26.499 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:26.499 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:26.499 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 03:08:26.499 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:26.510 INFO [3741]: COREGRADE is stopping... -- 03:08:26.511 DEBUG [3741]: Closing database connection -- 03:08:26.511 SQL [3741]: pgsql_close() -- 03:08:26.576 INFO [3741]: COREGRADE is starting... -- 03:08:26.577 INFO [3741]: Version from config: 1.0 -- 03:08:26.577 DEBUG [3741]: Connecting to database... -- 03:08:26.577 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:26.577 SQL [3741]: pgsql_db_connect() -- 03:08:26.581 DEBUG [3741]: Database connection successful -- 03:08:26.581 INFO [3741]: _SERVER found -- 03:08:26.581 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 03:08:26.581 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:26.581 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:26.581 INFO [3741]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 03:08:26.581 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:26.592 INFO [3741]: COREGRADE is stopping... -- 03:08:26.592 DEBUG [3741]: Closing database connection -- 03:08:26.592 SQL [3741]: pgsql_close() -- 03:08:26.668 INFO [3741]: COREGRADE is starting... -- 03:08:26.669 INFO [3741]: Version from config: 1.0 -- 03:08:26.669 DEBUG [3741]: Connecting to database... -- 03:08:26.669 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:26.669 SQL [3741]: pgsql_db_connect() -- 03:08:26.673 DEBUG [3741]: Database connection successful -- 03:08:26.673 INFO [3741]: _SERVER found -- 03:08:26.673 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 03:08:26.673 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:26.673 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:26.673 INFO [3741]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 03:08:26.673 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:26.684 INFO [3741]: COREGRADE is stopping... -- 03:08:26.684 DEBUG [3741]: Closing database connection -- 03:08:26.684 SQL [3741]: pgsql_close() -- 03:08:26.750 INFO [3741]: COREGRADE is starting... -- 03:08:26.750 INFO [3741]: Version from config: 1.0 -- 03:08:26.750 DEBUG [3741]: Connecting to database... -- 03:08:26.750 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:26.750 SQL [3741]: pgsql_db_connect() -- 03:08:26.754 DEBUG [3741]: Database connection successful -- 03:08:26.754 INFO [3741]: _SERVER found -- 03:08:26.754 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 03:08:26.754 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:26.754 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:26.754 INFO [3741]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 03:08:26.754 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:26.766 INFO [3741]: COREGRADE is stopping... -- 03:08:26.766 DEBUG [3741]: Closing database connection -- 03:08:26.766 SQL [3741]: pgsql_close() -- 03:08:26.833 INFO [3741]: COREGRADE is starting... -- 03:08:26.833 INFO [3741]: Version from config: 1.0 -- 03:08:26.833 DEBUG [3741]: Connecting to database... -- 03:08:26.833 DEBUG [3741]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:08:26.833 SQL [3741]: pgsql_db_connect() -- 03:08:26.838 DEBUG [3741]: Database connection successful -- 03:08:26.838 INFO [3741]: _SERVER found -- 03:08:26.838 INFO [3741]: REMOTE_ADDR = 10.0.0.15 -- 03:08:26.838 INFO [3741]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:08:26.838 INFO [3741]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:08:26.838 INFO [3741]: QUERY_STRING = /assets/customjs/general.js -- 03:08:26.838 INFO [3741]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:08:26.849 INFO [3741]: COREGRADE is stopping... -- 03:08:26.849 DEBUG [3741]: Closing database connection -- 03:08:26.849 SQL [3741]: pgsql_close() -- 03:12:13.891 INFO [3738]: COREGRADE is starting... -- 03:12:13.892 INFO [3738]: Version from config: 1.0 -- 03:12:13.892 DEBUG [3738]: Connecting to database... -- 03:12:13.892 DEBUG [3738]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:12:13.892 SQL [3738]: pgsql_db_connect() -- 03:12:13.897 DEBUG [3738]: Database connection successful -- 03:12:13.897 INFO [3738]: _SERVER found -- 03:12:13.897 INFO [3738]: REMOTE_ADDR = 10.0.0.15 -- 03:12:13.897 INFO [3738]: SERVER_NAME = oameye.works.coregrade.com -- 03:12:13.897 INFO [3738]: QUERY_STRING = /.well-known/acme-challenge/ceB8JsIx18F_dEzT-ZiTKvG1p4_2aim7xT2kUo716Nw -- 03:12:13.897 INFO [3738]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 03:12:13.911 INFO [3738]: COREGRADE is stopping... -- 03:12:13.911 DEBUG [3738]: Closing database connection -- 03:12:13.911 SQL [3738]: pgsql_close() -- 03:12:14.068 INFO [3742]: COREGRADE is starting... -- 03:12:14.068 INFO [3742]: Version from config: 1.0 -- 03:12:14.068 DEBUG [3742]: Connecting to database... -- 03:12:14.068 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:12:14.068 SQL [3742]: pgsql_db_connect() -- 03:12:14.073 DEBUG [3742]: Database connection successful -- 03:12:14.073 INFO [3742]: _SERVER found -- 03:12:14.073 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 03:12:14.073 INFO [3742]: SERVER_NAME = oameye.works.coregrade.com -- 03:12:14.073 INFO [3742]: QUERY_STRING = /.well-known/acme-challenge/ceB8JsIx18F_dEzT-ZiTKvG1p4_2aim7xT2kUo716Nw -- 03:12:14.073 INFO [3742]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 03:12:14.086 INFO [3742]: COREGRADE is stopping... -- 03:12:14.086 DEBUG [3742]: Closing database connection -- 03:12:14.086 SQL [3742]: pgsql_close() -- 03:12:14.234 INFO [3742]: COREGRADE is starting... -- 03:12:14.234 INFO [3742]: Version from config: 1.0 -- 03:12:14.234 DEBUG [3742]: Connecting to database... -- 03:12:14.234 DEBUG [3742]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:12:14.234 SQL [3742]: pgsql_db_connect() -- 03:12:14.239 DEBUG [3742]: Database connection successful -- 03:12:14.239 INFO [3742]: _SERVER found -- 03:12:14.239 INFO [3742]: REMOTE_ADDR = 10.0.0.15 -- 03:12:14.239 INFO [3742]: SERVER_NAME = oameye.works.coregrade.com -- 03:12:14.239 INFO [3742]: QUERY_STRING = /.well-known/acme-challenge/ceB8JsIx18F_dEzT-ZiTKvG1p4_2aim7xT2kUo716Nw -- 03:12:14.239 INFO [3742]: HTTP_X_FORWARDED_FOR = 52.28.236.88 -- 03:12:14.251 INFO [3742]: COREGRADE is stopping... -- 03:12:14.251 DEBUG [3742]: Closing database connection -- 03:12:14.251 SQL [3742]: pgsql_close() -- 03:28:27.065 INFO [12246]: COREGRADE is starting... -- 03:28:27.066 INFO [12246]: Version from config: 1.0 -- 03:28:27.066 DEBUG [12246]: Connecting to database... -- 03:28:27.066 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:27.066 SQL [12246]: pgsql_db_connect() -- 03:28:27.070 DEBUG [12246]: Database connection successful -- 03:28:27.070 INFO [12246]: _SERVER found -- 03:28:27.070 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 03:28:27.070 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:27.070 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v3mj1nojni5h7sc3qoe23mtf8qs8jn85 -- 03:28:27.070 INFO [12246]: QUERY_STRING = /logout -- 03:28:27.070 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:27.109 INFO [12246]: COREGRADE is stopping... -- 03:28:27.109 DEBUG [12246]: Closing database connection -- 03:28:27.109 SQL [12246]: pgsql_close() -- 03:28:27.187 INFO [12246]: COREGRADE is starting... -- 03:28:27.187 INFO [12246]: Version from config: 1.0 -- 03:28:27.187 DEBUG [12246]: Connecting to database... -- 03:28:27.187 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:27.187 SQL [12246]: pgsql_db_connect() -- 03:28:27.192 DEBUG [12246]: Database connection successful -- 03:28:27.192 INFO [12246]: _SERVER found -- 03:28:27.192 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 03:28:27.192 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:27.192 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:27.192 INFO [12246]: QUERY_STRING = /start -- 03:28:27.192 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:27.232 INFO [12246]: COREGRADE is stopping... -- 03:28:27.232 DEBUG [12246]: Closing database connection -- 03:28:27.232 SQL [12246]: pgsql_close() -- 03:28:27.366 INFO [12247]: COREGRADE is starting... -- 03:28:27.366 INFO [12247]: Version from config: 1.0 -- 03:28:27.366 DEBUG [12247]: Connecting to database... -- 03:28:27.366 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:27.366 SQL [12247]: pgsql_db_connect() -- 03:28:27.380 INFO [12246]: COREGRADE is starting... -- 03:28:27.381 INFO [12246]: Version from config: 1.0 -- 03:28:27.381 DEBUG [12246]: Connecting to database... -- 03:28:27.381 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:27.381 SQL [12246]: pgsql_db_connect() -- 03:28:27.370 DEBUG [12247]: Database connection successful -- 03:28:27.370 INFO [12247]: _SERVER found -- 03:28:27.370 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 03:28:27.370 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:27.370 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:27.370 INFO [12247]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 03:28:27.370 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:27.386 INFO [12247]: COREGRADE is stopping... -- 03:28:27.386 DEBUG [12247]: Closing database connection -- 03:28:27.386 SQL [12247]: pgsql_close() -- 03:28:27.385 DEBUG [12246]: Database connection successful -- 03:28:27.385 INFO [12246]: _SERVER found -- 03:28:27.385 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 03:28:27.385 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:27.385 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:27.385 INFO [12246]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 03:28:27.385 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:27.397 INFO [12246]: COREGRADE is stopping... -- 03:28:27.397 DEBUG [12246]: Closing database connection -- 03:28:27.397 SQL [12246]: pgsql_close() -- 03:28:27.425 INFO [12246]: COREGRADE is starting... -- 03:28:27.425 INFO [12246]: Version from config: 1.0 -- 03:28:27.425 DEBUG [12246]: Connecting to database... -- 03:28:27.425 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:27.425 SQL [12246]: pgsql_db_connect() -- 03:28:27.429 DEBUG [12246]: Database connection successful -- 03:28:27.429 INFO [12246]: _SERVER found -- 03:28:27.429 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 03:28:27.429 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:27.429 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:27.429 INFO [12246]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 03:28:27.429 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:27.441 INFO [12246]: COREGRADE is stopping... -- 03:28:27.441 DEBUG [12246]: Closing database connection -- 03:28:27.441 SQL [12246]: pgsql_close() -- 03:28:27.465 INFO [12246]: COREGRADE is starting... -- 03:28:27.465 INFO [12247]: COREGRADE is starting... -- 03:28:27.465 INFO [12246]: Version from config: 1.0 -- 03:28:27.465 DEBUG [12246]: Connecting to database... -- 03:28:27.465 INFO [12247]: Version from config: 1.0 -- 03:28:27.465 DEBUG [12247]: Connecting to database... -- 03:28:27.465 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:27.465 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:27.465 SQL [12246]: pgsql_db_connect() -- 03:28:27.465 SQL [12247]: pgsql_db_connect() -- 03:28:27.469 DEBUG [12246]: Database connection successful -- 03:28:27.469 INFO [12246]: _SERVER found -- 03:28:27.469 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 03:28:27.469 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:27.469 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:27.469 INFO [12246]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 03:28:27.469 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:27.480 INFO [12246]: COREGRADE is stopping... -- 03:28:27.480 DEBUG [12246]: Closing database connection -- 03:28:27.480 SQL [12246]: pgsql_close() -- 03:28:27.469 DEBUG [12247]: Database connection successful -- 03:28:27.469 INFO [12247]: _SERVER found -- 03:28:27.469 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 03:28:27.469 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:27.469 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:27.469 INFO [12247]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 03:28:27.469 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:27.481 INFO [12247]: COREGRADE is stopping... -- 03:28:27.481 DEBUG [12247]: Closing database connection -- 03:28:27.481 SQL [12247]: pgsql_close() -- 03:28:27.518 INFO [12246]: COREGRADE is starting... -- 03:28:27.518 INFO [12246]: Version from config: 1.0 -- 03:28:27.518 DEBUG [12246]: Connecting to database... -- 03:28:27.518 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:27.518 SQL [12246]: pgsql_db_connect() -- 03:28:27.522 DEBUG [12246]: Database connection successful -- 03:28:27.522 INFO [12246]: _SERVER found -- 03:28:27.522 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 03:28:27.522 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:27.522 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:27.522 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 03:28:27.522 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:27.534 INFO [12246]: COREGRADE is stopping... -- 03:28:27.534 DEBUG [12246]: Closing database connection -- 03:28:27.534 SQL [12246]: pgsql_close() -- 03:28:27.550 INFO [12246]: COREGRADE is starting... -- 03:28:27.550 INFO [12246]: Version from config: 1.0 -- 03:28:27.550 DEBUG [12246]: Connecting to database... -- 03:28:27.550 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:27.550 SQL [12246]: pgsql_db_connect() -- 03:28:27.559 INFO [12247]: COREGRADE is starting... -- 03:28:27.559 INFO [12247]: Version from config: 1.0 -- 03:28:27.559 DEBUG [12247]: Connecting to database... -- 03:28:27.559 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:27.559 SQL [12247]: pgsql_db_connect() -- 03:28:27.554 DEBUG [12246]: Database connection successful -- 03:28:27.554 INFO [12246]: _SERVER found -- 03:28:27.554 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 03:28:27.554 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:27.554 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:27.554 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 03:28:27.554 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:27.565 INFO [12246]: COREGRADE is stopping... -- 03:28:27.565 DEBUG [12246]: Closing database connection -- 03:28:27.565 SQL [12246]: pgsql_close() -- 03:28:27.563 DEBUG [12247]: Database connection successful -- 03:28:27.563 INFO [12247]: _SERVER found -- 03:28:27.563 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 03:28:27.563 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:27.563 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:27.563 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 03:28:27.563 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:27.575 INFO [12247]: COREGRADE is stopping... -- 03:28:27.575 DEBUG [12247]: Closing database connection -- 03:28:27.575 SQL [12247]: pgsql_close() -- 03:28:27.611 INFO [12246]: COREGRADE is starting... -- 03:28:27.612 INFO [12246]: Version from config: 1.0 -- 03:28:27.612 DEBUG [12246]: Connecting to database... -- 03:28:27.612 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:27.612 SQL [12246]: pgsql_db_connect() -- 03:28:27.616 DEBUG [12246]: Database connection successful -- 03:28:27.616 INFO [12246]: _SERVER found -- 03:28:27.616 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 03:28:27.616 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:27.616 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:27.616 INFO [12246]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 03:28:27.616 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:27.627 INFO [12246]: COREGRADE is stopping... -- 03:28:27.627 DEBUG [12246]: Closing database connection -- 03:28:27.627 SQL [12246]: pgsql_close() -- 03:28:27.632 INFO [12246]: COREGRADE is starting... -- 03:28:27.632 INFO [12246]: Version from config: 1.0 -- 03:28:27.632 DEBUG [12246]: Connecting to database... -- 03:28:27.632 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:27.632 SQL [12246]: pgsql_db_connect() -- 03:28:27.636 DEBUG [12246]: Database connection successful -- 03:28:27.636 INFO [12246]: _SERVER found -- 03:28:27.636 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 03:28:27.636 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:27.636 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:27.636 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 03:28:27.636 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:27.647 INFO [12246]: COREGRADE is stopping... -- 03:28:27.647 DEBUG [12246]: Closing database connection -- 03:28:27.647 SQL [12246]: pgsql_close() -- 03:28:27.647 INFO [12247]: COREGRADE is starting... -- 03:28:27.648 INFO [12247]: Version from config: 1.0 -- 03:28:27.648 DEBUG [12247]: Connecting to database... -- 03:28:27.648 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:27.648 SQL [12247]: pgsql_db_connect() -- 03:28:27.652 DEBUG [12247]: Database connection successful -- 03:28:27.652 INFO [12247]: _SERVER found -- 03:28:27.652 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 03:28:27.652 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:27.652 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:27.652 INFO [12247]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 03:28:27.652 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:27.663 INFO [12247]: COREGRADE is stopping... -- 03:28:27.663 DEBUG [12247]: Closing database connection -- 03:28:27.663 SQL [12247]: pgsql_close() -- 03:28:27.705 INFO [12246]: COREGRADE is starting... -- 03:28:27.706 INFO [12246]: Version from config: 1.0 -- 03:28:27.706 DEBUG [12246]: Connecting to database... -- 03:28:27.706 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:27.706 SQL [12246]: pgsql_db_connect() -- 03:28:27.715 INFO [12248]: COREGRADE is starting... -- 03:28:27.716 INFO [12248]: Version from config: 1.0 -- 03:28:27.716 DEBUG [12248]: Connecting to database... -- 03:28:27.716 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:27.716 SQL [12248]: pgsql_db_connect() -- 03:28:27.710 DEBUG [12246]: Database connection successful -- 03:28:27.710 INFO [12246]: _SERVER found -- 03:28:27.710 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 03:28:27.710 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:27.710 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:27.710 INFO [12246]: QUERY_STRING = /assets/js/pages/dashboard.js -- 03:28:27.710 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:27.721 INFO [12246]: COREGRADE is stopping... -- 03:28:27.721 DEBUG [12246]: Closing database connection -- 03:28:27.721 SQL [12246]: pgsql_close() -- 03:28:27.733 INFO [12247]: COREGRADE is starting... -- 03:28:27.733 INFO [12247]: Version from config: 1.0 -- 03:28:27.733 DEBUG [12247]: Connecting to database... -- 03:28:27.733 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:27.733 SQL [12247]: pgsql_db_connect() -- 03:28:27.720 DEBUG [12248]: Database connection successful -- 03:28:27.720 INFO [12248]: _SERVER found -- 03:28:27.720 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 03:28:27.720 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:27.720 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:27.720 INFO [12248]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 03:28:27.720 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:27.735 INFO [12248]: COREGRADE is stopping... -- 03:28:27.735 DEBUG [12248]: Closing database connection -- 03:28:27.735 SQL [12248]: pgsql_close() -- 03:28:27.737 DEBUG [12247]: Database connection successful -- 03:28:27.737 INFO [12247]: _SERVER found -- 03:28:27.737 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 03:28:27.737 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:27.737 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:27.737 INFO [12247]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 03:28:27.737 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:27.749 INFO [12247]: COREGRADE is stopping... -- 03:28:27.749 DEBUG [12247]: Closing database connection -- 03:28:27.749 SQL [12247]: pgsql_close() -- 03:28:27.789 INFO [12248]: COREGRADE is starting... -- 03:28:27.789 INFO [12248]: Version from config: 1.0 -- 03:28:27.789 DEBUG [12248]: Connecting to database... -- 03:28:27.789 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:27.789 SQL [12248]: pgsql_db_connect() -- 03:28:27.800 INFO [12246]: COREGRADE is starting... -- 03:28:27.801 INFO [12246]: Version from config: 1.0 -- 03:28:27.801 DEBUG [12246]: Connecting to database... -- 03:28:27.801 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:27.801 SQL [12246]: pgsql_db_connect() -- 03:28:27.793 DEBUG [12248]: Database connection successful -- 03:28:27.793 INFO [12248]: _SERVER found -- 03:28:27.793 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 03:28:27.793 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:27.793 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:27.793 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 03:28:27.793 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:27.804 INFO [12248]: COREGRADE is stopping... -- 03:28:27.804 DEBUG [12248]: Closing database connection -- 03:28:27.805 SQL [12248]: pgsql_close() -- 03:28:27.805 DEBUG [12246]: Database connection successful -- 03:28:27.805 INFO [12246]: _SERVER found -- 03:28:27.805 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 03:28:27.805 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:27.805 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:27.805 INFO [12246]: QUERY_STRING = /assets/js/pages/picker_date.js -- 03:28:27.805 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:27.816 INFO [12246]: COREGRADE is stopping... -- 03:28:27.816 DEBUG [12246]: Closing database connection -- 03:28:27.816 SQL [12246]: pgsql_close() -- 03:28:27.817 INFO [12247]: COREGRADE is starting... -- 03:28:27.817 INFO [12247]: Version from config: 1.0 -- 03:28:27.817 DEBUG [12247]: Connecting to database... -- 03:28:27.817 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:27.818 SQL [12247]: pgsql_db_connect() -- 03:28:27.821 DEBUG [12247]: Database connection successful -- 03:28:27.821 INFO [12247]: _SERVER found -- 03:28:27.821 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 03:28:27.821 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:27.821 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:27.821 INFO [12247]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 03:28:27.821 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:27.833 INFO [12247]: COREGRADE is stopping... -- 03:28:27.833 DEBUG [12247]: Closing database connection -- 03:28:27.833 SQL [12247]: pgsql_close() -- 03:28:27.872 INFO [12246]: COREGRADE is starting... -- 03:28:27.872 INFO [12246]: Version from config: 1.0 -- 03:28:27.872 DEBUG [12246]: Connecting to database... -- 03:28:27.872 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:27.872 SQL [12246]: pgsql_db_connect() -- 03:28:27.881 INFO [12248]: COREGRADE is starting... -- 03:28:27.882 INFO [12248]: Version from config: 1.0 -- 03:28:27.882 DEBUG [12248]: Connecting to database... -- 03:28:27.882 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:27.882 SQL [12248]: pgsql_db_connect() -- 03:28:27.876 DEBUG [12246]: Database connection successful -- 03:28:27.876 INFO [12246]: _SERVER found -- 03:28:27.876 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 03:28:27.876 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:27.876 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:27.876 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 03:28:27.876 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:27.888 INFO [12246]: COREGRADE is stopping... -- 03:28:27.888 DEBUG [12246]: Closing database connection -- 03:28:27.888 SQL [12246]: pgsql_close() -- 03:28:27.886 DEBUG [12248]: Database connection successful -- 03:28:27.886 INFO [12248]: _SERVER found -- 03:28:27.886 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 03:28:27.886 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:27.886 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:27.886 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 03:28:27.886 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:27.898 INFO [12248]: COREGRADE is stopping... -- 03:28:27.898 DEBUG [12248]: Closing database connection -- 03:28:27.898 SQL [12248]: pgsql_close() -- 03:28:27.901 INFO [12247]: COREGRADE is starting... -- 03:28:27.901 INFO [12247]: Version from config: 1.0 -- 03:28:27.901 DEBUG [12247]: Connecting to database... -- 03:28:27.901 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:27.901 SQL [12247]: pgsql_db_connect() -- 03:28:27.905 DEBUG [12247]: Database connection successful -- 03:28:27.905 INFO [12247]: _SERVER found -- 03:28:27.905 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 03:28:27.905 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:27.905 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:27.905 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 03:28:27.905 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:27.917 INFO [12247]: COREGRADE is stopping... -- 03:28:27.917 DEBUG [12247]: Closing database connection -- 03:28:27.917 SQL [12247]: pgsql_close() -- 03:28:27.955 INFO [12248]: COREGRADE is starting... -- 03:28:27.955 INFO [12248]: Version from config: 1.0 -- 03:28:27.955 DEBUG [12248]: Connecting to database... -- 03:28:27.955 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:27.955 SQL [12248]: pgsql_db_connect() -- 03:28:27.963 INFO [12246]: COREGRADE is starting... -- 03:28:27.963 INFO [12246]: Version from config: 1.0 -- 03:28:27.963 DEBUG [12246]: Connecting to database... -- 03:28:27.963 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:27.963 SQL [12246]: pgsql_db_connect() -- 03:28:27.959 DEBUG [12248]: Database connection successful -- 03:28:27.959 INFO [12248]: _SERVER found -- 03:28:27.959 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 03:28:27.959 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:27.959 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:27.959 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 03:28:27.959 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:27.970 INFO [12248]: COREGRADE is stopping... -- 03:28:27.970 DEBUG [12248]: Closing database connection -- 03:28:27.970 SQL [12248]: pgsql_close() -- 03:28:27.967 DEBUG [12246]: Database connection successful -- 03:28:27.967 INFO [12246]: _SERVER found -- 03:28:27.967 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 03:28:27.967 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:27.967 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:27.967 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 03:28:27.967 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:27.979 INFO [12246]: COREGRADE is stopping... -- 03:28:27.979 DEBUG [12246]: Closing database connection -- 03:28:27.979 SQL [12246]: pgsql_close() -- 03:28:27.985 INFO [12247]: COREGRADE is starting... -- 03:28:27.986 INFO [12247]: Version from config: 1.0 -- 03:28:27.986 DEBUG [12247]: Connecting to database... -- 03:28:27.986 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:27.986 SQL [12247]: pgsql_db_connect() -- 03:28:27.990 DEBUG [12247]: Database connection successful -- 03:28:27.990 INFO [12247]: _SERVER found -- 03:28:27.990 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 03:28:27.990 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:27.990 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:27.990 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 03:28:27.990 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:28.001 INFO [12247]: COREGRADE is stopping... -- 03:28:28.001 DEBUG [12247]: Closing database connection -- 03:28:28.001 SQL [12247]: pgsql_close() -- 03:28:28.037 INFO [12246]: COREGRADE is starting... -- 03:28:28.037 INFO [12246]: Version from config: 1.0 -- 03:28:28.037 DEBUG [12246]: Connecting to database... -- 03:28:28.037 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:28.037 SQL [12246]: pgsql_db_connect() -- 03:28:28.044 INFO [12248]: COREGRADE is starting... -- 03:28:28.044 INFO [12248]: Version from config: 1.0 -- 03:28:28.044 DEBUG [12248]: Connecting to database... -- 03:28:28.044 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:28.044 SQL [12248]: pgsql_db_connect() -- 03:28:28.041 DEBUG [12246]: Database connection successful -- 03:28:28.041 INFO [12246]: _SERVER found -- 03:28:28.041 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 03:28:28.041 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:28.041 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:28.041 INFO [12246]: QUERY_STRING = /assets/customjs/general.js -- 03:28:28.041 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:28.052 INFO [12246]: COREGRADE is stopping... -- 03:28:28.052 DEBUG [12246]: Closing database connection -- 03:28:28.052 SQL [12246]: pgsql_close() -- 03:28:28.048 DEBUG [12248]: Database connection successful -- 03:28:28.048 INFO [12248]: _SERVER found -- 03:28:28.048 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 03:28:28.048 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:28.048 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:28.048 INFO [12248]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 03:28:28.048 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:28.059 INFO [12248]: COREGRADE is stopping... -- 03:28:28.059 DEBUG [12248]: Closing database connection -- 03:28:28.059 SQL [12248]: pgsql_close() -- 03:28:28.125 INFO [12248]: COREGRADE is starting... -- 03:28:28.125 INFO [12248]: Version from config: 1.0 -- 03:28:28.125 DEBUG [12248]: Connecting to database... -- 03:28:28.125 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:28.125 SQL [12248]: pgsql_db_connect() -- 03:28:28.129 DEBUG [12248]: Database connection successful -- 03:28:28.129 INFO [12248]: _SERVER found -- 03:28:28.129 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 03:28:28.129 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:28.129 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:28.129 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 03:28:28.129 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:28.141 INFO [12248]: COREGRADE is stopping... -- 03:28:28.141 DEBUG [12248]: Closing database connection -- 03:28:28.141 SQL [12248]: pgsql_close() -- 03:28:28.207 INFO [12248]: COREGRADE is starting... -- 03:28:28.208 INFO [12248]: Version from config: 1.0 -- 03:28:28.208 DEBUG [12248]: Connecting to database... -- 03:28:28.208 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:28.208 SQL [12248]: pgsql_db_connect() -- 03:28:28.212 DEBUG [12248]: Database connection successful -- 03:28:28.212 INFO [12248]: _SERVER found -- 03:28:28.212 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 03:28:28.212 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:28.212 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:28.212 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 03:28:28.212 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:28.223 INFO [12248]: COREGRADE is stopping... -- 03:28:28.223 DEBUG [12248]: Closing database connection -- 03:28:28.223 SQL [12248]: pgsql_close() -- 03:28:28.289 INFO [12248]: COREGRADE is starting... -- 03:28:28.289 INFO [12248]: Version from config: 1.0 -- 03:28:28.289 DEBUG [12248]: Connecting to database... -- 03:28:28.289 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:28.289 SQL [12248]: pgsql_db_connect() -- 03:28:28.293 DEBUG [12248]: Database connection successful -- 03:28:28.293 INFO [12248]: _SERVER found -- 03:28:28.293 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 03:28:28.293 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:28.293 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:28.293 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 03:28:28.293 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:28.305 INFO [12248]: COREGRADE is stopping... -- 03:28:28.305 DEBUG [12248]: Closing database connection -- 03:28:28.305 SQL [12248]: pgsql_close() -- 03:28:28.371 INFO [12248]: COREGRADE is starting... -- 03:28:28.371 INFO [12248]: Version from config: 1.0 -- 03:28:28.371 DEBUG [12248]: Connecting to database... -- 03:28:28.371 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:28.371 SQL [12248]: pgsql_db_connect() -- 03:28:28.375 DEBUG [12248]: Database connection successful -- 03:28:28.375 INFO [12248]: _SERVER found -- 03:28:28.375 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 03:28:28.375 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:28.375 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:28.375 INFO [12248]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 03:28:28.375 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:28.387 INFO [12248]: COREGRADE is stopping... -- 03:28:28.387 DEBUG [12248]: Closing database connection -- 03:28:28.387 SQL [12248]: pgsql_close() -- 03:28:28.453 INFO [12248]: COREGRADE is starting... -- 03:28:28.453 INFO [12248]: Version from config: 1.0 -- 03:28:28.453 DEBUG [12248]: Connecting to database... -- 03:28:28.453 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:28.453 SQL [12248]: pgsql_db_connect() -- 03:28:28.457 DEBUG [12248]: Database connection successful -- 03:28:28.457 INFO [12248]: _SERVER found -- 03:28:28.457 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 03:28:28.457 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:28.457 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:28.457 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 03:28:28.457 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:28.468 INFO [12248]: COREGRADE is stopping... -- 03:28:28.468 DEBUG [12248]: Closing database connection -- 03:28:28.468 SQL [12248]: pgsql_close() -- 03:28:28.534 INFO [12248]: COREGRADE is starting... -- 03:28:28.534 INFO [12248]: Version from config: 1.0 -- 03:28:28.534 DEBUG [12248]: Connecting to database... -- 03:28:28.534 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:28.534 SQL [12248]: pgsql_db_connect() -- 03:28:28.538 DEBUG [12248]: Database connection successful -- 03:28:28.538 INFO [12248]: _SERVER found -- 03:28:28.538 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 03:28:28.538 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:28.538 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:28.538 INFO [12248]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 03:28:28.538 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:28.550 INFO [12248]: COREGRADE is stopping... -- 03:28:28.550 DEBUG [12248]: Closing database connection -- 03:28:28.550 SQL [12248]: pgsql_close() -- 03:28:28.616 INFO [12248]: COREGRADE is starting... -- 03:28:28.616 INFO [12248]: Version from config: 1.0 -- 03:28:28.616 DEBUG [12248]: Connecting to database... -- 03:28:28.616 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:28.616 SQL [12248]: pgsql_db_connect() -- 03:28:28.620 DEBUG [12248]: Database connection successful -- 03:28:28.620 INFO [12248]: _SERVER found -- 03:28:28.620 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 03:28:28.620 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:28.620 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:28.620 INFO [12248]: QUERY_STRING = /assets/js/pages/dashboard.js -- 03:28:28.620 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:28.632 INFO [12248]: COREGRADE is stopping... -- 03:28:28.632 DEBUG [12248]: Closing database connection -- 03:28:28.632 SQL [12248]: pgsql_close() -- 03:28:28.699 INFO [12248]: COREGRADE is starting... -- 03:28:28.699 INFO [12248]: Version from config: 1.0 -- 03:28:28.699 DEBUG [12248]: Connecting to database... -- 03:28:28.699 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:28.699 SQL [12248]: pgsql_db_connect() -- 03:28:28.703 DEBUG [12248]: Database connection successful -- 03:28:28.703 INFO [12248]: _SERVER found -- 03:28:28.703 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 03:28:28.703 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:28.703 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:28.703 INFO [12248]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 03:28:28.703 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:28.715 INFO [12248]: COREGRADE is stopping... -- 03:28:28.715 DEBUG [12248]: Closing database connection -- 03:28:28.715 SQL [12248]: pgsql_close() -- 03:28:28.781 INFO [12248]: COREGRADE is starting... -- 03:28:28.781 INFO [12248]: Version from config: 1.0 -- 03:28:28.781 DEBUG [12248]: Connecting to database... -- 03:28:28.781 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:28.781 SQL [12248]: pgsql_db_connect() -- 03:28:28.785 DEBUG [12248]: Database connection successful -- 03:28:28.785 INFO [12248]: _SERVER found -- 03:28:28.785 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 03:28:28.785 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:28.785 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:28.785 INFO [12248]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 03:28:28.785 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:28.797 INFO [12248]: COREGRADE is stopping... -- 03:28:28.797 DEBUG [12248]: Closing database connection -- 03:28:28.797 SQL [12248]: pgsql_close() -- 03:28:28.863 INFO [12248]: COREGRADE is starting... -- 03:28:28.863 INFO [12248]: Version from config: 1.0 -- 03:28:28.863 DEBUG [12248]: Connecting to database... -- 03:28:28.863 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:28.863 SQL [12248]: pgsql_db_connect() -- 03:28:28.867 DEBUG [12248]: Database connection successful -- 03:28:28.867 INFO [12248]: _SERVER found -- 03:28:28.867 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 03:28:28.867 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:28.867 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:28.867 INFO [12248]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 03:28:28.867 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:28.879 INFO [12248]: COREGRADE is stopping... -- 03:28:28.879 DEBUG [12248]: Closing database connection -- 03:28:28.879 SQL [12248]: pgsql_close() -- 03:28:28.945 INFO [12248]: COREGRADE is starting... -- 03:28:28.945 INFO [12248]: Version from config: 1.0 -- 03:28:28.945 DEBUG [12248]: Connecting to database... -- 03:28:28.945 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:28.945 SQL [12248]: pgsql_db_connect() -- 03:28:28.949 DEBUG [12248]: Database connection successful -- 03:28:28.949 INFO [12248]: _SERVER found -- 03:28:28.949 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 03:28:28.949 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:28.949 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:28.949 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 03:28:28.949 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:28.960 INFO [12248]: COREGRADE is stopping... -- 03:28:28.960 DEBUG [12248]: Closing database connection -- 03:28:28.960 SQL [12248]: pgsql_close() -- 03:28:29.027 INFO [12248]: COREGRADE is starting... -- 03:28:29.027 INFO [12248]: Version from config: 1.0 -- 03:28:29.027 DEBUG [12248]: Connecting to database... -- 03:28:29.027 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:29.027 SQL [12248]: pgsql_db_connect() -- 03:28:29.031 DEBUG [12248]: Database connection successful -- 03:28:29.031 INFO [12248]: _SERVER found -- 03:28:29.031 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 03:28:29.031 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:29.031 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:29.031 INFO [12248]: QUERY_STRING = /assets/js/pages/picker_date.js -- 03:28:29.031 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:29.042 INFO [12248]: COREGRADE is stopping... -- 03:28:29.042 DEBUG [12248]: Closing database connection -- 03:28:29.042 SQL [12248]: pgsql_close() -- 03:28:29.108 INFO [12248]: COREGRADE is starting... -- 03:28:29.108 INFO [12248]: Version from config: 1.0 -- 03:28:29.108 DEBUG [12248]: Connecting to database... -- 03:28:29.108 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:29.108 SQL [12248]: pgsql_db_connect() -- 03:28:29.112 DEBUG [12248]: Database connection successful -- 03:28:29.112 INFO [12248]: _SERVER found -- 03:28:29.112 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 03:28:29.112 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:29.112 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:29.112 INFO [12248]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 03:28:29.112 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:29.124 INFO [12248]: COREGRADE is stopping... -- 03:28:29.124 DEBUG [12248]: Closing database connection -- 03:28:29.124 SQL [12248]: pgsql_close() -- 03:28:29.190 INFO [12248]: COREGRADE is starting... -- 03:28:29.190 INFO [12248]: Version from config: 1.0 -- 03:28:29.190 DEBUG [12248]: Connecting to database... -- 03:28:29.190 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:29.190 SQL [12248]: pgsql_db_connect() -- 03:28:29.195 DEBUG [12248]: Database connection successful -- 03:28:29.195 INFO [12248]: _SERVER found -- 03:28:29.195 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 03:28:29.195 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:29.195 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:29.195 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 03:28:29.195 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:29.206 INFO [12248]: COREGRADE is stopping... -- 03:28:29.207 DEBUG [12248]: Closing database connection -- 03:28:29.207 SQL [12248]: pgsql_close() -- 03:28:29.272 INFO [12248]: COREGRADE is starting... -- 03:28:29.273 INFO [12248]: Version from config: 1.0 -- 03:28:29.273 DEBUG [12248]: Connecting to database... -- 03:28:29.273 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:29.273 SQL [12248]: pgsql_db_connect() -- 03:28:29.277 DEBUG [12248]: Database connection successful -- 03:28:29.277 INFO [12248]: _SERVER found -- 03:28:29.277 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 03:28:29.277 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:29.277 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:29.277 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 03:28:29.277 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:29.289 INFO [12248]: COREGRADE is stopping... -- 03:28:29.289 DEBUG [12248]: Closing database connection -- 03:28:29.289 SQL [12248]: pgsql_close() -- 03:28:29.354 INFO [12248]: COREGRADE is starting... -- 03:28:29.355 INFO [12248]: Version from config: 1.0 -- 03:28:29.355 DEBUG [12248]: Connecting to database... -- 03:28:29.355 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:29.355 SQL [12248]: pgsql_db_connect() -- 03:28:29.358 DEBUG [12248]: Database connection successful -- 03:28:29.358 INFO [12248]: _SERVER found -- 03:28:29.358 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 03:28:29.358 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:29.358 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:29.358 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 03:28:29.358 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:29.370 INFO [12248]: COREGRADE is stopping... -- 03:28:29.370 DEBUG [12248]: Closing database connection -- 03:28:29.370 SQL [12248]: pgsql_close() -- 03:28:29.436 INFO [12248]: COREGRADE is starting... -- 03:28:29.436 INFO [12248]: Version from config: 1.0 -- 03:28:29.436 DEBUG [12248]: Connecting to database... -- 03:28:29.436 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:29.436 SQL [12248]: pgsql_db_connect() -- 03:28:29.440 DEBUG [12248]: Database connection successful -- 03:28:29.440 INFO [12248]: _SERVER found -- 03:28:29.440 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 03:28:29.440 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:29.440 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:29.440 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 03:28:29.440 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:29.452 INFO [12248]: COREGRADE is stopping... -- 03:28:29.452 DEBUG [12248]: Closing database connection -- 03:28:29.452 SQL [12248]: pgsql_close() -- 03:28:29.528 INFO [12248]: COREGRADE is starting... -- 03:28:29.528 INFO [12248]: Version from config: 1.0 -- 03:28:29.528 DEBUG [12248]: Connecting to database... -- 03:28:29.528 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:29.528 SQL [12248]: pgsql_db_connect() -- 03:28:29.532 DEBUG [12248]: Database connection successful -- 03:28:29.532 INFO [12248]: _SERVER found -- 03:28:29.532 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 03:28:29.532 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:29.532 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:29.532 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 03:28:29.532 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:29.543 INFO [12248]: COREGRADE is stopping... -- 03:28:29.543 DEBUG [12248]: Closing database connection -- 03:28:29.543 SQL [12248]: pgsql_close() -- 03:28:29.609 INFO [12248]: COREGRADE is starting... -- 03:28:29.609 INFO [12248]: Version from config: 1.0 -- 03:28:29.609 DEBUG [12248]: Connecting to database... -- 03:28:29.609 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:29.609 SQL [12248]: pgsql_db_connect() -- 03:28:29.613 DEBUG [12248]: Database connection successful -- 03:28:29.613 INFO [12248]: _SERVER found -- 03:28:29.613 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 03:28:29.613 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:29.613 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:29.613 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 03:28:29.613 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:29.625 INFO [12248]: COREGRADE is stopping... -- 03:28:29.625 DEBUG [12248]: Closing database connection -- 03:28:29.625 SQL [12248]: pgsql_close() -- 03:28:29.692 INFO [12248]: COREGRADE is starting... -- 03:28:29.692 INFO [12248]: Version from config: 1.0 -- 03:28:29.693 DEBUG [12248]: Connecting to database... -- 03:28:29.693 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:28:29.693 SQL [12248]: pgsql_db_connect() -- 03:28:29.697 DEBUG [12248]: Database connection successful -- 03:28:29.697 INFO [12248]: _SERVER found -- 03:28:29.697 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 03:28:29.697 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:28:29.697 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:28:29.697 INFO [12248]: QUERY_STRING = /assets/customjs/general.js -- 03:28:29.697 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:28:29.708 INFO [12248]: COREGRADE is stopping... -- 03:28:29.708 DEBUG [12248]: Closing database connection -- 03:28:29.708 SQL [12248]: pgsql_close() -- 03:48:29.930 INFO [12249]: COREGRADE is starting... -- 03:48:29.931 INFO [12249]: Version from config: 1.0 -- 03:48:29.931 DEBUG [12249]: Connecting to database... -- 03:48:29.931 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:29.931 SQL [12249]: pgsql_db_connect() -- 03:48:29.936 DEBUG [12249]: Database connection successful -- 03:48:29.936 INFO [12249]: _SERVER found -- 03:48:29.936 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 03:48:29.936 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:29.936 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ot5t26886narp3ii0lfb7e3buddpe53p -- 03:48:29.936 INFO [12249]: QUERY_STRING = /logout -- 03:48:29.936 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:29.978 INFO [12249]: COREGRADE is stopping... -- 03:48:29.978 DEBUG [12249]: Closing database connection -- 03:48:29.978 SQL [12249]: pgsql_close() -- 03:48:30.058 INFO [12249]: COREGRADE is starting... -- 03:48:30.058 INFO [12249]: Version from config: 1.0 -- 03:48:30.058 DEBUG [12249]: Connecting to database... -- 03:48:30.058 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:30.058 SQL [12249]: pgsql_db_connect() -- 03:48:30.063 DEBUG [12249]: Database connection successful -- 03:48:30.063 INFO [12249]: _SERVER found -- 03:48:30.063 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 03:48:30.063 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:30.063 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:30.063 INFO [12249]: QUERY_STRING = /start -- 03:48:30.063 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:30.105 INFO [12249]: COREGRADE is stopping... -- 03:48:30.105 DEBUG [12249]: Closing database connection -- 03:48:30.105 SQL [12249]: pgsql_close() -- 03:48:30.234 INFO [12250]: COREGRADE is starting... -- 03:48:30.234 INFO [12250]: Version from config: 1.0 -- 03:48:30.234 DEBUG [12250]: Connecting to database... -- 03:48:30.235 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:30.235 SQL [12250]: pgsql_db_connect() -- 03:48:30.250 INFO [12249]: COREGRADE is starting... -- 03:48:30.250 INFO [12249]: Version from config: 1.0 -- 03:48:30.250 DEBUG [12249]: Connecting to database... -- 03:48:30.250 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:30.250 SQL [12249]: pgsql_db_connect() -- 03:48:30.239 DEBUG [12250]: Database connection successful -- 03:48:30.239 INFO [12250]: _SERVER found -- 03:48:30.239 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 03:48:30.239 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:30.239 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:30.239 INFO [12250]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 03:48:30.239 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:30.255 INFO [12250]: COREGRADE is stopping... -- 03:48:30.255 DEBUG [12250]: Closing database connection -- 03:48:30.255 SQL [12250]: pgsql_close() -- 03:48:30.255 DEBUG [12249]: Database connection successful -- 03:48:30.255 INFO [12249]: _SERVER found -- 03:48:30.255 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 03:48:30.255 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:30.255 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:30.255 INFO [12249]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 03:48:30.255 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:30.267 INFO [12249]: COREGRADE is stopping... -- 03:48:30.267 DEBUG [12249]: Closing database connection -- 03:48:30.267 SQL [12249]: pgsql_close() -- 03:48:30.307 INFO [12305]: COREGRADE is starting... -- 03:48:30.307 INFO [12305]: Version from config: 1.0 -- 03:48:30.307 DEBUG [12305]: Connecting to database... -- 03:48:30.307 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:30.307 SQL [12305]: pgsql_db_connect() -- 03:48:30.312 DEBUG [12305]: Database connection successful -- 03:48:30.312 INFO [12305]: _SERVER found -- 03:48:30.312 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 03:48:30.312 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:30.312 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:30.312 INFO [12305]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 03:48:30.312 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:30.328 INFO [12305]: COREGRADE is stopping... -- 03:48:30.328 DEBUG [12305]: Closing database connection -- 03:48:30.328 SQL [12305]: pgsql_close() -- 03:48:30.337 INFO [12249]: COREGRADE is starting... -- 03:48:30.337 INFO [12250]: COREGRADE is starting... -- 03:48:30.338 INFO [12249]: Version from config: 1.0 -- 03:48:30.338 DEBUG [12249]: Connecting to database... -- 03:48:30.338 INFO [12250]: Version from config: 1.0 -- 03:48:30.338 DEBUG [12250]: Connecting to database... -- 03:48:30.338 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:30.338 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:30.338 SQL [12249]: pgsql_db_connect() -- 03:48:30.338 SQL [12250]: pgsql_db_connect() -- 03:48:30.342 DEBUG [12249]: Database connection successful -- 03:48:30.342 INFO [12249]: _SERVER found -- 03:48:30.342 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 03:48:30.342 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:30.342 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:30.342 INFO [12249]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 03:48:30.342 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:30.354 INFO [12249]: COREGRADE is stopping... -- 03:48:30.354 DEBUG [12249]: Closing database connection -- 03:48:30.354 SQL [12249]: pgsql_close() -- 03:48:30.342 DEBUG [12250]: Database connection successful -- 03:48:30.342 INFO [12250]: _SERVER found -- 03:48:30.342 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 03:48:30.342 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:30.342 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:30.342 INFO [12250]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 03:48:30.342 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:30.354 INFO [12250]: COREGRADE is stopping... -- 03:48:30.354 DEBUG [12250]: Closing database connection -- 03:48:30.354 SQL [12250]: pgsql_close() -- 03:48:30.408 INFO [12305]: COREGRADE is starting... -- 03:48:30.408 INFO [12305]: Version from config: 1.0 -- 03:48:30.408 DEBUG [12305]: Connecting to database... -- 03:48:30.408 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:30.408 SQL [12305]: pgsql_db_connect() -- 03:48:30.421 INFO [12249]: COREGRADE is starting... -- 03:48:30.421 INFO [12249]: Version from config: 1.0 -- 03:48:30.421 DEBUG [12249]: Connecting to database... -- 03:48:30.421 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:30.421 SQL [12249]: pgsql_db_connect() -- 03:48:30.413 DEBUG [12305]: Database connection successful -- 03:48:30.413 INFO [12305]: _SERVER found -- 03:48:30.413 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 03:48:30.413 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:30.413 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:30.413 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 03:48:30.413 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:30.425 INFO [12305]: COREGRADE is stopping... -- 03:48:30.425 DEBUG [12305]: Closing database connection -- 03:48:30.425 SQL [12305]: pgsql_close() -- 03:48:30.434 INFO [12250]: COREGRADE is starting... -- 03:48:30.434 INFO [12250]: Version from config: 1.0 -- 03:48:30.434 DEBUG [12250]: Connecting to database... -- 03:48:30.434 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:30.434 SQL [12250]: pgsql_db_connect() -- 03:48:30.426 DEBUG [12249]: Database connection successful -- 03:48:30.426 INFO [12249]: _SERVER found -- 03:48:30.426 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 03:48:30.426 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:30.426 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:30.426 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 03:48:30.426 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:30.438 INFO [12249]: COREGRADE is stopping... -- 03:48:30.438 DEBUG [12249]: Closing database connection -- 03:48:30.438 SQL [12249]: pgsql_close() -- 03:48:30.439 DEBUG [12250]: Database connection successful -- 03:48:30.439 INFO [12250]: _SERVER found -- 03:48:30.439 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 03:48:30.439 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:30.439 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:30.439 INFO [12250]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 03:48:30.439 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:30.451 INFO [12250]: COREGRADE is stopping... -- 03:48:30.451 DEBUG [12250]: Closing database connection -- 03:48:30.451 SQL [12250]: pgsql_close() -- 03:48:30.504 INFO [12305]: COREGRADE is starting... -- 03:48:30.504 INFO [12249]: COREGRADE is starting... -- 03:48:30.505 INFO [12249]: Version from config: 1.0 -- 03:48:30.505 DEBUG [12249]: Connecting to database... -- 03:48:30.505 INFO [12305]: Version from config: 1.0 -- 03:48:30.505 DEBUG [12305]: Connecting to database... -- 03:48:30.505 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:30.505 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:30.505 SQL [12249]: pgsql_db_connect() -- 03:48:30.505 SQL [12305]: pgsql_db_connect() -- 03:48:30.509 DEBUG [12305]: Database connection successful -- 03:48:30.509 INFO [12305]: _SERVER found -- 03:48:30.509 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 03:48:30.509 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:30.509 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:30.509 INFO [12305]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 03:48:30.509 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:30.521 INFO [12305]: COREGRADE is stopping... -- 03:48:30.509 DEBUG [12249]: Database connection successful -- 03:48:30.509 INFO [12249]: _SERVER found -- 03:48:30.509 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 03:48:30.509 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:30.509 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:30.509 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 03:48:30.509 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:30.521 INFO [12249]: COREGRADE is stopping... -- 03:48:30.521 DEBUG [12305]: Closing database connection -- 03:48:30.521 DEBUG [12249]: Closing database connection -- 03:48:30.521 SQL [12305]: pgsql_close() -- 03:48:30.521 SQL [12249]: pgsql_close() -- 03:48:30.523 INFO [12250]: COREGRADE is starting... -- 03:48:30.523 INFO [12250]: Version from config: 1.0 -- 03:48:30.523 DEBUG [12250]: Connecting to database... -- 03:48:30.523 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:30.523 SQL [12250]: pgsql_db_connect() -- 03:48:30.528 DEBUG [12250]: Database connection successful -- 03:48:30.528 INFO [12250]: _SERVER found -- 03:48:30.528 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 03:48:30.528 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:30.528 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:30.528 INFO [12250]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 03:48:30.528 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:30.539 INFO [12250]: COREGRADE is stopping... -- 03:48:30.539 DEBUG [12250]: Closing database connection -- 03:48:30.539 SQL [12250]: pgsql_close() -- 03:48:30.590 INFO [12249]: COREGRADE is starting... -- 03:48:30.590 INFO [12249]: Version from config: 1.0 -- 03:48:30.590 DEBUG [12249]: Connecting to database... -- 03:48:30.590 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:30.590 SQL [12249]: pgsql_db_connect() -- 03:48:30.594 INFO [12305]: COREGRADE is starting... -- 03:48:30.594 INFO [12305]: Version from config: 1.0 -- 03:48:30.594 DEBUG [12305]: Connecting to database... -- 03:48:30.594 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:30.594 SQL [12305]: pgsql_db_connect() -- 03:48:30.595 DEBUG [12249]: Database connection successful -- 03:48:30.595 INFO [12249]: _SERVER found -- 03:48:30.595 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 03:48:30.595 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:30.595 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:30.595 INFO [12249]: QUERY_STRING = /assets/js/pages/dashboard.js -- 03:48:30.595 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:30.606 INFO [12249]: COREGRADE is stopping... -- 03:48:30.606 DEBUG [12249]: Closing database connection -- 03:48:30.606 SQL [12249]: pgsql_close() -- 03:48:30.609 INFO [12250]: COREGRADE is starting... -- 03:48:30.609 INFO [12250]: Version from config: 1.0 -- 03:48:30.609 DEBUG [12250]: Connecting to database... -- 03:48:30.609 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:30.609 SQL [12250]: pgsql_db_connect() -- 03:48:30.599 DEBUG [12305]: Database connection successful -- 03:48:30.599 INFO [12305]: _SERVER found -- 03:48:30.599 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 03:48:30.599 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:30.599 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:30.599 INFO [12305]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 03:48:30.599 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:30.611 INFO [12305]: COREGRADE is stopping... -- 03:48:30.611 DEBUG [12305]: Closing database connection -- 03:48:30.611 SQL [12305]: pgsql_close() -- 03:48:30.613 DEBUG [12250]: Database connection successful -- 03:48:30.613 INFO [12250]: _SERVER found -- 03:48:30.613 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 03:48:30.613 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:30.613 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:30.613 INFO [12250]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 03:48:30.613 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:30.625 INFO [12250]: COREGRADE is stopping... -- 03:48:30.625 DEBUG [12250]: Closing database connection -- 03:48:30.625 SQL [12250]: pgsql_close() -- 03:48:30.672 INFO [12249]: COREGRADE is starting... -- 03:48:30.673 INFO [12249]: Version from config: 1.0 -- 03:48:30.673 DEBUG [12249]: Connecting to database... -- 03:48:30.673 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:30.673 SQL [12249]: pgsql_db_connect() -- 03:48:30.680 INFO [12305]: COREGRADE is starting... -- 03:48:30.680 INFO [12305]: Version from config: 1.0 -- 03:48:30.680 DEBUG [12305]: Connecting to database... -- 03:48:30.680 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:30.680 SQL [12305]: pgsql_db_connect() -- 03:48:30.677 DEBUG [12249]: Database connection successful -- 03:48:30.677 INFO [12249]: _SERVER found -- 03:48:30.677 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 03:48:30.677 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:30.677 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:30.677 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 03:48:30.677 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:30.689 INFO [12249]: COREGRADE is stopping... -- 03:48:30.689 DEBUG [12249]: Closing database connection -- 03:48:30.689 SQL [12249]: pgsql_close() -- 03:48:30.693 INFO [12250]: COREGRADE is starting... -- 03:48:30.693 INFO [12250]: Version from config: 1.0 -- 03:48:30.693 DEBUG [12250]: Connecting to database... -- 03:48:30.693 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:30.693 SQL [12250]: pgsql_db_connect() -- 03:48:30.685 DEBUG [12305]: Database connection successful -- 03:48:30.685 INFO [12305]: _SERVER found -- 03:48:30.685 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 03:48:30.685 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:30.685 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:30.685 INFO [12305]: QUERY_STRING = /assets/js/pages/picker_date.js -- 03:48:30.685 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:30.697 INFO [12305]: COREGRADE is stopping... -- 03:48:30.697 DEBUG [12305]: Closing database connection -- 03:48:30.697 SQL [12305]: pgsql_close() -- 03:48:30.698 DEBUG [12250]: Database connection successful -- 03:48:30.698 INFO [12250]: _SERVER found -- 03:48:30.698 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 03:48:30.698 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:30.698 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:30.698 INFO [12250]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 03:48:30.698 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:30.709 INFO [12250]: COREGRADE is stopping... -- 03:48:30.709 DEBUG [12250]: Closing database connection -- 03:48:30.709 SQL [12250]: pgsql_close() -- 03:48:30.755 INFO [12249]: COREGRADE is starting... -- 03:48:30.755 INFO [12249]: Version from config: 1.0 -- 03:48:30.755 DEBUG [12249]: Connecting to database... -- 03:48:30.755 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:30.755 SQL [12249]: pgsql_db_connect() -- 03:48:30.765 INFO [12305]: COREGRADE is starting... -- 03:48:30.765 INFO [12305]: Version from config: 1.0 -- 03:48:30.765 DEBUG [12305]: Connecting to database... -- 03:48:30.765 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:30.765 SQL [12305]: pgsql_db_connect() -- 03:48:30.760 DEBUG [12249]: Database connection successful -- 03:48:30.760 INFO [12249]: _SERVER found -- 03:48:30.760 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 03:48:30.760 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:30.760 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:30.760 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 03:48:30.760 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:30.772 INFO [12249]: COREGRADE is stopping... -- 03:48:30.772 DEBUG [12249]: Closing database connection -- 03:48:30.772 SQL [12249]: pgsql_close() -- 03:48:30.778 INFO [12250]: COREGRADE is starting... -- 03:48:30.778 INFO [12250]: Version from config: 1.0 -- 03:48:30.778 DEBUG [12250]: Connecting to database... -- 03:48:30.778 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:30.778 SQL [12250]: pgsql_db_connect() -- 03:48:30.770 DEBUG [12305]: Database connection successful -- 03:48:30.770 INFO [12305]: _SERVER found -- 03:48:30.770 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 03:48:30.770 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:30.770 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:30.770 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 03:48:30.770 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:30.782 INFO [12305]: COREGRADE is stopping... -- 03:48:30.782 DEBUG [12305]: Closing database connection -- 03:48:30.782 SQL [12305]: pgsql_close() -- 03:48:30.782 DEBUG [12250]: Database connection successful -- 03:48:30.782 INFO [12250]: _SERVER found -- 03:48:30.782 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 03:48:30.782 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:30.782 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:30.782 INFO [12250]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 03:48:30.782 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:30.794 INFO [12250]: COREGRADE is stopping... -- 03:48:30.794 DEBUG [12250]: Closing database connection -- 03:48:30.794 SQL [12250]: pgsql_close() -- 03:48:30.838 INFO [12249]: COREGRADE is starting... -- 03:48:30.838 INFO [12249]: Version from config: 1.0 -- 03:48:30.838 DEBUG [12249]: Connecting to database... -- 03:48:30.838 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:30.838 SQL [12249]: pgsql_db_connect() -- 03:48:30.850 INFO [12305]: COREGRADE is starting... -- 03:48:30.850 INFO [12305]: Version from config: 1.0 -- 03:48:30.850 DEBUG [12305]: Connecting to database... -- 03:48:30.850 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:30.850 SQL [12305]: pgsql_db_connect() -- 03:48:30.842 DEBUG [12249]: Database connection successful -- 03:48:30.842 INFO [12249]: _SERVER found -- 03:48:30.842 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 03:48:30.842 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:30.842 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:30.842 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 03:48:30.842 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:30.854 INFO [12249]: COREGRADE is stopping... -- 03:48:30.854 DEBUG [12249]: Closing database connection -- 03:48:30.854 SQL [12249]: pgsql_close() -- 03:48:30.862 INFO [12250]: COREGRADE is starting... -- 03:48:30.862 INFO [12250]: Version from config: 1.0 -- 03:48:30.862 DEBUG [12250]: Connecting to database... -- 03:48:30.862 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:30.862 SQL [12250]: pgsql_db_connect() -- 03:48:30.855 DEBUG [12305]: Database connection successful -- 03:48:30.855 INFO [12305]: _SERVER found -- 03:48:30.855 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 03:48:30.855 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:30.855 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:30.855 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 03:48:30.855 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:30.867 INFO [12305]: COREGRADE is stopping... -- 03:48:30.867 DEBUG [12305]: Closing database connection -- 03:48:30.867 SQL [12305]: pgsql_close() -- 03:48:30.866 DEBUG [12250]: Database connection successful -- 03:48:30.866 INFO [12250]: _SERVER found -- 03:48:30.867 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 03:48:30.867 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:30.867 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:30.867 INFO [12250]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 03:48:30.867 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:30.878 INFO [12250]: COREGRADE is stopping... -- 03:48:30.878 DEBUG [12250]: Closing database connection -- 03:48:30.878 SQL [12250]: pgsql_close() -- 03:48:30.920 INFO [12249]: COREGRADE is starting... -- 03:48:30.921 INFO [12249]: Version from config: 1.0 -- 03:48:30.921 DEBUG [12249]: Connecting to database... -- 03:48:30.921 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:30.921 SQL [12249]: pgsql_db_connect() -- 03:48:30.935 INFO [12305]: COREGRADE is starting... -- 03:48:30.936 INFO [12305]: Version from config: 1.0 -- 03:48:30.936 DEBUG [12305]: Connecting to database... -- 03:48:30.936 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:30.936 SQL [12305]: pgsql_db_connect() -- 03:48:30.925 DEBUG [12249]: Database connection successful -- 03:48:30.925 INFO [12249]: _SERVER found -- 03:48:30.925 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 03:48:30.925 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:30.925 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:30.925 INFO [12249]: QUERY_STRING = /assets/customjs/general.js -- 03:48:30.925 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:30.937 INFO [12249]: COREGRADE is stopping... -- 03:48:30.937 DEBUG [12249]: Closing database connection -- 03:48:30.937 SQL [12249]: pgsql_close() -- 03:48:30.940 DEBUG [12305]: Database connection successful -- 03:48:30.940 INFO [12305]: _SERVER found -- 03:48:30.940 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 03:48:30.940 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:30.940 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:30.940 INFO [12305]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 03:48:30.940 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:30.952 INFO [12305]: COREGRADE is stopping... -- 03:48:30.952 DEBUG [12305]: Closing database connection -- 03:48:30.952 SQL [12305]: pgsql_close() -- 03:48:31.021 INFO [12305]: COREGRADE is starting... -- 03:48:31.021 INFO [12305]: Version from config: 1.0 -- 03:48:31.021 DEBUG [12305]: Connecting to database... -- 03:48:31.021 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:31.021 SQL [12305]: pgsql_db_connect() -- 03:48:31.026 DEBUG [12305]: Database connection successful -- 03:48:31.026 INFO [12305]: _SERVER found -- 03:48:31.026 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 03:48:31.026 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:31.026 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:31.026 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 03:48:31.026 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:31.038 INFO [12305]: COREGRADE is stopping... -- 03:48:31.038 DEBUG [12305]: Closing database connection -- 03:48:31.038 SQL [12305]: pgsql_close() -- 03:48:31.107 INFO [12305]: COREGRADE is starting... -- 03:48:31.107 INFO [12305]: Version from config: 1.0 -- 03:48:31.107 DEBUG [12305]: Connecting to database... -- 03:48:31.107 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:31.107 SQL [12305]: pgsql_db_connect() -- 03:48:31.112 DEBUG [12305]: Database connection successful -- 03:48:31.112 INFO [12305]: _SERVER found -- 03:48:31.112 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 03:48:31.112 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:31.112 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:31.112 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 03:48:31.112 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:31.124 INFO [12305]: COREGRADE is stopping... -- 03:48:31.124 DEBUG [12305]: Closing database connection -- 03:48:31.124 SQL [12305]: pgsql_close() -- 03:48:31.193 INFO [12305]: COREGRADE is starting... -- 03:48:31.193 INFO [12305]: Version from config: 1.0 -- 03:48:31.193 DEBUG [12305]: Connecting to database... -- 03:48:31.193 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:31.193 SQL [12305]: pgsql_db_connect() -- 03:48:31.198 DEBUG [12305]: Database connection successful -- 03:48:31.198 INFO [12305]: _SERVER found -- 03:48:31.198 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 03:48:31.198 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:31.198 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:31.198 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 03:48:31.198 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:31.209 INFO [12305]: COREGRADE is stopping... -- 03:48:31.209 DEBUG [12305]: Closing database connection -- 03:48:31.209 SQL [12305]: pgsql_close() -- 03:48:31.279 INFO [12305]: COREGRADE is starting... -- 03:48:31.279 INFO [12305]: Version from config: 1.0 -- 03:48:31.279 DEBUG [12305]: Connecting to database... -- 03:48:31.279 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:31.279 SQL [12305]: pgsql_db_connect() -- 03:48:31.284 DEBUG [12305]: Database connection successful -- 03:48:31.284 INFO [12305]: _SERVER found -- 03:48:31.284 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 03:48:31.284 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:31.284 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:31.284 INFO [12305]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 03:48:31.284 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:31.295 INFO [12305]: COREGRADE is stopping... -- 03:48:31.295 DEBUG [12305]: Closing database connection -- 03:48:31.295 SQL [12305]: pgsql_close() -- 03:48:31.364 INFO [12305]: COREGRADE is starting... -- 03:48:31.365 INFO [12305]: Version from config: 1.0 -- 03:48:31.365 DEBUG [12305]: Connecting to database... -- 03:48:31.365 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:31.365 SQL [12305]: pgsql_db_connect() -- 03:48:31.369 DEBUG [12305]: Database connection successful -- 03:48:31.369 INFO [12305]: _SERVER found -- 03:48:31.369 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 03:48:31.369 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:31.369 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:31.369 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 03:48:31.369 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:31.381 INFO [12305]: COREGRADE is stopping... -- 03:48:31.381 DEBUG [12305]: Closing database connection -- 03:48:31.381 SQL [12305]: pgsql_close() -- 03:48:31.450 INFO [12305]: COREGRADE is starting... -- 03:48:31.450 INFO [12305]: Version from config: 1.0 -- 03:48:31.450 DEBUG [12305]: Connecting to database... -- 03:48:31.450 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:31.450 SQL [12305]: pgsql_db_connect() -- 03:48:31.455 DEBUG [12305]: Database connection successful -- 03:48:31.455 INFO [12305]: _SERVER found -- 03:48:31.455 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 03:48:31.455 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:31.455 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:31.455 INFO [12305]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 03:48:31.455 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:31.466 INFO [12305]: COREGRADE is stopping... -- 03:48:31.466 DEBUG [12305]: Closing database connection -- 03:48:31.466 SQL [12305]: pgsql_close() -- 03:48:31.535 INFO [12305]: COREGRADE is starting... -- 03:48:31.535 INFO [12305]: Version from config: 1.0 -- 03:48:31.536 DEBUG [12305]: Connecting to database... -- 03:48:31.536 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:31.536 SQL [12305]: pgsql_db_connect() -- 03:48:31.540 DEBUG [12305]: Database connection successful -- 03:48:31.540 INFO [12305]: _SERVER found -- 03:48:31.540 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 03:48:31.540 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:31.540 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:31.540 INFO [12305]: QUERY_STRING = /assets/js/pages/dashboard.js -- 03:48:31.540 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:31.552 INFO [12305]: COREGRADE is stopping... -- 03:48:31.552 DEBUG [12305]: Closing database connection -- 03:48:31.552 SQL [12305]: pgsql_close() -- 03:48:31.622 INFO [12305]: COREGRADE is starting... -- 03:48:31.622 INFO [12305]: Version from config: 1.0 -- 03:48:31.622 DEBUG [12305]: Connecting to database... -- 03:48:31.622 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:31.622 SQL [12305]: pgsql_db_connect() -- 03:48:31.626 DEBUG [12305]: Database connection successful -- 03:48:31.626 INFO [12305]: _SERVER found -- 03:48:31.626 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 03:48:31.626 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:31.626 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:31.626 INFO [12305]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 03:48:31.627 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:31.638 INFO [12305]: COREGRADE is stopping... -- 03:48:31.638 DEBUG [12305]: Closing database connection -- 03:48:31.638 SQL [12305]: pgsql_close() -- 03:48:31.707 INFO [12305]: COREGRADE is starting... -- 03:48:31.707 INFO [12305]: Version from config: 1.0 -- 03:48:31.707 DEBUG [12305]: Connecting to database... -- 03:48:31.707 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:31.707 SQL [12305]: pgsql_db_connect() -- 03:48:31.712 DEBUG [12305]: Database connection successful -- 03:48:31.712 INFO [12305]: _SERVER found -- 03:48:31.712 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 03:48:31.712 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:31.712 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:31.712 INFO [12305]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 03:48:31.712 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:31.723 INFO [12305]: COREGRADE is stopping... -- 03:48:31.723 DEBUG [12305]: Closing database connection -- 03:48:31.723 SQL [12305]: pgsql_close() -- 03:48:31.793 INFO [12305]: COREGRADE is starting... -- 03:48:31.793 INFO [12305]: Version from config: 1.0 -- 03:48:31.793 DEBUG [12305]: Connecting to database... -- 03:48:31.793 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:31.793 SQL [12305]: pgsql_db_connect() -- 03:48:31.798 DEBUG [12305]: Database connection successful -- 03:48:31.798 INFO [12305]: _SERVER found -- 03:48:31.798 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 03:48:31.798 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:31.798 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:31.798 INFO [12305]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 03:48:31.798 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:31.809 INFO [12305]: COREGRADE is stopping... -- 03:48:31.809 DEBUG [12305]: Closing database connection -- 03:48:31.809 SQL [12305]: pgsql_close() -- 03:48:31.878 INFO [12305]: COREGRADE is starting... -- 03:48:31.878 INFO [12305]: Version from config: 1.0 -- 03:48:31.878 DEBUG [12305]: Connecting to database... -- 03:48:31.878 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:31.878 SQL [12305]: pgsql_db_connect() -- 03:48:31.883 DEBUG [12305]: Database connection successful -- 03:48:31.883 INFO [12305]: _SERVER found -- 03:48:31.883 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 03:48:31.883 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:31.883 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:31.883 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 03:48:31.883 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:31.894 INFO [12305]: COREGRADE is stopping... -- 03:48:31.894 DEBUG [12305]: Closing database connection -- 03:48:31.894 SQL [12305]: pgsql_close() -- 03:48:31.964 INFO [12305]: COREGRADE is starting... -- 03:48:31.964 INFO [12305]: Version from config: 1.0 -- 03:48:31.964 DEBUG [12305]: Connecting to database... -- 03:48:31.964 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:31.964 SQL [12305]: pgsql_db_connect() -- 03:48:31.969 DEBUG [12305]: Database connection successful -- 03:48:31.969 INFO [12305]: _SERVER found -- 03:48:31.969 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 03:48:31.969 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:31.969 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:31.969 INFO [12305]: QUERY_STRING = /assets/js/pages/picker_date.js -- 03:48:31.969 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:31.980 INFO [12305]: COREGRADE is stopping... -- 03:48:31.980 DEBUG [12305]: Closing database connection -- 03:48:31.980 SQL [12305]: pgsql_close() -- 03:48:32.049 INFO [12305]: COREGRADE is starting... -- 03:48:32.049 INFO [12305]: Version from config: 1.0 -- 03:48:32.049 DEBUG [12305]: Connecting to database... -- 03:48:32.049 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:32.049 SQL [12305]: pgsql_db_connect() -- 03:48:32.054 DEBUG [12305]: Database connection successful -- 03:48:32.054 INFO [12305]: _SERVER found -- 03:48:32.054 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 03:48:32.054 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:32.054 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:32.054 INFO [12305]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 03:48:32.054 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:32.066 INFO [12305]: COREGRADE is stopping... -- 03:48:32.066 DEBUG [12305]: Closing database connection -- 03:48:32.066 SQL [12305]: pgsql_close() -- 03:48:32.135 INFO [12305]: COREGRADE is starting... -- 03:48:32.135 INFO [12305]: Version from config: 1.0 -- 03:48:32.135 DEBUG [12305]: Connecting to database... -- 03:48:32.135 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:32.135 SQL [12305]: pgsql_db_connect() -- 03:48:32.140 DEBUG [12305]: Database connection successful -- 03:48:32.140 INFO [12305]: _SERVER found -- 03:48:32.140 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 03:48:32.140 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:32.140 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:32.140 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 03:48:32.140 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:32.151 INFO [12305]: COREGRADE is stopping... -- 03:48:32.151 DEBUG [12305]: Closing database connection -- 03:48:32.151 SQL [12305]: pgsql_close() -- 03:48:32.221 INFO [12305]: COREGRADE is starting... -- 03:48:32.221 INFO [12305]: Version from config: 1.0 -- 03:48:32.221 DEBUG [12305]: Connecting to database... -- 03:48:32.221 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:32.221 SQL [12305]: pgsql_db_connect() -- 03:48:32.226 DEBUG [12305]: Database connection successful -- 03:48:32.226 INFO [12305]: _SERVER found -- 03:48:32.226 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 03:48:32.226 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:32.226 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:32.226 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 03:48:32.226 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:32.237 INFO [12305]: COREGRADE is stopping... -- 03:48:32.237 DEBUG [12305]: Closing database connection -- 03:48:32.237 SQL [12305]: pgsql_close() -- 03:48:32.306 INFO [12305]: COREGRADE is starting... -- 03:48:32.307 INFO [12305]: Version from config: 1.0 -- 03:48:32.307 DEBUG [12305]: Connecting to database... -- 03:48:32.307 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:32.307 SQL [12305]: pgsql_db_connect() -- 03:48:32.311 DEBUG [12305]: Database connection successful -- 03:48:32.311 INFO [12305]: _SERVER found -- 03:48:32.311 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 03:48:32.311 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:32.311 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:32.311 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 03:48:32.311 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:32.323 INFO [12305]: COREGRADE is stopping... -- 03:48:32.323 DEBUG [12305]: Closing database connection -- 03:48:32.323 SQL [12305]: pgsql_close() -- 03:48:32.392 INFO [12305]: COREGRADE is starting... -- 03:48:32.392 INFO [12305]: Version from config: 1.0 -- 03:48:32.392 DEBUG [12305]: Connecting to database... -- 03:48:32.392 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:32.392 SQL [12305]: pgsql_db_connect() -- 03:48:32.397 DEBUG [12305]: Database connection successful -- 03:48:32.397 INFO [12305]: _SERVER found -- 03:48:32.397 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 03:48:32.397 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:32.397 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:32.397 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 03:48:32.397 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:32.408 INFO [12305]: COREGRADE is stopping... -- 03:48:32.408 DEBUG [12305]: Closing database connection -- 03:48:32.409 SQL [12305]: pgsql_close() -- 03:48:32.488 INFO [12305]: COREGRADE is starting... -- 03:48:32.488 INFO [12305]: Version from config: 1.0 -- 03:48:32.488 DEBUG [12305]: Connecting to database... -- 03:48:32.488 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:32.488 SQL [12305]: pgsql_db_connect() -- 03:48:32.493 DEBUG [12305]: Database connection successful -- 03:48:32.493 INFO [12305]: _SERVER found -- 03:48:32.493 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 03:48:32.493 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:32.493 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:32.493 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 03:48:32.493 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:32.505 INFO [12305]: COREGRADE is stopping... -- 03:48:32.505 DEBUG [12305]: Closing database connection -- 03:48:32.505 SQL [12305]: pgsql_close() -- 03:48:32.574 INFO [12305]: COREGRADE is starting... -- 03:48:32.574 INFO [12305]: Version from config: 1.0 -- 03:48:32.574 DEBUG [12305]: Connecting to database... -- 03:48:32.574 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:32.574 SQL [12305]: pgsql_db_connect() -- 03:48:32.578 DEBUG [12305]: Database connection successful -- 03:48:32.578 INFO [12305]: _SERVER found -- 03:48:32.578 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 03:48:32.578 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:32.578 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:32.578 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 03:48:32.578 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:32.590 INFO [12305]: COREGRADE is stopping... -- 03:48:32.590 DEBUG [12305]: Closing database connection -- 03:48:32.590 SQL [12305]: pgsql_close() -- 03:48:32.660 INFO [12305]: COREGRADE is starting... -- 03:48:32.661 INFO [12305]: Version from config: 1.0 -- 03:48:32.661 DEBUG [12305]: Connecting to database... -- 03:48:32.661 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:32.661 SQL [12305]: pgsql_db_connect() -- 03:48:32.665 DEBUG [12305]: Database connection successful -- 03:48:32.665 INFO [12305]: _SERVER found -- 03:48:32.665 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 03:48:32.665 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 03:48:32.665 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 03:48:32.665 INFO [12305]: QUERY_STRING = /assets/customjs/general.js -- 03:48:32.665 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 03:48:32.677 INFO [12305]: COREGRADE is stopping... -- 03:48:32.677 DEBUG [12305]: Closing database connection -- 03:48:32.677 SQL [12305]: pgsql_close() -- 04:08:32.896 INFO [12334]: COREGRADE is starting... -- 04:08:32.896 INFO [12334]: Version from config: 1.0 -- 04:08:32.896 DEBUG [12334]: Connecting to database... -- 04:08:32.896 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:32.896 SQL [12334]: pgsql_db_connect() -- 04:08:32.901 DEBUG [12334]: Database connection successful -- 04:08:32.901 INFO [12334]: _SERVER found -- 04:08:32.901 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 04:08:32.901 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:32.901 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vvvhu9oqvljnat1u2edfoinoqeaola60 -- 04:08:32.901 INFO [12334]: QUERY_STRING = /logout -- 04:08:32.901 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:32.941 INFO [12334]: COREGRADE is stopping... -- 04:08:32.941 DEBUG [12334]: Closing database connection -- 04:08:32.941 SQL [12334]: pgsql_close() -- 04:08:33.020 INFO [12334]: COREGRADE is starting... -- 04:08:33.020 INFO [12334]: Version from config: 1.0 -- 04:08:33.020 DEBUG [12334]: Connecting to database... -- 04:08:33.020 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:33.020 SQL [12334]: pgsql_db_connect() -- 04:08:33.024 DEBUG [12334]: Database connection successful -- 04:08:33.024 INFO [12334]: _SERVER found -- 04:08:33.024 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 04:08:33.024 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:33.024 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:33.024 INFO [12334]: QUERY_STRING = /start -- 04:08:33.024 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:33.065 INFO [12334]: COREGRADE is stopping... -- 04:08:33.065 DEBUG [12334]: Closing database connection -- 04:08:33.065 SQL [12334]: pgsql_close() -- 04:08:33.197 INFO [12347]: COREGRADE is starting... -- 04:08:33.197 INFO [12347]: Version from config: 1.0 -- 04:08:33.197 DEBUG [12347]: Connecting to database... -- 04:08:33.197 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:33.197 SQL [12347]: pgsql_db_connect() -- 04:08:33.211 INFO [12334]: COREGRADE is starting... -- 04:08:33.211 INFO [12334]: Version from config: 1.0 -- 04:08:33.211 DEBUG [12334]: Connecting to database... -- 04:08:33.211 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:33.211 SQL [12334]: pgsql_db_connect() -- 04:08:33.201 DEBUG [12347]: Database connection successful -- 04:08:33.201 INFO [12347]: _SERVER found -- 04:08:33.201 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 04:08:33.201 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:33.201 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:33.201 INFO [12347]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 04:08:33.201 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:33.217 INFO [12347]: COREGRADE is stopping... -- 04:08:33.217 DEBUG [12347]: Closing database connection -- 04:08:33.217 SQL [12347]: pgsql_close() -- 04:08:33.215 DEBUG [12334]: Database connection successful -- 04:08:33.215 INFO [12334]: _SERVER found -- 04:08:33.215 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 04:08:33.215 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:33.215 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:33.215 INFO [12334]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 04:08:33.215 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:33.227 INFO [12334]: COREGRADE is stopping... -- 04:08:33.227 DEBUG [12334]: Closing database connection -- 04:08:33.227 SQL [12334]: pgsql_close() -- 04:08:33.253 INFO [12347]: COREGRADE is starting... -- 04:08:33.254 INFO [12347]: Version from config: 1.0 -- 04:08:33.254 DEBUG [12347]: Connecting to database... -- 04:08:33.254 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:33.254 SQL [12347]: pgsql_db_connect() -- 04:08:33.258 DEBUG [12347]: Database connection successful -- 04:08:33.258 INFO [12347]: _SERVER found -- 04:08:33.258 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 04:08:33.258 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:33.258 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:33.258 INFO [12347]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 04:08:33.258 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:33.269 INFO [12347]: COREGRADE is stopping... -- 04:08:33.269 DEBUG [12347]: Closing database connection -- 04:08:33.269 SQL [12347]: pgsql_close() -- 04:08:33.297 INFO [12347]: COREGRADE is starting... -- 04:08:33.297 INFO [12334]: COREGRADE is starting... -- 04:08:33.297 INFO [12347]: Version from config: 1.0 -- 04:08:33.297 DEBUG [12347]: Connecting to database... -- 04:08:33.297 INFO [12334]: Version from config: 1.0 -- 04:08:33.297 DEBUG [12334]: Connecting to database... -- 04:08:33.297 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:33.297 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:33.297 SQL [12347]: pgsql_db_connect() -- 04:08:33.297 SQL [12334]: pgsql_db_connect() -- 04:08:33.302 DEBUG [12347]: Database connection successful -- 04:08:33.302 INFO [12347]: _SERVER found -- 04:08:33.302 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 04:08:33.302 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:33.302 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:33.302 INFO [12347]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 04:08:33.302 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:33.313 INFO [12347]: COREGRADE is stopping... -- 04:08:33.302 DEBUG [12334]: Database connection successful -- 04:08:33.302 INFO [12334]: _SERVER found -- 04:08:33.302 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 04:08:33.302 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:33.302 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:33.302 INFO [12334]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 04:08:33.302 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:33.313 INFO [12334]: COREGRADE is stopping... -- 04:08:33.313 DEBUG [12347]: Closing database connection -- 04:08:33.313 DEBUG [12334]: Closing database connection -- 04:08:33.313 SQL [12347]: pgsql_close() -- 04:08:33.313 SQL [12334]: pgsql_close() -- 04:08:33.345 INFO [12347]: COREGRADE is starting... -- 04:08:33.346 INFO [12347]: Version from config: 1.0 -- 04:08:33.346 DEBUG [12347]: Connecting to database... -- 04:08:33.346 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:33.346 SQL [12347]: pgsql_db_connect() -- 04:08:33.350 DEBUG [12347]: Database connection successful -- 04:08:33.350 INFO [12347]: _SERVER found -- 04:08:33.350 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 04:08:33.350 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:33.350 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:33.350 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 04:08:33.350 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:33.361 INFO [12347]: COREGRADE is stopping... -- 04:08:33.361 DEBUG [12347]: Closing database connection -- 04:08:33.361 SQL [12347]: pgsql_close() -- 04:08:33.378 INFO [12334]: COREGRADE is starting... -- 04:08:33.378 INFO [12334]: Version from config: 1.0 -- 04:08:33.378 DEBUG [12334]: Connecting to database... -- 04:08:33.378 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:33.378 SQL [12334]: pgsql_db_connect() -- 04:08:33.393 INFO [12347]: COREGRADE is starting... -- 04:08:33.393 INFO [12347]: Version from config: 1.0 -- 04:08:33.393 DEBUG [12347]: Connecting to database... -- 04:08:33.393 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:33.393 SQL [12347]: pgsql_db_connect() -- 04:08:33.382 DEBUG [12334]: Database connection successful -- 04:08:33.382 INFO [12334]: _SERVER found -- 04:08:33.382 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 04:08:33.382 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:33.382 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:33.382 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 04:08:33.382 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:33.394 INFO [12334]: COREGRADE is stopping... -- 04:08:33.394 DEBUG [12334]: Closing database connection -- 04:08:33.394 SQL [12334]: pgsql_close() -- 04:08:33.397 DEBUG [12347]: Database connection successful -- 04:08:33.397 INFO [12347]: _SERVER found -- 04:08:33.397 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 04:08:33.397 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:33.397 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:33.397 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 04:08:33.397 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:33.409 INFO [12347]: COREGRADE is stopping... -- 04:08:33.409 DEBUG [12347]: Closing database connection -- 04:08:33.409 SQL [12347]: pgsql_close() -- 04:08:33.437 INFO [12347]: COREGRADE is starting... -- 04:08:33.437 INFO [12347]: Version from config: 1.0 -- 04:08:33.437 DEBUG [12347]: Connecting to database... -- 04:08:33.437 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:33.437 SQL [12347]: pgsql_db_connect() -- 04:08:33.441 DEBUG [12347]: Database connection successful -- 04:08:33.441 INFO [12347]: _SERVER found -- 04:08:33.441 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 04:08:33.441 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:33.441 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:33.441 INFO [12347]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 04:08:33.441 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:33.453 INFO [12347]: COREGRADE is stopping... -- 04:08:33.453 DEBUG [12347]: Closing database connection -- 04:08:33.453 SQL [12347]: pgsql_close() -- 04:08:33.459 INFO [12334]: COREGRADE is starting... -- 04:08:33.459 INFO [12334]: Version from config: 1.0 -- 04:08:33.459 DEBUG [12334]: Connecting to database... -- 04:08:33.459 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:33.459 SQL [12334]: pgsql_db_connect() -- 04:08:33.463 DEBUG [12334]: Database connection successful -- 04:08:33.463 INFO [12334]: _SERVER found -- 04:08:33.463 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 04:08:33.463 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:33.463 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:33.463 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 04:08:33.463 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:33.474 INFO [12334]: COREGRADE is stopping... -- 04:08:33.474 DEBUG [12334]: Closing database connection -- 04:08:33.474 SQL [12334]: pgsql_close() -- 04:08:33.482 INFO [12347]: COREGRADE is starting... -- 04:08:33.482 INFO [12347]: Version from config: 1.0 -- 04:08:33.482 DEBUG [12347]: Connecting to database... -- 04:08:33.482 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:33.482 SQL [12347]: pgsql_db_connect() -- 04:08:33.486 DEBUG [12347]: Database connection successful -- 04:08:33.486 INFO [12347]: _SERVER found -- 04:08:33.486 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 04:08:33.486 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:33.486 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:33.486 INFO [12347]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 04:08:33.486 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:33.497 INFO [12347]: COREGRADE is stopping... -- 04:08:33.497 DEBUG [12347]: Closing database connection -- 04:08:33.497 SQL [12347]: pgsql_close() -- 04:08:33.529 INFO [12347]: COREGRADE is starting... -- 04:08:33.529 INFO [12347]: Version from config: 1.0 -- 04:08:33.529 DEBUG [12347]: Connecting to database... -- 04:08:33.529 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:33.529 SQL [12347]: pgsql_db_connect() -- 04:08:33.539 INFO [12334]: COREGRADE is starting... -- 04:08:33.539 INFO [12334]: Version from config: 1.0 -- 04:08:33.539 DEBUG [12334]: Connecting to database... -- 04:08:33.539 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:33.539 SQL [12334]: pgsql_db_connect() -- 04:08:33.533 DEBUG [12347]: Database connection successful -- 04:08:33.533 INFO [12347]: _SERVER found -- 04:08:33.533 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 04:08:33.533 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:33.533 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:33.533 INFO [12347]: QUERY_STRING = /assets/js/pages/dashboard.js -- 04:08:33.533 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:33.545 INFO [12347]: COREGRADE is stopping... -- 04:08:33.545 DEBUG [12347]: Closing database connection -- 04:08:33.545 SQL [12347]: pgsql_close() -- 04:08:33.543 DEBUG [12334]: Database connection successful -- 04:08:33.543 INFO [12334]: _SERVER found -- 04:08:33.543 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 04:08:33.543 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:33.543 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:33.543 INFO [12334]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 04:08:33.543 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:33.554 INFO [12334]: COREGRADE is stopping... -- 04:08:33.554 DEBUG [12334]: Closing database connection -- 04:08:33.554 SQL [12334]: pgsql_close() -- 04:08:33.567 INFO [12347]: COREGRADE is starting... -- 04:08:33.567 INFO [12347]: Version from config: 1.0 -- 04:08:33.567 DEBUG [12347]: Connecting to database... -- 04:08:33.567 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:33.567 SQL [12347]: pgsql_db_connect() -- 04:08:33.571 DEBUG [12347]: Database connection successful -- 04:08:33.571 INFO [12347]: _SERVER found -- 04:08:33.571 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 04:08:33.571 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:33.571 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:33.571 INFO [12347]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 04:08:33.571 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:33.583 INFO [12347]: COREGRADE is stopping... -- 04:08:33.583 DEBUG [12347]: Closing database connection -- 04:08:33.583 SQL [12347]: pgsql_close() -- 04:08:33.611 INFO [12347]: COREGRADE is starting... -- 04:08:33.611 INFO [12347]: Version from config: 1.0 -- 04:08:33.611 DEBUG [12347]: Connecting to database... -- 04:08:33.611 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:33.611 SQL [12347]: pgsql_db_connect() -- 04:08:33.619 INFO [12334]: COREGRADE is starting... -- 04:08:33.619 INFO [12334]: Version from config: 1.0 -- 04:08:33.619 DEBUG [12334]: Connecting to database... -- 04:08:33.619 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:33.619 SQL [12334]: pgsql_db_connect() -- 04:08:33.615 DEBUG [12347]: Database connection successful -- 04:08:33.615 INFO [12347]: _SERVER found -- 04:08:33.615 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 04:08:33.615 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:33.615 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:33.615 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 04:08:33.615 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:33.626 INFO [12347]: COREGRADE is stopping... -- 04:08:33.626 DEBUG [12347]: Closing database connection -- 04:08:33.626 SQL [12347]: pgsql_close() -- 04:08:33.623 DEBUG [12334]: Database connection successful -- 04:08:33.623 INFO [12334]: _SERVER found -- 04:08:33.623 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 04:08:33.623 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:33.623 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:33.623 INFO [12334]: QUERY_STRING = /assets/js/pages/picker_date.js -- 04:08:33.623 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:33.634 INFO [12334]: COREGRADE is stopping... -- 04:08:33.634 DEBUG [12334]: Closing database connection -- 04:08:33.634 SQL [12334]: pgsql_close() -- 04:08:33.651 INFO [12347]: COREGRADE is starting... -- 04:08:33.651 INFO [12347]: Version from config: 1.0 -- 04:08:33.651 DEBUG [12347]: Connecting to database... -- 04:08:33.651 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:33.651 SQL [12347]: pgsql_db_connect() -- 04:08:33.655 DEBUG [12347]: Database connection successful -- 04:08:33.655 INFO [12347]: _SERVER found -- 04:08:33.655 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 04:08:33.655 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:33.655 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:33.655 INFO [12347]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 04:08:33.655 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:33.667 INFO [12347]: COREGRADE is stopping... -- 04:08:33.667 DEBUG [12347]: Closing database connection -- 04:08:33.667 SQL [12347]: pgsql_close() -- 04:08:33.692 INFO [12347]: COREGRADE is starting... -- 04:08:33.692 INFO [12347]: Version from config: 1.0 -- 04:08:33.692 DEBUG [12347]: Connecting to database... -- 04:08:33.692 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:33.692 SQL [12347]: pgsql_db_connect() -- 04:08:33.699 INFO [12334]: COREGRADE is starting... -- 04:08:33.699 INFO [12334]: Version from config: 1.0 -- 04:08:33.699 DEBUG [12334]: Connecting to database... -- 04:08:33.699 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:33.699 SQL [12334]: pgsql_db_connect() -- 04:08:33.696 DEBUG [12347]: Database connection successful -- 04:08:33.696 INFO [12347]: _SERVER found -- 04:08:33.696 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 04:08:33.696 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:33.696 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:33.696 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 04:08:33.696 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:33.708 INFO [12347]: COREGRADE is stopping... -- 04:08:33.708 DEBUG [12347]: Closing database connection -- 04:08:33.708 SQL [12347]: pgsql_close() -- 04:08:33.703 DEBUG [12334]: Database connection successful -- 04:08:33.703 INFO [12334]: _SERVER found -- 04:08:33.703 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 04:08:33.703 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:33.703 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:33.703 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 04:08:33.703 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:33.715 INFO [12334]: COREGRADE is stopping... -- 04:08:33.715 DEBUG [12334]: Closing database connection -- 04:08:33.715 SQL [12334]: pgsql_close() -- 04:08:33.735 INFO [12347]: COREGRADE is starting... -- 04:08:33.735 INFO [12347]: Version from config: 1.0 -- 04:08:33.735 DEBUG [12347]: Connecting to database... -- 04:08:33.735 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:33.735 SQL [12347]: pgsql_db_connect() -- 04:08:33.739 DEBUG [12347]: Database connection successful -- 04:08:33.739 INFO [12347]: _SERVER found -- 04:08:33.739 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 04:08:33.739 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:33.739 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:33.739 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 04:08:33.739 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:33.750 INFO [12347]: COREGRADE is stopping... -- 04:08:33.750 DEBUG [12347]: Closing database connection -- 04:08:33.751 SQL [12347]: pgsql_close() -- 04:08:33.773 INFO [12347]: COREGRADE is starting... -- 04:08:33.773 INFO [12347]: Version from config: 1.0 -- 04:08:33.773 DEBUG [12347]: Connecting to database... -- 04:08:33.773 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:33.773 SQL [12347]: pgsql_db_connect() -- 04:08:33.779 INFO [12334]: COREGRADE is starting... -- 04:08:33.779 INFO [12334]: Version from config: 1.0 -- 04:08:33.779 DEBUG [12334]: Connecting to database... -- 04:08:33.779 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:33.779 SQL [12334]: pgsql_db_connect() -- 04:08:33.777 DEBUG [12347]: Database connection successful -- 04:08:33.777 INFO [12347]: _SERVER found -- 04:08:33.777 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 04:08:33.777 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:33.777 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:33.777 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 04:08:33.777 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:33.789 INFO [12347]: COREGRADE is stopping... -- 04:08:33.789 DEBUG [12347]: Closing database connection -- 04:08:33.789 SQL [12347]: pgsql_close() -- 04:08:33.783 DEBUG [12334]: Database connection successful -- 04:08:33.783 INFO [12334]: _SERVER found -- 04:08:33.783 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 04:08:33.783 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:33.783 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:33.783 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 04:08:33.783 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:33.795 INFO [12334]: COREGRADE is stopping... -- 04:08:33.795 DEBUG [12334]: Closing database connection -- 04:08:33.795 SQL [12334]: pgsql_close() -- 04:08:33.819 INFO [12347]: COREGRADE is starting... -- 04:08:33.819 INFO [12347]: Version from config: 1.0 -- 04:08:33.819 DEBUG [12347]: Connecting to database... -- 04:08:33.819 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:33.819 SQL [12347]: pgsql_db_connect() -- 04:08:33.823 DEBUG [12347]: Database connection successful -- 04:08:33.823 INFO [12347]: _SERVER found -- 04:08:33.823 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 04:08:33.823 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:33.823 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:33.823 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 04:08:33.823 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:33.834 INFO [12347]: COREGRADE is stopping... -- 04:08:33.834 DEBUG [12347]: Closing database connection -- 04:08:33.834 SQL [12347]: pgsql_close() -- 04:08:33.854 INFO [12347]: COREGRADE is starting... -- 04:08:33.854 INFO [12347]: Version from config: 1.0 -- 04:08:33.854 DEBUG [12347]: Connecting to database... -- 04:08:33.854 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:33.854 SQL [12347]: pgsql_db_connect() -- 04:08:33.859 INFO [12334]: COREGRADE is starting... -- 04:08:33.859 INFO [12334]: Version from config: 1.0 -- 04:08:33.859 DEBUG [12334]: Connecting to database... -- 04:08:33.859 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:33.859 SQL [12334]: pgsql_db_connect() -- 04:08:33.858 DEBUG [12347]: Database connection successful -- 04:08:33.858 INFO [12347]: _SERVER found -- 04:08:33.858 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 04:08:33.858 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:33.858 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:33.858 INFO [12347]: QUERY_STRING = /assets/customjs/general.js -- 04:08:33.858 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:33.869 INFO [12347]: COREGRADE is stopping... -- 04:08:33.869 DEBUG [12347]: Closing database connection -- 04:08:33.869 SQL [12347]: pgsql_close() -- 04:08:33.863 DEBUG [12334]: Database connection successful -- 04:08:33.863 INFO [12334]: _SERVER found -- 04:08:33.863 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 04:08:33.863 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:33.863 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:33.863 INFO [12334]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 04:08:33.863 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:33.874 INFO [12334]: COREGRADE is stopping... -- 04:08:33.874 DEBUG [12334]: Closing database connection -- 04:08:33.874 SQL [12334]: pgsql_close() -- 04:08:33.939 INFO [12334]: COREGRADE is starting... -- 04:08:33.939 INFO [12334]: Version from config: 1.0 -- 04:08:33.939 DEBUG [12334]: Connecting to database... -- 04:08:33.940 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:33.940 SQL [12334]: pgsql_db_connect() -- 04:08:33.943 DEBUG [12334]: Database connection successful -- 04:08:33.943 INFO [12334]: _SERVER found -- 04:08:33.943 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 04:08:33.943 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:33.943 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:33.943 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 04:08:33.943 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:33.955 INFO [12334]: COREGRADE is stopping... -- 04:08:33.955 DEBUG [12334]: Closing database connection -- 04:08:33.955 SQL [12334]: pgsql_close() -- 04:08:34.020 INFO [12334]: COREGRADE is starting... -- 04:08:34.021 INFO [12334]: Version from config: 1.0 -- 04:08:34.021 DEBUG [12334]: Connecting to database... -- 04:08:34.021 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:34.021 SQL [12334]: pgsql_db_connect() -- 04:08:34.024 DEBUG [12334]: Database connection successful -- 04:08:34.025 INFO [12334]: _SERVER found -- 04:08:34.025 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 04:08:34.025 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:34.025 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:34.025 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 04:08:34.025 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:34.036 INFO [12334]: COREGRADE is stopping... -- 04:08:34.036 DEBUG [12334]: Closing database connection -- 04:08:34.036 SQL [12334]: pgsql_close() -- 04:08:34.101 INFO [12334]: COREGRADE is starting... -- 04:08:34.102 INFO [12334]: Version from config: 1.0 -- 04:08:34.102 DEBUG [12334]: Connecting to database... -- 04:08:34.102 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:34.102 SQL [12334]: pgsql_db_connect() -- 04:08:34.106 DEBUG [12334]: Database connection successful -- 04:08:34.106 INFO [12334]: _SERVER found -- 04:08:34.106 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 04:08:34.106 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:34.106 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:34.106 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 04:08:34.106 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:34.117 INFO [12334]: COREGRADE is stopping... -- 04:08:34.117 DEBUG [12334]: Closing database connection -- 04:08:34.117 SQL [12334]: pgsql_close() -- 04:08:34.183 INFO [12334]: COREGRADE is starting... -- 04:08:34.183 INFO [12334]: Version from config: 1.0 -- 04:08:34.183 DEBUG [12334]: Connecting to database... -- 04:08:34.183 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:34.183 SQL [12334]: pgsql_db_connect() -- 04:08:34.187 DEBUG [12334]: Database connection successful -- 04:08:34.187 INFO [12334]: _SERVER found -- 04:08:34.187 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 04:08:34.187 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:34.187 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:34.187 INFO [12334]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 04:08:34.187 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:34.199 INFO [12334]: COREGRADE is stopping... -- 04:08:34.199 DEBUG [12334]: Closing database connection -- 04:08:34.199 SQL [12334]: pgsql_close() -- 04:08:34.264 INFO [12334]: COREGRADE is starting... -- 04:08:34.264 INFO [12334]: Version from config: 1.0 -- 04:08:34.264 DEBUG [12334]: Connecting to database... -- 04:08:34.264 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:34.264 SQL [12334]: pgsql_db_connect() -- 04:08:34.268 DEBUG [12334]: Database connection successful -- 04:08:34.268 INFO [12334]: _SERVER found -- 04:08:34.268 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 04:08:34.268 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:34.268 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:34.268 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 04:08:34.268 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:34.280 INFO [12334]: COREGRADE is stopping... -- 04:08:34.280 DEBUG [12334]: Closing database connection -- 04:08:34.280 SQL [12334]: pgsql_close() -- 04:08:34.345 INFO [12334]: COREGRADE is starting... -- 04:08:34.346 INFO [12334]: Version from config: 1.0 -- 04:08:34.346 DEBUG [12334]: Connecting to database... -- 04:08:34.346 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:34.346 SQL [12334]: pgsql_db_connect() -- 04:08:34.350 DEBUG [12334]: Database connection successful -- 04:08:34.350 INFO [12334]: _SERVER found -- 04:08:34.350 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 04:08:34.350 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:34.350 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:34.350 INFO [12334]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 04:08:34.350 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:34.361 INFO [12334]: COREGRADE is stopping... -- 04:08:34.361 DEBUG [12334]: Closing database connection -- 04:08:34.361 SQL [12334]: pgsql_close() -- 04:08:34.427 INFO [12334]: COREGRADE is starting... -- 04:08:34.427 INFO [12334]: Version from config: 1.0 -- 04:08:34.427 DEBUG [12334]: Connecting to database... -- 04:08:34.427 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:34.427 SQL [12334]: pgsql_db_connect() -- 04:08:34.431 DEBUG [12334]: Database connection successful -- 04:08:34.431 INFO [12334]: _SERVER found -- 04:08:34.431 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 04:08:34.431 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:34.431 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:34.431 INFO [12334]: QUERY_STRING = /assets/js/pages/dashboard.js -- 04:08:34.431 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:34.443 INFO [12334]: COREGRADE is stopping... -- 04:08:34.443 DEBUG [12334]: Closing database connection -- 04:08:34.443 SQL [12334]: pgsql_close() -- 04:08:34.509 INFO [12334]: COREGRADE is starting... -- 04:08:34.509 INFO [12334]: Version from config: 1.0 -- 04:08:34.509 DEBUG [12334]: Connecting to database... -- 04:08:34.510 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:34.510 SQL [12334]: pgsql_db_connect() -- 04:08:34.513 DEBUG [12334]: Database connection successful -- 04:08:34.513 INFO [12334]: _SERVER found -- 04:08:34.513 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 04:08:34.513 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:34.513 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:34.513 INFO [12334]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 04:08:34.513 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:34.525 INFO [12334]: COREGRADE is stopping... -- 04:08:34.525 DEBUG [12334]: Closing database connection -- 04:08:34.525 SQL [12334]: pgsql_close() -- 04:08:34.590 INFO [12334]: COREGRADE is starting... -- 04:08:34.590 INFO [12334]: Version from config: 1.0 -- 04:08:34.590 DEBUG [12334]: Connecting to database... -- 04:08:34.591 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:34.591 SQL [12334]: pgsql_db_connect() -- 04:08:34.594 DEBUG [12334]: Database connection successful -- 04:08:34.594 INFO [12334]: _SERVER found -- 04:08:34.594 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 04:08:34.594 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:34.594 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:34.594 INFO [12334]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 04:08:34.594 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:34.606 INFO [12334]: COREGRADE is stopping... -- 04:08:34.606 DEBUG [12334]: Closing database connection -- 04:08:34.606 SQL [12334]: pgsql_close() -- 04:08:34.671 INFO [12334]: COREGRADE is starting... -- 04:08:34.671 INFO [12334]: Version from config: 1.0 -- 04:08:34.671 DEBUG [12334]: Connecting to database... -- 04:08:34.671 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:34.671 SQL [12334]: pgsql_db_connect() -- 04:08:34.675 DEBUG [12334]: Database connection successful -- 04:08:34.675 INFO [12334]: _SERVER found -- 04:08:34.675 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 04:08:34.675 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:34.675 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:34.675 INFO [12334]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 04:08:34.675 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:34.687 INFO [12334]: COREGRADE is stopping... -- 04:08:34.687 DEBUG [12334]: Closing database connection -- 04:08:34.687 SQL [12334]: pgsql_close() -- 04:08:34.752 INFO [12334]: COREGRADE is starting... -- 04:08:34.752 INFO [12334]: Version from config: 1.0 -- 04:08:34.752 DEBUG [12334]: Connecting to database... -- 04:08:34.752 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:34.752 SQL [12334]: pgsql_db_connect() -- 04:08:34.756 DEBUG [12334]: Database connection successful -- 04:08:34.756 INFO [12334]: _SERVER found -- 04:08:34.756 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 04:08:34.756 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:34.756 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:34.756 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 04:08:34.756 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:34.768 INFO [12334]: COREGRADE is stopping... -- 04:08:34.768 DEBUG [12334]: Closing database connection -- 04:08:34.768 SQL [12334]: pgsql_close() -- 04:08:34.833 INFO [12334]: COREGRADE is starting... -- 04:08:34.833 INFO [12334]: Version from config: 1.0 -- 04:08:34.833 DEBUG [12334]: Connecting to database... -- 04:08:34.833 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:34.833 SQL [12334]: pgsql_db_connect() -- 04:08:34.837 DEBUG [12334]: Database connection successful -- 04:08:34.837 INFO [12334]: _SERVER found -- 04:08:34.837 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 04:08:34.837 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:34.837 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:34.837 INFO [12334]: QUERY_STRING = /assets/js/pages/picker_date.js -- 04:08:34.837 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:34.848 INFO [12334]: COREGRADE is stopping... -- 04:08:34.848 DEBUG [12334]: Closing database connection -- 04:08:34.848 SQL [12334]: pgsql_close() -- 04:08:34.913 INFO [12334]: COREGRADE is starting... -- 04:08:34.914 INFO [12334]: Version from config: 1.0 -- 04:08:34.914 DEBUG [12334]: Connecting to database... -- 04:08:34.914 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:34.914 SQL [12334]: pgsql_db_connect() -- 04:08:34.918 DEBUG [12334]: Database connection successful -- 04:08:34.918 INFO [12334]: _SERVER found -- 04:08:34.918 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 04:08:34.918 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:34.918 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:34.918 INFO [12334]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 04:08:34.918 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:34.929 INFO [12334]: COREGRADE is stopping... -- 04:08:34.929 DEBUG [12334]: Closing database connection -- 04:08:34.929 SQL [12334]: pgsql_close() -- 04:08:34.994 INFO [12334]: COREGRADE is starting... -- 04:08:34.994 INFO [12334]: Version from config: 1.0 -- 04:08:34.994 DEBUG [12334]: Connecting to database... -- 04:08:34.994 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:34.995 SQL [12334]: pgsql_db_connect() -- 04:08:34.998 DEBUG [12334]: Database connection successful -- 04:08:34.998 INFO [12334]: _SERVER found -- 04:08:34.998 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 04:08:34.998 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:34.998 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:34.998 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 04:08:34.998 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:35.010 INFO [12334]: COREGRADE is stopping... -- 04:08:35.010 DEBUG [12334]: Closing database connection -- 04:08:35.010 SQL [12334]: pgsql_close() -- 04:08:35.075 INFO [12334]: COREGRADE is starting... -- 04:08:35.075 INFO [12334]: Version from config: 1.0 -- 04:08:35.075 DEBUG [12334]: Connecting to database... -- 04:08:35.075 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:35.075 SQL [12334]: pgsql_db_connect() -- 04:08:35.079 DEBUG [12334]: Database connection successful -- 04:08:35.079 INFO [12334]: _SERVER found -- 04:08:35.079 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 04:08:35.079 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:35.079 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:35.079 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 04:08:35.079 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:35.091 INFO [12334]: COREGRADE is stopping... -- 04:08:35.091 DEBUG [12334]: Closing database connection -- 04:08:35.091 SQL [12334]: pgsql_close() -- 04:08:35.156 INFO [12334]: COREGRADE is starting... -- 04:08:35.156 INFO [12334]: Version from config: 1.0 -- 04:08:35.156 DEBUG [12334]: Connecting to database... -- 04:08:35.156 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:35.156 SQL [12334]: pgsql_db_connect() -- 04:08:35.160 DEBUG [12334]: Database connection successful -- 04:08:35.160 INFO [12334]: _SERVER found -- 04:08:35.160 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 04:08:35.160 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:35.160 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:35.160 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 04:08:35.160 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:35.172 INFO [12334]: COREGRADE is stopping... -- 04:08:35.172 DEBUG [12334]: Closing database connection -- 04:08:35.172 SQL [12334]: pgsql_close() -- 04:08:35.237 INFO [12334]: COREGRADE is starting... -- 04:08:35.237 INFO [12334]: Version from config: 1.0 -- 04:08:35.237 DEBUG [12334]: Connecting to database... -- 04:08:35.237 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:35.237 SQL [12334]: pgsql_db_connect() -- 04:08:35.241 DEBUG [12334]: Database connection successful -- 04:08:35.241 INFO [12334]: _SERVER found -- 04:08:35.241 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 04:08:35.241 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:35.241 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:35.241 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 04:08:35.241 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:35.253 INFO [12334]: COREGRADE is stopping... -- 04:08:35.253 DEBUG [12334]: Closing database connection -- 04:08:35.253 SQL [12334]: pgsql_close() -- 04:08:35.328 INFO [12334]: COREGRADE is starting... -- 04:08:35.328 INFO [12334]: Version from config: 1.0 -- 04:08:35.328 DEBUG [12334]: Connecting to database... -- 04:08:35.328 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:35.329 SQL [12334]: pgsql_db_connect() -- 04:08:35.333 DEBUG [12334]: Database connection successful -- 04:08:35.333 INFO [12334]: _SERVER found -- 04:08:35.333 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 04:08:35.333 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:35.333 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:35.333 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 04:08:35.333 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:35.344 INFO [12334]: COREGRADE is stopping... -- 04:08:35.344 DEBUG [12334]: Closing database connection -- 04:08:35.344 SQL [12334]: pgsql_close() -- 04:08:35.409 INFO [12334]: COREGRADE is starting... -- 04:08:35.410 INFO [12334]: Version from config: 1.0 -- 04:08:35.410 DEBUG [12334]: Connecting to database... -- 04:08:35.410 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:35.410 SQL [12334]: pgsql_db_connect() -- 04:08:35.414 DEBUG [12334]: Database connection successful -- 04:08:35.414 INFO [12334]: _SERVER found -- 04:08:35.414 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 04:08:35.414 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:35.414 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:35.414 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 04:08:35.414 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:35.425 INFO [12334]: COREGRADE is stopping... -- 04:08:35.425 DEBUG [12334]: Closing database connection -- 04:08:35.425 SQL [12334]: pgsql_close() -- 04:08:35.492 INFO [12334]: COREGRADE is starting... -- 04:08:35.492 INFO [12334]: Version from config: 1.0 -- 04:08:35.492 DEBUG [12334]: Connecting to database... -- 04:08:35.492 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:08:35.492 SQL [12334]: pgsql_db_connect() -- 04:08:35.496 DEBUG [12334]: Database connection successful -- 04:08:35.496 INFO [12334]: _SERVER found -- 04:08:35.496 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 04:08:35.496 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:08:35.496 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:08:35.496 INFO [12334]: QUERY_STRING = /assets/customjs/general.js -- 04:08:35.496 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:08:35.508 INFO [12334]: COREGRADE is stopping... -- 04:08:35.508 DEBUG [12334]: Closing database connection -- 04:08:35.508 SQL [12334]: pgsql_close() -- 04:28:35.728 INFO [12247]: COREGRADE is starting... -- 04:28:35.728 INFO [12247]: Version from config: 1.0 -- 04:28:35.728 DEBUG [12247]: Connecting to database... -- 04:28:35.728 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:35.728 SQL [12247]: pgsql_db_connect() -- 04:28:35.734 DEBUG [12247]: Database connection successful -- 04:28:35.734 INFO [12247]: _SERVER found -- 04:28:35.734 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 04:28:35.734 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:35.734 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=hl2el0llchffjfd6k4u81n87osf08ff9 -- 04:28:35.734 INFO [12247]: QUERY_STRING = /logout -- 04:28:35.734 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:35.772 INFO [12247]: COREGRADE is stopping... -- 04:28:35.772 DEBUG [12247]: Closing database connection -- 04:28:35.772 SQL [12247]: pgsql_close() -- 04:28:35.853 INFO [12247]: COREGRADE is starting... -- 04:28:35.853 INFO [12247]: Version from config: 1.0 -- 04:28:35.853 DEBUG [12247]: Connecting to database... -- 04:28:35.853 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:35.853 SQL [12247]: pgsql_db_connect() -- 04:28:35.857 DEBUG [12247]: Database connection successful -- 04:28:35.857 INFO [12247]: _SERVER found -- 04:28:35.857 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 04:28:35.857 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:35.857 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:35.857 INFO [12247]: QUERY_STRING = /start -- 04:28:35.857 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:35.898 INFO [12247]: COREGRADE is stopping... -- 04:28:35.898 DEBUG [12247]: Closing database connection -- 04:28:35.898 SQL [12247]: pgsql_close() -- 04:28:36.025 INFO [12247]: COREGRADE is starting... -- 04:28:36.026 INFO [12247]: Version from config: 1.0 -- 04:28:36.026 DEBUG [12247]: Connecting to database... -- 04:28:36.026 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:36.026 SQL [12247]: pgsql_db_connect() -- 04:28:36.030 DEBUG [12247]: Database connection successful -- 04:28:36.030 INFO [12247]: _SERVER found -- 04:28:36.030 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 04:28:36.030 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:36.030 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:36.030 INFO [12247]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 04:28:36.030 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:36.041 INFO [12247]: COREGRADE is stopping... -- 04:28:36.041 DEBUG [12247]: Closing database connection -- 04:28:36.041 SQL [12247]: pgsql_close() -- 04:28:36.047 INFO [12247]: COREGRADE is starting... -- 04:28:36.047 INFO [12247]: Version from config: 1.0 -- 04:28:36.047 DEBUG [12247]: Connecting to database... -- 04:28:36.047 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:36.047 SQL [12247]: pgsql_db_connect() -- 04:28:36.051 DEBUG [12247]: Database connection successful -- 04:28:36.051 INFO [12247]: _SERVER found -- 04:28:36.051 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 04:28:36.051 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:36.051 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:36.051 INFO [12247]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 04:28:36.051 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:36.062 INFO [12247]: COREGRADE is stopping... -- 04:28:36.062 DEBUG [12247]: Closing database connection -- 04:28:36.062 SQL [12247]: pgsql_close() -- 04:28:36.100 INFO [12246]: COREGRADE is starting... -- 04:28:36.100 INFO [12246]: Version from config: 1.0 -- 04:28:36.100 DEBUG [12246]: Connecting to database... -- 04:28:36.100 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:36.100 SQL [12246]: pgsql_db_connect() -- 04:28:36.104 DEBUG [12246]: Database connection successful -- 04:28:36.104 INFO [12246]: _SERVER found -- 04:28:36.104 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 04:28:36.104 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:36.104 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:36.104 INFO [12246]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 04:28:36.104 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:36.118 INFO [12246]: COREGRADE is stopping... -- 04:28:36.118 DEBUG [12246]: Closing database connection -- 04:28:36.118 SQL [12246]: pgsql_close() -- 04:28:36.122 INFO [12247]: COREGRADE is starting... -- 04:28:36.122 INFO [12247]: Version from config: 1.0 -- 04:28:36.122 DEBUG [12247]: Connecting to database... -- 04:28:36.122 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:36.122 SQL [12247]: pgsql_db_connect() -- 04:28:36.131 INFO [12248]: COREGRADE is starting... -- 04:28:36.132 INFO [12248]: Version from config: 1.0 -- 04:28:36.132 DEBUG [12248]: Connecting to database... -- 04:28:36.132 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:36.132 SQL [12248]: pgsql_db_connect() -- 04:28:36.126 DEBUG [12247]: Database connection successful -- 04:28:36.126 INFO [12247]: _SERVER found -- 04:28:36.126 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 04:28:36.126 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:36.126 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:36.126 INFO [12247]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 04:28:36.126 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:36.137 INFO [12247]: COREGRADE is stopping... -- 04:28:36.137 DEBUG [12247]: Closing database connection -- 04:28:36.137 SQL [12247]: pgsql_close() -- 04:28:36.136 DEBUG [12248]: Database connection successful -- 04:28:36.136 INFO [12248]: _SERVER found -- 04:28:36.136 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 04:28:36.136 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:36.136 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:36.136 INFO [12248]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 04:28:36.136 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:36.148 INFO [12248]: COREGRADE is stopping... -- 04:28:36.148 DEBUG [12248]: Closing database connection -- 04:28:36.148 SQL [12248]: pgsql_close() -- 04:28:36.200 INFO [12246]: COREGRADE is starting... -- 04:28:36.200 INFO [12246]: Version from config: 1.0 -- 04:28:36.200 DEBUG [12246]: Connecting to database... -- 04:28:36.200 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:36.200 SQL [12246]: pgsql_db_connect() -- 04:28:36.204 DEBUG [12246]: Database connection successful -- 04:28:36.204 INFO [12246]: _SERVER found -- 04:28:36.204 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 04:28:36.204 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:36.204 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:36.204 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 04:28:36.204 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:36.215 INFO [12246]: COREGRADE is stopping... -- 04:28:36.215 DEBUG [12246]: Closing database connection -- 04:28:36.215 SQL [12246]: pgsql_close() -- 04:28:36.218 INFO [12248]: COREGRADE is starting... -- 04:28:36.218 INFO [12247]: COREGRADE is starting... -- 04:28:36.218 INFO [12247]: Version from config: 1.0 -- 04:28:36.218 DEBUG [12247]: Connecting to database... -- 04:28:36.218 INFO [12248]: Version from config: 1.0 -- 04:28:36.218 DEBUG [12248]: Connecting to database... -- 04:28:36.218 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:36.218 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:36.218 SQL [12247]: pgsql_db_connect() -- 04:28:36.218 SQL [12248]: pgsql_db_connect() -- 04:28:36.222 DEBUG [12248]: Database connection successful -- 04:28:36.222 INFO [12248]: _SERVER found -- 04:28:36.222 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 04:28:36.222 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:36.222 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:36.222 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 04:28:36.222 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:36.234 INFO [12248]: COREGRADE is stopping... -- 04:28:36.222 DEBUG [12247]: Database connection successful -- 04:28:36.222 INFO [12247]: _SERVER found -- 04:28:36.222 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 04:28:36.222 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:36.222 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:36.222 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 04:28:36.222 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:36.234 INFO [12247]: COREGRADE is stopping... -- 04:28:36.234 DEBUG [12248]: Closing database connection -- 04:28:36.234 DEBUG [12247]: Closing database connection -- 04:28:36.234 SQL [12248]: pgsql_close() -- 04:28:36.234 SQL [12247]: pgsql_close() -- 04:28:36.296 INFO [12246]: COREGRADE is starting... -- 04:28:36.296 INFO [12246]: Version from config: 1.0 -- 04:28:36.296 DEBUG [12246]: Connecting to database... -- 04:28:36.296 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:36.296 SQL [12246]: pgsql_db_connect() -- 04:28:36.302 INFO [12248]: COREGRADE is starting... -- 04:28:36.302 INFO [12248]: Version from config: 1.0 -- 04:28:36.302 DEBUG [12248]: Connecting to database... -- 04:28:36.302 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:36.302 SQL [12248]: pgsql_db_connect() -- 04:28:36.300 DEBUG [12246]: Database connection successful -- 04:28:36.300 INFO [12246]: _SERVER found -- 04:28:36.300 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 04:28:36.300 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:36.300 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:36.300 INFO [12246]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 04:28:36.300 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:36.311 INFO [12246]: COREGRADE is stopping... -- 04:28:36.312 DEBUG [12246]: Closing database connection -- 04:28:36.312 SQL [12246]: pgsql_close() -- 04:28:36.315 INFO [12247]: COREGRADE is starting... -- 04:28:36.315 INFO [12247]: Version from config: 1.0 -- 04:28:36.315 DEBUG [12247]: Connecting to database... -- 04:28:36.315 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:36.315 SQL [12247]: pgsql_db_connect() -- 04:28:36.306 DEBUG [12248]: Database connection successful -- 04:28:36.306 INFO [12248]: _SERVER found -- 04:28:36.306 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 04:28:36.306 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:36.306 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:36.306 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 04:28:36.306 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:36.318 INFO [12248]: COREGRADE is stopping... -- 04:28:36.319 DEBUG [12248]: Closing database connection -- 04:28:36.319 SQL [12248]: pgsql_close() -- 04:28:36.319 DEBUG [12247]: Database connection successful -- 04:28:36.319 INFO [12247]: _SERVER found -- 04:28:36.319 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 04:28:36.319 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:36.319 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:36.319 INFO [12247]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 04:28:36.319 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:36.331 INFO [12247]: COREGRADE is stopping... -- 04:28:36.331 DEBUG [12247]: Closing database connection -- 04:28:36.331 SQL [12247]: pgsql_close() -- 04:28:36.386 INFO [12247]: COREGRADE is starting... -- 04:28:36.386 INFO [12247]: Version from config: 1.0 -- 04:28:36.386 DEBUG [12247]: Connecting to database... -- 04:28:36.386 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:36.387 SQL [12247]: pgsql_db_connect() -- 04:28:36.397 INFO [12246]: COREGRADE is starting... -- 04:28:36.397 INFO [12246]: Version from config: 1.0 -- 04:28:36.397 DEBUG [12246]: Connecting to database... -- 04:28:36.397 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:36.397 SQL [12246]: pgsql_db_connect() -- 04:28:36.400 INFO [12248]: COREGRADE is starting... -- 04:28:36.401 INFO [12248]: Version from config: 1.0 -- 04:28:36.401 DEBUG [12248]: Connecting to database... -- 04:28:36.401 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:36.401 SQL [12248]: pgsql_db_connect() -- 04:28:36.391 DEBUG [12247]: Database connection successful -- 04:28:36.391 INFO [12247]: _SERVER found -- 04:28:36.391 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 04:28:36.391 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:36.391 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:36.391 INFO [12247]: QUERY_STRING = /assets/js/pages/dashboard.js -- 04:28:36.391 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:36.402 INFO [12247]: COREGRADE is stopping... -- 04:28:36.402 DEBUG [12247]: Closing database connection -- 04:28:36.402 SQL [12247]: pgsql_close() -- 04:28:36.401 DEBUG [12246]: Database connection successful -- 04:28:36.401 INFO [12246]: _SERVER found -- 04:28:36.401 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 04:28:36.401 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:36.401 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:36.401 INFO [12246]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 04:28:36.401 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:36.414 INFO [12246]: COREGRADE is stopping... -- 04:28:36.415 DEBUG [12246]: Closing database connection -- 04:28:36.415 SQL [12246]: pgsql_close() -- 04:28:36.406 DEBUG [12248]: Database connection successful -- 04:28:36.406 INFO [12248]: _SERVER found -- 04:28:36.406 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 04:28:36.406 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:36.406 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:36.406 INFO [12248]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 04:28:36.406 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:36.419 INFO [12248]: COREGRADE is stopping... -- 04:28:36.419 DEBUG [12248]: Closing database connection -- 04:28:36.419 SQL [12248]: pgsql_close() -- 04:28:36.470 INFO [12248]: COREGRADE is starting... -- 04:28:36.471 INFO [12248]: Version from config: 1.0 -- 04:28:36.471 DEBUG [12248]: Connecting to database... -- 04:28:36.471 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:36.471 SQL [12248]: pgsql_db_connect() -- 04:28:36.485 INFO [12246]: COREGRADE is starting... -- 04:28:36.486 INFO [12246]: Version from config: 1.0 -- 04:28:36.486 DEBUG [12246]: Connecting to database... -- 04:28:36.486 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:36.486 SQL [12246]: pgsql_db_connect() -- 04:28:36.475 DEBUG [12248]: Database connection successful -- 04:28:36.475 INFO [12248]: _SERVER found -- 04:28:36.475 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 04:28:36.475 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:36.475 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:36.475 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 04:28:36.475 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:36.486 INFO [12248]: COREGRADE is stopping... -- 04:28:36.486 DEBUG [12248]: Closing database connection -- 04:28:36.487 SQL [12248]: pgsql_close() -- 04:28:36.489 INFO [12247]: COREGRADE is starting... -- 04:28:36.489 INFO [12247]: Version from config: 1.0 -- 04:28:36.489 DEBUG [12247]: Connecting to database... -- 04:28:36.489 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:36.489 SQL [12247]: pgsql_db_connect() -- 04:28:36.490 DEBUG [12246]: Database connection successful -- 04:28:36.490 INFO [12246]: _SERVER found -- 04:28:36.490 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 04:28:36.490 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:36.490 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:36.490 INFO [12246]: QUERY_STRING = /assets/js/pages/picker_date.js -- 04:28:36.490 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:36.502 INFO [12246]: COREGRADE is stopping... -- 04:28:36.502 DEBUG [12246]: Closing database connection -- 04:28:36.502 SQL [12246]: pgsql_close() -- 04:28:36.493 DEBUG [12247]: Database connection successful -- 04:28:36.493 INFO [12247]: _SERVER found -- 04:28:36.493 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 04:28:36.493 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:36.493 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:36.493 INFO [12247]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 04:28:36.493 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:36.504 INFO [12247]: COREGRADE is stopping... -- 04:28:36.504 DEBUG [12247]: Closing database connection -- 04:28:36.504 SQL [12247]: pgsql_close() -- 04:28:36.555 INFO [12247]: COREGRADE is starting... -- 04:28:36.555 INFO [12247]: Version from config: 1.0 -- 04:28:36.555 DEBUG [12247]: Connecting to database... -- 04:28:36.555 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:36.555 SQL [12247]: pgsql_db_connect() -- 04:28:36.559 DEBUG [12247]: Database connection successful -- 04:28:36.559 INFO [12247]: _SERVER found -- 04:28:36.559 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 04:28:36.559 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:36.559 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:36.559 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 04:28:36.559 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:36.571 INFO [12247]: COREGRADE is stopping... -- 04:28:36.571 DEBUG [12247]: Closing database connection -- 04:28:36.571 SQL [12247]: pgsql_close() -- 04:28:36.571 INFO [12246]: COREGRADE is starting... -- 04:28:36.572 INFO [12246]: Version from config: 1.0 -- 04:28:36.572 DEBUG [12246]: Connecting to database... -- 04:28:36.572 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:36.572 SQL [12246]: pgsql_db_connect() -- 04:28:36.573 INFO [12247]: COREGRADE is starting... -- 04:28:36.573 INFO [12247]: Version from config: 1.0 -- 04:28:36.573 DEBUG [12247]: Connecting to database... -- 04:28:36.573 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:36.573 SQL [12247]: pgsql_db_connect() -- 04:28:36.576 DEBUG [12246]: Database connection successful -- 04:28:36.576 INFO [12246]: _SERVER found -- 04:28:36.576 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 04:28:36.576 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:36.576 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:36.576 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 04:28:36.576 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:36.587 INFO [12246]: COREGRADE is stopping... -- 04:28:36.587 DEBUG [12246]: Closing database connection -- 04:28:36.587 SQL [12246]: pgsql_close() -- 04:28:36.577 DEBUG [12247]: Database connection successful -- 04:28:36.577 INFO [12247]: _SERVER found -- 04:28:36.577 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 04:28:36.577 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:36.577 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:36.577 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 04:28:36.577 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:36.588 INFO [12247]: COREGRADE is stopping... -- 04:28:36.588 DEBUG [12247]: Closing database connection -- 04:28:36.588 SQL [12247]: pgsql_close() -- 04:28:36.638 INFO [12247]: COREGRADE is starting... -- 04:28:36.638 INFO [12247]: Version from config: 1.0 -- 04:28:36.638 DEBUG [12247]: Connecting to database... -- 04:28:36.638 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:36.638 SQL [12247]: pgsql_db_connect() -- 04:28:36.642 DEBUG [12247]: Database connection successful -- 04:28:36.642 INFO [12247]: _SERVER found -- 04:28:36.642 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 04:28:36.642 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:36.642 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:36.642 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 04:28:36.642 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:36.654 INFO [12247]: COREGRADE is stopping... -- 04:28:36.654 DEBUG [12247]: Closing database connection -- 04:28:36.654 SQL [12247]: pgsql_close() -- 04:28:36.657 INFO [12247]: COREGRADE is starting... -- 04:28:36.657 INFO [12247]: Version from config: 1.0 -- 04:28:36.657 DEBUG [12247]: Connecting to database... -- 04:28:36.657 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:36.657 SQL [12247]: pgsql_db_connect() -- 04:28:36.657 INFO [12246]: COREGRADE is starting... -- 04:28:36.658 INFO [12246]: Version from config: 1.0 -- 04:28:36.658 DEBUG [12246]: Connecting to database... -- 04:28:36.658 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:36.658 SQL [12246]: pgsql_db_connect() -- 04:28:36.661 DEBUG [12247]: Database connection successful -- 04:28:36.661 INFO [12247]: _SERVER found -- 04:28:36.661 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 04:28:36.661 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:36.661 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:36.661 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 04:28:36.661 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:36.672 INFO [12247]: COREGRADE is stopping... -- 04:28:36.672 DEBUG [12247]: Closing database connection -- 04:28:36.672 SQL [12247]: pgsql_close() -- 04:28:36.661 DEBUG [12246]: Database connection successful -- 04:28:36.661 INFO [12246]: _SERVER found -- 04:28:36.661 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 04:28:36.661 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:36.661 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:36.661 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 04:28:36.661 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:36.673 INFO [12246]: COREGRADE is stopping... -- 04:28:36.673 DEBUG [12246]: Closing database connection -- 04:28:36.673 SQL [12246]: pgsql_close() -- 04:28:36.722 INFO [12247]: COREGRADE is starting... -- 04:28:36.722 INFO [12247]: Version from config: 1.0 -- 04:28:36.722 DEBUG [12247]: Connecting to database... -- 04:28:36.722 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:36.722 SQL [12247]: pgsql_db_connect() -- 04:28:36.726 DEBUG [12247]: Database connection successful -- 04:28:36.726 INFO [12247]: _SERVER found -- 04:28:36.726 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 04:28:36.726 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:36.726 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:36.726 INFO [12247]: QUERY_STRING = /assets/customjs/general.js -- 04:28:36.726 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:36.738 INFO [12247]: COREGRADE is stopping... -- 04:28:36.738 DEBUG [12247]: Closing database connection -- 04:28:36.738 SQL [12247]: pgsql_close() -- 04:28:36.741 INFO [12246]: COREGRADE is starting... -- 04:28:36.742 INFO [12246]: Version from config: 1.0 -- 04:28:36.742 DEBUG [12246]: Connecting to database... -- 04:28:36.742 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:36.742 SQL [12246]: pgsql_db_connect() -- 04:28:36.746 DEBUG [12246]: Database connection successful -- 04:28:36.746 INFO [12246]: _SERVER found -- 04:28:36.746 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 04:28:36.746 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:36.746 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:36.746 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 04:28:36.746 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:36.757 INFO [12246]: COREGRADE is stopping... -- 04:28:36.757 DEBUG [12246]: Closing database connection -- 04:28:36.757 SQL [12246]: pgsql_close() -- 04:28:36.826 INFO [12246]: COREGRADE is starting... -- 04:28:36.827 INFO [12246]: Version from config: 1.0 -- 04:28:36.827 DEBUG [12246]: Connecting to database... -- 04:28:36.827 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:36.827 SQL [12246]: pgsql_db_connect() -- 04:28:36.831 DEBUG [12246]: Database connection successful -- 04:28:36.831 INFO [12246]: _SERVER found -- 04:28:36.831 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 04:28:36.831 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:36.831 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:36.831 INFO [12246]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 04:28:36.831 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:36.842 INFO [12246]: COREGRADE is stopping... -- 04:28:36.842 DEBUG [12246]: Closing database connection -- 04:28:36.842 SQL [12246]: pgsql_close() -- 04:28:36.911 INFO [12246]: COREGRADE is starting... -- 04:28:36.911 INFO [12246]: Version from config: 1.0 -- 04:28:36.911 DEBUG [12246]: Connecting to database... -- 04:28:36.911 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:36.911 SQL [12246]: pgsql_db_connect() -- 04:28:36.915 DEBUG [12246]: Database connection successful -- 04:28:36.915 INFO [12246]: _SERVER found -- 04:28:36.915 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 04:28:36.915 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:36.915 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:36.915 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 04:28:36.915 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:36.927 INFO [12246]: COREGRADE is stopping... -- 04:28:36.927 DEBUG [12246]: Closing database connection -- 04:28:36.927 SQL [12246]: pgsql_close() -- 04:28:36.996 INFO [12246]: COREGRADE is starting... -- 04:28:36.996 INFO [12246]: Version from config: 1.0 -- 04:28:36.996 DEBUG [12246]: Connecting to database... -- 04:28:36.996 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:36.996 SQL [12246]: pgsql_db_connect() -- 04:28:36.000 DEBUG [12246]: Database connection successful -- 04:28:36.000 INFO [12246]: _SERVER found -- 04:28:36.000 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 04:28:36.000 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:36.000 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:36.000 INFO [12246]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 04:28:36.000 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:37.011 INFO [12246]: COREGRADE is stopping... -- 04:28:37.011 DEBUG [12246]: Closing database connection -- 04:28:37.011 SQL [12246]: pgsql_close() -- 04:28:37.081 INFO [12246]: COREGRADE is starting... -- 04:28:37.081 INFO [12246]: Version from config: 1.0 -- 04:28:37.081 DEBUG [12246]: Connecting to database... -- 04:28:37.081 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:37.082 SQL [12246]: pgsql_db_connect() -- 04:28:37.085 DEBUG [12246]: Database connection successful -- 04:28:37.085 INFO [12246]: _SERVER found -- 04:28:37.085 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 04:28:37.085 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:37.085 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:37.085 INFO [12246]: QUERY_STRING = /assets/js/pages/dashboard.js -- 04:28:37.085 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:37.097 INFO [12246]: COREGRADE is stopping... -- 04:28:37.097 DEBUG [12246]: Closing database connection -- 04:28:37.097 SQL [12246]: pgsql_close() -- 04:28:37.168 INFO [12246]: COREGRADE is starting... -- 04:28:37.168 INFO [12246]: Version from config: 1.0 -- 04:28:37.168 DEBUG [12246]: Connecting to database... -- 04:28:37.168 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:37.168 SQL [12246]: pgsql_db_connect() -- 04:28:37.172 DEBUG [12246]: Database connection successful -- 04:28:37.172 INFO [12246]: _SERVER found -- 04:28:37.172 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 04:28:37.172 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:37.172 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:37.172 INFO [12246]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 04:28:37.172 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:37.184 INFO [12246]: COREGRADE is stopping... -- 04:28:37.184 DEBUG [12246]: Closing database connection -- 04:28:37.184 SQL [12246]: pgsql_close() -- 04:28:37.254 INFO [12246]: COREGRADE is starting... -- 04:28:37.254 INFO [12246]: Version from config: 1.0 -- 04:28:37.254 DEBUG [12246]: Connecting to database... -- 04:28:37.254 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:37.254 SQL [12246]: pgsql_db_connect() -- 04:28:37.258 DEBUG [12246]: Database connection successful -- 04:28:37.258 INFO [12246]: _SERVER found -- 04:28:37.258 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 04:28:37.258 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:37.258 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:37.258 INFO [12246]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 04:28:37.258 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:37.270 INFO [12246]: COREGRADE is stopping... -- 04:28:37.270 DEBUG [12246]: Closing database connection -- 04:28:37.270 SQL [12246]: pgsql_close() -- 04:28:37.340 INFO [12246]: COREGRADE is starting... -- 04:28:37.340 INFO [12246]: Version from config: 1.0 -- 04:28:37.340 DEBUG [12246]: Connecting to database... -- 04:28:37.340 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:37.340 SQL [12246]: pgsql_db_connect() -- 04:28:37.344 DEBUG [12246]: Database connection successful -- 04:28:37.344 INFO [12246]: _SERVER found -- 04:28:37.344 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 04:28:37.344 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:37.344 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:37.344 INFO [12246]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 04:28:37.344 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:37.355 INFO [12246]: COREGRADE is stopping... -- 04:28:37.355 DEBUG [12246]: Closing database connection -- 04:28:37.355 SQL [12246]: pgsql_close() -- 04:28:37.425 INFO [12246]: COREGRADE is starting... -- 04:28:37.425 INFO [12246]: Version from config: 1.0 -- 04:28:37.425 DEBUG [12246]: Connecting to database... -- 04:28:37.425 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:37.425 SQL [12246]: pgsql_db_connect() -- 04:28:37.429 DEBUG [12246]: Database connection successful -- 04:28:37.429 INFO [12246]: _SERVER found -- 04:28:37.429 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 04:28:37.429 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:37.429 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:37.429 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 04:28:37.429 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:37.441 INFO [12246]: COREGRADE is stopping... -- 04:28:37.441 DEBUG [12246]: Closing database connection -- 04:28:37.441 SQL [12246]: pgsql_close() -- 04:28:37.510 INFO [12246]: COREGRADE is starting... -- 04:28:37.511 INFO [12246]: Version from config: 1.0 -- 04:28:37.511 DEBUG [12246]: Connecting to database... -- 04:28:37.511 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:37.511 SQL [12246]: pgsql_db_connect() -- 04:28:37.515 DEBUG [12246]: Database connection successful -- 04:28:37.515 INFO [12246]: _SERVER found -- 04:28:37.515 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 04:28:37.515 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:37.515 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:37.515 INFO [12246]: QUERY_STRING = /assets/js/pages/picker_date.js -- 04:28:37.515 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:37.526 INFO [12246]: COREGRADE is stopping... -- 04:28:37.526 DEBUG [12246]: Closing database connection -- 04:28:37.526 SQL [12246]: pgsql_close() -- 04:28:37.596 INFO [12246]: COREGRADE is starting... -- 04:28:37.596 INFO [12246]: Version from config: 1.0 -- 04:28:37.596 DEBUG [12246]: Connecting to database... -- 04:28:37.596 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:37.596 SQL [12246]: pgsql_db_connect() -- 04:28:37.600 DEBUG [12246]: Database connection successful -- 04:28:37.600 INFO [12246]: _SERVER found -- 04:28:37.600 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 04:28:37.600 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:37.600 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:37.600 INFO [12246]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 04:28:37.600 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:37.612 INFO [12246]: COREGRADE is stopping... -- 04:28:37.612 DEBUG [12246]: Closing database connection -- 04:28:37.612 SQL [12246]: pgsql_close() -- 04:28:37.681 INFO [12246]: COREGRADE is starting... -- 04:28:37.682 INFO [12246]: Version from config: 1.0 -- 04:28:37.682 DEBUG [12246]: Connecting to database... -- 04:28:37.682 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:37.682 SQL [12246]: pgsql_db_connect() -- 04:28:37.686 DEBUG [12246]: Database connection successful -- 04:28:37.686 INFO [12246]: _SERVER found -- 04:28:37.686 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 04:28:37.686 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:37.686 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:37.686 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 04:28:37.686 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:37.697 INFO [12246]: COREGRADE is stopping... -- 04:28:37.697 DEBUG [12246]: Closing database connection -- 04:28:37.697 SQL [12246]: pgsql_close() -- 04:28:37.766 INFO [12246]: COREGRADE is starting... -- 04:28:37.767 INFO [12246]: Version from config: 1.0 -- 04:28:37.767 DEBUG [12246]: Connecting to database... -- 04:28:37.767 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:37.767 SQL [12246]: pgsql_db_connect() -- 04:28:37.771 DEBUG [12246]: Database connection successful -- 04:28:37.771 INFO [12246]: _SERVER found -- 04:28:37.771 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 04:28:37.771 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:37.771 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:37.771 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 04:28:37.771 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:37.782 INFO [12246]: COREGRADE is stopping... -- 04:28:37.782 DEBUG [12246]: Closing database connection -- 04:28:37.782 SQL [12246]: pgsql_close() -- 04:28:37.852 INFO [12246]: COREGRADE is starting... -- 04:28:37.852 INFO [12246]: Version from config: 1.0 -- 04:28:37.852 DEBUG [12246]: Connecting to database... -- 04:28:37.852 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:37.852 SQL [12246]: pgsql_db_connect() -- 04:28:37.856 DEBUG [12246]: Database connection successful -- 04:28:37.856 INFO [12246]: _SERVER found -- 04:28:37.856 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 04:28:37.856 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:37.856 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:37.856 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 04:28:37.856 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:37.867 INFO [12246]: COREGRADE is stopping... -- 04:28:37.867 DEBUG [12246]: Closing database connection -- 04:28:37.867 SQL [12246]: pgsql_close() -- 04:28:37.937 INFO [12246]: COREGRADE is starting... -- 04:28:37.937 INFO [12246]: Version from config: 1.0 -- 04:28:37.937 DEBUG [12246]: Connecting to database... -- 04:28:37.937 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:37.937 SQL [12246]: pgsql_db_connect() -- 04:28:37.941 DEBUG [12246]: Database connection successful -- 04:28:37.941 INFO [12246]: _SERVER found -- 04:28:37.941 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 04:28:37.941 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:37.941 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:37.941 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 04:28:37.941 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:37.952 INFO [12246]: COREGRADE is stopping... -- 04:28:37.952 DEBUG [12246]: Closing database connection -- 04:28:37.952 SQL [12246]: pgsql_close() -- 04:28:38.032 INFO [12246]: COREGRADE is starting... -- 04:28:38.032 INFO [12246]: Version from config: 1.0 -- 04:28:38.032 DEBUG [12246]: Connecting to database... -- 04:28:38.032 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:38.032 SQL [12246]: pgsql_db_connect() -- 04:28:38.036 DEBUG [12246]: Database connection successful -- 04:28:38.036 INFO [12246]: _SERVER found -- 04:28:38.036 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 04:28:38.036 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:38.036 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:38.036 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 04:28:38.036 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:38.048 INFO [12246]: COREGRADE is stopping... -- 04:28:38.048 DEBUG [12246]: Closing database connection -- 04:28:38.048 SQL [12246]: pgsql_close() -- 04:28:38.117 INFO [12246]: COREGRADE is starting... -- 04:28:38.118 INFO [12246]: Version from config: 1.0 -- 04:28:38.118 DEBUG [12246]: Connecting to database... -- 04:28:38.118 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:38.118 SQL [12246]: pgsql_db_connect() -- 04:28:38.122 DEBUG [12246]: Database connection successful -- 04:28:38.122 INFO [12246]: _SERVER found -- 04:28:38.122 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 04:28:38.122 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:38.122 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:38.122 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 04:28:38.122 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:38.133 INFO [12246]: COREGRADE is stopping... -- 04:28:38.133 DEBUG [12246]: Closing database connection -- 04:28:38.133 SQL [12246]: pgsql_close() -- 04:28:38.204 INFO [12246]: COREGRADE is starting... -- 04:28:38.204 INFO [12246]: Version from config: 1.0 -- 04:28:38.204 DEBUG [12246]: Connecting to database... -- 04:28:38.205 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:38.205 SQL [12246]: pgsql_db_connect() -- 04:28:38.209 DEBUG [12246]: Database connection successful -- 04:28:38.209 INFO [12246]: _SERVER found -- 04:28:38.209 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 04:28:38.209 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:28:38.209 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:28:38.209 INFO [12246]: QUERY_STRING = /assets/customjs/general.js -- 04:28:38.209 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:28:38.220 INFO [12246]: COREGRADE is stopping... -- 04:28:38.220 DEBUG [12246]: Closing database connection -- 04:28:38.220 SQL [12246]: pgsql_close() -- 04:48:38.438 INFO [12250]: COREGRADE is starting... -- 04:48:38.438 INFO [12250]: Version from config: 1.0 -- 04:48:38.438 DEBUG [12250]: Connecting to database... -- 04:48:38.438 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:38.438 SQL [12250]: pgsql_db_connect() -- 04:48:38.443 DEBUG [12250]: Database connection successful -- 04:48:38.443 INFO [12250]: _SERVER found -- 04:48:38.443 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 04:48:38.443 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:38.443 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f9racph9cfdvnhd8gdgrsd308uk4ehi5 -- 04:48:38.443 INFO [12250]: QUERY_STRING = /logout -- 04:48:38.443 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:38.479 INFO [12250]: COREGRADE is stopping... -- 04:48:38.479 DEBUG [12250]: Closing database connection -- 04:48:38.479 SQL [12250]: pgsql_close() -- 04:48:38.558 INFO [12250]: COREGRADE is starting... -- 04:48:38.558 INFO [12250]: Version from config: 1.0 -- 04:48:38.558 DEBUG [12250]: Connecting to database... -- 04:48:38.558 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:38.558 SQL [12250]: pgsql_db_connect() -- 04:48:38.562 DEBUG [12250]: Database connection successful -- 04:48:38.562 INFO [12250]: _SERVER found -- 04:48:38.562 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 04:48:38.562 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:38.562 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:38.562 INFO [12250]: QUERY_STRING = /start -- 04:48:38.562 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:38.603 INFO [12250]: COREGRADE is stopping... -- 04:48:38.604 DEBUG [12250]: Closing database connection -- 04:48:38.604 SQL [12250]: pgsql_close() -- 04:48:38.733 INFO [12249]: COREGRADE is starting... -- 04:48:38.733 INFO [12249]: Version from config: 1.0 -- 04:48:38.733 DEBUG [12249]: Connecting to database... -- 04:48:38.733 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:38.733 SQL [12249]: pgsql_db_connect() -- 04:48:38.750 INFO [12250]: COREGRADE is starting... -- 04:48:38.750 INFO [12250]: Version from config: 1.0 -- 04:48:38.750 DEBUG [12250]: Connecting to database... -- 04:48:38.750 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:38.750 SQL [12250]: pgsql_db_connect() -- 04:48:38.737 DEBUG [12249]: Database connection successful -- 04:48:38.737 INFO [12249]: _SERVER found -- 04:48:38.737 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 04:48:38.737 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:38.737 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:38.738 INFO [12249]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 04:48:38.738 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:38.750 INFO [12249]: COREGRADE is stopping... -- 04:48:38.750 DEBUG [12249]: Closing database connection -- 04:48:38.750 SQL [12249]: pgsql_close() -- 04:48:38.754 DEBUG [12250]: Database connection successful -- 04:48:38.754 INFO [12250]: _SERVER found -- 04:48:38.754 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 04:48:38.755 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:38.755 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:38.755 INFO [12250]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 04:48:38.755 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:38.766 INFO [12250]: COREGRADE is stopping... -- 04:48:38.766 DEBUG [12250]: Closing database connection -- 04:48:38.766 SQL [12250]: pgsql_close() -- 04:48:38.793 INFO [12249]: COREGRADE is starting... -- 04:48:38.793 INFO [12249]: Version from config: 1.0 -- 04:48:38.793 DEBUG [12249]: Connecting to database... -- 04:48:38.793 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:38.793 SQL [12249]: pgsql_db_connect() -- 04:48:38.797 DEBUG [12249]: Database connection successful -- 04:48:38.797 INFO [12249]: _SERVER found -- 04:48:38.797 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 04:48:38.797 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:38.797 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:38.797 INFO [12249]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 04:48:38.797 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:38.809 INFO [12249]: COREGRADE is stopping... -- 04:48:38.809 DEBUG [12249]: Closing database connection -- 04:48:38.809 SQL [12249]: pgsql_close() -- 04:48:38.833 INFO [12250]: COREGRADE is starting... -- 04:48:38.833 INFO [12249]: COREGRADE is starting... -- 04:48:38.833 INFO [12250]: Version from config: 1.0 -- 04:48:38.833 DEBUG [12250]: Connecting to database... -- 04:48:38.833 INFO [12249]: Version from config: 1.0 -- 04:48:38.833 DEBUG [12249]: Connecting to database... -- 04:48:38.833 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:38.833 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:38.833 SQL [12250]: pgsql_db_connect() -- 04:48:38.833 SQL [12249]: pgsql_db_connect() -- 04:48:38.837 DEBUG [12249]: Database connection successful -- 04:48:38.837 INFO [12249]: _SERVER found -- 04:48:38.837 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 04:48:38.837 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:38.837 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:38.837 INFO [12249]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 04:48:38.837 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:38.849 INFO [12249]: COREGRADE is stopping... -- 04:48:38.837 DEBUG [12250]: Database connection successful -- 04:48:38.837 INFO [12250]: _SERVER found -- 04:48:38.837 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 04:48:38.837 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:38.837 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:38.837 INFO [12250]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 04:48:38.837 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:38.849 INFO [12250]: COREGRADE is stopping... -- 04:48:38.849 DEBUG [12249]: Closing database connection -- 04:48:38.849 DEBUG [12250]: Closing database connection -- 04:48:38.849 SQL [12249]: pgsql_close() -- 04:48:38.849 SQL [12250]: pgsql_close() -- 04:48:38.886 INFO [12249]: COREGRADE is starting... -- 04:48:38.887 INFO [12249]: Version from config: 1.0 -- 04:48:38.887 DEBUG [12249]: Connecting to database... -- 04:48:38.887 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:38.887 SQL [12249]: pgsql_db_connect() -- 04:48:38.891 DEBUG [12249]: Database connection successful -- 04:48:38.891 INFO [12249]: _SERVER found -- 04:48:38.891 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 04:48:38.891 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:38.891 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:38.891 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 04:48:38.891 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:38.902 INFO [12249]: COREGRADE is stopping... -- 04:48:38.902 DEBUG [12249]: Closing database connection -- 04:48:38.902 SQL [12249]: pgsql_close() -- 04:48:38.914 INFO [12250]: COREGRADE is starting... -- 04:48:38.914 INFO [12250]: Version from config: 1.0 -- 04:48:38.914 DEBUG [12250]: Connecting to database... -- 04:48:38.914 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:38.914 SQL [12250]: pgsql_db_connect() -- 04:48:38.918 DEBUG [12250]: Database connection successful -- 04:48:38.918 INFO [12250]: _SERVER found -- 04:48:38.918 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 04:48:38.918 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:38.918 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:38.918 INFO [12250]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 04:48:38.918 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:38.929 INFO [12250]: COREGRADE is stopping... -- 04:48:38.929 DEBUG [12250]: Closing database connection -- 04:48:38.929 SQL [12250]: pgsql_close() -- 04:48:38.932 INFO [12249]: COREGRADE is starting... -- 04:48:38.932 INFO [12249]: Version from config: 1.0 -- 04:48:38.932 DEBUG [12249]: Connecting to database... -- 04:48:38.932 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:38.932 SQL [12249]: pgsql_db_connect() -- 04:48:38.936 DEBUG [12249]: Database connection successful -- 04:48:38.936 INFO [12249]: _SERVER found -- 04:48:38.936 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 04:48:38.936 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:38.936 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:38.936 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 04:48:38.936 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:38.947 INFO [12249]: COREGRADE is stopping... -- 04:48:38.947 DEBUG [12249]: Closing database connection -- 04:48:38.947 SQL [12249]: pgsql_close() -- 04:48:38.980 INFO [12249]: COREGRADE is starting... -- 04:48:38.980 INFO [12249]: Version from config: 1.0 -- 04:48:38.980 DEBUG [12249]: Connecting to database... -- 04:48:38.980 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:38.980 SQL [12249]: pgsql_db_connect() -- 04:48:38.994 INFO [12250]: COREGRADE is starting... -- 04:48:38.994 INFO [12250]: Version from config: 1.0 -- 04:48:38.994 DEBUG [12250]: Connecting to database... -- 04:48:38.994 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:38.994 SQL [12250]: pgsql_db_connect() -- 04:48:38.984 DEBUG [12249]: Database connection successful -- 04:48:38.984 INFO [12249]: _SERVER found -- 04:48:38.984 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 04:48:38.984 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:38.984 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:38.984 INFO [12249]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 04:48:38.984 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:38.996 INFO [12249]: COREGRADE is stopping... -- 04:48:38.996 DEBUG [12249]: Closing database connection -- 04:48:38.996 SQL [12249]: pgsql_close() -- 04:48:38.999 DEBUG [12250]: Database connection successful -- 04:48:38.999 INFO [12250]: _SERVER found -- 04:48:38.999 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 04:48:38.999 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:38.999 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:38.999 INFO [12250]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 04:48:38.999 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:39.010 INFO [12250]: COREGRADE is stopping... -- 04:48:39.011 DEBUG [12250]: Closing database connection -- 04:48:39.011 SQL [12250]: pgsql_close() -- 04:48:39.030 INFO [12249]: COREGRADE is starting... -- 04:48:39.030 INFO [12249]: Version from config: 1.0 -- 04:48:39.030 DEBUG [12249]: Connecting to database... -- 04:48:39.030 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:39.030 SQL [12249]: pgsql_db_connect() -- 04:48:39.034 DEBUG [12249]: Database connection successful -- 04:48:39.034 INFO [12249]: _SERVER found -- 04:48:39.034 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 04:48:39.034 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:39.034 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:39.034 INFO [12249]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 04:48:39.034 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:39.046 INFO [12249]: COREGRADE is stopping... -- 04:48:39.046 DEBUG [12249]: Closing database connection -- 04:48:39.046 SQL [12249]: pgsql_close() -- 04:48:39.074 INFO [12249]: COREGRADE is starting... -- 04:48:39.074 INFO [12249]: Version from config: 1.0 -- 04:48:39.074 DEBUG [12249]: Connecting to database... -- 04:48:39.074 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:39.074 SQL [12249]: pgsql_db_connect() -- 04:48:39.075 INFO [12250]: COREGRADE is starting... -- 04:48:39.075 INFO [12250]: Version from config: 1.0 -- 04:48:39.075 DEBUG [12250]: Connecting to database... -- 04:48:39.075 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:39.075 SQL [12250]: pgsql_db_connect() -- 04:48:39.078 DEBUG [12249]: Database connection successful -- 04:48:39.078 INFO [12249]: _SERVER found -- 04:48:39.078 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 04:48:39.078 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:39.078 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:39.078 INFO [12249]: QUERY_STRING = /assets/js/pages/dashboard.js -- 04:48:39.078 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:39.090 INFO [12249]: COREGRADE is stopping... -- 04:48:39.090 DEBUG [12249]: Closing database connection -- 04:48:39.090 SQL [12249]: pgsql_close() -- 04:48:39.079 DEBUG [12250]: Database connection successful -- 04:48:39.079 INFO [12250]: _SERVER found -- 04:48:39.079 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 04:48:39.079 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:39.079 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:39.079 INFO [12250]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 04:48:39.079 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:39.090 INFO [12250]: COREGRADE is stopping... -- 04:48:39.090 DEBUG [12250]: Closing database connection -- 04:48:39.090 SQL [12250]: pgsql_close() -- 04:48:39.118 INFO [12249]: COREGRADE is starting... -- 04:48:39.119 INFO [12249]: Version from config: 1.0 -- 04:48:39.119 DEBUG [12249]: Connecting to database... -- 04:48:39.119 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:39.119 SQL [12249]: pgsql_db_connect() -- 04:48:39.123 DEBUG [12249]: Database connection successful -- 04:48:39.123 INFO [12249]: _SERVER found -- 04:48:39.123 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 04:48:39.123 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:39.123 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:39.123 INFO [12249]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 04:48:39.123 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:39.134 INFO [12249]: COREGRADE is stopping... -- 04:48:39.134 DEBUG [12249]: Closing database connection -- 04:48:39.134 SQL [12249]: pgsql_close() -- 04:48:39.156 INFO [12250]: COREGRADE is starting... -- 04:48:39.156 INFO [12249]: COREGRADE is starting... -- 04:48:39.157 INFO [12250]: Version from config: 1.0 -- 04:48:39.157 DEBUG [12250]: Connecting to database... -- 04:48:39.157 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:39.157 SQL [12250]: pgsql_db_connect() -- 04:48:39.157 INFO [12249]: Version from config: 1.0 -- 04:48:39.157 DEBUG [12249]: Connecting to database... -- 04:48:39.157 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:39.157 SQL [12249]: pgsql_db_connect() -- 04:48:39.161 DEBUG [12249]: Database connection successful -- 04:48:39.161 INFO [12249]: _SERVER found -- 04:48:39.161 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 04:48:39.161 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:39.161 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:39.161 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 04:48:39.161 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:39.172 INFO [12249]: COREGRADE is stopping... -- 04:48:39.161 DEBUG [12250]: Database connection successful -- 04:48:39.161 INFO [12250]: _SERVER found -- 04:48:39.161 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 04:48:39.161 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:39.161 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:39.161 INFO [12250]: QUERY_STRING = /assets/js/pages/picker_date.js -- 04:48:39.161 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:39.172 INFO [12250]: COREGRADE is stopping... -- 04:48:39.172 DEBUG [12249]: Closing database connection -- 04:48:39.172 DEBUG [12250]: Closing database connection -- 04:48:39.172 SQL [12249]: pgsql_close() -- 04:48:39.172 SQL [12250]: pgsql_close() -- 04:48:39.206 INFO [12249]: COREGRADE is starting... -- 04:48:39.206 INFO [12249]: Version from config: 1.0 -- 04:48:39.206 DEBUG [12249]: Connecting to database... -- 04:48:39.206 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:39.207 SQL [12249]: pgsql_db_connect() -- 04:48:39.210 DEBUG [12249]: Database connection successful -- 04:48:39.210 INFO [12249]: _SERVER found -- 04:48:39.210 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 04:48:39.210 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:39.210 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:39.210 INFO [12249]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 04:48:39.210 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:39.222 INFO [12249]: COREGRADE is stopping... -- 04:48:39.222 DEBUG [12249]: Closing database connection -- 04:48:39.222 SQL [12249]: pgsql_close() -- 04:48:39.237 INFO [12250]: COREGRADE is starting... -- 04:48:39.237 INFO [12250]: Version from config: 1.0 -- 04:48:39.237 DEBUG [12250]: Connecting to database... -- 04:48:39.237 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:39.237 SQL [12250]: pgsql_db_connect() -- 04:48:39.239 INFO [12249]: COREGRADE is starting... -- 04:48:39.239 INFO [12249]: Version from config: 1.0 -- 04:48:39.239 DEBUG [12249]: Connecting to database... -- 04:48:39.239 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:39.240 SQL [12249]: pgsql_db_connect() -- 04:48:39.241 DEBUG [12250]: Database connection successful -- 04:48:39.241 INFO [12250]: _SERVER found -- 04:48:39.241 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 04:48:39.241 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:39.241 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:39.241 INFO [12250]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 04:48:39.241 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:39.253 INFO [12250]: COREGRADE is stopping... -- 04:48:39.253 DEBUG [12250]: Closing database connection -- 04:48:39.253 SQL [12250]: pgsql_close() -- 04:48:39.243 DEBUG [12249]: Database connection successful -- 04:48:39.243 INFO [12249]: _SERVER found -- 04:48:39.243 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 04:48:39.243 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:39.243 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:39.243 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 04:48:39.243 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:39.255 INFO [12249]: COREGRADE is stopping... -- 04:48:39.255 DEBUG [12249]: Closing database connection -- 04:48:39.255 SQL [12249]: pgsql_close() -- 04:48:39.294 INFO [12249]: COREGRADE is starting... -- 04:48:39.294 INFO [12249]: Version from config: 1.0 -- 04:48:39.294 DEBUG [12249]: Connecting to database... -- 04:48:39.294 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:39.294 SQL [12249]: pgsql_db_connect() -- 04:48:39.298 DEBUG [12249]: Database connection successful -- 04:48:39.298 INFO [12249]: _SERVER found -- 04:48:39.298 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 04:48:39.298 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:39.298 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:39.298 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 04:48:39.298 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:39.309 INFO [12249]: COREGRADE is stopping... -- 04:48:39.309 DEBUG [12249]: Closing database connection -- 04:48:39.309 SQL [12249]: pgsql_close() -- 04:48:39.318 INFO [12250]: COREGRADE is starting... -- 04:48:39.318 INFO [12250]: Version from config: 1.0 -- 04:48:39.318 DEBUG [12250]: Connecting to database... -- 04:48:39.318 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:39.318 SQL [12250]: pgsql_db_connect() -- 04:48:39.321 INFO [12249]: COREGRADE is starting... -- 04:48:39.321 INFO [12249]: Version from config: 1.0 -- 04:48:39.321 DEBUG [12249]: Connecting to database... -- 04:48:39.321 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:39.321 SQL [12249]: pgsql_db_connect() -- 04:48:39.322 DEBUG [12250]: Database connection successful -- 04:48:39.322 INFO [12250]: _SERVER found -- 04:48:39.322 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 04:48:39.322 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:39.322 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:39.322 INFO [12250]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 04:48:39.322 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:39.334 INFO [12250]: COREGRADE is stopping... -- 04:48:39.334 DEBUG [12250]: Closing database connection -- 04:48:39.334 SQL [12250]: pgsql_close() -- 04:48:39.325 DEBUG [12249]: Database connection successful -- 04:48:39.325 INFO [12249]: _SERVER found -- 04:48:39.325 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 04:48:39.325 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:39.325 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:39.325 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 04:48:39.325 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:39.338 INFO [12249]: COREGRADE is stopping... -- 04:48:39.338 DEBUG [12249]: Closing database connection -- 04:48:39.338 SQL [12249]: pgsql_close() -- 04:48:39.381 INFO [12249]: COREGRADE is starting... -- 04:48:39.381 INFO [12249]: Version from config: 1.0 -- 04:48:39.381 DEBUG [12249]: Connecting to database... -- 04:48:39.381 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:39.381 SQL [12249]: pgsql_db_connect() -- 04:48:39.385 DEBUG [12249]: Database connection successful -- 04:48:39.385 INFO [12249]: _SERVER found -- 04:48:39.385 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 04:48:39.385 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:39.385 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:39.385 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 04:48:39.385 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:39.397 INFO [12249]: COREGRADE is stopping... -- 04:48:39.397 DEBUG [12249]: Closing database connection -- 04:48:39.397 SQL [12249]: pgsql_close() -- 04:48:39.399 INFO [12250]: COREGRADE is starting... -- 04:48:39.400 INFO [12250]: Version from config: 1.0 -- 04:48:39.400 DEBUG [12250]: Connecting to database... -- 04:48:39.400 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:39.400 SQL [12250]: pgsql_db_connect() -- 04:48:39.404 INFO [12249]: COREGRADE is starting... -- 04:48:39.404 INFO [12249]: Version from config: 1.0 -- 04:48:39.404 DEBUG [12249]: Connecting to database... -- 04:48:39.404 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:39.404 SQL [12249]: pgsql_db_connect() -- 04:48:39.403 DEBUG [12250]: Database connection successful -- 04:48:39.403 INFO [12250]: _SERVER found -- 04:48:39.403 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 04:48:39.403 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:39.403 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:39.403 INFO [12250]: QUERY_STRING = /assets/customjs/general.js -- 04:48:39.403 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:39.415 INFO [12250]: COREGRADE is stopping... -- 04:48:39.415 DEBUG [12250]: Closing database connection -- 04:48:39.415 SQL [12250]: pgsql_close() -- 04:48:39.408 DEBUG [12249]: Database connection successful -- 04:48:39.408 INFO [12249]: _SERVER found -- 04:48:39.408 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 04:48:39.408 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:39.408 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:39.408 INFO [12249]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 04:48:39.408 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:39.420 INFO [12249]: COREGRADE is stopping... -- 04:48:39.420 DEBUG [12249]: Closing database connection -- 04:48:39.420 SQL [12249]: pgsql_close() -- 04:48:39.486 INFO [12249]: COREGRADE is starting... -- 04:48:39.486 INFO [12249]: Version from config: 1.0 -- 04:48:39.486 DEBUG [12249]: Connecting to database... -- 04:48:39.486 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:39.486 SQL [12249]: pgsql_db_connect() -- 04:48:39.491 DEBUG [12249]: Database connection successful -- 04:48:39.491 INFO [12249]: _SERVER found -- 04:48:39.491 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 04:48:39.491 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:39.491 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:39.491 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 04:48:39.491 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:39.502 INFO [12249]: COREGRADE is stopping... -- 04:48:39.502 DEBUG [12249]: Closing database connection -- 04:48:39.502 SQL [12249]: pgsql_close() -- 04:48:39.569 INFO [12249]: COREGRADE is starting... -- 04:48:39.569 INFO [12249]: Version from config: 1.0 -- 04:48:39.569 DEBUG [12249]: Connecting to database... -- 04:48:39.570 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:39.570 SQL [12249]: pgsql_db_connect() -- 04:48:39.574 DEBUG [12249]: Database connection successful -- 04:48:39.574 INFO [12249]: _SERVER found -- 04:48:39.574 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 04:48:39.574 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:39.574 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:39.574 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 04:48:39.574 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:39.587 INFO [12249]: COREGRADE is stopping... -- 04:48:39.587 DEBUG [12249]: Closing database connection -- 04:48:39.587 SQL [12249]: pgsql_close() -- 04:48:39.653 INFO [12249]: COREGRADE is starting... -- 04:48:39.653 INFO [12249]: Version from config: 1.0 -- 04:48:39.653 DEBUG [12249]: Connecting to database... -- 04:48:39.653 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:39.653 SQL [12249]: pgsql_db_connect() -- 04:48:39.657 DEBUG [12249]: Database connection successful -- 04:48:39.657 INFO [12249]: _SERVER found -- 04:48:39.657 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 04:48:39.657 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:39.657 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:39.657 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 04:48:39.657 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:39.669 INFO [12249]: COREGRADE is stopping... -- 04:48:39.669 DEBUG [12249]: Closing database connection -- 04:48:39.669 SQL [12249]: pgsql_close() -- 04:48:39.735 INFO [12249]: COREGRADE is starting... -- 04:48:39.736 INFO [12249]: Version from config: 1.0 -- 04:48:39.736 DEBUG [12249]: Connecting to database... -- 04:48:39.736 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:39.736 SQL [12249]: pgsql_db_connect() -- 04:48:39.740 DEBUG [12249]: Database connection successful -- 04:48:39.740 INFO [12249]: _SERVER found -- 04:48:39.740 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 04:48:39.740 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:39.740 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:39.740 INFO [12249]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 04:48:39.740 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:39.751 INFO [12249]: COREGRADE is stopping... -- 04:48:39.751 DEBUG [12249]: Closing database connection -- 04:48:39.751 SQL [12249]: pgsql_close() -- 04:48:39.818 INFO [12249]: COREGRADE is starting... -- 04:48:39.818 INFO [12249]: Version from config: 1.0 -- 04:48:39.818 DEBUG [12249]: Connecting to database... -- 04:48:39.818 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:39.818 SQL [12249]: pgsql_db_connect() -- 04:48:39.822 DEBUG [12249]: Database connection successful -- 04:48:39.822 INFO [12249]: _SERVER found -- 04:48:39.822 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 04:48:39.822 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:39.822 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:39.822 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 04:48:39.822 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:39.834 INFO [12249]: COREGRADE is stopping... -- 04:48:39.834 DEBUG [12249]: Closing database connection -- 04:48:39.834 SQL [12249]: pgsql_close() -- 04:48:39.900 INFO [12249]: COREGRADE is starting... -- 04:48:39.901 INFO [12249]: Version from config: 1.0 -- 04:48:39.901 DEBUG [12249]: Connecting to database... -- 04:48:39.901 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:39.901 SQL [12249]: pgsql_db_connect() -- 04:48:39.905 DEBUG [12249]: Database connection successful -- 04:48:39.905 INFO [12249]: _SERVER found -- 04:48:39.905 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 04:48:39.905 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:39.905 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:39.905 INFO [12249]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 04:48:39.905 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:39.916 INFO [12249]: COREGRADE is stopping... -- 04:48:39.916 DEBUG [12249]: Closing database connection -- 04:48:39.916 SQL [12249]: pgsql_close() -- 04:48:39.983 INFO [12249]: COREGRADE is starting... -- 04:48:39.983 INFO [12249]: Version from config: 1.0 -- 04:48:39.983 DEBUG [12249]: Connecting to database... -- 04:48:39.983 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:39.983 SQL [12249]: pgsql_db_connect() -- 04:48:39.987 DEBUG [12249]: Database connection successful -- 04:48:39.987 INFO [12249]: _SERVER found -- 04:48:39.987 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 04:48:39.987 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:39.987 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:39.987 INFO [12249]: QUERY_STRING = /assets/js/pages/dashboard.js -- 04:48:39.987 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:39.999 INFO [12249]: COREGRADE is stopping... -- 04:48:39.999 DEBUG [12249]: Closing database connection -- 04:48:39.999 SQL [12249]: pgsql_close() -- 04:48:40.067 INFO [12249]: COREGRADE is starting... -- 04:48:40.067 INFO [12249]: Version from config: 1.0 -- 04:48:40.067 DEBUG [12249]: Connecting to database... -- 04:48:40.067 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:40.067 SQL [12249]: pgsql_db_connect() -- 04:48:40.071 DEBUG [12249]: Database connection successful -- 04:48:40.071 INFO [12249]: _SERVER found -- 04:48:40.071 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 04:48:40.071 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:40.071 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:40.071 INFO [12249]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 04:48:40.071 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:40.083 INFO [12249]: COREGRADE is stopping... -- 04:48:40.083 DEBUG [12249]: Closing database connection -- 04:48:40.083 SQL [12249]: pgsql_close() -- 04:48:40.149 INFO [12249]: COREGRADE is starting... -- 04:48:40.150 INFO [12249]: Version from config: 1.0 -- 04:48:40.150 DEBUG [12249]: Connecting to database... -- 04:48:40.150 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:40.150 SQL [12249]: pgsql_db_connect() -- 04:48:40.154 DEBUG [12249]: Database connection successful -- 04:48:40.154 INFO [12249]: _SERVER found -- 04:48:40.154 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 04:48:40.154 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:40.154 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:40.154 INFO [12249]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 04:48:40.154 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:40.165 INFO [12249]: COREGRADE is stopping... -- 04:48:40.165 DEBUG [12249]: Closing database connection -- 04:48:40.165 SQL [12249]: pgsql_close() -- 04:48:40.232 INFO [12249]: COREGRADE is starting... -- 04:48:40.232 INFO [12249]: Version from config: 1.0 -- 04:48:40.232 DEBUG [12249]: Connecting to database... -- 04:48:40.232 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:40.232 SQL [12249]: pgsql_db_connect() -- 04:48:40.236 DEBUG [12249]: Database connection successful -- 04:48:40.236 INFO [12249]: _SERVER found -- 04:48:40.236 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 04:48:40.236 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:40.236 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:40.236 INFO [12249]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 04:48:40.236 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:40.247 INFO [12249]: COREGRADE is stopping... -- 04:48:40.247 DEBUG [12249]: Closing database connection -- 04:48:40.247 SQL [12249]: pgsql_close() -- 04:48:40.314 INFO [12249]: COREGRADE is starting... -- 04:48:40.314 INFO [12249]: Version from config: 1.0 -- 04:48:40.314 DEBUG [12249]: Connecting to database... -- 04:48:40.314 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:40.314 SQL [12249]: pgsql_db_connect() -- 04:48:40.318 DEBUG [12249]: Database connection successful -- 04:48:40.318 INFO [12249]: _SERVER found -- 04:48:40.318 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 04:48:40.318 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:40.318 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:40.318 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 04:48:40.318 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:40.330 INFO [12249]: COREGRADE is stopping... -- 04:48:40.330 DEBUG [12249]: Closing database connection -- 04:48:40.330 SQL [12249]: pgsql_close() -- 04:48:40.396 INFO [12249]: COREGRADE is starting... -- 04:48:40.396 INFO [12249]: Version from config: 1.0 -- 04:48:40.396 DEBUG [12249]: Connecting to database... -- 04:48:40.397 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:40.397 SQL [12249]: pgsql_db_connect() -- 04:48:40.401 DEBUG [12249]: Database connection successful -- 04:48:40.401 INFO [12249]: _SERVER found -- 04:48:40.401 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 04:48:40.401 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:40.401 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:40.401 INFO [12249]: QUERY_STRING = /assets/js/pages/picker_date.js -- 04:48:40.401 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:40.412 INFO [12249]: COREGRADE is stopping... -- 04:48:40.412 DEBUG [12249]: Closing database connection -- 04:48:40.412 SQL [12249]: pgsql_close() -- 04:48:40.479 INFO [12249]: COREGRADE is starting... -- 04:48:40.479 INFO [12249]: Version from config: 1.0 -- 04:48:40.479 DEBUG [12249]: Connecting to database... -- 04:48:40.479 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:40.479 SQL [12249]: pgsql_db_connect() -- 04:48:40.483 DEBUG [12249]: Database connection successful -- 04:48:40.483 INFO [12249]: _SERVER found -- 04:48:40.483 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 04:48:40.483 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:40.483 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:40.483 INFO [12249]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 04:48:40.483 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:40.494 INFO [12249]: COREGRADE is stopping... -- 04:48:40.494 DEBUG [12249]: Closing database connection -- 04:48:40.495 SQL [12249]: pgsql_close() -- 04:48:40.561 INFO [12249]: COREGRADE is starting... -- 04:48:40.561 INFO [12249]: Version from config: 1.0 -- 04:48:40.561 DEBUG [12249]: Connecting to database... -- 04:48:40.561 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:40.561 SQL [12249]: pgsql_db_connect() -- 04:48:40.565 DEBUG [12249]: Database connection successful -- 04:48:40.565 INFO [12249]: _SERVER found -- 04:48:40.565 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 04:48:40.565 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:40.565 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:40.565 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 04:48:40.565 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:40.577 INFO [12249]: COREGRADE is stopping... -- 04:48:40.577 DEBUG [12249]: Closing database connection -- 04:48:40.577 SQL [12249]: pgsql_close() -- 04:48:40.644 INFO [12249]: COREGRADE is starting... -- 04:48:40.644 INFO [12249]: Version from config: 1.0 -- 04:48:40.644 DEBUG [12249]: Connecting to database... -- 04:48:40.644 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:40.644 SQL [12249]: pgsql_db_connect() -- 04:48:40.648 DEBUG [12249]: Database connection successful -- 04:48:40.648 INFO [12249]: _SERVER found -- 04:48:40.648 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 04:48:40.648 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:40.648 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:40.648 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 04:48:40.648 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:40.660 INFO [12249]: COREGRADE is stopping... -- 04:48:40.660 DEBUG [12249]: Closing database connection -- 04:48:40.660 SQL [12249]: pgsql_close() -- 04:48:40.726 INFO [12249]: COREGRADE is starting... -- 04:48:40.727 INFO [12249]: Version from config: 1.0 -- 04:48:40.727 DEBUG [12249]: Connecting to database... -- 04:48:40.727 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:40.727 SQL [12249]: pgsql_db_connect() -- 04:48:40.731 DEBUG [12249]: Database connection successful -- 04:48:40.731 INFO [12249]: _SERVER found -- 04:48:40.731 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 04:48:40.731 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:40.731 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:40.731 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 04:48:40.731 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:40.742 INFO [12249]: COREGRADE is stopping... -- 04:48:40.742 DEBUG [12249]: Closing database connection -- 04:48:40.742 SQL [12249]: pgsql_close() -- 04:48:40.809 INFO [12249]: COREGRADE is starting... -- 04:48:40.809 INFO [12249]: Version from config: 1.0 -- 04:48:40.809 DEBUG [12249]: Connecting to database... -- 04:48:40.809 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:40.809 SQL [12249]: pgsql_db_connect() -- 04:48:40.813 DEBUG [12249]: Database connection successful -- 04:48:40.813 INFO [12249]: _SERVER found -- 04:48:40.813 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 04:48:40.813 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:40.813 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:40.813 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 04:48:40.813 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:40.825 INFO [12249]: COREGRADE is stopping... -- 04:48:40.825 DEBUG [12249]: Closing database connection -- 04:48:40.825 SQL [12249]: pgsql_close() -- 04:48:40.901 INFO [12249]: COREGRADE is starting... -- 04:48:40.901 INFO [12249]: Version from config: 1.0 -- 04:48:40.901 DEBUG [12249]: Connecting to database... -- 04:48:40.901 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:40.901 SQL [12249]: pgsql_db_connect() -- 04:48:40.905 DEBUG [12249]: Database connection successful -- 04:48:40.905 INFO [12249]: _SERVER found -- 04:48:40.905 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 04:48:40.905 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:40.905 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:40.905 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 04:48:40.905 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:40.917 INFO [12249]: COREGRADE is stopping... -- 04:48:40.917 DEBUG [12249]: Closing database connection -- 04:48:40.917 SQL [12249]: pgsql_close() -- 04:48:40.983 INFO [12249]: COREGRADE is starting... -- 04:48:40.984 INFO [12249]: Version from config: 1.0 -- 04:48:40.984 DEBUG [12249]: Connecting to database... -- 04:48:40.984 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:40.984 SQL [12249]: pgsql_db_connect() -- 04:48:40.988 DEBUG [12249]: Database connection successful -- 04:48:40.988 INFO [12249]: _SERVER found -- 04:48:40.988 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 04:48:40.988 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:40.988 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:40.988 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 04:48:40.988 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:40.999 INFO [12249]: COREGRADE is stopping... -- 04:48:40.999 DEBUG [12249]: Closing database connection -- 04:48:40.999 SQL [12249]: pgsql_close() -- 04:48:41.068 INFO [12249]: COREGRADE is starting... -- 04:48:41.068 INFO [12249]: Version from config: 1.0 -- 04:48:41.068 DEBUG [12249]: Connecting to database... -- 04:48:41.068 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:48:41.068 SQL [12249]: pgsql_db_connect() -- 04:48:41.073 DEBUG [12249]: Database connection successful -- 04:48:41.073 INFO [12249]: _SERVER found -- 04:48:41.073 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 04:48:41.073 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 04:48:41.073 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 04:48:41.073 INFO [12249]: QUERY_STRING = /assets/customjs/general.js -- 04:48:41.073 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 04:48:41.084 INFO [12249]: COREGRADE is stopping... -- 04:48:41.084 DEBUG [12249]: Closing database connection -- 04:48:41.084 SQL [12249]: pgsql_close() -- 05:08:41.301 INFO [12305]: COREGRADE is starting... -- 05:08:41.301 INFO [12305]: Version from config: 1.0 -- 05:08:41.301 DEBUG [12305]: Connecting to database... -- 05:08:41.301 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:41.301 SQL [12305]: pgsql_db_connect() -- 05:08:41.306 DEBUG [12305]: Database connection successful -- 05:08:41.306 INFO [12305]: _SERVER found -- 05:08:41.306 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 05:08:41.306 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:41.306 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=bfl18p1m3fq9m9odjelo46198h7371gh -- 05:08:41.306 INFO [12305]: QUERY_STRING = /logout -- 05:08:41.306 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:41.342 INFO [12305]: COREGRADE is stopping... -- 05:08:41.342 DEBUG [12305]: Closing database connection -- 05:08:41.342 SQL [12305]: pgsql_close() -- 05:08:41.420 INFO [12305]: COREGRADE is starting... -- 05:08:41.421 INFO [12305]: Version from config: 1.0 -- 05:08:41.421 DEBUG [12305]: Connecting to database... -- 05:08:41.421 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:41.421 SQL [12305]: pgsql_db_connect() -- 05:08:41.425 DEBUG [12305]: Database connection successful -- 05:08:41.425 INFO [12305]: _SERVER found -- 05:08:41.425 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 05:08:41.425 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:41.425 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:41.425 INFO [12305]: QUERY_STRING = /start -- 05:08:41.425 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:41.465 INFO [12305]: COREGRADE is stopping... -- 05:08:41.465 DEBUG [12305]: Closing database connection -- 05:08:41.465 SQL [12305]: pgsql_close() -- 05:08:41.593 INFO [12347]: COREGRADE is starting... -- 05:08:41.593 INFO [12347]: Version from config: 1.0 -- 05:08:41.593 DEBUG [12347]: Connecting to database... -- 05:08:41.593 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:41.593 SQL [12347]: pgsql_db_connect() -- 05:08:41.611 INFO [12305]: COREGRADE is starting... -- 05:08:41.597 DEBUG [12347]: Database connection successful -- 05:08:41.597 INFO [12347]: _SERVER found -- 05:08:41.597 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 05:08:41.597 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:41.597 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:41.597 INFO [12347]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 05:08:41.597 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:41.611 INFO [12347]: COREGRADE is stopping... -- 05:08:41.611 DEBUG [12347]: Closing database connection -- 05:08:41.611 SQL [12347]: pgsql_close() -- 05:08:41.611 INFO [12305]: Version from config: 1.0 -- 05:08:41.611 DEBUG [12305]: Connecting to database... -- 05:08:41.611 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:41.611 SQL [12305]: pgsql_db_connect() -- 05:08:41.615 DEBUG [12305]: Database connection successful -- 05:08:41.615 INFO [12305]: _SERVER found -- 05:08:41.615 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 05:08:41.615 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:41.615 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:41.615 INFO [12305]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 05:08:41.615 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:41.626 INFO [12305]: COREGRADE is stopping... -- 05:08:41.626 DEBUG [12305]: Closing database connection -- 05:08:41.626 SQL [12305]: pgsql_close() -- 05:08:41.653 INFO [12305]: COREGRADE is starting... -- 05:08:41.653 INFO [12305]: Version from config: 1.0 -- 05:08:41.653 DEBUG [12305]: Connecting to database... -- 05:08:41.653 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:41.653 SQL [12305]: pgsql_db_connect() -- 05:08:41.658 DEBUG [12305]: Database connection successful -- 05:08:41.658 INFO [12305]: _SERVER found -- 05:08:41.658 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 05:08:41.658 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:41.658 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:41.658 INFO [12305]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 05:08:41.658 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:41.669 INFO [12305]: COREGRADE is stopping... -- 05:08:41.669 DEBUG [12305]: Closing database connection -- 05:08:41.669 SQL [12305]: pgsql_close() -- 05:08:41.690 INFO [12347]: COREGRADE is starting... -- 05:08:41.691 INFO [12347]: Version from config: 1.0 -- 05:08:41.691 DEBUG [12347]: Connecting to database... -- 05:08:41.691 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:41.691 SQL [12347]: pgsql_db_connect() -- 05:08:41.692 INFO [12305]: COREGRADE is starting... -- 05:08:41.692 INFO [12305]: Version from config: 1.0 -- 05:08:41.692 DEBUG [12305]: Connecting to database... -- 05:08:41.692 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:41.692 SQL [12305]: pgsql_db_connect() -- 05:08:41.695 DEBUG [12347]: Database connection successful -- 05:08:41.695 INFO [12347]: _SERVER found -- 05:08:41.695 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 05:08:41.695 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:41.695 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:41.695 INFO [12347]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 05:08:41.695 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:41.706 INFO [12347]: COREGRADE is stopping... -- 05:08:41.706 DEBUG [12347]: Closing database connection -- 05:08:41.706 SQL [12347]: pgsql_close() -- 05:08:41.696 DEBUG [12305]: Database connection successful -- 05:08:41.696 INFO [12305]: _SERVER found -- 05:08:41.696 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 05:08:41.696 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:41.696 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:41.696 INFO [12305]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 05:08:41.696 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:41.707 INFO [12305]: COREGRADE is stopping... -- 05:08:41.707 DEBUG [12305]: Closing database connection -- 05:08:41.707 SQL [12305]: pgsql_close() -- 05:08:41.748 INFO [12305]: COREGRADE is starting... -- 05:08:41.749 INFO [12305]: Version from config: 1.0 -- 05:08:41.749 DEBUG [12305]: Connecting to database... -- 05:08:41.749 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:41.749 SQL [12305]: pgsql_db_connect() -- 05:08:41.753 DEBUG [12305]: Database connection successful -- 05:08:41.753 INFO [12305]: _SERVER found -- 05:08:41.753 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 05:08:41.753 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:41.753 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:41.753 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 05:08:41.753 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:41.764 INFO [12305]: COREGRADE is stopping... -- 05:08:41.764 DEBUG [12305]: Closing database connection -- 05:08:41.764 SQL [12305]: pgsql_close() -- 05:08:41.774 INFO [12305]: COREGRADE is starting... -- 05:08:41.774 INFO [12305]: Version from config: 1.0 -- 05:08:41.774 DEBUG [12305]: Connecting to database... -- 05:08:41.774 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:41.774 SQL [12305]: pgsql_db_connect() -- 05:08:41.786 INFO [12347]: COREGRADE is starting... -- 05:08:41.787 INFO [12347]: Version from config: 1.0 -- 05:08:41.787 DEBUG [12347]: Connecting to database... -- 05:08:41.787 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:41.787 SQL [12347]: pgsql_db_connect() -- 05:08:41.778 DEBUG [12305]: Database connection successful -- 05:08:41.778 INFO [12305]: _SERVER found -- 05:08:41.778 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 05:08:41.778 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:41.778 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:41.778 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 05:08:41.778 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:41.790 INFO [12305]: COREGRADE is stopping... -- 05:08:41.790 DEBUG [12305]: Closing database connection -- 05:08:41.790 SQL [12305]: pgsql_close() -- 05:08:41.791 DEBUG [12347]: Database connection successful -- 05:08:41.791 INFO [12347]: _SERVER found -- 05:08:41.791 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 05:08:41.791 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:41.791 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:41.791 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 05:08:41.791 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:41.802 INFO [12347]: COREGRADE is stopping... -- 05:08:41.802 DEBUG [12347]: Closing database connection -- 05:08:41.802 SQL [12347]: pgsql_close() -- 05:08:41.844 INFO [12305]: COREGRADE is starting... -- 05:08:41.844 INFO [12305]: Version from config: 1.0 -- 05:08:41.844 DEBUG [12305]: Connecting to database... -- 05:08:41.844 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:41.844 SQL [12305]: pgsql_db_connect() -- 05:08:41.856 INFO [12334]: COREGRADE is starting... -- 05:08:41.857 INFO [12334]: Version from config: 1.0 -- 05:08:41.857 DEBUG [12334]: Connecting to database... -- 05:08:41.857 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:41.857 SQL [12334]: pgsql_db_connect() -- 05:08:41.848 DEBUG [12305]: Database connection successful -- 05:08:41.848 INFO [12305]: _SERVER found -- 05:08:41.848 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 05:08:41.848 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:41.848 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:41.848 INFO [12305]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 05:08:41.848 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:41.860 INFO [12305]: COREGRADE is stopping... -- 05:08:41.860 DEBUG [12305]: Closing database connection -- 05:08:41.860 SQL [12305]: pgsql_close() -- 05:08:41.861 DEBUG [12334]: Database connection successful -- 05:08:41.861 INFO [12334]: _SERVER found -- 05:08:41.861 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 05:08:41.861 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:41.861 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:41.861 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 05:08:41.861 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:41.874 INFO [12334]: COREGRADE is stopping... -- 05:08:41.874 DEBUG [12334]: Closing database connection -- 05:08:41.874 SQL [12334]: pgsql_close() -- 05:08:41.882 INFO [12347]: COREGRADE is starting... -- 05:08:41.882 INFO [12347]: Version from config: 1.0 -- 05:08:41.882 DEBUG [12347]: Connecting to database... -- 05:08:41.882 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:41.883 SQL [12347]: pgsql_db_connect() -- 05:08:41.886 DEBUG [12347]: Database connection successful -- 05:08:41.886 INFO [12347]: _SERVER found -- 05:08:41.886 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 05:08:41.886 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:41.886 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:41.886 INFO [12347]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 05:08:41.886 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:41.898 INFO [12347]: COREGRADE is stopping... -- 05:08:41.898 DEBUG [12347]: Closing database connection -- 05:08:41.898 SQL [12347]: pgsql_close() -- 05:08:41.940 INFO [12334]: COREGRADE is starting... -- 05:08:41.940 INFO [12305]: COREGRADE is starting... -- 05:08:41.940 INFO [12305]: Version from config: 1.0 -- 05:08:41.940 DEBUG [12305]: Connecting to database... -- 05:08:41.940 INFO [12334]: Version from config: 1.0 -- 05:08:41.940 DEBUG [12334]: Connecting to database... -- 05:08:41.940 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:41.940 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:41.940 SQL [12334]: pgsql_db_connect() -- 05:08:41.940 SQL [12305]: pgsql_db_connect() -- 05:08:41.944 DEBUG [12334]: Database connection successful -- 05:08:41.944 INFO [12334]: _SERVER found -- 05:08:41.944 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 05:08:41.944 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:41.944 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:41.944 INFO [12334]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 05:08:41.944 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:41.955 INFO [12334]: COREGRADE is stopping... -- 05:08:41.944 DEBUG [12305]: Database connection successful -- 05:08:41.944 INFO [12305]: _SERVER found -- 05:08:41.944 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 05:08:41.944 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:41.944 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:41.944 INFO [12305]: QUERY_STRING = /assets/js/pages/dashboard.js -- 05:08:41.944 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:41.955 INFO [12305]: COREGRADE is stopping... -- 05:08:41.955 DEBUG [12334]: Closing database connection -- 05:08:41.955 DEBUG [12305]: Closing database connection -- 05:08:41.955 SQL [12334]: pgsql_close() -- 05:08:41.956 SQL [12305]: pgsql_close() -- 05:08:41.968 INFO [12347]: COREGRADE is starting... -- 05:08:41.968 INFO [12347]: Version from config: 1.0 -- 05:08:41.968 DEBUG [12347]: Connecting to database... -- 05:08:41.968 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:41.968 SQL [12347]: pgsql_db_connect() -- 05:08:41.972 DEBUG [12347]: Database connection successful -- 05:08:41.972 INFO [12347]: _SERVER found -- 05:08:41.972 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 05:08:41.972 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:41.972 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:41.972 INFO [12347]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 05:08:41.972 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:41.983 INFO [12347]: COREGRADE is stopping... -- 05:08:41.983 DEBUG [12347]: Closing database connection -- 05:08:41.983 SQL [12347]: pgsql_close() -- 05:08:42.022 INFO [12305]: COREGRADE is starting... -- 05:08:42.022 INFO [12305]: Version from config: 1.0 -- 05:08:42.022 DEBUG [12305]: Connecting to database... -- 05:08:42.022 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:42.022 SQL [12305]: pgsql_db_connect() -- 05:08:42.025 INFO [12334]: COREGRADE is starting... -- 05:08:42.025 INFO [12334]: Version from config: 1.0 -- 05:08:42.025 DEBUG [12334]: Connecting to database... -- 05:08:42.025 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:42.025 SQL [12334]: pgsql_db_connect() -- 05:08:42.026 DEBUG [12305]: Database connection successful -- 05:08:42.026 INFO [12305]: _SERVER found -- 05:08:42.026 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 05:08:42.026 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:42.026 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:42.026 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 05:08:42.026 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:42.037 INFO [12305]: COREGRADE is stopping... -- 05:08:42.037 DEBUG [12305]: Closing database connection -- 05:08:42.037 SQL [12305]: pgsql_close() -- 05:08:42.029 DEBUG [12334]: Database connection successful -- 05:08:42.029 INFO [12334]: _SERVER found -- 05:08:42.029 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 05:08:42.029 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:42.029 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:42.029 INFO [12334]: QUERY_STRING = /assets/js/pages/picker_date.js -- 05:08:42.029 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:42.040 INFO [12334]: COREGRADE is stopping... -- 05:08:42.040 DEBUG [12334]: Closing database connection -- 05:08:42.040 SQL [12334]: pgsql_close() -- 05:08:42.052 INFO [12347]: COREGRADE is starting... -- 05:08:42.053 INFO [12347]: Version from config: 1.0 -- 05:08:42.053 DEBUG [12347]: Connecting to database... -- 05:08:42.053 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:42.053 SQL [12347]: pgsql_db_connect() -- 05:08:42.056 DEBUG [12347]: Database connection successful -- 05:08:42.056 INFO [12347]: _SERVER found -- 05:08:42.057 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 05:08:42.057 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:42.057 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:42.057 INFO [12347]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 05:08:42.057 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:42.068 INFO [12347]: COREGRADE is stopping... -- 05:08:42.068 DEBUG [12347]: Closing database connection -- 05:08:42.068 SQL [12347]: pgsql_close() -- 05:08:42.103 INFO [12334]: COREGRADE is starting... -- 05:08:42.104 INFO [12334]: Version from config: 1.0 -- 05:08:42.104 DEBUG [12334]: Connecting to database... -- 05:08:42.104 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:42.104 SQL [12334]: pgsql_db_connect() -- 05:08:42.109 INFO [12305]: COREGRADE is starting... -- 05:08:42.109 INFO [12305]: Version from config: 1.0 -- 05:08:42.109 DEBUG [12305]: Connecting to database... -- 05:08:42.109 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:42.109 SQL [12305]: pgsql_db_connect() -- 05:08:42.107 DEBUG [12334]: Database connection successful -- 05:08:42.107 INFO [12334]: _SERVER found -- 05:08:42.107 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 05:08:42.107 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:42.107 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:42.107 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 05:08:42.107 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:42.119 INFO [12334]: COREGRADE is stopping... -- 05:08:42.119 DEBUG [12334]: Closing database connection -- 05:08:42.119 SQL [12334]: pgsql_close() -- 05:08:42.113 DEBUG [12305]: Database connection successful -- 05:08:42.113 INFO [12305]: _SERVER found -- 05:08:42.113 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 05:08:42.113 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:42.113 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:42.113 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 05:08:42.113 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:42.125 INFO [12305]: COREGRADE is stopping... -- 05:08:42.125 DEBUG [12305]: Closing database connection -- 05:08:42.125 SQL [12305]: pgsql_close() -- 05:08:42.137 INFO [12347]: COREGRADE is starting... -- 05:08:42.137 INFO [12347]: Version from config: 1.0 -- 05:08:42.137 DEBUG [12347]: Connecting to database... -- 05:08:42.137 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:42.137 SQL [12347]: pgsql_db_connect() -- 05:08:42.141 DEBUG [12347]: Database connection successful -- 05:08:42.141 INFO [12347]: _SERVER found -- 05:08:42.141 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 05:08:42.141 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:42.141 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:42.141 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 05:08:42.141 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:42.152 INFO [12347]: COREGRADE is stopping... -- 05:08:42.152 DEBUG [12347]: Closing database connection -- 05:08:42.152 SQL [12347]: pgsql_close() -- 05:08:42.185 INFO [12305]: COREGRADE is starting... -- 05:08:42.185 INFO [12305]: Version from config: 1.0 -- 05:08:42.185 DEBUG [12305]: Connecting to database... -- 05:08:42.186 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:42.186 SQL [12305]: pgsql_db_connect() -- 05:08:42.193 INFO [12334]: COREGRADE is starting... -- 05:08:42.193 INFO [12334]: Version from config: 1.0 -- 05:08:42.193 DEBUG [12334]: Connecting to database... -- 05:08:42.193 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:42.193 SQL [12334]: pgsql_db_connect() -- 05:08:42.189 DEBUG [12305]: Database connection successful -- 05:08:42.189 INFO [12305]: _SERVER found -- 05:08:42.189 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 05:08:42.189 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:42.189 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:42.189 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 05:08:42.190 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:42.201 INFO [12305]: COREGRADE is stopping... -- 05:08:42.201 DEBUG [12305]: Closing database connection -- 05:08:42.201 SQL [12305]: pgsql_close() -- 05:08:42.197 DEBUG [12334]: Database connection successful -- 05:08:42.197 INFO [12334]: _SERVER found -- 05:08:42.197 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 05:08:42.197 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:42.197 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:42.197 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 05:08:42.197 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:42.208 INFO [12334]: COREGRADE is stopping... -- 05:08:42.208 DEBUG [12334]: Closing database connection -- 05:08:42.208 SQL [12334]: pgsql_close() -- 05:08:42.221 INFO [12347]: COREGRADE is starting... -- 05:08:42.222 INFO [12347]: Version from config: 1.0 -- 05:08:42.222 DEBUG [12347]: Connecting to database... -- 05:08:42.222 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:42.222 SQL [12347]: pgsql_db_connect() -- 05:08:42.226 DEBUG [12347]: Database connection successful -- 05:08:42.226 INFO [12347]: _SERVER found -- 05:08:42.226 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 05:08:42.226 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:42.226 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:42.226 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 05:08:42.226 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:42.237 INFO [12347]: COREGRADE is stopping... -- 05:08:42.237 DEBUG [12347]: Closing database connection -- 05:08:42.237 SQL [12347]: pgsql_close() -- 05:08:42.267 INFO [12334]: COREGRADE is starting... -- 05:08:42.267 INFO [12334]: Version from config: 1.0 -- 05:08:42.267 DEBUG [12334]: Connecting to database... -- 05:08:42.267 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:42.267 SQL [12334]: pgsql_db_connect() -- 05:08:42.276 INFO [12305]: COREGRADE is starting... -- 05:08:42.277 INFO [12305]: Version from config: 1.0 -- 05:08:42.277 DEBUG [12305]: Connecting to database... -- 05:08:42.277 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:42.277 SQL [12305]: pgsql_db_connect() -- 05:08:42.271 DEBUG [12334]: Database connection successful -- 05:08:42.271 INFO [12334]: _SERVER found -- 05:08:42.271 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 05:08:42.271 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:42.271 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:42.271 INFO [12334]: QUERY_STRING = /assets/customjs/general.js -- 05:08:42.271 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:42.283 INFO [12334]: COREGRADE is stopping... -- 05:08:42.283 DEBUG [12334]: Closing database connection -- 05:08:42.283 SQL [12334]: pgsql_close() -- 05:08:42.280 DEBUG [12305]: Database connection successful -- 05:08:42.280 INFO [12305]: _SERVER found -- 05:08:42.280 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 05:08:42.280 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:42.280 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:42.280 INFO [12305]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 05:08:42.280 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:42.292 INFO [12305]: COREGRADE is stopping... -- 05:08:42.292 DEBUG [12305]: Closing database connection -- 05:08:42.292 SQL [12305]: pgsql_close() -- 05:08:42.361 INFO [12305]: COREGRADE is starting... -- 05:08:42.362 INFO [12305]: Version from config: 1.0 -- 05:08:42.362 DEBUG [12305]: Connecting to database... -- 05:08:42.362 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:42.362 SQL [12305]: pgsql_db_connect() -- 05:08:42.366 DEBUG [12305]: Database connection successful -- 05:08:42.366 INFO [12305]: _SERVER found -- 05:08:42.366 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 05:08:42.366 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:42.366 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:42.366 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 05:08:42.366 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:42.377 INFO [12305]: COREGRADE is stopping... -- 05:08:42.377 DEBUG [12305]: Closing database connection -- 05:08:42.377 SQL [12305]: pgsql_close() -- 05:08:42.446 INFO [12305]: COREGRADE is starting... -- 05:08:42.446 INFO [12305]: Version from config: 1.0 -- 05:08:42.446 DEBUG [12305]: Connecting to database... -- 05:08:42.446 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:42.446 SQL [12305]: pgsql_db_connect() -- 05:08:42.450 DEBUG [12305]: Database connection successful -- 05:08:42.450 INFO [12305]: _SERVER found -- 05:08:42.450 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 05:08:42.450 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:42.450 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:42.450 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 05:08:42.450 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:42.461 INFO [12305]: COREGRADE is stopping... -- 05:08:42.461 DEBUG [12305]: Closing database connection -- 05:08:42.461 SQL [12305]: pgsql_close() -- 05:08:42.530 INFO [12305]: COREGRADE is starting... -- 05:08:42.530 INFO [12305]: Version from config: 1.0 -- 05:08:42.530 DEBUG [12305]: Connecting to database... -- 05:08:42.530 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:42.530 SQL [12305]: pgsql_db_connect() -- 05:08:42.534 DEBUG [12305]: Database connection successful -- 05:08:42.534 INFO [12305]: _SERVER found -- 05:08:42.534 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 05:08:42.534 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:42.534 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:42.534 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 05:08:42.534 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:42.546 INFO [12305]: COREGRADE is stopping... -- 05:08:42.546 DEBUG [12305]: Closing database connection -- 05:08:42.546 SQL [12305]: pgsql_close() -- 05:08:42.614 INFO [12305]: COREGRADE is starting... -- 05:08:42.615 INFO [12305]: Version from config: 1.0 -- 05:08:42.615 DEBUG [12305]: Connecting to database... -- 05:08:42.615 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:42.615 SQL [12305]: pgsql_db_connect() -- 05:08:42.619 DEBUG [12305]: Database connection successful -- 05:08:42.619 INFO [12305]: _SERVER found -- 05:08:42.619 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 05:08:42.619 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:42.619 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:42.619 INFO [12305]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 05:08:42.619 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:42.630 INFO [12305]: COREGRADE is stopping... -- 05:08:42.630 DEBUG [12305]: Closing database connection -- 05:08:42.630 SQL [12305]: pgsql_close() -- 05:08:42.699 INFO [12305]: COREGRADE is starting... -- 05:08:42.699 INFO [12305]: Version from config: 1.0 -- 05:08:42.699 DEBUG [12305]: Connecting to database... -- 05:08:42.699 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:42.699 SQL [12305]: pgsql_db_connect() -- 05:08:42.703 DEBUG [12305]: Database connection successful -- 05:08:42.703 INFO [12305]: _SERVER found -- 05:08:42.703 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 05:08:42.703 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:42.703 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:42.703 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 05:08:42.703 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:42.715 INFO [12305]: COREGRADE is stopping... -- 05:08:42.715 DEBUG [12305]: Closing database connection -- 05:08:42.715 SQL [12305]: pgsql_close() -- 05:08:42.783 INFO [12305]: COREGRADE is starting... -- 05:08:42.784 INFO [12305]: Version from config: 1.0 -- 05:08:42.784 DEBUG [12305]: Connecting to database... -- 05:08:42.784 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:42.784 SQL [12305]: pgsql_db_connect() -- 05:08:42.788 DEBUG [12305]: Database connection successful -- 05:08:42.788 INFO [12305]: _SERVER found -- 05:08:42.788 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 05:08:42.788 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:42.788 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:42.788 INFO [12305]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 05:08:42.788 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:42.799 INFO [12305]: COREGRADE is stopping... -- 05:08:42.799 DEBUG [12305]: Closing database connection -- 05:08:42.799 SQL [12305]: pgsql_close() -- 05:08:42.868 INFO [12305]: COREGRADE is starting... -- 05:08:42.868 INFO [12305]: Version from config: 1.0 -- 05:08:42.868 DEBUG [12305]: Connecting to database... -- 05:08:42.869 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:42.869 SQL [12305]: pgsql_db_connect() -- 05:08:42.873 DEBUG [12305]: Database connection successful -- 05:08:42.873 INFO [12305]: _SERVER found -- 05:08:42.873 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 05:08:42.873 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:42.873 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:42.873 INFO [12305]: QUERY_STRING = /assets/js/pages/dashboard.js -- 05:08:42.873 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:42.884 INFO [12305]: COREGRADE is stopping... -- 05:08:42.884 DEBUG [12305]: Closing database connection -- 05:08:42.884 SQL [12305]: pgsql_close() -- 05:08:42.953 INFO [12305]: COREGRADE is starting... -- 05:08:42.953 INFO [12305]: Version from config: 1.0 -- 05:08:42.953 DEBUG [12305]: Connecting to database... -- 05:08:42.953 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:42.953 SQL [12305]: pgsql_db_connect() -- 05:08:42.957 DEBUG [12305]: Database connection successful -- 05:08:42.957 INFO [12305]: _SERVER found -- 05:08:42.957 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 05:08:42.957 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:42.957 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:42.957 INFO [12305]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 05:08:42.957 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:42.969 INFO [12305]: COREGRADE is stopping... -- 05:08:42.969 DEBUG [12305]: Closing database connection -- 05:08:42.969 SQL [12305]: pgsql_close() -- 05:08:43.038 INFO [12305]: COREGRADE is starting... -- 05:08:43.038 INFO [12305]: Version from config: 1.0 -- 05:08:43.038 DEBUG [12305]: Connecting to database... -- 05:08:43.038 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:43.038 SQL [12305]: pgsql_db_connect() -- 05:08:43.042 DEBUG [12305]: Database connection successful -- 05:08:43.042 INFO [12305]: _SERVER found -- 05:08:43.042 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 05:08:43.042 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:43.042 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:43.042 INFO [12305]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 05:08:43.042 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:43.053 INFO [12305]: COREGRADE is stopping... -- 05:08:43.053 DEBUG [12305]: Closing database connection -- 05:08:43.053 SQL [12305]: pgsql_close() -- 05:08:43.122 INFO [12305]: COREGRADE is starting... -- 05:08:43.122 INFO [12305]: Version from config: 1.0 -- 05:08:43.122 DEBUG [12305]: Connecting to database... -- 05:08:43.122 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:43.122 SQL [12305]: pgsql_db_connect() -- 05:08:43.126 DEBUG [12305]: Database connection successful -- 05:08:43.126 INFO [12305]: _SERVER found -- 05:08:43.126 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 05:08:43.126 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:43.126 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:43.126 INFO [12305]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 05:08:43.126 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:43.137 INFO [12305]: COREGRADE is stopping... -- 05:08:43.137 DEBUG [12305]: Closing database connection -- 05:08:43.137 SQL [12305]: pgsql_close() -- 05:08:43.205 INFO [12305]: COREGRADE is starting... -- 05:08:43.206 INFO [12305]: Version from config: 1.0 -- 05:08:43.206 DEBUG [12305]: Connecting to database... -- 05:08:43.206 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:43.206 SQL [12305]: pgsql_db_connect() -- 05:08:43.210 DEBUG [12305]: Database connection successful -- 05:08:43.210 INFO [12305]: _SERVER found -- 05:08:43.210 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 05:08:43.210 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:43.210 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:43.210 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 05:08:43.210 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:43.221 INFO [12305]: COREGRADE is stopping... -- 05:08:43.221 DEBUG [12305]: Closing database connection -- 05:08:43.221 SQL [12305]: pgsql_close() -- 05:08:43.290 INFO [12305]: COREGRADE is starting... -- 05:08:43.290 INFO [12305]: Version from config: 1.0 -- 05:08:43.290 DEBUG [12305]: Connecting to database... -- 05:08:43.290 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:43.290 SQL [12305]: pgsql_db_connect() -- 05:08:43.294 DEBUG [12305]: Database connection successful -- 05:08:43.294 INFO [12305]: _SERVER found -- 05:08:43.294 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 05:08:43.294 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:43.294 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:43.294 INFO [12305]: QUERY_STRING = /assets/js/pages/picker_date.js -- 05:08:43.294 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:43.305 INFO [12305]: COREGRADE is stopping... -- 05:08:43.305 DEBUG [12305]: Closing database connection -- 05:08:43.305 SQL [12305]: pgsql_close() -- 05:08:43.374 INFO [12305]: COREGRADE is starting... -- 05:08:43.374 INFO [12305]: Version from config: 1.0 -- 05:08:43.374 DEBUG [12305]: Connecting to database... -- 05:08:43.374 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:43.374 SQL [12305]: pgsql_db_connect() -- 05:08:43.378 DEBUG [12305]: Database connection successful -- 05:08:43.378 INFO [12305]: _SERVER found -- 05:08:43.378 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 05:08:43.378 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:43.378 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:43.378 INFO [12305]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 05:08:43.378 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:43.389 INFO [12305]: COREGRADE is stopping... -- 05:08:43.389 DEBUG [12305]: Closing database connection -- 05:08:43.389 SQL [12305]: pgsql_close() -- 05:08:43.458 INFO [12305]: COREGRADE is starting... -- 05:08:43.458 INFO [12305]: Version from config: 1.0 -- 05:08:43.458 DEBUG [12305]: Connecting to database... -- 05:08:43.458 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:43.458 SQL [12305]: pgsql_db_connect() -- 05:08:43.462 DEBUG [12305]: Database connection successful -- 05:08:43.462 INFO [12305]: _SERVER found -- 05:08:43.462 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 05:08:43.462 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:43.462 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:43.462 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 05:08:43.462 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:43.473 INFO [12305]: COREGRADE is stopping... -- 05:08:43.473 DEBUG [12305]: Closing database connection -- 05:08:43.473 SQL [12305]: pgsql_close() -- 05:08:43.541 INFO [12305]: COREGRADE is starting... -- 05:08:43.542 INFO [12305]: Version from config: 1.0 -- 05:08:43.542 DEBUG [12305]: Connecting to database... -- 05:08:43.542 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:43.542 SQL [12305]: pgsql_db_connect() -- 05:08:43.546 DEBUG [12305]: Database connection successful -- 05:08:43.546 INFO [12305]: _SERVER found -- 05:08:43.546 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 05:08:43.546 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:43.546 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:43.546 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 05:08:43.546 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:43.557 INFO [12305]: COREGRADE is stopping... -- 05:08:43.557 DEBUG [12305]: Closing database connection -- 05:08:43.557 SQL [12305]: pgsql_close() -- 05:08:43.626 INFO [12305]: COREGRADE is starting... -- 05:08:43.626 INFO [12305]: Version from config: 1.0 -- 05:08:43.626 DEBUG [12305]: Connecting to database... -- 05:08:43.626 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:43.626 SQL [12305]: pgsql_db_connect() -- 05:08:43.630 DEBUG [12305]: Database connection successful -- 05:08:43.630 INFO [12305]: _SERVER found -- 05:08:43.630 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 05:08:43.630 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:43.630 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:43.630 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 05:08:43.630 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:43.642 INFO [12305]: COREGRADE is stopping... -- 05:08:43.642 DEBUG [12305]: Closing database connection -- 05:08:43.642 SQL [12305]: pgsql_close() -- 05:08:43.710 INFO [12305]: COREGRADE is starting... -- 05:08:43.711 INFO [12305]: Version from config: 1.0 -- 05:08:43.711 DEBUG [12305]: Connecting to database... -- 05:08:43.711 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:43.711 SQL [12305]: pgsql_db_connect() -- 05:08:43.715 DEBUG [12305]: Database connection successful -- 05:08:43.715 INFO [12305]: _SERVER found -- 05:08:43.715 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 05:08:43.715 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:43.715 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:43.715 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 05:08:43.715 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:43.726 INFO [12305]: COREGRADE is stopping... -- 05:08:43.726 DEBUG [12305]: Closing database connection -- 05:08:43.726 SQL [12305]: pgsql_close() -- 05:08:43.805 INFO [12305]: COREGRADE is starting... -- 05:08:43.805 INFO [12305]: Version from config: 1.0 -- 05:08:43.805 DEBUG [12305]: Connecting to database... -- 05:08:43.806 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:43.806 SQL [12305]: pgsql_db_connect() -- 05:08:43.810 DEBUG [12305]: Database connection successful -- 05:08:43.810 INFO [12305]: _SERVER found -- 05:08:43.810 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 05:08:43.810 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:43.810 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:43.810 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 05:08:43.810 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:43.821 INFO [12305]: COREGRADE is stopping... -- 05:08:43.821 DEBUG [12305]: Closing database connection -- 05:08:43.821 SQL [12305]: pgsql_close() -- 05:08:43.890 INFO [12305]: COREGRADE is starting... -- 05:08:43.890 INFO [12305]: Version from config: 1.0 -- 05:08:43.890 DEBUG [12305]: Connecting to database... -- 05:08:43.890 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:43.890 SQL [12305]: pgsql_db_connect() -- 05:08:43.894 DEBUG [12305]: Database connection successful -- 05:08:43.894 INFO [12305]: _SERVER found -- 05:08:43.894 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 05:08:43.894 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:43.894 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:43.894 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 05:08:43.894 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:43.906 INFO [12305]: COREGRADE is stopping... -- 05:08:43.906 DEBUG [12305]: Closing database connection -- 05:08:43.906 SQL [12305]: pgsql_close() -- 05:08:43.976 INFO [12305]: COREGRADE is starting... -- 05:08:43.976 INFO [12305]: Version from config: 1.0 -- 05:08:43.976 DEBUG [12305]: Connecting to database... -- 05:08:43.976 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:08:43.976 SQL [12305]: pgsql_db_connect() -- 05:08:43.980 DEBUG [12305]: Database connection successful -- 05:08:43.980 INFO [12305]: _SERVER found -- 05:08:43.980 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 05:08:43.980 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:08:43.980 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:08:43.980 INFO [12305]: QUERY_STRING = /assets/customjs/general.js -- 05:08:43.980 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:08:43.992 INFO [12305]: COREGRADE is stopping... -- 05:08:43.992 DEBUG [12305]: Closing database connection -- 05:08:43.992 SQL [12305]: pgsql_close() -- 05:28:44.211 INFO [12248]: COREGRADE is starting... -- 05:28:44.211 INFO [12248]: Version from config: 1.0 -- 05:28:44.211 DEBUG [12248]: Connecting to database... -- 05:28:44.211 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:44.211 SQL [12248]: pgsql_db_connect() -- 05:28:44.215 DEBUG [12248]: Database connection successful -- 05:28:44.215 INFO [12248]: _SERVER found -- 05:28:44.215 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 05:28:44.215 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:44.215 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=f5bs4lu6i0s1tt2253pbckaktvt1pfs2 -- 05:28:44.215 INFO [12248]: QUERY_STRING = /logout -- 05:28:44.215 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:44.252 INFO [12248]: COREGRADE is stopping... -- 05:28:44.252 DEBUG [12248]: Closing database connection -- 05:28:44.252 SQL [12248]: pgsql_close() -- 05:28:44.330 INFO [12248]: COREGRADE is starting... -- 05:28:44.330 INFO [12248]: Version from config: 1.0 -- 05:28:44.330 DEBUG [12248]: Connecting to database... -- 05:28:44.330 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:44.330 SQL [12248]: pgsql_db_connect() -- 05:28:44.334 DEBUG [12248]: Database connection successful -- 05:28:44.334 INFO [12248]: _SERVER found -- 05:28:44.334 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 05:28:44.334 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:44.334 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:44.334 INFO [12248]: QUERY_STRING = /start -- 05:28:44.334 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:44.375 INFO [12248]: COREGRADE is stopping... -- 05:28:44.375 DEBUG [12248]: Closing database connection -- 05:28:44.375 SQL [12248]: pgsql_close() -- 05:28:44.500 INFO [12248]: COREGRADE is starting... -- 05:28:44.500 INFO [12248]: Version from config: 1.0 -- 05:28:44.500 DEBUG [12248]: Connecting to database... -- 05:28:44.500 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:44.500 SQL [12248]: pgsql_db_connect() -- 05:28:44.504 DEBUG [12248]: Database connection successful -- 05:28:44.504 INFO [12248]: _SERVER found -- 05:28:44.504 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 05:28:44.504 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:44.504 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:44.504 INFO [12248]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 05:28:44.504 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:44.516 INFO [12248]: COREGRADE is stopping... -- 05:28:44.516 DEBUG [12248]: Closing database connection -- 05:28:44.516 SQL [12248]: pgsql_close() -- 05:28:44.521 INFO [12248]: COREGRADE is starting... -- 05:28:44.521 INFO [12248]: Version from config: 1.0 -- 05:28:44.521 DEBUG [12248]: Connecting to database... -- 05:28:44.521 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:44.521 SQL [12248]: pgsql_db_connect() -- 05:28:44.525 DEBUG [12248]: Database connection successful -- 05:28:44.525 INFO [12248]: _SERVER found -- 05:28:44.525 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 05:28:44.525 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:44.525 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:44.525 INFO [12248]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 05:28:44.525 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:44.537 INFO [12248]: COREGRADE is stopping... -- 05:28:44.537 DEBUG [12248]: Closing database connection -- 05:28:44.537 SQL [12248]: pgsql_close() -- 05:28:44.572 INFO [12248]: COREGRADE is starting... -- 05:28:44.572 INFO [12248]: Version from config: 1.0 -- 05:28:44.572 DEBUG [12248]: Connecting to database... -- 05:28:44.572 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:44.572 SQL [12248]: pgsql_db_connect() -- 05:28:44.576 DEBUG [12248]: Database connection successful -- 05:28:44.576 INFO [12248]: _SERVER found -- 05:28:44.576 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 05:28:44.576 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:44.576 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:44.576 INFO [12248]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 05:28:44.576 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:44.588 INFO [12248]: COREGRADE is stopping... -- 05:28:44.588 DEBUG [12248]: Closing database connection -- 05:28:44.588 SQL [12248]: pgsql_close() -- 05:28:44.594 INFO [12248]: COREGRADE is starting... -- 05:28:44.595 INFO [12248]: Version from config: 1.0 -- 05:28:44.595 DEBUG [12248]: Connecting to database... -- 05:28:44.595 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:44.595 SQL [12248]: pgsql_db_connect() -- 05:28:44.602 INFO [12247]: COREGRADE is starting... -- 05:28:44.603 INFO [12247]: Version from config: 1.0 -- 05:28:44.603 DEBUG [12247]: Connecting to database... -- 05:28:44.603 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:44.603 SQL [12247]: pgsql_db_connect() -- 05:28:44.599 DEBUG [12248]: Database connection successful -- 05:28:44.599 INFO [12248]: _SERVER found -- 05:28:44.599 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 05:28:44.599 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:44.599 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:44.599 INFO [12248]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 05:28:44.599 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:44.610 INFO [12248]: COREGRADE is stopping... -- 05:28:44.610 DEBUG [12248]: Closing database connection -- 05:28:44.610 SQL [12248]: pgsql_close() -- 05:28:44.607 DEBUG [12247]: Database connection successful -- 05:28:44.607 INFO [12247]: _SERVER found -- 05:28:44.607 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 05:28:44.607 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:44.607 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:44.607 INFO [12247]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 05:28:44.607 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:44.621 INFO [12247]: COREGRADE is stopping... -- 05:28:44.621 DEBUG [12247]: Closing database connection -- 05:28:44.621 SQL [12247]: pgsql_close() -- 05:28:44.672 INFO [12247]: COREGRADE is starting... -- 05:28:44.672 INFO [12247]: Version from config: 1.0 -- 05:28:44.672 DEBUG [12247]: Connecting to database... -- 05:28:44.672 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:44.672 SQL [12247]: pgsql_db_connect() -- 05:28:44.676 DEBUG [12247]: Database connection successful -- 05:28:44.676 INFO [12247]: _SERVER found -- 05:28:44.676 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 05:28:44.676 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:44.676 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:44.676 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 05:28:44.676 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:44.687 INFO [12247]: COREGRADE is stopping... -- 05:28:44.688 DEBUG [12247]: Closing database connection -- 05:28:44.688 SQL [12247]: pgsql_close() -- 05:28:44.690 INFO [12248]: COREGRADE is starting... -- 05:28:44.690 INFO [12247]: COREGRADE is starting... -- 05:28:44.690 INFO [12247]: Version from config: 1.0 -- 05:28:44.690 DEBUG [12247]: Connecting to database... -- 05:28:44.690 INFO [12248]: Version from config: 1.0 -- 05:28:44.690 DEBUG [12248]: Connecting to database... -- 05:28:44.690 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:44.690 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:44.690 SQL [12247]: pgsql_db_connect() -- 05:28:44.690 SQL [12248]: pgsql_db_connect() -- 05:28:44.694 DEBUG [12248]: Database connection successful -- 05:28:44.694 INFO [12248]: _SERVER found -- 05:28:44.694 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 05:28:44.694 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:44.694 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:44.694 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 05:28:44.694 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:44.706 INFO [12248]: COREGRADE is stopping... -- 05:28:44.694 DEBUG [12247]: Database connection successful -- 05:28:44.694 INFO [12247]: _SERVER found -- 05:28:44.694 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 05:28:44.694 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:44.694 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:44.694 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 05:28:44.694 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:44.706 INFO [12247]: COREGRADE is stopping... -- 05:28:44.706 DEBUG [12248]: Closing database connection -- 05:28:44.706 DEBUG [12247]: Closing database connection -- 05:28:44.706 SQL [12248]: pgsql_close() -- 05:28:44.706 SQL [12247]: pgsql_close() -- 05:28:44.768 INFO [12247]: COREGRADE is starting... -- 05:28:44.768 INFO [12247]: Version from config: 1.0 -- 05:28:44.768 DEBUG [12247]: Connecting to database... -- 05:28:44.768 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:44.768 SQL [12247]: pgsql_db_connect() -- 05:28:44.773 INFO [12248]: COREGRADE is starting... -- 05:28:44.773 INFO [12248]: Version from config: 1.0 -- 05:28:44.773 DEBUG [12248]: Connecting to database... -- 05:28:44.773 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:44.773 SQL [12248]: pgsql_db_connect() -- 05:28:44.772 DEBUG [12247]: Database connection successful -- 05:28:44.772 INFO [12247]: _SERVER found -- 05:28:44.772 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 05:28:44.772 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:44.772 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:44.772 INFO [12247]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 05:28:44.772 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:44.784 INFO [12247]: COREGRADE is stopping... -- 05:28:44.784 DEBUG [12247]: Closing database connection -- 05:28:44.784 SQL [12247]: pgsql_close() -- 05:28:44.786 INFO [12247]: COREGRADE is starting... -- 05:28:44.787 INFO [12247]: Version from config: 1.0 -- 05:28:44.787 DEBUG [12247]: Connecting to database... -- 05:28:44.787 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:44.787 SQL [12247]: pgsql_db_connect() -- 05:28:44.777 DEBUG [12248]: Database connection successful -- 05:28:44.777 INFO [12248]: _SERVER found -- 05:28:44.777 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 05:28:44.777 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:44.777 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:44.777 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 05:28:44.777 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:44.789 INFO [12248]: COREGRADE is stopping... -- 05:28:44.789 DEBUG [12248]: Closing database connection -- 05:28:44.789 SQL [12248]: pgsql_close() -- 05:28:44.791 DEBUG [12247]: Database connection successful -- 05:28:44.791 INFO [12247]: _SERVER found -- 05:28:44.791 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 05:28:44.791 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:44.791 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:44.791 INFO [12247]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 05:28:44.791 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:44.802 INFO [12247]: COREGRADE is stopping... -- 05:28:44.802 DEBUG [12247]: Closing database connection -- 05:28:44.802 SQL [12247]: pgsql_close() -- 05:28:44.855 INFO [12247]: COREGRADE is starting... -- 05:28:44.855 INFO [12247]: Version from config: 1.0 -- 05:28:44.855 DEBUG [12247]: Connecting to database... -- 05:28:44.855 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:44.855 SQL [12247]: pgsql_db_connect() -- 05:28:44.862 INFO [12248]: COREGRADE is starting... -- 05:28:44.862 INFO [12248]: Version from config: 1.0 -- 05:28:44.862 DEBUG [12248]: Connecting to database... -- 05:28:44.862 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:44.862 SQL [12248]: pgsql_db_connect() -- 05:28:44.859 DEBUG [12247]: Database connection successful -- 05:28:44.859 INFO [12247]: _SERVER found -- 05:28:44.859 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 05:28:44.859 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:44.859 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:44.859 INFO [12247]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 05:28:44.859 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:44.871 INFO [12247]: COREGRADE is stopping... -- 05:28:44.871 DEBUG [12247]: Closing database connection -- 05:28:44.871 SQL [12247]: pgsql_close() -- 05:28:44.873 INFO [12246]: COREGRADE is starting... -- 05:28:44.873 INFO [12246]: Version from config: 1.0 -- 05:28:44.873 DEBUG [12246]: Connecting to database... -- 05:28:44.873 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:44.873 SQL [12246]: pgsql_db_connect() -- 05:28:44.866 DEBUG [12248]: Database connection successful -- 05:28:44.866 INFO [12248]: _SERVER found -- 05:28:44.866 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 05:28:44.866 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:44.866 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:44.866 INFO [12248]: QUERY_STRING = /assets/js/pages/dashboard.js -- 05:28:44.866 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:44.878 INFO [12248]: COREGRADE is stopping... -- 05:28:44.878 DEBUG [12248]: Closing database connection -- 05:28:44.878 SQL [12248]: pgsql_close() -- 05:28:44.877 DEBUG [12246]: Database connection successful -- 05:28:44.877 INFO [12246]: _SERVER found -- 05:28:44.877 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 05:28:44.877 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:44.877 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:44.877 INFO [12246]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 05:28:44.877 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:44.891 INFO [12246]: COREGRADE is stopping... -- 05:28:44.891 DEBUG [12246]: Closing database connection -- 05:28:44.891 SQL [12246]: pgsql_close() -- 05:28:44.936 INFO [12246]: COREGRADE is starting... -- 05:28:44.936 INFO [12246]: Version from config: 1.0 -- 05:28:44.936 DEBUG [12246]: Connecting to database... -- 05:28:44.936 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:44.936 SQL [12246]: pgsql_db_connect() -- 05:28:44.947 INFO [12248]: COREGRADE is starting... -- 05:28:44.947 INFO [12248]: Version from config: 1.0 -- 05:28:44.948 DEBUG [12248]: Connecting to database... -- 05:28:44.948 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:44.948 SQL [12248]: pgsql_db_connect() -- 05:28:44.940 DEBUG [12246]: Database connection successful -- 05:28:44.940 INFO [12246]: _SERVER found -- 05:28:44.940 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 05:28:44.940 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:44.940 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:44.940 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 05:28:44.940 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:44.952 INFO [12246]: COREGRADE is stopping... -- 05:28:44.952 DEBUG [12246]: Closing database connection -- 05:28:44.952 SQL [12246]: pgsql_close() -- 05:28:44.959 INFO [12246]: COREGRADE is starting... -- 05:28:44.959 INFO [12246]: Version from config: 1.0 -- 05:28:44.959 DEBUG [12246]: Connecting to database... -- 05:28:44.959 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:44.959 SQL [12246]: pgsql_db_connect() -- 05:28:44.952 DEBUG [12248]: Database connection successful -- 05:28:44.952 INFO [12248]: _SERVER found -- 05:28:44.952 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 05:28:44.952 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:44.952 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:44.952 INFO [12248]: QUERY_STRING = /assets/js/pages/picker_date.js -- 05:28:44.952 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:44.963 INFO [12248]: COREGRADE is stopping... -- 05:28:44.964 DEBUG [12248]: Closing database connection -- 05:28:44.964 SQL [12248]: pgsql_close() -- 05:28:44.963 DEBUG [12246]: Database connection successful -- 05:28:44.963 INFO [12246]: _SERVER found -- 05:28:44.963 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 05:28:44.963 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:44.963 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:44.963 INFO [12246]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 05:28:44.963 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:44.974 INFO [12246]: COREGRADE is stopping... -- 05:28:44.974 DEBUG [12246]: Closing database connection -- 05:28:44.974 SQL [12246]: pgsql_close() -- 05:28:45.017 INFO [12246]: COREGRADE is starting... -- 05:28:45.017 INFO [12246]: Version from config: 1.0 -- 05:28:45.017 DEBUG [12246]: Connecting to database... -- 05:28:45.017 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:45.017 SQL [12246]: pgsql_db_connect() -- 05:28:45.032 INFO [12248]: COREGRADE is starting... -- 05:28:45.032 INFO [12248]: Version from config: 1.0 -- 05:28:45.032 DEBUG [12248]: Connecting to database... -- 05:28:45.032 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:45.032 SQL [12248]: pgsql_db_connect() -- 05:28:45.021 DEBUG [12246]: Database connection successful -- 05:28:45.021 INFO [12246]: _SERVER found -- 05:28:45.021 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 05:28:45.021 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:45.021 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:45.021 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 05:28:45.021 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:45.033 INFO [12246]: COREGRADE is stopping... -- 05:28:45.033 DEBUG [12246]: Closing database connection -- 05:28:45.033 SQL [12246]: pgsql_close() -- 05:28:45.042 INFO [12246]: COREGRADE is starting... -- 05:28:45.042 INFO [12246]: Version from config: 1.0 -- 05:28:45.042 DEBUG [12246]: Connecting to database... -- 05:28:45.042 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:45.042 SQL [12246]: pgsql_db_connect() -- 05:28:45.037 DEBUG [12248]: Database connection successful -- 05:28:45.037 INFO [12248]: _SERVER found -- 05:28:45.037 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 05:28:45.037 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:45.037 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:45.037 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 05:28:45.037 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:45.048 INFO [12248]: COREGRADE is stopping... -- 05:28:45.048 DEBUG [12248]: Closing database connection -- 05:28:45.048 SQL [12248]: pgsql_close() -- 05:28:45.046 DEBUG [12246]: Database connection successful -- 05:28:45.046 INFO [12246]: _SERVER found -- 05:28:45.046 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 05:28:45.046 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:45.046 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:45.046 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 05:28:45.046 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:45.058 INFO [12246]: COREGRADE is stopping... -- 05:28:45.058 DEBUG [12246]: Closing database connection -- 05:28:45.058 SQL [12246]: pgsql_close() -- 05:28:45.097 INFO [12246]: COREGRADE is starting... -- 05:28:45.098 INFO [12246]: Version from config: 1.0 -- 05:28:45.098 DEBUG [12246]: Connecting to database... -- 05:28:45.098 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:45.098 SQL [12246]: pgsql_db_connect() -- 05:28:45.102 DEBUG [12246]: Database connection successful -- 05:28:45.102 INFO [12246]: _SERVER found -- 05:28:45.102 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 05:28:45.102 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:45.102 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:45.102 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 05:28:45.102 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:45.113 INFO [12246]: COREGRADE is stopping... -- 05:28:45.113 DEBUG [12246]: Closing database connection -- 05:28:45.113 SQL [12246]: pgsql_close() -- 05:28:45.116 INFO [12246]: COREGRADE is starting... -- 05:28:45.116 INFO [12246]: Version from config: 1.0 -- 05:28:45.116 DEBUG [12246]: Connecting to database... -- 05:28:45.116 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:45.116 SQL [12246]: pgsql_db_connect() -- 05:28:45.126 INFO [12248]: COREGRADE is starting... -- 05:28:45.126 INFO [12248]: Version from config: 1.0 -- 05:28:45.126 DEBUG [12248]: Connecting to database... -- 05:28:45.126 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:45.126 SQL [12248]: pgsql_db_connect() -- 05:28:45.120 DEBUG [12246]: Database connection successful -- 05:28:45.120 INFO [12246]: _SERVER found -- 05:28:45.120 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 05:28:45.120 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:45.120 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:45.120 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 05:28:45.120 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:45.132 INFO [12246]: COREGRADE is stopping... -- 05:28:45.132 DEBUG [12246]: Closing database connection -- 05:28:45.132 SQL [12246]: pgsql_close() -- 05:28:45.130 DEBUG [12248]: Database connection successful -- 05:28:45.130 INFO [12248]: _SERVER found -- 05:28:45.130 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 05:28:45.130 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:45.130 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:45.130 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 05:28:45.130 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:45.141 INFO [12248]: COREGRADE is stopping... -- 05:28:45.142 DEBUG [12248]: Closing database connection -- 05:28:45.142 SQL [12248]: pgsql_close() -- 05:28:45.178 INFO [12248]: COREGRADE is starting... -- 05:28:45.178 INFO [12248]: Version from config: 1.0 -- 05:28:45.178 DEBUG [12248]: Connecting to database... -- 05:28:45.178 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:45.178 SQL [12248]: pgsql_db_connect() -- 05:28:45.182 DEBUG [12248]: Database connection successful -- 05:28:45.182 INFO [12248]: _SERVER found -- 05:28:45.182 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 05:28:45.182 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:45.182 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:45.182 INFO [12248]: QUERY_STRING = /assets/customjs/general.js -- 05:28:45.182 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:45.194 INFO [12248]: COREGRADE is stopping... -- 05:28:45.194 DEBUG [12248]: Closing database connection -- 05:28:45.194 SQL [12248]: pgsql_close() -- 05:28:45.200 INFO [12248]: COREGRADE is starting... -- 05:28:45.200 INFO [12248]: Version from config: 1.0 -- 05:28:45.200 DEBUG [12248]: Connecting to database... -- 05:28:45.200 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:45.200 SQL [12248]: pgsql_db_connect() -- 05:28:45.204 DEBUG [12248]: Database connection successful -- 05:28:45.204 INFO [12248]: _SERVER found -- 05:28:45.204 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 05:28:45.204 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:45.204 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:45.204 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 05:28:45.204 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:45.215 INFO [12248]: COREGRADE is stopping... -- 05:28:45.215 DEBUG [12248]: Closing database connection -- 05:28:45.215 SQL [12248]: pgsql_close() -- 05:28:45.284 INFO [12248]: COREGRADE is starting... -- 05:28:45.284 INFO [12248]: Version from config: 1.0 -- 05:28:45.284 DEBUG [12248]: Connecting to database... -- 05:28:45.284 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:45.284 SQL [12248]: pgsql_db_connect() -- 05:28:45.288 DEBUG [12248]: Database connection successful -- 05:28:45.288 INFO [12248]: _SERVER found -- 05:28:45.288 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 05:28:45.288 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:45.288 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:45.288 INFO [12248]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 05:28:45.288 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:45.299 INFO [12248]: COREGRADE is stopping... -- 05:28:45.299 DEBUG [12248]: Closing database connection -- 05:28:45.300 SQL [12248]: pgsql_close() -- 05:28:45.368 INFO [12248]: COREGRADE is starting... -- 05:28:45.368 INFO [12248]: Version from config: 1.0 -- 05:28:45.368 DEBUG [12248]: Connecting to database... -- 05:28:45.368 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:45.368 SQL [12248]: pgsql_db_connect() -- 05:28:45.372 DEBUG [12248]: Database connection successful -- 05:28:45.372 INFO [12248]: _SERVER found -- 05:28:45.372 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 05:28:45.372 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:45.372 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:45.372 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 05:28:45.372 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:45.384 INFO [12248]: COREGRADE is stopping... -- 05:28:45.384 DEBUG [12248]: Closing database connection -- 05:28:45.384 SQL [12248]: pgsql_close() -- 05:28:45.452 INFO [12248]: COREGRADE is starting... -- 05:28:45.453 INFO [12248]: Version from config: 1.0 -- 05:28:45.453 DEBUG [12248]: Connecting to database... -- 05:28:45.453 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:45.453 SQL [12248]: pgsql_db_connect() -- 05:28:45.457 DEBUG [12248]: Database connection successful -- 05:28:45.457 INFO [12248]: _SERVER found -- 05:28:45.457 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 05:28:45.457 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:45.457 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:45.457 INFO [12248]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 05:28:45.457 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:45.468 INFO [12248]: COREGRADE is stopping... -- 05:28:45.468 DEBUG [12248]: Closing database connection -- 05:28:45.468 SQL [12248]: pgsql_close() -- 05:28:45.537 INFO [12248]: COREGRADE is starting... -- 05:28:45.538 INFO [12248]: Version from config: 1.0 -- 05:28:45.538 DEBUG [12248]: Connecting to database... -- 05:28:45.538 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:45.538 SQL [12248]: pgsql_db_connect() -- 05:28:45.542 DEBUG [12248]: Database connection successful -- 05:28:45.542 INFO [12248]: _SERVER found -- 05:28:45.542 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 05:28:45.542 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:45.542 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:45.542 INFO [12248]: QUERY_STRING = /assets/js/pages/dashboard.js -- 05:28:45.542 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:45.553 INFO [12248]: COREGRADE is stopping... -- 05:28:45.553 DEBUG [12248]: Closing database connection -- 05:28:45.553 SQL [12248]: pgsql_close() -- 05:28:45.623 INFO [12248]: COREGRADE is starting... -- 05:28:45.623 INFO [12248]: Version from config: 1.0 -- 05:28:45.623 DEBUG [12248]: Connecting to database... -- 05:28:45.623 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:45.623 SQL [12248]: pgsql_db_connect() -- 05:28:45.627 DEBUG [12248]: Database connection successful -- 05:28:45.627 INFO [12248]: _SERVER found -- 05:28:45.627 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 05:28:45.627 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:45.627 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:45.627 INFO [12248]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 05:28:45.627 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:45.639 INFO [12248]: COREGRADE is stopping... -- 05:28:45.639 DEBUG [12248]: Closing database connection -- 05:28:45.639 SQL [12248]: pgsql_close() -- 05:28:45.708 INFO [12248]: COREGRADE is starting... -- 05:28:45.708 INFO [12248]: Version from config: 1.0 -- 05:28:45.708 DEBUG [12248]: Connecting to database... -- 05:28:45.708 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:45.708 SQL [12248]: pgsql_db_connect() -- 05:28:45.712 DEBUG [12248]: Database connection successful -- 05:28:45.712 INFO [12248]: _SERVER found -- 05:28:45.712 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 05:28:45.712 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:45.712 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:45.712 INFO [12248]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 05:28:45.712 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:45.724 INFO [12248]: COREGRADE is stopping... -- 05:28:45.724 DEBUG [12248]: Closing database connection -- 05:28:45.724 SQL [12248]: pgsql_close() -- 05:28:45.793 INFO [12248]: COREGRADE is starting... -- 05:28:45.793 INFO [12248]: Version from config: 1.0 -- 05:28:45.793 DEBUG [12248]: Connecting to database... -- 05:28:45.793 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:45.793 SQL [12248]: pgsql_db_connect() -- 05:28:45.797 DEBUG [12248]: Database connection successful -- 05:28:45.797 INFO [12248]: _SERVER found -- 05:28:45.797 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 05:28:45.797 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:45.797 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:45.797 INFO [12248]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 05:28:45.797 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:45.809 INFO [12248]: COREGRADE is stopping... -- 05:28:45.809 DEBUG [12248]: Closing database connection -- 05:28:45.809 SQL [12248]: pgsql_close() -- 05:28:45.878 INFO [12248]: COREGRADE is starting... -- 05:28:45.878 INFO [12248]: Version from config: 1.0 -- 05:28:45.878 DEBUG [12248]: Connecting to database... -- 05:28:45.878 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:45.878 SQL [12248]: pgsql_db_connect() -- 05:28:45.882 DEBUG [12248]: Database connection successful -- 05:28:45.882 INFO [12248]: _SERVER found -- 05:28:45.882 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 05:28:45.882 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:45.882 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:45.882 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 05:28:45.882 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:45.893 INFO [12248]: COREGRADE is stopping... -- 05:28:45.893 DEBUG [12248]: Closing database connection -- 05:28:45.893 SQL [12248]: pgsql_close() -- 05:28:45.964 INFO [12248]: COREGRADE is starting... -- 05:28:45.964 INFO [12248]: Version from config: 1.0 -- 05:28:45.964 DEBUG [12248]: Connecting to database... -- 05:28:45.964 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:45.964 SQL [12248]: pgsql_db_connect() -- 05:28:45.968 DEBUG [12248]: Database connection successful -- 05:28:45.968 INFO [12248]: _SERVER found -- 05:28:45.968 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 05:28:45.968 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:45.968 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:45.968 INFO [12248]: QUERY_STRING = /assets/js/pages/picker_date.js -- 05:28:45.968 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:45.979 INFO [12248]: COREGRADE is stopping... -- 05:28:45.979 DEBUG [12248]: Closing database connection -- 05:28:45.979 SQL [12248]: pgsql_close() -- 05:28:46.048 INFO [12248]: COREGRADE is starting... -- 05:28:46.048 INFO [12248]: Version from config: 1.0 -- 05:28:46.048 DEBUG [12248]: Connecting to database... -- 05:28:46.048 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:46.049 SQL [12248]: pgsql_db_connect() -- 05:28:46.053 DEBUG [12248]: Database connection successful -- 05:28:46.053 INFO [12248]: _SERVER found -- 05:28:46.053 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 05:28:46.053 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:46.053 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:46.053 INFO [12248]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 05:28:46.053 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:46.064 INFO [12248]: COREGRADE is stopping... -- 05:28:46.064 DEBUG [12248]: Closing database connection -- 05:28:46.064 SQL [12248]: pgsql_close() -- 05:28:46.133 INFO [12248]: COREGRADE is starting... -- 05:28:46.133 INFO [12248]: Version from config: 1.0 -- 05:28:46.133 DEBUG [12248]: Connecting to database... -- 05:28:46.133 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:46.133 SQL [12248]: pgsql_db_connect() -- 05:28:46.137 DEBUG [12248]: Database connection successful -- 05:28:46.137 INFO [12248]: _SERVER found -- 05:28:46.137 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 05:28:46.137 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:46.137 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:46.137 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 05:28:46.137 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:46.148 INFO [12248]: COREGRADE is stopping... -- 05:28:46.148 DEBUG [12248]: Closing database connection -- 05:28:46.148 SQL [12248]: pgsql_close() -- 05:28:46.217 INFO [12248]: COREGRADE is starting... -- 05:28:46.218 INFO [12248]: Version from config: 1.0 -- 05:28:46.218 DEBUG [12248]: Connecting to database... -- 05:28:46.218 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:46.218 SQL [12248]: pgsql_db_connect() -- 05:28:46.222 DEBUG [12248]: Database connection successful -- 05:28:46.222 INFO [12248]: _SERVER found -- 05:28:46.222 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 05:28:46.222 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:46.222 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:46.222 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 05:28:46.222 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:46.233 INFO [12248]: COREGRADE is stopping... -- 05:28:46.233 DEBUG [12248]: Closing database connection -- 05:28:46.233 SQL [12248]: pgsql_close() -- 05:28:46.302 INFO [12248]: COREGRADE is starting... -- 05:28:46.302 INFO [12248]: Version from config: 1.0 -- 05:28:46.302 DEBUG [12248]: Connecting to database... -- 05:28:46.302 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:46.302 SQL [12248]: pgsql_db_connect() -- 05:28:46.306 DEBUG [12248]: Database connection successful -- 05:28:46.306 INFO [12248]: _SERVER found -- 05:28:46.306 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 05:28:46.306 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:46.306 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:46.306 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 05:28:46.306 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:46.318 INFO [12248]: COREGRADE is stopping... -- 05:28:46.318 DEBUG [12248]: Closing database connection -- 05:28:46.318 SQL [12248]: pgsql_close() -- 05:28:46.386 INFO [12248]: COREGRADE is starting... -- 05:28:46.387 INFO [12248]: Version from config: 1.0 -- 05:28:46.387 DEBUG [12248]: Connecting to database... -- 05:28:46.387 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:46.387 SQL [12248]: pgsql_db_connect() -- 05:28:46.391 DEBUG [12248]: Database connection successful -- 05:28:46.391 INFO [12248]: _SERVER found -- 05:28:46.391 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 05:28:46.391 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:46.391 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:46.391 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 05:28:46.391 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:46.402 INFO [12248]: COREGRADE is stopping... -- 05:28:46.402 DEBUG [12248]: Closing database connection -- 05:28:46.402 SQL [12248]: pgsql_close() -- 05:28:46.481 INFO [12248]: COREGRADE is starting... -- 05:28:46.481 INFO [12248]: Version from config: 1.0 -- 05:28:46.481 DEBUG [12248]: Connecting to database... -- 05:28:46.481 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:46.481 SQL [12248]: pgsql_db_connect() -- 05:28:46.485 DEBUG [12248]: Database connection successful -- 05:28:46.485 INFO [12248]: _SERVER found -- 05:28:46.485 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 05:28:46.485 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:46.485 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:46.485 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 05:28:46.485 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:46.497 INFO [12248]: COREGRADE is stopping... -- 05:28:46.497 DEBUG [12248]: Closing database connection -- 05:28:46.497 SQL [12248]: pgsql_close() -- 05:28:46.568 INFO [12248]: COREGRADE is starting... -- 05:28:46.568 INFO [12248]: Version from config: 1.0 -- 05:28:46.568 DEBUG [12248]: Connecting to database... -- 05:28:46.568 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:46.568 SQL [12248]: pgsql_db_connect() -- 05:28:46.572 DEBUG [12248]: Database connection successful -- 05:28:46.572 INFO [12248]: _SERVER found -- 05:28:46.572 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 05:28:46.572 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:46.572 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:46.572 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 05:28:46.572 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:46.583 INFO [12248]: COREGRADE is stopping... -- 05:28:46.584 DEBUG [12248]: Closing database connection -- 05:28:46.584 SQL [12248]: pgsql_close() -- 05:28:46.656 INFO [12248]: COREGRADE is starting... -- 05:28:46.656 INFO [12248]: Version from config: 1.0 -- 05:28:46.656 DEBUG [12248]: Connecting to database... -- 05:28:46.656 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:46.656 SQL [12248]: pgsql_db_connect() -- 05:28:46.660 DEBUG [12248]: Database connection successful -- 05:28:46.660 INFO [12248]: _SERVER found -- 05:28:46.660 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 05:28:46.660 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:28:46.660 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:28:46.660 INFO [12248]: QUERY_STRING = /assets/customjs/general.js -- 05:28:46.660 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:28:46.672 INFO [12248]: COREGRADE is stopping... -- 05:28:46.672 DEBUG [12248]: Closing database connection -- 05:28:46.672 SQL [12248]: pgsql_close() -- 05:48:46.893 INFO [12250]: COREGRADE is starting... -- 05:48:46.893 INFO [12250]: Version from config: 1.0 -- 05:48:46.893 DEBUG [12250]: Connecting to database... -- 05:48:46.893 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:46.893 SQL [12250]: pgsql_db_connect() -- 05:48:46.898 DEBUG [12250]: Database connection successful -- 05:48:46.898 INFO [12250]: _SERVER found -- 05:48:46.898 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 05:48:46.898 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:46.898 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=4c3vn6r24tpdf7lhnsthmabt6rpne750 -- 05:48:46.898 INFO [12250]: QUERY_STRING = /logout -- 05:48:46.898 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:46.931 INFO [12250]: COREGRADE is stopping... -- 05:48:46.932 DEBUG [12250]: Closing database connection -- 05:48:46.932 SQL [12250]: pgsql_close() -- 05:48:47.010 INFO [12250]: COREGRADE is starting... -- 05:48:47.010 INFO [12250]: Version from config: 1.0 -- 05:48:47.010 DEBUG [12250]: Connecting to database... -- 05:48:47.010 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:47.010 SQL [12250]: pgsql_db_connect() -- 05:48:47.014 DEBUG [12250]: Database connection successful -- 05:48:47.014 INFO [12250]: _SERVER found -- 05:48:47.014 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 05:48:47.014 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:47.014 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:47.014 INFO [12250]: QUERY_STRING = /start -- 05:48:47.014 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:47.048 INFO [12250]: COREGRADE is stopping... -- 05:48:47.048 DEBUG [12250]: Closing database connection -- 05:48:47.048 SQL [12250]: pgsql_close() -- 05:48:47.177 INFO [12249]: COREGRADE is starting... -- 05:48:47.178 INFO [12249]: Version from config: 1.0 -- 05:48:47.178 DEBUG [12249]: Connecting to database... -- 05:48:47.178 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:47.178 SQL [12249]: pgsql_db_connect() -- 05:48:47.193 INFO [12250]: COREGRADE is starting... -- 05:48:47.193 INFO [12250]: Version from config: 1.0 -- 05:48:47.193 DEBUG [12250]: Connecting to database... -- 05:48:47.193 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:47.193 SQL [12250]: pgsql_db_connect() -- 05:48:47.182 DEBUG [12249]: Database connection successful -- 05:48:47.182 INFO [12249]: _SERVER found -- 05:48:47.182 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 05:48:47.182 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:47.182 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:47.182 INFO [12249]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 05:48:47.182 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:47.195 INFO [12249]: COREGRADE is stopping... -- 05:48:47.195 DEBUG [12249]: Closing database connection -- 05:48:47.195 SQL [12249]: pgsql_close() -- 05:48:47.198 DEBUG [12250]: Database connection successful -- 05:48:47.198 INFO [12250]: _SERVER found -- 05:48:47.198 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 05:48:47.198 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:47.198 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:47.198 INFO [12250]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 05:48:47.198 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:47.209 INFO [12250]: COREGRADE is stopping... -- 05:48:47.209 DEBUG [12250]: Closing database connection -- 05:48:47.209 SQL [12250]: pgsql_close() -- 05:48:47.250 INFO [12347]: COREGRADE is starting... -- 05:48:47.250 INFO [12347]: Version from config: 1.0 -- 05:48:47.250 DEBUG [12347]: Connecting to database... -- 05:48:47.250 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:47.250 SQL [12347]: pgsql_db_connect() -- 05:48:47.254 DEBUG [12347]: Database connection successful -- 05:48:47.254 INFO [12347]: _SERVER found -- 05:48:47.254 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 05:48:47.254 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:47.254 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:47.254 INFO [12347]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 05:48:47.254 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:47.269 INFO [12347]: COREGRADE is stopping... -- 05:48:47.269 DEBUG [12347]: Closing database connection -- 05:48:47.269 SQL [12347]: pgsql_close() -- 05:48:47.278 INFO [12249]: COREGRADE is starting... -- 05:48:47.278 INFO [12250]: COREGRADE is starting... -- 05:48:47.279 INFO [12249]: Version from config: 1.0 -- 05:48:47.279 DEBUG [12249]: Connecting to database... -- 05:48:47.279 INFO [12250]: Version from config: 1.0 -- 05:48:47.279 DEBUG [12250]: Connecting to database... -- 05:48:47.279 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:47.279 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:47.279 SQL [12249]: pgsql_db_connect() -- 05:48:47.279 SQL [12250]: pgsql_db_connect() -- 05:48:47.283 DEBUG [12250]: Database connection successful -- 05:48:47.283 INFO [12250]: _SERVER found -- 05:48:47.283 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 05:48:47.283 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:47.283 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:47.283 INFO [12250]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 05:48:47.283 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:47.294 INFO [12250]: COREGRADE is stopping... -- 05:48:47.294 DEBUG [12250]: Closing database connection -- 05:48:47.294 SQL [12250]: pgsql_close() -- 05:48:47.283 DEBUG [12249]: Database connection successful -- 05:48:47.283 INFO [12249]: _SERVER found -- 05:48:47.283 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 05:48:47.283 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:47.283 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:47.283 INFO [12249]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 05:48:47.283 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:47.294 INFO [12249]: COREGRADE is stopping... -- 05:48:47.294 DEBUG [12249]: Closing database connection -- 05:48:47.294 SQL [12249]: pgsql_close() -- 05:48:47.349 INFO [12347]: COREGRADE is starting... -- 05:48:47.350 INFO [12347]: Version from config: 1.0 -- 05:48:47.350 DEBUG [12347]: Connecting to database... -- 05:48:47.350 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:47.350 SQL [12347]: pgsql_db_connect() -- 05:48:47.360 INFO [12250]: COREGRADE is starting... -- 05:48:47.360 INFO [12250]: Version from config: 1.0 -- 05:48:47.360 DEBUG [12250]: Connecting to database... -- 05:48:47.360 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:47.360 SQL [12250]: pgsql_db_connect() -- 05:48:47.354 DEBUG [12347]: Database connection successful -- 05:48:47.354 INFO [12347]: _SERVER found -- 05:48:47.354 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 05:48:47.354 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:47.354 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:47.354 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 05:48:47.354 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:47.365 INFO [12347]: COREGRADE is stopping... -- 05:48:47.365 DEBUG [12347]: Closing database connection -- 05:48:47.365 SQL [12347]: pgsql_close() -- 05:48:47.364 DEBUG [12250]: Database connection successful -- 05:48:47.364 INFO [12250]: _SERVER found -- 05:48:47.364 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 05:48:47.364 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:47.364 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:47.364 INFO [12250]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 05:48:47.364 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:47.376 INFO [12250]: COREGRADE is stopping... -- 05:48:47.376 DEBUG [12250]: Closing database connection -- 05:48:47.376 SQL [12250]: pgsql_close() -- 05:48:47.378 INFO [12249]: COREGRADE is starting... -- 05:48:47.378 INFO [12249]: Version from config: 1.0 -- 05:48:47.378 DEBUG [12249]: Connecting to database... -- 05:48:47.378 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:47.378 SQL [12249]: pgsql_db_connect() -- 05:48:47.382 DEBUG [12249]: Database connection successful -- 05:48:47.382 INFO [12249]: _SERVER found -- 05:48:47.382 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 05:48:47.382 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:47.382 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:47.382 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 05:48:47.382 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:47.394 INFO [12249]: COREGRADE is stopping... -- 05:48:47.394 DEBUG [12249]: Closing database connection -- 05:48:47.394 SQL [12249]: pgsql_close() -- 05:48:47.442 INFO [12250]: COREGRADE is starting... -- 05:48:47.442 INFO [12250]: Version from config: 1.0 -- 05:48:47.442 DEBUG [12250]: Connecting to database... -- 05:48:47.442 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:47.442 SQL [12250]: pgsql_db_connect() -- 05:48:47.449 INFO [12347]: COREGRADE is starting... -- 05:48:47.449 INFO [12347]: Version from config: 1.0 -- 05:48:47.449 DEBUG [12347]: Connecting to database... -- 05:48:47.449 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:47.449 SQL [12347]: pgsql_db_connect() -- 05:48:47.446 DEBUG [12250]: Database connection successful -- 05:48:47.446 INFO [12250]: _SERVER found -- 05:48:47.446 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 05:48:47.446 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:47.446 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:47.446 INFO [12250]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 05:48:47.446 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:47.457 INFO [12250]: COREGRADE is stopping... -- 05:48:47.457 DEBUG [12250]: Closing database connection -- 05:48:47.457 SQL [12250]: pgsql_close() -- 05:48:47.453 DEBUG [12347]: Database connection successful -- 05:48:47.453 INFO [12347]: _SERVER found -- 05:48:47.453 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 05:48:47.453 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:47.453 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:47.453 INFO [12347]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 05:48:47.453 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:47.464 INFO [12347]: COREGRADE is stopping... -- 05:48:47.464 DEBUG [12347]: Closing database connection -- 05:48:47.464 SQL [12347]: pgsql_close() -- 05:48:47.477 INFO [12249]: COREGRADE is starting... -- 05:48:47.477 INFO [12249]: Version from config: 1.0 -- 05:48:47.477 DEBUG [12249]: Connecting to database... -- 05:48:47.477 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:47.477 SQL [12249]: pgsql_db_connect() -- 05:48:47.481 DEBUG [12249]: Database connection successful -- 05:48:47.481 INFO [12249]: _SERVER found -- 05:48:47.481 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 05:48:47.481 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:47.481 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:47.481 INFO [12249]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 05:48:47.481 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:47.493 INFO [12249]: COREGRADE is stopping... -- 05:48:47.493 DEBUG [12249]: Closing database connection -- 05:48:47.493 SQL [12249]: pgsql_close() -- 05:48:47.523 INFO [12250]: COREGRADE is starting... -- 05:48:47.523 INFO [12250]: Version from config: 1.0 -- 05:48:47.523 DEBUG [12250]: Connecting to database... -- 05:48:47.523 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:47.523 SQL [12250]: pgsql_db_connect() -- 05:48:47.527 DEBUG [12250]: Database connection successful -- 05:48:47.527 INFO [12250]: _SERVER found -- 05:48:47.527 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 05:48:47.527 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:47.527 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:47.527 INFO [12250]: QUERY_STRING = /assets/js/pages/dashboard.js -- 05:48:47.527 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:47.539 INFO [12250]: COREGRADE is stopping... -- 05:48:47.539 DEBUG [12250]: Closing database connection -- 05:48:47.539 SQL [12250]: pgsql_close() -- 05:48:47.548 INFO [12347]: COREGRADE is starting... -- 05:48:47.548 INFO [12347]: Version from config: 1.0 -- 05:48:47.548 DEBUG [12347]: Connecting to database... -- 05:48:47.548 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:47.548 SQL [12347]: pgsql_db_connect() -- 05:48:47.552 DEBUG [12347]: Database connection successful -- 05:48:47.552 INFO [12347]: _SERVER found -- 05:48:47.552 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 05:48:47.552 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:47.552 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:47.552 INFO [12347]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 05:48:47.552 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:47.563 INFO [12347]: COREGRADE is stopping... -- 05:48:47.563 DEBUG [12347]: Closing database connection -- 05:48:47.563 SQL [12347]: pgsql_close() -- 05:48:47.565 INFO [12249]: COREGRADE is starting... -- 05:48:47.565 INFO [12249]: Version from config: 1.0 -- 05:48:47.565 DEBUG [12249]: Connecting to database... -- 05:48:47.565 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:47.566 SQL [12249]: pgsql_db_connect() -- 05:48:47.569 DEBUG [12249]: Database connection successful -- 05:48:47.569 INFO [12249]: _SERVER found -- 05:48:47.569 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 05:48:47.569 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:47.569 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:47.569 INFO [12249]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 05:48:47.569 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:47.581 INFO [12249]: COREGRADE is stopping... -- 05:48:47.581 DEBUG [12249]: Closing database connection -- 05:48:47.581 SQL [12249]: pgsql_close() -- 05:48:47.604 INFO [12250]: COREGRADE is starting... -- 05:48:47.604 INFO [12250]: Version from config: 1.0 -- 05:48:47.604 DEBUG [12250]: Connecting to database... -- 05:48:47.604 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:47.604 SQL [12250]: pgsql_db_connect() -- 05:48:47.608 DEBUG [12250]: Database connection successful -- 05:48:47.608 INFO [12250]: _SERVER found -- 05:48:47.608 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 05:48:47.608 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:47.608 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:47.608 INFO [12250]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 05:48:47.608 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:47.620 INFO [12250]: COREGRADE is stopping... -- 05:48:47.620 DEBUG [12250]: Closing database connection -- 05:48:47.620 SQL [12250]: pgsql_close() -- 05:48:47.640 INFO [12347]: COREGRADE is starting... -- 05:48:47.640 INFO [12347]: Version from config: 1.0 -- 05:48:47.640 DEBUG [12347]: Connecting to database... -- 05:48:47.641 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:47.641 SQL [12347]: pgsql_db_connect() -- 05:48:47.653 INFO [12249]: COREGRADE is starting... -- 05:48:47.653 INFO [12249]: Version from config: 1.0 -- 05:48:47.653 DEBUG [12249]: Connecting to database... -- 05:48:47.653 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:47.653 SQL [12249]: pgsql_db_connect() -- 05:48:47.644 DEBUG [12347]: Database connection successful -- 05:48:47.644 INFO [12347]: _SERVER found -- 05:48:47.644 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 05:48:47.644 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:47.644 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:47.644 INFO [12347]: QUERY_STRING = /assets/js/pages/picker_date.js -- 05:48:47.644 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:47.656 INFO [12347]: COREGRADE is stopping... -- 05:48:47.656 DEBUG [12347]: Closing database connection -- 05:48:47.656 SQL [12347]: pgsql_close() -- 05:48:47.657 DEBUG [12249]: Database connection successful -- 05:48:47.657 INFO [12249]: _SERVER found -- 05:48:47.657 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 05:48:47.657 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:47.657 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:47.657 INFO [12249]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 05:48:47.657 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:47.669 INFO [12249]: COREGRADE is stopping... -- 05:48:47.669 DEBUG [12249]: Closing database connection -- 05:48:47.669 SQL [12249]: pgsql_close() -- 05:48:47.685 INFO [12250]: COREGRADE is starting... -- 05:48:47.686 INFO [12250]: Version from config: 1.0 -- 05:48:47.686 DEBUG [12250]: Connecting to database... -- 05:48:47.686 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:47.686 SQL [12250]: pgsql_db_connect() -- 05:48:47.689 DEBUG [12250]: Database connection successful -- 05:48:47.689 INFO [12250]: _SERVER found -- 05:48:47.689 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 05:48:47.689 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:47.689 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:47.689 INFO [12250]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 05:48:47.689 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:47.701 INFO [12250]: COREGRADE is stopping... -- 05:48:47.701 DEBUG [12250]: Closing database connection -- 05:48:47.701 SQL [12250]: pgsql_close() -- 05:48:47.726 INFO [12347]: COREGRADE is starting... -- 05:48:47.726 INFO [12347]: Version from config: 1.0 -- 05:48:47.726 DEBUG [12347]: Connecting to database... -- 05:48:47.726 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:47.726 SQL [12347]: pgsql_db_connect() -- 05:48:47.740 INFO [12249]: COREGRADE is starting... -- 05:48:47.740 INFO [12249]: Version from config: 1.0 -- 05:48:47.740 DEBUG [12249]: Connecting to database... -- 05:48:47.740 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:47.740 SQL [12249]: pgsql_db_connect() -- 05:48:47.730 DEBUG [12347]: Database connection successful -- 05:48:47.730 INFO [12347]: _SERVER found -- 05:48:47.730 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 05:48:47.730 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:47.730 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:47.730 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 05:48:47.730 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:47.741 INFO [12347]: COREGRADE is stopping... -- 05:48:47.741 DEBUG [12347]: Closing database connection -- 05:48:47.741 SQL [12347]: pgsql_close() -- 05:48:47.745 DEBUG [12249]: Database connection successful -- 05:48:47.745 INFO [12249]: _SERVER found -- 05:48:47.745 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 05:48:47.745 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:47.745 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:47.745 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 05:48:47.745 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:47.756 INFO [12249]: COREGRADE is stopping... -- 05:48:47.756 DEBUG [12249]: Closing database connection -- 05:48:47.756 SQL [12249]: pgsql_close() -- 05:48:47.766 INFO [12250]: COREGRADE is starting... -- 05:48:47.766 INFO [12250]: Version from config: 1.0 -- 05:48:47.766 DEBUG [12250]: Connecting to database... -- 05:48:47.766 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:47.767 SQL [12250]: pgsql_db_connect() -- 05:48:47.771 DEBUG [12250]: Database connection successful -- 05:48:47.771 INFO [12250]: _SERVER found -- 05:48:47.771 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 05:48:47.771 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:47.771 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:47.771 INFO [12250]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 05:48:47.771 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:47.782 INFO [12250]: COREGRADE is stopping... -- 05:48:47.782 DEBUG [12250]: Closing database connection -- 05:48:47.782 SQL [12250]: pgsql_close() -- 05:48:47.810 INFO [12347]: COREGRADE is starting... -- 05:48:47.811 INFO [12347]: Version from config: 1.0 -- 05:48:47.811 DEBUG [12347]: Connecting to database... -- 05:48:47.811 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:47.811 SQL [12347]: pgsql_db_connect() -- 05:48:47.815 DEBUG [12347]: Database connection successful -- 05:48:47.815 INFO [12347]: _SERVER found -- 05:48:47.815 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 05:48:47.815 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:47.815 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:47.815 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 05:48:47.815 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:47.826 INFO [12347]: COREGRADE is stopping... -- 05:48:47.826 DEBUG [12347]: Closing database connection -- 05:48:47.826 SQL [12347]: pgsql_close() -- 05:48:47.828 INFO [12249]: COREGRADE is starting... -- 05:48:47.828 INFO [12249]: Version from config: 1.0 -- 05:48:47.828 DEBUG [12249]: Connecting to database... -- 05:48:47.828 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:47.828 SQL [12249]: pgsql_db_connect() -- 05:48:47.832 DEBUG [12249]: Database connection successful -- 05:48:47.832 INFO [12249]: _SERVER found -- 05:48:47.832 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 05:48:47.832 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:47.832 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:47.832 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 05:48:47.832 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:47.844 INFO [12249]: COREGRADE is stopping... -- 05:48:47.844 DEBUG [12249]: Closing database connection -- 05:48:47.844 SQL [12249]: pgsql_close() -- 05:48:47.848 INFO [12250]: COREGRADE is starting... -- 05:48:47.848 INFO [12250]: Version from config: 1.0 -- 05:48:47.848 DEBUG [12250]: Connecting to database... -- 05:48:47.848 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:47.848 SQL [12250]: pgsql_db_connect() -- 05:48:47.853 DEBUG [12250]: Database connection successful -- 05:48:47.853 INFO [12250]: _SERVER found -- 05:48:47.853 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 05:48:47.853 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:47.853 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:47.853 INFO [12250]: QUERY_STRING = /assets/customjs/general.js -- 05:48:47.853 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:47.864 INFO [12250]: COREGRADE is stopping... -- 05:48:47.864 DEBUG [12250]: Closing database connection -- 05:48:47.865 SQL [12250]: pgsql_close() -- 05:48:47.895 INFO [12347]: COREGRADE is starting... -- 05:48:47.895 INFO [12347]: Version from config: 1.0 -- 05:48:47.895 DEBUG [12347]: Connecting to database... -- 05:48:47.895 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:47.896 SQL [12347]: pgsql_db_connect() -- 05:48:47.899 DEBUG [12347]: Database connection successful -- 05:48:47.899 INFO [12347]: _SERVER found -- 05:48:47.899 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 05:48:47.899 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:47.899 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:47.899 INFO [12347]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 05:48:47.899 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:47.911 INFO [12347]: COREGRADE is stopping... -- 05:48:47.911 DEBUG [12347]: Closing database connection -- 05:48:47.911 SQL [12347]: pgsql_close() -- 05:48:47.980 INFO [12347]: COREGRADE is starting... -- 05:48:47.980 INFO [12347]: Version from config: 1.0 -- 05:48:47.980 DEBUG [12347]: Connecting to database... -- 05:48:47.980 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:47.980 SQL [12347]: pgsql_db_connect() -- 05:48:47.984 DEBUG [12347]: Database connection successful -- 05:48:47.984 INFO [12347]: _SERVER found -- 05:48:47.984 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 05:48:47.984 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:47.984 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:47.984 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 05:48:47.984 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:47.996 INFO [12347]: COREGRADE is stopping... -- 05:48:47.996 DEBUG [12347]: Closing database connection -- 05:48:47.996 SQL [12347]: pgsql_close() -- 05:48:48.065 INFO [12347]: COREGRADE is starting... -- 05:48:48.065 INFO [12347]: Version from config: 1.0 -- 05:48:48.065 DEBUG [12347]: Connecting to database... -- 05:48:48.065 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:48.065 SQL [12347]: pgsql_db_connect() -- 05:48:48.069 DEBUG [12347]: Database connection successful -- 05:48:48.069 INFO [12347]: _SERVER found -- 05:48:48.069 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 05:48:48.069 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:48.069 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:48.069 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 05:48:48.069 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:48.082 INFO [12347]: COREGRADE is stopping... -- 05:48:48.082 DEBUG [12347]: Closing database connection -- 05:48:48.082 SQL [12347]: pgsql_close() -- 05:48:48.151 INFO [12347]: COREGRADE is starting... -- 05:48:48.151 INFO [12347]: Version from config: 1.0 -- 05:48:48.151 DEBUG [12347]: Connecting to database... -- 05:48:48.151 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:48.151 SQL [12347]: pgsql_db_connect() -- 05:48:48.155 DEBUG [12347]: Database connection successful -- 05:48:48.155 INFO [12347]: _SERVER found -- 05:48:48.155 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 05:48:48.155 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:48.155 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:48.155 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 05:48:48.155 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:48.167 INFO [12347]: COREGRADE is stopping... -- 05:48:48.167 DEBUG [12347]: Closing database connection -- 05:48:48.167 SQL [12347]: pgsql_close() -- 05:48:48.236 INFO [12347]: COREGRADE is starting... -- 05:48:48.236 INFO [12347]: Version from config: 1.0 -- 05:48:48.236 DEBUG [12347]: Connecting to database... -- 05:48:48.236 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:48.236 SQL [12347]: pgsql_db_connect() -- 05:48:48.240 DEBUG [12347]: Database connection successful -- 05:48:48.240 INFO [12347]: _SERVER found -- 05:48:48.240 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 05:48:48.240 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:48.240 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:48.240 INFO [12347]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 05:48:48.240 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:48.252 INFO [12347]: COREGRADE is stopping... -- 05:48:48.252 DEBUG [12347]: Closing database connection -- 05:48:48.252 SQL [12347]: pgsql_close() -- 05:48:48.321 INFO [12347]: COREGRADE is starting... -- 05:48:48.322 INFO [12347]: Version from config: 1.0 -- 05:48:48.322 DEBUG [12347]: Connecting to database... -- 05:48:48.322 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:48.322 SQL [12347]: pgsql_db_connect() -- 05:48:48.326 DEBUG [12347]: Database connection successful -- 05:48:48.326 INFO [12347]: _SERVER found -- 05:48:48.326 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 05:48:48.326 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:48.326 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:48.326 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 05:48:48.326 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:48.337 INFO [12347]: COREGRADE is stopping... -- 05:48:48.337 DEBUG [12347]: Closing database connection -- 05:48:48.337 SQL [12347]: pgsql_close() -- 05:48:48.406 INFO [12347]: COREGRADE is starting... -- 05:48:48.407 INFO [12347]: Version from config: 1.0 -- 05:48:48.407 DEBUG [12347]: Connecting to database... -- 05:48:48.407 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:48.407 SQL [12347]: pgsql_db_connect() -- 05:48:48.411 DEBUG [12347]: Database connection successful -- 05:48:48.411 INFO [12347]: _SERVER found -- 05:48:48.411 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 05:48:48.411 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:48.411 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:48.411 INFO [12347]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 05:48:48.411 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:48.422 INFO [12347]: COREGRADE is stopping... -- 05:48:48.422 DEBUG [12347]: Closing database connection -- 05:48:48.422 SQL [12347]: pgsql_close() -- 05:48:48.492 INFO [12347]: COREGRADE is starting... -- 05:48:48.492 INFO [12347]: Version from config: 1.0 -- 05:48:48.492 DEBUG [12347]: Connecting to database... -- 05:48:48.492 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:48.492 SQL [12347]: pgsql_db_connect() -- 05:48:48.496 DEBUG [12347]: Database connection successful -- 05:48:48.496 INFO [12347]: _SERVER found -- 05:48:48.496 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 05:48:48.496 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:48.496 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:48.496 INFO [12347]: QUERY_STRING = /assets/js/pages/dashboard.js -- 05:48:48.496 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:48.507 INFO [12347]: COREGRADE is stopping... -- 05:48:48.507 DEBUG [12347]: Closing database connection -- 05:48:48.507 SQL [12347]: pgsql_close() -- 05:48:48.578 INFO [12347]: COREGRADE is starting... -- 05:48:48.578 INFO [12347]: Version from config: 1.0 -- 05:48:48.578 DEBUG [12347]: Connecting to database... -- 05:48:48.578 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:48.578 SQL [12347]: pgsql_db_connect() -- 05:48:48.582 DEBUG [12347]: Database connection successful -- 05:48:48.582 INFO [12347]: _SERVER found -- 05:48:48.582 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 05:48:48.582 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:48.582 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:48.582 INFO [12347]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 05:48:48.582 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:48.594 INFO [12347]: COREGRADE is stopping... -- 05:48:48.594 DEBUG [12347]: Closing database connection -- 05:48:48.594 SQL [12347]: pgsql_close() -- 05:48:48.663 INFO [12347]: COREGRADE is starting... -- 05:48:48.663 INFO [12347]: Version from config: 1.0 -- 05:48:48.663 DEBUG [12347]: Connecting to database... -- 05:48:48.663 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:48.663 SQL [12347]: pgsql_db_connect() -- 05:48:48.668 DEBUG [12347]: Database connection successful -- 05:48:48.668 INFO [12347]: _SERVER found -- 05:48:48.668 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 05:48:48.668 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:48.668 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:48.668 INFO [12347]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 05:48:48.668 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:48.679 INFO [12347]: COREGRADE is stopping... -- 05:48:48.679 DEBUG [12347]: Closing database connection -- 05:48:48.679 SQL [12347]: pgsql_close() -- 05:48:48.748 INFO [12347]: COREGRADE is starting... -- 05:48:48.749 INFO [12347]: Version from config: 1.0 -- 05:48:48.749 DEBUG [12347]: Connecting to database... -- 05:48:48.749 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:48.749 SQL [12347]: pgsql_db_connect() -- 05:48:48.752 DEBUG [12347]: Database connection successful -- 05:48:48.752 INFO [12347]: _SERVER found -- 05:48:48.752 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 05:48:48.752 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:48.752 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:48.752 INFO [12347]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 05:48:48.752 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:48.764 INFO [12347]: COREGRADE is stopping... -- 05:48:48.764 DEBUG [12347]: Closing database connection -- 05:48:48.764 SQL [12347]: pgsql_close() -- 05:48:48.833 INFO [12347]: COREGRADE is starting... -- 05:48:48.833 INFO [12347]: Version from config: 1.0 -- 05:48:48.833 DEBUG [12347]: Connecting to database... -- 05:48:48.833 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:48.833 SQL [12347]: pgsql_db_connect() -- 05:48:48.838 DEBUG [12347]: Database connection successful -- 05:48:48.838 INFO [12347]: _SERVER found -- 05:48:48.838 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 05:48:48.838 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:48.838 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:48.838 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 05:48:48.838 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:48.849 INFO [12347]: COREGRADE is stopping... -- 05:48:48.849 DEBUG [12347]: Closing database connection -- 05:48:48.849 SQL [12347]: pgsql_close() -- 05:48:48.919 INFO [12347]: COREGRADE is starting... -- 05:48:48.919 INFO [12347]: Version from config: 1.0 -- 05:48:48.919 DEBUG [12347]: Connecting to database... -- 05:48:48.919 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:48.919 SQL [12347]: pgsql_db_connect() -- 05:48:48.923 DEBUG [12347]: Database connection successful -- 05:48:48.923 INFO [12347]: _SERVER found -- 05:48:48.923 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 05:48:48.923 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:48.923 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:48.923 INFO [12347]: QUERY_STRING = /assets/js/pages/picker_date.js -- 05:48:48.923 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:48.935 INFO [12347]: COREGRADE is stopping... -- 05:48:48.935 DEBUG [12347]: Closing database connection -- 05:48:48.935 SQL [12347]: pgsql_close() -- 05:48:49.004 INFO [12347]: COREGRADE is starting... -- 05:48:49.004 INFO [12347]: Version from config: 1.0 -- 05:48:49.004 DEBUG [12347]: Connecting to database... -- 05:48:49.004 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:49.005 SQL [12347]: pgsql_db_connect() -- 05:48:49.009 DEBUG [12347]: Database connection successful -- 05:48:49.009 INFO [12347]: _SERVER found -- 05:48:49.009 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 05:48:49.009 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:49.009 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:49.009 INFO [12347]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 05:48:49.009 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:49.020 INFO [12347]: COREGRADE is stopping... -- 05:48:49.020 DEBUG [12347]: Closing database connection -- 05:48:49.020 SQL [12347]: pgsql_close() -- 05:48:49.090 INFO [12347]: COREGRADE is starting... -- 05:48:49.090 INFO [12347]: Version from config: 1.0 -- 05:48:49.090 DEBUG [12347]: Connecting to database... -- 05:48:49.090 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:49.090 SQL [12347]: pgsql_db_connect() -- 05:48:49.094 DEBUG [12347]: Database connection successful -- 05:48:49.094 INFO [12347]: _SERVER found -- 05:48:49.094 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 05:48:49.094 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:49.094 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:49.094 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 05:48:49.094 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:49.105 INFO [12347]: COREGRADE is stopping... -- 05:48:49.106 DEBUG [12347]: Closing database connection -- 05:48:49.106 SQL [12347]: pgsql_close() -- 05:48:49.175 INFO [12347]: COREGRADE is starting... -- 05:48:49.175 INFO [12347]: Version from config: 1.0 -- 05:48:49.175 DEBUG [12347]: Connecting to database... -- 05:48:49.175 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:49.175 SQL [12347]: pgsql_db_connect() -- 05:48:49.180 DEBUG [12347]: Database connection successful -- 05:48:49.180 INFO [12347]: _SERVER found -- 05:48:49.180 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 05:48:49.180 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:49.180 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:49.180 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 05:48:49.180 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:49.191 INFO [12347]: COREGRADE is stopping... -- 05:48:49.191 DEBUG [12347]: Closing database connection -- 05:48:49.191 SQL [12347]: pgsql_close() -- 05:48:49.261 INFO [12347]: COREGRADE is starting... -- 05:48:49.261 INFO [12347]: Version from config: 1.0 -- 05:48:49.261 DEBUG [12347]: Connecting to database... -- 05:48:49.261 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:49.261 SQL [12347]: pgsql_db_connect() -- 05:48:49.265 DEBUG [12347]: Database connection successful -- 05:48:49.265 INFO [12347]: _SERVER found -- 05:48:49.265 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 05:48:49.265 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:49.265 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:49.265 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 05:48:49.265 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:49.277 INFO [12347]: COREGRADE is stopping... -- 05:48:49.277 DEBUG [12347]: Closing database connection -- 05:48:49.277 SQL [12347]: pgsql_close() -- 05:48:49.347 INFO [12347]: COREGRADE is starting... -- 05:48:49.347 INFO [12347]: Version from config: 1.0 -- 05:48:49.347 DEBUG [12347]: Connecting to database... -- 05:48:49.347 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:49.347 SQL [12347]: pgsql_db_connect() -- 05:48:49.351 DEBUG [12347]: Database connection successful -- 05:48:49.351 INFO [12347]: _SERVER found -- 05:48:49.351 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 05:48:49.351 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:49.351 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:49.351 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 05:48:49.351 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:49.362 INFO [12347]: COREGRADE is stopping... -- 05:48:49.363 DEBUG [12347]: Closing database connection -- 05:48:49.363 SQL [12347]: pgsql_close() -- 05:48:49.443 INFO [12347]: COREGRADE is starting... -- 05:48:49.443 INFO [12347]: Version from config: 1.0 -- 05:48:49.443 DEBUG [12347]: Connecting to database... -- 05:48:49.443 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:49.443 SQL [12347]: pgsql_db_connect() -- 05:48:49.447 DEBUG [12347]: Database connection successful -- 05:48:49.447 INFO [12347]: _SERVER found -- 05:48:49.447 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 05:48:49.447 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:49.447 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:49.447 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 05:48:49.447 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:49.458 INFO [12347]: COREGRADE is stopping... -- 05:48:49.458 DEBUG [12347]: Closing database connection -- 05:48:49.458 SQL [12347]: pgsql_close() -- 05:48:49.528 INFO [12347]: COREGRADE is starting... -- 05:48:49.528 INFO [12347]: Version from config: 1.0 -- 05:48:49.528 DEBUG [12347]: Connecting to database... -- 05:48:49.528 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:49.528 SQL [12347]: pgsql_db_connect() -- 05:48:49.533 DEBUG [12347]: Database connection successful -- 05:48:49.533 INFO [12347]: _SERVER found -- 05:48:49.533 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 05:48:49.533 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:49.533 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:49.533 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 05:48:49.533 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:49.544 INFO [12347]: COREGRADE is stopping... -- 05:48:49.545 DEBUG [12347]: Closing database connection -- 05:48:49.545 SQL [12347]: pgsql_close() -- 05:48:49.616 INFO [12347]: COREGRADE is starting... -- 05:48:49.616 INFO [12347]: Version from config: 1.0 -- 05:48:49.616 DEBUG [12347]: Connecting to database... -- 05:48:49.616 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:48:49.616 SQL [12347]: pgsql_db_connect() -- 05:48:49.620 DEBUG [12347]: Database connection successful -- 05:48:49.620 INFO [12347]: _SERVER found -- 05:48:49.620 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 05:48:49.620 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 05:48:49.620 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 05:48:49.620 INFO [12347]: QUERY_STRING = /assets/customjs/general.js -- 05:48:49.620 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 05:48:49.632 INFO [12347]: COREGRADE is stopping... -- 05:48:49.632 DEBUG [12347]: Closing database connection -- 05:48:49.632 SQL [12347]: pgsql_close() -- 06:08:49.851 INFO [12334]: COREGRADE is starting... -- 06:08:49.852 INFO [12334]: Version from config: 1.0 -- 06:08:49.852 DEBUG [12334]: Connecting to database... -- 06:08:49.852 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:49.852 SQL [12334]: pgsql_db_connect() -- 06:08:49.857 DEBUG [12334]: Database connection successful -- 06:08:49.857 INFO [12334]: _SERVER found -- 06:08:49.857 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 06:08:49.857 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:49.857 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sif726o43vs5u54rvv18o1egkf0b60ah -- 06:08:49.857 INFO [12334]: QUERY_STRING = /logout -- 06:08:49.857 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:49.891 INFO [12334]: COREGRADE is stopping... -- 06:08:49.891 DEBUG [12334]: Closing database connection -- 06:08:49.891 SQL [12334]: pgsql_close() -- 06:08:49.971 INFO [12334]: COREGRADE is starting... -- 06:08:49.971 INFO [12334]: Version from config: 1.0 -- 06:08:49.971 DEBUG [12334]: Connecting to database... -- 06:08:49.971 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:49.971 SQL [12334]: pgsql_db_connect() -- 06:08:49.975 DEBUG [12334]: Database connection successful -- 06:08:49.975 INFO [12334]: _SERVER found -- 06:08:49.975 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 06:08:49.975 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:49.975 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:49.975 INFO [12334]: QUERY_STRING = /start -- 06:08:49.975 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:50.010 INFO [12334]: COREGRADE is stopping... -- 06:08:50.010 DEBUG [12334]: Closing database connection -- 06:08:50.010 SQL [12334]: pgsql_close() -- 06:08:50.141 INFO [12305]: COREGRADE is starting... -- 06:08:50.141 INFO [12305]: Version from config: 1.0 -- 06:08:50.141 DEBUG [12305]: Connecting to database... -- 06:08:50.141 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:50.141 SQL [12305]: pgsql_db_connect() -- 06:08:50.145 DEBUG [12305]: Database connection successful -- 06:08:50.145 INFO [12305]: _SERVER found -- 06:08:50.146 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 06:08:50.146 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:50.146 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:50.146 INFO [12305]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 06:08:50.146 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:50.158 INFO [12305]: COREGRADE is stopping... -- 06:08:50.158 DEBUG [12305]: Closing database connection -- 06:08:50.158 SQL [12305]: pgsql_close() -- 06:08:50.160 INFO [12334]: COREGRADE is starting... -- 06:08:50.160 INFO [12334]: Version from config: 1.0 -- 06:08:50.160 DEBUG [12334]: Connecting to database... -- 06:08:50.160 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:50.160 SQL [12334]: pgsql_db_connect() -- 06:08:50.164 DEBUG [12334]: Database connection successful -- 06:08:50.164 INFO [12334]: _SERVER found -- 06:08:50.164 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 06:08:50.164 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:50.164 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:50.164 INFO [12334]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 06:08:50.164 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:50.176 INFO [12334]: COREGRADE is stopping... -- 06:08:50.176 DEBUG [12334]: Closing database connection -- 06:08:50.176 SQL [12334]: pgsql_close() -- 06:08:50.200 INFO [12305]: COREGRADE is starting... -- 06:08:50.201 INFO [12305]: Version from config: 1.0 -- 06:08:50.201 DEBUG [12305]: Connecting to database... -- 06:08:50.201 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:50.201 SQL [12305]: pgsql_db_connect() -- 06:08:50.205 DEBUG [12305]: Database connection successful -- 06:08:50.205 INFO [12305]: _SERVER found -- 06:08:50.205 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 06:08:50.205 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:50.205 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:50.205 INFO [12305]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 06:08:50.205 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:50.216 INFO [12305]: COREGRADE is stopping... -- 06:08:50.217 DEBUG [12305]: Closing database connection -- 06:08:50.217 SQL [12305]: pgsql_close() -- 06:08:50.239 INFO [12305]: COREGRADE is starting... -- 06:08:50.239 INFO [12305]: Version from config: 1.0 -- 06:08:50.239 DEBUG [12305]: Connecting to database... -- 06:08:50.239 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:50.239 SQL [12305]: pgsql_db_connect() -- 06:08:50.243 INFO [12334]: COREGRADE is starting... -- 06:08:50.243 INFO [12334]: Version from config: 1.0 -- 06:08:50.243 DEBUG [12334]: Connecting to database... -- 06:08:50.243 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:50.243 SQL [12334]: pgsql_db_connect() -- 06:08:50.244 DEBUG [12305]: Database connection successful -- 06:08:50.244 INFO [12305]: _SERVER found -- 06:08:50.244 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 06:08:50.244 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:50.244 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:50.244 INFO [12305]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 06:08:50.244 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:50.255 INFO [12305]: COREGRADE is stopping... -- 06:08:50.255 DEBUG [12305]: Closing database connection -- 06:08:50.255 SQL [12305]: pgsql_close() -- 06:08:50.247 DEBUG [12334]: Database connection successful -- 06:08:50.247 INFO [12334]: _SERVER found -- 06:08:50.247 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 06:08:50.247 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:50.247 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:50.247 INFO [12334]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 06:08:50.247 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:50.259 INFO [12334]: COREGRADE is stopping... -- 06:08:50.259 DEBUG [12334]: Closing database connection -- 06:08:50.259 SQL [12334]: pgsql_close() -- 06:08:50.293 INFO [12305]: COREGRADE is starting... -- 06:08:50.294 INFO [12305]: Version from config: 1.0 -- 06:08:50.294 DEBUG [12305]: Connecting to database... -- 06:08:50.294 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:50.294 SQL [12305]: pgsql_db_connect() -- 06:08:50.298 DEBUG [12305]: Database connection successful -- 06:08:50.298 INFO [12305]: _SERVER found -- 06:08:50.298 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 06:08:50.298 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:50.298 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:50.298 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 06:08:50.298 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:50.310 INFO [12305]: COREGRADE is stopping... -- 06:08:50.310 DEBUG [12305]: Closing database connection -- 06:08:50.310 SQL [12305]: pgsql_close() -- 06:08:50.326 INFO [12334]: COREGRADE is starting... -- 06:08:50.327 INFO [12334]: Version from config: 1.0 -- 06:08:50.327 DEBUG [12334]: Connecting to database... -- 06:08:50.327 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:50.327 SQL [12334]: pgsql_db_connect() -- 06:08:50.336 INFO [12305]: COREGRADE is starting... -- 06:08:50.336 INFO [12305]: Version from config: 1.0 -- 06:08:50.336 DEBUG [12305]: Connecting to database... -- 06:08:50.336 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:50.336 SQL [12305]: pgsql_db_connect() -- 06:08:50.331 DEBUG [12334]: Database connection successful -- 06:08:50.331 INFO [12334]: _SERVER found -- 06:08:50.331 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 06:08:50.331 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:50.331 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:50.331 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 06:08:50.331 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:50.343 INFO [12334]: COREGRADE is stopping... -- 06:08:50.343 DEBUG [12334]: Closing database connection -- 06:08:50.343 SQL [12334]: pgsql_close() -- 06:08:50.341 DEBUG [12305]: Database connection successful -- 06:08:50.341 INFO [12305]: _SERVER found -- 06:08:50.341 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 06:08:50.341 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:50.341 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:50.341 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 06:08:50.341 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:50.352 INFO [12305]: COREGRADE is stopping... -- 06:08:50.353 DEBUG [12305]: Closing database connection -- 06:08:50.353 SQL [12305]: pgsql_close() -- 06:08:50.387 INFO [12305]: COREGRADE is starting... -- 06:08:50.387 INFO [12305]: Version from config: 1.0 -- 06:08:50.387 DEBUG [12305]: Connecting to database... -- 06:08:50.387 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:50.387 SQL [12305]: pgsql_db_connect() -- 06:08:50.391 DEBUG [12305]: Database connection successful -- 06:08:50.391 INFO [12305]: _SERVER found -- 06:08:50.391 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 06:08:50.391 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:50.391 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:50.391 INFO [12305]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 06:08:50.391 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:50.403 INFO [12305]: COREGRADE is stopping... -- 06:08:50.403 DEBUG [12305]: Closing database connection -- 06:08:50.403 SQL [12305]: pgsql_close() -- 06:08:50.409 INFO [12334]: COREGRADE is starting... -- 06:08:50.410 INFO [12334]: Version from config: 1.0 -- 06:08:50.410 DEBUG [12334]: Connecting to database... -- 06:08:50.410 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:50.410 SQL [12334]: pgsql_db_connect() -- 06:08:50.414 DEBUG [12334]: Database connection successful -- 06:08:50.414 INFO [12334]: _SERVER found -- 06:08:50.414 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 06:08:50.414 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:50.414 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:50.414 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 06:08:50.414 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:50.432 INFO [12334]: COREGRADE is stopping... -- 06:08:50.432 DEBUG [12334]: Closing database connection -- 06:08:50.432 SQL [12334]: pgsql_close() -- 06:08:50.434 INFO [12305]: COREGRADE is starting... -- 06:08:50.435 INFO [12305]: Version from config: 1.0 -- 06:08:50.435 DEBUG [12305]: Connecting to database... -- 06:08:50.435 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:50.435 SQL [12305]: pgsql_db_connect() -- 06:08:50.439 DEBUG [12305]: Database connection successful -- 06:08:50.439 INFO [12305]: _SERVER found -- 06:08:50.439 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 06:08:50.439 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:50.439 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:50.439 INFO [12305]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 06:08:50.439 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:50.450 INFO [12305]: COREGRADE is stopping... -- 06:08:50.450 DEBUG [12305]: Closing database connection -- 06:08:50.450 SQL [12305]: pgsql_close() -- 06:08:50.480 INFO [12305]: COREGRADE is starting... -- 06:08:50.481 INFO [12305]: Version from config: 1.0 -- 06:08:50.481 DEBUG [12305]: Connecting to database... -- 06:08:50.481 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:50.481 SQL [12305]: pgsql_db_connect() -- 06:08:50.485 DEBUG [12305]: Database connection successful -- 06:08:50.485 INFO [12305]: _SERVER found -- 06:08:50.485 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 06:08:50.485 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:50.485 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:50.485 INFO [12305]: QUERY_STRING = /assets/js/pages/dashboard.js -- 06:08:50.485 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:50.496 INFO [12305]: COREGRADE is stopping... -- 06:08:50.496 DEBUG [12305]: Closing database connection -- 06:08:50.497 SQL [12305]: pgsql_close() -- 06:08:50.499 INFO [12334]: COREGRADE is starting... -- 06:08:50.499 INFO [12334]: Version from config: 1.0 -- 06:08:50.499 DEBUG [12334]: Connecting to database... -- 06:08:50.499 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:50.499 SQL [12334]: pgsql_db_connect() -- 06:08:50.503 DEBUG [12334]: Database connection successful -- 06:08:50.503 INFO [12334]: _SERVER found -- 06:08:50.503 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 06:08:50.503 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:50.503 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:50.503 INFO [12334]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 06:08:50.503 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:50.515 INFO [12334]: COREGRADE is stopping... -- 06:08:50.515 DEBUG [12334]: Closing database connection -- 06:08:50.515 SQL [12334]: pgsql_close() -- 06:08:50.521 INFO [12305]: COREGRADE is starting... -- 06:08:50.521 INFO [12305]: Version from config: 1.0 -- 06:08:50.521 DEBUG [12305]: Connecting to database... -- 06:08:50.521 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:50.521 SQL [12305]: pgsql_db_connect() -- 06:08:50.525 DEBUG [12305]: Database connection successful -- 06:08:50.525 INFO [12305]: _SERVER found -- 06:08:50.525 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 06:08:50.525 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:50.525 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:50.525 INFO [12305]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 06:08:50.525 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:50.543 INFO [12305]: COREGRADE is stopping... -- 06:08:50.543 DEBUG [12305]: Closing database connection -- 06:08:50.543 SQL [12305]: pgsql_close() -- 06:08:50.564 INFO [12305]: COREGRADE is starting... -- 06:08:50.564 INFO [12305]: Version from config: 1.0 -- 06:08:50.564 DEBUG [12305]: Connecting to database... -- 06:08:50.564 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:50.564 SQL [12305]: pgsql_db_connect() -- 06:08:50.569 DEBUG [12305]: Database connection successful -- 06:08:50.569 INFO [12305]: _SERVER found -- 06:08:50.569 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 06:08:50.569 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:50.569 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:50.569 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 06:08:50.569 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:50.581 INFO [12305]: COREGRADE is stopping... -- 06:08:50.581 DEBUG [12305]: Closing database connection -- 06:08:50.581 SQL [12305]: pgsql_close() -- 06:08:50.582 INFO [12334]: COREGRADE is starting... -- 06:08:50.582 INFO [12334]: Version from config: 1.0 -- 06:08:50.582 DEBUG [12334]: Connecting to database... -- 06:08:50.582 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:50.582 SQL [12334]: pgsql_db_connect() -- 06:08:50.586 DEBUG [12334]: Database connection successful -- 06:08:50.586 INFO [12334]: _SERVER found -- 06:08:50.586 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 06:08:50.586 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:50.586 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:50.586 INFO [12334]: QUERY_STRING = /assets/js/pages/picker_date.js -- 06:08:50.586 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:50.598 INFO [12334]: COREGRADE is stopping... -- 06:08:50.598 DEBUG [12334]: Closing database connection -- 06:08:50.598 SQL [12334]: pgsql_close() -- 06:08:50.613 INFO [12305]: COREGRADE is starting... -- 06:08:50.613 INFO [12305]: Version from config: 1.0 -- 06:08:50.613 DEBUG [12305]: Connecting to database... -- 06:08:50.613 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:50.613 SQL [12305]: pgsql_db_connect() -- 06:08:50.618 DEBUG [12305]: Database connection successful -- 06:08:50.618 INFO [12305]: _SERVER found -- 06:08:50.618 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 06:08:50.618 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:50.618 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:50.618 INFO [12305]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 06:08:50.618 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:50.629 INFO [12305]: COREGRADE is stopping... -- 06:08:50.629 DEBUG [12305]: Closing database connection -- 06:08:50.629 SQL [12305]: pgsql_close() -- 06:08:50.647 INFO [12305]: COREGRADE is starting... -- 06:08:50.647 INFO [12305]: Version from config: 1.0 -- 06:08:50.647 DEBUG [12305]: Connecting to database... -- 06:08:50.647 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:50.647 SQL [12305]: pgsql_db_connect() -- 06:08:50.651 DEBUG [12305]: Database connection successful -- 06:08:50.651 INFO [12305]: _SERVER found -- 06:08:50.651 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 06:08:50.651 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:50.651 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:50.651 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 06:08:50.651 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:50.663 INFO [12305]: COREGRADE is stopping... -- 06:08:50.663 DEBUG [12305]: Closing database connection -- 06:08:50.663 SQL [12305]: pgsql_close() -- 06:08:50.665 INFO [12334]: COREGRADE is starting... -- 06:08:50.665 INFO [12334]: Version from config: 1.0 -- 06:08:50.665 DEBUG [12334]: Connecting to database... -- 06:08:50.665 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:50.665 SQL [12334]: pgsql_db_connect() -- 06:08:50.669 DEBUG [12334]: Database connection successful -- 06:08:50.669 INFO [12334]: _SERVER found -- 06:08:50.669 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 06:08:50.669 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:50.669 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:50.669 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 06:08:50.669 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:50.681 INFO [12334]: COREGRADE is stopping... -- 06:08:50.681 DEBUG [12334]: Closing database connection -- 06:08:50.681 SQL [12334]: pgsql_close() -- 06:08:50.699 INFO [12305]: COREGRADE is starting... -- 06:08:50.699 INFO [12305]: Version from config: 1.0 -- 06:08:50.699 DEBUG [12305]: Connecting to database... -- 06:08:50.699 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:50.699 SQL [12305]: pgsql_db_connect() -- 06:08:50.703 DEBUG [12305]: Database connection successful -- 06:08:50.703 INFO [12305]: _SERVER found -- 06:08:50.703 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 06:08:50.703 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:50.703 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:50.703 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 06:08:50.703 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:50.715 INFO [12305]: COREGRADE is stopping... -- 06:08:50.715 DEBUG [12305]: Closing database connection -- 06:08:50.715 SQL [12305]: pgsql_close() -- 06:08:50.729 INFO [12305]: COREGRADE is starting... -- 06:08:50.729 INFO [12305]: Version from config: 1.0 -- 06:08:50.729 DEBUG [12305]: Connecting to database... -- 06:08:50.729 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:50.729 SQL [12305]: pgsql_db_connect() -- 06:08:50.733 DEBUG [12305]: Database connection successful -- 06:08:50.733 INFO [12305]: _SERVER found -- 06:08:50.733 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 06:08:50.733 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:50.733 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:50.733 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 06:08:50.733 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:50.745 INFO [12305]: COREGRADE is stopping... -- 06:08:50.745 DEBUG [12305]: Closing database connection -- 06:08:50.745 SQL [12305]: pgsql_close() -- 06:08:50.748 INFO [12334]: COREGRADE is starting... -- 06:08:50.748 INFO [12334]: Version from config: 1.0 -- 06:08:50.748 DEBUG [12334]: Connecting to database... -- 06:08:50.748 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:50.748 SQL [12334]: pgsql_db_connect() -- 06:08:50.752 DEBUG [12334]: Database connection successful -- 06:08:50.752 INFO [12334]: _SERVER found -- 06:08:50.752 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 06:08:50.752 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:50.752 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:50.752 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 06:08:50.752 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:50.764 INFO [12334]: COREGRADE is stopping... -- 06:08:50.764 DEBUG [12334]: Closing database connection -- 06:08:50.764 SQL [12334]: pgsql_close() -- 06:08:50.784 INFO [12305]: COREGRADE is starting... -- 06:08:50.784 INFO [12305]: Version from config: 1.0 -- 06:08:50.784 DEBUG [12305]: Connecting to database... -- 06:08:50.784 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:50.784 SQL [12305]: pgsql_db_connect() -- 06:08:50.789 DEBUG [12305]: Database connection successful -- 06:08:50.789 INFO [12305]: _SERVER found -- 06:08:50.789 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 06:08:50.789 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:50.789 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:50.789 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 06:08:50.789 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:50.801 INFO [12305]: COREGRADE is stopping... -- 06:08:50.801 DEBUG [12305]: Closing database connection -- 06:08:50.801 SQL [12305]: pgsql_close() -- 06:08:50.811 INFO [12305]: COREGRADE is starting... -- 06:08:50.811 INFO [12305]: Version from config: 1.0 -- 06:08:50.811 DEBUG [12305]: Connecting to database... -- 06:08:50.811 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:50.811 SQL [12305]: pgsql_db_connect() -- 06:08:50.815 DEBUG [12305]: Database connection successful -- 06:08:50.815 INFO [12305]: _SERVER found -- 06:08:50.815 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 06:08:50.815 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:50.815 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:50.815 INFO [12305]: QUERY_STRING = /assets/customjs/general.js -- 06:08:50.815 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:50.826 INFO [12305]: COREGRADE is stopping... -- 06:08:50.826 DEBUG [12305]: Closing database connection -- 06:08:50.826 SQL [12305]: pgsql_close() -- 06:08:50.831 INFO [12334]: COREGRADE is starting... -- 06:08:50.831 INFO [12334]: Version from config: 1.0 -- 06:08:50.831 DEBUG [12334]: Connecting to database... -- 06:08:50.831 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:50.831 SQL [12334]: pgsql_db_connect() -- 06:08:50.835 DEBUG [12334]: Database connection successful -- 06:08:50.835 INFO [12334]: _SERVER found -- 06:08:50.835 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 06:08:50.835 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:50.835 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:50.835 INFO [12334]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 06:08:50.835 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:50.847 INFO [12334]: COREGRADE is stopping... -- 06:08:50.847 DEBUG [12334]: Closing database connection -- 06:08:50.847 SQL [12334]: pgsql_close() -- 06:08:50.914 INFO [12334]: COREGRADE is starting... -- 06:08:50.914 INFO [12334]: Version from config: 1.0 -- 06:08:50.914 DEBUG [12334]: Connecting to database... -- 06:08:50.914 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:50.914 SQL [12334]: pgsql_db_connect() -- 06:08:50.919 DEBUG [12334]: Database connection successful -- 06:08:50.919 INFO [12334]: _SERVER found -- 06:08:50.919 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 06:08:50.919 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:50.919 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:50.919 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 06:08:50.919 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:50.930 INFO [12334]: COREGRADE is stopping... -- 06:08:50.930 DEBUG [12334]: Closing database connection -- 06:08:50.930 SQL [12334]: pgsql_close() -- 06:08:50.998 INFO [12334]: COREGRADE is starting... -- 06:08:50.998 INFO [12334]: Version from config: 1.0 -- 06:08:50.998 DEBUG [12334]: Connecting to database... -- 06:08:50.998 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:50.998 SQL [12334]: pgsql_db_connect() -- 06:08:51.003 DEBUG [12334]: Database connection successful -- 06:08:51.003 INFO [12334]: _SERVER found -- 06:08:51.003 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 06:08:51.003 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:51.003 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:51.003 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 06:08:51.003 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:51.015 INFO [12334]: COREGRADE is stopping... -- 06:08:51.015 DEBUG [12334]: Closing database connection -- 06:08:51.015 SQL [12334]: pgsql_close() -- 06:08:51.082 INFO [12334]: COREGRADE is starting... -- 06:08:51.083 INFO [12334]: Version from config: 1.0 -- 06:08:51.083 DEBUG [12334]: Connecting to database... -- 06:08:51.083 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:51.083 SQL [12334]: pgsql_db_connect() -- 06:08:51.087 DEBUG [12334]: Database connection successful -- 06:08:51.087 INFO [12334]: _SERVER found -- 06:08:51.087 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 06:08:51.087 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:51.087 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:51.087 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 06:08:51.087 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:51.099 INFO [12334]: COREGRADE is stopping... -- 06:08:51.099 DEBUG [12334]: Closing database connection -- 06:08:51.099 SQL [12334]: pgsql_close() -- 06:08:51.166 INFO [12334]: COREGRADE is starting... -- 06:08:51.166 INFO [12334]: Version from config: 1.0 -- 06:08:51.166 DEBUG [12334]: Connecting to database... -- 06:08:51.166 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:51.166 SQL [12334]: pgsql_db_connect() -- 06:08:51.171 DEBUG [12334]: Database connection successful -- 06:08:51.171 INFO [12334]: _SERVER found -- 06:08:51.171 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 06:08:51.171 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:51.171 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:51.171 INFO [12334]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 06:08:51.171 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:51.183 INFO [12334]: COREGRADE is stopping... -- 06:08:51.183 DEBUG [12334]: Closing database connection -- 06:08:51.183 SQL [12334]: pgsql_close() -- 06:08:51.250 INFO [12334]: COREGRADE is starting... -- 06:08:51.250 INFO [12334]: Version from config: 1.0 -- 06:08:51.250 DEBUG [12334]: Connecting to database... -- 06:08:51.250 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:51.250 SQL [12334]: pgsql_db_connect() -- 06:08:51.254 DEBUG [12334]: Database connection successful -- 06:08:51.254 INFO [12334]: _SERVER found -- 06:08:51.254 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 06:08:51.254 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:51.254 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:51.254 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 06:08:51.254 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:51.266 INFO [12334]: COREGRADE is stopping... -- 06:08:51.266 DEBUG [12334]: Closing database connection -- 06:08:51.266 SQL [12334]: pgsql_close() -- 06:08:51.333 INFO [12334]: COREGRADE is starting... -- 06:08:51.334 INFO [12334]: Version from config: 1.0 -- 06:08:51.334 DEBUG [12334]: Connecting to database... -- 06:08:51.334 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:51.334 SQL [12334]: pgsql_db_connect() -- 06:08:51.338 DEBUG [12334]: Database connection successful -- 06:08:51.338 INFO [12334]: _SERVER found -- 06:08:51.338 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 06:08:51.338 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:51.338 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:51.338 INFO [12334]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 06:08:51.338 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:51.350 INFO [12334]: COREGRADE is stopping... -- 06:08:51.350 DEBUG [12334]: Closing database connection -- 06:08:51.350 SQL [12334]: pgsql_close() -- 06:08:51.417 INFO [12334]: COREGRADE is starting... -- 06:08:51.417 INFO [12334]: Version from config: 1.0 -- 06:08:51.418 DEBUG [12334]: Connecting to database... -- 06:08:51.418 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:51.418 SQL [12334]: pgsql_db_connect() -- 06:08:51.422 DEBUG [12334]: Database connection successful -- 06:08:51.422 INFO [12334]: _SERVER found -- 06:08:51.422 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 06:08:51.422 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:51.422 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:51.422 INFO [12334]: QUERY_STRING = /assets/js/pages/dashboard.js -- 06:08:51.422 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:51.433 INFO [12334]: COREGRADE is stopping... -- 06:08:51.433 DEBUG [12334]: Closing database connection -- 06:08:51.433 SQL [12334]: pgsql_close() -- 06:08:51.502 INFO [12334]: COREGRADE is starting... -- 06:08:51.502 INFO [12334]: Version from config: 1.0 -- 06:08:51.502 DEBUG [12334]: Connecting to database... -- 06:08:51.502 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:51.502 SQL [12334]: pgsql_db_connect() -- 06:08:51.507 DEBUG [12334]: Database connection successful -- 06:08:51.507 INFO [12334]: _SERVER found -- 06:08:51.507 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 06:08:51.507 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:51.507 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:51.507 INFO [12334]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 06:08:51.507 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:51.518 INFO [12334]: COREGRADE is stopping... -- 06:08:51.518 DEBUG [12334]: Closing database connection -- 06:08:51.518 SQL [12334]: pgsql_close() -- 06:08:51.585 INFO [12334]: COREGRADE is starting... -- 06:08:51.585 INFO [12334]: Version from config: 1.0 -- 06:08:51.585 DEBUG [12334]: Connecting to database... -- 06:08:51.586 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:51.586 SQL [12334]: pgsql_db_connect() -- 06:08:51.590 DEBUG [12334]: Database connection successful -- 06:08:51.590 INFO [12334]: _SERVER found -- 06:08:51.590 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 06:08:51.590 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:51.590 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:51.590 INFO [12334]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 06:08:51.590 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:51.602 INFO [12334]: COREGRADE is stopping... -- 06:08:51.602 DEBUG [12334]: Closing database connection -- 06:08:51.602 SQL [12334]: pgsql_close() -- 06:08:51.669 INFO [12334]: COREGRADE is starting... -- 06:08:51.669 INFO [12334]: Version from config: 1.0 -- 06:08:51.669 DEBUG [12334]: Connecting to database... -- 06:08:51.669 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:51.669 SQL [12334]: pgsql_db_connect() -- 06:08:51.673 DEBUG [12334]: Database connection successful -- 06:08:51.673 INFO [12334]: _SERVER found -- 06:08:51.673 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 06:08:51.673 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:51.673 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:51.673 INFO [12334]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 06:08:51.673 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:51.685 INFO [12334]: COREGRADE is stopping... -- 06:08:51.685 DEBUG [12334]: Closing database connection -- 06:08:51.685 SQL [12334]: pgsql_close() -- 06:08:51.752 INFO [12334]: COREGRADE is starting... -- 06:08:51.753 INFO [12334]: Version from config: 1.0 -- 06:08:51.753 DEBUG [12334]: Connecting to database... -- 06:08:51.753 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:51.753 SQL [12334]: pgsql_db_connect() -- 06:08:51.757 DEBUG [12334]: Database connection successful -- 06:08:51.757 INFO [12334]: _SERVER found -- 06:08:51.757 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 06:08:51.757 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:51.757 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:51.757 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 06:08:51.757 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:51.769 INFO [12334]: COREGRADE is stopping... -- 06:08:51.769 DEBUG [12334]: Closing database connection -- 06:08:51.769 SQL [12334]: pgsql_close() -- 06:08:51.837 INFO [12334]: COREGRADE is starting... -- 06:08:51.837 INFO [12334]: Version from config: 1.0 -- 06:08:51.837 DEBUG [12334]: Connecting to database... -- 06:08:51.837 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:51.837 SQL [12334]: pgsql_db_connect() -- 06:08:51.841 DEBUG [12334]: Database connection successful -- 06:08:51.841 INFO [12334]: _SERVER found -- 06:08:51.841 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 06:08:51.841 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:51.841 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:51.841 INFO [12334]: QUERY_STRING = /assets/js/pages/picker_date.js -- 06:08:51.841 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:51.853 INFO [12334]: COREGRADE is stopping... -- 06:08:51.853 DEBUG [12334]: Closing database connection -- 06:08:51.853 SQL [12334]: pgsql_close() -- 06:08:51.920 INFO [12334]: COREGRADE is starting... -- 06:08:51.920 INFO [12334]: Version from config: 1.0 -- 06:08:51.920 DEBUG [12334]: Connecting to database... -- 06:08:51.920 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:51.920 SQL [12334]: pgsql_db_connect() -- 06:08:51.925 DEBUG [12334]: Database connection successful -- 06:08:51.925 INFO [12334]: _SERVER found -- 06:08:51.925 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 06:08:51.925 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:51.925 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:51.925 INFO [12334]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 06:08:51.925 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:51.936 INFO [12334]: COREGRADE is stopping... -- 06:08:51.936 DEBUG [12334]: Closing database connection -- 06:08:51.936 SQL [12334]: pgsql_close() -- 06:08:52.004 INFO [12334]: COREGRADE is starting... -- 06:08:52.004 INFO [12334]: Version from config: 1.0 -- 06:08:52.004 DEBUG [12334]: Connecting to database... -- 06:08:52.004 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:52.004 SQL [12334]: pgsql_db_connect() -- 06:08:52.009 DEBUG [12334]: Database connection successful -- 06:08:52.009 INFO [12334]: _SERVER found -- 06:08:52.009 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 06:08:52.009 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:52.009 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:52.009 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 06:08:52.009 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:52.021 INFO [12334]: COREGRADE is stopping... -- 06:08:52.021 DEBUG [12334]: Closing database connection -- 06:08:52.021 SQL [12334]: pgsql_close() -- 06:08:52.088 INFO [12334]: COREGRADE is starting... -- 06:08:52.088 INFO [12334]: Version from config: 1.0 -- 06:08:52.088 DEBUG [12334]: Connecting to database... -- 06:08:52.088 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:52.088 SQL [12334]: pgsql_db_connect() -- 06:08:52.093 DEBUG [12334]: Database connection successful -- 06:08:52.093 INFO [12334]: _SERVER found -- 06:08:52.093 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 06:08:52.093 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:52.093 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:52.093 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 06:08:52.093 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:52.104 INFO [12334]: COREGRADE is stopping... -- 06:08:52.104 DEBUG [12334]: Closing database connection -- 06:08:52.104 SQL [12334]: pgsql_close() -- 06:08:52.172 INFO [12334]: COREGRADE is starting... -- 06:08:52.172 INFO [12334]: Version from config: 1.0 -- 06:08:52.172 DEBUG [12334]: Connecting to database... -- 06:08:52.172 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:52.172 SQL [12334]: pgsql_db_connect() -- 06:08:52.177 DEBUG [12334]: Database connection successful -- 06:08:52.177 INFO [12334]: _SERVER found -- 06:08:52.177 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 06:08:52.177 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:52.177 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:52.177 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 06:08:52.177 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:52.188 INFO [12334]: COREGRADE is stopping... -- 06:08:52.188 DEBUG [12334]: Closing database connection -- 06:08:52.188 SQL [12334]: pgsql_close() -- 06:08:52.256 INFO [12334]: COREGRADE is starting... -- 06:08:52.256 INFO [12334]: Version from config: 1.0 -- 06:08:52.256 DEBUG [12334]: Connecting to database... -- 06:08:52.256 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:52.256 SQL [12334]: pgsql_db_connect() -- 06:08:52.261 DEBUG [12334]: Database connection successful -- 06:08:52.261 INFO [12334]: _SERVER found -- 06:08:52.261 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 06:08:52.261 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:52.261 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:52.261 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 06:08:52.261 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:52.273 INFO [12334]: COREGRADE is stopping... -- 06:08:52.273 DEBUG [12334]: Closing database connection -- 06:08:52.273 SQL [12334]: pgsql_close() -- 06:08:52.351 INFO [12334]: COREGRADE is starting... -- 06:08:52.351 INFO [12334]: Version from config: 1.0 -- 06:08:52.351 DEBUG [12334]: Connecting to database... -- 06:08:52.351 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:52.351 SQL [12334]: pgsql_db_connect() -- 06:08:52.355 DEBUG [12334]: Database connection successful -- 06:08:52.355 INFO [12334]: _SERVER found -- 06:08:52.355 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 06:08:52.355 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:52.355 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:52.355 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 06:08:52.355 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:52.367 INFO [12334]: COREGRADE is stopping... -- 06:08:52.367 DEBUG [12334]: Closing database connection -- 06:08:52.367 SQL [12334]: pgsql_close() -- 06:08:52.434 INFO [12334]: COREGRADE is starting... -- 06:08:52.434 INFO [12334]: Version from config: 1.0 -- 06:08:52.434 DEBUG [12334]: Connecting to database... -- 06:08:52.435 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:52.435 SQL [12334]: pgsql_db_connect() -- 06:08:52.439 DEBUG [12334]: Database connection successful -- 06:08:52.439 INFO [12334]: _SERVER found -- 06:08:52.439 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 06:08:52.439 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:52.439 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:52.439 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 06:08:52.439 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:52.450 INFO [12334]: COREGRADE is stopping... -- 06:08:52.450 DEBUG [12334]: Closing database connection -- 06:08:52.450 SQL [12334]: pgsql_close() -- 06:08:52.519 INFO [12334]: COREGRADE is starting... -- 06:08:52.520 INFO [12334]: Version from config: 1.0 -- 06:08:52.520 DEBUG [12334]: Connecting to database... -- 06:08:52.520 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:08:52.520 SQL [12334]: pgsql_db_connect() -- 06:08:52.524 DEBUG [12334]: Database connection successful -- 06:08:52.524 INFO [12334]: _SERVER found -- 06:08:52.524 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 06:08:52.524 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:08:52.524 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:08:52.524 INFO [12334]: QUERY_STRING = /assets/customjs/general.js -- 06:08:52.524 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:08:52.536 INFO [12334]: COREGRADE is stopping... -- 06:08:52.536 DEBUG [12334]: Closing database connection -- 06:08:52.536 SQL [12334]: pgsql_close() -- 06:28:52.755 INFO [12247]: COREGRADE is starting... -- 06:28:52.755 INFO [12247]: Version from config: 1.0 -- 06:28:52.755 DEBUG [12247]: Connecting to database... -- 06:28:52.755 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:52.755 SQL [12247]: pgsql_db_connect() -- 06:28:52.760 DEBUG [12247]: Database connection successful -- 06:28:52.760 INFO [12247]: _SERVER found -- 06:28:52.760 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 06:28:52.760 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:52.760 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5ja91id2v3roo12pimq4m7fg0u2r66ec -- 06:28:52.760 INFO [12247]: QUERY_STRING = /logout -- 06:28:52.760 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:52.794 INFO [12247]: COREGRADE is stopping... -- 06:28:52.794 DEBUG [12247]: Closing database connection -- 06:28:52.794 SQL [12247]: pgsql_close() -- 06:28:52.873 INFO [12247]: COREGRADE is starting... -- 06:28:52.873 INFO [12247]: Version from config: 1.0 -- 06:28:52.873 DEBUG [12247]: Connecting to database... -- 06:28:52.873 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:52.873 SQL [12247]: pgsql_db_connect() -- 06:28:52.877 DEBUG [12247]: Database connection successful -- 06:28:52.877 INFO [12247]: _SERVER found -- 06:28:52.877 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 06:28:52.877 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:52.877 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:52.877 INFO [12247]: QUERY_STRING = /start -- 06:28:52.877 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:52.911 INFO [12247]: COREGRADE is stopping... -- 06:28:52.911 DEBUG [12247]: Closing database connection -- 06:28:52.911 SQL [12247]: pgsql_close() -- 06:28:53.034 INFO [12247]: COREGRADE is starting... -- 06:28:53.034 INFO [12247]: Version from config: 1.0 -- 06:28:53.034 DEBUG [12247]: Connecting to database... -- 06:28:53.034 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:53.034 SQL [12247]: pgsql_db_connect() -- 06:28:53.039 DEBUG [12247]: Database connection successful -- 06:28:53.039 INFO [12247]: _SERVER found -- 06:28:53.039 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 06:28:53.039 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:53.039 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:53.039 INFO [12247]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 06:28:53.039 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:53.050 INFO [12247]: COREGRADE is stopping... -- 06:28:53.050 DEBUG [12247]: Closing database connection -- 06:28:53.050 SQL [12247]: pgsql_close() -- 06:28:53.055 INFO [12247]: COREGRADE is starting... -- 06:28:53.056 INFO [12247]: Version from config: 1.0 -- 06:28:53.056 DEBUG [12247]: Connecting to database... -- 06:28:53.056 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:53.056 SQL [12247]: pgsql_db_connect() -- 06:28:53.059 DEBUG [12247]: Database connection successful -- 06:28:53.059 INFO [12247]: _SERVER found -- 06:28:53.059 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 06:28:53.059 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:53.059 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:53.059 INFO [12247]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 06:28:53.059 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:53.071 INFO [12247]: COREGRADE is stopping... -- 06:28:53.071 DEBUG [12247]: Closing database connection -- 06:28:53.071 SQL [12247]: pgsql_close() -- 06:28:53.105 INFO [12246]: COREGRADE is starting... -- 06:28:53.105 INFO [12246]: Version from config: 1.0 -- 06:28:53.105 DEBUG [12246]: Connecting to database... -- 06:28:53.105 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:53.105 SQL [12246]: pgsql_db_connect() -- 06:28:53.109 DEBUG [12246]: Database connection successful -- 06:28:53.109 INFO [12246]: _SERVER found -- 06:28:53.109 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 06:28:53.109 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:53.109 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:53.109 INFO [12246]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 06:28:53.109 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:53.122 INFO [12246]: COREGRADE is stopping... -- 06:28:53.122 DEBUG [12246]: Closing database connection -- 06:28:53.122 SQL [12246]: pgsql_close() -- 06:28:53.129 INFO [12247]: COREGRADE is starting... -- 06:28:53.130 INFO [12247]: Version from config: 1.0 -- 06:28:53.130 DEBUG [12247]: Connecting to database... -- 06:28:53.130 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:53.130 SQL [12247]: pgsql_db_connect() -- 06:28:53.137 INFO [12248]: COREGRADE is starting... -- 06:28:53.137 INFO [12248]: Version from config: 1.0 -- 06:28:53.137 DEBUG [12248]: Connecting to database... -- 06:28:53.137 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:53.137 SQL [12248]: pgsql_db_connect() -- 06:28:53.133 DEBUG [12247]: Database connection successful -- 06:28:53.133 INFO [12247]: _SERVER found -- 06:28:53.133 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 06:28:53.133 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:53.133 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:53.133 INFO [12247]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 06:28:53.133 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:53.145 INFO [12247]: COREGRADE is stopping... -- 06:28:53.145 DEBUG [12247]: Closing database connection -- 06:28:53.145 SQL [12247]: pgsql_close() -- 06:28:53.141 DEBUG [12248]: Database connection successful -- 06:28:53.141 INFO [12248]: _SERVER found -- 06:28:53.141 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 06:28:53.141 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:53.141 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:53.141 INFO [12248]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 06:28:53.141 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:53.154 INFO [12248]: COREGRADE is stopping... -- 06:28:53.154 DEBUG [12248]: Closing database connection -- 06:28:53.154 SQL [12248]: pgsql_close() -- 06:28:53.203 INFO [12246]: COREGRADE is starting... -- 06:28:53.203 INFO [12246]: Version from config: 1.0 -- 06:28:53.203 DEBUG [12246]: Connecting to database... -- 06:28:53.204 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:53.204 SQL [12246]: pgsql_db_connect() -- 06:28:53.208 DEBUG [12246]: Database connection successful -- 06:28:53.208 INFO [12246]: _SERVER found -- 06:28:53.208 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 06:28:53.208 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:53.208 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:53.208 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 06:28:53.208 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:53.219 INFO [12246]: COREGRADE is stopping... -- 06:28:53.219 DEBUG [12246]: Closing database connection -- 06:28:53.219 SQL [12246]: pgsql_close() -- 06:28:53.224 INFO [12247]: COREGRADE is starting... -- 06:28:53.224 INFO [12248]: COREGRADE is starting... -- 06:28:53.224 INFO [12247]: Version from config: 1.0 -- 06:28:53.224 DEBUG [12247]: Connecting to database... -- 06:28:53.224 INFO [12248]: Version from config: 1.0 -- 06:28:53.224 DEBUG [12248]: Connecting to database... -- 06:28:53.224 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:53.224 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:53.224 SQL [12247]: pgsql_db_connect() -- 06:28:53.224 SQL [12248]: pgsql_db_connect() -- 06:28:53.228 DEBUG [12247]: Database connection successful -- 06:28:53.228 INFO [12247]: _SERVER found -- 06:28:53.228 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 06:28:53.228 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:53.228 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:53.228 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 06:28:53.228 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:53.239 INFO [12247]: COREGRADE is stopping... -- 06:28:53.228 DEBUG [12248]: Database connection successful -- 06:28:53.228 INFO [12248]: _SERVER found -- 06:28:53.228 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 06:28:53.228 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:53.228 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:53.228 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 06:28:53.228 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:53.239 INFO [12248]: COREGRADE is stopping... -- 06:28:53.239 DEBUG [12247]: Closing database connection -- 06:28:53.239 DEBUG [12248]: Closing database connection -- 06:28:53.239 SQL [12247]: pgsql_close() -- 06:28:53.239 SQL [12248]: pgsql_close() -- 06:28:53.297 INFO [12246]: COREGRADE is starting... -- 06:28:53.298 INFO [12246]: Version from config: 1.0 -- 06:28:53.298 DEBUG [12246]: Connecting to database... -- 06:28:53.298 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:53.298 SQL [12246]: pgsql_db_connect() -- 06:28:53.305 INFO [12247]: COREGRADE is starting... -- 06:28:53.305 INFO [12247]: Version from config: 1.0 -- 06:28:53.305 DEBUG [12247]: Connecting to database... -- 06:28:53.305 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:53.305 SQL [12247]: pgsql_db_connect() -- 06:28:53.302 DEBUG [12246]: Database connection successful -- 06:28:53.302 INFO [12246]: _SERVER found -- 06:28:53.302 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 06:28:53.302 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:53.302 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:53.302 INFO [12246]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 06:28:53.302 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:53.313 INFO [12246]: COREGRADE is stopping... -- 06:28:53.313 DEBUG [12246]: Closing database connection -- 06:28:53.313 SQL [12246]: pgsql_close() -- 06:28:53.318 INFO [12248]: COREGRADE is starting... -- 06:28:53.318 INFO [12248]: Version from config: 1.0 -- 06:28:53.318 DEBUG [12248]: Connecting to database... -- 06:28:53.318 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:53.318 SQL [12248]: pgsql_db_connect() -- 06:28:53.309 DEBUG [12247]: Database connection successful -- 06:28:53.309 INFO [12247]: _SERVER found -- 06:28:53.309 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 06:28:53.309 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:53.309 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:53.309 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 06:28:53.309 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:53.321 INFO [12247]: COREGRADE is stopping... -- 06:28:53.321 DEBUG [12247]: Closing database connection -- 06:28:53.321 SQL [12247]: pgsql_close() -- 06:28:53.322 DEBUG [12248]: Database connection successful -- 06:28:53.322 INFO [12248]: _SERVER found -- 06:28:53.322 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 06:28:53.322 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:53.322 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:53.322 INFO [12248]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 06:28:53.322 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:53.334 INFO [12248]: COREGRADE is stopping... -- 06:28:53.334 DEBUG [12248]: Closing database connection -- 06:28:53.334 SQL [12248]: pgsql_close() -- 06:28:53.387 INFO [12248]: COREGRADE is starting... -- 06:28:53.387 INFO [12248]: Version from config: 1.0 -- 06:28:53.387 DEBUG [12248]: Connecting to database... -- 06:28:53.387 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:53.387 SQL [12248]: pgsql_db_connect() -- 06:28:53.393 INFO [12246]: COREGRADE is starting... -- 06:28:53.393 INFO [12246]: Version from config: 1.0 -- 06:28:53.393 DEBUG [12246]: Connecting to database... -- 06:28:53.393 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:53.393 SQL [12246]: pgsql_db_connect() -- 06:28:53.391 DEBUG [12248]: Database connection successful -- 06:28:53.391 INFO [12248]: _SERVER found -- 06:28:53.391 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 06:28:53.391 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:53.391 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:53.391 INFO [12248]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 06:28:53.391 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:53.402 INFO [12248]: COREGRADE is stopping... -- 06:28:53.402 DEBUG [12248]: Closing database connection -- 06:28:53.402 SQL [12248]: pgsql_close() -- 06:28:53.403 INFO [12247]: COREGRADE is starting... -- 06:28:53.403 INFO [12247]: Version from config: 1.0 -- 06:28:53.403 DEBUG [12247]: Connecting to database... -- 06:28:53.403 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:53.403 SQL [12247]: pgsql_db_connect() -- 06:28:53.397 DEBUG [12246]: Database connection successful -- 06:28:53.397 INFO [12246]: _SERVER found -- 06:28:53.397 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 06:28:53.397 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:53.397 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:53.397 INFO [12246]: QUERY_STRING = /assets/js/pages/dashboard.js -- 06:28:53.397 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:53.409 INFO [12246]: COREGRADE is stopping... -- 06:28:53.409 DEBUG [12246]: Closing database connection -- 06:28:53.409 SQL [12246]: pgsql_close() -- 06:28:53.407 DEBUG [12247]: Database connection successful -- 06:28:53.407 INFO [12247]: _SERVER found -- 06:28:53.407 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 06:28:53.407 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:53.407 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:53.407 INFO [12247]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 06:28:53.407 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:53.419 INFO [12247]: COREGRADE is stopping... -- 06:28:53.419 DEBUG [12247]: Closing database connection -- 06:28:53.419 SQL [12247]: pgsql_close() -- 06:28:53.469 INFO [12247]: COREGRADE is starting... -- 06:28:53.469 INFO [12247]: Version from config: 1.0 -- 06:28:53.469 DEBUG [12247]: Connecting to database... -- 06:28:53.469 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:53.469 SQL [12247]: pgsql_db_connect() -- 06:28:53.475 INFO [12246]: COREGRADE is starting... -- 06:28:53.475 INFO [12246]: Version from config: 1.0 -- 06:28:53.475 DEBUG [12246]: Connecting to database... -- 06:28:53.475 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:53.475 SQL [12246]: pgsql_db_connect() -- 06:28:53.473 DEBUG [12247]: Database connection successful -- 06:28:53.473 INFO [12247]: _SERVER found -- 06:28:53.473 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 06:28:53.473 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:53.473 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:53.473 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 06:28:53.473 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:53.484 INFO [12247]: COREGRADE is stopping... -- 06:28:53.484 DEBUG [12247]: Closing database connection -- 06:28:53.484 SQL [12247]: pgsql_close() -- 06:28:53.487 INFO [12247]: COREGRADE is starting... -- 06:28:53.487 INFO [12247]: Version from config: 1.0 -- 06:28:53.487 DEBUG [12247]: Connecting to database... -- 06:28:53.487 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:53.487 SQL [12247]: pgsql_db_connect() -- 06:28:53.479 DEBUG [12246]: Database connection successful -- 06:28:53.479 INFO [12246]: _SERVER found -- 06:28:53.479 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 06:28:53.479 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:53.479 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:53.479 INFO [12246]: QUERY_STRING = /assets/js/pages/picker_date.js -- 06:28:53.479 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:53.491 INFO [12246]: COREGRADE is stopping... -- 06:28:53.491 DEBUG [12246]: Closing database connection -- 06:28:53.491 SQL [12246]: pgsql_close() -- 06:28:53.491 DEBUG [12247]: Database connection successful -- 06:28:53.491 INFO [12247]: _SERVER found -- 06:28:53.491 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 06:28:53.491 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:53.491 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:53.491 INFO [12247]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 06:28:53.491 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:53.502 INFO [12247]: COREGRADE is stopping... -- 06:28:53.503 DEBUG [12247]: Closing database connection -- 06:28:53.503 SQL [12247]: pgsql_close() -- 06:28:53.551 INFO [12247]: COREGRADE is starting... -- 06:28:53.551 INFO [12247]: Version from config: 1.0 -- 06:28:53.551 DEBUG [12247]: Connecting to database... -- 06:28:53.551 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:53.551 SQL [12247]: pgsql_db_connect() -- 06:28:53.557 INFO [12246]: COREGRADE is starting... -- 06:28:53.557 INFO [12246]: Version from config: 1.0 -- 06:28:53.557 DEBUG [12246]: Connecting to database... -- 06:28:53.557 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:53.557 SQL [12246]: pgsql_db_connect() -- 06:28:53.555 DEBUG [12247]: Database connection successful -- 06:28:53.555 INFO [12247]: _SERVER found -- 06:28:53.555 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 06:28:53.555 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:53.555 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:53.555 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 06:28:53.555 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:53.567 INFO [12247]: COREGRADE is stopping... -- 06:28:53.567 DEBUG [12247]: Closing database connection -- 06:28:53.567 SQL [12247]: pgsql_close() -- 06:28:53.570 INFO [12247]: COREGRADE is starting... -- 06:28:53.570 INFO [12247]: Version from config: 1.0 -- 06:28:53.570 DEBUG [12247]: Connecting to database... -- 06:28:53.570 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:53.570 SQL [12247]: pgsql_db_connect() -- 06:28:53.561 DEBUG [12246]: Database connection successful -- 06:28:53.561 INFO [12246]: _SERVER found -- 06:28:53.561 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 06:28:53.561 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:53.561 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:53.561 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 06:28:53.561 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:53.573 INFO [12246]: COREGRADE is stopping... -- 06:28:53.573 DEBUG [12246]: Closing database connection -- 06:28:53.573 SQL [12246]: pgsql_close() -- 06:28:53.574 DEBUG [12247]: Database connection successful -- 06:28:53.574 INFO [12247]: _SERVER found -- 06:28:53.574 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 06:28:53.574 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:53.574 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:53.574 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 06:28:53.574 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:53.586 INFO [12247]: COREGRADE is stopping... -- 06:28:53.586 DEBUG [12247]: Closing database connection -- 06:28:53.586 SQL [12247]: pgsql_close() -- 06:28:53.633 INFO [12247]: COREGRADE is starting... -- 06:28:53.633 INFO [12247]: Version from config: 1.0 -- 06:28:53.633 DEBUG [12247]: Connecting to database... -- 06:28:53.633 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:53.633 SQL [12247]: pgsql_db_connect() -- 06:28:53.638 INFO [12246]: COREGRADE is starting... -- 06:28:53.638 INFO [12246]: Version from config: 1.0 -- 06:28:53.638 DEBUG [12246]: Connecting to database... -- 06:28:53.638 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:53.638 SQL [12246]: pgsql_db_connect() -- 06:28:53.637 DEBUG [12247]: Database connection successful -- 06:28:53.637 INFO [12247]: _SERVER found -- 06:28:53.637 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 06:28:53.637 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:53.637 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:53.637 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 06:28:53.637 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:53.649 INFO [12247]: COREGRADE is stopping... -- 06:28:53.649 DEBUG [12247]: Closing database connection -- 06:28:53.649 SQL [12247]: pgsql_close() -- 06:28:53.653 INFO [12247]: COREGRADE is starting... -- 06:28:53.642 DEBUG [12246]: Database connection successful -- 06:28:53.642 INFO [12246]: _SERVER found -- 06:28:53.642 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 06:28:53.642 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:53.642 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:53.642 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 06:28:53.642 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:53.654 INFO [12246]: COREGRADE is stopping... -- 06:28:53.654 DEBUG [12246]: Closing database connection -- 06:28:53.654 SQL [12246]: pgsql_close() -- 06:28:53.654 INFO [12247]: Version from config: 1.0 -- 06:28:53.654 DEBUG [12247]: Connecting to database... -- 06:28:53.654 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:53.654 SQL [12247]: pgsql_db_connect() -- 06:28:53.658 DEBUG [12247]: Database connection successful -- 06:28:53.658 INFO [12247]: _SERVER found -- 06:28:53.658 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 06:28:53.658 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:53.658 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:53.658 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 06:28:53.658 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:53.669 INFO [12247]: COREGRADE is stopping... -- 06:28:53.669 DEBUG [12247]: Closing database connection -- 06:28:53.669 SQL [12247]: pgsql_close() -- 06:28:53.714 INFO [12247]: COREGRADE is starting... -- 06:28:53.714 INFO [12247]: Version from config: 1.0 -- 06:28:53.714 DEBUG [12247]: Connecting to database... -- 06:28:53.714 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:53.714 SQL [12247]: pgsql_db_connect() -- 06:28:53.719 INFO [12246]: COREGRADE is starting... -- 06:28:53.719 INFO [12246]: Version from config: 1.0 -- 06:28:53.719 DEBUG [12246]: Connecting to database... -- 06:28:53.719 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:53.719 SQL [12246]: pgsql_db_connect() -- 06:28:53.718 DEBUG [12247]: Database connection successful -- 06:28:53.718 INFO [12247]: _SERVER found -- 06:28:53.718 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 06:28:53.718 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:53.718 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:53.718 INFO [12247]: QUERY_STRING = /assets/customjs/general.js -- 06:28:53.718 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:53.730 INFO [12247]: COREGRADE is stopping... -- 06:28:53.730 DEBUG [12247]: Closing database connection -- 06:28:53.730 SQL [12247]: pgsql_close() -- 06:28:53.723 DEBUG [12246]: Database connection successful -- 06:28:53.723 INFO [12246]: _SERVER found -- 06:28:53.723 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 06:28:53.723 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:53.723 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:53.723 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 06:28:53.723 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:53.734 INFO [12246]: COREGRADE is stopping... -- 06:28:53.734 DEBUG [12246]: Closing database connection -- 06:28:53.734 SQL [12246]: pgsql_close() -- 06:28:53.800 INFO [12246]: COREGRADE is starting... -- 06:28:53.800 INFO [12246]: Version from config: 1.0 -- 06:28:53.800 DEBUG [12246]: Connecting to database... -- 06:28:53.800 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:53.800 SQL [12246]: pgsql_db_connect() -- 06:28:53.804 DEBUG [12246]: Database connection successful -- 06:28:53.804 INFO [12246]: _SERVER found -- 06:28:53.804 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 06:28:53.804 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:53.804 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:53.804 INFO [12246]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 06:28:53.804 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:53.816 INFO [12246]: COREGRADE is stopping... -- 06:28:53.816 DEBUG [12246]: Closing database connection -- 06:28:53.816 SQL [12246]: pgsql_close() -- 06:28:53.881 INFO [12246]: COREGRADE is starting... -- 06:28:53.882 INFO [12246]: Version from config: 1.0 -- 06:28:53.882 DEBUG [12246]: Connecting to database... -- 06:28:53.882 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:53.882 SQL [12246]: pgsql_db_connect() -- 06:28:53.886 DEBUG [12246]: Database connection successful -- 06:28:53.886 INFO [12246]: _SERVER found -- 06:28:53.886 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 06:28:53.886 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:53.886 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:53.886 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 06:28:53.886 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:53.897 INFO [12246]: COREGRADE is stopping... -- 06:28:53.897 DEBUG [12246]: Closing database connection -- 06:28:53.897 SQL [12246]: pgsql_close() -- 06:28:53.963 INFO [12246]: COREGRADE is starting... -- 06:28:53.964 INFO [12246]: Version from config: 1.0 -- 06:28:53.964 DEBUG [12246]: Connecting to database... -- 06:28:53.964 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:53.964 SQL [12246]: pgsql_db_connect() -- 06:28:53.968 DEBUG [12246]: Database connection successful -- 06:28:53.968 INFO [12246]: _SERVER found -- 06:28:53.968 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 06:28:53.968 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:53.968 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:53.968 INFO [12246]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 06:28:53.968 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:53.979 INFO [12246]: COREGRADE is stopping... -- 06:28:53.979 DEBUG [12246]: Closing database connection -- 06:28:53.979 SQL [12246]: pgsql_close() -- 06:28:54.046 INFO [12246]: COREGRADE is starting... -- 06:28:54.046 INFO [12246]: Version from config: 1.0 -- 06:28:54.046 DEBUG [12246]: Connecting to database... -- 06:28:54.046 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:54.046 SQL [12246]: pgsql_db_connect() -- 06:28:54.050 DEBUG [12246]: Database connection successful -- 06:28:54.050 INFO [12246]: _SERVER found -- 06:28:54.050 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 06:28:54.050 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:54.050 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:54.050 INFO [12246]: QUERY_STRING = /assets/js/pages/dashboard.js -- 06:28:54.050 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:54.062 INFO [12246]: COREGRADE is stopping... -- 06:28:54.062 DEBUG [12246]: Closing database connection -- 06:28:54.062 SQL [12246]: pgsql_close() -- 06:28:54.129 INFO [12246]: COREGRADE is starting... -- 06:28:54.129 INFO [12246]: Version from config: 1.0 -- 06:28:54.129 DEBUG [12246]: Connecting to database... -- 06:28:54.129 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:54.129 SQL [12246]: pgsql_db_connect() -- 06:28:54.133 DEBUG [12246]: Database connection successful -- 06:28:54.133 INFO [12246]: _SERVER found -- 06:28:54.133 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 06:28:54.133 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:54.133 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:54.133 INFO [12246]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 06:28:54.133 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:54.144 INFO [12246]: COREGRADE is stopping... -- 06:28:54.144 DEBUG [12246]: Closing database connection -- 06:28:54.144 SQL [12246]: pgsql_close() -- 06:28:54.211 INFO [12246]: COREGRADE is starting... -- 06:28:54.211 INFO [12246]: Version from config: 1.0 -- 06:28:54.211 DEBUG [12246]: Connecting to database... -- 06:28:54.211 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:54.211 SQL [12246]: pgsql_db_connect() -- 06:28:54.215 DEBUG [12246]: Database connection successful -- 06:28:54.215 INFO [12246]: _SERVER found -- 06:28:54.215 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 06:28:54.215 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:54.215 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:54.215 INFO [12246]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 06:28:54.215 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:54.227 INFO [12246]: COREGRADE is stopping... -- 06:28:54.227 DEBUG [12246]: Closing database connection -- 06:28:54.227 SQL [12246]: pgsql_close() -- 06:28:54.293 INFO [12246]: COREGRADE is starting... -- 06:28:54.293 INFO [12246]: Version from config: 1.0 -- 06:28:54.293 DEBUG [12246]: Connecting to database... -- 06:28:54.293 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:54.293 SQL [12246]: pgsql_db_connect() -- 06:28:54.297 DEBUG [12246]: Database connection successful -- 06:28:54.297 INFO [12246]: _SERVER found -- 06:28:54.297 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 06:28:54.297 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:54.297 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:54.297 INFO [12246]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 06:28:54.297 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:54.309 INFO [12246]: COREGRADE is stopping... -- 06:28:54.309 DEBUG [12246]: Closing database connection -- 06:28:54.309 SQL [12246]: pgsql_close() -- 06:28:54.374 INFO [12246]: COREGRADE is starting... -- 06:28:54.375 INFO [12246]: Version from config: 1.0 -- 06:28:54.375 DEBUG [12246]: Connecting to database... -- 06:28:54.375 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:54.375 SQL [12246]: pgsql_db_connect() -- 06:28:54.379 DEBUG [12246]: Database connection successful -- 06:28:54.379 INFO [12246]: _SERVER found -- 06:28:54.379 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 06:28:54.379 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:54.379 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:54.379 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 06:28:54.379 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:54.390 INFO [12246]: COREGRADE is stopping... -- 06:28:54.390 DEBUG [12246]: Closing database connection -- 06:28:54.390 SQL [12246]: pgsql_close() -- 06:28:54.457 INFO [12246]: COREGRADE is starting... -- 06:28:54.457 INFO [12246]: Version from config: 1.0 -- 06:28:54.457 DEBUG [12246]: Connecting to database... -- 06:28:54.457 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:54.457 SQL [12246]: pgsql_db_connect() -- 06:28:54.461 DEBUG [12246]: Database connection successful -- 06:28:54.461 INFO [12246]: _SERVER found -- 06:28:54.461 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 06:28:54.461 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:54.461 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:54.461 INFO [12246]: QUERY_STRING = /assets/js/pages/picker_date.js -- 06:28:54.461 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:54.472 INFO [12246]: COREGRADE is stopping... -- 06:28:54.472 DEBUG [12246]: Closing database connection -- 06:28:54.472 SQL [12246]: pgsql_close() -- 06:28:54.538 INFO [12246]: COREGRADE is starting... -- 06:28:54.538 INFO [12246]: Version from config: 1.0 -- 06:28:54.538 DEBUG [12246]: Connecting to database... -- 06:28:54.539 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:54.539 SQL [12246]: pgsql_db_connect() -- 06:28:54.542 DEBUG [12246]: Database connection successful -- 06:28:54.542 INFO [12246]: _SERVER found -- 06:28:54.542 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 06:28:54.542 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:54.542 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:54.542 INFO [12246]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 06:28:54.542 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:54.554 INFO [12246]: COREGRADE is stopping... -- 06:28:54.554 DEBUG [12246]: Closing database connection -- 06:28:54.554 SQL [12246]: pgsql_close() -- 06:28:54.620 INFO [12246]: COREGRADE is starting... -- 06:28:54.620 INFO [12246]: Version from config: 1.0 -- 06:28:54.620 DEBUG [12246]: Connecting to database... -- 06:28:54.620 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:54.620 SQL [12246]: pgsql_db_connect() -- 06:28:54.624 DEBUG [12246]: Database connection successful -- 06:28:54.624 INFO [12246]: _SERVER found -- 06:28:54.624 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 06:28:54.624 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:54.624 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:54.624 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 06:28:54.624 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:54.636 INFO [12246]: COREGRADE is stopping... -- 06:28:54.636 DEBUG [12246]: Closing database connection -- 06:28:54.636 SQL [12246]: pgsql_close() -- 06:28:54.701 INFO [12246]: COREGRADE is starting... -- 06:28:54.702 INFO [12246]: Version from config: 1.0 -- 06:28:54.702 DEBUG [12246]: Connecting to database... -- 06:28:54.702 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:54.702 SQL [12246]: pgsql_db_connect() -- 06:28:54.706 DEBUG [12246]: Database connection successful -- 06:28:54.706 INFO [12246]: _SERVER found -- 06:28:54.706 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 06:28:54.706 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:54.706 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:54.706 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 06:28:54.706 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:54.717 INFO [12246]: COREGRADE is stopping... -- 06:28:54.717 DEBUG [12246]: Closing database connection -- 06:28:54.717 SQL [12246]: pgsql_close() -- 06:28:54.783 INFO [12246]: COREGRADE is starting... -- 06:28:54.783 INFO [12246]: Version from config: 1.0 -- 06:28:54.783 DEBUG [12246]: Connecting to database... -- 06:28:54.783 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:54.783 SQL [12246]: pgsql_db_connect() -- 06:28:54.787 DEBUG [12246]: Database connection successful -- 06:28:54.787 INFO [12246]: _SERVER found -- 06:28:54.787 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 06:28:54.787 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:54.787 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:54.787 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 06:28:54.787 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:54.798 INFO [12246]: COREGRADE is stopping... -- 06:28:54.798 DEBUG [12246]: Closing database connection -- 06:28:54.798 SQL [12246]: pgsql_close() -- 06:28:54.864 INFO [12246]: COREGRADE is starting... -- 06:28:54.865 INFO [12246]: Version from config: 1.0 -- 06:28:54.865 DEBUG [12246]: Connecting to database... -- 06:28:54.865 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:54.865 SQL [12246]: pgsql_db_connect() -- 06:28:54.869 DEBUG [12246]: Database connection successful -- 06:28:54.869 INFO [12246]: _SERVER found -- 06:28:54.869 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 06:28:54.869 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:54.869 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:54.869 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 06:28:54.869 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:54.880 INFO [12246]: COREGRADE is stopping... -- 06:28:54.880 DEBUG [12246]: Closing database connection -- 06:28:54.880 SQL [12246]: pgsql_close() -- 06:28:54.957 INFO [12246]: COREGRADE is starting... -- 06:28:54.957 INFO [12246]: Version from config: 1.0 -- 06:28:54.957 DEBUG [12246]: Connecting to database... -- 06:28:54.957 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:54.957 SQL [12246]: pgsql_db_connect() -- 06:28:54.961 DEBUG [12246]: Database connection successful -- 06:28:54.961 INFO [12246]: _SERVER found -- 06:28:54.961 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 06:28:54.961 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:54.961 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:54.961 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 06:28:54.961 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:54.973 INFO [12246]: COREGRADE is stopping... -- 06:28:54.973 DEBUG [12246]: Closing database connection -- 06:28:54.973 SQL [12246]: pgsql_close() -- 06:28:55.039 INFO [12246]: COREGRADE is starting... -- 06:28:55.039 INFO [12246]: Version from config: 1.0 -- 06:28:55.039 DEBUG [12246]: Connecting to database... -- 06:28:55.040 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:55.040 SQL [12246]: pgsql_db_connect() -- 06:28:55.044 DEBUG [12246]: Database connection successful -- 06:28:55.044 INFO [12246]: _SERVER found -- 06:28:55.044 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 06:28:55.044 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:55.044 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:55.044 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 06:28:55.044 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:55.055 INFO [12246]: COREGRADE is stopping... -- 06:28:55.055 DEBUG [12246]: Closing database connection -- 06:28:55.055 SQL [12246]: pgsql_close() -- 06:28:55.123 INFO [12246]: COREGRADE is starting... -- 06:28:55.123 INFO [12246]: Version from config: 1.0 -- 06:28:55.123 DEBUG [12246]: Connecting to database... -- 06:28:55.123 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:28:55.123 SQL [12246]: pgsql_db_connect() -- 06:28:55.127 DEBUG [12246]: Database connection successful -- 06:28:55.127 INFO [12246]: _SERVER found -- 06:28:55.127 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 06:28:55.127 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:28:55.127 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:28:55.127 INFO [12246]: QUERY_STRING = /assets/customjs/general.js -- 06:28:55.127 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:28:55.139 INFO [12246]: COREGRADE is stopping... -- 06:28:55.139 DEBUG [12246]: Closing database connection -- 06:28:55.139 SQL [12246]: pgsql_close() -- 06:48:55.358 INFO [12249]: COREGRADE is starting... -- 06:48:55.359 INFO [12249]: Version from config: 1.0 -- 06:48:55.359 DEBUG [12249]: Connecting to database... -- 06:48:55.359 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:55.359 SQL [12249]: pgsql_db_connect() -- 06:48:55.363 DEBUG [12249]: Database connection successful -- 06:48:55.363 INFO [12249]: _SERVER found -- 06:48:55.363 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 06:48:55.363 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:55.363 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=oc82i7u6g2t95jtfpi2qvpt0pe98tcoo -- 06:48:55.363 INFO [12249]: QUERY_STRING = /logout -- 06:48:55.363 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:55.397 INFO [12249]: COREGRADE is stopping... -- 06:48:55.397 DEBUG [12249]: Closing database connection -- 06:48:55.397 SQL [12249]: pgsql_close() -- 06:48:55.475 INFO [12249]: COREGRADE is starting... -- 06:48:55.475 INFO [12249]: Version from config: 1.0 -- 06:48:55.475 DEBUG [12249]: Connecting to database... -- 06:48:55.475 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:55.475 SQL [12249]: pgsql_db_connect() -- 06:48:55.479 DEBUG [12249]: Database connection successful -- 06:48:55.479 INFO [12249]: _SERVER found -- 06:48:55.479 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 06:48:55.479 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:55.479 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:55.479 INFO [12249]: QUERY_STRING = /start -- 06:48:55.479 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:55.513 INFO [12249]: COREGRADE is stopping... -- 06:48:55.513 DEBUG [12249]: Closing database connection -- 06:48:55.513 SQL [12249]: pgsql_close() -- 06:48:55.642 INFO [12250]: COREGRADE is starting... -- 06:48:55.642 INFO [12250]: Version from config: 1.0 -- 06:48:55.642 DEBUG [12250]: Connecting to database... -- 06:48:55.642 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:55.642 SQL [12250]: pgsql_db_connect() -- 06:48:55.647 DEBUG [12250]: Database connection successful -- 06:48:55.647 INFO [12250]: _SERVER found -- 06:48:55.647 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 06:48:55.647 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:55.647 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:55.647 INFO [12250]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 06:48:55.647 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:55.660 INFO [12250]: COREGRADE is stopping... -- 06:48:55.660 DEBUG [12250]: Closing database connection -- 06:48:55.660 SQL [12250]: pgsql_close() -- 06:48:55.660 INFO [12249]: COREGRADE is starting... -- 06:48:55.661 INFO [12249]: Version from config: 1.0 -- 06:48:55.661 DEBUG [12249]: Connecting to database... -- 06:48:55.661 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:55.661 SQL [12249]: pgsql_db_connect() -- 06:48:55.665 DEBUG [12249]: Database connection successful -- 06:48:55.665 INFO [12249]: _SERVER found -- 06:48:55.665 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 06:48:55.665 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:55.665 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:55.665 INFO [12249]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 06:48:55.665 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:55.676 INFO [12249]: COREGRADE is stopping... -- 06:48:55.676 DEBUG [12249]: Closing database connection -- 06:48:55.676 SQL [12249]: pgsql_close() -- 06:48:55.710 INFO [12347]: COREGRADE is starting... -- 06:48:55.710 INFO [12347]: Version from config: 1.0 -- 06:48:55.710 DEBUG [12347]: Connecting to database... -- 06:48:55.710 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:55.710 SQL [12347]: pgsql_db_connect() -- 06:48:55.714 DEBUG [12347]: Database connection successful -- 06:48:55.714 INFO [12347]: _SERVER found -- 06:48:55.714 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 06:48:55.714 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:55.714 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:55.714 INFO [12347]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 06:48:55.714 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:55.727 INFO [12347]: COREGRADE is stopping... -- 06:48:55.728 DEBUG [12347]: Closing database connection -- 06:48:55.728 SQL [12347]: pgsql_close() -- 06:48:55.743 INFO [12249]: COREGRADE is starting... -- 06:48:55.743 INFO [12250]: COREGRADE is starting... -- 06:48:55.743 INFO [12249]: Version from config: 1.0 -- 06:48:55.743 DEBUG [12249]: Connecting to database... -- 06:48:55.743 INFO [12250]: Version from config: 1.0 -- 06:48:55.743 DEBUG [12250]: Connecting to database... -- 06:48:55.743 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:55.743 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:55.743 SQL [12249]: pgsql_db_connect() -- 06:48:55.743 SQL [12250]: pgsql_db_connect() -- 06:48:55.747 DEBUG [12249]: Database connection successful -- 06:48:55.747 INFO [12249]: _SERVER found -- 06:48:55.747 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 06:48:55.747 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:55.747 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:55.747 INFO [12249]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 06:48:55.747 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:55.759 INFO [12249]: COREGRADE is stopping... -- 06:48:55.747 DEBUG [12250]: Database connection successful -- 06:48:55.747 INFO [12250]: _SERVER found -- 06:48:55.747 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 06:48:55.747 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:55.747 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:55.747 INFO [12250]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 06:48:55.747 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:55.759 INFO [12250]: COREGRADE is stopping... -- 06:48:55.759 DEBUG [12249]: Closing database connection -- 06:48:55.759 DEBUG [12250]: Closing database connection -- 06:48:55.759 SQL [12249]: pgsql_close() -- 06:48:55.759 SQL [12250]: pgsql_close() -- 06:48:55.808 INFO [12347]: COREGRADE is starting... -- 06:48:55.808 INFO [12347]: Version from config: 1.0 -- 06:48:55.808 DEBUG [12347]: Connecting to database... -- 06:48:55.808 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:55.808 SQL [12347]: pgsql_db_connect() -- 06:48:55.812 DEBUG [12347]: Database connection successful -- 06:48:55.813 INFO [12347]: _SERVER found -- 06:48:55.813 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 06:48:55.813 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:55.813 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:55.813 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 06:48:55.813 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:55.824 INFO [12347]: COREGRADE is stopping... -- 06:48:55.824 DEBUG [12347]: Closing database connection -- 06:48:55.824 SQL [12347]: pgsql_close() -- 06:48:55.826 INFO [12249]: COREGRADE is starting... -- 06:48:55.826 INFO [12249]: Version from config: 1.0 -- 06:48:55.826 DEBUG [12249]: Connecting to database... -- 06:48:55.827 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:55.827 SQL [12249]: pgsql_db_connect() -- 06:48:55.841 INFO [12250]: COREGRADE is starting... -- 06:48:55.842 INFO [12250]: Version from config: 1.0 -- 06:48:55.842 DEBUG [12250]: Connecting to database... -- 06:48:55.842 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:55.842 SQL [12250]: pgsql_db_connect() -- 06:48:55.830 DEBUG [12249]: Database connection successful -- 06:48:55.830 INFO [12249]: _SERVER found -- 06:48:55.830 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 06:48:55.830 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:55.830 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:55.830 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 06:48:55.830 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:55.842 INFO [12249]: COREGRADE is stopping... -- 06:48:55.842 DEBUG [12249]: Closing database connection -- 06:48:55.842 SQL [12249]: pgsql_close() -- 06:48:55.846 DEBUG [12250]: Database connection successful -- 06:48:55.846 INFO [12250]: _SERVER found -- 06:48:55.846 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 06:48:55.846 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:55.846 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:55.846 INFO [12250]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 06:48:55.846 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:55.857 INFO [12250]: COREGRADE is stopping... -- 06:48:55.857 DEBUG [12250]: Closing database connection -- 06:48:55.857 SQL [12250]: pgsql_close() -- 06:48:55.904 INFO [12347]: COREGRADE is starting... -- 06:48:55.904 INFO [12347]: Version from config: 1.0 -- 06:48:55.904 DEBUG [12347]: Connecting to database... -- 06:48:55.904 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:55.904 SQL [12347]: pgsql_db_connect() -- 06:48:55.907 INFO [12249]: COREGRADE is starting... -- 06:48:55.907 INFO [12249]: Version from config: 1.0 -- 06:48:55.907 DEBUG [12249]: Connecting to database... -- 06:48:55.907 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:55.907 SQL [12249]: pgsql_db_connect() -- 06:48:55.908 DEBUG [12347]: Database connection successful -- 06:48:55.908 INFO [12347]: _SERVER found -- 06:48:55.908 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 06:48:55.908 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:55.908 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:55.908 INFO [12347]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 06:48:55.908 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:55.919 INFO [12347]: COREGRADE is stopping... -- 06:48:55.920 DEBUG [12347]: Closing database connection -- 06:48:55.920 SQL [12347]: pgsql_close() -- 06:48:55.911 DEBUG [12249]: Database connection successful -- 06:48:55.911 INFO [12249]: _SERVER found -- 06:48:55.911 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 06:48:55.911 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:55.911 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:55.911 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 06:48:55.911 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:55.922 INFO [12249]: COREGRADE is stopping... -- 06:48:55.922 DEBUG [12249]: Closing database connection -- 06:48:55.922 SQL [12249]: pgsql_close() -- 06:48:55.939 INFO [12250]: COREGRADE is starting... -- 06:48:55.939 INFO [12250]: Version from config: 1.0 -- 06:48:55.939 DEBUG [12250]: Connecting to database... -- 06:48:55.939 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:55.939 SQL [12250]: pgsql_db_connect() -- 06:48:55.943 DEBUG [12250]: Database connection successful -- 06:48:55.943 INFO [12250]: _SERVER found -- 06:48:55.943 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 06:48:55.943 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:55.943 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:55.943 INFO [12250]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 06:48:55.943 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:55.954 INFO [12250]: COREGRADE is stopping... -- 06:48:55.954 DEBUG [12250]: Closing database connection -- 06:48:55.954 SQL [12250]: pgsql_close() -- 06:48:55.988 INFO [12249]: COREGRADE is starting... -- 06:48:55.988 INFO [12249]: Version from config: 1.0 -- 06:48:55.988 DEBUG [12249]: Connecting to database... -- 06:48:55.988 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:55.988 SQL [12249]: pgsql_db_connect() -- 06:48:55.999 INFO [12347]: COREGRADE is starting... -- 06:48:55.000 INFO [12347]: Version from config: 1.0 -- 06:48:55.000 DEBUG [12347]: Connecting to database... -- 06:48:55.000 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:55.000 SQL [12347]: pgsql_db_connect() -- 06:48:55.992 DEBUG [12249]: Database connection successful -- 06:48:55.992 INFO [12249]: _SERVER found -- 06:48:55.992 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 06:48:55.992 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:55.992 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:55.992 INFO [12249]: QUERY_STRING = /assets/js/pages/dashboard.js -- 06:48:55.992 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:56.003 INFO [12249]: COREGRADE is stopping... -- 06:48:56.003 DEBUG [12249]: Closing database connection -- 06:48:56.003 SQL [12249]: pgsql_close() -- 06:48:56.004 DEBUG [12347]: Database connection successful -- 06:48:56.004 INFO [12347]: _SERVER found -- 06:48:56.004 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 06:48:56.004 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:56.004 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:56.004 INFO [12347]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 06:48:56.004 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:56.015 INFO [12347]: COREGRADE is stopping... -- 06:48:56.015 DEBUG [12347]: Closing database connection -- 06:48:56.015 SQL [12347]: pgsql_close() -- 06:48:56.026 INFO [12250]: COREGRADE is starting... -- 06:48:56.027 INFO [12250]: Version from config: 1.0 -- 06:48:56.027 DEBUG [12250]: Connecting to database... -- 06:48:56.027 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:56.027 SQL [12250]: pgsql_db_connect() -- 06:48:56.031 DEBUG [12250]: Database connection successful -- 06:48:56.031 INFO [12250]: _SERVER found -- 06:48:56.031 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 06:48:56.031 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:56.031 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:56.031 INFO [12250]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 06:48:56.031 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:56.042 INFO [12250]: COREGRADE is stopping... -- 06:48:56.042 DEBUG [12250]: Closing database connection -- 06:48:56.042 SQL [12250]: pgsql_close() -- 06:48:56.069 INFO [12249]: COREGRADE is starting... -- 06:48:56.069 INFO [12249]: Version from config: 1.0 -- 06:48:56.069 DEBUG [12249]: Connecting to database... -- 06:48:56.069 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:56.069 SQL [12249]: pgsql_db_connect() -- 06:48:56.073 DEBUG [12249]: Database connection successful -- 06:48:56.073 INFO [12249]: _SERVER found -- 06:48:56.073 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 06:48:56.073 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:56.073 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:56.073 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 06:48:56.073 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:56.084 INFO [12249]: COREGRADE is stopping... -- 06:48:56.084 DEBUG [12249]: Closing database connection -- 06:48:56.084 SQL [12249]: pgsql_close() -- 06:48:56.085 INFO [12347]: COREGRADE is starting... -- 06:48:56.085 INFO [12347]: Version from config: 1.0 -- 06:48:56.085 DEBUG [12347]: Connecting to database... -- 06:48:56.085 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:56.085 SQL [12347]: pgsql_db_connect() -- 06:48:56.089 DEBUG [12347]: Database connection successful -- 06:48:56.089 INFO [12347]: _SERVER found -- 06:48:56.089 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 06:48:56.089 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:56.089 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:56.089 INFO [12347]: QUERY_STRING = /assets/js/pages/picker_date.js -- 06:48:56.089 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:56.100 INFO [12347]: COREGRADE is stopping... -- 06:48:56.100 DEBUG [12347]: Closing database connection -- 06:48:56.100 SQL [12347]: pgsql_close() -- 06:48:56.114 INFO [12250]: COREGRADE is starting... -- 06:48:56.114 INFO [12250]: Version from config: 1.0 -- 06:48:56.114 DEBUG [12250]: Connecting to database... -- 06:48:56.114 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:56.114 SQL [12250]: pgsql_db_connect() -- 06:48:56.118 DEBUG [12250]: Database connection successful -- 06:48:56.118 INFO [12250]: _SERVER found -- 06:48:56.118 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 06:48:56.118 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:56.118 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:56.118 INFO [12250]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 06:48:56.118 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:56.129 INFO [12250]: COREGRADE is stopping... -- 06:48:56.129 DEBUG [12250]: Closing database connection -- 06:48:56.129 SQL [12250]: pgsql_close() -- 06:48:56.150 INFO [12249]: COREGRADE is starting... -- 06:48:56.150 INFO [12249]: Version from config: 1.0 -- 06:48:56.150 DEBUG [12249]: Connecting to database... -- 06:48:56.150 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:56.150 SQL [12249]: pgsql_db_connect() -- 06:48:56.154 DEBUG [12249]: Database connection successful -- 06:48:56.154 INFO [12249]: _SERVER found -- 06:48:56.154 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 06:48:56.154 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:56.154 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:56.154 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 06:48:56.154 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:56.165 INFO [12249]: COREGRADE is stopping... -- 06:48:56.165 DEBUG [12249]: Closing database connection -- 06:48:56.165 SQL [12249]: pgsql_close() -- 06:48:56.170 INFO [12347]: COREGRADE is starting... -- 06:48:56.170 INFO [12347]: Version from config: 1.0 -- 06:48:56.170 DEBUG [12347]: Connecting to database... -- 06:48:56.170 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:56.170 SQL [12347]: pgsql_db_connect() -- 06:48:56.174 DEBUG [12347]: Database connection successful -- 06:48:56.174 INFO [12347]: _SERVER found -- 06:48:56.174 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 06:48:56.174 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:56.174 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:56.174 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 06:48:56.174 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:56.185 INFO [12347]: COREGRADE is stopping... -- 06:48:56.185 DEBUG [12347]: Closing database connection -- 06:48:56.185 SQL [12347]: pgsql_close() -- 06:48:56.200 INFO [12250]: COREGRADE is starting... -- 06:48:56.200 INFO [12250]: Version from config: 1.0 -- 06:48:56.200 DEBUG [12250]: Connecting to database... -- 06:48:56.200 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:56.200 SQL [12250]: pgsql_db_connect() -- 06:48:56.204 DEBUG [12250]: Database connection successful -- 06:48:56.204 INFO [12250]: _SERVER found -- 06:48:56.204 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 06:48:56.204 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:56.204 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:56.204 INFO [12250]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 06:48:56.204 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:56.216 INFO [12250]: COREGRADE is stopping... -- 06:48:56.216 DEBUG [12250]: Closing database connection -- 06:48:56.216 SQL [12250]: pgsql_close() -- 06:48:56.231 INFO [12249]: COREGRADE is starting... -- 06:48:56.231 INFO [12249]: Version from config: 1.0 -- 06:48:56.231 DEBUG [12249]: Connecting to database... -- 06:48:56.231 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:56.231 SQL [12249]: pgsql_db_connect() -- 06:48:56.235 DEBUG [12249]: Database connection successful -- 06:48:56.235 INFO [12249]: _SERVER found -- 06:48:56.235 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 06:48:56.235 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:56.235 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:56.235 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 06:48:56.235 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:56.246 INFO [12249]: COREGRADE is stopping... -- 06:48:56.246 DEBUG [12249]: Closing database connection -- 06:48:56.246 SQL [12249]: pgsql_close() -- 06:48:56.254 INFO [12347]: COREGRADE is starting... -- 06:48:56.254 INFO [12347]: Version from config: 1.0 -- 06:48:56.254 DEBUG [12347]: Connecting to database... -- 06:48:56.254 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:56.254 SQL [12347]: pgsql_db_connect() -- 06:48:56.258 DEBUG [12347]: Database connection successful -- 06:48:56.258 INFO [12347]: _SERVER found -- 06:48:56.258 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 06:48:56.258 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:56.258 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:56.258 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 06:48:56.258 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:56.269 INFO [12347]: COREGRADE is stopping... -- 06:48:56.269 DEBUG [12347]: Closing database connection -- 06:48:56.269 SQL [12347]: pgsql_close() -- 06:48:56.286 INFO [12250]: COREGRADE is starting... -- 06:48:56.286 INFO [12250]: Version from config: 1.0 -- 06:48:56.286 DEBUG [12250]: Connecting to database... -- 06:48:56.286 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:56.286 SQL [12250]: pgsql_db_connect() -- 06:48:56.290 DEBUG [12250]: Database connection successful -- 06:48:56.290 INFO [12250]: _SERVER found -- 06:48:56.290 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 06:48:56.290 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:56.290 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:56.290 INFO [12250]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 06:48:56.290 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:56.302 INFO [12250]: COREGRADE is stopping... -- 06:48:56.302 DEBUG [12250]: Closing database connection -- 06:48:56.302 SQL [12250]: pgsql_close() -- 06:48:56.311 INFO [12249]: COREGRADE is starting... -- 06:48:56.311 INFO [12249]: Version from config: 1.0 -- 06:48:56.311 DEBUG [12249]: Connecting to database... -- 06:48:56.311 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:56.311 SQL [12249]: pgsql_db_connect() -- 06:48:56.315 DEBUG [12249]: Database connection successful -- 06:48:56.315 INFO [12249]: _SERVER found -- 06:48:56.315 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 06:48:56.315 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:56.315 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:56.315 INFO [12249]: QUERY_STRING = /assets/customjs/general.js -- 06:48:56.315 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:56.327 INFO [12249]: COREGRADE is stopping... -- 06:48:56.327 DEBUG [12249]: Closing database connection -- 06:48:56.327 SQL [12249]: pgsql_close() -- 06:48:56.338 INFO [12347]: COREGRADE is starting... -- 06:48:56.338 INFO [12347]: Version from config: 1.0 -- 06:48:56.338 DEBUG [12347]: Connecting to database... -- 06:48:56.338 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:56.338 SQL [12347]: pgsql_db_connect() -- 06:48:56.342 DEBUG [12347]: Database connection successful -- 06:48:56.342 INFO [12347]: _SERVER found -- 06:48:56.342 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 06:48:56.342 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:56.342 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:56.342 INFO [12347]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 06:48:56.342 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:56.353 INFO [12347]: COREGRADE is stopping... -- 06:48:56.353 DEBUG [12347]: Closing database connection -- 06:48:56.353 SQL [12347]: pgsql_close() -- 06:48:56.425 INFO [12347]: COREGRADE is starting... -- 06:48:56.425 INFO [12347]: Version from config: 1.0 -- 06:48:56.425 DEBUG [12347]: Connecting to database... -- 06:48:56.425 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:56.425 SQL [12347]: pgsql_db_connect() -- 06:48:56.429 DEBUG [12347]: Database connection successful -- 06:48:56.429 INFO [12347]: _SERVER found -- 06:48:56.429 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 06:48:56.429 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:56.429 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:56.429 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 06:48:56.429 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:56.441 INFO [12347]: COREGRADE is stopping... -- 06:48:56.441 DEBUG [12347]: Closing database connection -- 06:48:56.441 SQL [12347]: pgsql_close() -- 06:48:56.510 INFO [12347]: COREGRADE is starting... -- 06:48:56.510 INFO [12347]: Version from config: 1.0 -- 06:48:56.510 DEBUG [12347]: Connecting to database... -- 06:48:56.510 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:56.510 SQL [12347]: pgsql_db_connect() -- 06:48:56.514 DEBUG [12347]: Database connection successful -- 06:48:56.514 INFO [12347]: _SERVER found -- 06:48:56.514 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 06:48:56.514 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:56.514 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:56.514 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 06:48:56.514 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:56.526 INFO [12347]: COREGRADE is stopping... -- 06:48:56.526 DEBUG [12347]: Closing database connection -- 06:48:56.526 SQL [12347]: pgsql_close() -- 06:48:56.594 INFO [12347]: COREGRADE is starting... -- 06:48:56.595 INFO [12347]: Version from config: 1.0 -- 06:48:56.595 DEBUG [12347]: Connecting to database... -- 06:48:56.595 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:56.595 SQL [12347]: pgsql_db_connect() -- 06:48:56.599 DEBUG [12347]: Database connection successful -- 06:48:56.599 INFO [12347]: _SERVER found -- 06:48:56.599 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 06:48:56.599 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:56.599 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:56.599 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 06:48:56.599 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:56.610 INFO [12347]: COREGRADE is stopping... -- 06:48:56.610 DEBUG [12347]: Closing database connection -- 06:48:56.610 SQL [12347]: pgsql_close() -- 06:48:56.679 INFO [12347]: COREGRADE is starting... -- 06:48:56.679 INFO [12347]: Version from config: 1.0 -- 06:48:56.679 DEBUG [12347]: Connecting to database... -- 06:48:56.679 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:56.679 SQL [12347]: pgsql_db_connect() -- 06:48:56.683 DEBUG [12347]: Database connection successful -- 06:48:56.683 INFO [12347]: _SERVER found -- 06:48:56.683 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 06:48:56.683 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:56.683 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:56.683 INFO [12347]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 06:48:56.683 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:56.695 INFO [12347]: COREGRADE is stopping... -- 06:48:56.695 DEBUG [12347]: Closing database connection -- 06:48:56.695 SQL [12347]: pgsql_close() -- 06:48:56.763 INFO [12347]: COREGRADE is starting... -- 06:48:56.764 INFO [12347]: Version from config: 1.0 -- 06:48:56.764 DEBUG [12347]: Connecting to database... -- 06:48:56.764 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:56.764 SQL [12347]: pgsql_db_connect() -- 06:48:56.768 DEBUG [12347]: Database connection successful -- 06:48:56.768 INFO [12347]: _SERVER found -- 06:48:56.768 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 06:48:56.768 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:56.768 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:56.768 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 06:48:56.768 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:56.779 INFO [12347]: COREGRADE is stopping... -- 06:48:56.779 DEBUG [12347]: Closing database connection -- 06:48:56.779 SQL [12347]: pgsql_close() -- 06:48:56.848 INFO [12347]: COREGRADE is starting... -- 06:48:56.848 INFO [12347]: Version from config: 1.0 -- 06:48:56.848 DEBUG [12347]: Connecting to database... -- 06:48:56.848 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:56.848 SQL [12347]: pgsql_db_connect() -- 06:48:56.852 DEBUG [12347]: Database connection successful -- 06:48:56.852 INFO [12347]: _SERVER found -- 06:48:56.852 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 06:48:56.852 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:56.852 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:56.852 INFO [12347]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 06:48:56.852 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:56.864 INFO [12347]: COREGRADE is stopping... -- 06:48:56.864 DEBUG [12347]: Closing database connection -- 06:48:56.864 SQL [12347]: pgsql_close() -- 06:48:56.933 INFO [12347]: COREGRADE is starting... -- 06:48:56.934 INFO [12347]: Version from config: 1.0 -- 06:48:56.934 DEBUG [12347]: Connecting to database... -- 06:48:56.934 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:56.934 SQL [12347]: pgsql_db_connect() -- 06:48:56.938 DEBUG [12347]: Database connection successful -- 06:48:56.938 INFO [12347]: _SERVER found -- 06:48:56.938 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 06:48:56.938 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:56.938 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:56.938 INFO [12347]: QUERY_STRING = /assets/js/pages/dashboard.js -- 06:48:56.938 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:56.950 INFO [12347]: COREGRADE is stopping... -- 06:48:56.950 DEBUG [12347]: Closing database connection -- 06:48:56.950 SQL [12347]: pgsql_close() -- 06:48:57.020 INFO [12347]: COREGRADE is starting... -- 06:48:57.020 INFO [12347]: Version from config: 1.0 -- 06:48:57.020 DEBUG [12347]: Connecting to database... -- 06:48:57.020 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:57.020 SQL [12347]: pgsql_db_connect() -- 06:48:57.024 DEBUG [12347]: Database connection successful -- 06:48:57.024 INFO [12347]: _SERVER found -- 06:48:57.024 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 06:48:57.024 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:57.024 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:57.024 INFO [12347]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 06:48:57.024 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:57.035 INFO [12347]: COREGRADE is stopping... -- 06:48:57.035 DEBUG [12347]: Closing database connection -- 06:48:57.035 SQL [12347]: pgsql_close() -- 06:48:57.105 INFO [12347]: COREGRADE is starting... -- 06:48:57.105 INFO [12347]: Version from config: 1.0 -- 06:48:57.105 DEBUG [12347]: Connecting to database... -- 06:48:57.105 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:57.105 SQL [12347]: pgsql_db_connect() -- 06:48:57.109 DEBUG [12347]: Database connection successful -- 06:48:57.109 INFO [12347]: _SERVER found -- 06:48:57.109 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 06:48:57.109 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:57.109 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:57.109 INFO [12347]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 06:48:57.109 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:57.120 INFO [12347]: COREGRADE is stopping... -- 06:48:57.120 DEBUG [12347]: Closing database connection -- 06:48:57.120 SQL [12347]: pgsql_close() -- 06:48:57.190 INFO [12347]: COREGRADE is starting... -- 06:48:57.190 INFO [12347]: Version from config: 1.0 -- 06:48:57.190 DEBUG [12347]: Connecting to database... -- 06:48:57.190 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:57.190 SQL [12347]: pgsql_db_connect() -- 06:48:57.194 DEBUG [12347]: Database connection successful -- 06:48:57.194 INFO [12347]: _SERVER found -- 06:48:57.194 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 06:48:57.194 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:57.194 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:57.194 INFO [12347]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 06:48:57.194 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:57.206 INFO [12347]: COREGRADE is stopping... -- 06:48:57.206 DEBUG [12347]: Closing database connection -- 06:48:57.206 SQL [12347]: pgsql_close() -- 06:48:57.275 INFO [12347]: COREGRADE is starting... -- 06:48:57.276 INFO [12347]: Version from config: 1.0 -- 06:48:57.276 DEBUG [12347]: Connecting to database... -- 06:48:57.276 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:57.276 SQL [12347]: pgsql_db_connect() -- 06:48:57.280 DEBUG [12347]: Database connection successful -- 06:48:57.280 INFO [12347]: _SERVER found -- 06:48:57.280 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 06:48:57.280 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:57.280 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:57.280 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 06:48:57.280 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:57.291 INFO [12347]: COREGRADE is stopping... -- 06:48:57.291 DEBUG [12347]: Closing database connection -- 06:48:57.291 SQL [12347]: pgsql_close() -- 06:48:57.361 INFO [12347]: COREGRADE is starting... -- 06:48:57.361 INFO [12347]: Version from config: 1.0 -- 06:48:57.361 DEBUG [12347]: Connecting to database... -- 06:48:57.361 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:57.361 SQL [12347]: pgsql_db_connect() -- 06:48:57.365 DEBUG [12347]: Database connection successful -- 06:48:57.365 INFO [12347]: _SERVER found -- 06:48:57.365 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 06:48:57.365 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:57.365 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:57.365 INFO [12347]: QUERY_STRING = /assets/js/pages/picker_date.js -- 06:48:57.365 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:57.377 INFO [12347]: COREGRADE is stopping... -- 06:48:57.377 DEBUG [12347]: Closing database connection -- 06:48:57.377 SQL [12347]: pgsql_close() -- 06:48:57.446 INFO [12347]: COREGRADE is starting... -- 06:48:57.447 INFO [12347]: Version from config: 1.0 -- 06:48:57.447 DEBUG [12347]: Connecting to database... -- 06:48:57.447 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:57.447 SQL [12347]: pgsql_db_connect() -- 06:48:57.451 DEBUG [12347]: Database connection successful -- 06:48:57.451 INFO [12347]: _SERVER found -- 06:48:57.451 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 06:48:57.451 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:57.451 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:57.451 INFO [12347]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 06:48:57.451 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:57.463 INFO [12347]: COREGRADE is stopping... -- 06:48:57.463 DEBUG [12347]: Closing database connection -- 06:48:57.463 SQL [12347]: pgsql_close() -- 06:48:57.532 INFO [12347]: COREGRADE is starting... -- 06:48:57.533 INFO [12347]: Version from config: 1.0 -- 06:48:57.533 DEBUG [12347]: Connecting to database... -- 06:48:57.533 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:57.533 SQL [12347]: pgsql_db_connect() -- 06:48:57.537 DEBUG [12347]: Database connection successful -- 06:48:57.537 INFO [12347]: _SERVER found -- 06:48:57.537 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 06:48:57.537 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:57.537 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:57.537 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 06:48:57.537 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:57.551 INFO [12347]: COREGRADE is stopping... -- 06:48:57.551 DEBUG [12347]: Closing database connection -- 06:48:57.551 SQL [12347]: pgsql_close() -- 06:48:57.620 INFO [12347]: COREGRADE is starting... -- 06:48:57.620 INFO [12347]: Version from config: 1.0 -- 06:48:57.620 DEBUG [12347]: Connecting to database... -- 06:48:57.620 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:57.620 SQL [12347]: pgsql_db_connect() -- 06:48:57.624 DEBUG [12347]: Database connection successful -- 06:48:57.624 INFO [12347]: _SERVER found -- 06:48:57.624 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 06:48:57.624 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:57.624 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:57.624 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 06:48:57.624 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:57.636 INFO [12347]: COREGRADE is stopping... -- 06:48:57.636 DEBUG [12347]: Closing database connection -- 06:48:57.636 SQL [12347]: pgsql_close() -- 06:48:57.705 INFO [12347]: COREGRADE is starting... -- 06:48:57.705 INFO [12347]: Version from config: 1.0 -- 06:48:57.705 DEBUG [12347]: Connecting to database... -- 06:48:57.705 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:57.705 SQL [12347]: pgsql_db_connect() -- 06:48:57.709 DEBUG [12347]: Database connection successful -- 06:48:57.709 INFO [12347]: _SERVER found -- 06:48:57.709 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 06:48:57.709 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:57.709 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:57.709 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 06:48:57.709 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:57.720 INFO [12347]: COREGRADE is stopping... -- 06:48:57.720 DEBUG [12347]: Closing database connection -- 06:48:57.720 SQL [12347]: pgsql_close() -- 06:48:57.790 INFO [12347]: COREGRADE is starting... -- 06:48:57.790 INFO [12347]: Version from config: 1.0 -- 06:48:57.790 DEBUG [12347]: Connecting to database... -- 06:48:57.790 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:57.790 SQL [12347]: pgsql_db_connect() -- 06:48:57.794 DEBUG [12347]: Database connection successful -- 06:48:57.794 INFO [12347]: _SERVER found -- 06:48:57.794 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 06:48:57.794 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:57.794 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:57.794 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 06:48:57.794 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:57.805 INFO [12347]: COREGRADE is stopping... -- 06:48:57.805 DEBUG [12347]: Closing database connection -- 06:48:57.805 SQL [12347]: pgsql_close() -- 06:48:57.885 INFO [12347]: COREGRADE is starting... -- 06:48:57.885 INFO [12347]: Version from config: 1.0 -- 06:48:57.885 DEBUG [12347]: Connecting to database... -- 06:48:57.885 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:57.885 SQL [12347]: pgsql_db_connect() -- 06:48:57.889 DEBUG [12347]: Database connection successful -- 06:48:57.889 INFO [12347]: _SERVER found -- 06:48:57.889 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 06:48:57.889 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:57.889 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:57.889 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 06:48:57.889 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:57.900 INFO [12347]: COREGRADE is stopping... -- 06:48:57.900 DEBUG [12347]: Closing database connection -- 06:48:57.900 SQL [12347]: pgsql_close() -- 06:48:57.975 INFO [12347]: COREGRADE is starting... -- 06:48:57.976 INFO [12347]: Version from config: 1.0 -- 06:48:57.976 DEBUG [12347]: Connecting to database... -- 06:48:57.976 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:57.976 SQL [12347]: pgsql_db_connect() -- 06:48:57.980 DEBUG [12347]: Database connection successful -- 06:48:57.980 INFO [12347]: _SERVER found -- 06:48:57.980 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 06:48:57.980 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:57.980 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:57.980 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 06:48:57.980 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:57.991 INFO [12347]: COREGRADE is stopping... -- 06:48:57.991 DEBUG [12347]: Closing database connection -- 06:48:57.991 SQL [12347]: pgsql_close() -- 06:48:58.062 INFO [12347]: COREGRADE is starting... -- 06:48:58.063 INFO [12347]: Version from config: 1.0 -- 06:48:58.063 DEBUG [12347]: Connecting to database... -- 06:48:58.063 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:48:58.063 SQL [12347]: pgsql_db_connect() -- 06:48:58.067 DEBUG [12347]: Database connection successful -- 06:48:58.067 INFO [12347]: _SERVER found -- 06:48:58.067 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 06:48:58.067 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 06:48:58.067 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 06:48:58.067 INFO [12347]: QUERY_STRING = /assets/customjs/general.js -- 06:48:58.067 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 06:48:58.078 INFO [12347]: COREGRADE is stopping... -- 06:48:58.078 DEBUG [12347]: Closing database connection -- 06:48:58.078 SQL [12347]: pgsql_close() -- 07:08:58.296 INFO [12305]: COREGRADE is starting... -- 07:08:58.296 INFO [12305]: Version from config: 1.0 -- 07:08:58.296 DEBUG [12305]: Connecting to database... -- 07:08:58.296 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:08:58.296 SQL [12305]: pgsql_db_connect() -- 07:08:58.301 DEBUG [12305]: Database connection successful -- 07:08:58.301 INFO [12305]: _SERVER found -- 07:08:58.301 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 07:08:58.301 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:08:58.301 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=m14bb8jg66s3ja6hemj81fn9q24l8b27 -- 07:08:58.301 INFO [12305]: QUERY_STRING = /logout -- 07:08:58.301 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:08:58.338 INFO [12305]: COREGRADE is stopping... -- 07:08:58.338 DEBUG [12305]: Closing database connection -- 07:08:58.338 SQL [12305]: pgsql_close() -- 07:08:58.416 INFO [12305]: COREGRADE is starting... -- 07:08:58.417 INFO [12305]: Version from config: 1.0 -- 07:08:58.417 DEBUG [12305]: Connecting to database... -- 07:08:58.417 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:08:58.417 SQL [12305]: pgsql_db_connect() -- 07:08:58.421 DEBUG [12305]: Database connection successful -- 07:08:58.421 INFO [12305]: _SERVER found -- 07:08:58.421 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 07:08:58.421 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:08:58.421 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:08:58.421 INFO [12305]: QUERY_STRING = /start -- 07:08:58.421 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:08:58.454 INFO [12305]: COREGRADE is stopping... -- 07:08:58.454 DEBUG [12305]: Closing database connection -- 07:08:58.454 SQL [12305]: pgsql_close() -- 07:08:58.582 INFO [12334]: COREGRADE is starting... -- 07:08:58.582 INFO [12334]: Version from config: 1.0 -- 07:08:58.582 DEBUG [12334]: Connecting to database... -- 07:08:58.582 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:08:58.582 SQL [12334]: pgsql_db_connect() -- 07:08:58.598 INFO [12305]: COREGRADE is starting... -- 07:08:58.599 INFO [12305]: Version from config: 1.0 -- 07:08:58.599 DEBUG [12305]: Connecting to database... -- 07:08:58.599 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:08:58.599 SQL [12305]: pgsql_db_connect() -- 07:08:58.587 DEBUG [12334]: Database connection successful -- 07:08:58.587 INFO [12334]: _SERVER found -- 07:08:58.587 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 07:08:58.587 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:08:58.587 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:08:58.587 INFO [12334]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 07:08:58.587 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:08:58.601 INFO [12334]: COREGRADE is stopping... -- 07:08:58.601 DEBUG [12334]: Closing database connection -- 07:08:58.601 SQL [12334]: pgsql_close() -- 07:08:58.603 DEBUG [12305]: Database connection successful -- 07:08:58.603 INFO [12305]: _SERVER found -- 07:08:58.603 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 07:08:58.603 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:08:58.603 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:08:58.603 INFO [12305]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 07:08:58.603 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:08:58.615 INFO [12305]: COREGRADE is stopping... -- 07:08:58.615 DEBUG [12305]: Closing database connection -- 07:08:58.615 SQL [12305]: pgsql_close() -- 07:08:58.653 INFO [12334]: COREGRADE is starting... -- 07:08:58.654 INFO [12334]: Version from config: 1.0 -- 07:08:58.654 DEBUG [12334]: Connecting to database... -- 07:08:58.654 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:08:58.654 SQL [12334]: pgsql_db_connect() -- 07:08:58.658 DEBUG [12334]: Database connection successful -- 07:08:58.658 INFO [12334]: _SERVER found -- 07:08:58.658 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 07:08:58.658 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:08:58.658 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:08:58.658 INFO [12334]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 07:08:58.658 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:08:58.669 INFO [12334]: COREGRADE is stopping... -- 07:08:58.669 DEBUG [12334]: Closing database connection -- 07:08:58.669 SQL [12334]: pgsql_close() -- 07:08:58.682 INFO [12305]: COREGRADE is starting... -- 07:08:58.682 INFO [12334]: COREGRADE is starting... -- 07:08:58.682 INFO [12305]: Version from config: 1.0 -- 07:08:58.682 DEBUG [12305]: Connecting to database... -- 07:08:58.682 INFO [12334]: Version from config: 1.0 -- 07:08:58.682 DEBUG [12334]: Connecting to database... -- 07:08:58.682 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:08:58.682 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:08:58.682 SQL [12305]: pgsql_db_connect() -- 07:08:58.682 SQL [12334]: pgsql_db_connect() -- 07:08:58.686 DEBUG [12334]: Database connection successful -- 07:08:58.686 INFO [12334]: _SERVER found -- 07:08:58.686 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 07:08:58.686 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:08:58.686 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:08:58.686 INFO [12334]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 07:08:58.686 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:08:58.698 INFO [12334]: COREGRADE is stopping... -- 07:08:58.686 DEBUG [12305]: Database connection successful -- 07:08:58.686 INFO [12305]: _SERVER found -- 07:08:58.686 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 07:08:58.686 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:08:58.686 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:08:58.686 INFO [12305]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 07:08:58.686 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:08:58.698 INFO [12305]: COREGRADE is stopping... -- 07:08:58.698 DEBUG [12334]: Closing database connection -- 07:08:58.698 DEBUG [12305]: Closing database connection -- 07:08:58.698 SQL [12334]: pgsql_close() -- 07:08:58.698 SQL [12305]: pgsql_close() -- 07:08:58.753 INFO [12334]: COREGRADE is starting... -- 07:08:58.753 INFO [12334]: Version from config: 1.0 -- 07:08:58.753 DEBUG [12334]: Connecting to database... -- 07:08:58.753 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:08:58.753 SQL [12334]: pgsql_db_connect() -- 07:08:58.763 INFO [12305]: COREGRADE is starting... -- 07:08:58.763 INFO [12305]: Version from config: 1.0 -- 07:08:58.763 DEBUG [12305]: Connecting to database... -- 07:08:58.763 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:08:58.763 SQL [12305]: pgsql_db_connect() -- 07:08:58.757 DEBUG [12334]: Database connection successful -- 07:08:58.757 INFO [12334]: _SERVER found -- 07:08:58.757 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 07:08:58.757 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:08:58.757 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:08:58.757 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 07:08:58.757 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:08:58.768 INFO [12334]: COREGRADE is stopping... -- 07:08:58.768 DEBUG [12334]: Closing database connection -- 07:08:58.768 SQL [12334]: pgsql_close() -- 07:08:58.779 INFO [12334]: COREGRADE is starting... -- 07:08:58.767 DEBUG [12305]: Database connection successful -- 07:08:58.767 INFO [12305]: _SERVER found -- 07:08:58.767 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 07:08:58.767 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:08:58.767 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:08:58.767 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 07:08:58.767 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:08:58.779 INFO [12305]: COREGRADE is stopping... -- 07:08:58.779 DEBUG [12305]: Closing database connection -- 07:08:58.779 SQL [12305]: pgsql_close() -- 07:08:58.779 INFO [12334]: Version from config: 1.0 -- 07:08:58.779 DEBUG [12334]: Connecting to database... -- 07:08:58.779 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:08:58.779 SQL [12334]: pgsql_db_connect() -- 07:08:58.783 DEBUG [12334]: Database connection successful -- 07:08:58.783 INFO [12334]: _SERVER found -- 07:08:58.783 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 07:08:58.783 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:08:58.783 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:08:58.783 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 07:08:58.783 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:08:58.795 INFO [12334]: COREGRADE is stopping... -- 07:08:58.795 DEBUG [12334]: Closing database connection -- 07:08:58.795 SQL [12334]: pgsql_close() -- 07:08:58.844 INFO [12305]: COREGRADE is starting... -- 07:08:58.844 INFO [12305]: Version from config: 1.0 -- 07:08:58.844 DEBUG [12305]: Connecting to database... -- 07:08:58.845 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:08:58.845 SQL [12305]: pgsql_db_connect() -- 07:08:58.850 INFO [12334]: COREGRADE is starting... -- 07:08:58.850 INFO [12334]: Version from config: 1.0 -- 07:08:58.850 DEBUG [12334]: Connecting to database... -- 07:08:58.850 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:08:58.850 SQL [12334]: pgsql_db_connect() -- 07:08:58.849 DEBUG [12305]: Database connection successful -- 07:08:58.849 INFO [12305]: _SERVER found -- 07:08:58.849 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 07:08:58.849 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:08:58.849 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:08:58.849 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 07:08:58.849 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:08:58.860 INFO [12305]: COREGRADE is stopping... -- 07:08:58.860 DEBUG [12305]: Closing database connection -- 07:08:58.860 SQL [12305]: pgsql_close() -- 07:08:58.854 DEBUG [12334]: Database connection successful -- 07:08:58.854 INFO [12334]: _SERVER found -- 07:08:58.854 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 07:08:58.854 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:08:58.854 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:08:58.854 INFO [12334]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 07:08:58.854 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:08:58.866 INFO [12334]: COREGRADE is stopping... -- 07:08:58.866 DEBUG [12334]: Closing database connection -- 07:08:58.866 SQL [12334]: pgsql_close() -- 07:08:58.875 INFO [12334]: COREGRADE is starting... -- 07:08:58.875 INFO [12334]: Version from config: 1.0 -- 07:08:58.875 DEBUG [12334]: Connecting to database... -- 07:08:58.875 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:08:58.875 SQL [12334]: pgsql_db_connect() -- 07:08:58.879 DEBUG [12334]: Database connection successful -- 07:08:58.879 INFO [12334]: _SERVER found -- 07:08:58.879 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 07:08:58.879 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:08:58.879 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:08:58.879 INFO [12334]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 07:08:58.879 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:08:58.890 INFO [12334]: COREGRADE is stopping... -- 07:08:58.890 DEBUG [12334]: Closing database connection -- 07:08:58.890 SQL [12334]: pgsql_close() -- 07:08:58.927 INFO [12305]: COREGRADE is starting... -- 07:08:58.927 INFO [12305]: Version from config: 1.0 -- 07:08:58.927 DEBUG [12305]: Connecting to database... -- 07:08:58.927 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:08:58.927 SQL [12305]: pgsql_db_connect() -- 07:08:58.931 DEBUG [12305]: Database connection successful -- 07:08:58.931 INFO [12305]: _SERVER found -- 07:08:58.931 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 07:08:58.931 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:08:58.931 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:08:58.931 INFO [12305]: QUERY_STRING = /assets/js/pages/dashboard.js -- 07:08:58.931 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:08:58.943 INFO [12305]: COREGRADE is stopping... -- 07:08:58.943 DEBUG [12305]: Closing database connection -- 07:08:58.943 SQL [12305]: pgsql_close() -- 07:08:58.946 INFO [12334]: COREGRADE is starting... -- 07:08:58.946 INFO [12334]: Version from config: 1.0 -- 07:08:58.946 DEBUG [12334]: Connecting to database... -- 07:08:58.946 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:08:58.946 SQL [12334]: pgsql_db_connect() -- 07:08:58.961 INFO [12248]: COREGRADE is starting... -- 07:08:58.961 INFO [12248]: Version from config: 1.0 -- 07:08:58.961 DEBUG [12248]: Connecting to database... -- 07:08:58.961 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:08:58.961 SQL [12248]: pgsql_db_connect() -- 07:08:58.950 DEBUG [12334]: Database connection successful -- 07:08:58.950 INFO [12334]: _SERVER found -- 07:08:58.950 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 07:08:58.950 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:08:58.950 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:08:58.950 INFO [12334]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 07:08:58.950 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:08:58.961 INFO [12334]: COREGRADE is stopping... -- 07:08:58.961 DEBUG [12334]: Closing database connection -- 07:08:58.961 SQL [12334]: pgsql_close() -- 07:08:58.966 DEBUG [12248]: Database connection successful -- 07:08:58.966 INFO [12248]: _SERVER found -- 07:08:58.966 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 07:08:58.966 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:08:58.966 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:08:58.966 INFO [12248]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 07:08:58.966 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:08:58.980 INFO [12248]: COREGRADE is stopping... -- 07:08:58.980 DEBUG [12248]: Closing database connection -- 07:08:58.980 SQL [12248]: pgsql_close() -- 07:08:59.009 INFO [12305]: COREGRADE is starting... -- 07:08:59.009 INFO [12305]: Version from config: 1.0 -- 07:08:59.009 DEBUG [12305]: Connecting to database... -- 07:08:59.009 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:08:59.009 SQL [12305]: pgsql_db_connect() -- 07:08:59.014 DEBUG [12305]: Database connection successful -- 07:08:59.014 INFO [12305]: _SERVER found -- 07:08:59.014 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 07:08:59.014 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:08:59.014 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:08:59.014 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 07:08:59.014 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:08:59.026 INFO [12305]: COREGRADE is stopping... -- 07:08:59.026 DEBUG [12305]: Closing database connection -- 07:08:59.026 SQL [12305]: pgsql_close() -- 07:08:59.031 INFO [12248]: COREGRADE is starting... -- 07:08:59.031 INFO [12248]: Version from config: 1.0 -- 07:08:59.031 DEBUG [12248]: Connecting to database... -- 07:08:59.031 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:08:59.031 SQL [12248]: pgsql_db_connect() -- 07:08:59.036 DEBUG [12248]: Database connection successful -- 07:08:59.036 INFO [12248]: _SERVER found -- 07:08:59.036 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 07:08:59.036 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:08:59.036 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:08:59.036 INFO [12248]: QUERY_STRING = /assets/js/pages/picker_date.js -- 07:08:59.036 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:08:59.047 INFO [12248]: COREGRADE is stopping... -- 07:08:59.047 DEBUG [12248]: Closing database connection -- 07:08:59.047 SQL [12248]: pgsql_close() -- 07:08:59.050 INFO [12248]: COREGRADE is starting... -- 07:08:59.050 INFO [12248]: Version from config: 1.0 -- 07:08:59.050 DEBUG [12248]: Connecting to database... -- 07:08:59.050 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:08:59.050 SQL [12248]: pgsql_db_connect() -- 07:08:59.059 DEBUG [12248]: Database connection successful -- 07:08:59.059 INFO [12248]: _SERVER found -- 07:08:59.059 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 07:08:59.059 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:08:59.059 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:08:59.059 INFO [12248]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 07:08:59.059 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:08:59.071 INFO [12248]: COREGRADE is stopping... -- 07:08:59.071 DEBUG [12248]: Closing database connection -- 07:08:59.071 SQL [12248]: pgsql_close() -- 07:08:59.092 INFO [12305]: COREGRADE is starting... -- 07:08:59.093 INFO [12305]: Version from config: 1.0 -- 07:08:59.093 DEBUG [12305]: Connecting to database... -- 07:08:59.093 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:08:59.093 SQL [12305]: pgsql_db_connect() -- 07:08:59.097 DEBUG [12305]: Database connection successful -- 07:08:59.097 INFO [12305]: _SERVER found -- 07:08:59.097 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 07:08:59.097 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:08:59.097 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:08:59.097 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 07:08:59.097 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:08:59.109 INFO [12305]: COREGRADE is stopping... -- 07:08:59.109 DEBUG [12305]: Closing database connection -- 07:08:59.109 SQL [12305]: pgsql_close() -- 07:08:59.116 INFO [12248]: COREGRADE is starting... -- 07:08:59.117 INFO [12248]: Version from config: 1.0 -- 07:08:59.117 DEBUG [12248]: Connecting to database... -- 07:08:59.117 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:08:59.117 SQL [12248]: pgsql_db_connect() -- 07:08:59.121 DEBUG [12248]: Database connection successful -- 07:08:59.121 INFO [12248]: _SERVER found -- 07:08:59.121 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 07:08:59.121 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:08:59.121 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:08:59.121 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 07:08:59.121 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:08:59.132 INFO [12248]: COREGRADE is stopping... -- 07:08:59.132 DEBUG [12248]: Closing database connection -- 07:08:59.132 SQL [12248]: pgsql_close() -- 07:08:59.140 INFO [12248]: COREGRADE is starting... -- 07:08:59.140 INFO [12248]: Version from config: 1.0 -- 07:08:59.140 DEBUG [12248]: Connecting to database... -- 07:08:59.140 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:08:59.140 SQL [12248]: pgsql_db_connect() -- 07:08:59.144 DEBUG [12248]: Database connection successful -- 07:08:59.144 INFO [12248]: _SERVER found -- 07:08:59.144 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 07:08:59.144 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:08:59.144 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:08:59.144 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 07:08:59.144 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:08:59.155 INFO [12248]: COREGRADE is stopping... -- 07:08:59.155 DEBUG [12248]: Closing database connection -- 07:08:59.155 SQL [12248]: pgsql_close() -- 07:08:59.174 INFO [12305]: COREGRADE is starting... -- 07:08:59.174 INFO [12305]: Version from config: 1.0 -- 07:08:59.174 DEBUG [12305]: Connecting to database... -- 07:08:59.174 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:08:59.174 SQL [12305]: pgsql_db_connect() -- 07:08:59.178 DEBUG [12305]: Database connection successful -- 07:08:59.178 INFO [12305]: _SERVER found -- 07:08:59.178 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 07:08:59.178 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:08:59.178 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:08:59.178 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 07:08:59.178 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:08:59.190 INFO [12305]: COREGRADE is stopping... -- 07:08:59.190 DEBUG [12305]: Closing database connection -- 07:08:59.190 SQL [12305]: pgsql_close() -- 07:08:59.201 INFO [12248]: COREGRADE is starting... -- 07:08:59.201 INFO [12248]: Version from config: 1.0 -- 07:08:59.201 DEBUG [12248]: Connecting to database... -- 07:08:59.201 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:08:59.201 SQL [12248]: pgsql_db_connect() -- 07:08:59.205 DEBUG [12248]: Database connection successful -- 07:08:59.205 INFO [12248]: _SERVER found -- 07:08:59.205 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 07:08:59.205 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:08:59.205 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:08:59.205 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 07:08:59.205 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:08:59.217 INFO [12248]: COREGRADE is stopping... -- 07:08:59.217 DEBUG [12248]: Closing database connection -- 07:08:59.217 SQL [12248]: pgsql_close() -- 07:08:59.224 INFO [12248]: COREGRADE is starting... -- 07:08:59.224 INFO [12248]: Version from config: 1.0 -- 07:08:59.224 DEBUG [12248]: Connecting to database... -- 07:08:59.224 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:08:59.224 SQL [12248]: pgsql_db_connect() -- 07:08:59.228 DEBUG [12248]: Database connection successful -- 07:08:59.228 INFO [12248]: _SERVER found -- 07:08:59.228 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 07:08:59.228 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:08:59.228 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:08:59.228 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 07:08:59.228 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:08:59.239 INFO [12248]: COREGRADE is stopping... -- 07:08:59.239 DEBUG [12248]: Closing database connection -- 07:08:59.239 SQL [12248]: pgsql_close() -- 07:08:59.255 INFO [12305]: COREGRADE is starting... -- 07:08:59.255 INFO [12305]: Version from config: 1.0 -- 07:08:59.255 DEBUG [12305]: Connecting to database... -- 07:08:59.255 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:08:59.255 SQL [12305]: pgsql_db_connect() -- 07:08:59.259 DEBUG [12305]: Database connection successful -- 07:08:59.259 INFO [12305]: _SERVER found -- 07:08:59.259 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 07:08:59.259 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:08:59.259 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:08:59.259 INFO [12305]: QUERY_STRING = /assets/customjs/general.js -- 07:08:59.259 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:08:59.271 INFO [12305]: COREGRADE is stopping... -- 07:08:59.271 DEBUG [12305]: Closing database connection -- 07:08:59.271 SQL [12305]: pgsql_close() -- 07:08:59.285 INFO [12248]: COREGRADE is starting... -- 07:08:59.286 INFO [12248]: Version from config: 1.0 -- 07:08:59.286 DEBUG [12248]: Connecting to database... -- 07:08:59.286 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:08:59.286 SQL [12248]: pgsql_db_connect() -- 07:08:59.290 DEBUG [12248]: Database connection successful -- 07:08:59.290 INFO [12248]: _SERVER found -- 07:08:59.290 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 07:08:59.290 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:08:59.290 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:08:59.290 INFO [12248]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 07:08:59.290 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:08:59.301 INFO [12248]: COREGRADE is stopping... -- 07:08:59.301 DEBUG [12248]: Closing database connection -- 07:08:59.301 SQL [12248]: pgsql_close() -- 07:08:59.370 INFO [12248]: COREGRADE is starting... -- 07:08:59.371 INFO [12248]: Version from config: 1.0 -- 07:08:59.371 DEBUG [12248]: Connecting to database... -- 07:08:59.371 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:08:59.371 SQL [12248]: pgsql_db_connect() -- 07:08:59.375 DEBUG [12248]: Database connection successful -- 07:08:59.375 INFO [12248]: _SERVER found -- 07:08:59.375 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 07:08:59.375 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:08:59.375 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:08:59.375 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 07:08:59.375 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:08:59.387 INFO [12248]: COREGRADE is stopping... -- 07:08:59.387 DEBUG [12248]: Closing database connection -- 07:08:59.387 SQL [12248]: pgsql_close() -- 07:08:59.456 INFO [12248]: COREGRADE is starting... -- 07:08:59.456 INFO [12248]: Version from config: 1.0 -- 07:08:59.456 DEBUG [12248]: Connecting to database... -- 07:08:59.456 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:08:59.456 SQL [12248]: pgsql_db_connect() -- 07:08:59.460 DEBUG [12248]: Database connection successful -- 07:08:59.460 INFO [12248]: _SERVER found -- 07:08:59.460 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 07:08:59.460 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:08:59.460 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:08:59.460 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 07:08:59.460 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:08:59.472 INFO [12248]: COREGRADE is stopping... -- 07:08:59.472 DEBUG [12248]: Closing database connection -- 07:08:59.472 SQL [12248]: pgsql_close() -- 07:08:59.541 INFO [12248]: COREGRADE is starting... -- 07:08:59.541 INFO [12248]: Version from config: 1.0 -- 07:08:59.541 DEBUG [12248]: Connecting to database... -- 07:08:59.541 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:08:59.541 SQL [12248]: pgsql_db_connect() -- 07:08:59.546 DEBUG [12248]: Database connection successful -- 07:08:59.546 INFO [12248]: _SERVER found -- 07:08:59.546 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 07:08:59.546 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:08:59.546 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:08:59.546 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 07:08:59.546 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:08:59.558 INFO [12248]: COREGRADE is stopping... -- 07:08:59.558 DEBUG [12248]: Closing database connection -- 07:08:59.558 SQL [12248]: pgsql_close() -- 07:08:59.627 INFO [12248]: COREGRADE is starting... -- 07:08:59.627 INFO [12248]: Version from config: 1.0 -- 07:08:59.627 DEBUG [12248]: Connecting to database... -- 07:08:59.627 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:08:59.627 SQL [12248]: pgsql_db_connect() -- 07:08:59.631 DEBUG [12248]: Database connection successful -- 07:08:59.631 INFO [12248]: _SERVER found -- 07:08:59.631 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 07:08:59.631 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:08:59.631 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:08:59.631 INFO [12248]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 07:08:59.631 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:08:59.643 INFO [12248]: COREGRADE is stopping... -- 07:08:59.643 DEBUG [12248]: Closing database connection -- 07:08:59.643 SQL [12248]: pgsql_close() -- 07:08:59.712 INFO [12248]: COREGRADE is starting... -- 07:08:59.712 INFO [12248]: Version from config: 1.0 -- 07:08:59.712 DEBUG [12248]: Connecting to database... -- 07:08:59.712 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:08:59.712 SQL [12248]: pgsql_db_connect() -- 07:08:59.716 DEBUG [12248]: Database connection successful -- 07:08:59.716 INFO [12248]: _SERVER found -- 07:08:59.716 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 07:08:59.716 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:08:59.716 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:08:59.716 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 07:08:59.716 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:08:59.727 INFO [12248]: COREGRADE is stopping... -- 07:08:59.727 DEBUG [12248]: Closing database connection -- 07:08:59.727 SQL [12248]: pgsql_close() -- 07:08:59.796 INFO [12248]: COREGRADE is starting... -- 07:08:59.796 INFO [12248]: Version from config: 1.0 -- 07:08:59.796 DEBUG [12248]: Connecting to database... -- 07:08:59.796 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:08:59.796 SQL [12248]: pgsql_db_connect() -- 07:08:59.800 DEBUG [12248]: Database connection successful -- 07:08:59.800 INFO [12248]: _SERVER found -- 07:08:59.800 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 07:08:59.800 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:08:59.800 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:08:59.800 INFO [12248]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 07:08:59.800 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:08:59.812 INFO [12248]: COREGRADE is stopping... -- 07:08:59.812 DEBUG [12248]: Closing database connection -- 07:08:59.812 SQL [12248]: pgsql_close() -- 07:08:59.881 INFO [12248]: COREGRADE is starting... -- 07:08:59.881 INFO [12248]: Version from config: 1.0 -- 07:08:59.881 DEBUG [12248]: Connecting to database... -- 07:08:59.881 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:08:59.881 SQL [12248]: pgsql_db_connect() -- 07:08:59.885 DEBUG [12248]: Database connection successful -- 07:08:59.885 INFO [12248]: _SERVER found -- 07:08:59.885 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 07:08:59.885 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:08:59.885 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:08:59.885 INFO [12248]: QUERY_STRING = /assets/js/pages/dashboard.js -- 07:08:59.885 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:08:59.897 INFO [12248]: COREGRADE is stopping... -- 07:08:59.897 DEBUG [12248]: Closing database connection -- 07:08:59.897 SQL [12248]: pgsql_close() -- 07:08:59.966 INFO [12248]: COREGRADE is starting... -- 07:08:59.967 INFO [12248]: Version from config: 1.0 -- 07:08:59.967 DEBUG [12248]: Connecting to database... -- 07:08:59.967 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:08:59.967 SQL [12248]: pgsql_db_connect() -- 07:08:59.971 DEBUG [12248]: Database connection successful -- 07:08:59.971 INFO [12248]: _SERVER found -- 07:08:59.971 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 07:08:59.971 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:08:59.971 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:08:59.971 INFO [12248]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 07:08:59.971 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:08:59.982 INFO [12248]: COREGRADE is stopping... -- 07:08:59.982 DEBUG [12248]: Closing database connection -- 07:08:59.982 SQL [12248]: pgsql_close() -- 07:09:00.052 INFO [12248]: COREGRADE is starting... -- 07:09:00.052 INFO [12248]: Version from config: 1.0 -- 07:09:00.052 DEBUG [12248]: Connecting to database... -- 07:09:00.052 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:09:00.052 SQL [12248]: pgsql_db_connect() -- 07:09:00.057 DEBUG [12248]: Database connection successful -- 07:09:00.057 INFO [12248]: _SERVER found -- 07:09:00.057 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 07:09:00.057 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:09:00.057 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:09:00.057 INFO [12248]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 07:09:00.057 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:09:00.068 INFO [12248]: COREGRADE is stopping... -- 07:09:00.068 DEBUG [12248]: Closing database connection -- 07:09:00.068 SQL [12248]: pgsql_close() -- 07:09:00.138 INFO [12248]: COREGRADE is starting... -- 07:09:00.138 INFO [12248]: Version from config: 1.0 -- 07:09:00.138 DEBUG [12248]: Connecting to database... -- 07:09:00.138 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:09:00.138 SQL [12248]: pgsql_db_connect() -- 07:09:00.142 DEBUG [12248]: Database connection successful -- 07:09:00.142 INFO [12248]: _SERVER found -- 07:09:00.142 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 07:09:00.142 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:09:00.142 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:09:00.142 INFO [12248]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 07:09:00.142 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:09:00.153 INFO [12248]: COREGRADE is stopping... -- 07:09:00.153 DEBUG [12248]: Closing database connection -- 07:09:00.153 SQL [12248]: pgsql_close() -- 07:09:00.222 INFO [12248]: COREGRADE is starting... -- 07:09:00.222 INFO [12248]: Version from config: 1.0 -- 07:09:00.222 DEBUG [12248]: Connecting to database... -- 07:09:00.223 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:09:00.223 SQL [12248]: pgsql_db_connect() -- 07:09:00.228 DEBUG [12248]: Database connection successful -- 07:09:00.228 INFO [12248]: _SERVER found -- 07:09:00.228 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 07:09:00.228 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:09:00.228 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:09:00.228 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 07:09:00.228 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:09:00.239 INFO [12248]: COREGRADE is stopping... -- 07:09:00.239 DEBUG [12248]: Closing database connection -- 07:09:00.239 SQL [12248]: pgsql_close() -- 07:09:00.309 INFO [12248]: COREGRADE is starting... -- 07:09:00.309 INFO [12248]: Version from config: 1.0 -- 07:09:00.309 DEBUG [12248]: Connecting to database... -- 07:09:00.309 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:09:00.309 SQL [12248]: pgsql_db_connect() -- 07:09:00.313 DEBUG [12248]: Database connection successful -- 07:09:00.313 INFO [12248]: _SERVER found -- 07:09:00.313 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 07:09:00.313 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:09:00.313 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:09:00.313 INFO [12248]: QUERY_STRING = /assets/js/pages/picker_date.js -- 07:09:00.313 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:09:00.325 INFO [12248]: COREGRADE is stopping... -- 07:09:00.325 DEBUG [12248]: Closing database connection -- 07:09:00.325 SQL [12248]: pgsql_close() -- 07:09:00.394 INFO [12248]: COREGRADE is starting... -- 07:09:00.394 INFO [12248]: Version from config: 1.0 -- 07:09:00.394 DEBUG [12248]: Connecting to database... -- 07:09:00.394 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:09:00.394 SQL [12248]: pgsql_db_connect() -- 07:09:00.399 DEBUG [12248]: Database connection successful -- 07:09:00.399 INFO [12248]: _SERVER found -- 07:09:00.399 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 07:09:00.399 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:09:00.399 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:09:00.399 INFO [12248]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 07:09:00.399 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:09:00.410 INFO [12248]: COREGRADE is stopping... -- 07:09:00.410 DEBUG [12248]: Closing database connection -- 07:09:00.410 SQL [12248]: pgsql_close() -- 07:09:00.480 INFO [12248]: COREGRADE is starting... -- 07:09:00.480 INFO [12248]: Version from config: 1.0 -- 07:09:00.480 DEBUG [12248]: Connecting to database... -- 07:09:00.480 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:09:00.480 SQL [12248]: pgsql_db_connect() -- 07:09:00.484 DEBUG [12248]: Database connection successful -- 07:09:00.484 INFO [12248]: _SERVER found -- 07:09:00.484 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 07:09:00.484 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:09:00.484 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:09:00.484 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 07:09:00.484 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:09:00.495 INFO [12248]: COREGRADE is stopping... -- 07:09:00.495 DEBUG [12248]: Closing database connection -- 07:09:00.495 SQL [12248]: pgsql_close() -- 07:09:00.564 INFO [12248]: COREGRADE is starting... -- 07:09:00.564 INFO [12248]: Version from config: 1.0 -- 07:09:00.564 DEBUG [12248]: Connecting to database... -- 07:09:00.565 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:09:00.565 SQL [12248]: pgsql_db_connect() -- 07:09:00.569 DEBUG [12248]: Database connection successful -- 07:09:00.569 INFO [12248]: _SERVER found -- 07:09:00.569 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 07:09:00.569 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:09:00.569 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:09:00.569 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 07:09:00.569 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:09:00.580 INFO [12248]: COREGRADE is stopping... -- 07:09:00.580 DEBUG [12248]: Closing database connection -- 07:09:00.580 SQL [12248]: pgsql_close() -- 07:09:00.649 INFO [12248]: COREGRADE is starting... -- 07:09:00.650 INFO [12248]: Version from config: 1.0 -- 07:09:00.650 DEBUG [12248]: Connecting to database... -- 07:09:00.650 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:09:00.650 SQL [12248]: pgsql_db_connect() -- 07:09:00.654 DEBUG [12248]: Database connection successful -- 07:09:00.654 INFO [12248]: _SERVER found -- 07:09:00.654 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 07:09:00.654 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:09:00.654 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:09:00.654 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 07:09:00.654 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:09:00.665 INFO [12248]: COREGRADE is stopping... -- 07:09:00.665 DEBUG [12248]: Closing database connection -- 07:09:00.665 SQL [12248]: pgsql_close() -- 07:09:00.734 INFO [12248]: COREGRADE is starting... -- 07:09:00.734 INFO [12248]: Version from config: 1.0 -- 07:09:00.734 DEBUG [12248]: Connecting to database... -- 07:09:00.734 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:09:00.734 SQL [12248]: pgsql_db_connect() -- 07:09:00.738 DEBUG [12248]: Database connection successful -- 07:09:00.738 INFO [12248]: _SERVER found -- 07:09:00.738 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 07:09:00.738 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:09:00.738 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:09:00.738 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 07:09:00.738 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:09:00.750 INFO [12248]: COREGRADE is stopping... -- 07:09:00.750 DEBUG [12248]: Closing database connection -- 07:09:00.750 SQL [12248]: pgsql_close() -- 07:09:00.829 INFO [12248]: COREGRADE is starting... -- 07:09:00.829 INFO [12248]: Version from config: 1.0 -- 07:09:00.829 DEBUG [12248]: Connecting to database... -- 07:09:00.829 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:09:00.829 SQL [12248]: pgsql_db_connect() -- 07:09:00.833 DEBUG [12248]: Database connection successful -- 07:09:00.833 INFO [12248]: _SERVER found -- 07:09:00.833 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 07:09:00.833 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:09:00.833 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:09:00.833 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 07:09:00.833 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:09:00.845 INFO [12248]: COREGRADE is stopping... -- 07:09:00.845 DEBUG [12248]: Closing database connection -- 07:09:00.845 SQL [12248]: pgsql_close() -- 07:09:00.914 INFO [12248]: COREGRADE is starting... -- 07:09:00.914 INFO [12248]: Version from config: 1.0 -- 07:09:00.914 DEBUG [12248]: Connecting to database... -- 07:09:00.914 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:09:00.914 SQL [12248]: pgsql_db_connect() -- 07:09:00.918 DEBUG [12248]: Database connection successful -- 07:09:00.918 INFO [12248]: _SERVER found -- 07:09:00.918 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 07:09:00.918 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:09:00.918 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:09:00.918 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 07:09:00.918 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:09:00.930 INFO [12248]: COREGRADE is stopping... -- 07:09:00.930 DEBUG [12248]: Closing database connection -- 07:09:00.930 SQL [12248]: pgsql_close() -- 07:09:01.003 INFO [12248]: COREGRADE is starting... -- 07:09:01.003 INFO [12248]: Version from config: 1.0 -- 07:09:01.003 DEBUG [12248]: Connecting to database... -- 07:09:01.003 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:09:01.003 SQL [12248]: pgsql_db_connect() -- 07:09:01.007 DEBUG [12248]: Database connection successful -- 07:09:01.007 INFO [12248]: _SERVER found -- 07:09:01.007 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 07:09:01.007 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:09:01.007 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:09:01.007 INFO [12248]: QUERY_STRING = /assets/customjs/general.js -- 07:09:01.007 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:09:01.018 INFO [12248]: COREGRADE is stopping... -- 07:09:01.018 DEBUG [12248]: Closing database connection -- 07:09:01.019 SQL [12248]: pgsql_close() -- 07:29:01.239 INFO [12247]: COREGRADE is starting... -- 07:29:01.240 INFO [12247]: Version from config: 1.0 -- 07:29:01.240 DEBUG [12247]: Connecting to database... -- 07:29:01.240 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:01.240 SQL [12247]: pgsql_db_connect() -- 07:29:01.244 DEBUG [12247]: Database connection successful -- 07:29:01.244 INFO [12247]: _SERVER found -- 07:29:01.244 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 07:29:01.244 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:01.244 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=gt701isvcjk774vdojjnlgkt6ouqtvu6 -- 07:29:01.244 INFO [12247]: QUERY_STRING = /logout -- 07:29:01.244 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:01.279 INFO [12247]: COREGRADE is stopping... -- 07:29:01.279 DEBUG [12247]: Closing database connection -- 07:29:01.279 SQL [12247]: pgsql_close() -- 07:29:01.359 INFO [12247]: COREGRADE is starting... -- 07:29:01.359 INFO [12247]: Version from config: 1.0 -- 07:29:01.359 DEBUG [12247]: Connecting to database... -- 07:29:01.359 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:01.359 SQL [12247]: pgsql_db_connect() -- 07:29:01.363 DEBUG [12247]: Database connection successful -- 07:29:01.363 INFO [12247]: _SERVER found -- 07:29:01.363 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 07:29:01.363 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:01.363 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:01.363 INFO [12247]: QUERY_STRING = /start -- 07:29:01.363 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:01.396 INFO [12247]: COREGRADE is stopping... -- 07:29:01.396 DEBUG [12247]: Closing database connection -- 07:29:01.396 SQL [12247]: pgsql_close() -- 07:29:01.527 INFO [12247]: COREGRADE is starting... -- 07:29:01.528 INFO [12247]: Version from config: 1.0 -- 07:29:01.528 DEBUG [12247]: Connecting to database... -- 07:29:01.528 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:01.528 SQL [12247]: pgsql_db_connect() -- 07:29:01.532 DEBUG [12247]: Database connection successful -- 07:29:01.532 INFO [12247]: _SERVER found -- 07:29:01.532 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 07:29:01.532 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:01.532 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:01.532 INFO [12247]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 07:29:01.532 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:01.543 INFO [12247]: COREGRADE is stopping... -- 07:29:01.543 DEBUG [12247]: Closing database connection -- 07:29:01.543 SQL [12247]: pgsql_close() -- 07:29:01.547 INFO [12246]: COREGRADE is starting... -- 07:29:01.547 INFO [12246]: Version from config: 1.0 -- 07:29:01.547 DEBUG [12246]: Connecting to database... -- 07:29:01.547 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:01.547 SQL [12246]: pgsql_db_connect() -- 07:29:01.551 DEBUG [12246]: Database connection successful -- 07:29:01.551 INFO [12246]: _SERVER found -- 07:29:01.551 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:01.551 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:01.551 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:01.551 INFO [12246]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 07:29:01.551 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:01.564 INFO [12246]: COREGRADE is stopping... -- 07:29:01.564 DEBUG [12246]: Closing database connection -- 07:29:01.564 SQL [12246]: pgsql_close() -- 07:29:01.600 INFO [12246]: COREGRADE is starting... -- 07:29:01.600 INFO [12246]: Version from config: 1.0 -- 07:29:01.600 DEBUG [12246]: Connecting to database... -- 07:29:01.600 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:01.600 SQL [12246]: pgsql_db_connect() -- 07:29:01.604 DEBUG [12246]: Database connection successful -- 07:29:01.604 INFO [12246]: _SERVER found -- 07:29:01.604 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:01.604 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:01.604 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:01.604 INFO [12246]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 07:29:01.604 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:01.616 INFO [12246]: COREGRADE is stopping... -- 07:29:01.616 DEBUG [12246]: Closing database connection -- 07:29:01.616 SQL [12246]: pgsql_close() -- 07:29:01.626 INFO [12246]: COREGRADE is starting... -- 07:29:01.627 INFO [12246]: Version from config: 1.0 -- 07:29:01.627 DEBUG [12246]: Connecting to database... -- 07:29:01.627 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:01.627 SQL [12246]: pgsql_db_connect() -- 07:29:01.630 INFO [12247]: COREGRADE is starting... -- 07:29:01.630 INFO [12247]: Version from config: 1.0 -- 07:29:01.630 DEBUG [12247]: Connecting to database... -- 07:29:01.630 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:01.630 SQL [12247]: pgsql_db_connect() -- 07:29:01.631 DEBUG [12246]: Database connection successful -- 07:29:01.631 INFO [12246]: _SERVER found -- 07:29:01.631 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:01.631 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:01.631 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:01.631 INFO [12246]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 07:29:01.631 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:01.642 INFO [12246]: COREGRADE is stopping... -- 07:29:01.642 DEBUG [12246]: Closing database connection -- 07:29:01.642 SQL [12246]: pgsql_close() -- 07:29:01.634 DEBUG [12247]: Database connection successful -- 07:29:01.634 INFO [12247]: _SERVER found -- 07:29:01.634 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 07:29:01.634 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:01.634 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:01.634 INFO [12247]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 07:29:01.634 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:01.646 INFO [12247]: COREGRADE is stopping... -- 07:29:01.646 DEBUG [12247]: Closing database connection -- 07:29:01.646 SQL [12247]: pgsql_close() -- 07:29:01.697 INFO [12247]: COREGRADE is starting... -- 07:29:01.697 INFO [12247]: Version from config: 1.0 -- 07:29:01.697 DEBUG [12247]: Connecting to database... -- 07:29:01.697 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:01.697 SQL [12247]: pgsql_db_connect() -- 07:29:01.711 INFO [12246]: COREGRADE is starting... -- 07:29:01.712 INFO [12246]: Version from config: 1.0 -- 07:29:01.712 DEBUG [12246]: Connecting to database... -- 07:29:01.712 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:01.712 SQL [12246]: pgsql_db_connect() -- 07:29:01.702 DEBUG [12247]: Database connection successful -- 07:29:01.702 INFO [12247]: _SERVER found -- 07:29:01.702 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 07:29:01.702 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:01.702 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:01.702 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 07:29:01.702 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:01.713 INFO [12247]: COREGRADE is stopping... -- 07:29:01.713 DEBUG [12247]: Closing database connection -- 07:29:01.714 SQL [12247]: pgsql_close() -- 07:29:01.725 INFO [12247]: COREGRADE is starting... -- 07:29:01.725 INFO [12247]: Version from config: 1.0 -- 07:29:01.725 DEBUG [12247]: Connecting to database... -- 07:29:01.725 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:01.725 SQL [12247]: pgsql_db_connect() -- 07:29:01.716 DEBUG [12246]: Database connection successful -- 07:29:01.716 INFO [12246]: _SERVER found -- 07:29:01.716 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:01.716 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:01.716 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:01.716 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 07:29:01.716 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:01.727 INFO [12246]: COREGRADE is stopping... -- 07:29:01.727 DEBUG [12246]: Closing database connection -- 07:29:01.727 SQL [12246]: pgsql_close() -- 07:29:01.729 DEBUG [12247]: Database connection successful -- 07:29:01.729 INFO [12247]: _SERVER found -- 07:29:01.729 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 07:29:01.729 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:01.729 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:01.729 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 07:29:01.729 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:01.741 INFO [12247]: COREGRADE is stopping... -- 07:29:01.741 DEBUG [12247]: Closing database connection -- 07:29:01.741 SQL [12247]: pgsql_close() -- 07:29:01.795 INFO [12246]: COREGRADE is starting... -- 07:29:01.795 INFO [12247]: COREGRADE is starting... -- 07:29:01.795 INFO [12247]: Version from config: 1.0 -- 07:29:01.795 DEBUG [12247]: Connecting to database... -- 07:29:01.795 INFO [12246]: Version from config: 1.0 -- 07:29:01.795 DEBUG [12246]: Connecting to database... -- 07:29:01.795 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:01.795 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:01.795 SQL [12247]: pgsql_db_connect() -- 07:29:01.795 SQL [12246]: pgsql_db_connect() -- 07:29:01.800 DEBUG [12246]: Database connection successful -- 07:29:01.800 INFO [12246]: _SERVER found -- 07:29:01.800 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:01.800 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:01.800 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:01.800 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 07:29:01.800 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:01.811 INFO [12246]: COREGRADE is stopping... -- 07:29:01.800 DEBUG [12247]: Database connection successful -- 07:29:01.800 INFO [12247]: _SERVER found -- 07:29:01.800 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 07:29:01.800 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:01.800 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:01.800 INFO [12247]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 07:29:01.800 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:01.811 INFO [12247]: COREGRADE is stopping... -- 07:29:01.811 DEBUG [12246]: Closing database connection -- 07:29:01.811 DEBUG [12247]: Closing database connection -- 07:29:01.811 SQL [12246]: pgsql_close() -- 07:29:01.811 SQL [12247]: pgsql_close() -- 07:29:01.823 INFO [12247]: COREGRADE is starting... -- 07:29:01.823 INFO [12247]: Version from config: 1.0 -- 07:29:01.823 DEBUG [12247]: Connecting to database... -- 07:29:01.823 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:01.823 SQL [12247]: pgsql_db_connect() -- 07:29:01.828 DEBUG [12247]: Database connection successful -- 07:29:01.828 INFO [12247]: _SERVER found -- 07:29:01.828 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 07:29:01.828 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:01.828 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:01.828 INFO [12247]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 07:29:01.828 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:01.839 INFO [12247]: COREGRADE is stopping... -- 07:29:01.839 DEBUG [12247]: Closing database connection -- 07:29:01.839 SQL [12247]: pgsql_close() -- 07:29:01.878 INFO [12247]: COREGRADE is starting... -- 07:29:01.879 INFO [12247]: Version from config: 1.0 -- 07:29:01.879 DEBUG [12247]: Connecting to database... -- 07:29:01.879 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:01.879 SQL [12247]: pgsql_db_connect() -- 07:29:01.893 INFO [12246]: COREGRADE is starting... -- 07:29:01.894 INFO [12246]: Version from config: 1.0 -- 07:29:01.894 DEBUG [12246]: Connecting to database... -- 07:29:01.894 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:01.894 SQL [12246]: pgsql_db_connect() -- 07:29:01.883 DEBUG [12247]: Database connection successful -- 07:29:01.883 INFO [12247]: _SERVER found -- 07:29:01.883 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 07:29:01.883 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:01.883 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:01.883 INFO [12247]: QUERY_STRING = /assets/js/pages/dashboard.js -- 07:29:01.883 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:01.894 INFO [12247]: COREGRADE is stopping... -- 07:29:01.894 DEBUG [12247]: Closing database connection -- 07:29:01.894 SQL [12247]: pgsql_close() -- 07:29:01.898 DEBUG [12246]: Database connection successful -- 07:29:01.898 INFO [12246]: _SERVER found -- 07:29:01.898 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:01.898 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:01.898 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:01.898 INFO [12246]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 07:29:01.898 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:01.909 INFO [12246]: COREGRADE is stopping... -- 07:29:01.909 DEBUG [12246]: Closing database connection -- 07:29:01.909 SQL [12246]: pgsql_close() -- 07:29:01.912 INFO [12246]: COREGRADE is starting... -- 07:29:01.912 INFO [12246]: Version from config: 1.0 -- 07:29:01.912 DEBUG [12246]: Connecting to database... -- 07:29:01.912 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:01.912 SQL [12246]: pgsql_db_connect() -- 07:29:01.916 DEBUG [12246]: Database connection successful -- 07:29:01.916 INFO [12246]: _SERVER found -- 07:29:01.916 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:01.916 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:01.916 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:01.916 INFO [12246]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 07:29:01.916 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:01.927 INFO [12246]: COREGRADE is stopping... -- 07:29:01.927 DEBUG [12246]: Closing database connection -- 07:29:01.927 SQL [12246]: pgsql_close() -- 07:29:01.960 INFO [12246]: COREGRADE is starting... -- 07:29:01.961 INFO [12246]: Version from config: 1.0 -- 07:29:01.961 DEBUG [12246]: Connecting to database... -- 07:29:01.961 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:01.961 SQL [12246]: pgsql_db_connect() -- 07:29:01.965 DEBUG [12246]: Database connection successful -- 07:29:01.965 INFO [12246]: _SERVER found -- 07:29:01.965 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:01.965 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:01.965 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:01.965 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 07:29:01.965 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:01.976 INFO [12246]: COREGRADE is stopping... -- 07:29:01.976 DEBUG [12246]: Closing database connection -- 07:29:01.976 SQL [12246]: pgsql_close() -- 07:29:01.978 INFO [12246]: COREGRADE is starting... -- 07:29:01.979 INFO [12246]: Version from config: 1.0 -- 07:29:01.979 DEBUG [12246]: Connecting to database... -- 07:29:01.979 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:01.979 SQL [12246]: pgsql_db_connect() -- 07:29:01.982 DEBUG [12246]: Database connection successful -- 07:29:01.982 INFO [12246]: _SERVER found -- 07:29:01.982 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:01.982 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:01.982 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:01.982 INFO [12246]: QUERY_STRING = /assets/js/pages/picker_date.js -- 07:29:01.982 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:01.994 INFO [12246]: COREGRADE is stopping... -- 07:29:01.994 DEBUG [12246]: Closing database connection -- 07:29:01.994 SQL [12246]: pgsql_close() -- 07:29:01.999 INFO [12246]: COREGRADE is starting... -- 07:29:01.000 INFO [12246]: Version from config: 1.0 -- 07:29:01.000 DEBUG [12246]: Connecting to database... -- 07:29:01.000 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:01.000 SQL [12246]: pgsql_db_connect() -- 07:29:02.003 DEBUG [12246]: Database connection successful -- 07:29:02.003 INFO [12246]: _SERVER found -- 07:29:02.003 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:02.003 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:02.003 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:02.003 INFO [12246]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 07:29:02.003 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:02.015 INFO [12246]: COREGRADE is stopping... -- 07:29:02.015 DEBUG [12246]: Closing database connection -- 07:29:02.015 SQL [12246]: pgsql_close() -- 07:29:02.042 INFO [12246]: COREGRADE is starting... -- 07:29:02.042 INFO [12246]: Version from config: 1.0 -- 07:29:02.042 DEBUG [12246]: Connecting to database... -- 07:29:02.042 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:02.042 SQL [12246]: pgsql_db_connect() -- 07:29:02.046 DEBUG [12246]: Database connection successful -- 07:29:02.046 INFO [12246]: _SERVER found -- 07:29:02.046 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:02.046 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:02.046 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:02.046 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 07:29:02.046 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:02.057 INFO [12246]: COREGRADE is stopping... -- 07:29:02.057 DEBUG [12246]: Closing database connection -- 07:29:02.057 SQL [12246]: pgsql_close() -- 07:29:02.062 INFO [12246]: COREGRADE is starting... -- 07:29:02.063 INFO [12246]: Version from config: 1.0 -- 07:29:02.063 DEBUG [12246]: Connecting to database... -- 07:29:02.063 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:02.063 SQL [12246]: pgsql_db_connect() -- 07:29:02.067 DEBUG [12246]: Database connection successful -- 07:29:02.067 INFO [12246]: _SERVER found -- 07:29:02.067 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:02.067 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:02.067 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:02.067 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 07:29:02.067 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:02.078 INFO [12246]: COREGRADE is stopping... -- 07:29:02.078 DEBUG [12246]: Closing database connection -- 07:29:02.078 SQL [12246]: pgsql_close() -- 07:29:02.086 INFO [12246]: COREGRADE is starting... -- 07:29:02.086 INFO [12246]: Version from config: 1.0 -- 07:29:02.086 DEBUG [12246]: Connecting to database... -- 07:29:02.086 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:02.086 SQL [12246]: pgsql_db_connect() -- 07:29:02.090 DEBUG [12246]: Database connection successful -- 07:29:02.090 INFO [12246]: _SERVER found -- 07:29:02.090 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:02.090 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:02.090 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:02.090 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 07:29:02.090 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:02.102 INFO [12246]: COREGRADE is stopping... -- 07:29:02.102 DEBUG [12246]: Closing database connection -- 07:29:02.102 SQL [12246]: pgsql_close() -- 07:29:02.124 INFO [12246]: COREGRADE is starting... -- 07:29:02.124 INFO [12246]: Version from config: 1.0 -- 07:29:02.124 DEBUG [12246]: Connecting to database... -- 07:29:02.124 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:02.124 SQL [12246]: pgsql_db_connect() -- 07:29:02.128 DEBUG [12246]: Database connection successful -- 07:29:02.128 INFO [12246]: _SERVER found -- 07:29:02.128 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:02.128 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:02.128 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:02.128 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 07:29:02.128 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:02.139 INFO [12246]: COREGRADE is stopping... -- 07:29:02.139 DEBUG [12246]: Closing database connection -- 07:29:02.139 SQL [12246]: pgsql_close() -- 07:29:02.147 INFO [12246]: COREGRADE is starting... -- 07:29:02.147 INFO [12246]: Version from config: 1.0 -- 07:29:02.147 DEBUG [12246]: Connecting to database... -- 07:29:02.147 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:02.147 SQL [12246]: pgsql_db_connect() -- 07:29:02.151 DEBUG [12246]: Database connection successful -- 07:29:02.151 INFO [12246]: _SERVER found -- 07:29:02.151 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:02.151 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:02.151 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:02.151 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 07:29:02.151 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:02.162 INFO [12246]: COREGRADE is stopping... -- 07:29:02.162 DEBUG [12246]: Closing database connection -- 07:29:02.162 SQL [12246]: pgsql_close() -- 07:29:02.174 INFO [12246]: COREGRADE is starting... -- 07:29:02.174 INFO [12246]: Version from config: 1.0 -- 07:29:02.174 DEBUG [12246]: Connecting to database... -- 07:29:02.174 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:02.174 SQL [12246]: pgsql_db_connect() -- 07:29:02.178 DEBUG [12246]: Database connection successful -- 07:29:02.178 INFO [12246]: _SERVER found -- 07:29:02.178 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:02.178 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:02.178 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:02.178 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 07:29:02.178 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:02.189 INFO [12246]: COREGRADE is stopping... -- 07:29:02.189 DEBUG [12246]: Closing database connection -- 07:29:02.190 SQL [12246]: pgsql_close() -- 07:29:02.205 INFO [12246]: COREGRADE is starting... -- 07:29:02.206 INFO [12246]: Version from config: 1.0 -- 07:29:02.206 DEBUG [12246]: Connecting to database... -- 07:29:02.206 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:02.206 SQL [12246]: pgsql_db_connect() -- 07:29:02.209 DEBUG [12246]: Database connection successful -- 07:29:02.209 INFO [12246]: _SERVER found -- 07:29:02.209 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:02.209 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:02.209 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:02.209 INFO [12246]: QUERY_STRING = /assets/customjs/general.js -- 07:29:02.209 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:02.221 INFO [12246]: COREGRADE is stopping... -- 07:29:02.221 DEBUG [12246]: Closing database connection -- 07:29:02.221 SQL [12246]: pgsql_close() -- 07:29:02.231 INFO [12246]: COREGRADE is starting... -- 07:29:02.231 INFO [12246]: Version from config: 1.0 -- 07:29:02.231 DEBUG [12246]: Connecting to database... -- 07:29:02.231 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:02.231 SQL [12246]: pgsql_db_connect() -- 07:29:02.236 DEBUG [12246]: Database connection successful -- 07:29:02.236 INFO [12246]: _SERVER found -- 07:29:02.236 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:02.236 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:02.236 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:02.236 INFO [12246]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 07:29:02.236 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:02.247 INFO [12246]: COREGRADE is stopping... -- 07:29:02.247 DEBUG [12246]: Closing database connection -- 07:29:02.247 SQL [12246]: pgsql_close() -- 07:29:02.317 INFO [12246]: COREGRADE is starting... -- 07:29:02.317 INFO [12246]: Version from config: 1.0 -- 07:29:02.317 DEBUG [12246]: Connecting to database... -- 07:29:02.317 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:02.317 SQL [12246]: pgsql_db_connect() -- 07:29:02.321 DEBUG [12246]: Database connection successful -- 07:29:02.321 INFO [12246]: _SERVER found -- 07:29:02.321 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:02.321 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:02.321 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:02.321 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 07:29:02.321 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:02.333 INFO [12246]: COREGRADE is stopping... -- 07:29:02.333 DEBUG [12246]: Closing database connection -- 07:29:02.333 SQL [12246]: pgsql_close() -- 07:29:02.403 INFO [12246]: COREGRADE is starting... -- 07:29:02.403 INFO [12246]: Version from config: 1.0 -- 07:29:02.403 DEBUG [12246]: Connecting to database... -- 07:29:02.403 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:02.403 SQL [12246]: pgsql_db_connect() -- 07:29:02.407 DEBUG [12246]: Database connection successful -- 07:29:02.407 INFO [12246]: _SERVER found -- 07:29:02.407 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:02.407 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:02.407 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:02.407 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 07:29:02.407 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:02.418 INFO [12246]: COREGRADE is stopping... -- 07:29:02.418 DEBUG [12246]: Closing database connection -- 07:29:02.418 SQL [12246]: pgsql_close() -- 07:29:02.487 INFO [12246]: COREGRADE is starting... -- 07:29:02.487 INFO [12246]: Version from config: 1.0 -- 07:29:02.487 DEBUG [12246]: Connecting to database... -- 07:29:02.487 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:02.487 SQL [12246]: pgsql_db_connect() -- 07:29:02.491 DEBUG [12246]: Database connection successful -- 07:29:02.491 INFO [12246]: _SERVER found -- 07:29:02.491 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:02.491 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:02.491 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:02.491 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 07:29:02.491 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:02.503 INFO [12246]: COREGRADE is stopping... -- 07:29:02.503 DEBUG [12246]: Closing database connection -- 07:29:02.503 SQL [12246]: pgsql_close() -- 07:29:02.572 INFO [12246]: COREGRADE is starting... -- 07:29:02.572 INFO [12246]: Version from config: 1.0 -- 07:29:02.572 DEBUG [12246]: Connecting to database... -- 07:29:02.572 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:02.572 SQL [12246]: pgsql_db_connect() -- 07:29:02.576 DEBUG [12246]: Database connection successful -- 07:29:02.576 INFO [12246]: _SERVER found -- 07:29:02.576 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:02.576 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:02.576 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:02.576 INFO [12246]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 07:29:02.576 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:02.588 INFO [12246]: COREGRADE is stopping... -- 07:29:02.588 DEBUG [12246]: Closing database connection -- 07:29:02.588 SQL [12246]: pgsql_close() -- 07:29:02.657 INFO [12246]: COREGRADE is starting... -- 07:29:02.657 INFO [12246]: Version from config: 1.0 -- 07:29:02.657 DEBUG [12246]: Connecting to database... -- 07:29:02.657 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:02.657 SQL [12246]: pgsql_db_connect() -- 07:29:02.661 DEBUG [12246]: Database connection successful -- 07:29:02.661 INFO [12246]: _SERVER found -- 07:29:02.661 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:02.661 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:02.661 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:02.661 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 07:29:02.661 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:02.672 INFO [12246]: COREGRADE is stopping... -- 07:29:02.672 DEBUG [12246]: Closing database connection -- 07:29:02.672 SQL [12246]: pgsql_close() -- 07:29:02.741 INFO [12246]: COREGRADE is starting... -- 07:29:02.741 INFO [12246]: Version from config: 1.0 -- 07:29:02.741 DEBUG [12246]: Connecting to database... -- 07:29:02.741 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:02.741 SQL [12246]: pgsql_db_connect() -- 07:29:02.745 DEBUG [12246]: Database connection successful -- 07:29:02.745 INFO [12246]: _SERVER found -- 07:29:02.745 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:02.745 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:02.745 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:02.745 INFO [12246]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 07:29:02.745 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:02.757 INFO [12246]: COREGRADE is stopping... -- 07:29:02.757 DEBUG [12246]: Closing database connection -- 07:29:02.757 SQL [12246]: pgsql_close() -- 07:29:02.826 INFO [12246]: COREGRADE is starting... -- 07:29:02.826 INFO [12246]: Version from config: 1.0 -- 07:29:02.826 DEBUG [12246]: Connecting to database... -- 07:29:02.826 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:02.826 SQL [12246]: pgsql_db_connect() -- 07:29:02.830 DEBUG [12246]: Database connection successful -- 07:29:02.830 INFO [12246]: _SERVER found -- 07:29:02.830 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:02.830 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:02.830 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:02.830 INFO [12246]: QUERY_STRING = /assets/js/pages/dashboard.js -- 07:29:02.830 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:02.842 INFO [12246]: COREGRADE is stopping... -- 07:29:02.842 DEBUG [12246]: Closing database connection -- 07:29:02.842 SQL [12246]: pgsql_close() -- 07:29:02.911 INFO [12246]: COREGRADE is starting... -- 07:29:02.911 INFO [12246]: Version from config: 1.0 -- 07:29:02.911 DEBUG [12246]: Connecting to database... -- 07:29:02.912 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:02.912 SQL [12246]: pgsql_db_connect() -- 07:29:02.916 DEBUG [12246]: Database connection successful -- 07:29:02.916 INFO [12246]: _SERVER found -- 07:29:02.916 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:02.916 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:02.916 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:02.916 INFO [12246]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 07:29:02.916 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:02.927 INFO [12246]: COREGRADE is stopping... -- 07:29:02.927 DEBUG [12246]: Closing database connection -- 07:29:02.927 SQL [12246]: pgsql_close() -- 07:29:02.996 INFO [12246]: COREGRADE is starting... -- 07:29:02.996 INFO [12246]: Version from config: 1.0 -- 07:29:02.996 DEBUG [12246]: Connecting to database... -- 07:29:02.996 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:02.996 SQL [12246]: pgsql_db_connect() -- 07:29:03.000 DEBUG [12246]: Database connection successful -- 07:29:03.000 INFO [12246]: _SERVER found -- 07:29:03.000 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:03.000 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:03.000 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:03.000 INFO [12246]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 07:29:03.000 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:03.012 INFO [12246]: COREGRADE is stopping... -- 07:29:03.012 DEBUG [12246]: Closing database connection -- 07:29:03.012 SQL [12246]: pgsql_close() -- 07:29:03.082 INFO [12246]: COREGRADE is starting... -- 07:29:03.082 INFO [12246]: Version from config: 1.0 -- 07:29:03.082 DEBUG [12246]: Connecting to database... -- 07:29:03.082 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:03.082 SQL [12246]: pgsql_db_connect() -- 07:29:03.086 DEBUG [12246]: Database connection successful -- 07:29:03.086 INFO [12246]: _SERVER found -- 07:29:03.086 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:03.086 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:03.086 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:03.086 INFO [12246]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 07:29:03.086 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:03.097 INFO [12246]: COREGRADE is stopping... -- 07:29:03.097 DEBUG [12246]: Closing database connection -- 07:29:03.097 SQL [12246]: pgsql_close() -- 07:29:03.166 INFO [12246]: COREGRADE is starting... -- 07:29:03.166 INFO [12246]: Version from config: 1.0 -- 07:29:03.166 DEBUG [12246]: Connecting to database... -- 07:29:03.166 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:03.166 SQL [12246]: pgsql_db_connect() -- 07:29:03.170 DEBUG [12246]: Database connection successful -- 07:29:03.170 INFO [12246]: _SERVER found -- 07:29:03.170 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:03.170 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:03.170 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:03.170 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 07:29:03.170 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:03.182 INFO [12246]: COREGRADE is stopping... -- 07:29:03.182 DEBUG [12246]: Closing database connection -- 07:29:03.182 SQL [12246]: pgsql_close() -- 07:29:03.251 INFO [12246]: COREGRADE is starting... -- 07:29:03.251 INFO [12246]: Version from config: 1.0 -- 07:29:03.251 DEBUG [12246]: Connecting to database... -- 07:29:03.251 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:03.251 SQL [12246]: pgsql_db_connect() -- 07:29:03.255 DEBUG [12246]: Database connection successful -- 07:29:03.255 INFO [12246]: _SERVER found -- 07:29:03.255 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:03.255 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:03.255 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:03.255 INFO [12246]: QUERY_STRING = /assets/js/pages/picker_date.js -- 07:29:03.255 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:03.267 INFO [12246]: COREGRADE is stopping... -- 07:29:03.267 DEBUG [12246]: Closing database connection -- 07:29:03.267 SQL [12246]: pgsql_close() -- 07:29:03.336 INFO [12246]: COREGRADE is starting... -- 07:29:03.336 INFO [12246]: Version from config: 1.0 -- 07:29:03.336 DEBUG [12246]: Connecting to database... -- 07:29:03.336 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:03.336 SQL [12246]: pgsql_db_connect() -- 07:29:03.340 DEBUG [12246]: Database connection successful -- 07:29:03.340 INFO [12246]: _SERVER found -- 07:29:03.340 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:03.340 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:03.340 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:03.340 INFO [12246]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 07:29:03.340 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:03.352 INFO [12246]: COREGRADE is stopping... -- 07:29:03.352 DEBUG [12246]: Closing database connection -- 07:29:03.352 SQL [12246]: pgsql_close() -- 07:29:03.421 INFO [12246]: COREGRADE is starting... -- 07:29:03.421 INFO [12246]: Version from config: 1.0 -- 07:29:03.421 DEBUG [12246]: Connecting to database... -- 07:29:03.421 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:03.421 SQL [12246]: pgsql_db_connect() -- 07:29:03.425 DEBUG [12246]: Database connection successful -- 07:29:03.425 INFO [12246]: _SERVER found -- 07:29:03.425 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:03.425 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:03.425 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:03.425 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 07:29:03.425 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:03.437 INFO [12246]: COREGRADE is stopping... -- 07:29:03.437 DEBUG [12246]: Closing database connection -- 07:29:03.437 SQL [12246]: pgsql_close() -- 07:29:03.506 INFO [12246]: COREGRADE is starting... -- 07:29:03.506 INFO [12246]: Version from config: 1.0 -- 07:29:03.506 DEBUG [12246]: Connecting to database... -- 07:29:03.506 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:03.506 SQL [12246]: pgsql_db_connect() -- 07:29:03.510 DEBUG [12246]: Database connection successful -- 07:29:03.510 INFO [12246]: _SERVER found -- 07:29:03.510 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:03.510 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:03.510 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:03.510 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 07:29:03.510 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:03.522 INFO [12246]: COREGRADE is stopping... -- 07:29:03.522 DEBUG [12246]: Closing database connection -- 07:29:03.522 SQL [12246]: pgsql_close() -- 07:29:03.591 INFO [12246]: COREGRADE is starting... -- 07:29:03.591 INFO [12246]: Version from config: 1.0 -- 07:29:03.591 DEBUG [12246]: Connecting to database... -- 07:29:03.591 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:03.591 SQL [12246]: pgsql_db_connect() -- 07:29:03.595 DEBUG [12246]: Database connection successful -- 07:29:03.595 INFO [12246]: _SERVER found -- 07:29:03.595 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:03.595 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:03.595 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:03.595 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 07:29:03.595 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:03.607 INFO [12246]: COREGRADE is stopping... -- 07:29:03.607 DEBUG [12246]: Closing database connection -- 07:29:03.607 SQL [12246]: pgsql_close() -- 07:29:03.677 INFO [12246]: COREGRADE is starting... -- 07:29:03.677 INFO [12246]: Version from config: 1.0 -- 07:29:03.677 DEBUG [12246]: Connecting to database... -- 07:29:03.677 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:03.677 SQL [12246]: pgsql_db_connect() -- 07:29:03.682 DEBUG [12246]: Database connection successful -- 07:29:03.682 INFO [12246]: _SERVER found -- 07:29:03.682 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:03.682 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:03.682 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:03.682 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 07:29:03.682 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:03.693 INFO [12246]: COREGRADE is stopping... -- 07:29:03.693 DEBUG [12246]: Closing database connection -- 07:29:03.693 SQL [12246]: pgsql_close() -- 07:29:03.773 INFO [12246]: COREGRADE is starting... -- 07:29:03.773 INFO [12246]: Version from config: 1.0 -- 07:29:03.773 DEBUG [12246]: Connecting to database... -- 07:29:03.773 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:03.773 SQL [12246]: pgsql_db_connect() -- 07:29:03.777 DEBUG [12246]: Database connection successful -- 07:29:03.777 INFO [12246]: _SERVER found -- 07:29:03.777 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:03.777 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:03.777 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:03.777 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 07:29:03.777 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:03.789 INFO [12246]: COREGRADE is stopping... -- 07:29:03.789 DEBUG [12246]: Closing database connection -- 07:29:03.789 SQL [12246]: pgsql_close() -- 07:29:03.858 INFO [12246]: COREGRADE is starting... -- 07:29:03.858 INFO [12246]: Version from config: 1.0 -- 07:29:03.858 DEBUG [12246]: Connecting to database... -- 07:29:03.858 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:03.858 SQL [12246]: pgsql_db_connect() -- 07:29:03.862 DEBUG [12246]: Database connection successful -- 07:29:03.862 INFO [12246]: _SERVER found -- 07:29:03.862 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:03.862 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:03.862 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:03.862 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 07:29:03.862 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:03.874 INFO [12246]: COREGRADE is stopping... -- 07:29:03.874 DEBUG [12246]: Closing database connection -- 07:29:03.874 SQL [12246]: pgsql_close() -- 07:29:03.944 INFO [12246]: COREGRADE is starting... -- 07:29:03.945 INFO [12246]: Version from config: 1.0 -- 07:29:03.945 DEBUG [12246]: Connecting to database... -- 07:29:03.945 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:29:03.945 SQL [12246]: pgsql_db_connect() -- 07:29:03.949 DEBUG [12246]: Database connection successful -- 07:29:03.949 INFO [12246]: _SERVER found -- 07:29:03.949 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 07:29:03.949 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:29:03.949 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:29:03.949 INFO [12246]: QUERY_STRING = /assets/customjs/general.js -- 07:29:03.949 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:29:03.960 INFO [12246]: COREGRADE is stopping... -- 07:29:03.960 DEBUG [12246]: Closing database connection -- 07:29:03.960 SQL [12246]: pgsql_close() -- 07:49:04.178 INFO [12250]: COREGRADE is starting... -- 07:49:04.179 INFO [12250]: Version from config: 1.0 -- 07:49:04.179 DEBUG [12250]: Connecting to database... -- 07:49:04.179 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:04.179 SQL [12250]: pgsql_db_connect() -- 07:49:04.184 DEBUG [12250]: Database connection successful -- 07:49:04.184 INFO [12250]: _SERVER found -- 07:49:04.184 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 07:49:04.184 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:04.184 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=0gpt959q61ra4dnobm49460f42aj6pqv -- 07:49:04.184 INFO [12250]: QUERY_STRING = /logout -- 07:49:04.184 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:04.219 INFO [12250]: COREGRADE is stopping... -- 07:49:04.219 DEBUG [12250]: Closing database connection -- 07:49:04.219 SQL [12250]: pgsql_close() -- 07:49:04.301 INFO [12250]: COREGRADE is starting... -- 07:49:04.301 INFO [12250]: Version from config: 1.0 -- 07:49:04.301 DEBUG [12250]: Connecting to database... -- 07:49:04.301 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:04.301 SQL [12250]: pgsql_db_connect() -- 07:49:04.305 DEBUG [12250]: Database connection successful -- 07:49:04.305 INFO [12250]: _SERVER found -- 07:49:04.305 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 07:49:04.305 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:04.305 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:04.305 INFO [12250]: QUERY_STRING = /start -- 07:49:04.305 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:04.340 INFO [12250]: COREGRADE is stopping... -- 07:49:04.340 DEBUG [12250]: Closing database connection -- 07:49:04.340 SQL [12250]: pgsql_close() -- 07:49:04.466 INFO [12249]: COREGRADE is starting... -- 07:49:04.466 INFO [12249]: Version from config: 1.0 -- 07:49:04.467 DEBUG [12249]: Connecting to database... -- 07:49:04.467 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:04.467 SQL [12249]: pgsql_db_connect() -- 07:49:04.471 DEBUG [12249]: Database connection successful -- 07:49:04.471 INFO [12249]: _SERVER found -- 07:49:04.471 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 07:49:04.471 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:04.471 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:04.471 INFO [12249]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 07:49:04.471 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:04.484 INFO [12249]: COREGRADE is stopping... -- 07:49:04.484 DEBUG [12249]: Closing database connection -- 07:49:04.484 SQL [12249]: pgsql_close() -- 07:49:04.490 INFO [12250]: COREGRADE is starting... -- 07:49:04.490 INFO [12250]: Version from config: 1.0 -- 07:49:04.490 DEBUG [12250]: Connecting to database... -- 07:49:04.490 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:04.490 SQL [12250]: pgsql_db_connect() -- 07:49:04.494 DEBUG [12250]: Database connection successful -- 07:49:04.494 INFO [12250]: _SERVER found -- 07:49:04.494 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 07:49:04.494 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:04.494 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:04.494 INFO [12250]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 07:49:04.494 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:04.506 INFO [12250]: COREGRADE is stopping... -- 07:49:04.506 DEBUG [12250]: Closing database connection -- 07:49:04.506 SQL [12250]: pgsql_close() -- 07:49:04.537 INFO [12249]: COREGRADE is starting... -- 07:49:04.537 INFO [12249]: Version from config: 1.0 -- 07:49:04.537 DEBUG [12249]: Connecting to database... -- 07:49:04.537 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:04.537 SQL [12249]: pgsql_db_connect() -- 07:49:04.542 DEBUG [12249]: Database connection successful -- 07:49:04.542 INFO [12249]: _SERVER found -- 07:49:04.542 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 07:49:04.542 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:04.542 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:04.542 INFO [12249]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 07:49:04.542 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:04.553 INFO [12249]: COREGRADE is stopping... -- 07:49:04.553 DEBUG [12249]: Closing database connection -- 07:49:04.553 SQL [12249]: pgsql_close() -- 07:49:04.563 INFO [12249]: COREGRADE is starting... -- 07:49:04.564 INFO [12249]: Version from config: 1.0 -- 07:49:04.564 DEBUG [12249]: Connecting to database... -- 07:49:04.564 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:04.564 SQL [12249]: pgsql_db_connect() -- 07:49:04.574 INFO [12250]: COREGRADE is starting... -- 07:49:04.574 INFO [12250]: Version from config: 1.0 -- 07:49:04.574 DEBUG [12250]: Connecting to database... -- 07:49:04.574 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:04.574 SQL [12250]: pgsql_db_connect() -- 07:49:04.568 DEBUG [12249]: Database connection successful -- 07:49:04.568 INFO [12249]: _SERVER found -- 07:49:04.568 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 07:49:04.568 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:04.568 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:04.568 INFO [12249]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 07:49:04.568 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:04.579 INFO [12249]: COREGRADE is stopping... -- 07:49:04.579 DEBUG [12249]: Closing database connection -- 07:49:04.579 SQL [12249]: pgsql_close() -- 07:49:04.578 DEBUG [12250]: Database connection successful -- 07:49:04.578 INFO [12250]: _SERVER found -- 07:49:04.578 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 07:49:04.578 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:04.578 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:04.578 INFO [12250]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 07:49:04.578 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:04.589 INFO [12250]: COREGRADE is stopping... -- 07:49:04.589 DEBUG [12250]: Closing database connection -- 07:49:04.589 SQL [12250]: pgsql_close() -- 07:49:04.634 INFO [12249]: COREGRADE is starting... -- 07:49:04.634 INFO [12249]: Version from config: 1.0 -- 07:49:04.634 DEBUG [12249]: Connecting to database... -- 07:49:04.634 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:04.634 SQL [12249]: pgsql_db_connect() -- 07:49:04.638 DEBUG [12249]: Database connection successful -- 07:49:04.638 INFO [12249]: _SERVER found -- 07:49:04.638 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 07:49:04.638 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:04.638 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:04.638 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 07:49:04.638 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:04.650 INFO [12249]: COREGRADE is stopping... -- 07:49:04.650 DEBUG [12249]: Closing database connection -- 07:49:04.650 SQL [12249]: pgsql_close() -- 07:49:04.659 INFO [12249]: COREGRADE is starting... -- 07:49:04.659 INFO [12250]: COREGRADE is starting... -- 07:49:04.660 INFO [12250]: Version from config: 1.0 -- 07:49:04.660 DEBUG [12250]: Connecting to database... -- 07:49:04.660 INFO [12249]: Version from config: 1.0 -- 07:49:04.660 DEBUG [12249]: Connecting to database... -- 07:49:04.660 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:04.660 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:04.660 SQL [12250]: pgsql_db_connect() -- 07:49:04.660 SQL [12249]: pgsql_db_connect() -- 07:49:04.664 DEBUG [12249]: Database connection successful -- 07:49:04.664 INFO [12249]: _SERVER found -- 07:49:04.664 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 07:49:04.664 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:04.664 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:04.664 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 07:49:04.664 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:04.675 INFO [12249]: COREGRADE is stopping... -- 07:49:04.664 DEBUG [12250]: Database connection successful -- 07:49:04.664 INFO [12250]: _SERVER found -- 07:49:04.664 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 07:49:04.664 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:04.664 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:04.664 INFO [12250]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 07:49:04.664 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:04.675 INFO [12250]: COREGRADE is stopping... -- 07:49:04.675 DEBUG [12249]: Closing database connection -- 07:49:04.675 DEBUG [12250]: Closing database connection -- 07:49:04.675 SQL [12249]: pgsql_close() -- 07:49:04.675 SQL [12250]: pgsql_close() -- 07:49:04.730 INFO [12249]: COREGRADE is starting... -- 07:49:04.730 INFO [12249]: Version from config: 1.0 -- 07:49:04.730 DEBUG [12249]: Connecting to database... -- 07:49:04.730 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:04.730 SQL [12249]: pgsql_db_connect() -- 07:49:04.744 INFO [12250]: COREGRADE is starting... -- 07:49:04.744 INFO [12250]: Version from config: 1.0 -- 07:49:04.744 DEBUG [12250]: Connecting to database... -- 07:49:04.744 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:04.744 SQL [12250]: pgsql_db_connect() -- 07:49:04.734 DEBUG [12249]: Database connection successful -- 07:49:04.735 INFO [12249]: _SERVER found -- 07:49:04.735 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 07:49:04.735 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:04.735 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:04.735 INFO [12249]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 07:49:04.735 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:04.746 INFO [12249]: COREGRADE is stopping... -- 07:49:04.746 DEBUG [12249]: Closing database connection -- 07:49:04.746 SQL [12249]: pgsql_close() -- 07:49:04.755 INFO [12249]: COREGRADE is starting... -- 07:49:04.756 INFO [12249]: Version from config: 1.0 -- 07:49:04.756 DEBUG [12249]: Connecting to database... -- 07:49:04.756 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:04.756 SQL [12249]: pgsql_db_connect() -- 07:49:04.749 DEBUG [12250]: Database connection successful -- 07:49:04.749 INFO [12250]: _SERVER found -- 07:49:04.749 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 07:49:04.749 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:04.749 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:04.749 INFO [12250]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 07:49:04.749 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:04.760 INFO [12250]: COREGRADE is stopping... -- 07:49:04.760 DEBUG [12250]: Closing database connection -- 07:49:04.760 SQL [12250]: pgsql_close() -- 07:49:04.760 DEBUG [12249]: Database connection successful -- 07:49:04.760 INFO [12249]: _SERVER found -- 07:49:04.760 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 07:49:04.760 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:04.760 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:04.760 INFO [12249]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 07:49:04.760 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:04.771 INFO [12249]: COREGRADE is stopping... -- 07:49:04.772 DEBUG [12249]: Closing database connection -- 07:49:04.772 SQL [12249]: pgsql_close() -- 07:49:04.826 INFO [12249]: COREGRADE is starting... -- 07:49:04.827 INFO [12249]: Version from config: 1.0 -- 07:49:04.827 DEBUG [12249]: Connecting to database... -- 07:49:04.827 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:04.827 SQL [12249]: pgsql_db_connect() -- 07:49:04.828 INFO [12250]: COREGRADE is starting... -- 07:49:04.829 INFO [12250]: Version from config: 1.0 -- 07:49:04.829 DEBUG [12250]: Connecting to database... -- 07:49:04.829 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:04.829 SQL [12250]: pgsql_db_connect() -- 07:49:04.831 DEBUG [12249]: Database connection successful -- 07:49:04.831 INFO [12249]: _SERVER found -- 07:49:04.831 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 07:49:04.831 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:04.831 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:04.831 INFO [12249]: QUERY_STRING = /assets/js/pages/dashboard.js -- 07:49:04.831 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:04.843 INFO [12249]: COREGRADE is stopping... -- 07:49:04.843 DEBUG [12249]: Closing database connection -- 07:49:04.843 SQL [12249]: pgsql_close() -- 07:49:04.844 INFO [12347]: COREGRADE is starting... -- 07:49:04.832 DEBUG [12250]: Database connection successful -- 07:49:04.832 INFO [12250]: _SERVER found -- 07:49:04.832 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 07:49:04.832 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:04.832 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:04.832 INFO [12250]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 07:49:04.832 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:04.844 INFO [12250]: COREGRADE is stopping... -- 07:49:04.844 DEBUG [12250]: Closing database connection -- 07:49:04.844 SQL [12250]: pgsql_close() -- 07:49:04.844 INFO [12347]: Version from config: 1.0 -- 07:49:04.844 DEBUG [12347]: Connecting to database... -- 07:49:04.845 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:04.845 SQL [12347]: pgsql_db_connect() -- 07:49:04.849 DEBUG [12347]: Database connection successful -- 07:49:04.849 INFO [12347]: _SERVER found -- 07:49:04.849 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 07:49:04.849 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:04.849 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:04.849 INFO [12347]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 07:49:04.849 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:04.862 INFO [12347]: COREGRADE is stopping... -- 07:49:04.862 DEBUG [12347]: Closing database connection -- 07:49:04.862 SQL [12347]: pgsql_close() -- 07:49:04.913 INFO [12250]: COREGRADE is starting... -- 07:49:04.913 INFO [12250]: Version from config: 1.0 -- 07:49:04.913 DEBUG [12250]: Connecting to database... -- 07:49:04.913 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:04.913 SQL [12250]: pgsql_db_connect() -- 07:49:04.914 INFO [12347]: COREGRADE is starting... -- 07:49:04.915 INFO [12347]: Version from config: 1.0 -- 07:49:04.915 DEBUG [12347]: Connecting to database... -- 07:49:04.915 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:04.915 SQL [12347]: pgsql_db_connect() -- 07:49:04.917 DEBUG [12250]: Database connection successful -- 07:49:04.917 INFO [12250]: _SERVER found -- 07:49:04.917 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 07:49:04.917 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:04.917 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:04.917 INFO [12250]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 07:49:04.917 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:04.929 INFO [12250]: COREGRADE is stopping... -- 07:49:04.929 DEBUG [12250]: Closing database connection -- 07:49:04.929 SQL [12250]: pgsql_close() -- 07:49:04.918 DEBUG [12347]: Database connection successful -- 07:49:04.918 INFO [12347]: _SERVER found -- 07:49:04.918 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 07:49:04.918 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:04.918 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:04.918 INFO [12347]: QUERY_STRING = /assets/js/pages/picker_date.js -- 07:49:04.918 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:04.930 INFO [12347]: COREGRADE is stopping... -- 07:49:04.930 DEBUG [12347]: Closing database connection -- 07:49:04.930 SQL [12347]: pgsql_close() -- 07:49:04.931 INFO [12249]: COREGRADE is starting... -- 07:49:04.931 INFO [12249]: Version from config: 1.0 -- 07:49:04.931 DEBUG [12249]: Connecting to database... -- 07:49:04.931 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:04.931 SQL [12249]: pgsql_db_connect() -- 07:49:04.936 DEBUG [12249]: Database connection successful -- 07:49:04.936 INFO [12249]: _SERVER found -- 07:49:04.936 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 07:49:04.936 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:04.936 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:04.936 INFO [12249]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 07:49:04.936 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:04.947 INFO [12249]: COREGRADE is stopping... -- 07:49:04.947 DEBUG [12249]: Closing database connection -- 07:49:04.947 SQL [12249]: pgsql_close() -- 07:49:04.997 INFO [12250]: COREGRADE is starting... -- 07:49:04.998 INFO [12250]: Version from config: 1.0 -- 07:49:04.998 DEBUG [12250]: Connecting to database... -- 07:49:04.998 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:04.998 SQL [12250]: pgsql_db_connect() -- 07:49:04.000 INFO [12249]: COREGRADE is starting... -- 07:49:04.000 INFO [12249]: Version from config: 1.0 -- 07:49:04.000 DEBUG [12249]: Connecting to database... -- 07:49:04.000 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:04.000 SQL [12249]: pgsql_db_connect() -- 07:49:05.002 DEBUG [12250]: Database connection successful -- 07:49:05.002 INFO [12250]: _SERVER found -- 07:49:05.002 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 07:49:05.002 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:05.002 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:05.002 INFO [12250]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 07:49:05.002 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:05.013 INFO [12250]: COREGRADE is stopping... -- 07:49:05.013 DEBUG [12250]: Closing database connection -- 07:49:05.013 SQL [12250]: pgsql_close() -- 07:49:05.004 DEBUG [12249]: Database connection successful -- 07:49:05.004 INFO [12249]: _SERVER found -- 07:49:05.004 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 07:49:05.004 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:05.004 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:05.004 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 07:49:05.004 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:05.016 INFO [12249]: COREGRADE is stopping... -- 07:49:05.016 DEBUG [12249]: Closing database connection -- 07:49:05.016 SQL [12249]: pgsql_close() -- 07:49:05.017 INFO [12347]: COREGRADE is starting... -- 07:49:05.017 INFO [12347]: Version from config: 1.0 -- 07:49:05.017 DEBUG [12347]: Connecting to database... -- 07:49:05.017 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:05.017 SQL [12347]: pgsql_db_connect() -- 07:49:05.021 DEBUG [12347]: Database connection successful -- 07:49:05.021 INFO [12347]: _SERVER found -- 07:49:05.021 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 07:49:05.021 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:05.021 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:05.021 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 07:49:05.021 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:05.033 INFO [12347]: COREGRADE is stopping... -- 07:49:05.033 DEBUG [12347]: Closing database connection -- 07:49:05.033 SQL [12347]: pgsql_close() -- 07:49:05.082 INFO [12250]: COREGRADE is starting... -- 07:49:05.083 INFO [12250]: Version from config: 1.0 -- 07:49:05.083 DEBUG [12250]: Connecting to database... -- 07:49:05.083 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:05.083 SQL [12250]: pgsql_db_connect() -- 07:49:05.084 INFO [12347]: COREGRADE is starting... -- 07:49:05.085 INFO [12347]: Version from config: 1.0 -- 07:49:05.085 DEBUG [12347]: Connecting to database... -- 07:49:05.085 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:05.085 SQL [12347]: pgsql_db_connect() -- 07:49:05.087 DEBUG [12250]: Database connection successful -- 07:49:05.087 INFO [12250]: _SERVER found -- 07:49:05.087 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 07:49:05.087 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:05.087 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:05.087 INFO [12250]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 07:49:05.087 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:05.098 INFO [12250]: COREGRADE is stopping... -- 07:49:05.098 DEBUG [12250]: Closing database connection -- 07:49:05.098 SQL [12250]: pgsql_close() -- 07:49:05.088 DEBUG [12347]: Database connection successful -- 07:49:05.088 INFO [12347]: _SERVER found -- 07:49:05.088 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 07:49:05.088 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:05.088 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:05.088 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 07:49:05.088 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:05.100 INFO [12347]: COREGRADE is stopping... -- 07:49:05.100 DEBUG [12347]: Closing database connection -- 07:49:05.100 SQL [12347]: pgsql_close() -- 07:49:05.131 INFO [12249]: COREGRADE is starting... -- 07:49:05.132 INFO [12249]: Version from config: 1.0 -- 07:49:05.132 DEBUG [12249]: Connecting to database... -- 07:49:05.132 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:05.132 SQL [12249]: pgsql_db_connect() -- 07:49:05.136 DEBUG [12249]: Database connection successful -- 07:49:05.136 INFO [12249]: _SERVER found -- 07:49:05.136 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 07:49:05.136 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:05.136 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:05.136 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 07:49:05.136 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:05.147 INFO [12249]: COREGRADE is stopping... -- 07:49:05.147 DEBUG [12249]: Closing database connection -- 07:49:05.147 SQL [12249]: pgsql_close() -- 07:49:05.168 INFO [12249]: COREGRADE is starting... -- 07:49:05.169 INFO [12249]: Version from config: 1.0 -- 07:49:05.169 DEBUG [12249]: Connecting to database... -- 07:49:05.169 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:05.169 SQL [12249]: pgsql_db_connect() -- 07:49:05.169 INFO [12250]: COREGRADE is starting... -- 07:49:05.169 INFO [12250]: Version from config: 1.0 -- 07:49:05.169 DEBUG [12250]: Connecting to database... -- 07:49:05.169 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:05.169 SQL [12250]: pgsql_db_connect() -- 07:49:05.173 DEBUG [12249]: Database connection successful -- 07:49:05.173 INFO [12249]: _SERVER found -- 07:49:05.173 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 07:49:05.173 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:05.173 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:05.173 INFO [12249]: QUERY_STRING = /assets/customjs/general.js -- 07:49:05.173 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:05.185 INFO [12249]: COREGRADE is stopping... -- 07:49:05.185 DEBUG [12249]: Closing database connection -- 07:49:05.185 SQL [12249]: pgsql_close() -- 07:49:05.173 DEBUG [12250]: Database connection successful -- 07:49:05.173 INFO [12250]: _SERVER found -- 07:49:05.173 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 07:49:05.173 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:05.173 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:05.173 INFO [12250]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 07:49:05.173 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:05.185 INFO [12250]: COREGRADE is stopping... -- 07:49:05.185 DEBUG [12250]: Closing database connection -- 07:49:05.185 SQL [12250]: pgsql_close() -- 07:49:05.257 INFO [12250]: COREGRADE is starting... -- 07:49:05.258 INFO [12250]: Version from config: 1.0 -- 07:49:05.258 DEBUG [12250]: Connecting to database... -- 07:49:05.258 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:05.258 SQL [12250]: pgsql_db_connect() -- 07:49:05.262 DEBUG [12250]: Database connection successful -- 07:49:05.262 INFO [12250]: _SERVER found -- 07:49:05.262 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 07:49:05.262 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:05.262 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:05.262 INFO [12250]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 07:49:05.262 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:05.273 INFO [12250]: COREGRADE is stopping... -- 07:49:05.273 DEBUG [12250]: Closing database connection -- 07:49:05.273 SQL [12250]: pgsql_close() -- 07:49:05.342 INFO [12250]: COREGRADE is starting... -- 07:49:05.342 INFO [12250]: Version from config: 1.0 -- 07:49:05.342 DEBUG [12250]: Connecting to database... -- 07:49:05.342 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:05.342 SQL [12250]: pgsql_db_connect() -- 07:49:05.346 DEBUG [12250]: Database connection successful -- 07:49:05.346 INFO [12250]: _SERVER found -- 07:49:05.346 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 07:49:05.346 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:05.346 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:05.346 INFO [12250]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 07:49:05.346 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:05.358 INFO [12250]: COREGRADE is stopping... -- 07:49:05.358 DEBUG [12250]: Closing database connection -- 07:49:05.358 SQL [12250]: pgsql_close() -- 07:49:05.427 INFO [12250]: COREGRADE is starting... -- 07:49:05.427 INFO [12250]: Version from config: 1.0 -- 07:49:05.427 DEBUG [12250]: Connecting to database... -- 07:49:05.427 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:05.427 SQL [12250]: pgsql_db_connect() -- 07:49:05.431 DEBUG [12250]: Database connection successful -- 07:49:05.431 INFO [12250]: _SERVER found -- 07:49:05.431 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 07:49:05.431 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:05.431 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:05.431 INFO [12250]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 07:49:05.431 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:05.443 INFO [12250]: COREGRADE is stopping... -- 07:49:05.443 DEBUG [12250]: Closing database connection -- 07:49:05.443 SQL [12250]: pgsql_close() -- 07:49:05.512 INFO [12250]: COREGRADE is starting... -- 07:49:05.512 INFO [12250]: Version from config: 1.0 -- 07:49:05.512 DEBUG [12250]: Connecting to database... -- 07:49:05.512 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:05.512 SQL [12250]: pgsql_db_connect() -- 07:49:05.516 DEBUG [12250]: Database connection successful -- 07:49:05.516 INFO [12250]: _SERVER found -- 07:49:05.516 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 07:49:05.516 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:05.516 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:05.516 INFO [12250]: QUERY_STRING = /assets/js/pages/dashboard.js -- 07:49:05.516 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:05.527 INFO [12250]: COREGRADE is stopping... -- 07:49:05.527 DEBUG [12250]: Closing database connection -- 07:49:05.527 SQL [12250]: pgsql_close() -- 07:49:05.597 INFO [12250]: COREGRADE is starting... -- 07:49:05.597 INFO [12250]: Version from config: 1.0 -- 07:49:05.597 DEBUG [12250]: Connecting to database... -- 07:49:05.597 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:05.597 SQL [12250]: pgsql_db_connect() -- 07:49:05.601 DEBUG [12250]: Database connection successful -- 07:49:05.601 INFO [12250]: _SERVER found -- 07:49:05.601 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 07:49:05.601 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:05.601 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:05.601 INFO [12250]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 07:49:05.601 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:05.613 INFO [12250]: COREGRADE is stopping... -- 07:49:05.613 DEBUG [12250]: Closing database connection -- 07:49:05.613 SQL [12250]: pgsql_close() -- 07:49:05.681 INFO [12250]: COREGRADE is starting... -- 07:49:05.682 INFO [12250]: Version from config: 1.0 -- 07:49:05.682 DEBUG [12250]: Connecting to database... -- 07:49:05.682 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:05.682 SQL [12250]: pgsql_db_connect() -- 07:49:05.686 DEBUG [12250]: Database connection successful -- 07:49:05.686 INFO [12250]: _SERVER found -- 07:49:05.686 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 07:49:05.686 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:05.686 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:05.686 INFO [12250]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 07:49:05.686 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:05.697 INFO [12250]: COREGRADE is stopping... -- 07:49:05.697 DEBUG [12250]: Closing database connection -- 07:49:05.697 SQL [12250]: pgsql_close() -- 07:49:05.766 INFO [12250]: COREGRADE is starting... -- 07:49:05.766 INFO [12250]: Version from config: 1.0 -- 07:49:05.766 DEBUG [12250]: Connecting to database... -- 07:49:05.766 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:05.766 SQL [12250]: pgsql_db_connect() -- 07:49:05.770 DEBUG [12250]: Database connection successful -- 07:49:05.770 INFO [12250]: _SERVER found -- 07:49:05.770 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 07:49:05.770 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:05.770 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:05.770 INFO [12250]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 07:49:05.770 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:05.782 INFO [12250]: COREGRADE is stopping... -- 07:49:05.782 DEBUG [12250]: Closing database connection -- 07:49:05.782 SQL [12250]: pgsql_close() -- 07:49:05.851 INFO [12250]: COREGRADE is starting... -- 07:49:05.851 INFO [12250]: Version from config: 1.0 -- 07:49:05.851 DEBUG [12250]: Connecting to database... -- 07:49:05.851 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:05.851 SQL [12250]: pgsql_db_connect() -- 07:49:05.855 DEBUG [12250]: Database connection successful -- 07:49:05.855 INFO [12250]: _SERVER found -- 07:49:05.855 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 07:49:05.855 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:05.855 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:05.855 INFO [12250]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 07:49:05.855 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:05.866 INFO [12250]: COREGRADE is stopping... -- 07:49:05.866 DEBUG [12250]: Closing database connection -- 07:49:05.866 SQL [12250]: pgsql_close() -- 07:49:05.935 INFO [12250]: COREGRADE is starting... -- 07:49:05.935 INFO [12250]: Version from config: 1.0 -- 07:49:05.935 DEBUG [12250]: Connecting to database... -- 07:49:05.935 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:05.935 SQL [12250]: pgsql_db_connect() -- 07:49:05.939 DEBUG [12250]: Database connection successful -- 07:49:05.939 INFO [12250]: _SERVER found -- 07:49:05.939 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 07:49:05.939 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:05.939 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:05.939 INFO [12250]: QUERY_STRING = /assets/js/pages/picker_date.js -- 07:49:05.939 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:05.951 INFO [12250]: COREGRADE is stopping... -- 07:49:05.951 DEBUG [12250]: Closing database connection -- 07:49:05.951 SQL [12250]: pgsql_close() -- 07:49:06.019 INFO [12250]: COREGRADE is starting... -- 07:49:06.020 INFO [12250]: Version from config: 1.0 -- 07:49:06.020 DEBUG [12250]: Connecting to database... -- 07:49:06.020 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:06.020 SQL [12250]: pgsql_db_connect() -- 07:49:06.024 DEBUG [12250]: Database connection successful -- 07:49:06.024 INFO [12250]: _SERVER found -- 07:49:06.024 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 07:49:06.024 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:06.024 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:06.024 INFO [12250]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 07:49:06.024 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:06.035 INFO [12250]: COREGRADE is stopping... -- 07:49:06.035 DEBUG [12250]: Closing database connection -- 07:49:06.035 SQL [12250]: pgsql_close() -- 07:49:06.104 INFO [12250]: COREGRADE is starting... -- 07:49:06.104 INFO [12250]: Version from config: 1.0 -- 07:49:06.104 DEBUG [12250]: Connecting to database... -- 07:49:06.104 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:06.104 SQL [12250]: pgsql_db_connect() -- 07:49:06.108 DEBUG [12250]: Database connection successful -- 07:49:06.108 INFO [12250]: _SERVER found -- 07:49:06.108 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 07:49:06.108 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:06.108 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:06.108 INFO [12250]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 07:49:06.108 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:06.119 INFO [12250]: COREGRADE is stopping... -- 07:49:06.119 DEBUG [12250]: Closing database connection -- 07:49:06.119 SQL [12250]: pgsql_close() -- 07:49:06.188 INFO [12250]: COREGRADE is starting... -- 07:49:06.188 INFO [12250]: Version from config: 1.0 -- 07:49:06.188 DEBUG [12250]: Connecting to database... -- 07:49:06.188 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:06.188 SQL [12250]: pgsql_db_connect() -- 07:49:06.192 DEBUG [12250]: Database connection successful -- 07:49:06.192 INFO [12250]: _SERVER found -- 07:49:06.192 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 07:49:06.192 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:06.192 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:06.192 INFO [12250]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 07:49:06.192 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:06.204 INFO [12250]: COREGRADE is stopping... -- 07:49:06.204 DEBUG [12250]: Closing database connection -- 07:49:06.204 SQL [12250]: pgsql_close() -- 07:49:06.272 INFO [12250]: COREGRADE is starting... -- 07:49:06.273 INFO [12250]: Version from config: 1.0 -- 07:49:06.273 DEBUG [12250]: Connecting to database... -- 07:49:06.273 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:06.273 SQL [12250]: pgsql_db_connect() -- 07:49:06.277 DEBUG [12250]: Database connection successful -- 07:49:06.277 INFO [12250]: _SERVER found -- 07:49:06.277 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 07:49:06.277 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:06.277 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:06.277 INFO [12250]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 07:49:06.277 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:06.288 INFO [12250]: COREGRADE is stopping... -- 07:49:06.288 DEBUG [12250]: Closing database connection -- 07:49:06.288 SQL [12250]: pgsql_close() -- 07:49:06.357 INFO [12250]: COREGRADE is starting... -- 07:49:06.357 INFO [12250]: Version from config: 1.0 -- 07:49:06.357 DEBUG [12250]: Connecting to database... -- 07:49:06.357 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:06.357 SQL [12250]: pgsql_db_connect() -- 07:49:06.361 DEBUG [12250]: Database connection successful -- 07:49:06.361 INFO [12250]: _SERVER found -- 07:49:06.361 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 07:49:06.361 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:06.361 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:06.361 INFO [12250]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 07:49:06.361 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:06.372 INFO [12250]: COREGRADE is stopping... -- 07:49:06.372 DEBUG [12250]: Closing database connection -- 07:49:06.372 SQL [12250]: pgsql_close() -- 07:49:06.451 INFO [12250]: COREGRADE is starting... -- 07:49:06.451 INFO [12250]: Version from config: 1.0 -- 07:49:06.451 DEBUG [12250]: Connecting to database... -- 07:49:06.451 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:06.451 SQL [12250]: pgsql_db_connect() -- 07:49:06.455 DEBUG [12250]: Database connection successful -- 07:49:06.455 INFO [12250]: _SERVER found -- 07:49:06.455 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 07:49:06.455 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:06.455 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:06.455 INFO [12250]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 07:49:06.455 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:06.467 INFO [12250]: COREGRADE is stopping... -- 07:49:06.467 DEBUG [12250]: Closing database connection -- 07:49:06.467 SQL [12250]: pgsql_close() -- 07:49:06.536 INFO [12250]: COREGRADE is starting... -- 07:49:06.536 INFO [12250]: Version from config: 1.0 -- 07:49:06.536 DEBUG [12250]: Connecting to database... -- 07:49:06.536 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:06.536 SQL [12250]: pgsql_db_connect() -- 07:49:06.540 DEBUG [12250]: Database connection successful -- 07:49:06.540 INFO [12250]: _SERVER found -- 07:49:06.540 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 07:49:06.540 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:06.540 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:06.540 INFO [12250]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 07:49:06.540 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:06.551 INFO [12250]: COREGRADE is stopping... -- 07:49:06.551 DEBUG [12250]: Closing database connection -- 07:49:06.551 SQL [12250]: pgsql_close() -- 07:49:06.622 INFO [12250]: COREGRADE is starting... -- 07:49:06.622 INFO [12250]: Version from config: 1.0 -- 07:49:06.622 DEBUG [12250]: Connecting to database... -- 07:49:06.622 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:49:06.622 SQL [12250]: pgsql_db_connect() -- 07:49:06.626 DEBUG [12250]: Database connection successful -- 07:49:06.626 INFO [12250]: _SERVER found -- 07:49:06.626 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 07:49:06.626 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:49:06.626 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 07:49:06.626 INFO [12250]: QUERY_STRING = /assets/customjs/general.js -- 07:49:06.626 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 07:49:06.637 INFO [12250]: COREGRADE is stopping... -- 07:49:06.637 DEBUG [12250]: Closing database connection -- 07:49:06.637 SQL [12250]: pgsql_close() -- 08:09:06.860 INFO [12334]: COREGRADE is starting... -- 08:09:06.860 INFO [12334]: Version from config: 1.0 -- 08:09:06.860 DEBUG [12334]: Connecting to database... -- 08:09:06.860 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:06.860 SQL [12334]: pgsql_db_connect() -- 08:09:06.865 DEBUG [12334]: Database connection successful -- 08:09:06.865 INFO [12334]: _SERVER found -- 08:09:06.865 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 08:09:06.865 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:06.865 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=vdlrn65u48c7h54j21p1dcktqmjjgdvc -- 08:09:06.865 INFO [12334]: QUERY_STRING = /logout -- 08:09:06.865 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:06.900 INFO [12334]: COREGRADE is stopping... -- 08:09:06.900 DEBUG [12334]: Closing database connection -- 08:09:06.900 SQL [12334]: pgsql_close() -- 08:09:06.979 INFO [12334]: COREGRADE is starting... -- 08:09:06.979 INFO [12334]: Version from config: 1.0 -- 08:09:06.979 DEBUG [12334]: Connecting to database... -- 08:09:06.979 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:06.979 SQL [12334]: pgsql_db_connect() -- 08:09:06.983 DEBUG [12334]: Database connection successful -- 08:09:06.983 INFO [12334]: _SERVER found -- 08:09:06.983 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 08:09:06.983 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:06.983 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:06.983 INFO [12334]: QUERY_STRING = /start -- 08:09:06.983 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:07.017 INFO [12334]: COREGRADE is stopping... -- 08:09:07.017 DEBUG [12334]: Closing database connection -- 08:09:07.017 SQL [12334]: pgsql_close() -- 08:09:07.144 INFO [12334]: COREGRADE is starting... -- 08:09:07.145 INFO [12334]: Version from config: 1.0 -- 08:09:07.145 DEBUG [12334]: Connecting to database... -- 08:09:07.145 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:07.145 SQL [12334]: pgsql_db_connect() -- 08:09:07.149 DEBUG [12334]: Database connection successful -- 08:09:07.149 INFO [12334]: _SERVER found -- 08:09:07.149 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 08:09:07.149 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:07.149 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:07.149 INFO [12334]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 08:09:07.149 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:07.160 INFO [12334]: COREGRADE is stopping... -- 08:09:07.160 DEBUG [12334]: Closing database connection -- 08:09:07.160 SQL [12334]: pgsql_close() -- 08:09:07.165 INFO [12334]: COREGRADE is starting... -- 08:09:07.165 INFO [12334]: Version from config: 1.0 -- 08:09:07.165 DEBUG [12334]: Connecting to database... -- 08:09:07.165 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:07.165 SQL [12334]: pgsql_db_connect() -- 08:09:07.169 DEBUG [12334]: Database connection successful -- 08:09:07.169 INFO [12334]: _SERVER found -- 08:09:07.169 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 08:09:07.169 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:07.169 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:07.169 INFO [12334]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 08:09:07.169 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:07.181 INFO [12334]: COREGRADE is stopping... -- 08:09:07.181 DEBUG [12334]: Closing database connection -- 08:09:07.181 SQL [12334]: pgsql_close() -- 08:09:07.219 INFO [12334]: COREGRADE is starting... -- 08:09:07.220 INFO [12334]: Version from config: 1.0 -- 08:09:07.220 DEBUG [12334]: Connecting to database... -- 08:09:07.220 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:07.220 SQL [12334]: pgsql_db_connect() -- 08:09:07.224 DEBUG [12334]: Database connection successful -- 08:09:07.224 INFO [12334]: _SERVER found -- 08:09:07.224 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 08:09:07.224 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:07.224 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:07.224 INFO [12334]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 08:09:07.224 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:07.235 INFO [12334]: COREGRADE is stopping... -- 08:09:07.235 DEBUG [12334]: Closing database connection -- 08:09:07.235 SQL [12334]: pgsql_close() -- 08:09:07.238 INFO [12334]: COREGRADE is starting... -- 08:09:07.238 INFO [12334]: Version from config: 1.0 -- 08:09:07.238 DEBUG [12334]: Connecting to database... -- 08:09:07.238 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:07.238 SQL [12334]: pgsql_db_connect() -- 08:09:07.247 INFO [12305]: COREGRADE is starting... -- 08:09:07.247 INFO [12305]: Version from config: 1.0 -- 08:09:07.247 DEBUG [12305]: Connecting to database... -- 08:09:07.247 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:07.247 SQL [12305]: pgsql_db_connect() -- 08:09:07.242 DEBUG [12334]: Database connection successful -- 08:09:07.242 INFO [12334]: _SERVER found -- 08:09:07.242 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 08:09:07.242 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:07.242 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:07.242 INFO [12334]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 08:09:07.242 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:07.254 INFO [12334]: COREGRADE is stopping... -- 08:09:07.254 DEBUG [12334]: Closing database connection -- 08:09:07.254 SQL [12334]: pgsql_close() -- 08:09:07.251 DEBUG [12305]: Database connection successful -- 08:09:07.251 INFO [12305]: _SERVER found -- 08:09:07.251 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 08:09:07.251 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:07.251 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:07.251 INFO [12305]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 08:09:07.251 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:07.264 INFO [12305]: COREGRADE is stopping... -- 08:09:07.264 DEBUG [12305]: Closing database connection -- 08:09:07.264 SQL [12305]: pgsql_close() -- 08:09:07.316 INFO [12305]: COREGRADE is starting... -- 08:09:07.316 INFO [12305]: Version from config: 1.0 -- 08:09:07.316 DEBUG [12305]: Connecting to database... -- 08:09:07.316 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:07.316 SQL [12305]: pgsql_db_connect() -- 08:09:07.331 INFO [12334]: COREGRADE is starting... -- 08:09:07.331 INFO [12334]: Version from config: 1.0 -- 08:09:07.331 DEBUG [12334]: Connecting to database... -- 08:09:07.331 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:07.331 SQL [12334]: pgsql_db_connect() -- 08:09:07.331 INFO [12248]: COREGRADE is starting... -- 08:09:07.331 INFO [12248]: Version from config: 1.0 -- 08:09:07.331 DEBUG [12248]: Connecting to database... -- 08:09:07.331 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:07.331 SQL [12248]: pgsql_db_connect() -- 08:09:07.320 DEBUG [12305]: Database connection successful -- 08:09:07.320 INFO [12305]: _SERVER found -- 08:09:07.320 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 08:09:07.320 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:07.320 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:07.320 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 08:09:07.320 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:07.332 INFO [12305]: COREGRADE is stopping... -- 08:09:07.332 DEBUG [12305]: Closing database connection -- 08:09:07.332 SQL [12305]: pgsql_close() -- 08:09:07.335 DEBUG [12334]: Database connection successful -- 08:09:07.335 INFO [12334]: _SERVER found -- 08:09:07.335 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 08:09:07.335 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:07.335 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:07.335 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 08:09:07.335 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:07.347 INFO [12334]: COREGRADE is stopping... -- 08:09:07.347 DEBUG [12334]: Closing database connection -- 08:09:07.347 SQL [12334]: pgsql_close() -- 08:09:07.335 DEBUG [12248]: Database connection successful -- 08:09:07.335 INFO [12248]: _SERVER found -- 08:09:07.335 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 08:09:07.335 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:07.335 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:07.335 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 08:09:07.335 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:07.348 INFO [12248]: COREGRADE is stopping... -- 08:09:07.348 DEBUG [12248]: Closing database connection -- 08:09:07.348 SQL [12248]: pgsql_close() -- 08:09:07.413 INFO [12248]: COREGRADE is starting... -- 08:09:07.413 INFO [12248]: Version from config: 1.0 -- 08:09:07.413 DEBUG [12248]: Connecting to database... -- 08:09:07.413 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:07.413 SQL [12248]: pgsql_db_connect() -- 08:09:07.417 INFO [12334]: COREGRADE is starting... -- 08:09:07.417 INFO [12334]: Version from config: 1.0 -- 08:09:07.417 DEBUG [12334]: Connecting to database... -- 08:09:07.417 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:07.417 SQL [12334]: pgsql_db_connect() -- 08:09:07.424 INFO [12305]: COREGRADE is starting... -- 08:09:07.424 INFO [12305]: Version from config: 1.0 -- 08:09:07.424 DEBUG [12305]: Connecting to database... -- 08:09:07.424 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:07.424 SQL [12305]: pgsql_db_connect() -- 08:09:07.417 DEBUG [12248]: Database connection successful -- 08:09:07.417 INFO [12248]: _SERVER found -- 08:09:07.417 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 08:09:07.417 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:07.417 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:07.417 INFO [12248]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 08:09:07.417 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:07.429 INFO [12248]: COREGRADE is stopping... -- 08:09:07.429 DEBUG [12248]: Closing database connection -- 08:09:07.429 SQL [12248]: pgsql_close() -- 08:09:07.421 DEBUG [12334]: Database connection successful -- 08:09:07.421 INFO [12334]: _SERVER found -- 08:09:07.421 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 08:09:07.421 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:07.421 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:07.421 INFO [12334]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 08:09:07.421 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:07.432 INFO [12334]: COREGRADE is stopping... -- 08:09:07.432 DEBUG [12334]: Closing database connection -- 08:09:07.432 SQL [12334]: pgsql_close() -- 08:09:07.428 DEBUG [12305]: Database connection successful -- 08:09:07.428 INFO [12305]: _SERVER found -- 08:09:07.428 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 08:09:07.428 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:07.428 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:07.428 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 08:09:07.428 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:07.443 INFO [12305]: COREGRADE is stopping... -- 08:09:07.443 DEBUG [12305]: Closing database connection -- 08:09:07.443 SQL [12305]: pgsql_close() -- 08:09:07.498 INFO [12305]: COREGRADE is starting... -- 08:09:07.498 INFO [12305]: Version from config: 1.0 -- 08:09:07.498 DEBUG [12305]: Connecting to database... -- 08:09:07.498 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:07.498 SQL [12305]: pgsql_db_connect() -- 08:09:07.509 INFO [12334]: COREGRADE is starting... -- 08:09:07.509 INFO [12248]: COREGRADE is starting... -- 08:09:07.510 INFO [12248]: Version from config: 1.0 -- 08:09:07.510 DEBUG [12248]: Connecting to database... -- 08:09:07.510 INFO [12334]: Version from config: 1.0 -- 08:09:07.510 DEBUG [12334]: Connecting to database... -- 08:09:07.510 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:07.510 SQL [12248]: pgsql_db_connect() -- 08:09:07.510 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:07.510 SQL [12334]: pgsql_db_connect() -- 08:09:07.503 DEBUG [12305]: Database connection successful -- 08:09:07.503 INFO [12305]: _SERVER found -- 08:09:07.503 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 08:09:07.503 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:07.503 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:07.503 INFO [12305]: QUERY_STRING = /assets/js/pages/dashboard.js -- 08:09:07.503 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:07.514 INFO [12305]: COREGRADE is stopping... -- 08:09:07.514 DEBUG [12305]: Closing database connection -- 08:09:07.514 SQL [12305]: pgsql_close() -- 08:09:07.514 DEBUG [12334]: Database connection successful -- 08:09:07.514 INFO [12334]: _SERVER found -- 08:09:07.514 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 08:09:07.514 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:07.514 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:07.514 INFO [12334]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 08:09:07.514 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:07.525 INFO [12334]: COREGRADE is stopping... -- 08:09:07.525 DEBUG [12334]: Closing database connection -- 08:09:07.526 SQL [12334]: pgsql_close() -- 08:09:07.514 DEBUG [12248]: Database connection successful -- 08:09:07.514 INFO [12248]: _SERVER found -- 08:09:07.514 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 08:09:07.514 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:07.514 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:07.514 INFO [12248]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 08:09:07.514 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:07.526 INFO [12248]: COREGRADE is stopping... -- 08:09:07.526 DEBUG [12248]: Closing database connection -- 08:09:07.526 SQL [12248]: pgsql_close() -- 08:09:07.580 INFO [12334]: COREGRADE is starting... -- 08:09:07.581 INFO [12334]: Version from config: 1.0 -- 08:09:07.581 DEBUG [12334]: Connecting to database... -- 08:09:07.581 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:07.581 SQL [12334]: pgsql_db_connect() -- 08:09:07.592 INFO [12248]: COREGRADE is starting... -- 08:09:07.592 INFO [12248]: Version from config: 1.0 -- 08:09:07.592 DEBUG [12248]: Connecting to database... -- 08:09:07.592 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:07.592 SQL [12248]: pgsql_db_connect() -- 08:09:07.596 INFO [12305]: COREGRADE is starting... -- 08:09:07.596 INFO [12305]: Version from config: 1.0 -- 08:09:07.596 DEBUG [12305]: Connecting to database... -- 08:09:07.596 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:07.596 SQL [12305]: pgsql_db_connect() -- 08:09:07.585 DEBUG [12334]: Database connection successful -- 08:09:07.585 INFO [12334]: _SERVER found -- 08:09:07.585 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 08:09:07.585 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:07.585 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:07.585 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 08:09:07.585 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:07.596 INFO [12334]: COREGRADE is stopping... -- 08:09:07.596 DEBUG [12334]: Closing database connection -- 08:09:07.596 SQL [12334]: pgsql_close() -- 08:09:07.596 DEBUG [12248]: Database connection successful -- 08:09:07.596 INFO [12248]: _SERVER found -- 08:09:07.596 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 08:09:07.596 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:07.596 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:07.596 INFO [12248]: QUERY_STRING = /assets/js/pages/picker_date.js -- 08:09:07.596 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:07.608 INFO [12248]: COREGRADE is stopping... -- 08:09:07.608 DEBUG [12248]: Closing database connection -- 08:09:07.608 SQL [12248]: pgsql_close() -- 08:09:07.600 DEBUG [12305]: Database connection successful -- 08:09:07.600 INFO [12305]: _SERVER found -- 08:09:07.600 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 08:09:07.600 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:07.600 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:07.600 INFO [12305]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 08:09:07.600 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:07.611 INFO [12305]: COREGRADE is stopping... -- 08:09:07.611 DEBUG [12305]: Closing database connection -- 08:09:07.611 SQL [12305]: pgsql_close() -- 08:09:07.662 INFO [12305]: COREGRADE is starting... -- 08:09:07.663 INFO [12305]: Version from config: 1.0 -- 08:09:07.663 DEBUG [12305]: Connecting to database... -- 08:09:07.663 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:07.663 SQL [12305]: pgsql_db_connect() -- 08:09:07.673 INFO [12248]: COREGRADE is starting... -- 08:09:07.674 INFO [12248]: Version from config: 1.0 -- 08:09:07.674 DEBUG [12248]: Connecting to database... -- 08:09:07.674 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:07.674 SQL [12248]: pgsql_db_connect() -- 08:09:07.667 DEBUG [12305]: Database connection successful -- 08:09:07.667 INFO [12305]: _SERVER found -- 08:09:07.667 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 08:09:07.667 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:07.667 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:07.667 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 08:09:07.667 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:07.678 INFO [12305]: COREGRADE is stopping... -- 08:09:07.678 DEBUG [12305]: Closing database connection -- 08:09:07.678 SQL [12305]: pgsql_close() -- 08:09:07.680 INFO [12334]: COREGRADE is starting... -- 08:09:07.680 INFO [12334]: Version from config: 1.0 -- 08:09:07.680 DEBUG [12334]: Connecting to database... -- 08:09:07.680 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:07.680 SQL [12334]: pgsql_db_connect() -- 08:09:07.678 DEBUG [12248]: Database connection successful -- 08:09:07.678 INFO [12248]: _SERVER found -- 08:09:07.678 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 08:09:07.678 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:07.678 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:07.678 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 08:09:07.678 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:07.690 INFO [12248]: COREGRADE is stopping... -- 08:09:07.690 DEBUG [12248]: Closing database connection -- 08:09:07.690 SQL [12248]: pgsql_close() -- 08:09:07.684 DEBUG [12334]: Database connection successful -- 08:09:07.684 INFO [12334]: _SERVER found -- 08:09:07.684 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 08:09:07.684 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:07.684 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:07.684 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 08:09:07.684 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:07.696 INFO [12334]: COREGRADE is stopping... -- 08:09:07.696 DEBUG [12334]: Closing database connection -- 08:09:07.696 SQL [12334]: pgsql_close() -- 08:09:07.744 INFO [12334]: COREGRADE is starting... -- 08:09:07.744 INFO [12334]: Version from config: 1.0 -- 08:09:07.744 DEBUG [12334]: Connecting to database... -- 08:09:07.744 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:07.744 SQL [12334]: pgsql_db_connect() -- 08:09:07.755 INFO [12248]: COREGRADE is starting... -- 08:09:07.755 INFO [12248]: Version from config: 1.0 -- 08:09:07.755 DEBUG [12248]: Connecting to database... -- 08:09:07.755 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:07.756 SQL [12248]: pgsql_db_connect() -- 08:09:07.748 DEBUG [12334]: Database connection successful -- 08:09:07.748 INFO [12334]: _SERVER found -- 08:09:07.748 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 08:09:07.748 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:07.748 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:07.748 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 08:09:07.748 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:07.760 INFO [12334]: COREGRADE is stopping... -- 08:09:07.760 DEBUG [12334]: Closing database connection -- 08:09:07.760 SQL [12334]: pgsql_close() -- 08:09:07.763 INFO [12334]: COREGRADE is starting... -- 08:09:07.763 INFO [12334]: Version from config: 1.0 -- 08:09:07.763 DEBUG [12334]: Connecting to database... -- 08:09:07.763 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:07.763 SQL [12334]: pgsql_db_connect() -- 08:09:07.759 DEBUG [12248]: Database connection successful -- 08:09:07.759 INFO [12248]: _SERVER found -- 08:09:07.759 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 08:09:07.759 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:07.759 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:07.759 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 08:09:07.759 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:07.771 INFO [12248]: COREGRADE is stopping... -- 08:09:07.771 DEBUG [12248]: Closing database connection -- 08:09:07.771 SQL [12248]: pgsql_close() -- 08:09:07.767 DEBUG [12334]: Database connection successful -- 08:09:07.767 INFO [12334]: _SERVER found -- 08:09:07.767 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 08:09:07.767 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:07.767 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:07.767 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 08:09:07.767 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:07.779 INFO [12334]: COREGRADE is stopping... -- 08:09:07.779 DEBUG [12334]: Closing database connection -- 08:09:07.779 SQL [12334]: pgsql_close() -- 08:09:07.826 INFO [12334]: COREGRADE is starting... -- 08:09:07.826 INFO [12334]: Version from config: 1.0 -- 08:09:07.826 DEBUG [12334]: Connecting to database... -- 08:09:07.826 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:07.826 SQL [12334]: pgsql_db_connect() -- 08:09:07.836 INFO [12248]: COREGRADE is starting... -- 08:09:07.837 INFO [12248]: Version from config: 1.0 -- 08:09:07.837 DEBUG [12248]: Connecting to database... -- 08:09:07.837 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:07.837 SQL [12248]: pgsql_db_connect() -- 08:09:07.830 DEBUG [12334]: Database connection successful -- 08:09:07.830 INFO [12334]: _SERVER found -- 08:09:07.830 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 08:09:07.830 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:07.830 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:07.830 INFO [12334]: QUERY_STRING = /assets/customjs/general.js -- 08:09:07.830 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:07.842 INFO [12334]: COREGRADE is stopping... -- 08:09:07.842 DEBUG [12334]: Closing database connection -- 08:09:07.842 SQL [12334]: pgsql_close() -- 08:09:07.841 DEBUG [12248]: Database connection successful -- 08:09:07.841 INFO [12248]: _SERVER found -- 08:09:07.841 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 08:09:07.841 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:07.841 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:07.841 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 08:09:07.841 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:07.852 INFO [12248]: COREGRADE is stopping... -- 08:09:07.852 DEBUG [12248]: Closing database connection -- 08:09:07.852 SQL [12248]: pgsql_close() -- 08:09:07.918 INFO [12248]: COREGRADE is starting... -- 08:09:07.918 INFO [12248]: Version from config: 1.0 -- 08:09:07.918 DEBUG [12248]: Connecting to database... -- 08:09:07.918 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:07.918 SQL [12248]: pgsql_db_connect() -- 08:09:07.922 DEBUG [12248]: Database connection successful -- 08:09:07.922 INFO [12248]: _SERVER found -- 08:09:07.922 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 08:09:07.922 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:07.922 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:07.922 INFO [12248]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 08:09:07.922 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:07.934 INFO [12248]: COREGRADE is stopping... -- 08:09:07.934 DEBUG [12248]: Closing database connection -- 08:09:07.934 SQL [12248]: pgsql_close() -- 08:09:07.000 INFO [12248]: COREGRADE is starting... -- 08:09:07.000 INFO [12248]: Version from config: 1.0 -- 08:09:07.000 DEBUG [12248]: Connecting to database... -- 08:09:07.000 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:07.000 SQL [12248]: pgsql_db_connect() -- 08:09:08.004 DEBUG [12248]: Database connection successful -- 08:09:08.004 INFO [12248]: _SERVER found -- 08:09:08.004 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 08:09:08.004 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:08.004 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:08.004 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 08:09:08.004 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:08.016 INFO [12248]: COREGRADE is stopping... -- 08:09:08.016 DEBUG [12248]: Closing database connection -- 08:09:08.016 SQL [12248]: pgsql_close() -- 08:09:08.082 INFO [12248]: COREGRADE is starting... -- 08:09:08.082 INFO [12248]: Version from config: 1.0 -- 08:09:08.082 DEBUG [12248]: Connecting to database... -- 08:09:08.083 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:08.083 SQL [12248]: pgsql_db_connect() -- 08:09:08.087 DEBUG [12248]: Database connection successful -- 08:09:08.087 INFO [12248]: _SERVER found -- 08:09:08.087 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 08:09:08.087 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:08.087 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:08.087 INFO [12248]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 08:09:08.087 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:08.098 INFO [12248]: COREGRADE is stopping... -- 08:09:08.098 DEBUG [12248]: Closing database connection -- 08:09:08.098 SQL [12248]: pgsql_close() -- 08:09:08.165 INFO [12248]: COREGRADE is starting... -- 08:09:08.165 INFO [12248]: Version from config: 1.0 -- 08:09:08.165 DEBUG [12248]: Connecting to database... -- 08:09:08.165 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:08.165 SQL [12248]: pgsql_db_connect() -- 08:09:08.169 DEBUG [12248]: Database connection successful -- 08:09:08.169 INFO [12248]: _SERVER found -- 08:09:08.169 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 08:09:08.169 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:08.169 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:08.169 INFO [12248]: QUERY_STRING = /assets/js/pages/dashboard.js -- 08:09:08.169 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:08.181 INFO [12248]: COREGRADE is stopping... -- 08:09:08.181 DEBUG [12248]: Closing database connection -- 08:09:08.181 SQL [12248]: pgsql_close() -- 08:09:08.248 INFO [12248]: COREGRADE is starting... -- 08:09:08.248 INFO [12248]: Version from config: 1.0 -- 08:09:08.248 DEBUG [12248]: Connecting to database... -- 08:09:08.248 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:08.248 SQL [12248]: pgsql_db_connect() -- 08:09:08.252 DEBUG [12248]: Database connection successful -- 08:09:08.252 INFO [12248]: _SERVER found -- 08:09:08.252 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 08:09:08.252 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:08.252 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:08.252 INFO [12248]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 08:09:08.252 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:08.264 INFO [12248]: COREGRADE is stopping... -- 08:09:08.264 DEBUG [12248]: Closing database connection -- 08:09:08.264 SQL [12248]: pgsql_close() -- 08:09:08.330 INFO [12248]: COREGRADE is starting... -- 08:09:08.330 INFO [12248]: Version from config: 1.0 -- 08:09:08.330 DEBUG [12248]: Connecting to database... -- 08:09:08.330 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:08.330 SQL [12248]: pgsql_db_connect() -- 08:09:08.334 DEBUG [12248]: Database connection successful -- 08:09:08.334 INFO [12248]: _SERVER found -- 08:09:08.334 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 08:09:08.334 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:08.334 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:08.334 INFO [12248]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 08:09:08.334 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:08.346 INFO [12248]: COREGRADE is stopping... -- 08:09:08.346 DEBUG [12248]: Closing database connection -- 08:09:08.346 SQL [12248]: pgsql_close() -- 08:09:08.412 INFO [12248]: COREGRADE is starting... -- 08:09:08.413 INFO [12248]: Version from config: 1.0 -- 08:09:08.413 DEBUG [12248]: Connecting to database... -- 08:09:08.413 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:08.413 SQL [12248]: pgsql_db_connect() -- 08:09:08.417 DEBUG [12248]: Database connection successful -- 08:09:08.417 INFO [12248]: _SERVER found -- 08:09:08.417 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 08:09:08.417 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:08.417 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:08.417 INFO [12248]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 08:09:08.417 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:08.428 INFO [12248]: COREGRADE is stopping... -- 08:09:08.428 DEBUG [12248]: Closing database connection -- 08:09:08.428 SQL [12248]: pgsql_close() -- 08:09:08.495 INFO [12248]: COREGRADE is starting... -- 08:09:08.495 INFO [12248]: Version from config: 1.0 -- 08:09:08.495 DEBUG [12248]: Connecting to database... -- 08:09:08.495 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:08.495 SQL [12248]: pgsql_db_connect() -- 08:09:08.499 DEBUG [12248]: Database connection successful -- 08:09:08.499 INFO [12248]: _SERVER found -- 08:09:08.499 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 08:09:08.499 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:08.499 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:08.499 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 08:09:08.499 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:08.511 INFO [12248]: COREGRADE is stopping... -- 08:09:08.511 DEBUG [12248]: Closing database connection -- 08:09:08.511 SQL [12248]: pgsql_close() -- 08:09:08.577 INFO [12248]: COREGRADE is starting... -- 08:09:08.578 INFO [12248]: Version from config: 1.0 -- 08:09:08.578 DEBUG [12248]: Connecting to database... -- 08:09:08.578 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:08.578 SQL [12248]: pgsql_db_connect() -- 08:09:08.582 DEBUG [12248]: Database connection successful -- 08:09:08.582 INFO [12248]: _SERVER found -- 08:09:08.582 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 08:09:08.582 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:08.582 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:08.582 INFO [12248]: QUERY_STRING = /assets/js/pages/picker_date.js -- 08:09:08.582 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:08.593 INFO [12248]: COREGRADE is stopping... -- 08:09:08.593 DEBUG [12248]: Closing database connection -- 08:09:08.593 SQL [12248]: pgsql_close() -- 08:09:08.660 INFO [12248]: COREGRADE is starting... -- 08:09:08.660 INFO [12248]: Version from config: 1.0 -- 08:09:08.660 DEBUG [12248]: Connecting to database... -- 08:09:08.660 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:08.660 SQL [12248]: pgsql_db_connect() -- 08:09:08.664 DEBUG [12248]: Database connection successful -- 08:09:08.664 INFO [12248]: _SERVER found -- 08:09:08.664 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 08:09:08.664 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:08.664 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:08.664 INFO [12248]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 08:09:08.664 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:08.675 INFO [12248]: COREGRADE is stopping... -- 08:09:08.675 DEBUG [12248]: Closing database connection -- 08:09:08.675 SQL [12248]: pgsql_close() -- 08:09:08.741 INFO [12248]: COREGRADE is starting... -- 08:09:08.741 INFO [12248]: Version from config: 1.0 -- 08:09:08.741 DEBUG [12248]: Connecting to database... -- 08:09:08.741 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:08.741 SQL [12248]: pgsql_db_connect() -- 08:09:08.745 DEBUG [12248]: Database connection successful -- 08:09:08.745 INFO [12248]: _SERVER found -- 08:09:08.745 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 08:09:08.745 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:08.745 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:08.745 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 08:09:08.745 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:08.757 INFO [12248]: COREGRADE is stopping... -- 08:09:08.757 DEBUG [12248]: Closing database connection -- 08:09:08.757 SQL [12248]: pgsql_close() -- 08:09:08.823 INFO [12248]: COREGRADE is starting... -- 08:09:08.823 INFO [12248]: Version from config: 1.0 -- 08:09:08.823 DEBUG [12248]: Connecting to database... -- 08:09:08.823 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:08.824 SQL [12248]: pgsql_db_connect() -- 08:09:08.827 DEBUG [12248]: Database connection successful -- 08:09:08.827 INFO [12248]: _SERVER found -- 08:09:08.827 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 08:09:08.827 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:08.827 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:08.827 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 08:09:08.827 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:08.839 INFO [12248]: COREGRADE is stopping... -- 08:09:08.839 DEBUG [12248]: Closing database connection -- 08:09:08.839 SQL [12248]: pgsql_close() -- 08:09:08.905 INFO [12248]: COREGRADE is starting... -- 08:09:08.906 INFO [12248]: Version from config: 1.0 -- 08:09:08.906 DEBUG [12248]: Connecting to database... -- 08:09:08.906 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:08.906 SQL [12248]: pgsql_db_connect() -- 08:09:08.910 DEBUG [12248]: Database connection successful -- 08:09:08.910 INFO [12248]: _SERVER found -- 08:09:08.910 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 08:09:08.910 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:08.910 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:08.910 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 08:09:08.910 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:08.921 INFO [12248]: COREGRADE is stopping... -- 08:09:08.921 DEBUG [12248]: Closing database connection -- 08:09:08.921 SQL [12248]: pgsql_close() -- 08:09:08.987 INFO [12248]: COREGRADE is starting... -- 08:09:08.987 INFO [12248]: Version from config: 1.0 -- 08:09:08.987 DEBUG [12248]: Connecting to database... -- 08:09:08.987 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:08.987 SQL [12248]: pgsql_db_connect() -- 08:09:08.991 DEBUG [12248]: Database connection successful -- 08:09:08.991 INFO [12248]: _SERVER found -- 08:09:08.991 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 08:09:08.991 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:08.991 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:08.991 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 08:09:08.991 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:09.003 INFO [12248]: COREGRADE is stopping... -- 08:09:09.003 DEBUG [12248]: Closing database connection -- 08:09:09.003 SQL [12248]: pgsql_close() -- 08:09:09.080 INFO [12248]: COREGRADE is starting... -- 08:09:09.080 INFO [12248]: Version from config: 1.0 -- 08:09:09.080 DEBUG [12248]: Connecting to database... -- 08:09:09.080 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:09.080 SQL [12248]: pgsql_db_connect() -- 08:09:09.084 DEBUG [12248]: Database connection successful -- 08:09:09.084 INFO [12248]: _SERVER found -- 08:09:09.084 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 08:09:09.084 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:09.084 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:09.084 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 08:09:09.084 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:09.095 INFO [12248]: COREGRADE is stopping... -- 08:09:09.095 DEBUG [12248]: Closing database connection -- 08:09:09.095 SQL [12248]: pgsql_close() -- 08:09:09.161 INFO [12248]: COREGRADE is starting... -- 08:09:09.162 INFO [12248]: Version from config: 1.0 -- 08:09:09.162 DEBUG [12248]: Connecting to database... -- 08:09:09.162 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:09.162 SQL [12248]: pgsql_db_connect() -- 08:09:09.166 DEBUG [12248]: Database connection successful -- 08:09:09.166 INFO [12248]: _SERVER found -- 08:09:09.166 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 08:09:09.166 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:09.166 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:09.166 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 08:09:09.166 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:09.177 INFO [12248]: COREGRADE is stopping... -- 08:09:09.177 DEBUG [12248]: Closing database connection -- 08:09:09.177 SQL [12248]: pgsql_close() -- 08:09:09.245 INFO [12248]: COREGRADE is starting... -- 08:09:09.245 INFO [12248]: Version from config: 1.0 -- 08:09:09.245 DEBUG [12248]: Connecting to database... -- 08:09:09.245 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:09:09.245 SQL [12248]: pgsql_db_connect() -- 08:09:09.249 DEBUG [12248]: Database connection successful -- 08:09:09.249 INFO [12248]: _SERVER found -- 08:09:09.249 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 08:09:09.249 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:09:09.249 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:09:09.249 INFO [12248]: QUERY_STRING = /assets/customjs/general.js -- 08:09:09.249 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:09:09.262 INFO [12248]: COREGRADE is stopping... -- 08:09:09.262 DEBUG [12248]: Closing database connection -- 08:09:09.262 SQL [12248]: pgsql_close() -- 08:29:09.493 INFO [12247]: COREGRADE is starting... -- 08:29:09.493 INFO [12247]: Version from config: 1.0 -- 08:29:09.493 DEBUG [12247]: Connecting to database... -- 08:29:09.493 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:09.493 SQL [12247]: pgsql_db_connect() -- 08:29:09.498 DEBUG [12247]: Database connection successful -- 08:29:09.498 INFO [12247]: _SERVER found -- 08:29:09.498 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 08:29:09.498 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:09.498 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=jbu2d3oar70h2l9hqje111jtl6n8kka5 -- 08:29:09.498 INFO [12247]: QUERY_STRING = /logout -- 08:29:09.498 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:09.532 INFO [12247]: COREGRADE is stopping... -- 08:29:09.532 DEBUG [12247]: Closing database connection -- 08:29:09.532 SQL [12247]: pgsql_close() -- 08:29:09.611 INFO [12247]: COREGRADE is starting... -- 08:29:09.612 INFO [12247]: Version from config: 1.0 -- 08:29:09.612 DEBUG [12247]: Connecting to database... -- 08:29:09.612 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:09.612 SQL [12247]: pgsql_db_connect() -- 08:29:09.616 DEBUG [12247]: Database connection successful -- 08:29:09.616 INFO [12247]: _SERVER found -- 08:29:09.616 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 08:29:09.616 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:09.616 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:09.616 INFO [12247]: QUERY_STRING = /start -- 08:29:09.616 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:09.649 INFO [12247]: COREGRADE is stopping... -- 08:29:09.649 DEBUG [12247]: Closing database connection -- 08:29:09.649 SQL [12247]: pgsql_close() -- 08:29:09.778 INFO [12246]: COREGRADE is starting... -- 08:29:09.779 INFO [12246]: Version from config: 1.0 -- 08:29:09.779 DEBUG [12246]: Connecting to database... -- 08:29:09.779 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:09.779 SQL [12246]: pgsql_db_connect() -- 08:29:09.794 INFO [12247]: COREGRADE is starting... -- 08:29:09.794 INFO [12247]: Version from config: 1.0 -- 08:29:09.794 DEBUG [12247]: Connecting to database... -- 08:29:09.794 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:09.794 SQL [12247]: pgsql_db_connect() -- 08:29:09.783 DEBUG [12246]: Database connection successful -- 08:29:09.783 INFO [12246]: _SERVER found -- 08:29:09.783 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 08:29:09.783 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:09.783 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:09.783 INFO [12246]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 08:29:09.783 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:09.796 INFO [12246]: COREGRADE is stopping... -- 08:29:09.796 DEBUG [12246]: Closing database connection -- 08:29:09.796 SQL [12246]: pgsql_close() -- 08:29:09.799 DEBUG [12247]: Database connection successful -- 08:29:09.799 INFO [12247]: _SERVER found -- 08:29:09.799 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 08:29:09.799 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:09.799 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:09.799 INFO [12247]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 08:29:09.799 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:09.810 INFO [12247]: COREGRADE is stopping... -- 08:29:09.810 DEBUG [12247]: Closing database connection -- 08:29:09.810 SQL [12247]: pgsql_close() -- 08:29:09.841 INFO [12246]: COREGRADE is starting... -- 08:29:09.842 INFO [12246]: Version from config: 1.0 -- 08:29:09.842 DEBUG [12246]: Connecting to database... -- 08:29:09.842 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:09.842 SQL [12246]: pgsql_db_connect() -- 08:29:09.846 DEBUG [12246]: Database connection successful -- 08:29:09.846 INFO [12246]: _SERVER found -- 08:29:09.846 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 08:29:09.846 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:09.846 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:09.846 INFO [12246]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 08:29:09.846 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:09.857 INFO [12246]: COREGRADE is stopping... -- 08:29:09.857 DEBUG [12246]: Closing database connection -- 08:29:09.857 SQL [12246]: pgsql_close() -- 08:29:09.877 INFO [12247]: COREGRADE is starting... -- 08:29:09.877 INFO [12246]: COREGRADE is starting... -- 08:29:09.877 INFO [12246]: Version from config: 1.0 -- 08:29:09.877 DEBUG [12246]: Connecting to database... -- 08:29:09.877 INFO [12247]: Version from config: 1.0 -- 08:29:09.877 DEBUG [12247]: Connecting to database... -- 08:29:09.877 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:09.877 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:09.877 SQL [12246]: pgsql_db_connect() -- 08:29:09.877 SQL [12247]: pgsql_db_connect() -- 08:29:09.881 DEBUG [12247]: Database connection successful -- 08:29:09.881 INFO [12247]: _SERVER found -- 08:29:09.881 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 08:29:09.881 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:09.881 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:09.881 INFO [12247]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 08:29:09.881 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:09.892 INFO [12247]: COREGRADE is stopping... -- 08:29:09.881 DEBUG [12246]: Database connection successful -- 08:29:09.881 INFO [12246]: _SERVER found -- 08:29:09.881 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 08:29:09.881 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:09.881 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:09.881 INFO [12246]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 08:29:09.881 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:09.892 INFO [12246]: COREGRADE is stopping... -- 08:29:09.892 DEBUG [12247]: Closing database connection -- 08:29:09.892 DEBUG [12246]: Closing database connection -- 08:29:09.892 SQL [12247]: pgsql_close() -- 08:29:09.892 SQL [12246]: pgsql_close() -- 08:29:09.935 INFO [12246]: COREGRADE is starting... -- 08:29:09.935 INFO [12246]: Version from config: 1.0 -- 08:29:09.935 DEBUG [12246]: Connecting to database... -- 08:29:09.935 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:09.935 SQL [12246]: pgsql_db_connect() -- 08:29:09.939 DEBUG [12246]: Database connection successful -- 08:29:09.939 INFO [12246]: _SERVER found -- 08:29:09.939 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 08:29:09.939 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:09.940 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:09.940 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 08:29:09.940 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:09.951 INFO [12246]: COREGRADE is stopping... -- 08:29:09.951 DEBUG [12246]: Closing database connection -- 08:29:09.951 SQL [12246]: pgsql_close() -- 08:29:09.958 INFO [12247]: COREGRADE is starting... -- 08:29:09.958 INFO [12247]: Version from config: 1.0 -- 08:29:09.958 DEBUG [12247]: Connecting to database... -- 08:29:09.958 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:09.958 SQL [12247]: pgsql_db_connect() -- 08:29:09.973 INFO [12246]: COREGRADE is starting... -- 08:29:09.973 INFO [12246]: Version from config: 1.0 -- 08:29:09.973 DEBUG [12246]: Connecting to database... -- 08:29:09.973 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:09.973 SQL [12246]: pgsql_db_connect() -- 08:29:09.962 DEBUG [12247]: Database connection successful -- 08:29:09.962 INFO [12247]: _SERVER found -- 08:29:09.962 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 08:29:09.962 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:09.962 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:09.962 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 08:29:09.962 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:09.974 INFO [12247]: COREGRADE is stopping... -- 08:29:09.974 DEBUG [12247]: Closing database connection -- 08:29:09.974 SQL [12247]: pgsql_close() -- 08:29:09.978 DEBUG [12246]: Database connection successful -- 08:29:09.978 INFO [12246]: _SERVER found -- 08:29:09.978 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 08:29:09.978 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:09.978 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:09.978 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 08:29:09.978 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:09.990 INFO [12246]: COREGRADE is stopping... -- 08:29:09.990 DEBUG [12246]: Closing database connection -- 08:29:09.990 SQL [12246]: pgsql_close() -- 08:29:10.028 INFO [12246]: COREGRADE is starting... -- 08:29:10.029 INFO [12246]: Version from config: 1.0 -- 08:29:10.029 DEBUG [12246]: Connecting to database... -- 08:29:10.029 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:10.029 SQL [12246]: pgsql_db_connect() -- 08:29:10.039 INFO [12247]: COREGRADE is starting... -- 08:29:10.040 INFO [12247]: Version from config: 1.0 -- 08:29:10.040 DEBUG [12247]: Connecting to database... -- 08:29:10.040 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:10.040 SQL [12247]: pgsql_db_connect() -- 08:29:10.033 DEBUG [12246]: Database connection successful -- 08:29:10.033 INFO [12246]: _SERVER found -- 08:29:10.033 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 08:29:10.033 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:10.033 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:10.033 INFO [12246]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 08:29:10.033 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:10.045 INFO [12246]: COREGRADE is stopping... -- 08:29:10.045 DEBUG [12246]: Closing database connection -- 08:29:10.045 SQL [12246]: pgsql_close() -- 08:29:10.044 DEBUG [12247]: Database connection successful -- 08:29:10.044 INFO [12247]: _SERVER found -- 08:29:10.044 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 08:29:10.044 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:10.044 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:10.044 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 08:29:10.044 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:10.069 INFO [12247]: COREGRADE is stopping... -- 08:29:10.069 DEBUG [12247]: Closing database connection -- 08:29:10.069 SQL [12247]: pgsql_close() -- 08:29:10.071 INFO [12246]: COREGRADE is starting... -- 08:29:10.072 INFO [12246]: Version from config: 1.0 -- 08:29:10.072 DEBUG [12246]: Connecting to database... -- 08:29:10.072 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:10.072 SQL [12246]: pgsql_db_connect() -- 08:29:10.079 DEBUG [12246]: Database connection successful -- 08:29:10.079 INFO [12246]: _SERVER found -- 08:29:10.079 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 08:29:10.079 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:10.079 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:10.079 INFO [12246]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 08:29:10.079 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:10.106 INFO [12246]: COREGRADE is stopping... -- 08:29:10.106 DEBUG [12246]: Closing database connection -- 08:29:10.106 SQL [12246]: pgsql_close() -- 08:29:10.143 INFO [12246]: COREGRADE is starting... -- 08:29:10.143 INFO [12246]: Version from config: 1.0 -- 08:29:10.143 DEBUG [12246]: Connecting to database... -- 08:29:10.143 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:10.143 SQL [12246]: pgsql_db_connect() -- 08:29:10.144 INFO [12247]: COREGRADE is starting... -- 08:29:10.144 INFO [12247]: Version from config: 1.0 -- 08:29:10.144 DEBUG [12247]: Connecting to database... -- 08:29:10.144 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:10.144 SQL [12247]: pgsql_db_connect() -- 08:29:10.149 DEBUG [12246]: Database connection successful -- 08:29:10.149 INFO [12246]: _SERVER found -- 08:29:10.149 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 08:29:10.149 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:10.149 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:10.149 INFO [12246]: QUERY_STRING = /assets/js/pages/dashboard.js -- 08:29:10.149 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:10.160 INFO [12246]: COREGRADE is stopping... -- 08:29:10.160 DEBUG [12246]: Closing database connection -- 08:29:10.160 SQL [12246]: pgsql_close() -- 08:29:10.148 DEBUG [12247]: Database connection successful -- 08:29:10.148 INFO [12247]: _SERVER found -- 08:29:10.149 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 08:29:10.149 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:10.149 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:10.149 INFO [12247]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 08:29:10.149 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:10.160 INFO [12247]: COREGRADE is stopping... -- 08:29:10.160 DEBUG [12247]: Closing database connection -- 08:29:10.160 SQL [12247]: pgsql_close() -- 08:29:10.177 INFO [12246]: COREGRADE is starting... -- 08:29:10.178 INFO [12246]: Version from config: 1.0 -- 08:29:10.178 DEBUG [12246]: Connecting to database... -- 08:29:10.178 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:10.178 SQL [12246]: pgsql_db_connect() -- 08:29:10.182 DEBUG [12246]: Database connection successful -- 08:29:10.182 INFO [12246]: _SERVER found -- 08:29:10.182 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 08:29:10.182 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:10.182 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:10.182 INFO [12246]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 08:29:10.182 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:10.193 INFO [12246]: COREGRADE is stopping... -- 08:29:10.193 DEBUG [12246]: Closing database connection -- 08:29:10.193 SQL [12246]: pgsql_close() -- 08:29:10.226 INFO [12247]: COREGRADE is starting... -- 08:29:10.226 INFO [12247]: Version from config: 1.0 -- 08:29:10.226 DEBUG [12247]: Connecting to database... -- 08:29:10.226 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:10.226 SQL [12247]: pgsql_db_connect() -- 08:29:10.228 INFO [12246]: COREGRADE is starting... -- 08:29:10.229 INFO [12246]: Version from config: 1.0 -- 08:29:10.229 DEBUG [12246]: Connecting to database... -- 08:29:10.229 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:10.229 SQL [12246]: pgsql_db_connect() -- 08:29:10.230 DEBUG [12247]: Database connection successful -- 08:29:10.230 INFO [12247]: _SERVER found -- 08:29:10.230 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 08:29:10.230 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:10.230 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:10.230 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 08:29:10.230 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:10.241 INFO [12247]: COREGRADE is stopping... -- 08:29:10.241 DEBUG [12247]: Closing database connection -- 08:29:10.241 SQL [12247]: pgsql_close() -- 08:29:10.233 DEBUG [12246]: Database connection successful -- 08:29:10.233 INFO [12246]: _SERVER found -- 08:29:10.233 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 08:29:10.233 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:10.233 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:10.233 INFO [12246]: QUERY_STRING = /assets/js/pages/picker_date.js -- 08:29:10.233 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:10.244 INFO [12246]: COREGRADE is stopping... -- 08:29:10.244 DEBUG [12246]: Closing database connection -- 08:29:10.244 SQL [12246]: pgsql_close() -- 08:29:10.263 INFO [12246]: COREGRADE is starting... -- 08:29:10.264 INFO [12246]: Version from config: 1.0 -- 08:29:10.264 DEBUG [12246]: Connecting to database... -- 08:29:10.264 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:10.264 SQL [12246]: pgsql_db_connect() -- 08:29:10.268 DEBUG [12246]: Database connection successful -- 08:29:10.268 INFO [12246]: _SERVER found -- 08:29:10.268 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 08:29:10.268 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:10.268 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:10.268 INFO [12246]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 08:29:10.268 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:10.279 INFO [12246]: COREGRADE is stopping... -- 08:29:10.279 DEBUG [12246]: Closing database connection -- 08:29:10.279 SQL [12246]: pgsql_close() -- 08:29:10.307 INFO [12247]: COREGRADE is starting... -- 08:29:10.307 INFO [12247]: Version from config: 1.0 -- 08:29:10.307 DEBUG [12247]: Connecting to database... -- 08:29:10.307 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:10.307 SQL [12247]: pgsql_db_connect() -- 08:29:10.310 INFO [12246]: COREGRADE is starting... -- 08:29:10.311 INFO [12246]: Version from config: 1.0 -- 08:29:10.311 DEBUG [12246]: Connecting to database... -- 08:29:10.311 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:10.311 SQL [12246]: pgsql_db_connect() -- 08:29:10.311 DEBUG [12247]: Database connection successful -- 08:29:10.311 INFO [12247]: _SERVER found -- 08:29:10.311 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 08:29:10.311 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:10.311 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:10.311 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 08:29:10.311 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:10.323 INFO [12247]: COREGRADE is stopping... -- 08:29:10.323 DEBUG [12247]: Closing database connection -- 08:29:10.323 SQL [12247]: pgsql_close() -- 08:29:10.315 DEBUG [12246]: Database connection successful -- 08:29:10.315 INFO [12246]: _SERVER found -- 08:29:10.315 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 08:29:10.315 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:10.315 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:10.315 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 08:29:10.315 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:10.326 INFO [12246]: COREGRADE is stopping... -- 08:29:10.326 DEBUG [12246]: Closing database connection -- 08:29:10.326 SQL [12246]: pgsql_close() -- 08:29:10.348 INFO [12246]: COREGRADE is starting... -- 08:29:10.349 INFO [12246]: Version from config: 1.0 -- 08:29:10.349 DEBUG [12246]: Connecting to database... -- 08:29:10.349 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:10.349 SQL [12246]: pgsql_db_connect() -- 08:29:10.353 DEBUG [12246]: Database connection successful -- 08:29:10.353 INFO [12246]: _SERVER found -- 08:29:10.353 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 08:29:10.353 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:10.353 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:10.353 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 08:29:10.353 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:10.364 INFO [12246]: COREGRADE is stopping... -- 08:29:10.364 DEBUG [12246]: Closing database connection -- 08:29:10.364 SQL [12246]: pgsql_close() -- 08:29:10.389 INFO [12247]: COREGRADE is starting... -- 08:29:10.389 INFO [12247]: Version from config: 1.0 -- 08:29:10.389 DEBUG [12247]: Connecting to database... -- 08:29:10.389 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:10.389 SQL [12247]: pgsql_db_connect() -- 08:29:10.392 INFO [12246]: COREGRADE is starting... -- 08:29:10.392 INFO [12246]: Version from config: 1.0 -- 08:29:10.392 DEBUG [12246]: Connecting to database... -- 08:29:10.392 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:10.392 SQL [12246]: pgsql_db_connect() -- 08:29:10.393 DEBUG [12247]: Database connection successful -- 08:29:10.393 INFO [12247]: _SERVER found -- 08:29:10.393 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 08:29:10.393 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:10.393 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:10.393 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 08:29:10.393 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:10.405 INFO [12247]: COREGRADE is stopping... -- 08:29:10.405 DEBUG [12247]: Closing database connection -- 08:29:10.405 SQL [12247]: pgsql_close() -- 08:29:10.396 DEBUG [12246]: Database connection successful -- 08:29:10.396 INFO [12246]: _SERVER found -- 08:29:10.396 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 08:29:10.396 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:10.396 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:10.396 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 08:29:10.396 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:10.408 INFO [12246]: COREGRADE is stopping... -- 08:29:10.408 DEBUG [12246]: Closing database connection -- 08:29:10.408 SQL [12246]: pgsql_close() -- 08:29:10.434 INFO [12246]: COREGRADE is starting... -- 08:29:10.434 INFO [12246]: Version from config: 1.0 -- 08:29:10.434 DEBUG [12246]: Connecting to database... -- 08:29:10.434 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:10.434 SQL [12246]: pgsql_db_connect() -- 08:29:10.438 DEBUG [12246]: Database connection successful -- 08:29:10.438 INFO [12246]: _SERVER found -- 08:29:10.438 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 08:29:10.438 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:10.438 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:10.438 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 08:29:10.438 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:10.450 INFO [12246]: COREGRADE is stopping... -- 08:29:10.450 DEBUG [12246]: Closing database connection -- 08:29:10.450 SQL [12246]: pgsql_close() -- 08:29:10.470 INFO [12247]: COREGRADE is starting... -- 08:29:10.470 INFO [12247]: Version from config: 1.0 -- 08:29:10.470 DEBUG [12247]: Connecting to database... -- 08:29:10.470 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:10.470 SQL [12247]: pgsql_db_connect() -- 08:29:10.473 INFO [12246]: COREGRADE is starting... -- 08:29:10.474 INFO [12246]: Version from config: 1.0 -- 08:29:10.474 DEBUG [12246]: Connecting to database... -- 08:29:10.474 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:10.474 SQL [12246]: pgsql_db_connect() -- 08:29:10.475 DEBUG [12247]: Database connection successful -- 08:29:10.475 INFO [12247]: _SERVER found -- 08:29:10.475 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 08:29:10.475 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:10.475 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:10.475 INFO [12247]: QUERY_STRING = /assets/customjs/general.js -- 08:29:10.475 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:10.486 INFO [12247]: COREGRADE is stopping... -- 08:29:10.486 DEBUG [12247]: Closing database connection -- 08:29:10.486 SQL [12247]: pgsql_close() -- 08:29:10.478 DEBUG [12246]: Database connection successful -- 08:29:10.478 INFO [12246]: _SERVER found -- 08:29:10.478 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 08:29:10.478 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:10.478 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:10.478 INFO [12246]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 08:29:10.478 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:10.489 INFO [12246]: COREGRADE is stopping... -- 08:29:10.489 DEBUG [12246]: Closing database connection -- 08:29:10.489 SQL [12246]: pgsql_close() -- 08:29:10.556 INFO [12246]: COREGRADE is starting... -- 08:29:10.556 INFO [12246]: Version from config: 1.0 -- 08:29:10.556 DEBUG [12246]: Connecting to database... -- 08:29:10.556 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:10.556 SQL [12246]: pgsql_db_connect() -- 08:29:10.560 DEBUG [12246]: Database connection successful -- 08:29:10.560 INFO [12246]: _SERVER found -- 08:29:10.560 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 08:29:10.560 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:10.560 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:10.560 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 08:29:10.560 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:10.572 INFO [12246]: COREGRADE is stopping... -- 08:29:10.572 DEBUG [12246]: Closing database connection -- 08:29:10.572 SQL [12246]: pgsql_close() -- 08:29:10.639 INFO [12246]: COREGRADE is starting... -- 08:29:10.639 INFO [12246]: Version from config: 1.0 -- 08:29:10.639 DEBUG [12246]: Connecting to database... -- 08:29:10.639 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:10.639 SQL [12246]: pgsql_db_connect() -- 08:29:10.643 DEBUG [12246]: Database connection successful -- 08:29:10.643 INFO [12246]: _SERVER found -- 08:29:10.643 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 08:29:10.643 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:10.643 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:10.643 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 08:29:10.643 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:10.654 INFO [12246]: COREGRADE is stopping... -- 08:29:10.654 DEBUG [12246]: Closing database connection -- 08:29:10.654 SQL [12246]: pgsql_close() -- 08:29:10.721 INFO [12246]: COREGRADE is starting... -- 08:29:10.721 INFO [12246]: Version from config: 1.0 -- 08:29:10.721 DEBUG [12246]: Connecting to database... -- 08:29:10.721 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:10.721 SQL [12246]: pgsql_db_connect() -- 08:29:10.725 DEBUG [12246]: Database connection successful -- 08:29:10.725 INFO [12246]: _SERVER found -- 08:29:10.725 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 08:29:10.725 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:10.725 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:10.725 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 08:29:10.725 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:10.737 INFO [12246]: COREGRADE is stopping... -- 08:29:10.737 DEBUG [12246]: Closing database connection -- 08:29:10.737 SQL [12246]: pgsql_close() -- 08:29:10.804 INFO [12246]: COREGRADE is starting... -- 08:29:10.804 INFO [12246]: Version from config: 1.0 -- 08:29:10.804 DEBUG [12246]: Connecting to database... -- 08:29:10.804 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:10.804 SQL [12246]: pgsql_db_connect() -- 08:29:10.808 DEBUG [12246]: Database connection successful -- 08:29:10.808 INFO [12246]: _SERVER found -- 08:29:10.808 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 08:29:10.808 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:10.808 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:10.808 INFO [12246]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 08:29:10.808 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:10.820 INFO [12246]: COREGRADE is stopping... -- 08:29:10.820 DEBUG [12246]: Closing database connection -- 08:29:10.820 SQL [12246]: pgsql_close() -- 08:29:10.887 INFO [12246]: COREGRADE is starting... -- 08:29:10.887 INFO [12246]: Version from config: 1.0 -- 08:29:10.887 DEBUG [12246]: Connecting to database... -- 08:29:10.887 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:10.887 SQL [12246]: pgsql_db_connect() -- 08:29:10.891 DEBUG [12246]: Database connection successful -- 08:29:10.891 INFO [12246]: _SERVER found -- 08:29:10.891 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 08:29:10.891 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:10.891 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:10.891 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 08:29:10.891 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:10.903 INFO [12246]: COREGRADE is stopping... -- 08:29:10.903 DEBUG [12246]: Closing database connection -- 08:29:10.903 SQL [12246]: pgsql_close() -- 08:29:10.969 INFO [12246]: COREGRADE is starting... -- 08:29:10.969 INFO [12246]: Version from config: 1.0 -- 08:29:10.969 DEBUG [12246]: Connecting to database... -- 08:29:10.969 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:10.969 SQL [12246]: pgsql_db_connect() -- 08:29:10.974 DEBUG [12246]: Database connection successful -- 08:29:10.974 INFO [12246]: _SERVER found -- 08:29:10.974 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 08:29:10.974 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:10.974 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:10.974 INFO [12246]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 08:29:10.974 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:10.986 INFO [12246]: COREGRADE is stopping... -- 08:29:10.986 DEBUG [12246]: Closing database connection -- 08:29:10.986 SQL [12246]: pgsql_close() -- 08:29:11.053 INFO [12246]: COREGRADE is starting... -- 08:29:11.053 INFO [12246]: Version from config: 1.0 -- 08:29:11.053 DEBUG [12246]: Connecting to database... -- 08:29:11.053 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:11.053 SQL [12246]: pgsql_db_connect() -- 08:29:11.057 DEBUG [12246]: Database connection successful -- 08:29:11.057 INFO [12246]: _SERVER found -- 08:29:11.057 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 08:29:11.057 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:11.057 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:11.057 INFO [12246]: QUERY_STRING = /assets/js/pages/dashboard.js -- 08:29:11.057 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:11.069 INFO [12246]: COREGRADE is stopping... -- 08:29:11.069 DEBUG [12246]: Closing database connection -- 08:29:11.069 SQL [12246]: pgsql_close() -- 08:29:11.136 INFO [12246]: COREGRADE is starting... -- 08:29:11.137 INFO [12246]: Version from config: 1.0 -- 08:29:11.137 DEBUG [12246]: Connecting to database... -- 08:29:11.137 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:11.137 SQL [12246]: pgsql_db_connect() -- 08:29:11.141 DEBUG [12246]: Database connection successful -- 08:29:11.141 INFO [12246]: _SERVER found -- 08:29:11.141 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 08:29:11.141 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:11.141 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:11.141 INFO [12246]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 08:29:11.141 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:11.152 INFO [12246]: COREGRADE is stopping... -- 08:29:11.152 DEBUG [12246]: Closing database connection -- 08:29:11.152 SQL [12246]: pgsql_close() -- 08:29:11.219 INFO [12246]: COREGRADE is starting... -- 08:29:11.219 INFO [12246]: Version from config: 1.0 -- 08:29:11.219 DEBUG [12246]: Connecting to database... -- 08:29:11.219 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:11.219 SQL [12246]: pgsql_db_connect() -- 08:29:11.223 DEBUG [12246]: Database connection successful -- 08:29:11.223 INFO [12246]: _SERVER found -- 08:29:11.223 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 08:29:11.223 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:11.223 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:11.223 INFO [12246]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 08:29:11.223 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:11.234 INFO [12246]: COREGRADE is stopping... -- 08:29:11.234 DEBUG [12246]: Closing database connection -- 08:29:11.234 SQL [12246]: pgsql_close() -- 08:29:11.301 INFO [12246]: COREGRADE is starting... -- 08:29:11.301 INFO [12246]: Version from config: 1.0 -- 08:29:11.301 DEBUG [12246]: Connecting to database... -- 08:29:11.301 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:11.301 SQL [12246]: pgsql_db_connect() -- 08:29:11.305 DEBUG [12246]: Database connection successful -- 08:29:11.305 INFO [12246]: _SERVER found -- 08:29:11.305 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 08:29:11.305 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:11.305 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:11.305 INFO [12246]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 08:29:11.305 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:11.317 INFO [12246]: COREGRADE is stopping... -- 08:29:11.317 DEBUG [12246]: Closing database connection -- 08:29:11.317 SQL [12246]: pgsql_close() -- 08:29:11.383 INFO [12246]: COREGRADE is starting... -- 08:29:11.384 INFO [12246]: Version from config: 1.0 -- 08:29:11.384 DEBUG [12246]: Connecting to database... -- 08:29:11.384 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:11.384 SQL [12246]: pgsql_db_connect() -- 08:29:11.388 DEBUG [12246]: Database connection successful -- 08:29:11.388 INFO [12246]: _SERVER found -- 08:29:11.388 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 08:29:11.388 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:11.388 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:11.388 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 08:29:11.388 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:11.399 INFO [12246]: COREGRADE is stopping... -- 08:29:11.399 DEBUG [12246]: Closing database connection -- 08:29:11.399 SQL [12246]: pgsql_close() -- 08:29:11.468 INFO [12246]: COREGRADE is starting... -- 08:29:11.468 INFO [12246]: Version from config: 1.0 -- 08:29:11.468 DEBUG [12246]: Connecting to database... -- 08:29:11.468 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:11.468 SQL [12246]: pgsql_db_connect() -- 08:29:11.472 DEBUG [12246]: Database connection successful -- 08:29:11.472 INFO [12246]: _SERVER found -- 08:29:11.472 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 08:29:11.472 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:11.472 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:11.472 INFO [12246]: QUERY_STRING = /assets/js/pages/picker_date.js -- 08:29:11.472 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:11.484 INFO [12246]: COREGRADE is stopping... -- 08:29:11.484 DEBUG [12246]: Closing database connection -- 08:29:11.484 SQL [12246]: pgsql_close() -- 08:29:11.550 INFO [12246]: COREGRADE is starting... -- 08:29:11.551 INFO [12246]: Version from config: 1.0 -- 08:29:11.551 DEBUG [12246]: Connecting to database... -- 08:29:11.551 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:11.551 SQL [12246]: pgsql_db_connect() -- 08:29:11.555 DEBUG [12246]: Database connection successful -- 08:29:11.555 INFO [12246]: _SERVER found -- 08:29:11.555 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 08:29:11.555 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:11.555 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:11.555 INFO [12246]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 08:29:11.555 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:11.567 INFO [12246]: COREGRADE is stopping... -- 08:29:11.567 DEBUG [12246]: Closing database connection -- 08:29:11.567 SQL [12246]: pgsql_close() -- 08:29:11.634 INFO [12246]: COREGRADE is starting... -- 08:29:11.634 INFO [12246]: Version from config: 1.0 -- 08:29:11.634 DEBUG [12246]: Connecting to database... -- 08:29:11.634 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:11.634 SQL [12246]: pgsql_db_connect() -- 08:29:11.638 DEBUG [12246]: Database connection successful -- 08:29:11.638 INFO [12246]: _SERVER found -- 08:29:11.638 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 08:29:11.638 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:11.638 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:11.638 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 08:29:11.638 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:11.649 INFO [12246]: COREGRADE is stopping... -- 08:29:11.649 DEBUG [12246]: Closing database connection -- 08:29:11.649 SQL [12246]: pgsql_close() -- 08:29:11.716 INFO [12246]: COREGRADE is starting... -- 08:29:11.716 INFO [12246]: Version from config: 1.0 -- 08:29:11.716 DEBUG [12246]: Connecting to database... -- 08:29:11.716 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:11.716 SQL [12246]: pgsql_db_connect() -- 08:29:11.720 DEBUG [12246]: Database connection successful -- 08:29:11.721 INFO [12246]: _SERVER found -- 08:29:11.721 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 08:29:11.721 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:11.721 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:11.721 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 08:29:11.721 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:11.732 INFO [12246]: COREGRADE is stopping... -- 08:29:11.732 DEBUG [12246]: Closing database connection -- 08:29:11.732 SQL [12246]: pgsql_close() -- 08:29:11.799 INFO [12246]: COREGRADE is starting... -- 08:29:11.799 INFO [12246]: Version from config: 1.0 -- 08:29:11.799 DEBUG [12246]: Connecting to database... -- 08:29:11.799 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:11.799 SQL [12246]: pgsql_db_connect() -- 08:29:11.803 DEBUG [12246]: Database connection successful -- 08:29:11.803 INFO [12246]: _SERVER found -- 08:29:11.803 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 08:29:11.803 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:11.803 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:11.803 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 08:29:11.803 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:11.814 INFO [12246]: COREGRADE is stopping... -- 08:29:11.814 DEBUG [12246]: Closing database connection -- 08:29:11.814 SQL [12246]: pgsql_close() -- 08:29:11.881 INFO [12246]: COREGRADE is starting... -- 08:29:11.881 INFO [12246]: Version from config: 1.0 -- 08:29:11.881 DEBUG [12246]: Connecting to database... -- 08:29:11.881 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:11.881 SQL [12246]: pgsql_db_connect() -- 08:29:11.886 DEBUG [12246]: Database connection successful -- 08:29:11.886 INFO [12246]: _SERVER found -- 08:29:11.886 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 08:29:11.886 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:11.886 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:11.886 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 08:29:11.886 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:11.897 INFO [12246]: COREGRADE is stopping... -- 08:29:11.897 DEBUG [12246]: Closing database connection -- 08:29:11.897 SQL [12246]: pgsql_close() -- 08:29:11.974 INFO [12246]: COREGRADE is starting... -- 08:29:11.974 INFO [12246]: Version from config: 1.0 -- 08:29:11.974 DEBUG [12246]: Connecting to database... -- 08:29:11.974 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:11.974 SQL [12246]: pgsql_db_connect() -- 08:29:11.979 DEBUG [12246]: Database connection successful -- 08:29:11.979 INFO [12246]: _SERVER found -- 08:29:11.979 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 08:29:11.979 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:11.979 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:11.979 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 08:29:11.979 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:11.990 INFO [12246]: COREGRADE is stopping... -- 08:29:11.990 DEBUG [12246]: Closing database connection -- 08:29:11.990 SQL [12246]: pgsql_close() -- 08:29:12.057 INFO [12246]: COREGRADE is starting... -- 08:29:12.057 INFO [12246]: Version from config: 1.0 -- 08:29:12.057 DEBUG [12246]: Connecting to database... -- 08:29:12.057 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:12.057 SQL [12246]: pgsql_db_connect() -- 08:29:12.061 DEBUG [12246]: Database connection successful -- 08:29:12.061 INFO [12246]: _SERVER found -- 08:29:12.061 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 08:29:12.061 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:12.061 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:12.061 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 08:29:12.061 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:12.073 INFO [12246]: COREGRADE is stopping... -- 08:29:12.073 DEBUG [12246]: Closing database connection -- 08:29:12.073 SQL [12246]: pgsql_close() -- 08:29:12.141 INFO [12246]: COREGRADE is starting... -- 08:29:12.141 INFO [12246]: Version from config: 1.0 -- 08:29:12.141 DEBUG [12246]: Connecting to database... -- 08:29:12.141 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:12.142 SQL [12246]: pgsql_db_connect() -- 08:29:12.145 DEBUG [12246]: Database connection successful -- 08:29:12.145 INFO [12246]: _SERVER found -- 08:29:12.145 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 08:29:12.145 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:29:12.145 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:29:12.145 INFO [12246]: QUERY_STRING = /assets/customjs/general.js -- 08:29:12.145 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:29:12.157 INFO [12246]: COREGRADE is stopping... -- 08:29:12.157 DEBUG [12246]: Closing database connection -- 08:29:12.157 SQL [12246]: pgsql_close() -- 08:49:12.378 INFO [12347]: COREGRADE is starting... -- 08:49:12.378 INFO [12347]: Version from config: 1.0 -- 08:49:12.378 DEBUG [12347]: Connecting to database... -- 08:49:12.378 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:12.378 SQL [12347]: pgsql_db_connect() -- 08:49:12.383 DEBUG [12347]: Database connection successful -- 08:49:12.383 INFO [12347]: _SERVER found -- 08:49:12.383 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 08:49:12.383 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:12.383 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=8dsngn123jbeneek3bvb3vtgdhksvrjh -- 08:49:12.383 INFO [12347]: QUERY_STRING = /logout -- 08:49:12.383 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:12.423 INFO [12347]: COREGRADE is stopping... -- 08:49:12.423 DEBUG [12347]: Closing database connection -- 08:49:12.423 SQL [12347]: pgsql_close() -- 08:49:12.504 INFO [12347]: COREGRADE is starting... -- 08:49:12.504 INFO [12347]: Version from config: 1.0 -- 08:49:12.504 DEBUG [12347]: Connecting to database... -- 08:49:12.504 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:12.504 SQL [12347]: pgsql_db_connect() -- 08:49:12.509 DEBUG [12347]: Database connection successful -- 08:49:12.509 INFO [12347]: _SERVER found -- 08:49:12.509 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 08:49:12.509 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:12.509 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:12.509 INFO [12347]: QUERY_STRING = /start -- 08:49:12.509 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:12.553 INFO [12347]: COREGRADE is stopping... -- 08:49:12.553 DEBUG [12347]: Closing database connection -- 08:49:12.553 SQL [12347]: pgsql_close() -- 08:49:12.680 INFO [12249]: COREGRADE is starting... -- 08:49:12.680 INFO [12249]: Version from config: 1.0 -- 08:49:12.680 DEBUG [12249]: Connecting to database... -- 08:49:12.680 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:12.680 SQL [12249]: pgsql_db_connect() -- 08:49:12.685 DEBUG [12249]: Database connection successful -- 08:49:12.685 INFO [12249]: _SERVER found -- 08:49:12.685 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 08:49:12.685 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:12.685 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:12.685 INFO [12249]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 08:49:12.685 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:12.699 INFO [12249]: COREGRADE is stopping... -- 08:49:12.699 DEBUG [12249]: Closing database connection -- 08:49:12.699 SQL [12249]: pgsql_close() -- 08:49:12.706 INFO [12347]: COREGRADE is starting... -- 08:49:12.706 INFO [12347]: Version from config: 1.0 -- 08:49:12.706 DEBUG [12347]: Connecting to database... -- 08:49:12.706 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:12.706 SQL [12347]: pgsql_db_connect() -- 08:49:12.710 DEBUG [12347]: Database connection successful -- 08:49:12.710 INFO [12347]: _SERVER found -- 08:49:12.710 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 08:49:12.710 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:12.710 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:12.710 INFO [12347]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 08:49:12.710 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:12.722 INFO [12347]: COREGRADE is stopping... -- 08:49:12.722 DEBUG [12347]: Closing database connection -- 08:49:12.722 SQL [12347]: pgsql_close() -- 08:49:12.754 INFO [12249]: COREGRADE is starting... -- 08:49:12.754 INFO [12249]: Version from config: 1.0 -- 08:49:12.754 DEBUG [12249]: Connecting to database... -- 08:49:12.754 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:12.754 SQL [12249]: pgsql_db_connect() -- 08:49:12.759 DEBUG [12249]: Database connection successful -- 08:49:12.759 INFO [12249]: _SERVER found -- 08:49:12.759 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 08:49:12.759 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:12.759 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:12.759 INFO [12249]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 08:49:12.759 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:12.770 INFO [12249]: COREGRADE is stopping... -- 08:49:12.770 DEBUG [12249]: Closing database connection -- 08:49:12.770 SQL [12249]: pgsql_close() -- 08:49:12.780 INFO [12249]: COREGRADE is starting... -- 08:49:12.780 INFO [12249]: Version from config: 1.0 -- 08:49:12.780 DEBUG [12249]: Connecting to database... -- 08:49:12.780 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:12.780 SQL [12249]: pgsql_db_connect() -- 08:49:12.790 INFO [12347]: COREGRADE is starting... -- 08:49:12.790 INFO [12347]: Version from config: 1.0 -- 08:49:12.790 DEBUG [12347]: Connecting to database... -- 08:49:12.790 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:12.791 SQL [12347]: pgsql_db_connect() -- 08:49:12.784 DEBUG [12249]: Database connection successful -- 08:49:12.784 INFO [12249]: _SERVER found -- 08:49:12.784 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 08:49:12.784 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:12.784 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:12.784 INFO [12249]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 08:49:12.784 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:12.796 INFO [12249]: COREGRADE is stopping... -- 08:49:12.796 DEBUG [12249]: Closing database connection -- 08:49:12.796 SQL [12249]: pgsql_close() -- 08:49:12.795 DEBUG [12347]: Database connection successful -- 08:49:12.795 INFO [12347]: _SERVER found -- 08:49:12.795 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 08:49:12.796 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:12.796 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:12.796 INFO [12347]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 08:49:12.796 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:12.807 INFO [12347]: COREGRADE is stopping... -- 08:49:12.807 DEBUG [12347]: Closing database connection -- 08:49:12.807 SQL [12347]: pgsql_close() -- 08:49:12.853 INFO [12249]: COREGRADE is starting... -- 08:49:12.853 INFO [12249]: Version from config: 1.0 -- 08:49:12.853 DEBUG [12249]: Connecting to database... -- 08:49:12.853 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:12.853 SQL [12249]: pgsql_db_connect() -- 08:49:12.857 DEBUG [12249]: Database connection successful -- 08:49:12.857 INFO [12249]: _SERVER found -- 08:49:12.857 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 08:49:12.857 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:12.857 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:12.857 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 08:49:12.857 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:12.869 INFO [12249]: COREGRADE is stopping... -- 08:49:12.869 DEBUG [12249]: Closing database connection -- 08:49:12.869 SQL [12249]: pgsql_close() -- 08:49:12.876 INFO [12249]: COREGRADE is starting... -- 08:49:12.876 INFO [12249]: Version from config: 1.0 -- 08:49:12.876 DEBUG [12249]: Connecting to database... -- 08:49:12.876 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:12.876 SQL [12249]: pgsql_db_connect() -- 08:49:12.878 INFO [12347]: COREGRADE is starting... -- 08:49:12.878 INFO [12347]: Version from config: 1.0 -- 08:49:12.878 DEBUG [12347]: Connecting to database... -- 08:49:12.878 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:12.878 SQL [12347]: pgsql_db_connect() -- 08:49:12.881 DEBUG [12249]: Database connection successful -- 08:49:12.881 INFO [12249]: _SERVER found -- 08:49:12.881 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 08:49:12.881 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:12.881 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:12.881 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 08:49:12.881 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:12.892 INFO [12249]: COREGRADE is stopping... -- 08:49:12.892 DEBUG [12249]: Closing database connection -- 08:49:12.892 SQL [12249]: pgsql_close() -- 08:49:12.882 DEBUG [12347]: Database connection successful -- 08:49:12.882 INFO [12347]: _SERVER found -- 08:49:12.882 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 08:49:12.882 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:12.882 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:12.882 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 08:49:12.882 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:12.894 INFO [12347]: COREGRADE is stopping... -- 08:49:12.894 DEBUG [12347]: Closing database connection -- 08:49:12.894 SQL [12347]: pgsql_close() -- 08:49:12.956 INFO [12249]: COREGRADE is starting... -- 08:49:12.956 INFO [12249]: Version from config: 1.0 -- 08:49:12.956 DEBUG [12249]: Connecting to database... -- 08:49:12.956 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:12.956 SQL [12249]: pgsql_db_connect() -- 08:49:12.962 INFO [12347]: COREGRADE is starting... -- 08:49:12.962 INFO [12347]: Version from config: 1.0 -- 08:49:12.962 DEBUG [12347]: Connecting to database... -- 08:49:12.962 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:12.962 SQL [12347]: pgsql_db_connect() -- 08:49:12.960 DEBUG [12249]: Database connection successful -- 08:49:12.960 INFO [12249]: _SERVER found -- 08:49:12.960 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 08:49:12.960 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:12.960 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:12.960 INFO [12249]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 08:49:12.960 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:12.972 INFO [12249]: COREGRADE is stopping... -- 08:49:12.972 DEBUG [12249]: Closing database connection -- 08:49:12.972 SQL [12249]: pgsql_close() -- 08:49:12.976 INFO [12250]: COREGRADE is starting... -- 08:49:12.976 INFO [12250]: Version from config: 1.0 -- 08:49:12.976 DEBUG [12250]: Connecting to database... -- 08:49:12.976 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:12.976 SQL [12250]: pgsql_db_connect() -- 08:49:12.967 DEBUG [12347]: Database connection successful -- 08:49:12.967 INFO [12347]: _SERVER found -- 08:49:12.967 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 08:49:12.967 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:12.967 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:12.967 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 08:49:12.967 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:12.979 INFO [12347]: COREGRADE is stopping... -- 08:49:12.979 DEBUG [12347]: Closing database connection -- 08:49:12.979 SQL [12347]: pgsql_close() -- 08:49:12.981 DEBUG [12250]: Database connection successful -- 08:49:12.981 INFO [12250]: _SERVER found -- 08:49:12.981 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 08:49:12.981 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:12.981 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:12.981 INFO [12250]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 08:49:12.981 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:12.994 INFO [12250]: COREGRADE is stopping... -- 08:49:12.994 DEBUG [12250]: Closing database connection -- 08:49:12.994 SQL [12250]: pgsql_close() -- 08:49:13.049 INFO [12347]: COREGRADE is starting... -- 08:49:13.050 INFO [12347]: Version from config: 1.0 -- 08:49:13.050 DEBUG [12347]: Connecting to database... -- 08:49:13.050 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:13.050 SQL [12347]: pgsql_db_connect() -- 08:49:13.056 INFO [12250]: COREGRADE is starting... -- 08:49:13.056 INFO [12250]: Version from config: 1.0 -- 08:49:13.056 DEBUG [12250]: Connecting to database... -- 08:49:13.056 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:13.056 SQL [12250]: pgsql_db_connect() -- 08:49:13.064 INFO [12249]: COREGRADE is starting... -- 08:49:13.064 INFO [12249]: Version from config: 1.0 -- 08:49:13.064 DEBUG [12249]: Connecting to database... -- 08:49:13.064 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:13.064 SQL [12249]: pgsql_db_connect() -- 08:49:13.054 DEBUG [12347]: Database connection successful -- 08:49:13.054 INFO [12347]: _SERVER found -- 08:49:13.054 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 08:49:13.054 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:13.054 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:13.054 INFO [12347]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 08:49:13.054 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:13.066 INFO [12347]: COREGRADE is stopping... -- 08:49:13.066 DEBUG [12347]: Closing database connection -- 08:49:13.066 SQL [12347]: pgsql_close() -- 08:49:13.061 DEBUG [12250]: Database connection successful -- 08:49:13.061 INFO [12250]: _SERVER found -- 08:49:13.061 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 08:49:13.061 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:13.061 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:13.061 INFO [12250]: QUERY_STRING = /assets/js/pages/dashboard.js -- 08:49:13.061 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:13.073 INFO [12250]: COREGRADE is stopping... -- 08:49:13.073 DEBUG [12250]: Closing database connection -- 08:49:13.073 SQL [12250]: pgsql_close() -- 08:49:13.070 DEBUG [12249]: Database connection successful -- 08:49:13.070 INFO [12249]: _SERVER found -- 08:49:13.070 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 08:49:13.070 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:13.070 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:13.070 INFO [12249]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 08:49:13.070 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:13.082 INFO [12249]: COREGRADE is stopping... -- 08:49:13.082 DEBUG [12249]: Closing database connection -- 08:49:13.082 SQL [12249]: pgsql_close() -- 08:49:13.135 INFO [12347]: COREGRADE is starting... -- 08:49:13.135 INFO [12347]: Version from config: 1.0 -- 08:49:13.135 DEBUG [12347]: Connecting to database... -- 08:49:13.135 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:13.135 SQL [12347]: pgsql_db_connect() -- 08:49:13.145 INFO [12249]: COREGRADE is starting... -- 08:49:13.145 INFO [12249]: Version from config: 1.0 -- 08:49:13.145 DEBUG [12249]: Connecting to database... -- 08:49:13.145 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:13.145 SQL [12249]: pgsql_db_connect() -- 08:49:13.140 DEBUG [12347]: Database connection successful -- 08:49:13.140 INFO [12347]: _SERVER found -- 08:49:13.140 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 08:49:13.140 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:13.140 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:13.140 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 08:49:13.140 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:13.151 INFO [12347]: COREGRADE is stopping... -- 08:49:13.151 DEBUG [12347]: Closing database connection -- 08:49:13.151 SQL [12347]: pgsql_close() -- 08:49:13.153 INFO [12250]: COREGRADE is starting... -- 08:49:13.153 INFO [12250]: Version from config: 1.0 -- 08:49:13.153 DEBUG [12250]: Connecting to database... -- 08:49:13.153 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:13.153 SQL [12250]: pgsql_db_connect() -- 08:49:13.150 DEBUG [12249]: Database connection successful -- 08:49:13.150 INFO [12249]: _SERVER found -- 08:49:13.150 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 08:49:13.150 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:13.150 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:13.150 INFO [12249]: QUERY_STRING = /assets/js/pages/picker_date.js -- 08:49:13.150 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:13.162 INFO [12249]: COREGRADE is stopping... -- 08:49:13.162 DEBUG [12249]: Closing database connection -- 08:49:13.162 SQL [12249]: pgsql_close() -- 08:49:13.157 DEBUG [12250]: Database connection successful -- 08:49:13.157 INFO [12250]: _SERVER found -- 08:49:13.157 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 08:49:13.157 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:13.157 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:13.157 INFO [12250]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 08:49:13.157 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:13.169 INFO [12250]: COREGRADE is stopping... -- 08:49:13.169 DEBUG [12250]: Closing database connection -- 08:49:13.169 SQL [12250]: pgsql_close() -- 08:49:13.219 INFO [12347]: COREGRADE is starting... -- 08:49:13.220 INFO [12347]: Version from config: 1.0 -- 08:49:13.220 DEBUG [12347]: Connecting to database... -- 08:49:13.220 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:13.220 SQL [12347]: pgsql_db_connect() -- 08:49:13.233 INFO [12250]: COREGRADE is starting... -- 08:49:13.234 INFO [12250]: Version from config: 1.0 -- 08:49:13.234 DEBUG [12250]: Connecting to database... -- 08:49:13.234 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:13.234 SQL [12250]: pgsql_db_connect() -- 08:49:13.224 DEBUG [12347]: Database connection successful -- 08:49:13.224 INFO [12347]: _SERVER found -- 08:49:13.224 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 08:49:13.224 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:13.224 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:13.224 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 08:49:13.224 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:13.236 INFO [12347]: COREGRADE is stopping... -- 08:49:13.236 DEBUG [12347]: Closing database connection -- 08:49:13.236 SQL [12347]: pgsql_close() -- 08:49:13.237 INFO [12249]: COREGRADE is starting... -- 08:49:13.237 INFO [12249]: Version from config: 1.0 -- 08:49:13.238 DEBUG [12249]: Connecting to database... -- 08:49:13.238 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:13.238 SQL [12249]: pgsql_db_connect() -- 08:49:13.239 DEBUG [12250]: Database connection successful -- 08:49:13.239 INFO [12250]: _SERVER found -- 08:49:13.239 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 08:49:13.239 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:13.239 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:13.239 INFO [12250]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 08:49:13.239 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:13.250 INFO [12250]: COREGRADE is stopping... -- 08:49:13.250 DEBUG [12250]: Closing database connection -- 08:49:13.250 SQL [12250]: pgsql_close() -- 08:49:13.242 DEBUG [12249]: Database connection successful -- 08:49:13.242 INFO [12249]: _SERVER found -- 08:49:13.242 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 08:49:13.242 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:13.242 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:13.242 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 08:49:13.242 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:13.254 INFO [12249]: COREGRADE is stopping... -- 08:49:13.254 DEBUG [12249]: Closing database connection -- 08:49:13.254 SQL [12249]: pgsql_close() -- 08:49:13.305 INFO [12347]: COREGRADE is starting... -- 08:49:13.305 INFO [12347]: Version from config: 1.0 -- 08:49:13.305 DEBUG [12347]: Connecting to database... -- 08:49:13.306 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:13.306 SQL [12347]: pgsql_db_connect() -- 08:49:13.310 DEBUG [12347]: Database connection successful -- 08:49:13.310 INFO [12347]: _SERVER found -- 08:49:13.310 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 08:49:13.310 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:13.310 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:13.310 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 08:49:13.310 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:13.322 INFO [12347]: COREGRADE is stopping... -- 08:49:13.322 DEBUG [12347]: Closing database connection -- 08:49:13.322 SQL [12347]: pgsql_close() -- 08:49:13.322 INFO [12250]: COREGRADE is starting... -- 08:49:13.322 INFO [12249]: COREGRADE is starting... -- 08:49:13.323 INFO [12249]: Version from config: 1.0 -- 08:49:13.323 DEBUG [12249]: Connecting to database... -- 08:49:13.323 INFO [12250]: Version from config: 1.0 -- 08:49:13.323 DEBUG [12250]: Connecting to database... -- 08:49:13.323 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:13.323 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:13.323 SQL [12249]: pgsql_db_connect() -- 08:49:13.323 SQL [12250]: pgsql_db_connect() -- 08:49:13.328 DEBUG [12249]: Database connection successful -- 08:49:13.328 INFO [12249]: _SERVER found -- 08:49:13.328 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 08:49:13.328 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:13.328 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:13.328 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 08:49:13.328 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:13.339 INFO [12249]: COREGRADE is stopping... -- 08:49:13.339 DEBUG [12249]: Closing database connection -- 08:49:13.339 SQL [12249]: pgsql_close() -- 08:49:13.328 DEBUG [12250]: Database connection successful -- 08:49:13.328 INFO [12250]: _SERVER found -- 08:49:13.328 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 08:49:13.328 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:13.328 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:13.328 INFO [12250]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 08:49:13.328 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:13.339 INFO [12250]: COREGRADE is stopping... -- 08:49:13.339 DEBUG [12250]: Closing database connection -- 08:49:13.339 SQL [12250]: pgsql_close() -- 08:49:13.390 INFO [12347]: COREGRADE is starting... -- 08:49:13.391 INFO [12347]: Version from config: 1.0 -- 08:49:13.391 DEBUG [12347]: Connecting to database... -- 08:49:13.391 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:13.391 SQL [12347]: pgsql_db_connect() -- 08:49:13.395 DEBUG [12347]: Database connection successful -- 08:49:13.395 INFO [12347]: _SERVER found -- 08:49:13.395 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 08:49:13.395 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:13.395 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:13.395 INFO [12347]: QUERY_STRING = /assets/customjs/general.js -- 08:49:13.395 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:13.407 INFO [12347]: COREGRADE is stopping... -- 08:49:13.407 DEBUG [12347]: Closing database connection -- 08:49:13.407 SQL [12347]: pgsql_close() -- 08:49:13.412 INFO [12249]: COREGRADE is starting... -- 08:49:13.412 INFO [12249]: Version from config: 1.0 -- 08:49:13.412 DEBUG [12249]: Connecting to database... -- 08:49:13.412 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:13.412 SQL [12249]: pgsql_db_connect() -- 08:49:13.417 DEBUG [12249]: Database connection successful -- 08:49:13.417 INFO [12249]: _SERVER found -- 08:49:13.417 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 08:49:13.417 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:13.417 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:13.417 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 08:49:13.417 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:13.428 INFO [12249]: COREGRADE is stopping... -- 08:49:13.428 DEBUG [12249]: Closing database connection -- 08:49:13.428 SQL [12249]: pgsql_close() -- 08:49:13.500 INFO [12249]: COREGRADE is starting... -- 08:49:13.500 INFO [12249]: Version from config: 1.0 -- 08:49:13.500 DEBUG [12249]: Connecting to database... -- 08:49:13.500 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:13.500 SQL [12249]: pgsql_db_connect() -- 08:49:13.505 DEBUG [12249]: Database connection successful -- 08:49:13.505 INFO [12249]: _SERVER found -- 08:49:13.505 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 08:49:13.505 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:13.505 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:13.505 INFO [12249]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 08:49:13.505 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:13.517 INFO [12249]: COREGRADE is stopping... -- 08:49:13.517 DEBUG [12249]: Closing database connection -- 08:49:13.517 SQL [12249]: pgsql_close() -- 08:49:13.588 INFO [12249]: COREGRADE is starting... -- 08:49:13.588 INFO [12249]: Version from config: 1.0 -- 08:49:13.588 DEBUG [12249]: Connecting to database... -- 08:49:13.588 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:13.588 SQL [12249]: pgsql_db_connect() -- 08:49:13.593 DEBUG [12249]: Database connection successful -- 08:49:13.593 INFO [12249]: _SERVER found -- 08:49:13.593 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 08:49:13.593 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:13.593 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:13.593 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 08:49:13.593 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:13.605 INFO [12249]: COREGRADE is stopping... -- 08:49:13.605 DEBUG [12249]: Closing database connection -- 08:49:13.605 SQL [12249]: pgsql_close() -- 08:49:13.676 INFO [12249]: COREGRADE is starting... -- 08:49:13.677 INFO [12249]: Version from config: 1.0 -- 08:49:13.677 DEBUG [12249]: Connecting to database... -- 08:49:13.677 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:13.677 SQL [12249]: pgsql_db_connect() -- 08:49:13.681 DEBUG [12249]: Database connection successful -- 08:49:13.681 INFO [12249]: _SERVER found -- 08:49:13.681 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 08:49:13.681 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:13.681 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:13.681 INFO [12249]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 08:49:13.681 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:13.693 INFO [12249]: COREGRADE is stopping... -- 08:49:13.693 DEBUG [12249]: Closing database connection -- 08:49:13.693 SQL [12249]: pgsql_close() -- 08:49:13.764 INFO [12249]: COREGRADE is starting... -- 08:49:13.765 INFO [12249]: Version from config: 1.0 -- 08:49:13.765 DEBUG [12249]: Connecting to database... -- 08:49:13.765 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:13.765 SQL [12249]: pgsql_db_connect() -- 08:49:13.769 DEBUG [12249]: Database connection successful -- 08:49:13.769 INFO [12249]: _SERVER found -- 08:49:13.769 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 08:49:13.769 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:13.769 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:13.769 INFO [12249]: QUERY_STRING = /assets/js/pages/dashboard.js -- 08:49:13.769 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:13.781 INFO [12249]: COREGRADE is stopping... -- 08:49:13.781 DEBUG [12249]: Closing database connection -- 08:49:13.781 SQL [12249]: pgsql_close() -- 08:49:13.854 INFO [12249]: COREGRADE is starting... -- 08:49:13.854 INFO [12249]: Version from config: 1.0 -- 08:49:13.854 DEBUG [12249]: Connecting to database... -- 08:49:13.854 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:13.854 SQL [12249]: pgsql_db_connect() -- 08:49:13.859 DEBUG [12249]: Database connection successful -- 08:49:13.859 INFO [12249]: _SERVER found -- 08:49:13.859 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 08:49:13.859 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:13.859 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:13.859 INFO [12249]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 08:49:13.859 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:13.870 INFO [12249]: COREGRADE is stopping... -- 08:49:13.870 DEBUG [12249]: Closing database connection -- 08:49:13.870 SQL [12249]: pgsql_close() -- 08:49:13.942 INFO [12249]: COREGRADE is starting... -- 08:49:13.942 INFO [12249]: Version from config: 1.0 -- 08:49:13.942 DEBUG [12249]: Connecting to database... -- 08:49:13.942 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:13.942 SQL [12249]: pgsql_db_connect() -- 08:49:13.946 DEBUG [12249]: Database connection successful -- 08:49:13.946 INFO [12249]: _SERVER found -- 08:49:13.946 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 08:49:13.946 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:13.946 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:13.946 INFO [12249]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 08:49:13.946 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:13.958 INFO [12249]: COREGRADE is stopping... -- 08:49:13.958 DEBUG [12249]: Closing database connection -- 08:49:13.958 SQL [12249]: pgsql_close() -- 08:49:14.030 INFO [12249]: COREGRADE is starting... -- 08:49:14.030 INFO [12249]: Version from config: 1.0 -- 08:49:14.030 DEBUG [12249]: Connecting to database... -- 08:49:14.030 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:14.030 SQL [12249]: pgsql_db_connect() -- 08:49:14.035 DEBUG [12249]: Database connection successful -- 08:49:14.035 INFO [12249]: _SERVER found -- 08:49:14.035 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 08:49:14.035 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:14.035 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:14.035 INFO [12249]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 08:49:14.035 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:14.047 INFO [12249]: COREGRADE is stopping... -- 08:49:14.047 DEBUG [12249]: Closing database connection -- 08:49:14.047 SQL [12249]: pgsql_close() -- 08:49:14.118 INFO [12249]: COREGRADE is starting... -- 08:49:14.118 INFO [12249]: Version from config: 1.0 -- 08:49:14.118 DEBUG [12249]: Connecting to database... -- 08:49:14.118 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:14.119 SQL [12249]: pgsql_db_connect() -- 08:49:14.123 DEBUG [12249]: Database connection successful -- 08:49:14.123 INFO [12249]: _SERVER found -- 08:49:14.123 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 08:49:14.123 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:14.123 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:14.123 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 08:49:14.123 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:14.135 INFO [12249]: COREGRADE is stopping... -- 08:49:14.135 DEBUG [12249]: Closing database connection -- 08:49:14.135 SQL [12249]: pgsql_close() -- 08:49:14.207 INFO [12249]: COREGRADE is starting... -- 08:49:14.207 INFO [12249]: Version from config: 1.0 -- 08:49:14.207 DEBUG [12249]: Connecting to database... -- 08:49:14.207 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:14.207 SQL [12249]: pgsql_db_connect() -- 08:49:14.212 DEBUG [12249]: Database connection successful -- 08:49:14.212 INFO [12249]: _SERVER found -- 08:49:14.212 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 08:49:14.212 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:14.212 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:14.212 INFO [12249]: QUERY_STRING = /assets/js/pages/picker_date.js -- 08:49:14.212 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:14.223 INFO [12249]: COREGRADE is stopping... -- 08:49:14.223 DEBUG [12249]: Closing database connection -- 08:49:14.223 SQL [12249]: pgsql_close() -- 08:49:14.295 INFO [12249]: COREGRADE is starting... -- 08:49:14.295 INFO [12249]: Version from config: 1.0 -- 08:49:14.295 DEBUG [12249]: Connecting to database... -- 08:49:14.295 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:14.295 SQL [12249]: pgsql_db_connect() -- 08:49:14.300 DEBUG [12249]: Database connection successful -- 08:49:14.300 INFO [12249]: _SERVER found -- 08:49:14.300 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 08:49:14.300 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:14.300 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:14.300 INFO [12249]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 08:49:14.300 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:14.312 INFO [12249]: COREGRADE is stopping... -- 08:49:14.312 DEBUG [12249]: Closing database connection -- 08:49:14.312 SQL [12249]: pgsql_close() -- 08:49:14.383 INFO [12249]: COREGRADE is starting... -- 08:49:14.383 INFO [12249]: Version from config: 1.0 -- 08:49:14.383 DEBUG [12249]: Connecting to database... -- 08:49:14.383 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:14.383 SQL [12249]: pgsql_db_connect() -- 08:49:14.388 DEBUG [12249]: Database connection successful -- 08:49:14.388 INFO [12249]: _SERVER found -- 08:49:14.388 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 08:49:14.388 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:14.388 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:14.388 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 08:49:14.388 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:14.400 INFO [12249]: COREGRADE is stopping... -- 08:49:14.400 DEBUG [12249]: Closing database connection -- 08:49:14.400 SQL [12249]: pgsql_close() -- 08:49:14.471 INFO [12249]: COREGRADE is starting... -- 08:49:14.472 INFO [12249]: Version from config: 1.0 -- 08:49:14.472 DEBUG [12249]: Connecting to database... -- 08:49:14.472 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:14.472 SQL [12249]: pgsql_db_connect() -- 08:49:14.476 DEBUG [12249]: Database connection successful -- 08:49:14.476 INFO [12249]: _SERVER found -- 08:49:14.476 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 08:49:14.476 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:14.476 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:14.476 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 08:49:14.476 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:14.488 INFO [12249]: COREGRADE is stopping... -- 08:49:14.488 DEBUG [12249]: Closing database connection -- 08:49:14.488 SQL [12249]: pgsql_close() -- 08:49:14.559 INFO [12249]: COREGRADE is starting... -- 08:49:14.560 INFO [12249]: Version from config: 1.0 -- 08:49:14.560 DEBUG [12249]: Connecting to database... -- 08:49:14.560 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:14.560 SQL [12249]: pgsql_db_connect() -- 08:49:14.564 DEBUG [12249]: Database connection successful -- 08:49:14.564 INFO [12249]: _SERVER found -- 08:49:14.564 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 08:49:14.564 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:14.564 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:14.564 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 08:49:14.564 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:14.576 INFO [12249]: COREGRADE is stopping... -- 08:49:14.576 DEBUG [12249]: Closing database connection -- 08:49:14.576 SQL [12249]: pgsql_close() -- 08:49:14.649 INFO [12249]: COREGRADE is starting... -- 08:49:14.649 INFO [12249]: Version from config: 1.0 -- 08:49:14.649 DEBUG [12249]: Connecting to database... -- 08:49:14.650 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:14.650 SQL [12249]: pgsql_db_connect() -- 08:49:14.654 DEBUG [12249]: Database connection successful -- 08:49:14.654 INFO [12249]: _SERVER found -- 08:49:14.654 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 08:49:14.654 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:14.654 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:14.654 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 08:49:14.654 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:14.666 INFO [12249]: COREGRADE is stopping... -- 08:49:14.666 DEBUG [12249]: Closing database connection -- 08:49:14.666 SQL [12249]: pgsql_close() -- 08:49:14.748 INFO [12249]: COREGRADE is starting... -- 08:49:14.748 INFO [12249]: Version from config: 1.0 -- 08:49:14.748 DEBUG [12249]: Connecting to database... -- 08:49:14.748 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:14.748 SQL [12249]: pgsql_db_connect() -- 08:49:14.753 DEBUG [12249]: Database connection successful -- 08:49:14.753 INFO [12249]: _SERVER found -- 08:49:14.753 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 08:49:14.753 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:14.753 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:14.753 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 08:49:14.753 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:14.765 INFO [12249]: COREGRADE is stopping... -- 08:49:14.765 DEBUG [12249]: Closing database connection -- 08:49:14.765 SQL [12249]: pgsql_close() -- 08:49:14.836 INFO [12249]: COREGRADE is starting... -- 08:49:14.836 INFO [12249]: Version from config: 1.0 -- 08:49:14.836 DEBUG [12249]: Connecting to database... -- 08:49:14.836 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:14.836 SQL [12249]: pgsql_db_connect() -- 08:49:14.841 DEBUG [12249]: Database connection successful -- 08:49:14.841 INFO [12249]: _SERVER found -- 08:49:14.841 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 08:49:14.841 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:14.841 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:14.841 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 08:49:14.841 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:14.852 INFO [12249]: COREGRADE is stopping... -- 08:49:14.852 DEBUG [12249]: Closing database connection -- 08:49:14.852 SQL [12249]: pgsql_close() -- 08:49:14.926 INFO [12249]: COREGRADE is starting... -- 08:49:14.926 INFO [12249]: Version from config: 1.0 -- 08:49:14.926 DEBUG [12249]: Connecting to database... -- 08:49:14.926 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:49:14.926 SQL [12249]: pgsql_db_connect() -- 08:49:14.931 DEBUG [12249]: Database connection successful -- 08:49:14.931 INFO [12249]: _SERVER found -- 08:49:14.931 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 08:49:14.931 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 08:49:14.931 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 08:49:14.931 INFO [12249]: QUERY_STRING = /assets/customjs/general.js -- 08:49:14.931 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 08:49:14.942 INFO [12249]: COREGRADE is stopping... -- 08:49:14.942 DEBUG [12249]: Closing database connection -- 08:49:14.942 SQL [12249]: pgsql_close() -- 09:09:15.161 INFO [12305]: COREGRADE is starting... -- 09:09:15.161 INFO [12305]: Version from config: 1.0 -- 09:09:15.161 DEBUG [12305]: Connecting to database... -- 09:09:15.161 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:15.161 SQL [12305]: pgsql_db_connect() -- 09:09:15.166 DEBUG [12305]: Database connection successful -- 09:09:15.166 INFO [12305]: _SERVER found -- 09:09:15.166 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 09:09:15.166 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:15.166 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=im1p3ph1k0qu7jjg0p73p45ujqvo1gvr -- 09:09:15.166 INFO [12305]: QUERY_STRING = /logout -- 09:09:15.166 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:15.199 INFO [12305]: COREGRADE is stopping... -- 09:09:15.199 DEBUG [12305]: Closing database connection -- 09:09:15.199 SQL [12305]: pgsql_close() -- 09:09:15.277 INFO [12305]: COREGRADE is starting... -- 09:09:15.277 INFO [12305]: Version from config: 1.0 -- 09:09:15.277 DEBUG [12305]: Connecting to database... -- 09:09:15.277 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:15.277 SQL [12305]: pgsql_db_connect() -- 09:09:15.281 DEBUG [12305]: Database connection successful -- 09:09:15.281 INFO [12305]: _SERVER found -- 09:09:15.281 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 09:09:15.281 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:15.281 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:15.281 INFO [12305]: QUERY_STRING = /start -- 09:09:15.281 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:15.316 INFO [12305]: COREGRADE is stopping... -- 09:09:15.316 DEBUG [12305]: Closing database connection -- 09:09:15.316 SQL [12305]: pgsql_close() -- 09:09:15.443 INFO [12334]: COREGRADE is starting... -- 09:09:15.443 INFO [12334]: Version from config: 1.0 -- 09:09:15.443 DEBUG [12334]: Connecting to database... -- 09:09:15.443 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:15.443 SQL [12334]: pgsql_db_connect() -- 09:09:15.460 INFO [12305]: COREGRADE is starting... -- 09:09:15.460 INFO [12305]: Version from config: 1.0 -- 09:09:15.460 DEBUG [12305]: Connecting to database... -- 09:09:15.460 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:15.460 SQL [12305]: pgsql_db_connect() -- 09:09:15.447 DEBUG [12334]: Database connection successful -- 09:09:15.447 INFO [12334]: _SERVER found -- 09:09:15.447 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 09:09:15.447 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:15.447 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:15.447 INFO [12334]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 09:09:15.447 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:15.461 INFO [12334]: COREGRADE is stopping... -- 09:09:15.461 DEBUG [12334]: Closing database connection -- 09:09:15.461 SQL [12334]: pgsql_close() -- 09:09:15.465 DEBUG [12305]: Database connection successful -- 09:09:15.465 INFO [12305]: _SERVER found -- 09:09:15.465 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 09:09:15.465 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:15.465 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:15.465 INFO [12305]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 09:09:15.465 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:15.476 INFO [12305]: COREGRADE is stopping... -- 09:09:15.476 DEBUG [12305]: Closing database connection -- 09:09:15.476 SQL [12305]: pgsql_close() -- 09:09:15.505 INFO [12248]: COREGRADE is starting... -- 09:09:15.505 INFO [12248]: Version from config: 1.0 -- 09:09:15.505 DEBUG [12248]: Connecting to database... -- 09:09:15.505 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:15.505 SQL [12248]: pgsql_db_connect() -- 09:09:15.509 DEBUG [12248]: Database connection successful -- 09:09:15.509 INFO [12248]: _SERVER found -- 09:09:15.509 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 09:09:15.509 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:15.509 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:15.509 INFO [12248]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 09:09:15.509 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:15.523 INFO [12248]: COREGRADE is stopping... -- 09:09:15.523 DEBUG [12248]: Closing database connection -- 09:09:15.523 SQL [12248]: pgsql_close() -- 09:09:15.542 INFO [12305]: COREGRADE is starting... -- 09:09:15.542 INFO [12334]: COREGRADE is starting... -- 09:09:15.542 INFO [12334]: Version from config: 1.0 -- 09:09:15.542 DEBUG [12334]: Connecting to database... -- 09:09:15.542 INFO [12305]: Version from config: 1.0 -- 09:09:15.542 DEBUG [12305]: Connecting to database... -- 09:09:15.542 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:15.542 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:15.542 SQL [12334]: pgsql_db_connect() -- 09:09:15.542 SQL [12305]: pgsql_db_connect() -- 09:09:15.546 DEBUG [12305]: Database connection successful -- 09:09:15.546 INFO [12305]: _SERVER found -- 09:09:15.546 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 09:09:15.546 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:15.546 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:15.546 INFO [12305]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 09:09:15.546 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:15.558 INFO [12305]: COREGRADE is stopping... -- 09:09:15.546 DEBUG [12334]: Database connection successful -- 09:09:15.546 INFO [12334]: _SERVER found -- 09:09:15.546 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 09:09:15.546 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:15.546 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:15.546 INFO [12334]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 09:09:15.546 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:15.558 INFO [12334]: COREGRADE is stopping... -- 09:09:15.558 DEBUG [12305]: Closing database connection -- 09:09:15.558 DEBUG [12334]: Closing database connection -- 09:09:15.558 SQL [12305]: pgsql_close() -- 09:09:15.558 SQL [12334]: pgsql_close() -- 09:09:15.601 INFO [12248]: COREGRADE is starting... -- 09:09:15.601 INFO [12248]: Version from config: 1.0 -- 09:09:15.601 DEBUG [12248]: Connecting to database... -- 09:09:15.601 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:15.601 SQL [12248]: pgsql_db_connect() -- 09:09:15.605 DEBUG [12248]: Database connection successful -- 09:09:15.605 INFO [12248]: _SERVER found -- 09:09:15.605 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 09:09:15.605 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:15.605 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:15.605 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 09:09:15.605 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:15.616 INFO [12248]: COREGRADE is stopping... -- 09:09:15.616 DEBUG [12248]: Closing database connection -- 09:09:15.616 SQL [12248]: pgsql_close() -- 09:09:15.625 INFO [12305]: COREGRADE is starting... -- 09:09:15.625 INFO [12305]: Version from config: 1.0 -- 09:09:15.625 DEBUG [12305]: Connecting to database... -- 09:09:15.625 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:15.625 SQL [12305]: pgsql_db_connect() -- 09:09:15.637 INFO [12334]: COREGRADE is starting... -- 09:09:15.637 INFO [12334]: Version from config: 1.0 -- 09:09:15.637 DEBUG [12334]: Connecting to database... -- 09:09:15.637 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:15.637 SQL [12334]: pgsql_db_connect() -- 09:09:15.629 DEBUG [12305]: Database connection successful -- 09:09:15.629 INFO [12305]: _SERVER found -- 09:09:15.629 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 09:09:15.629 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:15.629 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:15.629 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 09:09:15.629 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:15.640 INFO [12305]: COREGRADE is stopping... -- 09:09:15.640 DEBUG [12305]: Closing database connection -- 09:09:15.640 SQL [12305]: pgsql_close() -- 09:09:15.641 DEBUG [12334]: Database connection successful -- 09:09:15.641 INFO [12334]: _SERVER found -- 09:09:15.641 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 09:09:15.641 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:15.641 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:15.641 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 09:09:15.641 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:15.652 INFO [12334]: COREGRADE is stopping... -- 09:09:15.652 DEBUG [12334]: Closing database connection -- 09:09:15.652 SQL [12334]: pgsql_close() -- 09:09:15.694 INFO [12248]: COREGRADE is starting... -- 09:09:15.694 INFO [12248]: Version from config: 1.0 -- 09:09:15.694 DEBUG [12248]: Connecting to database... -- 09:09:15.694 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:15.694 SQL [12248]: pgsql_db_connect() -- 09:09:15.705 INFO [12305]: COREGRADE is starting... -- 09:09:15.705 INFO [12305]: Version from config: 1.0 -- 09:09:15.705 DEBUG [12305]: Connecting to database... -- 09:09:15.705 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:15.705 SQL [12305]: pgsql_db_connect() -- 09:09:15.698 DEBUG [12248]: Database connection successful -- 09:09:15.698 INFO [12248]: _SERVER found -- 09:09:15.698 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 09:09:15.698 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:15.698 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:15.698 INFO [12248]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 09:09:15.698 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:15.710 INFO [12248]: COREGRADE is stopping... -- 09:09:15.710 DEBUG [12248]: Closing database connection -- 09:09:15.710 SQL [12248]: pgsql_close() -- 09:09:15.709 DEBUG [12305]: Database connection successful -- 09:09:15.709 INFO [12305]: _SERVER found -- 09:09:15.709 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 09:09:15.709 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:15.709 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:15.709 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 09:09:15.709 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:15.721 INFO [12305]: COREGRADE is stopping... -- 09:09:15.721 DEBUG [12305]: Closing database connection -- 09:09:15.721 SQL [12305]: pgsql_close() -- 09:09:15.732 INFO [12334]: COREGRADE is starting... -- 09:09:15.732 INFO [12334]: Version from config: 1.0 -- 09:09:15.732 DEBUG [12334]: Connecting to database... -- 09:09:15.732 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:15.732 SQL [12334]: pgsql_db_connect() -- 09:09:15.737 DEBUG [12334]: Database connection successful -- 09:09:15.737 INFO [12334]: _SERVER found -- 09:09:15.737 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 09:09:15.737 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:15.737 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:15.737 INFO [12334]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 09:09:15.737 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:15.748 INFO [12334]: COREGRADE is stopping... -- 09:09:15.748 DEBUG [12334]: Closing database connection -- 09:09:15.748 SQL [12334]: pgsql_close() -- 09:09:15.786 INFO [12305]: COREGRADE is starting... -- 09:09:15.786 INFO [12305]: Version from config: 1.0 -- 09:09:15.786 DEBUG [12305]: Connecting to database... -- 09:09:15.786 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:15.786 SQL [12305]: pgsql_db_connect() -- 09:09:15.790 INFO [12248]: COREGRADE is starting... -- 09:09:15.790 INFO [12248]: Version from config: 1.0 -- 09:09:15.790 DEBUG [12248]: Connecting to database... -- 09:09:15.790 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:15.790 SQL [12248]: pgsql_db_connect() -- 09:09:15.790 DEBUG [12305]: Database connection successful -- 09:09:15.790 INFO [12305]: _SERVER found -- 09:09:15.790 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 09:09:15.790 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:15.790 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:15.790 INFO [12305]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 09:09:15.790 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:15.802 INFO [12305]: COREGRADE is stopping... -- 09:09:15.802 DEBUG [12305]: Closing database connection -- 09:09:15.802 SQL [12305]: pgsql_close() -- 09:09:15.794 DEBUG [12248]: Database connection successful -- 09:09:15.794 INFO [12248]: _SERVER found -- 09:09:15.794 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 09:09:15.794 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:15.794 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:15.794 INFO [12248]: QUERY_STRING = /assets/js/pages/dashboard.js -- 09:09:15.794 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:15.806 INFO [12248]: COREGRADE is stopping... -- 09:09:15.806 DEBUG [12248]: Closing database connection -- 09:09:15.806 SQL [12248]: pgsql_close() -- 09:09:15.817 INFO [12334]: COREGRADE is starting... -- 09:09:15.817 INFO [12334]: Version from config: 1.0 -- 09:09:15.817 DEBUG [12334]: Connecting to database... -- 09:09:15.817 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:15.817 SQL [12334]: pgsql_db_connect() -- 09:09:15.821 DEBUG [12334]: Database connection successful -- 09:09:15.821 INFO [12334]: _SERVER found -- 09:09:15.821 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 09:09:15.821 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:15.821 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:15.821 INFO [12334]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 09:09:15.821 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:15.833 INFO [12334]: COREGRADE is stopping... -- 09:09:15.833 DEBUG [12334]: Closing database connection -- 09:09:15.833 SQL [12334]: pgsql_close() -- 09:09:15.867 INFO [12305]: COREGRADE is starting... -- 09:09:15.867 INFO [12305]: Version from config: 1.0 -- 09:09:15.867 DEBUG [12305]: Connecting to database... -- 09:09:15.867 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:15.867 SQL [12305]: pgsql_db_connect() -- 09:09:15.874 INFO [12248]: COREGRADE is starting... -- 09:09:15.874 INFO [12248]: Version from config: 1.0 -- 09:09:15.874 DEBUG [12248]: Connecting to database... -- 09:09:15.874 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:15.874 SQL [12248]: pgsql_db_connect() -- 09:09:15.871 DEBUG [12305]: Database connection successful -- 09:09:15.871 INFO [12305]: _SERVER found -- 09:09:15.871 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 09:09:15.871 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:15.871 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:15.871 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 09:09:15.871 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:15.882 INFO [12305]: COREGRADE is stopping... -- 09:09:15.882 DEBUG [12305]: Closing database connection -- 09:09:15.882 SQL [12305]: pgsql_close() -- 09:09:15.878 DEBUG [12248]: Database connection successful -- 09:09:15.878 INFO [12248]: _SERVER found -- 09:09:15.878 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 09:09:15.878 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:15.878 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:15.878 INFO [12248]: QUERY_STRING = /assets/js/pages/picker_date.js -- 09:09:15.878 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:15.889 INFO [12248]: COREGRADE is stopping... -- 09:09:15.889 DEBUG [12248]: Closing database connection -- 09:09:15.889 SQL [12248]: pgsql_close() -- 09:09:15.901 INFO [12334]: COREGRADE is starting... -- 09:09:15.902 INFO [12334]: Version from config: 1.0 -- 09:09:15.902 DEBUG [12334]: Connecting to database... -- 09:09:15.902 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:15.902 SQL [12334]: pgsql_db_connect() -- 09:09:15.905 DEBUG [12334]: Database connection successful -- 09:09:15.905 INFO [12334]: _SERVER found -- 09:09:15.905 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 09:09:15.905 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:15.905 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:15.905 INFO [12334]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 09:09:15.905 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:15.917 INFO [12334]: COREGRADE is stopping... -- 09:09:15.917 DEBUG [12334]: Closing database connection -- 09:09:15.917 SQL [12334]: pgsql_close() -- 09:09:15.947 INFO [12305]: COREGRADE is starting... -- 09:09:15.947 INFO [12305]: Version from config: 1.0 -- 09:09:15.947 DEBUG [12305]: Connecting to database... -- 09:09:15.948 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:15.948 SQL [12305]: pgsql_db_connect() -- 09:09:15.957 INFO [12248]: COREGRADE is starting... -- 09:09:15.957 INFO [12248]: Version from config: 1.0 -- 09:09:15.957 DEBUG [12248]: Connecting to database... -- 09:09:15.957 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:15.957 SQL [12248]: pgsql_db_connect() -- 09:09:15.951 DEBUG [12305]: Database connection successful -- 09:09:15.951 INFO [12305]: _SERVER found -- 09:09:15.951 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 09:09:15.951 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:15.951 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:15.951 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 09:09:15.951 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:15.963 INFO [12305]: COREGRADE is stopping... -- 09:09:15.963 DEBUG [12305]: Closing database connection -- 09:09:15.963 SQL [12305]: pgsql_close() -- 09:09:15.961 DEBUG [12248]: Database connection successful -- 09:09:15.961 INFO [12248]: _SERVER found -- 09:09:15.961 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 09:09:15.961 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:15.961 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:15.961 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 09:09:15.961 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:15.973 INFO [12248]: COREGRADE is stopping... -- 09:09:15.973 DEBUG [12248]: Closing database connection -- 09:09:15.973 SQL [12248]: pgsql_close() -- 09:09:15.985 INFO [12334]: COREGRADE is starting... -- 09:09:15.985 INFO [12334]: Version from config: 1.0 -- 09:09:15.985 DEBUG [12334]: Connecting to database... -- 09:09:15.985 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:15.985 SQL [12334]: pgsql_db_connect() -- 09:09:15.989 DEBUG [12334]: Database connection successful -- 09:09:15.989 INFO [12334]: _SERVER found -- 09:09:15.989 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 09:09:15.989 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:15.989 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:15.989 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 09:09:15.989 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:15.000 INFO [12334]: COREGRADE is stopping... -- 09:09:15.000 DEBUG [12334]: Closing database connection -- 09:09:15.000 SQL [12334]: pgsql_close() -- 09:09:16.030 INFO [12305]: COREGRADE is starting... -- 09:09:16.030 INFO [12305]: Version from config: 1.0 -- 09:09:16.030 DEBUG [12305]: Connecting to database... -- 09:09:16.030 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:16.030 SQL [12305]: pgsql_db_connect() -- 09:09:16.039 INFO [12248]: COREGRADE is starting... -- 09:09:16.039 INFO [12248]: Version from config: 1.0 -- 09:09:16.039 DEBUG [12248]: Connecting to database... -- 09:09:16.039 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:16.039 SQL [12248]: pgsql_db_connect() -- 09:09:16.034 DEBUG [12305]: Database connection successful -- 09:09:16.034 INFO [12305]: _SERVER found -- 09:09:16.034 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 09:09:16.034 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:16.034 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:16.034 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 09:09:16.034 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:16.046 INFO [12305]: COREGRADE is stopping... -- 09:09:16.046 DEBUG [12305]: Closing database connection -- 09:09:16.046 SQL [12305]: pgsql_close() -- 09:09:16.044 DEBUG [12248]: Database connection successful -- 09:09:16.044 INFO [12248]: _SERVER found -- 09:09:16.044 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 09:09:16.044 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:16.044 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:16.044 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 09:09:16.044 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:16.055 INFO [12248]: COREGRADE is stopping... -- 09:09:16.055 DEBUG [12248]: Closing database connection -- 09:09:16.055 SQL [12248]: pgsql_close() -- 09:09:16.068 INFO [12334]: COREGRADE is starting... -- 09:09:16.068 INFO [12334]: Version from config: 1.0 -- 09:09:16.068 DEBUG [12334]: Connecting to database... -- 09:09:16.068 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:16.068 SQL [12334]: pgsql_db_connect() -- 09:09:16.072 DEBUG [12334]: Database connection successful -- 09:09:16.072 INFO [12334]: _SERVER found -- 09:09:16.072 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 09:09:16.072 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:16.072 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:16.072 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 09:09:16.072 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:16.084 INFO [12334]: COREGRADE is stopping... -- 09:09:16.084 DEBUG [12334]: Closing database connection -- 09:09:16.084 SQL [12334]: pgsql_close() -- 09:09:16.111 INFO [12305]: COREGRADE is starting... -- 09:09:16.111 INFO [12305]: Version from config: 1.0 -- 09:09:16.111 DEBUG [12305]: Connecting to database... -- 09:09:16.111 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:16.111 SQL [12305]: pgsql_db_connect() -- 09:09:16.121 INFO [12248]: COREGRADE is starting... -- 09:09:16.122 INFO [12248]: Version from config: 1.0 -- 09:09:16.122 DEBUG [12248]: Connecting to database... -- 09:09:16.122 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:16.122 SQL [12248]: pgsql_db_connect() -- 09:09:16.115 DEBUG [12305]: Database connection successful -- 09:09:16.115 INFO [12305]: _SERVER found -- 09:09:16.115 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 09:09:16.115 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:16.115 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:16.115 INFO [12305]: QUERY_STRING = /assets/customjs/general.js -- 09:09:16.115 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:16.126 INFO [12305]: COREGRADE is stopping... -- 09:09:16.126 DEBUG [12305]: Closing database connection -- 09:09:16.126 SQL [12305]: pgsql_close() -- 09:09:16.126 DEBUG [12248]: Database connection successful -- 09:09:16.126 INFO [12248]: _SERVER found -- 09:09:16.126 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 09:09:16.126 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:16.126 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:16.126 INFO [12248]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 09:09:16.126 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:16.138 INFO [12248]: COREGRADE is stopping... -- 09:09:16.138 DEBUG [12248]: Closing database connection -- 09:09:16.138 SQL [12248]: pgsql_close() -- 09:09:16.204 INFO [12248]: COREGRADE is starting... -- 09:09:16.205 INFO [12248]: Version from config: 1.0 -- 09:09:16.205 DEBUG [12248]: Connecting to database... -- 09:09:16.205 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:16.205 SQL [12248]: pgsql_db_connect() -- 09:09:16.209 DEBUG [12248]: Database connection successful -- 09:09:16.209 INFO [12248]: _SERVER found -- 09:09:16.209 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 09:09:16.209 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:16.209 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:16.209 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 09:09:16.209 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:16.220 INFO [12248]: COREGRADE is stopping... -- 09:09:16.220 DEBUG [12248]: Closing database connection -- 09:09:16.220 SQL [12248]: pgsql_close() -- 09:09:16.288 INFO [12248]: COREGRADE is starting... -- 09:09:16.288 INFO [12248]: Version from config: 1.0 -- 09:09:16.288 DEBUG [12248]: Connecting to database... -- 09:09:16.288 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:16.288 SQL [12248]: pgsql_db_connect() -- 09:09:16.292 DEBUG [12248]: Database connection successful -- 09:09:16.292 INFO [12248]: _SERVER found -- 09:09:16.292 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 09:09:16.292 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:16.292 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:16.292 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 09:09:16.292 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:16.304 INFO [12248]: COREGRADE is stopping... -- 09:09:16.304 DEBUG [12248]: Closing database connection -- 09:09:16.304 SQL [12248]: pgsql_close() -- 09:09:16.371 INFO [12248]: COREGRADE is starting... -- 09:09:16.371 INFO [12248]: Version from config: 1.0 -- 09:09:16.371 DEBUG [12248]: Connecting to database... -- 09:09:16.371 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:16.371 SQL [12248]: pgsql_db_connect() -- 09:09:16.375 DEBUG [12248]: Database connection successful -- 09:09:16.375 INFO [12248]: _SERVER found -- 09:09:16.375 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 09:09:16.375 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:16.375 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:16.375 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 09:09:16.375 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:16.387 INFO [12248]: COREGRADE is stopping... -- 09:09:16.387 DEBUG [12248]: Closing database connection -- 09:09:16.387 SQL [12248]: pgsql_close() -- 09:09:16.454 INFO [12248]: COREGRADE is starting... -- 09:09:16.454 INFO [12248]: Version from config: 1.0 -- 09:09:16.454 DEBUG [12248]: Connecting to database... -- 09:09:16.454 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:16.454 SQL [12248]: pgsql_db_connect() -- 09:09:16.458 DEBUG [12248]: Database connection successful -- 09:09:16.458 INFO [12248]: _SERVER found -- 09:09:16.458 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 09:09:16.458 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:16.458 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:16.458 INFO [12248]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 09:09:16.458 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:16.469 INFO [12248]: COREGRADE is stopping... -- 09:09:16.469 DEBUG [12248]: Closing database connection -- 09:09:16.469 SQL [12248]: pgsql_close() -- 09:09:16.537 INFO [12248]: COREGRADE is starting... -- 09:09:16.537 INFO [12248]: Version from config: 1.0 -- 09:09:16.537 DEBUG [12248]: Connecting to database... -- 09:09:16.537 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:16.537 SQL [12248]: pgsql_db_connect() -- 09:09:16.541 DEBUG [12248]: Database connection successful -- 09:09:16.541 INFO [12248]: _SERVER found -- 09:09:16.541 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 09:09:16.541 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:16.541 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:16.541 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 09:09:16.541 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:16.553 INFO [12248]: COREGRADE is stopping... -- 09:09:16.553 DEBUG [12248]: Closing database connection -- 09:09:16.553 SQL [12248]: pgsql_close() -- 09:09:16.619 INFO [12248]: COREGRADE is starting... -- 09:09:16.620 INFO [12248]: Version from config: 1.0 -- 09:09:16.620 DEBUG [12248]: Connecting to database... -- 09:09:16.620 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:16.620 SQL [12248]: pgsql_db_connect() -- 09:09:16.624 DEBUG [12248]: Database connection successful -- 09:09:16.624 INFO [12248]: _SERVER found -- 09:09:16.624 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 09:09:16.624 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:16.624 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:16.624 INFO [12248]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 09:09:16.624 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:16.635 INFO [12248]: COREGRADE is stopping... -- 09:09:16.635 DEBUG [12248]: Closing database connection -- 09:09:16.635 SQL [12248]: pgsql_close() -- 09:09:16.703 INFO [12248]: COREGRADE is starting... -- 09:09:16.703 INFO [12248]: Version from config: 1.0 -- 09:09:16.703 DEBUG [12248]: Connecting to database... -- 09:09:16.703 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:16.703 SQL [12248]: pgsql_db_connect() -- 09:09:16.707 DEBUG [12248]: Database connection successful -- 09:09:16.707 INFO [12248]: _SERVER found -- 09:09:16.707 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 09:09:16.707 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:16.707 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:16.707 INFO [12248]: QUERY_STRING = /assets/js/pages/dashboard.js -- 09:09:16.707 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:16.718 INFO [12248]: COREGRADE is stopping... -- 09:09:16.718 DEBUG [12248]: Closing database connection -- 09:09:16.719 SQL [12248]: pgsql_close() -- 09:09:16.787 INFO [12248]: COREGRADE is starting... -- 09:09:16.787 INFO [12248]: Version from config: 1.0 -- 09:09:16.787 DEBUG [12248]: Connecting to database... -- 09:09:16.787 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:16.787 SQL [12248]: pgsql_db_connect() -- 09:09:16.791 DEBUG [12248]: Database connection successful -- 09:09:16.791 INFO [12248]: _SERVER found -- 09:09:16.791 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 09:09:16.791 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:16.791 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:16.791 INFO [12248]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 09:09:16.791 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:16.803 INFO [12248]: COREGRADE is stopping... -- 09:09:16.803 DEBUG [12248]: Closing database connection -- 09:09:16.803 SQL [12248]: pgsql_close() -- 09:09:16.870 INFO [12248]: COREGRADE is starting... -- 09:09:16.870 INFO [12248]: Version from config: 1.0 -- 09:09:16.870 DEBUG [12248]: Connecting to database... -- 09:09:16.870 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:16.870 SQL [12248]: pgsql_db_connect() -- 09:09:16.874 DEBUG [12248]: Database connection successful -- 09:09:16.874 INFO [12248]: _SERVER found -- 09:09:16.874 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 09:09:16.874 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:16.874 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:16.874 INFO [12248]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 09:09:16.875 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:16.886 INFO [12248]: COREGRADE is stopping... -- 09:09:16.886 DEBUG [12248]: Closing database connection -- 09:09:16.886 SQL [12248]: pgsql_close() -- 09:09:16.953 INFO [12248]: COREGRADE is starting... -- 09:09:16.953 INFO [12248]: Version from config: 1.0 -- 09:09:16.953 DEBUG [12248]: Connecting to database... -- 09:09:16.953 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:16.953 SQL [12248]: pgsql_db_connect() -- 09:09:16.957 DEBUG [12248]: Database connection successful -- 09:09:16.957 INFO [12248]: _SERVER found -- 09:09:16.957 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 09:09:16.957 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:16.957 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:16.957 INFO [12248]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 09:09:16.957 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:16.969 INFO [12248]: COREGRADE is stopping... -- 09:09:16.969 DEBUG [12248]: Closing database connection -- 09:09:16.969 SQL [12248]: pgsql_close() -- 09:09:17.036 INFO [12248]: COREGRADE is starting... -- 09:09:17.036 INFO [12248]: Version from config: 1.0 -- 09:09:17.036 DEBUG [12248]: Connecting to database... -- 09:09:17.036 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:17.036 SQL [12248]: pgsql_db_connect() -- 09:09:17.040 DEBUG [12248]: Database connection successful -- 09:09:17.040 INFO [12248]: _SERVER found -- 09:09:17.040 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 09:09:17.040 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:17.040 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:17.040 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 09:09:17.040 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:17.052 INFO [12248]: COREGRADE is stopping... -- 09:09:17.052 DEBUG [12248]: Closing database connection -- 09:09:17.052 SQL [12248]: pgsql_close() -- 09:09:17.119 INFO [12248]: COREGRADE is starting... -- 09:09:17.120 INFO [12248]: Version from config: 1.0 -- 09:09:17.120 DEBUG [12248]: Connecting to database... -- 09:09:17.120 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:17.120 SQL [12248]: pgsql_db_connect() -- 09:09:17.124 DEBUG [12248]: Database connection successful -- 09:09:17.124 INFO [12248]: _SERVER found -- 09:09:17.124 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 09:09:17.124 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:17.124 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:17.124 INFO [12248]: QUERY_STRING = /assets/js/pages/picker_date.js -- 09:09:17.124 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:17.135 INFO [12248]: COREGRADE is stopping... -- 09:09:17.135 DEBUG [12248]: Closing database connection -- 09:09:17.135 SQL [12248]: pgsql_close() -- 09:09:17.203 INFO [12248]: COREGRADE is starting... -- 09:09:17.203 INFO [12248]: Version from config: 1.0 -- 09:09:17.203 DEBUG [12248]: Connecting to database... -- 09:09:17.203 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:17.203 SQL [12248]: pgsql_db_connect() -- 09:09:17.207 DEBUG [12248]: Database connection successful -- 09:09:17.207 INFO [12248]: _SERVER found -- 09:09:17.207 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 09:09:17.207 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:17.207 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:17.207 INFO [12248]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 09:09:17.207 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:17.218 INFO [12248]: COREGRADE is stopping... -- 09:09:17.218 DEBUG [12248]: Closing database connection -- 09:09:17.218 SQL [12248]: pgsql_close() -- 09:09:17.286 INFO [12248]: COREGRADE is starting... -- 09:09:17.286 INFO [12248]: Version from config: 1.0 -- 09:09:17.286 DEBUG [12248]: Connecting to database... -- 09:09:17.286 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:17.286 SQL [12248]: pgsql_db_connect() -- 09:09:17.290 DEBUG [12248]: Database connection successful -- 09:09:17.290 INFO [12248]: _SERVER found -- 09:09:17.290 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 09:09:17.290 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:17.290 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:17.290 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 09:09:17.290 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:17.302 INFO [12248]: COREGRADE is stopping... -- 09:09:17.302 DEBUG [12248]: Closing database connection -- 09:09:17.302 SQL [12248]: pgsql_close() -- 09:09:17.369 INFO [12248]: COREGRADE is starting... -- 09:09:17.369 INFO [12248]: Version from config: 1.0 -- 09:09:17.369 DEBUG [12248]: Connecting to database... -- 09:09:17.369 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:17.369 SQL [12248]: pgsql_db_connect() -- 09:09:17.373 DEBUG [12248]: Database connection successful -- 09:09:17.373 INFO [12248]: _SERVER found -- 09:09:17.373 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 09:09:17.373 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:17.373 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:17.373 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 09:09:17.373 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:17.384 INFO [12248]: COREGRADE is stopping... -- 09:09:17.384 DEBUG [12248]: Closing database connection -- 09:09:17.385 SQL [12248]: pgsql_close() -- 09:09:17.452 INFO [12248]: COREGRADE is starting... -- 09:09:17.452 INFO [12248]: Version from config: 1.0 -- 09:09:17.452 DEBUG [12248]: Connecting to database... -- 09:09:17.452 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:17.452 SQL [12248]: pgsql_db_connect() -- 09:09:17.456 DEBUG [12248]: Database connection successful -- 09:09:17.456 INFO [12248]: _SERVER found -- 09:09:17.456 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 09:09:17.456 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:17.456 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:17.456 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 09:09:17.456 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:17.467 INFO [12248]: COREGRADE is stopping... -- 09:09:17.467 DEBUG [12248]: Closing database connection -- 09:09:17.468 SQL [12248]: pgsql_close() -- 09:09:17.534 INFO [12248]: COREGRADE is starting... -- 09:09:17.535 INFO [12248]: Version from config: 1.0 -- 09:09:17.535 DEBUG [12248]: Connecting to database... -- 09:09:17.535 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:17.535 SQL [12248]: pgsql_db_connect() -- 09:09:17.539 DEBUG [12248]: Database connection successful -- 09:09:17.539 INFO [12248]: _SERVER found -- 09:09:17.539 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 09:09:17.539 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:17.539 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:17.539 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 09:09:17.539 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:17.550 INFO [12248]: COREGRADE is stopping... -- 09:09:17.550 DEBUG [12248]: Closing database connection -- 09:09:17.550 SQL [12248]: pgsql_close() -- 09:09:17.627 INFO [12248]: COREGRADE is starting... -- 09:09:17.628 INFO [12248]: Version from config: 1.0 -- 09:09:17.628 DEBUG [12248]: Connecting to database... -- 09:09:17.628 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:17.628 SQL [12248]: pgsql_db_connect() -- 09:09:17.632 DEBUG [12248]: Database connection successful -- 09:09:17.632 INFO [12248]: _SERVER found -- 09:09:17.632 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 09:09:17.632 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:17.632 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:17.632 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 09:09:17.632 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:17.643 INFO [12248]: COREGRADE is stopping... -- 09:09:17.643 DEBUG [12248]: Closing database connection -- 09:09:17.643 SQL [12248]: pgsql_close() -- 09:09:17.711 INFO [12248]: COREGRADE is starting... -- 09:09:17.711 INFO [12248]: Version from config: 1.0 -- 09:09:17.711 DEBUG [12248]: Connecting to database... -- 09:09:17.711 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:17.711 SQL [12248]: pgsql_db_connect() -- 09:09:17.715 DEBUG [12248]: Database connection successful -- 09:09:17.715 INFO [12248]: _SERVER found -- 09:09:17.715 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 09:09:17.715 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:17.715 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:17.715 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 09:09:17.715 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:17.726 INFO [12248]: COREGRADE is stopping... -- 09:09:17.726 DEBUG [12248]: Closing database connection -- 09:09:17.726 SQL [12248]: pgsql_close() -- 09:09:17.795 INFO [12248]: COREGRADE is starting... -- 09:09:17.796 INFO [12248]: Version from config: 1.0 -- 09:09:17.796 DEBUG [12248]: Connecting to database... -- 09:09:17.796 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:09:17.796 SQL [12248]: pgsql_db_connect() -- 09:09:17.800 DEBUG [12248]: Database connection successful -- 09:09:17.800 INFO [12248]: _SERVER found -- 09:09:17.800 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 09:09:17.800 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:09:17.800 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:09:17.800 INFO [12248]: QUERY_STRING = /assets/customjs/general.js -- 09:09:17.800 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:09:17.811 INFO [12248]: COREGRADE is stopping... -- 09:09:17.811 DEBUG [12248]: Closing database connection -- 09:09:17.811 SQL [12248]: pgsql_close() -- 09:29:18.032 INFO [12247]: COREGRADE is starting... -- 09:29:18.032 INFO [12247]: Version from config: 1.0 -- 09:29:18.032 DEBUG [12247]: Connecting to database... -- 09:29:18.032 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:18.032 SQL [12247]: pgsql_db_connect() -- 09:29:18.037 DEBUG [12247]: Database connection successful -- 09:29:18.037 INFO [12247]: _SERVER found -- 09:29:18.037 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 09:29:18.037 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:18.037 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=rrb0q9jidiof80a34551qj5uo0l4lf75 -- 09:29:18.037 INFO [12247]: QUERY_STRING = /logout -- 09:29:18.037 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:18.074 INFO [12247]: COREGRADE is stopping... -- 09:29:18.074 DEBUG [12247]: Closing database connection -- 09:29:18.074 SQL [12247]: pgsql_close() -- 09:29:18.152 INFO [12247]: COREGRADE is starting... -- 09:29:18.152 INFO [12247]: Version from config: 1.0 -- 09:29:18.152 DEBUG [12247]: Connecting to database... -- 09:29:18.152 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:18.152 SQL [12247]: pgsql_db_connect() -- 09:29:18.157 DEBUG [12247]: Database connection successful -- 09:29:18.157 INFO [12247]: _SERVER found -- 09:29:18.157 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 09:29:18.157 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:18.157 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:18.157 INFO [12247]: QUERY_STRING = /start -- 09:29:18.157 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:18.191 INFO [12247]: COREGRADE is stopping... -- 09:29:18.191 DEBUG [12247]: Closing database connection -- 09:29:18.191 SQL [12247]: pgsql_close() -- 09:29:18.320 INFO [12247]: COREGRADE is starting... -- 09:29:18.320 INFO [12247]: Version from config: 1.0 -- 09:29:18.320 DEBUG [12247]: Connecting to database... -- 09:29:18.320 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:18.320 SQL [12247]: pgsql_db_connect() -- 09:29:18.325 DEBUG [12247]: Database connection successful -- 09:29:18.325 INFO [12247]: _SERVER found -- 09:29:18.325 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 09:29:18.325 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:18.325 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:18.325 INFO [12247]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 09:29:18.325 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:18.337 INFO [12247]: COREGRADE is stopping... -- 09:29:18.337 DEBUG [12247]: Closing database connection -- 09:29:18.337 SQL [12247]: pgsql_close() -- 09:29:18.340 INFO [12246]: COREGRADE is starting... -- 09:29:18.340 INFO [12246]: Version from config: 1.0 -- 09:29:18.340 DEBUG [12246]: Connecting to database... -- 09:29:18.340 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:18.340 SQL [12246]: pgsql_db_connect() -- 09:29:18.344 DEBUG [12246]: Database connection successful -- 09:29:18.344 INFO [12246]: _SERVER found -- 09:29:18.344 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 09:29:18.344 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:18.344 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:18.344 INFO [12246]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 09:29:18.344 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:18.359 INFO [12246]: COREGRADE is stopping... -- 09:29:18.359 DEBUG [12246]: Closing database connection -- 09:29:18.359 SQL [12246]: pgsql_close() -- 09:29:18.382 INFO [12246]: COREGRADE is starting... -- 09:29:18.382 INFO [12246]: Version from config: 1.0 -- 09:29:18.382 DEBUG [12246]: Connecting to database... -- 09:29:18.382 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:18.382 SQL [12246]: pgsql_db_connect() -- 09:29:18.387 DEBUG [12246]: Database connection successful -- 09:29:18.387 INFO [12246]: _SERVER found -- 09:29:18.387 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 09:29:18.387 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:18.387 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:18.387 INFO [12246]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 09:29:18.387 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:18.399 INFO [12246]: COREGRADE is stopping... -- 09:29:18.399 DEBUG [12246]: Closing database connection -- 09:29:18.399 SQL [12246]: pgsql_close() -- 09:29:18.416 INFO [12246]: COREGRADE is starting... -- 09:29:18.416 INFO [12246]: Version from config: 1.0 -- 09:29:18.416 DEBUG [12246]: Connecting to database... -- 09:29:18.416 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:18.416 SQL [12246]: pgsql_db_connect() -- 09:29:18.423 INFO [12247]: COREGRADE is starting... -- 09:29:18.423 INFO [12247]: Version from config: 1.0 -- 09:29:18.423 DEBUG [12247]: Connecting to database... -- 09:29:18.423 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:18.424 SQL [12247]: pgsql_db_connect() -- 09:29:18.421 DEBUG [12246]: Database connection successful -- 09:29:18.421 INFO [12246]: _SERVER found -- 09:29:18.421 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 09:29:18.421 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:18.421 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:18.421 INFO [12246]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 09:29:18.421 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:18.433 INFO [12246]: COREGRADE is stopping... -- 09:29:18.433 DEBUG [12246]: Closing database connection -- 09:29:18.433 SQL [12246]: pgsql_close() -- 09:29:18.428 DEBUG [12247]: Database connection successful -- 09:29:18.428 INFO [12247]: _SERVER found -- 09:29:18.428 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 09:29:18.428 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:18.428 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:18.428 INFO [12247]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 09:29:18.428 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:18.440 INFO [12247]: COREGRADE is stopping... -- 09:29:18.440 DEBUG [12247]: Closing database connection -- 09:29:18.440 SQL [12247]: pgsql_close() -- 09:29:18.478 INFO [12247]: COREGRADE is starting... -- 09:29:18.478 INFO [12247]: Version from config: 1.0 -- 09:29:18.478 DEBUG [12247]: Connecting to database... -- 09:29:18.478 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:18.478 SQL [12247]: pgsql_db_connect() -- 09:29:18.483 DEBUG [12247]: Database connection successful -- 09:29:18.483 INFO [12247]: _SERVER found -- 09:29:18.483 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 09:29:18.483 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:18.483 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:18.483 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 09:29:18.483 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:18.494 INFO [12247]: COREGRADE is stopping... -- 09:29:18.494 DEBUG [12247]: Closing database connection -- 09:29:18.494 SQL [12247]: pgsql_close() -- 09:29:18.505 INFO [12247]: COREGRADE is starting... -- 09:29:18.505 INFO [12247]: Version from config: 1.0 -- 09:29:18.505 DEBUG [12247]: Connecting to database... -- 09:29:18.505 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:18.505 SQL [12247]: pgsql_db_connect() -- 09:29:18.512 INFO [12246]: COREGRADE is starting... -- 09:29:18.512 INFO [12246]: Version from config: 1.0 -- 09:29:18.512 DEBUG [12246]: Connecting to database... -- 09:29:18.512 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:18.512 SQL [12246]: pgsql_db_connect() -- 09:29:18.510 DEBUG [12247]: Database connection successful -- 09:29:18.510 INFO [12247]: _SERVER found -- 09:29:18.510 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 09:29:18.510 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:18.510 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:18.510 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 09:29:18.510 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:18.522 INFO [12247]: COREGRADE is stopping... -- 09:29:18.522 DEBUG [12247]: Closing database connection -- 09:29:18.522 SQL [12247]: pgsql_close() -- 09:29:18.517 DEBUG [12246]: Database connection successful -- 09:29:18.517 INFO [12246]: _SERVER found -- 09:29:18.517 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 09:29:18.517 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:18.517 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:18.517 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 09:29:18.517 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:18.529 INFO [12246]: COREGRADE is stopping... -- 09:29:18.529 DEBUG [12246]: Closing database connection -- 09:29:18.529 SQL [12246]: pgsql_close() -- 09:29:18.574 INFO [12246]: COREGRADE is starting... -- 09:29:18.574 INFO [12246]: Version from config: 1.0 -- 09:29:18.574 DEBUG [12246]: Connecting to database... -- 09:29:18.574 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:18.574 SQL [12246]: pgsql_db_connect() -- 09:29:18.587 INFO [12247]: COREGRADE is starting... -- 09:29:18.587 INFO [12247]: Version from config: 1.0 -- 09:29:18.587 DEBUG [12247]: Connecting to database... -- 09:29:18.587 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:18.587 SQL [12247]: pgsql_db_connect() -- 09:29:18.579 DEBUG [12246]: Database connection successful -- 09:29:18.579 INFO [12246]: _SERVER found -- 09:29:18.579 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 09:29:18.579 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:18.579 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:18.579 INFO [12246]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 09:29:18.579 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:18.594 INFO [12246]: COREGRADE is stopping... -- 09:29:18.594 DEBUG [12246]: Closing database connection -- 09:29:18.594 SQL [12246]: pgsql_close() -- 09:29:18.595 DEBUG [12247]: Database connection successful -- 09:29:18.595 INFO [12247]: _SERVER found -- 09:29:18.595 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 09:29:18.595 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:18.595 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:18.595 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 09:29:18.595 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:18.607 INFO [12247]: COREGRADE is stopping... -- 09:29:18.607 DEBUG [12247]: Closing database connection -- 09:29:18.607 SQL [12247]: pgsql_close() -- 09:29:18.608 INFO [12246]: COREGRADE is starting... -- 09:29:18.608 INFO [12246]: Version from config: 1.0 -- 09:29:18.608 DEBUG [12246]: Connecting to database... -- 09:29:18.608 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:18.608 SQL [12246]: pgsql_db_connect() -- 09:29:18.613 DEBUG [12246]: Database connection successful -- 09:29:18.613 INFO [12246]: _SERVER found -- 09:29:18.613 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 09:29:18.613 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:18.613 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:18.613 INFO [12246]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 09:29:18.613 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:18.626 INFO [12246]: COREGRADE is stopping... -- 09:29:18.626 DEBUG [12246]: Closing database connection -- 09:29:18.626 SQL [12246]: pgsql_close() -- 09:29:18.675 INFO [12246]: COREGRADE is starting... -- 09:29:18.675 INFO [12246]: Version from config: 1.0 -- 09:29:18.675 DEBUG [12246]: Connecting to database... -- 09:29:18.675 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:18.675 SQL [12246]: pgsql_db_connect() -- 09:29:18.676 INFO [12247]: COREGRADE is starting... -- 09:29:18.676 INFO [12247]: Version from config: 1.0 -- 09:29:18.676 DEBUG [12247]: Connecting to database... -- 09:29:18.676 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:18.676 SQL [12247]: pgsql_db_connect() -- 09:29:18.681 DEBUG [12247]: Database connection successful -- 09:29:18.681 INFO [12247]: _SERVER found -- 09:29:18.681 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 09:29:18.681 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:18.681 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:18.681 INFO [12247]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 09:29:18.681 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:18.693 INFO [12247]: COREGRADE is stopping... -- 09:29:18.693 DEBUG [12247]: Closing database connection -- 09:29:18.693 SQL [12247]: pgsql_close() -- 09:29:18.683 DEBUG [12246]: Database connection successful -- 09:29:18.683 INFO [12246]: _SERVER found -- 09:29:18.683 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 09:29:18.683 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:18.683 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:18.683 INFO [12246]: QUERY_STRING = /assets/js/pages/dashboard.js -- 09:29:18.683 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:18.695 INFO [12246]: COREGRADE is stopping... -- 09:29:18.695 DEBUG [12246]: Closing database connection -- 09:29:18.695 SQL [12246]: pgsql_close() -- 09:29:18.728 INFO [12250]: COREGRADE is starting... -- 09:29:18.730 INFO [12250]: Version from config: 1.0 -- 09:29:18.730 DEBUG [12250]: Connecting to database... -- 09:29:18.730 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:18.730 SQL [12250]: pgsql_db_connect() -- 09:29:18.735 DEBUG [12250]: Database connection successful -- 09:29:18.735 INFO [12250]: _SERVER found -- 09:29:18.735 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 09:29:18.735 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:18.735 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:18.735 INFO [12250]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 09:29:18.735 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:18.748 INFO [12250]: COREGRADE is stopping... -- 09:29:18.748 DEBUG [12250]: Closing database connection -- 09:29:18.748 SQL [12250]: pgsql_close() -- 09:29:18.759 INFO [12250]: COREGRADE is starting... -- 09:29:18.759 INFO [12250]: Version from config: 1.0 -- 09:29:18.759 DEBUG [12250]: Connecting to database... -- 09:29:18.759 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:18.759 SQL [12250]: pgsql_db_connect() -- 09:29:18.764 INFO [12246]: COREGRADE is starting... -- 09:29:18.764 INFO [12246]: Version from config: 1.0 -- 09:29:18.764 DEBUG [12246]: Connecting to database... -- 09:29:18.764 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:18.764 SQL [12246]: pgsql_db_connect() -- 09:29:18.764 DEBUG [12250]: Database connection successful -- 09:29:18.764 INFO [12250]: _SERVER found -- 09:29:18.764 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 09:29:18.764 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:18.764 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:18.764 INFO [12250]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 09:29:18.764 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:18.776 INFO [12250]: COREGRADE is stopping... -- 09:29:18.776 DEBUG [12250]: Closing database connection -- 09:29:18.776 SQL [12250]: pgsql_close() -- 09:29:18.769 DEBUG [12246]: Database connection successful -- 09:29:18.769 INFO [12246]: _SERVER found -- 09:29:18.769 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 09:29:18.769 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:18.769 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:18.769 INFO [12246]: QUERY_STRING = /assets/js/pages/picker_date.js -- 09:29:18.769 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:18.780 INFO [12246]: COREGRADE is stopping... -- 09:29:18.780 DEBUG [12246]: Closing database connection -- 09:29:18.780 SQL [12246]: pgsql_close() -- 09:29:18.817 INFO [12246]: COREGRADE is starting... -- 09:29:18.818 INFO [12246]: Version from config: 1.0 -- 09:29:18.818 DEBUG [12246]: Connecting to database... -- 09:29:18.818 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:18.818 SQL [12246]: pgsql_db_connect() -- 09:29:18.823 DEBUG [12246]: Database connection successful -- 09:29:18.823 INFO [12246]: _SERVER found -- 09:29:18.823 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 09:29:18.823 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:18.823 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:18.823 INFO [12246]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 09:29:18.823 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:18.834 INFO [12246]: COREGRADE is stopping... -- 09:29:18.834 DEBUG [12246]: Closing database connection -- 09:29:18.834 SQL [12246]: pgsql_close() -- 09:29:18.840 INFO [12246]: COREGRADE is starting... -- 09:29:18.841 INFO [12246]: Version from config: 1.0 -- 09:29:18.841 DEBUG [12246]: Connecting to database... -- 09:29:18.841 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:18.841 SQL [12246]: pgsql_db_connect() -- 09:29:18.848 INFO [12250]: COREGRADE is starting... -- 09:29:18.849 INFO [12250]: Version from config: 1.0 -- 09:29:18.849 DEBUG [12250]: Connecting to database... -- 09:29:18.849 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:18.849 SQL [12250]: pgsql_db_connect() -- 09:29:18.845 DEBUG [12246]: Database connection successful -- 09:29:18.845 INFO [12246]: _SERVER found -- 09:29:18.845 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 09:29:18.845 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:18.845 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:18.845 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 09:29:18.845 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:18.857 INFO [12246]: COREGRADE is stopping... -- 09:29:18.857 DEBUG [12246]: Closing database connection -- 09:29:18.857 SQL [12246]: pgsql_close() -- 09:29:18.853 DEBUG [12250]: Database connection successful -- 09:29:18.853 INFO [12250]: _SERVER found -- 09:29:18.853 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 09:29:18.853 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:18.853 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:18.853 INFO [12250]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 09:29:18.854 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:18.865 INFO [12250]: COREGRADE is stopping... -- 09:29:18.865 DEBUG [12250]: Closing database connection -- 09:29:18.865 SQL [12250]: pgsql_close() -- 09:29:18.903 INFO [12250]: COREGRADE is starting... -- 09:29:18.903 INFO [12250]: Version from config: 1.0 -- 09:29:18.903 DEBUG [12250]: Connecting to database... -- 09:29:18.903 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:18.903 SQL [12250]: pgsql_db_connect() -- 09:29:18.907 DEBUG [12250]: Database connection successful -- 09:29:18.907 INFO [12250]: _SERVER found -- 09:29:18.907 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 09:29:18.908 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:18.908 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:18.908 INFO [12250]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 09:29:18.908 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:18.920 INFO [12250]: COREGRADE is stopping... -- 09:29:18.920 DEBUG [12250]: Closing database connection -- 09:29:18.920 SQL [12250]: pgsql_close() -- 09:29:18.923 INFO [12250]: COREGRADE is starting... -- 09:29:18.923 INFO [12250]: Version from config: 1.0 -- 09:29:18.923 DEBUG [12250]: Connecting to database... -- 09:29:18.923 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:18.923 SQL [12250]: pgsql_db_connect() -- 09:29:18.933 INFO [12246]: COREGRADE is starting... -- 09:29:18.933 INFO [12246]: Version from config: 1.0 -- 09:29:18.933 DEBUG [12246]: Connecting to database... -- 09:29:18.933 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:18.933 SQL [12246]: pgsql_db_connect() -- 09:29:18.927 DEBUG [12250]: Database connection successful -- 09:29:18.927 INFO [12250]: _SERVER found -- 09:29:18.927 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 09:29:18.927 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:18.927 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:18.927 INFO [12250]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 09:29:18.927 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:18.939 INFO [12250]: COREGRADE is stopping... -- 09:29:18.939 DEBUG [12250]: Closing database connection -- 09:29:18.939 SQL [12250]: pgsql_close() -- 09:29:18.938 DEBUG [12246]: Database connection successful -- 09:29:18.938 INFO [12246]: _SERVER found -- 09:29:18.938 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 09:29:18.938 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:18.938 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:18.938 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 09:29:18.938 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:18.950 INFO [12246]: COREGRADE is stopping... -- 09:29:18.950 DEBUG [12246]: Closing database connection -- 09:29:18.950 SQL [12246]: pgsql_close() -- 09:29:18.988 INFO [12246]: COREGRADE is starting... -- 09:29:18.988 INFO [12246]: Version from config: 1.0 -- 09:29:18.988 DEBUG [12246]: Connecting to database... -- 09:29:18.988 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:18.988 SQL [12246]: pgsql_db_connect() -- 09:29:18.993 DEBUG [12246]: Database connection successful -- 09:29:18.993 INFO [12246]: _SERVER found -- 09:29:18.993 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 09:29:18.993 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:18.993 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:18.993 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 09:29:18.993 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:19.005 INFO [12246]: COREGRADE is stopping... -- 09:29:19.005 DEBUG [12246]: Closing database connection -- 09:29:19.005 SQL [12246]: pgsql_close() -- 09:29:19.005 INFO [12250]: COREGRADE is starting... -- 09:29:19.005 INFO [12250]: Version from config: 1.0 -- 09:29:19.005 DEBUG [12250]: Connecting to database... -- 09:29:19.005 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:19.005 SQL [12250]: pgsql_db_connect() -- 09:29:19.018 INFO [12246]: COREGRADE is starting... -- 09:29:19.018 INFO [12246]: Version from config: 1.0 -- 09:29:19.018 DEBUG [12246]: Connecting to database... -- 09:29:19.018 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:19.018 SQL [12246]: pgsql_db_connect() -- 09:29:19.010 DEBUG [12250]: Database connection successful -- 09:29:19.010 INFO [12250]: _SERVER found -- 09:29:19.010 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 09:29:19.010 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:19.010 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:19.010 INFO [12250]: QUERY_STRING = /assets/customjs/general.js -- 09:29:19.010 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:19.022 INFO [12250]: COREGRADE is stopping... -- 09:29:19.022 DEBUG [12250]: Closing database connection -- 09:29:19.022 SQL [12250]: pgsql_close() -- 09:29:19.023 DEBUG [12246]: Database connection successful -- 09:29:19.023 INFO [12246]: _SERVER found -- 09:29:19.023 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 09:29:19.023 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:19.023 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:19.023 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 09:29:19.023 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:19.035 INFO [12246]: COREGRADE is stopping... -- 09:29:19.035 DEBUG [12246]: Closing database connection -- 09:29:19.035 SQL [12246]: pgsql_close() -- 09:29:19.103 INFO [12246]: COREGRADE is starting... -- 09:29:19.103 INFO [12246]: Version from config: 1.0 -- 09:29:19.103 DEBUG [12246]: Connecting to database... -- 09:29:19.103 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:19.103 SQL [12246]: pgsql_db_connect() -- 09:29:19.108 DEBUG [12246]: Database connection successful -- 09:29:19.108 INFO [12246]: _SERVER found -- 09:29:19.108 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 09:29:19.108 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:19.108 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:19.108 INFO [12246]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 09:29:19.108 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:19.120 INFO [12246]: COREGRADE is stopping... -- 09:29:19.120 DEBUG [12246]: Closing database connection -- 09:29:19.120 SQL [12246]: pgsql_close() -- 09:29:19.188 INFO [12246]: COREGRADE is starting... -- 09:29:19.188 INFO [12246]: Version from config: 1.0 -- 09:29:19.188 DEBUG [12246]: Connecting to database... -- 09:29:19.188 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:19.188 SQL [12246]: pgsql_db_connect() -- 09:29:19.193 DEBUG [12246]: Database connection successful -- 09:29:19.193 INFO [12246]: _SERVER found -- 09:29:19.193 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 09:29:19.193 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:19.193 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:19.193 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 09:29:19.193 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:19.204 INFO [12246]: COREGRADE is stopping... -- 09:29:19.204 DEBUG [12246]: Closing database connection -- 09:29:19.204 SQL [12246]: pgsql_close() -- 09:29:19.273 INFO [12246]: COREGRADE is starting... -- 09:29:19.273 INFO [12246]: Version from config: 1.0 -- 09:29:19.273 DEBUG [12246]: Connecting to database... -- 09:29:19.273 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:19.273 SQL [12246]: pgsql_db_connect() -- 09:29:19.278 DEBUG [12246]: Database connection successful -- 09:29:19.278 INFO [12246]: _SERVER found -- 09:29:19.278 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 09:29:19.278 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:19.278 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:19.278 INFO [12246]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 09:29:19.278 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:19.289 INFO [12246]: COREGRADE is stopping... -- 09:29:19.289 DEBUG [12246]: Closing database connection -- 09:29:19.289 SQL [12246]: pgsql_close() -- 09:29:19.358 INFO [12246]: COREGRADE is starting... -- 09:29:19.358 INFO [12246]: Version from config: 1.0 -- 09:29:19.358 DEBUG [12246]: Connecting to database... -- 09:29:19.358 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:19.358 SQL [12246]: pgsql_db_connect() -- 09:29:19.363 DEBUG [12246]: Database connection successful -- 09:29:19.363 INFO [12246]: _SERVER found -- 09:29:19.363 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 09:29:19.363 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:19.363 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:19.363 INFO [12246]: QUERY_STRING = /assets/js/pages/dashboard.js -- 09:29:19.363 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:19.374 INFO [12246]: COREGRADE is stopping... -- 09:29:19.374 DEBUG [12246]: Closing database connection -- 09:29:19.374 SQL [12246]: pgsql_close() -- 09:29:19.444 INFO [12246]: COREGRADE is starting... -- 09:29:19.444 INFO [12246]: Version from config: 1.0 -- 09:29:19.444 DEBUG [12246]: Connecting to database... -- 09:29:19.444 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:19.444 SQL [12246]: pgsql_db_connect() -- 09:29:19.449 DEBUG [12246]: Database connection successful -- 09:29:19.449 INFO [12246]: _SERVER found -- 09:29:19.449 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 09:29:19.449 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:19.449 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:19.449 INFO [12246]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 09:29:19.449 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:19.461 INFO [12246]: COREGRADE is stopping... -- 09:29:19.461 DEBUG [12246]: Closing database connection -- 09:29:19.461 SQL [12246]: pgsql_close() -- 09:29:19.529 INFO [12246]: COREGRADE is starting... -- 09:29:19.529 INFO [12246]: Version from config: 1.0 -- 09:29:19.529 DEBUG [12246]: Connecting to database... -- 09:29:19.529 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:19.529 SQL [12246]: pgsql_db_connect() -- 09:29:19.534 DEBUG [12246]: Database connection successful -- 09:29:19.534 INFO [12246]: _SERVER found -- 09:29:19.534 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 09:29:19.534 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:19.534 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:19.534 INFO [12246]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 09:29:19.534 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:19.546 INFO [12246]: COREGRADE is stopping... -- 09:29:19.546 DEBUG [12246]: Closing database connection -- 09:29:19.546 SQL [12246]: pgsql_close() -- 09:29:19.615 INFO [12246]: COREGRADE is starting... -- 09:29:19.615 INFO [12246]: Version from config: 1.0 -- 09:29:19.615 DEBUG [12246]: Connecting to database... -- 09:29:19.615 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:19.615 SQL [12246]: pgsql_db_connect() -- 09:29:19.620 DEBUG [12246]: Database connection successful -- 09:29:19.620 INFO [12246]: _SERVER found -- 09:29:19.620 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 09:29:19.620 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:19.620 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:19.620 INFO [12246]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 09:29:19.620 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:19.632 INFO [12246]: COREGRADE is stopping... -- 09:29:19.632 DEBUG [12246]: Closing database connection -- 09:29:19.632 SQL [12246]: pgsql_close() -- 09:29:19.700 INFO [12246]: COREGRADE is starting... -- 09:29:19.700 INFO [12246]: Version from config: 1.0 -- 09:29:19.700 DEBUG [12246]: Connecting to database... -- 09:29:19.700 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:19.700 SQL [12246]: pgsql_db_connect() -- 09:29:19.705 DEBUG [12246]: Database connection successful -- 09:29:19.705 INFO [12246]: _SERVER found -- 09:29:19.705 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 09:29:19.705 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:19.705 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:19.705 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 09:29:19.705 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:19.717 INFO [12246]: COREGRADE is stopping... -- 09:29:19.717 DEBUG [12246]: Closing database connection -- 09:29:19.717 SQL [12246]: pgsql_close() -- 09:29:19.785 INFO [12246]: COREGRADE is starting... -- 09:29:19.786 INFO [12246]: Version from config: 1.0 -- 09:29:19.786 DEBUG [12246]: Connecting to database... -- 09:29:19.786 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:19.786 SQL [12246]: pgsql_db_connect() -- 09:29:19.790 DEBUG [12246]: Database connection successful -- 09:29:19.790 INFO [12246]: _SERVER found -- 09:29:19.790 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 09:29:19.790 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:19.790 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:19.790 INFO [12246]: QUERY_STRING = /assets/js/pages/picker_date.js -- 09:29:19.790 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:19.802 INFO [12246]: COREGRADE is stopping... -- 09:29:19.802 DEBUG [12246]: Closing database connection -- 09:29:19.802 SQL [12246]: pgsql_close() -- 09:29:19.871 INFO [12246]: COREGRADE is starting... -- 09:29:19.871 INFO [12246]: Version from config: 1.0 -- 09:29:19.871 DEBUG [12246]: Connecting to database... -- 09:29:19.871 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:19.871 SQL [12246]: pgsql_db_connect() -- 09:29:19.876 DEBUG [12246]: Database connection successful -- 09:29:19.876 INFO [12246]: _SERVER found -- 09:29:19.876 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 09:29:19.876 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:19.876 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:19.876 INFO [12246]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 09:29:19.876 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:19.887 INFO [12246]: COREGRADE is stopping... -- 09:29:19.888 DEBUG [12246]: Closing database connection -- 09:29:19.888 SQL [12246]: pgsql_close() -- 09:29:19.956 INFO [12246]: COREGRADE is starting... -- 09:29:19.956 INFO [12246]: Version from config: 1.0 -- 09:29:19.956 DEBUG [12246]: Connecting to database... -- 09:29:19.956 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:19.956 SQL [12246]: pgsql_db_connect() -- 09:29:19.961 DEBUG [12246]: Database connection successful -- 09:29:19.961 INFO [12246]: _SERVER found -- 09:29:19.961 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 09:29:19.961 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:19.961 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:19.961 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 09:29:19.961 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:19.973 INFO [12246]: COREGRADE is stopping... -- 09:29:19.973 DEBUG [12246]: Closing database connection -- 09:29:19.973 SQL [12246]: pgsql_close() -- 09:29:20.041 INFO [12246]: COREGRADE is starting... -- 09:29:20.042 INFO [12246]: Version from config: 1.0 -- 09:29:20.042 DEBUG [12246]: Connecting to database... -- 09:29:20.042 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:20.042 SQL [12246]: pgsql_db_connect() -- 09:29:20.046 DEBUG [12246]: Database connection successful -- 09:29:20.046 INFO [12246]: _SERVER found -- 09:29:20.046 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 09:29:20.046 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:20.046 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:20.046 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 09:29:20.046 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:20.058 INFO [12246]: COREGRADE is stopping... -- 09:29:20.058 DEBUG [12246]: Closing database connection -- 09:29:20.058 SQL [12246]: pgsql_close() -- 09:29:20.126 INFO [12246]: COREGRADE is starting... -- 09:29:20.127 INFO [12246]: Version from config: 1.0 -- 09:29:20.127 DEBUG [12246]: Connecting to database... -- 09:29:20.127 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:20.127 SQL [12246]: pgsql_db_connect() -- 09:29:20.131 DEBUG [12246]: Database connection successful -- 09:29:20.131 INFO [12246]: _SERVER found -- 09:29:20.131 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 09:29:20.131 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:20.131 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:20.131 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 09:29:20.131 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:20.143 INFO [12246]: COREGRADE is stopping... -- 09:29:20.143 DEBUG [12246]: Closing database connection -- 09:29:20.143 SQL [12246]: pgsql_close() -- 09:29:20.211 INFO [12246]: COREGRADE is starting... -- 09:29:20.211 INFO [12246]: Version from config: 1.0 -- 09:29:20.211 DEBUG [12246]: Connecting to database... -- 09:29:20.211 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:20.211 SQL [12246]: pgsql_db_connect() -- 09:29:20.216 DEBUG [12246]: Database connection successful -- 09:29:20.216 INFO [12246]: _SERVER found -- 09:29:20.216 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 09:29:20.216 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:20.216 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:20.216 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 09:29:20.216 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:20.227 INFO [12246]: COREGRADE is stopping... -- 09:29:20.227 DEBUG [12246]: Closing database connection -- 09:29:20.227 SQL [12246]: pgsql_close() -- 09:29:20.306 INFO [12246]: COREGRADE is starting... -- 09:29:20.306 INFO [12246]: Version from config: 1.0 -- 09:29:20.306 DEBUG [12246]: Connecting to database... -- 09:29:20.306 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:20.306 SQL [12246]: pgsql_db_connect() -- 09:29:20.311 DEBUG [12246]: Database connection successful -- 09:29:20.311 INFO [12246]: _SERVER found -- 09:29:20.311 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 09:29:20.311 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:20.311 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:20.311 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 09:29:20.311 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:20.322 INFO [12246]: COREGRADE is stopping... -- 09:29:20.322 DEBUG [12246]: Closing database connection -- 09:29:20.322 SQL [12246]: pgsql_close() -- 09:29:20.391 INFO [12246]: COREGRADE is starting... -- 09:29:20.391 INFO [12246]: Version from config: 1.0 -- 09:29:20.391 DEBUG [12246]: Connecting to database... -- 09:29:20.391 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:20.391 SQL [12246]: pgsql_db_connect() -- 09:29:20.396 DEBUG [12246]: Database connection successful -- 09:29:20.396 INFO [12246]: _SERVER found -- 09:29:20.396 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 09:29:20.396 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:20.396 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:20.396 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 09:29:20.396 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:20.407 INFO [12246]: COREGRADE is stopping... -- 09:29:20.407 DEBUG [12246]: Closing database connection -- 09:29:20.407 SQL [12246]: pgsql_close() -- 09:29:20.478 INFO [12246]: COREGRADE is starting... -- 09:29:20.478 INFO [12246]: Version from config: 1.0 -- 09:29:20.478 DEBUG [12246]: Connecting to database... -- 09:29:20.478 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:29:20.478 SQL [12246]: pgsql_db_connect() -- 09:29:20.482 DEBUG [12246]: Database connection successful -- 09:29:20.483 INFO [12246]: _SERVER found -- 09:29:20.483 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 09:29:20.483 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:29:20.483 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:29:20.483 INFO [12246]: QUERY_STRING = /assets/customjs/general.js -- 09:29:20.483 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:29:20.494 INFO [12246]: COREGRADE is stopping... -- 09:29:20.494 DEBUG [12246]: Closing database connection -- 09:29:20.494 SQL [12246]: pgsql_close() -- 09:49:20.713 INFO [12347]: COREGRADE is starting... -- 09:49:20.714 INFO [12347]: Version from config: 1.0 -- 09:49:20.714 DEBUG [12347]: Connecting to database... -- 09:49:20.714 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:20.714 SQL [12347]: pgsql_db_connect() -- 09:49:20.718 DEBUG [12347]: Database connection successful -- 09:49:20.718 INFO [12347]: _SERVER found -- 09:49:20.718 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 09:49:20.718 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:20.718 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=k97v4kkl5ngc9vv3225g36lnfi2mr3o2 -- 09:49:20.718 INFO [12347]: QUERY_STRING = /logout -- 09:49:20.718 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:20.758 INFO [12347]: COREGRADE is stopping... -- 09:49:20.758 DEBUG [12347]: Closing database connection -- 09:49:20.758 SQL [12347]: pgsql_close() -- 09:49:20.838 INFO [12347]: COREGRADE is starting... -- 09:49:20.838 INFO [12347]: Version from config: 1.0 -- 09:49:20.838 DEBUG [12347]: Connecting to database... -- 09:49:20.838 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:20.838 SQL [12347]: pgsql_db_connect() -- 09:49:20.842 DEBUG [12347]: Database connection successful -- 09:49:20.842 INFO [12347]: _SERVER found -- 09:49:20.842 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 09:49:20.842 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:20.842 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:20.842 INFO [12347]: QUERY_STRING = /start -- 09:49:20.842 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:20.877 INFO [12347]: COREGRADE is stopping... -- 09:49:20.878 DEBUG [12347]: Closing database connection -- 09:49:20.878 SQL [12347]: pgsql_close() -- 09:49:21.002 INFO [12347]: COREGRADE is starting... -- 09:49:21.003 INFO [12347]: Version from config: 1.0 -- 09:49:21.003 DEBUG [12347]: Connecting to database... -- 09:49:21.003 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:21.003 SQL [12347]: pgsql_db_connect() -- 09:49:21.007 DEBUG [12347]: Database connection successful -- 09:49:21.007 INFO [12347]: _SERVER found -- 09:49:21.007 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 09:49:21.007 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:21.007 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:21.007 INFO [12347]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 09:49:21.007 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:21.019 INFO [12347]: COREGRADE is stopping... -- 09:49:21.019 DEBUG [12347]: Closing database connection -- 09:49:21.019 SQL [12347]: pgsql_close() -- 09:49:21.024 INFO [12347]: COREGRADE is starting... -- 09:49:21.025 INFO [12347]: Version from config: 1.0 -- 09:49:21.025 DEBUG [12347]: Connecting to database... -- 09:49:21.025 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:21.025 SQL [12347]: pgsql_db_connect() -- 09:49:21.028 DEBUG [12347]: Database connection successful -- 09:49:21.028 INFO [12347]: _SERVER found -- 09:49:21.028 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 09:49:21.028 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:21.028 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:21.028 INFO [12347]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 09:49:21.028 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:21.040 INFO [12347]: COREGRADE is stopping... -- 09:49:21.040 DEBUG [12347]: Closing database connection -- 09:49:21.040 SQL [12347]: pgsql_close() -- 09:49:21.076 INFO [12249]: COREGRADE is starting... -- 09:49:21.076 INFO [12249]: Version from config: 1.0 -- 09:49:21.076 DEBUG [12249]: Connecting to database... -- 09:49:21.076 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:21.076 SQL [12249]: pgsql_db_connect() -- 09:49:21.080 DEBUG [12249]: Database connection successful -- 09:49:21.080 INFO [12249]: _SERVER found -- 09:49:21.080 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 09:49:21.080 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:21.080 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:21.080 INFO [12249]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 09:49:21.080 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:21.094 INFO [12249]: COREGRADE is stopping... -- 09:49:21.094 DEBUG [12249]: Closing database connection -- 09:49:21.094 SQL [12249]: pgsql_close() -- 09:49:21.099 INFO [12347]: COREGRADE is starting... -- 09:49:21.100 INFO [12347]: Version from config: 1.0 -- 09:49:21.100 DEBUG [12347]: Connecting to database... -- 09:49:21.100 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:21.100 SQL [12347]: pgsql_db_connect() -- 09:49:21.107 INFO [12334]: COREGRADE is starting... -- 09:49:21.107 INFO [12334]: Version from config: 1.0 -- 09:49:21.107 DEBUG [12334]: Connecting to database... -- 09:49:21.107 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:21.107 SQL [12334]: pgsql_db_connect() -- 09:49:21.103 DEBUG [12347]: Database connection successful -- 09:49:21.103 INFO [12347]: _SERVER found -- 09:49:21.103 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 09:49:21.103 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:21.103 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:21.103 INFO [12347]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 09:49:21.103 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:21.115 INFO [12347]: COREGRADE is stopping... -- 09:49:21.115 DEBUG [12347]: Closing database connection -- 09:49:21.115 SQL [12347]: pgsql_close() -- 09:49:21.112 DEBUG [12334]: Database connection successful -- 09:49:21.112 INFO [12334]: _SERVER found -- 09:49:21.112 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 09:49:21.112 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:21.112 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:21.112 INFO [12334]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 09:49:21.112 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:21.125 INFO [12334]: COREGRADE is stopping... -- 09:49:21.125 DEBUG [12334]: Closing database connection -- 09:49:21.125 SQL [12334]: pgsql_close() -- 09:49:21.176 INFO [12249]: COREGRADE is starting... -- 09:49:21.176 INFO [12249]: Version from config: 1.0 -- 09:49:21.176 DEBUG [12249]: Connecting to database... -- 09:49:21.176 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:21.176 SQL [12249]: pgsql_db_connect() -- 09:49:21.180 DEBUG [12249]: Database connection successful -- 09:49:21.180 INFO [12249]: _SERVER found -- 09:49:21.180 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 09:49:21.180 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:21.180 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:21.180 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 09:49:21.180 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:21.191 INFO [12249]: COREGRADE is stopping... -- 09:49:21.192 DEBUG [12249]: Closing database connection -- 09:49:21.192 SQL [12249]: pgsql_close() -- 09:49:21.196 INFO [12334]: COREGRADE is starting... -- 09:49:21.196 INFO [12347]: COREGRADE is starting... -- 09:49:21.196 INFO [12334]: Version from config: 1.0 -- 09:49:21.196 DEBUG [12334]: Connecting to database... -- 09:49:21.196 INFO [12347]: Version from config: 1.0 -- 09:49:21.196 DEBUG [12347]: Connecting to database... -- 09:49:21.196 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:21.196 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:21.196 SQL [12334]: pgsql_db_connect() -- 09:49:21.196 SQL [12347]: pgsql_db_connect() -- 09:49:21.200 DEBUG [12347]: Database connection successful -- 09:49:21.200 INFO [12347]: _SERVER found -- 09:49:21.200 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 09:49:21.200 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:21.200 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:21.200 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 09:49:21.200 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:21.212 INFO [12347]: COREGRADE is stopping... -- 09:49:21.200 DEBUG [12334]: Database connection successful -- 09:49:21.200 INFO [12334]: _SERVER found -- 09:49:21.200 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 09:49:21.200 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:21.200 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:21.200 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 09:49:21.200 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:21.212 INFO [12334]: COREGRADE is stopping... -- 09:49:21.212 DEBUG [12347]: Closing database connection -- 09:49:21.212 DEBUG [12334]: Closing database connection -- 09:49:21.212 SQL [12347]: pgsql_close() -- 09:49:21.212 SQL [12334]: pgsql_close() -- 09:49:21.273 INFO [12249]: COREGRADE is starting... -- 09:49:21.273 INFO [12249]: Version from config: 1.0 -- 09:49:21.273 DEBUG [12249]: Connecting to database... -- 09:49:21.273 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:21.273 SQL [12249]: pgsql_db_connect() -- 09:49:21.280 INFO [12334]: COREGRADE is starting... -- 09:49:21.280 INFO [12334]: Version from config: 1.0 -- 09:49:21.280 DEBUG [12334]: Connecting to database... -- 09:49:21.280 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:21.280 SQL [12334]: pgsql_db_connect() -- 09:49:21.277 DEBUG [12249]: Database connection successful -- 09:49:21.277 INFO [12249]: _SERVER found -- 09:49:21.277 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 09:49:21.277 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:21.277 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:21.277 INFO [12249]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 09:49:21.277 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:21.289 INFO [12249]: COREGRADE is stopping... -- 09:49:21.289 DEBUG [12249]: Closing database connection -- 09:49:21.289 SQL [12249]: pgsql_close() -- 09:49:21.292 INFO [12347]: COREGRADE is starting... -- 09:49:21.293 INFO [12347]: Version from config: 1.0 -- 09:49:21.293 DEBUG [12347]: Connecting to database... -- 09:49:21.293 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:21.293 SQL [12347]: pgsql_db_connect() -- 09:49:21.284 DEBUG [12334]: Database connection successful -- 09:49:21.284 INFO [12334]: _SERVER found -- 09:49:21.284 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 09:49:21.284 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:21.284 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:21.284 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 09:49:21.284 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:21.296 INFO [12334]: COREGRADE is stopping... -- 09:49:21.296 DEBUG [12334]: Closing database connection -- 09:49:21.296 SQL [12334]: pgsql_close() -- 09:49:21.297 DEBUG [12347]: Database connection successful -- 09:49:21.297 INFO [12347]: _SERVER found -- 09:49:21.297 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 09:49:21.297 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:21.297 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:21.297 INFO [12347]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 09:49:21.297 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:21.308 INFO [12347]: COREGRADE is stopping... -- 09:49:21.308 DEBUG [12347]: Closing database connection -- 09:49:21.308 SQL [12347]: pgsql_close() -- 09:49:21.363 INFO [12347]: COREGRADE is starting... -- 09:49:21.363 INFO [12347]: Version from config: 1.0 -- 09:49:21.363 DEBUG [12347]: Connecting to database... -- 09:49:21.363 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:21.363 SQL [12347]: pgsql_db_connect() -- 09:49:21.369 INFO [12249]: COREGRADE is starting... -- 09:49:21.369 INFO [12249]: Version from config: 1.0 -- 09:49:21.369 DEBUG [12249]: Connecting to database... -- 09:49:21.369 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:21.369 SQL [12249]: pgsql_db_connect() -- 09:49:21.367 DEBUG [12347]: Database connection successful -- 09:49:21.367 INFO [12347]: _SERVER found -- 09:49:21.367 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 09:49:21.367 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:21.367 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:21.367 INFO [12347]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 09:49:21.367 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:21.379 INFO [12347]: COREGRADE is stopping... -- 09:49:21.379 DEBUG [12347]: Closing database connection -- 09:49:21.379 SQL [12347]: pgsql_close() -- 09:49:21.379 INFO [12334]: COREGRADE is starting... -- 09:49:21.379 INFO [12334]: Version from config: 1.0 -- 09:49:21.379 DEBUG [12334]: Connecting to database... -- 09:49:21.379 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:21.379 SQL [12334]: pgsql_db_connect() -- 09:49:21.373 DEBUG [12249]: Database connection successful -- 09:49:21.373 INFO [12249]: _SERVER found -- 09:49:21.373 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 09:49:21.373 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:21.373 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:21.373 INFO [12249]: QUERY_STRING = /assets/js/pages/dashboard.js -- 09:49:21.373 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:21.385 INFO [12249]: COREGRADE is stopping... -- 09:49:21.385 DEBUG [12249]: Closing database connection -- 09:49:21.385 SQL [12249]: pgsql_close() -- 09:49:21.384 DEBUG [12334]: Database connection successful -- 09:49:21.384 INFO [12334]: _SERVER found -- 09:49:21.384 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 09:49:21.384 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:21.384 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:21.384 INFO [12334]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 09:49:21.384 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:21.395 INFO [12334]: COREGRADE is stopping... -- 09:49:21.395 DEBUG [12334]: Closing database connection -- 09:49:21.395 SQL [12334]: pgsql_close() -- 09:49:21.446 INFO [12334]: COREGRADE is starting... -- 09:49:21.446 INFO [12334]: Version from config: 1.0 -- 09:49:21.446 DEBUG [12334]: Connecting to database... -- 09:49:21.446 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:21.446 SQL [12334]: pgsql_db_connect() -- 09:49:21.454 INFO [12249]: COREGRADE is starting... -- 09:49:21.454 INFO [12249]: Version from config: 1.0 -- 09:49:21.454 DEBUG [12249]: Connecting to database... -- 09:49:21.454 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:21.454 SQL [12249]: pgsql_db_connect() -- 09:49:21.450 DEBUG [12334]: Database connection successful -- 09:49:21.450 INFO [12334]: _SERVER found -- 09:49:21.450 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 09:49:21.450 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:21.450 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:21.450 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 09:49:21.450 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:21.462 INFO [12334]: COREGRADE is stopping... -- 09:49:21.462 DEBUG [12334]: Closing database connection -- 09:49:21.462 SQL [12334]: pgsql_close() -- 09:49:21.465 INFO [12334]: COREGRADE is starting... -- 09:49:21.465 INFO [12334]: Version from config: 1.0 -- 09:49:21.465 DEBUG [12334]: Connecting to database... -- 09:49:21.465 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:21.465 SQL [12334]: pgsql_db_connect() -- 09:49:21.459 DEBUG [12249]: Database connection successful -- 09:49:21.459 INFO [12249]: _SERVER found -- 09:49:21.459 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 09:49:21.459 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:21.459 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:21.459 INFO [12249]: QUERY_STRING = /assets/js/pages/picker_date.js -- 09:49:21.459 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:21.470 INFO [12249]: COREGRADE is stopping... -- 09:49:21.470 DEBUG [12249]: Closing database connection -- 09:49:21.470 SQL [12249]: pgsql_close() -- 09:49:21.469 DEBUG [12334]: Database connection successful -- 09:49:21.469 INFO [12334]: _SERVER found -- 09:49:21.469 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 09:49:21.469 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:21.469 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:21.469 INFO [12334]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 09:49:21.469 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:21.481 INFO [12334]: COREGRADE is stopping... -- 09:49:21.481 DEBUG [12334]: Closing database connection -- 09:49:21.481 SQL [12334]: pgsql_close() -- 09:49:21.528 INFO [12334]: COREGRADE is starting... -- 09:49:21.529 INFO [12334]: Version from config: 1.0 -- 09:49:21.529 DEBUG [12334]: Connecting to database... -- 09:49:21.529 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:21.529 SQL [12334]: pgsql_db_connect() -- 09:49:21.539 INFO [12249]: COREGRADE is starting... -- 09:49:21.539 INFO [12249]: Version from config: 1.0 -- 09:49:21.539 DEBUG [12249]: Connecting to database... -- 09:49:21.539 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:21.539 SQL [12249]: pgsql_db_connect() -- 09:49:21.533 DEBUG [12334]: Database connection successful -- 09:49:21.533 INFO [12334]: _SERVER found -- 09:49:21.533 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 09:49:21.533 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:21.533 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:21.533 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 09:49:21.533 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:21.544 INFO [12334]: COREGRADE is stopping... -- 09:49:21.544 DEBUG [12334]: Closing database connection -- 09:49:21.544 SQL [12334]: pgsql_close() -- 09:49:21.550 INFO [12334]: COREGRADE is starting... -- 09:49:21.550 INFO [12334]: Version from config: 1.0 -- 09:49:21.550 DEBUG [12334]: Connecting to database... -- 09:49:21.550 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:21.551 SQL [12334]: pgsql_db_connect() -- 09:49:21.543 DEBUG [12249]: Database connection successful -- 09:49:21.543 INFO [12249]: _SERVER found -- 09:49:21.543 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 09:49:21.543 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:21.543 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:21.543 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 09:49:21.543 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:21.555 INFO [12249]: COREGRADE is stopping... -- 09:49:21.555 DEBUG [12249]: Closing database connection -- 09:49:21.555 SQL [12249]: pgsql_close() -- 09:49:21.554 DEBUG [12334]: Database connection successful -- 09:49:21.554 INFO [12334]: _SERVER found -- 09:49:21.554 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 09:49:21.554 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:21.554 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:21.554 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 09:49:21.554 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:21.566 INFO [12334]: COREGRADE is stopping... -- 09:49:21.566 DEBUG [12334]: Closing database connection -- 09:49:21.566 SQL [12334]: pgsql_close() -- 09:49:21.611 INFO [12334]: COREGRADE is starting... -- 09:49:21.611 INFO [12334]: Version from config: 1.0 -- 09:49:21.611 DEBUG [12334]: Connecting to database... -- 09:49:21.611 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:21.611 SQL [12334]: pgsql_db_connect() -- 09:49:21.622 INFO [12249]: COREGRADE is starting... -- 09:49:21.623 INFO [12249]: Version from config: 1.0 -- 09:49:21.623 DEBUG [12249]: Connecting to database... -- 09:49:21.623 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:21.623 SQL [12249]: pgsql_db_connect() -- 09:49:21.615 DEBUG [12334]: Database connection successful -- 09:49:21.615 INFO [12334]: _SERVER found -- 09:49:21.615 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 09:49:21.615 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:21.615 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:21.615 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 09:49:21.615 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:21.627 INFO [12334]: COREGRADE is stopping... -- 09:49:21.627 DEBUG [12334]: Closing database connection -- 09:49:21.627 SQL [12334]: pgsql_close() -- 09:49:21.635 INFO [12334]: COREGRADE is starting... -- 09:49:21.635 INFO [12334]: Version from config: 1.0 -- 09:49:21.635 DEBUG [12334]: Connecting to database... -- 09:49:21.635 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:21.635 SQL [12334]: pgsql_db_connect() -- 09:49:21.627 DEBUG [12249]: Database connection successful -- 09:49:21.627 INFO [12249]: _SERVER found -- 09:49:21.627 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 09:49:21.627 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:21.627 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:21.627 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 09:49:21.627 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:21.638 INFO [12249]: COREGRADE is stopping... -- 09:49:21.638 DEBUG [12249]: Closing database connection -- 09:49:21.638 SQL [12249]: pgsql_close() -- 09:49:21.639 DEBUG [12334]: Database connection successful -- 09:49:21.639 INFO [12334]: _SERVER found -- 09:49:21.639 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 09:49:21.639 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:21.639 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:21.639 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 09:49:21.639 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:21.651 INFO [12334]: COREGRADE is stopping... -- 09:49:21.651 DEBUG [12334]: Closing database connection -- 09:49:21.651 SQL [12334]: pgsql_close() -- 09:49:21.693 INFO [12334]: COREGRADE is starting... -- 09:49:21.694 INFO [12334]: Version from config: 1.0 -- 09:49:21.694 DEBUG [12334]: Connecting to database... -- 09:49:21.694 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:21.694 SQL [12334]: pgsql_db_connect() -- 09:49:21.706 INFO [12249]: COREGRADE is starting... -- 09:49:21.706 INFO [12249]: Version from config: 1.0 -- 09:49:21.706 DEBUG [12249]: Connecting to database... -- 09:49:21.706 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:21.706 SQL [12249]: pgsql_db_connect() -- 09:49:21.698 DEBUG [12334]: Database connection successful -- 09:49:21.698 INFO [12334]: _SERVER found -- 09:49:21.698 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 09:49:21.698 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:21.698 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:21.698 INFO [12334]: QUERY_STRING = /assets/customjs/general.js -- 09:49:21.698 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:21.709 INFO [12334]: COREGRADE is stopping... -- 09:49:21.709 DEBUG [12334]: Closing database connection -- 09:49:21.709 SQL [12334]: pgsql_close() -- 09:49:21.711 DEBUG [12249]: Database connection successful -- 09:49:21.711 INFO [12249]: _SERVER found -- 09:49:21.711 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 09:49:21.711 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:21.711 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:21.711 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 09:49:21.711 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:21.723 INFO [12249]: COREGRADE is stopping... -- 09:49:21.723 DEBUG [12249]: Closing database connection -- 09:49:21.723 SQL [12249]: pgsql_close() -- 09:49:21.791 INFO [12249]: COREGRADE is starting... -- 09:49:21.791 INFO [12249]: Version from config: 1.0 -- 09:49:21.791 DEBUG [12249]: Connecting to database... -- 09:49:21.791 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:21.791 SQL [12249]: pgsql_db_connect() -- 09:49:21.795 DEBUG [12249]: Database connection successful -- 09:49:21.795 INFO [12249]: _SERVER found -- 09:49:21.795 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 09:49:21.795 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:21.795 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:21.795 INFO [12249]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 09:49:21.795 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:21.806 INFO [12249]: COREGRADE is stopping... -- 09:49:21.806 DEBUG [12249]: Closing database connection -- 09:49:21.806 SQL [12249]: pgsql_close() -- 09:49:21.874 INFO [12249]: COREGRADE is starting... -- 09:49:21.875 INFO [12249]: Version from config: 1.0 -- 09:49:21.875 DEBUG [12249]: Connecting to database... -- 09:49:21.875 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:21.875 SQL [12249]: pgsql_db_connect() -- 09:49:21.879 DEBUG [12249]: Database connection successful -- 09:49:21.879 INFO [12249]: _SERVER found -- 09:49:21.879 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 09:49:21.879 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:21.879 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:21.879 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 09:49:21.879 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:21.890 INFO [12249]: COREGRADE is stopping... -- 09:49:21.890 DEBUG [12249]: Closing database connection -- 09:49:21.890 SQL [12249]: pgsql_close() -- 09:49:21.958 INFO [12249]: COREGRADE is starting... -- 09:49:21.959 INFO [12249]: Version from config: 1.0 -- 09:49:21.959 DEBUG [12249]: Connecting to database... -- 09:49:21.959 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:21.959 SQL [12249]: pgsql_db_connect() -- 09:49:21.963 DEBUG [12249]: Database connection successful -- 09:49:21.963 INFO [12249]: _SERVER found -- 09:49:21.963 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 09:49:21.963 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:21.963 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:21.963 INFO [12249]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 09:49:21.963 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:21.974 INFO [12249]: COREGRADE is stopping... -- 09:49:21.974 DEBUG [12249]: Closing database connection -- 09:49:21.974 SQL [12249]: pgsql_close() -- 09:49:22.043 INFO [12249]: COREGRADE is starting... -- 09:49:22.043 INFO [12249]: Version from config: 1.0 -- 09:49:22.043 DEBUG [12249]: Connecting to database... -- 09:49:22.043 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:22.043 SQL [12249]: pgsql_db_connect() -- 09:49:22.047 DEBUG [12249]: Database connection successful -- 09:49:22.047 INFO [12249]: _SERVER found -- 09:49:22.047 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 09:49:22.047 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:22.047 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:22.047 INFO [12249]: QUERY_STRING = /assets/js/pages/dashboard.js -- 09:49:22.047 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:22.059 INFO [12249]: COREGRADE is stopping... -- 09:49:22.059 DEBUG [12249]: Closing database connection -- 09:49:22.059 SQL [12249]: pgsql_close() -- 09:49:22.128 INFO [12249]: COREGRADE is starting... -- 09:49:22.128 INFO [12249]: Version from config: 1.0 -- 09:49:22.128 DEBUG [12249]: Connecting to database... -- 09:49:22.128 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:22.128 SQL [12249]: pgsql_db_connect() -- 09:49:22.132 DEBUG [12249]: Database connection successful -- 09:49:22.132 INFO [12249]: _SERVER found -- 09:49:22.132 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 09:49:22.132 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:22.132 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:22.132 INFO [12249]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 09:49:22.132 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:22.144 INFO [12249]: COREGRADE is stopping... -- 09:49:22.144 DEBUG [12249]: Closing database connection -- 09:49:22.144 SQL [12249]: pgsql_close() -- 09:49:22.212 INFO [12249]: COREGRADE is starting... -- 09:49:22.213 INFO [12249]: Version from config: 1.0 -- 09:49:22.213 DEBUG [12249]: Connecting to database... -- 09:49:22.213 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:22.213 SQL [12249]: pgsql_db_connect() -- 09:49:22.217 DEBUG [12249]: Database connection successful -- 09:49:22.217 INFO [12249]: _SERVER found -- 09:49:22.217 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 09:49:22.217 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:22.217 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:22.217 INFO [12249]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 09:49:22.217 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:22.229 INFO [12249]: COREGRADE is stopping... -- 09:49:22.229 DEBUG [12249]: Closing database connection -- 09:49:22.229 SQL [12249]: pgsql_close() -- 09:49:22.297 INFO [12249]: COREGRADE is starting... -- 09:49:22.297 INFO [12249]: Version from config: 1.0 -- 09:49:22.297 DEBUG [12249]: Connecting to database... -- 09:49:22.297 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:22.297 SQL [12249]: pgsql_db_connect() -- 09:49:22.301 DEBUG [12249]: Database connection successful -- 09:49:22.301 INFO [12249]: _SERVER found -- 09:49:22.301 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 09:49:22.301 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:22.301 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:22.301 INFO [12249]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 09:49:22.301 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:22.313 INFO [12249]: COREGRADE is stopping... -- 09:49:22.313 DEBUG [12249]: Closing database connection -- 09:49:22.313 SQL [12249]: pgsql_close() -- 09:49:22.381 INFO [12249]: COREGRADE is starting... -- 09:49:22.381 INFO [12249]: Version from config: 1.0 -- 09:49:22.381 DEBUG [12249]: Connecting to database... -- 09:49:22.381 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:22.381 SQL [12249]: pgsql_db_connect() -- 09:49:22.385 DEBUG [12249]: Database connection successful -- 09:49:22.385 INFO [12249]: _SERVER found -- 09:49:22.385 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 09:49:22.385 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:22.385 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:22.385 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 09:49:22.385 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:22.397 INFO [12249]: COREGRADE is stopping... -- 09:49:22.397 DEBUG [12249]: Closing database connection -- 09:49:22.397 SQL [12249]: pgsql_close() -- 09:49:22.465 INFO [12249]: COREGRADE is starting... -- 09:49:22.465 INFO [12249]: Version from config: 1.0 -- 09:49:22.465 DEBUG [12249]: Connecting to database... -- 09:49:22.465 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:22.465 SQL [12249]: pgsql_db_connect() -- 09:49:22.469 DEBUG [12249]: Database connection successful -- 09:49:22.470 INFO [12249]: _SERVER found -- 09:49:22.470 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 09:49:22.470 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:22.470 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:22.470 INFO [12249]: QUERY_STRING = /assets/js/pages/picker_date.js -- 09:49:22.470 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:22.481 INFO [12249]: COREGRADE is stopping... -- 09:49:22.481 DEBUG [12249]: Closing database connection -- 09:49:22.481 SQL [12249]: pgsql_close() -- 09:49:22.550 INFO [12249]: COREGRADE is starting... -- 09:49:22.550 INFO [12249]: Version from config: 1.0 -- 09:49:22.550 DEBUG [12249]: Connecting to database... -- 09:49:22.550 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:22.550 SQL [12249]: pgsql_db_connect() -- 09:49:22.554 DEBUG [12249]: Database connection successful -- 09:49:22.554 INFO [12249]: _SERVER found -- 09:49:22.554 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 09:49:22.554 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:22.554 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:22.554 INFO [12249]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 09:49:22.554 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:22.566 INFO [12249]: COREGRADE is stopping... -- 09:49:22.566 DEBUG [12249]: Closing database connection -- 09:49:22.566 SQL [12249]: pgsql_close() -- 09:49:22.633 INFO [12249]: COREGRADE is starting... -- 09:49:22.634 INFO [12249]: Version from config: 1.0 -- 09:49:22.634 DEBUG [12249]: Connecting to database... -- 09:49:22.634 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:22.634 SQL [12249]: pgsql_db_connect() -- 09:49:22.638 DEBUG [12249]: Database connection successful -- 09:49:22.638 INFO [12249]: _SERVER found -- 09:49:22.638 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 09:49:22.638 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:22.638 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:22.638 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 09:49:22.638 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:22.649 INFO [12249]: COREGRADE is stopping... -- 09:49:22.649 DEBUG [12249]: Closing database connection -- 09:49:22.649 SQL [12249]: pgsql_close() -- 09:49:22.717 INFO [12249]: COREGRADE is starting... -- 09:49:22.718 INFO [12249]: Version from config: 1.0 -- 09:49:22.718 DEBUG [12249]: Connecting to database... -- 09:49:22.718 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:22.718 SQL [12249]: pgsql_db_connect() -- 09:49:22.722 DEBUG [12249]: Database connection successful -- 09:49:22.722 INFO [12249]: _SERVER found -- 09:49:22.722 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 09:49:22.722 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:22.722 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:22.722 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 09:49:22.722 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:22.733 INFO [12249]: COREGRADE is stopping... -- 09:49:22.733 DEBUG [12249]: Closing database connection -- 09:49:22.733 SQL [12249]: pgsql_close() -- 09:49:22.801 INFO [12249]: COREGRADE is starting... -- 09:49:22.802 INFO [12249]: Version from config: 1.0 -- 09:49:22.802 DEBUG [12249]: Connecting to database... -- 09:49:22.802 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:22.802 SQL [12249]: pgsql_db_connect() -- 09:49:22.806 DEBUG [12249]: Database connection successful -- 09:49:22.806 INFO [12249]: _SERVER found -- 09:49:22.806 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 09:49:22.806 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:22.806 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:22.806 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 09:49:22.806 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:22.817 INFO [12249]: COREGRADE is stopping... -- 09:49:22.817 DEBUG [12249]: Closing database connection -- 09:49:22.817 SQL [12249]: pgsql_close() -- 09:49:22.885 INFO [12249]: COREGRADE is starting... -- 09:49:22.886 INFO [12249]: Version from config: 1.0 -- 09:49:22.886 DEBUG [12249]: Connecting to database... -- 09:49:22.886 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:22.886 SQL [12249]: pgsql_db_connect() -- 09:49:22.890 DEBUG [12249]: Database connection successful -- 09:49:22.890 INFO [12249]: _SERVER found -- 09:49:22.890 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 09:49:22.890 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:22.890 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:22.890 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 09:49:22.890 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:22.901 INFO [12249]: COREGRADE is stopping... -- 09:49:22.901 DEBUG [12249]: Closing database connection -- 09:49:22.901 SQL [12249]: pgsql_close() -- 09:49:22.980 INFO [12249]: COREGRADE is starting... -- 09:49:22.980 INFO [12249]: Version from config: 1.0 -- 09:49:22.980 DEBUG [12249]: Connecting to database... -- 09:49:22.980 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:22.980 SQL [12249]: pgsql_db_connect() -- 09:49:22.984 DEBUG [12249]: Database connection successful -- 09:49:22.984 INFO [12249]: _SERVER found -- 09:49:22.984 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 09:49:22.984 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:22.984 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:22.984 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 09:49:22.984 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:22.996 INFO [12249]: COREGRADE is stopping... -- 09:49:22.996 DEBUG [12249]: Closing database connection -- 09:49:22.996 SQL [12249]: pgsql_close() -- 09:49:23.064 INFO [12249]: COREGRADE is starting... -- 09:49:23.064 INFO [12249]: Version from config: 1.0 -- 09:49:23.064 DEBUG [12249]: Connecting to database... -- 09:49:23.065 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:23.065 SQL [12249]: pgsql_db_connect() -- 09:49:23.069 DEBUG [12249]: Database connection successful -- 09:49:23.069 INFO [12249]: _SERVER found -- 09:49:23.069 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 09:49:23.069 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:23.069 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:23.069 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 09:49:23.069 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:23.080 INFO [12249]: COREGRADE is stopping... -- 09:49:23.080 DEBUG [12249]: Closing database connection -- 09:49:23.080 SQL [12249]: pgsql_close() -- 09:49:23.150 INFO [12249]: COREGRADE is starting... -- 09:49:23.151 INFO [12249]: Version from config: 1.0 -- 09:49:23.151 DEBUG [12249]: Connecting to database... -- 09:49:23.151 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:49:23.151 SQL [12249]: pgsql_db_connect() -- 09:49:23.155 DEBUG [12249]: Database connection successful -- 09:49:23.155 INFO [12249]: _SERVER found -- 09:49:23.155 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 09:49:23.155 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 09:49:23.155 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 09:49:23.155 INFO [12249]: QUERY_STRING = /assets/customjs/general.js -- 09:49:23.155 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 09:49:23.167 INFO [12249]: COREGRADE is stopping... -- 09:49:23.167 DEBUG [12249]: Closing database connection -- 09:49:23.167 SQL [12249]: pgsql_close() -- 10:09:23.390 INFO [12305]: COREGRADE is starting... -- 10:09:23.391 INFO [12305]: Version from config: 1.0 -- 10:09:23.391 DEBUG [12305]: Connecting to database... -- 10:09:23.391 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:23.391 SQL [12305]: pgsql_db_connect() -- 10:09:23.396 DEBUG [12305]: Database connection successful -- 10:09:23.396 INFO [12305]: _SERVER found -- 10:09:23.396 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 10:09:23.396 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:23.396 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ljk8vg8c5lrbst5l44sjlf1390f8c3l2 -- 10:09:23.396 INFO [12305]: QUERY_STRING = /logout -- 10:09:23.396 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:23.431 INFO [12305]: COREGRADE is stopping... -- 10:09:23.431 DEBUG [12305]: Closing database connection -- 10:09:23.431 SQL [12305]: pgsql_close() -- 10:09:23.512 INFO [12305]: COREGRADE is starting... -- 10:09:23.512 INFO [12305]: Version from config: 1.0 -- 10:09:23.512 DEBUG [12305]: Connecting to database... -- 10:09:23.512 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:23.512 SQL [12305]: pgsql_db_connect() -- 10:09:23.517 DEBUG [12305]: Database connection successful -- 10:09:23.517 INFO [12305]: _SERVER found -- 10:09:23.517 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 10:09:23.517 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:23.517 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:23.517 INFO [12305]: QUERY_STRING = /start -- 10:09:23.517 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:23.552 INFO [12305]: COREGRADE is stopping... -- 10:09:23.552 DEBUG [12305]: Closing database connection -- 10:09:23.552 SQL [12305]: pgsql_close() -- 10:09:23.679 INFO [12305]: COREGRADE is starting... -- 10:09:23.679 INFO [12305]: Version from config: 1.0 -- 10:09:23.679 DEBUG [12305]: Connecting to database... -- 10:09:23.679 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:23.679 SQL [12305]: pgsql_db_connect() -- 10:09:23.684 DEBUG [12305]: Database connection successful -- 10:09:23.684 INFO [12305]: _SERVER found -- 10:09:23.684 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 10:09:23.684 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:23.684 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:23.684 INFO [12305]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 10:09:23.684 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:23.696 INFO [12305]: COREGRADE is stopping... -- 10:09:23.696 DEBUG [12305]: Closing database connection -- 10:09:23.696 SQL [12305]: pgsql_close() -- 10:09:23.704 INFO [12305]: COREGRADE is starting... -- 10:09:23.704 INFO [12305]: Version from config: 1.0 -- 10:09:23.704 DEBUG [12305]: Connecting to database... -- 10:09:23.704 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:23.704 SQL [12305]: pgsql_db_connect() -- 10:09:23.709 DEBUG [12305]: Database connection successful -- 10:09:23.709 INFO [12305]: _SERVER found -- 10:09:23.709 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 10:09:23.709 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:23.709 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:23.709 INFO [12305]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 10:09:23.709 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:23.720 INFO [12305]: COREGRADE is stopping... -- 10:09:23.720 DEBUG [12305]: Closing database connection -- 10:09:23.720 SQL [12305]: pgsql_close() -- 10:09:23.751 INFO [12305]: COREGRADE is starting... -- 10:09:23.751 INFO [12305]: Version from config: 1.0 -- 10:09:23.751 DEBUG [12305]: Connecting to database... -- 10:09:23.751 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:23.752 SQL [12305]: pgsql_db_connect() -- 10:09:23.756 DEBUG [12305]: Database connection successful -- 10:09:23.756 INFO [12305]: _SERVER found -- 10:09:23.756 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 10:09:23.756 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:23.756 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:23.756 INFO [12305]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 10:09:23.756 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:23.768 INFO [12305]: COREGRADE is stopping... -- 10:09:23.768 DEBUG [12305]: Closing database connection -- 10:09:23.768 SQL [12305]: pgsql_close() -- 10:09:23.777 INFO [12305]: COREGRADE is starting... -- 10:09:23.777 INFO [12305]: Version from config: 1.0 -- 10:09:23.777 DEBUG [12305]: Connecting to database... -- 10:09:23.777 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:23.777 SQL [12305]: pgsql_db_connect() -- 10:09:23.789 INFO [12248]: COREGRADE is starting... -- 10:09:23.789 INFO [12248]: Version from config: 1.0 -- 10:09:23.789 DEBUG [12248]: Connecting to database... -- 10:09:23.789 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:23.789 SQL [12248]: pgsql_db_connect() -- 10:09:23.782 DEBUG [12305]: Database connection successful -- 10:09:23.782 INFO [12305]: _SERVER found -- 10:09:23.782 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 10:09:23.782 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:23.782 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:23.782 INFO [12305]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 10:09:23.782 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:23.794 INFO [12305]: COREGRADE is stopping... -- 10:09:23.794 DEBUG [12305]: Closing database connection -- 10:09:23.794 SQL [12305]: pgsql_close() -- 10:09:23.794 DEBUG [12248]: Database connection successful -- 10:09:23.794 INFO [12248]: _SERVER found -- 10:09:23.794 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 10:09:23.794 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:23.794 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:23.794 INFO [12248]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 10:09:23.794 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:23.808 INFO [12248]: COREGRADE is stopping... -- 10:09:23.808 DEBUG [12248]: Closing database connection -- 10:09:23.808 SQL [12248]: pgsql_close() -- 10:09:23.848 INFO [12248]: COREGRADE is starting... -- 10:09:23.848 INFO [12248]: Version from config: 1.0 -- 10:09:23.848 DEBUG [12248]: Connecting to database... -- 10:09:23.848 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:23.848 SQL [12248]: pgsql_db_connect() -- 10:09:23.853 DEBUG [12248]: Database connection successful -- 10:09:23.853 INFO [12248]: _SERVER found -- 10:09:23.853 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 10:09:23.853 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:23.853 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:23.853 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 10:09:23.853 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:23.864 INFO [12248]: COREGRADE is stopping... -- 10:09:23.864 DEBUG [12248]: Closing database connection -- 10:09:23.864 SQL [12248]: pgsql_close() -- 10:09:23.874 INFO [12248]: COREGRADE is starting... -- 10:09:23.874 INFO [12248]: Version from config: 1.0 -- 10:09:23.875 DEBUG [12248]: Connecting to database... -- 10:09:23.875 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:23.875 SQL [12248]: pgsql_db_connect() -- 10:09:23.876 INFO [12305]: COREGRADE is starting... -- 10:09:23.876 INFO [12305]: Version from config: 1.0 -- 10:09:23.876 DEBUG [12305]: Connecting to database... -- 10:09:23.876 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:23.876 SQL [12305]: pgsql_db_connect() -- 10:09:23.880 DEBUG [12248]: Database connection successful -- 10:09:23.880 INFO [12248]: _SERVER found -- 10:09:23.880 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 10:09:23.880 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:23.880 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:23.880 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 10:09:23.880 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:23.891 INFO [12248]: COREGRADE is stopping... -- 10:09:23.891 DEBUG [12248]: Closing database connection -- 10:09:23.891 SQL [12248]: pgsql_close() -- 10:09:23.881 DEBUG [12305]: Database connection successful -- 10:09:23.881 INFO [12305]: _SERVER found -- 10:09:23.881 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 10:09:23.881 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:23.881 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:23.881 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 10:09:23.881 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:23.893 INFO [12305]: COREGRADE is stopping... -- 10:09:23.893 DEBUG [12305]: Closing database connection -- 10:09:23.893 SQL [12305]: pgsql_close() -- 10:09:23.944 INFO [12305]: COREGRADE is starting... -- 10:09:23.944 INFO [12305]: Version from config: 1.0 -- 10:09:23.944 DEBUG [12305]: Connecting to database... -- 10:09:23.944 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:23.944 SQL [12305]: pgsql_db_connect() -- 10:09:23.949 DEBUG [12305]: Database connection successful -- 10:09:23.949 INFO [12305]: _SERVER found -- 10:09:23.949 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 10:09:23.949 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:23.949 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:23.949 INFO [12305]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 10:09:23.949 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:23.961 INFO [12305]: COREGRADE is stopping... -- 10:09:23.961 DEBUG [12305]: Closing database connection -- 10:09:23.961 SQL [12305]: pgsql_close() -- 10:09:23.961 INFO [12248]: COREGRADE is starting... -- 10:09:23.961 INFO [12248]: Version from config: 1.0 -- 10:09:23.961 DEBUG [12248]: Connecting to database... -- 10:09:23.961 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:23.961 SQL [12248]: pgsql_db_connect() -- 10:09:23.971 INFO [12305]: COREGRADE is starting... -- 10:09:23.972 INFO [12305]: Version from config: 1.0 -- 10:09:23.972 DEBUG [12305]: Connecting to database... -- 10:09:23.972 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:23.972 SQL [12305]: pgsql_db_connect() -- 10:09:23.966 DEBUG [12248]: Database connection successful -- 10:09:23.966 INFO [12248]: _SERVER found -- 10:09:23.966 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 10:09:23.966 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:23.966 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:23.966 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 10:09:23.966 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:23.978 INFO [12248]: COREGRADE is stopping... -- 10:09:23.978 DEBUG [12248]: Closing database connection -- 10:09:23.978 SQL [12248]: pgsql_close() -- 10:09:23.976 DEBUG [12305]: Database connection successful -- 10:09:23.976 INFO [12305]: _SERVER found -- 10:09:23.976 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 10:09:23.976 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:23.976 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:23.976 INFO [12305]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 10:09:23.976 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:23.988 INFO [12305]: COREGRADE is stopping... -- 10:09:23.988 DEBUG [12305]: Closing database connection -- 10:09:23.988 SQL [12305]: pgsql_close() -- 10:09:24.045 INFO [12305]: COREGRADE is starting... -- 10:09:24.045 INFO [12305]: Version from config: 1.0 -- 10:09:24.045 DEBUG [12305]: Connecting to database... -- 10:09:24.045 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:24.045 SQL [12305]: pgsql_db_connect() -- 10:09:24.046 INFO [12248]: COREGRADE is starting... -- 10:09:24.047 INFO [12248]: Version from config: 1.0 -- 10:09:24.047 DEBUG [12248]: Connecting to database... -- 10:09:24.047 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:24.047 SQL [12248]: pgsql_db_connect() -- 10:09:24.060 INFO [12247]: COREGRADE is starting... -- 10:09:24.061 INFO [12247]: Version from config: 1.0 -- 10:09:24.061 DEBUG [12247]: Connecting to database... -- 10:09:24.061 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:24.061 SQL [12247]: pgsql_db_connect() -- 10:09:24.050 DEBUG [12305]: Database connection successful -- 10:09:24.050 INFO [12305]: _SERVER found -- 10:09:24.050 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 10:09:24.050 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:24.050 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:24.050 INFO [12305]: QUERY_STRING = /assets/js/pages/dashboard.js -- 10:09:24.050 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:24.062 INFO [12305]: COREGRADE is stopping... -- 10:09:24.062 DEBUG [12305]: Closing database connection -- 10:09:24.062 SQL [12305]: pgsql_close() -- 10:09:24.051 DEBUG [12248]: Database connection successful -- 10:09:24.051 INFO [12248]: _SERVER found -- 10:09:24.051 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 10:09:24.051 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:24.051 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:24.051 INFO [12248]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 10:09:24.051 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:24.064 INFO [12248]: COREGRADE is stopping... -- 10:09:24.064 DEBUG [12248]: Closing database connection -- 10:09:24.064 SQL [12248]: pgsql_close() -- 10:09:24.066 DEBUG [12247]: Database connection successful -- 10:09:24.066 INFO [12247]: _SERVER found -- 10:09:24.066 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 10:09:24.066 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:24.066 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:24.066 INFO [12247]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 10:09:24.066 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:24.079 INFO [12247]: COREGRADE is stopping... -- 10:09:24.079 DEBUG [12247]: Closing database connection -- 10:09:24.079 SQL [12247]: pgsql_close() -- 10:09:24.133 INFO [12247]: COREGRADE is starting... -- 10:09:24.133 INFO [12248]: COREGRADE is starting... -- 10:09:24.134 INFO [12247]: Version from config: 1.0 -- 10:09:24.134 DEBUG [12247]: Connecting to database... -- 10:09:24.134 INFO [12248]: Version from config: 1.0 -- 10:09:24.134 DEBUG [12248]: Connecting to database... -- 10:09:24.134 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:24.134 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:24.134 SQL [12247]: pgsql_db_connect() -- 10:09:24.134 SQL [12248]: pgsql_db_connect() -- 10:09:24.149 INFO [12305]: COREGRADE is starting... -- 10:09:24.149 INFO [12305]: Version from config: 1.0 -- 10:09:24.149 DEBUG [12305]: Connecting to database... -- 10:09:24.149 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:24.149 SQL [12305]: pgsql_db_connect() -- 10:09:24.139 DEBUG [12247]: Database connection successful -- 10:09:24.139 INFO [12247]: _SERVER found -- 10:09:24.139 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 10:09:24.139 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:24.139 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:24.139 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 10:09:24.139 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:24.150 INFO [12247]: COREGRADE is stopping... -- 10:09:24.150 DEBUG [12247]: Closing database connection -- 10:09:24.150 SQL [12247]: pgsql_close() -- 10:09:24.139 DEBUG [12248]: Database connection successful -- 10:09:24.139 INFO [12248]: _SERVER found -- 10:09:24.139 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 10:09:24.139 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:24.139 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:24.139 INFO [12248]: QUERY_STRING = /assets/js/pages/picker_date.js -- 10:09:24.139 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:24.151 INFO [12248]: COREGRADE is stopping... -- 10:09:24.151 DEBUG [12248]: Closing database connection -- 10:09:24.151 SQL [12248]: pgsql_close() -- 10:09:24.155 DEBUG [12305]: Database connection successful -- 10:09:24.155 INFO [12305]: _SERVER found -- 10:09:24.155 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 10:09:24.155 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:24.155 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:24.155 INFO [12305]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 10:09:24.155 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:24.166 INFO [12305]: COREGRADE is stopping... -- 10:09:24.166 DEBUG [12305]: Closing database connection -- 10:09:24.166 SQL [12305]: pgsql_close() -- 10:09:24.219 INFO [12305]: COREGRADE is starting... -- 10:09:24.219 INFO [12305]: Version from config: 1.0 -- 10:09:24.219 DEBUG [12305]: Connecting to database... -- 10:09:24.219 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:24.219 SQL [12305]: pgsql_db_connect() -- 10:09:24.220 INFO [12248]: COREGRADE is starting... -- 10:09:24.220 INFO [12248]: Version from config: 1.0 -- 10:09:24.220 DEBUG [12248]: Connecting to database... -- 10:09:24.220 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:24.220 SQL [12248]: pgsql_db_connect() -- 10:09:24.235 INFO [12247]: COREGRADE is starting... -- 10:09:24.235 INFO [12247]: Version from config: 1.0 -- 10:09:24.235 DEBUG [12247]: Connecting to database... -- 10:09:24.235 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:24.235 SQL [12247]: pgsql_db_connect() -- 10:09:24.224 DEBUG [12305]: Database connection successful -- 10:09:24.224 INFO [12305]: _SERVER found -- 10:09:24.224 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 10:09:24.224 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:24.224 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:24.224 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 10:09:24.224 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:24.236 INFO [12305]: COREGRADE is stopping... -- 10:09:24.236 DEBUG [12305]: Closing database connection -- 10:09:24.236 SQL [12305]: pgsql_close() -- 10:09:24.225 DEBUG [12248]: Database connection successful -- 10:09:24.225 INFO [12248]: _SERVER found -- 10:09:24.225 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 10:09:24.225 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:24.225 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:24.225 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 10:09:24.225 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:24.236 INFO [12248]: COREGRADE is stopping... -- 10:09:24.236 DEBUG [12248]: Closing database connection -- 10:09:24.236 SQL [12248]: pgsql_close() -- 10:09:24.240 DEBUG [12247]: Database connection successful -- 10:09:24.240 INFO [12247]: _SERVER found -- 10:09:24.240 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 10:09:24.240 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:24.240 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:24.240 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 10:09:24.240 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:24.252 INFO [12247]: COREGRADE is stopping... -- 10:09:24.252 DEBUG [12247]: Closing database connection -- 10:09:24.252 SQL [12247]: pgsql_close() -- 10:09:24.304 INFO [12247]: COREGRADE is starting... -- 10:09:24.305 INFO [12247]: Version from config: 1.0 -- 10:09:24.305 DEBUG [12247]: Connecting to database... -- 10:09:24.305 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:24.305 SQL [12247]: pgsql_db_connect() -- 10:09:24.305 INFO [12248]: COREGRADE is starting... -- 10:09:24.305 INFO [12248]: Version from config: 1.0 -- 10:09:24.305 DEBUG [12248]: Connecting to database... -- 10:09:24.305 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:24.305 SQL [12248]: pgsql_db_connect() -- 10:09:24.321 INFO [12305]: COREGRADE is starting... -- 10:09:24.309 DEBUG [12247]: Database connection successful -- 10:09:24.309 INFO [12247]: _SERVER found -- 10:09:24.309 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 10:09:24.309 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:24.309 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:24.309 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 10:09:24.309 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:24.321 INFO [12247]: COREGRADE is stopping... -- 10:09:24.321 DEBUG [12247]: Closing database connection -- 10:09:24.310 DEBUG [12248]: Database connection successful -- 10:09:24.310 INFO [12248]: _SERVER found -- 10:09:24.310 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 10:09:24.310 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:24.310 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:24.310 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 10:09:24.310 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:24.321 INFO [12248]: COREGRADE is stopping... -- 10:09:24.321 SQL [12247]: pgsql_close() -- 10:09:24.321 INFO [12305]: Version from config: 1.0 -- 10:09:24.321 DEBUG [12305]: Connecting to database... -- 10:09:24.321 DEBUG [12248]: Closing database connection -- 10:09:24.321 SQL [12248]: pgsql_close() -- 10:09:24.321 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:24.321 SQL [12305]: pgsql_db_connect() -- 10:09:24.327 DEBUG [12305]: Database connection successful -- 10:09:24.327 INFO [12305]: _SERVER found -- 10:09:24.327 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 10:09:24.327 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:24.327 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:24.327 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 10:09:24.327 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:24.339 INFO [12305]: COREGRADE is stopping... -- 10:09:24.339 DEBUG [12305]: Closing database connection -- 10:09:24.339 SQL [12305]: pgsql_close() -- 10:09:24.389 INFO [12305]: COREGRADE is starting... -- 10:09:24.390 INFO [12305]: Version from config: 1.0 -- 10:09:24.390 DEBUG [12305]: Connecting to database... -- 10:09:24.390 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:24.390 SQL [12305]: pgsql_db_connect() -- 10:09:24.390 INFO [12247]: COREGRADE is starting... -- 10:09:24.390 INFO [12247]: Version from config: 1.0 -- 10:09:24.390 DEBUG [12247]: Connecting to database... -- 10:09:24.390 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:24.390 SQL [12247]: pgsql_db_connect() -- 10:09:24.394 DEBUG [12305]: Database connection successful -- 10:09:24.394 INFO [12305]: _SERVER found -- 10:09:24.394 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 10:09:24.394 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:24.394 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:24.394 INFO [12305]: QUERY_STRING = /assets/customjs/general.js -- 10:09:24.394 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:24.406 INFO [12305]: COREGRADE is stopping... -- 10:09:24.394 DEBUG [12247]: Database connection successful -- 10:09:24.394 INFO [12247]: _SERVER found -- 10:09:24.394 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 10:09:24.394 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:24.394 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:24.394 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 10:09:24.394 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:24.406 INFO [12247]: COREGRADE is stopping... -- 10:09:24.406 DEBUG [12305]: Closing database connection -- 10:09:24.406 DEBUG [12247]: Closing database connection -- 10:09:24.406 SQL [12305]: pgsql_close() -- 10:09:24.406 SQL [12247]: pgsql_close() -- 10:09:24.475 INFO [12247]: COREGRADE is starting... -- 10:09:24.475 INFO [12247]: Version from config: 1.0 -- 10:09:24.475 DEBUG [12247]: Connecting to database... -- 10:09:24.475 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:24.475 SQL [12247]: pgsql_db_connect() -- 10:09:24.480 DEBUG [12247]: Database connection successful -- 10:09:24.480 INFO [12247]: _SERVER found -- 10:09:24.480 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 10:09:24.480 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:24.480 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:24.480 INFO [12247]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 10:09:24.480 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:24.492 INFO [12247]: COREGRADE is stopping... -- 10:09:24.492 DEBUG [12247]: Closing database connection -- 10:09:24.492 SQL [12247]: pgsql_close() -- 10:09:24.561 INFO [12247]: COREGRADE is starting... -- 10:09:24.561 INFO [12247]: Version from config: 1.0 -- 10:09:24.561 DEBUG [12247]: Connecting to database... -- 10:09:24.561 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:24.561 SQL [12247]: pgsql_db_connect() -- 10:09:24.566 DEBUG [12247]: Database connection successful -- 10:09:24.566 INFO [12247]: _SERVER found -- 10:09:24.566 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 10:09:24.566 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:24.566 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:24.566 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 10:09:24.566 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:24.578 INFO [12247]: COREGRADE is stopping... -- 10:09:24.578 DEBUG [12247]: Closing database connection -- 10:09:24.578 SQL [12247]: pgsql_close() -- 10:09:24.647 INFO [12247]: COREGRADE is starting... -- 10:09:24.647 INFO [12247]: Version from config: 1.0 -- 10:09:24.647 DEBUG [12247]: Connecting to database... -- 10:09:24.647 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:24.647 SQL [12247]: pgsql_db_connect() -- 10:09:24.652 DEBUG [12247]: Database connection successful -- 10:09:24.652 INFO [12247]: _SERVER found -- 10:09:24.652 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 10:09:24.652 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:24.652 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:24.652 INFO [12247]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 10:09:24.652 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:24.663 INFO [12247]: COREGRADE is stopping... -- 10:09:24.663 DEBUG [12247]: Closing database connection -- 10:09:24.663 SQL [12247]: pgsql_close() -- 10:09:24.733 INFO [12247]: COREGRADE is starting... -- 10:09:24.733 INFO [12247]: Version from config: 1.0 -- 10:09:24.733 DEBUG [12247]: Connecting to database... -- 10:09:24.733 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:24.733 SQL [12247]: pgsql_db_connect() -- 10:09:24.738 DEBUG [12247]: Database connection successful -- 10:09:24.738 INFO [12247]: _SERVER found -- 10:09:24.738 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 10:09:24.738 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:24.738 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:24.738 INFO [12247]: QUERY_STRING = /assets/js/pages/dashboard.js -- 10:09:24.738 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:24.750 INFO [12247]: COREGRADE is stopping... -- 10:09:24.750 DEBUG [12247]: Closing database connection -- 10:09:24.750 SQL [12247]: pgsql_close() -- 10:09:24.820 INFO [12247]: COREGRADE is starting... -- 10:09:24.820 INFO [12247]: Version from config: 1.0 -- 10:09:24.820 DEBUG [12247]: Connecting to database... -- 10:09:24.820 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:24.820 SQL [12247]: pgsql_db_connect() -- 10:09:24.824 DEBUG [12247]: Database connection successful -- 10:09:24.825 INFO [12247]: _SERVER found -- 10:09:24.825 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 10:09:24.825 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:24.825 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:24.825 INFO [12247]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 10:09:24.825 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:24.836 INFO [12247]: COREGRADE is stopping... -- 10:09:24.836 DEBUG [12247]: Closing database connection -- 10:09:24.836 SQL [12247]: pgsql_close() -- 10:09:24.905 INFO [12247]: COREGRADE is starting... -- 10:09:24.905 INFO [12247]: Version from config: 1.0 -- 10:09:24.905 DEBUG [12247]: Connecting to database... -- 10:09:24.905 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:24.905 SQL [12247]: pgsql_db_connect() -- 10:09:24.910 DEBUG [12247]: Database connection successful -- 10:09:24.910 INFO [12247]: _SERVER found -- 10:09:24.910 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 10:09:24.910 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:24.910 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:24.910 INFO [12247]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 10:09:24.910 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:24.922 INFO [12247]: COREGRADE is stopping... -- 10:09:24.922 DEBUG [12247]: Closing database connection -- 10:09:24.922 SQL [12247]: pgsql_close() -- 10:09:24.991 INFO [12247]: COREGRADE is starting... -- 10:09:24.991 INFO [12247]: Version from config: 1.0 -- 10:09:24.991 DEBUG [12247]: Connecting to database... -- 10:09:24.991 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:24.991 SQL [12247]: pgsql_db_connect() -- 10:09:24.996 DEBUG [12247]: Database connection successful -- 10:09:24.996 INFO [12247]: _SERVER found -- 10:09:24.996 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 10:09:24.996 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:24.996 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:24.996 INFO [12247]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 10:09:24.996 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:25.008 INFO [12247]: COREGRADE is stopping... -- 10:09:25.008 DEBUG [12247]: Closing database connection -- 10:09:25.008 SQL [12247]: pgsql_close() -- 10:09:25.077 INFO [12247]: COREGRADE is starting... -- 10:09:25.077 INFO [12247]: Version from config: 1.0 -- 10:09:25.077 DEBUG [12247]: Connecting to database... -- 10:09:25.077 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:25.077 SQL [12247]: pgsql_db_connect() -- 10:09:25.082 DEBUG [12247]: Database connection successful -- 10:09:25.082 INFO [12247]: _SERVER found -- 10:09:25.082 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 10:09:25.082 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:25.082 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:25.082 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 10:09:25.082 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:25.094 INFO [12247]: COREGRADE is stopping... -- 10:09:25.094 DEBUG [12247]: Closing database connection -- 10:09:25.094 SQL [12247]: pgsql_close() -- 10:09:25.163 INFO [12247]: COREGRADE is starting... -- 10:09:25.163 INFO [12247]: Version from config: 1.0 -- 10:09:25.163 DEBUG [12247]: Connecting to database... -- 10:09:25.163 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:25.163 SQL [12247]: pgsql_db_connect() -- 10:09:25.168 DEBUG [12247]: Database connection successful -- 10:09:25.168 INFO [12247]: _SERVER found -- 10:09:25.168 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 10:09:25.168 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:25.168 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:25.168 INFO [12247]: QUERY_STRING = /assets/js/pages/picker_date.js -- 10:09:25.168 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:25.180 INFO [12247]: COREGRADE is stopping... -- 10:09:25.180 DEBUG [12247]: Closing database connection -- 10:09:25.180 SQL [12247]: pgsql_close() -- 10:09:25.249 INFO [12247]: COREGRADE is starting... -- 10:09:25.249 INFO [12247]: Version from config: 1.0 -- 10:09:25.249 DEBUG [12247]: Connecting to database... -- 10:09:25.249 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:25.249 SQL [12247]: pgsql_db_connect() -- 10:09:25.254 DEBUG [12247]: Database connection successful -- 10:09:25.254 INFO [12247]: _SERVER found -- 10:09:25.254 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 10:09:25.254 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:25.254 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:25.254 INFO [12247]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 10:09:25.254 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:25.266 INFO [12247]: COREGRADE is stopping... -- 10:09:25.266 DEBUG [12247]: Closing database connection -- 10:09:25.266 SQL [12247]: pgsql_close() -- 10:09:25.335 INFO [12247]: COREGRADE is starting... -- 10:09:25.335 INFO [12247]: Version from config: 1.0 -- 10:09:25.335 DEBUG [12247]: Connecting to database... -- 10:09:25.335 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:25.335 SQL [12247]: pgsql_db_connect() -- 10:09:25.340 DEBUG [12247]: Database connection successful -- 10:09:25.340 INFO [12247]: _SERVER found -- 10:09:25.340 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 10:09:25.340 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:25.340 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:25.340 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 10:09:25.340 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:25.352 INFO [12247]: COREGRADE is stopping... -- 10:09:25.352 DEBUG [12247]: Closing database connection -- 10:09:25.352 SQL [12247]: pgsql_close() -- 10:09:25.420 INFO [12247]: COREGRADE is starting... -- 10:09:25.421 INFO [12247]: Version from config: 1.0 -- 10:09:25.421 DEBUG [12247]: Connecting to database... -- 10:09:25.421 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:25.421 SQL [12247]: pgsql_db_connect() -- 10:09:25.425 DEBUG [12247]: Database connection successful -- 10:09:25.425 INFO [12247]: _SERVER found -- 10:09:25.425 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 10:09:25.425 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:25.425 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:25.425 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 10:09:25.425 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:25.437 INFO [12247]: COREGRADE is stopping... -- 10:09:25.437 DEBUG [12247]: Closing database connection -- 10:09:25.437 SQL [12247]: pgsql_close() -- 10:09:25.506 INFO [12247]: COREGRADE is starting... -- 10:09:25.506 INFO [12247]: Version from config: 1.0 -- 10:09:25.506 DEBUG [12247]: Connecting to database... -- 10:09:25.506 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:25.506 SQL [12247]: pgsql_db_connect() -- 10:09:25.511 DEBUG [12247]: Database connection successful -- 10:09:25.511 INFO [12247]: _SERVER found -- 10:09:25.511 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 10:09:25.511 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:25.511 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:25.511 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 10:09:25.511 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:25.523 INFO [12247]: COREGRADE is stopping... -- 10:09:25.523 DEBUG [12247]: Closing database connection -- 10:09:25.523 SQL [12247]: pgsql_close() -- 10:09:25.592 INFO [12247]: COREGRADE is starting... -- 10:09:25.592 INFO [12247]: Version from config: 1.0 -- 10:09:25.592 DEBUG [12247]: Connecting to database... -- 10:09:25.592 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:25.592 SQL [12247]: pgsql_db_connect() -- 10:09:25.597 DEBUG [12247]: Database connection successful -- 10:09:25.597 INFO [12247]: _SERVER found -- 10:09:25.597 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 10:09:25.597 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:25.597 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:25.597 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 10:09:25.597 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:25.608 INFO [12247]: COREGRADE is stopping... -- 10:09:25.608 DEBUG [12247]: Closing database connection -- 10:09:25.608 SQL [12247]: pgsql_close() -- 10:09:25.687 INFO [12247]: COREGRADE is starting... -- 10:09:25.688 INFO [12247]: Version from config: 1.0 -- 10:09:25.688 DEBUG [12247]: Connecting to database... -- 10:09:25.688 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:25.688 SQL [12247]: pgsql_db_connect() -- 10:09:25.692 DEBUG [12247]: Database connection successful -- 10:09:25.692 INFO [12247]: _SERVER found -- 10:09:25.692 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 10:09:25.692 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:25.692 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:25.692 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 10:09:25.692 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:25.704 INFO [12247]: COREGRADE is stopping... -- 10:09:25.704 DEBUG [12247]: Closing database connection -- 10:09:25.704 SQL [12247]: pgsql_close() -- 10:09:25.773 INFO [12247]: COREGRADE is starting... -- 10:09:25.773 INFO [12247]: Version from config: 1.0 -- 10:09:25.773 DEBUG [12247]: Connecting to database... -- 10:09:25.773 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:25.773 SQL [12247]: pgsql_db_connect() -- 10:09:25.778 DEBUG [12247]: Database connection successful -- 10:09:25.778 INFO [12247]: _SERVER found -- 10:09:25.778 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 10:09:25.778 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:25.778 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:25.778 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 10:09:25.778 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:25.790 INFO [12247]: COREGRADE is stopping... -- 10:09:25.790 DEBUG [12247]: Closing database connection -- 10:09:25.790 SQL [12247]: pgsql_close() -- 10:09:25.861 INFO [12247]: COREGRADE is starting... -- 10:09:25.861 INFO [12247]: Version from config: 1.0 -- 10:09:25.861 DEBUG [12247]: Connecting to database... -- 10:09:25.861 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:09:25.861 SQL [12247]: pgsql_db_connect() -- 10:09:25.866 DEBUG [12247]: Database connection successful -- 10:09:25.866 INFO [12247]: _SERVER found -- 10:09:25.866 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 10:09:25.866 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:09:25.866 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:09:25.866 INFO [12247]: QUERY_STRING = /assets/customjs/general.js -- 10:09:25.866 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:09:25.877 INFO [12247]: COREGRADE is stopping... -- 10:09:25.877 DEBUG [12247]: Closing database connection -- 10:09:25.877 SQL [12247]: pgsql_close() -- 10:29:26.101 INFO [12250]: COREGRADE is starting... -- 10:29:26.101 INFO [12250]: Version from config: 1.0 -- 10:29:26.101 DEBUG [12250]: Connecting to database... -- 10:29:26.101 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:26.101 SQL [12250]: pgsql_db_connect() -- 10:29:26.105 DEBUG [12250]: Database connection successful -- 10:29:26.105 INFO [12250]: _SERVER found -- 10:29:26.105 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 10:29:26.105 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:26.105 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=ksa19ltnsflubmkdkf45tupcjl4pofvk -- 10:29:26.105 INFO [12250]: QUERY_STRING = /logout -- 10:29:26.105 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:26.140 INFO [12250]: COREGRADE is stopping... -- 10:29:26.141 DEBUG [12250]: Closing database connection -- 10:29:26.141 SQL [12250]: pgsql_close() -- 10:29:26.222 INFO [12250]: COREGRADE is starting... -- 10:29:26.222 INFO [12250]: Version from config: 1.0 -- 10:29:26.222 DEBUG [12250]: Connecting to database... -- 10:29:26.222 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:26.222 SQL [12250]: pgsql_db_connect() -- 10:29:26.226 DEBUG [12250]: Database connection successful -- 10:29:26.226 INFO [12250]: _SERVER found -- 10:29:26.226 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 10:29:26.226 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:26.226 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:26.226 INFO [12250]: QUERY_STRING = /start -- 10:29:26.226 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:26.260 INFO [12250]: COREGRADE is stopping... -- 10:29:26.260 DEBUG [12250]: Closing database connection -- 10:29:26.260 SQL [12250]: pgsql_close() -- 10:29:26.390 INFO [12246]: COREGRADE is starting... -- 10:29:26.390 INFO [12246]: Version from config: 1.0 -- 10:29:26.390 DEBUG [12246]: Connecting to database... -- 10:29:26.390 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:26.390 SQL [12246]: pgsql_db_connect() -- 10:29:26.394 DEBUG [12246]: Database connection successful -- 10:29:26.394 INFO [12246]: _SERVER found -- 10:29:26.394 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 10:29:26.394 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:26.394 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:26.394 INFO [12246]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 10:29:26.394 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:26.408 INFO [12246]: COREGRADE is stopping... -- 10:29:26.408 DEBUG [12246]: Closing database connection -- 10:29:26.408 SQL [12246]: pgsql_close() -- 10:29:26.410 INFO [12250]: COREGRADE is starting... -- 10:29:26.410 INFO [12250]: Version from config: 1.0 -- 10:29:26.410 DEBUG [12250]: Connecting to database... -- 10:29:26.410 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:26.410 SQL [12250]: pgsql_db_connect() -- 10:29:26.414 DEBUG [12250]: Database connection successful -- 10:29:26.414 INFO [12250]: _SERVER found -- 10:29:26.414 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 10:29:26.414 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:26.414 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:26.414 INFO [12250]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 10:29:26.414 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:26.426 INFO [12250]: COREGRADE is stopping... -- 10:29:26.426 DEBUG [12250]: Closing database connection -- 10:29:26.426 SQL [12250]: pgsql_close() -- 10:29:26.457 INFO [12347]: COREGRADE is starting... -- 10:29:26.457 INFO [12347]: Version from config: 1.0 -- 10:29:26.457 DEBUG [12347]: Connecting to database... -- 10:29:26.457 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:26.457 SQL [12347]: pgsql_db_connect() -- 10:29:26.461 DEBUG [12347]: Database connection successful -- 10:29:26.461 INFO [12347]: _SERVER found -- 10:29:26.461 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 10:29:26.461 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:26.461 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:26.461 INFO [12347]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 10:29:26.461 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:26.475 INFO [12347]: COREGRADE is stopping... -- 10:29:26.475 DEBUG [12347]: Closing database connection -- 10:29:26.475 SQL [12347]: pgsql_close() -- 10:29:26.487 INFO [12246]: COREGRADE is starting... -- 10:29:26.487 INFO [12246]: Version from config: 1.0 -- 10:29:26.487 DEBUG [12246]: Connecting to database... -- 10:29:26.487 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:26.487 SQL [12246]: pgsql_db_connect() -- 10:29:26.494 INFO [12250]: COREGRADE is starting... -- 10:29:26.494 INFO [12250]: Version from config: 1.0 -- 10:29:26.494 DEBUG [12250]: Connecting to database... -- 10:29:26.494 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:26.494 SQL [12250]: pgsql_db_connect() -- 10:29:26.491 DEBUG [12246]: Database connection successful -- 10:29:26.491 INFO [12246]: _SERVER found -- 10:29:26.491 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 10:29:26.491 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:26.491 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:26.491 INFO [12246]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 10:29:26.491 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:26.503 INFO [12246]: COREGRADE is stopping... -- 10:29:26.503 DEBUG [12246]: Closing database connection -- 10:29:26.503 SQL [12246]: pgsql_close() -- 10:29:26.499 DEBUG [12250]: Database connection successful -- 10:29:26.499 INFO [12250]: _SERVER found -- 10:29:26.499 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 10:29:26.499 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:26.499 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:26.499 INFO [12250]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 10:29:26.499 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:26.510 INFO [12250]: COREGRADE is stopping... -- 10:29:26.510 DEBUG [12250]: Closing database connection -- 10:29:26.510 SQL [12250]: pgsql_close() -- 10:29:26.558 INFO [12347]: COREGRADE is starting... -- 10:29:26.559 INFO [12347]: Version from config: 1.0 -- 10:29:26.559 DEBUG [12347]: Connecting to database... -- 10:29:26.559 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:26.559 SQL [12347]: pgsql_db_connect() -- 10:29:26.563 DEBUG [12347]: Database connection successful -- 10:29:26.563 INFO [12347]: _SERVER found -- 10:29:26.563 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 10:29:26.563 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:26.563 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:26.563 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 10:29:26.563 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:26.574 INFO [12347]: COREGRADE is stopping... -- 10:29:26.574 DEBUG [12347]: Closing database connection -- 10:29:26.574 SQL [12347]: pgsql_close() -- 10:29:26.583 INFO [12246]: COREGRADE is starting... -- 10:29:26.583 INFO [12250]: COREGRADE is starting... -- 10:29:26.584 INFO [12250]: Version from config: 1.0 -- 10:29:26.584 DEBUG [12250]: Connecting to database... -- 10:29:26.584 INFO [12246]: Version from config: 1.0 -- 10:29:26.584 DEBUG [12246]: Connecting to database... -- 10:29:26.584 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:26.584 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:26.584 SQL [12250]: pgsql_db_connect() -- 10:29:26.584 SQL [12246]: pgsql_db_connect() -- 10:29:26.588 DEBUG [12246]: Database connection successful -- 10:29:26.588 INFO [12246]: _SERVER found -- 10:29:26.588 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 10:29:26.588 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:26.588 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:26.588 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 10:29:26.588 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:26.599 INFO [12246]: COREGRADE is stopping... -- 10:29:26.588 DEBUG [12250]: Database connection successful -- 10:29:26.588 INFO [12250]: _SERVER found -- 10:29:26.588 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 10:29:26.588 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:26.588 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:26.588 INFO [12250]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 10:29:26.588 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:26.599 INFO [12250]: COREGRADE is stopping... -- 10:29:26.599 DEBUG [12246]: Closing database connection -- 10:29:26.599 DEBUG [12250]: Closing database connection -- 10:29:26.599 SQL [12246]: pgsql_close() -- 10:29:26.599 SQL [12250]: pgsql_close() -- 10:29:26.655 INFO [12347]: COREGRADE is starting... -- 10:29:26.655 INFO [12347]: Version from config: 1.0 -- 10:29:26.655 DEBUG [12347]: Connecting to database... -- 10:29:26.655 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:26.655 SQL [12347]: pgsql_db_connect() -- 10:29:26.670 INFO [12250]: COREGRADE is starting... -- 10:29:26.670 INFO [12250]: Version from config: 1.0 -- 10:29:26.671 DEBUG [12250]: Connecting to database... -- 10:29:26.671 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:26.671 SQL [12250]: pgsql_db_connect() -- 10:29:26.659 DEBUG [12347]: Database connection successful -- 10:29:26.659 INFO [12347]: _SERVER found -- 10:29:26.659 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 10:29:26.659 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:26.659 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:26.659 INFO [12347]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 10:29:26.659 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:26.671 INFO [12347]: COREGRADE is stopping... -- 10:29:26.671 DEBUG [12347]: Closing database connection -- 10:29:26.671 SQL [12347]: pgsql_close() -- 10:29:26.680 INFO [12246]: COREGRADE is starting... -- 10:29:26.680 INFO [12246]: Version from config: 1.0 -- 10:29:26.680 DEBUG [12246]: Connecting to database... -- 10:29:26.680 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:26.680 SQL [12246]: pgsql_db_connect() -- 10:29:26.675 DEBUG [12250]: Database connection successful -- 10:29:26.675 INFO [12250]: _SERVER found -- 10:29:26.675 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 10:29:26.675 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:26.675 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:26.675 INFO [12250]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 10:29:26.675 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:26.686 INFO [12250]: COREGRADE is stopping... -- 10:29:26.686 DEBUG [12250]: Closing database connection -- 10:29:26.686 SQL [12250]: pgsql_close() -- 10:29:26.684 DEBUG [12246]: Database connection successful -- 10:29:26.684 INFO [12246]: _SERVER found -- 10:29:26.684 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 10:29:26.684 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:26.684 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:26.684 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 10:29:26.684 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:26.696 INFO [12246]: COREGRADE is stopping... -- 10:29:26.696 DEBUG [12246]: Closing database connection -- 10:29:26.696 SQL [12246]: pgsql_close() -- 10:29:26.751 INFO [12347]: COREGRADE is starting... -- 10:29:26.752 INFO [12347]: Version from config: 1.0 -- 10:29:26.752 DEBUG [12347]: Connecting to database... -- 10:29:26.752 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:26.752 SQL [12347]: pgsql_db_connect() -- 10:29:26.755 INFO [12250]: COREGRADE is starting... -- 10:29:26.755 INFO [12250]: Version from config: 1.0 -- 10:29:26.755 DEBUG [12250]: Connecting to database... -- 10:29:26.755 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:26.755 SQL [12250]: pgsql_db_connect() -- 10:29:26.764 INFO [12246]: COREGRADE is starting... -- 10:29:26.765 INFO [12246]: Version from config: 1.0 -- 10:29:26.765 DEBUG [12246]: Connecting to database... -- 10:29:26.765 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:26.765 SQL [12246]: pgsql_db_connect() -- 10:29:26.756 DEBUG [12347]: Database connection successful -- 10:29:26.756 INFO [12347]: _SERVER found -- 10:29:26.756 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 10:29:26.756 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:26.756 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:26.756 INFO [12347]: QUERY_STRING = /assets/js/pages/dashboard.js -- 10:29:26.756 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:26.767 INFO [12347]: COREGRADE is stopping... -- 10:29:26.767 DEBUG [12347]: Closing database connection -- 10:29:26.767 SQL [12347]: pgsql_close() -- 10:29:26.759 DEBUG [12250]: Database connection successful -- 10:29:26.759 INFO [12250]: _SERVER found -- 10:29:26.759 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 10:29:26.759 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:26.759 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:26.759 INFO [12250]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 10:29:26.759 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:26.771 INFO [12250]: COREGRADE is stopping... -- 10:29:26.771 DEBUG [12250]: Closing database connection -- 10:29:26.771 SQL [12250]: pgsql_close() -- 10:29:26.770 DEBUG [12246]: Database connection successful -- 10:29:26.770 INFO [12246]: _SERVER found -- 10:29:26.770 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 10:29:26.770 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:26.770 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:26.770 INFO [12246]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 10:29:26.770 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:26.781 INFO [12246]: COREGRADE is stopping... -- 10:29:26.781 DEBUG [12246]: Closing database connection -- 10:29:26.781 SQL [12246]: pgsql_close() -- 10:29:26.838 INFO [12347]: COREGRADE is starting... -- 10:29:26.838 INFO [12347]: Version from config: 1.0 -- 10:29:26.838 DEBUG [12347]: Connecting to database... -- 10:29:26.838 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:26.838 SQL [12347]: pgsql_db_connect() -- 10:29:26.840 INFO [12250]: COREGRADE is starting... -- 10:29:26.840 INFO [12250]: Version from config: 1.0 -- 10:29:26.840 DEBUG [12250]: Connecting to database... -- 10:29:26.840 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:26.840 SQL [12250]: pgsql_db_connect() -- 10:29:26.850 INFO [12246]: COREGRADE is starting... -- 10:29:26.850 INFO [12246]: Version from config: 1.0 -- 10:29:26.850 DEBUG [12246]: Connecting to database... -- 10:29:26.850 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:26.850 SQL [12246]: pgsql_db_connect() -- 10:29:26.843 DEBUG [12347]: Database connection successful -- 10:29:26.843 INFO [12347]: _SERVER found -- 10:29:26.843 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 10:29:26.843 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:26.843 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:26.843 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 10:29:26.843 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:26.854 INFO [12347]: COREGRADE is stopping... -- 10:29:26.854 DEBUG [12347]: Closing database connection -- 10:29:26.854 SQL [12347]: pgsql_close() -- 10:29:26.843 DEBUG [12250]: Database connection successful -- 10:29:26.844 INFO [12250]: _SERVER found -- 10:29:26.844 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 10:29:26.844 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:26.844 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:26.844 INFO [12250]: QUERY_STRING = /assets/js/pages/picker_date.js -- 10:29:26.844 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:26.855 INFO [12250]: COREGRADE is stopping... -- 10:29:26.855 DEBUG [12250]: Closing database connection -- 10:29:26.855 SQL [12250]: pgsql_close() -- 10:29:26.854 DEBUG [12246]: Database connection successful -- 10:29:26.854 INFO [12246]: _SERVER found -- 10:29:26.854 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 10:29:26.854 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:26.854 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:26.854 INFO [12246]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 10:29:26.854 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:26.866 INFO [12246]: COREGRADE is stopping... -- 10:29:26.866 DEBUG [12246]: Closing database connection -- 10:29:26.866 SQL [12246]: pgsql_close() -- 10:29:26.924 INFO [12250]: COREGRADE is starting... -- 10:29:26.924 INFO [12250]: Version from config: 1.0 -- 10:29:26.924 DEBUG [12250]: Connecting to database... -- 10:29:26.924 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:26.924 SQL [12250]: pgsql_db_connect() -- 10:29:26.926 INFO [12347]: COREGRADE is starting... -- 10:29:26.926 INFO [12347]: Version from config: 1.0 -- 10:29:26.926 DEBUG [12347]: Connecting to database... -- 10:29:26.926 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:26.926 SQL [12347]: pgsql_db_connect() -- 10:29:26.934 INFO [12246]: COREGRADE is starting... -- 10:29:26.934 INFO [12246]: Version from config: 1.0 -- 10:29:26.934 DEBUG [12246]: Connecting to database... -- 10:29:26.934 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:26.934 SQL [12246]: pgsql_db_connect() -- 10:29:26.928 DEBUG [12250]: Database connection successful -- 10:29:26.928 INFO [12250]: _SERVER found -- 10:29:26.928 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 10:29:26.928 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:26.928 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:26.928 INFO [12250]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 10:29:26.928 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:26.940 INFO [12250]: COREGRADE is stopping... -- 10:29:26.940 DEBUG [12250]: Closing database connection -- 10:29:26.940 SQL [12250]: pgsql_close() -- 10:29:26.930 DEBUG [12347]: Database connection successful -- 10:29:26.930 INFO [12347]: _SERVER found -- 10:29:26.930 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 10:29:26.930 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:26.930 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:26.930 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 10:29:26.930 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:26.942 INFO [12347]: COREGRADE is stopping... -- 10:29:26.942 DEBUG [12347]: Closing database connection -- 10:29:26.942 SQL [12347]: pgsql_close() -- 10:29:26.939 DEBUG [12246]: Database connection successful -- 10:29:26.939 INFO [12246]: _SERVER found -- 10:29:26.939 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 10:29:26.939 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:26.939 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:26.939 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 10:29:26.939 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:26.950 INFO [12246]: COREGRADE is stopping... -- 10:29:26.950 DEBUG [12246]: Closing database connection -- 10:29:26.950 SQL [12246]: pgsql_close() -- 10:29:27.009 INFO [12250]: COREGRADE is starting... -- 10:29:27.009 INFO [12250]: Version from config: 1.0 -- 10:29:27.009 DEBUG [12250]: Connecting to database... -- 10:29:27.009 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:27.009 SQL [12250]: pgsql_db_connect() -- 10:29:27.011 INFO [12347]: COREGRADE is starting... -- 10:29:27.012 INFO [12347]: Version from config: 1.0 -- 10:29:27.012 DEBUG [12347]: Connecting to database... -- 10:29:27.012 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:27.012 SQL [12347]: pgsql_db_connect() -- 10:29:27.019 INFO [12246]: COREGRADE is starting... -- 10:29:27.019 INFO [12246]: Version from config: 1.0 -- 10:29:27.019 DEBUG [12246]: Connecting to database... -- 10:29:27.019 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:27.019 SQL [12246]: pgsql_db_connect() -- 10:29:27.013 DEBUG [12250]: Database connection successful -- 10:29:27.013 INFO [12250]: _SERVER found -- 10:29:27.013 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 10:29:27.013 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:27.013 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:27.013 INFO [12250]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 10:29:27.013 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:27.025 INFO [12250]: COREGRADE is stopping... -- 10:29:27.025 DEBUG [12250]: Closing database connection -- 10:29:27.025 SQL [12250]: pgsql_close() -- 10:29:27.015 DEBUG [12347]: Database connection successful -- 10:29:27.015 INFO [12347]: _SERVER found -- 10:29:27.015 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 10:29:27.015 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:27.015 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:27.015 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 10:29:27.015 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:27.027 INFO [12347]: COREGRADE is stopping... -- 10:29:27.027 DEBUG [12347]: Closing database connection -- 10:29:27.027 SQL [12347]: pgsql_close() -- 10:29:27.024 DEBUG [12246]: Database connection successful -- 10:29:27.024 INFO [12246]: _SERVER found -- 10:29:27.024 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 10:29:27.024 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:27.024 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:27.024 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 10:29:27.024 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:27.036 INFO [12246]: COREGRADE is stopping... -- 10:29:27.036 DEBUG [12246]: Closing database connection -- 10:29:27.036 SQL [12246]: pgsql_close() -- 10:29:27.094 INFO [12250]: COREGRADE is starting... -- 10:29:27.095 INFO [12250]: Version from config: 1.0 -- 10:29:27.095 DEBUG [12250]: Connecting to database... -- 10:29:27.095 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:27.095 SQL [12250]: pgsql_db_connect() -- 10:29:27.097 INFO [12347]: COREGRADE is starting... -- 10:29:27.097 INFO [12347]: Version from config: 1.0 -- 10:29:27.097 DEBUG [12347]: Connecting to database... -- 10:29:27.097 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:27.098 SQL [12347]: pgsql_db_connect() -- 10:29:27.099 DEBUG [12250]: Database connection successful -- 10:29:27.099 INFO [12250]: _SERVER found -- 10:29:27.099 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 10:29:27.099 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:27.099 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:27.099 INFO [12250]: QUERY_STRING = /assets/customjs/general.js -- 10:29:27.099 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:27.110 INFO [12250]: COREGRADE is stopping... -- 10:29:27.110 DEBUG [12250]: Closing database connection -- 10:29:27.110 SQL [12250]: pgsql_close() -- 10:29:27.101 DEBUG [12347]: Database connection successful -- 10:29:27.101 INFO [12347]: _SERVER found -- 10:29:27.101 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 10:29:27.101 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:27.101 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:27.101 INFO [12347]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 10:29:27.101 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:27.113 INFO [12347]: COREGRADE is stopping... -- 10:29:27.113 DEBUG [12347]: Closing database connection -- 10:29:27.113 SQL [12347]: pgsql_close() -- 10:29:27.183 INFO [12347]: COREGRADE is starting... -- 10:29:27.183 INFO [12347]: Version from config: 1.0 -- 10:29:27.183 DEBUG [12347]: Connecting to database... -- 10:29:27.183 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:27.183 SQL [12347]: pgsql_db_connect() -- 10:29:27.187 DEBUG [12347]: Database connection successful -- 10:29:27.187 INFO [12347]: _SERVER found -- 10:29:27.187 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 10:29:27.187 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:27.187 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:27.187 INFO [12347]: QUERY_STRING = /assets/js/pages/dashboard.js -- 10:29:27.187 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:27.199 INFO [12347]: COREGRADE is stopping... -- 10:29:27.199 DEBUG [12347]: Closing database connection -- 10:29:27.199 SQL [12347]: pgsql_close() -- 10:29:27.269 INFO [12347]: COREGRADE is starting... -- 10:29:27.270 INFO [12347]: Version from config: 1.0 -- 10:29:27.270 DEBUG [12347]: Connecting to database... -- 10:29:27.270 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:27.270 SQL [12347]: pgsql_db_connect() -- 10:29:27.274 DEBUG [12347]: Database connection successful -- 10:29:27.274 INFO [12347]: _SERVER found -- 10:29:27.274 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 10:29:27.274 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:27.274 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:27.274 INFO [12347]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 10:29:27.274 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:27.285 INFO [12347]: COREGRADE is stopping... -- 10:29:27.285 DEBUG [12347]: Closing database connection -- 10:29:27.285 SQL [12347]: pgsql_close() -- 10:29:27.355 INFO [12347]: COREGRADE is starting... -- 10:29:27.355 INFO [12347]: Version from config: 1.0 -- 10:29:27.355 DEBUG [12347]: Connecting to database... -- 10:29:27.355 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:27.355 SQL [12347]: pgsql_db_connect() -- 10:29:27.359 DEBUG [12347]: Database connection successful -- 10:29:27.359 INFO [12347]: _SERVER found -- 10:29:27.359 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 10:29:27.359 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:27.359 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:27.359 INFO [12347]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 10:29:27.359 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:27.371 INFO [12347]: COREGRADE is stopping... -- 10:29:27.371 DEBUG [12347]: Closing database connection -- 10:29:27.371 SQL [12347]: pgsql_close() -- 10:29:27.441 INFO [12347]: COREGRADE is starting... -- 10:29:27.441 INFO [12347]: Version from config: 1.0 -- 10:29:27.441 DEBUG [12347]: Connecting to database... -- 10:29:27.441 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:27.441 SQL [12347]: pgsql_db_connect() -- 10:29:27.445 DEBUG [12347]: Database connection successful -- 10:29:27.445 INFO [12347]: _SERVER found -- 10:29:27.445 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 10:29:27.445 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:27.445 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:27.445 INFO [12347]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 10:29:27.445 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:27.457 INFO [12347]: COREGRADE is stopping... -- 10:29:27.457 DEBUG [12347]: Closing database connection -- 10:29:27.457 SQL [12347]: pgsql_close() -- 10:29:27.527 INFO [12347]: COREGRADE is starting... -- 10:29:27.527 INFO [12347]: Version from config: 1.0 -- 10:29:27.527 DEBUG [12347]: Connecting to database... -- 10:29:27.527 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:27.527 SQL [12347]: pgsql_db_connect() -- 10:29:27.531 DEBUG [12347]: Database connection successful -- 10:29:27.531 INFO [12347]: _SERVER found -- 10:29:27.531 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 10:29:27.531 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:27.531 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:27.531 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 10:29:27.531 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:27.543 INFO [12347]: COREGRADE is stopping... -- 10:29:27.543 DEBUG [12347]: Closing database connection -- 10:29:27.543 SQL [12347]: pgsql_close() -- 10:29:27.613 INFO [12347]: COREGRADE is starting... -- 10:29:27.613 INFO [12347]: Version from config: 1.0 -- 10:29:27.613 DEBUG [12347]: Connecting to database... -- 10:29:27.613 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:27.613 SQL [12347]: pgsql_db_connect() -- 10:29:27.617 DEBUG [12347]: Database connection successful -- 10:29:27.617 INFO [12347]: _SERVER found -- 10:29:27.617 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 10:29:27.617 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:27.617 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:27.617 INFO [12347]: QUERY_STRING = /assets/js/pages/picker_date.js -- 10:29:27.617 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:27.629 INFO [12347]: COREGRADE is stopping... -- 10:29:27.629 DEBUG [12347]: Closing database connection -- 10:29:27.629 SQL [12347]: pgsql_close() -- 10:29:27.699 INFO [12347]: COREGRADE is starting... -- 10:29:27.699 INFO [12347]: Version from config: 1.0 -- 10:29:27.699 DEBUG [12347]: Connecting to database... -- 10:29:27.699 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:27.699 SQL [12347]: pgsql_db_connect() -- 10:29:27.703 DEBUG [12347]: Database connection successful -- 10:29:27.703 INFO [12347]: _SERVER found -- 10:29:27.703 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 10:29:27.703 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:27.703 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:27.703 INFO [12347]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 10:29:27.703 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:27.714 INFO [12347]: COREGRADE is stopping... -- 10:29:27.714 DEBUG [12347]: Closing database connection -- 10:29:27.714 SQL [12347]: pgsql_close() -- 10:29:27.785 INFO [12347]: COREGRADE is starting... -- 10:29:27.785 INFO [12347]: Version from config: 1.0 -- 10:29:27.785 DEBUG [12347]: Connecting to database... -- 10:29:27.785 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:27.785 SQL [12347]: pgsql_db_connect() -- 10:29:27.789 DEBUG [12347]: Database connection successful -- 10:29:27.789 INFO [12347]: _SERVER found -- 10:29:27.789 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 10:29:27.789 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:27.789 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:27.789 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 10:29:27.789 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:27.801 INFO [12347]: COREGRADE is stopping... -- 10:29:27.801 DEBUG [12347]: Closing database connection -- 10:29:27.801 SQL [12347]: pgsql_close() -- 10:29:27.871 INFO [12347]: COREGRADE is starting... -- 10:29:27.871 INFO [12347]: Version from config: 1.0 -- 10:29:27.871 DEBUG [12347]: Connecting to database... -- 10:29:27.871 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:27.871 SQL [12347]: pgsql_db_connect() -- 10:29:27.875 DEBUG [12347]: Database connection successful -- 10:29:27.875 INFO [12347]: _SERVER found -- 10:29:27.875 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 10:29:27.875 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:27.875 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:27.875 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 10:29:27.875 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:27.887 INFO [12347]: COREGRADE is stopping... -- 10:29:27.887 DEBUG [12347]: Closing database connection -- 10:29:27.887 SQL [12347]: pgsql_close() -- 10:29:27.957 INFO [12347]: COREGRADE is starting... -- 10:29:27.957 INFO [12347]: Version from config: 1.0 -- 10:29:27.957 DEBUG [12347]: Connecting to database... -- 10:29:27.957 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:27.957 SQL [12347]: pgsql_db_connect() -- 10:29:27.961 DEBUG [12347]: Database connection successful -- 10:29:27.961 INFO [12347]: _SERVER found -- 10:29:27.961 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 10:29:27.961 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:27.961 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:27.961 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 10:29:27.961 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:27.973 INFO [12347]: COREGRADE is stopping... -- 10:29:27.973 DEBUG [12347]: Closing database connection -- 10:29:27.973 SQL [12347]: pgsql_close() -- 10:29:28.043 INFO [12347]: COREGRADE is starting... -- 10:29:28.043 INFO [12347]: Version from config: 1.0 -- 10:29:28.043 DEBUG [12347]: Connecting to database... -- 10:29:28.043 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:28.043 SQL [12347]: pgsql_db_connect() -- 10:29:28.047 DEBUG [12347]: Database connection successful -- 10:29:28.047 INFO [12347]: _SERVER found -- 10:29:28.047 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 10:29:28.047 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:28.047 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:28.047 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 10:29:28.047 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:28.059 INFO [12347]: COREGRADE is stopping... -- 10:29:28.059 DEBUG [12347]: Closing database connection -- 10:29:28.059 SQL [12347]: pgsql_close() -- 10:29:28.139 INFO [12347]: COREGRADE is starting... -- 10:29:28.140 INFO [12347]: Version from config: 1.0 -- 10:29:28.140 DEBUG [12347]: Connecting to database... -- 10:29:28.140 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:28.140 SQL [12347]: pgsql_db_connect() -- 10:29:28.144 DEBUG [12347]: Database connection successful -- 10:29:28.144 INFO [12347]: _SERVER found -- 10:29:28.144 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 10:29:28.144 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:28.144 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:28.144 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 10:29:28.144 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:28.155 INFO [12347]: COREGRADE is stopping... -- 10:29:28.155 DEBUG [12347]: Closing database connection -- 10:29:28.155 SQL [12347]: pgsql_close() -- 10:29:28.226 INFO [12347]: COREGRADE is starting... -- 10:29:28.226 INFO [12347]: Version from config: 1.0 -- 10:29:28.226 DEBUG [12347]: Connecting to database... -- 10:29:28.226 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:28.226 SQL [12347]: pgsql_db_connect() -- 10:29:28.230 DEBUG [12347]: Database connection successful -- 10:29:28.230 INFO [12347]: _SERVER found -- 10:29:28.230 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 10:29:28.230 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:28.230 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:28.230 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 10:29:28.230 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:28.242 INFO [12347]: COREGRADE is stopping... -- 10:29:28.242 DEBUG [12347]: Closing database connection -- 10:29:28.242 SQL [12347]: pgsql_close() -- 10:29:28.314 INFO [12347]: COREGRADE is starting... -- 10:29:28.314 INFO [12347]: Version from config: 1.0 -- 10:29:28.314 DEBUG [12347]: Connecting to database... -- 10:29:28.314 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:28.314 SQL [12347]: pgsql_db_connect() -- 10:29:28.318 DEBUG [12347]: Database connection successful -- 10:29:28.318 INFO [12347]: _SERVER found -- 10:29:28.318 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 10:29:28.318 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:29:28.318 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:29:28.318 INFO [12347]: QUERY_STRING = /assets/customjs/general.js -- 10:29:28.318 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:29:28.329 INFO [12347]: COREGRADE is stopping... -- 10:29:28.329 DEBUG [12347]: Closing database connection -- 10:29:28.329 SQL [12347]: pgsql_close() -- 10:49:28.562 INFO [12334]: COREGRADE is starting... -- 10:49:28.562 INFO [12334]: Version from config: 1.0 -- 10:49:28.562 DEBUG [12334]: Connecting to database... -- 10:49:28.562 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:28.562 SQL [12334]: pgsql_db_connect() -- 10:49:28.567 DEBUG [12334]: Database connection successful -- 10:49:28.567 INFO [12334]: _SERVER found -- 10:49:28.567 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 10:49:28.567 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:28.567 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5pcl89mfbsrtetblnglssngb2ghqjbf5 -- 10:49:28.567 INFO [12334]: QUERY_STRING = /logout -- 10:49:28.567 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:28.602 INFO [12334]: COREGRADE is stopping... -- 10:49:28.602 DEBUG [12334]: Closing database connection -- 10:49:28.602 SQL [12334]: pgsql_close() -- 10:49:28.680 INFO [12334]: COREGRADE is starting... -- 10:49:28.680 INFO [12334]: Version from config: 1.0 -- 10:49:28.680 DEBUG [12334]: Connecting to database... -- 10:49:28.680 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:28.680 SQL [12334]: pgsql_db_connect() -- 10:49:28.685 DEBUG [12334]: Database connection successful -- 10:49:28.685 INFO [12334]: _SERVER found -- 10:49:28.685 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 10:49:28.685 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:28.685 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:28.685 INFO [12334]: QUERY_STRING = /start -- 10:49:28.685 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:28.719 INFO [12334]: COREGRADE is stopping... -- 10:49:28.719 DEBUG [12334]: Closing database connection -- 10:49:28.719 SQL [12334]: pgsql_close() -- 10:49:28.846 INFO [12249]: COREGRADE is starting... -- 10:49:28.846 INFO [12249]: Version from config: 1.0 -- 10:49:28.846 DEBUG [12249]: Connecting to database... -- 10:49:28.846 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:28.846 SQL [12249]: pgsql_db_connect() -- 10:49:28.850 DEBUG [12249]: Database connection successful -- 10:49:28.850 INFO [12249]: _SERVER found -- 10:49:28.850 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 10:49:28.850 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:28.850 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:28.850 INFO [12249]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 10:49:28.850 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:28.864 INFO [12249]: COREGRADE is stopping... -- 10:49:28.864 DEBUG [12249]: Closing database connection -- 10:49:28.864 SQL [12249]: pgsql_close() -- 10:49:28.866 INFO [12334]: COREGRADE is starting... -- 10:49:28.866 INFO [12334]: Version from config: 1.0 -- 10:49:28.866 DEBUG [12334]: Connecting to database... -- 10:49:28.866 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:28.866 SQL [12334]: pgsql_db_connect() -- 10:49:28.870 DEBUG [12334]: Database connection successful -- 10:49:28.870 INFO [12334]: _SERVER found -- 10:49:28.870 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 10:49:28.870 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:28.870 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:28.870 INFO [12334]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 10:49:28.870 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:28.882 INFO [12334]: COREGRADE is stopping... -- 10:49:28.882 DEBUG [12334]: Closing database connection -- 10:49:28.882 SQL [12334]: pgsql_close() -- 10:49:28.917 INFO [12334]: COREGRADE is starting... -- 10:49:28.918 INFO [12334]: Version from config: 1.0 -- 10:49:28.918 DEBUG [12334]: Connecting to database... -- 10:49:28.918 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:28.918 SQL [12334]: pgsql_db_connect() -- 10:49:28.922 DEBUG [12334]: Database connection successful -- 10:49:28.922 INFO [12334]: _SERVER found -- 10:49:28.922 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 10:49:28.922 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:28.922 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:28.922 INFO [12334]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 10:49:28.922 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:28.933 INFO [12334]: COREGRADE is stopping... -- 10:49:28.934 DEBUG [12334]: Closing database connection -- 10:49:28.934 SQL [12334]: pgsql_close() -- 10:49:28.944 INFO [12249]: COREGRADE is starting... -- 10:49:28.944 INFO [12249]: Version from config: 1.0 -- 10:49:28.944 DEBUG [12249]: Connecting to database... -- 10:49:28.944 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:28.944 SQL [12249]: pgsql_db_connect() -- 10:49:28.947 INFO [12334]: COREGRADE is starting... -- 10:49:28.947 INFO [12334]: Version from config: 1.0 -- 10:49:28.947 DEBUG [12334]: Connecting to database... -- 10:49:28.947 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:28.947 SQL [12334]: pgsql_db_connect() -- 10:49:28.948 DEBUG [12249]: Database connection successful -- 10:49:28.948 INFO [12249]: _SERVER found -- 10:49:28.948 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 10:49:28.948 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:28.948 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:28.948 INFO [12249]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 10:49:28.948 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:28.960 INFO [12249]: COREGRADE is stopping... -- 10:49:28.960 DEBUG [12249]: Closing database connection -- 10:49:28.960 SQL [12249]: pgsql_close() -- 10:49:28.951 DEBUG [12334]: Database connection successful -- 10:49:28.951 INFO [12334]: _SERVER found -- 10:49:28.951 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 10:49:28.951 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:28.951 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:28.951 INFO [12334]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 10:49:28.951 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:28.963 INFO [12334]: COREGRADE is stopping... -- 10:49:28.963 DEBUG [12334]: Closing database connection -- 10:49:28.963 SQL [12334]: pgsql_close() -- 10:49:29.014 INFO [12334]: COREGRADE is starting... -- 10:49:29.015 INFO [12334]: Version from config: 1.0 -- 10:49:29.015 DEBUG [12334]: Connecting to database... -- 10:49:29.015 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:29.015 SQL [12334]: pgsql_db_connect() -- 10:49:29.029 INFO [12248]: COREGRADE is starting... -- 10:49:29.030 INFO [12248]: Version from config: 1.0 -- 10:49:29.030 DEBUG [12248]: Connecting to database... -- 10:49:29.030 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:29.030 SQL [12248]: pgsql_db_connect() -- 10:49:29.019 DEBUG [12334]: Database connection successful -- 10:49:29.019 INFO [12334]: _SERVER found -- 10:49:29.019 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 10:49:29.019 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:29.019 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:29.019 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 10:49:29.019 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:29.030 INFO [12334]: COREGRADE is stopping... -- 10:49:29.031 DEBUG [12334]: Closing database connection -- 10:49:29.031 SQL [12334]: pgsql_close() -- 10:49:29.040 INFO [12249]: COREGRADE is starting... -- 10:49:29.040 INFO [12249]: Version from config: 1.0 -- 10:49:29.040 DEBUG [12249]: Connecting to database... -- 10:49:29.040 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:29.040 SQL [12249]: pgsql_db_connect() -- 10:49:29.034 DEBUG [12248]: Database connection successful -- 10:49:29.034 INFO [12248]: _SERVER found -- 10:49:29.034 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 10:49:29.034 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:29.034 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:29.034 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 10:49:29.034 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:29.047 INFO [12248]: COREGRADE is stopping... -- 10:49:29.047 DEBUG [12248]: Closing database connection -- 10:49:29.047 SQL [12248]: pgsql_close() -- 10:49:29.044 DEBUG [12249]: Database connection successful -- 10:49:29.044 INFO [12249]: _SERVER found -- 10:49:29.044 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 10:49:29.044 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:29.044 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:29.044 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 10:49:29.044 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:29.056 INFO [12249]: COREGRADE is stopping... -- 10:49:29.056 DEBUG [12249]: Closing database connection -- 10:49:29.056 SQL [12249]: pgsql_close() -- 10:49:29.111 INFO [12248]: COREGRADE is starting... -- 10:49:29.111 INFO [12248]: Version from config: 1.0 -- 10:49:29.111 DEBUG [12248]: Connecting to database... -- 10:49:29.111 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:29.111 SQL [12248]: pgsql_db_connect() -- 10:49:29.113 INFO [12334]: COREGRADE is starting... -- 10:49:29.113 INFO [12334]: Version from config: 1.0 -- 10:49:29.113 DEBUG [12334]: Connecting to database... -- 10:49:29.113 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:29.113 SQL [12334]: pgsql_db_connect() -- 10:49:29.115 DEBUG [12248]: Database connection successful -- 10:49:29.115 INFO [12248]: _SERVER found -- 10:49:29.115 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 10:49:29.115 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:29.115 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:29.115 INFO [12248]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 10:49:29.115 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:29.127 INFO [12248]: COREGRADE is stopping... -- 10:49:29.127 DEBUG [12248]: Closing database connection -- 10:49:29.127 SQL [12248]: pgsql_close() -- 10:49:29.117 DEBUG [12334]: Database connection successful -- 10:49:29.117 INFO [12334]: _SERVER found -- 10:49:29.117 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 10:49:29.117 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:29.117 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:29.117 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 10:49:29.117 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:29.128 INFO [12334]: COREGRADE is stopping... -- 10:49:29.128 DEBUG [12334]: Closing database connection -- 10:49:29.128 SQL [12334]: pgsql_close() -- 10:49:29.137 INFO [12249]: COREGRADE is starting... -- 10:49:29.137 INFO [12249]: Version from config: 1.0 -- 10:49:29.137 DEBUG [12249]: Connecting to database... -- 10:49:29.137 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:29.137 SQL [12249]: pgsql_db_connect() -- 10:49:29.141 DEBUG [12249]: Database connection successful -- 10:49:29.141 INFO [12249]: _SERVER found -- 10:49:29.141 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 10:49:29.141 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:29.141 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:29.141 INFO [12249]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 10:49:29.141 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:29.153 INFO [12249]: COREGRADE is stopping... -- 10:49:29.153 DEBUG [12249]: Closing database connection -- 10:49:29.153 SQL [12249]: pgsql_close() -- 10:49:29.199 INFO [12334]: COREGRADE is starting... -- 10:49:29.200 INFO [12334]: Version from config: 1.0 -- 10:49:29.200 DEBUG [12334]: Connecting to database... -- 10:49:29.200 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:29.200 SQL [12334]: pgsql_db_connect() -- 10:49:29.208 INFO [12248]: COREGRADE is starting... -- 10:49:29.208 INFO [12248]: Version from config: 1.0 -- 10:49:29.208 DEBUG [12248]: Connecting to database... -- 10:49:29.209 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:29.209 SQL [12248]: pgsql_db_connect() -- 10:49:29.204 DEBUG [12334]: Database connection successful -- 10:49:29.204 INFO [12334]: _SERVER found -- 10:49:29.204 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 10:49:29.204 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:29.204 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:29.204 INFO [12334]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 10:49:29.204 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:29.216 INFO [12334]: COREGRADE is stopping... -- 10:49:29.216 DEBUG [12334]: Closing database connection -- 10:49:29.216 SQL [12334]: pgsql_close() -- 10:49:29.222 INFO [12249]: COREGRADE is starting... -- 10:49:29.222 INFO [12249]: Version from config: 1.0 -- 10:49:29.222 DEBUG [12249]: Connecting to database... -- 10:49:29.222 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:29.223 SQL [12249]: pgsql_db_connect() -- 10:49:29.213 DEBUG [12248]: Database connection successful -- 10:49:29.213 INFO [12248]: _SERVER found -- 10:49:29.213 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 10:49:29.213 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:29.213 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:29.213 INFO [12248]: QUERY_STRING = /assets/js/pages/dashboard.js -- 10:49:29.213 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:29.224 INFO [12248]: COREGRADE is stopping... -- 10:49:29.224 DEBUG [12248]: Closing database connection -- 10:49:29.225 SQL [12248]: pgsql_close() -- 10:49:29.227 DEBUG [12249]: Database connection successful -- 10:49:29.227 INFO [12249]: _SERVER found -- 10:49:29.227 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 10:49:29.227 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:29.227 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:29.227 INFO [12249]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 10:49:29.227 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:29.238 INFO [12249]: COREGRADE is stopping... -- 10:49:29.238 DEBUG [12249]: Closing database connection -- 10:49:29.238 SQL [12249]: pgsql_close() -- 10:49:29.281 INFO [12248]: COREGRADE is starting... -- 10:49:29.281 INFO [12248]: Version from config: 1.0 -- 10:49:29.281 DEBUG [12248]: Connecting to database... -- 10:49:29.282 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:29.282 SQL [12248]: pgsql_db_connect() -- 10:49:29.295 INFO [12334]: COREGRADE is starting... -- 10:49:29.295 INFO [12334]: Version from config: 1.0 -- 10:49:29.295 DEBUG [12334]: Connecting to database... -- 10:49:29.295 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:29.295 SQL [12334]: pgsql_db_connect() -- 10:49:29.286 DEBUG [12248]: Database connection successful -- 10:49:29.286 INFO [12248]: _SERVER found -- 10:49:29.286 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 10:49:29.286 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:29.286 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:29.286 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 10:49:29.286 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:29.297 INFO [12248]: COREGRADE is stopping... -- 10:49:29.297 DEBUG [12248]: Closing database connection -- 10:49:29.297 SQL [12248]: pgsql_close() -- 10:49:29.307 INFO [12249]: COREGRADE is starting... -- 10:49:29.307 INFO [12249]: Version from config: 1.0 -- 10:49:29.307 DEBUG [12249]: Connecting to database... -- 10:49:29.307 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:29.307 SQL [12249]: pgsql_db_connect() -- 10:49:29.300 DEBUG [12334]: Database connection successful -- 10:49:29.300 INFO [12334]: _SERVER found -- 10:49:29.300 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 10:49:29.300 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:29.300 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:29.300 INFO [12334]: QUERY_STRING = /assets/js/pages/picker_date.js -- 10:49:29.300 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:29.311 INFO [12334]: COREGRADE is stopping... -- 10:49:29.311 DEBUG [12334]: Closing database connection -- 10:49:29.311 SQL [12334]: pgsql_close() -- 10:49:29.312 DEBUG [12249]: Database connection successful -- 10:49:29.312 INFO [12249]: _SERVER found -- 10:49:29.312 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 10:49:29.312 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:29.312 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:29.312 INFO [12249]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 10:49:29.312 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:29.324 INFO [12249]: COREGRADE is stopping... -- 10:49:29.324 DEBUG [12249]: Closing database connection -- 10:49:29.324 SQL [12249]: pgsql_close() -- 10:49:29.363 INFO [12334]: COREGRADE is starting... -- 10:49:29.363 INFO [12334]: Version from config: 1.0 -- 10:49:29.363 DEBUG [12334]: Connecting to database... -- 10:49:29.363 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:29.363 SQL [12334]: pgsql_db_connect() -- 10:49:29.367 DEBUG [12334]: Database connection successful -- 10:49:29.367 INFO [12334]: _SERVER found -- 10:49:29.367 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 10:49:29.367 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:29.367 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:29.367 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 10:49:29.367 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:29.379 INFO [12334]: COREGRADE is stopping... -- 10:49:29.379 DEBUG [12334]: Closing database connection -- 10:49:29.379 SQL [12334]: pgsql_close() -- 10:49:29.381 INFO [12248]: COREGRADE is starting... -- 10:49:29.381 INFO [12248]: Version from config: 1.0 -- 10:49:29.381 DEBUG [12248]: Connecting to database... -- 10:49:29.381 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:29.381 SQL [12248]: pgsql_db_connect() -- 10:49:29.392 INFO [12249]: COREGRADE is starting... -- 10:49:29.392 INFO [12249]: Version from config: 1.0 -- 10:49:29.392 DEBUG [12249]: Connecting to database... -- 10:49:29.392 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:29.392 SQL [12249]: pgsql_db_connect() -- 10:49:29.385 DEBUG [12248]: Database connection successful -- 10:49:29.385 INFO [12248]: _SERVER found -- 10:49:29.385 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 10:49:29.385 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:29.385 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:29.385 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 10:49:29.385 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:29.397 INFO [12248]: COREGRADE is stopping... -- 10:49:29.397 DEBUG [12248]: Closing database connection -- 10:49:29.397 SQL [12248]: pgsql_close() -- 10:49:29.396 DEBUG [12249]: Database connection successful -- 10:49:29.396 INFO [12249]: _SERVER found -- 10:49:29.396 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 10:49:29.396 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:29.396 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:29.396 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 10:49:29.396 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:29.408 INFO [12249]: COREGRADE is stopping... -- 10:49:29.408 DEBUG [12249]: Closing database connection -- 10:49:29.408 SQL [12249]: pgsql_close() -- 10:49:29.444 INFO [12248]: COREGRADE is starting... -- 10:49:29.445 INFO [12248]: Version from config: 1.0 -- 10:49:29.445 DEBUG [12248]: Connecting to database... -- 10:49:29.445 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:29.445 SQL [12248]: pgsql_db_connect() -- 10:49:29.449 DEBUG [12248]: Database connection successful -- 10:49:29.449 INFO [12248]: _SERVER found -- 10:49:29.449 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 10:49:29.449 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:29.449 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:29.449 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 10:49:29.449 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:29.460 INFO [12248]: COREGRADE is stopping... -- 10:49:29.460 DEBUG [12248]: Closing database connection -- 10:49:29.460 SQL [12248]: pgsql_close() -- 10:49:29.466 INFO [12248]: COREGRADE is starting... -- 10:49:29.466 INFO [12248]: Version from config: 1.0 -- 10:49:29.466 DEBUG [12248]: Connecting to database... -- 10:49:29.467 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:29.467 SQL [12248]: pgsql_db_connect() -- 10:49:29.476 INFO [12249]: COREGRADE is starting... -- 10:49:29.477 INFO [12249]: Version from config: 1.0 -- 10:49:29.477 DEBUG [12249]: Connecting to database... -- 10:49:29.477 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:29.477 SQL [12249]: pgsql_db_connect() -- 10:49:29.471 DEBUG [12248]: Database connection successful -- 10:49:29.471 INFO [12248]: _SERVER found -- 10:49:29.471 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 10:49:29.471 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:29.471 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:29.471 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 10:49:29.471 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:29.482 INFO [12248]: COREGRADE is stopping... -- 10:49:29.482 DEBUG [12248]: Closing database connection -- 10:49:29.482 SQL [12248]: pgsql_close() -- 10:49:29.481 DEBUG [12249]: Database connection successful -- 10:49:29.481 INFO [12249]: _SERVER found -- 10:49:29.481 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 10:49:29.481 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:29.481 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:29.481 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 10:49:29.481 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:29.492 INFO [12249]: COREGRADE is stopping... -- 10:49:29.492 DEBUG [12249]: Closing database connection -- 10:49:29.492 SQL [12249]: pgsql_close() -- 10:49:29.526 INFO [12248]: COREGRADE is starting... -- 10:49:29.526 INFO [12248]: Version from config: 1.0 -- 10:49:29.526 DEBUG [12248]: Connecting to database... -- 10:49:29.526 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:29.526 SQL [12248]: pgsql_db_connect() -- 10:49:29.530 DEBUG [12248]: Database connection successful -- 10:49:29.530 INFO [12248]: _SERVER found -- 10:49:29.530 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 10:49:29.530 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:29.530 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:29.530 INFO [12248]: QUERY_STRING = /assets/customjs/general.js -- 10:49:29.530 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:29.542 INFO [12248]: COREGRADE is stopping... -- 10:49:29.542 DEBUG [12248]: Closing database connection -- 10:49:29.542 SQL [12248]: pgsql_close() -- 10:49:29.551 INFO [12248]: COREGRADE is starting... -- 10:49:29.552 INFO [12248]: Version from config: 1.0 -- 10:49:29.552 DEBUG [12248]: Connecting to database... -- 10:49:29.552 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:29.552 SQL [12248]: pgsql_db_connect() -- 10:49:29.556 DEBUG [12248]: Database connection successful -- 10:49:29.556 INFO [12248]: _SERVER found -- 10:49:29.556 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 10:49:29.556 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:29.556 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:29.556 INFO [12248]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 10:49:29.556 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:29.567 INFO [12248]: COREGRADE is stopping... -- 10:49:29.567 DEBUG [12248]: Closing database connection -- 10:49:29.567 SQL [12248]: pgsql_close() -- 10:49:29.637 INFO [12248]: COREGRADE is starting... -- 10:49:29.637 INFO [12248]: Version from config: 1.0 -- 10:49:29.637 DEBUG [12248]: Connecting to database... -- 10:49:29.637 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:29.637 SQL [12248]: pgsql_db_connect() -- 10:49:29.641 DEBUG [12248]: Database connection successful -- 10:49:29.641 INFO [12248]: _SERVER found -- 10:49:29.641 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 10:49:29.641 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:29.641 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:29.641 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 10:49:29.641 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:29.653 INFO [12248]: COREGRADE is stopping... -- 10:49:29.653 DEBUG [12248]: Closing database connection -- 10:49:29.653 SQL [12248]: pgsql_close() -- 10:49:29.722 INFO [12248]: COREGRADE is starting... -- 10:49:29.722 INFO [12248]: Version from config: 1.0 -- 10:49:29.722 DEBUG [12248]: Connecting to database... -- 10:49:29.722 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:29.722 SQL [12248]: pgsql_db_connect() -- 10:49:29.727 DEBUG [12248]: Database connection successful -- 10:49:29.727 INFO [12248]: _SERVER found -- 10:49:29.727 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 10:49:29.727 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:29.727 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:29.727 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 10:49:29.727 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:29.738 INFO [12248]: COREGRADE is stopping... -- 10:49:29.738 DEBUG [12248]: Closing database connection -- 10:49:29.738 SQL [12248]: pgsql_close() -- 10:49:29.807 INFO [12248]: COREGRADE is starting... -- 10:49:29.808 INFO [12248]: Version from config: 1.0 -- 10:49:29.808 DEBUG [12248]: Connecting to database... -- 10:49:29.808 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:29.808 SQL [12248]: pgsql_db_connect() -- 10:49:29.812 DEBUG [12248]: Database connection successful -- 10:49:29.812 INFO [12248]: _SERVER found -- 10:49:29.812 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 10:49:29.812 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:29.812 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:29.812 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 10:49:29.812 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:29.823 INFO [12248]: COREGRADE is stopping... -- 10:49:29.824 DEBUG [12248]: Closing database connection -- 10:49:29.824 SQL [12248]: pgsql_close() -- 10:49:29.893 INFO [12248]: COREGRADE is starting... -- 10:49:29.893 INFO [12248]: Version from config: 1.0 -- 10:49:29.893 DEBUG [12248]: Connecting to database... -- 10:49:29.893 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:29.893 SQL [12248]: pgsql_db_connect() -- 10:49:29.897 DEBUG [12248]: Database connection successful -- 10:49:29.897 INFO [12248]: _SERVER found -- 10:49:29.897 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 10:49:29.897 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:29.897 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:29.897 INFO [12248]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 10:49:29.897 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:29.909 INFO [12248]: COREGRADE is stopping... -- 10:49:29.909 DEBUG [12248]: Closing database connection -- 10:49:29.909 SQL [12248]: pgsql_close() -- 10:49:29.978 INFO [12248]: COREGRADE is starting... -- 10:49:29.978 INFO [12248]: Version from config: 1.0 -- 10:49:29.978 DEBUG [12248]: Connecting to database... -- 10:49:29.978 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:29.978 SQL [12248]: pgsql_db_connect() -- 10:49:29.983 DEBUG [12248]: Database connection successful -- 10:49:29.983 INFO [12248]: _SERVER found -- 10:49:29.983 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 10:49:29.983 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:29.983 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:29.983 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 10:49:29.983 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:29.994 INFO [12248]: COREGRADE is stopping... -- 10:49:29.994 DEBUG [12248]: Closing database connection -- 10:49:29.994 SQL [12248]: pgsql_close() -- 10:49:30.063 INFO [12248]: COREGRADE is starting... -- 10:49:30.064 INFO [12248]: Version from config: 1.0 -- 10:49:30.064 DEBUG [12248]: Connecting to database... -- 10:49:30.064 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:30.064 SQL [12248]: pgsql_db_connect() -- 10:49:30.068 DEBUG [12248]: Database connection successful -- 10:49:30.068 INFO [12248]: _SERVER found -- 10:49:30.068 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 10:49:30.068 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:30.068 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:30.068 INFO [12248]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 10:49:30.068 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:30.080 INFO [12248]: COREGRADE is stopping... -- 10:49:30.080 DEBUG [12248]: Closing database connection -- 10:49:30.080 SQL [12248]: pgsql_close() -- 10:49:30.149 INFO [12248]: COREGRADE is starting... -- 10:49:30.149 INFO [12248]: Version from config: 1.0 -- 10:49:30.149 DEBUG [12248]: Connecting to database... -- 10:49:30.149 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:30.149 SQL [12248]: pgsql_db_connect() -- 10:49:30.154 DEBUG [12248]: Database connection successful -- 10:49:30.154 INFO [12248]: _SERVER found -- 10:49:30.154 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 10:49:30.154 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:30.154 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:30.154 INFO [12248]: QUERY_STRING = /assets/js/pages/dashboard.js -- 10:49:30.154 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:30.165 INFO [12248]: COREGRADE is stopping... -- 10:49:30.165 DEBUG [12248]: Closing database connection -- 10:49:30.165 SQL [12248]: pgsql_close() -- 10:49:30.236 INFO [12248]: COREGRADE is starting... -- 10:49:30.236 INFO [12248]: Version from config: 1.0 -- 10:49:30.236 DEBUG [12248]: Connecting to database... -- 10:49:30.236 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:30.236 SQL [12248]: pgsql_db_connect() -- 10:49:30.240 DEBUG [12248]: Database connection successful -- 10:49:30.240 INFO [12248]: _SERVER found -- 10:49:30.240 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 10:49:30.240 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:30.240 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:30.240 INFO [12248]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 10:49:30.240 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:30.252 INFO [12248]: COREGRADE is stopping... -- 10:49:30.252 DEBUG [12248]: Closing database connection -- 10:49:30.252 SQL [12248]: pgsql_close() -- 10:49:30.321 INFO [12248]: COREGRADE is starting... -- 10:49:30.322 INFO [12248]: Version from config: 1.0 -- 10:49:30.322 DEBUG [12248]: Connecting to database... -- 10:49:30.322 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:30.322 SQL [12248]: pgsql_db_connect() -- 10:49:30.326 DEBUG [12248]: Database connection successful -- 10:49:30.326 INFO [12248]: _SERVER found -- 10:49:30.326 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 10:49:30.326 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:30.326 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:30.326 INFO [12248]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 10:49:30.326 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:30.338 INFO [12248]: COREGRADE is stopping... -- 10:49:30.338 DEBUG [12248]: Closing database connection -- 10:49:30.338 SQL [12248]: pgsql_close() -- 10:49:30.407 INFO [12248]: COREGRADE is starting... -- 10:49:30.407 INFO [12248]: Version from config: 1.0 -- 10:49:30.407 DEBUG [12248]: Connecting to database... -- 10:49:30.407 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:30.407 SQL [12248]: pgsql_db_connect() -- 10:49:30.411 DEBUG [12248]: Database connection successful -- 10:49:30.411 INFO [12248]: _SERVER found -- 10:49:30.411 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 10:49:30.411 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:30.411 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:30.411 INFO [12248]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 10:49:30.411 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:30.423 INFO [12248]: COREGRADE is stopping... -- 10:49:30.423 DEBUG [12248]: Closing database connection -- 10:49:30.423 SQL [12248]: pgsql_close() -- 10:49:30.492 INFO [12248]: COREGRADE is starting... -- 10:49:30.492 INFO [12248]: Version from config: 1.0 -- 10:49:30.492 DEBUG [12248]: Connecting to database... -- 10:49:30.492 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:30.492 SQL [12248]: pgsql_db_connect() -- 10:49:30.496 DEBUG [12248]: Database connection successful -- 10:49:30.496 INFO [12248]: _SERVER found -- 10:49:30.496 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 10:49:30.496 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:30.496 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:30.496 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 10:49:30.496 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:30.508 INFO [12248]: COREGRADE is stopping... -- 10:49:30.508 DEBUG [12248]: Closing database connection -- 10:49:30.508 SQL [12248]: pgsql_close() -- 10:49:30.578 INFO [12248]: COREGRADE is starting... -- 10:49:30.578 INFO [12248]: Version from config: 1.0 -- 10:49:30.578 DEBUG [12248]: Connecting to database... -- 10:49:30.578 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:30.578 SQL [12248]: pgsql_db_connect() -- 10:49:30.582 DEBUG [12248]: Database connection successful -- 10:49:30.582 INFO [12248]: _SERVER found -- 10:49:30.582 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 10:49:30.582 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:30.582 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:30.582 INFO [12248]: QUERY_STRING = /assets/js/pages/picker_date.js -- 10:49:30.582 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:30.594 INFO [12248]: COREGRADE is stopping... -- 10:49:30.594 DEBUG [12248]: Closing database connection -- 10:49:30.594 SQL [12248]: pgsql_close() -- 10:49:30.663 INFO [12248]: COREGRADE is starting... -- 10:49:30.663 INFO [12248]: Version from config: 1.0 -- 10:49:30.663 DEBUG [12248]: Connecting to database... -- 10:49:30.663 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:30.663 SQL [12248]: pgsql_db_connect() -- 10:49:30.668 DEBUG [12248]: Database connection successful -- 10:49:30.668 INFO [12248]: _SERVER found -- 10:49:30.668 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 10:49:30.668 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:30.668 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:30.668 INFO [12248]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 10:49:30.668 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:30.679 INFO [12248]: COREGRADE is stopping... -- 10:49:30.679 DEBUG [12248]: Closing database connection -- 10:49:30.679 SQL [12248]: pgsql_close() -- 10:49:30.748 INFO [12248]: COREGRADE is starting... -- 10:49:30.749 INFO [12248]: Version from config: 1.0 -- 10:49:30.749 DEBUG [12248]: Connecting to database... -- 10:49:30.749 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:30.749 SQL [12248]: pgsql_db_connect() -- 10:49:30.753 DEBUG [12248]: Database connection successful -- 10:49:30.753 INFO [12248]: _SERVER found -- 10:49:30.753 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 10:49:30.753 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:30.753 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:30.753 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 10:49:30.753 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:30.765 INFO [12248]: COREGRADE is stopping... -- 10:49:30.765 DEBUG [12248]: Closing database connection -- 10:49:30.765 SQL [12248]: pgsql_close() -- 10:49:30.834 INFO [12248]: COREGRADE is starting... -- 10:49:30.834 INFO [12248]: Version from config: 1.0 -- 10:49:30.834 DEBUG [12248]: Connecting to database... -- 10:49:30.834 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:30.834 SQL [12248]: pgsql_db_connect() -- 10:49:30.839 DEBUG [12248]: Database connection successful -- 10:49:30.839 INFO [12248]: _SERVER found -- 10:49:30.839 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 10:49:30.839 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:30.839 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:30.839 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 10:49:30.839 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:30.850 INFO [12248]: COREGRADE is stopping... -- 10:49:30.850 DEBUG [12248]: Closing database connection -- 10:49:30.850 SQL [12248]: pgsql_close() -- 10:49:30.920 INFO [12248]: COREGRADE is starting... -- 10:49:30.920 INFO [12248]: Version from config: 1.0 -- 10:49:30.920 DEBUG [12248]: Connecting to database... -- 10:49:30.920 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:30.920 SQL [12248]: pgsql_db_connect() -- 10:49:30.924 DEBUG [12248]: Database connection successful -- 10:49:30.924 INFO [12248]: _SERVER found -- 10:49:30.924 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 10:49:30.924 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:30.924 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:30.924 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 10:49:30.924 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:30.936 INFO [12248]: COREGRADE is stopping... -- 10:49:30.936 DEBUG [12248]: Closing database connection -- 10:49:30.936 SQL [12248]: pgsql_close() -- 10:49:31.006 INFO [12248]: COREGRADE is starting... -- 10:49:31.006 INFO [12248]: Version from config: 1.0 -- 10:49:31.006 DEBUG [12248]: Connecting to database... -- 10:49:31.006 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:31.006 SQL [12248]: pgsql_db_connect() -- 10:49:31.010 DEBUG [12248]: Database connection successful -- 10:49:31.010 INFO [12248]: _SERVER found -- 10:49:31.010 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 10:49:31.010 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:31.010 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:31.010 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 10:49:31.010 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:31.022 INFO [12248]: COREGRADE is stopping... -- 10:49:31.022 DEBUG [12248]: Closing database connection -- 10:49:31.022 SQL [12248]: pgsql_close() -- 10:49:31.103 INFO [12248]: COREGRADE is starting... -- 10:49:31.103 INFO [12248]: Version from config: 1.0 -- 10:49:31.103 DEBUG [12248]: Connecting to database... -- 10:49:31.103 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:31.103 SQL [12248]: pgsql_db_connect() -- 10:49:31.107 DEBUG [12248]: Database connection successful -- 10:49:31.107 INFO [12248]: _SERVER found -- 10:49:31.107 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 10:49:31.107 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:31.107 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:31.107 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 10:49:31.107 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:31.118 INFO [12248]: COREGRADE is stopping... -- 10:49:31.118 DEBUG [12248]: Closing database connection -- 10:49:31.119 SQL [12248]: pgsql_close() -- 10:49:31.189 INFO [12248]: COREGRADE is starting... -- 10:49:31.189 INFO [12248]: Version from config: 1.0 -- 10:49:31.189 DEBUG [12248]: Connecting to database... -- 10:49:31.189 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:31.189 SQL [12248]: pgsql_db_connect() -- 10:49:31.193 DEBUG [12248]: Database connection successful -- 10:49:31.193 INFO [12248]: _SERVER found -- 10:49:31.193 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 10:49:31.193 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:31.193 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:31.193 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 10:49:31.193 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:31.205 INFO [12248]: COREGRADE is stopping... -- 10:49:31.205 DEBUG [12248]: Closing database connection -- 10:49:31.205 SQL [12248]: pgsql_close() -- 10:49:31.276 INFO [12248]: COREGRADE is starting... -- 10:49:31.277 INFO [12248]: Version from config: 1.0 -- 10:49:31.277 DEBUG [12248]: Connecting to database... -- 10:49:31.277 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:31.277 SQL [12248]: pgsql_db_connect() -- 10:49:31.281 DEBUG [12248]: Database connection successful -- 10:49:31.281 INFO [12248]: _SERVER found -- 10:49:31.281 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 10:49:31.281 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 10:49:31.281 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 10:49:31.281 INFO [12248]: QUERY_STRING = /assets/customjs/general.js -- 10:49:31.281 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 10:49:31.292 INFO [12248]: COREGRADE is stopping... -- 10:49:31.293 DEBUG [12248]: Closing database connection -- 10:49:31.293 SQL [12248]: pgsql_close() -- 11:09:31.515 INFO [12305]: COREGRADE is starting... -- 11:09:31.516 INFO [12305]: Version from config: 1.0 -- 11:09:31.516 DEBUG [12305]: Connecting to database... -- 11:09:31.516 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:31.516 SQL [12305]: pgsql_db_connect() -- 11:09:31.520 DEBUG [12305]: Database connection successful -- 11:09:31.520 INFO [12305]: _SERVER found -- 11:09:31.520 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 11:09:31.520 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:31.520 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=v1ssli46463srg8a4gll6np7d46ipo7u -- 11:09:31.520 INFO [12305]: QUERY_STRING = /logout -- 11:09:31.520 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:31.555 INFO [12305]: COREGRADE is stopping... -- 11:09:31.555 DEBUG [12305]: Closing database connection -- 11:09:31.555 SQL [12305]: pgsql_close() -- 11:09:31.637 INFO [12305]: COREGRADE is starting... -- 11:09:31.637 INFO [12305]: Version from config: 1.0 -- 11:09:31.637 DEBUG [12305]: Connecting to database... -- 11:09:31.637 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:31.637 SQL [12305]: pgsql_db_connect() -- 11:09:31.641 DEBUG [12305]: Database connection successful -- 11:09:31.641 INFO [12305]: _SERVER found -- 11:09:31.641 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 11:09:31.641 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:31.641 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:31.641 INFO [12305]: QUERY_STRING = /start -- 11:09:31.641 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:31.675 INFO [12305]: COREGRADE is stopping... -- 11:09:31.675 DEBUG [12305]: Closing database connection -- 11:09:31.675 SQL [12305]: pgsql_close() -- 11:09:31.801 INFO [12305]: COREGRADE is starting... -- 11:09:31.801 INFO [12305]: Version from config: 1.0 -- 11:09:31.801 DEBUG [12305]: Connecting to database... -- 11:09:31.801 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:31.801 SQL [12305]: pgsql_db_connect() -- 11:09:31.806 DEBUG [12305]: Database connection successful -- 11:09:31.806 INFO [12305]: _SERVER found -- 11:09:31.806 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 11:09:31.806 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:31.806 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:31.806 INFO [12305]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 11:09:31.806 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:31.817 INFO [12305]: COREGRADE is stopping... -- 11:09:31.817 DEBUG [12305]: Closing database connection -- 11:09:31.817 SQL [12305]: pgsql_close() -- 11:09:31.825 INFO [12305]: COREGRADE is starting... -- 11:09:31.826 INFO [12305]: Version from config: 1.0 -- 11:09:31.826 DEBUG [12305]: Connecting to database... -- 11:09:31.826 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:31.826 SQL [12305]: pgsql_db_connect() -- 11:09:31.830 DEBUG [12305]: Database connection successful -- 11:09:31.830 INFO [12305]: _SERVER found -- 11:09:31.830 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 11:09:31.830 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:31.830 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:31.830 INFO [12305]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 11:09:31.830 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:31.841 INFO [12305]: COREGRADE is stopping... -- 11:09:31.841 DEBUG [12305]: Closing database connection -- 11:09:31.841 SQL [12305]: pgsql_close() -- 11:09:31.859 INFO [12305]: COREGRADE is starting... -- 11:09:31.860 INFO [12305]: Version from config: 1.0 -- 11:09:31.860 DEBUG [12305]: Connecting to database... -- 11:09:31.860 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:31.860 SQL [12305]: pgsql_db_connect() -- 11:09:31.864 DEBUG [12305]: Database connection successful -- 11:09:31.864 INFO [12305]: _SERVER found -- 11:09:31.864 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 11:09:31.864 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:31.864 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:31.864 INFO [12305]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 11:09:31.864 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:31.875 INFO [12305]: COREGRADE is stopping... -- 11:09:31.875 DEBUG [12305]: Closing database connection -- 11:09:31.875 SQL [12305]: pgsql_close() -- 11:09:31.899 INFO [12305]: COREGRADE is starting... -- 11:09:31.900 INFO [12305]: Version from config: 1.0 -- 11:09:31.900 DEBUG [12305]: Connecting to database... -- 11:09:31.900 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:31.900 SQL [12305]: pgsql_db_connect() -- 11:09:31.911 INFO [12247]: COREGRADE is starting... -- 11:09:31.911 INFO [12247]: Version from config: 1.0 -- 11:09:31.911 DEBUG [12247]: Connecting to database... -- 11:09:31.911 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:31.911 SQL [12247]: pgsql_db_connect() -- 11:09:31.903 DEBUG [12305]: Database connection successful -- 11:09:31.903 INFO [12305]: _SERVER found -- 11:09:31.904 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 11:09:31.904 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:31.904 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:31.904 INFO [12305]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 11:09:31.904 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:31.915 INFO [12305]: COREGRADE is stopping... -- 11:09:31.915 DEBUG [12305]: Closing database connection -- 11:09:31.915 SQL [12305]: pgsql_close() -- 11:09:31.915 DEBUG [12247]: Database connection successful -- 11:09:31.915 INFO [12247]: _SERVER found -- 11:09:31.915 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 11:09:31.915 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:31.915 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:31.915 INFO [12247]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 11:09:31.915 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:31.930 INFO [12247]: COREGRADE is stopping... -- 11:09:31.930 DEBUG [12247]: Closing database connection -- 11:09:31.930 SQL [12247]: pgsql_close() -- 11:09:31.951 INFO [12247]: COREGRADE is starting... -- 11:09:31.951 INFO [12247]: Version from config: 1.0 -- 11:09:31.951 DEBUG [12247]: Connecting to database... -- 11:09:31.951 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:31.951 SQL [12247]: pgsql_db_connect() -- 11:09:31.955 DEBUG [12247]: Database connection successful -- 11:09:31.955 INFO [12247]: _SERVER found -- 11:09:31.955 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 11:09:31.955 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:31.955 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:31.955 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 11:09:31.955 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:31.967 INFO [12247]: COREGRADE is stopping... -- 11:09:31.967 DEBUG [12247]: Closing database connection -- 11:09:31.967 SQL [12247]: pgsql_close() -- 11:09:31.998 INFO [12247]: COREGRADE is starting... -- 11:09:31.998 INFO [12247]: Version from config: 1.0 -- 11:09:31.998 DEBUG [12247]: Connecting to database... -- 11:09:31.998 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:31.998 SQL [12247]: pgsql_db_connect() -- 11:09:31.998 INFO [12305]: COREGRADE is starting... -- 11:09:31.999 INFO [12305]: Version from config: 1.0 -- 11:09:31.999 DEBUG [12305]: Connecting to database... -- 11:09:31.999 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:31.999 SQL [12305]: pgsql_db_connect() -- 11:09:32.003 DEBUG [12247]: Database connection successful -- 11:09:32.003 INFO [12247]: _SERVER found -- 11:09:32.003 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 11:09:32.003 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:32.003 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:32.003 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 11:09:32.003 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:32.014 INFO [12247]: COREGRADE is stopping... -- 11:09:32.003 DEBUG [12305]: Database connection successful -- 11:09:32.003 INFO [12305]: _SERVER found -- 11:09:32.003 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 11:09:32.003 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:32.003 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:32.003 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 11:09:32.003 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:32.014 INFO [12305]: COREGRADE is stopping... -- 11:09:32.014 DEBUG [12305]: Closing database connection -- 11:09:32.014 DEBUG [12247]: Closing database connection -- 11:09:32.014 SQL [12305]: pgsql_close() -- 11:09:32.014 SQL [12247]: pgsql_close() -- 11:09:32.042 INFO [12247]: COREGRADE is starting... -- 11:09:32.043 INFO [12247]: Version from config: 1.0 -- 11:09:32.043 DEBUG [12247]: Connecting to database... -- 11:09:32.043 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:32.043 SQL [12247]: pgsql_db_connect() -- 11:09:32.047 DEBUG [12247]: Database connection successful -- 11:09:32.047 INFO [12247]: _SERVER found -- 11:09:32.047 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 11:09:32.047 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:32.047 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:32.047 INFO [12247]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 11:09:32.047 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:32.058 INFO [12247]: COREGRADE is stopping... -- 11:09:32.058 DEBUG [12247]: Closing database connection -- 11:09:32.058 SQL [12247]: pgsql_close() -- 11:09:32.085 INFO [12247]: COREGRADE is starting... -- 11:09:32.085 INFO [12247]: Version from config: 1.0 -- 11:09:32.085 DEBUG [12247]: Connecting to database... -- 11:09:32.085 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:32.085 SQL [12247]: pgsql_db_connect() -- 11:09:32.097 INFO [12305]: COREGRADE is starting... -- 11:09:32.097 INFO [12305]: Version from config: 1.0 -- 11:09:32.097 DEBUG [12305]: Connecting to database... -- 11:09:32.097 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:32.097 SQL [12305]: pgsql_db_connect() -- 11:09:32.089 DEBUG [12247]: Database connection successful -- 11:09:32.089 INFO [12247]: _SERVER found -- 11:09:32.089 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 11:09:32.089 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:32.089 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:32.089 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 11:09:32.089 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:32.101 INFO [12247]: COREGRADE is stopping... -- 11:09:32.101 DEBUG [12247]: Closing database connection -- 11:09:32.101 SQL [12247]: pgsql_close() -- 11:09:32.101 DEBUG [12305]: Database connection successful -- 11:09:32.101 INFO [12305]: _SERVER found -- 11:09:32.101 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 11:09:32.101 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:32.101 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:32.101 INFO [12305]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 11:09:32.101 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:32.113 INFO [12305]: COREGRADE is stopping... -- 11:09:32.113 DEBUG [12305]: Closing database connection -- 11:09:32.113 SQL [12305]: pgsql_close() -- 11:09:32.134 INFO [12305]: COREGRADE is starting... -- 11:09:32.134 INFO [12305]: Version from config: 1.0 -- 11:09:32.134 DEBUG [12305]: Connecting to database... -- 11:09:32.134 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:32.134 SQL [12305]: pgsql_db_connect() -- 11:09:32.138 DEBUG [12305]: Database connection successful -- 11:09:32.138 INFO [12305]: _SERVER found -- 11:09:32.138 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 11:09:32.138 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:32.138 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:32.138 INFO [12305]: QUERY_STRING = /assets/js/pages/dashboard.js -- 11:09:32.138 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:32.150 INFO [12305]: COREGRADE is stopping... -- 11:09:32.150 DEBUG [12305]: Closing database connection -- 11:09:32.150 SQL [12305]: pgsql_close() -- 11:09:32.173 INFO [12305]: COREGRADE is starting... -- 11:09:32.174 INFO [12305]: Version from config: 1.0 -- 11:09:32.174 DEBUG [12305]: Connecting to database... -- 11:09:32.174 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:32.174 SQL [12305]: pgsql_db_connect() -- 11:09:32.185 INFO [12247]: COREGRADE is starting... -- 11:09:32.185 INFO [12247]: Version from config: 1.0 -- 11:09:32.185 DEBUG [12247]: Connecting to database... -- 11:09:32.185 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:32.185 SQL [12247]: pgsql_db_connect() -- 11:09:32.178 DEBUG [12305]: Database connection successful -- 11:09:32.178 INFO [12305]: _SERVER found -- 11:09:32.178 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 11:09:32.178 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:32.178 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:32.178 INFO [12305]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 11:09:32.178 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:32.189 INFO [12305]: COREGRADE is stopping... -- 11:09:32.189 DEBUG [12305]: Closing database connection -- 11:09:32.189 SQL [12305]: pgsql_close() -- 11:09:32.189 DEBUG [12247]: Database connection successful -- 11:09:32.189 INFO [12247]: _SERVER found -- 11:09:32.189 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 11:09:32.189 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:32.189 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:32.189 INFO [12247]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 11:09:32.189 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:32.201 INFO [12247]: COREGRADE is stopping... -- 11:09:32.201 DEBUG [12247]: Closing database connection -- 11:09:32.201 SQL [12247]: pgsql_close() -- 11:09:32.215 INFO [12247]: COREGRADE is starting... -- 11:09:32.216 INFO [12247]: Version from config: 1.0 -- 11:09:32.216 DEBUG [12247]: Connecting to database... -- 11:09:32.216 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:32.216 SQL [12247]: pgsql_db_connect() -- 11:09:32.220 DEBUG [12247]: Database connection successful -- 11:09:32.220 INFO [12247]: _SERVER found -- 11:09:32.220 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 11:09:32.220 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:32.220 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:32.220 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 11:09:32.220 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:32.231 INFO [12247]: COREGRADE is stopping... -- 11:09:32.231 DEBUG [12247]: Closing database connection -- 11:09:32.231 SQL [12247]: pgsql_close() -- 11:09:32.258 INFO [12247]: COREGRADE is starting... -- 11:09:32.258 INFO [12247]: Version from config: 1.0 -- 11:09:32.258 DEBUG [12247]: Connecting to database... -- 11:09:32.258 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:32.258 SQL [12247]: pgsql_db_connect() -- 11:09:32.272 INFO [12305]: COREGRADE is starting... -- 11:09:32.273 INFO [12305]: Version from config: 1.0 -- 11:09:32.273 DEBUG [12305]: Connecting to database... -- 11:09:32.273 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:32.273 SQL [12305]: pgsql_db_connect() -- 11:09:32.262 DEBUG [12247]: Database connection successful -- 11:09:32.262 INFO [12247]: _SERVER found -- 11:09:32.262 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 11:09:32.262 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:32.262 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:32.262 INFO [12247]: QUERY_STRING = /assets/js/pages/picker_date.js -- 11:09:32.262 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:32.274 INFO [12247]: COREGRADE is stopping... -- 11:09:32.274 DEBUG [12247]: Closing database connection -- 11:09:32.274 SQL [12247]: pgsql_close() -- 11:09:32.277 DEBUG [12305]: Database connection successful -- 11:09:32.277 INFO [12305]: _SERVER found -- 11:09:32.277 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 11:09:32.277 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:32.277 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:32.277 INFO [12305]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 11:09:32.277 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:32.288 INFO [12305]: COREGRADE is stopping... -- 11:09:32.288 DEBUG [12305]: Closing database connection -- 11:09:32.288 SQL [12305]: pgsql_close() -- 11:09:32.296 INFO [12305]: COREGRADE is starting... -- 11:09:32.296 INFO [12305]: Version from config: 1.0 -- 11:09:32.296 DEBUG [12305]: Connecting to database... -- 11:09:32.296 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:32.296 SQL [12305]: pgsql_db_connect() -- 11:09:32.300 DEBUG [12305]: Database connection successful -- 11:09:32.300 INFO [12305]: _SERVER found -- 11:09:32.300 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 11:09:32.300 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:32.300 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:32.300 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 11:09:32.300 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:32.312 INFO [12305]: COREGRADE is stopping... -- 11:09:32.312 DEBUG [12305]: Closing database connection -- 11:09:32.312 SQL [12305]: pgsql_close() -- 11:09:32.342 INFO [12305]: COREGRADE is starting... -- 11:09:32.343 INFO [12305]: Version from config: 1.0 -- 11:09:32.343 DEBUG [12305]: Connecting to database... -- 11:09:32.343 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:32.343 SQL [12305]: pgsql_db_connect() -- 11:09:32.347 DEBUG [12305]: Database connection successful -- 11:09:32.347 INFO [12305]: _SERVER found -- 11:09:32.347 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 11:09:32.347 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:32.347 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:32.347 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 11:09:32.347 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:32.358 INFO [12305]: COREGRADE is stopping... -- 11:09:32.358 DEBUG [12305]: Closing database connection -- 11:09:32.358 SQL [12305]: pgsql_close() -- 11:09:32.359 INFO [12247]: COREGRADE is starting... -- 11:09:32.360 INFO [12247]: Version from config: 1.0 -- 11:09:32.360 DEBUG [12247]: Connecting to database... -- 11:09:32.360 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:32.360 SQL [12247]: pgsql_db_connect() -- 11:09:32.364 DEBUG [12247]: Database connection successful -- 11:09:32.364 INFO [12247]: _SERVER found -- 11:09:32.364 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 11:09:32.364 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:32.364 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:32.364 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 11:09:32.364 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:32.375 INFO [12247]: COREGRADE is stopping... -- 11:09:32.375 DEBUG [12247]: Closing database connection -- 11:09:32.375 SQL [12247]: pgsql_close() -- 11:09:32.376 INFO [12305]: COREGRADE is starting... -- 11:09:32.377 INFO [12305]: Version from config: 1.0 -- 11:09:32.377 DEBUG [12305]: Connecting to database... -- 11:09:32.377 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:32.377 SQL [12305]: pgsql_db_connect() -- 11:09:32.381 DEBUG [12305]: Database connection successful -- 11:09:32.381 INFO [12305]: _SERVER found -- 11:09:32.381 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 11:09:32.381 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:32.381 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:32.381 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 11:09:32.381 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:32.392 INFO [12305]: COREGRADE is stopping... -- 11:09:32.392 DEBUG [12305]: Closing database connection -- 11:09:32.392 SQL [12305]: pgsql_close() -- 11:09:32.427 INFO [12305]: COREGRADE is starting... -- 11:09:32.427 INFO [12305]: Version from config: 1.0 -- 11:09:32.427 DEBUG [12305]: Connecting to database... -- 11:09:32.427 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:32.427 SQL [12305]: pgsql_db_connect() -- 11:09:32.431 DEBUG [12305]: Database connection successful -- 11:09:32.431 INFO [12305]: _SERVER found -- 11:09:32.431 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 11:09:32.431 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:32.431 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:32.431 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 11:09:32.431 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:32.443 INFO [12305]: COREGRADE is stopping... -- 11:09:32.443 DEBUG [12305]: Closing database connection -- 11:09:32.443 SQL [12305]: pgsql_close() -- 11:09:32.446 INFO [12305]: COREGRADE is starting... -- 11:09:32.447 INFO [12305]: Version from config: 1.0 -- 11:09:32.447 DEBUG [12305]: Connecting to database... -- 11:09:32.447 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:32.447 SQL [12305]: pgsql_db_connect() -- 11:09:32.457 INFO [12247]: COREGRADE is starting... -- 11:09:32.457 INFO [12247]: Version from config: 1.0 -- 11:09:32.457 DEBUG [12247]: Connecting to database... -- 11:09:32.457 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:32.457 SQL [12247]: pgsql_db_connect() -- 11:09:32.450 DEBUG [12305]: Database connection successful -- 11:09:32.450 INFO [12305]: _SERVER found -- 11:09:32.450 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 11:09:32.450 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:32.450 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:32.450 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 11:09:32.451 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:32.462 INFO [12305]: COREGRADE is stopping... -- 11:09:32.462 DEBUG [12305]: Closing database connection -- 11:09:32.462 SQL [12305]: pgsql_close() -- 11:09:32.461 DEBUG [12247]: Database connection successful -- 11:09:32.461 INFO [12247]: _SERVER found -- 11:09:32.461 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 11:09:32.461 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:32.461 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:32.461 INFO [12247]: QUERY_STRING = /assets/customjs/general.js -- 11:09:32.461 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:32.473 INFO [12247]: COREGRADE is stopping... -- 11:09:32.473 DEBUG [12247]: Closing database connection -- 11:09:32.473 SQL [12247]: pgsql_close() -- 11:09:32.511 INFO [12247]: COREGRADE is starting... -- 11:09:32.512 INFO [12247]: Version from config: 1.0 -- 11:09:32.512 DEBUG [12247]: Connecting to database... -- 11:09:32.512 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:32.512 SQL [12247]: pgsql_db_connect() -- 11:09:32.516 DEBUG [12247]: Database connection successful -- 11:09:32.516 INFO [12247]: _SERVER found -- 11:09:32.516 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 11:09:32.516 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:32.516 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:32.516 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 11:09:32.516 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:32.527 INFO [12247]: COREGRADE is stopping... -- 11:09:32.527 DEBUG [12247]: Closing database connection -- 11:09:32.527 SQL [12247]: pgsql_close() -- 11:09:32.596 INFO [12247]: COREGRADE is starting... -- 11:09:32.597 INFO [12247]: Version from config: 1.0 -- 11:09:32.597 DEBUG [12247]: Connecting to database... -- 11:09:32.597 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:32.597 SQL [12247]: pgsql_db_connect() -- 11:09:32.601 DEBUG [12247]: Database connection successful -- 11:09:32.601 INFO [12247]: _SERVER found -- 11:09:32.601 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 11:09:32.601 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:32.601 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:32.601 INFO [12247]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 11:09:32.601 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:32.612 INFO [12247]: COREGRADE is stopping... -- 11:09:32.612 DEBUG [12247]: Closing database connection -- 11:09:32.612 SQL [12247]: pgsql_close() -- 11:09:32.681 INFO [12247]: COREGRADE is starting... -- 11:09:32.682 INFO [12247]: Version from config: 1.0 -- 11:09:32.682 DEBUG [12247]: Connecting to database... -- 11:09:32.682 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:32.682 SQL [12247]: pgsql_db_connect() -- 11:09:32.686 DEBUG [12247]: Database connection successful -- 11:09:32.686 INFO [12247]: _SERVER found -- 11:09:32.686 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 11:09:32.686 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:32.686 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:32.686 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 11:09:32.686 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:32.697 INFO [12247]: COREGRADE is stopping... -- 11:09:32.697 DEBUG [12247]: Closing database connection -- 11:09:32.697 SQL [12247]: pgsql_close() -- 11:09:32.766 INFO [12247]: COREGRADE is starting... -- 11:09:32.766 INFO [12247]: Version from config: 1.0 -- 11:09:32.766 DEBUG [12247]: Connecting to database... -- 11:09:32.766 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:32.766 SQL [12247]: pgsql_db_connect() -- 11:09:32.770 DEBUG [12247]: Database connection successful -- 11:09:32.770 INFO [12247]: _SERVER found -- 11:09:32.770 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 11:09:32.770 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:32.770 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:32.770 INFO [12247]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 11:09:32.770 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:32.782 INFO [12247]: COREGRADE is stopping... -- 11:09:32.782 DEBUG [12247]: Closing database connection -- 11:09:32.782 SQL [12247]: pgsql_close() -- 11:09:32.851 INFO [12247]: COREGRADE is starting... -- 11:09:32.851 INFO [12247]: Version from config: 1.0 -- 11:09:32.851 DEBUG [12247]: Connecting to database... -- 11:09:32.851 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:32.851 SQL [12247]: pgsql_db_connect() -- 11:09:32.855 DEBUG [12247]: Database connection successful -- 11:09:32.855 INFO [12247]: _SERVER found -- 11:09:32.855 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 11:09:32.855 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:32.855 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:32.855 INFO [12247]: QUERY_STRING = /assets/js/pages/dashboard.js -- 11:09:32.855 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:32.867 INFO [12247]: COREGRADE is stopping... -- 11:09:32.867 DEBUG [12247]: Closing database connection -- 11:09:32.867 SQL [12247]: pgsql_close() -- 11:09:32.937 INFO [12247]: COREGRADE is starting... -- 11:09:32.937 INFO [12247]: Version from config: 1.0 -- 11:09:32.937 DEBUG [12247]: Connecting to database... -- 11:09:32.937 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:32.937 SQL [12247]: pgsql_db_connect() -- 11:09:32.941 DEBUG [12247]: Database connection successful -- 11:09:32.941 INFO [12247]: _SERVER found -- 11:09:32.941 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 11:09:32.941 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:32.941 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:32.941 INFO [12247]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 11:09:32.941 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:32.953 INFO [12247]: COREGRADE is stopping... -- 11:09:32.953 DEBUG [12247]: Closing database connection -- 11:09:32.953 SQL [12247]: pgsql_close() -- 11:09:33.022 INFO [12247]: COREGRADE is starting... -- 11:09:33.022 INFO [12247]: Version from config: 1.0 -- 11:09:33.022 DEBUG [12247]: Connecting to database... -- 11:09:33.022 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:33.022 SQL [12247]: pgsql_db_connect() -- 11:09:33.026 DEBUG [12247]: Database connection successful -- 11:09:33.026 INFO [12247]: _SERVER found -- 11:09:33.026 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 11:09:33.026 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:33.026 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:33.026 INFO [12247]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 11:09:33.026 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:33.037 INFO [12247]: COREGRADE is stopping... -- 11:09:33.037 DEBUG [12247]: Closing database connection -- 11:09:33.037 SQL [12247]: pgsql_close() -- 11:09:33.107 INFO [12247]: COREGRADE is starting... -- 11:09:33.107 INFO [12247]: Version from config: 1.0 -- 11:09:33.107 DEBUG [12247]: Connecting to database... -- 11:09:33.107 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:33.107 SQL [12247]: pgsql_db_connect() -- 11:09:33.111 DEBUG [12247]: Database connection successful -- 11:09:33.111 INFO [12247]: _SERVER found -- 11:09:33.111 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 11:09:33.111 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:33.111 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:33.111 INFO [12247]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 11:09:33.111 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:33.123 INFO [12247]: COREGRADE is stopping... -- 11:09:33.123 DEBUG [12247]: Closing database connection -- 11:09:33.123 SQL [12247]: pgsql_close() -- 11:09:33.192 INFO [12247]: COREGRADE is starting... -- 11:09:33.192 INFO [12247]: Version from config: 1.0 -- 11:09:33.192 DEBUG [12247]: Connecting to database... -- 11:09:33.192 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:33.192 SQL [12247]: pgsql_db_connect() -- 11:09:33.196 DEBUG [12247]: Database connection successful -- 11:09:33.196 INFO [12247]: _SERVER found -- 11:09:33.196 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 11:09:33.196 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:33.196 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:33.196 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 11:09:33.196 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:33.208 INFO [12247]: COREGRADE is stopping... -- 11:09:33.208 DEBUG [12247]: Closing database connection -- 11:09:33.208 SQL [12247]: pgsql_close() -- 11:09:33.277 INFO [12247]: COREGRADE is starting... -- 11:09:33.278 INFO [12247]: Version from config: 1.0 -- 11:09:33.278 DEBUG [12247]: Connecting to database... -- 11:09:33.278 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:33.278 SQL [12247]: pgsql_db_connect() -- 11:09:33.282 DEBUG [12247]: Database connection successful -- 11:09:33.282 INFO [12247]: _SERVER found -- 11:09:33.282 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 11:09:33.282 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:33.282 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:33.282 INFO [12247]: QUERY_STRING = /assets/js/pages/picker_date.js -- 11:09:33.282 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:33.293 INFO [12247]: COREGRADE is stopping... -- 11:09:33.293 DEBUG [12247]: Closing database connection -- 11:09:33.293 SQL [12247]: pgsql_close() -- 11:09:33.362 INFO [12247]: COREGRADE is starting... -- 11:09:33.362 INFO [12247]: Version from config: 1.0 -- 11:09:33.363 DEBUG [12247]: Connecting to database... -- 11:09:33.363 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:33.363 SQL [12247]: pgsql_db_connect() -- 11:09:33.367 DEBUG [12247]: Database connection successful -- 11:09:33.367 INFO [12247]: _SERVER found -- 11:09:33.367 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 11:09:33.367 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:33.367 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:33.367 INFO [12247]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 11:09:33.367 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:33.378 INFO [12247]: COREGRADE is stopping... -- 11:09:33.378 DEBUG [12247]: Closing database connection -- 11:09:33.378 SQL [12247]: pgsql_close() -- 11:09:33.447 INFO [12247]: COREGRADE is starting... -- 11:09:33.448 INFO [12247]: Version from config: 1.0 -- 11:09:33.448 DEBUG [12247]: Connecting to database... -- 11:09:33.448 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:33.448 SQL [12247]: pgsql_db_connect() -- 11:09:33.452 DEBUG [12247]: Database connection successful -- 11:09:33.452 INFO [12247]: _SERVER found -- 11:09:33.452 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 11:09:33.452 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:33.452 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:33.452 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 11:09:33.452 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:33.463 INFO [12247]: COREGRADE is stopping... -- 11:09:33.463 DEBUG [12247]: Closing database connection -- 11:09:33.463 SQL [12247]: pgsql_close() -- 11:09:33.532 INFO [12247]: COREGRADE is starting... -- 11:09:33.533 INFO [12247]: Version from config: 1.0 -- 11:09:33.533 DEBUG [12247]: Connecting to database... -- 11:09:33.533 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:33.533 SQL [12247]: pgsql_db_connect() -- 11:09:33.537 DEBUG [12247]: Database connection successful -- 11:09:33.537 INFO [12247]: _SERVER found -- 11:09:33.537 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 11:09:33.537 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:33.537 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:33.537 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 11:09:33.537 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:33.549 INFO [12247]: COREGRADE is stopping... -- 11:09:33.549 DEBUG [12247]: Closing database connection -- 11:09:33.549 SQL [12247]: pgsql_close() -- 11:09:33.618 INFO [12247]: COREGRADE is starting... -- 11:09:33.618 INFO [12247]: Version from config: 1.0 -- 11:09:33.618 DEBUG [12247]: Connecting to database... -- 11:09:33.618 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:33.618 SQL [12247]: pgsql_db_connect() -- 11:09:33.622 DEBUG [12247]: Database connection successful -- 11:09:33.622 INFO [12247]: _SERVER found -- 11:09:33.622 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 11:09:33.622 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:33.622 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:33.622 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 11:09:33.622 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:33.634 INFO [12247]: COREGRADE is stopping... -- 11:09:33.634 DEBUG [12247]: Closing database connection -- 11:09:33.634 SQL [12247]: pgsql_close() -- 11:09:33.702 INFO [12247]: COREGRADE is starting... -- 11:09:33.703 INFO [12247]: Version from config: 1.0 -- 11:09:33.703 DEBUG [12247]: Connecting to database... -- 11:09:33.703 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:33.703 SQL [12247]: pgsql_db_connect() -- 11:09:33.707 DEBUG [12247]: Database connection successful -- 11:09:33.707 INFO [12247]: _SERVER found -- 11:09:33.707 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 11:09:33.707 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:33.707 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:33.707 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 11:09:33.707 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:33.718 INFO [12247]: COREGRADE is stopping... -- 11:09:33.718 DEBUG [12247]: Closing database connection -- 11:09:33.719 SQL [12247]: pgsql_close() -- 11:09:33.798 INFO [12247]: COREGRADE is starting... -- 11:09:33.798 INFO [12247]: Version from config: 1.0 -- 11:09:33.798 DEBUG [12247]: Connecting to database... -- 11:09:33.798 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:33.798 SQL [12247]: pgsql_db_connect() -- 11:09:33.802 DEBUG [12247]: Database connection successful -- 11:09:33.802 INFO [12247]: _SERVER found -- 11:09:33.802 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 11:09:33.802 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:33.802 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:33.802 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 11:09:33.802 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:33.814 INFO [12247]: COREGRADE is stopping... -- 11:09:33.814 DEBUG [12247]: Closing database connection -- 11:09:33.814 SQL [12247]: pgsql_close() -- 11:09:33.883 INFO [12247]: COREGRADE is starting... -- 11:09:33.884 INFO [12247]: Version from config: 1.0 -- 11:09:33.884 DEBUG [12247]: Connecting to database... -- 11:09:33.884 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:33.884 SQL [12247]: pgsql_db_connect() -- 11:09:33.888 DEBUG [12247]: Database connection successful -- 11:09:33.888 INFO [12247]: _SERVER found -- 11:09:33.888 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 11:09:33.888 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:33.888 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:33.888 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 11:09:33.888 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:33.899 INFO [12247]: COREGRADE is stopping... -- 11:09:33.899 DEBUG [12247]: Closing database connection -- 11:09:33.899 SQL [12247]: pgsql_close() -- 11:09:33.970 INFO [12247]: COREGRADE is starting... -- 11:09:33.971 INFO [12247]: Version from config: 1.0 -- 11:09:33.971 DEBUG [12247]: Connecting to database... -- 11:09:33.971 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:33.971 SQL [12247]: pgsql_db_connect() -- 11:09:33.975 DEBUG [12247]: Database connection successful -- 11:09:33.975 INFO [12247]: _SERVER found -- 11:09:33.975 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 11:09:33.975 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:09:33.975 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:09:33.975 INFO [12247]: QUERY_STRING = /assets/customjs/general.js -- 11:09:33.975 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:09:33.986 INFO [12247]: COREGRADE is stopping... -- 11:09:33.986 DEBUG [12247]: Closing database connection -- 11:09:33.986 SQL [12247]: pgsql_close() -- 11:29:35.690 INFO [12246]: COREGRADE is starting... -- 11:29:35.690 INFO [12246]: Version from config: 1.0 -- 11:29:35.690 DEBUG [12246]: Connecting to database... -- 11:29:35.690 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:35.690 SQL [12246]: pgsql_db_connect() -- 11:29:35.695 DEBUG [12246]: Database connection successful -- 11:29:35.695 INFO [12246]: _SERVER found -- 11:29:35.695 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 11:29:35.695 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:35.695 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=5md8llckda0hc1505bvjkamijs0q7qmo -- 11:29:35.695 INFO [12246]: QUERY_STRING = /logout -- 11:29:35.695 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:35.732 INFO [12246]: COREGRADE is stopping... -- 11:29:35.732 DEBUG [12246]: Closing database connection -- 11:29:35.732 SQL [12246]: pgsql_close() -- 11:29:35.811 INFO [12246]: COREGRADE is starting... -- 11:29:35.811 INFO [12246]: Version from config: 1.0 -- 11:29:35.811 DEBUG [12246]: Connecting to database... -- 11:29:35.811 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:35.811 SQL [12246]: pgsql_db_connect() -- 11:29:35.815 DEBUG [12246]: Database connection successful -- 11:29:35.815 INFO [12246]: _SERVER found -- 11:29:35.815 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 11:29:35.815 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:35.815 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:35.815 INFO [12246]: QUERY_STRING = /start -- 11:29:35.815 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:35.849 INFO [12246]: COREGRADE is stopping... -- 11:29:35.849 DEBUG [12246]: Closing database connection -- 11:29:35.849 SQL [12246]: pgsql_close() -- 11:29:35.977 INFO [12250]: COREGRADE is starting... -- 11:29:35.977 INFO [12250]: Version from config: 1.0 -- 11:29:35.978 DEBUG [12250]: Connecting to database... -- 11:29:35.978 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:35.978 SQL [12250]: pgsql_db_connect() -- 11:29:35.982 INFO [12347]: COREGRADE is starting... -- 11:29:35.983 INFO [12347]: Version from config: 1.0 -- 11:29:35.983 DEBUG [12347]: Connecting to database... -- 11:29:35.983 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:35.983 SQL [12347]: pgsql_db_connect() -- 11:29:35.998 INFO [12246]: COREGRADE is starting... -- 11:29:35.998 INFO [12246]: Version from config: 1.0 -- 11:29:35.998 DEBUG [12246]: Connecting to database... -- 11:29:35.998 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:35.998 SQL [12246]: pgsql_db_connect() -- 11:29:35.983 DEBUG [12250]: Database connection successful -- 11:29:35.983 INFO [12250]: _SERVER found -- 11:29:35.983 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 11:29:35.983 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:35.983 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:35.983 INFO [12250]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 11:29:35.983 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:35.999 INFO [12250]: COREGRADE is stopping... -- 11:29:35.999 DEBUG [12250]: Closing database connection -- 11:29:35.999 SQL [12250]: pgsql_close() -- 11:29:35.988 DEBUG [12347]: Database connection successful -- 11:29:35.988 INFO [12347]: _SERVER found -- 11:29:35.988 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 11:29:35.988 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:35.988 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:35.988 INFO [12347]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 11:29:35.988 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:36.006 INFO [12347]: COREGRADE is stopping... -- 11:29:36.006 DEBUG [12347]: Closing database connection -- 11:29:36.006 SQL [12347]: pgsql_close() -- 11:29:36.006 DEBUG [12246]: Database connection successful -- 11:29:36.006 INFO [12246]: _SERVER found -- 11:29:36.006 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 11:29:36.006 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:36.006 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:36.006 INFO [12246]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 11:29:36.006 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:36.017 INFO [12246]: COREGRADE is stopping... -- 11:29:36.017 DEBUG [12246]: Closing database connection -- 11:29:36.017 SQL [12246]: pgsql_close() -- 11:29:36.081 INFO [12347]: COREGRADE is starting... -- 11:29:36.081 INFO [12347]: Version from config: 1.0 -- 11:29:36.082 DEBUG [12347]: Connecting to database... -- 11:29:36.082 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:36.082 SQL [12347]: pgsql_db_connect() -- 11:29:36.086 INFO [12246]: COREGRADE is starting... -- 11:29:36.086 INFO [12246]: Version from config: 1.0 -- 11:29:36.086 DEBUG [12246]: Connecting to database... -- 11:29:36.086 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:36.086 SQL [12246]: pgsql_db_connect() -- 11:29:36.096 INFO [12250]: COREGRADE is starting... -- 11:29:36.096 INFO [12250]: Version from config: 1.0 -- 11:29:36.096 DEBUG [12250]: Connecting to database... -- 11:29:36.096 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:36.096 SQL [12250]: pgsql_db_connect() -- 11:29:36.086 DEBUG [12347]: Database connection successful -- 11:29:36.086 INFO [12347]: _SERVER found -- 11:29:36.086 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 11:29:36.086 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:36.086 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:36.086 INFO [12347]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 11:29:36.086 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:36.097 INFO [12347]: COREGRADE is stopping... -- 11:29:36.097 DEBUG [12347]: Closing database connection -- 11:29:36.097 SQL [12347]: pgsql_close() -- 11:29:36.090 DEBUG [12246]: Database connection successful -- 11:29:36.090 INFO [12246]: _SERVER found -- 11:29:36.090 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 11:29:36.090 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:36.090 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:36.090 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 11:29:36.090 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:36.102 INFO [12246]: COREGRADE is stopping... -- 11:29:36.102 DEBUG [12246]: Closing database connection -- 11:29:36.102 SQL [12246]: pgsql_close() -- 11:29:36.100 DEBUG [12250]: Database connection successful -- 11:29:36.100 INFO [12250]: _SERVER found -- 11:29:36.100 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 11:29:36.100 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:36.100 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:36.100 INFO [12250]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 11:29:36.100 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:36.112 INFO [12250]: COREGRADE is stopping... -- 11:29:36.112 DEBUG [12250]: Closing database connection -- 11:29:36.112 SQL [12250]: pgsql_close() -- 11:29:36.169 INFO [12246]: COREGRADE is starting... -- 11:29:36.170 INFO [12246]: Version from config: 1.0 -- 11:29:36.170 DEBUG [12246]: Connecting to database... -- 11:29:36.170 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:36.170 SQL [12246]: pgsql_db_connect() -- 11:29:36.177 INFO [12250]: COREGRADE is starting... -- 11:29:36.177 INFO [12250]: Version from config: 1.0 -- 11:29:36.177 DEBUG [12250]: Connecting to database... -- 11:29:36.177 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:36.177 SQL [12250]: pgsql_db_connect() -- 11:29:36.174 DEBUG [12246]: Database connection successful -- 11:29:36.174 INFO [12246]: _SERVER found -- 11:29:36.174 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 11:29:36.174 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:36.174 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:36.174 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 11:29:36.174 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:36.185 INFO [12246]: COREGRADE is stopping... -- 11:29:36.186 DEBUG [12246]: Closing database connection -- 11:29:36.186 SQL [12246]: pgsql_close() -- 11:29:36.182 DEBUG [12250]: Database connection successful -- 11:29:36.182 INFO [12250]: _SERVER found -- 11:29:36.182 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 11:29:36.182 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:36.182 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:36.182 INFO [12250]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 11:29:36.182 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:36.193 INFO [12250]: COREGRADE is stopping... -- 11:29:36.193 DEBUG [12250]: Closing database connection -- 11:29:36.193 SQL [12250]: pgsql_close() -- 11:29:36.194 INFO [12347]: COREGRADE is starting... -- 11:29:36.194 INFO [12347]: Version from config: 1.0 -- 11:29:36.194 DEBUG [12347]: Connecting to database... -- 11:29:36.194 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:36.194 SQL [12347]: pgsql_db_connect() -- 11:29:36.198 DEBUG [12347]: Database connection successful -- 11:29:36.198 INFO [12347]: _SERVER found -- 11:29:36.198 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 11:29:36.198 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:36.198 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:36.198 INFO [12347]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 11:29:36.198 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:36.209 INFO [12347]: COREGRADE is stopping... -- 11:29:36.210 DEBUG [12347]: Closing database connection -- 11:29:36.210 SQL [12347]: pgsql_close() -- 11:29:36.251 INFO [12246]: COREGRADE is starting... -- 11:29:36.251 INFO [12246]: Version from config: 1.0 -- 11:29:36.251 DEBUG [12246]: Connecting to database... -- 11:29:36.251 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:36.251 SQL [12246]: pgsql_db_connect() -- 11:29:36.255 DEBUG [12246]: Database connection successful -- 11:29:36.255 INFO [12246]: _SERVER found -- 11:29:36.255 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 11:29:36.255 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:36.255 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:36.255 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 11:29:36.255 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:36.267 INFO [12246]: COREGRADE is stopping... -- 11:29:36.267 DEBUG [12246]: Closing database connection -- 11:29:36.267 SQL [12246]: pgsql_close() -- 11:29:36.273 INFO [12347]: COREGRADE is starting... -- 11:29:36.274 INFO [12347]: Version from config: 1.0 -- 11:29:36.274 DEBUG [12347]: Connecting to database... -- 11:29:36.274 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:36.274 SQL [12347]: pgsql_db_connect() -- 11:29:36.277 DEBUG [12347]: Database connection successful -- 11:29:36.277 INFO [12347]: _SERVER found -- 11:29:36.277 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 11:29:36.277 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:36.277 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:36.277 INFO [12347]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 11:29:36.277 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:36.289 INFO [12347]: COREGRADE is stopping... -- 11:29:36.289 DEBUG [12347]: Closing database connection -- 11:29:36.289 SQL [12347]: pgsql_close() -- 11:29:36.292 INFO [12347]: COREGRADE is starting... -- 11:29:36.292 INFO [12347]: Version from config: 1.0 -- 11:29:36.292 DEBUG [12347]: Connecting to database... -- 11:29:36.292 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:36.292 SQL [12347]: pgsql_db_connect() -- 11:29:36.296 DEBUG [12347]: Database connection successful -- 11:29:36.296 INFO [12347]: _SERVER found -- 11:29:36.296 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 11:29:36.296 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:36.296 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:36.296 INFO [12347]: QUERY_STRING = /assets/js/pages/dashboard.js -- 11:29:36.296 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:36.307 INFO [12347]: COREGRADE is stopping... -- 11:29:36.307 DEBUG [12347]: Closing database connection -- 11:29:36.307 SQL [12347]: pgsql_close() -- 11:29:36.336 INFO [12246]: COREGRADE is starting... -- 11:29:36.336 INFO [12246]: Version from config: 1.0 -- 11:29:36.336 DEBUG [12246]: Connecting to database... -- 11:29:36.336 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:36.336 SQL [12246]: pgsql_db_connect() -- 11:29:36.340 DEBUG [12246]: Database connection successful -- 11:29:36.340 INFO [12246]: _SERVER found -- 11:29:36.340 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 11:29:36.340 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:36.340 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:36.340 INFO [12246]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 11:29:36.340 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:36.352 INFO [12246]: COREGRADE is stopping... -- 11:29:36.352 DEBUG [12246]: Closing database connection -- 11:29:36.352 SQL [12246]: pgsql_close() -- 11:29:36.359 INFO [12347]: COREGRADE is starting... -- 11:29:36.359 INFO [12347]: Version from config: 1.0 -- 11:29:36.359 DEBUG [12347]: Connecting to database... -- 11:29:36.359 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:36.359 SQL [12347]: pgsql_db_connect() -- 11:29:36.363 DEBUG [12347]: Database connection successful -- 11:29:36.363 INFO [12347]: _SERVER found -- 11:29:36.363 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 11:29:36.363 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:36.363 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:36.363 INFO [12347]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 11:29:36.363 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:36.375 INFO [12347]: COREGRADE is stopping... -- 11:29:36.375 DEBUG [12347]: Closing database connection -- 11:29:36.375 SQL [12347]: pgsql_close() -- 11:29:36.379 INFO [12347]: COREGRADE is starting... -- 11:29:36.379 INFO [12347]: Version from config: 1.0 -- 11:29:36.379 DEBUG [12347]: Connecting to database... -- 11:29:36.379 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:36.379 SQL [12347]: pgsql_db_connect() -- 11:29:36.383 DEBUG [12347]: Database connection successful -- 11:29:36.383 INFO [12347]: _SERVER found -- 11:29:36.383 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 11:29:36.383 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:36.383 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:36.383 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 11:29:36.383 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:36.395 INFO [12347]: COREGRADE is stopping... -- 11:29:36.395 DEBUG [12347]: Closing database connection -- 11:29:36.395 SQL [12347]: pgsql_close() -- 11:29:36.417 INFO [12246]: COREGRADE is starting... -- 11:29:36.417 INFO [12246]: Version from config: 1.0 -- 11:29:36.417 DEBUG [12246]: Connecting to database... -- 11:29:36.417 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:36.417 SQL [12246]: pgsql_db_connect() -- 11:29:36.422 DEBUG [12246]: Database connection successful -- 11:29:36.422 INFO [12246]: _SERVER found -- 11:29:36.422 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 11:29:36.422 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:36.422 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:36.422 INFO [12246]: QUERY_STRING = /assets/js/pages/picker_date.js -- 11:29:36.422 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:36.433 INFO [12246]: COREGRADE is stopping... -- 11:29:36.433 DEBUG [12246]: Closing database connection -- 11:29:36.433 SQL [12246]: pgsql_close() -- 11:29:36.443 INFO [12347]: COREGRADE is starting... -- 11:29:36.444 INFO [12347]: Version from config: 1.0 -- 11:29:36.444 DEBUG [12347]: Connecting to database... -- 11:29:36.444 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:36.444 SQL [12347]: pgsql_db_connect() -- 11:29:36.448 DEBUG [12347]: Database connection successful -- 11:29:36.448 INFO [12347]: _SERVER found -- 11:29:36.448 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 11:29:36.448 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:36.448 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:36.448 INFO [12347]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 11:29:36.448 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:36.459 INFO [12347]: COREGRADE is stopping... -- 11:29:36.459 DEBUG [12347]: Closing database connection -- 11:29:36.459 SQL [12347]: pgsql_close() -- 11:29:36.466 INFO [12347]: COREGRADE is starting... -- 11:29:36.466 INFO [12347]: Version from config: 1.0 -- 11:29:36.466 DEBUG [12347]: Connecting to database... -- 11:29:36.466 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:36.466 SQL [12347]: pgsql_db_connect() -- 11:29:36.470 DEBUG [12347]: Database connection successful -- 11:29:36.470 INFO [12347]: _SERVER found -- 11:29:36.470 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 11:29:36.470 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:36.470 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:36.470 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 11:29:36.470 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:36.482 INFO [12347]: COREGRADE is stopping... -- 11:29:36.482 DEBUG [12347]: Closing database connection -- 11:29:36.482 SQL [12347]: pgsql_close() -- 11:29:36.499 INFO [12246]: COREGRADE is starting... -- 11:29:36.499 INFO [12246]: Version from config: 1.0 -- 11:29:36.499 DEBUG [12246]: Connecting to database... -- 11:29:36.499 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:36.499 SQL [12246]: pgsql_db_connect() -- 11:29:36.503 DEBUG [12246]: Database connection successful -- 11:29:36.503 INFO [12246]: _SERVER found -- 11:29:36.503 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 11:29:36.503 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:36.503 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:36.503 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 11:29:36.503 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:36.515 INFO [12246]: COREGRADE is stopping... -- 11:29:36.515 DEBUG [12246]: Closing database connection -- 11:29:36.515 SQL [12246]: pgsql_close() -- 11:29:36.527 INFO [12347]: COREGRADE is starting... -- 11:29:36.527 INFO [12347]: Version from config: 1.0 -- 11:29:36.527 DEBUG [12347]: Connecting to database... -- 11:29:36.527 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:36.527 SQL [12347]: pgsql_db_connect() -- 11:29:36.532 DEBUG [12347]: Database connection successful -- 11:29:36.532 INFO [12347]: _SERVER found -- 11:29:36.532 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 11:29:36.532 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:36.532 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:36.532 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 11:29:36.532 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:36.544 INFO [12347]: COREGRADE is stopping... -- 11:29:36.544 DEBUG [12347]: Closing database connection -- 11:29:36.544 SQL [12347]: pgsql_close() -- 11:29:36.556 INFO [12347]: COREGRADE is starting... -- 11:29:36.556 INFO [12347]: Version from config: 1.0 -- 11:29:36.556 DEBUG [12347]: Connecting to database... -- 11:29:36.556 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:36.556 SQL [12347]: pgsql_db_connect() -- 11:29:36.560 DEBUG [12347]: Database connection successful -- 11:29:36.560 INFO [12347]: _SERVER found -- 11:29:36.560 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 11:29:36.560 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:36.560 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:36.560 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 11:29:36.560 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:36.572 INFO [12347]: COREGRADE is stopping... -- 11:29:36.572 DEBUG [12347]: Closing database connection -- 11:29:36.572 SQL [12347]: pgsql_close() -- 11:29:36.580 INFO [12246]: COREGRADE is starting... -- 11:29:36.580 INFO [12246]: Version from config: 1.0 -- 11:29:36.580 DEBUG [12246]: Connecting to database... -- 11:29:36.580 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:36.580 SQL [12246]: pgsql_db_connect() -- 11:29:36.584 DEBUG [12246]: Database connection successful -- 11:29:36.584 INFO [12246]: _SERVER found -- 11:29:36.584 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 11:29:36.584 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:36.584 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:36.584 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 11:29:36.584 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:36.596 INFO [12246]: COREGRADE is stopping... -- 11:29:36.596 DEBUG [12246]: Closing database connection -- 11:29:36.596 SQL [12246]: pgsql_close() -- 11:29:36.611 INFO [12347]: COREGRADE is starting... -- 11:29:36.612 INFO [12347]: Version from config: 1.0 -- 11:29:36.612 DEBUG [12347]: Connecting to database... -- 11:29:36.612 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:36.612 SQL [12347]: pgsql_db_connect() -- 11:29:36.616 DEBUG [12347]: Database connection successful -- 11:29:36.616 INFO [12347]: _SERVER found -- 11:29:36.616 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 11:29:36.616 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:36.616 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:36.616 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 11:29:36.616 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:36.627 INFO [12347]: COREGRADE is stopping... -- 11:29:36.627 DEBUG [12347]: Closing database connection -- 11:29:36.627 SQL [12347]: pgsql_close() -- 11:29:36.643 INFO [12347]: COREGRADE is starting... -- 11:29:36.643 INFO [12347]: Version from config: 1.0 -- 11:29:36.643 DEBUG [12347]: Connecting to database... -- 11:29:36.643 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:36.643 SQL [12347]: pgsql_db_connect() -- 11:29:36.647 DEBUG [12347]: Database connection successful -- 11:29:36.647 INFO [12347]: _SERVER found -- 11:29:36.647 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 11:29:36.647 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:36.647 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:36.647 INFO [12347]: QUERY_STRING = /assets/customjs/general.js -- 11:29:36.647 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:36.659 INFO [12347]: COREGRADE is stopping... -- 11:29:36.659 DEBUG [12347]: Closing database connection -- 11:29:36.659 SQL [12347]: pgsql_close() -- 11:29:36.661 INFO [12246]: COREGRADE is starting... -- 11:29:36.661 INFO [12246]: Version from config: 1.0 -- 11:29:36.661 DEBUG [12246]: Connecting to database... -- 11:29:36.661 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:36.661 SQL [12246]: pgsql_db_connect() -- 11:29:36.665 DEBUG [12246]: Database connection successful -- 11:29:36.665 INFO [12246]: _SERVER found -- 11:29:36.665 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 11:29:36.665 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:36.665 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:36.665 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 11:29:36.665 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:36.677 INFO [12246]: COREGRADE is stopping... -- 11:29:36.677 DEBUG [12246]: Closing database connection -- 11:29:36.677 SQL [12246]: pgsql_close() -- 11:29:36.743 INFO [12246]: COREGRADE is starting... -- 11:29:36.743 INFO [12246]: Version from config: 1.0 -- 11:29:36.743 DEBUG [12246]: Connecting to database... -- 11:29:36.743 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:36.743 SQL [12246]: pgsql_db_connect() -- 11:29:36.747 DEBUG [12246]: Database connection successful -- 11:29:36.747 INFO [12246]: _SERVER found -- 11:29:36.747 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 11:29:36.747 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:36.747 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:36.747 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 11:29:36.747 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:36.759 INFO [12246]: COREGRADE is stopping... -- 11:29:36.759 DEBUG [12246]: Closing database connection -- 11:29:36.759 SQL [12246]: pgsql_close() -- 11:29:36.825 INFO [12246]: COREGRADE is starting... -- 11:29:36.825 INFO [12246]: Version from config: 1.0 -- 11:29:36.825 DEBUG [12246]: Connecting to database... -- 11:29:36.825 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:36.825 SQL [12246]: pgsql_db_connect() -- 11:29:36.829 DEBUG [12246]: Database connection successful -- 11:29:36.829 INFO [12246]: _SERVER found -- 11:29:36.829 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 11:29:36.829 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:36.829 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:36.829 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 11:29:36.829 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:36.841 INFO [12246]: COREGRADE is stopping... -- 11:29:36.841 DEBUG [12246]: Closing database connection -- 11:29:36.841 SQL [12246]: pgsql_close() -- 11:29:36.906 INFO [12246]: COREGRADE is starting... -- 11:29:36.907 INFO [12246]: Version from config: 1.0 -- 11:29:36.907 DEBUG [12246]: Connecting to database... -- 11:29:36.907 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:36.907 SQL [12246]: pgsql_db_connect() -- 11:29:36.911 DEBUG [12246]: Database connection successful -- 11:29:36.911 INFO [12246]: _SERVER found -- 11:29:36.911 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 11:29:36.911 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:36.911 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:36.911 INFO [12246]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 11:29:36.911 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:36.923 INFO [12246]: COREGRADE is stopping... -- 11:29:36.923 DEBUG [12246]: Closing database connection -- 11:29:36.923 SQL [12246]: pgsql_close() -- 11:29:36.988 INFO [12246]: COREGRADE is starting... -- 11:29:36.989 INFO [12246]: Version from config: 1.0 -- 11:29:36.989 DEBUG [12246]: Connecting to database... -- 11:29:36.989 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:36.989 SQL [12246]: pgsql_db_connect() -- 11:29:36.993 DEBUG [12246]: Database connection successful -- 11:29:36.993 INFO [12246]: _SERVER found -- 11:29:36.993 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 11:29:36.993 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:36.993 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:36.993 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 11:29:36.993 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:37.005 INFO [12246]: COREGRADE is stopping... -- 11:29:37.005 DEBUG [12246]: Closing database connection -- 11:29:37.005 SQL [12246]: pgsql_close() -- 11:29:37.071 INFO [12246]: COREGRADE is starting... -- 11:29:37.071 INFO [12246]: Version from config: 1.0 -- 11:29:37.071 DEBUG [12246]: Connecting to database... -- 11:29:37.071 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:37.071 SQL [12246]: pgsql_db_connect() -- 11:29:37.076 DEBUG [12246]: Database connection successful -- 11:29:37.076 INFO [12246]: _SERVER found -- 11:29:37.076 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 11:29:37.076 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:37.076 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:37.076 INFO [12246]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 11:29:37.076 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:37.087 INFO [12246]: COREGRADE is stopping... -- 11:29:37.087 DEBUG [12246]: Closing database connection -- 11:29:37.087 SQL [12246]: pgsql_close() -- 11:29:37.154 INFO [12246]: COREGRADE is starting... -- 11:29:37.154 INFO [12246]: Version from config: 1.0 -- 11:29:37.154 DEBUG [12246]: Connecting to database... -- 11:29:37.154 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:37.154 SQL [12246]: pgsql_db_connect() -- 11:29:37.158 DEBUG [12246]: Database connection successful -- 11:29:37.158 INFO [12246]: _SERVER found -- 11:29:37.158 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 11:29:37.158 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:37.158 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:37.158 INFO [12246]: QUERY_STRING = /assets/js/pages/dashboard.js -- 11:29:37.158 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:37.170 INFO [12246]: COREGRADE is stopping... -- 11:29:37.170 DEBUG [12246]: Closing database connection -- 11:29:37.170 SQL [12246]: pgsql_close() -- 11:29:37.236 INFO [12246]: COREGRADE is starting... -- 11:29:37.237 INFO [12246]: Version from config: 1.0 -- 11:29:37.237 DEBUG [12246]: Connecting to database... -- 11:29:37.237 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:37.237 SQL [12246]: pgsql_db_connect() -- 11:29:37.241 DEBUG [12246]: Database connection successful -- 11:29:37.241 INFO [12246]: _SERVER found -- 11:29:37.241 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 11:29:37.241 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:37.241 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:37.241 INFO [12246]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 11:29:37.241 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:37.252 INFO [12246]: COREGRADE is stopping... -- 11:29:37.252 DEBUG [12246]: Closing database connection -- 11:29:37.252 SQL [12246]: pgsql_close() -- 11:29:37.318 INFO [12246]: COREGRADE is starting... -- 11:29:37.318 INFO [12246]: Version from config: 1.0 -- 11:29:37.318 DEBUG [12246]: Connecting to database... -- 11:29:37.318 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:37.318 SQL [12246]: pgsql_db_connect() -- 11:29:37.322 DEBUG [12246]: Database connection successful -- 11:29:37.322 INFO [12246]: _SERVER found -- 11:29:37.322 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 11:29:37.322 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:37.322 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:37.322 INFO [12246]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 11:29:37.322 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:37.334 INFO [12246]: COREGRADE is stopping... -- 11:29:37.334 DEBUG [12246]: Closing database connection -- 11:29:37.334 SQL [12246]: pgsql_close() -- 11:29:37.400 INFO [12246]: COREGRADE is starting... -- 11:29:37.400 INFO [12246]: Version from config: 1.0 -- 11:29:37.400 DEBUG [12246]: Connecting to database... -- 11:29:37.400 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:37.400 SQL [12246]: pgsql_db_connect() -- 11:29:37.404 DEBUG [12246]: Database connection successful -- 11:29:37.404 INFO [12246]: _SERVER found -- 11:29:37.404 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 11:29:37.404 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:37.404 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:37.404 INFO [12246]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 11:29:37.404 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:37.416 INFO [12246]: COREGRADE is stopping... -- 11:29:37.416 DEBUG [12246]: Closing database connection -- 11:29:37.416 SQL [12246]: pgsql_close() -- 11:29:37.482 INFO [12246]: COREGRADE is starting... -- 11:29:37.482 INFO [12246]: Version from config: 1.0 -- 11:29:37.482 DEBUG [12246]: Connecting to database... -- 11:29:37.482 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:37.482 SQL [12246]: pgsql_db_connect() -- 11:29:37.486 DEBUG [12246]: Database connection successful -- 11:29:37.486 INFO [12246]: _SERVER found -- 11:29:37.486 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 11:29:37.486 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:37.486 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:37.486 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 11:29:37.486 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:37.498 INFO [12246]: COREGRADE is stopping... -- 11:29:37.498 DEBUG [12246]: Closing database connection -- 11:29:37.498 SQL [12246]: pgsql_close() -- 11:29:37.565 INFO [12246]: COREGRADE is starting... -- 11:29:37.565 INFO [12246]: Version from config: 1.0 -- 11:29:37.565 DEBUG [12246]: Connecting to database... -- 11:29:37.565 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:37.565 SQL [12246]: pgsql_db_connect() -- 11:29:37.569 DEBUG [12246]: Database connection successful -- 11:29:37.569 INFO [12246]: _SERVER found -- 11:29:37.569 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 11:29:37.569 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:37.569 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:37.569 INFO [12246]: QUERY_STRING = /assets/js/pages/picker_date.js -- 11:29:37.569 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:37.581 INFO [12246]: COREGRADE is stopping... -- 11:29:37.581 DEBUG [12246]: Closing database connection -- 11:29:37.581 SQL [12246]: pgsql_close() -- 11:29:37.646 INFO [12246]: COREGRADE is starting... -- 11:29:37.647 INFO [12246]: Version from config: 1.0 -- 11:29:37.647 DEBUG [12246]: Connecting to database... -- 11:29:37.647 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:37.647 SQL [12246]: pgsql_db_connect() -- 11:29:37.651 DEBUG [12246]: Database connection successful -- 11:29:37.651 INFO [12246]: _SERVER found -- 11:29:37.651 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 11:29:37.651 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:37.651 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:37.651 INFO [12246]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 11:29:37.651 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:37.662 INFO [12246]: COREGRADE is stopping... -- 11:29:37.662 DEBUG [12246]: Closing database connection -- 11:29:37.662 SQL [12246]: pgsql_close() -- 11:29:37.728 INFO [12246]: COREGRADE is starting... -- 11:29:37.728 INFO [12246]: Version from config: 1.0 -- 11:29:37.728 DEBUG [12246]: Connecting to database... -- 11:29:37.728 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:37.728 SQL [12246]: pgsql_db_connect() -- 11:29:37.732 DEBUG [12246]: Database connection successful -- 11:29:37.732 INFO [12246]: _SERVER found -- 11:29:37.732 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 11:29:37.732 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:37.732 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:37.732 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 11:29:37.732 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:37.744 INFO [12246]: COREGRADE is stopping... -- 11:29:37.744 DEBUG [12246]: Closing database connection -- 11:29:37.744 SQL [12246]: pgsql_close() -- 11:29:37.809 INFO [12246]: COREGRADE is starting... -- 11:29:37.810 INFO [12246]: Version from config: 1.0 -- 11:29:37.810 DEBUG [12246]: Connecting to database... -- 11:29:37.810 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:37.810 SQL [12246]: pgsql_db_connect() -- 11:29:37.814 DEBUG [12246]: Database connection successful -- 11:29:37.814 INFO [12246]: _SERVER found -- 11:29:37.814 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 11:29:37.814 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:37.814 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:37.814 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 11:29:37.814 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:37.826 INFO [12246]: COREGRADE is stopping... -- 11:29:37.826 DEBUG [12246]: Closing database connection -- 11:29:37.826 SQL [12246]: pgsql_close() -- 11:29:37.891 INFO [12246]: COREGRADE is starting... -- 11:29:37.892 INFO [12246]: Version from config: 1.0 -- 11:29:37.892 DEBUG [12246]: Connecting to database... -- 11:29:37.892 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:37.892 SQL [12246]: pgsql_db_connect() -- 11:29:37.896 DEBUG [12246]: Database connection successful -- 11:29:37.896 INFO [12246]: _SERVER found -- 11:29:37.896 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 11:29:37.896 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:37.896 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:37.896 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 11:29:37.896 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:37.907 INFO [12246]: COREGRADE is stopping... -- 11:29:37.907 DEBUG [12246]: Closing database connection -- 11:29:37.907 SQL [12246]: pgsql_close() -- 11:29:37.973 INFO [12246]: COREGRADE is starting... -- 11:29:37.973 INFO [12246]: Version from config: 1.0 -- 11:29:37.973 DEBUG [12246]: Connecting to database... -- 11:29:37.973 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:37.973 SQL [12246]: pgsql_db_connect() -- 11:29:37.977 DEBUG [12246]: Database connection successful -- 11:29:37.977 INFO [12246]: _SERVER found -- 11:29:37.977 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 11:29:37.977 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:37.977 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:37.977 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 11:29:37.977 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:37.989 INFO [12246]: COREGRADE is stopping... -- 11:29:37.989 DEBUG [12246]: Closing database connection -- 11:29:37.989 SQL [12246]: pgsql_close() -- 11:29:38.065 INFO [12246]: COREGRADE is starting... -- 11:29:38.066 INFO [12246]: Version from config: 1.0 -- 11:29:38.066 DEBUG [12246]: Connecting to database... -- 11:29:38.066 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:38.066 SQL [12246]: pgsql_db_connect() -- 11:29:38.070 DEBUG [12246]: Database connection successful -- 11:29:38.070 INFO [12246]: _SERVER found -- 11:29:38.070 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 11:29:38.070 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:38.070 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:38.070 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 11:29:38.070 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:38.081 INFO [12246]: COREGRADE is stopping... -- 11:29:38.081 DEBUG [12246]: Closing database connection -- 11:29:38.081 SQL [12246]: pgsql_close() -- 11:29:38.147 INFO [12246]: COREGRADE is starting... -- 11:29:38.148 INFO [12246]: Version from config: 1.0 -- 11:29:38.148 DEBUG [12246]: Connecting to database... -- 11:29:38.148 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:38.148 SQL [12246]: pgsql_db_connect() -- 11:29:38.152 DEBUG [12246]: Database connection successful -- 11:29:38.152 INFO [12246]: _SERVER found -- 11:29:38.152 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 11:29:38.152 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:38.152 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:38.152 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 11:29:38.152 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:38.163 INFO [12246]: COREGRADE is stopping... -- 11:29:38.163 DEBUG [12246]: Closing database connection -- 11:29:38.163 SQL [12246]: pgsql_close() -- 11:29:38.231 INFO [12246]: COREGRADE is starting... -- 11:29:38.231 INFO [12246]: Version from config: 1.0 -- 11:29:38.231 DEBUG [12246]: Connecting to database... -- 11:29:38.231 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:38.231 SQL [12246]: pgsql_db_connect() -- 11:29:38.235 DEBUG [12246]: Database connection successful -- 11:29:38.235 INFO [12246]: _SERVER found -- 11:29:38.235 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 11:29:38.235 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:29:38.235 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:29:38.235 INFO [12246]: QUERY_STRING = /assets/customjs/general.js -- 11:29:38.235 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:29:38.247 INFO [12246]: COREGRADE is stopping... -- 11:29:38.247 DEBUG [12246]: Closing database connection -- 11:29:38.247 SQL [12246]: pgsql_close() -- 11:49:38.463 INFO [12334]: COREGRADE is starting... -- 11:49:38.463 INFO [12334]: Version from config: 1.0 -- 11:49:38.463 DEBUG [12334]: Connecting to database... -- 11:49:38.463 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:38.463 SQL [12334]: pgsql_db_connect() -- 11:49:38.468 DEBUG [12334]: Database connection successful -- 11:49:38.468 INFO [12334]: _SERVER found -- 11:49:38.468 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 11:49:38.468 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:38.468 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=g06oh33i8567ogfied4sqf4b4l2h9v4m -- 11:49:38.468 INFO [12334]: QUERY_STRING = /logout -- 11:49:38.468 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:38.503 INFO [12334]: COREGRADE is stopping... -- 11:49:38.504 DEBUG [12334]: Closing database connection -- 11:49:38.504 SQL [12334]: pgsql_close() -- 11:49:38.581 INFO [12334]: COREGRADE is starting... -- 11:49:38.581 INFO [12334]: Version from config: 1.0 -- 11:49:38.581 DEBUG [12334]: Connecting to database... -- 11:49:38.581 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:38.581 SQL [12334]: pgsql_db_connect() -- 11:49:38.585 DEBUG [12334]: Database connection successful -- 11:49:38.585 INFO [12334]: _SERVER found -- 11:49:38.585 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 11:49:38.585 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:38.585 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:38.585 INFO [12334]: QUERY_STRING = /start -- 11:49:38.585 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:38.620 INFO [12334]: COREGRADE is stopping... -- 11:49:38.620 DEBUG [12334]: Closing database connection -- 11:49:38.620 SQL [12334]: pgsql_close() -- 11:49:38.744 INFO [12249]: COREGRADE is starting... -- 11:49:38.745 INFO [12249]: Version from config: 1.0 -- 11:49:38.745 DEBUG [12249]: Connecting to database... -- 11:49:38.745 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:38.745 SQL [12249]: pgsql_db_connect() -- 11:49:38.749 DEBUG [12249]: Database connection successful -- 11:49:38.749 INFO [12249]: _SERVER found -- 11:49:38.749 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 11:49:38.749 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:38.749 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:38.749 INFO [12249]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 11:49:38.749 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:38.763 INFO [12249]: COREGRADE is stopping... -- 11:49:38.763 DEBUG [12249]: Closing database connection -- 11:49:38.763 SQL [12249]: pgsql_close() -- 11:49:38.763 INFO [12334]: COREGRADE is starting... -- 11:49:38.763 INFO [12334]: Version from config: 1.0 -- 11:49:38.763 DEBUG [12334]: Connecting to database... -- 11:49:38.763 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:38.763 SQL [12334]: pgsql_db_connect() -- 11:49:38.767 DEBUG [12334]: Database connection successful -- 11:49:38.767 INFO [12334]: _SERVER found -- 11:49:38.767 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 11:49:38.767 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:38.767 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:38.767 INFO [12334]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 11:49:38.767 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:38.779 INFO [12334]: COREGRADE is stopping... -- 11:49:38.779 DEBUG [12334]: Closing database connection -- 11:49:38.779 SQL [12334]: pgsql_close() -- 11:49:38.819 INFO [12248]: COREGRADE is starting... -- 11:49:38.819 INFO [12248]: Version from config: 1.0 -- 11:49:38.819 DEBUG [12248]: Connecting to database... -- 11:49:38.819 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:38.819 SQL [12248]: pgsql_db_connect() -- 11:49:38.824 DEBUG [12248]: Database connection successful -- 11:49:38.824 INFO [12248]: _SERVER found -- 11:49:38.824 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 11:49:38.824 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:38.824 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:38.824 INFO [12248]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 11:49:38.824 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:38.837 INFO [12248]: COREGRADE is stopping... -- 11:49:38.837 DEBUG [12248]: Closing database connection -- 11:49:38.837 SQL [12248]: pgsql_close() -- 11:49:38.841 INFO [12249]: COREGRADE is starting... -- 11:49:38.841 INFO [12249]: Version from config: 1.0 -- 11:49:38.841 DEBUG [12249]: Connecting to database... -- 11:49:38.841 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:38.841 SQL [12249]: pgsql_db_connect() -- 11:49:38.844 INFO [12334]: COREGRADE is starting... -- 11:49:38.844 INFO [12334]: Version from config: 1.0 -- 11:49:38.844 DEBUG [12334]: Connecting to database... -- 11:49:38.844 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:38.844 SQL [12334]: pgsql_db_connect() -- 11:49:38.845 DEBUG [12249]: Database connection successful -- 11:49:38.845 INFO [12249]: _SERVER found -- 11:49:38.845 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 11:49:38.845 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:38.845 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:38.845 INFO [12249]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 11:49:38.845 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:38.857 INFO [12249]: COREGRADE is stopping... -- 11:49:38.857 DEBUG [12249]: Closing database connection -- 11:49:38.857 SQL [12249]: pgsql_close() -- 11:49:38.848 DEBUG [12334]: Database connection successful -- 11:49:38.848 INFO [12334]: _SERVER found -- 11:49:38.848 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 11:49:38.848 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:38.848 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:38.848 INFO [12334]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 11:49:38.848 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:38.859 INFO [12334]: COREGRADE is stopping... -- 11:49:38.859 DEBUG [12334]: Closing database connection -- 11:49:38.859 SQL [12334]: pgsql_close() -- 11:49:38.919 INFO [12248]: COREGRADE is starting... -- 11:49:38.919 INFO [12248]: Version from config: 1.0 -- 11:49:38.919 DEBUG [12248]: Connecting to database... -- 11:49:38.919 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:38.919 SQL [12248]: pgsql_db_connect() -- 11:49:38.924 INFO [12334]: COREGRADE is starting... -- 11:49:38.924 INFO [12334]: Version from config: 1.0 -- 11:49:38.924 DEBUG [12334]: Connecting to database... -- 11:49:38.924 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:38.924 SQL [12334]: pgsql_db_connect() -- 11:49:38.923 DEBUG [12248]: Database connection successful -- 11:49:38.923 INFO [12248]: _SERVER found -- 11:49:38.923 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 11:49:38.923 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:38.923 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:38.923 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 11:49:38.924 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:38.935 INFO [12248]: COREGRADE is stopping... -- 11:49:38.935 DEBUG [12248]: Closing database connection -- 11:49:38.935 SQL [12248]: pgsql_close() -- 11:49:38.935 INFO [12249]: COREGRADE is starting... -- 11:49:38.935 INFO [12249]: Version from config: 1.0 -- 11:49:38.935 DEBUG [12249]: Connecting to database... -- 11:49:38.935 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:38.936 SQL [12249]: pgsql_db_connect() -- 11:49:38.928 DEBUG [12334]: Database connection successful -- 11:49:38.928 INFO [12334]: _SERVER found -- 11:49:38.928 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 11:49:38.928 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:38.928 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:38.928 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 11:49:38.928 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:38.940 INFO [12334]: COREGRADE is stopping... -- 11:49:38.940 DEBUG [12334]: Closing database connection -- 11:49:38.940 SQL [12334]: pgsql_close() -- 11:49:38.940 DEBUG [12249]: Database connection successful -- 11:49:38.940 INFO [12249]: _SERVER found -- 11:49:38.940 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 11:49:38.940 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:38.940 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:38.940 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 11:49:38.940 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:38.951 INFO [12249]: COREGRADE is stopping... -- 11:49:38.951 DEBUG [12249]: Closing database connection -- 11:49:38.951 SQL [12249]: pgsql_close() -- 11:49:39.005 INFO [12334]: COREGRADE is starting... -- 11:49:39.005 INFO [12334]: Version from config: 1.0 -- 11:49:39.005 DEBUG [12334]: Connecting to database... -- 11:49:39.005 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:39.005 SQL [12334]: pgsql_db_connect() -- 11:49:39.016 INFO [12248]: COREGRADE is starting... -- 11:49:39.016 INFO [12248]: Version from config: 1.0 -- 11:49:39.016 DEBUG [12248]: Connecting to database... -- 11:49:39.016 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:39.016 SQL [12248]: pgsql_db_connect() -- 11:49:39.010 DEBUG [12334]: Database connection successful -- 11:49:39.010 INFO [12334]: _SERVER found -- 11:49:39.010 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 11:49:39.010 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:39.010 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:39.010 INFO [12334]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 11:49:39.010 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:39.021 INFO [12334]: COREGRADE is stopping... -- 11:49:39.021 DEBUG [12334]: Closing database connection -- 11:49:39.021 SQL [12334]: pgsql_close() -- 11:49:39.030 INFO [12249]: COREGRADE is starting... -- 11:49:39.030 INFO [12249]: Version from config: 1.0 -- 11:49:39.030 DEBUG [12249]: Connecting to database... -- 11:49:39.030 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:39.030 SQL [12249]: pgsql_db_connect() -- 11:49:39.020 DEBUG [12248]: Database connection successful -- 11:49:39.020 INFO [12248]: _SERVER found -- 11:49:39.020 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 11:49:39.020 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:39.020 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:39.020 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 11:49:39.020 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:39.033 INFO [12248]: COREGRADE is stopping... -- 11:49:39.033 DEBUG [12248]: Closing database connection -- 11:49:39.033 SQL [12248]: pgsql_close() -- 11:49:39.046 DEBUG [12249]: Database connection successful -- 11:49:39.046 INFO [12249]: _SERVER found -- 11:49:39.046 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 11:49:39.046 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:39.046 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:39.046 INFO [12249]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 11:49:39.046 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:39.068 INFO [12249]: COREGRADE is stopping... -- 11:49:39.068 DEBUG [12249]: Closing database connection -- 11:49:39.068 SQL [12249]: pgsql_close() -- 11:49:39.091 INFO [12334]: COREGRADE is starting... -- 11:49:39.091 INFO [12334]: Version from config: 1.0 -- 11:49:39.091 DEBUG [12334]: Connecting to database... -- 11:49:39.091 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:39.091 SQL [12334]: pgsql_db_connect() -- 11:49:39.095 DEBUG [12334]: Database connection successful -- 11:49:39.095 INFO [12334]: _SERVER found -- 11:49:39.095 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 11:49:39.095 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:39.095 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:39.095 INFO [12334]: QUERY_STRING = /assets/js/pages/dashboard.js -- 11:49:39.095 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:39.107 INFO [12334]: COREGRADE is stopping... -- 11:49:39.107 DEBUG [12334]: Closing database connection -- 11:49:39.107 SQL [12334]: pgsql_close() -- 11:49:39.114 INFO [12248]: COREGRADE is starting... -- 11:49:39.114 INFO [12248]: Version from config: 1.0 -- 11:49:39.114 DEBUG [12248]: Connecting to database... -- 11:49:39.114 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:39.114 SQL [12248]: pgsql_db_connect() -- 11:49:39.118 DEBUG [12248]: Database connection successful -- 11:49:39.118 INFO [12248]: _SERVER found -- 11:49:39.118 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 11:49:39.118 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:39.118 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:39.118 INFO [12248]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 11:49:39.118 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:39.130 INFO [12248]: COREGRADE is stopping... -- 11:49:39.130 DEBUG [12248]: Closing database connection -- 11:49:39.130 SQL [12248]: pgsql_close() -- 11:49:39.135 INFO [12249]: COREGRADE is starting... -- 11:49:39.135 INFO [12249]: Version from config: 1.0 -- 11:49:39.135 DEBUG [12249]: Connecting to database... -- 11:49:39.136 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:39.136 SQL [12249]: pgsql_db_connect() -- 11:49:39.140 DEBUG [12249]: Database connection successful -- 11:49:39.140 INFO [12249]: _SERVER found -- 11:49:39.140 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 11:49:39.140 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:39.140 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:39.140 INFO [12249]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 11:49:39.140 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:39.151 INFO [12249]: COREGRADE is stopping... -- 11:49:39.151 DEBUG [12249]: Closing database connection -- 11:49:39.151 SQL [12249]: pgsql_close() -- 11:49:39.176 INFO [12334]: COREGRADE is starting... -- 11:49:39.176 INFO [12334]: Version from config: 1.0 -- 11:49:39.176 DEBUG [12334]: Connecting to database... -- 11:49:39.176 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:39.176 SQL [12334]: pgsql_db_connect() -- 11:49:39.181 DEBUG [12334]: Database connection successful -- 11:49:39.181 INFO [12334]: _SERVER found -- 11:49:39.181 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 11:49:39.181 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:39.181 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:39.181 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 11:49:39.181 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:39.192 INFO [12334]: COREGRADE is stopping... -- 11:49:39.192 DEBUG [12334]: Closing database connection -- 11:49:39.192 SQL [12334]: pgsql_close() -- 11:49:39.200 INFO [12248]: COREGRADE is starting... -- 11:49:39.200 INFO [12248]: Version from config: 1.0 -- 11:49:39.200 DEBUG [12248]: Connecting to database... -- 11:49:39.200 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:39.200 SQL [12248]: pgsql_db_connect() -- 11:49:39.204 DEBUG [12248]: Database connection successful -- 11:49:39.204 INFO [12248]: _SERVER found -- 11:49:39.204 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 11:49:39.204 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:39.204 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:39.204 INFO [12248]: QUERY_STRING = /assets/js/pages/picker_date.js -- 11:49:39.204 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:39.216 INFO [12248]: COREGRADE is stopping... -- 11:49:39.216 DEBUG [12248]: Closing database connection -- 11:49:39.216 SQL [12248]: pgsql_close() -- 11:49:39.217 INFO [12249]: COREGRADE is starting... -- 11:49:39.218 INFO [12249]: Version from config: 1.0 -- 11:49:39.218 DEBUG [12249]: Connecting to database... -- 11:49:39.218 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:39.218 SQL [12249]: pgsql_db_connect() -- 11:49:39.222 DEBUG [12249]: Database connection successful -- 11:49:39.222 INFO [12249]: _SERVER found -- 11:49:39.222 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 11:49:39.222 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:39.222 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:39.222 INFO [12249]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 11:49:39.222 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:39.233 INFO [12249]: COREGRADE is stopping... -- 11:49:39.233 DEBUG [12249]: Closing database connection -- 11:49:39.233 SQL [12249]: pgsql_close() -- 11:49:39.257 INFO [12334]: COREGRADE is starting... -- 11:49:39.257 INFO [12334]: Version from config: 1.0 -- 11:49:39.257 DEBUG [12334]: Connecting to database... -- 11:49:39.257 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:39.257 SQL [12334]: pgsql_db_connect() -- 11:49:39.261 DEBUG [12334]: Database connection successful -- 11:49:39.261 INFO [12334]: _SERVER found -- 11:49:39.261 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 11:49:39.261 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:39.261 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:39.261 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 11:49:39.261 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:39.273 INFO [12334]: COREGRADE is stopping... -- 11:49:39.273 DEBUG [12334]: Closing database connection -- 11:49:39.273 SQL [12334]: pgsql_close() -- 11:49:39.286 INFO [12248]: COREGRADE is starting... -- 11:49:39.286 INFO [12248]: Version from config: 1.0 -- 11:49:39.286 DEBUG [12248]: Connecting to database... -- 11:49:39.286 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:39.286 SQL [12248]: pgsql_db_connect() -- 11:49:39.299 INFO [12249]: COREGRADE is starting... -- 11:49:39.300 INFO [12249]: Version from config: 1.0 -- 11:49:39.300 DEBUG [12249]: Connecting to database... -- 11:49:39.300 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:39.300 SQL [12249]: pgsql_db_connect() -- 11:49:39.290 DEBUG [12248]: Database connection successful -- 11:49:39.290 INFO [12248]: _SERVER found -- 11:49:39.290 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 11:49:39.290 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:39.290 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:39.290 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 11:49:39.290 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:39.301 INFO [12248]: COREGRADE is stopping... -- 11:49:39.301 DEBUG [12248]: Closing database connection -- 11:49:39.301 SQL [12248]: pgsql_close() -- 11:49:39.304 DEBUG [12249]: Database connection successful -- 11:49:39.304 INFO [12249]: _SERVER found -- 11:49:39.304 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 11:49:39.304 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:39.304 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:39.304 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 11:49:39.304 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:39.316 INFO [12249]: COREGRADE is stopping... -- 11:49:39.316 DEBUG [12249]: Closing database connection -- 11:49:39.316 SQL [12249]: pgsql_close() -- 11:49:39.337 INFO [12334]: COREGRADE is starting... -- 11:49:39.338 INFO [12334]: Version from config: 1.0 -- 11:49:39.338 DEBUG [12334]: Connecting to database... -- 11:49:39.338 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:39.338 SQL [12334]: pgsql_db_connect() -- 11:49:39.342 DEBUG [12334]: Database connection successful -- 11:49:39.342 INFO [12334]: _SERVER found -- 11:49:39.342 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 11:49:39.342 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:39.342 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:39.342 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 11:49:39.342 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:39.353 INFO [12334]: COREGRADE is stopping... -- 11:49:39.353 DEBUG [12334]: Closing database connection -- 11:49:39.353 SQL [12334]: pgsql_close() -- 11:49:39.371 INFO [12248]: COREGRADE is starting... -- 11:49:39.371 INFO [12248]: Version from config: 1.0 -- 11:49:39.371 DEBUG [12248]: Connecting to database... -- 11:49:39.371 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:39.371 SQL [12248]: pgsql_db_connect() -- 11:49:39.382 INFO [12249]: COREGRADE is starting... -- 11:49:39.382 INFO [12249]: Version from config: 1.0 -- 11:49:39.382 DEBUG [12249]: Connecting to database... -- 11:49:39.382 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:39.382 SQL [12249]: pgsql_db_connect() -- 11:49:39.375 DEBUG [12248]: Database connection successful -- 11:49:39.375 INFO [12248]: _SERVER found -- 11:49:39.375 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 11:49:39.375 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:39.375 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:39.375 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 11:49:39.375 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:39.386 INFO [12248]: COREGRADE is stopping... -- 11:49:39.386 DEBUG [12248]: Closing database connection -- 11:49:39.386 SQL [12248]: pgsql_close() -- 11:49:39.387 DEBUG [12249]: Database connection successful -- 11:49:39.387 INFO [12249]: _SERVER found -- 11:49:39.387 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 11:49:39.387 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:39.387 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:39.387 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 11:49:39.387 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:39.398 INFO [12249]: COREGRADE is stopping... -- 11:49:39.398 DEBUG [12249]: Closing database connection -- 11:49:39.398 SQL [12249]: pgsql_close() -- 11:49:39.418 INFO [12334]: COREGRADE is starting... -- 11:49:39.418 INFO [12334]: Version from config: 1.0 -- 11:49:39.418 DEBUG [12334]: Connecting to database... -- 11:49:39.418 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:39.418 SQL [12334]: pgsql_db_connect() -- 11:49:39.422 DEBUG [12334]: Database connection successful -- 11:49:39.422 INFO [12334]: _SERVER found -- 11:49:39.422 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 11:49:39.422 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:39.422 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:39.422 INFO [12334]: QUERY_STRING = /assets/customjs/general.js -- 11:49:39.422 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:39.434 INFO [12334]: COREGRADE is stopping... -- 11:49:39.434 DEBUG [12334]: Closing database connection -- 11:49:39.434 SQL [12334]: pgsql_close() -- 11:49:39.456 INFO [12248]: COREGRADE is starting... -- 11:49:39.456 INFO [12248]: Version from config: 1.0 -- 11:49:39.456 DEBUG [12248]: Connecting to database... -- 11:49:39.456 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:39.456 SQL [12248]: pgsql_db_connect() -- 11:49:39.460 DEBUG [12248]: Database connection successful -- 11:49:39.460 INFO [12248]: _SERVER found -- 11:49:39.460 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 11:49:39.460 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:39.460 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:39.460 INFO [12248]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 11:49:39.460 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:39.472 INFO [12248]: COREGRADE is stopping... -- 11:49:39.472 DEBUG [12248]: Closing database connection -- 11:49:39.472 SQL [12248]: pgsql_close() -- 11:49:39.542 INFO [12248]: COREGRADE is starting... -- 11:49:39.543 INFO [12248]: Version from config: 1.0 -- 11:49:39.543 DEBUG [12248]: Connecting to database... -- 11:49:39.543 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:39.543 SQL [12248]: pgsql_db_connect() -- 11:49:39.547 DEBUG [12248]: Database connection successful -- 11:49:39.547 INFO [12248]: _SERVER found -- 11:49:39.547 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 11:49:39.547 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:39.547 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:39.547 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 11:49:39.547 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:39.558 INFO [12248]: COREGRADE is stopping... -- 11:49:39.559 DEBUG [12248]: Closing database connection -- 11:49:39.559 SQL [12248]: pgsql_close() -- 11:49:39.628 INFO [12248]: COREGRADE is starting... -- 11:49:39.629 INFO [12248]: Version from config: 1.0 -- 11:49:39.629 DEBUG [12248]: Connecting to database... -- 11:49:39.629 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:39.629 SQL [12248]: pgsql_db_connect() -- 11:49:39.633 DEBUG [12248]: Database connection successful -- 11:49:39.633 INFO [12248]: _SERVER found -- 11:49:39.633 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 11:49:39.633 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:39.633 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:39.633 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 11:49:39.633 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:39.644 INFO [12248]: COREGRADE is stopping... -- 11:49:39.645 DEBUG [12248]: Closing database connection -- 11:49:39.645 SQL [12248]: pgsql_close() -- 11:49:39.714 INFO [12248]: COREGRADE is starting... -- 11:49:39.714 INFO [12248]: Version from config: 1.0 -- 11:49:39.714 DEBUG [12248]: Connecting to database... -- 11:49:39.714 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:39.714 SQL [12248]: pgsql_db_connect() -- 11:49:39.719 DEBUG [12248]: Database connection successful -- 11:49:39.719 INFO [12248]: _SERVER found -- 11:49:39.719 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 11:49:39.719 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:39.719 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:39.719 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 11:49:39.719 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:39.730 INFO [12248]: COREGRADE is stopping... -- 11:49:39.730 DEBUG [12248]: Closing database connection -- 11:49:39.730 SQL [12248]: pgsql_close() -- 11:49:39.800 INFO [12248]: COREGRADE is starting... -- 11:49:39.801 INFO [12248]: Version from config: 1.0 -- 11:49:39.801 DEBUG [12248]: Connecting to database... -- 11:49:39.801 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:39.801 SQL [12248]: pgsql_db_connect() -- 11:49:39.805 DEBUG [12248]: Database connection successful -- 11:49:39.805 INFO [12248]: _SERVER found -- 11:49:39.805 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 11:49:39.805 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:39.805 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:39.805 INFO [12248]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 11:49:39.805 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:39.816 INFO [12248]: COREGRADE is stopping... -- 11:49:39.816 DEBUG [12248]: Closing database connection -- 11:49:39.816 SQL [12248]: pgsql_close() -- 11:49:39.886 INFO [12248]: COREGRADE is starting... -- 11:49:39.886 INFO [12248]: Version from config: 1.0 -- 11:49:39.886 DEBUG [12248]: Connecting to database... -- 11:49:39.886 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:39.886 SQL [12248]: pgsql_db_connect() -- 11:49:39.890 DEBUG [12248]: Database connection successful -- 11:49:39.891 INFO [12248]: _SERVER found -- 11:49:39.891 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 11:49:39.891 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:39.891 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:39.891 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 11:49:39.891 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:39.902 INFO [12248]: COREGRADE is stopping... -- 11:49:39.902 DEBUG [12248]: Closing database connection -- 11:49:39.902 SQL [12248]: pgsql_close() -- 11:49:39.972 INFO [12248]: COREGRADE is starting... -- 11:49:39.973 INFO [12248]: Version from config: 1.0 -- 11:49:39.973 DEBUG [12248]: Connecting to database... -- 11:49:39.973 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:39.973 SQL [12248]: pgsql_db_connect() -- 11:49:39.977 DEBUG [12248]: Database connection successful -- 11:49:39.977 INFO [12248]: _SERVER found -- 11:49:39.977 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 11:49:39.977 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:39.977 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:39.977 INFO [12248]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 11:49:39.977 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:39.988 INFO [12248]: COREGRADE is stopping... -- 11:49:39.988 DEBUG [12248]: Closing database connection -- 11:49:39.988 SQL [12248]: pgsql_close() -- 11:49:40.059 INFO [12248]: COREGRADE is starting... -- 11:49:40.059 INFO [12248]: Version from config: 1.0 -- 11:49:40.059 DEBUG [12248]: Connecting to database... -- 11:49:40.059 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:40.059 SQL [12248]: pgsql_db_connect() -- 11:49:40.063 DEBUG [12248]: Database connection successful -- 11:49:40.063 INFO [12248]: _SERVER found -- 11:49:40.063 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 11:49:40.063 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:40.063 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:40.063 INFO [12248]: QUERY_STRING = /assets/js/pages/dashboard.js -- 11:49:40.063 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:40.075 INFO [12248]: COREGRADE is stopping... -- 11:49:40.075 DEBUG [12248]: Closing database connection -- 11:49:40.075 SQL [12248]: pgsql_close() -- 11:49:40.145 INFO [12248]: COREGRADE is starting... -- 11:49:40.145 INFO [12248]: Version from config: 1.0 -- 11:49:40.145 DEBUG [12248]: Connecting to database... -- 11:49:40.145 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:40.145 SQL [12248]: pgsql_db_connect() -- 11:49:40.150 DEBUG [12248]: Database connection successful -- 11:49:40.150 INFO [12248]: _SERVER found -- 11:49:40.150 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 11:49:40.150 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:40.150 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:40.150 INFO [12248]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 11:49:40.150 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:40.161 INFO [12248]: COREGRADE is stopping... -- 11:49:40.161 DEBUG [12248]: Closing database connection -- 11:49:40.161 SQL [12248]: pgsql_close() -- 11:49:40.231 INFO [12248]: COREGRADE is starting... -- 11:49:40.231 INFO [12248]: Version from config: 1.0 -- 11:49:40.231 DEBUG [12248]: Connecting to database... -- 11:49:40.231 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:40.231 SQL [12248]: pgsql_db_connect() -- 11:49:40.236 DEBUG [12248]: Database connection successful -- 11:49:40.236 INFO [12248]: _SERVER found -- 11:49:40.236 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 11:49:40.236 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:40.236 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:40.236 INFO [12248]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 11:49:40.236 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:40.247 INFO [12248]: COREGRADE is stopping... -- 11:49:40.247 DEBUG [12248]: Closing database connection -- 11:49:40.247 SQL [12248]: pgsql_close() -- 11:49:40.317 INFO [12248]: COREGRADE is starting... -- 11:49:40.317 INFO [12248]: Version from config: 1.0 -- 11:49:40.317 DEBUG [12248]: Connecting to database... -- 11:49:40.317 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:40.317 SQL [12248]: pgsql_db_connect() -- 11:49:40.321 DEBUG [12248]: Database connection successful -- 11:49:40.321 INFO [12248]: _SERVER found -- 11:49:40.321 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 11:49:40.321 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:40.321 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:40.321 INFO [12248]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 11:49:40.321 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:40.333 INFO [12248]: COREGRADE is stopping... -- 11:49:40.333 DEBUG [12248]: Closing database connection -- 11:49:40.333 SQL [12248]: pgsql_close() -- 11:49:40.402 INFO [12248]: COREGRADE is starting... -- 11:49:40.402 INFO [12248]: Version from config: 1.0 -- 11:49:40.402 DEBUG [12248]: Connecting to database... -- 11:49:40.402 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:40.402 SQL [12248]: pgsql_db_connect() -- 11:49:40.406 DEBUG [12248]: Database connection successful -- 11:49:40.406 INFO [12248]: _SERVER found -- 11:49:40.406 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 11:49:40.406 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:40.406 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:40.406 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 11:49:40.406 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:40.418 INFO [12248]: COREGRADE is stopping... -- 11:49:40.418 DEBUG [12248]: Closing database connection -- 11:49:40.418 SQL [12248]: pgsql_close() -- 11:49:40.488 INFO [12248]: COREGRADE is starting... -- 11:49:40.489 INFO [12248]: Version from config: 1.0 -- 11:49:40.489 DEBUG [12248]: Connecting to database... -- 11:49:40.489 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:40.489 SQL [12248]: pgsql_db_connect() -- 11:49:40.493 DEBUG [12248]: Database connection successful -- 11:49:40.493 INFO [12248]: _SERVER found -- 11:49:40.493 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 11:49:40.493 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:40.493 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:40.493 INFO [12248]: QUERY_STRING = /assets/js/pages/picker_date.js -- 11:49:40.493 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:40.505 INFO [12248]: COREGRADE is stopping... -- 11:49:40.505 DEBUG [12248]: Closing database connection -- 11:49:40.505 SQL [12248]: pgsql_close() -- 11:49:40.574 INFO [12248]: COREGRADE is starting... -- 11:49:40.575 INFO [12248]: Version from config: 1.0 -- 11:49:40.575 DEBUG [12248]: Connecting to database... -- 11:49:40.575 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:40.575 SQL [12248]: pgsql_db_connect() -- 11:49:40.579 DEBUG [12248]: Database connection successful -- 11:49:40.579 INFO [12248]: _SERVER found -- 11:49:40.579 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 11:49:40.579 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:40.579 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:40.579 INFO [12248]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 11:49:40.579 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:40.590 INFO [12248]: COREGRADE is stopping... -- 11:49:40.591 DEBUG [12248]: Closing database connection -- 11:49:40.591 SQL [12248]: pgsql_close() -- 11:49:40.660 INFO [12248]: COREGRADE is starting... -- 11:49:40.660 INFO [12248]: Version from config: 1.0 -- 11:49:40.660 DEBUG [12248]: Connecting to database... -- 11:49:40.660 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:40.660 SQL [12248]: pgsql_db_connect() -- 11:49:40.664 DEBUG [12248]: Database connection successful -- 11:49:40.665 INFO [12248]: _SERVER found -- 11:49:40.665 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 11:49:40.665 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:40.665 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:40.665 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 11:49:40.665 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:40.676 INFO [12248]: COREGRADE is stopping... -- 11:49:40.676 DEBUG [12248]: Closing database connection -- 11:49:40.676 SQL [12248]: pgsql_close() -- 11:49:40.746 INFO [12248]: COREGRADE is starting... -- 11:49:40.746 INFO [12248]: Version from config: 1.0 -- 11:49:40.746 DEBUG [12248]: Connecting to database... -- 11:49:40.746 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:40.746 SQL [12248]: pgsql_db_connect() -- 11:49:40.750 DEBUG [12248]: Database connection successful -- 11:49:40.750 INFO [12248]: _SERVER found -- 11:49:40.750 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 11:49:40.750 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:40.750 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:40.750 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 11:49:40.750 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:40.761 INFO [12248]: COREGRADE is stopping... -- 11:49:40.762 DEBUG [12248]: Closing database connection -- 11:49:40.762 SQL [12248]: pgsql_close() -- 11:49:40.831 INFO [12248]: COREGRADE is starting... -- 11:49:40.831 INFO [12248]: Version from config: 1.0 -- 11:49:40.831 DEBUG [12248]: Connecting to database... -- 11:49:40.831 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:40.831 SQL [12248]: pgsql_db_connect() -- 11:49:40.835 DEBUG [12248]: Database connection successful -- 11:49:40.835 INFO [12248]: _SERVER found -- 11:49:40.835 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 11:49:40.835 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:40.835 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:40.836 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 11:49:40.836 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:40.847 INFO [12248]: COREGRADE is stopping... -- 11:49:40.847 DEBUG [12248]: Closing database connection -- 11:49:40.847 SQL [12248]: pgsql_close() -- 11:49:40.917 INFO [12248]: COREGRADE is starting... -- 11:49:40.917 INFO [12248]: Version from config: 1.0 -- 11:49:40.917 DEBUG [12248]: Connecting to database... -- 11:49:40.917 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:40.917 SQL [12248]: pgsql_db_connect() -- 11:49:40.921 DEBUG [12248]: Database connection successful -- 11:49:40.921 INFO [12248]: _SERVER found -- 11:49:40.921 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 11:49:40.921 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:40.921 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:40.921 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 11:49:40.921 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:40.933 INFO [12248]: COREGRADE is stopping... -- 11:49:40.933 DEBUG [12248]: Closing database connection -- 11:49:40.933 SQL [12248]: pgsql_close() -- 11:49:41.012 INFO [12248]: COREGRADE is starting... -- 11:49:41.012 INFO [12248]: Version from config: 1.0 -- 11:49:41.012 DEBUG [12248]: Connecting to database... -- 11:49:41.012 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:41.012 SQL [12248]: pgsql_db_connect() -- 11:49:41.017 DEBUG [12248]: Database connection successful -- 11:49:41.017 INFO [12248]: _SERVER found -- 11:49:41.017 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 11:49:41.017 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:41.017 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:41.017 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 11:49:41.017 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:41.028 INFO [12248]: COREGRADE is stopping... -- 11:49:41.028 DEBUG [12248]: Closing database connection -- 11:49:41.028 SQL [12248]: pgsql_close() -- 11:49:41.098 INFO [12248]: COREGRADE is starting... -- 11:49:41.098 INFO [12248]: Version from config: 1.0 -- 11:49:41.098 DEBUG [12248]: Connecting to database... -- 11:49:41.098 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:41.098 SQL [12248]: pgsql_db_connect() -- 11:49:41.103 DEBUG [12248]: Database connection successful -- 11:49:41.103 INFO [12248]: _SERVER found -- 11:49:41.103 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 11:49:41.103 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:41.103 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:41.103 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 11:49:41.103 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:41.114 INFO [12248]: COREGRADE is stopping... -- 11:49:41.114 DEBUG [12248]: Closing database connection -- 11:49:41.114 SQL [12248]: pgsql_close() -- 11:49:41.186 INFO [12248]: COREGRADE is starting... -- 11:49:41.186 INFO [12248]: Version from config: 1.0 -- 11:49:41.186 DEBUG [12248]: Connecting to database... -- 11:49:41.186 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:41.186 SQL [12248]: pgsql_db_connect() -- 11:49:41.190 DEBUG [12248]: Database connection successful -- 11:49:41.190 INFO [12248]: _SERVER found -- 11:49:41.190 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 11:49:41.190 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 11:49:41.190 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 11:49:41.190 INFO [12248]: QUERY_STRING = /assets/customjs/general.js -- 11:49:41.190 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 11:49:41.202 INFO [12248]: COREGRADE is stopping... -- 11:49:41.202 DEBUG [12248]: Closing database connection -- 11:49:41.202 SQL [12248]: pgsql_close() -- 12:09:41.429 INFO [12305]: COREGRADE is starting... -- 12:09:41.429 INFO [12305]: Version from config: 1.0 -- 12:09:41.429 DEBUG [12305]: Connecting to database... -- 12:09:41.429 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:41.429 SQL [12305]: pgsql_db_connect() -- 12:09:41.433 DEBUG [12305]: Database connection successful -- 12:09:41.433 INFO [12305]: _SERVER found -- 12:09:41.433 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 12:09:41.433 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:41.433 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=sbn83ve23mqd5e9uev7bej5l1ngp87u2 -- 12:09:41.433 INFO [12305]: QUERY_STRING = /logout -- 12:09:41.433 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:41.468 INFO [12305]: COREGRADE is stopping... -- 12:09:41.468 DEBUG [12305]: Closing database connection -- 12:09:41.468 SQL [12305]: pgsql_close() -- 12:09:41.549 INFO [12305]: COREGRADE is starting... -- 12:09:41.549 INFO [12305]: Version from config: 1.0 -- 12:09:41.549 DEBUG [12305]: Connecting to database... -- 12:09:41.549 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:41.549 SQL [12305]: pgsql_db_connect() -- 12:09:41.553 DEBUG [12305]: Database connection successful -- 12:09:41.553 INFO [12305]: _SERVER found -- 12:09:41.553 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 12:09:41.553 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:41.553 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:41.553 INFO [12305]: QUERY_STRING = /start -- 12:09:41.553 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:41.587 INFO [12305]: COREGRADE is stopping... -- 12:09:41.587 DEBUG [12305]: Closing database connection -- 12:09:41.587 SQL [12305]: pgsql_close() -- 12:09:41.738 INFO [12247]: COREGRADE is starting... -- 12:09:41.738 INFO [12247]: Version from config: 1.0 -- 12:09:41.738 DEBUG [12247]: Connecting to database... -- 12:09:41.738 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:41.738 SQL [12247]: pgsql_db_connect() -- 12:09:41.740 INFO [12305]: COREGRADE is starting... -- 12:09:41.740 INFO [12305]: Version from config: 1.0 -- 12:09:41.740 DEBUG [12305]: Connecting to database... -- 12:09:41.741 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:41.741 SQL [12305]: pgsql_db_connect() -- 12:09:41.742 DEBUG [12247]: Database connection successful -- 12:09:41.742 INFO [12247]: _SERVER found -- 12:09:41.742 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 12:09:41.742 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:41.742 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:41.742 INFO [12247]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 12:09:41.742 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:41.756 INFO [12247]: COREGRADE is stopping... -- 12:09:41.756 DEBUG [12247]: Closing database connection -- 12:09:41.744 DEBUG [12305]: Database connection successful -- 12:09:41.744 INFO [12305]: _SERVER found -- 12:09:41.744 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 12:09:41.745 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:41.745 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:41.745 INFO [12305]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 12:09:41.745 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:41.756 INFO [12305]: COREGRADE is stopping... -- 12:09:41.756 SQL [12247]: pgsql_close() -- 12:09:41.756 DEBUG [12305]: Closing database connection -- 12:09:41.756 SQL [12305]: pgsql_close() -- 12:09:41.812 INFO [12250]: COREGRADE is starting... -- 12:09:41.813 INFO [12250]: Version from config: 1.0 -- 12:09:41.813 DEBUG [12250]: Connecting to database... -- 12:09:41.813 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:41.813 SQL [12250]: pgsql_db_connect() -- 12:09:41.823 INFO [12305]: COREGRADE is starting... -- 12:09:41.823 INFO [12305]: Version from config: 1.0 -- 12:09:41.823 DEBUG [12305]: Connecting to database... -- 12:09:41.823 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:41.823 SQL [12305]: pgsql_db_connect() -- 12:09:41.817 DEBUG [12250]: Database connection successful -- 12:09:41.817 INFO [12250]: _SERVER found -- 12:09:41.817 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 12:09:41.817 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:41.817 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:41.817 INFO [12250]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 12:09:41.817 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:41.830 INFO [12250]: COREGRADE is stopping... -- 12:09:41.830 DEBUG [12250]: Closing database connection -- 12:09:41.830 SQL [12250]: pgsql_close() -- 12:09:41.834 INFO [12247]: COREGRADE is starting... -- 12:09:41.834 INFO [12247]: Version from config: 1.0 -- 12:09:41.834 DEBUG [12247]: Connecting to database... -- 12:09:41.834 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:41.834 SQL [12247]: pgsql_db_connect() -- 12:09:41.827 DEBUG [12305]: Database connection successful -- 12:09:41.827 INFO [12305]: _SERVER found -- 12:09:41.827 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 12:09:41.827 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:41.827 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:41.827 INFO [12305]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 12:09:41.827 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:41.839 INFO [12305]: COREGRADE is stopping... -- 12:09:41.839 DEBUG [12305]: Closing database connection -- 12:09:41.839 SQL [12305]: pgsql_close() -- 12:09:41.838 DEBUG [12247]: Database connection successful -- 12:09:41.838 INFO [12247]: _SERVER found -- 12:09:41.838 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 12:09:41.838 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:41.838 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:41.838 INFO [12247]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 12:09:41.838 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:41.850 INFO [12247]: COREGRADE is stopping... -- 12:09:41.850 DEBUG [12247]: Closing database connection -- 12:09:41.850 SQL [12247]: pgsql_close() -- 12:09:41.904 INFO [12305]: COREGRADE is starting... -- 12:09:41.904 INFO [12305]: Version from config: 1.0 -- 12:09:41.904 DEBUG [12305]: Connecting to database... -- 12:09:41.904 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:41.904 SQL [12305]: pgsql_db_connect() -- 12:09:41.916 INFO [12250]: COREGRADE is starting... -- 12:09:41.916 INFO [12250]: Version from config: 1.0 -- 12:09:41.916 DEBUG [12250]: Connecting to database... -- 12:09:41.916 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:41.916 SQL [12250]: pgsql_db_connect() -- 12:09:41.908 DEBUG [12305]: Database connection successful -- 12:09:41.909 INFO [12305]: _SERVER found -- 12:09:41.909 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 12:09:41.909 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:41.909 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:41.909 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 12:09:41.909 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:41.920 INFO [12305]: COREGRADE is stopping... -- 12:09:41.920 DEBUG [12305]: Closing database connection -- 12:09:41.920 SQL [12305]: pgsql_close() -- 12:09:41.927 INFO [12247]: COREGRADE is starting... -- 12:09:41.927 INFO [12247]: Version from config: 1.0 -- 12:09:41.927 DEBUG [12247]: Connecting to database... -- 12:09:41.927 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:41.927 SQL [12247]: pgsql_db_connect() -- 12:09:41.920 DEBUG [12250]: Database connection successful -- 12:09:41.920 INFO [12250]: _SERVER found -- 12:09:41.920 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 12:09:41.920 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:41.920 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:41.920 INFO [12250]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 12:09:41.920 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:41.932 INFO [12250]: COREGRADE is stopping... -- 12:09:41.932 DEBUG [12250]: Closing database connection -- 12:09:41.932 SQL [12250]: pgsql_close() -- 12:09:41.931 DEBUG [12247]: Database connection successful -- 12:09:41.931 INFO [12247]: _SERVER found -- 12:09:41.931 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 12:09:41.931 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:41.931 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:41.931 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 12:09:41.931 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:41.943 INFO [12247]: COREGRADE is stopping... -- 12:09:41.943 DEBUG [12247]: Closing database connection -- 12:09:41.943 SQL [12247]: pgsql_close() -- 12:09:41.990 INFO [12305]: COREGRADE is starting... -- 12:09:41.990 INFO [12305]: Version from config: 1.0 -- 12:09:41.990 DEBUG [12305]: Connecting to database... -- 12:09:41.990 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:41.990 SQL [12305]: pgsql_db_connect() -- 12:09:41.994 DEBUG [12305]: Database connection successful -- 12:09:41.994 INFO [12305]: _SERVER found -- 12:09:41.994 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 12:09:41.994 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:41.994 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:41.994 INFO [12305]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 12:09:41.994 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:42.006 INFO [12305]: COREGRADE is stopping... -- 12:09:42.006 DEBUG [12305]: Closing database connection -- 12:09:42.006 SQL [12305]: pgsql_close() -- 12:09:42.016 INFO [12250]: COREGRADE is starting... -- 12:09:42.016 INFO [12250]: Version from config: 1.0 -- 12:09:42.016 DEBUG [12250]: Connecting to database... -- 12:09:42.016 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:42.016 SQL [12250]: pgsql_db_connect() -- 12:09:42.020 INFO [12247]: COREGRADE is starting... -- 12:09:42.021 INFO [12247]: Version from config: 1.0 -- 12:09:42.021 DEBUG [12247]: Connecting to database... -- 12:09:42.021 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:42.021 SQL [12247]: pgsql_db_connect() -- 12:09:42.020 DEBUG [12250]: Database connection successful -- 12:09:42.020 INFO [12250]: _SERVER found -- 12:09:42.020 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 12:09:42.020 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:42.020 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:42.020 INFO [12250]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 12:09:42.020 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:42.032 INFO [12250]: COREGRADE is stopping... -- 12:09:42.032 DEBUG [12250]: Closing database connection -- 12:09:42.032 SQL [12250]: pgsql_close() -- 12:09:42.025 DEBUG [12247]: Database connection successful -- 12:09:42.025 INFO [12247]: _SERVER found -- 12:09:42.025 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 12:09:42.025 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:42.025 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:42.025 INFO [12247]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 12:09:42.025 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:42.036 INFO [12247]: COREGRADE is stopping... -- 12:09:42.036 DEBUG [12247]: Closing database connection -- 12:09:42.036 SQL [12247]: pgsql_close() -- 12:09:42.071 INFO [12305]: COREGRADE is starting... -- 12:09:42.071 INFO [12305]: Version from config: 1.0 -- 12:09:42.071 DEBUG [12305]: Connecting to database... -- 12:09:42.071 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:42.071 SQL [12305]: pgsql_db_connect() -- 12:09:42.075 DEBUG [12305]: Database connection successful -- 12:09:42.076 INFO [12305]: _SERVER found -- 12:09:42.076 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 12:09:42.076 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:42.076 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:42.076 INFO [12305]: QUERY_STRING = /assets/js/pages/dashboard.js -- 12:09:42.076 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:42.087 INFO [12305]: COREGRADE is stopping... -- 12:09:42.087 DEBUG [12305]: Closing database connection -- 12:09:42.087 SQL [12305]: pgsql_close() -- 12:09:42.104 INFO [12247]: COREGRADE is starting... -- 12:09:42.105 INFO [12247]: Version from config: 1.0 -- 12:09:42.105 DEBUG [12247]: Connecting to database... -- 12:09:42.105 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:42.105 SQL [12247]: pgsql_db_connect() -- 12:09:42.115 INFO [12250]: COREGRADE is starting... -- 12:09:42.115 INFO [12250]: Version from config: 1.0 -- 12:09:42.115 DEBUG [12250]: Connecting to database... -- 12:09:42.115 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:42.115 SQL [12250]: pgsql_db_connect() -- 12:09:42.109 DEBUG [12247]: Database connection successful -- 12:09:42.109 INFO [12247]: _SERVER found -- 12:09:42.109 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 12:09:42.109 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:42.109 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:42.109 INFO [12247]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 12:09:42.109 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:42.120 INFO [12247]: COREGRADE is stopping... -- 12:09:42.120 DEBUG [12247]: Closing database connection -- 12:09:42.120 SQL [12247]: pgsql_close() -- 12:09:42.119 DEBUG [12250]: Database connection successful -- 12:09:42.119 INFO [12250]: _SERVER found -- 12:09:42.119 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 12:09:42.119 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:42.119 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:42.119 INFO [12250]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 12:09:42.119 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:42.131 INFO [12250]: COREGRADE is stopping... -- 12:09:42.131 DEBUG [12250]: Closing database connection -- 12:09:42.131 SQL [12250]: pgsql_close() -- 12:09:42.152 INFO [12305]: COREGRADE is starting... -- 12:09:42.153 INFO [12305]: Version from config: 1.0 -- 12:09:42.153 DEBUG [12305]: Connecting to database... -- 12:09:42.153 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:42.153 SQL [12305]: pgsql_db_connect() -- 12:09:42.157 DEBUG [12305]: Database connection successful -- 12:09:42.157 INFO [12305]: _SERVER found -- 12:09:42.157 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 12:09:42.157 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:42.157 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:42.157 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 12:09:42.157 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:42.168 INFO [12305]: COREGRADE is stopping... -- 12:09:42.168 DEBUG [12305]: Closing database connection -- 12:09:42.168 SQL [12305]: pgsql_close() -- 12:09:42.187 INFO [12247]: COREGRADE is starting... -- 12:09:42.187 INFO [12247]: Version from config: 1.0 -- 12:09:42.187 DEBUG [12247]: Connecting to database... -- 12:09:42.187 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:42.187 SQL [12247]: pgsql_db_connect() -- 12:09:42.191 DEBUG [12247]: Database connection successful -- 12:09:42.191 INFO [12247]: _SERVER found -- 12:09:42.191 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 12:09:42.191 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:42.191 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:42.191 INFO [12247]: QUERY_STRING = /assets/js/pages/picker_date.js -- 12:09:42.191 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:42.202 INFO [12247]: COREGRADE is stopping... -- 12:09:42.202 DEBUG [12247]: Closing database connection -- 12:09:42.203 SQL [12247]: pgsql_close() -- 12:09:42.203 INFO [12250]: COREGRADE is starting... -- 12:09:42.203 INFO [12250]: Version from config: 1.0 -- 12:09:42.203 DEBUG [12250]: Connecting to database... -- 12:09:42.204 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:42.204 SQL [12250]: pgsql_db_connect() -- 12:09:42.207 DEBUG [12250]: Database connection successful -- 12:09:42.207 INFO [12250]: _SERVER found -- 12:09:42.207 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 12:09:42.207 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:42.207 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:42.207 INFO [12250]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 12:09:42.207 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:42.219 INFO [12250]: COREGRADE is stopping... -- 12:09:42.219 DEBUG [12250]: Closing database connection -- 12:09:42.219 SQL [12250]: pgsql_close() -- 12:09:42.233 INFO [12305]: COREGRADE is starting... -- 12:09:42.233 INFO [12305]: Version from config: 1.0 -- 12:09:42.233 DEBUG [12305]: Connecting to database... -- 12:09:42.233 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:42.233 SQL [12305]: pgsql_db_connect() -- 12:09:42.237 DEBUG [12305]: Database connection successful -- 12:09:42.237 INFO [12305]: _SERVER found -- 12:09:42.237 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 12:09:42.237 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:42.237 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:42.237 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 12:09:42.237 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:42.249 INFO [12305]: COREGRADE is stopping... -- 12:09:42.249 DEBUG [12305]: Closing database connection -- 12:09:42.249 SQL [12305]: pgsql_close() -- 12:09:42.268 INFO [12247]: COREGRADE is starting... -- 12:09:42.268 INFO [12247]: Version from config: 1.0 -- 12:09:42.268 DEBUG [12247]: Connecting to database... -- 12:09:42.268 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:42.268 SQL [12247]: pgsql_db_connect() -- 12:09:42.272 DEBUG [12247]: Database connection successful -- 12:09:42.272 INFO [12247]: _SERVER found -- 12:09:42.272 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 12:09:42.272 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:42.272 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:42.272 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 12:09:42.272 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:42.284 INFO [12247]: COREGRADE is stopping... -- 12:09:42.284 DEBUG [12247]: Closing database connection -- 12:09:42.284 SQL [12247]: pgsql_close() -- 12:09:42.291 INFO [12250]: COREGRADE is starting... -- 12:09:42.291 INFO [12250]: Version from config: 1.0 -- 12:09:42.291 DEBUG [12250]: Connecting to database... -- 12:09:42.291 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:42.291 SQL [12250]: pgsql_db_connect() -- 12:09:42.295 DEBUG [12250]: Database connection successful -- 12:09:42.295 INFO [12250]: _SERVER found -- 12:09:42.295 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 12:09:42.295 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:42.295 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:42.295 INFO [12250]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 12:09:42.295 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:42.307 INFO [12250]: COREGRADE is stopping... -- 12:09:42.307 DEBUG [12250]: Closing database connection -- 12:09:42.307 SQL [12250]: pgsql_close() -- 12:09:42.314 INFO [12305]: COREGRADE is starting... -- 12:09:42.314 INFO [12305]: Version from config: 1.0 -- 12:09:42.314 DEBUG [12305]: Connecting to database... -- 12:09:42.314 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:42.314 SQL [12305]: pgsql_db_connect() -- 12:09:42.318 DEBUG [12305]: Database connection successful -- 12:09:42.318 INFO [12305]: _SERVER found -- 12:09:42.318 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 12:09:42.318 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:42.318 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:42.318 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 12:09:42.318 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:42.330 INFO [12305]: COREGRADE is stopping... -- 12:09:42.330 DEBUG [12305]: Closing database connection -- 12:09:42.330 SQL [12305]: pgsql_close() -- 12:09:42.350 INFO [12247]: COREGRADE is starting... -- 12:09:42.350 INFO [12247]: Version from config: 1.0 -- 12:09:42.351 DEBUG [12247]: Connecting to database... -- 12:09:42.351 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:42.351 SQL [12247]: pgsql_db_connect() -- 12:09:42.355 DEBUG [12247]: Database connection successful -- 12:09:42.355 INFO [12247]: _SERVER found -- 12:09:42.355 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 12:09:42.355 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:42.355 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:42.355 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 12:09:42.355 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:42.366 INFO [12247]: COREGRADE is stopping... -- 12:09:42.366 DEBUG [12247]: Closing database connection -- 12:09:42.366 SQL [12247]: pgsql_close() -- 12:09:42.379 INFO [12250]: COREGRADE is starting... -- 12:09:42.379 INFO [12250]: Version from config: 1.0 -- 12:09:42.379 DEBUG [12250]: Connecting to database... -- 12:09:42.379 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:42.379 SQL [12250]: pgsql_db_connect() -- 12:09:42.383 DEBUG [12250]: Database connection successful -- 12:09:42.383 INFO [12250]: _SERVER found -- 12:09:42.383 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 12:09:42.383 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:42.383 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:42.383 INFO [12250]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 12:09:42.383 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:42.394 INFO [12250]: COREGRADE is stopping... -- 12:09:42.394 DEBUG [12250]: Closing database connection -- 12:09:42.394 SQL [12250]: pgsql_close() -- 12:09:42.395 INFO [12305]: COREGRADE is starting... -- 12:09:42.395 INFO [12305]: Version from config: 1.0 -- 12:09:42.395 DEBUG [12305]: Connecting to database... -- 12:09:42.395 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:42.395 SQL [12305]: pgsql_db_connect() -- 12:09:42.399 DEBUG [12305]: Database connection successful -- 12:09:42.399 INFO [12305]: _SERVER found -- 12:09:42.399 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 12:09:42.399 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:42.399 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:42.399 INFO [12305]: QUERY_STRING = /assets/customjs/general.js -- 12:09:42.399 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:42.411 INFO [12305]: COREGRADE is stopping... -- 12:09:42.411 DEBUG [12305]: Closing database connection -- 12:09:42.411 SQL [12305]: pgsql_close() -- 12:09:42.432 INFO [12247]: COREGRADE is starting... -- 12:09:42.433 INFO [12247]: Version from config: 1.0 -- 12:09:42.433 DEBUG [12247]: Connecting to database... -- 12:09:42.433 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:42.433 SQL [12247]: pgsql_db_connect() -- 12:09:42.436 DEBUG [12247]: Database connection successful -- 12:09:42.437 INFO [12247]: _SERVER found -- 12:09:42.437 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 12:09:42.437 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:42.437 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:42.437 INFO [12247]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 12:09:42.437 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:42.448 INFO [12247]: COREGRADE is stopping... -- 12:09:42.448 DEBUG [12247]: Closing database connection -- 12:09:42.448 SQL [12247]: pgsql_close() -- 12:09:42.515 INFO [12247]: COREGRADE is starting... -- 12:09:42.515 INFO [12247]: Version from config: 1.0 -- 12:09:42.515 DEBUG [12247]: Connecting to database... -- 12:09:42.515 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:42.515 SQL [12247]: pgsql_db_connect() -- 12:09:42.519 DEBUG [12247]: Database connection successful -- 12:09:42.519 INFO [12247]: _SERVER found -- 12:09:42.519 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 12:09:42.519 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:42.519 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:42.519 INFO [12247]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 12:09:42.519 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:42.530 INFO [12247]: COREGRADE is stopping... -- 12:09:42.530 DEBUG [12247]: Closing database connection -- 12:09:42.530 SQL [12247]: pgsql_close() -- 12:09:42.597 INFO [12247]: COREGRADE is starting... -- 12:09:42.598 INFO [12247]: Version from config: 1.0 -- 12:09:42.598 DEBUG [12247]: Connecting to database... -- 12:09:42.598 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:42.598 SQL [12247]: pgsql_db_connect() -- 12:09:42.602 DEBUG [12247]: Database connection successful -- 12:09:42.602 INFO [12247]: _SERVER found -- 12:09:42.602 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 12:09:42.602 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:42.602 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:42.602 INFO [12247]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 12:09:42.602 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:42.613 INFO [12247]: COREGRADE is stopping... -- 12:09:42.613 DEBUG [12247]: Closing database connection -- 12:09:42.613 SQL [12247]: pgsql_close() -- 12:09:42.680 INFO [12247]: COREGRADE is starting... -- 12:09:42.681 INFO [12247]: Version from config: 1.0 -- 12:09:42.681 DEBUG [12247]: Connecting to database... -- 12:09:42.681 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:42.681 SQL [12247]: pgsql_db_connect() -- 12:09:42.685 DEBUG [12247]: Database connection successful -- 12:09:42.685 INFO [12247]: _SERVER found -- 12:09:42.685 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 12:09:42.685 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:42.685 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:42.685 INFO [12247]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 12:09:42.685 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:42.696 INFO [12247]: COREGRADE is stopping... -- 12:09:42.696 DEBUG [12247]: Closing database connection -- 12:09:42.696 SQL [12247]: pgsql_close() -- 12:09:42.763 INFO [12247]: COREGRADE is starting... -- 12:09:42.763 INFO [12247]: Version from config: 1.0 -- 12:09:42.763 DEBUG [12247]: Connecting to database... -- 12:09:42.763 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:42.763 SQL [12247]: pgsql_db_connect() -- 12:09:42.768 DEBUG [12247]: Database connection successful -- 12:09:42.768 INFO [12247]: _SERVER found -- 12:09:42.768 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 12:09:42.768 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:42.768 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:42.768 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 12:09:42.768 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:42.779 INFO [12247]: COREGRADE is stopping... -- 12:09:42.779 DEBUG [12247]: Closing database connection -- 12:09:42.779 SQL [12247]: pgsql_close() -- 12:09:42.846 INFO [12247]: COREGRADE is starting... -- 12:09:42.846 INFO [12247]: Version from config: 1.0 -- 12:09:42.846 DEBUG [12247]: Connecting to database... -- 12:09:42.846 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:42.846 SQL [12247]: pgsql_db_connect() -- 12:09:42.850 DEBUG [12247]: Database connection successful -- 12:09:42.850 INFO [12247]: _SERVER found -- 12:09:42.850 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 12:09:42.850 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:42.850 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:42.850 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 12:09:42.850 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:42.861 INFO [12247]: COREGRADE is stopping... -- 12:09:42.861 DEBUG [12247]: Closing database connection -- 12:09:42.861 SQL [12247]: pgsql_close() -- 12:09:42.928 INFO [12247]: COREGRADE is starting... -- 12:09:42.928 INFO [12247]: Version from config: 1.0 -- 12:09:42.928 DEBUG [12247]: Connecting to database... -- 12:09:42.928 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:42.928 SQL [12247]: pgsql_db_connect() -- 12:09:42.933 DEBUG [12247]: Database connection successful -- 12:09:42.933 INFO [12247]: _SERVER found -- 12:09:42.933 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 12:09:42.933 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:42.933 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:42.933 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 12:09:42.933 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:42.944 INFO [12247]: COREGRADE is stopping... -- 12:09:42.944 DEBUG [12247]: Closing database connection -- 12:09:42.944 SQL [12247]: pgsql_close() -- 12:09:43.011 INFO [12247]: COREGRADE is starting... -- 12:09:43.011 INFO [12247]: Version from config: 1.0 -- 12:09:43.011 DEBUG [12247]: Connecting to database... -- 12:09:43.011 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:43.011 SQL [12247]: pgsql_db_connect() -- 12:09:43.015 DEBUG [12247]: Database connection successful -- 12:09:43.015 INFO [12247]: _SERVER found -- 12:09:43.015 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 12:09:43.015 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:43.015 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:43.015 INFO [12247]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 12:09:43.015 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:43.027 INFO [12247]: COREGRADE is stopping... -- 12:09:43.027 DEBUG [12247]: Closing database connection -- 12:09:43.027 SQL [12247]: pgsql_close() -- 12:09:43.093 INFO [12247]: COREGRADE is starting... -- 12:09:43.094 INFO [12247]: Version from config: 1.0 -- 12:09:43.094 DEBUG [12247]: Connecting to database... -- 12:09:43.094 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:43.094 SQL [12247]: pgsql_db_connect() -- 12:09:43.098 DEBUG [12247]: Database connection successful -- 12:09:43.098 INFO [12247]: _SERVER found -- 12:09:43.098 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 12:09:43.098 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:43.098 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:43.098 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 12:09:43.098 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:43.109 INFO [12247]: COREGRADE is stopping... -- 12:09:43.109 DEBUG [12247]: Closing database connection -- 12:09:43.109 SQL [12247]: pgsql_close() -- 12:09:43.176 INFO [12247]: COREGRADE is starting... -- 12:09:43.176 INFO [12247]: Version from config: 1.0 -- 12:09:43.176 DEBUG [12247]: Connecting to database... -- 12:09:43.176 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:43.176 SQL [12247]: pgsql_db_connect() -- 12:09:43.180 DEBUG [12247]: Database connection successful -- 12:09:43.180 INFO [12247]: _SERVER found -- 12:09:43.180 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 12:09:43.180 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:43.180 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:43.180 INFO [12247]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 12:09:43.180 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:43.192 INFO [12247]: COREGRADE is stopping... -- 12:09:43.192 DEBUG [12247]: Closing database connection -- 12:09:43.192 SQL [12247]: pgsql_close() -- 12:09:43.258 INFO [12247]: COREGRADE is starting... -- 12:09:43.259 INFO [12247]: Version from config: 1.0 -- 12:09:43.259 DEBUG [12247]: Connecting to database... -- 12:09:43.259 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:43.259 SQL [12247]: pgsql_db_connect() -- 12:09:43.263 DEBUG [12247]: Database connection successful -- 12:09:43.263 INFO [12247]: _SERVER found -- 12:09:43.263 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 12:09:43.263 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:43.263 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:43.263 INFO [12247]: QUERY_STRING = /assets/js/pages/dashboard.js -- 12:09:43.263 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:43.274 INFO [12247]: COREGRADE is stopping... -- 12:09:43.274 DEBUG [12247]: Closing database connection -- 12:09:43.274 SQL [12247]: pgsql_close() -- 12:09:43.342 INFO [12247]: COREGRADE is starting... -- 12:09:43.342 INFO [12247]: Version from config: 1.0 -- 12:09:43.342 DEBUG [12247]: Connecting to database... -- 12:09:43.342 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:43.342 SQL [12247]: pgsql_db_connect() -- 12:09:43.346 DEBUG [12247]: Database connection successful -- 12:09:43.346 INFO [12247]: _SERVER found -- 12:09:43.346 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 12:09:43.346 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:43.346 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:43.346 INFO [12247]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 12:09:43.346 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:43.358 INFO [12247]: COREGRADE is stopping... -- 12:09:43.358 DEBUG [12247]: Closing database connection -- 12:09:43.358 SQL [12247]: pgsql_close() -- 12:09:43.424 INFO [12247]: COREGRADE is starting... -- 12:09:43.424 INFO [12247]: Version from config: 1.0 -- 12:09:43.424 DEBUG [12247]: Connecting to database... -- 12:09:43.424 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:43.425 SQL [12247]: pgsql_db_connect() -- 12:09:43.429 DEBUG [12247]: Database connection successful -- 12:09:43.429 INFO [12247]: _SERVER found -- 12:09:43.429 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 12:09:43.429 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:43.429 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:43.429 INFO [12247]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 12:09:43.429 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:43.440 INFO [12247]: COREGRADE is stopping... -- 12:09:43.440 DEBUG [12247]: Closing database connection -- 12:09:43.440 SQL [12247]: pgsql_close() -- 12:09:43.507 INFO [12247]: COREGRADE is starting... -- 12:09:43.507 INFO [12247]: Version from config: 1.0 -- 12:09:43.507 DEBUG [12247]: Connecting to database... -- 12:09:43.507 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:43.507 SQL [12247]: pgsql_db_connect() -- 12:09:43.511 DEBUG [12247]: Database connection successful -- 12:09:43.511 INFO [12247]: _SERVER found -- 12:09:43.511 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 12:09:43.511 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:43.511 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:43.511 INFO [12247]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 12:09:43.511 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:43.522 INFO [12247]: COREGRADE is stopping... -- 12:09:43.522 DEBUG [12247]: Closing database connection -- 12:09:43.522 SQL [12247]: pgsql_close() -- 12:09:43.589 INFO [12247]: COREGRADE is starting... -- 12:09:43.590 INFO [12247]: Version from config: 1.0 -- 12:09:43.590 DEBUG [12247]: Connecting to database... -- 12:09:43.590 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:43.590 SQL [12247]: pgsql_db_connect() -- 12:09:43.594 DEBUG [12247]: Database connection successful -- 12:09:43.594 INFO [12247]: _SERVER found -- 12:09:43.594 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 12:09:43.594 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:43.594 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:43.594 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 12:09:43.594 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:43.605 INFO [12247]: COREGRADE is stopping... -- 12:09:43.605 DEBUG [12247]: Closing database connection -- 12:09:43.605 SQL [12247]: pgsql_close() -- 12:09:43.672 INFO [12247]: COREGRADE is starting... -- 12:09:43.672 INFO [12247]: Version from config: 1.0 -- 12:09:43.672 DEBUG [12247]: Connecting to database... -- 12:09:43.672 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:43.672 SQL [12247]: pgsql_db_connect() -- 12:09:43.677 DEBUG [12247]: Database connection successful -- 12:09:43.677 INFO [12247]: _SERVER found -- 12:09:43.677 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 12:09:43.677 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:43.677 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:43.677 INFO [12247]: QUERY_STRING = /assets/js/pages/picker_date.js -- 12:09:43.677 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:43.688 INFO [12247]: COREGRADE is stopping... -- 12:09:43.688 DEBUG [12247]: Closing database connection -- 12:09:43.688 SQL [12247]: pgsql_close() -- 12:09:43.755 INFO [12247]: COREGRADE is starting... -- 12:09:43.755 INFO [12247]: Version from config: 1.0 -- 12:09:43.755 DEBUG [12247]: Connecting to database... -- 12:09:43.755 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:43.755 SQL [12247]: pgsql_db_connect() -- 12:09:43.759 DEBUG [12247]: Database connection successful -- 12:09:43.759 INFO [12247]: _SERVER found -- 12:09:43.759 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 12:09:43.759 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:43.759 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:43.759 INFO [12247]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 12:09:43.759 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:43.770 INFO [12247]: COREGRADE is stopping... -- 12:09:43.770 DEBUG [12247]: Closing database connection -- 12:09:43.770 SQL [12247]: pgsql_close() -- 12:09:43.837 INFO [12247]: COREGRADE is starting... -- 12:09:43.837 INFO [12247]: Version from config: 1.0 -- 12:09:43.837 DEBUG [12247]: Connecting to database... -- 12:09:43.837 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:43.837 SQL [12247]: pgsql_db_connect() -- 12:09:43.841 DEBUG [12247]: Database connection successful -- 12:09:43.841 INFO [12247]: _SERVER found -- 12:09:43.841 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 12:09:43.841 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:43.841 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:43.841 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 12:09:43.841 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:43.853 INFO [12247]: COREGRADE is stopping... -- 12:09:43.853 DEBUG [12247]: Closing database connection -- 12:09:43.853 SQL [12247]: pgsql_close() -- 12:09:43.920 INFO [12247]: COREGRADE is starting... -- 12:09:43.920 INFO [12247]: Version from config: 1.0 -- 12:09:43.920 DEBUG [12247]: Connecting to database... -- 12:09:43.920 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:43.920 SQL [12247]: pgsql_db_connect() -- 12:09:43.924 DEBUG [12247]: Database connection successful -- 12:09:43.924 INFO [12247]: _SERVER found -- 12:09:43.924 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 12:09:43.924 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:43.924 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:43.924 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 12:09:43.924 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:43.936 INFO [12247]: COREGRADE is stopping... -- 12:09:43.936 DEBUG [12247]: Closing database connection -- 12:09:43.936 SQL [12247]: pgsql_close() -- 12:09:44.002 INFO [12247]: COREGRADE is starting... -- 12:09:44.003 INFO [12247]: Version from config: 1.0 -- 12:09:44.003 DEBUG [12247]: Connecting to database... -- 12:09:44.003 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:44.003 SQL [12247]: pgsql_db_connect() -- 12:09:44.007 DEBUG [12247]: Database connection successful -- 12:09:44.007 INFO [12247]: _SERVER found -- 12:09:44.007 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 12:09:44.007 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:44.007 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:44.007 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 12:09:44.007 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:44.018 INFO [12247]: COREGRADE is stopping... -- 12:09:44.018 DEBUG [12247]: Closing database connection -- 12:09:44.018 SQL [12247]: pgsql_close() -- 12:09:44.085 INFO [12247]: COREGRADE is starting... -- 12:09:44.085 INFO [12247]: Version from config: 1.0 -- 12:09:44.085 DEBUG [12247]: Connecting to database... -- 12:09:44.085 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:44.085 SQL [12247]: pgsql_db_connect() -- 12:09:44.089 DEBUG [12247]: Database connection successful -- 12:09:44.089 INFO [12247]: _SERVER found -- 12:09:44.089 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 12:09:44.089 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:44.089 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:44.089 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 12:09:44.089 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:44.101 INFO [12247]: COREGRADE is stopping... -- 12:09:44.101 DEBUG [12247]: Closing database connection -- 12:09:44.101 SQL [12247]: pgsql_close() -- 12:09:44.178 INFO [12247]: COREGRADE is starting... -- 12:09:44.178 INFO [12247]: Version from config: 1.0 -- 12:09:44.178 DEBUG [12247]: Connecting to database... -- 12:09:44.178 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:44.178 SQL [12247]: pgsql_db_connect() -- 12:09:44.182 DEBUG [12247]: Database connection successful -- 12:09:44.182 INFO [12247]: _SERVER found -- 12:09:44.182 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 12:09:44.182 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:44.182 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:44.182 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 12:09:44.182 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:44.193 INFO [12247]: COREGRADE is stopping... -- 12:09:44.193 DEBUG [12247]: Closing database connection -- 12:09:44.193 SQL [12247]: pgsql_close() -- 12:09:44.260 INFO [12247]: COREGRADE is starting... -- 12:09:44.260 INFO [12247]: Version from config: 1.0 -- 12:09:44.260 DEBUG [12247]: Connecting to database... -- 12:09:44.260 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:44.260 SQL [12247]: pgsql_db_connect() -- 12:09:44.264 DEBUG [12247]: Database connection successful -- 12:09:44.264 INFO [12247]: _SERVER found -- 12:09:44.264 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 12:09:44.264 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:44.264 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:44.264 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 12:09:44.264 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:44.275 INFO [12247]: COREGRADE is stopping... -- 12:09:44.275 DEBUG [12247]: Closing database connection -- 12:09:44.275 SQL [12247]: pgsql_close() -- 12:09:44.344 INFO [12247]: COREGRADE is starting... -- 12:09:44.344 INFO [12247]: Version from config: 1.0 -- 12:09:44.344 DEBUG [12247]: Connecting to database... -- 12:09:44.344 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:44.344 SQL [12247]: pgsql_db_connect() -- 12:09:44.348 DEBUG [12247]: Database connection successful -- 12:09:44.348 INFO [12247]: _SERVER found -- 12:09:44.348 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 12:09:44.348 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:09:44.348 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:09:44.348 INFO [12247]: QUERY_STRING = /assets/customjs/general.js -- 12:09:44.348 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:09:44.360 INFO [12247]: COREGRADE is stopping... -- 12:09:44.360 DEBUG [12247]: Closing database connection -- 12:09:44.360 SQL [12247]: pgsql_close() -- 12:29:44.578 INFO [12347]: COREGRADE is starting... -- 12:29:44.579 INFO [12347]: Version from config: 1.0 -- 12:29:44.579 DEBUG [12347]: Connecting to database... -- 12:29:44.579 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:44.579 SQL [12347]: pgsql_db_connect() -- 12:29:44.584 DEBUG [12347]: Database connection successful -- 12:29:44.584 INFO [12347]: _SERVER found -- 12:29:44.584 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 12:29:44.584 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:44.584 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=j35lrfn85imff7kh9egbsh662r9n0a08 -- 12:29:44.584 INFO [12347]: QUERY_STRING = /logout -- 12:29:44.584 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:44.621 INFO [12347]: COREGRADE is stopping... -- 12:29:44.621 DEBUG [12347]: Closing database connection -- 12:29:44.621 SQL [12347]: pgsql_close() -- 12:29:44.697 INFO [12347]: COREGRADE is starting... -- 12:29:44.698 INFO [12347]: Version from config: 1.0 -- 12:29:44.698 DEBUG [12347]: Connecting to database... -- 12:29:44.698 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:44.698 SQL [12347]: pgsql_db_connect() -- 12:29:44.702 DEBUG [12347]: Database connection successful -- 12:29:44.702 INFO [12347]: _SERVER found -- 12:29:44.702 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 12:29:44.702 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:44.702 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:44.702 INFO [12347]: QUERY_STRING = /start -- 12:29:44.702 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:44.736 INFO [12347]: COREGRADE is stopping... -- 12:29:44.736 DEBUG [12347]: Closing database connection -- 12:29:44.736 SQL [12347]: pgsql_close() -- 12:29:44.864 INFO [12246]: COREGRADE is starting... -- 12:29:44.864 INFO [12246]: Version from config: 1.0 -- 12:29:44.864 DEBUG [12246]: Connecting to database... -- 12:29:44.864 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:44.864 SQL [12246]: pgsql_db_connect() -- 12:29:44.879 INFO [12347]: COREGRADE is starting... -- 12:29:44.880 INFO [12347]: Version from config: 1.0 -- 12:29:44.880 DEBUG [12347]: Connecting to database... -- 12:29:44.880 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:44.880 SQL [12347]: pgsql_db_connect() -- 12:29:44.868 DEBUG [12246]: Database connection successful -- 12:29:44.868 INFO [12246]: _SERVER found -- 12:29:44.868 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 12:29:44.868 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:44.868 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:44.868 INFO [12246]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 12:29:44.868 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:44.883 INFO [12246]: COREGRADE is stopping... -- 12:29:44.883 DEBUG [12246]: Closing database connection -- 12:29:44.883 SQL [12246]: pgsql_close() -- 12:29:44.884 DEBUG [12347]: Database connection successful -- 12:29:44.884 INFO [12347]: _SERVER found -- 12:29:44.884 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 12:29:44.884 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:44.884 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:44.884 INFO [12347]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 12:29:44.884 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:44.896 INFO [12347]: COREGRADE is stopping... -- 12:29:44.896 DEBUG [12347]: Closing database connection -- 12:29:44.896 SQL [12347]: pgsql_close() -- 12:29:44.923 INFO [12347]: COREGRADE is starting... -- 12:29:44.923 INFO [12347]: Version from config: 1.0 -- 12:29:44.923 DEBUG [12347]: Connecting to database... -- 12:29:44.923 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:44.923 SQL [12347]: pgsql_db_connect() -- 12:29:44.927 DEBUG [12347]: Database connection successful -- 12:29:44.927 INFO [12347]: _SERVER found -- 12:29:44.927 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 12:29:44.927 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:44.927 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:44.927 INFO [12347]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 12:29:44.927 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:44.939 INFO [12347]: COREGRADE is stopping... -- 12:29:44.939 DEBUG [12347]: Closing database connection -- 12:29:44.939 SQL [12347]: pgsql_close() -- 12:29:44.965 INFO [12246]: COREGRADE is starting... -- 12:29:44.965 INFO [12347]: COREGRADE is starting... -- 12:29:44.965 INFO [12246]: Version from config: 1.0 -- 12:29:44.965 DEBUG [12246]: Connecting to database... -- 12:29:44.965 INFO [12347]: Version from config: 1.0 -- 12:29:44.965 DEBUG [12347]: Connecting to database... -- 12:29:44.965 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:44.965 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:44.965 SQL [12246]: pgsql_db_connect() -- 12:29:44.965 SQL [12347]: pgsql_db_connect() -- 12:29:44.970 DEBUG [12347]: Database connection successful -- 12:29:44.970 INFO [12347]: _SERVER found -- 12:29:44.970 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 12:29:44.970 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:44.970 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:44.970 INFO [12347]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 12:29:44.970 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:44.981 INFO [12347]: COREGRADE is stopping... -- 12:29:44.970 DEBUG [12246]: Database connection successful -- 12:29:44.970 INFO [12246]: _SERVER found -- 12:29:44.970 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 12:29:44.970 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:44.970 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:44.970 INFO [12246]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 12:29:44.970 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:44.981 INFO [12246]: COREGRADE is stopping... -- 12:29:44.981 DEBUG [12347]: Closing database connection -- 12:29:44.981 DEBUG [12246]: Closing database connection -- 12:29:44.981 SQL [12347]: pgsql_close() -- 12:29:44.981 SQL [12246]: pgsql_close() -- 12:29:45.016 INFO [12347]: COREGRADE is starting... -- 12:29:45.017 INFO [12347]: Version from config: 1.0 -- 12:29:45.017 DEBUG [12347]: Connecting to database... -- 12:29:45.017 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:45.017 SQL [12347]: pgsql_db_connect() -- 12:29:45.021 DEBUG [12347]: Database connection successful -- 12:29:45.021 INFO [12347]: _SERVER found -- 12:29:45.021 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 12:29:45.021 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:45.021 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:45.021 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 12:29:45.021 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:45.032 INFO [12347]: COREGRADE is stopping... -- 12:29:45.032 DEBUG [12347]: Closing database connection -- 12:29:45.032 SQL [12347]: pgsql_close() -- 12:29:45.046 INFO [12347]: COREGRADE is starting... -- 12:29:45.046 INFO [12347]: Version from config: 1.0 -- 12:29:45.046 DEBUG [12347]: Connecting to database... -- 12:29:45.046 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:45.046 SQL [12347]: pgsql_db_connect() -- 12:29:45.050 DEBUG [12347]: Database connection successful -- 12:29:45.050 INFO [12347]: _SERVER found -- 12:29:45.050 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 12:29:45.050 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:45.050 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:45.050 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 12:29:45.050 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:45.062 INFO [12347]: COREGRADE is stopping... -- 12:29:45.062 DEBUG [12347]: Closing database connection -- 12:29:45.062 SQL [12347]: pgsql_close() -- 12:29:45.064 INFO [12246]: COREGRADE is starting... -- 12:29:45.064 INFO [12246]: Version from config: 1.0 -- 12:29:45.064 DEBUG [12246]: Connecting to database... -- 12:29:45.064 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:45.064 SQL [12246]: pgsql_db_connect() -- 12:29:45.068 DEBUG [12246]: Database connection successful -- 12:29:45.068 INFO [12246]: _SERVER found -- 12:29:45.068 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 12:29:45.068 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:45.068 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:45.068 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 12:29:45.068 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:45.079 INFO [12246]: COREGRADE is stopping... -- 12:29:45.080 DEBUG [12246]: Closing database connection -- 12:29:45.080 SQL [12246]: pgsql_close() -- 12:29:45.110 INFO [12347]: COREGRADE is starting... -- 12:29:45.110 INFO [12347]: Version from config: 1.0 -- 12:29:45.110 DEBUG [12347]: Connecting to database... -- 12:29:45.110 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:45.110 SQL [12347]: pgsql_db_connect() -- 12:29:45.114 DEBUG [12347]: Database connection successful -- 12:29:45.114 INFO [12347]: _SERVER found -- 12:29:45.114 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 12:29:45.114 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:45.114 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:45.114 INFO [12347]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 12:29:45.114 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:45.125 INFO [12347]: COREGRADE is stopping... -- 12:29:45.125 DEBUG [12347]: Closing database connection -- 12:29:45.125 SQL [12347]: pgsql_close() -- 12:29:45.127 INFO [12249]: COREGRADE is starting... -- 12:29:45.128 INFO [12249]: Version from config: 1.0 -- 12:29:45.128 DEBUG [12249]: Connecting to database... -- 12:29:45.128 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:45.128 SQL [12249]: pgsql_db_connect() -- 12:29:45.132 DEBUG [12249]: Database connection successful -- 12:29:45.132 INFO [12249]: _SERVER found -- 12:29:45.132 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 12:29:45.132 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:45.132 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:45.132 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 12:29:45.132 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:45.145 INFO [12249]: COREGRADE is stopping... -- 12:29:45.145 DEBUG [12249]: Closing database connection -- 12:29:45.145 SQL [12249]: pgsql_close() -- 12:29:45.163 INFO [12246]: COREGRADE is starting... -- 12:29:45.163 INFO [12246]: Version from config: 1.0 -- 12:29:45.163 DEBUG [12246]: Connecting to database... -- 12:29:45.163 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:45.163 SQL [12246]: pgsql_db_connect() -- 12:29:45.167 DEBUG [12246]: Database connection successful -- 12:29:45.167 INFO [12246]: _SERVER found -- 12:29:45.167 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 12:29:45.167 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:45.167 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:45.167 INFO [12246]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 12:29:45.167 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:45.178 INFO [12246]: COREGRADE is stopping... -- 12:29:45.178 DEBUG [12246]: Closing database connection -- 12:29:45.178 SQL [12246]: pgsql_close() -- 12:29:45.202 INFO [12249]: COREGRADE is starting... -- 12:29:45.203 INFO [12249]: Version from config: 1.0 -- 12:29:45.203 DEBUG [12249]: Connecting to database... -- 12:29:45.203 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:45.203 SQL [12249]: pgsql_db_connect() -- 12:29:45.209 INFO [12347]: COREGRADE is starting... -- 12:29:45.210 INFO [12347]: Version from config: 1.0 -- 12:29:45.210 DEBUG [12347]: Connecting to database... -- 12:29:45.210 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:45.210 SQL [12347]: pgsql_db_connect() -- 12:29:45.207 DEBUG [12249]: Database connection successful -- 12:29:45.207 INFO [12249]: _SERVER found -- 12:29:45.207 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 12:29:45.207 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:45.207 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:45.207 INFO [12249]: QUERY_STRING = /assets/js/pages/dashboard.js -- 12:29:45.207 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:45.218 INFO [12249]: COREGRADE is stopping... -- 12:29:45.218 DEBUG [12249]: Closing database connection -- 12:29:45.218 SQL [12249]: pgsql_close() -- 12:29:45.214 DEBUG [12347]: Database connection successful -- 12:29:45.214 INFO [12347]: _SERVER found -- 12:29:45.214 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 12:29:45.214 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:45.214 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:45.214 INFO [12347]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 12:29:45.214 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:45.225 INFO [12347]: COREGRADE is stopping... -- 12:29:45.225 DEBUG [12347]: Closing database connection -- 12:29:45.225 SQL [12347]: pgsql_close() -- 12:29:45.251 INFO [12246]: COREGRADE is starting... -- 12:29:45.251 INFO [12246]: Version from config: 1.0 -- 12:29:45.251 DEBUG [12246]: Connecting to database... -- 12:29:45.251 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:45.251 SQL [12246]: pgsql_db_connect() -- 12:29:45.255 DEBUG [12246]: Database connection successful -- 12:29:45.255 INFO [12246]: _SERVER found -- 12:29:45.255 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 12:29:45.255 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:45.255 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:45.255 INFO [12246]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 12:29:45.255 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:45.267 INFO [12246]: COREGRADE is stopping... -- 12:29:45.267 DEBUG [12246]: Closing database connection -- 12:29:45.267 SQL [12246]: pgsql_close() -- 12:29:45.286 INFO [12347]: COREGRADE is starting... -- 12:29:45.286 INFO [12347]: Version from config: 1.0 -- 12:29:45.286 DEBUG [12347]: Connecting to database... -- 12:29:45.286 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:45.286 SQL [12347]: pgsql_db_connect() -- 12:29:45.289 INFO [12249]: COREGRADE is starting... -- 12:29:45.290 INFO [12249]: Version from config: 1.0 -- 12:29:45.290 DEBUG [12249]: Connecting to database... -- 12:29:45.290 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:45.290 SQL [12249]: pgsql_db_connect() -- 12:29:45.290 DEBUG [12347]: Database connection successful -- 12:29:45.290 INFO [12347]: _SERVER found -- 12:29:45.290 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 12:29:45.290 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:45.290 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:45.290 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 12:29:45.290 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:45.302 INFO [12347]: COREGRADE is stopping... -- 12:29:45.302 DEBUG [12347]: Closing database connection -- 12:29:45.302 SQL [12347]: pgsql_close() -- 12:29:45.294 DEBUG [12249]: Database connection successful -- 12:29:45.294 INFO [12249]: _SERVER found -- 12:29:45.294 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 12:29:45.294 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:45.294 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:45.294 INFO [12249]: QUERY_STRING = /assets/js/pages/picker_date.js -- 12:29:45.294 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:45.305 INFO [12249]: COREGRADE is stopping... -- 12:29:45.305 DEBUG [12249]: Closing database connection -- 12:29:45.305 SQL [12249]: pgsql_close() -- 12:29:45.338 INFO [12246]: COREGRADE is starting... -- 12:29:45.338 INFO [12246]: Version from config: 1.0 -- 12:29:45.338 DEBUG [12246]: Connecting to database... -- 12:29:45.338 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:45.338 SQL [12246]: pgsql_db_connect() -- 12:29:45.343 DEBUG [12246]: Database connection successful -- 12:29:45.343 INFO [12246]: _SERVER found -- 12:29:45.343 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 12:29:45.343 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:45.343 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:45.343 INFO [12246]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 12:29:45.343 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:45.354 INFO [12246]: COREGRADE is stopping... -- 12:29:45.354 DEBUG [12246]: Closing database connection -- 12:29:45.354 SQL [12246]: pgsql_close() -- 12:29:45.369 INFO [12249]: COREGRADE is starting... -- 12:29:45.369 INFO [12249]: Version from config: 1.0 -- 12:29:45.369 DEBUG [12249]: Connecting to database... -- 12:29:45.369 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:45.369 SQL [12249]: pgsql_db_connect() -- 12:29:45.369 INFO [12347]: COREGRADE is starting... -- 12:29:45.369 INFO [12347]: Version from config: 1.0 -- 12:29:45.370 DEBUG [12347]: Connecting to database... -- 12:29:45.370 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:45.370 SQL [12347]: pgsql_db_connect() -- 12:29:45.373 DEBUG [12249]: Database connection successful -- 12:29:45.373 INFO [12249]: _SERVER found -- 12:29:45.373 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 12:29:45.373 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:45.373 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:45.373 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 12:29:45.373 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:45.385 INFO [12249]: COREGRADE is stopping... -- 12:29:45.385 DEBUG [12249]: Closing database connection -- 12:29:45.385 SQL [12249]: pgsql_close() -- 12:29:45.373 DEBUG [12347]: Database connection successful -- 12:29:45.373 INFO [12347]: _SERVER found -- 12:29:45.373 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 12:29:45.373 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:45.373 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:45.373 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 12:29:45.373 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:45.385 INFO [12347]: COREGRADE is stopping... -- 12:29:45.385 DEBUG [12347]: Closing database connection -- 12:29:45.385 SQL [12347]: pgsql_close() -- 12:29:45.425 INFO [12246]: COREGRADE is starting... -- 12:29:45.425 INFO [12246]: Version from config: 1.0 -- 12:29:45.425 DEBUG [12246]: Connecting to database... -- 12:29:45.425 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:45.425 SQL [12246]: pgsql_db_connect() -- 12:29:45.430 DEBUG [12246]: Database connection successful -- 12:29:45.430 INFO [12246]: _SERVER found -- 12:29:45.430 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 12:29:45.430 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:45.430 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:45.430 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 12:29:45.430 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:45.441 INFO [12246]: COREGRADE is stopping... -- 12:29:45.441 DEBUG [12246]: Closing database connection -- 12:29:45.441 SQL [12246]: pgsql_close() -- 12:29:45.451 INFO [12249]: COREGRADE is starting... -- 12:29:45.451 INFO [12347]: COREGRADE is starting... -- 12:29:45.451 INFO [12347]: Version from config: 1.0 -- 12:29:45.451 DEBUG [12347]: Connecting to database... -- 12:29:45.451 INFO [12249]: Version from config: 1.0 -- 12:29:45.451 DEBUG [12249]: Connecting to database... -- 12:29:45.451 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:45.451 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:45.451 SQL [12347]: pgsql_db_connect() -- 12:29:45.451 SQL [12249]: pgsql_db_connect() -- 12:29:45.455 DEBUG [12347]: Database connection successful -- 12:29:45.455 INFO [12347]: _SERVER found -- 12:29:45.455 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 12:29:45.455 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:45.455 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:45.455 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 12:29:45.455 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:45.467 INFO [12347]: COREGRADE is stopping... -- 12:29:45.455 DEBUG [12249]: Database connection successful -- 12:29:45.455 INFO [12249]: _SERVER found -- 12:29:45.455 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 12:29:45.455 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:45.455 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:45.455 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 12:29:45.455 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:45.467 INFO [12249]: COREGRADE is stopping... -- 12:29:45.467 DEBUG [12347]: Closing database connection -- 12:29:45.467 DEBUG [12249]: Closing database connection -- 12:29:45.467 SQL [12347]: pgsql_close() -- 12:29:45.467 SQL [12249]: pgsql_close() -- 12:29:45.512 INFO [12246]: COREGRADE is starting... -- 12:29:45.513 INFO [12246]: Version from config: 1.0 -- 12:29:45.513 DEBUG [12246]: Connecting to database... -- 12:29:45.513 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:45.513 SQL [12246]: pgsql_db_connect() -- 12:29:45.517 DEBUG [12246]: Database connection successful -- 12:29:45.517 INFO [12246]: _SERVER found -- 12:29:45.517 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 12:29:45.517 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:45.517 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:45.517 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 12:29:45.517 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:45.528 INFO [12246]: COREGRADE is stopping... -- 12:29:45.528 DEBUG [12246]: Closing database connection -- 12:29:45.528 SQL [12246]: pgsql_close() -- 12:29:45.532 INFO [12249]: COREGRADE is starting... -- 12:29:45.533 INFO [12347]: COREGRADE is starting... -- 12:29:45.533 INFO [12249]: Version from config: 1.0 -- 12:29:45.533 DEBUG [12249]: Connecting to database... -- 12:29:45.533 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:45.533 SQL [12249]: pgsql_db_connect() -- 12:29:45.533 INFO [12347]: Version from config: 1.0 -- 12:29:45.533 DEBUG [12347]: Connecting to database... -- 12:29:45.533 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:45.533 SQL [12347]: pgsql_db_connect() -- 12:29:45.537 DEBUG [12347]: Database connection successful -- 12:29:45.537 INFO [12347]: _SERVER found -- 12:29:45.537 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 12:29:45.537 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:45.537 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:45.537 INFO [12347]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 12:29:45.537 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:45.548 INFO [12347]: COREGRADE is stopping... -- 12:29:45.537 DEBUG [12249]: Database connection successful -- 12:29:45.537 INFO [12249]: _SERVER found -- 12:29:45.537 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 12:29:45.537 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:45.537 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:45.537 INFO [12249]: QUERY_STRING = /assets/customjs/general.js -- 12:29:45.537 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:45.548 INFO [12249]: COREGRADE is stopping... -- 12:29:45.548 DEBUG [12347]: Closing database connection -- 12:29:45.548 DEBUG [12249]: Closing database connection -- 12:29:45.548 SQL [12347]: pgsql_close() -- 12:29:45.548 SQL [12249]: pgsql_close() -- 12:29:45.614 INFO [12347]: COREGRADE is starting... -- 12:29:45.615 INFO [12347]: Version from config: 1.0 -- 12:29:45.615 DEBUG [12347]: Connecting to database... -- 12:29:45.615 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:45.615 SQL [12347]: pgsql_db_connect() -- 12:29:45.619 DEBUG [12347]: Database connection successful -- 12:29:45.619 INFO [12347]: _SERVER found -- 12:29:45.619 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 12:29:45.619 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:45.619 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:45.619 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 12:29:45.619 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:45.630 INFO [12347]: COREGRADE is stopping... -- 12:29:45.630 DEBUG [12347]: Closing database connection -- 12:29:45.630 SQL [12347]: pgsql_close() -- 12:29:45.697 INFO [12347]: COREGRADE is starting... -- 12:29:45.697 INFO [12347]: Version from config: 1.0 -- 12:29:45.697 DEBUG [12347]: Connecting to database... -- 12:29:45.697 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:45.697 SQL [12347]: pgsql_db_connect() -- 12:29:45.701 DEBUG [12347]: Database connection successful -- 12:29:45.701 INFO [12347]: _SERVER found -- 12:29:45.701 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 12:29:45.701 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:45.701 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:45.701 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 12:29:45.701 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:45.713 INFO [12347]: COREGRADE is stopping... -- 12:29:45.713 DEBUG [12347]: Closing database connection -- 12:29:45.713 SQL [12347]: pgsql_close() -- 12:29:45.780 INFO [12347]: COREGRADE is starting... -- 12:29:45.780 INFO [12347]: Version from config: 1.0 -- 12:29:45.780 DEBUG [12347]: Connecting to database... -- 12:29:45.780 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:45.780 SQL [12347]: pgsql_db_connect() -- 12:29:45.784 DEBUG [12347]: Database connection successful -- 12:29:45.784 INFO [12347]: _SERVER found -- 12:29:45.784 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 12:29:45.784 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:45.784 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:45.784 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 12:29:45.784 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:45.796 INFO [12347]: COREGRADE is stopping... -- 12:29:45.796 DEBUG [12347]: Closing database connection -- 12:29:45.796 SQL [12347]: pgsql_close() -- 12:29:45.862 INFO [12347]: COREGRADE is starting... -- 12:29:45.863 INFO [12347]: Version from config: 1.0 -- 12:29:45.863 DEBUG [12347]: Connecting to database... -- 12:29:45.863 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:45.863 SQL [12347]: pgsql_db_connect() -- 12:29:45.867 DEBUG [12347]: Database connection successful -- 12:29:45.867 INFO [12347]: _SERVER found -- 12:29:45.867 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 12:29:45.867 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:45.867 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:45.867 INFO [12347]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 12:29:45.867 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:45.878 INFO [12347]: COREGRADE is stopping... -- 12:29:45.878 DEBUG [12347]: Closing database connection -- 12:29:45.878 SQL [12347]: pgsql_close() -- 12:29:45.945 INFO [12347]: COREGRADE is starting... -- 12:29:45.945 INFO [12347]: Version from config: 1.0 -- 12:29:45.945 DEBUG [12347]: Connecting to database... -- 12:29:45.945 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:45.945 SQL [12347]: pgsql_db_connect() -- 12:29:45.949 DEBUG [12347]: Database connection successful -- 12:29:45.949 INFO [12347]: _SERVER found -- 12:29:45.949 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 12:29:45.949 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:45.949 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:45.949 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 12:29:45.949 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:45.961 INFO [12347]: COREGRADE is stopping... -- 12:29:45.961 DEBUG [12347]: Closing database connection -- 12:29:45.961 SQL [12347]: pgsql_close() -- 12:29:46.028 INFO [12347]: COREGRADE is starting... -- 12:29:46.028 INFO [12347]: Version from config: 1.0 -- 12:29:46.028 DEBUG [12347]: Connecting to database... -- 12:29:46.028 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:46.028 SQL [12347]: pgsql_db_connect() -- 12:29:46.032 DEBUG [12347]: Database connection successful -- 12:29:46.032 INFO [12347]: _SERVER found -- 12:29:46.032 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 12:29:46.032 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:46.032 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:46.032 INFO [12347]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 12:29:46.032 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:46.044 INFO [12347]: COREGRADE is stopping... -- 12:29:46.044 DEBUG [12347]: Closing database connection -- 12:29:46.044 SQL [12347]: pgsql_close() -- 12:29:46.111 INFO [12347]: COREGRADE is starting... -- 12:29:46.111 INFO [12347]: Version from config: 1.0 -- 12:29:46.111 DEBUG [12347]: Connecting to database... -- 12:29:46.111 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:46.111 SQL [12347]: pgsql_db_connect() -- 12:29:46.115 DEBUG [12347]: Database connection successful -- 12:29:46.115 INFO [12347]: _SERVER found -- 12:29:46.115 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 12:29:46.115 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:46.115 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:46.115 INFO [12347]: QUERY_STRING = /assets/js/pages/dashboard.js -- 12:29:46.115 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:46.127 INFO [12347]: COREGRADE is stopping... -- 12:29:46.127 DEBUG [12347]: Closing database connection -- 12:29:46.127 SQL [12347]: pgsql_close() -- 12:29:46.194 INFO [12347]: COREGRADE is starting... -- 12:29:46.195 INFO [12347]: Version from config: 1.0 -- 12:29:46.195 DEBUG [12347]: Connecting to database... -- 12:29:46.195 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:46.195 SQL [12347]: pgsql_db_connect() -- 12:29:46.199 DEBUG [12347]: Database connection successful -- 12:29:46.199 INFO [12347]: _SERVER found -- 12:29:46.199 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 12:29:46.199 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:46.199 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:46.199 INFO [12347]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 12:29:46.199 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:46.210 INFO [12347]: COREGRADE is stopping... -- 12:29:46.210 DEBUG [12347]: Closing database connection -- 12:29:46.210 SQL [12347]: pgsql_close() -- 12:29:46.277 INFO [12347]: COREGRADE is starting... -- 12:29:46.277 INFO [12347]: Version from config: 1.0 -- 12:29:46.277 DEBUG [12347]: Connecting to database... -- 12:29:46.277 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:46.277 SQL [12347]: pgsql_db_connect() -- 12:29:46.282 DEBUG [12347]: Database connection successful -- 12:29:46.282 INFO [12347]: _SERVER found -- 12:29:46.282 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 12:29:46.282 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:46.282 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:46.282 INFO [12347]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 12:29:46.282 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:46.293 INFO [12347]: COREGRADE is stopping... -- 12:29:46.293 DEBUG [12347]: Closing database connection -- 12:29:46.293 SQL [12347]: pgsql_close() -- 12:29:46.360 INFO [12347]: COREGRADE is starting... -- 12:29:46.360 INFO [12347]: Version from config: 1.0 -- 12:29:46.360 DEBUG [12347]: Connecting to database... -- 12:29:46.360 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:46.360 SQL [12347]: pgsql_db_connect() -- 12:29:46.364 DEBUG [12347]: Database connection successful -- 12:29:46.364 INFO [12347]: _SERVER found -- 12:29:46.364 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 12:29:46.364 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:46.364 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:46.364 INFO [12347]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 12:29:46.364 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:46.376 INFO [12347]: COREGRADE is stopping... -- 12:29:46.376 DEBUG [12347]: Closing database connection -- 12:29:46.376 SQL [12347]: pgsql_close() -- 12:29:46.442 INFO [12347]: COREGRADE is starting... -- 12:29:46.442 INFO [12347]: Version from config: 1.0 -- 12:29:46.442 DEBUG [12347]: Connecting to database... -- 12:29:46.442 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:46.442 SQL [12347]: pgsql_db_connect() -- 12:29:46.447 DEBUG [12347]: Database connection successful -- 12:29:46.447 INFO [12347]: _SERVER found -- 12:29:46.447 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 12:29:46.447 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:46.447 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:46.447 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 12:29:46.447 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:46.458 INFO [12347]: COREGRADE is stopping... -- 12:29:46.458 DEBUG [12347]: Closing database connection -- 12:29:46.458 SQL [12347]: pgsql_close() -- 12:29:46.525 INFO [12347]: COREGRADE is starting... -- 12:29:46.526 INFO [12347]: Version from config: 1.0 -- 12:29:46.526 DEBUG [12347]: Connecting to database... -- 12:29:46.526 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:46.526 SQL [12347]: pgsql_db_connect() -- 12:29:46.530 DEBUG [12347]: Database connection successful -- 12:29:46.530 INFO [12347]: _SERVER found -- 12:29:46.530 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 12:29:46.530 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:46.530 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:46.530 INFO [12347]: QUERY_STRING = /assets/js/pages/picker_date.js -- 12:29:46.530 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:46.541 INFO [12347]: COREGRADE is stopping... -- 12:29:46.541 DEBUG [12347]: Closing database connection -- 12:29:46.541 SQL [12347]: pgsql_close() -- 12:29:46.608 INFO [12347]: COREGRADE is starting... -- 12:29:46.608 INFO [12347]: Version from config: 1.0 -- 12:29:46.608 DEBUG [12347]: Connecting to database... -- 12:29:46.608 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:46.608 SQL [12347]: pgsql_db_connect() -- 12:29:46.613 DEBUG [12347]: Database connection successful -- 12:29:46.613 INFO [12347]: _SERVER found -- 12:29:46.613 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 12:29:46.613 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:46.613 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:46.613 INFO [12347]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 12:29:46.613 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:46.624 INFO [12347]: COREGRADE is stopping... -- 12:29:46.624 DEBUG [12347]: Closing database connection -- 12:29:46.624 SQL [12347]: pgsql_close() -- 12:29:46.691 INFO [12347]: COREGRADE is starting... -- 12:29:46.691 INFO [12347]: Version from config: 1.0 -- 12:29:46.691 DEBUG [12347]: Connecting to database... -- 12:29:46.691 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:46.691 SQL [12347]: pgsql_db_connect() -- 12:29:46.695 DEBUG [12347]: Database connection successful -- 12:29:46.695 INFO [12347]: _SERVER found -- 12:29:46.695 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 12:29:46.695 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:46.695 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:46.695 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 12:29:46.695 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:46.707 INFO [12347]: COREGRADE is stopping... -- 12:29:46.707 DEBUG [12347]: Closing database connection -- 12:29:46.707 SQL [12347]: pgsql_close() -- 12:29:46.773 INFO [12347]: COREGRADE is starting... -- 12:29:46.774 INFO [12347]: Version from config: 1.0 -- 12:29:46.774 DEBUG [12347]: Connecting to database... -- 12:29:46.774 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:46.774 SQL [12347]: pgsql_db_connect() -- 12:29:46.778 DEBUG [12347]: Database connection successful -- 12:29:46.778 INFO [12347]: _SERVER found -- 12:29:46.778 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 12:29:46.778 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:46.778 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:46.778 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 12:29:46.778 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:46.790 INFO [12347]: COREGRADE is stopping... -- 12:29:46.790 DEBUG [12347]: Closing database connection -- 12:29:46.790 SQL [12347]: pgsql_close() -- 12:29:46.856 INFO [12347]: COREGRADE is starting... -- 12:29:46.856 INFO [12347]: Version from config: 1.0 -- 12:29:46.856 DEBUG [12347]: Connecting to database... -- 12:29:46.856 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:46.856 SQL [12347]: pgsql_db_connect() -- 12:29:46.860 DEBUG [12347]: Database connection successful -- 12:29:46.860 INFO [12347]: _SERVER found -- 12:29:46.860 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 12:29:46.860 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:46.860 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:46.860 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 12:29:46.860 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:46.872 INFO [12347]: COREGRADE is stopping... -- 12:29:46.872 DEBUG [12347]: Closing database connection -- 12:29:46.872 SQL [12347]: pgsql_close() -- 12:29:46.939 INFO [12347]: COREGRADE is starting... -- 12:29:46.939 INFO [12347]: Version from config: 1.0 -- 12:29:46.939 DEBUG [12347]: Connecting to database... -- 12:29:46.939 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:46.939 SQL [12347]: pgsql_db_connect() -- 12:29:46.943 DEBUG [12347]: Database connection successful -- 12:29:46.943 INFO [12347]: _SERVER found -- 12:29:46.943 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 12:29:46.943 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:46.943 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:46.943 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 12:29:46.943 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:46.955 INFO [12347]: COREGRADE is stopping... -- 12:29:46.955 DEBUG [12347]: Closing database connection -- 12:29:46.955 SQL [12347]: pgsql_close() -- 12:29:47.032 INFO [12347]: COREGRADE is starting... -- 12:29:47.032 INFO [12347]: Version from config: 1.0 -- 12:29:47.032 DEBUG [12347]: Connecting to database... -- 12:29:47.032 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:47.032 SQL [12347]: pgsql_db_connect() -- 12:29:47.037 DEBUG [12347]: Database connection successful -- 12:29:47.037 INFO [12347]: _SERVER found -- 12:29:47.037 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 12:29:47.037 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:47.037 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:47.037 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 12:29:47.037 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:47.048 INFO [12347]: COREGRADE is stopping... -- 12:29:47.048 DEBUG [12347]: Closing database connection -- 12:29:47.048 SQL [12347]: pgsql_close() -- 12:29:47.115 INFO [12347]: COREGRADE is starting... -- 12:29:47.115 INFO [12347]: Version from config: 1.0 -- 12:29:47.115 DEBUG [12347]: Connecting to database... -- 12:29:47.115 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:47.115 SQL [12347]: pgsql_db_connect() -- 12:29:47.119 DEBUG [12347]: Database connection successful -- 12:29:47.119 INFO [12347]: _SERVER found -- 12:29:47.119 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 12:29:47.119 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:47.119 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:47.119 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 12:29:47.119 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:47.131 INFO [12347]: COREGRADE is stopping... -- 12:29:47.131 DEBUG [12347]: Closing database connection -- 12:29:47.131 SQL [12347]: pgsql_close() -- 12:29:47.199 INFO [12347]: COREGRADE is starting... -- 12:29:47.199 INFO [12347]: Version from config: 1.0 -- 12:29:47.199 DEBUG [12347]: Connecting to database... -- 12:29:47.199 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:47.199 SQL [12347]: pgsql_db_connect() -- 12:29:47.203 DEBUG [12347]: Database connection successful -- 12:29:47.203 INFO [12347]: _SERVER found -- 12:29:47.203 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 12:29:47.204 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:29:47.204 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:29:47.204 INFO [12347]: QUERY_STRING = /assets/customjs/general.js -- 12:29:47.204 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:29:47.215 INFO [12347]: COREGRADE is stopping... -- 12:29:47.215 DEBUG [12347]: Closing database connection -- 12:29:47.215 SQL [12347]: pgsql_close() -- 12:49:47.445 INFO [12334]: COREGRADE is starting... -- 12:49:47.446 INFO [12334]: Version from config: 1.0 -- 12:49:47.446 DEBUG [12334]: Connecting to database... -- 12:49:47.446 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:47.446 SQL [12334]: pgsql_db_connect() -- 12:49:47.450 DEBUG [12334]: Database connection successful -- 12:49:47.450 INFO [12334]: _SERVER found -- 12:49:47.450 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 12:49:47.450 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:47.450 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=u334ovnujbf2e9vr4slg8vd67ccs7l5l -- 12:49:47.450 INFO [12334]: QUERY_STRING = /logout -- 12:49:47.450 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:47.485 INFO [12334]: COREGRADE is stopping... -- 12:49:47.485 DEBUG [12334]: Closing database connection -- 12:49:47.485 SQL [12334]: pgsql_close() -- 12:49:47.564 INFO [12334]: COREGRADE is starting... -- 12:49:47.564 INFO [12334]: Version from config: 1.0 -- 12:49:47.564 DEBUG [12334]: Connecting to database... -- 12:49:47.564 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:47.564 SQL [12334]: pgsql_db_connect() -- 12:49:47.568 DEBUG [12334]: Database connection successful -- 12:49:47.568 INFO [12334]: _SERVER found -- 12:49:47.568 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 12:49:47.568 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:47.568 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:47.568 INFO [12334]: QUERY_STRING = /start -- 12:49:47.568 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:47.602 INFO [12334]: COREGRADE is stopping... -- 12:49:47.602 DEBUG [12334]: Closing database connection -- 12:49:47.602 SQL [12334]: pgsql_close() -- 12:49:47.732 INFO [12334]: COREGRADE is starting... -- 12:49:47.732 INFO [12334]: Version from config: 1.0 -- 12:49:47.732 DEBUG [12334]: Connecting to database... -- 12:49:47.732 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:47.732 SQL [12334]: pgsql_db_connect() -- 12:49:47.736 DEBUG [12334]: Database connection successful -- 12:49:47.736 INFO [12334]: _SERVER found -- 12:49:47.736 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 12:49:47.736 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:47.736 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:47.736 INFO [12334]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 12:49:47.736 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:47.748 INFO [12334]: COREGRADE is stopping... -- 12:49:47.748 DEBUG [12334]: Closing database connection -- 12:49:47.748 SQL [12334]: pgsql_close() -- 12:49:47.752 INFO [12334]: COREGRADE is starting... -- 12:49:47.753 INFO [12334]: Version from config: 1.0 -- 12:49:47.753 DEBUG [12334]: Connecting to database... -- 12:49:47.753 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:47.753 SQL [12334]: pgsql_db_connect() -- 12:49:47.757 DEBUG [12334]: Database connection successful -- 12:49:47.757 INFO [12334]: _SERVER found -- 12:49:47.757 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 12:49:47.757 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:47.757 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:47.757 INFO [12334]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 12:49:47.757 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:47.768 INFO [12334]: COREGRADE is stopping... -- 12:49:47.768 DEBUG [12334]: Closing database connection -- 12:49:47.768 SQL [12334]: pgsql_close() -- 12:49:47.803 INFO [12334]: COREGRADE is starting... -- 12:49:47.803 INFO [12334]: Version from config: 1.0 -- 12:49:47.803 DEBUG [12334]: Connecting to database... -- 12:49:47.803 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:47.803 SQL [12334]: pgsql_db_connect() -- 12:49:47.807 DEBUG [12334]: Database connection successful -- 12:49:47.807 INFO [12334]: _SERVER found -- 12:49:47.807 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 12:49:47.807 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:47.807 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:47.807 INFO [12334]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 12:49:47.807 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:47.818 INFO [12334]: COREGRADE is stopping... -- 12:49:47.818 DEBUG [12334]: Closing database connection -- 12:49:47.818 SQL [12334]: pgsql_close() -- 12:49:47.831 INFO [12334]: COREGRADE is starting... -- 12:49:47.831 INFO [12334]: Version from config: 1.0 -- 12:49:47.831 DEBUG [12334]: Connecting to database... -- 12:49:47.831 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:47.831 SQL [12334]: pgsql_db_connect() -- 12:49:47.836 INFO [12248]: COREGRADE is starting... -- 12:49:47.836 INFO [12248]: Version from config: 1.0 -- 12:49:47.836 DEBUG [12248]: Connecting to database... -- 12:49:47.836 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:47.836 SQL [12248]: pgsql_db_connect() -- 12:49:47.835 DEBUG [12334]: Database connection successful -- 12:49:47.835 INFO [12334]: _SERVER found -- 12:49:47.835 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 12:49:47.835 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:47.835 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:47.835 INFO [12334]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 12:49:47.835 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:47.847 INFO [12334]: COREGRADE is stopping... -- 12:49:47.847 DEBUG [12334]: Closing database connection -- 12:49:47.847 SQL [12334]: pgsql_close() -- 12:49:47.840 DEBUG [12248]: Database connection successful -- 12:49:47.840 INFO [12248]: _SERVER found -- 12:49:47.840 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 12:49:47.840 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:47.840 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:47.840 INFO [12248]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 12:49:47.840 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:47.854 INFO [12248]: COREGRADE is stopping... -- 12:49:47.854 DEBUG [12248]: Closing database connection -- 12:49:47.854 SQL [12248]: pgsql_close() -- 12:49:47.897 INFO [12248]: COREGRADE is starting... -- 12:49:47.897 INFO [12248]: Version from config: 1.0 -- 12:49:47.897 DEBUG [12248]: Connecting to database... -- 12:49:47.897 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:47.897 SQL [12248]: pgsql_db_connect() -- 12:49:47.901 DEBUG [12248]: Database connection successful -- 12:49:47.901 INFO [12248]: _SERVER found -- 12:49:47.901 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 12:49:47.901 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:47.901 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:47.901 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 12:49:47.901 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:47.913 INFO [12248]: COREGRADE is stopping... -- 12:49:47.913 DEBUG [12248]: Closing database connection -- 12:49:47.913 SQL [12248]: pgsql_close() -- 12:49:47.921 INFO [12248]: COREGRADE is starting... -- 12:49:47.921 INFO [12248]: Version from config: 1.0 -- 12:49:47.921 DEBUG [12248]: Connecting to database... -- 12:49:47.921 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:47.921 SQL [12248]: pgsql_db_connect() -- 12:49:47.930 INFO [12334]: COREGRADE is starting... -- 12:49:47.930 INFO [12334]: Version from config: 1.0 -- 12:49:47.930 DEBUG [12334]: Connecting to database... -- 12:49:47.930 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:47.930 SQL [12334]: pgsql_db_connect() -- 12:49:47.925 DEBUG [12248]: Database connection successful -- 12:49:47.925 INFO [12248]: _SERVER found -- 12:49:47.925 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 12:49:47.925 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:47.925 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:47.925 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 12:49:47.925 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:47.937 INFO [12248]: COREGRADE is stopping... -- 12:49:47.937 DEBUG [12248]: Closing database connection -- 12:49:47.937 SQL [12248]: pgsql_close() -- 12:49:47.934 DEBUG [12334]: Database connection successful -- 12:49:47.934 INFO [12334]: _SERVER found -- 12:49:47.934 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 12:49:47.934 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:47.934 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:47.934 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 12:49:47.934 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:47.946 INFO [12334]: COREGRADE is stopping... -- 12:49:47.946 DEBUG [12334]: Closing database connection -- 12:49:47.946 SQL [12334]: pgsql_close() -- 12:49:47.991 INFO [12334]: COREGRADE is starting... -- 12:49:47.991 INFO [12334]: Version from config: 1.0 -- 12:49:47.991 DEBUG [12334]: Connecting to database... -- 12:49:47.991 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:47.991 SQL [12334]: pgsql_db_connect() -- 12:49:48.003 INFO [12248]: COREGRADE is starting... -- 12:49:48.003 INFO [12248]: Version from config: 1.0 -- 12:49:48.003 DEBUG [12248]: Connecting to database... -- 12:49:48.003 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:48.003 SQL [12248]: pgsql_db_connect() -- 12:49:47.995 DEBUG [12334]: Database connection successful -- 12:49:47.995 INFO [12334]: _SERVER found -- 12:49:47.995 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 12:49:47.995 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:47.995 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:47.995 INFO [12334]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 12:49:47.995 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:48.007 INFO [12334]: COREGRADE is stopping... -- 12:49:48.007 DEBUG [12334]: Closing database connection -- 12:49:48.007 SQL [12334]: pgsql_close() -- 12:49:48.007 DEBUG [12248]: Database connection successful -- 12:49:48.007 INFO [12248]: _SERVER found -- 12:49:48.007 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 12:49:48.007 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:48.007 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:48.007 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 12:49:48.007 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:48.019 INFO [12248]: COREGRADE is stopping... -- 12:49:48.019 DEBUG [12248]: Closing database connection -- 12:49:48.019 SQL [12248]: pgsql_close() -- 12:49:48.028 INFO [12248]: COREGRADE is starting... -- 12:49:48.028 INFO [12248]: Version from config: 1.0 -- 12:49:48.028 DEBUG [12248]: Connecting to database... -- 12:49:48.028 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:48.028 SQL [12248]: pgsql_db_connect() -- 12:49:48.032 DEBUG [12248]: Database connection successful -- 12:49:48.032 INFO [12248]: _SERVER found -- 12:49:48.032 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 12:49:48.032 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:48.032 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:48.032 INFO [12248]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 12:49:48.032 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:48.044 INFO [12248]: COREGRADE is stopping... -- 12:49:48.044 DEBUG [12248]: Closing database connection -- 12:49:48.044 SQL [12248]: pgsql_close() -- 12:49:48.086 INFO [12248]: COREGRADE is starting... -- 12:49:48.086 INFO [12248]: Version from config: 1.0 -- 12:49:48.086 DEBUG [12248]: Connecting to database... -- 12:49:48.086 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:48.086 SQL [12248]: pgsql_db_connect() -- 12:49:48.087 INFO [12334]: COREGRADE is starting... -- 12:49:48.087 INFO [12334]: Version from config: 1.0 -- 12:49:48.087 DEBUG [12334]: Connecting to database... -- 12:49:48.087 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:48.087 SQL [12334]: pgsql_db_connect() -- 12:49:48.090 DEBUG [12248]: Database connection successful -- 12:49:48.090 INFO [12248]: _SERVER found -- 12:49:48.090 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 12:49:48.090 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:48.090 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:48.090 INFO [12248]: QUERY_STRING = /assets/js/pages/dashboard.js -- 12:49:48.090 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:48.102 INFO [12248]: COREGRADE is stopping... -- 12:49:48.102 DEBUG [12248]: Closing database connection -- 12:49:48.102 SQL [12248]: pgsql_close() -- 12:49:48.091 DEBUG [12334]: Database connection successful -- 12:49:48.091 INFO [12334]: _SERVER found -- 12:49:48.091 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 12:49:48.091 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:48.091 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:48.091 INFO [12334]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 12:49:48.091 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:48.103 INFO [12334]: COREGRADE is stopping... -- 12:49:48.103 DEBUG [12334]: Closing database connection -- 12:49:48.103 SQL [12334]: pgsql_close() -- 12:49:48.116 INFO [12334]: COREGRADE is starting... -- 12:49:48.117 INFO [12334]: Version from config: 1.0 -- 12:49:48.117 DEBUG [12334]: Connecting to database... -- 12:49:48.117 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:48.117 SQL [12334]: pgsql_db_connect() -- 12:49:48.121 DEBUG [12334]: Database connection successful -- 12:49:48.121 INFO [12334]: _SERVER found -- 12:49:48.121 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 12:49:48.121 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:48.121 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:48.121 INFO [12334]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 12:49:48.121 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:48.132 INFO [12334]: COREGRADE is stopping... -- 12:49:48.132 DEBUG [12334]: Closing database connection -- 12:49:48.132 SQL [12334]: pgsql_close() -- 12:49:48.170 INFO [12334]: COREGRADE is starting... -- 12:49:48.171 INFO [12334]: Version from config: 1.0 -- 12:49:48.171 DEBUG [12334]: Connecting to database... -- 12:49:48.171 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:48.171 SQL [12334]: pgsql_db_connect() -- 12:49:48.171 INFO [12248]: COREGRADE is starting... -- 12:49:48.172 INFO [12248]: Version from config: 1.0 -- 12:49:48.172 DEBUG [12248]: Connecting to database... -- 12:49:48.172 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:48.172 SQL [12248]: pgsql_db_connect() -- 12:49:48.175 DEBUG [12334]: Database connection successful -- 12:49:48.175 INFO [12334]: _SERVER found -- 12:49:48.175 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 12:49:48.175 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:48.175 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:48.175 INFO [12334]: QUERY_STRING = /assets/js/pages/picker_date.js -- 12:49:48.175 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:48.186 INFO [12334]: COREGRADE is stopping... -- 12:49:48.186 DEBUG [12334]: Closing database connection -- 12:49:48.186 SQL [12334]: pgsql_close() -- 12:49:48.175 DEBUG [12248]: Database connection successful -- 12:49:48.175 INFO [12248]: _SERVER found -- 12:49:48.175 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 12:49:48.175 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:48.175 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:48.175 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 12:49:48.175 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:48.187 INFO [12248]: COREGRADE is stopping... -- 12:49:48.187 DEBUG [12248]: Closing database connection -- 12:49:48.187 SQL [12248]: pgsql_close() -- 12:49:48.204 INFO [12248]: COREGRADE is starting... -- 12:49:48.204 INFO [12248]: Version from config: 1.0 -- 12:49:48.204 DEBUG [12248]: Connecting to database... -- 12:49:48.204 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:48.204 SQL [12248]: pgsql_db_connect() -- 12:49:48.208 DEBUG [12248]: Database connection successful -- 12:49:48.208 INFO [12248]: _SERVER found -- 12:49:48.208 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 12:49:48.208 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:48.208 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:48.208 INFO [12248]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 12:49:48.208 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:48.220 INFO [12248]: COREGRADE is stopping... -- 12:49:48.220 DEBUG [12248]: Closing database connection -- 12:49:48.220 SQL [12248]: pgsql_close() -- 12:49:48.254 INFO [12248]: COREGRADE is starting... -- 12:49:48.254 INFO [12248]: Version from config: 1.0 -- 12:49:48.254 DEBUG [12248]: Connecting to database... -- 12:49:48.254 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:48.254 SQL [12248]: pgsql_db_connect() -- 12:49:48.254 INFO [12334]: COREGRADE is starting... -- 12:49:48.254 INFO [12334]: Version from config: 1.0 -- 12:49:48.254 DEBUG [12334]: Connecting to database... -- 12:49:48.254 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:48.254 SQL [12334]: pgsql_db_connect() -- 12:49:48.258 DEBUG [12334]: Database connection successful -- 12:49:48.258 INFO [12334]: _SERVER found -- 12:49:48.258 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 12:49:48.258 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:48.258 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:48.258 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 12:49:48.258 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:48.270 INFO [12334]: COREGRADE is stopping... -- 12:49:48.258 DEBUG [12248]: Database connection successful -- 12:49:48.258 INFO [12248]: _SERVER found -- 12:49:48.258 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 12:49:48.258 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:48.258 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:48.258 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 12:49:48.258 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:48.270 INFO [12248]: COREGRADE is stopping... -- 12:49:48.270 DEBUG [12334]: Closing database connection -- 12:49:48.270 DEBUG [12248]: Closing database connection -- 12:49:48.270 SQL [12334]: pgsql_close() -- 12:49:48.270 SQL [12248]: pgsql_close() -- 12:49:48.291 INFO [12334]: COREGRADE is starting... -- 12:49:48.292 INFO [12334]: Version from config: 1.0 -- 12:49:48.292 DEBUG [12334]: Connecting to database... -- 12:49:48.292 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:48.292 SQL [12334]: pgsql_db_connect() -- 12:49:48.296 DEBUG [12334]: Database connection successful -- 12:49:48.296 INFO [12334]: _SERVER found -- 12:49:48.296 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 12:49:48.296 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:48.296 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:48.296 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 12:49:48.296 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:48.307 INFO [12334]: COREGRADE is stopping... -- 12:49:48.307 DEBUG [12334]: Closing database connection -- 12:49:48.307 SQL [12334]: pgsql_close() -- 12:49:48.336 INFO [12334]: COREGRADE is starting... -- 12:49:48.336 INFO [12334]: Version from config: 1.0 -- 12:49:48.336 DEBUG [12334]: Connecting to database... -- 12:49:48.336 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:48.336 SQL [12334]: pgsql_db_connect() -- 12:49:48.339 INFO [12248]: COREGRADE is starting... -- 12:49:48.339 INFO [12248]: Version from config: 1.0 -- 12:49:48.339 DEBUG [12248]: Connecting to database... -- 12:49:48.339 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:48.339 SQL [12248]: pgsql_db_connect() -- 12:49:48.340 DEBUG [12334]: Database connection successful -- 12:49:48.340 INFO [12334]: _SERVER found -- 12:49:48.340 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 12:49:48.340 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:48.340 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:48.340 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 12:49:48.340 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:48.352 INFO [12334]: COREGRADE is stopping... -- 12:49:48.352 DEBUG [12334]: Closing database connection -- 12:49:48.352 SQL [12334]: pgsql_close() -- 12:49:48.343 DEBUG [12248]: Database connection successful -- 12:49:48.343 INFO [12248]: _SERVER found -- 12:49:48.343 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 12:49:48.343 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:48.343 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:48.343 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 12:49:48.343 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:48.355 INFO [12248]: COREGRADE is stopping... -- 12:49:48.355 DEBUG [12248]: Closing database connection -- 12:49:48.355 SQL [12248]: pgsql_close() -- 12:49:48.379 INFO [12248]: COREGRADE is starting... -- 12:49:48.379 INFO [12248]: Version from config: 1.0 -- 12:49:48.379 DEBUG [12248]: Connecting to database... -- 12:49:48.379 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:48.379 SQL [12248]: pgsql_db_connect() -- 12:49:48.383 DEBUG [12248]: Database connection successful -- 12:49:48.383 INFO [12248]: _SERVER found -- 12:49:48.383 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 12:49:48.383 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:48.383 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:48.383 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 12:49:48.383 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:48.395 INFO [12248]: COREGRADE is stopping... -- 12:49:48.395 DEBUG [12248]: Closing database connection -- 12:49:48.395 SQL [12248]: pgsql_close() -- 12:49:48.422 INFO [12248]: COREGRADE is starting... -- 12:49:48.422 INFO [12248]: Version from config: 1.0 -- 12:49:48.422 DEBUG [12248]: Connecting to database... -- 12:49:48.422 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:48.422 SQL [12248]: pgsql_db_connect() -- 12:49:48.424 INFO [12334]: COREGRADE is starting... -- 12:49:48.424 INFO [12334]: Version from config: 1.0 -- 12:49:48.424 DEBUG [12334]: Connecting to database... -- 12:49:48.424 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:48.424 SQL [12334]: pgsql_db_connect() -- 12:49:48.427 DEBUG [12248]: Database connection successful -- 12:49:48.427 INFO [12248]: _SERVER found -- 12:49:48.427 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 12:49:48.427 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:48.427 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:48.427 INFO [12248]: QUERY_STRING = /assets/customjs/general.js -- 12:49:48.427 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:48.438 INFO [12248]: COREGRADE is stopping... -- 12:49:48.438 DEBUG [12248]: Closing database connection -- 12:49:48.438 SQL [12248]: pgsql_close() -- 12:49:48.428 DEBUG [12334]: Database connection successful -- 12:49:48.428 INFO [12334]: _SERVER found -- 12:49:48.428 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 12:49:48.428 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:48.428 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:48.428 INFO [12334]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 12:49:48.428 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:48.439 INFO [12334]: COREGRADE is stopping... -- 12:49:48.439 DEBUG [12334]: Closing database connection -- 12:49:48.439 SQL [12334]: pgsql_close() -- 12:49:48.507 INFO [12334]: COREGRADE is starting... -- 12:49:48.508 INFO [12334]: Version from config: 1.0 -- 12:49:48.508 DEBUG [12334]: Connecting to database... -- 12:49:48.508 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:48.508 SQL [12334]: pgsql_db_connect() -- 12:49:48.512 DEBUG [12334]: Database connection successful -- 12:49:48.512 INFO [12334]: _SERVER found -- 12:49:48.512 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 12:49:48.512 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:48.512 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:48.512 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 12:49:48.512 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:48.523 INFO [12334]: COREGRADE is stopping... -- 12:49:48.523 DEBUG [12334]: Closing database connection -- 12:49:48.523 SQL [12334]: pgsql_close() -- 12:49:48.592 INFO [12334]: COREGRADE is starting... -- 12:49:48.592 INFO [12334]: Version from config: 1.0 -- 12:49:48.592 DEBUG [12334]: Connecting to database... -- 12:49:48.592 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:48.592 SQL [12334]: pgsql_db_connect() -- 12:49:48.596 DEBUG [12334]: Database connection successful -- 12:49:48.596 INFO [12334]: _SERVER found -- 12:49:48.596 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 12:49:48.596 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:48.596 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:48.596 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 12:49:48.596 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:48.608 INFO [12334]: COREGRADE is stopping... -- 12:49:48.608 DEBUG [12334]: Closing database connection -- 12:49:48.608 SQL [12334]: pgsql_close() -- 12:49:48.676 INFO [12334]: COREGRADE is starting... -- 12:49:48.676 INFO [12334]: Version from config: 1.0 -- 12:49:48.676 DEBUG [12334]: Connecting to database... -- 12:49:48.676 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:48.676 SQL [12334]: pgsql_db_connect() -- 12:49:48.680 DEBUG [12334]: Database connection successful -- 12:49:48.680 INFO [12334]: _SERVER found -- 12:49:48.680 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 12:49:48.680 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:48.680 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:48.680 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 12:49:48.680 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:48.692 INFO [12334]: COREGRADE is stopping... -- 12:49:48.692 DEBUG [12334]: Closing database connection -- 12:49:48.692 SQL [12334]: pgsql_close() -- 12:49:48.760 INFO [12334]: COREGRADE is starting... -- 12:49:48.760 INFO [12334]: Version from config: 1.0 -- 12:49:48.760 DEBUG [12334]: Connecting to database... -- 12:49:48.760 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:48.760 SQL [12334]: pgsql_db_connect() -- 12:49:48.765 DEBUG [12334]: Database connection successful -- 12:49:48.765 INFO [12334]: _SERVER found -- 12:49:48.765 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 12:49:48.765 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:48.765 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:48.765 INFO [12334]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 12:49:48.765 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:48.777 INFO [12334]: COREGRADE is stopping... -- 12:49:48.777 DEBUG [12334]: Closing database connection -- 12:49:48.777 SQL [12334]: pgsql_close() -- 12:49:48.845 INFO [12334]: COREGRADE is starting... -- 12:49:48.845 INFO [12334]: Version from config: 1.0 -- 12:49:48.845 DEBUG [12334]: Connecting to database... -- 12:49:48.845 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:48.845 SQL [12334]: pgsql_db_connect() -- 12:49:48.850 DEBUG [12334]: Database connection successful -- 12:49:48.850 INFO [12334]: _SERVER found -- 12:49:48.850 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 12:49:48.850 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:48.850 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:48.850 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 12:49:48.850 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:48.861 INFO [12334]: COREGRADE is stopping... -- 12:49:48.861 DEBUG [12334]: Closing database connection -- 12:49:48.861 SQL [12334]: pgsql_close() -- 12:49:48.929 INFO [12334]: COREGRADE is starting... -- 12:49:48.930 INFO [12334]: Version from config: 1.0 -- 12:49:48.930 DEBUG [12334]: Connecting to database... -- 12:49:48.930 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:48.930 SQL [12334]: pgsql_db_connect() -- 12:49:48.934 DEBUG [12334]: Database connection successful -- 12:49:48.934 INFO [12334]: _SERVER found -- 12:49:48.934 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 12:49:48.934 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:48.934 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:48.934 INFO [12334]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 12:49:48.934 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:48.945 INFO [12334]: COREGRADE is stopping... -- 12:49:48.945 DEBUG [12334]: Closing database connection -- 12:49:48.945 SQL [12334]: pgsql_close() -- 12:49:49.014 INFO [12334]: COREGRADE is starting... -- 12:49:49.014 INFO [12334]: Version from config: 1.0 -- 12:49:49.014 DEBUG [12334]: Connecting to database... -- 12:49:49.014 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:49.014 SQL [12334]: pgsql_db_connect() -- 12:49:49.018 DEBUG [12334]: Database connection successful -- 12:49:49.018 INFO [12334]: _SERVER found -- 12:49:49.018 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 12:49:49.018 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:49.018 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:49.018 INFO [12334]: QUERY_STRING = /assets/js/pages/dashboard.js -- 12:49:49.018 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:49.030 INFO [12334]: COREGRADE is stopping... -- 12:49:49.030 DEBUG [12334]: Closing database connection -- 12:49:49.030 SQL [12334]: pgsql_close() -- 12:49:49.099 INFO [12334]: COREGRADE is starting... -- 12:49:49.099 INFO [12334]: Version from config: 1.0 -- 12:49:49.099 DEBUG [12334]: Connecting to database... -- 12:49:49.099 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:49.099 SQL [12334]: pgsql_db_connect() -- 12:49:49.103 DEBUG [12334]: Database connection successful -- 12:49:49.103 INFO [12334]: _SERVER found -- 12:49:49.103 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 12:49:49.103 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:49.103 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:49.103 INFO [12334]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 12:49:49.103 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:49.115 INFO [12334]: COREGRADE is stopping... -- 12:49:49.115 DEBUG [12334]: Closing database connection -- 12:49:49.115 SQL [12334]: pgsql_close() -- 12:49:49.183 INFO [12334]: COREGRADE is starting... -- 12:49:49.183 INFO [12334]: Version from config: 1.0 -- 12:49:49.183 DEBUG [12334]: Connecting to database... -- 12:49:49.183 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:49.183 SQL [12334]: pgsql_db_connect() -- 12:49:49.187 DEBUG [12334]: Database connection successful -- 12:49:49.187 INFO [12334]: _SERVER found -- 12:49:49.187 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 12:49:49.187 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:49.187 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:49.187 INFO [12334]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 12:49:49.187 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:49.199 INFO [12334]: COREGRADE is stopping... -- 12:49:49.199 DEBUG [12334]: Closing database connection -- 12:49:49.199 SQL [12334]: pgsql_close() -- 12:49:49.267 INFO [12334]: COREGRADE is starting... -- 12:49:49.267 INFO [12334]: Version from config: 1.0 -- 12:49:49.267 DEBUG [12334]: Connecting to database... -- 12:49:49.268 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:49.268 SQL [12334]: pgsql_db_connect() -- 12:49:49.272 DEBUG [12334]: Database connection successful -- 12:49:49.272 INFO [12334]: _SERVER found -- 12:49:49.272 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 12:49:49.272 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:49.272 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:49.272 INFO [12334]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 12:49:49.272 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:49.283 INFO [12334]: COREGRADE is stopping... -- 12:49:49.283 DEBUG [12334]: Closing database connection -- 12:49:49.283 SQL [12334]: pgsql_close() -- 12:49:49.351 INFO [12334]: COREGRADE is starting... -- 12:49:49.352 INFO [12334]: Version from config: 1.0 -- 12:49:49.352 DEBUG [12334]: Connecting to database... -- 12:49:49.352 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:49.352 SQL [12334]: pgsql_db_connect() -- 12:49:49.356 DEBUG [12334]: Database connection successful -- 12:49:49.356 INFO [12334]: _SERVER found -- 12:49:49.356 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 12:49:49.356 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:49.356 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:49.356 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 12:49:49.356 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:49.367 INFO [12334]: COREGRADE is stopping... -- 12:49:49.367 DEBUG [12334]: Closing database connection -- 12:49:49.367 SQL [12334]: pgsql_close() -- 12:49:49.435 INFO [12334]: COREGRADE is starting... -- 12:49:49.436 INFO [12334]: Version from config: 1.0 -- 12:49:49.436 DEBUG [12334]: Connecting to database... -- 12:49:49.436 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:49.436 SQL [12334]: pgsql_db_connect() -- 12:49:49.440 DEBUG [12334]: Database connection successful -- 12:49:49.440 INFO [12334]: _SERVER found -- 12:49:49.440 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 12:49:49.440 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:49.440 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:49.440 INFO [12334]: QUERY_STRING = /assets/js/pages/picker_date.js -- 12:49:49.440 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:49.451 INFO [12334]: COREGRADE is stopping... -- 12:49:49.451 DEBUG [12334]: Closing database connection -- 12:49:49.451 SQL [12334]: pgsql_close() -- 12:49:49.519 INFO [12334]: COREGRADE is starting... -- 12:49:49.519 INFO [12334]: Version from config: 1.0 -- 12:49:49.519 DEBUG [12334]: Connecting to database... -- 12:49:49.519 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:49.519 SQL [12334]: pgsql_db_connect() -- 12:49:49.524 DEBUG [12334]: Database connection successful -- 12:49:49.524 INFO [12334]: _SERVER found -- 12:49:49.524 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 12:49:49.524 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:49.524 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:49.524 INFO [12334]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 12:49:49.524 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:49.535 INFO [12334]: COREGRADE is stopping... -- 12:49:49.535 DEBUG [12334]: Closing database connection -- 12:49:49.535 SQL [12334]: pgsql_close() -- 12:49:49.603 INFO [12334]: COREGRADE is starting... -- 12:49:49.603 INFO [12334]: Version from config: 1.0 -- 12:49:49.603 DEBUG [12334]: Connecting to database... -- 12:49:49.603 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:49.604 SQL [12334]: pgsql_db_connect() -- 12:49:49.608 DEBUG [12334]: Database connection successful -- 12:49:49.608 INFO [12334]: _SERVER found -- 12:49:49.608 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 12:49:49.608 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:49.608 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:49.608 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 12:49:49.608 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:49.619 INFO [12334]: COREGRADE is stopping... -- 12:49:49.619 DEBUG [12334]: Closing database connection -- 12:49:49.619 SQL [12334]: pgsql_close() -- 12:49:49.687 INFO [12334]: COREGRADE is starting... -- 12:49:49.687 INFO [12334]: Version from config: 1.0 -- 12:49:49.687 DEBUG [12334]: Connecting to database... -- 12:49:49.687 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:49.687 SQL [12334]: pgsql_db_connect() -- 12:49:49.692 DEBUG [12334]: Database connection successful -- 12:49:49.692 INFO [12334]: _SERVER found -- 12:49:49.692 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 12:49:49.692 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:49.692 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:49.692 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 12:49:49.692 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:49.703 INFO [12334]: COREGRADE is stopping... -- 12:49:49.703 DEBUG [12334]: Closing database connection -- 12:49:49.703 SQL [12334]: pgsql_close() -- 12:49:49.771 INFO [12334]: COREGRADE is starting... -- 12:49:49.772 INFO [12334]: Version from config: 1.0 -- 12:49:49.772 DEBUG [12334]: Connecting to database... -- 12:49:49.772 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:49.772 SQL [12334]: pgsql_db_connect() -- 12:49:49.776 DEBUG [12334]: Database connection successful -- 12:49:49.776 INFO [12334]: _SERVER found -- 12:49:49.776 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 12:49:49.776 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:49.776 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:49.776 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 12:49:49.776 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:49.788 INFO [12334]: COREGRADE is stopping... -- 12:49:49.788 DEBUG [12334]: Closing database connection -- 12:49:49.788 SQL [12334]: pgsql_close() -- 12:49:49.856 INFO [12334]: COREGRADE is starting... -- 12:49:49.856 INFO [12334]: Version from config: 1.0 -- 12:49:49.856 DEBUG [12334]: Connecting to database... -- 12:49:49.856 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:49.856 SQL [12334]: pgsql_db_connect() -- 12:49:49.861 DEBUG [12334]: Database connection successful -- 12:49:49.861 INFO [12334]: _SERVER found -- 12:49:49.861 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 12:49:49.861 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:49.861 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:49.861 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 12:49:49.861 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:49.872 INFO [12334]: COREGRADE is stopping... -- 12:49:49.872 DEBUG [12334]: Closing database connection -- 12:49:49.872 SQL [12334]: pgsql_close() -- 12:49:49.950 INFO [12334]: COREGRADE is starting... -- 12:49:49.950 INFO [12334]: Version from config: 1.0 -- 12:49:49.950 DEBUG [12334]: Connecting to database... -- 12:49:49.950 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:49.950 SQL [12334]: pgsql_db_connect() -- 12:49:49.955 DEBUG [12334]: Database connection successful -- 12:49:49.955 INFO [12334]: _SERVER found -- 12:49:49.955 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 12:49:49.955 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:49.955 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:49.955 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 12:49:49.955 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:49.966 INFO [12334]: COREGRADE is stopping... -- 12:49:49.966 DEBUG [12334]: Closing database connection -- 12:49:49.966 SQL [12334]: pgsql_close() -- 12:49:50.034 INFO [12334]: COREGRADE is starting... -- 12:49:50.035 INFO [12334]: Version from config: 1.0 -- 12:49:50.035 DEBUG [12334]: Connecting to database... -- 12:49:50.035 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:50.035 SQL [12334]: pgsql_db_connect() -- 12:49:50.039 DEBUG [12334]: Database connection successful -- 12:49:50.039 INFO [12334]: _SERVER found -- 12:49:50.039 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 12:49:50.039 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:50.039 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:50.039 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 12:49:50.039 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:50.050 INFO [12334]: COREGRADE is stopping... -- 12:49:50.050 DEBUG [12334]: Closing database connection -- 12:49:50.050 SQL [12334]: pgsql_close() -- 12:49:50.120 INFO [12334]: COREGRADE is starting... -- 12:49:50.120 INFO [12334]: Version from config: 1.0 -- 12:49:50.120 DEBUG [12334]: Connecting to database... -- 12:49:50.120 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:50.120 SQL [12334]: pgsql_db_connect() -- 12:49:50.124 DEBUG [12334]: Database connection successful -- 12:49:50.124 INFO [12334]: _SERVER found -- 12:49:50.124 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 12:49:50.124 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 12:49:50.124 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 12:49:50.124 INFO [12334]: QUERY_STRING = /assets/customjs/general.js -- 12:49:50.124 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 12:49:50.136 INFO [12334]: COREGRADE is stopping... -- 12:49:50.136 DEBUG [12334]: Closing database connection -- 12:49:50.136 SQL [12334]: pgsql_close() -- 13:09:50.363 INFO [12250]: COREGRADE is starting... -- 13:09:50.363 INFO [12250]: Version from config: 1.0 -- 13:09:50.363 DEBUG [12250]: Connecting to database... -- 13:09:50.363 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:50.363 SQL [12250]: pgsql_db_connect() -- 13:09:50.368 DEBUG [12250]: Database connection successful -- 13:09:50.368 INFO [12250]: _SERVER found -- 13:09:50.368 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 13:09:50.368 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:50.368 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=s38nkd1ggbcsen1bbojf4i3igs6i0gdt -- 13:09:50.368 INFO [12250]: QUERY_STRING = /logout -- 13:09:50.368 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:50.402 INFO [12250]: COREGRADE is stopping... -- 13:09:50.402 DEBUG [12250]: Closing database connection -- 13:09:50.402 SQL [12250]: pgsql_close() -- 13:09:50.487 INFO [12250]: COREGRADE is starting... -- 13:09:50.487 INFO [12250]: Version from config: 1.0 -- 13:09:50.487 DEBUG [12250]: Connecting to database... -- 13:09:50.487 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:50.487 SQL [12250]: pgsql_db_connect() -- 13:09:50.492 DEBUG [12250]: Database connection successful -- 13:09:50.492 INFO [12250]: _SERVER found -- 13:09:50.492 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 13:09:50.492 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:50.492 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:50.492 INFO [12250]: QUERY_STRING = /start -- 13:09:50.492 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:50.525 INFO [12250]: COREGRADE is stopping... -- 13:09:50.525 DEBUG [12250]: Closing database connection -- 13:09:50.525 SQL [12250]: pgsql_close() -- 13:09:50.655 INFO [12305]: COREGRADE is starting... -- 13:09:50.655 INFO [12305]: Version from config: 1.0 -- 13:09:50.655 DEBUG [12305]: Connecting to database... -- 13:09:50.655 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:50.655 SQL [12305]: pgsql_db_connect() -- 13:09:50.659 DEBUG [12305]: Database connection successful -- 13:09:50.659 INFO [12305]: _SERVER found -- 13:09:50.659 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 13:09:50.659 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:50.659 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:50.659 INFO [12305]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 13:09:50.659 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:50.672 INFO [12305]: COREGRADE is stopping... -- 13:09:50.672 DEBUG [12305]: Closing database connection -- 13:09:50.672 SQL [12305]: pgsql_close() -- 13:09:50.681 INFO [12250]: COREGRADE is starting... -- 13:09:50.681 INFO [12250]: Version from config: 1.0 -- 13:09:50.681 DEBUG [12250]: Connecting to database... -- 13:09:50.681 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:50.681 SQL [12250]: pgsql_db_connect() -- 13:09:50.685 DEBUG [12250]: Database connection successful -- 13:09:50.685 INFO [12250]: _SERVER found -- 13:09:50.685 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 13:09:50.685 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:50.685 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:50.685 INFO [12250]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 13:09:50.685 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:50.696 INFO [12250]: COREGRADE is stopping... -- 13:09:50.696 DEBUG [12250]: Closing database connection -- 13:09:50.696 SQL [12250]: pgsql_close() -- 13:09:50.729 INFO [12305]: COREGRADE is starting... -- 13:09:50.729 INFO [12305]: Version from config: 1.0 -- 13:09:50.729 DEBUG [12305]: Connecting to database... -- 13:09:50.729 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:50.729 SQL [12305]: pgsql_db_connect() -- 13:09:50.733 DEBUG [12305]: Database connection successful -- 13:09:50.733 INFO [12305]: _SERVER found -- 13:09:50.733 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 13:09:50.733 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:50.733 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:50.733 INFO [12305]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 13:09:50.733 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:50.745 INFO [12305]: COREGRADE is stopping... -- 13:09:50.745 DEBUG [12305]: Closing database connection -- 13:09:50.745 SQL [12305]: pgsql_close() -- 13:09:50.755 INFO [12305]: COREGRADE is starting... -- 13:09:50.755 INFO [12305]: Version from config: 1.0 -- 13:09:50.755 DEBUG [12305]: Connecting to database... -- 13:09:50.755 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:50.755 SQL [12305]: pgsql_db_connect() -- 13:09:50.768 INFO [12250]: COREGRADE is starting... -- 13:09:50.768 INFO [12250]: Version from config: 1.0 -- 13:09:50.768 DEBUG [12250]: Connecting to database... -- 13:09:50.769 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:50.769 SQL [12250]: pgsql_db_connect() -- 13:09:50.759 DEBUG [12305]: Database connection successful -- 13:09:50.759 INFO [12305]: _SERVER found -- 13:09:50.759 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 13:09:50.759 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:50.759 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:50.759 INFO [12305]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 13:09:50.759 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:50.770 INFO [12305]: COREGRADE is stopping... -- 13:09:50.770 DEBUG [12305]: Closing database connection -- 13:09:50.770 SQL [12305]: pgsql_close() -- 13:09:50.773 DEBUG [12250]: Database connection successful -- 13:09:50.773 INFO [12250]: _SERVER found -- 13:09:50.773 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 13:09:50.773 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:50.773 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:50.773 INFO [12250]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 13:09:50.773 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:50.784 INFO [12250]: COREGRADE is stopping... -- 13:09:50.784 DEBUG [12250]: Closing database connection -- 13:09:50.784 SQL [12250]: pgsql_close() -- 13:09:50.828 INFO [12305]: COREGRADE is starting... -- 13:09:50.829 INFO [12305]: Version from config: 1.0 -- 13:09:50.829 DEBUG [12305]: Connecting to database... -- 13:09:50.829 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:50.829 SQL [12305]: pgsql_db_connect() -- 13:09:50.833 DEBUG [12305]: Database connection successful -- 13:09:50.833 INFO [12305]: _SERVER found -- 13:09:50.833 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 13:09:50.833 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:50.833 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:50.833 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 13:09:50.833 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:50.844 INFO [12305]: COREGRADE is stopping... -- 13:09:50.844 DEBUG [12305]: Closing database connection -- 13:09:50.844 SQL [12305]: pgsql_close() -- 13:09:50.854 INFO [12305]: COREGRADE is starting... -- 13:09:50.855 INFO [12305]: Version from config: 1.0 -- 13:09:50.855 DEBUG [12305]: Connecting to database... -- 13:09:50.855 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:50.855 SQL [12305]: pgsql_db_connect() -- 13:09:50.855 INFO [12250]: COREGRADE is starting... -- 13:09:50.855 INFO [12250]: Version from config: 1.0 -- 13:09:50.855 DEBUG [12250]: Connecting to database... -- 13:09:50.855 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:50.856 SQL [12250]: pgsql_db_connect() -- 13:09:50.859 DEBUG [12305]: Database connection successful -- 13:09:50.859 INFO [12305]: _SERVER found -- 13:09:50.859 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 13:09:50.859 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:50.859 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:50.859 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 13:09:50.859 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:50.870 INFO [12305]: COREGRADE is stopping... -- 13:09:50.870 DEBUG [12305]: Closing database connection -- 13:09:50.870 SQL [12305]: pgsql_close() -- 13:09:50.859 DEBUG [12250]: Database connection successful -- 13:09:50.859 INFO [12250]: _SERVER found -- 13:09:50.859 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 13:09:50.859 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:50.859 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:50.859 INFO [12250]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 13:09:50.859 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:50.871 INFO [12250]: COREGRADE is stopping... -- 13:09:50.871 DEBUG [12250]: Closing database connection -- 13:09:50.871 SQL [12250]: pgsql_close() -- 13:09:50.927 INFO [12305]: COREGRADE is starting... -- 13:09:50.928 INFO [12305]: Version from config: 1.0 -- 13:09:50.928 DEBUG [12305]: Connecting to database... -- 13:09:50.928 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:50.928 SQL [12305]: pgsql_db_connect() -- 13:09:50.942 INFO [12250]: COREGRADE is starting... -- 13:09:50.943 INFO [12250]: Version from config: 1.0 -- 13:09:50.943 DEBUG [12250]: Connecting to database... -- 13:09:50.943 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:50.943 SQL [12250]: pgsql_db_connect() -- 13:09:50.932 DEBUG [12305]: Database connection successful -- 13:09:50.932 INFO [12305]: _SERVER found -- 13:09:50.932 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 13:09:50.932 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:50.932 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:50.932 INFO [12305]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 13:09:50.932 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:50.943 INFO [12305]: COREGRADE is stopping... -- 13:09:50.943 DEBUG [12305]: Closing database connection -- 13:09:50.943 SQL [12305]: pgsql_close() -- 13:09:50.953 INFO [12305]: COREGRADE is starting... -- 13:09:50.953 INFO [12305]: Version from config: 1.0 -- 13:09:50.953 DEBUG [12305]: Connecting to database... -- 13:09:50.953 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:50.953 SQL [12305]: pgsql_db_connect() -- 13:09:50.947 DEBUG [12250]: Database connection successful -- 13:09:50.947 INFO [12250]: _SERVER found -- 13:09:50.947 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 13:09:50.947 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:50.947 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:50.947 INFO [12250]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 13:09:50.947 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:50.959 INFO [12250]: COREGRADE is stopping... -- 13:09:50.959 DEBUG [12250]: Closing database connection -- 13:09:50.959 SQL [12250]: pgsql_close() -- 13:09:50.957 DEBUG [12305]: Database connection successful -- 13:09:50.957 INFO [12305]: _SERVER found -- 13:09:50.957 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 13:09:50.957 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:50.957 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:50.957 INFO [12305]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 13:09:50.957 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:50.968 INFO [12305]: COREGRADE is stopping... -- 13:09:50.968 DEBUG [12305]: Closing database connection -- 13:09:50.968 SQL [12305]: pgsql_close() -- 13:09:51.026 INFO [12305]: COREGRADE is starting... -- 13:09:51.026 INFO [12305]: Version from config: 1.0 -- 13:09:51.026 DEBUG [12305]: Connecting to database... -- 13:09:51.026 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:51.026 SQL [12305]: pgsql_db_connect() -- 13:09:51.030 INFO [12250]: COREGRADE is starting... -- 13:09:51.030 INFO [12250]: Version from config: 1.0 -- 13:09:51.030 DEBUG [12250]: Connecting to database... -- 13:09:51.030 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:51.030 SQL [12250]: pgsql_db_connect() -- 13:09:51.030 DEBUG [12305]: Database connection successful -- 13:09:51.030 INFO [12305]: _SERVER found -- 13:09:51.030 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 13:09:51.030 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:51.030 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:51.030 INFO [12305]: QUERY_STRING = /assets/js/pages/dashboard.js -- 13:09:51.030 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:51.041 INFO [12305]: COREGRADE is stopping... -- 13:09:51.041 DEBUG [12305]: Closing database connection -- 13:09:51.041 SQL [12305]: pgsql_close() -- 13:09:51.044 INFO [12247]: COREGRADE is starting... -- 13:09:51.044 INFO [12247]: Version from config: 1.0 -- 13:09:51.044 DEBUG [12247]: Connecting to database... -- 13:09:51.044 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:51.044 SQL [12247]: pgsql_db_connect() -- 13:09:51.034 DEBUG [12250]: Database connection successful -- 13:09:51.034 INFO [12250]: _SERVER found -- 13:09:51.034 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 13:09:51.034 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:51.034 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:51.034 INFO [12250]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 13:09:51.034 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:51.046 INFO [12250]: COREGRADE is stopping... -- 13:09:51.046 DEBUG [12250]: Closing database connection -- 13:09:51.046 SQL [12250]: pgsql_close() -- 13:09:51.048 DEBUG [12247]: Database connection successful -- 13:09:51.048 INFO [12247]: _SERVER found -- 13:09:51.048 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 13:09:51.048 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:51.048 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:51.048 INFO [12247]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 13:09:51.048 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:51.062 INFO [12247]: COREGRADE is stopping... -- 13:09:51.062 DEBUG [12247]: Closing database connection -- 13:09:51.062 SQL [12247]: pgsql_close() -- 13:09:51.115 INFO [12247]: COREGRADE is starting... -- 13:09:51.115 INFO [12247]: Version from config: 1.0 -- 13:09:51.115 DEBUG [12247]: Connecting to database... -- 13:09:51.115 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:51.115 SQL [12247]: pgsql_db_connect() -- 13:09:51.117 INFO [12250]: COREGRADE is starting... -- 13:09:51.118 INFO [12250]: Version from config: 1.0 -- 13:09:51.118 DEBUG [12250]: Connecting to database... -- 13:09:51.118 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:51.118 SQL [12250]: pgsql_db_connect() -- 13:09:51.120 DEBUG [12247]: Database connection successful -- 13:09:51.120 INFO [12247]: _SERVER found -- 13:09:51.120 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 13:09:51.120 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:51.120 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:51.120 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 13:09:51.120 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:51.131 INFO [12247]: COREGRADE is stopping... -- 13:09:51.131 DEBUG [12247]: Closing database connection -- 13:09:51.131 SQL [12247]: pgsql_close() -- 13:09:51.122 DEBUG [12250]: Database connection successful -- 13:09:51.122 INFO [12250]: _SERVER found -- 13:09:51.122 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 13:09:51.122 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:51.122 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:51.122 INFO [12250]: QUERY_STRING = /assets/js/pages/picker_date.js -- 13:09:51.122 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:51.133 INFO [12250]: COREGRADE is stopping... -- 13:09:51.133 DEBUG [12250]: Closing database connection -- 13:09:51.133 SQL [12250]: pgsql_close() -- 13:09:51.135 INFO [12247]: COREGRADE is starting... -- 13:09:51.135 INFO [12247]: Version from config: 1.0 -- 13:09:51.135 DEBUG [12247]: Connecting to database... -- 13:09:51.135 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:51.135 SQL [12247]: pgsql_db_connect() -- 13:09:51.139 DEBUG [12247]: Database connection successful -- 13:09:51.139 INFO [12247]: _SERVER found -- 13:09:51.139 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 13:09:51.139 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:51.139 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:51.139 INFO [12247]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 13:09:51.139 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:51.151 INFO [12247]: COREGRADE is stopping... -- 13:09:51.151 DEBUG [12247]: Closing database connection -- 13:09:51.151 SQL [12247]: pgsql_close() -- 13:09:51.204 INFO [12250]: COREGRADE is starting... -- 13:09:51.204 INFO [12250]: Version from config: 1.0 -- 13:09:51.204 DEBUG [12250]: Connecting to database... -- 13:09:51.204 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:51.204 SQL [12250]: pgsql_db_connect() -- 13:09:51.204 INFO [12247]: COREGRADE is starting... -- 13:09:51.205 INFO [12247]: Version from config: 1.0 -- 13:09:51.205 DEBUG [12247]: Connecting to database... -- 13:09:51.205 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:51.205 SQL [12247]: pgsql_db_connect() -- 13:09:51.209 DEBUG [12247]: Database connection successful -- 13:09:51.209 INFO [12247]: _SERVER found -- 13:09:51.209 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 13:09:51.209 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:51.209 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:51.209 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 13:09:51.209 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:51.220 INFO [12247]: COREGRADE is stopping... -- 13:09:51.209 DEBUG [12250]: Database connection successful -- 13:09:51.209 INFO [12250]: _SERVER found -- 13:09:51.209 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 13:09:51.209 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:51.209 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:51.209 INFO [12250]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 13:09:51.209 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:51.220 INFO [12250]: COREGRADE is stopping... -- 13:09:51.220 DEBUG [12247]: Closing database connection -- 13:09:51.220 DEBUG [12250]: Closing database connection -- 13:09:51.220 SQL [12247]: pgsql_close() -- 13:09:51.220 SQL [12250]: pgsql_close() -- 13:09:51.223 INFO [12247]: COREGRADE is starting... -- 13:09:51.223 INFO [12247]: Version from config: 1.0 -- 13:09:51.223 DEBUG [12247]: Connecting to database... -- 13:09:51.223 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:51.223 SQL [12247]: pgsql_db_connect() -- 13:09:51.227 DEBUG [12247]: Database connection successful -- 13:09:51.227 INFO [12247]: _SERVER found -- 13:09:51.227 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 13:09:51.227 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:51.227 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:51.227 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 13:09:51.227 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:51.239 INFO [12247]: COREGRADE is stopping... -- 13:09:51.239 DEBUG [12247]: Closing database connection -- 13:09:51.239 SQL [12247]: pgsql_close() -- 13:09:51.294 INFO [12247]: COREGRADE is starting... -- 13:09:51.294 INFO [12250]: COREGRADE is starting... -- 13:09:51.294 INFO [12250]: Version from config: 1.0 -- 13:09:51.294 DEBUG [12250]: Connecting to database... -- 13:09:51.294 INFO [12247]: Version from config: 1.0 -- 13:09:51.294 DEBUG [12247]: Connecting to database... -- 13:09:51.294 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:51.294 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:51.294 SQL [12250]: pgsql_db_connect() -- 13:09:51.294 SQL [12247]: pgsql_db_connect() -- 13:09:51.298 DEBUG [12247]: Database connection successful -- 13:09:51.298 INFO [12247]: _SERVER found -- 13:09:51.298 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 13:09:51.298 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:51.298 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:51.298 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 13:09:51.298 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:51.310 INFO [12247]: COREGRADE is stopping... -- 13:09:51.298 DEBUG [12250]: Database connection successful -- 13:09:51.298 INFO [12250]: _SERVER found -- 13:09:51.298 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 13:09:51.298 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:51.298 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:51.298 INFO [12250]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 13:09:51.298 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:51.310 INFO [12250]: COREGRADE is stopping... -- 13:09:51.310 DEBUG [12247]: Closing database connection -- 13:09:51.310 DEBUG [12250]: Closing database connection -- 13:09:51.310 SQL [12247]: pgsql_close() -- 13:09:51.310 SQL [12250]: pgsql_close() -- 13:09:51.311 INFO [12305]: COREGRADE is starting... -- 13:09:51.311 INFO [12305]: Version from config: 1.0 -- 13:09:51.311 DEBUG [12305]: Connecting to database... -- 13:09:51.311 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:51.311 SQL [12305]: pgsql_db_connect() -- 13:09:51.315 DEBUG [12305]: Database connection successful -- 13:09:51.315 INFO [12305]: _SERVER found -- 13:09:51.315 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 13:09:51.315 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:51.315 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:51.315 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 13:09:51.315 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:51.327 INFO [12305]: COREGRADE is stopping... -- 13:09:51.327 DEBUG [12305]: Closing database connection -- 13:09:51.327 SQL [12305]: pgsql_close() -- 13:09:51.383 INFO [12305]: COREGRADE is starting... -- 13:09:51.383 INFO [12250]: COREGRADE is starting... -- 13:09:51.383 INFO [12305]: Version from config: 1.0 -- 13:09:51.383 DEBUG [12305]: Connecting to database... -- 13:09:51.383 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:51.383 SQL [12305]: pgsql_db_connect() -- 13:09:51.383 INFO [12250]: Version from config: 1.0 -- 13:09:51.383 DEBUG [12250]: Connecting to database... -- 13:09:51.383 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:51.383 SQL [12250]: pgsql_db_connect() -- 13:09:51.387 DEBUG [12305]: Database connection successful -- 13:09:51.387 INFO [12305]: _SERVER found -- 13:09:51.387 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 13:09:51.387 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:51.387 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:51.387 INFO [12305]: QUERY_STRING = /assets/customjs/general.js -- 13:09:51.387 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:51.398 INFO [12305]: COREGRADE is stopping... -- 13:09:51.387 DEBUG [12250]: Database connection successful -- 13:09:51.387 INFO [12250]: _SERVER found -- 13:09:51.387 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 13:09:51.387 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:51.387 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:51.387 INFO [12250]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 13:09:51.387 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:51.398 INFO [12250]: COREGRADE is stopping... -- 13:09:51.398 DEBUG [12305]: Closing database connection -- 13:09:51.398 DEBUG [12250]: Closing database connection -- 13:09:51.398 SQL [12305]: pgsql_close() -- 13:09:51.398 SQL [12250]: pgsql_close() -- 13:09:51.471 INFO [12305]: COREGRADE is starting... -- 13:09:51.471 INFO [12305]: Version from config: 1.0 -- 13:09:51.471 DEBUG [12305]: Connecting to database... -- 13:09:51.471 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:51.471 SQL [12305]: pgsql_db_connect() -- 13:09:51.475 DEBUG [12305]: Database connection successful -- 13:09:51.475 INFO [12305]: _SERVER found -- 13:09:51.475 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 13:09:51.475 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:51.475 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:51.475 INFO [12305]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 13:09:51.475 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:51.487 INFO [12305]: COREGRADE is stopping... -- 13:09:51.487 DEBUG [12305]: Closing database connection -- 13:09:51.487 SQL [12305]: pgsql_close() -- 13:09:51.559 INFO [12305]: COREGRADE is starting... -- 13:09:51.559 INFO [12305]: Version from config: 1.0 -- 13:09:51.559 DEBUG [12305]: Connecting to database... -- 13:09:51.559 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:51.559 SQL [12305]: pgsql_db_connect() -- 13:09:51.563 DEBUG [12305]: Database connection successful -- 13:09:51.563 INFO [12305]: _SERVER found -- 13:09:51.563 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 13:09:51.563 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:51.563 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:51.563 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 13:09:51.563 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:51.575 INFO [12305]: COREGRADE is stopping... -- 13:09:51.575 DEBUG [12305]: Closing database connection -- 13:09:51.575 SQL [12305]: pgsql_close() -- 13:09:51.647 INFO [12305]: COREGRADE is starting... -- 13:09:51.647 INFO [12305]: Version from config: 1.0 -- 13:09:51.647 DEBUG [12305]: Connecting to database... -- 13:09:51.647 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:51.647 SQL [12305]: pgsql_db_connect() -- 13:09:51.651 DEBUG [12305]: Database connection successful -- 13:09:51.651 INFO [12305]: _SERVER found -- 13:09:51.651 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 13:09:51.651 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:51.651 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:51.651 INFO [12305]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 13:09:51.651 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:51.662 INFO [12305]: COREGRADE is stopping... -- 13:09:51.663 DEBUG [12305]: Closing database connection -- 13:09:51.663 SQL [12305]: pgsql_close() -- 13:09:51.735 INFO [12305]: COREGRADE is starting... -- 13:09:51.735 INFO [12305]: Version from config: 1.0 -- 13:09:51.735 DEBUG [12305]: Connecting to database... -- 13:09:51.735 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:51.735 SQL [12305]: pgsql_db_connect() -- 13:09:51.739 DEBUG [12305]: Database connection successful -- 13:09:51.739 INFO [12305]: _SERVER found -- 13:09:51.739 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 13:09:51.739 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:51.739 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:51.739 INFO [12305]: QUERY_STRING = /assets/js/pages/dashboard.js -- 13:09:51.739 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:51.750 INFO [12305]: COREGRADE is stopping... -- 13:09:51.751 DEBUG [12305]: Closing database connection -- 13:09:51.751 SQL [12305]: pgsql_close() -- 13:09:51.823 INFO [12305]: COREGRADE is starting... -- 13:09:51.824 INFO [12305]: Version from config: 1.0 -- 13:09:51.824 DEBUG [12305]: Connecting to database... -- 13:09:51.824 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:51.824 SQL [12305]: pgsql_db_connect() -- 13:09:51.828 DEBUG [12305]: Database connection successful -- 13:09:51.828 INFO [12305]: _SERVER found -- 13:09:51.828 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 13:09:51.828 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:51.828 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:51.828 INFO [12305]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 13:09:51.828 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:51.839 INFO [12305]: COREGRADE is stopping... -- 13:09:51.839 DEBUG [12305]: Closing database connection -- 13:09:51.839 SQL [12305]: pgsql_close() -- 13:09:51.911 INFO [12305]: COREGRADE is starting... -- 13:09:51.911 INFO [12305]: Version from config: 1.0 -- 13:09:51.911 DEBUG [12305]: Connecting to database... -- 13:09:51.911 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:51.911 SQL [12305]: pgsql_db_connect() -- 13:09:51.915 DEBUG [12305]: Database connection successful -- 13:09:51.915 INFO [12305]: _SERVER found -- 13:09:51.915 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 13:09:51.915 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:51.915 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:51.915 INFO [12305]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 13:09:51.915 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:51.927 INFO [12305]: COREGRADE is stopping... -- 13:09:51.927 DEBUG [12305]: Closing database connection -- 13:09:51.927 SQL [12305]: pgsql_close() -- 13:09:52.002 INFO [12305]: COREGRADE is starting... -- 13:09:52.002 INFO [12305]: Version from config: 1.0 -- 13:09:52.002 DEBUG [12305]: Connecting to database... -- 13:09:52.002 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:52.002 SQL [12305]: pgsql_db_connect() -- 13:09:52.006 DEBUG [12305]: Database connection successful -- 13:09:52.006 INFO [12305]: _SERVER found -- 13:09:52.006 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 13:09:52.006 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:52.006 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:52.006 INFO [12305]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 13:09:52.006 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:52.018 INFO [12305]: COREGRADE is stopping... -- 13:09:52.018 DEBUG [12305]: Closing database connection -- 13:09:52.018 SQL [12305]: pgsql_close() -- 13:09:52.090 INFO [12305]: COREGRADE is starting... -- 13:09:52.090 INFO [12305]: Version from config: 1.0 -- 13:09:52.090 DEBUG [12305]: Connecting to database... -- 13:09:52.090 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:52.090 SQL [12305]: pgsql_db_connect() -- 13:09:52.094 DEBUG [12305]: Database connection successful -- 13:09:52.094 INFO [12305]: _SERVER found -- 13:09:52.094 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 13:09:52.094 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:52.094 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:52.094 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 13:09:52.094 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:52.106 INFO [12305]: COREGRADE is stopping... -- 13:09:52.106 DEBUG [12305]: Closing database connection -- 13:09:52.106 SQL [12305]: pgsql_close() -- 13:09:52.178 INFO [12305]: COREGRADE is starting... -- 13:09:52.178 INFO [12305]: Version from config: 1.0 -- 13:09:52.178 DEBUG [12305]: Connecting to database... -- 13:09:52.178 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:52.178 SQL [12305]: pgsql_db_connect() -- 13:09:52.182 DEBUG [12305]: Database connection successful -- 13:09:52.182 INFO [12305]: _SERVER found -- 13:09:52.182 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 13:09:52.182 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:52.182 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:52.182 INFO [12305]: QUERY_STRING = /assets/js/pages/picker_date.js -- 13:09:52.182 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:52.193 INFO [12305]: COREGRADE is stopping... -- 13:09:52.193 DEBUG [12305]: Closing database connection -- 13:09:52.193 SQL [12305]: pgsql_close() -- 13:09:52.265 INFO [12305]: COREGRADE is starting... -- 13:09:52.265 INFO [12305]: Version from config: 1.0 -- 13:09:52.265 DEBUG [12305]: Connecting to database... -- 13:09:52.265 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:52.265 SQL [12305]: pgsql_db_connect() -- 13:09:52.269 DEBUG [12305]: Database connection successful -- 13:09:52.269 INFO [12305]: _SERVER found -- 13:09:52.269 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 13:09:52.269 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:52.269 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:52.269 INFO [12305]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 13:09:52.269 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:52.281 INFO [12305]: COREGRADE is stopping... -- 13:09:52.281 DEBUG [12305]: Closing database connection -- 13:09:52.281 SQL [12305]: pgsql_close() -- 13:09:52.353 INFO [12305]: COREGRADE is starting... -- 13:09:52.353 INFO [12305]: Version from config: 1.0 -- 13:09:52.353 DEBUG [12305]: Connecting to database... -- 13:09:52.353 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:52.353 SQL [12305]: pgsql_db_connect() -- 13:09:52.357 DEBUG [12305]: Database connection successful -- 13:09:52.357 INFO [12305]: _SERVER found -- 13:09:52.357 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 13:09:52.357 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:52.357 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:52.357 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 13:09:52.357 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:52.369 INFO [12305]: COREGRADE is stopping... -- 13:09:52.369 DEBUG [12305]: Closing database connection -- 13:09:52.369 SQL [12305]: pgsql_close() -- 13:09:52.441 INFO [12305]: COREGRADE is starting... -- 13:09:52.441 INFO [12305]: Version from config: 1.0 -- 13:09:52.441 DEBUG [12305]: Connecting to database... -- 13:09:52.441 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:52.441 SQL [12305]: pgsql_db_connect() -- 13:09:52.445 DEBUG [12305]: Database connection successful -- 13:09:52.445 INFO [12305]: _SERVER found -- 13:09:52.445 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 13:09:52.445 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:52.445 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:52.445 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 13:09:52.445 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:52.457 INFO [12305]: COREGRADE is stopping... -- 13:09:52.457 DEBUG [12305]: Closing database connection -- 13:09:52.457 SQL [12305]: pgsql_close() -- 13:09:52.529 INFO [12305]: COREGRADE is starting... -- 13:09:52.529 INFO [12305]: Version from config: 1.0 -- 13:09:52.529 DEBUG [12305]: Connecting to database... -- 13:09:52.529 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:52.529 SQL [12305]: pgsql_db_connect() -- 13:09:52.533 DEBUG [12305]: Database connection successful -- 13:09:52.533 INFO [12305]: _SERVER found -- 13:09:52.533 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 13:09:52.533 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:52.533 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:52.533 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 13:09:52.533 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:52.544 INFO [12305]: COREGRADE is stopping... -- 13:09:52.545 DEBUG [12305]: Closing database connection -- 13:09:52.545 SQL [12305]: pgsql_close() -- 13:09:52.617 INFO [12305]: COREGRADE is starting... -- 13:09:52.617 INFO [12305]: Version from config: 1.0 -- 13:09:52.617 DEBUG [12305]: Connecting to database... -- 13:09:52.617 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:52.617 SQL [12305]: pgsql_db_connect() -- 13:09:52.621 DEBUG [12305]: Database connection successful -- 13:09:52.621 INFO [12305]: _SERVER found -- 13:09:52.621 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 13:09:52.621 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:52.621 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:52.621 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 13:09:52.621 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:52.633 INFO [12305]: COREGRADE is stopping... -- 13:09:52.633 DEBUG [12305]: Closing database connection -- 13:09:52.633 SQL [12305]: pgsql_close() -- 13:09:52.715 INFO [12305]: COREGRADE is starting... -- 13:09:52.715 INFO [12305]: Version from config: 1.0 -- 13:09:52.715 DEBUG [12305]: Connecting to database... -- 13:09:52.715 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:52.715 SQL [12305]: pgsql_db_connect() -- 13:09:52.719 DEBUG [12305]: Database connection successful -- 13:09:52.719 INFO [12305]: _SERVER found -- 13:09:52.719 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 13:09:52.719 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:52.720 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:52.720 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 13:09:52.720 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:52.731 INFO [12305]: COREGRADE is stopping... -- 13:09:52.731 DEBUG [12305]: Closing database connection -- 13:09:52.731 SQL [12305]: pgsql_close() -- 13:09:52.803 INFO [12305]: COREGRADE is starting... -- 13:09:52.804 INFO [12305]: Version from config: 1.0 -- 13:09:52.804 DEBUG [12305]: Connecting to database... -- 13:09:52.804 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:52.804 SQL [12305]: pgsql_db_connect() -- 13:09:52.808 DEBUG [12305]: Database connection successful -- 13:09:52.808 INFO [12305]: _SERVER found -- 13:09:52.808 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 13:09:52.808 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:52.808 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:52.808 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 13:09:52.808 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:52.819 INFO [12305]: COREGRADE is stopping... -- 13:09:52.819 DEBUG [12305]: Closing database connection -- 13:09:52.819 SQL [12305]: pgsql_close() -- 13:09:52.893 INFO [12305]: COREGRADE is starting... -- 13:09:52.893 INFO [12305]: Version from config: 1.0 -- 13:09:52.893 DEBUG [12305]: Connecting to database... -- 13:09:52.893 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:52.893 SQL [12305]: pgsql_db_connect() -- 13:09:52.897 DEBUG [12305]: Database connection successful -- 13:09:52.897 INFO [12305]: _SERVER found -- 13:09:52.897 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 13:09:52.897 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:09:52.897 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:09:52.897 INFO [12305]: QUERY_STRING = /assets/customjs/general.js -- 13:09:52.897 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:09:52.909 INFO [12305]: COREGRADE is stopping... -- 13:09:52.909 DEBUG [12305]: Closing database connection -- 13:09:52.909 SQL [12305]: pgsql_close() -- 13:29:53.153 INFO [12246]: COREGRADE is starting... -- 13:29:53.153 INFO [12246]: Version from config: 1.0 -- 13:29:53.153 DEBUG [12246]: Connecting to database... -- 13:29:53.153 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:53.153 SQL [12246]: pgsql_db_connect() -- 13:29:53.159 DEBUG [12246]: Database connection successful -- 13:29:53.159 INFO [12246]: _SERVER found -- 13:29:53.159 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 13:29:53.159 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:53.159 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=b26oee6r2t2oe38rafa7ibng6jetisjb -- 13:29:53.159 INFO [12246]: QUERY_STRING = /logout -- 13:29:53.159 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:53.194 INFO [12246]: COREGRADE is stopping... -- 13:29:53.194 DEBUG [12246]: Closing database connection -- 13:29:53.194 SQL [12246]: pgsql_close() -- 13:29:53.856 INFO [12246]: COREGRADE is starting... -- 13:29:53.856 INFO [12246]: Version from config: 1.0 -- 13:29:53.856 DEBUG [12246]: Connecting to database... -- 13:29:53.856 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:53.856 SQL [12246]: pgsql_db_connect() -- 13:29:53.861 DEBUG [12246]: Database connection successful -- 13:29:53.861 INFO [12246]: _SERVER found -- 13:29:53.861 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 13:29:53.861 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:53.861 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:29:53.861 INFO [12246]: QUERY_STRING = /start -- 13:29:53.861 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:53.895 INFO [12246]: COREGRADE is stopping... -- 13:29:53.895 DEBUG [12246]: Closing database connection -- 13:29:53.895 SQL [12246]: pgsql_close() -- 13:29:54.051 INFO [12246]: COREGRADE is starting... -- 13:29:54.051 INFO [12246]: Version from config: 1.0 -- 13:29:54.051 DEBUG [12246]: Connecting to database... -- 13:29:54.051 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:54.051 SQL [12246]: pgsql_db_connect() -- 13:29:54.055 DEBUG [12246]: Database connection successful -- 13:29:54.055 INFO [12246]: _SERVER found -- 13:29:54.055 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 13:29:54.055 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:54.055 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:29:54.055 INFO [12246]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 13:29:54.055 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:54.067 INFO [12246]: COREGRADE is stopping... -- 13:29:54.067 DEBUG [12246]: Closing database connection -- 13:29:54.067 SQL [12246]: pgsql_close() -- 13:29:54.092 INFO [12249]: COREGRADE is starting... -- 13:29:54.092 INFO [12249]: Version from config: 1.0 -- 13:29:54.092 DEBUG [12249]: Connecting to database... -- 13:29:54.092 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:54.092 SQL [12249]: pgsql_db_connect() -- 13:29:54.097 DEBUG [12249]: Database connection successful -- 13:29:54.097 INFO [12249]: _SERVER found -- 13:29:54.097 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 13:29:54.097 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:54.097 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:29:54.097 INFO [12249]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 13:29:54.097 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:54.111 INFO [12249]: COREGRADE is stopping... -- 13:29:54.111 DEBUG [12249]: Closing database connection -- 13:29:54.111 SQL [12249]: pgsql_close() -- 13:29:54.112 INFO [12347]: COREGRADE is starting... -- 13:29:54.112 INFO [12347]: Version from config: 1.0 -- 13:29:54.112 DEBUG [12347]: Connecting to database... -- 13:29:54.112 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:54.112 SQL [12347]: pgsql_db_connect() -- 13:29:54.117 DEBUG [12347]: Database connection successful -- 13:29:54.117 INFO [12347]: _SERVER found -- 13:29:54.117 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 13:29:54.117 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:54.117 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:29:54.117 INFO [12347]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 13:29:54.117 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:54.131 INFO [12347]: COREGRADE is stopping... -- 13:29:54.132 DEBUG [12347]: Closing database connection -- 13:29:54.132 SQL [12347]: pgsql_close() -- 13:29:54.146 INFO [12246]: COREGRADE is starting... -- 13:29:54.146 INFO [12246]: Version from config: 1.0 -- 13:29:54.146 DEBUG [12246]: Connecting to database... -- 13:29:54.146 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:54.146 SQL [12246]: pgsql_db_connect() -- 13:29:54.150 DEBUG [12246]: Database connection successful -- 13:29:54.150 INFO [12246]: _SERVER found -- 13:29:54.150 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 13:29:54.150 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:54.150 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:29:54.150 INFO [12246]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 13:29:54.150 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:54.162 INFO [12246]: COREGRADE is stopping... -- 13:29:54.162 DEBUG [12246]: Closing database connection -- 13:29:54.162 SQL [12246]: pgsql_close() -- 13:29:54.202 INFO [12249]: COREGRADE is starting... -- 13:29:54.202 INFO [12249]: Version from config: 1.0 -- 13:29:54.202 DEBUG [12249]: Connecting to database... -- 13:29:54.203 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:54.203 SQL [12249]: pgsql_db_connect() -- 13:29:54.207 DEBUG [12249]: Database connection successful -- 13:29:54.207 INFO [12249]: _SERVER found -- 13:29:54.207 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 13:29:54.207 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:54.207 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:29:54.207 INFO [12249]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 13:29:54.207 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:54.219 INFO [12249]: COREGRADE is stopping... -- 13:29:54.219 DEBUG [12249]: Closing database connection -- 13:29:54.219 SQL [12249]: pgsql_close() -- 13:29:54.224 INFO [12347]: COREGRADE is starting... -- 13:29:54.224 INFO [12347]: Version from config: 1.0 -- 13:29:54.224 DEBUG [12347]: Connecting to database... -- 13:29:54.224 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:54.224 SQL [12347]: pgsql_db_connect() -- 13:29:54.240 INFO [12246]: COREGRADE is starting... -- 13:29:54.240 INFO [12246]: Version from config: 1.0 -- 13:29:54.240 DEBUG [12246]: Connecting to database... -- 13:29:54.240 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:54.240 SQL [12246]: pgsql_db_connect() -- 13:29:54.228 DEBUG [12347]: Database connection successful -- 13:29:54.228 INFO [12347]: _SERVER found -- 13:29:54.228 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 13:29:54.228 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:54.229 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:29:54.229 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 13:29:54.229 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:54.240 INFO [12347]: COREGRADE is stopping... -- 13:29:54.240 DEBUG [12347]: Closing database connection -- 13:29:54.240 SQL [12347]: pgsql_close() -- 13:29:54.245 DEBUG [12246]: Database connection successful -- 13:29:54.245 INFO [12246]: _SERVER found -- 13:29:54.245 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 13:29:54.245 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:54.245 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:29:54.245 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 13:29:54.245 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:54.257 INFO [12246]: COREGRADE is stopping... -- 13:29:54.257 DEBUG [12246]: Closing database connection -- 13:29:54.257 SQL [12246]: pgsql_close() -- 13:29:54.312 INFO [12249]: COREGRADE is starting... -- 13:29:54.312 INFO [12249]: Version from config: 1.0 -- 13:29:54.312 DEBUG [12249]: Connecting to database... -- 13:29:54.312 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:54.312 SQL [12249]: pgsql_db_connect() -- 13:29:54.316 DEBUG [12249]: Database connection successful -- 13:29:54.316 INFO [12249]: _SERVER found -- 13:29:54.316 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 13:29:54.317 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:54.317 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:29:54.317 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 13:29:54.317 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:54.328 INFO [12249]: COREGRADE is stopping... -- 13:29:54.328 DEBUG [12249]: Closing database connection -- 13:29:54.328 SQL [12249]: pgsql_close() -- 13:29:54.331 INFO [12347]: COREGRADE is starting... -- 13:29:54.332 INFO [12347]: Version from config: 1.0 -- 13:29:54.332 DEBUG [12347]: Connecting to database... -- 13:29:54.332 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:54.332 SQL [12347]: pgsql_db_connect() -- 13:29:54.335 INFO [12246]: COREGRADE is starting... -- 13:29:54.335 INFO [12246]: Version from config: 1.0 -- 13:29:54.335 DEBUG [12246]: Connecting to database... -- 13:29:54.335 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:54.335 SQL [12246]: pgsql_db_connect() -- 13:29:54.336 DEBUG [12347]: Database connection successful -- 13:29:54.336 INFO [12347]: _SERVER found -- 13:29:54.336 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 13:29:54.336 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:54.336 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:29:54.336 INFO [12347]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 13:29:54.336 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:54.348 INFO [12347]: COREGRADE is stopping... -- 13:29:54.348 DEBUG [12347]: Closing database connection -- 13:29:54.348 SQL [12347]: pgsql_close() -- 13:29:54.339 DEBUG [12246]: Database connection successful -- 13:29:54.339 INFO [12246]: _SERVER found -- 13:29:54.339 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 13:29:54.339 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:54.339 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:29:54.339 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 13:29:54.339 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:54.351 INFO [12246]: COREGRADE is stopping... -- 13:29:54.351 DEBUG [12246]: Closing database connection -- 13:29:54.351 SQL [12246]: pgsql_close() -- 13:29:54.409 INFO [12249]: COREGRADE is starting... -- 13:29:54.409 INFO [12249]: Version from config: 1.0 -- 13:29:54.409 DEBUG [12249]: Connecting to database... -- 13:29:54.409 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:54.410 SQL [12249]: pgsql_db_connect() -- 13:29:54.414 DEBUG [12249]: Database connection successful -- 13:29:54.414 INFO [12249]: _SERVER found -- 13:29:54.414 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 13:29:54.414 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:54.414 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:29:54.414 INFO [12249]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 13:29:54.414 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:54.426 INFO [12249]: COREGRADE is stopping... -- 13:29:54.426 DEBUG [12249]: Closing database connection -- 13:29:54.426 SQL [12249]: pgsql_close() -- 13:29:54.428 INFO [12246]: COREGRADE is starting... -- 13:29:54.428 INFO [12246]: Version from config: 1.0 -- 13:29:54.428 DEBUG [12246]: Connecting to database... -- 13:29:54.428 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:54.428 SQL [12246]: pgsql_db_connect() -- 13:29:54.433 DEBUG [12246]: Database connection successful -- 13:29:54.433 INFO [12246]: _SERVER found -- 13:29:54.433 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 13:29:54.433 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:54.433 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:29:54.433 INFO [12246]: QUERY_STRING = /assets/js/pages/dashboard.js -- 13:29:54.433 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:54.444 INFO [12246]: COREGRADE is stopping... -- 13:29:54.444 DEBUG [12246]: Closing database connection -- 13:29:54.444 SQL [12246]: pgsql_close() -- 13:29:54.507 INFO [12249]: COREGRADE is starting... -- 13:29:54.507 INFO [12249]: Version from config: 1.0 -- 13:29:54.507 DEBUG [12249]: Connecting to database... -- 13:29:54.507 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:54.507 SQL [12249]: pgsql_db_connect() -- 13:29:54.523 INFO [12246]: COREGRADE is starting... -- 13:29:54.523 INFO [12246]: Version from config: 1.0 -- 13:29:54.523 DEBUG [12246]: Connecting to database... -- 13:29:54.523 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:54.523 SQL [12246]: pgsql_db_connect() -- 13:29:54.511 DEBUG [12249]: Database connection successful -- 13:29:54.511 INFO [12249]: _SERVER found -- 13:29:54.511 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 13:29:54.511 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:54.511 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:29:54.511 INFO [12249]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 13:29:54.511 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:54.523 INFO [12249]: COREGRADE is stopping... -- 13:29:54.523 DEBUG [12249]: Closing database connection -- 13:29:54.523 SQL [12249]: pgsql_close() -- 13:29:54.527 DEBUG [12246]: Database connection successful -- 13:29:54.527 INFO [12246]: _SERVER found -- 13:29:54.527 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 13:29:54.527 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:54.527 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:29:54.527 INFO [12246]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 13:29:54.527 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:54.539 INFO [12246]: COREGRADE is stopping... -- 13:29:54.539 DEBUG [12246]: Closing database connection -- 13:29:54.539 SQL [12246]: pgsql_close() -- 13:29:54.603 INFO [12249]: COREGRADE is starting... -- 13:29:54.603 INFO [12249]: Version from config: 1.0 -- 13:29:54.603 DEBUG [12249]: Connecting to database... -- 13:29:54.603 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:54.603 SQL [12249]: pgsql_db_connect() -- 13:29:54.619 INFO [12246]: COREGRADE is starting... -- 13:29:54.619 INFO [12246]: Version from config: 1.0 -- 13:29:54.619 DEBUG [12246]: Connecting to database... -- 13:29:54.619 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:54.619 SQL [12246]: pgsql_db_connect() -- 13:29:54.607 DEBUG [12249]: Database connection successful -- 13:29:54.607 INFO [12249]: _SERVER found -- 13:29:54.607 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 13:29:54.607 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:54.607 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:29:54.607 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 13:29:54.607 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:54.619 INFO [12249]: COREGRADE is stopping... -- 13:29:54.619 DEBUG [12249]: Closing database connection -- 13:29:54.619 SQL [12249]: pgsql_close() -- 13:29:54.623 DEBUG [12246]: Database connection successful -- 13:29:54.623 INFO [12246]: _SERVER found -- 13:29:54.623 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 13:29:54.623 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:54.623 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:29:54.623 INFO [12246]: QUERY_STRING = /assets/js/pages/picker_date.js -- 13:29:54.623 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:54.635 INFO [12246]: COREGRADE is stopping... -- 13:29:54.635 DEBUG [12246]: Closing database connection -- 13:29:54.635 SQL [12246]: pgsql_close() -- 13:29:54.698 INFO [12249]: COREGRADE is starting... -- 13:29:54.698 INFO [12249]: Version from config: 1.0 -- 13:29:54.698 DEBUG [12249]: Connecting to database... -- 13:29:54.698 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:54.698 SQL [12249]: pgsql_db_connect() -- 13:29:54.702 DEBUG [12249]: Database connection successful -- 13:29:54.702 INFO [12249]: _SERVER found -- 13:29:54.702 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 13:29:54.702 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:54.702 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:29:54.702 INFO [12249]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 13:29:54.702 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:54.714 INFO [12249]: COREGRADE is stopping... -- 13:29:54.714 DEBUG [12249]: Closing database connection -- 13:29:54.714 SQL [12249]: pgsql_close() -- 13:29:54.715 INFO [12246]: COREGRADE is starting... -- 13:29:54.715 INFO [12246]: Version from config: 1.0 -- 13:29:54.715 DEBUG [12246]: Connecting to database... -- 13:29:54.715 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:54.715 SQL [12246]: pgsql_db_connect() -- 13:29:54.716 INFO [12347]: COREGRADE is starting... -- 13:29:54.716 INFO [12347]: Version from config: 1.0 -- 13:29:54.716 DEBUG [12347]: Connecting to database... -- 13:29:54.716 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:54.716 SQL [12347]: pgsql_db_connect() -- 13:29:54.720 DEBUG [12246]: Database connection successful -- 13:29:54.720 INFO [12246]: _SERVER found -- 13:29:54.720 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 13:29:54.720 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:54.720 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:29:54.720 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 13:29:54.720 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:54.732 INFO [12246]: COREGRADE is stopping... -- 13:29:54.732 DEBUG [12246]: Closing database connection -- 13:29:54.732 SQL [12246]: pgsql_close() -- 13:29:54.720 DEBUG [12347]: Database connection successful -- 13:29:54.720 INFO [12347]: _SERVER found -- 13:29:54.720 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 13:29:54.720 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:54.720 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:29:54.720 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 13:29:54.720 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:54.732 INFO [12347]: COREGRADE is stopping... -- 13:29:54.732 DEBUG [12347]: Closing database connection -- 13:29:54.732 SQL [12347]: pgsql_close() -- 13:29:54.795 INFO [12249]: COREGRADE is starting... -- 13:29:54.795 INFO [12249]: Version from config: 1.0 -- 13:29:54.795 DEBUG [12249]: Connecting to database... -- 13:29:54.795 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:54.795 SQL [12249]: pgsql_db_connect() -- 13:29:54.810 INFO [12246]: COREGRADE is starting... -- 13:29:54.810 INFO [12246]: Version from config: 1.0 -- 13:29:54.810 DEBUG [12246]: Connecting to database... -- 13:29:54.810 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:54.810 SQL [12246]: pgsql_db_connect() -- 13:29:54.800 DEBUG [12249]: Database connection successful -- 13:29:54.800 INFO [12249]: _SERVER found -- 13:29:54.800 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 13:29:54.800 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:54.800 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:29:54.800 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 13:29:54.800 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:54.811 INFO [12249]: COREGRADE is stopping... -- 13:29:54.811 DEBUG [12249]: Closing database connection -- 13:29:54.811 SQL [12249]: pgsql_close() -- 13:29:54.812 INFO [12347]: COREGRADE is starting... -- 13:29:54.812 INFO [12347]: Version from config: 1.0 -- 13:29:54.812 DEBUG [12347]: Connecting to database... -- 13:29:54.812 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:54.812 SQL [12347]: pgsql_db_connect() -- 13:29:54.815 DEBUG [12246]: Database connection successful -- 13:29:54.815 INFO [12246]: _SERVER found -- 13:29:54.815 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 13:29:54.815 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:54.815 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:29:54.815 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 13:29:54.815 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:54.827 INFO [12246]: COREGRADE is stopping... -- 13:29:54.827 DEBUG [12246]: Closing database connection -- 13:29:54.827 SQL [12246]: pgsql_close() -- 13:29:54.817 DEBUG [12347]: Database connection successful -- 13:29:54.817 INFO [12347]: _SERVER found -- 13:29:54.817 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 13:29:54.817 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:54.817 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:29:54.817 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 13:29:54.817 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:54.829 INFO [12347]: COREGRADE is stopping... -- 13:29:54.829 DEBUG [12347]: Closing database connection -- 13:29:54.829 SQL [12347]: pgsql_close() -- 13:29:54.892 INFO [12249]: COREGRADE is starting... -- 13:29:54.893 INFO [12249]: Version from config: 1.0 -- 13:29:54.893 DEBUG [12249]: Connecting to database... -- 13:29:54.893 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:54.893 SQL [12249]: pgsql_db_connect() -- 13:29:54.909 INFO [12347]: COREGRADE is starting... -- 13:29:54.897 DEBUG [12249]: Database connection successful -- 13:29:54.897 INFO [12249]: _SERVER found -- 13:29:54.897 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 13:29:54.897 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:54.897 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:29:54.897 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 13:29:54.897 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:54.909 INFO [12249]: COREGRADE is stopping... -- 13:29:54.909 DEBUG [12249]: Closing database connection -- 13:29:54.909 SQL [12249]: pgsql_close() -- 13:29:54.909 INFO [12347]: Version from config: 1.0 -- 13:29:54.909 DEBUG [12347]: Connecting to database... -- 13:29:54.910 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:54.910 SQL [12347]: pgsql_db_connect() -- 13:29:54.914 DEBUG [12347]: Database connection successful -- 13:29:54.914 INFO [12347]: _SERVER found -- 13:29:54.914 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 13:29:54.914 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:54.914 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:29:54.914 INFO [12347]: QUERY_STRING = /assets/customjs/general.js -- 13:29:54.914 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:54.926 INFO [12347]: COREGRADE is stopping... -- 13:29:54.926 DEBUG [12347]: Closing database connection -- 13:29:54.926 SQL [12347]: pgsql_close() -- 13:29:54.990 INFO [12249]: COREGRADE is starting... -- 13:29:54.990 INFO [12249]: Version from config: 1.0 -- 13:29:54.990 DEBUG [12249]: Connecting to database... -- 13:29:54.990 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:54.990 SQL [12249]: pgsql_db_connect() -- 13:29:54.994 DEBUG [12249]: Database connection successful -- 13:29:54.994 INFO [12249]: _SERVER found -- 13:29:54.994 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 13:29:54.994 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:54.994 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:29:54.994 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 13:29:54.994 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:55.006 INFO [12249]: COREGRADE is stopping... -- 13:29:55.006 DEBUG [12249]: Closing database connection -- 13:29:55.006 SQL [12249]: pgsql_close() -- 13:29:55.086 INFO [12249]: COREGRADE is starting... -- 13:29:55.087 INFO [12249]: Version from config: 1.0 -- 13:29:55.087 DEBUG [12249]: Connecting to database... -- 13:29:55.087 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:55.087 SQL [12249]: pgsql_db_connect() -- 13:29:55.091 DEBUG [12249]: Database connection successful -- 13:29:55.091 INFO [12249]: _SERVER found -- 13:29:55.091 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 13:29:55.091 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:55.091 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:29:55.091 INFO [12249]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 13:29:55.091 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:55.103 INFO [12249]: COREGRADE is stopping... -- 13:29:55.103 DEBUG [12249]: Closing database connection -- 13:29:55.103 SQL [12249]: pgsql_close() -- 13:29:56.380 INFO [12249]: COREGRADE is starting... -- 13:29:56.380 INFO [12249]: Version from config: 1.0 -- 13:29:56.380 DEBUG [12249]: Connecting to database... -- 13:29:56.380 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:56.380 SQL [12249]: pgsql_db_connect() -- 13:29:56.385 DEBUG [12249]: Database connection successful -- 13:29:56.385 INFO [12249]: _SERVER found -- 13:29:56.385 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 13:29:56.385 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:56.385 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:29:56.385 INFO [12249]: QUERY_STRING = /assets/js/pages/dashboard.js -- 13:29:56.385 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:56.397 INFO [12249]: COREGRADE is stopping... -- 13:29:56.397 DEBUG [12249]: Closing database connection -- 13:29:56.397 SQL [12249]: pgsql_close() -- 13:29:56.477 INFO [12249]: COREGRADE is starting... -- 13:29:56.477 INFO [12249]: Version from config: 1.0 -- 13:29:56.477 DEBUG [12249]: Connecting to database... -- 13:29:56.477 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:56.477 SQL [12249]: pgsql_db_connect() -- 13:29:56.482 DEBUG [12249]: Database connection successful -- 13:29:56.482 INFO [12249]: _SERVER found -- 13:29:56.482 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 13:29:56.482 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:56.482 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:29:56.482 INFO [12249]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 13:29:56.482 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:56.494 INFO [12249]: COREGRADE is stopping... -- 13:29:56.494 DEBUG [12249]: Closing database connection -- 13:29:56.494 SQL [12249]: pgsql_close() -- 13:29:56.573 INFO [12249]: COREGRADE is starting... -- 13:29:56.574 INFO [12249]: Version from config: 1.0 -- 13:29:56.574 DEBUG [12249]: Connecting to database... -- 13:29:56.574 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:56.574 SQL [12249]: pgsql_db_connect() -- 13:29:56.578 DEBUG [12249]: Database connection successful -- 13:29:56.578 INFO [12249]: _SERVER found -- 13:29:56.578 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 13:29:56.578 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:56.578 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:29:56.578 INFO [12249]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 13:29:56.578 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:56.590 INFO [12249]: COREGRADE is stopping... -- 13:29:56.590 DEBUG [12249]: Closing database connection -- 13:29:56.590 SQL [12249]: pgsql_close() -- 13:29:56.669 INFO [12249]: COREGRADE is starting... -- 13:29:56.669 INFO [12249]: Version from config: 1.0 -- 13:29:56.669 DEBUG [12249]: Connecting to database... -- 13:29:56.669 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:56.669 SQL [12249]: pgsql_db_connect() -- 13:29:56.674 DEBUG [12249]: Database connection successful -- 13:29:56.674 INFO [12249]: _SERVER found -- 13:29:56.674 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 13:29:56.674 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:56.674 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:29:56.674 INFO [12249]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 13:29:56.674 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:56.685 INFO [12249]: COREGRADE is stopping... -- 13:29:56.686 DEBUG [12249]: Closing database connection -- 13:29:56.686 SQL [12249]: pgsql_close() -- 13:29:56.763 INFO [12249]: COREGRADE is starting... -- 13:29:56.763 INFO [12249]: Version from config: 1.0 -- 13:29:56.763 DEBUG [12249]: Connecting to database... -- 13:29:56.763 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:56.764 SQL [12249]: pgsql_db_connect() -- 13:29:56.768 DEBUG [12249]: Database connection successful -- 13:29:56.768 INFO [12249]: _SERVER found -- 13:29:56.768 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 13:29:56.768 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:56.768 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:29:56.768 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 13:29:56.768 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:56.780 INFO [12249]: COREGRADE is stopping... -- 13:29:56.780 DEBUG [12249]: Closing database connection -- 13:29:56.780 SQL [12249]: pgsql_close() -- 13:29:57.633 INFO [12249]: COREGRADE is starting... -- 13:29:57.634 INFO [12249]: Version from config: 1.0 -- 13:29:57.634 DEBUG [12249]: Connecting to database... -- 13:29:57.634 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:57.634 SQL [12249]: pgsql_db_connect() -- 13:29:57.638 DEBUG [12249]: Database connection successful -- 13:29:57.638 INFO [12249]: _SERVER found -- 13:29:57.638 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 13:29:57.638 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:57.638 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:29:57.638 INFO [12249]: QUERY_STRING = /assets/js/pages/picker_date.js -- 13:29:57.638 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:57.650 INFO [12249]: COREGRADE is stopping... -- 13:29:57.650 DEBUG [12249]: Closing database connection -- 13:29:57.650 SQL [12249]: pgsql_close() -- 13:29:57.730 INFO [12249]: COREGRADE is starting... -- 13:29:57.730 INFO [12249]: Version from config: 1.0 -- 13:29:57.730 DEBUG [12249]: Connecting to database... -- 13:29:57.730 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:57.730 SQL [12249]: pgsql_db_connect() -- 13:29:57.734 DEBUG [12249]: Database connection successful -- 13:29:57.734 INFO [12249]: _SERVER found -- 13:29:57.734 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 13:29:57.734 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:57.734 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:29:57.734 INFO [12249]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 13:29:57.734 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:57.746 INFO [12249]: COREGRADE is stopping... -- 13:29:57.746 DEBUG [12249]: Closing database connection -- 13:29:57.746 SQL [12249]: pgsql_close() -- 13:29:57.824 INFO [12249]: COREGRADE is starting... -- 13:29:57.824 INFO [12249]: Version from config: 1.0 -- 13:29:57.824 DEBUG [12249]: Connecting to database... -- 13:29:57.824 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:57.825 SQL [12249]: pgsql_db_connect() -- 13:29:57.829 DEBUG [12249]: Database connection successful -- 13:29:57.829 INFO [12249]: _SERVER found -- 13:29:57.829 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 13:29:57.829 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:57.829 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:29:57.829 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 13:29:57.829 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:57.841 INFO [12249]: COREGRADE is stopping... -- 13:29:57.841 DEBUG [12249]: Closing database connection -- 13:29:57.841 SQL [12249]: pgsql_close() -- 13:29:57.920 INFO [12249]: COREGRADE is starting... -- 13:29:57.920 INFO [12249]: Version from config: 1.0 -- 13:29:57.920 DEBUG [12249]: Connecting to database... -- 13:29:57.920 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:57.921 SQL [12249]: pgsql_db_connect() -- 13:29:57.925 DEBUG [12249]: Database connection successful -- 13:29:57.925 INFO [12249]: _SERVER found -- 13:29:57.925 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 13:29:57.925 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:57.925 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:29:57.925 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 13:29:57.925 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:57.937 INFO [12249]: COREGRADE is stopping... -- 13:29:57.937 DEBUG [12249]: Closing database connection -- 13:29:57.937 SQL [12249]: pgsql_close() -- 13:29:58.731 INFO [12249]: COREGRADE is starting... -- 13:29:58.731 INFO [12249]: Version from config: 1.0 -- 13:29:58.731 DEBUG [12249]: Connecting to database... -- 13:29:58.731 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:58.731 SQL [12249]: pgsql_db_connect() -- 13:29:58.735 DEBUG [12249]: Database connection successful -- 13:29:58.735 INFO [12249]: _SERVER found -- 13:29:58.735 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 13:29:58.735 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:29:58.735 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:29:58.735 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 13:29:58.735 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:29:58.747 INFO [12249]: COREGRADE is stopping... -- 13:29:58.747 DEBUG [12249]: Closing database connection -- 13:29:58.747 SQL [12249]: pgsql_close() -- 13:30:00.290 INFO [12249]: COREGRADE is starting... -- 13:30:00.290 INFO [12249]: Version from config: 1.0 -- 13:30:00.290 DEBUG [12249]: Connecting to database... -- 13:30:00.290 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:30:00.290 SQL [12249]: pgsql_db_connect() -- 13:30:00.294 DEBUG [12249]: Database connection successful -- 13:30:00.294 INFO [12249]: _SERVER found -- 13:30:00.294 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 13:30:00.294 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:30:00.294 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:30:00.294 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 13:30:00.294 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:30:00.306 INFO [12249]: COREGRADE is stopping... -- 13:30:00.306 DEBUG [12249]: Closing database connection -- 13:30:00.306 SQL [12249]: pgsql_close() -- 13:30:00.397 INFO [12249]: COREGRADE is starting... -- 13:30:00.397 INFO [12249]: Version from config: 1.0 -- 13:30:00.397 DEBUG [12249]: Connecting to database... -- 13:30:00.397 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:30:00.397 SQL [12249]: pgsql_db_connect() -- 13:30:00.402 DEBUG [12249]: Database connection successful -- 13:30:00.402 INFO [12249]: _SERVER found -- 13:30:00.402 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 13:30:00.402 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:30:00.402 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:30:00.402 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 13:30:00.402 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:30:00.413 INFO [12249]: COREGRADE is stopping... -- 13:30:00.413 DEBUG [12249]: Closing database connection -- 13:30:00.413 SQL [12249]: pgsql_close() -- 13:30:00.494 INFO [12249]: COREGRADE is starting... -- 13:30:00.494 INFO [12249]: Version from config: 1.0 -- 13:30:00.494 DEBUG [12249]: Connecting to database... -- 13:30:00.494 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:30:00.494 SQL [12249]: pgsql_db_connect() -- 13:30:00.499 DEBUG [12249]: Database connection successful -- 13:30:00.499 INFO [12249]: _SERVER found -- 13:30:00.499 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 13:30:00.499 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:30:00.499 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:30:00.499 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 13:30:00.499 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:30:00.510 INFO [12249]: COREGRADE is stopping... -- 13:30:00.510 DEBUG [12249]: Closing database connection -- 13:30:00.510 SQL [12249]: pgsql_close() -- 13:30:00.592 INFO [12249]: COREGRADE is starting... -- 13:30:00.593 INFO [12249]: Version from config: 1.0 -- 13:30:00.593 DEBUG [12249]: Connecting to database... -- 13:30:00.593 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:30:00.593 SQL [12249]: pgsql_db_connect() -- 13:30:00.597 DEBUG [12249]: Database connection successful -- 13:30:00.597 INFO [12249]: _SERVER found -- 13:30:00.597 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 13:30:00.597 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:30:00.597 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:30:00.597 INFO [12249]: QUERY_STRING = /assets/customjs/general.js -- 13:30:00.597 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:30:00.609 INFO [12249]: COREGRADE is stopping... -- 13:30:00.609 DEBUG [12249]: Closing database connection -- 13:30:00.609 SQL [12249]: pgsql_close() -- 13:50:01.533 INFO [12248]: COREGRADE is starting... -- 13:50:01.534 INFO [12248]: Version from config: 1.0 -- 13:50:01.534 DEBUG [12248]: Connecting to database... -- 13:50:01.534 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:01.534 SQL [12248]: pgsql_db_connect() -- 13:50:01.538 DEBUG [12248]: Database connection successful -- 13:50:01.538 INFO [12248]: _SERVER found -- 13:50:01.538 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 13:50:01.538 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:50:01.538 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=luennqoc79iu05p79egvh26gknjlubg9 -- 13:50:01.538 INFO [12248]: QUERY_STRING = /logout -- 13:50:01.538 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:50:01.576 INFO [12248]: COREGRADE is stopping... -- 13:50:01.576 DEBUG [12248]: Closing database connection -- 13:50:01.576 SQL [12248]: pgsql_close() -- 13:50:01.659 INFO [12248]: COREGRADE is starting... -- 13:50:01.660 INFO [12248]: Version from config: 1.0 -- 13:50:01.660 DEBUG [12248]: Connecting to database... -- 13:50:01.660 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:01.660 SQL [12248]: pgsql_db_connect() -- 13:50:01.665 DEBUG [12248]: Database connection successful -- 13:50:01.665 INFO [12248]: _SERVER found -- 13:50:01.665 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 13:50:01.665 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:50:01.665 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=e4pdpgoflbte0di802k0rk1qhrgqgtd4 -- 13:50:01.665 INFO [12248]: QUERY_STRING = /start -- 13:50:01.665 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:50:01.703 INFO [12248]: COREGRADE is stopping... -- 13:50:01.703 DEBUG [12248]: Closing database connection -- 13:50:01.703 SQL [12248]: pgsql_close() -- 13:50:01.833 INFO [12248]: COREGRADE is starting... -- 13:50:01.834 INFO [12248]: Version from config: 1.0 -- 13:50:01.834 DEBUG [12248]: Connecting to database... -- 13:50:01.834 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:01.834 SQL [12248]: pgsql_db_connect() -- 13:50:01.838 DEBUG [12248]: Database connection successful -- 13:50:01.838 INFO [12248]: _SERVER found -- 13:50:01.838 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 13:50:01.838 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:50:01.838 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=e4pdpgoflbte0di802k0rk1qhrgqgtd4 -- 13:50:01.838 INFO [12248]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 13:50:01.838 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:50:01.849 INFO [12248]: COREGRADE is stopping... -- 13:50:01.850 DEBUG [12248]: Closing database connection -- 13:50:01.850 SQL [12248]: pgsql_close() -- 13:50:01.856 INFO [12248]: COREGRADE is starting... -- 13:50:01.856 INFO [12248]: Version from config: 1.0 -- 13:50:01.856 DEBUG [12248]: Connecting to database... -- 13:50:01.856 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:01.857 SQL [12248]: pgsql_db_connect() -- 13:50:01.861 DEBUG [12248]: Database connection successful -- 13:50:01.861 INFO [12248]: _SERVER found -- 13:50:01.861 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 13:50:01.861 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:50:01.861 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=e4pdpgoflbte0di802k0rk1qhrgqgtd4 -- 13:50:01.861 INFO [12248]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 13:50:01.861 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:50:01.872 INFO [12248]: COREGRADE is stopping... -- 13:50:01.872 DEBUG [12248]: Closing database connection -- 13:50:01.872 SQL [12248]: pgsql_close() -- 13:50:01.909 INFO [12248]: COREGRADE is starting... -- 13:50:01.909 INFO [12248]: Version from config: 1.0 -- 13:50:01.909 DEBUG [12248]: Connecting to database... -- 13:50:01.909 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:01.909 SQL [12248]: pgsql_db_connect() -- 13:50:01.913 DEBUG [12248]: Database connection successful -- 13:50:01.913 INFO [12248]: _SERVER found -- 13:50:01.913 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 13:50:01.913 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:50:01.913 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=e4pdpgoflbte0di802k0rk1qhrgqgtd4 -- 13:50:01.913 INFO [12248]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 13:50:01.913 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:50:01.925 INFO [12248]: COREGRADE is stopping... -- 13:50:01.925 DEBUG [12248]: Closing database connection -- 13:50:01.925 SQL [12248]: pgsql_close() -- 13:50:01.934 INFO [12248]: COREGRADE is starting... -- 13:50:01.934 INFO [12248]: Version from config: 1.0 -- 13:50:01.934 DEBUG [12248]: Connecting to database... -- 13:50:01.934 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:01.934 SQL [12248]: pgsql_db_connect() -- 13:50:01.943 INFO [12334]: COREGRADE is starting... -- 13:50:01.944 INFO [12334]: Version from config: 1.0 -- 13:50:01.944 DEBUG [12334]: Connecting to database... -- 13:50:01.944 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:01.944 SQL [12334]: pgsql_db_connect() -- 13:50:01.938 DEBUG [12248]: Database connection successful -- 13:50:01.938 INFO [12248]: _SERVER found -- 13:50:01.938 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 13:50:01.938 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:50:01.938 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=e4pdpgoflbte0di802k0rk1qhrgqgtd4 -- 13:50:01.938 INFO [12248]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 13:50:01.938 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:50:01.950 INFO [12248]: COREGRADE is stopping... -- 13:50:01.950 DEBUG [12248]: Closing database connection -- 13:50:01.950 SQL [12248]: pgsql_close() -- 13:50:01.952 DEBUG [12334]: Database connection successful -- 13:50:01.952 INFO [12334]: _SERVER found -- 13:50:01.952 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 13:50:01.952 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:50:01.952 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=e4pdpgoflbte0di802k0rk1qhrgqgtd4 -- 13:50:01.952 INFO [12334]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 13:50:01.952 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:50:01.990 INFO [12334]: COREGRADE is stopping... -- 13:50:01.990 DEBUG [12334]: Closing database connection -- 13:50:01.990 SQL [12334]: pgsql_close() -- 13:50:02.011 INFO [12334]: COREGRADE is starting... -- 13:50:02.011 INFO [12334]: Version from config: 1.0 -- 13:50:02.011 DEBUG [12334]: Connecting to database... -- 13:50:02.011 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:02.011 SQL [12334]: pgsql_db_connect() -- 13:50:02.016 DEBUG [12334]: Database connection successful -- 13:50:02.016 INFO [12334]: _SERVER found -- 13:50:02.016 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 13:50:02.016 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:50:02.016 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=e4pdpgoflbte0di802k0rk1qhrgqgtd4 -- 13:50:02.016 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 13:50:02.016 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:50:02.029 INFO [12334]: COREGRADE is stopping... -- 13:50:02.029 DEBUG [12334]: Closing database connection -- 13:50:02.029 SQL [12334]: pgsql_close() -- 13:50:02.034 INFO [12334]: COREGRADE is starting... -- 13:50:02.034 INFO [12334]: Version from config: 1.0 -- 13:50:02.034 DEBUG [12334]: Connecting to database... -- 13:50:02.034 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:02.034 SQL [12334]: pgsql_db_connect() -- 13:50:02.039 DEBUG [12334]: Database connection successful -- 13:50:02.039 INFO [12334]: _SERVER found -- 13:50:02.039 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 13:50:02.039 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:50:02.039 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=e4pdpgoflbte0di802k0rk1qhrgqgtd4 -- 13:50:02.039 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 13:50:02.039 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:50:02.050 INFO [12334]: COREGRADE is stopping... -- 13:50:02.050 DEBUG [12334]: Closing database connection -- 13:50:02.050 SQL [12334]: pgsql_close() -- 13:50:02.060 INFO [12334]: COREGRADE is starting... -- 13:50:02.060 INFO [12334]: Version from config: 1.0 -- 13:50:02.060 DEBUG [12334]: Connecting to database... -- 13:50:02.060 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:02.060 SQL [12334]: pgsql_db_connect() -- 13:50:02.064 DEBUG [12334]: Database connection successful -- 13:50:02.064 INFO [12334]: _SERVER found -- 13:50:02.064 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 13:50:02.064 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:50:02.064 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=e4pdpgoflbte0di802k0rk1qhrgqgtd4 -- 13:50:02.064 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 13:50:02.064 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:50:02.075 INFO [12334]: COREGRADE is stopping... -- 13:50:02.075 DEBUG [12334]: Closing database connection -- 13:50:02.075 SQL [12334]: pgsql_close() -- 13:50:02.115 INFO [12334]: COREGRADE is starting... -- 13:50:02.115 INFO [12334]: Version from config: 1.0 -- 13:50:02.115 DEBUG [12334]: Connecting to database... -- 13:50:02.115 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:02.115 SQL [12334]: pgsql_db_connect() -- 13:50:02.119 DEBUG [12334]: Database connection successful -- 13:50:02.119 INFO [12334]: _SERVER found -- 13:50:02.119 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 13:50:02.119 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:50:02.119 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=e4pdpgoflbte0di802k0rk1qhrgqgtd4 -- 13:50:02.119 INFO [12334]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 13:50:02.119 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:50:02.131 INFO [12334]: COREGRADE is stopping... -- 13:50:02.131 DEBUG [12334]: Closing database connection -- 13:50:02.131 SQL [12334]: pgsql_close() -- 13:50:02.134 INFO [12334]: COREGRADE is starting... -- 13:50:02.134 INFO [12334]: Version from config: 1.0 -- 13:50:02.134 DEBUG [12334]: Connecting to database... -- 13:50:02.134 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:02.134 SQL [12334]: pgsql_db_connect() -- 13:50:02.145 INFO [12248]: COREGRADE is starting... -- 13:50:02.145 INFO [12248]: Version from config: 1.0 -- 13:50:02.145 DEBUG [12248]: Connecting to database... -- 13:50:02.145 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:02.145 SQL [12248]: pgsql_db_connect() -- 13:50:02.138 DEBUG [12334]: Database connection successful -- 13:50:02.138 INFO [12334]: _SERVER found -- 13:50:02.138 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 13:50:02.138 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:50:02.138 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=e4pdpgoflbte0di802k0rk1qhrgqgtd4 -- 13:50:02.138 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 13:50:02.138 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:50:02.150 INFO [12334]: COREGRADE is stopping... -- 13:50:02.150 DEBUG [12334]: Closing database connection -- 13:50:02.150 SQL [12334]: pgsql_close() -- 13:50:02.149 DEBUG [12248]: Database connection successful -- 13:50:02.149 INFO [12248]: _SERVER found -- 13:50:02.149 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 13:50:02.149 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:50:02.149 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=e4pdpgoflbte0di802k0rk1qhrgqgtd4 -- 13:50:02.149 INFO [12248]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 13:50:02.149 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:50:02.161 INFO [12248]: COREGRADE is stopping... -- 13:50:02.161 DEBUG [12248]: Closing database connection -- 13:50:02.161 SQL [12248]: pgsql_close() -- 13:50:02.215 INFO [12248]: COREGRADE is starting... -- 13:50:02.215 INFO [12248]: Version from config: 1.0 -- 13:50:02.215 DEBUG [12248]: Connecting to database... -- 13:50:02.215 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:02.215 SQL [12248]: pgsql_db_connect() -- 13:50:02.223 INFO [12334]: COREGRADE is starting... -- 13:50:02.223 INFO [12334]: Version from config: 1.0 -- 13:50:02.223 DEBUG [12334]: Connecting to database... -- 13:50:02.223 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:02.223 SQL [12334]: pgsql_db_connect() -- 13:50:02.231 INFO [12247]: COREGRADE is starting... -- 13:50:02.219 DEBUG [12248]: Database connection successful -- 13:50:02.219 INFO [12248]: _SERVER found -- 13:50:02.219 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 13:50:02.219 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:50:02.219 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=e4pdpgoflbte0di802k0rk1qhrgqgtd4 -- 13:50:02.219 INFO [12248]: QUERY_STRING = /assets/js/pages/dashboard.js -- 13:50:02.219 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:50:02.231 INFO [12248]: COREGRADE is stopping... -- 13:50:02.231 DEBUG [12248]: Closing database connection -- 13:50:02.231 SQL [12248]: pgsql_close() -- 13:50:02.231 INFO [12247]: Version from config: 1.0 -- 13:50:02.231 DEBUG [12247]: Connecting to database... -- 13:50:02.231 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:02.231 SQL [12247]: pgsql_db_connect() -- 13:50:02.227 DEBUG [12334]: Database connection successful -- 13:50:02.227 INFO [12334]: _SERVER found -- 13:50:02.227 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 13:50:02.227 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:50:02.227 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=e4pdpgoflbte0di802k0rk1qhrgqgtd4 -- 13:50:02.227 INFO [12334]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 13:50:02.227 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:50:02.240 INFO [12334]: COREGRADE is stopping... -- 13:50:02.240 DEBUG [12334]: Closing database connection -- 13:50:02.240 SQL [12334]: pgsql_close() -- 13:50:02.236 DEBUG [12247]: Database connection successful -- 13:50:02.236 INFO [12247]: _SERVER found -- 13:50:02.236 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 13:50:02.236 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:50:02.236 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=e4pdpgoflbte0di802k0rk1qhrgqgtd4 -- 13:50:02.236 INFO [12247]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 13:50:02.236 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:50:02.248 INFO [12247]: COREGRADE is stopping... -- 13:50:02.248 DEBUG [12247]: Closing database connection -- 13:50:02.248 SQL [12247]: pgsql_close() -- 13:50:02.304 INFO [12247]: COREGRADE is starting... -- 13:50:02.305 INFO [12247]: Version from config: 1.0 -- 13:50:02.305 DEBUG [12247]: Connecting to database... -- 13:50:02.305 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:02.305 SQL [12247]: pgsql_db_connect() -- 13:50:02.312 INFO [12334]: COREGRADE is starting... -- 13:50:02.312 INFO [12334]: Version from config: 1.0 -- 13:50:02.312 DEBUG [12334]: Connecting to database... -- 13:50:02.312 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:02.312 SQL [12334]: pgsql_db_connect() -- 13:50:02.317 INFO [12248]: COREGRADE is starting... -- 13:50:02.318 INFO [12248]: Version from config: 1.0 -- 13:50:02.318 DEBUG [12248]: Connecting to database... -- 13:50:02.318 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:02.318 SQL [12248]: pgsql_db_connect() -- 13:50:02.309 DEBUG [12247]: Database connection successful -- 13:50:02.309 INFO [12247]: _SERVER found -- 13:50:02.309 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 13:50:02.309 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:50:02.309 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=e4pdpgoflbte0di802k0rk1qhrgqgtd4 -- 13:50:02.309 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 13:50:02.309 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:50:02.320 INFO [12247]: COREGRADE is stopping... -- 13:50:02.320 DEBUG [12247]: Closing database connection -- 13:50:02.320 SQL [12247]: pgsql_close() -- 13:50:02.316 DEBUG [12334]: Database connection successful -- 13:50:02.316 INFO [12334]: _SERVER found -- 13:50:02.316 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 13:50:02.316 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:50:02.316 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=e4pdpgoflbte0di802k0rk1qhrgqgtd4 -- 13:50:02.316 INFO [12334]: QUERY_STRING = /assets/js/pages/picker_date.js -- 13:50:02.316 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:50:02.328 INFO [12334]: COREGRADE is stopping... -- 13:50:02.328 DEBUG [12334]: Closing database connection -- 13:50:02.328 SQL [12334]: pgsql_close() -- 13:50:02.322 DEBUG [12248]: Database connection successful -- 13:50:02.322 INFO [12248]: _SERVER found -- 13:50:02.322 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 13:50:02.322 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:50:02.322 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=e4pdpgoflbte0di802k0rk1qhrgqgtd4 -- 13:50:02.322 INFO [12248]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 13:50:02.322 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:50:02.334 INFO [12248]: COREGRADE is stopping... -- 13:50:02.334 DEBUG [12248]: Closing database connection -- 13:50:02.334 SQL [12248]: pgsql_close() -- 13:50:02.393 INFO [12248]: COREGRADE is starting... -- 13:50:02.393 INFO [12248]: Version from config: 1.0 -- 13:50:02.393 DEBUG [12248]: Connecting to database... -- 13:50:02.393 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:02.393 SQL [12248]: pgsql_db_connect() -- 13:50:02.400 INFO [12334]: COREGRADE is starting... -- 13:50:02.400 INFO [12334]: Version from config: 1.0 -- 13:50:02.400 DEBUG [12334]: Connecting to database... -- 13:50:02.400 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:02.400 SQL [12334]: pgsql_db_connect() -- 13:50:02.402 INFO [12247]: COREGRADE is starting... -- 13:50:02.403 INFO [12247]: Version from config: 1.0 -- 13:50:02.403 DEBUG [12247]: Connecting to database... -- 13:50:02.403 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:02.403 SQL [12247]: pgsql_db_connect() -- 13:50:02.398 DEBUG [12248]: Database connection successful -- 13:50:02.398 INFO [12248]: _SERVER found -- 13:50:02.398 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 13:50:02.398 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:50:02.398 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=e4pdpgoflbte0di802k0rk1qhrgqgtd4 -- 13:50:02.398 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 13:50:02.398 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:50:02.410 INFO [12248]: COREGRADE is stopping... -- 13:50:02.410 DEBUG [12248]: Closing database connection -- 13:50:02.410 SQL [12248]: pgsql_close() -- 13:50:02.404 DEBUG [12334]: Database connection successful -- 13:50:02.404 INFO [12334]: _SERVER found -- 13:50:02.404 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 13:50:02.404 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:50:02.405 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=e4pdpgoflbte0di802k0rk1qhrgqgtd4 -- 13:50:02.405 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 13:50:02.405 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:50:02.416 INFO [12334]: COREGRADE is stopping... -- 13:50:02.416 DEBUG [12334]: Closing database connection -- 13:50:02.416 SQL [12334]: pgsql_close() -- 13:50:02.407 DEBUG [12247]: Database connection successful -- 13:50:02.407 INFO [12247]: _SERVER found -- 13:50:02.407 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 13:50:02.407 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:50:02.407 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=e4pdpgoflbte0di802k0rk1qhrgqgtd4 -- 13:50:02.407 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 13:50:02.407 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:50:02.418 INFO [12247]: COREGRADE is stopping... -- 13:50:02.418 DEBUG [12247]: Closing database connection -- 13:50:02.418 SQL [12247]: pgsql_close() -- 13:50:02.482 INFO [12247]: COREGRADE is starting... -- 13:50:02.483 INFO [12247]: Version from config: 1.0 -- 13:50:02.483 DEBUG [12247]: Connecting to database... -- 13:50:02.483 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:02.483 SQL [12247]: pgsql_db_connect() -- 13:50:02.488 INFO [12334]: COREGRADE is starting... -- 13:50:02.488 INFO [12334]: Version from config: 1.0 -- 13:50:02.488 DEBUG [12334]: Connecting to database... -- 13:50:02.488 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:02.488 SQL [12334]: pgsql_db_connect() -- 13:50:02.488 INFO [12248]: COREGRADE is starting... -- 13:50:02.488 INFO [12248]: Version from config: 1.0 -- 13:50:02.488 DEBUG [12248]: Connecting to database... -- 13:50:02.488 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:02.488 SQL [12248]: pgsql_db_connect() -- 13:50:02.487 DEBUG [12247]: Database connection successful -- 13:50:02.487 INFO [12247]: _SERVER found -- 13:50:02.487 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 13:50:02.487 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:50:02.487 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=e4pdpgoflbte0di802k0rk1qhrgqgtd4 -- 13:50:02.487 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 13:50:02.487 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:50:02.499 INFO [12247]: COREGRADE is stopping... -- 13:50:02.499 DEBUG [12247]: Closing database connection -- 13:50:02.499 SQL [12247]: pgsql_close() -- 13:50:02.492 DEBUG [12248]: Database connection successful -- 13:50:02.492 INFO [12248]: _SERVER found -- 13:50:02.492 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 13:50:02.492 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:50:02.492 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=e4pdpgoflbte0di802k0rk1qhrgqgtd4 -- 13:50:02.492 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 13:50:02.492 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:50:02.504 INFO [12248]: COREGRADE is stopping... -- 13:50:02.504 DEBUG [12248]: Closing database connection -- 13:50:02.504 SQL [12248]: pgsql_close() -- 13:50:02.493 DEBUG [12334]: Database connection successful -- 13:50:02.493 INFO [12334]: _SERVER found -- 13:50:02.493 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 13:50:02.493 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:50:02.493 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=e4pdpgoflbte0di802k0rk1qhrgqgtd4 -- 13:50:02.493 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 13:50:02.493 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:50:02.505 INFO [12334]: COREGRADE is stopping... -- 13:50:02.505 DEBUG [12334]: Closing database connection -- 13:50:02.505 SQL [12334]: pgsql_close() -- 13:50:02.570 INFO [12334]: COREGRADE is starting... -- 13:50:02.571 INFO [12334]: Version from config: 1.0 -- 13:50:02.571 DEBUG [12334]: Connecting to database... -- 13:50:02.571 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:02.571 SQL [12334]: pgsql_db_connect() -- 13:50:02.573 INFO [12248]: COREGRADE is starting... -- 13:50:02.573 INFO [12248]: Version from config: 1.0 -- 13:50:02.573 DEBUG [12248]: Connecting to database... -- 13:50:02.573 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:02.573 SQL [12248]: pgsql_db_connect() -- 13:50:02.575 DEBUG [12334]: Database connection successful -- 13:50:02.575 INFO [12334]: _SERVER found -- 13:50:02.575 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 13:50:02.575 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:50:02.575 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=e4pdpgoflbte0di802k0rk1qhrgqgtd4 -- 13:50:02.575 INFO [12334]: QUERY_STRING = /assets/customjs/general.js -- 13:50:02.575 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:50:02.587 INFO [12334]: COREGRADE is stopping... -- 13:50:02.587 DEBUG [12334]: Closing database connection -- 13:50:02.587 SQL [12334]: pgsql_close() -- 13:50:02.577 DEBUG [12248]: Database connection successful -- 13:50:02.577 INFO [12248]: _SERVER found -- 13:50:02.577 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 13:50:02.577 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:50:02.577 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=e4pdpgoflbte0di802k0rk1qhrgqgtd4 -- 13:50:02.577 INFO [12248]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 13:50:02.577 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:50:02.589 INFO [12248]: COREGRADE is stopping... -- 13:50:02.589 DEBUG [12248]: Closing database connection -- 13:50:02.589 SQL [12248]: pgsql_close() -- 13:50:02.659 INFO [12248]: COREGRADE is starting... -- 13:50:02.659 INFO [12248]: Version from config: 1.0 -- 13:50:02.659 DEBUG [12248]: Connecting to database... -- 13:50:02.659 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:02.659 SQL [12248]: pgsql_db_connect() -- 13:50:02.663 DEBUG [12248]: Database connection successful -- 13:50:02.663 INFO [12248]: _SERVER found -- 13:50:02.663 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 13:50:02.663 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:50:02.663 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=e4pdpgoflbte0di802k0rk1qhrgqgtd4 -- 13:50:02.663 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 13:50:02.663 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:50:02.675 INFO [12248]: COREGRADE is stopping... -- 13:50:02.675 DEBUG [12248]: Closing database connection -- 13:50:02.675 SQL [12248]: pgsql_close() -- 13:50:02.745 INFO [12248]: COREGRADE is starting... -- 13:50:02.745 INFO [12248]: Version from config: 1.0 -- 13:50:02.745 DEBUG [12248]: Connecting to database... -- 13:50:02.745 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:02.745 SQL [12248]: pgsql_db_connect() -- 13:50:02.750 DEBUG [12248]: Database connection successful -- 13:50:02.750 INFO [12248]: _SERVER found -- 13:50:02.750 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 13:50:02.750 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:50:02.750 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=e4pdpgoflbte0di802k0rk1qhrgqgtd4 -- 13:50:02.750 INFO [12248]: QUERY_STRING = /assets/js/pages/picker_date.js -- 13:50:02.750 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:50:02.761 INFO [12248]: COREGRADE is stopping... -- 13:50:02.761 DEBUG [12248]: Closing database connection -- 13:50:02.761 SQL [12248]: pgsql_close() -- 13:50:02.831 INFO [12248]: COREGRADE is starting... -- 13:50:02.831 INFO [12248]: Version from config: 1.0 -- 13:50:02.831 DEBUG [12248]: Connecting to database... -- 13:50:02.831 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:02.831 SQL [12248]: pgsql_db_connect() -- 13:50:02.836 DEBUG [12248]: Database connection successful -- 13:50:02.836 INFO [12248]: _SERVER found -- 13:50:02.836 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 13:50:02.836 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:50:02.836 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=e4pdpgoflbte0di802k0rk1qhrgqgtd4 -- 13:50:02.836 INFO [12248]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 13:50:02.836 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:50:02.847 INFO [12248]: COREGRADE is stopping... -- 13:50:02.847 DEBUG [12248]: Closing database connection -- 13:50:02.847 SQL [12248]: pgsql_close() -- 13:50:02.917 INFO [12248]: COREGRADE is starting... -- 13:50:02.918 INFO [12248]: Version from config: 1.0 -- 13:50:02.918 DEBUG [12248]: Connecting to database... -- 13:50:02.918 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:02.918 SQL [12248]: pgsql_db_connect() -- 13:50:02.922 DEBUG [12248]: Database connection successful -- 13:50:02.922 INFO [12248]: _SERVER found -- 13:50:02.922 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 13:50:02.922 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:50:02.922 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=e4pdpgoflbte0di802k0rk1qhrgqgtd4 -- 13:50:02.922 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 13:50:02.922 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:50:02.933 INFO [12248]: COREGRADE is stopping... -- 13:50:02.933 DEBUG [12248]: Closing database connection -- 13:50:02.933 SQL [12248]: pgsql_close() -- 13:50:03.004 INFO [12248]: COREGRADE is starting... -- 13:50:03.004 INFO [12248]: Version from config: 1.0 -- 13:50:03.004 DEBUG [12248]: Connecting to database... -- 13:50:03.004 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:03.004 SQL [12248]: pgsql_db_connect() -- 13:50:03.009 DEBUG [12248]: Database connection successful -- 13:50:03.009 INFO [12248]: _SERVER found -- 13:50:03.009 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 13:50:03.009 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:50:03.009 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=e4pdpgoflbte0di802k0rk1qhrgqgtd4 -- 13:50:03.009 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 13:50:03.009 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:50:03.020 INFO [12248]: COREGRADE is stopping... -- 13:50:03.020 DEBUG [12248]: Closing database connection -- 13:50:03.020 SQL [12248]: pgsql_close() -- 13:50:03.091 INFO [12248]: COREGRADE is starting... -- 13:50:03.091 INFO [12248]: Version from config: 1.0 -- 13:50:03.091 DEBUG [12248]: Connecting to database... -- 13:50:03.091 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:03.091 SQL [12248]: pgsql_db_connect() -- 13:50:03.095 DEBUG [12248]: Database connection successful -- 13:50:03.095 INFO [12248]: _SERVER found -- 13:50:03.095 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 13:50:03.095 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:50:03.095 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=e4pdpgoflbte0di802k0rk1qhrgqgtd4 -- 13:50:03.095 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 13:50:03.095 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:50:03.107 INFO [12248]: COREGRADE is stopping... -- 13:50:03.107 DEBUG [12248]: Closing database connection -- 13:50:03.107 SQL [12248]: pgsql_close() -- 13:50:03.176 INFO [12248]: COREGRADE is starting... -- 13:50:03.177 INFO [12248]: Version from config: 1.0 -- 13:50:03.177 DEBUG [12248]: Connecting to database... -- 13:50:03.177 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:03.177 SQL [12248]: pgsql_db_connect() -- 13:50:03.181 DEBUG [12248]: Database connection successful -- 13:50:03.181 INFO [12248]: _SERVER found -- 13:50:03.181 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 13:50:03.181 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:50:03.181 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=e4pdpgoflbte0di802k0rk1qhrgqgtd4 -- 13:50:03.181 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 13:50:03.181 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:50:03.193 INFO [12248]: COREGRADE is stopping... -- 13:50:03.193 DEBUG [12248]: Closing database connection -- 13:50:03.193 SQL [12248]: pgsql_close() -- 13:50:03.273 INFO [12248]: COREGRADE is starting... -- 13:50:03.273 INFO [12248]: Version from config: 1.0 -- 13:50:03.273 DEBUG [12248]: Connecting to database... -- 13:50:03.273 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:03.273 SQL [12248]: pgsql_db_connect() -- 13:50:03.277 DEBUG [12248]: Database connection successful -- 13:50:03.277 INFO [12248]: _SERVER found -- 13:50:03.277 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 13:50:03.277 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:50:03.277 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=e4pdpgoflbte0di802k0rk1qhrgqgtd4 -- 13:50:03.277 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 13:50:03.277 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:50:03.289 INFO [12248]: COREGRADE is stopping... -- 13:50:03.289 DEBUG [12248]: Closing database connection -- 13:50:03.289 SQL [12248]: pgsql_close() -- 13:50:03.359 INFO [12248]: COREGRADE is starting... -- 13:50:03.359 INFO [12248]: Version from config: 1.0 -- 13:50:03.359 DEBUG [12248]: Connecting to database... -- 13:50:03.359 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:03.359 SQL [12248]: pgsql_db_connect() -- 13:50:03.363 DEBUG [12248]: Database connection successful -- 13:50:03.363 INFO [12248]: _SERVER found -- 13:50:03.363 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 13:50:03.363 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:50:03.363 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=e4pdpgoflbte0di802k0rk1qhrgqgtd4 -- 13:50:03.363 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 13:50:03.363 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:50:03.375 INFO [12248]: COREGRADE is stopping... -- 13:50:03.375 DEBUG [12248]: Closing database connection -- 13:50:03.375 SQL [12248]: pgsql_close() -- 13:50:03.447 INFO [12248]: COREGRADE is starting... -- 13:50:03.447 INFO [12248]: Version from config: 1.0 -- 13:50:03.447 DEBUG [12248]: Connecting to database... -- 13:50:03.447 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:03.447 SQL [12248]: pgsql_db_connect() -- 13:50:03.451 DEBUG [12248]: Database connection successful -- 13:50:03.451 INFO [12248]: _SERVER found -- 13:50:03.451 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 13:50:03.451 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:50:03.451 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; _gid=GA1.2.118901071.1589651834; ci_session=e4pdpgoflbte0di802k0rk1qhrgqgtd4 -- 13:50:03.451 INFO [12248]: QUERY_STRING = /assets/customjs/general.js -- 13:50:03.451 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 13:50:03.463 INFO [12248]: COREGRADE is stopping... -- 13:50:03.463 DEBUG [12248]: Closing database connection -- 13:50:03.463 SQL [12248]: pgsql_close() -- 14:04:21.074 INFO [12250]: COREGRADE is starting... -- 14:04:21.074 INFO [12250]: Version from config: 1.0 -- 14:04:21.074 DEBUG [12250]: Connecting to database... -- 14:04:21.074 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:04:21.074 SQL [12250]: pgsql_db_connect() -- 14:04:21.079 DEBUG [12250]: Database connection successful -- 14:04:21.079 INFO [12250]: _SERVER found -- 14:04:21.079 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 14:04:21.079 INFO [12250]: SERVER_NAME = oameye.works.coregrade.com -- 14:04:21.079 INFO [12250]: QUERY_STRING = -- 14:04:21.079 INFO [12250]: HTTP_X_FORWARDED_FOR = 161.35.0.41 -- 14:04:21.114 INFO [12250]: COREGRADE is stopping... -- 14:04:21.114 DEBUG [12250]: Closing database connection -- 14:04:21.114 SQL [12250]: pgsql_close() -- 14:10:03.698 INFO [12305]: COREGRADE is starting... -- 14:10:03.699 INFO [12305]: Version from config: 1.0 -- 14:10:03.699 DEBUG [12305]: Connecting to database... -- 14:10:03.699 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:03.699 SQL [12305]: pgsql_db_connect() -- 14:10:03.703 DEBUG [12305]: Database connection successful -- 14:10:03.703 INFO [12305]: _SERVER found -- 14:10:03.703 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:10:03.703 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:03.703 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=e4pdpgoflbte0di802k0rk1qhrgqgtd4 -- 14:10:03.703 INFO [12305]: QUERY_STRING = /logout -- 14:10:03.703 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:03.737 INFO [12305]: COREGRADE is stopping... -- 14:10:03.737 DEBUG [12305]: Closing database connection -- 14:10:03.737 SQL [12305]: pgsql_close() -- 14:10:03.829 INFO [12305]: COREGRADE is starting... -- 14:10:03.829 INFO [12305]: Version from config: 1.0 -- 14:10:03.829 DEBUG [12305]: Connecting to database... -- 14:10:03.829 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:03.829 SQL [12305]: pgsql_db_connect() -- 14:10:03.834 DEBUG [12305]: Database connection successful -- 14:10:03.834 INFO [12305]: _SERVER found -- 14:10:03.834 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:10:03.834 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:03.834 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:03.834 INFO [12305]: QUERY_STRING = /start -- 14:10:03.834 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:03.868 INFO [12305]: COREGRADE is stopping... -- 14:10:03.868 DEBUG [12305]: Closing database connection -- 14:10:03.868 SQL [12305]: pgsql_close() -- 14:10:04.011 INFO [12305]: COREGRADE is starting... -- 14:10:04.011 INFO [12305]: Version from config: 1.0 -- 14:10:04.011 DEBUG [12305]: Connecting to database... -- 14:10:04.011 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:04.011 SQL [12305]: pgsql_db_connect() -- 14:10:04.015 DEBUG [12305]: Database connection successful -- 14:10:04.015 INFO [12305]: _SERVER found -- 14:10:04.015 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:10:04.015 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:04.015 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:04.015 INFO [12305]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 14:10:04.015 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:04.027 INFO [12305]: COREGRADE is stopping... -- 14:10:04.027 DEBUG [12305]: Closing database connection -- 14:10:04.027 SQL [12305]: pgsql_close() -- 14:10:04.044 INFO [12305]: COREGRADE is starting... -- 14:10:04.044 INFO [12305]: Version from config: 1.0 -- 14:10:04.044 DEBUG [12305]: Connecting to database... -- 14:10:04.044 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:04.044 SQL [12305]: pgsql_db_connect() -- 14:10:04.048 DEBUG [12305]: Database connection successful -- 14:10:04.048 INFO [12305]: _SERVER found -- 14:10:04.048 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:10:04.048 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:04.048 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:04.048 INFO [12305]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 14:10:04.048 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:04.060 INFO [12305]: COREGRADE is stopping... -- 14:10:04.060 DEBUG [12305]: Closing database connection -- 14:10:04.060 SQL [12305]: pgsql_close() -- 14:10:04.095 INFO [12305]: COREGRADE is starting... -- 14:10:04.096 INFO [12305]: Version from config: 1.0 -- 14:10:04.096 DEBUG [12305]: Connecting to database... -- 14:10:04.096 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:04.096 SQL [12305]: pgsql_db_connect() -- 14:10:04.100 DEBUG [12305]: Database connection successful -- 14:10:04.100 INFO [12305]: _SERVER found -- 14:10:04.100 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:10:04.100 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:04.100 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:04.100 INFO [12305]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 14:10:04.100 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:04.112 INFO [12305]: COREGRADE is stopping... -- 14:10:04.112 DEBUG [12305]: Closing database connection -- 14:10:04.112 SQL [12305]: pgsql_close() -- 14:10:04.122 INFO [12305]: COREGRADE is starting... -- 14:10:04.122 INFO [12305]: Version from config: 1.0 -- 14:10:04.122 DEBUG [12305]: Connecting to database... -- 14:10:04.122 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:04.122 SQL [12305]: pgsql_db_connect() -- 14:10:04.126 DEBUG [12305]: Database connection successful -- 14:10:04.126 INFO [12305]: _SERVER found -- 14:10:04.126 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:10:04.126 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:04.126 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:04.126 INFO [12305]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 14:10:04.126 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:04.138 INFO [12305]: COREGRADE is stopping... -- 14:10:04.138 DEBUG [12305]: Closing database connection -- 14:10:04.138 SQL [12305]: pgsql_close() -- 14:10:04.141 INFO [12246]: COREGRADE is starting... -- 14:10:04.141 INFO [12246]: Version from config: 1.0 -- 14:10:04.141 DEBUG [12246]: Connecting to database... -- 14:10:04.141 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:04.141 SQL [12246]: pgsql_db_connect() -- 14:10:04.145 DEBUG [12246]: Database connection successful -- 14:10:04.145 INFO [12246]: _SERVER found -- 14:10:04.145 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 14:10:04.145 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:04.145 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:04.145 INFO [12246]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 14:10:04.145 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:04.160 INFO [12246]: COREGRADE is stopping... -- 14:10:04.160 DEBUG [12246]: Closing database connection -- 14:10:04.160 SQL [12246]: pgsql_close() -- 14:10:04.208 INFO [12246]: COREGRADE is starting... -- 14:10:04.208 INFO [12246]: Version from config: 1.0 -- 14:10:04.208 DEBUG [12246]: Connecting to database... -- 14:10:04.208 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:04.208 SQL [12246]: pgsql_db_connect() -- 14:10:04.213 DEBUG [12246]: Database connection successful -- 14:10:04.213 INFO [12246]: _SERVER found -- 14:10:04.213 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 14:10:04.213 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:04.213 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:04.213 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 14:10:04.213 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:04.225 INFO [12246]: COREGRADE is stopping... -- 14:10:04.225 DEBUG [12246]: Closing database connection -- 14:10:04.225 SQL [12246]: pgsql_close() -- 14:10:04.229 INFO [12246]: COREGRADE is starting... -- 14:10:04.229 INFO [12246]: Version from config: 1.0 -- 14:10:04.229 DEBUG [12246]: Connecting to database... -- 14:10:04.229 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:04.230 SQL [12246]: pgsql_db_connect() -- 14:10:04.239 INFO [12305]: COREGRADE is starting... -- 14:10:04.239 INFO [12305]: Version from config: 1.0 -- 14:10:04.239 DEBUG [12305]: Connecting to database... -- 14:10:04.239 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:04.239 SQL [12305]: pgsql_db_connect() -- 14:10:04.234 DEBUG [12246]: Database connection successful -- 14:10:04.234 INFO [12246]: _SERVER found -- 14:10:04.234 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 14:10:04.234 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:04.234 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:04.234 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 14:10:04.234 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:04.245 INFO [12246]: COREGRADE is stopping... -- 14:10:04.245 DEBUG [12246]: Closing database connection -- 14:10:04.246 SQL [12246]: pgsql_close() -- 14:10:04.243 DEBUG [12305]: Database connection successful -- 14:10:04.243 INFO [12305]: _SERVER found -- 14:10:04.243 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:10:04.243 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:04.243 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:04.243 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 14:10:04.243 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:04.255 INFO [12305]: COREGRADE is stopping... -- 14:10:04.255 DEBUG [12305]: Closing database connection -- 14:10:04.255 SQL [12305]: pgsql_close() -- 14:10:04.317 INFO [12305]: COREGRADE is starting... -- 14:10:04.318 INFO [12305]: Version from config: 1.0 -- 14:10:04.318 DEBUG [12305]: Connecting to database... -- 14:10:04.318 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:04.318 SQL [12305]: pgsql_db_connect() -- 14:10:04.322 DEBUG [12305]: Database connection successful -- 14:10:04.322 INFO [12305]: _SERVER found -- 14:10:04.322 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:10:04.322 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:04.322 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:04.322 INFO [12305]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 14:10:04.322 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:04.334 INFO [12305]: COREGRADE is stopping... -- 14:10:04.334 DEBUG [12305]: Closing database connection -- 14:10:04.334 SQL [12305]: pgsql_close() -- 14:10:04.338 INFO [12305]: COREGRADE is starting... -- 14:10:04.338 INFO [12305]: Version from config: 1.0 -- 14:10:04.338 DEBUG [12305]: Connecting to database... -- 14:10:04.338 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:04.338 SQL [12305]: pgsql_db_connect() -- 14:10:04.342 DEBUG [12305]: Database connection successful -- 14:10:04.342 INFO [12305]: _SERVER found -- 14:10:04.342 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:10:04.342 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:04.342 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:04.342 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 14:10:04.342 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:04.354 INFO [12305]: COREGRADE is stopping... -- 14:10:04.354 DEBUG [12305]: Closing database connection -- 14:10:04.354 SQL [12305]: pgsql_close() -- 14:10:04.426 INFO [12305]: COREGRADE is starting... -- 14:10:04.426 INFO [12305]: Version from config: 1.0 -- 14:10:04.426 DEBUG [12305]: Connecting to database... -- 14:10:04.426 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:04.426 SQL [12305]: pgsql_db_connect() -- 14:10:04.436 INFO [12246]: COREGRADE is starting... -- 14:10:04.436 INFO [12246]: Version from config: 1.0 -- 14:10:04.436 DEBUG [12246]: Connecting to database... -- 14:10:04.436 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:04.436 SQL [12246]: pgsql_db_connect() -- 14:10:04.430 DEBUG [12305]: Database connection successful -- 14:10:04.430 INFO [12305]: _SERVER found -- 14:10:04.430 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:10:04.430 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:04.430 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:04.430 INFO [12305]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 14:10:04.430 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:04.442 INFO [12305]: COREGRADE is stopping... -- 14:10:04.442 DEBUG [12305]: Closing database connection -- 14:10:04.442 SQL [12305]: pgsql_close() -- 14:10:04.440 DEBUG [12246]: Database connection successful -- 14:10:04.440 INFO [12246]: _SERVER found -- 14:10:04.440 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 14:10:04.440 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:04.440 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:04.440 INFO [12246]: QUERY_STRING = /assets/js/pages/dashboard.js -- 14:10:04.440 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:04.452 INFO [12246]: COREGRADE is stopping... -- 14:10:04.452 DEBUG [12246]: Closing database connection -- 14:10:04.452 SQL [12246]: pgsql_close() -- 14:10:04.522 INFO [12246]: COREGRADE is starting... -- 14:10:04.522 INFO [12246]: Version from config: 1.0 -- 14:10:04.522 DEBUG [12246]: Connecting to database... -- 14:10:04.522 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:04.522 SQL [12246]: pgsql_db_connect() -- 14:10:04.534 INFO [12305]: COREGRADE is starting... -- 14:10:04.535 INFO [12305]: Version from config: 1.0 -- 14:10:04.535 DEBUG [12305]: Connecting to database... -- 14:10:04.535 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:04.535 SQL [12305]: pgsql_db_connect() -- 14:10:04.527 DEBUG [12246]: Database connection successful -- 14:10:04.527 INFO [12246]: _SERVER found -- 14:10:04.527 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 14:10:04.527 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:04.527 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:04.527 INFO [12246]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 14:10:04.527 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:04.539 INFO [12246]: COREGRADE is stopping... -- 14:10:04.539 DEBUG [12246]: Closing database connection -- 14:10:04.539 SQL [12246]: pgsql_close() -- 14:10:04.539 DEBUG [12305]: Database connection successful -- 14:10:04.539 INFO [12305]: _SERVER found -- 14:10:04.539 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:10:04.539 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:04.539 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:04.539 INFO [12305]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 14:10:04.539 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:04.551 INFO [12305]: COREGRADE is stopping... -- 14:10:04.551 DEBUG [12305]: Closing database connection -- 14:10:04.551 SQL [12305]: pgsql_close() -- 14:10:04.615 INFO [12305]: COREGRADE is starting... -- 14:10:04.615 INFO [12305]: Version from config: 1.0 -- 14:10:04.615 DEBUG [12305]: Connecting to database... -- 14:10:04.615 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:04.615 SQL [12305]: pgsql_db_connect() -- 14:10:04.619 INFO [12246]: COREGRADE is starting... -- 14:10:04.619 INFO [12246]: Version from config: 1.0 -- 14:10:04.619 DEBUG [12246]: Connecting to database... -- 14:10:04.619 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:04.619 SQL [12246]: pgsql_db_connect() -- 14:10:04.620 DEBUG [12305]: Database connection successful -- 14:10:04.620 INFO [12305]: _SERVER found -- 14:10:04.620 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:10:04.620 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:04.620 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:04.620 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 14:10:04.620 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:04.632 INFO [12305]: COREGRADE is stopping... -- 14:10:04.632 DEBUG [12305]: Closing database connection -- 14:10:04.632 SQL [12305]: pgsql_close() -- 14:10:04.632 INFO [12347]: COREGRADE is starting... -- 14:10:04.633 INFO [12347]: Version from config: 1.0 -- 14:10:04.633 DEBUG [12347]: Connecting to database... -- 14:10:04.633 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:04.633 SQL [12347]: pgsql_db_connect() -- 14:10:04.624 DEBUG [12246]: Database connection successful -- 14:10:04.624 INFO [12246]: _SERVER found -- 14:10:04.624 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 14:10:04.624 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:04.624 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:04.624 INFO [12246]: QUERY_STRING = /assets/js/pages/picker_date.js -- 14:10:04.624 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:04.636 INFO [12246]: COREGRADE is stopping... -- 14:10:04.636 DEBUG [12246]: Closing database connection -- 14:10:04.636 SQL [12246]: pgsql_close() -- 14:10:04.638 DEBUG [12347]: Database connection successful -- 14:10:04.638 INFO [12347]: _SERVER found -- 14:10:04.638 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 14:10:04.638 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:04.638 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:04.638 INFO [12347]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 14:10:04.638 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:04.651 INFO [12347]: COREGRADE is stopping... -- 14:10:04.651 DEBUG [12347]: Closing database connection -- 14:10:04.651 SQL [12347]: pgsql_close() -- 14:10:04.712 INFO [12347]: COREGRADE is starting... -- 14:10:04.712 INFO [12347]: Version from config: 1.0 -- 14:10:04.712 DEBUG [12347]: Connecting to database... -- 14:10:04.712 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:04.712 SQL [12347]: pgsql_db_connect() -- 14:10:04.715 INFO [12246]: COREGRADE is starting... -- 14:10:04.716 INFO [12246]: Version from config: 1.0 -- 14:10:04.716 DEBUG [12246]: Connecting to database... -- 14:10:04.716 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:04.716 SQL [12246]: pgsql_db_connect() -- 14:10:04.717 DEBUG [12347]: Database connection successful -- 14:10:04.717 INFO [12347]: _SERVER found -- 14:10:04.717 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 14:10:04.717 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:04.717 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:04.717 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 14:10:04.717 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:04.728 INFO [12347]: COREGRADE is stopping... -- 14:10:04.728 DEBUG [12347]: Closing database connection -- 14:10:04.728 SQL [12347]: pgsql_close() -- 14:10:04.732 INFO [12347]: COREGRADE is starting... -- 14:10:04.720 DEBUG [12246]: Database connection successful -- 14:10:04.720 INFO [12246]: _SERVER found -- 14:10:04.720 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 14:10:04.720 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:04.720 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:04.720 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 14:10:04.720 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:04.732 INFO [12246]: COREGRADE is stopping... -- 14:10:04.732 DEBUG [12246]: Closing database connection -- 14:10:04.732 SQL [12246]: pgsql_close() -- 14:10:04.732 INFO [12347]: Version from config: 1.0 -- 14:10:04.732 DEBUG [12347]: Connecting to database... -- 14:10:04.732 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:04.732 SQL [12347]: pgsql_db_connect() -- 14:10:04.736 DEBUG [12347]: Database connection successful -- 14:10:04.736 INFO [12347]: _SERVER found -- 14:10:04.736 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 14:10:04.736 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:04.736 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:04.736 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 14:10:04.736 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:04.748 INFO [12347]: COREGRADE is stopping... -- 14:10:04.748 DEBUG [12347]: Closing database connection -- 14:10:04.748 SQL [12347]: pgsql_close() -- 14:10:04.809 INFO [12347]: COREGRADE is starting... -- 14:10:04.809 INFO [12347]: Version from config: 1.0 -- 14:10:04.809 DEBUG [12347]: Connecting to database... -- 14:10:04.809 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:04.809 SQL [12347]: pgsql_db_connect() -- 14:10:04.810 INFO [12246]: COREGRADE is starting... -- 14:10:04.810 INFO [12246]: Version from config: 1.0 -- 14:10:04.810 DEBUG [12246]: Connecting to database... -- 14:10:04.810 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:04.810 SQL [12246]: pgsql_db_connect() -- 14:10:04.814 DEBUG [12347]: Database connection successful -- 14:10:04.814 INFO [12347]: _SERVER found -- 14:10:04.814 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 14:10:04.814 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:04.814 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:04.814 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 14:10:04.814 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:04.826 INFO [12347]: COREGRADE is stopping... -- 14:10:04.826 DEBUG [12347]: Closing database connection -- 14:10:04.826 SQL [12347]: pgsql_close() -- 14:10:04.814 DEBUG [12246]: Database connection successful -- 14:10:04.814 INFO [12246]: _SERVER found -- 14:10:04.814 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 14:10:04.814 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:04.814 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:04.814 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 14:10:04.814 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:04.826 INFO [12246]: COREGRADE is stopping... -- 14:10:04.826 DEBUG [12246]: Closing database connection -- 14:10:04.826 SQL [12246]: pgsql_close() -- 14:10:04.829 INFO [12246]: COREGRADE is starting... -- 14:10:04.829 INFO [12246]: Version from config: 1.0 -- 14:10:04.829 DEBUG [12246]: Connecting to database... -- 14:10:04.829 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:04.829 SQL [12246]: pgsql_db_connect() -- 14:10:04.833 DEBUG [12246]: Database connection successful -- 14:10:04.833 INFO [12246]: _SERVER found -- 14:10:04.833 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 14:10:04.833 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:04.833 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:04.833 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 14:10:04.833 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:04.845 INFO [12246]: COREGRADE is stopping... -- 14:10:04.845 DEBUG [12246]: Closing database connection -- 14:10:04.845 SQL [12246]: pgsql_close() -- 14:10:04.905 INFO [12246]: COREGRADE is starting... -- 14:10:04.905 INFO [12347]: COREGRADE is starting... -- 14:10:04.905 INFO [12347]: Version from config: 1.0 -- 14:10:04.905 DEBUG [12347]: Connecting to database... -- 14:10:04.905 INFO [12246]: Version from config: 1.0 -- 14:10:04.905 DEBUG [12246]: Connecting to database... -- 14:10:04.905 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:04.905 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:04.905 SQL [12347]: pgsql_db_connect() -- 14:10:04.905 SQL [12246]: pgsql_db_connect() -- 14:10:04.910 DEBUG [12347]: Database connection successful -- 14:10:04.910 INFO [12347]: _SERVER found -- 14:10:04.910 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 14:10:04.910 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:04.910 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:04.910 INFO [12347]: QUERY_STRING = /assets/customjs/general.js -- 14:10:04.910 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:04.921 INFO [12347]: COREGRADE is stopping... -- 14:10:04.910 DEBUG [12246]: Database connection successful -- 14:10:04.910 INFO [12246]: _SERVER found -- 14:10:04.910 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 14:10:04.910 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:04.910 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:04.910 INFO [12246]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 14:10:04.910 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:04.921 INFO [12246]: COREGRADE is stopping... -- 14:10:04.922 DEBUG [12347]: Closing database connection -- 14:10:04.922 DEBUG [12246]: Closing database connection -- 14:10:04.922 SQL [12347]: pgsql_close() -- 14:10:04.922 SQL [12246]: pgsql_close() -- 14:10:05.001 INFO [12246]: COREGRADE is starting... -- 14:10:05.001 INFO [12246]: Version from config: 1.0 -- 14:10:05.001 DEBUG [12246]: Connecting to database... -- 14:10:05.001 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:05.001 SQL [12246]: pgsql_db_connect() -- 14:10:05.006 DEBUG [12246]: Database connection successful -- 14:10:05.006 INFO [12246]: _SERVER found -- 14:10:05.006 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 14:10:05.006 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:05.006 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:05.006 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 14:10:05.006 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:05.018 INFO [12246]: COREGRADE is stopping... -- 14:10:05.018 DEBUG [12246]: Closing database connection -- 14:10:05.018 SQL [12246]: pgsql_close() -- 14:10:05.097 INFO [12246]: COREGRADE is starting... -- 14:10:05.097 INFO [12246]: Version from config: 1.0 -- 14:10:05.097 DEBUG [12246]: Connecting to database... -- 14:10:05.097 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:05.097 SQL [12246]: pgsql_db_connect() -- 14:10:05.102 DEBUG [12246]: Database connection successful -- 14:10:05.102 INFO [12246]: _SERVER found -- 14:10:05.102 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 14:10:05.102 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:05.102 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:05.102 INFO [12246]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 14:10:05.102 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:05.114 INFO [12246]: COREGRADE is stopping... -- 14:10:05.114 DEBUG [12246]: Closing database connection -- 14:10:05.114 SQL [12246]: pgsql_close() -- 14:10:05.194 INFO [12246]: COREGRADE is starting... -- 14:10:05.194 INFO [12246]: Version from config: 1.0 -- 14:10:05.194 DEBUG [12246]: Connecting to database... -- 14:10:05.194 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:05.194 SQL [12246]: pgsql_db_connect() -- 14:10:05.198 DEBUG [12246]: Database connection successful -- 14:10:05.198 INFO [12246]: _SERVER found -- 14:10:05.198 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 14:10:05.198 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:05.198 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:05.198 INFO [12246]: QUERY_STRING = /assets/js/pages/dashboard.js -- 14:10:05.198 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:05.210 INFO [12246]: COREGRADE is stopping... -- 14:10:05.210 DEBUG [12246]: Closing database connection -- 14:10:05.210 SQL [12246]: pgsql_close() -- 14:10:05.290 INFO [12246]: COREGRADE is starting... -- 14:10:05.291 INFO [12246]: Version from config: 1.0 -- 14:10:05.291 DEBUG [12246]: Connecting to database... -- 14:10:05.291 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:05.291 SQL [12246]: pgsql_db_connect() -- 14:10:05.295 DEBUG [12246]: Database connection successful -- 14:10:05.295 INFO [12246]: _SERVER found -- 14:10:05.295 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 14:10:05.295 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:05.295 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:05.295 INFO [12246]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 14:10:05.295 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:05.307 INFO [12246]: COREGRADE is stopping... -- 14:10:05.307 DEBUG [12246]: Closing database connection -- 14:10:05.307 SQL [12246]: pgsql_close() -- 14:10:05.386 INFO [12246]: COREGRADE is starting... -- 14:10:05.386 INFO [12246]: Version from config: 1.0 -- 14:10:05.386 DEBUG [12246]: Connecting to database... -- 14:10:05.386 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:05.386 SQL [12246]: pgsql_db_connect() -- 14:10:05.391 DEBUG [12246]: Database connection successful -- 14:10:05.391 INFO [12246]: _SERVER found -- 14:10:05.391 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 14:10:05.391 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:05.391 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:05.391 INFO [12246]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 14:10:05.391 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:05.402 INFO [12246]: COREGRADE is stopping... -- 14:10:05.402 DEBUG [12246]: Closing database connection -- 14:10:05.402 SQL [12246]: pgsql_close() -- 14:10:05.482 INFO [12246]: COREGRADE is starting... -- 14:10:05.482 INFO [12246]: Version from config: 1.0 -- 14:10:05.482 DEBUG [12246]: Connecting to database... -- 14:10:05.482 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:05.482 SQL [12246]: pgsql_db_connect() -- 14:10:05.487 DEBUG [12246]: Database connection successful -- 14:10:05.487 INFO [12246]: _SERVER found -- 14:10:05.487 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 14:10:05.487 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:05.487 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:05.487 INFO [12246]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 14:10:05.487 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:05.499 INFO [12246]: COREGRADE is stopping... -- 14:10:05.499 DEBUG [12246]: Closing database connection -- 14:10:05.499 SQL [12246]: pgsql_close() -- 14:10:05.578 INFO [12246]: COREGRADE is starting... -- 14:10:05.578 INFO [12246]: Version from config: 1.0 -- 14:10:05.578 DEBUG [12246]: Connecting to database... -- 14:10:05.578 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:05.578 SQL [12246]: pgsql_db_connect() -- 14:10:05.583 DEBUG [12246]: Database connection successful -- 14:10:05.583 INFO [12246]: _SERVER found -- 14:10:05.583 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 14:10:05.583 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:05.583 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:05.583 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 14:10:05.583 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:05.594 INFO [12246]: COREGRADE is stopping... -- 14:10:05.594 DEBUG [12246]: Closing database connection -- 14:10:05.594 SQL [12246]: pgsql_close() -- 14:10:05.674 INFO [12246]: COREGRADE is starting... -- 14:10:05.674 INFO [12246]: Version from config: 1.0 -- 14:10:05.675 DEBUG [12246]: Connecting to database... -- 14:10:05.675 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:05.675 SQL [12246]: pgsql_db_connect() -- 14:10:05.679 DEBUG [12246]: Database connection successful -- 14:10:05.679 INFO [12246]: _SERVER found -- 14:10:05.679 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 14:10:05.679 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:05.679 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:05.679 INFO [12246]: QUERY_STRING = /assets/js/pages/picker_date.js -- 14:10:05.679 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:05.691 INFO [12246]: COREGRADE is stopping... -- 14:10:05.691 DEBUG [12246]: Closing database connection -- 14:10:05.691 SQL [12246]: pgsql_close() -- 14:10:05.772 INFO [12246]: COREGRADE is starting... -- 14:10:05.772 INFO [12246]: Version from config: 1.0 -- 14:10:05.772 DEBUG [12246]: Connecting to database... -- 14:10:05.772 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:05.772 SQL [12246]: pgsql_db_connect() -- 14:10:05.777 DEBUG [12246]: Database connection successful -- 14:10:05.777 INFO [12246]: _SERVER found -- 14:10:05.777 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 14:10:05.777 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:05.777 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:05.777 INFO [12246]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 14:10:05.777 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:05.788 INFO [12246]: COREGRADE is stopping... -- 14:10:05.788 DEBUG [12246]: Closing database connection -- 14:10:05.788 SQL [12246]: pgsql_close() -- 14:10:06.146 INFO [12246]: COREGRADE is starting... -- 14:10:06.146 INFO [12246]: Version from config: 1.0 -- 14:10:06.146 DEBUG [12246]: Connecting to database... -- 14:10:06.146 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:06.146 SQL [12246]: pgsql_db_connect() -- 14:10:06.151 DEBUG [12246]: Database connection successful -- 14:10:06.151 INFO [12246]: _SERVER found -- 14:10:06.151 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 14:10:06.151 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:06.151 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:06.151 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 14:10:06.151 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:06.163 INFO [12246]: COREGRADE is stopping... -- 14:10:06.163 DEBUG [12246]: Closing database connection -- 14:10:06.163 SQL [12246]: pgsql_close() -- 14:10:06.242 INFO [12246]: COREGRADE is starting... -- 14:10:06.243 INFO [12246]: Version from config: 1.0 -- 14:10:06.243 DEBUG [12246]: Connecting to database... -- 14:10:06.243 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:06.243 SQL [12246]: pgsql_db_connect() -- 14:10:06.247 DEBUG [12246]: Database connection successful -- 14:10:06.247 INFO [12246]: _SERVER found -- 14:10:06.247 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 14:10:06.247 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:06.247 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:06.247 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 14:10:06.247 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:06.259 INFO [12246]: COREGRADE is stopping... -- 14:10:06.259 DEBUG [12246]: Closing database connection -- 14:10:06.259 SQL [12246]: pgsql_close() -- 14:10:06.339 INFO [12246]: COREGRADE is starting... -- 14:10:06.339 INFO [12246]: Version from config: 1.0 -- 14:10:06.339 DEBUG [12246]: Connecting to database... -- 14:10:06.339 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:06.339 SQL [12246]: pgsql_db_connect() -- 14:10:06.344 DEBUG [12246]: Database connection successful -- 14:10:06.344 INFO [12246]: _SERVER found -- 14:10:06.344 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 14:10:06.344 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:06.344 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:06.344 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 14:10:06.344 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:06.355 INFO [12246]: COREGRADE is stopping... -- 14:10:06.355 DEBUG [12246]: Closing database connection -- 14:10:06.355 SQL [12246]: pgsql_close() -- 14:10:06.435 INFO [12246]: COREGRADE is starting... -- 14:10:06.435 INFO [12246]: Version from config: 1.0 -- 14:10:06.435 DEBUG [12246]: Connecting to database... -- 14:10:06.435 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:06.435 SQL [12246]: pgsql_db_connect() -- 14:10:06.440 DEBUG [12246]: Database connection successful -- 14:10:06.440 INFO [12246]: _SERVER found -- 14:10:06.440 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 14:10:06.440 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:06.440 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:06.440 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 14:10:06.440 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:06.451 INFO [12246]: COREGRADE is stopping... -- 14:10:06.451 DEBUG [12246]: Closing database connection -- 14:10:06.451 SQL [12246]: pgsql_close() -- 14:10:06.819 INFO [12246]: COREGRADE is starting... -- 14:10:06.819 INFO [12246]: Version from config: 1.0 -- 14:10:06.819 DEBUG [12246]: Connecting to database... -- 14:10:06.819 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:06.819 SQL [12246]: pgsql_db_connect() -- 14:10:06.824 DEBUG [12246]: Database connection successful -- 14:10:06.824 INFO [12246]: _SERVER found -- 14:10:06.824 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 14:10:06.824 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:06.824 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:06.824 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 14:10:06.824 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:06.836 INFO [12246]: COREGRADE is stopping... -- 14:10:06.836 DEBUG [12246]: Closing database connection -- 14:10:06.836 SQL [12246]: pgsql_close() -- 14:10:06.915 INFO [12246]: COREGRADE is starting... -- 14:10:06.915 INFO [12246]: Version from config: 1.0 -- 14:10:06.915 DEBUG [12246]: Connecting to database... -- 14:10:06.915 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:06.915 SQL [12246]: pgsql_db_connect() -- 14:10:06.920 DEBUG [12246]: Database connection successful -- 14:10:06.920 INFO [12246]: _SERVER found -- 14:10:06.920 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 14:10:06.920 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:06.920 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:06.920 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 14:10:06.920 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:06.931 INFO [12246]: COREGRADE is stopping... -- 14:10:06.931 DEBUG [12246]: Closing database connection -- 14:10:06.931 SQL [12246]: pgsql_close() -- 14:10:07.012 INFO [12246]: COREGRADE is starting... -- 14:10:07.013 INFO [12246]: Version from config: 1.0 -- 14:10:07.013 DEBUG [12246]: Connecting to database... -- 14:10:07.013 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:07.013 SQL [12246]: pgsql_db_connect() -- 14:10:07.017 DEBUG [12246]: Database connection successful -- 14:10:07.017 INFO [12246]: _SERVER found -- 14:10:07.017 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 14:10:07.017 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:10:07.017 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:10:07.017 INFO [12246]: QUERY_STRING = /assets/customjs/general.js -- 14:10:07.017 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:10:07.029 INFO [12246]: COREGRADE is stopping... -- 14:10:07.029 DEBUG [12246]: Closing database connection -- 14:10:07.029 SQL [12246]: pgsql_close() -- 14:30:07.291 INFO [12249]: COREGRADE is starting... -- 14:30:07.291 INFO [12249]: Version from config: 1.0 -- 14:30:07.291 DEBUG [12249]: Connecting to database... -- 14:30:07.291 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:07.291 SQL [12249]: pgsql_db_connect() -- 14:30:07.295 DEBUG [12249]: Database connection successful -- 14:30:07.295 INFO [12249]: _SERVER found -- 14:30:07.295 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 14:30:07.295 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:07.295 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=ch5jf6amd9ufp286r4j12fgo37b0fons -- 14:30:07.295 INFO [12249]: QUERY_STRING = /logout -- 14:30:07.295 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:07.329 INFO [12249]: COREGRADE is stopping... -- 14:30:07.329 DEBUG [12249]: Closing database connection -- 14:30:07.329 SQL [12249]: pgsql_close() -- 14:30:07.425 INFO [12249]: COREGRADE is starting... -- 14:30:07.425 INFO [12249]: Version from config: 1.0 -- 14:30:07.425 DEBUG [12249]: Connecting to database... -- 14:30:07.425 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:07.425 SQL [12249]: pgsql_db_connect() -- 14:30:07.429 DEBUG [12249]: Database connection successful -- 14:30:07.429 INFO [12249]: _SERVER found -- 14:30:07.429 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 14:30:07.429 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:07.429 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:07.429 INFO [12249]: QUERY_STRING = /start -- 14:30:07.429 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:07.463 INFO [12249]: COREGRADE is stopping... -- 14:30:07.463 DEBUG [12249]: Closing database connection -- 14:30:07.463 SQL [12249]: pgsql_close() -- 14:30:07.607 INFO [12247]: COREGRADE is starting... -- 14:30:07.607 INFO [12247]: Version from config: 1.0 -- 14:30:07.607 DEBUG [12247]: Connecting to database... -- 14:30:07.607 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:07.607 SQL [12247]: pgsql_db_connect() -- 14:30:07.611 DEBUG [12247]: Database connection successful -- 14:30:07.611 INFO [12247]: _SERVER found -- 14:30:07.611 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 14:30:07.611 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:07.611 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:07.611 INFO [12247]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 14:30:07.611 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:07.624 INFO [12247]: COREGRADE is stopping... -- 14:30:07.624 DEBUG [12247]: Closing database connection -- 14:30:07.624 SQL [12247]: pgsql_close() -- 14:30:07.646 INFO [12249]: COREGRADE is starting... -- 14:30:07.646 INFO [12249]: Version from config: 1.0 -- 14:30:07.646 DEBUG [12249]: Connecting to database... -- 14:30:07.646 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:07.646 SQL [12249]: pgsql_db_connect() -- 14:30:07.650 DEBUG [12249]: Database connection successful -- 14:30:07.650 INFO [12249]: _SERVER found -- 14:30:07.650 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 14:30:07.650 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:07.650 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:07.650 INFO [12249]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 14:30:07.650 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:07.662 INFO [12249]: COREGRADE is stopping... -- 14:30:07.662 DEBUG [12249]: Closing database connection -- 14:30:07.662 SQL [12249]: pgsql_close() -- 14:30:07.718 INFO [12247]: COREGRADE is starting... -- 14:30:07.718 INFO [12247]: Version from config: 1.0 -- 14:30:07.718 DEBUG [12247]: Connecting to database... -- 14:30:07.718 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:07.719 SQL [12247]: pgsql_db_connect() -- 14:30:07.723 DEBUG [12247]: Database connection successful -- 14:30:07.723 INFO [12247]: _SERVER found -- 14:30:07.723 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 14:30:07.723 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:07.723 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:07.723 INFO [12247]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 14:30:07.723 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:07.734 INFO [12247]: COREGRADE is stopping... -- 14:30:07.734 DEBUG [12247]: Closing database connection -- 14:30:07.734 SQL [12247]: pgsql_close() -- 14:30:07.737 INFO [12334]: COREGRADE is starting... -- 14:30:07.737 INFO [12334]: Version from config: 1.0 -- 14:30:07.737 DEBUG [12334]: Connecting to database... -- 14:30:07.737 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:07.737 SQL [12334]: pgsql_db_connect() -- 14:30:07.746 INFO [12249]: COREGRADE is starting... -- 14:30:07.746 INFO [12249]: Version from config: 1.0 -- 14:30:07.746 DEBUG [12249]: Connecting to database... -- 14:30:07.746 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:07.746 SQL [12249]: pgsql_db_connect() -- 14:30:07.741 DEBUG [12334]: Database connection successful -- 14:30:07.741 INFO [12334]: _SERVER found -- 14:30:07.741 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 14:30:07.741 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:07.741 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:07.741 INFO [12334]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 14:30:07.741 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:07.755 INFO [12334]: COREGRADE is stopping... -- 14:30:07.755 DEBUG [12334]: Closing database connection -- 14:30:07.755 SQL [12334]: pgsql_close() -- 14:30:07.751 DEBUG [12249]: Database connection successful -- 14:30:07.751 INFO [12249]: _SERVER found -- 14:30:07.751 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 14:30:07.751 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:07.751 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:07.751 INFO [12249]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 14:30:07.751 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:07.762 INFO [12249]: COREGRADE is stopping... -- 14:30:07.762 DEBUG [12249]: Closing database connection -- 14:30:07.762 SQL [12249]: pgsql_close() -- 14:30:07.829 INFO [12247]: COREGRADE is starting... -- 14:30:07.829 INFO [12247]: Version from config: 1.0 -- 14:30:07.829 DEBUG [12247]: Connecting to database... -- 14:30:07.829 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:07.829 SQL [12247]: pgsql_db_connect() -- 14:30:07.833 DEBUG [12247]: Database connection successful -- 14:30:07.833 INFO [12247]: _SERVER found -- 14:30:07.833 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 14:30:07.833 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:07.833 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:07.834 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 14:30:07.834 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:07.845 INFO [12247]: COREGRADE is stopping... -- 14:30:07.845 DEBUG [12247]: Closing database connection -- 14:30:07.845 SQL [12247]: pgsql_close() -- 14:30:07.942 INFO [12247]: COREGRADE is starting... -- 14:30:07.942 INFO [12247]: Version from config: 1.0 -- 14:30:07.942 DEBUG [12247]: Connecting to database... -- 14:30:07.942 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:07.942 SQL [12247]: pgsql_db_connect() -- 14:30:07.946 DEBUG [12247]: Database connection successful -- 14:30:07.946 INFO [12247]: _SERVER found -- 14:30:07.946 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 14:30:07.946 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:07.946 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:07.946 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 14:30:07.946 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:07.958 INFO [12247]: COREGRADE is stopping... -- 14:30:07.958 DEBUG [12247]: Closing database connection -- 14:30:07.958 SQL [12247]: pgsql_close() -- 14:30:08.044 INFO [12247]: COREGRADE is starting... -- 14:30:08.044 INFO [12247]: Version from config: 1.0 -- 14:30:08.044 DEBUG [12247]: Connecting to database... -- 14:30:08.044 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:08.044 SQL [12247]: pgsql_db_connect() -- 14:30:08.048 DEBUG [12247]: Database connection successful -- 14:30:08.048 INFO [12247]: _SERVER found -- 14:30:08.048 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 14:30:08.048 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:08.048 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:08.048 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 14:30:08.048 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:08.060 INFO [12247]: COREGRADE is stopping... -- 14:30:08.060 DEBUG [12247]: Closing database connection -- 14:30:08.060 SQL [12247]: pgsql_close() -- 14:30:08.139 INFO [12334]: COREGRADE is starting... -- 14:30:08.139 INFO [12334]: Version from config: 1.0 -- 14:30:08.139 DEBUG [12334]: Connecting to database... -- 14:30:08.139 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:08.139 SQL [12334]: pgsql_db_connect() -- 14:30:08.143 DEBUG [12334]: Database connection successful -- 14:30:08.143 INFO [12334]: _SERVER found -- 14:30:08.143 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 14:30:08.143 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:08.143 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:08.143 INFO [12334]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 14:30:08.143 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:08.155 INFO [12334]: COREGRADE is stopping... -- 14:30:08.155 DEBUG [12334]: Closing database connection -- 14:30:08.155 SQL [12334]: pgsql_close() -- 14:30:08.422 INFO [12249]: COREGRADE is starting... -- 14:30:08.422 INFO [12249]: Version from config: 1.0 -- 14:30:08.422 DEBUG [12249]: Connecting to database... -- 14:30:08.422 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:08.422 SQL [12249]: pgsql_db_connect() -- 14:30:08.426 DEBUG [12249]: Database connection successful -- 14:30:08.426 INFO [12249]: _SERVER found -- 14:30:08.426 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 14:30:08.426 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:08.426 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:08.426 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 14:30:08.426 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:08.438 INFO [12249]: COREGRADE is stopping... -- 14:30:08.438 DEBUG [12249]: Closing database connection -- 14:30:08.438 SQL [12249]: pgsql_close() -- 14:30:08.521 INFO [12249]: COREGRADE is starting... -- 14:30:08.521 INFO [12249]: Version from config: 1.0 -- 14:30:08.521 DEBUG [12249]: Connecting to database... -- 14:30:08.521 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:08.521 SQL [12249]: pgsql_db_connect() -- 14:30:08.525 DEBUG [12249]: Database connection successful -- 14:30:08.525 INFO [12249]: _SERVER found -- 14:30:08.525 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 14:30:08.525 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:08.525 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:08.525 INFO [12249]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 14:30:08.525 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:08.537 INFO [12249]: COREGRADE is stopping... -- 14:30:08.537 DEBUG [12249]: Closing database connection -- 14:30:08.537 SQL [12249]: pgsql_close() -- 14:30:08.817 INFO [12334]: COREGRADE is starting... -- 14:30:08.817 INFO [12334]: Version from config: 1.0 -- 14:30:08.817 DEBUG [12334]: Connecting to database... -- 14:30:08.817 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:08.817 SQL [12334]: pgsql_db_connect() -- 14:30:08.822 DEBUG [12334]: Database connection successful -- 14:30:08.822 INFO [12334]: _SERVER found -- 14:30:08.822 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 14:30:08.822 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:08.822 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:08.822 INFO [12334]: QUERY_STRING = /assets/js/pages/dashboard.js -- 14:30:08.822 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:08.833 INFO [12334]: COREGRADE is stopping... -- 14:30:08.833 DEBUG [12334]: Closing database connection -- 14:30:08.833 SQL [12334]: pgsql_close() -- 14:30:08.910 INFO [12249]: COREGRADE is starting... -- 14:30:08.910 INFO [12249]: Version from config: 1.0 -- 14:30:08.910 DEBUG [12249]: Connecting to database... -- 14:30:08.910 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:08.910 SQL [12249]: pgsql_db_connect() -- 14:30:08.915 DEBUG [12249]: Database connection successful -- 14:30:08.915 INFO [12249]: _SERVER found -- 14:30:08.915 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 14:30:08.915 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:08.915 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:08.915 INFO [12249]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 14:30:08.915 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:08.926 INFO [12249]: COREGRADE is stopping... -- 14:30:08.926 DEBUG [12249]: Closing database connection -- 14:30:08.926 SQL [12249]: pgsql_close() -- 14:30:09.011 INFO [12249]: COREGRADE is starting... -- 14:30:09.011 INFO [12249]: Version from config: 1.0 -- 14:30:09.011 DEBUG [12249]: Connecting to database... -- 14:30:09.011 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:09.011 SQL [12249]: pgsql_db_connect() -- 14:30:09.015 DEBUG [12249]: Database connection successful -- 14:30:09.015 INFO [12249]: _SERVER found -- 14:30:09.015 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 14:30:09.015 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:09.015 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:09.015 INFO [12249]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 14:30:09.015 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:09.027 INFO [12249]: COREGRADE is stopping... -- 14:30:09.027 DEBUG [12249]: Closing database connection -- 14:30:09.027 SQL [12249]: pgsql_close() -- 14:30:09.039 INFO [12247]: COREGRADE is starting... -- 14:30:09.039 INFO [12247]: Version from config: 1.0 -- 14:30:09.039 DEBUG [12247]: Connecting to database... -- 14:30:09.039 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:09.039 SQL [12247]: pgsql_db_connect() -- 14:30:09.043 DEBUG [12247]: Database connection successful -- 14:30:09.043 INFO [12247]: _SERVER found -- 14:30:09.043 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 14:30:09.043 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:09.043 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:09.043 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 14:30:09.043 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:09.055 INFO [12247]: COREGRADE is stopping... -- 14:30:09.055 DEBUG [12247]: Closing database connection -- 14:30:09.055 SQL [12247]: pgsql_close() -- 14:30:09.110 INFO [12249]: COREGRADE is starting... -- 14:30:09.111 INFO [12249]: Version from config: 1.0 -- 14:30:09.111 DEBUG [12249]: Connecting to database... -- 14:30:09.111 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:09.111 SQL [12249]: pgsql_db_connect() -- 14:30:09.115 DEBUG [12249]: Database connection successful -- 14:30:09.115 INFO [12249]: _SERVER found -- 14:30:09.115 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 14:30:09.115 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:09.115 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:09.115 INFO [12249]: QUERY_STRING = /assets/js/pages/picker_date.js -- 14:30:09.115 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:09.126 INFO [12249]: COREGRADE is stopping... -- 14:30:09.126 DEBUG [12249]: Closing database connection -- 14:30:09.126 SQL [12249]: pgsql_close() -- 14:30:09.139 INFO [12247]: COREGRADE is starting... -- 14:30:09.140 INFO [12247]: Version from config: 1.0 -- 14:30:09.140 DEBUG [12247]: Connecting to database... -- 14:30:09.140 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:09.140 SQL [12247]: pgsql_db_connect() -- 14:30:09.144 DEBUG [12247]: Database connection successful -- 14:30:09.144 INFO [12247]: _SERVER found -- 14:30:09.144 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 14:30:09.144 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:09.144 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:09.144 INFO [12247]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 14:30:09.144 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:09.155 INFO [12247]: COREGRADE is stopping... -- 14:30:09.155 DEBUG [12247]: Closing database connection -- 14:30:09.155 SQL [12247]: pgsql_close() -- 14:30:09.211 INFO [12249]: COREGRADE is starting... -- 14:30:09.211 INFO [12249]: Version from config: 1.0 -- 14:30:09.211 DEBUG [12249]: Connecting to database... -- 14:30:09.211 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:09.211 SQL [12249]: pgsql_db_connect() -- 14:30:09.215 DEBUG [12249]: Database connection successful -- 14:30:09.215 INFO [12249]: _SERVER found -- 14:30:09.215 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 14:30:09.215 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:09.215 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:09.215 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 14:30:09.215 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:09.227 INFO [12249]: COREGRADE is stopping... -- 14:30:09.227 DEBUG [12249]: Closing database connection -- 14:30:09.227 SQL [12249]: pgsql_close() -- 14:30:09.239 INFO [12247]: COREGRADE is starting... -- 14:30:09.239 INFO [12247]: Version from config: 1.0 -- 14:30:09.239 DEBUG [12247]: Connecting to database... -- 14:30:09.239 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:09.239 SQL [12247]: pgsql_db_connect() -- 14:30:09.248 INFO [12334]: COREGRADE is starting... -- 14:30:09.248 INFO [12334]: Version from config: 1.0 -- 14:30:09.248 DEBUG [12334]: Connecting to database... -- 14:30:09.248 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:09.249 SQL [12334]: pgsql_db_connect() -- 14:30:09.243 DEBUG [12247]: Database connection successful -- 14:30:09.243 INFO [12247]: _SERVER found -- 14:30:09.243 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 14:30:09.243 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:09.243 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:09.243 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 14:30:09.243 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:09.255 INFO [12247]: COREGRADE is stopping... -- 14:30:09.255 DEBUG [12247]: Closing database connection -- 14:30:09.255 SQL [12247]: pgsql_close() -- 14:30:09.252 DEBUG [12334]: Database connection successful -- 14:30:09.252 INFO [12334]: _SERVER found -- 14:30:09.252 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 14:30:09.252 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:09.252 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:09.252 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 14:30:09.252 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:09.264 INFO [12334]: COREGRADE is stopping... -- 14:30:09.264 DEBUG [12334]: Closing database connection -- 14:30:09.264 SQL [12334]: pgsql_close() -- 14:30:09.310 INFO [12249]: COREGRADE is starting... -- 14:30:09.310 INFO [12249]: Version from config: 1.0 -- 14:30:09.310 DEBUG [12249]: Connecting to database... -- 14:30:09.310 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:09.310 SQL [12249]: pgsql_db_connect() -- 14:30:09.314 DEBUG [12249]: Database connection successful -- 14:30:09.314 INFO [12249]: _SERVER found -- 14:30:09.314 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 14:30:09.314 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:09.314 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:09.314 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 14:30:09.314 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:09.326 INFO [12249]: COREGRADE is stopping... -- 14:30:09.326 DEBUG [12249]: Closing database connection -- 14:30:09.326 SQL [12249]: pgsql_close() -- 14:30:09.339 INFO [12247]: COREGRADE is starting... -- 14:30:09.339 INFO [12247]: Version from config: 1.0 -- 14:30:09.339 DEBUG [12247]: Connecting to database... -- 14:30:09.339 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:09.339 SQL [12247]: pgsql_db_connect() -- 14:30:09.347 INFO [12334]: COREGRADE is starting... -- 14:30:09.348 INFO [12334]: Version from config: 1.0 -- 14:30:09.348 DEBUG [12334]: Connecting to database... -- 14:30:09.348 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:09.348 SQL [12334]: pgsql_db_connect() -- 14:30:09.343 DEBUG [12247]: Database connection successful -- 14:30:09.343 INFO [12247]: _SERVER found -- 14:30:09.343 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 14:30:09.343 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:09.343 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:09.343 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 14:30:09.343 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:09.355 INFO [12247]: COREGRADE is stopping... -- 14:30:09.355 DEBUG [12247]: Closing database connection -- 14:30:09.355 SQL [12247]: pgsql_close() -- 14:30:09.352 DEBUG [12334]: Database connection successful -- 14:30:09.352 INFO [12334]: _SERVER found -- 14:30:09.352 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 14:30:09.352 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:09.352 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:09.352 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 14:30:09.352 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:09.363 INFO [12334]: COREGRADE is stopping... -- 14:30:09.363 DEBUG [12334]: Closing database connection -- 14:30:09.363 SQL [12334]: pgsql_close() -- 14:30:09.448 INFO [12334]: COREGRADE is starting... -- 14:30:09.448 INFO [12334]: Version from config: 1.0 -- 14:30:09.448 DEBUG [12334]: Connecting to database... -- 14:30:09.448 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:09.448 SQL [12334]: pgsql_db_connect() -- 14:30:09.452 DEBUG [12334]: Database connection successful -- 14:30:09.452 INFO [12334]: _SERVER found -- 14:30:09.452 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 14:30:09.452 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:09.452 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:09.452 INFO [12334]: QUERY_STRING = /assets/customjs/general.js -- 14:30:09.452 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:09.464 INFO [12334]: COREGRADE is stopping... -- 14:30:09.464 DEBUG [12334]: Closing database connection -- 14:30:09.464 SQL [12334]: pgsql_close() -- 14:30:09.695 INFO [12249]: COREGRADE is starting... -- 14:30:09.695 INFO [12249]: Version from config: 1.0 -- 14:30:09.695 DEBUG [12249]: Connecting to database... -- 14:30:09.695 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:09.695 SQL [12249]: pgsql_db_connect() -- 14:30:09.699 DEBUG [12249]: Database connection successful -- 14:30:09.699 INFO [12249]: _SERVER found -- 14:30:09.699 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 14:30:09.699 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:09.699 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:09.699 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 14:30:09.699 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:09.710 INFO [12249]: COREGRADE is stopping... -- 14:30:09.711 DEBUG [12249]: Closing database connection -- 14:30:09.711 SQL [12249]: pgsql_close() -- 14:30:09.795 INFO [12249]: COREGRADE is starting... -- 14:30:09.795 INFO [12249]: Version from config: 1.0 -- 14:30:09.795 DEBUG [12249]: Connecting to database... -- 14:30:09.795 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:09.795 SQL [12249]: pgsql_db_connect() -- 14:30:09.799 DEBUG [12249]: Database connection successful -- 14:30:09.799 INFO [12249]: _SERVER found -- 14:30:09.799 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 14:30:09.799 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:09.799 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:09.799 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 14:30:09.799 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:09.811 INFO [12249]: COREGRADE is stopping... -- 14:30:09.811 DEBUG [12249]: Closing database connection -- 14:30:09.811 SQL [12249]: pgsql_close() -- 14:30:09.895 INFO [12249]: COREGRADE is starting... -- 14:30:09.896 INFO [12249]: Version from config: 1.0 -- 14:30:09.896 DEBUG [12249]: Connecting to database... -- 14:30:09.896 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:09.896 SQL [12249]: pgsql_db_connect() -- 14:30:09.900 DEBUG [12249]: Database connection successful -- 14:30:09.900 INFO [12249]: _SERVER found -- 14:30:09.900 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 14:30:09.900 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:09.900 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:09.900 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 14:30:09.900 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:09.911 INFO [12249]: COREGRADE is stopping... -- 14:30:09.911 DEBUG [12249]: Closing database connection -- 14:30:09.911 SQL [12249]: pgsql_close() -- 14:30:09.996 INFO [12249]: COREGRADE is starting... -- 14:30:09.996 INFO [12249]: Version from config: 1.0 -- 14:30:09.996 DEBUG [12249]: Connecting to database... -- 14:30:09.996 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:09.996 SQL [12249]: pgsql_db_connect() -- 14:30:09.000 DEBUG [12249]: Database connection successful -- 14:30:09.000 INFO [12249]: _SERVER found -- 14:30:09.000 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 14:30:09.000 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:09.000 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:09.000 INFO [12249]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 14:30:09.000 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:10.012 INFO [12249]: COREGRADE is stopping... -- 14:30:10.012 DEBUG [12249]: Closing database connection -- 14:30:10.012 SQL [12249]: pgsql_close() -- 14:30:10.096 INFO [12249]: COREGRADE is starting... -- 14:30:10.097 INFO [12249]: Version from config: 1.0 -- 14:30:10.097 DEBUG [12249]: Connecting to database... -- 14:30:10.097 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:10.097 SQL [12249]: pgsql_db_connect() -- 14:30:10.101 DEBUG [12249]: Database connection successful -- 14:30:10.101 INFO [12249]: _SERVER found -- 14:30:10.101 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 14:30:10.101 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:10.101 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:10.101 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 14:30:10.101 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:10.112 INFO [12249]: COREGRADE is stopping... -- 14:30:10.112 DEBUG [12249]: Closing database connection -- 14:30:10.112 SQL [12249]: pgsql_close() -- 14:30:11.335 INFO [12249]: COREGRADE is starting... -- 14:30:11.335 INFO [12249]: Version from config: 1.0 -- 14:30:11.335 DEBUG [12249]: Connecting to database... -- 14:30:11.335 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:11.335 SQL [12249]: pgsql_db_connect() -- 14:30:11.339 DEBUG [12249]: Database connection successful -- 14:30:11.339 INFO [12249]: _SERVER found -- 14:30:11.339 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 14:30:11.339 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:11.339 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:11.339 INFO [12249]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 14:30:11.339 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:11.351 INFO [12249]: COREGRADE is stopping... -- 14:30:11.351 DEBUG [12249]: Closing database connection -- 14:30:11.351 SQL [12249]: pgsql_close() -- 14:30:12.900 INFO [12249]: COREGRADE is starting... -- 14:30:12.900 INFO [12249]: Version from config: 1.0 -- 14:30:12.900 DEBUG [12249]: Connecting to database... -- 14:30:12.900 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:12.900 SQL [12249]: pgsql_db_connect() -- 14:30:12.904 DEBUG [12249]: Database connection successful -- 14:30:12.904 INFO [12249]: _SERVER found -- 14:30:12.904 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 14:30:12.904 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:12.904 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:12.904 INFO [12249]: QUERY_STRING = /assets/js/pages/dashboard.js -- 14:30:12.904 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:12.916 INFO [12249]: COREGRADE is stopping... -- 14:30:12.916 DEBUG [12249]: Closing database connection -- 14:30:12.916 SQL [12249]: pgsql_close() -- 14:30:13.615 INFO [12249]: COREGRADE is starting... -- 14:30:13.616 INFO [12249]: Version from config: 1.0 -- 14:30:13.616 DEBUG [12249]: Connecting to database... -- 14:30:13.616 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:13.616 SQL [12249]: pgsql_db_connect() -- 14:30:13.620 DEBUG [12249]: Database connection successful -- 14:30:13.620 INFO [12249]: _SERVER found -- 14:30:13.620 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 14:30:13.620 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:13.620 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:13.620 INFO [12249]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 14:30:13.620 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:13.631 INFO [12249]: COREGRADE is stopping... -- 14:30:13.631 DEBUG [12249]: Closing database connection -- 14:30:13.631 SQL [12249]: pgsql_close() -- 14:30:13.716 INFO [12249]: COREGRADE is starting... -- 14:30:13.716 INFO [12249]: Version from config: 1.0 -- 14:30:13.716 DEBUG [12249]: Connecting to database... -- 14:30:13.716 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:13.716 SQL [12249]: pgsql_db_connect() -- 14:30:13.720 DEBUG [12249]: Database connection successful -- 14:30:13.720 INFO [12249]: _SERVER found -- 14:30:13.720 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 14:30:13.720 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:13.720 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:13.720 INFO [12249]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 14:30:13.720 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:13.732 INFO [12249]: COREGRADE is stopping... -- 14:30:13.732 DEBUG [12249]: Closing database connection -- 14:30:13.732 SQL [12249]: pgsql_close() -- 14:30:13.816 INFO [12249]: COREGRADE is starting... -- 14:30:13.816 INFO [12249]: Version from config: 1.0 -- 14:30:13.816 DEBUG [12249]: Connecting to database... -- 14:30:13.816 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:13.816 SQL [12249]: pgsql_db_connect() -- 14:30:13.820 DEBUG [12249]: Database connection successful -- 14:30:13.820 INFO [12249]: _SERVER found -- 14:30:13.820 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 14:30:13.820 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:13.820 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:13.820 INFO [12249]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 14:30:13.820 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:13.832 INFO [12249]: COREGRADE is stopping... -- 14:30:13.832 DEBUG [12249]: Closing database connection -- 14:30:13.832 SQL [12249]: pgsql_close() -- 14:30:13.917 INFO [12249]: COREGRADE is starting... -- 14:30:13.917 INFO [12249]: Version from config: 1.0 -- 14:30:13.917 DEBUG [12249]: Connecting to database... -- 14:30:13.917 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:13.917 SQL [12249]: pgsql_db_connect() -- 14:30:13.921 DEBUG [12249]: Database connection successful -- 14:30:13.921 INFO [12249]: _SERVER found -- 14:30:13.921 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 14:30:13.921 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:13.921 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:13.921 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 14:30:13.921 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:13.932 INFO [12249]: COREGRADE is stopping... -- 14:30:13.932 DEBUG [12249]: Closing database connection -- 14:30:13.932 SQL [12249]: pgsql_close() -- 14:30:14.017 INFO [12249]: COREGRADE is starting... -- 14:30:14.017 INFO [12249]: Version from config: 1.0 -- 14:30:14.017 DEBUG [12249]: Connecting to database... -- 14:30:14.017 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:14.017 SQL [12249]: pgsql_db_connect() -- 14:30:14.021 DEBUG [12249]: Database connection successful -- 14:30:14.021 INFO [12249]: _SERVER found -- 14:30:14.021 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 14:30:14.021 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:14.021 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:14.021 INFO [12249]: QUERY_STRING = /assets/js/pages/picker_date.js -- 14:30:14.021 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:14.033 INFO [12249]: COREGRADE is stopping... -- 14:30:14.033 DEBUG [12249]: Closing database connection -- 14:30:14.033 SQL [12249]: pgsql_close() -- 14:30:14.401 INFO [12249]: COREGRADE is starting... -- 14:30:14.401 INFO [12249]: Version from config: 1.0 -- 14:30:14.401 DEBUG [12249]: Connecting to database... -- 14:30:14.401 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:14.401 SQL [12249]: pgsql_db_connect() -- 14:30:14.405 DEBUG [12249]: Database connection successful -- 14:30:14.405 INFO [12249]: _SERVER found -- 14:30:14.405 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 14:30:14.405 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:14.405 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:14.405 INFO [12249]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 14:30:14.405 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:14.417 INFO [12249]: COREGRADE is stopping... -- 14:30:14.417 DEBUG [12249]: Closing database connection -- 14:30:14.417 SQL [12249]: pgsql_close() -- 14:30:14.501 INFO [12249]: COREGRADE is starting... -- 14:30:14.501 INFO [12249]: Version from config: 1.0 -- 14:30:14.501 DEBUG [12249]: Connecting to database... -- 14:30:14.501 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:14.501 SQL [12249]: pgsql_db_connect() -- 14:30:14.506 DEBUG [12249]: Database connection successful -- 14:30:14.506 INFO [12249]: _SERVER found -- 14:30:14.506 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 14:30:14.506 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:14.506 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:14.506 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 14:30:14.506 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:14.517 INFO [12249]: COREGRADE is stopping... -- 14:30:14.517 DEBUG [12249]: Closing database connection -- 14:30:14.517 SQL [12249]: pgsql_close() -- 14:30:14.601 INFO [12249]: COREGRADE is starting... -- 14:30:14.601 INFO [12249]: Version from config: 1.0 -- 14:30:14.601 DEBUG [12249]: Connecting to database... -- 14:30:14.601 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:14.601 SQL [12249]: pgsql_db_connect() -- 14:30:14.606 DEBUG [12249]: Database connection successful -- 14:30:14.606 INFO [12249]: _SERVER found -- 14:30:14.606 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 14:30:14.606 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:14.606 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:14.606 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 14:30:14.606 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:14.617 INFO [12249]: COREGRADE is stopping... -- 14:30:14.617 DEBUG [12249]: Closing database connection -- 14:30:14.617 SQL [12249]: pgsql_close() -- 14:30:14.701 INFO [12249]: COREGRADE is starting... -- 14:30:14.701 INFO [12249]: Version from config: 1.0 -- 14:30:14.701 DEBUG [12249]: Connecting to database... -- 14:30:14.701 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:14.701 SQL [12249]: pgsql_db_connect() -- 14:30:14.706 DEBUG [12249]: Database connection successful -- 14:30:14.706 INFO [12249]: _SERVER found -- 14:30:14.706 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 14:30:14.706 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:14.706 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:14.706 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 14:30:14.706 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:14.718 INFO [12249]: COREGRADE is stopping... -- 14:30:14.718 DEBUG [12249]: Closing database connection -- 14:30:14.718 SQL [12249]: pgsql_close() -- 14:30:14.802 INFO [12249]: COREGRADE is starting... -- 14:30:14.802 INFO [12249]: Version from config: 1.0 -- 14:30:14.802 DEBUG [12249]: Connecting to database... -- 14:30:14.802 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:14.802 SQL [12249]: pgsql_db_connect() -- 14:30:14.806 DEBUG [12249]: Database connection successful -- 14:30:14.806 INFO [12249]: _SERVER found -- 14:30:14.806 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 14:30:14.806 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:14.806 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:14.806 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 14:30:14.806 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:14.818 INFO [12249]: COREGRADE is stopping... -- 14:30:14.818 DEBUG [12249]: Closing database connection -- 14:30:14.818 SQL [12249]: pgsql_close() -- 14:30:14.913 INFO [12249]: COREGRADE is starting... -- 14:30:14.913 INFO [12249]: Version from config: 1.0 -- 14:30:14.913 DEBUG [12249]: Connecting to database... -- 14:30:14.913 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:14.913 SQL [12249]: pgsql_db_connect() -- 14:30:14.918 DEBUG [12249]: Database connection successful -- 14:30:14.918 INFO [12249]: _SERVER found -- 14:30:14.918 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 14:30:14.918 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:14.918 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:14.918 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 14:30:14.918 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:14.929 INFO [12249]: COREGRADE is stopping... -- 14:30:14.929 DEBUG [12249]: Closing database connection -- 14:30:14.929 SQL [12249]: pgsql_close() -- 14:30:15.298 INFO [12249]: COREGRADE is starting... -- 14:30:15.298 INFO [12249]: Version from config: 1.0 -- 14:30:15.298 DEBUG [12249]: Connecting to database... -- 14:30:15.298 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:15.298 SQL [12249]: pgsql_db_connect() -- 14:30:15.302 DEBUG [12249]: Database connection successful -- 14:30:15.302 INFO [12249]: _SERVER found -- 14:30:15.302 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 14:30:15.302 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:15.302 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:15.302 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 14:30:15.302 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:15.314 INFO [12249]: COREGRADE is stopping... -- 14:30:15.314 DEBUG [12249]: Closing database connection -- 14:30:15.314 SQL [12249]: pgsql_close() -- 14:30:15.400 INFO [12249]: COREGRADE is starting... -- 14:30:15.400 INFO [12249]: Version from config: 1.0 -- 14:30:15.400 DEBUG [12249]: Connecting to database... -- 14:30:15.400 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:15.400 SQL [12249]: pgsql_db_connect() -- 14:30:15.404 DEBUG [12249]: Database connection successful -- 14:30:15.404 INFO [12249]: _SERVER found -- 14:30:15.404 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 14:30:15.404 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:30:15.404 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:30:15.404 INFO [12249]: QUERY_STRING = /assets/customjs/general.js -- 14:30:15.404 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:30:15.415 INFO [12249]: COREGRADE is stopping... -- 14:30:15.415 DEBUG [12249]: Closing database connection -- 14:30:15.415 SQL [12249]: pgsql_close() -- 14:50:15.679 INFO [12248]: COREGRADE is starting... -- 14:50:15.680 INFO [12248]: Version from config: 1.0 -- 14:50:15.680 DEBUG [12248]: Connecting to database... -- 14:50:15.680 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:15.680 SQL [12248]: pgsql_db_connect() -- 14:50:15.685 DEBUG [12248]: Database connection successful -- 14:50:15.685 INFO [12248]: _SERVER found -- 14:50:15.685 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 14:50:15.685 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:15.685 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=8phs7vdvlqt3efof39gbu2363cl43kk8 -- 14:50:15.685 INFO [12248]: QUERY_STRING = /logout -- 14:50:15.685 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:15.720 INFO [12248]: COREGRADE is stopping... -- 14:50:15.720 DEBUG [12248]: Closing database connection -- 14:50:15.720 SQL [12248]: pgsql_close() -- 14:50:15.817 INFO [12248]: COREGRADE is starting... -- 14:50:15.817 INFO [12248]: Version from config: 1.0 -- 14:50:15.817 DEBUG [12248]: Connecting to database... -- 14:50:15.817 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:15.817 SQL [12248]: pgsql_db_connect() -- 14:50:15.821 DEBUG [12248]: Database connection successful -- 14:50:15.821 INFO [12248]: _SERVER found -- 14:50:15.821 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 14:50:15.821 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:15.821 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:15.821 INFO [12248]: QUERY_STRING = /start -- 14:50:15.821 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:15.855 INFO [12248]: COREGRADE is stopping... -- 14:50:15.855 DEBUG [12248]: Closing database connection -- 14:50:15.855 SQL [12248]: pgsql_close() -- 14:50:16.313 INFO [12248]: COREGRADE is starting... -- 14:50:16.313 INFO [12248]: Version from config: 1.0 -- 14:50:16.313 DEBUG [12248]: Connecting to database... -- 14:50:16.313 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:16.313 SQL [12248]: pgsql_db_connect() -- 14:50:16.318 DEBUG [12248]: Database connection successful -- 14:50:16.318 INFO [12248]: _SERVER found -- 14:50:16.318 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 14:50:16.318 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:16.318 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:16.318 INFO [12248]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 14:50:16.318 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:16.329 INFO [12248]: COREGRADE is stopping... -- 14:50:16.329 DEBUG [12248]: Closing database connection -- 14:50:16.329 SQL [12248]: pgsql_close() -- 14:50:16.417 INFO [12248]: COREGRADE is starting... -- 14:50:16.417 INFO [12248]: Version from config: 1.0 -- 14:50:16.417 DEBUG [12248]: Connecting to database... -- 14:50:16.417 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:16.417 SQL [12248]: pgsql_db_connect() -- 14:50:16.421 DEBUG [12248]: Database connection successful -- 14:50:16.421 INFO [12248]: _SERVER found -- 14:50:16.421 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 14:50:16.421 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:16.421 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:16.421 INFO [12248]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 14:50:16.421 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:16.433 INFO [12248]: COREGRADE is stopping... -- 14:50:16.433 DEBUG [12248]: Closing database connection -- 14:50:16.433 SQL [12248]: pgsql_close() -- 14:50:16.490 INFO [12248]: COREGRADE is starting... -- 14:50:16.490 INFO [12248]: Version from config: 1.0 -- 14:50:16.490 DEBUG [12248]: Connecting to database... -- 14:50:16.490 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:16.490 SQL [12248]: pgsql_db_connect() -- 14:50:16.494 DEBUG [12248]: Database connection successful -- 14:50:16.494 INFO [12248]: _SERVER found -- 14:50:16.494 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 14:50:16.494 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:16.494 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:16.494 INFO [12248]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 14:50:16.494 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:16.506 INFO [12248]: COREGRADE is stopping... -- 14:50:16.506 DEBUG [12248]: Closing database connection -- 14:50:16.506 SQL [12248]: pgsql_close() -- 14:50:16.510 INFO [12250]: COREGRADE is starting... -- 14:50:16.510 INFO [12250]: Version from config: 1.0 -- 14:50:16.510 DEBUG [12250]: Connecting to database... -- 14:50:16.510 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:16.510 SQL [12250]: pgsql_db_connect() -- 14:50:16.517 INFO [12248]: COREGRADE is starting... -- 14:50:16.518 INFO [12248]: Version from config: 1.0 -- 14:50:16.518 DEBUG [12248]: Connecting to database... -- 14:50:16.518 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:16.518 SQL [12248]: pgsql_db_connect() -- 14:50:16.514 DEBUG [12250]: Database connection successful -- 14:50:16.514 INFO [12250]: _SERVER found -- 14:50:16.514 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 14:50:16.514 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:16.514 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:16.514 INFO [12250]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 14:50:16.514 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:16.527 INFO [12250]: COREGRADE is stopping... -- 14:50:16.527 DEBUG [12250]: Closing database connection -- 14:50:16.528 SQL [12250]: pgsql_close() -- 14:50:16.522 DEBUG [12248]: Database connection successful -- 14:50:16.522 INFO [12248]: _SERVER found -- 14:50:16.522 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 14:50:16.522 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:16.522 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:16.522 INFO [12248]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 14:50:16.522 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:16.534 INFO [12248]: COREGRADE is stopping... -- 14:50:16.534 DEBUG [12248]: Closing database connection -- 14:50:16.534 SQL [12248]: pgsql_close() -- 14:50:16.601 INFO [12248]: COREGRADE is starting... -- 14:50:16.601 INFO [12248]: Version from config: 1.0 -- 14:50:16.601 DEBUG [12248]: Connecting to database... -- 14:50:16.601 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:16.601 SQL [12248]: pgsql_db_connect() -- 14:50:16.605 DEBUG [12248]: Database connection successful -- 14:50:16.605 INFO [12248]: _SERVER found -- 14:50:16.605 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 14:50:16.605 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:16.605 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:16.605 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 14:50:16.605 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:16.617 INFO [12248]: COREGRADE is stopping... -- 14:50:16.617 DEBUG [12248]: Closing database connection -- 14:50:16.617 SQL [12248]: pgsql_close() -- 14:50:16.619 INFO [12248]: COREGRADE is starting... -- 14:50:16.619 INFO [12248]: Version from config: 1.0 -- 14:50:16.619 DEBUG [12248]: Connecting to database... -- 14:50:16.619 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:16.619 SQL [12248]: pgsql_db_connect() -- 14:50:16.624 INFO [12250]: COREGRADE is starting... -- 14:50:16.624 INFO [12250]: Version from config: 1.0 -- 14:50:16.624 DEBUG [12250]: Connecting to database... -- 14:50:16.624 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:16.624 SQL [12250]: pgsql_db_connect() -- 14:50:16.624 DEBUG [12248]: Database connection successful -- 14:50:16.624 INFO [12248]: _SERVER found -- 14:50:16.624 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 14:50:16.624 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:16.624 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:16.624 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 14:50:16.624 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:16.635 INFO [12248]: COREGRADE is stopping... -- 14:50:16.635 DEBUG [12248]: Closing database connection -- 14:50:16.635 SQL [12248]: pgsql_close() -- 14:50:16.628 DEBUG [12250]: Database connection successful -- 14:50:16.628 INFO [12250]: _SERVER found -- 14:50:16.628 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 14:50:16.628 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:16.628 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:16.628 INFO [12250]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 14:50:16.628 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:16.639 INFO [12250]: COREGRADE is stopping... -- 14:50:16.639 DEBUG [12250]: Closing database connection -- 14:50:16.639 SQL [12250]: pgsql_close() -- 14:50:16.709 INFO [12248]: COREGRADE is starting... -- 14:50:16.710 INFO [12248]: Version from config: 1.0 -- 14:50:16.710 DEBUG [12248]: Connecting to database... -- 14:50:16.710 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:16.710 SQL [12248]: pgsql_db_connect() -- 14:50:16.720 INFO [12305]: COREGRADE is starting... -- 14:50:16.721 INFO [12305]: Version from config: 1.0 -- 14:50:16.721 DEBUG [12305]: Connecting to database... -- 14:50:16.721 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:16.721 SQL [12305]: pgsql_db_connect() -- 14:50:16.714 DEBUG [12248]: Database connection successful -- 14:50:16.714 INFO [12248]: _SERVER found -- 14:50:16.714 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 14:50:16.714 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:16.714 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:16.714 INFO [12248]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 14:50:16.714 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:16.726 INFO [12248]: COREGRADE is stopping... -- 14:50:16.727 DEBUG [12248]: Closing database connection -- 14:50:16.727 SQL [12248]: pgsql_close() -- 14:50:16.734 INFO [12250]: COREGRADE is starting... -- 14:50:16.735 INFO [12250]: Version from config: 1.0 -- 14:50:16.735 DEBUG [12250]: Connecting to database... -- 14:50:16.735 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:16.735 SQL [12250]: pgsql_db_connect() -- 14:50:16.725 DEBUG [12305]: Database connection successful -- 14:50:16.725 INFO [12305]: _SERVER found -- 14:50:16.725 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:50:16.725 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:16.725 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:16.725 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 14:50:16.725 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:16.737 INFO [12305]: COREGRADE is stopping... -- 14:50:16.737 DEBUG [12305]: Closing database connection -- 14:50:16.737 SQL [12305]: pgsql_close() -- 14:50:16.739 DEBUG [12250]: Database connection successful -- 14:50:16.739 INFO [12250]: _SERVER found -- 14:50:16.739 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 14:50:16.739 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:16.739 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:16.739 INFO [12250]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 14:50:16.739 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:16.750 INFO [12250]: COREGRADE is stopping... -- 14:50:16.750 DEBUG [12250]: Closing database connection -- 14:50:16.750 SQL [12250]: pgsql_close() -- 14:50:16.812 INFO [12305]: COREGRADE is starting... -- 14:50:16.812 INFO [12305]: Version from config: 1.0 -- 14:50:16.812 DEBUG [12305]: Connecting to database... -- 14:50:16.812 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:16.812 SQL [12305]: pgsql_db_connect() -- 14:50:16.816 DEBUG [12305]: Database connection successful -- 14:50:16.816 INFO [12305]: _SERVER found -- 14:50:16.816 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:50:16.816 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:16.816 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:16.816 INFO [12305]: QUERY_STRING = /assets/js/pages/dashboard.js -- 14:50:16.816 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:16.828 INFO [12305]: COREGRADE is stopping... -- 14:50:16.828 DEBUG [12305]: Closing database connection -- 14:50:16.828 SQL [12305]: pgsql_close() -- 14:50:16.846 INFO [12250]: COREGRADE is starting... -- 14:50:16.846 INFO [12250]: Version from config: 1.0 -- 14:50:16.846 DEBUG [12250]: Connecting to database... -- 14:50:16.846 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:16.846 SQL [12250]: pgsql_db_connect() -- 14:50:16.850 DEBUG [12250]: Database connection successful -- 14:50:16.850 INFO [12250]: _SERVER found -- 14:50:16.850 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 14:50:16.850 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:16.850 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:16.850 INFO [12250]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 14:50:16.850 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:16.861 INFO [12250]: COREGRADE is stopping... -- 14:50:16.861 DEBUG [12250]: Closing database connection -- 14:50:16.861 SQL [12250]: pgsql_close() -- 14:50:16.913 INFO [12305]: COREGRADE is starting... -- 14:50:16.913 INFO [12305]: Version from config: 1.0 -- 14:50:16.913 DEBUG [12305]: Connecting to database... -- 14:50:16.913 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:16.913 SQL [12305]: pgsql_db_connect() -- 14:50:16.917 DEBUG [12305]: Database connection successful -- 14:50:16.917 INFO [12305]: _SERVER found -- 14:50:16.917 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:50:16.917 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:16.917 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:16.917 INFO [12305]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 14:50:16.917 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:16.929 INFO [12305]: COREGRADE is stopping... -- 14:50:16.929 DEBUG [12305]: Closing database connection -- 14:50:16.929 SQL [12305]: pgsql_close() -- 14:50:17.108 INFO [12305]: COREGRADE is starting... -- 14:50:17.108 INFO [12305]: Version from config: 1.0 -- 14:50:17.108 DEBUG [12305]: Connecting to database... -- 14:50:17.108 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:17.108 SQL [12305]: pgsql_db_connect() -- 14:50:17.112 DEBUG [12305]: Database connection successful -- 14:50:17.112 INFO [12305]: _SERVER found -- 14:50:17.112 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:50:17.112 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:17.112 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:17.112 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 14:50:17.112 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:17.124 INFO [12305]: COREGRADE is stopping... -- 14:50:17.124 DEBUG [12305]: Closing database connection -- 14:50:17.124 SQL [12305]: pgsql_close() -- 14:50:17.208 INFO [12305]: COREGRADE is starting... -- 14:50:17.209 INFO [12305]: Version from config: 1.0 -- 14:50:17.209 DEBUG [12305]: Connecting to database... -- 14:50:17.209 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:17.209 SQL [12305]: pgsql_db_connect() -- 14:50:17.213 DEBUG [12305]: Database connection successful -- 14:50:17.213 INFO [12305]: _SERVER found -- 14:50:17.213 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:50:17.213 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:17.213 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:17.213 INFO [12305]: QUERY_STRING = /assets/js/pages/picker_date.js -- 14:50:17.213 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:17.224 INFO [12305]: COREGRADE is stopping... -- 14:50:17.224 DEBUG [12305]: Closing database connection -- 14:50:17.224 SQL [12305]: pgsql_close() -- 14:50:17.236 INFO [12250]: COREGRADE is starting... -- 14:50:17.236 INFO [12250]: Version from config: 1.0 -- 14:50:17.236 DEBUG [12250]: Connecting to database... -- 14:50:17.236 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:17.236 SQL [12250]: pgsql_db_connect() -- 14:50:17.240 DEBUG [12250]: Database connection successful -- 14:50:17.240 INFO [12250]: _SERVER found -- 14:50:17.240 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 14:50:17.240 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:17.240 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:17.240 INFO [12250]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 14:50:17.240 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:17.251 INFO [12250]: COREGRADE is stopping... -- 14:50:17.251 DEBUG [12250]: Closing database connection -- 14:50:17.251 SQL [12250]: pgsql_close() -- 14:50:17.302 INFO [12305]: COREGRADE is starting... -- 14:50:17.302 INFO [12305]: Version from config: 1.0 -- 14:50:17.302 DEBUG [12305]: Connecting to database... -- 14:50:17.302 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:17.302 SQL [12305]: pgsql_db_connect() -- 14:50:17.309 INFO [12248]: COREGRADE is starting... -- 14:50:17.309 INFO [12248]: Version from config: 1.0 -- 14:50:17.309 DEBUG [12248]: Connecting to database... -- 14:50:17.309 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:17.309 SQL [12248]: pgsql_db_connect() -- 14:50:17.306 DEBUG [12305]: Database connection successful -- 14:50:17.306 INFO [12305]: _SERVER found -- 14:50:17.306 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:50:17.306 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:17.306 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:17.306 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 14:50:17.306 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:17.318 INFO [12305]: COREGRADE is stopping... -- 14:50:17.318 DEBUG [12305]: Closing database connection -- 14:50:17.318 SQL [12305]: pgsql_close() -- 14:50:17.313 DEBUG [12248]: Database connection successful -- 14:50:17.313 INFO [12248]: _SERVER found -- 14:50:17.313 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 14:50:17.313 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:17.313 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:17.313 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 14:50:17.313 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:17.325 INFO [12248]: COREGRADE is stopping... -- 14:50:17.325 DEBUG [12248]: Closing database connection -- 14:50:17.325 SQL [12248]: pgsql_close() -- 14:50:17.335 INFO [12250]: COREGRADE is starting... -- 14:50:17.335 INFO [12250]: Version from config: 1.0 -- 14:50:17.335 DEBUG [12250]: Connecting to database... -- 14:50:17.335 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:17.335 SQL [12250]: pgsql_db_connect() -- 14:50:17.339 DEBUG [12250]: Database connection successful -- 14:50:17.339 INFO [12250]: _SERVER found -- 14:50:17.339 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 14:50:17.339 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:17.339 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:17.339 INFO [12250]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 14:50:17.339 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:17.351 INFO [12250]: COREGRADE is stopping... -- 14:50:17.351 DEBUG [12250]: Closing database connection -- 14:50:17.351 SQL [12250]: pgsql_close() -- 14:50:17.402 INFO [12248]: COREGRADE is starting... -- 14:50:17.402 INFO [12248]: Version from config: 1.0 -- 14:50:17.402 DEBUG [12248]: Connecting to database... -- 14:50:17.402 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:17.402 SQL [12248]: pgsql_db_connect() -- 14:50:17.409 INFO [12305]: COREGRADE is starting... -- 14:50:17.410 INFO [12305]: Version from config: 1.0 -- 14:50:17.410 DEBUG [12305]: Connecting to database... -- 14:50:17.410 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:17.410 SQL [12305]: pgsql_db_connect() -- 14:50:17.406 DEBUG [12248]: Database connection successful -- 14:50:17.406 INFO [12248]: _SERVER found -- 14:50:17.406 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 14:50:17.406 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:17.406 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:17.406 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 14:50:17.406 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:17.418 INFO [12248]: COREGRADE is stopping... -- 14:50:17.418 DEBUG [12248]: Closing database connection -- 14:50:17.418 SQL [12248]: pgsql_close() -- 14:50:17.414 DEBUG [12305]: Database connection successful -- 14:50:17.414 INFO [12305]: _SERVER found -- 14:50:17.414 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:50:17.414 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:17.414 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:17.414 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 14:50:17.414 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:17.425 INFO [12305]: COREGRADE is stopping... -- 14:50:17.425 DEBUG [12305]: Closing database connection -- 14:50:17.425 SQL [12305]: pgsql_close() -- 14:50:17.434 INFO [12250]: COREGRADE is starting... -- 14:50:17.435 INFO [12250]: Version from config: 1.0 -- 14:50:17.435 DEBUG [12250]: Connecting to database... -- 14:50:17.435 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:17.435 SQL [12250]: pgsql_db_connect() -- 14:50:17.439 DEBUG [12250]: Database connection successful -- 14:50:17.439 INFO [12250]: _SERVER found -- 14:50:17.439 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 14:50:17.439 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:17.439 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:17.439 INFO [12250]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 14:50:17.439 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:17.450 INFO [12250]: COREGRADE is stopping... -- 14:50:17.450 DEBUG [12250]: Closing database connection -- 14:50:17.450 SQL [12250]: pgsql_close() -- 14:50:17.535 INFO [12250]: COREGRADE is starting... -- 14:50:17.535 INFO [12250]: Version from config: 1.0 -- 14:50:17.535 DEBUG [12250]: Connecting to database... -- 14:50:17.535 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:17.535 SQL [12250]: pgsql_db_connect() -- 14:50:17.539 DEBUG [12250]: Database connection successful -- 14:50:17.539 INFO [12250]: _SERVER found -- 14:50:17.539 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 14:50:17.539 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:17.539 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:17.539 INFO [12250]: QUERY_STRING = /assets/customjs/general.js -- 14:50:17.539 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:17.550 INFO [12250]: COREGRADE is stopping... -- 14:50:17.551 DEBUG [12250]: Closing database connection -- 14:50:17.551 SQL [12250]: pgsql_close() -- 14:50:17.789 INFO [12305]: COREGRADE is starting... -- 14:50:17.790 INFO [12305]: Version from config: 1.0 -- 14:50:17.790 DEBUG [12305]: Connecting to database... -- 14:50:17.790 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:17.790 SQL [12305]: pgsql_db_connect() -- 14:50:17.794 DEBUG [12305]: Database connection successful -- 14:50:17.794 INFO [12305]: _SERVER found -- 14:50:17.794 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:50:17.794 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:17.794 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:17.794 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 14:50:17.794 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:17.805 INFO [12305]: COREGRADE is stopping... -- 14:50:17.805 DEBUG [12305]: Closing database connection -- 14:50:17.805 SQL [12305]: pgsql_close() -- 14:50:17.890 INFO [12305]: COREGRADE is starting... -- 14:50:17.891 INFO [12305]: Version from config: 1.0 -- 14:50:17.891 DEBUG [12305]: Connecting to database... -- 14:50:17.891 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:17.891 SQL [12305]: pgsql_db_connect() -- 14:50:17.895 DEBUG [12305]: Database connection successful -- 14:50:17.895 INFO [12305]: _SERVER found -- 14:50:17.895 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:50:17.895 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:17.895 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:17.895 INFO [12305]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 14:50:17.895 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:17.906 INFO [12305]: COREGRADE is stopping... -- 14:50:17.906 DEBUG [12305]: Closing database connection -- 14:50:17.906 SQL [12305]: pgsql_close() -- 14:50:18.278 INFO [12305]: COREGRADE is starting... -- 14:50:18.278 INFO [12305]: Version from config: 1.0 -- 14:50:18.278 DEBUG [12305]: Connecting to database... -- 14:50:18.278 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:18.278 SQL [12305]: pgsql_db_connect() -- 14:50:18.283 DEBUG [12305]: Database connection successful -- 14:50:18.283 INFO [12305]: _SERVER found -- 14:50:18.283 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:50:18.283 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:18.283 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:18.283 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 14:50:18.283 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:18.294 INFO [12305]: COREGRADE is stopping... -- 14:50:18.294 DEBUG [12305]: Closing database connection -- 14:50:18.294 SQL [12305]: pgsql_close() -- 14:50:19.530 INFO [12305]: COREGRADE is starting... -- 14:50:19.531 INFO [12305]: Version from config: 1.0 -- 14:50:19.531 DEBUG [12305]: Connecting to database... -- 14:50:19.531 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:19.531 SQL [12305]: pgsql_db_connect() -- 14:50:19.535 DEBUG [12305]: Database connection successful -- 14:50:19.535 INFO [12305]: _SERVER found -- 14:50:19.535 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:50:19.535 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:19.535 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:19.535 INFO [12305]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 14:50:19.535 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:19.547 INFO [12305]: COREGRADE is stopping... -- 14:50:19.547 DEBUG [12305]: Closing database connection -- 14:50:19.547 SQL [12305]: pgsql_close() -- 14:50:19.632 INFO [12305]: COREGRADE is starting... -- 14:50:19.633 INFO [12305]: Version from config: 1.0 -- 14:50:19.633 DEBUG [12305]: Connecting to database... -- 14:50:19.633 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:19.633 SQL [12305]: pgsql_db_connect() -- 14:50:19.637 DEBUG [12305]: Database connection successful -- 14:50:19.637 INFO [12305]: _SERVER found -- 14:50:19.637 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:50:19.637 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:19.637 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:19.637 INFO [12305]: QUERY_STRING = /assets/js/pages/dashboard.js -- 14:50:19.637 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:19.648 INFO [12305]: COREGRADE is stopping... -- 14:50:19.648 DEBUG [12305]: Closing database connection -- 14:50:19.648 SQL [12305]: pgsql_close() -- 14:50:19.733 INFO [12305]: COREGRADE is starting... -- 14:50:19.734 INFO [12305]: Version from config: 1.0 -- 14:50:19.734 DEBUG [12305]: Connecting to database... -- 14:50:19.734 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:19.734 SQL [12305]: pgsql_db_connect() -- 14:50:19.738 DEBUG [12305]: Database connection successful -- 14:50:19.738 INFO [12305]: _SERVER found -- 14:50:19.738 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:50:19.738 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:19.738 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:19.738 INFO [12305]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 14:50:19.738 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:19.749 INFO [12305]: COREGRADE is stopping... -- 14:50:19.749 DEBUG [12305]: Closing database connection -- 14:50:19.749 SQL [12305]: pgsql_close() -- 14:50:19.834 INFO [12305]: COREGRADE is starting... -- 14:50:19.834 INFO [12305]: Version from config: 1.0 -- 14:50:19.834 DEBUG [12305]: Connecting to database... -- 14:50:19.834 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:19.834 SQL [12305]: pgsql_db_connect() -- 14:50:19.838 DEBUG [12305]: Database connection successful -- 14:50:19.838 INFO [12305]: _SERVER found -- 14:50:19.838 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:50:19.838 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:19.838 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:19.838 INFO [12305]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 14:50:19.838 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:19.850 INFO [12305]: COREGRADE is stopping... -- 14:50:19.850 DEBUG [12305]: Closing database connection -- 14:50:19.850 SQL [12305]: pgsql_close() -- 14:50:19.935 INFO [12305]: COREGRADE is starting... -- 14:50:19.935 INFO [12305]: Version from config: 1.0 -- 14:50:19.935 DEBUG [12305]: Connecting to database... -- 14:50:19.935 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:19.935 SQL [12305]: pgsql_db_connect() -- 14:50:19.939 DEBUG [12305]: Database connection successful -- 14:50:19.939 INFO [12305]: _SERVER found -- 14:50:19.939 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:50:19.939 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:19.939 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:19.939 INFO [12305]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 14:50:19.939 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:19.951 INFO [12305]: COREGRADE is stopping... -- 14:50:19.951 DEBUG [12305]: Closing database connection -- 14:50:19.951 SQL [12305]: pgsql_close() -- 14:50:20.035 INFO [12305]: COREGRADE is starting... -- 14:50:20.035 INFO [12305]: Version from config: 1.0 -- 14:50:20.035 DEBUG [12305]: Connecting to database... -- 14:50:20.035 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:20.035 SQL [12305]: pgsql_db_connect() -- 14:50:20.040 DEBUG [12305]: Database connection successful -- 14:50:20.040 INFO [12305]: _SERVER found -- 14:50:20.040 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:50:20.040 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:20.040 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:20.040 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 14:50:20.040 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:20.051 INFO [12305]: COREGRADE is stopping... -- 14:50:20.051 DEBUG [12305]: Closing database connection -- 14:50:20.051 SQL [12305]: pgsql_close() -- 14:50:20.136 INFO [12305]: COREGRADE is starting... -- 14:50:20.136 INFO [12305]: Version from config: 1.0 -- 14:50:20.136 DEBUG [12305]: Connecting to database... -- 14:50:20.136 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:20.136 SQL [12305]: pgsql_db_connect() -- 14:50:20.140 DEBUG [12305]: Database connection successful -- 14:50:20.140 INFO [12305]: _SERVER found -- 14:50:20.140 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:50:20.140 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:20.140 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:20.140 INFO [12305]: QUERY_STRING = /assets/js/pages/picker_date.js -- 14:50:20.140 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:20.152 INFO [12305]: COREGRADE is stopping... -- 14:50:20.152 DEBUG [12305]: Closing database connection -- 14:50:20.152 SQL [12305]: pgsql_close() -- 14:50:20.237 INFO [12305]: COREGRADE is starting... -- 14:50:20.237 INFO [12305]: Version from config: 1.0 -- 14:50:20.237 DEBUG [12305]: Connecting to database... -- 14:50:20.237 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:20.237 SQL [12305]: pgsql_db_connect() -- 14:50:20.241 DEBUG [12305]: Database connection successful -- 14:50:20.241 INFO [12305]: _SERVER found -- 14:50:20.241 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:50:20.241 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:20.241 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:20.241 INFO [12305]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 14:50:20.241 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:20.253 INFO [12305]: COREGRADE is stopping... -- 14:50:20.253 DEBUG [12305]: Closing database connection -- 14:50:20.253 SQL [12305]: pgsql_close() -- 14:50:20.907 INFO [12305]: COREGRADE is starting... -- 14:50:20.907 INFO [12305]: Version from config: 1.0 -- 14:50:20.907 DEBUG [12305]: Connecting to database... -- 14:50:20.908 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:20.908 SQL [12305]: pgsql_db_connect() -- 14:50:20.912 DEBUG [12305]: Database connection successful -- 14:50:20.912 INFO [12305]: _SERVER found -- 14:50:20.912 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:50:20.912 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:20.912 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:20.912 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 14:50:20.912 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:20.923 INFO [12305]: COREGRADE is stopping... -- 14:50:20.923 DEBUG [12305]: Closing database connection -- 14:50:20.923 SQL [12305]: pgsql_close() -- 14:50:21.009 INFO [12305]: COREGRADE is starting... -- 14:50:21.009 INFO [12305]: Version from config: 1.0 -- 14:50:21.009 DEBUG [12305]: Connecting to database... -- 14:50:21.009 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:21.009 SQL [12305]: pgsql_db_connect() -- 14:50:21.014 DEBUG [12305]: Database connection successful -- 14:50:21.014 INFO [12305]: _SERVER found -- 14:50:21.014 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:50:21.014 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:21.014 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:21.014 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 14:50:21.014 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:21.026 INFO [12305]: COREGRADE is stopping... -- 14:50:21.026 DEBUG [12305]: Closing database connection -- 14:50:21.026 SQL [12305]: pgsql_close() -- 14:50:21.111 INFO [12305]: COREGRADE is starting... -- 14:50:21.111 INFO [12305]: Version from config: 1.0 -- 14:50:21.111 DEBUG [12305]: Connecting to database... -- 14:50:21.111 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:21.111 SQL [12305]: pgsql_db_connect() -- 14:50:21.115 DEBUG [12305]: Database connection successful -- 14:50:21.115 INFO [12305]: _SERVER found -- 14:50:21.115 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:50:21.115 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:21.115 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:21.115 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 14:50:21.115 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:21.127 INFO [12305]: COREGRADE is stopping... -- 14:50:21.127 DEBUG [12305]: Closing database connection -- 14:50:21.127 SQL [12305]: pgsql_close() -- 14:50:21.211 INFO [12305]: COREGRADE is starting... -- 14:50:21.212 INFO [12305]: Version from config: 1.0 -- 14:50:21.212 DEBUG [12305]: Connecting to database... -- 14:50:21.212 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:21.212 SQL [12305]: pgsql_db_connect() -- 14:50:21.216 DEBUG [12305]: Database connection successful -- 14:50:21.216 INFO [12305]: _SERVER found -- 14:50:21.216 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:50:21.216 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:21.216 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:21.216 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 14:50:21.216 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:21.227 INFO [12305]: COREGRADE is stopping... -- 14:50:21.227 DEBUG [12305]: Closing database connection -- 14:50:21.227 SQL [12305]: pgsql_close() -- 14:50:21.322 INFO [12305]: COREGRADE is starting... -- 14:50:21.323 INFO [12305]: Version from config: 1.0 -- 14:50:21.323 DEBUG [12305]: Connecting to database... -- 14:50:21.323 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:21.323 SQL [12305]: pgsql_db_connect() -- 14:50:21.327 DEBUG [12305]: Database connection successful -- 14:50:21.327 INFO [12305]: _SERVER found -- 14:50:21.327 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:50:21.327 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:21.327 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:21.327 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 14:50:21.327 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:21.338 INFO [12305]: COREGRADE is stopping... -- 14:50:21.338 DEBUG [12305]: Closing database connection -- 14:50:21.338 SQL [12305]: pgsql_close() -- 14:50:21.424 INFO [12305]: COREGRADE is starting... -- 14:50:21.424 INFO [12305]: Version from config: 1.0 -- 14:50:21.424 DEBUG [12305]: Connecting to database... -- 14:50:21.424 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:21.424 SQL [12305]: pgsql_db_connect() -- 14:50:21.428 DEBUG [12305]: Database connection successful -- 14:50:21.428 INFO [12305]: _SERVER found -- 14:50:21.428 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:50:21.428 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:21.428 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:21.428 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 14:50:21.428 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:21.440 INFO [12305]: COREGRADE is stopping... -- 14:50:21.440 DEBUG [12305]: Closing database connection -- 14:50:21.440 SQL [12305]: pgsql_close() -- 14:50:22.098 INFO [12305]: COREGRADE is starting... -- 14:50:22.098 INFO [12305]: Version from config: 1.0 -- 14:50:22.098 DEBUG [12305]: Connecting to database... -- 14:50:22.098 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:50:22.098 SQL [12305]: pgsql_db_connect() -- 14:50:22.103 DEBUG [12305]: Database connection successful -- 14:50:22.103 INFO [12305]: _SERVER found -- 14:50:22.103 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:50:22.103 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:50:22.103 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 14:50:22.103 INFO [12305]: QUERY_STRING = /assets/customjs/general.js -- 14:50:22.103 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 14:50:22.114 INFO [12305]: COREGRADE is stopping... -- 14:50:22.114 DEBUG [12305]: Closing database connection -- 14:50:22.114 SQL [12305]: pgsql_close() -- 15:10:22.369 INFO [12347]: COREGRADE is starting... -- 15:10:22.369 INFO [12347]: Version from config: 1.0 -- 15:10:22.369 DEBUG [12347]: Connecting to database... -- 15:10:22.369 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:22.369 SQL [12347]: pgsql_db_connect() -- 15:10:22.374 DEBUG [12347]: Database connection successful -- 15:10:22.374 INFO [12347]: _SERVER found -- 15:10:22.374 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:22.374 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:22.374 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=dvdmcdtgqn0pttu1uqlje4p1n25psqfv -- 15:10:22.374 INFO [12347]: QUERY_STRING = /logout -- 15:10:22.374 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:22.412 INFO [12347]: COREGRADE is stopping... -- 15:10:22.412 DEBUG [12347]: Closing database connection -- 15:10:22.412 SQL [12347]: pgsql_close() -- 15:10:22.509 INFO [12347]: COREGRADE is starting... -- 15:10:22.509 INFO [12347]: Version from config: 1.0 -- 15:10:22.509 DEBUG [12347]: Connecting to database... -- 15:10:22.509 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:22.509 SQL [12347]: pgsql_db_connect() -- 15:10:22.514 DEBUG [12347]: Database connection successful -- 15:10:22.514 INFO [12347]: _SERVER found -- 15:10:22.514 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:22.514 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:22.514 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:22.514 INFO [12347]: QUERY_STRING = /start -- 15:10:22.514 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:22.548 INFO [12347]: COREGRADE is stopping... -- 15:10:22.548 DEBUG [12347]: Closing database connection -- 15:10:22.548 SQL [12347]: pgsql_close() -- 15:10:22.773 INFO [12246]: COREGRADE is starting... -- 15:10:22.773 INFO [12246]: Version from config: 1.0 -- 15:10:22.773 DEBUG [12246]: Connecting to database... -- 15:10:22.773 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:22.774 SQL [12246]: pgsql_db_connect() -- 15:10:22.778 DEBUG [12246]: Database connection successful -- 15:10:22.778 INFO [12246]: _SERVER found -- 15:10:22.778 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 15:10:22.778 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:22.778 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:22.778 INFO [12246]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 15:10:22.778 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:22.791 INFO [12246]: COREGRADE is stopping... -- 15:10:22.791 DEBUG [12246]: Closing database connection -- 15:10:22.791 SQL [12246]: pgsql_close() -- 15:10:23.112 INFO [12347]: COREGRADE is starting... -- 15:10:23.112 INFO [12347]: Version from config: 1.0 -- 15:10:23.112 DEBUG [12347]: Connecting to database... -- 15:10:23.112 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:23.112 SQL [12347]: pgsql_db_connect() -- 15:10:23.116 DEBUG [12347]: Database connection successful -- 15:10:23.116 INFO [12347]: _SERVER found -- 15:10:23.116 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:23.116 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:23.116 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:23.116 INFO [12347]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 15:10:23.116 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:23.128 INFO [12347]: COREGRADE is stopping... -- 15:10:23.128 DEBUG [12347]: Closing database connection -- 15:10:23.128 SQL [12347]: pgsql_close() -- 15:10:23.211 INFO [12347]: COREGRADE is starting... -- 15:10:23.212 INFO [12347]: Version from config: 1.0 -- 15:10:23.212 DEBUG [12347]: Connecting to database... -- 15:10:23.212 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:23.212 SQL [12347]: pgsql_db_connect() -- 15:10:23.216 DEBUG [12347]: Database connection successful -- 15:10:23.216 INFO [12347]: _SERVER found -- 15:10:23.216 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:23.216 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:23.216 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:23.216 INFO [12347]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 15:10:23.216 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:23.227 INFO [12347]: COREGRADE is stopping... -- 15:10:23.227 DEBUG [12347]: Closing database connection -- 15:10:23.227 SQL [12347]: pgsql_close() -- 15:10:23.300 INFO [12347]: COREGRADE is starting... -- 15:10:23.300 INFO [12347]: Version from config: 1.0 -- 15:10:23.300 DEBUG [12347]: Connecting to database... -- 15:10:23.301 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:23.301 SQL [12347]: pgsql_db_connect() -- 15:10:23.305 DEBUG [12347]: Database connection successful -- 15:10:23.305 INFO [12347]: _SERVER found -- 15:10:23.305 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:23.305 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:23.305 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:23.305 INFO [12347]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 15:10:23.305 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:23.316 INFO [12347]: COREGRADE is stopping... -- 15:10:23.316 DEBUG [12347]: Closing database connection -- 15:10:23.316 SQL [12347]: pgsql_close() -- 15:10:23.411 INFO [12347]: COREGRADE is starting... -- 15:10:23.412 INFO [12347]: Version from config: 1.0 -- 15:10:23.412 DEBUG [12347]: Connecting to database... -- 15:10:23.412 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:23.412 SQL [12347]: pgsql_db_connect() -- 15:10:23.416 DEBUG [12347]: Database connection successful -- 15:10:23.416 INFO [12347]: _SERVER found -- 15:10:23.416 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:23.416 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:23.416 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:23.416 INFO [12347]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 15:10:23.416 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:23.428 INFO [12347]: COREGRADE is stopping... -- 15:10:23.428 DEBUG [12347]: Closing database connection -- 15:10:23.428 SQL [12347]: pgsql_close() -- 15:10:23.429 INFO [12246]: COREGRADE is starting... -- 15:10:23.430 INFO [12246]: Version from config: 1.0 -- 15:10:23.430 DEBUG [12246]: Connecting to database... -- 15:10:23.430 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:23.430 SQL [12246]: pgsql_db_connect() -- 15:10:23.434 DEBUG [12246]: Database connection successful -- 15:10:23.434 INFO [12246]: _SERVER found -- 15:10:23.434 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 15:10:23.434 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:23.434 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:23.434 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 15:10:23.434 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:23.445 INFO [12246]: COREGRADE is stopping... -- 15:10:23.445 DEBUG [12246]: Closing database connection -- 15:10:23.445 SQL [12246]: pgsql_close() -- 15:10:23.534 INFO [12246]: COREGRADE is starting... -- 15:10:23.535 INFO [12246]: Version from config: 1.0 -- 15:10:23.535 DEBUG [12246]: Connecting to database... -- 15:10:23.535 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:23.535 SQL [12246]: pgsql_db_connect() -- 15:10:23.539 DEBUG [12246]: Database connection successful -- 15:10:23.539 INFO [12246]: _SERVER found -- 15:10:23.539 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 15:10:23.539 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:23.539 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:23.539 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 15:10:23.539 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:23.551 INFO [12246]: COREGRADE is stopping... -- 15:10:23.551 DEBUG [12246]: Closing database connection -- 15:10:23.551 SQL [12246]: pgsql_close() -- 15:10:23.600 INFO [12347]: COREGRADE is starting... -- 15:10:23.601 INFO [12347]: Version from config: 1.0 -- 15:10:23.601 DEBUG [12347]: Connecting to database... -- 15:10:23.601 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:23.601 SQL [12347]: pgsql_db_connect() -- 15:10:23.605 DEBUG [12347]: Database connection successful -- 15:10:23.605 INFO [12347]: _SERVER found -- 15:10:23.605 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:23.605 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:23.605 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:23.605 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 15:10:23.605 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:23.616 INFO [12347]: COREGRADE is stopping... -- 15:10:23.616 DEBUG [12347]: Closing database connection -- 15:10:23.616 SQL [12347]: pgsql_close() -- 15:10:23.636 INFO [12246]: COREGRADE is starting... -- 15:10:23.636 INFO [12246]: Version from config: 1.0 -- 15:10:23.636 DEBUG [12246]: Connecting to database... -- 15:10:23.636 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:23.636 SQL [12246]: pgsql_db_connect() -- 15:10:23.640 DEBUG [12246]: Database connection successful -- 15:10:23.640 INFO [12246]: _SERVER found -- 15:10:23.640 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 15:10:23.640 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:23.640 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:23.640 INFO [12246]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 15:10:23.640 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:23.652 INFO [12246]: COREGRADE is stopping... -- 15:10:23.652 DEBUG [12246]: Closing database connection -- 15:10:23.652 SQL [12246]: pgsql_close() -- 15:10:23.701 INFO [12347]: COREGRADE is starting... -- 15:10:23.701 INFO [12347]: Version from config: 1.0 -- 15:10:23.701 DEBUG [12347]: Connecting to database... -- 15:10:23.701 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:23.701 SQL [12347]: pgsql_db_connect() -- 15:10:23.706 DEBUG [12347]: Database connection successful -- 15:10:23.706 INFO [12347]: _SERVER found -- 15:10:23.706 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:23.706 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:23.706 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:23.706 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 15:10:23.706 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:23.717 INFO [12347]: COREGRADE is stopping... -- 15:10:23.717 DEBUG [12347]: Closing database connection -- 15:10:23.717 SQL [12347]: pgsql_close() -- 15:10:23.735 INFO [12246]: COREGRADE is starting... -- 15:10:23.735 INFO [12246]: Version from config: 1.0 -- 15:10:23.735 DEBUG [12246]: Connecting to database... -- 15:10:23.735 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:23.735 SQL [12246]: pgsql_db_connect() -- 15:10:23.740 DEBUG [12246]: Database connection successful -- 15:10:23.740 INFO [12246]: _SERVER found -- 15:10:23.740 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 15:10:23.740 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:23.740 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:23.740 INFO [12246]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 15:10:23.740 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:23.751 INFO [12246]: COREGRADE is stopping... -- 15:10:23.751 DEBUG [12246]: Closing database connection -- 15:10:23.751 SQL [12246]: pgsql_close() -- 15:10:23.811 INFO [12347]: COREGRADE is starting... -- 15:10:23.811 INFO [12347]: Version from config: 1.0 -- 15:10:23.811 DEBUG [12347]: Connecting to database... -- 15:10:23.811 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:23.811 SQL [12347]: pgsql_db_connect() -- 15:10:23.815 DEBUG [12347]: Database connection successful -- 15:10:23.815 INFO [12347]: _SERVER found -- 15:10:23.815 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:23.815 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:23.815 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:23.815 INFO [12347]: QUERY_STRING = /assets/js/pages/dashboard.js -- 15:10:23.815 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:23.827 INFO [12347]: COREGRADE is stopping... -- 15:10:23.827 DEBUG [12347]: Closing database connection -- 15:10:23.827 SQL [12347]: pgsql_close() -- 15:10:23.835 INFO [12246]: COREGRADE is starting... -- 15:10:23.836 INFO [12246]: Version from config: 1.0 -- 15:10:23.836 DEBUG [12246]: Connecting to database... -- 15:10:23.836 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:23.836 SQL [12246]: pgsql_db_connect() -- 15:10:23.840 DEBUG [12246]: Database connection successful -- 15:10:23.840 INFO [12246]: _SERVER found -- 15:10:23.840 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 15:10:23.840 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:23.840 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:23.840 INFO [12246]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 15:10:23.840 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:23.851 INFO [12246]: COREGRADE is stopping... -- 15:10:23.851 DEBUG [12246]: Closing database connection -- 15:10:23.851 SQL [12246]: pgsql_close() -- 15:10:23.913 INFO [12347]: COREGRADE is starting... -- 15:10:23.913 INFO [12347]: Version from config: 1.0 -- 15:10:23.913 DEBUG [12347]: Connecting to database... -- 15:10:23.913 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:23.913 SQL [12347]: pgsql_db_connect() -- 15:10:23.918 DEBUG [12347]: Database connection successful -- 15:10:23.918 INFO [12347]: _SERVER found -- 15:10:23.918 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:23.918 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:23.918 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:23.918 INFO [12347]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 15:10:23.918 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:23.929 INFO [12347]: COREGRADE is stopping... -- 15:10:23.929 DEBUG [12347]: Closing database connection -- 15:10:23.929 SQL [12347]: pgsql_close() -- 15:10:23.935 INFO [12246]: COREGRADE is starting... -- 15:10:23.935 INFO [12246]: Version from config: 1.0 -- 15:10:23.936 DEBUG [12246]: Connecting to database... -- 15:10:23.936 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:23.936 SQL [12246]: pgsql_db_connect() -- 15:10:23.940 DEBUG [12246]: Database connection successful -- 15:10:23.940 INFO [12246]: _SERVER found -- 15:10:23.940 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 15:10:23.940 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:23.940 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:23.940 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 15:10:23.940 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:23.951 INFO [12246]: COREGRADE is stopping... -- 15:10:23.951 DEBUG [12246]: Closing database connection -- 15:10:23.951 SQL [12246]: pgsql_close() -- 15:10:24.015 INFO [12347]: COREGRADE is starting... -- 15:10:24.015 INFO [12347]: Version from config: 1.0 -- 15:10:24.015 DEBUG [12347]: Connecting to database... -- 15:10:24.015 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:24.015 SQL [12347]: pgsql_db_connect() -- 15:10:24.019 DEBUG [12347]: Database connection successful -- 15:10:24.019 INFO [12347]: _SERVER found -- 15:10:24.019 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:24.019 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:24.019 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:24.019 INFO [12347]: QUERY_STRING = /assets/js/pages/picker_date.js -- 15:10:24.019 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:24.031 INFO [12347]: COREGRADE is stopping... -- 15:10:24.031 DEBUG [12347]: Closing database connection -- 15:10:24.031 SQL [12347]: pgsql_close() -- 15:10:24.087 INFO [12347]: COREGRADE is starting... -- 15:10:24.087 INFO [12347]: Version from config: 1.0 -- 15:10:24.087 DEBUG [12347]: Connecting to database... -- 15:10:24.088 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:24.088 SQL [12347]: pgsql_db_connect() -- 15:10:24.092 DEBUG [12347]: Database connection successful -- 15:10:24.092 INFO [12347]: _SERVER found -- 15:10:24.092 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:24.092 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:24.092 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:24.092 INFO [12347]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 15:10:24.092 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:24.103 INFO [12347]: COREGRADE is stopping... -- 15:10:24.103 DEBUG [12347]: Closing database connection -- 15:10:24.103 SQL [12347]: pgsql_close() -- 15:10:24.115 INFO [12347]: COREGRADE is starting... -- 15:10:24.116 INFO [12347]: Version from config: 1.0 -- 15:10:24.116 DEBUG [12347]: Connecting to database... -- 15:10:24.116 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:24.116 SQL [12347]: pgsql_db_connect() -- 15:10:24.120 DEBUG [12347]: Database connection successful -- 15:10:24.120 INFO [12347]: _SERVER found -- 15:10:24.120 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:24.120 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:24.120 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:24.120 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 15:10:24.120 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:24.131 INFO [12347]: COREGRADE is stopping... -- 15:10:24.131 DEBUG [12347]: Closing database connection -- 15:10:24.131 SQL [12347]: pgsql_close() -- 15:10:24.188 INFO [12347]: COREGRADE is starting... -- 15:10:24.188 INFO [12347]: Version from config: 1.0 -- 15:10:24.188 DEBUG [12347]: Connecting to database... -- 15:10:24.188 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:24.188 SQL [12347]: pgsql_db_connect() -- 15:10:24.192 DEBUG [12347]: Database connection successful -- 15:10:24.192 INFO [12347]: _SERVER found -- 15:10:24.192 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:24.192 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:24.192 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:24.192 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 15:10:24.192 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:24.203 INFO [12347]: COREGRADE is stopping... -- 15:10:24.204 DEBUG [12347]: Closing database connection -- 15:10:24.204 SQL [12347]: pgsql_close() -- 15:10:24.216 INFO [12347]: COREGRADE is starting... -- 15:10:24.216 INFO [12347]: Version from config: 1.0 -- 15:10:24.216 DEBUG [12347]: Connecting to database... -- 15:10:24.216 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:24.216 SQL [12347]: pgsql_db_connect() -- 15:10:24.220 DEBUG [12347]: Database connection successful -- 15:10:24.220 INFO [12347]: _SERVER found -- 15:10:24.220 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:24.220 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:24.220 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:24.220 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 15:10:24.220 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:24.231 INFO [12347]: COREGRADE is stopping... -- 15:10:24.231 DEBUG [12347]: Closing database connection -- 15:10:24.231 SQL [12347]: pgsql_close() -- 15:10:24.289 INFO [12347]: COREGRADE is starting... -- 15:10:24.289 INFO [12347]: Version from config: 1.0 -- 15:10:24.289 DEBUG [12347]: Connecting to database... -- 15:10:24.289 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:24.289 SQL [12347]: pgsql_db_connect() -- 15:10:24.293 DEBUG [12347]: Database connection successful -- 15:10:24.293 INFO [12347]: _SERVER found -- 15:10:24.293 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:24.293 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:24.293 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:24.293 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 15:10:24.293 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:24.305 INFO [12347]: COREGRADE is stopping... -- 15:10:24.305 DEBUG [12347]: Closing database connection -- 15:10:24.305 SQL [12347]: pgsql_close() -- 15:10:24.315 INFO [12347]: COREGRADE is starting... -- 15:10:24.316 INFO [12347]: Version from config: 1.0 -- 15:10:24.316 DEBUG [12347]: Connecting to database... -- 15:10:24.316 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:24.316 SQL [12347]: pgsql_db_connect() -- 15:10:24.320 DEBUG [12347]: Database connection successful -- 15:10:24.320 INFO [12347]: _SERVER found -- 15:10:24.320 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:24.320 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:24.320 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:24.320 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 15:10:24.320 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:24.331 INFO [12347]: COREGRADE is stopping... -- 15:10:24.331 DEBUG [12347]: Closing database connection -- 15:10:24.331 SQL [12347]: pgsql_close() -- 15:10:24.415 INFO [12347]: COREGRADE is starting... -- 15:10:24.415 INFO [12347]: Version from config: 1.0 -- 15:10:24.415 DEBUG [12347]: Connecting to database... -- 15:10:24.415 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:24.415 SQL [12347]: pgsql_db_connect() -- 15:10:24.420 DEBUG [12347]: Database connection successful -- 15:10:24.420 INFO [12347]: _SERVER found -- 15:10:24.420 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:24.420 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:24.420 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:24.420 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 15:10:24.420 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:24.432 INFO [12347]: COREGRADE is stopping... -- 15:10:24.432 DEBUG [12347]: Closing database connection -- 15:10:24.432 SQL [12347]: pgsql_close() -- 15:10:24.516 INFO [12347]: COREGRADE is starting... -- 15:10:24.516 INFO [12347]: Version from config: 1.0 -- 15:10:24.516 DEBUG [12347]: Connecting to database... -- 15:10:24.516 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:24.516 SQL [12347]: pgsql_db_connect() -- 15:10:24.520 DEBUG [12347]: Database connection successful -- 15:10:24.520 INFO [12347]: _SERVER found -- 15:10:24.520 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:24.520 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:24.520 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:24.520 INFO [12347]: QUERY_STRING = /assets/customjs/general.js -- 15:10:24.520 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:24.532 INFO [12347]: COREGRADE is stopping... -- 15:10:24.532 DEBUG [12347]: Closing database connection -- 15:10:24.532 SQL [12347]: pgsql_close() -- 15:10:24.963 INFO [12347]: COREGRADE is starting... -- 15:10:24.964 INFO [12347]: Version from config: 1.0 -- 15:10:24.964 DEBUG [12347]: Connecting to database... -- 15:10:24.964 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:24.964 SQL [12347]: pgsql_db_connect() -- 15:10:24.968 DEBUG [12347]: Database connection successful -- 15:10:24.968 INFO [12347]: _SERVER found -- 15:10:24.968 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:24.968 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:24.968 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:24.968 INFO [12347]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 15:10:24.968 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:24.980 INFO [12347]: COREGRADE is stopping... -- 15:10:24.980 DEBUG [12347]: Closing database connection -- 15:10:24.980 SQL [12347]: pgsql_close() -- 15:10:25.066 INFO [12347]: COREGRADE is starting... -- 15:10:25.066 INFO [12347]: Version from config: 1.0 -- 15:10:25.066 DEBUG [12347]: Connecting to database... -- 15:10:25.066 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:25.066 SQL [12347]: pgsql_db_connect() -- 15:10:25.071 DEBUG [12347]: Database connection successful -- 15:10:25.071 INFO [12347]: _SERVER found -- 15:10:25.071 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:25.071 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:25.071 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:25.071 INFO [12347]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 15:10:25.071 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:25.083 INFO [12347]: COREGRADE is stopping... -- 15:10:25.083 DEBUG [12347]: Closing database connection -- 15:10:25.083 SQL [12347]: pgsql_close() -- 15:10:25.168 INFO [12347]: COREGRADE is starting... -- 15:10:25.168 INFO [12347]: Version from config: 1.0 -- 15:10:25.168 DEBUG [12347]: Connecting to database... -- 15:10:25.168 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:25.168 SQL [12347]: pgsql_db_connect() -- 15:10:25.172 DEBUG [12347]: Database connection successful -- 15:10:25.173 INFO [12347]: _SERVER found -- 15:10:25.173 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:25.173 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:25.173 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:25.173 INFO [12347]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 15:10:25.173 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:25.184 INFO [12347]: COREGRADE is stopping... -- 15:10:25.184 DEBUG [12347]: Closing database connection -- 15:10:25.184 SQL [12347]: pgsql_close() -- 15:10:25.270 INFO [12347]: COREGRADE is starting... -- 15:10:25.271 INFO [12347]: Version from config: 1.0 -- 15:10:25.271 DEBUG [12347]: Connecting to database... -- 15:10:25.271 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:25.271 SQL [12347]: pgsql_db_connect() -- 15:10:25.275 DEBUG [12347]: Database connection successful -- 15:10:25.275 INFO [12347]: _SERVER found -- 15:10:25.275 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:25.275 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:25.275 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:25.275 INFO [12347]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 15:10:25.275 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:25.286 INFO [12347]: COREGRADE is stopping... -- 15:10:25.286 DEBUG [12347]: Closing database connection -- 15:10:25.286 SQL [12347]: pgsql_close() -- 15:10:25.373 INFO [12347]: COREGRADE is starting... -- 15:10:25.373 INFO [12347]: Version from config: 1.0 -- 15:10:25.373 DEBUG [12347]: Connecting to database... -- 15:10:25.373 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:25.373 SQL [12347]: pgsql_db_connect() -- 15:10:25.377 DEBUG [12347]: Database connection successful -- 15:10:25.377 INFO [12347]: _SERVER found -- 15:10:25.377 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:25.377 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:25.377 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:25.377 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 15:10:25.377 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:25.389 INFO [12347]: COREGRADE is stopping... -- 15:10:25.389 DEBUG [12347]: Closing database connection -- 15:10:25.389 SQL [12347]: pgsql_close() -- 15:10:25.475 INFO [12347]: COREGRADE is starting... -- 15:10:25.475 INFO [12347]: Version from config: 1.0 -- 15:10:25.475 DEBUG [12347]: Connecting to database... -- 15:10:25.475 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:25.475 SQL [12347]: pgsql_db_connect() -- 15:10:25.479 DEBUG [12347]: Database connection successful -- 15:10:25.479 INFO [12347]: _SERVER found -- 15:10:25.479 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:25.479 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:25.479 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:25.479 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 15:10:25.479 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:25.491 INFO [12347]: COREGRADE is stopping... -- 15:10:25.491 DEBUG [12347]: Closing database connection -- 15:10:25.491 SQL [12347]: pgsql_close() -- 15:10:25.577 INFO [12347]: COREGRADE is starting... -- 15:10:25.577 INFO [12347]: Version from config: 1.0 -- 15:10:25.577 DEBUG [12347]: Connecting to database... -- 15:10:25.577 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:25.577 SQL [12347]: pgsql_db_connect() -- 15:10:25.581 DEBUG [12347]: Database connection successful -- 15:10:25.581 INFO [12347]: _SERVER found -- 15:10:25.581 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:25.581 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:25.581 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:25.581 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 15:10:25.581 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:25.593 INFO [12347]: COREGRADE is stopping... -- 15:10:25.593 DEBUG [12347]: Closing database connection -- 15:10:25.593 SQL [12347]: pgsql_close() -- 15:10:25.678 INFO [12347]: COREGRADE is starting... -- 15:10:25.678 INFO [12347]: Version from config: 1.0 -- 15:10:25.678 DEBUG [12347]: Connecting to database... -- 15:10:25.678 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:25.678 SQL [12347]: pgsql_db_connect() -- 15:10:25.682 DEBUG [12347]: Database connection successful -- 15:10:25.682 INFO [12347]: _SERVER found -- 15:10:25.682 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:25.682 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:25.682 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:25.682 INFO [12347]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 15:10:25.682 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:25.694 INFO [12347]: COREGRADE is stopping... -- 15:10:25.694 DEBUG [12347]: Closing database connection -- 15:10:25.694 SQL [12347]: pgsql_close() -- 15:10:25.779 INFO [12347]: COREGRADE is starting... -- 15:10:25.779 INFO [12347]: Version from config: 1.0 -- 15:10:25.779 DEBUG [12347]: Connecting to database... -- 15:10:25.779 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:25.779 SQL [12347]: pgsql_db_connect() -- 15:10:25.783 DEBUG [12347]: Database connection successful -- 15:10:25.783 INFO [12347]: _SERVER found -- 15:10:25.783 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:25.783 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:25.783 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:25.783 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 15:10:25.783 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:25.795 INFO [12347]: COREGRADE is stopping... -- 15:10:25.795 DEBUG [12347]: Closing database connection -- 15:10:25.795 SQL [12347]: pgsql_close() -- 15:10:25.880 INFO [12347]: COREGRADE is starting... -- 15:10:25.881 INFO [12347]: Version from config: 1.0 -- 15:10:25.881 DEBUG [12347]: Connecting to database... -- 15:10:25.881 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:25.881 SQL [12347]: pgsql_db_connect() -- 15:10:25.885 DEBUG [12347]: Database connection successful -- 15:10:25.885 INFO [12347]: _SERVER found -- 15:10:25.885 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:25.885 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:25.885 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:25.885 INFO [12347]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 15:10:25.885 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:25.896 INFO [12347]: COREGRADE is stopping... -- 15:10:25.896 DEBUG [12347]: Closing database connection -- 15:10:25.896 SQL [12347]: pgsql_close() -- 15:10:26.551 INFO [12347]: COREGRADE is starting... -- 15:10:26.552 INFO [12347]: Version from config: 1.0 -- 15:10:26.552 DEBUG [12347]: Connecting to database... -- 15:10:26.552 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:26.552 SQL [12347]: pgsql_db_connect() -- 15:10:26.556 DEBUG [12347]: Database connection successful -- 15:10:26.556 INFO [12347]: _SERVER found -- 15:10:26.556 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:26.556 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:26.556 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:26.556 INFO [12347]: QUERY_STRING = /assets/js/pages/dashboard.js -- 15:10:26.556 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:26.567 INFO [12347]: COREGRADE is stopping... -- 15:10:26.567 DEBUG [12347]: Closing database connection -- 15:10:26.567 SQL [12347]: pgsql_close() -- 15:10:26.981 INFO [12347]: COREGRADE is starting... -- 15:10:26.981 INFO [12347]: Version from config: 1.0 -- 15:10:26.981 DEBUG [12347]: Connecting to database... -- 15:10:26.981 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:26.981 SQL [12347]: pgsql_db_connect() -- 15:10:26.986 DEBUG [12347]: Database connection successful -- 15:10:26.986 INFO [12347]: _SERVER found -- 15:10:26.986 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:26.986 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:26.986 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:26.986 INFO [12347]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 15:10:26.986 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:26.997 INFO [12347]: COREGRADE is stopping... -- 15:10:26.997 DEBUG [12347]: Closing database connection -- 15:10:26.997 SQL [12347]: pgsql_close() -- 15:10:28.561 INFO [12347]: COREGRADE is starting... -- 15:10:28.561 INFO [12347]: Version from config: 1.0 -- 15:10:28.561 DEBUG [12347]: Connecting to database... -- 15:10:28.561 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:28.561 SQL [12347]: pgsql_db_connect() -- 15:10:28.565 DEBUG [12347]: Database connection successful -- 15:10:28.565 INFO [12347]: _SERVER found -- 15:10:28.565 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:28.565 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:28.565 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:28.565 INFO [12347]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 15:10:28.565 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:28.577 INFO [12347]: COREGRADE is stopping... -- 15:10:28.577 DEBUG [12347]: Closing database connection -- 15:10:28.577 SQL [12347]: pgsql_close() -- 15:10:28.989 INFO [12347]: COREGRADE is starting... -- 15:10:28.989 INFO [12347]: Version from config: 1.0 -- 15:10:28.989 DEBUG [12347]: Connecting to database... -- 15:10:28.989 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:28.989 SQL [12347]: pgsql_db_connect() -- 15:10:28.993 DEBUG [12347]: Database connection successful -- 15:10:28.993 INFO [12347]: _SERVER found -- 15:10:28.993 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:28.993 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:28.993 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:28.993 INFO [12347]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 15:10:28.993 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:29.005 INFO [12347]: COREGRADE is stopping... -- 15:10:29.005 DEBUG [12347]: Closing database connection -- 15:10:29.005 SQL [12347]: pgsql_close() -- 15:10:30.837 INFO [12347]: COREGRADE is starting... -- 15:10:30.837 INFO [12347]: Version from config: 1.0 -- 15:10:30.837 DEBUG [12347]: Connecting to database... -- 15:10:30.837 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:30.837 SQL [12347]: pgsql_db_connect() -- 15:10:30.841 DEBUG [12347]: Database connection successful -- 15:10:30.841 INFO [12347]: _SERVER found -- 15:10:30.841 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:30.841 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:30.841 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:30.841 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 15:10:30.841 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:30.853 INFO [12347]: COREGRADE is stopping... -- 15:10:30.853 DEBUG [12347]: Closing database connection -- 15:10:30.853 SQL [12347]: pgsql_close() -- 15:10:30.939 INFO [12347]: COREGRADE is starting... -- 15:10:30.939 INFO [12347]: Version from config: 1.0 -- 15:10:30.939 DEBUG [12347]: Connecting to database... -- 15:10:30.939 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:30.939 SQL [12347]: pgsql_db_connect() -- 15:10:30.943 DEBUG [12347]: Database connection successful -- 15:10:30.943 INFO [12347]: _SERVER found -- 15:10:30.943 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:30.943 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:30.943 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:30.943 INFO [12347]: QUERY_STRING = /assets/js/pages/picker_date.js -- 15:10:30.943 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:30.955 INFO [12347]: COREGRADE is stopping... -- 15:10:30.955 DEBUG [12347]: Closing database connection -- 15:10:30.955 SQL [12347]: pgsql_close() -- 15:10:31.324 INFO [12347]: COREGRADE is starting... -- 15:10:31.325 INFO [12347]: Version from config: 1.0 -- 15:10:31.325 DEBUG [12347]: Connecting to database... -- 15:10:31.325 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:31.325 SQL [12347]: pgsql_db_connect() -- 15:10:31.329 DEBUG [12347]: Database connection successful -- 15:10:31.329 INFO [12347]: _SERVER found -- 15:10:31.329 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:31.329 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:31.329 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:31.329 INFO [12347]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 15:10:31.329 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:31.340 INFO [12347]: COREGRADE is stopping... -- 15:10:31.340 DEBUG [12347]: Closing database connection -- 15:10:31.340 SQL [12347]: pgsql_close() -- 15:10:31.426 INFO [12347]: COREGRADE is starting... -- 15:10:31.426 INFO [12347]: Version from config: 1.0 -- 15:10:31.426 DEBUG [12347]: Connecting to database... -- 15:10:31.426 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:31.426 SQL [12347]: pgsql_db_connect() -- 15:10:31.431 DEBUG [12347]: Database connection successful -- 15:10:31.431 INFO [12347]: _SERVER found -- 15:10:31.431 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:31.431 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:31.431 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:31.431 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 15:10:31.431 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:31.442 INFO [12347]: COREGRADE is stopping... -- 15:10:31.442 DEBUG [12347]: Closing database connection -- 15:10:31.442 SQL [12347]: pgsql_close() -- 15:10:31.529 INFO [12347]: COREGRADE is starting... -- 15:10:31.529 INFO [12347]: Version from config: 1.0 -- 15:10:31.529 DEBUG [12347]: Connecting to database... -- 15:10:31.529 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:31.529 SQL [12347]: pgsql_db_connect() -- 15:10:31.533 DEBUG [12347]: Database connection successful -- 15:10:31.533 INFO [12347]: _SERVER found -- 15:10:31.533 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:31.533 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:31.533 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:31.533 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 15:10:31.533 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:31.545 INFO [12347]: COREGRADE is stopping... -- 15:10:31.545 DEBUG [12347]: Closing database connection -- 15:10:31.545 SQL [12347]: pgsql_close() -- 15:10:31.630 INFO [12347]: COREGRADE is starting... -- 15:10:31.630 INFO [12347]: Version from config: 1.0 -- 15:10:31.630 DEBUG [12347]: Connecting to database... -- 15:10:31.630 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:31.630 SQL [12347]: pgsql_db_connect() -- 15:10:31.634 DEBUG [12347]: Database connection successful -- 15:10:31.634 INFO [12347]: _SERVER found -- 15:10:31.634 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:31.634 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:31.634 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:31.634 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 15:10:31.634 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:31.646 INFO [12347]: COREGRADE is stopping... -- 15:10:31.646 DEBUG [12347]: Closing database connection -- 15:10:31.646 SQL [12347]: pgsql_close() -- 15:10:31.731 INFO [12347]: COREGRADE is starting... -- 15:10:31.731 INFO [12347]: Version from config: 1.0 -- 15:10:31.731 DEBUG [12347]: Connecting to database... -- 15:10:31.731 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:31.731 SQL [12347]: pgsql_db_connect() -- 15:10:31.736 DEBUG [12347]: Database connection successful -- 15:10:31.736 INFO [12347]: _SERVER found -- 15:10:31.736 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:31.736 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:31.736 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:31.736 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 15:10:31.736 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:31.747 INFO [12347]: COREGRADE is stopping... -- 15:10:31.747 DEBUG [12347]: Closing database connection -- 15:10:31.747 SQL [12347]: pgsql_close() -- 15:10:31.870 INFO [12347]: COREGRADE is starting... -- 15:10:31.870 INFO [12347]: Version from config: 1.0 -- 15:10:31.870 DEBUG [12347]: Connecting to database... -- 15:10:31.870 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:31.870 SQL [12347]: pgsql_db_connect() -- 15:10:31.875 DEBUG [12347]: Database connection successful -- 15:10:31.875 INFO [12347]: _SERVER found -- 15:10:31.875 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:31.875 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:31.875 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:31.875 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 15:10:31.875 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:31.886 INFO [12347]: COREGRADE is stopping... -- 15:10:31.886 DEBUG [12347]: Closing database connection -- 15:10:31.886 SQL [12347]: pgsql_close() -- 15:10:31.972 INFO [12347]: COREGRADE is starting... -- 15:10:31.972 INFO [12347]: Version from config: 1.0 -- 15:10:31.972 DEBUG [12347]: Connecting to database... -- 15:10:31.972 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:31.972 SQL [12347]: pgsql_db_connect() -- 15:10:31.977 DEBUG [12347]: Database connection successful -- 15:10:31.977 INFO [12347]: _SERVER found -- 15:10:31.977 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:31.977 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:31.977 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:31.977 INFO [12347]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 15:10:31.977 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:31.988 INFO [12347]: COREGRADE is stopping... -- 15:10:31.988 DEBUG [12347]: Closing database connection -- 15:10:31.988 SQL [12347]: pgsql_close() -- 15:10:32.365 INFO [12347]: COREGRADE is starting... -- 15:10:32.365 INFO [12347]: Version from config: 1.0 -- 15:10:32.365 DEBUG [12347]: Connecting to database... -- 15:10:32.365 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:10:32.365 SQL [12347]: pgsql_db_connect() -- 15:10:32.370 DEBUG [12347]: Database connection successful -- 15:10:32.370 INFO [12347]: _SERVER found -- 15:10:32.370 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 15:10:32.370 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:10:32.370 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:10:32.370 INFO [12347]: QUERY_STRING = /assets/customjs/general.js -- 15:10:32.370 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:10:32.381 INFO [12347]: COREGRADE is stopping... -- 15:10:32.381 DEBUG [12347]: Closing database connection -- 15:10:32.381 SQL [12347]: pgsql_close() -- 15:30:33.249 INFO [12247]: COREGRADE is starting... -- 15:30:33.250 INFO [12247]: Version from config: 1.0 -- 15:30:33.250 DEBUG [12247]: Connecting to database... -- 15:30:33.250 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:33.250 SQL [12247]: pgsql_db_connect() -- 15:30:33.254 DEBUG [12247]: Database connection successful -- 15:30:33.254 INFO [12247]: _SERVER found -- 15:30:33.254 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 15:30:33.254 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:33.254 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=gna4p9g5ap8ev2vjf1sivcb4mgair8il -- 15:30:33.254 INFO [12247]: QUERY_STRING = /logout -- 15:30:33.254 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:33.290 INFO [12247]: COREGRADE is stopping... -- 15:30:33.290 DEBUG [12247]: Closing database connection -- 15:30:33.290 SQL [12247]: pgsql_close() -- 15:30:33.387 INFO [12247]: COREGRADE is starting... -- 15:30:33.387 INFO [12247]: Version from config: 1.0 -- 15:30:33.387 DEBUG [12247]: Connecting to database... -- 15:30:33.387 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:33.387 SQL [12247]: pgsql_db_connect() -- 15:30:33.392 DEBUG [12247]: Database connection successful -- 15:30:33.392 INFO [12247]: _SERVER found -- 15:30:33.392 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 15:30:33.392 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:33.392 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:33.392 INFO [12247]: QUERY_STRING = /start -- 15:30:33.392 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:33.426 INFO [12247]: COREGRADE is stopping... -- 15:30:33.426 DEBUG [12247]: Closing database connection -- 15:30:33.426 SQL [12247]: pgsql_close() -- 15:30:33.705 INFO [12249]: COREGRADE is starting... -- 15:30:33.705 INFO [12249]: Version from config: 1.0 -- 15:30:33.705 DEBUG [12249]: Connecting to database... -- 15:30:33.705 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:33.705 SQL [12249]: pgsql_db_connect() -- 15:30:33.709 INFO [12248]: COREGRADE is starting... -- 15:30:33.709 INFO [12248]: Version from config: 1.0 -- 15:30:33.709 DEBUG [12248]: Connecting to database... -- 15:30:33.709 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:33.709 SQL [12248]: pgsql_db_connect() -- 15:30:33.713 INFO [12334]: COREGRADE is starting... -- 15:30:33.713 INFO [12334]: Version from config: 1.0 -- 15:30:33.713 DEBUG [12334]: Connecting to database... -- 15:30:33.713 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:33.713 SQL [12334]: pgsql_db_connect() -- 15:30:33.710 DEBUG [12249]: Database connection successful -- 15:30:33.710 INFO [12249]: _SERVER found -- 15:30:33.710 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 15:30:33.710 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:33.710 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:33.710 INFO [12249]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 15:30:33.710 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:33.725 INFO [12249]: COREGRADE is stopping... -- 15:30:33.725 DEBUG [12249]: Closing database connection -- 15:30:33.725 SQL [12249]: pgsql_close() -- 15:30:33.714 DEBUG [12248]: Database connection successful -- 15:30:33.714 INFO [12248]: _SERVER found -- 15:30:33.714 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 15:30:33.714 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:33.714 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:33.714 INFO [12248]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 15:30:33.714 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:33.729 INFO [12248]: COREGRADE is stopping... -- 15:30:33.729 DEBUG [12248]: Closing database connection -- 15:30:33.729 SQL [12248]: pgsql_close() -- 15:30:33.719 DEBUG [12334]: Database connection successful -- 15:30:33.719 INFO [12334]: _SERVER found -- 15:30:33.719 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 15:30:33.719 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:33.719 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:33.719 INFO [12334]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 15:30:33.719 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:33.733 INFO [12334]: COREGRADE is stopping... -- 15:30:33.733 DEBUG [12334]: Closing database connection -- 15:30:33.733 SQL [12334]: pgsql_close() -- 15:30:33.824 INFO [12248]: COREGRADE is starting... -- 15:30:33.824 INFO [12248]: Version from config: 1.0 -- 15:30:33.824 DEBUG [12248]: Connecting to database... -- 15:30:33.824 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:33.824 SQL [12248]: pgsql_db_connect() -- 15:30:33.829 INFO [12334]: COREGRADE is starting... -- 15:30:33.829 INFO [12334]: Version from config: 1.0 -- 15:30:33.829 DEBUG [12334]: Connecting to database... -- 15:30:33.829 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:33.829 SQL [12334]: pgsql_db_connect() -- 15:30:33.828 DEBUG [12248]: Database connection successful -- 15:30:33.828 INFO [12248]: _SERVER found -- 15:30:33.828 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 15:30:33.828 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:33.828 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:33.828 INFO [12248]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 15:30:33.828 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:33.840 INFO [12248]: COREGRADE is stopping... -- 15:30:33.840 DEBUG [12248]: Closing database connection -- 15:30:33.840 SQL [12248]: pgsql_close() -- 15:30:33.833 DEBUG [12334]: Database connection successful -- 15:30:33.833 INFO [12334]: _SERVER found -- 15:30:33.833 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 15:30:33.833 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:33.833 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:33.833 INFO [12334]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 15:30:33.833 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:33.844 INFO [12334]: COREGRADE is stopping... -- 15:30:33.844 DEBUG [12334]: Closing database connection -- 15:30:33.844 SQL [12334]: pgsql_close() -- 15:30:33.941 INFO [12334]: COREGRADE is starting... -- 15:30:33.941 INFO [12334]: Version from config: 1.0 -- 15:30:33.941 DEBUG [12334]: Connecting to database... -- 15:30:33.941 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:33.941 SQL [12334]: pgsql_db_connect() -- 15:30:33.945 DEBUG [12334]: Database connection successful -- 15:30:33.945 INFO [12334]: _SERVER found -- 15:30:33.945 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 15:30:33.945 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:33.945 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:33.945 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 15:30:33.945 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:33.957 INFO [12334]: COREGRADE is stopping... -- 15:30:33.957 DEBUG [12334]: Closing database connection -- 15:30:33.957 SQL [12334]: pgsql_close() -- 15:30:34.296 INFO [12249]: COREGRADE is starting... -- 15:30:34.296 INFO [12249]: Version from config: 1.0 -- 15:30:34.296 DEBUG [12249]: Connecting to database... -- 15:30:34.296 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:34.297 SQL [12249]: pgsql_db_connect() -- 15:30:34.301 DEBUG [12249]: Database connection successful -- 15:30:34.301 INFO [12249]: _SERVER found -- 15:30:34.301 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 15:30:34.301 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:34.301 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:34.301 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 15:30:34.301 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:34.312 INFO [12249]: COREGRADE is stopping... -- 15:30:34.312 DEBUG [12249]: Closing database connection -- 15:30:34.312 SQL [12249]: pgsql_close() -- 15:30:34.409 INFO [12249]: COREGRADE is starting... -- 15:30:34.409 INFO [12249]: Version from config: 1.0 -- 15:30:34.409 DEBUG [12249]: Connecting to database... -- 15:30:34.409 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:34.409 SQL [12249]: pgsql_db_connect() -- 15:30:34.413 DEBUG [12249]: Database connection successful -- 15:30:34.413 INFO [12249]: _SERVER found -- 15:30:34.413 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 15:30:34.413 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:34.413 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:34.413 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 15:30:34.413 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:34.425 INFO [12249]: COREGRADE is stopping... -- 15:30:34.425 DEBUG [12249]: Closing database connection -- 15:30:34.425 SQL [12249]: pgsql_close() -- 15:30:34.510 INFO [12249]: COREGRADE is starting... -- 15:30:34.511 INFO [12249]: Version from config: 1.0 -- 15:30:34.511 DEBUG [12249]: Connecting to database... -- 15:30:34.511 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:34.511 SQL [12249]: pgsql_db_connect() -- 15:30:34.515 DEBUG [12249]: Database connection successful -- 15:30:34.515 INFO [12249]: _SERVER found -- 15:30:34.515 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 15:30:34.515 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:34.515 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:34.515 INFO [12249]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 15:30:34.515 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:34.526 INFO [12249]: COREGRADE is stopping... -- 15:30:34.526 DEBUG [12249]: Closing database connection -- 15:30:34.526 SQL [12249]: pgsql_close() -- 15:30:34.611 INFO [12249]: COREGRADE is starting... -- 15:30:34.612 INFO [12249]: Version from config: 1.0 -- 15:30:34.612 DEBUG [12249]: Connecting to database... -- 15:30:34.612 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:34.612 SQL [12249]: pgsql_db_connect() -- 15:30:34.616 DEBUG [12249]: Database connection successful -- 15:30:34.616 INFO [12249]: _SERVER found -- 15:30:34.616 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 15:30:34.616 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:34.616 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:34.616 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 15:30:34.616 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:34.627 INFO [12249]: COREGRADE is stopping... -- 15:30:34.627 DEBUG [12249]: Closing database connection -- 15:30:34.627 SQL [12249]: pgsql_close() -- 15:30:34.711 INFO [12249]: COREGRADE is starting... -- 15:30:34.711 INFO [12249]: Version from config: 1.0 -- 15:30:34.711 DEBUG [12249]: Connecting to database... -- 15:30:34.712 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:34.712 SQL [12249]: pgsql_db_connect() -- 15:30:34.716 DEBUG [12249]: Database connection successful -- 15:30:34.716 INFO [12249]: _SERVER found -- 15:30:34.716 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 15:30:34.716 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:34.716 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:34.716 INFO [12249]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 15:30:34.716 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:34.727 INFO [12249]: COREGRADE is stopping... -- 15:30:34.727 DEBUG [12249]: Closing database connection -- 15:30:34.727 SQL [12249]: pgsql_close() -- 15:30:34.811 INFO [12249]: COREGRADE is starting... -- 15:30:34.811 INFO [12249]: Version from config: 1.0 -- 15:30:34.811 DEBUG [12249]: Connecting to database... -- 15:30:34.811 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:34.811 SQL [12249]: pgsql_db_connect() -- 15:30:34.816 DEBUG [12249]: Database connection successful -- 15:30:34.816 INFO [12249]: _SERVER found -- 15:30:34.816 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 15:30:34.816 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:34.816 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:34.816 INFO [12249]: QUERY_STRING = /assets/js/pages/dashboard.js -- 15:30:34.816 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:34.827 INFO [12249]: COREGRADE is stopping... -- 15:30:34.827 DEBUG [12249]: Closing database connection -- 15:30:34.827 SQL [12249]: pgsql_close() -- 15:30:35.022 INFO [12334]: COREGRADE is starting... -- 15:30:35.022 INFO [12334]: Version from config: 1.0 -- 15:30:35.022 DEBUG [12334]: Connecting to database... -- 15:30:35.022 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:35.022 SQL [12334]: pgsql_db_connect() -- 15:30:35.027 DEBUG [12334]: Database connection successful -- 15:30:35.027 INFO [12334]: _SERVER found -- 15:30:35.027 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 15:30:35.027 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:35.027 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:35.027 INFO [12334]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 15:30:35.027 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:35.038 INFO [12334]: COREGRADE is stopping... -- 15:30:35.038 DEBUG [12334]: Closing database connection -- 15:30:35.038 SQL [12334]: pgsql_close() -- 15:30:35.100 INFO [12248]: COREGRADE is starting... -- 15:30:35.100 INFO [12248]: Version from config: 1.0 -- 15:30:35.100 DEBUG [12248]: Connecting to database... -- 15:30:35.100 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:35.100 SQL [12248]: pgsql_db_connect() -- 15:30:35.104 DEBUG [12248]: Database connection successful -- 15:30:35.104 INFO [12248]: _SERVER found -- 15:30:35.104 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 15:30:35.104 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:35.104 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:35.104 INFO [12248]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 15:30:35.104 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:35.116 INFO [12248]: COREGRADE is stopping... -- 15:30:35.116 DEBUG [12248]: Closing database connection -- 15:30:35.116 SQL [12248]: pgsql_close() -- 15:30:35.484 INFO [12249]: COREGRADE is starting... -- 15:30:35.484 INFO [12249]: Version from config: 1.0 -- 15:30:35.484 DEBUG [12249]: Connecting to database... -- 15:30:35.484 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:35.484 SQL [12249]: pgsql_db_connect() -- 15:30:35.488 DEBUG [12249]: Database connection successful -- 15:30:35.488 INFO [12249]: _SERVER found -- 15:30:35.488 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 15:30:35.488 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:35.488 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:35.488 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 15:30:35.488 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:35.500 INFO [12249]: COREGRADE is stopping... -- 15:30:35.500 DEBUG [12249]: Closing database connection -- 15:30:35.500 SQL [12249]: pgsql_close() -- 15:30:35.539 INFO [12248]: COREGRADE is starting... -- 15:30:35.540 INFO [12248]: Version from config: 1.0 -- 15:30:35.540 DEBUG [12248]: Connecting to database... -- 15:30:35.540 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:35.540 SQL [12248]: pgsql_db_connect() -- 15:30:35.544 DEBUG [12248]: Database connection successful -- 15:30:35.544 INFO [12248]: _SERVER found -- 15:30:35.544 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 15:30:35.544 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:35.544 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:35.544 INFO [12248]: QUERY_STRING = /assets/js/pages/picker_date.js -- 15:30:35.544 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:35.555 INFO [12248]: COREGRADE is stopping... -- 15:30:35.555 DEBUG [12248]: Closing database connection -- 15:30:35.555 SQL [12248]: pgsql_close() -- 15:30:35.585 INFO [12249]: COREGRADE is starting... -- 15:30:35.585 INFO [12249]: Version from config: 1.0 -- 15:30:35.585 DEBUG [12249]: Connecting to database... -- 15:30:35.585 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:35.585 SQL [12249]: pgsql_db_connect() -- 15:30:35.589 DEBUG [12249]: Database connection successful -- 15:30:35.589 INFO [12249]: _SERVER found -- 15:30:35.589 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 15:30:35.589 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:35.589 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:35.589 INFO [12249]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 15:30:35.589 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:35.601 INFO [12249]: COREGRADE is stopping... -- 15:30:35.601 DEBUG [12249]: Closing database connection -- 15:30:35.601 SQL [12249]: pgsql_close() -- 15:30:35.640 INFO [12248]: COREGRADE is starting... -- 15:30:35.640 INFO [12248]: Version from config: 1.0 -- 15:30:35.640 DEBUG [12248]: Connecting to database... -- 15:30:35.640 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:35.640 SQL [12248]: pgsql_db_connect() -- 15:30:35.644 DEBUG [12248]: Database connection successful -- 15:30:35.644 INFO [12248]: _SERVER found -- 15:30:35.644 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 15:30:35.644 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:35.644 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:35.644 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 15:30:35.644 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:35.656 INFO [12248]: COREGRADE is stopping... -- 15:30:35.656 DEBUG [12248]: Closing database connection -- 15:30:35.656 SQL [12248]: pgsql_close() -- 15:30:36.832 INFO [12249]: COREGRADE is starting... -- 15:30:36.832 INFO [12249]: Version from config: 1.0 -- 15:30:36.832 DEBUG [12249]: Connecting to database... -- 15:30:36.832 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:36.832 SQL [12249]: pgsql_db_connect() -- 15:30:36.836 DEBUG [12249]: Database connection successful -- 15:30:36.836 INFO [12249]: _SERVER found -- 15:30:36.836 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 15:30:36.836 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:36.836 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:36.836 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 15:30:36.836 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:36.848 INFO [12249]: COREGRADE is stopping... -- 15:30:36.848 DEBUG [12249]: Closing database connection -- 15:30:36.848 SQL [12249]: pgsql_close() -- 15:30:36.932 INFO [12249]: COREGRADE is starting... -- 15:30:36.932 INFO [12249]: Version from config: 1.0 -- 15:30:36.932 DEBUG [12249]: Connecting to database... -- 15:30:36.932 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:36.932 SQL [12249]: pgsql_db_connect() -- 15:30:36.937 DEBUG [12249]: Database connection successful -- 15:30:36.937 INFO [12249]: _SERVER found -- 15:30:36.937 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 15:30:36.937 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:36.937 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:36.937 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 15:30:36.937 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:36.948 INFO [12249]: COREGRADE is stopping... -- 15:30:36.948 DEBUG [12249]: Closing database connection -- 15:30:36.948 SQL [12249]: pgsql_close() -- 15:30:36.950 INFO [12248]: COREGRADE is starting... -- 15:30:36.950 INFO [12248]: Version from config: 1.0 -- 15:30:36.950 DEBUG [12248]: Connecting to database... -- 15:30:36.951 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:36.951 SQL [12248]: pgsql_db_connect() -- 15:30:36.955 DEBUG [12248]: Database connection successful -- 15:30:36.955 INFO [12248]: _SERVER found -- 15:30:36.955 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 15:30:36.955 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:36.955 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:36.955 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 15:30:36.955 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:36.966 INFO [12248]: COREGRADE is stopping... -- 15:30:36.966 DEBUG [12248]: Closing database connection -- 15:30:36.966 SQL [12248]: pgsql_close() -- 15:30:37.033 INFO [12249]: COREGRADE is starting... -- 15:30:37.033 INFO [12249]: Version from config: 1.0 -- 15:30:37.033 DEBUG [12249]: Connecting to database... -- 15:30:37.033 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:37.033 SQL [12249]: pgsql_db_connect() -- 15:30:37.037 DEBUG [12249]: Database connection successful -- 15:30:37.037 INFO [12249]: _SERVER found -- 15:30:37.037 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 15:30:37.037 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:37.037 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:37.037 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 15:30:37.037 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:37.049 INFO [12249]: COREGRADE is stopping... -- 15:30:37.049 DEBUG [12249]: Closing database connection -- 15:30:37.049 SQL [12249]: pgsql_close() -- 15:30:37.050 INFO [12248]: COREGRADE is starting... -- 15:30:37.050 INFO [12248]: Version from config: 1.0 -- 15:30:37.050 DEBUG [12248]: Connecting to database... -- 15:30:37.050 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:37.050 SQL [12248]: pgsql_db_connect() -- 15:30:37.054 DEBUG [12248]: Database connection successful -- 15:30:37.054 INFO [12248]: _SERVER found -- 15:30:37.054 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 15:30:37.054 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:37.054 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:37.054 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 15:30:37.054 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:37.066 INFO [12248]: COREGRADE is stopping... -- 15:30:37.066 DEBUG [12248]: Closing database connection -- 15:30:37.066 SQL [12248]: pgsql_close() -- 15:30:37.132 INFO [12249]: COREGRADE is starting... -- 15:30:37.133 INFO [12249]: Version from config: 1.0 -- 15:30:37.133 DEBUG [12249]: Connecting to database... -- 15:30:37.133 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:37.133 SQL [12249]: pgsql_db_connect() -- 15:30:37.137 DEBUG [12249]: Database connection successful -- 15:30:37.137 INFO [12249]: _SERVER found -- 15:30:37.137 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 15:30:37.137 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:37.137 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:37.137 INFO [12249]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 15:30:37.137 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:37.148 INFO [12249]: COREGRADE is stopping... -- 15:30:37.148 INFO [12248]: COREGRADE is starting... -- 15:30:37.148 DEBUG [12249]: Closing database connection -- 15:30:37.148 SQL [12249]: pgsql_close() -- 15:30:37.149 INFO [12248]: Version from config: 1.0 -- 15:30:37.149 DEBUG [12248]: Connecting to database... -- 15:30:37.149 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:37.149 SQL [12248]: pgsql_db_connect() -- 15:30:37.153 DEBUG [12248]: Database connection successful -- 15:30:37.153 INFO [12248]: _SERVER found -- 15:30:37.153 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 15:30:37.153 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:37.153 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:37.153 INFO [12248]: QUERY_STRING = /assets/customjs/general.js -- 15:30:37.153 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:37.164 INFO [12248]: COREGRADE is stopping... -- 15:30:37.164 DEBUG [12248]: Closing database connection -- 15:30:37.164 SQL [12248]: pgsql_close() -- 15:30:37.233 INFO [12249]: COREGRADE is starting... -- 15:30:37.233 INFO [12249]: Version from config: 1.0 -- 15:30:37.233 DEBUG [12249]: Connecting to database... -- 15:30:37.233 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:37.233 SQL [12249]: pgsql_db_connect() -- 15:30:37.237 DEBUG [12249]: Database connection successful -- 15:30:37.237 INFO [12249]: _SERVER found -- 15:30:37.237 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 15:30:37.237 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:37.237 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:37.237 INFO [12249]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 15:30:37.237 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:37.249 INFO [12249]: COREGRADE is stopping... -- 15:30:37.249 DEBUG [12249]: Closing database connection -- 15:30:37.249 SQL [12249]: pgsql_close() -- 15:30:37.334 INFO [12249]: COREGRADE is starting... -- 15:30:37.334 INFO [12249]: Version from config: 1.0 -- 15:30:37.334 DEBUG [12249]: Connecting to database... -- 15:30:37.334 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:37.334 SQL [12249]: pgsql_db_connect() -- 15:30:37.338 DEBUG [12249]: Database connection successful -- 15:30:37.338 INFO [12249]: _SERVER found -- 15:30:37.338 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 15:30:37.338 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:37.338 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:37.338 INFO [12249]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 15:30:37.338 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:37.350 INFO [12249]: COREGRADE is stopping... -- 15:30:37.350 DEBUG [12249]: Closing database connection -- 15:30:37.350 SQL [12249]: pgsql_close() -- 15:30:37.435 INFO [12249]: COREGRADE is starting... -- 15:30:37.435 INFO [12249]: Version from config: 1.0 -- 15:30:37.435 DEBUG [12249]: Connecting to database... -- 15:30:37.435 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:37.435 SQL [12249]: pgsql_db_connect() -- 15:30:37.439 DEBUG [12249]: Database connection successful -- 15:30:37.439 INFO [12249]: _SERVER found -- 15:30:37.439 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 15:30:37.439 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:37.439 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:37.439 INFO [12249]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 15:30:37.439 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:37.451 INFO [12249]: COREGRADE is stopping... -- 15:30:37.451 DEBUG [12249]: Closing database connection -- 15:30:37.451 SQL [12249]: pgsql_close() -- 15:30:37.536 INFO [12249]: COREGRADE is starting... -- 15:30:37.536 INFO [12249]: Version from config: 1.0 -- 15:30:37.536 DEBUG [12249]: Connecting to database... -- 15:30:37.536 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:37.536 SQL [12249]: pgsql_db_connect() -- 15:30:37.540 DEBUG [12249]: Database connection successful -- 15:30:37.540 INFO [12249]: _SERVER found -- 15:30:37.540 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 15:30:37.540 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:37.540 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:37.540 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 15:30:37.540 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:37.552 INFO [12249]: COREGRADE is stopping... -- 15:30:37.552 DEBUG [12249]: Closing database connection -- 15:30:37.552 SQL [12249]: pgsql_close() -- 15:30:37.637 INFO [12249]: COREGRADE is starting... -- 15:30:37.637 INFO [12249]: Version from config: 1.0 -- 15:30:37.637 DEBUG [12249]: Connecting to database... -- 15:30:37.637 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:37.637 SQL [12249]: pgsql_db_connect() -- 15:30:37.641 DEBUG [12249]: Database connection successful -- 15:30:37.641 INFO [12249]: _SERVER found -- 15:30:37.641 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 15:30:37.641 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:37.641 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:37.641 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 15:30:37.641 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:37.653 INFO [12249]: COREGRADE is stopping... -- 15:30:37.653 DEBUG [12249]: Closing database connection -- 15:30:37.653 SQL [12249]: pgsql_close() -- 15:30:38.021 INFO [12249]: COREGRADE is starting... -- 15:30:38.021 INFO [12249]: Version from config: 1.0 -- 15:30:38.021 DEBUG [12249]: Connecting to database... -- 15:30:38.021 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:38.021 SQL [12249]: pgsql_db_connect() -- 15:30:38.025 DEBUG [12249]: Database connection successful -- 15:30:38.025 INFO [12249]: _SERVER found -- 15:30:38.025 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 15:30:38.025 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:38.025 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:38.025 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 15:30:38.025 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:38.037 INFO [12249]: COREGRADE is stopping... -- 15:30:38.037 DEBUG [12249]: Closing database connection -- 15:30:38.037 SQL [12249]: pgsql_close() -- 15:30:39.262 INFO [12249]: COREGRADE is starting... -- 15:30:39.262 INFO [12249]: Version from config: 1.0 -- 15:30:39.262 DEBUG [12249]: Connecting to database... -- 15:30:39.262 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:39.262 SQL [12249]: pgsql_db_connect() -- 15:30:39.266 DEBUG [12249]: Database connection successful -- 15:30:39.266 INFO [12249]: _SERVER found -- 15:30:39.266 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 15:30:39.266 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:39.266 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:39.266 INFO [12249]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 15:30:39.266 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:39.278 INFO [12249]: COREGRADE is stopping... -- 15:30:39.278 DEBUG [12249]: Closing database connection -- 15:30:39.278 SQL [12249]: pgsql_close() -- 15:30:39.362 INFO [12249]: COREGRADE is starting... -- 15:30:39.363 INFO [12249]: Version from config: 1.0 -- 15:30:39.363 DEBUG [12249]: Connecting to database... -- 15:30:39.363 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:39.363 SQL [12249]: pgsql_db_connect() -- 15:30:39.367 DEBUG [12249]: Database connection successful -- 15:30:39.367 INFO [12249]: _SERVER found -- 15:30:39.367 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 15:30:39.367 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:39.367 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:39.367 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 15:30:39.367 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:39.378 INFO [12249]: COREGRADE is stopping... -- 15:30:39.378 DEBUG [12249]: Closing database connection -- 15:30:39.378 SQL [12249]: pgsql_close() -- 15:30:39.747 INFO [12249]: COREGRADE is starting... -- 15:30:39.747 INFO [12249]: Version from config: 1.0 -- 15:30:39.747 DEBUG [12249]: Connecting to database... -- 15:30:39.747 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:39.747 SQL [12249]: pgsql_db_connect() -- 15:30:39.752 DEBUG [12249]: Database connection successful -- 15:30:39.752 INFO [12249]: _SERVER found -- 15:30:39.752 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 15:30:39.752 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:39.752 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:39.752 INFO [12249]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 15:30:39.752 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:39.763 INFO [12249]: COREGRADE is stopping... -- 15:30:39.763 DEBUG [12249]: Closing database connection -- 15:30:39.763 SQL [12249]: pgsql_close() -- 15:30:40.418 INFO [12249]: COREGRADE is starting... -- 15:30:40.418 INFO [12249]: Version from config: 1.0 -- 15:30:40.418 DEBUG [12249]: Connecting to database... -- 15:30:40.419 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:40.419 SQL [12249]: pgsql_db_connect() -- 15:30:40.423 DEBUG [12249]: Database connection successful -- 15:30:40.423 INFO [12249]: _SERVER found -- 15:30:40.423 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 15:30:40.423 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:40.423 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:40.423 INFO [12249]: QUERY_STRING = /assets/js/pages/dashboard.js -- 15:30:40.423 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:40.434 INFO [12249]: COREGRADE is stopping... -- 15:30:40.434 DEBUG [12249]: Closing database connection -- 15:30:40.434 SQL [12249]: pgsql_close() -- 15:30:44.837 INFO [12249]: COREGRADE is starting... -- 15:30:44.837 INFO [12249]: Version from config: 1.0 -- 15:30:44.837 DEBUG [12249]: Connecting to database... -- 15:30:44.837 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:44.837 SQL [12249]: pgsql_db_connect() -- 15:30:44.841 DEBUG [12249]: Database connection successful -- 15:30:44.841 INFO [12249]: _SERVER found -- 15:30:44.841 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 15:30:44.841 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:44.841 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:44.841 INFO [12249]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 15:30:44.841 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:44.853 INFO [12249]: COREGRADE is stopping... -- 15:30:44.853 DEBUG [12249]: Closing database connection -- 15:30:44.853 SQL [12249]: pgsql_close() -- 15:30:46.416 INFO [12249]: COREGRADE is starting... -- 15:30:46.416 INFO [12249]: Version from config: 1.0 -- 15:30:46.416 DEBUG [12249]: Connecting to database... -- 15:30:46.416 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:46.416 SQL [12249]: pgsql_db_connect() -- 15:30:46.420 DEBUG [12249]: Database connection successful -- 15:30:46.420 INFO [12249]: _SERVER found -- 15:30:46.420 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 15:30:46.420 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:46.420 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:46.420 INFO [12249]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 15:30:46.420 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:46.432 INFO [12249]: COREGRADE is stopping... -- 15:30:46.432 DEBUG [12249]: Closing database connection -- 15:30:46.432 SQL [12249]: pgsql_close() -- 15:30:46.517 INFO [12249]: COREGRADE is starting... -- 15:30:46.518 INFO [12249]: Version from config: 1.0 -- 15:30:46.518 DEBUG [12249]: Connecting to database... -- 15:30:46.518 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:46.518 SQL [12249]: pgsql_db_connect() -- 15:30:46.522 DEBUG [12249]: Database connection successful -- 15:30:46.522 INFO [12249]: _SERVER found -- 15:30:46.522 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 15:30:46.522 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:46.522 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:46.522 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 15:30:46.522 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:46.533 INFO [12249]: COREGRADE is stopping... -- 15:30:46.533 DEBUG [12249]: Closing database connection -- 15:30:46.534 SQL [12249]: pgsql_close() -- 15:30:47.186 INFO [12249]: COREGRADE is starting... -- 15:30:47.186 INFO [12249]: Version from config: 1.0 -- 15:30:47.186 DEBUG [12249]: Connecting to database... -- 15:30:47.186 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:47.186 SQL [12249]: pgsql_db_connect() -- 15:30:47.190 DEBUG [12249]: Database connection successful -- 15:30:47.190 INFO [12249]: _SERVER found -- 15:30:47.190 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 15:30:47.190 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:47.190 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:47.191 INFO [12249]: QUERY_STRING = /assets/js/pages/picker_date.js -- 15:30:47.191 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:47.202 INFO [12249]: COREGRADE is stopping... -- 15:30:47.202 DEBUG [12249]: Closing database connection -- 15:30:47.202 SQL [12249]: pgsql_close() -- 15:30:47.287 INFO [12249]: COREGRADE is starting... -- 15:30:47.287 INFO [12249]: Version from config: 1.0 -- 15:30:47.287 DEBUG [12249]: Connecting to database... -- 15:30:47.287 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:47.287 SQL [12249]: pgsql_db_connect() -- 15:30:47.292 DEBUG [12249]: Database connection successful -- 15:30:47.292 INFO [12249]: _SERVER found -- 15:30:47.292 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 15:30:47.292 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:47.292 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:47.292 INFO [12249]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 15:30:47.292 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:47.303 INFO [12249]: COREGRADE is stopping... -- 15:30:47.303 DEBUG [12249]: Closing database connection -- 15:30:47.303 SQL [12249]: pgsql_close() -- 15:30:47.388 INFO [12249]: COREGRADE is starting... -- 15:30:47.389 INFO [12249]: Version from config: 1.0 -- 15:30:47.389 DEBUG [12249]: Connecting to database... -- 15:30:47.389 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:47.389 SQL [12249]: pgsql_db_connect() -- 15:30:47.393 DEBUG [12249]: Database connection successful -- 15:30:47.393 INFO [12249]: _SERVER found -- 15:30:47.393 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 15:30:47.393 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:47.393 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:47.393 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 15:30:47.393 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:47.404 INFO [12249]: COREGRADE is stopping... -- 15:30:47.404 DEBUG [12249]: Closing database connection -- 15:30:47.404 SQL [12249]: pgsql_close() -- 15:30:48.055 INFO [12249]: COREGRADE is starting... -- 15:30:48.055 INFO [12249]: Version from config: 1.0 -- 15:30:48.055 DEBUG [12249]: Connecting to database... -- 15:30:48.055 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:48.055 SQL [12249]: pgsql_db_connect() -- 15:30:48.059 DEBUG [12249]: Database connection successful -- 15:30:48.059 INFO [12249]: _SERVER found -- 15:30:48.059 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 15:30:48.059 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:48.059 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:48.060 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 15:30:48.060 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:48.071 INFO [12249]: COREGRADE is stopping... -- 15:30:48.071 DEBUG [12249]: Closing database connection -- 15:30:48.071 SQL [12249]: pgsql_close() -- 15:30:48.724 INFO [12249]: COREGRADE is starting... -- 15:30:48.724 INFO [12249]: Version from config: 1.0 -- 15:30:48.724 DEBUG [12249]: Connecting to database... -- 15:30:48.724 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:48.724 SQL [12249]: pgsql_db_connect() -- 15:30:48.729 DEBUG [12249]: Database connection successful -- 15:30:48.729 INFO [12249]: _SERVER found -- 15:30:48.729 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 15:30:48.729 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:48.729 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:48.729 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 15:30:48.729 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:48.740 INFO [12249]: COREGRADE is stopping... -- 15:30:48.740 DEBUG [12249]: Closing database connection -- 15:30:48.740 SQL [12249]: pgsql_close() -- 15:30:48.825 INFO [12249]: COREGRADE is starting... -- 15:30:48.826 INFO [12249]: Version from config: 1.0 -- 15:30:48.826 DEBUG [12249]: Connecting to database... -- 15:30:48.826 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:48.826 SQL [12249]: pgsql_db_connect() -- 15:30:48.830 DEBUG [12249]: Database connection successful -- 15:30:48.830 INFO [12249]: _SERVER found -- 15:30:48.830 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 15:30:48.830 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:48.830 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:48.830 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 15:30:48.830 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:48.841 INFO [12249]: COREGRADE is stopping... -- 15:30:48.841 DEBUG [12249]: Closing database connection -- 15:30:48.841 SQL [12249]: pgsql_close() -- 15:30:48.965 INFO [12249]: COREGRADE is starting... -- 15:30:48.965 INFO [12249]: Version from config: 1.0 -- 15:30:48.965 DEBUG [12249]: Connecting to database... -- 15:30:48.965 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:48.965 SQL [12249]: pgsql_db_connect() -- 15:30:48.970 DEBUG [12249]: Database connection successful -- 15:30:48.970 INFO [12249]: _SERVER found -- 15:30:48.970 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 15:30:48.970 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:48.970 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:48.970 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 15:30:48.970 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:48.981 INFO [12249]: COREGRADE is stopping... -- 15:30:48.981 DEBUG [12249]: Closing database connection -- 15:30:48.981 SQL [12249]: pgsql_close() -- 15:30:49.066 INFO [12249]: COREGRADE is starting... -- 15:30:49.066 INFO [12249]: Version from config: 1.0 -- 15:30:49.066 DEBUG [12249]: Connecting to database... -- 15:30:49.066 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:49.066 SQL [12249]: pgsql_db_connect() -- 15:30:49.070 DEBUG [12249]: Database connection successful -- 15:30:49.070 INFO [12249]: _SERVER found -- 15:30:49.070 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 15:30:49.070 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:49.070 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:49.070 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 15:30:49.070 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:49.082 INFO [12249]: COREGRADE is stopping... -- 15:30:49.082 DEBUG [12249]: Closing database connection -- 15:30:49.082 SQL [12249]: pgsql_close() -- 15:30:49.456 INFO [12249]: COREGRADE is starting... -- 15:30:49.457 INFO [12249]: Version from config: 1.0 -- 15:30:49.457 DEBUG [12249]: Connecting to database... -- 15:30:49.457 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:30:49.457 SQL [12249]: pgsql_db_connect() -- 15:30:49.461 DEBUG [12249]: Database connection successful -- 15:30:49.461 INFO [12249]: _SERVER found -- 15:30:49.461 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 15:30:49.461 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:30:49.461 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:30:49.461 INFO [12249]: QUERY_STRING = /assets/customjs/general.js -- 15:30:49.461 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:30:49.473 INFO [12249]: COREGRADE is stopping... -- 15:30:49.473 DEBUG [12249]: Closing database connection -- 15:30:49.473 SQL [12249]: pgsql_close() -- 15:50:50.597 INFO [12250]: COREGRADE is starting... -- 15:50:50.597 INFO [12250]: Version from config: 1.0 -- 15:50:50.597 DEBUG [12250]: Connecting to database... -- 15:50:50.597 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:50.597 SQL [12250]: pgsql_db_connect() -- 15:50:50.602 DEBUG [12250]: Database connection successful -- 15:50:50.602 INFO [12250]: _SERVER found -- 15:50:50.602 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 15:50:50.602 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:50.602 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=uic6hf1d8t15oep2l1seocok7mfkh3hb -- 15:50:50.602 INFO [12250]: QUERY_STRING = /logout -- 15:50:50.602 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:50.637 INFO [12250]: COREGRADE is stopping... -- 15:50:50.637 DEBUG [12250]: Closing database connection -- 15:50:50.637 SQL [12250]: pgsql_close() -- 15:50:50.735 INFO [12250]: COREGRADE is starting... -- 15:50:50.735 INFO [12250]: Version from config: 1.0 -- 15:50:50.735 DEBUG [12250]: Connecting to database... -- 15:50:50.735 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:50.735 SQL [12250]: pgsql_db_connect() -- 15:50:50.740 DEBUG [12250]: Database connection successful -- 15:50:50.740 INFO [12250]: _SERVER found -- 15:50:50.740 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 15:50:50.740 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:50.740 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:50.740 INFO [12250]: QUERY_STRING = /start -- 15:50:50.740 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:50.774 INFO [12250]: COREGRADE is stopping... -- 15:50:50.774 DEBUG [12250]: Closing database connection -- 15:50:50.774 SQL [12250]: pgsql_close() -- 15:50:51.337 INFO [12250]: COREGRADE is starting... -- 15:50:51.337 INFO [12250]: Version from config: 1.0 -- 15:50:51.337 DEBUG [12250]: Connecting to database... -- 15:50:51.337 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:51.337 SQL [12250]: pgsql_db_connect() -- 15:50:51.342 DEBUG [12250]: Database connection successful -- 15:50:51.342 INFO [12250]: _SERVER found -- 15:50:51.342 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 15:50:51.342 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:51.342 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:51.342 INFO [12250]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 15:50:51.342 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:51.354 INFO [12250]: COREGRADE is stopping... -- 15:50:51.354 DEBUG [12250]: Closing database connection -- 15:50:51.354 SQL [12250]: pgsql_close() -- 15:50:51.718 INFO [12305]: COREGRADE is starting... -- 15:50:51.719 INFO [12305]: Version from config: 1.0 -- 15:50:51.719 DEBUG [12305]: Connecting to database... -- 15:50:51.719 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:51.719 SQL [12305]: pgsql_db_connect() -- 15:50:51.723 DEBUG [12305]: Database connection successful -- 15:50:51.723 INFO [12305]: _SERVER found -- 15:50:51.723 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 15:50:51.723 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:51.723 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:51.723 INFO [12305]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 15:50:51.723 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:51.736 INFO [12305]: COREGRADE is stopping... -- 15:50:51.736 DEBUG [12305]: Closing database connection -- 15:50:51.736 SQL [12305]: pgsql_close() -- 15:50:51.738 INFO [12250]: COREGRADE is starting... -- 15:50:51.738 INFO [12250]: Version from config: 1.0 -- 15:50:51.738 DEBUG [12250]: Connecting to database... -- 15:50:51.738 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:51.738 SQL [12250]: pgsql_db_connect() -- 15:50:51.743 DEBUG [12250]: Database connection successful -- 15:50:51.743 INFO [12250]: _SERVER found -- 15:50:51.743 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 15:50:51.743 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:51.743 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:51.743 INFO [12250]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 15:50:51.743 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:51.754 INFO [12250]: COREGRADE is stopping... -- 15:50:51.754 DEBUG [12250]: Closing database connection -- 15:50:51.754 SQL [12250]: pgsql_close() -- 15:50:51.806 INFO [12305]: COREGRADE is starting... -- 15:50:51.806 INFO [12305]: Version from config: 1.0 -- 15:50:51.806 DEBUG [12305]: Connecting to database... -- 15:50:51.806 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:51.806 SQL [12305]: pgsql_db_connect() -- 15:50:51.811 DEBUG [12305]: Database connection successful -- 15:50:51.811 INFO [12305]: _SERVER found -- 15:50:51.811 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 15:50:51.811 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:51.811 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:51.811 INFO [12305]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 15:50:51.811 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:51.823 INFO [12305]: COREGRADE is stopping... -- 15:50:51.823 DEBUG [12305]: Closing database connection -- 15:50:51.823 SQL [12305]: pgsql_close() -- 15:50:52.211 INFO [12305]: COREGRADE is starting... -- 15:50:52.212 INFO [12305]: Version from config: 1.0 -- 15:50:52.212 DEBUG [12305]: Connecting to database... -- 15:50:52.212 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:52.212 SQL [12305]: pgsql_db_connect() -- 15:50:52.216 DEBUG [12305]: Database connection successful -- 15:50:52.216 INFO [12305]: _SERVER found -- 15:50:52.216 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 15:50:52.216 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:52.216 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:52.216 INFO [12305]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 15:50:52.216 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:52.228 INFO [12305]: COREGRADE is stopping... -- 15:50:52.228 DEBUG [12305]: Closing database connection -- 15:50:52.228 SQL [12305]: pgsql_close() -- 15:50:52.327 INFO [12305]: COREGRADE is starting... -- 15:50:52.327 INFO [12305]: Version from config: 1.0 -- 15:50:52.327 DEBUG [12305]: Connecting to database... -- 15:50:52.327 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:52.327 SQL [12305]: pgsql_db_connect() -- 15:50:52.332 DEBUG [12305]: Database connection successful -- 15:50:52.332 INFO [12305]: _SERVER found -- 15:50:52.332 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 15:50:52.332 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:52.332 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:52.332 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 15:50:52.332 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:52.344 INFO [12305]: COREGRADE is stopping... -- 15:50:52.344 DEBUG [12305]: Closing database connection -- 15:50:52.344 SQL [12305]: pgsql_close() -- 15:50:52.429 INFO [12250]: COREGRADE is starting... -- 15:50:52.429 INFO [12250]: Version from config: 1.0 -- 15:50:52.429 DEBUG [12250]: Connecting to database... -- 15:50:52.429 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:52.429 SQL [12250]: pgsql_db_connect() -- 15:50:52.432 INFO [12305]: COREGRADE is starting... -- 15:50:52.432 INFO [12305]: Version from config: 1.0 -- 15:50:52.432 DEBUG [12305]: Connecting to database... -- 15:50:52.432 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:52.432 SQL [12305]: pgsql_db_connect() -- 15:50:52.434 DEBUG [12250]: Database connection successful -- 15:50:52.434 INFO [12250]: _SERVER found -- 15:50:52.434 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 15:50:52.434 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:52.434 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:52.434 INFO [12250]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 15:50:52.434 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:52.446 INFO [12250]: COREGRADE is stopping... -- 15:50:52.446 DEBUG [12250]: Closing database connection -- 15:50:52.446 SQL [12250]: pgsql_close() -- 15:50:52.436 DEBUG [12305]: Database connection successful -- 15:50:52.436 INFO [12305]: _SERVER found -- 15:50:52.436 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 15:50:52.436 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:52.436 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:52.436 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 15:50:52.436 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:52.448 INFO [12305]: COREGRADE is stopping... -- 15:50:52.448 DEBUG [12305]: Closing database connection -- 15:50:52.449 SQL [12305]: pgsql_close() -- 15:50:52.531 INFO [12250]: COREGRADE is starting... -- 15:50:52.531 INFO [12250]: Version from config: 1.0 -- 15:50:52.531 DEBUG [12250]: Connecting to database... -- 15:50:52.532 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:52.532 SQL [12250]: pgsql_db_connect() -- 15:50:52.534 INFO [12305]: COREGRADE is starting... -- 15:50:52.535 INFO [12305]: Version from config: 1.0 -- 15:50:52.535 DEBUG [12305]: Connecting to database... -- 15:50:52.535 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:52.535 SQL [12305]: pgsql_db_connect() -- 15:50:52.536 DEBUG [12250]: Database connection successful -- 15:50:52.536 INFO [12250]: _SERVER found -- 15:50:52.536 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 15:50:52.536 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:52.536 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:52.536 INFO [12250]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 15:50:52.536 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:52.548 INFO [12250]: COREGRADE is stopping... -- 15:50:52.548 DEBUG [12250]: Closing database connection -- 15:50:52.548 SQL [12250]: pgsql_close() -- 15:50:52.539 DEBUG [12305]: Database connection successful -- 15:50:52.539 INFO [12305]: _SERVER found -- 15:50:52.539 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 15:50:52.539 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:52.539 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:52.539 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 15:50:52.539 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:52.551 INFO [12305]: COREGRADE is stopping... -- 15:50:52.551 DEBUG [12305]: Closing database connection -- 15:50:52.551 SQL [12305]: pgsql_close() -- 15:50:52.633 INFO [12250]: COREGRADE is starting... -- 15:50:52.634 INFO [12250]: Version from config: 1.0 -- 15:50:52.634 DEBUG [12250]: Connecting to database... -- 15:50:52.634 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:52.634 SQL [12250]: pgsql_db_connect() -- 15:50:52.638 DEBUG [12250]: Database connection successful -- 15:50:52.638 INFO [12250]: _SERVER found -- 15:50:52.638 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 15:50:52.638 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:52.638 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:52.638 INFO [12250]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 15:50:52.638 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:52.650 INFO [12250]: COREGRADE is stopping... -- 15:50:52.650 DEBUG [12250]: Closing database connection -- 15:50:52.650 SQL [12250]: pgsql_close() -- 15:50:52.924 INFO [12305]: COREGRADE is starting... -- 15:50:52.925 INFO [12305]: Version from config: 1.0 -- 15:50:52.925 DEBUG [12305]: Connecting to database... -- 15:50:52.925 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:52.925 SQL [12305]: pgsql_db_connect() -- 15:50:52.929 DEBUG [12305]: Database connection successful -- 15:50:52.929 INFO [12305]: _SERVER found -- 15:50:52.929 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 15:50:52.929 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:52.929 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:52.929 INFO [12305]: QUERY_STRING = /assets/js/pages/dashboard.js -- 15:50:52.929 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:52.941 INFO [12305]: COREGRADE is stopping... -- 15:50:52.941 DEBUG [12305]: Closing database connection -- 15:50:52.941 SQL [12305]: pgsql_close() -- 15:50:53.024 INFO [12250]: COREGRADE is starting... -- 15:50:53.025 INFO [12250]: Version from config: 1.0 -- 15:50:53.025 DEBUG [12250]: Connecting to database... -- 15:50:53.025 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:53.025 SQL [12250]: pgsql_db_connect() -- 15:50:53.026 INFO [12305]: COREGRADE is starting... -- 15:50:53.027 INFO [12305]: Version from config: 1.0 -- 15:50:53.027 DEBUG [12305]: Connecting to database... -- 15:50:53.027 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:53.027 SQL [12305]: pgsql_db_connect() -- 15:50:53.029 DEBUG [12250]: Database connection successful -- 15:50:53.029 INFO [12250]: _SERVER found -- 15:50:53.029 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 15:50:53.029 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:53.029 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:53.029 INFO [12250]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 15:50:53.029 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:53.041 INFO [12250]: COREGRADE is stopping... -- 15:50:53.041 DEBUG [12250]: Closing database connection -- 15:50:53.041 SQL [12250]: pgsql_close() -- 15:50:53.031 DEBUG [12305]: Database connection successful -- 15:50:53.031 INFO [12305]: _SERVER found -- 15:50:53.031 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 15:50:53.031 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:53.031 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:53.031 INFO [12305]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 15:50:53.031 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:53.043 INFO [12305]: COREGRADE is stopping... -- 15:50:53.043 DEBUG [12305]: Closing database connection -- 15:50:53.043 SQL [12305]: pgsql_close() -- 15:50:53.125 INFO [12250]: COREGRADE is starting... -- 15:50:53.126 INFO [12250]: Version from config: 1.0 -- 15:50:53.126 DEBUG [12250]: Connecting to database... -- 15:50:53.126 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:53.126 SQL [12250]: pgsql_db_connect() -- 15:50:53.128 INFO [12305]: COREGRADE is starting... -- 15:50:53.128 INFO [12305]: Version from config: 1.0 -- 15:50:53.128 DEBUG [12305]: Connecting to database... -- 15:50:53.128 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:53.128 SQL [12305]: pgsql_db_connect() -- 15:50:53.130 DEBUG [12250]: Database connection successful -- 15:50:53.130 INFO [12250]: _SERVER found -- 15:50:53.130 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 15:50:53.130 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:53.130 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:53.130 INFO [12250]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 15:50:53.130 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:53.142 INFO [12250]: COREGRADE is stopping... -- 15:50:53.142 DEBUG [12250]: Closing database connection -- 15:50:53.142 SQL [12250]: pgsql_close() -- 15:50:53.132 DEBUG [12305]: Database connection successful -- 15:50:53.132 INFO [12305]: _SERVER found -- 15:50:53.132 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 15:50:53.132 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:53.132 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:53.132 INFO [12305]: QUERY_STRING = /assets/js/pages/picker_date.js -- 15:50:53.132 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:53.144 INFO [12305]: COREGRADE is stopping... -- 15:50:53.144 DEBUG [12305]: Closing database connection -- 15:50:53.144 SQL [12305]: pgsql_close() -- 15:50:53.226 INFO [12250]: COREGRADE is starting... -- 15:50:53.226 INFO [12250]: Version from config: 1.0 -- 15:50:53.226 DEBUG [12250]: Connecting to database... -- 15:50:53.226 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:53.226 SQL [12250]: pgsql_db_connect() -- 15:50:53.229 INFO [12305]: COREGRADE is starting... -- 15:50:53.229 INFO [12305]: Version from config: 1.0 -- 15:50:53.229 DEBUG [12305]: Connecting to database... -- 15:50:53.229 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:53.229 SQL [12305]: pgsql_db_connect() -- 15:50:53.231 DEBUG [12250]: Database connection successful -- 15:50:53.231 INFO [12250]: _SERVER found -- 15:50:53.231 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 15:50:53.231 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:53.231 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:53.231 INFO [12250]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 15:50:53.231 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:53.243 INFO [12250]: COREGRADE is stopping... -- 15:50:53.243 DEBUG [12250]: Closing database connection -- 15:50:53.243 SQL [12250]: pgsql_close() -- 15:50:53.233 DEBUG [12305]: Database connection successful -- 15:50:53.233 INFO [12305]: _SERVER found -- 15:50:53.233 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 15:50:53.233 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:53.233 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:53.233 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 15:50:53.233 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:53.245 INFO [12305]: COREGRADE is stopping... -- 15:50:53.245 DEBUG [12305]: Closing database connection -- 15:50:53.245 SQL [12305]: pgsql_close() -- 15:50:53.330 INFO [12305]: COREGRADE is starting... -- 15:50:53.330 INFO [12305]: Version from config: 1.0 -- 15:50:53.330 DEBUG [12305]: Connecting to database... -- 15:50:53.330 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:53.330 SQL [12305]: pgsql_db_connect() -- 15:50:53.335 DEBUG [12305]: Database connection successful -- 15:50:53.335 INFO [12305]: _SERVER found -- 15:50:53.335 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 15:50:53.335 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:53.335 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:53.335 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 15:50:53.335 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:53.346 INFO [12305]: COREGRADE is stopping... -- 15:50:53.346 DEBUG [12305]: Closing database connection -- 15:50:53.346 SQL [12305]: pgsql_close() -- 15:50:53.433 INFO [12305]: COREGRADE is starting... -- 15:50:53.433 INFO [12305]: Version from config: 1.0 -- 15:50:53.433 DEBUG [12305]: Connecting to database... -- 15:50:53.433 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:53.433 SQL [12305]: pgsql_db_connect() -- 15:50:53.438 DEBUG [12305]: Database connection successful -- 15:50:53.438 INFO [12305]: _SERVER found -- 15:50:53.438 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 15:50:53.438 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:53.438 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:53.438 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 15:50:53.438 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:53.450 INFO [12305]: COREGRADE is stopping... -- 15:50:53.450 DEBUG [12305]: Closing database connection -- 15:50:53.450 SQL [12305]: pgsql_close() -- 15:50:53.616 INFO [12250]: COREGRADE is starting... -- 15:50:53.616 INFO [12250]: Version from config: 1.0 -- 15:50:53.616 DEBUG [12250]: Connecting to database... -- 15:50:53.616 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:53.616 SQL [12250]: pgsql_db_connect() -- 15:50:53.620 DEBUG [12250]: Database connection successful -- 15:50:53.620 INFO [12250]: _SERVER found -- 15:50:53.620 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 15:50:53.620 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:53.620 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:53.620 INFO [12250]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 15:50:53.620 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:53.632 INFO [12250]: COREGRADE is stopping... -- 15:50:53.632 DEBUG [12250]: Closing database connection -- 15:50:53.632 SQL [12250]: pgsql_close() -- 15:50:53.716 INFO [12250]: COREGRADE is starting... -- 15:50:53.716 INFO [12250]: Version from config: 1.0 -- 15:50:53.716 DEBUG [12250]: Connecting to database... -- 15:50:53.716 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:53.716 SQL [12250]: pgsql_db_connect() -- 15:50:53.721 DEBUG [12250]: Database connection successful -- 15:50:53.721 INFO [12250]: _SERVER found -- 15:50:53.721 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 15:50:53.721 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:53.721 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:53.721 INFO [12250]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 15:50:53.721 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:53.732 INFO [12250]: COREGRADE is stopping... -- 15:50:53.733 DEBUG [12250]: Closing database connection -- 15:50:53.733 SQL [12250]: pgsql_close() -- 15:50:53.816 INFO [12250]: COREGRADE is starting... -- 15:50:53.816 INFO [12250]: Version from config: 1.0 -- 15:50:53.816 DEBUG [12250]: Connecting to database... -- 15:50:53.816 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:53.816 SQL [12250]: pgsql_db_connect() -- 15:50:53.819 INFO [12305]: COREGRADE is starting... -- 15:50:53.820 INFO [12305]: Version from config: 1.0 -- 15:50:53.820 DEBUG [12305]: Connecting to database... -- 15:50:53.820 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:53.820 SQL [12305]: pgsql_db_connect() -- 15:50:53.821 DEBUG [12250]: Database connection successful -- 15:50:53.821 INFO [12250]: _SERVER found -- 15:50:53.821 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 15:50:53.821 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:53.821 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:53.821 INFO [12250]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 15:50:53.821 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:53.833 INFO [12250]: COREGRADE is stopping... -- 15:50:53.833 DEBUG [12250]: Closing database connection -- 15:50:53.833 SQL [12250]: pgsql_close() -- 15:50:53.824 DEBUG [12305]: Database connection successful -- 15:50:53.824 INFO [12305]: _SERVER found -- 15:50:53.824 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 15:50:53.824 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:53.824 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:53.824 INFO [12305]: QUERY_STRING = /assets/customjs/general.js -- 15:50:53.824 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:53.836 INFO [12305]: COREGRADE is stopping... -- 15:50:53.836 DEBUG [12305]: Closing database connection -- 15:50:53.836 SQL [12305]: pgsql_close() -- 15:50:54.155 INFO [12305]: COREGRADE is starting... -- 15:50:54.155 INFO [12305]: Version from config: 1.0 -- 15:50:54.155 DEBUG [12305]: Connecting to database... -- 15:50:54.155 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:54.155 SQL [12305]: pgsql_db_connect() -- 15:50:54.160 DEBUG [12305]: Database connection successful -- 15:50:54.160 INFO [12305]: _SERVER found -- 15:50:54.160 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 15:50:54.160 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:54.160 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:54.160 INFO [12305]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 15:50:54.160 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:54.172 INFO [12305]: COREGRADE is stopping... -- 15:50:54.172 DEBUG [12305]: Closing database connection -- 15:50:54.172 SQL [12305]: pgsql_close() -- 15:50:54.256 INFO [12305]: COREGRADE is starting... -- 15:50:54.257 INFO [12305]: Version from config: 1.0 -- 15:50:54.257 DEBUG [12305]: Connecting to database... -- 15:50:54.257 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:54.257 SQL [12305]: pgsql_db_connect() -- 15:50:54.261 DEBUG [12305]: Database connection successful -- 15:50:54.261 INFO [12305]: _SERVER found -- 15:50:54.261 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 15:50:54.261 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:54.261 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:54.261 INFO [12305]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 15:50:54.261 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:54.273 INFO [12305]: COREGRADE is stopping... -- 15:50:54.273 DEBUG [12305]: Closing database connection -- 15:50:54.273 SQL [12305]: pgsql_close() -- 15:50:54.357 INFO [12305]: COREGRADE is starting... -- 15:50:54.357 INFO [12305]: Version from config: 1.0 -- 15:50:54.357 DEBUG [12305]: Connecting to database... -- 15:50:54.357 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:54.357 SQL [12305]: pgsql_db_connect() -- 15:50:54.362 DEBUG [12305]: Database connection successful -- 15:50:54.362 INFO [12305]: _SERVER found -- 15:50:54.362 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 15:50:54.362 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:54.362 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:54.362 INFO [12305]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 15:50:54.362 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:54.373 INFO [12305]: COREGRADE is stopping... -- 15:50:54.373 DEBUG [12305]: Closing database connection -- 15:50:54.373 SQL [12305]: pgsql_close() -- 15:50:54.458 INFO [12305]: COREGRADE is starting... -- 15:50:54.458 INFO [12305]: Version from config: 1.0 -- 15:50:54.458 DEBUG [12305]: Connecting to database... -- 15:50:54.458 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:54.458 SQL [12305]: pgsql_db_connect() -- 15:50:54.462 DEBUG [12305]: Database connection successful -- 15:50:54.462 INFO [12305]: _SERVER found -- 15:50:54.462 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 15:50:54.462 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:54.462 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:54.462 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 15:50:54.462 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:54.474 INFO [12305]: COREGRADE is stopping... -- 15:50:54.474 DEBUG [12305]: Closing database connection -- 15:50:54.474 SQL [12305]: pgsql_close() -- 15:50:54.842 INFO [12305]: COREGRADE is starting... -- 15:50:54.843 INFO [12305]: Version from config: 1.0 -- 15:50:54.843 DEBUG [12305]: Connecting to database... -- 15:50:54.843 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:54.843 SQL [12305]: pgsql_db_connect() -- 15:50:54.847 DEBUG [12305]: Database connection successful -- 15:50:54.847 INFO [12305]: _SERVER found -- 15:50:54.847 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 15:50:54.847 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:54.847 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:54.847 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 15:50:54.847 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:54.859 INFO [12305]: COREGRADE is stopping... -- 15:50:54.859 DEBUG [12305]: Closing database connection -- 15:50:54.859 SQL [12305]: pgsql_close() -- 15:50:55.515 INFO [12305]: COREGRADE is starting... -- 15:50:55.516 INFO [12305]: Version from config: 1.0 -- 15:50:55.516 DEBUG [12305]: Connecting to database... -- 15:50:55.516 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:55.516 SQL [12305]: pgsql_db_connect() -- 15:50:55.520 DEBUG [12305]: Database connection successful -- 15:50:55.520 INFO [12305]: _SERVER found -- 15:50:55.520 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 15:50:55.520 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:55.520 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:55.520 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 15:50:55.520 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:55.532 INFO [12305]: COREGRADE is stopping... -- 15:50:55.532 DEBUG [12305]: Closing database connection -- 15:50:55.532 SQL [12305]: pgsql_close() -- 15:50:55.616 INFO [12305]: COREGRADE is starting... -- 15:50:55.617 INFO [12305]: Version from config: 1.0 -- 15:50:55.617 DEBUG [12305]: Connecting to database... -- 15:50:55.617 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:55.617 SQL [12305]: pgsql_db_connect() -- 15:50:55.621 DEBUG [12305]: Database connection successful -- 15:50:55.621 INFO [12305]: _SERVER found -- 15:50:55.621 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 15:50:55.621 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:55.621 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:55.621 INFO [12305]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 15:50:55.621 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:55.633 INFO [12305]: COREGRADE is stopping... -- 15:50:55.633 DEBUG [12305]: Closing database connection -- 15:50:55.633 SQL [12305]: pgsql_close() -- 15:50:55.718 INFO [12305]: COREGRADE is starting... -- 15:50:55.718 INFO [12305]: Version from config: 1.0 -- 15:50:55.718 DEBUG [12305]: Connecting to database... -- 15:50:55.718 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:55.718 SQL [12305]: pgsql_db_connect() -- 15:50:55.723 DEBUG [12305]: Database connection successful -- 15:50:55.723 INFO [12305]: _SERVER found -- 15:50:55.723 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 15:50:55.723 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:55.723 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:55.723 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 15:50:55.723 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:55.735 INFO [12305]: COREGRADE is stopping... -- 15:50:55.735 DEBUG [12305]: Closing database connection -- 15:50:55.735 SQL [12305]: pgsql_close() -- 15:50:56.103 INFO [12305]: COREGRADE is starting... -- 15:50:56.104 INFO [12305]: Version from config: 1.0 -- 15:50:56.104 DEBUG [12305]: Connecting to database... -- 15:50:56.104 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:56.104 SQL [12305]: pgsql_db_connect() -- 15:50:56.108 DEBUG [12305]: Database connection successful -- 15:50:56.108 INFO [12305]: _SERVER found -- 15:50:56.108 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 15:50:56.108 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:56.108 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:56.108 INFO [12305]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 15:50:56.108 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:56.120 INFO [12305]: COREGRADE is stopping... -- 15:50:56.120 DEBUG [12305]: Closing database connection -- 15:50:56.120 SQL [12305]: pgsql_close() -- 15:50:56.205 INFO [12305]: COREGRADE is starting... -- 15:50:56.205 INFO [12305]: Version from config: 1.0 -- 15:50:56.205 DEBUG [12305]: Connecting to database... -- 15:50:56.205 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:56.205 SQL [12305]: pgsql_db_connect() -- 15:50:56.209 DEBUG [12305]: Database connection successful -- 15:50:56.209 INFO [12305]: _SERVER found -- 15:50:56.209 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 15:50:56.209 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:56.209 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:56.209 INFO [12305]: QUERY_STRING = /assets/js/pages/dashboard.js -- 15:50:56.209 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:56.221 INFO [12305]: COREGRADE is stopping... -- 15:50:56.221 DEBUG [12305]: Closing database connection -- 15:50:56.221 SQL [12305]: pgsql_close() -- 15:50:56.307 INFO [12305]: COREGRADE is starting... -- 15:50:56.307 INFO [12305]: Version from config: 1.0 -- 15:50:56.307 DEBUG [12305]: Connecting to database... -- 15:50:56.307 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:56.307 SQL [12305]: pgsql_db_connect() -- 15:50:56.312 DEBUG [12305]: Database connection successful -- 15:50:56.312 INFO [12305]: _SERVER found -- 15:50:56.312 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 15:50:56.312 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:56.312 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:56.312 INFO [12305]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 15:50:56.312 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:56.323 INFO [12305]: COREGRADE is stopping... -- 15:50:56.323 DEBUG [12305]: Closing database connection -- 15:50:56.323 SQL [12305]: pgsql_close() -- 15:50:56.407 INFO [12305]: COREGRADE is starting... -- 15:50:56.408 INFO [12305]: Version from config: 1.0 -- 15:50:56.408 DEBUG [12305]: Connecting to database... -- 15:50:56.408 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:56.408 SQL [12305]: pgsql_db_connect() -- 15:50:56.412 DEBUG [12305]: Database connection successful -- 15:50:56.412 INFO [12305]: _SERVER found -- 15:50:56.412 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 15:50:56.412 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:56.412 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:56.412 INFO [12305]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 15:50:56.412 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:56.424 INFO [12305]: COREGRADE is stopping... -- 15:50:56.424 DEBUG [12305]: Closing database connection -- 15:50:56.424 SQL [12305]: pgsql_close() -- 15:50:57.077 INFO [12305]: COREGRADE is starting... -- 15:50:57.077 INFO [12305]: Version from config: 1.0 -- 15:50:57.077 DEBUG [12305]: Connecting to database... -- 15:50:57.078 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:57.078 SQL [12305]: pgsql_db_connect() -- 15:50:57.082 DEBUG [12305]: Database connection successful -- 15:50:57.082 INFO [12305]: _SERVER found -- 15:50:57.082 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 15:50:57.082 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:57.082 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:57.082 INFO [12305]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 15:50:57.082 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:57.094 INFO [12305]: COREGRADE is stopping... -- 15:50:57.094 DEBUG [12305]: Closing database connection -- 15:50:57.094 SQL [12305]: pgsql_close() -- 15:50:57.179 INFO [12305]: COREGRADE is starting... -- 15:50:57.179 INFO [12305]: Version from config: 1.0 -- 15:50:57.179 DEBUG [12305]: Connecting to database... -- 15:50:57.179 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:57.179 SQL [12305]: pgsql_db_connect() -- 15:50:57.184 DEBUG [12305]: Database connection successful -- 15:50:57.184 INFO [12305]: _SERVER found -- 15:50:57.184 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 15:50:57.184 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:57.184 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:57.184 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 15:50:57.184 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:57.196 INFO [12305]: COREGRADE is stopping... -- 15:50:57.196 DEBUG [12305]: Closing database connection -- 15:50:57.196 SQL [12305]: pgsql_close() -- 15:50:57.279 INFO [12305]: COREGRADE is starting... -- 15:50:57.280 INFO [12305]: Version from config: 1.0 -- 15:50:57.280 DEBUG [12305]: Connecting to database... -- 15:50:57.280 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:57.280 SQL [12305]: pgsql_db_connect() -- 15:50:57.284 DEBUG [12305]: Database connection successful -- 15:50:57.284 INFO [12305]: _SERVER found -- 15:50:57.284 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 15:50:57.284 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:57.284 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:57.284 INFO [12305]: QUERY_STRING = /assets/js/pages/picker_date.js -- 15:50:57.284 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:57.296 INFO [12305]: COREGRADE is stopping... -- 15:50:57.296 DEBUG [12305]: Closing database connection -- 15:50:57.296 SQL [12305]: pgsql_close() -- 15:50:57.662 INFO [12305]: COREGRADE is starting... -- 15:50:57.663 INFO [12305]: Version from config: 1.0 -- 15:50:57.663 DEBUG [12305]: Connecting to database... -- 15:50:57.663 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:57.663 SQL [12305]: pgsql_db_connect() -- 15:50:57.667 DEBUG [12305]: Database connection successful -- 15:50:57.667 INFO [12305]: _SERVER found -- 15:50:57.667 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 15:50:57.667 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:57.667 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:57.667 INFO [12305]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 15:50:57.667 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:57.679 INFO [12305]: COREGRADE is stopping... -- 15:50:57.679 DEBUG [12305]: Closing database connection -- 15:50:57.679 SQL [12305]: pgsql_close() -- 15:50:57.764 INFO [12305]: COREGRADE is starting... -- 15:50:57.764 INFO [12305]: Version from config: 1.0 -- 15:50:57.764 DEBUG [12305]: Connecting to database... -- 15:50:57.764 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:57.764 SQL [12305]: pgsql_db_connect() -- 15:50:57.769 DEBUG [12305]: Database connection successful -- 15:50:57.769 INFO [12305]: _SERVER found -- 15:50:57.769 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 15:50:57.769 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:57.769 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:57.769 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 15:50:57.769 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:57.781 INFO [12305]: COREGRADE is stopping... -- 15:50:57.781 DEBUG [12305]: Closing database connection -- 15:50:57.781 SQL [12305]: pgsql_close() -- 15:50:57.867 INFO [12305]: COREGRADE is starting... -- 15:50:57.868 INFO [12305]: Version from config: 1.0 -- 15:50:57.868 DEBUG [12305]: Connecting to database... -- 15:50:57.868 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:57.868 SQL [12305]: pgsql_db_connect() -- 15:50:57.872 DEBUG [12305]: Database connection successful -- 15:50:57.872 INFO [12305]: _SERVER found -- 15:50:57.872 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 15:50:57.872 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:57.872 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:57.872 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 15:50:57.872 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:57.884 INFO [12305]: COREGRADE is stopping... -- 15:50:57.884 DEBUG [12305]: Closing database connection -- 15:50:57.884 SQL [12305]: pgsql_close() -- 15:50:57.969 INFO [12305]: COREGRADE is starting... -- 15:50:57.969 INFO [12305]: Version from config: 1.0 -- 15:50:57.969 DEBUG [12305]: Connecting to database... -- 15:50:57.969 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:57.969 SQL [12305]: pgsql_db_connect() -- 15:50:57.974 DEBUG [12305]: Database connection successful -- 15:50:57.974 INFO [12305]: _SERVER found -- 15:50:57.974 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 15:50:57.974 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:57.974 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:57.974 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 15:50:57.974 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:57.986 INFO [12305]: COREGRADE is stopping... -- 15:50:57.986 DEBUG [12305]: Closing database connection -- 15:50:57.986 SQL [12305]: pgsql_close() -- 15:50:58.069 INFO [12305]: COREGRADE is starting... -- 15:50:58.069 INFO [12305]: Version from config: 1.0 -- 15:50:58.069 DEBUG [12305]: Connecting to database... -- 15:50:58.069 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:58.069 SQL [12305]: pgsql_db_connect() -- 15:50:58.074 DEBUG [12305]: Database connection successful -- 15:50:58.074 INFO [12305]: _SERVER found -- 15:50:58.074 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 15:50:58.074 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:58.074 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:58.074 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 15:50:58.074 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:58.085 INFO [12305]: COREGRADE is stopping... -- 15:50:58.085 DEBUG [12305]: Closing database connection -- 15:50:58.085 SQL [12305]: pgsql_close() -- 15:50:58.179 INFO [12305]: COREGRADE is starting... -- 15:50:58.179 INFO [12305]: Version from config: 1.0 -- 15:50:58.179 DEBUG [12305]: Connecting to database... -- 15:50:58.179 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:58.179 SQL [12305]: pgsql_db_connect() -- 15:50:58.184 DEBUG [12305]: Database connection successful -- 15:50:58.184 INFO [12305]: _SERVER found -- 15:50:58.184 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 15:50:58.184 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:58.184 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:58.184 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 15:50:58.184 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:58.195 INFO [12305]: COREGRADE is stopping... -- 15:50:58.195 DEBUG [12305]: Closing database connection -- 15:50:58.195 SQL [12305]: pgsql_close() -- 15:50:58.280 INFO [12305]: COREGRADE is starting... -- 15:50:58.281 INFO [12305]: Version from config: 1.0 -- 15:50:58.281 DEBUG [12305]: Connecting to database... -- 15:50:58.281 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:58.281 SQL [12305]: pgsql_db_connect() -- 15:50:58.285 DEBUG [12305]: Database connection successful -- 15:50:58.285 INFO [12305]: _SERVER found -- 15:50:58.285 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 15:50:58.285 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:58.285 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:58.285 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 15:50:58.285 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:58.297 INFO [12305]: COREGRADE is stopping... -- 15:50:58.297 DEBUG [12305]: Closing database connection -- 15:50:58.297 SQL [12305]: pgsql_close() -- 15:50:58.383 INFO [12305]: COREGRADE is starting... -- 15:50:58.384 INFO [12305]: Version from config: 1.0 -- 15:50:58.384 DEBUG [12305]: Connecting to database... -- 15:50:58.384 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:50:58.384 SQL [12305]: pgsql_db_connect() -- 15:50:58.388 DEBUG [12305]: Database connection successful -- 15:50:58.388 INFO [12305]: _SERVER found -- 15:50:58.388 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 15:50:58.388 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 15:50:58.389 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 15:50:58.389 INFO [12305]: QUERY_STRING = /assets/customjs/general.js -- 15:50:58.389 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:50:58.400 INFO [12305]: COREGRADE is stopping... -- 15:50:58.400 DEBUG [12305]: Closing database connection -- 15:50:58.400 SQL [12305]: pgsql_close() -- 16:10:58.655 INFO [12246]: COREGRADE is starting... -- 16:10:58.655 INFO [12246]: Version from config: 1.0 -- 16:10:58.655 DEBUG [12246]: Connecting to database... -- 16:10:58.655 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:10:58.655 SQL [12246]: pgsql_db_connect() -- 16:10:58.660 DEBUG [12246]: Database connection successful -- 16:10:58.660 INFO [12246]: _SERVER found -- 16:10:58.660 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 16:10:58.660 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:10:58.660 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=2sn294escujcnt24rb9l6fembia8gg1k -- 16:10:58.660 INFO [12246]: QUERY_STRING = /logout -- 16:10:58.660 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:10:58.694 INFO [12246]: COREGRADE is stopping... -- 16:10:58.694 DEBUG [12246]: Closing database connection -- 16:10:58.694 SQL [12246]: pgsql_close() -- 16:10:58.791 INFO [12246]: COREGRADE is starting... -- 16:10:58.792 INFO [12246]: Version from config: 1.0 -- 16:10:58.792 DEBUG [12246]: Connecting to database... -- 16:10:58.792 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:10:58.792 SQL [12246]: pgsql_db_connect() -- 16:10:58.796 DEBUG [12246]: Database connection successful -- 16:10:58.796 INFO [12246]: _SERVER found -- 16:10:58.796 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 16:10:58.796 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:10:58.796 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:10:58.796 INFO [12246]: QUERY_STRING = /start -- 16:10:58.796 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:10:58.830 INFO [12246]: COREGRADE is stopping... -- 16:10:58.830 DEBUG [12246]: Closing database connection -- 16:10:58.830 SQL [12246]: pgsql_close() -- 16:10:59.106 INFO [12347]: COREGRADE is starting... -- 16:10:59.107 INFO [12347]: Version from config: 1.0 -- 16:10:59.107 DEBUG [12347]: Connecting to database... -- 16:10:59.107 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:10:59.107 SQL [12347]: pgsql_db_connect() -- 16:10:59.115 INFO [25055]: COREGRADE is starting... -- 16:10:59.116 INFO [25055]: Version from config: 1.0 -- 16:10:59.116 DEBUG [25055]: Connecting to database... -- 16:10:59.116 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:10:59.116 SQL [25055]: pgsql_db_connect() -- 16:10:59.111 DEBUG [12347]: Database connection successful -- 16:10:59.111 INFO [12347]: _SERVER found -- 16:10:59.111 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 16:10:59.111 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:10:59.111 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:10:59.111 INFO [12347]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 16:10:59.111 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:10:59.129 INFO [12347]: COREGRADE is stopping... -- 16:10:59.129 DEBUG [12347]: Closing database connection -- 16:10:59.129 SQL [12347]: pgsql_close() -- 16:10:59.121 DEBUG [25055]: Database connection successful -- 16:10:59.121 INFO [25055]: _SERVER found -- 16:10:59.121 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:10:59.121 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:10:59.121 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:10:59.121 INFO [25055]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 16:10:59.121 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:10:59.136 INFO [25055]: COREGRADE is stopping... -- 16:10:59.136 DEBUG [25055]: Closing database connection -- 16:10:59.136 SQL [25055]: pgsql_close() -- 16:10:59.163 INFO [12246]: COREGRADE is starting... -- 16:10:59.163 INFO [12246]: Version from config: 1.0 -- 16:10:59.163 DEBUG [12246]: Connecting to database... -- 16:10:59.163 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:10:59.163 SQL [12246]: pgsql_db_connect() -- 16:10:59.168 DEBUG [12246]: Database connection successful -- 16:10:59.168 INFO [12246]: _SERVER found -- 16:10:59.168 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 16:10:59.168 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:10:59.168 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:10:59.168 INFO [12246]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 16:10:59.168 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:10:59.179 INFO [12246]: COREGRADE is stopping... -- 16:10:59.179 DEBUG [12246]: Closing database connection -- 16:10:59.179 SQL [12246]: pgsql_close() -- 16:10:59.224 INFO [25055]: COREGRADE is starting... -- 16:10:59.224 INFO [25055]: Version from config: 1.0 -- 16:10:59.224 DEBUG [25055]: Connecting to database... -- 16:10:59.224 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:10:59.224 SQL [25055]: pgsql_db_connect() -- 16:10:59.228 DEBUG [25055]: Database connection successful -- 16:10:59.228 INFO [25055]: _SERVER found -- 16:10:59.228 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:10:59.228 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:10:59.228 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:10:59.228 INFO [25055]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 16:10:59.228 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:10:59.240 INFO [25055]: COREGRADE is stopping... -- 16:10:59.240 DEBUG [25055]: Closing database connection -- 16:10:59.240 SQL [25055]: pgsql_close() -- 16:10:59.551 INFO [12246]: COREGRADE is starting... -- 16:10:59.551 INFO [12246]: Version from config: 1.0 -- 16:10:59.551 DEBUG [12246]: Connecting to database... -- 16:10:59.551 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:10:59.551 SQL [12246]: pgsql_db_connect() -- 16:10:59.555 DEBUG [12246]: Database connection successful -- 16:10:59.555 INFO [12246]: _SERVER found -- 16:10:59.555 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 16:10:59.555 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:10:59.555 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:10:59.555 INFO [12246]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 16:10:59.555 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:10:59.567 INFO [12246]: COREGRADE is stopping... -- 16:10:59.567 DEBUG [12246]: Closing database connection -- 16:10:59.567 SQL [12246]: pgsql_close() -- 16:10:59.651 INFO [12246]: COREGRADE is starting... -- 16:10:59.651 INFO [12246]: Version from config: 1.0 -- 16:10:59.651 DEBUG [12246]: Connecting to database... -- 16:10:59.651 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:10:59.651 SQL [12246]: pgsql_db_connect() -- 16:10:59.655 DEBUG [12246]: Database connection successful -- 16:10:59.655 INFO [12246]: _SERVER found -- 16:10:59.655 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 16:10:59.655 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:10:59.655 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:10:59.655 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 16:10:59.655 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:10:59.667 INFO [12246]: COREGRADE is stopping... -- 16:10:59.667 DEBUG [12246]: Closing database connection -- 16:10:59.667 SQL [12246]: pgsql_close() -- 16:10:59.743 INFO [12247]: COREGRADE is starting... -- 16:10:59.743 INFO [12247]: Version from config: 1.0 -- 16:10:59.743 DEBUG [12247]: Connecting to database... -- 16:10:59.743 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:10:59.743 SQL [12247]: pgsql_db_connect() -- 16:10:59.752 INFO [12246]: COREGRADE is starting... -- 16:10:59.752 INFO [12246]: Version from config: 1.0 -- 16:10:59.753 DEBUG [12246]: Connecting to database... -- 16:10:59.753 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:10:59.753 SQL [12246]: pgsql_db_connect() -- 16:10:59.747 DEBUG [12247]: Database connection successful -- 16:10:59.747 INFO [12247]: _SERVER found -- 16:10:59.747 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 16:10:59.747 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:10:59.747 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:10:59.747 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 16:10:59.747 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:10:59.760 INFO [12247]: COREGRADE is stopping... -- 16:10:59.760 DEBUG [12247]: Closing database connection -- 16:10:59.760 SQL [12247]: pgsql_close() -- 16:10:59.757 DEBUG [12246]: Database connection successful -- 16:10:59.757 INFO [12246]: _SERVER found -- 16:10:59.757 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 16:10:59.757 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:10:59.757 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:10:59.757 INFO [12246]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 16:10:59.757 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:10:59.768 INFO [12246]: COREGRADE is stopping... -- 16:10:59.768 DEBUG [12246]: Closing database connection -- 16:10:59.768 SQL [12246]: pgsql_close() -- 16:10:59.853 INFO [12246]: COREGRADE is starting... -- 16:10:59.853 INFO [12246]: Version from config: 1.0 -- 16:10:59.853 DEBUG [12246]: Connecting to database... -- 16:10:59.853 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:10:59.853 SQL [12246]: pgsql_db_connect() -- 16:10:59.857 DEBUG [12246]: Database connection successful -- 16:10:59.857 INFO [12246]: _SERVER found -- 16:10:59.857 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 16:10:59.857 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:10:59.857 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:10:59.857 INFO [12246]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 16:10:59.857 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:10:59.869 INFO [12246]: COREGRADE is stopping... -- 16:10:59.869 DEBUG [12246]: Closing database connection -- 16:10:59.869 SQL [12246]: pgsql_close() -- 16:10:59.906 INFO [25055]: COREGRADE is starting... -- 16:10:59.906 INFO [25055]: Version from config: 1.0 -- 16:10:59.906 DEBUG [25055]: Connecting to database... -- 16:10:59.906 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:10:59.906 SQL [25055]: pgsql_db_connect() -- 16:10:59.910 DEBUG [25055]: Database connection successful -- 16:10:59.910 INFO [25055]: _SERVER found -- 16:10:59.910 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:10:59.910 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:10:59.910 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:10:59.910 INFO [25055]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 16:10:59.910 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:10:59.922 INFO [25055]: COREGRADE is stopping... -- 16:10:59.922 DEBUG [25055]: Closing database connection -- 16:10:59.922 SQL [25055]: pgsql_close() -- 16:11:00.006 INFO [25055]: COREGRADE is starting... -- 16:11:00.006 INFO [25055]: Version from config: 1.0 -- 16:11:00.006 DEBUG [25055]: Connecting to database... -- 16:11:00.006 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:00.006 SQL [25055]: pgsql_db_connect() -- 16:11:00.010 DEBUG [25055]: Database connection successful -- 16:11:00.010 INFO [25055]: _SERVER found -- 16:11:00.010 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:11:00.010 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:11:00.010 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:11:00.010 INFO [25055]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 16:11:00.010 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:11:00.021 INFO [25055]: COREGRADE is stopping... -- 16:11:00.022 DEBUG [25055]: Closing database connection -- 16:11:00.022 SQL [25055]: pgsql_close() -- 16:11:00.106 INFO [25055]: COREGRADE is starting... -- 16:11:00.106 INFO [25055]: Version from config: 1.0 -- 16:11:00.106 DEBUG [25055]: Connecting to database... -- 16:11:00.106 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:00.106 SQL [25055]: pgsql_db_connect() -- 16:11:00.110 DEBUG [25055]: Database connection successful -- 16:11:00.110 INFO [25055]: _SERVER found -- 16:11:00.110 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:11:00.110 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:11:00.110 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:11:00.110 INFO [25055]: QUERY_STRING = /assets/js/pages/dashboard.js -- 16:11:00.110 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:11:00.122 INFO [25055]: COREGRADE is stopping... -- 16:11:00.122 DEBUG [25055]: Closing database connection -- 16:11:00.122 SQL [25055]: pgsql_close() -- 16:11:00.146 INFO [12247]: COREGRADE is starting... -- 16:11:00.147 INFO [12247]: Version from config: 1.0 -- 16:11:00.147 DEBUG [12247]: Connecting to database... -- 16:11:00.147 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:00.147 SQL [12247]: pgsql_db_connect() -- 16:11:00.151 DEBUG [12247]: Database connection successful -- 16:11:00.151 INFO [12247]: _SERVER found -- 16:11:00.151 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 16:11:00.151 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:11:00.151 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:11:00.151 INFO [12247]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 16:11:00.151 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:11:00.162 INFO [12247]: COREGRADE is stopping... -- 16:11:00.162 DEBUG [12247]: Closing database connection -- 16:11:00.162 SQL [12247]: pgsql_close() -- 16:11:00.256 INFO [12247]: COREGRADE is starting... -- 16:11:00.257 INFO [12247]: Version from config: 1.0 -- 16:11:00.257 DEBUG [12247]: Connecting to database... -- 16:11:00.257 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:00.257 SQL [12247]: pgsql_db_connect() -- 16:11:00.261 DEBUG [12247]: Database connection successful -- 16:11:00.261 INFO [12247]: _SERVER found -- 16:11:00.261 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 16:11:00.261 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:11:00.261 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:11:00.261 INFO [12247]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 16:11:00.261 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:11:00.272 INFO [12247]: COREGRADE is stopping... -- 16:11:00.272 DEBUG [12247]: Closing database connection -- 16:11:00.272 SQL [12247]: pgsql_close() -- 16:11:00.361 INFO [12247]: COREGRADE is starting... -- 16:11:00.361 INFO [12247]: Version from config: 1.0 -- 16:11:00.361 DEBUG [12247]: Connecting to database... -- 16:11:00.361 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:00.361 SQL [12247]: pgsql_db_connect() -- 16:11:00.365 DEBUG [12247]: Database connection successful -- 16:11:00.365 INFO [12247]: _SERVER found -- 16:11:00.365 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 16:11:00.365 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:11:00.365 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:11:00.365 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 16:11:00.365 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:11:00.377 INFO [12247]: COREGRADE is stopping... -- 16:11:00.377 DEBUG [12247]: Closing database connection -- 16:11:00.377 SQL [12247]: pgsql_close() -- 16:11:00.493 INFO [25055]: COREGRADE is starting... -- 16:11:00.494 INFO [25055]: Version from config: 1.0 -- 16:11:00.494 DEBUG [25055]: Connecting to database... -- 16:11:00.494 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:00.494 SQL [25055]: pgsql_db_connect() -- 16:11:00.498 DEBUG [25055]: Database connection successful -- 16:11:00.498 INFO [25055]: _SERVER found -- 16:11:00.498 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:11:00.498 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:11:00.498 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:11:00.498 INFO [25055]: QUERY_STRING = /assets/js/pages/picker_date.js -- 16:11:00.498 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:11:00.509 INFO [25055]: COREGRADE is stopping... -- 16:11:00.509 DEBUG [25055]: Closing database connection -- 16:11:00.509 SQL [25055]: pgsql_close() -- 16:11:00.594 INFO [25055]: COREGRADE is starting... -- 16:11:00.594 INFO [25055]: Version from config: 1.0 -- 16:11:00.594 DEBUG [25055]: Connecting to database... -- 16:11:00.594 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:00.594 SQL [25055]: pgsql_db_connect() -- 16:11:00.598 DEBUG [25055]: Database connection successful -- 16:11:00.598 INFO [25055]: _SERVER found -- 16:11:00.598 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:11:00.598 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:11:00.598 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:11:00.598 INFO [25055]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 16:11:00.598 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:11:00.609 INFO [25055]: COREGRADE is stopping... -- 16:11:00.609 DEBUG [25055]: Closing database connection -- 16:11:00.609 SQL [25055]: pgsql_close() -- 16:11:00.752 INFO [12247]: COREGRADE is starting... -- 16:11:00.752 INFO [12247]: Version from config: 1.0 -- 16:11:00.752 DEBUG [12247]: Connecting to database... -- 16:11:00.752 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:00.752 SQL [12247]: pgsql_db_connect() -- 16:11:00.756 DEBUG [12247]: Database connection successful -- 16:11:00.756 INFO [12247]: _SERVER found -- 16:11:00.756 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 16:11:00.756 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:11:00.756 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:11:00.756 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 16:11:00.756 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:11:00.768 INFO [12247]: COREGRADE is stopping... -- 16:11:00.768 DEBUG [12247]: Closing database connection -- 16:11:00.768 SQL [12247]: pgsql_close() -- 16:11:00.851 INFO [12247]: COREGRADE is starting... -- 16:11:00.852 INFO [12247]: Version from config: 1.0 -- 16:11:00.852 DEBUG [12247]: Connecting to database... -- 16:11:00.852 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:00.852 SQL [12247]: pgsql_db_connect() -- 16:11:00.856 DEBUG [12247]: Database connection successful -- 16:11:00.856 INFO [12247]: _SERVER found -- 16:11:00.856 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 16:11:00.856 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:11:00.856 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:11:00.856 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 16:11:00.856 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:11:00.867 INFO [12247]: COREGRADE is stopping... -- 16:11:00.867 DEBUG [12247]: Closing database connection -- 16:11:00.867 SQL [12247]: pgsql_close() -- 16:11:00.952 INFO [12247]: COREGRADE is starting... -- 16:11:00.952 INFO [12247]: Version from config: 1.0 -- 16:11:00.952 DEBUG [12247]: Connecting to database... -- 16:11:00.952 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:00.952 SQL [12247]: pgsql_db_connect() -- 16:11:00.956 DEBUG [12247]: Database connection successful -- 16:11:00.956 INFO [12247]: _SERVER found -- 16:11:00.956 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 16:11:00.956 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:11:00.956 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:11:00.956 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 16:11:00.956 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:11:00.967 INFO [12247]: COREGRADE is stopping... -- 16:11:00.967 DEBUG [12247]: Closing database connection -- 16:11:00.967 SQL [12247]: pgsql_close() -- 16:11:00.980 INFO [25055]: COREGRADE is starting... -- 16:11:00.980 INFO [25055]: Version from config: 1.0 -- 16:11:00.980 DEBUG [25055]: Connecting to database... -- 16:11:00.980 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:00.980 SQL [25055]: pgsql_db_connect() -- 16:11:00.984 DEBUG [25055]: Database connection successful -- 16:11:00.984 INFO [25055]: _SERVER found -- 16:11:00.984 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:11:00.984 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:11:00.984 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:11:00.984 INFO [25055]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 16:11:00.984 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:11:00.996 INFO [25055]: COREGRADE is stopping... -- 16:11:00.996 DEBUG [25055]: Closing database connection -- 16:11:00.996 SQL [25055]: pgsql_close() -- 16:11:01.052 INFO [12247]: COREGRADE is starting... -- 16:11:01.052 INFO [12247]: Version from config: 1.0 -- 16:11:01.052 DEBUG [12247]: Connecting to database... -- 16:11:01.052 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:01.052 SQL [12247]: pgsql_db_connect() -- 16:11:01.056 DEBUG [12247]: Database connection successful -- 16:11:01.056 INFO [12247]: _SERVER found -- 16:11:01.056 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 16:11:01.056 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:11:01.056 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:11:01.056 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 16:11:01.056 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:11:01.067 INFO [12247]: COREGRADE is stopping... -- 16:11:01.067 DEBUG [12247]: Closing database connection -- 16:11:01.067 SQL [12247]: pgsql_close() -- 16:11:01.080 INFO [25055]: COREGRADE is starting... -- 16:11:01.081 INFO [25055]: Version from config: 1.0 -- 16:11:01.081 DEBUG [25055]: Connecting to database... -- 16:11:01.081 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:01.081 SQL [25055]: pgsql_db_connect() -- 16:11:01.084 DEBUG [25055]: Database connection successful -- 16:11:01.084 INFO [25055]: _SERVER found -- 16:11:01.084 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:11:01.084 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:11:01.084 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:11:01.084 INFO [25055]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 16:11:01.084 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:11:01.096 INFO [25055]: COREGRADE is stopping... -- 16:11:01.096 DEBUG [25055]: Closing database connection -- 16:11:01.096 SQL [25055]: pgsql_close() -- 16:11:01.099 INFO [12246]: COREGRADE is starting... -- 16:11:01.099 INFO [12246]: Version from config: 1.0 -- 16:11:01.099 DEBUG [12246]: Connecting to database... -- 16:11:01.099 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:01.099 SQL [12246]: pgsql_db_connect() -- 16:11:01.103 DEBUG [12246]: Database connection successful -- 16:11:01.103 INFO [12246]: _SERVER found -- 16:11:01.103 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 16:11:01.103 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:11:01.103 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:11:01.103 INFO [12246]: QUERY_STRING = /assets/customjs/general.js -- 16:11:01.103 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:11:01.114 INFO [12246]: COREGRADE is stopping... -- 16:11:01.114 DEBUG [12246]: Closing database connection -- 16:11:01.114 SQL [12246]: pgsql_close() -- 16:11:01.150 INFO [12247]: COREGRADE is starting... -- 16:11:01.150 INFO [12247]: Version from config: 1.0 -- 16:11:01.150 DEBUG [12247]: Connecting to database... -- 16:11:01.150 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:01.150 SQL [12247]: pgsql_db_connect() -- 16:11:01.155 DEBUG [12247]: Database connection successful -- 16:11:01.155 INFO [12247]: _SERVER found -- 16:11:01.155 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 16:11:01.155 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:11:01.155 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:11:01.155 INFO [12247]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 16:11:01.155 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:11:01.166 INFO [12247]: COREGRADE is stopping... -- 16:11:01.166 DEBUG [12247]: Closing database connection -- 16:11:01.166 SQL [12247]: pgsql_close() -- 16:11:01.250 INFO [12247]: COREGRADE is starting... -- 16:11:01.250 INFO [12247]: Version from config: 1.0 -- 16:11:01.250 DEBUG [12247]: Connecting to database... -- 16:11:01.250 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:01.250 SQL [12247]: pgsql_db_connect() -- 16:11:01.255 DEBUG [12247]: Database connection successful -- 16:11:01.255 INFO [12247]: _SERVER found -- 16:11:01.255 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 16:11:01.255 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:11:01.255 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:11:01.255 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 16:11:01.255 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:11:01.266 INFO [12247]: COREGRADE is stopping... -- 16:11:01.266 DEBUG [12247]: Closing database connection -- 16:11:01.266 SQL [12247]: pgsql_close() -- 16:11:01.351 INFO [12247]: COREGRADE is starting... -- 16:11:01.351 INFO [12247]: Version from config: 1.0 -- 16:11:01.351 DEBUG [12247]: Connecting to database... -- 16:11:01.351 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:01.351 SQL [12247]: pgsql_db_connect() -- 16:11:01.355 DEBUG [12247]: Database connection successful -- 16:11:01.355 INFO [12247]: _SERVER found -- 16:11:01.355 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 16:11:01.355 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:11:01.355 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:11:01.355 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 16:11:01.355 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:11:01.367 INFO [12247]: COREGRADE is stopping... -- 16:11:01.367 DEBUG [12247]: Closing database connection -- 16:11:01.367 SQL [12247]: pgsql_close() -- 16:11:01.737 INFO [12247]: COREGRADE is starting... -- 16:11:01.737 INFO [12247]: Version from config: 1.0 -- 16:11:01.737 DEBUG [12247]: Connecting to database... -- 16:11:01.737 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:01.737 SQL [12247]: pgsql_db_connect() -- 16:11:01.741 DEBUG [12247]: Database connection successful -- 16:11:01.741 INFO [12247]: _SERVER found -- 16:11:01.741 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 16:11:01.741 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:11:01.741 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:11:01.741 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 16:11:01.741 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:11:01.752 INFO [12247]: COREGRADE is stopping... -- 16:11:01.753 DEBUG [12247]: Closing database connection -- 16:11:01.753 SQL [12247]: pgsql_close() -- 16:11:01.838 INFO [12247]: COREGRADE is starting... -- 16:11:01.838 INFO [12247]: Version from config: 1.0 -- 16:11:01.838 DEBUG [12247]: Connecting to database... -- 16:11:01.838 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:01.838 SQL [12247]: pgsql_db_connect() -- 16:11:01.842 DEBUG [12247]: Database connection successful -- 16:11:01.842 INFO [12247]: _SERVER found -- 16:11:01.842 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 16:11:01.842 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:11:01.842 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:11:01.842 INFO [12247]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 16:11:01.842 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:11:01.854 INFO [12247]: COREGRADE is stopping... -- 16:11:01.854 DEBUG [12247]: Closing database connection -- 16:11:01.854 SQL [12247]: pgsql_close() -- 16:11:02.510 INFO [12247]: COREGRADE is starting... -- 16:11:02.510 INFO [12247]: Version from config: 1.0 -- 16:11:02.510 DEBUG [12247]: Connecting to database... -- 16:11:02.510 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:02.510 SQL [12247]: pgsql_db_connect() -- 16:11:02.515 DEBUG [12247]: Database connection successful -- 16:11:02.515 INFO [12247]: _SERVER found -- 16:11:02.515 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 16:11:02.515 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:11:02.515 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:11:02.515 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 16:11:02.515 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:11:02.526 INFO [12247]: COREGRADE is stopping... -- 16:11:02.526 DEBUG [12247]: Closing database connection -- 16:11:02.526 SQL [12247]: pgsql_close() -- 16:11:02.611 INFO [12247]: COREGRADE is starting... -- 16:11:02.611 INFO [12247]: Version from config: 1.0 -- 16:11:02.611 DEBUG [12247]: Connecting to database... -- 16:11:02.611 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:02.611 SQL [12247]: pgsql_db_connect() -- 16:11:02.615 DEBUG [12247]: Database connection successful -- 16:11:02.615 INFO [12247]: _SERVER found -- 16:11:02.615 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 16:11:02.615 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:11:02.615 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:11:02.615 INFO [12247]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 16:11:02.615 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:11:02.627 INFO [12247]: COREGRADE is stopping... -- 16:11:02.627 DEBUG [12247]: Closing database connection -- 16:11:02.627 SQL [12247]: pgsql_close() -- 16:11:03.283 INFO [12247]: COREGRADE is starting... -- 16:11:03.283 INFO [12247]: Version from config: 1.0 -- 16:11:03.283 DEBUG [12247]: Connecting to database... -- 16:11:03.283 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:03.283 SQL [12247]: pgsql_db_connect() -- 16:11:03.287 DEBUG [12247]: Database connection successful -- 16:11:03.287 INFO [12247]: _SERVER found -- 16:11:03.287 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 16:11:03.287 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:11:03.287 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:11:03.287 INFO [12247]: QUERY_STRING = /assets/js/pages/dashboard.js -- 16:11:03.287 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:11:03.299 INFO [12247]: COREGRADE is stopping... -- 16:11:03.299 DEBUG [12247]: Closing database connection -- 16:11:03.299 SQL [12247]: pgsql_close() -- 16:11:03.383 INFO [12247]: COREGRADE is starting... -- 16:11:03.384 INFO [12247]: Version from config: 1.0 -- 16:11:03.384 DEBUG [12247]: Connecting to database... -- 16:11:03.384 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:03.384 SQL [12247]: pgsql_db_connect() -- 16:11:03.388 DEBUG [12247]: Database connection successful -- 16:11:03.388 INFO [12247]: _SERVER found -- 16:11:03.388 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 16:11:03.388 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:11:03.388 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:11:03.388 INFO [12247]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 16:11:03.388 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:11:03.399 INFO [12247]: COREGRADE is stopping... -- 16:11:03.399 DEBUG [12247]: Closing database connection -- 16:11:03.399 SQL [12247]: pgsql_close() -- 16:11:03.768 INFO [12247]: COREGRADE is starting... -- 16:11:03.769 INFO [12247]: Version from config: 1.0 -- 16:11:03.769 DEBUG [12247]: Connecting to database... -- 16:11:03.769 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:03.769 SQL [12247]: pgsql_db_connect() -- 16:11:03.773 DEBUG [12247]: Database connection successful -- 16:11:03.773 INFO [12247]: _SERVER found -- 16:11:03.773 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 16:11:03.773 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:11:03.773 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:11:03.773 INFO [12247]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 16:11:03.773 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:11:03.784 INFO [12247]: COREGRADE is stopping... -- 16:11:03.784 DEBUG [12247]: Closing database connection -- 16:11:03.784 SQL [12247]: pgsql_close() -- 16:11:03.869 INFO [12247]: COREGRADE is starting... -- 16:11:03.869 INFO [12247]: Version from config: 1.0 -- 16:11:03.869 DEBUG [12247]: Connecting to database... -- 16:11:03.869 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:03.869 SQL [12247]: pgsql_db_connect() -- 16:11:03.873 DEBUG [12247]: Database connection successful -- 16:11:03.873 INFO [12247]: _SERVER found -- 16:11:03.873 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 16:11:03.873 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:11:03.873 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:11:03.873 INFO [12247]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 16:11:03.873 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:11:03.885 INFO [12247]: COREGRADE is stopping... -- 16:11:03.885 DEBUG [12247]: Closing database connection -- 16:11:03.885 SQL [12247]: pgsql_close() -- 16:11:03.971 INFO [12247]: COREGRADE is starting... -- 16:11:03.972 INFO [12247]: Version from config: 1.0 -- 16:11:03.972 DEBUG [12247]: Connecting to database... -- 16:11:03.972 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:03.972 SQL [12247]: pgsql_db_connect() -- 16:11:03.976 DEBUG [12247]: Database connection successful -- 16:11:03.976 INFO [12247]: _SERVER found -- 16:11:03.976 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 16:11:03.976 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:11:03.976 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:11:03.976 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 16:11:03.976 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:11:03.988 INFO [12247]: COREGRADE is stopping... -- 16:11:03.988 DEBUG [12247]: Closing database connection -- 16:11:03.988 SQL [12247]: pgsql_close() -- 16:11:04.072 INFO [12247]: COREGRADE is starting... -- 16:11:04.073 INFO [12247]: Version from config: 1.0 -- 16:11:04.073 DEBUG [12247]: Connecting to database... -- 16:11:04.073 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:04.073 SQL [12247]: pgsql_db_connect() -- 16:11:04.077 DEBUG [12247]: Database connection successful -- 16:11:04.077 INFO [12247]: _SERVER found -- 16:11:04.077 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 16:11:04.077 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:11:04.077 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:11:04.077 INFO [12247]: QUERY_STRING = /assets/js/pages/picker_date.js -- 16:11:04.077 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:11:04.088 INFO [12247]: COREGRADE is stopping... -- 16:11:04.088 DEBUG [12247]: Closing database connection -- 16:11:04.088 SQL [12247]: pgsql_close() -- 16:11:04.174 INFO [12247]: COREGRADE is starting... -- 16:11:04.174 INFO [12247]: Version from config: 1.0 -- 16:11:04.174 DEBUG [12247]: Connecting to database... -- 16:11:04.174 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:04.174 SQL [12247]: pgsql_db_connect() -- 16:11:04.179 DEBUG [12247]: Database connection successful -- 16:11:04.179 INFO [12247]: _SERVER found -- 16:11:04.179 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 16:11:04.179 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:11:04.179 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:11:04.179 INFO [12247]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 16:11:04.179 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:11:04.190 INFO [12247]: COREGRADE is stopping... -- 16:11:04.190 DEBUG [12247]: Closing database connection -- 16:11:04.190 SQL [12247]: pgsql_close() -- 16:11:04.275 INFO [12247]: COREGRADE is starting... -- 16:11:04.276 INFO [12247]: Version from config: 1.0 -- 16:11:04.276 DEBUG [12247]: Connecting to database... -- 16:11:04.276 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:04.276 SQL [12247]: pgsql_db_connect() -- 16:11:04.280 DEBUG [12247]: Database connection successful -- 16:11:04.280 INFO [12247]: _SERVER found -- 16:11:04.280 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 16:11:04.280 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:11:04.280 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:11:04.280 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 16:11:04.280 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:11:04.291 INFO [12247]: COREGRADE is stopping... -- 16:11:04.291 DEBUG [12247]: Closing database connection -- 16:11:04.291 SQL [12247]: pgsql_close() -- 16:11:04.377 INFO [12247]: COREGRADE is starting... -- 16:11:04.377 INFO [12247]: Version from config: 1.0 -- 16:11:04.377 DEBUG [12247]: Connecting to database... -- 16:11:04.377 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:04.377 SQL [12247]: pgsql_db_connect() -- 16:11:04.381 DEBUG [12247]: Database connection successful -- 16:11:04.381 INFO [12247]: _SERVER found -- 16:11:04.381 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 16:11:04.381 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:11:04.381 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:11:04.381 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 16:11:04.381 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:11:04.393 INFO [12247]: COREGRADE is stopping... -- 16:11:04.393 DEBUG [12247]: Closing database connection -- 16:11:04.393 SQL [12247]: pgsql_close() -- 16:11:04.478 INFO [12247]: COREGRADE is starting... -- 16:11:04.478 INFO [12247]: Version from config: 1.0 -- 16:11:04.478 DEBUG [12247]: Connecting to database... -- 16:11:04.478 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:04.478 SQL [12247]: pgsql_db_connect() -- 16:11:04.482 DEBUG [12247]: Database connection successful -- 16:11:04.482 INFO [12247]: _SERVER found -- 16:11:04.482 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 16:11:04.482 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:11:04.482 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:11:04.482 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 16:11:04.482 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:11:04.493 INFO [12247]: COREGRADE is stopping... -- 16:11:04.493 DEBUG [12247]: Closing database connection -- 16:11:04.493 SQL [12247]: pgsql_close() -- 16:11:05.147 INFO [12247]: COREGRADE is starting... -- 16:11:05.148 INFO [12247]: Version from config: 1.0 -- 16:11:05.148 DEBUG [12247]: Connecting to database... -- 16:11:05.148 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:05.148 SQL [12247]: pgsql_db_connect() -- 16:11:05.152 DEBUG [12247]: Database connection successful -- 16:11:05.152 INFO [12247]: _SERVER found -- 16:11:05.152 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 16:11:05.152 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:11:05.152 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:11:05.152 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 16:11:05.152 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:11:05.164 INFO [12247]: COREGRADE is stopping... -- 16:11:05.164 DEBUG [12247]: Closing database connection -- 16:11:05.164 SQL [12247]: pgsql_close() -- 16:11:05.259 INFO [12247]: COREGRADE is starting... -- 16:11:05.260 INFO [12247]: Version from config: 1.0 -- 16:11:05.260 DEBUG [12247]: Connecting to database... -- 16:11:05.260 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:05.260 SQL [12247]: pgsql_db_connect() -- 16:11:05.264 DEBUG [12247]: Database connection successful -- 16:11:05.264 INFO [12247]: _SERVER found -- 16:11:05.264 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 16:11:05.264 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:11:05.264 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:11:05.264 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 16:11:05.264 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:11:05.275 INFO [12247]: COREGRADE is stopping... -- 16:11:05.275 DEBUG [12247]: Closing database connection -- 16:11:05.275 SQL [12247]: pgsql_close() -- 16:11:05.360 INFO [12247]: COREGRADE is starting... -- 16:11:05.360 INFO [12247]: Version from config: 1.0 -- 16:11:05.360 DEBUG [12247]: Connecting to database... -- 16:11:05.360 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:05.360 SQL [12247]: pgsql_db_connect() -- 16:11:05.364 DEBUG [12247]: Database connection successful -- 16:11:05.364 INFO [12247]: _SERVER found -- 16:11:05.364 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 16:11:05.364 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:11:05.364 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:11:05.364 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 16:11:05.364 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:11:05.375 INFO [12247]: COREGRADE is stopping... -- 16:11:05.375 DEBUG [12247]: Closing database connection -- 16:11:05.375 SQL [12247]: pgsql_close() -- 16:11:05.462 INFO [12247]: COREGRADE is starting... -- 16:11:05.462 INFO [12247]: Version from config: 1.0 -- 16:11:05.462 DEBUG [12247]: Connecting to database... -- 16:11:05.462 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:11:05.462 SQL [12247]: pgsql_db_connect() -- 16:11:05.466 DEBUG [12247]: Database connection successful -- 16:11:05.466 INFO [12247]: _SERVER found -- 16:11:05.466 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 16:11:05.466 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:11:05.466 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:11:05.466 INFO [12247]: QUERY_STRING = /assets/customjs/general.js -- 16:11:05.466 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:11:05.477 INFO [12247]: COREGRADE is stopping... -- 16:11:05.477 DEBUG [12247]: Closing database connection -- 16:11:05.477 SQL [12247]: pgsql_close() -- 16:29:35.035 INFO [12334]: COREGRADE is starting... -- 16:29:35.036 INFO [12334]: Version from config: 1.0 -- 16:29:35.036 DEBUG [12334]: Connecting to database... -- 16:29:35.036 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:29:35.036 SQL [12334]: pgsql_db_connect() -- 16:29:35.041 DEBUG [12334]: Database connection successful -- 16:29:35.041 INFO [12334]: _SERVER found -- 16:29:35.041 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:29:35.041 INFO [12334]: SERVER_NAME = oameye.works.coregrade.com -- 16:29:35.041 INFO [12334]: QUERY_STRING = /robots.txt -- 16:29:35.041 INFO [12334]: HTTP_X_FORWARDED_FOR = 66.249.70.88 -- 16:29:35.055 INFO [12334]: COREGRADE is stopping... -- 16:29:35.055 DEBUG [12334]: Closing database connection -- 16:29:35.055 SQL [12334]: pgsql_close() -- 16:29:35.151 INFO [12248]: COREGRADE is starting... -- 16:29:35.152 INFO [12248]: Version from config: 1.0 -- 16:29:35.152 DEBUG [12248]: Connecting to database... -- 16:29:35.152 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:29:35.152 SQL [12248]: pgsql_db_connect() -- 16:29:35.156 DEBUG [12248]: Database connection successful -- 16:29:35.156 INFO [12248]: _SERVER found -- 16:29:35.156 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 16:29:35.156 INFO [12248]: SERVER_NAME = oameye.works.coregrade.com -- 16:29:35.156 INFO [12248]: QUERY_STRING = -- 16:29:35.156 INFO [12248]: HTTP_X_FORWARDED_FOR = 66.249.70.84 -- 16:29:35.192 INFO [12248]: COREGRADE is stopping... -- 16:29:35.192 DEBUG [12248]: Closing database connection -- 16:29:35.192 SQL [12248]: pgsql_close() -- 16:29:50.952 INFO [12249]: COREGRADE is starting... -- 16:29:50.952 INFO [12249]: Version from config: 1.0 -- 16:29:50.952 DEBUG [12249]: Connecting to database... -- 16:29:50.952 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:29:50.952 SQL [12249]: pgsql_db_connect() -- 16:29:50.957 DEBUG [12249]: Database connection successful -- 16:29:50.957 INFO [12249]: _SERVER found -- 16:29:50.957 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 16:29:50.957 INFO [12249]: SERVER_NAME = oameye.works.coregrade.com -- 16:29:50.957 INFO [12249]: QUERY_STRING = /favicon.ico -- 16:29:50.957 INFO [12249]: HTTP_X_FORWARDED_FOR = 66.249.70.84 -- 16:29:50.969 INFO [12249]: COREGRADE is stopping... -- 16:29:50.969 DEBUG [12249]: Closing database connection -- 16:29:50.969 SQL [12249]: pgsql_close() -- 16:31:06.736 INFO [12250]: COREGRADE is starting... -- 16:31:06.737 INFO [12250]: Version from config: 1.0 -- 16:31:06.737 DEBUG [12250]: Connecting to database... -- 16:31:06.737 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:06.737 SQL [12250]: pgsql_db_connect() -- 16:31:06.741 DEBUG [12250]: Database connection successful -- 16:31:06.741 INFO [12250]: _SERVER found -- 16:31:06.741 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 16:31:06.741 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:06.741 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=n7mv7vace43iu2e6jvdhfckmalilhv44 -- 16:31:06.741 INFO [12250]: QUERY_STRING = /logout -- 16:31:06.741 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:06.773 INFO [12250]: COREGRADE is stopping... -- 16:31:06.773 DEBUG [12250]: Closing database connection -- 16:31:06.773 SQL [12250]: pgsql_close() -- 16:31:06.871 INFO [12250]: COREGRADE is starting... -- 16:31:06.871 INFO [12250]: Version from config: 1.0 -- 16:31:06.871 DEBUG [12250]: Connecting to database... -- 16:31:06.871 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:06.871 SQL [12250]: pgsql_db_connect() -- 16:31:06.875 DEBUG [12250]: Database connection successful -- 16:31:06.875 INFO [12250]: _SERVER found -- 16:31:06.875 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 16:31:06.875 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:06.875 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:06.875 INFO [12250]: QUERY_STRING = /start -- 16:31:06.875 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:06.909 INFO [12250]: COREGRADE is stopping... -- 16:31:06.909 DEBUG [12250]: Closing database connection -- 16:31:06.909 SQL [12250]: pgsql_close() -- 16:31:08.257 INFO [12347]: COREGRADE is starting... -- 16:31:08.257 INFO [12347]: Version from config: 1.0 -- 16:31:08.257 DEBUG [12347]: Connecting to database... -- 16:31:08.257 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:08.257 SQL [12347]: pgsql_db_connect() -- 16:31:08.262 DEBUG [12347]: Database connection successful -- 16:31:08.262 INFO [12347]: _SERVER found -- 16:31:08.262 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 16:31:08.262 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:08.262 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:08.262 INFO [12347]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 16:31:08.262 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:08.275 INFO [12347]: COREGRADE is stopping... -- 16:31:08.275 DEBUG [12347]: Closing database connection -- 16:31:08.275 SQL [12347]: pgsql_close() -- 16:31:08.349 INFO [12305]: COREGRADE is starting... -- 16:31:08.349 INFO [12305]: Version from config: 1.0 -- 16:31:08.349 DEBUG [12305]: Connecting to database... -- 16:31:08.349 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:08.349 SQL [12305]: pgsql_db_connect() -- 16:31:08.353 DEBUG [12305]: Database connection successful -- 16:31:08.353 INFO [12305]: _SERVER found -- 16:31:08.353 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 16:31:08.353 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:08.353 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:08.353 INFO [12305]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 16:31:08.353 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:08.365 INFO [12305]: COREGRADE is stopping... -- 16:31:08.365 DEBUG [12305]: Closing database connection -- 16:31:08.365 SQL [12305]: pgsql_close() -- 16:31:08.460 INFO [12305]: COREGRADE is starting... -- 16:31:08.460 INFO [12305]: Version from config: 1.0 -- 16:31:08.460 DEBUG [12305]: Connecting to database... -- 16:31:08.460 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:08.460 SQL [12305]: pgsql_db_connect() -- 16:31:08.464 DEBUG [12305]: Database connection successful -- 16:31:08.464 INFO [12305]: _SERVER found -- 16:31:08.464 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 16:31:08.464 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:08.464 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:08.464 INFO [12305]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 16:31:08.464 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:08.476 INFO [12305]: COREGRADE is stopping... -- 16:31:08.476 DEBUG [12305]: Closing database connection -- 16:31:08.476 SQL [12305]: pgsql_close() -- 16:31:08.850 INFO [12305]: COREGRADE is starting... -- 16:31:08.850 INFO [12305]: Version from config: 1.0 -- 16:31:08.850 DEBUG [12305]: Connecting to database... -- 16:31:08.850 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:08.850 SQL [12305]: pgsql_db_connect() -- 16:31:08.854 DEBUG [12305]: Database connection successful -- 16:31:08.854 INFO [12305]: _SERVER found -- 16:31:08.854 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 16:31:08.854 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:08.854 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:08.854 INFO [12305]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 16:31:08.854 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:08.866 INFO [12305]: COREGRADE is stopping... -- 16:31:08.866 DEBUG [12305]: Closing database connection -- 16:31:08.866 SQL [12305]: pgsql_close() -- 16:31:08.949 INFO [12305]: COREGRADE is starting... -- 16:31:08.950 INFO [12305]: Version from config: 1.0 -- 16:31:08.950 DEBUG [12305]: Connecting to database... -- 16:31:08.950 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:08.950 SQL [12305]: pgsql_db_connect() -- 16:31:08.955 INFO [12347]: COREGRADE is starting... -- 16:31:08.955 INFO [12347]: Version from config: 1.0 -- 16:31:08.955 DEBUG [12347]: Connecting to database... -- 16:31:08.955 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:08.955 SQL [12347]: pgsql_db_connect() -- 16:31:08.954 DEBUG [12305]: Database connection successful -- 16:31:08.954 INFO [12305]: _SERVER found -- 16:31:08.954 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 16:31:08.954 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:08.954 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:08.954 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 16:31:08.954 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:08.965 INFO [12305]: COREGRADE is stopping... -- 16:31:08.965 DEBUG [12305]: Closing database connection -- 16:31:08.966 SQL [12305]: pgsql_close() -- 16:31:08.959 DEBUG [12347]: Database connection successful -- 16:31:08.959 INFO [12347]: _SERVER found -- 16:31:08.959 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 16:31:08.959 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:08.959 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:08.959 INFO [12347]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 16:31:08.959 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:08.970 INFO [12347]: COREGRADE is stopping... -- 16:31:08.970 DEBUG [12347]: Closing database connection -- 16:31:08.970 SQL [12347]: pgsql_close() -- 16:31:08.977 INFO [25055]: COREGRADE is starting... -- 16:31:08.977 INFO [25055]: Version from config: 1.0 -- 16:31:08.977 DEBUG [25055]: Connecting to database... -- 16:31:08.977 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:08.977 SQL [25055]: pgsql_db_connect() -- 16:31:08.981 DEBUG [25055]: Database connection successful -- 16:31:08.981 INFO [25055]: _SERVER found -- 16:31:08.981 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:31:08.981 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:08.981 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:08.981 INFO [25055]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 16:31:08.981 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:08.993 INFO [25055]: COREGRADE is stopping... -- 16:31:08.993 DEBUG [25055]: Closing database connection -- 16:31:08.993 SQL [25055]: pgsql_close() -- 16:31:09.339 INFO [12305]: COREGRADE is starting... -- 16:31:09.339 INFO [12305]: Version from config: 1.0 -- 16:31:09.339 DEBUG [12305]: Connecting to database... -- 16:31:09.339 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:09.339 SQL [12305]: pgsql_db_connect() -- 16:31:09.343 DEBUG [12305]: Database connection successful -- 16:31:09.343 INFO [12305]: _SERVER found -- 16:31:09.343 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 16:31:09.343 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:09.343 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:09.343 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 16:31:09.343 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:09.355 INFO [12305]: COREGRADE is stopping... -- 16:31:09.355 DEBUG [12305]: Closing database connection -- 16:31:09.355 SQL [12305]: pgsql_close() -- 16:31:09.379 INFO [25055]: COREGRADE is starting... -- 16:31:09.379 INFO [25055]: Version from config: 1.0 -- 16:31:09.379 DEBUG [25055]: Connecting to database... -- 16:31:09.379 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:09.379 SQL [25055]: pgsql_db_connect() -- 16:31:09.383 DEBUG [25055]: Database connection successful -- 16:31:09.383 INFO [25055]: _SERVER found -- 16:31:09.383 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:31:09.383 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:09.383 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:09.383 INFO [25055]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 16:31:09.383 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:09.395 INFO [25055]: COREGRADE is stopping... -- 16:31:09.395 DEBUG [25055]: Closing database connection -- 16:31:09.395 SQL [25055]: pgsql_close() -- 16:31:09.439 INFO [12305]: COREGRADE is starting... -- 16:31:09.439 INFO [12305]: Version from config: 1.0 -- 16:31:09.439 DEBUG [12305]: Connecting to database... -- 16:31:09.439 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:09.439 SQL [12305]: pgsql_db_connect() -- 16:31:09.443 DEBUG [12305]: Database connection successful -- 16:31:09.443 INFO [12305]: _SERVER found -- 16:31:09.443 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 16:31:09.443 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:09.443 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:09.443 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 16:31:09.443 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:09.455 INFO [12305]: COREGRADE is stopping... -- 16:31:09.455 DEBUG [12305]: Closing database connection -- 16:31:09.455 SQL [12305]: pgsql_close() -- 16:31:09.491 INFO [25055]: COREGRADE is starting... -- 16:31:09.492 INFO [25055]: Version from config: 1.0 -- 16:31:09.492 DEBUG [25055]: Connecting to database... -- 16:31:09.492 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:09.492 SQL [25055]: pgsql_db_connect() -- 16:31:09.496 DEBUG [25055]: Database connection successful -- 16:31:09.496 INFO [25055]: _SERVER found -- 16:31:09.496 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:31:09.496 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:09.496 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:09.496 INFO [25055]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 16:31:09.496 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:09.507 INFO [25055]: COREGRADE is stopping... -- 16:31:09.507 DEBUG [25055]: Closing database connection -- 16:31:09.507 SQL [25055]: pgsql_close() -- 16:31:09.539 INFO [12305]: COREGRADE is starting... -- 16:31:09.539 INFO [12305]: Version from config: 1.0 -- 16:31:09.539 DEBUG [12305]: Connecting to database... -- 16:31:09.539 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:09.539 SQL [12305]: pgsql_db_connect() -- 16:31:09.543 DEBUG [12305]: Database connection successful -- 16:31:09.543 INFO [12305]: _SERVER found -- 16:31:09.543 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 16:31:09.543 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:09.543 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:09.543 INFO [12305]: QUERY_STRING = /assets/js/pages/dashboard.js -- 16:31:09.543 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:09.555 INFO [12305]: COREGRADE is stopping... -- 16:31:09.555 DEBUG [12305]: Closing database connection -- 16:31:09.555 SQL [12305]: pgsql_close() -- 16:31:09.593 INFO [25055]: COREGRADE is starting... -- 16:31:09.593 INFO [25055]: Version from config: 1.0 -- 16:31:09.593 DEBUG [25055]: Connecting to database... -- 16:31:09.593 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:09.593 SQL [25055]: pgsql_db_connect() -- 16:31:09.597 DEBUG [25055]: Database connection successful -- 16:31:09.597 INFO [25055]: _SERVER found -- 16:31:09.597 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:31:09.597 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:09.597 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:09.597 INFO [25055]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 16:31:09.597 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:09.609 INFO [25055]: COREGRADE is stopping... -- 16:31:09.609 DEBUG [25055]: Closing database connection -- 16:31:09.609 SQL [25055]: pgsql_close() -- 16:31:09.638 INFO [12305]: COREGRADE is starting... -- 16:31:09.638 INFO [12305]: Version from config: 1.0 -- 16:31:09.638 DEBUG [12305]: Connecting to database... -- 16:31:09.638 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:09.639 SQL [12305]: pgsql_db_connect() -- 16:31:09.643 DEBUG [12305]: Database connection successful -- 16:31:09.643 INFO [12305]: _SERVER found -- 16:31:09.643 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 16:31:09.643 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:09.643 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:09.643 INFO [12305]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 16:31:09.643 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:09.654 INFO [12305]: COREGRADE is stopping... -- 16:31:09.654 DEBUG [12305]: Closing database connection -- 16:31:09.654 SQL [12305]: pgsql_close() -- 16:31:09.740 INFO [12305]: COREGRADE is starting... -- 16:31:09.740 INFO [12305]: Version from config: 1.0 -- 16:31:09.740 DEBUG [12305]: Connecting to database... -- 16:31:09.740 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:09.740 SQL [12305]: pgsql_db_connect() -- 16:31:09.744 DEBUG [12305]: Database connection successful -- 16:31:09.744 INFO [12305]: _SERVER found -- 16:31:09.744 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 16:31:09.744 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:09.744 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:09.744 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 16:31:09.744 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:09.756 INFO [12305]: COREGRADE is stopping... -- 16:31:09.756 DEBUG [12305]: Closing database connection -- 16:31:09.756 SQL [12305]: pgsql_close() -- 16:31:09.841 INFO [12305]: COREGRADE is starting... -- 16:31:09.842 INFO [12305]: Version from config: 1.0 -- 16:31:09.842 DEBUG [12305]: Connecting to database... -- 16:31:09.842 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:09.842 SQL [12305]: pgsql_db_connect() -- 16:31:09.846 DEBUG [12305]: Database connection successful -- 16:31:09.846 INFO [12305]: _SERVER found -- 16:31:09.846 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 16:31:09.846 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:09.846 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:09.846 INFO [12305]: QUERY_STRING = /assets/js/pages/picker_date.js -- 16:31:09.846 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:09.857 INFO [12305]: COREGRADE is stopping... -- 16:31:09.857 DEBUG [12305]: Closing database connection -- 16:31:09.857 SQL [12305]: pgsql_close() -- 16:31:09.943 INFO [12305]: COREGRADE is starting... -- 16:31:09.943 INFO [12305]: Version from config: 1.0 -- 16:31:09.943 DEBUG [12305]: Connecting to database... -- 16:31:09.943 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:09.943 SQL [12305]: pgsql_db_connect() -- 16:31:09.947 DEBUG [12305]: Database connection successful -- 16:31:09.947 INFO [12305]: _SERVER found -- 16:31:09.947 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 16:31:09.947 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:09.947 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:09.947 INFO [12305]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 16:31:09.947 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:09.958 INFO [12305]: COREGRADE is stopping... -- 16:31:09.958 DEBUG [12305]: Closing database connection -- 16:31:09.958 SQL [12305]: pgsql_close() -- 16:31:09.980 INFO [12347]: COREGRADE is starting... -- 16:31:09.980 INFO [12347]: Version from config: 1.0 -- 16:31:09.980 DEBUG [12347]: Connecting to database... -- 16:31:09.980 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:09.980 SQL [12347]: pgsql_db_connect() -- 16:31:09.985 INFO [25055]: COREGRADE is starting... -- 16:31:09.985 INFO [25055]: Version from config: 1.0 -- 16:31:09.985 DEBUG [25055]: Connecting to database... -- 16:31:09.985 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:09.985 SQL [25055]: pgsql_db_connect() -- 16:31:09.984 DEBUG [12347]: Database connection successful -- 16:31:09.984 INFO [12347]: _SERVER found -- 16:31:09.984 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 16:31:09.984 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:09.984 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:09.984 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 16:31:09.984 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:09.995 INFO [12347]: COREGRADE is stopping... -- 16:31:09.995 DEBUG [12347]: Closing database connection -- 16:31:09.995 SQL [12347]: pgsql_close() -- 16:31:09.989 DEBUG [25055]: Database connection successful -- 16:31:09.989 INFO [25055]: _SERVER found -- 16:31:09.989 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:31:09.989 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:09.989 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:09.989 INFO [25055]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 16:31:09.989 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:10.000 INFO [25055]: COREGRADE is stopping... -- 16:31:10.000 DEBUG [25055]: Closing database connection -- 16:31:10.001 SQL [25055]: pgsql_close() -- 16:31:10.044 INFO [12305]: COREGRADE is starting... -- 16:31:10.044 INFO [12305]: Version from config: 1.0 -- 16:31:10.044 DEBUG [12305]: Connecting to database... -- 16:31:10.044 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:10.044 SQL [12305]: pgsql_db_connect() -- 16:31:10.048 DEBUG [12305]: Database connection successful -- 16:31:10.048 INFO [12305]: _SERVER found -- 16:31:10.048 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 16:31:10.048 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:10.048 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:10.048 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 16:31:10.048 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:10.060 INFO [12305]: COREGRADE is stopping... -- 16:31:10.060 DEBUG [12305]: Closing database connection -- 16:31:10.060 SQL [12305]: pgsql_close() -- 16:31:10.082 INFO [12347]: COREGRADE is starting... -- 16:31:10.082 INFO [12347]: Version from config: 1.0 -- 16:31:10.082 DEBUG [12347]: Connecting to database... -- 16:31:10.082 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:10.082 SQL [12347]: pgsql_db_connect() -- 16:31:10.085 INFO [25055]: COREGRADE is starting... -- 16:31:10.085 INFO [25055]: Version from config: 1.0 -- 16:31:10.085 DEBUG [25055]: Connecting to database... -- 16:31:10.085 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:10.085 SQL [25055]: pgsql_db_connect() -- 16:31:10.086 DEBUG [12347]: Database connection successful -- 16:31:10.086 INFO [12347]: _SERVER found -- 16:31:10.086 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 16:31:10.086 INFO [12347]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:10.086 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:10.086 INFO [12347]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 16:31:10.086 INFO [12347]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:10.097 INFO [12347]: COREGRADE is stopping... -- 16:31:10.098 DEBUG [12347]: Closing database connection -- 16:31:10.098 SQL [12347]: pgsql_close() -- 16:31:10.089 DEBUG [25055]: Database connection successful -- 16:31:10.089 INFO [25055]: _SERVER found -- 16:31:10.089 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:31:10.089 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:10.089 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:10.089 INFO [25055]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 16:31:10.089 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:10.100 INFO [25055]: COREGRADE is stopping... -- 16:31:10.101 DEBUG [25055]: Closing database connection -- 16:31:10.101 SQL [25055]: pgsql_close() -- 16:31:10.184 INFO [25055]: COREGRADE is starting... -- 16:31:10.184 INFO [25055]: Version from config: 1.0 -- 16:31:10.184 DEBUG [25055]: Connecting to database... -- 16:31:10.184 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:10.184 SQL [25055]: pgsql_db_connect() -- 16:31:10.188 DEBUG [25055]: Database connection successful -- 16:31:10.188 INFO [25055]: _SERVER found -- 16:31:10.188 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:31:10.188 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:10.188 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:10.188 INFO [25055]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 16:31:10.188 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:10.200 INFO [25055]: COREGRADE is stopping... -- 16:31:10.200 DEBUG [25055]: Closing database connection -- 16:31:10.200 SQL [25055]: pgsql_close() -- 16:31:10.284 INFO [25055]: COREGRADE is starting... -- 16:31:10.284 INFO [25055]: Version from config: 1.0 -- 16:31:10.284 DEBUG [25055]: Connecting to database... -- 16:31:10.284 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:10.284 SQL [25055]: pgsql_db_connect() -- 16:31:10.288 DEBUG [25055]: Database connection successful -- 16:31:10.288 INFO [25055]: _SERVER found -- 16:31:10.288 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:31:10.288 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:10.288 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:10.288 INFO [25055]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 16:31:10.288 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:10.300 INFO [25055]: COREGRADE is stopping... -- 16:31:10.300 DEBUG [25055]: Closing database connection -- 16:31:10.300 SQL [25055]: pgsql_close() -- 16:31:10.429 INFO [12305]: COREGRADE is starting... -- 16:31:10.429 INFO [12305]: Version from config: 1.0 -- 16:31:10.429 DEBUG [12305]: Connecting to database... -- 16:31:10.429 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:10.429 SQL [12305]: pgsql_db_connect() -- 16:31:10.433 DEBUG [12305]: Database connection successful -- 16:31:10.433 INFO [12305]: _SERVER found -- 16:31:10.433 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 16:31:10.433 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:10.433 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:10.433 INFO [12305]: QUERY_STRING = /assets/customjs/general.js -- 16:31:10.433 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:10.445 INFO [12305]: COREGRADE is stopping... -- 16:31:10.445 DEBUG [12305]: Closing database connection -- 16:31:10.445 SQL [12305]: pgsql_close() -- 16:31:10.673 INFO [25055]: COREGRADE is starting... -- 16:31:10.673 INFO [25055]: Version from config: 1.0 -- 16:31:10.673 DEBUG [25055]: Connecting to database... -- 16:31:10.673 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:10.673 SQL [25055]: pgsql_db_connect() -- 16:31:10.677 DEBUG [25055]: Database connection successful -- 16:31:10.677 INFO [25055]: _SERVER found -- 16:31:10.677 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:31:10.677 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:10.677 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:10.677 INFO [25055]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 16:31:10.677 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:10.688 INFO [25055]: COREGRADE is stopping... -- 16:31:10.688 DEBUG [25055]: Closing database connection -- 16:31:10.688 SQL [25055]: pgsql_close() -- 16:31:10.773 INFO [25055]: COREGRADE is starting... -- 16:31:10.773 INFO [25055]: Version from config: 1.0 -- 16:31:10.773 DEBUG [25055]: Connecting to database... -- 16:31:10.773 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:10.773 SQL [25055]: pgsql_db_connect() -- 16:31:10.777 DEBUG [25055]: Database connection successful -- 16:31:10.777 INFO [25055]: _SERVER found -- 16:31:10.777 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:31:10.777 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:10.777 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:10.777 INFO [25055]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 16:31:10.777 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:10.789 INFO [25055]: COREGRADE is stopping... -- 16:31:10.789 DEBUG [25055]: Closing database connection -- 16:31:10.789 SQL [25055]: pgsql_close() -- 16:31:10.874 INFO [25055]: COREGRADE is starting... -- 16:31:10.874 INFO [25055]: Version from config: 1.0 -- 16:31:10.874 DEBUG [25055]: Connecting to database... -- 16:31:10.874 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:10.874 SQL [25055]: pgsql_db_connect() -- 16:31:10.878 DEBUG [25055]: Database connection successful -- 16:31:10.878 INFO [25055]: _SERVER found -- 16:31:10.878 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:31:10.878 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:10.878 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:10.878 INFO [25055]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 16:31:10.878 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:10.889 INFO [25055]: COREGRADE is stopping... -- 16:31:10.889 DEBUG [25055]: Closing database connection -- 16:31:10.889 SQL [25055]: pgsql_close() -- 16:31:10.974 INFO [25055]: COREGRADE is starting... -- 16:31:10.974 INFO [25055]: Version from config: 1.0 -- 16:31:10.974 DEBUG [25055]: Connecting to database... -- 16:31:10.974 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:10.974 SQL [25055]: pgsql_db_connect() -- 16:31:10.978 DEBUG [25055]: Database connection successful -- 16:31:10.978 INFO [25055]: _SERVER found -- 16:31:10.978 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:31:10.978 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:10.978 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:10.978 INFO [25055]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 16:31:10.978 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:10.990 INFO [25055]: COREGRADE is stopping... -- 16:31:10.990 DEBUG [25055]: Closing database connection -- 16:31:10.990 SQL [25055]: pgsql_close() -- 16:31:11.074 INFO [25055]: COREGRADE is starting... -- 16:31:11.074 INFO [25055]: Version from config: 1.0 -- 16:31:11.074 DEBUG [25055]: Connecting to database... -- 16:31:11.074 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:11.074 SQL [25055]: pgsql_db_connect() -- 16:31:11.078 DEBUG [25055]: Database connection successful -- 16:31:11.078 INFO [25055]: _SERVER found -- 16:31:11.078 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:31:11.078 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:11.078 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:11.078 INFO [25055]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 16:31:11.078 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:11.090 INFO [25055]: COREGRADE is stopping... -- 16:31:11.090 DEBUG [25055]: Closing database connection -- 16:31:11.090 SQL [25055]: pgsql_close() -- 16:31:11.174 INFO [25055]: COREGRADE is starting... -- 16:31:11.174 INFO [25055]: Version from config: 1.0 -- 16:31:11.174 DEBUG [25055]: Connecting to database... -- 16:31:11.174 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:11.174 SQL [25055]: pgsql_db_connect() -- 16:31:11.178 DEBUG [25055]: Database connection successful -- 16:31:11.179 INFO [25055]: _SERVER found -- 16:31:11.179 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:31:11.179 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:11.179 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:11.179 INFO [25055]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 16:31:11.179 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:11.190 INFO [25055]: COREGRADE is stopping... -- 16:31:11.190 DEBUG [25055]: Closing database connection -- 16:31:11.190 SQL [25055]: pgsql_close() -- 16:31:11.275 INFO [25055]: COREGRADE is starting... -- 16:31:11.275 INFO [25055]: Version from config: 1.0 -- 16:31:11.275 DEBUG [25055]: Connecting to database... -- 16:31:11.275 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:11.275 SQL [25055]: pgsql_db_connect() -- 16:31:11.279 DEBUG [25055]: Database connection successful -- 16:31:11.279 INFO [25055]: _SERVER found -- 16:31:11.279 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:31:11.279 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:11.279 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:11.279 INFO [25055]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 16:31:11.279 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:11.291 INFO [25055]: COREGRADE is stopping... -- 16:31:11.291 DEBUG [25055]: Closing database connection -- 16:31:11.291 SQL [25055]: pgsql_close() -- 16:31:11.376 INFO [25055]: COREGRADE is starting... -- 16:31:11.376 INFO [25055]: Version from config: 1.0 -- 16:31:11.376 DEBUG [25055]: Connecting to database... -- 16:31:11.376 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:11.376 SQL [25055]: pgsql_db_connect() -- 16:31:11.380 DEBUG [25055]: Database connection successful -- 16:31:11.380 INFO [25055]: _SERVER found -- 16:31:11.380 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:31:11.380 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:11.380 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:11.380 INFO [25055]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 16:31:11.380 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:11.391 INFO [25055]: COREGRADE is stopping... -- 16:31:11.391 DEBUG [25055]: Closing database connection -- 16:31:11.391 SQL [25055]: pgsql_close() -- 16:31:11.476 INFO [25055]: COREGRADE is starting... -- 16:31:11.476 INFO [25055]: Version from config: 1.0 -- 16:31:11.477 DEBUG [25055]: Connecting to database... -- 16:31:11.477 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:11.477 SQL [25055]: pgsql_db_connect() -- 16:31:11.480 DEBUG [25055]: Database connection successful -- 16:31:11.481 INFO [25055]: _SERVER found -- 16:31:11.481 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:31:11.481 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:11.481 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:11.481 INFO [25055]: QUERY_STRING = /assets/js/pages/dashboard.js -- 16:31:11.481 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:11.492 INFO [25055]: COREGRADE is stopping... -- 16:31:11.492 DEBUG [25055]: Closing database connection -- 16:31:11.492 SQL [25055]: pgsql_close() -- 16:31:11.576 INFO [25055]: COREGRADE is starting... -- 16:31:11.576 INFO [25055]: Version from config: 1.0 -- 16:31:11.576 DEBUG [25055]: Connecting to database... -- 16:31:11.576 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:11.576 SQL [25055]: pgsql_db_connect() -- 16:31:11.580 DEBUG [25055]: Database connection successful -- 16:31:11.580 INFO [25055]: _SERVER found -- 16:31:11.580 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:31:11.580 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:11.580 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:11.580 INFO [25055]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 16:31:11.580 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:11.592 INFO [25055]: COREGRADE is stopping... -- 16:31:11.592 DEBUG [25055]: Closing database connection -- 16:31:11.592 SQL [25055]: pgsql_close() -- 16:31:11.961 INFO [25055]: COREGRADE is starting... -- 16:31:11.961 INFO [25055]: Version from config: 1.0 -- 16:31:11.961 DEBUG [25055]: Connecting to database... -- 16:31:11.961 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:11.961 SQL [25055]: pgsql_db_connect() -- 16:31:11.965 DEBUG [25055]: Database connection successful -- 16:31:11.965 INFO [25055]: _SERVER found -- 16:31:11.965 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:31:11.965 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:11.965 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:11.965 INFO [25055]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 16:31:11.965 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:11.977 INFO [25055]: COREGRADE is stopping... -- 16:31:11.977 DEBUG [25055]: Closing database connection -- 16:31:11.977 SQL [25055]: pgsql_close() -- 16:31:14.347 INFO [25055]: COREGRADE is starting... -- 16:31:14.348 INFO [25055]: Version from config: 1.0 -- 16:31:14.348 DEBUG [25055]: Connecting to database... -- 16:31:14.348 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:14.348 SQL [25055]: pgsql_db_connect() -- 16:31:14.352 DEBUG [25055]: Database connection successful -- 16:31:14.352 INFO [25055]: _SERVER found -- 16:31:14.352 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:31:14.352 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:14.352 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:14.352 INFO [25055]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 16:31:14.352 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:14.364 INFO [25055]: COREGRADE is stopping... -- 16:31:14.364 DEBUG [25055]: Closing database connection -- 16:31:14.364 SQL [25055]: pgsql_close() -- 16:31:14.447 INFO [25055]: COREGRADE is starting... -- 16:31:14.448 INFO [25055]: Version from config: 1.0 -- 16:31:14.448 DEBUG [25055]: Connecting to database... -- 16:31:14.448 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:14.448 SQL [25055]: pgsql_db_connect() -- 16:31:14.452 DEBUG [25055]: Database connection successful -- 16:31:14.452 INFO [25055]: _SERVER found -- 16:31:14.452 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:31:14.452 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:14.452 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:14.452 INFO [25055]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 16:31:14.452 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:14.463 INFO [25055]: COREGRADE is stopping... -- 16:31:14.463 DEBUG [25055]: Closing database connection -- 16:31:14.463 SQL [25055]: pgsql_close() -- 16:31:14.832 INFO [25055]: COREGRADE is starting... -- 16:31:14.833 INFO [25055]: Version from config: 1.0 -- 16:31:14.833 DEBUG [25055]: Connecting to database... -- 16:31:14.833 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:14.833 SQL [25055]: pgsql_db_connect() -- 16:31:14.837 DEBUG [25055]: Database connection successful -- 16:31:14.837 INFO [25055]: _SERVER found -- 16:31:14.837 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:31:14.837 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:14.837 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:14.837 INFO [25055]: QUERY_STRING = /assets/js/pages/picker_date.js -- 16:31:14.837 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:14.848 INFO [25055]: COREGRADE is stopping... -- 16:31:14.849 DEBUG [25055]: Closing database connection -- 16:31:14.849 SQL [25055]: pgsql_close() -- 16:31:14.933 INFO [25055]: COREGRADE is starting... -- 16:31:14.933 INFO [25055]: Version from config: 1.0 -- 16:31:14.933 DEBUG [25055]: Connecting to database... -- 16:31:14.933 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:14.933 SQL [25055]: pgsql_db_connect() -- 16:31:14.937 DEBUG [25055]: Database connection successful -- 16:31:14.937 INFO [25055]: _SERVER found -- 16:31:14.937 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:31:14.937 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:14.937 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:14.937 INFO [25055]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 16:31:14.937 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:14.949 INFO [25055]: COREGRADE is stopping... -- 16:31:14.949 DEBUG [25055]: Closing database connection -- 16:31:14.949 SQL [25055]: pgsql_close() -- 16:31:15.033 INFO [25055]: COREGRADE is starting... -- 16:31:15.033 INFO [25055]: Version from config: 1.0 -- 16:31:15.033 DEBUG [25055]: Connecting to database... -- 16:31:15.033 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:15.033 SQL [25055]: pgsql_db_connect() -- 16:31:15.037 DEBUG [25055]: Database connection successful -- 16:31:15.037 INFO [25055]: _SERVER found -- 16:31:15.037 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:31:15.037 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:15.037 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:15.037 INFO [25055]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 16:31:15.037 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:15.049 INFO [25055]: COREGRADE is stopping... -- 16:31:15.049 DEBUG [25055]: Closing database connection -- 16:31:15.049 SQL [25055]: pgsql_close() -- 16:31:15.418 INFO [25055]: COREGRADE is starting... -- 16:31:15.418 INFO [25055]: Version from config: 1.0 -- 16:31:15.418 DEBUG [25055]: Connecting to database... -- 16:31:15.418 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:15.418 SQL [25055]: pgsql_db_connect() -- 16:31:15.422 DEBUG [25055]: Database connection successful -- 16:31:15.422 INFO [25055]: _SERVER found -- 16:31:15.422 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:31:15.422 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:15.422 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:15.422 INFO [25055]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 16:31:15.422 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:15.434 INFO [25055]: COREGRADE is stopping... -- 16:31:15.434 DEBUG [25055]: Closing database connection -- 16:31:15.434 SQL [25055]: pgsql_close() -- 16:31:16.657 INFO [25055]: COREGRADE is starting... -- 16:31:16.657 INFO [25055]: Version from config: 1.0 -- 16:31:16.657 DEBUG [25055]: Connecting to database... -- 16:31:16.657 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:16.657 SQL [25055]: pgsql_db_connect() -- 16:31:16.661 DEBUG [25055]: Database connection successful -- 16:31:16.661 INFO [25055]: _SERVER found -- 16:31:16.661 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:31:16.661 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:16.661 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:16.661 INFO [25055]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 16:31:16.661 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:16.673 INFO [25055]: COREGRADE is stopping... -- 16:31:16.673 DEBUG [25055]: Closing database connection -- 16:31:16.673 SQL [25055]: pgsql_close() -- 16:31:16.757 INFO [25055]: COREGRADE is starting... -- 16:31:16.757 INFO [25055]: Version from config: 1.0 -- 16:31:16.757 DEBUG [25055]: Connecting to database... -- 16:31:16.757 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:16.757 SQL [25055]: pgsql_db_connect() -- 16:31:16.761 DEBUG [25055]: Database connection successful -- 16:31:16.761 INFO [25055]: _SERVER found -- 16:31:16.761 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:31:16.761 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:16.761 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:16.761 INFO [25055]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 16:31:16.761 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:16.772 INFO [25055]: COREGRADE is stopping... -- 16:31:16.773 DEBUG [25055]: Closing database connection -- 16:31:16.773 SQL [25055]: pgsql_close() -- 16:31:16.903 INFO [25055]: COREGRADE is starting... -- 16:31:16.904 INFO [25055]: Version from config: 1.0 -- 16:31:16.904 DEBUG [25055]: Connecting to database... -- 16:31:16.904 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:16.904 SQL [25055]: pgsql_db_connect() -- 16:31:16.908 DEBUG [25055]: Database connection successful -- 16:31:16.908 INFO [25055]: _SERVER found -- 16:31:16.908 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:31:16.908 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:16.908 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:16.908 INFO [25055]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 16:31:16.908 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:16.919 INFO [25055]: COREGRADE is stopping... -- 16:31:16.919 DEBUG [25055]: Closing database connection -- 16:31:16.919 SQL [25055]: pgsql_close() -- 16:31:17.004 INFO [25055]: COREGRADE is starting... -- 16:31:17.004 INFO [25055]: Version from config: 1.0 -- 16:31:17.004 DEBUG [25055]: Connecting to database... -- 16:31:17.004 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:17.004 SQL [25055]: pgsql_db_connect() -- 16:31:17.008 DEBUG [25055]: Database connection successful -- 16:31:17.008 INFO [25055]: _SERVER found -- 16:31:17.008 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:31:17.008 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:17.008 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:17.008 INFO [25055]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 16:31:17.008 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:17.020 INFO [25055]: COREGRADE is stopping... -- 16:31:17.020 DEBUG [25055]: Closing database connection -- 16:31:17.020 SQL [25055]: pgsql_close() -- 16:31:17.106 INFO [25055]: COREGRADE is starting... -- 16:31:17.106 INFO [25055]: Version from config: 1.0 -- 16:31:17.106 DEBUG [25055]: Connecting to database... -- 16:31:17.106 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:31:17.106 SQL [25055]: pgsql_db_connect() -- 16:31:17.110 DEBUG [25055]: Database connection successful -- 16:31:17.110 INFO [25055]: _SERVER found -- 16:31:17.110 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 16:31:17.110 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:31:17.110 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:31:17.110 INFO [25055]: QUERY_STRING = /assets/customjs/general.js -- 16:31:17.110 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:31:17.122 INFO [25055]: COREGRADE is stopping... -- 16:31:17.122 DEBUG [25055]: Closing database connection -- 16:31:17.122 SQL [25055]: pgsql_close() -- 16:51:17.669 INFO [12246]: COREGRADE is starting... -- 16:51:17.670 INFO [12246]: Version from config: 1.0 -- 16:51:17.670 DEBUG [12246]: Connecting to database... -- 16:51:17.670 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:17.670 SQL [12246]: pgsql_db_connect() -- 16:51:17.674 DEBUG [12246]: Database connection successful -- 16:51:17.674 INFO [12246]: _SERVER found -- 16:51:17.674 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 16:51:17.674 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:17.674 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=v7af3cnbhrbcaivrjibsmhpjgiu3409u -- 16:51:17.674 INFO [12246]: QUERY_STRING = /logout -- 16:51:17.674 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:17.708 INFO [12246]: COREGRADE is stopping... -- 16:51:17.708 DEBUG [12246]: Closing database connection -- 16:51:17.708 SQL [12246]: pgsql_close() -- 16:51:17.804 INFO [12246]: COREGRADE is starting... -- 16:51:17.804 INFO [12246]: Version from config: 1.0 -- 16:51:17.804 DEBUG [12246]: Connecting to database... -- 16:51:17.804 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:17.804 SQL [12246]: pgsql_db_connect() -- 16:51:17.808 DEBUG [12246]: Database connection successful -- 16:51:17.808 INFO [12246]: _SERVER found -- 16:51:17.808 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 16:51:17.808 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:17.808 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:17.808 INFO [12246]: QUERY_STRING = /start -- 16:51:17.808 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:17.843 INFO [12246]: COREGRADE is stopping... -- 16:51:17.843 DEBUG [12246]: Closing database connection -- 16:51:17.843 SQL [12246]: pgsql_close() -- 16:51:18.037 INFO [12246]: COREGRADE is starting... -- 16:51:18.037 INFO [12246]: Version from config: 1.0 -- 16:51:18.037 DEBUG [12246]: Connecting to database... -- 16:51:18.037 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:18.037 SQL [12246]: pgsql_db_connect() -- 16:51:18.041 DEBUG [12246]: Database connection successful -- 16:51:18.041 INFO [12246]: _SERVER found -- 16:51:18.041 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 16:51:18.041 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:18.041 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:18.041 INFO [12246]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 16:51:18.041 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:18.053 INFO [12246]: COREGRADE is stopping... -- 16:51:18.053 DEBUG [12246]: Closing database connection -- 16:51:18.053 SQL [12246]: pgsql_close() -- 16:51:18.137 INFO [12246]: COREGRADE is starting... -- 16:51:18.137 INFO [12246]: Version from config: 1.0 -- 16:51:18.137 DEBUG [12246]: Connecting to database... -- 16:51:18.137 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:18.137 SQL [12246]: pgsql_db_connect() -- 16:51:18.141 DEBUG [12246]: Database connection successful -- 16:51:18.141 INFO [12246]: _SERVER found -- 16:51:18.141 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 16:51:18.141 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:18.141 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:18.141 INFO [12246]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 16:51:18.142 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:18.153 INFO [12246]: COREGRADE is stopping... -- 16:51:18.153 DEBUG [12246]: Closing database connection -- 16:51:18.153 SQL [12246]: pgsql_close() -- 16:51:18.230 INFO [12246]: COREGRADE is starting... -- 16:51:18.230 INFO [12246]: Version from config: 1.0 -- 16:51:18.230 DEBUG [12246]: Connecting to database... -- 16:51:18.230 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:18.230 SQL [12246]: pgsql_db_connect() -- 16:51:18.238 INFO [12334]: COREGRADE is starting... -- 16:51:18.238 INFO [12334]: Version from config: 1.0 -- 16:51:18.238 DEBUG [12334]: Connecting to database... -- 16:51:18.238 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:18.238 SQL [12334]: pgsql_db_connect() -- 16:51:18.234 DEBUG [12246]: Database connection successful -- 16:51:18.234 INFO [12246]: _SERVER found -- 16:51:18.234 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 16:51:18.234 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:18.234 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:18.234 INFO [12246]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 16:51:18.234 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:18.246 INFO [12246]: COREGRADE is stopping... -- 16:51:18.246 DEBUG [12246]: Closing database connection -- 16:51:18.246 SQL [12246]: pgsql_close() -- 16:51:18.242 DEBUG [12334]: Database connection successful -- 16:51:18.242 INFO [12334]: _SERVER found -- 16:51:18.242 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:18.242 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:18.242 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:18.242 INFO [12334]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 16:51:18.242 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:18.255 INFO [12334]: COREGRADE is stopping... -- 16:51:18.255 DEBUG [12334]: Closing database connection -- 16:51:18.255 SQL [12334]: pgsql_close() -- 16:51:18.343 INFO [12334]: COREGRADE is starting... -- 16:51:18.343 INFO [12334]: Version from config: 1.0 -- 16:51:18.343 DEBUG [12334]: Connecting to database... -- 16:51:18.343 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:18.343 SQL [12334]: pgsql_db_connect() -- 16:51:18.347 DEBUG [12334]: Database connection successful -- 16:51:18.347 INFO [12334]: _SERVER found -- 16:51:18.347 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:18.347 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:18.347 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:18.347 INFO [12334]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 16:51:18.347 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:18.359 INFO [12334]: COREGRADE is stopping... -- 16:51:18.359 DEBUG [12334]: Closing database connection -- 16:51:18.359 SQL [12334]: pgsql_close() -- 16:51:18.627 INFO [12334]: COREGRADE is starting... -- 16:51:18.628 INFO [12334]: Version from config: 1.0 -- 16:51:18.628 DEBUG [12334]: Connecting to database... -- 16:51:18.628 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:18.628 SQL [12334]: pgsql_db_connect() -- 16:51:18.632 DEBUG [12334]: Database connection successful -- 16:51:18.632 INFO [12334]: _SERVER found -- 16:51:18.632 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:18.632 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:18.632 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:18.632 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 16:51:18.632 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:18.643 INFO [12334]: COREGRADE is stopping... -- 16:51:18.643 DEBUG [12334]: Closing database connection -- 16:51:18.643 SQL [12334]: pgsql_close() -- 16:51:18.744 INFO [12334]: COREGRADE is starting... -- 16:51:18.744 INFO [12334]: Version from config: 1.0 -- 16:51:18.744 DEBUG [12334]: Connecting to database... -- 16:51:18.744 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:18.744 SQL [12334]: pgsql_db_connect() -- 16:51:18.748 DEBUG [12334]: Database connection successful -- 16:51:18.748 INFO [12334]: _SERVER found -- 16:51:18.748 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:18.748 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:18.749 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:18.749 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 16:51:18.749 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:18.760 INFO [12334]: COREGRADE is stopping... -- 16:51:18.760 DEBUG [12334]: Closing database connection -- 16:51:18.760 SQL [12334]: pgsql_close() -- 16:51:18.815 INFO [12247]: COREGRADE is starting... -- 16:51:18.815 INFO [12247]: Version from config: 1.0 -- 16:51:18.815 DEBUG [12247]: Connecting to database... -- 16:51:18.815 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:18.815 SQL [12247]: pgsql_db_connect() -- 16:51:18.819 DEBUG [12247]: Database connection successful -- 16:51:18.819 INFO [12247]: _SERVER found -- 16:51:18.819 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 16:51:18.819 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:18.819 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:18.819 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 16:51:18.819 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:18.832 INFO [12247]: COREGRADE is stopping... -- 16:51:18.832 DEBUG [12247]: Closing database connection -- 16:51:18.832 SQL [12247]: pgsql_close() -- 16:51:18.846 INFO [12334]: COREGRADE is starting... -- 16:51:18.847 INFO [12334]: Version from config: 1.0 -- 16:51:18.847 DEBUG [12334]: Connecting to database... -- 16:51:18.847 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:18.847 SQL [12334]: pgsql_db_connect() -- 16:51:18.851 DEBUG [12334]: Database connection successful -- 16:51:18.851 INFO [12334]: _SERVER found -- 16:51:18.851 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:18.851 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:18.851 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:18.851 INFO [12334]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 16:51:18.851 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:18.862 INFO [12334]: COREGRADE is stopping... -- 16:51:18.862 DEBUG [12334]: Closing database connection -- 16:51:18.862 SQL [12334]: pgsql_close() -- 16:51:18.929 INFO [12247]: COREGRADE is starting... -- 16:51:18.929 INFO [12247]: Version from config: 1.0 -- 16:51:18.929 DEBUG [12247]: Connecting to database... -- 16:51:18.929 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:18.929 SQL [12247]: pgsql_db_connect() -- 16:51:18.934 DEBUG [12247]: Database connection successful -- 16:51:18.934 INFO [12247]: _SERVER found -- 16:51:18.934 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 16:51:18.934 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:18.934 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:18.934 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 16:51:18.934 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:18.945 INFO [12247]: COREGRADE is stopping... -- 16:51:18.945 DEBUG [12247]: Closing database connection -- 16:51:18.945 SQL [12247]: pgsql_close() -- 16:51:19.034 INFO [12247]: COREGRADE is starting... -- 16:51:19.034 INFO [12247]: Version from config: 1.0 -- 16:51:19.034 DEBUG [12247]: Connecting to database... -- 16:51:19.035 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:19.035 SQL [12247]: pgsql_db_connect() -- 16:51:19.039 DEBUG [12247]: Database connection successful -- 16:51:19.039 INFO [12247]: _SERVER found -- 16:51:19.039 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 16:51:19.039 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:19.039 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:19.039 INFO [12247]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 16:51:19.039 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:19.050 INFO [12247]: COREGRADE is stopping... -- 16:51:19.050 DEBUG [12247]: Closing database connection -- 16:51:19.050 SQL [12247]: pgsql_close() -- 16:51:19.137 INFO [12247]: COREGRADE is starting... -- 16:51:19.137 INFO [12247]: Version from config: 1.0 -- 16:51:19.137 DEBUG [12247]: Connecting to database... -- 16:51:19.137 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:19.137 SQL [12247]: pgsql_db_connect() -- 16:51:19.141 DEBUG [12247]: Database connection successful -- 16:51:19.141 INFO [12247]: _SERVER found -- 16:51:19.141 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 16:51:19.141 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:19.141 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:19.141 INFO [12247]: QUERY_STRING = /assets/js/pages/dashboard.js -- 16:51:19.141 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:19.152 INFO [12247]: COREGRADE is stopping... -- 16:51:19.152 DEBUG [12247]: Closing database connection -- 16:51:19.152 SQL [12247]: pgsql_close() -- 16:51:19.239 INFO [12334]: COREGRADE is starting... -- 16:51:19.239 INFO [12334]: Version from config: 1.0 -- 16:51:19.239 DEBUG [12334]: Connecting to database... -- 16:51:19.239 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:19.239 SQL [12334]: pgsql_db_connect() -- 16:51:19.243 DEBUG [12334]: Database connection successful -- 16:51:19.243 INFO [12334]: _SERVER found -- 16:51:19.243 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:19.243 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:19.243 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:19.243 INFO [12334]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 16:51:19.243 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:19.255 INFO [12334]: COREGRADE is stopping... -- 16:51:19.255 DEBUG [12334]: Closing database connection -- 16:51:19.255 SQL [12334]: pgsql_close() -- 16:51:19.304 INFO [12334]: COREGRADE is starting... -- 16:51:19.305 INFO [12334]: Version from config: 1.0 -- 16:51:19.305 DEBUG [12334]: Connecting to database... -- 16:51:19.305 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:19.305 SQL [12334]: pgsql_db_connect() -- 16:51:19.309 DEBUG [12334]: Database connection successful -- 16:51:19.309 INFO [12334]: _SERVER found -- 16:51:19.309 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:19.309 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:19.309 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:19.309 INFO [12334]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 16:51:19.309 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:19.320 INFO [12334]: COREGRADE is stopping... -- 16:51:19.320 DEBUG [12334]: Closing database connection -- 16:51:19.320 SQL [12334]: pgsql_close() -- 16:51:19.342 INFO [12334]: COREGRADE is starting... -- 16:51:19.342 INFO [12334]: Version from config: 1.0 -- 16:51:19.342 DEBUG [12334]: Connecting to database... -- 16:51:19.342 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:19.342 SQL [12334]: pgsql_db_connect() -- 16:51:19.346 DEBUG [12334]: Database connection successful -- 16:51:19.346 INFO [12334]: _SERVER found -- 16:51:19.346 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:19.346 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:19.346 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:19.346 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 16:51:19.346 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:19.358 INFO [12334]: COREGRADE is stopping... -- 16:51:19.358 DEBUG [12334]: Closing database connection -- 16:51:19.358 SQL [12334]: pgsql_close() -- 16:51:19.406 INFO [12334]: COREGRADE is starting... -- 16:51:19.406 INFO [12334]: Version from config: 1.0 -- 16:51:19.406 DEBUG [12334]: Connecting to database... -- 16:51:19.406 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:19.406 SQL [12334]: pgsql_db_connect() -- 16:51:19.410 DEBUG [12334]: Database connection successful -- 16:51:19.410 INFO [12334]: _SERVER found -- 16:51:19.410 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:19.410 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:19.410 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:19.410 INFO [12334]: QUERY_STRING = /assets/js/pages/picker_date.js -- 16:51:19.410 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:19.422 INFO [12334]: COREGRADE is stopping... -- 16:51:19.422 DEBUG [12334]: Closing database connection -- 16:51:19.422 SQL [12334]: pgsql_close() -- 16:51:19.733 INFO [12334]: COREGRADE is starting... -- 16:51:19.733 INFO [12334]: Version from config: 1.0 -- 16:51:19.733 DEBUG [12334]: Connecting to database... -- 16:51:19.733 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:19.733 SQL [12334]: pgsql_db_connect() -- 16:51:19.738 DEBUG [12334]: Database connection successful -- 16:51:19.738 INFO [12334]: _SERVER found -- 16:51:19.738 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:19.738 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:19.738 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:19.738 INFO [12334]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 16:51:19.738 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:19.749 INFO [12334]: COREGRADE is stopping... -- 16:51:19.749 DEBUG [12334]: Closing database connection -- 16:51:19.749 SQL [12334]: pgsql_close() -- 16:51:19.791 INFO [12334]: COREGRADE is starting... -- 16:51:19.792 INFO [12334]: Version from config: 1.0 -- 16:51:19.792 DEBUG [12334]: Connecting to database... -- 16:51:19.792 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:19.792 SQL [12334]: pgsql_db_connect() -- 16:51:19.796 DEBUG [12334]: Database connection successful -- 16:51:19.796 INFO [12334]: _SERVER found -- 16:51:19.796 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:19.796 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:19.796 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:19.796 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 16:51:19.796 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:19.807 INFO [12334]: COREGRADE is stopping... -- 16:51:19.807 DEBUG [12334]: Closing database connection -- 16:51:19.807 SQL [12334]: pgsql_close() -- 16:51:19.834 INFO [12334]: COREGRADE is starting... -- 16:51:19.834 INFO [12334]: Version from config: 1.0 -- 16:51:19.834 DEBUG [12334]: Connecting to database... -- 16:51:19.834 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:19.834 SQL [12334]: pgsql_db_connect() -- 16:51:19.839 DEBUG [12334]: Database connection successful -- 16:51:19.839 INFO [12334]: _SERVER found -- 16:51:19.839 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:19.839 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:19.839 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:19.839 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 16:51:19.839 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:19.850 INFO [12334]: COREGRADE is stopping... -- 16:51:19.850 DEBUG [12334]: Closing database connection -- 16:51:19.850 SQL [12334]: pgsql_close() -- 16:51:19.934 INFO [12334]: COREGRADE is starting... -- 16:51:19.934 INFO [12334]: Version from config: 1.0 -- 16:51:19.934 DEBUG [12334]: Connecting to database... -- 16:51:19.934 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:19.934 SQL [12334]: pgsql_db_connect() -- 16:51:19.939 DEBUG [12334]: Database connection successful -- 16:51:19.939 INFO [12334]: _SERVER found -- 16:51:19.939 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:19.939 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:19.939 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:19.939 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 16:51:19.939 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:19.950 INFO [12334]: COREGRADE is stopping... -- 16:51:19.950 DEBUG [12334]: Closing database connection -- 16:51:19.950 SQL [12334]: pgsql_close() -- 16:51:20.034 INFO [12334]: COREGRADE is starting... -- 16:51:20.034 INFO [12334]: Version from config: 1.0 -- 16:51:20.034 DEBUG [12334]: Connecting to database... -- 16:51:20.034 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:20.034 SQL [12334]: pgsql_db_connect() -- 16:51:20.038 DEBUG [12334]: Database connection successful -- 16:51:20.038 INFO [12334]: _SERVER found -- 16:51:20.038 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:20.038 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:20.038 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:20.038 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 16:51:20.038 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:20.050 INFO [12334]: COREGRADE is stopping... -- 16:51:20.050 DEBUG [12334]: Closing database connection -- 16:51:20.050 SQL [12334]: pgsql_close() -- 16:51:20.145 INFO [12247]: COREGRADE is starting... -- 16:51:20.145 INFO [12247]: Version from config: 1.0 -- 16:51:20.145 DEBUG [12247]: Connecting to database... -- 16:51:20.145 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:20.145 SQL [12247]: pgsql_db_connect() -- 16:51:20.149 DEBUG [12247]: Database connection successful -- 16:51:20.149 INFO [12247]: _SERVER found -- 16:51:20.149 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 16:51:20.149 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:20.149 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:20.149 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 16:51:20.149 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:20.161 INFO [12247]: COREGRADE is stopping... -- 16:51:20.161 DEBUG [12247]: Closing database connection -- 16:51:20.161 SQL [12247]: pgsql_close() -- 16:51:20.245 INFO [12247]: COREGRADE is starting... -- 16:51:20.245 INFO [12247]: Version from config: 1.0 -- 16:51:20.245 DEBUG [12247]: Connecting to database... -- 16:51:20.246 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:20.246 SQL [12247]: pgsql_db_connect() -- 16:51:20.250 DEBUG [12247]: Database connection successful -- 16:51:20.250 INFO [12247]: _SERVER found -- 16:51:20.250 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 16:51:20.250 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:20.250 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:20.250 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 16:51:20.250 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:20.261 INFO [12247]: COREGRADE is stopping... -- 16:51:20.261 DEBUG [12247]: Closing database connection -- 16:51:20.261 SQL [12247]: pgsql_close() -- 16:51:20.345 INFO [12247]: COREGRADE is starting... -- 16:51:20.345 INFO [12247]: Version from config: 1.0 -- 16:51:20.345 DEBUG [12247]: Connecting to database... -- 16:51:20.345 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:20.345 SQL [12247]: pgsql_db_connect() -- 16:51:20.350 DEBUG [12247]: Database connection successful -- 16:51:20.350 INFO [12247]: _SERVER found -- 16:51:20.350 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 16:51:20.350 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:20.350 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:20.350 INFO [12247]: QUERY_STRING = /assets/customjs/general.js -- 16:51:20.350 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:20.361 INFO [12247]: COREGRADE is stopping... -- 16:51:20.361 DEBUG [12247]: Closing database connection -- 16:51:20.361 SQL [12247]: pgsql_close() -- 16:51:20.421 INFO [12334]: COREGRADE is starting... -- 16:51:20.421 INFO [12334]: Version from config: 1.0 -- 16:51:20.421 DEBUG [12334]: Connecting to database... -- 16:51:20.421 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:20.421 SQL [12334]: pgsql_db_connect() -- 16:51:20.425 DEBUG [12334]: Database connection successful -- 16:51:20.425 INFO [12334]: _SERVER found -- 16:51:20.425 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:20.425 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:20.425 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:20.425 INFO [12334]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 16:51:20.425 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:20.437 INFO [12334]: COREGRADE is stopping... -- 16:51:20.437 DEBUG [12334]: Closing database connection -- 16:51:20.437 SQL [12334]: pgsql_close() -- 16:51:20.524 INFO [12334]: COREGRADE is starting... -- 16:51:20.525 INFO [12334]: Version from config: 1.0 -- 16:51:20.525 DEBUG [12334]: Connecting to database... -- 16:51:20.525 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:20.525 SQL [12334]: pgsql_db_connect() -- 16:51:20.529 DEBUG [12334]: Database connection successful -- 16:51:20.529 INFO [12334]: _SERVER found -- 16:51:20.529 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:20.529 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:20.529 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:20.529 INFO [12334]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 16:51:20.529 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:20.540 INFO [12334]: COREGRADE is stopping... -- 16:51:20.540 DEBUG [12334]: Closing database connection -- 16:51:20.540 SQL [12334]: pgsql_close() -- 16:51:20.627 INFO [12334]: COREGRADE is starting... -- 16:51:20.627 INFO [12334]: Version from config: 1.0 -- 16:51:20.627 DEBUG [12334]: Connecting to database... -- 16:51:20.627 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:20.627 SQL [12334]: pgsql_db_connect() -- 16:51:20.631 DEBUG [12334]: Database connection successful -- 16:51:20.631 INFO [12334]: _SERVER found -- 16:51:20.631 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:20.631 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:20.631 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:20.631 INFO [12334]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 16:51:20.631 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:20.643 INFO [12334]: COREGRADE is stopping... -- 16:51:20.643 DEBUG [12334]: Closing database connection -- 16:51:20.643 SQL [12334]: pgsql_close() -- 16:51:20.728 INFO [12334]: COREGRADE is starting... -- 16:51:20.728 INFO [12334]: Version from config: 1.0 -- 16:51:20.728 DEBUG [12334]: Connecting to database... -- 16:51:20.728 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:20.728 SQL [12334]: pgsql_db_connect() -- 16:51:20.733 DEBUG [12334]: Database connection successful -- 16:51:20.733 INFO [12334]: _SERVER found -- 16:51:20.733 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:20.733 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:20.733 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:20.733 INFO [12334]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 16:51:20.733 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:20.744 INFO [12334]: COREGRADE is stopping... -- 16:51:20.744 DEBUG [12334]: Closing database connection -- 16:51:20.744 SQL [12334]: pgsql_close() -- 16:51:20.829 INFO [12334]: COREGRADE is starting... -- 16:51:20.830 INFO [12334]: Version from config: 1.0 -- 16:51:20.830 DEBUG [12334]: Connecting to database... -- 16:51:20.830 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:20.830 SQL [12334]: pgsql_db_connect() -- 16:51:20.834 DEBUG [12334]: Database connection successful -- 16:51:20.834 INFO [12334]: _SERVER found -- 16:51:20.834 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:20.834 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:20.834 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:20.834 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 16:51:20.834 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:20.846 INFO [12334]: COREGRADE is stopping... -- 16:51:20.846 DEBUG [12334]: Closing database connection -- 16:51:20.846 SQL [12334]: pgsql_close() -- 16:51:20.931 INFO [12334]: COREGRADE is starting... -- 16:51:20.931 INFO [12334]: Version from config: 1.0 -- 16:51:20.931 DEBUG [12334]: Connecting to database... -- 16:51:20.931 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:20.931 SQL [12334]: pgsql_db_connect() -- 16:51:20.935 DEBUG [12334]: Database connection successful -- 16:51:20.935 INFO [12334]: _SERVER found -- 16:51:20.935 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:20.935 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:20.935 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:20.935 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 16:51:20.935 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:20.947 INFO [12334]: COREGRADE is stopping... -- 16:51:20.947 DEBUG [12334]: Closing database connection -- 16:51:20.947 SQL [12334]: pgsql_close() -- 16:51:21.316 INFO [12334]: COREGRADE is starting... -- 16:51:21.316 INFO [12334]: Version from config: 1.0 -- 16:51:21.316 DEBUG [12334]: Connecting to database... -- 16:51:21.316 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:21.316 SQL [12334]: pgsql_db_connect() -- 16:51:21.321 DEBUG [12334]: Database connection successful -- 16:51:21.321 INFO [12334]: _SERVER found -- 16:51:21.321 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:21.321 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:21.321 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:21.321 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 16:51:21.321 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:21.332 INFO [12334]: COREGRADE is stopping... -- 16:51:21.332 DEBUG [12334]: Closing database connection -- 16:51:21.332 SQL [12334]: pgsql_close() -- 16:51:21.418 INFO [12334]: COREGRADE is starting... -- 16:51:21.418 INFO [12334]: Version from config: 1.0 -- 16:51:21.418 DEBUG [12334]: Connecting to database... -- 16:51:21.418 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:21.418 SQL [12334]: pgsql_db_connect() -- 16:51:21.422 DEBUG [12334]: Database connection successful -- 16:51:21.422 INFO [12334]: _SERVER found -- 16:51:21.422 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:21.422 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:21.422 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:21.422 INFO [12334]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 16:51:21.422 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:21.434 INFO [12334]: COREGRADE is stopping... -- 16:51:21.434 DEBUG [12334]: Closing database connection -- 16:51:21.434 SQL [12334]: pgsql_close() -- 16:51:21.518 INFO [12334]: COREGRADE is starting... -- 16:51:21.518 INFO [12334]: Version from config: 1.0 -- 16:51:21.518 DEBUG [12334]: Connecting to database... -- 16:51:21.518 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:21.518 SQL [12334]: pgsql_db_connect() -- 16:51:21.522 DEBUG [12334]: Database connection successful -- 16:51:21.522 INFO [12334]: _SERVER found -- 16:51:21.522 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:21.522 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:21.522 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:21.522 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 16:51:21.522 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:21.534 INFO [12334]: COREGRADE is stopping... -- 16:51:21.534 DEBUG [12334]: Closing database connection -- 16:51:21.534 SQL [12334]: pgsql_close() -- 16:51:21.619 INFO [12334]: COREGRADE is starting... -- 16:51:21.619 INFO [12334]: Version from config: 1.0 -- 16:51:21.619 DEBUG [12334]: Connecting to database... -- 16:51:21.619 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:21.619 SQL [12334]: pgsql_db_connect() -- 16:51:21.623 DEBUG [12334]: Database connection successful -- 16:51:21.623 INFO [12334]: _SERVER found -- 16:51:21.623 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:21.623 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:21.623 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:21.623 INFO [12334]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 16:51:21.623 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:21.635 INFO [12334]: COREGRADE is stopping... -- 16:51:21.635 DEBUG [12334]: Closing database connection -- 16:51:21.635 SQL [12334]: pgsql_close() -- 16:51:21.720 INFO [12334]: COREGRADE is starting... -- 16:51:21.720 INFO [12334]: Version from config: 1.0 -- 16:51:21.720 DEBUG [12334]: Connecting to database... -- 16:51:21.720 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:21.720 SQL [12334]: pgsql_db_connect() -- 16:51:21.724 DEBUG [12334]: Database connection successful -- 16:51:21.724 INFO [12334]: _SERVER found -- 16:51:21.724 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:21.724 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:21.724 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:21.724 INFO [12334]: QUERY_STRING = /assets/js/pages/dashboard.js -- 16:51:21.724 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:21.736 INFO [12334]: COREGRADE is stopping... -- 16:51:21.736 DEBUG [12334]: Closing database connection -- 16:51:21.736 SQL [12334]: pgsql_close() -- 16:51:22.105 INFO [12334]: COREGRADE is starting... -- 16:51:22.105 INFO [12334]: Version from config: 1.0 -- 16:51:22.106 DEBUG [12334]: Connecting to database... -- 16:51:22.106 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:22.106 SQL [12334]: pgsql_db_connect() -- 16:51:22.110 DEBUG [12334]: Database connection successful -- 16:51:22.110 INFO [12334]: _SERVER found -- 16:51:22.110 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:22.110 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:22.110 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:22.110 INFO [12334]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 16:51:22.110 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:22.121 INFO [12334]: COREGRADE is stopping... -- 16:51:22.121 DEBUG [12334]: Closing database connection -- 16:51:22.121 SQL [12334]: pgsql_close() -- 16:51:22.206 INFO [12334]: COREGRADE is starting... -- 16:51:22.206 INFO [12334]: Version from config: 1.0 -- 16:51:22.206 DEBUG [12334]: Connecting to database... -- 16:51:22.206 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:22.206 SQL [12334]: pgsql_db_connect() -- 16:51:22.210 DEBUG [12334]: Database connection successful -- 16:51:22.210 INFO [12334]: _SERVER found -- 16:51:22.210 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:22.210 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:22.210 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:22.210 INFO [12334]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 16:51:22.210 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:22.222 INFO [12334]: COREGRADE is stopping... -- 16:51:22.222 DEBUG [12334]: Closing database connection -- 16:51:22.222 SQL [12334]: pgsql_close() -- 16:51:22.590 INFO [12334]: COREGRADE is starting... -- 16:51:22.590 INFO [12334]: Version from config: 1.0 -- 16:51:22.590 DEBUG [12334]: Connecting to database... -- 16:51:22.590 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:22.590 SQL [12334]: pgsql_db_connect() -- 16:51:22.594 DEBUG [12334]: Database connection successful -- 16:51:22.594 INFO [12334]: _SERVER found -- 16:51:22.594 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:22.594 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:22.594 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:22.594 INFO [12334]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 16:51:22.594 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:22.606 INFO [12334]: COREGRADE is stopping... -- 16:51:22.606 DEBUG [12334]: Closing database connection -- 16:51:22.606 SQL [12334]: pgsql_close() -- 16:51:22.690 INFO [12334]: COREGRADE is starting... -- 16:51:22.690 INFO [12334]: Version from config: 1.0 -- 16:51:22.690 DEBUG [12334]: Connecting to database... -- 16:51:22.690 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:22.690 SQL [12334]: pgsql_db_connect() -- 16:51:22.694 DEBUG [12334]: Database connection successful -- 16:51:22.694 INFO [12334]: _SERVER found -- 16:51:22.694 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:22.694 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:22.694 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:22.694 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 16:51:22.694 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:22.706 INFO [12334]: COREGRADE is stopping... -- 16:51:22.706 DEBUG [12334]: Closing database connection -- 16:51:22.706 SQL [12334]: pgsql_close() -- 16:51:23.362 INFO [12334]: COREGRADE is starting... -- 16:51:23.362 INFO [12334]: Version from config: 1.0 -- 16:51:23.362 DEBUG [12334]: Connecting to database... -- 16:51:23.362 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:23.362 SQL [12334]: pgsql_db_connect() -- 16:51:23.367 DEBUG [12334]: Database connection successful -- 16:51:23.367 INFO [12334]: _SERVER found -- 16:51:23.367 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:23.367 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:23.367 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:23.367 INFO [12334]: QUERY_STRING = /assets/js/pages/picker_date.js -- 16:51:23.367 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:23.378 INFO [12334]: COREGRADE is stopping... -- 16:51:23.378 DEBUG [12334]: Closing database connection -- 16:51:23.378 SQL [12334]: pgsql_close() -- 16:51:23.790 INFO [12334]: COREGRADE is starting... -- 16:51:23.790 INFO [12334]: Version from config: 1.0 -- 16:51:23.790 DEBUG [12334]: Connecting to database... -- 16:51:23.790 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:23.790 SQL [12334]: pgsql_db_connect() -- 16:51:23.794 DEBUG [12334]: Database connection successful -- 16:51:23.794 INFO [12334]: _SERVER found -- 16:51:23.794 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:23.794 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:23.794 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:23.794 INFO [12334]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 16:51:23.794 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:23.806 INFO [12334]: COREGRADE is stopping... -- 16:51:23.806 DEBUG [12334]: Closing database connection -- 16:51:23.806 SQL [12334]: pgsql_close() -- 16:51:23.890 INFO [12334]: COREGRADE is starting... -- 16:51:23.891 INFO [12334]: Version from config: 1.0 -- 16:51:23.891 DEBUG [12334]: Connecting to database... -- 16:51:23.891 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:23.891 SQL [12334]: pgsql_db_connect() -- 16:51:23.895 DEBUG [12334]: Database connection successful -- 16:51:23.895 INFO [12334]: _SERVER found -- 16:51:23.895 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:23.895 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:23.895 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:23.895 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 16:51:23.895 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:23.907 INFO [12334]: COREGRADE is stopping... -- 16:51:23.907 DEBUG [12334]: Closing database connection -- 16:51:23.907 SQL [12334]: pgsql_close() -- 16:51:23.992 INFO [12334]: COREGRADE is starting... -- 16:51:23.992 INFO [12334]: Version from config: 1.0 -- 16:51:23.992 DEBUG [12334]: Connecting to database... -- 16:51:23.992 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:23.992 SQL [12334]: pgsql_db_connect() -- 16:51:23.996 DEBUG [12334]: Database connection successful -- 16:51:23.996 INFO [12334]: _SERVER found -- 16:51:23.996 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:23.996 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:23.996 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:23.996 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 16:51:23.996 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:24.008 INFO [12334]: COREGRADE is stopping... -- 16:51:24.008 DEBUG [12334]: Closing database connection -- 16:51:24.008 SQL [12334]: pgsql_close() -- 16:51:24.660 INFO [12334]: COREGRADE is starting... -- 16:51:24.660 INFO [12334]: Version from config: 1.0 -- 16:51:24.660 DEBUG [12334]: Connecting to database... -- 16:51:24.660 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:24.660 SQL [12334]: pgsql_db_connect() -- 16:51:24.665 DEBUG [12334]: Database connection successful -- 16:51:24.665 INFO [12334]: _SERVER found -- 16:51:24.665 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:24.665 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:24.665 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:24.665 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 16:51:24.665 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:24.676 INFO [12334]: COREGRADE is stopping... -- 16:51:24.676 DEBUG [12334]: Closing database connection -- 16:51:24.676 SQL [12334]: pgsql_close() -- 16:51:24.762 INFO [12334]: COREGRADE is starting... -- 16:51:24.762 INFO [12334]: Version from config: 1.0 -- 16:51:24.762 DEBUG [12334]: Connecting to database... -- 16:51:24.762 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:24.762 SQL [12334]: pgsql_db_connect() -- 16:51:24.767 DEBUG [12334]: Database connection successful -- 16:51:24.767 INFO [12334]: _SERVER found -- 16:51:24.767 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:24.767 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:24.767 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:24.767 INFO [12334]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 16:51:24.767 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:24.778 INFO [12334]: COREGRADE is stopping... -- 16:51:24.778 DEBUG [12334]: Closing database connection -- 16:51:24.778 SQL [12334]: pgsql_close() -- 16:51:24.873 INFO [12334]: COREGRADE is starting... -- 16:51:24.873 INFO [12334]: Version from config: 1.0 -- 16:51:24.873 DEBUG [12334]: Connecting to database... -- 16:51:24.873 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:24.873 SQL [12334]: pgsql_db_connect() -- 16:51:24.878 DEBUG [12334]: Database connection successful -- 16:51:24.878 INFO [12334]: _SERVER found -- 16:51:24.878 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:24.878 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:24.878 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:24.878 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 16:51:24.878 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:24.890 INFO [12334]: COREGRADE is stopping... -- 16:51:24.890 DEBUG [12334]: Closing database connection -- 16:51:24.890 SQL [12334]: pgsql_close() -- 16:51:25.260 INFO [12334]: COREGRADE is starting... -- 16:51:25.260 INFO [12334]: Version from config: 1.0 -- 16:51:25.260 DEBUG [12334]: Connecting to database... -- 16:51:25.260 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:25.260 SQL [12334]: pgsql_db_connect() -- 16:51:25.265 DEBUG [12334]: Database connection successful -- 16:51:25.265 INFO [12334]: _SERVER found -- 16:51:25.265 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:25.265 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:25.265 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:25.265 INFO [12334]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 16:51:25.265 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:25.276 INFO [12334]: COREGRADE is stopping... -- 16:51:25.276 DEBUG [12334]: Closing database connection -- 16:51:25.276 SQL [12334]: pgsql_close() -- 16:51:25.362 INFO [12334]: COREGRADE is starting... -- 16:51:25.363 INFO [12334]: Version from config: 1.0 -- 16:51:25.363 DEBUG [12334]: Connecting to database... -- 16:51:25.363 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:51:25.363 SQL [12334]: pgsql_db_connect() -- 16:51:25.367 DEBUG [12334]: Database connection successful -- 16:51:25.367 INFO [12334]: _SERVER found -- 16:51:25.367 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 16:51:25.367 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 16:51:25.367 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 16:51:25.367 INFO [12334]: QUERY_STRING = /assets/customjs/general.js -- 16:51:25.367 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 16:51:25.379 INFO [12334]: COREGRADE is stopping... -- 16:51:25.379 DEBUG [12334]: Closing database connection -- 16:51:25.379 SQL [12334]: pgsql_close() -- 17:11:25.618 INFO [12248]: COREGRADE is starting... -- 17:11:25.618 INFO [12248]: Version from config: 1.0 -- 17:11:25.618 DEBUG [12248]: Connecting to database... -- 17:11:25.618 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:25.618 SQL [12248]: pgsql_db_connect() -- 17:11:25.623 DEBUG [12248]: Database connection successful -- 17:11:25.623 INFO [12248]: _SERVER found -- 17:11:25.623 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 17:11:25.623 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:11:25.623 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=mv6e1c7bn48be9d7d1shp5efc3muggn0 -- 17:11:25.623 INFO [12248]: QUERY_STRING = /logout -- 17:11:25.623 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:11:25.657 INFO [12248]: COREGRADE is stopping... -- 17:11:25.657 DEBUG [12248]: Closing database connection -- 17:11:25.657 SQL [12248]: pgsql_close() -- 17:11:25.742 INFO [12248]: COREGRADE is starting... -- 17:11:25.742 INFO [12248]: Version from config: 1.0 -- 17:11:25.742 DEBUG [12248]: Connecting to database... -- 17:11:25.742 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:25.742 SQL [12248]: pgsql_db_connect() -- 17:11:25.746 DEBUG [12248]: Database connection successful -- 17:11:25.746 INFO [12248]: _SERVER found -- 17:11:25.746 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 17:11:25.746 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:11:25.746 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=1rsle3obs14n17euqqk1vck7bgvdifr8 -- 17:11:25.746 INFO [12248]: QUERY_STRING = /start -- 17:11:25.746 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:11:25.780 INFO [12248]: COREGRADE is stopping... -- 17:11:25.780 DEBUG [12248]: Closing database connection -- 17:11:25.780 SQL [12248]: pgsql_close() -- 17:11:25.879 INFO [12249]: COREGRADE is starting... -- 17:11:25.879 INFO [12249]: Version from config: 1.0 -- 17:11:25.879 DEBUG [12249]: Connecting to database... -- 17:11:25.880 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:25.880 SQL [12249]: pgsql_db_connect() -- 17:11:25.884 DEBUG [12249]: Database connection successful -- 17:11:25.884 INFO [12249]: _SERVER found -- 17:11:25.884 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 17:11:25.884 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:11:25.884 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=1rsle3obs14n17euqqk1vck7bgvdifr8 -- 17:11:25.884 INFO [12249]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 17:11:25.884 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:11:25.897 INFO [12249]: COREGRADE is stopping... -- 17:11:25.897 DEBUG [12249]: Closing database connection -- 17:11:25.897 SQL [12249]: pgsql_close() -- 17:11:25.938 INFO [12248]: COREGRADE is starting... -- 17:11:25.939 INFO [12248]: Version from config: 1.0 -- 17:11:25.939 DEBUG [12248]: Connecting to database... -- 17:11:25.939 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:25.939 SQL [12248]: pgsql_db_connect() -- 17:11:25.946 INFO [12250]: COREGRADE is starting... -- 17:11:25.946 INFO [12250]: Version from config: 1.0 -- 17:11:25.946 DEBUG [12250]: Connecting to database... -- 17:11:25.946 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:25.946 SQL [12250]: pgsql_db_connect() -- 17:11:25.943 DEBUG [12248]: Database connection successful -- 17:11:25.943 INFO [12248]: _SERVER found -- 17:11:25.943 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 17:11:25.943 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:11:25.943 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=1rsle3obs14n17euqqk1vck7bgvdifr8 -- 17:11:25.943 INFO [12248]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 17:11:25.943 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:11:25.955 INFO [12248]: COREGRADE is stopping... -- 17:11:25.955 DEBUG [12248]: Closing database connection -- 17:11:25.955 SQL [12248]: pgsql_close() -- 17:11:25.950 DEBUG [12250]: Database connection successful -- 17:11:25.950 INFO [12250]: _SERVER found -- 17:11:25.950 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 17:11:25.950 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:11:25.950 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=1rsle3obs14n17euqqk1vck7bgvdifr8 -- 17:11:25.950 INFO [12250]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 17:11:25.950 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:11:25.963 INFO [12250]: COREGRADE is stopping... -- 17:11:25.963 DEBUG [12250]: Closing database connection -- 17:11:25.963 SQL [12250]: pgsql_close() -- 17:11:25.981 INFO [12249]: COREGRADE is starting... -- 17:11:25.981 INFO [12249]: Version from config: 1.0 -- 17:11:25.981 DEBUG [12249]: Connecting to database... -- 17:11:25.981 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:25.981 SQL [12249]: pgsql_db_connect() -- 17:11:25.985 DEBUG [12249]: Database connection successful -- 17:11:25.985 INFO [12249]: _SERVER found -- 17:11:25.985 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 17:11:25.985 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:11:25.985 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=1rsle3obs14n17euqqk1vck7bgvdifr8 -- 17:11:25.985 INFO [12249]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 17:11:25.985 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:11:25.997 INFO [12249]: COREGRADE is stopping... -- 17:11:25.997 DEBUG [12249]: Closing database connection -- 17:11:25.997 SQL [12249]: pgsql_close() -- 17:11:26.027 INFO [12248]: COREGRADE is starting... -- 17:11:26.027 INFO [12248]: Version from config: 1.0 -- 17:11:26.027 DEBUG [12248]: Connecting to database... -- 17:11:26.027 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:26.027 SQL [12248]: pgsql_db_connect() -- 17:11:26.031 DEBUG [12248]: Database connection successful -- 17:11:26.031 INFO [12248]: _SERVER found -- 17:11:26.031 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 17:11:26.031 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:11:26.031 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=1rsle3obs14n17euqqk1vck7bgvdifr8 -- 17:11:26.031 INFO [12248]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 17:11:26.031 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:11:26.043 INFO [12248]: COREGRADE is stopping... -- 17:11:26.043 DEBUG [12248]: Closing database connection -- 17:11:26.043 SQL [12248]: pgsql_close() -- 17:11:26.047 INFO [12250]: COREGRADE is starting... -- 17:11:26.047 INFO [12250]: Version from config: 1.0 -- 17:11:26.047 DEBUG [12250]: Connecting to database... -- 17:11:26.047 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:26.047 SQL [12250]: pgsql_db_connect() -- 17:11:26.051 DEBUG [12250]: Database connection successful -- 17:11:26.051 INFO [12250]: _SERVER found -- 17:11:26.051 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 17:11:26.051 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:11:26.051 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=1rsle3obs14n17euqqk1vck7bgvdifr8 -- 17:11:26.051 INFO [12250]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 17:11:26.051 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:11:26.062 INFO [12250]: COREGRADE is stopping... -- 17:11:26.062 DEBUG [12250]: Closing database connection -- 17:11:26.062 SQL [12250]: pgsql_close() -- 17:11:26.081 INFO [12249]: COREGRADE is starting... -- 17:11:26.081 INFO [12249]: Version from config: 1.0 -- 17:11:26.081 DEBUG [12249]: Connecting to database... -- 17:11:26.081 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:26.081 SQL [12249]: pgsql_db_connect() -- 17:11:26.085 DEBUG [12249]: Database connection successful -- 17:11:26.085 INFO [12249]: _SERVER found -- 17:11:26.085 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 17:11:26.085 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:11:26.085 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=1rsle3obs14n17euqqk1vck7bgvdifr8 -- 17:11:26.085 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 17:11:26.085 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:11:26.097 INFO [12249]: COREGRADE is stopping... -- 17:11:26.097 DEBUG [12249]: Closing database connection -- 17:11:26.097 SQL [12249]: pgsql_close() -- 17:11:26.116 INFO [12248]: COREGRADE is starting... -- 17:11:26.116 INFO [12248]: Version from config: 1.0 -- 17:11:26.116 DEBUG [12248]: Connecting to database... -- 17:11:26.116 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:26.116 SQL [12248]: pgsql_db_connect() -- 17:11:26.121 DEBUG [12248]: Database connection successful -- 17:11:26.121 INFO [12248]: _SERVER found -- 17:11:26.121 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 17:11:26.121 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:11:26.121 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=1rsle3obs14n17euqqk1vck7bgvdifr8 -- 17:11:26.121 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 17:11:26.121 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:11:26.132 INFO [12248]: COREGRADE is stopping... -- 17:11:26.132 DEBUG [12248]: Closing database connection -- 17:11:26.132 SQL [12248]: pgsql_close() -- 17:11:26.144 INFO [12250]: COREGRADE is starting... -- 17:11:26.145 INFO [12250]: Version from config: 1.0 -- 17:11:26.145 DEBUG [12250]: Connecting to database... -- 17:11:26.145 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:26.145 SQL [12250]: pgsql_db_connect() -- 17:11:26.149 DEBUG [12250]: Database connection successful -- 17:11:26.149 INFO [12250]: _SERVER found -- 17:11:26.149 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 17:11:26.149 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:11:26.149 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=1rsle3obs14n17euqqk1vck7bgvdifr8 -- 17:11:26.149 INFO [12250]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 17:11:26.149 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:11:26.160 INFO [12250]: COREGRADE is stopping... -- 17:11:26.160 DEBUG [12250]: Closing database connection -- 17:11:26.160 SQL [12250]: pgsql_close() -- 17:11:26.180 INFO [12249]: COREGRADE is starting... -- 17:11:26.180 INFO [12249]: Version from config: 1.0 -- 17:11:26.180 DEBUG [12249]: Connecting to database... -- 17:11:26.180 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:26.180 SQL [12249]: pgsql_db_connect() -- 17:11:26.184 DEBUG [12249]: Database connection successful -- 17:11:26.184 INFO [12249]: _SERVER found -- 17:11:26.184 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 17:11:26.184 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:11:26.184 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=1rsle3obs14n17euqqk1vck7bgvdifr8 -- 17:11:26.184 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 17:11:26.184 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:11:26.196 INFO [12249]: COREGRADE is stopping... -- 17:11:26.196 DEBUG [12249]: Closing database connection -- 17:11:26.196 SQL [12249]: pgsql_close() -- 17:11:26.203 INFO [12248]: COREGRADE is starting... -- 17:11:26.204 INFO [12248]: Version from config: 1.0 -- 17:11:26.204 DEBUG [12248]: Connecting to database... -- 17:11:26.204 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:26.204 SQL [12248]: pgsql_db_connect() -- 17:11:26.208 DEBUG [12248]: Database connection successful -- 17:11:26.208 INFO [12248]: _SERVER found -- 17:11:26.208 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 17:11:26.208 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:11:26.208 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=1rsle3obs14n17euqqk1vck7bgvdifr8 -- 17:11:26.208 INFO [12248]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 17:11:26.208 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:11:26.219 INFO [12248]: COREGRADE is stopping... -- 17:11:26.219 DEBUG [12248]: Closing database connection -- 17:11:26.219 SQL [12248]: pgsql_close() -- 17:11:26.242 INFO [12250]: COREGRADE is starting... -- 17:11:26.242 INFO [12250]: Version from config: 1.0 -- 17:11:26.242 DEBUG [12250]: Connecting to database... -- 17:11:26.242 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:26.242 SQL [12250]: pgsql_db_connect() -- 17:11:26.246 DEBUG [12250]: Database connection successful -- 17:11:26.246 INFO [12250]: _SERVER found -- 17:11:26.246 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 17:11:26.246 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:11:26.246 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=1rsle3obs14n17euqqk1vck7bgvdifr8 -- 17:11:26.246 INFO [12250]: QUERY_STRING = /assets/js/pages/dashboard.js -- 17:11:26.246 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:11:26.258 INFO [12250]: COREGRADE is stopping... -- 17:11:26.258 DEBUG [12250]: Closing database connection -- 17:11:26.258 SQL [12250]: pgsql_close() -- 17:11:26.269 INFO [12249]: COREGRADE is starting... -- 17:11:26.269 INFO [12249]: Version from config: 1.0 -- 17:11:26.269 DEBUG [12249]: Connecting to database... -- 17:11:26.269 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:26.269 SQL [12249]: pgsql_db_connect() -- 17:11:26.273 DEBUG [12249]: Database connection successful -- 17:11:26.273 INFO [12249]: _SERVER found -- 17:11:26.273 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 17:11:26.273 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:11:26.273 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=1rsle3obs14n17euqqk1vck7bgvdifr8 -- 17:11:26.273 INFO [12249]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 17:11:26.273 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:11:26.285 INFO [12249]: COREGRADE is stopping... -- 17:11:26.285 DEBUG [12249]: Closing database connection -- 17:11:26.285 SQL [12249]: pgsql_close() -- 17:11:26.291 INFO [12248]: COREGRADE is starting... -- 17:11:26.291 INFO [12248]: Version from config: 1.0 -- 17:11:26.291 DEBUG [12248]: Connecting to database... -- 17:11:26.291 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:26.291 SQL [12248]: pgsql_db_connect() -- 17:11:26.295 DEBUG [12248]: Database connection successful -- 17:11:26.295 INFO [12248]: _SERVER found -- 17:11:26.295 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 17:11:26.295 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:11:26.295 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=1rsle3obs14n17euqqk1vck7bgvdifr8 -- 17:11:26.295 INFO [12248]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 17:11:26.295 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:11:26.307 INFO [12248]: COREGRADE is stopping... -- 17:11:26.307 DEBUG [12248]: Closing database connection -- 17:11:26.307 SQL [12248]: pgsql_close() -- 17:11:26.333 INFO [12250]: COREGRADE is starting... -- 17:11:26.333 INFO [12250]: Version from config: 1.0 -- 17:11:26.333 DEBUG [12250]: Connecting to database... -- 17:11:26.333 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:26.333 SQL [12250]: pgsql_db_connect() -- 17:11:26.337 DEBUG [12250]: Database connection successful -- 17:11:26.337 INFO [12250]: _SERVER found -- 17:11:26.337 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 17:11:26.337 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:11:26.337 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=1rsle3obs14n17euqqk1vck7bgvdifr8 -- 17:11:26.337 INFO [12250]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 17:11:26.337 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:11:26.349 INFO [12250]: COREGRADE is stopping... -- 17:11:26.349 DEBUG [12250]: Closing database connection -- 17:11:26.349 SQL [12250]: pgsql_close() -- 17:11:26.357 INFO [12249]: COREGRADE is starting... -- 17:11:26.357 INFO [12249]: Version from config: 1.0 -- 17:11:26.357 DEBUG [12249]: Connecting to database... -- 17:11:26.357 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:26.357 SQL [12249]: pgsql_db_connect() -- 17:11:26.361 DEBUG [12249]: Database connection successful -- 17:11:26.361 INFO [12249]: _SERVER found -- 17:11:26.361 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 17:11:26.361 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:11:26.361 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=1rsle3obs14n17euqqk1vck7bgvdifr8 -- 17:11:26.361 INFO [12249]: QUERY_STRING = /assets/js/pages/picker_date.js -- 17:11:26.361 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:11:26.373 INFO [12249]: COREGRADE is stopping... -- 17:11:26.373 DEBUG [12249]: Closing database connection -- 17:11:26.373 SQL [12249]: pgsql_close() -- 17:11:26.380 INFO [12248]: COREGRADE is starting... -- 17:11:26.381 INFO [12248]: Version from config: 1.0 -- 17:11:26.381 DEBUG [12248]: Connecting to database... -- 17:11:26.381 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:26.381 SQL [12248]: pgsql_db_connect() -- 17:11:26.385 DEBUG [12248]: Database connection successful -- 17:11:26.385 INFO [12248]: _SERVER found -- 17:11:26.385 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 17:11:26.385 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:11:26.385 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=1rsle3obs14n17euqqk1vck7bgvdifr8 -- 17:11:26.385 INFO [12248]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 17:11:26.385 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:11:26.397 INFO [12248]: COREGRADE is stopping... -- 17:11:26.397 DEBUG [12248]: Closing database connection -- 17:11:26.397 SQL [12248]: pgsql_close() -- 17:11:26.421 INFO [12250]: COREGRADE is starting... -- 17:11:26.422 INFO [12250]: Version from config: 1.0 -- 17:11:26.422 DEBUG [12250]: Connecting to database... -- 17:11:26.422 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:26.422 SQL [12250]: pgsql_db_connect() -- 17:11:26.426 DEBUG [12250]: Database connection successful -- 17:11:26.426 INFO [12250]: _SERVER found -- 17:11:26.426 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 17:11:26.426 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:11:26.426 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=1rsle3obs14n17euqqk1vck7bgvdifr8 -- 17:11:26.426 INFO [12250]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 17:11:26.426 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:11:26.437 INFO [12250]: COREGRADE is stopping... -- 17:11:26.437 DEBUG [12250]: Closing database connection -- 17:11:26.437 SQL [12250]: pgsql_close() -- 17:11:26.444 INFO [12249]: COREGRADE is starting... -- 17:11:26.444 INFO [12249]: Version from config: 1.0 -- 17:11:26.444 DEBUG [12249]: Connecting to database... -- 17:11:26.444 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:26.444 SQL [12249]: pgsql_db_connect() -- 17:11:26.448 DEBUG [12249]: Database connection successful -- 17:11:26.448 INFO [12249]: _SERVER found -- 17:11:26.448 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 17:11:26.448 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:11:26.448 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=1rsle3obs14n17euqqk1vck7bgvdifr8 -- 17:11:26.448 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 17:11:26.448 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:11:26.460 INFO [12249]: COREGRADE is stopping... -- 17:11:26.460 DEBUG [12249]: Closing database connection -- 17:11:26.460 SQL [12249]: pgsql_close() -- 17:11:26.469 INFO [12248]: COREGRADE is starting... -- 17:11:26.469 INFO [12248]: Version from config: 1.0 -- 17:11:26.469 DEBUG [12248]: Connecting to database... -- 17:11:26.469 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:26.469 SQL [12248]: pgsql_db_connect() -- 17:11:26.473 DEBUG [12248]: Database connection successful -- 17:11:26.473 INFO [12248]: _SERVER found -- 17:11:26.473 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 17:11:26.473 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:11:26.473 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=1rsle3obs14n17euqqk1vck7bgvdifr8 -- 17:11:26.473 INFO [12248]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 17:11:26.473 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:11:26.485 INFO [12248]: COREGRADE is stopping... -- 17:11:26.485 DEBUG [12248]: Closing database connection -- 17:11:26.485 SQL [12248]: pgsql_close() -- 17:11:26.509 INFO [12250]: COREGRADE is starting... -- 17:11:26.509 INFO [12250]: Version from config: 1.0 -- 17:11:26.509 DEBUG [12250]: Connecting to database... -- 17:11:26.509 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:26.509 SQL [12250]: pgsql_db_connect() -- 17:11:26.513 DEBUG [12250]: Database connection successful -- 17:11:26.513 INFO [12250]: _SERVER found -- 17:11:26.513 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 17:11:26.513 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:11:26.513 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=1rsle3obs14n17euqqk1vck7bgvdifr8 -- 17:11:26.513 INFO [12250]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 17:11:26.513 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:11:26.525 INFO [12250]: COREGRADE is stopping... -- 17:11:26.525 DEBUG [12250]: Closing database connection -- 17:11:26.525 SQL [12250]: pgsql_close() -- 17:11:26.531 INFO [12249]: COREGRADE is starting... -- 17:11:26.532 INFO [12249]: Version from config: 1.0 -- 17:11:26.532 DEBUG [12249]: Connecting to database... -- 17:11:26.532 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:26.532 SQL [12249]: pgsql_db_connect() -- 17:11:26.536 DEBUG [12249]: Database connection successful -- 17:11:26.536 INFO [12249]: _SERVER found -- 17:11:26.536 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 17:11:26.536 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:11:26.536 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=1rsle3obs14n17euqqk1vck7bgvdifr8 -- 17:11:26.536 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 17:11:26.536 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:11:26.547 INFO [12249]: COREGRADE is stopping... -- 17:11:26.547 DEBUG [12249]: Closing database connection -- 17:11:26.547 SQL [12249]: pgsql_close() -- 17:11:26.556 INFO [12248]: COREGRADE is starting... -- 17:11:26.556 INFO [12248]: Version from config: 1.0 -- 17:11:26.556 DEBUG [12248]: Connecting to database... -- 17:11:26.556 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:26.556 SQL [12248]: pgsql_db_connect() -- 17:11:26.561 DEBUG [12248]: Database connection successful -- 17:11:26.561 INFO [12248]: _SERVER found -- 17:11:26.561 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 17:11:26.561 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:11:26.561 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=1rsle3obs14n17euqqk1vck7bgvdifr8 -- 17:11:26.561 INFO [12248]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 17:11:26.561 INFO [12248]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:11:26.572 INFO [12248]: COREGRADE is stopping... -- 17:11:26.572 DEBUG [12248]: Closing database connection -- 17:11:26.572 SQL [12248]: pgsql_close() -- 17:11:26.597 INFO [12250]: COREGRADE is starting... -- 17:11:26.597 INFO [12250]: Version from config: 1.0 -- 17:11:26.597 DEBUG [12250]: Connecting to database... -- 17:11:26.597 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:26.597 SQL [12250]: pgsql_db_connect() -- 17:11:26.601 DEBUG [12250]: Database connection successful -- 17:11:26.601 INFO [12250]: _SERVER found -- 17:11:26.601 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 17:11:26.601 INFO [12250]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:11:26.601 INFO [12250]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=1rsle3obs14n17euqqk1vck7bgvdifr8 -- 17:11:26.601 INFO [12250]: QUERY_STRING = /assets/customjs/general.js -- 17:11:26.601 INFO [12250]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:11:26.613 INFO [12250]: COREGRADE is stopping... -- 17:11:26.613 DEBUG [12250]: Closing database connection -- 17:11:26.613 SQL [12250]: pgsql_close() -- 17:11:26.621 INFO [12249]: COREGRADE is starting... -- 17:11:26.622 INFO [12249]: Version from config: 1.0 -- 17:11:26.622 DEBUG [12249]: Connecting to database... -- 17:11:26.622 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:26.622 SQL [12249]: pgsql_db_connect() -- 17:11:26.626 DEBUG [12249]: Database connection successful -- 17:11:26.626 INFO [12249]: _SERVER found -- 17:11:26.626 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 17:11:26.626 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:11:26.626 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=1rsle3obs14n17euqqk1vck7bgvdifr8 -- 17:11:26.626 INFO [12249]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 17:11:26.626 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:11:26.637 INFO [12249]: COREGRADE is stopping... -- 17:11:26.637 DEBUG [12249]: Closing database connection -- 17:11:26.637 SQL [12249]: pgsql_close() -- 17:11:26.711 INFO [12249]: COREGRADE is starting... -- 17:11:26.711 INFO [12249]: Version from config: 1.0 -- 17:11:26.711 DEBUG [12249]: Connecting to database... -- 17:11:26.711 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:26.711 SQL [12249]: pgsql_db_connect() -- 17:11:26.715 DEBUG [12249]: Database connection successful -- 17:11:26.715 INFO [12249]: _SERVER found -- 17:11:26.715 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 17:11:26.715 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:11:26.715 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=1rsle3obs14n17euqqk1vck7bgvdifr8 -- 17:11:26.715 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 17:11:26.715 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:11:26.727 INFO [12249]: COREGRADE is stopping... -- 17:11:26.727 DEBUG [12249]: Closing database connection -- 17:11:26.727 SQL [12249]: pgsql_close() -- 17:11:26.801 INFO [12249]: COREGRADE is starting... -- 17:11:26.801 INFO [12249]: Version from config: 1.0 -- 17:11:26.801 DEBUG [12249]: Connecting to database... -- 17:11:26.801 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:26.801 SQL [12249]: pgsql_db_connect() -- 17:11:26.806 DEBUG [12249]: Database connection successful -- 17:11:26.806 INFO [12249]: _SERVER found -- 17:11:26.806 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 17:11:26.806 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:11:26.806 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=1rsle3obs14n17euqqk1vck7bgvdifr8 -- 17:11:26.806 INFO [12249]: QUERY_STRING = /assets/js/pages/picker_date.js -- 17:11:26.806 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:11:26.817 INFO [12249]: COREGRADE is stopping... -- 17:11:26.817 DEBUG [12249]: Closing database connection -- 17:11:26.817 SQL [12249]: pgsql_close() -- 17:11:26.890 INFO [12249]: COREGRADE is starting... -- 17:11:26.891 INFO [12249]: Version from config: 1.0 -- 17:11:26.891 DEBUG [12249]: Connecting to database... -- 17:11:26.891 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:26.891 SQL [12249]: pgsql_db_connect() -- 17:11:26.895 DEBUG [12249]: Database connection successful -- 17:11:26.895 INFO [12249]: _SERVER found -- 17:11:26.895 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 17:11:26.895 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:11:26.895 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=1rsle3obs14n17euqqk1vck7bgvdifr8 -- 17:11:26.895 INFO [12249]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 17:11:26.895 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:11:26.906 INFO [12249]: COREGRADE is stopping... -- 17:11:26.906 DEBUG [12249]: Closing database connection -- 17:11:26.906 SQL [12249]: pgsql_close() -- 17:11:26.979 INFO [12249]: COREGRADE is starting... -- 17:11:26.979 INFO [12249]: Version from config: 1.0 -- 17:11:26.979 DEBUG [12249]: Connecting to database... -- 17:11:26.979 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:26.979 SQL [12249]: pgsql_db_connect() -- 17:11:26.984 DEBUG [12249]: Database connection successful -- 17:11:26.984 INFO [12249]: _SERVER found -- 17:11:26.984 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 17:11:26.984 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:11:26.984 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=1rsle3obs14n17euqqk1vck7bgvdifr8 -- 17:11:26.984 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 17:11:26.984 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:11:26.997 INFO [12249]: COREGRADE is stopping... -- 17:11:26.997 DEBUG [12249]: Closing database connection -- 17:11:26.997 SQL [12249]: pgsql_close() -- 17:11:27.070 INFO [12249]: COREGRADE is starting... -- 17:11:27.071 INFO [12249]: Version from config: 1.0 -- 17:11:27.071 DEBUG [12249]: Connecting to database... -- 17:11:27.071 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:27.071 SQL [12249]: pgsql_db_connect() -- 17:11:27.075 DEBUG [12249]: Database connection successful -- 17:11:27.075 INFO [12249]: _SERVER found -- 17:11:27.075 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 17:11:27.075 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:11:27.075 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=1rsle3obs14n17euqqk1vck7bgvdifr8 -- 17:11:27.075 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 17:11:27.075 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:11:27.087 INFO [12249]: COREGRADE is stopping... -- 17:11:27.087 DEBUG [12249]: Closing database connection -- 17:11:27.087 SQL [12249]: pgsql_close() -- 17:11:27.160 INFO [12249]: COREGRADE is starting... -- 17:11:27.160 INFO [12249]: Version from config: 1.0 -- 17:11:27.160 DEBUG [12249]: Connecting to database... -- 17:11:27.160 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:27.160 SQL [12249]: pgsql_db_connect() -- 17:11:27.164 DEBUG [12249]: Database connection successful -- 17:11:27.164 INFO [12249]: _SERVER found -- 17:11:27.164 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 17:11:27.164 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:11:27.164 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=1rsle3obs14n17euqqk1vck7bgvdifr8 -- 17:11:27.164 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 17:11:27.164 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:11:27.176 INFO [12249]: COREGRADE is stopping... -- 17:11:27.176 DEBUG [12249]: Closing database connection -- 17:11:27.176 SQL [12249]: pgsql_close() -- 17:11:27.249 INFO [12249]: COREGRADE is starting... -- 17:11:27.249 INFO [12249]: Version from config: 1.0 -- 17:11:27.249 DEBUG [12249]: Connecting to database... -- 17:11:27.249 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:27.249 SQL [12249]: pgsql_db_connect() -- 17:11:27.254 DEBUG [12249]: Database connection successful -- 17:11:27.254 INFO [12249]: _SERVER found -- 17:11:27.254 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 17:11:27.254 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:11:27.254 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=1rsle3obs14n17euqqk1vck7bgvdifr8 -- 17:11:27.254 INFO [12249]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 17:11:27.254 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:11:27.265 INFO [12249]: COREGRADE is stopping... -- 17:11:27.265 DEBUG [12249]: Closing database connection -- 17:11:27.265 SQL [12249]: pgsql_close() -- 17:11:27.350 INFO [12249]: COREGRADE is starting... -- 17:11:27.350 INFO [12249]: Version from config: 1.0 -- 17:11:27.350 DEBUG [12249]: Connecting to database... -- 17:11:27.350 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:27.350 SQL [12249]: pgsql_db_connect() -- 17:11:27.354 DEBUG [12249]: Database connection successful -- 17:11:27.354 INFO [12249]: _SERVER found -- 17:11:27.354 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 17:11:27.354 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:11:27.354 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=1rsle3obs14n17euqqk1vck7bgvdifr8 -- 17:11:27.354 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 17:11:27.354 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:11:27.366 INFO [12249]: COREGRADE is stopping... -- 17:11:27.366 DEBUG [12249]: Closing database connection -- 17:11:27.366 SQL [12249]: pgsql_close() -- 17:11:27.439 INFO [12249]: COREGRADE is starting... -- 17:11:27.439 INFO [12249]: Version from config: 1.0 -- 17:11:27.439 DEBUG [12249]: Connecting to database... -- 17:11:27.439 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:27.439 SQL [12249]: pgsql_db_connect() -- 17:11:27.443 DEBUG [12249]: Database connection successful -- 17:11:27.443 INFO [12249]: _SERVER found -- 17:11:27.443 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 17:11:27.443 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:11:27.443 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=1rsle3obs14n17euqqk1vck7bgvdifr8 -- 17:11:27.443 INFO [12249]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 17:11:27.443 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:11:27.455 INFO [12249]: COREGRADE is stopping... -- 17:11:27.455 DEBUG [12249]: Closing database connection -- 17:11:27.455 SQL [12249]: pgsql_close() -- 17:11:27.529 INFO [12249]: COREGRADE is starting... -- 17:11:27.529 INFO [12249]: Version from config: 1.0 -- 17:11:27.529 DEBUG [12249]: Connecting to database... -- 17:11:27.529 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:11:27.529 SQL [12249]: pgsql_db_connect() -- 17:11:27.534 DEBUG [12249]: Database connection successful -- 17:11:27.534 INFO [12249]: _SERVER found -- 17:11:27.534 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 17:11:27.534 INFO [12249]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:11:27.534 INFO [12249]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=1rsle3obs14n17euqqk1vck7bgvdifr8 -- 17:11:27.534 INFO [12249]: QUERY_STRING = /assets/customjs/general.js -- 17:11:27.534 INFO [12249]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:11:27.545 INFO [12249]: COREGRADE is stopping... -- 17:11:27.545 DEBUG [12249]: Closing database connection -- 17:11:27.545 SQL [12249]: pgsql_close() -- 17:21:48.692 INFO [12347]: COREGRADE is starting... -- 17:21:48.693 INFO [12347]: Version from config: 1.0 -- 17:21:48.693 DEBUG [12347]: Connecting to database... -- 17:21:48.693 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:21:48.693 SQL [12347]: pgsql_db_connect() -- 17:21:48.697 DEBUG [12347]: Database connection successful -- 17:21:48.697 INFO [12347]: _SERVER found -- 17:21:48.697 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 17:21:48.697 INFO [12347]: SERVER_NAME = oameye.works.coregrade.com -- 17:21:48.697 INFO [12347]: QUERY_STRING = -- 17:21:48.697 INFO [12347]: HTTP_X_FORWARDED_FOR = 66.249.70.88 -- 17:21:48.734 INFO [12347]: COREGRADE is stopping... -- 17:21:48.734 DEBUG [12347]: Closing database connection -- 17:21:48.734 SQL [12347]: pgsql_close() -- 17:31:27.803 INFO [12305]: COREGRADE is starting... -- 17:31:27.803 INFO [12305]: Version from config: 1.0 -- 17:31:27.803 DEBUG [12305]: Connecting to database... -- 17:31:27.803 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:27.803 SQL [12305]: pgsql_db_connect() -- 17:31:27.808 DEBUG [12305]: Database connection successful -- 17:31:27.808 INFO [12305]: _SERVER found -- 17:31:27.808 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 17:31:27.808 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:27.808 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=1rsle3obs14n17euqqk1vck7bgvdifr8 -- 17:31:27.808 INFO [12305]: QUERY_STRING = /logout -- 17:31:27.808 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:27.840 INFO [12305]: COREGRADE is stopping... -- 17:31:27.840 DEBUG [12305]: Closing database connection -- 17:31:27.840 SQL [12305]: pgsql_close() -- 17:31:28.228 INFO [12305]: COREGRADE is starting... -- 17:31:28.228 INFO [12305]: Version from config: 1.0 -- 17:31:28.228 DEBUG [12305]: Connecting to database... -- 17:31:28.228 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:28.228 SQL [12305]: pgsql_db_connect() -- 17:31:28.233 DEBUG [12305]: Database connection successful -- 17:31:28.233 INFO [12305]: _SERVER found -- 17:31:28.233 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 17:31:28.233 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:28.233 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:28.233 INFO [12305]: QUERY_STRING = /start -- 17:31:28.233 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:28.267 INFO [12305]: COREGRADE is stopping... -- 17:31:28.267 DEBUG [12305]: Closing database connection -- 17:31:28.267 SQL [12305]: pgsql_close() -- 17:31:29.333 INFO [25055]: COREGRADE is starting... -- 17:31:29.333 INFO [25055]: Version from config: 1.0 -- 17:31:29.333 DEBUG [25055]: Connecting to database... -- 17:31:29.333 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:29.333 SQL [25055]: pgsql_db_connect() -- 17:31:29.337 DEBUG [25055]: Database connection successful -- 17:31:29.337 INFO [25055]: _SERVER found -- 17:31:29.337 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 17:31:29.337 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:29.337 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:29.337 INFO [25055]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 17:31:29.337 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:29.350 INFO [25055]: COREGRADE is stopping... -- 17:31:29.350 DEBUG [25055]: Closing database connection -- 17:31:29.350 SQL [25055]: pgsql_close() -- 17:31:29.403 INFO [12305]: COREGRADE is starting... -- 17:31:29.404 INFO [12305]: Version from config: 1.0 -- 17:31:29.404 DEBUG [12305]: Connecting to database... -- 17:31:29.404 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:29.404 SQL [12305]: pgsql_db_connect() -- 17:31:29.414 INFO [12246]: COREGRADE is starting... -- 17:31:29.415 INFO [12246]: Version from config: 1.0 -- 17:31:29.415 DEBUG [12246]: Connecting to database... -- 17:31:29.415 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:29.415 SQL [12246]: pgsql_db_connect() -- 17:31:29.408 DEBUG [12305]: Database connection successful -- 17:31:29.408 INFO [12305]: _SERVER found -- 17:31:29.408 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 17:31:29.408 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:29.408 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:29.408 INFO [12305]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 17:31:29.408 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:29.420 INFO [12305]: COREGRADE is stopping... -- 17:31:29.420 DEBUG [12305]: Closing database connection -- 17:31:29.420 SQL [12305]: pgsql_close() -- 17:31:29.419 DEBUG [12246]: Database connection successful -- 17:31:29.419 INFO [12246]: _SERVER found -- 17:31:29.419 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 17:31:29.419 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:29.419 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:29.419 INFO [12246]: QUERY_STRING = /assets/js/plugins/tables/datatables/datatables.min.js -- 17:31:29.419 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:29.432 INFO [12246]: COREGRADE is stopping... -- 17:31:29.432 DEBUG [12246]: Closing database connection -- 17:31:29.432 SQL [12246]: pgsql_close() -- 17:31:29.446 INFO [25055]: COREGRADE is starting... -- 17:31:29.446 INFO [25055]: Version from config: 1.0 -- 17:31:29.446 DEBUG [25055]: Connecting to database... -- 17:31:29.446 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:29.446 SQL [25055]: pgsql_db_connect() -- 17:31:29.450 DEBUG [25055]: Database connection successful -- 17:31:29.450 INFO [25055]: _SERVER found -- 17:31:29.450 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 17:31:29.450 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:29.450 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:29.450 INFO [25055]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3.min.js -- 17:31:29.450 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:29.462 INFO [25055]: COREGRADE is stopping... -- 17:31:29.462 DEBUG [25055]: Closing database connection -- 17:31:29.462 SQL [25055]: pgsql_close() -- 17:31:29.505 INFO [12305]: COREGRADE is starting... -- 17:31:29.505 INFO [12305]: Version from config: 1.0 -- 17:31:29.505 DEBUG [12305]: Connecting to database... -- 17:31:29.505 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:29.505 SQL [12305]: pgsql_db_connect() -- 17:31:29.509 DEBUG [12305]: Database connection successful -- 17:31:29.509 INFO [12305]: _SERVER found -- 17:31:29.509 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 17:31:29.509 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:29.509 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:29.509 INFO [12305]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 17:31:29.509 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:29.521 INFO [12305]: COREGRADE is stopping... -- 17:31:29.521 DEBUG [12305]: Closing database connection -- 17:31:29.521 SQL [12305]: pgsql_close() -- 17:31:29.892 INFO [12305]: COREGRADE is starting... -- 17:31:29.893 INFO [12305]: Version from config: 1.0 -- 17:31:29.893 DEBUG [12305]: Connecting to database... -- 17:31:29.893 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:29.893 SQL [12305]: pgsql_db_connect() -- 17:31:29.897 DEBUG [12305]: Database connection successful -- 17:31:29.897 INFO [12305]: _SERVER found -- 17:31:29.897 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 17:31:29.897 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:29.897 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:29.897 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 17:31:29.897 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:29.908 INFO [12305]: COREGRADE is stopping... -- 17:31:29.908 DEBUG [12305]: Closing database connection -- 17:31:29.908 SQL [12305]: pgsql_close() -- 17:31:29.994 INFO [12305]: COREGRADE is starting... -- 17:31:29.994 INFO [12305]: Version from config: 1.0 -- 17:31:29.994 DEBUG [12305]: Connecting to database... -- 17:31:29.994 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:29.994 SQL [12305]: pgsql_db_connect() -- 17:31:29.998 DEBUG [12305]: Database connection successful -- 17:31:29.998 INFO [12305]: _SERVER found -- 17:31:29.998 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 17:31:29.998 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:29.998 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:29.998 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 17:31:29.998 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:30.010 INFO [12305]: COREGRADE is stopping... -- 17:31:30.010 DEBUG [12305]: Closing database connection -- 17:31:30.010 SQL [12305]: pgsql_close() -- 17:31:30.095 INFO [12305]: COREGRADE is starting... -- 17:31:30.095 INFO [12305]: Version from config: 1.0 -- 17:31:30.095 DEBUG [12305]: Connecting to database... -- 17:31:30.095 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:30.095 SQL [12305]: pgsql_db_connect() -- 17:31:30.099 DEBUG [12305]: Database connection successful -- 17:31:30.099 INFO [12305]: _SERVER found -- 17:31:30.099 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 17:31:30.099 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:30.099 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:30.099 INFO [12305]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 17:31:30.099 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:30.111 INFO [12305]: COREGRADE is stopping... -- 17:31:30.111 DEBUG [12305]: Closing database connection -- 17:31:30.111 SQL [12305]: pgsql_close() -- 17:31:30.194 INFO [12305]: COREGRADE is starting... -- 17:31:30.194 INFO [12305]: Version from config: 1.0 -- 17:31:30.194 DEBUG [12305]: Connecting to database... -- 17:31:30.194 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:30.194 SQL [12305]: pgsql_db_connect() -- 17:31:30.198 DEBUG [12305]: Database connection successful -- 17:31:30.198 INFO [12305]: _SERVER found -- 17:31:30.198 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 17:31:30.198 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:30.198 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:30.198 INFO [12305]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 17:31:30.198 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:30.210 INFO [12305]: COREGRADE is stopping... -- 17:31:30.210 DEBUG [12305]: Closing database connection -- 17:31:30.210 SQL [12305]: pgsql_close() -- 17:31:30.295 INFO [12305]: COREGRADE is starting... -- 17:31:30.295 INFO [12305]: Version from config: 1.0 -- 17:31:30.295 DEBUG [12305]: Connecting to database... -- 17:31:30.295 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:30.295 SQL [12305]: pgsql_db_connect() -- 17:31:30.299 DEBUG [12305]: Database connection successful -- 17:31:30.299 INFO [12305]: _SERVER found -- 17:31:30.299 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 17:31:30.299 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:30.299 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:30.299 INFO [12305]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 17:31:30.299 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:30.311 INFO [12305]: COREGRADE is stopping... -- 17:31:30.311 DEBUG [12305]: Closing database connection -- 17:31:30.311 SQL [12305]: pgsql_close() -- 17:31:30.680 INFO [12305]: COREGRADE is starting... -- 17:31:30.680 INFO [12305]: Version from config: 1.0 -- 17:31:30.680 DEBUG [12305]: Connecting to database... -- 17:31:30.680 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:30.680 SQL [12305]: pgsql_db_connect() -- 17:31:30.684 DEBUG [12305]: Database connection successful -- 17:31:30.684 INFO [12305]: _SERVER found -- 17:31:30.684 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 17:31:30.684 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:30.684 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:30.684 INFO [12305]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 17:31:30.684 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:30.696 INFO [12305]: COREGRADE is stopping... -- 17:31:30.696 DEBUG [12305]: Closing database connection -- 17:31:30.696 SQL [12305]: pgsql_close() -- 17:31:31.353 INFO [12305]: COREGRADE is starting... -- 17:31:31.353 INFO [12305]: Version from config: 1.0 -- 17:31:31.353 DEBUG [12305]: Connecting to database... -- 17:31:31.353 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:31.353 SQL [12305]: pgsql_db_connect() -- 17:31:31.358 DEBUG [12305]: Database connection successful -- 17:31:31.358 INFO [12305]: _SERVER found -- 17:31:31.358 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 17:31:31.358 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:31.358 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:31.358 INFO [12305]: QUERY_STRING = /assets/js/pages/dashboard.js -- 17:31:31.358 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:31.369 INFO [12305]: COREGRADE is stopping... -- 17:31:31.369 DEBUG [12305]: Closing database connection -- 17:31:31.369 SQL [12305]: pgsql_close() -- 17:31:31.454 INFO [12305]: COREGRADE is starting... -- 17:31:31.454 INFO [12305]: Version from config: 1.0 -- 17:31:31.454 DEBUG [12305]: Connecting to database... -- 17:31:31.454 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:31.454 SQL [12305]: pgsql_db_connect() -- 17:31:31.458 DEBUG [12305]: Database connection successful -- 17:31:31.458 INFO [12305]: _SERVER found -- 17:31:31.458 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 17:31:31.458 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:31.458 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:31.458 INFO [12305]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 17:31:31.458 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:31.470 INFO [12305]: COREGRADE is stopping... -- 17:31:31.470 DEBUG [12305]: Closing database connection -- 17:31:31.470 SQL [12305]: pgsql_close() -- 17:31:31.854 INFO [12246]: COREGRADE is starting... -- 17:31:31.854 INFO [12246]: Version from config: 1.0 -- 17:31:31.854 DEBUG [12246]: Connecting to database... -- 17:31:31.854 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:31.854 SQL [12246]: pgsql_db_connect() -- 17:31:31.858 DEBUG [12246]: Database connection successful -- 17:31:31.858 INFO [12246]: _SERVER found -- 17:31:31.858 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 17:31:31.858 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:31.858 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:31.858 INFO [12246]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 17:31:31.858 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:31.870 INFO [12246]: COREGRADE is stopping... -- 17:31:31.870 DEBUG [12246]: Closing database connection -- 17:31:31.870 SQL [12246]: pgsql_close() -- 17:31:31.956 INFO [12246]: COREGRADE is starting... -- 17:31:31.956 INFO [12246]: Version from config: 1.0 -- 17:31:31.956 DEBUG [12246]: Connecting to database... -- 17:31:31.957 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:31.957 SQL [12246]: pgsql_db_connect() -- 17:31:31.961 DEBUG [12246]: Database connection successful -- 17:31:31.961 INFO [12246]: _SERVER found -- 17:31:31.961 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 17:31:31.961 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:31.961 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:31.961 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 17:31:31.961 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:31.972 INFO [12246]: COREGRADE is stopping... -- 17:31:31.972 DEBUG [12246]: Closing database connection -- 17:31:31.972 SQL [12246]: pgsql_close() -- 17:31:32.057 INFO [12246]: COREGRADE is starting... -- 17:31:32.057 INFO [12246]: Version from config: 1.0 -- 17:31:32.057 DEBUG [12246]: Connecting to database... -- 17:31:32.057 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:32.057 SQL [12246]: pgsql_db_connect() -- 17:31:32.062 DEBUG [12246]: Database connection successful -- 17:31:32.062 INFO [12246]: _SERVER found -- 17:31:32.062 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 17:31:32.062 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:32.062 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:32.062 INFO [12246]: QUERY_STRING = /assets/js/pages/picker_date.js -- 17:31:32.062 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:32.073 INFO [12246]: COREGRADE is stopping... -- 17:31:32.073 DEBUG [12246]: Closing database connection -- 17:31:32.073 SQL [12246]: pgsql_close() -- 17:31:32.158 INFO [12246]: COREGRADE is starting... -- 17:31:32.158 INFO [12246]: Version from config: 1.0 -- 17:31:32.158 DEBUG [12246]: Connecting to database... -- 17:31:32.158 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:32.158 SQL [12246]: pgsql_db_connect() -- 17:31:32.163 DEBUG [12246]: Database connection successful -- 17:31:32.163 INFO [12246]: _SERVER found -- 17:31:32.163 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 17:31:32.163 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:32.163 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:32.163 INFO [12246]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 17:31:32.163 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:32.174 INFO [12246]: COREGRADE is stopping... -- 17:31:32.174 DEBUG [12246]: Closing database connection -- 17:31:32.174 SQL [12246]: pgsql_close() -- 17:31:32.258 INFO [12246]: COREGRADE is starting... -- 17:31:32.258 INFO [12246]: Version from config: 1.0 -- 17:31:32.258 DEBUG [12246]: Connecting to database... -- 17:31:32.258 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:32.258 SQL [12246]: pgsql_db_connect() -- 17:31:32.262 DEBUG [12246]: Database connection successful -- 17:31:32.262 INFO [12246]: _SERVER found -- 17:31:32.262 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 17:31:32.262 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:32.262 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:32.262 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 17:31:32.262 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:32.274 INFO [12246]: COREGRADE is stopping... -- 17:31:32.274 DEBUG [12246]: Closing database connection -- 17:31:32.274 SQL [12246]: pgsql_close() -- 17:31:32.359 INFO [12246]: COREGRADE is starting... -- 17:31:32.359 INFO [12246]: Version from config: 1.0 -- 17:31:32.359 DEBUG [12246]: Connecting to database... -- 17:31:32.359 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:32.359 SQL [12246]: pgsql_db_connect() -- 17:31:32.364 DEBUG [12246]: Database connection successful -- 17:31:32.364 INFO [12246]: _SERVER found -- 17:31:32.364 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 17:31:32.364 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:32.364 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:32.364 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 17:31:32.364 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:32.375 INFO [12246]: COREGRADE is stopping... -- 17:31:32.375 DEBUG [12246]: Closing database connection -- 17:31:32.375 SQL [12246]: pgsql_close() -- 17:31:32.703 INFO [25055]: COREGRADE is starting... -- 17:31:32.703 INFO [25055]: Version from config: 1.0 -- 17:31:32.703 DEBUG [25055]: Connecting to database... -- 17:31:32.703 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:32.703 SQL [25055]: pgsql_db_connect() -- 17:31:32.707 DEBUG [25055]: Database connection successful -- 17:31:32.707 INFO [25055]: _SERVER found -- 17:31:32.707 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 17:31:32.707 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:32.707 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:32.707 INFO [25055]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 17:31:32.707 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:32.719 INFO [25055]: COREGRADE is stopping... -- 17:31:32.719 DEBUG [25055]: Closing database connection -- 17:31:32.719 SQL [25055]: pgsql_close() -- 17:31:32.745 INFO [12246]: COREGRADE is starting... -- 17:31:32.745 INFO [12246]: Version from config: 1.0 -- 17:31:32.745 DEBUG [12246]: Connecting to database... -- 17:31:32.745 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:32.745 SQL [12246]: pgsql_db_connect() -- 17:31:32.749 DEBUG [12246]: Database connection successful -- 17:31:32.749 INFO [12246]: _SERVER found -- 17:31:32.749 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 17:31:32.749 INFO [12246]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:32.749 INFO [12246]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:32.749 INFO [12246]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 17:31:32.749 INFO [12246]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:32.761 INFO [12246]: COREGRADE is stopping... -- 17:31:32.761 DEBUG [12246]: Closing database connection -- 17:31:32.761 SQL [12246]: pgsql_close() -- 17:31:32.805 INFO [25055]: COREGRADE is starting... -- 17:31:32.805 INFO [25055]: Version from config: 1.0 -- 17:31:32.805 DEBUG [25055]: Connecting to database... -- 17:31:32.805 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:32.805 SQL [25055]: pgsql_db_connect() -- 17:31:32.809 DEBUG [25055]: Database connection successful -- 17:31:32.809 INFO [25055]: _SERVER found -- 17:31:32.809 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 17:31:32.809 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:32.809 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:32.809 INFO [25055]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 17:31:32.809 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:32.820 INFO [25055]: COREGRADE is stopping... -- 17:31:32.820 DEBUG [25055]: Closing database connection -- 17:31:32.820 SQL [25055]: pgsql_close() -- 17:31:32.904 INFO [25055]: COREGRADE is starting... -- 17:31:32.905 INFO [25055]: Version from config: 1.0 -- 17:31:32.905 DEBUG [25055]: Connecting to database... -- 17:31:32.905 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:32.905 SQL [25055]: pgsql_db_connect() -- 17:31:32.909 DEBUG [25055]: Database connection successful -- 17:31:32.909 INFO [25055]: _SERVER found -- 17:31:32.909 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 17:31:32.909 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:32.909 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:32.909 INFO [25055]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 17:31:32.909 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:32.920 INFO [25055]: COREGRADE is stopping... -- 17:31:32.920 DEBUG [25055]: Closing database connection -- 17:31:32.920 SQL [25055]: pgsql_close() -- 17:31:32.982 INFO [12305]: COREGRADE is starting... -- 17:31:32.982 INFO [12305]: Version from config: 1.0 -- 17:31:32.982 DEBUG [12305]: Connecting to database... -- 17:31:32.983 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:32.983 SQL [12305]: pgsql_db_connect() -- 17:31:32.987 DEBUG [12305]: Database connection successful -- 17:31:32.987 INFO [12305]: _SERVER found -- 17:31:32.987 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 17:31:32.987 INFO [12305]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:32.987 INFO [12305]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:32.987 INFO [12305]: QUERY_STRING = /assets/customjs/general.js -- 17:31:32.987 INFO [12305]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:32.998 INFO [12305]: COREGRADE is stopping... -- 17:31:32.998 DEBUG [12305]: Closing database connection -- 17:31:32.998 SQL [12305]: pgsql_close() -- 17:31:33.005 INFO [25055]: COREGRADE is starting... -- 17:31:33.005 INFO [25055]: Version from config: 1.0 -- 17:31:33.005 DEBUG [25055]: Connecting to database... -- 17:31:33.005 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:33.005 SQL [25055]: pgsql_db_connect() -- 17:31:33.009 DEBUG [25055]: Database connection successful -- 17:31:33.009 INFO [25055]: _SERVER found -- 17:31:33.009 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 17:31:33.009 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:33.009 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:33.009 INFO [25055]: QUERY_STRING = /assets/js/plugins/visualization/d3/d3_tooltip.js -- 17:31:33.009 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:33.021 INFO [25055]: COREGRADE is stopping... -- 17:31:33.021 DEBUG [25055]: Closing database connection -- 17:31:33.021 SQL [25055]: pgsql_close() -- 17:31:33.106 INFO [25055]: COREGRADE is starting... -- 17:31:33.106 INFO [25055]: Version from config: 1.0 -- 17:31:33.106 DEBUG [25055]: Connecting to database... -- 17:31:33.106 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:33.106 SQL [25055]: pgsql_db_connect() -- 17:31:33.111 DEBUG [25055]: Database connection successful -- 17:31:33.111 INFO [25055]: _SERVER found -- 17:31:33.111 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 17:31:33.111 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:33.111 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:33.111 INFO [25055]: QUERY_STRING = /assets/js/plugins/forms/styling/switchery.min.js -- 17:31:33.111 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:33.122 INFO [25055]: COREGRADE is stopping... -- 17:31:33.122 DEBUG [25055]: Closing database connection -- 17:31:33.122 SQL [25055]: pgsql_close() -- 17:31:33.207 INFO [25055]: COREGRADE is starting... -- 17:31:33.207 INFO [25055]: Version from config: 1.0 -- 17:31:33.207 DEBUG [25055]: Connecting to database... -- 17:31:33.207 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:33.207 SQL [25055]: pgsql_db_connect() -- 17:31:33.211 DEBUG [25055]: Database connection successful -- 17:31:33.211 INFO [25055]: _SERVER found -- 17:31:33.211 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 17:31:33.211 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:33.211 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:33.211 INFO [25055]: QUERY_STRING = /assets/js/plugins/forms/styling/uniform.min.js -- 17:31:33.211 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:33.222 INFO [25055]: COREGRADE is stopping... -- 17:31:33.223 DEBUG [25055]: Closing database connection -- 17:31:33.223 SQL [25055]: pgsql_close() -- 17:31:33.308 INFO [25055]: COREGRADE is starting... -- 17:31:33.308 INFO [25055]: Version from config: 1.0 -- 17:31:33.308 DEBUG [25055]: Connecting to database... -- 17:31:33.308 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:33.308 SQL [25055]: pgsql_db_connect() -- 17:31:33.312 DEBUG [25055]: Database connection successful -- 17:31:33.312 INFO [25055]: _SERVER found -- 17:31:33.312 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 17:31:33.312 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:33.312 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:33.312 INFO [25055]: QUERY_STRING = /assets/js/plugins/forms/selects/bootstrap_multiselect.js -- 17:31:33.312 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:33.324 INFO [25055]: COREGRADE is stopping... -- 17:31:33.324 DEBUG [25055]: Closing database connection -- 17:31:33.324 SQL [25055]: pgsql_close() -- 17:31:33.410 INFO [25055]: COREGRADE is starting... -- 17:31:33.410 INFO [25055]: Version from config: 1.0 -- 17:31:33.410 DEBUG [25055]: Connecting to database... -- 17:31:33.410 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:33.410 SQL [25055]: pgsql_db_connect() -- 17:31:33.414 DEBUG [25055]: Database connection successful -- 17:31:33.414 INFO [25055]: _SERVER found -- 17:31:33.414 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 17:31:33.414 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:33.414 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:33.414 INFO [25055]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 17:31:33.414 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:33.426 INFO [25055]: COREGRADE is stopping... -- 17:31:33.426 DEBUG [25055]: Closing database connection -- 17:31:33.426 SQL [25055]: pgsql_close() -- 17:31:33.511 INFO [25055]: COREGRADE is starting... -- 17:31:33.511 INFO [25055]: Version from config: 1.0 -- 17:31:33.511 DEBUG [25055]: Connecting to database... -- 17:31:33.512 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:33.512 SQL [25055]: pgsql_db_connect() -- 17:31:33.516 DEBUG [25055]: Database connection successful -- 17:31:33.516 INFO [25055]: _SERVER found -- 17:31:33.516 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 17:31:33.516 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:33.516 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:33.516 INFO [25055]: QUERY_STRING = /assets/js/plugins/pickers/daterangepicker.js -- 17:31:33.516 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:33.527 INFO [25055]: COREGRADE is stopping... -- 17:31:33.527 DEBUG [25055]: Closing database connection -- 17:31:33.527 SQL [25055]: pgsql_close() -- 17:31:33.614 INFO [25055]: COREGRADE is starting... -- 17:31:33.614 INFO [25055]: Version from config: 1.0 -- 17:31:33.614 DEBUG [25055]: Connecting to database... -- 17:31:33.614 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:33.614 SQL [25055]: pgsql_db_connect() -- 17:31:33.618 DEBUG [25055]: Database connection successful -- 17:31:33.618 INFO [25055]: _SERVER found -- 17:31:33.618 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 17:31:33.618 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:33.618 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:33.618 INFO [25055]: QUERY_STRING = /assets/js/pages/datatables_basic.js -- 17:31:33.618 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:33.630 INFO [25055]: COREGRADE is stopping... -- 17:31:33.630 DEBUG [25055]: Closing database connection -- 17:31:33.630 SQL [25055]: pgsql_close() -- 17:31:33.715 INFO [25055]: COREGRADE is starting... -- 17:31:33.715 INFO [25055]: Version from config: 1.0 -- 17:31:33.715 DEBUG [25055]: Connecting to database... -- 17:31:33.715 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:33.715 SQL [25055]: pgsql_db_connect() -- 17:31:33.719 DEBUG [25055]: Database connection successful -- 17:31:33.719 INFO [25055]: _SERVER found -- 17:31:33.719 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 17:31:33.719 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:33.719 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:33.719 INFO [25055]: QUERY_STRING = /assets/js/pages/dashboard.js -- 17:31:33.719 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:33.731 INFO [25055]: COREGRADE is stopping... -- 17:31:33.731 DEBUG [25055]: Closing database connection -- 17:31:33.731 SQL [25055]: pgsql_close() -- 17:31:33.817 INFO [25055]: COREGRADE is starting... -- 17:31:33.818 INFO [25055]: Version from config: 1.0 -- 17:31:33.818 DEBUG [25055]: Connecting to database... -- 17:31:33.818 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:33.818 SQL [25055]: pgsql_db_connect() -- 17:31:33.822 DEBUG [25055]: Database connection successful -- 17:31:33.822 INFO [25055]: _SERVER found -- 17:31:33.822 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 17:31:33.822 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:33.822 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:33.822 INFO [25055]: QUERY_STRING = /assets/js/plugins/notifications/jgrowl.min.js -- 17:31:33.822 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:33.833 INFO [25055]: COREGRADE is stopping... -- 17:31:33.833 DEBUG [25055]: Closing database connection -- 17:31:33.833 SQL [25055]: pgsql_close() -- 17:31:33.918 INFO [25055]: COREGRADE is starting... -- 17:31:33.919 INFO [25055]: Version from config: 1.0 -- 17:31:33.919 DEBUG [25055]: Connecting to database... -- 17:31:33.919 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:33.919 SQL [25055]: pgsql_db_connect() -- 17:31:33.923 DEBUG [25055]: Database connection successful -- 17:31:33.923 INFO [25055]: _SERVER found -- 17:31:33.923 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 17:31:33.923 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:33.923 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:33.923 INFO [25055]: QUERY_STRING = /assets/js/plugins/notifications/bootbox.min.js -- 17:31:33.923 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:33.934 INFO [25055]: COREGRADE is stopping... -- 17:31:33.934 DEBUG [25055]: Closing database connection -- 17:31:33.934 SQL [25055]: pgsql_close() -- 17:31:34.019 INFO [25055]: COREGRADE is starting... -- 17:31:34.020 INFO [25055]: Version from config: 1.0 -- 17:31:34.020 DEBUG [25055]: Connecting to database... -- 17:31:34.020 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:34.020 SQL [25055]: pgsql_db_connect() -- 17:31:34.024 DEBUG [25055]: Database connection successful -- 17:31:34.024 INFO [25055]: _SERVER found -- 17:31:34.024 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 17:31:34.024 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:34.024 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:34.024 INFO [25055]: QUERY_STRING = /assets/js/plugins/ui/moment/moment.min.js -- 17:31:34.024 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:34.036 INFO [25055]: COREGRADE is stopping... -- 17:31:34.036 DEBUG [25055]: Closing database connection -- 17:31:34.036 SQL [25055]: pgsql_close() -- 17:31:35.386 INFO [25055]: COREGRADE is starting... -- 17:31:35.386 INFO [25055]: Version from config: 1.0 -- 17:31:35.386 DEBUG [25055]: Connecting to database... -- 17:31:35.386 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:35.386 SQL [25055]: pgsql_db_connect() -- 17:31:35.390 DEBUG [25055]: Database connection successful -- 17:31:35.390 INFO [25055]: _SERVER found -- 17:31:35.390 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 17:31:35.390 INFO [25055]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:35.390 INFO [25055]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:35.390 INFO [25055]: QUERY_STRING = /assets/js/plugins/pickers/anytime.min.js -- 17:31:35.390 INFO [25055]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:35.402 INFO [25055]: COREGRADE is stopping... -- 17:31:35.402 DEBUG [25055]: Closing database connection -- 17:31:35.402 SQL [25055]: pgsql_close() -- 17:31:44.047 INFO [12247]: COREGRADE is starting... -- 17:31:44.047 INFO [12247]: Version from config: 1.0 -- 17:31:44.048 DEBUG [12247]: Connecting to database... -- 17:31:44.048 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:44.048 SQL [12247]: pgsql_db_connect() -- 17:31:44.052 DEBUG [12247]: Database connection successful -- 17:31:44.052 INFO [12247]: _SERVER found -- 17:31:44.052 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 17:31:44.052 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:44.052 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:44.052 INFO [12247]: QUERY_STRING = /assets/js/pages/picker_date.js -- 17:31:44.052 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:44.065 INFO [12247]: COREGRADE is stopping... -- 17:31:44.065 DEBUG [12247]: Closing database connection -- 17:31:44.065 SQL [12247]: pgsql_close() -- 17:31:44.162 INFO [12247]: COREGRADE is starting... -- 17:31:44.162 INFO [12247]: Version from config: 1.0 -- 17:31:44.162 DEBUG [12247]: Connecting to database... -- 17:31:44.162 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:44.162 SQL [12247]: pgsql_db_connect() -- 17:31:44.167 DEBUG [12247]: Database connection successful -- 17:31:44.167 INFO [12247]: _SERVER found -- 17:31:44.167 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 17:31:44.167 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:44.167 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:44.167 INFO [12247]: QUERY_STRING = /assets/js/plugins/ui/ripple.min.js -- 17:31:44.167 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:44.178 INFO [12247]: COREGRADE is stopping... -- 17:31:44.178 DEBUG [12247]: Closing database connection -- 17:31:44.178 SQL [12247]: pgsql_close() -- 17:31:44.275 INFO [12247]: COREGRADE is starting... -- 17:31:44.275 INFO [12247]: Version from config: 1.0 -- 17:31:44.275 DEBUG [12247]: Connecting to database... -- 17:31:44.275 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:44.275 SQL [12247]: pgsql_db_connect() -- 17:31:44.279 DEBUG [12247]: Database connection successful -- 17:31:44.279 INFO [12247]: _SERVER found -- 17:31:44.279 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 17:31:44.279 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:44.279 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:44.279 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.js -- 17:31:44.279 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:44.291 INFO [12247]: COREGRADE is stopping... -- 17:31:44.291 DEBUG [12247]: Closing database connection -- 17:31:44.291 SQL [12247]: pgsql_close() -- 17:31:44.389 INFO [12247]: COREGRADE is starting... -- 17:31:44.389 INFO [12247]: Version from config: 1.0 -- 17:31:44.389 DEBUG [12247]: Connecting to database... -- 17:31:44.389 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:44.389 SQL [12247]: pgsql_db_connect() -- 17:31:44.393 DEBUG [12247]: Database connection successful -- 17:31:44.393 INFO [12247]: _SERVER found -- 17:31:44.393 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 17:31:44.393 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:44.393 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:44.393 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.date.js -- 17:31:44.393 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:44.405 INFO [12247]: COREGRADE is stopping... -- 17:31:44.405 DEBUG [12247]: Closing database connection -- 17:31:44.405 SQL [12247]: pgsql_close() -- 17:31:44.491 INFO [12247]: COREGRADE is starting... -- 17:31:44.492 INFO [12247]: Version from config: 1.0 -- 17:31:44.492 DEBUG [12247]: Connecting to database... -- 17:31:44.492 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:44.492 SQL [12247]: pgsql_db_connect() -- 17:31:44.496 DEBUG [12247]: Database connection successful -- 17:31:44.496 INFO [12247]: _SERVER found -- 17:31:44.496 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 17:31:44.496 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:44.496 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:44.496 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/picker.time.js -- 17:31:44.496 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:44.508 INFO [12247]: COREGRADE is stopping... -- 17:31:44.508 DEBUG [12247]: Closing database connection -- 17:31:44.508 SQL [12247]: pgsql_close() -- 17:31:44.594 INFO [12247]: COREGRADE is starting... -- 17:31:44.595 INFO [12247]: Version from config: 1.0 -- 17:31:44.595 DEBUG [12247]: Connecting to database... -- 17:31:44.595 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:44.595 SQL [12247]: pgsql_db_connect() -- 17:31:44.599 DEBUG [12247]: Database connection successful -- 17:31:44.599 INFO [12247]: _SERVER found -- 17:31:44.599 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 17:31:44.599 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:44.599 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:44.599 INFO [12247]: QUERY_STRING = /assets/js/plugins/pickers/pickadate/legacy.js -- 17:31:44.599 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:44.610 INFO [12247]: COREGRADE is stopping... -- 17:31:44.610 DEBUG [12247]: Closing database connection -- 17:31:44.610 SQL [12247]: pgsql_close() -- 17:31:44.736 INFO [12247]: COREGRADE is starting... -- 17:31:44.736 INFO [12247]: Version from config: 1.0 -- 17:31:44.736 DEBUG [12247]: Connecting to database... -- 17:31:44.736 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:44.736 SQL [12247]: pgsql_db_connect() -- 17:31:44.740 DEBUG [12247]: Database connection successful -- 17:31:44.740 INFO [12247]: _SERVER found -- 17:31:44.740 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 17:31:44.740 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:44.740 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:44.740 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/validation/jquery.validate.js -- 17:31:44.740 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:44.752 INFO [12247]: COREGRADE is stopping... -- 17:31:44.752 DEBUG [12247]: Closing database connection -- 17:31:44.752 SQL [12247]: pgsql_close() -- 17:31:44.837 INFO [12247]: COREGRADE is starting... -- 17:31:44.837 INFO [12247]: Version from config: 1.0 -- 17:31:44.837 DEBUG [12247]: Connecting to database... -- 17:31:44.837 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:44.837 SQL [12247]: pgsql_db_connect() -- 17:31:44.841 DEBUG [12247]: Database connection successful -- 17:31:44.841 INFO [12247]: _SERVER found -- 17:31:44.841 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 17:31:44.841 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:44.841 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:44.841 INFO [12247]: QUERY_STRING = /assets/js/plugins/forms/validation/additional-methods.js -- 17:31:44.841 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:44.853 INFO [12247]: COREGRADE is stopping... -- 17:31:44.853 DEBUG [12247]: Closing database connection -- 17:31:44.853 SQL [12247]: pgsql_close() -- 17:31:44.940 INFO [12247]: COREGRADE is starting... -- 17:31:44.940 INFO [12247]: Version from config: 1.0 -- 17:31:44.940 DEBUG [12247]: Connecting to database... -- 17:31:44.940 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:31:44.940 SQL [12247]: pgsql_db_connect() -- 17:31:44.944 DEBUG [12247]: Database connection successful -- 17:31:44.944 INFO [12247]: _SERVER found -- 17:31:44.944 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 17:31:44.944 INFO [12247]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:31:44.944 INFO [12247]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:31:44.944 INFO [12247]: QUERY_STRING = /assets/customjs/general.js -- 17:31:44.944 INFO [12247]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:31:44.956 INFO [12247]: COREGRADE is stopping... -- 17:31:44.956 DEBUG [12247]: Closing database connection -- 17:31:44.956 SQL [12247]: pgsql_close() -- 17:51:45.222 INFO [12334]: COREGRADE is starting... -- 17:51:45.222 INFO [12334]: Version from config: 1.0 -- 17:51:45.222 DEBUG [12334]: Connecting to database... -- 17:51:45.222 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:51:45.222 SQL [12334]: pgsql_db_connect() -- 17:51:45.226 DEBUG [12334]: Database connection successful -- 17:51:45.226 INFO [12334]: _SERVER found -- 17:51:45.226 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 17:51:45.226 INFO [12334]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 17:51:45.227 INFO [12334]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=lbasql5ctua13s6392g0r6gs5h8bge38 -- 17:51:45.227 INFO [12334]: QUERY_STRING = /logout -- 17:51:45.227 INFO [12334]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 17:51:45.261 INFO [12334]: COREGRADE is stopping... -- 17:51:45.261 DEBUG [12334]: Closing database connection -- 17:51:45.261 SQL [12334]: pgsql_close() -- 20:40:28.774 INFO [12248]: COREGRADE is starting... -- 20:40:28.774 INFO [12248]: Version from config: 1.0 -- 20:40:28.774 DEBUG [12248]: Connecting to database... -- 20:40:28.774 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:40:28.774 SQL [12248]: pgsql_db_connect() -- 20:40:28.784 DEBUG [12248]: Database connection successful -- 20:40:28.784 INFO [12248]: _SERVER found -- 20:40:28.784 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 20:40:28.784 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:40:28.784 INFO [12248]: HTTP_COOKIE = _ga=GA1.2.741559843.1578756903 -- 20:40:28.784 INFO [12248]: QUERY_STRING = -- 20:40:28.784 INFO [12248]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:40:28.882 INFO [12248]: COREGRADE is stopping... -- 20:40:28.882 DEBUG [12248]: Closing database connection -- 20:40:28.882 SQL [12248]: pgsql_close() -- 20:40:28.975 INFO [12248]: COREGRADE is starting... -- 20:40:28.975 INFO [12248]: Version from config: 1.0 -- 20:40:28.975 DEBUG [12248]: Connecting to database... -- 20:40:28.975 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:40:28.975 SQL [12248]: pgsql_db_connect() -- 20:40:28.979 DEBUG [12248]: Database connection successful -- 20:40:28.980 INFO [12248]: _SERVER found -- 20:40:28.980 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 20:40:28.980 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:40:28.980 INFO [12248]: HTTP_COOKIE = ci_session=lsdl0sa5olrbqsmr9avc6lcr44clesjc; _ga=GA1.2.741559843.1578756903 -- 20:40:28.980 INFO [12248]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 20:40:28.980 INFO [12248]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:40:28.991 INFO [12248]: COREGRADE is stopping... -- 20:40:28.991 DEBUG [12248]: Closing database connection -- 20:40:28.991 SQL [12248]: pgsql_close() -- 20:40:28.000 INFO [12248]: COREGRADE is starting... -- 20:40:28.000 INFO [12248]: Version from config: 1.0 -- 20:40:28.000 DEBUG [12248]: Connecting to database... -- 20:40:28.000 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:40:28.000 SQL [12248]: pgsql_db_connect() -- 20:40:29.004 DEBUG [12248]: Database connection successful -- 20:40:29.004 INFO [12248]: _SERVER found -- 20:40:29.004 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 20:40:29.004 INFO [12248]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:40:29.004 INFO [12248]: HTTP_COOKIE = ci_session=lsdl0sa5olrbqsmr9avc6lcr44clesjc; _ga=GA1.2.741559843.1578756903 -- 20:40:29.004 INFO [12248]: QUERY_STRING = /assets/images/savvy-block.png -- 20:40:29.004 INFO [12248]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:40:29.016 INFO [12248]: COREGRADE is stopping... -- 20:40:29.016 DEBUG [12248]: Closing database connection -- 20:40:29.016 SQL [12248]: pgsql_close() -- 03:09:56.320 INFO [12249]: COREGRADE is starting... -- 03:09:56.321 INFO [12249]: Version from config: 1.0 -- 03:09:56.321 DEBUG [12249]: Connecting to database... -- 03:09:56.321 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:09:56.321 SQL [12249]: pgsql_db_connect() -- 03:09:56.326 DEBUG [12249]: Database connection successful -- 03:09:56.326 INFO [12249]: _SERVER found -- 03:09:56.326 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 03:09:56.326 INFO [12249]: SERVER_NAME = oameye.works.coregrade.com -- 03:09:56.326 INFO [12249]: QUERY_STRING = /.well-known/acme-challenge/mjx5EbLF6mPuw4lCTtE6qCe4f71T4vtRcy3pEJLmUdo -- 03:09:56.326 INFO [12249]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 03:09:56.342 INFO [12249]: COREGRADE is stopping... -- 03:09:56.342 DEBUG [12249]: Closing database connection -- 03:09:56.342 SQL [12249]: pgsql_close() -- 03:09:56.575 INFO [12347]: COREGRADE is starting... -- 03:09:56.575 INFO [12347]: Version from config: 1.0 -- 03:09:56.575 DEBUG [12347]: Connecting to database... -- 03:09:56.575 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:09:56.575 SQL [12347]: pgsql_db_connect() -- 03:09:56.580 DEBUG [12347]: Database connection successful -- 03:09:56.580 INFO [12347]: _SERVER found -- 03:09:56.580 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 03:09:56.580 INFO [12347]: SERVER_NAME = oameye.works.coregrade.com -- 03:09:56.580 INFO [12347]: QUERY_STRING = /.well-known/acme-challenge/mjx5EbLF6mPuw4lCTtE6qCe4f71T4vtRcy3pEJLmUdo -- 03:09:56.580 INFO [12347]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 03:09:56.596 INFO [12347]: COREGRADE is stopping... -- 03:09:56.596 DEBUG [12347]: Closing database connection -- 03:09:56.596 SQL [12347]: pgsql_close() -- 03:09:56.633 INFO [12246]: COREGRADE is starting... -- 03:09:56.634 INFO [12246]: Version from config: 1.0 -- 03:09:56.634 DEBUG [12246]: Connecting to database... -- 03:09:56.634 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:09:56.634 SQL [12246]: pgsql_db_connect() -- 03:09:56.646 INFO [12305]: COREGRADE is starting... -- 03:09:56.646 INFO [12305]: Version from config: 1.0 -- 03:09:56.646 DEBUG [12305]: Connecting to database... -- 03:09:56.646 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:09:56.646 SQL [12305]: pgsql_db_connect() -- 03:09:56.638 DEBUG [12246]: Database connection successful -- 03:09:56.638 INFO [12246]: _SERVER found -- 03:09:56.638 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 03:09:56.638 INFO [12246]: SERVER_NAME = oameye.works.coregrade.com -- 03:09:56.638 INFO [12246]: QUERY_STRING = /.well-known/acme-challenge/mjx5EbLF6mPuw4lCTtE6qCe4f71T4vtRcy3pEJLmUdo -- 03:09:56.638 INFO [12246]: HTTP_X_FORWARDED_FOR = 34.209.232.166 -- 03:09:56.653 INFO [12246]: COREGRADE is stopping... -- 03:09:56.653 DEBUG [12246]: Closing database connection -- 03:09:56.653 SQL [12246]: pgsql_close() -- 03:09:56.651 DEBUG [12305]: Database connection successful -- 03:09:56.651 INFO [12305]: _SERVER found -- 03:09:56.651 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 03:09:56.651 INFO [12305]: SERVER_NAME = oameye.works.coregrade.com -- 03:09:56.651 INFO [12305]: QUERY_STRING = /.well-known/acme-challenge/mjx5EbLF6mPuw4lCTtE6qCe4f71T4vtRcy3pEJLmUdo -- 03:09:56.651 INFO [12305]: HTTP_X_FORWARDED_FOR = 18.196.96.172 -- 03:09:56.664 INFO [12305]: COREGRADE is stopping... -- 03:09:56.664 DEBUG [12305]: Closing database connection -- 03:09:56.664 SQL [12305]: pgsql_close() -- 03:30:39.621 INFO [25055]: COREGRADE is starting... -- 03:30:39.621 INFO [25055]: Version from config: 1.0 -- 03:30:39.621 DEBUG [25055]: Connecting to database... -- 03:30:39.621 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:30:39.621 SQL [25055]: pgsql_db_connect() -- 03:30:39.626 DEBUG [25055]: Database connection successful -- 03:30:39.626 INFO [25055]: _SERVER found -- 03:30:39.626 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 03:30:39.626 INFO [25055]: SERVER_NAME = oameye.works.coregrade.com -- 03:30:39.626 INFO [25055]: QUERY_STRING = /solr/admin/info/system -- 03:30:39.626 INFO [25055]: HTTP_X_FORWARDED_FOR = 195.54.160.123 -- 03:30:39.639 INFO [25055]: COREGRADE is stopping... -- 03:30:39.639 DEBUG [25055]: Closing database connection -- 03:30:39.639 SQL [25055]: pgsql_close() -- 03:33:44.601 INFO [12247]: COREGRADE is starting... -- 03:33:44.601 INFO [12247]: Version from config: 1.0 -- 03:33:44.601 DEBUG [12247]: Connecting to database... -- 03:33:44.601 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:33:44.601 SQL [12247]: pgsql_db_connect() -- 03:33:44.606 DEBUG [12247]: Database connection successful -- 03:33:44.606 INFO [12247]: _SERVER found -- 03:33:44.606 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 03:33:44.606 INFO [12247]: SERVER_NAME = oameye.works.coregrade.com -- 03:33:44.606 INFO [12247]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 03:33:44.606 INFO [12247]: HTTP_X_FORWARDED_FOR = 195.54.160.123 -- 03:33:44.641 INFO [12247]: COREGRADE is stopping... -- 03:33:44.641 DEBUG [12247]: Closing database connection -- 03:33:44.641 SQL [12247]: pgsql_close() -- 03:33:47.094 INFO [12247]: COREGRADE is starting... -- 03:33:47.095 INFO [12247]: Version from config: 1.0 -- 03:33:47.095 DEBUG [12247]: Connecting to database... -- 03:33:47.095 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:33:47.095 SQL [12247]: pgsql_db_connect() -- 03:33:47.099 DEBUG [12247]: Database connection successful -- 03:33:47.099 INFO [12247]: _SERVER found -- 03:33:47.099 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 03:33:47.099 INFO [12247]: SERVER_NAME = oameye.works.coregrade.com -- 03:33:47.099 INFO [12247]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 03:33:47.099 INFO [12247]: HTTP_X_FORWARDED_FOR = 195.54.160.123 -- 03:33:47.130 INFO [12247]: COREGRADE is stopping... -- 03:33:47.130 DEBUG [12247]: Closing database connection -- 03:33:47.130 SQL [12247]: pgsql_close() -- 03:39:26.117 INFO [12334]: COREGRADE is starting... -- 03:39:26.117 INFO [12334]: Version from config: 1.0 -- 03:39:26.117 DEBUG [12334]: Connecting to database... -- 03:39:26.117 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:39:26.117 SQL [12334]: pgsql_db_connect() -- 03:39:26.122 DEBUG [12334]: Database connection successful -- 03:39:26.122 INFO [12334]: _SERVER found -- 03:39:26.122 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 03:39:26.122 INFO [12334]: SERVER_NAME = oameye.works.coregrade.com -- 03:39:26.122 INFO [12334]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 03:39:26.122 INFO [12334]: HTTP_X_FORWARDED_FOR = 195.54.160.123 -- 03:39:26.155 INFO [12334]: COREGRADE is stopping... -- 03:39:26.155 DEBUG [12334]: Closing database connection -- 03:39:26.155 SQL [12334]: pgsql_close() -- 04:38:47.884 INFO [12248]: COREGRADE is starting... -- 04:38:47.884 INFO [12248]: Version from config: 1.0 -- 04:38:47.884 DEBUG [12248]: Connecting to database... -- 04:38:47.885 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:38:47.885 SQL [12248]: pgsql_db_connect() -- 04:38:47.890 DEBUG [12248]: Database connection successful -- 04:38:47.890 INFO [12248]: _SERVER found -- 04:38:47.890 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 04:38:47.890 INFO [12248]: SERVER_NAME = oameye.works.coregrade.com -- 04:38:47.890 INFO [12248]: QUERY_STRING = /api/jsonws/invoke -- 04:38:47.890 INFO [12248]: HTTP_X_FORWARDED_FOR = 195.54.160.123 -- 04:38:47.905 INFO [12248]: COREGRADE is stopping... -- 04:38:47.905 DEBUG [12248]: Closing database connection -- 04:38:47.905 SQL [12248]: pgsql_close() -- 11:37:41.962 INFO [3926]: COREGRADE is starting... -- 11:37:41.962 INFO [3926]: Version from config: 1.0 -- 11:37:41.962 DEBUG [3926]: Connecting to database... -- 11:37:41.962 DEBUG [3926]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:37:41.962 SQL [3926]: pgsql_db_connect() -- 11:37:41.967 DEBUG [3926]: Database connection successful -- 11:37:41.967 INFO [3926]: _SERVER found -- 11:37:41.967 INFO [3926]: REMOTE_ADDR = 10.0.0.15 -- 11:37:41.967 INFO [3926]: SERVER_NAME = oameye.works.coregrade.com -- 11:37:41.967 INFO [3926]: QUERY_STRING = /solr/admin/info/system -- 11:37:41.967 INFO [3926]: HTTP_X_FORWARDED_FOR = 195.54.160.123 -- 11:37:41.984 INFO [3926]: COREGRADE is stopping... -- 11:37:41.984 DEBUG [3926]: Closing database connection -- 11:37:41.984 SQL [3926]: pgsql_close() -- 11:49:49.082 INFO [12249]: COREGRADE is starting... -- 11:49:49.083 INFO [12249]: Version from config: 1.0 -- 11:49:49.083 DEBUG [12249]: Connecting to database... -- 11:49:49.083 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:49.083 SQL [12249]: pgsql_db_connect() -- 11:49:49.087 DEBUG [12249]: Database connection successful -- 11:49:49.087 INFO [12249]: _SERVER found -- 11:49:49.087 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 11:49:49.087 INFO [12249]: SERVER_NAME = oameye.works.coregrade.com -- 11:49:49.087 INFO [12249]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 11:49:49.087 INFO [12249]: HTTP_X_FORWARDED_FOR = 195.54.160.123 -- 11:49:49.124 INFO [12249]: COREGRADE is stopping... -- 11:49:49.124 DEBUG [12249]: Closing database connection -- 11:49:49.124 SQL [12249]: pgsql_close() -- 11:49:49.166 INFO [12249]: COREGRADE is starting... -- 11:49:49.167 INFO [12249]: Version from config: 1.0 -- 11:49:49.167 DEBUG [12249]: Connecting to database... -- 11:49:49.167 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:49.167 SQL [12249]: pgsql_db_connect() -- 11:49:49.171 DEBUG [12249]: Database connection successful -- 11:49:49.171 INFO [12249]: _SERVER found -- 11:49:49.171 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 11:49:49.171 INFO [12249]: SERVER_NAME = oameye.works.coregrade.com -- 11:49:49.171 INFO [12249]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 11:49:49.171 INFO [12249]: HTTP_X_FORWARDED_FOR = 195.54.160.123 -- 11:49:49.202 INFO [12249]: COREGRADE is stopping... -- 11:49:49.202 DEBUG [12249]: Closing database connection -- 11:49:49.202 SQL [12249]: pgsql_close() -- 12:07:50.504 INFO [12250]: COREGRADE is starting... -- 12:07:50.504 INFO [12250]: Version from config: 1.0 -- 12:07:50.504 DEBUG [12250]: Connecting to database... -- 12:07:50.504 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:50.505 SQL [12250]: pgsql_db_connect() -- 12:07:50.509 DEBUG [12250]: Database connection successful -- 12:07:50.509 INFO [12250]: _SERVER found -- 12:07:50.509 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 12:07:50.509 INFO [12250]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:50.509 INFO [12250]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 12:07:50.509 INFO [12250]: HTTP_X_FORWARDED_FOR = 195.54.160.123 -- 12:07:50.544 INFO [12250]: COREGRADE is stopping... -- 12:07:50.544 DEBUG [12250]: Closing database connection -- 12:07:50.544 SQL [12250]: pgsql_close() -- 13:23:19.967 INFO [12347]: COREGRADE is starting... -- 13:23:19.968 INFO [12347]: Version from config: 1.0 -- 13:23:19.968 DEBUG [12347]: Connecting to database... -- 13:23:19.968 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:23:19.968 SQL [12347]: pgsql_db_connect() -- 13:23:19.973 DEBUG [12347]: Database connection successful -- 13:23:19.973 INFO [12347]: _SERVER found -- 13:23:19.973 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 13:23:19.973 INFO [12347]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:23:19.973 INFO [12347]: QUERY_STRING = /adminer/index.php -- 13:23:19.973 INFO [12347]: HTTP_X_FORWARDED_FOR = 45.56.76.224 -- 13:23:19.992 INFO [12347]: COREGRADE is stopping... -- 13:23:19.992 DEBUG [12347]: Closing database connection -- 13:23:19.992 SQL [12347]: pgsql_close() -- 15:37:25.136 INFO [12246]: COREGRADE is starting... -- 15:37:25.136 INFO [12246]: Version from config: 1.0 -- 15:37:25.136 DEBUG [12246]: Connecting to database... -- 15:37:25.136 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:37:25.136 SQL [12246]: pgsql_db_connect() -- 15:37:25.141 DEBUG [12246]: Database connection successful -- 15:37:25.141 INFO [12246]: _SERVER found -- 15:37:25.141 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 15:37:25.141 INFO [12246]: SERVER_NAME = oameye.works.coregrade.com -- 15:37:25.141 INFO [12246]: QUERY_STRING = /api/jsonws/invoke -- 15:37:25.141 INFO [12246]: HTTP_X_FORWARDED_FOR = 195.54.160.123 -- 15:37:25.159 INFO [12246]: COREGRADE is stopping... -- 15:37:25.159 DEBUG [12246]: Closing database connection -- 15:37:25.159 SQL [12246]: pgsql_close() -- 18:18:01.373 INFO [12305]: COREGRADE is starting... -- 18:18:01.373 INFO [12305]: Version from config: 1.0 -- 18:18:01.373 DEBUG [12305]: Connecting to database... -- 18:18:01.373 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:18:01.373 SQL [12305]: pgsql_db_connect() -- 18:18:01.378 DEBUG [12305]: Database connection successful -- 18:18:01.378 INFO [12305]: _SERVER found -- 18:18:01.378 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 18:18:01.378 INFO [12305]: SERVER_NAME = oameye.works.coregrade.com -- 18:18:01.378 INFO [12305]: QUERY_STRING = /solr/admin/info/system -- 18:18:01.378 INFO [12305]: HTTP_X_FORWARDED_FOR = 195.54.160.123 -- 18:18:01.392 INFO [12305]: COREGRADE is stopping... -- 18:18:01.392 DEBUG [12305]: Closing database connection -- 18:18:01.392 SQL [12305]: pgsql_close() -- 18:18:23.664 INFO [25055]: COREGRADE is starting... -- 18:18:23.665 INFO [25055]: Version from config: 1.0 -- 18:18:23.665 DEBUG [25055]: Connecting to database... -- 18:18:23.665 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:18:23.665 SQL [25055]: pgsql_db_connect() -- 18:18:23.669 DEBUG [25055]: Database connection successful -- 18:18:23.669 INFO [25055]: _SERVER found -- 18:18:23.669 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 18:18:23.669 INFO [25055]: SERVER_NAME = oameye.works.coregrade.com -- 18:18:23.669 INFO [25055]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 18:18:23.669 INFO [25055]: HTTP_X_FORWARDED_FOR = 195.54.160.123 -- 18:18:23.715 INFO [25055]: COREGRADE is stopping... -- 18:18:23.715 DEBUG [25055]: Closing database connection -- 18:18:23.715 SQL [25055]: pgsql_close() -- 18:18:26.247 INFO [25055]: COREGRADE is starting... -- 18:18:26.248 INFO [25055]: Version from config: 1.0 -- 18:18:26.248 DEBUG [25055]: Connecting to database... -- 18:18:26.248 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:18:26.248 SQL [25055]: pgsql_db_connect() -- 18:18:26.252 DEBUG [25055]: Database connection successful -- 18:18:26.252 INFO [25055]: _SERVER found -- 18:18:26.252 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 18:18:26.252 INFO [25055]: SERVER_NAME = oameye.works.coregrade.com -- 18:18:26.252 INFO [25055]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 18:18:26.252 INFO [25055]: HTTP_X_FORWARDED_FOR = 195.54.160.123 -- 18:18:26.285 INFO [25055]: COREGRADE is stopping... -- 18:18:26.285 DEBUG [25055]: Closing database connection -- 18:18:26.286 SQL [25055]: pgsql_close() -- 18:19:10.446 INFO [12247]: COREGRADE is starting... -- 18:19:10.447 INFO [12247]: Version from config: 1.0 -- 18:19:10.447 DEBUG [12247]: Connecting to database... -- 18:19:10.447 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:19:10.447 SQL [12247]: pgsql_db_connect() -- 18:19:10.451 DEBUG [12247]: Database connection successful -- 18:19:10.451 INFO [12247]: _SERVER found -- 18:19:10.451 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 18:19:10.451 INFO [12247]: SERVER_NAME = oameye.works.coregrade.com -- 18:19:10.451 INFO [12247]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 18:19:10.451 INFO [12247]: HTTP_X_FORWARDED_FOR = 195.54.160.123 -- 18:19:10.485 INFO [12247]: COREGRADE is stopping... -- 18:19:10.485 DEBUG [12247]: Closing database connection -- 18:19:10.485 SQL [12247]: pgsql_close() -- 18:28:59.439 INFO [12334]: COREGRADE is starting... -- 18:28:59.439 INFO [12334]: Version from config: 1.0 -- 18:28:59.439 DEBUG [12334]: Connecting to database... -- 18:28:59.439 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:28:59.439 SQL [12334]: pgsql_db_connect() -- 18:28:59.445 DEBUG [12334]: Database connection successful -- 18:28:59.445 INFO [12334]: _SERVER found -- 18:28:59.445 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 18:28:59.445 INFO [12334]: SERVER_NAME = oameye.works.coregrade.com -- 18:28:59.445 INFO [12334]: QUERY_STRING = /api/jsonws/invoke -- 18:28:59.445 INFO [12334]: HTTP_X_FORWARDED_FOR = 195.54.160.123 -- 18:28:59.459 INFO [12334]: COREGRADE is stopping... -- 18:28:59.459 DEBUG [12334]: Closing database connection -- 18:28:59.459 SQL [12334]: pgsql_close() -- 18:41:38.402 INFO [12248]: COREGRADE is starting... -- 18:41:38.402 INFO [12248]: Version from config: 1.0 -- 18:41:38.402 DEBUG [12248]: Connecting to database... -- 18:41:38.402 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:41:38.402 SQL [12248]: pgsql_db_connect() -- 18:41:38.406 DEBUG [12248]: Database connection successful -- 18:41:38.406 INFO [12248]: _SERVER found -- 18:41:38.406 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 18:41:38.406 INFO [12248]: SERVER_NAME = oameye.works.coregrade.com -- 18:41:38.406 INFO [12248]: QUERY_STRING = /TP/public/index.php -- 18:41:38.406 INFO [12248]: HTTP_X_FORWARDED_FOR = 182.61.148.212 -- 18:41:38.421 INFO [12248]: COREGRADE is stopping... -- 18:41:38.421 DEBUG [12248]: Closing database connection -- 18:41:38.421 SQL [12248]: pgsql_close() -- 18:41:39.788 INFO [12248]: COREGRADE is starting... -- 18:41:39.789 INFO [12248]: Version from config: 1.0 -- 18:41:39.789 DEBUG [12248]: Connecting to database... -- 18:41:39.789 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:41:39.789 SQL [12248]: pgsql_db_connect() -- 18:41:39.793 DEBUG [12248]: Database connection successful -- 18:41:39.793 INFO [12248]: _SERVER found -- 18:41:39.793 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 18:41:39.793 INFO [12248]: SERVER_NAME = oameye.works.coregrade.com -- 18:41:39.793 INFO [12248]: QUERY_STRING = /TP/index.php -- 18:41:39.793 INFO [12248]: HTTP_X_FORWARDED_FOR = 182.61.148.212 -- 18:41:39.804 INFO [12248]: COREGRADE is stopping... -- 18:41:39.804 DEBUG [12248]: Closing database connection -- 18:41:39.804 SQL [12248]: pgsql_close() -- 18:41:41.135 INFO [12248]: COREGRADE is starting... -- 18:41:41.135 INFO [12248]: Version from config: 1.0 -- 18:41:41.135 DEBUG [12248]: Connecting to database... -- 18:41:41.135 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:41:41.135 SQL [12248]: pgsql_db_connect() -- 18:41:41.140 DEBUG [12248]: Database connection successful -- 18:41:41.140 INFO [12248]: _SERVER found -- 18:41:41.140 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 18:41:41.140 INFO [12248]: SERVER_NAME = oameye.works.coregrade.com -- 18:41:41.140 INFO [12248]: QUERY_STRING = /thinkphp/html/public/index.php -- 18:41:41.140 INFO [12248]: HTTP_X_FORWARDED_FOR = 182.61.148.212 -- 18:41:41.151 INFO [12248]: COREGRADE is stopping... -- 18:41:41.151 DEBUG [12248]: Closing database connection -- 18:41:41.151 SQL [12248]: pgsql_close() -- 18:41:42.481 INFO [12248]: COREGRADE is starting... -- 18:41:42.481 INFO [12248]: Version from config: 1.0 -- 18:41:42.481 DEBUG [12248]: Connecting to database... -- 18:41:42.481 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:41:42.481 SQL [12248]: pgsql_db_connect() -- 18:41:42.485 DEBUG [12248]: Database connection successful -- 18:41:42.485 INFO [12248]: _SERVER found -- 18:41:42.485 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 18:41:42.485 INFO [12248]: SERVER_NAME = oameye.works.coregrade.com -- 18:41:42.485 INFO [12248]: QUERY_STRING = /html/public/index.php -- 18:41:42.485 INFO [12248]: HTTP_X_FORWARDED_FOR = 182.61.148.212 -- 18:41:42.496 INFO [12248]: COREGRADE is stopping... -- 18:41:42.496 DEBUG [12248]: Closing database connection -- 18:41:42.496 SQL [12248]: pgsql_close() -- 18:41:43.863 INFO [12248]: COREGRADE is starting... -- 18:41:43.863 INFO [12248]: Version from config: 1.0 -- 18:41:43.863 DEBUG [12248]: Connecting to database... -- 18:41:43.864 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:41:43.864 SQL [12248]: pgsql_db_connect() -- 18:41:43.868 DEBUG [12248]: Database connection successful -- 18:41:43.868 INFO [12248]: _SERVER found -- 18:41:43.868 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 18:41:43.868 INFO [12248]: SERVER_NAME = oameye.works.coregrade.com -- 18:41:43.868 INFO [12248]: QUERY_STRING = /public/index.php -- 18:41:43.868 INFO [12248]: HTTP_X_FORWARDED_FOR = 182.61.148.212 -- 18:41:43.879 INFO [12248]: COREGRADE is stopping... -- 18:41:43.879 DEBUG [12248]: Closing database connection -- 18:41:43.879 SQL [12248]: pgsql_close() -- 18:41:45.328 INFO [12248]: COREGRADE is starting... -- 18:41:45.328 INFO [12248]: Version from config: 1.0 -- 18:41:45.328 DEBUG [12248]: Connecting to database... -- 18:41:45.328 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:41:45.328 SQL [12248]: pgsql_db_connect() -- 18:41:45.332 DEBUG [12248]: Database connection successful -- 18:41:45.332 INFO [12248]: _SERVER found -- 18:41:45.332 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 18:41:45.332 INFO [12248]: SERVER_NAME = oameye.works.coregrade.com -- 18:41:45.332 INFO [12248]: QUERY_STRING = /TP/html/public/index.php -- 18:41:45.332 INFO [12248]: HTTP_X_FORWARDED_FOR = 182.61.148.212 -- 18:41:45.343 INFO [12248]: COREGRADE is stopping... -- 18:41:45.344 DEBUG [12248]: Closing database connection -- 18:41:45.344 SQL [12248]: pgsql_close() -- 18:41:46.682 INFO [12248]: COREGRADE is starting... -- 18:41:46.682 INFO [12248]: Version from config: 1.0 -- 18:41:46.682 DEBUG [12248]: Connecting to database... -- 18:41:46.682 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:41:46.682 SQL [12248]: pgsql_db_connect() -- 18:41:46.686 DEBUG [12248]: Database connection successful -- 18:41:46.686 INFO [12248]: _SERVER found -- 18:41:46.686 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 18:41:46.686 INFO [12248]: SERVER_NAME = oameye.works.coregrade.com -- 18:41:46.686 INFO [12248]: QUERY_STRING = /elrekt.php -- 18:41:46.686 INFO [12248]: HTTP_X_FORWARDED_FOR = 182.61.148.212 -- 18:41:46.697 INFO [12248]: COREGRADE is stopping... -- 18:41:46.697 DEBUG [12248]: Closing database connection -- 18:41:46.697 SQL [12248]: pgsql_close() -- 18:41:48.091 INFO [12248]: COREGRADE is starting... -- 18:41:48.091 INFO [12248]: Version from config: 1.0 -- 18:41:48.091 DEBUG [12248]: Connecting to database... -- 18:41:48.091 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:41:48.091 SQL [12248]: pgsql_db_connect() -- 18:41:48.095 DEBUG [12248]: Database connection successful -- 18:41:48.095 INFO [12248]: _SERVER found -- 18:41:48.095 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 18:41:48.095 INFO [12248]: SERVER_NAME = oameye.works.coregrade.com -- 18:41:48.095 INFO [12248]: QUERY_STRING = -- 18:41:48.095 INFO [12248]: HTTP_X_FORWARDED_FOR = 182.61.148.212 -- 18:41:48.129 INFO [12248]: COREGRADE is stopping... -- 18:41:48.129 DEBUG [12248]: Closing database connection -- 18:41:48.129 SQL [12248]: pgsql_close() -- 18:41:49.467 INFO [12248]: COREGRADE is starting... -- 18:41:49.467 INFO [12248]: Version from config: 1.0 -- 18:41:49.467 DEBUG [12248]: Connecting to database... -- 18:41:49.468 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:41:49.468 SQL [12248]: pgsql_db_connect() -- 18:41:49.472 DEBUG [12248]: Database connection successful -- 18:41:49.472 INFO [12248]: _SERVER found -- 18:41:49.472 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 18:41:49.472 INFO [12248]: SERVER_NAME = oameye.works.coregrade.com -- 18:41:49.472 INFO [12248]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 18:41:49.472 INFO [12248]: HTTP_X_FORWARDED_FOR = 182.61.148.212 -- 18:41:49.503 INFO [12248]: COREGRADE is stopping... -- 18:41:49.503 DEBUG [12248]: Closing database connection -- 18:41:49.503 SQL [12248]: pgsql_close() -- 18:41:50.820 INFO [12248]: COREGRADE is starting... -- 18:41:50.821 INFO [12248]: Version from config: 1.0 -- 18:41:50.821 DEBUG [12248]: Connecting to database... -- 18:41:50.821 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:41:50.821 SQL [12248]: pgsql_db_connect() -- 18:41:50.825 DEBUG [12248]: Database connection successful -- 18:41:50.825 INFO [12248]: _SERVER found -- 18:41:50.825 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 18:41:50.825 INFO [12248]: SERVER_NAME = oameye.works.coregrade.com -- 18:41:50.825 INFO [12248]: QUERY_STRING = s=captcha -- 18:41:50.825 INFO [12248]: HTTP_X_FORWARDED_FOR = 182.61.148.212 -- 18:41:50.856 INFO [12248]: COREGRADE is stopping... -- 18:41:50.856 DEBUG [12248]: Closing database connection -- 18:41:50.856 SQL [12248]: pgsql_close() -- 18:41:52.210 INFO [3926]: COREGRADE is starting... -- 18:41:52.210 INFO [3926]: Version from config: 1.0 -- 18:41:52.210 DEBUG [3926]: Connecting to database... -- 18:41:52.210 DEBUG [3926]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:41:52.210 SQL [3926]: pgsql_db_connect() -- 18:41:52.214 DEBUG [3926]: Database connection successful -- 18:41:52.214 INFO [3926]: _SERVER found -- 18:41:52.214 INFO [3926]: REMOTE_ADDR = 10.0.0.15 -- 18:41:52.214 INFO [3926]: SERVER_NAME = oameye.works.coregrade.com -- 18:41:52.214 INFO [3926]: QUERY_STRING = -- 18:41:52.214 INFO [3926]: HTTP_X_FORWARDED_FOR = 182.61.148.212 -- 18:41:52.257 INFO [3926]: COREGRADE is stopping... -- 18:41:52.257 DEBUG [3926]: Closing database connection -- 18:41:52.257 SQL [3926]: pgsql_close() -- 18:51:10.916 INFO [12249]: COREGRADE is starting... -- 18:51:10.916 INFO [12249]: Version from config: 1.0 -- 18:51:10.916 DEBUG [12249]: Connecting to database... -- 18:51:10.916 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:51:10.916 SQL [12249]: pgsql_db_connect() -- 18:51:10.920 DEBUG [12249]: Database connection successful -- 18:51:10.920 INFO [12249]: _SERVER found -- 18:51:10.920 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 18:51:10.920 INFO [12249]: SERVER_NAME = oameye.works.coregrade.com -- 18:51:10.920 INFO [12249]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 18:51:10.920 INFO [12249]: HTTP_X_FORWARDED_FOR = 195.54.160.123 -- 18:51:10.935 INFO [12249]: COREGRADE is stopping... -- 18:51:10.935 DEBUG [12249]: Closing database connection -- 18:51:10.935 SQL [12249]: pgsql_close() -- 18:56:05.971 INFO [12250]: COREGRADE is starting... -- 18:56:05.972 INFO [12250]: Version from config: 1.0 -- 18:56:05.972 DEBUG [12250]: Connecting to database... -- 18:56:05.972 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:56:05.972 SQL [12250]: pgsql_db_connect() -- 18:56:05.976 DEBUG [12250]: Database connection successful -- 18:56:05.976 INFO [12250]: _SERVER found -- 18:56:05.976 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 18:56:05.976 INFO [12250]: SERVER_NAME = oameye.works.coregrade.com -- 18:56:05.976 INFO [12250]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 18:56:05.976 INFO [12250]: HTTP_X_FORWARDED_FOR = 195.54.160.123 -- 18:56:05.989 INFO [12250]: COREGRADE is stopping... -- 18:56:05.989 DEBUG [12250]: Closing database connection -- 18:56:05.989 SQL [12250]: pgsql_close() -- 20:05:01.074 INFO [12347]: COREGRADE is starting... -- 20:05:01.074 INFO [12347]: Version from config: 1.0 -- 20:05:01.074 DEBUG [12347]: Connecting to database... -- 20:05:01.074 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:05:01.074 SQL [12347]: pgsql_db_connect() -- 20:05:01.080 DEBUG [12347]: Database connection successful -- 20:05:01.080 INFO [12347]: _SERVER found -- 20:05:01.080 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 20:05:01.080 INFO [12347]: SERVER_NAME = oameye.works.coregrade.com -- 20:05:01.080 INFO [12347]: QUERY_STRING = -- 20:05:01.080 INFO [12347]: HTTP_X_FORWARDED_FOR = 161.35.116.133 -- 20:05:01.155 INFO [12347]: COREGRADE is stopping... -- 20:05:01.155 DEBUG [12347]: Closing database connection -- 20:05:01.155 SQL [12347]: pgsql_close() -- 20:18:01.519 INFO [12246]: COREGRADE is starting... -- 20:18:01.519 INFO [12246]: Version from config: 1.0 -- 20:18:01.519 DEBUG [12246]: Connecting to database... -- 20:18:01.519 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:18:01.519 SQL [12246]: pgsql_db_connect() -- 20:18:01.524 DEBUG [12246]: Database connection successful -- 20:18:01.524 INFO [12246]: _SERVER found -- 20:18:01.524 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 20:18:01.524 INFO [12246]: SERVER_NAME = oameye.works.coregrade.com -- 20:18:01.524 INFO [12246]: QUERY_STRING = -- 20:18:01.524 INFO [12246]: HTTP_X_FORWARDED_FOR = 80.82.68.17 -- 20:18:01.559 INFO [12246]: COREGRADE is stopping... -- 20:18:01.559 DEBUG [12246]: Closing database connection -- 20:18:01.559 SQL [12246]: pgsql_close() -- 20:18:01.850 INFO [12246]: COREGRADE is starting... -- 20:18:01.850 INFO [12246]: Version from config: 1.0 -- 20:18:01.850 DEBUG [12246]: Connecting to database... -- 20:18:01.850 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:18:01.850 SQL [12246]: pgsql_db_connect() -- 20:18:01.854 DEBUG [12246]: Database connection successful -- 20:18:01.854 INFO [12246]: _SERVER found -- 20:18:01.854 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 20:18:01.854 INFO [12246]: SERVER_NAME = oameye.works.coregrade.com -- 20:18:01.854 INFO [12246]: QUERY_STRING = /robots.txt -- 20:18:01.854 INFO [12246]: HTTP_X_FORWARDED_FOR = 80.82.68.17 -- 20:18:01.866 INFO [12246]: COREGRADE is stopping... -- 20:18:01.866 DEBUG [12246]: Closing database connection -- 20:18:01.866 SQL [12246]: pgsql_close() -- 21:37:02.292 INFO [12305]: COREGRADE is starting... -- 21:37:02.293 INFO [12305]: Version from config: 1.0 -- 21:37:02.293 DEBUG [12305]: Connecting to database... -- 21:37:02.293 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:37:02.293 SQL [12305]: pgsql_db_connect() -- 21:37:02.298 DEBUG [12305]: Database connection successful -- 21:37:02.298 INFO [12305]: _SERVER found -- 21:37:02.298 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 21:37:02.298 INFO [12305]: SERVER_NAME = oameye.works.coregrade.com -- 21:37:02.298 INFO [12305]: QUERY_STRING = /robots.txt -- 21:37:02.298 INFO [12305]: HTTP_X_FORWARDED_FOR = 66.249.75.30 -- 21:37:02.311 INFO [12305]: COREGRADE is stopping... -- 21:37:02.311 DEBUG [12305]: Closing database connection -- 21:37:02.311 SQL [12305]: pgsql_close() -- 21:37:02.350 INFO [12305]: COREGRADE is starting... -- 21:37:02.350 INFO [12305]: Version from config: 1.0 -- 21:37:02.350 DEBUG [12305]: Connecting to database... -- 21:37:02.350 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:37:02.350 SQL [12305]: pgsql_db_connect() -- 21:37:02.355 DEBUG [12305]: Database connection successful -- 21:37:02.355 INFO [12305]: _SERVER found -- 21:37:02.355 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 21:37:02.355 INFO [12305]: SERVER_NAME = oameye.works.coregrade.com -- 21:37:02.355 INFO [12305]: QUERY_STRING = -- 21:37:02.355 INFO [12305]: HTTP_X_FORWARDED_FOR = 66.249.75.30 -- 21:37:02.388 INFO [12305]: COREGRADE is stopping... -- 21:37:02.388 DEBUG [12305]: Closing database connection -- 21:37:02.388 SQL [12305]: pgsql_close() -- 02:42:36.878 INFO [12247]: COREGRADE is starting... -- 02:42:36.879 INFO [12247]: Version from config: 1.0 -- 02:42:36.879 DEBUG [12247]: Connecting to database... -- 02:42:36.879 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:42:36.879 SQL [12247]: pgsql_db_connect() -- 02:42:36.884 DEBUG [12247]: Database connection successful -- 02:42:36.884 INFO [12247]: _SERVER found -- 02:42:36.884 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 02:42:36.884 INFO [12247]: SERVER_NAME = oameye.works.coregrade.com -- 02:42:36.884 INFO [12247]: QUERY_STRING = /.well-known/acme-challenge/DcyLVLneawZh84AdACWnZ72zfR4GRXQuepRb1MSEjwc -- 02:42:36.884 INFO [12247]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 02:42:36.899 INFO [12247]: COREGRADE is stopping... -- 02:42:36.900 DEBUG [12247]: Closing database connection -- 02:42:36.900 SQL [12247]: pgsql_close() -- 02:42:37.121 INFO [3926]: COREGRADE is starting... -- 02:42:37.122 INFO [3926]: Version from config: 1.0 -- 02:42:37.122 DEBUG [3926]: Connecting to database... -- 02:42:37.122 DEBUG [3926]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:42:37.122 SQL [3926]: pgsql_db_connect() -- 02:42:37.126 DEBUG [3926]: Database connection successful -- 02:42:37.126 INFO [3926]: _SERVER found -- 02:42:37.126 INFO [3926]: REMOTE_ADDR = 10.0.0.15 -- 02:42:37.126 INFO [3926]: SERVER_NAME = oameye.works.coregrade.com -- 02:42:37.126 INFO [3926]: QUERY_STRING = /.well-known/acme-challenge/DcyLVLneawZh84AdACWnZ72zfR4GRXQuepRb1MSEjwc -- 02:42:37.126 INFO [3926]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 02:42:37.144 INFO [3926]: COREGRADE is stopping... -- 02:42:37.144 DEBUG [3926]: Closing database connection -- 02:42:37.144 SQL [3926]: pgsql_close() -- 02:42:37.291 INFO [3926]: COREGRADE is starting... -- 02:42:37.291 INFO [3926]: Version from config: 1.0 -- 02:42:37.291 DEBUG [3926]: Connecting to database... -- 02:42:37.291 DEBUG [3926]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:42:37.291 SQL [3926]: pgsql_db_connect() -- 02:42:37.295 DEBUG [3926]: Database connection successful -- 02:42:37.295 INFO [3926]: _SERVER found -- 02:42:37.295 INFO [3926]: REMOTE_ADDR = 10.0.0.15 -- 02:42:37.295 INFO [3926]: SERVER_NAME = oameye.works.coregrade.com -- 02:42:37.295 INFO [3926]: QUERY_STRING = /.well-known/acme-challenge/DcyLVLneawZh84AdACWnZ72zfR4GRXQuepRb1MSEjwc -- 02:42:37.295 INFO [3926]: HTTP_X_FORWARDED_FOR = 52.28.236.88 -- 02:42:37.307 INFO [3926]: COREGRADE is stopping... -- 02:42:37.307 DEBUG [3926]: Closing database connection -- 02:42:37.307 SQL [3926]: pgsql_close() -- 05:50:11.755 INFO [12249]: COREGRADE is starting... -- 05:50:11.755 INFO [12249]: Version from config: 1.0 -- 05:50:11.755 DEBUG [12249]: Connecting to database... -- 05:50:11.755 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:50:11.755 SQL [12249]: pgsql_db_connect() -- 05:50:11.760 DEBUG [12249]: Database connection successful -- 05:50:11.760 INFO [12249]: _SERVER found -- 05:50:11.760 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 05:50:11.760 INFO [12249]: SERVER_NAME = oameye.works.coregrade.com -- 05:50:11.760 INFO [12249]: QUERY_STRING = /wp/wp-login.php -- 05:50:11.760 INFO [12249]: HTTP_X_FORWARDED_FOR = 146.185.128.111 -- 05:50:11.776 INFO [12249]: COREGRADE is stopping... -- 05:50:11.776 DEBUG [12249]: Closing database connection -- 05:50:11.776 SQL [12249]: pgsql_close() -- 09:31:50.708 INFO [12250]: COREGRADE is starting... -- 09:31:50.709 INFO [12250]: Version from config: 1.0 -- 09:31:50.709 DEBUG [12250]: Connecting to database... -- 09:31:50.709 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:31:50.709 SQL [12250]: pgsql_db_connect() -- 09:31:50.714 DEBUG [12250]: Database connection successful -- 09:31:50.714 INFO [12250]: _SERVER found -- 09:31:50.714 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 09:31:50.714 INFO [12250]: SERVER_NAME = oameye.works.coregrade.com -- 09:31:50.714 INFO [12250]: QUERY_STRING = -- 09:31:50.714 INFO [12250]: HTTP_X_FORWARDED_FOR = 131.154.48.95 -- 09:31:50.752 INFO [12250]: COREGRADE is stopping... -- 09:31:50.752 DEBUG [12250]: Closing database connection -- 09:31:50.752 SQL [12250]: pgsql_close() -- 11:39:38.242 INFO [12347]: COREGRADE is starting... -- 11:39:38.243 INFO [12347]: Version from config: 1.0 -- 11:39:38.243 DEBUG [12347]: Connecting to database... -- 11:39:38.243 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:39:38.243 SQL [12347]: pgsql_db_connect() -- 11:39:38.248 DEBUG [12347]: Database connection successful -- 11:39:38.248 INFO [12347]: _SERVER found -- 11:39:38.248 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 11:39:38.248 INFO [12347]: SERVER_NAME = oameye.works.coregrade.com -- 11:39:38.248 INFO [12347]: QUERY_STRING = /wordpress/wp-login.php -- 11:39:38.248 INFO [12347]: HTTP_X_FORWARDED_FOR = 134.209.30.155 -- 11:39:38.264 INFO [12347]: COREGRADE is stopping... -- 11:39:38.264 DEBUG [12347]: Closing database connection -- 11:39:38.264 SQL [12347]: pgsql_close() -- 13:40:37.728 INFO [12246]: COREGRADE is starting... -- 13:40:37.729 INFO [12246]: Version from config: 1.0 -- 13:40:37.729 DEBUG [12246]: Connecting to database... -- 13:40:37.729 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:40:37.729 SQL [12246]: pgsql_db_connect() -- 13:40:37.734 DEBUG [12246]: Database connection successful -- 13:40:37.734 INFO [12246]: _SERVER found -- 13:40:37.734 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 13:40:37.734 INFO [12246]: SERVER_NAME = oameye.works.coregrade.com -- 13:40:37.734 INFO [12246]: QUERY_STRING = -- 13:40:37.734 INFO [12246]: HTTP_X_FORWARDED_FOR = 80.82.68.68 -- 13:40:37.772 INFO [12246]: COREGRADE is stopping... -- 13:40:37.772 DEBUG [12246]: Closing database connection -- 13:40:37.772 SQL [12246]: pgsql_close() -- 13:40:38.031 INFO [12246]: COREGRADE is starting... -- 13:40:38.032 INFO [12246]: Version from config: 1.0 -- 13:40:38.032 DEBUG [12246]: Connecting to database... -- 13:40:38.032 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:40:38.032 SQL [12246]: pgsql_db_connect() -- 13:40:38.036 DEBUG [12246]: Database connection successful -- 13:40:38.036 INFO [12246]: _SERVER found -- 13:40:38.036 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 13:40:38.036 INFO [12246]: SERVER_NAME = oameye.works.coregrade.com -- 13:40:38.036 INFO [12246]: QUERY_STRING = /robots.txt -- 13:40:38.036 INFO [12246]: HTTP_X_FORWARDED_FOR = 80.82.68.68 -- 13:40:38.047 INFO [12246]: COREGRADE is stopping... -- 13:40:38.048 DEBUG [12246]: Closing database connection -- 13:40:38.048 SQL [12246]: pgsql_close() -- 14:41:28.969 INFO [12305]: COREGRADE is starting... -- 14:41:28.970 INFO [12305]: Version from config: 1.0 -- 14:41:28.970 DEBUG [12305]: Connecting to database... -- 14:41:28.970 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:41:28.970 SQL [12305]: pgsql_db_connect() -- 14:41:28.975 DEBUG [12305]: Database connection successful -- 14:41:28.975 INFO [12305]: _SERVER found -- 14:41:28.975 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 14:41:28.975 INFO [12305]: SERVER_NAME = oameye.works.coregrade.com -- 14:41:28.975 INFO [12305]: QUERY_STRING = -- 14:41:28.975 INFO [12305]: HTTP_X_FORWARDED_FOR = 198.199.66.54 -- 14:41:29.010 INFO [12305]: COREGRADE is stopping... -- 14:41:29.010 DEBUG [12305]: Closing database connection -- 14:41:29.010 SQL [12305]: pgsql_close() -- 15:43:19.053 INFO [25055]: COREGRADE is starting... -- 15:43:19.054 INFO [25055]: Version from config: 1.0 -- 15:43:19.054 DEBUG [25055]: Connecting to database... -- 15:43:19.054 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:43:19.054 SQL [25055]: pgsql_db_connect() -- 15:43:19.058 DEBUG [25055]: Database connection successful -- 15:43:19.058 INFO [25055]: _SERVER found -- 15:43:19.058 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 15:43:19.058 INFO [25055]: SERVER_NAME = oameye.works.coregrade.com -- 15:43:19.058 INFO [25055]: QUERY_STRING = /solr/admin/info/system -- 15:43:19.058 INFO [25055]: HTTP_X_FORWARDED_FOR = 195.54.160.123 -- 15:43:19.076 INFO [25055]: COREGRADE is stopping... -- 15:43:19.076 DEBUG [25055]: Closing database connection -- 15:43:19.076 SQL [25055]: pgsql_close() -- 15:43:48.627 INFO [12247]: COREGRADE is starting... -- 15:43:48.627 INFO [12247]: Version from config: 1.0 -- 15:43:48.627 DEBUG [12247]: Connecting to database... -- 15:43:48.627 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:43:48.627 SQL [12247]: pgsql_db_connect() -- 15:43:48.632 DEBUG [12247]: Database connection successful -- 15:43:48.632 INFO [12247]: _SERVER found -- 15:43:48.632 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 15:43:48.632 INFO [12247]: SERVER_NAME = oameye.works.coregrade.com -- 15:43:48.632 INFO [12247]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 15:43:48.632 INFO [12247]: HTTP_X_FORWARDED_FOR = 195.54.160.123 -- 15:43:48.669 INFO [12247]: COREGRADE is stopping... -- 15:43:48.669 DEBUG [12247]: Closing database connection -- 15:43:48.669 SQL [12247]: pgsql_close() -- 15:43:50.195 INFO [12334]: COREGRADE is starting... -- 15:43:50.195 INFO [12334]: Version from config: 1.0 -- 15:43:50.195 DEBUG [12334]: Connecting to database... -- 15:43:50.195 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:43:50.195 SQL [12334]: pgsql_db_connect() -- 15:43:50.200 DEBUG [12334]: Database connection successful -- 15:43:50.200 INFO [12334]: _SERVER found -- 15:43:50.200 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 15:43:50.200 INFO [12334]: SERVER_NAME = oameye.works.coregrade.com -- 15:43:50.200 INFO [12334]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 15:43:50.200 INFO [12334]: HTTP_X_FORWARDED_FOR = 195.54.160.123 -- 15:43:50.235 INFO [12334]: COREGRADE is stopping... -- 15:43:50.235 DEBUG [12334]: Closing database connection -- 15:43:50.235 SQL [12334]: pgsql_close() -- 15:44:39.307 INFO [12248]: COREGRADE is starting... -- 15:44:39.308 INFO [12248]: Version from config: 1.0 -- 15:44:39.308 DEBUG [12248]: Connecting to database... -- 15:44:39.308 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:44:39.308 SQL [12248]: pgsql_db_connect() -- 15:44:39.312 DEBUG [12248]: Database connection successful -- 15:44:39.312 INFO [12248]: _SERVER found -- 15:44:39.312 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 15:44:39.312 INFO [12248]: SERVER_NAME = oameye.works.coregrade.com -- 15:44:39.312 INFO [12248]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 15:44:39.312 INFO [12248]: HTTP_X_FORWARDED_FOR = 195.54.160.123 -- 15:44:39.346 INFO [12248]: COREGRADE is stopping... -- 15:44:39.346 DEBUG [12248]: Closing database connection -- 15:44:39.346 SQL [12248]: pgsql_close() -- 15:55:47.367 INFO [3926]: COREGRADE is starting... -- 15:55:47.367 INFO [3926]: Version from config: 1.0 -- 15:55:47.367 DEBUG [3926]: Connecting to database... -- 15:55:47.367 DEBUG [3926]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:55:47.367 SQL [3926]: pgsql_db_connect() -- 15:55:47.372 DEBUG [3926]: Database connection successful -- 15:55:47.372 INFO [3926]: _SERVER found -- 15:55:47.372 INFO [3926]: REMOTE_ADDR = 10.0.0.15 -- 15:55:47.372 INFO [3926]: SERVER_NAME = oameye.works.coregrade.com -- 15:55:47.372 INFO [3926]: QUERY_STRING = /api/jsonws/invoke -- 15:55:47.372 INFO [3926]: HTTP_X_FORWARDED_FOR = 195.54.160.123 -- 15:55:47.387 INFO [3926]: COREGRADE is stopping... -- 15:55:47.387 DEBUG [3926]: Closing database connection -- 15:55:47.387 SQL [3926]: pgsql_close() -- 16:21:01.473 INFO [12249]: COREGRADE is starting... -- 16:21:01.473 INFO [12249]: Version from config: 1.0 -- 16:21:01.473 DEBUG [12249]: Connecting to database... -- 16:21:01.473 DEBUG [12249]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:21:01.473 SQL [12249]: pgsql_db_connect() -- 16:21:01.478 DEBUG [12249]: Database connection successful -- 16:21:01.478 INFO [12249]: _SERVER found -- 16:21:01.478 INFO [12249]: REMOTE_ADDR = 10.0.0.15 -- 16:21:01.478 INFO [12249]: SERVER_NAME = oameye.works.coregrade.com -- 16:21:01.478 INFO [12249]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 16:21:01.478 INFO [12249]: HTTP_X_FORWARDED_FOR = 195.54.160.123 -- 16:21:01.494 INFO [12249]: COREGRADE is stopping... -- 16:21:01.494 DEBUG [12249]: Closing database connection -- 16:21:01.494 SQL [12249]: pgsql_close() -- 16:26:57.158 INFO [12250]: COREGRADE is starting... -- 16:26:57.158 INFO [12250]: Version from config: 1.0 -- 16:26:57.158 DEBUG [12250]: Connecting to database... -- 16:26:57.158 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:57.158 SQL [12250]: pgsql_db_connect() -- 16:26:57.163 DEBUG [12250]: Database connection successful -- 16:26:57.163 INFO [12250]: _SERVER found -- 16:26:57.163 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 16:26:57.163 INFO [12250]: SERVER_NAME = oameye.works.coregrade.com -- 16:26:57.163 INFO [12250]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 16:26:57.163 INFO [12250]: HTTP_X_FORWARDED_FOR = 195.54.160.123 -- 16:26:57.176 INFO [12250]: COREGRADE is stopping... -- 16:26:57.176 DEBUG [12250]: Closing database connection -- 16:26:57.176 SQL [12250]: pgsql_close() -- 20:23:56.460 INFO [12347]: COREGRADE is starting... -- 20:23:56.460 INFO [12347]: Version from config: 1.0 -- 20:23:56.460 DEBUG [12347]: Connecting to database... -- 20:23:56.460 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:23:56.460 SQL [12347]: pgsql_db_connect() -- 20:23:56.466 DEBUG [12347]: Database connection successful -- 20:23:56.466 INFO [12347]: _SERVER found -- 20:23:56.466 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 20:23:56.466 INFO [12347]: SERVER_NAME = oameye.works.coregrade.com -- 20:23:56.466 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 20:23:56.466 INFO [12347]: QUERY_STRING = -- 20:23:56.466 INFO [12347]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:23:56.508 INFO [12347]: COREGRADE is stopping... -- 20:23:56.508 DEBUG [12347]: Closing database connection -- 20:23:56.508 SQL [12347]: pgsql_close() -- 20:23:56.667 INFO [12347]: COREGRADE is starting... -- 20:23:56.667 INFO [12347]: Version from config: 1.0 -- 20:23:56.667 DEBUG [12347]: Connecting to database... -- 20:23:56.667 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:23:56.667 SQL [12347]: pgsql_db_connect() -- 20:23:56.672 DEBUG [12347]: Database connection successful -- 20:23:56.672 INFO [12347]: _SERVER found -- 20:23:56.672 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 20:23:56.672 INFO [12347]: SERVER_NAME = oameye.works.coregrade.com -- 20:23:56.672 INFO [12347]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=04ae4i1kc67efcgddtoggstsbq3d2bp3 -- 20:23:56.672 INFO [12347]: QUERY_STRING = /assets/img/footer_1.jpg -- 20:23:56.672 INFO [12347]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:23:56.683 INFO [12347]: COREGRADE is stopping... -- 20:23:56.683 DEBUG [12347]: Closing database connection -- 20:23:56.683 SQL [12347]: pgsql_close() -- 21:25:33.134 INFO [12246]: COREGRADE is starting... -- 21:25:33.135 INFO [12246]: Version from config: 1.0 -- 21:25:33.135 DEBUG [12246]: Connecting to database... -- 21:25:33.135 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:25:33.135 SQL [12246]: pgsql_db_connect() -- 21:25:33.139 DEBUG [12246]: Database connection successful -- 21:25:33.139 INFO [12246]: _SERVER found -- 21:25:33.139 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 21:25:33.139 INFO [12246]: SERVER_NAME = oameye.works.coregrade.com -- 21:25:33.139 INFO [12246]: QUERY_STRING = /robots.txt -- 21:25:33.139 INFO [12246]: HTTP_X_FORWARDED_FOR = 66.249.66.214 -- 21:25:33.155 INFO [12246]: COREGRADE is stopping... -- 21:25:33.156 DEBUG [12246]: Closing database connection -- 21:25:33.156 SQL [12246]: pgsql_close() -- 21:25:33.184 INFO [12246]: COREGRADE is starting... -- 21:25:33.184 INFO [12246]: Version from config: 1.0 -- 21:25:33.184 DEBUG [12246]: Connecting to database... -- 21:25:33.184 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:25:33.184 SQL [12246]: pgsql_db_connect() -- 21:25:33.189 DEBUG [12246]: Database connection successful -- 21:25:33.189 INFO [12246]: _SERVER found -- 21:25:33.189 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 21:25:33.189 INFO [12246]: SERVER_NAME = oameye.works.coregrade.com -- 21:25:33.189 INFO [12246]: QUERY_STRING = -- 21:25:33.189 INFO [12246]: HTTP_X_FORWARDED_FOR = 66.249.66.214 -- 21:25:33.222 INFO [12246]: COREGRADE is stopping... -- 21:25:33.222 DEBUG [12246]: Closing database connection -- 21:25:33.222 SQL [12246]: pgsql_close() -- 22:25:14.570 INFO [12305]: COREGRADE is starting... -- 22:25:14.571 INFO [12305]: Version from config: 1.0 -- 22:25:14.571 DEBUG [12305]: Connecting to database... -- 22:25:14.571 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:25:14.571 SQL [12305]: pgsql_db_connect() -- 22:25:14.575 DEBUG [12305]: Database connection successful -- 22:25:14.575 INFO [12305]: _SERVER found -- 22:25:14.575 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 22:25:14.575 INFO [12305]: SERVER_NAME = oameye.works.coregrade.com -- 22:25:14.575 INFO [12305]: QUERY_STRING = -- 22:25:14.575 INFO [12305]: HTTP_X_FORWARDED_FOR = 198.108.66.243 -- 22:25:14.610 INFO [12305]: COREGRADE is stopping... -- 22:25:14.610 DEBUG [12305]: Closing database connection -- 22:25:14.610 SQL [12305]: pgsql_close() -- 02:16:43.489 INFO [25055]: COREGRADE is starting... -- 02:16:43.489 INFO [25055]: Version from config: 1.0 -- 02:16:43.489 DEBUG [25055]: Connecting to database... -- 02:16:43.489 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:16:43.489 SQL [25055]: pgsql_db_connect() -- 02:16:43.494 DEBUG [25055]: Database connection successful -- 02:16:43.494 INFO [25055]: _SERVER found -- 02:16:43.494 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 02:16:43.494 INFO [25055]: SERVER_NAME = oameye.works.coregrade.com -- 02:16:43.494 INFO [25055]: QUERY_STRING = /.well-known/acme-challenge/GR1kN2nD_N-rEXSLvHRKxHFD-G88GYTJt9xQAPoaNSw -- 02:16:43.494 INFO [25055]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 02:16:43.525 INFO [25055]: COREGRADE is stopping... -- 02:16:43.525 DEBUG [25055]: Closing database connection -- 02:16:43.525 SQL [25055]: pgsql_close() -- 02:16:43.597 INFO [25055]: COREGRADE is starting... -- 02:16:43.598 INFO [25055]: Version from config: 1.0 -- 02:16:43.598 DEBUG [25055]: Connecting to database... -- 02:16:43.598 DEBUG [25055]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:16:43.598 SQL [25055]: pgsql_db_connect() -- 02:16:43.602 DEBUG [25055]: Database connection successful -- 02:16:43.602 INFO [25055]: _SERVER found -- 02:16:43.602 INFO [25055]: REMOTE_ADDR = 10.0.0.15 -- 02:16:43.602 INFO [25055]: SERVER_NAME = oameye.works.coregrade.com -- 02:16:43.602 INFO [25055]: QUERY_STRING = /.well-known/acme-challenge/GR1kN2nD_N-rEXSLvHRKxHFD-G88GYTJt9xQAPoaNSw -- 02:16:43.602 INFO [25055]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 02:16:43.613 INFO [25055]: COREGRADE is stopping... -- 02:16:43.613 DEBUG [25055]: Closing database connection -- 02:16:43.613 SQL [25055]: pgsql_close() -- 14:28:35.369 INFO [12248]: COREGRADE is starting... -- 14:28:35.369 INFO [12248]: Version from config: 1.0 -- 14:28:35.369 DEBUG [12248]: Connecting to database... -- 14:28:35.369 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:28:35.369 SQL [12248]: pgsql_db_connect() -- 14:28:35.375 DEBUG [12248]: Database connection successful -- 14:28:35.375 INFO [12248]: _SERVER found -- 14:28:35.375 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 14:28:35.375 INFO [12248]: SERVER_NAME = oameye.works.coregrade.com -- 14:28:35.375 INFO [12248]: QUERY_STRING = -- 14:28:35.375 INFO [12248]: HTTP_X_FORWARDED_FOR = 198.108.66.241 -- 14:28:35.415 INFO [12248]: COREGRADE is stopping... -- 14:28:35.415 DEBUG [12248]: Closing database connection -- 14:28:35.415 SQL [12248]: pgsql_close() -- 02:49:56.107 INFO [3926]: COREGRADE is starting... -- 02:49:56.107 INFO [3926]: Version from config: 1.0 -- 02:49:56.107 DEBUG [3926]: Connecting to database... -- 02:49:56.107 DEBUG [3926]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:49:56.108 SQL [3926]: pgsql_db_connect() -- 02:49:56.112 DEBUG [3926]: Database connection successful -- 02:49:56.112 INFO [3926]: _SERVER found -- 02:49:56.112 INFO [3926]: REMOTE_ADDR = 10.0.0.15 -- 02:49:56.112 INFO [3926]: SERVER_NAME = tokslaw.works.coregrade.com -- 02:49:56.112 INFO [3926]: QUERY_STRING = -- 02:49:56.112 INFO [3926]: HTTP_X_FORWARDED_FOR = 42.236.10.125 -- 02:49:56.154 INFO [3926]: COREGRADE is stopping... -- 02:49:56.154 DEBUG [3926]: Closing database connection -- 02:49:56.154 SQL [3926]: pgsql_close() -- 02:50:05.605 INFO [3926]: COREGRADE is starting... -- 02:50:05.605 INFO [3926]: Version from config: 1.0 -- 02:50:05.605 DEBUG [3926]: Connecting to database... -- 02:50:05.605 DEBUG [3926]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:50:05.605 SQL [3926]: pgsql_db_connect() -- 02:50:05.610 DEBUG [3926]: Database connection successful -- 02:50:05.610 INFO [3926]: _SERVER found -- 02:50:05.610 INFO [3926]: REMOTE_ADDR = 10.0.0.15 -- 02:50:05.610 INFO [3926]: SERVER_NAME = tokslaw.works.coregrade.com -- 02:50:05.610 INFO [3926]: HTTP_COOKIE = ci_session=dtdl7k7g26ehbug8kinac4eoqnje5fcl; _ga=GA1.2.735370065.1590043802; _gid=GA1.2.1249795366.1590043802; _gat_gtag_UA_54829827_2=1 -- 02:50:05.610 INFO [3926]: QUERY_STRING = /assets/img/footer_1.jpg -- 02:50:05.610 INFO [3926]: HTTP_X_FORWARDED_FOR = 42.236.10.125 -- 02:50:05.621 INFO [3926]: COREGRADE is stopping... -- 02:50:05.621 DEBUG [3926]: Closing database connection -- 02:50:05.621 SQL [3926]: pgsql_close() -- 02:50:06.282 INFO [12305]: COREGRADE is starting... -- 02:50:06.282 INFO [12305]: Version from config: 1.0 -- 02:50:06.282 DEBUG [12305]: Connecting to database... -- 02:50:06.282 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:50:06.282 SQL [12305]: pgsql_db_connect() -- 02:50:06.286 DEBUG [12305]: Database connection successful -- 02:50:06.286 INFO [12305]: _SERVER found -- 02:50:06.286 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 02:50:06.286 INFO [12305]: SERVER_NAME = oameye.works.coregrade.com -- 02:50:06.286 INFO [12305]: QUERY_STRING = -- 02:50:06.286 INFO [12305]: HTTP_X_FORWARDED_FOR = 180.163.220.68 -- 02:50:06.320 INFO [12305]: COREGRADE is stopping... -- 02:50:06.320 DEBUG [12305]: Closing database connection -- 02:50:06.320 SQL [12305]: pgsql_close() -- 02:50:10.383 INFO [3926]: COREGRADE is starting... -- 02:50:10.384 INFO [3926]: Version from config: 1.0 -- 02:50:10.384 DEBUG [3926]: Connecting to database... -- 02:50:10.384 DEBUG [3926]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:50:10.384 SQL [3926]: pgsql_db_connect() -- 02:50:10.388 DEBUG [3926]: Database connection successful -- 02:50:10.388 INFO [3926]: _SERVER found -- 02:50:10.388 INFO [3926]: REMOTE_ADDR = 10.0.0.15 -- 02:50:10.388 INFO [3926]: SERVER_NAME = tokslaw.works.coregrade.com -- 02:50:10.388 INFO [3926]: HTTP_COOKIE = ci_session=dtdl7k7g26ehbug8kinac4eoqnje5fcl; _ga=GA1.2.735370065.1590043802; _gid=GA1.2.1249795366.1590043802; _gat_gtag_UA_54829827_2=1 -- 02:50:10.388 INFO [3926]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 02:50:10.388 INFO [3926]: HTTP_X_FORWARDED_FOR = 42.236.10.125 -- 02:50:10.399 INFO [3926]: COREGRADE is stopping... -- 02:50:10.399 DEBUG [3926]: Closing database connection -- 02:50:10.399 SQL [3926]: pgsql_close() -- 04:40:56.774 INFO [12347]: COREGRADE is starting... -- 04:40:56.774 INFO [12347]: Version from config: 1.0 -- 04:40:56.774 DEBUG [12347]: Connecting to database... -- 04:40:56.774 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:40:56.775 SQL [12347]: pgsql_db_connect() -- 04:40:56.780 DEBUG [12347]: Database connection successful -- 04:40:56.780 INFO [12347]: _SERVER found -- 04:40:56.780 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 04:40:56.780 INFO [12347]: SERVER_NAME = oameye.works.coregrade.com -- 04:40:56.780 INFO [12347]: QUERY_STRING = /.well-known/acme-challenge/gSpbdSg8xo9jmAPAudjc4n6eS_LEa5lh3Lu59db6EIA -- 04:40:56.780 INFO [12347]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 04:40:56.795 INFO [12347]: COREGRADE is stopping... -- 04:40:56.795 DEBUG [12347]: Closing database connection -- 04:40:56.795 SQL [12347]: pgsql_close() -- 04:40:56.968 INFO [12347]: COREGRADE is starting... -- 04:40:56.968 INFO [12347]: Version from config: 1.0 -- 04:40:56.968 DEBUG [12347]: Connecting to database... -- 04:40:56.968 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:40:56.968 SQL [12347]: pgsql_db_connect() -- 04:40:56.973 DEBUG [12347]: Database connection successful -- 04:40:56.973 INFO [12347]: _SERVER found -- 04:40:56.973 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 04:40:56.973 INFO [12347]: SERVER_NAME = oameye.works.coregrade.com -- 04:40:56.973 INFO [12347]: QUERY_STRING = /.well-known/acme-challenge/gSpbdSg8xo9jmAPAudjc4n6eS_LEa5lh3Lu59db6EIA -- 04:40:56.973 INFO [12347]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 04:40:56.984 INFO [12347]: COREGRADE is stopping... -- 04:40:56.984 DEBUG [12347]: Closing database connection -- 04:40:56.985 SQL [12347]: pgsql_close() -- 09:48:03.969 INFO [12250]: COREGRADE is starting... -- 09:48:03.969 INFO [12250]: Version from config: 1.0 -- 09:48:03.969 DEBUG [12250]: Connecting to database... -- 09:48:03.969 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:48:03.969 SQL [12250]: pgsql_db_connect() -- 09:48:03.974 DEBUG [12250]: Database connection successful -- 09:48:03.974 INFO [12250]: _SERVER found -- 09:48:03.974 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 09:48:03.974 INFO [12250]: SERVER_NAME = oameye.works.coregrade.com -- 09:48:03.974 INFO [12250]: QUERY_STRING = /TP/public/index.php -- 09:48:03.974 INFO [12250]: HTTP_X_FORWARDED_FOR = 47.96.224.198 -- 09:48:03.988 INFO [12250]: COREGRADE is stopping... -- 09:48:03.988 DEBUG [12250]: Closing database connection -- 09:48:03.988 SQL [12250]: pgsql_close() -- 09:48:06.961 INFO [12250]: COREGRADE is starting... -- 09:48:06.961 INFO [12250]: Version from config: 1.0 -- 09:48:06.961 DEBUG [12250]: Connecting to database... -- 09:48:06.961 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:48:06.961 SQL [12250]: pgsql_db_connect() -- 09:48:06.965 DEBUG [12250]: Database connection successful -- 09:48:06.965 INFO [12250]: _SERVER found -- 09:48:06.965 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 09:48:06.965 INFO [12250]: SERVER_NAME = oameye.works.coregrade.com -- 09:48:06.965 INFO [12250]: QUERY_STRING = -- 09:48:06.965 INFO [12250]: HTTP_X_FORWARDED_FOR = 47.96.224.198 -- 09:48:06.999 INFO [12250]: COREGRADE is stopping... -- 09:48:06.000 DEBUG [12250]: Closing database connection -- 09:48:06.000 SQL [12250]: pgsql_close() -- 10:58:56.698 INFO [12305]: COREGRADE is starting... -- 10:58:56.699 INFO [12305]: Version from config: 1.0 -- 10:58:56.699 DEBUG [12305]: Connecting to database... -- 10:58:56.699 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:58:56.699 SQL [12305]: pgsql_db_connect() -- 10:58:56.704 DEBUG [12305]: Database connection successful -- 10:58:56.704 INFO [12305]: _SERVER found -- 10:58:56.704 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 10:58:56.704 INFO [12305]: SERVER_NAME = oameye.works.coregrade.com -- 10:58:56.704 INFO [12305]: QUERY_STRING = /robots.txt -- 10:58:56.705 INFO [12305]: HTTP_X_FORWARDED_FOR = 66.249.70.86 -- 10:58:56.719 INFO [12305]: COREGRADE is stopping... -- 10:58:56.719 DEBUG [12305]: Closing database connection -- 10:58:56.719 SQL [12305]: pgsql_close() -- 10:58:56.760 INFO [12305]: COREGRADE is starting... -- 10:58:56.760 INFO [12305]: Version from config: 1.0 -- 10:58:56.760 DEBUG [12305]: Connecting to database... -- 10:58:56.760 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:58:56.760 SQL [12305]: pgsql_db_connect() -- 10:58:56.764 DEBUG [12305]: Database connection successful -- 10:58:56.764 INFO [12305]: _SERVER found -- 10:58:56.764 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 10:58:56.764 INFO [12305]: SERVER_NAME = oameye.works.coregrade.com -- 10:58:56.764 INFO [12305]: QUERY_STRING = -- 10:58:56.764 INFO [12305]: HTTP_X_FORWARDED_FOR = 66.249.70.86 -- 10:58:56.797 INFO [12305]: COREGRADE is stopping... -- 10:58:56.797 DEBUG [12305]: Closing database connection -- 10:58:56.797 SQL [12305]: pgsql_close() -- 22:47:34.359 INFO [12334]: COREGRADE is starting... -- 22:47:34.359 INFO [12334]: Version from config: 1.0 -- 22:47:34.359 DEBUG [12334]: Connecting to database... -- 22:47:34.359 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:47:34.359 SQL [12334]: pgsql_db_connect() -- 22:47:34.365 DEBUG [12334]: Database connection successful -- 22:47:34.365 INFO [12334]: _SERVER found -- 22:47:34.365 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 22:47:34.365 INFO [12334]: SERVER_NAME = oameye.works.coregrade.com -- 22:47:34.365 INFO [12334]: QUERY_STRING = -- 22:47:34.365 INFO [12334]: HTTP_X_FORWARDED_FOR = 3.120.245.175 -- 22:47:34.403 INFO [12334]: COREGRADE is stopping... -- 22:47:34.403 DEBUG [12334]: Closing database connection -- 22:47:34.403 SQL [12334]: pgsql_close() -- 05:04:03.932 INFO [11017]: COREGRADE is starting... -- 05:04:03.932 INFO [11017]: Version from config: 1.0 -- 05:04:03.932 DEBUG [11017]: Connecting to database... -- 05:04:03.932 DEBUG [11017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:04:03.932 SQL [11017]: pgsql_db_connect() -- 05:04:03.937 DEBUG [11017]: Database connection successful -- 05:04:03.937 INFO [11017]: _SERVER found -- 05:04:03.937 INFO [11017]: REMOTE_ADDR = 10.0.0.15 -- 05:04:03.937 INFO [11017]: SERVER_NAME = oameye.works.coregrade.com -- 05:04:03.937 INFO [11017]: QUERY_STRING = /.well-known/acme-challenge/w6-8jD2lMCgMgqai4zkTwEiTzfxcyayACl1epO1aYSM -- 05:04:03.937 INFO [11017]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 05:04:03.957 INFO [11017]: COREGRADE is stopping... -- 05:04:03.957 DEBUG [11017]: Closing database connection -- 05:04:03.957 SQL [11017]: pgsql_close() -- 05:04:04.021 INFO [12248]: COREGRADE is starting... -- 05:04:04.021 INFO [12248]: Version from config: 1.0 -- 05:04:04.021 DEBUG [12248]: Connecting to database... -- 05:04:04.021 DEBUG [12248]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:04:04.021 SQL [12248]: pgsql_db_connect() -- 05:04:04.027 DEBUG [12248]: Database connection successful -- 05:04:04.027 INFO [12248]: _SERVER found -- 05:04:04.027 INFO [12248]: REMOTE_ADDR = 10.0.0.15 -- 05:04:04.027 INFO [12248]: SERVER_NAME = oameye.works.coregrade.com -- 05:04:04.027 INFO [12248]: QUERY_STRING = /.well-known/acme-challenge/w6-8jD2lMCgMgqai4zkTwEiTzfxcyayACl1epO1aYSM -- 05:04:04.027 INFO [12248]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 05:04:04.042 INFO [12248]: COREGRADE is stopping... -- 05:04:04.042 DEBUG [12248]: Closing database connection -- 05:04:04.042 SQL [12248]: pgsql_close() -- 05:04:04.105 INFO [11017]: COREGRADE is starting... -- 05:04:04.105 INFO [11017]: Version from config: 1.0 -- 05:04:04.105 DEBUG [11017]: Connecting to database... -- 05:04:04.105 DEBUG [11017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:04:04.105 SQL [11017]: pgsql_db_connect() -- 05:04:04.109 DEBUG [11017]: Database connection successful -- 05:04:04.109 INFO [11017]: _SERVER found -- 05:04:04.109 INFO [11017]: REMOTE_ADDR = 10.0.0.15 -- 05:04:04.109 INFO [11017]: SERVER_NAME = oameye.works.coregrade.com -- 05:04:04.109 INFO [11017]: QUERY_STRING = /.well-known/acme-challenge/w6-8jD2lMCgMgqai4zkTwEiTzfxcyayACl1epO1aYSM -- 05:04:04.109 INFO [11017]: HTTP_X_FORWARDED_FOR = 34.209.232.166 -- 05:04:04.121 INFO [11017]: COREGRADE is stopping... -- 05:04:04.121 DEBUG [11017]: Closing database connection -- 05:04:04.121 SQL [11017]: pgsql_close() -- 09:24:09.970 INFO [12246]: COREGRADE is starting... -- 09:24:09.971 INFO [12246]: Version from config: 1.0 -- 09:24:09.971 DEBUG [12246]: Connecting to database... -- 09:24:09.971 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:24:09.971 SQL [12246]: pgsql_db_connect() -- 09:24:09.977 DEBUG [12246]: Database connection successful -- 09:24:09.977 INFO [12246]: _SERVER found -- 09:24:09.977 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 09:24:09.977 INFO [12246]: SERVER_NAME = oameye.works.coregrade.com -- 09:24:09.977 INFO [12246]: QUERY_STRING = /wp-login.php -- 09:24:09.977 INFO [12246]: HTTP_X_FORWARDED_FOR = 192.99.4.63 -- 09:24:09.993 INFO [12246]: COREGRADE is stopping... -- 09:24:09.993 DEBUG [12246]: Closing database connection -- 09:24:09.993 SQL [12246]: pgsql_close() -- 09:25:02.999 INFO [12250]: COREGRADE is starting... -- 09:25:02.000 INFO [12250]: Version from config: 1.0 -- 09:25:02.000 DEBUG [12250]: Connecting to database... -- 09:25:02.000 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:25:02.000 SQL [12250]: pgsql_db_connect() -- 09:25:03.004 DEBUG [12250]: Database connection successful -- 09:25:03.004 INFO [12250]: _SERVER found -- 09:25:03.004 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 09:25:03.004 INFO [12250]: SERVER_NAME = oameye.works.coregrade.com -- 09:25:03.004 INFO [12250]: QUERY_STRING = /robots.txt -- 09:25:03.004 INFO [12250]: HTTP_X_FORWARDED_FOR = 192.99.4.63 -- 09:25:03.017 INFO [12250]: COREGRADE is stopping... -- 09:25:03.017 DEBUG [12250]: Closing database connection -- 09:25:03.017 SQL [12250]: pgsql_close() -- 18:08:27.563 INFO [12305]: COREGRADE is starting... -- 18:08:27.564 INFO [12305]: Version from config: 1.0 -- 18:08:27.564 DEBUG [12305]: Connecting to database... -- 18:08:27.564 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:27.564 SQL [12305]: pgsql_db_connect() -- 18:08:27.568 DEBUG [12305]: Database connection successful -- 18:08:27.568 INFO [12305]: _SERVER found -- 18:08:27.568 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 18:08:27.568 INFO [12305]: SERVER_NAME = oameye.works.coregrade.com -- 18:08:27.568 INFO [12305]: QUERY_STRING = -- 18:08:27.568 INFO [12305]: HTTP_X_FORWARDED_FOR = 80.82.68.113 -- 18:08:27.604 INFO [12305]: COREGRADE is stopping... -- 18:08:27.604 DEBUG [12305]: Closing database connection -- 18:08:27.604 SQL [12305]: pgsql_close() -- 18:08:27.883 INFO [12305]: COREGRADE is starting... -- 18:08:27.884 INFO [12305]: Version from config: 1.0 -- 18:08:27.884 DEBUG [12305]: Connecting to database... -- 18:08:27.884 DEBUG [12305]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:27.884 SQL [12305]: pgsql_db_connect() -- 18:08:27.888 DEBUG [12305]: Database connection successful -- 18:08:27.888 INFO [12305]: _SERVER found -- 18:08:27.888 INFO [12305]: REMOTE_ADDR = 10.0.0.15 -- 18:08:27.888 INFO [12305]: SERVER_NAME = oameye.works.coregrade.com -- 18:08:27.888 INFO [12305]: QUERY_STRING = /robots.txt -- 18:08:27.888 INFO [12305]: HTTP_X_FORWARDED_FOR = 80.82.68.113 -- 18:08:27.899 INFO [12305]: COREGRADE is stopping... -- 18:08:27.900 DEBUG [12305]: Closing database connection -- 18:08:27.900 SQL [12305]: pgsql_close() -- 01:36:59.590 INFO [12247]: COREGRADE is starting... -- 01:36:59.590 INFO [12247]: Version from config: 1.0 -- 01:36:59.590 DEBUG [12247]: Connecting to database... -- 01:36:59.590 DEBUG [12247]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:36:59.590 SQL [12247]: pgsql_db_connect() -- 01:36:59.595 DEBUG [12247]: Database connection successful -- 01:36:59.595 INFO [12247]: _SERVER found -- 01:36:59.595 INFO [12247]: REMOTE_ADDR = 10.0.0.15 -- 01:36:59.595 INFO [12247]: SERVER_NAME = oameye.works.coregrade.com -- 01:36:59.595 INFO [12247]: QUERY_STRING = /robots.txt -- 01:36:59.595 INFO [12247]: HTTP_X_FORWARDED_FOR = 66.249.70.86 -- 01:36:59.612 INFO [12247]: COREGRADE is stopping... -- 01:36:59.612 DEBUG [12247]: Closing database connection -- 01:36:59.612 SQL [12247]: pgsql_close() -- 01:36:59.727 INFO [3926]: COREGRADE is starting... -- 01:36:59.728 INFO [3926]: Version from config: 1.0 -- 01:36:59.728 DEBUG [3926]: Connecting to database... -- 01:36:59.728 DEBUG [3926]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:36:59.728 SQL [3926]: pgsql_db_connect() -- 01:36:59.732 DEBUG [3926]: Database connection successful -- 01:36:59.732 INFO [3926]: _SERVER found -- 01:36:59.732 INFO [3926]: REMOTE_ADDR = 10.0.0.15 -- 01:36:59.732 INFO [3926]: SERVER_NAME = oameye.works.coregrade.com -- 01:36:59.732 INFO [3926]: QUERY_STRING = -- 01:36:59.732 INFO [3926]: HTTP_X_FORWARDED_FOR = 66.249.70.84 -- 01:36:59.768 INFO [3926]: COREGRADE is stopping... -- 01:36:59.768 DEBUG [3926]: Closing database connection -- 01:36:59.768 SQL [3926]: pgsql_close() -- 03:34:18.488 INFO [12334]: COREGRADE is starting... -- 03:34:18.488 INFO [12334]: Version from config: 1.0 -- 03:34:18.488 DEBUG [12334]: Connecting to database... -- 03:34:18.488 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:34:18.488 SQL [12334]: pgsql_db_connect() -- 03:34:18.493 DEBUG [12334]: Database connection successful -- 03:34:18.493 INFO [12334]: _SERVER found -- 03:34:18.493 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 03:34:18.493 INFO [12334]: SERVER_NAME = oameye.works.coregrade.com -- 03:34:18.493 INFO [12334]: QUERY_STRING = /.well-known/acme-challenge/SIMnFXTJW0jy_v--WrQPmiyisrsn4ACTa_-7xmZBJrg -- 03:34:18.493 INFO [12334]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 03:34:18.508 INFO [12334]: COREGRADE is stopping... -- 03:34:18.508 DEBUG [12334]: Closing database connection -- 03:34:18.508 SQL [12334]: pgsql_close() -- 03:34:18.728 INFO [11018]: COREGRADE is starting... -- 03:34:18.728 INFO [11018]: Version from config: 1.0 -- 03:34:18.728 DEBUG [11018]: Connecting to database... -- 03:34:18.728 DEBUG [11018]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:34:18.728 SQL [11018]: pgsql_db_connect() -- 03:34:18.733 DEBUG [11018]: Database connection successful -- 03:34:18.733 INFO [11018]: _SERVER found -- 03:34:18.733 INFO [11018]: REMOTE_ADDR = 10.0.0.15 -- 03:34:18.733 INFO [11018]: SERVER_NAME = oameye.works.coregrade.com -- 03:34:18.733 INFO [11018]: QUERY_STRING = /.well-known/acme-challenge/SIMnFXTJW0jy_v--WrQPmiyisrsn4ACTa_-7xmZBJrg -- 03:34:18.733 INFO [11018]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 03:34:18.748 INFO [11018]: COREGRADE is stopping... -- 03:34:18.748 DEBUG [11018]: Closing database connection -- 03:34:18.748 SQL [11018]: pgsql_close() -- 03:34:18.765 INFO [12334]: COREGRADE is starting... -- 03:34:18.766 INFO [12334]: Version from config: 1.0 -- 03:34:18.766 DEBUG [12334]: Connecting to database... -- 03:34:18.766 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:34:18.766 SQL [12334]: pgsql_db_connect() -- 03:34:18.770 DEBUG [12334]: Database connection successful -- 03:34:18.770 INFO [12334]: _SERVER found -- 03:34:18.770 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 03:34:18.770 INFO [12334]: SERVER_NAME = oameye.works.coregrade.com -- 03:34:18.770 INFO [12334]: QUERY_STRING = /.well-known/acme-challenge/SIMnFXTJW0jy_v--WrQPmiyisrsn4ACTa_-7xmZBJrg -- 03:34:18.770 INFO [12334]: HTTP_X_FORWARDED_FOR = 34.209.232.166 -- 03:34:18.781 INFO [12334]: COREGRADE is stopping... -- 03:34:18.781 DEBUG [12334]: Closing database connection -- 03:34:18.781 SQL [12334]: pgsql_close() -- 03:34:18.881 INFO [12334]: COREGRADE is starting... -- 03:34:18.881 INFO [12334]: Version from config: 1.0 -- 03:34:18.881 DEBUG [12334]: Connecting to database... -- 03:34:18.881 DEBUG [12334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:34:18.881 SQL [12334]: pgsql_db_connect() -- 03:34:18.885 DEBUG [12334]: Database connection successful -- 03:34:18.885 INFO [12334]: _SERVER found -- 03:34:18.885 INFO [12334]: REMOTE_ADDR = 10.0.0.15 -- 03:34:18.885 INFO [12334]: SERVER_NAME = oameye.works.coregrade.com -- 03:34:18.885 INFO [12334]: QUERY_STRING = /.well-known/acme-challenge/SIMnFXTJW0jy_v--WrQPmiyisrsn4ACTa_-7xmZBJrg -- 03:34:18.885 INFO [12334]: HTTP_X_FORWARDED_FOR = 18.196.96.172 -- 03:34:18.897 INFO [12334]: COREGRADE is stopping... -- 03:34:18.897 DEBUG [12334]: Closing database connection -- 03:34:18.897 SQL [12334]: pgsql_close() -- 21:10:49.818 INFO [11017]: COREGRADE is starting... -- 21:10:49.819 INFO [11017]: Version from config: 1.0 -- 21:10:49.819 DEBUG [11017]: Connecting to database... -- 21:10:49.819 DEBUG [11017]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:10:49.819 SQL [11017]: pgsql_db_connect() -- 21:10:49.823 DEBUG [11017]: Database connection successful -- 21:10:49.823 INFO [11017]: _SERVER found -- 21:10:49.823 INFO [11017]: REMOTE_ADDR = 10.0.0.15 -- 21:10:49.823 INFO [11017]: SERVER_NAME = oameye.works.coregrade.com -- 21:10:49.823 INFO [11017]: QUERY_STRING = -- 21:10:49.823 INFO [11017]: HTTP_X_FORWARDED_FOR = 185.82.215.92 -- 21:10:49.869 INFO [11017]: COREGRADE is stopping... -- 21:10:49.869 DEBUG [11017]: Closing database connection -- 21:10:49.869 SQL [11017]: pgsql_close() -- 01:20:09.939 INFO [12347]: COREGRADE is starting... -- 01:20:09.939 INFO [12347]: Version from config: 1.0 -- 01:20:09.939 DEBUG [12347]: Connecting to database... -- 01:20:09.939 DEBUG [12347]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:20:09.940 SQL [12347]: pgsql_db_connect() -- 01:20:09.944 DEBUG [12347]: Database connection successful -- 01:20:09.944 INFO [12347]: _SERVER found -- 01:20:09.944 INFO [12347]: REMOTE_ADDR = 10.0.0.15 -- 01:20:09.944 INFO [12347]: SERVER_NAME = oameye.works.coregrade.com -- 01:20:09.944 INFO [12347]: QUERY_STRING = -- 01:20:09.944 INFO [12347]: HTTP_X_FORWARDED_FOR = 176.43.128.2 -- 01:20:09.985 INFO [12347]: COREGRADE is stopping... -- 01:20:09.985 DEBUG [12347]: Closing database connection -- 01:20:09.985 SQL [12347]: pgsql_close() -- 01:32:32.420 INFO [12246]: COREGRADE is starting... -- 01:32:32.420 INFO [12246]: Version from config: 1.0 -- 01:32:32.420 DEBUG [12246]: Connecting to database... -- 01:32:32.420 DEBUG [12246]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:32:32.420 SQL [12246]: pgsql_db_connect() -- 01:32:32.438 INFO [12250]: COREGRADE is starting... -- 01:32:32.438 INFO [12250]: Version from config: 1.0 -- 01:32:32.438 DEBUG [12250]: Connecting to database... -- 01:32:32.438 DEBUG [12250]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:32:32.438 SQL [12250]: pgsql_db_connect() -- 01:32:32.426 DEBUG [12246]: Database connection successful -- 01:32:32.426 INFO [12246]: _SERVER found -- 01:32:32.426 INFO [12246]: REMOTE_ADDR = 10.0.0.15 -- 01:32:32.426 INFO [12246]: SERVER_NAME = oameye.works.coregrade.com -- 01:32:32.426 INFO [12246]: QUERY_STRING = /.well-known/acme-challenge/QzJZQfxvV7SZYPewH-2xDNxnDABhxpVMtAYAvJdv7i0 -- 01:32:32.426 INFO [12246]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 01:32:32.445 INFO [12246]: COREGRADE is stopping... -- 01:32:32.449 DEBUG [12246]: Closing database connection -- 01:32:32.449 SQL [12246]: pgsql_close() -- 01:32:32.443 DEBUG [12250]: Database connection successful -- 01:32:32.443 INFO [12250]: _SERVER found -- 01:32:32.443 INFO [12250]: REMOTE_ADDR = 10.0.0.15 -- 01:32:32.443 INFO [12250]: SERVER_NAME = oameye.works.coregrade.com -- 01:32:32.443 INFO [12250]: QUERY_STRING = /.well-known/acme-challenge/QzJZQfxvV7SZYPewH-2xDNxnDABhxpVMtAYAvJdv7i0 -- 01:32:32.443 INFO [12250]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 01:32:32.462 INFO [12250]: COREGRADE is stopping... -- 01:32:32.462 DEBUG [12250]: Closing database connection -- 01:32:32.462 SQL [12250]: pgsql_close() -- 11:09:06.512 INFO [14092]: COREGRADE is starting... -- 11:09:06.513 INFO [14092]: Version from config: 1.0 -- 11:09:06.513 DEBUG [14092]: Connecting to database... -- 11:09:06.513 DEBUG [14092]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:06.513 SQL [14092]: pgsql_db_connect() -- 11:09:06.518 DEBUG [14092]: Database connection successful -- 11:09:06.518 INFO [14092]: _SERVER found -- 11:09:06.518 INFO [14092]: REMOTE_ADDR = 10.0.0.15 -- 11:09:06.518 INFO [14092]: SERVER_NAME = oameye.works.coregrade.com -- 11:09:06.518 INFO [14092]: QUERY_STRING = /solr/admin/info/system -- 11:09:06.518 INFO [14092]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 11:09:06.538 INFO [14092]: COREGRADE is stopping... -- 11:09:06.538 DEBUG [14092]: Closing database connection -- 11:09:06.538 SQL [14092]: pgsql_close() -- 11:18:07.527 INFO [14093]: COREGRADE is starting... -- 11:18:07.528 INFO [14093]: Version from config: 1.0 -- 11:18:07.528 DEBUG [14093]: Connecting to database... -- 11:18:07.528 DEBUG [14093]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:18:07.528 SQL [14093]: pgsql_db_connect() -- 11:18:07.532 DEBUG [14093]: Database connection successful -- 11:18:07.532 INFO [14093]: _SERVER found -- 11:18:07.532 INFO [14093]: REMOTE_ADDR = 10.0.0.15 -- 11:18:07.532 INFO [14093]: SERVER_NAME = oameye.works.coregrade.com -- 11:18:07.532 INFO [14093]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 11:18:07.532 INFO [14093]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 11:18:07.580 INFO [14093]: COREGRADE is stopping... -- 11:18:07.580 DEBUG [14093]: Closing database connection -- 11:18:07.580 SQL [14093]: pgsql_close() -- 11:18:08.116 INFO [14093]: COREGRADE is starting... -- 11:18:08.117 INFO [14093]: Version from config: 1.0 -- 11:18:08.117 DEBUG [14093]: Connecting to database... -- 11:18:08.117 DEBUG [14093]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:18:08.117 SQL [14093]: pgsql_db_connect() -- 11:18:08.121 DEBUG [14093]: Database connection successful -- 11:18:08.121 INFO [14093]: _SERVER found -- 11:18:08.121 INFO [14093]: REMOTE_ADDR = 10.0.0.15 -- 11:18:08.121 INFO [14093]: SERVER_NAME = oameye.works.coregrade.com -- 11:18:08.121 INFO [14093]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 11:18:08.121 INFO [14093]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 11:18:08.152 INFO [14093]: COREGRADE is stopping... -- 11:18:08.152 DEBUG [14093]: Closing database connection -- 11:18:08.152 SQL [14093]: pgsql_close() -- 11:28:32.417 INFO [14094]: COREGRADE is starting... -- 11:28:32.417 INFO [14094]: Version from config: 1.0 -- 11:28:32.417 DEBUG [14094]: Connecting to database... -- 11:28:32.417 DEBUG [14094]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:28:32.417 SQL [14094]: pgsql_db_connect() -- 11:28:32.422 DEBUG [14094]: Database connection successful -- 11:28:32.422 INFO [14094]: _SERVER found -- 11:28:32.422 INFO [14094]: REMOTE_ADDR = 10.0.0.15 -- 11:28:32.422 INFO [14094]: SERVER_NAME = oameye.works.coregrade.com -- 11:28:32.422 INFO [14094]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 11:28:32.422 INFO [14094]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 11:28:32.467 INFO [14094]: COREGRADE is stopping... -- 11:28:32.467 DEBUG [14094]: Closing database connection -- 11:28:32.467 SQL [14094]: pgsql_close() -- 11:57:21.542 INFO [14095]: COREGRADE is starting... -- 11:57:21.543 INFO [14095]: Version from config: 1.0 -- 11:57:21.543 DEBUG [14095]: Connecting to database... -- 11:57:21.543 DEBUG [14095]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:57:21.543 SQL [14095]: pgsql_db_connect() -- 11:57:21.548 DEBUG [14095]: Database connection successful -- 11:57:21.548 INFO [14095]: _SERVER found -- 11:57:21.548 INFO [14095]: REMOTE_ADDR = 10.0.0.15 -- 11:57:21.548 INFO [14095]: SERVER_NAME = oameye.works.coregrade.com -- 11:57:21.548 INFO [14095]: QUERY_STRING = -- 11:57:21.548 INFO [14095]: HTTP_X_FORWARDED_FOR = 198.108.66.251 -- 11:57:21.596 INFO [14095]: COREGRADE is stopping... -- 11:57:21.596 DEBUG [14095]: Closing database connection -- 11:57:21.596 SQL [14095]: pgsql_close() -- 16:26:28.435 INFO [14096]: COREGRADE is starting... -- 16:26:28.435 INFO [14096]: Version from config: 1.0 -- 16:26:28.435 DEBUG [14096]: Connecting to database... -- 16:26:28.435 DEBUG [14096]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:28.435 SQL [14096]: pgsql_db_connect() -- 16:26:28.440 DEBUG [14096]: Database connection successful -- 16:26:28.440 INFO [14096]: _SERVER found -- 16:26:28.440 INFO [14096]: REMOTE_ADDR = 10.0.0.15 -- 16:26:28.440 INFO [14096]: SERVER_NAME = oameye.works.coregrade.com -- 16:26:28.440 INFO [14096]: QUERY_STRING = /robots.txt -- 16:26:28.440 INFO [14096]: HTTP_X_FORWARDED_FOR = 66.249.70.88 -- 16:26:28.456 INFO [14096]: COREGRADE is stopping... -- 16:26:28.456 DEBUG [14096]: Closing database connection -- 16:26:28.456 SQL [14096]: pgsql_close() -- 16:26:28.488 INFO [14096]: COREGRADE is starting... -- 16:26:28.488 INFO [14096]: Version from config: 1.0 -- 16:26:28.488 DEBUG [14096]: Connecting to database... -- 16:26:28.488 DEBUG [14096]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:28.488 SQL [14096]: pgsql_db_connect() -- 16:26:28.493 DEBUG [14096]: Database connection successful -- 16:26:28.493 INFO [14096]: _SERVER found -- 16:26:28.493 INFO [14096]: REMOTE_ADDR = 10.0.0.15 -- 16:26:28.493 INFO [14096]: SERVER_NAME = oameye.works.coregrade.com -- 16:26:28.493 INFO [14096]: QUERY_STRING = -- 16:26:28.493 INFO [14096]: HTTP_X_FORWARDED_FOR = 66.249.70.88 -- 16:26:28.536 INFO [14096]: COREGRADE is stopping... -- 16:26:28.536 DEBUG [14096]: Closing database connection -- 16:26:28.536 SQL [14096]: pgsql_close() -- 16:26:52.030 INFO [19752]: COREGRADE is starting... -- 16:26:52.030 INFO [19752]: Version from config: 1.0 -- 16:26:52.030 DEBUG [19752]: Connecting to database... -- 16:26:52.030 DEBUG [19752]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:26:52.030 SQL [19752]: pgsql_db_connect() -- 16:26:52.035 DEBUG [19752]: Database connection successful -- 16:26:52.035 INFO [19752]: _SERVER found -- 16:26:52.035 INFO [19752]: REMOTE_ADDR = 10.0.0.15 -- 16:26:52.035 INFO [19752]: SERVER_NAME = oameye.works.coregrade.com -- 16:26:52.035 INFO [19752]: QUERY_STRING = /favicon.ico -- 16:26:52.035 INFO [19752]: HTTP_X_FORWARDED_FOR = 66.249.70.84 -- 16:26:52.051 INFO [19752]: COREGRADE is stopping... -- 16:26:52.051 DEBUG [19752]: Closing database connection -- 16:26:52.051 SQL [19752]: pgsql_close() -- 17:58:35.868 INFO [14092]: COREGRADE is starting... -- 17:58:35.868 INFO [14092]: Version from config: 1.0 -- 17:58:35.868 DEBUG [14092]: Connecting to database... -- 17:58:35.868 DEBUG [14092]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:58:35.868 SQL [14092]: pgsql_db_connect() -- 17:58:35.873 DEBUG [14092]: Database connection successful -- 17:58:35.873 INFO [14092]: _SERVER found -- 17:58:35.873 INFO [14092]: REMOTE_ADDR = 10.0.0.15 -- 17:58:35.873 INFO [14092]: SERVER_NAME = oameye.works.coregrade.com -- 17:58:35.873 INFO [14092]: QUERY_STRING = -- 17:58:35.873 INFO [14092]: HTTP_X_FORWARDED_FOR = 66.249.70.84 -- 17:58:35.920 INFO [14092]: COREGRADE is stopping... -- 17:58:35.920 DEBUG [14092]: Closing database connection -- 17:58:35.920 SQL [14092]: pgsql_close() -- 23:54:08.450 INFO [14093]: COREGRADE is starting... -- 23:54:08.451 INFO [14093]: Version from config: 1.0 -- 23:54:08.451 DEBUG [14093]: Connecting to database... -- 23:54:08.451 DEBUG [14093]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:54:08.451 SQL [14093]: pgsql_db_connect() -- 23:54:08.455 DEBUG [14093]: Database connection successful -- 23:54:08.456 INFO [14093]: _SERVER found -- 23:54:08.456 INFO [14093]: REMOTE_ADDR = 10.0.0.15 -- 23:54:08.456 INFO [14093]: SERVER_NAME = oameye.works.coregrade.com -- 23:54:08.456 INFO [14093]: QUERY_STRING = /.well-known/acme-challenge/XwTmFm32G3YDoQRE7xlDzY_xgzOO704iPbTdDBJc8-o -- 23:54:08.456 INFO [14093]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 23:54:08.471 INFO [14093]: COREGRADE is stopping... -- 23:54:08.471 DEBUG [14093]: Closing database connection -- 23:54:08.471 SQL [14093]: pgsql_close() -- 23:54:08.653 INFO [14093]: COREGRADE is starting... -- 23:54:08.654 INFO [14093]: Version from config: 1.0 -- 23:54:08.654 DEBUG [14093]: Connecting to database... -- 23:54:08.654 DEBUG [14093]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:54:08.654 SQL [14093]: pgsql_db_connect() -- 23:54:08.658 DEBUG [14093]: Database connection successful -- 23:54:08.658 INFO [14093]: _SERVER found -- 23:54:08.658 INFO [14093]: REMOTE_ADDR = 10.0.0.15 -- 23:54:08.658 INFO [14093]: SERVER_NAME = oameye.works.coregrade.com -- 23:54:08.658 INFO [14093]: QUERY_STRING = /.well-known/acme-challenge/XwTmFm32G3YDoQRE7xlDzY_xgzOO704iPbTdDBJc8-o -- 23:54:08.658 INFO [14093]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 23:54:08.670 INFO [14093]: COREGRADE is stopping... -- 23:54:08.670 DEBUG [14093]: Closing database connection -- 23:54:08.670 SQL [14093]: pgsql_close() -- 03:29:20.439 INFO [14096]: COREGRADE is starting... -- 03:29:20.440 INFO [14096]: Version from config: 1.0 -- 03:29:20.440 DEBUG [14096]: Connecting to database... -- 03:29:20.440 DEBUG [14096]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:29:20.440 SQL [14096]: pgsql_db_connect() -- 03:29:20.444 DEBUG [14096]: Database connection successful -- 03:29:20.444 INFO [14096]: _SERVER found -- 03:29:20.444 INFO [14096]: REMOTE_ADDR = 10.0.0.15 -- 03:29:20.444 INFO [14096]: SERVER_NAME = oameye.works.coregrade.com -- 03:29:20.444 INFO [14096]: QUERY_STRING = /solr/admin/info/system -- 03:29:20.444 INFO [14096]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 03:29:20.458 INFO [14096]: COREGRADE is stopping... -- 03:29:20.458 DEBUG [14096]: Closing database connection -- 03:29:20.458 SQL [14096]: pgsql_close() -- 03:42:01.640 INFO [19752]: COREGRADE is starting... -- 03:42:01.640 INFO [19752]: Version from config: 1.0 -- 03:42:01.640 DEBUG [19752]: Connecting to database... -- 03:42:01.640 DEBUG [19752]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:42:01.640 SQL [19752]: pgsql_db_connect() -- 03:42:01.644 DEBUG [19752]: Database connection successful -- 03:42:01.644 INFO [19752]: _SERVER found -- 03:42:01.644 INFO [19752]: REMOTE_ADDR = 10.0.0.15 -- 03:42:01.644 INFO [19752]: SERVER_NAME = oameye.works.coregrade.com -- 03:42:01.644 INFO [19752]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 03:42:01.644 INFO [19752]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 03:42:01.687 INFO [19752]: COREGRADE is stopping... -- 03:42:01.687 DEBUG [19752]: Closing database connection -- 03:42:01.687 SQL [19752]: pgsql_close() -- 03:42:01.964 INFO [19752]: COREGRADE is starting... -- 03:42:01.964 INFO [19752]: Version from config: 1.0 -- 03:42:01.964 DEBUG [19752]: Connecting to database... -- 03:42:01.965 DEBUG [19752]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:42:01.965 SQL [19752]: pgsql_db_connect() -- 03:42:01.969 DEBUG [19752]: Database connection successful -- 03:42:01.969 INFO [19752]: _SERVER found -- 03:42:01.969 INFO [19752]: REMOTE_ADDR = 10.0.0.15 -- 03:42:01.969 INFO [19752]: SERVER_NAME = oameye.works.coregrade.com -- 03:42:01.969 INFO [19752]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 03:42:01.969 INFO [19752]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 03:42:01.000 INFO [19752]: COREGRADE is stopping... -- 03:42:01.000 DEBUG [19752]: Closing database connection -- 03:42:01.000 SQL [19752]: pgsql_close() -- 03:58:16.632 INFO [14092]: COREGRADE is starting... -- 03:58:16.633 INFO [14092]: Version from config: 1.0 -- 03:58:16.633 DEBUG [14092]: Connecting to database... -- 03:58:16.633 DEBUG [14092]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:58:16.633 SQL [14092]: pgsql_db_connect() -- 03:58:16.638 DEBUG [14092]: Database connection successful -- 03:58:16.638 INFO [14092]: _SERVER found -- 03:58:16.638 INFO [14092]: REMOTE_ADDR = 10.0.0.15 -- 03:58:16.638 INFO [14092]: SERVER_NAME = oameye.works.coregrade.com -- 03:58:16.638 INFO [14092]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 03:58:16.638 INFO [14092]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 03:58:16.673 INFO [14092]: COREGRADE is stopping... -- 03:58:16.673 DEBUG [14092]: Closing database connection -- 03:58:16.673 SQL [14092]: pgsql_close() -- 07:25:42.858 INFO [2160]: COREGRADE is starting... -- 07:25:42.858 INFO [2160]: Version from config: 1.0 -- 07:25:42.858 DEBUG [2160]: Connecting to database... -- 07:25:42.858 DEBUG [2160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:25:42.858 SQL [2160]: pgsql_db_connect() -- 07:25:42.864 DEBUG [2160]: Database connection successful -- 07:25:42.864 INFO [2160]: _SERVER found -- 07:25:42.864 INFO [2160]: REMOTE_ADDR = 10.0.0.15 -- 07:25:42.864 INFO [2160]: SERVER_NAME = oameye.works.coregrade.com -- 07:25:42.864 INFO [2160]: QUERY_STRING = -- 07:25:42.864 INFO [2160]: HTTP_X_FORWARDED_FOR = 176.43.128.2 -- 07:25:42.913 INFO [2160]: COREGRADE is stopping... -- 07:25:42.913 DEBUG [2160]: Closing database connection -- 07:25:42.913 SQL [2160]: pgsql_close() -- 07:25:52.702 INFO [2161]: COREGRADE is starting... -- 07:25:52.702 INFO [2161]: Version from config: 1.0 -- 07:25:52.702 DEBUG [2161]: Connecting to database... -- 07:25:52.702 DEBUG [2161]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:25:52.702 SQL [2161]: pgsql_db_connect() -- 07:25:52.706 DEBUG [2161]: Database connection successful -- 07:25:52.706 INFO [2161]: _SERVER found -- 07:25:52.706 INFO [2161]: REMOTE_ADDR = 10.0.0.15 -- 07:25:52.706 INFO [2161]: SERVER_NAME = oameye.works.coregrade.com -- 07:25:52.706 INFO [2161]: QUERY_STRING = /robots.txt -- 07:25:52.706 INFO [2161]: HTTP_X_FORWARDED_FOR = 66.249.70.86 -- 07:25:52.722 INFO [2161]: COREGRADE is stopping... -- 07:25:52.722 DEBUG [2161]: Closing database connection -- 07:25:52.722 SQL [2161]: pgsql_close() -- 07:25:52.817 INFO [2161]: COREGRADE is starting... -- 07:25:52.817 INFO [2161]: Version from config: 1.0 -- 07:25:52.817 DEBUG [2161]: Connecting to database... -- 07:25:52.817 DEBUG [2161]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:25:52.817 SQL [2161]: pgsql_db_connect() -- 07:25:52.821 DEBUG [2161]: Database connection successful -- 07:25:52.821 INFO [2161]: _SERVER found -- 07:25:52.821 INFO [2161]: REMOTE_ADDR = 10.0.0.15 -- 07:25:52.821 INFO [2161]: SERVER_NAME = oameye.works.coregrade.com -- 07:25:52.821 INFO [2161]: QUERY_STRING = /favicon.ico -- 07:25:52.821 INFO [2161]: HTTP_X_FORWARDED_FOR = 66.249.70.88 -- 07:25:52.833 INFO [2161]: COREGRADE is stopping... -- 07:25:52.833 DEBUG [2161]: Closing database connection -- 07:25:52.833 SQL [2161]: pgsql_close() -- 07:26:55.047 INFO [14094]: COREGRADE is starting... -- 07:26:55.047 INFO [14094]: Version from config: 1.0 -- 07:26:55.047 DEBUG [14094]: Connecting to database... -- 07:26:55.047 DEBUG [14094]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:26:55.047 SQL [14094]: pgsql_db_connect() -- 07:26:55.051 DEBUG [14094]: Database connection successful -- 07:26:55.051 INFO [14094]: _SERVER found -- 07:26:55.051 INFO [14094]: REMOTE_ADDR = 10.0.0.15 -- 07:26:55.051 INFO [14094]: SERVER_NAME = oameye.works.coregrade.com -- 07:26:55.051 INFO [14094]: QUERY_STRING = /favicon.ico -- 07:26:55.051 INFO [14094]: HTTP_X_FORWARDED_FOR = 66.249.70.88 -- 07:26:55.065 INFO [14094]: COREGRADE is stopping... -- 07:26:55.065 DEBUG [14094]: Closing database connection -- 07:26:55.065 SQL [14094]: pgsql_close() -- 07:51:52.512 INFO [14093]: COREGRADE is starting... -- 07:51:52.512 INFO [14093]: Version from config: 1.0 -- 07:51:52.512 DEBUG [14093]: Connecting to database... -- 07:51:52.512 DEBUG [14093]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:51:52.512 SQL [14093]: pgsql_db_connect() -- 07:51:52.517 DEBUG [14093]: Database connection successful -- 07:51:52.517 INFO [14093]: _SERVER found -- 07:51:52.517 INFO [14093]: REMOTE_ADDR = 10.0.0.15 -- 07:51:52.517 INFO [14093]: SERVER_NAME = oameye.works.coregrade.com -- 07:51:52.517 INFO [14093]: QUERY_STRING = /api/jsonws/invoke -- 07:51:52.517 INFO [14093]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 07:51:52.531 INFO [14093]: COREGRADE is stopping... -- 07:51:52.531 DEBUG [14093]: Closing database connection -- 07:51:52.531 SQL [14093]: pgsql_close() -- 11:10:15.785 INFO [14095]: COREGRADE is starting... -- 11:10:15.785 INFO [14095]: Version from config: 1.0 -- 11:10:15.785 DEBUG [14095]: Connecting to database... -- 11:10:15.785 DEBUG [14095]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:10:15.785 SQL [14095]: pgsql_db_connect() -- 11:10:15.790 DEBUG [14095]: Database connection successful -- 11:10:15.790 INFO [14095]: _SERVER found -- 11:10:15.790 INFO [14095]: REMOTE_ADDR = 10.0.0.15 -- 11:10:15.790 INFO [14095]: SERVER_NAME = oameye.works.coregrade.com -- 11:10:15.790 INFO [14095]: QUERY_STRING = /.env -- 11:10:15.790 INFO [14095]: HTTP_X_FORWARDED_FOR = 13.66.224.185 -- 11:10:15.807 INFO [14095]: COREGRADE is stopping... -- 11:10:15.807 DEBUG [14095]: Closing database connection -- 11:10:15.807 SQL [14095]: pgsql_close() -- 13:51:39.172 INFO [14096]: COREGRADE is starting... -- 13:51:39.173 INFO [14096]: Version from config: 1.0 -- 13:51:39.173 DEBUG [14096]: Connecting to database... -- 13:51:39.173 DEBUG [14096]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:51:39.173 SQL [14096]: pgsql_db_connect() -- 13:51:39.178 DEBUG [14096]: Database connection successful -- 13:51:39.178 INFO [14096]: _SERVER found -- 13:51:39.178 INFO [14096]: REMOTE_ADDR = 10.0.0.15 -- 13:51:39.178 INFO [14096]: SERVER_NAME = oameye.works.coregrade.com -- 13:51:39.178 INFO [14096]: QUERY_STRING = -- 13:51:39.178 INFO [14096]: HTTP_X_FORWARDED_FOR = 104.248.92.71 -- 13:51:39.217 INFO [14096]: COREGRADE is stopping... -- 13:51:39.217 DEBUG [14096]: Closing database connection -- 13:51:39.217 SQL [14096]: pgsql_close() -- 00:24:22.679 INFO [19752]: COREGRADE is starting... -- 00:24:22.680 INFO [19752]: Version from config: 1.0 -- 00:24:22.680 DEBUG [19752]: Connecting to database... -- 00:24:22.680 DEBUG [19752]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:24:22.680 SQL [19752]: pgsql_db_connect() -- 00:24:22.684 DEBUG [19752]: Database connection successful -- 00:24:22.684 INFO [19752]: _SERVER found -- 00:24:22.684 INFO [19752]: REMOTE_ADDR = 10.0.0.15 -- 00:24:22.684 INFO [19752]: SERVER_NAME = oameye.works.coregrade.com -- 00:24:22.684 INFO [19752]: QUERY_STRING = /solr/admin/info/system -- 00:24:22.684 INFO [19752]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 00:24:22.697 INFO [19752]: COREGRADE is stopping... -- 00:24:22.698 DEBUG [19752]: Closing database connection -- 00:24:22.698 SQL [19752]: pgsql_close() -- 00:27:36.764 INFO [14092]: COREGRADE is starting... -- 00:27:36.764 INFO [14092]: Version from config: 1.0 -- 00:27:36.764 DEBUG [14092]: Connecting to database... -- 00:27:36.764 DEBUG [14092]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:36.764 SQL [14092]: pgsql_db_connect() -- 00:27:36.768 DEBUG [14092]: Database connection successful -- 00:27:36.768 INFO [14092]: _SERVER found -- 00:27:36.768 INFO [14092]: REMOTE_ADDR = 10.0.0.15 -- 00:27:36.768 INFO [14092]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:36.768 INFO [14092]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 00:27:36.768 INFO [14092]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 00:27:36.807 INFO [14092]: COREGRADE is stopping... -- 00:27:36.807 DEBUG [14092]: Closing database connection -- 00:27:36.807 SQL [14092]: pgsql_close() -- 00:27:38.306 INFO [14092]: COREGRADE is starting... -- 00:27:38.306 INFO [14092]: Version from config: 1.0 -- 00:27:38.306 DEBUG [14092]: Connecting to database... -- 00:27:38.307 DEBUG [14092]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:27:38.307 SQL [14092]: pgsql_db_connect() -- 00:27:38.311 DEBUG [14092]: Database connection successful -- 00:27:38.311 INFO [14092]: _SERVER found -- 00:27:38.311 INFO [14092]: REMOTE_ADDR = 10.0.0.15 -- 00:27:38.311 INFO [14092]: SERVER_NAME = oameye.works.coregrade.com -- 00:27:38.311 INFO [14092]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 00:27:38.311 INFO [14092]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 00:27:38.342 INFO [14092]: COREGRADE is stopping... -- 00:27:38.342 DEBUG [14092]: Closing database connection -- 00:27:38.342 SQL [14092]: pgsql_close() -- 00:34:09.585 INFO [2160]: COREGRADE is starting... -- 00:34:09.585 INFO [2160]: Version from config: 1.0 -- 00:34:09.585 DEBUG [2160]: Connecting to database... -- 00:34:09.585 DEBUG [2160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:34:09.585 SQL [2160]: pgsql_db_connect() -- 00:34:09.590 DEBUG [2160]: Database connection successful -- 00:34:09.590 INFO [2160]: _SERVER found -- 00:34:09.590 INFO [2160]: REMOTE_ADDR = 10.0.0.15 -- 00:34:09.590 INFO [2160]: SERVER_NAME = oameye.works.coregrade.com -- 00:34:09.590 INFO [2160]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 00:34:09.590 INFO [2160]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 00:34:09.629 INFO [2160]: COREGRADE is stopping... -- 00:34:09.629 DEBUG [2160]: Closing database connection -- 00:34:09.629 SQL [2160]: pgsql_close() -- 01:03:18.108 INFO [2161]: COREGRADE is starting... -- 01:03:18.108 INFO [2161]: Version from config: 1.0 -- 01:03:18.108 DEBUG [2161]: Connecting to database... -- 01:03:18.108 DEBUG [2161]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:03:18.108 SQL [2161]: pgsql_db_connect() -- 01:03:18.113 DEBUG [2161]: Database connection successful -- 01:03:18.113 INFO [2161]: _SERVER found -- 01:03:18.113 INFO [2161]: REMOTE_ADDR = 10.0.0.15 -- 01:03:18.113 INFO [2161]: SERVER_NAME = oameye.works.coregrade.com -- 01:03:18.113 INFO [2161]: QUERY_STRING = -- 01:03:18.113 INFO [2161]: HTTP_X_FORWARDED_FOR = 52.175.199.82 -- 01:03:18.159 INFO [2161]: COREGRADE is stopping... -- 01:03:18.159 DEBUG [2161]: Closing database connection -- 01:03:18.159 SQL [2161]: pgsql_close() -- 01:40:58.799 INFO [14094]: COREGRADE is starting... -- 01:40:58.799 INFO [14094]: Version from config: 1.0 -- 01:40:58.799 DEBUG [14094]: Connecting to database... -- 01:40:58.799 DEBUG [14094]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:40:58.799 SQL [14094]: pgsql_db_connect() -- 01:40:58.804 DEBUG [14094]: Database connection successful -- 01:40:58.804 INFO [14094]: _SERVER found -- 01:40:58.804 INFO [14094]: REMOTE_ADDR = 10.0.0.15 -- 01:40:58.804 INFO [14094]: SERVER_NAME = oameye.works.coregrade.com -- 01:40:58.804 INFO [14094]: QUERY_STRING = /api/jsonws/invoke -- 01:40:58.804 INFO [14094]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 01:40:58.819 INFO [14094]: COREGRADE is stopping... -- 01:40:58.819 DEBUG [14094]: Closing database connection -- 01:40:58.819 SQL [14094]: pgsql_close() -- 02:39:09.861 INFO [14093]: COREGRADE is starting... -- 02:39:09.861 INFO [14093]: Version from config: 1.0 -- 02:39:09.861 DEBUG [14093]: Connecting to database... -- 02:39:09.861 DEBUG [14093]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:39:09.861 SQL [14093]: pgsql_db_connect() -- 02:39:09.866 DEBUG [14093]: Database connection successful -- 02:39:09.866 INFO [14093]: _SERVER found -- 02:39:09.866 INFO [14093]: REMOTE_ADDR = 10.0.0.15 -- 02:39:09.866 INFO [14093]: SERVER_NAME = oameye.works.coregrade.com -- 02:39:09.866 INFO [14093]: QUERY_STRING = /.well-known/acme-challenge/jQdQ-j2zrJ_979BHMKslouPf1_fKF_E8F8aSfVNIf18 -- 02:39:09.866 INFO [14093]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 02:39:09.891 INFO [14093]: COREGRADE is stopping... -- 02:39:09.891 DEBUG [14093]: Closing database connection -- 02:39:09.891 SQL [14093]: pgsql_close() -- 02:39:10.044 INFO [14096]: COREGRADE is starting... -- 02:39:10.044 INFO [14096]: Version from config: 1.0 -- 02:39:10.044 DEBUG [14096]: Connecting to database... -- 02:39:10.044 DEBUG [14096]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:39:10.044 SQL [14096]: pgsql_db_connect() -- 02:39:10.049 DEBUG [14096]: Database connection successful -- 02:39:10.049 INFO [14096]: _SERVER found -- 02:39:10.049 INFO [14096]: REMOTE_ADDR = 10.0.0.15 -- 02:39:10.049 INFO [14096]: SERVER_NAME = oameye.works.coregrade.com -- 02:39:10.049 INFO [14096]: QUERY_STRING = /.well-known/acme-challenge/jQdQ-j2zrJ_979BHMKslouPf1_fKF_E8F8aSfVNIf18 -- 02:39:10.049 INFO [14096]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 02:39:10.063 INFO [14096]: COREGRADE is stopping... -- 02:39:10.063 DEBUG [14096]: Closing database connection -- 02:39:10.063 SQL [14096]: pgsql_close() -- 02:39:10.158 INFO [14092]: COREGRADE is starting... -- 02:39:10.158 INFO [14092]: Version from config: 1.0 -- 02:39:10.158 DEBUG [14092]: Connecting to database... -- 02:39:10.158 DEBUG [14092]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:39:10.158 SQL [14092]: pgsql_db_connect() -- 02:39:10.162 DEBUG [14092]: Database connection successful -- 02:39:10.162 INFO [14092]: _SERVER found -- 02:39:10.162 INFO [14092]: REMOTE_ADDR = 10.0.0.15 -- 02:39:10.162 INFO [14092]: SERVER_NAME = oameye.works.coregrade.com -- 02:39:10.162 INFO [14092]: QUERY_STRING = /.well-known/acme-challenge/jQdQ-j2zrJ_979BHMKslouPf1_fKF_E8F8aSfVNIf18 -- 02:39:10.162 INFO [14092]: HTTP_X_FORWARDED_FOR = 18.196.96.172 -- 02:39:10.177 INFO [14092]: COREGRADE is stopping... -- 02:39:10.177 DEBUG [14092]: Closing database connection -- 02:39:10.177 SQL [14092]: pgsql_close() -- 04:31:19.825 INFO [2160]: COREGRADE is starting... -- 04:31:19.826 INFO [2160]: Version from config: 1.0 -- 04:31:19.826 DEBUG [2160]: Connecting to database... -- 04:31:19.826 DEBUG [2160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:31:19.826 SQL [2160]: pgsql_db_connect() -- 04:31:19.830 DEBUG [2160]: Database connection successful -- 04:31:19.830 INFO [2160]: _SERVER found -- 04:31:19.830 INFO [2160]: REMOTE_ADDR = 10.0.0.15 -- 04:31:19.830 INFO [2160]: SERVER_NAME = oameye.works.coregrade.com -- 04:31:19.830 INFO [2160]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 04:31:19.830 INFO [2160]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 04:31:19.844 INFO [2160]: COREGRADE is stopping... -- 04:31:19.844 DEBUG [2160]: Closing database connection -- 04:31:19.844 SQL [2160]: pgsql_close() -- 04:56:54.514 INFO [2161]: COREGRADE is starting... -- 04:56:54.515 INFO [2161]: Version from config: 1.0 -- 04:56:54.515 DEBUG [2161]: Connecting to database... -- 04:56:54.515 DEBUG [2161]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:56:54.515 SQL [2161]: pgsql_db_connect() -- 04:56:54.520 DEBUG [2161]: Database connection successful -- 04:56:54.520 INFO [2161]: _SERVER found -- 04:56:54.520 INFO [2161]: REMOTE_ADDR = 10.0.0.15 -- 04:56:54.520 INFO [2161]: SERVER_NAME = oameye.works.coregrade.com -- 04:56:54.520 INFO [2161]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 04:56:54.520 INFO [2161]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 04:56:54.534 INFO [2161]: COREGRADE is stopping... -- 04:56:54.534 DEBUG [2161]: Closing database connection -- 04:56:54.534 SQL [2161]: pgsql_close() -- 06:51:22.475 INFO [14094]: COREGRADE is starting... -- 06:51:22.475 INFO [14094]: Version from config: 1.0 -- 06:51:22.476 DEBUG [14094]: Connecting to database... -- 06:51:22.476 DEBUG [14094]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:51:22.476 SQL [14094]: pgsql_db_connect() -- 06:51:22.481 DEBUG [14094]: Database connection successful -- 06:51:22.481 INFO [14094]: _SERVER found -- 06:51:22.481 INFO [14094]: REMOTE_ADDR = 10.0.0.15 -- 06:51:22.481 INFO [14094]: SERVER_NAME = oameye.works.coregrade.com -- 06:51:22.481 INFO [14094]: QUERY_STRING = /axis2/axis2-admin/login -- 06:51:22.481 INFO [14094]: HTTP_X_FORWARDED_FOR = 103.230.242.30 -- 06:51:22.497 INFO [14094]: COREGRADE is stopping... -- 06:51:22.497 DEBUG [14094]: Closing database connection -- 06:51:22.497 SQL [14094]: pgsql_close() -- 07:08:56.333 INFO [2385]: COREGRADE is starting... -- 07:08:56.333 INFO [2385]: Version from config: 1.0 -- 07:08:56.333 DEBUG [2385]: Connecting to database... -- 07:08:56.333 DEBUG [2385]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:08:56.333 SQL [2385]: pgsql_db_connect() -- 07:08:56.338 DEBUG [2385]: Database connection successful -- 07:08:56.338 INFO [2385]: _SERVER found -- 07:08:56.338 INFO [2385]: REMOTE_ADDR = 10.0.0.15 -- 07:08:56.338 INFO [2385]: SERVER_NAME = oameye.works.coregrade.com -- 07:08:56.338 INFO [2385]: QUERY_STRING = -- 07:08:56.338 INFO [2385]: HTTP_X_FORWARDED_FOR = 185.82.215.92 -- 07:08:56.387 INFO [2385]: COREGRADE is stopping... -- 07:08:56.387 DEBUG [2385]: Closing database connection -- 07:08:56.387 SQL [2385]: pgsql_close() -- 07:09:31.474 INFO [2386]: COREGRADE is starting... -- 07:09:31.475 INFO [2386]: Version from config: 1.0 -- 07:09:31.475 DEBUG [2386]: Connecting to database... -- 07:09:31.475 DEBUG [2386]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:09:31.475 SQL [2386]: pgsql_db_connect() -- 07:09:31.479 DEBUG [2386]: Database connection successful -- 07:09:31.479 INFO [2386]: _SERVER found -- 07:09:31.479 INFO [2386]: REMOTE_ADDR = 10.0.0.15 -- 07:09:31.479 INFO [2386]: SERVER_NAME = oameye.works.coregrade.com -- 07:09:31.479 INFO [2386]: QUERY_STRING = /TP/public/index.php -- 07:09:31.479 INFO [2386]: HTTP_X_FORWARDED_FOR = 111.229.180.198 -- 07:09:31.495 INFO [2386]: COREGRADE is stopping... -- 07:09:31.495 DEBUG [2386]: Closing database connection -- 07:09:31.495 SQL [2386]: pgsql_close() -- 07:09:38.588 INFO [14093]: COREGRADE is starting... -- 07:09:38.589 INFO [14093]: Version from config: 1.0 -- 07:09:38.589 DEBUG [14093]: Connecting to database... -- 07:09:38.589 DEBUG [14093]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:09:38.589 SQL [14093]: pgsql_db_connect() -- 07:09:38.593 DEBUG [14093]: Database connection successful -- 07:09:38.593 INFO [14093]: _SERVER found -- 07:09:38.593 INFO [14093]: REMOTE_ADDR = 10.0.0.15 -- 07:09:38.593 INFO [14093]: SERVER_NAME = oameye.works.coregrade.com -- 07:09:38.593 INFO [14093]: QUERY_STRING = -- 07:09:38.593 INFO [14093]: HTTP_X_FORWARDED_FOR = 111.229.180.198 -- 07:09:38.629 INFO [14093]: COREGRADE is stopping... -- 07:09:38.629 DEBUG [14093]: Closing database connection -- 07:09:38.629 SQL [14093]: pgsql_close() -- 11:57:43.037 INFO [14095]: COREGRADE is starting... -- 11:57:43.038 INFO [14095]: Version from config: 1.0 -- 11:57:43.038 DEBUG [14095]: Connecting to database... -- 11:57:43.038 DEBUG [14095]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:57:43.038 SQL [14095]: pgsql_db_connect() -- 11:57:43.042 DEBUG [14095]: Database connection successful -- 11:57:43.042 INFO [14095]: _SERVER found -- 11:57:43.042 INFO [14095]: REMOTE_ADDR = 10.0.0.15 -- 11:57:43.042 INFO [14095]: SERVER_NAME = oameye.works.coregrade.com -- 11:57:43.042 INFO [14095]: QUERY_STRING = -- 11:57:43.042 INFO [14095]: HTTP_X_FORWARDED_FOR = 65.49.27.166 -- 11:57:43.084 INFO [14095]: COREGRADE is stopping... -- 11:57:43.084 DEBUG [14095]: Closing database connection -- 11:57:43.084 SQL [14095]: pgsql_close() -- 14:56:08.101 INFO [14096]: COREGRADE is starting... -- 14:56:08.101 INFO [14096]: Version from config: 1.0 -- 14:56:08.101 DEBUG [14096]: Connecting to database... -- 14:56:08.101 DEBUG [14096]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:56:08.101 SQL [14096]: pgsql_db_connect() -- 14:56:08.106 DEBUG [14096]: Database connection successful -- 14:56:08.106 INFO [14096]: _SERVER found -- 14:56:08.106 INFO [14096]: REMOTE_ADDR = 10.0.0.15 -- 14:56:08.106 INFO [14096]: SERVER_NAME = oameye.works.coregrade.com -- 14:56:08.106 INFO [14096]: QUERY_STRING = /solr/admin/info/system -- 14:56:08.106 INFO [14096]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 14:56:08.120 INFO [14096]: COREGRADE is stopping... -- 14:56:08.120 DEBUG [14096]: Closing database connection -- 14:56:08.120 SQL [14096]: pgsql_close() -- 15:01:17.443 INFO [19752]: COREGRADE is starting... -- 15:01:17.444 INFO [19752]: Version from config: 1.0 -- 15:01:17.444 DEBUG [19752]: Connecting to database... -- 15:01:17.444 DEBUG [19752]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:01:17.444 SQL [19752]: pgsql_db_connect() -- 15:01:17.448 DEBUG [19752]: Database connection successful -- 15:01:17.448 INFO [19752]: _SERVER found -- 15:01:17.448 INFO [19752]: REMOTE_ADDR = 10.0.0.15 -- 15:01:17.448 INFO [19752]: SERVER_NAME = oameye.works.coregrade.com -- 15:01:17.448 INFO [19752]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 15:01:17.448 INFO [19752]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 15:01:17.488 INFO [19752]: COREGRADE is stopping... -- 15:01:17.488 DEBUG [19752]: Closing database connection -- 15:01:17.488 SQL [19752]: pgsql_close() -- 15:01:17.614 INFO [14092]: COREGRADE is starting... -- 15:01:17.614 INFO [14092]: Version from config: 1.0 -- 15:01:17.614 DEBUG [14092]: Connecting to database... -- 15:01:17.614 DEBUG [14092]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:01:17.614 SQL [14092]: pgsql_db_connect() -- 15:01:17.618 DEBUG [14092]: Database connection successful -- 15:01:17.618 INFO [14092]: _SERVER found -- 15:01:17.618 INFO [14092]: REMOTE_ADDR = 10.0.0.15 -- 15:01:17.618 INFO [14092]: SERVER_NAME = oameye.works.coregrade.com -- 15:01:17.618 INFO [14092]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 15:01:17.618 INFO [14092]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 15:01:17.655 INFO [14092]: COREGRADE is stopping... -- 15:01:17.655 DEBUG [14092]: Closing database connection -- 15:01:17.655 SQL [14092]: pgsql_close() -- 15:12:51.026 INFO [2160]: COREGRADE is starting... -- 15:12:51.027 INFO [2160]: Version from config: 1.0 -- 15:12:51.027 DEBUG [2160]: Connecting to database... -- 15:12:51.027 DEBUG [2160]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:12:51.027 SQL [2160]: pgsql_db_connect() -- 15:12:51.031 DEBUG [2160]: Database connection successful -- 15:12:51.031 INFO [2160]: _SERVER found -- 15:12:51.031 INFO [2160]: REMOTE_ADDR = 10.0.0.15 -- 15:12:51.031 INFO [2160]: SERVER_NAME = oameye.works.coregrade.com -- 15:12:51.031 INFO [2160]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 15:12:51.031 INFO [2160]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 15:12:51.068 INFO [2160]: COREGRADE is stopping... -- 15:12:51.068 DEBUG [2160]: Closing database connection -- 15:12:51.068 SQL [2160]: pgsql_close() -- 17:32:52.096 INFO [2161]: COREGRADE is starting... -- 17:32:52.097 INFO [2161]: Version from config: 1.0 -- 17:32:52.097 DEBUG [2161]: Connecting to database... -- 17:32:52.097 DEBUG [2161]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:32:52.097 SQL [2161]: pgsql_db_connect() -- 17:32:52.102 DEBUG [2161]: Database connection successful -- 17:32:52.102 INFO [2161]: _SERVER found -- 17:32:52.102 INFO [2161]: REMOTE_ADDR = 10.0.0.15 -- 17:32:52.102 INFO [2161]: SERVER_NAME = oameye.works.coregrade.com -- 17:32:52.102 INFO [2161]: QUERY_STRING = /api/jsonws/invoke -- 17:32:52.102 INFO [2161]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 17:32:52.118 INFO [2161]: COREGRADE is stopping... -- 17:32:52.118 DEBUG [2161]: Closing database connection -- 17:32:52.118 SQL [2161]: pgsql_close() -- 21:29:04.891 INFO [7571]: COREGRADE is starting... -- 21:29:04.892 INFO [7571]: Version from config: 1.0 -- 21:29:04.892 DEBUG [7571]: Connecting to database... -- 21:29:04.892 DEBUG [7571]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:04.892 SQL [7571]: pgsql_db_connect() -- 21:29:04.896 DEBUG [7571]: Database connection successful -- 21:29:04.896 INFO [7571]: _SERVER found -- 21:29:04.896 INFO [7571]: REMOTE_ADDR = 10.0.0.15 -- 21:29:04.896 INFO [7571]: SERVER_NAME = works.coregrade.com -- 21:29:04.896 INFO [7571]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979 -- 21:29:04.896 INFO [7571]: QUERY_STRING = -- 21:29:04.896 INFO [7571]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:29:04.941 INFO [7571]: COREGRADE is stopping... -- 21:29:04.941 DEBUG [7571]: Closing database connection -- 21:29:04.941 SQL [7571]: pgsql_close() -- 21:29:05.749 INFO [7570]: COREGRADE is starting... -- 21:29:05.749 INFO [7570]: Version from config: 1.0 -- 21:29:05.749 DEBUG [7570]: Connecting to database... -- 21:29:05.749 DEBUG [7570]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:29:05.749 SQL [7570]: pgsql_db_connect() -- 21:29:05.753 DEBUG [7570]: Database connection successful -- 21:29:05.753 INFO [7570]: _SERVER found -- 21:29:05.753 INFO [7570]: REMOTE_ADDR = 10.0.0.15 -- 21:29:05.753 INFO [7570]: SERVER_NAME = works.coregrade.com -- 21:29:05.753 INFO [7570]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=l7qvie0vus5r4i6tkbnqkv173r9fc9k9; _gid=GA1.2.932811633.1590542945; _gat_gtag_UA_54829827_2=1 -- 21:29:05.753 INFO [7570]: QUERY_STRING = /assets/img/footer_1.jpg -- 21:29:05.753 INFO [7570]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 21:29:05.768 INFO [7570]: COREGRADE is stopping... -- 21:29:05.768 DEBUG [7570]: Closing database connection -- 21:29:05.768 SQL [7570]: pgsql_close() -- 23:25:08.167 INFO [18333]: COREGRADE is starting... -- 23:25:08.167 INFO [18333]: Version from config: 1.0 -- 23:25:08.167 DEBUG [18333]: Connecting to database... -- 23:25:08.167 DEBUG [18333]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:25:08.167 SQL [18333]: pgsql_db_connect() -- 23:25:08.173 DEBUG [18333]: Database connection successful -- 23:25:08.173 INFO [18333]: _SERVER found -- 23:25:08.173 INFO [18333]: REMOTE_ADDR = 10.0.0.15 -- 23:25:08.173 INFO [18333]: SERVER_NAME = oameye.works.coregrade.com -- 23:25:08.173 INFO [18333]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 23:25:08.173 INFO [18333]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 23:25:08.190 INFO [18333]: COREGRADE is stopping... -- 23:25:08.190 DEBUG [18333]: Closing database connection -- 23:25:08.190 SQL [18333]: pgsql_close() -- 00:33:28.873 INFO [18334]: COREGRADE is starting... -- 00:33:28.874 INFO [18334]: Version from config: 1.0 -- 00:33:28.874 DEBUG [18334]: Connecting to database... -- 00:33:28.874 DEBUG [18334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:33:28.874 SQL [18334]: pgsql_db_connect() -- 00:33:28.879 DEBUG [18334]: Database connection successful -- 00:33:28.879 INFO [18334]: _SERVER found -- 00:33:28.879 INFO [18334]: REMOTE_ADDR = 10.0.0.15 -- 00:33:28.879 INFO [18334]: SERVER_NAME = oameye.works.coregrade.com -- 00:33:28.879 INFO [18334]: QUERY_STRING = /.well-known/acme-challenge/mvYiixwo5a39a9AgNADUsIJTrD10M4crPxEojAxkreU -- 00:33:28.879 INFO [18334]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 00:33:28.898 INFO [18334]: COREGRADE is stopping... -- 00:33:28.898 DEBUG [18334]: Closing database connection -- 00:33:28.898 SQL [18334]: pgsql_close() -- 00:33:29.094 INFO [18336]: COREGRADE is starting... -- 00:33:29.095 INFO [18336]: Version from config: 1.0 -- 00:33:29.095 DEBUG [18336]: Connecting to database... -- 00:33:29.095 DEBUG [18336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:33:29.095 SQL [18336]: pgsql_db_connect() -- 00:33:29.099 DEBUG [18336]: Database connection successful -- 00:33:29.099 INFO [18336]: _SERVER found -- 00:33:29.099 INFO [18336]: REMOTE_ADDR = 10.0.0.15 -- 00:33:29.099 INFO [18336]: SERVER_NAME = oameye.works.coregrade.com -- 00:33:29.099 INFO [18336]: QUERY_STRING = /.well-known/acme-challenge/mvYiixwo5a39a9AgNADUsIJTrD10M4crPxEojAxkreU -- 00:33:29.099 INFO [18336]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 00:33:29.115 INFO [18336]: COREGRADE is stopping... -- 00:33:29.115 DEBUG [18336]: Closing database connection -- 00:33:29.115 SQL [18336]: pgsql_close() -- 00:33:29.135 INFO [18337]: COREGRADE is starting... -- 00:33:29.135 INFO [18337]: Version from config: 1.0 -- 00:33:29.135 DEBUG [18337]: Connecting to database... -- 00:33:29.135 DEBUG [18337]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:33:29.135 SQL [18337]: pgsql_db_connect() -- 00:33:29.139 DEBUG [18337]: Database connection successful -- 00:33:29.139 INFO [18337]: _SERVER found -- 00:33:29.139 INFO [18337]: REMOTE_ADDR = 10.0.0.15 -- 00:33:29.139 INFO [18337]: SERVER_NAME = oameye.works.coregrade.com -- 00:33:29.139 INFO [18337]: QUERY_STRING = /.well-known/acme-challenge/mvYiixwo5a39a9AgNADUsIJTrD10M4crPxEojAxkreU -- 00:33:29.139 INFO [18337]: HTTP_X_FORWARDED_FOR = 34.222.229.130 -- 00:33:29.154 INFO [18337]: COREGRADE is stopping... -- 00:33:29.154 DEBUG [18337]: Closing database connection -- 00:33:29.154 SQL [18337]: pgsql_close() -- 00:33:29.166 INFO [18334]: COREGRADE is starting... -- 00:33:29.166 INFO [18334]: Version from config: 1.0 -- 00:33:29.166 DEBUG [18334]: Connecting to database... -- 00:33:29.166 DEBUG [18334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:33:29.166 SQL [18334]: pgsql_db_connect() -- 00:33:29.170 DEBUG [18334]: Database connection successful -- 00:33:29.170 INFO [18334]: _SERVER found -- 00:33:29.170 INFO [18334]: REMOTE_ADDR = 10.0.0.15 -- 00:33:29.170 INFO [18334]: SERVER_NAME = oameye.works.coregrade.com -- 00:33:29.170 INFO [18334]: QUERY_STRING = /.well-known/acme-challenge/mvYiixwo5a39a9AgNADUsIJTrD10M4crPxEojAxkreU -- 00:33:29.170 INFO [18334]: HTTP_X_FORWARDED_FOR = 52.28.236.88 -- 00:33:29.183 INFO [18334]: COREGRADE is stopping... -- 00:33:29.183 DEBUG [18334]: Closing database connection -- 00:33:29.183 SQL [18334]: pgsql_close() -- 06:49:18.863 INFO [20440]: COREGRADE is starting... -- 06:49:18.863 INFO [20440]: Version from config: 1.0 -- 06:49:18.863 DEBUG [20440]: Connecting to database... -- 06:49:18.863 DEBUG [20440]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:18.863 SQL [20440]: pgsql_db_connect() -- 06:49:18.868 DEBUG [20440]: Database connection successful -- 06:49:18.868 INFO [20440]: _SERVER found -- 06:49:18.868 INFO [20440]: REMOTE_ADDR = 10.0.0.15 -- 06:49:18.868 INFO [20440]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:18.868 INFO [20440]: QUERY_STRING = /.git/config -- 06:49:18.868 INFO [20440]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:18.885 INFO [20440]: COREGRADE is stopping... -- 06:49:18.885 DEBUG [20440]: Closing database connection -- 06:49:18.885 SQL [20440]: pgsql_close() -- 06:49:19.405 INFO [18333]: COREGRADE is starting... -- 06:49:19.405 INFO [18333]: Version from config: 1.0 -- 06:49:19.405 DEBUG [18333]: Connecting to database... -- 06:49:19.405 DEBUG [18333]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:19.405 SQL [18333]: pgsql_db_connect() -- 06:49:19.409 DEBUG [18333]: Database connection successful -- 06:49:19.409 INFO [18333]: _SERVER found -- 06:49:19.409 INFO [18333]: REMOTE_ADDR = 10.0.0.15 -- 06:49:19.409 INFO [18333]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:19.409 INFO [18333]: QUERY_STRING = /vod_installer/.env -- 06:49:19.409 INFO [18333]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:19.423 INFO [18333]: COREGRADE is stopping... -- 06:49:19.423 DEBUG [18333]: Closing database connection -- 06:49:19.424 SQL [18333]: pgsql_close() -- 06:49:19.947 INFO [21631]: COREGRADE is starting... -- 06:49:19.947 INFO [21631]: Version from config: 1.0 -- 06:49:19.947 DEBUG [21631]: Connecting to database... -- 06:49:19.947 DEBUG [21631]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:19.947 SQL [21631]: pgsql_db_connect() -- 06:49:19.951 DEBUG [21631]: Database connection successful -- 06:49:19.951 INFO [21631]: _SERVER found -- 06:49:19.951 INFO [21631]: REMOTE_ADDR = 10.0.0.15 -- 06:49:19.951 INFO [21631]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:19.951 INFO [21631]: QUERY_STRING = /login/.env -- 06:49:19.951 INFO [21631]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:19.968 INFO [21631]: COREGRADE is stopping... -- 06:49:19.968 DEBUG [21631]: Closing database connection -- 06:49:19.968 SQL [21631]: pgsql_close() -- 06:49:20.485 INFO [20440]: COREGRADE is starting... -- 06:49:20.485 INFO [20440]: Version from config: 1.0 -- 06:49:20.485 DEBUG [20440]: Connecting to database... -- 06:49:20.485 DEBUG [20440]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:20.485 SQL [20440]: pgsql_db_connect() -- 06:49:20.489 DEBUG [20440]: Database connection successful -- 06:49:20.489 INFO [20440]: _SERVER found -- 06:49:20.489 INFO [20440]: REMOTE_ADDR = 10.0.0.15 -- 06:49:20.489 INFO [20440]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:20.489 INFO [20440]: QUERY_STRING = /fedex/.env -- 06:49:20.489 INFO [20440]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:20.502 INFO [20440]: COREGRADE is stopping... -- 06:49:20.502 DEBUG [20440]: Closing database connection -- 06:49:20.502 SQL [20440]: pgsql_close() -- 06:49:21.020 INFO [18333]: COREGRADE is starting... -- 06:49:21.021 INFO [18333]: Version from config: 1.0 -- 06:49:21.021 DEBUG [18333]: Connecting to database... -- 06:49:21.021 DEBUG [18333]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:21.021 SQL [18333]: pgsql_db_connect() -- 06:49:21.025 DEBUG [18333]: Database connection successful -- 06:49:21.025 INFO [18333]: _SERVER found -- 06:49:21.025 INFO [18333]: REMOTE_ADDR = 10.0.0.15 -- 06:49:21.025 INFO [18333]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:21.025 INFO [18333]: QUERY_STRING = /apps/.env -- 06:49:21.025 INFO [18333]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:21.037 INFO [18333]: COREGRADE is stopping... -- 06:49:21.037 DEBUG [18333]: Closing database connection -- 06:49:21.037 SQL [18333]: pgsql_close() -- 06:49:21.565 INFO [18333]: COREGRADE is starting... -- 06:49:21.566 INFO [18333]: Version from config: 1.0 -- 06:49:21.566 DEBUG [18333]: Connecting to database... -- 06:49:21.566 DEBUG [18333]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:21.566 SQL [18333]: pgsql_db_connect() -- 06:49:21.570 DEBUG [18333]: Database connection successful -- 06:49:21.570 INFO [18333]: _SERVER found -- 06:49:21.570 INFO [18333]: REMOTE_ADDR = 10.0.0.15 -- 06:49:21.570 INFO [18333]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:21.570 INFO [18333]: QUERY_STRING = /docker/.env -- 06:49:21.570 INFO [18333]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:21.582 INFO [18333]: COREGRADE is stopping... -- 06:49:21.582 DEBUG [18333]: Closing database connection -- 06:49:21.582 SQL [18333]: pgsql_close() -- 06:49:22.103 INFO [18333]: COREGRADE is starting... -- 06:49:22.103 INFO [18333]: Version from config: 1.0 -- 06:49:22.103 DEBUG [18333]: Connecting to database... -- 06:49:22.103 DEBUG [18333]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:22.103 SQL [18333]: pgsql_db_connect() -- 06:49:22.107 DEBUG [18333]: Database connection successful -- 06:49:22.107 INFO [18333]: _SERVER found -- 06:49:22.107 INFO [18333]: REMOTE_ADDR = 10.0.0.15 -- 06:49:22.107 INFO [18333]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:22.107 INFO [18333]: QUERY_STRING = /engine/.env -- 06:49:22.107 INFO [18333]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:22.120 INFO [18333]: COREGRADE is stopping... -- 06:49:22.120 DEBUG [18333]: Closing database connection -- 06:49:22.120 SQL [18333]: pgsql_close() -- 06:49:22.638 INFO [18333]: COREGRADE is starting... -- 06:49:22.638 INFO [18333]: Version from config: 1.0 -- 06:49:22.638 DEBUG [18333]: Connecting to database... -- 06:49:22.638 DEBUG [18333]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:22.638 SQL [18333]: pgsql_db_connect() -- 06:49:22.643 DEBUG [18333]: Database connection successful -- 06:49:22.643 INFO [18333]: _SERVER found -- 06:49:22.643 INFO [18333]: REMOTE_ADDR = 10.0.0.15 -- 06:49:22.643 INFO [18333]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:22.643 INFO [18333]: QUERY_STRING = /app/.env -- 06:49:22.643 INFO [18333]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:22.656 INFO [18333]: COREGRADE is stopping... -- 06:49:22.656 DEBUG [18333]: Closing database connection -- 06:49:22.656 SQL [18333]: pgsql_close() -- 06:49:23.173 INFO [20440]: COREGRADE is starting... -- 06:49:23.173 INFO [20440]: Version from config: 1.0 -- 06:49:23.173 DEBUG [20440]: Connecting to database... -- 06:49:23.173 DEBUG [20440]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:23.173 SQL [20440]: pgsql_db_connect() -- 06:49:23.177 DEBUG [20440]: Database connection successful -- 06:49:23.178 INFO [20440]: _SERVER found -- 06:49:23.178 INFO [20440]: REMOTE_ADDR = 10.0.0.15 -- 06:49:23.178 INFO [20440]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:23.178 INFO [20440]: QUERY_STRING = /sources/.env -- 06:49:23.178 INFO [20440]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:23.190 INFO [20440]: COREGRADE is stopping... -- 06:49:23.190 DEBUG [20440]: Closing database connection -- 06:49:23.190 SQL [20440]: pgsql_close() -- 06:49:23.707 INFO [21631]: COREGRADE is starting... -- 06:49:23.708 INFO [21631]: Version from config: 1.0 -- 06:49:23.708 DEBUG [21631]: Connecting to database... -- 06:49:23.708 DEBUG [21631]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:23.708 SQL [21631]: pgsql_db_connect() -- 06:49:23.712 DEBUG [21631]: Database connection successful -- 06:49:23.712 INFO [21631]: _SERVER found -- 06:49:23.712 INFO [21631]: REMOTE_ADDR = 10.0.0.15 -- 06:49:23.712 INFO [21631]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:23.712 INFO [21631]: QUERY_STRING = /inc/.env -- 06:49:23.712 INFO [21631]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:23.725 INFO [21631]: COREGRADE is stopping... -- 06:49:23.725 DEBUG [21631]: Closing database connection -- 06:49:23.725 SQL [21631]: pgsql_close() -- 06:49:24.250 INFO [21631]: COREGRADE is starting... -- 06:49:24.250 INFO [21631]: Version from config: 1.0 -- 06:49:24.250 DEBUG [21631]: Connecting to database... -- 06:49:24.250 DEBUG [21631]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:24.250 SQL [21631]: pgsql_db_connect() -- 06:49:24.254 DEBUG [21631]: Database connection successful -- 06:49:24.254 INFO [21631]: _SERVER found -- 06:49:24.254 INFO [21631]: REMOTE_ADDR = 10.0.0.15 -- 06:49:24.254 INFO [21631]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:24.254 INFO [21631]: QUERY_STRING = /development/.env -- 06:49:24.254 INFO [21631]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:24.267 INFO [21631]: COREGRADE is stopping... -- 06:49:24.267 DEBUG [21631]: Closing database connection -- 06:49:24.267 SQL [21631]: pgsql_close() -- 06:49:25.041 INFO [21631]: COREGRADE is starting... -- 06:49:25.042 INFO [21631]: Version from config: 1.0 -- 06:49:25.042 DEBUG [21631]: Connecting to database... -- 06:49:25.042 DEBUG [21631]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:25.042 SQL [21631]: pgsql_db_connect() -- 06:49:25.046 DEBUG [21631]: Database connection successful -- 06:49:25.046 INFO [21631]: _SERVER found -- 06:49:25.046 INFO [21631]: REMOTE_ADDR = 10.0.0.15 -- 06:49:25.046 INFO [21631]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:25.046 INFO [21631]: QUERY_STRING = /admin/.env -- 06:49:25.046 INFO [21631]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:25.058 INFO [21631]: COREGRADE is stopping... -- 06:49:25.058 DEBUG [21631]: Closing database connection -- 06:49:25.058 SQL [21631]: pgsql_close() -- 06:49:25.579 INFO [21632]: COREGRADE is starting... -- 06:49:25.579 INFO [21632]: Version from config: 1.0 -- 06:49:25.579 DEBUG [21632]: Connecting to database... -- 06:49:25.579 DEBUG [21632]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:25.579 SQL [21632]: pgsql_db_connect() -- 06:49:25.583 DEBUG [21632]: Database connection successful -- 06:49:25.583 INFO [21632]: _SERVER found -- 06:49:25.583 INFO [21632]: REMOTE_ADDR = 10.0.0.15 -- 06:49:25.583 INFO [21632]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:25.583 INFO [21632]: QUERY_STRING = /deployment/.env -- 06:49:25.583 INFO [21632]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:25.599 INFO [21632]: COREGRADE is stopping... -- 06:49:25.599 DEBUG [21632]: Closing database connection -- 06:49:25.599 SQL [21632]: pgsql_close() -- 06:49:26.118 INFO [21632]: COREGRADE is starting... -- 06:49:26.119 INFO [21632]: Version from config: 1.0 -- 06:49:26.119 DEBUG [21632]: Connecting to database... -- 06:49:26.119 DEBUG [21632]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:26.119 SQL [21632]: pgsql_db_connect() -- 06:49:26.123 DEBUG [21632]: Database connection successful -- 06:49:26.123 INFO [21632]: _SERVER found -- 06:49:26.123 INFO [21632]: REMOTE_ADDR = 10.0.0.15 -- 06:49:26.123 INFO [21632]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:26.123 INFO [21632]: QUERY_STRING = /a/.env -- 06:49:26.123 INFO [21632]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:26.135 INFO [21632]: COREGRADE is stopping... -- 06:49:26.135 DEBUG [21632]: Closing database connection -- 06:49:26.135 SQL [21632]: pgsql_close() -- 06:49:26.654 INFO [18333]: COREGRADE is starting... -- 06:49:26.654 INFO [18333]: Version from config: 1.0 -- 06:49:26.654 DEBUG [18333]: Connecting to database... -- 06:49:26.654 DEBUG [18333]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:26.654 SQL [18333]: pgsql_db_connect() -- 06:49:26.658 DEBUG [18333]: Database connection successful -- 06:49:26.658 INFO [18333]: _SERVER found -- 06:49:26.658 INFO [18333]: REMOTE_ADDR = 10.0.0.15 -- 06:49:26.658 INFO [18333]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:26.658 INFO [18333]: QUERY_STRING = /react/.env -- 06:49:26.658 INFO [18333]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:26.671 INFO [18333]: COREGRADE is stopping... -- 06:49:26.671 DEBUG [18333]: Closing database connection -- 06:49:26.671 SQL [18333]: pgsql_close() -- 06:49:27.189 INFO [18333]: COREGRADE is starting... -- 06:49:27.190 INFO [18333]: Version from config: 1.0 -- 06:49:27.190 DEBUG [18333]: Connecting to database... -- 06:49:27.190 DEBUG [18333]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:27.190 SQL [18333]: pgsql_db_connect() -- 06:49:27.194 DEBUG [18333]: Database connection successful -- 06:49:27.194 INFO [18333]: _SERVER found -- 06:49:27.194 INFO [18333]: REMOTE_ADDR = 10.0.0.15 -- 06:49:27.194 INFO [18333]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:27.194 INFO [18333]: QUERY_STRING = /travis/.env -- 06:49:27.194 INFO [18333]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:27.206 INFO [18333]: COREGRADE is stopping... -- 06:49:27.206 DEBUG [18333]: Closing database connection -- 06:49:27.206 SQL [18333]: pgsql_close() -- 06:49:27.725 INFO [18333]: COREGRADE is starting... -- 06:49:27.725 INFO [18333]: Version from config: 1.0 -- 06:49:27.725 DEBUG [18333]: Connecting to database... -- 06:49:27.725 DEBUG [18333]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:27.725 SQL [18333]: pgsql_db_connect() -- 06:49:27.729 DEBUG [18333]: Database connection successful -- 06:49:27.729 INFO [18333]: _SERVER found -- 06:49:27.729 INFO [18333]: REMOTE_ADDR = 10.0.0.15 -- 06:49:27.729 INFO [18333]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:27.729 INFO [18333]: QUERY_STRING = /.env -- 06:49:27.729 INFO [18333]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:27.742 INFO [18333]: COREGRADE is stopping... -- 06:49:27.742 DEBUG [18333]: Closing database connection -- 06:49:27.742 SQL [18333]: pgsql_close() -- 06:49:28.259 INFO [18333]: COREGRADE is starting... -- 06:49:28.259 INFO [18333]: Version from config: 1.0 -- 06:49:28.259 DEBUG [18333]: Connecting to database... -- 06:49:28.259 DEBUG [18333]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:28.259 SQL [18333]: pgsql_db_connect() -- 06:49:28.263 DEBUG [18333]: Database connection successful -- 06:49:28.263 INFO [18333]: _SERVER found -- 06:49:28.263 INFO [18333]: REMOTE_ADDR = 10.0.0.15 -- 06:49:28.263 INFO [18333]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:28.263 INFO [18333]: QUERY_STRING = /public/.env -- 06:49:28.263 INFO [18333]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:28.276 INFO [18333]: COREGRADE is stopping... -- 06:49:28.276 DEBUG [18333]: Closing database connection -- 06:49:28.276 SQL [18333]: pgsql_close() -- 06:49:28.792 INFO [18333]: COREGRADE is starting... -- 06:49:28.792 INFO [18333]: Version from config: 1.0 -- 06:49:28.792 DEBUG [18333]: Connecting to database... -- 06:49:28.792 DEBUG [18333]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:28.793 SQL [18333]: pgsql_db_connect() -- 06:49:28.797 DEBUG [18333]: Database connection successful -- 06:49:28.797 INFO [18333]: _SERVER found -- 06:49:28.797 INFO [18333]: REMOTE_ADDR = 10.0.0.15 -- 06:49:28.797 INFO [18333]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:28.797 INFO [18333]: QUERY_STRING = /backend/.env -- 06:49:28.797 INFO [18333]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:28.809 INFO [18333]: COREGRADE is stopping... -- 06:49:28.809 DEBUG [18333]: Closing database connection -- 06:49:28.809 SQL [18333]: pgsql_close() -- 06:49:29.328 INFO [18333]: COREGRADE is starting... -- 06:49:29.328 INFO [18333]: Version from config: 1.0 -- 06:49:29.328 DEBUG [18333]: Connecting to database... -- 06:49:29.329 DEBUG [18333]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:29.329 SQL [18333]: pgsql_db_connect() -- 06:49:29.333 DEBUG [18333]: Database connection successful -- 06:49:29.333 INFO [18333]: _SERVER found -- 06:49:29.333 INFO [18333]: REMOTE_ADDR = 10.0.0.15 -- 06:49:29.333 INFO [18333]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:29.333 INFO [18333]: QUERY_STRING = /protected/.env -- 06:49:29.333 INFO [18333]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:29.345 INFO [18333]: COREGRADE is stopping... -- 06:49:29.345 DEBUG [18333]: Closing database connection -- 06:49:29.345 SQL [18333]: pgsql_close() -- 06:49:29.862 INFO [18333]: COREGRADE is starting... -- 06:49:29.862 INFO [18333]: Version from config: 1.0 -- 06:49:29.862 DEBUG [18333]: Connecting to database... -- 06:49:29.862 DEBUG [18333]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:29.862 SQL [18333]: pgsql_db_connect() -- 06:49:29.866 DEBUG [18333]: Database connection successful -- 06:49:29.866 INFO [18333]: _SERVER found -- 06:49:29.866 INFO [18333]: REMOTE_ADDR = 10.0.0.15 -- 06:49:29.866 INFO [18333]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:29.866 INFO [18333]: QUERY_STRING = /dependencies/.env -- 06:49:29.866 INFO [18333]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:29.879 INFO [18333]: COREGRADE is stopping... -- 06:49:29.879 DEBUG [18333]: Closing database connection -- 06:49:29.879 SQL [18333]: pgsql_close() -- 06:49:30.396 INFO [18333]: COREGRADE is starting... -- 06:49:30.396 INFO [18333]: Version from config: 1.0 -- 06:49:30.397 DEBUG [18333]: Connecting to database... -- 06:49:30.397 DEBUG [18333]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:30.397 SQL [18333]: pgsql_db_connect() -- 06:49:30.401 DEBUG [18333]: Database connection successful -- 06:49:30.401 INFO [18333]: _SERVER found -- 06:49:30.401 INFO [18333]: REMOTE_ADDR = 10.0.0.15 -- 06:49:30.401 INFO [18333]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:30.401 INFO [18333]: QUERY_STRING = /vue/.env -- 06:49:30.401 INFO [18333]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:30.413 INFO [18333]: COREGRADE is stopping... -- 06:49:30.413 DEBUG [18333]: Closing database connection -- 06:49:30.413 SQL [18333]: pgsql_close() -- 06:49:30.931 INFO [18333]: COREGRADE is starting... -- 06:49:30.931 INFO [18333]: Version from config: 1.0 -- 06:49:30.931 DEBUG [18333]: Connecting to database... -- 06:49:30.931 DEBUG [18333]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:30.931 SQL [18333]: pgsql_db_connect() -- 06:49:30.935 DEBUG [18333]: Database connection successful -- 06:49:30.935 INFO [18333]: _SERVER found -- 06:49:30.935 INFO [18333]: REMOTE_ADDR = 10.0.0.15 -- 06:49:30.935 INFO [18333]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:30.935 INFO [18333]: QUERY_STRING = /laravel/.env -- 06:49:30.935 INFO [18333]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:30.947 INFO [18333]: COREGRADE is stopping... -- 06:49:30.947 DEBUG [18333]: Closing database connection -- 06:49:30.948 SQL [18333]: pgsql_close() -- 06:49:31.464 INFO [18333]: COREGRADE is starting... -- 06:49:31.465 INFO [18333]: Version from config: 1.0 -- 06:49:31.465 DEBUG [18333]: Connecting to database... -- 06:49:31.465 DEBUG [18333]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:31.465 SQL [18333]: pgsql_db_connect() -- 06:49:31.469 DEBUG [18333]: Database connection successful -- 06:49:31.469 INFO [18333]: _SERVER found -- 06:49:31.469 INFO [18333]: REMOTE_ADDR = 10.0.0.15 -- 06:49:31.469 INFO [18333]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:31.469 INFO [18333]: QUERY_STRING = /auth/.env -- 06:49:31.469 INFO [18333]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:31.482 INFO [18333]: COREGRADE is stopping... -- 06:49:31.482 DEBUG [18333]: Closing database connection -- 06:49:31.482 SQL [18333]: pgsql_close() -- 06:49:32.001 INFO [21633]: COREGRADE is starting... -- 06:49:32.002 INFO [21633]: Version from config: 1.0 -- 06:49:32.002 DEBUG [21633]: Connecting to database... -- 06:49:32.002 DEBUG [21633]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:32.002 SQL [21633]: pgsql_db_connect() -- 06:49:32.006 DEBUG [21633]: Database connection successful -- 06:49:32.006 INFO [21633]: _SERVER found -- 06:49:32.006 INFO [21633]: REMOTE_ADDR = 10.0.0.15 -- 06:49:32.006 INFO [21633]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:32.006 INFO [21633]: QUERY_STRING = /scripts/.env -- 06:49:32.006 INFO [21633]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:32.022 INFO [21633]: COREGRADE is stopping... -- 06:49:32.022 DEBUG [21633]: Closing database connection -- 06:49:32.022 SQL [21633]: pgsql_close() -- 06:49:32.539 INFO [21633]: COREGRADE is starting... -- 06:49:32.539 INFO [21633]: Version from config: 1.0 -- 06:49:32.539 DEBUG [21633]: Connecting to database... -- 06:49:32.539 DEBUG [21633]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:32.539 SQL [21633]: pgsql_db_connect() -- 06:49:32.543 DEBUG [21633]: Database connection successful -- 06:49:32.543 INFO [21633]: _SERVER found -- 06:49:32.543 INFO [21633]: REMOTE_ADDR = 10.0.0.15 -- 06:49:32.543 INFO [21633]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:32.543 INFO [21633]: QUERY_STRING = /personal/.env -- 06:49:32.543 INFO [21633]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:32.555 INFO [21633]: COREGRADE is stopping... -- 06:49:32.555 DEBUG [21633]: Closing database connection -- 06:49:32.555 SQL [21633]: pgsql_close() -- 06:49:33.073 INFO [21633]: COREGRADE is starting... -- 06:49:33.073 INFO [21633]: Version from config: 1.0 -- 06:49:33.073 DEBUG [21633]: Connecting to database... -- 06:49:33.073 DEBUG [21633]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:33.073 SQL [21633]: pgsql_db_connect() -- 06:49:33.077 DEBUG [21633]: Database connection successful -- 06:49:33.077 INFO [21633]: _SERVER found -- 06:49:33.077 INFO [21633]: REMOTE_ADDR = 10.0.0.15 -- 06:49:33.077 INFO [21633]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:33.077 INFO [21633]: QUERY_STRING = /cp/.env -- 06:49:33.077 INFO [21633]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:33.090 INFO [21633]: COREGRADE is stopping... -- 06:49:33.090 DEBUG [21633]: Closing database connection -- 06:49:33.090 SQL [21633]: pgsql_close() -- 06:49:33.607 INFO [21633]: COREGRADE is starting... -- 06:49:33.607 INFO [21633]: Version from config: 1.0 -- 06:49:33.607 DEBUG [21633]: Connecting to database... -- 06:49:33.607 DEBUG [21633]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:33.607 SQL [21633]: pgsql_db_connect() -- 06:49:33.611 DEBUG [21633]: Database connection successful -- 06:49:33.611 INFO [21633]: _SERVER found -- 06:49:33.611 INFO [21633]: REMOTE_ADDR = 10.0.0.15 -- 06:49:33.611 INFO [21633]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:33.611 INFO [21633]: QUERY_STRING = /framework/.env -- 06:49:33.611 INFO [21633]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:33.624 INFO [21633]: COREGRADE is stopping... -- 06:49:33.624 DEBUG [21633]: Closing database connection -- 06:49:33.624 SQL [21633]: pgsql_close() -- 06:49:34.142 INFO [21633]: COREGRADE is starting... -- 06:49:34.142 INFO [21633]: Version from config: 1.0 -- 06:49:34.142 DEBUG [21633]: Connecting to database... -- 06:49:34.142 DEBUG [21633]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:34.142 SQL [21633]: pgsql_db_connect() -- 06:49:34.146 DEBUG [21633]: Database connection successful -- 06:49:34.146 INFO [21633]: _SERVER found -- 06:49:34.146 INFO [21633]: REMOTE_ADDR = 10.0.0.15 -- 06:49:34.146 INFO [21633]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:34.146 INFO [21633]: QUERY_STRING = /shared/.env -- 06:49:34.146 INFO [21633]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:34.159 INFO [21633]: COREGRADE is stopping... -- 06:49:34.159 DEBUG [21633]: Closing database connection -- 06:49:34.159 SQL [21633]: pgsql_close() -- 06:49:34.679 INFO [21633]: COREGRADE is starting... -- 06:49:34.680 INFO [21633]: Version from config: 1.0 -- 06:49:34.680 DEBUG [21633]: Connecting to database... -- 06:49:34.680 DEBUG [21633]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:34.680 SQL [21633]: pgsql_db_connect() -- 06:49:34.684 DEBUG [21633]: Database connection successful -- 06:49:34.684 INFO [21633]: _SERVER found -- 06:49:34.684 INFO [21633]: REMOTE_ADDR = 10.0.0.15 -- 06:49:34.684 INFO [21633]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:34.684 INFO [21633]: QUERY_STRING = /m/.env -- 06:49:34.684 INFO [21633]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:34.696 INFO [21633]: COREGRADE is stopping... -- 06:49:34.696 DEBUG [21633]: Closing database connection -- 06:49:34.696 SQL [21633]: pgsql_close() -- 06:49:35.215 INFO [21633]: COREGRADE is starting... -- 06:49:35.215 INFO [21633]: Version from config: 1.0 -- 06:49:35.215 DEBUG [21633]: Connecting to database... -- 06:49:35.215 DEBUG [21633]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:35.215 SQL [21633]: pgsql_db_connect() -- 06:49:35.219 DEBUG [21633]: Database connection successful -- 06:49:35.219 INFO [21633]: _SERVER found -- 06:49:35.219 INFO [21633]: REMOTE_ADDR = 10.0.0.15 -- 06:49:35.219 INFO [21633]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:35.219 INFO [21633]: QUERY_STRING = /server/.env -- 06:49:35.219 INFO [21633]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:35.231 INFO [21633]: COREGRADE is stopping... -- 06:49:35.231 DEBUG [21633]: Closing database connection -- 06:49:35.231 SQL [21633]: pgsql_close() -- 06:49:35.757 INFO [21633]: COREGRADE is starting... -- 06:49:35.757 INFO [21633]: Version from config: 1.0 -- 06:49:35.757 DEBUG [21633]: Connecting to database... -- 06:49:35.757 DEBUG [21633]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:35.757 SQL [21633]: pgsql_db_connect() -- 06:49:35.761 DEBUG [21633]: Database connection successful -- 06:49:35.761 INFO [21633]: _SERVER found -- 06:49:35.761 INFO [21633]: REMOTE_ADDR = 10.0.0.15 -- 06:49:35.761 INFO [21633]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:35.761 INFO [21633]: QUERY_STRING = /local/.env -- 06:49:35.761 INFO [21633]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:35.774 INFO [21633]: COREGRADE is stopping... -- 06:49:35.774 DEBUG [21633]: Closing database connection -- 06:49:35.774 SQL [21633]: pgsql_close() -- 06:49:36.297 INFO [21633]: COREGRADE is starting... -- 06:49:36.297 INFO [21633]: Version from config: 1.0 -- 06:49:36.297 DEBUG [21633]: Connecting to database... -- 06:49:36.297 DEBUG [21633]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:36.297 SQL [21633]: pgsql_db_connect() -- 06:49:36.301 DEBUG [21633]: Database connection successful -- 06:49:36.301 INFO [21633]: _SERVER found -- 06:49:36.301 INFO [21633]: REMOTE_ADDR = 10.0.0.15 -- 06:49:36.301 INFO [21633]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:36.301 INFO [21633]: QUERY_STRING = /admin-app/.env -- 06:49:36.301 INFO [21633]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:36.314 INFO [21633]: COREGRADE is stopping... -- 06:49:36.314 DEBUG [21633]: Closing database connection -- 06:49:36.314 SQL [21633]: pgsql_close() -- 06:49:36.831 INFO [18335]: COREGRADE is starting... -- 06:49:36.832 INFO [18335]: Version from config: 1.0 -- 06:49:36.832 DEBUG [18335]: Connecting to database... -- 06:49:36.832 DEBUG [18335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:36.832 SQL [18335]: pgsql_db_connect() -- 06:49:36.836 DEBUG [18335]: Database connection successful -- 06:49:36.836 INFO [18335]: _SERVER found -- 06:49:36.836 INFO [18335]: REMOTE_ADDR = 10.0.0.15 -- 06:49:36.836 INFO [18335]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:36.836 INFO [18335]: QUERY_STRING = /web/.env -- 06:49:36.836 INFO [18335]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:36.851 INFO [18335]: COREGRADE is stopping... -- 06:49:36.851 DEBUG [18335]: Closing database connection -- 06:49:36.851 SQL [18335]: pgsql_close() -- 06:49:37.368 INFO [21633]: COREGRADE is starting... -- 06:49:37.368 INFO [21633]: Version from config: 1.0 -- 06:49:37.368 DEBUG [21633]: Connecting to database... -- 06:49:37.368 DEBUG [21633]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:37.368 SQL [21633]: pgsql_db_connect() -- 06:49:37.372 DEBUG [21633]: Database connection successful -- 06:49:37.372 INFO [21633]: _SERVER found -- 06:49:37.372 INFO [21633]: REMOTE_ADDR = 10.0.0.15 -- 06:49:37.372 INFO [21633]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:37.372 INFO [21633]: QUERY_STRING = /search/.env -- 06:49:37.372 INFO [21633]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:37.385 INFO [21633]: COREGRADE is stopping... -- 06:49:37.385 DEBUG [21633]: Closing database connection -- 06:49:37.385 SQL [21633]: pgsql_close() -- 06:49:37.903 INFO [21633]: COREGRADE is starting... -- 06:49:37.903 INFO [21633]: Version from config: 1.0 -- 06:49:37.903 DEBUG [21633]: Connecting to database... -- 06:49:37.903 DEBUG [21633]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:37.903 SQL [21633]: pgsql_db_connect() -- 06:49:37.907 DEBUG [21633]: Database connection successful -- 06:49:37.907 INFO [21633]: _SERVER found -- 06:49:37.907 INFO [21633]: REMOTE_ADDR = 10.0.0.15 -- 06:49:37.907 INFO [21633]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:37.907 INFO [21633]: QUERY_STRING = /cron/.env -- 06:49:37.907 INFO [21633]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:37.919 INFO [21633]: COREGRADE is stopping... -- 06:49:37.920 DEBUG [21633]: Closing database connection -- 06:49:37.920 SQL [21633]: pgsql_close() -- 06:49:38.437 INFO [21633]: COREGRADE is starting... -- 06:49:38.438 INFO [21633]: Version from config: 1.0 -- 06:49:38.438 DEBUG [21633]: Connecting to database... -- 06:49:38.438 DEBUG [21633]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:38.438 SQL [21633]: pgsql_db_connect() -- 06:49:38.442 DEBUG [21633]: Database connection successful -- 06:49:38.442 INFO [21633]: _SERVER found -- 06:49:38.442 INFO [21633]: REMOTE_ADDR = 10.0.0.15 -- 06:49:38.442 INFO [21633]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:38.442 INFO [21633]: QUERY_STRING = /document/.env -- 06:49:38.442 INFO [21633]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:38.454 INFO [21633]: COREGRADE is stopping... -- 06:49:38.454 DEBUG [21633]: Closing database connection -- 06:49:38.454 SQL [21633]: pgsql_close() -- 06:49:38.974 INFO [21633]: COREGRADE is starting... -- 06:49:38.974 INFO [21633]: Version from config: 1.0 -- 06:49:38.974 DEBUG [21633]: Connecting to database... -- 06:49:38.974 DEBUG [21633]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:38.974 SQL [21633]: pgsql_db_connect() -- 06:49:38.979 DEBUG [21633]: Database connection successful -- 06:49:38.979 INFO [21633]: _SERVER found -- 06:49:38.979 INFO [21633]: REMOTE_ADDR = 10.0.0.15 -- 06:49:38.979 INFO [21633]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:38.979 INFO [21633]: QUERY_STRING = /src/.env -- 06:49:38.979 INFO [21633]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:38.991 INFO [21633]: COREGRADE is stopping... -- 06:49:38.991 DEBUG [21633]: Closing database connection -- 06:49:38.991 SQL [21633]: pgsql_close() -- 06:49:39.512 INFO [21633]: COREGRADE is starting... -- 06:49:39.512 INFO [21633]: Version from config: 1.0 -- 06:49:39.512 DEBUG [21633]: Connecting to database... -- 06:49:39.512 DEBUG [21633]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:39.512 SQL [21633]: pgsql_db_connect() -- 06:49:39.516 DEBUG [21633]: Database connection successful -- 06:49:39.516 INFO [21633]: _SERVER found -- 06:49:39.516 INFO [21633]: REMOTE_ADDR = 10.0.0.15 -- 06:49:39.516 INFO [21633]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:39.516 INFO [21633]: QUERY_STRING = /master/.env -- 06:49:39.516 INFO [21633]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:39.529 INFO [21633]: COREGRADE is stopping... -- 06:49:39.529 DEBUG [21633]: Closing database connection -- 06:49:39.529 SQL [21633]: pgsql_close() -- 06:49:40.298 INFO [21633]: COREGRADE is starting... -- 06:49:40.298 INFO [21633]: Version from config: 1.0 -- 06:49:40.298 DEBUG [21633]: Connecting to database... -- 06:49:40.298 DEBUG [21633]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:40.298 SQL [21633]: pgsql_db_connect() -- 06:49:40.302 DEBUG [21633]: Database connection successful -- 06:49:40.302 INFO [21633]: _SERVER found -- 06:49:40.302 INFO [21633]: REMOTE_ADDR = 10.0.0.15 -- 06:49:40.302 INFO [21633]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:40.302 INFO [21633]: QUERY_STRING = /frontend/.env -- 06:49:40.302 INFO [21633]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:40.315 INFO [21633]: COREGRADE is stopping... -- 06:49:40.315 DEBUG [21633]: Closing database connection -- 06:49:40.315 SQL [21633]: pgsql_close() -- 06:49:40.832 INFO [21633]: COREGRADE is starting... -- 06:49:40.833 INFO [21633]: Version from config: 1.0 -- 06:49:40.833 DEBUG [21633]: Connecting to database... -- 06:49:40.833 DEBUG [21633]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:40.833 SQL [21633]: pgsql_db_connect() -- 06:49:40.837 DEBUG [21633]: Database connection successful -- 06:49:40.837 INFO [21633]: _SERVER found -- 06:49:40.837 INFO [21633]: REMOTE_ADDR = 10.0.0.15 -- 06:49:40.837 INFO [21633]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:40.837 INFO [21633]: QUERY_STRING = /ironment/.env -- 06:49:40.837 INFO [21633]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:40.849 INFO [21633]: COREGRADE is stopping... -- 06:49:40.849 DEBUG [21633]: Closing database connection -- 06:49:40.849 SQL [21633]: pgsql_close() -- 06:49:41.367 INFO [21633]: COREGRADE is starting... -- 06:49:41.367 INFO [21633]: Version from config: 1.0 -- 06:49:41.368 DEBUG [21633]: Connecting to database... -- 06:49:41.368 DEBUG [21633]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:41.368 SQL [21633]: pgsql_db_connect() -- 06:49:41.372 DEBUG [21633]: Database connection successful -- 06:49:41.372 INFO [21633]: _SERVER found -- 06:49:41.372 INFO [21633]: REMOTE_ADDR = 10.0.0.15 -- 06:49:41.372 INFO [21633]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:41.372 INFO [21633]: QUERY_STRING = /project/.env -- 06:49:41.372 INFO [21633]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:41.384 INFO [21633]: COREGRADE is stopping... -- 06:49:41.384 DEBUG [21633]: Closing database connection -- 06:49:41.384 SQL [21633]: pgsql_close() -- 06:49:41.899 INFO [21633]: COREGRADE is starting... -- 06:49:41.900 INFO [21633]: Version from config: 1.0 -- 06:49:41.900 DEBUG [21633]: Connecting to database... -- 06:49:41.900 DEBUG [21633]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:41.900 SQL [21633]: pgsql_db_connect() -- 06:49:41.904 DEBUG [21633]: Database connection successful -- 06:49:41.904 INFO [21633]: _SERVER found -- 06:49:41.904 INFO [21633]: REMOTE_ADDR = 10.0.0.15 -- 06:49:41.904 INFO [21633]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:41.904 INFO [21633]: QUERY_STRING = /rest/.env -- 06:49:41.904 INFO [21633]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:41.916 INFO [21633]: COREGRADE is stopping... -- 06:49:41.916 DEBUG [21633]: Closing database connection -- 06:49:41.916 SQL [21633]: pgsql_close() -- 06:49:42.433 INFO [21633]: COREGRADE is starting... -- 06:49:42.434 INFO [21633]: Version from config: 1.0 -- 06:49:42.434 DEBUG [21633]: Connecting to database... -- 06:49:42.434 DEBUG [21633]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:42.434 SQL [21633]: pgsql_db_connect() -- 06:49:42.438 DEBUG [21633]: Database connection successful -- 06:49:42.438 INFO [21633]: _SERVER found -- 06:49:42.438 INFO [21633]: REMOTE_ADDR = 10.0.0.15 -- 06:49:42.438 INFO [21633]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:42.438 INFO [21633]: QUERY_STRING = /mods/.env -- 06:49:42.438 INFO [21633]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:42.450 INFO [21633]: COREGRADE is stopping... -- 06:49:42.450 DEBUG [21633]: Closing database connection -- 06:49:42.450 SQL [21633]: pgsql_close() -- 06:49:42.968 INFO [21633]: COREGRADE is starting... -- 06:49:42.968 INFO [21633]: Version from config: 1.0 -- 06:49:42.968 DEBUG [21633]: Connecting to database... -- 06:49:42.968 DEBUG [21633]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:42.968 SQL [21633]: pgsql_db_connect() -- 06:49:42.972 DEBUG [21633]: Database connection successful -- 06:49:42.972 INFO [21633]: _SERVER found -- 06:49:42.972 INFO [21633]: REMOTE_ADDR = 10.0.0.15 -- 06:49:42.972 INFO [21633]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:42.972 INFO [21633]: QUERY_STRING = /routes/.env -- 06:49:42.972 INFO [21633]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:42.984 INFO [21633]: COREGRADE is stopping... -- 06:49:42.984 DEBUG [21633]: Closing database connection -- 06:49:42.984 SQL [21633]: pgsql_close() -- 06:49:43.502 INFO [21633]: COREGRADE is starting... -- 06:49:43.502 INFO [21633]: Version from config: 1.0 -- 06:49:43.502 DEBUG [21633]: Connecting to database... -- 06:49:43.502 DEBUG [21633]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:43.502 SQL [21633]: pgsql_db_connect() -- 06:49:43.506 DEBUG [21633]: Database connection successful -- 06:49:43.506 INFO [21633]: _SERVER found -- 06:49:43.506 INFO [21633]: REMOTE_ADDR = 10.0.0.15 -- 06:49:43.506 INFO [21633]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:43.506 INFO [21633]: QUERY_STRING = /~dev/.env -- 06:49:43.506 INFO [21633]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:43.518 INFO [21633]: COREGRADE is stopping... -- 06:49:43.518 DEBUG [21633]: Closing database connection -- 06:49:43.518 SQL [21633]: pgsql_close() -- 06:49:44.038 INFO [18336]: COREGRADE is starting... -- 06:49:44.038 INFO [18336]: Version from config: 1.0 -- 06:49:44.038 DEBUG [18336]: Connecting to database... -- 06:49:44.038 DEBUG [18336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:44.038 SQL [18336]: pgsql_db_connect() -- 06:49:44.042 DEBUG [18336]: Database connection successful -- 06:49:44.042 INFO [18336]: _SERVER found -- 06:49:44.042 INFO [18336]: REMOTE_ADDR = 10.0.0.15 -- 06:49:44.042 INFO [18336]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:44.042 INFO [18336]: QUERY_STRING = /private/.env -- 06:49:44.042 INFO [18336]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:44.057 INFO [18336]: COREGRADE is stopping... -- 06:49:44.057 DEBUG [18336]: Closing database connection -- 06:49:44.057 SQL [18336]: pgsql_close() -- 06:49:44.573 INFO [21633]: COREGRADE is starting... -- 06:49:44.574 INFO [21633]: Version from config: 1.0 -- 06:49:44.574 DEBUG [21633]: Connecting to database... -- 06:49:44.574 DEBUG [21633]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:44.574 SQL [21633]: pgsql_db_connect() -- 06:49:44.578 DEBUG [21633]: Database connection successful -- 06:49:44.578 INFO [21633]: _SERVER found -- 06:49:44.578 INFO [21633]: REMOTE_ADDR = 10.0.0.15 -- 06:49:44.578 INFO [21633]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:44.578 INFO [21633]: QUERY_STRING = /dev/.env -- 06:49:44.578 INFO [21633]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:44.590 INFO [21633]: COREGRADE is stopping... -- 06:49:44.590 DEBUG [21633]: Closing database connection -- 06:49:44.590 SQL [21633]: pgsql_close() -- 06:49:45.106 INFO [21633]: COREGRADE is starting... -- 06:49:45.107 INFO [21633]: Version from config: 1.0 -- 06:49:45.107 DEBUG [21633]: Connecting to database... -- 06:49:45.107 DEBUG [21633]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:45.107 SQL [21633]: pgsql_db_connect() -- 06:49:45.111 DEBUG [21633]: Database connection successful -- 06:49:45.111 INFO [21633]: _SERVER found -- 06:49:45.111 INFO [21633]: REMOTE_ADDR = 10.0.0.15 -- 06:49:45.111 INFO [21633]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:45.111 INFO [21633]: QUERY_STRING = /site/.env -- 06:49:45.111 INFO [21633]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:45.123 INFO [21633]: COREGRADE is stopping... -- 06:49:45.123 DEBUG [21633]: Closing database connection -- 06:49:45.123 SQL [21633]: pgsql_close() -- 06:49:45.640 INFO [21633]: COREGRADE is starting... -- 06:49:45.640 INFO [21633]: Version from config: 1.0 -- 06:49:45.640 DEBUG [21633]: Connecting to database... -- 06:49:45.640 DEBUG [21633]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:45.640 SQL [21633]: pgsql_db_connect() -- 06:49:45.644 DEBUG [21633]: Database connection successful -- 06:49:45.644 INFO [21633]: _SERVER found -- 06:49:45.644 INFO [21633]: REMOTE_ADDR = 10.0.0.15 -- 06:49:45.644 INFO [21633]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:45.644 INFO [21633]: QUERY_STRING = /back/.env -- 06:49:45.644 INFO [21633]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:45.657 INFO [21633]: COREGRADE is stopping... -- 06:49:45.657 DEBUG [21633]: Closing database connection -- 06:49:45.657 SQL [21633]: pgsql_close() -- 06:49:46.174 INFO [21633]: COREGRADE is starting... -- 06:49:46.174 INFO [21633]: Version from config: 1.0 -- 06:49:46.174 DEBUG [21633]: Connecting to database... -- 06:49:46.174 DEBUG [21633]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:46.174 SQL [21633]: pgsql_db_connect() -- 06:49:46.178 DEBUG [21633]: Database connection successful -- 06:49:46.178 INFO [21633]: _SERVER found -- 06:49:46.178 INFO [21633]: REMOTE_ADDR = 10.0.0.15 -- 06:49:46.178 INFO [21633]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:46.178 INFO [21633]: QUERY_STRING = /api/.env -- 06:49:46.178 INFO [21633]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:46.190 INFO [21633]: COREGRADE is stopping... -- 06:49:46.190 DEBUG [21633]: Closing database connection -- 06:49:46.190 SQL [21633]: pgsql_close() -- 06:49:46.707 INFO [21633]: COREGRADE is starting... -- 06:49:46.707 INFO [21633]: Version from config: 1.0 -- 06:49:46.707 DEBUG [21633]: Connecting to database... -- 06:49:46.708 DEBUG [21633]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:46.708 SQL [21633]: pgsql_db_connect() -- 06:49:46.712 DEBUG [21633]: Database connection successful -- 06:49:46.712 INFO [21633]: _SERVER found -- 06:49:46.712 INFO [21633]: REMOTE_ADDR = 10.0.0.15 -- 06:49:46.712 INFO [21633]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:46.712 INFO [21633]: QUERY_STRING = /laravel-artisan/.env -- 06:49:46.712 INFO [21633]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:46.724 INFO [21633]: COREGRADE is stopping... -- 06:49:46.724 DEBUG [21633]: Closing database connection -- 06:49:46.724 SQL [21633]: pgsql_close() -- 06:49:47.240 INFO [21633]: COREGRADE is starting... -- 06:49:47.241 INFO [21633]: Version from config: 1.0 -- 06:49:47.241 DEBUG [21633]: Connecting to database... -- 06:49:47.241 DEBUG [21633]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:47.241 SQL [21633]: pgsql_db_connect() -- 06:49:47.245 DEBUG [21633]: Database connection successful -- 06:49:47.245 INFO [21633]: _SERVER found -- 06:49:47.245 INFO [21633]: REMOTE_ADDR = 10.0.0.15 -- 06:49:47.245 INFO [21633]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:47.245 INFO [21633]: QUERY_STRING = /config/.env -- 06:49:47.245 INFO [21633]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:47.257 INFO [21633]: COREGRADE is stopping... -- 06:49:47.257 DEBUG [21633]: Closing database connection -- 06:49:47.257 SQL [21633]: pgsql_close() -- 06:49:47.774 INFO [21633]: COREGRADE is starting... -- 06:49:47.775 INFO [21633]: Version from config: 1.0 -- 06:49:47.775 DEBUG [21633]: Connecting to database... -- 06:49:47.775 DEBUG [21633]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:47.775 SQL [21633]: pgsql_db_connect() -- 06:49:47.780 DEBUG [21633]: Database connection successful -- 06:49:47.780 INFO [21633]: _SERVER found -- 06:49:47.780 INFO [21633]: REMOTE_ADDR = 10.0.0.15 -- 06:49:47.780 INFO [21633]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:47.780 INFO [21633]: QUERY_STRING = /cli/.env -- 06:49:47.780 INFO [21633]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:47.793 INFO [21633]: COREGRADE is stopping... -- 06:49:47.793 DEBUG [21633]: Closing database connection -- 06:49:47.793 SQL [21633]: pgsql_close() -- 06:49:48.311 INFO [18337]: COREGRADE is starting... -- 06:49:48.312 INFO [18337]: Version from config: 1.0 -- 06:49:48.312 DEBUG [18337]: Connecting to database... -- 06:49:48.312 DEBUG [18337]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:48.312 SQL [18337]: pgsql_db_connect() -- 06:49:48.317 DEBUG [18337]: Database connection successful -- 06:49:48.317 INFO [18337]: _SERVER found -- 06:49:48.317 INFO [18337]: REMOTE_ADDR = 10.0.0.15 -- 06:49:48.317 INFO [18337]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:48.317 INFO [18337]: QUERY_STRING = /core/.env -- 06:49:48.317 INFO [18337]: HTTP_X_FORWARDED_FOR = 185.234.216.198 -- 06:49:48.331 INFO [18337]: COREGRADE is stopping... -- 06:49:48.331 DEBUG [18337]: Closing database connection -- 06:49:48.331 SQL [18337]: pgsql_close() -- 12:17:45.143 INFO [18335]: COREGRADE is starting... -- 12:17:45.144 INFO [18335]: Version from config: 1.0 -- 12:17:45.144 DEBUG [18335]: Connecting to database... -- 12:17:45.144 DEBUG [18335]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:17:45.144 SQL [18335]: pgsql_db_connect() -- 12:17:45.148 DEBUG [18335]: Database connection successful -- 12:17:45.148 INFO [18335]: _SERVER found -- 12:17:45.148 INFO [18335]: REMOTE_ADDR = 10.0.0.15 -- 12:17:45.148 INFO [18335]: SERVER_NAME = oameye.works.coregrade.com -- 12:17:45.148 INFO [18335]: QUERY_STRING = /wp-login.php -- 12:17:45.148 INFO [18335]: HTTP_X_FORWARDED_FOR = 191.234.176.158 -- 12:17:45.165 INFO [18335]: COREGRADE is stopping... -- 12:17:45.166 DEBUG [18335]: Closing database connection -- 12:17:45.166 SQL [18335]: pgsql_close() -- 12:59:58.378 INFO [18336]: COREGRADE is starting... -- 12:59:58.378 INFO [18336]: Version from config: 1.0 -- 12:59:58.378 DEBUG [18336]: Connecting to database... -- 12:59:58.378 DEBUG [18336]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:59:58.378 SQL [18336]: pgsql_db_connect() -- 12:59:58.383 DEBUG [18336]: Database connection successful -- 12:59:58.383 INFO [18336]: _SERVER found -- 12:59:58.383 INFO [18336]: REMOTE_ADDR = 10.0.0.15 -- 12:59:58.383 INFO [18336]: SERVER_NAME = oameye.works.coregrade.com -- 12:59:58.383 INFO [18336]: QUERY_STRING = /solr/admin/info/system -- 12:59:58.383 INFO [18336]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 12:59:58.399 INFO [18336]: COREGRADE is stopping... -- 12:59:58.399 DEBUG [18336]: Closing database connection -- 12:59:58.399 SQL [18336]: pgsql_close() -- 13:01:43.344 INFO [21633]: COREGRADE is starting... -- 13:01:43.344 INFO [21633]: Version from config: 1.0 -- 13:01:43.344 DEBUG [21633]: Connecting to database... -- 13:01:43.344 DEBUG [21633]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:01:43.344 SQL [21633]: pgsql_db_connect() -- 13:01:43.388 INFO [18337]: COREGRADE is starting... -- 13:01:43.388 INFO [18337]: Version from config: 1.0 -- 13:01:43.388 DEBUG [18337]: Connecting to database... -- 13:01:43.388 DEBUG [18337]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:01:43.388 SQL [18337]: pgsql_db_connect() -- 13:01:43.349 DEBUG [21633]: Database connection successful -- 13:01:43.349 INFO [21633]: _SERVER found -- 13:01:43.349 INFO [21633]: REMOTE_ADDR = 10.0.0.15 -- 13:01:43.349 INFO [21633]: SERVER_NAME = oameye.works.coregrade.com -- 13:01:43.349 INFO [21633]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 13:01:43.349 INFO [21633]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 13:01:43.399 INFO [21633]: COREGRADE is stopping... -- 13:01:43.399 DEBUG [21633]: Closing database connection -- 13:01:43.399 SQL [21633]: pgsql_close() -- 13:01:43.393 DEBUG [18337]: Database connection successful -- 13:01:43.393 INFO [18337]: _SERVER found -- 13:01:43.393 INFO [18337]: REMOTE_ADDR = 10.0.0.15 -- 13:01:43.393 INFO [18337]: SERVER_NAME = oameye.works.coregrade.com -- 13:01:43.393 INFO [18337]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 13:01:43.393 INFO [18337]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 13:01:43.439 INFO [18337]: COREGRADE is stopping... -- 13:01:43.439 DEBUG [18337]: Closing database connection -- 13:01:43.439 SQL [18337]: pgsql_close() -- 13:03:02.994 INFO [18334]: COREGRADE is starting... -- 13:03:02.994 INFO [18334]: Version from config: 1.0 -- 13:03:02.994 DEBUG [18334]: Connecting to database... -- 13:03:02.994 DEBUG [18334]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:03:02.994 SQL [18334]: pgsql_db_connect() -- 13:03:02.998 DEBUG [18334]: Database connection successful -- 13:03:02.998 INFO [18334]: _SERVER found -- 13:03:02.998 INFO [18334]: REMOTE_ADDR = 10.0.0.15 -- 13:03:02.998 INFO [18334]: SERVER_NAME = oameye.works.coregrade.com -- 13:03:02.998 INFO [18334]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 13:03:02.998 INFO [18334]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 13:03:03.042 INFO [18334]: COREGRADE is stopping... -- 13:03:03.042 DEBUG [18334]: Closing database connection -- 13:03:03.042 SQL [18334]: pgsql_close() -- 13:28:35.544 INFO [20440]: COREGRADE is starting... -- 13:28:35.544 INFO [20440]: Version from config: 1.0 -- 13:28:35.544 DEBUG [20440]: Connecting to database... -- 13:28:35.544 DEBUG [20440]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:28:35.544 SQL [20440]: pgsql_db_connect() -- 13:28:35.548 DEBUG [20440]: Database connection successful -- 13:28:35.548 INFO [20440]: _SERVER found -- 13:28:35.548 INFO [20440]: REMOTE_ADDR = 10.0.0.15 -- 13:28:35.548 INFO [20440]: SERVER_NAME = oameye.works.coregrade.com -- 13:28:35.548 INFO [20440]: QUERY_STRING = /api/jsonws/invoke -- 13:28:35.548 INFO [20440]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 13:28:35.563 INFO [20440]: COREGRADE is stopping... -- 13:28:35.563 DEBUG [20440]: Closing database connection -- 13:28:35.563 SQL [20440]: pgsql_close() -- 14:30:40.840 INFO [21631]: COREGRADE is starting... -- 14:30:40.841 INFO [21631]: Version from config: 1.0 -- 14:30:40.841 DEBUG [21631]: Connecting to database... -- 14:30:40.841 DEBUG [21631]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:30:40.841 SQL [21631]: pgsql_db_connect() -- 14:30:40.845 DEBUG [21631]: Database connection successful -- 14:30:40.845 INFO [21631]: _SERVER found -- 14:30:40.845 INFO [21631]: REMOTE_ADDR = 10.0.0.15 -- 14:30:40.845 INFO [21631]: SERVER_NAME = oameye.works.coregrade.com -- 14:30:40.845 INFO [21631]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 14:30:40.845 INFO [21631]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 14:30:40.860 INFO [21631]: COREGRADE is stopping... -- 14:30:40.860 DEBUG [21631]: Closing database connection -- 14:30:40.860 SQL [21631]: pgsql_close() -- 14:40:03.277 INFO [21632]: COREGRADE is starting... -- 14:40:03.278 INFO [21632]: Version from config: 1.0 -- 14:40:03.278 DEBUG [21632]: Connecting to database... -- 14:40:03.278 DEBUG [21632]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:40:03.278 SQL [21632]: pgsql_db_connect() -- 14:40:03.282 DEBUG [21632]: Database connection successful -- 14:40:03.282 INFO [21632]: _SERVER found -- 14:40:03.282 INFO [21632]: REMOTE_ADDR = 10.0.0.15 -- 14:40:03.282 INFO [21632]: SERVER_NAME = oameye.works.coregrade.com -- 14:40:03.282 INFO [21632]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 14:40:03.282 INFO [21632]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 14:40:03.297 INFO [21632]: COREGRADE is stopping... -- 14:40:03.297 DEBUG [21632]: Closing database connection -- 14:40:03.297 SQL [21632]: pgsql_close() -- 03:38:26.954 INFO [19398]: COREGRADE is starting... -- 03:38:26.954 INFO [19398]: Version from config: 1.0 -- 03:38:26.954 DEBUG [19398]: Connecting to database... -- 03:38:26.954 DEBUG [19398]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:38:26.954 SQL [19398]: pgsql_db_connect() -- 03:38:26.959 DEBUG [19398]: Database connection successful -- 03:38:26.959 INFO [19398]: _SERVER found -- 03:38:26.959 INFO [19398]: REMOTE_ADDR = 10.0.0.15 -- 03:38:26.959 INFO [19398]: SERVER_NAME = oameye.works.coregrade.com -- 03:38:26.959 INFO [19398]: QUERY_STRING = /.well-known/acme-challenge/BW3w4aM8XteZY3BlUspeIckKSA08I4uHneFwRHTswJs -- 03:38:26.959 INFO [19398]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 03:38:26.975 INFO [19398]: COREGRADE is stopping... -- 03:38:26.975 DEBUG [19398]: Closing database connection -- 03:38:26.975 SQL [19398]: pgsql_close() -- 03:38:27.117 INFO [19398]: COREGRADE is starting... -- 03:38:27.117 INFO [19398]: Version from config: 1.0 -- 03:38:27.117 DEBUG [19398]: Connecting to database... -- 03:38:27.117 DEBUG [19398]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:38:27.117 SQL [19398]: pgsql_db_connect() -- 03:38:27.122 DEBUG [19398]: Database connection successful -- 03:38:27.122 INFO [19398]: _SERVER found -- 03:38:27.122 INFO [19398]: REMOTE_ADDR = 10.0.0.15 -- 03:38:27.122 INFO [19398]: SERVER_NAME = oameye.works.coregrade.com -- 03:38:27.122 INFO [19398]: QUERY_STRING = /.well-known/acme-challenge/BW3w4aM8XteZY3BlUspeIckKSA08I4uHneFwRHTswJs -- 03:38:27.122 INFO [19398]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 03:38:27.134 INFO [19398]: COREGRADE is stopping... -- 03:38:27.134 DEBUG [19398]: Closing database connection -- 03:38:27.134 SQL [19398]: pgsql_close() -- 03:38:27.172 INFO [19398]: COREGRADE is starting... -- 03:38:27.173 INFO [19398]: Version from config: 1.0 -- 03:38:27.173 DEBUG [19398]: Connecting to database... -- 03:38:27.173 DEBUG [19398]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:38:27.173 SQL [19398]: pgsql_db_connect() -- 03:38:27.177 DEBUG [19398]: Database connection successful -- 03:38:27.177 INFO [19398]: _SERVER found -- 03:38:27.177 INFO [19398]: REMOTE_ADDR = 10.0.0.15 -- 03:38:27.177 INFO [19398]: SERVER_NAME = oameye.works.coregrade.com -- 03:38:27.177 INFO [19398]: QUERY_STRING = /.well-known/acme-challenge/BW3w4aM8XteZY3BlUspeIckKSA08I4uHneFwRHTswJs -- 03:38:27.177 INFO [19398]: HTTP_X_FORWARDED_FOR = 34.209.232.166 -- 03:38:27.188 INFO [19398]: COREGRADE is stopping... -- 03:38:27.188 DEBUG [19398]: Closing database connection -- 03:38:27.188 SQL [19398]: pgsql_close() -- 03:38:27.263 INFO [19398]: COREGRADE is starting... -- 03:38:27.263 INFO [19398]: Version from config: 1.0 -- 03:38:27.263 DEBUG [19398]: Connecting to database... -- 03:38:27.263 DEBUG [19398]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:38:27.263 SQL [19398]: pgsql_db_connect() -- 03:38:27.267 DEBUG [19398]: Database connection successful -- 03:38:27.267 INFO [19398]: _SERVER found -- 03:38:27.267 INFO [19398]: REMOTE_ADDR = 10.0.0.15 -- 03:38:27.267 INFO [19398]: SERVER_NAME = oameye.works.coregrade.com -- 03:38:27.267 INFO [19398]: QUERY_STRING = /.well-known/acme-challenge/BW3w4aM8XteZY3BlUspeIckKSA08I4uHneFwRHTswJs -- 03:38:27.267 INFO [19398]: HTTP_X_FORWARDED_FOR = 52.28.236.88 -- 03:38:27.278 INFO [19398]: COREGRADE is stopping... -- 03:38:27.279 DEBUG [19398]: Closing database connection -- 03:38:27.279 SQL [19398]: pgsql_close() -- 04:23:27.625 INFO [19400]: COREGRADE is starting... -- 04:23:27.626 INFO [19400]: Version from config: 1.0 -- 04:23:27.626 DEBUG [19400]: Connecting to database... -- 04:23:27.626 DEBUG [19400]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:23:27.626 SQL [19400]: pgsql_db_connect() -- 04:23:27.630 DEBUG [19400]: Database connection successful -- 04:23:27.630 INFO [19400]: _SERVER found -- 04:23:27.630 INFO [19400]: REMOTE_ADDR = 10.0.0.15 -- 04:23:27.630 INFO [19400]: SERVER_NAME = oameye.works.coregrade.com -- 04:23:27.630 INFO [19400]: QUERY_STRING = /solr/admin/info/system -- 04:23:27.630 INFO [19400]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 04:23:27.646 INFO [19400]: COREGRADE is stopping... -- 04:23:27.646 DEBUG [19400]: Closing database connection -- 04:23:27.646 SQL [19400]: pgsql_close() -- 04:28:53.486 INFO [19402]: COREGRADE is starting... -- 04:28:53.486 INFO [19402]: Version from config: 1.0 -- 04:28:53.486 DEBUG [19402]: Connecting to database... -- 04:28:53.486 DEBUG [19402]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:53.486 SQL [19402]: pgsql_db_connect() -- 04:28:53.491 DEBUG [19402]: Database connection successful -- 04:28:53.491 INFO [19402]: _SERVER found -- 04:28:53.491 INFO [19402]: REMOTE_ADDR = 10.0.0.15 -- 04:28:53.491 INFO [19402]: SERVER_NAME = oameye.works.coregrade.com -- 04:28:53.491 INFO [19402]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 04:28:53.491 INFO [19402]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 04:28:53.541 INFO [19402]: COREGRADE is stopping... -- 04:28:53.541 DEBUG [19402]: Closing database connection -- 04:28:53.541 SQL [19402]: pgsql_close() -- 04:28:53.815 INFO [19401]: COREGRADE is starting... -- 04:28:53.815 INFO [19401]: Version from config: 1.0 -- 04:28:53.815 DEBUG [19401]: Connecting to database... -- 04:28:53.815 DEBUG [19401]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:28:53.815 SQL [19401]: pgsql_db_connect() -- 04:28:53.820 DEBUG [19401]: Database connection successful -- 04:28:53.820 INFO [19401]: _SERVER found -- 04:28:53.820 INFO [19401]: REMOTE_ADDR = 10.0.0.15 -- 04:28:53.820 INFO [19401]: SERVER_NAME = oameye.works.coregrade.com -- 04:28:53.820 INFO [19401]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 04:28:53.820 INFO [19401]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 04:28:53.869 INFO [19401]: COREGRADE is stopping... -- 04:28:53.869 DEBUG [19401]: Closing database connection -- 04:28:53.869 SQL [19401]: pgsql_close() -- 04:39:41.392 INFO [20184]: COREGRADE is starting... -- 04:39:41.393 INFO [20184]: Version from config: 1.0 -- 04:39:41.393 DEBUG [20184]: Connecting to database... -- 04:39:41.393 DEBUG [20184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:39:41.393 SQL [20184]: pgsql_db_connect() -- 04:39:41.398 DEBUG [20184]: Database connection successful -- 04:39:41.398 INFO [20184]: _SERVER found -- 04:39:41.398 INFO [20184]: REMOTE_ADDR = 10.0.0.15 -- 04:39:41.398 INFO [20184]: SERVER_NAME = oameye.works.coregrade.com -- 04:39:41.398 INFO [20184]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 04:39:41.398 INFO [20184]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 04:39:41.447 INFO [20184]: COREGRADE is stopping... -- 04:39:41.447 DEBUG [20184]: Closing database connection -- 04:39:41.447 SQL [20184]: pgsql_close() -- 05:35:30.868 INFO [20186]: COREGRADE is starting... -- 05:35:30.868 INFO [20186]: Version from config: 1.0 -- 05:35:30.868 DEBUG [20186]: Connecting to database... -- 05:35:30.868 DEBUG [20186]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:35:30.868 SQL [20186]: pgsql_db_connect() -- 05:35:30.873 DEBUG [20186]: Database connection successful -- 05:35:30.873 INFO [20186]: _SERVER found -- 05:35:30.873 INFO [20186]: REMOTE_ADDR = 10.0.0.15 -- 05:35:30.873 INFO [20186]: SERVER_NAME = oameye.works.coregrade.com -- 05:35:30.873 INFO [20186]: QUERY_STRING = -- 05:35:30.873 INFO [20186]: HTTP_X_FORWARDED_FOR = 159.65.138.86 -- 05:35:30.920 INFO [20186]: COREGRADE is stopping... -- 05:35:30.920 DEBUG [20186]: Closing database connection -- 05:35:30.920 SQL [20186]: pgsql_close() -- 06:58:00.116 INFO [19399]: COREGRADE is starting... -- 06:58:00.116 INFO [19399]: Version from config: 1.0 -- 06:58:00.116 DEBUG [19399]: Connecting to database... -- 06:58:00.116 DEBUG [19399]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:58:00.117 SQL [19399]: pgsql_db_connect() -- 06:58:00.121 DEBUG [19399]: Database connection successful -- 06:58:00.121 INFO [19399]: _SERVER found -- 06:58:00.121 INFO [19399]: REMOTE_ADDR = 10.0.0.15 -- 06:58:00.121 INFO [19399]: SERVER_NAME = oameye.works.coregrade.com -- 06:58:00.121 INFO [19399]: QUERY_STRING = /api/jsonws/invoke -- 06:58:00.121 INFO [19399]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 06:58:00.137 INFO [19399]: COREGRADE is stopping... -- 06:58:00.137 DEBUG [19399]: Closing database connection -- 06:58:00.137 SQL [19399]: pgsql_close() -- 07:46:31.518 INFO [19398]: COREGRADE is starting... -- 07:46:31.519 INFO [19398]: Version from config: 1.0 -- 07:46:31.519 DEBUG [19398]: Connecting to database... -- 07:46:31.519 DEBUG [19398]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:46:31.519 SQL [19398]: pgsql_db_connect() -- 07:46:31.523 DEBUG [19398]: Database connection successful -- 07:46:31.524 INFO [19398]: _SERVER found -- 07:46:31.524 INFO [19398]: REMOTE_ADDR = 10.0.0.15 -- 07:46:31.524 INFO [19398]: SERVER_NAME = oameye.works.coregrade.com -- 07:46:31.524 INFO [19398]: QUERY_STRING = /TP/public/index.php -- 07:46:31.524 INFO [19398]: HTTP_X_FORWARDED_FOR = 123.206.232.191 -- 07:46:31.540 INFO [19398]: COREGRADE is stopping... -- 07:46:31.540 DEBUG [19398]: Closing database connection -- 07:46:31.540 SQL [19398]: pgsql_close() -- 07:46:33.660 INFO [19398]: COREGRADE is starting... -- 07:46:33.660 INFO [19398]: Version from config: 1.0 -- 07:46:33.660 DEBUG [19398]: Connecting to database... -- 07:46:33.660 DEBUG [19398]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:46:33.660 SQL [19398]: pgsql_db_connect() -- 07:46:33.664 DEBUG [19398]: Database connection successful -- 07:46:33.664 INFO [19398]: _SERVER found -- 07:46:33.664 INFO [19398]: REMOTE_ADDR = 10.0.0.15 -- 07:46:33.664 INFO [19398]: SERVER_NAME = oameye.works.coregrade.com -- 07:46:33.664 INFO [19398]: QUERY_STRING = -- 07:46:33.664 INFO [19398]: HTTP_X_FORWARDED_FOR = 123.206.232.191 -- 07:46:33.707 INFO [19398]: COREGRADE is stopping... -- 07:46:33.707 DEBUG [19398]: Closing database connection -- 07:46:33.707 SQL [19398]: pgsql_close() -- 12:45:59.960 INFO [19402]: COREGRADE is starting... -- 12:45:59.960 INFO [19402]: Version from config: 1.0 -- 12:45:59.960 DEBUG [19402]: Connecting to database... -- 12:45:59.960 DEBUG [19402]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:45:59.960 SQL [19402]: pgsql_db_connect() -- 12:45:59.965 DEBUG [19402]: Database connection successful -- 12:45:59.965 INFO [19402]: _SERVER found -- 12:45:59.965 INFO [19402]: REMOTE_ADDR = 10.0.0.15 -- 12:45:59.965 INFO [19402]: SERVER_NAME = oameye.works.coregrade.com -- 12:45:59.965 INFO [19402]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 12:45:59.965 INFO [19402]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 12:45:59.981 INFO [19402]: COREGRADE is stopping... -- 12:45:59.981 DEBUG [19402]: Closing database connection -- 12:45:59.981 SQL [19402]: pgsql_close() -- 15:38:20.052 INFO [19401]: COREGRADE is starting... -- 15:38:20.052 INFO [19401]: Version from config: 1.0 -- 15:38:20.052 DEBUG [19401]: Connecting to database... -- 15:38:20.052 DEBUG [19401]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:38:20.052 SQL [19401]: pgsql_db_connect() -- 15:38:20.058 DEBUG [19401]: Database connection successful -- 15:38:20.058 INFO [19401]: _SERVER found -- 15:38:20.058 INFO [19401]: REMOTE_ADDR = 10.0.0.15 -- 15:38:20.058 INFO [19401]: SERVER_NAME = oameye.works.coregrade.com -- 15:38:20.058 INFO [19401]: QUERY_STRING = /solr/admin/info/system -- 15:38:20.058 INFO [19401]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 15:38:20.073 INFO [19401]: COREGRADE is stopping... -- 15:38:20.073 DEBUG [19401]: Closing database connection -- 15:38:20.073 SQL [19401]: pgsql_close() -- 15:41:51.507 INFO [20184]: COREGRADE is starting... -- 15:41:51.507 INFO [20184]: Version from config: 1.0 -- 15:41:51.507 DEBUG [20184]: Connecting to database... -- 15:41:51.507 DEBUG [20184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:41:51.507 SQL [20184]: pgsql_db_connect() -- 15:41:51.511 DEBUG [20184]: Database connection successful -- 15:41:51.511 INFO [20184]: _SERVER found -- 15:41:51.511 INFO [20184]: REMOTE_ADDR = 10.0.0.15 -- 15:41:51.511 INFO [20184]: SERVER_NAME = oameye.works.coregrade.com -- 15:41:51.511 INFO [20184]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 15:41:51.511 INFO [20184]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 15:41:51.550 INFO [20184]: COREGRADE is stopping... -- 15:41:51.550 DEBUG [20184]: Closing database connection -- 15:41:51.550 SQL [20184]: pgsql_close() -- 15:41:52.101 INFO [20184]: COREGRADE is starting... -- 15:41:52.101 INFO [20184]: Version from config: 1.0 -- 15:41:52.101 DEBUG [20184]: Connecting to database... -- 15:41:52.101 DEBUG [20184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:41:52.101 SQL [20184]: pgsql_db_connect() -- 15:41:52.105 DEBUG [20184]: Database connection successful -- 15:41:52.105 INFO [20184]: _SERVER found -- 15:41:52.105 INFO [20184]: REMOTE_ADDR = 10.0.0.15 -- 15:41:52.105 INFO [20184]: SERVER_NAME = oameye.works.coregrade.com -- 15:41:52.105 INFO [20184]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 15:41:52.105 INFO [20184]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 15:41:52.137 INFO [20184]: COREGRADE is stopping... -- 15:41:52.137 DEBUG [20184]: Closing database connection -- 15:41:52.137 SQL [20184]: pgsql_close() -- 15:49:04.864 INFO [20186]: COREGRADE is starting... -- 15:49:04.864 INFO [20186]: Version from config: 1.0 -- 15:49:04.864 DEBUG [20186]: Connecting to database... -- 15:49:04.864 DEBUG [20186]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:49:04.864 SQL [20186]: pgsql_db_connect() -- 15:49:04.868 DEBUG [20186]: Database connection successful -- 15:49:04.868 INFO [20186]: _SERVER found -- 15:49:04.868 INFO [20186]: REMOTE_ADDR = 10.0.0.15 -- 15:49:04.868 INFO [20186]: SERVER_NAME = oameye.works.coregrade.com -- 15:49:04.868 INFO [20186]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 15:49:04.868 INFO [20186]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 15:49:04.903 INFO [20186]: COREGRADE is stopping... -- 15:49:04.903 DEBUG [20186]: Closing database connection -- 15:49:04.903 SQL [20186]: pgsql_close() -- 17:20:53.857 INFO [19399]: COREGRADE is starting... -- 17:20:53.858 INFO [19399]: Version from config: 1.0 -- 17:20:53.858 DEBUG [19399]: Connecting to database... -- 17:20:53.858 DEBUG [19399]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:20:53.858 SQL [19399]: pgsql_db_connect() -- 17:20:53.862 DEBUG [19399]: Database connection successful -- 17:20:53.862 INFO [19399]: _SERVER found -- 17:20:53.862 INFO [19399]: REMOTE_ADDR = 10.0.0.15 -- 17:20:53.862 INFO [19399]: SERVER_NAME = oameye.works.coregrade.com -- 17:20:53.862 INFO [19399]: QUERY_STRING = /api/jsonws/invoke -- 17:20:53.862 INFO [19399]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 17:20:53.877 INFO [19399]: COREGRADE is stopping... -- 17:20:53.877 DEBUG [19399]: Closing database connection -- 17:20:53.877 SQL [19399]: pgsql_close() -- 21:06:04.536 INFO [19398]: COREGRADE is starting... -- 21:06:04.537 INFO [19398]: Version from config: 1.0 -- 21:06:04.537 DEBUG [19398]: Connecting to database... -- 21:06:04.537 DEBUG [19398]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:06:04.537 SQL [19398]: pgsql_db_connect() -- 21:06:04.542 DEBUG [19398]: Database connection successful -- 21:06:04.542 INFO [19398]: _SERVER found -- 21:06:04.542 INFO [19398]: REMOTE_ADDR = 10.0.0.15 -- 21:06:04.542 INFO [19398]: SERVER_NAME = oameye.works.coregrade.com -- 21:06:04.542 INFO [19398]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 21:06:04.542 INFO [19398]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 21:06:04.558 INFO [19398]: COREGRADE is stopping... -- 21:06:04.558 DEBUG [19398]: Closing database connection -- 21:06:04.558 SQL [19398]: pgsql_close() -- 21:51:48.193 INFO [19400]: COREGRADE is starting... -- 21:51:48.193 INFO [19400]: Version from config: 1.0 -- 21:51:48.193 DEBUG [19400]: Connecting to database... -- 21:51:48.193 DEBUG [19400]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:51:48.193 SQL [19400]: pgsql_db_connect() -- 21:51:48.197 DEBUG [19400]: Database connection successful -- 21:51:48.197 INFO [19400]: _SERVER found -- 21:51:48.197 INFO [19400]: REMOTE_ADDR = 10.0.0.15 -- 21:51:48.197 INFO [19400]: SERVER_NAME = oameye.works.coregrade.com -- 21:51:48.197 INFO [19400]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 21:51:48.197 INFO [19400]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 21:51:48.212 INFO [19400]: COREGRADE is stopping... -- 21:51:48.212 DEBUG [19400]: Closing database connection -- 21:51:48.212 SQL [19400]: pgsql_close() -- 02:04:29.520 INFO [19402]: COREGRADE is starting... -- 02:04:29.520 INFO [19402]: Version from config: 1.0 -- 02:04:29.520 DEBUG [19402]: Connecting to database... -- 02:04:29.520 DEBUG [19402]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:04:29.520 SQL [19402]: pgsql_db_connect() -- 02:04:29.525 DEBUG [19402]: Database connection successful -- 02:04:29.525 INFO [19402]: _SERVER found -- 02:04:29.525 INFO [19402]: REMOTE_ADDR = 10.0.0.15 -- 02:04:29.525 INFO [19402]: SERVER_NAME = oameye.works.coregrade.com -- 02:04:29.525 INFO [19402]: QUERY_STRING = -- 02:04:29.525 INFO [19402]: HTTP_X_FORWARDED_FOR = 103.149.192.75 -- 02:04:29.563 INFO [19402]: COREGRADE is stopping... -- 02:04:29.563 DEBUG [19402]: Closing database connection -- 02:04:29.564 SQL [19402]: pgsql_close() -- 02:48:04.350 INFO [19401]: COREGRADE is starting... -- 02:48:04.351 INFO [19401]: Version from config: 1.0 -- 02:48:04.351 DEBUG [19401]: Connecting to database... -- 02:48:04.351 DEBUG [19401]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:04.351 SQL [19401]: pgsql_db_connect() -- 02:48:04.356 DEBUG [19401]: Database connection successful -- 02:48:04.356 INFO [19401]: _SERVER found -- 02:48:04.356 INFO [19401]: REMOTE_ADDR = 10.0.0.15 -- 02:48:04.356 INFO [19401]: SERVER_NAME = oameye.works.coregrade.com -- 02:48:04.356 INFO [19401]: QUERY_STRING = /.well-known/acme-challenge/U-7ho7HCDGCN5jL3YMeWrM_wll-cvV_So9obeTBnCWQ -- 02:48:04.356 INFO [19401]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 02:48:04.376 INFO [19401]: COREGRADE is stopping... -- 02:48:04.376 DEBUG [19401]: Closing database connection -- 02:48:04.376 SQL [19401]: pgsql_close() -- 02:48:04.439 INFO [20184]: COREGRADE is starting... -- 02:48:04.440 INFO [20184]: Version from config: 1.0 -- 02:48:04.440 DEBUG [20184]: Connecting to database... -- 02:48:04.440 DEBUG [20184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:48:04.440 SQL [20184]: pgsql_db_connect() -- 02:48:04.444 DEBUG [20184]: Database connection successful -- 02:48:04.444 INFO [20184]: _SERVER found -- 02:48:04.444 INFO [20184]: REMOTE_ADDR = 10.0.0.15 -- 02:48:04.444 INFO [20184]: SERVER_NAME = oameye.works.coregrade.com -- 02:48:04.444 INFO [20184]: QUERY_STRING = /.well-known/acme-challenge/U-7ho7HCDGCN5jL3YMeWrM_wll-cvV_So9obeTBnCWQ -- 02:48:04.444 INFO [20184]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 02:48:04.458 INFO [20184]: COREGRADE is stopping... -- 02:48:04.458 DEBUG [20184]: Closing database connection -- 02:48:04.458 SQL [20184]: pgsql_close() -- 05:28:57.577 INFO [19400]: COREGRADE is starting... -- 05:28:57.577 INFO [19400]: Version from config: 1.0 -- 05:28:57.577 DEBUG [19400]: Connecting to database... -- 05:28:57.577 DEBUG [19400]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:28:57.577 SQL [19400]: pgsql_db_connect() -- 05:28:57.582 DEBUG [19400]: Database connection successful -- 05:28:57.582 INFO [19400]: _SERVER found -- 05:28:57.582 INFO [19400]: REMOTE_ADDR = 10.0.0.15 -- 05:28:57.582 INFO [19400]: SERVER_NAME = oameye.works.coregrade.com -- 05:28:57.582 INFO [19400]: QUERY_STRING = -- 05:28:57.582 INFO [19400]: HTTP_X_FORWARDED_FOR = 185.82.215.92 -- 05:28:57.626 INFO [19400]: COREGRADE is stopping... -- 05:28:57.627 DEBUG [19400]: Closing database connection -- 05:28:57.627 SQL [19400]: pgsql_close() -- 06:10:50.038 INFO [19402]: COREGRADE is starting... -- 06:10:50.039 INFO [19402]: Version from config: 1.0 -- 06:10:50.039 DEBUG [19402]: Connecting to database... -- 06:10:50.039 DEBUG [19402]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:10:50.039 SQL [19402]: pgsql_db_connect() -- 06:10:50.043 DEBUG [19402]: Database connection successful -- 06:10:50.043 INFO [19402]: _SERVER found -- 06:10:50.043 INFO [19402]: REMOTE_ADDR = 10.0.0.15 -- 06:10:50.043 INFO [19402]: SERVER_NAME = oameye.works.coregrade.com -- 06:10:50.043 INFO [19402]: QUERY_STRING = -- 06:10:50.043 INFO [19402]: HTTP_X_FORWARDED_FOR = 45.79.135.50 -- 06:10:50.080 INFO [19402]: COREGRADE is stopping... -- 06:10:50.080 DEBUG [19402]: Closing database connection -- 06:10:50.080 SQL [19402]: pgsql_close() -- 06:39:04.742 INFO [9867]: COREGRADE is starting... -- 06:39:04.742 INFO [9867]: Version from config: 1.0 -- 06:39:04.742 DEBUG [9867]: Connecting to database... -- 06:39:04.742 DEBUG [9867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:39:04.742 SQL [9867]: pgsql_db_connect() -- 06:39:04.747 DEBUG [9867]: Database connection successful -- 06:39:04.747 INFO [9867]: _SERVER found -- 06:39:04.747 INFO [9867]: REMOTE_ADDR = 10.0.0.15 -- 06:39:04.747 INFO [9867]: SERVER_NAME = oameye.works.coregrade.com -- 06:39:04.747 INFO [9867]: QUERY_STRING = -- 06:39:04.747 INFO [9867]: HTTP_X_FORWARDED_FOR = 198.108.66.250 -- 06:39:04.791 INFO [9867]: COREGRADE is stopping... -- 06:39:04.791 DEBUG [9867]: Closing database connection -- 06:39:04.791 SQL [9867]: pgsql_close() -- 14:12:50.076 INFO [9868]: COREGRADE is starting... -- 14:12:50.076 INFO [9868]: Version from config: 1.0 -- 14:12:50.076 DEBUG [9868]: Connecting to database... -- 14:12:50.076 DEBUG [9868]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:12:50.076 SQL [9868]: pgsql_db_connect() -- 14:12:50.081 DEBUG [9868]: Database connection successful -- 14:12:50.081 INFO [9868]: _SERVER found -- 14:12:50.081 INFO [9868]: REMOTE_ADDR = 10.0.0.15 -- 14:12:50.081 INFO [9868]: SERVER_NAME = oameye.works.coregrade.com -- 14:12:50.081 INFO [9868]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 14:12:50.081 INFO [9868]: QUERY_STRING = -- 14:12:50.081 INFO [9868]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:12:50.129 INFO [9868]: COREGRADE is stopping... -- 14:12:50.129 DEBUG [9868]: Closing database connection -- 14:12:50.129 SQL [9868]: pgsql_close() -- 14:12:50.738 INFO [9868]: COREGRADE is starting... -- 14:12:50.738 INFO [9868]: Version from config: 1.0 -- 14:12:50.738 DEBUG [9868]: Connecting to database... -- 14:12:50.738 DEBUG [9868]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:12:50.738 SQL [9868]: pgsql_db_connect() -- 14:12:50.742 DEBUG [9868]: Database connection successful -- 14:12:50.742 INFO [9868]: _SERVER found -- 14:12:50.742 INFO [9868]: REMOTE_ADDR = 10.0.0.15 -- 14:12:50.742 INFO [9868]: SERVER_NAME = oameye.works.coregrade.com -- 14:12:50.742 INFO [9868]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=11cmn30utid630i8ku754naqt548u1e8 -- 14:12:50.742 INFO [9868]: QUERY_STRING = /assets/img/footer_1.jpg -- 14:12:50.742 INFO [9868]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:12:50.754 INFO [9868]: COREGRADE is stopping... -- 14:12:50.754 DEBUG [9868]: Closing database connection -- 14:12:50.754 SQL [9868]: pgsql_close() -- 14:13:30.868 INFO [9869]: COREGRADE is starting... -- 14:13:30.868 INFO [9869]: Version from config: 1.0 -- 14:13:30.868 DEBUG [9869]: Connecting to database... -- 14:13:30.868 DEBUG [9869]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:13:30.869 SQL [9869]: pgsql_db_connect() -- 14:13:30.873 DEBUG [9869]: Database connection successful -- 14:13:30.873 INFO [9869]: _SERVER found -- 14:13:30.873 INFO [9869]: REMOTE_ADDR = 10.0.0.15 -- 14:13:30.873 INFO [9869]: SERVER_NAME = oameye.works.coregrade.com -- 14:13:30.873 INFO [9869]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=11cmn30utid630i8ku754naqt548u1e8; _gid=GA1.2.134398154.1590775970; _gat_gtag_UA_54829827_2=1 -- 14:13:30.873 INFO [9869]: QUERY_STRING = /auth -- 14:13:30.873 INFO [9869]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:13:30.913 INFO [9869]: COREGRADE is stopping... -- 14:13:30.913 DEBUG [9869]: Closing database connection -- 14:13:30.913 SQL [9869]: pgsql_close() -- 14:13:30.925 INFO [9869]: COREGRADE is starting... -- 14:13:30.925 INFO [9869]: Version from config: 1.0 -- 14:13:30.925 DEBUG [9869]: Connecting to database... -- 14:13:30.925 DEBUG [9869]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:13:30.925 SQL [9869]: pgsql_db_connect() -- 14:13:30.929 DEBUG [9869]: Database connection successful -- 14:13:30.929 INFO [9869]: _SERVER found -- 14:13:30.929 INFO [9869]: REMOTE_ADDR = 10.0.0.15 -- 14:13:30.929 INFO [9869]: SERVER_NAME = oameye.works.coregrade.com -- 14:13:30.929 INFO [9869]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=11cmn30utid630i8ku754naqt548u1e8; _gid=GA1.2.134398154.1590775970; _gat_gtag_UA_54829827_2=1 -- 14:13:30.929 INFO [9869]: QUERY_STRING = /welcome/viewLogin -- 14:13:30.929 INFO [9869]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:13:30.960 INFO [9869]: COREGRADE is stopping... -- 14:13:30.960 DEBUG [9869]: Closing database connection -- 14:13:30.960 SQL [9869]: pgsql_close() -- 14:13:44.080 INFO [19401]: COREGRADE is starting... -- 14:13:44.080 INFO [19401]: Version from config: 1.0 -- 14:13:44.080 DEBUG [19401]: Connecting to database... -- 14:13:44.080 DEBUG [19401]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:13:44.080 SQL [19401]: pgsql_db_connect() -- 14:13:44.085 DEBUG [19401]: Database connection successful -- 14:13:44.085 INFO [19401]: _SERVER found -- 14:13:44.085 INFO [19401]: REMOTE_ADDR = 10.0.0.15 -- 14:13:44.085 INFO [19401]: SERVER_NAME = oameye.works.coregrade.com -- 14:13:44.085 INFO [19401]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=11cmn30utid630i8ku754naqt548u1e8; _gid=GA1.2.134398154.1590775970; _gat_gtag_UA_54829827_2=1 -- 14:13:44.085 INFO [19401]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 14:13:44.085 INFO [19401]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:13:44.098 INFO [19401]: COREGRADE is stopping... -- 14:13:44.098 DEBUG [19401]: Closing database connection -- 14:13:44.098 SQL [19401]: pgsql_close() -- 15:28:12.160 INFO [20184]: COREGRADE is starting... -- 15:28:12.160 INFO [20184]: Version from config: 1.0 -- 15:28:12.160 DEBUG [20184]: Connecting to database... -- 15:28:12.160 DEBUG [20184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:28:12.160 SQL [20184]: pgsql_db_connect() -- 15:28:12.166 DEBUG [20184]: Database connection successful -- 15:28:12.166 INFO [20184]: _SERVER found -- 15:28:12.166 INFO [20184]: REMOTE_ADDR = 10.0.0.15 -- 15:28:12.166 INFO [20184]: SERVER_NAME = oameye.works.coregrade.com -- 15:28:12.166 INFO [20184]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=11cmn30utid630i8ku754naqt548u1e8; _gid=GA1.2.134398154.1590775970 -- 15:28:12.166 INFO [20184]: QUERY_STRING = /auth -- 15:28:12.166 INFO [20184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:28:12.207 INFO [20184]: COREGRADE is stopping... -- 15:28:12.207 DEBUG [20184]: Closing database connection -- 15:28:12.207 SQL [20184]: pgsql_close() -- 15:28:12.335 INFO [20184]: COREGRADE is starting... -- 15:28:12.336 INFO [20184]: Version from config: 1.0 -- 15:28:12.336 DEBUG [20184]: Connecting to database... -- 15:28:12.336 DEBUG [20184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:28:12.336 SQL [20184]: pgsql_db_connect() -- 15:28:12.340 DEBUG [20184]: Database connection successful -- 15:28:12.340 INFO [20184]: _SERVER found -- 15:28:12.340 INFO [20184]: REMOTE_ADDR = 10.0.0.15 -- 15:28:12.340 INFO [20184]: SERVER_NAME = oameye.works.coregrade.com -- 15:28:12.340 INFO [20184]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.134398154.1590775970; ci_session=4eke9usgq8ks2o30embcdsgu868p3mm3 -- 15:28:12.340 INFO [20184]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:28:12.340 INFO [20184]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:28:12.352 INFO [20184]: COREGRADE is stopping... -- 15:28:12.352 DEBUG [20184]: Closing database connection -- 15:28:12.352 SQL [20184]: pgsql_close() -- 15:28:34.789 INFO [20186]: COREGRADE is starting... -- 15:28:34.789 INFO [20186]: Version from config: 1.0 -- 15:28:34.789 DEBUG [20186]: Connecting to database... -- 15:28:34.789 DEBUG [20186]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:28:34.789 SQL [20186]: pgsql_db_connect() -- 15:28:34.793 DEBUG [20186]: Database connection successful -- 15:28:34.793 INFO [20186]: _SERVER found -- 15:28:34.793 INFO [20186]: REMOTE_ADDR = 10.0.0.15 -- 15:28:34.793 INFO [20186]: SERVER_NAME = oameye.works.coregrade.com -- 15:28:34.793 INFO [20186]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979 -- 15:28:34.793 INFO [20186]: QUERY_STRING = /auth -- 15:28:34.793 INFO [20186]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:28:34.831 INFO [20186]: COREGRADE is stopping... -- 15:28:34.831 DEBUG [20186]: Closing database connection -- 15:28:34.831 SQL [20186]: pgsql_close() -- 15:28:35.270 INFO [19402]: COREGRADE is starting... -- 15:28:35.270 INFO [19402]: Version from config: 1.0 -- 15:28:35.270 DEBUG [19402]: Connecting to database... -- 15:28:35.270 DEBUG [19402]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:28:35.270 SQL [19402]: pgsql_db_connect() -- 15:28:35.275 DEBUG [19402]: Database connection successful -- 15:28:35.275 INFO [19402]: _SERVER found -- 15:28:35.275 INFO [19402]: REMOTE_ADDR = 10.0.0.15 -- 15:28:35.275 INFO [19402]: SERVER_NAME = oameye.works.coregrade.com -- 15:28:35.275 INFO [19402]: HTTP_COOKIE = _ga=GA1.2.1740002885.1589050979; ci_session=6iecvhodfkv4a1h9990o4uvstiii6iu2 -- 15:28:35.275 INFO [19402]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 15:28:35.275 INFO [19402]: HTTP_X_FORWARDED_FOR = 13.57.32.229 -- 15:28:35.288 INFO [19402]: COREGRADE is stopping... -- 15:28:35.288 DEBUG [19402]: Closing database connection -- 15:28:35.288 SQL [19402]: pgsql_close() -- 15:28:56.451 INFO [9867]: COREGRADE is starting... -- 15:28:56.451 INFO [9867]: Version from config: 1.0 -- 15:28:56.451 DEBUG [9867]: Connecting to database... -- 15:28:56.451 DEBUG [9867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:28:56.451 SQL [9867]: pgsql_db_connect() -- 15:28:56.489 INFO [9867]: COREGRADE is starting... -- 15:28:56.489 INFO [9867]: Version from config: 1.0 -- 15:28:56.489 DEBUG [9867]: Connecting to database... -- 15:28:56.489 DEBUG [9867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:28:56.489 SQL [9867]: pgsql_db_connect() -- 15:28:56.493 DEBUG [9867]: Database connection successful -- 15:28:56.493 INFO [9867]: _SERVER found -- 15:28:56.493 INFO [9867]: REMOTE_ADDR = 10.0.0.15 -- 15:28:56.493 INFO [9867]: SERVER_NAME = oameye.works.coregrade.com -- 15:28:56.493 INFO [9867]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.134398154.1590775970; ci_session=4eke9usgq8ks2o30embcdsgu868p3mm3 -- 15:28:56.493 INFO [9867]: QUERY_STRING = -- 15:28:56.494 INFO [9867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:28:56.494 INFO [9867]: SystemStatus()09-09-********~************ -- 15:28:56.494 INFO [9867]: long coregrade_api_main(CVars in, CVars &out) -- 15:28:56.494 INFO [9867]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 15:28:56.494 INFO [9867]: account calls -- 15:28:56.494 INFO [9867]: account_calls() -- 15:28:56.494 INFO [9867]: LoginCoreGradeAccount() -- 15:28:56.494 FLOG_MAX [9867]: REQ_STRING(username) -- 15:28:56.494 FLOG_MAX [9867]: REQ_STRING(password) -- 15:28:56.494 FLOG_MAX [9867]: REQ_STRING(sessionid) -- 15:28:56.494 FLOG_MAX [9867]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:28:56.494 SQL [9867]: pgsql_query() -- 15:28:56.494 SQL [9867]: About to run query: -- 15:28:56.494 SQL [9867]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 15:28:56.498 SQL [9867]: Found rows: 1 -- 15:28:56.498 FLOG_MAX [9867]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 15:28:56.498 INFO [9867]: long SessionCheck(long uid, const char *sessionid, int create ) -- 15:28:56.498 SQL [9867]: pgsql_exec() -- 15:28:56.498 SQL [9867]: About to run query: -- 15:28:56.498 SQL [9867]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 15:28:56.499 SQL [9867]: PQcmdTuples: 1 -- 15:28:56.499 SQL [9867]: Affected rows: 1 -- 15:28:56.499 SQL [9867]: pgsql_exec() -- 15:28:56.499 SQL [9867]: About to run query: -- 15:28:56.500 SQL [9867]: DELETE FROM members_session WHERE member_id=5 -- 15:28:56.500 SQL [9867]: PQcmdTuples: 0 -- 15:28:56.500 SQL [9867]: Affected rows: 0 -- 15:28:56.500 SQL [9867]: pgsql_query() -- 15:28:56.500 SQL [9867]: About to run query: -- 15:28:56.500 SQL [9867]: SELECT * FROM members_session WHERE member_id=5 AND session<>'EF6E5541052564BAD1FF041382D866FF' -- 15:28:56.501 SQL [9867]: Found rows: 0 -- 15:28:56.501 SQL [9867]: Found rows: 0 -- 15:28:56.501 FLOG_MAX [9867]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:28:56.501 SQL [9867]: pgsql_query() -- 15:28:56.501 SQL [9867]: About to run query: -- 15:28:56.501 SQL [9867]: SELECT * FROM members_session WHERE member_id=5 AND session='EF6E5541052564BAD1FF041382D866FF' -- 15:28:56.501 SQL [9867]: Found rows: 0 -- 15:28:56.501 SQL [9867]: Found rows: 0 -- 15:28:56.501 FLOG_MAX [9867]: insert_db_record() -- 15:28:56.501 SQL [9867]: pgsql_exec() -- 15:28:56.501 SQL [9867]: About to run query: -- 15:28:56.501 SQL [9867]: INSERT INTO members_session (member_id,session) VALUES ('5','EF6E5541052564BAD1FF041382D866FF') -- 15:28:56.503 SQL [9867]: PQcmdTuples: 1 -- 15:28:56.503 SQL [9867]: Affected rows: 1 -- 15:28:56.503 FLOG_MAX [9867]: SELECT currval('members_session_id_seq') -- 15:28:56.503 SQL [9867]: pgsql_query() -- 15:28:56.503 SQL [9867]: About to run query: -- 15:28:56.503 SQL [9867]: SELECT currval('members_session_id_seq') -- 15:28:56.503 SQL [9867]: Found rows: 1 -- 15:28:56.503 INFO [9867]: CreateDefaultPage() -- 15:28:56.503 FLOG_MAX [9867]: long load_db_record( CVars &rec, const char * query, ... ) -- 15:28:56.503 SQL [9867]: pgsql_query() -- 15:28:56.503 SQL [9867]: About to run query: -- 15:28:56.503 SQL [9867]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 15:28:56.504 SQL [9867]: Found rows: 1 -- 15:28:56.504 FLOG_MAX [9867]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 15:28:56.504 SQL [9867]: pgsql_query() -- 15:28:56.504 SQL [9867]: About to run query: -- 15:28:56.504 SQL [9867]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 15:28:56.504 SQL [9867]: Found rows: 1 -- 15:28:56.504 INFO [9867]: /CreateDefaultPage() -- 15:28:56.504 INFO [9867]: /LoginCoreGradeAccount() -- 15:28:56.504 INFO [9867]: RET: added=2020-02-05 06:47:23.982154 -- 15:28:56.504 INFO [9867]: RET: email=ameye+11@chiefsoft.com -- 15:28:56.504 INFO [9867]: RET: firstname=Olu -- 15:28:56.504 INFO [9867]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 15:28:56.504 INFO [9867]: RET: id=5 -- 15:28:56.504 INFO [9867]: RET: last_login= -- 15:28:56.504 INFO [9867]: RET: lastname=Amey -- 15:28:56.504 INFO [9867]: RET: loc=192.168.1.13 -- 15:28:56.504 INFO [9867]: RET: member_id=5 -- 15:28:56.504 INFO [9867]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 15:28:56.504 INFO [9867]: RET: phone= -- 15:28:56.504 INFO [9867]: RET: pid= -- 15:28:56.504 INFO [9867]: RET: result=YES I GET TO BACK END -- 15:28:56.504 INFO [9867]: RET: sessionid=EF6E5541052564BAD1FF041382D866FF -- 15:28:56.504 INFO [9867]: RET: status=1 -- 15:28:56.504 INFO [9867]: RET: stauts=OK -- 15:28:56.504 INFO [9867]: RET: username=ameye+11@chiefsoft.com -- 15:28:56.504 INFO [9867]: RET: verified= -- 15:28:56.506 INFO [9867]: COREGRADE is stopping... -- 15:28:56.506 DEBUG [9867]: Closing database connection -- 15:28:56.506 SQL [9867]: pgsql_close() -- 15:28:56.456 DEBUG [9867]: Database connection successful -- 15:28:56.456 INFO [9867]: _SERVER found -- 15:28:56.456 INFO [9867]: REMOTE_ADDR = 10.0.0.15 -- 15:28:56.456 INFO [9867]: SERVER_NAME = oameye.works.coregrade.com -- 15:28:56.456 INFO [9867]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.134398154.1590775970; ci_session=4eke9usgq8ks2o30embcdsgu868p3mm3 -- 15:28:56.456 INFO [9867]: QUERY_STRING = /auth -- 15:28:56.456 INFO [9867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:28:56.506 INFO [9867]: COREGRADE is stopping... -- 15:28:56.506 DEBUG [9867]: Closing database connection -- 15:28:56.506 SQL [9867]: pgsql_close() -- 15:28:56.516 INFO [9867]: COREGRADE is starting... -- 15:28:56.516 INFO [9867]: Version from config: 1.0 -- 15:28:56.516 DEBUG [9867]: Connecting to database... -- 15:28:56.516 DEBUG [9867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:28:56.516 SQL [9867]: pgsql_db_connect() -- 15:28:56.521 DEBUG [9867]: Database connection successful -- 15:28:56.521 INFO [9867]: _SERVER found -- 15:28:56.521 INFO [9867]: REMOTE_ADDR = 10.0.0.15 -- 15:28:56.521 INFO [9867]: SERVER_NAME = oameye.works.coregrade.com -- 15:28:56.521 INFO [9867]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.134398154.1590775970; ci_session=4eke9usgq8ks2o30embcdsgu868p3mm3 -- 15:28:56.521 INFO [9867]: QUERY_STRING = /member/index -- 15:28:56.521 INFO [9867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:28:56.562 INFO [9867]: COREGRADE is stopping... -- 15:28:56.562 DEBUG [9867]: Closing database connection -- 15:28:56.562 SQL [9867]: pgsql_close() -- 15:28:56.776 INFO [9867]: COREGRADE is starting... -- 15:28:56.777 INFO [9867]: Version from config: 1.0 -- 15:28:56.777 DEBUG [9867]: Connecting to database... -- 15:28:56.777 DEBUG [9867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:28:56.777 SQL [9867]: pgsql_db_connect() -- 15:28:56.781 DEBUG [9867]: Database connection successful -- 15:28:56.781 INFO [9867]: _SERVER found -- 15:28:56.781 INFO [9867]: REMOTE_ADDR = 10.0.0.15 -- 15:28:56.781 INFO [9867]: SERVER_NAME = oameye.works.coregrade.com -- 15:28:56.781 INFO [9867]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.134398154.1590775970; ci_session=4eke9usgq8ks2o30embcdsgu868p3mm3 -- 15:28:56.781 INFO [9867]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 15:28:56.781 INFO [9867]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 15:28:56.793 INFO [9867]: COREGRADE is stopping... -- 15:28:56.793 DEBUG [9867]: Closing database connection -- 15:28:56.793 SQL [9867]: pgsql_close() -- 18:08:57.091 INFO [9868]: COREGRADE is starting... -- 18:08:57.092 INFO [9868]: Version from config: 1.0 -- 18:08:57.092 DEBUG [9868]: Connecting to database... -- 18:08:57.092 DEBUG [9868]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:57.092 SQL [9868]: pgsql_db_connect() -- 18:08:57.097 DEBUG [9868]: Database connection successful -- 18:08:57.097 INFO [9868]: _SERVER found -- 18:08:57.097 INFO [9868]: REMOTE_ADDR = 10.0.0.15 -- 18:08:57.097 INFO [9868]: SERVER_NAME = oameye.works.coregrade.com -- 18:08:57.097 INFO [9868]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.134398154.1590775970 -- 18:08:57.097 INFO [9868]: QUERY_STRING = /auth -- 18:08:57.097 INFO [9868]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:57.139 INFO [9868]: COREGRADE is stopping... -- 18:08:57.139 DEBUG [9868]: Closing database connection -- 18:08:57.139 SQL [9868]: pgsql_close() -- 18:08:57.229 INFO [9868]: COREGRADE is starting... -- 18:08:57.229 INFO [9868]: Version from config: 1.0 -- 18:08:57.229 DEBUG [9868]: Connecting to database... -- 18:08:57.229 DEBUG [9868]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:08:57.229 SQL [9868]: pgsql_db_connect() -- 18:08:57.233 DEBUG [9868]: Database connection successful -- 18:08:57.233 INFO [9868]: _SERVER found -- 18:08:57.233 INFO [9868]: REMOTE_ADDR = 10.0.0.15 -- 18:08:57.233 INFO [9868]: SERVER_NAME = oameye.works.coregrade.com -- 18:08:57.233 INFO [9868]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.134398154.1590775970; ci_session=jr3oi99cv1l4gank0jt8jk0k5okjlc9u -- 18:08:57.233 INFO [9868]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 18:08:57.233 INFO [9868]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 18:08:57.244 INFO [9868]: COREGRADE is stopping... -- 18:08:57.244 DEBUG [9868]: Closing database connection -- 18:08:57.244 SQL [9868]: pgsql_close() -- 20:04:37.384 INFO [9869]: COREGRADE is starting... -- 20:04:37.385 INFO [9869]: Version from config: 1.0 -- 20:04:37.385 DEBUG [9869]: Connecting to database... -- 20:04:37.385 DEBUG [9869]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:04:37.385 SQL [9869]: pgsql_db_connect() -- 20:04:37.390 DEBUG [9869]: Database connection successful -- 20:04:37.390 INFO [9869]: _SERVER found -- 20:04:37.390 INFO [9869]: REMOTE_ADDR = 10.0.0.15 -- 20:04:37.390 INFO [9869]: SERVER_NAME = oameye.works.coregrade.com -- 20:04:37.390 INFO [9869]: QUERY_STRING = /solr/admin/info/system -- 20:04:37.390 INFO [9869]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 20:04:37.406 INFO [9869]: COREGRADE is stopping... -- 20:04:37.406 DEBUG [9869]: Closing database connection -- 20:04:37.406 SQL [9869]: pgsql_close() -- 20:14:37.257 INFO [19401]: COREGRADE is starting... -- 20:14:37.257 INFO [19401]: Version from config: 1.0 -- 20:14:37.257 DEBUG [19401]: Connecting to database... -- 20:14:37.257 DEBUG [19401]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:14:37.257 SQL [19401]: pgsql_db_connect() -- 20:14:37.261 DEBUG [19401]: Database connection successful -- 20:14:37.261 INFO [19401]: _SERVER found -- 20:14:37.261 INFO [19401]: REMOTE_ADDR = 10.0.0.15 -- 20:14:37.261 INFO [19401]: SERVER_NAME = oameye.works.coregrade.com -- 20:14:37.261 INFO [19401]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 20:14:37.261 INFO [19401]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 20:14:37.300 INFO [19401]: COREGRADE is stopping... -- 20:14:37.300 DEBUG [19401]: Closing database connection -- 20:14:37.300 SQL [19401]: pgsql_close() -- 20:14:37.381 INFO [19401]: COREGRADE is starting... -- 20:14:37.381 INFO [19401]: Version from config: 1.0 -- 20:14:37.381 DEBUG [19401]: Connecting to database... -- 20:14:37.381 DEBUG [19401]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:14:37.381 SQL [19401]: pgsql_db_connect() -- 20:14:37.385 DEBUG [19401]: Database connection successful -- 20:14:37.385 INFO [19401]: _SERVER found -- 20:14:37.385 INFO [19401]: REMOTE_ADDR = 10.0.0.15 -- 20:14:37.385 INFO [19401]: SERVER_NAME = oameye.works.coregrade.com -- 20:14:37.385 INFO [19401]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 20:14:37.385 INFO [19401]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 20:14:37.416 INFO [19401]: COREGRADE is stopping... -- 20:14:37.416 DEBUG [19401]: Closing database connection -- 20:14:37.416 SQL [19401]: pgsql_close() -- 20:32:44.945 INFO [20184]: COREGRADE is starting... -- 20:32:44.945 INFO [20184]: Version from config: 1.0 -- 20:32:44.945 DEBUG [20184]: Connecting to database... -- 20:32:44.945 DEBUG [20184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:32:44.945 SQL [20184]: pgsql_db_connect() -- 20:32:44.949 DEBUG [20184]: Database connection successful -- 20:32:44.949 INFO [20184]: _SERVER found -- 20:32:44.949 INFO [20184]: REMOTE_ADDR = 10.0.0.15 -- 20:32:44.949 INFO [20184]: SERVER_NAME = oameye.works.coregrade.com -- 20:32:44.949 INFO [20184]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 20:32:44.949 INFO [20184]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 20:32:44.989 INFO [20184]: COREGRADE is stopping... -- 20:32:44.989 DEBUG [20184]: Closing database connection -- 20:32:44.989 SQL [20184]: pgsql_close() -- 00:17:21.631 INFO [20186]: COREGRADE is starting... -- 00:17:21.632 INFO [20186]: Version from config: 1.0 -- 00:17:21.632 DEBUG [20186]: Connecting to database... -- 00:17:21.632 DEBUG [20186]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:17:21.632 SQL [20186]: pgsql_db_connect() -- 00:17:21.637 DEBUG [20186]: Database connection successful -- 00:17:21.637 INFO [20186]: _SERVER found -- 00:17:21.637 INFO [20186]: REMOTE_ADDR = 10.0.0.15 -- 00:17:21.637 INFO [20186]: SERVER_NAME = oameye.works.coregrade.com -- 00:17:21.637 INFO [20186]: QUERY_STRING = /api/jsonws/invoke -- 00:17:21.637 INFO [20186]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 00:17:21.652 INFO [20186]: COREGRADE is stopping... -- 00:17:21.652 DEBUG [20186]: Closing database connection -- 00:17:21.652 SQL [20186]: pgsql_close() -- 01:32:27.153 INFO [19400]: COREGRADE is starting... -- 01:32:27.153 INFO [19400]: Version from config: 1.0 -- 01:32:27.153 DEBUG [19400]: Connecting to database... -- 01:32:27.154 DEBUG [19400]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:32:27.154 SQL [19400]: pgsql_db_connect() -- 01:32:27.158 DEBUG [19400]: Database connection successful -- 01:32:27.158 INFO [19400]: _SERVER found -- 01:32:27.158 INFO [19400]: REMOTE_ADDR = 10.0.0.15 -- 01:32:27.158 INFO [19400]: SERVER_NAME = oameye.works.coregrade.com -- 01:32:27.158 INFO [19400]: QUERY_STRING = /.well-known/acme-challenge/kxD44V49XFchiqKYoD68mOCxo2JK4pJGXg_XStI6iqg -- 01:32:27.158 INFO [19400]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 01:32:27.174 INFO [19400]: COREGRADE is stopping... -- 01:32:27.174 DEBUG [19400]: Closing database connection -- 01:32:27.174 SQL [19400]: pgsql_close() -- 01:32:27.291 INFO [19398]: COREGRADE is starting... -- 01:32:27.291 INFO [19398]: Version from config: 1.0 -- 01:32:27.291 DEBUG [19398]: Connecting to database... -- 01:32:27.291 DEBUG [19398]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:32:27.291 SQL [19398]: pgsql_db_connect() -- 01:32:27.295 DEBUG [19398]: Database connection successful -- 01:32:27.295 INFO [19398]: _SERVER found -- 01:32:27.295 INFO [19398]: REMOTE_ADDR = 10.0.0.15 -- 01:32:27.295 INFO [19398]: SERVER_NAME = oameye.works.coregrade.com -- 01:32:27.295 INFO [19398]: QUERY_STRING = /.well-known/acme-challenge/kxD44V49XFchiqKYoD68mOCxo2JK4pJGXg_XStI6iqg -- 01:32:27.295 INFO [19398]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 01:32:27.310 INFO [19398]: COREGRADE is stopping... -- 01:32:27.310 DEBUG [19398]: Closing database connection -- 01:32:27.310 SQL [19398]: pgsql_close() -- 05:44:02.305 INFO [9867]: COREGRADE is starting... -- 05:44:02.306 INFO [9867]: Version from config: 1.0 -- 05:44:02.306 DEBUG [9867]: Connecting to database... -- 05:44:02.306 DEBUG [9867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:44:02.306 SQL [9867]: pgsql_db_connect() -- 05:44:02.311 DEBUG [9867]: Database connection successful -- 05:44:02.311 INFO [9867]: _SERVER found -- 05:44:02.311 INFO [9867]: REMOTE_ADDR = 10.0.0.15 -- 05:44:02.311 INFO [9867]: SERVER_NAME = oameye.works.coregrade.com -- 05:44:02.312 INFO [9867]: QUERY_STRING = -- 05:44:02.312 INFO [9867]: HTTP_X_FORWARDED_FOR = 42.48.59.213 -- 05:44:02.346 INFO [9867]: COREGRADE is stopping... -- 05:44:02.347 DEBUG [9867]: Closing database connection -- 05:44:02.347 SQL [9867]: pgsql_close() -- 06:22:42.006 INFO [9868]: COREGRADE is starting... -- 06:22:42.007 INFO [9868]: Version from config: 1.0 -- 06:22:42.007 DEBUG [9868]: Connecting to database... -- 06:22:42.007 DEBUG [9868]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:22:42.007 SQL [9868]: pgsql_db_connect() -- 06:22:42.011 DEBUG [9868]: Database connection successful -- 06:22:42.011 INFO [9868]: _SERVER found -- 06:22:42.011 INFO [9868]: REMOTE_ADDR = 10.0.0.15 -- 06:22:42.011 INFO [9868]: SERVER_NAME = oameye.works.coregrade.com -- 06:22:42.011 INFO [9868]: QUERY_STRING = /phpmyadmin -- 06:22:42.011 INFO [9868]: HTTP_X_FORWARDED_FOR = 218.76.8.2 -- 06:22:42.027 INFO [9868]: COREGRADE is stopping... -- 06:22:42.027 DEBUG [9868]: Closing database connection -- 06:22:42.027 SQL [9868]: pgsql_close() -- 06:22:55.203 INFO [9869]: COREGRADE is starting... -- 06:22:55.203 INFO [9869]: Version from config: 1.0 -- 06:22:55.203 DEBUG [9869]: Connecting to database... -- 06:22:55.203 DEBUG [9869]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:22:55.203 SQL [9869]: pgsql_db_connect() -- 06:22:55.208 DEBUG [9869]: Database connection successful -- 06:22:55.208 INFO [9869]: _SERVER found -- 06:22:55.208 INFO [9869]: REMOTE_ADDR = 10.0.0.15 -- 06:22:55.208 INFO [9869]: SERVER_NAME = oameye.works.coregrade.com -- 06:22:55.208 INFO [9869]: QUERY_STRING = -- 06:22:55.208 INFO [9869]: HTTP_X_FORWARDED_FOR = 218.76.8.2 -- 06:22:55.253 INFO [9869]: COREGRADE is stopping... -- 06:22:55.253 DEBUG [9869]: Closing database connection -- 06:22:55.253 SQL [9869]: pgsql_close() -- 09:19:02.528 INFO [19401]: COREGRADE is starting... -- 09:19:02.529 INFO [19401]: Version from config: 1.0 -- 09:19:02.529 DEBUG [19401]: Connecting to database... -- 09:19:02.529 DEBUG [19401]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:19:02.529 SQL [19401]: pgsql_db_connect() -- 09:19:02.534 DEBUG [19401]: Database connection successful -- 09:19:02.534 INFO [19401]: _SERVER found -- 09:19:02.534 INFO [19401]: REMOTE_ADDR = 10.0.0.15 -- 09:19:02.534 INFO [19401]: SERVER_NAME = oameye.works.coregrade.com -- 09:19:02.534 INFO [19401]: QUERY_STRING = /solr/admin/info/system -- 09:19:02.534 INFO [19401]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 09:19:02.551 INFO [19401]: COREGRADE is stopping... -- 09:19:02.551 DEBUG [19401]: Closing database connection -- 09:19:02.551 SQL [19401]: pgsql_close() -- 09:31:35.211 INFO [20184]: COREGRADE is starting... -- 09:31:35.211 INFO [20184]: Version from config: 1.0 -- 09:31:35.211 DEBUG [20184]: Connecting to database... -- 09:31:35.211 DEBUG [20184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:31:35.211 SQL [20184]: pgsql_db_connect() -- 09:31:35.216 DEBUG [20184]: Database connection successful -- 09:31:35.216 INFO [20184]: _SERVER found -- 09:31:35.216 INFO [20184]: REMOTE_ADDR = 10.0.0.15 -- 09:31:35.216 INFO [20184]: SERVER_NAME = oameye.works.coregrade.com -- 09:31:35.216 INFO [20184]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 09:31:35.216 INFO [20184]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 09:31:35.254 INFO [20184]: COREGRADE is stopping... -- 09:31:35.255 DEBUG [20184]: Closing database connection -- 09:31:35.255 SQL [20184]: pgsql_close() -- 09:31:59.576 INFO [20186]: COREGRADE is starting... -- 09:31:59.577 INFO [20186]: Version from config: 1.0 -- 09:31:59.577 DEBUG [20186]: Connecting to database... -- 09:31:59.577 DEBUG [20186]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:31:59.577 SQL [20186]: pgsql_db_connect() -- 09:31:59.581 DEBUG [20186]: Database connection successful -- 09:31:59.581 INFO [20186]: _SERVER found -- 09:31:59.581 INFO [20186]: REMOTE_ADDR = 10.0.0.15 -- 09:31:59.581 INFO [20186]: SERVER_NAME = oameye.works.coregrade.com -- 09:31:59.581 INFO [20186]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 09:31:59.581 INFO [20186]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 09:31:59.616 INFO [20186]: COREGRADE is stopping... -- 09:31:59.616 DEBUG [20186]: Closing database connection -- 09:31:59.616 SQL [20186]: pgsql_close() -- 09:52:12.708 INFO [19400]: COREGRADE is starting... -- 09:52:12.708 INFO [19400]: Version from config: 1.0 -- 09:52:12.708 DEBUG [19400]: Connecting to database... -- 09:52:12.708 DEBUG [19400]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:52:12.708 SQL [19400]: pgsql_db_connect() -- 09:52:12.713 DEBUG [19400]: Database connection successful -- 09:52:12.713 INFO [19400]: _SERVER found -- 09:52:12.713 INFO [19400]: REMOTE_ADDR = 10.0.0.15 -- 09:52:12.713 INFO [19400]: SERVER_NAME = oameye.works.coregrade.com -- 09:52:12.713 INFO [19400]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 09:52:12.713 INFO [19400]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 09:52:12.749 INFO [19400]: COREGRADE is stopping... -- 09:52:12.749 DEBUG [19400]: Closing database connection -- 09:52:12.749 SQL [19400]: pgsql_close() -- 13:58:18.173 INFO [19398]: COREGRADE is starting... -- 13:58:18.174 INFO [19398]: Version from config: 1.0 -- 13:58:18.174 DEBUG [19398]: Connecting to database... -- 13:58:18.174 DEBUG [19398]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:58:18.174 SQL [19398]: pgsql_db_connect() -- 13:58:18.178 DEBUG [19398]: Database connection successful -- 13:58:18.178 INFO [19398]: _SERVER found -- 13:58:18.178 INFO [19398]: REMOTE_ADDR = 10.0.0.15 -- 13:58:18.178 INFO [19398]: SERVER_NAME = oameye.works.coregrade.com -- 13:58:18.178 INFO [19398]: QUERY_STRING = /api/jsonws/invoke -- 13:58:18.178 INFO [19398]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 13:58:18.193 INFO [19398]: COREGRADE is stopping... -- 13:58:18.194 DEBUG [19398]: Closing database connection -- 13:58:18.194 SQL [19398]: pgsql_close() -- 17:38:08.622 INFO [19399]: COREGRADE is starting... -- 17:38:08.623 INFO [19399]: Version from config: 1.0 -- 17:38:08.623 DEBUG [19399]: Connecting to database... -- 17:38:08.623 DEBUG [19399]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:38:08.623 SQL [19399]: pgsql_db_connect() -- 17:38:08.628 DEBUG [19399]: Database connection successful -- 17:38:08.628 INFO [19399]: _SERVER found -- 17:38:08.628 INFO [19399]: REMOTE_ADDR = 10.0.0.15 -- 17:38:08.628 INFO [19399]: SERVER_NAME = oameye.works.coregrade.com -- 17:38:08.628 INFO [19399]: QUERY_STRING = /solr/admin/info/system -- 17:38:08.628 INFO [19399]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 17:38:08.643 INFO [19399]: COREGRADE is stopping... -- 17:38:08.643 DEBUG [19399]: Closing database connection -- 17:38:08.643 SQL [19399]: pgsql_close() -- 17:41:06.762 INFO [19402]: COREGRADE is starting... -- 17:41:06.762 INFO [19402]: Version from config: 1.0 -- 17:41:06.762 DEBUG [19402]: Connecting to database... -- 17:41:06.762 DEBUG [19402]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:06.762 SQL [19402]: pgsql_db_connect() -- 17:41:06.766 DEBUG [19402]: Database connection successful -- 17:41:06.766 INFO [19402]: _SERVER found -- 17:41:06.766 INFO [19402]: REMOTE_ADDR = 10.0.0.15 -- 17:41:06.766 INFO [19402]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:06.766 INFO [19402]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 17:41:06.766 INFO [19402]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 17:41:06.804 INFO [19402]: COREGRADE is stopping... -- 17:41:06.805 DEBUG [19402]: Closing database connection -- 17:41:06.805 SQL [19402]: pgsql_close() -- 17:41:07.531 INFO [19402]: COREGRADE is starting... -- 17:41:07.532 INFO [19402]: Version from config: 1.0 -- 17:41:07.532 DEBUG [19402]: Connecting to database... -- 17:41:07.532 DEBUG [19402]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:41:07.532 SQL [19402]: pgsql_db_connect() -- 17:41:07.536 DEBUG [19402]: Database connection successful -- 17:41:07.536 INFO [19402]: _SERVER found -- 17:41:07.536 INFO [19402]: REMOTE_ADDR = 10.0.0.15 -- 17:41:07.536 INFO [19402]: SERVER_NAME = oameye.works.coregrade.com -- 17:41:07.536 INFO [19402]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 17:41:07.536 INFO [19402]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 17:41:07.567 INFO [19402]: COREGRADE is stopping... -- 17:41:07.567 DEBUG [19402]: Closing database connection -- 17:41:07.567 SQL [19402]: pgsql_close() -- 17:47:39.937 INFO [9867]: COREGRADE is starting... -- 17:47:39.938 INFO [9867]: Version from config: 1.0 -- 17:47:39.938 DEBUG [9867]: Connecting to database... -- 17:47:39.938 DEBUG [9867]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:47:39.938 SQL [9867]: pgsql_db_connect() -- 17:47:39.942 DEBUG [9867]: Database connection successful -- 17:47:39.942 INFO [9867]: _SERVER found -- 17:47:39.942 INFO [9867]: REMOTE_ADDR = 10.0.0.15 -- 17:47:39.942 INFO [9867]: SERVER_NAME = oameye.works.coregrade.com -- 17:47:39.942 INFO [9867]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 17:47:39.942 INFO [9867]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 17:47:39.976 INFO [9867]: COREGRADE is stopping... -- 17:47:39.976 DEBUG [9867]: Closing database connection -- 17:47:39.976 SQL [9867]: pgsql_close() -- 19:05:58.448 INFO [9868]: COREGRADE is starting... -- 19:05:58.448 INFO [9868]: Version from config: 1.0 -- 19:05:58.448 DEBUG [9868]: Connecting to database... -- 19:05:58.448 DEBUG [9868]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:05:58.448 SQL [9868]: pgsql_db_connect() -- 19:05:58.453 DEBUG [9868]: Database connection successful -- 19:05:58.453 INFO [9868]: _SERVER found -- 19:05:58.453 INFO [9868]: REMOTE_ADDR = 10.0.0.15 -- 19:05:58.453 INFO [9868]: SERVER_NAME = oameye.works.coregrade.com -- 19:05:58.453 INFO [9868]: QUERY_STRING = /api/jsonws/invoke -- 19:05:58.453 INFO [9868]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 19:05:58.468 INFO [9868]: COREGRADE is stopping... -- 19:05:58.468 DEBUG [9868]: Closing database connection -- 19:05:58.468 SQL [9868]: pgsql_close() -- 22:19:40.369 INFO [9869]: COREGRADE is starting... -- 22:19:40.370 INFO [9869]: Version from config: 1.0 -- 22:19:40.370 DEBUG [9869]: Connecting to database... -- 22:19:40.370 DEBUG [9869]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:19:40.370 SQL [9869]: pgsql_db_connect() -- 22:19:40.375 DEBUG [9869]: Database connection successful -- 22:19:40.375 INFO [9869]: _SERVER found -- 22:19:40.375 INFO [9869]: REMOTE_ADDR = 10.0.0.15 -- 22:19:40.375 INFO [9869]: SERVER_NAME = oameye.works.coregrade.com -- 22:19:40.375 INFO [9869]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 22:19:40.375 INFO [9869]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 22:19:40.391 INFO [9869]: COREGRADE is stopping... -- 22:19:40.391 DEBUG [9869]: Closing database connection -- 22:19:40.391 SQL [9869]: pgsql_close() -- 22:53:17.505 INFO [19401]: COREGRADE is starting... -- 22:53:17.506 INFO [19401]: Version from config: 1.0 -- 22:53:17.506 DEBUG [19401]: Connecting to database... -- 22:53:17.506 DEBUG [19401]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:53:17.506 SQL [19401]: pgsql_db_connect() -- 22:53:17.510 DEBUG [19401]: Database connection successful -- 22:53:17.510 INFO [19401]: _SERVER found -- 22:53:17.510 INFO [19401]: REMOTE_ADDR = 10.0.0.15 -- 22:53:17.510 INFO [19401]: SERVER_NAME = oameye.works.coregrade.com -- 22:53:17.510 INFO [19401]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 22:53:17.510 INFO [19401]: HTTP_X_FORWARDED_FOR = 195.54.160.130 -- 22:53:17.525 INFO [19401]: COREGRADE is stopping... -- 22:53:17.525 DEBUG [19401]: Closing database connection -- 22:53:17.525 SQL [19401]: pgsql_close() -- 00:49:24.854 INFO [20184]: COREGRADE is starting... -- 00:49:24.855 INFO [20184]: Version from config: 1.0 -- 00:49:24.855 DEBUG [20184]: Connecting to database... -- 00:49:24.855 DEBUG [20184]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:49:24.855 SQL [20184]: pgsql_db_connect() -- 00:49:24.860 DEBUG [20184]: Database connection successful -- 00:49:24.860 INFO [20184]: _SERVER found -- 00:49:24.860 INFO [20184]: REMOTE_ADDR = 10.0.0.15 -- 00:49:24.860 INFO [20184]: SERVER_NAME = oameye.works.coregrade.com -- 00:49:24.860 INFO [20184]: QUERY_STRING = -- 00:49:24.860 INFO [20184]: HTTP_X_FORWARDED_FOR = 106.47.41.156 -- 00:49:24.900 INFO [20184]: COREGRADE is stopping... -- 00:49:24.900 DEBUG [20184]: Closing database connection -- 00:49:24.900 SQL [20184]: pgsql_close() -- 03:48:55.722 INFO [28397]: COREGRADE is starting... -- 03:48:55.723 INFO [28397]: Version from config: 1.0 -- 03:48:55.723 DEBUG [28397]: Connecting to database... -- 03:48:55.723 DEBUG [28397]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:55.723 SQL [28397]: pgsql_db_connect() -- 03:48:55.727 DEBUG [28397]: Database connection successful -- 03:48:55.727 INFO [28397]: _SERVER found -- 03:48:55.727 INFO [28397]: REMOTE_ADDR = 10.0.0.15 -- 03:48:55.727 INFO [28397]: SERVER_NAME = oameye.works.coregrade.com -- 03:48:55.727 INFO [28397]: QUERY_STRING = /.well-known/acme-challenge/57b_6PPreP7KXCXg_D7r6Gj4v1aUUkFirMVYKLhnA_U -- 03:48:55.727 INFO [28397]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 03:48:55.744 INFO [28397]: COREGRADE is stopping... -- 03:48:55.744 DEBUG [28397]: Closing database connection -- 03:48:55.744 SQL [28397]: pgsql_close() -- 03:48:55.968 INFO [28400]: COREGRADE is starting... -- 03:48:55.968 INFO [28400]: Version from config: 1.0 -- 03:48:55.968 DEBUG [28400]: Connecting to database... -- 03:48:55.968 DEBUG [28400]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:55.968 SQL [28400]: pgsql_db_connect() -- 03:48:55.972 DEBUG [28400]: Database connection successful -- 03:48:55.972 INFO [28400]: _SERVER found -- 03:48:55.972 INFO [28400]: REMOTE_ADDR = 10.0.0.15 -- 03:48:55.972 INFO [28400]: SERVER_NAME = oameye.works.coregrade.com -- 03:48:55.972 INFO [28400]: QUERY_STRING = /.well-known/acme-challenge/57b_6PPreP7KXCXg_D7r6Gj4v1aUUkFirMVYKLhnA_U -- 03:48:55.972 INFO [28400]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 03:48:55.989 INFO [28400]: COREGRADE is stopping... -- 03:48:55.989 DEBUG [28400]: Closing database connection -- 03:48:55.989 SQL [28400]: pgsql_close() -- 03:48:56.088 INFO [28399]: COREGRADE is starting... -- 03:48:56.088 INFO [28399]: Version from config: 1.0 -- 03:48:56.088 DEBUG [28399]: Connecting to database... -- 03:48:56.088 DEBUG [28399]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:56.088 SQL [28399]: pgsql_db_connect() -- 03:48:56.094 DEBUG [28399]: Database connection successful -- 03:48:56.094 INFO [28399]: _SERVER found -- 03:48:56.094 INFO [28399]: REMOTE_ADDR = 10.0.0.15 -- 03:48:56.094 INFO [28399]: SERVER_NAME = oameye.works.coregrade.com -- 03:48:56.094 INFO [28399]: QUERY_STRING = /.well-known/acme-challenge/57b_6PPreP7KXCXg_D7r6Gj4v1aUUkFirMVYKLhnA_U -- 03:48:56.094 INFO [28399]: HTTP_X_FORWARDED_FOR = 34.222.229.130 -- 03:48:56.111 INFO [28399]: COREGRADE is stopping... -- 03:48:56.111 DEBUG [28399]: Closing database connection -- 03:48:56.111 SQL [28399]: pgsql_close() -- 03:48:56.116 INFO [28399]: COREGRADE is starting... -- 03:48:56.116 INFO [28399]: Version from config: 1.0 -- 03:48:56.116 DEBUG [28399]: Connecting to database... -- 03:48:56.116 DEBUG [28399]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:48:56.116 SQL [28399]: pgsql_db_connect() -- 03:48:56.120 DEBUG [28399]: Database connection successful -- 03:48:56.120 INFO [28399]: _SERVER found -- 03:48:56.120 INFO [28399]: REMOTE_ADDR = 10.0.0.15 -- 03:48:56.120 INFO [28399]: SERVER_NAME = oameye.works.coregrade.com -- 03:48:56.120 INFO [28399]: QUERY_STRING = /.well-known/acme-challenge/57b_6PPreP7KXCXg_D7r6Gj4v1aUUkFirMVYKLhnA_U -- 03:48:56.120 INFO [28399]: HTTP_X_FORWARDED_FOR = 52.28.236.88 -- 03:48:56.132 INFO [28399]: COREGRADE is stopping... -- 03:48:56.132 DEBUG [28399]: Closing database connection -- 03:48:56.132 SQL [28399]: pgsql_close() -- 07:15:44.405 INFO [28401]: COREGRADE is starting... -- 07:15:44.406 INFO [28401]: Version from config: 1.0 -- 07:15:44.406 DEBUG [28401]: Connecting to database... -- 07:15:44.406 DEBUG [28401]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:15:44.406 SQL [28401]: pgsql_db_connect() -- 07:15:44.411 DEBUG [28401]: Database connection successful -- 07:15:44.411 INFO [28401]: _SERVER found -- 07:15:44.411 INFO [28401]: REMOTE_ADDR = 10.0.0.15 -- 07:15:44.411 INFO [28401]: SERVER_NAME = oameye.works.coregrade.com -- 07:15:44.411 INFO [28401]: QUERY_STRING = -- 07:15:44.411 INFO [28401]: HTTP_X_FORWARDED_FOR = 52.175.199.82 -- 07:15:44.459 INFO [28401]: COREGRADE is stopping... -- 07:15:44.459 DEBUG [28401]: Closing database connection -- 07:15:44.459 SQL [28401]: pgsql_close() -- 07:27:05.617 INFO [29004]: COREGRADE is starting... -- 07:27:05.617 INFO [29004]: Version from config: 1.0 -- 07:27:05.617 DEBUG [29004]: Connecting to database... -- 07:27:05.617 DEBUG [29004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:27:05.617 SQL [29004]: pgsql_db_connect() -- 07:27:05.622 DEBUG [29004]: Database connection successful -- 07:27:05.622 INFO [29004]: _SERVER found -- 07:27:05.622 INFO [29004]: REMOTE_ADDR = 10.0.0.15 -- 07:27:05.622 INFO [29004]: SERVER_NAME = oameye.works.coregrade.com -- 07:27:05.622 INFO [29004]: QUERY_STRING = /robots.txt -- 07:27:05.622 INFO [29004]: HTTP_X_FORWARDED_FOR = 66.249.70.88 -- 07:27:05.638 INFO [29004]: COREGRADE is stopping... -- 07:27:05.638 DEBUG [29004]: Closing database connection -- 07:27:05.638 SQL [29004]: pgsql_close() -- 07:27:05.733 INFO [29004]: COREGRADE is starting... -- 07:27:05.733 INFO [29004]: Version from config: 1.0 -- 07:27:05.733 DEBUG [29004]: Connecting to database... -- 07:27:05.733 DEBUG [29004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:27:05.733 SQL [29004]: pgsql_db_connect() -- 07:27:05.738 DEBUG [29004]: Database connection successful -- 07:27:05.738 INFO [29004]: _SERVER found -- 07:27:05.738 INFO [29004]: REMOTE_ADDR = 10.0.0.15 -- 07:27:05.738 INFO [29004]: SERVER_NAME = oameye.works.coregrade.com -- 07:27:05.738 INFO [29004]: QUERY_STRING = /home/terms -- 07:27:05.738 INFO [29004]: HTTP_X_FORWARDED_FOR = 66.249.70.86 -- 07:27:05.775 INFO [29004]: COREGRADE is stopping... -- 07:27:05.776 DEBUG [29004]: Closing database connection -- 07:27:05.776 SQL [29004]: pgsql_close() -- 09:33:05.411 INFO [29005]: COREGRADE is starting... -- 09:33:05.411 INFO [29005]: Version from config: 1.0 -- 09:33:05.411 DEBUG [29005]: Connecting to database... -- 09:33:05.411 DEBUG [29005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:33:05.411 SQL [29005]: pgsql_db_connect() -- 09:33:05.417 DEBUG [29005]: Database connection successful -- 09:33:05.417 INFO [29005]: _SERVER found -- 09:33:05.417 INFO [29005]: REMOTE_ADDR = 10.0.0.15 -- 09:33:05.417 INFO [29005]: SERVER_NAME = tokslaw.works.coregrade.com -- 09:33:05.417 INFO [29005]: QUERY_STRING = /wp-login.php -- 09:33:05.417 INFO [29005]: HTTP_X_FORWARDED_FOR = 142.4.209.40 -- 09:33:05.434 INFO [29005]: COREGRADE is stopping... -- 09:33:05.434 DEBUG [29005]: Closing database connection -- 09:33:05.434 SQL [29005]: pgsql_close() -- 11:48:37.323 INFO [29007]: COREGRADE is starting... -- 11:48:37.324 INFO [29007]: Version from config: 1.0 -- 11:48:37.324 DEBUG [29007]: Connecting to database... -- 11:48:37.324 DEBUG [29007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:48:37.324 SQL [29007]: pgsql_db_connect() -- 11:48:37.329 DEBUG [29007]: Database connection successful -- 11:48:37.329 INFO [29007]: _SERVER found -- 11:48:37.329 INFO [29007]: REMOTE_ADDR = 10.0.0.15 -- 11:48:37.329 INFO [29007]: SERVER_NAME = oameye.works.coregrade.com -- 11:48:37.329 INFO [29007]: QUERY_STRING = -- 11:48:37.329 INFO [29007]: HTTP_X_FORWARDED_FOR = 171.34.179.221 -- 11:48:37.377 INFO [29007]: COREGRADE is stopping... -- 11:48:37.377 DEBUG [29007]: Closing database connection -- 11:48:37.377 SQL [29007]: pgsql_close() -- 16:20:27.159 INFO [28397]: COREGRADE is starting... -- 16:20:27.160 INFO [28397]: Version from config: 1.0 -- 16:20:27.160 DEBUG [28397]: Connecting to database... -- 16:20:27.160 DEBUG [28397]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:20:27.160 SQL [28397]: pgsql_db_connect() -- 16:20:27.165 DEBUG [28397]: Database connection successful -- 16:20:27.165 INFO [28397]: _SERVER found -- 16:20:27.165 INFO [28397]: REMOTE_ADDR = 10.0.0.15 -- 16:20:27.165 INFO [28397]: SERVER_NAME = oameye.works.coregrade.com -- 16:20:27.165 INFO [28397]: QUERY_STRING = /axis2/axis2-admin/login -- 16:20:27.165 INFO [28397]: HTTP_X_FORWARDED_FOR = 103.106.246.18 -- 16:20:27.180 INFO [28397]: COREGRADE is stopping... -- 16:20:27.180 DEBUG [28397]: Closing database connection -- 16:20:27.180 SQL [28397]: pgsql_close() -- 18:48:31.974 INFO [28400]: COREGRADE is starting... -- 18:48:31.974 INFO [28400]: Version from config: 1.0 -- 18:48:31.974 DEBUG [28400]: Connecting to database... -- 18:48:31.974 DEBUG [28400]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 18:48:31.974 SQL [28400]: pgsql_db_connect() -- 18:48:31.979 DEBUG [28400]: Database connection successful -- 18:48:31.979 INFO [28400]: _SERVER found -- 18:48:31.979 INFO [28400]: REMOTE_ADDR = 10.0.0.15 -- 18:48:31.979 INFO [28400]: SERVER_NAME = oameye.works.coregrade.com -- 18:48:31.979 INFO [28400]: QUERY_STRING = -- 18:48:31.979 INFO [28400]: HTTP_X_FORWARDED_FOR = 66.249.70.86 -- 18:48:32.026 INFO [28400]: COREGRADE is stopping... -- 18:48:32.026 DEBUG [28400]: Closing database connection -- 18:48:32.026 SQL [28400]: pgsql_close() -- 19:25:39.796 INFO [28398]: COREGRADE is starting... -- 19:25:39.797 INFO [28398]: Version from config: 1.0 -- 19:25:39.797 DEBUG [28398]: Connecting to database... -- 19:25:39.797 DEBUG [28398]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:25:39.797 SQL [28398]: pgsql_db_connect() -- 19:25:39.802 DEBUG [28398]: Database connection successful -- 19:25:39.802 INFO [28398]: _SERVER found -- 19:25:39.802 INFO [28398]: REMOTE_ADDR = 10.0.0.15 -- 19:25:39.802 INFO [28398]: SERVER_NAME = oameye.works.coregrade.com -- 19:25:39.802 INFO [28398]: QUERY_STRING = /favicon.ico -- 19:25:39.802 INFO [28398]: HTTP_X_FORWARDED_FOR = 66.249.70.88 -- 19:25:39.821 INFO [28398]: COREGRADE is stopping... -- 19:25:39.821 DEBUG [28398]: Closing database connection -- 19:25:39.821 SQL [28398]: pgsql_close() -- 19:27:43.142 INFO [28399]: COREGRADE is starting... -- 19:27:43.142 INFO [28399]: Version from config: 1.0 -- 19:27:43.142 DEBUG [28399]: Connecting to database... -- 19:27:43.142 DEBUG [28399]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:43.142 SQL [28399]: pgsql_db_connect() -- 19:27:43.143 INFO [28401]: COREGRADE is starting... -- 19:27:43.144 INFO [28401]: Version from config: 1.0 -- 19:27:43.144 DEBUG [28401]: Connecting to database... -- 19:27:43.144 DEBUG [28401]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:27:43.144 SQL [28401]: pgsql_db_connect() -- 19:27:43.148 DEBUG [28401]: Database connection successful -- 19:27:43.148 INFO [28401]: _SERVER found -- 19:27:43.148 INFO [28401]: REMOTE_ADDR = 10.0.0.15 -- 19:27:43.148 INFO [28401]: SERVER_NAME = oameye.works.coregrade.com -- 19:27:43.148 INFO [28401]: QUERY_STRING = /robots.txt -- 19:27:43.148 INFO [28401]: HTTP_X_FORWARDED_FOR = 66.249.70.88 -- 19:27:43.166 INFO [28401]: COREGRADE is stopping... -- 19:27:43.166 DEBUG [28401]: Closing database connection -- 19:27:43.166 SQL [28401]: pgsql_close() -- 19:27:43.147 DEBUG [28399]: Database connection successful -- 19:27:43.147 INFO [28399]: _SERVER found -- 19:27:43.147 INFO [28399]: REMOTE_ADDR = 10.0.0.15 -- 19:27:43.147 INFO [28399]: SERVER_NAME = oameye.works.coregrade.com -- 19:27:43.147 INFO [28399]: QUERY_STRING = /favicon.ico -- 19:27:43.147 INFO [28399]: HTTP_X_FORWARDED_FOR = 66.249.70.84 -- 19:27:43.168 INFO [28399]: COREGRADE is stopping... -- 19:27:43.168 DEBUG [28399]: Closing database connection -- 19:27:43.168 SQL [28399]: pgsql_close() -- 19:57:26.509 INFO [29004]: COREGRADE is starting... -- 19:57:26.509 INFO [29004]: Version from config: 1.0 -- 19:57:26.509 DEBUG [29004]: Connecting to database... -- 19:57:26.509 DEBUG [29004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:57:26.509 SQL [29004]: pgsql_db_connect() -- 19:57:26.514 DEBUG [29004]: Database connection successful -- 19:57:26.514 INFO [29004]: _SERVER found -- 19:57:26.514 INFO [29004]: REMOTE_ADDR = 10.0.0.15 -- 19:57:26.514 INFO [29004]: SERVER_NAME = oameye.works.coregrade.com -- 19:57:26.514 INFO [29004]: HTTP_COOKIE = _ga=GA1.2.1467153953.1590429023 -- 19:57:26.514 INFO [29004]: QUERY_STRING = -- 19:57:26.514 INFO [29004]: HTTP_X_FORWARDED_FOR = 24.30.25.39 -- 19:57:26.555 INFO [29004]: COREGRADE is stopping... -- 19:57:26.555 DEBUG [29004]: Closing database connection -- 19:57:26.555 SQL [29004]: pgsql_close() -- 19:57:26.771 INFO [29004]: COREGRADE is starting... -- 19:57:26.771 INFO [29004]: Version from config: 1.0 -- 19:57:26.771 DEBUG [29004]: Connecting to database... -- 19:57:26.771 DEBUG [29004]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:57:26.771 SQL [29004]: pgsql_db_connect() -- 19:57:26.775 DEBUG [29004]: Database connection successful -- 19:57:26.775 INFO [29004]: _SERVER found -- 19:57:26.775 INFO [29004]: REMOTE_ADDR = 10.0.0.15 -- 19:57:26.775 INFO [29004]: SERVER_NAME = oameye.works.coregrade.com -- 19:57:26.775 INFO [29004]: HTTP_COOKIE = ci_session=9lr4shqput7conhglq20f1vidmifq09n; _ga=GA1.2.1467153953.1590429023 -- 19:57:26.775 INFO [29004]: QUERY_STRING = /assets/img/footer_1.jpg -- 19:57:26.775 INFO [29004]: HTTP_X_FORWARDED_FOR = 24.30.25.39 -- 19:57:26.787 INFO [29004]: COREGRADE is stopping... -- 19:57:26.787 DEBUG [29004]: Closing database connection -- 19:57:26.787 SQL [29004]: pgsql_close() -- 19:57:27.143 INFO [29006]: COREGRADE is starting... -- 19:57:27.144 INFO [29006]: Version from config: 1.0 -- 19:57:27.144 DEBUG [29006]: Connecting to database... -- 19:57:27.144 DEBUG [29006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:57:27.144 SQL [29006]: pgsql_db_connect() -- 19:57:27.148 DEBUG [29006]: Database connection successful -- 19:57:27.148 INFO [29006]: _SERVER found -- 19:57:27.148 INFO [29006]: REMOTE_ADDR = 10.0.0.15 -- 19:57:27.148 INFO [29006]: SERVER_NAME = oameye.works.coregrade.com -- 19:57:27.148 INFO [29006]: QUERY_STRING = /apple-touch-icon-precomposed.png -- 19:57:27.148 INFO [29006]: HTTP_X_FORWARDED_FOR = 24.30.25.39 -- 19:57:27.163 INFO [29006]: COREGRADE is stopping... -- 19:57:27.163 DEBUG [29006]: Closing database connection -- 19:57:27.163 SQL [29006]: pgsql_close() -- 19:57:27.188 INFO [29006]: COREGRADE is starting... -- 19:57:27.188 INFO [29006]: Version from config: 1.0 -- 19:57:27.188 DEBUG [29006]: Connecting to database... -- 19:57:27.188 DEBUG [29006]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:57:27.188 SQL [29006]: pgsql_db_connect() -- 19:57:27.192 DEBUG [29006]: Database connection successful -- 19:57:27.192 INFO [29006]: _SERVER found -- 19:57:27.192 INFO [29006]: REMOTE_ADDR = 10.0.0.15 -- 19:57:27.192 INFO [29006]: SERVER_NAME = oameye.works.coregrade.com -- 19:57:27.192 INFO [29006]: QUERY_STRING = /apple-touch-icon.png -- 19:57:27.192 INFO [29006]: HTTP_X_FORWARDED_FOR = 24.30.25.39 -- 19:57:27.203 INFO [29006]: COREGRADE is stopping... -- 19:57:27.203 DEBUG [29006]: Closing database connection -- 19:57:27.203 SQL [29006]: pgsql_close() -- 20:17:02.434 INFO [29007]: COREGRADE is starting... -- 20:17:02.434 INFO [29007]: Version from config: 1.0 -- 20:17:02.434 DEBUG [29007]: Connecting to database... -- 20:17:02.434 DEBUG [29007]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:17:02.434 SQL [29007]: pgsql_db_connect() -- 20:17:02.439 DEBUG [29007]: Database connection successful -- 20:17:02.439 INFO [29007]: _SERVER found -- 20:17:02.439 INFO [29007]: REMOTE_ADDR = 10.0.0.15 -- 20:17:02.439 INFO [29007]: SERVER_NAME = oameye.works.coregrade.com -- 20:17:02.439 INFO [29007]: QUERY_STRING = -- 20:17:02.439 INFO [29007]: HTTP_X_FORWARDED_FOR = 66.249.70.84 -- 20:17:02.477 INFO [29007]: COREGRADE is stopping... -- 20:17:02.477 DEBUG [29007]: Closing database connection -- 20:17:02.477 SQL [29007]: pgsql_close() -- 20:17:20.105 INFO [28400]: COREGRADE is starting... -- 20:17:20.105 INFO [28400]: Version from config: 1.0 -- 20:17:20.105 DEBUG [28400]: Connecting to database... -- 20:17:20.105 DEBUG [28400]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:17:20.105 SQL [28400]: pgsql_db_connect() -- 20:17:20.109 DEBUG [28400]: Database connection successful -- 20:17:20.109 INFO [28400]: _SERVER found -- 20:17:20.109 INFO [28400]: REMOTE_ADDR = 10.0.0.15 -- 20:17:20.109 INFO [28400]: SERVER_NAME = oameye.works.coregrade.com -- 20:17:20.109 INFO [28400]: QUERY_STRING = /favicon.ico -- 20:17:20.109 INFO [28400]: HTTP_X_FORWARDED_FOR = 66.249.70.84 -- 20:17:20.122 INFO [28400]: COREGRADE is stopping... -- 20:17:20.122 DEBUG [28400]: Closing database connection -- 20:17:20.122 SQL [28400]: pgsql_close() -- 20:29:46.686 INFO [28398]: COREGRADE is starting... -- 20:29:46.686 INFO [28398]: Version from config: 1.0 -- 20:29:46.686 DEBUG [28398]: Connecting to database... -- 20:29:46.686 DEBUG [28398]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:29:46.686 SQL [28398]: pgsql_db_connect() -- 20:29:46.690 DEBUG [28398]: Database connection successful -- 20:29:46.690 INFO [28398]: _SERVER found -- 20:29:46.690 INFO [28398]: REMOTE_ADDR = 10.0.0.15 -- 20:29:46.690 INFO [28398]: SERVER_NAME = tokslaw.works.coregrade.com -- 20:29:46.690 INFO [28398]: QUERY_STRING = -- 20:29:46.690 INFO [28398]: HTTP_X_FORWARDED_FOR = 161.35.129.143 -- 20:29:46.736 INFO [28398]: COREGRADE is stopping... -- 20:29:46.736 DEBUG [28398]: Closing database connection -- 20:29:46.736 SQL [28398]: pgsql_close() -- 02:02:04.899 INFO [28399]: COREGRADE is starting... -- 02:02:04.899 INFO [28399]: Version from config: 1.0 -- 02:02:04.899 DEBUG [28399]: Connecting to database... -- 02:02:04.899 DEBUG [28399]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:02:04.899 SQL [28399]: pgsql_db_connect() -- 02:02:04.904 DEBUG [28399]: Database connection successful -- 02:02:04.904 INFO [28399]: _SERVER found -- 02:02:04.904 INFO [28399]: REMOTE_ADDR = 10.0.0.15 -- 02:02:04.904 INFO [28399]: SERVER_NAME = oameye.works.coregrade.com -- 02:02:04.904 INFO [28399]: QUERY_STRING = /.well-known/acme-challenge/hPqBiZFIraKaEK2mKkBTjvnAH-oByRTEysFvoeb1UZk -- 02:02:04.904 INFO [28399]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 02:02:04.920 INFO [28399]: COREGRADE is stopping... -- 02:02:04.920 DEBUG [28399]: Closing database connection -- 02:02:04.920 SQL [28399]: pgsql_close() -- 02:02:05.122 INFO [29005]: COREGRADE is starting... -- 02:02:05.122 INFO [29005]: Version from config: 1.0 -- 02:02:05.122 DEBUG [29005]: Connecting to database... -- 02:02:05.122 DEBUG [29005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:02:05.122 SQL [29005]: pgsql_db_connect() -- 02:02:05.127 DEBUG [29005]: Database connection successful -- 02:02:05.127 INFO [29005]: _SERVER found -- 02:02:05.127 INFO [29005]: REMOTE_ADDR = 10.0.0.15 -- 02:02:05.127 INFO [29005]: SERVER_NAME = oameye.works.coregrade.com -- 02:02:05.127 INFO [29005]: QUERY_STRING = /.well-known/acme-challenge/hPqBiZFIraKaEK2mKkBTjvnAH-oByRTEysFvoeb1UZk -- 02:02:05.127 INFO [29005]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 02:02:05.143 INFO [29005]: COREGRADE is stopping... -- 02:02:05.143 DEBUG [29005]: Closing database connection -- 02:02:05.143 SQL [29005]: pgsql_close() -- 02:02:05.227 INFO [29005]: COREGRADE is starting... -- 02:02:05.227 INFO [29005]: Version from config: 1.0 -- 02:02:05.227 DEBUG [29005]: Connecting to database... -- 02:02:05.227 DEBUG [29005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:02:05.227 SQL [29005]: pgsql_db_connect() -- 02:02:05.231 DEBUG [29005]: Database connection successful -- 02:02:05.231 INFO [29005]: _SERVER found -- 02:02:05.231 INFO [29005]: REMOTE_ADDR = 10.0.0.15 -- 02:02:05.231 INFO [29005]: SERVER_NAME = oameye.works.coregrade.com -- 02:02:05.231 INFO [29005]: QUERY_STRING = /.well-known/acme-challenge/hPqBiZFIraKaEK2mKkBTjvnAH-oByRTEysFvoeb1UZk -- 02:02:05.231 INFO [29005]: HTTP_X_FORWARDED_FOR = 34.222.229.130 -- 02:02:05.243 INFO [29005]: COREGRADE is stopping... -- 02:02:05.243 DEBUG [29005]: Closing database connection -- 02:02:05.243 SQL [29005]: pgsql_close() -- 02:02:05.256 INFO [29005]: COREGRADE is starting... -- 02:02:05.257 INFO [29005]: Version from config: 1.0 -- 02:02:05.257 DEBUG [29005]: Connecting to database... -- 02:02:05.257 DEBUG [29005]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:02:05.257 SQL [29005]: pgsql_db_connect() -- 02:02:05.260 DEBUG [29005]: Database connection successful -- 02:02:05.260 INFO [29005]: _SERVER found -- 02:02:05.260 INFO [29005]: REMOTE_ADDR = 10.0.0.15 -- 02:02:05.260 INFO [29005]: SERVER_NAME = oameye.works.coregrade.com -- 02:02:05.260 INFO [29005]: QUERY_STRING = /.well-known/acme-challenge/hPqBiZFIraKaEK2mKkBTjvnAH-oByRTEysFvoeb1UZk -- 02:02:05.260 INFO [29005]: HTTP_X_FORWARDED_FOR = 18.196.96.172 -- 02:02:05.272 INFO [29005]: COREGRADE is stopping... -- 02:02:05.272 DEBUG [29005]: Closing database connection -- 02:02:05.272 SQL [29005]: pgsql_close() -- 06:07:44.537 INFO [21161]: COREGRADE is starting... -- 06:07:44.538 INFO [21161]: Version from config: 1.0 -- 06:07:44.538 DEBUG [21161]: Connecting to database... -- 06:07:44.538 DEBUG [21161]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:07:44.538 SQL [21161]: pgsql_db_connect() -- 06:07:44.543 DEBUG [21161]: Database connection successful -- 06:07:44.543 INFO [21161]: _SERVER found -- 06:07:44.543 INFO [21161]: REMOTE_ADDR = 10.0.0.15 -- 06:07:44.543 INFO [21161]: SERVER_NAME = oameye.works.coregrade.com -- 06:07:44.543 INFO [21161]: QUERY_STRING = -- 06:07:44.543 INFO [21161]: HTTP_X_FORWARDED_FOR = 64.225.60.139 -- 06:07:44.597 INFO [21161]: COREGRADE is stopping... -- 06:07:44.598 DEBUG [21161]: Closing database connection -- 06:07:44.598 SQL [21161]: pgsql_close() -- 07:30:57.392 INFO [21162]: COREGRADE is starting... -- 07:30:57.392 INFO [21162]: Version from config: 1.0 -- 07:30:57.392 DEBUG [21162]: Connecting to database... -- 07:30:57.392 DEBUG [21162]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:30:57.392 SQL [21162]: pgsql_db_connect() -- 07:30:57.397 DEBUG [21162]: Database connection successful -- 07:30:57.397 INFO [21162]: _SERVER found -- 07:30:57.397 INFO [21162]: REMOTE_ADDR = 10.0.0.15 -- 07:30:57.397 INFO [21162]: SERVER_NAME = oameye.works.coregrade.com -- 07:30:57.397 INFO [21162]: QUERY_STRING = /solr/admin/info/system -- 07:30:57.397 INFO [21162]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 07:30:57.413 INFO [21162]: COREGRADE is stopping... -- 07:30:57.413 DEBUG [21162]: Closing database connection -- 07:30:57.413 SQL [21162]: pgsql_close() -- 07:38:58.234 INFO [21163]: COREGRADE is starting... -- 07:38:58.235 INFO [21163]: Version from config: 1.0 -- 07:38:58.235 DEBUG [21163]: Connecting to database... -- 07:38:58.235 DEBUG [21163]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:38:58.235 SQL [21163]: pgsql_db_connect() -- 07:38:58.239 DEBUG [21163]: Database connection successful -- 07:38:58.239 INFO [21163]: _SERVER found -- 07:38:58.239 INFO [21163]: REMOTE_ADDR = 10.0.0.15 -- 07:38:58.239 INFO [21163]: SERVER_NAME = oameye.works.coregrade.com -- 07:38:58.239 INFO [21163]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 07:38:58.239 INFO [21163]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 07:38:58.289 INFO [21163]: COREGRADE is stopping... -- 07:38:58.289 DEBUG [21163]: Closing database connection -- 07:38:58.289 SQL [21163]: pgsql_close() -- 07:38:58.380 INFO [21164]: COREGRADE is starting... -- 07:38:58.380 INFO [21164]: Version from config: 1.0 -- 07:38:58.380 DEBUG [21164]: Connecting to database... -- 07:38:58.380 DEBUG [21164]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:38:58.380 SQL [21164]: pgsql_db_connect() -- 07:38:58.384 DEBUG [21164]: Database connection successful -- 07:38:58.384 INFO [21164]: _SERVER found -- 07:38:58.384 INFO [21164]: REMOTE_ADDR = 10.0.0.15 -- 07:38:58.384 INFO [21164]: SERVER_NAME = oameye.works.coregrade.com -- 07:38:58.384 INFO [21164]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 07:38:58.384 INFO [21164]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 07:38:58.429 INFO [21164]: COREGRADE is stopping... -- 07:38:58.429 DEBUG [21164]: Closing database connection -- 07:38:58.429 SQL [21164]: pgsql_close() -- 07:48:55.340 INFO [21165]: COREGRADE is starting... -- 07:48:55.341 INFO [21165]: Version from config: 1.0 -- 07:48:55.341 DEBUG [21165]: Connecting to database... -- 07:48:55.341 DEBUG [21165]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:48:55.341 SQL [21165]: pgsql_db_connect() -- 07:48:55.345 DEBUG [21165]: Database connection successful -- 07:48:55.345 INFO [21165]: _SERVER found -- 07:48:55.345 INFO [21165]: REMOTE_ADDR = 10.0.0.15 -- 07:48:55.345 INFO [21165]: SERVER_NAME = oameye.works.coregrade.com -- 07:48:55.345 INFO [21165]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 07:48:55.345 INFO [21165]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 07:48:55.391 INFO [21165]: COREGRADE is stopping... -- 07:48:55.391 DEBUG [21165]: Closing database connection -- 07:48:55.391 SQL [21165]: pgsql_close() -- 10:44:07.733 INFO [23793]: COREGRADE is starting... -- 10:44:07.733 INFO [23793]: Version from config: 1.0 -- 10:44:07.733 DEBUG [23793]: Connecting to database... -- 10:44:07.733 DEBUG [23793]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:44:07.733 SQL [23793]: pgsql_db_connect() -- 10:44:07.739 DEBUG [23793]: Database connection successful -- 10:44:07.739 INFO [23793]: _SERVER found -- 10:44:07.739 INFO [23793]: REMOTE_ADDR = 10.0.0.15 -- 10:44:07.739 INFO [23793]: SERVER_NAME = oameye.works.coregrade.com -- 10:44:07.739 INFO [23793]: QUERY_STRING = /api/jsonws/invoke -- 10:44:07.739 INFO [23793]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 10:44:07.755 INFO [23793]: COREGRADE is stopping... -- 10:44:07.755 DEBUG [23793]: Closing database connection -- 10:44:07.755 SQL [23793]: pgsql_close() -- 17:27:08.389 INFO [21162]: COREGRADE is starting... -- 17:27:08.390 INFO [21162]: Version from config: 1.0 -- 17:27:08.390 DEBUG [21162]: Connecting to database... -- 17:27:08.390 DEBUG [21162]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:27:08.390 SQL [21162]: pgsql_db_connect() -- 17:27:08.395 DEBUG [21162]: Database connection successful -- 17:27:08.395 INFO [21162]: _SERVER found -- 17:27:08.395 INFO [21162]: REMOTE_ADDR = 10.0.0.15 -- 17:27:08.395 INFO [21162]: SERVER_NAME = oameye.works.coregrade.com -- 17:27:08.395 INFO [21162]: QUERY_STRING = /solr/admin/info/system -- 17:27:08.395 INFO [21162]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 17:27:08.410 INFO [21162]: COREGRADE is stopping... -- 17:27:08.410 DEBUG [21162]: Closing database connection -- 17:27:08.410 SQL [21162]: pgsql_close() -- 17:28:06.523 INFO [25976]: COREGRADE is starting... -- 17:28:06.524 INFO [25976]: Version from config: 1.0 -- 17:28:06.524 DEBUG [25976]: Connecting to database... -- 17:28:06.524 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:28:06.524 SQL [25976]: pgsql_db_connect() -- 17:28:06.528 DEBUG [25976]: Database connection successful -- 17:28:06.528 INFO [25976]: _SERVER found -- 17:28:06.528 INFO [25976]: REMOTE_ADDR = 10.0.0.15 -- 17:28:06.528 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 17:28:06.528 INFO [25976]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 17:28:06.528 INFO [25976]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 17:28:06.577 INFO [25976]: COREGRADE is stopping... -- 17:28:06.577 DEBUG [25976]: Closing database connection -- 17:28:06.577 SQL [25976]: pgsql_close() -- 17:28:08.286 INFO [25976]: COREGRADE is starting... -- 17:28:08.286 INFO [25976]: Version from config: 1.0 -- 17:28:08.286 DEBUG [25976]: Connecting to database... -- 17:28:08.286 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:28:08.286 SQL [25976]: pgsql_db_connect() -- 17:28:08.291 DEBUG [25976]: Database connection successful -- 17:28:08.291 INFO [25976]: _SERVER found -- 17:28:08.291 INFO [25976]: REMOTE_ADDR = 10.0.0.15 -- 17:28:08.291 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 17:28:08.291 INFO [25976]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 17:28:08.291 INFO [25976]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 17:28:08.322 INFO [25976]: COREGRADE is stopping... -- 17:28:08.322 DEBUG [25976]: Closing database connection -- 17:28:08.322 SQL [25976]: pgsql_close() -- 17:29:56.913 INFO [21163]: COREGRADE is starting... -- 17:29:56.914 INFO [21163]: Version from config: 1.0 -- 17:29:56.914 DEBUG [21163]: Connecting to database... -- 17:29:56.914 DEBUG [21163]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:29:56.914 SQL [21163]: pgsql_db_connect() -- 17:29:56.919 DEBUG [21163]: Database connection successful -- 17:29:56.919 INFO [21163]: _SERVER found -- 17:29:56.919 INFO [21163]: REMOTE_ADDR = 10.0.0.15 -- 17:29:56.919 INFO [21163]: SERVER_NAME = oameye.works.coregrade.com -- 17:29:56.919 INFO [21163]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 17:29:56.919 INFO [21163]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 17:29:56.954 INFO [21163]: COREGRADE is stopping... -- 17:29:56.955 DEBUG [21163]: Closing database connection -- 17:29:56.955 SQL [21163]: pgsql_close() -- 17:57:53.907 INFO [21164]: COREGRADE is starting... -- 17:57:53.908 INFO [21164]: Version from config: 1.0 -- 17:57:53.908 DEBUG [21164]: Connecting to database... -- 17:57:53.908 DEBUG [21164]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:57:53.908 SQL [21164]: pgsql_db_connect() -- 17:57:53.912 DEBUG [21164]: Database connection successful -- 17:57:53.912 INFO [21164]: _SERVER found -- 17:57:53.912 INFO [21164]: REMOTE_ADDR = 10.0.0.15 -- 17:57:53.912 INFO [21164]: SERVER_NAME = oameye.works.coregrade.com -- 17:57:53.912 INFO [21164]: QUERY_STRING = /api/jsonws/invoke -- 17:57:53.912 INFO [21164]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 17:57:53.927 INFO [21164]: COREGRADE is stopping... -- 17:57:53.927 DEBUG [21164]: Closing database connection -- 17:57:53.927 SQL [21164]: pgsql_close() -- 19:02:10.306 INFO [21165]: COREGRADE is starting... -- 19:02:10.307 INFO [21165]: Version from config: 1.0 -- 19:02:10.307 DEBUG [21165]: Connecting to database... -- 19:02:10.307 DEBUG [21165]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:02:10.307 SQL [21165]: pgsql_db_connect() -- 19:02:10.311 DEBUG [21165]: Database connection successful -- 19:02:10.312 INFO [21165]: _SERVER found -- 19:02:10.312 INFO [21165]: REMOTE_ADDR = 10.0.0.15 -- 19:02:10.312 INFO [21165]: SERVER_NAME = oameye.works.coregrade.com -- 19:02:10.312 INFO [21165]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 19:02:10.312 INFO [21165]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 19:02:10.327 INFO [21165]: COREGRADE is stopping... -- 19:02:10.327 DEBUG [21165]: Closing database connection -- 19:02:10.327 SQL [21165]: pgsql_close() -- 19:15:43.595 INFO [23793]: COREGRADE is starting... -- 19:15:43.595 INFO [23793]: Version from config: 1.0 -- 19:15:43.595 DEBUG [23793]: Connecting to database... -- 19:15:43.595 DEBUG [23793]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:15:43.595 SQL [23793]: pgsql_db_connect() -- 19:15:43.599 DEBUG [23793]: Database connection successful -- 19:15:43.599 INFO [23793]: _SERVER found -- 19:15:43.599 INFO [23793]: REMOTE_ADDR = 10.0.0.15 -- 19:15:43.599 INFO [23793]: SERVER_NAME = oameye.works.coregrade.com -- 19:15:43.599 INFO [23793]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 19:15:43.599 INFO [23793]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 19:15:43.612 INFO [23793]: COREGRADE is stopping... -- 19:15:43.612 DEBUG [23793]: Closing database connection -- 19:15:43.612 SQL [23793]: pgsql_close() -- 03:45:59.465 INFO [21162]: COREGRADE is starting... -- 03:45:59.466 INFO [21162]: Version from config: 1.0 -- 03:45:59.466 DEBUG [21162]: Connecting to database... -- 03:45:59.466 DEBUG [21162]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:45:59.466 SQL [21162]: pgsql_db_connect() -- 03:45:59.471 DEBUG [21162]: Database connection successful -- 03:45:59.471 INFO [21162]: _SERVER found -- 03:45:59.471 INFO [21162]: REMOTE_ADDR = 10.0.0.15 -- 03:45:59.471 INFO [21162]: SERVER_NAME = oameye.works.coregrade.com -- 03:45:59.471 INFO [21162]: QUERY_STRING = -- 03:45:59.471 INFO [21162]: HTTP_X_FORWARDED_FOR = 185.216.140.83 -- 03:45:59.516 INFO [21162]: COREGRADE is stopping... -- 03:45:59.516 DEBUG [21162]: Closing database connection -- 03:45:59.516 SQL [21162]: pgsql_close() -- 05:36:10.524 INFO [25976]: COREGRADE is starting... -- 05:36:10.524 INFO [25976]: Version from config: 1.0 -- 05:36:10.524 DEBUG [25976]: Connecting to database... -- 05:36:10.524 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:36:10.524 SQL [25976]: pgsql_db_connect() -- 05:36:10.529 DEBUG [25976]: Database connection successful -- 05:36:10.529 INFO [25976]: _SERVER found -- 05:36:10.529 INFO [25976]: REMOTE_ADDR = 10.0.0.15 -- 05:36:10.529 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 05:36:10.529 INFO [25976]: QUERY_STRING = /.well-known/acme-challenge/23nG58MTGaSV68yaE_87Fl213kKY2EQyZ2Y0LZDSkm4 -- 05:36:10.529 INFO [25976]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 05:36:10.544 INFO [25976]: COREGRADE is stopping... -- 05:36:10.544 DEBUG [25976]: Closing database connection -- 05:36:10.544 SQL [25976]: pgsql_close() -- 05:36:10.709 INFO [21163]: COREGRADE is starting... -- 05:36:10.709 INFO [21163]: Version from config: 1.0 -- 05:36:10.709 DEBUG [21163]: Connecting to database... -- 05:36:10.709 DEBUG [21163]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:36:10.709 SQL [21163]: pgsql_db_connect() -- 05:36:10.713 DEBUG [21163]: Database connection successful -- 05:36:10.713 INFO [21163]: _SERVER found -- 05:36:10.713 INFO [21163]: REMOTE_ADDR = 10.0.0.15 -- 05:36:10.713 INFO [21163]: SERVER_NAME = oameye.works.coregrade.com -- 05:36:10.713 INFO [21163]: QUERY_STRING = /.well-known/acme-challenge/23nG58MTGaSV68yaE_87Fl213kKY2EQyZ2Y0LZDSkm4 -- 05:36:10.713 INFO [21163]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 05:36:10.727 INFO [21163]: COREGRADE is stopping... -- 05:36:10.727 DEBUG [21163]: Closing database connection -- 05:36:10.727 SQL [21163]: pgsql_close() -- 09:56:03.843 INFO [23793]: COREGRADE is starting... -- 09:56:03.843 INFO [23793]: Version from config: 1.0 -- 09:56:03.843 DEBUG [23793]: Connecting to database... -- 09:56:03.843 DEBUG [23793]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:56:03.843 SQL [23793]: pgsql_db_connect() -- 09:56:03.848 DEBUG [23793]: Database connection successful -- 09:56:03.848 INFO [23793]: _SERVER found -- 09:56:03.848 INFO [23793]: REMOTE_ADDR = 10.0.0.15 -- 09:56:03.848 INFO [23793]: SERVER_NAME = oameye.works.coregrade.com -- 09:56:03.848 INFO [23793]: QUERY_STRING = /solr/admin/info/system -- 09:56:03.848 INFO [23793]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 09:56:03.862 INFO [23793]: COREGRADE is stopping... -- 09:56:03.862 DEBUG [23793]: Closing database connection -- 09:56:03.862 SQL [23793]: pgsql_close() -- 10:02:49.370 INFO [21161]: COREGRADE is starting... -- 10:02:49.370 INFO [21161]: Version from config: 1.0 -- 10:02:49.370 DEBUG [21161]: Connecting to database... -- 10:02:49.370 DEBUG [21161]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:02:49.370 SQL [21161]: pgsql_db_connect() -- 10:02:49.374 DEBUG [21161]: Database connection successful -- 10:02:49.374 INFO [21161]: _SERVER found -- 10:02:49.374 INFO [21161]: REMOTE_ADDR = 10.0.0.15 -- 10:02:49.374 INFO [21161]: SERVER_NAME = oameye.works.coregrade.com -- 10:02:49.374 INFO [21161]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 10:02:49.374 INFO [21161]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 10:02:49.410 INFO [21161]: COREGRADE is stopping... -- 10:02:49.410 DEBUG [21161]: Closing database connection -- 10:02:49.410 SQL [21161]: pgsql_close() -- 10:02:50.157 INFO [21161]: COREGRADE is starting... -- 10:02:50.157 INFO [21161]: Version from config: 1.0 -- 10:02:50.157 DEBUG [21161]: Connecting to database... -- 10:02:50.157 DEBUG [21161]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:02:50.157 SQL [21161]: pgsql_db_connect() -- 10:02:50.162 DEBUG [21161]: Database connection successful -- 10:02:50.162 INFO [21161]: _SERVER found -- 10:02:50.162 INFO [21161]: REMOTE_ADDR = 10.0.0.15 -- 10:02:50.162 INFO [21161]: SERVER_NAME = oameye.works.coregrade.com -- 10:02:50.162 INFO [21161]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 10:02:50.162 INFO [21161]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 10:02:50.192 INFO [21161]: COREGRADE is stopping... -- 10:02:50.192 DEBUG [21161]: Closing database connection -- 10:02:50.192 SQL [21161]: pgsql_close() -- 10:15:44.267 INFO [21162]: COREGRADE is starting... -- 10:15:44.267 INFO [21162]: Version from config: 1.0 -- 10:15:44.267 DEBUG [21162]: Connecting to database... -- 10:15:44.267 DEBUG [21162]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:15:44.267 SQL [21162]: pgsql_db_connect() -- 10:15:44.272 DEBUG [21162]: Database connection successful -- 10:15:44.272 INFO [21162]: _SERVER found -- 10:15:44.272 INFO [21162]: REMOTE_ADDR = 10.0.0.15 -- 10:15:44.272 INFO [21162]: SERVER_NAME = oameye.works.coregrade.com -- 10:15:44.272 INFO [21162]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 10:15:44.272 INFO [21162]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 10:15:44.308 INFO [21162]: COREGRADE is stopping... -- 10:15:44.308 DEBUG [21162]: Closing database connection -- 10:15:44.308 SQL [21162]: pgsql_close() -- 12:45:39.305 INFO [21523]: COREGRADE is starting... -- 12:45:39.306 INFO [21523]: Version from config: 1.0 -- 12:45:39.306 DEBUG [21523]: Connecting to database... -- 12:45:39.306 DEBUG [21523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:45:39.306 SQL [21523]: pgsql_db_connect() -- 12:45:39.311 DEBUG [21523]: Database connection successful -- 12:45:39.311 INFO [21523]: _SERVER found -- 12:45:39.311 INFO [21523]: REMOTE_ADDR = 10.0.0.15 -- 12:45:39.311 INFO [21523]: SERVER_NAME = oameye.works.coregrade.com -- 12:45:39.311 INFO [21523]: QUERY_STRING = /api/jsonws/invoke -- 12:45:39.311 INFO [21523]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 12:45:39.328 INFO [21523]: COREGRADE is stopping... -- 12:45:39.328 DEBUG [21523]: Closing database connection -- 12:45:39.328 SQL [21523]: pgsql_close() -- 14:47:02.086 INFO [21524]: COREGRADE is starting... -- 14:47:02.086 INFO [21524]: Version from config: 1.0 -- 14:47:02.086 DEBUG [21524]: Connecting to database... -- 14:47:02.087 DEBUG [21524]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:47:02.087 SQL [21524]: pgsql_db_connect() -- 14:47:02.091 DEBUG [21524]: Database connection successful -- 14:47:02.091 INFO [21524]: _SERVER found -- 14:47:02.091 INFO [21524]: REMOTE_ADDR = 10.0.0.15 -- 14:47:02.091 INFO [21524]: SERVER_NAME = oameye.works.coregrade.com -- 14:47:02.091 INFO [21524]: QUERY_STRING = -- 14:47:02.091 INFO [21524]: HTTP_X_FORWARDED_FOR = 45.56.104.245 -- 14:47:02.141 INFO [21524]: COREGRADE is stopping... -- 14:47:02.141 DEBUG [21524]: Closing database connection -- 14:47:02.141 SQL [21524]: pgsql_close() -- 19:15:46.728 INFO [25976]: COREGRADE is starting... -- 19:15:46.728 INFO [25976]: Version from config: 1.0 -- 19:15:46.728 DEBUG [25976]: Connecting to database... -- 19:15:46.729 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:15:46.729 SQL [25976]: pgsql_db_connect() -- 19:15:46.733 DEBUG [25976]: Database connection successful -- 19:15:46.733 INFO [25976]: _SERVER found -- 19:15:46.733 INFO [25976]: REMOTE_ADDR = 10.0.0.15 -- 19:15:46.733 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 19:15:46.733 INFO [25976]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 19:15:46.733 INFO [25976]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 19:15:46.748 INFO [25976]: COREGRADE is stopping... -- 19:15:46.748 DEBUG [25976]: Closing database connection -- 19:15:46.748 SQL [25976]: pgsql_close() -- 21:17:23.478 INFO [21163]: COREGRADE is starting... -- 21:17:23.479 INFO [21163]: Version from config: 1.0 -- 21:17:23.479 DEBUG [21163]: Connecting to database... -- 21:17:23.479 DEBUG [21163]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:17:23.479 SQL [21163]: pgsql_db_connect() -- 21:17:23.484 DEBUG [21163]: Database connection successful -- 21:17:23.484 INFO [21163]: _SERVER found -- 21:17:23.484 INFO [21163]: REMOTE_ADDR = 10.0.0.15 -- 21:17:23.484 INFO [21163]: SERVER_NAME = oameye.works.coregrade.com -- 21:17:23.484 INFO [21163]: QUERY_STRING = /solr/admin/info/system -- 21:17:23.484 INFO [21163]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 21:17:23.498 INFO [21163]: COREGRADE is stopping... -- 21:17:23.498 DEBUG [21163]: Closing database connection -- 21:17:23.498 SQL [21163]: pgsql_close() -- 21:19:38.273 INFO [21164]: COREGRADE is starting... -- 21:19:38.273 INFO [21164]: Version from config: 1.0 -- 21:19:38.273 DEBUG [21164]: Connecting to database... -- 21:19:38.273 DEBUG [21164]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:19:38.273 SQL [21164]: pgsql_db_connect() -- 21:19:38.277 DEBUG [21164]: Database connection successful -- 21:19:38.277 INFO [21164]: _SERVER found -- 21:19:38.277 INFO [21164]: REMOTE_ADDR = 10.0.0.15 -- 21:19:38.277 INFO [21164]: SERVER_NAME = oameye.works.coregrade.com -- 21:19:38.277 INFO [21164]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 21:19:38.277 INFO [21164]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 21:19:38.313 INFO [21164]: COREGRADE is stopping... -- 21:19:38.313 DEBUG [21164]: Closing database connection -- 21:19:38.313 SQL [21164]: pgsql_close() -- 21:19:47.648 INFO [21165]: COREGRADE is starting... -- 21:19:47.648 INFO [21165]: Version from config: 1.0 -- 21:19:47.648 DEBUG [21165]: Connecting to database... -- 21:19:47.648 DEBUG [21165]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:19:47.648 SQL [21165]: pgsql_db_connect() -- 21:19:47.652 DEBUG [21165]: Database connection successful -- 21:19:47.652 INFO [21165]: _SERVER found -- 21:19:47.652 INFO [21165]: REMOTE_ADDR = 10.0.0.15 -- 21:19:47.652 INFO [21165]: SERVER_NAME = oameye.works.coregrade.com -- 21:19:47.652 INFO [21165]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 21:19:47.652 INFO [21165]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 21:19:47.689 INFO [21165]: COREGRADE is stopping... -- 21:19:47.689 DEBUG [21165]: Closing database connection -- 21:19:47.689 SQL [21165]: pgsql_close() -- 21:24:17.506 INFO [23793]: COREGRADE is starting... -- 21:24:17.506 INFO [23793]: Version from config: 1.0 -- 21:24:17.506 DEBUG [23793]: Connecting to database... -- 21:24:17.506 DEBUG [23793]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:24:17.506 SQL [23793]: pgsql_db_connect() -- 21:24:17.510 DEBUG [23793]: Database connection successful -- 21:24:17.510 INFO [23793]: _SERVER found -- 21:24:17.510 INFO [23793]: REMOTE_ADDR = 10.0.0.15 -- 21:24:17.510 INFO [23793]: SERVER_NAME = oameye.works.coregrade.com -- 21:24:17.510 INFO [23793]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 21:24:17.510 INFO [23793]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 21:24:17.552 INFO [23793]: COREGRADE is stopping... -- 21:24:17.552 DEBUG [23793]: Closing database connection -- 21:24:17.552 SQL [23793]: pgsql_close() -- 22:25:36.038 INFO [21161]: COREGRADE is starting... -- 22:25:36.038 INFO [21161]: Version from config: 1.0 -- 22:25:36.038 DEBUG [21161]: Connecting to database... -- 22:25:36.038 DEBUG [21161]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:25:36.038 SQL [21161]: pgsql_db_connect() -- 22:25:36.043 DEBUG [21161]: Database connection successful -- 22:25:36.043 INFO [21161]: _SERVER found -- 22:25:36.043 INFO [21161]: REMOTE_ADDR = 10.0.0.15 -- 22:25:36.043 INFO [21161]: SERVER_NAME = oameye.works.coregrade.com -- 22:25:36.043 INFO [21161]: QUERY_STRING = /api/jsonws/invoke -- 22:25:36.043 INFO [21161]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 22:25:36.057 INFO [21161]: COREGRADE is stopping... -- 22:25:36.057 DEBUG [21161]: Closing database connection -- 22:25:36.057 SQL [21161]: pgsql_close() -- 01:07:01.096 INFO [21162]: COREGRADE is starting... -- 01:07:01.097 INFO [21162]: Version from config: 1.0 -- 01:07:01.097 DEBUG [21162]: Connecting to database... -- 01:07:01.097 DEBUG [21162]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:07:01.097 SQL [21162]: pgsql_db_connect() -- 01:07:01.102 DEBUG [21162]: Database connection successful -- 01:07:01.102 INFO [21162]: _SERVER found -- 01:07:01.102 INFO [21162]: REMOTE_ADDR = 10.0.0.15 -- 01:07:01.102 INFO [21162]: SERVER_NAME = oameye.works.coregrade.com -- 01:07:01.102 INFO [21162]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 01:07:01.102 INFO [21162]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 01:07:01.117 INFO [21162]: COREGRADE is stopping... -- 01:07:01.118 DEBUG [21162]: Closing database connection -- 01:07:01.118 SQL [21162]: pgsql_close() -- 01:30:18.924 INFO [21523]: COREGRADE is starting... -- 01:30:18.925 INFO [21523]: Version from config: 1.0 -- 01:30:18.925 DEBUG [21523]: Connecting to database... -- 01:30:18.925 DEBUG [21523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:30:18.925 SQL [21523]: pgsql_db_connect() -- 01:30:18.930 DEBUG [21523]: Database connection successful -- 01:30:18.930 INFO [21523]: _SERVER found -- 01:30:18.930 INFO [21523]: REMOTE_ADDR = 10.0.0.15 -- 01:30:18.930 INFO [21523]: SERVER_NAME = oameye.works.coregrade.com -- 01:30:18.930 INFO [21523]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 01:30:18.930 INFO [21523]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 01:30:18.945 INFO [21523]: COREGRADE is stopping... -- 01:30:18.945 DEBUG [21523]: Closing database connection -- 01:30:18.945 SQL [21523]: pgsql_close() -- 02:32:31.592 INFO [21524]: COREGRADE is starting... -- 02:32:31.592 INFO [21524]: Version from config: 1.0 -- 02:32:31.592 DEBUG [21524]: Connecting to database... -- 02:32:31.592 DEBUG [21524]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:32:31.592 SQL [21524]: pgsql_db_connect() -- 02:32:31.597 DEBUG [21524]: Database connection successful -- 02:32:31.597 INFO [21524]: _SERVER found -- 02:32:31.597 INFO [21524]: REMOTE_ADDR = 10.0.0.15 -- 02:32:31.597 INFO [21524]: SERVER_NAME = oameye.works.coregrade.com -- 02:32:31.597 INFO [21524]: QUERY_STRING = /.well-known/acme-challenge/LBEf5O8s-dkQB-8Zt5fVUxM23nNq8mQGsR1r2RG0zUA -- 02:32:31.597 INFO [21524]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 02:32:31.610 INFO [21524]: COREGRADE is stopping... -- 02:32:31.610 DEBUG [21524]: Closing database connection -- 02:32:31.610 SQL [21524]: pgsql_close() -- 02:32:31.883 INFO [21163]: COREGRADE is starting... -- 02:32:31.884 INFO [21163]: Version from config: 1.0 -- 02:32:31.884 DEBUG [21163]: Connecting to database... -- 02:32:31.884 DEBUG [21163]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:32:31.884 SQL [21163]: pgsql_db_connect() -- 02:32:31.888 DEBUG [21163]: Database connection successful -- 02:32:31.888 INFO [21163]: _SERVER found -- 02:32:31.888 INFO [21163]: REMOTE_ADDR = 10.0.0.15 -- 02:32:31.888 INFO [21163]: SERVER_NAME = oameye.works.coregrade.com -- 02:32:31.888 INFO [21163]: QUERY_STRING = /.well-known/acme-challenge/LBEf5O8s-dkQB-8Zt5fVUxM23nNq8mQGsR1r2RG0zUA -- 02:32:31.888 INFO [21163]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 02:32:31.903 INFO [21163]: COREGRADE is stopping... -- 02:32:31.903 DEBUG [21163]: Closing database connection -- 02:32:31.903 SQL [21163]: pgsql_close() -- 02:32:31.928 INFO [23793]: COREGRADE is starting... -- 02:32:31.929 INFO [23793]: Version from config: 1.0 -- 02:32:31.929 DEBUG [23793]: Connecting to database... -- 02:32:31.929 DEBUG [23793]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:32:31.929 SQL [23793]: pgsql_db_connect() -- 02:32:31.933 DEBUG [23793]: Database connection successful -- 02:32:31.933 INFO [23793]: _SERVER found -- 02:32:31.933 INFO [23793]: REMOTE_ADDR = 10.0.0.15 -- 02:32:31.933 INFO [23793]: SERVER_NAME = oameye.works.coregrade.com -- 02:32:31.933 INFO [23793]: QUERY_STRING = /.well-known/acme-challenge/LBEf5O8s-dkQB-8Zt5fVUxM23nNq8mQGsR1r2RG0zUA -- 02:32:31.933 INFO [23793]: HTTP_X_FORWARDED_FOR = 34.209.232.166 -- 02:32:31.945 INFO [23793]: COREGRADE is stopping... -- 02:32:31.945 DEBUG [23793]: Closing database connection -- 02:32:31.945 SQL [23793]: pgsql_close() -- 02:32:31.946 INFO [21163]: COREGRADE is starting... -- 02:32:31.946 INFO [21163]: Version from config: 1.0 -- 02:32:31.946 DEBUG [21163]: Connecting to database... -- 02:32:31.946 DEBUG [21163]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:32:31.946 SQL [21163]: pgsql_db_connect() -- 02:32:31.950 DEBUG [21163]: Database connection successful -- 02:32:31.950 INFO [21163]: _SERVER found -- 02:32:31.950 INFO [21163]: REMOTE_ADDR = 10.0.0.15 -- 02:32:31.950 INFO [21163]: SERVER_NAME = oameye.works.coregrade.com -- 02:32:31.950 INFO [21163]: QUERY_STRING = /.well-known/acme-challenge/LBEf5O8s-dkQB-8Zt5fVUxM23nNq8mQGsR1r2RG0zUA -- 02:32:31.950 INFO [21163]: HTTP_X_FORWARDED_FOR = 18.196.96.172 -- 02:32:31.961 INFO [21163]: COREGRADE is stopping... -- 02:32:31.961 DEBUG [21163]: Closing database connection -- 02:32:31.961 SQL [21163]: pgsql_close() -- 04:47:29.150 INFO [21162]: COREGRADE is starting... -- 04:47:29.150 INFO [21162]: Version from config: 1.0 -- 04:47:29.150 DEBUG [21162]: Connecting to database... -- 04:47:29.150 DEBUG [21162]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:47:29.150 SQL [21162]: pgsql_db_connect() -- 04:47:29.155 DEBUG [21162]: Database connection successful -- 04:47:29.155 INFO [21162]: _SERVER found -- 04:47:29.155 INFO [21162]: REMOTE_ADDR = 10.0.0.15 -- 04:47:29.155 INFO [21162]: SERVER_NAME = oameye.works.coregrade.com -- 04:47:29.155 INFO [21162]: QUERY_STRING = -- 04:47:29.155 INFO [21162]: HTTP_X_FORWARDED_FOR = 128.14.180.110 -- 04:47:29.193 INFO [21162]: COREGRADE is stopping... -- 04:47:29.193 DEBUG [21162]: Closing database connection -- 04:47:29.193 SQL [21162]: pgsql_close() -- 08:28:59.989 INFO [21523]: COREGRADE is starting... -- 08:28:59.990 INFO [21523]: Version from config: 1.0 -- 08:28:59.990 DEBUG [21523]: Connecting to database... -- 08:28:59.990 DEBUG [21523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:28:59.990 SQL [21523]: pgsql_db_connect() -- 08:28:59.995 DEBUG [21523]: Database connection successful -- 08:28:59.995 INFO [21523]: _SERVER found -- 08:28:59.995 INFO [21523]: REMOTE_ADDR = 10.0.0.15 -- 08:28:59.995 INFO [21523]: SERVER_NAME = oameye.works.coregrade.com -- 08:28:59.995 INFO [21523]: HTTP_COOKIE = _ga=GA1.2.1467153953.1590429023 -- 08:28:59.995 INFO [21523]: QUERY_STRING = -- 08:28:59.995 INFO [21523]: HTTP_X_FORWARDED_FOR = 24.30.25.39 -- 08:29:00.043 INFO [21523]: COREGRADE is stopping... -- 08:29:00.043 DEBUG [21523]: Closing database connection -- 08:29:00.043 SQL [21523]: pgsql_close() -- 08:29:00.490 INFO [21523]: COREGRADE is starting... -- 08:29:00.490 INFO [21523]: Version from config: 1.0 -- 08:29:00.491 DEBUG [21523]: Connecting to database... -- 08:29:00.491 DEBUG [21523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:29:00.491 SQL [21523]: pgsql_db_connect() -- 08:29:00.495 DEBUG [21523]: Database connection successful -- 08:29:00.495 INFO [21523]: _SERVER found -- 08:29:00.495 INFO [21523]: REMOTE_ADDR = 10.0.0.15 -- 08:29:00.495 INFO [21523]: SERVER_NAME = oameye.works.coregrade.com -- 08:29:00.495 INFO [21523]: HTTP_COOKIE = ci_session=85n7qs3h3veecg6nknnhp278ucqe80jv; _ga=GA1.2.1467153953.1590429023 -- 08:29:00.495 INFO [21523]: QUERY_STRING = /assets/img/footer_1.jpg -- 08:29:00.495 INFO [21523]: HTTP_X_FORWARDED_FOR = 24.30.25.39 -- 08:29:00.507 INFO [21523]: COREGRADE is stopping... -- 08:29:00.508 DEBUG [21523]: Closing database connection -- 08:29:00.508 SQL [21523]: pgsql_close() -- 10:34:22.708 INFO [19442]: COREGRADE is starting... -- 10:34:22.708 INFO [19442]: Version from config: 1.0 -- 10:34:22.708 DEBUG [19442]: Connecting to database... -- 10:34:22.708 DEBUG [19442]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:34:22.708 SQL [19442]: pgsql_db_connect() -- 10:34:22.713 DEBUG [19442]: Database connection successful -- 10:34:22.713 INFO [19442]: _SERVER found -- 10:34:22.713 INFO [19442]: REMOTE_ADDR = 10.0.0.15 -- 10:34:22.713 INFO [19442]: SERVER_NAME = oameye.works.coregrade.com -- 10:34:22.713 INFO [19442]: QUERY_STRING = /solr/admin/info/system -- 10:34:22.713 INFO [19442]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 10:34:22.729 INFO [19442]: COREGRADE is stopping... -- 10:34:22.729 DEBUG [19442]: Closing database connection -- 10:34:22.729 SQL [19442]: pgsql_close() -- 10:36:03.059 INFO [19443]: COREGRADE is starting... -- 10:36:03.060 INFO [19443]: Version from config: 1.0 -- 10:36:03.060 DEBUG [19443]: Connecting to database... -- 10:36:03.060 DEBUG [19443]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:36:03.060 SQL [19443]: pgsql_db_connect() -- 10:36:03.064 DEBUG [19443]: Database connection successful -- 10:36:03.064 INFO [19443]: _SERVER found -- 10:36:03.064 INFO [19443]: REMOTE_ADDR = 10.0.0.15 -- 10:36:03.064 INFO [19443]: SERVER_NAME = oameye.works.coregrade.com -- 10:36:03.064 INFO [19443]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 10:36:03.064 INFO [19443]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 10:36:03.108 INFO [19443]: COREGRADE is stopping... -- 10:36:03.108 DEBUG [19443]: Closing database connection -- 10:36:03.108 SQL [19443]: pgsql_close() -- 10:36:11.127 INFO [21524]: COREGRADE is starting... -- 10:36:11.127 INFO [21524]: Version from config: 1.0 -- 10:36:11.127 DEBUG [21524]: Connecting to database... -- 10:36:11.127 DEBUG [21524]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:36:11.127 SQL [21524]: pgsql_db_connect() -- 10:36:11.131 DEBUG [21524]: Database connection successful -- 10:36:11.131 INFO [21524]: _SERVER found -- 10:36:11.131 INFO [21524]: REMOTE_ADDR = 10.0.0.15 -- 10:36:11.131 INFO [21524]: SERVER_NAME = oameye.works.coregrade.com -- 10:36:11.131 INFO [21524]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 10:36:11.131 INFO [21524]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 10:36:11.165 INFO [21524]: COREGRADE is stopping... -- 10:36:11.165 DEBUG [21524]: Closing database connection -- 10:36:11.165 SQL [21524]: pgsql_close() -- 10:40:44.465 INFO [21164]: COREGRADE is starting... -- 10:40:44.465 INFO [21164]: Version from config: 1.0 -- 10:40:44.465 DEBUG [21164]: Connecting to database... -- 10:40:44.465 DEBUG [21164]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:40:44.465 SQL [21164]: pgsql_db_connect() -- 10:40:44.469 DEBUG [21164]: Database connection successful -- 10:40:44.469 INFO [21164]: _SERVER found -- 10:40:44.469 INFO [21164]: REMOTE_ADDR = 10.0.0.15 -- 10:40:44.469 INFO [21164]: SERVER_NAME = oameye.works.coregrade.com -- 10:40:44.469 INFO [21164]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 10:40:44.469 INFO [21164]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 10:40:44.504 INFO [21164]: COREGRADE is stopping... -- 10:40:44.504 DEBUG [21164]: Closing database connection -- 10:40:44.504 SQL [21164]: pgsql_close() -- 11:33:03.081 INFO [21165]: COREGRADE is starting... -- 11:33:03.082 INFO [21165]: Version from config: 1.0 -- 11:33:03.082 DEBUG [21165]: Connecting to database... -- 11:33:03.082 DEBUG [21165]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:33:03.082 SQL [21165]: pgsql_db_connect() -- 11:33:03.086 DEBUG [21165]: Database connection successful -- 11:33:03.086 INFO [21165]: _SERVER found -- 11:33:03.086 INFO [21165]: REMOTE_ADDR = 10.0.0.15 -- 11:33:03.086 INFO [21165]: SERVER_NAME = oameye.works.coregrade.com -- 11:33:03.086 INFO [21165]: QUERY_STRING = /api/jsonws/invoke -- 11:33:03.086 INFO [21165]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 11:33:03.100 INFO [21165]: COREGRADE is stopping... -- 11:33:03.100 DEBUG [21165]: Closing database connection -- 11:33:03.100 SQL [21165]: pgsql_close() -- 13:48:21.713 INFO [23793]: COREGRADE is starting... -- 13:48:21.714 INFO [23793]: Version from config: 1.0 -- 13:48:21.714 DEBUG [23793]: Connecting to database... -- 13:48:21.714 DEBUG [23793]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:48:21.714 SQL [23793]: pgsql_db_connect() -- 13:48:21.719 DEBUG [23793]: Database connection successful -- 13:48:21.719 INFO [23793]: _SERVER found -- 13:48:21.719 INFO [23793]: REMOTE_ADDR = 10.0.0.15 -- 13:48:21.719 INFO [23793]: SERVER_NAME = oameye.works.coregrade.com -- 13:48:21.719 INFO [23793]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 13:48:21.719 INFO [23793]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 13:48:21.733 INFO [23793]: COREGRADE is stopping... -- 13:48:21.733 DEBUG [23793]: Closing database connection -- 13:48:21.733 SQL [23793]: pgsql_close() -- 14:07:10.501 INFO [21163]: COREGRADE is starting... -- 14:07:10.502 INFO [21163]: Version from config: 1.0 -- 14:07:10.502 DEBUG [21163]: Connecting to database... -- 14:07:10.502 DEBUG [21163]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:07:10.502 SQL [21163]: pgsql_db_connect() -- 14:07:10.506 DEBUG [21163]: Database connection successful -- 14:07:10.506 INFO [21163]: _SERVER found -- 14:07:10.506 INFO [21163]: REMOTE_ADDR = 10.0.0.15 -- 14:07:10.506 INFO [21163]: SERVER_NAME = oameye.works.coregrade.com -- 14:07:10.506 INFO [21163]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 14:07:10.506 INFO [21163]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 14:07:10.521 INFO [21163]: COREGRADE is stopping... -- 14:07:10.521 DEBUG [21163]: Closing database connection -- 14:07:10.521 SQL [21163]: pgsql_close() -- 00:31:14.724 INFO [25976]: COREGRADE is starting... -- 00:31:14.725 INFO [25976]: Version from config: 1.0 -- 00:31:14.725 DEBUG [25976]: Connecting to database... -- 00:31:14.725 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:31:14.725 SQL [25976]: pgsql_db_connect() -- 00:31:14.730 DEBUG [25976]: Database connection successful -- 00:31:14.730 INFO [25976]: _SERVER found -- 00:31:14.730 INFO [25976]: REMOTE_ADDR = 10.0.0.15 -- 00:31:14.730 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 00:31:14.730 INFO [25976]: QUERY_STRING = /.well-known/acme-challenge/g1vVrgyRDKB4_2W7GsyUOTZWmEWmHdBs7K7lAMJl1q0 -- 00:31:14.730 INFO [25976]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 00:31:14.745 INFO [25976]: COREGRADE is stopping... -- 00:31:14.745 DEBUG [25976]: Closing database connection -- 00:31:14.745 SQL [25976]: pgsql_close() -- 00:31:14.868 INFO [25976]: COREGRADE is starting... -- 00:31:14.868 INFO [25976]: Version from config: 1.0 -- 00:31:14.869 DEBUG [25976]: Connecting to database... -- 00:31:14.869 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:31:14.869 SQL [25976]: pgsql_db_connect() -- 00:31:14.873 DEBUG [25976]: Database connection successful -- 00:31:14.873 INFO [25976]: _SERVER found -- 00:31:14.873 INFO [25976]: REMOTE_ADDR = 10.0.0.15 -- 00:31:14.873 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 00:31:14.873 INFO [25976]: QUERY_STRING = /.well-known/acme-challenge/g1vVrgyRDKB4_2W7GsyUOTZWmEWmHdBs7K7lAMJl1q0 -- 00:31:14.873 INFO [25976]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 00:31:14.885 INFO [25976]: COREGRADE is stopping... -- 00:31:14.885 DEBUG [25976]: Closing database connection -- 00:31:14.885 SQL [25976]: pgsql_close() -- 00:31:14.998 INFO [25976]: COREGRADE is starting... -- 00:31:14.998 INFO [25976]: Version from config: 1.0 -- 00:31:14.998 DEBUG [25976]: Connecting to database... -- 00:31:14.998 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:31:14.998 SQL [25976]: pgsql_db_connect() -- 00:31:15.002 DEBUG [25976]: Database connection successful -- 00:31:15.002 INFO [25976]: _SERVER found -- 00:31:15.002 INFO [25976]: REMOTE_ADDR = 10.0.0.15 -- 00:31:15.002 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 00:31:15.003 INFO [25976]: QUERY_STRING = /.well-known/acme-challenge/g1vVrgyRDKB4_2W7GsyUOTZWmEWmHdBs7K7lAMJl1q0 -- 00:31:15.003 INFO [25976]: HTTP_X_FORWARDED_FOR = 18.196.96.172 -- 00:31:15.014 INFO [25976]: COREGRADE is stopping... -- 00:31:15.014 DEBUG [25976]: Closing database connection -- 00:31:15.014 SQL [25976]: pgsql_close() -- 01:50:25.708 INFO [21523]: COREGRADE is starting... -- 01:50:25.709 INFO [21523]: Version from config: 1.0 -- 01:50:25.709 DEBUG [21523]: Connecting to database... -- 01:50:25.709 DEBUG [21523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:50:25.709 SQL [21523]: pgsql_db_connect() -- 01:50:25.714 DEBUG [21523]: Database connection successful -- 01:50:25.714 INFO [21523]: _SERVER found -- 01:50:25.714 INFO [21523]: REMOTE_ADDR = 10.0.0.15 -- 01:50:25.714 INFO [21523]: SERVER_NAME = oameye.works.coregrade.com -- 01:50:25.714 INFO [21523]: QUERY_STRING = /solr/admin/info/system -- 01:50:25.714 INFO [21523]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 01:50:25.729 INFO [21523]: COREGRADE is stopping... -- 01:50:25.729 DEBUG [21523]: Closing database connection -- 01:50:25.729 SQL [21523]: pgsql_close() -- 01:54:22.874 INFO [19442]: COREGRADE is starting... -- 01:54:22.874 INFO [19442]: Version from config: 1.0 -- 01:54:22.874 DEBUG [19442]: Connecting to database... -- 01:54:22.874 DEBUG [19442]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:54:22.874 SQL [19442]: pgsql_db_connect() -- 01:54:22.878 DEBUG [19442]: Database connection successful -- 01:54:22.878 INFO [19442]: _SERVER found -- 01:54:22.878 INFO [19442]: REMOTE_ADDR = 10.0.0.15 -- 01:54:22.878 INFO [19442]: SERVER_NAME = oameye.works.coregrade.com -- 01:54:22.878 INFO [19442]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 01:54:22.878 INFO [19442]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 01:54:22.922 INFO [19442]: COREGRADE is stopping... -- 01:54:22.922 DEBUG [19442]: Closing database connection -- 01:54:22.922 SQL [19442]: pgsql_close() -- 01:54:24.304 INFO [19442]: COREGRADE is starting... -- 01:54:24.304 INFO [19442]: Version from config: 1.0 -- 01:54:24.305 DEBUG [19442]: Connecting to database... -- 01:54:24.305 DEBUG [19442]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:54:24.305 SQL [19442]: pgsql_db_connect() -- 01:54:24.309 DEBUG [19442]: Database connection successful -- 01:54:24.309 INFO [19442]: _SERVER found -- 01:54:24.309 INFO [19442]: REMOTE_ADDR = 10.0.0.15 -- 01:54:24.309 INFO [19442]: SERVER_NAME = oameye.works.coregrade.com -- 01:54:24.309 INFO [19442]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 01:54:24.309 INFO [19442]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 01:54:24.340 INFO [19442]: COREGRADE is stopping... -- 01:54:24.340 DEBUG [19442]: Closing database connection -- 01:54:24.340 SQL [19442]: pgsql_close() -- 02:05:02.146 INFO [19443]: COREGRADE is starting... -- 02:05:02.146 INFO [19443]: Version from config: 1.0 -- 02:05:02.146 DEBUG [19443]: Connecting to database... -- 02:05:02.146 DEBUG [19443]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:05:02.146 SQL [19443]: pgsql_db_connect() -- 02:05:02.150 DEBUG [19443]: Database connection successful -- 02:05:02.150 INFO [19443]: _SERVER found -- 02:05:02.150 INFO [19443]: REMOTE_ADDR = 10.0.0.15 -- 02:05:02.150 INFO [19443]: SERVER_NAME = oameye.works.coregrade.com -- 02:05:02.150 INFO [19443]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 02:05:02.150 INFO [19443]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 02:05:02.187 INFO [19443]: COREGRADE is stopping... -- 02:05:02.187 DEBUG [19443]: Closing database connection -- 02:05:02.187 SQL [19443]: pgsql_close() -- 04:01:27.533 INFO [21524]: COREGRADE is starting... -- 04:01:27.533 INFO [21524]: Version from config: 1.0 -- 04:01:27.533 DEBUG [21524]: Connecting to database... -- 04:01:27.533 DEBUG [21524]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:01:27.533 SQL [21524]: pgsql_db_connect() -- 04:01:27.537 DEBUG [21524]: Database connection successful -- 04:01:27.537 INFO [21524]: _SERVER found -- 04:01:27.537 INFO [21524]: REMOTE_ADDR = 10.0.0.15 -- 04:01:27.537 INFO [21524]: SERVER_NAME = oameye.works.coregrade.com -- 04:01:27.537 INFO [21524]: QUERY_STRING = /api/jsonws/invoke -- 04:01:27.537 INFO [21524]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 04:01:27.551 INFO [21524]: COREGRADE is stopping... -- 04:01:27.551 DEBUG [21524]: Closing database connection -- 04:01:27.551 SQL [21524]: pgsql_close() -- 04:20:24.163 INFO [21164]: COREGRADE is starting... -- 04:20:24.163 INFO [21164]: Version from config: 1.0 -- 04:20:24.163 DEBUG [21164]: Connecting to database... -- 04:20:24.164 DEBUG [21164]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:20:24.164 SQL [21164]: pgsql_db_connect() -- 04:20:24.168 DEBUG [21164]: Database connection successful -- 04:20:24.168 INFO [21164]: _SERVER found -- 04:20:24.168 INFO [21164]: REMOTE_ADDR = 10.0.0.15 -- 04:20:24.168 INFO [21164]: SERVER_NAME = oameye.works.coregrade.com -- 04:20:24.168 INFO [21164]: QUERY_STRING = /wp-login.php -- 04:20:24.168 INFO [21164]: HTTP_X_FORWARDED_FOR = 171.6.170.209 -- 04:20:24.182 INFO [21164]: COREGRADE is stopping... -- 04:20:24.182 DEBUG [21164]: Closing database connection -- 04:20:24.182 SQL [21164]: pgsql_close() -- 05:57:21.803 INFO [21165]: COREGRADE is starting... -- 05:57:21.803 INFO [21165]: Version from config: 1.0 -- 05:57:21.803 DEBUG [21165]: Connecting to database... -- 05:57:21.804 DEBUG [21165]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:57:21.804 SQL [21165]: pgsql_db_connect() -- 05:57:21.808 DEBUG [21165]: Database connection successful -- 05:57:21.808 INFO [21165]: _SERVER found -- 05:57:21.808 INFO [21165]: REMOTE_ADDR = 10.0.0.15 -- 05:57:21.808 INFO [21165]: SERVER_NAME = oameye.works.coregrade.com -- 05:57:21.808 INFO [21165]: QUERY_STRING = -- 05:57:21.808 INFO [21165]: HTTP_X_FORWARDED_FOR = 69.164.219.185 -- 05:57:21.847 INFO [21165]: COREGRADE is stopping... -- 05:57:21.847 DEBUG [21165]: Closing database connection -- 05:57:21.847 SQL [21165]: pgsql_close() -- 14:03:03.404 INFO [23793]: COREGRADE is starting... -- 14:03:03.404 INFO [23793]: Version from config: 1.0 -- 14:03:03.404 DEBUG [23793]: Connecting to database... -- 14:03:03.404 DEBUG [23793]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:03:03.405 SQL [23793]: pgsql_db_connect() -- 14:03:03.409 DEBUG [23793]: Database connection successful -- 14:03:03.409 INFO [23793]: _SERVER found -- 14:03:03.409 INFO [23793]: REMOTE_ADDR = 10.0.0.15 -- 14:03:03.409 INFO [23793]: SERVER_NAME = oameye.works.coregrade.com -- 14:03:03.409 INFO [23793]: QUERY_STRING = /solr/admin/info/system -- 14:03:03.409 INFO [23793]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 14:03:03.422 INFO [23793]: COREGRADE is stopping... -- 14:03:03.422 DEBUG [23793]: Closing database connection -- 14:03:03.422 SQL [23793]: pgsql_close() -- 14:10:14.909 INFO [21163]: COREGRADE is starting... -- 14:10:14.910 INFO [21163]: Version from config: 1.0 -- 14:10:14.910 DEBUG [21163]: Connecting to database... -- 14:10:14.910 DEBUG [21163]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:14.910 SQL [21163]: pgsql_db_connect() -- 14:10:14.914 DEBUG [21163]: Database connection successful -- 14:10:14.914 INFO [21163]: _SERVER found -- 14:10:14.914 INFO [21163]: REMOTE_ADDR = 10.0.0.15 -- 14:10:14.914 INFO [21163]: SERVER_NAME = oameye.works.coregrade.com -- 14:10:14.914 INFO [21163]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 14:10:14.914 INFO [21163]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 14:10:14.950 INFO [21163]: COREGRADE is stopping... -- 14:10:14.950 DEBUG [21163]: Closing database connection -- 14:10:14.950 SQL [21163]: pgsql_close() -- 14:10:16.414 INFO [21163]: COREGRADE is starting... -- 14:10:16.414 INFO [21163]: Version from config: 1.0 -- 14:10:16.414 DEBUG [21163]: Connecting to database... -- 14:10:16.414 DEBUG [21163]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:10:16.414 SQL [21163]: pgsql_db_connect() -- 14:10:16.418 DEBUG [21163]: Database connection successful -- 14:10:16.418 INFO [21163]: _SERVER found -- 14:10:16.418 INFO [21163]: REMOTE_ADDR = 10.0.0.15 -- 14:10:16.418 INFO [21163]: SERVER_NAME = oameye.works.coregrade.com -- 14:10:16.418 INFO [21163]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 14:10:16.418 INFO [21163]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 14:10:16.449 INFO [21163]: COREGRADE is stopping... -- 14:10:16.449 DEBUG [21163]: Closing database connection -- 14:10:16.449 SQL [21163]: pgsql_close() -- 14:23:42.153 INFO [21162]: COREGRADE is starting... -- 14:23:42.154 INFO [21162]: Version from config: 1.0 -- 14:23:42.154 DEBUG [21162]: Connecting to database... -- 14:23:42.154 DEBUG [21162]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:23:42.154 SQL [21162]: pgsql_db_connect() -- 14:23:42.158 DEBUG [21162]: Database connection successful -- 14:23:42.158 INFO [21162]: _SERVER found -- 14:23:42.158 INFO [21162]: REMOTE_ADDR = 10.0.0.15 -- 14:23:42.158 INFO [21162]: SERVER_NAME = oameye.works.coregrade.com -- 14:23:42.158 INFO [21162]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 14:23:42.158 INFO [21162]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 14:23:42.195 INFO [21162]: COREGRADE is stopping... -- 14:23:42.195 DEBUG [21162]: Closing database connection -- 14:23:42.195 SQL [21162]: pgsql_close() -- 22:23:57.577 INFO [25976]: COREGRADE is starting... -- 22:23:57.577 INFO [25976]: Version from config: 1.0 -- 22:23:57.577 DEBUG [25976]: Connecting to database... -- 22:23:57.577 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:23:57.577 SQL [25976]: pgsql_db_connect() -- 22:23:57.582 DEBUG [25976]: Database connection successful -- 22:23:57.582 INFO [25976]: _SERVER found -- 22:23:57.582 INFO [25976]: REMOTE_ADDR = 10.0.0.15 -- 22:23:57.582 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 22:23:57.582 INFO [25976]: QUERY_STRING = -- 22:23:57.582 INFO [25976]: HTTP_X_FORWARDED_FOR = 18.231.61.20 -- 22:23:57.618 INFO [25976]: COREGRADE is stopping... -- 22:23:57.619 DEBUG [25976]: Closing database connection -- 22:23:57.619 SQL [25976]: pgsql_close() -- 01:05:33.368 INFO [21523]: COREGRADE is starting... -- 01:05:33.369 INFO [21523]: Version from config: 1.0 -- 01:05:33.369 DEBUG [21523]: Connecting to database... -- 01:05:33.369 DEBUG [21523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:05:33.369 SQL [21523]: pgsql_db_connect() -- 01:05:33.374 DEBUG [21523]: Database connection successful -- 01:05:33.374 INFO [21523]: _SERVER found -- 01:05:33.374 INFO [21523]: REMOTE_ADDR = 10.0.0.15 -- 01:05:33.374 INFO [21523]: SERVER_NAME = oameye.works.coregrade.com -- 01:05:33.374 INFO [21523]: QUERY_STRING = /solr/admin/info/system -- 01:05:33.374 INFO [21523]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 01:05:33.387 INFO [21523]: COREGRADE is stopping... -- 01:05:33.387 DEBUG [21523]: Closing database connection -- 01:05:33.387 SQL [21523]: pgsql_close() -- 01:10:15.991 INFO [19442]: COREGRADE is starting... -- 01:10:15.991 INFO [19442]: Version from config: 1.0 -- 01:10:15.991 DEBUG [19442]: Connecting to database... -- 01:10:15.991 DEBUG [19442]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:10:15.991 SQL [19442]: pgsql_db_connect() -- 01:10:15.996 DEBUG [19442]: Database connection successful -- 01:10:15.996 INFO [19442]: _SERVER found -- 01:10:15.996 INFO [19442]: REMOTE_ADDR = 10.0.0.15 -- 01:10:15.996 INFO [19442]: SERVER_NAME = oameye.works.coregrade.com -- 01:10:15.996 INFO [19442]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 01:10:15.996 INFO [19442]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 01:10:16.031 INFO [19442]: COREGRADE is stopping... -- 01:10:16.031 DEBUG [19442]: Closing database connection -- 01:10:16.031 SQL [19442]: pgsql_close() -- 01:10:16.591 INFO [19442]: COREGRADE is starting... -- 01:10:16.591 INFO [19442]: Version from config: 1.0 -- 01:10:16.591 DEBUG [19442]: Connecting to database... -- 01:10:16.591 DEBUG [19442]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:10:16.591 SQL [19442]: pgsql_db_connect() -- 01:10:16.595 DEBUG [19442]: Database connection successful -- 01:10:16.595 INFO [19442]: _SERVER found -- 01:10:16.595 INFO [19442]: REMOTE_ADDR = 10.0.0.15 -- 01:10:16.595 INFO [19442]: SERVER_NAME = oameye.works.coregrade.com -- 01:10:16.595 INFO [19442]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 01:10:16.595 INFO [19442]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 01:10:16.626 INFO [19442]: COREGRADE is stopping... -- 01:10:16.626 DEBUG [19442]: Closing database connection -- 01:10:16.626 SQL [19442]: pgsql_close() -- 01:21:06.359 INFO [19443]: COREGRADE is starting... -- 01:21:06.359 INFO [19443]: Version from config: 1.0 -- 01:21:06.359 DEBUG [19443]: Connecting to database... -- 01:21:06.359 DEBUG [19443]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:21:06.359 SQL [19443]: pgsql_db_connect() -- 01:21:06.364 DEBUG [19443]: Database connection successful -- 01:21:06.364 INFO [19443]: _SERVER found -- 01:21:06.364 INFO [19443]: REMOTE_ADDR = 10.0.0.15 -- 01:21:06.364 INFO [19443]: SERVER_NAME = oameye.works.coregrade.com -- 01:21:06.364 INFO [19443]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 01:21:06.364 INFO [19443]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 01:21:06.397 INFO [19443]: COREGRADE is stopping... -- 01:21:06.397 DEBUG [19443]: Closing database connection -- 01:21:06.397 SQL [19443]: pgsql_close() -- 01:52:48.661 INFO [21524]: COREGRADE is starting... -- 01:52:48.661 INFO [21524]: Version from config: 1.0 -- 01:52:48.661 DEBUG [21524]: Connecting to database... -- 01:52:48.661 DEBUG [21524]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:52:48.661 SQL [21524]: pgsql_db_connect() -- 01:52:48.666 DEBUG [21524]: Database connection successful -- 01:52:48.666 INFO [21524]: _SERVER found -- 01:52:48.666 INFO [21524]: REMOTE_ADDR = 10.0.0.15 -- 01:52:48.666 INFO [21524]: SERVER_NAME = oameye.works.coregrade.com -- 01:52:48.666 INFO [21524]: QUERY_STRING = /.well-known/acme-challenge/o8MwFyfpG3_f7PxW7kXr-sFmFjG2xhlo4vOz4RBJtcg -- 01:52:48.666 INFO [21524]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 01:52:48.681 INFO [21524]: COREGRADE is stopping... -- 01:52:48.681 DEBUG [21524]: Closing database connection -- 01:52:48.681 SQL [21524]: pgsql_close() -- 01:52:48.726 INFO [21524]: COREGRADE is starting... -- 01:52:48.727 INFO [21524]: Version from config: 1.0 -- 01:52:48.727 DEBUG [21524]: Connecting to database... -- 01:52:48.727 DEBUG [21524]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:52:48.727 SQL [21524]: pgsql_db_connect() -- 01:52:48.732 DEBUG [21524]: Database connection successful -- 01:52:48.732 INFO [21524]: _SERVER found -- 01:52:48.732 INFO [21524]: REMOTE_ADDR = 10.0.0.15 -- 01:52:48.732 INFO [21524]: SERVER_NAME = oameye.works.coregrade.com -- 01:52:48.732 INFO [21524]: QUERY_STRING = /.well-known/acme-challenge/o8MwFyfpG3_f7PxW7kXr-sFmFjG2xhlo4vOz4RBJtcg -- 01:52:48.732 INFO [21524]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 01:52:48.743 INFO [21524]: COREGRADE is stopping... -- 01:52:48.744 DEBUG [21524]: Closing database connection -- 01:52:48.744 SQL [21524]: pgsql_close() -- 02:59:14.244 INFO [21165]: COREGRADE is starting... -- 02:59:14.244 INFO [21165]: Version from config: 1.0 -- 02:59:14.244 DEBUG [21165]: Connecting to database... -- 02:59:14.244 DEBUG [21165]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:59:14.244 SQL [21165]: pgsql_db_connect() -- 02:59:14.248 DEBUG [21165]: Database connection successful -- 02:59:14.248 INFO [21165]: _SERVER found -- 02:59:14.248 INFO [21165]: REMOTE_ADDR = 10.0.0.15 -- 02:59:14.248 INFO [21165]: SERVER_NAME = tokslaw.works.coregrade.com -- 02:59:14.248 INFO [21165]: QUERY_STRING = -- 02:59:14.248 INFO [21165]: HTTP_X_FORWARDED_FOR = 52.207.230.224 -- 02:59:14.286 INFO [21165]: COREGRADE is stopping... -- 02:59:14.286 DEBUG [21165]: Closing database connection -- 02:59:14.286 SQL [21165]: pgsql_close() -- 03:16:58.785 INFO [23793]: COREGRADE is starting... -- 03:16:58.785 INFO [23793]: Version from config: 1.0 -- 03:16:58.785 DEBUG [23793]: Connecting to database... -- 03:16:58.785 DEBUG [23793]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:16:58.785 SQL [23793]: pgsql_db_connect() -- 03:16:58.790 DEBUG [23793]: Database connection successful -- 03:16:58.790 INFO [23793]: _SERVER found -- 03:16:58.790 INFO [23793]: REMOTE_ADDR = 10.0.0.15 -- 03:16:58.790 INFO [23793]: SERVER_NAME = oameye.works.coregrade.com -- 03:16:58.790 INFO [23793]: QUERY_STRING = /api/jsonws/invoke -- 03:16:58.790 INFO [23793]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 03:16:58.802 INFO [23793]: COREGRADE is stopping... -- 03:16:58.803 DEBUG [23793]: Closing database connection -- 03:16:58.803 SQL [23793]: pgsql_close() -- 08:03:49.037 INFO [25976]: COREGRADE is starting... -- 08:03:49.037 INFO [25976]: Version from config: 1.0 -- 08:03:49.037 DEBUG [25976]: Connecting to database... -- 08:03:49.037 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:03:49.037 SQL [25976]: pgsql_db_connect() -- 08:03:49.042 DEBUG [25976]: Database connection successful -- 08:03:49.042 INFO [25976]: _SERVER found -- 08:03:49.042 INFO [25976]: REMOTE_ADDR = 10.0.0.15 -- 08:03:49.042 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 08:03:49.042 INFO [25976]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 08:03:49.042 INFO [25976]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 08:03:49.059 INFO [25976]: COREGRADE is stopping... -- 08:03:49.059 DEBUG [25976]: Closing database connection -- 08:03:49.059 SQL [25976]: pgsql_close() -- 08:57:31.751 INFO [21523]: COREGRADE is starting... -- 08:57:31.751 INFO [21523]: Version from config: 1.0 -- 08:57:31.751 DEBUG [21523]: Connecting to database... -- 08:57:31.751 DEBUG [21523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:57:31.751 SQL [21523]: pgsql_db_connect() -- 08:57:31.756 DEBUG [21523]: Database connection successful -- 08:57:31.756 INFO [21523]: _SERVER found -- 08:57:31.756 INFO [21523]: REMOTE_ADDR = 10.0.0.15 -- 08:57:31.756 INFO [21523]: SERVER_NAME = oameye.works.coregrade.com -- 08:57:31.756 INFO [21523]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 08:57:31.756 INFO [21523]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 08:57:31.772 INFO [21523]: COREGRADE is stopping... -- 08:57:31.772 DEBUG [21523]: Closing database connection -- 08:57:31.772 SQL [21523]: pgsql_close() -- 13:45:21.235 INFO [19442]: COREGRADE is starting... -- 13:45:21.236 INFO [19442]: Version from config: 1.0 -- 13:45:21.236 DEBUG [19442]: Connecting to database... -- 13:45:21.236 DEBUG [19442]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:45:21.236 SQL [19442]: pgsql_db_connect() -- 13:45:21.241 DEBUG [19442]: Database connection successful -- 13:45:21.241 INFO [19442]: _SERVER found -- 13:45:21.241 INFO [19442]: REMOTE_ADDR = 10.0.0.15 -- 13:45:21.241 INFO [19442]: SERVER_NAME = oameye.works.coregrade.com -- 13:45:21.241 INFO [19442]: QUERY_STRING = /solr/admin/info/system -- 13:45:21.241 INFO [19442]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 13:45:21.254 INFO [19442]: COREGRADE is stopping... -- 13:45:21.254 DEBUG [19442]: Closing database connection -- 13:45:21.254 SQL [19442]: pgsql_close() -- 13:50:02.994 INFO [19443]: COREGRADE is starting... -- 13:50:02.994 INFO [19443]: Version from config: 1.0 -- 13:50:02.994 DEBUG [19443]: Connecting to database... -- 13:50:02.994 DEBUG [19443]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:02.994 SQL [19443]: pgsql_db_connect() -- 13:50:02.000 DEBUG [19443]: Database connection successful -- 13:50:02.000 INFO [19443]: _SERVER found -- 13:50:02.000 INFO [19443]: REMOTE_ADDR = 10.0.0.15 -- 13:50:02.000 INFO [19443]: SERVER_NAME = oameye.works.coregrade.com -- 13:50:02.000 INFO [19443]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 13:50:02.000 INFO [19443]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 13:50:03.035 INFO [19443]: COREGRADE is stopping... -- 13:50:03.035 DEBUG [19443]: Closing database connection -- 13:50:03.035 SQL [19443]: pgsql_close() -- 13:50:04.730 INFO [21524]: COREGRADE is starting... -- 13:50:04.731 INFO [21524]: Version from config: 1.0 -- 13:50:04.731 DEBUG [21524]: Connecting to database... -- 13:50:04.731 DEBUG [21524]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:04.731 SQL [21524]: pgsql_db_connect() -- 13:50:04.735 DEBUG [21524]: Database connection successful -- 13:50:04.735 INFO [21524]: _SERVER found -- 13:50:04.735 INFO [21524]: REMOTE_ADDR = 10.0.0.15 -- 13:50:04.735 INFO [21524]: SERVER_NAME = oameye.works.coregrade.com -- 13:50:04.735 INFO [21524]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 13:50:04.735 INFO [21524]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 13:50:04.771 INFO [21524]: COREGRADE is stopping... -- 13:50:04.771 DEBUG [21524]: Closing database connection -- 13:50:04.771 SQL [21524]: pgsql_close() -- 14:00:56.532 INFO [21164]: COREGRADE is starting... -- 14:00:56.533 INFO [21164]: Version from config: 1.0 -- 14:00:56.533 DEBUG [21164]: Connecting to database... -- 14:00:56.533 DEBUG [21164]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:00:56.533 SQL [21164]: pgsql_db_connect() -- 14:00:56.537 DEBUG [21164]: Database connection successful -- 14:00:56.537 INFO [21164]: _SERVER found -- 14:00:56.537 INFO [21164]: REMOTE_ADDR = 10.0.0.15 -- 14:00:56.537 INFO [21164]: SERVER_NAME = oameye.works.coregrade.com -- 14:00:56.537 INFO [21164]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 14:00:56.537 INFO [21164]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 14:00:56.575 INFO [21164]: COREGRADE is stopping... -- 14:00:56.575 DEBUG [21164]: Closing database connection -- 14:00:56.575 SQL [21164]: pgsql_close() -- 15:39:09.412 INFO [23793]: COREGRADE is starting... -- 15:39:09.413 INFO [23793]: Version from config: 1.0 -- 15:39:09.413 DEBUG [23793]: Connecting to database... -- 15:39:09.413 DEBUG [23793]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:39:09.413 SQL [23793]: pgsql_db_connect() -- 15:39:09.418 DEBUG [23793]: Database connection successful -- 15:39:09.418 INFO [23793]: _SERVER found -- 15:39:09.418 INFO [23793]: REMOTE_ADDR = 10.0.0.15 -- 15:39:09.418 INFO [23793]: SERVER_NAME = tokslaw.works.coregrade.com -- 15:39:09.418 INFO [23793]: QUERY_STRING = -- 15:39:09.418 INFO [23793]: HTTP_X_FORWARDED_FOR = 157.245.117.194 -- 15:39:09.455 INFO [23793]: COREGRADE is stopping... -- 15:39:09.455 DEBUG [23793]: Closing database connection -- 15:39:09.455 SQL [23793]: pgsql_close() -- 15:49:23.321 INFO [21163]: COREGRADE is starting... -- 15:49:23.321 INFO [21163]: Version from config: 1.0 -- 15:49:23.321 DEBUG [21163]: Connecting to database... -- 15:49:23.321 DEBUG [21163]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:49:23.321 SQL [21163]: pgsql_db_connect() -- 15:49:23.325 DEBUG [21163]: Database connection successful -- 15:49:23.325 INFO [21163]: _SERVER found -- 15:49:23.325 INFO [21163]: REMOTE_ADDR = 10.0.0.15 -- 15:49:23.325 INFO [21163]: SERVER_NAME = oameye.works.coregrade.com -- 15:49:23.325 INFO [21163]: QUERY_STRING = -- 15:49:23.325 INFO [21163]: HTTP_X_FORWARDED_FOR = 157.245.115.207 -- 15:49:23.362 INFO [21163]: COREGRADE is stopping... -- 15:49:23.362 DEBUG [21163]: Closing database connection -- 15:49:23.362 SQL [21163]: pgsql_close() -- 16:01:57.311 INFO [21162]: COREGRADE is starting... -- 16:01:57.311 INFO [21162]: Version from config: 1.0 -- 16:01:57.311 DEBUG [21162]: Connecting to database... -- 16:01:57.311 DEBUG [21162]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:01:57.311 SQL [21162]: pgsql_db_connect() -- 16:01:57.315 DEBUG [21162]: Database connection successful -- 16:01:57.315 INFO [21162]: _SERVER found -- 16:01:57.315 INFO [21162]: REMOTE_ADDR = 10.0.0.15 -- 16:01:57.315 INFO [21162]: SERVER_NAME = oameye.works.coregrade.com -- 16:01:57.315 INFO [21162]: QUERY_STRING = /api/jsonws/invoke -- 16:01:57.315 INFO [21162]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 16:01:57.332 INFO [21162]: COREGRADE is stopping... -- 16:01:57.332 DEBUG [21162]: Closing database connection -- 16:01:57.332 SQL [21162]: pgsql_close() -- 16:36:58.665 INFO [25976]: COREGRADE is starting... -- 16:36:58.665 INFO [25976]: Version from config: 1.0 -- 16:36:58.665 DEBUG [25976]: Connecting to database... -- 16:36:58.665 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:36:58.665 SQL [25976]: pgsql_db_connect() -- 16:36:58.669 DEBUG [25976]: Database connection successful -- 16:36:58.669 INFO [25976]: _SERVER found -- 16:36:58.669 INFO [25976]: REMOTE_ADDR = 10.0.0.15 -- 16:36:58.669 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 16:36:58.669 INFO [25976]: QUERY_STRING = -- 16:36:58.669 INFO [25976]: HTTP_X_FORWARDED_FOR = 94.102.56.206 -- 16:36:58.707 INFO [25976]: COREGRADE is stopping... -- 16:36:58.707 DEBUG [25976]: Closing database connection -- 16:36:58.707 SQL [25976]: pgsql_close() -- 20:13:23.130 INFO [21523]: COREGRADE is starting... -- 20:13:23.130 INFO [21523]: Version from config: 1.0 -- 20:13:23.130 DEBUG [21523]: Connecting to database... -- 20:13:23.130 DEBUG [21523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:13:23.130 SQL [21523]: pgsql_db_connect() -- 20:13:23.135 DEBUG [21523]: Database connection successful -- 20:13:23.135 INFO [21523]: _SERVER found -- 20:13:23.135 INFO [21523]: REMOTE_ADDR = 10.0.0.15 -- 20:13:23.135 INFO [21523]: SERVER_NAME = oameye.works.coregrade.com -- 20:13:23.135 INFO [21523]: QUERY_STRING = /TP/public/index.php -- 20:13:23.135 INFO [21523]: HTTP_X_FORWARDED_FOR = 47.96.114.93 -- 20:13:23.149 INFO [21523]: COREGRADE is stopping... -- 20:13:23.149 DEBUG [21523]: Closing database connection -- 20:13:23.149 SQL [21523]: pgsql_close() -- 20:13:27.591 INFO [19442]: COREGRADE is starting... -- 20:13:27.592 INFO [19442]: Version from config: 1.0 -- 20:13:27.592 DEBUG [19442]: Connecting to database... -- 20:13:27.592 DEBUG [19442]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:13:27.592 SQL [19442]: pgsql_db_connect() -- 20:13:27.596 DEBUG [19442]: Database connection successful -- 20:13:27.596 INFO [19442]: _SERVER found -- 20:13:27.596 INFO [19442]: REMOTE_ADDR = 10.0.0.15 -- 20:13:27.596 INFO [19442]: SERVER_NAME = oameye.works.coregrade.com -- 20:13:27.596 INFO [19442]: QUERY_STRING = /TP/index.php -- 20:13:27.596 INFO [19442]: HTTP_X_FORWARDED_FOR = 47.96.114.93 -- 20:13:27.610 INFO [19442]: COREGRADE is stopping... -- 20:13:27.610 DEBUG [19442]: Closing database connection -- 20:13:27.610 SQL [19442]: pgsql_close() -- 20:13:34.705 INFO [19443]: COREGRADE is starting... -- 20:13:34.705 INFO [19443]: Version from config: 1.0 -- 20:13:34.705 DEBUG [19443]: Connecting to database... -- 20:13:34.705 DEBUG [19443]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:13:34.705 SQL [19443]: pgsql_db_connect() -- 20:13:34.709 DEBUG [19443]: Database connection successful -- 20:13:34.709 INFO [19443]: _SERVER found -- 20:13:34.709 INFO [19443]: REMOTE_ADDR = 10.0.0.15 -- 20:13:34.709 INFO [19443]: SERVER_NAME = oameye.works.coregrade.com -- 20:13:34.709 INFO [19443]: QUERY_STRING = -- 20:13:34.709 INFO [19443]: HTTP_X_FORWARDED_FOR = 47.96.114.93 -- 20:13:34.743 INFO [19443]: COREGRADE is stopping... -- 20:13:34.744 DEBUG [19443]: Closing database connection -- 20:13:34.744 SQL [19443]: pgsql_close() -- 20:19:33.387 INFO [21524]: COREGRADE is starting... -- 20:19:33.388 INFO [21524]: Version from config: 1.0 -- 20:19:33.388 DEBUG [21524]: Connecting to database... -- 20:19:33.388 DEBUG [21524]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:19:33.388 SQL [21524]: pgsql_db_connect() -- 20:19:33.392 DEBUG [21524]: Database connection successful -- 20:19:33.392 INFO [21524]: _SERVER found -- 20:19:33.392 INFO [21524]: REMOTE_ADDR = 10.0.0.15 -- 20:19:33.392 INFO [21524]: SERVER_NAME = oameye.works.coregrade.com -- 20:19:33.392 INFO [21524]: QUERY_STRING = -- 20:19:33.392 INFO [21524]: HTTP_X_FORWARDED_FOR = 64.225.66.251 -- 20:19:33.427 INFO [21524]: COREGRADE is stopping... -- 20:19:33.427 DEBUG [21524]: Closing database connection -- 20:19:33.427 SQL [21524]: pgsql_close() -- 20:19:33.924 INFO [21524]: COREGRADE is starting... -- 20:19:33.925 INFO [21524]: Version from config: 1.0 -- 20:19:33.925 DEBUG [21524]: Connecting to database... -- 20:19:33.925 DEBUG [21524]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:19:33.925 SQL [21524]: pgsql_db_connect() -- 20:19:33.929 DEBUG [21524]: Database connection successful -- 20:19:33.929 INFO [21524]: _SERVER found -- 20:19:33.929 INFO [21524]: REMOTE_ADDR = 10.0.0.15 -- 20:19:33.929 INFO [21524]: SERVER_NAME = oameye.works.coregrade.com -- 20:19:33.929 INFO [21524]: HTTP_COOKIE = 420F0DABD80FC8F34050B58A5AB00FCE420F0DAB -- 20:19:33.929 INFO [21524]: QUERY_STRING = /favicon.ico -- 20:19:33.929 INFO [21524]: HTTP_X_FORWARDED_FOR = 64.225.66.251 -- 20:19:33.940 INFO [21524]: COREGRADE is stopping... -- 20:19:33.940 DEBUG [21524]: Closing database connection -- 20:19:33.940 SQL [21524]: pgsql_close() -- 20:57:22.921 INFO [21164]: COREGRADE is starting... -- 20:57:22.921 INFO [21164]: Version from config: 1.0 -- 20:57:22.921 DEBUG [21164]: Connecting to database... -- 20:57:22.921 DEBUG [21164]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:57:22.921 SQL [21164]: pgsql_db_connect() -- 20:57:22.926 DEBUG [21164]: Database connection successful -- 20:57:22.926 INFO [21164]: _SERVER found -- 20:57:22.926 INFO [21164]: REMOTE_ADDR = 10.0.0.15 -- 20:57:22.926 INFO [21164]: SERVER_NAME = oameye.works.coregrade.com -- 20:57:22.926 INFO [21164]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 20:57:22.926 INFO [21164]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 20:57:22.941 INFO [21164]: COREGRADE is stopping... -- 20:57:22.941 DEBUG [21164]: Closing database connection -- 20:57:22.941 SQL [21164]: pgsql_close() -- 21:57:32.303 INFO [21165]: COREGRADE is starting... -- 21:57:32.303 INFO [21165]: Version from config: 1.0 -- 21:57:32.303 DEBUG [21165]: Connecting to database... -- 21:57:32.303 DEBUG [21165]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:57:32.303 SQL [21165]: pgsql_db_connect() -- 21:57:32.308 DEBUG [21165]: Database connection successful -- 21:57:32.308 INFO [21165]: _SERVER found -- 21:57:32.308 INFO [21165]: REMOTE_ADDR = 10.0.0.15 -- 21:57:32.308 INFO [21165]: SERVER_NAME = oameye.works.coregrade.com -- 21:57:32.308 INFO [21165]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 21:57:32.308 INFO [21165]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 21:57:32.322 INFO [21165]: COREGRADE is stopping... -- 21:57:32.322 DEBUG [21165]: Closing database connection -- 21:57:32.322 SQL [21165]: pgsql_close() -- 23:11:11.055 INFO [23793]: COREGRADE is starting... -- 23:11:11.055 INFO [23793]: Version from config: 1.0 -- 23:11:11.055 DEBUG [23793]: Connecting to database... -- 23:11:11.055 DEBUG [23793]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:11:11.055 SQL [23793]: pgsql_db_connect() -- 23:11:11.060 DEBUG [23793]: Database connection successful -- 23:11:11.060 INFO [23793]: _SERVER found -- 23:11:11.060 INFO [23793]: REMOTE_ADDR = 10.0.0.15 -- 23:11:11.060 INFO [23793]: SERVER_NAME = oameye.works.coregrade.com -- 23:11:11.060 INFO [23793]: QUERY_STRING = /solr/admin/info/system -- 23:11:11.060 INFO [23793]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 23:11:11.075 INFO [23793]: COREGRADE is stopping... -- 23:11:11.075 DEBUG [23793]: Closing database connection -- 23:11:11.075 SQL [23793]: pgsql_close() -- 23:11:24.812 INFO [21163]: COREGRADE is starting... -- 23:11:24.813 INFO [21163]: Version from config: 1.0 -- 23:11:24.813 DEBUG [21163]: Connecting to database... -- 23:11:24.813 DEBUG [21163]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:11:24.813 SQL [21163]: pgsql_db_connect() -- 23:11:24.817 DEBUG [21163]: Database connection successful -- 23:11:24.817 INFO [21163]: _SERVER found -- 23:11:24.817 INFO [21163]: REMOTE_ADDR = 10.0.0.15 -- 23:11:24.817 INFO [21163]: SERVER_NAME = oameye.works.coregrade.com -- 23:11:24.817 INFO [21163]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 23:11:24.817 INFO [21163]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 23:11:24.854 INFO [21163]: COREGRADE is stopping... -- 23:11:24.854 DEBUG [21163]: Closing database connection -- 23:11:24.854 SQL [21163]: pgsql_close() -- 23:11:25.845 INFO [21163]: COREGRADE is starting... -- 23:11:25.845 INFO [21163]: Version from config: 1.0 -- 23:11:25.845 DEBUG [21163]: Connecting to database... -- 23:11:25.845 DEBUG [21163]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:11:25.845 SQL [21163]: pgsql_db_connect() -- 23:11:25.849 DEBUG [21163]: Database connection successful -- 23:11:25.849 INFO [21163]: _SERVER found -- 23:11:25.849 INFO [21163]: REMOTE_ADDR = 10.0.0.15 -- 23:11:25.849 INFO [21163]: SERVER_NAME = oameye.works.coregrade.com -- 23:11:25.849 INFO [21163]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 23:11:25.849 INFO [21163]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 23:11:25.880 INFO [21163]: COREGRADE is stopping... -- 23:11:25.880 DEBUG [21163]: Closing database connection -- 23:11:25.880 SQL [21163]: pgsql_close() -- 23:11:52.004 INFO [21162]: COREGRADE is starting... -- 23:11:52.005 INFO [21162]: Version from config: 1.0 -- 23:11:52.005 DEBUG [21162]: Connecting to database... -- 23:11:52.005 DEBUG [21162]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:11:52.005 SQL [21162]: pgsql_db_connect() -- 23:11:52.009 DEBUG [21162]: Database connection successful -- 23:11:52.009 INFO [21162]: _SERVER found -- 23:11:52.009 INFO [21162]: REMOTE_ADDR = 10.0.0.15 -- 23:11:52.009 INFO [21162]: SERVER_NAME = oameye.works.coregrade.com -- 23:11:52.009 INFO [21162]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 23:11:52.009 INFO [21162]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 23:11:52.043 INFO [21162]: COREGRADE is stopping... -- 23:11:52.043 DEBUG [21162]: Closing database connection -- 23:11:52.043 SQL [21162]: pgsql_close() -- 23:17:27.596 INFO [25976]: COREGRADE is starting... -- 23:17:27.597 INFO [25976]: Version from config: 1.0 -- 23:17:27.597 DEBUG [25976]: Connecting to database... -- 23:17:27.597 DEBUG [25976]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:17:27.597 SQL [25976]: pgsql_db_connect() -- 23:17:27.601 DEBUG [25976]: Database connection successful -- 23:17:27.601 INFO [25976]: _SERVER found -- 23:17:27.601 INFO [25976]: REMOTE_ADDR = 10.0.0.15 -- 23:17:27.601 INFO [25976]: SERVER_NAME = oameye.works.coregrade.com -- 23:17:27.601 INFO [25976]: QUERY_STRING = /api/jsonws/invoke -- 23:17:27.601 INFO [25976]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 23:17:27.614 INFO [25976]: COREGRADE is stopping... -- 23:17:27.614 DEBUG [25976]: Closing database connection -- 23:17:27.614 SQL [25976]: pgsql_close() -- 23:30:58.572 INFO [21523]: COREGRADE is starting... -- 23:30:58.572 INFO [21523]: Version from config: 1.0 -- 23:30:58.572 DEBUG [21523]: Connecting to database... -- 23:30:58.572 DEBUG [21523]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:30:58.572 SQL [21523]: pgsql_db_connect() -- 23:30:58.576 DEBUG [21523]: Database connection successful -- 23:30:58.576 INFO [21523]: _SERVER found -- 23:30:58.576 INFO [21523]: REMOTE_ADDR = 10.0.0.15 -- 23:30:58.576 INFO [21523]: SERVER_NAME = oameye.works.coregrade.com -- 23:30:58.576 INFO [21523]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 23:30:58.576 INFO [21523]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 23:30:58.590 INFO [21523]: COREGRADE is stopping... -- 23:30:58.590 DEBUG [21523]: Closing database connection -- 23:30:58.590 SQL [21523]: pgsql_close() -- 23:33:42.577 INFO [19442]: COREGRADE is starting... -- 23:33:42.578 INFO [19442]: Version from config: 1.0 -- 23:33:42.578 DEBUG [19442]: Connecting to database... -- 23:33:42.578 DEBUG [19442]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:33:42.578 SQL [19442]: pgsql_db_connect() -- 23:33:42.582 DEBUG [19442]: Database connection successful -- 23:33:42.582 INFO [19442]: _SERVER found -- 23:33:42.582 INFO [19442]: REMOTE_ADDR = 10.0.0.15 -- 23:33:42.582 INFO [19442]: SERVER_NAME = oameye.works.coregrade.com -- 23:33:42.582 INFO [19442]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 23:33:42.582 INFO [19442]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 23:33:42.594 INFO [19442]: COREGRADE is stopping... -- 23:33:42.594 DEBUG [19442]: Closing database connection -- 23:33:42.594 SQL [19442]: pgsql_close() -- 02:51:05.299 INFO [19443]: COREGRADE is starting... -- 02:51:05.300 INFO [19443]: Version from config: 1.0 -- 02:51:05.300 DEBUG [19443]: Connecting to database... -- 02:51:05.300 DEBUG [19443]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:51:05.300 SQL [19443]: pgsql_db_connect() -- 02:51:05.306 DEBUG [19443]: Database connection successful -- 02:51:05.306 INFO [19443]: _SERVER found -- 02:51:05.306 INFO [19443]: REMOTE_ADDR = 10.0.0.15 -- 02:51:05.306 INFO [19443]: SERVER_NAME = oameye.works.coregrade.com -- 02:51:05.306 INFO [19443]: QUERY_STRING = /.well-known/acme-challenge/RL7A2a6kU0Hfn1HgcenFj1jJjou_MtawwxBJFnHMUOo -- 02:51:05.306 INFO [19443]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 02:51:05.320 INFO [19443]: COREGRADE is stopping... -- 02:51:05.320 DEBUG [19443]: Closing database connection -- 02:51:05.320 SQL [19443]: pgsql_close() -- 02:51:05.560 INFO [21164]: COREGRADE is starting... -- 02:51:05.560 INFO [21164]: Version from config: 1.0 -- 02:51:05.560 DEBUG [21164]: Connecting to database... -- 02:51:05.560 DEBUG [21164]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:51:05.560 SQL [21164]: pgsql_db_connect() -- 02:51:05.564 DEBUG [21164]: Database connection successful -- 02:51:05.564 INFO [21164]: _SERVER found -- 02:51:05.564 INFO [21164]: REMOTE_ADDR = 10.0.0.15 -- 02:51:05.564 INFO [21164]: SERVER_NAME = oameye.works.coregrade.com -- 02:51:05.564 INFO [21164]: QUERY_STRING = /.well-known/acme-challenge/RL7A2a6kU0Hfn1HgcenFj1jJjou_MtawwxBJFnHMUOo -- 02:51:05.564 INFO [21164]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 02:51:05.580 INFO [21164]: COREGRADE is stopping... -- 02:51:05.580 DEBUG [21164]: Closing database connection -- 02:51:05.580 SQL [21164]: pgsql_close() -- 02:51:05.618 INFO [21165]: COREGRADE is starting... -- 02:51:05.618 INFO [21165]: Version from config: 1.0 -- 02:51:05.618 DEBUG [21165]: Connecting to database... -- 02:51:05.618 DEBUG [21165]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:51:05.618 SQL [21165]: pgsql_db_connect() -- 02:51:05.623 DEBUG [21165]: Database connection successful -- 02:51:05.623 INFO [21165]: _SERVER found -- 02:51:05.623 INFO [21165]: REMOTE_ADDR = 10.0.0.15 -- 02:51:05.623 INFO [21165]: SERVER_NAME = oameye.works.coregrade.com -- 02:51:05.623 INFO [21165]: QUERY_STRING = /.well-known/acme-challenge/RL7A2a6kU0Hfn1HgcenFj1jJjou_MtawwxBJFnHMUOo -- 02:51:05.623 INFO [21165]: HTTP_X_FORWARDED_FOR = 34.209.232.166 -- 02:51:05.644 INFO [21165]: COREGRADE is stopping... -- 02:51:05.644 DEBUG [21165]: Closing database connection -- 02:51:05.644 SQL [21165]: pgsql_close() -- 02:51:05.653 INFO [21163]: COREGRADE is starting... -- 02:51:05.654 INFO [21163]: Version from config: 1.0 -- 02:51:05.654 DEBUG [21163]: Connecting to database... -- 02:51:05.654 DEBUG [21163]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:51:05.654 SQL [21163]: pgsql_db_connect() -- 02:51:05.658 DEBUG [21163]: Database connection successful -- 02:51:05.659 INFO [21163]: _SERVER found -- 02:51:05.659 INFO [21163]: REMOTE_ADDR = 10.0.0.15 -- 02:51:05.659 INFO [21163]: SERVER_NAME = oameye.works.coregrade.com -- 02:51:05.659 INFO [21163]: QUERY_STRING = /.well-known/acme-challenge/RL7A2a6kU0Hfn1HgcenFj1jJjou_MtawwxBJFnHMUOo -- 02:51:05.659 INFO [21163]: HTTP_X_FORWARDED_FOR = 52.28.236.88 -- 02:51:05.676 INFO [21163]: COREGRADE is stopping... -- 02:51:05.676 DEBUG [21163]: Closing database connection -- 02:51:05.676 SQL [21163]: pgsql_close() -- 11:44:33.055 INFO [395]: COREGRADE is starting... -- 11:44:33.055 INFO [395]: Version from config: 1.0 -- 11:44:33.055 DEBUG [395]: Connecting to database... -- 11:44:33.055 DEBUG [395]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:44:33.055 SQL [395]: pgsql_db_connect() -- 11:44:33.060 DEBUG [395]: Database connection successful -- 11:44:33.060 INFO [395]: _SERVER found -- 11:44:33.060 INFO [395]: REMOTE_ADDR = 10.0.0.15 -- 11:44:33.060 INFO [395]: SERVER_NAME = oameye.works.coregrade.com -- 11:44:33.060 INFO [395]: QUERY_STRING = /solr/admin/info/system -- 11:44:33.060 INFO [395]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 11:44:33.078 INFO [395]: COREGRADE is stopping... -- 11:44:33.078 DEBUG [395]: Closing database connection -- 11:44:33.078 SQL [395]: pgsql_close() -- 11:44:57.451 INFO [397]: COREGRADE is starting... -- 11:44:57.452 INFO [397]: Version from config: 1.0 -- 11:44:57.452 DEBUG [397]: Connecting to database... -- 11:44:57.452 DEBUG [397]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:44:57.452 SQL [397]: pgsql_db_connect() -- 11:44:57.456 DEBUG [397]: Database connection successful -- 11:44:57.456 INFO [397]: _SERVER found -- 11:44:57.456 INFO [397]: REMOTE_ADDR = 10.0.0.15 -- 11:44:57.456 INFO [397]: SERVER_NAME = oameye.works.coregrade.com -- 11:44:57.456 INFO [397]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 11:44:57.456 INFO [397]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 11:44:57.501 INFO [397]: COREGRADE is stopping... -- 11:44:57.501 DEBUG [397]: Closing database connection -- 11:44:57.501 SQL [397]: pgsql_close() -- 11:45:01.327 INFO [397]: COREGRADE is starting... -- 11:45:01.327 INFO [397]: Version from config: 1.0 -- 11:45:01.327 DEBUG [397]: Connecting to database... -- 11:45:01.327 DEBUG [397]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:45:01.328 SQL [397]: pgsql_db_connect() -- 11:45:01.332 DEBUG [397]: Database connection successful -- 11:45:01.332 INFO [397]: _SERVER found -- 11:45:01.332 INFO [397]: REMOTE_ADDR = 10.0.0.15 -- 11:45:01.332 INFO [397]: SERVER_NAME = oameye.works.coregrade.com -- 11:45:01.332 INFO [397]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 11:45:01.332 INFO [397]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 11:45:01.364 INFO [397]: COREGRADE is stopping... -- 11:45:01.364 DEBUG [397]: Closing database connection -- 11:45:01.364 SQL [397]: pgsql_close() -- 11:45:54.400 INFO [19443]: COREGRADE is starting... -- 11:45:54.400 INFO [19443]: Version from config: 1.0 -- 11:45:54.400 DEBUG [19443]: Connecting to database... -- 11:45:54.400 DEBUG [19443]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:45:54.400 SQL [19443]: pgsql_db_connect() -- 11:45:54.404 DEBUG [19443]: Database connection successful -- 11:45:54.404 INFO [19443]: _SERVER found -- 11:45:54.404 INFO [19443]: REMOTE_ADDR = 10.0.0.15 -- 11:45:54.404 INFO [19443]: SERVER_NAME = oameye.works.coregrade.com -- 11:45:54.404 INFO [19443]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 11:45:54.404 INFO [19443]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 11:45:54.438 INFO [19443]: COREGRADE is stopping... -- 11:45:54.438 DEBUG [19443]: Closing database connection -- 11:45:54.438 SQL [19443]: pgsql_close() -- 11:56:54.372 INFO [21524]: COREGRADE is starting... -- 11:56:54.372 INFO [21524]: Version from config: 1.0 -- 11:56:54.372 DEBUG [21524]: Connecting to database... -- 11:56:54.372 DEBUG [21524]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:56:54.373 SQL [21524]: pgsql_db_connect() -- 11:56:54.377 DEBUG [21524]: Database connection successful -- 11:56:54.377 INFO [21524]: _SERVER found -- 11:56:54.377 INFO [21524]: REMOTE_ADDR = 10.0.0.15 -- 11:56:54.377 INFO [21524]: SERVER_NAME = oameye.works.coregrade.com -- 11:56:54.377 INFO [21524]: QUERY_STRING = /api/jsonws/invoke -- 11:56:54.377 INFO [21524]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 11:56:54.391 INFO [21524]: COREGRADE is stopping... -- 11:56:54.391 DEBUG [21524]: Closing database connection -- 11:56:54.391 SQL [21524]: pgsql_close() -- 12:24:17.706 INFO [21164]: COREGRADE is starting... -- 12:24:17.706 INFO [21164]: Version from config: 1.0 -- 12:24:17.706 DEBUG [21164]: Connecting to database... -- 12:24:17.706 DEBUG [21164]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:24:17.706 SQL [21164]: pgsql_db_connect() -- 12:24:17.710 DEBUG [21164]: Database connection successful -- 12:24:17.710 INFO [21164]: _SERVER found -- 12:24:17.710 INFO [21164]: REMOTE_ADDR = 10.0.0.15 -- 12:24:17.710 INFO [21164]: SERVER_NAME = oameye.works.coregrade.com -- 12:24:17.710 INFO [21164]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 12:24:17.710 INFO [21164]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 12:24:17.725 INFO [21164]: COREGRADE is stopping... -- 12:24:17.725 DEBUG [21164]: Closing database connection -- 12:24:17.725 SQL [21164]: pgsql_close() -- 12:29:00.077 INFO [23793]: COREGRADE is starting... -- 12:29:00.077 INFO [23793]: Version from config: 1.0 -- 12:29:00.077 DEBUG [23793]: Connecting to database... -- 12:29:00.077 DEBUG [23793]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:00.077 SQL [23793]: pgsql_db_connect() -- 12:29:00.081 DEBUG [23793]: Database connection successful -- 12:29:00.081 INFO [23793]: _SERVER found -- 12:29:00.081 INFO [23793]: REMOTE_ADDR = 10.0.0.15 -- 12:29:00.081 INFO [23793]: SERVER_NAME = oameye.works.coregrade.com -- 12:29:00.081 INFO [23793]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 12:29:00.081 INFO [23793]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 12:29:00.094 INFO [23793]: COREGRADE is stopping... -- 12:29:00.095 DEBUG [23793]: Closing database connection -- 12:29:00.095 SQL [23793]: pgsql_close() -- 14:52:08.785 INFO [21165]: COREGRADE is starting... -- 14:52:08.786 INFO [21165]: Version from config: 1.0 -- 14:52:08.786 DEBUG [21165]: Connecting to database... -- 14:52:08.786 DEBUG [21165]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:52:08.786 SQL [21165]: pgsql_db_connect() -- 14:52:08.791 DEBUG [21165]: Database connection successful -- 14:52:08.791 INFO [21165]: _SERVER found -- 14:52:08.791 INFO [21165]: REMOTE_ADDR = 10.0.0.15 -- 14:52:08.791 INFO [21165]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:52:08.791 INFO [21165]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 14:52:08.791 INFO [21165]: QUERY_STRING = -- 14:52:08.791 INFO [21165]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:52:08.831 INFO [21165]: COREGRADE is stopping... -- 14:52:08.831 DEBUG [21165]: Closing database connection -- 14:52:08.831 SQL [21165]: pgsql_close() -- 14:52:09.034 INFO [21165]: COREGRADE is starting... -- 14:52:09.034 INFO [21165]: Version from config: 1.0 -- 14:52:09.034 DEBUG [21165]: Connecting to database... -- 14:52:09.034 DEBUG [21165]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:52:09.034 SQL [21165]: pgsql_db_connect() -- 14:52:09.038 DEBUG [21165]: Database connection successful -- 14:52:09.038 INFO [21165]: _SERVER found -- 14:52:09.038 INFO [21165]: REMOTE_ADDR = 10.0.0.15 -- 14:52:09.038 INFO [21165]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:52:09.038 INFO [21165]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=emvg98b0fq5n9t5tgotdc6oof21e31d2 -- 14:52:09.038 INFO [21165]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 14:52:09.038 INFO [21165]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:52:09.049 INFO [21165]: COREGRADE is stopping... -- 14:52:09.049 DEBUG [21165]: Closing database connection -- 14:52:09.049 SQL [21165]: pgsql_close() -- 14:52:09.227 INFO [21165]: COREGRADE is starting... -- 14:52:09.227 INFO [21165]: Version from config: 1.0 -- 14:52:09.227 DEBUG [21165]: Connecting to database... -- 14:52:09.227 DEBUG [21165]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:52:09.227 SQL [21165]: pgsql_db_connect() -- 14:52:09.231 DEBUG [21165]: Database connection successful -- 14:52:09.231 INFO [21165]: _SERVER found -- 14:52:09.231 INFO [21165]: REMOTE_ADDR = 10.0.0.15 -- 14:52:09.231 INFO [21165]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:52:09.231 INFO [21165]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=emvg98b0fq5n9t5tgotdc6oof21e31d2 -- 14:52:09.231 INFO [21165]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 14:52:09.231 INFO [21165]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:52:09.242 INFO [21165]: COREGRADE is stopping... -- 14:52:09.242 DEBUG [21165]: Closing database connection -- 14:52:09.242 SQL [21165]: pgsql_close() -- 14:52:09.312 INFO [21165]: COREGRADE is starting... -- 14:52:09.312 INFO [21165]: Version from config: 1.0 -- 14:52:09.312 DEBUG [21165]: Connecting to database... -- 14:52:09.312 DEBUG [21165]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:52:09.312 SQL [21165]: pgsql_db_connect() -- 14:52:09.316 DEBUG [21165]: Database connection successful -- 14:52:09.316 INFO [21165]: _SERVER found -- 14:52:09.316 INFO [21165]: REMOTE_ADDR = 10.0.0.15 -- 14:52:09.316 INFO [21165]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:52:09.316 INFO [21165]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=emvg98b0fq5n9t5tgotdc6oof21e31d2 -- 14:52:09.316 INFO [21165]: QUERY_STRING = /assets/images/savvy-block.png -- 14:52:09.316 INFO [21165]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:52:09.327 INFO [21165]: COREGRADE is stopping... -- 14:52:09.327 DEBUG [21165]: Closing database connection -- 14:52:09.327 SQL [21165]: pgsql_close() -- 14:52:09.474 INFO [21165]: COREGRADE is starting... -- 14:52:09.474 INFO [21165]: Version from config: 1.0 -- 14:52:09.474 DEBUG [21165]: Connecting to database... -- 14:52:09.474 DEBUG [21165]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:52:09.474 SQL [21165]: pgsql_db_connect() -- 14:52:09.478 DEBUG [21165]: Database connection successful -- 14:52:09.478 INFO [21165]: _SERVER found -- 14:52:09.478 INFO [21165]: REMOTE_ADDR = 10.0.0.15 -- 14:52:09.478 INFO [21165]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:52:09.478 INFO [21165]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=emvg98b0fq5n9t5tgotdc6oof21e31d2 -- 14:52:09.478 INFO [21165]: QUERY_STRING = /favicon.ico -- 14:52:09.478 INFO [21165]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:52:09.489 INFO [21165]: COREGRADE is stopping... -- 14:52:09.489 DEBUG [21165]: Closing database connection -- 14:52:09.489 SQL [21165]: pgsql_close() -- 14:52:44.999 INFO [21162]: COREGRADE is starting... -- 14:52:44.999 INFO [21162]: Version from config: 1.0 -- 14:52:44.999 DEBUG [21162]: Connecting to database... -- 14:52:44.999 DEBUG [21162]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:52:44.999 SQL [21162]: pgsql_db_connect() -- 14:52:45.003 DEBUG [21162]: Database connection successful -- 14:52:45.003 INFO [21162]: _SERVER found -- 14:52:45.003 INFO [21162]: REMOTE_ADDR = 10.0.0.15 -- 14:52:45.003 INFO [21162]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:52:45.004 INFO [21162]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=emvg98b0fq5n9t5tgotdc6oof21e31d2 -- 14:52:45.004 INFO [21162]: QUERY_STRING = -- 14:52:45.004 INFO [21162]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:52:45.040 INFO [21162]: COREGRADE is stopping... -- 14:52:45.040 DEBUG [21162]: Closing database connection -- 14:52:45.040 SQL [21162]: pgsql_close() -- 14:52:45.095 INFO [21162]: COREGRADE is starting... -- 14:52:45.095 INFO [21162]: Version from config: 1.0 -- 14:52:45.095 DEBUG [21162]: Connecting to database... -- 14:52:45.095 DEBUG [21162]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:52:45.095 SQL [21162]: pgsql_db_connect() -- 14:52:45.100 DEBUG [21162]: Database connection successful -- 14:52:45.100 INFO [21162]: _SERVER found -- 14:52:45.100 INFO [21162]: REMOTE_ADDR = 10.0.0.15 -- 14:52:45.100 INFO [21162]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:52:45.100 INFO [21162]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=emvg98b0fq5n9t5tgotdc6oof21e31d2 -- 14:52:45.100 INFO [21162]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 14:52:45.100 INFO [21162]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:52:45.111 INFO [21162]: COREGRADE is stopping... -- 14:52:45.111 DEBUG [21162]: Closing database connection -- 14:52:45.111 SQL [21162]: pgsql_close() -- 14:52:45.178 INFO [21162]: COREGRADE is starting... -- 14:52:45.179 INFO [21162]: Version from config: 1.0 -- 14:52:45.179 DEBUG [21162]: Connecting to database... -- 14:52:45.179 DEBUG [21162]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:52:45.179 SQL [21162]: pgsql_db_connect() -- 14:52:45.183 DEBUG [21162]: Database connection successful -- 14:52:45.183 INFO [21162]: _SERVER found -- 14:52:45.183 INFO [21162]: REMOTE_ADDR = 10.0.0.15 -- 14:52:45.183 INFO [21162]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:52:45.183 INFO [21162]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=emvg98b0fq5n9t5tgotdc6oof21e31d2 -- 14:52:45.183 INFO [21162]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 14:52:45.183 INFO [21162]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:52:45.194 INFO [21162]: COREGRADE is stopping... -- 14:52:45.194 DEBUG [21162]: Closing database connection -- 14:52:45.194 SQL [21162]: pgsql_close() -- 14:52:45.207 INFO [21162]: COREGRADE is starting... -- 14:52:45.207 INFO [21162]: Version from config: 1.0 -- 14:52:45.207 DEBUG [21162]: Connecting to database... -- 14:52:45.207 DEBUG [21162]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:52:45.207 SQL [21162]: pgsql_db_connect() -- 14:52:45.211 DEBUG [21162]: Database connection successful -- 14:52:45.211 INFO [21162]: _SERVER found -- 14:52:45.211 INFO [21162]: REMOTE_ADDR = 10.0.0.15 -- 14:52:45.211 INFO [21162]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:52:45.211 INFO [21162]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=emvg98b0fq5n9t5tgotdc6oof21e31d2 -- 14:52:45.211 INFO [21162]: QUERY_STRING = /assets/images/savvy-block.png -- 14:52:45.211 INFO [21162]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:52:45.222 INFO [21162]: COREGRADE is stopping... -- 14:52:45.222 DEBUG [21162]: Closing database connection -- 14:52:45.222 SQL [21162]: pgsql_close() -- 14:52:48.333 INFO [21162]: COREGRADE is starting... -- 14:52:48.333 INFO [21162]: Version from config: 1.0 -- 14:52:48.333 DEBUG [21162]: Connecting to database... -- 14:52:48.333 DEBUG [21162]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:52:48.333 SQL [21162]: pgsql_db_connect() -- 14:52:48.337 DEBUG [21162]: Database connection successful -- 14:52:48.337 INFO [21162]: _SERVER found -- 14:52:48.337 INFO [21162]: REMOTE_ADDR = 10.0.0.15 -- 14:52:48.337 INFO [21162]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:52:48.337 INFO [21162]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=emvg98b0fq5n9t5tgotdc6oof21e31d2 -- 14:52:48.337 INFO [21162]: QUERY_STRING = -- 14:52:48.337 INFO [21162]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:52:48.367 INFO [21162]: COREGRADE is stopping... -- 14:52:48.368 DEBUG [21162]: Closing database connection -- 14:52:48.368 SQL [21162]: pgsql_close() -- 14:53:11.268 INFO [21163]: COREGRADE is starting... -- 14:53:11.268 INFO [21163]: Version from config: 1.0 -- 14:53:11.268 DEBUG [21163]: Connecting to database... -- 14:53:11.269 DEBUG [21163]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:53:11.269 SQL [21163]: pgsql_db_connect() -- 14:53:11.273 DEBUG [21163]: Database connection successful -- 14:53:11.273 INFO [21163]: _SERVER found -- 14:53:11.273 INFO [21163]: REMOTE_ADDR = 10.0.0.15 -- 14:53:11.273 INFO [21163]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:53:11.273 INFO [21163]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=emvg98b0fq5n9t5tgotdc6oof21e31d2 -- 14:53:11.273 INFO [21163]: QUERY_STRING = -- 14:53:11.273 INFO [21163]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:53:11.307 INFO [21163]: COREGRADE is stopping... -- 14:53:11.307 DEBUG [21163]: Closing database connection -- 14:53:11.307 SQL [21163]: pgsql_close() -- 14:53:11.373 INFO [21163]: COREGRADE is starting... -- 14:53:11.373 INFO [21163]: Version from config: 1.0 -- 14:53:11.373 DEBUG [21163]: Connecting to database... -- 14:53:11.373 DEBUG [21163]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:53:11.373 SQL [21163]: pgsql_db_connect() -- 14:53:11.377 DEBUG [21163]: Database connection successful -- 14:53:11.377 INFO [21163]: _SERVER found -- 14:53:11.377 INFO [21163]: REMOTE_ADDR = 10.0.0.15 -- 14:53:11.377 INFO [21163]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:53:11.377 INFO [21163]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=emvg98b0fq5n9t5tgotdc6oof21e31d2 -- 14:53:11.377 INFO [21163]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 14:53:11.377 INFO [21163]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:53:11.388 INFO [21163]: COREGRADE is stopping... -- 14:53:11.388 DEBUG [21163]: Closing database connection -- 14:53:11.388 SQL [21163]: pgsql_close() -- 14:53:11.400 INFO [21163]: COREGRADE is starting... -- 14:53:11.401 INFO [21163]: Version from config: 1.0 -- 14:53:11.401 DEBUG [21163]: Connecting to database... -- 14:53:11.401 DEBUG [21163]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:53:11.401 SQL [21163]: pgsql_db_connect() -- 14:53:11.405 DEBUG [21163]: Database connection successful -- 14:53:11.405 INFO [21163]: _SERVER found -- 14:53:11.405 INFO [21163]: REMOTE_ADDR = 10.0.0.15 -- 14:53:11.405 INFO [21163]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:53:11.405 INFO [21163]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=emvg98b0fq5n9t5tgotdc6oof21e31d2 -- 14:53:11.405 INFO [21163]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 14:53:11.405 INFO [21163]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:53:11.416 INFO [21163]: COREGRADE is stopping... -- 14:53:11.416 DEBUG [21163]: Closing database connection -- 14:53:11.416 SQL [21163]: pgsql_close() -- 14:53:11.426 INFO [21163]: COREGRADE is starting... -- 14:53:11.426 INFO [21163]: Version from config: 1.0 -- 14:53:11.426 DEBUG [21163]: Connecting to database... -- 14:53:11.426 DEBUG [21163]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:53:11.426 SQL [21163]: pgsql_db_connect() -- 14:53:11.430 DEBUG [21163]: Database connection successful -- 14:53:11.430 INFO [21163]: _SERVER found -- 14:53:11.430 INFO [21163]: REMOTE_ADDR = 10.0.0.15 -- 14:53:11.430 INFO [21163]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 14:53:11.430 INFO [21163]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=emvg98b0fq5n9t5tgotdc6oof21e31d2 -- 14:53:11.430 INFO [21163]: QUERY_STRING = /assets/images/savvy-block.png -- 14:53:11.430 INFO [21163]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:53:11.441 INFO [21163]: COREGRADE is stopping... -- 14:53:11.441 DEBUG [21163]: Closing database connection -- 14:53:11.441 SQL [21163]: pgsql_close() -- 23:41:30.910 INFO [22824]: COREGRADE is starting... -- 23:41:30.913 INFO [22824]: Version from config: 1.0 -- 23:41:30.913 DEBUG [22824]: Connecting to database... -- 23:41:30.913 DEBUG [22824]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:41:30.913 SQL [22824]: pgsql_db_connect() -- 23:41:30.920 DEBUG [22824]: Database connection successful -- 23:41:30.920 INFO [22824]: _SERVER found -- 23:41:30.920 INFO [22824]: REMOTE_ADDR = 10.0.0.15 -- 23:41:30.920 INFO [22824]: SERVER_NAME = oameye.works.coregrade.com -- 23:41:30.920 INFO [22824]: QUERY_STRING = /.well-known/acme-challenge/OZT1Py96GI3vB5Ixaa8NF8T0DUTdqWK20ABxqxw_Eho -- 23:41:30.920 INFO [22824]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 23:41:30.939 INFO [22824]: COREGRADE is stopping... -- 23:41:30.939 DEBUG [22824]: Closing database connection -- 23:41:30.939 SQL [22824]: pgsql_close() -- 23:41:31.064 INFO [22825]: COREGRADE is starting... -- 23:41:31.064 INFO [22825]: Version from config: 1.0 -- 23:41:31.064 DEBUG [22825]: Connecting to database... -- 23:41:31.064 DEBUG [22825]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:41:31.064 SQL [22825]: pgsql_db_connect() -- 23:41:31.071 DEBUG [22825]: Database connection successful -- 23:41:31.071 INFO [22825]: _SERVER found -- 23:41:31.071 INFO [22825]: REMOTE_ADDR = 10.0.0.15 -- 23:41:31.071 INFO [22825]: SERVER_NAME = oameye.works.coregrade.com -- 23:41:31.071 INFO [22825]: QUERY_STRING = /.well-known/acme-challenge/OZT1Py96GI3vB5Ixaa8NF8T0DUTdqWK20ABxqxw_Eho -- 23:41:31.071 INFO [22825]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 23:41:31.086 INFO [22825]: COREGRADE is stopping... -- 23:41:31.086 DEBUG [22825]: Closing database connection -- 23:41:31.086 SQL [22825]: pgsql_close() -- 23:41:31.167 INFO [22825]: COREGRADE is starting... -- 23:41:31.168 INFO [22825]: Version from config: 1.0 -- 23:41:31.168 DEBUG [22825]: Connecting to database... -- 23:41:31.168 DEBUG [22825]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:41:31.168 SQL [22825]: pgsql_db_connect() -- 23:41:31.173 DEBUG [22825]: Database connection successful -- 23:41:31.173 INFO [22825]: _SERVER found -- 23:41:31.173 INFO [22825]: REMOTE_ADDR = 10.0.0.15 -- 23:41:31.173 INFO [22825]: SERVER_NAME = oameye.works.coregrade.com -- 23:41:31.173 INFO [22825]: QUERY_STRING = /.well-known/acme-challenge/OZT1Py96GI3vB5Ixaa8NF8T0DUTdqWK20ABxqxw_Eho -- 23:41:31.173 INFO [22825]: HTTP_X_FORWARDED_FOR = 18.196.96.172 -- 23:41:31.186 INFO [22825]: COREGRADE is stopping... -- 23:41:31.186 DEBUG [22825]: Closing database connection -- 23:41:31.186 SQL [22825]: pgsql_close() -- 02:20:38.200 INFO [22821]: COREGRADE is starting... -- 02:20:38.201 INFO [22821]: Version from config: 1.0 -- 02:20:38.201 DEBUG [22821]: Connecting to database... -- 02:20:38.201 DEBUG [22821]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:20:38.201 SQL [22821]: pgsql_db_connect() -- 02:20:38.205 DEBUG [22821]: Database connection successful -- 02:20:38.205 INFO [22821]: _SERVER found -- 02:20:38.205 INFO [22821]: REMOTE_ADDR = 10.0.0.15 -- 02:20:38.205 INFO [22821]: SERVER_NAME = oameye.works.coregrade.com -- 02:20:38.205 INFO [22821]: QUERY_STRING = -- 02:20:38.205 INFO [22821]: HTTP_X_FORWARDED_FOR = 125.64.94.132 -- 02:20:38.253 INFO [22821]: COREGRADE is stopping... -- 02:20:38.253 DEBUG [22821]: Closing database connection -- 02:20:38.253 SQL [22821]: pgsql_close() -- 04:34:44.846 INFO [3085]: COREGRADE is starting... -- 04:34:44.847 INFO [3085]: Version from config: 1.0 -- 04:34:44.847 DEBUG [3085]: Connecting to database... -- 04:34:44.847 DEBUG [3085]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:34:44.847 SQL [3085]: pgsql_db_connect() -- 04:34:44.851 DEBUG [3085]: Database connection successful -- 04:34:44.851 INFO [3085]: _SERVER found -- 04:34:44.851 INFO [3085]: REMOTE_ADDR = 10.0.0.15 -- 04:34:44.851 INFO [3085]: SERVER_NAME = oameye.works.coregrade.com -- 04:34:44.851 INFO [3085]: QUERY_STRING = /robots.txt -- 04:34:44.851 INFO [3085]: HTTP_X_FORWARDED_FOR = 66.249.65.180 -- 04:34:44.868 INFO [3085]: COREGRADE is stopping... -- 04:34:44.868 DEBUG [3085]: Closing database connection -- 04:34:44.868 SQL [3085]: pgsql_close() -- 04:34:44.899 INFO [3085]: COREGRADE is starting... -- 04:34:44.899 INFO [3085]: Version from config: 1.0 -- 04:34:44.899 DEBUG [3085]: Connecting to database... -- 04:34:44.899 DEBUG [3085]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:34:44.899 SQL [3085]: pgsql_db_connect() -- 04:34:44.903 DEBUG [3085]: Database connection successful -- 04:34:44.903 INFO [3085]: _SERVER found -- 04:34:44.903 INFO [3085]: REMOTE_ADDR = 10.0.0.15 -- 04:34:44.903 INFO [3085]: SERVER_NAME = oameye.works.coregrade.com -- 04:34:44.903 INFO [3085]: QUERY_STRING = -- 04:34:44.903 INFO [3085]: HTTP_X_FORWARDED_FOR = 66.249.65.180 -- 04:34:44.948 INFO [3085]: COREGRADE is stopping... -- 04:34:44.948 DEBUG [3085]: Closing database connection -- 04:34:44.948 SQL [3085]: pgsql_close() -- 05:47:55.849 INFO [3086]: COREGRADE is starting... -- 05:47:55.849 INFO [3086]: Version from config: 1.0 -- 05:47:55.849 DEBUG [3086]: Connecting to database... -- 05:47:55.849 DEBUG [3086]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:47:55.849 SQL [3086]: pgsql_db_connect() -- 05:47:55.854 DEBUG [3086]: Database connection successful -- 05:47:55.854 INFO [3086]: _SERVER found -- 05:47:55.854 INFO [3086]: REMOTE_ADDR = 10.0.0.15 -- 05:47:55.854 INFO [3086]: SERVER_NAME = oameye.works.coregrade.com -- 05:47:55.854 INFO [3086]: QUERY_STRING = /solr/admin/info/system -- 05:47:55.854 INFO [3086]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 05:47:55.870 INFO [3086]: COREGRADE is stopping... -- 05:47:55.870 DEBUG [3086]: Closing database connection -- 05:47:55.870 SQL [3086]: pgsql_close() -- 05:57:03.878 INFO [3087]: COREGRADE is starting... -- 05:57:03.878 INFO [3087]: Version from config: 1.0 -- 05:57:03.878 DEBUG [3087]: Connecting to database... -- 05:57:03.878 DEBUG [3087]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:57:03.878 SQL [3087]: pgsql_db_connect() -- 05:57:03.882 DEBUG [3087]: Database connection successful -- 05:57:03.882 INFO [3087]: _SERVER found -- 05:57:03.882 INFO [3087]: REMOTE_ADDR = 10.0.0.15 -- 05:57:03.882 INFO [3087]: SERVER_NAME = oameye.works.coregrade.com -- 05:57:03.882 INFO [3087]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 05:57:03.882 INFO [3087]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 05:57:03.928 INFO [3087]: COREGRADE is stopping... -- 05:57:03.928 DEBUG [3087]: Closing database connection -- 05:57:03.928 SQL [3087]: pgsql_close() -- 05:57:04.133 INFO [3087]: COREGRADE is starting... -- 05:57:04.133 INFO [3087]: Version from config: 1.0 -- 05:57:04.133 DEBUG [3087]: Connecting to database... -- 05:57:04.133 DEBUG [3087]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:57:04.133 SQL [3087]: pgsql_db_connect() -- 05:57:04.137 DEBUG [3087]: Database connection successful -- 05:57:04.137 INFO [3087]: _SERVER found -- 05:57:04.137 INFO [3087]: REMOTE_ADDR = 10.0.0.15 -- 05:57:04.137 INFO [3087]: SERVER_NAME = oameye.works.coregrade.com -- 05:57:04.137 INFO [3087]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 05:57:04.137 INFO [3087]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 05:57:04.168 INFO [3087]: COREGRADE is stopping... -- 05:57:04.168 DEBUG [3087]: Closing database connection -- 05:57:04.169 SQL [3087]: pgsql_close() -- 06:14:34.187 INFO [3088]: COREGRADE is starting... -- 06:14:34.187 INFO [3088]: Version from config: 1.0 -- 06:14:34.187 DEBUG [3088]: Connecting to database... -- 06:14:34.187 DEBUG [3088]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:14:34.187 SQL [3088]: pgsql_db_connect() -- 06:14:34.192 DEBUG [3088]: Database connection successful -- 06:14:34.192 INFO [3088]: _SERVER found -- 06:14:34.192 INFO [3088]: REMOTE_ADDR = 10.0.0.15 -- 06:14:34.192 INFO [3088]: SERVER_NAME = oameye.works.coregrade.com -- 06:14:34.192 INFO [3088]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 06:14:34.192 INFO [3088]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 06:14:34.238 INFO [3088]: COREGRADE is stopping... -- 06:14:34.238 DEBUG [3088]: Closing database connection -- 06:14:34.238 SQL [3088]: pgsql_close() -- 09:45:59.935 INFO [3089]: COREGRADE is starting... -- 09:45:59.936 INFO [3089]: Version from config: 1.0 -- 09:45:59.936 DEBUG [3089]: Connecting to database... -- 09:45:59.936 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:45:59.936 SQL [3089]: pgsql_db_connect() -- 09:45:59.941 DEBUG [3089]: Database connection successful -- 09:45:59.941 INFO [3089]: _SERVER found -- 09:45:59.941 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 09:45:59.941 INFO [3089]: SERVER_NAME = oameye.works.coregrade.com -- 09:45:59.941 INFO [3089]: QUERY_STRING = /api/jsonws/invoke -- 09:45:59.941 INFO [3089]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 09:45:59.957 INFO [3089]: COREGRADE is stopping... -- 09:45:59.957 DEBUG [3089]: Closing database connection -- 09:45:59.957 SQL [3089]: pgsql_close() -- 13:51:33.056 INFO [4861]: COREGRADE is starting... -- 13:51:33.056 INFO [4861]: Version from config: 1.0 -- 13:51:33.056 DEBUG [4861]: Connecting to database... -- 13:51:33.056 DEBUG [4861]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:51:33.056 SQL [4861]: pgsql_db_connect() -- 13:51:33.062 DEBUG [4861]: Database connection successful -- 13:51:33.062 INFO [4861]: _SERVER found -- 13:51:33.062 INFO [4861]: REMOTE_ADDR = 10.0.0.15 -- 13:51:33.062 INFO [4861]: SERVER_NAME = oameye.works.coregrade.com -- 13:51:33.062 INFO [4861]: QUERY_STRING = -- 13:51:33.062 INFO [4861]: HTTP_X_FORWARDED_FOR = 62.210.10.77 -- 13:51:33.117 INFO [4861]: COREGRADE is stopping... -- 13:51:33.117 DEBUG [4861]: Closing database connection -- 13:51:33.117 SQL [4861]: pgsql_close() -- 20:59:38.059 INFO [3085]: COREGRADE is starting... -- 20:59:38.060 INFO [3085]: Version from config: 1.0 -- 20:59:38.060 DEBUG [3085]: Connecting to database... -- 20:59:38.060 DEBUG [3085]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:59:38.060 SQL [3085]: pgsql_db_connect() -- 20:59:38.065 DEBUG [3085]: Database connection successful -- 20:59:38.065 INFO [3085]: _SERVER found -- 20:59:38.065 INFO [3085]: REMOTE_ADDR = 10.0.0.15 -- 20:59:38.065 INFO [3085]: SERVER_NAME = oameye.works.coregrade.com -- 20:59:38.065 INFO [3085]: QUERY_STRING = /solr/admin/info/system -- 20:59:38.065 INFO [3085]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 20:59:38.078 INFO [3085]: COREGRADE is stopping... -- 20:59:38.078 DEBUG [3085]: Closing database connection -- 20:59:38.078 SQL [3085]: pgsql_close() -- 21:13:42.579 INFO [3086]: COREGRADE is starting... -- 21:13:42.580 INFO [3086]: Version from config: 1.0 -- 21:13:42.580 DEBUG [3086]: Connecting to database... -- 21:13:42.580 DEBUG [3086]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:13:42.580 SQL [3086]: pgsql_db_connect() -- 21:13:42.585 DEBUG [3086]: Database connection successful -- 21:13:42.585 INFO [3086]: _SERVER found -- 21:13:42.585 INFO [3086]: REMOTE_ADDR = 10.0.0.15 -- 21:13:42.585 INFO [3086]: SERVER_NAME = oameye.works.coregrade.com -- 21:13:42.585 INFO [3086]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 21:13:42.585 INFO [3086]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 21:13:42.630 INFO [3086]: COREGRADE is stopping... -- 21:13:42.630 DEBUG [3086]: Closing database connection -- 21:13:42.630 SQL [3086]: pgsql_close() -- 21:14:19.936 INFO [3087]: COREGRADE is starting... -- 21:14:19.936 INFO [3087]: Version from config: 1.0 -- 21:14:19.936 DEBUG [3087]: Connecting to database... -- 21:14:19.936 DEBUG [3087]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:14:19.936 SQL [3087]: pgsql_db_connect() -- 21:14:19.940 DEBUG [3087]: Database connection successful -- 21:14:19.940 INFO [3087]: _SERVER found -- 21:14:19.940 INFO [3087]: REMOTE_ADDR = 10.0.0.15 -- 21:14:19.940 INFO [3087]: SERVER_NAME = oameye.works.coregrade.com -- 21:14:19.940 INFO [3087]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 21:14:19.940 INFO [3087]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 21:14:19.972 INFO [3087]: COREGRADE is stopping... -- 21:14:19.973 DEBUG [3087]: Closing database connection -- 21:14:19.973 SQL [3087]: pgsql_close() -- 21:30:34.732 INFO [3088]: COREGRADE is starting... -- 21:30:34.733 INFO [3088]: Version from config: 1.0 -- 21:30:34.733 DEBUG [3088]: Connecting to database... -- 21:30:34.733 DEBUG [3088]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:30:34.733 SQL [3088]: pgsql_db_connect() -- 21:30:34.737 DEBUG [3088]: Database connection successful -- 21:30:34.737 INFO [3088]: _SERVER found -- 21:30:34.737 INFO [3088]: REMOTE_ADDR = 10.0.0.15 -- 21:30:34.737 INFO [3088]: SERVER_NAME = oameye.works.coregrade.com -- 21:30:34.737 INFO [3088]: QUERY_STRING = /robots.txt -- 21:30:34.737 INFO [3088]: HTTP_X_FORWARDED_FOR = 66.249.65.182 -- 21:30:34.752 INFO [3088]: COREGRADE is stopping... -- 21:30:34.753 DEBUG [3088]: Closing database connection -- 21:30:34.753 SQL [3088]: pgsql_close() -- 21:30:34.856 INFO [3089]: COREGRADE is starting... -- 21:30:34.856 INFO [3089]: Version from config: 1.0 -- 21:30:34.856 DEBUG [3089]: Connecting to database... -- 21:30:34.856 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:30:34.856 SQL [3089]: pgsql_db_connect() -- 21:30:34.860 DEBUG [3089]: Database connection successful -- 21:30:34.860 INFO [3089]: _SERVER found -- 21:30:34.860 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 21:30:34.860 INFO [3089]: SERVER_NAME = oameye.works.coregrade.com -- 21:30:34.860 INFO [3089]: QUERY_STRING = -- 21:30:34.860 INFO [3089]: HTTP_X_FORWARDED_FOR = 66.249.65.184 -- 21:30:34.903 INFO [3089]: COREGRADE is stopping... -- 21:30:34.903 DEBUG [3089]: Closing database connection -- 21:30:34.903 SQL [3089]: pgsql_close() -- 21:30:50.621 INFO [3085]: COREGRADE is starting... -- 21:30:50.621 INFO [3085]: Version from config: 1.0 -- 21:30:50.621 DEBUG [3085]: Connecting to database... -- 21:30:50.621 DEBUG [3085]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:30:50.621 SQL [3085]: pgsql_db_connect() -- 21:30:50.625 DEBUG [3085]: Database connection successful -- 21:30:50.625 INFO [3085]: _SERVER found -- 21:30:50.625 INFO [3085]: REMOTE_ADDR = 10.0.0.15 -- 21:30:50.625 INFO [3085]: SERVER_NAME = oameye.works.coregrade.com -- 21:30:50.625 INFO [3085]: QUERY_STRING = /favicon.ico -- 21:30:50.625 INFO [3085]: HTTP_X_FORWARDED_FOR = 66.249.65.180 -- 21:30:50.637 INFO [3085]: COREGRADE is stopping... -- 21:30:50.637 DEBUG [3085]: Closing database connection -- 21:30:50.637 SQL [3085]: pgsql_close() -- 21:32:57.062 INFO [3086]: COREGRADE is starting... -- 21:32:57.063 INFO [3086]: Version from config: 1.0 -- 21:32:57.063 DEBUG [3086]: Connecting to database... -- 21:32:57.063 DEBUG [3086]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:32:57.063 SQL [3086]: pgsql_db_connect() -- 21:32:57.067 DEBUG [3086]: Database connection successful -- 21:32:57.067 INFO [3086]: _SERVER found -- 21:32:57.067 INFO [3086]: REMOTE_ADDR = 10.0.0.15 -- 21:32:57.067 INFO [3086]: SERVER_NAME = oameye.works.coregrade.com -- 21:32:57.067 INFO [3086]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 21:32:57.067 INFO [3086]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 21:32:57.099 INFO [3086]: COREGRADE is stopping... -- 21:32:57.099 DEBUG [3086]: Closing database connection -- 21:32:57.099 SQL [3086]: pgsql_close() -- 22:09:50.118 INFO [3087]: COREGRADE is starting... -- 22:09:50.118 INFO [3087]: Version from config: 1.0 -- 22:09:50.118 DEBUG [3087]: Connecting to database... -- 22:09:50.118 DEBUG [3087]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:09:50.118 SQL [3087]: pgsql_db_connect() -- 22:09:50.123 DEBUG [3087]: Database connection successful -- 22:09:50.123 INFO [3087]: _SERVER found -- 22:09:50.123 INFO [3087]: REMOTE_ADDR = 10.0.0.15 -- 22:09:50.123 INFO [3087]: SERVER_NAME = oameye.works.coregrade.com -- 22:09:50.123 INFO [3087]: QUERY_STRING = -- 22:09:50.123 INFO [3087]: HTTP_X_FORWARDED_FOR = 66.249.65.184 -- 22:09:50.157 INFO [3087]: COREGRADE is stopping... -- 22:09:50.157 DEBUG [3087]: Closing database connection -- 22:09:50.157 SQL [3087]: pgsql_close() -- 22:40:29.720 INFO [25721]: COREGRADE is starting... -- 22:40:29.720 INFO [25721]: Version from config: 1.0 -- 22:40:29.720 DEBUG [25721]: Connecting to database... -- 22:40:29.720 DEBUG [25721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:40:29.720 SQL [25721]: pgsql_db_connect() -- 22:40:29.725 DEBUG [25721]: Database connection successful -- 22:40:29.725 INFO [25721]: _SERVER found -- 22:40:29.725 INFO [25721]: REMOTE_ADDR = 10.0.0.15 -- 22:40:29.725 INFO [25721]: SERVER_NAME = oameye.works.coregrade.com -- 22:40:29.725 INFO [25721]: QUERY_STRING = /wp-login.php -- 22:40:29.725 INFO [25721]: HTTP_X_FORWARDED_FOR = 167.172.184.1 -- 22:40:29.740 INFO [25721]: COREGRADE is stopping... -- 22:40:29.740 DEBUG [25721]: Closing database connection -- 22:40:29.740 SQL [25721]: pgsql_close() -- 23:14:31.365 INFO [25724]: COREGRADE is starting... -- 23:14:31.365 INFO [25724]: Version from config: 1.0 -- 23:14:31.365 DEBUG [25724]: Connecting to database... -- 23:14:31.365 DEBUG [25724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:14:31.365 SQL [25724]: pgsql_db_connect() -- 23:14:31.370 DEBUG [25724]: Database connection successful -- 23:14:31.370 INFO [25724]: _SERVER found -- 23:14:31.370 INFO [25724]: REMOTE_ADDR = 10.0.0.15 -- 23:14:31.370 INFO [25724]: SERVER_NAME = oameye.works.coregrade.com -- 23:14:31.370 INFO [25724]: QUERY_STRING = -- 23:14:31.370 INFO [25724]: HTTP_X_FORWARDED_FOR = 198.108.66.245 -- 23:14:31.416 INFO [25724]: COREGRADE is stopping... -- 23:14:31.416 DEBUG [25724]: Closing database connection -- 23:14:31.416 SQL [25724]: pgsql_close() -- 23:27:11.579 INFO [3089]: COREGRADE is starting... -- 23:27:11.579 INFO [3089]: Version from config: 1.0 -- 23:27:11.579 DEBUG [3089]: Connecting to database... -- 23:27:11.579 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:11.579 SQL [3089]: pgsql_db_connect() -- 23:27:11.583 DEBUG [3089]: Database connection successful -- 23:27:11.583 INFO [3089]: _SERVER found -- 23:27:11.583 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 23:27:11.583 INFO [3089]: SERVER_NAME = oameye.works.coregrade.com -- 23:27:11.583 INFO [3089]: QUERY_STRING = /favicon.ico -- 23:27:11.583 INFO [3089]: HTTP_X_FORWARDED_FOR = 66.249.65.180 -- 23:27:11.597 INFO [3089]: COREGRADE is stopping... -- 23:27:11.598 DEBUG [3089]: Closing database connection -- 23:27:11.598 SQL [3089]: pgsql_close() -- 23:27:57.258 INFO [4861]: COREGRADE is starting... -- 23:27:57.259 INFO [4861]: Version from config: 1.0 -- 23:27:57.259 DEBUG [4861]: Connecting to database... -- 23:27:57.259 DEBUG [4861]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:27:57.259 SQL [4861]: pgsql_db_connect() -- 23:27:57.263 DEBUG [4861]: Database connection successful -- 23:27:57.263 INFO [4861]: _SERVER found -- 23:27:57.263 INFO [4861]: REMOTE_ADDR = 10.0.0.15 -- 23:27:57.263 INFO [4861]: SERVER_NAME = oameye.works.coregrade.com -- 23:27:57.263 INFO [4861]: QUERY_STRING = /favicon.ico -- 23:27:57.263 INFO [4861]: HTTP_X_FORWARDED_FOR = 66.249.65.182 -- 23:27:57.279 INFO [4861]: COREGRADE is stopping... -- 23:27:57.279 DEBUG [4861]: Closing database connection -- 23:27:57.279 SQL [4861]: pgsql_close() -- 23:48:47.241 INFO [3088]: COREGRADE is starting... -- 23:48:47.241 INFO [3088]: Version from config: 1.0 -- 23:48:47.241 DEBUG [3088]: Connecting to database... -- 23:48:47.241 DEBUG [3088]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:48:47.241 SQL [3088]: pgsql_db_connect() -- 23:48:47.246 DEBUG [3088]: Database connection successful -- 23:48:47.246 INFO [3088]: _SERVER found -- 23:48:47.246 INFO [3088]: REMOTE_ADDR = 10.0.0.15 -- 23:48:47.246 INFO [3088]: SERVER_NAME = oameye.works.coregrade.com -- 23:48:47.246 INFO [3088]: QUERY_STRING = /.well-known/acme-challenge/Z6iY1klbb-ueNnPH7T7URmBuNWLY9mLOm0MSX1g2WHU -- 23:48:47.246 INFO [3088]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 23:48:47.262 INFO [3088]: COREGRADE is stopping... -- 23:48:47.262 DEBUG [3088]: Closing database connection -- 23:48:47.262 SQL [3088]: pgsql_close() -- 23:48:47.498 INFO [3088]: COREGRADE is starting... -- 23:48:47.498 INFO [3088]: Version from config: 1.0 -- 23:48:47.498 DEBUG [3088]: Connecting to database... -- 23:48:47.498 DEBUG [3088]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:48:47.498 SQL [3088]: pgsql_db_connect() -- 23:48:47.501 INFO [3086]: COREGRADE is starting... -- 23:48:47.501 INFO [3086]: Version from config: 1.0 -- 23:48:47.501 DEBUG [3086]: Connecting to database... -- 23:48:47.501 DEBUG [3086]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:48:47.501 SQL [3086]: pgsql_db_connect() -- 23:48:47.503 DEBUG [3088]: Database connection successful -- 23:48:47.503 INFO [3088]: _SERVER found -- 23:48:47.503 INFO [3088]: REMOTE_ADDR = 10.0.0.15 -- 23:48:47.503 INFO [3088]: SERVER_NAME = oameye.works.coregrade.com -- 23:48:47.503 INFO [3088]: QUERY_STRING = /.well-known/acme-challenge/Z6iY1klbb-ueNnPH7T7URmBuNWLY9mLOm0MSX1g2WHU -- 23:48:47.503 INFO [3088]: HTTP_X_FORWARDED_FOR = 34.222.229.130 -- 23:48:47.515 INFO [3088]: COREGRADE is stopping... -- 23:48:47.515 DEBUG [3088]: Closing database connection -- 23:48:47.515 SQL [3088]: pgsql_close() -- 23:48:47.505 DEBUG [3086]: Database connection successful -- 23:48:47.505 INFO [3086]: _SERVER found -- 23:48:47.505 INFO [3086]: REMOTE_ADDR = 10.0.0.15 -- 23:48:47.505 INFO [3086]: SERVER_NAME = oameye.works.coregrade.com -- 23:48:47.505 INFO [3086]: QUERY_STRING = /.well-known/acme-challenge/Z6iY1klbb-ueNnPH7T7URmBuNWLY9mLOm0MSX1g2WHU -- 23:48:47.505 INFO [3086]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 23:48:47.517 INFO [3086]: COREGRADE is stopping... -- 23:48:47.517 DEBUG [3086]: Closing database connection -- 23:48:47.517 SQL [3086]: pgsql_close() -- 00:07:27.868 INFO [3087]: COREGRADE is starting... -- 00:07:27.869 INFO [3087]: Version from config: 1.0 -- 00:07:27.869 DEBUG [3087]: Connecting to database... -- 00:07:27.869 DEBUG [3087]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:07:27.869 SQL [3087]: pgsql_db_connect() -- 00:07:27.873 DEBUG [3087]: Database connection successful -- 00:07:27.873 INFO [3087]: _SERVER found -- 00:07:27.873 INFO [3087]: REMOTE_ADDR = 10.0.0.15 -- 00:07:27.873 INFO [3087]: SERVER_NAME = tokslaw.works.coregrade.com -- 00:07:27.873 INFO [3087]: QUERY_STRING = /wp-login.php -- 00:07:27.873 INFO [3087]: HTTP_X_FORWARDED_FOR = 142.93.182.7 -- 00:07:27.886 INFO [3087]: COREGRADE is stopping... -- 00:07:27.886 DEBUG [3087]: Closing database connection -- 00:07:27.886 SQL [3087]: pgsql_close() -- 01:55:48.698 INFO [25724]: COREGRADE is starting... -- 01:55:48.698 INFO [25724]: Version from config: 1.0 -- 01:55:48.698 DEBUG [25724]: Connecting to database... -- 01:55:48.698 DEBUG [25724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:55:48.698 SQL [25724]: pgsql_db_connect() -- 01:55:48.703 DEBUG [25724]: Database connection successful -- 01:55:48.703 INFO [25724]: _SERVER found -- 01:55:48.703 INFO [25724]: REMOTE_ADDR = 10.0.0.15 -- 01:55:48.703 INFO [25724]: SERVER_NAME = oameye.works.coregrade.com -- 01:55:48.703 INFO [25724]: QUERY_STRING = /api/jsonws/invoke -- 01:55:48.703 INFO [25724]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 01:55:48.717 INFO [25724]: COREGRADE is stopping... -- 01:55:48.717 DEBUG [25724]: Closing database connection -- 01:55:48.717 SQL [25724]: pgsql_close() -- 04:52:56.285 INFO [3089]: COREGRADE is starting... -- 04:52:56.285 INFO [3089]: Version from config: 1.0 -- 04:52:56.285 DEBUG [3089]: Connecting to database... -- 04:52:56.285 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:52:56.285 SQL [3089]: pgsql_db_connect() -- 04:52:56.290 DEBUG [3089]: Database connection successful -- 04:52:56.290 INFO [3089]: _SERVER found -- 04:52:56.290 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 04:52:56.290 INFO [3089]: SERVER_NAME = oameye.works.coregrade.com -- 04:52:56.290 INFO [3089]: QUERY_STRING = /solr/admin/info/system -- 04:52:56.290 INFO [3089]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 04:52:56.304 INFO [3089]: COREGRADE is stopping... -- 04:52:56.304 DEBUG [3089]: Closing database connection -- 04:52:56.304 SQL [3089]: pgsql_close() -- 04:55:58.222 INFO [4861]: COREGRADE is starting... -- 04:55:58.222 INFO [4861]: Version from config: 1.0 -- 04:55:58.222 DEBUG [4861]: Connecting to database... -- 04:55:58.222 DEBUG [4861]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:55:58.222 SQL [4861]: pgsql_db_connect() -- 04:55:58.227 DEBUG [4861]: Database connection successful -- 04:55:58.227 INFO [4861]: _SERVER found -- 04:55:58.227 INFO [4861]: REMOTE_ADDR = 10.0.0.15 -- 04:55:58.227 INFO [4861]: SERVER_NAME = oameye.works.coregrade.com -- 04:55:58.227 INFO [4861]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 04:55:58.227 INFO [4861]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 04:55:58.266 INFO [4861]: COREGRADE is stopping... -- 04:55:58.266 DEBUG [4861]: Closing database connection -- 04:55:58.266 SQL [4861]: pgsql_close() -- 04:56:05.959 INFO [3088]: COREGRADE is starting... -- 04:56:05.959 INFO [3088]: Version from config: 1.0 -- 04:56:05.959 DEBUG [3088]: Connecting to database... -- 04:56:05.959 DEBUG [3088]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:56:05.959 SQL [3088]: pgsql_db_connect() -- 04:56:05.963 DEBUG [3088]: Database connection successful -- 04:56:05.963 INFO [3088]: _SERVER found -- 04:56:05.963 INFO [3088]: REMOTE_ADDR = 10.0.0.15 -- 04:56:05.963 INFO [3088]: SERVER_NAME = oameye.works.coregrade.com -- 04:56:05.963 INFO [3088]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 04:56:05.963 INFO [3088]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 04:56:05.998 INFO [3088]: COREGRADE is stopping... -- 04:56:05.998 DEBUG [3088]: Closing database connection -- 04:56:05.998 SQL [3088]: pgsql_close() -- 05:03:27.635 INFO [3086]: COREGRADE is starting... -- 05:03:27.636 INFO [3086]: Version from config: 1.0 -- 05:03:27.636 DEBUG [3086]: Connecting to database... -- 05:03:27.636 DEBUG [3086]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:03:27.636 SQL [3086]: pgsql_db_connect() -- 05:03:27.640 DEBUG [3086]: Database connection successful -- 05:03:27.640 INFO [3086]: _SERVER found -- 05:03:27.640 INFO [3086]: REMOTE_ADDR = 10.0.0.15 -- 05:03:27.640 INFO [3086]: SERVER_NAME = oameye.works.coregrade.com -- 05:03:27.640 INFO [3086]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 05:03:27.640 INFO [3086]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 05:03:27.672 INFO [3086]: COREGRADE is stopping... -- 05:03:27.672 DEBUG [3086]: Closing database connection -- 05:03:27.672 SQL [3086]: pgsql_close() -- 06:27:36.649 INFO [3085]: COREGRADE is starting... -- 06:27:36.649 INFO [3085]: Version from config: 1.0 -- 06:27:36.649 DEBUG [3085]: Connecting to database... -- 06:27:36.649 DEBUG [3085]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:27:36.649 SQL [3085]: pgsql_db_connect() -- 06:27:36.654 DEBUG [3085]: Database connection successful -- 06:27:36.654 INFO [3085]: _SERVER found -- 06:27:36.654 INFO [3085]: REMOTE_ADDR = 10.0.0.15 -- 06:27:36.654 INFO [3085]: SERVER_NAME = oameye.works.coregrade.com -- 06:27:36.654 INFO [3085]: QUERY_STRING = /api/jsonws/invoke -- 06:27:36.654 INFO [3085]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 06:27:36.668 INFO [3085]: COREGRADE is stopping... -- 06:27:36.668 DEBUG [3085]: Closing database connection -- 06:27:36.668 SQL [3085]: pgsql_close() -- 06:58:26.258 INFO [3087]: COREGRADE is starting... -- 06:58:26.259 INFO [3087]: Version from config: 1.0 -- 06:58:26.259 DEBUG [3087]: Connecting to database... -- 06:58:26.259 DEBUG [3087]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:58:26.259 SQL [3087]: pgsql_db_connect() -- 06:58:26.263 DEBUG [3087]: Database connection successful -- 06:58:26.263 INFO [3087]: _SERVER found -- 06:58:26.263 INFO [3087]: REMOTE_ADDR = 10.0.0.15 -- 06:58:26.263 INFO [3087]: SERVER_NAME = oameye.works.coregrade.com -- 06:58:26.263 INFO [3087]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.604014718.1591535222 -- 06:58:26.263 INFO [3087]: QUERY_STRING = /auth -- 06:58:26.263 INFO [3087]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:58:26.298 INFO [3087]: COREGRADE is stopping... -- 06:58:26.298 DEBUG [3087]: Closing database connection -- 06:58:26.298 SQL [3087]: pgsql_close() -- 06:58:26.567 INFO [3087]: COREGRADE is starting... -- 06:58:26.567 INFO [3087]: Version from config: 1.0 -- 06:58:26.567 DEBUG [3087]: Connecting to database... -- 06:58:26.567 DEBUG [3087]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:58:26.567 SQL [3087]: pgsql_db_connect() -- 06:58:26.571 DEBUG [3087]: Database connection successful -- 06:58:26.571 INFO [3087]: _SERVER found -- 06:58:26.571 INFO [3087]: REMOTE_ADDR = 10.0.0.15 -- 06:58:26.571 INFO [3087]: SERVER_NAME = oameye.works.coregrade.com -- 06:58:26.571 INFO [3087]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.604014718.1591535222; ci_session=ubrsfj4moe549in40nnllgmqu6ap6o9r -- 06:58:26.571 INFO [3087]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 06:58:26.571 INFO [3087]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 06:58:26.582 INFO [3087]: COREGRADE is stopping... -- 06:58:26.582 DEBUG [3087]: Closing database connection -- 06:58:26.582 SQL [3087]: pgsql_close() -- 07:17:50.166 INFO [25721]: COREGRADE is starting... -- 07:17:50.167 INFO [25721]: Version from config: 1.0 -- 07:17:50.167 DEBUG [25721]: Connecting to database... -- 07:17:50.167 DEBUG [25721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:17:50.167 SQL [25721]: pgsql_db_connect() -- 07:17:50.171 DEBUG [25721]: Database connection successful -- 07:17:50.171 INFO [25721]: _SERVER found -- 07:17:50.171 INFO [25721]: REMOTE_ADDR = 10.0.0.15 -- 07:17:50.171 INFO [25721]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:17:50.171 INFO [25721]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.604014718.1591535222 -- 07:17:50.171 INFO [25721]: QUERY_STRING = -- 07:17:50.171 INFO [25721]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:17:50.213 INFO [25721]: COREGRADE is stopping... -- 07:17:50.213 DEBUG [25721]: Closing database connection -- 07:17:50.213 SQL [25721]: pgsql_close() -- 07:17:50.297 INFO [25721]: COREGRADE is starting... -- 07:17:50.297 INFO [25721]: Version from config: 1.0 -- 07:17:50.297 DEBUG [25721]: Connecting to database... -- 07:17:50.297 DEBUG [25721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:17:50.297 SQL [25721]: pgsql_db_connect() -- 07:17:50.301 DEBUG [25721]: Database connection successful -- 07:17:50.301 INFO [25721]: _SERVER found -- 07:17:50.301 INFO [25721]: REMOTE_ADDR = 10.0.0.15 -- 07:17:50.301 INFO [25721]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:17:50.301 INFO [25721]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.604014718.1591535222; ci_session=v9954tjbnkqn2sb48371t7hj086rlcgv -- 07:17:50.301 INFO [25721]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 07:17:50.301 INFO [25721]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:17:50.313 INFO [25721]: COREGRADE is stopping... -- 07:17:50.313 DEBUG [25721]: Closing database connection -- 07:17:50.313 SQL [25721]: pgsql_close() -- 07:17:50.328 INFO [25721]: COREGRADE is starting... -- 07:17:50.328 INFO [25721]: Version from config: 1.0 -- 07:17:50.328 DEBUG [25721]: Connecting to database... -- 07:17:50.328 DEBUG [25721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:17:50.328 SQL [25721]: pgsql_db_connect() -- 07:17:50.332 DEBUG [25721]: Database connection successful -- 07:17:50.332 INFO [25721]: _SERVER found -- 07:17:50.332 INFO [25721]: REMOTE_ADDR = 10.0.0.15 -- 07:17:50.332 INFO [25721]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:17:50.332 INFO [25721]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.604014718.1591535222; ci_session=v9954tjbnkqn2sb48371t7hj086rlcgv -- 07:17:50.332 INFO [25721]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 07:17:50.332 INFO [25721]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:17:50.344 INFO [25721]: COREGRADE is stopping... -- 07:17:50.344 DEBUG [25721]: Closing database connection -- 07:17:50.344 SQL [25721]: pgsql_close() -- 07:17:50.357 INFO [25721]: COREGRADE is starting... -- 07:17:50.357 INFO [25721]: Version from config: 1.0 -- 07:17:50.357 DEBUG [25721]: Connecting to database... -- 07:17:50.357 DEBUG [25721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:17:50.357 SQL [25721]: pgsql_db_connect() -- 07:17:50.361 DEBUG [25721]: Database connection successful -- 07:17:50.361 INFO [25721]: _SERVER found -- 07:17:50.361 INFO [25721]: REMOTE_ADDR = 10.0.0.15 -- 07:17:50.361 INFO [25721]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 07:17:50.361 INFO [25721]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.604014718.1591535222; ci_session=v9954tjbnkqn2sb48371t7hj086rlcgv -- 07:17:50.361 INFO [25721]: QUERY_STRING = /assets/images/savvy-block.png -- 07:17:50.361 INFO [25721]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 07:17:50.373 INFO [25721]: COREGRADE is stopping... -- 07:17:50.373 DEBUG [25721]: Closing database connection -- 07:17:50.373 SQL [25721]: pgsql_close() -- 07:18:44.258 INFO [25724]: COREGRADE is starting... -- 07:18:44.258 INFO [25724]: Version from config: 1.0 -- 07:18:44.258 DEBUG [25724]: Connecting to database... -- 07:18:44.258 DEBUG [25724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:18:44.258 SQL [25724]: pgsql_db_connect() -- 07:18:44.262 DEBUG [25724]: Database connection successful -- 07:18:44.262 INFO [25724]: _SERVER found -- 07:18:44.262 INFO [25724]: REMOTE_ADDR = 10.0.0.15 -- 07:18:44.262 INFO [25724]: SERVER_NAME = oameye.works.coregrade.com -- 07:18:44.262 INFO [25724]: QUERY_STRING = -- 07:18:44.262 INFO [25724]: HTTP_X_FORWARDED_FOR = 66.249.65.180 -- 07:18:44.296 INFO [25724]: COREGRADE is stopping... -- 07:18:44.296 DEBUG [25724]: Closing database connection -- 07:18:44.296 SQL [25724]: pgsql_close() -- 10:00:01.551 INFO [3089]: COREGRADE is starting... -- 10:00:01.551 INFO [3089]: Version from config: 1.0 -- 10:00:01.551 DEBUG [3089]: Connecting to database... -- 10:00:01.551 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:00:01.551 SQL [3089]: pgsql_db_connect() -- 10:00:01.565 DEBUG [3089]: Database connection successful -- 10:00:01.565 INFO [3089]: _SERVER found -- 10:00:01.565 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 10:00:01.565 INFO [3089]: SERVER_NAME = oameye.works.coregrade.com -- 10:00:01.565 INFO [3089]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 10:00:01.565 INFO [3089]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 10:00:01.590 INFO [3089]: COREGRADE is stopping... -- 10:00:01.590 DEBUG [3089]: Closing database connection -- 10:00:01.590 SQL [3089]: pgsql_close() -- 10:40:08.834 INFO [4861]: COREGRADE is starting... -- 10:40:08.834 INFO [4861]: Version from config: 1.0 -- 10:40:08.834 DEBUG [4861]: Connecting to database... -- 10:40:08.834 DEBUG [4861]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:40:08.834 SQL [4861]: pgsql_db_connect() -- 10:40:08.839 DEBUG [4861]: Database connection successful -- 10:40:08.839 INFO [4861]: _SERVER found -- 10:40:08.839 INFO [4861]: REMOTE_ADDR = 10.0.0.15 -- 10:40:08.839 INFO [4861]: SERVER_NAME = oameye.works.coregrade.com -- 10:40:08.839 INFO [4861]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 10:40:08.839 INFO [4861]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 10:40:08.853 INFO [4861]: COREGRADE is stopping... -- 10:40:08.853 DEBUG [4861]: Closing database connection -- 10:40:08.853 SQL [4861]: pgsql_close() -- 17:26:14.668 INFO [3088]: COREGRADE is starting... -- 17:26:14.668 INFO [3088]: Version from config: 1.0 -- 17:26:14.668 DEBUG [3088]: Connecting to database... -- 17:26:14.668 DEBUG [3088]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:26:14.668 SQL [3088]: pgsql_db_connect() -- 17:26:14.673 DEBUG [3088]: Database connection successful -- 17:26:14.673 INFO [3088]: _SERVER found -- 17:26:14.673 INFO [3088]: REMOTE_ADDR = 10.0.0.15 -- 17:26:14.673 INFO [3088]: SERVER_NAME = oameye.works.coregrade.com -- 17:26:14.673 INFO [3088]: QUERY_STRING = /robots.txt -- 17:26:14.673 INFO [3088]: HTTP_X_FORWARDED_FOR = 66.249.65.184 -- 17:26:14.689 INFO [3088]: COREGRADE is stopping... -- 17:26:14.689 DEBUG [3088]: Closing database connection -- 17:26:14.689 SQL [3088]: pgsql_close() -- 17:26:14.732 INFO [3088]: COREGRADE is starting... -- 17:26:14.732 INFO [3088]: Version from config: 1.0 -- 17:26:14.732 DEBUG [3088]: Connecting to database... -- 17:26:14.732 DEBUG [3088]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:26:14.732 SQL [3088]: pgsql_db_connect() -- 17:26:14.736 DEBUG [3088]: Database connection successful -- 17:26:14.736 INFO [3088]: _SERVER found -- 17:26:14.736 INFO [3088]: REMOTE_ADDR = 10.0.0.15 -- 17:26:14.736 INFO [3088]: SERVER_NAME = oameye.works.coregrade.com -- 17:26:14.736 INFO [3088]: QUERY_STRING = -- 17:26:14.736 INFO [3088]: HTTP_X_FORWARDED_FOR = 66.249.65.184 -- 17:26:14.771 INFO [3088]: COREGRADE is stopping... -- 17:26:14.771 DEBUG [3088]: Closing database connection -- 17:26:14.771 SQL [3088]: pgsql_close() -- 23:18:10.782 INFO [3086]: COREGRADE is starting... -- 23:18:10.783 INFO [3086]: Version from config: 1.0 -- 23:18:10.783 DEBUG [3086]: Connecting to database... -- 23:18:10.783 DEBUG [3086]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:18:10.783 SQL [3086]: pgsql_db_connect() -- 23:18:10.788 DEBUG [3086]: Database connection successful -- 23:18:10.788 INFO [3086]: _SERVER found -- 23:18:10.788 INFO [3086]: REMOTE_ADDR = 10.0.0.15 -- 23:18:10.788 INFO [3086]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:18:10.788 INFO [3086]: QUERY_STRING = /Telerik.Web.UI.WebResource.axd -- 23:18:10.788 INFO [3086]: HTTP_X_FORWARDED_FOR = 194.36.191.35 -- 23:18:10.801 INFO [3086]: COREGRADE is stopping... -- 23:18:10.801 DEBUG [3086]: Closing database connection -- 23:18:10.801 SQL [3086]: pgsql_close() -- 02:24:12.152 INFO [3085]: COREGRADE is starting... -- 02:24:12.153 INFO [3085]: Version from config: 1.0 -- 02:24:12.153 DEBUG [3085]: Connecting to database... -- 02:24:12.153 DEBUG [3085]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:24:12.153 SQL [3085]: pgsql_db_connect() -- 02:24:12.158 DEBUG [3085]: Database connection successful -- 02:24:12.158 INFO [3085]: _SERVER found -- 02:24:12.158 INFO [3085]: REMOTE_ADDR = 10.0.0.15 -- 02:24:12.158 INFO [3085]: SERVER_NAME = oameye.works.coregrade.com -- 02:24:12.158 INFO [3085]: QUERY_STRING = /t -- 02:24:12.158 INFO [3085]: HTTP_X_FORWARDED_FOR = 104.199.191.188 -- 02:24:12.172 INFO [3085]: COREGRADE is stopping... -- 02:24:12.172 DEBUG [3085]: Closing database connection -- 02:24:12.172 SQL [3085]: pgsql_close() -- 04:12:52.903 INFO [3087]: COREGRADE is starting... -- 04:12:52.903 INFO [3087]: Version from config: 1.0 -- 04:12:52.903 DEBUG [3087]: Connecting to database... -- 04:12:52.903 DEBUG [3087]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:12:52.903 SQL [3087]: pgsql_db_connect() -- 04:12:52.909 DEBUG [3087]: Database connection successful -- 04:12:52.909 INFO [3087]: _SERVER found -- 04:12:52.909 INFO [3087]: REMOTE_ADDR = 10.0.0.15 -- 04:12:52.909 INFO [3087]: SERVER_NAME = oameye.works.coregrade.com -- 04:12:52.909 INFO [3087]: QUERY_STRING = /.well-known/acme-challenge/Ps9nQ5_DMf5stF6Cwa7ZmAE9RCGahsiPcBeTzawryog -- 04:12:52.909 INFO [3087]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 04:12:52.922 INFO [3087]: COREGRADE is stopping... -- 04:12:52.922 DEBUG [3087]: Closing database connection -- 04:12:52.922 SQL [3087]: pgsql_close() -- 04:12:53.144 INFO [25724]: COREGRADE is starting... -- 04:12:53.144 INFO [25724]: Version from config: 1.0 -- 04:12:53.144 DEBUG [25724]: Connecting to database... -- 04:12:53.144 DEBUG [25724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:12:53.144 SQL [25724]: pgsql_db_connect() -- 04:12:53.148 DEBUG [25724]: Database connection successful -- 04:12:53.148 INFO [25724]: _SERVER found -- 04:12:53.148 INFO [25724]: REMOTE_ADDR = 10.0.0.15 -- 04:12:53.148 INFO [25724]: SERVER_NAME = oameye.works.coregrade.com -- 04:12:53.148 INFO [25724]: QUERY_STRING = /.well-known/acme-challenge/Ps9nQ5_DMf5stF6Cwa7ZmAE9RCGahsiPcBeTzawryog -- 04:12:53.148 INFO [25724]: HTTP_X_FORWARDED_FOR = 34.209.232.166 -- 04:12:53.164 INFO [25724]: COREGRADE is stopping... -- 04:12:53.164 DEBUG [25724]: Closing database connection -- 04:12:53.164 SQL [25724]: pgsql_close() -- 04:12:53.263 INFO [25724]: COREGRADE is starting... -- 04:12:53.263 INFO [25724]: Version from config: 1.0 -- 04:12:53.263 DEBUG [25724]: Connecting to database... -- 04:12:53.263 DEBUG [25724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:12:53.263 SQL [25724]: pgsql_db_connect() -- 04:12:53.274 INFO [4861]: COREGRADE is starting... -- 04:12:53.274 INFO [4861]: Version from config: 1.0 -- 04:12:53.274 DEBUG [4861]: Connecting to database... -- 04:12:53.274 DEBUG [4861]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:12:53.274 SQL [4861]: pgsql_db_connect() -- 04:12:53.267 DEBUG [25724]: Database connection successful -- 04:12:53.267 INFO [25724]: _SERVER found -- 04:12:53.267 INFO [25724]: REMOTE_ADDR = 10.0.0.15 -- 04:12:53.267 INFO [25724]: SERVER_NAME = oameye.works.coregrade.com -- 04:12:53.267 INFO [25724]: QUERY_STRING = /.well-known/acme-challenge/Ps9nQ5_DMf5stF6Cwa7ZmAE9RCGahsiPcBeTzawryog -- 04:12:53.267 INFO [25724]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 04:12:53.279 INFO [25724]: COREGRADE is stopping... -- 04:12:53.280 DEBUG [25724]: Closing database connection -- 04:12:53.280 SQL [25724]: pgsql_close() -- 04:12:53.279 DEBUG [4861]: Database connection successful -- 04:12:53.279 INFO [4861]: _SERVER found -- 04:12:53.279 INFO [4861]: REMOTE_ADDR = 10.0.0.15 -- 04:12:53.279 INFO [4861]: SERVER_NAME = oameye.works.coregrade.com -- 04:12:53.279 INFO [4861]: QUERY_STRING = /.well-known/acme-challenge/Ps9nQ5_DMf5stF6Cwa7ZmAE9RCGahsiPcBeTzawryog -- 04:12:53.279 INFO [4861]: HTTP_X_FORWARDED_FOR = 18.196.96.172 -- 04:12:53.296 INFO [4861]: COREGRADE is stopping... -- 04:12:53.297 DEBUG [4861]: Closing database connection -- 04:12:53.297 SQL [4861]: pgsql_close() -- 06:49:50.664 INFO [3088]: COREGRADE is starting... -- 06:49:50.665 INFO [3088]: Version from config: 1.0 -- 06:49:50.665 DEBUG [3088]: Connecting to database... -- 06:49:50.665 DEBUG [3088]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:49:50.665 SQL [3088]: pgsql_db_connect() -- 06:49:50.670 DEBUG [3088]: Database connection successful -- 06:49:50.670 INFO [3088]: _SERVER found -- 06:49:50.670 INFO [3088]: REMOTE_ADDR = 10.0.0.15 -- 06:49:50.670 INFO [3088]: SERVER_NAME = oameye.works.coregrade.com -- 06:49:50.670 INFO [3088]: QUERY_STRING = /solr/admin/info/system -- 06:49:50.670 INFO [3088]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 06:49:50.686 INFO [3088]: COREGRADE is stopping... -- 06:49:50.686 DEBUG [3088]: Closing database connection -- 06:49:50.686 SQL [3088]: pgsql_close() -- 06:51:48.626 INFO [3086]: COREGRADE is starting... -- 06:51:48.627 INFO [3086]: Version from config: 1.0 -- 06:51:48.627 DEBUG [3086]: Connecting to database... -- 06:51:48.627 DEBUG [3086]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:51:48.627 SQL [3086]: pgsql_db_connect() -- 06:51:48.631 DEBUG [3086]: Database connection successful -- 06:51:48.631 INFO [3086]: _SERVER found -- 06:51:48.631 INFO [3086]: REMOTE_ADDR = 10.0.0.15 -- 06:51:48.631 INFO [3086]: SERVER_NAME = oameye.works.coregrade.com -- 06:51:48.631 INFO [3086]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 06:51:48.631 INFO [3086]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 06:51:48.665 INFO [3086]: COREGRADE is stopping... -- 06:51:48.665 DEBUG [3086]: Closing database connection -- 06:51:48.665 SQL [3086]: pgsql_close() -- 06:52:01.431 INFO [3085]: COREGRADE is starting... -- 06:52:01.431 INFO [3085]: Version from config: 1.0 -- 06:52:01.431 DEBUG [3085]: Connecting to database... -- 06:52:01.431 DEBUG [3085]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:52:01.431 SQL [3085]: pgsql_db_connect() -- 06:52:01.435 DEBUG [3085]: Database connection successful -- 06:52:01.435 INFO [3085]: _SERVER found -- 06:52:01.435 INFO [3085]: REMOTE_ADDR = 10.0.0.15 -- 06:52:01.435 INFO [3085]: SERVER_NAME = oameye.works.coregrade.com -- 06:52:01.435 INFO [3085]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 06:52:01.435 INFO [3085]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 06:52:01.471 INFO [3085]: COREGRADE is stopping... -- 06:52:01.471 DEBUG [3085]: Closing database connection -- 06:52:01.471 SQL [3085]: pgsql_close() -- 06:57:05.659 INFO [25575]: COREGRADE is starting... -- 06:57:05.660 INFO [25575]: Version from config: 1.0 -- 06:57:05.660 DEBUG [25575]: Connecting to database... -- 06:57:05.660 DEBUG [25575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:57:05.660 SQL [25575]: pgsql_db_connect() -- 06:57:05.664 DEBUG [25575]: Database connection successful -- 06:57:05.664 INFO [25575]: _SERVER found -- 06:57:05.664 INFO [25575]: REMOTE_ADDR = 10.0.0.15 -- 06:57:05.664 INFO [25575]: SERVER_NAME = oameye.works.coregrade.com -- 06:57:05.664 INFO [25575]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 06:57:05.664 INFO [25575]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 06:57:05.711 INFO [25575]: COREGRADE is stopping... -- 06:57:05.711 DEBUG [25575]: Closing database connection -- 06:57:05.711 SQL [25575]: pgsql_close() -- 07:55:04.579 INFO [25576]: COREGRADE is starting... -- 07:55:04.580 INFO [25576]: Version from config: 1.0 -- 07:55:04.580 DEBUG [25576]: Connecting to database... -- 07:55:04.580 DEBUG [25576]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:55:04.580 SQL [25576]: pgsql_db_connect() -- 07:55:04.585 DEBUG [25576]: Database connection successful -- 07:55:04.585 INFO [25576]: _SERVER found -- 07:55:04.585 INFO [25576]: REMOTE_ADDR = 10.0.0.15 -- 07:55:04.585 INFO [25576]: SERVER_NAME = oameye.works.coregrade.com -- 07:55:04.585 INFO [25576]: QUERY_STRING = /api/jsonws/invoke -- 07:55:04.585 INFO [25576]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 07:55:04.601 INFO [25576]: COREGRADE is stopping... -- 07:55:04.601 DEBUG [25576]: Closing database connection -- 07:55:04.601 SQL [25576]: pgsql_close() -- 10:13:39.231 INFO [3087]: COREGRADE is starting... -- 10:13:39.231 INFO [3087]: Version from config: 1.0 -- 10:13:39.231 DEBUG [3087]: Connecting to database... -- 10:13:39.231 DEBUG [3087]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:13:39.231 SQL [3087]: pgsql_db_connect() -- 10:13:39.236 DEBUG [3087]: Database connection successful -- 10:13:39.236 INFO [3087]: _SERVER found -- 10:13:39.236 INFO [3087]: REMOTE_ADDR = 10.0.0.15 -- 10:13:39.236 INFO [3087]: SERVER_NAME = oameye.works.coregrade.com -- 10:13:39.236 INFO [3087]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 10:13:39.236 INFO [3087]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 10:13:39.250 INFO [3087]: COREGRADE is stopping... -- 10:13:39.250 DEBUG [3087]: Closing database connection -- 10:13:39.250 SQL [3087]: pgsql_close() -- 10:39:49.632 INFO [25721]: COREGRADE is starting... -- 10:39:49.632 INFO [25721]: Version from config: 1.0 -- 10:39:49.632 DEBUG [25721]: Connecting to database... -- 10:39:49.632 DEBUG [25721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:39:49.632 SQL [25721]: pgsql_db_connect() -- 10:39:49.637 DEBUG [25721]: Database connection successful -- 10:39:49.637 INFO [25721]: _SERVER found -- 10:39:49.637 INFO [25721]: REMOTE_ADDR = 10.0.0.15 -- 10:39:49.637 INFO [25721]: SERVER_NAME = oameye.works.coregrade.com -- 10:39:49.637 INFO [25721]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 10:39:49.637 INFO [25721]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 10:39:49.649 INFO [25721]: COREGRADE is stopping... -- 10:39:49.649 DEBUG [25721]: Closing database connection -- 10:39:49.649 SQL [25721]: pgsql_close() -- 13:29:26.616 INFO [3089]: COREGRADE is starting... -- 13:29:26.617 INFO [3089]: Version from config: 1.0 -- 13:29:26.617 DEBUG [3089]: Connecting to database... -- 13:29:26.617 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:26.617 SQL [3089]: pgsql_db_connect() -- 13:29:26.622 DEBUG [3089]: Database connection successful -- 13:29:26.622 INFO [3089]: _SERVER found -- 13:29:26.622 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 13:29:26.622 INFO [3089]: SERVER_NAME = oameye.works.coregrade.com -- 13:29:26.622 INFO [3089]: QUERY_STRING = -- 13:29:26.622 INFO [3089]: HTTP_X_FORWARDED_FOR = 192.35.168.144 -- 13:29:26.660 INFO [3089]: COREGRADE is stopping... -- 13:29:26.660 DEBUG [3089]: Closing database connection -- 13:29:26.660 SQL [3089]: pgsql_close() -- 20:53:28.887 INFO [25724]: COREGRADE is starting... -- 20:53:28.887 INFO [25724]: Version from config: 1.0 -- 20:53:28.887 DEBUG [25724]: Connecting to database... -- 20:53:28.887 DEBUG [25724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:53:28.887 SQL [25724]: pgsql_db_connect() -- 20:53:28.892 DEBUG [25724]: Database connection successful -- 20:53:28.892 INFO [25724]: _SERVER found -- 20:53:28.892 INFO [25724]: REMOTE_ADDR = 10.0.0.15 -- 20:53:28.892 INFO [25724]: SERVER_NAME = oameye.works.coregrade.com -- 20:53:28.892 INFO [25724]: QUERY_STRING = -- 20:53:28.892 INFO [25724]: HTTP_X_FORWARDED_FOR = 13.82.143.167 -- 20:53:28.931 INFO [25724]: COREGRADE is stopping... -- 20:53:28.931 DEBUG [25724]: Closing database connection -- 20:53:28.931 SQL [25724]: pgsql_close() -- 23:05:02.379 INFO [4861]: COREGRADE is starting... -- 23:05:02.380 INFO [4861]: Version from config: 1.0 -- 23:05:02.380 DEBUG [4861]: Connecting to database... -- 23:05:02.380 DEBUG [4861]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:05:02.380 SQL [4861]: pgsql_db_connect() -- 23:05:02.384 DEBUG [4861]: Database connection successful -- 23:05:02.384 INFO [4861]: _SERVER found -- 23:05:02.384 INFO [4861]: REMOTE_ADDR = 10.0.0.15 -- 23:05:02.384 INFO [4861]: SERVER_NAME = oameye.works.coregrade.com -- 23:05:02.384 INFO [4861]: QUERY_STRING = /wp-login.php -- 23:05:02.384 INFO [4861]: HTTP_X_FORWARDED_FOR = 192.95.29.220 -- 23:05:02.399 INFO [4861]: COREGRADE is stopping... -- 23:05:02.399 DEBUG [4861]: Closing database connection -- 23:05:02.399 SQL [4861]: pgsql_close() -- 23:06:23.499 INFO [3088]: COREGRADE is starting... -- 23:06:23.499 INFO [3088]: Version from config: 1.0 -- 23:06:23.499 DEBUG [3088]: Connecting to database... -- 23:06:23.499 DEBUG [3088]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:06:23.499 SQL [3088]: pgsql_db_connect() -- 23:06:23.504 DEBUG [3088]: Database connection successful -- 23:06:23.504 INFO [3088]: _SERVER found -- 23:06:23.504 INFO [3088]: REMOTE_ADDR = 10.0.0.15 -- 23:06:23.504 INFO [3088]: SERVER_NAME = oameye.works.coregrade.com -- 23:06:23.504 INFO [3088]: QUERY_STRING = /robots.txt -- 23:06:23.504 INFO [3088]: HTTP_X_FORWARDED_FOR = 192.95.29.220 -- 23:06:23.517 INFO [3088]: COREGRADE is stopping... -- 23:06:23.517 DEBUG [3088]: Closing database connection -- 23:06:23.517 SQL [3088]: pgsql_close() -- 01:39:08.886 INFO [3086]: COREGRADE is starting... -- 01:39:08.887 INFO [3086]: Version from config: 1.0 -- 01:39:08.887 DEBUG [3086]: Connecting to database... -- 01:39:08.887 DEBUG [3086]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:39:08.887 SQL [3086]: pgsql_db_connect() -- 01:39:08.892 DEBUG [3086]: Database connection successful -- 01:39:08.892 INFO [3086]: _SERVER found -- 01:39:08.892 INFO [3086]: REMOTE_ADDR = 10.0.0.15 -- 01:39:08.892 INFO [3086]: SERVER_NAME = oameye.works.coregrade.com -- 01:39:08.892 INFO [3086]: QUERY_STRING = /.well-known/acme-challenge/qr9ACZk1ENgr10jgI6V9P4KcThgHChpoJj6BttjUm94 -- 01:39:08.892 INFO [3086]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 01:39:08.905 INFO [3086]: COREGRADE is stopping... -- 01:39:08.905 DEBUG [3086]: Closing database connection -- 01:39:08.905 SQL [3086]: pgsql_close() -- 01:39:09.096 INFO [3086]: COREGRADE is starting... -- 01:39:09.096 INFO [3086]: Version from config: 1.0 -- 01:39:09.096 DEBUG [3086]: Connecting to database... -- 01:39:09.096 DEBUG [3086]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:39:09.096 SQL [3086]: pgsql_db_connect() -- 01:39:09.100 DEBUG [3086]: Database connection successful -- 01:39:09.100 INFO [3086]: _SERVER found -- 01:39:09.100 INFO [3086]: REMOTE_ADDR = 10.0.0.15 -- 01:39:09.100 INFO [3086]: SERVER_NAME = oameye.works.coregrade.com -- 01:39:09.100 INFO [3086]: QUERY_STRING = /.well-known/acme-challenge/qr9ACZk1ENgr10jgI6V9P4KcThgHChpoJj6BttjUm94 -- 01:39:09.100 INFO [3086]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 01:39:09.112 INFO [3086]: COREGRADE is stopping... -- 01:39:09.112 DEBUG [3086]: Closing database connection -- 01:39:09.112 SQL [3086]: pgsql_close() -- 01:39:09.251 INFO [3087]: COREGRADE is starting... -- 01:39:09.252 INFO [3087]: Version from config: 1.0 -- 01:39:09.252 DEBUG [3087]: Connecting to database... -- 01:39:09.252 DEBUG [3087]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:39:09.252 SQL [3087]: pgsql_db_connect() -- 01:39:09.256 DEBUG [3087]: Database connection successful -- 01:39:09.256 INFO [3087]: _SERVER found -- 01:39:09.256 INFO [3087]: REMOTE_ADDR = 10.0.0.15 -- 01:39:09.256 INFO [3087]: SERVER_NAME = oameye.works.coregrade.com -- 01:39:09.256 INFO [3087]: QUERY_STRING = /.well-known/acme-challenge/qr9ACZk1ENgr10jgI6V9P4KcThgHChpoJj6BttjUm94 -- 01:39:09.256 INFO [3087]: HTTP_X_FORWARDED_FOR = 18.196.96.172 -- 01:39:09.267 INFO [3087]: COREGRADE is stopping... -- 01:39:09.267 DEBUG [3087]: Closing database connection -- 01:39:09.267 SQL [3087]: pgsql_close() -- 06:23:25.235 INFO [25721]: COREGRADE is starting... -- 06:23:25.236 INFO [25721]: Version from config: 1.0 -- 06:23:25.236 DEBUG [25721]: Connecting to database... -- 06:23:25.236 DEBUG [25721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:23:25.236 SQL [25721]: pgsql_db_connect() -- 06:23:25.241 DEBUG [25721]: Database connection successful -- 06:23:25.241 INFO [25721]: _SERVER found -- 06:23:25.241 INFO [25721]: REMOTE_ADDR = 10.0.0.15 -- 06:23:25.241 INFO [25721]: SERVER_NAME = oameye.works.coregrade.com -- 06:23:25.241 INFO [25721]: QUERY_STRING = -- 06:23:25.241 INFO [25721]: HTTP_X_FORWARDED_FOR = 162.216.17.227 -- 06:23:25.277 INFO [25721]: COREGRADE is stopping... -- 06:23:25.277 DEBUG [25721]: Closing database connection -- 06:23:25.277 SQL [25721]: pgsql_close() -- 10:59:58.390 INFO [3089]: COREGRADE is starting... -- 10:59:58.391 INFO [3089]: Version from config: 1.0 -- 10:59:58.391 DEBUG [3089]: Connecting to database... -- 10:59:58.391 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:59:58.391 SQL [3089]: pgsql_db_connect() -- 10:59:58.397 DEBUG [3089]: Database connection successful -- 10:59:58.397 INFO [3089]: _SERVER found -- 10:59:58.397 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 10:59:58.397 INFO [3089]: SERVER_NAME = oameye.works.coregrade.com -- 10:59:58.397 INFO [3089]: QUERY_STRING = -- 10:59:58.397 INFO [3089]: HTTP_X_FORWARDED_FOR = 115.236.79.82 -- 10:59:58.434 INFO [3089]: COREGRADE is stopping... -- 10:59:58.435 DEBUG [3089]: Closing database connection -- 10:59:58.435 SQL [3089]: pgsql_close() -- 17:09:31.220 INFO [25724]: COREGRADE is starting... -- 17:09:31.220 INFO [25724]: Version from config: 1.0 -- 17:09:31.220 DEBUG [25724]: Connecting to database... -- 17:09:31.220 DEBUG [25724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:09:31.220 SQL [25724]: pgsql_db_connect() -- 17:09:31.225 DEBUG [25724]: Database connection successful -- 17:09:31.225 INFO [25724]: _SERVER found -- 17:09:31.225 INFO [25724]: REMOTE_ADDR = 10.0.0.15 -- 17:09:31.225 INFO [25724]: SERVER_NAME = oameye.works.coregrade.com -- 17:09:31.225 INFO [25724]: QUERY_STRING = -- 17:09:31.225 INFO [25724]: HTTP_X_FORWARDED_FOR = 103.149.192.64 -- 17:09:31.261 INFO [25724]: COREGRADE is stopping... -- 17:09:31.261 DEBUG [25724]: Closing database connection -- 17:09:31.261 SQL [25724]: pgsql_close() -- 00:42:06.862 INFO [4861]: COREGRADE is starting... -- 00:42:06.863 INFO [4861]: Version from config: 1.0 -- 00:42:06.863 DEBUG [4861]: Connecting to database... -- 00:42:06.863 DEBUG [4861]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:42:06.863 SQL [4861]: pgsql_db_connect() -- 00:42:06.868 DEBUG [4861]: Database connection successful -- 00:42:06.868 INFO [4861]: _SERVER found -- 00:42:06.868 INFO [4861]: REMOTE_ADDR = 10.0.0.15 -- 00:42:06.868 INFO [4861]: SERVER_NAME = oameye.works.coregrade.com -- 00:42:06.868 INFO [4861]: QUERY_STRING = -- 00:42:06.868 INFO [4861]: HTTP_X_FORWARDED_FOR = 45.56.107.53 -- 00:42:06.902 INFO [4861]: COREGRADE is stopping... -- 00:42:06.902 DEBUG [4861]: Closing database connection -- 00:42:06.902 SQL [4861]: pgsql_close() -- 02:20:30.020 INFO [3088]: COREGRADE is starting... -- 02:20:30.021 INFO [3088]: Version from config: 1.0 -- 02:20:30.021 DEBUG [3088]: Connecting to database... -- 02:20:30.021 DEBUG [3088]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:20:30.021 SQL [3088]: pgsql_db_connect() -- 02:20:30.026 DEBUG [3088]: Database connection successful -- 02:20:30.026 INFO [3088]: _SERVER found -- 02:20:30.026 INFO [3088]: REMOTE_ADDR = 10.0.0.15 -- 02:20:30.026 INFO [3088]: SERVER_NAME = oameye.works.coregrade.com -- 02:20:30.026 INFO [3088]: QUERY_STRING = /.well-known/acme-challenge/3kLGBKwLluOC6iNq8exxE-84xpzmzVGUNH9dbXpECVM -- 02:20:30.026 INFO [3088]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 02:20:30.041 INFO [3088]: COREGRADE is stopping... -- 02:20:30.041 DEBUG [3088]: Closing database connection -- 02:20:30.041 SQL [3088]: pgsql_close() -- 02:20:30.271 INFO [3086]: COREGRADE is starting... -- 02:20:30.271 INFO [3086]: Version from config: 1.0 -- 02:20:30.271 DEBUG [3086]: Connecting to database... -- 02:20:30.271 DEBUG [3086]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:20:30.271 SQL [3086]: pgsql_db_connect() -- 02:20:30.275 DEBUG [3086]: Database connection successful -- 02:20:30.275 INFO [3086]: _SERVER found -- 02:20:30.275 INFO [3086]: REMOTE_ADDR = 10.0.0.15 -- 02:20:30.275 INFO [3086]: SERVER_NAME = oameye.works.coregrade.com -- 02:20:30.275 INFO [3086]: QUERY_STRING = /.well-known/acme-challenge/3kLGBKwLluOC6iNq8exxE-84xpzmzVGUNH9dbXpECVM -- 02:20:30.275 INFO [3086]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 02:20:30.288 INFO [3086]: COREGRADE is stopping... -- 02:20:30.289 DEBUG [3086]: Closing database connection -- 02:20:30.289 SQL [3086]: pgsql_close() -- 02:20:30.307 INFO [3088]: COREGRADE is starting... -- 02:20:30.308 INFO [3088]: Version from config: 1.0 -- 02:20:30.308 DEBUG [3088]: Connecting to database... -- 02:20:30.308 DEBUG [3088]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:20:30.308 SQL [3088]: pgsql_db_connect() -- 02:20:30.312 INFO [25576]: COREGRADE is starting... -- 02:20:30.312 INFO [25576]: Version from config: 1.0 -- 02:20:30.312 DEBUG [25576]: Connecting to database... -- 02:20:30.312 DEBUG [25576]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:20:30.312 SQL [25576]: pgsql_db_connect() -- 02:20:30.312 DEBUG [3088]: Database connection successful -- 02:20:30.312 INFO [3088]: _SERVER found -- 02:20:30.312 INFO [3088]: REMOTE_ADDR = 10.0.0.15 -- 02:20:30.312 INFO [3088]: SERVER_NAME = oameye.works.coregrade.com -- 02:20:30.312 INFO [3088]: QUERY_STRING = /.well-known/acme-challenge/3kLGBKwLluOC6iNq8exxE-84xpzmzVGUNH9dbXpECVM -- 02:20:30.312 INFO [3088]: HTTP_X_FORWARDED_FOR = 34.209.232.166 -- 02:20:30.324 INFO [3088]: COREGRADE is stopping... -- 02:20:30.324 DEBUG [3088]: Closing database connection -- 02:20:30.324 SQL [3088]: pgsql_close() -- 02:20:30.316 DEBUG [25576]: Database connection successful -- 02:20:30.316 INFO [25576]: _SERVER found -- 02:20:30.316 INFO [25576]: REMOTE_ADDR = 10.0.0.15 -- 02:20:30.316 INFO [25576]: SERVER_NAME = oameye.works.coregrade.com -- 02:20:30.316 INFO [25576]: QUERY_STRING = /.well-known/acme-challenge/3kLGBKwLluOC6iNq8exxE-84xpzmzVGUNH9dbXpECVM -- 02:20:30.316 INFO [25576]: HTTP_X_FORWARDED_FOR = 52.28.236.88 -- 02:20:30.331 INFO [25576]: COREGRADE is stopping... -- 02:20:30.331 DEBUG [25576]: Closing database connection -- 02:20:30.331 SQL [25576]: pgsql_close() -- 04:49:07.993 INFO [3087]: COREGRADE is starting... -- 04:49:07.994 INFO [3087]: Version from config: 1.0 -- 04:49:07.994 DEBUG [3087]: Connecting to database... -- 04:49:07.994 DEBUG [3087]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:49:07.994 SQL [3087]: pgsql_db_connect() -- 04:49:07.998 DEBUG [3087]: Database connection successful -- 04:49:07.998 INFO [3087]: _SERVER found -- 04:49:07.998 INFO [3087]: REMOTE_ADDR = 10.0.0.15 -- 04:49:07.998 INFO [3087]: SERVER_NAME = oameye.works.coregrade.com -- 04:49:07.998 INFO [3087]: QUERY_STRING = -- 04:49:07.998 INFO [3087]: HTTP_X_FORWARDED_FOR = 128.14.180.110 -- 04:49:08.033 INFO [3087]: COREGRADE is stopping... -- 04:49:08.033 DEBUG [3087]: Closing database connection -- 04:49:08.033 SQL [3087]: pgsql_close() -- 06:25:21.292 INFO [25721]: COREGRADE is starting... -- 06:25:21.292 INFO [25721]: Version from config: 1.0 -- 06:25:21.292 DEBUG [25721]: Connecting to database... -- 06:25:21.292 DEBUG [25721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:25:21.292 SQL [25721]: pgsql_db_connect() -- 06:25:21.297 DEBUG [25721]: Database connection successful -- 06:25:21.297 INFO [25721]: _SERVER found -- 06:25:21.297 INFO [25721]: REMOTE_ADDR = 10.0.0.15 -- 06:25:21.297 INFO [25721]: SERVER_NAME = oameye.works.coregrade.com -- 06:25:21.297 INFO [25721]: QUERY_STRING = -- 06:25:21.297 INFO [25721]: HTTP_X_FORWARDED_FOR = 192.35.168.217 -- 06:25:21.332 INFO [25721]: COREGRADE is stopping... -- 06:25:21.332 DEBUG [25721]: Closing database connection -- 06:25:21.332 SQL [25721]: pgsql_close() -- 10:23:04.906 INFO [3089]: COREGRADE is starting... -- 10:23:04.907 INFO [3089]: Version from config: 1.0 -- 10:23:04.907 DEBUG [3089]: Connecting to database... -- 10:23:04.907 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:23:04.907 SQL [3089]: pgsql_db_connect() -- 10:23:04.912 DEBUG [3089]: Database connection successful -- 10:23:04.912 INFO [3089]: _SERVER found -- 10:23:04.912 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 10:23:04.912 INFO [3089]: SERVER_NAME = oameye.works.coregrade.com -- 10:23:04.912 INFO [3089]: QUERY_STRING = -- 10:23:04.912 INFO [3089]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 10:23:04.950 INFO [3089]: COREGRADE is stopping... -- 10:23:04.950 DEBUG [3089]: Closing database connection -- 10:23:04.950 SQL [3089]: pgsql_close() -- 10:25:05.695 INFO [25724]: COREGRADE is starting... -- 10:25:05.695 INFO [25724]: Version from config: 1.0 -- 10:25:05.695 DEBUG [25724]: Connecting to database... -- 10:25:05.695 DEBUG [25724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:25:05.695 SQL [25724]: pgsql_db_connect() -- 10:25:05.700 DEBUG [25724]: Database connection successful -- 10:25:05.700 INFO [25724]: _SERVER found -- 10:25:05.700 INFO [25724]: REMOTE_ADDR = 10.0.0.15 -- 10:25:05.700 INFO [25724]: SERVER_NAME = oameye.works.coregrade.com -- 10:25:05.700 INFO [25724]: HTTP_COOKIE = ci_session=jfh5bob50vuh1bfiur6agti68mn71mdj -- 10:25:05.700 INFO [25724]: QUERY_STRING = -- 10:25:05.700 INFO [25724]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 10:25:05.733 INFO [25724]: COREGRADE is stopping... -- 10:25:05.733 DEBUG [25724]: Closing database connection -- 10:25:05.733 SQL [25724]: pgsql_close() -- 10:27:06.049 INFO [4861]: COREGRADE is starting... -- 10:27:06.050 INFO [4861]: Version from config: 1.0 -- 10:27:06.050 DEBUG [4861]: Connecting to database... -- 10:27:06.050 DEBUG [4861]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:27:06.050 SQL [4861]: pgsql_db_connect() -- 10:27:06.053 DEBUG [4861]: Database connection successful -- 10:27:06.053 INFO [4861]: _SERVER found -- 10:27:06.053 INFO [4861]: REMOTE_ADDR = 10.0.0.15 -- 10:27:06.053 INFO [4861]: SERVER_NAME = oameye.works.coregrade.com -- 10:27:06.053 INFO [4861]: HTTP_COOKIE = ci_session=jfh5bob50vuh1bfiur6agti68mn71mdj -- 10:27:06.053 INFO [4861]: QUERY_STRING = -- 10:27:06.053 INFO [4861]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 10:27:06.087 INFO [4861]: COREGRADE is stopping... -- 10:27:06.087 DEBUG [4861]: Closing database connection -- 10:27:06.087 SQL [4861]: pgsql_close() -- 10:29:07.291 INFO [25575]: COREGRADE is starting... -- 10:29:07.291 INFO [25575]: Version from config: 1.0 -- 10:29:07.291 DEBUG [25575]: Connecting to database... -- 10:29:07.291 DEBUG [25575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:29:07.291 SQL [25575]: pgsql_db_connect() -- 10:29:07.296 DEBUG [25575]: Database connection successful -- 10:29:07.296 INFO [25575]: _SERVER found -- 10:29:07.296 INFO [25575]: REMOTE_ADDR = 10.0.0.15 -- 10:29:07.296 INFO [25575]: SERVER_NAME = oameye.works.coregrade.com -- 10:29:07.296 INFO [25575]: HTTP_COOKIE = ci_session=jfh5bob50vuh1bfiur6agti68mn71mdj -- 10:29:07.296 INFO [25575]: QUERY_STRING = -- 10:29:07.296 INFO [25575]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 10:29:07.330 INFO [25575]: COREGRADE is stopping... -- 10:29:07.330 DEBUG [25575]: Closing database connection -- 10:29:07.330 SQL [25575]: pgsql_close() -- 10:31:07.962 INFO [3086]: COREGRADE is starting... -- 10:31:07.963 INFO [3086]: Version from config: 1.0 -- 10:31:07.963 DEBUG [3086]: Connecting to database... -- 10:31:07.963 DEBUG [3086]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:31:07.963 SQL [3086]: pgsql_db_connect() -- 10:31:07.967 DEBUG [3086]: Database connection successful -- 10:31:07.967 INFO [3086]: _SERVER found -- 10:31:07.967 INFO [3086]: REMOTE_ADDR = 10.0.0.15 -- 10:31:07.967 INFO [3086]: SERVER_NAME = oameye.works.coregrade.com -- 10:31:07.967 INFO [3086]: HTTP_COOKIE = ci_session=728k1amrqukhmd2920aj4uoorlmqdpi7 -- 10:31:07.967 INFO [3086]: QUERY_STRING = -- 10:31:07.967 INFO [3086]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 10:31:07.999 INFO [3086]: COREGRADE is stopping... -- 10:31:07.999 DEBUG [3086]: Closing database connection -- 10:31:07.999 SQL [3086]: pgsql_close() -- 10:33:08.369 INFO [3085]: COREGRADE is starting... -- 10:33:08.369 INFO [3085]: Version from config: 1.0 -- 10:33:08.369 DEBUG [3085]: Connecting to database... -- 10:33:08.369 DEBUG [3085]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:33:08.369 SQL [3085]: pgsql_db_connect() -- 10:33:08.373 DEBUG [3085]: Database connection successful -- 10:33:08.373 INFO [3085]: _SERVER found -- 10:33:08.373 INFO [3085]: REMOTE_ADDR = 10.0.0.15 -- 10:33:08.373 INFO [3085]: SERVER_NAME = oameye.works.coregrade.com -- 10:33:08.373 INFO [3085]: HTTP_COOKIE = ci_session=728k1amrqukhmd2920aj4uoorlmqdpi7 -- 10:33:08.373 INFO [3085]: QUERY_STRING = -- 10:33:08.373 INFO [3085]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 10:33:08.409 INFO [3085]: COREGRADE is stopping... -- 10:33:08.409 DEBUG [3085]: Closing database connection -- 10:33:08.409 SQL [3085]: pgsql_close() -- 10:35:08.857 INFO [3088]: COREGRADE is starting... -- 10:35:08.857 INFO [3088]: Version from config: 1.0 -- 10:35:08.857 DEBUG [3088]: Connecting to database... -- 10:35:08.857 DEBUG [3088]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:35:08.857 SQL [3088]: pgsql_db_connect() -- 10:35:08.862 DEBUG [3088]: Database connection successful -- 10:35:08.862 INFO [3088]: _SERVER found -- 10:35:08.862 INFO [3088]: REMOTE_ADDR = 10.0.0.15 -- 10:35:08.862 INFO [3088]: SERVER_NAME = oameye.works.coregrade.com -- 10:35:08.862 INFO [3088]: HTTP_COOKIE = ci_session=728k1amrqukhmd2920aj4uoorlmqdpi7 -- 10:35:08.862 INFO [3088]: QUERY_STRING = -- 10:35:08.862 INFO [3088]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 10:35:08.897 INFO [3088]: COREGRADE is stopping... -- 10:35:08.897 DEBUG [3088]: Closing database connection -- 10:35:08.897 SQL [3088]: pgsql_close() -- 10:37:09.312 INFO [25576]: COREGRADE is starting... -- 10:37:09.312 INFO [25576]: Version from config: 1.0 -- 10:37:09.312 DEBUG [25576]: Connecting to database... -- 10:37:09.312 DEBUG [25576]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:37:09.312 SQL [25576]: pgsql_db_connect() -- 10:37:09.316 DEBUG [25576]: Database connection successful -- 10:37:09.316 INFO [25576]: _SERVER found -- 10:37:09.316 INFO [25576]: REMOTE_ADDR = 10.0.0.15 -- 10:37:09.316 INFO [25576]: SERVER_NAME = oameye.works.coregrade.com -- 10:37:09.316 INFO [25576]: HTTP_COOKIE = ci_session=jadhqkt9uoa6qmem5mpiuvl23crim0dh -- 10:37:09.316 INFO [25576]: QUERY_STRING = -- 10:37:09.316 INFO [25576]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 10:37:09.357 INFO [25576]: COREGRADE is stopping... -- 10:37:09.357 DEBUG [25576]: Closing database connection -- 10:37:09.357 SQL [25576]: pgsql_close() -- 10:39:09.709 INFO [3087]: COREGRADE is starting... -- 10:39:09.709 INFO [3087]: Version from config: 1.0 -- 10:39:09.709 DEBUG [3087]: Connecting to database... -- 10:39:09.709 DEBUG [3087]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:39:09.709 SQL [3087]: pgsql_db_connect() -- 10:39:09.714 DEBUG [3087]: Database connection successful -- 10:39:09.714 INFO [3087]: _SERVER found -- 10:39:09.714 INFO [3087]: REMOTE_ADDR = 10.0.0.15 -- 10:39:09.714 INFO [3087]: SERVER_NAME = oameye.works.coregrade.com -- 10:39:09.714 INFO [3087]: HTTP_COOKIE = ci_session=jadhqkt9uoa6qmem5mpiuvl23crim0dh -- 10:39:09.714 INFO [3087]: QUERY_STRING = -- 10:39:09.714 INFO [3087]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 10:39:09.745 INFO [3087]: COREGRADE is stopping... -- 10:39:09.745 DEBUG [3087]: Closing database connection -- 10:39:09.745 SQL [3087]: pgsql_close() -- 10:41:10.274 INFO [25721]: COREGRADE is starting... -- 10:41:10.274 INFO [25721]: Version from config: 1.0 -- 10:41:10.274 DEBUG [25721]: Connecting to database... -- 10:41:10.274 DEBUG [25721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:41:10.274 SQL [25721]: pgsql_db_connect() -- 10:41:10.278 DEBUG [25721]: Database connection successful -- 10:41:10.278 INFO [25721]: _SERVER found -- 10:41:10.278 INFO [25721]: REMOTE_ADDR = 10.0.0.15 -- 10:41:10.278 INFO [25721]: SERVER_NAME = oameye.works.coregrade.com -- 10:41:10.279 INFO [25721]: HTTP_COOKIE = ci_session=jadhqkt9uoa6qmem5mpiuvl23crim0dh -- 10:41:10.279 INFO [25721]: QUERY_STRING = -- 10:41:10.279 INFO [25721]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 10:41:10.313 INFO [25721]: COREGRADE is stopping... -- 10:41:10.313 DEBUG [25721]: Closing database connection -- 10:41:10.313 SQL [25721]: pgsql_close() -- 10:43:10.661 INFO [3089]: COREGRADE is starting... -- 10:43:10.661 INFO [3089]: Version from config: 1.0 -- 10:43:10.661 DEBUG [3089]: Connecting to database... -- 10:43:10.661 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:43:10.661 SQL [3089]: pgsql_db_connect() -- 10:43:10.665 DEBUG [3089]: Database connection successful -- 10:43:10.665 INFO [3089]: _SERVER found -- 10:43:10.665 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 10:43:10.665 INFO [3089]: SERVER_NAME = oameye.works.coregrade.com -- 10:43:10.665 INFO [3089]: HTTP_COOKIE = ci_session=c4l672623le6u1e86d9uvesmmn06v814 -- 10:43:10.665 INFO [3089]: QUERY_STRING = -- 10:43:10.665 INFO [3089]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 10:43:10.701 INFO [3089]: COREGRADE is stopping... -- 10:43:10.701 DEBUG [3089]: Closing database connection -- 10:43:10.701 SQL [3089]: pgsql_close() -- 10:45:11.315 INFO [25724]: COREGRADE is starting... -- 10:45:11.315 INFO [25724]: Version from config: 1.0 -- 10:45:11.315 DEBUG [25724]: Connecting to database... -- 10:45:11.315 DEBUG [25724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:45:11.315 SQL [25724]: pgsql_db_connect() -- 10:45:11.319 DEBUG [25724]: Database connection successful -- 10:45:11.319 INFO [25724]: _SERVER found -- 10:45:11.319 INFO [25724]: REMOTE_ADDR = 10.0.0.15 -- 10:45:11.319 INFO [25724]: SERVER_NAME = oameye.works.coregrade.com -- 10:45:11.319 INFO [25724]: HTTP_COOKIE = ci_session=c4l672623le6u1e86d9uvesmmn06v814 -- 10:45:11.319 INFO [25724]: QUERY_STRING = -- 10:45:11.319 INFO [25724]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 10:45:11.353 INFO [25724]: COREGRADE is stopping... -- 10:45:11.354 DEBUG [25724]: Closing database connection -- 10:45:11.354 SQL [25724]: pgsql_close() -- 10:47:11.823 INFO [4861]: COREGRADE is starting... -- 10:47:11.823 INFO [4861]: Version from config: 1.0 -- 10:47:11.823 DEBUG [4861]: Connecting to database... -- 10:47:11.823 DEBUG [4861]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:47:11.823 SQL [4861]: pgsql_db_connect() -- 10:47:11.827 DEBUG [4861]: Database connection successful -- 10:47:11.827 INFO [4861]: _SERVER found -- 10:47:11.827 INFO [4861]: REMOTE_ADDR = 10.0.0.15 -- 10:47:11.827 INFO [4861]: SERVER_NAME = oameye.works.coregrade.com -- 10:47:11.827 INFO [4861]: HTTP_COOKIE = ci_session=c4l672623le6u1e86d9uvesmmn06v814 -- 10:47:11.827 INFO [4861]: QUERY_STRING = -- 10:47:11.827 INFO [4861]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 10:47:11.860 INFO [4861]: COREGRADE is stopping... -- 10:47:11.860 DEBUG [4861]: Closing database connection -- 10:47:11.860 SQL [4861]: pgsql_close() -- 10:49:12.469 INFO [25575]: COREGRADE is starting... -- 10:49:12.469 INFO [25575]: Version from config: 1.0 -- 10:49:12.469 DEBUG [25575]: Connecting to database... -- 10:49:12.469 DEBUG [25575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:49:12.469 SQL [25575]: pgsql_db_connect() -- 10:49:12.473 DEBUG [25575]: Database connection successful -- 10:49:12.473 INFO [25575]: _SERVER found -- 10:49:12.473 INFO [25575]: REMOTE_ADDR = 10.0.0.15 -- 10:49:12.473 INFO [25575]: SERVER_NAME = oameye.works.coregrade.com -- 10:49:12.473 INFO [25575]: HTTP_COOKIE = ci_session=c1dp0nhosiv9vmdjegvrneire8gd88pa -- 10:49:12.473 INFO [25575]: QUERY_STRING = -- 10:49:12.473 INFO [25575]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 10:49:12.505 INFO [25575]: COREGRADE is stopping... -- 10:49:12.505 DEBUG [25575]: Closing database connection -- 10:49:12.505 SQL [25575]: pgsql_close() -- 10:51:12.871 INFO [3086]: COREGRADE is starting... -- 10:51:12.872 INFO [3086]: Version from config: 1.0 -- 10:51:12.872 DEBUG [3086]: Connecting to database... -- 10:51:12.872 DEBUG [3086]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:51:12.872 SQL [3086]: pgsql_db_connect() -- 10:51:12.877 DEBUG [3086]: Database connection successful -- 10:51:12.877 INFO [3086]: _SERVER found -- 10:51:12.877 INFO [3086]: REMOTE_ADDR = 10.0.0.15 -- 10:51:12.877 INFO [3086]: SERVER_NAME = oameye.works.coregrade.com -- 10:51:12.877 INFO [3086]: HTTP_COOKIE = ci_session=c1dp0nhosiv9vmdjegvrneire8gd88pa -- 10:51:12.877 INFO [3086]: QUERY_STRING = -- 10:51:12.877 INFO [3086]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 10:51:12.909 INFO [3086]: COREGRADE is stopping... -- 10:51:12.909 DEBUG [3086]: Closing database connection -- 10:51:12.909 SQL [3086]: pgsql_close() -- 10:53:13.411 INFO [3085]: COREGRADE is starting... -- 10:53:13.412 INFO [3085]: Version from config: 1.0 -- 10:53:13.412 DEBUG [3085]: Connecting to database... -- 10:53:13.412 DEBUG [3085]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:53:13.412 SQL [3085]: pgsql_db_connect() -- 10:53:13.416 DEBUG [3085]: Database connection successful -- 10:53:13.416 INFO [3085]: _SERVER found -- 10:53:13.416 INFO [3085]: REMOTE_ADDR = 10.0.0.15 -- 10:53:13.416 INFO [3085]: SERVER_NAME = oameye.works.coregrade.com -- 10:53:13.416 INFO [3085]: HTTP_COOKIE = ci_session=c1dp0nhosiv9vmdjegvrneire8gd88pa -- 10:53:13.416 INFO [3085]: QUERY_STRING = -- 10:53:13.416 INFO [3085]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 10:53:13.449 INFO [3085]: COREGRADE is stopping... -- 10:53:13.449 DEBUG [3085]: Closing database connection -- 10:53:13.449 SQL [3085]: pgsql_close() -- 10:55:13.844 INFO [3088]: COREGRADE is starting... -- 10:55:13.844 INFO [3088]: Version from config: 1.0 -- 10:55:13.844 DEBUG [3088]: Connecting to database... -- 10:55:13.844 DEBUG [3088]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:55:13.844 SQL [3088]: pgsql_db_connect() -- 10:55:13.848 DEBUG [3088]: Database connection successful -- 10:55:13.848 INFO [3088]: _SERVER found -- 10:55:13.848 INFO [3088]: REMOTE_ADDR = 10.0.0.15 -- 10:55:13.848 INFO [3088]: SERVER_NAME = oameye.works.coregrade.com -- 10:55:13.848 INFO [3088]: HTTP_COOKIE = ci_session=np5mfij1ba4l1ci61qu8a7vuirodu3co -- 10:55:13.848 INFO [3088]: QUERY_STRING = -- 10:55:13.848 INFO [3088]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 10:55:13.881 INFO [3088]: COREGRADE is stopping... -- 10:55:13.881 DEBUG [3088]: Closing database connection -- 10:55:13.881 SQL [3088]: pgsql_close() -- 10:57:14.267 INFO [25576]: COREGRADE is starting... -- 10:57:14.268 INFO [25576]: Version from config: 1.0 -- 10:57:14.268 DEBUG [25576]: Connecting to database... -- 10:57:14.268 DEBUG [25576]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:57:14.268 SQL [25576]: pgsql_db_connect() -- 10:57:14.272 DEBUG [25576]: Database connection successful -- 10:57:14.272 INFO [25576]: _SERVER found -- 10:57:14.272 INFO [25576]: REMOTE_ADDR = 10.0.0.15 -- 10:57:14.272 INFO [25576]: SERVER_NAME = oameye.works.coregrade.com -- 10:57:14.272 INFO [25576]: HTTP_COOKIE = ci_session=np5mfij1ba4l1ci61qu8a7vuirodu3co -- 10:57:14.272 INFO [25576]: QUERY_STRING = -- 10:57:14.272 INFO [25576]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 10:57:14.305 INFO [25576]: COREGRADE is stopping... -- 10:57:14.305 DEBUG [25576]: Closing database connection -- 10:57:14.305 SQL [25576]: pgsql_close() -- 10:59:14.873 INFO [3087]: COREGRADE is starting... -- 10:59:14.873 INFO [3087]: Version from config: 1.0 -- 10:59:14.873 DEBUG [3087]: Connecting to database... -- 10:59:14.873 DEBUG [3087]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:59:14.873 SQL [3087]: pgsql_db_connect() -- 10:59:14.877 DEBUG [3087]: Database connection successful -- 10:59:14.877 INFO [3087]: _SERVER found -- 10:59:14.877 INFO [3087]: REMOTE_ADDR = 10.0.0.15 -- 10:59:14.877 INFO [3087]: SERVER_NAME = oameye.works.coregrade.com -- 10:59:14.877 INFO [3087]: HTTP_COOKIE = ci_session=np5mfij1ba4l1ci61qu8a7vuirodu3co -- 10:59:14.877 INFO [3087]: QUERY_STRING = -- 10:59:14.877 INFO [3087]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 10:59:14.909 INFO [3087]: COREGRADE is stopping... -- 10:59:14.909 DEBUG [3087]: Closing database connection -- 10:59:14.909 SQL [3087]: pgsql_close() -- 11:01:15.292 INFO [25721]: COREGRADE is starting... -- 11:01:15.292 INFO [25721]: Version from config: 1.0 -- 11:01:15.292 DEBUG [25721]: Connecting to database... -- 11:01:15.292 DEBUG [25721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:01:15.292 SQL [25721]: pgsql_db_connect() -- 11:01:15.297 DEBUG [25721]: Database connection successful -- 11:01:15.297 INFO [25721]: _SERVER found -- 11:01:15.297 INFO [25721]: REMOTE_ADDR = 10.0.0.15 -- 11:01:15.297 INFO [25721]: SERVER_NAME = oameye.works.coregrade.com -- 11:01:15.297 INFO [25721]: HTTP_COOKIE = ci_session=9h75ao382aipspf9t6v4337cgm7ip520 -- 11:01:15.297 INFO [25721]: QUERY_STRING = -- 11:01:15.297 INFO [25721]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 11:01:15.328 INFO [25721]: COREGRADE is stopping... -- 11:01:15.328 DEBUG [25721]: Closing database connection -- 11:01:15.328 SQL [25721]: pgsql_close() -- 11:03:15.718 INFO [3089]: COREGRADE is starting... -- 11:03:15.718 INFO [3089]: Version from config: 1.0 -- 11:03:15.718 DEBUG [3089]: Connecting to database... -- 11:03:15.718 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:03:15.718 SQL [3089]: pgsql_db_connect() -- 11:03:15.722 DEBUG [3089]: Database connection successful -- 11:03:15.722 INFO [3089]: _SERVER found -- 11:03:15.722 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 11:03:15.722 INFO [3089]: SERVER_NAME = oameye.works.coregrade.com -- 11:03:15.722 INFO [3089]: HTTP_COOKIE = ci_session=9h75ao382aipspf9t6v4337cgm7ip520 -- 11:03:15.722 INFO [3089]: QUERY_STRING = -- 11:03:15.722 INFO [3089]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 11:03:15.755 INFO [3089]: COREGRADE is stopping... -- 11:03:15.755 DEBUG [3089]: Closing database connection -- 11:03:15.755 SQL [3089]: pgsql_close() -- 11:05:16.309 INFO [25724]: COREGRADE is starting... -- 11:05:16.309 INFO [25724]: Version from config: 1.0 -- 11:05:16.309 DEBUG [25724]: Connecting to database... -- 11:05:16.309 DEBUG [25724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:05:16.309 SQL [25724]: pgsql_db_connect() -- 11:05:16.313 DEBUG [25724]: Database connection successful -- 11:05:16.313 INFO [25724]: _SERVER found -- 11:05:16.313 INFO [25724]: REMOTE_ADDR = 10.0.0.15 -- 11:05:16.313 INFO [25724]: SERVER_NAME = oameye.works.coregrade.com -- 11:05:16.313 INFO [25724]: HTTP_COOKIE = ci_session=9h75ao382aipspf9t6v4337cgm7ip520 -- 11:05:16.313 INFO [25724]: QUERY_STRING = -- 11:05:16.313 INFO [25724]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 11:05:16.347 INFO [25724]: COREGRADE is stopping... -- 11:05:16.347 DEBUG [25724]: Closing database connection -- 11:05:16.347 SQL [25724]: pgsql_close() -- 11:07:16.739 INFO [4861]: COREGRADE is starting... -- 11:07:16.739 INFO [4861]: Version from config: 1.0 -- 11:07:16.739 DEBUG [4861]: Connecting to database... -- 11:07:16.739 DEBUG [4861]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:07:16.739 SQL [4861]: pgsql_db_connect() -- 11:07:16.743 DEBUG [4861]: Database connection successful -- 11:07:16.743 INFO [4861]: _SERVER found -- 11:07:16.743 INFO [4861]: REMOTE_ADDR = 10.0.0.15 -- 11:07:16.743 INFO [4861]: SERVER_NAME = oameye.works.coregrade.com -- 11:07:16.743 INFO [4861]: HTTP_COOKIE = ci_session=7b6o7p1n47oj1lht23i3u086tuikaftk -- 11:07:16.743 INFO [4861]: QUERY_STRING = -- 11:07:16.743 INFO [4861]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 11:07:16.776 INFO [4861]: COREGRADE is stopping... -- 11:07:16.776 DEBUG [4861]: Closing database connection -- 11:07:16.776 SQL [4861]: pgsql_close() -- 11:09:17.313 INFO [25575]: COREGRADE is starting... -- 11:09:17.314 INFO [25575]: Version from config: 1.0 -- 11:09:17.314 DEBUG [25575]: Connecting to database... -- 11:09:17.314 DEBUG [25575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:09:17.314 SQL [25575]: pgsql_db_connect() -- 11:09:17.318 DEBUG [25575]: Database connection successful -- 11:09:17.318 INFO [25575]: _SERVER found -- 11:09:17.318 INFO [25575]: REMOTE_ADDR = 10.0.0.15 -- 11:09:17.318 INFO [25575]: SERVER_NAME = oameye.works.coregrade.com -- 11:09:17.318 INFO [25575]: HTTP_COOKIE = ci_session=7b6o7p1n47oj1lht23i3u086tuikaftk -- 11:09:17.318 INFO [25575]: QUERY_STRING = -- 11:09:17.318 INFO [25575]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 11:09:17.350 INFO [25575]: COREGRADE is stopping... -- 11:09:17.350 DEBUG [25575]: Closing database connection -- 11:09:17.350 SQL [25575]: pgsql_close() -- 11:11:17.872 INFO [3086]: COREGRADE is starting... -- 11:11:17.872 INFO [3086]: Version from config: 1.0 -- 11:11:17.872 DEBUG [3086]: Connecting to database... -- 11:11:17.872 DEBUG [3086]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:11:17.872 SQL [3086]: pgsql_db_connect() -- 11:11:17.876 DEBUG [3086]: Database connection successful -- 11:11:17.876 INFO [3086]: _SERVER found -- 11:11:17.876 INFO [3086]: REMOTE_ADDR = 10.0.0.15 -- 11:11:17.876 INFO [3086]: SERVER_NAME = oameye.works.coregrade.com -- 11:11:17.876 INFO [3086]: HTTP_COOKIE = ci_session=7b6o7p1n47oj1lht23i3u086tuikaftk -- 11:11:17.876 INFO [3086]: QUERY_STRING = -- 11:11:17.876 INFO [3086]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 11:11:17.908 INFO [3086]: COREGRADE is stopping... -- 11:11:17.908 DEBUG [3086]: Closing database connection -- 11:11:17.908 SQL [3086]: pgsql_close() -- 11:13:18.256 INFO [3085]: COREGRADE is starting... -- 11:13:18.256 INFO [3085]: Version from config: 1.0 -- 11:13:18.256 DEBUG [3085]: Connecting to database... -- 11:13:18.256 DEBUG [3085]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:13:18.256 SQL [3085]: pgsql_db_connect() -- 11:13:18.261 DEBUG [3085]: Database connection successful -- 11:13:18.261 INFO [3085]: _SERVER found -- 11:13:18.261 INFO [3085]: REMOTE_ADDR = 10.0.0.15 -- 11:13:18.261 INFO [3085]: SERVER_NAME = oameye.works.coregrade.com -- 11:13:18.261 INFO [3085]: HTTP_COOKIE = ci_session=ja5crosir19dnddm7s5g8qitapnopi4o -- 11:13:18.261 INFO [3085]: QUERY_STRING = -- 11:13:18.261 INFO [3085]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 11:13:18.293 INFO [3085]: COREGRADE is stopping... -- 11:13:18.293 DEBUG [3085]: Closing database connection -- 11:13:18.293 SQL [3085]: pgsql_close() -- 11:15:18.638 INFO [3088]: COREGRADE is starting... -- 11:15:18.638 INFO [3088]: Version from config: 1.0 -- 11:15:18.638 DEBUG [3088]: Connecting to database... -- 11:15:18.638 DEBUG [3088]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:15:18.638 SQL [3088]: pgsql_db_connect() -- 11:15:18.642 DEBUG [3088]: Database connection successful -- 11:15:18.643 INFO [3088]: _SERVER found -- 11:15:18.643 INFO [3088]: REMOTE_ADDR = 10.0.0.15 -- 11:15:18.643 INFO [3088]: SERVER_NAME = oameye.works.coregrade.com -- 11:15:18.643 INFO [3088]: HTTP_COOKIE = ci_session=ja5crosir19dnddm7s5g8qitapnopi4o -- 11:15:18.643 INFO [3088]: QUERY_STRING = -- 11:15:18.643 INFO [3088]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 11:15:18.677 INFO [3088]: COREGRADE is stopping... -- 11:15:18.677 DEBUG [3088]: Closing database connection -- 11:15:18.677 SQL [3088]: pgsql_close() -- 11:17:19.242 INFO [25576]: COREGRADE is starting... -- 11:17:19.242 INFO [25576]: Version from config: 1.0 -- 11:17:19.242 DEBUG [25576]: Connecting to database... -- 11:17:19.242 DEBUG [25576]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:17:19.242 SQL [25576]: pgsql_db_connect() -- 11:17:19.247 DEBUG [25576]: Database connection successful -- 11:17:19.247 INFO [25576]: _SERVER found -- 11:17:19.247 INFO [25576]: REMOTE_ADDR = 10.0.0.15 -- 11:17:19.247 INFO [25576]: SERVER_NAME = oameye.works.coregrade.com -- 11:17:19.247 INFO [25576]: HTTP_COOKIE = ci_session=ja5crosir19dnddm7s5g8qitapnopi4o -- 11:17:19.247 INFO [25576]: QUERY_STRING = -- 11:17:19.247 INFO [25576]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 11:17:19.279 INFO [25576]: COREGRADE is stopping... -- 11:17:19.279 DEBUG [25576]: Closing database connection -- 11:17:19.279 SQL [25576]: pgsql_close() -- 11:19:19.738 INFO [3087]: COREGRADE is starting... -- 11:19:19.738 INFO [3087]: Version from config: 1.0 -- 11:19:19.738 DEBUG [3087]: Connecting to database... -- 11:19:19.738 DEBUG [3087]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:19:19.738 SQL [3087]: pgsql_db_connect() -- 11:19:19.742 DEBUG [3087]: Database connection successful -- 11:19:19.742 INFO [3087]: _SERVER found -- 11:19:19.742 INFO [3087]: REMOTE_ADDR = 10.0.0.15 -- 11:19:19.742 INFO [3087]: SERVER_NAME = oameye.works.coregrade.com -- 11:19:19.742 INFO [3087]: HTTP_COOKIE = ci_session=6i660v7c1j9e2cjfthppsjjm6sc7tn61 -- 11:19:19.742 INFO [3087]: QUERY_STRING = -- 11:19:19.742 INFO [3087]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 11:19:19.773 INFO [3087]: COREGRADE is stopping... -- 11:19:19.773 DEBUG [3087]: Closing database connection -- 11:19:19.773 SQL [3087]: pgsql_close() -- 11:21:20.149 INFO [25721]: COREGRADE is starting... -- 11:21:20.149 INFO [25721]: Version from config: 1.0 -- 11:21:20.149 DEBUG [25721]: Connecting to database... -- 11:21:20.149 DEBUG [25721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:21:20.149 SQL [25721]: pgsql_db_connect() -- 11:21:20.153 DEBUG [25721]: Database connection successful -- 11:21:20.153 INFO [25721]: _SERVER found -- 11:21:20.153 INFO [25721]: REMOTE_ADDR = 10.0.0.15 -- 11:21:20.153 INFO [25721]: SERVER_NAME = oameye.works.coregrade.com -- 11:21:20.153 INFO [25721]: HTTP_COOKIE = ci_session=6i660v7c1j9e2cjfthppsjjm6sc7tn61 -- 11:21:20.153 INFO [25721]: QUERY_STRING = -- 11:21:20.153 INFO [25721]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 11:21:20.188 INFO [25721]: COREGRADE is stopping... -- 11:21:20.188 DEBUG [25721]: Closing database connection -- 11:21:20.188 SQL [25721]: pgsql_close() -- 11:23:20.683 INFO [3089]: COREGRADE is starting... -- 11:23:20.684 INFO [3089]: Version from config: 1.0 -- 11:23:20.684 DEBUG [3089]: Connecting to database... -- 11:23:20.684 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:23:20.684 SQL [3089]: pgsql_db_connect() -- 11:23:20.688 DEBUG [3089]: Database connection successful -- 11:23:20.688 INFO [3089]: _SERVER found -- 11:23:20.688 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 11:23:20.688 INFO [3089]: SERVER_NAME = oameye.works.coregrade.com -- 11:23:20.688 INFO [3089]: HTTP_COOKIE = ci_session=6i660v7c1j9e2cjfthppsjjm6sc7tn61 -- 11:23:20.688 INFO [3089]: QUERY_STRING = -- 11:23:20.688 INFO [3089]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 11:23:20.726 INFO [3089]: COREGRADE is stopping... -- 11:23:20.726 DEBUG [3089]: Closing database connection -- 11:23:20.726 SQL [3089]: pgsql_close() -- 11:25:21.311 INFO [25724]: COREGRADE is starting... -- 11:25:21.312 INFO [25724]: Version from config: 1.0 -- 11:25:21.312 DEBUG [25724]: Connecting to database... -- 11:25:21.312 DEBUG [25724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:25:21.312 SQL [25724]: pgsql_db_connect() -- 11:25:21.316 DEBUG [25724]: Database connection successful -- 11:25:21.316 INFO [25724]: _SERVER found -- 11:25:21.316 INFO [25724]: REMOTE_ADDR = 10.0.0.15 -- 11:25:21.316 INFO [25724]: SERVER_NAME = oameye.works.coregrade.com -- 11:25:21.316 INFO [25724]: HTTP_COOKIE = ci_session=3ft2ltvov1hmdqio1ka9catkgb3lgtic -- 11:25:21.316 INFO [25724]: QUERY_STRING = -- 11:25:21.316 INFO [25724]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 11:25:21.347 INFO [25724]: COREGRADE is stopping... -- 11:25:21.347 DEBUG [25724]: Closing database connection -- 11:25:21.348 SQL [25724]: pgsql_close() -- 11:27:21.720 INFO [4861]: COREGRADE is starting... -- 11:27:21.720 INFO [4861]: Version from config: 1.0 -- 11:27:21.720 DEBUG [4861]: Connecting to database... -- 11:27:21.720 DEBUG [4861]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:27:21.720 SQL [4861]: pgsql_db_connect() -- 11:27:21.725 DEBUG [4861]: Database connection successful -- 11:27:21.725 INFO [4861]: _SERVER found -- 11:27:21.725 INFO [4861]: REMOTE_ADDR = 10.0.0.15 -- 11:27:21.725 INFO [4861]: SERVER_NAME = oameye.works.coregrade.com -- 11:27:21.725 INFO [4861]: HTTP_COOKIE = ci_session=3ft2ltvov1hmdqio1ka9catkgb3lgtic -- 11:27:21.725 INFO [4861]: QUERY_STRING = -- 11:27:21.725 INFO [4861]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 11:27:21.757 INFO [4861]: COREGRADE is stopping... -- 11:27:21.757 DEBUG [4861]: Closing database connection -- 11:27:21.757 SQL [4861]: pgsql_close() -- 11:29:22.290 INFO [25575]: COREGRADE is starting... -- 11:29:22.290 INFO [25575]: Version from config: 1.0 -- 11:29:22.290 DEBUG [25575]: Connecting to database... -- 11:29:22.290 DEBUG [25575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:29:22.290 SQL [25575]: pgsql_db_connect() -- 11:29:22.294 DEBUG [25575]: Database connection successful -- 11:29:22.294 INFO [25575]: _SERVER found -- 11:29:22.294 INFO [25575]: REMOTE_ADDR = 10.0.0.15 -- 11:29:22.294 INFO [25575]: SERVER_NAME = oameye.works.coregrade.com -- 11:29:22.294 INFO [25575]: HTTP_COOKIE = ci_session=3ft2ltvov1hmdqio1ka9catkgb3lgtic -- 11:29:22.294 INFO [25575]: QUERY_STRING = -- 11:29:22.294 INFO [25575]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 11:29:22.326 INFO [25575]: COREGRADE is stopping... -- 11:29:22.326 DEBUG [25575]: Closing database connection -- 11:29:22.326 SQL [25575]: pgsql_close() -- 11:31:22.746 INFO [3086]: COREGRADE is starting... -- 11:31:22.746 INFO [3086]: Version from config: 1.0 -- 11:31:22.746 DEBUG [3086]: Connecting to database... -- 11:31:22.746 DEBUG [3086]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:31:22.746 SQL [3086]: pgsql_db_connect() -- 11:31:22.750 DEBUG [3086]: Database connection successful -- 11:31:22.750 INFO [3086]: _SERVER found -- 11:31:22.750 INFO [3086]: REMOTE_ADDR = 10.0.0.15 -- 11:31:22.750 INFO [3086]: SERVER_NAME = oameye.works.coregrade.com -- 11:31:22.750 INFO [3086]: HTTP_COOKIE = ci_session=eafcet2ndjqubrmfh7d2vvb4iuo4qusf -- 11:31:22.750 INFO [3086]: QUERY_STRING = -- 11:31:22.750 INFO [3086]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 11:31:22.782 INFO [3086]: COREGRADE is stopping... -- 11:31:22.782 DEBUG [3086]: Closing database connection -- 11:31:22.782 SQL [3086]: pgsql_close() -- 11:33:23.119 INFO [3085]: COREGRADE is starting... -- 11:33:23.120 INFO [3085]: Version from config: 1.0 -- 11:33:23.120 DEBUG [3085]: Connecting to database... -- 11:33:23.120 DEBUG [3085]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:33:23.120 SQL [3085]: pgsql_db_connect() -- 11:33:23.124 DEBUG [3085]: Database connection successful -- 11:33:23.124 INFO [3085]: _SERVER found -- 11:33:23.124 INFO [3085]: REMOTE_ADDR = 10.0.0.15 -- 11:33:23.124 INFO [3085]: SERVER_NAME = oameye.works.coregrade.com -- 11:33:23.124 INFO [3085]: HTTP_COOKIE = ci_session=eafcet2ndjqubrmfh7d2vvb4iuo4qusf -- 11:33:23.124 INFO [3085]: QUERY_STRING = -- 11:33:23.124 INFO [3085]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 11:33:23.157 INFO [3085]: COREGRADE is stopping... -- 11:33:23.157 DEBUG [3085]: Closing database connection -- 11:33:23.157 SQL [3085]: pgsql_close() -- 11:35:23.858 INFO [3088]: COREGRADE is starting... -- 11:35:23.858 INFO [3088]: Version from config: 1.0 -- 11:35:23.858 DEBUG [3088]: Connecting to database... -- 11:35:23.858 DEBUG [3088]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:35:23.858 SQL [3088]: pgsql_db_connect() -- 11:35:23.862 DEBUG [3088]: Database connection successful -- 11:35:23.862 INFO [3088]: _SERVER found -- 11:35:23.862 INFO [3088]: REMOTE_ADDR = 10.0.0.15 -- 11:35:23.862 INFO [3088]: SERVER_NAME = oameye.works.coregrade.com -- 11:35:23.862 INFO [3088]: HTTP_COOKIE = ci_session=eafcet2ndjqubrmfh7d2vvb4iuo4qusf -- 11:35:23.862 INFO [3088]: QUERY_STRING = -- 11:35:23.862 INFO [3088]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 11:35:23.896 INFO [3088]: COREGRADE is stopping... -- 11:35:23.896 DEBUG [3088]: Closing database connection -- 11:35:23.896 SQL [3088]: pgsql_close() -- 11:37:24.443 INFO [25576]: COREGRADE is starting... -- 11:37:24.443 INFO [25576]: Version from config: 1.0 -- 11:37:24.443 DEBUG [25576]: Connecting to database... -- 11:37:24.443 DEBUG [25576]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:37:24.443 SQL [25576]: pgsql_db_connect() -- 11:37:24.448 DEBUG [25576]: Database connection successful -- 11:37:24.448 INFO [25576]: _SERVER found -- 11:37:24.448 INFO [25576]: REMOTE_ADDR = 10.0.0.15 -- 11:37:24.448 INFO [25576]: SERVER_NAME = oameye.works.coregrade.com -- 11:37:24.448 INFO [25576]: HTTP_COOKIE = ci_session=08o1b0mi6l99gou9cs3j636vjrh43h5c -- 11:37:24.448 INFO [25576]: QUERY_STRING = -- 11:37:24.448 INFO [25576]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 11:37:24.482 INFO [25576]: COREGRADE is stopping... -- 11:37:24.482 DEBUG [25576]: Closing database connection -- 11:37:24.482 SQL [25576]: pgsql_close() -- 11:39:24.816 INFO [3087]: COREGRADE is starting... -- 11:39:24.816 INFO [3087]: Version from config: 1.0 -- 11:39:24.816 DEBUG [3087]: Connecting to database... -- 11:39:24.816 DEBUG [3087]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:39:24.816 SQL [3087]: pgsql_db_connect() -- 11:39:24.821 DEBUG [3087]: Database connection successful -- 11:39:24.821 INFO [3087]: _SERVER found -- 11:39:24.821 INFO [3087]: REMOTE_ADDR = 10.0.0.15 -- 11:39:24.821 INFO [3087]: SERVER_NAME = oameye.works.coregrade.com -- 11:39:24.821 INFO [3087]: HTTP_COOKIE = ci_session=08o1b0mi6l99gou9cs3j636vjrh43h5c -- 11:39:24.821 INFO [3087]: QUERY_STRING = -- 11:39:24.821 INFO [3087]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 11:39:24.853 INFO [3087]: COREGRADE is stopping... -- 11:39:24.853 DEBUG [3087]: Closing database connection -- 11:39:24.853 SQL [3087]: pgsql_close() -- 11:41:25.582 INFO [25721]: COREGRADE is starting... -- 11:41:25.583 INFO [25721]: Version from config: 1.0 -- 11:41:25.583 DEBUG [25721]: Connecting to database... -- 11:41:25.583 DEBUG [25721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:41:25.583 SQL [25721]: pgsql_db_connect() -- 11:41:25.587 DEBUG [25721]: Database connection successful -- 11:41:25.587 INFO [25721]: _SERVER found -- 11:41:25.587 INFO [25721]: REMOTE_ADDR = 10.0.0.15 -- 11:41:25.587 INFO [25721]: SERVER_NAME = oameye.works.coregrade.com -- 11:41:25.587 INFO [25721]: HTTP_COOKIE = ci_session=08o1b0mi6l99gou9cs3j636vjrh43h5c -- 11:41:25.587 INFO [25721]: QUERY_STRING = -- 11:41:25.587 INFO [25721]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 11:41:25.620 INFO [25721]: COREGRADE is stopping... -- 11:41:25.620 DEBUG [25721]: Closing database connection -- 11:41:25.620 SQL [25721]: pgsql_close() -- 11:43:26.140 INFO [3089]: COREGRADE is starting... -- 11:43:26.140 INFO [3089]: Version from config: 1.0 -- 11:43:26.140 DEBUG [3089]: Connecting to database... -- 11:43:26.140 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:43:26.140 SQL [3089]: pgsql_db_connect() -- 11:43:26.145 DEBUG [3089]: Database connection successful -- 11:43:26.145 INFO [3089]: _SERVER found -- 11:43:26.145 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 11:43:26.145 INFO [3089]: SERVER_NAME = oameye.works.coregrade.com -- 11:43:26.145 INFO [3089]: HTTP_COOKIE = ci_session=dodp2mefe3r5s8frg9e7698uhdlrl8bk -- 11:43:26.145 INFO [3089]: QUERY_STRING = -- 11:43:26.145 INFO [3089]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 11:43:26.179 INFO [3089]: COREGRADE is stopping... -- 11:43:26.179 DEBUG [3089]: Closing database connection -- 11:43:26.179 SQL [3089]: pgsql_close() -- 11:45:26.557 INFO [25724]: COREGRADE is starting... -- 11:45:26.557 INFO [25724]: Version from config: 1.0 -- 11:45:26.558 DEBUG [25724]: Connecting to database... -- 11:45:26.558 DEBUG [25724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:45:26.558 SQL [25724]: pgsql_db_connect() -- 11:45:26.562 DEBUG [25724]: Database connection successful -- 11:45:26.562 INFO [25724]: _SERVER found -- 11:45:26.562 INFO [25724]: REMOTE_ADDR = 10.0.0.15 -- 11:45:26.562 INFO [25724]: SERVER_NAME = oameye.works.coregrade.com -- 11:45:26.562 INFO [25724]: HTTP_COOKIE = ci_session=dodp2mefe3r5s8frg9e7698uhdlrl8bk -- 11:45:26.562 INFO [25724]: QUERY_STRING = -- 11:45:26.562 INFO [25724]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 11:45:26.596 INFO [25724]: COREGRADE is stopping... -- 11:45:26.596 DEBUG [25724]: Closing database connection -- 11:45:26.596 SQL [25724]: pgsql_close() -- 11:47:27.146 INFO [4861]: COREGRADE is starting... -- 11:47:27.147 INFO [4861]: Version from config: 1.0 -- 11:47:27.147 DEBUG [4861]: Connecting to database... -- 11:47:27.147 DEBUG [4861]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:47:27.147 SQL [4861]: pgsql_db_connect() -- 11:47:27.151 DEBUG [4861]: Database connection successful -- 11:47:27.151 INFO [4861]: _SERVER found -- 11:47:27.151 INFO [4861]: REMOTE_ADDR = 10.0.0.15 -- 11:47:27.151 INFO [4861]: SERVER_NAME = oameye.works.coregrade.com -- 11:47:27.151 INFO [4861]: HTTP_COOKIE = ci_session=dodp2mefe3r5s8frg9e7698uhdlrl8bk -- 11:47:27.151 INFO [4861]: QUERY_STRING = -- 11:47:27.151 INFO [4861]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 11:47:27.184 INFO [4861]: COREGRADE is stopping... -- 11:47:27.184 DEBUG [4861]: Closing database connection -- 11:47:27.184 SQL [4861]: pgsql_close() -- 11:49:27.763 INFO [25575]: COREGRADE is starting... -- 11:49:27.763 INFO [25575]: Version from config: 1.0 -- 11:49:27.763 DEBUG [25575]: Connecting to database... -- 11:49:27.763 DEBUG [25575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:49:27.763 SQL [25575]: pgsql_db_connect() -- 11:49:27.767 DEBUG [25575]: Database connection successful -- 11:49:27.767 INFO [25575]: _SERVER found -- 11:49:27.767 INFO [25575]: REMOTE_ADDR = 10.0.0.15 -- 11:49:27.767 INFO [25575]: SERVER_NAME = oameye.works.coregrade.com -- 11:49:27.767 INFO [25575]: HTTP_COOKIE = ci_session=qrmtgjmj2hahgcnobf6gdcn7kpga3tk5 -- 11:49:27.767 INFO [25575]: QUERY_STRING = -- 11:49:27.767 INFO [25575]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 11:49:27.799 INFO [25575]: COREGRADE is stopping... -- 11:49:27.799 DEBUG [25575]: Closing database connection -- 11:49:27.799 SQL [25575]: pgsql_close() -- 11:51:28.733 INFO [3086]: COREGRADE is starting... -- 11:51:28.733 INFO [3086]: Version from config: 1.0 -- 11:51:28.733 DEBUG [3086]: Connecting to database... -- 11:51:28.733 DEBUG [3086]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:51:28.734 SQL [3086]: pgsql_db_connect() -- 11:51:28.738 DEBUG [3086]: Database connection successful -- 11:51:28.738 INFO [3086]: _SERVER found -- 11:51:28.738 INFO [3086]: REMOTE_ADDR = 10.0.0.15 -- 11:51:28.738 INFO [3086]: SERVER_NAME = oameye.works.coregrade.com -- 11:51:28.738 INFO [3086]: HTTP_COOKIE = ci_session=qrmtgjmj2hahgcnobf6gdcn7kpga3tk5 -- 11:51:28.738 INFO [3086]: QUERY_STRING = -- 11:51:28.738 INFO [3086]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 11:51:28.771 INFO [3086]: COREGRADE is stopping... -- 11:51:28.771 DEBUG [3086]: Closing database connection -- 11:51:28.771 SQL [3086]: pgsql_close() -- 11:53:29.523 INFO [3085]: COREGRADE is starting... -- 11:53:29.524 INFO [3085]: Version from config: 1.0 -- 11:53:29.524 DEBUG [3085]: Connecting to database... -- 11:53:29.524 DEBUG [3085]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:53:29.524 SQL [3085]: pgsql_db_connect() -- 11:53:29.528 DEBUG [3085]: Database connection successful -- 11:53:29.528 INFO [3085]: _SERVER found -- 11:53:29.528 INFO [3085]: REMOTE_ADDR = 10.0.0.15 -- 11:53:29.528 INFO [3085]: SERVER_NAME = oameye.works.coregrade.com -- 11:53:29.528 INFO [3085]: HTTP_COOKIE = ci_session=qrmtgjmj2hahgcnobf6gdcn7kpga3tk5 -- 11:53:29.528 INFO [3085]: QUERY_STRING = -- 11:53:29.528 INFO [3085]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 11:53:29.561 INFO [3085]: COREGRADE is stopping... -- 11:53:29.562 DEBUG [3085]: Closing database connection -- 11:53:29.562 SQL [3085]: pgsql_close() -- 11:55:30.021 INFO [3088]: COREGRADE is starting... -- 11:55:30.022 INFO [3088]: Version from config: 1.0 -- 11:55:30.022 DEBUG [3088]: Connecting to database... -- 11:55:30.022 DEBUG [3088]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:55:30.022 SQL [3088]: pgsql_db_connect() -- 11:55:30.026 DEBUG [3088]: Database connection successful -- 11:55:30.026 INFO [3088]: _SERVER found -- 11:55:30.026 INFO [3088]: REMOTE_ADDR = 10.0.0.15 -- 11:55:30.026 INFO [3088]: SERVER_NAME = oameye.works.coregrade.com -- 11:55:30.026 INFO [3088]: HTTP_COOKIE = ci_session=kp7klec4k1trrta5s8dkaavvl8u3md0s -- 11:55:30.026 INFO [3088]: QUERY_STRING = -- 11:55:30.026 INFO [3088]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 11:55:30.059 INFO [3088]: COREGRADE is stopping... -- 11:55:30.060 DEBUG [3088]: Closing database connection -- 11:55:30.060 SQL [3088]: pgsql_close() -- 11:57:30.406 INFO [25576]: COREGRADE is starting... -- 11:57:30.406 INFO [25576]: Version from config: 1.0 -- 11:57:30.407 DEBUG [25576]: Connecting to database... -- 11:57:30.407 DEBUG [25576]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:57:30.407 SQL [25576]: pgsql_db_connect() -- 11:57:30.411 DEBUG [25576]: Database connection successful -- 11:57:30.411 INFO [25576]: _SERVER found -- 11:57:30.411 INFO [25576]: REMOTE_ADDR = 10.0.0.15 -- 11:57:30.411 INFO [25576]: SERVER_NAME = oameye.works.coregrade.com -- 11:57:30.411 INFO [25576]: HTTP_COOKIE = ci_session=kp7klec4k1trrta5s8dkaavvl8u3md0s -- 11:57:30.411 INFO [25576]: QUERY_STRING = -- 11:57:30.411 INFO [25576]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 11:57:30.444 INFO [25576]: COREGRADE is stopping... -- 11:57:30.444 DEBUG [25576]: Closing database connection -- 11:57:30.444 SQL [25576]: pgsql_close() -- 11:59:30.897 INFO [3087]: COREGRADE is starting... -- 11:59:30.897 INFO [3087]: Version from config: 1.0 -- 11:59:30.897 DEBUG [3087]: Connecting to database... -- 11:59:30.897 DEBUG [3087]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:59:30.897 SQL [3087]: pgsql_db_connect() -- 11:59:30.901 DEBUG [3087]: Database connection successful -- 11:59:30.902 INFO [3087]: _SERVER found -- 11:59:30.902 INFO [3087]: REMOTE_ADDR = 10.0.0.15 -- 11:59:30.902 INFO [3087]: SERVER_NAME = oameye.works.coregrade.com -- 11:59:30.902 INFO [3087]: HTTP_COOKIE = ci_session=kp7klec4k1trrta5s8dkaavvl8u3md0s -- 11:59:30.902 INFO [3087]: QUERY_STRING = -- 11:59:30.902 INFO [3087]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 11:59:30.934 INFO [3087]: COREGRADE is stopping... -- 11:59:30.934 DEBUG [3087]: Closing database connection -- 11:59:30.934 SQL [3087]: pgsql_close() -- 12:01:31.374 INFO [25721]: COREGRADE is starting... -- 12:01:31.374 INFO [25721]: Version from config: 1.0 -- 12:01:31.374 DEBUG [25721]: Connecting to database... -- 12:01:31.374 DEBUG [25721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:01:31.374 SQL [25721]: pgsql_db_connect() -- 12:01:31.378 DEBUG [25721]: Database connection successful -- 12:01:31.378 INFO [25721]: _SERVER found -- 12:01:31.378 INFO [25721]: REMOTE_ADDR = 10.0.0.15 -- 12:01:31.378 INFO [25721]: SERVER_NAME = oameye.works.coregrade.com -- 12:01:31.378 INFO [25721]: HTTP_COOKIE = ci_session=3ogufls12hthl7jfj4868o51ju5uuj4j -- 12:01:31.378 INFO [25721]: QUERY_STRING = -- 12:01:31.378 INFO [25721]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 12:01:31.409 INFO [25721]: COREGRADE is stopping... -- 12:01:31.409 DEBUG [25721]: Closing database connection -- 12:01:31.410 SQL [25721]: pgsql_close() -- 12:03:31.740 INFO [3089]: COREGRADE is starting... -- 12:03:31.741 INFO [3089]: Version from config: 1.0 -- 12:03:31.741 DEBUG [3089]: Connecting to database... -- 12:03:31.741 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:03:31.741 SQL [3089]: pgsql_db_connect() -- 12:03:31.745 DEBUG [3089]: Database connection successful -- 12:03:31.745 INFO [3089]: _SERVER found -- 12:03:31.745 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 12:03:31.745 INFO [3089]: SERVER_NAME = oameye.works.coregrade.com -- 12:03:31.745 INFO [3089]: HTTP_COOKIE = ci_session=3ogufls12hthl7jfj4868o51ju5uuj4j -- 12:03:31.745 INFO [3089]: QUERY_STRING = -- 12:03:31.745 INFO [3089]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 12:03:31.778 INFO [3089]: COREGRADE is stopping... -- 12:03:31.778 DEBUG [3089]: Closing database connection -- 12:03:31.778 SQL [3089]: pgsql_close() -- 12:05:32.628 INFO [25724]: COREGRADE is starting... -- 12:05:32.628 INFO [25724]: Version from config: 1.0 -- 12:05:32.628 DEBUG [25724]: Connecting to database... -- 12:05:32.628 DEBUG [25724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:05:32.628 SQL [25724]: pgsql_db_connect() -- 12:05:32.632 DEBUG [25724]: Database connection successful -- 12:05:32.632 INFO [25724]: _SERVER found -- 12:05:32.632 INFO [25724]: REMOTE_ADDR = 10.0.0.15 -- 12:05:32.632 INFO [25724]: SERVER_NAME = oameye.works.coregrade.com -- 12:05:32.632 INFO [25724]: HTTP_COOKIE = ci_session=3ogufls12hthl7jfj4868o51ju5uuj4j -- 12:05:32.632 INFO [25724]: QUERY_STRING = -- 12:05:32.632 INFO [25724]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 12:05:32.664 INFO [25724]: COREGRADE is stopping... -- 12:05:32.664 DEBUG [25724]: Closing database connection -- 12:05:32.664 SQL [25724]: pgsql_close() -- 12:07:33.067 INFO [4861]: COREGRADE is starting... -- 12:07:33.067 INFO [4861]: Version from config: 1.0 -- 12:07:33.067 DEBUG [4861]: Connecting to database... -- 12:07:33.068 DEBUG [4861]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:07:33.068 SQL [4861]: pgsql_db_connect() -- 12:07:33.072 DEBUG [4861]: Database connection successful -- 12:07:33.072 INFO [4861]: _SERVER found -- 12:07:33.072 INFO [4861]: REMOTE_ADDR = 10.0.0.15 -- 12:07:33.072 INFO [4861]: SERVER_NAME = oameye.works.coregrade.com -- 12:07:33.072 INFO [4861]: HTTP_COOKIE = ci_session=jlcjmtlbd1kb6lq1plfm3rnccgef3im1 -- 12:07:33.072 INFO [4861]: QUERY_STRING = -- 12:07:33.072 INFO [4861]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 12:07:33.105 INFO [4861]: COREGRADE is stopping... -- 12:07:33.105 DEBUG [4861]: Closing database connection -- 12:07:33.105 SQL [4861]: pgsql_close() -- 12:09:33.486 INFO [25575]: COREGRADE is starting... -- 12:09:33.487 INFO [25575]: Version from config: 1.0 -- 12:09:33.487 DEBUG [25575]: Connecting to database... -- 12:09:33.487 DEBUG [25575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:09:33.487 SQL [25575]: pgsql_db_connect() -- 12:09:33.491 DEBUG [25575]: Database connection successful -- 12:09:33.491 INFO [25575]: _SERVER found -- 12:09:33.491 INFO [25575]: REMOTE_ADDR = 10.0.0.15 -- 12:09:33.491 INFO [25575]: SERVER_NAME = oameye.works.coregrade.com -- 12:09:33.491 INFO [25575]: HTTP_COOKIE = ci_session=jlcjmtlbd1kb6lq1plfm3rnccgef3im1 -- 12:09:33.491 INFO [25575]: QUERY_STRING = -- 12:09:33.491 INFO [25575]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 12:09:33.523 INFO [25575]: COREGRADE is stopping... -- 12:09:33.523 DEBUG [25575]: Closing database connection -- 12:09:33.523 SQL [25575]: pgsql_close() -- 12:11:34.042 INFO [3086]: COREGRADE is starting... -- 12:11:34.042 INFO [3086]: Version from config: 1.0 -- 12:11:34.042 DEBUG [3086]: Connecting to database... -- 12:11:34.042 DEBUG [3086]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:11:34.042 SQL [3086]: pgsql_db_connect() -- 12:11:34.046 DEBUG [3086]: Database connection successful -- 12:11:34.046 INFO [3086]: _SERVER found -- 12:11:34.046 INFO [3086]: REMOTE_ADDR = 10.0.0.15 -- 12:11:34.046 INFO [3086]: SERVER_NAME = oameye.works.coregrade.com -- 12:11:34.046 INFO [3086]: HTTP_COOKIE = ci_session=jlcjmtlbd1kb6lq1plfm3rnccgef3im1 -- 12:11:34.046 INFO [3086]: QUERY_STRING = -- 12:11:34.046 INFO [3086]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 12:11:34.078 INFO [3086]: COREGRADE is stopping... -- 12:11:34.078 DEBUG [3086]: Closing database connection -- 12:11:34.078 SQL [3086]: pgsql_close() -- 12:13:34.659 INFO [3085]: COREGRADE is starting... -- 12:13:34.660 INFO [3085]: Version from config: 1.0 -- 12:13:34.660 DEBUG [3085]: Connecting to database... -- 12:13:34.660 DEBUG [3085]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:13:34.660 SQL [3085]: pgsql_db_connect() -- 12:13:34.664 DEBUG [3085]: Database connection successful -- 12:13:34.664 INFO [3085]: _SERVER found -- 12:13:34.664 INFO [3085]: REMOTE_ADDR = 10.0.0.15 -- 12:13:34.664 INFO [3085]: SERVER_NAME = oameye.works.coregrade.com -- 12:13:34.664 INFO [3085]: HTTP_COOKIE = ci_session=ee9dd0qtvoe0230j23g0ael68bc5nt2s -- 12:13:34.664 INFO [3085]: QUERY_STRING = -- 12:13:34.664 INFO [3085]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 12:13:34.697 INFO [3085]: COREGRADE is stopping... -- 12:13:34.697 DEBUG [3085]: Closing database connection -- 12:13:34.697 SQL [3085]: pgsql_close() -- 12:15:35.169 INFO [3088]: COREGRADE is starting... -- 12:15:35.169 INFO [3088]: Version from config: 1.0 -- 12:15:35.169 DEBUG [3088]: Connecting to database... -- 12:15:35.169 DEBUG [3088]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:15:35.169 SQL [3088]: pgsql_db_connect() -- 12:15:35.173 DEBUG [3088]: Database connection successful -- 12:15:35.174 INFO [3088]: _SERVER found -- 12:15:35.174 INFO [3088]: REMOTE_ADDR = 10.0.0.15 -- 12:15:35.174 INFO [3088]: SERVER_NAME = oameye.works.coregrade.com -- 12:15:35.174 INFO [3088]: HTTP_COOKIE = ci_session=ee9dd0qtvoe0230j23g0ael68bc5nt2s -- 12:15:35.174 INFO [3088]: QUERY_STRING = -- 12:15:35.174 INFO [3088]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 12:15:35.207 INFO [3088]: COREGRADE is stopping... -- 12:15:35.207 DEBUG [3088]: Closing database connection -- 12:15:35.207 SQL [3088]: pgsql_close() -- 12:17:35.722 INFO [25576]: COREGRADE is starting... -- 12:17:35.722 INFO [25576]: Version from config: 1.0 -- 12:17:35.722 DEBUG [25576]: Connecting to database... -- 12:17:35.722 DEBUG [25576]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:17:35.722 SQL [25576]: pgsql_db_connect() -- 12:17:35.726 DEBUG [25576]: Database connection successful -- 12:17:35.726 INFO [25576]: _SERVER found -- 12:17:35.726 INFO [25576]: REMOTE_ADDR = 10.0.0.15 -- 12:17:35.726 INFO [25576]: SERVER_NAME = oameye.works.coregrade.com -- 12:17:35.726 INFO [25576]: HTTP_COOKIE = ci_session=ee9dd0qtvoe0230j23g0ael68bc5nt2s -- 12:17:35.726 INFO [25576]: QUERY_STRING = -- 12:17:35.726 INFO [25576]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 12:17:35.758 INFO [25576]: COREGRADE is stopping... -- 12:17:35.759 DEBUG [25576]: Closing database connection -- 12:17:35.759 SQL [25576]: pgsql_close() -- 12:19:36.481 INFO [3087]: COREGRADE is starting... -- 12:19:36.481 INFO [3087]: Version from config: 1.0 -- 12:19:36.481 DEBUG [3087]: Connecting to database... -- 12:19:36.481 DEBUG [3087]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:19:36.481 SQL [3087]: pgsql_db_connect() -- 12:19:36.485 DEBUG [3087]: Database connection successful -- 12:19:36.485 INFO [3087]: _SERVER found -- 12:19:36.485 INFO [3087]: REMOTE_ADDR = 10.0.0.15 -- 12:19:36.485 INFO [3087]: SERVER_NAME = oameye.works.coregrade.com -- 12:19:36.485 INFO [3087]: HTTP_COOKIE = ci_session=aj1o7th092ra9eh1tp58q8uh2k86ap0n -- 12:19:36.485 INFO [3087]: QUERY_STRING = -- 12:19:36.485 INFO [3087]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 12:19:36.517 INFO [3087]: COREGRADE is stopping... -- 12:19:36.517 DEBUG [3087]: Closing database connection -- 12:19:36.517 SQL [3087]: pgsql_close() -- 12:21:36.901 INFO [25721]: COREGRADE is starting... -- 12:21:36.901 INFO [25721]: Version from config: 1.0 -- 12:21:36.901 DEBUG [25721]: Connecting to database... -- 12:21:36.901 DEBUG [25721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:21:36.901 SQL [25721]: pgsql_db_connect() -- 12:21:36.905 DEBUG [25721]: Database connection successful -- 12:21:36.905 INFO [25721]: _SERVER found -- 12:21:36.905 INFO [25721]: REMOTE_ADDR = 10.0.0.15 -- 12:21:36.905 INFO [25721]: SERVER_NAME = oameye.works.coregrade.com -- 12:21:36.905 INFO [25721]: HTTP_COOKIE = ci_session=aj1o7th092ra9eh1tp58q8uh2k86ap0n -- 12:21:36.905 INFO [25721]: QUERY_STRING = -- 12:21:36.905 INFO [25721]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 12:21:36.937 INFO [25721]: COREGRADE is stopping... -- 12:21:36.937 DEBUG [25721]: Closing database connection -- 12:21:36.937 SQL [25721]: pgsql_close() -- 12:23:37.489 INFO [3089]: COREGRADE is starting... -- 12:23:37.489 INFO [3089]: Version from config: 1.0 -- 12:23:37.489 DEBUG [3089]: Connecting to database... -- 12:23:37.489 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:23:37.489 SQL [3089]: pgsql_db_connect() -- 12:23:37.493 DEBUG [3089]: Database connection successful -- 12:23:37.493 INFO [3089]: _SERVER found -- 12:23:37.493 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 12:23:37.493 INFO [3089]: SERVER_NAME = oameye.works.coregrade.com -- 12:23:37.493 INFO [3089]: HTTP_COOKIE = ci_session=aj1o7th092ra9eh1tp58q8uh2k86ap0n -- 12:23:37.493 INFO [3089]: QUERY_STRING = -- 12:23:37.493 INFO [3089]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 12:23:37.526 INFO [3089]: COREGRADE is stopping... -- 12:23:37.526 DEBUG [3089]: Closing database connection -- 12:23:37.526 SQL [3089]: pgsql_close() -- 12:25:37.867 INFO [25724]: COREGRADE is starting... -- 12:25:37.867 INFO [25724]: Version from config: 1.0 -- 12:25:37.867 DEBUG [25724]: Connecting to database... -- 12:25:37.867 DEBUG [25724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:25:37.867 SQL [25724]: pgsql_db_connect() -- 12:25:37.872 DEBUG [25724]: Database connection successful -- 12:25:37.872 INFO [25724]: _SERVER found -- 12:25:37.872 INFO [25724]: REMOTE_ADDR = 10.0.0.15 -- 12:25:37.872 INFO [25724]: SERVER_NAME = oameye.works.coregrade.com -- 12:25:37.872 INFO [25724]: HTTP_COOKIE = ci_session=02l9okjjsds79ar0ek577tmkaapp1oag -- 12:25:37.872 INFO [25724]: QUERY_STRING = -- 12:25:37.872 INFO [25724]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 12:25:37.903 INFO [25724]: COREGRADE is stopping... -- 12:25:37.903 DEBUG [25724]: Closing database connection -- 12:25:37.903 SQL [25724]: pgsql_close() -- 12:27:38.238 INFO [4861]: COREGRADE is starting... -- 12:27:38.239 INFO [4861]: Version from config: 1.0 -- 12:27:38.239 DEBUG [4861]: Connecting to database... -- 12:27:38.239 DEBUG [4861]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:27:38.239 SQL [4861]: pgsql_db_connect() -- 12:27:38.243 DEBUG [4861]: Database connection successful -- 12:27:38.243 INFO [4861]: _SERVER found -- 12:27:38.243 INFO [4861]: REMOTE_ADDR = 10.0.0.15 -- 12:27:38.243 INFO [4861]: SERVER_NAME = oameye.works.coregrade.com -- 12:27:38.243 INFO [4861]: HTTP_COOKIE = ci_session=02l9okjjsds79ar0ek577tmkaapp1oag -- 12:27:38.243 INFO [4861]: QUERY_STRING = -- 12:27:38.243 INFO [4861]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 12:27:38.275 INFO [4861]: COREGRADE is stopping... -- 12:27:38.275 DEBUG [4861]: Closing database connection -- 12:27:38.275 SQL [4861]: pgsql_close() -- 12:29:38.780 INFO [25575]: COREGRADE is starting... -- 12:29:38.780 INFO [25575]: Version from config: 1.0 -- 12:29:38.780 DEBUG [25575]: Connecting to database... -- 12:29:38.780 DEBUG [25575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:29:38.780 SQL [25575]: pgsql_db_connect() -- 12:29:38.784 DEBUG [25575]: Database connection successful -- 12:29:38.784 INFO [25575]: _SERVER found -- 12:29:38.784 INFO [25575]: REMOTE_ADDR = 10.0.0.15 -- 12:29:38.784 INFO [25575]: SERVER_NAME = oameye.works.coregrade.com -- 12:29:38.784 INFO [25575]: HTTP_COOKIE = ci_session=02l9okjjsds79ar0ek577tmkaapp1oag -- 12:29:38.784 INFO [25575]: QUERY_STRING = -- 12:29:38.784 INFO [25575]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 12:29:38.817 INFO [25575]: COREGRADE is stopping... -- 12:29:38.817 DEBUG [25575]: Closing database connection -- 12:29:38.817 SQL [25575]: pgsql_close() -- 12:31:39.440 INFO [3086]: COREGRADE is starting... -- 12:31:39.440 INFO [3086]: Version from config: 1.0 -- 12:31:39.440 DEBUG [3086]: Connecting to database... -- 12:31:39.440 DEBUG [3086]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:31:39.440 SQL [3086]: pgsql_db_connect() -- 12:31:39.445 DEBUG [3086]: Database connection successful -- 12:31:39.445 INFO [3086]: _SERVER found -- 12:31:39.445 INFO [3086]: REMOTE_ADDR = 10.0.0.15 -- 12:31:39.445 INFO [3086]: SERVER_NAME = oameye.works.coregrade.com -- 12:31:39.445 INFO [3086]: HTTP_COOKIE = ci_session=f44tck4ed0esk80s755mtlvlrl7v03aa -- 12:31:39.445 INFO [3086]: QUERY_STRING = -- 12:31:39.445 INFO [3086]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 12:31:39.477 INFO [3086]: COREGRADE is stopping... -- 12:31:39.477 DEBUG [3086]: Closing database connection -- 12:31:39.477 SQL [3086]: pgsql_close() -- 12:33:39.811 INFO [3085]: COREGRADE is starting... -- 12:33:39.811 INFO [3085]: Version from config: 1.0 -- 12:33:39.811 DEBUG [3085]: Connecting to database... -- 12:33:39.811 DEBUG [3085]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:33:39.811 SQL [3085]: pgsql_db_connect() -- 12:33:39.815 DEBUG [3085]: Database connection successful -- 12:33:39.815 INFO [3085]: _SERVER found -- 12:33:39.815 INFO [3085]: REMOTE_ADDR = 10.0.0.15 -- 12:33:39.815 INFO [3085]: SERVER_NAME = oameye.works.coregrade.com -- 12:33:39.815 INFO [3085]: HTTP_COOKIE = ci_session=f44tck4ed0esk80s755mtlvlrl7v03aa -- 12:33:39.815 INFO [3085]: QUERY_STRING = -- 12:33:39.815 INFO [3085]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 12:33:39.848 INFO [3085]: COREGRADE is stopping... -- 12:33:39.848 DEBUG [3085]: Closing database connection -- 12:33:39.848 SQL [3085]: pgsql_close() -- 12:35:40.327 INFO [3088]: COREGRADE is starting... -- 12:35:40.327 INFO [3088]: Version from config: 1.0 -- 12:35:40.327 DEBUG [3088]: Connecting to database... -- 12:35:40.327 DEBUG [3088]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:35:40.327 SQL [3088]: pgsql_db_connect() -- 12:35:40.331 DEBUG [3088]: Database connection successful -- 12:35:40.331 INFO [3088]: _SERVER found -- 12:35:40.331 INFO [3088]: REMOTE_ADDR = 10.0.0.15 -- 12:35:40.331 INFO [3088]: SERVER_NAME = oameye.works.coregrade.com -- 12:35:40.331 INFO [3088]: HTTP_COOKIE = ci_session=f44tck4ed0esk80s755mtlvlrl7v03aa -- 12:35:40.331 INFO [3088]: QUERY_STRING = -- 12:35:40.331 INFO [3088]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 12:35:40.364 INFO [3088]: COREGRADE is stopping... -- 12:35:40.364 DEBUG [3088]: Closing database connection -- 12:35:40.364 SQL [3088]: pgsql_close() -- 12:37:40.713 INFO [25576]: COREGRADE is starting... -- 12:37:40.714 INFO [25576]: Version from config: 1.0 -- 12:37:40.714 DEBUG [25576]: Connecting to database... -- 12:37:40.714 DEBUG [25576]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:37:40.714 SQL [25576]: pgsql_db_connect() -- 12:37:40.718 DEBUG [25576]: Database connection successful -- 12:37:40.718 INFO [25576]: _SERVER found -- 12:37:40.718 INFO [25576]: REMOTE_ADDR = 10.0.0.15 -- 12:37:40.718 INFO [25576]: SERVER_NAME = oameye.works.coregrade.com -- 12:37:40.718 INFO [25576]: HTTP_COOKIE = ci_session=67hk34j7kki1vcr66cgiuvelfifvo3lr -- 12:37:40.718 INFO [25576]: QUERY_STRING = -- 12:37:40.718 INFO [25576]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 12:37:40.750 INFO [25576]: COREGRADE is stopping... -- 12:37:40.750 DEBUG [25576]: Closing database connection -- 12:37:40.750 SQL [25576]: pgsql_close() -- 12:39:41.280 INFO [3087]: COREGRADE is starting... -- 12:39:41.280 INFO [3087]: Version from config: 1.0 -- 12:39:41.280 DEBUG [3087]: Connecting to database... -- 12:39:41.280 DEBUG [3087]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:39:41.280 SQL [3087]: pgsql_db_connect() -- 12:39:41.285 DEBUG [3087]: Database connection successful -- 12:39:41.285 INFO [3087]: _SERVER found -- 12:39:41.285 INFO [3087]: REMOTE_ADDR = 10.0.0.15 -- 12:39:41.285 INFO [3087]: SERVER_NAME = oameye.works.coregrade.com -- 12:39:41.285 INFO [3087]: HTTP_COOKIE = ci_session=67hk34j7kki1vcr66cgiuvelfifvo3lr -- 12:39:41.285 INFO [3087]: QUERY_STRING = -- 12:39:41.285 INFO [3087]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 12:39:41.317 INFO [3087]: COREGRADE is stopping... -- 12:39:41.317 DEBUG [3087]: Closing database connection -- 12:39:41.317 SQL [3087]: pgsql_close() -- 12:41:41.837 INFO [25721]: COREGRADE is starting... -- 12:41:41.838 INFO [25721]: Version from config: 1.0 -- 12:41:41.838 DEBUG [25721]: Connecting to database... -- 12:41:41.838 DEBUG [25721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:41:41.838 SQL [25721]: pgsql_db_connect() -- 12:41:41.842 DEBUG [25721]: Database connection successful -- 12:41:41.842 INFO [25721]: _SERVER found -- 12:41:41.842 INFO [25721]: REMOTE_ADDR = 10.0.0.15 -- 12:41:41.842 INFO [25721]: SERVER_NAME = oameye.works.coregrade.com -- 12:41:41.842 INFO [25721]: HTTP_COOKIE = ci_session=67hk34j7kki1vcr66cgiuvelfifvo3lr -- 12:41:41.842 INFO [25721]: QUERY_STRING = -- 12:41:41.842 INFO [25721]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 12:41:41.875 INFO [25721]: COREGRADE is stopping... -- 12:41:41.875 DEBUG [25721]: Closing database connection -- 12:41:41.875 SQL [25721]: pgsql_close() -- 12:43:42.811 INFO [3089]: COREGRADE is starting... -- 12:43:42.811 INFO [3089]: Version from config: 1.0 -- 12:43:42.811 DEBUG [3089]: Connecting to database... -- 12:43:42.811 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:43:42.811 SQL [3089]: pgsql_db_connect() -- 12:43:42.815 DEBUG [3089]: Database connection successful -- 12:43:42.815 INFO [3089]: _SERVER found -- 12:43:42.815 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 12:43:42.815 INFO [3089]: SERVER_NAME = oameye.works.coregrade.com -- 12:43:42.815 INFO [3089]: HTTP_COOKIE = ci_session=ocfbnfdj8e13lrvqkht4o60h1jpevcu7 -- 12:43:42.815 INFO [3089]: QUERY_STRING = -- 12:43:42.815 INFO [3089]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 12:43:42.848 INFO [3089]: COREGRADE is stopping... -- 12:43:42.848 DEBUG [3089]: Closing database connection -- 12:43:42.848 SQL [3089]: pgsql_close() -- 12:45:43.172 INFO [25724]: COREGRADE is starting... -- 12:45:43.172 INFO [25724]: Version from config: 1.0 -- 12:45:43.172 DEBUG [25724]: Connecting to database... -- 12:45:43.172 DEBUG [25724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:45:43.172 SQL [25724]: pgsql_db_connect() -- 12:45:43.176 DEBUG [25724]: Database connection successful -- 12:45:43.176 INFO [25724]: _SERVER found -- 12:45:43.176 INFO [25724]: REMOTE_ADDR = 10.0.0.15 -- 12:45:43.176 INFO [25724]: SERVER_NAME = oameye.works.coregrade.com -- 12:45:43.176 INFO [25724]: HTTP_COOKIE = ci_session=ocfbnfdj8e13lrvqkht4o60h1jpevcu7 -- 12:45:43.176 INFO [25724]: QUERY_STRING = -- 12:45:43.176 INFO [25724]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 12:45:43.208 INFO [25724]: COREGRADE is stopping... -- 12:45:43.209 DEBUG [25724]: Closing database connection -- 12:45:43.209 SQL [25724]: pgsql_close() -- 12:47:43.726 INFO [4861]: COREGRADE is starting... -- 12:47:43.726 INFO [4861]: Version from config: 1.0 -- 12:47:43.726 DEBUG [4861]: Connecting to database... -- 12:47:43.726 DEBUG [4861]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:47:43.726 SQL [4861]: pgsql_db_connect() -- 12:47:43.730 DEBUG [4861]: Database connection successful -- 12:47:43.730 INFO [4861]: _SERVER found -- 12:47:43.730 INFO [4861]: REMOTE_ADDR = 10.0.0.15 -- 12:47:43.730 INFO [4861]: SERVER_NAME = oameye.works.coregrade.com -- 12:47:43.730 INFO [4861]: HTTP_COOKIE = ci_session=ocfbnfdj8e13lrvqkht4o60h1jpevcu7 -- 12:47:43.730 INFO [4861]: QUERY_STRING = -- 12:47:43.730 INFO [4861]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 12:47:43.763 INFO [4861]: COREGRADE is stopping... -- 12:47:43.763 DEBUG [4861]: Closing database connection -- 12:47:43.763 SQL [4861]: pgsql_close() -- 12:49:44.207 INFO [25575]: COREGRADE is starting... -- 12:49:44.208 INFO [25575]: Version from config: 1.0 -- 12:49:44.208 DEBUG [25575]: Connecting to database... -- 12:49:44.208 DEBUG [25575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:49:44.208 SQL [25575]: pgsql_db_connect() -- 12:49:44.212 DEBUG [25575]: Database connection successful -- 12:49:44.212 INFO [25575]: _SERVER found -- 12:49:44.212 INFO [25575]: REMOTE_ADDR = 10.0.0.15 -- 12:49:44.212 INFO [25575]: SERVER_NAME = oameye.works.coregrade.com -- 12:49:44.212 INFO [25575]: HTTP_COOKIE = ci_session=gjqjoqa3be7c0m2eji0firu0lodh4aca -- 12:49:44.212 INFO [25575]: QUERY_STRING = -- 12:49:44.212 INFO [25575]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 12:49:44.245 INFO [25575]: COREGRADE is stopping... -- 12:49:44.245 DEBUG [25575]: Closing database connection -- 12:49:44.245 SQL [25575]: pgsql_close() -- 12:51:44.574 INFO [3086]: COREGRADE is starting... -- 12:51:44.575 INFO [3086]: Version from config: 1.0 -- 12:51:44.575 DEBUG [3086]: Connecting to database... -- 12:51:44.575 DEBUG [3086]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:51:44.575 SQL [3086]: pgsql_db_connect() -- 12:51:44.579 DEBUG [3086]: Database connection successful -- 12:51:44.579 INFO [3086]: _SERVER found -- 12:51:44.579 INFO [3086]: REMOTE_ADDR = 10.0.0.15 -- 12:51:44.579 INFO [3086]: SERVER_NAME = oameye.works.coregrade.com -- 12:51:44.579 INFO [3086]: HTTP_COOKIE = ci_session=gjqjoqa3be7c0m2eji0firu0lodh4aca -- 12:51:44.579 INFO [3086]: QUERY_STRING = -- 12:51:44.579 INFO [3086]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 12:51:44.611 INFO [3086]: COREGRADE is stopping... -- 12:51:44.611 DEBUG [3086]: Closing database connection -- 12:51:44.611 SQL [3086]: pgsql_close() -- 12:53:45.097 INFO [3085]: COREGRADE is starting... -- 12:53:45.097 INFO [3085]: Version from config: 1.0 -- 12:53:45.097 DEBUG [3085]: Connecting to database... -- 12:53:45.097 DEBUG [3085]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:53:45.097 SQL [3085]: pgsql_db_connect() -- 12:53:45.102 DEBUG [3085]: Database connection successful -- 12:53:45.102 INFO [3085]: _SERVER found -- 12:53:45.102 INFO [3085]: REMOTE_ADDR = 10.0.0.15 -- 12:53:45.102 INFO [3085]: SERVER_NAME = oameye.works.coregrade.com -- 12:53:45.102 INFO [3085]: HTTP_COOKIE = ci_session=gjqjoqa3be7c0m2eji0firu0lodh4aca -- 12:53:45.102 INFO [3085]: QUERY_STRING = -- 12:53:45.102 INFO [3085]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 12:53:45.135 INFO [3085]: COREGRADE is stopping... -- 12:53:45.135 DEBUG [3085]: Closing database connection -- 12:53:45.135 SQL [3085]: pgsql_close() -- 12:55:45.481 INFO [3088]: COREGRADE is starting... -- 12:55:45.481 INFO [3088]: Version from config: 1.0 -- 12:55:45.481 DEBUG [3088]: Connecting to database... -- 12:55:45.481 DEBUG [3088]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:55:45.481 SQL [3088]: pgsql_db_connect() -- 12:55:45.485 DEBUG [3088]: Database connection successful -- 12:55:45.485 INFO [3088]: _SERVER found -- 12:55:45.485 INFO [3088]: REMOTE_ADDR = 10.0.0.15 -- 12:55:45.485 INFO [3088]: SERVER_NAME = oameye.works.coregrade.com -- 12:55:45.485 INFO [3088]: HTTP_COOKIE = ci_session=3j2ufen8u772i15ap2g1qv2j76eesjn1 -- 12:55:45.485 INFO [3088]: QUERY_STRING = -- 12:55:45.485 INFO [3088]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 12:55:45.518 INFO [3088]: COREGRADE is stopping... -- 12:55:45.518 DEBUG [3088]: Closing database connection -- 12:55:45.518 SQL [3088]: pgsql_close() -- 12:57:45.930 INFO [25576]: COREGRADE is starting... -- 12:57:45.930 INFO [25576]: Version from config: 1.0 -- 12:57:45.930 DEBUG [25576]: Connecting to database... -- 12:57:45.930 DEBUG [25576]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:57:45.930 SQL [25576]: pgsql_db_connect() -- 12:57:45.934 DEBUG [25576]: Database connection successful -- 12:57:45.934 INFO [25576]: _SERVER found -- 12:57:45.934 INFO [25576]: REMOTE_ADDR = 10.0.0.15 -- 12:57:45.934 INFO [25576]: SERVER_NAME = oameye.works.coregrade.com -- 12:57:45.934 INFO [25576]: HTTP_COOKIE = ci_session=3j2ufen8u772i15ap2g1qv2j76eesjn1 -- 12:57:45.934 INFO [25576]: QUERY_STRING = -- 12:57:45.934 INFO [25576]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 12:57:45.967 INFO [25576]: COREGRADE is stopping... -- 12:57:45.967 DEBUG [25576]: Closing database connection -- 12:57:45.967 SQL [25576]: pgsql_close() -- 12:59:46.418 INFO [3087]: COREGRADE is starting... -- 12:59:46.419 INFO [3087]: Version from config: 1.0 -- 12:59:46.419 DEBUG [3087]: Connecting to database... -- 12:59:46.419 DEBUG [3087]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:59:46.419 SQL [3087]: pgsql_db_connect() -- 12:59:46.423 DEBUG [3087]: Database connection successful -- 12:59:46.423 INFO [3087]: _SERVER found -- 12:59:46.423 INFO [3087]: REMOTE_ADDR = 10.0.0.15 -- 12:59:46.423 INFO [3087]: SERVER_NAME = oameye.works.coregrade.com -- 12:59:46.423 INFO [3087]: HTTP_COOKIE = ci_session=3j2ufen8u772i15ap2g1qv2j76eesjn1 -- 12:59:46.423 INFO [3087]: QUERY_STRING = -- 12:59:46.423 INFO [3087]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 12:59:46.455 INFO [3087]: COREGRADE is stopping... -- 12:59:46.455 DEBUG [3087]: Closing database connection -- 12:59:46.455 SQL [3087]: pgsql_close() -- 13:01:47.326 INFO [25721]: COREGRADE is starting... -- 13:01:47.326 INFO [25721]: Version from config: 1.0 -- 13:01:47.326 DEBUG [25721]: Connecting to database... -- 13:01:47.326 DEBUG [25721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:01:47.326 SQL [25721]: pgsql_db_connect() -- 13:01:47.330 DEBUG [25721]: Database connection successful -- 13:01:47.330 INFO [25721]: _SERVER found -- 13:01:47.330 INFO [25721]: REMOTE_ADDR = 10.0.0.15 -- 13:01:47.330 INFO [25721]: SERVER_NAME = oameye.works.coregrade.com -- 13:01:47.330 INFO [25721]: HTTP_COOKIE = ci_session=hduq1mm3niobnm9ijcidl56sprilmaoj -- 13:01:47.330 INFO [25721]: QUERY_STRING = -- 13:01:47.330 INFO [25721]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 13:01:47.362 INFO [25721]: COREGRADE is stopping... -- 13:01:47.362 DEBUG [25721]: Closing database connection -- 13:01:47.362 SQL [25721]: pgsql_close() -- 13:03:47.702 INFO [3089]: COREGRADE is starting... -- 13:03:47.702 INFO [3089]: Version from config: 1.0 -- 13:03:47.702 DEBUG [3089]: Connecting to database... -- 13:03:47.702 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:03:47.702 SQL [3089]: pgsql_db_connect() -- 13:03:47.706 DEBUG [3089]: Database connection successful -- 13:03:47.706 INFO [3089]: _SERVER found -- 13:03:47.706 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 13:03:47.706 INFO [3089]: SERVER_NAME = oameye.works.coregrade.com -- 13:03:47.706 INFO [3089]: HTTP_COOKIE = ci_session=hduq1mm3niobnm9ijcidl56sprilmaoj -- 13:03:47.706 INFO [3089]: QUERY_STRING = -- 13:03:47.706 INFO [3089]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 13:03:47.739 INFO [3089]: COREGRADE is stopping... -- 13:03:47.739 DEBUG [3089]: Closing database connection -- 13:03:47.740 SQL [3089]: pgsql_close() -- 13:05:48.180 INFO [25724]: COREGRADE is starting... -- 13:05:48.180 INFO [25724]: Version from config: 1.0 -- 13:05:48.180 DEBUG [25724]: Connecting to database... -- 13:05:48.180 DEBUG [25724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:05:48.180 SQL [25724]: pgsql_db_connect() -- 13:05:48.185 DEBUG [25724]: Database connection successful -- 13:05:48.185 INFO [25724]: _SERVER found -- 13:05:48.185 INFO [25724]: REMOTE_ADDR = 10.0.0.15 -- 13:05:48.185 INFO [25724]: SERVER_NAME = oameye.works.coregrade.com -- 13:05:48.185 INFO [25724]: HTTP_COOKIE = ci_session=hduq1mm3niobnm9ijcidl56sprilmaoj -- 13:05:48.185 INFO [25724]: QUERY_STRING = -- 13:05:48.185 INFO [25724]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 13:05:48.217 INFO [25724]: COREGRADE is stopping... -- 13:05:48.217 DEBUG [25724]: Closing database connection -- 13:05:48.217 SQL [25724]: pgsql_close() -- 13:07:48.676 INFO [4861]: COREGRADE is starting... -- 13:07:48.676 INFO [4861]: Version from config: 1.0 -- 13:07:48.676 DEBUG [4861]: Connecting to database... -- 13:07:48.676 DEBUG [4861]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:07:48.676 SQL [4861]: pgsql_db_connect() -- 13:07:48.680 DEBUG [4861]: Database connection successful -- 13:07:48.680 INFO [4861]: _SERVER found -- 13:07:48.680 INFO [4861]: REMOTE_ADDR = 10.0.0.15 -- 13:07:48.680 INFO [4861]: SERVER_NAME = oameye.works.coregrade.com -- 13:07:48.680 INFO [4861]: HTTP_COOKIE = ci_session=frkf047s6lnd2s79krvgsoe4imliggjm -- 13:07:48.680 INFO [4861]: QUERY_STRING = -- 13:07:48.680 INFO [4861]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 13:07:48.713 INFO [4861]: COREGRADE is stopping... -- 13:07:48.713 DEBUG [4861]: Closing database connection -- 13:07:48.713 SQL [4861]: pgsql_close() -- 13:09:49.065 INFO [25575]: COREGRADE is starting... -- 13:09:49.065 INFO [25575]: Version from config: 1.0 -- 13:09:49.065 DEBUG [25575]: Connecting to database... -- 13:09:49.065 DEBUG [25575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:09:49.065 SQL [25575]: pgsql_db_connect() -- 13:09:49.069 DEBUG [25575]: Database connection successful -- 13:09:49.069 INFO [25575]: _SERVER found -- 13:09:49.069 INFO [25575]: REMOTE_ADDR = 10.0.0.15 -- 13:09:49.069 INFO [25575]: SERVER_NAME = oameye.works.coregrade.com -- 13:09:49.069 INFO [25575]: HTTP_COOKIE = ci_session=frkf047s6lnd2s79krvgsoe4imliggjm -- 13:09:49.069 INFO [25575]: QUERY_STRING = -- 13:09:49.069 INFO [25575]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 13:09:49.101 INFO [25575]: COREGRADE is stopping... -- 13:09:49.101 DEBUG [25575]: Closing database connection -- 13:09:49.101 SQL [25575]: pgsql_close() -- 13:11:49.665 INFO [3086]: COREGRADE is starting... -- 13:11:49.665 INFO [3086]: Version from config: 1.0 -- 13:11:49.665 DEBUG [3086]: Connecting to database... -- 13:11:49.665 DEBUG [3086]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:11:49.665 SQL [3086]: pgsql_db_connect() -- 13:11:49.669 DEBUG [3086]: Database connection successful -- 13:11:49.669 INFO [3086]: _SERVER found -- 13:11:49.669 INFO [3086]: REMOTE_ADDR = 10.0.0.15 -- 13:11:49.669 INFO [3086]: SERVER_NAME = oameye.works.coregrade.com -- 13:11:49.669 INFO [3086]: HTTP_COOKIE = ci_session=frkf047s6lnd2s79krvgsoe4imliggjm -- 13:11:49.669 INFO [3086]: QUERY_STRING = -- 13:11:49.669 INFO [3086]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 13:11:49.702 INFO [3086]: COREGRADE is stopping... -- 13:11:49.702 DEBUG [3086]: Closing database connection -- 13:11:49.702 SQL [3086]: pgsql_close() -- 13:13:50.056 INFO [3085]: COREGRADE is starting... -- 13:13:50.057 INFO [3085]: Version from config: 1.0 -- 13:13:50.057 DEBUG [3085]: Connecting to database... -- 13:13:50.057 DEBUG [3085]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:13:50.057 SQL [3085]: pgsql_db_connect() -- 13:13:50.061 DEBUG [3085]: Database connection successful -- 13:13:50.061 INFO [3085]: _SERVER found -- 13:13:50.061 INFO [3085]: REMOTE_ADDR = 10.0.0.15 -- 13:13:50.061 INFO [3085]: SERVER_NAME = oameye.works.coregrade.com -- 13:13:50.061 INFO [3085]: HTTP_COOKIE = ci_session=qbn40nmtg2tm7a1v9pec89bl20goh19d -- 13:13:50.061 INFO [3085]: QUERY_STRING = -- 13:13:50.061 INFO [3085]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 13:13:50.094 INFO [3085]: COREGRADE is stopping... -- 13:13:50.094 DEBUG [3085]: Closing database connection -- 13:13:50.094 SQL [3085]: pgsql_close() -- 13:15:51.367 INFO [3088]: COREGRADE is starting... -- 13:15:51.368 INFO [3088]: Version from config: 1.0 -- 13:15:51.368 DEBUG [3088]: Connecting to database... -- 13:15:51.368 DEBUG [3088]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:15:51.368 SQL [3088]: pgsql_db_connect() -- 13:15:51.372 DEBUG [3088]: Database connection successful -- 13:15:51.372 INFO [3088]: _SERVER found -- 13:15:51.372 INFO [3088]: REMOTE_ADDR = 10.0.0.15 -- 13:15:51.372 INFO [3088]: SERVER_NAME = oameye.works.coregrade.com -- 13:15:51.372 INFO [3088]: HTTP_COOKIE = ci_session=qbn40nmtg2tm7a1v9pec89bl20goh19d -- 13:15:51.372 INFO [3088]: QUERY_STRING = -- 13:15:51.372 INFO [3088]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 13:15:51.406 INFO [3088]: COREGRADE is stopping... -- 13:15:51.406 DEBUG [3088]: Closing database connection -- 13:15:51.406 SQL [3088]: pgsql_close() -- 13:17:51.869 INFO [25576]: COREGRADE is starting... -- 13:17:51.869 INFO [25576]: Version from config: 1.0 -- 13:17:51.869 DEBUG [25576]: Connecting to database... -- 13:17:51.869 DEBUG [25576]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:17:51.869 SQL [25576]: pgsql_db_connect() -- 13:17:51.873 DEBUG [25576]: Database connection successful -- 13:17:51.873 INFO [25576]: _SERVER found -- 13:17:51.873 INFO [25576]: REMOTE_ADDR = 10.0.0.15 -- 13:17:51.873 INFO [25576]: SERVER_NAME = oameye.works.coregrade.com -- 13:17:51.873 INFO [25576]: HTTP_COOKIE = ci_session=qbn40nmtg2tm7a1v9pec89bl20goh19d -- 13:17:51.873 INFO [25576]: QUERY_STRING = -- 13:17:51.873 INFO [25576]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 13:17:51.907 INFO [25576]: COREGRADE is stopping... -- 13:17:51.907 DEBUG [25576]: Closing database connection -- 13:17:51.907 SQL [25576]: pgsql_close() -- 13:19:52.258 INFO [3087]: COREGRADE is starting... -- 13:19:52.258 INFO [3087]: Version from config: 1.0 -- 13:19:52.258 DEBUG [3087]: Connecting to database... -- 13:19:52.258 DEBUG [3087]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:19:52.258 SQL [3087]: pgsql_db_connect() -- 13:19:52.263 DEBUG [3087]: Database connection successful -- 13:19:52.263 INFO [3087]: _SERVER found -- 13:19:52.263 INFO [3087]: REMOTE_ADDR = 10.0.0.15 -- 13:19:52.263 INFO [3087]: SERVER_NAME = oameye.works.coregrade.com -- 13:19:52.263 INFO [3087]: HTTP_COOKIE = ci_session=cnqm9hog5k5qhdbrf2j3hgc6c40tgooc -- 13:19:52.263 INFO [3087]: QUERY_STRING = -- 13:19:52.263 INFO [3087]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 13:19:52.294 INFO [3087]: COREGRADE is stopping... -- 13:19:52.294 DEBUG [3087]: Closing database connection -- 13:19:52.294 SQL [3087]: pgsql_close() -- 13:21:52.787 INFO [25721]: COREGRADE is starting... -- 13:21:52.787 INFO [25721]: Version from config: 1.0 -- 13:21:52.787 DEBUG [25721]: Connecting to database... -- 13:21:52.787 DEBUG [25721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:21:52.787 SQL [25721]: pgsql_db_connect() -- 13:21:52.791 DEBUG [25721]: Database connection successful -- 13:21:52.791 INFO [25721]: _SERVER found -- 13:21:52.791 INFO [25721]: REMOTE_ADDR = 10.0.0.15 -- 13:21:52.791 INFO [25721]: SERVER_NAME = oameye.works.coregrade.com -- 13:21:52.791 INFO [25721]: HTTP_COOKIE = ci_session=cnqm9hog5k5qhdbrf2j3hgc6c40tgooc -- 13:21:52.791 INFO [25721]: QUERY_STRING = -- 13:21:52.791 INFO [25721]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 13:21:52.823 INFO [25721]: COREGRADE is stopping... -- 13:21:52.823 DEBUG [25721]: Closing database connection -- 13:21:52.823 SQL [25721]: pgsql_close() -- 13:23:53.369 INFO [3089]: COREGRADE is starting... -- 13:23:53.370 INFO [3089]: Version from config: 1.0 -- 13:23:53.370 DEBUG [3089]: Connecting to database... -- 13:23:53.370 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:23:53.370 SQL [3089]: pgsql_db_connect() -- 13:23:53.374 DEBUG [3089]: Database connection successful -- 13:23:53.374 INFO [3089]: _SERVER found -- 13:23:53.374 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 13:23:53.374 INFO [3089]: SERVER_NAME = oameye.works.coregrade.com -- 13:23:53.374 INFO [3089]: HTTP_COOKIE = ci_session=cnqm9hog5k5qhdbrf2j3hgc6c40tgooc -- 13:23:53.374 INFO [3089]: QUERY_STRING = -- 13:23:53.374 INFO [3089]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 13:23:53.407 INFO [3089]: COREGRADE is stopping... -- 13:23:53.407 DEBUG [3089]: Closing database connection -- 13:23:53.407 SQL [3089]: pgsql_close() -- 13:25:53.852 INFO [25724]: COREGRADE is starting... -- 13:25:53.852 INFO [25724]: Version from config: 1.0 -- 13:25:53.852 DEBUG [25724]: Connecting to database... -- 13:25:53.852 DEBUG [25724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:25:53.852 SQL [25724]: pgsql_db_connect() -- 13:25:53.856 DEBUG [25724]: Database connection successful -- 13:25:53.856 INFO [25724]: _SERVER found -- 13:25:53.856 INFO [25724]: REMOTE_ADDR = 10.0.0.15 -- 13:25:53.856 INFO [25724]: SERVER_NAME = oameye.works.coregrade.com -- 13:25:53.856 INFO [25724]: HTTP_COOKIE = ci_session=u280tnduv0hmqqpqfpe9lea140a0mhm1 -- 13:25:53.856 INFO [25724]: QUERY_STRING = -- 13:25:53.856 INFO [25724]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 13:25:53.888 INFO [25724]: COREGRADE is stopping... -- 13:25:53.888 DEBUG [25724]: Closing database connection -- 13:25:53.888 SQL [25724]: pgsql_close() -- 13:27:54.445 INFO [4861]: COREGRADE is starting... -- 13:27:54.445 INFO [4861]: Version from config: 1.0 -- 13:27:54.445 DEBUG [4861]: Connecting to database... -- 13:27:54.445 DEBUG [4861]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:27:54.445 SQL [4861]: pgsql_db_connect() -- 13:27:54.449 DEBUG [4861]: Database connection successful -- 13:27:54.449 INFO [4861]: _SERVER found -- 13:27:54.449 INFO [4861]: REMOTE_ADDR = 10.0.0.15 -- 13:27:54.449 INFO [4861]: SERVER_NAME = oameye.works.coregrade.com -- 13:27:54.449 INFO [4861]: HTTP_COOKIE = ci_session=u280tnduv0hmqqpqfpe9lea140a0mhm1 -- 13:27:54.449 INFO [4861]: QUERY_STRING = -- 13:27:54.449 INFO [4861]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 13:27:54.483 INFO [4861]: COREGRADE is stopping... -- 13:27:54.483 DEBUG [4861]: Closing database connection -- 13:27:54.483 SQL [4861]: pgsql_close() -- 13:29:55.007 INFO [25575]: COREGRADE is starting... -- 13:29:55.008 INFO [25575]: Version from config: 1.0 -- 13:29:55.008 DEBUG [25575]: Connecting to database... -- 13:29:55.008 DEBUG [25575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:29:55.008 SQL [25575]: pgsql_db_connect() -- 13:29:55.012 DEBUG [25575]: Database connection successful -- 13:29:55.012 INFO [25575]: _SERVER found -- 13:29:55.012 INFO [25575]: REMOTE_ADDR = 10.0.0.15 -- 13:29:55.012 INFO [25575]: SERVER_NAME = oameye.works.coregrade.com -- 13:29:55.012 INFO [25575]: HTTP_COOKIE = ci_session=u280tnduv0hmqqpqfpe9lea140a0mhm1 -- 13:29:55.012 INFO [25575]: QUERY_STRING = -- 13:29:55.012 INFO [25575]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 13:29:55.044 INFO [25575]: COREGRADE is stopping... -- 13:29:55.044 DEBUG [25575]: Closing database connection -- 13:29:55.044 SQL [25575]: pgsql_close() -- 13:31:55.375 INFO [3086]: COREGRADE is starting... -- 13:31:55.375 INFO [3086]: Version from config: 1.0 -- 13:31:55.375 DEBUG [3086]: Connecting to database... -- 13:31:55.375 DEBUG [3086]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:31:55.375 SQL [3086]: pgsql_db_connect() -- 13:31:55.379 DEBUG [3086]: Database connection successful -- 13:31:55.379 INFO [3086]: _SERVER found -- 13:31:55.379 INFO [3086]: REMOTE_ADDR = 10.0.0.15 -- 13:31:55.379 INFO [3086]: SERVER_NAME = oameye.works.coregrade.com -- 13:31:55.379 INFO [3086]: HTTP_COOKIE = ci_session=prj91oee1amas9uo60j5l06gj7jskkgv -- 13:31:55.379 INFO [3086]: QUERY_STRING = -- 13:31:55.379 INFO [3086]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 13:31:55.410 INFO [3086]: COREGRADE is stopping... -- 13:31:55.410 DEBUG [3086]: Closing database connection -- 13:31:55.410 SQL [3086]: pgsql_close() -- 13:33:56.089 INFO [3085]: COREGRADE is starting... -- 13:33:56.089 INFO [3085]: Version from config: 1.0 -- 13:33:56.089 DEBUG [3085]: Connecting to database... -- 13:33:56.089 DEBUG [3085]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:33:56.089 SQL [3085]: pgsql_db_connect() -- 13:33:56.093 DEBUG [3085]: Database connection successful -- 13:33:56.093 INFO [3085]: _SERVER found -- 13:33:56.093 INFO [3085]: REMOTE_ADDR = 10.0.0.15 -- 13:33:56.093 INFO [3085]: SERVER_NAME = oameye.works.coregrade.com -- 13:33:56.093 INFO [3085]: HTTP_COOKIE = ci_session=prj91oee1amas9uo60j5l06gj7jskkgv -- 13:33:56.093 INFO [3085]: QUERY_STRING = -- 13:33:56.093 INFO [3085]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 13:33:56.125 INFO [3085]: COREGRADE is stopping... -- 13:33:56.126 DEBUG [3085]: Closing database connection -- 13:33:56.126 SQL [3085]: pgsql_close() -- 13:35:56.749 INFO [3088]: COREGRADE is starting... -- 13:35:56.750 INFO [3088]: Version from config: 1.0 -- 13:35:56.750 DEBUG [3088]: Connecting to database... -- 13:35:56.750 DEBUG [3088]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:35:56.750 SQL [3088]: pgsql_db_connect() -- 13:35:56.754 DEBUG [3088]: Database connection successful -- 13:35:56.754 INFO [3088]: _SERVER found -- 13:35:56.754 INFO [3088]: REMOTE_ADDR = 10.0.0.15 -- 13:35:56.754 INFO [3088]: SERVER_NAME = oameye.works.coregrade.com -- 13:35:56.754 INFO [3088]: HTTP_COOKIE = ci_session=prj91oee1amas9uo60j5l06gj7jskkgv -- 13:35:56.754 INFO [3088]: QUERY_STRING = -- 13:35:56.754 INFO [3088]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 13:35:56.787 INFO [3088]: COREGRADE is stopping... -- 13:35:56.787 DEBUG [3088]: Closing database connection -- 13:35:56.787 SQL [3088]: pgsql_close() -- 13:37:57.231 INFO [25576]: COREGRADE is starting... -- 13:37:57.232 INFO [25576]: Version from config: 1.0 -- 13:37:57.232 DEBUG [25576]: Connecting to database... -- 13:37:57.232 DEBUG [25576]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:37:57.232 SQL [25576]: pgsql_db_connect() -- 13:37:57.236 DEBUG [25576]: Database connection successful -- 13:37:57.236 INFO [25576]: _SERVER found -- 13:37:57.236 INFO [25576]: REMOTE_ADDR = 10.0.0.15 -- 13:37:57.236 INFO [25576]: SERVER_NAME = oameye.works.coregrade.com -- 13:37:57.236 INFO [25576]: HTTP_COOKIE = ci_session=s8h1p7uo6av7co0pvcv5cmv48kja0kno -- 13:37:57.236 INFO [25576]: QUERY_STRING = -- 13:37:57.236 INFO [25576]: HTTP_X_FORWARDED_FOR = 73.64.176.160 -- 13:37:57.268 INFO [25576]: COREGRADE is stopping... -- 13:37:57.268 DEBUG [25576]: Closing database connection -- 13:37:57.268 SQL [25576]: pgsql_close() -- 19:39:37.751 INFO [3087]: COREGRADE is starting... -- 19:39:37.751 INFO [3087]: Version from config: 1.0 -- 19:39:37.751 DEBUG [3087]: Connecting to database... -- 19:39:37.751 DEBUG [3087]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:39:37.751 SQL [3087]: pgsql_db_connect() -- 19:39:37.756 DEBUG [3087]: Database connection successful -- 19:39:37.756 INFO [3087]: _SERVER found -- 19:39:37.756 INFO [3087]: REMOTE_ADDR = 10.0.0.15 -- 19:39:37.756 INFO [3087]: SERVER_NAME = oameye.works.coregrade.com -- 19:39:37.756 INFO [3087]: QUERY_STRING = /solr/admin/info/system -- 19:39:37.756 INFO [3087]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 19:39:37.768 INFO [3087]: COREGRADE is stopping... -- 19:39:37.768 DEBUG [3087]: Closing database connection -- 19:39:37.768 SQL [3087]: pgsql_close() -- 19:45:17.160 INFO [25721]: COREGRADE is starting... -- 19:45:17.160 INFO [25721]: Version from config: 1.0 -- 19:45:17.160 DEBUG [25721]: Connecting to database... -- 19:45:17.160 DEBUG [25721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:45:17.160 SQL [25721]: pgsql_db_connect() -- 19:45:17.164 DEBUG [25721]: Database connection successful -- 19:45:17.164 INFO [25721]: _SERVER found -- 19:45:17.164 INFO [25721]: REMOTE_ADDR = 10.0.0.15 -- 19:45:17.164 INFO [25721]: SERVER_NAME = oameye.works.coregrade.com -- 19:45:17.164 INFO [25721]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 19:45:17.164 INFO [25721]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 19:45:17.199 INFO [25721]: COREGRADE is stopping... -- 19:45:17.199 DEBUG [25721]: Closing database connection -- 19:45:17.199 SQL [25721]: pgsql_close() -- 19:45:19.204 INFO [25721]: COREGRADE is starting... -- 19:45:19.205 INFO [25721]: Version from config: 1.0 -- 19:45:19.205 DEBUG [25721]: Connecting to database... -- 19:45:19.205 DEBUG [25721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:45:19.205 SQL [25721]: pgsql_db_connect() -- 19:45:19.209 DEBUG [25721]: Database connection successful -- 19:45:19.209 INFO [25721]: _SERVER found -- 19:45:19.209 INFO [25721]: REMOTE_ADDR = 10.0.0.15 -- 19:45:19.209 INFO [25721]: SERVER_NAME = oameye.works.coregrade.com -- 19:45:19.209 INFO [25721]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 19:45:19.209 INFO [25721]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 19:45:19.239 INFO [25721]: COREGRADE is stopping... -- 19:45:19.239 DEBUG [25721]: Closing database connection -- 19:45:19.239 SQL [25721]: pgsql_close() -- 19:56:31.344 INFO [3089]: COREGRADE is starting... -- 19:56:31.344 INFO [3089]: Version from config: 1.0 -- 19:56:31.344 DEBUG [3089]: Connecting to database... -- 19:56:31.344 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:31.344 SQL [3089]: pgsql_db_connect() -- 19:56:31.348 DEBUG [3089]: Database connection successful -- 19:56:31.348 INFO [3089]: _SERVER found -- 19:56:31.348 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 19:56:31.348 INFO [3089]: SERVER_NAME = oameye.works.coregrade.com -- 19:56:31.348 INFO [3089]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 19:56:31.348 INFO [3089]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 19:56:31.385 INFO [3089]: COREGRADE is stopping... -- 19:56:31.385 DEBUG [3089]: Closing database connection -- 19:56:31.385 SQL [3089]: pgsql_close() -- 22:08:30.122 INFO [25724]: COREGRADE is starting... -- 22:08:30.122 INFO [25724]: Version from config: 1.0 -- 22:08:30.122 DEBUG [25724]: Connecting to database... -- 22:08:30.122 DEBUG [25724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:08:30.122 SQL [25724]: pgsql_db_connect() -- 22:08:30.127 DEBUG [25724]: Database connection successful -- 22:08:30.127 INFO [25724]: _SERVER found -- 22:08:30.127 INFO [25724]: REMOTE_ADDR = 10.0.0.15 -- 22:08:30.127 INFO [25724]: SERVER_NAME = oameye.works.coregrade.com -- 22:08:30.127 INFO [25724]: QUERY_STRING = /api/jsonws/invoke -- 22:08:30.127 INFO [25724]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 22:08:30.141 INFO [25724]: COREGRADE is stopping... -- 22:08:30.141 DEBUG [25724]: Closing database connection -- 22:08:30.141 SQL [25724]: pgsql_close() -- 01:36:52.489 INFO [4861]: COREGRADE is starting... -- 01:36:52.489 INFO [4861]: Version from config: 1.0 -- 01:36:52.489 DEBUG [4861]: Connecting to database... -- 01:36:52.489 DEBUG [4861]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:36:52.489 SQL [4861]: pgsql_db_connect() -- 01:36:52.494 DEBUG [4861]: Database connection successful -- 01:36:52.494 INFO [4861]: _SERVER found -- 01:36:52.494 INFO [4861]: REMOTE_ADDR = 10.0.0.15 -- 01:36:52.494 INFO [4861]: SERVER_NAME = oameye.works.coregrade.com -- 01:36:52.494 INFO [4861]: QUERY_STRING = /.well-known/acme-challenge/BX8UhD5ZDyfGRsK76UBa1s4rOHQgx01sD7nA6W-RRco -- 01:36:52.494 INFO [4861]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 01:36:52.509 INFO [4861]: COREGRADE is stopping... -- 01:36:52.509 DEBUG [4861]: Closing database connection -- 01:36:52.509 SQL [4861]: pgsql_close() -- 01:36:52.710 INFO [3085]: COREGRADE is starting... -- 01:36:52.710 INFO [3085]: Version from config: 1.0 -- 01:36:52.710 DEBUG [3085]: Connecting to database... -- 01:36:52.710 DEBUG [3085]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:36:52.710 SQL [3085]: pgsql_db_connect() -- 01:36:52.714 DEBUG [3085]: Database connection successful -- 01:36:52.714 INFO [3085]: _SERVER found -- 01:36:52.714 INFO [3085]: REMOTE_ADDR = 10.0.0.15 -- 01:36:52.714 INFO [3085]: SERVER_NAME = oameye.works.coregrade.com -- 01:36:52.714 INFO [3085]: QUERY_STRING = /.well-known/acme-challenge/BX8UhD5ZDyfGRsK76UBa1s4rOHQgx01sD7nA6W-RRco -- 01:36:52.714 INFO [3085]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 01:36:52.726 INFO [3085]: COREGRADE is stopping... -- 01:36:52.727 DEBUG [3085]: Closing database connection -- 01:36:52.727 SQL [3085]: pgsql_close() -- 01:36:52.739 INFO [3088]: COREGRADE is starting... -- 01:36:52.740 INFO [3088]: Version from config: 1.0 -- 01:36:52.740 DEBUG [3088]: Connecting to database... -- 01:36:52.740 DEBUG [3088]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:36:52.740 SQL [3088]: pgsql_db_connect() -- 01:36:52.744 DEBUG [3088]: Database connection successful -- 01:36:52.744 INFO [3088]: _SERVER found -- 01:36:52.744 INFO [3088]: REMOTE_ADDR = 10.0.0.15 -- 01:36:52.744 INFO [3088]: SERVER_NAME = oameye.works.coregrade.com -- 01:36:52.744 INFO [3088]: QUERY_STRING = /.well-known/acme-challenge/BX8UhD5ZDyfGRsK76UBa1s4rOHQgx01sD7nA6W-RRco -- 01:36:52.744 INFO [3088]: HTTP_X_FORWARDED_FOR = 34.222.229.130 -- 01:36:52.758 INFO [3088]: COREGRADE is stopping... -- 01:36:52.758 DEBUG [3088]: Closing database connection -- 01:36:52.758 SQL [3088]: pgsql_close() -- 03:31:29.259 INFO [25576]: COREGRADE is starting... -- 03:31:29.259 INFO [25576]: Version from config: 1.0 -- 03:31:29.259 DEBUG [25576]: Connecting to database... -- 03:31:29.259 DEBUG [25576]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:31:29.259 SQL [25576]: pgsql_db_connect() -- 03:31:29.265 DEBUG [25576]: Database connection successful -- 03:31:29.265 INFO [25576]: _SERVER found -- 03:31:29.265 INFO [25576]: REMOTE_ADDR = 10.0.0.15 -- 03:31:29.265 INFO [25576]: SERVER_NAME = oameye.works.coregrade.com -- 03:31:29.265 INFO [25576]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 03:31:29.265 INFO [25576]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 03:31:29.279 INFO [25576]: COREGRADE is stopping... -- 03:31:29.279 DEBUG [25576]: Closing database connection -- 03:31:29.279 SQL [25576]: pgsql_close() -- 04:37:39.607 INFO [3087]: COREGRADE is starting... -- 04:37:39.608 INFO [3087]: Version from config: 1.0 -- 04:37:39.608 DEBUG [3087]: Connecting to database... -- 04:37:39.608 DEBUG [3087]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:37:39.608 SQL [3087]: pgsql_db_connect() -- 04:37:39.613 DEBUG [3087]: Database connection successful -- 04:37:39.613 INFO [3087]: _SERVER found -- 04:37:39.613 INFO [3087]: REMOTE_ADDR = 10.0.0.15 -- 04:37:39.613 INFO [3087]: SERVER_NAME = oameye.works.coregrade.com -- 04:37:39.613 INFO [3087]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 04:37:39.613 INFO [3087]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 04:37:39.625 INFO [3087]: COREGRADE is stopping... -- 04:37:39.626 DEBUG [3087]: Closing database connection -- 04:37:39.626 SQL [3087]: pgsql_close() -- 19:17:24.427 INFO [25721]: COREGRADE is starting... -- 19:17:24.428 INFO [25721]: Version from config: 1.0 -- 19:17:24.428 DEBUG [25721]: Connecting to database... -- 19:17:24.428 DEBUG [25721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:17:24.428 SQL [25721]: pgsql_db_connect() -- 19:17:24.432 DEBUG [25721]: Database connection successful -- 19:17:24.432 INFO [25721]: _SERVER found -- 19:17:24.432 INFO [25721]: REMOTE_ADDR = 10.0.0.15 -- 19:17:24.432 INFO [25721]: SERVER_NAME = oameye.works.coregrade.com -- 19:17:24.432 INFO [25721]: HTTP_COOKIE = _ga=GA1.2.1225727811.1567027035 -- 19:17:24.432 INFO [25721]: QUERY_STRING = -- 19:17:24.432 INFO [25721]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:17:24.467 INFO [25721]: COREGRADE is stopping... -- 19:17:24.467 DEBUG [25721]: Closing database connection -- 19:17:24.467 SQL [25721]: pgsql_close() -- 19:17:24.661 INFO [25721]: COREGRADE is starting... -- 19:17:24.661 INFO [25721]: Version from config: 1.0 -- 19:17:24.661 DEBUG [25721]: Connecting to database... -- 19:17:24.661 DEBUG [25721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:17:24.661 SQL [25721]: pgsql_db_connect() -- 19:17:24.665 DEBUG [25721]: Database connection successful -- 19:17:24.665 INFO [25721]: _SERVER found -- 19:17:24.665 INFO [25721]: REMOTE_ADDR = 10.0.0.15 -- 19:17:24.665 INFO [25721]: SERVER_NAME = oameye.works.coregrade.com -- 19:17:24.665 INFO [25721]: HTTP_COOKIE = _ga=GA1.2.1225727811.1567027035; ci_session=bdev2qjlrqsavvtarf19hf6nit19873v -- 19:17:24.665 INFO [25721]: QUERY_STRING = /assets/img/footer_1.jpg -- 19:17:24.665 INFO [25721]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:17:24.676 INFO [25721]: COREGRADE is stopping... -- 19:17:24.676 DEBUG [25721]: Closing database connection -- 19:17:24.676 SQL [25721]: pgsql_close() -- 19:56:39.336 INFO [3089]: COREGRADE is starting... -- 19:56:39.336 INFO [3089]: Version from config: 1.0 -- 19:56:39.336 DEBUG [3089]: Connecting to database... -- 19:56:39.336 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:39.336 SQL [3089]: pgsql_db_connect() -- 19:56:39.342 DEBUG [3089]: Database connection successful -- 19:56:39.342 INFO [3089]: _SERVER found -- 19:56:39.342 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 19:56:39.342 INFO [3089]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:56:39.342 INFO [3089]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.67193905.1591972257 -- 19:56:39.342 INFO [3089]: QUERY_STRING = -- 19:56:39.342 INFO [3089]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:39.380 INFO [3089]: COREGRADE is stopping... -- 19:56:39.380 DEBUG [3089]: Closing database connection -- 19:56:39.380 SQL [3089]: pgsql_close() -- 19:56:39.608 INFO [3089]: COREGRADE is starting... -- 19:56:39.608 INFO [3089]: Version from config: 1.0 -- 19:56:39.608 DEBUG [3089]: Connecting to database... -- 19:56:39.608 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:39.608 SQL [3089]: pgsql_db_connect() -- 19:56:39.612 DEBUG [3089]: Database connection successful -- 19:56:39.612 INFO [3089]: _SERVER found -- 19:56:39.612 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 19:56:39.612 INFO [3089]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:56:39.612 INFO [3089]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.67193905.1591972257; ci_session=j7dogmpotklhh2bcioj9lrciq0rtdml8 -- 19:56:39.612 INFO [3089]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 19:56:39.612 INFO [3089]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:39.624 INFO [3089]: COREGRADE is stopping... -- 19:56:39.624 DEBUG [3089]: Closing database connection -- 19:56:39.624 SQL [3089]: pgsql_close() -- 19:56:39.632 INFO [3089]: COREGRADE is starting... -- 19:56:39.632 INFO [3089]: Version from config: 1.0 -- 19:56:39.632 DEBUG [3089]: Connecting to database... -- 19:56:39.632 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:39.632 SQL [3089]: pgsql_db_connect() -- 19:56:39.636 DEBUG [3089]: Database connection successful -- 19:56:39.636 INFO [3089]: _SERVER found -- 19:56:39.636 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 19:56:39.636 INFO [3089]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:56:39.636 INFO [3089]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.67193905.1591972257; ci_session=j7dogmpotklhh2bcioj9lrciq0rtdml8 -- 19:56:39.636 INFO [3089]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 19:56:39.636 INFO [3089]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:39.647 INFO [3089]: COREGRADE is stopping... -- 19:56:39.648 DEBUG [3089]: Closing database connection -- 19:56:39.648 SQL [3089]: pgsql_close() -- 19:56:39.656 INFO [3089]: COREGRADE is starting... -- 19:56:39.656 INFO [3089]: Version from config: 1.0 -- 19:56:39.656 DEBUG [3089]: Connecting to database... -- 19:56:39.656 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:39.656 SQL [3089]: pgsql_db_connect() -- 19:56:39.660 DEBUG [3089]: Database connection successful -- 19:56:39.660 INFO [3089]: _SERVER found -- 19:56:39.660 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 19:56:39.660 INFO [3089]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:56:39.660 INFO [3089]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.67193905.1591972257; ci_session=j7dogmpotklhh2bcioj9lrciq0rtdml8 -- 19:56:39.660 INFO [3089]: QUERY_STRING = /assets/images/savvy-block.png -- 19:56:39.660 INFO [3089]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:39.671 INFO [3089]: COREGRADE is stopping... -- 19:56:39.671 DEBUG [3089]: Closing database connection -- 19:56:39.671 SQL [3089]: pgsql_close() -- 19:56:41.537 INFO [3089]: COREGRADE is starting... -- 19:56:41.538 INFO [3089]: Version from config: 1.0 -- 19:56:41.538 DEBUG [3089]: Connecting to database... -- 19:56:41.538 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:41.538 SQL [3089]: pgsql_db_connect() -- 19:56:41.542 DEBUG [3089]: Database connection successful -- 19:56:41.542 INFO [3089]: _SERVER found -- 19:56:41.542 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 19:56:41.542 INFO [3089]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:56:41.542 INFO [3089]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.67193905.1591972257; ci_session=j7dogmpotklhh2bcioj9lrciq0rtdml8 -- 19:56:41.542 INFO [3089]: QUERY_STRING = -- 19:56:41.542 INFO [3089]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:41.572 INFO [3089]: COREGRADE is stopping... -- 19:56:41.572 DEBUG [3089]: Closing database connection -- 19:56:41.572 SQL [3089]: pgsql_close() -- 19:56:41.633 INFO [3089]: COREGRADE is starting... -- 19:56:41.633 INFO [3089]: Version from config: 1.0 -- 19:56:41.633 DEBUG [3089]: Connecting to database... -- 19:56:41.633 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:41.633 SQL [3089]: pgsql_db_connect() -- 19:56:41.637 DEBUG [3089]: Database connection successful -- 19:56:41.637 INFO [3089]: _SERVER found -- 19:56:41.637 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 19:56:41.637 INFO [3089]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:56:41.637 INFO [3089]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.67193905.1591972257; ci_session=j7dogmpotklhh2bcioj9lrciq0rtdml8 -- 19:56:41.637 INFO [3089]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 19:56:41.637 INFO [3089]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:41.649 INFO [3089]: COREGRADE is stopping... -- 19:56:41.649 DEBUG [3089]: Closing database connection -- 19:56:41.649 SQL [3089]: pgsql_close() -- 19:56:41.668 INFO [3089]: COREGRADE is starting... -- 19:56:41.668 INFO [3089]: Version from config: 1.0 -- 19:56:41.668 DEBUG [3089]: Connecting to database... -- 19:56:41.668 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:41.668 SQL [3089]: pgsql_db_connect() -- 19:56:41.672 DEBUG [3089]: Database connection successful -- 19:56:41.672 INFO [3089]: _SERVER found -- 19:56:41.672 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 19:56:41.672 INFO [3089]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:56:41.672 INFO [3089]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.67193905.1591972257; ci_session=j7dogmpotklhh2bcioj9lrciq0rtdml8 -- 19:56:41.672 INFO [3089]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 19:56:41.672 INFO [3089]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:41.683 INFO [3089]: COREGRADE is stopping... -- 19:56:41.683 DEBUG [3089]: Closing database connection -- 19:56:41.683 SQL [3089]: pgsql_close() -- 19:56:41.697 INFO [3089]: COREGRADE is starting... -- 19:56:41.697 INFO [3089]: Version from config: 1.0 -- 19:56:41.697 DEBUG [3089]: Connecting to database... -- 19:56:41.697 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:41.697 SQL [3089]: pgsql_db_connect() -- 19:56:41.701 DEBUG [3089]: Database connection successful -- 19:56:41.701 INFO [3089]: _SERVER found -- 19:56:41.701 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 19:56:41.701 INFO [3089]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:56:41.701 INFO [3089]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.67193905.1591972257; ci_session=j7dogmpotklhh2bcioj9lrciq0rtdml8 -- 19:56:41.701 INFO [3089]: QUERY_STRING = /assets/images/savvy-block.png -- 19:56:41.701 INFO [3089]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:41.713 INFO [3089]: COREGRADE is stopping... -- 19:56:41.713 DEBUG [3089]: Closing database connection -- 19:56:41.713 SQL [3089]: pgsql_close() -- 19:56:44.027 INFO [3089]: COREGRADE is starting... -- 19:56:44.027 INFO [3089]: Version from config: 1.0 -- 19:56:44.027 DEBUG [3089]: Connecting to database... -- 19:56:44.027 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:44.027 SQL [3089]: pgsql_db_connect() -- 19:56:44.032 DEBUG [3089]: Database connection successful -- 19:56:44.032 INFO [3089]: _SERVER found -- 19:56:44.032 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 19:56:44.032 INFO [3089]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:56:44.032 INFO [3089]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.67193905.1591972257; ci_session=j7dogmpotklhh2bcioj9lrciq0rtdml8 -- 19:56:44.032 INFO [3089]: QUERY_STRING = -- 19:56:44.032 INFO [3089]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:44.063 INFO [3089]: COREGRADE is stopping... -- 19:56:44.063 DEBUG [3089]: Closing database connection -- 19:56:44.063 SQL [3089]: pgsql_close() -- 19:56:44.107 INFO [3089]: COREGRADE is starting... -- 19:56:44.107 INFO [3089]: Version from config: 1.0 -- 19:56:44.107 DEBUG [3089]: Connecting to database... -- 19:56:44.107 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:44.107 SQL [3089]: pgsql_db_connect() -- 19:56:44.111 DEBUG [3089]: Database connection successful -- 19:56:44.111 INFO [3089]: _SERVER found -- 19:56:44.111 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 19:56:44.111 INFO [3089]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:56:44.111 INFO [3089]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.67193905.1591972257; ci_session=j7dogmpotklhh2bcioj9lrciq0rtdml8 -- 19:56:44.111 INFO [3089]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 19:56:44.111 INFO [3089]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:44.122 INFO [3089]: COREGRADE is stopping... -- 19:56:44.122 DEBUG [3089]: Closing database connection -- 19:56:44.122 SQL [3089]: pgsql_close() -- 19:56:44.154 INFO [3089]: COREGRADE is starting... -- 19:56:44.154 INFO [3089]: Version from config: 1.0 -- 19:56:44.154 DEBUG [3089]: Connecting to database... -- 19:56:44.154 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:44.154 SQL [3089]: pgsql_db_connect() -- 19:56:44.158 DEBUG [3089]: Database connection successful -- 19:56:44.158 INFO [3089]: _SERVER found -- 19:56:44.158 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 19:56:44.158 INFO [3089]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:56:44.158 INFO [3089]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.67193905.1591972257; ci_session=j7dogmpotklhh2bcioj9lrciq0rtdml8 -- 19:56:44.158 INFO [3089]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 19:56:44.158 INFO [3089]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:44.169 INFO [3089]: COREGRADE is stopping... -- 19:56:44.169 DEBUG [3089]: Closing database connection -- 19:56:44.169 SQL [3089]: pgsql_close() -- 19:56:44.191 INFO [3089]: COREGRADE is starting... -- 19:56:44.191 INFO [3089]: Version from config: 1.0 -- 19:56:44.191 DEBUG [3089]: Connecting to database... -- 19:56:44.191 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:44.191 SQL [3089]: pgsql_db_connect() -- 19:56:44.195 DEBUG [3089]: Database connection successful -- 19:56:44.195 INFO [3089]: _SERVER found -- 19:56:44.195 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 19:56:44.195 INFO [3089]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:56:44.195 INFO [3089]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.67193905.1591972257; ci_session=j7dogmpotklhh2bcioj9lrciq0rtdml8 -- 19:56:44.195 INFO [3089]: QUERY_STRING = /assets/images/savvy-block.png -- 19:56:44.195 INFO [3089]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:44.206 INFO [3089]: COREGRADE is stopping... -- 19:56:44.206 DEBUG [3089]: Closing database connection -- 19:56:44.206 SQL [3089]: pgsql_close() -- 19:56:44.977 INFO [3089]: COREGRADE is starting... -- 19:56:44.977 INFO [3089]: Version from config: 1.0 -- 19:56:44.977 DEBUG [3089]: Connecting to database... -- 19:56:44.977 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:44.977 SQL [3089]: pgsql_db_connect() -- 19:56:44.982 DEBUG [3089]: Database connection successful -- 19:56:44.982 INFO [3089]: _SERVER found -- 19:56:44.982 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 19:56:44.982 INFO [3089]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:56:44.982 INFO [3089]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.67193905.1591972257; ci_session=j7dogmpotklhh2bcioj9lrciq0rtdml8 -- 19:56:44.982 INFO [3089]: QUERY_STRING = -- 19:56:44.982 INFO [3089]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:45.012 INFO [3089]: COREGRADE is stopping... -- 19:56:45.012 DEBUG [3089]: Closing database connection -- 19:56:45.012 SQL [3089]: pgsql_close() -- 19:56:45.057 INFO [3089]: COREGRADE is starting... -- 19:56:45.057 INFO [3089]: Version from config: 1.0 -- 19:56:45.057 DEBUG [3089]: Connecting to database... -- 19:56:45.057 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:45.057 SQL [3089]: pgsql_db_connect() -- 19:56:45.061 DEBUG [3089]: Database connection successful -- 19:56:45.061 INFO [3089]: _SERVER found -- 19:56:45.061 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 19:56:45.061 INFO [3089]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:56:45.061 INFO [3089]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.67193905.1591972257; ci_session=j7dogmpotklhh2bcioj9lrciq0rtdml8 -- 19:56:45.061 INFO [3089]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 19:56:45.061 INFO [3089]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:45.072 INFO [3089]: COREGRADE is stopping... -- 19:56:45.072 DEBUG [3089]: Closing database connection -- 19:56:45.072 SQL [3089]: pgsql_close() -- 19:56:45.086 INFO [3089]: COREGRADE is starting... -- 19:56:45.086 INFO [3089]: Version from config: 1.0 -- 19:56:45.086 DEBUG [3089]: Connecting to database... -- 19:56:45.086 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:45.086 SQL [3089]: pgsql_db_connect() -- 19:56:45.090 DEBUG [3089]: Database connection successful -- 19:56:45.090 INFO [3089]: _SERVER found -- 19:56:45.090 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 19:56:45.090 INFO [3089]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:56:45.090 INFO [3089]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.67193905.1591972257; ci_session=j7dogmpotklhh2bcioj9lrciq0rtdml8 -- 19:56:45.090 INFO [3089]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 19:56:45.090 INFO [3089]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:45.102 INFO [3089]: COREGRADE is stopping... -- 19:56:45.102 DEBUG [3089]: Closing database connection -- 19:56:45.102 SQL [3089]: pgsql_close() -- 19:56:45.112 INFO [3089]: COREGRADE is starting... -- 19:56:45.112 INFO [3089]: Version from config: 1.0 -- 19:56:45.112 DEBUG [3089]: Connecting to database... -- 19:56:45.112 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:45.112 SQL [3089]: pgsql_db_connect() -- 19:56:45.116 DEBUG [3089]: Database connection successful -- 19:56:45.116 INFO [3089]: _SERVER found -- 19:56:45.116 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 19:56:45.116 INFO [3089]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:56:45.116 INFO [3089]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.67193905.1591972257; ci_session=j7dogmpotklhh2bcioj9lrciq0rtdml8 -- 19:56:45.116 INFO [3089]: QUERY_STRING = /assets/images/savvy-block.png -- 19:56:45.116 INFO [3089]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:45.127 INFO [3089]: COREGRADE is stopping... -- 19:56:45.127 DEBUG [3089]: Closing database connection -- 19:56:45.127 SQL [3089]: pgsql_close() -- 19:56:45.639 INFO [3089]: COREGRADE is starting... -- 19:56:45.639 INFO [3089]: Version from config: 1.0 -- 19:56:45.639 DEBUG [3089]: Connecting to database... -- 19:56:45.639 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:45.639 SQL [3089]: pgsql_db_connect() -- 19:56:45.643 DEBUG [3089]: Database connection successful -- 19:56:45.643 INFO [3089]: _SERVER found -- 19:56:45.643 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 19:56:45.643 INFO [3089]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:56:45.643 INFO [3089]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.67193905.1591972257; ci_session=j7dogmpotklhh2bcioj9lrciq0rtdml8 -- 19:56:45.643 INFO [3089]: QUERY_STRING = -- 19:56:45.643 INFO [3089]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:45.673 INFO [3089]: COREGRADE is stopping... -- 19:56:45.674 DEBUG [3089]: Closing database connection -- 19:56:45.674 SQL [3089]: pgsql_close() -- 19:56:45.737 INFO [3089]: COREGRADE is starting... -- 19:56:45.737 INFO [3089]: Version from config: 1.0 -- 19:56:45.737 DEBUG [3089]: Connecting to database... -- 19:56:45.737 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:45.737 SQL [3089]: pgsql_db_connect() -- 19:56:45.741 DEBUG [3089]: Database connection successful -- 19:56:45.741 INFO [3089]: _SERVER found -- 19:56:45.741 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 19:56:45.741 INFO [3089]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:56:45.741 INFO [3089]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.67193905.1591972257; ci_session=j7dogmpotklhh2bcioj9lrciq0rtdml8 -- 19:56:45.741 INFO [3089]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 19:56:45.741 INFO [3089]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:45.753 INFO [3089]: COREGRADE is stopping... -- 19:56:45.753 DEBUG [3089]: Closing database connection -- 19:56:45.753 SQL [3089]: pgsql_close() -- 19:56:45.761 INFO [3089]: COREGRADE is starting... -- 19:56:45.761 INFO [3089]: Version from config: 1.0 -- 19:56:45.761 DEBUG [3089]: Connecting to database... -- 19:56:45.761 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:45.761 SQL [3089]: pgsql_db_connect() -- 19:56:45.765 DEBUG [3089]: Database connection successful -- 19:56:45.765 INFO [3089]: _SERVER found -- 19:56:45.765 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 19:56:45.765 INFO [3089]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:56:45.765 INFO [3089]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.67193905.1591972257; ci_session=j7dogmpotklhh2bcioj9lrciq0rtdml8 -- 19:56:45.765 INFO [3089]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 19:56:45.765 INFO [3089]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:45.776 INFO [3089]: COREGRADE is stopping... -- 19:56:45.776 DEBUG [3089]: Closing database connection -- 19:56:45.776 SQL [3089]: pgsql_close() -- 19:56:45.789 INFO [3089]: COREGRADE is starting... -- 19:56:45.789 INFO [3089]: Version from config: 1.0 -- 19:56:45.789 DEBUG [3089]: Connecting to database... -- 19:56:45.789 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:45.789 SQL [3089]: pgsql_db_connect() -- 19:56:45.793 DEBUG [3089]: Database connection successful -- 19:56:45.793 INFO [3089]: _SERVER found -- 19:56:45.793 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 19:56:45.793 INFO [3089]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:56:45.793 INFO [3089]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.67193905.1591972257; ci_session=j7dogmpotklhh2bcioj9lrciq0rtdml8 -- 19:56:45.793 INFO [3089]: QUERY_STRING = /assets/images/savvy-block.png -- 19:56:45.793 INFO [3089]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:45.804 INFO [3089]: COREGRADE is stopping... -- 19:56:45.804 DEBUG [3089]: Closing database connection -- 19:56:45.804 SQL [3089]: pgsql_close() -- 19:56:46.059 INFO [3089]: COREGRADE is starting... -- 19:56:46.060 INFO [3089]: Version from config: 1.0 -- 19:56:46.060 DEBUG [3089]: Connecting to database... -- 19:56:46.060 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:46.060 SQL [3089]: pgsql_db_connect() -- 19:56:46.064 DEBUG [3089]: Database connection successful -- 19:56:46.064 INFO [3089]: _SERVER found -- 19:56:46.064 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 19:56:46.064 INFO [3089]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:56:46.064 INFO [3089]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.67193905.1591972257; ci_session=j7dogmpotklhh2bcioj9lrciq0rtdml8 -- 19:56:46.064 INFO [3089]: QUERY_STRING = -- 19:56:46.064 INFO [3089]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:46.094 INFO [3089]: COREGRADE is stopping... -- 19:56:46.094 DEBUG [3089]: Closing database connection -- 19:56:46.094 SQL [3089]: pgsql_close() -- 19:56:46.138 INFO [3089]: COREGRADE is starting... -- 19:56:46.139 INFO [3089]: Version from config: 1.0 -- 19:56:46.139 DEBUG [3089]: Connecting to database... -- 19:56:46.139 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:46.139 SQL [3089]: pgsql_db_connect() -- 19:56:46.143 DEBUG [3089]: Database connection successful -- 19:56:46.143 INFO [3089]: _SERVER found -- 19:56:46.143 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 19:56:46.143 INFO [3089]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:56:46.143 INFO [3089]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.67193905.1591972257; ci_session=j7dogmpotklhh2bcioj9lrciq0rtdml8 -- 19:56:46.143 INFO [3089]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 19:56:46.143 INFO [3089]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:46.154 INFO [3089]: COREGRADE is stopping... -- 19:56:46.154 DEBUG [3089]: Closing database connection -- 19:56:46.154 SQL [3089]: pgsql_close() -- 19:56:46.219 INFO [3089]: COREGRADE is starting... -- 19:56:46.219 INFO [3089]: Version from config: 1.0 -- 19:56:46.219 DEBUG [3089]: Connecting to database... -- 19:56:46.219 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:46.219 SQL [3089]: pgsql_db_connect() -- 19:56:46.223 DEBUG [3089]: Database connection successful -- 19:56:46.223 INFO [3089]: _SERVER found -- 19:56:46.223 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 19:56:46.223 INFO [3089]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:56:46.223 INFO [3089]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.67193905.1591972257; ci_session=j7dogmpotklhh2bcioj9lrciq0rtdml8 -- 19:56:46.223 INFO [3089]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 19:56:46.223 INFO [3089]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:46.235 INFO [3089]: COREGRADE is stopping... -- 19:56:46.235 DEBUG [3089]: Closing database connection -- 19:56:46.235 SQL [3089]: pgsql_close() -- 19:56:46.245 INFO [3089]: COREGRADE is starting... -- 19:56:46.246 INFO [3089]: Version from config: 1.0 -- 19:56:46.246 DEBUG [3089]: Connecting to database... -- 19:56:46.246 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:56:46.246 SQL [3089]: pgsql_db_connect() -- 19:56:46.249 DEBUG [3089]: Database connection successful -- 19:56:46.249 INFO [3089]: _SERVER found -- 19:56:46.249 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 19:56:46.249 INFO [3089]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 19:56:46.249 INFO [3089]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.67193905.1591972257; ci_session=j7dogmpotklhh2bcioj9lrciq0rtdml8 -- 19:56:46.249 INFO [3089]: QUERY_STRING = /assets/images/savvy-block.png -- 19:56:46.249 INFO [3089]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:56:46.261 INFO [3089]: COREGRADE is stopping... -- 19:56:46.261 DEBUG [3089]: Closing database connection -- 19:56:46.261 SQL [3089]: pgsql_close() -- 19:57:12.495 INFO [25724]: COREGRADE is starting... -- 19:57:12.495 INFO [25724]: Version from config: 1.0 -- 19:57:12.495 DEBUG [25724]: Connecting to database... -- 19:57:12.495 DEBUG [25724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:57:12.496 SQL [25724]: pgsql_db_connect() -- 19:57:12.500 DEBUG [25724]: Database connection successful -- 19:57:12.500 INFO [25724]: _SERVER found -- 19:57:12.500 INFO [25724]: REMOTE_ADDR = 10.0.0.15 -- 19:57:12.500 INFO [25724]: SERVER_NAME = oameye.works.coregrade.com -- 19:57:12.500 INFO [25724]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.67193905.1591972257 -- 19:57:12.500 INFO [25724]: QUERY_STRING = -- 19:57:12.500 INFO [25724]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:57:12.534 INFO [25724]: COREGRADE is stopping... -- 19:57:12.534 DEBUG [25724]: Closing database connection -- 19:57:12.534 SQL [25724]: pgsql_close() -- 19:57:13.016 INFO [25724]: COREGRADE is starting... -- 19:57:13.016 INFO [25724]: Version from config: 1.0 -- 19:57:13.016 DEBUG [25724]: Connecting to database... -- 19:57:13.016 DEBUG [25724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 19:57:13.016 SQL [25724]: pgsql_db_connect() -- 19:57:13.020 DEBUG [25724]: Database connection successful -- 19:57:13.020 INFO [25724]: _SERVER found -- 19:57:13.020 INFO [25724]: REMOTE_ADDR = 10.0.0.15 -- 19:57:13.020 INFO [25724]: SERVER_NAME = oameye.works.coregrade.com -- 19:57:13.020 INFO [25724]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.67193905.1591972257; ci_session=pqvjeefblrebf6ij5v8ce515khr0gfna -- 19:57:13.020 INFO [25724]: QUERY_STRING = /assets/img/footer_1.jpg -- 19:57:13.020 INFO [25724]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 19:57:13.032 INFO [25724]: COREGRADE is stopping... -- 19:57:13.032 DEBUG [25724]: Closing database connection -- 19:57:13.032 SQL [25724]: pgsql_close() -- 23:33:58.728 INFO [4861]: COREGRADE is starting... -- 23:33:58.729 INFO [4861]: Version from config: 1.0 -- 23:33:58.729 DEBUG [4861]: Connecting to database... -- 23:33:58.729 DEBUG [4861]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:33:58.729 SQL [4861]: pgsql_db_connect() -- 23:33:58.733 DEBUG [4861]: Database connection successful -- 23:33:58.734 INFO [4861]: _SERVER found -- 23:33:58.734 INFO [4861]: REMOTE_ADDR = 10.0.0.15 -- 23:33:58.734 INFO [4861]: SERVER_NAME = oameye.works.coregrade.com -- 23:33:58.734 INFO [4861]: QUERY_STRING = -- 23:33:58.734 INFO [4861]: HTTP_X_FORWARDED_FOR = 163.172.189.115 -- 23:33:58.771 INFO [4861]: COREGRADE is stopping... -- 23:33:58.771 DEBUG [4861]: Closing database connection -- 23:33:58.771 SQL [4861]: pgsql_close() -- 00:23:07.757 INFO [25575]: COREGRADE is starting... -- 00:23:07.757 INFO [25575]: Version from config: 1.0 -- 00:23:07.757 DEBUG [25575]: Connecting to database... -- 00:23:07.757 DEBUG [25575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:23:07.757 SQL [25575]: pgsql_db_connect() -- 00:23:07.762 DEBUG [25575]: Database connection successful -- 00:23:07.762 INFO [25575]: _SERVER found -- 00:23:07.762 INFO [25575]: REMOTE_ADDR = 10.0.0.15 -- 00:23:07.762 INFO [25575]: SERVER_NAME = oameye.works.coregrade.com -- 00:23:07.762 INFO [25575]: HTTP_COOKIE = _ga=GA1.2.1225727811.1567027035; _gid=GA1.2.733904943.1592003845 -- 00:23:07.762 INFO [25575]: QUERY_STRING = -- 00:23:07.762 INFO [25575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:23:07.799 INFO [25575]: COREGRADE is stopping... -- 00:23:07.799 DEBUG [25575]: Closing database connection -- 00:23:07.799 SQL [25575]: pgsql_close() -- 00:23:08.522 INFO [25575]: COREGRADE is starting... -- 00:23:08.522 INFO [25575]: Version from config: 1.0 -- 00:23:08.522 DEBUG [25575]: Connecting to database... -- 00:23:08.522 DEBUG [25575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 00:23:08.522 SQL [25575]: pgsql_db_connect() -- 00:23:08.526 DEBUG [25575]: Database connection successful -- 00:23:08.526 INFO [25575]: _SERVER found -- 00:23:08.526 INFO [25575]: REMOTE_ADDR = 10.0.0.15 -- 00:23:08.526 INFO [25575]: SERVER_NAME = oameye.works.coregrade.com -- 00:23:08.526 INFO [25575]: HTTP_COOKIE = _ga=GA1.2.1225727811.1567027035; _gid=GA1.2.733904943.1592003845; ci_session=3kkc9go9cqjm6c49spknuoibqt487k4s -- 00:23:08.526 INFO [25575]: QUERY_STRING = /assets/img/footer_1.jpg -- 00:23:08.526 INFO [25575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 00:23:08.539 INFO [25575]: COREGRADE is stopping... -- 00:23:08.539 DEBUG [25575]: Closing database connection -- 00:23:08.539 SQL [25575]: pgsql_close() -- 02:19:31.672 INFO [3086]: COREGRADE is starting... -- 02:19:31.673 INFO [3086]: Version from config: 1.0 -- 02:19:31.673 DEBUG [3086]: Connecting to database... -- 02:19:31.673 DEBUG [3086]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:19:31.673 SQL [3086]: pgsql_db_connect() -- 02:19:31.678 DEBUG [3086]: Database connection successful -- 02:19:31.678 INFO [3086]: _SERVER found -- 02:19:31.678 INFO [3086]: REMOTE_ADDR = 10.0.0.15 -- 02:19:31.678 INFO [3086]: SERVER_NAME = oameye.works.coregrade.com -- 02:19:31.678 INFO [3086]: QUERY_STRING = /.well-known/acme-challenge/NHZiDq3DJFaRN0Ug-qEsDGm8UFOrqh-FI4vfItA7ahU -- 02:19:31.678 INFO [3086]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 02:19:31.701 INFO [3086]: COREGRADE is stopping... -- 02:19:31.701 DEBUG [3086]: Closing database connection -- 02:19:31.701 SQL [3086]: pgsql_close() -- 02:19:31.775 INFO [3088]: COREGRADE is starting... -- 02:19:31.775 INFO [3088]: Version from config: 1.0 -- 02:19:31.775 DEBUG [3088]: Connecting to database... -- 02:19:31.775 DEBUG [3088]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:19:31.775 SQL [3088]: pgsql_db_connect() -- 02:19:31.779 DEBUG [3088]: Database connection successful -- 02:19:31.779 INFO [3088]: _SERVER found -- 02:19:31.779 INFO [3088]: REMOTE_ADDR = 10.0.0.15 -- 02:19:31.779 INFO [3088]: SERVER_NAME = oameye.works.coregrade.com -- 02:19:31.779 INFO [3088]: QUERY_STRING = /.well-known/acme-challenge/NHZiDq3DJFaRN0Ug-qEsDGm8UFOrqh-FI4vfItA7ahU -- 02:19:31.779 INFO [3088]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 02:19:31.794 INFO [3088]: COREGRADE is stopping... -- 02:19:31.794 DEBUG [3088]: Closing database connection -- 02:19:31.794 SQL [3088]: pgsql_close() -- 03:38:02.658 INFO [3087]: COREGRADE is starting... -- 03:38:02.659 INFO [3087]: Version from config: 1.0 -- 03:38:02.659 DEBUG [3087]: Connecting to database... -- 03:38:02.659 DEBUG [3087]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:38:02.659 SQL [3087]: pgsql_db_connect() -- 03:38:02.663 DEBUG [3087]: Database connection successful -- 03:38:02.663 INFO [3087]: _SERVER found -- 03:38:02.663 INFO [3087]: REMOTE_ADDR = 10.0.0.15 -- 03:38:02.663 INFO [3087]: SERVER_NAME = oameye.works.coregrade.com -- 03:38:02.663 INFO [3087]: QUERY_STRING = /TP/public/index.php -- 03:38:02.663 INFO [3087]: HTTP_X_FORWARDED_FOR = 139.199.172.82 -- 03:38:02.676 INFO [3087]: COREGRADE is stopping... -- 03:38:02.676 DEBUG [3087]: Closing database connection -- 03:38:02.676 SQL [3087]: pgsql_close() -- 03:38:04.330 INFO [25721]: COREGRADE is starting... -- 03:38:04.330 INFO [25721]: Version from config: 1.0 -- 03:38:04.330 DEBUG [25721]: Connecting to database... -- 03:38:04.331 DEBUG [25721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:38:04.331 SQL [25721]: pgsql_db_connect() -- 03:38:04.335 DEBUG [25721]: Database connection successful -- 03:38:04.335 INFO [25721]: _SERVER found -- 03:38:04.335 INFO [25721]: REMOTE_ADDR = 10.0.0.15 -- 03:38:04.335 INFO [25721]: SERVER_NAME = oameye.works.coregrade.com -- 03:38:04.335 INFO [25721]: QUERY_STRING = /TP/index.php -- 03:38:04.335 INFO [25721]: HTTP_X_FORWARDED_FOR = 139.199.172.82 -- 03:38:04.347 INFO [25721]: COREGRADE is stopping... -- 03:38:04.347 DEBUG [25721]: Closing database connection -- 03:38:04.347 SQL [25721]: pgsql_close() -- 03:38:07.755 INFO [3089]: COREGRADE is starting... -- 03:38:07.755 INFO [3089]: Version from config: 1.0 -- 03:38:07.755 DEBUG [3089]: Connecting to database... -- 03:38:07.755 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:38:07.755 SQL [3089]: pgsql_db_connect() -- 03:38:07.759 DEBUG [3089]: Database connection successful -- 03:38:07.759 INFO [3089]: _SERVER found -- 03:38:07.759 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 03:38:07.759 INFO [3089]: SERVER_NAME = oameye.works.coregrade.com -- 03:38:07.759 INFO [3089]: QUERY_STRING = /thinkphp/html/public/index.php -- 03:38:07.759 INFO [3089]: HTTP_X_FORWARDED_FOR = 139.199.172.82 -- 03:38:07.772 INFO [3089]: COREGRADE is stopping... -- 03:38:07.772 DEBUG [3089]: Closing database connection -- 03:38:07.772 SQL [3089]: pgsql_close() -- 03:38:09.189 INFO [25724]: COREGRADE is starting... -- 03:38:09.190 INFO [25724]: Version from config: 1.0 -- 03:38:09.190 DEBUG [25724]: Connecting to database... -- 03:38:09.190 DEBUG [25724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:38:09.190 SQL [25724]: pgsql_db_connect() -- 03:38:09.194 DEBUG [25724]: Database connection successful -- 03:38:09.194 INFO [25724]: _SERVER found -- 03:38:09.194 INFO [25724]: REMOTE_ADDR = 10.0.0.15 -- 03:38:09.194 INFO [25724]: SERVER_NAME = oameye.works.coregrade.com -- 03:38:09.194 INFO [25724]: QUERY_STRING = /html/public/index.php -- 03:38:09.194 INFO [25724]: HTTP_X_FORWARDED_FOR = 139.199.172.82 -- 03:38:09.206 INFO [25724]: COREGRADE is stopping... -- 03:38:09.206 DEBUG [25724]: Closing database connection -- 03:38:09.206 SQL [25724]: pgsql_close() -- 03:38:10.616 INFO [4861]: COREGRADE is starting... -- 03:38:10.616 INFO [4861]: Version from config: 1.0 -- 03:38:10.616 DEBUG [4861]: Connecting to database... -- 03:38:10.617 DEBUG [4861]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:38:10.617 SQL [4861]: pgsql_db_connect() -- 03:38:10.621 DEBUG [4861]: Database connection successful -- 03:38:10.621 INFO [4861]: _SERVER found -- 03:38:10.621 INFO [4861]: REMOTE_ADDR = 10.0.0.15 -- 03:38:10.621 INFO [4861]: SERVER_NAME = oameye.works.coregrade.com -- 03:38:10.621 INFO [4861]: QUERY_STRING = /public/index.php -- 03:38:10.621 INFO [4861]: HTTP_X_FORWARDED_FOR = 139.199.172.82 -- 03:38:10.634 INFO [4861]: COREGRADE is stopping... -- 03:38:10.634 DEBUG [4861]: Closing database connection -- 03:38:10.634 SQL [4861]: pgsql_close() -- 03:38:11.998 INFO [25575]: COREGRADE is starting... -- 03:38:11.998 INFO [25575]: Version from config: 1.0 -- 03:38:11.998 DEBUG [25575]: Connecting to database... -- 03:38:11.998 DEBUG [25575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:38:11.998 SQL [25575]: pgsql_db_connect() -- 03:38:12.003 DEBUG [25575]: Database connection successful -- 03:38:12.003 INFO [25575]: _SERVER found -- 03:38:12.003 INFO [25575]: REMOTE_ADDR = 10.0.0.15 -- 03:38:12.003 INFO [25575]: SERVER_NAME = oameye.works.coregrade.com -- 03:38:12.003 INFO [25575]: QUERY_STRING = /TP/html/public/index.php -- 03:38:12.003 INFO [25575]: HTTP_X_FORWARDED_FOR = 139.199.172.82 -- 03:38:12.015 INFO [25575]: COREGRADE is stopping... -- 03:38:12.015 DEBUG [25575]: Closing database connection -- 03:38:12.015 SQL [25575]: pgsql_close() -- 03:38:15.372 INFO [4861]: COREGRADE is starting... -- 03:38:15.372 INFO [4861]: Version from config: 1.0 -- 03:38:15.372 DEBUG [4861]: Connecting to database... -- 03:38:15.372 DEBUG [4861]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:38:15.372 SQL [4861]: pgsql_db_connect() -- 03:38:15.377 DEBUG [4861]: Database connection successful -- 03:38:15.377 INFO [4861]: _SERVER found -- 03:38:15.377 INFO [4861]: REMOTE_ADDR = 10.0.0.15 -- 03:38:15.377 INFO [4861]: SERVER_NAME = oameye.works.coregrade.com -- 03:38:15.377 INFO [4861]: QUERY_STRING = /elrekt.php -- 03:38:15.377 INFO [4861]: HTTP_X_FORWARDED_FOR = 139.199.172.82 -- 03:38:15.388 INFO [4861]: COREGRADE is stopping... -- 03:38:15.388 DEBUG [4861]: Closing database connection -- 03:38:15.388 SQL [4861]: pgsql_close() -- 03:38:16.747 INFO [3085]: COREGRADE is starting... -- 03:38:16.748 INFO [3085]: Version from config: 1.0 -- 03:38:16.748 DEBUG [3085]: Connecting to database... -- 03:38:16.748 DEBUG [3085]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:38:16.748 SQL [3085]: pgsql_db_connect() -- 03:38:16.752 DEBUG [3085]: Database connection successful -- 03:38:16.752 INFO [3085]: _SERVER found -- 03:38:16.752 INFO [3085]: REMOTE_ADDR = 10.0.0.15 -- 03:38:16.752 INFO [3085]: SERVER_NAME = oameye.works.coregrade.com -- 03:38:16.752 INFO [3085]: QUERY_STRING = -- 03:38:16.752 INFO [3085]: HTTP_X_FORWARDED_FOR = 139.199.172.82 -- 03:38:16.787 INFO [3085]: COREGRADE is stopping... -- 03:38:16.787 DEBUG [3085]: Closing database connection -- 03:38:16.787 SQL [3085]: pgsql_close() -- 03:38:18.804 INFO [4861]: COREGRADE is starting... -- 03:38:18.804 INFO [4861]: Version from config: 1.0 -- 03:38:18.804 DEBUG [4861]: Connecting to database... -- 03:38:18.805 DEBUG [4861]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:38:18.805 SQL [4861]: pgsql_db_connect() -- 03:38:18.809 DEBUG [4861]: Database connection successful -- 03:38:18.809 INFO [4861]: _SERVER found -- 03:38:18.809 INFO [4861]: REMOTE_ADDR = 10.0.0.15 -- 03:38:18.809 INFO [4861]: SERVER_NAME = oameye.works.coregrade.com -- 03:38:18.809 INFO [4861]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 03:38:18.809 INFO [4861]: HTTP_X_FORWARDED_FOR = 139.199.172.82 -- 03:38:18.841 INFO [4861]: COREGRADE is stopping... -- 03:38:18.841 DEBUG [4861]: Closing database connection -- 03:38:18.841 SQL [4861]: pgsql_close() -- 03:38:21.218 INFO [3085]: COREGRADE is starting... -- 03:38:21.218 INFO [3085]: Version from config: 1.0 -- 03:38:21.218 DEBUG [3085]: Connecting to database... -- 03:38:21.218 DEBUG [3085]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:38:21.218 SQL [3085]: pgsql_db_connect() -- 03:38:21.222 DEBUG [3085]: Database connection successful -- 03:38:21.222 INFO [3085]: _SERVER found -- 03:38:21.222 INFO [3085]: REMOTE_ADDR = 10.0.0.15 -- 03:38:21.222 INFO [3085]: SERVER_NAME = oameye.works.coregrade.com -- 03:38:21.222 INFO [3085]: QUERY_STRING = s=captcha -- 03:38:21.222 INFO [3085]: HTTP_X_FORWARDED_FOR = 139.199.172.82 -- 03:38:21.254 INFO [3085]: COREGRADE is stopping... -- 03:38:21.254 DEBUG [3085]: Closing database connection -- 03:38:21.254 SQL [3085]: pgsql_close() -- 03:38:22.622 INFO [4861]: COREGRADE is starting... -- 03:38:22.622 INFO [4861]: Version from config: 1.0 -- 03:38:22.622 DEBUG [4861]: Connecting to database... -- 03:38:22.622 DEBUG [4861]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:38:22.622 SQL [4861]: pgsql_db_connect() -- 03:38:22.627 DEBUG [4861]: Database connection successful -- 03:38:22.627 INFO [4861]: _SERVER found -- 03:38:22.627 INFO [4861]: REMOTE_ADDR = 10.0.0.15 -- 03:38:22.627 INFO [4861]: SERVER_NAME = oameye.works.coregrade.com -- 03:38:22.627 INFO [4861]: QUERY_STRING = -- 03:38:22.627 INFO [4861]: HTTP_X_FORWARDED_FOR = 139.199.172.82 -- 03:38:22.658 INFO [4861]: COREGRADE is stopping... -- 03:38:22.658 DEBUG [4861]: Closing database connection -- 03:38:22.658 SQL [4861]: pgsql_close() -- 07:13:31.591 INFO [3086]: COREGRADE is starting... -- 07:13:31.592 INFO [3086]: Version from config: 1.0 -- 07:13:31.592 DEBUG [3086]: Connecting to database... -- 07:13:31.592 DEBUG [3086]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:31.592 SQL [3086]: pgsql_db_connect() -- 07:13:31.597 DEBUG [3086]: Database connection successful -- 07:13:31.597 INFO [3086]: _SERVER found -- 07:13:31.597 INFO [3086]: REMOTE_ADDR = 10.0.0.15 -- 07:13:31.597 INFO [3086]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:31.597 INFO [3086]: QUERY_STRING = -- 07:13:31.597 INFO [3086]: HTTP_X_FORWARDED_FOR = 172.104.226.11 -- 07:13:31.633 INFO [3086]: COREGRADE is stopping... -- 07:13:31.633 DEBUG [3086]: Closing database connection -- 07:13:31.633 SQL [3086]: pgsql_close() -- 07:13:31.787 INFO [3086]: COREGRADE is starting... -- 07:13:31.787 INFO [3086]: Version from config: 1.0 -- 07:13:31.787 DEBUG [3086]: Connecting to database... -- 07:13:31.787 DEBUG [3086]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 07:13:31.787 SQL [3086]: pgsql_db_connect() -- 07:13:31.792 DEBUG [3086]: Database connection successful -- 07:13:31.792 INFO [3086]: _SERVER found -- 07:13:31.792 INFO [3086]: REMOTE_ADDR = 10.0.0.15 -- 07:13:31.792 INFO [3086]: SERVER_NAME = oameye.works.coregrade.com -- 07:13:31.792 INFO [3086]: HTTP_COOKIE = ci_session=33ns0huorn6tkibc8ombmrb9gc6s3fh1 -- 07:13:31.792 INFO [3086]: QUERY_STRING = /favicon.ico -- 07:13:31.792 INFO [3086]: HTTP_X_FORWARDED_FOR = 172.104.226.11 -- 07:13:31.803 INFO [3086]: COREGRADE is stopping... -- 07:13:31.803 DEBUG [3086]: Closing database connection -- 07:13:31.803 SQL [3086]: pgsql_close() -- 12:27:01.512 INFO [3088]: COREGRADE is starting... -- 12:27:01.513 INFO [3088]: Version from config: 1.0 -- 12:27:01.513 DEBUG [3088]: Connecting to database... -- 12:27:01.513 DEBUG [3088]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:27:01.513 SQL [3088]: pgsql_db_connect() -- 12:27:01.518 DEBUG [3088]: Database connection successful -- 12:27:01.518 INFO [3088]: _SERVER found -- 12:27:01.518 INFO [3088]: REMOTE_ADDR = 10.0.0.15 -- 12:27:01.518 INFO [3088]: SERVER_NAME = oameye.works.coregrade.com -- 12:27:01.518 INFO [3088]: QUERY_STRING = -- 12:27:01.518 INFO [3088]: HTTP_X_FORWARDED_FOR = 193.118.53.194 -- 12:27:01.557 INFO [3088]: COREGRADE is stopping... -- 12:27:01.557 DEBUG [3088]: Closing database connection -- 12:27:01.557 SQL [3088]: pgsql_close() -- 13:10:43.860 INFO [25576]: COREGRADE is starting... -- 13:10:43.861 INFO [25576]: Version from config: 1.0 -- 13:10:43.861 DEBUG [25576]: Connecting to database... -- 13:10:43.861 DEBUG [25576]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:10:43.861 SQL [25576]: pgsql_db_connect() -- 13:10:43.865 DEBUG [25576]: Database connection successful -- 13:10:43.865 INFO [25576]: _SERVER found -- 13:10:43.865 INFO [25576]: REMOTE_ADDR = 10.0.0.15 -- 13:10:43.865 INFO [25576]: SERVER_NAME = oameye.works.coregrade.com -- 13:10:43.865 INFO [25576]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; _gat_gtag_UA_54829827_2=1 -- 13:10:43.865 INFO [25576]: QUERY_STRING = -- 13:10:43.865 INFO [25576]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:10:43.902 INFO [25576]: COREGRADE is stopping... -- 13:10:43.902 DEBUG [25576]: Closing database connection -- 13:10:43.902 SQL [25576]: pgsql_close() -- 13:10:44.247 INFO [25576]: COREGRADE is starting... -- 13:10:44.248 INFO [25576]: Version from config: 1.0 -- 13:10:44.248 DEBUG [25576]: Connecting to database... -- 13:10:44.248 DEBUG [25576]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:10:44.248 SQL [25576]: pgsql_db_connect() -- 13:10:44.252 DEBUG [25576]: Database connection successful -- 13:10:44.252 INFO [25576]: _SERVER found -- 13:10:44.252 INFO [25576]: REMOTE_ADDR = 10.0.0.15 -- 13:10:44.252 INFO [25576]: SERVER_NAME = oameye.works.coregrade.com -- 13:10:44.252 INFO [25576]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; _gat_gtag_UA_54829827_2=1; ci_session=5us4t5l2jhki1ptg9t98m8k1s6eubrki -- 13:10:44.252 INFO [25576]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:10:44.252 INFO [25576]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:10:44.263 INFO [25576]: COREGRADE is stopping... -- 13:10:44.263 DEBUG [25576]: Closing database connection -- 13:10:44.263 SQL [25576]: pgsql_close() -- 13:10:50.067 INFO [25721]: COREGRADE is starting... -- 13:10:50.068 INFO [25721]: Version from config: 1.0 -- 13:10:50.068 DEBUG [25721]: Connecting to database... -- 13:10:50.068 DEBUG [25721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:10:50.068 SQL [25721]: pgsql_db_connect() -- 13:10:50.070 INFO [3089]: COREGRADE is starting... -- 13:10:50.070 INFO [3089]: Version from config: 1.0 -- 13:10:50.070 DEBUG [3089]: Connecting to database... -- 13:10:50.070 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:10:50.070 SQL [3089]: pgsql_db_connect() -- 13:10:50.073 DEBUG [25721]: Database connection successful -- 13:10:50.073 INFO [25721]: _SERVER found -- 13:10:50.073 INFO [25721]: REMOTE_ADDR = 10.0.0.15 -- 13:10:50.073 INFO [25721]: SERVER_NAME = oameye.works.coregrade.com -- 13:10:50.073 INFO [25721]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; _gat_gtag_UA_54829827_2=1; ci_session=5us4t5l2jhki1ptg9t98m8k1s6eubrki -- 13:10:50.073 INFO [25721]: QUERY_STRING = /welcome/viewLogin -- 13:10:50.073 INFO [25721]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:10:50.107 INFO [25721]: COREGRADE is stopping... -- 13:10:50.107 DEBUG [25721]: Closing database connection -- 13:10:50.107 SQL [25721]: pgsql_close() -- 13:10:50.074 DEBUG [3089]: Database connection successful -- 13:10:50.074 INFO [3089]: _SERVER found -- 13:10:50.074 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 13:10:50.074 INFO [3089]: SERVER_NAME = oameye.works.coregrade.com -- 13:10:50.074 INFO [3089]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; _gat_gtag_UA_54829827_2=1; ci_session=5us4t5l2jhki1ptg9t98m8k1s6eubrki -- 13:10:50.074 INFO [3089]: QUERY_STRING = /auth -- 13:10:50.074 INFO [3089]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:10:50.111 INFO [3089]: COREGRADE is stopping... -- 13:10:50.111 DEBUG [3089]: Closing database connection -- 13:10:50.111 SQL [3089]: pgsql_close() -- 13:10:50.138 INFO [3089]: COREGRADE is starting... -- 13:10:50.138 INFO [3089]: Version from config: 1.0 -- 13:10:50.138 DEBUG [3089]: Connecting to database... -- 13:10:50.138 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:10:50.138 SQL [3089]: pgsql_db_connect() -- 13:10:50.142 DEBUG [3089]: Database connection successful -- 13:10:50.142 INFO [3089]: _SERVER found -- 13:10:50.142 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 13:10:50.142 INFO [3089]: SERVER_NAME = oameye.works.coregrade.com -- 13:10:50.142 INFO [3089]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; _gat_gtag_UA_54829827_2=1; ci_session=5us4t5l2jhki1ptg9t98m8k1s6eubrki -- 13:10:50.142 INFO [3089]: QUERY_STRING = /auth/index -- 13:10:50.142 INFO [3089]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:10:50.174 INFO [3089]: COREGRADE is stopping... -- 13:10:50.174 DEBUG [3089]: Closing database connection -- 13:10:50.174 SQL [3089]: pgsql_close() -- 13:10:50.350 INFO [25721]: COREGRADE is starting... -- 13:10:50.350 INFO [25721]: Version from config: 1.0 -- 13:10:50.350 DEBUG [25721]: Connecting to database... -- 13:10:50.350 DEBUG [25721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:10:50.350 SQL [25721]: pgsql_db_connect() -- 13:10:50.354 DEBUG [25721]: Database connection successful -- 13:10:50.354 INFO [25721]: _SERVER found -- 13:10:50.354 INFO [25721]: REMOTE_ADDR = 10.0.0.15 -- 13:10:50.354 INFO [25721]: SERVER_NAME = oameye.works.coregrade.com -- 13:10:50.354 INFO [25721]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; _gat_gtag_UA_54829827_2=1; ci_session=5us4t5l2jhki1ptg9t98m8k1s6eubrki -- 13:10:50.354 INFO [25721]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 13:10:50.354 INFO [25721]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:10:50.366 INFO [25721]: COREGRADE is stopping... -- 13:10:50.366 DEBUG [25721]: Closing database connection -- 13:10:50.366 SQL [25721]: pgsql_close() -- 13:10:54.490 INFO [25575]: COREGRADE is starting... -- 13:10:54.490 INFO [25575]: Version from config: 1.0 -- 13:10:54.490 DEBUG [25575]: Connecting to database... -- 13:10:54.490 DEBUG [25575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:10:54.490 SQL [25575]: pgsql_db_connect() -- 13:10:54.527 INFO [25575]: COREGRADE is starting... -- 13:10:54.527 INFO [25575]: Version from config: 1.0 -- 13:10:54.527 DEBUG [25575]: Connecting to database... -- 13:10:54.527 DEBUG [25575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:10:54.527 SQL [25575]: pgsql_db_connect() -- 13:10:54.531 DEBUG [25575]: Database connection successful -- 13:10:54.531 INFO [25575]: _SERVER found -- 13:10:54.531 INFO [25575]: REMOTE_ADDR = 10.0.0.15 -- 13:10:54.531 INFO [25575]: SERVER_NAME = oameye.works.coregrade.com -- 13:10:54.531 INFO [25575]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; _gat_gtag_UA_54829827_2=1; ci_session=5us4t5l2jhki1ptg9t98m8k1s6eubrki -- 13:10:54.531 INFO [25575]: QUERY_STRING = -- 13:10:54.531 INFO [25575]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:10:54.531 INFO [25575]: SystemStatus()09-09-********~************ -- 13:10:54.531 INFO [25575]: long coregrade_api_main(CVars in, CVars &out) -- 13:10:54.531 INFO [25575]: long coregrade_api_main(CVars in, CVars &out) action =11025 -- 13:10:54.531 INFO [25575]: account calls -- 13:10:54.531 INFO [25575]: account_calls() -- 13:10:54.531 INFO [25575]: LoginCoreGradeAccount() -- 13:10:54.531 FLOG_MAX [25575]: REQ_STRING(username) -- 13:10:54.532 FLOG_MAX [25575]: REQ_STRING(password) -- 13:10:54.532 FLOG_MAX [25575]: REQ_STRING(sessionid) -- 13:10:54.532 FLOG_MAX [25575]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:10:54.532 SQL [25575]: pgsql_query() -- 13:10:54.532 SQL [25575]: About to run query: -- 13:10:54.532 SQL [25575]: SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002') -- 13:10:54.535 SQL [25575]: Found rows: 1 -- 13:10:54.535 FLOG_MAX [25575]: load_db_record(SELECT UPPER( md5( now()::text ) ) AS sessionid, *,id AS member_id FROM members WHERE status=1 AND LOWER(username)=LOWER('ameye+11@chiefsoft.com') AND password= md5('may12002')) num_cols=16 -- 13:10:54.535 INFO [25575]: long SessionCheck(long uid, const char *sessionid, int create ) -- 13:10:54.535 SQL [25575]: pgsql_exec() -- 13:10:54.535 SQL [25575]: About to run query: -- 13:10:54.535 SQL [25575]: DELETE FROM members_session WHERE member_id=5 AND updated < (now() - interval '35 minutes') -- 13:10:54.537 SQL [25575]: PQcmdTuples: 1 -- 13:10:54.537 SQL [25575]: Affected rows: 1 -- 13:10:54.537 SQL [25575]: pgsql_exec() -- 13:10:54.537 SQL [25575]: About to run query: -- 13:10:54.537 SQL [25575]: DELETE FROM members_session WHERE member_id=5 -- 13:10:54.537 SQL [25575]: PQcmdTuples: 0 -- 13:10:54.537 SQL [25575]: Affected rows: 0 -- 13:10:54.537 SQL [25575]: pgsql_query() -- 13:10:54.537 SQL [25575]: About to run query: -- 13:10:54.537 SQL [25575]: SELECT * FROM members_session WHERE member_id=5 AND session<>'2A627BC6E81E23D75B2D08C5EA1B3D2E' -- 13:10:54.538 SQL [25575]: Found rows: 0 -- 13:10:54.538 SQL [25575]: Found rows: 0 -- 13:10:54.538 FLOG_MAX [25575]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:10:54.538 SQL [25575]: pgsql_query() -- 13:10:54.538 SQL [25575]: About to run query: -- 13:10:54.538 SQL [25575]: SELECT * FROM members_session WHERE member_id=5 AND session='2A627BC6E81E23D75B2D08C5EA1B3D2E' -- 13:10:54.538 SQL [25575]: Found rows: 0 -- 13:10:54.538 SQL [25575]: Found rows: 0 -- 13:10:54.538 FLOG_MAX [25575]: insert_db_record() -- 13:10:54.539 SQL [25575]: pgsql_exec() -- 13:10:54.539 SQL [25575]: About to run query: -- 13:10:54.539 SQL [25575]: INSERT INTO members_session (member_id,session) VALUES ('5','2A627BC6E81E23D75B2D08C5EA1B3D2E') -- 13:10:54.540 SQL [25575]: PQcmdTuples: 1 -- 13:10:54.540 SQL [25575]: Affected rows: 1 -- 13:10:54.540 FLOG_MAX [25575]: SELECT currval('members_session_id_seq') -- 13:10:54.540 SQL [25575]: pgsql_query() -- 13:10:54.540 SQL [25575]: About to run query: -- 13:10:54.540 SQL [25575]: SELECT currval('members_session_id_seq') -- 13:10:54.540 SQL [25575]: Found rows: 1 -- 13:10:54.540 INFO [25575]: CreateDefaultPage() -- 13:10:54.541 FLOG_MAX [25575]: long load_db_record( CVars &rec, const char * query, ... ) -- 13:10:54.541 SQL [25575]: pgsql_query() -- 13:10:54.541 SQL [25575]: About to run query: -- 13:10:54.541 SQL [25575]: SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key -- 13:10:54.541 SQL [25575]: Found rows: 1 -- 13:10:54.541 FLOG_MAX [25575]: load_db_record(SELECT 'PG'|| UPPER( md5( now()::text ) ) AS page_key) num_cols=1 -- 13:10:54.541 SQL [25575]: pgsql_query() -- 13:10:54.541 SQL [25575]: About to run query: -- 13:10:54.541 SQL [25575]: SELECT id FROM members_pages WHERE member_id = 5 AND page_mode='DEFAULT' -- 13:10:54.541 SQL [25575]: Found rows: 1 -- 13:10:54.541 INFO [25575]: /CreateDefaultPage() -- 13:10:54.541 INFO [25575]: /LoginCoreGradeAccount() -- 13:10:54.541 INFO [25575]: RET: added=2020-02-05 06:47:23.982154 -- 13:10:54.541 INFO [25575]: RET: email=ameye+11@chiefsoft.com -- 13:10:54.541 INFO [25575]: RET: firstname=Olu -- 13:10:54.541 INFO [25575]: RET: folder=E5AB5CE0D4C24E4B9D968204658128F3 -- 13:10:54.541 INFO [25575]: RET: id=5 -- 13:10:54.541 INFO [25575]: RET: last_login= -- 13:10:54.541 INFO [25575]: RET: lastname=Amey -- 13:10:54.541 INFO [25575]: RET: loc=192.168.1.13 -- 13:10:54.541 INFO [25575]: RET: member_id=5 -- 13:10:54.541 INFO [25575]: RET: password=d0fbea2563b377ea7074bced45c88dcb -- 13:10:54.541 INFO [25575]: RET: phone= -- 13:10:54.541 INFO [25575]: RET: pid= -- 13:10:54.541 INFO [25575]: RET: result=YES I GET TO BACK END -- 13:10:54.541 INFO [25575]: RET: sessionid=2A627BC6E81E23D75B2D08C5EA1B3D2E -- 13:10:54.541 INFO [25575]: RET: status=1 -- 13:10:54.541 INFO [25575]: RET: stauts=OK -- 13:10:54.541 INFO [25575]: RET: username=ameye+11@chiefsoft.com -- 13:10:54.541 INFO [25575]: RET: verified= -- 13:10:54.543 INFO [25575]: COREGRADE is stopping... -- 13:10:54.543 DEBUG [25575]: Closing database connection -- 13:10:54.543 SQL [25575]: pgsql_close() -- 13:10:54.494 DEBUG [25575]: Database connection successful -- 13:10:54.494 INFO [25575]: _SERVER found -- 13:10:54.494 INFO [25575]: REMOTE_ADDR = 10.0.0.15 -- 13:10:54.494 INFO [25575]: SERVER_NAME = oameye.works.coregrade.com -- 13:10:54.494 INFO [25575]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; _gat_gtag_UA_54829827_2=1; ci_session=5us4t5l2jhki1ptg9t98m8k1s6eubrki -- 13:10:54.494 INFO [25575]: QUERY_STRING = /auth -- 13:10:54.494 INFO [25575]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:10:54.543 INFO [25575]: COREGRADE is stopping... -- 13:10:54.543 DEBUG [25575]: Closing database connection -- 13:10:54.543 SQL [25575]: pgsql_close() -- 13:10:54.573 INFO [25575]: COREGRADE is starting... -- 13:10:54.574 INFO [25575]: Version from config: 1.0 -- 13:10:54.574 DEBUG [25575]: Connecting to database... -- 13:10:54.574 DEBUG [25575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:10:54.574 SQL [25575]: pgsql_db_connect() -- 13:10:54.578 DEBUG [25575]: Database connection successful -- 13:10:54.578 INFO [25575]: _SERVER found -- 13:10:54.578 INFO [25575]: REMOTE_ADDR = 10.0.0.15 -- 13:10:54.578 INFO [25575]: SERVER_NAME = oameye.works.coregrade.com -- 13:10:54.578 INFO [25575]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; _gat_gtag_UA_54829827_2=1; ci_session=5us4t5l2jhki1ptg9t98m8k1s6eubrki -- 13:10:54.578 INFO [25575]: QUERY_STRING = /member/index -- 13:10:54.578 INFO [25575]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:10:54.618 INFO [25575]: COREGRADE is stopping... -- 13:10:54.618 DEBUG [25575]: Closing database connection -- 13:10:54.618 SQL [25575]: pgsql_close() -- 13:10:54.827 INFO [4861]: COREGRADE is starting... -- 13:10:54.827 INFO [4861]: Version from config: 1.0 -- 13:10:54.827 DEBUG [4861]: Connecting to database... -- 13:10:54.827 DEBUG [4861]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:10:54.827 SQL [4861]: pgsql_db_connect() -- 13:10:54.831 DEBUG [4861]: Database connection successful -- 13:10:54.831 INFO [4861]: _SERVER found -- 13:10:54.831 INFO [4861]: REMOTE_ADDR = 10.0.0.15 -- 13:10:54.831 INFO [4861]: SERVER_NAME = oameye.works.coregrade.com -- 13:10:54.831 INFO [4861]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; _gat_gtag_UA_54829827_2=1; ci_session=5us4t5l2jhki1ptg9t98m8k1s6eubrki -- 13:10:54.831 INFO [4861]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 13:10:54.831 INFO [4861]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:10:54.846 INFO [4861]: COREGRADE is stopping... -- 13:10:54.846 DEBUG [4861]: Closing database connection -- 13:10:54.846 SQL [4861]: pgsql_close() -- 13:10:58.240 INFO [25575]: COREGRADE is starting... -- 13:10:58.241 INFO [25575]: Version from config: 1.0 -- 13:10:58.241 DEBUG [25575]: Connecting to database... -- 13:10:58.241 DEBUG [25575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:10:58.241 SQL [25575]: pgsql_db_connect() -- 13:10:58.245 DEBUG [25575]: Database connection successful -- 13:10:58.245 INFO [25575]: _SERVER found -- 13:10:58.245 INFO [25575]: REMOTE_ADDR = 10.0.0.15 -- 13:10:58.245 INFO [25575]: SERVER_NAME = oameye.works.coregrade.com -- 13:10:58.245 INFO [25575]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; _gat_gtag_UA_54829827_2=1; ci_session=5us4t5l2jhki1ptg9t98m8k1s6eubrki -- 13:10:58.245 INFO [25575]: QUERY_STRING = /member/page -- 13:10:58.245 INFO [25575]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:10:58.287 INFO [25575]: COREGRADE is stopping... -- 13:10:58.287 DEBUG [25575]: Closing database connection -- 13:10:58.287 SQL [25575]: pgsql_close() -- 13:11:19.922 INFO [3086]: COREGRADE is starting... -- 13:11:19.922 INFO [3086]: Version from config: 1.0 -- 13:11:19.922 DEBUG [3086]: Connecting to database... -- 13:11:19.922 DEBUG [3086]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:11:19.922 SQL [3086]: pgsql_db_connect() -- 13:11:19.926 DEBUG [3086]: Database connection successful -- 13:11:19.926 INFO [3086]: _SERVER found -- 13:11:19.926 INFO [3086]: REMOTE_ADDR = 10.0.0.15 -- 13:11:19.926 INFO [3086]: SERVER_NAME = oameye.works.coregrade.com -- 13:11:19.926 INFO [3086]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; _gat_gtag_UA_54829827_2=1; ci_session=5us4t5l2jhki1ptg9t98m8k1s6eubrki -- 13:11:19.926 INFO [3086]: QUERY_STRING = /member -- 13:11:19.926 INFO [3086]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:11:19.968 INFO [3086]: COREGRADE is stopping... -- 13:11:19.968 DEBUG [3086]: Closing database connection -- 13:11:19.968 SQL [3086]: pgsql_close() -- 13:11:24.523 INFO [3086]: COREGRADE is starting... -- 13:11:24.524 INFO [3086]: Version from config: 1.0 -- 13:11:24.524 DEBUG [3086]: Connecting to database... -- 13:11:24.524 DEBUG [3086]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:11:24.524 SQL [3086]: pgsql_db_connect() -- 13:11:24.528 DEBUG [3086]: Database connection successful -- 13:11:24.528 INFO [3086]: _SERVER found -- 13:11:24.528 INFO [3086]: REMOTE_ADDR = 10.0.0.15 -- 13:11:24.528 INFO [3086]: SERVER_NAME = oameye.works.coregrade.com -- 13:11:24.528 INFO [3086]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; _gat_gtag_UA_54829827_2=1; ci_session=5us4t5l2jhki1ptg9t98m8k1s6eubrki -- 13:11:24.528 INFO [3086]: QUERY_STRING = /member/mycalendar -- 13:11:24.528 INFO [3086]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:11:24.566 INFO [3086]: COREGRADE is stopping... -- 13:11:24.566 DEBUG [3086]: Closing database connection -- 13:11:24.566 SQL [3086]: pgsql_close() -- 13:11:26.467 INFO [3086]: COREGRADE is starting... -- 13:11:26.468 INFO [3086]: Version from config: 1.0 -- 13:11:26.468 DEBUG [3086]: Connecting to database... -- 13:11:26.468 DEBUG [3086]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:11:26.468 SQL [3086]: pgsql_db_connect() -- 13:11:26.472 DEBUG [3086]: Database connection successful -- 13:11:26.472 INFO [3086]: _SERVER found -- 13:11:26.472 INFO [3086]: REMOTE_ADDR = 10.0.0.15 -- 13:11:26.472 INFO [3086]: SERVER_NAME = oameye.works.coregrade.com -- 13:11:26.472 INFO [3086]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; _gat_gtag_UA_54829827_2=1; ci_session=5us4t5l2jhki1ptg9t98m8k1s6eubrki -- 13:11:26.472 INFO [3086]: QUERY_STRING = /member/classroom -- 13:11:26.472 INFO [3086]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:11:26.514 INFO [3086]: COREGRADE is stopping... -- 13:11:26.514 DEBUG [3086]: Closing database connection -- 13:11:26.514 SQL [3086]: pgsql_close() -- 13:11:37.950 INFO [3088]: COREGRADE is starting... -- 13:11:37.950 INFO [3088]: Version from config: 1.0 -- 13:11:37.950 DEBUG [3088]: Connecting to database... -- 13:11:37.950 DEBUG [3088]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:11:37.950 SQL [3088]: pgsql_db_connect() -- 13:11:37.954 DEBUG [3088]: Database connection successful -- 13:11:37.955 INFO [3088]: _SERVER found -- 13:11:37.955 INFO [3088]: REMOTE_ADDR = 10.0.0.15 -- 13:11:37.955 INFO [3088]: SERVER_NAME = oameye.works.coregrade.com -- 13:11:37.955 INFO [3088]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; _gat_gtag_UA_54829827_2=1; ci_session=5us4t5l2jhki1ptg9t98m8k1s6eubrki -- 13:11:37.955 INFO [3088]: QUERY_STRING = /member/configure -- 13:11:37.955 INFO [3088]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:11:37.000 INFO [3088]: COREGRADE is stopping... -- 13:11:37.000 DEBUG [3088]: Closing database connection -- 13:11:37.000 SQL [3088]: pgsql_close() -- 13:11:38.070 INFO [3088]: COREGRADE is starting... -- 13:11:38.070 INFO [3088]: Version from config: 1.0 -- 13:11:38.070 DEBUG [3088]: Connecting to database... -- 13:11:38.070 DEBUG [3088]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:11:38.070 SQL [3088]: pgsql_db_connect() -- 13:11:38.074 DEBUG [3088]: Database connection successful -- 13:11:38.074 INFO [3088]: _SERVER found -- 13:11:38.074 INFO [3088]: REMOTE_ADDR = 10.0.0.15 -- 13:11:38.074 INFO [3088]: SERVER_NAME = oameye.works.coregrade.com -- 13:11:38.074 INFO [3088]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; ci_session=5us4t5l2jhki1ptg9t98m8k1s6eubrki -- 13:11:38.074 INFO [3088]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 13:11:38.074 INFO [3088]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:11:38.085 INFO [3088]: COREGRADE is stopping... -- 13:11:38.085 DEBUG [3088]: Closing database connection -- 13:11:38.085 SQL [3088]: pgsql_close() -- 13:11:41.115 INFO [3088]: COREGRADE is starting... -- 13:11:41.116 INFO [3088]: Version from config: 1.0 -- 13:11:41.116 DEBUG [3088]: Connecting to database... -- 13:11:41.116 DEBUG [3088]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:11:41.116 SQL [3088]: pgsql_db_connect() -- 13:11:41.120 DEBUG [3088]: Database connection successful -- 13:11:41.120 INFO [3088]: _SERVER found -- 13:11:41.120 INFO [3088]: REMOTE_ADDR = 10.0.0.15 -- 13:11:41.120 INFO [3088]: SERVER_NAME = oameye.works.coregrade.com -- 13:11:41.120 INFO [3088]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; ci_session=5us4t5l2jhki1ptg9t98m8k1s6eubrki -- 13:11:41.120 INFO [3088]: QUERY_STRING = /member/classroom -- 13:11:41.120 INFO [3088]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:11:41.162 INFO [3088]: COREGRADE is stopping... -- 13:11:41.162 DEBUG [3088]: Closing database connection -- 13:11:41.162 SQL [3088]: pgsql_close() -- 13:11:42.628 INFO [3088]: COREGRADE is starting... -- 13:11:42.628 INFO [3088]: Version from config: 1.0 -- 13:11:42.628 DEBUG [3088]: Connecting to database... -- 13:11:42.628 DEBUG [3088]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:11:42.628 SQL [3088]: pgsql_db_connect() -- 13:11:42.632 DEBUG [3088]: Database connection successful -- 13:11:42.632 INFO [3088]: _SERVER found -- 13:11:42.632 INFO [3088]: REMOTE_ADDR = 10.0.0.15 -- 13:11:42.632 INFO [3088]: SERVER_NAME = oameye.works.coregrade.com -- 13:11:42.632 INFO [3088]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; ci_session=5us4t5l2jhki1ptg9t98m8k1s6eubrki -- 13:11:42.632 INFO [3088]: QUERY_STRING = /member/viewRoom -- 13:11:42.632 INFO [3088]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:11:42.667 INFO [3088]: COREGRADE is stopping... -- 13:11:42.667 DEBUG [3088]: Closing database connection -- 13:11:42.667 SQL [3088]: pgsql_close() -- 13:11:45.783 INFO [3088]: COREGRADE is starting... -- 13:11:45.783 INFO [3088]: Version from config: 1.0 -- 13:11:45.783 DEBUG [3088]: Connecting to database... -- 13:11:45.783 DEBUG [3088]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:11:45.784 SQL [3088]: pgsql_db_connect() -- 13:11:45.788 DEBUG [3088]: Database connection successful -- 13:11:45.788 INFO [3088]: _SERVER found -- 13:11:45.788 INFO [3088]: REMOTE_ADDR = 10.0.0.15 -- 13:11:45.788 INFO [3088]: SERVER_NAME = oameye.works.coregrade.com -- 13:11:45.788 INFO [3088]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; ci_session=5us4t5l2jhki1ptg9t98m8k1s6eubrki -- 13:11:45.788 INFO [3088]: QUERY_STRING = /member/viewRoom -- 13:11:45.788 INFO [3088]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:11:45.825 INFO [3088]: COREGRADE is stopping... -- 13:11:45.825 DEBUG [3088]: Closing database connection -- 13:11:45.825 SQL [3088]: pgsql_close() -- 13:11:47.910 INFO [3088]: COREGRADE is starting... -- 13:11:47.910 INFO [3088]: Version from config: 1.0 -- 13:11:47.910 DEBUG [3088]: Connecting to database... -- 13:11:47.910 DEBUG [3088]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:11:47.910 SQL [3088]: pgsql_db_connect() -- 13:11:47.914 DEBUG [3088]: Database connection successful -- 13:11:47.914 INFO [3088]: _SERVER found -- 13:11:47.914 INFO [3088]: REMOTE_ADDR = 10.0.0.15 -- 13:11:47.914 INFO [3088]: SERVER_NAME = oameye.works.coregrade.com -- 13:11:47.914 INFO [3088]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; ci_session=5us4t5l2jhki1ptg9t98m8k1s6eubrki -- 13:11:47.914 INFO [3088]: QUERY_STRING = /member/viewRoom -- 13:11:47.914 INFO [3088]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:11:47.947 INFO [3088]: COREGRADE is stopping... -- 13:11:47.947 DEBUG [3088]: Closing database connection -- 13:11:47.947 SQL [3088]: pgsql_close() -- 13:11:48.999 INFO [3088]: COREGRADE is starting... -- 13:11:48.999 INFO [3088]: Version from config: 1.0 -- 13:11:48.999 DEBUG [3088]: Connecting to database... -- 13:11:48.999 DEBUG [3088]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:11:48.999 SQL [3088]: pgsql_db_connect() -- 13:11:49.003 DEBUG [3088]: Database connection successful -- 13:11:49.003 INFO [3088]: _SERVER found -- 13:11:49.003 INFO [3088]: REMOTE_ADDR = 10.0.0.15 -- 13:11:49.003 INFO [3088]: SERVER_NAME = oameye.works.coregrade.com -- 13:11:49.003 INFO [3088]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; ci_session=5us4t5l2jhki1ptg9t98m8k1s6eubrki -- 13:11:49.003 INFO [3088]: QUERY_STRING = /member/viewRoom -- 13:11:49.003 INFO [3088]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:11:49.039 INFO [3088]: COREGRADE is stopping... -- 13:11:49.039 DEBUG [3088]: Closing database connection -- 13:11:49.039 SQL [3088]: pgsql_close() -- 13:11:49.713 INFO [3088]: COREGRADE is starting... -- 13:11:49.713 INFO [3088]: Version from config: 1.0 -- 13:11:49.713 DEBUG [3088]: Connecting to database... -- 13:11:49.713 DEBUG [3088]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:11:49.713 SQL [3088]: pgsql_db_connect() -- 13:11:49.717 DEBUG [3088]: Database connection successful -- 13:11:49.718 INFO [3088]: _SERVER found -- 13:11:49.718 INFO [3088]: REMOTE_ADDR = 10.0.0.15 -- 13:11:49.718 INFO [3088]: SERVER_NAME = oameye.works.coregrade.com -- 13:11:49.718 INFO [3088]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; ci_session=5us4t5l2jhki1ptg9t98m8k1s6eubrki -- 13:11:49.718 INFO [3088]: QUERY_STRING = /member/viewRoom -- 13:11:49.718 INFO [3088]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:11:49.752 INFO [3088]: COREGRADE is stopping... -- 13:11:49.752 DEBUG [3088]: Closing database connection -- 13:11:49.752 SQL [3088]: pgsql_close() -- 13:11:52.403 INFO [3088]: COREGRADE is starting... -- 13:11:52.403 INFO [3088]: Version from config: 1.0 -- 13:11:52.403 DEBUG [3088]: Connecting to database... -- 13:11:52.403 DEBUG [3088]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:11:52.403 SQL [3088]: pgsql_db_connect() -- 13:11:52.407 DEBUG [3088]: Database connection successful -- 13:11:52.407 INFO [3088]: _SERVER found -- 13:11:52.407 INFO [3088]: REMOTE_ADDR = 10.0.0.15 -- 13:11:52.407 INFO [3088]: SERVER_NAME = oameye.works.coregrade.com -- 13:11:52.407 INFO [3088]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; ci_session=5us4t5l2jhki1ptg9t98m8k1s6eubrki -- 13:11:52.407 INFO [3088]: QUERY_STRING = /member/viewRoom -- 13:11:52.407 INFO [3088]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:11:52.443 INFO [3088]: COREGRADE is stopping... -- 13:11:52.443 DEBUG [3088]: Closing database connection -- 13:11:52.443 SQL [3088]: pgsql_close() -- 13:11:57.114 INFO [3088]: COREGRADE is starting... -- 13:11:57.114 INFO [3088]: Version from config: 1.0 -- 13:11:57.114 DEBUG [3088]: Connecting to database... -- 13:11:57.114 DEBUG [3088]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:11:57.114 SQL [3088]: pgsql_db_connect() -- 13:11:57.118 DEBUG [3088]: Database connection successful -- 13:11:57.118 INFO [3088]: _SERVER found -- 13:11:57.118 INFO [3088]: REMOTE_ADDR = 10.0.0.15 -- 13:11:57.118 INFO [3088]: SERVER_NAME = oameye.works.coregrade.com -- 13:11:57.118 INFO [3088]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; ci_session=5us4t5l2jhki1ptg9t98m8k1s6eubrki -- 13:11:57.118 INFO [3088]: QUERY_STRING = /member -- 13:11:57.118 INFO [3088]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:11:57.158 INFO [3088]: COREGRADE is stopping... -- 13:11:57.158 DEBUG [3088]: Closing database connection -- 13:11:57.158 SQL [3088]: pgsql_close() -- 13:12:03.862 INFO [25576]: COREGRADE is starting... -- 13:12:03.862 INFO [25576]: Version from config: 1.0 -- 13:12:03.862 DEBUG [25576]: Connecting to database... -- 13:12:03.862 DEBUG [25576]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:12:03.862 SQL [25576]: pgsql_db_connect() -- 13:12:03.866 DEBUG [25576]: Database connection successful -- 13:12:03.866 INFO [25576]: _SERVER found -- 13:12:03.866 INFO [25576]: REMOTE_ADDR = 10.0.0.15 -- 13:12:03.866 INFO [25576]: SERVER_NAME = oameye.works.coregrade.com -- 13:12:03.866 INFO [25576]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; ci_session=5us4t5l2jhki1ptg9t98m8k1s6eubrki -- 13:12:03.866 INFO [25576]: QUERY_STRING = /member/classroom -- 13:12:03.866 INFO [25576]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:12:03.909 INFO [25576]: COREGRADE is stopping... -- 13:12:03.909 DEBUG [25576]: Closing database connection -- 13:12:03.909 SQL [25576]: pgsql_close() -- 13:12:05.497 INFO [25576]: COREGRADE is starting... -- 13:12:05.497 INFO [25576]: Version from config: 1.0 -- 13:12:05.497 DEBUG [25576]: Connecting to database... -- 13:12:05.497 DEBUG [25576]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:12:05.497 SQL [25576]: pgsql_db_connect() -- 13:12:05.501 DEBUG [25576]: Database connection successful -- 13:12:05.501 INFO [25576]: _SERVER found -- 13:12:05.501 INFO [25576]: REMOTE_ADDR = 10.0.0.15 -- 13:12:05.501 INFO [25576]: SERVER_NAME = oameye.works.coregrade.com -- 13:12:05.501 INFO [25576]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; ci_session=5us4t5l2jhki1ptg9t98m8k1s6eubrki -- 13:12:05.501 INFO [25576]: QUERY_STRING = /member/viewRoom -- 13:12:05.501 INFO [25576]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:12:05.535 INFO [25576]: COREGRADE is stopping... -- 13:12:05.535 DEBUG [25576]: Closing database connection -- 13:12:05.535 SQL [25576]: pgsql_close() -- 13:12:37.165 INFO [3087]: COREGRADE is starting... -- 13:12:37.165 INFO [3087]: Version from config: 1.0 -- 13:12:37.165 DEBUG [3087]: Connecting to database... -- 13:12:37.165 DEBUG [3087]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:12:37.165 SQL [3087]: pgsql_db_connect() -- 13:12:37.170 DEBUG [3087]: Database connection successful -- 13:12:37.170 INFO [3087]: _SERVER found -- 13:12:37.170 INFO [3087]: REMOTE_ADDR = 10.0.0.15 -- 13:12:37.170 INFO [3087]: SERVER_NAME = oameye.works.coregrade.com -- 13:12:37.170 INFO [3087]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; ci_session=5us4t5l2jhki1ptg9t98m8k1s6eubrki -- 13:12:37.170 INFO [3087]: QUERY_STRING = /member/viewRoom -- 13:12:37.170 INFO [3087]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:12:37.206 INFO [3087]: COREGRADE is stopping... -- 13:12:37.206 DEBUG [3087]: Closing database connection -- 13:12:37.206 SQL [3087]: pgsql_close() -- 13:12:39.193 INFO [3087]: COREGRADE is starting... -- 13:12:39.193 INFO [3087]: Version from config: 1.0 -- 13:12:39.193 DEBUG [3087]: Connecting to database... -- 13:12:39.193 DEBUG [3087]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:12:39.193 SQL [3087]: pgsql_db_connect() -- 13:12:39.197 DEBUG [3087]: Database connection successful -- 13:12:39.197 INFO [3087]: _SERVER found -- 13:12:39.197 INFO [3087]: REMOTE_ADDR = 10.0.0.15 -- 13:12:39.197 INFO [3087]: SERVER_NAME = oameye.works.coregrade.com -- 13:12:39.197 INFO [3087]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; ci_session=5us4t5l2jhki1ptg9t98m8k1s6eubrki -- 13:12:39.197 INFO [3087]: QUERY_STRING = /member/viewRoom -- 13:12:39.197 INFO [3087]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:12:39.233 INFO [3087]: COREGRADE is stopping... -- 13:12:39.233 DEBUG [3087]: Closing database connection -- 13:12:39.233 SQL [3087]: pgsql_close() -- 13:12:41.289 INFO [3087]: COREGRADE is starting... -- 13:12:41.290 INFO [3087]: Version from config: 1.0 -- 13:12:41.290 DEBUG [3087]: Connecting to database... -- 13:12:41.290 DEBUG [3087]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:12:41.290 SQL [3087]: pgsql_db_connect() -- 13:12:41.294 DEBUG [3087]: Database connection successful -- 13:12:41.294 INFO [3087]: _SERVER found -- 13:12:41.294 INFO [3087]: REMOTE_ADDR = 10.0.0.15 -- 13:12:41.294 INFO [3087]: SERVER_NAME = oameye.works.coregrade.com -- 13:12:41.294 INFO [3087]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; ci_session=5us4t5l2jhki1ptg9t98m8k1s6eubrki -- 13:12:41.294 INFO [3087]: QUERY_STRING = /member/viewRoom -- 13:12:41.294 INFO [3087]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:12:41.329 INFO [3087]: COREGRADE is stopping... -- 13:12:41.329 DEBUG [3087]: Closing database connection -- 13:12:41.329 SQL [3087]: pgsql_close() -- 13:12:43.348 INFO [3087]: COREGRADE is starting... -- 13:12:43.348 INFO [3087]: Version from config: 1.0 -- 13:12:43.348 DEBUG [3087]: Connecting to database... -- 13:12:43.348 DEBUG [3087]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:12:43.348 SQL [3087]: pgsql_db_connect() -- 13:12:43.352 DEBUG [3087]: Database connection successful -- 13:12:43.352 INFO [3087]: _SERVER found -- 13:12:43.352 INFO [3087]: REMOTE_ADDR = 10.0.0.15 -- 13:12:43.352 INFO [3087]: SERVER_NAME = oameye.works.coregrade.com -- 13:12:43.352 INFO [3087]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; ci_session=5us4t5l2jhki1ptg9t98m8k1s6eubrki -- 13:12:43.352 INFO [3087]: QUERY_STRING = /member/viewRoom -- 13:12:43.352 INFO [3087]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:12:43.386 INFO [3087]: COREGRADE is stopping... -- 13:12:43.386 DEBUG [3087]: Closing database connection -- 13:12:43.386 SQL [3087]: pgsql_close() -- 14:12:36.954 INFO [3089]: COREGRADE is starting... -- 14:12:36.955 INFO [3089]: Version from config: 1.0 -- 14:12:36.955 DEBUG [3089]: Connecting to database... -- 14:12:36.955 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:12:36.955 SQL [3089]: pgsql_db_connect() -- 14:12:36.961 DEBUG [3089]: Database connection successful -- 14:12:36.961 INFO [3089]: _SERVER found -- 14:12:36.961 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 14:12:36.961 INFO [3089]: SERVER_NAME = oameye.works.coregrade.com -- 14:12:36.961 INFO [3089]: QUERY_STRING = -- 14:12:36.961 INFO [3089]: HTTP_X_FORWARDED_FOR = 128.14.180.110 -- 14:12:37.002 INFO [3089]: COREGRADE is stopping... -- 14:12:37.002 DEBUG [3089]: Closing database connection -- 14:12:37.002 SQL [3089]: pgsql_close() -- 14:36:54.490 INFO [3085]: COREGRADE is starting... -- 14:36:54.490 INFO [3085]: Version from config: 1.0 -- 14:36:54.490 DEBUG [3085]: Connecting to database... -- 14:36:54.490 DEBUG [3085]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:36:54.490 SQL [3085]: pgsql_db_connect() -- 14:36:54.495 DEBUG [3085]: Database connection successful -- 14:36:54.495 INFO [3085]: _SERVER found -- 14:36:54.495 INFO [3085]: REMOTE_ADDR = 10.0.0.15 -- 14:36:54.495 INFO [3085]: SERVER_NAME = oameye.works.coregrade.com -- 14:36:54.495 INFO [3085]: QUERY_STRING = -- 14:36:54.495 INFO [3085]: HTTP_X_FORWARDED_FOR = 223.71.167.163 -- 14:36:54.534 INFO [3085]: COREGRADE is stopping... -- 14:36:54.534 DEBUG [3085]: Closing database connection -- 14:36:54.534 SQL [3085]: pgsql_close() -- 14:41:38.953 INFO [25721]: COREGRADE is starting... -- 14:41:38.953 INFO [25721]: Version from config: 1.0 -- 14:41:38.953 DEBUG [25721]: Connecting to database... -- 14:41:38.953 DEBUG [25721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:41:38.953 SQL [25721]: pgsql_db_connect() -- 14:41:38.957 DEBUG [25721]: Database connection successful -- 14:41:38.957 INFO [25721]: _SERVER found -- 14:41:38.957 INFO [25721]: REMOTE_ADDR = 10.0.0.15 -- 14:41:38.957 INFO [25721]: SERVER_NAME = oameye.works.coregrade.com -- 14:41:38.957 INFO [25721]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; ci_session=5us4t5l2jhki1ptg9t98m8k1s6eubrki -- 14:41:38.957 INFO [25721]: QUERY_STRING = /member/mycalendar -- 14:41:38.957 INFO [25721]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:41:38.000 INFO [25721]: COREGRADE is stopping... -- 14:41:38.000 DEBUG [25721]: Closing database connection -- 14:41:38.000 SQL [25721]: pgsql_close() -- 14:41:39.110 INFO [25721]: COREGRADE is starting... -- 14:41:39.110 INFO [25721]: Version from config: 1.0 -- 14:41:39.110 DEBUG [25721]: Connecting to database... -- 14:41:39.110 DEBUG [25721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:41:39.110 SQL [25721]: pgsql_db_connect() -- 14:41:39.114 DEBUG [25721]: Database connection successful -- 14:41:39.114 INFO [25721]: _SERVER found -- 14:41:39.114 INFO [25721]: REMOTE_ADDR = 10.0.0.15 -- 14:41:39.114 INFO [25721]: SERVER_NAME = oameye.works.coregrade.com -- 14:41:39.114 INFO [25721]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; ci_session=8jag2j5mqm450m6h13r57d7s9q20o4fo -- 14:41:39.114 INFO [25721]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:41:39.114 INFO [25721]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:41:39.125 INFO [25721]: COREGRADE is stopping... -- 14:41:39.125 DEBUG [25721]: Closing database connection -- 14:41:39.125 SQL [25721]: pgsql_close() -- 14:41:40.874 INFO [25721]: COREGRADE is starting... -- 14:41:40.874 INFO [25721]: Version from config: 1.0 -- 14:41:40.874 DEBUG [25721]: Connecting to database... -- 14:41:40.874 DEBUG [25721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:41:40.874 SQL [25721]: pgsql_db_connect() -- 14:41:40.878 DEBUG [25721]: Database connection successful -- 14:41:40.878 INFO [25721]: _SERVER found -- 14:41:40.878 INFO [25721]: REMOTE_ADDR = 10.0.0.15 -- 14:41:40.878 INFO [25721]: SERVER_NAME = oameye.works.coregrade.com -- 14:41:40.878 INFO [25721]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; ci_session=8jag2j5mqm450m6h13r57d7s9q20o4fo -- 14:41:40.878 INFO [25721]: QUERY_STRING = /member/configure -- 14:41:40.878 INFO [25721]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:41:40.921 INFO [25721]: COREGRADE is stopping... -- 14:41:40.921 DEBUG [25721]: Closing database connection -- 14:41:40.921 SQL [25721]: pgsql_close() -- 14:41:41.025 INFO [25721]: COREGRADE is starting... -- 14:41:41.025 INFO [25721]: Version from config: 1.0 -- 14:41:41.025 DEBUG [25721]: Connecting to database... -- 14:41:41.025 DEBUG [25721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:41:41.025 SQL [25721]: pgsql_db_connect() -- 14:41:41.029 DEBUG [25721]: Database connection successful -- 14:41:41.029 INFO [25721]: _SERVER found -- 14:41:41.029 INFO [25721]: REMOTE_ADDR = 10.0.0.15 -- 14:41:41.029 INFO [25721]: SERVER_NAME = oameye.works.coregrade.com -- 14:41:41.029 INFO [25721]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; ci_session=8jag2j5mqm450m6h13r57d7s9q20o4fo -- 14:41:41.029 INFO [25721]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:41:41.029 INFO [25721]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:41:41.040 INFO [25721]: COREGRADE is stopping... -- 14:41:41.040 DEBUG [25721]: Closing database connection -- 14:41:41.040 SQL [25721]: pgsql_close() -- 14:41:41.049 INFO [25721]: COREGRADE is starting... -- 14:41:41.049 INFO [25721]: Version from config: 1.0 -- 14:41:41.049 DEBUG [25721]: Connecting to database... -- 14:41:41.049 DEBUG [25721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:41:41.049 SQL [25721]: pgsql_db_connect() -- 14:41:41.053 DEBUG [25721]: Database connection successful -- 14:41:41.053 INFO [25721]: _SERVER found -- 14:41:41.053 INFO [25721]: REMOTE_ADDR = 10.0.0.15 -- 14:41:41.053 INFO [25721]: SERVER_NAME = oameye.works.coregrade.com -- 14:41:41.053 INFO [25721]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; ci_session=8jag2j5mqm450m6h13r57d7s9q20o4fo -- 14:41:41.053 INFO [25721]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 14:41:41.053 INFO [25721]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:41:41.064 INFO [25721]: COREGRADE is stopping... -- 14:41:41.064 DEBUG [25721]: Closing database connection -- 14:41:41.064 SQL [25721]: pgsql_close() -- 14:42:02.186 INFO [3086]: COREGRADE is starting... -- 14:42:02.186 INFO [3086]: Version from config: 1.0 -- 14:42:02.186 DEBUG [3086]: Connecting to database... -- 14:42:02.186 DEBUG [3086]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:42:02.186 SQL [3086]: pgsql_db_connect() -- 14:42:02.190 DEBUG [3086]: Database connection successful -- 14:42:02.190 INFO [3086]: _SERVER found -- 14:42:02.190 INFO [3086]: REMOTE_ADDR = 10.0.0.15 -- 14:42:02.190 INFO [3086]: SERVER_NAME = oameye.works.coregrade.com -- 14:42:02.190 INFO [3086]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; ci_session=8jag2j5mqm450m6h13r57d7s9q20o4fo -- 14:42:02.190 INFO [3086]: QUERY_STRING = /member/page -- 14:42:02.190 INFO [3086]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:42:02.235 INFO [3086]: COREGRADE is stopping... -- 14:42:02.235 DEBUG [3086]: Closing database connection -- 14:42:02.235 SQL [3086]: pgsql_close() -- 14:42:02.379 INFO [3086]: COREGRADE is starting... -- 14:42:02.379 INFO [3086]: Version from config: 1.0 -- 14:42:02.379 DEBUG [3086]: Connecting to database... -- 14:42:02.379 DEBUG [3086]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:42:02.379 SQL [3086]: pgsql_db_connect() -- 14:42:02.383 DEBUG [3086]: Database connection successful -- 14:42:02.383 INFO [3086]: _SERVER found -- 14:42:02.383 INFO [3086]: REMOTE_ADDR = 10.0.0.15 -- 14:42:02.383 INFO [3086]: SERVER_NAME = oameye.works.coregrade.com -- 14:42:02.383 INFO [3086]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; ci_session=8jag2j5mqm450m6h13r57d7s9q20o4fo -- 14:42:02.383 INFO [3086]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:42:02.383 INFO [3086]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:42:02.394 INFO [3086]: COREGRADE is stopping... -- 14:42:02.394 DEBUG [3086]: Closing database connection -- 14:42:02.394 SQL [3086]: pgsql_close() -- 14:42:21.064 INFO [25575]: COREGRADE is starting... -- 14:42:21.064 INFO [25575]: Version from config: 1.0 -- 14:42:21.064 DEBUG [25575]: Connecting to database... -- 14:42:21.064 DEBUG [25575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:42:21.064 SQL [25575]: pgsql_db_connect() -- 14:42:21.068 DEBUG [25575]: Database connection successful -- 14:42:21.068 INFO [25575]: _SERVER found -- 14:42:21.068 INFO [25575]: REMOTE_ADDR = 10.0.0.15 -- 14:42:21.068 INFO [25575]: SERVER_NAME = oameye.works.coregrade.com -- 14:42:21.068 INFO [25575]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; ci_session=8jag2j5mqm450m6h13r57d7s9q20o4fo -- 14:42:21.068 INFO [25575]: QUERY_STRING = /member/configure -- 14:42:21.068 INFO [25575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:42:21.113 INFO [25575]: COREGRADE is stopping... -- 14:42:21.113 DEBUG [25575]: Closing database connection -- 14:42:21.113 SQL [25575]: pgsql_close() -- 14:42:21.223 INFO [25575]: COREGRADE is starting... -- 14:42:21.223 INFO [25575]: Version from config: 1.0 -- 14:42:21.223 DEBUG [25575]: Connecting to database... -- 14:42:21.223 DEBUG [25575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:42:21.223 SQL [25575]: pgsql_db_connect() -- 14:42:21.227 DEBUG [25575]: Database connection successful -- 14:42:21.227 INFO [25575]: _SERVER found -- 14:42:21.227 INFO [25575]: REMOTE_ADDR = 10.0.0.15 -- 14:42:21.227 INFO [25575]: SERVER_NAME = oameye.works.coregrade.com -- 14:42:21.227 INFO [25575]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; ci_session=8jag2j5mqm450m6h13r57d7s9q20o4fo -- 14:42:21.227 INFO [25575]: QUERY_STRING = /app-assets/images/logo/vuexy-logo.png -- 14:42:21.227 INFO [25575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:42:21.238 INFO [25575]: COREGRADE is stopping... -- 14:42:21.238 DEBUG [25575]: Closing database connection -- 14:42:21.238 SQL [25575]: pgsql_close() -- 14:42:21.251 INFO [25575]: COREGRADE is starting... -- 14:42:21.251 INFO [25575]: Version from config: 1.0 -- 14:42:21.251 DEBUG [25575]: Connecting to database... -- 14:42:21.251 DEBUG [25575]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:42:21.251 SQL [25575]: pgsql_db_connect() -- 14:42:21.255 DEBUG [25575]: Database connection successful -- 14:42:21.255 INFO [25575]: _SERVER found -- 14:42:21.255 INFO [25575]: REMOTE_ADDR = 10.0.0.15 -- 14:42:21.255 INFO [25575]: SERVER_NAME = oameye.works.coregrade.com -- 14:42:21.255 INFO [25575]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; ci_session=8jag2j5mqm450m6h13r57d7s9q20o4fo -- 14:42:21.255 INFO [25575]: QUERY_STRING = /app-assets/images/pages/arrow-down.png -- 14:42:21.255 INFO [25575]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 14:42:21.266 INFO [25575]: COREGRADE is stopping... -- 14:42:21.266 DEBUG [25575]: Closing database connection -- 14:42:21.266 SQL [25575]: pgsql_close() -- 14:42:30.971 INFO [4861]: COREGRADE is starting... -- 14:42:30.971 INFO [4861]: Version from config: 1.0 -- 14:42:30.971 DEBUG [4861]: Connecting to database... -- 14:42:30.971 DEBUG [4861]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:42:30.971 SQL [4861]: pgsql_db_connect() -- 14:42:30.975 DEBUG [4861]: Database connection successful -- 14:42:30.975 INFO [4861]: _SERVER found -- 14:42:30.975 INFO [4861]: REMOTE_ADDR = 10.0.0.15 -- 14:42:30.975 INFO [4861]: SERVER_NAME = oameye.works.coregrade.com -- 14:42:30.975 INFO [4861]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; ci_session=8jag2j5mqm450m6h13r57d7s9q20o4fo -- 14:42:30.975 INFO [4861]: QUERY_STRING = /member/viewSharePage -- 14:42:30.975 INFO [4861]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:42:31.013 INFO [4861]: COREGRADE is stopping... -- 14:42:31.013 DEBUG [4861]: Closing database connection -- 14:42:31.013 SQL [4861]: pgsql_close() -- 14:42:38.316 INFO [25724]: COREGRADE is starting... -- 14:42:38.317 INFO [25724]: Version from config: 1.0 -- 14:42:38.317 DEBUG [25724]: Connecting to database... -- 14:42:38.317 DEBUG [25724]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:42:38.317 SQL [25724]: pgsql_db_connect() -- 14:42:38.321 DEBUG [25724]: Database connection successful -- 14:42:38.321 INFO [25724]: _SERVER found -- 14:42:38.321 INFO [25724]: REMOTE_ADDR = 10.0.0.15 -- 14:42:38.321 INFO [25724]: SERVER_NAME = oameye.works.coregrade.com -- 14:42:38.321 INFO [25724]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; ci_session=8jag2j5mqm450m6h13r57d7s9q20o4fo -- 14:42:38.321 INFO [25724]: QUERY_STRING = /member/viewSharePage -- 14:42:38.321 INFO [25724]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 14:42:38.357 INFO [25724]: COREGRADE is stopping... -- 14:42:38.357 DEBUG [25724]: Closing database connection -- 14:42:38.357 SQL [25724]: pgsql_close() -- 15:00:13.674 INFO [3088]: COREGRADE is starting... -- 15:00:13.674 INFO [3088]: Version from config: 1.0 -- 15:00:13.674 DEBUG [3088]: Connecting to database... -- 15:00:13.674 DEBUG [3088]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 15:00:13.674 SQL [3088]: pgsql_db_connect() -- 15:00:13.678 DEBUG [3088]: Database connection successful -- 15:00:13.678 INFO [3088]: _SERVER found -- 15:00:13.678 INFO [3088]: REMOTE_ADDR = 10.0.0.15 -- 15:00:13.678 INFO [3088]: SERVER_NAME = oameye.works.coregrade.com -- 15:00:13.678 INFO [3088]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; ci_session=8jag2j5mqm450m6h13r57d7s9q20o4fo -- 15:00:13.678 INFO [3088]: QUERY_STRING = /member/viewSharePage -- 15:00:13.678 INFO [3088]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 15:00:13.718 INFO [3088]: COREGRADE is stopping... -- 15:00:13.718 DEBUG [3088]: Closing database connection -- 15:00:13.718 SQL [3088]: pgsql_close() -- 17:22:21.804 INFO [25576]: COREGRADE is starting... -- 17:22:21.805 INFO [25576]: Version from config: 1.0 -- 17:22:21.805 DEBUG [25576]: Connecting to database... -- 17:22:21.805 DEBUG [25576]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:22:21.805 SQL [25576]: pgsql_db_connect() -- 17:22:21.810 DEBUG [25576]: Database connection successful -- 17:22:21.810 INFO [25576]: _SERVER found -- 17:22:21.810 INFO [25576]: REMOTE_ADDR = 10.0.0.15 -- 17:22:21.810 INFO [25576]: SERVER_NAME = oameye.works.coregrade.com -- 17:22:21.810 INFO [25576]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238 -- 17:22:21.810 INFO [25576]: QUERY_STRING = /auth -- 17:22:21.810 INFO [25576]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:22:21.848 INFO [25576]: COREGRADE is stopping... -- 17:22:21.848 DEBUG [25576]: Closing database connection -- 17:22:21.848 SQL [25576]: pgsql_close() -- 17:22:22.077 INFO [25576]: COREGRADE is starting... -- 17:22:22.077 INFO [25576]: Version from config: 1.0 -- 17:22:22.078 DEBUG [25576]: Connecting to database... -- 17:22:22.078 DEBUG [25576]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 17:22:22.078 SQL [25576]: pgsql_db_connect() -- 17:22:22.082 DEBUG [25576]: Database connection successful -- 17:22:22.082 INFO [25576]: _SERVER found -- 17:22:22.082 INFO [25576]: REMOTE_ADDR = 10.0.0.15 -- 17:22:22.082 INFO [25576]: SERVER_NAME = oameye.works.coregrade.com -- 17:22:22.082 INFO [25576]: HTTP_COOKIE = _ga=GA1.2.1706188217.1580922911; _gid=GA1.2.1686475493.1592068238; ci_session=slb0rhibdnh5846ivtbg3k82gluqj31c -- 17:22:22.082 INFO [25576]: QUERY_STRING = /app-assets/images/pages/vuexy-login-bg.jpg -- 17:22:22.082 INFO [25576]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 17:22:22.093 INFO [25576]: COREGRADE is stopping... -- 17:22:22.093 DEBUG [25576]: Closing database connection -- 17:22:22.093 SQL [25576]: pgsql_close() -- 20:23:25.443 INFO [3087]: COREGRADE is starting... -- 20:23:25.444 INFO [3087]: Version from config: 1.0 -- 20:23:25.444 DEBUG [3087]: Connecting to database... -- 20:23:25.444 DEBUG [3087]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:23:25.444 SQL [3087]: pgsql_db_connect() -- 20:23:25.449 DEBUG [3087]: Database connection successful -- 20:23:25.449 INFO [3087]: _SERVER found -- 20:23:25.449 INFO [3087]: REMOTE_ADDR = 10.0.0.15 -- 20:23:25.449 INFO [3087]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:23:25.449 INFO [3087]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.67193905.1591972257 -- 20:23:25.449 INFO [3087]: QUERY_STRING = -- 20:23:25.449 INFO [3087]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:23:25.492 INFO [3087]: COREGRADE is stopping... -- 20:23:25.492 DEBUG [3087]: Closing database connection -- 20:23:25.492 SQL [3087]: pgsql_close() -- 20:23:25.582 INFO [3087]: COREGRADE is starting... -- 20:23:25.583 INFO [3087]: Version from config: 1.0 -- 20:23:25.583 DEBUG [3087]: Connecting to database... -- 20:23:25.583 DEBUG [3087]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:23:25.583 SQL [3087]: pgsql_db_connect() -- 20:23:25.587 DEBUG [3087]: Database connection successful -- 20:23:25.587 INFO [3087]: _SERVER found -- 20:23:25.587 INFO [3087]: REMOTE_ADDR = 10.0.0.15 -- 20:23:25.587 INFO [3087]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:23:25.587 INFO [3087]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.67193905.1591972257; ci_session=90ou7h75qas8vk7chj8ssupel4hel7vg -- 20:23:25.587 INFO [3087]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 20:23:25.587 INFO [3087]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:23:25.599 INFO [3087]: COREGRADE is stopping... -- 20:23:25.599 DEBUG [3087]: Closing database connection -- 20:23:25.599 SQL [3087]: pgsql_close() -- 20:23:25.610 INFO [3087]: COREGRADE is starting... -- 20:23:25.611 INFO [3087]: Version from config: 1.0 -- 20:23:25.611 DEBUG [3087]: Connecting to database... -- 20:23:25.611 DEBUG [3087]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:23:25.611 SQL [3087]: pgsql_db_connect() -- 20:23:25.615 DEBUG [3087]: Database connection successful -- 20:23:25.615 INFO [3087]: _SERVER found -- 20:23:25.615 INFO [3087]: REMOTE_ADDR = 10.0.0.15 -- 20:23:25.615 INFO [3087]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:23:25.615 INFO [3087]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.67193905.1591972257; ci_session=90ou7h75qas8vk7chj8ssupel4hel7vg -- 20:23:25.615 INFO [3087]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 20:23:25.615 INFO [3087]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:23:25.626 INFO [3087]: COREGRADE is stopping... -- 20:23:25.626 DEBUG [3087]: Closing database connection -- 20:23:25.626 SQL [3087]: pgsql_close() -- 20:23:25.635 INFO [3087]: COREGRADE is starting... -- 20:23:25.635 INFO [3087]: Version from config: 1.0 -- 20:23:25.635 DEBUG [3087]: Connecting to database... -- 20:23:25.635 DEBUG [3087]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:23:25.635 SQL [3087]: pgsql_db_connect() -- 20:23:25.639 DEBUG [3087]: Database connection successful -- 20:23:25.639 INFO [3087]: _SERVER found -- 20:23:25.639 INFO [3087]: REMOTE_ADDR = 10.0.0.15 -- 20:23:25.639 INFO [3087]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:23:25.639 INFO [3087]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.67193905.1591972257; ci_session=90ou7h75qas8vk7chj8ssupel4hel7vg -- 20:23:25.639 INFO [3087]: QUERY_STRING = /assets/images/savvy-block.png -- 20:23:25.639 INFO [3087]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:23:25.650 INFO [3087]: COREGRADE is stopping... -- 20:23:25.651 DEBUG [3087]: Closing database connection -- 20:23:25.651 SQL [3087]: pgsql_close() -- 20:23:25.661 INFO [3087]: COREGRADE is starting... -- 20:23:25.661 INFO [3087]: Version from config: 1.0 -- 20:23:25.661 DEBUG [3087]: Connecting to database... -- 20:23:25.661 DEBUG [3087]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:23:25.661 SQL [3087]: pgsql_db_connect() -- 20:23:25.665 DEBUG [3087]: Database connection successful -- 20:23:25.665 INFO [3087]: _SERVER found -- 20:23:25.665 INFO [3087]: REMOTE_ADDR = 10.0.0.15 -- 20:23:25.665 INFO [3087]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:23:25.665 INFO [3087]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.67193905.1591972257; ci_session=90ou7h75qas8vk7chj8ssupel4hel7vg -- 20:23:25.665 INFO [3087]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 20:23:25.665 INFO [3087]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:23:25.677 INFO [3087]: COREGRADE is stopping... -- 20:23:25.677 DEBUG [3087]: Closing database connection -- 20:23:25.677 SQL [3087]: pgsql_close() -- 20:23:28.855 INFO [3087]: COREGRADE is starting... -- 20:23:28.856 INFO [3087]: Version from config: 1.0 -- 20:23:28.856 DEBUG [3087]: Connecting to database... -- 20:23:28.856 DEBUG [3087]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:23:28.856 SQL [3087]: pgsql_db_connect() -- 20:23:28.860 DEBUG [3087]: Database connection successful -- 20:23:28.860 INFO [3087]: _SERVER found -- 20:23:28.860 INFO [3087]: REMOTE_ADDR = 10.0.0.15 -- 20:23:28.860 INFO [3087]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:23:28.860 INFO [3087]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.67193905.1591972257; ci_session=90ou7h75qas8vk7chj8ssupel4hel7vg -- 20:23:28.860 INFO [3087]: QUERY_STRING = -- 20:23:28.860 INFO [3087]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:23:28.890 INFO [3087]: COREGRADE is stopping... -- 20:23:28.890 DEBUG [3087]: Closing database connection -- 20:23:28.890 SQL [3087]: pgsql_close() -- 20:23:28.933 INFO [3087]: COREGRADE is starting... -- 20:23:28.933 INFO [3087]: Version from config: 1.0 -- 20:23:28.933 DEBUG [3087]: Connecting to database... -- 20:23:28.933 DEBUG [3087]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:23:28.933 SQL [3087]: pgsql_db_connect() -- 20:23:28.937 DEBUG [3087]: Database connection successful -- 20:23:28.937 INFO [3087]: _SERVER found -- 20:23:28.937 INFO [3087]: REMOTE_ADDR = 10.0.0.15 -- 20:23:28.937 INFO [3087]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:23:28.937 INFO [3087]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.67193905.1591972257; ci_session=90ou7h75qas8vk7chj8ssupel4hel7vg -- 20:23:28.937 INFO [3087]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 20:23:28.937 INFO [3087]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:23:28.949 INFO [3087]: COREGRADE is stopping... -- 20:23:28.949 DEBUG [3087]: Closing database connection -- 20:23:28.949 SQL [3087]: pgsql_close() -- 20:23:28.970 INFO [3087]: COREGRADE is starting... -- 20:23:28.970 INFO [3087]: Version from config: 1.0 -- 20:23:28.970 DEBUG [3087]: Connecting to database... -- 20:23:28.970 DEBUG [3087]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:23:28.970 SQL [3087]: pgsql_db_connect() -- 20:23:28.974 DEBUG [3087]: Database connection successful -- 20:23:28.974 INFO [3087]: _SERVER found -- 20:23:28.974 INFO [3087]: REMOTE_ADDR = 10.0.0.15 -- 20:23:28.974 INFO [3087]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:23:28.974 INFO [3087]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.67193905.1591972257; ci_session=90ou7h75qas8vk7chj8ssupel4hel7vg -- 20:23:28.974 INFO [3087]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 20:23:28.974 INFO [3087]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:23:28.985 INFO [3087]: COREGRADE is stopping... -- 20:23:28.985 DEBUG [3087]: Closing database connection -- 20:23:28.985 SQL [3087]: pgsql_close() -- 20:23:29.002 INFO [3087]: COREGRADE is starting... -- 20:23:29.002 INFO [3087]: Version from config: 1.0 -- 20:23:29.002 DEBUG [3087]: Connecting to database... -- 20:23:29.002 DEBUG [3087]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:23:29.002 SQL [3087]: pgsql_db_connect() -- 20:23:29.006 DEBUG [3087]: Database connection successful -- 20:23:29.006 INFO [3087]: _SERVER found -- 20:23:29.006 INFO [3087]: REMOTE_ADDR = 10.0.0.15 -- 20:23:29.006 INFO [3087]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 20:23:29.006 INFO [3087]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.67193905.1591972257; ci_session=90ou7h75qas8vk7chj8ssupel4hel7vg -- 20:23:29.006 INFO [3087]: QUERY_STRING = /assets/images/savvy-block.png -- 20:23:29.006 INFO [3087]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 20:23:29.017 INFO [3087]: COREGRADE is stopping... -- 20:23:29.017 DEBUG [3087]: Closing database connection -- 20:23:29.017 SQL [3087]: pgsql_close() -- 01:43:55.413 INFO [3089]: COREGRADE is starting... -- 01:43:55.413 INFO [3089]: Version from config: 1.0 -- 01:43:55.413 DEBUG [3089]: Connecting to database... -- 01:43:55.413 DEBUG [3089]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:43:55.414 SQL [3089]: pgsql_db_connect() -- 01:43:55.418 DEBUG [3089]: Database connection successful -- 01:43:55.418 INFO [3089]: _SERVER found -- 01:43:55.418 INFO [3089]: REMOTE_ADDR = 10.0.0.15 -- 01:43:55.418 INFO [3089]: SERVER_NAME = oameye.works.coregrade.com -- 01:43:55.418 INFO [3089]: QUERY_STRING = /TP/public/index.php -- 01:43:55.418 INFO [3089]: HTTP_X_FORWARDED_FOR = 111.230.177.76 -- 01:43:55.432 INFO [3089]: COREGRADE is stopping... -- 01:43:55.432 DEBUG [3089]: Closing database connection -- 01:43:55.432 SQL [3089]: pgsql_close() -- 01:43:57.409 INFO [3085]: COREGRADE is starting... -- 01:43:57.409 INFO [3085]: Version from config: 1.0 -- 01:43:57.409 DEBUG [3085]: Connecting to database... -- 01:43:57.409 DEBUG [3085]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:43:57.409 SQL [3085]: pgsql_db_connect() -- 01:43:57.413 DEBUG [3085]: Database connection successful -- 01:43:57.413 INFO [3085]: _SERVER found -- 01:43:57.413 INFO [3085]: REMOTE_ADDR = 10.0.0.15 -- 01:43:57.413 INFO [3085]: SERVER_NAME = oameye.works.coregrade.com -- 01:43:57.413 INFO [3085]: QUERY_STRING = /TP/index.php -- 01:43:57.413 INFO [3085]: HTTP_X_FORWARDED_FOR = 111.230.177.76 -- 01:43:57.426 INFO [3085]: COREGRADE is stopping... -- 01:43:57.426 DEBUG [3085]: Closing database connection -- 01:43:57.426 SQL [3085]: pgsql_close() -- 01:44:01.350 INFO [3085]: COREGRADE is starting... -- 01:44:01.350 INFO [3085]: Version from config: 1.0 -- 01:44:01.350 DEBUG [3085]: Connecting to database... -- 01:44:01.350 DEBUG [3085]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:44:01.350 SQL [3085]: pgsql_db_connect() -- 01:44:01.354 DEBUG [3085]: Database connection successful -- 01:44:01.354 INFO [3085]: _SERVER found -- 01:44:01.354 INFO [3085]: REMOTE_ADDR = 10.0.0.15 -- 01:44:01.354 INFO [3085]: SERVER_NAME = oameye.works.coregrade.com -- 01:44:01.354 INFO [3085]: QUERY_STRING = /thinkphp/html/public/index.php -- 01:44:01.354 INFO [3085]: HTTP_X_FORWARDED_FOR = 111.230.177.76 -- 01:44:01.365 INFO [3085]: COREGRADE is stopping... -- 01:44:01.365 DEBUG [3085]: Closing database connection -- 01:44:01.365 SQL [3085]: pgsql_close() -- 01:44:10.788 INFO [25721]: COREGRADE is starting... -- 01:44:10.788 INFO [25721]: Version from config: 1.0 -- 01:44:10.788 DEBUG [25721]: Connecting to database... -- 01:44:10.788 DEBUG [25721]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:44:10.788 SQL [25721]: pgsql_db_connect() -- 01:44:10.792 DEBUG [25721]: Database connection successful -- 01:44:10.792 INFO [25721]: _SERVER found -- 01:44:10.792 INFO [25721]: REMOTE_ADDR = 10.0.0.15 -- 01:44:10.792 INFO [25721]: SERVER_NAME = oameye.works.coregrade.com -- 01:44:10.792 INFO [25721]: QUERY_STRING = -- 01:44:10.792 INFO [25721]: HTTP_X_FORWARDED_FOR = 111.230.177.76 -- 01:44:10.827 INFO [25721]: COREGRADE is stopping... -- 01:44:10.827 DEBUG [25721]: Closing database connection -- 01:44:10.827 SQL [25721]: pgsql_close() -- 01:58:05.463 INFO [3086]: COREGRADE is starting... -- 01:58:05.463 INFO [3086]: Version from config: 1.0 -- 01:58:05.463 DEBUG [3086]: Connecting to database... -- 01:58:05.463 DEBUG [3086]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:58:05.463 SQL [3086]: pgsql_db_connect() -- 01:58:05.468 DEBUG [3086]: Database connection successful -- 01:58:05.468 INFO [3086]: _SERVER found -- 01:58:05.468 INFO [3086]: REMOTE_ADDR = 10.0.0.15 -- 01:58:05.468 INFO [3086]: SERVER_NAME = oameye.works.coregrade.com -- 01:58:05.468 INFO [3086]: QUERY_STRING = /.well-known/acme-challenge/_GyG2XWAFBo2axYSiCHKdXsCknvjj7nsLRfgtIF1_24 -- 01:58:05.468 INFO [3086]: HTTP_X_FORWARDED_FOR = 3.14.255.131 -- 01:58:05.481 INFO [3086]: COREGRADE is stopping... -- 01:58:05.481 DEBUG [3086]: Closing database connection -- 01:58:05.481 SQL [3086]: pgsql_close() -- 01:58:05.680 INFO [3086]: COREGRADE is starting... -- 01:58:05.680 INFO [3086]: Version from config: 1.0 -- 01:58:05.680 DEBUG [3086]: Connecting to database... -- 01:58:05.680 DEBUG [3086]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:58:05.680 SQL [3086]: pgsql_db_connect() -- 01:58:05.685 DEBUG [3086]: Database connection successful -- 01:58:05.685 INFO [3086]: _SERVER found -- 01:58:05.685 INFO [3086]: REMOTE_ADDR = 10.0.0.15 -- 01:58:05.685 INFO [3086]: SERVER_NAME = oameye.works.coregrade.com -- 01:58:05.685 INFO [3086]: QUERY_STRING = /.well-known/acme-challenge/_GyG2XWAFBo2axYSiCHKdXsCknvjj7nsLRfgtIF1_24 -- 01:58:05.685 INFO [3086]: HTTP_X_FORWARDED_FOR = 64.78.149.164 -- 01:58:05.696 INFO [3086]: COREGRADE is stopping... -- 01:58:05.696 DEBUG [3086]: Closing database connection -- 01:58:05.696 SQL [3086]: pgsql_close() -- 04:10:30.015 INFO [463]: COREGRADE is starting... -- 04:10:30.015 INFO [463]: Version from config: 1.0 -- 04:10:30.015 DEBUG [463]: Connecting to database... -- 04:10:30.015 DEBUG [463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:10:30.015 SQL [463]: pgsql_db_connect() -- 04:10:30.020 DEBUG [463]: Database connection successful -- 04:10:30.020 INFO [463]: _SERVER found -- 04:10:30.020 INFO [463]: REMOTE_ADDR = 10.0.0.15 -- 04:10:30.020 INFO [463]: SERVER_NAME = oameye.works.coregrade.com -- 04:10:30.020 INFO [463]: QUERY_STRING = -- 04:10:30.020 INFO [463]: HTTP_X_FORWARDED_FOR = 23.239.12.93 -- 04:10:30.066 INFO [463]: COREGRADE is stopping... -- 04:10:30.066 DEBUG [463]: Closing database connection -- 04:10:30.066 SQL [463]: pgsql_close() -- 04:52:11.137 INFO [464]: COREGRADE is starting... -- 04:52:11.137 INFO [464]: Version from config: 1.0 -- 04:52:11.137 DEBUG [464]: Connecting to database... -- 04:52:11.137 DEBUG [464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:52:11.137 SQL [464]: pgsql_db_connect() -- 04:52:11.142 DEBUG [464]: Database connection successful -- 04:52:11.142 INFO [464]: _SERVER found -- 04:52:11.142 INFO [464]: REMOTE_ADDR = 10.0.0.15 -- 04:52:11.142 INFO [464]: SERVER_NAME = oameye.works.coregrade.com -- 04:52:11.142 INFO [464]: QUERY_STRING = -- 04:52:11.142 INFO [464]: HTTP_X_FORWARDED_FOR = 45.56.104.43 -- 04:52:11.188 INFO [464]: COREGRADE is stopping... -- 04:52:11.188 DEBUG [464]: Closing database connection -- 04:52:11.188 SQL [464]: pgsql_close() -- 10:53:33.697 INFO [465]: COREGRADE is starting... -- 10:53:33.697 INFO [465]: Version from config: 1.0 -- 10:53:33.697 DEBUG [465]: Connecting to database... -- 10:53:33.697 DEBUG [465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 10:53:33.697 SQL [465]: pgsql_db_connect() -- 10:53:33.702 DEBUG [465]: Database connection successful -- 10:53:33.702 INFO [465]: _SERVER found -- 10:53:33.702 INFO [465]: REMOTE_ADDR = 10.0.0.15 -- 10:53:33.702 INFO [465]: SERVER_NAME = oameye.works.coregrade.com -- 10:53:33.702 INFO [465]: QUERY_STRING = -- 10:53:33.702 INFO [465]: HTTP_X_FORWARDED_FOR = 67.205.160.159 -- 10:53:33.753 INFO [465]: COREGRADE is stopping... -- 10:53:33.753 DEBUG [465]: Closing database connection -- 10:53:33.753 SQL [465]: pgsql_close() -- 11:00:30.926 INFO [466]: COREGRADE is starting... -- 11:00:30.927 INFO [466]: Version from config: 1.0 -- 11:00:30.927 DEBUG [466]: Connecting to database... -- 11:00:30.927 DEBUG [466]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 11:00:30.927 SQL [466]: pgsql_db_connect() -- 11:00:30.931 DEBUG [466]: Database connection successful -- 11:00:30.931 INFO [466]: _SERVER found -- 11:00:30.931 INFO [466]: REMOTE_ADDR = 10.0.0.15 -- 11:00:30.931 INFO [466]: SERVER_NAME = oameye.works.coregrade.com -- 11:00:30.931 INFO [466]: QUERY_STRING = -- 11:00:30.931 INFO [466]: HTTP_X_FORWARDED_FOR = 67.205.160.159 -- 11:00:30.979 INFO [466]: COREGRADE is stopping... -- 11:00:30.979 DEBUG [466]: Closing database connection -- 11:00:30.979 SQL [466]: pgsql_close() -- 12:58:09.382 INFO [467]: COREGRADE is starting... -- 12:58:09.382 INFO [467]: Version from config: 1.0 -- 12:58:09.382 DEBUG [467]: Connecting to database... -- 12:58:09.382 DEBUG [467]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:58:09.383 SQL [467]: pgsql_db_connect() -- 12:58:09.388 DEBUG [467]: Database connection successful -- 12:58:09.388 INFO [467]: _SERVER found -- 12:58:09.388 INFO [467]: REMOTE_ADDR = 10.0.0.15 -- 12:58:09.388 INFO [467]: SERVER_NAME = oameye.works.coregrade.com -- 12:58:09.388 INFO [467]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507 -- 12:58:09.388 INFO [467]: QUERY_STRING = -- 12:58:09.388 INFO [467]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:58:09.441 INFO [467]: COREGRADE is stopping... -- 12:58:09.442 DEBUG [467]: Closing database connection -- 12:58:09.442 SQL [467]: pgsql_close() -- 12:58:09.769 INFO [467]: COREGRADE is starting... -- 12:58:09.769 INFO [467]: Version from config: 1.0 -- 12:58:09.769 DEBUG [467]: Connecting to database... -- 12:58:09.769 DEBUG [467]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:58:09.769 SQL [467]: pgsql_db_connect() -- 12:58:09.774 DEBUG [467]: Database connection successful -- 12:58:09.774 INFO [467]: _SERVER found -- 12:58:09.774 INFO [467]: REMOTE_ADDR = 10.0.0.15 -- 12:58:09.774 INFO [467]: SERVER_NAME = oameye.works.coregrade.com -- 12:58:09.774 INFO [467]: HTTP_COOKIE = _ga=GA1.2.1263857775.1586781507; ci_session=3oriftt7n1dkapdr8mb9t1ujnl6qif4r -- 12:58:09.774 INFO [467]: QUERY_STRING = /assets/img/footer_1.jpg -- 12:58:09.774 INFO [467]: HTTP_X_FORWARDED_FOR = 172.16.0.1 -- 12:58:09.786 INFO [467]: COREGRADE is stopping... -- 12:58:09.786 DEBUG [467]: Closing database connection -- 12:58:09.786 SQL [467]: pgsql_close() -- 13:16:32.922 INFO [1409]: COREGRADE is starting... -- 13:16:32.923 INFO [1409]: Version from config: 1.0 -- 13:16:32.923 DEBUG [1409]: Connecting to database... -- 13:16:32.923 DEBUG [1409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:16:32.923 SQL [1409]: pgsql_db_connect() -- 13:16:32.928 DEBUG [1409]: Database connection successful -- 13:16:32.928 INFO [1409]: _SERVER found -- 13:16:32.928 INFO [1409]: REMOTE_ADDR = 10.0.0.15 -- 13:16:32.928 INFO [1409]: SERVER_NAME = oameye.works.coregrade.com -- 13:16:32.928 INFO [1409]: QUERY_STRING = /solr/admin/info/system -- 13:16:32.928 INFO [1409]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 13:16:32.944 INFO [1409]: COREGRADE is stopping... -- 13:16:32.944 DEBUG [1409]: Closing database connection -- 13:16:32.944 SQL [1409]: pgsql_close() -- 13:18:31.690 INFO [463]: COREGRADE is starting... -- 13:18:31.691 INFO [463]: Version from config: 1.0 -- 13:18:31.691 DEBUG [463]: Connecting to database... -- 13:18:31.691 DEBUG [463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:18:31.691 SQL [463]: pgsql_db_connect() -- 13:18:31.695 DEBUG [463]: Database connection successful -- 13:18:31.695 INFO [463]: _SERVER found -- 13:18:31.695 INFO [463]: REMOTE_ADDR = 10.0.0.15 -- 13:18:31.695 INFO [463]: SERVER_NAME = oameye.works.coregrade.com -- 13:18:31.695 INFO [463]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 13:18:31.695 INFO [463]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 13:18:31.735 INFO [463]: COREGRADE is stopping... -- 13:18:31.735 DEBUG [463]: Closing database connection -- 13:18:31.735 SQL [463]: pgsql_close() -- 13:18:38.140 INFO [464]: COREGRADE is starting... -- 13:18:38.141 INFO [464]: Version from config: 1.0 -- 13:18:38.141 DEBUG [464]: Connecting to database... -- 13:18:38.141 DEBUG [464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:18:38.141 SQL [464]: pgsql_db_connect() -- 13:18:38.145 DEBUG [464]: Database connection successful -- 13:18:38.145 INFO [464]: _SERVER found -- 13:18:38.145 INFO [464]: REMOTE_ADDR = 10.0.0.15 -- 13:18:38.145 INFO [464]: SERVER_NAME = oameye.works.coregrade.com -- 13:18:38.145 INFO [464]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 13:18:38.145 INFO [464]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 13:18:38.180 INFO [464]: COREGRADE is stopping... -- 13:18:38.180 DEBUG [464]: Closing database connection -- 13:18:38.180 SQL [464]: pgsql_close() -- 13:23:42.651 INFO [465]: COREGRADE is starting... -- 13:23:42.651 INFO [465]: Version from config: 1.0 -- 13:23:42.651 DEBUG [465]: Connecting to database... -- 13:23:42.651 DEBUG [465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:23:42.651 SQL [465]: pgsql_db_connect() -- 13:23:42.655 DEBUG [465]: Database connection successful -- 13:23:42.655 INFO [465]: _SERVER found -- 13:23:42.655 INFO [465]: REMOTE_ADDR = 10.0.0.15 -- 13:23:42.655 INFO [465]: SERVER_NAME = oameye.works.coregrade.com -- 13:23:42.655 INFO [465]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 13:23:42.655 INFO [465]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 13:23:42.693 INFO [465]: COREGRADE is stopping... -- 13:23:42.693 DEBUG [465]: Closing database connection -- 13:23:42.693 SQL [465]: pgsql_close() -- 14:19:33.266 INFO [466]: COREGRADE is starting... -- 14:19:33.267 INFO [466]: Version from config: 1.0 -- 14:19:33.267 DEBUG [466]: Connecting to database... -- 14:19:33.267 DEBUG [466]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 14:19:33.267 SQL [466]: pgsql_db_connect() -- 14:19:33.272 DEBUG [466]: Database connection successful -- 14:19:33.272 INFO [466]: _SERVER found -- 14:19:33.272 INFO [466]: REMOTE_ADDR = 10.0.0.15 -- 14:19:33.272 INFO [466]: SERVER_NAME = oameye.works.coregrade.com -- 14:19:33.272 INFO [466]: QUERY_STRING = /api/jsonws/invoke -- 14:19:33.272 INFO [466]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 14:19:33.288 INFO [466]: COREGRADE is stopping... -- 14:19:33.288 DEBUG [466]: Closing database connection -- 14:19:33.288 SQL [466]: pgsql_close() -- 16:29:51.450 INFO [467]: COREGRADE is starting... -- 16:29:51.450 INFO [467]: Version from config: 1.0 -- 16:29:51.450 DEBUG [467]: Connecting to database... -- 16:29:51.450 DEBUG [467]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:29:51.450 SQL [467]: pgsql_db_connect() -- 16:29:51.455 DEBUG [467]: Database connection successful -- 16:29:51.455 INFO [467]: _SERVER found -- 16:29:51.455 INFO [467]: REMOTE_ADDR = 10.0.0.15 -- 16:29:51.455 INFO [467]: SERVER_NAME = oameye.works.coregrade.com -- 16:29:51.455 INFO [467]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 16:29:51.455 INFO [467]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 16:29:51.469 INFO [467]: COREGRADE is stopping... -- 16:29:51.469 DEBUG [467]: Closing database connection -- 16:29:51.469 SQL [467]: pgsql_close() -- 16:57:03.432 INFO [1409]: COREGRADE is starting... -- 16:57:03.432 INFO [1409]: Version from config: 1.0 -- 16:57:03.432 DEBUG [1409]: Connecting to database... -- 16:57:03.432 DEBUG [1409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:57:03.432 SQL [1409]: pgsql_db_connect() -- 16:57:03.437 DEBUG [1409]: Database connection successful -- 16:57:03.437 INFO [1409]: _SERVER found -- 16:57:03.437 INFO [1409]: REMOTE_ADDR = 10.0.0.15 -- 16:57:03.437 INFO [1409]: SERVER_NAME = oameye.works.coregrade.com -- 16:57:03.437 INFO [1409]: QUERY_STRING = /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php -- 16:57:03.437 INFO [1409]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 16:57:03.451 INFO [1409]: COREGRADE is stopping... -- 16:57:03.451 DEBUG [1409]: Closing database connection -- 16:57:03.451 SQL [1409]: pgsql_close() -- 20:57:28.059 INFO [463]: COREGRADE is starting... -- 20:57:28.060 INFO [463]: Version from config: 1.0 -- 20:57:28.060 DEBUG [463]: Connecting to database... -- 20:57:28.060 DEBUG [463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:57:28.060 SQL [463]: pgsql_db_connect() -- 20:57:28.065 DEBUG [463]: Database connection successful -- 20:57:28.065 INFO [463]: _SERVER found -- 20:57:28.065 INFO [463]: REMOTE_ADDR = 10.0.0.15 -- 20:57:28.065 INFO [463]: SERVER_NAME = oameye.works.coregrade.com -- 20:57:28.065 INFO [463]: QUERY_STRING = -- 20:57:28.065 INFO [463]: HTTP_X_FORWARDED_FOR = 193.118.53.210 -- 20:57:28.103 INFO [463]: COREGRADE is stopping... -- 20:57:28.103 DEBUG [463]: Closing database connection -- 20:57:28.103 SQL [463]: pgsql_close() -- 21:22:29.050 INFO [464]: COREGRADE is starting... -- 21:22:29.050 INFO [464]: Version from config: 1.0 -- 21:22:29.050 DEBUG [464]: Connecting to database... -- 21:22:29.050 DEBUG [464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 21:22:29.050 SQL [464]: pgsql_db_connect() -- 21:22:29.055 DEBUG [464]: Database connection successful -- 21:22:29.055 INFO [464]: _SERVER found -- 21:22:29.055 INFO [464]: REMOTE_ADDR = 10.0.0.15 -- 21:22:29.055 INFO [464]: SERVER_NAME = oameye.works.coregrade.com -- 21:22:29.055 INFO [464]: QUERY_STRING = -- 21:22:29.055 INFO [464]: HTTP_X_FORWARDED_FOR = 192.35.168.248 -- 21:22:29.094 INFO [464]: COREGRADE is stopping... -- 21:22:29.095 DEBUG [464]: Closing database connection -- 21:22:29.095 SQL [464]: pgsql_close() -- 22:21:44.218 INFO [465]: COREGRADE is starting... -- 22:21:44.218 INFO [465]: Version from config: 1.0 -- 22:21:44.218 DEBUG [465]: Connecting to database... -- 22:21:44.218 DEBUG [465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:21:44.218 SQL [465]: pgsql_db_connect() -- 22:21:44.223 DEBUG [465]: Database connection successful -- 22:21:44.223 INFO [465]: _SERVER found -- 22:21:44.223 INFO [465]: REMOTE_ADDR = 10.0.0.15 -- 22:21:44.223 INFO [465]: SERVER_NAME = oameye.works.coregrade.com -- 22:21:44.223 INFO [465]: QUERY_STRING = /robots.txt -- 22:21:44.223 INFO [465]: HTTP_X_FORWARDED_FOR = 66.249.65.184 -- 22:21:44.237 INFO [465]: COREGRADE is stopping... -- 22:21:44.237 DEBUG [465]: Closing database connection -- 22:21:44.237 SQL [465]: pgsql_close() -- 22:21:44.329 INFO [466]: COREGRADE is starting... -- 22:21:44.329 INFO [466]: Version from config: 1.0 -- 22:21:44.329 DEBUG [466]: Connecting to database... -- 22:21:44.329 DEBUG [466]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:21:44.329 SQL [466]: pgsql_db_connect() -- 22:21:44.333 DEBUG [466]: Database connection successful -- 22:21:44.333 INFO [466]: _SERVER found -- 22:21:44.333 INFO [466]: REMOTE_ADDR = 10.0.0.15 -- 22:21:44.333 INFO [466]: SERVER_NAME = oameye.works.coregrade.com -- 22:21:44.333 INFO [466]: QUERY_STRING = -- 22:21:44.333 INFO [466]: HTTP_X_FORWARDED_FOR = 66.249.65.180 -- 22:21:44.370 INFO [466]: COREGRADE is stopping... -- 22:21:44.370 DEBUG [466]: Closing database connection -- 22:21:44.370 SQL [466]: pgsql_close() -- 23:21:44.045 INFO [467]: COREGRADE is starting... -- 23:21:44.045 INFO [467]: Version from config: 1.0 -- 23:21:44.045 DEBUG [467]: Connecting to database... -- 23:21:44.045 DEBUG [467]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:21:44.045 SQL [467]: pgsql_db_connect() -- 23:21:44.050 DEBUG [467]: Database connection successful -- 23:21:44.050 INFO [467]: _SERVER found -- 23:21:44.050 INFO [467]: REMOTE_ADDR = 10.0.0.15 -- 23:21:44.050 INFO [467]: SERVER_NAME = oameye.works.coregrade.com -- 23:21:44.050 INFO [467]: QUERY_STRING = -- 23:21:44.050 INFO [467]: HTTP_X_FORWARDED_FOR = 66.249.65.182 -- 23:21:44.086 INFO [467]: COREGRADE is stopping... -- 23:21:44.087 DEBUG [467]: Closing database connection -- 23:21:44.087 SQL [467]: pgsql_close() -- 23:21:53.095 INFO [463]: COREGRADE is starting... -- 23:21:53.095 INFO [463]: Version from config: 1.0 -- 23:21:53.095 DEBUG [463]: Connecting to database... -- 23:21:53.095 DEBUG [463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:21:53.095 SQL [463]: pgsql_db_connect() -- 23:21:53.099 DEBUG [463]: Database connection successful -- 23:21:53.099 INFO [463]: _SERVER found -- 23:21:53.099 INFO [463]: REMOTE_ADDR = 10.0.0.15 -- 23:21:53.099 INFO [463]: SERVER_NAME = oameye.works.coregrade.com -- 23:21:53.099 INFO [463]: QUERY_STRING = /favicon.ico -- 23:21:53.099 INFO [463]: HTTP_X_FORWARDED_FOR = 66.249.65.182 -- 23:21:53.113 INFO [463]: COREGRADE is stopping... -- 23:21:53.113 DEBUG [463]: Closing database connection -- 23:21:53.113 SQL [463]: pgsql_close() -- 23:25:21.909 INFO [464]: COREGRADE is starting... -- 23:25:21.909 INFO [464]: Version from config: 1.0 -- 23:25:21.909 DEBUG [464]: Connecting to database... -- 23:25:21.909 DEBUG [464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:25:21.909 SQL [464]: pgsql_db_connect() -- 23:25:21.914 DEBUG [464]: Database connection successful -- 23:25:21.914 INFO [464]: _SERVER found -- 23:25:21.914 INFO [464]: REMOTE_ADDR = 10.0.0.15 -- 23:25:21.914 INFO [464]: SERVER_NAME = oameye.works.coregrade.com -- 23:25:21.914 INFO [464]: QUERY_STRING = /favicon.ico -- 23:25:21.914 INFO [464]: HTTP_X_FORWARDED_FOR = 66.249.65.182 -- 23:25:21.927 INFO [464]: COREGRADE is stopping... -- 23:25:21.927 DEBUG [464]: Closing database connection -- 23:25:21.927 SQL [464]: pgsql_close() -- 23:26:21.413 INFO [17343]: COREGRADE is starting... -- 23:26:21.413 INFO [17343]: Version from config: 1.0 -- 23:26:21.413 DEBUG [17343]: Connecting to database... -- 23:26:21.413 DEBUG [17343]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:26:21.413 SQL [17343]: pgsql_db_connect() -- 23:26:21.417 DEBUG [17343]: Database connection successful -- 23:26:21.417 INFO [17343]: _SERVER found -- 23:26:21.417 INFO [17343]: REMOTE_ADDR = 10.0.0.15 -- 23:26:21.417 INFO [17343]: SERVER_NAME = oameye.works.coregrade.com -- 23:26:21.417 INFO [17343]: QUERY_STRING = /favicon.ico -- 23:26:21.417 INFO [17343]: HTTP_X_FORWARDED_FOR = 66.249.65.184 -- 23:26:21.432 INFO [17343]: COREGRADE is stopping... -- 23:26:21.432 DEBUG [17343]: Closing database connection -- 23:26:21.432 SQL [17343]: pgsql_close() -- 23:47:48.950 INFO [465]: COREGRADE is starting... -- 23:47:48.951 INFO [465]: Version from config: 1.0 -- 23:47:48.951 DEBUG [465]: Connecting to database... -- 23:47:48.951 DEBUG [465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:48.951 SQL [465]: pgsql_db_connect() -- 23:47:48.955 DEBUG [465]: Database connection successful -- 23:47:48.955 INFO [465]: _SERVER found -- 23:47:48.955 INFO [465]: REMOTE_ADDR = 10.0.0.15 -- 23:47:48.955 INFO [465]: SERVER_NAME = oameye.works.coregrade.com -- 23:47:48.955 INFO [465]: QUERY_STRING = /TP/public/index.php -- 23:47:48.955 INFO [465]: HTTP_X_FORWARDED_FOR = 106.13.123.125 -- 23:47:48.969 INFO [465]: COREGRADE is stopping... -- 23:47:48.969 DEBUG [465]: Closing database connection -- 23:47:48.969 SQL [465]: pgsql_close() -- 23:47:51.304 INFO [466]: COREGRADE is starting... -- 23:47:51.305 INFO [466]: Version from config: 1.0 -- 23:47:51.305 DEBUG [466]: Connecting to database... -- 23:47:51.305 DEBUG [466]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:51.305 SQL [466]: pgsql_db_connect() -- 23:47:51.309 DEBUG [466]: Database connection successful -- 23:47:51.309 INFO [466]: _SERVER found -- 23:47:51.309 INFO [466]: REMOTE_ADDR = 10.0.0.15 -- 23:47:51.309 INFO [466]: SERVER_NAME = oameye.works.coregrade.com -- 23:47:51.309 INFO [466]: QUERY_STRING = /TP/index.php -- 23:47:51.309 INFO [466]: HTTP_X_FORWARDED_FOR = 106.13.123.125 -- 23:47:51.321 INFO [466]: COREGRADE is stopping... -- 23:47:51.321 DEBUG [466]: Closing database connection -- 23:47:51.321 SQL [466]: pgsql_close() -- 23:47:52.742 INFO [466]: COREGRADE is starting... -- 23:47:52.742 INFO [466]: Version from config: 1.0 -- 23:47:52.742 DEBUG [466]: Connecting to database... -- 23:47:52.742 DEBUG [466]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:52.742 SQL [466]: pgsql_db_connect() -- 23:47:52.746 DEBUG [466]: Database connection successful -- 23:47:52.746 INFO [466]: _SERVER found -- 23:47:52.746 INFO [466]: REMOTE_ADDR = 10.0.0.15 -- 23:47:52.746 INFO [466]: SERVER_NAME = oameye.works.coregrade.com -- 23:47:52.746 INFO [466]: QUERY_STRING = /thinkphp/html/public/index.php -- 23:47:52.746 INFO [466]: HTTP_X_FORWARDED_FOR = 106.13.123.125 -- 23:47:52.757 INFO [466]: COREGRADE is stopping... -- 23:47:52.757 DEBUG [466]: Closing database connection -- 23:47:52.757 SQL [466]: pgsql_close() -- 23:47:54.174 INFO [467]: COREGRADE is starting... -- 23:47:54.174 INFO [467]: Version from config: 1.0 -- 23:47:54.174 DEBUG [467]: Connecting to database... -- 23:47:54.174 DEBUG [467]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:54.174 SQL [467]: pgsql_db_connect() -- 23:47:54.179 DEBUG [467]: Database connection successful -- 23:47:54.179 INFO [467]: _SERVER found -- 23:47:54.179 INFO [467]: REMOTE_ADDR = 10.0.0.15 -- 23:47:54.179 INFO [467]: SERVER_NAME = oameye.works.coregrade.com -- 23:47:54.179 INFO [467]: QUERY_STRING = /html/public/index.php -- 23:47:54.179 INFO [467]: HTTP_X_FORWARDED_FOR = 106.13.123.125 -- 23:47:54.191 INFO [467]: COREGRADE is stopping... -- 23:47:54.191 DEBUG [467]: Closing database connection -- 23:47:54.191 SQL [467]: pgsql_close() -- 23:47:55.589 INFO [467]: COREGRADE is starting... -- 23:47:55.590 INFO [467]: Version from config: 1.0 -- 23:47:55.590 DEBUG [467]: Connecting to database... -- 23:47:55.590 DEBUG [467]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:55.590 SQL [467]: pgsql_db_connect() -- 23:47:55.594 DEBUG [467]: Database connection successful -- 23:47:55.594 INFO [467]: _SERVER found -- 23:47:55.594 INFO [467]: REMOTE_ADDR = 10.0.0.15 -- 23:47:55.594 INFO [467]: SERVER_NAME = oameye.works.coregrade.com -- 23:47:55.594 INFO [467]: QUERY_STRING = /public/index.php -- 23:47:55.594 INFO [467]: HTTP_X_FORWARDED_FOR = 106.13.123.125 -- 23:47:55.605 INFO [467]: COREGRADE is stopping... -- 23:47:55.605 DEBUG [467]: Closing database connection -- 23:47:55.605 SQL [467]: pgsql_close() -- 23:47:58.004 INFO [467]: COREGRADE is starting... -- 23:47:58.004 INFO [467]: Version from config: 1.0 -- 23:47:58.004 DEBUG [467]: Connecting to database... -- 23:47:58.004 DEBUG [467]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:58.004 SQL [467]: pgsql_db_connect() -- 23:47:58.009 DEBUG [467]: Database connection successful -- 23:47:58.009 INFO [467]: _SERVER found -- 23:47:58.009 INFO [467]: REMOTE_ADDR = 10.0.0.15 -- 23:47:58.009 INFO [467]: SERVER_NAME = oameye.works.coregrade.com -- 23:47:58.009 INFO [467]: QUERY_STRING = /TP/html/public/index.php -- 23:47:58.009 INFO [467]: HTTP_X_FORWARDED_FOR = 106.13.123.125 -- 23:47:58.020 INFO [467]: COREGRADE is stopping... -- 23:47:58.020 DEBUG [467]: Closing database connection -- 23:47:58.020 SQL [467]: pgsql_close() -- 23:47:59.785 INFO [467]: COREGRADE is starting... -- 23:47:59.785 INFO [467]: Version from config: 1.0 -- 23:47:59.785 DEBUG [467]: Connecting to database... -- 23:47:59.786 DEBUG [467]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:47:59.786 SQL [467]: pgsql_db_connect() -- 23:47:59.790 DEBUG [467]: Database connection successful -- 23:47:59.790 INFO [467]: _SERVER found -- 23:47:59.790 INFO [467]: REMOTE_ADDR = 10.0.0.15 -- 23:47:59.790 INFO [467]: SERVER_NAME = oameye.works.coregrade.com -- 23:47:59.790 INFO [467]: QUERY_STRING = /elrekt.php -- 23:47:59.790 INFO [467]: HTTP_X_FORWARDED_FOR = 106.13.123.125 -- 23:47:59.801 INFO [467]: COREGRADE is stopping... -- 23:47:59.801 DEBUG [467]: Closing database connection -- 23:47:59.801 SQL [467]: pgsql_close() -- 23:48:01.432 INFO [1409]: COREGRADE is starting... -- 23:48:01.432 INFO [1409]: Version from config: 1.0 -- 23:48:01.432 DEBUG [1409]: Connecting to database... -- 23:48:01.433 DEBUG [1409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:48:01.433 SQL [1409]: pgsql_db_connect() -- 23:48:01.437 DEBUG [1409]: Database connection successful -- 23:48:01.437 INFO [1409]: _SERVER found -- 23:48:01.437 INFO [1409]: REMOTE_ADDR = 10.0.0.15 -- 23:48:01.437 INFO [1409]: SERVER_NAME = oameye.works.coregrade.com -- 23:48:01.437 INFO [1409]: QUERY_STRING = -- 23:48:01.437 INFO [1409]: HTTP_X_FORWARDED_FOR = 106.13.123.125 -- 23:48:01.479 INFO [1409]: COREGRADE is stopping... -- 23:48:01.479 DEBUG [1409]: Closing database connection -- 23:48:01.479 SQL [1409]: pgsql_close() -- 23:48:03.210 INFO [463]: COREGRADE is starting... -- 23:48:03.211 INFO [463]: Version from config: 1.0 -- 23:48:03.211 DEBUG [463]: Connecting to database... -- 23:48:03.211 DEBUG [463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:48:03.211 SQL [463]: pgsql_db_connect() -- 23:48:03.215 DEBUG [463]: Database connection successful -- 23:48:03.215 INFO [463]: _SERVER found -- 23:48:03.215 INFO [463]: REMOTE_ADDR = 10.0.0.15 -- 23:48:03.215 INFO [463]: SERVER_NAME = oameye.works.coregrade.com -- 23:48:03.215 INFO [463]: QUERY_STRING = s=index/\think\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 -- 23:48:03.215 INFO [463]: HTTP_X_FORWARDED_FOR = 106.13.123.125 -- 23:48:03.248 INFO [463]: COREGRADE is stopping... -- 23:48:03.248 DEBUG [463]: Closing database connection -- 23:48:03.248 SQL [463]: pgsql_close() -- 23:48:07.309 INFO [464]: COREGRADE is starting... -- 23:48:07.309 INFO [464]: Version from config: 1.0 -- 23:48:07.309 DEBUG [464]: Connecting to database... -- 23:48:07.310 DEBUG [464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:48:07.310 SQL [464]: pgsql_db_connect() -- 23:48:07.314 DEBUG [464]: Database connection successful -- 23:48:07.314 INFO [464]: _SERVER found -- 23:48:07.314 INFO [464]: REMOTE_ADDR = 10.0.0.15 -- 23:48:07.314 INFO [464]: SERVER_NAME = oameye.works.coregrade.com -- 23:48:07.314 INFO [464]: QUERY_STRING = s=captcha -- 23:48:07.314 INFO [464]: HTTP_X_FORWARDED_FOR = 106.13.123.125 -- 23:48:07.346 INFO [464]: COREGRADE is stopping... -- 23:48:07.346 DEBUG [464]: Closing database connection -- 23:48:07.346 SQL [464]: pgsql_close() -- 23:48:08.766 INFO [17343]: COREGRADE is starting... -- 23:48:08.766 INFO [17343]: Version from config: 1.0 -- 23:48:08.766 DEBUG [17343]: Connecting to database... -- 23:48:08.766 DEBUG [17343]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:48:08.766 SQL [17343]: pgsql_db_connect() -- 23:48:08.770 DEBUG [17343]: Database connection successful -- 23:48:08.770 INFO [17343]: _SERVER found -- 23:48:08.770 INFO [17343]: REMOTE_ADDR = 10.0.0.15 -- 23:48:08.770 INFO [17343]: SERVER_NAME = oameye.works.coregrade.com -- 23:48:08.770 INFO [17343]: QUERY_STRING = -- 23:48:08.770 INFO [17343]: HTTP_X_FORWARDED_FOR = 106.13.123.125 -- 23:48:08.811 INFO [17343]: COREGRADE is stopping... -- 23:48:08.811 DEBUG [17343]: Closing database connection -- 23:48:08.811 SQL [17343]: pgsql_close() -- 01:23:16.648 INFO [18837]: COREGRADE is starting... -- 01:23:16.649 INFO [18837]: Version from config: 1.0 -- 01:23:16.649 DEBUG [18837]: Connecting to database... -- 01:23:16.649 DEBUG [18837]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:23:16.649 SQL [18837]: pgsql_db_connect() -- 01:23:16.657 DEBUG [18837]: Database connection successful -- 01:23:16.657 INFO [18837]: _SERVER found -- 01:23:16.657 INFO [18837]: REMOTE_ADDR = 10.0.0.15 -- 01:23:16.657 INFO [18837]: SERVER_NAME = oameye.works.coregrade.com -- 01:23:16.657 INFO [18837]: QUERY_STRING = /.well-known/acme-challenge/xZLpCQlbqvrnN33n9KvcFy2Uihb8GDkO5da-g_Ytsms -- 01:23:16.657 INFO [18837]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 01:23:16.674 INFO [18837]: COREGRADE is stopping... -- 01:23:16.674 DEBUG [18837]: Closing database connection -- 01:23:16.674 SQL [18837]: pgsql_close() -- 01:23:16.728 INFO [466]: COREGRADE is starting... -- 01:23:16.729 INFO [466]: Version from config: 1.0 -- 01:23:16.729 DEBUG [466]: Connecting to database... -- 01:23:16.729 DEBUG [466]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:23:16.729 SQL [466]: pgsql_db_connect() -- 01:23:16.734 DEBUG [466]: Database connection successful -- 01:23:16.734 INFO [466]: _SERVER found -- 01:23:16.734 INFO [466]: REMOTE_ADDR = 10.0.0.15 -- 01:23:16.734 INFO [466]: SERVER_NAME = oameye.works.coregrade.com -- 01:23:16.734 INFO [466]: QUERY_STRING = /.well-known/acme-challenge/xZLpCQlbqvrnN33n9KvcFy2Uihb8GDkO5da-g_Ytsms -- 01:23:16.734 INFO [466]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 01:23:16.753 INFO [466]: COREGRADE is stopping... -- 01:23:16.753 DEBUG [466]: Closing database connection -- 01:23:16.753 SQL [466]: pgsql_close() -- 02:21:26.794 INFO [1409]: COREGRADE is starting... -- 02:21:26.794 INFO [1409]: Version from config: 1.0 -- 02:21:26.794 DEBUG [1409]: Connecting to database... -- 02:21:26.794 DEBUG [1409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:21:26.794 SQL [1409]: pgsql_db_connect() -- 02:21:26.799 DEBUG [1409]: Database connection successful -- 02:21:26.799 INFO [1409]: _SERVER found -- 02:21:26.799 INFO [1409]: REMOTE_ADDR = 10.0.0.15 -- 02:21:26.799 INFO [1409]: SERVER_NAME = oameye.works.coregrade.com -- 02:21:26.799 INFO [1409]: QUERY_STRING = /axis2/axis2-admin/login -- 02:21:26.799 INFO [1409]: HTTP_X_FORWARDED_FOR = 203.195.229.145 -- 02:21:26.814 INFO [1409]: COREGRADE is stopping... -- 02:21:26.815 DEBUG [1409]: Closing database connection -- 02:21:26.815 SQL [1409]: pgsql_close() -- 03:17:41.247 INFO [463]: COREGRADE is starting... -- 03:17:41.248 INFO [463]: Version from config: 1.0 -- 03:17:41.248 DEBUG [463]: Connecting to database... -- 03:17:41.248 DEBUG [463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:17:41.248 SQL [463]: pgsql_db_connect() -- 03:17:41.253 DEBUG [463]: Database connection successful -- 03:17:41.253 INFO [463]: _SERVER found -- 03:17:41.253 INFO [463]: REMOTE_ADDR = 10.0.0.15 -- 03:17:41.253 INFO [463]: SERVER_NAME = oameye.works.coregrade.com -- 03:17:41.253 INFO [463]: QUERY_STRING = /home/aboutus -- 03:17:41.253 INFO [463]: HTTP_X_FORWARDED_FOR = 66.249.65.182 -- 03:17:41.291 INFO [463]: COREGRADE is stopping... -- 03:17:41.291 DEBUG [463]: Closing database connection -- 03:17:41.291 SQL [463]: pgsql_close() -- 04:10:35.802 INFO [20170]: COREGRADE is starting... -- 04:10:35.803 INFO [20170]: Version from config: 1.0 -- 04:10:35.803 DEBUG [20170]: Connecting to database... -- 04:10:35.803 DEBUG [20170]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 04:10:35.803 SQL [20170]: pgsql_db_connect() -- 04:10:35.807 DEBUG [20170]: Database connection successful -- 04:10:35.807 INFO [20170]: _SERVER found -- 04:10:35.807 INFO [20170]: REMOTE_ADDR = 10.0.0.15 -- 04:10:35.807 INFO [20170]: SERVER_NAME = oameye.works.coregrade.com -- 04:10:35.807 INFO [20170]: QUERY_STRING = -- 04:10:35.807 INFO [20170]: HTTP_X_FORWARDED_FOR = 183.136.225.46 -- 04:10:35.853 INFO [20170]: COREGRADE is stopping... -- 04:10:35.853 DEBUG [20170]: Closing database connection -- 04:10:35.853 SQL [20170]: pgsql_close() -- 05:30:54.235 INFO [465]: COREGRADE is starting... -- 05:30:54.235 INFO [465]: Version from config: 1.0 -- 05:30:54.235 DEBUG [465]: Connecting to database... -- 05:30:54.235 DEBUG [465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:30:54.235 SQL [465]: pgsql_db_connect() -- 05:30:54.240 DEBUG [465]: Database connection successful -- 05:30:54.240 INFO [465]: _SERVER found -- 05:30:54.240 INFO [465]: REMOTE_ADDR = 10.0.0.15 -- 05:30:54.240 INFO [465]: SERVER_NAME = oameye.works.coregrade.com -- 05:30:54.240 INFO [465]: QUERY_STRING = /solr/admin/info/system -- 05:30:54.240 INFO [465]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 05:30:54.255 INFO [465]: COREGRADE is stopping... -- 05:30:54.255 DEBUG [465]: Closing database connection -- 05:30:54.255 SQL [465]: pgsql_close() -- 05:38:15.070 INFO [18837]: COREGRADE is starting... -- 05:38:15.071 INFO [18837]: Version from config: 1.0 -- 05:38:15.071 DEBUG [18837]: Connecting to database... -- 05:38:15.071 DEBUG [18837]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:38:15.071 SQL [18837]: pgsql_db_connect() -- 05:38:15.075 DEBUG [18837]: Database connection successful -- 05:38:15.075 INFO [18837]: _SERVER found -- 05:38:15.075 INFO [18837]: REMOTE_ADDR = 10.0.0.15 -- 05:38:15.075 INFO [18837]: SERVER_NAME = oameye.works.coregrade.com -- 05:38:15.075 INFO [18837]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 05:38:15.075 INFO [18837]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 05:38:15.121 INFO [18837]: COREGRADE is stopping... -- 05:38:15.121 DEBUG [18837]: Closing database connection -- 05:38:15.121 SQL [18837]: pgsql_close() -- 05:38:16.171 INFO [18837]: COREGRADE is starting... -- 05:38:16.171 INFO [18837]: Version from config: 1.0 -- 05:38:16.171 DEBUG [18837]: Connecting to database... -- 05:38:16.171 DEBUG [18837]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:38:16.171 SQL [18837]: pgsql_db_connect() -- 05:38:16.175 DEBUG [18837]: Database connection successful -- 05:38:16.175 INFO [18837]: _SERVER found -- 05:38:16.175 INFO [18837]: REMOTE_ADDR = 10.0.0.15 -- 05:38:16.175 INFO [18837]: SERVER_NAME = oameye.works.coregrade.com -- 05:38:16.175 INFO [18837]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 05:38:16.175 INFO [18837]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 05:38:16.207 INFO [18837]: COREGRADE is stopping... -- 05:38:16.207 DEBUG [18837]: Closing database connection -- 05:38:16.207 SQL [18837]: pgsql_close() -- 05:53:59.257 INFO [467]: COREGRADE is starting... -- 05:53:59.258 INFO [467]: Version from config: 1.0 -- 05:53:59.258 DEBUG [467]: Connecting to database... -- 05:53:59.258 DEBUG [467]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 05:53:59.258 SQL [467]: pgsql_db_connect() -- 05:53:59.262 DEBUG [467]: Database connection successful -- 05:53:59.262 INFO [467]: _SERVER found -- 05:53:59.262 INFO [467]: REMOTE_ADDR = 10.0.0.15 -- 05:53:59.262 INFO [467]: SERVER_NAME = oameye.works.coregrade.com -- 05:53:59.262 INFO [467]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 05:53:59.262 INFO [467]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 05:53:59.298 INFO [467]: COREGRADE is stopping... -- 05:53:59.298 DEBUG [467]: Closing database connection -- 05:53:59.298 SQL [467]: pgsql_close() -- 06:55:14.260 INFO [1409]: COREGRADE is starting... -- 06:55:14.261 INFO [1409]: Version from config: 1.0 -- 06:55:14.261 DEBUG [1409]: Connecting to database... -- 06:55:14.261 DEBUG [1409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 06:55:14.261 SQL [1409]: pgsql_db_connect() -- 06:55:14.266 DEBUG [1409]: Database connection successful -- 06:55:14.266 INFO [1409]: _SERVER found -- 06:55:14.266 INFO [1409]: REMOTE_ADDR = 10.0.0.15 -- 06:55:14.266 INFO [1409]: SERVER_NAME = oameye.works.coregrade.com -- 06:55:14.266 INFO [1409]: QUERY_STRING = -- 06:55:14.266 INFO [1409]: HTTP_X_FORWARDED_FOR = 45.148.10.43 -- 06:55:14.305 INFO [1409]: COREGRADE is stopping... -- 06:55:14.305 DEBUG [1409]: Closing database connection -- 06:55:14.305 SQL [1409]: pgsql_close() -- 08:40:47.905 INFO [464]: COREGRADE is starting... -- 08:40:47.905 INFO [464]: Version from config: 1.0 -- 08:40:47.905 DEBUG [464]: Connecting to database... -- 08:40:47.905 DEBUG [464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:40:47.905 SQL [464]: pgsql_db_connect() -- 08:40:47.910 DEBUG [464]: Database connection successful -- 08:40:47.910 INFO [464]: _SERVER found -- 08:40:47.910 INFO [464]: REMOTE_ADDR = 10.0.0.15 -- 08:40:47.910 INFO [464]: SERVER_NAME = oameye.works.coregrade.com -- 08:40:47.910 INFO [464]: QUERY_STRING = /api/jsonws/invoke -- 08:40:47.910 INFO [464]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 08:40:47.926 INFO [464]: COREGRADE is stopping... -- 08:40:47.926 DEBUG [464]: Closing database connection -- 08:40:47.926 SQL [464]: pgsql_close() -- 08:52:06.827 INFO [463]: COREGRADE is starting... -- 08:52:06.827 INFO [463]: Version from config: 1.0 -- 08:52:06.827 DEBUG [463]: Connecting to database... -- 08:52:06.827 DEBUG [463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 08:52:06.827 SQL [463]: pgsql_db_connect() -- 08:52:06.832 DEBUG [463]: Database connection successful -- 08:52:06.832 INFO [463]: _SERVER found -- 08:52:06.832 INFO [463]: REMOTE_ADDR = 10.0.0.15 -- 08:52:06.832 INFO [463]: SERVER_NAME = oameye.works.coregrade.com -- 08:52:06.832 INFO [463]: QUERY_STRING = -- 08:52:06.832 INFO [463]: HTTP_X_FORWARDED_FOR = 94.231.110.241, 139.205.177.90 -- 08:52:06.867 INFO [463]: COREGRADE is stopping... -- 08:52:06.867 DEBUG [463]: Closing database connection -- 08:52:06.867 SQL [463]: pgsql_close() -- 13:50:07.867 INFO [17343]: COREGRADE is starting... -- 13:50:07.868 INFO [17343]: Version from config: 1.0 -- 13:50:07.868 DEBUG [17343]: Connecting to database... -- 13:50:07.868 DEBUG [17343]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:07.868 SQL [17343]: pgsql_db_connect() -- 13:50:07.873 DEBUG [17343]: Database connection successful -- 13:50:07.873 INFO [17343]: _SERVER found -- 13:50:07.873 INFO [17343]: REMOTE_ADDR = 10.0.0.15 -- 13:50:07.873 INFO [17343]: SERVER_NAME = oameye.works.coregrade.com -- 13:50:07.873 INFO [17343]: QUERY_STRING = /.idea/WebServers.xml -- 13:50:07.873 INFO [17343]: HTTP_X_FORWARDED_FOR = 178.62.37.90 -- 13:50:07.888 INFO [17343]: COREGRADE is stopping... -- 13:50:07.888 DEBUG [17343]: Closing database connection -- 13:50:07.888 SQL [17343]: pgsql_close() -- 13:50:08.011 INFO [17343]: COREGRADE is starting... -- 13:50:08.011 INFO [17343]: Version from config: 1.0 -- 13:50:08.011 DEBUG [17343]: Connecting to database... -- 13:50:08.011 DEBUG [17343]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:50:08.012 SQL [17343]: pgsql_db_connect() -- 13:50:08.016 DEBUG [17343]: Database connection successful -- 13:50:08.016 INFO [17343]: _SERVER found -- 13:50:08.016 INFO [17343]: REMOTE_ADDR = 10.0.0.15 -- 13:50:08.016 INFO [17343]: SERVER_NAME = oameye.works.coregrade.com -- 13:50:08.016 INFO [17343]: QUERY_STRING = /favicon.ico -- 13:50:08.016 INFO [17343]: HTTP_X_FORWARDED_FOR = 178.62.37.90 -- 13:50:08.027 INFO [17343]: COREGRADE is stopping... -- 13:50:08.027 DEBUG [17343]: Closing database connection -- 13:50:08.027 SQL [17343]: pgsql_close() -- 16:05:46.246 INFO [20170]: COREGRADE is starting... -- 16:05:46.247 INFO [20170]: Version from config: 1.0 -- 16:05:46.247 DEBUG [20170]: Connecting to database... -- 16:05:46.247 DEBUG [20170]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:05:46.247 SQL [20170]: pgsql_db_connect() -- 16:05:46.251 DEBUG [20170]: Database connection successful -- 16:05:46.251 INFO [20170]: _SERVER found -- 16:05:46.251 INFO [20170]: REMOTE_ADDR = 10.0.0.15 -- 16:05:46.251 INFO [20170]: SERVER_NAME = oameye.works.coregrade.com -- 16:05:46.251 INFO [20170]: QUERY_STRING = -- 16:05:46.251 INFO [20170]: HTTP_X_FORWARDED_FOR = 141.98.10.133 -- 16:05:46.288 INFO [20170]: COREGRADE is stopping... -- 16:05:46.288 DEBUG [20170]: Closing database connection -- 16:05:46.288 SQL [20170]: pgsql_close() -- 22:34:02.967 INFO [465]: COREGRADE is starting... -- 22:34:02.968 INFO [465]: Version from config: 1.0 -- 22:34:02.968 DEBUG [465]: Connecting to database... -- 22:34:02.968 DEBUG [465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:34:02.968 SQL [465]: pgsql_db_connect() -- 22:34:02.972 DEBUG [465]: Database connection successful -- 22:34:02.972 INFO [465]: _SERVER found -- 22:34:02.972 INFO [465]: REMOTE_ADDR = 10.0.0.15 -- 22:34:02.972 INFO [465]: SERVER_NAME = oameye.works.coregrade.com -- 22:34:02.972 INFO [465]: QUERY_STRING = -- 22:34:02.972 INFO [465]: HTTP_X_FORWARDED_FOR = 51.75.75.61 -- 22:34:03.008 INFO [465]: COREGRADE is stopping... -- 22:34:03.008 DEBUG [465]: Closing database connection -- 22:34:03.008 SQL [465]: pgsql_close() -- 01:14:49.016 INFO [18837]: COREGRADE is starting... -- 01:14:49.016 INFO [18837]: Version from config: 1.0 -- 01:14:49.016 DEBUG [18837]: Connecting to database... -- 01:14:49.016 DEBUG [18837]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:14:49.016 SQL [18837]: pgsql_db_connect() -- 01:14:49.021 DEBUG [18837]: Database connection successful -- 01:14:49.021 INFO [18837]: _SERVER found -- 01:14:49.021 INFO [18837]: REMOTE_ADDR = 10.0.0.15 -- 01:14:49.021 INFO [18837]: SERVER_NAME = oameye.works.coregrade.com -- 01:14:49.021 INFO [18837]: QUERY_STRING = /.well-known/acme-challenge/yqqX6anlFW1TksKLTaqakbFMJH5AHO_N7O3A8hwNUHo -- 01:14:49.021 INFO [18837]: HTTP_X_FORWARDED_FOR = 52.15.254.228 -- 01:14:49.035 INFO [18837]: COREGRADE is stopping... -- 01:14:49.035 DEBUG [18837]: Closing database connection -- 01:14:49.035 SQL [18837]: pgsql_close() -- 01:14:49.088 INFO [1409]: COREGRADE is starting... -- 01:14:49.089 INFO [1409]: Version from config: 1.0 -- 01:14:49.089 DEBUG [1409]: Connecting to database... -- 01:14:49.089 DEBUG [1409]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:14:49.089 SQL [1409]: pgsql_db_connect() -- 01:14:49.093 DEBUG [1409]: Database connection successful -- 01:14:49.093 INFO [1409]: _SERVER found -- 01:14:49.093 INFO [1409]: REMOTE_ADDR = 10.0.0.15 -- 01:14:49.093 INFO [1409]: SERVER_NAME = oameye.works.coregrade.com -- 01:14:49.093 INFO [1409]: QUERY_STRING = /.well-known/acme-challenge/yqqX6anlFW1TksKLTaqakbFMJH5AHO_N7O3A8hwNUHo -- 01:14:49.093 INFO [1409]: HTTP_X_FORWARDED_FOR = 66.133.109.36 -- 01:14:49.107 INFO [1409]: COREGRADE is stopping... -- 01:14:49.107 DEBUG [1409]: Closing database connection -- 01:14:49.107 SQL [1409]: pgsql_close() -- 01:14:49.175 INFO [18837]: COREGRADE is starting... -- 01:14:49.175 INFO [18837]: Version from config: 1.0 -- 01:14:49.175 DEBUG [18837]: Connecting to database... -- 01:14:49.175 DEBUG [18837]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:14:49.175 SQL [18837]: pgsql_db_connect() -- 01:14:49.180 DEBUG [18837]: Database connection successful -- 01:14:49.180 INFO [18837]: _SERVER found -- 01:14:49.180 INFO [18837]: REMOTE_ADDR = 10.0.0.15 -- 01:14:49.180 INFO [18837]: SERVER_NAME = oameye.works.coregrade.com -- 01:14:49.180 INFO [18837]: QUERY_STRING = /.well-known/acme-challenge/yqqX6anlFW1TksKLTaqakbFMJH5AHO_N7O3A8hwNUHo -- 01:14:49.180 INFO [18837]: HTTP_X_FORWARDED_FOR = 34.222.229.130 -- 01:14:49.191 INFO [18837]: COREGRADE is stopping... -- 01:14:49.191 DEBUG [18837]: Closing database connection -- 01:14:49.191 SQL [18837]: pgsql_close() -- 01:14:49.271 INFO [464]: COREGRADE is starting... -- 01:14:49.271 INFO [464]: Version from config: 1.0 -- 01:14:49.271 DEBUG [464]: Connecting to database... -- 01:14:49.271 DEBUG [464]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 01:14:49.271 SQL [464]: pgsql_db_connect() -- 01:14:49.275 DEBUG [464]: Database connection successful -- 01:14:49.275 INFO [464]: _SERVER found -- 01:14:49.275 INFO [464]: REMOTE_ADDR = 10.0.0.15 -- 01:14:49.275 INFO [464]: SERVER_NAME = oameye.works.coregrade.com -- 01:14:49.275 INFO [464]: QUERY_STRING = /.well-known/acme-challenge/yqqX6anlFW1TksKLTaqakbFMJH5AHO_N7O3A8hwNUHo -- 01:14:49.275 INFO [464]: HTTP_X_FORWARDED_FOR = 52.28.236.88 -- 01:14:49.288 INFO [464]: COREGRADE is stopping... -- 01:14:49.288 DEBUG [464]: Closing database connection -- 01:14:49.288 SQL [464]: pgsql_close() -- 02:49:58.016 INFO [463]: COREGRADE is starting... -- 02:49:58.016 INFO [463]: Version from config: 1.0 -- 02:49:58.016 DEBUG [463]: Connecting to database... -- 02:49:58.016 DEBUG [463]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 02:49:58.016 SQL [463]: pgsql_db_connect() -- 02:49:58.021 DEBUG [463]: Database connection successful -- 02:49:58.021 INFO [463]: _SERVER found -- 02:49:58.021 INFO [463]: REMOTE_ADDR = 10.0.0.15 -- 02:49:58.021 INFO [463]: SERVER_NAME = oameye.works.coregrade.com -- 02:49:58.021 INFO [463]: QUERY_STRING = /Telerik.Web.UI.WebResource.axd -- 02:49:58.021 INFO [463]: HTTP_X_FORWARDED_FOR = 193.118.53.210 -- 02:49:58.036 INFO [463]: COREGRADE is stopping... -- 02:49:58.036 DEBUG [463]: Closing database connection -- 02:49:58.036 SQL [463]: pgsql_close() -- 03:16:49.730 INFO [17343]: COREGRADE is starting... -- 03:16:49.731 INFO [17343]: Version from config: 1.0 -- 03:16:49.731 DEBUG [17343]: Connecting to database... -- 03:16:49.731 DEBUG [17343]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:16:49.731 SQL [17343]: pgsql_db_connect() -- 03:16:49.735 DEBUG [17343]: Database connection successful -- 03:16:49.735 INFO [17343]: _SERVER found -- 03:16:49.735 INFO [17343]: REMOTE_ADDR = 10.0.0.15 -- 03:16:49.735 INFO [17343]: SERVER_NAME = oameye.works.coregrade.com -- 03:16:49.735 INFO [17343]: QUERY_STRING = -- 03:16:49.735 INFO [17343]: HTTP_X_FORWARDED_FOR = 80.82.68.60 -- 03:16:49.770 INFO [17343]: COREGRADE is stopping... -- 03:16:49.770 DEBUG [17343]: Closing database connection -- 03:16:49.770 SQL [17343]: pgsql_close() -- 03:16:50.690 INFO [17343]: COREGRADE is starting... -- 03:16:50.690 INFO [17343]: Version from config: 1.0 -- 03:16:50.690 DEBUG [17343]: Connecting to database... -- 03:16:50.690 DEBUG [17343]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 03:16:50.690 SQL [17343]: pgsql_db_connect() -- 03:16:50.694 DEBUG [17343]: Database connection successful -- 03:16:50.694 INFO [17343]: _SERVER found -- 03:16:50.694 INFO [17343]: REMOTE_ADDR = 10.0.0.15 -- 03:16:50.694 INFO [17343]: SERVER_NAME = oameye.works.coregrade.com -- 03:16:50.694 INFO [17343]: QUERY_STRING = /robots.txt -- 03:16:50.694 INFO [17343]: HTTP_X_FORWARDED_FOR = 80.82.68.60 -- 03:16:50.705 INFO [17343]: COREGRADE is stopping... -- 03:16:50.705 DEBUG [17343]: Closing database connection -- 03:16:50.705 SQL [17343]: pgsql_close() -- 09:51:43.225 INFO [20170]: COREGRADE is starting... -- 09:51:43.225 INFO [20170]: Version from config: 1.0 -- 09:51:43.225 DEBUG [20170]: Connecting to database... -- 09:51:43.225 DEBUG [20170]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:51:43.225 SQL [20170]: pgsql_db_connect() -- 09:51:43.231 DEBUG [20170]: Database connection successful -- 09:51:43.231 INFO [20170]: _SERVER found -- 09:51:43.231 INFO [20170]: REMOTE_ADDR = 10.0.0.15 -- 09:51:43.231 INFO [20170]: SERVER_NAME = oameye.works.coregrade.com -- 09:51:43.231 INFO [20170]: QUERY_STRING = /robots.txt -- 09:51:43.231 INFO [20170]: HTTP_X_FORWARDED_FOR = 66.249.65.184 -- 09:51:43.247 INFO [20170]: COREGRADE is stopping... -- 09:51:43.247 DEBUG [20170]: Closing database connection -- 09:51:43.247 SQL [20170]: pgsql_close() -- 09:51:43.346 INFO [465]: COREGRADE is starting... -- 09:51:43.346 INFO [465]: Version from config: 1.0 -- 09:51:43.346 DEBUG [465]: Connecting to database... -- 09:51:43.346 DEBUG [465]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 09:51:43.346 SQL [465]: pgsql_db_connect() -- 09:51:43.350 DEBUG [465]: Database connection successful -- 09:51:43.350 INFO [465]: _SERVER found -- 09:51:43.350 INFO [465]: REMOTE_ADDR = 10.0.0.15 -- 09:51:43.350 INFO [465]: SERVER_NAME = oameye.works.coregrade.com -- 09:51:43.350 INFO [465]: QUERY_STRING = /home/terms -- 09:51:43.350 INFO [465]: HTTP_X_FORWARDED_FOR = 66.249.65.180 -- 09:51:43.388 INFO [465]: COREGRADE is stopping... -- 09:51:43.388 DEBUG [465]: Closing database connection -- 09:51:43.388 SQL [465]: pgsql_close() -- 12:53:04.553 INFO [13445]: COREGRADE is starting... -- 12:53:04.553 INFO [13445]: Version from config: 1.0 -- 12:53:04.553 DEBUG [13445]: Connecting to database... -- 12:53:04.553 DEBUG [13445]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 12:53:04.553 SQL [13445]: pgsql_db_connect() -- 12:53:04.558 DEBUG [13445]: Database connection successful -- 12:53:04.558 INFO [13445]: _SERVER found -- 12:53:04.558 INFO [13445]: REMOTE_ADDR = 10.0.0.15 -- 12:53:04.558 INFO [13445]: SERVER_NAME = oameye.works.coregrade.com -- 12:53:04.558 INFO [13445]: QUERY_STRING = -- 12:53:04.558 INFO [13445]: HTTP_X_FORWARDED_FOR = 192.35.168.64 -- 12:53:04.605 INFO [13445]: COREGRADE is stopping... -- 12:53:04.605 DEBUG [13445]: Closing database connection -- 12:53:04.605 SQL [13445]: pgsql_close() -- 13:12:21.364 INFO [23590]: COREGRADE is starting... -- 13:12:21.364 INFO [23590]: Version from config: 1.0 -- 13:12:21.364 DEBUG [23590]: Connecting to database... -- 13:12:21.364 DEBUG [23590]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:12:21.364 SQL [23590]: pgsql_db_connect() -- 13:12:21.369 DEBUG [23590]: Database connection successful -- 13:12:21.369 INFO [23590]: _SERVER found -- 13:12:21.369 INFO [23590]: REMOTE_ADDR = 10.0.0.15 -- 13:12:21.369 INFO [23590]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:12:21.369 INFO [23590]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 13:12:21.369 INFO [23590]: QUERY_STRING = -- 13:12:21.369 INFO [23590]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:12:21.413 INFO [23590]: COREGRADE is stopping... -- 13:12:21.413 DEBUG [23590]: Closing database connection -- 13:12:21.413 SQL [23590]: pgsql_close() -- 13:12:21.567 INFO [23592]: COREGRADE is starting... -- 13:12:21.567 INFO [23592]: Version from config: 1.0 -- 13:12:21.567 DEBUG [23592]: Connecting to database... -- 13:12:21.567 DEBUG [23592]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:12:21.567 SQL [23592]: pgsql_db_connect() -- 13:12:21.572 DEBUG [23592]: Database connection successful -- 13:12:21.572 INFO [23592]: _SERVER found -- 13:12:21.572 INFO [23592]: REMOTE_ADDR = 10.0.0.15 -- 13:12:21.572 INFO [23592]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:12:21.572 INFO [23592]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=av1k4pcahp55cjtl3idtcaonp2oc982j -- 13:12:21.572 INFO [23592]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 13:12:21.572 INFO [23592]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:12:21.587 INFO [23592]: COREGRADE is stopping... -- 13:12:21.587 DEBUG [23592]: Closing database connection -- 13:12:21.587 SQL [23592]: pgsql_close() -- 13:12:21.593 INFO [23589]: COREGRADE is starting... -- 13:12:21.593 INFO [23589]: Version from config: 1.0 -- 13:12:21.593 DEBUG [23589]: Connecting to database... -- 13:12:21.593 DEBUG [23589]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:12:21.593 SQL [23589]: pgsql_db_connect() -- 13:12:21.598 DEBUG [23589]: Database connection successful -- 13:12:21.598 INFO [23589]: _SERVER found -- 13:12:21.598 INFO [23589]: REMOTE_ADDR = 10.0.0.15 -- 13:12:21.598 INFO [23589]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:12:21.598 INFO [23589]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=av1k4pcahp55cjtl3idtcaonp2oc982j -- 13:12:21.598 INFO [23589]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 13:12:21.598 INFO [23589]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:12:21.614 INFO [23589]: COREGRADE is stopping... -- 13:12:21.614 DEBUG [23589]: Closing database connection -- 13:12:21.614 SQL [23589]: pgsql_close() -- 13:12:21.654 INFO [23589]: COREGRADE is starting... -- 13:12:21.655 INFO [23589]: Version from config: 1.0 -- 13:12:21.655 DEBUG [23589]: Connecting to database... -- 13:12:21.655 DEBUG [23589]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:12:21.655 SQL [23589]: pgsql_db_connect() -- 13:12:21.665 INFO [23590]: COREGRADE is starting... -- 13:12:21.665 INFO [23590]: Version from config: 1.0 -- 13:12:21.665 DEBUG [23590]: Connecting to database... -- 13:12:21.665 DEBUG [23590]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:12:21.665 SQL [23590]: pgsql_db_connect() -- 13:12:21.659 DEBUG [23589]: Database connection successful -- 13:12:21.659 INFO [23589]: _SERVER found -- 13:12:21.659 INFO [23589]: REMOTE_ADDR = 10.0.0.15 -- 13:12:21.659 INFO [23589]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:12:21.659 INFO [23589]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=av1k4pcahp55cjtl3idtcaonp2oc982j -- 13:12:21.659 INFO [23589]: QUERY_STRING = /assets/images/savvy-block.png -- 13:12:21.659 INFO [23589]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:12:21.671 INFO [23589]: COREGRADE is stopping... -- 13:12:21.671 DEBUG [23589]: Closing database connection -- 13:12:21.671 SQL [23589]: pgsql_close() -- 13:12:21.669 DEBUG [23590]: Database connection successful -- 13:12:21.669 INFO [23590]: _SERVER found -- 13:12:21.669 INFO [23590]: REMOTE_ADDR = 10.0.0.15 -- 13:12:21.669 INFO [23590]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:12:21.669 INFO [23590]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=av1k4pcahp55cjtl3idtcaonp2oc982j -- 13:12:21.669 INFO [23590]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 13:12:21.669 INFO [23590]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:12:21.681 INFO [23590]: COREGRADE is stopping... -- 13:12:21.681 DEBUG [23590]: Closing database connection -- 13:12:21.681 SQL [23590]: pgsql_close() -- 13:12:21.864 INFO [23590]: COREGRADE is starting... -- 13:12:21.864 INFO [23590]: Version from config: 1.0 -- 13:12:21.864 DEBUG [23590]: Connecting to database... -- 13:12:21.864 DEBUG [23590]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:12:21.864 SQL [23590]: pgsql_db_connect() -- 13:12:21.868 DEBUG [23590]: Database connection successful -- 13:12:21.868 INFO [23590]: _SERVER found -- 13:12:21.868 INFO [23590]: REMOTE_ADDR = 10.0.0.15 -- 13:12:21.868 INFO [23590]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 13:12:21.868 INFO [23590]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=av1k4pcahp55cjtl3idtcaonp2oc982j -- 13:12:21.868 INFO [23590]: QUERY_STRING = /favicon.ico -- 13:12:21.868 INFO [23590]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:12:21.881 INFO [23590]: COREGRADE is stopping... -- 13:12:21.881 DEBUG [23590]: Closing database connection -- 13:12:21.881 SQL [23590]: pgsql_close() -- 13:13:27.805 INFO [23592]: COREGRADE is starting... -- 13:13:27.805 INFO [23592]: Version from config: 1.0 -- 13:13:27.805 DEBUG [23592]: Connecting to database... -- 13:13:27.805 DEBUG [23592]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:13:27.805 SQL [23592]: pgsql_db_connect() -- 13:13:27.809 DEBUG [23592]: Database connection successful -- 13:13:27.809 INFO [23592]: _SERVER found -- 13:13:27.809 INFO [23592]: REMOTE_ADDR = 10.0.0.15 -- 13:13:27.809 INFO [23592]: SERVER_NAME = oameye.works.coregrade.com -- 13:13:27.809 INFO [23592]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807 -- 13:13:27.809 INFO [23592]: QUERY_STRING = -- 13:13:27.809 INFO [23592]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:13:27.850 INFO [23592]: COREGRADE is stopping... -- 13:13:27.850 DEBUG [23592]: Closing database connection -- 13:13:27.850 SQL [23592]: pgsql_close() -- 13:13:28.311 INFO [23589]: COREGRADE is starting... -- 13:13:28.311 INFO [23589]: Version from config: 1.0 -- 13:13:28.311 DEBUG [23589]: Connecting to database... -- 13:13:28.311 DEBUG [23589]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:13:28.311 SQL [23589]: pgsql_db_connect() -- 13:13:28.315 DEBUG [23589]: Database connection successful -- 13:13:28.315 INFO [23589]: _SERVER found -- 13:13:28.315 INFO [23589]: REMOTE_ADDR = 10.0.0.15 -- 13:13:28.315 INFO [23589]: SERVER_NAME = oameye.works.coregrade.com -- 13:13:28.315 INFO [23589]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; ci_session=l1jobkmlevu6fqu23i6g6vfe7akr3ffe; _gid=GA1.2.1023825563.1592327609; _gat_gtag_UA_54829827_2=1 -- 13:13:28.315 INFO [23589]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:13:28.315 INFO [23589]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:13:28.327 INFO [23589]: COREGRADE is stopping... -- 13:13:28.327 DEBUG [23589]: Closing database connection -- 13:13:28.327 SQL [23589]: pgsql_close() -- 13:13:55.917 INFO [23593]: COREGRADE is starting... -- 13:13:55.917 INFO [23593]: Version from config: 1.0 -- 13:13:55.917 DEBUG [23593]: Connecting to database... -- 13:13:55.917 DEBUG [23593]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:13:55.917 SQL [23593]: pgsql_db_connect() -- 13:13:55.921 DEBUG [23593]: Database connection successful -- 13:13:55.921 INFO [23593]: _SERVER found -- 13:13:55.921 INFO [23593]: REMOTE_ADDR = 10.0.0.15 -- 13:13:55.921 INFO [23593]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:13:55.921 INFO [23593]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1023825563.1592327609; _gat_gtag_UA_54829827_2=1 -- 13:13:55.921 INFO [23593]: QUERY_STRING = -- 13:13:55.921 INFO [23593]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:13:55.967 INFO [23593]: COREGRADE is stopping... -- 13:13:55.967 DEBUG [23593]: Closing database connection -- 13:13:55.967 SQL [23593]: pgsql_close() -- 13:13:56.274 INFO [23591]: COREGRADE is starting... -- 13:13:56.274 INFO [23591]: Version from config: 1.0 -- 13:13:56.274 DEBUG [23591]: Connecting to database... -- 13:13:56.274 DEBUG [23591]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:13:56.274 SQL [23591]: pgsql_db_connect() -- 13:13:56.284 INFO [23593]: COREGRADE is starting... -- 13:13:56.284 INFO [23593]: Version from config: 1.0 -- 13:13:56.284 DEBUG [23593]: Connecting to database... -- 13:13:56.284 DEBUG [23593]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 13:13:56.284 SQL [23593]: pgsql_db_connect() -- 13:13:56.279 DEBUG [23591]: Database connection successful -- 13:13:56.279 INFO [23591]: _SERVER found -- 13:13:56.279 INFO [23591]: REMOTE_ADDR = 10.0.0.15 -- 13:13:56.279 INFO [23591]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:13:56.279 INFO [23591]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1023825563.1592327609; _gat_gtag_UA_54829827_2=1; ci_session=v5m4890ek3ai4q1lqini7j0g865qbnm7 -- 13:13:56.279 INFO [23591]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 13:13:56.279 INFO [23591]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:13:56.295 INFO [23591]: COREGRADE is stopping... -- 13:13:56.295 DEBUG [23591]: Closing database connection -- 13:13:56.295 SQL [23591]: pgsql_close() -- 13:13:56.289 DEBUG [23593]: Database connection successful -- 13:13:56.289 INFO [23593]: _SERVER found -- 13:13:56.289 INFO [23593]: REMOTE_ADDR = 10.0.0.15 -- 13:13:56.289 INFO [23593]: SERVER_NAME = tokslaw.works.coregrade.com -- 13:13:56.289 INFO [23593]: HTTP_COOKIE = _ga=GA1.2.1031021822.1578308807; _gid=GA1.2.1023825563.1592327609; _gat_gtag_UA_54829827_2=1; ci_session=v5m4890ek3ai4q1lqini7j0g865qbnm7 -- 13:13:56.289 INFO [23593]: QUERY_STRING = /assets/img/footer_1.jpg -- 13:13:56.289 INFO [23593]: HTTP_X_FORWARDED_FOR = 24.30.27.39 -- 13:13:56.302 INFO [23593]: COREGRADE is stopping... -- 13:13:56.302 DEBUG [23593]: Closing database connection -- 13:13:56.302 SQL [23593]: pgsql_close() -- 16:10:30.284 INFO [10956]: COREGRADE is starting... -- 16:10:30.284 INFO [10956]: Version from config: 1.0 -- 16:10:30.284 DEBUG [10956]: Connecting to database... -- 16:10:30.284 DEBUG [10956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:10:30.284 SQL [10956]: pgsql_db_connect() -- 16:10:30.289 DEBUG [10956]: Database connection successful -- 16:10:30.289 INFO [10956]: _SERVER found -- 16:10:30.289 INFO [10956]: REMOTE_ADDR = 10.0.0.15 -- 16:10:30.289 INFO [10956]: SERVER_NAME = oameye.works.coregrade.com -- 16:10:30.289 INFO [10956]: QUERY_STRING = -- 16:10:30.289 INFO [10956]: HTTP_X_FORWARDED_FOR = 138.99.216.147 -- 16:10:30.337 INFO [10956]: COREGRADE is stopping... -- 16:10:30.337 DEBUG [10956]: Closing database connection -- 16:10:30.337 SQL [10956]: pgsql_close() -- 16:10:30.592 INFO [10956]: COREGRADE is starting... -- 16:10:30.592 INFO [10956]: Version from config: 1.0 -- 16:10:30.592 DEBUG [10956]: Connecting to database... -- 16:10:30.592 DEBUG [10956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 16:10:30.592 SQL [10956]: pgsql_db_connect() -- 16:10:30.596 DEBUG [10956]: Database connection successful -- 16:10:30.596 INFO [10956]: _SERVER found -- 16:10:30.596 INFO [10956]: REMOTE_ADDR = 10.0.0.15 -- 16:10:30.596 INFO [10956]: SERVER_NAME = oameye.works.coregrade.com -- 16:10:30.596 INFO [10956]: QUERY_STRING = /robots.txt -- 16:10:30.596 INFO [10956]: HTTP_X_FORWARDED_FOR = 138.99.216.147 -- 16:10:30.608 INFO [10956]: COREGRADE is stopping... -- 16:10:30.608 DEBUG [10956]: Closing database connection -- 16:10:30.608 SQL [10956]: pgsql_close() -- 20:34:21.212 INFO [10958]: COREGRADE is starting... -- 20:34:21.213 INFO [10958]: Version from config: 1.0 -- 20:34:21.213 DEBUG [10958]: Connecting to database... -- 20:34:21.213 DEBUG [10958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 20:34:21.213 SQL [10958]: pgsql_db_connect() -- 20:34:21.218 DEBUG [10958]: Database connection successful -- 20:34:21.218 INFO [10958]: _SERVER found -- 20:34:21.218 INFO [10958]: REMOTE_ADDR = 10.0.0.15 -- 20:34:21.218 INFO [10958]: SERVER_NAME = oameye.works.coregrade.com -- 20:34:21.218 INFO [10958]: QUERY_STRING = -- 20:34:21.218 INFO [10958]: HTTP_X_FORWARDED_FOR = 128.14.133.58 -- 20:34:21.265 INFO [10958]: COREGRADE is stopping... -- 20:34:21.265 DEBUG [10958]: Closing database connection -- 20:34:21.265 SQL [10958]: pgsql_close() -- 22:16:43.756 INFO [10959]: COREGRADE is starting... -- 22:16:43.756 INFO [10959]: Version from config: 1.0 -- 22:16:43.756 DEBUG [10959]: Connecting to database... -- 22:16:43.756 DEBUG [10959]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:16:43.756 SQL [10959]: pgsql_db_connect() -- 22:16:43.761 DEBUG [10959]: Database connection successful -- 22:16:43.761 INFO [10959]: _SERVER found -- 22:16:43.761 INFO [10959]: REMOTE_ADDR = 10.0.0.15 -- 22:16:43.761 INFO [10959]: SERVER_NAME = oameye.works.coregrade.com -- 22:16:43.761 INFO [10959]: QUERY_STRING = /solr/admin/info/system -- 22:16:43.761 INFO [10959]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 22:16:43.778 INFO [10959]: COREGRADE is stopping... -- 22:16:43.778 DEBUG [10959]: Closing database connection -- 22:16:43.778 SQL [10959]: pgsql_close() -- 22:25:02.571 INFO [10960]: COREGRADE is starting... -- 22:25:02.572 INFO [10960]: Version from config: 1.0 -- 22:25:02.572 DEBUG [10960]: Connecting to database... -- 22:25:02.572 DEBUG [10960]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:25:02.572 SQL [10960]: pgsql_db_connect() -- 22:25:02.576 DEBUG [10960]: Database connection successful -- 22:25:02.576 INFO [10960]: _SERVER found -- 22:25:02.576 INFO [10960]: REMOTE_ADDR = 10.0.0.15 -- 22:25:02.576 INFO [10960]: SERVER_NAME = oameye.works.coregrade.com -- 22:25:02.576 INFO [10960]: QUERY_STRING = a=fetch&content=die(@md5(HelloThinkCMF)) -- 22:25:02.576 INFO [10960]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 22:25:02.624 INFO [10960]: COREGRADE is stopping... -- 22:25:02.624 DEBUG [10960]: Closing database connection -- 22:25:02.624 SQL [10960]: pgsql_close() -- 22:25:02.000 INFO [14279]: COREGRADE is starting... -- 22:25:03.000 INFO [14279]: Version from config: 1.0 -- 22:25:03.000 DEBUG [14279]: Connecting to database... -- 22:25:03.000 DEBUG [14279]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:25:03.000 SQL [14279]: pgsql_db_connect() -- 22:25:03.005 DEBUG [14279]: Database connection successful -- 22:25:03.005 INFO [14279]: _SERVER found -- 22:25:03.005 INFO [14279]: REMOTE_ADDR = 10.0.0.15 -- 22:25:03.005 INFO [14279]: SERVER_NAME = oameye.works.coregrade.com -- 22:25:03.005 INFO [14279]: QUERY_STRING = XDEBUG_SESSION_START=phpstorm -- 22:25:03.005 INFO [14279]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 22:25:03.051 INFO [14279]: COREGRADE is stopping... -- 22:25:03.051 DEBUG [14279]: Closing database connection -- 22:25:03.051 SQL [14279]: pgsql_close() -- 22:43:01.958 INFO [10956]: COREGRADE is starting... -- 22:43:01.959 INFO [10956]: Version from config: 1.0 -- 22:43:01.959 DEBUG [10956]: Connecting to database... -- 22:43:01.959 DEBUG [10956]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:43:01.959 SQL [10956]: pgsql_db_connect() -- 22:43:01.963 DEBUG [10956]: Database connection successful -- 22:43:01.963 INFO [10956]: _SERVER found -- 22:43:01.963 INFO [10956]: REMOTE_ADDR = 10.0.0.15 -- 22:43:01.963 INFO [10956]: SERVER_NAME = oameye.works.coregrade.com -- 22:43:01.963 INFO [10956]: QUERY_STRING = s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP -- 22:43:01.963 INFO [10956]: HTTP_X_FORWARDED_FOR = 195.54.160.135 -- 22:43:02.004 INFO [10956]: COREGRADE is stopping... -- 22:43:02.004 DEBUG [10956]: Closing database connection -- 22:43:02.004 SQL [10956]: pgsql_close() -- 22:50:35.142 INFO [10957]: COREGRADE is starting... -- 22:50:35.142 INFO [10957]: Version from config: 1.0 -- 22:50:35.142 DEBUG [10957]: Connecting to database... -- 22:50:35.142 DEBUG [10957]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 22:50:35.142 SQL [10957]: pgsql_db_connect() -- 22:50:35.147 DEBUG [10957]: Database connection successful -- 22:50:35.147 INFO [10957]: _SERVER found -- 22:50:35.147 INFO [10957]: REMOTE_ADDR = 10.0.0.15 -- 22:50:35.147 INFO [10957]: SERVER_NAME = oameye.works.coregrade.com -- 22:50:35.147 INFO [10957]: QUERY_STRING = -- 22:50:35.147 INFO [10957]: HTTP_X_FORWARDED_FOR = 176.117.172.40 -- 22:50:35.192 INFO [10957]: COREGRADE is stopping... -- 22:50:35.192 DEBUG [10957]: Closing database connection -- 22:50:35.192 SQL [10957]: pgsql_close() -- 23:04:27.522 INFO [10958]: COREGRADE is starting... -- 23:04:27.522 INFO [10958]: Version from config: 1.0 -- 23:04:27.522 DEBUG [10958]: Connecting to database... -- 23:04:27.522 DEBUG [10958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:27.522 SQL [10958]: pgsql_db_connect() -- 23:04:27.527 DEBUG [10958]: Database connection successful -- 23:04:27.527 INFO [10958]: _SERVER found -- 23:04:27.527 INFO [10958]: REMOTE_ADDR = 10.0.0.15 -- 23:04:27.527 INFO [10958]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:04:27.527 INFO [10958]: QUERY_STRING = -- 23:04:27.527 INFO [10958]: HTTP_X_FORWARDED_FOR = 176.117.172.40 -- 23:04:27.566 INFO [10958]: COREGRADE is stopping... -- 23:04:27.566 DEBUG [10958]: Closing database connection -- 23:04:27.566 SQL [10958]: pgsql_close() -- 23:04:28.397 INFO [19220]: COREGRADE is starting... -- 23:04:28.397 INFO [19220]: Version from config: 1.0 -- 23:04:28.397 DEBUG [19220]: Connecting to database... -- 23:04:28.397 DEBUG [19220]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:28.397 SQL [19220]: pgsql_db_connect() -- 23:04:28.401 DEBUG [19220]: Database connection successful -- 23:04:28.401 INFO [19220]: _SERVER found -- 23:04:28.401 INFO [19220]: REMOTE_ADDR = 10.0.0.15 -- 23:04:28.401 INFO [19220]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:04:28.401 INFO [19220]: HTTP_COOKIE = ci_session=fn340rb0fgkj6psgi1ccnqs1esqful7c -- 23:04:28.401 INFO [19220]: QUERY_STRING = /assets/js/plugins/loaders/pace.min.js -- 23:04:28.401 INFO [19220]: HTTP_X_FORWARDED_FOR = 176.117.172.40 -- 23:04:28.417 INFO [19220]: COREGRADE is stopping... -- 23:04:28.418 DEBUG [19220]: Closing database connection -- 23:04:28.418 SQL [19220]: pgsql_close() -- 23:04:28.595 INFO [19220]: COREGRADE is starting... -- 23:04:28.595 INFO [19220]: Version from config: 1.0 -- 23:04:28.595 DEBUG [19220]: Connecting to database... -- 23:04:28.595 DEBUG [19220]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:28.595 SQL [19220]: pgsql_db_connect() -- 23:04:28.599 DEBUG [19220]: Database connection successful -- 23:04:28.599 INFO [19220]: _SERVER found -- 23:04:28.599 INFO [19220]: REMOTE_ADDR = 10.0.0.15 -- 23:04:28.599 INFO [19220]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:04:28.599 INFO [19220]: HTTP_COOKIE = ci_session=fn340rb0fgkj6psgi1ccnqs1esqful7c -- 23:04:28.599 INFO [19220]: QUERY_STRING = /assets/js/plugins/loaders/blockui.min.js -- 23:04:28.599 INFO [19220]: HTTP_X_FORWARDED_FOR = 176.117.172.40 -- 23:04:28.611 INFO [19220]: COREGRADE is stopping... -- 23:04:28.611 DEBUG [19220]: Closing database connection -- 23:04:28.611 SQL [19220]: pgsql_close() -- 23:04:28.765 INFO [19220]: COREGRADE is starting... -- 23:04:28.765 INFO [19220]: Version from config: 1.0 -- 23:04:28.765 DEBUG [19220]: Connecting to database... -- 23:04:28.765 DEBUG [19220]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:28.765 SQL [19220]: pgsql_db_connect() -- 23:04:28.769 DEBUG [19220]: Database connection successful -- 23:04:28.769 INFO [19220]: _SERVER found -- 23:04:28.769 INFO [19220]: REMOTE_ADDR = 10.0.0.15 -- 23:04:28.769 INFO [19220]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:04:28.769 INFO [19220]: HTTP_COOKIE = ci_session=fn340rb0fgkj6psgi1ccnqs1esqful7c -- 23:04:28.769 INFO [19220]: QUERY_STRING = /assets/images/savvy-block.png -- 23:04:28.769 INFO [19220]: HTTP_X_FORWARDED_FOR = 176.117.172.40 -- 23:04:28.781 INFO [19220]: COREGRADE is stopping... -- 23:04:28.781 DEBUG [19220]: Closing database connection -- 23:04:28.781 SQL [19220]: pgsql_close() -- 23:04:29.456 INFO [10958]: COREGRADE is starting... -- 23:04:29.456 INFO [10958]: Version from config: 1.0 -- 23:04:29.456 DEBUG [10958]: Connecting to database... -- 23:04:29.456 DEBUG [10958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:29.456 SQL [10958]: pgsql_db_connect() -- 23:04:29.460 DEBUG [10958]: Database connection successful -- 23:04:29.460 INFO [10958]: _SERVER found -- 23:04:29.460 INFO [10958]: REMOTE_ADDR = 10.0.0.15 -- 23:04:29.460 INFO [10958]: SERVER_NAME = oameye.wwwadmin.coregrade.com -- 23:04:29.460 INFO [10958]: HTTP_COOKIE = ci_session=fn340rb0fgkj6psgi1ccnqs1esqful7c -- 23:04:29.460 INFO [10958]: QUERY_STRING = /favicon.ico -- 23:04:29.460 INFO [10958]: HTTP_X_FORWARDED_FOR = 176.117.172.40 -- 23:04:29.472 INFO [10958]: COREGRADE is stopping... -- 23:04:29.472 DEBUG [10958]: Closing database connection -- 23:04:29.472 SQL [10958]: pgsql_close() -- 23:04:29.829 INFO [14279]: COREGRADE is starting... -- 23:04:29.829 INFO [14279]: Version from config: 1.0 -- 23:04:29.829 DEBUG [14279]: Connecting to database... -- 23:04:29.829 DEBUG [14279]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:29.829 SQL [14279]: pgsql_db_connect() -- 23:04:29.833 DEBUG [14279]: Database connection successful -- 23:04:29.833 INFO [14279]: _SERVER found -- 23:04:29.833 INFO [14279]: REMOTE_ADDR = 10.0.0.15 -- 23:04:29.833 INFO [14279]: SERVER_NAME = oameye.works.coregrade.com -- 23:04:29.833 INFO [14279]: QUERY_STRING = -- 23:04:29.833 INFO [14279]: HTTP_X_FORWARDED_FOR = 176.117.172.40 -- 23:04:29.869 INFO [14279]: COREGRADE is stopping... -- 23:04:29.870 DEBUG [14279]: Closing database connection -- 23:04:29.870 SQL [14279]: pgsql_close() -- 23:04:32.825 INFO [14279]: COREGRADE is starting... -- 23:04:32.825 INFO [14279]: Version from config: 1.0 -- 23:04:32.825 DEBUG [14279]: Connecting to database... -- 23:04:32.825 DEBUG [14279]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:32.825 SQL [14279]: pgsql_db_connect() -- 23:04:32.829 DEBUG [14279]: Database connection successful -- 23:04:32.829 INFO [14279]: _SERVER found -- 23:04:32.829 INFO [14279]: REMOTE_ADDR = 10.0.0.15 -- 23:04:32.829 INFO [14279]: SERVER_NAME = oameye.works.coregrade.com -- 23:04:32.829 INFO [14279]: HTTP_COOKIE = ci_session=nn2copi8g8iem73vputeb51nuj6emg7c -- 23:04:32.829 INFO [14279]: QUERY_STRING = /assets/img/footer_1.jpg -- 23:04:32.829 INFO [14279]: HTTP_X_FORWARDED_FOR = 176.117.172.40 -- 23:04:32.841 INFO [14279]: COREGRADE is stopping... -- 23:04:32.841 DEBUG [14279]: Closing database connection -- 23:04:32.841 SQL [14279]: pgsql_close() -- 23:04:47.361 INFO [19220]: COREGRADE is starting... -- 23:04:47.361 INFO [19220]: Version from config: 1.0 -- 23:04:47.361 DEBUG [19220]: Connecting to database... -- 23:04:47.361 DEBUG [19220]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:47.361 SQL [19220]: pgsql_db_connect() -- 23:04:47.365 DEBUG [19220]: Database connection successful -- 23:04:47.365 INFO [19220]: _SERVER found -- 23:04:47.365 INFO [19220]: REMOTE_ADDR = 10.0.0.15 -- 23:04:47.365 INFO [19220]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:04:47.365 INFO [19220]: QUERY_STRING = -- 23:04:47.365 INFO [19220]: HTTP_X_FORWARDED_FOR = 176.117.172.40 -- 23:04:47.405 INFO [19220]: COREGRADE is stopping... -- 23:04:47.405 DEBUG [19220]: Closing database connection -- 23:04:47.405 SQL [19220]: pgsql_close() -- 23:04:50.148 INFO [10958]: COREGRADE is starting... -- 23:04:50.149 INFO [10958]: Version from config: 1.0 -- 23:04:50.149 DEBUG [10958]: Connecting to database... -- 23:04:50.149 DEBUG [10958]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:50.149 SQL [10958]: pgsql_db_connect() -- 23:04:50.153 DEBUG [10958]: Database connection successful -- 23:04:50.153 INFO [10958]: _SERVER found -- 23:04:50.153 INFO [10958]: REMOTE_ADDR = 10.0.0.15 -- 23:04:50.153 INFO [10958]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:04:50.153 INFO [10958]: HTTP_COOKIE = ci_session=veq3796d18m8ls9mrk29rnfd8uqnt1qk -- 23:04:50.153 INFO [10958]: QUERY_STRING = /assets/img/subscribe_bg.jpg -- 23:04:50.153 INFO [10958]: HTTP_X_FORWARDED_FOR = 176.117.172.40 -- 23:04:50.165 INFO [10958]: COREGRADE is stopping... -- 23:04:50.165 DEBUG [10958]: Closing database connection -- 23:04:50.165 SQL [10958]: pgsql_close() -- 23:04:50.296 INFO [10960]: COREGRADE is starting... -- 23:04:50.296 INFO [10960]: Version from config: 1.0 -- 23:04:50.296 DEBUG [10960]: Connecting to database... -- 23:04:50.296 DEBUG [10960]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:50.296 SQL [10960]: pgsql_db_connect() -- 23:04:50.300 DEBUG [10960]: Database connection successful -- 23:04:50.300 INFO [10960]: _SERVER found -- 23:04:50.300 INFO [10960]: REMOTE_ADDR = 10.0.0.15 -- 23:04:50.300 INFO [10960]: SERVER_NAME = tokslaw.works.coregrade.com -- 23:04:50.300 INFO [10960]: HTTP_COOKIE = ci_session=veq3796d18m8ls9mrk29rnfd8uqnt1qk -- 23:04:50.300 INFO [10960]: QUERY_STRING = /assets/img/footer_1.jpg -- 23:04:50.300 INFO [10960]: HTTP_X_FORWARDED_FOR = 176.117.172.40 -- 23:04:50.314 INFO [10960]: COREGRADE is stopping... -- 23:04:50.314 DEBUG [10960]: Closing database connection -- 23:04:50.314 SQL [10960]: pgsql_close() -- 23:04:59.184 INFO [19870]: COREGRADE is starting... -- 23:04:59.184 INFO [19870]: Version from config: 1.0 -- 23:04:59.184 DEBUG [19870]: Connecting to database... -- 23:04:59.184 DEBUG [19870]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:04:59.184 SQL [19870]: pgsql_db_connect() -- 23:04:59.188 DEBUG [19870]: Database connection successful -- 23:04:59.188 INFO [19870]: _SERVER found -- 23:04:59.188 INFO [19870]: REMOTE_ADDR = 10.0.0.15 -- 23:04:59.188 INFO [19870]: SERVER_NAME = oameye.works.coregrade.com -- 23:04:59.188 INFO [19870]: QUERY_STRING = -- 23:04:59.188 INFO [19870]: HTTP_X_FORWARDED_FOR = 176.117.172.40 -- 23:04:59.232 INFO [19870]: COREGRADE is stopping... -- 23:04:59.232 DEBUG [19870]: Closing database connection -- 23:04:59.232 SQL [19870]: pgsql_close() -- 23:05:00.585 INFO [19863]: COREGRADE is starting... -- 23:05:00.585 INFO [19863]: Version from config: 1.0 -- 23:05:00.585 DEBUG [19863]: Connecting to database... -- 23:05:00.585 DEBUG [19863]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:05:00.585 SQL [19863]: pgsql_db_connect() -- 23:05:00.589 DEBUG [19863]: Database connection successful -- 23:05:00.589 INFO [19863]: _SERVER found -- 23:05:00.589 INFO [19863]: REMOTE_ADDR = 10.0.0.15 -- 23:05:00.589 INFO [19863]: SERVER_NAME = oameye.works.coregrade.com -- 23:05:00.589 INFO [19863]: QUERY_STRING = -- 23:05:00.589 INFO [19863]: HTTP_X_FORWARDED_FOR = 176.117.172.40 -- 23:05:00.634 INFO [19863]: COREGRADE is stopping... -- 23:05:00.634 DEBUG [19863]: Closing database connection -- 23:05:00.634 SQL [19863]: pgsql_close() -- 23:05:02.256 INFO [19872]: COREGRADE is starting... -- 23:05:02.257 INFO [19872]: Version from config: 1.0 -- 23:05:02.257 DEBUG [19872]: Connecting to database... -- 23:05:02.257 DEBUG [19872]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:05:02.257 SQL [19872]: pgsql_db_connect() -- 23:05:02.261 DEBUG [19872]: Database connection successful -- 23:05:02.261 INFO [19872]: _SERVER found -- 23:05:02.261 INFO [19872]: REMOTE_ADDR = 10.0.0.15 -- 23:05:02.261 INFO [19872]: SERVER_NAME = oameye.works.coregrade.com -- 23:05:02.261 INFO [19872]: HTTP_COOKIE = ci_session=fdtp0mos47kc4pq54fm4sjlb87nu4oke -- 23:05:02.261 INFO [19872]: QUERY_STRING = /assets/img/footer_1.jpg -- 23:05:02.261 INFO [19872]: HTTP_X_FORWARDED_FOR = 176.117.172.40 -- 23:05:02.276 INFO [19872]: COREGRADE is stopping... -- 23:05:02.276 DEBUG [19872]: Closing database connection -- 23:05:02.276 SQL [19872]: pgsql_close() -- 23:05:04.520 INFO [19863]: COREGRADE is starting... -- 23:05:04.520 INFO [19863]: Version from config: 1.0 -- 23:05:04.520 DEBUG [19863]: Connecting to database... -- 23:05:04.520 DEBUG [19863]: host=127.0.0.1, name=coregrade_test, user=coregrade, pass=***hidden***, port=5432 -- 23:05:04.520 SQL [19863]: pgsql_db_connect() -- 23:05:04.525 DEBUG [19863]: Database connection successful -- 23:05:04.525 INFO [19863]: _SERVER found -- 23:05:04.525 INFO [19863]: REMOTE_ADDR = 10.0.0.15 -- 23:05:04.525 INFO [19863]: SERVER_NAME = oameye.works.coregrade.com -- 23:05:04.525 INFO [19863]: HTTP_COOKIE = ci_session=joielbak3ppvsec5ajpo4fgrb4pmo87p -- 23:05:04.525 INFO [19863]: QUERY_STRING = /assets/img/footer_1.jpg -- 23:05:04.525 INFO [19863]: HTTP_X_FORWARDED_FOR = 176.117.172.40 -- 23:05:04.537 INFO [19863]: COREGRADE is stopping... -- 23:05:04.537 DEBUG [19863]: Closing database connection -- 23:05:04.537 SQL [19863]: pgsql_close() diff --git a/coregrade/src/.gitignore b/coregrade/src/.gitignore index e69de29..8f6281f 100644 --- a/coregrade/src/.gitignore +++ b/coregrade/src/.gitignore @@ -0,0 +1,83 @@ +# Prerequisites +*.d + +# Object files +*.o +*.ko +*.obj +*.elf + +# Linker output +*.ilk +*.map +*.exp + +# Precompiled Headers +*.gch +*.pch + +# Libraries +*.lib +*.a +*.la +*.lo + +# Shared objects (inc. Windows DLLs) +*.dll +*.so +*.so.* +*.dylib + +# Executables +*.exe +*.out +*.app +*.i*86 +*.x86_64 +*.hex + +# Debug files +*.dSYM/ +*.su +*.idb +*.pdb + +# Kernel Module Compile Results +*.mod* +*.cmd +.tmp_versions/ +modules.order +Module.symvers +Mkfile.old +dkms.conf + +# Log files +*.log + +# Misc +.svn +.libs +*.bak +modules +mermsemr/src/Makefile +mermsemr/src/Makefile.objects +mermsemr/src/config.status +mermsemr/src/include/php_mermsemr_config.h +mermsemr/src/include/php_mermsemr_log.h +mermsemr/src/include/php_tmpl_prefix.h +mermsemr/src/mailsend/mailsend +mermsemr/src/autom4te.cache +mermsemr/src/confdefs.h +mermsemr/src/config.* +mermsemr/src/configure* +mermsemr/src/core/mermsemr_api.cc +mermsemr/src/include/php_mermsemr_api.h +mermsemr/src/include/php_mermsemr_api_ns.h +mermsemr/src/libtool + +*.swm +*.swn +*.swb +*.swo +*.swp + diff --git a/coregrade/src/Makefile b/coregrade/src/Makefile index 07ac722..780f6f0 100644 --- a/coregrade/src/Makefile +++ b/coregrade/src/Makefile @@ -4,17 +4,17 @@ top_srcdir = /home/oameye/coregrade/coregrade/src top_builddir = /home/oameye/coregrade/coregrade/src EGREP = /usr/bin/grep -E SED = /usr/bin/sed -CONFIGURE_COMMAND = './configure' '--enable-coregrade_api' -CONFIGURE_OPTIONS = '--enable-coregrade_api' +CONFIGURE_COMMAND = './configure' +CONFIGURE_OPTIONS = SHLIB_SUFFIX_NAME = so SHLIB_DL_SUFFIX_NAME = so ZEND_EXT_TYPE = zend_extension RE2C = exit 0; AWK = gawk -COREGRADE_API_SHARED_LIBADD = -Wl,-rpath,/usr/lib64 -L/usr/lib64 -lpq -lstdc++ -lcurl -lconfig++ -lgsoapssl++ -lssl -lz -shared_objects_coregrade_api = core/XmlElements.lo core/XmlParser.lo core/cfg.lo core/cgi.lo core/clog.lo core/coregrade.lo core/coregrade_api.lo core/cvariables.lo core/exceptions.lo core/hmac_sha2.lo core/input.lo core/list.lo core/pgsql.lo core/pgsql_wrapper.lo core/safestring.lo core/sha2.lo core/sha512.lo core/smtp.lo core/timer.lo core/util.lo core/vars.lo shared_tool/account.lo shared_tool/coregrade_api_main.lo shared_tool/email.lo shared_tool/envC.lo shared_tool/groups.lo shared_tool/interswitch.lo shared_tool/interswitchBasicHttpBinding_USCOREQuickTellerServiceProxy.lo shared_tool/interswitchC.lo shared_tool/interswitch_sendmoney.lo shared_tool/namespaces.lo shared_tool/paylid.lo shared_tool/paylidC.lo shared_tool/paylidpaylidwsdlBindingProxy.lo shared_tool/storeface.lo shared_tool/topups.lo -PHP_PECL_EXTENSION = coregrade_api -PHP_MODULES = $(phplibdir)/coregrade_api.la +COREGRADE_API_OAMEYE_SHARED_LIBADD = -Wl,-rpath,/usr/lib64 -L/usr/lib64 -lpq -lstdc++ -lcurl -lconfig++ -ljson-c -lssl -lz -lpcrecpp -lgcc_s +shared_objects_coregrade_api_oameye = core/XmlElements.lo core/XmlParser.lo core/cfg.lo core/cgi.lo core/clog.lo core/coregrade.lo core/coregrade_api.lo core/cvariables.lo core/exceptions.lo core/hmac_sha2.lo core/input.lo core/list.lo core/pgsql.lo core/pgsql_wrapper.lo core/safestring.lo core/sha2.lo core/sha512.lo core/smtp.lo core/timer.lo core/util.lo core/vars.lo shared_tool/account.lo shared_tool/coregrade_api_main.lo shared_tool/email.lo shared_tool/groups.lo shared_tool/namespaces.lo +PHP_PECL_EXTENSION = coregrade_api_oameye +PHP_MODULES = $(phplibdir)/coregrade_api_oameye.la PHP_ZEND_EX = all_targets = $(PHP_MODULES) $(PHP_ZEND_EX) install_targets = install-modules install-headers @@ -38,7 +38,7 @@ EXTRA_LDFLAGS = EXTRA_LIBS = INCLUDES = -I/usr/include/php -I/usr/include/php/main -I/usr/include/php/TSRM -I/usr/include/php/Zend -I/usr/include/php/ext -I/usr/include/php/ext/date/lib -I/usr/include/pgsql LFLAGS = -LDFLAGS = -Wl,-rpath,/home/oameye/coregrade/coregrade/src/libconfig-1.3.1/.libs/ -L/home/oameye/coregrade/coregrade/src/libconfig-1.3.1/.libs/ +LDFLAGS = SHARED_LIBTOOL = LIBTOOL = $(SHELL) $(top_builddir)/libtool SHELL = /bin/sh @@ -50,12 +50,12 @@ INSTALL_DATA = $(INSTALL) -m 644 DEFS = -DPHP_ATOM_INC -I$(top_builddir)/include -I$(top_builddir)/main -I$(top_srcdir) COMMON_FLAGS = $(DEFS) $(INCLUDES) $(EXTRA_INCLUDES) $(CPPFLAGS) $(PHP_FRAMEWORKPATH) -all: $(all_targets) +all: $(all_targets) @echo @echo "Build complete." @echo "Don't forget to run 'make test'." @echo - + build-modules: $(PHP_MODULES) $(PHP_ZEND_EX) build-binaries: $(PHP_BINARIES) @@ -131,7 +131,7 @@ PHP_TEST_SHARED_EXTENSIONS = ` \ PHP_DEPRECATED_DIRECTIVES_REGEX = '^(magic_quotes_(gpc|runtime|sybase)?|(zend_)?extension(_debug)?(_ts)?)[\t\ ]*=' test: all - -@if test ! -z "$(PHP_EXECUTABLE)" && test -x "$(PHP_EXECUTABLE)"; then \ + @if test ! -z "$(PHP_EXECUTABLE)" && test -x "$(PHP_EXECUTABLE)"; then \ INI_FILE=`$(PHP_EXECUTABLE) -d 'display_errors=stderr' -r 'echo php_ini_loaded_file();' 2> /dev/null`; \ if test "$$INI_FILE"; then \ $(EGREP) -h -v $(PHP_DEPRECATED_DIRECTIVES_REGEX) "$$INI_FILE" > $(top_builddir)/tmp-php.ini; \ @@ -147,7 +147,9 @@ test: all TEST_PHP_SRCDIR=$(top_srcdir) \ CC="$(CC)" \ $(PHP_EXECUTABLE) -n -c $(top_builddir)/tmp-php.ini $(PHP_TEST_SETTINGS) $(top_srcdir)/run-tests.php -n -c $(top_builddir)/tmp-php.ini -d extension_dir=$(top_builddir)/modules/ $(PHP_TEST_SHARED_EXTENSIONS) $(TESTS); \ + TEST_RESULT_EXIT_CODE=$$?; \ rm $(top_builddir)/tmp-php.ini; \ + exit $$TEST_RESULT_EXIT_CODE; \ else \ echo "ERROR: Cannot run tests without CLI sapi."; \ fi @@ -155,92 +157,94 @@ test: all clean: find . -name \*.gcno -o -name \*.gcda | xargs rm -f find . -name \*.lo -o -name \*.o | xargs rm -f - find . -name \*.la -o -name \*.a | xargs rm -f + find . -name \*.la -o -name \*.a | xargs rm -f find . -name \*.so | xargs rm -f find . -name .libs -a -type d|xargs rm -rf - rm -f libphp$(PHP_MAJOR_VERSION).la $(SAPI_CLI_PATH) $(OVERALL_TARGET) modules/* libs/* + rm -f libphp$(PHP_MAJOR_VERSION).la $(SAPI_CLI_PATH) $(SAPI_CGI_PATH) $(SAPI_MILTER_PATH) $(SAPI_LITESPEED_PATH) $(SAPI_FPM_PATH) $(OVERALL_TARGET) modules/* libs/* distclean: clean - rm -f Makefile config.cache config.log config.status Makefile.objects Makefile.fragments libtool main/php_config.h stamp-h sapi/apache/libphp$(PHP_MAJOR_VERSION).module buildmk.stamp + rm -f Makefile config.cache config.log config.status Makefile.objects Makefile.fragments libtool main/php_config.h main/internal_functions_cli.c main/internal_functions.c stamp-h buildmk.stamp Zend/zend_dtrace_gen.h Zend/zend_dtrace_gen.h.bak Zend/zend_config.h TSRM/tsrm_config.h + rm -f php7.spec main/build-defs.h scripts/phpize + rm -f ext/date/lib/timelib_config.h ext/mbstring/oniguruma/config.h ext/mbstring/libmbfl/config.h ext/oci8/oci8_dtrace_gen.h ext/oci8/oci8_dtrace_gen.h.bak + rm -f scripts/man1/phpize.1 scripts/php-config scripts/man1/php-config.1 sapi/cli/php.1 sapi/cgi/php-cgi.1 sapi/phpdbg/phpdbg.1 ext/phar/phar.1 ext/phar/phar.phar.1 + rm -f sapi/fpm/php-fpm.conf sapi/fpm/init.d.php-fpm sapi/fpm/php-fpm.service sapi/fpm/php-fpm.8 sapi/fpm/status.html + rm -f ext/iconv/php_have_bsd_iconv.h ext/iconv/php_have_glibc_iconv.h ext/iconv/php_have_ibm_iconv.h ext/iconv/php_have_iconv.h ext/iconv/php_have_libiconv.h ext/iconv/php_iconv_aliased_libiconv.h ext/iconv/php_iconv_supports_errno.h ext/iconv/php_php_iconv_h_path.h ext/iconv/php_php_iconv_impl.h + rm -f ext/phar/phar.phar ext/phar/phar.php + if test "$(srcdir)" != "$(builddir)"; then \ + rm -f ext/phar/phar/phar.inc; \ + fi $(EGREP) define'.*include/php' $(top_srcdir)/configure | $(SED) 's/.*>//'|xargs rm -f -.PHONY: all clean install distclean test +prof-gen: + CCACHE_DISABLE=1 $(MAKE) PROF_FLAGS=-fprofile-generate all + +prof-clean: + find . -name \*.lo -o -name \*.o | xargs rm -f + find . -name \*.la -o -name \*.a | xargs rm -f + find . -name \*.so | xargs rm -f + rm -f libphp$(PHP_MAJOR_VERSION).la $(SAPI_CLI_PATH) $(SAPI_CGI_PATH) $(SAPI_MILTER_PATH) $(SAPI_LITESPEED_PATH) $(SAPI_FPM_PATH) $(OVERALL_TARGET) modules/* libs/* + +prof-use: + CCACHE_DISABLE=1 $(MAKE) PROF_FLAGS=-fprofile-use all + + +.PHONY: all clean install distclean test prof-gen prof-clean prof-use .NOEXPORT: core/XmlElements.lo: /home/oameye/coregrade/coregrade/src/core/XmlElements.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/XmlElements.cc -o core/XmlElements.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/XmlElements.cc -o core/XmlElements.lo core/XmlParser.lo: /home/oameye/coregrade/coregrade/src/core/XmlParser.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/XmlParser.cc -o core/XmlParser.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/XmlParser.cc -o core/XmlParser.lo core/cfg.lo: /home/oameye/coregrade/coregrade/src/core/cfg.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/cfg.cc -o core/cfg.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/cfg.cc -o core/cfg.lo core/cgi.lo: /home/oameye/coregrade/coregrade/src/core/cgi.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/cgi.cc -o core/cgi.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/cgi.cc -o core/cgi.lo core/clog.lo: /home/oameye/coregrade/coregrade/src/core/clog.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/clog.cc -o core/clog.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/clog.cc -o core/clog.lo core/coregrade.lo: /home/oameye/coregrade/coregrade/src/core/coregrade.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/coregrade.cc -o core/coregrade.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/coregrade.cc -o core/coregrade.lo core/coregrade_api.lo: /home/oameye/coregrade/coregrade/src/core/coregrade_api.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/coregrade_api.cc -o core/coregrade_api.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/coregrade_api.cc -o core/coregrade_api.lo core/cvariables.lo: /home/oameye/coregrade/coregrade/src/core/cvariables.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/cvariables.cc -o core/cvariables.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/cvariables.cc -o core/cvariables.lo core/exceptions.lo: /home/oameye/coregrade/coregrade/src/core/exceptions.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/exceptions.cc -o core/exceptions.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/exceptions.cc -o core/exceptions.lo core/hmac_sha2.lo: /home/oameye/coregrade/coregrade/src/core/hmac_sha2.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/hmac_sha2.cc -o core/hmac_sha2.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/hmac_sha2.cc -o core/hmac_sha2.lo core/input.lo: /home/oameye/coregrade/coregrade/src/core/input.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/input.cc -o core/input.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/input.cc -o core/input.lo core/list.lo: /home/oameye/coregrade/coregrade/src/core/list.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/list.cc -o core/list.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/list.cc -o core/list.lo core/pgsql.lo: /home/oameye/coregrade/coregrade/src/core/pgsql.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/pgsql.cc -o core/pgsql.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/pgsql.cc -o core/pgsql.lo core/pgsql_wrapper.lo: /home/oameye/coregrade/coregrade/src/core/pgsql_wrapper.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/pgsql_wrapper.cc -o core/pgsql_wrapper.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/pgsql_wrapper.cc -o core/pgsql_wrapper.lo core/safestring.lo: /home/oameye/coregrade/coregrade/src/core/safestring.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/safestring.cc -o core/safestring.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/safestring.cc -o core/safestring.lo core/sha2.lo: /home/oameye/coregrade/coregrade/src/core/sha2.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/sha2.cc -o core/sha2.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/sha2.cc -o core/sha2.lo core/sha512.lo: /home/oameye/coregrade/coregrade/src/core/sha512.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/sha512.cc -o core/sha512.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/sha512.cc -o core/sha512.lo core/smtp.lo: /home/oameye/coregrade/coregrade/src/core/smtp.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/smtp.cc -o core/smtp.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/smtp.cc -o core/smtp.lo core/timer.lo: /home/oameye/coregrade/coregrade/src/core/timer.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/timer.cc -o core/timer.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/timer.cc -o core/timer.lo core/util.lo: /home/oameye/coregrade/coregrade/src/core/util.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/util.cc -o core/util.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/util.cc -o core/util.lo core/vars.lo: /home/oameye/coregrade/coregrade/src/core/vars.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/vars.cc -o core/vars.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/vars.cc -o core/vars.lo shared_tool/account.lo: /home/oameye/coregrade/coregrade/src/shared_tool/account.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/account.cc -o shared_tool/account.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/account.cc -o shared_tool/account.lo shared_tool/coregrade_api_main.lo: /home/oameye/coregrade/coregrade/src/shared_tool/coregrade_api_main.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/coregrade_api_main.cc -o shared_tool/coregrade_api_main.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/coregrade_api_main.cc -o shared_tool/coregrade_api_main.lo shared_tool/email.lo: /home/oameye/coregrade/coregrade/src/shared_tool/email.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/email.cc -o shared_tool/email.lo -shared_tool/envC.lo: /home/oameye/coregrade/coregrade/src/shared_tool/envC.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/envC.cc -o shared_tool/envC.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/email.cc -o shared_tool/email.lo shared_tool/groups.lo: /home/oameye/coregrade/coregrade/src/shared_tool/groups.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/groups.cc -o shared_tool/groups.lo -shared_tool/interswitch.lo: /home/oameye/coregrade/coregrade/src/shared_tool/interswitch.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/interswitch.cc -o shared_tool/interswitch.lo -shared_tool/interswitchBasicHttpBinding_USCOREQuickTellerServiceProxy.lo: /home/oameye/coregrade/coregrade/src/shared_tool/interswitchBasicHttpBinding_USCOREQuickTellerServiceProxy.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/interswitchBasicHttpBinding_USCOREQuickTellerServiceProxy.cc -o shared_tool/interswitchBasicHttpBinding_USCOREQuickTellerServiceProxy.lo -shared_tool/interswitchC.lo: /home/oameye/coregrade/coregrade/src/shared_tool/interswitchC.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/interswitchC.cc -o shared_tool/interswitchC.lo -shared_tool/interswitch_sendmoney.lo: /home/oameye/coregrade/coregrade/src/shared_tool/interswitch_sendmoney.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/interswitch_sendmoney.cc -o shared_tool/interswitch_sendmoney.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/groups.cc -o shared_tool/groups.lo shared_tool/namespaces.lo: /home/oameye/coregrade/coregrade/src/shared_tool/namespaces.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/namespaces.cc -o shared_tool/namespaces.lo -shared_tool/paylid.lo: /home/oameye/coregrade/coregrade/src/shared_tool/paylid.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/paylid.cc -o shared_tool/paylid.lo -shared_tool/paylidC.lo: /home/oameye/coregrade/coregrade/src/shared_tool/paylidC.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/paylidC.cc -o shared_tool/paylidC.lo -shared_tool/paylidpaylidwsdlBindingProxy.lo: /home/oameye/coregrade/coregrade/src/shared_tool/paylidpaylidwsdlBindingProxy.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/paylidpaylidwsdlBindingProxy.cc -o shared_tool/paylidpaylidwsdlBindingProxy.lo -shared_tool/storeface.lo: /home/oameye/coregrade/coregrade/src/shared_tool/storeface.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/storeface.cc -o shared_tool/storeface.lo -shared_tool/topups.lo: /home/oameye/coregrade/coregrade/src/shared_tool/topups.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/topups.cc -o shared_tool/topups.lo -$(phplibdir)/coregrade_api.la: ./coregrade_api.la - $(LIBTOOL) --mode=install cp ./coregrade_api.la $(phplibdir) + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/namespaces.cc -o shared_tool/namespaces.lo +$(phplibdir)/coregrade_api_oameye.la: ./coregrade_api_oameye.la + $(LIBTOOL) --mode=install cp ./coregrade_api_oameye.la $(phplibdir) -./coregrade_api.la: $(shared_objects_coregrade_api) $(COREGRADE_API_SHARED_DEPENDENCIES) - $(LIBTOOL) --mode=link $(CC) $(COMMON_FLAGS) $(CFLAGS_CLEAN) $(EXTRA_CFLAGS) $(LDFLAGS) -o $@ -export-dynamic -avoid-version -prefer-pic -module -rpath $(phplibdir) $(EXTRA_LDFLAGS) $(shared_objects_coregrade_api) $(COREGRADE_API_SHARED_LIBADD) +./coregrade_api_oameye.la: $(shared_objects_coregrade_api_oameye) $(COREGRADE_API_OAMEYE_SHARED_DEPENDENCIES) + $(LIBTOOL) --mode=link $(CC) $(COMMON_FLAGS) $(CFLAGS_CLEAN) $(EXTRA_CFLAGS) $(LDFLAGS) -o $@ -export-dynamic -avoid-version -prefer-pic -module -rpath $(phplibdir) $(EXTRA_LDFLAGS) $(shared_objects_coregrade_api_oameye) $(COREGRADE_API_OAMEYE_SHARED_LIBADD) diff --git a/coregrade/src/Makefile.global b/coregrade/src/Makefile.global index b30c318..5728060 100644 --- a/coregrade/src/Makefile.global +++ b/coregrade/src/Makefile.global @@ -5,12 +5,12 @@ INSTALL_DATA = $(INSTALL) -m 644 DEFS = -DPHP_ATOM_INC -I$(top_builddir)/include -I$(top_builddir)/main -I$(top_srcdir) COMMON_FLAGS = $(DEFS) $(INCLUDES) $(EXTRA_INCLUDES) $(CPPFLAGS) $(PHP_FRAMEWORKPATH) -all: $(all_targets) +all: $(all_targets) @echo @echo "Build complete." @echo "Don't forget to run 'make test'." @echo - + build-modules: $(PHP_MODULES) $(PHP_ZEND_EX) build-binaries: $(PHP_BINARIES) @@ -86,7 +86,7 @@ PHP_TEST_SHARED_EXTENSIONS = ` \ PHP_DEPRECATED_DIRECTIVES_REGEX = '^(magic_quotes_(gpc|runtime|sybase)?|(zend_)?extension(_debug)?(_ts)?)[\t\ ]*=' test: all - -@if test ! -z "$(PHP_EXECUTABLE)" && test -x "$(PHP_EXECUTABLE)"; then \ + @if test ! -z "$(PHP_EXECUTABLE)" && test -x "$(PHP_EXECUTABLE)"; then \ INI_FILE=`$(PHP_EXECUTABLE) -d 'display_errors=stderr' -r 'echo php_ini_loaded_file();' 2> /dev/null`; \ if test "$$INI_FILE"; then \ $(EGREP) -h -v $(PHP_DEPRECATED_DIRECTIVES_REGEX) "$$INI_FILE" > $(top_builddir)/tmp-php.ini; \ @@ -102,7 +102,9 @@ test: all TEST_PHP_SRCDIR=$(top_srcdir) \ CC="$(CC)" \ $(PHP_EXECUTABLE) -n -c $(top_builddir)/tmp-php.ini $(PHP_TEST_SETTINGS) $(top_srcdir)/run-tests.php -n -c $(top_builddir)/tmp-php.ini -d extension_dir=$(top_builddir)/modules/ $(PHP_TEST_SHARED_EXTENSIONS) $(TESTS); \ + TEST_RESULT_EXIT_CODE=$$?; \ rm $(top_builddir)/tmp-php.ini; \ + exit $$TEST_RESULT_EXIT_CODE; \ else \ echo "ERROR: Cannot run tests without CLI sapi."; \ fi @@ -110,14 +112,36 @@ test: all clean: find . -name \*.gcno -o -name \*.gcda | xargs rm -f find . -name \*.lo -o -name \*.o | xargs rm -f - find . -name \*.la -o -name \*.a | xargs rm -f + find . -name \*.la -o -name \*.a | xargs rm -f find . -name \*.so | xargs rm -f find . -name .libs -a -type d|xargs rm -rf - rm -f libphp$(PHP_MAJOR_VERSION).la $(SAPI_CLI_PATH) $(OVERALL_TARGET) modules/* libs/* + rm -f libphp$(PHP_MAJOR_VERSION).la $(SAPI_CLI_PATH) $(SAPI_CGI_PATH) $(SAPI_MILTER_PATH) $(SAPI_LITESPEED_PATH) $(SAPI_FPM_PATH) $(OVERALL_TARGET) modules/* libs/* distclean: clean - rm -f Makefile config.cache config.log config.status Makefile.objects Makefile.fragments libtool main/php_config.h stamp-h sapi/apache/libphp$(PHP_MAJOR_VERSION).module buildmk.stamp + rm -f Makefile config.cache config.log config.status Makefile.objects Makefile.fragments libtool main/php_config.h main/internal_functions_cli.c main/internal_functions.c stamp-h buildmk.stamp Zend/zend_dtrace_gen.h Zend/zend_dtrace_gen.h.bak Zend/zend_config.h TSRM/tsrm_config.h + rm -f php7.spec main/build-defs.h scripts/phpize + rm -f ext/date/lib/timelib_config.h ext/mbstring/oniguruma/config.h ext/mbstring/libmbfl/config.h ext/oci8/oci8_dtrace_gen.h ext/oci8/oci8_dtrace_gen.h.bak + rm -f scripts/man1/phpize.1 scripts/php-config scripts/man1/php-config.1 sapi/cli/php.1 sapi/cgi/php-cgi.1 sapi/phpdbg/phpdbg.1 ext/phar/phar.1 ext/phar/phar.phar.1 + rm -f sapi/fpm/php-fpm.conf sapi/fpm/init.d.php-fpm sapi/fpm/php-fpm.service sapi/fpm/php-fpm.8 sapi/fpm/status.html + rm -f ext/iconv/php_have_bsd_iconv.h ext/iconv/php_have_glibc_iconv.h ext/iconv/php_have_ibm_iconv.h ext/iconv/php_have_iconv.h ext/iconv/php_have_libiconv.h ext/iconv/php_iconv_aliased_libiconv.h ext/iconv/php_iconv_supports_errno.h ext/iconv/php_php_iconv_h_path.h ext/iconv/php_php_iconv_impl.h + rm -f ext/phar/phar.phar ext/phar/phar.php + if test "$(srcdir)" != "$(builddir)"; then \ + rm -f ext/phar/phar/phar.inc; \ + fi $(EGREP) define'.*include/php' $(top_srcdir)/configure | $(SED) 's/.*>//'|xargs rm -f -.PHONY: all clean install distclean test +prof-gen: + CCACHE_DISABLE=1 $(MAKE) PROF_FLAGS=-fprofile-generate all + +prof-clean: + find . -name \*.lo -o -name \*.o | xargs rm -f + find . -name \*.la -o -name \*.a | xargs rm -f + find . -name \*.so | xargs rm -f + rm -f libphp$(PHP_MAJOR_VERSION).la $(SAPI_CLI_PATH) $(SAPI_CGI_PATH) $(SAPI_MILTER_PATH) $(SAPI_LITESPEED_PATH) $(SAPI_FPM_PATH) $(OVERALL_TARGET) modules/* libs/* + +prof-use: + CCACHE_DISABLE=1 $(MAKE) PROF_FLAGS=-fprofile-use all + + +.PHONY: all clean install distclean test prof-gen prof-clean prof-use .NOEXPORT: diff --git a/coregrade/src/Makefile.objects b/coregrade/src/Makefile.objects index bb33822..776e83a 100644 --- a/coregrade/src/Makefile.objects +++ b/coregrade/src/Makefile.objects @@ -1,78 +1,58 @@ core/XmlElements.lo: /home/oameye/coregrade/coregrade/src/core/XmlElements.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/XmlElements.cc -o core/XmlElements.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/XmlElements.cc -o core/XmlElements.lo core/XmlParser.lo: /home/oameye/coregrade/coregrade/src/core/XmlParser.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/XmlParser.cc -o core/XmlParser.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/XmlParser.cc -o core/XmlParser.lo core/cfg.lo: /home/oameye/coregrade/coregrade/src/core/cfg.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/cfg.cc -o core/cfg.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/cfg.cc -o core/cfg.lo core/cgi.lo: /home/oameye/coregrade/coregrade/src/core/cgi.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/cgi.cc -o core/cgi.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/cgi.cc -o core/cgi.lo core/clog.lo: /home/oameye/coregrade/coregrade/src/core/clog.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/clog.cc -o core/clog.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/clog.cc -o core/clog.lo core/coregrade.lo: /home/oameye/coregrade/coregrade/src/core/coregrade.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/coregrade.cc -o core/coregrade.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/coregrade.cc -o core/coregrade.lo core/coregrade_api.lo: /home/oameye/coregrade/coregrade/src/core/coregrade_api.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/coregrade_api.cc -o core/coregrade_api.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/coregrade_api.cc -o core/coregrade_api.lo core/cvariables.lo: /home/oameye/coregrade/coregrade/src/core/cvariables.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/cvariables.cc -o core/cvariables.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/cvariables.cc -o core/cvariables.lo core/exceptions.lo: /home/oameye/coregrade/coregrade/src/core/exceptions.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/exceptions.cc -o core/exceptions.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/exceptions.cc -o core/exceptions.lo core/hmac_sha2.lo: /home/oameye/coregrade/coregrade/src/core/hmac_sha2.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/hmac_sha2.cc -o core/hmac_sha2.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/hmac_sha2.cc -o core/hmac_sha2.lo core/input.lo: /home/oameye/coregrade/coregrade/src/core/input.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/input.cc -o core/input.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/input.cc -o core/input.lo core/list.lo: /home/oameye/coregrade/coregrade/src/core/list.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/list.cc -o core/list.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/list.cc -o core/list.lo core/pgsql.lo: /home/oameye/coregrade/coregrade/src/core/pgsql.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/pgsql.cc -o core/pgsql.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/pgsql.cc -o core/pgsql.lo core/pgsql_wrapper.lo: /home/oameye/coregrade/coregrade/src/core/pgsql_wrapper.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/pgsql_wrapper.cc -o core/pgsql_wrapper.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/pgsql_wrapper.cc -o core/pgsql_wrapper.lo core/safestring.lo: /home/oameye/coregrade/coregrade/src/core/safestring.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/safestring.cc -o core/safestring.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/safestring.cc -o core/safestring.lo core/sha2.lo: /home/oameye/coregrade/coregrade/src/core/sha2.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/sha2.cc -o core/sha2.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/sha2.cc -o core/sha2.lo core/sha512.lo: /home/oameye/coregrade/coregrade/src/core/sha512.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/sha512.cc -o core/sha512.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/sha512.cc -o core/sha512.lo core/smtp.lo: /home/oameye/coregrade/coregrade/src/core/smtp.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/smtp.cc -o core/smtp.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/smtp.cc -o core/smtp.lo core/timer.lo: /home/oameye/coregrade/coregrade/src/core/timer.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/timer.cc -o core/timer.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/timer.cc -o core/timer.lo core/util.lo: /home/oameye/coregrade/coregrade/src/core/util.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/util.cc -o core/util.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/util.cc -o core/util.lo core/vars.lo: /home/oameye/coregrade/coregrade/src/core/vars.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/vars.cc -o core/vars.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/core/vars.cc -o core/vars.lo shared_tool/account.lo: /home/oameye/coregrade/coregrade/src/shared_tool/account.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/account.cc -o shared_tool/account.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/account.cc -o shared_tool/account.lo shared_tool/coregrade_api_main.lo: /home/oameye/coregrade/coregrade/src/shared_tool/coregrade_api_main.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/coregrade_api_main.cc -o shared_tool/coregrade_api_main.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/coregrade_api_main.cc -o shared_tool/coregrade_api_main.lo shared_tool/email.lo: /home/oameye/coregrade/coregrade/src/shared_tool/email.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/email.cc -o shared_tool/email.lo -shared_tool/envC.lo: /home/oameye/coregrade/coregrade/src/shared_tool/envC.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/envC.cc -o shared_tool/envC.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/email.cc -o shared_tool/email.lo shared_tool/groups.lo: /home/oameye/coregrade/coregrade/src/shared_tool/groups.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/groups.cc -o shared_tool/groups.lo -shared_tool/interswitch.lo: /home/oameye/coregrade/coregrade/src/shared_tool/interswitch.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/interswitch.cc -o shared_tool/interswitch.lo -shared_tool/interswitchBasicHttpBinding_USCOREQuickTellerServiceProxy.lo: /home/oameye/coregrade/coregrade/src/shared_tool/interswitchBasicHttpBinding_USCOREQuickTellerServiceProxy.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/interswitchBasicHttpBinding_USCOREQuickTellerServiceProxy.cc -o shared_tool/interswitchBasicHttpBinding_USCOREQuickTellerServiceProxy.lo -shared_tool/interswitchC.lo: /home/oameye/coregrade/coregrade/src/shared_tool/interswitchC.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/interswitchC.cc -o shared_tool/interswitchC.lo -shared_tool/interswitch_sendmoney.lo: /home/oameye/coregrade/coregrade/src/shared_tool/interswitch_sendmoney.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/interswitch_sendmoney.cc -o shared_tool/interswitch_sendmoney.lo + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/groups.cc -o shared_tool/groups.lo shared_tool/namespaces.lo: /home/oameye/coregrade/coregrade/src/shared_tool/namespaces.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/namespaces.cc -o shared_tool/namespaces.lo -shared_tool/paylid.lo: /home/oameye/coregrade/coregrade/src/shared_tool/paylid.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/paylid.cc -o shared_tool/paylid.lo -shared_tool/paylidC.lo: /home/oameye/coregrade/coregrade/src/shared_tool/paylidC.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/paylidC.cc -o shared_tool/paylidC.lo -shared_tool/paylidpaylidwsdlBindingProxy.lo: /home/oameye/coregrade/coregrade/src/shared_tool/paylidpaylidwsdlBindingProxy.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/paylidpaylidwsdlBindingProxy.cc -o shared_tool/paylidpaylidwsdlBindingProxy.lo -shared_tool/storeface.lo: /home/oameye/coregrade/coregrade/src/shared_tool/storeface.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/storeface.cc -o shared_tool/storeface.lo -shared_tool/topups.lo: /home/oameye/coregrade/coregrade/src/shared_tool/topups.cc - $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.3.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/topups.cc -o shared_tool/topups.lo -$(phplibdir)/coregrade_api.la: ./coregrade_api.la - $(LIBTOOL) --mode=install cp ./coregrade_api.la $(phplibdir) + $(LIBTOOL) --mode=compile $(CXX) -I/home/oameye/coregrade/coregrade/src/libconfig-1.0.1 -I. -I/home/oameye/coregrade/coregrade/src $(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -c /home/oameye/coregrade/coregrade/src/shared_tool/namespaces.cc -o shared_tool/namespaces.lo +$(phplibdir)/coregrade_api_oameye.la: ./coregrade_api_oameye.la + $(LIBTOOL) --mode=install cp ./coregrade_api_oameye.la $(phplibdir) -./coregrade_api.la: $(shared_objects_coregrade_api) $(COREGRADE_API_SHARED_DEPENDENCIES) - $(LIBTOOL) --mode=link $(CC) $(COMMON_FLAGS) $(CFLAGS_CLEAN) $(EXTRA_CFLAGS) $(LDFLAGS) -o $@ -export-dynamic -avoid-version -prefer-pic -module -rpath $(phplibdir) $(EXTRA_LDFLAGS) $(shared_objects_coregrade_api) $(COREGRADE_API_SHARED_LIBADD) +./coregrade_api_oameye.la: $(shared_objects_coregrade_api_oameye) $(COREGRADE_API_OAMEYE_SHARED_DEPENDENCIES) + $(LIBTOOL) --mode=link $(CC) $(COMMON_FLAGS) $(CFLAGS_CLEAN) $(EXTRA_CFLAGS) $(LDFLAGS) -o $@ -export-dynamic -avoid-version -prefer-pic -module -rpath $(phplibdir) $(EXTRA_LDFLAGS) $(shared_objects_coregrade_api_oameye) $(COREGRADE_API_OAMEYE_SHARED_LIBADD) diff --git a/coregrade/src/acinclude.m4 b/coregrade/src/acinclude.m4 index ed7d1ea..3f3cbd3 100644 --- a/coregrade/src/acinclude.m4 +++ b/coregrade/src/acinclude.m4 @@ -12,7 +12,7 @@ dnl dnl PHP_HELP_SEPARATOR(title) dnl dnl Adds separator title into the configure --help display. -dnl +dnl AC_DEFUN([PHP_HELP_SEPARATOR],[ AC_ARG_ENABLE([],[ $1 @@ -66,10 +66,10 @@ AC_DEFUN([PHP_EXPAND_PATH],[ $2=$1 else changequote({,}) - ep_dir="`echo $1|$SED 's%/*[^/][^/]*/*$%%'`" + ep_dir=`echo $1|$SED 's%/*[^/][^/]*/*$%%'` changequote([,]) - ep_realdir="`(cd \"$ep_dir\" && pwd)`" - $2="$ep_realdir/`basename \"$1\"`" + ep_realdir=`(cd "$ep_dir" && pwd)` + $2="$ep_realdir"/`basename "$1"` fi ]) @@ -148,7 +148,7 @@ $EGREP $pattern'.*include/php' $srcdir/configure|$SED 's/.*>//'|xargs touch 2>/d dnl dnl PHP_GEN_GLOBAL_MAKEFILE -dnl +dnl dnl Generates the global makefile. dnl AC_DEFUN([PHP_GEN_GLOBAL_MAKEFILE],[ @@ -183,10 +183,10 @@ AC_DEFUN([PHP_ADD_MAKEFILE_FRAGMENT],[ dnl dnl PHP_ADD_SOURCES(source-path, sources [, special-flags [, type]]) dnl -dnl Adds sources which are located relative to source-path to the -dnl array of type type. Sources are processed with optional +dnl Adds sources which are located relative to source-path to the +dnl array of type type. Sources are processed with optional dnl special-flags which are passed to the compiler. Sources -dnl can be either written in C or C++ (filenames shall end in .c +dnl can be either written in C or C++ (filenames shall end in .c dnl or .cpp, respectively). dnl dnl Note: If source-path begins with a "/", the "/" is removed and @@ -227,7 +227,7 @@ dnl name of the array target-var directly, as well as whether dnl shared objects will be built from the sources. dnl dnl Should not be used directly. -dnl +dnl AC_DEFUN([PHP_ADD_SOURCES_X],[ dnl relative to source- or build-directory? dnl ac_srcdir/ac_bdir include trailing slash @@ -236,20 +236,20 @@ dnl ac_srcdir/ac_bdir include trailing slash /*[)] ac_srcdir=`echo "$1"|cut -c 2-`"/"; ac_bdir=$ac_srcdir; ac_inc="-I$ac_bdir -I$abs_srcdir/$ac_bdir" ;; *[)] ac_srcdir="$abs_srcdir/$1/"; ac_bdir="$1/"; ac_inc="-I$ac_bdir -I$ac_srcdir" ;; esac - + dnl how to build .. shared or static? ifelse($5,yes,_PHP_ASSIGN_BUILD_VARS(shared),_PHP_ASSIGN_BUILD_VARS(php)) dnl iterate over the sources old_IFS=[$]IFS for ac_src in $2; do - + dnl remove the suffix IFS=. set $ac_src ac_obj=[$]1 IFS=$old_IFS - + dnl append to the array which has been dynamically chosen at m4 time $4="[$]$4 [$]ac_bdir[$]ac_obj.lo" @@ -364,7 +364,7 @@ AC_DEFUN([PHP_LIBGCC_LIBPATH],[ ]) dnl ------------------------------------------------------------------------- -dnl Macros to modify LIBS, INCLUDES, etc. variables +dnl Macros to modify LIBS, INCLUDES, etc. variables dnl ------------------------------------------------------------------------- dnl @@ -486,7 +486,7 @@ dnl cc-specific dnl dnl PHP_ADD_INCLUDE(path [,before]) dnl -dnl add an include path. +dnl add an include path. dnl if before is 1, add in the beginning of INCLUDES. dnl AC_DEFUN([PHP_ADD_INCLUDE],[ @@ -774,7 +774,7 @@ AC_DEFUN([PHP_BUILD_SHARED],[ PHP_BUILD_PROGRAM OVERALL_TARGET=libphp[]$PHP_MAJOR_VERSION[.la] php_sapi_module=shared - + php_c_pre=$shared_c_pre php_c_meta=$shared_c_meta php_c_post=$shared_c_post @@ -836,19 +836,11 @@ dnl from object_var in build-dir. dnl AC_DEFUN([PHP_SHARED_MODULE],[ install_modules="install-modules" + suffix=la case $host_alias in *aix*[)] - suffix=so - link_cmd='$(LIBTOOL) --mode=link ifelse($4,,[$(CC)],[$(CXX)]) $(COMMON_FLAGS) $(CFLAGS_CLEAN) $(EXTRA_CFLAGS) $(LDFLAGS) -Wl,-G -o '$3'/$1.la -export-dynamic -avoid-version -prefer-pic -module -rpath $(phplibdir) $(EXTRA_LDFLAGS) $($2) $(translit($1,a-z_-,A-Z__)_SHARED_LIBADD) && mv -f '$3'/.libs/$1.so '$3'/$1.so' - ;; - *netware*[)] - suffix=nlm - link_cmd='$(LIBTOOL) --mode=link ifelse($4,,[$(CC)],[$(CXX)]) $(COMMON_FLAGS) $(CFLAGS_CLEAN) $(EXTRA_CFLAGS) $(LDFLAGS) -o [$]@ -shared -export-dynamic -avoid-version -prefer-pic -module -rpath $(phplibdir) $(EXTRA_LDFLAGS) $($2) ifelse($1, php5lib, , -L$(top_builddir)/netware -lphp5lib) $(translit(ifelse($1, php5lib, $1, m4_substr($1, 3)),a-z_-,A-Z__)_SHARED_LIBADD)' - ;; - *[)] - suffix=la - link_cmd='$(LIBTOOL) --mode=link ifelse($4,,[$(CC)],[$(CXX)]) $(COMMON_FLAGS) $(CFLAGS_CLEAN) $(EXTRA_CFLAGS) $(LDFLAGS) -o [$]@ -export-dynamic -avoid-version -prefer-pic -module -rpath $(phplibdir) $(EXTRA_LDFLAGS) $($2) $(translit($1,a-z_-,A-Z__)_SHARED_LIBADD)' + additional_flags="-Wl,-G" ;; esac @@ -863,7 +855,7 @@ AC_DEFUN([PHP_SHARED_MODULE],[ \$(LIBTOOL) --mode=install cp $3/$1.$suffix \$(phplibdir) $3/$1.$suffix: \$($2) \$(translit($1,a-z_-,A-Z__)_SHARED_DEPENDENCIES) - $link_cmd + \$(LIBTOOL) --mode=link ifelse($4,,[\$(CC)],[\$(CXX)]) \$(COMMON_FLAGS) \$(CFLAGS_CLEAN) \$(EXTRA_CFLAGS) \$(LDFLAGS) $additional_flags -o [\$]@ -export-dynamic -avoid-version -prefer-pic -module -rpath \$(phplibdir) \$(EXTRA_LDFLAGS) \$($2) \$(translit($1,a-z_-,A-Z__)_SHARED_LIBADD) EOF ]) @@ -889,7 +881,7 @@ AC_DEFUN([PHP_SELECT_SAPI],[ ]) else PHP_SAPI=$1 - fi + fi PHP_ADD_BUILD_DIR([sapi/$1]) @@ -940,43 +932,37 @@ dnl PHP_NEW_EXTENSION(extname, sources [, shared [, sapi_class [, extra-cflags [ dnl dnl Includes an extension in the build. dnl -dnl "extname" is the name of the ext/ subdir where the extension resides. +dnl "extname" is the name of the extension. dnl "sources" is a list of files relative to the subdir which are used dnl to build the extension. dnl "shared" can be set to "shared" or "yes" to build the extension as dnl a dynamically loadable library. Optional parameter "sapi_class" can dnl be set to "cli" to mark extension build only with CLI or CGI sapi's. -dnl "extra-cflags" are passed to the compiler, with +dnl "extra-cflags" are passed to the compiler, with dnl @ext_srcdir@ and @ext_builddir@ being substituted. dnl "cxx" can be used to indicate that a C++ shared module is desired. dnl "zend_ext" indicates a zend extension. AC_DEFUN([PHP_NEW_EXTENSION],[ ext_builddir=[]PHP_EXT_BUILDDIR($1) ext_srcdir=[]PHP_EXT_SRCDIR($1) + ext_dir=[]PHP_EXT_DIR($1) ifelse($5,,ac_extra=,[ac_extra=`echo "$5"|$SED s#@ext_srcdir@#$ext_srcdir#g|$SED s#@ext_builddir@#$ext_builddir#g`]) if test "$3" != "shared" && test "$3" != "yes" && test "$4" != "cli"; then dnl ---------------------------------------------- Static module [PHP_]translit($1,a-z_-,A-Z__)[_SHARED]=no - PHP_ADD_SOURCES(PHP_EXT_DIR($1),$2,$ac_extra,) - EXT_STATIC="$EXT_STATIC $1" + PHP_ADD_SOURCES($ext_dir,$2,$ac_extra,) + EXT_STATIC="$EXT_STATIC $1;$ext_dir" if test "$3" != "nocli"; then - EXT_CLI_STATIC="$EXT_CLI_STATIC $1" + EXT_CLI_STATIC="$EXT_CLI_STATIC $1;$ext_dir" fi else if test "$3" = "shared" || test "$3" = "yes"; then dnl ---------------------------------------------- Shared module [PHP_]translit($1,a-z_-,A-Z__)[_SHARED]=yes - PHP_ADD_SOURCES_X(PHP_EXT_DIR($1),$2,$ac_extra,shared_objects_$1,yes) - case $host_alias in - *netware*[)] - PHP_SHARED_MODULE(php$1,shared_objects_$1, $ext_builddir, $6, $7) - ;; - *[)] - PHP_SHARED_MODULE($1,shared_objects_$1, $ext_builddir, $6, $7) - ;; - esac + PHP_ADD_SOURCES_X($ext_dir,$2,$ac_extra,shared_objects_$1,yes) + PHP_SHARED_MODULE($1,shared_objects_$1, $ext_builddir, $6, $7) AC_DEFINE_UNQUOTED([COMPILE_DL_]translit($1,a-z_-,A-Z__), 1, Whether to build $1 as dynamic module) fi fi @@ -985,20 +971,20 @@ dnl ---------------------------------------------- Shared module dnl ---------------------------------------------- CLI static module [PHP_]translit($1,a-z_-,A-Z__)[_SHARED]=no case "$PHP_SAPI" in - cgi|embed[)] - PHP_ADD_SOURCES(PHP_EXT_DIR($1),$2,$ac_extra,) - EXT_STATIC="$EXT_STATIC $1" + cgi|embed|phpdbg[)] + PHP_ADD_SOURCES($ext_dir,$2,$ac_extra,) + EXT_STATIC="$EXT_STATIC $1;$ext_dir" ;; *[)] - PHP_ADD_SOURCES(PHP_EXT_DIR($1),$2,$ac_extra,cli) + PHP_ADD_SOURCES($ext_dir,$2,$ac_extra,cli) ;; esac - EXT_CLI_STATIC="$EXT_CLI_STATIC $1" + EXT_CLI_STATIC="$EXT_CLI_STATIC $1;$ext_dir" fi PHP_ADD_BUILD_DIR($ext_builddir) dnl Set for phpize builds only -dnl --------------------------- +dnl --------------------------- if test "$ext_builddir" = "."; then PHP_PECL_EXTENSION=$1 PHP_SUBST(PHP_PECL_EXTENSION) @@ -1028,7 +1014,7 @@ dnl $3 = optional: if true, it's ok for $2 to have not been configured dnl default is false and should halt the build. dnl To be effective, this macro must be invoked *after* PHP_NEW_EXTENSION. dnl The extension on which it depends must also have been configured. -dnl See ADD_EXTENSION_DEP in win32 build +dnl See ADD_EXTENSION_DEP in win32 build dnl AC_DEFUN([PHP_ADD_EXTENSION_DEP], [ am_i_shared=$[PHP_]translit($1,a-z_-,A-Z__)[_SHARED] @@ -1190,7 +1176,7 @@ main() { struct tm t, *s; time_t old = 0; char buf[27], *p; - + s = gmtime_r(&old, &t); p = asctime_r(&t, buf, 26); if (p == buf && s == &t) return (0); @@ -1255,7 +1241,7 @@ AC_DEFUN([PHP_DOES_PREAD_WORK],[ #include $1 main() { - char buf[3]; + char buf[3]; int fd = open("conftest_in", O_RDONLY); if (fd < 0) exit(1); if (pread(fd, buf, 2, 0) != 2) exit(1); @@ -1292,7 +1278,7 @@ AC_DEFUN([PHP_PWRITE_TEST],[ if test "$ac_cv_pwrite" = "64"; then AC_DEFINE(PHP_PWRITE_64, 1, [whether pwrite64 is default]) fi - fi + fi ]) dnl @@ -1314,7 +1300,7 @@ AC_DEFUN([PHP_PREAD_TEST],[ if test "$ac_cv_pread" = "64"; then AC_DEFINE(PHP_PREAD_64, 1, [whether pread64 is default]) fi - fi + fi ]) dnl @@ -1352,7 +1338,7 @@ AC_DEFUN([PHP_MISSING_TIME_R_DECL],[ dnl dnl PHP_READDIR_R_TYPE -dnl +dnl AC_DEFUN([PHP_READDIR_R_TYPE],[ dnl HAVE_READDIR_R is also defined by libmysql AC_CHECK_FUNC(readdir_r,ac_cv_func_readdir_r=yes,ac_cv_func_readdir=no) @@ -1373,10 +1359,13 @@ main() { struct dirent *pentry = (struct dirent *) &entry; dir = opendir("/"); - if (!dir) + if (!dir) exit(1); - if (readdir_r(dir, (struct dirent *) entry, &pentry) == 0) + if (readdir_r(dir, (struct dirent *) entry, &pentry) == 0) { + close(dir); exit(0); + } + close(dir); exit(1); } ],[ @@ -1407,7 +1396,7 @@ int readdir_r(DIR *, struct dirent *); dnl dnl PHP_TM_GMTOFF -dnl +dnl AC_DEFUN([PHP_TM_GMTOFF],[ AC_CACHE_CHECK([for tm_gmtoff in struct tm], ac_cv_struct_tm_gmtoff, [AC_TRY_COMPILE([#include @@ -1510,7 +1499,7 @@ AC_DEFUN([PHP_AC_BROKEN_SNPRINTF],[ main() { char buf[20]; int res = 0; - res = res || (snprintf(buf, 2, "marcus") != 6); + res = res || (snprintf(buf, 2, "marcus") != 6); res = res || (buf[1] != '\0'); /* Implementations may consider this as an encoding error */ snprintf(buf, 0, "boerger"); @@ -1518,7 +1507,7 @@ main() { res = res || (buf[0] != 'm'); res = res || (snprintf(NULL, 0, "boerger") != 7); res = res || (snprintf(buf, sizeof(buf), "%f", 0.12345678) != 8); - exit(res); + exit(res); } ],[ ac_cv_broken_snprintf=no @@ -1625,7 +1614,7 @@ AC_DEFUN([PHP_SOCKADDR_CHECKS], [ if test "$ac_cv_sockaddr_storage" = "yes"; then AC_DEFINE(HAVE_SOCKADDR_STORAGE, 1, [Whether you have struct sockaddr_storage]) fi - dnl Check if field sa_len exists in struct sockaddr + dnl Check if field sa_len exists in struct sockaddr AC_CACHE_CHECK([for field sa_len in struct sockaddr],ac_cv_sockaddr_sa_len,[ AC_TRY_COMPILE([#include #include ], @@ -1666,9 +1655,9 @@ dnl AC_DEFUN([PHP_EBCDIC], [ AC_CACHE_CHECK([whether system uses EBCDIC],ac_cv_ebcdic,[ AC_TRY_RUN( [ -int main(void) { - return (unsigned char)'A' != (unsigned char)0xC1; -} +int main(void) { + return (unsigned char)'A' != (unsigned char)0xC1; +} ],[ ac_cv_ebcdic=yes ],[ @@ -1711,8 +1700,8 @@ int main(int argc, char *argv[]) { FILE *fp; long position; - char *filename = "/tmp/phpglibccheck"; - + char *filename = tmpnam(NULL); + fp = fopen(filename, "w"); if (fp == NULL) { perror("fopen"); @@ -1806,7 +1795,7 @@ main() { ], [ cookie_io_functions_use_off64_t=no ]) - + else dnl older glibc versions (up to 2.1.2 ?) @@ -1832,7 +1821,7 @@ AC_TRY_COMPILE([ ]) dnl ------------------------------------------------------------------------- -dnl Library/function existance and build sanity checks +dnl Library/function existence and build sanity checks dnl ------------------------------------------------------------------------- dnl @@ -1843,7 +1832,7 @@ dnl AC_DEFUN([PHP_CHECK_LIBRARY], [ save_old_LDFLAGS=$LDFLAGS ac_stuff="$5" - + save_ext_shared=$ext_shared ext_shared=yes PHP_EVAL_LIBLINE([$]ac_stuff, LDFLAGS) @@ -1933,11 +1922,11 @@ AC_DEFUN([PHP_CHECK_FUNC],[ unset ac_cv_func_$1 unset ac_cv_func___$1 unset found - + AC_CHECK_FUNC($1, [found=yes],[ AC_CHECK_FUNC(__$1,[found=yes],[found=no]) ]) case $found in - yes[)] + yes[)] PHP_DEF_HAVE($1) ac_cv_func_$1=yes ;; @@ -2008,7 +1997,7 @@ dnl dnl PHP_CHECK_64BIT([do if 32], [do if 64]) dnl dnl This macro is used to detect if we're at 64-bit platform or not. -dnl It could be useful for those external libs, that have different precompiled +dnl It could be useful for those external libs, that have different precompiled dnl versions in different directories. dnl AC_DEFUN([PHP_CHECK_64BIT],[ @@ -2078,9 +2067,9 @@ AC_DEFUN([PHP_PROG_AWK], [ *mawk) AC_MSG_WARN([mawk is known to have problems on some systems. You should install GNU awk]) ;; - *gawk) + *gawk) ;; - bork) + bork) AC_MSG_ERROR([Could not find awk; Install GNU awk]) ;; *) @@ -2115,7 +2104,7 @@ dnl AC_DEFUN([PHP_PROG_LEX], [ dnl we only support certain flex versions flex_version_list="2.5.4" - + AC_PROG_LEX if test "$LEX" = "flex"; then dnl AC_DECL_YYTEXT is obsolete since autoconf 2.50 and merged into AC_PROG_LEX @@ -2145,7 +2134,7 @@ dnl it should be removed once we drop support of autoconf 2.13 (if ever) else flex_version=none fi - + case $php_cv_flex_version in ""|invalid[)] if test -f "$abs_srcdir/Zend/zend_language_scanner.c" && test -f "$abs_srcdir/Zend/zend_ini_scanner.c"; then @@ -2179,7 +2168,7 @@ AC_DEFUN([PHP_PROG_RE2C],[ php_cv_re2c_version=invalid else php_cv_re2c_version="`$RE2C --version | cut -d ' ' -f 2 2>/dev/null` (ok)" - fi + fi ]) fi case $php_cv_re2c_version in @@ -2208,42 +2197,79 @@ AC_DEFUN([PHP_SETUP_ICU],[ PHP_ICU_DIR=DEFAULT fi - if test "$PHP_ICU_DIR" = "DEFAULT"; then - dnl Try to find icu-config - AC_PATH_PROG(ICU_CONFIG, icu-config, no, [$PATH:/usr/local/bin]) - else - ICU_CONFIG="$PHP_ICU_DIR/bin/icu-config" + AC_MSG_CHECKING([for location of ICU headers and libraries]) + found_icu=no + + dnl First try to find pkg-config + if test -z "$PKG_CONFIG"; then + AC_PATH_PROG(PKG_CONFIG, pkg-config, no) fi - AC_MSG_CHECKING([for location of ICU headers and libraries]) + dnl If pkg-config is found try using it + if test "$PHP_ICU_DIR" = "DEFAULT" && test -x "$PKG_CONFIG" && $PKG_CONFIG --exists icu-uc icu-io icu-i18n; then + if $PKG_CONFIG --atleast-version=4.0 icu-uc; then + found_icu=yes + icu_version_full=`$PKG_CONFIG --modversion icu-uc` + ac_IFS=$IFS + IFS="." + set $icu_version_full + IFS=$ac_IFS + icu_version=`expr [$]1 \* 1000 + [$]2` + AC_MSG_RESULT([found $icu_version_full]) - dnl Trust icu-config to know better what the install prefix is.. - icu_install_prefix=`$ICU_CONFIG --prefix 2> /dev/null` - if test "$?" != "0" || test -z "$icu_install_prefix"; then - AC_MSG_RESULT([not found]) - AC_MSG_ERROR([Unable to detect ICU prefix or $ICU_CONFIG failed. Please verify ICU install prefix and make sure icu-config works.]) - else - AC_MSG_RESULT([$icu_install_prefix]) + ICU_LIBS=`$PKG_CONFIG --libs icu-uc icu-io icu-i18n` + ICU_INCS=`$PKG_CONFIG --cflags-only-I icu-uc icu-io icu-i18n` + ICU_CXXFLAGS="-DU_USING_ICU_NAMESPACE=1" - dnl Check ICU version - AC_MSG_CHECKING([for ICU 3.4 or greater]) - icu_version_full=`$ICU_CONFIG --version` - ac_IFS=$IFS - IFS="." - set $icu_version_full - IFS=$ac_IFS - icu_version=`expr [$]1 \* 1000 + [$]2` - AC_MSG_RESULT([found $icu_version_full]) + AC_MSG_RESULT([found $ICU_VERSION]) - if test "$icu_version" -lt "3004"; then - AC_MSG_ERROR([ICU version 3.4 or later is required]) + PHP_EVAL_LIBLINE($ICU_LIBS, $1) + PHP_EVAL_INCLINE($ICU_INCS) + else + AC_MSG_ERROR([ICU version 4.0 or later required.]) + fi + fi + + dnl If pkg-config fails for some reason, revert to the old method + if test "$found_icu" = "no"; then + if test "$PHP_ICU_DIR" = "DEFAULT"; then + dnl Try to find icu-config + AC_PATH_PROG(ICU_CONFIG, icu-config, no, [$PATH:/usr/local/bin]) + else + ICU_CONFIG="$PHP_ICU_DIR/bin/icu-config" fi - ICU_VERSION=$icu_version - ICU_INCS=`$ICU_CONFIG --cppflags-searchpath` - ICU_LIBS=`$ICU_CONFIG --ldflags --ldflags-icuio` - PHP_EVAL_INCLINE($ICU_INCS) - PHP_EVAL_LIBLINE($ICU_LIBS, $1) + dnl Trust icu-config to know better what the install prefix is.. + icu_install_prefix=`$ICU_CONFIG --prefix 2> /dev/null` + if test "$?" != "0" || test -z "$icu_install_prefix"; then + AC_MSG_RESULT([not found]) + AC_MSG_ERROR([Unable to detect ICU prefix or $ICU_CONFIG failed. Please verify ICU install prefix and make sure icu-config works.]) + else + AC_MSG_RESULT([$icu_install_prefix]) + + dnl Check ICU version + AC_MSG_CHECKING([for ICU 4.0 or greater]) + icu_version_full=`$ICU_CONFIG --version` + ac_IFS=$IFS + IFS="." + set $icu_version_full + IFS=$ac_IFS + icu_version=`expr [$]1 \* 1000 + [$]2` + AC_MSG_RESULT([found $icu_version_full]) + + if test "$icu_version" -lt "4000"; then + AC_MSG_ERROR([ICU version 4.0 or later is required]) + fi + + ICU_VERSION=$icu_version + ICU_INCS=`$ICU_CONFIG --cppflags-searchpath` + ICU_LIBS=`$ICU_CONFIG --ldflags --ldflags-icuio` + PHP_EVAL_INCLINE($ICU_INCS) + PHP_EVAL_LIBLINE($ICU_LIBS, $1) + + ICU_CXXFLAGS=`$ICU_CONFIG --cxxflags` + ICU_CXXFLAGS="$ICU_CXXFLAGS -DU_USING_ICU_NAMESPACE=1" + fi fi ]) @@ -2263,7 +2289,7 @@ AC_DEFUN([PHP_SETUP_KERBEROS],[ fi dnl If krb5-config is found try using it - if test "$PHP_KERBEROS" = "yes" && test -x "$KRB5_CONFIG"; then + if test "$PHP_KERBEROS" != "no" && test -x "$KRB5_CONFIG"; then KERBEROS_LIBS=`$KRB5_CONFIG --libs gssapi` KERBEROS_CFLAGS=`$KRB5_CONFIG --cflags gssapi` @@ -2305,7 +2331,7 @@ ifelse([$3],[],,[else $3]) fi ]) -dnl +dnl dnl PHP_SETUP_OPENSSL(shared-add [, action-found [, action-not-found]]) dnl dnl Common setup macro for openssl @@ -2333,13 +2359,13 @@ AC_DEFUN([PHP_SETUP_OPENSSL],[ dnl If pkg-config is found try using it if test "$PHP_OPENSSL_DIR" = "yes" && test -x "$PKG_CONFIG" && $PKG_CONFIG --exists openssl; then - if $PKG_CONFIG --atleast-version=0.9.6 openssl; then + if $PKG_CONFIG --atleast-version=1.0.1 openssl; then found_openssl=yes OPENSSL_LIBS=`$PKG_CONFIG --libs openssl` OPENSSL_INCS=`$PKG_CONFIG --cflags-only-I openssl` OPENSSL_INCDIR=`$PKG_CONFIG --variable=includedir openssl` else - AC_MSG_ERROR([OpenSSL version 0.9.6 or greater required.]) + AC_MSG_ERROR([OpenSSL version 1.0.1 or greater required.]) fi if test -n "$OPENSSL_LIBS"; then @@ -2352,7 +2378,7 @@ AC_DEFUN([PHP_SETUP_OPENSSL],[ dnl If pkg-config fails for some reason, revert to the old method if test "$found_openssl" = "no"; then - + if test "$PHP_OPENSSL_DIR" = "yes"; then PHP_OPENSSL_DIR="/usr/local/ssl /usr/local /usr /usr/local/openssl" fi @@ -2380,18 +2406,18 @@ AC_DEFUN([PHP_SETUP_OPENSSL],[ AC_MSG_CHECKING([for OpenSSL version]) AC_EGREP_CPP(yes,[ #include -#if OPENSSL_VERSION_NUMBER >= 0x0090600fL +#if OPENSSL_VERSION_NUMBER >= 0x10001001L yes #endif ],[ - AC_MSG_RESULT([>= 0.9.6]) + AC_MSG_RESULT([>= 1.0.1]) ],[ - AC_MSG_ERROR([OpenSSL version 0.9.6 or greater required.]) + AC_MSG_ERROR([OpenSSL version 1.0.1 or greater required.]) ]) CPPFLAGS=$old_CPPFLAGS PHP_ADD_INCLUDE($OPENSSL_INCDIR) - + PHP_CHECK_LIBRARY(crypto, CRYPTO_free, [ PHP_ADD_LIBRARY(crypto,,$1) ],[ @@ -2426,7 +2452,7 @@ ifelse([$3],[],,[else $3]) fi ]) -dnl +dnl dnl PHP_SETUP_ICONV(shared-add [, action-found [, action-not-found]]) dnl dnl Common setup macro for iconv @@ -2490,7 +2516,7 @@ AC_DEFUN([PHP_SETUP_ICONV], [ if test -z "$ICONV_DIR"; then AC_MSG_ERROR([Please specify the install prefix of iconv with --with-iconv=]) fi - + if test -f $ICONV_DIR/$PHP_LIBDIR/lib$iconv_lib_name.a || test -f $ICONV_DIR/$PHP_LIBDIR/lib$iconv_lib_name.$SHLIB_SUFFIX_NAME then @@ -2524,21 +2550,24 @@ ifelse([$3],[],,[else $3]) fi ]) -dnl +dnl dnl PHP_SETUP_LIBXML(shared-add [, action-found [, action-not-found]]) dnl dnl Common setup macro for libxml dnl AC_DEFUN([PHP_SETUP_LIBXML], [ -AC_CACHE_CHECK([for xml2-config path], ac_cv_php_xml2_config_path, -[ - for i in $PHP_LIBXML_DIR /usr/local /usr; do - if test -x "$i/bin/xml2-config"; then - ac_cv_php_xml2_config_path="$i/bin/xml2-config" - break - fi - done -]) + found_libxml=no + + dnl First try to find xml2-config + AC_CACHE_CHECK([for xml2-config path], ac_cv_php_xml2_config_path, + [ + for i in $PHP_LIBXML_DIR /usr/local /usr; do + if test -x "$i/bin/xml2-config"; then + ac_cv_php_xml2_config_path="$i/bin/xml2-config" + break + fi + done + ]) if test -x "$ac_cv_php_xml2_config_path"; then XML2_CONFIG="$ac_cv_php_xml2_config_path" @@ -2549,30 +2578,52 @@ AC_CACHE_CHECK([for xml2-config path], ac_cv_php_xml2_config_path, IFS=$ac_IFS LIBXML_VERSION=`expr [$]1 \* 1000000 + [$]2 \* 1000 + [$]3` if test "$LIBXML_VERSION" -ge "2006011"; then + found_libxml=yes LIBXML_LIBS=`$XML2_CONFIG --libs` LIBXML_INCS=`$XML2_CONFIG --cflags` - PHP_EVAL_LIBLINE($LIBXML_LIBS, $1) - PHP_EVAL_INCLINE($LIBXML_INCS) - - dnl Check that build works with given libs - AC_CACHE_CHECK(whether libxml build works, php_cv_libxml_build_works, [ - PHP_TEST_BUILD(xmlInitParser, - [ - php_cv_libxml_build_works=yes - ], [ - AC_MSG_RESULT(no) - AC_MSG_ERROR([build test failed. Please check the config.log for details.]) - ], [ - [$]$1 - ]) - ]) - if test "$php_cv_libxml_build_works" = "yes"; then - AC_DEFINE(HAVE_LIBXML, 1, [ ]) - fi - $2 else AC_MSG_ERROR([libxml2 version 2.6.11 or greater required.]) fi + fi + + dnl If xml2-config fails, try pkg-config + if test "$found_libxml" = "no"; then + if test -z "$PKG_CONFIG"; then + AC_PATH_PROG(PKG_CONFIG, pkg-config, no) + fi + + dnl If pkg-config is found try using it + if test -x "$PKG_CONFIG" && $PKG_CONFIG --exists libxml-2.0; then + if $PKG_CONFIG --atleast-version=2.6.11 libxml-2.0; then + found_libxml=yes + LIBXML_LIBS=`$PKG_CONFIG --libs libxml-2.0` + LIBXML_INCS=`$PKG_CONFIG --cflags-only-I libxml-2.0` + else + AC_MSG_ERROR([libxml2 version 2.6.11 or greater required.]) + fi + fi + fi + + if test "$found_libxml" = "yes"; then + PHP_EVAL_LIBLINE($LIBXML_LIBS, $1) + PHP_EVAL_INCLINE($LIBXML_INCS) + + dnl Check that build works with given libs + AC_CACHE_CHECK(whether libxml build works, php_cv_libxml_build_works, [ + PHP_TEST_BUILD(xmlInitParser, + [ + php_cv_libxml_build_works=yes + ], [ + AC_MSG_RESULT(no) + AC_MSG_ERROR([build test failed. Please check the config.log for details.]) + ], [ + [$]$1 + ]) + ]) + if test "$php_cv_libxml_build_works" = "yes"; then + AC_DEFINE(HAVE_LIBXML, 1, [ ]) + fi + $2 ifelse([$3],[],,[else $3]) fi ]) @@ -2581,7 +2632,7 @@ dnl ------------------------------------------------------------------------- dnl Misc. macros dnl ------------------------------------------------------------------------- -dnl +dnl dnl PHP_INSTALL_HEADERS(path [, file ...]) dnl dnl PHP header files to be installed @@ -2592,7 +2643,7 @@ AC_DEFUN([PHP_INSTALL_HEADERS],[ PHP_RUN_ONCE(INSTALLHEADERS, $header_file, [ INSTALL_HEADERS="$INSTALL_HEADERS $header_file" ]) - done + done ], [ header_path=$1 for header_file in $2; do @@ -2600,7 +2651,7 @@ AC_DEFUN([PHP_INSTALL_HEADERS],[ PHP_RUN_ONCE(INSTALLHEADERS, $hp_hf, [ INSTALL_HEADERS="$INSTALL_HEADERS $hp_hf" ]) - done + done ]) ]) @@ -2623,7 +2674,7 @@ IFS="- /. dnl dnl PHP_DEBUG_MACRO(filename) -dnl +dnl AC_DEFUN([PHP_DEBUG_MACRO],[ DEBUG_LOG=$1 cat >$1 <> $1 + if test `expr "X$ac_configure_args" : ".*${var}.*"` != 0; then + clean_configure_args=$(echo $clean_configure_args | sed -e "s#'$var=$val'##") + fi fi done echo "'[$]0' \\" >> $1 - if test `expr -- [$]0 : "'.*"` = 0; then + if test `expr " [$]0" : " '.*"` = 0; then CONFIGURE_COMMAND="$CONFIGURE_COMMAND '[$]0'" - else + else CONFIGURE_COMMAND="$CONFIGURE_COMMAND [$]0" fi - for arg in $ac_configure_args; do - if test `expr -- $arg : "'.*"` = 0; then - if test `expr -- $arg : "--.*"` = 0; then - break; - fi - echo "'[$]arg' \\" >> $1 - CONFIGURE_OPTIONS="$CONFIGURE_OPTIONS '[$]arg'" - else - if test `expr -- $arg : "'--.*"` = 0; then - break; - fi - echo "[$]arg \\" >> $1 - CONFIGURE_OPTIONS="$CONFIGURE_OPTIONS [$]arg" - fi + CONFIGURE_ARGS="$clean_configure_args" + while test "X$CONFIGURE_ARGS" != "X"; + do + if CURRENT_ARG=`expr "X$CONFIGURE_ARGS" : "X *\('[[^']]*'\)"` + then + CONFIGURE_ARGS=`expr "X$CONFIGURE_ARGS" : "X *'[[^']]*' \(.*\)"` + elif CURRENT_ARG=`expr "X$CONFIGURE_ARGS" : "X *\([[^ ]]*\)"` + then + CONFIGURE_ARGS=`expr "X$CONFIGURE_ARGS" : "X *[[^ ]]* \(.*\)"` + CURRENT_ARG="'$CURRENT_ARG'" + else + break + fi + $as_echo "$CURRENT_ARG \\" >>$1 + CONFIGURE_OPTIONS="$CONFIGURE_OPTIONS $CURRENT_ARG" done echo '"[$]@"' >> $1 chmod +x $1 @@ -2736,7 +2792,7 @@ AC_DEFUN([PHP_CHECK_CONFIGURE_OPTIONS],[ enable-libtool-lock | with-pic | with-tags | enable-shared | enable-static | enable-fast-install | with-gnu-ld[)];; # Allow certain TSRM options - with-tsrm-pth | with-tsrm-st | with-tsrm-pthreads[)];; + with-tsrm-pth | with-tsrm-st | with-tsrm-pthreads [)];; # Allow certain Zend options with-zend-vm | enable-maintainer-zts | enable-inline-optimization[)];; @@ -2748,7 +2804,7 @@ AC_DEFUN([PHP_CHECK_CONFIGURE_OPTIONS],[ if test "$PHP_MAJOR_VERSION" -lt "6"; then case $arg_name in enable-zend-multibyte[)] continue;; - esac + esac fi is_arg_set=php_[]`echo [$]arg_name | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ-' 'abcdefghijklmnopqrstuvwxyz_'` @@ -2771,8 +2827,8 @@ AC_DEFUN([PHP_CHECK_PDO_INCLUDES],[ pdo_cv_inc_path=$abs_srcdir/ext elif test -f $abs_srcdir/ext/pdo/php_pdo_driver.h; then pdo_cv_inc_path=$abs_srcdir/ext - elif test -f $prefix/include/php/ext/pdo/php_pdo_driver.h; then - pdo_cv_inc_path=$prefix/include/php/ext + elif test -f $phpincludedir/ext/pdo/php_pdo_driver.h; then + pdo_cv_inc_path=$phpincludedir/ext fi ]) if test -n "$pdo_cv_inc_path"; then @@ -2800,7 +2856,7 @@ AC_DEFUN([PHP_DETECT_ICC], dnl PHP_DETECT_SUNCC dnl Detect if the systems default compiler is suncc. -dnl We also set some usefull CFLAGS if the user didn't set any +dnl We also set some useful CFLAGS if the user didn't set any AC_DEFUN([PHP_DETECT_SUNCC],[ SUNCC="no" AC_MSG_CHECKING([for suncc]) @@ -2830,7 +2886,7 @@ AC_DEFUN([PHP_CRYPT_R_STYLE], ],[ CRYPTD buffer; crypt_r("passwd", "hash", &buffer); -], +], php_cv_crypt_r_style=cryptd) if test "$php_cv_crypt_r_style" = "none"; then @@ -2840,7 +2896,7 @@ php_cv_crypt_r_style=cryptd) ],[ struct crypt_data buffer; crypt_r("passwd", "hash", &buffer); -], +], php_cv_crypt_r_style=struct_crypt_data) fi @@ -2852,7 +2908,7 @@ php_cv_crypt_r_style=struct_crypt_data) ],[ struct crypt_data buffer; crypt_r("passwd", "hash", &buffer); -], +], php_cv_crypt_r_style=struct_crypt_data_gnu_source) fi ]) @@ -2925,14 +2981,17 @@ dnl providerdesc dnl header-file ac_hdrobj=$2 -dnl Add providerdesc.o into global objects when needed +dnl Add providerdesc.o or .lo into global objects when needed case $host_alias in *freebsd*) PHP_GLOBAL_OBJS="[$]PHP_GLOBAL_OBJS [$]ac_bdir[$]ac_provsrc.o" PHP_LDFLAGS="$PHP_LDFLAGS -lelf" ;; *solaris*) - PHP_GLOBAL_OBJS="[$]PHP_GLOBAL_OBJS [$]ac_bdir[$]ac_provsrc.o" + PHP_GLOBAL_OBJS="[$]PHP_GLOBAL_OBJS [$]ac_bdir[$]ac_provsrc.lo" + ;; + *linux*) + PHP_GLOBAL_OBJS="[$]PHP_GLOBAL_OBJS [$]ac_bdir[$]ac_provsrc.lo" ;; esac @@ -2959,15 +3018,267 @@ dnl DTrace objects esac dnl Generate Makefile.objects entries +dnl The empty $ac_provsrc command stops an implicit circular dependency +dnl in GNU Make which causes the .d file to be overwritten (Bug 61268) cat>>Makefile.objects< \$[]@ \$(PHP_DTRACE_OBJS): $ac_bdir[$]ac_hdrobj -$ac_bdir[$]ac_provsrc.o: \$(PHP_DTRACE_OBJS) - dtrace -G -o \$[]@ -s $abs_srcdir/$ac_provsrc $dtrace_objs +EOF + + case $host_alias in + *solaris*|*linux*) + dtrace_prov_name="`echo $ac_provsrc | $SED -e 's#\(.*\)\/##'`.o" + dtrace_lib_dir="`echo $ac_bdir[$]ac_provsrc | $SED -e 's#\(.*\)/[^/]*#\1#'`/.libs" + dtrace_d_obj="`echo $ac_bdir[$]ac_provsrc | $SED -e 's#\(.*\)/\([^/]*\)#\1/.libs/\2#'`.o" + dtrace_nolib_objs='$(PHP_DTRACE_OBJS:.lo=.o)' + for ac_lo in $PHP_DTRACE_OBJS; do + dtrace_lib_objs="[$]dtrace_lib_objs `echo $ac_lo | $SED -e 's,\.lo$,.o,' -e 's#\(.*\)\/#\1\/.libs\/#'`" + done; +dnl Always attempt to create both PIC and non-PIC DTrace objects (Bug 63692) + cat>>Makefile.objects< \$[]@ + @test -d "$dtrace_lib_dir" || mkdir $dtrace_lib_dir + if CFLAGS="\$(CFLAGS_CLEAN)" dtrace -G -o $dtrace_d_obj -s $abs_srcdir/$ac_provsrc $dtrace_lib_objs 2> /dev/null && test -f "$dtrace_d_obj"; then [\\] + echo "pic_object=['].libs/$dtrace_prov_name[']" >> \$[]@ [;\\] + else [\\] + echo "pic_object='none'" >> \$[]@ [;\\] + fi + if CFLAGS="\$(CFLAGS_CLEAN)" dtrace -G -o $ac_bdir[$]ac_provsrc.o -s $abs_srcdir/$ac_provsrc $dtrace_nolib_objs 2> /dev/null && test -f "$ac_bdir[$]ac_provsrc.o"; then [\\] + echo "non_pic_object=[']$dtrace_prov_name[']" >> \$[]@ [;\\] + else [\\] + echo "non_pic_object='none'" >> \$[]@ [;\\] + fi EOF + + ;; + *) +cat>>Makefile.objects< +#endif +#if HAVE_SYS_TYPES_H +# include +#endif + ]) + AC_DEFINE([PHP_HAVE_STDINT_TYPES], [1], [Checked for stdint types]) +]) + +dnl PHP_CHECK_BUILTIN_EXPECT +AC_DEFUN([PHP_CHECK_BUILTIN_EXPECT], [ + AC_MSG_CHECKING([for __builtin_expect]) + + AC_TRY_LINK(, [ + return __builtin_expect(1,1) ? 1 : 0; + ], [ + have_builtin_expect=1 + AC_MSG_RESULT([yes]) + ], [ + have_builtin_expect=0 + AC_MSG_RESULT([no]) + ]) + + AC_DEFINE_UNQUOTED([PHP_HAVE_BUILTIN_EXPECT], [$have_builtin_expect], [Whether the compiler supports __builtin_expect]) + +]) + +dnl PHP_CHECK_BUILTIN_CLZ +AC_DEFUN([PHP_CHECK_BUILTIN_CLZ], [ + AC_MSG_CHECKING([for __builtin_clz]) + + AC_TRY_LINK(, [ + return __builtin_clz(1) ? 1 : 0; + ], [ + have_builtin_clz=1 + AC_MSG_RESULT([yes]) + ], [ + have_builtin_clz=0 + AC_MSG_RESULT([no]) + ]) + + AC_DEFINE_UNQUOTED([PHP_HAVE_BUILTIN_CLZ], [$have_builtin_clz], [Whether the compiler supports __builtin_clz]) + +]) + +dnl PHP_CHECK_BUILTIN_CTZL +AC_DEFUN([PHP_CHECK_BUILTIN_CTZL], [ + AC_MSG_CHECKING([for __builtin_ctzl]) + + AC_TRY_LINK(, [ + return __builtin_ctzl(2L) ? 1 : 0; + ], [ + have_builtin_ctzl=1 + AC_MSG_RESULT([yes]) + ], [ + have_builtin_ctzl=0 + AC_MSG_RESULT([no]) + ]) + + AC_DEFINE_UNQUOTED([PHP_HAVE_BUILTIN_CTZL], [$have_builtin_ctzl], [Whether the compiler supports __builtin_ctzl]) + +]) + +dnl PHP_CHECK_BUILTIN_CTZLL +AC_DEFUN([PHP_CHECK_BUILTIN_CTZLL], [ + AC_MSG_CHECKING([for __builtin_ctzll]) + + AC_TRY_LINK(, [ + return __builtin_ctzll(2LL) ? 1 : 0; + ], [ + have_builtin_ctzll=1 + AC_MSG_RESULT([yes]) + ], [ + have_builtin_ctzll=0 + AC_MSG_RESULT([no]) + ]) + + AC_DEFINE_UNQUOTED([PHP_HAVE_BUILTIN_CTZLL], [$have_builtin_ctzll], [Whether the compiler supports __builtin_ctzll]) + +]) + +dnl PHP_CHECK_BUILTIN_SMULL_OVERFLOW +AC_DEFUN([PHP_CHECK_BUILTIN_SMULL_OVERFLOW], [ + AC_MSG_CHECKING([for __builtin_smull_overflow]) + + AC_TRY_LINK(, [ + long tmpvar; + return __builtin_smull_overflow(3, 7, &tmpvar); + ], [ + have_builtin_smull_overflow=1 + AC_MSG_RESULT([yes]) + ], [ + have_builtin_smull_overflow=0 + AC_MSG_RESULT([no]) + ]) + + AC_DEFINE_UNQUOTED([PHP_HAVE_BUILTIN_SMULL_OVERFLOW], + [$have_builtin_smull_overflow], [Whether the compiler supports __builtin_smull_overflow]) + +]) + +dnl PHP_CHECK_BUILTIN_SMULLL_OVERFLOW +AC_DEFUN([PHP_CHECK_BUILTIN_SMULLL_OVERFLOW], [ + AC_MSG_CHECKING([for __builtin_smulll_overflow]) + + AC_TRY_LINK(, [ + long long tmpvar; + return __builtin_smulll_overflow(3, 7, &tmpvar); + ], [ + have_builtin_smulll_overflow=1 + AC_MSG_RESULT([yes]) + ], [ + have_builtin_smulll_overflow=0 + AC_MSG_RESULT([no]) + ]) + + AC_DEFINE_UNQUOTED([PHP_HAVE_BUILTIN_SMULLL_OVERFLOW], + [$have_builtin_smulll_overflow], [Whether the compiler supports __builtin_smulll_overflow]) + +]) + +dnl PHP_CHECK_BUILTIN_SADDL_OVERFLOW +AC_DEFUN([PHP_CHECK_BUILTIN_SADDL_OVERFLOW], [ + AC_MSG_CHECKING([for __builtin_saddl_overflow]) + + AC_TRY_LINK(, [ + long tmpvar; + return __builtin_saddl_overflow(3, 7, &tmpvar); + ], [ + have_builtin_saddl_overflow=1 + AC_MSG_RESULT([yes]) + ], [ + have_builtin_saddl_overflow=0 + AC_MSG_RESULT([no]) + ]) + + AC_DEFINE_UNQUOTED([PHP_HAVE_BUILTIN_SADDL_OVERFLOW], + [$have_builtin_saddl_overflow], [Whether the compiler supports __builtin_saddl_overflow]) + +]) + +dnl PHP_CHECK_BUILTIN_SADDLL_OVERFLOW +AC_DEFUN([PHP_CHECK_BUILTIN_SADDLL_OVERFLOW], [ + AC_MSG_CHECKING([for __builtin_saddll_overflow]) + + AC_TRY_LINK(, [ + long long tmpvar; + return __builtin_saddll_overflow(3, 7, &tmpvar); + ], [ + have_builtin_saddll_overflow=1 + AC_MSG_RESULT([yes]) + ], [ + have_builtin_saddll_overflow=0 + AC_MSG_RESULT([no]) + ]) + + AC_DEFINE_UNQUOTED([PHP_HAVE_BUILTIN_SADDLL_OVERFLOW], + [$have_builtin_saddll_overflow], [Whether the compiler supports __builtin_saddll_overflow]) + +]) + +dnl PHP_CHECK_BUILTIN_SSUBL_OVERFLOW +AC_DEFUN([PHP_CHECK_BUILTIN_SSUBL_OVERFLOW], [ + AC_MSG_CHECKING([for __builtin_ssubl_overflow]) + + AC_TRY_LINK(, [ + long tmpvar; + return __builtin_ssubl_overflow(3, 7, &tmpvar); + ], [ + have_builtin_ssubl_overflow=1 + AC_MSG_RESULT([yes]) + ], [ + have_builtin_ssubl_overflow=0 + AC_MSG_RESULT([no]) + ]) + + AC_DEFINE_UNQUOTED([PHP_HAVE_BUILTIN_SSUBL_OVERFLOW], + [$have_builtin_ssubl_overflow], [Whether the compiler supports __builtin_ssubl_overflow]) + +]) + +dnl PHP_CHECK_BUILTIN_SSUBLL_OVERFLOW +AC_DEFUN([PHP_CHECK_BUILTIN_SSUBLL_OVERFLOW], [ + AC_MSG_CHECKING([for __builtin_ssubll_overflow]) + + AC_TRY_LINK(, [ + long long tmpvar; + return __builtin_ssubll_overflow(3, 7, &tmpvar); + ], [ + have_builtin_ssubll_overflow=1 + AC_MSG_RESULT([yes]) + ], [ + have_builtin_ssubll_overflow=0 + AC_MSG_RESULT([no]) + ]) + + AC_DEFINE_UNQUOTED([PHP_HAVE_BUILTIN_SSUBLL_OVERFLOW], + [$have_builtin_ssubll_overflow], [Whether the compiler supports __builtin_ssubll_overflow]) + +]) + +dnl Load the AX_CHECK_COMPILE_FLAG macro from the autoconf archive. +m4_include([build/ax_check_compile_flag.m4]) diff --git a/coregrade/src/aclocal.m4 b/coregrade/src/aclocal.m4 index 7e027dc..61e5867 100644 --- a/coregrade/src/aclocal.m4 +++ b/coregrade/src/aclocal.m4 @@ -12,7 +12,7 @@ dnl dnl PHP_HELP_SEPARATOR(title) dnl dnl Adds separator title into the configure --help display. -dnl +dnl AC_DEFUN([PHP_HELP_SEPARATOR],[ AC_ARG_ENABLE([],[ $1 @@ -66,10 +66,10 @@ AC_DEFUN([PHP_EXPAND_PATH],[ $2=$1 else changequote({,}) - ep_dir="`echo $1|$SED 's%/*[^/][^/]*/*$%%'`" + ep_dir=`echo $1|$SED 's%/*[^/][^/]*/*$%%'` changequote([,]) - ep_realdir="`(cd \"$ep_dir\" && pwd)`" - $2="$ep_realdir/`basename \"$1\"`" + ep_realdir=`(cd "$ep_dir" && pwd)` + $2="$ep_realdir"/`basename "$1"` fi ]) @@ -148,7 +148,7 @@ $EGREP $pattern'.*include/php' $srcdir/configure|$SED 's/.*>//'|xargs touch 2>/d dnl dnl PHP_GEN_GLOBAL_MAKEFILE -dnl +dnl dnl Generates the global makefile. dnl AC_DEFUN([PHP_GEN_GLOBAL_MAKEFILE],[ @@ -183,10 +183,10 @@ AC_DEFUN([PHP_ADD_MAKEFILE_FRAGMENT],[ dnl dnl PHP_ADD_SOURCES(source-path, sources [, special-flags [, type]]) dnl -dnl Adds sources which are located relative to source-path to the -dnl array of type type. Sources are processed with optional +dnl Adds sources which are located relative to source-path to the +dnl array of type type. Sources are processed with optional dnl special-flags which are passed to the compiler. Sources -dnl can be either written in C or C++ (filenames shall end in .c +dnl can be either written in C or C++ (filenames shall end in .c dnl or .cpp, respectively). dnl dnl Note: If source-path begins with a "/", the "/" is removed and @@ -227,7 +227,7 @@ dnl name of the array target-var directly, as well as whether dnl shared objects will be built from the sources. dnl dnl Should not be used directly. -dnl +dnl AC_DEFUN([PHP_ADD_SOURCES_X],[ dnl relative to source- or build-directory? dnl ac_srcdir/ac_bdir include trailing slash @@ -236,20 +236,20 @@ dnl ac_srcdir/ac_bdir include trailing slash /*[)] ac_srcdir=`echo "$1"|cut -c 2-`"/"; ac_bdir=$ac_srcdir; ac_inc="-I$ac_bdir -I$abs_srcdir/$ac_bdir" ;; *[)] ac_srcdir="$abs_srcdir/$1/"; ac_bdir="$1/"; ac_inc="-I$ac_bdir -I$ac_srcdir" ;; esac - + dnl how to build .. shared or static? ifelse($5,yes,_PHP_ASSIGN_BUILD_VARS(shared),_PHP_ASSIGN_BUILD_VARS(php)) dnl iterate over the sources old_IFS=[$]IFS for ac_src in $2; do - + dnl remove the suffix IFS=. set $ac_src ac_obj=[$]1 IFS=$old_IFS - + dnl append to the array which has been dynamically chosen at m4 time $4="[$]$4 [$]ac_bdir[$]ac_obj.lo" @@ -364,7 +364,7 @@ AC_DEFUN([PHP_LIBGCC_LIBPATH],[ ]) dnl ------------------------------------------------------------------------- -dnl Macros to modify LIBS, INCLUDES, etc. variables +dnl Macros to modify LIBS, INCLUDES, etc. variables dnl ------------------------------------------------------------------------- dnl @@ -486,7 +486,7 @@ dnl cc-specific dnl dnl PHP_ADD_INCLUDE(path [,before]) dnl -dnl add an include path. +dnl add an include path. dnl if before is 1, add in the beginning of INCLUDES. dnl AC_DEFUN([PHP_ADD_INCLUDE],[ @@ -774,7 +774,7 @@ AC_DEFUN([PHP_BUILD_SHARED],[ PHP_BUILD_PROGRAM OVERALL_TARGET=libphp[]$PHP_MAJOR_VERSION[.la] php_sapi_module=shared - + php_c_pre=$shared_c_pre php_c_meta=$shared_c_meta php_c_post=$shared_c_post @@ -836,19 +836,11 @@ dnl from object_var in build-dir. dnl AC_DEFUN([PHP_SHARED_MODULE],[ install_modules="install-modules" + suffix=la case $host_alias in *aix*[)] - suffix=so - link_cmd='$(LIBTOOL) --mode=link ifelse($4,,[$(CC)],[$(CXX)]) $(COMMON_FLAGS) $(CFLAGS_CLEAN) $(EXTRA_CFLAGS) $(LDFLAGS) -Wl,-G -o '$3'/$1.la -export-dynamic -avoid-version -prefer-pic -module -rpath $(phplibdir) $(EXTRA_LDFLAGS) $($2) $(translit($1,a-z_-,A-Z__)_SHARED_LIBADD) && mv -f '$3'/.libs/$1.so '$3'/$1.so' - ;; - *netware*[)] - suffix=nlm - link_cmd='$(LIBTOOL) --mode=link ifelse($4,,[$(CC)],[$(CXX)]) $(COMMON_FLAGS) $(CFLAGS_CLEAN) $(EXTRA_CFLAGS) $(LDFLAGS) -o [$]@ -shared -export-dynamic -avoid-version -prefer-pic -module -rpath $(phplibdir) $(EXTRA_LDFLAGS) $($2) ifelse($1, php5lib, , -L$(top_builddir)/netware -lphp5lib) $(translit(ifelse($1, php5lib, $1, m4_substr($1, 3)),a-z_-,A-Z__)_SHARED_LIBADD)' - ;; - *[)] - suffix=la - link_cmd='$(LIBTOOL) --mode=link ifelse($4,,[$(CC)],[$(CXX)]) $(COMMON_FLAGS) $(CFLAGS_CLEAN) $(EXTRA_CFLAGS) $(LDFLAGS) -o [$]@ -export-dynamic -avoid-version -prefer-pic -module -rpath $(phplibdir) $(EXTRA_LDFLAGS) $($2) $(translit($1,a-z_-,A-Z__)_SHARED_LIBADD)' + additional_flags="-Wl,-G" ;; esac @@ -863,7 +855,7 @@ AC_DEFUN([PHP_SHARED_MODULE],[ \$(LIBTOOL) --mode=install cp $3/$1.$suffix \$(phplibdir) $3/$1.$suffix: \$($2) \$(translit($1,a-z_-,A-Z__)_SHARED_DEPENDENCIES) - $link_cmd + \$(LIBTOOL) --mode=link ifelse($4,,[\$(CC)],[\$(CXX)]) \$(COMMON_FLAGS) \$(CFLAGS_CLEAN) \$(EXTRA_CFLAGS) \$(LDFLAGS) $additional_flags -o [\$]@ -export-dynamic -avoid-version -prefer-pic -module -rpath \$(phplibdir) \$(EXTRA_LDFLAGS) \$($2) \$(translit($1,a-z_-,A-Z__)_SHARED_LIBADD) EOF ]) @@ -889,7 +881,7 @@ AC_DEFUN([PHP_SELECT_SAPI],[ ]) else PHP_SAPI=$1 - fi + fi PHP_ADD_BUILD_DIR([sapi/$1]) @@ -940,43 +932,37 @@ dnl PHP_NEW_EXTENSION(extname, sources [, shared [, sapi_class [, extra-cflags [ dnl dnl Includes an extension in the build. dnl -dnl "extname" is the name of the ext/ subdir where the extension resides. +dnl "extname" is the name of the extension. dnl "sources" is a list of files relative to the subdir which are used dnl to build the extension. dnl "shared" can be set to "shared" or "yes" to build the extension as dnl a dynamically loadable library. Optional parameter "sapi_class" can dnl be set to "cli" to mark extension build only with CLI or CGI sapi's. -dnl "extra-cflags" are passed to the compiler, with +dnl "extra-cflags" are passed to the compiler, with dnl @ext_srcdir@ and @ext_builddir@ being substituted. dnl "cxx" can be used to indicate that a C++ shared module is desired. dnl "zend_ext" indicates a zend extension. AC_DEFUN([PHP_NEW_EXTENSION],[ ext_builddir=[]PHP_EXT_BUILDDIR($1) ext_srcdir=[]PHP_EXT_SRCDIR($1) + ext_dir=[]PHP_EXT_DIR($1) ifelse($5,,ac_extra=,[ac_extra=`echo "$5"|$SED s#@ext_srcdir@#$ext_srcdir#g|$SED s#@ext_builddir@#$ext_builddir#g`]) if test "$3" != "shared" && test "$3" != "yes" && test "$4" != "cli"; then dnl ---------------------------------------------- Static module [PHP_]translit($1,a-z_-,A-Z__)[_SHARED]=no - PHP_ADD_SOURCES(PHP_EXT_DIR($1),$2,$ac_extra,) - EXT_STATIC="$EXT_STATIC $1" + PHP_ADD_SOURCES($ext_dir,$2,$ac_extra,) + EXT_STATIC="$EXT_STATIC $1;$ext_dir" if test "$3" != "nocli"; then - EXT_CLI_STATIC="$EXT_CLI_STATIC $1" + EXT_CLI_STATIC="$EXT_CLI_STATIC $1;$ext_dir" fi else if test "$3" = "shared" || test "$3" = "yes"; then dnl ---------------------------------------------- Shared module [PHP_]translit($1,a-z_-,A-Z__)[_SHARED]=yes - PHP_ADD_SOURCES_X(PHP_EXT_DIR($1),$2,$ac_extra,shared_objects_$1,yes) - case $host_alias in - *netware*[)] - PHP_SHARED_MODULE(php$1,shared_objects_$1, $ext_builddir, $6, $7) - ;; - *[)] - PHP_SHARED_MODULE($1,shared_objects_$1, $ext_builddir, $6, $7) - ;; - esac + PHP_ADD_SOURCES_X($ext_dir,$2,$ac_extra,shared_objects_$1,yes) + PHP_SHARED_MODULE($1,shared_objects_$1, $ext_builddir, $6, $7) AC_DEFINE_UNQUOTED([COMPILE_DL_]translit($1,a-z_-,A-Z__), 1, Whether to build $1 as dynamic module) fi fi @@ -985,20 +971,20 @@ dnl ---------------------------------------------- Shared module dnl ---------------------------------------------- CLI static module [PHP_]translit($1,a-z_-,A-Z__)[_SHARED]=no case "$PHP_SAPI" in - cgi|embed[)] - PHP_ADD_SOURCES(PHP_EXT_DIR($1),$2,$ac_extra,) - EXT_STATIC="$EXT_STATIC $1" + cgi|embed|phpdbg[)] + PHP_ADD_SOURCES($ext_dir,$2,$ac_extra,) + EXT_STATIC="$EXT_STATIC $1;$ext_dir" ;; *[)] - PHP_ADD_SOURCES(PHP_EXT_DIR($1),$2,$ac_extra,cli) + PHP_ADD_SOURCES($ext_dir,$2,$ac_extra,cli) ;; esac - EXT_CLI_STATIC="$EXT_CLI_STATIC $1" + EXT_CLI_STATIC="$EXT_CLI_STATIC $1;$ext_dir" fi PHP_ADD_BUILD_DIR($ext_builddir) dnl Set for phpize builds only -dnl --------------------------- +dnl --------------------------- if test "$ext_builddir" = "."; then PHP_PECL_EXTENSION=$1 PHP_SUBST(PHP_PECL_EXTENSION) @@ -1028,7 +1014,7 @@ dnl $3 = optional: if true, it's ok for $2 to have not been configured dnl default is false and should halt the build. dnl To be effective, this macro must be invoked *after* PHP_NEW_EXTENSION. dnl The extension on which it depends must also have been configured. -dnl See ADD_EXTENSION_DEP in win32 build +dnl See ADD_EXTENSION_DEP in win32 build dnl AC_DEFUN([PHP_ADD_EXTENSION_DEP], [ am_i_shared=$[PHP_]translit($1,a-z_-,A-Z__)[_SHARED] @@ -1190,7 +1176,7 @@ main() { struct tm t, *s; time_t old = 0; char buf[27], *p; - + s = gmtime_r(&old, &t); p = asctime_r(&t, buf, 26); if (p == buf && s == &t) return (0); @@ -1255,7 +1241,7 @@ AC_DEFUN([PHP_DOES_PREAD_WORK],[ #include $1 main() { - char buf[3]; + char buf[3]; int fd = open("conftest_in", O_RDONLY); if (fd < 0) exit(1); if (pread(fd, buf, 2, 0) != 2) exit(1); @@ -1292,7 +1278,7 @@ AC_DEFUN([PHP_PWRITE_TEST],[ if test "$ac_cv_pwrite" = "64"; then AC_DEFINE(PHP_PWRITE_64, 1, [whether pwrite64 is default]) fi - fi + fi ]) dnl @@ -1314,7 +1300,7 @@ AC_DEFUN([PHP_PREAD_TEST],[ if test "$ac_cv_pread" = "64"; then AC_DEFINE(PHP_PREAD_64, 1, [whether pread64 is default]) fi - fi + fi ]) dnl @@ -1352,7 +1338,7 @@ AC_DEFUN([PHP_MISSING_TIME_R_DECL],[ dnl dnl PHP_READDIR_R_TYPE -dnl +dnl AC_DEFUN([PHP_READDIR_R_TYPE],[ dnl HAVE_READDIR_R is also defined by libmysql AC_CHECK_FUNC(readdir_r,ac_cv_func_readdir_r=yes,ac_cv_func_readdir=no) @@ -1373,10 +1359,13 @@ main() { struct dirent *pentry = (struct dirent *) &entry; dir = opendir("/"); - if (!dir) + if (!dir) exit(1); - if (readdir_r(dir, (struct dirent *) entry, &pentry) == 0) + if (readdir_r(dir, (struct dirent *) entry, &pentry) == 0) { + close(dir); exit(0); + } + close(dir); exit(1); } ],[ @@ -1407,7 +1396,7 @@ int readdir_r(DIR *, struct dirent *); dnl dnl PHP_TM_GMTOFF -dnl +dnl AC_DEFUN([PHP_TM_GMTOFF],[ AC_CACHE_CHECK([for tm_gmtoff in struct tm], ac_cv_struct_tm_gmtoff, [AC_TRY_COMPILE([#include @@ -1510,7 +1499,7 @@ AC_DEFUN([PHP_AC_BROKEN_SNPRINTF],[ main() { char buf[20]; int res = 0; - res = res || (snprintf(buf, 2, "marcus") != 6); + res = res || (snprintf(buf, 2, "marcus") != 6); res = res || (buf[1] != '\0'); /* Implementations may consider this as an encoding error */ snprintf(buf, 0, "boerger"); @@ -1518,7 +1507,7 @@ main() { res = res || (buf[0] != 'm'); res = res || (snprintf(NULL, 0, "boerger") != 7); res = res || (snprintf(buf, sizeof(buf), "%f", 0.12345678) != 8); - exit(res); + exit(res); } ],[ ac_cv_broken_snprintf=no @@ -1625,7 +1614,7 @@ AC_DEFUN([PHP_SOCKADDR_CHECKS], [ if test "$ac_cv_sockaddr_storage" = "yes"; then AC_DEFINE(HAVE_SOCKADDR_STORAGE, 1, [Whether you have struct sockaddr_storage]) fi - dnl Check if field sa_len exists in struct sockaddr + dnl Check if field sa_len exists in struct sockaddr AC_CACHE_CHECK([for field sa_len in struct sockaddr],ac_cv_sockaddr_sa_len,[ AC_TRY_COMPILE([#include #include ], @@ -1666,9 +1655,9 @@ dnl AC_DEFUN([PHP_EBCDIC], [ AC_CACHE_CHECK([whether system uses EBCDIC],ac_cv_ebcdic,[ AC_TRY_RUN( [ -int main(void) { - return (unsigned char)'A' != (unsigned char)0xC1; -} +int main(void) { + return (unsigned char)'A' != (unsigned char)0xC1; +} ],[ ac_cv_ebcdic=yes ],[ @@ -1711,8 +1700,8 @@ int main(int argc, char *argv[]) { FILE *fp; long position; - char *filename = "/tmp/phpglibccheck"; - + char *filename = tmpnam(NULL); + fp = fopen(filename, "w"); if (fp == NULL) { perror("fopen"); @@ -1806,7 +1795,7 @@ main() { ], [ cookie_io_functions_use_off64_t=no ]) - + else dnl older glibc versions (up to 2.1.2 ?) @@ -1832,7 +1821,7 @@ AC_TRY_COMPILE([ ]) dnl ------------------------------------------------------------------------- -dnl Library/function existance and build sanity checks +dnl Library/function existence and build sanity checks dnl ------------------------------------------------------------------------- dnl @@ -1843,7 +1832,7 @@ dnl AC_DEFUN([PHP_CHECK_LIBRARY], [ save_old_LDFLAGS=$LDFLAGS ac_stuff="$5" - + save_ext_shared=$ext_shared ext_shared=yes PHP_EVAL_LIBLINE([$]ac_stuff, LDFLAGS) @@ -1933,11 +1922,11 @@ AC_DEFUN([PHP_CHECK_FUNC],[ unset ac_cv_func_$1 unset ac_cv_func___$1 unset found - + AC_CHECK_FUNC($1, [found=yes],[ AC_CHECK_FUNC(__$1,[found=yes],[found=no]) ]) case $found in - yes[)] + yes[)] PHP_DEF_HAVE($1) ac_cv_func_$1=yes ;; @@ -2008,7 +1997,7 @@ dnl dnl PHP_CHECK_64BIT([do if 32], [do if 64]) dnl dnl This macro is used to detect if we're at 64-bit platform or not. -dnl It could be useful for those external libs, that have different precompiled +dnl It could be useful for those external libs, that have different precompiled dnl versions in different directories. dnl AC_DEFUN([PHP_CHECK_64BIT],[ @@ -2078,9 +2067,9 @@ AC_DEFUN([PHP_PROG_AWK], [ *mawk) AC_MSG_WARN([mawk is known to have problems on some systems. You should install GNU awk]) ;; - *gawk) + *gawk) ;; - bork) + bork) AC_MSG_ERROR([Could not find awk; Install GNU awk]) ;; *) @@ -2115,7 +2104,7 @@ dnl AC_DEFUN([PHP_PROG_LEX], [ dnl we only support certain flex versions flex_version_list="2.5.4" - + AC_PROG_LEX if test "$LEX" = "flex"; then dnl AC_DECL_YYTEXT is obsolete since autoconf 2.50 and merged into AC_PROG_LEX @@ -2145,7 +2134,7 @@ dnl it should be removed once we drop support of autoconf 2.13 (if ever) else flex_version=none fi - + case $php_cv_flex_version in ""|invalid[)] if test -f "$abs_srcdir/Zend/zend_language_scanner.c" && test -f "$abs_srcdir/Zend/zend_ini_scanner.c"; then @@ -2179,7 +2168,7 @@ AC_DEFUN([PHP_PROG_RE2C],[ php_cv_re2c_version=invalid else php_cv_re2c_version="`$RE2C --version | cut -d ' ' -f 2 2>/dev/null` (ok)" - fi + fi ]) fi case $php_cv_re2c_version in @@ -2208,42 +2197,79 @@ AC_DEFUN([PHP_SETUP_ICU],[ PHP_ICU_DIR=DEFAULT fi - if test "$PHP_ICU_DIR" = "DEFAULT"; then - dnl Try to find icu-config - AC_PATH_PROG(ICU_CONFIG, icu-config, no, [$PATH:/usr/local/bin]) - else - ICU_CONFIG="$PHP_ICU_DIR/bin/icu-config" + AC_MSG_CHECKING([for location of ICU headers and libraries]) + found_icu=no + + dnl First try to find pkg-config + if test -z "$PKG_CONFIG"; then + AC_PATH_PROG(PKG_CONFIG, pkg-config, no) fi - AC_MSG_CHECKING([for location of ICU headers and libraries]) + dnl If pkg-config is found try using it + if test "$PHP_ICU_DIR" = "DEFAULT" && test -x "$PKG_CONFIG" && $PKG_CONFIG --exists icu-uc icu-io icu-i18n; then + if $PKG_CONFIG --atleast-version=4.0 icu-uc; then + found_icu=yes + icu_version_full=`$PKG_CONFIG --modversion icu-uc` + ac_IFS=$IFS + IFS="." + set $icu_version_full + IFS=$ac_IFS + icu_version=`expr [$]1 \* 1000 + [$]2` + AC_MSG_RESULT([found $icu_version_full]) - dnl Trust icu-config to know better what the install prefix is.. - icu_install_prefix=`$ICU_CONFIG --prefix 2> /dev/null` - if test "$?" != "0" || test -z "$icu_install_prefix"; then - AC_MSG_RESULT([not found]) - AC_MSG_ERROR([Unable to detect ICU prefix or $ICU_CONFIG failed. Please verify ICU install prefix and make sure icu-config works.]) - else - AC_MSG_RESULT([$icu_install_prefix]) + ICU_LIBS=`$PKG_CONFIG --libs icu-uc icu-io icu-i18n` + ICU_INCS=`$PKG_CONFIG --cflags-only-I icu-uc icu-io icu-i18n` + ICU_CXXFLAGS="-DU_USING_ICU_NAMESPACE=1" - dnl Check ICU version - AC_MSG_CHECKING([for ICU 3.4 or greater]) - icu_version_full=`$ICU_CONFIG --version` - ac_IFS=$IFS - IFS="." - set $icu_version_full - IFS=$ac_IFS - icu_version=`expr [$]1 \* 1000 + [$]2` - AC_MSG_RESULT([found $icu_version_full]) + AC_MSG_RESULT([found $ICU_VERSION]) - if test "$icu_version" -lt "3004"; then - AC_MSG_ERROR([ICU version 3.4 or later is required]) + PHP_EVAL_LIBLINE($ICU_LIBS, $1) + PHP_EVAL_INCLINE($ICU_INCS) + else + AC_MSG_ERROR([ICU version 4.0 or later required.]) + fi + fi + + dnl If pkg-config fails for some reason, revert to the old method + if test "$found_icu" = "no"; then + if test "$PHP_ICU_DIR" = "DEFAULT"; then + dnl Try to find icu-config + AC_PATH_PROG(ICU_CONFIG, icu-config, no, [$PATH:/usr/local/bin]) + else + ICU_CONFIG="$PHP_ICU_DIR/bin/icu-config" fi - ICU_VERSION=$icu_version - ICU_INCS=`$ICU_CONFIG --cppflags-searchpath` - ICU_LIBS=`$ICU_CONFIG --ldflags --ldflags-icuio` - PHP_EVAL_INCLINE($ICU_INCS) - PHP_EVAL_LIBLINE($ICU_LIBS, $1) + dnl Trust icu-config to know better what the install prefix is.. + icu_install_prefix=`$ICU_CONFIG --prefix 2> /dev/null` + if test "$?" != "0" || test -z "$icu_install_prefix"; then + AC_MSG_RESULT([not found]) + AC_MSG_ERROR([Unable to detect ICU prefix or $ICU_CONFIG failed. Please verify ICU install prefix and make sure icu-config works.]) + else + AC_MSG_RESULT([$icu_install_prefix]) + + dnl Check ICU version + AC_MSG_CHECKING([for ICU 4.0 or greater]) + icu_version_full=`$ICU_CONFIG --version` + ac_IFS=$IFS + IFS="." + set $icu_version_full + IFS=$ac_IFS + icu_version=`expr [$]1 \* 1000 + [$]2` + AC_MSG_RESULT([found $icu_version_full]) + + if test "$icu_version" -lt "4000"; then + AC_MSG_ERROR([ICU version 4.0 or later is required]) + fi + + ICU_VERSION=$icu_version + ICU_INCS=`$ICU_CONFIG --cppflags-searchpath` + ICU_LIBS=`$ICU_CONFIG --ldflags --ldflags-icuio` + PHP_EVAL_INCLINE($ICU_INCS) + PHP_EVAL_LIBLINE($ICU_LIBS, $1) + + ICU_CXXFLAGS=`$ICU_CONFIG --cxxflags` + ICU_CXXFLAGS="$ICU_CXXFLAGS -DU_USING_ICU_NAMESPACE=1" + fi fi ]) @@ -2263,7 +2289,7 @@ AC_DEFUN([PHP_SETUP_KERBEROS],[ fi dnl If krb5-config is found try using it - if test "$PHP_KERBEROS" = "yes" && test -x "$KRB5_CONFIG"; then + if test "$PHP_KERBEROS" != "no" && test -x "$KRB5_CONFIG"; then KERBEROS_LIBS=`$KRB5_CONFIG --libs gssapi` KERBEROS_CFLAGS=`$KRB5_CONFIG --cflags gssapi` @@ -2305,7 +2331,7 @@ ifelse([$3],[],,[else $3]) fi ]) -dnl +dnl dnl PHP_SETUP_OPENSSL(shared-add [, action-found [, action-not-found]]) dnl dnl Common setup macro for openssl @@ -2333,13 +2359,13 @@ AC_DEFUN([PHP_SETUP_OPENSSL],[ dnl If pkg-config is found try using it if test "$PHP_OPENSSL_DIR" = "yes" && test -x "$PKG_CONFIG" && $PKG_CONFIG --exists openssl; then - if $PKG_CONFIG --atleast-version=0.9.6 openssl; then + if $PKG_CONFIG --atleast-version=1.0.1 openssl; then found_openssl=yes OPENSSL_LIBS=`$PKG_CONFIG --libs openssl` OPENSSL_INCS=`$PKG_CONFIG --cflags-only-I openssl` OPENSSL_INCDIR=`$PKG_CONFIG --variable=includedir openssl` else - AC_MSG_ERROR([OpenSSL version 0.9.6 or greater required.]) + AC_MSG_ERROR([OpenSSL version 1.0.1 or greater required.]) fi if test -n "$OPENSSL_LIBS"; then @@ -2352,7 +2378,7 @@ AC_DEFUN([PHP_SETUP_OPENSSL],[ dnl If pkg-config fails for some reason, revert to the old method if test "$found_openssl" = "no"; then - + if test "$PHP_OPENSSL_DIR" = "yes"; then PHP_OPENSSL_DIR="/usr/local/ssl /usr/local /usr /usr/local/openssl" fi @@ -2380,18 +2406,18 @@ AC_DEFUN([PHP_SETUP_OPENSSL],[ AC_MSG_CHECKING([for OpenSSL version]) AC_EGREP_CPP(yes,[ #include -#if OPENSSL_VERSION_NUMBER >= 0x0090600fL +#if OPENSSL_VERSION_NUMBER >= 0x10001001L yes #endif ],[ - AC_MSG_RESULT([>= 0.9.6]) + AC_MSG_RESULT([>= 1.0.1]) ],[ - AC_MSG_ERROR([OpenSSL version 0.9.6 or greater required.]) + AC_MSG_ERROR([OpenSSL version 1.0.1 or greater required.]) ]) CPPFLAGS=$old_CPPFLAGS PHP_ADD_INCLUDE($OPENSSL_INCDIR) - + PHP_CHECK_LIBRARY(crypto, CRYPTO_free, [ PHP_ADD_LIBRARY(crypto,,$1) ],[ @@ -2426,7 +2452,7 @@ ifelse([$3],[],,[else $3]) fi ]) -dnl +dnl dnl PHP_SETUP_ICONV(shared-add [, action-found [, action-not-found]]) dnl dnl Common setup macro for iconv @@ -2490,7 +2516,7 @@ AC_DEFUN([PHP_SETUP_ICONV], [ if test -z "$ICONV_DIR"; then AC_MSG_ERROR([Please specify the install prefix of iconv with --with-iconv=]) fi - + if test -f $ICONV_DIR/$PHP_LIBDIR/lib$iconv_lib_name.a || test -f $ICONV_DIR/$PHP_LIBDIR/lib$iconv_lib_name.$SHLIB_SUFFIX_NAME then @@ -2524,21 +2550,24 @@ ifelse([$3],[],,[else $3]) fi ]) -dnl +dnl dnl PHP_SETUP_LIBXML(shared-add [, action-found [, action-not-found]]) dnl dnl Common setup macro for libxml dnl AC_DEFUN([PHP_SETUP_LIBXML], [ -AC_CACHE_CHECK([for xml2-config path], ac_cv_php_xml2_config_path, -[ - for i in $PHP_LIBXML_DIR /usr/local /usr; do - if test -x "$i/bin/xml2-config"; then - ac_cv_php_xml2_config_path="$i/bin/xml2-config" - break - fi - done -]) + found_libxml=no + + dnl First try to find xml2-config + AC_CACHE_CHECK([for xml2-config path], ac_cv_php_xml2_config_path, + [ + for i in $PHP_LIBXML_DIR /usr/local /usr; do + if test -x "$i/bin/xml2-config"; then + ac_cv_php_xml2_config_path="$i/bin/xml2-config" + break + fi + done + ]) if test -x "$ac_cv_php_xml2_config_path"; then XML2_CONFIG="$ac_cv_php_xml2_config_path" @@ -2549,30 +2578,52 @@ AC_CACHE_CHECK([for xml2-config path], ac_cv_php_xml2_config_path, IFS=$ac_IFS LIBXML_VERSION=`expr [$]1 \* 1000000 + [$]2 \* 1000 + [$]3` if test "$LIBXML_VERSION" -ge "2006011"; then + found_libxml=yes LIBXML_LIBS=`$XML2_CONFIG --libs` LIBXML_INCS=`$XML2_CONFIG --cflags` - PHP_EVAL_LIBLINE($LIBXML_LIBS, $1) - PHP_EVAL_INCLINE($LIBXML_INCS) - - dnl Check that build works with given libs - AC_CACHE_CHECK(whether libxml build works, php_cv_libxml_build_works, [ - PHP_TEST_BUILD(xmlInitParser, - [ - php_cv_libxml_build_works=yes - ], [ - AC_MSG_RESULT(no) - AC_MSG_ERROR([build test failed. Please check the config.log for details.]) - ], [ - [$]$1 - ]) - ]) - if test "$php_cv_libxml_build_works" = "yes"; then - AC_DEFINE(HAVE_LIBXML, 1, [ ]) - fi - $2 else AC_MSG_ERROR([libxml2 version 2.6.11 or greater required.]) fi + fi + + dnl If xml2-config fails, try pkg-config + if test "$found_libxml" = "no"; then + if test -z "$PKG_CONFIG"; then + AC_PATH_PROG(PKG_CONFIG, pkg-config, no) + fi + + dnl If pkg-config is found try using it + if test -x "$PKG_CONFIG" && $PKG_CONFIG --exists libxml-2.0; then + if $PKG_CONFIG --atleast-version=2.6.11 libxml-2.0; then + found_libxml=yes + LIBXML_LIBS=`$PKG_CONFIG --libs libxml-2.0` + LIBXML_INCS=`$PKG_CONFIG --cflags-only-I libxml-2.0` + else + AC_MSG_ERROR([libxml2 version 2.6.11 or greater required.]) + fi + fi + fi + + if test "$found_libxml" = "yes"; then + PHP_EVAL_LIBLINE($LIBXML_LIBS, $1) + PHP_EVAL_INCLINE($LIBXML_INCS) + + dnl Check that build works with given libs + AC_CACHE_CHECK(whether libxml build works, php_cv_libxml_build_works, [ + PHP_TEST_BUILD(xmlInitParser, + [ + php_cv_libxml_build_works=yes + ], [ + AC_MSG_RESULT(no) + AC_MSG_ERROR([build test failed. Please check the config.log for details.]) + ], [ + [$]$1 + ]) + ]) + if test "$php_cv_libxml_build_works" = "yes"; then + AC_DEFINE(HAVE_LIBXML, 1, [ ]) + fi + $2 ifelse([$3],[],,[else $3]) fi ]) @@ -2581,7 +2632,7 @@ dnl ------------------------------------------------------------------------- dnl Misc. macros dnl ------------------------------------------------------------------------- -dnl +dnl dnl PHP_INSTALL_HEADERS(path [, file ...]) dnl dnl PHP header files to be installed @@ -2592,7 +2643,7 @@ AC_DEFUN([PHP_INSTALL_HEADERS],[ PHP_RUN_ONCE(INSTALLHEADERS, $header_file, [ INSTALL_HEADERS="$INSTALL_HEADERS $header_file" ]) - done + done ], [ header_path=$1 for header_file in $2; do @@ -2600,7 +2651,7 @@ AC_DEFUN([PHP_INSTALL_HEADERS],[ PHP_RUN_ONCE(INSTALLHEADERS, $hp_hf, [ INSTALL_HEADERS="$INSTALL_HEADERS $hp_hf" ]) - done + done ]) ]) @@ -2623,7 +2674,7 @@ IFS="- /. dnl dnl PHP_DEBUG_MACRO(filename) -dnl +dnl AC_DEFUN([PHP_DEBUG_MACRO],[ DEBUG_LOG=$1 cat >$1 <> $1 + if test `expr "X$ac_configure_args" : ".*${var}.*"` != 0; then + clean_configure_args=$(echo $clean_configure_args | sed -e "s#'$var=$val'##") + fi fi done echo "'[$]0' \\" >> $1 - if test `expr -- [$]0 : "'.*"` = 0; then + if test `expr " [$]0" : " '.*"` = 0; then CONFIGURE_COMMAND="$CONFIGURE_COMMAND '[$]0'" - else + else CONFIGURE_COMMAND="$CONFIGURE_COMMAND [$]0" fi - for arg in $ac_configure_args; do - if test `expr -- $arg : "'.*"` = 0; then - if test `expr -- $arg : "--.*"` = 0; then - break; - fi - echo "'[$]arg' \\" >> $1 - CONFIGURE_OPTIONS="$CONFIGURE_OPTIONS '[$]arg'" - else - if test `expr -- $arg : "'--.*"` = 0; then - break; - fi - echo "[$]arg \\" >> $1 - CONFIGURE_OPTIONS="$CONFIGURE_OPTIONS [$]arg" - fi + CONFIGURE_ARGS="$clean_configure_args" + while test "X$CONFIGURE_ARGS" != "X"; + do + if CURRENT_ARG=`expr "X$CONFIGURE_ARGS" : "X *\('[[^']]*'\)"` + then + CONFIGURE_ARGS=`expr "X$CONFIGURE_ARGS" : "X *'[[^']]*' \(.*\)"` + elif CURRENT_ARG=`expr "X$CONFIGURE_ARGS" : "X *\([[^ ]]*\)"` + then + CONFIGURE_ARGS=`expr "X$CONFIGURE_ARGS" : "X *[[^ ]]* \(.*\)"` + CURRENT_ARG="'$CURRENT_ARG'" + else + break + fi + $as_echo "$CURRENT_ARG \\" >>$1 + CONFIGURE_OPTIONS="$CONFIGURE_OPTIONS $CURRENT_ARG" done echo '"[$]@"' >> $1 chmod +x $1 @@ -2736,7 +2792,7 @@ AC_DEFUN([PHP_CHECK_CONFIGURE_OPTIONS],[ enable-libtool-lock | with-pic | with-tags | enable-shared | enable-static | enable-fast-install | with-gnu-ld[)];; # Allow certain TSRM options - with-tsrm-pth | with-tsrm-st | with-tsrm-pthreads[)];; + with-tsrm-pth | with-tsrm-st | with-tsrm-pthreads [)];; # Allow certain Zend options with-zend-vm | enable-maintainer-zts | enable-inline-optimization[)];; @@ -2748,7 +2804,7 @@ AC_DEFUN([PHP_CHECK_CONFIGURE_OPTIONS],[ if test "$PHP_MAJOR_VERSION" -lt "6"; then case $arg_name in enable-zend-multibyte[)] continue;; - esac + esac fi is_arg_set=php_[]`echo [$]arg_name | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ-' 'abcdefghijklmnopqrstuvwxyz_'` @@ -2771,8 +2827,8 @@ AC_DEFUN([PHP_CHECK_PDO_INCLUDES],[ pdo_cv_inc_path=$abs_srcdir/ext elif test -f $abs_srcdir/ext/pdo/php_pdo_driver.h; then pdo_cv_inc_path=$abs_srcdir/ext - elif test -f $prefix/include/php/ext/pdo/php_pdo_driver.h; then - pdo_cv_inc_path=$prefix/include/php/ext + elif test -f $phpincludedir/ext/pdo/php_pdo_driver.h; then + pdo_cv_inc_path=$phpincludedir/ext fi ]) if test -n "$pdo_cv_inc_path"; then @@ -2800,7 +2856,7 @@ AC_DEFUN([PHP_DETECT_ICC], dnl PHP_DETECT_SUNCC dnl Detect if the systems default compiler is suncc. -dnl We also set some usefull CFLAGS if the user didn't set any +dnl We also set some useful CFLAGS if the user didn't set any AC_DEFUN([PHP_DETECT_SUNCC],[ SUNCC="no" AC_MSG_CHECKING([for suncc]) @@ -2830,7 +2886,7 @@ AC_DEFUN([PHP_CRYPT_R_STYLE], ],[ CRYPTD buffer; crypt_r("passwd", "hash", &buffer); -], +], php_cv_crypt_r_style=cryptd) if test "$php_cv_crypt_r_style" = "none"; then @@ -2840,7 +2896,7 @@ php_cv_crypt_r_style=cryptd) ],[ struct crypt_data buffer; crypt_r("passwd", "hash", &buffer); -], +], php_cv_crypt_r_style=struct_crypt_data) fi @@ -2852,7 +2908,7 @@ php_cv_crypt_r_style=struct_crypt_data) ],[ struct crypt_data buffer; crypt_r("passwd", "hash", &buffer); -], +], php_cv_crypt_r_style=struct_crypt_data_gnu_source) fi ]) @@ -2925,14 +2981,17 @@ dnl providerdesc dnl header-file ac_hdrobj=$2 -dnl Add providerdesc.o into global objects when needed +dnl Add providerdesc.o or .lo into global objects when needed case $host_alias in *freebsd*) PHP_GLOBAL_OBJS="[$]PHP_GLOBAL_OBJS [$]ac_bdir[$]ac_provsrc.o" PHP_LDFLAGS="$PHP_LDFLAGS -lelf" ;; *solaris*) - PHP_GLOBAL_OBJS="[$]PHP_GLOBAL_OBJS [$]ac_bdir[$]ac_provsrc.o" + PHP_GLOBAL_OBJS="[$]PHP_GLOBAL_OBJS [$]ac_bdir[$]ac_provsrc.lo" + ;; + *linux*) + PHP_GLOBAL_OBJS="[$]PHP_GLOBAL_OBJS [$]ac_bdir[$]ac_provsrc.lo" ;; esac @@ -2959,23 +3018,273 @@ dnl DTrace objects esac dnl Generate Makefile.objects entries +dnl The empty $ac_provsrc command stops an implicit circular dependency +dnl in GNU Make which causes the .d file to be overwritten (Bug 61268) cat>>Makefile.objects< \$[]@ \$(PHP_DTRACE_OBJS): $ac_bdir[$]ac_hdrobj -$ac_bdir[$]ac_provsrc.o: \$(PHP_DTRACE_OBJS) - dtrace -G -o \$[]@ -s $abs_srcdir/$ac_provsrc $dtrace_objs +EOF + + case $host_alias in + *solaris*|*linux*) + dtrace_prov_name="`echo $ac_provsrc | $SED -e 's#\(.*\)\/##'`.o" + dtrace_lib_dir="`echo $ac_bdir[$]ac_provsrc | $SED -e 's#\(.*\)/[^/]*#\1#'`/.libs" + dtrace_d_obj="`echo $ac_bdir[$]ac_provsrc | $SED -e 's#\(.*\)/\([^/]*\)#\1/.libs/\2#'`.o" + dtrace_nolib_objs='$(PHP_DTRACE_OBJS:.lo=.o)' + for ac_lo in $PHP_DTRACE_OBJS; do + dtrace_lib_objs="[$]dtrace_lib_objs `echo $ac_lo | $SED -e 's,\.lo$,.o,' -e 's#\(.*\)\/#\1\/.libs\/#'`" + done; +dnl Always attempt to create both PIC and non-PIC DTrace objects (Bug 63692) + cat>>Makefile.objects< \$[]@ + @test -d "$dtrace_lib_dir" || mkdir $dtrace_lib_dir + if CFLAGS="\$(CFLAGS_CLEAN)" dtrace -G -o $dtrace_d_obj -s $abs_srcdir/$ac_provsrc $dtrace_lib_objs 2> /dev/null && test -f "$dtrace_d_obj"; then [\\] + echo "pic_object=['].libs/$dtrace_prov_name[']" >> \$[]@ [;\\] + else [\\] + echo "pic_object='none'" >> \$[]@ [;\\] + fi + if CFLAGS="\$(CFLAGS_CLEAN)" dtrace -G -o $ac_bdir[$]ac_provsrc.o -s $abs_srcdir/$ac_provsrc $dtrace_nolib_objs 2> /dev/null && test -f "$ac_bdir[$]ac_provsrc.o"; then [\\] + echo "non_pic_object=[']$dtrace_prov_name[']" >> \$[]@ [;\\] + else [\\] + echo "non_pic_object='none'" >> \$[]@ [;\\] + fi EOF + + ;; + *) +cat>>Makefile.objects< +#endif +#if HAVE_SYS_TYPES_H +# include +#endif + ]) + AC_DEFINE([PHP_HAVE_STDINT_TYPES], [1], [Checked for stdint types]) +]) + +dnl PHP_CHECK_BUILTIN_EXPECT +AC_DEFUN([PHP_CHECK_BUILTIN_EXPECT], [ + AC_MSG_CHECKING([for __builtin_expect]) + + AC_TRY_LINK(, [ + return __builtin_expect(1,1) ? 1 : 0; + ], [ + have_builtin_expect=1 + AC_MSG_RESULT([yes]) + ], [ + have_builtin_expect=0 + AC_MSG_RESULT([no]) + ]) + + AC_DEFINE_UNQUOTED([PHP_HAVE_BUILTIN_EXPECT], [$have_builtin_expect], [Whether the compiler supports __builtin_expect]) + +]) + +dnl PHP_CHECK_BUILTIN_CLZ +AC_DEFUN([PHP_CHECK_BUILTIN_CLZ], [ + AC_MSG_CHECKING([for __builtin_clz]) + + AC_TRY_LINK(, [ + return __builtin_clz(1) ? 1 : 0; + ], [ + have_builtin_clz=1 + AC_MSG_RESULT([yes]) + ], [ + have_builtin_clz=0 + AC_MSG_RESULT([no]) + ]) + + AC_DEFINE_UNQUOTED([PHP_HAVE_BUILTIN_CLZ], [$have_builtin_clz], [Whether the compiler supports __builtin_clz]) + +]) + +dnl PHP_CHECK_BUILTIN_CTZL +AC_DEFUN([PHP_CHECK_BUILTIN_CTZL], [ + AC_MSG_CHECKING([for __builtin_ctzl]) + + AC_TRY_LINK(, [ + return __builtin_ctzl(2L) ? 1 : 0; + ], [ + have_builtin_ctzl=1 + AC_MSG_RESULT([yes]) + ], [ + have_builtin_ctzl=0 + AC_MSG_RESULT([no]) + ]) + + AC_DEFINE_UNQUOTED([PHP_HAVE_BUILTIN_CTZL], [$have_builtin_ctzl], [Whether the compiler supports __builtin_ctzl]) + +]) + +dnl PHP_CHECK_BUILTIN_CTZLL +AC_DEFUN([PHP_CHECK_BUILTIN_CTZLL], [ + AC_MSG_CHECKING([for __builtin_ctzll]) + + AC_TRY_LINK(, [ + return __builtin_ctzll(2LL) ? 1 : 0; + ], [ + have_builtin_ctzll=1 + AC_MSG_RESULT([yes]) + ], [ + have_builtin_ctzll=0 + AC_MSG_RESULT([no]) + ]) + + AC_DEFINE_UNQUOTED([PHP_HAVE_BUILTIN_CTZLL], [$have_builtin_ctzll], [Whether the compiler supports __builtin_ctzll]) + +]) + +dnl PHP_CHECK_BUILTIN_SMULL_OVERFLOW +AC_DEFUN([PHP_CHECK_BUILTIN_SMULL_OVERFLOW], [ + AC_MSG_CHECKING([for __builtin_smull_overflow]) + + AC_TRY_LINK(, [ + long tmpvar; + return __builtin_smull_overflow(3, 7, &tmpvar); + ], [ + have_builtin_smull_overflow=1 + AC_MSG_RESULT([yes]) + ], [ + have_builtin_smull_overflow=0 + AC_MSG_RESULT([no]) + ]) + + AC_DEFINE_UNQUOTED([PHP_HAVE_BUILTIN_SMULL_OVERFLOW], + [$have_builtin_smull_overflow], [Whether the compiler supports __builtin_smull_overflow]) + +]) + +dnl PHP_CHECK_BUILTIN_SMULLL_OVERFLOW +AC_DEFUN([PHP_CHECK_BUILTIN_SMULLL_OVERFLOW], [ + AC_MSG_CHECKING([for __builtin_smulll_overflow]) + + AC_TRY_LINK(, [ + long long tmpvar; + return __builtin_smulll_overflow(3, 7, &tmpvar); + ], [ + have_builtin_smulll_overflow=1 + AC_MSG_RESULT([yes]) + ], [ + have_builtin_smulll_overflow=0 + AC_MSG_RESULT([no]) + ]) + + AC_DEFINE_UNQUOTED([PHP_HAVE_BUILTIN_SMULLL_OVERFLOW], + [$have_builtin_smulll_overflow], [Whether the compiler supports __builtin_smulll_overflow]) + +]) + +dnl PHP_CHECK_BUILTIN_SADDL_OVERFLOW +AC_DEFUN([PHP_CHECK_BUILTIN_SADDL_OVERFLOW], [ + AC_MSG_CHECKING([for __builtin_saddl_overflow]) + + AC_TRY_LINK(, [ + long tmpvar; + return __builtin_saddl_overflow(3, 7, &tmpvar); + ], [ + have_builtin_saddl_overflow=1 + AC_MSG_RESULT([yes]) + ], [ + have_builtin_saddl_overflow=0 + AC_MSG_RESULT([no]) + ]) + + AC_DEFINE_UNQUOTED([PHP_HAVE_BUILTIN_SADDL_OVERFLOW], + [$have_builtin_saddl_overflow], [Whether the compiler supports __builtin_saddl_overflow]) + +]) + +dnl PHP_CHECK_BUILTIN_SADDLL_OVERFLOW +AC_DEFUN([PHP_CHECK_BUILTIN_SADDLL_OVERFLOW], [ + AC_MSG_CHECKING([for __builtin_saddll_overflow]) + + AC_TRY_LINK(, [ + long long tmpvar; + return __builtin_saddll_overflow(3, 7, &tmpvar); + ], [ + have_builtin_saddll_overflow=1 + AC_MSG_RESULT([yes]) + ], [ + have_builtin_saddll_overflow=0 + AC_MSG_RESULT([no]) + ]) + + AC_DEFINE_UNQUOTED([PHP_HAVE_BUILTIN_SADDLL_OVERFLOW], + [$have_builtin_saddll_overflow], [Whether the compiler supports __builtin_saddll_overflow]) + +]) + +dnl PHP_CHECK_BUILTIN_SSUBL_OVERFLOW +AC_DEFUN([PHP_CHECK_BUILTIN_SSUBL_OVERFLOW], [ + AC_MSG_CHECKING([for __builtin_ssubl_overflow]) + + AC_TRY_LINK(, [ + long tmpvar; + return __builtin_ssubl_overflow(3, 7, &tmpvar); + ], [ + have_builtin_ssubl_overflow=1 + AC_MSG_RESULT([yes]) + ], [ + have_builtin_ssubl_overflow=0 + AC_MSG_RESULT([no]) + ]) + + AC_DEFINE_UNQUOTED([PHP_HAVE_BUILTIN_SSUBL_OVERFLOW], + [$have_builtin_ssubl_overflow], [Whether the compiler supports __builtin_ssubl_overflow]) + +]) + +dnl PHP_CHECK_BUILTIN_SSUBLL_OVERFLOW +AC_DEFUN([PHP_CHECK_BUILTIN_SSUBLL_OVERFLOW], [ + AC_MSG_CHECKING([for __builtin_ssubll_overflow]) + + AC_TRY_LINK(, [ + long long tmpvar; + return __builtin_ssubll_overflow(3, 7, &tmpvar); + ], [ + have_builtin_ssubll_overflow=1 + AC_MSG_RESULT([yes]) + ], [ + have_builtin_ssubll_overflow=0 + AC_MSG_RESULT([no]) + ]) + + AC_DEFINE_UNQUOTED([PHP_HAVE_BUILTIN_SSUBLL_OVERFLOW], + [$have_builtin_ssubll_overflow], [Whether the compiler supports __builtin_ssubll_overflow]) + +]) + +dnl Load the AX_CHECK_COMPILE_FLAG macro from the autoconf archive. +m4_include([build/ax_check_compile_flag.m4]) # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- # -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, -# 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. +# Copyright (C) 1996-2001, 2003-2015 Free Software Foundation, Inc. # Written by Gordon Matzigkeit, 1996 # # This file is free software; the Free Software Foundation gives @@ -2983,36 +3292,30 @@ EOF # modifications, as long as this notice is preserved. m4_define([_LT_COPYING], [dnl -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, -# 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. -# Written by Gordon Matzigkeit, 1996 +# Copyright (C) 2014 Free Software Foundation, Inc. +# This is free software; see the source for copying conditions. There is NO +# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +# GNU Libtool is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of of the License, or +# (at your option) any later version. # -# This file is part of GNU Libtool. +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program or library that is built +# using GNU Libtool, you may include this file under the same +# distribution terms that you use for the rest of that program. # -# GNU Libtool is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License as -# published by the Free Software Foundation; either version 2 of -# the License, or (at your option) any later version. -# -# As a special exception to the GNU General Public License, -# if you distribute this file as part of a program or library that -# is built using GNU Libtool, you may include this file under the -# same distribution terms that you use for the rest of that program. -# -# GNU Libtool is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of +# GNU Libtool is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with GNU Libtool; see the file COPYING. If not, a copy -# can be downloaded from http://www.gnu.org/licenses/gpl.html, or -# obtained by writing to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# along with this program. If not, see . ]) -# serial 57 LT_INIT +# serial 58 LT_INIT # LT_PREREQ(VERSION) @@ -3040,7 +3343,7 @@ esac # LT_INIT([OPTIONS]) # ------------------ AC_DEFUN([LT_INIT], -[AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT +[AC_PREREQ([2.62])dnl We use AC_PATH_PROGS_FEATURE_CHECK AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl AC_BEFORE([$0], [LT_LANG])dnl AC_BEFORE([$0], [LT_OUTPUT])dnl @@ -3064,7 +3367,7 @@ dnl Parse OPTIONS _LT_SET_OPTIONS([$0], [$1]) # This can be used to rebuild libtool when needed -LIBTOOL_DEPS="$ltmain" +LIBTOOL_DEPS=$ltmain # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' @@ -3084,26 +3387,43 @@ dnl AC_DEFUN([AC_PROG_LIBTOOL], []) dnl AC_DEFUN([AM_PROG_LIBTOOL], []) +# _LT_PREPARE_CC_BASENAME +# ----------------------- +m4_defun([_LT_PREPARE_CC_BASENAME], [ +# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. +func_cc_basename () +{ + for cc_temp in @S|@*""; do + case $cc_temp in + compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; + distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; + \-*) ;; + *) break;; + esac + done + func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` +} +])# _LT_PREPARE_CC_BASENAME + + # _LT_CC_BASENAME(CC) # ------------------- -# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. +# It would be clearer to call AC_REQUIREs from _LT_PREPARE_CC_BASENAME, +# but that macro is also expanded into generated libtool script, which +# arranges for $SED and $ECHO to be set by different means. m4_defun([_LT_CC_BASENAME], -[for cc_temp in $1""; do - case $cc_temp in - compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; - distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; - \-*) ;; - *) break;; - esac -done -cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` +[m4_require([_LT_PREPARE_CC_BASENAME])dnl +AC_REQUIRE([_LT_DECL_SED])dnl +AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl +func_cc_basename $1 +cc_basename=$func_cc_basename_result ]) # _LT_FILEUTILS_DEFAULTS # ---------------------- # It is okay to use these file commands and assume they have been set -# sensibly after `m4_require([_LT_FILEUTILS_DEFAULTS])'. +# sensibly after 'm4_require([_LT_FILEUTILS_DEFAULTS])'. m4_defun([_LT_FILEUTILS_DEFAULTS], [: ${CP="cp -f"} : ${MV="mv -f"} @@ -3150,15 +3470,16 @@ m4_require([_LT_CHECK_SHAREDLIB_FROM_LINKLIB])dnl m4_require([_LT_CMD_OLD_ARCHIVE])dnl m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl m4_require([_LT_WITH_SYSROOT])dnl +m4_require([_LT_CMD_TRUNCATE])dnl _LT_CONFIG_LIBTOOL_INIT([ -# See if we are running on zsh, and set the options which allow our +# See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes INIT. -if test -n "\${ZSH_VERSION+set}" ; then +if test -n "\${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi ]) -if test -n "${ZSH_VERSION+set}" ; then +if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi @@ -3171,7 +3492,7 @@ aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. - if test "X${COLLECT_NAMES+set}" != Xset; then + if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi @@ -3182,14 +3503,14 @@ esac ofile=libtool can_build_shared=yes -# All known linkers require a `.a' archive for static linking (except MSVC, +# All known linkers require a '.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a -with_gnu_ld="$lt_cv_prog_gnu_ld" +with_gnu_ld=$lt_cv_prog_gnu_ld -old_CC="$CC" -old_CFLAGS="$CFLAGS" +old_CC=$CC +old_CFLAGS=$CFLAGS # Set sane defaults for various variables test -z "$CC" && CC=cc @@ -3242,14 +3563,14 @@ no_glob_subst='s/\*/\\\*/g' # _LT_PROG_LTMAIN # --------------- -# Note that this code is called both from `configure', and `config.status' +# Note that this code is called both from 'configure', and 'config.status' # now that we use AC_CONFIG_COMMANDS to generate libtool. Notably, -# `config.status' has no value for ac_aux_dir unless we are using Automake, +# 'config.status' has no value for ac_aux_dir unless we are using Automake, # so we pass a copy along to make sure it has a sensible value anyway. m4_defun([_LT_PROG_LTMAIN], [m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl _LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir']) -ltmain="$ac_aux_dir/ltmain.sh" +ltmain=$ac_aux_dir/ltmain.sh ])# _LT_PROG_LTMAIN @@ -3259,7 +3580,7 @@ ltmain="$ac_aux_dir/ltmain.sh" # So that we can recreate a full libtool script including additional # tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS -# in macros and then make a single call at the end using the `libtool' +# in macros and then make a single call at the end using the 'libtool' # label. @@ -3394,8 +3715,8 @@ m4_define([_lt_decl_all_varnames], # _LT_CONFIG_STATUS_DECLARE([VARNAME]) # ------------------------------------ -# Quote a variable value, and forward it to `config.status' so that its -# declaration there will have the same value as in `configure'. VARNAME +# Quote a variable value, and forward it to 'config.status' so that its +# declaration there will have the same value as in 'configure'. VARNAME # must have a single quote delimited value for this to work. m4_define([_LT_CONFIG_STATUS_DECLARE], [$1='`$ECHO "$][$1" | $SED "$delay_single_quote_subst"`']) @@ -3419,7 +3740,7 @@ m4_defun([_LT_CONFIG_STATUS_DECLARATIONS], # Output comment and list of tags supported by the script m4_defun([_LT_LIBTOOL_TAGS], [_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl -available_tags="_LT_TAGS"dnl +available_tags='_LT_TAGS'dnl ]) @@ -3447,7 +3768,7 @@ m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl # _LT_LIBTOOL_CONFIG_VARS # ----------------------- # Produce commented declarations of non-tagged libtool config variables -# suitable for insertion in the LIBTOOL CONFIG section of the `libtool' +# suitable for insertion in the LIBTOOL CONFIG section of the 'libtool' # script. Tagged libtool config variables (even for the LIBTOOL CONFIG # section) are produced by _LT_LIBTOOL_TAG_VARS. m4_defun([_LT_LIBTOOL_CONFIG_VARS], @@ -3473,8 +3794,8 @@ m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])]) # Send accumulated output to $CONFIG_STATUS. Thanks to the lists of # variables for single and double quote escaping we saved from calls # to _LT_DECL, we can put quote escaped variables declarations -# into `config.status', and then the shell code to quote escape them in -# for loops in `config.status'. Finally, any additional code accumulated +# into 'config.status', and then the shell code to quote escape them in +# for loops in 'config.status'. Finally, any additional code accumulated # from calls to _LT_CONFIG_LIBTOOL_INIT is expanded. m4_defun([_LT_CONFIG_COMMANDS], [AC_PROVIDE_IFELSE([LT_OUTPUT], @@ -3520,7 +3841,7 @@ for var in lt_decl_all_varnames([[ \ ]], lt_decl_quote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) - eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" @@ -3533,7 +3854,7 @@ for var in lt_decl_all_varnames([[ \ ]], lt_decl_dquote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) - eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" @@ -3549,7 +3870,7 @@ _LT_OUTPUT_LIBTOOL_INIT # Generate a child script FILE with all initialization necessary to # reuse the environment learned by the parent script, and make the # file executable. If COMMENT is supplied, it is inserted after the -# `#!' sequence but before initialization text begins. After this +# '#!' sequence but before initialization text begins. After this # macro, additional text can be appended to FILE to form the body of # the child script. The macro ends with non-zero status if the # file could not be fully written (such as if the disk is full). @@ -3571,7 +3892,7 @@ AS_SHELL_SANITIZE _AS_PREPARE exec AS_MESSAGE_FD>&1 _ASEOF -test $lt_write_fail = 0 && chmod +x $1[]dnl +test 0 = "$lt_write_fail" && chmod +x $1[]dnl m4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT # LT_OUTPUT @@ -3594,7 +3915,7 @@ exec AS_MESSAGE_LOG_FD>>config.log } >&AS_MESSAGE_LOG_FD lt_cl_help="\ -\`$as_me' creates a local libtool stub from the current configuration, +'$as_me' creates a local libtool stub from the current configuration, for use in further configure time tests before the real libtool is generated. @@ -3616,7 +3937,7 @@ Copyright (C) 2011 Free Software Foundation, Inc. This config.lt script is free software; the Free Software Foundation gives unlimited permision to copy, distribute and modify it." -while test $[#] != 0 +while test 0 != $[#] do case $[1] in --version | --v* | -V ) @@ -3629,10 +3950,10 @@ do lt_cl_silent=: ;; -*) AC_MSG_ERROR([unrecognized option: $[1] -Try \`$[0] --help' for more information.]) ;; +Try '$[0] --help' for more information.]) ;; *) AC_MSG_ERROR([unrecognized argument: $[1] -Try \`$[0] --help' for more information.]) ;; +Try '$[0] --help' for more information.]) ;; esac shift done @@ -3658,7 +3979,7 @@ chmod +x "$CONFIG_LT" # open by configure. Here we exec the FD to /dev/null, effectively closing # config.log, so it can be properly (re)opened and appended to by config.lt. lt_cl_success=: -test "$silent" = yes && +test yes = "$silent" && lt_config_lt_args="$lt_config_lt_args --quiet" exec AS_MESSAGE_LOG_FD>/dev/null $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false @@ -3678,32 +3999,47 @@ m4_defun([_LT_CONFIG], _LT_CONFIG_SAVE_COMMANDS([ m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl m4_if(_LT_TAG, [C], [ - # See if we are running on zsh, and set the options which allow our + # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes. - if test -n "${ZSH_VERSION+set}" ; then + if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi - cfgfile="${ofile}T" + cfgfile=${ofile}T trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL - -# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. -# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION +# Generated automatically by $as_me ($PACKAGE) $VERSION # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # NOTE: Changes made to this file will be lost: look at ltmain.sh. -# + +# Provide generalized library-building support services. +# Written by Gordon Matzigkeit, 1996 + _LT_COPYING _LT_LIBTOOL_TAGS +# Configured defaults for sys_lib_dlsearch_path munging. +: \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"} + # ### BEGIN LIBTOOL CONFIG _LT_LIBTOOL_CONFIG_VARS _LT_LIBTOOL_TAG_VARS # ### END LIBTOOL CONFIG +_LT_EOF + + cat <<'_LT_EOF' >> "$cfgfile" + +# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE + +_LT_PREPARE_MUNGE_PATH_LIST +_LT_PREPARE_CC_BASENAME + +# ### END FUNCTIONS SHARED WITH CONFIGURE + _LT_EOF case $host_os in @@ -3712,7 +4048,7 @@ _LT_EOF # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. -if test "X${COLLECT_NAMES+set}" != Xset; then +if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi @@ -3729,8 +4065,6 @@ _LT_EOF sed '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) - _LT_PROG_REPLACE_SHELLFNS - mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" @@ -3748,7 +4082,6 @@ _LT_EOF [m4_if([$1], [], [ PACKAGE='$PACKAGE' VERSION='$VERSION' - TIMESTAMP='$TIMESTAMP' RM='$RM' ofile='$ofile'], []) ])dnl /_LT_CONFIG_SAVE_COMMANDS @@ -3947,7 +4280,7 @@ m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[ AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod], [lt_cv_apple_cc_single_mod=no - if test -z "${LT_MULTI_MODULE}"; then + if test -z "$LT_MULTI_MODULE"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the @@ -3965,7 +4298,7 @@ m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[ cat conftest.err >&AS_MESSAGE_LOG_FD # Otherwise, if the output was created with a 0 exit code from # the compiler, it worked. - elif test -f libconftest.dylib && test $_lt_result -eq 0; then + elif test -f libconftest.dylib && test 0 = "$_lt_result"; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&AS_MESSAGE_LOG_FD @@ -3983,7 +4316,7 @@ m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[ AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [lt_cv_ld_exported_symbols_list=yes], [lt_cv_ld_exported_symbols_list=no]) - LDFLAGS="$save_LDFLAGS" + LDFLAGS=$save_LDFLAGS ]) AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load], @@ -4005,7 +4338,7 @@ _LT_EOF _lt_result=$? if test -s conftest.err && $GREP force_load conftest.err; then cat conftest.err >&AS_MESSAGE_LOG_FD - elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then + elif test -f conftest && test 0 = "$_lt_result" && $GREP forced_load conftest >/dev/null 2>&1; then lt_cv_ld_force_load=yes else cat conftest.err >&AS_MESSAGE_LOG_FD @@ -4015,32 +4348,32 @@ _LT_EOF ]) case $host_os in rhapsody* | darwin1.[[012]]) - _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; + _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;; darwin1.*) - _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; darwin*) # darwin 5.x on # if running on 10.5 or later, the deployment target defaults # to the OS version, if on x86, and 10.4, the deployment # target defaults to 10.4. Don't you love it? case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*) - _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; - 10.[[012]]*) - _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; + 10.[[012]][[,.]]*) + _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; 10.*) - _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; esac ;; esac - if test "$lt_cv_apple_cc_single_mod" = "yes"; then + if test yes = "$lt_cv_apple_cc_single_mod"; then _lt_dar_single_mod='$single_module' fi - if test "$lt_cv_ld_exported_symbols_list" = "yes"; then - _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' + if test yes = "$lt_cv_ld_exported_symbols_list"; then + _lt_dar_export_syms=' $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym' else - _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' + _lt_dar_export_syms='~$NMEDIT -s $output_objdir/$libname-symbols.expsym $lib' fi - if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then + if test : != "$DSYMUTIL" && test no = "$lt_cv_ld_force_load"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= @@ -4060,29 +4393,29 @@ m4_defun([_LT_DARWIN_LINKER_FEATURES], _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported - if test "$lt_cv_ld_force_load" = "yes"; then - _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' + if test yes = "$lt_cv_ld_force_load"; then + _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes], [FC], [_LT_TAGVAR(compiler_needs_object, $1)=yes]) else _LT_TAGVAR(whole_archive_flag_spec, $1)='' fi _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined" + _LT_TAGVAR(allow_undefined_flag, $1)=$_lt_dar_allow_undefined case $cc_basename in - ifort*) _lt_dar_can_shared=yes ;; + ifort*|nagfor*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac - if test "$_lt_dar_can_shared" = "yes"; then + if test yes = "$_lt_dar_can_shared"; then output_verbose_link_cmd=func_echo_all - _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" - _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" - _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" - _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" + _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil" + _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil" + _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil" + _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil" m4_if([$1], [CXX], -[ if test "$lt_cv_apple_cc_single_mod" != "yes"; then - _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" - _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" +[ if test yes != "$lt_cv_apple_cc_single_mod"; then + _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dsymutil" + _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dar_export_syms$_lt_dsymutil" fi ],[]) else @@ -4102,7 +4435,7 @@ m4_defun([_LT_DARWIN_LINKER_FEATURES], # Allow to override them for all tags through lt_cv_aix_libpath. m4_defun([_LT_SYS_MODULE_PATH_AIX], [m4_require([_LT_DECL_SED])dnl -if test "${lt_cv_aix_libpath+set}" = set; then +if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])], @@ -4120,7 +4453,7 @@ else _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi],[]) if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then - _LT_TAGVAR([lt_cv_aix_libpath_], [$1])="/usr/lib:/lib" + _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=/usr/lib:/lib fi ]) aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1]) @@ -4140,8 +4473,8 @@ m4_define([_LT_SHELL_INIT], # ----------------------- # Find how we can fake an echo command that does not interpret backslash. # In particular, with Autoconf 2.60 or later we add some code to the start -# of the generated configure script which will find a shell with a builtin -# printf (which we can use as an echo command). +# of the generated configure script that will find a shell with a builtin +# printf (that we can use as an echo command). m4_defun([_LT_PROG_ECHO_BACKSLASH], [ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO @@ -4169,10 +4502,10 @@ fi # Invoke $ECHO with all args, space-separated. func_echo_all () { - $ECHO "$*" + $ECHO "$*" } -case "$ECHO" in +case $ECHO in printf*) AC_MSG_RESULT([printf]) ;; print*) AC_MSG_RESULT([print -r]) ;; *) AC_MSG_RESULT([cat]) ;; @@ -4198,16 +4531,17 @@ _LT_DECL([], [ECHO], [1], [An echo program that protects backslashes]) AC_DEFUN([_LT_WITH_SYSROOT], [AC_MSG_CHECKING([for sysroot]) AC_ARG_WITH([sysroot], -[ --with-sysroot[=DIR] Search for dependent libraries within DIR - (or the compiler's sysroot if not specified).], +[AS_HELP_STRING([--with-sysroot@<:@=DIR@:>@], + [Search for dependent libraries within DIR (or the compiler's sysroot + if not specified).])], [], [with_sysroot=no]) dnl lt_sysroot will always be passed unquoted. We quote it here dnl in case the user passed a directory name. lt_sysroot= -case ${with_sysroot} in #( +case $with_sysroot in #( yes) - if test "$GCC" = yes; then + if test yes = "$GCC"; then lt_sysroot=`$CC --print-sysroot 2>/dev/null` fi ;; #( @@ -4217,14 +4551,14 @@ case ${with_sysroot} in #( no|'') ;; #( *) - AC_MSG_RESULT([${with_sysroot}]) + AC_MSG_RESULT([$with_sysroot]) AC_MSG_ERROR([The sysroot must be an absolute path.]) ;; esac AC_MSG_RESULT([${lt_sysroot:-no}]) _LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl -[dependent libraries, and in which our libraries should be installed.])]) +[dependent libraries, and where our libraries should be installed.])]) # _LT_ENABLE_LOCK # --------------- @@ -4232,31 +4566,33 @@ m4_defun([_LT_ENABLE_LOCK], [AC_ARG_ENABLE([libtool-lock], [AS_HELP_STRING([--disable-libtool-lock], [avoid locking (might break parallel builds)])]) -test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes +test no = "$enable_libtool_lock" || enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) - # Find out which ABI we are using. + # Find out what ABI is being produced by ac_compile, and set mode + # options accordingly. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) - HPUX_IA64_MODE="32" + HPUX_IA64_MODE=32 ;; *ELF-64*) - HPUX_IA64_MODE="64" + HPUX_IA64_MODE=64 ;; esac fi rm -rf conftest* ;; *-*-irix6*) - # Find out which ABI we are using. + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then - if test "$lt_cv_prog_gnu_ld" = yes; then + if test yes = "$lt_cv_prog_gnu_ld"; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" @@ -4285,9 +4621,46 @@ ia64-*-hpux*) rm -rf conftest* ;; -x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ +mips64*-*linux*) + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. + echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + emul=elf + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + emul="${emul}32" + ;; + *64-bit*) + emul="${emul}64" + ;; + esac + case `/usr/bin/file conftest.$ac_objext` in + *MSB*) + emul="${emul}btsmip" + ;; + *LSB*) + emul="${emul}ltsmip" + ;; + esac + case `/usr/bin/file conftest.$ac_objext` in + *N32*) + emul="${emul}n32" + ;; + esac + LD="${LD-ld} -m $emul" + fi + rm -rf conftest* + ;; + +x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) - # Find out which ABI we are using. + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. Note that the listed cases only cover the + # situations where additional linker options are needed (such as when + # doing 32-bit compilation for a host where ld defaults to 64-bit, or + # vice versa); the common cases where no linker options are needed do + # not appear in the list. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in @@ -4297,9 +4670,19 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) - LD="${LD-ld} -m elf_i386" + case `/usr/bin/file conftest.o` in + *x86-64*) + LD="${LD-ld} -m elf32_x86_64" + ;; + *) + LD="${LD-ld} -m elf_i386" + ;; + esac ;; - ppc64-*linux*|powerpc64-*linux*) + powerpc64le-*linux*) + LD="${LD-ld} -m elf32lppclinux" + ;; + powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) @@ -4318,7 +4701,10 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; - ppc*-*linux*|powerpc*-*linux*) + powerpcle-*linux*) + LD="${LD-ld} -m elf64lppc" + ;; + powerpc-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) @@ -4336,19 +4722,20 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. - SAVE_CFLAGS="$CFLAGS" + SAVE_CFLAGS=$CFLAGS CFLAGS="$CFLAGS -belf" AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, [AC_LANG_PUSH(C) AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) AC_LANG_POP]) - if test x"$lt_cv_cc_needs_belf" != x"yes"; then + if test yes != "$lt_cv_cc_needs_belf"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf - CFLAGS="$SAVE_CFLAGS" + CFLAGS=$SAVE_CFLAGS fi ;; *-*solaris*) - # Find out which ABI we are using. + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in @@ -4356,7 +4743,7 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) case $lt_cv_prog_gnu_ld in yes*) case $host in - i?86-*-solaris*) + i?86-*-solaris*|x86_64-*-solaris*) LD="${LD-ld} -m elf_x86_64" ;; sparc*-*-solaris*) @@ -4365,7 +4752,7 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) esac # GNU ld 2.21 introduced _sol2 emulations. Use them if available. if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then - LD="${LD-ld}_sol2" + LD=${LD-ld}_sol2 fi ;; *) @@ -4381,7 +4768,7 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) ;; esac -need_locks="$enable_libtool_lock" +need_locks=$enable_libtool_lock ])# _LT_ENABLE_LOCK @@ -4400,11 +4787,11 @@ AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file], [echo conftest.$ac_objext > conftest.lst lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD' AC_TRY_EVAL([lt_ar_try]) - if test "$ac_status" -eq 0; then + if test 0 -eq "$ac_status"; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a AC_TRY_EVAL([lt_ar_try]) - if test "$ac_status" -ne 0; then + if test 0 -ne "$ac_status"; then lt_cv_ar_at_file=@ fi fi @@ -4412,7 +4799,7 @@ AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file], ]) ]) -if test "x$lt_cv_ar_at_file" = xno; then +if test no = "$lt_cv_ar_at_file"; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file @@ -4443,7 +4830,7 @@ old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in - openbsd*) + bitrig* | openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" ;; *) @@ -4479,7 +4866,7 @@ AC_CACHE_CHECK([$1], [$2], [$2=no m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) echo "$lt_simple_compile_test_code" > conftest.$ac_ext - lt_compiler_flag="$3" + lt_compiler_flag="$3" ## exclude from sc_useless_quotes_in_assignment # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins @@ -4506,7 +4893,7 @@ AC_CACHE_CHECK([$1], [$2], $RM conftest* ]) -if test x"[$]$2" = xyes; then +if test yes = "[$]$2"; then m4_if([$5], , :, [$5]) else m4_if([$6], , :, [$6]) @@ -4528,7 +4915,7 @@ AC_DEFUN([_LT_LINKER_OPTION], m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no - save_LDFLAGS="$LDFLAGS" + save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS $3" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then @@ -4547,10 +4934,10 @@ AC_CACHE_CHECK([$1], [$2], fi fi $RM -r conftest* - LDFLAGS="$save_LDFLAGS" + LDFLAGS=$save_LDFLAGS ]) -if test x"[$]$2" = xyes; then +if test yes = "[$]$2"; then m4_if([$4], , :, [$4]) else m4_if([$5], , :, [$5]) @@ -4571,7 +4958,7 @@ AC_DEFUN([LT_CMD_MAX_LEN], AC_MSG_CHECKING([the maximum length of command line arguments]) AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl i=0 - teststring="ABCD" + teststring=ABCD case $build_os in msdosdjgpp*) @@ -4611,7 +4998,7 @@ AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl lt_cv_sys_max_cmd_len=8192; ;; - netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) + bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` @@ -4661,22 +5048,23 @@ AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` - if test -n "$lt_cv_sys_max_cmd_len"; then + if test -n "$lt_cv_sys_max_cmd_len" && \ + test undefined != "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. - for i in 1 2 3 4 5 6 7 8 ; do + for i in 1 2 3 4 5 6 7 8; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. - while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \ + while { test X`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && - test $i != 17 # 1/2 MB should be enough + test 17 != "$i" # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring @@ -4692,7 +5080,7 @@ AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl ;; esac ]) -if test -n $lt_cv_sys_max_cmd_len ; then +if test -n "$lt_cv_sys_max_cmd_len"; then AC_MSG_RESULT($lt_cv_sys_max_cmd_len) else AC_MSG_RESULT(none) @@ -4720,7 +5108,7 @@ m4_defun([_LT_HEADER_DLFCN], # ---------------------------------------------------------------- m4_defun([_LT_TRY_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl -if test "$cross_compiling" = yes; then : +if test yes = "$cross_compiling"; then : [$4] else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 @@ -4767,9 +5155,9 @@ else # endif #endif -/* When -fvisbility=hidden is used, assume the code has been annotated +/* When -fvisibility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ -#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) +#if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif @@ -4795,7 +5183,7 @@ int main () return status; }] _LT_EOF - if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then + if AC_TRY_EVAL(ac_link) && test -s "conftest$ac_exeext" 2>/dev/null; then (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null lt_status=$? case x$lt_status in @@ -4816,7 +5204,7 @@ rm -fr conftest* # ------------------ AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl -if test "x$enable_dlopen" != xyes; then +if test yes != "$enable_dlopen"; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown @@ -4826,44 +5214,52 @@ else case $host_os in beos*) - lt_cv_dlopen="load_add_on" + lt_cv_dlopen=load_add_on lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32* | cegcc*) - lt_cv_dlopen="LoadLibrary" + lt_cv_dlopen=LoadLibrary lt_cv_dlopen_libs= ;; cygwin*) - lt_cv_dlopen="dlopen" + lt_cv_dlopen=dlopen lt_cv_dlopen_libs= ;; darwin*) - # if libdl is installed we need to link against it + # if libdl is installed we need to link against it AC_CHECK_LIB([dl], [dlopen], - [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ - lt_cv_dlopen="dyld" + [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl],[ + lt_cv_dlopen=dyld lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ]) ;; + tpf*) + # Don't try to run any link tests for TPF. We know it's impossible + # because TPF is a cross-compiler, and we know how we open DSOs. + lt_cv_dlopen=dlopen + lt_cv_dlopen_libs= + lt_cv_dlopen_self=no + ;; + *) AC_CHECK_FUNC([shl_load], - [lt_cv_dlopen="shl_load"], + [lt_cv_dlopen=shl_load], [AC_CHECK_LIB([dld], [shl_load], - [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"], + [lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld], [AC_CHECK_FUNC([dlopen], - [lt_cv_dlopen="dlopen"], + [lt_cv_dlopen=dlopen], [AC_CHECK_LIB([dl], [dlopen], - [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], + [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl], [AC_CHECK_LIB([svld], [dlopen], - [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], + [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld], [AC_CHECK_LIB([dld], [dld_link], - [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"]) + [lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld]) ]) ]) ]) @@ -4872,21 +5268,21 @@ else ;; esac - if test "x$lt_cv_dlopen" != xno; then - enable_dlopen=yes - else + if test no = "$lt_cv_dlopen"; then enable_dlopen=no + else + enable_dlopen=yes fi case $lt_cv_dlopen in dlopen) - save_CPPFLAGS="$CPPFLAGS" - test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" + save_CPPFLAGS=$CPPFLAGS + test yes = "$ac_cv_header_dlfcn_h" && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" - save_LDFLAGS="$LDFLAGS" + save_LDFLAGS=$LDFLAGS wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" - save_LIBS="$LIBS" + save_LIBS=$LIBS LIBS="$lt_cv_dlopen_libs $LIBS" AC_CACHE_CHECK([whether a program can dlopen itself], @@ -4896,7 +5292,7 @@ else lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) ]) - if test "x$lt_cv_dlopen_self" = xyes; then + if test yes = "$lt_cv_dlopen_self"; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" AC_CACHE_CHECK([whether a statically linked program can dlopen itself], lt_cv_dlopen_self_static, [dnl @@ -4906,9 +5302,9 @@ else ]) fi - CPPFLAGS="$save_CPPFLAGS" - LDFLAGS="$save_LDFLAGS" - LIBS="$save_LIBS" + CPPFLAGS=$save_CPPFLAGS + LDFLAGS=$save_LDFLAGS + LIBS=$save_LIBS ;; esac @@ -5000,8 +5396,8 @@ m4_defun([_LT_COMPILER_FILE_LOCKS], m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_COMPILER_C_O([$1]) -hard_links="nottested" -if test "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then +hard_links=nottested +if test no = "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" && test no != "$need_locks"; then # do not overwrite the value of need_locks provided by the user AC_MSG_CHECKING([if we can lock with hard links]) hard_links=yes @@ -5011,8 +5407,8 @@ if test "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no AC_MSG_RESULT([$hard_links]) - if test "$hard_links" = no; then - AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) + if test no = "$hard_links"; then + AC_MSG_WARN(['$CC' does not support '-c -o', so 'make -j' may be unsafe]) need_locks=warn fi else @@ -5039,8 +5435,8 @@ objdir=$lt_cv_objdir _LT_DECL([], [objdir], [0], [The name of the directory that contains temporary libtool files])dnl m4_pattern_allow([LT_OBJDIR])dnl -AC_DEFINE_UNQUOTED(LT_OBJDIR, "$lt_cv_objdir/", - [Define to the sub-directory in which libtool stores uninstalled libraries.]) +AC_DEFINE_UNQUOTED([LT_OBJDIR], "$lt_cv_objdir/", + [Define to the sub-directory where libtool stores uninstalled libraries.]) ])# _LT_CHECK_OBJDIR @@ -5052,15 +5448,15 @@ m4_defun([_LT_LINKER_HARDCODE_LIBPATH], _LT_TAGVAR(hardcode_action, $1)= if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" || test -n "$_LT_TAGVAR(runpath_var, $1)" || - test "X$_LT_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then + test yes = "$_LT_TAGVAR(hardcode_automatic, $1)"; then # We can hardcode non-existent directories. - if test "$_LT_TAGVAR(hardcode_direct, $1)" != no && + if test no != "$_LT_TAGVAR(hardcode_direct, $1)" && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one - ## test "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" != no && - test "$_LT_TAGVAR(hardcode_minus_L, $1)" != no; then + ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" && + test no != "$_LT_TAGVAR(hardcode_minus_L, $1)"; then # Linking always hardcodes the temporary library directory. _LT_TAGVAR(hardcode_action, $1)=relink else @@ -5074,12 +5470,12 @@ else fi AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)]) -if test "$_LT_TAGVAR(hardcode_action, $1)" = relink || - test "$_LT_TAGVAR(inherit_rpath, $1)" = yes; then +if test relink = "$_LT_TAGVAR(hardcode_action, $1)" || + test yes = "$_LT_TAGVAR(inherit_rpath, $1)"; then # Fast installation is not supported enable_fast_install=no -elif test "$shlibpath_overrides_runpath" = yes || - test "$enable_shared" = no; then +elif test yes = "$shlibpath_overrides_runpath" || + test no = "$enable_shared"; then # Fast installation is not necessary enable_fast_install=needless fi @@ -5103,7 +5499,7 @@ else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) - if test -n "$STRIP" ; then + if test -n "$STRIP"; then striplib="$STRIP -x" old_striplib="$STRIP -S" AC_MSG_RESULT([yes]) @@ -5121,6 +5517,47 @@ _LT_DECL([], [striplib], [1]) ])# _LT_CMD_STRIPLIB +# _LT_PREPARE_MUNGE_PATH_LIST +# --------------------------- +# Make sure func_munge_path_list() is defined correctly. +m4_defun([_LT_PREPARE_MUNGE_PATH_LIST], +[[# func_munge_path_list VARIABLE PATH +# ----------------------------------- +# VARIABLE is name of variable containing _space_ separated list of +# directories to be munged by the contents of PATH, which is string +# having a format: +# "DIR[:DIR]:" +# string "DIR[ DIR]" will be prepended to VARIABLE +# ":DIR[:DIR]" +# string "DIR[ DIR]" will be appended to VARIABLE +# "DIRP[:DIRP]::[DIRA:]DIRA" +# string "DIRP[ DIRP]" will be prepended to VARIABLE and string +# "DIRA[ DIRA]" will be appended to VARIABLE +# "DIR[:DIR]" +# VARIABLE will be replaced by "DIR[ DIR]" +func_munge_path_list () +{ + case x@S|@2 in + x) + ;; + *:) + eval @S|@1=\"`$ECHO @S|@2 | $SED 's/:/ /g'` \@S|@@S|@1\" + ;; + x:*) + eval @S|@1=\"\@S|@@S|@1 `$ECHO @S|@2 | $SED 's/:/ /g'`\" + ;; + *::*) + eval @S|@1=\"\@S|@@S|@1\ `$ECHO @S|@2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" + eval @S|@1=\"`$ECHO @S|@2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \@S|@@S|@1\" + ;; + *) + eval @S|@1=\"`$ECHO @S|@2 | $SED 's/:/ /g'`\" + ;; + esac +} +]])# _LT_PREPARE_PATH_LIST + + # _LT_SYS_DYNAMIC_LINKER([TAG]) # ----------------------------- # PORTME Fill in your ld.so characteristics @@ -5131,17 +5568,18 @@ m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_OBJDUMP])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_CHECK_SHELL_FEATURES])dnl +m4_require([_LT_PREPARE_MUNGE_PATH_LIST])dnl AC_MSG_CHECKING([dynamic linker characteristics]) m4_if([$1], [], [ -if test "$GCC" = yes; then +if test yes = "$GCC"; then case $host_os in - darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; - *) lt_awk_arg="/^libraries:/" ;; + darwin*) lt_awk_arg='/^libraries:/,/LR/' ;; + *) lt_awk_arg='/^libraries:/' ;; esac case $host_os in - mingw* | cegcc*) lt_sed_strip_eq="s,=\([[A-Za-z]]:\),\1,g" ;; - *) lt_sed_strip_eq="s,=/,/,g" ;; + mingw* | cegcc*) lt_sed_strip_eq='s|=\([[A-Za-z]]:\)|\1|g' ;; + *) lt_sed_strip_eq='s|=/|/|g' ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` case $lt_search_path_spec in @@ -5157,28 +5595,35 @@ if test "$GCC" = yes; then ;; esac # Ok, now we have the path, separated by spaces, we can step through it - # and add multilib dir if necessary. + # and add multilib dir if necessary... lt_tmp_lt_search_path_spec= - lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` + lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` + # ...but if some path component already ends with the multilib dir we assume + # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer). + case "$lt_multi_os_dir; $lt_search_path_spec " in + "/; "* | "/.; "* | "/./; "* | *"$lt_multi_os_dir "* | *"$lt_multi_os_dir/ "*) + lt_multi_os_dir= + ;; + esac for lt_sys_path in $lt_search_path_spec; do - if test -d "$lt_sys_path/$lt_multi_os_dir"; then - lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" - else + if test -d "$lt_sys_path$lt_multi_os_dir"; then + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir" + elif test -n "$lt_multi_os_dir"; then test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' -BEGIN {RS=" "; FS="/|\n";} { - lt_foo=""; - lt_count=0; +BEGIN {RS = " "; FS = "/|\n";} { + lt_foo = ""; + lt_count = 0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { - lt_foo="/" $lt_i lt_foo; + lt_foo = "/" $lt_i lt_foo; } else { lt_count--; } @@ -5192,7 +5637,7 @@ BEGIN {RS=" "; FS="/|\n";} { # for these hosts. case $host_os in mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ - $SED 's,/\([[A-Za-z]]:\),\1,g'` ;; + $SED 's|/\([[A-Za-z]]:\)|\1|g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else @@ -5201,7 +5646,7 @@ fi]) library_names_spec= libname_spec='lib$name' soname_spec= -shrext_cmds=".so" +shrext_cmds=.so postinstall_cmds= postuninstall_cmds= finish_cmds= @@ -5218,14 +5663,17 @@ hardcode_into_libs=no # flags to be left without arguments need_version=unknown +AC_ARG_VAR([LT_SYS_LIBRARY_PATH], +[User-defined run-time library search path.]) + case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' + library_names_spec='$libname$release$shared_ext$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. - soname_spec='${libname}${release}${shared_ext}$major' + soname_spec='$libname$release$shared_ext$major' ;; aix[[4-9]]*) @@ -5233,41 +5681,91 @@ aix[[4-9]]*) need_lib_prefix=no need_version=no hardcode_into_libs=yes - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 supports IA64 - library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with - # the line `#! .'. This would cause the generated library to - # depend on `.', always an invalid library. This was fixed in + # the line '#! .'. This would cause the generated library to + # depend on '.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[[01]] | aix4.[[01]].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' - echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then + echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac - # AIX (on Power*) has no versioning support, so currently we can not hardcode correct + # Using Import Files as archive members, it is possible to support + # filename-based versioning of shared library archives on AIX. While + # this would work for both with and without runtime linking, it will + # prevent static linking of such archives. So we do filename-based + # shared library versioning with .so extension only, which is used + # when both runtime linking and shared linking is enabled. + # Unfortunately, runtime linking may impact performance, so we do + # not want this to be the default eventually. Also, we use the + # versioned .so libs for executables only if there is the -brtl + # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only. + # To allow for filename-based versioning support, we need to create + # libNAME.so.V as an archive file, containing: + # *) an Import File, referring to the versioned filename of the + # archive as well as the shared archive member, telling the + # bitwidth (32 or 64) of that shared object, and providing the + # list of exported symbols of that shared object, eventually + # decorated with the 'weak' keyword + # *) the shared object with the F_LOADONLY flag set, to really avoid + # it being seen by the linker. + # At run time we better use the real file rather than another symlink, + # but for link time we create the symlink libNAME.so -> libNAME.so.V + + case $with_aix_soname,$aix_use_runtimelinking in + # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. - if test "$aix_use_runtimelinking" = yes; then + aix,yes) # traditional libtool + dynamic_linker='AIX unversionable lib.so' # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - else + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + ;; + aix,no) # traditional AIX only + dynamic_linker='AIX lib.a[(]lib.so.V[)]' # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. - library_names_spec='${libname}${release}.a $libname.a' - soname_spec='${libname}${release}${shared_ext}$major' - fi + library_names_spec='$libname$release.a $libname.a' + soname_spec='$libname$release$shared_ext$major' + ;; + svr4,*) # full svr4 only + dynamic_linker="AIX lib.so.V[(]$shared_archive_member_spec.o[)]" + library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' + # We do not specify a path in Import Files, so LIBPATH fires. + shlibpath_overrides_runpath=yes + ;; + *,yes) # both, prefer svr4 + dynamic_linker="AIX lib.so.V[(]$shared_archive_member_spec.o[)], lib.a[(]lib.so.V[)]" + library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' + # unpreferred sharedlib libNAME.a needs extra handling + postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' + postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' + # We do not specify a path in Import Files, so LIBPATH fires. + shlibpath_overrides_runpath=yes + ;; + *,no) # both, prefer aix + dynamic_linker="AIX lib.a[(]lib.so.V[)], lib.so.V[(]$shared_archive_member_spec.o[)]" + library_names_spec='$libname$release.a $libname.a' + soname_spec='$libname$release$shared_ext$major' + # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling + postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' + postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' + ;; + esac shlibpath_var=LIBPATH fi ;; @@ -5277,18 +5775,18 @@ amigaos*) powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. - finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) - library_names_spec='${libname}${shared_ext}' + library_names_spec='$libname$shared_ext' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; @@ -5296,8 +5794,8 @@ beos*) bsdi[[45]]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" @@ -5309,7 +5807,7 @@ bsdi[[45]]*) cygwin* | mingw* | pw32* | cegcc*) version_type=windows - shrext_cmds=".dll" + shrext_cmds=.dll need_version=no need_lib_prefix=no @@ -5318,8 +5816,8 @@ cygwin* | mingw* | pw32* | cegcc*) # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \${file}`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ @@ -5335,17 +5833,17 @@ cygwin* | mingw* | pw32* | cegcc*) case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' - soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"]) ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix - soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' - library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' ;; esac dynamic_linker='Win32 ld.exe' @@ -5354,8 +5852,8 @@ m4_if([$1], [],[ *,cl*) # Native MSVC libname_spec='$name' - soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' - library_names_spec='${libname}.dll.lib' + soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' + library_names_spec='$libname.dll.lib' case $build_os in mingw*) @@ -5382,7 +5880,7 @@ m4_if([$1], [],[ sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) - sys_lib_search_path_spec="$LIB" + sys_lib_search_path_spec=$LIB if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` @@ -5395,8 +5893,8 @@ m4_if([$1], [],[ esac # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \${file}`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' @@ -5409,7 +5907,7 @@ m4_if([$1], [],[ *) # Assume MSVC wrapper - library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' + library_names_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac @@ -5422,8 +5920,8 @@ darwin* | rhapsody*) version_type=darwin need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' - soname_spec='${libname}${release}${major}$shared_ext' + library_names_spec='$libname$release$major$shared_ext $libname$shared_ext' + soname_spec='$libname$release$major$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' @@ -5436,8 +5934,8 @@ dgux*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; @@ -5455,12 +5953,13 @@ freebsd* | dragonfly*) version_type=freebsd-$objformat case $version_type in freebsd-elf*) - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' need_version=no need_lib_prefix=no ;; freebsd-*) - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' need_version=yes ;; esac @@ -5485,26 +5984,15 @@ freebsd* | dragonfly*) esac ;; -gnu*) - version_type=linux # correct to gnu/linux during the next big refactor - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LIBRARY_PATH - shlibpath_overrides_runpath=yes + shlibpath_overrides_runpath=no sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; @@ -5522,14 +6010,15 @@ hpux9* | hpux10* | hpux11*) dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - if test "X$HPUX_IA64_MODE" = X32; then + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + if test 32 = "$HPUX_IA64_MODE"; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" + sys_lib_dlsearch_path_spec=/usr/lib/hpux32 else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" + sys_lib_dlsearch_path_spec=/usr/lib/hpux64 fi - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' @@ -5537,8 +6026,8 @@ hpux9* | hpux10* | hpux11*) dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; @@ -5547,8 +6036,8 @@ hpux9* | hpux10* | hpux11*) dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... @@ -5561,8 +6050,8 @@ interix[[3-9]]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no @@ -5573,7 +6062,7 @@ irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) - if test "$lt_cv_prog_gnu_ld" = yes; then + if test yes = "$lt_cv_prog_gnu_ld"; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix @@ -5581,8 +6070,8 @@ irix5* | irix6* | nonstopux*) esac need_lib_prefix=no need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' + soname_spec='$libname$release$shared_ext$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= @@ -5601,8 +6090,8 @@ irix5* | irix6* | nonstopux*) esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no - sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" - sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" + sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff" + sys_lib_dlsearch_path_spec="/usr/lib$libsuff /lib$libsuff" hardcode_into_libs=yes ;; @@ -5611,13 +6100,33 @@ linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; +linux*android*) + version_type=none # Android doesn't support versioned libraries. + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext' + soname_spec='$libname$release$shared_ext' + finish_cmds= + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + dynamic_linker='Android linker' + # Don't embed -rpath directories since the linker doesn't support them. + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + ;; + # This must be glibc/ELF. -linux* | k*bsd*-gnu | kopensolaris*-gnu) +linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no @@ -5645,11 +6154,15 @@ linux* | k*bsd*-gnu | kopensolaris*-gnu) # Add ABI-specific directories to the system library path. sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib" - # Append ld.so.conf contents to the search path + # Ideally, we could use ldconfig to report *all* directores which are + # searched for libraries, however this is still not possible. Aside from not + # being certain /sbin/ldconfig is available, command + # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64, + # even though it is searched at run-time. Try to do the best guess by + # appending ld.so.conf contents (and includes) to the search path. if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" - fi # We used to test for /lib/ld.so.1 and disable shared libraries on @@ -5666,12 +6179,12 @@ netbsd*) need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH @@ -5681,7 +6194,7 @@ netbsd*) newsos6) version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; @@ -5690,58 +6203,68 @@ newsos6) version_type=qnx need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; -openbsd*) +openbsd* | bitrig*) version_type=sunos - sys_lib_dlsearch_path_spec="/usr/lib" + sys_lib_dlsearch_path_spec=/usr/lib need_lib_prefix=no - # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. - case $host_os in - openbsd3.3 | openbsd3.3.*) need_version=yes ;; - *) need_version=no ;; - esac - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then + need_version=no + else + need_version=yes + fi + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - case $host_os in - openbsd2.[[89]] | openbsd2.[[89]].*) - shlibpath_overrides_runpath=no - ;; - *) - shlibpath_overrides_runpath=yes - ;; - esac - else - shlibpath_overrides_runpath=yes - fi + shlibpath_overrides_runpath=yes ;; os2*) libname_spec='$name' - shrext_cmds=".dll" + version_type=windows + shrext_cmds=.dll + need_version=no need_lib_prefix=no - library_names_spec='$libname${shared_ext} $libname.a' + # OS/2 can only load a DLL with a base name of 8 characters or less. + soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; + v=$($ECHO $release$versuffix | tr -d .-); + n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); + $ECHO $n$v`$shared_ext' + library_names_spec='${libname}_dll.$libext' dynamic_linker='OS/2 ld.exe' - shlibpath_var=LIBPATH + shlibpath_var=BEGINLIBPATH + sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='$libname$release$shared_ext$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" - sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; rdos*) @@ -5752,8 +6275,8 @@ solaris*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes @@ -5763,11 +6286,11 @@ solaris*) sunos4*) version_type=sunos - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes - if test "$with_gnu_ld" = yes; then + if test yes = "$with_gnu_ld"; then need_lib_prefix=no fi need_version=yes @@ -5775,8 +6298,8 @@ sunos4*) sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) @@ -5797,24 +6320,24 @@ sysv4 | sysv4.3*) ;; sysv4*MP*) - if test -d /usr/nec ;then + if test -d /usr/nec; then version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' - soname_spec='$libname${shared_ext}.$major' + library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext' + soname_spec='$libname$shared_ext.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - version_type=freebsd-elf + version_type=sco need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes - if test "$with_gnu_ld" = yes; then + if test yes = "$with_gnu_ld"; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' @@ -5832,7 +6355,7 @@ tpf*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes @@ -5840,8 +6363,8 @@ tpf*) uts4*) version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; @@ -5850,20 +6373,30 @@ uts4*) ;; esac AC_MSG_RESULT([$dynamic_linker]) -test "$dynamic_linker" = no && can_build_shared=no +test no = "$dynamic_linker" && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" -if test "$GCC" = yes; then +if test yes = "$GCC"; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi -if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then - sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" +if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then + sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec fi -if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then - sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" + +if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then + sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec fi +# remember unaugmented sys_lib_dlsearch_path content for libtool script decls... +configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec + +# ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code +func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH" + +# to be used as default LT_SYS_LIBRARY_PATH value in generated libtool +configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH + _LT_DECL([], [variables_saved_for_relink], [1], [Variables whose values should be saved in libtool wrapper scripts and restored at link time]) @@ -5896,39 +6429,41 @@ _LT_DECL([], [hardcode_into_libs], [0], [Whether we should hardcode library paths into libraries]) _LT_DECL([], [sys_lib_search_path_spec], [2], [Compile-time system search path for libraries]) -_LT_DECL([], [sys_lib_dlsearch_path_spec], [2], - [Run-time system search path for libraries]) +_LT_DECL([sys_lib_dlsearch_path_spec], [configure_time_dlsearch_path], [2], + [Detected run-time system search path for libraries]) +_LT_DECL([], [configure_time_lt_sys_library_path], [2], + [Explicit LT_SYS_LIBRARY_PATH set during ./configure time]) ])# _LT_SYS_DYNAMIC_LINKER # _LT_PATH_TOOL_PREFIX(TOOL) # -------------------------- -# find a file program which can recognize shared library +# find a file program that can recognize shared library AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl AC_MSG_CHECKING([for $1]) AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, [case $MAGIC_CMD in [[\\/*] | ?:[\\/]*]) - lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. + lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path. ;; *) - lt_save_MAGIC_CMD="$MAGIC_CMD" - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + lt_save_MAGIC_CMD=$MAGIC_CMD + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR dnl $ac_dummy forces splitting on constant user-supplied paths. dnl POSIX.2 word splitting is done only on the output of word expansions, dnl not every word. This closes a longstanding sh security hole. ac_dummy="m4_if([$2], , $PATH, [$2])" for ac_dir in $ac_dummy; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. - if test -f $ac_dir/$1; then - lt_cv_path_MAGIC_CMD="$ac_dir/$1" + if test -f "$ac_dir/$1"; then + lt_cv_path_MAGIC_CMD=$ac_dir/"$1" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` - MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + MAGIC_CMD=$lt_cv_path_MAGIC_CMD if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : @@ -5951,11 +6486,11 @@ _LT_EOF break fi done - IFS="$lt_save_ifs" - MAGIC_CMD="$lt_save_MAGIC_CMD" + IFS=$lt_save_ifs + MAGIC_CMD=$lt_save_MAGIC_CMD ;; esac]) -MAGIC_CMD="$lt_cv_path_MAGIC_CMD" +MAGIC_CMD=$lt_cv_path_MAGIC_CMD if test -n "$MAGIC_CMD"; then AC_MSG_RESULT($MAGIC_CMD) else @@ -5973,7 +6508,7 @@ dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], []) # _LT_PATH_MAGIC # -------------- -# find a file program which can recognize a shared library +# find a file program that can recognize a shared library m4_defun([_LT_PATH_MAGIC], [_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) if test -z "$lt_cv_path_MAGIC_CMD"; then @@ -6000,16 +6535,16 @@ m4_require([_LT_PROG_ECHO_BACKSLASH])dnl AC_ARG_WITH([gnu-ld], [AS_HELP_STRING([--with-gnu-ld], [assume the C compiler uses GNU ld @<:@default=no@:>@])], - [test "$withval" = no || with_gnu_ld=yes], + [test no = "$withval" || with_gnu_ld=yes], [with_gnu_ld=no])dnl ac_prog=ld -if test "$GCC" = yes; then +if test yes = "$GCC"; then # Check if gcc -print-prog-name=ld gives a path. AC_MSG_CHECKING([for ld used by $CC]) case $host in *-*-mingw*) - # gcc leaves a trailing carriage return which upsets mingw + # gcc leaves a trailing carriage return, which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; @@ -6023,7 +6558,7 @@ if test "$GCC" = yes; then while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done - test -z "$LD" && LD="$ac_prog" + test -z "$LD" && LD=$ac_prog ;; "") # If it fails, then pretend we aren't using GCC. @@ -6034,37 +6569,37 @@ if test "$GCC" = yes; then with_gnu_ld=unknown ;; esac -elif test "$with_gnu_ld" = yes; then +elif test yes = "$with_gnu_ld"; then AC_MSG_CHECKING([for GNU ld]) else AC_MSG_CHECKING([for non-GNU ld]) fi AC_CACHE_VAL(lt_cv_path_LD, [if test -z "$LD"; then - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then - lt_cv_path_LD="$ac_dir/$ac_prog" + lt_cv_path_LD=$ac_dir/$ac_prog # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 conftest.i +cat conftest.i conftest.i >conftest2.i +: ${lt_DD:=$DD} +AC_PATH_PROGS_FEATURE_CHECK([lt_DD], [dd], +[if "$ac_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then + cmp -s conftest.i conftest.out \ + && ac_cv_path_lt_DD="$ac_path_lt_DD" ac_path_lt_DD_found=: +fi]) +rm -f conftest.i conftest2.i conftest.out]) +])# _LT_PATH_DD + + +# _LT_CMD_TRUNCATE +# ---------------- +# find command to truncate a binary pipe +m4_defun([_LT_CMD_TRUNCATE], +[m4_require([_LT_PATH_DD]) +AC_CACHE_CHECK([how to truncate binary pipes], [lt_cv_truncate_bin], +[printf 0123456789abcdef0123456789abcdef >conftest.i +cat conftest.i conftest.i >conftest2.i +lt_cv_truncate_bin= +if "$ac_cv_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then + cmp -s conftest.i conftest.out \ + && lt_cv_truncate_bin="$ac_cv_path_lt_DD bs=4096 count=1" +fi +rm -f conftest.i conftest2.i conftest.out +test -z "$lt_cv_truncate_bin" && lt_cv_truncate_bin="$SED -e 4q"]) +_LT_DECL([lt_truncate_bin], [lt_cv_truncate_bin], [1], + [Command to truncate a binary pipe]) +])# _LT_CMD_TRUNCATE + + # _LT_CHECK_MAGIC_METHOD # ---------------------- # how to check for library dependencies @@ -6150,13 +6722,13 @@ lt_cv_deplibs_check_method='unknown' # Need to set the preceding variable on all platforms that support # interlibrary dependencies. # 'none' -- dependencies not supported. -# `unknown' -- same as none, but documents that we really don't know. +# 'unknown' -- same as none, but documents that we really don't know. # 'pass_all' -- all dependencies passed with no checks. # 'test_compile' -- check by making test program. # 'file_magic [[regex]]' -- check by looking for files in library path -# which responds to the $file_magic_cmd with a given extended regex. -# If you have `file' or equivalent on your system and you're not sure -# whether `pass_all' will *always* work, you probably want this one. +# that responds to the $file_magic_cmd with a given extended regex. +# If you have 'file' or equivalent on your system and you're not sure +# whether 'pass_all' will *always* work, you probably want this one. case $host_os in aix[[4-9]]*) @@ -6183,8 +6755,7 @@ mingw* | pw32*) # Base MSYS/MinGW do not provide the 'file' command needed by # func_win32_libid shell function, so use a weaker test based on 'objdump', # unless we find 'file', for example because we are cross-compiling. - # func_win32_libid assumes BSD nm, so disallow it if using MS dumpbin. - if ( test "$lt_cv_nm_interface" = "BSD nm" && file / ) >/dev/null 2>&1; then + if ( file / ) >/dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else @@ -6220,10 +6791,6 @@ freebsd* | dragonfly*) fi ;; -gnu*) - lt_cv_deplibs_check_method=pass_all - ;; - haiku*) lt_cv_deplibs_check_method=pass_all ;; @@ -6262,7 +6829,7 @@ irix5* | irix6* | nonstopux*) ;; # This must be glibc/ELF. -linux* | k*bsd*-gnu | kopensolaris*-gnu) +linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) lt_cv_deplibs_check_method=pass_all ;; @@ -6284,8 +6851,8 @@ newos6*) lt_cv_deplibs_check_method=pass_all ;; -openbsd*) - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then +openbsd* | bitrig*) + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' @@ -6338,6 +6905,9 @@ sysv4 | sysv4.3*) tpf*) lt_cv_deplibs_check_method=pass_all ;; +os2*) + lt_cv_deplibs_check_method=pass_all + ;; esac ]) @@ -6378,33 +6948,38 @@ AC_DEFUN([LT_PATH_NM], AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM, [if test -n "$NM"; then # Let the user override the test. - lt_cv_path_NM="$NM" + lt_cv_path_NM=$NM else - lt_nm_to_check="${ac_tool_prefix}nm" + lt_nm_to_check=${ac_tool_prefix}nm if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. - tmp_nm="$ac_dir/$lt_tmp_nm" - if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then + tmp_nm=$ac_dir/$lt_tmp_nm + if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext"; then # Check to see if the nm accepts a BSD-compat flag. - # Adding the `sed 1q' prevents false positives on HP-UX, which says: + # Adding the 'sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file - case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in - */dev/null* | *'Invalid file or object type'*) + # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty + case $build_os in + mingw*) lt_bad_file=conftest.nm/nofile ;; + *) lt_bad_file=/dev/null ;; + esac + case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in + *$lt_bad_file* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" - break + break 2 ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" - break + break 2 ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but @@ -6415,21 +6990,21 @@ else esac fi done - IFS="$lt_save_ifs" + IFS=$lt_save_ifs done : ${lt_cv_path_NM=no} fi]) -if test "$lt_cv_path_NM" != "no"; then - NM="$lt_cv_path_NM" +if test no != "$lt_cv_path_NM"; then + NM=$lt_cv_path_NM else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : # Let the user override the test. else AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :) - case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in + case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in *COFF*) - DUMPBIN="$DUMPBIN -symbols" + DUMPBIN="$DUMPBIN -symbols -headers" ;; *) DUMPBIN=: @@ -6437,8 +7012,8 @@ else esac fi AC_SUBST([DUMPBIN]) - if test "$DUMPBIN" != ":"; then - NM="$DUMPBIN" + if test : != "$DUMPBIN"; then + NM=$DUMPBIN fi fi test -z "$NM" && NM=nm @@ -6484,8 +7059,8 @@ lt_cv_sharedlib_from_linklib_cmd, case $host_os in cygwin* | mingw* | pw32* | cegcc*) - # two different shell functions defined in ltmain.sh - # decide which to use based on capabilities of $DLLTOOL + # two different shell functions defined in ltmain.sh; + # decide which one to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib @@ -6497,7 +7072,7 @@ cygwin* | mingw* | pw32* | cegcc*) ;; *) # fallback: assume linklib IS sharedlib - lt_cv_sharedlib_from_linklib_cmd="$ECHO" + lt_cv_sharedlib_from_linklib_cmd=$ECHO ;; esac ]) @@ -6524,13 +7099,28 @@ AC_CACHE_CHECK([if $MANIFEST_TOOL is a manifest tool], [lt_cv_path_mainfest_tool lt_cv_path_mainfest_tool=yes fi rm -f conftest*]) -if test "x$lt_cv_path_mainfest_tool" != xyes; then +if test yes != "$lt_cv_path_mainfest_tool"; then MANIFEST_TOOL=: fi _LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl ])# _LT_PATH_MANIFEST_TOOL +# _LT_DLL_DEF_P([FILE]) +# --------------------- +# True iff FILE is a Windows DLL '.def' file. +# Keep in sync with func_dll_def_p in the libtool script +AC_DEFUN([_LT_DLL_DEF_P], +[dnl + test DEF = "`$SED -n dnl + -e '\''s/^[[ ]]*//'\'' dnl Strip leading whitespace + -e '\''/^\(;.*\)*$/d'\'' dnl Delete empty lines and comments + -e '\''s/^\(EXPORTS\|LIBRARY\)\([[ ]].*\)*$/DEF/p'\'' dnl + -e q dnl Only consider the first "real" line + $1`" dnl +])# _LT_DLL_DEF_P + + # LT_LIB_M # -------- # check for math library @@ -6542,11 +7132,11 @@ case $host in # These system don't have libm, or don't need it ;; *-ncr-sysv4.3*) - AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") + AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM=-lmw) AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") ;; *) - AC_CHECK_LIB(m, cos, LIBM="-lm") + AC_CHECK_LIB(m, cos, LIBM=-lm) ;; esac AC_SUBST([LIBM]) @@ -6565,7 +7155,7 @@ m4_defun([_LT_COMPILER_NO_RTTI], _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= -if test "$GCC" = yes; then +if test yes = "$GCC"; then case $cc_basename in nvcc*) _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;; @@ -6617,7 +7207,7 @@ cygwin* | mingw* | pw32* | cegcc*) symcode='[[ABCDGISTW]]' ;; hpux*) - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then symcode='[[ABCDEGRST]]' fi ;; @@ -6650,14 +7240,44 @@ case `$NM -V 2>&1` in symcode='[[ABCDGIRSTW]]' ;; esac +if test "$lt_cv_nm_interface" = "MS dumpbin"; then + # Gets list of data symbols to import. + lt_cv_sys_global_symbol_to_import="sed -n -e 's/^I .* \(.*\)$/\1/p'" + # Adjust the below global symbol transforms to fixup imported variables. + lt_cdecl_hook=" -e 's/^I .* \(.*\)$/extern __declspec(dllimport) char \1;/p'" + lt_c_name_hook=" -e 's/^I .* \(.*\)$/ {\"\1\", (void *) 0},/p'" + lt_c_name_lib_hook="\ + -e 's/^I .* \(lib.*\)$/ {\"\1\", (void *) 0},/p'\ + -e 's/^I .* \(.*\)$/ {\"lib\1\", (void *) 0},/p'" +else + # Disable hooks by default. + lt_cv_sys_global_symbol_to_import= + lt_cdecl_hook= + lt_c_name_hook= + lt_c_name_lib_hook= +fi + # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. -lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" +lt_cv_sys_global_symbol_to_cdecl="sed -n"\ +$lt_cdecl_hook\ +" -e 's/^T .* \(.*\)$/extern int \1();/p'"\ +" -e 's/^$symcode$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address -lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p'" -lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \(lib[[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"lib\2\", (void *) \&\2},/p'" +lt_cv_sys_global_symbol_to_c_name_address="sed -n"\ +$lt_c_name_hook\ +" -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ +" -e 's/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/p'" + +# Transform an extracted symbol line into symbol name with lib prefix and +# symbol address. +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n"\ +$lt_c_name_lib_hook\ +" -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ +" -e 's/^$symcode$symcode* .* \(lib.*\)$/ {\"\1\", (void *) \&\1},/p'"\ +" -e 's/^$symcode$symcode* .* \(.*\)$/ {\"lib\1\", (void *) \&\1},/p'" # Handle CRLF in mingw tool chain opt_cr= @@ -6675,21 +7295,24 @@ for ac_symprfx in "" "_"; do # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then - # Fake it for dumpbin and say T for any non-static function - # and D for any global variable. + # Fake it for dumpbin and say T for any non-static function, + # D for any global variable and I for any imported variable. # Also find C++ and __fastcall symbols from MSVC++, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK ['"\ " {last_section=section; section=\$ 3};"\ " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ +" /^ *Symbol name *: /{split(\$ 0,sn,\":\"); si=substr(sn[2],2)};"\ +" /^ *Type *: code/{print \"T\",si,substr(si,length(prfx))};"\ +" /^ *Type *: data/{print \"I\",si,substr(si,length(prfx))};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ -" {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ -" {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ -" s[1]~/^[@?]/{print s[1], s[1]; next};"\ -" s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ +" {f=\"D\"}; \$ 0~/\(\).*\|/{f=\"T\"};"\ +" {split(\$ 0,a,/\||\r/); split(a[2],s)};"\ +" s[1]~/^[@?]/{print f,s[1],s[1]; next};"\ +" s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx]" else lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" @@ -6729,11 +7352,11 @@ _LT_EOF if $GREP ' nm_test_func$' "$nlist" >/dev/null; then cat <<_LT_EOF > conftest.$ac_ext /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ -#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) -/* DATA imports from DLLs on WIN32 con't be const, because runtime +#if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE +/* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT@&t@_DLSYM_CONST -#elif defined(__osf__) +#elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT@&t@_DLSYM_CONST #else @@ -6759,7 +7382,7 @@ lt__PROGRAM__LTX_preloaded_symbols[[]] = { { "@PROGRAM@", (void *) 0 }, _LT_EOF - $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext + $SED "s/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; @@ -6779,9 +7402,9 @@ _LT_EOF mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS - LIBS="conftstm.$ac_objext" + LIBS=conftstm.$ac_objext CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" - if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then + if AC_TRY_EVAL(ac_link) && test -s conftest$ac_exeext; then pipe_works=yes fi LIBS=$lt_globsym_save_LIBS @@ -6802,7 +7425,7 @@ _LT_EOF rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. - if test "$pipe_works" = yes; then + if test yes = "$pipe_works"; then break else lt_cv_sys_global_symbol_pipe= @@ -6829,12 +7452,16 @@ _LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1], [Take the output of nm and produce a listing of raw symbols and C names]) _LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1], [Transform the output of nm in a proper C declaration]) +_LT_DECL([global_symbol_to_import], [lt_cv_sys_global_symbol_to_import], [1], + [Transform the output of nm into a list of symbols to manually relocate]) _LT_DECL([global_symbol_to_c_name_address], [lt_cv_sys_global_symbol_to_c_name_address], [1], [Transform the output of nm in a C name address pair]) _LT_DECL([global_symbol_to_c_name_address_lib_prefix], [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1], [Transform the output of nm in a C name address pair when lib prefix is needed]) +_LT_DECL([nm_interface], [lt_cv_nm_interface], [1], + [The name lister interface]) _LT_DECL([], [nm_file_list_spec], [1], [Specify filename containing input files for $NM]) ]) # _LT_CMD_GLOBAL_SYMBOLS @@ -6850,17 +7477,18 @@ _LT_TAGVAR(lt_prog_compiler_static, $1)= m4_if([$1], [CXX], [ # C++ specific cases for pic, static, wl, etc. - if test "$GXX" = yes; then + if test yes = "$GXX"; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; amigaos*) @@ -6871,8 +7499,8 @@ m4_if([$1], [CXX], [ ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but - # adding the `-m68020' flag to GCC prevents building anything better, - # like `-m68040'. + # adding the '-m68020' flag to GCC prevents building anything better, + # like '-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac @@ -6888,6 +7516,11 @@ m4_if([$1], [CXX], [ # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + case $host_os in + os2*) + _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' + ;; + esac ;; darwin* | rhapsody*) # PIC is the default on this platform @@ -6937,7 +7570,7 @@ m4_if([$1], [CXX], [ case $host_os in aix[[4-9]]*) # All AIX code is PIC. - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else @@ -6978,14 +7611,14 @@ m4_if([$1], [CXX], [ case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' - if test "$host_cpu" != ia64; then + _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' + if test ia64 != "$host_cpu"; then _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' fi ;; aCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' + _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default @@ -7014,7 +7647,7 @@ m4_if([$1], [CXX], [ ;; esac ;; - linux* | k*bsd*-gnu | kopensolaris*-gnu) + linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # KAI C++ Compiler @@ -7022,7 +7655,7 @@ m4_if([$1], [CXX], [ _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; ecpc* ) - # old Intel C++ for x86_64 which still supported -KPIC. + # old Intel C++ for x86_64, which still supported -KPIC. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' @@ -7167,17 +7800,18 @@ m4_if([$1], [CXX], [ fi ], [ - if test "$GCC" = yes; then + if test yes = "$GCC"; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; amigaos*) @@ -7188,8 +7822,8 @@ m4_if([$1], [CXX], [ ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but - # adding the `-m68020' flag to GCC prevents building anything better, - # like `-m68040'. + # adding the '-m68020' flag to GCC prevents building anything better, + # like '-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac @@ -7206,6 +7840,11 @@ m4_if([$1], [CXX], [ # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + case $host_os in + os2*) + _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' + ;; + esac ;; darwin* | rhapsody*) @@ -7276,7 +7915,7 @@ m4_if([$1], [CXX], [ case $host_os in aix*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else @@ -7284,11 +7923,30 @@ m4_if([$1], [CXX], [ fi ;; + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' + case $cc_basename in + nagfor*) + # NAG Fortran compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + esac + ;; + mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + case $host_os in + os2*) + _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' + ;; + esac ;; hpux9* | hpux10* | hpux11*) @@ -7304,7 +7962,7 @@ m4_if([$1], [CXX], [ ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? - _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' + _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) @@ -7313,9 +7971,9 @@ m4_if([$1], [CXX], [ _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; - linux* | k*bsd*-gnu | kopensolaris*-gnu) + linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in - # old Intel for x86_64 which still supported -KPIC. + # old Intel for x86_64, which still supported -KPIC. ecc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' @@ -7340,6 +7998,12 @@ m4_if([$1], [CXX], [ _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; + tcc*) + # Fabrice Bellard et al's Tiny C Compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) @@ -7437,7 +8101,7 @@ m4_if([$1], [CXX], [ ;; sysv4*MP*) - if test -d /usr/nec ;then + if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi @@ -7466,7 +8130,7 @@ m4_if([$1], [CXX], [ fi ]) case $host_os in - # For platforms which do not support PIC, -DPIC is meaningless: + # For platforms that do not support PIC, -DPIC is meaningless: *djgpp*) _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; @@ -7532,17 +8196,21 @@ m4_if([$1], [CXX], [ case $host_os in aix[[4-9]]*) # If we're using GNU nm, then we don't want the "-C" option. - # -C means demangle to AIX nm, but means don't demangle with GNU nm - # Also, AIX nm treats weak defined symbols like other global defined - # symbols, whereas GNU nm marks them as "W". + # -C means demangle to GNU nm, but means don't demangle to AIX nm. + # Without the "-l" option, or with the "-B" option, AIX nm treats + # weak defined symbols like other global defined symbols, whereas + # GNU nm marks them as "W". + # While the 'weak' keyword is ignored in the Export File, we need + # it in the Import File for the 'aix-soname' feature, so we have + # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then - _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else - _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi ;; pw32*) - _LT_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" + _LT_TAGVAR(export_symbols_cmds, $1)=$ltdll_cmds ;; cygwin* | mingw* | cegcc*) case $cc_basename in @@ -7588,9 +8256,9 @@ m4_if([$1], [CXX], [ # included in the symbol list _LT_TAGVAR(include_expsyms, $1)= # exclude_expsyms can be an extended regexp of symbols to exclude - # it will be wrapped by ` (' and `)$', so one must not match beginning or - # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', - # as well as any symbol that contains `d'. + # it will be wrapped by ' (' and ')$', so one must not match beginning or + # end of line. Example: 'a|bc|.*d.*' will exclude the symbols 'a' and 'bc', + # as well as any symbol that contains 'd'. _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if @@ -7606,7 +8274,7 @@ dnl Note also adjust exclude_expsyms for C++ above. # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. - if test "$GCC" != yes; then + if test yes != "$GCC"; then with_gnu_ld=no fi ;; @@ -7614,7 +8282,7 @@ dnl Note also adjust exclude_expsyms for C++ above. # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; - openbsd*) + openbsd* | bitrig*) with_gnu_ld=no ;; esac @@ -7624,7 +8292,7 @@ dnl Note also adjust exclude_expsyms for C++ above. # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no - if test "$with_gnu_ld" = yes; then + if test yes = "$with_gnu_ld"; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility @@ -7646,24 +8314,24 @@ dnl Note also adjust exclude_expsyms for C++ above. esac fi - if test "$lt_use_gnu_ld_interface" = yes; then + if test yes = "$lt_use_gnu_ld_interface"; then # If archive_cmds runs LD, not CC, wlarc should be empty - wlarc='${wl}' + wlarc='$wl' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then - _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi supports_anon_versioning=no - case `$LD -v 2>&1` in + case `$LD -v | $SED -e 's/([^)]\+)\s\+//' 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... @@ -7676,7 +8344,7 @@ dnl Note also adjust exclude_expsyms for C++ above. case $host_os in aix[[3-9]]*) # On AIX/PPC, the GNU linker is very broken - if test "$host_cpu" != ia64; then + if test ia64 != "$host_cpu"; then _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 @@ -7695,7 +8363,7 @@ _LT_EOF case $host_cpu in powerpc) # see comment about AmigaOS4 .so support - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) @@ -7711,7 +8379,7 @@ _LT_EOF _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME - _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi @@ -7721,7 +8389,7 @@ _LT_EOF # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes @@ -7729,61 +8397,89 @@ _LT_EOF _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - # If the export-symbols file already is a .def file (1st line - # is EXPORTS), use it as is; otherwise, prepend... - _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - cp $export_symbols $output_objdir/$soname.def; - else - echo EXPORTS > $output_objdir/$soname.def; - cat $export_symbols >> $output_objdir/$soname.def; - fi~ - $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file, use it as + # is; otherwise, prepend EXPORTS... + _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; haiku*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=yes ;; + os2*) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + shrext_cmds=.dll + _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + prefix_cmds="$SED"~ + if test EXPORTS = "`$SED 1q $export_symbols`"; then + prefix_cmds="$prefix_cmds -e 1d"; + fi~ + prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ + cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + ;; + interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no - if test "$host_os" = linux-dietlibc; then + if test linux-dietlibc = "$host_os"; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ - && test "$tmp_diet" = no + && test no = "$tmp_diet" then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; @@ -7794,42 +8490,47 @@ _LT_EOF lf95*) # Lahey Fortran 8.1 _LT_TAGVAR(whole_archive_flag_spec, $1)= tmp_sharedflag='--shared' ;; + nagfor*) # NAGFOR 5.3 + tmp_sharedflag='-Wl,-shared' ;; xl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac - _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - if test "x$supports_anon_versioning" = xyes; then + if test yes = "$supports_anon_versioning"; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi case $cc_basename in + tcc*) + _LT_TAGVAR(export_dynamic_flag_spec, $1)='-rdynamic' + ;; xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' - if test "x$supports_anon_versioning" = xyes; then + if test yes = "$supports_anon_versioning"; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac @@ -7843,8 +8544,8 @@ _LT_EOF _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' fi ;; @@ -7862,8 +8563,8 @@ _LT_EOF _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi @@ -7875,7 +8576,7 @@ _LT_EOF _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 -*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not +*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 cannot *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify @@ -7890,9 +8591,9 @@ _LT_EOF # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi @@ -7909,15 +8610,15 @@ _LT_EOF *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac - if test "$_LT_TAGVAR(ld_shlibs, $1)" = no; then + if test no = "$_LT_TAGVAR(ld_shlibs, $1)"; then runpath_var= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= @@ -7933,7 +8634,7 @@ _LT_EOF # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. _LT_TAGVAR(hardcode_minus_L, $1)=yes - if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then + if test yes = "$GCC" && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. _LT_TAGVAR(hardcode_direct, $1)=unsupported @@ -7941,34 +8642,57 @@ _LT_EOF ;; aix[[4-9]]*) - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' - no_entry_flag="" + no_entry_flag= else # If we're using GNU nm, then we don't want the "-C" option. - # -C means demangle to AIX nm, but means don't demangle with GNU nm - # Also, AIX nm treats weak defined symbols like other global - # defined symbols, whereas GNU nm marks them as "W". + # -C means demangle to GNU nm, but means don't demangle to AIX nm. + # Without the "-l" option, or with the "-B" option, AIX nm treats + # weak defined symbols like other global defined symbols, whereas + # GNU nm marks them as "W". + # While the 'weak' keyword is ignored in the Export File, we need + # it in the Import File for the 'aix-soname' feature, so we have + # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then - _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else - _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we - # need to do runtime linking. + # have runtime linking enabled, and use it for executables. + # For shared libraries, we enable/disable runtime linking + # depending on the kind of the shared library created - + # when "with_aix_soname,aix_use_runtimelinking" is: + # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables + # "aix,yes" lib.so shared, rtl:yes, for executables + # lib.a static archive + # "both,no" lib.so.V(shr.o) shared, rtl:yes + # lib.a(lib.so.V) shared, rtl:no, for executables + # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a(lib.so.V) shared, rtl:no + # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a static archive case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do - if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then + if (test x-brtl = "x$ld_flag" || test x-Wl,-brtl = "x$ld_flag"); then aix_use_runtimelinking=yes break fi done + if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then + # With aix-soname=svr4, we create the lib.so.V shared archives only, + # so we don't have lib.a shared libs to link our executables. + # We have to force runtime linking in this case. + aix_use_runtimelinking=yes + LDFLAGS="$LDFLAGS -Wl,-brtl" + fi ;; esac @@ -7987,13 +8711,21 @@ _LT_EOF _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' + _LT_TAGVAR(file_list_spec, $1)='$wl-f,' + case $with_aix_soname,$aix_use_runtimelinking in + aix,*) ;; # traditional, no import file + svr4,* | *,yes) # use import file + # The Import File defines what to hardcode. + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=no + ;; + esac - if test "$GCC" = yes; then + if test yes = "$GCC"; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ - collect2name=`${CC} -print-prog-name=collect2` + collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then @@ -8012,61 +8744,80 @@ _LT_EOF ;; esac shared_flag='-shared' - if test "$aix_use_runtimelinking" = yes; then - shared_flag="$shared_flag "'${wl}-G' + if test yes = "$aix_use_runtimelinking"; then + shared_flag="$shared_flag "'$wl-G' fi + # Need to ensure runtime linking is disabled for the traditional + # shared library, or the linker may eventually find shared libraries + # /with/ Import File - we do not want to mix them. + shared_flag_aix='-shared' + shared_flag_svr4='-shared $wl-G' else # not using gcc - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else - if test "$aix_use_runtimelinking" = yes; then - shared_flag='${wl}-G' + if test yes = "$aix_use_runtimelinking"; then + shared_flag='$wl-G' else - shared_flag='${wl}-bM:SRE' + shared_flag='$wl-bM:SRE' fi + shared_flag_aix='$wl-bM:SRE' + shared_flag_svr4='$wl-G' fi fi - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. _LT_TAGVAR(always_export_symbols, $1)=yes - if test "$aix_use_runtimelinking" = yes; then + if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else - if test "$host_cpu" = ia64; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' + if test ia64 = "$host_cpu"; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" - _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. - _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' - _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' - if test "$with_gnu_ld" = yes; then + _LT_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok' + _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok' + if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes - # This is similar to how AIX traditionally builds its shared libraries. - _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' + # -brtl affects multiple linker settings, -berok does not and is overridden later + compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`' + if test svr4 != "$with_aix_soname"; then + # This is similar to how AIX traditionally builds its shared libraries. + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' + fi + if test aix != "$with_aix_soname"; then + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' + else + # used by -dlpreopen to get the symbols + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$MV $output_objdir/$realname.d/$soname $output_objdir' + fi + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$RM -r $output_objdir/$realname.d' fi fi ;; @@ -8075,7 +8826,7 @@ _LT_EOF case $host_cpu in powerpc) # see comment about AmigaOS4 .so support - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) @@ -8105,16 +8856,17 @@ _LT_EOF # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. - shrext_cmds=".dll" + shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. - _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' - _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; - else - sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; - fi~ - $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ - linknames=' + _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' + _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then + cp "$export_symbols" "$output_objdir/$soname.def"; + echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; + else + $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes @@ -8123,18 +8875,18 @@ _LT_EOF # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ - lt_tool_outputfile="@TOOL_OUTPUT@"~ - case $lt_outputfile in - *.exe|*.EXE) ;; - *) - lt_outputfile="$lt_outputfile.exe" - lt_tool_outputfile="$lt_tool_outputfile.exe" - ;; - esac~ - if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then - $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; - $RM "$lt_outputfile.manifest"; - fi' + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile=$lt_outputfile.exe + lt_tool_outputfile=$lt_tool_outputfile.exe + ;; + esac~ + if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' ;; *) # Assume MSVC wrapper @@ -8143,7 +8895,7 @@ _LT_EOF # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. - shrext_cmds=".dll" + shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. @@ -8193,33 +8945,33 @@ _LT_EOF ;; hpux9*) - if test "$GCC" = yes; then - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + if test yes = "$GCC"; then + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' fi - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' ;; hpux10*) - if test "$GCC" = yes && test "$with_gnu_ld" = no; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + if test yes,no = "$GCC,$with_gnu_ld"; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi - if test "$with_gnu_ld" = no; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + if test no = "$with_gnu_ld"; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes @@ -8227,25 +8979,25 @@ _LT_EOF ;; hpux11*) - if test "$GCC" = yes && test "$with_gnu_ld" = no; then + if test yes,no = "$GCC,$with_gnu_ld"; then case $host_cpu in hppa*64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) m4_if($1, [], [ @@ -8253,14 +9005,14 @@ _LT_EOF # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) _LT_LINKER_OPTION([if $CC understands -b], _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b], - [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], + [_LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])], - [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags']) + [_LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags']) ;; esac fi - if test "$with_gnu_ld" = no; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + if test no = "$with_gnu_ld"; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in @@ -8271,7 +9023,7 @@ _LT_EOF *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. @@ -8282,16 +9034,16 @@ _LT_EOF ;; irix5* | irix6* | nonstopux*) - if test "$GCC" = yes; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + if test yes = "$GCC"; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. # This should be the same for all languages, so no per-tag cache variable. AC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol], [lt_cv_irix_exported_symbol], - [save_LDFLAGS="$LDFLAGS" - LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" + [save_LDFLAGS=$LDFLAGS + LDFLAGS="$LDFLAGS -shared $wl-exported_symbol ${wl}foo $wl-update_registry $wl/dev/null" AC_LINK_IFELSE( [AC_LANG_SOURCE( [AC_LANG_CASE([C], [[int foo (void) { return 0; }]], @@ -8304,21 +9056,31 @@ _LT_EOF end]])])], [lt_cv_irix_exported_symbol=yes], [lt_cv_irix_exported_symbol=no]) - LDFLAGS="$save_LDFLAGS"]) - if test "$lt_cv_irix_exported_symbol" = yes; then - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' + LDFLAGS=$save_LDFLAGS]) + if test yes = "$lt_cv_irix_exported_symbol"; then + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib' fi else - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes _LT_TAGVAR(link_all_deplibs, $1)=yes ;; + linux*) + case $cc_basename in + tcc*) + # Fabrice Bellard et al's Tiny C Compiler + _LT_TAGVAR(ld_shlibs, $1)=yes + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out @@ -8333,7 +9095,7 @@ _LT_EOF newsos6) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; @@ -8341,27 +9103,19 @@ _LT_EOF *nto* | *qnx*) ;; - openbsd*) + openbsd* | bitrig*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' else - case $host_os in - openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) - _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - ;; - *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - ;; - esac + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' fi else _LT_TAGVAR(ld_shlibs, $1)=no @@ -8372,33 +9126,53 @@ _LT_EOF _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=unsupported - _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' - _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' + shrext_cmds=.dll + _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + prefix_cmds="$SED"~ + if test EXPORTS = "`$SED 1q $export_symbols`"; then + prefix_cmds="$prefix_cmds -e 1d"; + fi~ + prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ + cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; osf3*) - if test "$GCC" = yes; then - _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + if test yes = "$GCC"; then + _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag - if test "$GCC" = yes; then - _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + if test yes = "$GCC"; then + _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ - $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' + $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' @@ -8409,24 +9183,24 @@ _LT_EOF solaris*) _LT_TAGVAR(no_undefined_flag, $1)=' -z defs' - if test "$GCC" = yes; then - wlarc='${wl}' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + if test yes = "$GCC"; then + wlarc='$wl' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl-z ${wl}text $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + $CC -shared $pic_flag $wl-z ${wl}text $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' - _LT_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(archive_cmds, $1)='$LD -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' + $LD -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) - wlarc='${wl}' - _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' + wlarc='$wl' + _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + $CC -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi @@ -8436,11 +9210,11 @@ _LT_EOF solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, - # but understands `-z linker_flag'. GCC discards it without `$wl', + # but understands '-z linker_flag'. GCC discards it without '$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) - if test "$GCC" = yes; then - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + if test yes = "$GCC"; then + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' else _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' fi @@ -8450,10 +9224,10 @@ _LT_EOF ;; sunos4*) - if test "x$host_vendor" = xsequent; then + if test sequent = "$host_vendor"; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. - _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h $soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi @@ -8502,43 +9276,43 @@ _LT_EOF ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) - _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' - if test "$GCC" = yes; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + if test yes = "$GCC"; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else - _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) - # Note: We can NOT use -z defs as we might desire, because we do not + # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. - _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' - _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' + _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' + _LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport' runpath_var='LD_RUN_PATH' - if test "$GCC" = yes; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + if test yes = "$GCC"; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else - _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; @@ -8553,17 +9327,17 @@ _LT_EOF ;; esac - if test x$host_vendor = xsni; then + if test sni = "$host_vendor"; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Blargedynsym' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Blargedynsym' ;; esac fi fi ]) AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) -test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no +test no = "$_LT_TAGVAR(ld_shlibs, $1)" && can_build_shared=no _LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld @@ -8580,7 +9354,7 @@ x|xyes) # Assume -lc should be added _LT_TAGVAR(archive_cmds_need_lc, $1)=yes - if test "$enable_shared" = yes && test "$GCC" = yes; then + if test yes,yes = "$GCC,$enable_shared"; then case $_LT_TAGVAR(archive_cmds, $1) in *'~'*) # FIXME: we may have to deal with multi-command sequences. @@ -8660,12 +9434,12 @@ _LT_TAGDECL([], [hardcode_libdir_flag_spec], [1], _LT_TAGDECL([], [hardcode_libdir_separator], [1], [Whether we need a single "-rpath" flag with a separated argument]) _LT_TAGDECL([], [hardcode_direct], [0], - [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes + [Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_direct_absolute], [0], - [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes + [Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes DIR into the resulting binary and the resulting library dependency is - "absolute", i.e impossible to change by setting ${shlibpath_var} if the + "absolute", i.e impossible to change by setting $shlibpath_var if the library is relocated]) _LT_TAGDECL([], [hardcode_minus_L], [0], [Set to "yes" if using the -LDIR flag during linking hardcodes DIR @@ -8706,10 +9480,10 @@ dnl [Compiler flag to generate thread safe objects]) # ------------------------ # Ensure that the configuration variables for a C compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write -# the compiler configuration to `libtool'. +# the compiler configuration to 'libtool'. m4_defun([_LT_LANG_C_CONFIG], [m4_require([_LT_DECL_EGREP])dnl -lt_save_CC="$CC" +lt_save_CC=$CC AC_LANG_PUSH(C) # Source file extension for C test sources. @@ -8749,18 +9523,18 @@ if test -n "$compiler"; then LT_SYS_DLOPEN_SELF _LT_CMD_STRIPLIB - # Report which library types will actually be built + # Report what library types will actually be built AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) - test "$can_build_shared" = "no" && enable_shared=no + test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) - test "$enable_shared" = yes && enable_static=no + test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' @@ -8768,8 +9542,12 @@ if test -n "$compiler"; then ;; aix[[4-9]]*) - if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then - test "$enable_shared" = yes && enable_static=no + if test ia64 != "$host_cpu"; then + case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in + yes,aix,yes) ;; # shared object as lib.so file only + yes,svr4,*) ;; # shared object as lib.so archive member only + yes,*) enable_static=no ;; # shared object in lib.a archive as well + esac fi ;; esac @@ -8777,13 +9555,13 @@ if test -n "$compiler"; then AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. - test "$enable_shared" = yes || enable_static=yes + test yes = "$enable_shared" || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_CONFIG($1) fi AC_LANG_POP -CC="$lt_save_CC" +CC=$lt_save_CC ])# _LT_LANG_C_CONFIG @@ -8791,14 +9569,14 @@ CC="$lt_save_CC" # -------------------------- # Ensure that the configuration variables for a C++ compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write -# the compiler configuration to `libtool'. +# the compiler configuration to 'libtool'. m4_defun([_LT_LANG_CXX_CONFIG], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_PATH_MANIFEST_TOOL])dnl -if test -n "$CXX" && ( test "X$CXX" != "Xno" && - ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || - (test "X$CXX" != "Xg++"))) ; then +if test -n "$CXX" && ( test no != "$CXX" && + ( (test g++ = "$CXX" && `g++ -v >/dev/null 2>&1` ) || + (test g++ != "$CXX"))); then AC_PROG_CXXCPP else _lt_caught_CXX_error=yes @@ -8840,7 +9618,7 @@ _LT_TAGVAR(objext, $1)=$objext # the CXX compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. -if test "$_lt_caught_CXX_error" != yes; then +if test yes != "$_lt_caught_CXX_error"; then # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" @@ -8882,35 +9660,35 @@ if test "$_lt_caught_CXX_error" != yes; then if test -n "$compiler"; then # We don't want -fno-exception when compiling C++ code, so set the # no_builtin_flag separately - if test "$GXX" = yes; then + if test yes = "$GXX"; then _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' else _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= fi - if test "$GXX" = yes; then + if test yes = "$GXX"; then # Set up default GNU C++ configuration LT_PATH_LD # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. - if test "$with_gnu_ld" = yes; then - _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + if test yes = "$with_gnu_ld"; then + _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) - wlarc='${wl}' + wlarc='$wl' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | $GREP 'no-whole-archive' > /dev/null; then - _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi @@ -8946,18 +9724,30 @@ if test "$_lt_caught_CXX_error" != yes; then _LT_TAGVAR(ld_shlibs, $1)=no ;; aix[[4-9]]*) - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' - no_entry_flag="" + no_entry_flag= else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we - # need to do runtime linking. + # have runtime linking enabled, and use it for executables. + # For shared libraries, we enable/disable runtime linking + # depending on the kind of the shared library created - + # when "with_aix_soname,aix_use_runtimelinking" is: + # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables + # "aix,yes" lib.so shared, rtl:yes, for executables + # lib.a static archive + # "both,no" lib.so.V(shr.o) shared, rtl:yes + # lib.a(lib.so.V) shared, rtl:no, for executables + # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a(lib.so.V) shared, rtl:no + # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a static archive case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do case $ld_flag in @@ -8967,6 +9757,13 @@ if test "$_lt_caught_CXX_error" != yes; then ;; esac done + if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then + # With aix-soname=svr4, we create the lib.so.V shared archives only, + # so we don't have lib.a shared libs to link our executables. + # We have to force runtime linking in this case. + aix_use_runtimelinking=yes + LDFLAGS="$LDFLAGS -Wl,-brtl" + fi ;; esac @@ -8985,13 +9782,21 @@ if test "$_lt_caught_CXX_error" != yes; then _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' + _LT_TAGVAR(file_list_spec, $1)='$wl-f,' + case $with_aix_soname,$aix_use_runtimelinking in + aix,*) ;; # no import file + svr4,* | *,yes) # use import file + # The Import File defines what to hardcode. + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=no + ;; + esac - if test "$GXX" = yes; then + if test yes = "$GXX"; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ - collect2name=`${CC} -print-prog-name=collect2` + collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then @@ -9009,64 +9814,84 @@ if test "$_lt_caught_CXX_error" != yes; then fi esac shared_flag='-shared' - if test "$aix_use_runtimelinking" = yes; then - shared_flag="$shared_flag "'${wl}-G' + if test yes = "$aix_use_runtimelinking"; then + shared_flag=$shared_flag' $wl-G' fi + # Need to ensure runtime linking is disabled for the traditional + # shared library, or the linker may eventually find shared libraries + # /with/ Import File - we do not want to mix them. + shared_flag_aix='-shared' + shared_flag_svr4='-shared $wl-G' else # not using gcc - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else - if test "$aix_use_runtimelinking" = yes; then - shared_flag='${wl}-G' + if test yes = "$aix_use_runtimelinking"; then + shared_flag='$wl-G' else - shared_flag='${wl}-bM:SRE' + shared_flag='$wl-bM:SRE' fi + shared_flag_aix='$wl-bM:SRE' + shared_flag_svr4='$wl-G' fi fi - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to # export. _LT_TAGVAR(always_export_symbols, $1)=yes - if test "$aix_use_runtimelinking" = yes; then + if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. - _LT_TAGVAR(allow_undefined_flag, $1)='-berok' + # The "-G" linker flag allows undefined symbols. + _LT_TAGVAR(no_undefined_flag, $1)='-bernotok' # Determine the default libpath from the value encoded in an empty # executable. _LT_SYS_MODULE_PATH_AIX([$1]) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else - if test "$host_cpu" = ia64; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' + if test ia64 = "$host_cpu"; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" - _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. - _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' - _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' - if test "$with_gnu_ld" = yes; then + _LT_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok' + _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok' + if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes - # This is similar to how AIX traditionally builds its shared - # libraries. - _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' + # -brtl affects multiple linker settings, -berok does not and is overridden later + compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`' + if test svr4 != "$with_aix_soname"; then + # This is similar to how AIX traditionally builds its shared + # libraries. Need -bnortl late, we may have -brtl in LDFLAGS. + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' + fi + if test aix != "$with_aix_soname"; then + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' + else + # used by -dlpreopen to get the symbols + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$MV $output_objdir/$realname.d/$soname $output_objdir' + fi + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$RM -r $output_objdir/$realname.d' fi fi ;; @@ -9076,7 +9901,7 @@ if test "$_lt_caught_CXX_error" != yes; then _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME - _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi @@ -9104,57 +9929,58 @@ if test "$_lt_caught_CXX_error" != yes; then # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. - shrext_cmds=".dll" + shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. - _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' - _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - $SED -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; - else - $SED -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; - fi~ - $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ - linknames=' + _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' + _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then + cp "$export_symbols" "$output_objdir/$soname.def"; + echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; + else + $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ - lt_tool_outputfile="@TOOL_OUTPUT@"~ - case $lt_outputfile in - *.exe|*.EXE) ;; - *) - lt_outputfile="$lt_outputfile.exe" - lt_tool_outputfile="$lt_tool_outputfile.exe" - ;; - esac~ - func_to_tool_file "$lt_outputfile"~ - if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then - $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; - $RM "$lt_outputfile.manifest"; - fi' + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile=$lt_outputfile.exe + lt_tool_outputfile=$lt_tool_outputfile.exe + ;; + esac~ + func_to_tool_file "$lt_outputfile"~ + if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' ;; *) # g++ # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - # If the export-symbols file already is a .def file (1st line - # is EXPORTS), use it as is; otherwise, prepend... - _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - cp $export_symbols $output_objdir/$soname.def; - else - echo EXPORTS > $output_objdir/$soname.def; - cat $export_symbols >> $output_objdir/$soname.def; - fi~ - $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file, use it as + # is; otherwise, prepend EXPORTS... + _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi @@ -9165,6 +9991,34 @@ if test "$_lt_caught_CXX_error" != yes; then _LT_DARWIN_LINKER_FEATURES($1) ;; + os2*) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + shrext_cmds=.dll + _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + prefix_cmds="$SED"~ + if test EXPORTS = "`$SED 1q $export_symbols`"; then + prefix_cmds="$prefix_cmds -e 1d"; + fi~ + prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ + cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + ;; + dgux*) case $cc_basename in ec++*) @@ -9199,18 +10053,15 @@ if test "$_lt_caught_CXX_error" != yes; then _LT_TAGVAR(ld_shlibs, $1)=yes ;; - gnu*) - ;; - haiku*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=yes ;; hpux9*) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default @@ -9222,7 +10073,7 @@ if test "$_lt_caught_CXX_error" != yes; then _LT_TAGVAR(ld_shlibs, $1)=no ;; aCC*) - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. @@ -9231,11 +10082,11 @@ if test "$_lt_caught_CXX_error" != yes; then # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) - if test "$GXX" = yes; then - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + if test yes = "$GXX"; then + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no @@ -9245,15 +10096,15 @@ if test "$_lt_caught_CXX_error" != yes; then ;; hpux10*|hpux11*) - if test $with_gnu_ld = no; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + if test no = "$with_gnu_ld"; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) ;; *) - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' ;; esac fi @@ -9279,13 +10130,13 @@ if test "$_lt_caught_CXX_error" != yes; then aCC*) case $host_cpu in hppa*64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) - _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists @@ -9296,20 +10147,20 @@ if test "$_lt_caught_CXX_error" != yes; then # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) - if test "$GXX" = yes; then - if test $with_gnu_ld = no; then + if test yes = "$GXX"; then + if test no = "$with_gnu_ld"; then case $host_cpu in hppa*64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi @@ -9324,22 +10175,22 @@ if test "$_lt_caught_CXX_error" != yes; then interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is @@ -9348,22 +10199,22 @@ if test "$_lt_caught_CXX_error" != yes; then _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) - if test "$GXX" = yes; then - if test "$with_gnu_ld" = no; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + if test yes = "$GXX"; then + if test no = "$with_gnu_ld"; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` -o $lib' fi fi _LT_TAGVAR(link_all_deplibs, $1)=yes ;; esac - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes ;; - linux* | k*bsd*-gnu | kopensolaris*-gnu) + linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler @@ -9371,8 +10222,8 @@ if test "$_lt_caught_CXX_error" != yes; then # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. - _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' + _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib $wl-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. @@ -9381,10 +10232,10 @@ if test "$_lt_caught_CXX_error" != yes; then # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. @@ -9398,59 +10249,59 @@ if test "$_lt_caught_CXX_error" != yes; then # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac - _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; esac _LT_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' ;; pgCC* | pgcpp*) # Portland Group C++ compiler case `$CC -V` in *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*) _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ - compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ + compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ - $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ - $RANLIB $oldlib' + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ + $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ + $RANLIB $oldlib' _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ - $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ - $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 6 and above use weak symbols - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; esac - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl--rpath $wl$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' ;; cxx*) # Compaq C++ - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib $wl-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' @@ -9464,18 +10315,18 @@ if test "$_lt_caught_CXX_error" != yes; then # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' ;; xl* | mpixl* | bgxl*) # IBM XL 8.0 on PPC, with GNU ld - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' - _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - if test "x$supports_anon_versioning" = xyes; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' + _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + if test yes = "$supports_anon_versioning"; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi ;; *) @@ -9483,10 +10334,10 @@ if test "$_lt_caught_CXX_error" != yes; then *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' - _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' + _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file $wl$export_symbols' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes # Not sure whether something based on @@ -9544,22 +10395,17 @@ if test "$_lt_caught_CXX_error" != yes; then _LT_TAGVAR(ld_shlibs, $1)=yes ;; - openbsd2*) - # C++ shared libraries are fairly broken - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - - openbsd*) + openbsd* | bitrig*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' + if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`"; then + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file,$export_symbols -o $lib' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' + _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' fi output_verbose_link_cmd=func_echo_all else @@ -9575,9 +10421,9 @@ if test "$_lt_caught_CXX_error" != yes; then # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. - _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Archives containing C++ object files must be created using @@ -9595,17 +10441,17 @@ if test "$_lt_caught_CXX_error" != yes; then cxx*) case $host in osf3*) - _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && func_echo_all "${wl}-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $soname `test -n "$verstring" && func_echo_all "$wl-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' ;; *) _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ - echo "-hidden">> $lib.exp~ - $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~ - $RM $lib.exp' + echo "-hidden">> $lib.exp~ + $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname $wl-input $wl$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~ + $RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' ;; esac @@ -9620,21 +10466,21 @@ if test "$_lt_caught_CXX_error" != yes; then # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) - if test "$GXX" = yes && test "$with_gnu_ld" = no; then - _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + if test yes,no = "$GXX,$with_gnu_ld"; then + _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' case $host in osf3*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' ;; *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' ;; esac - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists @@ -9680,9 +10526,9 @@ if test "$_lt_caught_CXX_error" != yes; then # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(archive_cmds_need_lc,$1)=yes _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' - _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + $CC -G$allow_undefined_flag $wl-M $wl$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no @@ -9690,7 +10536,7 @@ if test "$_lt_caught_CXX_error" != yes; then solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, - # but understands `-z linker_flag'. + # but understands '-z linker_flag'. # Supported since Solaris 2.6 (maybe 2.5.1?) _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;; @@ -9707,30 +10553,30 @@ if test "$_lt_caught_CXX_error" != yes; then ;; gcx*) # Green Hills C++ Compiler - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker - if test "$GXX" = yes && test "$with_gnu_ld" = no; then - _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' + if test yes,no = "$GXX,$with_gnu_ld"; then + _LT_TAGVAR(no_undefined_flag, $1)=' $wl-z ${wl}defs' if $CC --version | $GREP -v '^2\.7' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -shared $pic_flag -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + $CC -shared $pic_flag -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else - # g++ 2.7 appears to require `-G' NOT `-shared' on this + # g++ 2.7 appears to require '-G' NOT '-shared' on this # platform. - _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + $CC -G -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when @@ -9738,11 +10584,11 @@ if test "$_lt_caught_CXX_error" != yes; then output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' fi - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $wl$libdir' case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' ;; esac fi @@ -9751,52 +10597,52 @@ if test "$_lt_caught_CXX_error" != yes; then ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) - _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) - _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) - # Note: We can NOT use -z defs as we might desire, because we do not + # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. - _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' - _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' + _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' + _LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) - _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~ - '"$_LT_TAGVAR(old_archive_cmds, $1)" + '"$_LT_TAGVAR(old_archive_cmds, $1)" _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~ - '"$_LT_TAGVAR(reload_cmds, $1)" + '"$_LT_TAGVAR(reload_cmds, $1)" ;; *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; @@ -9827,10 +10673,10 @@ if test "$_lt_caught_CXX_error" != yes; then esac AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) - test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no + test no = "$_LT_TAGVAR(ld_shlibs, $1)" && can_build_shared=no - _LT_TAGVAR(GCC, $1)="$GXX" - _LT_TAGVAR(LD, $1)="$LD" + _LT_TAGVAR(GCC, $1)=$GXX + _LT_TAGVAR(LD, $1)=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change @@ -9857,7 +10703,7 @@ if test "$_lt_caught_CXX_error" != yes; then lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld -fi # test "$_lt_caught_CXX_error" != yes +fi # test yes != "$_lt_caught_CXX_error" AC_LANG_POP ])# _LT_LANG_CXX_CONFIG @@ -9879,13 +10725,14 @@ AC_REQUIRE([_LT_DECL_SED]) AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH]) func_stripname_cnf () { - case ${2} in - .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; - *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; + case @S|@2 in + .*) func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%\\\\@S|@2\$%%"`;; + *) func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%@S|@2\$%%"`;; esac } # func_stripname_cnf ])# _LT_FUNC_STRIPNAME_CNF + # _LT_SYS_HIDDEN_LIBDEPS([TAGNAME]) # --------------------------------- # Figure out "hidden" library dependencies from verbose @@ -9969,13 +10816,13 @@ if AC_TRY_EVAL(ac_compile); then pre_test_object_deps_done=no for p in `eval "$output_verbose_link_cmd"`; do - case ${prev}${p} in + case $prev$p in -L* | -R* | -l*) # Some compilers place space between "-{L,R}" and the path. # Remove the space. - if test $p = "-L" || - test $p = "-R"; then + if test x-L = "$p" || + test x-R = "$p"; then prev=$p continue fi @@ -9991,16 +10838,16 @@ if AC_TRY_EVAL(ac_compile); then case $p in =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; esac - if test "$pre_test_object_deps_done" = no; then - case ${prev} in + if test no = "$pre_test_object_deps_done"; then + case $prev in -L | -R) # Internal compiler library paths should come after those # provided the user. The postdeps already come after the # user supplied libs so there is no need to process them. if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then - _LT_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}" + _LT_TAGVAR(compiler_lib_search_path, $1)=$prev$p else - _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}" + _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} $prev$p" fi ;; # The "-l" case would never come before the object being @@ -10008,9 +10855,9 @@ if AC_TRY_EVAL(ac_compile); then esac else if test -z "$_LT_TAGVAR(postdeps, $1)"; then - _LT_TAGVAR(postdeps, $1)="${prev}${p}" + _LT_TAGVAR(postdeps, $1)=$prev$p else - _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} ${prev}${p}" + _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} $prev$p" fi fi prev= @@ -10025,15 +10872,15 @@ if AC_TRY_EVAL(ac_compile); then continue fi - if test "$pre_test_object_deps_done" = no; then + if test no = "$pre_test_object_deps_done"; then if test -z "$_LT_TAGVAR(predep_objects, $1)"; then - _LT_TAGVAR(predep_objects, $1)="$p" + _LT_TAGVAR(predep_objects, $1)=$p else _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p" fi else if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then - _LT_TAGVAR(postdep_objects, $1)="$p" + _LT_TAGVAR(postdep_objects, $1)=$p else _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p" fi @@ -10064,51 +10911,6 @@ interix[[3-9]]*) _LT_TAGVAR(postdep_objects,$1)= _LT_TAGVAR(postdeps,$1)= ;; - -linux*) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - # Sun C++ 5.9 - - # The more standards-conforming stlport4 library is - # incompatible with the Cstd library. Avoid specifying - # it if it's in CXXFLAGS. Ignore libCrun as - # -library=stlport4 depends on it. - case " $CXX $CXXFLAGS " in - *" -library=stlport4 "*) - solaris_use_stlport4=yes - ;; - esac - - if test "$solaris_use_stlport4" != yes; then - _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' - fi - ;; - esac - ;; - -solaris*) - case $cc_basename in - CC* | sunCC*) - # The more standards-conforming stlport4 library is - # incompatible with the Cstd library. Avoid specifying - # it if it's in CXXFLAGS. Ignore libCrun as - # -library=stlport4 depends on it. - case " $CXX $CXXFLAGS " in - *" -library=stlport4 "*) - solaris_use_stlport4=yes - ;; - esac - - # Adding this requires a known-good setup of shared libraries for - # Sun compiler versions before 5.6, else PIC objects from an old - # archive will be linked into the output, leading to subtle bugs. - if test "$solaris_use_stlport4" != yes; then - _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' - fi - ;; - esac - ;; esac ]) @@ -10117,7 +10919,7 @@ case " $_LT_TAGVAR(postdeps, $1) " in esac _LT_TAGVAR(compiler_lib_search_dirs, $1)= if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then - _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` + _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | $SED -e 's! -L! !g' -e 's!^ !!'` fi _LT_TAGDECL([], [compiler_lib_search_dirs], [1], [The directories searched by this compiler when creating a shared library]) @@ -10137,10 +10939,10 @@ _LT_TAGDECL([], [compiler_lib_search_path], [1], # -------------------------- # Ensure that the configuration variables for a Fortran 77 compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to `libtool'. +# to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_F77_CONFIG], [AC_LANG_PUSH(Fortran 77) -if test -z "$F77" || test "X$F77" = "Xno"; then +if test -z "$F77" || test no = "$F77"; then _lt_disable_F77=yes fi @@ -10177,7 +10979,7 @@ _LT_TAGVAR(objext, $1)=$objext # the F77 compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. -if test "$_lt_disable_F77" != yes; then +if test yes != "$_lt_disable_F77"; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t @@ -10199,7 +11001,7 @@ if test "$_lt_disable_F77" != yes; then _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. - lt_save_CC="$CC" + lt_save_CC=$CC lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${F77-"f77"} @@ -10213,21 +11015,25 @@ if test "$_lt_disable_F77" != yes; then AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) - test "$can_build_shared" = "no" && enable_shared=no + test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) - test "$enable_shared" = yes && enable_static=no + test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) - if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then - test "$enable_shared" = yes && enable_static=no + if test ia64 != "$host_cpu"; then + case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in + yes,aix,yes) ;; # shared object as lib.so file only + yes,svr4,*) ;; # shared object as lib.so archive member only + yes,*) enable_static=no ;; # shared object in lib.a archive as well + esac fi ;; esac @@ -10235,11 +11041,11 @@ if test "$_lt_disable_F77" != yes; then AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. - test "$enable_shared" = yes || enable_static=yes + test yes = "$enable_shared" || enable_static=yes AC_MSG_RESULT([$enable_static]) - _LT_TAGVAR(GCC, $1)="$G77" - _LT_TAGVAR(LD, $1)="$LD" + _LT_TAGVAR(GCC, $1)=$G77 + _LT_TAGVAR(LD, $1)=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change @@ -10256,9 +11062,9 @@ if test "$_lt_disable_F77" != yes; then fi # test -n "$compiler" GCC=$lt_save_GCC - CC="$lt_save_CC" - CFLAGS="$lt_save_CFLAGS" -fi # test "$_lt_disable_F77" != yes + CC=$lt_save_CC + CFLAGS=$lt_save_CFLAGS +fi # test yes != "$_lt_disable_F77" AC_LANG_POP ])# _LT_LANG_F77_CONFIG @@ -10268,11 +11074,11 @@ AC_LANG_POP # ------------------------- # Ensure that the configuration variables for a Fortran compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to `libtool'. +# to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_FC_CONFIG], [AC_LANG_PUSH(Fortran) -if test -z "$FC" || test "X$FC" = "Xno"; then +if test -z "$FC" || test no = "$FC"; then _lt_disable_FC=yes fi @@ -10309,7 +11115,7 @@ _LT_TAGVAR(objext, $1)=$objext # the FC compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. -if test "$_lt_disable_FC" != yes; then +if test yes != "$_lt_disable_FC"; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t @@ -10331,7 +11137,7 @@ if test "$_lt_disable_FC" != yes; then _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. - lt_save_CC="$CC" + lt_save_CC=$CC lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${FC-"f95"} @@ -10347,21 +11153,25 @@ if test "$_lt_disable_FC" != yes; then AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) - test "$can_build_shared" = "no" && enable_shared=no + test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) - test "$enable_shared" = yes && enable_static=no + test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) - if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then - test "$enable_shared" = yes && enable_static=no + if test ia64 != "$host_cpu"; then + case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in + yes,aix,yes) ;; # shared object as lib.so file only + yes,svr4,*) ;; # shared object as lib.so archive member only + yes,*) enable_static=no ;; # shared object in lib.a archive as well + esac fi ;; esac @@ -10369,11 +11179,11 @@ if test "$_lt_disable_FC" != yes; then AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. - test "$enable_shared" = yes || enable_static=yes + test yes = "$enable_shared" || enable_static=yes AC_MSG_RESULT([$enable_static]) - _LT_TAGVAR(GCC, $1)="$ac_cv_fc_compiler_gnu" - _LT_TAGVAR(LD, $1)="$LD" + _LT_TAGVAR(GCC, $1)=$ac_cv_fc_compiler_gnu + _LT_TAGVAR(LD, $1)=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change @@ -10393,7 +11203,7 @@ if test "$_lt_disable_FC" != yes; then GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS -fi # test "$_lt_disable_FC" != yes +fi # test yes != "$_lt_disable_FC" AC_LANG_POP ])# _LT_LANG_FC_CONFIG @@ -10403,7 +11213,7 @@ AC_LANG_POP # -------------------------- # Ensure that the configuration variables for the GNU Java Compiler compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to `libtool'. +# to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_GCJ_CONFIG], [AC_REQUIRE([LT_PROG_GCJ])dnl AC_LANG_SAVE @@ -10437,7 +11247,7 @@ CC=${GCJ-"gcj"} CFLAGS=$GCJFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC -_LT_TAGVAR(LD, $1)="$LD" +_LT_TAGVAR(LD, $1)=$LD _LT_CC_BASENAME([$compiler]) # GCJ did not exist at the time GCC didn't implicitly link libc in. @@ -10474,7 +11284,7 @@ CFLAGS=$lt_save_CFLAGS # -------------------------- # Ensure that the configuration variables for the GNU Go compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to `libtool'. +# to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_GO_CONFIG], [AC_REQUIRE([LT_PROG_GO])dnl AC_LANG_SAVE @@ -10508,7 +11318,7 @@ CC=${GOC-"gccgo"} CFLAGS=$GOFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC -_LT_TAGVAR(LD, $1)="$LD" +_LT_TAGVAR(LD, $1)=$LD _LT_CC_BASENAME([$compiler]) # Go did not exist at the time GCC didn't implicitly link libc in. @@ -10545,7 +11355,7 @@ CFLAGS=$lt_save_CFLAGS # ------------------------- # Ensure that the configuration variables for the Windows resource compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to `libtool'. +# to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_RC_CONFIG], [AC_REQUIRE([LT_PROG_RC])dnl AC_LANG_SAVE @@ -10561,7 +11371,7 @@ _LT_TAGVAR(objext, $1)=$objext lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' # Code to be used in simple link tests -lt_simple_link_test_code="$lt_simple_compile_test_code" +lt_simple_link_test_code=$lt_simple_compile_test_code # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER @@ -10571,7 +11381,7 @@ _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. -lt_save_CC="$CC" +lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC= @@ -10600,7 +11410,7 @@ AC_DEFUN([LT_PROG_GCJ], [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ], [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ], [AC_CHECK_TOOL(GCJ, gcj,) - test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" + test set = "${GCJFLAGS+set}" || GCJFLAGS="-g -O2" AC_SUBST(GCJFLAGS)])])[]dnl ]) @@ -10711,7 +11521,7 @@ lt_ac_count=0 # Add /usr/xpg4/bin/sed as it is typically found on Solaris # along with /bin/sed that truncates output. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do - test ! -f $lt_ac_sed && continue + test ! -f "$lt_ac_sed" && continue cat /dev/null > conftest.in lt_ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >conftest.in @@ -10728,9 +11538,9 @@ for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break cmp -s conftest.out conftest.nl || break # 10000 chars as input seems more than enough - test $lt_ac_count -gt 10 && break + test 10 -lt "$lt_ac_count" && break lt_ac_count=`expr $lt_ac_count + 1` - if test $lt_ac_count -gt $lt_ac_max; then + if test "$lt_ac_count" -gt "$lt_ac_max"; then lt_ac_max=$lt_ac_count lt_cv_path_SED=$lt_ac_sed fi @@ -10754,27 +11564,7 @@ dnl AC_DEFUN([LT_AC_PROG_SED], []) # Find out whether the shell is Bourne or XSI compatible, # or has some other useful features. m4_defun([_LT_CHECK_SHELL_FEATURES], -[AC_MSG_CHECKING([whether the shell understands some XSI constructs]) -# Try some XSI features -xsi_shell=no -( _lt_dummy="a/b/c" - test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ - = c,a/b,b/c, \ - && eval 'test $(( 1 + 1 )) -eq 2 \ - && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ - && xsi_shell=yes -AC_MSG_RESULT([$xsi_shell]) -_LT_CONFIG_LIBTOOL_INIT([xsi_shell='$xsi_shell']) - -AC_MSG_CHECKING([whether the shell understands "+="]) -lt_shell_append=no -( foo=bar; set foo baz; eval "$[1]+=\$[2]" && test "$foo" = barbaz ) \ - >/dev/null 2>&1 \ - && lt_shell_append=yes -AC_MSG_RESULT([$lt_shell_append]) -_LT_CONFIG_LIBTOOL_INIT([lt_shell_append='$lt_shell_append']) - -if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then +[if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else lt_unset=false @@ -10798,102 +11588,9 @@ _LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl ])# _LT_CHECK_SHELL_FEATURES -# _LT_PROG_FUNCTION_REPLACE (FUNCNAME, REPLACEMENT-BODY) -# ------------------------------------------------------ -# In `$cfgfile', look for function FUNCNAME delimited by `^FUNCNAME ()$' and -# '^} FUNCNAME ', and replace its body with REPLACEMENT-BODY. -m4_defun([_LT_PROG_FUNCTION_REPLACE], -[dnl { -sed -e '/^$1 ()$/,/^} # $1 /c\ -$1 ()\ -{\ -m4_bpatsubsts([$2], [$], [\\], [^\([ ]\)], [\\\1]) -} # Extended-shell $1 implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: -]) - - -# _LT_PROG_REPLACE_SHELLFNS -# ------------------------- -# Replace existing portable implementations of several shell functions with -# equivalent extended shell implementations where those features are available.. -m4_defun([_LT_PROG_REPLACE_SHELLFNS], -[if test x"$xsi_shell" = xyes; then - _LT_PROG_FUNCTION_REPLACE([func_dirname], [dnl - case ${1} in - */*) func_dirname_result="${1%/*}${2}" ;; - * ) func_dirname_result="${3}" ;; - esac]) - - _LT_PROG_FUNCTION_REPLACE([func_basename], [dnl - func_basename_result="${1##*/}"]) - - _LT_PROG_FUNCTION_REPLACE([func_dirname_and_basename], [dnl - case ${1} in - */*) func_dirname_result="${1%/*}${2}" ;; - * ) func_dirname_result="${3}" ;; - esac - func_basename_result="${1##*/}"]) - - _LT_PROG_FUNCTION_REPLACE([func_stripname], [dnl - # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are - # positional parameters, so assign one to ordinary parameter first. - func_stripname_result=${3} - func_stripname_result=${func_stripname_result#"${1}"} - func_stripname_result=${func_stripname_result%"${2}"}]) - - _LT_PROG_FUNCTION_REPLACE([func_split_long_opt], [dnl - func_split_long_opt_name=${1%%=*} - func_split_long_opt_arg=${1#*=}]) - - _LT_PROG_FUNCTION_REPLACE([func_split_short_opt], [dnl - func_split_short_opt_arg=${1#??} - func_split_short_opt_name=${1%"$func_split_short_opt_arg"}]) - - _LT_PROG_FUNCTION_REPLACE([func_lo2o], [dnl - case ${1} in - *.lo) func_lo2o_result=${1%.lo}.${objext} ;; - *) func_lo2o_result=${1} ;; - esac]) - - _LT_PROG_FUNCTION_REPLACE([func_xform], [ func_xform_result=${1%.*}.lo]) - - _LT_PROG_FUNCTION_REPLACE([func_arith], [ func_arith_result=$(( $[*] ))]) - - _LT_PROG_FUNCTION_REPLACE([func_len], [ func_len_result=${#1}]) -fi - -if test x"$lt_shell_append" = xyes; then - _LT_PROG_FUNCTION_REPLACE([func_append], [ eval "${1}+=\\${2}"]) - - _LT_PROG_FUNCTION_REPLACE([func_append_quoted], [dnl - func_quote_for_eval "${2}" -dnl m4 expansion turns \\\\ into \\, and then the shell eval turns that into \ - eval "${1}+=\\\\ \\$func_quote_for_eval_result"]) - - # Save a `func_append' function call where possible by direct use of '+=' - sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") - test 0 -eq $? || _lt_function_replace_fail=: -else - # Save a `func_append' function call even when '+=' is not available - sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") - test 0 -eq $? || _lt_function_replace_fail=: -fi - -if test x"$_lt_function_replace_fail" = x":"; then - AC_MSG_WARN([Unable to substitute extended shell functions in $ofile]) -fi -]) - # _LT_PATH_CONVERSION_FUNCTIONS # ----------------------------- -# Determine which file name conversion functions should be used by +# Determine what file name conversion functions should be used by # func_to_host_file (and, implicitly, by func_to_host_path). These are needed # for certain cross-compile configurations and native mingw. m4_defun([_LT_PATH_CONVERSION_FUNCTIONS], @@ -10959,15 +11656,15 @@ _LT_DECL([to_tool_file_cmd], [lt_cv_to_tool_file_cmd], ])# _LT_PATH_CONVERSION_FUNCTIONS # Helper functions for option handling. -*- Autoconf -*- # -# Copyright (C) 2004, 2005, 2007, 2008, 2009 Free Software Foundation, -# Inc. +# Copyright (C) 2004-2005, 2007-2009, 2011-2015 Free Software +# Foundation, Inc. # Written by Gary V. Vaughan, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. -# serial 7 ltoptions.m4 +# serial 8 ltoptions.m4 # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])]) @@ -10988,7 +11685,7 @@ m4_define([_LT_SET_OPTION], [m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]), _LT_MANGLE_DEFUN([$1], [$2]), - [m4_warning([Unknown $1 option `$2'])])[]dnl + [m4_warning([Unknown $1 option '$2'])])[]dnl ]) @@ -11034,13 +11731,15 @@ m4_if([$1],[LT_INIT],[ dnl dnl If no reference was made to various pairs of opposing options, then dnl we run the default mode handler for the pair. For example, if neither - dnl `shared' nor `disable-shared' was passed, we enable building of shared + dnl 'shared' nor 'disable-shared' was passed, we enable building of shared dnl archives by default: _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED]) _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC]) _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC]) _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install], - [_LT_ENABLE_FAST_INSTALL]) + [_LT_ENABLE_FAST_INSTALL]) + _LT_UNLESS_OPTIONS([LT_INIT], [aix-soname=aix aix-soname=both aix-soname=svr4], + [_LT_WITH_AIX_SONAME([aix])]) ]) ])# _LT_SET_OPTIONS @@ -11071,7 +11770,7 @@ AU_DEFUN([AC_LIBTOOL_DLOPEN], [_LT_SET_OPTION([LT_INIT], [dlopen]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you -put the `dlopen' option into LT_INIT's first parameter.]) +put the 'dlopen' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: @@ -11107,7 +11806,7 @@ AU_DEFUN([AC_LIBTOOL_WIN32_DLL], _LT_SET_OPTION([LT_INIT], [win32-dll]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you -put the `win32-dll' option into LT_INIT's first parameter.]) +put the 'win32-dll' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: @@ -11116,9 +11815,9 @@ dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], []) # _LT_ENABLE_SHARED([DEFAULT]) # ---------------------------- -# implement the --enable-shared flag, and supports the `shared' and -# `disable-shared' LT_INIT options. -# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +# implement the --enable-shared flag, and supports the 'shared' and +# 'disable-shared' LT_INIT options. +# DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. m4_define([_LT_ENABLE_SHARED], [m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([shared], @@ -11131,14 +11830,14 @@ AC_ARG_ENABLE([shared], *) enable_shared=no # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_shared=yes fi done - IFS="$lt_save_ifs" + IFS=$lt_save_ifs ;; esac], [enable_shared=]_LT_ENABLE_SHARED_DEFAULT) @@ -11170,9 +11869,9 @@ dnl AC_DEFUN([AM_DISABLE_SHARED], []) # _LT_ENABLE_STATIC([DEFAULT]) # ---------------------------- -# implement the --enable-static flag, and support the `static' and -# `disable-static' LT_INIT options. -# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +# implement the --enable-static flag, and support the 'static' and +# 'disable-static' LT_INIT options. +# DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. m4_define([_LT_ENABLE_STATIC], [m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([static], @@ -11185,14 +11884,14 @@ AC_ARG_ENABLE([static], *) enable_static=no # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_static=yes fi done - IFS="$lt_save_ifs" + IFS=$lt_save_ifs ;; esac], [enable_static=]_LT_ENABLE_STATIC_DEFAULT) @@ -11224,9 +11923,9 @@ dnl AC_DEFUN([AM_DISABLE_STATIC], []) # _LT_ENABLE_FAST_INSTALL([DEFAULT]) # ---------------------------------- -# implement the --enable-fast-install flag, and support the `fast-install' -# and `disable-fast-install' LT_INIT options. -# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +# implement the --enable-fast-install flag, and support the 'fast-install' +# and 'disable-fast-install' LT_INIT options. +# DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. m4_define([_LT_ENABLE_FAST_INSTALL], [m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([fast-install], @@ -11239,14 +11938,14 @@ AC_ARG_ENABLE([fast-install], *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done - IFS="$lt_save_ifs" + IFS=$lt_save_ifs ;; esac], [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT) @@ -11263,14 +11962,14 @@ AU_DEFUN([AC_ENABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put -the `fast-install' option into LT_INIT's first parameter.]) +the 'fast-install' option into LT_INIT's first parameter.]) ]) AU_DEFUN([AC_DISABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], [disable-fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put -the `disable-fast-install' option into LT_INIT's first parameter.]) +the 'disable-fast-install' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: @@ -11278,11 +11977,64 @@ dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], []) dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) +# _LT_WITH_AIX_SONAME([DEFAULT]) +# ---------------------------------- +# implement the --with-aix-soname flag, and support the `aix-soname=aix' +# and `aix-soname=both' and `aix-soname=svr4' LT_INIT options. DEFAULT +# is either `aix', `both' or `svr4'. If omitted, it defaults to `aix'. +m4_define([_LT_WITH_AIX_SONAME], +[m4_define([_LT_WITH_AIX_SONAME_DEFAULT], [m4_if($1, svr4, svr4, m4_if($1, both, both, aix))])dnl +shared_archive_member_spec= +case $host,$enable_shared in +power*-*-aix[[5-9]]*,yes) + AC_MSG_CHECKING([which variant of shared library versioning to provide]) + AC_ARG_WITH([aix-soname], + [AS_HELP_STRING([--with-aix-soname=aix|svr4|both], + [shared library versioning (aka "SONAME") variant to provide on AIX, @<:@default=]_LT_WITH_AIX_SONAME_DEFAULT[@:>@.])], + [case $withval in + aix|svr4|both) + ;; + *) + AC_MSG_ERROR([Unknown argument to --with-aix-soname]) + ;; + esac + lt_cv_with_aix_soname=$with_aix_soname], + [AC_CACHE_VAL([lt_cv_with_aix_soname], + [lt_cv_with_aix_soname=]_LT_WITH_AIX_SONAME_DEFAULT) + with_aix_soname=$lt_cv_with_aix_soname]) + AC_MSG_RESULT([$with_aix_soname]) + if test aix != "$with_aix_soname"; then + # For the AIX way of multilib, we name the shared archive member + # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o', + # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File. + # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag, + # the AIX toolchain works better with OBJECT_MODE set (default 32). + if test 64 = "${OBJECT_MODE-32}"; then + shared_archive_member_spec=shr_64 + else + shared_archive_member_spec=shr + fi + fi + ;; +*) + with_aix_soname=aix + ;; +esac + +_LT_DECL([], [shared_archive_member_spec], [0], + [Shared archive member basename, for filename based shared library versioning on AIX])dnl +])# _LT_WITH_AIX_SONAME + +LT_OPTION_DEFINE([LT_INIT], [aix-soname=aix], [_LT_WITH_AIX_SONAME([aix])]) +LT_OPTION_DEFINE([LT_INIT], [aix-soname=both], [_LT_WITH_AIX_SONAME([both])]) +LT_OPTION_DEFINE([LT_INIT], [aix-soname=svr4], [_LT_WITH_AIX_SONAME([svr4])]) + + # _LT_WITH_PIC([MODE]) # -------------------- -# implement the --with-pic flag, and support the `pic-only' and `no-pic' +# implement the --with-pic flag, and support the 'pic-only' and 'no-pic' # LT_INIT options. -# MODE is either `yes' or `no'. If omitted, it defaults to `both'. +# MODE is either 'yes' or 'no'. If omitted, it defaults to 'both'. m4_define([_LT_WITH_PIC], [AC_ARG_WITH([pic], [AS_HELP_STRING([--with-pic@<:@=PKGS@:>@], @@ -11293,19 +12045,17 @@ m4_define([_LT_WITH_PIC], *) pic_mode=default # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for lt_pkg in $withval; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs if test "X$lt_pkg" = "X$lt_p"; then pic_mode=yes fi done - IFS="$lt_save_ifs" + IFS=$lt_save_ifs ;; esac], - [pic_mode=default]) - -test -z "$pic_mode" && pic_mode=m4_default([$1], [default]) + [pic_mode=m4_default([$1], [default])]) _LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl ])# _LT_WITH_PIC @@ -11318,7 +12068,7 @@ AU_DEFUN([AC_LIBTOOL_PICMODE], [_LT_SET_OPTION([LT_INIT], [pic-only]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you -put the `pic-only' option into LT_INIT's first parameter.]) +put the 'pic-only' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: @@ -11343,7 +12093,8 @@ LT_OPTION_DEFINE([LTDL_INIT], [convenience], [m4_define([_LTDL_TYPE], [convenience])]) # ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*- # -# Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc. +# Copyright (C) 2004-2005, 2007-2008, 2011-2015 Free Software +# Foundation, Inc. # Written by Gary V. Vaughan, 2004 # # This file is free software; the Free Software Foundation gives @@ -11376,7 +12127,7 @@ m4_define([_lt_join], # ------------ # Manipulate m4 lists. # These macros are necessary as long as will still need to support -# Autoconf-2.59 which quotes differently. +# Autoconf-2.59, which quotes differently. m4_define([lt_car], [[$1]]) m4_define([lt_cdr], [m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])], @@ -11387,7 +12138,7 @@ m4_define([lt_unquote], $1) # lt_append(MACRO-NAME, STRING, [SEPARATOR]) # ------------------------------------------ -# Redefine MACRO-NAME to hold its former content plus `SEPARATOR'`STRING'. +# Redefine MACRO-NAME to hold its former content plus 'SEPARATOR''STRING'. # Note that neither SEPARATOR nor STRING are expanded; they are appended # to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked). # No SEPARATOR is output if MACRO-NAME was previously undefined (different @@ -11466,7 +12217,7 @@ m4_define([lt_dict_filter], ]) # ltversion.m4 -- version numbers -*- Autoconf -*- # -# Copyright (C) 2004 Free Software Foundation, Inc. +# Copyright (C) 2004, 2011-2015 Free Software Foundation, Inc. # Written by Scott James Remnant, 2004 # # This file is free software; the Free Software Foundation gives @@ -11475,21 +12226,22 @@ m4_define([lt_dict_filter], # @configure_input@ -# serial 3337 ltversion.m4 +# serial 4179 ltversion.m4 # This file is part of GNU Libtool -m4_define([LT_PACKAGE_VERSION], [2.4.2]) -m4_define([LT_PACKAGE_REVISION], [1.3337]) +m4_define([LT_PACKAGE_VERSION], [2.4.6]) +m4_define([LT_PACKAGE_REVISION], [2.4.6]) AC_DEFUN([LTVERSION_VERSION], -[macro_version='2.4.2' -macro_revision='1.3337' +[macro_version='2.4.6' +macro_revision='2.4.6' _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) _LT_DECL(, macro_revision, 0) ]) # lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*- # -# Copyright (C) 2004, 2005, 2007, 2009 Free Software Foundation, Inc. +# Copyright (C) 2004-2005, 2007, 2009, 2011-2015 Free Software +# Foundation, Inc. # Written by Scott James Remnant, 2004. # # This file is free software; the Free Software Foundation gives @@ -11500,7 +12252,7 @@ _LT_DECL(, macro_revision, 0) # These exist entirely to fool aclocal when bootstrapping libtool. # -# In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN) +# In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN), # which have later been changed to m4_define as they aren't part of the # exported API, or moved to Autoconf or Automake where they belong. # @@ -11514,7 +12266,7 @@ _LT_DECL(, macro_revision, 0) # included after everything else. This provides aclocal with the # AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything # because those macros already exist, or will be overwritten later. -# We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. +# We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. # # Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here. # Yes, that means every name once taken will need to remain here until diff --git a/coregrade/src/autom4te.cache/requests b/coregrade/src/autom4te.cache/requests index d36a357..2b0e4cb 100644 --- a/coregrade/src/autom4te.cache/requests +++ b/coregrade/src/autom4te.cache/requests @@ -15,63 +15,134 @@ 'configure.in' ], { - 'AM_PROG_F77_C_O' => 1, - '_LT_AC_TAGCONFIG' => 1, - 'm4_pattern_forbid' => 1, - 'AC_INIT' => 1, - 'AC_CANONICAL_TARGET' => 1, - '_AM_COND_IF' => 1, - 'AC_CONFIG_LIBOBJ_DIR' => 1, - 'AC_SUBST' => 1, - 'AC_CANONICAL_HOST' => 1, - 'AC_FC_SRCEXT' => 1, - 'AC_PROG_LIBTOOL' => 1, - 'AM_INIT_AUTOMAKE' => 1, - 'AC_CONFIG_SUBDIRS' => 1, - 'AM_PATH_GUILE' => 1, - 'AM_AUTOMAKE_VERSION' => 1, - 'LT_CONFIG_LTDL_DIR' => 1, - 'AC_CONFIG_LINKS' => 1, - 'AC_REQUIRE_AUX_FILE' => 1, - 'LT_SUPPORTED_TAG' => 1, - 'm4_sinclude' => 1, - 'AM_MAINTAINER_MODE' => 1, - 'AM_NLS' => 1, - 'AC_FC_PP_DEFINE' => 1, - 'AM_GNU_GETTEXT_INTL_SUBDIR' => 1, - '_m4_warn' => 1, - 'AM_MAKEFILE_INCLUDE' => 1, - 'AM_PROG_CXX_C_O' => 1, - '_AM_MAKEFILE_INCLUDE' => 1, - '_AM_COND_ENDIF' => 1, - 'AM_ENABLE_MULTILIB' => 1, - 'AM_SILENT_RULES' => 1, - 'AM_PROG_MOC' => 1, - 'AC_CONFIG_FILES' => 1, - 'LT_INIT' => 1, - 'include' => 1, - 'AM_GNU_GETTEXT' => 1, - 'AM_PROG_AR' => 1, - 'AC_LIBSOURCE' => 1, - 'AC_CANONICAL_BUILD' => 1, - 'AM_PROG_FC_C_O' => 1, - 'AC_FC_FREEFORM' => 1, - 'AC_FC_PP_SRCEXT' => 1, - 'AH_OUTPUT' => 1, - 'AC_CONFIG_AUX_DIR' => 1, - '_AM_SUBST_NOTMAKE' => 1, - 'm4_pattern_allow' => 1, 'AM_PROG_CC_C_O' => 1, - 'sinclude' => 1, - 'AM_CONDITIONAL' => 1, - 'AC_CANONICAL_SYSTEM' => 1, - 'AM_XGETTEXT_OPTION' => 1, - 'AC_CONFIG_HEADERS' => 1, 'AC_DEFINE_TRACE_LITERAL' => 1, - 'AM_POT_TOOLS' => 1, + 'AC_CONFIG_LINKS' => 1, 'm4_include' => 1, '_AM_COND_ELSE' => 1, - 'AC_SUBST_TRACE' => 1 + 'AM_GNU_GETTEXT' => 1, + 'AC_CANONICAL_HOST' => 1, + 'AC_FC_PP_DEFINE' => 1, + '_AM_MAKEFILE_INCLUDE' => 1, + 'AC_SUBST' => 1, + 'AM_POT_TOOLS' => 1, + 'AC_FC_FREEFORM' => 1, + '_m4_warn' => 1, + 'AC_CONFIG_FILES' => 1, + 'm4_pattern_forbid' => 1, + 'AC_SUBST_TRACE' => 1, + 'AC_CONFIG_SUBDIRS' => 1, + 'AM_ENABLE_MULTILIB' => 1, + 'AC_INIT' => 1, + 'm4_pattern_allow' => 1, + 'AC_CONFIG_LIBOBJ_DIR' => 1, + 'AM_PROG_CXX_C_O' => 1, + 'AM_MAKEFILE_INCLUDE' => 1, + 'AM_PROG_F77_C_O' => 1, + 'include' => 1, + '_AM_COND_IF' => 1, + 'sinclude' => 1, + 'AC_FC_SRCEXT' => 1, + 'LT_SUPPORTED_TAG' => 1, + 'AM_PROG_FC_C_O' => 1, + 'AC_CANONICAL_BUILD' => 1, + 'm4_sinclude' => 1, + 'AM_SILENT_RULES' => 1, + '_LT_AC_TAGCONFIG' => 1, + 'AM_INIT_AUTOMAKE' => 1, + 'AC_PROG_LIBTOOL' => 1, + 'AM_CONDITIONAL' => 1, + '_AM_SUBST_NOTMAKE' => 1, + 'AC_FC_PP_SRCEXT' => 1, + 'AC_CONFIG_AUX_DIR' => 1, + '_AM_COND_ENDIF' => 1, + 'AM_GNU_GETTEXT_INTL_SUBDIR' => 1, + 'AM_PROG_MOC' => 1, + 'AC_CONFIG_HEADERS' => 1, + 'AC_LIBSOURCE' => 1, + 'AM_MAINTAINER_MODE' => 1, + 'AM_PATH_GUILE' => 1, + 'AM_PROG_AR' => 1, + 'AC_CANONICAL_TARGET' => 1, + 'AH_OUTPUT' => 1, + 'AM_XGETTEXT_OPTION' => 1, + 'AM_NLS' => 1, + 'AC_CANONICAL_SYSTEM' => 1, + 'LT_CONFIG_LTDL_DIR' => 1, + 'AM_AUTOMAKE_VERSION' => 1, + 'LT_INIT' => 1, + 'AC_REQUIRE_AUX_FILE' => 1 + } + ], 'Autom4te::Request' ), + bless( [ + '1', + 1, + [ + '/usr/share/autoconf' + ], + [ + '/usr/share/autoconf/autoconf/autoconf.m4f', + 'aclocal.m4', + 'configure.ac' + ], + { + 'LT_INIT' => 1, + 'AC_REQUIRE_AUX_FILE' => 1, + 'AM_AUTOMAKE_VERSION' => 1, + 'LT_CONFIG_LTDL_DIR' => 1, + 'AC_CANONICAL_SYSTEM' => 1, + 'AM_XGETTEXT_OPTION' => 1, + 'AM_NLS' => 1, + 'AH_OUTPUT' => 1, + 'AC_CANONICAL_TARGET' => 1, + 'AM_PATH_GUILE' => 1, + 'AM_PROG_AR' => 1, + 'AM_MAINTAINER_MODE' => 1, + 'AC_LIBSOURCE' => 1, + 'AC_CONFIG_HEADERS' => 1, + 'AM_GNU_GETTEXT_INTL_SUBDIR' => 1, + 'AM_PROG_MOC' => 1, + '_AM_COND_ENDIF' => 1, + 'AC_CONFIG_AUX_DIR' => 1, + 'AC_FC_PP_SRCEXT' => 1, + '_AM_SUBST_NOTMAKE' => 1, + 'AM_CONDITIONAL' => 1, + 'AC_PROG_LIBTOOL' => 1, + 'AM_INIT_AUTOMAKE' => 1, + 'AM_SILENT_RULES' => 1, + '_LT_AC_TAGCONFIG' => 1, + 'm4_sinclude' => 1, + 'LT_SUPPORTED_TAG' => 1, + 'AM_PROG_FC_C_O' => 1, + 'AC_CANONICAL_BUILD' => 1, + 'AC_FC_SRCEXT' => 1, + 'sinclude' => 1, + 'include' => 1, + '_AM_COND_IF' => 1, + 'AM_PROG_F77_C_O' => 1, + 'AM_MAKEFILE_INCLUDE' => 1, + 'AM_PROG_CXX_C_O' => 1, + 'AC_CONFIG_LIBOBJ_DIR' => 1, + 'AC_INIT' => 1, + 'm4_pattern_allow' => 1, + 'AM_ENABLE_MULTILIB' => 1, + 'AC_CONFIG_SUBDIRS' => 1, + 'AC_SUBST_TRACE' => 1, + 'AC_CONFIG_FILES' => 1, + 'm4_pattern_forbid' => 1, + '_m4_warn' => 1, + 'AC_FC_FREEFORM' => 1, + 'AM_POT_TOOLS' => 1, + 'AC_SUBST' => 1, + '_AM_MAKEFILE_INCLUDE' => 1, + 'AC_FC_PP_DEFINE' => 1, + 'AM_GNU_GETTEXT' => 1, + 'AC_CANONICAL_HOST' => 1, + '_AM_COND_ELSE' => 1, + 'AC_CONFIG_LINKS' => 1, + 'm4_include' => 1, + 'AC_DEFINE_TRACE_LITERAL' => 1, + 'AM_PROG_CC_C_O' => 1 } ], 'Autom4te::Request' ) ); diff --git a/coregrade/src/build/libtool.m4 b/coregrade/src/build/libtool.m4 index dd8d217..2c89343 100644 --- a/coregrade/src/build/libtool.m4 +++ b/coregrade/src/build/libtool.m4 @@ -1,8 +1,6 @@ # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- # -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, -# 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. +# Copyright (C) 1996-2001, 2003-2015 Free Software Foundation, Inc. # Written by Gordon Matzigkeit, 1996 # # This file is free software; the Free Software Foundation gives @@ -10,36 +8,30 @@ # modifications, as long as this notice is preserved. m4_define([_LT_COPYING], [dnl -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, -# 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. -# Written by Gordon Matzigkeit, 1996 +# Copyright (C) 2014 Free Software Foundation, Inc. +# This is free software; see the source for copying conditions. There is NO +# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +# GNU Libtool is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of of the License, or +# (at your option) any later version. # -# This file is part of GNU Libtool. +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program or library that is built +# using GNU Libtool, you may include this file under the same +# distribution terms that you use for the rest of that program. # -# GNU Libtool is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License as -# published by the Free Software Foundation; either version 2 of -# the License, or (at your option) any later version. -# -# As a special exception to the GNU General Public License, -# if you distribute this file as part of a program or library that -# is built using GNU Libtool, you may include this file under the -# same distribution terms that you use for the rest of that program. -# -# GNU Libtool is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of +# GNU Libtool is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with GNU Libtool; see the file COPYING. If not, a copy -# can be downloaded from http://www.gnu.org/licenses/gpl.html, or -# obtained by writing to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# along with this program. If not, see . ]) -# serial 57 LT_INIT +# serial 58 LT_INIT # LT_PREREQ(VERSION) @@ -67,7 +59,7 @@ esac # LT_INIT([OPTIONS]) # ------------------ AC_DEFUN([LT_INIT], -[AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT +[AC_PREREQ([2.62])dnl We use AC_PATH_PROGS_FEATURE_CHECK AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl AC_BEFORE([$0], [LT_LANG])dnl AC_BEFORE([$0], [LT_OUTPUT])dnl @@ -91,7 +83,7 @@ dnl Parse OPTIONS _LT_SET_OPTIONS([$0], [$1]) # This can be used to rebuild libtool when needed -LIBTOOL_DEPS="$ltmain" +LIBTOOL_DEPS=$ltmain # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' @@ -111,26 +103,43 @@ dnl AC_DEFUN([AC_PROG_LIBTOOL], []) dnl AC_DEFUN([AM_PROG_LIBTOOL], []) +# _LT_PREPARE_CC_BASENAME +# ----------------------- +m4_defun([_LT_PREPARE_CC_BASENAME], [ +# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. +func_cc_basename () +{ + for cc_temp in @S|@*""; do + case $cc_temp in + compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; + distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; + \-*) ;; + *) break;; + esac + done + func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` +} +])# _LT_PREPARE_CC_BASENAME + + # _LT_CC_BASENAME(CC) # ------------------- -# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. +# It would be clearer to call AC_REQUIREs from _LT_PREPARE_CC_BASENAME, +# but that macro is also expanded into generated libtool script, which +# arranges for $SED and $ECHO to be set by different means. m4_defun([_LT_CC_BASENAME], -[for cc_temp in $1""; do - case $cc_temp in - compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; - distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; - \-*) ;; - *) break;; - esac -done -cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` +[m4_require([_LT_PREPARE_CC_BASENAME])dnl +AC_REQUIRE([_LT_DECL_SED])dnl +AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl +func_cc_basename $1 +cc_basename=$func_cc_basename_result ]) # _LT_FILEUTILS_DEFAULTS # ---------------------- # It is okay to use these file commands and assume they have been set -# sensibly after `m4_require([_LT_FILEUTILS_DEFAULTS])'. +# sensibly after 'm4_require([_LT_FILEUTILS_DEFAULTS])'. m4_defun([_LT_FILEUTILS_DEFAULTS], [: ${CP="cp -f"} : ${MV="mv -f"} @@ -177,15 +186,16 @@ m4_require([_LT_CHECK_SHAREDLIB_FROM_LINKLIB])dnl m4_require([_LT_CMD_OLD_ARCHIVE])dnl m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl m4_require([_LT_WITH_SYSROOT])dnl +m4_require([_LT_CMD_TRUNCATE])dnl _LT_CONFIG_LIBTOOL_INIT([ -# See if we are running on zsh, and set the options which allow our +# See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes INIT. -if test -n "\${ZSH_VERSION+set}" ; then +if test -n "\${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi ]) -if test -n "${ZSH_VERSION+set}" ; then +if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi @@ -198,7 +208,7 @@ aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. - if test "X${COLLECT_NAMES+set}" != Xset; then + if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi @@ -209,14 +219,14 @@ esac ofile=libtool can_build_shared=yes -# All known linkers require a `.a' archive for static linking (except MSVC, +# All known linkers require a '.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a -with_gnu_ld="$lt_cv_prog_gnu_ld" +with_gnu_ld=$lt_cv_prog_gnu_ld -old_CC="$CC" -old_CFLAGS="$CFLAGS" +old_CC=$CC +old_CFLAGS=$CFLAGS # Set sane defaults for various variables test -z "$CC" && CC=cc @@ -269,14 +279,14 @@ no_glob_subst='s/\*/\\\*/g' # _LT_PROG_LTMAIN # --------------- -# Note that this code is called both from `configure', and `config.status' +# Note that this code is called both from 'configure', and 'config.status' # now that we use AC_CONFIG_COMMANDS to generate libtool. Notably, -# `config.status' has no value for ac_aux_dir unless we are using Automake, +# 'config.status' has no value for ac_aux_dir unless we are using Automake, # so we pass a copy along to make sure it has a sensible value anyway. m4_defun([_LT_PROG_LTMAIN], [m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl _LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir']) -ltmain="$ac_aux_dir/ltmain.sh" +ltmain=$ac_aux_dir/ltmain.sh ])# _LT_PROG_LTMAIN @@ -286,7 +296,7 @@ ltmain="$ac_aux_dir/ltmain.sh" # So that we can recreate a full libtool script including additional # tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS -# in macros and then make a single call at the end using the `libtool' +# in macros and then make a single call at the end using the 'libtool' # label. @@ -421,8 +431,8 @@ m4_define([_lt_decl_all_varnames], # _LT_CONFIG_STATUS_DECLARE([VARNAME]) # ------------------------------------ -# Quote a variable value, and forward it to `config.status' so that its -# declaration there will have the same value as in `configure'. VARNAME +# Quote a variable value, and forward it to 'config.status' so that its +# declaration there will have the same value as in 'configure'. VARNAME # must have a single quote delimited value for this to work. m4_define([_LT_CONFIG_STATUS_DECLARE], [$1='`$ECHO "$][$1" | $SED "$delay_single_quote_subst"`']) @@ -446,7 +456,7 @@ m4_defun([_LT_CONFIG_STATUS_DECLARATIONS], # Output comment and list of tags supported by the script m4_defun([_LT_LIBTOOL_TAGS], [_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl -available_tags="_LT_TAGS"dnl +available_tags='_LT_TAGS'dnl ]) @@ -474,7 +484,7 @@ m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl # _LT_LIBTOOL_CONFIG_VARS # ----------------------- # Produce commented declarations of non-tagged libtool config variables -# suitable for insertion in the LIBTOOL CONFIG section of the `libtool' +# suitable for insertion in the LIBTOOL CONFIG section of the 'libtool' # script. Tagged libtool config variables (even for the LIBTOOL CONFIG # section) are produced by _LT_LIBTOOL_TAG_VARS. m4_defun([_LT_LIBTOOL_CONFIG_VARS], @@ -500,8 +510,8 @@ m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])]) # Send accumulated output to $CONFIG_STATUS. Thanks to the lists of # variables for single and double quote escaping we saved from calls # to _LT_DECL, we can put quote escaped variables declarations -# into `config.status', and then the shell code to quote escape them in -# for loops in `config.status'. Finally, any additional code accumulated +# into 'config.status', and then the shell code to quote escape them in +# for loops in 'config.status'. Finally, any additional code accumulated # from calls to _LT_CONFIG_LIBTOOL_INIT is expanded. m4_defun([_LT_CONFIG_COMMANDS], [AC_PROVIDE_IFELSE([LT_OUTPUT], @@ -547,7 +557,7 @@ for var in lt_decl_all_varnames([[ \ ]], lt_decl_quote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) - eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" @@ -560,7 +570,7 @@ for var in lt_decl_all_varnames([[ \ ]], lt_decl_dquote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) - eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" @@ -576,7 +586,7 @@ _LT_OUTPUT_LIBTOOL_INIT # Generate a child script FILE with all initialization necessary to # reuse the environment learned by the parent script, and make the # file executable. If COMMENT is supplied, it is inserted after the -# `#!' sequence but before initialization text begins. After this +# '#!' sequence but before initialization text begins. After this # macro, additional text can be appended to FILE to form the body of # the child script. The macro ends with non-zero status if the # file could not be fully written (such as if the disk is full). @@ -598,7 +608,7 @@ AS_SHELL_SANITIZE _AS_PREPARE exec AS_MESSAGE_FD>&1 _ASEOF -test $lt_write_fail = 0 && chmod +x $1[]dnl +test 0 = "$lt_write_fail" && chmod +x $1[]dnl m4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT # LT_OUTPUT @@ -621,7 +631,7 @@ exec AS_MESSAGE_LOG_FD>>config.log } >&AS_MESSAGE_LOG_FD lt_cl_help="\ -\`$as_me' creates a local libtool stub from the current configuration, +'$as_me' creates a local libtool stub from the current configuration, for use in further configure time tests before the real libtool is generated. @@ -643,7 +653,7 @@ Copyright (C) 2011 Free Software Foundation, Inc. This config.lt script is free software; the Free Software Foundation gives unlimited permision to copy, distribute and modify it." -while test $[#] != 0 +while test 0 != $[#] do case $[1] in --version | --v* | -V ) @@ -656,10 +666,10 @@ do lt_cl_silent=: ;; -*) AC_MSG_ERROR([unrecognized option: $[1] -Try \`$[0] --help' for more information.]) ;; +Try '$[0] --help' for more information.]) ;; *) AC_MSG_ERROR([unrecognized argument: $[1] -Try \`$[0] --help' for more information.]) ;; +Try '$[0] --help' for more information.]) ;; esac shift done @@ -685,7 +695,7 @@ chmod +x "$CONFIG_LT" # open by configure. Here we exec the FD to /dev/null, effectively closing # config.log, so it can be properly (re)opened and appended to by config.lt. lt_cl_success=: -test "$silent" = yes && +test yes = "$silent" && lt_config_lt_args="$lt_config_lt_args --quiet" exec AS_MESSAGE_LOG_FD>/dev/null $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false @@ -705,32 +715,47 @@ m4_defun([_LT_CONFIG], _LT_CONFIG_SAVE_COMMANDS([ m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl m4_if(_LT_TAG, [C], [ - # See if we are running on zsh, and set the options which allow our + # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes. - if test -n "${ZSH_VERSION+set}" ; then + if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi - cfgfile="${ofile}T" + cfgfile=${ofile}T trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL - -# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. -# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION +# Generated automatically by $as_me ($PACKAGE) $VERSION # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # NOTE: Changes made to this file will be lost: look at ltmain.sh. -# + +# Provide generalized library-building support services. +# Written by Gordon Matzigkeit, 1996 + _LT_COPYING _LT_LIBTOOL_TAGS +# Configured defaults for sys_lib_dlsearch_path munging. +: \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"} + # ### BEGIN LIBTOOL CONFIG _LT_LIBTOOL_CONFIG_VARS _LT_LIBTOOL_TAG_VARS # ### END LIBTOOL CONFIG +_LT_EOF + + cat <<'_LT_EOF' >> "$cfgfile" + +# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE + +_LT_PREPARE_MUNGE_PATH_LIST +_LT_PREPARE_CC_BASENAME + +# ### END FUNCTIONS SHARED WITH CONFIGURE + _LT_EOF case $host_os in @@ -739,7 +764,7 @@ _LT_EOF # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. -if test "X${COLLECT_NAMES+set}" != Xset; then +if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi @@ -756,8 +781,6 @@ _LT_EOF sed '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) - _LT_PROG_REPLACE_SHELLFNS - mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" @@ -775,7 +798,6 @@ _LT_EOF [m4_if([$1], [], [ PACKAGE='$PACKAGE' VERSION='$VERSION' - TIMESTAMP='$TIMESTAMP' RM='$RM' ofile='$ofile'], []) ])dnl /_LT_CONFIG_SAVE_COMMANDS @@ -974,7 +996,7 @@ m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[ AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod], [lt_cv_apple_cc_single_mod=no - if test -z "${LT_MULTI_MODULE}"; then + if test -z "$LT_MULTI_MODULE"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the @@ -992,7 +1014,7 @@ m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[ cat conftest.err >&AS_MESSAGE_LOG_FD # Otherwise, if the output was created with a 0 exit code from # the compiler, it worked. - elif test -f libconftest.dylib && test $_lt_result -eq 0; then + elif test -f libconftest.dylib && test 0 = "$_lt_result"; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&AS_MESSAGE_LOG_FD @@ -1010,7 +1032,7 @@ m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[ AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [lt_cv_ld_exported_symbols_list=yes], [lt_cv_ld_exported_symbols_list=no]) - LDFLAGS="$save_LDFLAGS" + LDFLAGS=$save_LDFLAGS ]) AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load], @@ -1032,7 +1054,7 @@ _LT_EOF _lt_result=$? if test -s conftest.err && $GREP force_load conftest.err; then cat conftest.err >&AS_MESSAGE_LOG_FD - elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then + elif test -f conftest && test 0 = "$_lt_result" && $GREP forced_load conftest >/dev/null 2>&1; then lt_cv_ld_force_load=yes else cat conftest.err >&AS_MESSAGE_LOG_FD @@ -1042,32 +1064,32 @@ _LT_EOF ]) case $host_os in rhapsody* | darwin1.[[012]]) - _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; + _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;; darwin1.*) - _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; darwin*) # darwin 5.x on # if running on 10.5 or later, the deployment target defaults # to the OS version, if on x86, and 10.4, the deployment # target defaults to 10.4. Don't you love it? case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*) - _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; - 10.[[012]]*) - _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; + 10.[[012]][[,.]]*) + _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; 10.*) - _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; esac ;; esac - if test "$lt_cv_apple_cc_single_mod" = "yes"; then + if test yes = "$lt_cv_apple_cc_single_mod"; then _lt_dar_single_mod='$single_module' fi - if test "$lt_cv_ld_exported_symbols_list" = "yes"; then - _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' + if test yes = "$lt_cv_ld_exported_symbols_list"; then + _lt_dar_export_syms=' $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym' else - _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' + _lt_dar_export_syms='~$NMEDIT -s $output_objdir/$libname-symbols.expsym $lib' fi - if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then + if test : != "$DSYMUTIL" && test no = "$lt_cv_ld_force_load"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= @@ -1087,29 +1109,29 @@ m4_defun([_LT_DARWIN_LINKER_FEATURES], _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported - if test "$lt_cv_ld_force_load" = "yes"; then - _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' + if test yes = "$lt_cv_ld_force_load"; then + _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes], [FC], [_LT_TAGVAR(compiler_needs_object, $1)=yes]) else _LT_TAGVAR(whole_archive_flag_spec, $1)='' fi _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined" + _LT_TAGVAR(allow_undefined_flag, $1)=$_lt_dar_allow_undefined case $cc_basename in - ifort*) _lt_dar_can_shared=yes ;; + ifort*|nagfor*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac - if test "$_lt_dar_can_shared" = "yes"; then + if test yes = "$_lt_dar_can_shared"; then output_verbose_link_cmd=func_echo_all - _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" - _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" - _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" - _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" + _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil" + _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil" + _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil" + _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil" m4_if([$1], [CXX], -[ if test "$lt_cv_apple_cc_single_mod" != "yes"; then - _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" - _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" +[ if test yes != "$lt_cv_apple_cc_single_mod"; then + _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dsymutil" + _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dar_export_syms$_lt_dsymutil" fi ],[]) else @@ -1129,7 +1151,7 @@ m4_defun([_LT_DARWIN_LINKER_FEATURES], # Allow to override them for all tags through lt_cv_aix_libpath. m4_defun([_LT_SYS_MODULE_PATH_AIX], [m4_require([_LT_DECL_SED])dnl -if test "${lt_cv_aix_libpath+set}" = set; then +if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])], @@ -1147,7 +1169,7 @@ else _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi],[]) if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then - _LT_TAGVAR([lt_cv_aix_libpath_], [$1])="/usr/lib:/lib" + _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=/usr/lib:/lib fi ]) aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1]) @@ -1167,8 +1189,8 @@ m4_define([_LT_SHELL_INIT], # ----------------------- # Find how we can fake an echo command that does not interpret backslash. # In particular, with Autoconf 2.60 or later we add some code to the start -# of the generated configure script which will find a shell with a builtin -# printf (which we can use as an echo command). +# of the generated configure script that will find a shell with a builtin +# printf (that we can use as an echo command). m4_defun([_LT_PROG_ECHO_BACKSLASH], [ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO @@ -1196,10 +1218,10 @@ fi # Invoke $ECHO with all args, space-separated. func_echo_all () { - $ECHO "$*" + $ECHO "$*" } -case "$ECHO" in +case $ECHO in printf*) AC_MSG_RESULT([printf]) ;; print*) AC_MSG_RESULT([print -r]) ;; *) AC_MSG_RESULT([cat]) ;; @@ -1225,16 +1247,17 @@ _LT_DECL([], [ECHO], [1], [An echo program that protects backslashes]) AC_DEFUN([_LT_WITH_SYSROOT], [AC_MSG_CHECKING([for sysroot]) AC_ARG_WITH([sysroot], -[ --with-sysroot[=DIR] Search for dependent libraries within DIR - (or the compiler's sysroot if not specified).], +[AS_HELP_STRING([--with-sysroot@<:@=DIR@:>@], + [Search for dependent libraries within DIR (or the compiler's sysroot + if not specified).])], [], [with_sysroot=no]) dnl lt_sysroot will always be passed unquoted. We quote it here dnl in case the user passed a directory name. lt_sysroot= -case ${with_sysroot} in #( +case $with_sysroot in #( yes) - if test "$GCC" = yes; then + if test yes = "$GCC"; then lt_sysroot=`$CC --print-sysroot 2>/dev/null` fi ;; #( @@ -1244,14 +1267,14 @@ case ${with_sysroot} in #( no|'') ;; #( *) - AC_MSG_RESULT([${with_sysroot}]) + AC_MSG_RESULT([$with_sysroot]) AC_MSG_ERROR([The sysroot must be an absolute path.]) ;; esac AC_MSG_RESULT([${lt_sysroot:-no}]) _LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl -[dependent libraries, and in which our libraries should be installed.])]) +[dependent libraries, and where our libraries should be installed.])]) # _LT_ENABLE_LOCK # --------------- @@ -1259,31 +1282,33 @@ m4_defun([_LT_ENABLE_LOCK], [AC_ARG_ENABLE([libtool-lock], [AS_HELP_STRING([--disable-libtool-lock], [avoid locking (might break parallel builds)])]) -test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes +test no = "$enable_libtool_lock" || enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) - # Find out which ABI we are using. + # Find out what ABI is being produced by ac_compile, and set mode + # options accordingly. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) - HPUX_IA64_MODE="32" + HPUX_IA64_MODE=32 ;; *ELF-64*) - HPUX_IA64_MODE="64" + HPUX_IA64_MODE=64 ;; esac fi rm -rf conftest* ;; *-*-irix6*) - # Find out which ABI we are using. + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then - if test "$lt_cv_prog_gnu_ld" = yes; then + if test yes = "$lt_cv_prog_gnu_ld"; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" @@ -1312,9 +1337,46 @@ ia64-*-hpux*) rm -rf conftest* ;; -x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ +mips64*-*linux*) + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. + echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + emul=elf + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + emul="${emul}32" + ;; + *64-bit*) + emul="${emul}64" + ;; + esac + case `/usr/bin/file conftest.$ac_objext` in + *MSB*) + emul="${emul}btsmip" + ;; + *LSB*) + emul="${emul}ltsmip" + ;; + esac + case `/usr/bin/file conftest.$ac_objext` in + *N32*) + emul="${emul}n32" + ;; + esac + LD="${LD-ld} -m $emul" + fi + rm -rf conftest* + ;; + +x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) - # Find out which ABI we are using. + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. Note that the listed cases only cover the + # situations where additional linker options are needed (such as when + # doing 32-bit compilation for a host where ld defaults to 64-bit, or + # vice versa); the common cases where no linker options are needed do + # not appear in the list. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in @@ -1324,9 +1386,19 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) - LD="${LD-ld} -m elf_i386" + case `/usr/bin/file conftest.o` in + *x86-64*) + LD="${LD-ld} -m elf32_x86_64" + ;; + *) + LD="${LD-ld} -m elf_i386" + ;; + esac ;; - ppc64-*linux*|powerpc64-*linux*) + powerpc64le-*linux*) + LD="${LD-ld} -m elf32lppclinux" + ;; + powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) @@ -1345,7 +1417,10 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; - ppc*-*linux*|powerpc*-*linux*) + powerpcle-*linux*) + LD="${LD-ld} -m elf64lppc" + ;; + powerpc-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) @@ -1363,19 +1438,20 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. - SAVE_CFLAGS="$CFLAGS" + SAVE_CFLAGS=$CFLAGS CFLAGS="$CFLAGS -belf" AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, [AC_LANG_PUSH(C) AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) AC_LANG_POP]) - if test x"$lt_cv_cc_needs_belf" != x"yes"; then + if test yes != "$lt_cv_cc_needs_belf"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf - CFLAGS="$SAVE_CFLAGS" + CFLAGS=$SAVE_CFLAGS fi ;; *-*solaris*) - # Find out which ABI we are using. + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in @@ -1383,7 +1459,7 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) case $lt_cv_prog_gnu_ld in yes*) case $host in - i?86-*-solaris*) + i?86-*-solaris*|x86_64-*-solaris*) LD="${LD-ld} -m elf_x86_64" ;; sparc*-*-solaris*) @@ -1392,7 +1468,7 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) esac # GNU ld 2.21 introduced _sol2 emulations. Use them if available. if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then - LD="${LD-ld}_sol2" + LD=${LD-ld}_sol2 fi ;; *) @@ -1408,7 +1484,7 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) ;; esac -need_locks="$enable_libtool_lock" +need_locks=$enable_libtool_lock ])# _LT_ENABLE_LOCK @@ -1427,11 +1503,11 @@ AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file], [echo conftest.$ac_objext > conftest.lst lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD' AC_TRY_EVAL([lt_ar_try]) - if test "$ac_status" -eq 0; then + if test 0 -eq "$ac_status"; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a AC_TRY_EVAL([lt_ar_try]) - if test "$ac_status" -ne 0; then + if test 0 -ne "$ac_status"; then lt_cv_ar_at_file=@ fi fi @@ -1439,7 +1515,7 @@ AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file], ]) ]) -if test "x$lt_cv_ar_at_file" = xno; then +if test no = "$lt_cv_ar_at_file"; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file @@ -1470,7 +1546,7 @@ old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in - openbsd*) + bitrig* | openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" ;; *) @@ -1506,7 +1582,7 @@ AC_CACHE_CHECK([$1], [$2], [$2=no m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) echo "$lt_simple_compile_test_code" > conftest.$ac_ext - lt_compiler_flag="$3" + lt_compiler_flag="$3" ## exclude from sc_useless_quotes_in_assignment # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins @@ -1533,7 +1609,7 @@ AC_CACHE_CHECK([$1], [$2], $RM conftest* ]) -if test x"[$]$2" = xyes; then +if test yes = "[$]$2"; then m4_if([$5], , :, [$5]) else m4_if([$6], , :, [$6]) @@ -1555,7 +1631,7 @@ AC_DEFUN([_LT_LINKER_OPTION], m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no - save_LDFLAGS="$LDFLAGS" + save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS $3" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then @@ -1574,10 +1650,10 @@ AC_CACHE_CHECK([$1], [$2], fi fi $RM -r conftest* - LDFLAGS="$save_LDFLAGS" + LDFLAGS=$save_LDFLAGS ]) -if test x"[$]$2" = xyes; then +if test yes = "[$]$2"; then m4_if([$4], , :, [$4]) else m4_if([$5], , :, [$5]) @@ -1598,7 +1674,7 @@ AC_DEFUN([LT_CMD_MAX_LEN], AC_MSG_CHECKING([the maximum length of command line arguments]) AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl i=0 - teststring="ABCD" + teststring=ABCD case $build_os in msdosdjgpp*) @@ -1638,7 +1714,7 @@ AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl lt_cv_sys_max_cmd_len=8192; ;; - netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) + bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` @@ -1688,22 +1764,23 @@ AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` - if test -n "$lt_cv_sys_max_cmd_len"; then + if test -n "$lt_cv_sys_max_cmd_len" && \ + test undefined != "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. - for i in 1 2 3 4 5 6 7 8 ; do + for i in 1 2 3 4 5 6 7 8; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. - while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \ + while { test X`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && - test $i != 17 # 1/2 MB should be enough + test 17 != "$i" # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring @@ -1719,7 +1796,7 @@ AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl ;; esac ]) -if test -n $lt_cv_sys_max_cmd_len ; then +if test -n "$lt_cv_sys_max_cmd_len"; then AC_MSG_RESULT($lt_cv_sys_max_cmd_len) else AC_MSG_RESULT(none) @@ -1747,7 +1824,7 @@ m4_defun([_LT_HEADER_DLFCN], # ---------------------------------------------------------------- m4_defun([_LT_TRY_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl -if test "$cross_compiling" = yes; then : +if test yes = "$cross_compiling"; then : [$4] else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 @@ -1794,9 +1871,9 @@ else # endif #endif -/* When -fvisbility=hidden is used, assume the code has been annotated +/* When -fvisibility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ -#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) +#if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif @@ -1822,7 +1899,7 @@ int main () return status; }] _LT_EOF - if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then + if AC_TRY_EVAL(ac_link) && test -s "conftest$ac_exeext" 2>/dev/null; then (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null lt_status=$? case x$lt_status in @@ -1843,7 +1920,7 @@ rm -fr conftest* # ------------------ AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl -if test "x$enable_dlopen" != xyes; then +if test yes != "$enable_dlopen"; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown @@ -1853,44 +1930,52 @@ else case $host_os in beos*) - lt_cv_dlopen="load_add_on" + lt_cv_dlopen=load_add_on lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32* | cegcc*) - lt_cv_dlopen="LoadLibrary" + lt_cv_dlopen=LoadLibrary lt_cv_dlopen_libs= ;; cygwin*) - lt_cv_dlopen="dlopen" + lt_cv_dlopen=dlopen lt_cv_dlopen_libs= ;; darwin*) - # if libdl is installed we need to link against it + # if libdl is installed we need to link against it AC_CHECK_LIB([dl], [dlopen], - [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ - lt_cv_dlopen="dyld" + [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl],[ + lt_cv_dlopen=dyld lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ]) ;; + tpf*) + # Don't try to run any link tests for TPF. We know it's impossible + # because TPF is a cross-compiler, and we know how we open DSOs. + lt_cv_dlopen=dlopen + lt_cv_dlopen_libs= + lt_cv_dlopen_self=no + ;; + *) AC_CHECK_FUNC([shl_load], - [lt_cv_dlopen="shl_load"], + [lt_cv_dlopen=shl_load], [AC_CHECK_LIB([dld], [shl_load], - [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"], + [lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld], [AC_CHECK_FUNC([dlopen], - [lt_cv_dlopen="dlopen"], + [lt_cv_dlopen=dlopen], [AC_CHECK_LIB([dl], [dlopen], - [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], + [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl], [AC_CHECK_LIB([svld], [dlopen], - [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], + [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld], [AC_CHECK_LIB([dld], [dld_link], - [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"]) + [lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld]) ]) ]) ]) @@ -1899,21 +1984,21 @@ else ;; esac - if test "x$lt_cv_dlopen" != xno; then - enable_dlopen=yes - else + if test no = "$lt_cv_dlopen"; then enable_dlopen=no + else + enable_dlopen=yes fi case $lt_cv_dlopen in dlopen) - save_CPPFLAGS="$CPPFLAGS" - test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" + save_CPPFLAGS=$CPPFLAGS + test yes = "$ac_cv_header_dlfcn_h" && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" - save_LDFLAGS="$LDFLAGS" + save_LDFLAGS=$LDFLAGS wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" - save_LIBS="$LIBS" + save_LIBS=$LIBS LIBS="$lt_cv_dlopen_libs $LIBS" AC_CACHE_CHECK([whether a program can dlopen itself], @@ -1923,7 +2008,7 @@ else lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) ]) - if test "x$lt_cv_dlopen_self" = xyes; then + if test yes = "$lt_cv_dlopen_self"; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" AC_CACHE_CHECK([whether a statically linked program can dlopen itself], lt_cv_dlopen_self_static, [dnl @@ -1933,9 +2018,9 @@ else ]) fi - CPPFLAGS="$save_CPPFLAGS" - LDFLAGS="$save_LDFLAGS" - LIBS="$save_LIBS" + CPPFLAGS=$save_CPPFLAGS + LDFLAGS=$save_LDFLAGS + LIBS=$save_LIBS ;; esac @@ -2027,8 +2112,8 @@ m4_defun([_LT_COMPILER_FILE_LOCKS], m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_COMPILER_C_O([$1]) -hard_links="nottested" -if test "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then +hard_links=nottested +if test no = "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" && test no != "$need_locks"; then # do not overwrite the value of need_locks provided by the user AC_MSG_CHECKING([if we can lock with hard links]) hard_links=yes @@ -2038,8 +2123,8 @@ if test "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no AC_MSG_RESULT([$hard_links]) - if test "$hard_links" = no; then - AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) + if test no = "$hard_links"; then + AC_MSG_WARN(['$CC' does not support '-c -o', so 'make -j' may be unsafe]) need_locks=warn fi else @@ -2066,8 +2151,8 @@ objdir=$lt_cv_objdir _LT_DECL([], [objdir], [0], [The name of the directory that contains temporary libtool files])dnl m4_pattern_allow([LT_OBJDIR])dnl -AC_DEFINE_UNQUOTED(LT_OBJDIR, "$lt_cv_objdir/", - [Define to the sub-directory in which libtool stores uninstalled libraries.]) +AC_DEFINE_UNQUOTED([LT_OBJDIR], "$lt_cv_objdir/", + [Define to the sub-directory where libtool stores uninstalled libraries.]) ])# _LT_CHECK_OBJDIR @@ -2079,15 +2164,15 @@ m4_defun([_LT_LINKER_HARDCODE_LIBPATH], _LT_TAGVAR(hardcode_action, $1)= if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" || test -n "$_LT_TAGVAR(runpath_var, $1)" || - test "X$_LT_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then + test yes = "$_LT_TAGVAR(hardcode_automatic, $1)"; then # We can hardcode non-existent directories. - if test "$_LT_TAGVAR(hardcode_direct, $1)" != no && + if test no != "$_LT_TAGVAR(hardcode_direct, $1)" && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one - ## test "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" != no && - test "$_LT_TAGVAR(hardcode_minus_L, $1)" != no; then + ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" && + test no != "$_LT_TAGVAR(hardcode_minus_L, $1)"; then # Linking always hardcodes the temporary library directory. _LT_TAGVAR(hardcode_action, $1)=relink else @@ -2101,12 +2186,12 @@ else fi AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)]) -if test "$_LT_TAGVAR(hardcode_action, $1)" = relink || - test "$_LT_TAGVAR(inherit_rpath, $1)" = yes; then +if test relink = "$_LT_TAGVAR(hardcode_action, $1)" || + test yes = "$_LT_TAGVAR(inherit_rpath, $1)"; then # Fast installation is not supported enable_fast_install=no -elif test "$shlibpath_overrides_runpath" = yes || - test "$enable_shared" = no; then +elif test yes = "$shlibpath_overrides_runpath" || + test no = "$enable_shared"; then # Fast installation is not necessary enable_fast_install=needless fi @@ -2130,7 +2215,7 @@ else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) - if test -n "$STRIP" ; then + if test -n "$STRIP"; then striplib="$STRIP -x" old_striplib="$STRIP -S" AC_MSG_RESULT([yes]) @@ -2148,6 +2233,47 @@ _LT_DECL([], [striplib], [1]) ])# _LT_CMD_STRIPLIB +# _LT_PREPARE_MUNGE_PATH_LIST +# --------------------------- +# Make sure func_munge_path_list() is defined correctly. +m4_defun([_LT_PREPARE_MUNGE_PATH_LIST], +[[# func_munge_path_list VARIABLE PATH +# ----------------------------------- +# VARIABLE is name of variable containing _space_ separated list of +# directories to be munged by the contents of PATH, which is string +# having a format: +# "DIR[:DIR]:" +# string "DIR[ DIR]" will be prepended to VARIABLE +# ":DIR[:DIR]" +# string "DIR[ DIR]" will be appended to VARIABLE +# "DIRP[:DIRP]::[DIRA:]DIRA" +# string "DIRP[ DIRP]" will be prepended to VARIABLE and string +# "DIRA[ DIRA]" will be appended to VARIABLE +# "DIR[:DIR]" +# VARIABLE will be replaced by "DIR[ DIR]" +func_munge_path_list () +{ + case x@S|@2 in + x) + ;; + *:) + eval @S|@1=\"`$ECHO @S|@2 | $SED 's/:/ /g'` \@S|@@S|@1\" + ;; + x:*) + eval @S|@1=\"\@S|@@S|@1 `$ECHO @S|@2 | $SED 's/:/ /g'`\" + ;; + *::*) + eval @S|@1=\"\@S|@@S|@1\ `$ECHO @S|@2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" + eval @S|@1=\"`$ECHO @S|@2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \@S|@@S|@1\" + ;; + *) + eval @S|@1=\"`$ECHO @S|@2 | $SED 's/:/ /g'`\" + ;; + esac +} +]])# _LT_PREPARE_PATH_LIST + + # _LT_SYS_DYNAMIC_LINKER([TAG]) # ----------------------------- # PORTME Fill in your ld.so characteristics @@ -2158,17 +2284,18 @@ m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_OBJDUMP])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_CHECK_SHELL_FEATURES])dnl +m4_require([_LT_PREPARE_MUNGE_PATH_LIST])dnl AC_MSG_CHECKING([dynamic linker characteristics]) m4_if([$1], [], [ -if test "$GCC" = yes; then +if test yes = "$GCC"; then case $host_os in - darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; - *) lt_awk_arg="/^libraries:/" ;; + darwin*) lt_awk_arg='/^libraries:/,/LR/' ;; + *) lt_awk_arg='/^libraries:/' ;; esac case $host_os in - mingw* | cegcc*) lt_sed_strip_eq="s,=\([[A-Za-z]]:\),\1,g" ;; - *) lt_sed_strip_eq="s,=/,/,g" ;; + mingw* | cegcc*) lt_sed_strip_eq='s|=\([[A-Za-z]]:\)|\1|g' ;; + *) lt_sed_strip_eq='s|=/|/|g' ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` case $lt_search_path_spec in @@ -2184,28 +2311,35 @@ if test "$GCC" = yes; then ;; esac # Ok, now we have the path, separated by spaces, we can step through it - # and add multilib dir if necessary. + # and add multilib dir if necessary... lt_tmp_lt_search_path_spec= - lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` + lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` + # ...but if some path component already ends with the multilib dir we assume + # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer). + case "$lt_multi_os_dir; $lt_search_path_spec " in + "/; "* | "/.; "* | "/./; "* | *"$lt_multi_os_dir "* | *"$lt_multi_os_dir/ "*) + lt_multi_os_dir= + ;; + esac for lt_sys_path in $lt_search_path_spec; do - if test -d "$lt_sys_path/$lt_multi_os_dir"; then - lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" - else + if test -d "$lt_sys_path$lt_multi_os_dir"; then + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir" + elif test -n "$lt_multi_os_dir"; then test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' -BEGIN {RS=" "; FS="/|\n";} { - lt_foo=""; - lt_count=0; +BEGIN {RS = " "; FS = "/|\n";} { + lt_foo = ""; + lt_count = 0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { - lt_foo="/" $lt_i lt_foo; + lt_foo = "/" $lt_i lt_foo; } else { lt_count--; } @@ -2219,7 +2353,7 @@ BEGIN {RS=" "; FS="/|\n";} { # for these hosts. case $host_os in mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ - $SED 's,/\([[A-Za-z]]:\),\1,g'` ;; + $SED 's|/\([[A-Za-z]]:\)|\1|g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else @@ -2228,7 +2362,7 @@ fi]) library_names_spec= libname_spec='lib$name' soname_spec= -shrext_cmds=".so" +shrext_cmds=.so postinstall_cmds= postuninstall_cmds= finish_cmds= @@ -2245,14 +2379,17 @@ hardcode_into_libs=no # flags to be left without arguments need_version=unknown +AC_ARG_VAR([LT_SYS_LIBRARY_PATH], +[User-defined run-time library search path.]) + case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' + library_names_spec='$libname$release$shared_ext$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. - soname_spec='${libname}${release}${shared_ext}$major' + soname_spec='$libname$release$shared_ext$major' ;; aix[[4-9]]*) @@ -2260,41 +2397,91 @@ aix[[4-9]]*) need_lib_prefix=no need_version=no hardcode_into_libs=yes - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 supports IA64 - library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with - # the line `#! .'. This would cause the generated library to - # depend on `.', always an invalid library. This was fixed in + # the line '#! .'. This would cause the generated library to + # depend on '.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[[01]] | aix4.[[01]].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' - echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then + echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac - # AIX (on Power*) has no versioning support, so currently we can not hardcode correct + # Using Import Files as archive members, it is possible to support + # filename-based versioning of shared library archives on AIX. While + # this would work for both with and without runtime linking, it will + # prevent static linking of such archives. So we do filename-based + # shared library versioning with .so extension only, which is used + # when both runtime linking and shared linking is enabled. + # Unfortunately, runtime linking may impact performance, so we do + # not want this to be the default eventually. Also, we use the + # versioned .so libs for executables only if there is the -brtl + # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only. + # To allow for filename-based versioning support, we need to create + # libNAME.so.V as an archive file, containing: + # *) an Import File, referring to the versioned filename of the + # archive as well as the shared archive member, telling the + # bitwidth (32 or 64) of that shared object, and providing the + # list of exported symbols of that shared object, eventually + # decorated with the 'weak' keyword + # *) the shared object with the F_LOADONLY flag set, to really avoid + # it being seen by the linker. + # At run time we better use the real file rather than another symlink, + # but for link time we create the symlink libNAME.so -> libNAME.so.V + + case $with_aix_soname,$aix_use_runtimelinking in + # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. - if test "$aix_use_runtimelinking" = yes; then + aix,yes) # traditional libtool + dynamic_linker='AIX unversionable lib.so' # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - else + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + ;; + aix,no) # traditional AIX only + dynamic_linker='AIX lib.a[(]lib.so.V[)]' # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. - library_names_spec='${libname}${release}.a $libname.a' - soname_spec='${libname}${release}${shared_ext}$major' - fi + library_names_spec='$libname$release.a $libname.a' + soname_spec='$libname$release$shared_ext$major' + ;; + svr4,*) # full svr4 only + dynamic_linker="AIX lib.so.V[(]$shared_archive_member_spec.o[)]" + library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' + # We do not specify a path in Import Files, so LIBPATH fires. + shlibpath_overrides_runpath=yes + ;; + *,yes) # both, prefer svr4 + dynamic_linker="AIX lib.so.V[(]$shared_archive_member_spec.o[)], lib.a[(]lib.so.V[)]" + library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' + # unpreferred sharedlib libNAME.a needs extra handling + postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' + postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' + # We do not specify a path in Import Files, so LIBPATH fires. + shlibpath_overrides_runpath=yes + ;; + *,no) # both, prefer aix + dynamic_linker="AIX lib.a[(]lib.so.V[)], lib.so.V[(]$shared_archive_member_spec.o[)]" + library_names_spec='$libname$release.a $libname.a' + soname_spec='$libname$release$shared_ext$major' + # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling + postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' + postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' + ;; + esac shlibpath_var=LIBPATH fi ;; @@ -2304,18 +2491,18 @@ amigaos*) powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. - finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) - library_names_spec='${libname}${shared_ext}' + library_names_spec='$libname$shared_ext' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; @@ -2323,8 +2510,8 @@ beos*) bsdi[[45]]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" @@ -2336,7 +2523,7 @@ bsdi[[45]]*) cygwin* | mingw* | pw32* | cegcc*) version_type=windows - shrext_cmds=".dll" + shrext_cmds=.dll need_version=no need_lib_prefix=no @@ -2345,8 +2532,8 @@ cygwin* | mingw* | pw32* | cegcc*) # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \${file}`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ @@ -2362,17 +2549,17 @@ cygwin* | mingw* | pw32* | cegcc*) case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' - soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"]) ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix - soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' - library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' ;; esac dynamic_linker='Win32 ld.exe' @@ -2381,8 +2568,8 @@ m4_if([$1], [],[ *,cl*) # Native MSVC libname_spec='$name' - soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' - library_names_spec='${libname}.dll.lib' + soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' + library_names_spec='$libname.dll.lib' case $build_os in mingw*) @@ -2409,7 +2596,7 @@ m4_if([$1], [],[ sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) - sys_lib_search_path_spec="$LIB" + sys_lib_search_path_spec=$LIB if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` @@ -2422,8 +2609,8 @@ m4_if([$1], [],[ esac # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \${file}`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' @@ -2436,7 +2623,7 @@ m4_if([$1], [],[ *) # Assume MSVC wrapper - library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' + library_names_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac @@ -2449,8 +2636,8 @@ darwin* | rhapsody*) version_type=darwin need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' - soname_spec='${libname}${release}${major}$shared_ext' + library_names_spec='$libname$release$major$shared_ext $libname$shared_ext' + soname_spec='$libname$release$major$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' @@ -2463,8 +2650,8 @@ dgux*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; @@ -2482,12 +2669,13 @@ freebsd* | dragonfly*) version_type=freebsd-$objformat case $version_type in freebsd-elf*) - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' need_version=no need_lib_prefix=no ;; freebsd-*) - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' need_version=yes ;; esac @@ -2512,26 +2700,15 @@ freebsd* | dragonfly*) esac ;; -gnu*) - version_type=linux # correct to gnu/linux during the next big refactor - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LIBRARY_PATH - shlibpath_overrides_runpath=yes + shlibpath_overrides_runpath=no sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; @@ -2549,14 +2726,15 @@ hpux9* | hpux10* | hpux11*) dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - if test "X$HPUX_IA64_MODE" = X32; then + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + if test 32 = "$HPUX_IA64_MODE"; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" + sys_lib_dlsearch_path_spec=/usr/lib/hpux32 else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" + sys_lib_dlsearch_path_spec=/usr/lib/hpux64 fi - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' @@ -2564,8 +2742,8 @@ hpux9* | hpux10* | hpux11*) dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; @@ -2574,8 +2752,8 @@ hpux9* | hpux10* | hpux11*) dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... @@ -2588,8 +2766,8 @@ interix[[3-9]]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no @@ -2600,7 +2778,7 @@ irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) - if test "$lt_cv_prog_gnu_ld" = yes; then + if test yes = "$lt_cv_prog_gnu_ld"; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix @@ -2608,8 +2786,8 @@ irix5* | irix6* | nonstopux*) esac need_lib_prefix=no need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' + soname_spec='$libname$release$shared_ext$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= @@ -2628,8 +2806,8 @@ irix5* | irix6* | nonstopux*) esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no - sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" - sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" + sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff" + sys_lib_dlsearch_path_spec="/usr/lib$libsuff /lib$libsuff" hardcode_into_libs=yes ;; @@ -2638,13 +2816,33 @@ linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; +linux*android*) + version_type=none # Android doesn't support versioned libraries. + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext' + soname_spec='$libname$release$shared_ext' + finish_cmds= + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + dynamic_linker='Android linker' + # Don't embed -rpath directories since the linker doesn't support them. + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + ;; + # This must be glibc/ELF. -linux* | k*bsd*-gnu | kopensolaris*-gnu) +linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no @@ -2672,11 +2870,15 @@ linux* | k*bsd*-gnu | kopensolaris*-gnu) # Add ABI-specific directories to the system library path. sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib" - # Append ld.so.conf contents to the search path + # Ideally, we could use ldconfig to report *all* directores which are + # searched for libraries, however this is still not possible. Aside from not + # being certain /sbin/ldconfig is available, command + # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64, + # even though it is searched at run-time. Try to do the best guess by + # appending ld.so.conf contents (and includes) to the search path. if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" - fi # We used to test for /lib/ld.so.1 and disable shared libraries on @@ -2693,12 +2895,12 @@ netbsd*) need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH @@ -2708,7 +2910,7 @@ netbsd*) newsos6) version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; @@ -2717,58 +2919,68 @@ newsos6) version_type=qnx need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; -openbsd*) +openbsd* | bitrig*) version_type=sunos - sys_lib_dlsearch_path_spec="/usr/lib" + sys_lib_dlsearch_path_spec=/usr/lib need_lib_prefix=no - # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. - case $host_os in - openbsd3.3 | openbsd3.3.*) need_version=yes ;; - *) need_version=no ;; - esac - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then + need_version=no + else + need_version=yes + fi + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - case $host_os in - openbsd2.[[89]] | openbsd2.[[89]].*) - shlibpath_overrides_runpath=no - ;; - *) - shlibpath_overrides_runpath=yes - ;; - esac - else - shlibpath_overrides_runpath=yes - fi + shlibpath_overrides_runpath=yes ;; os2*) libname_spec='$name' - shrext_cmds=".dll" + version_type=windows + shrext_cmds=.dll + need_version=no need_lib_prefix=no - library_names_spec='$libname${shared_ext} $libname.a' + # OS/2 can only load a DLL with a base name of 8 characters or less. + soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; + v=$($ECHO $release$versuffix | tr -d .-); + n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); + $ECHO $n$v`$shared_ext' + library_names_spec='${libname}_dll.$libext' dynamic_linker='OS/2 ld.exe' - shlibpath_var=LIBPATH + shlibpath_var=BEGINLIBPATH + sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='$libname$release$shared_ext$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" - sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; rdos*) @@ -2779,8 +2991,8 @@ solaris*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes @@ -2790,11 +3002,11 @@ solaris*) sunos4*) version_type=sunos - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes - if test "$with_gnu_ld" = yes; then + if test yes = "$with_gnu_ld"; then need_lib_prefix=no fi need_version=yes @@ -2802,8 +3014,8 @@ sunos4*) sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) @@ -2824,24 +3036,24 @@ sysv4 | sysv4.3*) ;; sysv4*MP*) - if test -d /usr/nec ;then + if test -d /usr/nec; then version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' - soname_spec='$libname${shared_ext}.$major' + library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext' + soname_spec='$libname$shared_ext.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - version_type=freebsd-elf + version_type=sco need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes - if test "$with_gnu_ld" = yes; then + if test yes = "$with_gnu_ld"; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' @@ -2859,7 +3071,7 @@ tpf*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes @@ -2867,8 +3079,8 @@ tpf*) uts4*) version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; @@ -2877,20 +3089,30 @@ uts4*) ;; esac AC_MSG_RESULT([$dynamic_linker]) -test "$dynamic_linker" = no && can_build_shared=no +test no = "$dynamic_linker" && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" -if test "$GCC" = yes; then +if test yes = "$GCC"; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi -if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then - sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" +if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then + sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec fi -if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then - sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" + +if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then + sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec fi +# remember unaugmented sys_lib_dlsearch_path content for libtool script decls... +configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec + +# ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code +func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH" + +# to be used as default LT_SYS_LIBRARY_PATH value in generated libtool +configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH + _LT_DECL([], [variables_saved_for_relink], [1], [Variables whose values should be saved in libtool wrapper scripts and restored at link time]) @@ -2923,39 +3145,41 @@ _LT_DECL([], [hardcode_into_libs], [0], [Whether we should hardcode library paths into libraries]) _LT_DECL([], [sys_lib_search_path_spec], [2], [Compile-time system search path for libraries]) -_LT_DECL([], [sys_lib_dlsearch_path_spec], [2], - [Run-time system search path for libraries]) +_LT_DECL([sys_lib_dlsearch_path_spec], [configure_time_dlsearch_path], [2], + [Detected run-time system search path for libraries]) +_LT_DECL([], [configure_time_lt_sys_library_path], [2], + [Explicit LT_SYS_LIBRARY_PATH set during ./configure time]) ])# _LT_SYS_DYNAMIC_LINKER # _LT_PATH_TOOL_PREFIX(TOOL) # -------------------------- -# find a file program which can recognize shared library +# find a file program that can recognize shared library AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl AC_MSG_CHECKING([for $1]) AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, [case $MAGIC_CMD in [[\\/*] | ?:[\\/]*]) - lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. + lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path. ;; *) - lt_save_MAGIC_CMD="$MAGIC_CMD" - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + lt_save_MAGIC_CMD=$MAGIC_CMD + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR dnl $ac_dummy forces splitting on constant user-supplied paths. dnl POSIX.2 word splitting is done only on the output of word expansions, dnl not every word. This closes a longstanding sh security hole. ac_dummy="m4_if([$2], , $PATH, [$2])" for ac_dir in $ac_dummy; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. - if test -f $ac_dir/$1; then - lt_cv_path_MAGIC_CMD="$ac_dir/$1" + if test -f "$ac_dir/$1"; then + lt_cv_path_MAGIC_CMD=$ac_dir/"$1" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` - MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + MAGIC_CMD=$lt_cv_path_MAGIC_CMD if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : @@ -2978,11 +3202,11 @@ _LT_EOF break fi done - IFS="$lt_save_ifs" - MAGIC_CMD="$lt_save_MAGIC_CMD" + IFS=$lt_save_ifs + MAGIC_CMD=$lt_save_MAGIC_CMD ;; esac]) -MAGIC_CMD="$lt_cv_path_MAGIC_CMD" +MAGIC_CMD=$lt_cv_path_MAGIC_CMD if test -n "$MAGIC_CMD"; then AC_MSG_RESULT($MAGIC_CMD) else @@ -3000,7 +3224,7 @@ dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], []) # _LT_PATH_MAGIC # -------------- -# find a file program which can recognize a shared library +# find a file program that can recognize a shared library m4_defun([_LT_PATH_MAGIC], [_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) if test -z "$lt_cv_path_MAGIC_CMD"; then @@ -3027,16 +3251,16 @@ m4_require([_LT_PROG_ECHO_BACKSLASH])dnl AC_ARG_WITH([gnu-ld], [AS_HELP_STRING([--with-gnu-ld], [assume the C compiler uses GNU ld @<:@default=no@:>@])], - [test "$withval" = no || with_gnu_ld=yes], + [test no = "$withval" || with_gnu_ld=yes], [with_gnu_ld=no])dnl ac_prog=ld -if test "$GCC" = yes; then +if test yes = "$GCC"; then # Check if gcc -print-prog-name=ld gives a path. AC_MSG_CHECKING([for ld used by $CC]) case $host in *-*-mingw*) - # gcc leaves a trailing carriage return which upsets mingw + # gcc leaves a trailing carriage return, which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; @@ -3050,7 +3274,7 @@ if test "$GCC" = yes; then while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done - test -z "$LD" && LD="$ac_prog" + test -z "$LD" && LD=$ac_prog ;; "") # If it fails, then pretend we aren't using GCC. @@ -3061,37 +3285,37 @@ if test "$GCC" = yes; then with_gnu_ld=unknown ;; esac -elif test "$with_gnu_ld" = yes; then +elif test yes = "$with_gnu_ld"; then AC_MSG_CHECKING([for GNU ld]) else AC_MSG_CHECKING([for non-GNU ld]) fi AC_CACHE_VAL(lt_cv_path_LD, [if test -z "$LD"; then - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then - lt_cv_path_LD="$ac_dir/$ac_prog" + lt_cv_path_LD=$ac_dir/$ac_prog # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 conftest.i +cat conftest.i conftest.i >conftest2.i +: ${lt_DD:=$DD} +AC_PATH_PROGS_FEATURE_CHECK([lt_DD], [dd], +[if "$ac_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then + cmp -s conftest.i conftest.out \ + && ac_cv_path_lt_DD="$ac_path_lt_DD" ac_path_lt_DD_found=: +fi]) +rm -f conftest.i conftest2.i conftest.out]) +])# _LT_PATH_DD + + +# _LT_CMD_TRUNCATE +# ---------------- +# find command to truncate a binary pipe +m4_defun([_LT_CMD_TRUNCATE], +[m4_require([_LT_PATH_DD]) +AC_CACHE_CHECK([how to truncate binary pipes], [lt_cv_truncate_bin], +[printf 0123456789abcdef0123456789abcdef >conftest.i +cat conftest.i conftest.i >conftest2.i +lt_cv_truncate_bin= +if "$ac_cv_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then + cmp -s conftest.i conftest.out \ + && lt_cv_truncate_bin="$ac_cv_path_lt_DD bs=4096 count=1" +fi +rm -f conftest.i conftest2.i conftest.out +test -z "$lt_cv_truncate_bin" && lt_cv_truncate_bin="$SED -e 4q"]) +_LT_DECL([lt_truncate_bin], [lt_cv_truncate_bin], [1], + [Command to truncate a binary pipe]) +])# _LT_CMD_TRUNCATE + + # _LT_CHECK_MAGIC_METHOD # ---------------------- # how to check for library dependencies @@ -3177,13 +3438,13 @@ lt_cv_deplibs_check_method='unknown' # Need to set the preceding variable on all platforms that support # interlibrary dependencies. # 'none' -- dependencies not supported. -# `unknown' -- same as none, but documents that we really don't know. +# 'unknown' -- same as none, but documents that we really don't know. # 'pass_all' -- all dependencies passed with no checks. # 'test_compile' -- check by making test program. # 'file_magic [[regex]]' -- check by looking for files in library path -# which responds to the $file_magic_cmd with a given extended regex. -# If you have `file' or equivalent on your system and you're not sure -# whether `pass_all' will *always* work, you probably want this one. +# that responds to the $file_magic_cmd with a given extended regex. +# If you have 'file' or equivalent on your system and you're not sure +# whether 'pass_all' will *always* work, you probably want this one. case $host_os in aix[[4-9]]*) @@ -3210,8 +3471,7 @@ mingw* | pw32*) # Base MSYS/MinGW do not provide the 'file' command needed by # func_win32_libid shell function, so use a weaker test based on 'objdump', # unless we find 'file', for example because we are cross-compiling. - # func_win32_libid assumes BSD nm, so disallow it if using MS dumpbin. - if ( test "$lt_cv_nm_interface" = "BSD nm" && file / ) >/dev/null 2>&1; then + if ( file / ) >/dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else @@ -3247,10 +3507,6 @@ freebsd* | dragonfly*) fi ;; -gnu*) - lt_cv_deplibs_check_method=pass_all - ;; - haiku*) lt_cv_deplibs_check_method=pass_all ;; @@ -3289,7 +3545,7 @@ irix5* | irix6* | nonstopux*) ;; # This must be glibc/ELF. -linux* | k*bsd*-gnu | kopensolaris*-gnu) +linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) lt_cv_deplibs_check_method=pass_all ;; @@ -3311,8 +3567,8 @@ newos6*) lt_cv_deplibs_check_method=pass_all ;; -openbsd*) - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then +openbsd* | bitrig*) + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' @@ -3365,6 +3621,9 @@ sysv4 | sysv4.3*) tpf*) lt_cv_deplibs_check_method=pass_all ;; +os2*) + lt_cv_deplibs_check_method=pass_all + ;; esac ]) @@ -3405,33 +3664,38 @@ AC_DEFUN([LT_PATH_NM], AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM, [if test -n "$NM"; then # Let the user override the test. - lt_cv_path_NM="$NM" + lt_cv_path_NM=$NM else - lt_nm_to_check="${ac_tool_prefix}nm" + lt_nm_to_check=${ac_tool_prefix}nm if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. - tmp_nm="$ac_dir/$lt_tmp_nm" - if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then + tmp_nm=$ac_dir/$lt_tmp_nm + if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext"; then # Check to see if the nm accepts a BSD-compat flag. - # Adding the `sed 1q' prevents false positives on HP-UX, which says: + # Adding the 'sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file - case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in - */dev/null* | *'Invalid file or object type'*) + # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty + case $build_os in + mingw*) lt_bad_file=conftest.nm/nofile ;; + *) lt_bad_file=/dev/null ;; + esac + case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in + *$lt_bad_file* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" - break + break 2 ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" - break + break 2 ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but @@ -3442,21 +3706,21 @@ else esac fi done - IFS="$lt_save_ifs" + IFS=$lt_save_ifs done : ${lt_cv_path_NM=no} fi]) -if test "$lt_cv_path_NM" != "no"; then - NM="$lt_cv_path_NM" +if test no != "$lt_cv_path_NM"; then + NM=$lt_cv_path_NM else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : # Let the user override the test. else AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :) - case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in + case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in *COFF*) - DUMPBIN="$DUMPBIN -symbols" + DUMPBIN="$DUMPBIN -symbols -headers" ;; *) DUMPBIN=: @@ -3464,8 +3728,8 @@ else esac fi AC_SUBST([DUMPBIN]) - if test "$DUMPBIN" != ":"; then - NM="$DUMPBIN" + if test : != "$DUMPBIN"; then + NM=$DUMPBIN fi fi test -z "$NM" && NM=nm @@ -3511,8 +3775,8 @@ lt_cv_sharedlib_from_linklib_cmd, case $host_os in cygwin* | mingw* | pw32* | cegcc*) - # two different shell functions defined in ltmain.sh - # decide which to use based on capabilities of $DLLTOOL + # two different shell functions defined in ltmain.sh; + # decide which one to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib @@ -3524,7 +3788,7 @@ cygwin* | mingw* | pw32* | cegcc*) ;; *) # fallback: assume linklib IS sharedlib - lt_cv_sharedlib_from_linklib_cmd="$ECHO" + lt_cv_sharedlib_from_linklib_cmd=$ECHO ;; esac ]) @@ -3551,13 +3815,28 @@ AC_CACHE_CHECK([if $MANIFEST_TOOL is a manifest tool], [lt_cv_path_mainfest_tool lt_cv_path_mainfest_tool=yes fi rm -f conftest*]) -if test "x$lt_cv_path_mainfest_tool" != xyes; then +if test yes != "$lt_cv_path_mainfest_tool"; then MANIFEST_TOOL=: fi _LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl ])# _LT_PATH_MANIFEST_TOOL +# _LT_DLL_DEF_P([FILE]) +# --------------------- +# True iff FILE is a Windows DLL '.def' file. +# Keep in sync with func_dll_def_p in the libtool script +AC_DEFUN([_LT_DLL_DEF_P], +[dnl + test DEF = "`$SED -n dnl + -e '\''s/^[[ ]]*//'\'' dnl Strip leading whitespace + -e '\''/^\(;.*\)*$/d'\'' dnl Delete empty lines and comments + -e '\''s/^\(EXPORTS\|LIBRARY\)\([[ ]].*\)*$/DEF/p'\'' dnl + -e q dnl Only consider the first "real" line + $1`" dnl +])# _LT_DLL_DEF_P + + # LT_LIB_M # -------- # check for math library @@ -3569,11 +3848,11 @@ case $host in # These system don't have libm, or don't need it ;; *-ncr-sysv4.3*) - AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") + AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM=-lmw) AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") ;; *) - AC_CHECK_LIB(m, cos, LIBM="-lm") + AC_CHECK_LIB(m, cos, LIBM=-lm) ;; esac AC_SUBST([LIBM]) @@ -3592,7 +3871,7 @@ m4_defun([_LT_COMPILER_NO_RTTI], _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= -if test "$GCC" = yes; then +if test yes = "$GCC"; then case $cc_basename in nvcc*) _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;; @@ -3644,7 +3923,7 @@ cygwin* | mingw* | pw32* | cegcc*) symcode='[[ABCDGISTW]]' ;; hpux*) - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then symcode='[[ABCDEGRST]]' fi ;; @@ -3677,14 +3956,44 @@ case `$NM -V 2>&1` in symcode='[[ABCDGIRSTW]]' ;; esac +if test "$lt_cv_nm_interface" = "MS dumpbin"; then + # Gets list of data symbols to import. + lt_cv_sys_global_symbol_to_import="sed -n -e 's/^I .* \(.*\)$/\1/p'" + # Adjust the below global symbol transforms to fixup imported variables. + lt_cdecl_hook=" -e 's/^I .* \(.*\)$/extern __declspec(dllimport) char \1;/p'" + lt_c_name_hook=" -e 's/^I .* \(.*\)$/ {\"\1\", (void *) 0},/p'" + lt_c_name_lib_hook="\ + -e 's/^I .* \(lib.*\)$/ {\"\1\", (void *) 0},/p'\ + -e 's/^I .* \(.*\)$/ {\"lib\1\", (void *) 0},/p'" +else + # Disable hooks by default. + lt_cv_sys_global_symbol_to_import= + lt_cdecl_hook= + lt_c_name_hook= + lt_c_name_lib_hook= +fi + # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. -lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" +lt_cv_sys_global_symbol_to_cdecl="sed -n"\ +$lt_cdecl_hook\ +" -e 's/^T .* \(.*\)$/extern int \1();/p'"\ +" -e 's/^$symcode$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address -lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p'" -lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \(lib[[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"lib\2\", (void *) \&\2},/p'" +lt_cv_sys_global_symbol_to_c_name_address="sed -n"\ +$lt_c_name_hook\ +" -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ +" -e 's/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/p'" + +# Transform an extracted symbol line into symbol name with lib prefix and +# symbol address. +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n"\ +$lt_c_name_lib_hook\ +" -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ +" -e 's/^$symcode$symcode* .* \(lib.*\)$/ {\"\1\", (void *) \&\1},/p'"\ +" -e 's/^$symcode$symcode* .* \(.*\)$/ {\"lib\1\", (void *) \&\1},/p'" # Handle CRLF in mingw tool chain opt_cr= @@ -3702,21 +4011,24 @@ for ac_symprfx in "" "_"; do # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then - # Fake it for dumpbin and say T for any non-static function - # and D for any global variable. + # Fake it for dumpbin and say T for any non-static function, + # D for any global variable and I for any imported variable. # Also find C++ and __fastcall symbols from MSVC++, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK ['"\ " {last_section=section; section=\$ 3};"\ " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ +" /^ *Symbol name *: /{split(\$ 0,sn,\":\"); si=substr(sn[2],2)};"\ +" /^ *Type *: code/{print \"T\",si,substr(si,length(prfx))};"\ +" /^ *Type *: data/{print \"I\",si,substr(si,length(prfx))};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ -" {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ -" {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ -" s[1]~/^[@?]/{print s[1], s[1]; next};"\ -" s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ +" {f=\"D\"}; \$ 0~/\(\).*\|/{f=\"T\"};"\ +" {split(\$ 0,a,/\||\r/); split(a[2],s)};"\ +" s[1]~/^[@?]/{print f,s[1],s[1]; next};"\ +" s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx]" else lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" @@ -3756,11 +4068,11 @@ _LT_EOF if $GREP ' nm_test_func$' "$nlist" >/dev/null; then cat <<_LT_EOF > conftest.$ac_ext /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ -#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) -/* DATA imports from DLLs on WIN32 con't be const, because runtime +#if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE +/* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT@&t@_DLSYM_CONST -#elif defined(__osf__) +#elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT@&t@_DLSYM_CONST #else @@ -3786,7 +4098,7 @@ lt__PROGRAM__LTX_preloaded_symbols[[]] = { { "@PROGRAM@", (void *) 0 }, _LT_EOF - $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext + $SED "s/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; @@ -3806,9 +4118,9 @@ _LT_EOF mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS - LIBS="conftstm.$ac_objext" + LIBS=conftstm.$ac_objext CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" - if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then + if AC_TRY_EVAL(ac_link) && test -s conftest$ac_exeext; then pipe_works=yes fi LIBS=$lt_globsym_save_LIBS @@ -3829,7 +4141,7 @@ _LT_EOF rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. - if test "$pipe_works" = yes; then + if test yes = "$pipe_works"; then break else lt_cv_sys_global_symbol_pipe= @@ -3856,12 +4168,16 @@ _LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1], [Take the output of nm and produce a listing of raw symbols and C names]) _LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1], [Transform the output of nm in a proper C declaration]) +_LT_DECL([global_symbol_to_import], [lt_cv_sys_global_symbol_to_import], [1], + [Transform the output of nm into a list of symbols to manually relocate]) _LT_DECL([global_symbol_to_c_name_address], [lt_cv_sys_global_symbol_to_c_name_address], [1], [Transform the output of nm in a C name address pair]) _LT_DECL([global_symbol_to_c_name_address_lib_prefix], [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1], [Transform the output of nm in a C name address pair when lib prefix is needed]) +_LT_DECL([nm_interface], [lt_cv_nm_interface], [1], + [The name lister interface]) _LT_DECL([], [nm_file_list_spec], [1], [Specify filename containing input files for $NM]) ]) # _LT_CMD_GLOBAL_SYMBOLS @@ -3877,17 +4193,18 @@ _LT_TAGVAR(lt_prog_compiler_static, $1)= m4_if([$1], [CXX], [ # C++ specific cases for pic, static, wl, etc. - if test "$GXX" = yes; then + if test yes = "$GXX"; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; amigaos*) @@ -3898,8 +4215,8 @@ m4_if([$1], [CXX], [ ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but - # adding the `-m68020' flag to GCC prevents building anything better, - # like `-m68040'. + # adding the '-m68020' flag to GCC prevents building anything better, + # like '-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac @@ -3915,6 +4232,11 @@ m4_if([$1], [CXX], [ # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + case $host_os in + os2*) + _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' + ;; + esac ;; darwin* | rhapsody*) # PIC is the default on this platform @@ -3964,7 +4286,7 @@ m4_if([$1], [CXX], [ case $host_os in aix[[4-9]]*) # All AIX code is PIC. - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else @@ -4005,14 +4327,14 @@ m4_if([$1], [CXX], [ case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' - if test "$host_cpu" != ia64; then + _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' + if test ia64 != "$host_cpu"; then _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' fi ;; aCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' + _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default @@ -4041,7 +4363,7 @@ m4_if([$1], [CXX], [ ;; esac ;; - linux* | k*bsd*-gnu | kopensolaris*-gnu) + linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # KAI C++ Compiler @@ -4049,7 +4371,7 @@ m4_if([$1], [CXX], [ _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; ecpc* ) - # old Intel C++ for x86_64 which still supported -KPIC. + # old Intel C++ for x86_64, which still supported -KPIC. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' @@ -4194,17 +4516,18 @@ m4_if([$1], [CXX], [ fi ], [ - if test "$GCC" = yes; then + if test yes = "$GCC"; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; amigaos*) @@ -4215,8 +4538,8 @@ m4_if([$1], [CXX], [ ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but - # adding the `-m68020' flag to GCC prevents building anything better, - # like `-m68040'. + # adding the '-m68020' flag to GCC prevents building anything better, + # like '-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac @@ -4233,6 +4556,11 @@ m4_if([$1], [CXX], [ # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + case $host_os in + os2*) + _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' + ;; + esac ;; darwin* | rhapsody*) @@ -4303,7 +4631,7 @@ m4_if([$1], [CXX], [ case $host_os in aix*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else @@ -4311,11 +4639,30 @@ m4_if([$1], [CXX], [ fi ;; + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' + case $cc_basename in + nagfor*) + # NAG Fortran compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + esac + ;; + mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + case $host_os in + os2*) + _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' + ;; + esac ;; hpux9* | hpux10* | hpux11*) @@ -4331,7 +4678,7 @@ m4_if([$1], [CXX], [ ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? - _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' + _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) @@ -4340,9 +4687,9 @@ m4_if([$1], [CXX], [ _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; - linux* | k*bsd*-gnu | kopensolaris*-gnu) + linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in - # old Intel for x86_64 which still supported -KPIC. + # old Intel for x86_64, which still supported -KPIC. ecc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' @@ -4367,6 +4714,12 @@ m4_if([$1], [CXX], [ _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; + tcc*) + # Fabrice Bellard et al's Tiny C Compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) @@ -4464,7 +4817,7 @@ m4_if([$1], [CXX], [ ;; sysv4*MP*) - if test -d /usr/nec ;then + if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi @@ -4493,7 +4846,7 @@ m4_if([$1], [CXX], [ fi ]) case $host_os in - # For platforms which do not support PIC, -DPIC is meaningless: + # For platforms that do not support PIC, -DPIC is meaningless: *djgpp*) _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; @@ -4559,17 +4912,21 @@ m4_if([$1], [CXX], [ case $host_os in aix[[4-9]]*) # If we're using GNU nm, then we don't want the "-C" option. - # -C means demangle to AIX nm, but means don't demangle with GNU nm - # Also, AIX nm treats weak defined symbols like other global defined - # symbols, whereas GNU nm marks them as "W". + # -C means demangle to GNU nm, but means don't demangle to AIX nm. + # Without the "-l" option, or with the "-B" option, AIX nm treats + # weak defined symbols like other global defined symbols, whereas + # GNU nm marks them as "W". + # While the 'weak' keyword is ignored in the Export File, we need + # it in the Import File for the 'aix-soname' feature, so we have + # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then - _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else - _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi ;; pw32*) - _LT_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" + _LT_TAGVAR(export_symbols_cmds, $1)=$ltdll_cmds ;; cygwin* | mingw* | cegcc*) case $cc_basename in @@ -4615,9 +4972,9 @@ m4_if([$1], [CXX], [ # included in the symbol list _LT_TAGVAR(include_expsyms, $1)= # exclude_expsyms can be an extended regexp of symbols to exclude - # it will be wrapped by ` (' and `)$', so one must not match beginning or - # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', - # as well as any symbol that contains `d'. + # it will be wrapped by ' (' and ')$', so one must not match beginning or + # end of line. Example: 'a|bc|.*d.*' will exclude the symbols 'a' and 'bc', + # as well as any symbol that contains 'd'. _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if @@ -4633,7 +4990,7 @@ dnl Note also adjust exclude_expsyms for C++ above. # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. - if test "$GCC" != yes; then + if test yes != "$GCC"; then with_gnu_ld=no fi ;; @@ -4641,7 +4998,7 @@ dnl Note also adjust exclude_expsyms for C++ above. # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; - openbsd*) + openbsd* | bitrig*) with_gnu_ld=no ;; esac @@ -4651,7 +5008,7 @@ dnl Note also adjust exclude_expsyms for C++ above. # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no - if test "$with_gnu_ld" = yes; then + if test yes = "$with_gnu_ld"; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility @@ -4673,24 +5030,24 @@ dnl Note also adjust exclude_expsyms for C++ above. esac fi - if test "$lt_use_gnu_ld_interface" = yes; then + if test yes = "$lt_use_gnu_ld_interface"; then # If archive_cmds runs LD, not CC, wlarc should be empty - wlarc='${wl}' + wlarc='$wl' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then - _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi supports_anon_versioning=no - case `$LD -v 2>&1` in + case `$LD -v | $SED -e 's/([^)]\+)\s\+//' 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... @@ -4703,7 +5060,7 @@ dnl Note also adjust exclude_expsyms for C++ above. case $host_os in aix[[3-9]]*) # On AIX/PPC, the GNU linker is very broken - if test "$host_cpu" != ia64; then + if test ia64 != "$host_cpu"; then _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 @@ -4722,7 +5079,7 @@ _LT_EOF case $host_cpu in powerpc) # see comment about AmigaOS4 .so support - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) @@ -4738,7 +5095,7 @@ _LT_EOF _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME - _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi @@ -4748,7 +5105,7 @@ _LT_EOF # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes @@ -4756,61 +5113,89 @@ _LT_EOF _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - # If the export-symbols file already is a .def file (1st line - # is EXPORTS), use it as is; otherwise, prepend... - _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - cp $export_symbols $output_objdir/$soname.def; - else - echo EXPORTS > $output_objdir/$soname.def; - cat $export_symbols >> $output_objdir/$soname.def; - fi~ - $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file, use it as + # is; otherwise, prepend EXPORTS... + _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; haiku*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=yes ;; + os2*) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + shrext_cmds=.dll + _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + prefix_cmds="$SED"~ + if test EXPORTS = "`$SED 1q $export_symbols`"; then + prefix_cmds="$prefix_cmds -e 1d"; + fi~ + prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ + cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + ;; + interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no - if test "$host_os" = linux-dietlibc; then + if test linux-dietlibc = "$host_os"; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ - && test "$tmp_diet" = no + && test no = "$tmp_diet" then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; @@ -4821,42 +5206,47 @@ _LT_EOF lf95*) # Lahey Fortran 8.1 _LT_TAGVAR(whole_archive_flag_spec, $1)= tmp_sharedflag='--shared' ;; + nagfor*) # NAGFOR 5.3 + tmp_sharedflag='-Wl,-shared' ;; xl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac - _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - if test "x$supports_anon_versioning" = xyes; then + if test yes = "$supports_anon_versioning"; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi case $cc_basename in + tcc*) + _LT_TAGVAR(export_dynamic_flag_spec, $1)='-rdynamic' + ;; xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' - if test "x$supports_anon_versioning" = xyes; then + if test yes = "$supports_anon_versioning"; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac @@ -4870,8 +5260,8 @@ _LT_EOF _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' fi ;; @@ -4889,8 +5279,8 @@ _LT_EOF _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi @@ -4902,7 +5292,7 @@ _LT_EOF _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 -*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not +*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 cannot *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify @@ -4917,9 +5307,9 @@ _LT_EOF # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi @@ -4936,15 +5326,15 @@ _LT_EOF *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac - if test "$_LT_TAGVAR(ld_shlibs, $1)" = no; then + if test no = "$_LT_TAGVAR(ld_shlibs, $1)"; then runpath_var= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= @@ -4960,7 +5350,7 @@ _LT_EOF # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. _LT_TAGVAR(hardcode_minus_L, $1)=yes - if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then + if test yes = "$GCC" && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. _LT_TAGVAR(hardcode_direct, $1)=unsupported @@ -4968,34 +5358,57 @@ _LT_EOF ;; aix[[4-9]]*) - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' - no_entry_flag="" + no_entry_flag= else # If we're using GNU nm, then we don't want the "-C" option. - # -C means demangle to AIX nm, but means don't demangle with GNU nm - # Also, AIX nm treats weak defined symbols like other global - # defined symbols, whereas GNU nm marks them as "W". + # -C means demangle to GNU nm, but means don't demangle to AIX nm. + # Without the "-l" option, or with the "-B" option, AIX nm treats + # weak defined symbols like other global defined symbols, whereas + # GNU nm marks them as "W". + # While the 'weak' keyword is ignored in the Export File, we need + # it in the Import File for the 'aix-soname' feature, so we have + # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then - _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else - _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we - # need to do runtime linking. + # have runtime linking enabled, and use it for executables. + # For shared libraries, we enable/disable runtime linking + # depending on the kind of the shared library created - + # when "with_aix_soname,aix_use_runtimelinking" is: + # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables + # "aix,yes" lib.so shared, rtl:yes, for executables + # lib.a static archive + # "both,no" lib.so.V(shr.o) shared, rtl:yes + # lib.a(lib.so.V) shared, rtl:no, for executables + # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a(lib.so.V) shared, rtl:no + # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a static archive case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do - if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then + if (test x-brtl = "x$ld_flag" || test x-Wl,-brtl = "x$ld_flag"); then aix_use_runtimelinking=yes break fi done + if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then + # With aix-soname=svr4, we create the lib.so.V shared archives only, + # so we don't have lib.a shared libs to link our executables. + # We have to force runtime linking in this case. + aix_use_runtimelinking=yes + LDFLAGS="$LDFLAGS -Wl,-brtl" + fi ;; esac @@ -5014,13 +5427,21 @@ _LT_EOF _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' + _LT_TAGVAR(file_list_spec, $1)='$wl-f,' + case $with_aix_soname,$aix_use_runtimelinking in + aix,*) ;; # traditional, no import file + svr4,* | *,yes) # use import file + # The Import File defines what to hardcode. + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=no + ;; + esac - if test "$GCC" = yes; then + if test yes = "$GCC"; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ - collect2name=`${CC} -print-prog-name=collect2` + collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then @@ -5039,61 +5460,80 @@ _LT_EOF ;; esac shared_flag='-shared' - if test "$aix_use_runtimelinking" = yes; then - shared_flag="$shared_flag "'${wl}-G' + if test yes = "$aix_use_runtimelinking"; then + shared_flag="$shared_flag "'$wl-G' fi + # Need to ensure runtime linking is disabled for the traditional + # shared library, or the linker may eventually find shared libraries + # /with/ Import File - we do not want to mix them. + shared_flag_aix='-shared' + shared_flag_svr4='-shared $wl-G' else # not using gcc - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else - if test "$aix_use_runtimelinking" = yes; then - shared_flag='${wl}-G' + if test yes = "$aix_use_runtimelinking"; then + shared_flag='$wl-G' else - shared_flag='${wl}-bM:SRE' + shared_flag='$wl-bM:SRE' fi + shared_flag_aix='$wl-bM:SRE' + shared_flag_svr4='$wl-G' fi fi - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. _LT_TAGVAR(always_export_symbols, $1)=yes - if test "$aix_use_runtimelinking" = yes; then + if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else - if test "$host_cpu" = ia64; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' + if test ia64 = "$host_cpu"; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" - _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. - _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' - _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' - if test "$with_gnu_ld" = yes; then + _LT_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok' + _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok' + if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes - # This is similar to how AIX traditionally builds its shared libraries. - _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' + # -brtl affects multiple linker settings, -berok does not and is overridden later + compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`' + if test svr4 != "$with_aix_soname"; then + # This is similar to how AIX traditionally builds its shared libraries. + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' + fi + if test aix != "$with_aix_soname"; then + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' + else + # used by -dlpreopen to get the symbols + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$MV $output_objdir/$realname.d/$soname $output_objdir' + fi + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$RM -r $output_objdir/$realname.d' fi fi ;; @@ -5102,7 +5542,7 @@ _LT_EOF case $host_cpu in powerpc) # see comment about AmigaOS4 .so support - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) @@ -5132,16 +5572,17 @@ _LT_EOF # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. - shrext_cmds=".dll" + shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. - _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' - _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; - else - sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; - fi~ - $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ - linknames=' + _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' + _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then + cp "$export_symbols" "$output_objdir/$soname.def"; + echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; + else + $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes @@ -5150,18 +5591,18 @@ _LT_EOF # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ - lt_tool_outputfile="@TOOL_OUTPUT@"~ - case $lt_outputfile in - *.exe|*.EXE) ;; - *) - lt_outputfile="$lt_outputfile.exe" - lt_tool_outputfile="$lt_tool_outputfile.exe" - ;; - esac~ - if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then - $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; - $RM "$lt_outputfile.manifest"; - fi' + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile=$lt_outputfile.exe + lt_tool_outputfile=$lt_tool_outputfile.exe + ;; + esac~ + if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' ;; *) # Assume MSVC wrapper @@ -5170,7 +5611,7 @@ _LT_EOF # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. - shrext_cmds=".dll" + shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. @@ -5220,33 +5661,33 @@ _LT_EOF ;; hpux9*) - if test "$GCC" = yes; then - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + if test yes = "$GCC"; then + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' fi - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' ;; hpux10*) - if test "$GCC" = yes && test "$with_gnu_ld" = no; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + if test yes,no = "$GCC,$with_gnu_ld"; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi - if test "$with_gnu_ld" = no; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + if test no = "$with_gnu_ld"; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes @@ -5254,25 +5695,25 @@ _LT_EOF ;; hpux11*) - if test "$GCC" = yes && test "$with_gnu_ld" = no; then + if test yes,no = "$GCC,$with_gnu_ld"; then case $host_cpu in hppa*64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) m4_if($1, [], [ @@ -5280,14 +5721,14 @@ _LT_EOF # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) _LT_LINKER_OPTION([if $CC understands -b], _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b], - [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], + [_LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])], - [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags']) + [_LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags']) ;; esac fi - if test "$with_gnu_ld" = no; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + if test no = "$with_gnu_ld"; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in @@ -5298,7 +5739,7 @@ _LT_EOF *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. @@ -5309,16 +5750,16 @@ _LT_EOF ;; irix5* | irix6* | nonstopux*) - if test "$GCC" = yes; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + if test yes = "$GCC"; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. # This should be the same for all languages, so no per-tag cache variable. AC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol], [lt_cv_irix_exported_symbol], - [save_LDFLAGS="$LDFLAGS" - LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" + [save_LDFLAGS=$LDFLAGS + LDFLAGS="$LDFLAGS -shared $wl-exported_symbol ${wl}foo $wl-update_registry $wl/dev/null" AC_LINK_IFELSE( [AC_LANG_SOURCE( [AC_LANG_CASE([C], [[int foo (void) { return 0; }]], @@ -5331,21 +5772,31 @@ _LT_EOF end]])])], [lt_cv_irix_exported_symbol=yes], [lt_cv_irix_exported_symbol=no]) - LDFLAGS="$save_LDFLAGS"]) - if test "$lt_cv_irix_exported_symbol" = yes; then - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' + LDFLAGS=$save_LDFLAGS]) + if test yes = "$lt_cv_irix_exported_symbol"; then + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib' fi else - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes _LT_TAGVAR(link_all_deplibs, $1)=yes ;; + linux*) + case $cc_basename in + tcc*) + # Fabrice Bellard et al's Tiny C Compiler + _LT_TAGVAR(ld_shlibs, $1)=yes + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out @@ -5360,7 +5811,7 @@ _LT_EOF newsos6) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; @@ -5368,27 +5819,19 @@ _LT_EOF *nto* | *qnx*) ;; - openbsd*) + openbsd* | bitrig*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' else - case $host_os in - openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) - _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - ;; - *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - ;; - esac + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' fi else _LT_TAGVAR(ld_shlibs, $1)=no @@ -5399,33 +5842,53 @@ _LT_EOF _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=unsupported - _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' - _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' + shrext_cmds=.dll + _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + prefix_cmds="$SED"~ + if test EXPORTS = "`$SED 1q $export_symbols`"; then + prefix_cmds="$prefix_cmds -e 1d"; + fi~ + prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ + cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; osf3*) - if test "$GCC" = yes; then - _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + if test yes = "$GCC"; then + _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag - if test "$GCC" = yes; then - _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + if test yes = "$GCC"; then + _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ - $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' + $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' @@ -5436,24 +5899,24 @@ _LT_EOF solaris*) _LT_TAGVAR(no_undefined_flag, $1)=' -z defs' - if test "$GCC" = yes; then - wlarc='${wl}' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + if test yes = "$GCC"; then + wlarc='$wl' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl-z ${wl}text $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + $CC -shared $pic_flag $wl-z ${wl}text $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' - _LT_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(archive_cmds, $1)='$LD -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' + $LD -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) - wlarc='${wl}' - _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' + wlarc='$wl' + _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + $CC -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi @@ -5463,11 +5926,11 @@ _LT_EOF solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, - # but understands `-z linker_flag'. GCC discards it without `$wl', + # but understands '-z linker_flag'. GCC discards it without '$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) - if test "$GCC" = yes; then - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + if test yes = "$GCC"; then + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' else _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' fi @@ -5477,10 +5940,10 @@ _LT_EOF ;; sunos4*) - if test "x$host_vendor" = xsequent; then + if test sequent = "$host_vendor"; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. - _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h $soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi @@ -5529,43 +5992,43 @@ _LT_EOF ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) - _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' - if test "$GCC" = yes; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + if test yes = "$GCC"; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else - _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) - # Note: We can NOT use -z defs as we might desire, because we do not + # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. - _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' - _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' + _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' + _LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport' runpath_var='LD_RUN_PATH' - if test "$GCC" = yes; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + if test yes = "$GCC"; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else - _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; @@ -5580,17 +6043,17 @@ _LT_EOF ;; esac - if test x$host_vendor = xsni; then + if test sni = "$host_vendor"; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Blargedynsym' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Blargedynsym' ;; esac fi fi ]) AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) -test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no +test no = "$_LT_TAGVAR(ld_shlibs, $1)" && can_build_shared=no _LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld @@ -5607,7 +6070,7 @@ x|xyes) # Assume -lc should be added _LT_TAGVAR(archive_cmds_need_lc, $1)=yes - if test "$enable_shared" = yes && test "$GCC" = yes; then + if test yes,yes = "$GCC,$enable_shared"; then case $_LT_TAGVAR(archive_cmds, $1) in *'~'*) # FIXME: we may have to deal with multi-command sequences. @@ -5687,12 +6150,12 @@ _LT_TAGDECL([], [hardcode_libdir_flag_spec], [1], _LT_TAGDECL([], [hardcode_libdir_separator], [1], [Whether we need a single "-rpath" flag with a separated argument]) _LT_TAGDECL([], [hardcode_direct], [0], - [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes + [Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_direct_absolute], [0], - [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes + [Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes DIR into the resulting binary and the resulting library dependency is - "absolute", i.e impossible to change by setting ${shlibpath_var} if the + "absolute", i.e impossible to change by setting $shlibpath_var if the library is relocated]) _LT_TAGDECL([], [hardcode_minus_L], [0], [Set to "yes" if using the -LDIR flag during linking hardcodes DIR @@ -5733,10 +6196,10 @@ dnl [Compiler flag to generate thread safe objects]) # ------------------------ # Ensure that the configuration variables for a C compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write -# the compiler configuration to `libtool'. +# the compiler configuration to 'libtool'. m4_defun([_LT_LANG_C_CONFIG], [m4_require([_LT_DECL_EGREP])dnl -lt_save_CC="$CC" +lt_save_CC=$CC AC_LANG_PUSH(C) # Source file extension for C test sources. @@ -5776,18 +6239,18 @@ if test -n "$compiler"; then LT_SYS_DLOPEN_SELF _LT_CMD_STRIPLIB - # Report which library types will actually be built + # Report what library types will actually be built AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) - test "$can_build_shared" = "no" && enable_shared=no + test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) - test "$enable_shared" = yes && enable_static=no + test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' @@ -5795,8 +6258,12 @@ if test -n "$compiler"; then ;; aix[[4-9]]*) - if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then - test "$enable_shared" = yes && enable_static=no + if test ia64 != "$host_cpu"; then + case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in + yes,aix,yes) ;; # shared object as lib.so file only + yes,svr4,*) ;; # shared object as lib.so archive member only + yes,*) enable_static=no ;; # shared object in lib.a archive as well + esac fi ;; esac @@ -5804,13 +6271,13 @@ if test -n "$compiler"; then AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. - test "$enable_shared" = yes || enable_static=yes + test yes = "$enable_shared" || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_CONFIG($1) fi AC_LANG_POP -CC="$lt_save_CC" +CC=$lt_save_CC ])# _LT_LANG_C_CONFIG @@ -5818,14 +6285,14 @@ CC="$lt_save_CC" # -------------------------- # Ensure that the configuration variables for a C++ compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write -# the compiler configuration to `libtool'. +# the compiler configuration to 'libtool'. m4_defun([_LT_LANG_CXX_CONFIG], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_PATH_MANIFEST_TOOL])dnl -if test -n "$CXX" && ( test "X$CXX" != "Xno" && - ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || - (test "X$CXX" != "Xg++"))) ; then +if test -n "$CXX" && ( test no != "$CXX" && + ( (test g++ = "$CXX" && `g++ -v >/dev/null 2>&1` ) || + (test g++ != "$CXX"))); then AC_PROG_CXXCPP else _lt_caught_CXX_error=yes @@ -5867,7 +6334,7 @@ _LT_TAGVAR(objext, $1)=$objext # the CXX compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. -if test "$_lt_caught_CXX_error" != yes; then +if test yes != "$_lt_caught_CXX_error"; then # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" @@ -5909,35 +6376,35 @@ if test "$_lt_caught_CXX_error" != yes; then if test -n "$compiler"; then # We don't want -fno-exception when compiling C++ code, so set the # no_builtin_flag separately - if test "$GXX" = yes; then + if test yes = "$GXX"; then _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' else _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= fi - if test "$GXX" = yes; then + if test yes = "$GXX"; then # Set up default GNU C++ configuration LT_PATH_LD # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. - if test "$with_gnu_ld" = yes; then - _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + if test yes = "$with_gnu_ld"; then + _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) - wlarc='${wl}' + wlarc='$wl' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | $GREP 'no-whole-archive' > /dev/null; then - _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi @@ -5973,18 +6440,30 @@ if test "$_lt_caught_CXX_error" != yes; then _LT_TAGVAR(ld_shlibs, $1)=no ;; aix[[4-9]]*) - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' - no_entry_flag="" + no_entry_flag= else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we - # need to do runtime linking. + # have runtime linking enabled, and use it for executables. + # For shared libraries, we enable/disable runtime linking + # depending on the kind of the shared library created - + # when "with_aix_soname,aix_use_runtimelinking" is: + # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables + # "aix,yes" lib.so shared, rtl:yes, for executables + # lib.a static archive + # "both,no" lib.so.V(shr.o) shared, rtl:yes + # lib.a(lib.so.V) shared, rtl:no, for executables + # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a(lib.so.V) shared, rtl:no + # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a static archive case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do case $ld_flag in @@ -5994,6 +6473,13 @@ if test "$_lt_caught_CXX_error" != yes; then ;; esac done + if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then + # With aix-soname=svr4, we create the lib.so.V shared archives only, + # so we don't have lib.a shared libs to link our executables. + # We have to force runtime linking in this case. + aix_use_runtimelinking=yes + LDFLAGS="$LDFLAGS -Wl,-brtl" + fi ;; esac @@ -6012,13 +6498,21 @@ if test "$_lt_caught_CXX_error" != yes; then _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' + _LT_TAGVAR(file_list_spec, $1)='$wl-f,' + case $with_aix_soname,$aix_use_runtimelinking in + aix,*) ;; # no import file + svr4,* | *,yes) # use import file + # The Import File defines what to hardcode. + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=no + ;; + esac - if test "$GXX" = yes; then + if test yes = "$GXX"; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ - collect2name=`${CC} -print-prog-name=collect2` + collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then @@ -6036,64 +6530,84 @@ if test "$_lt_caught_CXX_error" != yes; then fi esac shared_flag='-shared' - if test "$aix_use_runtimelinking" = yes; then - shared_flag="$shared_flag "'${wl}-G' + if test yes = "$aix_use_runtimelinking"; then + shared_flag=$shared_flag' $wl-G' fi + # Need to ensure runtime linking is disabled for the traditional + # shared library, or the linker may eventually find shared libraries + # /with/ Import File - we do not want to mix them. + shared_flag_aix='-shared' + shared_flag_svr4='-shared $wl-G' else # not using gcc - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else - if test "$aix_use_runtimelinking" = yes; then - shared_flag='${wl}-G' + if test yes = "$aix_use_runtimelinking"; then + shared_flag='$wl-G' else - shared_flag='${wl}-bM:SRE' + shared_flag='$wl-bM:SRE' fi + shared_flag_aix='$wl-bM:SRE' + shared_flag_svr4='$wl-G' fi fi - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to # export. _LT_TAGVAR(always_export_symbols, $1)=yes - if test "$aix_use_runtimelinking" = yes; then + if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. - _LT_TAGVAR(allow_undefined_flag, $1)='-berok' + # The "-G" linker flag allows undefined symbols. + _LT_TAGVAR(no_undefined_flag, $1)='-bernotok' # Determine the default libpath from the value encoded in an empty # executable. _LT_SYS_MODULE_PATH_AIX([$1]) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else - if test "$host_cpu" = ia64; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' + if test ia64 = "$host_cpu"; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" - _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. - _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' - _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' - if test "$with_gnu_ld" = yes; then + _LT_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok' + _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok' + if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes - # This is similar to how AIX traditionally builds its shared - # libraries. - _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' + # -brtl affects multiple linker settings, -berok does not and is overridden later + compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`' + if test svr4 != "$with_aix_soname"; then + # This is similar to how AIX traditionally builds its shared + # libraries. Need -bnortl late, we may have -brtl in LDFLAGS. + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' + fi + if test aix != "$with_aix_soname"; then + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' + else + # used by -dlpreopen to get the symbols + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$MV $output_objdir/$realname.d/$soname $output_objdir' + fi + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$RM -r $output_objdir/$realname.d' fi fi ;; @@ -6103,7 +6617,7 @@ if test "$_lt_caught_CXX_error" != yes; then _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME - _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi @@ -6131,57 +6645,58 @@ if test "$_lt_caught_CXX_error" != yes; then # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. - shrext_cmds=".dll" + shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. - _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' - _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - $SED -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; - else - $SED -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; - fi~ - $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ - linknames=' + _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' + _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then + cp "$export_symbols" "$output_objdir/$soname.def"; + echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; + else + $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ - lt_tool_outputfile="@TOOL_OUTPUT@"~ - case $lt_outputfile in - *.exe|*.EXE) ;; - *) - lt_outputfile="$lt_outputfile.exe" - lt_tool_outputfile="$lt_tool_outputfile.exe" - ;; - esac~ - func_to_tool_file "$lt_outputfile"~ - if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then - $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; - $RM "$lt_outputfile.manifest"; - fi' + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile=$lt_outputfile.exe + lt_tool_outputfile=$lt_tool_outputfile.exe + ;; + esac~ + func_to_tool_file "$lt_outputfile"~ + if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' ;; *) # g++ # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - # If the export-symbols file already is a .def file (1st line - # is EXPORTS), use it as is; otherwise, prepend... - _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - cp $export_symbols $output_objdir/$soname.def; - else - echo EXPORTS > $output_objdir/$soname.def; - cat $export_symbols >> $output_objdir/$soname.def; - fi~ - $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file, use it as + # is; otherwise, prepend EXPORTS... + _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi @@ -6192,6 +6707,34 @@ if test "$_lt_caught_CXX_error" != yes; then _LT_DARWIN_LINKER_FEATURES($1) ;; + os2*) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + shrext_cmds=.dll + _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + prefix_cmds="$SED"~ + if test EXPORTS = "`$SED 1q $export_symbols`"; then + prefix_cmds="$prefix_cmds -e 1d"; + fi~ + prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ + cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + ;; + dgux*) case $cc_basename in ec++*) @@ -6226,18 +6769,15 @@ if test "$_lt_caught_CXX_error" != yes; then _LT_TAGVAR(ld_shlibs, $1)=yes ;; - gnu*) - ;; - haiku*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=yes ;; hpux9*) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default @@ -6249,7 +6789,7 @@ if test "$_lt_caught_CXX_error" != yes; then _LT_TAGVAR(ld_shlibs, $1)=no ;; aCC*) - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. @@ -6258,11 +6798,11 @@ if test "$_lt_caught_CXX_error" != yes; then # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) - if test "$GXX" = yes; then - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + if test yes = "$GXX"; then + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no @@ -6272,15 +6812,15 @@ if test "$_lt_caught_CXX_error" != yes; then ;; hpux10*|hpux11*) - if test $with_gnu_ld = no; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + if test no = "$with_gnu_ld"; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) ;; *) - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' ;; esac fi @@ -6306,13 +6846,13 @@ if test "$_lt_caught_CXX_error" != yes; then aCC*) case $host_cpu in hppa*64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) - _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists @@ -6323,20 +6863,20 @@ if test "$_lt_caught_CXX_error" != yes; then # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) - if test "$GXX" = yes; then - if test $with_gnu_ld = no; then + if test yes = "$GXX"; then + if test no = "$with_gnu_ld"; then case $host_cpu in hppa*64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi @@ -6351,22 +6891,22 @@ if test "$_lt_caught_CXX_error" != yes; then interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is @@ -6375,22 +6915,22 @@ if test "$_lt_caught_CXX_error" != yes; then _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) - if test "$GXX" = yes; then - if test "$with_gnu_ld" = no; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + if test yes = "$GXX"; then + if test no = "$with_gnu_ld"; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` -o $lib' fi fi _LT_TAGVAR(link_all_deplibs, $1)=yes ;; esac - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes ;; - linux* | k*bsd*-gnu | kopensolaris*-gnu) + linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler @@ -6398,8 +6938,8 @@ if test "$_lt_caught_CXX_error" != yes; then # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. - _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' + _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib $wl-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. @@ -6408,10 +6948,10 @@ if test "$_lt_caught_CXX_error" != yes; then # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. @@ -6425,59 +6965,59 @@ if test "$_lt_caught_CXX_error" != yes; then # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac - _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; esac _LT_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' ;; pgCC* | pgcpp*) # Portland Group C++ compiler case `$CC -V` in *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*) _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ - compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ + compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ - $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ - $RANLIB $oldlib' + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ + $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ + $RANLIB $oldlib' _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ - $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ - $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 6 and above use weak symbols - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; esac - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl--rpath $wl$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' ;; cxx*) # Compaq C++ - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib $wl-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' @@ -6491,18 +7031,18 @@ if test "$_lt_caught_CXX_error" != yes; then # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' ;; xl* | mpixl* | bgxl*) # IBM XL 8.0 on PPC, with GNU ld - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' - _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - if test "x$supports_anon_versioning" = xyes; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' + _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + if test yes = "$supports_anon_versioning"; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi ;; *) @@ -6510,10 +7050,10 @@ if test "$_lt_caught_CXX_error" != yes; then *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' - _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' + _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file $wl$export_symbols' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes # Not sure whether something based on @@ -6571,22 +7111,17 @@ if test "$_lt_caught_CXX_error" != yes; then _LT_TAGVAR(ld_shlibs, $1)=yes ;; - openbsd2*) - # C++ shared libraries are fairly broken - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - - openbsd*) + openbsd* | bitrig*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' + if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`"; then + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file,$export_symbols -o $lib' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' + _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' fi output_verbose_link_cmd=func_echo_all else @@ -6602,9 +7137,9 @@ if test "$_lt_caught_CXX_error" != yes; then # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. - _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Archives containing C++ object files must be created using @@ -6622,17 +7157,17 @@ if test "$_lt_caught_CXX_error" != yes; then cxx*) case $host in osf3*) - _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && func_echo_all "${wl}-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $soname `test -n "$verstring" && func_echo_all "$wl-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' ;; *) _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ - echo "-hidden">> $lib.exp~ - $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~ - $RM $lib.exp' + echo "-hidden">> $lib.exp~ + $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname $wl-input $wl$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~ + $RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' ;; esac @@ -6647,21 +7182,21 @@ if test "$_lt_caught_CXX_error" != yes; then # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) - if test "$GXX" = yes && test "$with_gnu_ld" = no; then - _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + if test yes,no = "$GXX,$with_gnu_ld"; then + _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' case $host in osf3*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' ;; *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' ;; esac - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists @@ -6707,9 +7242,9 @@ if test "$_lt_caught_CXX_error" != yes; then # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(archive_cmds_need_lc,$1)=yes _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' - _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + $CC -G$allow_undefined_flag $wl-M $wl$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no @@ -6717,7 +7252,7 @@ if test "$_lt_caught_CXX_error" != yes; then solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, - # but understands `-z linker_flag'. + # but understands '-z linker_flag'. # Supported since Solaris 2.6 (maybe 2.5.1?) _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;; @@ -6734,30 +7269,30 @@ if test "$_lt_caught_CXX_error" != yes; then ;; gcx*) # Green Hills C++ Compiler - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker - if test "$GXX" = yes && test "$with_gnu_ld" = no; then - _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' + if test yes,no = "$GXX,$with_gnu_ld"; then + _LT_TAGVAR(no_undefined_flag, $1)=' $wl-z ${wl}defs' if $CC --version | $GREP -v '^2\.7' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -shared $pic_flag -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + $CC -shared $pic_flag -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else - # g++ 2.7 appears to require `-G' NOT `-shared' on this + # g++ 2.7 appears to require '-G' NOT '-shared' on this # platform. - _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + $CC -G -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when @@ -6765,11 +7300,11 @@ if test "$_lt_caught_CXX_error" != yes; then output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' fi - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $wl$libdir' case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' ;; esac fi @@ -6778,52 +7313,52 @@ if test "$_lt_caught_CXX_error" != yes; then ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) - _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) - _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) - # Note: We can NOT use -z defs as we might desire, because we do not + # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. - _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' - _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' + _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' + _LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) - _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~ - '"$_LT_TAGVAR(old_archive_cmds, $1)" + '"$_LT_TAGVAR(old_archive_cmds, $1)" _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~ - '"$_LT_TAGVAR(reload_cmds, $1)" + '"$_LT_TAGVAR(reload_cmds, $1)" ;; *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; @@ -6854,10 +7389,10 @@ if test "$_lt_caught_CXX_error" != yes; then esac AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) - test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no + test no = "$_LT_TAGVAR(ld_shlibs, $1)" && can_build_shared=no - _LT_TAGVAR(GCC, $1)="$GXX" - _LT_TAGVAR(LD, $1)="$LD" + _LT_TAGVAR(GCC, $1)=$GXX + _LT_TAGVAR(LD, $1)=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change @@ -6884,7 +7419,7 @@ if test "$_lt_caught_CXX_error" != yes; then lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld -fi # test "$_lt_caught_CXX_error" != yes +fi # test yes != "$_lt_caught_CXX_error" AC_LANG_POP ])# _LT_LANG_CXX_CONFIG @@ -6906,13 +7441,14 @@ AC_REQUIRE([_LT_DECL_SED]) AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH]) func_stripname_cnf () { - case ${2} in - .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; - *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; + case @S|@2 in + .*) func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%\\\\@S|@2\$%%"`;; + *) func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%@S|@2\$%%"`;; esac } # func_stripname_cnf ])# _LT_FUNC_STRIPNAME_CNF + # _LT_SYS_HIDDEN_LIBDEPS([TAGNAME]) # --------------------------------- # Figure out "hidden" library dependencies from verbose @@ -6996,13 +7532,13 @@ if AC_TRY_EVAL(ac_compile); then pre_test_object_deps_done=no for p in `eval "$output_verbose_link_cmd"`; do - case ${prev}${p} in + case $prev$p in -L* | -R* | -l*) # Some compilers place space between "-{L,R}" and the path. # Remove the space. - if test $p = "-L" || - test $p = "-R"; then + if test x-L = "$p" || + test x-R = "$p"; then prev=$p continue fi @@ -7018,16 +7554,16 @@ if AC_TRY_EVAL(ac_compile); then case $p in =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; esac - if test "$pre_test_object_deps_done" = no; then - case ${prev} in + if test no = "$pre_test_object_deps_done"; then + case $prev in -L | -R) # Internal compiler library paths should come after those # provided the user. The postdeps already come after the # user supplied libs so there is no need to process them. if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then - _LT_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}" + _LT_TAGVAR(compiler_lib_search_path, $1)=$prev$p else - _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}" + _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} $prev$p" fi ;; # The "-l" case would never come before the object being @@ -7035,9 +7571,9 @@ if AC_TRY_EVAL(ac_compile); then esac else if test -z "$_LT_TAGVAR(postdeps, $1)"; then - _LT_TAGVAR(postdeps, $1)="${prev}${p}" + _LT_TAGVAR(postdeps, $1)=$prev$p else - _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} ${prev}${p}" + _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} $prev$p" fi fi prev= @@ -7052,15 +7588,15 @@ if AC_TRY_EVAL(ac_compile); then continue fi - if test "$pre_test_object_deps_done" = no; then + if test no = "$pre_test_object_deps_done"; then if test -z "$_LT_TAGVAR(predep_objects, $1)"; then - _LT_TAGVAR(predep_objects, $1)="$p" + _LT_TAGVAR(predep_objects, $1)=$p else _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p" fi else if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then - _LT_TAGVAR(postdep_objects, $1)="$p" + _LT_TAGVAR(postdep_objects, $1)=$p else _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p" fi @@ -7091,51 +7627,6 @@ interix[[3-9]]*) _LT_TAGVAR(postdep_objects,$1)= _LT_TAGVAR(postdeps,$1)= ;; - -linux*) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - # Sun C++ 5.9 - - # The more standards-conforming stlport4 library is - # incompatible with the Cstd library. Avoid specifying - # it if it's in CXXFLAGS. Ignore libCrun as - # -library=stlport4 depends on it. - case " $CXX $CXXFLAGS " in - *" -library=stlport4 "*) - solaris_use_stlport4=yes - ;; - esac - - if test "$solaris_use_stlport4" != yes; then - _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' - fi - ;; - esac - ;; - -solaris*) - case $cc_basename in - CC* | sunCC*) - # The more standards-conforming stlport4 library is - # incompatible with the Cstd library. Avoid specifying - # it if it's in CXXFLAGS. Ignore libCrun as - # -library=stlport4 depends on it. - case " $CXX $CXXFLAGS " in - *" -library=stlport4 "*) - solaris_use_stlport4=yes - ;; - esac - - # Adding this requires a known-good setup of shared libraries for - # Sun compiler versions before 5.6, else PIC objects from an old - # archive will be linked into the output, leading to subtle bugs. - if test "$solaris_use_stlport4" != yes; then - _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' - fi - ;; - esac - ;; esac ]) @@ -7144,7 +7635,7 @@ case " $_LT_TAGVAR(postdeps, $1) " in esac _LT_TAGVAR(compiler_lib_search_dirs, $1)= if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then - _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` + _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | $SED -e 's! -L! !g' -e 's!^ !!'` fi _LT_TAGDECL([], [compiler_lib_search_dirs], [1], [The directories searched by this compiler when creating a shared library]) @@ -7164,10 +7655,10 @@ _LT_TAGDECL([], [compiler_lib_search_path], [1], # -------------------------- # Ensure that the configuration variables for a Fortran 77 compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to `libtool'. +# to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_F77_CONFIG], [AC_LANG_PUSH(Fortran 77) -if test -z "$F77" || test "X$F77" = "Xno"; then +if test -z "$F77" || test no = "$F77"; then _lt_disable_F77=yes fi @@ -7204,7 +7695,7 @@ _LT_TAGVAR(objext, $1)=$objext # the F77 compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. -if test "$_lt_disable_F77" != yes; then +if test yes != "$_lt_disable_F77"; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t @@ -7226,7 +7717,7 @@ if test "$_lt_disable_F77" != yes; then _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. - lt_save_CC="$CC" + lt_save_CC=$CC lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${F77-"f77"} @@ -7240,21 +7731,25 @@ if test "$_lt_disable_F77" != yes; then AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) - test "$can_build_shared" = "no" && enable_shared=no + test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) - test "$enable_shared" = yes && enable_static=no + test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) - if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then - test "$enable_shared" = yes && enable_static=no + if test ia64 != "$host_cpu"; then + case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in + yes,aix,yes) ;; # shared object as lib.so file only + yes,svr4,*) ;; # shared object as lib.so archive member only + yes,*) enable_static=no ;; # shared object in lib.a archive as well + esac fi ;; esac @@ -7262,11 +7757,11 @@ if test "$_lt_disable_F77" != yes; then AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. - test "$enable_shared" = yes || enable_static=yes + test yes = "$enable_shared" || enable_static=yes AC_MSG_RESULT([$enable_static]) - _LT_TAGVAR(GCC, $1)="$G77" - _LT_TAGVAR(LD, $1)="$LD" + _LT_TAGVAR(GCC, $1)=$G77 + _LT_TAGVAR(LD, $1)=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change @@ -7283,9 +7778,9 @@ if test "$_lt_disable_F77" != yes; then fi # test -n "$compiler" GCC=$lt_save_GCC - CC="$lt_save_CC" - CFLAGS="$lt_save_CFLAGS" -fi # test "$_lt_disable_F77" != yes + CC=$lt_save_CC + CFLAGS=$lt_save_CFLAGS +fi # test yes != "$_lt_disable_F77" AC_LANG_POP ])# _LT_LANG_F77_CONFIG @@ -7295,11 +7790,11 @@ AC_LANG_POP # ------------------------- # Ensure that the configuration variables for a Fortran compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to `libtool'. +# to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_FC_CONFIG], [AC_LANG_PUSH(Fortran) -if test -z "$FC" || test "X$FC" = "Xno"; then +if test -z "$FC" || test no = "$FC"; then _lt_disable_FC=yes fi @@ -7336,7 +7831,7 @@ _LT_TAGVAR(objext, $1)=$objext # the FC compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. -if test "$_lt_disable_FC" != yes; then +if test yes != "$_lt_disable_FC"; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t @@ -7358,7 +7853,7 @@ if test "$_lt_disable_FC" != yes; then _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. - lt_save_CC="$CC" + lt_save_CC=$CC lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${FC-"f95"} @@ -7374,21 +7869,25 @@ if test "$_lt_disable_FC" != yes; then AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) - test "$can_build_shared" = "no" && enable_shared=no + test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) - test "$enable_shared" = yes && enable_static=no + test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) - if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then - test "$enable_shared" = yes && enable_static=no + if test ia64 != "$host_cpu"; then + case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in + yes,aix,yes) ;; # shared object as lib.so file only + yes,svr4,*) ;; # shared object as lib.so archive member only + yes,*) enable_static=no ;; # shared object in lib.a archive as well + esac fi ;; esac @@ -7396,11 +7895,11 @@ if test "$_lt_disable_FC" != yes; then AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. - test "$enable_shared" = yes || enable_static=yes + test yes = "$enable_shared" || enable_static=yes AC_MSG_RESULT([$enable_static]) - _LT_TAGVAR(GCC, $1)="$ac_cv_fc_compiler_gnu" - _LT_TAGVAR(LD, $1)="$LD" + _LT_TAGVAR(GCC, $1)=$ac_cv_fc_compiler_gnu + _LT_TAGVAR(LD, $1)=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change @@ -7420,7 +7919,7 @@ if test "$_lt_disable_FC" != yes; then GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS -fi # test "$_lt_disable_FC" != yes +fi # test yes != "$_lt_disable_FC" AC_LANG_POP ])# _LT_LANG_FC_CONFIG @@ -7430,7 +7929,7 @@ AC_LANG_POP # -------------------------- # Ensure that the configuration variables for the GNU Java Compiler compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to `libtool'. +# to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_GCJ_CONFIG], [AC_REQUIRE([LT_PROG_GCJ])dnl AC_LANG_SAVE @@ -7464,7 +7963,7 @@ CC=${GCJ-"gcj"} CFLAGS=$GCJFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC -_LT_TAGVAR(LD, $1)="$LD" +_LT_TAGVAR(LD, $1)=$LD _LT_CC_BASENAME([$compiler]) # GCJ did not exist at the time GCC didn't implicitly link libc in. @@ -7501,7 +8000,7 @@ CFLAGS=$lt_save_CFLAGS # -------------------------- # Ensure that the configuration variables for the GNU Go compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to `libtool'. +# to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_GO_CONFIG], [AC_REQUIRE([LT_PROG_GO])dnl AC_LANG_SAVE @@ -7535,7 +8034,7 @@ CC=${GOC-"gccgo"} CFLAGS=$GOFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC -_LT_TAGVAR(LD, $1)="$LD" +_LT_TAGVAR(LD, $1)=$LD _LT_CC_BASENAME([$compiler]) # Go did not exist at the time GCC didn't implicitly link libc in. @@ -7572,7 +8071,7 @@ CFLAGS=$lt_save_CFLAGS # ------------------------- # Ensure that the configuration variables for the Windows resource compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to `libtool'. +# to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_RC_CONFIG], [AC_REQUIRE([LT_PROG_RC])dnl AC_LANG_SAVE @@ -7588,7 +8087,7 @@ _LT_TAGVAR(objext, $1)=$objext lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' # Code to be used in simple link tests -lt_simple_link_test_code="$lt_simple_compile_test_code" +lt_simple_link_test_code=$lt_simple_compile_test_code # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER @@ -7598,7 +8097,7 @@ _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. -lt_save_CC="$CC" +lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC= @@ -7627,7 +8126,7 @@ AC_DEFUN([LT_PROG_GCJ], [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ], [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ], [AC_CHECK_TOOL(GCJ, gcj,) - test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" + test set = "${GCJFLAGS+set}" || GCJFLAGS="-g -O2" AC_SUBST(GCJFLAGS)])])[]dnl ]) @@ -7738,7 +8237,7 @@ lt_ac_count=0 # Add /usr/xpg4/bin/sed as it is typically found on Solaris # along with /bin/sed that truncates output. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do - test ! -f $lt_ac_sed && continue + test ! -f "$lt_ac_sed" && continue cat /dev/null > conftest.in lt_ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >conftest.in @@ -7755,9 +8254,9 @@ for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break cmp -s conftest.out conftest.nl || break # 10000 chars as input seems more than enough - test $lt_ac_count -gt 10 && break + test 10 -lt "$lt_ac_count" && break lt_ac_count=`expr $lt_ac_count + 1` - if test $lt_ac_count -gt $lt_ac_max; then + if test "$lt_ac_count" -gt "$lt_ac_max"; then lt_ac_max=$lt_ac_count lt_cv_path_SED=$lt_ac_sed fi @@ -7781,27 +8280,7 @@ dnl AC_DEFUN([LT_AC_PROG_SED], []) # Find out whether the shell is Bourne or XSI compatible, # or has some other useful features. m4_defun([_LT_CHECK_SHELL_FEATURES], -[AC_MSG_CHECKING([whether the shell understands some XSI constructs]) -# Try some XSI features -xsi_shell=no -( _lt_dummy="a/b/c" - test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ - = c,a/b,b/c, \ - && eval 'test $(( 1 + 1 )) -eq 2 \ - && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ - && xsi_shell=yes -AC_MSG_RESULT([$xsi_shell]) -_LT_CONFIG_LIBTOOL_INIT([xsi_shell='$xsi_shell']) - -AC_MSG_CHECKING([whether the shell understands "+="]) -lt_shell_append=no -( foo=bar; set foo baz; eval "$[1]+=\$[2]" && test "$foo" = barbaz ) \ - >/dev/null 2>&1 \ - && lt_shell_append=yes -AC_MSG_RESULT([$lt_shell_append]) -_LT_CONFIG_LIBTOOL_INIT([lt_shell_append='$lt_shell_append']) - -if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then +[if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else lt_unset=false @@ -7825,102 +8304,9 @@ _LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl ])# _LT_CHECK_SHELL_FEATURES -# _LT_PROG_FUNCTION_REPLACE (FUNCNAME, REPLACEMENT-BODY) -# ------------------------------------------------------ -# In `$cfgfile', look for function FUNCNAME delimited by `^FUNCNAME ()$' and -# '^} FUNCNAME ', and replace its body with REPLACEMENT-BODY. -m4_defun([_LT_PROG_FUNCTION_REPLACE], -[dnl { -sed -e '/^$1 ()$/,/^} # $1 /c\ -$1 ()\ -{\ -m4_bpatsubsts([$2], [$], [\\], [^\([ ]\)], [\\\1]) -} # Extended-shell $1 implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: -]) - - -# _LT_PROG_REPLACE_SHELLFNS -# ------------------------- -# Replace existing portable implementations of several shell functions with -# equivalent extended shell implementations where those features are available.. -m4_defun([_LT_PROG_REPLACE_SHELLFNS], -[if test x"$xsi_shell" = xyes; then - _LT_PROG_FUNCTION_REPLACE([func_dirname], [dnl - case ${1} in - */*) func_dirname_result="${1%/*}${2}" ;; - * ) func_dirname_result="${3}" ;; - esac]) - - _LT_PROG_FUNCTION_REPLACE([func_basename], [dnl - func_basename_result="${1##*/}"]) - - _LT_PROG_FUNCTION_REPLACE([func_dirname_and_basename], [dnl - case ${1} in - */*) func_dirname_result="${1%/*}${2}" ;; - * ) func_dirname_result="${3}" ;; - esac - func_basename_result="${1##*/}"]) - - _LT_PROG_FUNCTION_REPLACE([func_stripname], [dnl - # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are - # positional parameters, so assign one to ordinary parameter first. - func_stripname_result=${3} - func_stripname_result=${func_stripname_result#"${1}"} - func_stripname_result=${func_stripname_result%"${2}"}]) - - _LT_PROG_FUNCTION_REPLACE([func_split_long_opt], [dnl - func_split_long_opt_name=${1%%=*} - func_split_long_opt_arg=${1#*=}]) - - _LT_PROG_FUNCTION_REPLACE([func_split_short_opt], [dnl - func_split_short_opt_arg=${1#??} - func_split_short_opt_name=${1%"$func_split_short_opt_arg"}]) - - _LT_PROG_FUNCTION_REPLACE([func_lo2o], [dnl - case ${1} in - *.lo) func_lo2o_result=${1%.lo}.${objext} ;; - *) func_lo2o_result=${1} ;; - esac]) - - _LT_PROG_FUNCTION_REPLACE([func_xform], [ func_xform_result=${1%.*}.lo]) - - _LT_PROG_FUNCTION_REPLACE([func_arith], [ func_arith_result=$(( $[*] ))]) - - _LT_PROG_FUNCTION_REPLACE([func_len], [ func_len_result=${#1}]) -fi - -if test x"$lt_shell_append" = xyes; then - _LT_PROG_FUNCTION_REPLACE([func_append], [ eval "${1}+=\\${2}"]) - - _LT_PROG_FUNCTION_REPLACE([func_append_quoted], [dnl - func_quote_for_eval "${2}" -dnl m4 expansion turns \\\\ into \\, and then the shell eval turns that into \ - eval "${1}+=\\\\ \\$func_quote_for_eval_result"]) - - # Save a `func_append' function call where possible by direct use of '+=' - sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") - test 0 -eq $? || _lt_function_replace_fail=: -else - # Save a `func_append' function call even when '+=' is not available - sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") - test 0 -eq $? || _lt_function_replace_fail=: -fi - -if test x"$_lt_function_replace_fail" = x":"; then - AC_MSG_WARN([Unable to substitute extended shell functions in $ofile]) -fi -]) - # _LT_PATH_CONVERSION_FUNCTIONS # ----------------------------- -# Determine which file name conversion functions should be used by +# Determine what file name conversion functions should be used by # func_to_host_file (and, implicitly, by func_to_host_path). These are needed # for certain cross-compile configurations and native mingw. m4_defun([_LT_PATH_CONVERSION_FUNCTIONS], @@ -7986,15 +8372,15 @@ _LT_DECL([to_tool_file_cmd], [lt_cv_to_tool_file_cmd], ])# _LT_PATH_CONVERSION_FUNCTIONS # Helper functions for option handling. -*- Autoconf -*- # -# Copyright (C) 2004, 2005, 2007, 2008, 2009 Free Software Foundation, -# Inc. +# Copyright (C) 2004-2005, 2007-2009, 2011-2015 Free Software +# Foundation, Inc. # Written by Gary V. Vaughan, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. -# serial 7 ltoptions.m4 +# serial 8 ltoptions.m4 # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])]) @@ -8015,7 +8401,7 @@ m4_define([_LT_SET_OPTION], [m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]), _LT_MANGLE_DEFUN([$1], [$2]), - [m4_warning([Unknown $1 option `$2'])])[]dnl + [m4_warning([Unknown $1 option '$2'])])[]dnl ]) @@ -8061,13 +8447,15 @@ m4_if([$1],[LT_INIT],[ dnl dnl If no reference was made to various pairs of opposing options, then dnl we run the default mode handler for the pair. For example, if neither - dnl `shared' nor `disable-shared' was passed, we enable building of shared + dnl 'shared' nor 'disable-shared' was passed, we enable building of shared dnl archives by default: _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED]) _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC]) _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC]) _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install], - [_LT_ENABLE_FAST_INSTALL]) + [_LT_ENABLE_FAST_INSTALL]) + _LT_UNLESS_OPTIONS([LT_INIT], [aix-soname=aix aix-soname=both aix-soname=svr4], + [_LT_WITH_AIX_SONAME([aix])]) ]) ])# _LT_SET_OPTIONS @@ -8098,7 +8486,7 @@ AU_DEFUN([AC_LIBTOOL_DLOPEN], [_LT_SET_OPTION([LT_INIT], [dlopen]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you -put the `dlopen' option into LT_INIT's first parameter.]) +put the 'dlopen' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: @@ -8134,7 +8522,7 @@ AU_DEFUN([AC_LIBTOOL_WIN32_DLL], _LT_SET_OPTION([LT_INIT], [win32-dll]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you -put the `win32-dll' option into LT_INIT's first parameter.]) +put the 'win32-dll' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: @@ -8143,9 +8531,9 @@ dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], []) # _LT_ENABLE_SHARED([DEFAULT]) # ---------------------------- -# implement the --enable-shared flag, and supports the `shared' and -# `disable-shared' LT_INIT options. -# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +# implement the --enable-shared flag, and supports the 'shared' and +# 'disable-shared' LT_INIT options. +# DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. m4_define([_LT_ENABLE_SHARED], [m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([shared], @@ -8158,14 +8546,14 @@ AC_ARG_ENABLE([shared], *) enable_shared=no # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_shared=yes fi done - IFS="$lt_save_ifs" + IFS=$lt_save_ifs ;; esac], [enable_shared=]_LT_ENABLE_SHARED_DEFAULT) @@ -8197,9 +8585,9 @@ dnl AC_DEFUN([AM_DISABLE_SHARED], []) # _LT_ENABLE_STATIC([DEFAULT]) # ---------------------------- -# implement the --enable-static flag, and support the `static' and -# `disable-static' LT_INIT options. -# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +# implement the --enable-static flag, and support the 'static' and +# 'disable-static' LT_INIT options. +# DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. m4_define([_LT_ENABLE_STATIC], [m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([static], @@ -8212,14 +8600,14 @@ AC_ARG_ENABLE([static], *) enable_static=no # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_static=yes fi done - IFS="$lt_save_ifs" + IFS=$lt_save_ifs ;; esac], [enable_static=]_LT_ENABLE_STATIC_DEFAULT) @@ -8251,9 +8639,9 @@ dnl AC_DEFUN([AM_DISABLE_STATIC], []) # _LT_ENABLE_FAST_INSTALL([DEFAULT]) # ---------------------------------- -# implement the --enable-fast-install flag, and support the `fast-install' -# and `disable-fast-install' LT_INIT options. -# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +# implement the --enable-fast-install flag, and support the 'fast-install' +# and 'disable-fast-install' LT_INIT options. +# DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. m4_define([_LT_ENABLE_FAST_INSTALL], [m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([fast-install], @@ -8266,14 +8654,14 @@ AC_ARG_ENABLE([fast-install], *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done - IFS="$lt_save_ifs" + IFS=$lt_save_ifs ;; esac], [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT) @@ -8290,14 +8678,14 @@ AU_DEFUN([AC_ENABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put -the `fast-install' option into LT_INIT's first parameter.]) +the 'fast-install' option into LT_INIT's first parameter.]) ]) AU_DEFUN([AC_DISABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], [disable-fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put -the `disable-fast-install' option into LT_INIT's first parameter.]) +the 'disable-fast-install' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: @@ -8305,11 +8693,64 @@ dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], []) dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) +# _LT_WITH_AIX_SONAME([DEFAULT]) +# ---------------------------------- +# implement the --with-aix-soname flag, and support the `aix-soname=aix' +# and `aix-soname=both' and `aix-soname=svr4' LT_INIT options. DEFAULT +# is either `aix', `both' or `svr4'. If omitted, it defaults to `aix'. +m4_define([_LT_WITH_AIX_SONAME], +[m4_define([_LT_WITH_AIX_SONAME_DEFAULT], [m4_if($1, svr4, svr4, m4_if($1, both, both, aix))])dnl +shared_archive_member_spec= +case $host,$enable_shared in +power*-*-aix[[5-9]]*,yes) + AC_MSG_CHECKING([which variant of shared library versioning to provide]) + AC_ARG_WITH([aix-soname], + [AS_HELP_STRING([--with-aix-soname=aix|svr4|both], + [shared library versioning (aka "SONAME") variant to provide on AIX, @<:@default=]_LT_WITH_AIX_SONAME_DEFAULT[@:>@.])], + [case $withval in + aix|svr4|both) + ;; + *) + AC_MSG_ERROR([Unknown argument to --with-aix-soname]) + ;; + esac + lt_cv_with_aix_soname=$with_aix_soname], + [AC_CACHE_VAL([lt_cv_with_aix_soname], + [lt_cv_with_aix_soname=]_LT_WITH_AIX_SONAME_DEFAULT) + with_aix_soname=$lt_cv_with_aix_soname]) + AC_MSG_RESULT([$with_aix_soname]) + if test aix != "$with_aix_soname"; then + # For the AIX way of multilib, we name the shared archive member + # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o', + # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File. + # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag, + # the AIX toolchain works better with OBJECT_MODE set (default 32). + if test 64 = "${OBJECT_MODE-32}"; then + shared_archive_member_spec=shr_64 + else + shared_archive_member_spec=shr + fi + fi + ;; +*) + with_aix_soname=aix + ;; +esac + +_LT_DECL([], [shared_archive_member_spec], [0], + [Shared archive member basename, for filename based shared library versioning on AIX])dnl +])# _LT_WITH_AIX_SONAME + +LT_OPTION_DEFINE([LT_INIT], [aix-soname=aix], [_LT_WITH_AIX_SONAME([aix])]) +LT_OPTION_DEFINE([LT_INIT], [aix-soname=both], [_LT_WITH_AIX_SONAME([both])]) +LT_OPTION_DEFINE([LT_INIT], [aix-soname=svr4], [_LT_WITH_AIX_SONAME([svr4])]) + + # _LT_WITH_PIC([MODE]) # -------------------- -# implement the --with-pic flag, and support the `pic-only' and `no-pic' +# implement the --with-pic flag, and support the 'pic-only' and 'no-pic' # LT_INIT options. -# MODE is either `yes' or `no'. If omitted, it defaults to `both'. +# MODE is either 'yes' or 'no'. If omitted, it defaults to 'both'. m4_define([_LT_WITH_PIC], [AC_ARG_WITH([pic], [AS_HELP_STRING([--with-pic@<:@=PKGS@:>@], @@ -8320,19 +8761,17 @@ m4_define([_LT_WITH_PIC], *) pic_mode=default # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for lt_pkg in $withval; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs if test "X$lt_pkg" = "X$lt_p"; then pic_mode=yes fi done - IFS="$lt_save_ifs" + IFS=$lt_save_ifs ;; esac], - [pic_mode=default]) - -test -z "$pic_mode" && pic_mode=m4_default([$1], [default]) + [pic_mode=m4_default([$1], [default])]) _LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl ])# _LT_WITH_PIC @@ -8345,7 +8784,7 @@ AU_DEFUN([AC_LIBTOOL_PICMODE], [_LT_SET_OPTION([LT_INIT], [pic-only]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you -put the `pic-only' option into LT_INIT's first parameter.]) +put the 'pic-only' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: @@ -8370,7 +8809,8 @@ LT_OPTION_DEFINE([LTDL_INIT], [convenience], [m4_define([_LTDL_TYPE], [convenience])]) # ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*- # -# Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc. +# Copyright (C) 2004-2005, 2007-2008, 2011-2015 Free Software +# Foundation, Inc. # Written by Gary V. Vaughan, 2004 # # This file is free software; the Free Software Foundation gives @@ -8403,7 +8843,7 @@ m4_define([_lt_join], # ------------ # Manipulate m4 lists. # These macros are necessary as long as will still need to support -# Autoconf-2.59 which quotes differently. +# Autoconf-2.59, which quotes differently. m4_define([lt_car], [[$1]]) m4_define([lt_cdr], [m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])], @@ -8414,7 +8854,7 @@ m4_define([lt_unquote], $1) # lt_append(MACRO-NAME, STRING, [SEPARATOR]) # ------------------------------------------ -# Redefine MACRO-NAME to hold its former content plus `SEPARATOR'`STRING'. +# Redefine MACRO-NAME to hold its former content plus 'SEPARATOR''STRING'. # Note that neither SEPARATOR nor STRING are expanded; they are appended # to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked). # No SEPARATOR is output if MACRO-NAME was previously undefined (different @@ -8493,7 +8933,7 @@ m4_define([lt_dict_filter], ]) # ltversion.m4 -- version numbers -*- Autoconf -*- # -# Copyright (C) 2004 Free Software Foundation, Inc. +# Copyright (C) 2004, 2011-2015 Free Software Foundation, Inc. # Written by Scott James Remnant, 2004 # # This file is free software; the Free Software Foundation gives @@ -8502,21 +8942,22 @@ m4_define([lt_dict_filter], # @configure_input@ -# serial 3337 ltversion.m4 +# serial 4179 ltversion.m4 # This file is part of GNU Libtool -m4_define([LT_PACKAGE_VERSION], [2.4.2]) -m4_define([LT_PACKAGE_REVISION], [1.3337]) +m4_define([LT_PACKAGE_VERSION], [2.4.6]) +m4_define([LT_PACKAGE_REVISION], [2.4.6]) AC_DEFUN([LTVERSION_VERSION], -[macro_version='2.4.2' -macro_revision='1.3337' +[macro_version='2.4.6' +macro_revision='2.4.6' _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) _LT_DECL(, macro_revision, 0) ]) # lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*- # -# Copyright (C) 2004, 2005, 2007, 2009 Free Software Foundation, Inc. +# Copyright (C) 2004-2005, 2007, 2009, 2011-2015 Free Software +# Foundation, Inc. # Written by Scott James Remnant, 2004. # # This file is free software; the Free Software Foundation gives @@ -8527,7 +8968,7 @@ _LT_DECL(, macro_revision, 0) # These exist entirely to fool aclocal when bootstrapping libtool. # -# In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN) +# In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN), # which have later been changed to m4_define as they aren't part of the # exported API, or moved to Autoconf or Automake where they belong. # @@ -8541,7 +8982,7 @@ _LT_DECL(, macro_revision, 0) # included after everything else. This provides aclocal with the # AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything # because those macros already exist, or will be overwritten later. -# We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. +# We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. # # Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here. # Yes, that means every name once taken will need to remain here until diff --git a/coregrade/src/build/mkdep.awk b/coregrade/src/build/mkdep.awk index 06547c7..eae800c 100644 --- a/coregrade/src/build/mkdep.awk +++ b/coregrade/src/build/mkdep.awk @@ -1,5 +1,5 @@ # +----------------------------------------------------------------------+ -# | PHP Version 5 | +# | PHP Version 7 | # +----------------------------------------------------------------------+ # | Copyright (c) 2000-2006 The PHP Group | # +----------------------------------------------------------------------+ @@ -35,16 +35,16 @@ } dif=i-1 - + for (; i <= NF; i++) filenames[i-dif]=$i - + no_files=NF-dif - + for(i = 1; i <= no_files; i++) { if (system("test -r " filenames[i]) != 0) continue - + target=filenames[i] sub(srcdir "/", "", target) target2=target @@ -53,7 +53,7 @@ for (e in used) delete used[e] - + cmdx=cmd " " filenames[i] done=0 while ((cmdx | getline) > 0) { @@ -66,10 +66,10 @@ done=1 printf(" \\\n\t" substr($3,2,length($3)-2)) used[$3] = 1; - } + } } } if (done == 1) print "\n" } -} +} diff --git a/coregrade/src/build/scan_makefile_in.awk b/coregrade/src/build/scan_makefile_in.awk index 0c6d203..c7ba9a8 100644 --- a/coregrade/src/build/scan_makefile_in.awk +++ b/coregrade/src/build/scan_makefile_in.awk @@ -2,7 +2,7 @@ BEGIN { mode=0 sources="" } - + mode == 0 && /^LTLIBRARY_SOURCES.*\\$/ { if (match($0, "[^=]*$")) { sources=substr($0, RSTART, RLENGTH-1) diff --git a/coregrade/src/build/shtool b/coregrade/src/build/shtool index d50aa1d..fc6ae1e 100755 --- a/coregrade/src/build/shtool +++ b/coregrade/src/build/shtool @@ -376,11 +376,11 @@ while [ $# -gt 0 ]; do eval "opt_${opt_OPT}=yes" ;; ':' ) - # option with argument (multiple occurances override) + # option with argument (multiple occurrences override) eval "opt_${opt_OPT}=\"\$opt_ARG\"" ;; '+' ) - # option with argument (multiple occurances append) + # option with argument (multiple occurrences append) eval "opt_${opt_OPT}=\"\$opt_${opt_OPT}\${ASC_NL}\$opt_ARG\"" ;; * ) @@ -1003,7 +1003,14 @@ mkdir ) if [ ".$opt_t" = .yes ]; then echo "mkdir $pathcomp" 1>&2 fi - mkdir $pathcomp || errstatus=$? + # See https://bugs.php.net/51076 + # The fix is from Debian who have sent it + # upstream, too; but upstream seems dead. + mkdir $pathcomp || { + _errstatus=$? + [ -d "$pathcomp" ] || errstatus=${_errstatus} + unset _errstatus + } if [ ".$opt_o" != . ]; then if [ ".$opt_t" = .yes ]; then echo "chown $opt_o $pathcomp" 1>&2 diff --git a/coregrade/src/confdefs.h b/coregrade/src/confdefs.h index 2562721..6871d9c 100644 --- a/coregrade/src/confdefs.h +++ b/coregrade/src/confdefs.h @@ -5,7 +5,7 @@ #define PACKAGE_STRING "" #define PACKAGE_BUGREPORT "" #define PACKAGE_URL "" -#define COMPILE_DL_COREGRADE_API 1 +#define COMPILE_DL_COREGRADE_API_OAMEYE 1 #define STDC_HEADERS 1 #define HAVE_SYS_TYPES_H 1 #define HAVE_SYS_STAT_H 1 diff --git a/coregrade/src/config.guess b/coregrade/src/config.guess index b79252d..6c32c86 100755 --- a/coregrade/src/config.guess +++ b/coregrade/src/config.guess @@ -1,8 +1,8 @@ #! /bin/sh # Attempt to guess a canonical system name. -# Copyright 1992-2013 Free Software Foundation, Inc. +# Copyright 1992-2014 Free Software Foundation, Inc. -timestamp='2013-06-10' +timestamp='2014-11-04' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -24,12 +24,12 @@ timestamp='2013-06-10' # program. This Exception is an additional permission under section 7 # of the GNU General Public License, version 3 ("GPLv3"). # -# Originally written by Per Bothner. +# Originally written by Per Bothner; maintained since 2000 by Ben Elliston. # # You can get the latest version of this script from: # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD # -# Please send patches with a ChangeLog entry to config-patches@gnu.org. +# Please send patches to . me=`echo "$0" | sed -e 's,.*/,,'` @@ -50,7 +50,7 @@ version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. -Copyright 1992-2013 Free Software Foundation, Inc. +Copyright 1992-2014 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -149,7 +149,7 @@ Linux|GNU|GNU/*) LIBC=gnu #endif EOF - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC' | sed 's, ,,g'` ;; esac @@ -579,8 +579,9 @@ EOF else IBM_ARCH=powerpc fi - if [ -x /usr/bin/oslevel ] ; then - IBM_REV=`/usr/bin/oslevel` + if [ -x /usr/bin/lslpp ] ; then + IBM_REV=`/usr/bin/lslpp -Lqc bos.rte.libc | + awk -F: '{ print $3 }' | sed s/[0-9]*$/0/` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi @@ -826,7 +827,7 @@ EOF *:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit ;; - i*:MSYS*:*) + *:MSYS*:*) echo ${UNAME_MACHINE}-pc-msys exit ;; i*:windows32*:*) @@ -969,10 +970,10 @@ EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; } ;; - or1k:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + openrisc*:Linux:*:*) + echo or1k-unknown-linux-${LIBC} exit ;; - or32:Linux:*:*) + or32:Linux:*:* | or1k*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; padre:Linux:*:*) @@ -1260,16 +1261,26 @@ EOF if test "$UNAME_PROCESSOR" = unknown ; then UNAME_PROCESSOR=powerpc fi - if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then - if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ - (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ - grep IS_64BIT_ARCH >/dev/null - then - case $UNAME_PROCESSOR in - i386) UNAME_PROCESSOR=x86_64 ;; - powerpc) UNAME_PROCESSOR=powerpc64 ;; - esac + if test `echo "$UNAME_RELEASE" | sed -e 's/\..*//'` -le 10 ; then + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null + then + case $UNAME_PROCESSOR in + i386) UNAME_PROCESSOR=x86_64 ;; + powerpc) UNAME_PROCESSOR=powerpc64 ;; + esac + fi fi + elif test "$UNAME_PROCESSOR" = i386 ; then + # Avoid executing cc on OS X 10.9, as it ships with a stub + # that puts up a graphical alert prompting to install + # developer tools. Any system running Mac OS X 10.7 or + # later (Darwin 11 and later) is required to have a 64-bit + # processor. This is not true of the ARM version of Darwin + # that Apple uses in portable devices. + UNAME_PROCESSOR=x86_64 fi echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} exit ;; @@ -1361,154 +1372,6 @@ EOF exit ;; esac -eval $set_cc_for_build -cat >$dummy.c < -# include -#endif -main () -{ -#if defined (sony) -#if defined (MIPSEB) - /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, - I don't know.... */ - printf ("mips-sony-bsd\n"); exit (0); -#else -#include - printf ("m68k-sony-newsos%s\n", -#ifdef NEWSOS4 - "4" -#else - "" -#endif - ); exit (0); -#endif -#endif - -#if defined (__arm) && defined (__acorn) && defined (__unix) - printf ("arm-acorn-riscix\n"); exit (0); -#endif - -#if defined (hp300) && !defined (hpux) - printf ("m68k-hp-bsd\n"); exit (0); -#endif - -#if defined (NeXT) -#if !defined (__ARCHITECTURE__) -#define __ARCHITECTURE__ "m68k" -#endif - int version; - version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; - if (version < 4) - printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); - else - printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); - exit (0); -#endif - -#if defined (MULTIMAX) || defined (n16) -#if defined (UMAXV) - printf ("ns32k-encore-sysv\n"); exit (0); -#else -#if defined (CMU) - printf ("ns32k-encore-mach\n"); exit (0); -#else - printf ("ns32k-encore-bsd\n"); exit (0); -#endif -#endif -#endif - -#if defined (__386BSD__) - printf ("i386-pc-bsd\n"); exit (0); -#endif - -#if defined (sequent) -#if defined (i386) - printf ("i386-sequent-dynix\n"); exit (0); -#endif -#if defined (ns32000) - printf ("ns32k-sequent-dynix\n"); exit (0); -#endif -#endif - -#if defined (_SEQUENT_) - struct utsname un; - - uname(&un); - - if (strncmp(un.version, "V2", 2) == 0) { - printf ("i386-sequent-ptx2\n"); exit (0); - } - if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ - printf ("i386-sequent-ptx1\n"); exit (0); - } - printf ("i386-sequent-ptx\n"); exit (0); - -#endif - -#if defined (vax) -# if !defined (ultrix) -# include -# if defined (BSD) -# if BSD == 43 - printf ("vax-dec-bsd4.3\n"); exit (0); -# else -# if BSD == 199006 - printf ("vax-dec-bsd4.3reno\n"); exit (0); -# else - printf ("vax-dec-bsd\n"); exit (0); -# endif -# endif -# else - printf ("vax-dec-bsd\n"); exit (0); -# endif -# else - printf ("vax-dec-ultrix\n"); exit (0); -# endif -#endif - -#if defined (alliant) && defined (i860) - printf ("i860-alliant-bsd\n"); exit (0); -#endif - - exit (1); -} -EOF - -$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && - { echo "$SYSTEM_NAME"; exit; } - -# Apollos put the system type in the environment. - -test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } - -# Convex versions that predate uname can use getsysinfo(1) - -if [ -x /usr/convex/getsysinfo ] -then - case `getsysinfo -f cpu_type` in - c1*) - echo c1-convex-bsd - exit ;; - c2*) - if getsysinfo -f scalar_acc - then echo c32-convex-bsd - else echo c2-convex-bsd - fi - exit ;; - c34*) - echo c34-convex-bsd - exit ;; - c38*) - echo c38-convex-bsd - exit ;; - c4*) - echo c4-convex-bsd - exit ;; - esac -fi - cat >&2 < header file. */ #define HAVE_DLFCN_H 1 @@ -34,8 +34,7 @@ /* Define to 1 if you have the header file. */ #define HAVE_UNISTD_H 1 -/* Define to the sub-directory in which libtool stores uninstalled libraries. - */ +/* Define to the sub-directory where libtool stores uninstalled libraries. */ #define LT_OBJDIR ".libs/" /* Define to 1 if your C compiler doesn't accept -c and -o together. */ diff --git a/coregrade/src/config.h.in b/coregrade/src/config.h.in index 26ec2cd..42afb71 100644 --- a/coregrade/src/config.h.in +++ b/coregrade/src/config.h.in @@ -1,7 +1,7 @@ -/* config.h.in. Generated from configure.in by autoheader. */ +/* config.h.in. Generated from configure.ac by autoheader. */ -/* Whether to build coregrade_api as dynamic module */ -#undef COMPILE_DL_COREGRADE_API +/* Whether to build coregrade_api_oameye as dynamic module */ +#undef COMPILE_DL_COREGRADE_API_OAMEYE /* Define to 1 if you have the header file. */ #undef HAVE_DLFCN_H @@ -33,8 +33,7 @@ /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H -/* Define to the sub-directory in which libtool stores uninstalled libraries. - */ +/* Define to the sub-directory where libtool stores uninstalled libraries. */ #undef LT_OBJDIR /* Define to 1 if your C compiler doesn't accept -c and -o together. */ diff --git a/coregrade/src/config.log b/coregrade/src/config.log index 5b10aa9..f5a891a 100644 --- a/coregrade/src/config.log +++ b/coregrade/src/config.log @@ -4,17 +4,17 @@ running configure, to aid debugging if configure makes a mistake. It was created by configure, which was generated by GNU Autoconf 2.69. Invocation command line was - $ ./configure --enable-coregrade_api + $ ./configure ## --------- ## ## Platform. ## ## --------- ## -hostname = localhost.localdomain +hostname = cregradedev uname -m = x86_64 -uname -r = 3.10.0-1062.9.1.el7.x86_64 +uname -r = 4.18.0-193.14.2.el8_2.x86_64 uname -s = Linux -uname -v = #1 SMP Fri Dec 6 15:49:49 UTC 2019 +uname -v = #1 SMP Sun Jul 26 03:54:29 UTC 2020 /usr/bin/uname -p = x86_64 /bin/uname -X = unknown @@ -39,83 +39,85 @@ PATH: /home/oameye/bin ## Core tests. ## ## ----------- ## -configure:2209: checking for grep that handles long lines and -e -configure:2267: result: /usr/bin/grep -configure:2272: checking for egrep -configure:2334: result: /usr/bin/grep -E -configure:2339: checking for a sed that does not truncate output -configure:2403: result: /usr/bin/sed -configure:2537: checking for cc -configure:2553: found /usr/bin/cc -configure:2564: result: cc -configure:2595: checking for C compiler version -configure:2604: cc --version >&5 -cc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-39) -Copyright (C) 2015 Free Software Foundation, Inc. +configure:2217: checking for grep that handles long lines and -e +configure:2275: result: /usr/bin/grep +configure:2280: checking for egrep +configure:2342: result: /usr/bin/grep -E +configure:2347: checking for a sed that does not truncate output +configure:2411: result: /usr/bin/sed +configure:2550: checking for cc +configure:2566: found /usr/bin/cc +configure:2577: result: cc +configure:2608: checking for C compiler version +configure:2617: cc --version >&5 +cc (GCC) 8.3.1 20191121 (Red Hat 8.3.1-5) +Copyright (C) 2018 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -configure:2615: $? = 0 -configure:2604: cc -v >&5 +configure:2628: $? = 0 +configure:2617: cc -v >&5 Using built-in specs. COLLECT_GCC=cc -COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper +COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/8/lto-wrapper +OFFLOAD_TARGET_NAMES=nvptx-none +OFFLOAD_TARGET_DEFAULT=1 Target: x86_64-redhat-linux -Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux +Configured with: ../configure --enable-bootstrap --enable-languages=c,c++,fortran,lto --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-shared --enable-threads=posix --enable-checking=release --enable-multilib --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-gcc-major-version-only --with-linker-hash-style=gnu --enable-plugin --enable-initfini-array --with-isl --disable-libmpx --enable-offload-targets=nvptx-none --without-cuda-driver --enable-gnu-indirect-function --enable-cet --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux Thread model: posix -gcc version 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC) -configure:2615: $? = 0 -configure:2604: cc -V >&5 +gcc version 8.3.1 20191121 (Red Hat 8.3.1-5) (GCC) +configure:2628: $? = 0 +configure:2617: cc -V >&5 cc: error: unrecognized command line option '-V' cc: fatal error: no input files compilation terminated. -configure:2615: $? = 4 -configure:2604: cc -qversion >&5 -cc: error: unrecognized command line option '-qversion' +configure:2628: $? = 1 +configure:2617: cc -qversion >&5 +cc: error: unrecognized command line option '-qversion'; did you mean '--version'? cc: fatal error: no input files compilation terminated. -configure:2615: $? = 4 -configure:2635: checking whether the C compiler works -configure:2657: cc conftest.c >&5 -configure:2661: $? = 0 -configure:2709: result: yes -configure:2712: checking for C compiler default output file name -configure:2714: result: a.out -configure:2720: checking for suffix of executables -configure:2727: cc -o conftest conftest.c >&5 -configure:2731: $? = 0 -configure:2753: result: -configure:2775: checking whether we are cross compiling -configure:2783: cc -o conftest conftest.c >&5 -configure:2787: $? = 0 -configure:2794: ./conftest -configure:2798: $? = 0 -configure:2813: result: no -configure:2818: checking for suffix of object files -configure:2840: cc -c conftest.c >&5 -configure:2844: $? = 0 -configure:2865: result: o -configure:2869: checking whether we are using the GNU C compiler -configure:2888: cc -c conftest.c >&5 -configure:2888: $? = 0 -configure:2897: result: yes -configure:2906: checking whether cc accepts -g -configure:2926: cc -c -g conftest.c >&5 -configure:2926: $? = 0 -configure:2967: result: yes -configure:2984: checking for cc option to accept ISO C89 -configure:3047: cc -c -g -O2 conftest.c >&5 -configure:3047: $? = 0 -configure:3060: result: none needed -configure:3086: checking how to run the C preprocessor -configure:3117: cc -E conftest.c -configure:3117: $? = 0 -configure:3131: cc -E conftest.c -conftest.c:9:28: fatal error: ac_nonexistent.h: No such file or directory +configure:2628: $? = 1 +configure:2648: checking whether the C compiler works +configure:2670: cc conftest.c >&5 +configure:2674: $? = 0 +configure:2722: result: yes +configure:2725: checking for C compiler default output file name +configure:2727: result: a.out +configure:2733: checking for suffix of executables +configure:2740: cc -o conftest conftest.c >&5 +configure:2744: $? = 0 +configure:2766: result: +configure:2788: checking whether we are cross compiling +configure:2796: cc -o conftest conftest.c >&5 +configure:2800: $? = 0 +configure:2807: ./conftest +configure:2811: $? = 0 +configure:2826: result: no +configure:2831: checking for suffix of object files +configure:2853: cc -c conftest.c >&5 +configure:2857: $? = 0 +configure:2878: result: o +configure:2882: checking whether we are using the GNU C compiler +configure:2901: cc -c conftest.c >&5 +configure:2901: $? = 0 +configure:2910: result: yes +configure:2919: checking whether cc accepts -g +configure:2939: cc -c -g conftest.c >&5 +configure:2939: $? = 0 +configure:2980: result: yes +configure:2997: checking for cc option to accept ISO C89 +configure:3060: cc -c -g -O2 conftest.c >&5 +configure:3060: $? = 0 +configure:3073: result: none needed +configure:3099: checking how to run the C preprocessor +configure:3130: cc -E conftest.c +configure:3130: $? = 0 +configure:3144: cc -E conftest.c +conftest.c:9:10: fatal error: ac_nonexistent.h: No such file or directory #include - ^ + ^~~~~~~~~~~~~~~~~~ compilation terminated. -configure:3131: $? = 1 +configure:3144: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" @@ -126,15 +128,15 @@ configure: failed program was: | #define PACKAGE_URL "" | /* end confdefs.h. */ | #include -configure:3156: result: cc -E -configure:3176: cc -E conftest.c -configure:3176: $? = 0 -configure:3190: cc -E conftest.c -conftest.c:9:28: fatal error: ac_nonexistent.h: No such file or directory +configure:3169: result: cc -E +configure:3189: cc -E conftest.c +configure:3189: $? = 0 +configure:3203: cc -E conftest.c +conftest.c:9:10: fatal error: ac_nonexistent.h: No such file or directory #include - ^ + ^~~~~~~~~~~~~~~~~~ compilation terminated. -configure:3190: $? = 1 +configure:3203: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" @@ -145,22 +147,22 @@ configure: failed program was: | #define PACKAGE_URL "" | /* end confdefs.h. */ | #include -configure:3221: checking for icc -configure:3230: result: no -configure:3244: checking for suncc -configure:3253: result: no -configure:3271: checking whether cc understands -c and -o together -configure:3299: cc -c conftest.c -o conftest2.o >&5 -configure:3303: $? = 0 -configure:3309: cc -c conftest.c -o conftest2.o >&5 -configure:3313: $? = 0 -configure:3368: result: yes -configure:3382: checking for system library directory -configure:3397: result: lib -configure:3404: checking if compiler supports -R -configure:3423: cc -o conftest -g -O2 conftest.c -R /usr/lib >&5 +configure:3234: checking for icc +configure:3243: result: no +configure:3257: checking for suncc +configure:3266: result: no +configure:3284: checking whether cc understands -c and -o together +configure:3312: cc -c conftest.c -o conftest2.o >&5 +configure:3316: $? = 0 +configure:3322: cc -c conftest.c -o conftest2.o >&5 +configure:3326: $? = 0 +configure:3381: result: yes +configure:3395: checking for system library directory +configure:3410: result: lib +configure:3417: checking if compiler supports -R +configure:3436: cc -o conftest -g -O2 conftest.c -R /usr/lib >&5 cc: error: unrecognized command line option '-R' -configure:3423: $? = 1 +configure:3436: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" @@ -178,84 +180,86 @@ configure: failed program was: | ; | return 0; | } -configure:3433: result: no -configure:3438: checking if compiler supports -Wl,-rpath, -configure:3457: cc -o conftest -g -O2 conftest.c -Wl,-rpath,/usr/lib >&5 -configure:3457: $? = 0 -configure:3467: result: yes -configure:3512: checking build system type -configure:3526: result: x86_64-unknown-linux-gnu -configure:3546: checking host system type -configure:3559: result: x86_64-unknown-linux-gnu -configure:3579: checking target system type -configure:3592: result: x86_64-unknown-linux-gnu -configure:3695: checking for PHP prefix -configure:3697: result: /usr -configure:3699: checking for PHP includes -configure:3701: result: -I/usr/include/php -I/usr/include/php/main -I/usr/include/php/TSRM -I/usr/include/php/Zend -I/usr/include/php/ext -I/usr/include/php/ext/date/lib -configure:3703: checking for PHP extension directory -configure:3705: result: /usr/lib64/php/modules -configure:3707: checking for PHP installed headers prefix -configure:3709: result: /usr/include/php -configure:3712: checking if debug is enabled -configure:3738: result: no -configure:3741: checking if zts is enabled -configure:3767: result: no -configure:3838: checking for re2c -configure:3868: result: no -configure:3893: WARNING: You will need re2c 0.13.4 or later if you want to regenerate PHP parsers. -configure:3907: checking for gawk -configure:3924: found /usr/bin/gawk -configure:3935: result: gawk -configure:3978: checking Whether to enable the "coregrade_api" extension -configure:4017: result: yes, shared -configure:4084: checking for g++ -configure:4100: found /usr/bin/g++ -configure:4111: result: g++ -configure:4138: checking for C++ compiler version -configure:4147: g++ --version >&5 -g++ (GCC) 4.8.5 20150623 (Red Hat 4.8.5-39) -Copyright (C) 2015 Free Software Foundation, Inc. +configure:3446: result: no +configure:3451: checking if compiler supports -Wl,-rpath, +configure:3470: cc -o conftest -g -O2 conftest.c -Wl,-rpath,/usr/lib >&5 +configure:3470: $? = 0 +configure:3480: result: yes +configure:3525: checking build system type +configure:3539: result: x86_64-unknown-linux-gnu +configure:3559: checking host system type +configure:3572: result: x86_64-unknown-linux-gnu +configure:3592: checking target system type +configure:3605: result: x86_64-unknown-linux-gnu +configure:3708: checking for PHP prefix +configure:3710: result: /usr +configure:3712: checking for PHP includes +configure:3714: result: -I/usr/include/php -I/usr/include/php/main -I/usr/include/php/TSRM -I/usr/include/php/Zend -I/usr/include/php/ext -I/usr/include/php/ext/date/lib +configure:3716: checking for PHP extension directory +configure:3718: result: /usr/lib64/php/modules +configure:3720: checking for PHP installed headers prefix +configure:3722: result: /usr/include/php +configure:3725: checking if debug is enabled +configure:3751: result: no +configure:3754: checking if zts is enabled +configure:3780: result: no +configure:3851: checking for re2c +configure:3881: result: no +configure:3906: WARNING: You will need re2c 0.13.4 or later if you want to regenerate PHP parsers. +configure:3920: checking for gawk +configure:3937: found /usr/bin/gawk +configure:3948: result: gawk +configure:3991: checking Whether to enable the "coregrade_api_oameye" extension +configure:4030: result: yes, shared +configure:4097: checking for g++ +configure:4113: found /usr/bin/g++ +configure:4124: result: g++ +configure:4151: checking for C++ compiler version +configure:4160: g++ --version >&5 +g++ (GCC) 8.3.1 20191121 (Red Hat 8.3.1-5) +Copyright (C) 2018 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -configure:4158: $? = 0 -configure:4147: g++ -v >&5 +configure:4171: $? = 0 +configure:4160: g++ -v >&5 Using built-in specs. COLLECT_GCC=g++ -COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper +COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/8/lto-wrapper +OFFLOAD_TARGET_NAMES=nvptx-none +OFFLOAD_TARGET_DEFAULT=1 Target: x86_64-redhat-linux -Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux +Configured with: ../configure --enable-bootstrap --enable-languages=c,c++,fortran,lto --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-shared --enable-threads=posix --enable-checking=release --enable-multilib --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-gcc-major-version-only --with-linker-hash-style=gnu --enable-plugin --enable-initfini-array --with-isl --disable-libmpx --enable-offload-targets=nvptx-none --without-cuda-driver --enable-gnu-indirect-function --enable-cet --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux Thread model: posix -gcc version 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC) -configure:4158: $? = 0 -configure:4147: g++ -V >&5 +gcc version 8.3.1 20191121 (Red Hat 8.3.1-5) (GCC) +configure:4171: $? = 0 +configure:4160: g++ -V >&5 g++: error: unrecognized command line option '-V' g++: fatal error: no input files compilation terminated. -configure:4158: $? = 4 -configure:4147: g++ -qversion >&5 -g++: error: unrecognized command line option '-qversion' +configure:4171: $? = 1 +configure:4160: g++ -qversion >&5 +g++: error: unrecognized command line option '-qversion'; did you mean '--version'? g++: fatal error: no input files compilation terminated. -configure:4158: $? = 4 -configure:4162: checking whether we are using the GNU C++ compiler -configure:4181: g++ -c conftest.cpp >&5 -configure:4181: $? = 0 -configure:4190: result: yes -configure:4199: checking whether g++ accepts -g -configure:4219: g++ -c -g conftest.cpp >&5 -configure:4219: $? = 0 -configure:4260: result: yes -configure:4288: checking how to run the C++ preprocessor -configure:4315: g++ -E conftest.cpp -configure:4315: $? = 0 -configure:4329: g++ -E conftest.cpp -conftest.cpp:9:28: fatal error: ac_nonexistent.h: No such file or directory +configure:4171: $? = 1 +configure:4175: checking whether we are using the GNU C++ compiler +configure:4194: g++ -c conftest.cpp >&5 +configure:4194: $? = 0 +configure:4203: result: yes +configure:4212: checking whether g++ accepts -g +configure:4232: g++ -c -g conftest.cpp >&5 +configure:4232: $? = 0 +configure:4273: result: yes +configure:4301: checking how to run the C++ preprocessor +configure:4328: g++ -E conftest.cpp +configure:4328: $? = 0 +configure:4342: g++ -E conftest.cpp +conftest.cpp:9:10: fatal error: ac_nonexistent.h: No such file or directory #include - ^ + ^~~~~~~~~~~~~~~~~~ compilation terminated. -configure:4329: $? = 1 +configure:4342: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" @@ -266,15 +270,15 @@ configure: failed program was: | #define PACKAGE_URL "" | /* end confdefs.h. */ | #include -configure:4354: result: g++ -E -configure:4374: g++ -E conftest.cpp -configure:4374: $? = 0 -configure:4388: g++ -E conftest.cpp -conftest.cpp:9:28: fatal error: ac_nonexistent.h: No such file or directory +configure:4367: result: g++ -E +configure:4387: g++ -E conftest.cpp +configure:4387: $? = 0 +configure:4401: g++ -E conftest.cpp +conftest.cpp:9:10: fatal error: ac_nonexistent.h: No such file or directory #include - ^ + ^~~~~~~~~~~~~~~~~~ compilation terminated. -configure:4388: $? = 1 +configure:4401: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" @@ -285,185 +289,185 @@ configure: failed program was: | #define PACKAGE_URL "" | /* end confdefs.h. */ | #include -configure:5112: checking how to print strings -configure:5139: result: printf -configure:5160: checking for a sed that does not truncate output -configure:5224: result: /usr/bin/sed -configure:5242: checking for fgrep -configure:5304: result: /usr/bin/grep -F -configure:5339: checking for ld used by cc -configure:5406: result: /usr/bin/ld -configure:5413: checking if the linker (/usr/bin/ld) is GNU ld -configure:5428: result: yes -configure:5440: checking for BSD- or MS-compatible name lister (nm) -configure:5489: result: /usr/bin/nm -B -configure:5619: checking the name lister (/usr/bin/nm -B) interface -configure:5626: cc -c -g -O2 conftest.c >&5 -configure:5629: /usr/bin/nm -B "conftest.o" -configure:5632: output +configure:5075: checking how to print strings +configure:5102: result: printf +configure:5123: checking for a sed that does not truncate output +configure:5187: result: /usr/bin/sed +configure:5205: checking for fgrep +configure:5267: result: /usr/bin/grep -F +configure:5302: checking for ld used by cc +configure:5369: result: /usr/bin/ld +configure:5376: checking if the linker (/usr/bin/ld) is GNU ld +configure:5391: result: yes +configure:5403: checking for BSD- or MS-compatible name lister (nm) +configure:5457: result: /usr/bin/nm -B +configure:5587: checking the name lister (/usr/bin/nm -B) interface +configure:5594: cc -c -g -O2 conftest.c >&5 +configure:5597: /usr/bin/nm -B "conftest.o" +configure:5600: output 0000000000000000 B some_variable -configure:5639: result: BSD nm -configure:5642: checking whether ln -s works -configure:5646: result: yes -configure:5654: checking the maximum length of command line arguments -configure:5784: result: 1572864 -configure:5801: checking whether the shell understands some XSI constructs -configure:5811: result: yes -configure:5815: checking whether the shell understands "+=" -configure:5821: result: yes -configure:5856: checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format -configure:5896: result: func_convert_file_noop -configure:5903: checking how to convert x86_64-unknown-linux-gnu file names to toolchain format -configure:5923: result: func_convert_file_noop -configure:5930: checking for /usr/bin/ld option to reload object files -configure:5937: result: -r -configure:6011: checking for objdump -configure:6027: found /usr/bin/objdump -configure:6038: result: objdump -configure:6070: checking how to recognize dependent libraries -configure:6272: result: pass_all -configure:6357: checking for dlltool -configure:6387: result: no -configure:6417: checking how to associate runtime and link libraries -configure:6444: result: printf %s\n -configure:6504: checking for ar -configure:6520: found /usr/bin/ar -configure:6531: result: ar -configure:6568: checking for archiver @FILE support -configure:6585: cc -c -g -O2 conftest.c >&5 -configure:6585: $? = 0 -configure:6588: ar cru libconftest.a @conftest.lst >&5 -configure:6591: $? = 0 -configure:6596: ar cru libconftest.a @conftest.lst >&5 +configure:5607: result: BSD nm +configure:5610: checking whether ln -s works +configure:5614: result: yes +configure:5622: checking the maximum length of command line arguments +configure:5753: result: 1572864 +configure:5801: checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format +configure:5841: result: func_convert_file_noop +configure:5848: checking how to convert x86_64-unknown-linux-gnu file names to toolchain format +configure:5868: result: func_convert_file_noop +configure:5875: checking for /usr/bin/ld option to reload object files +configure:5882: result: -r +configure:5956: checking for objdump +configure:5972: found /usr/bin/objdump +configure:5983: result: objdump +configure:6015: checking how to recognize dependent libraries +configure:6215: result: pass_all +configure:6300: checking for dlltool +configure:6330: result: no +configure:6360: checking how to associate runtime and link libraries +configure:6387: result: printf %s\n +configure:6447: checking for ar +configure:6463: found /usr/bin/ar +configure:6474: result: ar +configure:6511: checking for archiver @FILE support +configure:6528: cc -c -g -O2 conftest.c >&5 +configure:6528: $? = 0 +configure:6531: ar cru libconftest.a @conftest.lst >&5 +configure:6534: $? = 0 +configure:6539: ar cru libconftest.a @conftest.lst >&5 ar: conftest.o: No such file or directory -configure:6599: $? = 1 -configure:6611: result: @ -configure:6669: checking for strip -configure:6685: found /usr/bin/strip -configure:6696: result: strip -configure:6768: checking for ranlib -configure:6784: found /usr/bin/ranlib -configure:6795: result: ranlib -configure:6872: checking for gawk -configure:6899: result: gawk -configure:6939: checking command to parse /usr/bin/nm -B output from cc object -configure:7059: cc -c -g -O2 conftest.c >&5 -configure:7062: $? = 0 -configure:7066: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \> conftest.nm -configure:7069: $? = 0 -configure:7135: cc -o conftest -g -O2 -Wl,-rpath,/home/oameye/coregrade/coregrade/src/libconfig-1.3.1/.libs/ -L/home/oameye/coregrade/coregrade/src/libconfig-1.3.1/.libs/ conftest.c conftstm.o >&5 -configure:7138: $? = 0 -configure:7176: result: ok -configure:7213: checking for sysroot -configure:7243: result: no -configure:7320: cc -c -g -O2 conftest.c >&5 -configure:7323: $? = 0 -configure:7499: checking for mt -configure:7529: result: no -configure:7549: checking if : is a manifest tool -configure:7555: : '-?' -configure:7563: result: no -configure:8200: checking for ANSI C header files -configure:8220: cc -c -g -O2 conftest.c >&5 -configure:8220: $? = 0 -configure:8293: cc -o conftest -g -O2 -Wl,-rpath,/home/oameye/coregrade/coregrade/src/libconfig-1.3.1/.libs/ -L/home/oameye/coregrade/coregrade/src/libconfig-1.3.1/.libs/ conftest.c -lconfig++ -lstdc++ >&5 -configure:8293: $? = 0 -configure:8293: ./conftest -configure:8293: $? = 0 -configure:8304: result: yes -configure:8317: checking for sys/types.h -configure:8317: cc -c -g -O2 conftest.c >&5 -configure:8317: $? = 0 -configure:8317: result: yes -configure:8317: checking for sys/stat.h -configure:8317: cc -c -g -O2 conftest.c >&5 -configure:8317: $? = 0 -configure:8317: result: yes -configure:8317: checking for stdlib.h -configure:8317: cc -c -g -O2 conftest.c >&5 -configure:8317: $? = 0 -configure:8317: result: yes -configure:8317: checking for string.h -configure:8317: cc -c -g -O2 conftest.c >&5 -configure:8317: $? = 0 -configure:8317: result: yes -configure:8317: checking for memory.h -configure:8317: cc -c -g -O2 conftest.c >&5 -configure:8317: $? = 0 -configure:8317: result: yes -configure:8317: checking for strings.h -configure:8317: cc -c -g -O2 conftest.c >&5 -configure:8317: $? = 0 -configure:8317: result: yes -configure:8317: checking for inttypes.h -configure:8317: cc -c -g -O2 conftest.c >&5 -configure:8317: $? = 0 -configure:8317: result: yes -configure:8317: checking for stdint.h -configure:8317: cc -c -g -O2 conftest.c >&5 -configure:8317: $? = 0 -configure:8317: result: yes -configure:8317: checking for unistd.h -configure:8317: cc -c -g -O2 conftest.c >&5 -configure:8317: $? = 0 -configure:8317: result: yes -configure:8331: checking for dlfcn.h -configure:8331: cc -c -g -O2 conftest.c >&5 -configure:8331: $? = 0 -configure:8331: result: yes -configure:8548: checking for objdir -configure:8563: result: .libs -configure:8834: checking if cc supports -fno-rtti -fno-exceptions -configure:8852: cc -c -g -O2 -fno-rtti -fno-exceptions conftest.c >&5 -cc1: warning: command line option '-fno-rtti' is valid for C++/ObjC++ but not for C [enabled by default] -configure:8856: $? = 0 -configure:8869: result: no -configure:9196: checking for cc option to produce PIC -configure:9203: result: -fPIC -DPIC -configure:9211: checking if cc PIC flag -fPIC -DPIC works -configure:9229: cc -c -g -O2 -fPIC -DPIC -DPIC conftest.c >&5 -configure:9233: $? = 0 -configure:9246: result: yes -configure:9275: checking if cc static flag -static works -configure:9303: result: no -configure:9318: checking if cc supports -c -o file.o -configure:9339: cc -c -g -O2 -o out/conftest2.o conftest.c >&5 -configure:9343: $? = 0 -configure:9365: result: yes -configure:9373: checking if cc supports -c -o file.o -configure:9420: result: yes -configure:9453: checking whether the cc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries -configure:10606: result: yes -configure:10643: checking whether -lc should be explicitly linked in -configure:10651: cc -c -g -O2 conftest.c >&5 -configure:10654: $? = 0 -configure:10669: cc -shared -fPIC -DPIC conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /usr/bin/grep -lc \>/dev/null 2\>\&1 -configure:10672: $? = 0 -configure:10686: result: no -configure:10846: checking dynamic linker characteristics -configure:11357: cc -o conftest -g -O2 -Wl,-rpath,/home/oameye/coregrade/coregrade/src/libconfig-1.3.1/.libs/ -L/home/oameye/coregrade/coregrade/src/libconfig-1.3.1/.libs/ -Wl,-rpath -Wl,/foo conftest.c -lconfig++ -lstdc++ >&5 -configure:11357: $? = 0 -configure:11583: result: GNU/Linux ld.so -configure:11690: checking how to hardcode library paths into programs -configure:11715: result: immediate -configure:12255: checking whether stripping libraries is possible -configure:12260: result: yes -configure:12295: checking if libtool supports shared libraries -configure:12297: result: yes -configure:12300: checking whether to build shared libraries -configure:12321: result: yes -configure:12324: checking whether to build static libraries -configure:12328: result: no -configure:12351: checking how to run the C++ preprocessor -configure:12417: result: g++ -E -configure:12437: g++ -E conftest.cpp -configure:12437: $? = 0 -configure:12451: g++ -E conftest.cpp -conftest.cpp:22:28: fatal error: ac_nonexistent.h: No such file or directory +configure:6542: $? = 1 +configure:6554: result: @ +configure:6612: checking for strip +configure:6628: found /usr/bin/strip +configure:6639: result: strip +configure:6711: checking for ranlib +configure:6727: found /usr/bin/ranlib +configure:6738: result: ranlib +configure:6815: checking for gawk +configure:6842: result: gawk +configure:6882: checking command to parse /usr/bin/nm -B output from cc object +configure:7035: cc -c -g -O2 conftest.c >&5 +configure:7038: $? = 0 +configure:7042: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \> conftest.nm +configure:7045: $? = 0 +configure:7111: cc -o conftest -g -O2 conftest.c conftstm.o >&5 +configure:7114: $? = 0 +configure:7152: result: ok +configure:7199: checking for sysroot +configure:7229: result: no +configure:7236: checking for a working dd +configure:7274: result: /usr/bin/dd +configure:7278: checking how to truncate binary pipes +configure:7293: result: /usr/bin/dd bs=4096 count=1 +configure:7429: cc -c -g -O2 conftest.c >&5 +configure:7432: $? = 0 +configure:7622: checking for mt +configure:7652: result: no +configure:7672: checking if : is a manifest tool +configure:7678: : '-?' +configure:7686: result: no +configure:8358: checking for ANSI C header files +configure:8378: cc -c -g -O2 conftest.c >&5 +configure:8378: $? = 0 +configure:8451: cc -o conftest -g -O2 conftest.c -lstdc++ >&5 +configure:8451: $? = 0 +configure:8451: ./conftest +configure:8451: $? = 0 +configure:8462: result: yes +configure:8475: checking for sys/types.h +configure:8475: cc -c -g -O2 conftest.c >&5 +configure:8475: $? = 0 +configure:8475: result: yes +configure:8475: checking for sys/stat.h +configure:8475: cc -c -g -O2 conftest.c >&5 +configure:8475: $? = 0 +configure:8475: result: yes +configure:8475: checking for stdlib.h +configure:8475: cc -c -g -O2 conftest.c >&5 +configure:8475: $? = 0 +configure:8475: result: yes +configure:8475: checking for string.h +configure:8475: cc -c -g -O2 conftest.c >&5 +configure:8475: $? = 0 +configure:8475: result: yes +configure:8475: checking for memory.h +configure:8475: cc -c -g -O2 conftest.c >&5 +configure:8475: $? = 0 +configure:8475: result: yes +configure:8475: checking for strings.h +configure:8475: cc -c -g -O2 conftest.c >&5 +configure:8475: $? = 0 +configure:8475: result: yes +configure:8475: checking for inttypes.h +configure:8475: cc -c -g -O2 conftest.c >&5 +configure:8475: $? = 0 +configure:8475: result: yes +configure:8475: checking for stdint.h +configure:8475: cc -c -g -O2 conftest.c >&5 +configure:8475: $? = 0 +configure:8475: result: yes +configure:8475: checking for unistd.h +configure:8475: cc -c -g -O2 conftest.c >&5 +configure:8475: $? = 0 +configure:8475: result: yes +configure:8489: checking for dlfcn.h +configure:8489: cc -c -g -O2 conftest.c >&5 +configure:8489: $? = 0 +configure:8489: result: yes +configure:8756: checking for objdir +configure:8771: result: .libs +configure:9035: checking if cc supports -fno-rtti -fno-exceptions +configure:9053: cc -c -g -O2 -fno-rtti -fno-exceptions conftest.c >&5 +cc1: warning: command line option '-fno-rtti' is valid for C++/ObjC++ but not for C +configure:9057: $? = 0 +configure:9070: result: no +configure:9428: checking for cc option to produce PIC +configure:9435: result: -fPIC -DPIC +configure:9443: checking if cc PIC flag -fPIC -DPIC works +configure:9461: cc -c -g -O2 -fPIC -DPIC -DPIC conftest.c >&5 +configure:9465: $? = 0 +configure:9478: result: yes +configure:9507: checking if cc static flag -static works +configure:9535: result: no +configure:9550: checking if cc supports -c -o file.o +configure:9571: cc -c -g -O2 -o out/conftest2.o conftest.c >&5 +configure:9575: $? = 0 +configure:9597: result: yes +configure:9605: checking if cc supports -c -o file.o +configure:9652: result: yes +configure:9685: checking whether the cc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries +configure:10944: result: yes +configure:10981: checking whether -lc should be explicitly linked in +configure:10989: cc -c -g -O2 conftest.c >&5 +configure:10992: $? = 0 +configure:11007: cc -shared -fPIC -DPIC conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /usr/bin/grep -lc \>/dev/null 2\>\&1 +configure:11010: $? = 0 +configure:11024: result: no +configure:11184: checking dynamic linker characteristics +configure:11765: cc -o conftest -g -O2 -Wl,-rpath -Wl,/foo conftest.c -lstdc++ >&5 +configure:11765: $? = 0 +configure:12005: result: GNU/Linux ld.so +configure:12127: checking how to hardcode library paths into programs +configure:12152: result: immediate +configure:12700: checking whether stripping libraries is possible +configure:12705: result: yes +configure:12740: checking if libtool supports shared libraries +configure:12742: result: yes +configure:12745: checking whether to build shared libraries +configure:12770: result: yes +configure:12773: checking whether to build static libraries +configure:12777: result: no +configure:12800: checking how to run the C++ preprocessor +configure:12866: result: g++ -E +configure:12886: g++ -E conftest.cpp +configure:12886: $? = 0 +configure:12900: g++ -E conftest.cpp +conftest.cpp:22:10: fatal error: ac_nonexistent.h: No such file or directory #include - ^ + ^~~~~~~~~~~~~~~~~~ compilation terminated. -configure:12451: $? = 1 +configure:12900: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" @@ -472,7 +476,7 @@ configure: failed program was: | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" -| #define COMPILE_DL_COREGRADE_API 1 +| #define COMPILE_DL_COREGRADE_API_OAMEYE 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 @@ -487,35 +491,35 @@ configure: failed program was: | #define LT_OBJDIR ".libs/" | /* end confdefs.h. */ | #include -configure:12620: checking for ld used by g++ -configure:12687: result: /usr/bin/ld -m elf_x86_64 -configure:12694: checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld -configure:12709: result: yes -configure:12764: checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries -configure:13769: result: yes -configure:13805: g++ -c -g -O2 conftest.cpp >&5 -configure:13808: $? = 0 -configure:14328: checking for g++ option to produce PIC -configure:14335: result: -fPIC -DPIC -configure:14343: checking if g++ PIC flag -fPIC -DPIC works -configure:14361: g++ -c -g -O2 -fPIC -DPIC -DPIC conftest.cpp >&5 -configure:14365: $? = 0 -configure:14378: result: yes -configure:14401: checking if g++ static flag -static works -configure:14429: result: no -configure:14441: checking if g++ supports -c -o file.o -configure:14462: g++ -c -g -O2 -o out/conftest2.o conftest.cpp >&5 -configure:14466: $? = 0 -configure:14488: result: yes -configure:14493: checking if g++ supports -c -o file.o -configure:14540: result: yes -configure:14570: checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries -configure:14606: result: yes -configure:14747: checking dynamic linker characteristics -configure:15418: result: GNU/Linux ld.so -configure:15471: checking how to hardcode library paths into programs -configure:15496: result: immediate -configure:15796: creating ./config.status +configure:13062: checking for ld used by g++ +configure:13129: result: /usr/bin/ld -m elf_x86_64 +configure:13136: checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld +configure:13151: result: yes +configure:13206: checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries +configure:14279: result: yes +configure:14315: g++ -c -g -O2 conftest.cpp >&5 +configure:14318: $? = 0 +configure:14799: checking for g++ option to produce PIC +configure:14806: result: -fPIC -DPIC +configure:14814: checking if g++ PIC flag -fPIC -DPIC works +configure:14832: g++ -c -g -O2 -fPIC -DPIC -DPIC conftest.cpp >&5 +configure:14836: $? = 0 +configure:14849: result: yes +configure:14872: checking if g++ static flag -static works +configure:14900: result: no +configure:14912: checking if g++ supports -c -o file.o +configure:14933: g++ -c -g -O2 -o out/conftest2.o conftest.cpp >&5 +configure:14937: $? = 0 +configure:14959: result: yes +configure:14964: checking if g++ supports -c -o file.o +configure:15011: result: yes +configure:15041: checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries +configure:15081: result: yes +configure:15222: checking dynamic linker characteristics +configure:15970: result: GNU/Linux ld.so +configure:16035: checking how to hardcode library paths into programs +configure:16060: result: immediate +configure:16359: creating ./config.status ## ---------------------- ## ## Running config.status. ## @@ -530,11 +534,11 @@ generated by GNU Autoconf 2.69. Invocation command line was CONFIG_COMMANDS = $ ./config.status -on localhost.localdomain +on cregradedev -config.status:942: creating config.h -config.status:1032: config.h is unchanged -config.status:1046: executing libtool commands +config.status:944: creating config.h +config.status:1034: config.h is unchanged +config.status:1048: executing libtool commands ## ---------------- ## ## Cache variables. ## @@ -563,6 +567,8 @@ ac_cv_env_LDFLAGS_set= ac_cv_env_LDFLAGS_value= ac_cv_env_LIBS_set= ac_cv_env_LIBS_value= +ac_cv_env_LT_SYS_LIBRARY_PATH_set= +ac_cv_env_LT_SYS_LIBRARY_PATH_value= ac_cv_env_build_alias_set= ac_cv_env_build_alias_value= ac_cv_env_host_alias_set= @@ -586,6 +592,7 @@ ac_cv_path_EGREP='/usr/bin/grep -E' ac_cv_path_FGREP='/usr/bin/grep -F' ac_cv_path_GREP=/usr/bin/grep ac_cv_path_SED=/usr/bin/sed +ac_cv_path_lt_DD=/usr/bin/dd ac_cv_prog_AWK=gawk ac_cv_prog_CPP='cc -E' ac_cv_prog_CXXCPP='g++ -E' @@ -626,12 +633,14 @@ lt_cv_prog_gnu_ldcxx=yes lt_cv_sharedlib_from_linklib_cmd='printf %s\n' lt_cv_shlibpath_overrides_runpath=no lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\''' -lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"\2", (void *) \&\2},/p'\''' -lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \(lib[^ ]*\)$/ {"\2", (void *) \&\2},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"lib\2", (void *) \&\2},/p'\''' -lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\''' +lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"\1", (void *) \&\1},/p'\''' +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(lib.*\)$/ {"\1", (void *) \&\1},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"lib\1", (void *) \&\1},/p'\''' +lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\''' +lt_cv_sys_global_symbol_to_import= lt_cv_sys_max_cmd_len=1572864 lt_cv_to_host_file_cmd=func_convert_file_noop lt_cv_to_tool_file_cmd=func_convert_file_noop +lt_cv_truncate_bin='/usr/bin/dd bs=4096 count=1' php_cv_cc_dashr=no php_cv_cc_rpath=yes @@ -643,8 +652,8 @@ AR='ar' AWK='gawk' CC='cc' CFLAGS='-g -O2' -CONFIGURE_COMMAND=' '\''./configure'\'' '\''--enable-coregrade_api'\''' -CONFIGURE_OPTIONS=' '\''--enable-coregrade_api'\''' +CONFIGURE_COMMAND=' '\''./configure'\'' ' +CONFIGURE_OPTIONS='' CPP='cc -E' CPPFLAGS=' -DHAVE_CONFIG_H' CXX='g++' @@ -662,13 +671,14 @@ EXEEXT='' FGREP='/usr/bin/grep -F' GREP='/usr/bin/grep' LD='/usr/bin/ld -m elf_x86_64' -LDFLAGS=' -Wl,-rpath,/home/oameye/coregrade/coregrade/src/libconfig-1.3.1/.libs/ -L/home/oameye/coregrade/coregrade/src/libconfig-1.3.1/.libs/' +LDFLAGS='' LIBOBJS='' -LIBS='-lconfig++ -lstdc++ ' +LIBS='-lstdc++ ' LIBTOOL='$(SHELL) $(top_builddir)/libtool' LIPO='' LN_S='ln -s' LTLIBOBJS='' +LT_SYS_LIBRARY_PATH='' MANIFEST_TOOL=':' NM='/usr/bin/nm -B' NMEDIT='' @@ -743,7 +753,7 @@ target_vendor='unknown' #define PACKAGE_STRING "" #define PACKAGE_BUGREPORT "" #define PACKAGE_URL "" -#define COMPILE_DL_COREGRADE_API 1 +#define COMPILE_DL_COREGRADE_API_OAMEYE 1 #define STDC_HEADERS 1 #define HAVE_SYS_TYPES_H 1 #define HAVE_SYS_STAT_H 1 diff --git a/coregrade/src/config.m4 b/coregrade/src/config.m4 index a0ec6c7..20e9177 100644 --- a/coregrade/src/config.m4 +++ b/coregrade/src/config.m4 @@ -1,31 +1,33 @@ -PHP_ARG_ENABLE(coregrade_api, - [Whether to enable the "coregrade_api" extension], - [ --enable-coregrade_api Enable "coregrade_api" extension support]) +PHP_ARG_ENABLE(coregrade_api_oameye, + [Whether to enable the "coregrade_api_oameye" extension], + [ --enable-coregrade_api_oameye Enable "coregrade_api_oameye" extension support]) -if test $PHP_COREGRADE_API != "no"; then +if test $PHP_COREGRADE_API_OAMEYE != "no"; then PHP_REQUIRE_CXX() - PHP_SUBST(COREGRADE_API_SHARED_LIBADD) - PHP_ADD_LIBRARY(stdc++, 1, COREGRADE_API_SHARED_LIBADD) + PHP_SUBST(COREGRADE_API_OAMEYE_SHARED_LIBADD) + PHP_ADD_LIBRARY(stdc++, 1, COREGRADE_API_OAMEYE_SHARED_LIBADD) PHP_ADD_INCLUDE(/usr/include/pgsql) - PHP_ADD_LIBRARY_WITH_PATH(pq, /usr/lib64, COREGRADE_API_SHARED_LIBADD) - PHP_ADD_LIBRARY(curl, 1, COREGRADE_API_SHARED_LIBADD) - PHP_ADD_LIBRARY(config++, 1, COREGRADE_API_SHARED_LIBADD) - PHP_ADD_LIBRARY(gsoapssl++, 1, COREGRADE_API_SHARED_LIBADD) - PHP_ADD_LIBRARY(ssl, 1, COREGRADE_API_SHARED_LIBADD) - PHP_ADD_LIBRARY(z, 1, COREGRADE_API_SHARED_LIBADD) + PHP_ADD_LIBRARY_WITH_PATH(pq, /usr/lib64, COREGRADE_API_OAMEYE_SHARED_LIBADD) + PHP_ADD_LIBRARY(curl, 1, COREGRADE_API_OAMEYE_SHARED_LIBADD) + PHP_ADD_LIBRARY(config++, 1, COREGRADE_API_OAMEYE_SHARED_LIBADD) + PHP_ADD_LIBRARY(json-c, 1, COREGRADE_API_OAMEYE_SHARED_LIBADD) + PHP_ADD_LIBRARY(ssl, 1, COREGRADE_API_OAMEYE_SHARED_LIBADD) + PHP_ADD_LIBRARY(z, 1, COREGRADE_API_OAMEYE_SHARED_LIBADD) + PHP_ADD_LIBRARY(pcrecpp, 1, COREGRADE_API_OAMEYE_SHARED_LIBADD) + PHP_ADD_LIBRARY(gcc_s, 1, COREGRADE_API_OAMEYE_SHARED_LIBADD) - LIBCFG_DIR="`pwd`/libconfig-1.3.1" + #LIBCFG_DIR="`pwd`/libconfig-1.3.1" - PHP_ADD_LIBRARY_WITH_PATH(config++, "$LIBCFG_DIR/.libs/") + #PHP_ADD_LIBRARY_WITH_PATH(config++, "$LIBCFG_DIR/.libs/") PHP_NEW_EXTENSION( - coregrade_api, + coregrade_api_oameye, core/*.cc shared_tool/*.cc, $ext_shared, - ,-I@ext_srcdir@/libconfig-1.3.1) - PHP_DEFINE([COREGRADE_API_NS],[\"coregrade_api_`id -u -n`\"],[]) + ,-I@ext_srcdir@/libconfig-1.0.1) + PHP_DEFINE([COREGRADE_API_OAMEYE_NS],[\"coregrade_api_oameye\"],[]) PHP_DEFINE([COREGRADE_CONFIG],[\"`pwd|sed s/src//`etc/\"],[]) - PHP_DEFINE([COREGRADE_LOG],[\"`pwd|sed s/src//`logs/coregrade_api.log\"],[]) + PHP_DEFINE([COREGRADE_LOG],[\"`pwd|sed s/src//`logs/coregrade_api_oameye.log\"],[]) PHP_DEFINE([TMPL_PREFIX],[\"`pwd|sed s/src//`email/\"],[]) PHP_DEFINE([FILELOG_MAX_LEVEL],[9],[]) fi diff --git a/coregrade/src/config.nice b/coregrade/src/config.nice index 6060804..52d739d 100755 --- a/coregrade/src/config.nice +++ b/coregrade/src/config.nice @@ -3,5 +3,4 @@ # Created by configure './configure' \ -'--enable-coregrade_api' \ "$@" diff --git a/coregrade/src/config.status b/coregrade/src/config.status index 1494bd5..79ac682 100755 --- a/coregrade/src/config.status +++ b/coregrade/src/config.status @@ -421,7 +421,7 @@ $config_commands Report bugs to the package provider." -ac_cs_config="'--enable-coregrade_api'" +ac_cs_config="" ac_cs_version="\ config.status configured by ./configure, generated by GNU Autoconf 2.69, @@ -503,7 +503,7 @@ if $ac_cs_silent; then fi if $ac_cs_recheck; then - set X /bin/sh './configure' '--enable-coregrade_api' $ac_configure_extra_args --no-create --no-recursion + set X /bin/sh './configure' $ac_configure_extra_args --no-create --no-recursion shift $as_echo "running CONFIG_SHELL=/bin/sh $*" >&6 CONFIG_SHELL='/bin/sh' @@ -532,12 +532,13 @@ _ASBOX sed_quote_subst='s/\(["`$\\]\)/\\\1/g' double_quote_subst='s/\(["`\\]\)/\\\1/g' delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' -macro_version='2.4.2' -macro_revision='1.3337' +macro_version='2.4.6' +macro_revision='2.4.6' enable_shared='yes' enable_static='no' pic_mode='default' enable_fast_install='yes' +shared_archive_member_spec='' SHELL='/bin/sh' ECHO='printf %s\n' PATH_SEPARATOR=':' @@ -586,11 +587,14 @@ CFLAGS='-g -O2' compiler='g++' GCC='yes' lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\''' -lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\''' -lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"\2", (void *) \&\2},/p'\''' -lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \(lib[^ ]*\)$/ {"\2", (void *) \&\2},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"lib\2", (void *) \&\2},/p'\''' +lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\''' +lt_cv_sys_global_symbol_to_import='' +lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"\1", (void *) \&\1},/p'\''' +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(lib.*\)$/ {"\1", (void *) \&\1},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"lib\1", (void *) \&\1},/p'\''' +lt_cv_nm_interface='BSD nm' nm_file_list_spec='@' lt_sysroot='' +lt_cv_truncate_bin='/usr/bin/dd bs=4096 count=1' objdir='.libs' MAGIC_CMD='file' lt_prog_compiler_no_builtin_flag=' -fno-builtin' @@ -610,22 +614,22 @@ shrext_cmds='.so' extract_expsyms_cmds='' archive_cmds_need_lc='no' enable_shared_with_static_runtimes='no' -export_dynamic_flag_spec='${wl}--export-dynamic' -whole_archive_flag_spec='${wl}--whole-archive$convenience ${wl}--no-whole-archive' +export_dynamic_flag_spec='$wl--export-dynamic' +whole_archive_flag_spec='$wl--whole-archive$convenience $wl--no-whole-archive' compiler_needs_object='no' old_archive_from_new_cmds='' old_archive_from_expsyms_cmds='' -archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' +archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' module_cmds='' module_expsym_cmds='' with_gnu_ld='yes' allow_undefined_flag='' no_undefined_flag='' -hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' +hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' hardcode_libdir_separator='' hardcode_direct='no' hardcode_direct_absolute='no' @@ -649,16 +653,17 @@ runpath_var='LD_RUN_PATH' shlibpath_var='LD_LIBRARY_PATH' shlibpath_overrides_runpath='no' libname_spec='lib$name' -library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -soname_spec='${libname}${release}${shared_ext}$major' +library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' +soname_spec='$libname$release$shared_ext$major' install_override_mode='' postinstall_cmds='' postuninstall_cmds='' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' finish_eval='' hardcode_into_libs='yes' -sys_lib_search_path_spec='/usr/lib/gcc/x86_64-redhat-linux/4.8.5 /usr/lib64 /lib64 ' -sys_lib_dlsearch_path_spec='/lib64 /usr/lib64 /lib /usr/lib /usr/lib64//bind9-export/ /usr/lib64/dyninst /usr/lib64/mysql ' +sys_lib_search_path_spec='/usr/lib/gcc/x86_64-redhat-linux/8 /usr/lib64 /lib64 /usr/lib /lib ' +configure_time_dlsearch_path='/lib64 /usr/lib64 /lib /usr/lib /usr/lib64//bind9-export/ /usr/lib64/dyninst ' +configure_time_lt_sys_library_path='' hardcode_action='immediate' enable_dlopen='unknown' enable_dlopen_self='unknown' @@ -684,19 +689,19 @@ lt_prog_compiler_static_CXX='' lt_cv_prog_compiler_c_o_CXX='yes' archive_cmds_need_lc_CXX='no' enable_shared_with_static_runtimes_CXX='no' -export_dynamic_flag_spec_CXX='${wl}--export-dynamic' -whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive' +export_dynamic_flag_spec_CXX='$wl--export-dynamic' +whole_archive_flag_spec_CXX='$wl--whole-archive$convenience $wl--no-whole-archive' compiler_needs_object_CXX='no' old_archive_from_new_cmds_CXX='' old_archive_from_expsyms_cmds_CXX='' -archive_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' -archive_expsym_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' +archive_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' +archive_expsym_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' module_cmds_CXX='' module_expsym_cmds_CXX='' with_gnu_ld_CXX='yes' allow_undefined_flag_CXX='' no_undefined_flag_CXX='' -hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' +hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' hardcode_libdir_separator_CXX='' hardcode_direct_CXX='no' hardcode_direct_absolute_CXX='no' @@ -713,12 +718,12 @@ prelink_cmds_CXX='' postlink_cmds_CXX='' file_list_spec_CXX='' hardcode_action_CXX='immediate' -compiler_lib_search_dirs_CXX='/usr/lib/gcc/x86_64-redhat-linux/4.8.5 /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64 /lib/../lib64 /usr/lib/../lib64 /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../..' -predep_objects_CXX='/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crti.o /usr/lib/gcc/x86_64-redhat-linux/4.8.5/crtbeginS.o' -postdep_objects_CXX='/usr/lib/gcc/x86_64-redhat-linux/4.8.5/crtendS.o /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crtn.o' +compiler_lib_search_dirs_CXX='/usr/lib/gcc/x86_64-redhat-linux/8 /usr/lib/gcc/x86_64-redhat-linux/8/../../../../lib64 /lib/../lib64 /usr/lib/../lib64 /usr/lib/gcc/x86_64-redhat-linux/8/../../..' +predep_objects_CXX='/usr/lib/gcc/x86_64-redhat-linux/8/../../../../lib64/crti.o /usr/lib/gcc/x86_64-redhat-linux/8/crtbeginS.o' +postdep_objects_CXX='/usr/lib/gcc/x86_64-redhat-linux/8/crtendS.o /usr/lib/gcc/x86_64-redhat-linux/8/../../../../lib64/crtn.o' predeps_CXX='' postdeps_CXX='-lstdc++ -lm -lgcc_s -lc -lgcc_s' -compiler_lib_search_path_CXX='-L/usr/lib/gcc/x86_64-redhat-linux/4.8.5 -L/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../..' +compiler_lib_search_path_CXX='-L/usr/lib/gcc/x86_64-redhat-linux/8 -L/usr/lib/gcc/x86_64-redhat-linux/8/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/usr/lib/gcc/x86_64-redhat-linux/8/../../..' LTCC='cc' LTCFLAGS='-g -O2' @@ -733,10 +738,10 @@ _LTECHO_EOF' } # Quote evaled strings. -for var in SHELL ECHO PATH_SEPARATOR SED GREP EGREP FGREP LD NM LN_S lt_SP2NL lt_NL2SP reload_flag OBJDUMP deplibs_check_method file_magic_cmd file_magic_glob want_nocaseglob DLLTOOL sharedlib_from_linklib_cmd AR AR_FLAGS archiver_list_spec STRIP RANLIB CC CFLAGS compiler lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl lt_cv_sys_global_symbol_to_c_name_address lt_cv_sys_global_symbol_to_c_name_address_lib_prefix nm_file_list_spec lt_prog_compiler_no_builtin_flag lt_prog_compiler_pic lt_prog_compiler_wl lt_prog_compiler_static lt_cv_prog_compiler_c_o need_locks MANIFEST_TOOL DSYMUTIL NMEDIT LIPO OTOOL OTOOL64 shrext_cmds export_dynamic_flag_spec whole_archive_flag_spec compiler_needs_object with_gnu_ld allow_undefined_flag no_undefined_flag hardcode_libdir_flag_spec hardcode_libdir_separator exclude_expsyms include_expsyms file_list_spec variables_saved_for_relink libname_spec library_names_spec soname_spec install_override_mode finish_eval old_striplib striplib compiler_lib_search_dirs predep_objects postdep_objects predeps postdeps compiler_lib_search_path LD_CXX reload_flag_CXX compiler_CXX lt_prog_compiler_no_builtin_flag_CXX lt_prog_compiler_pic_CXX lt_prog_compiler_wl_CXX lt_prog_compiler_static_CXX lt_cv_prog_compiler_c_o_CXX export_dynamic_flag_spec_CXX whole_archive_flag_spec_CXX compiler_needs_object_CXX with_gnu_ld_CXX allow_undefined_flag_CXX no_undefined_flag_CXX hardcode_libdir_flag_spec_CXX hardcode_libdir_separator_CXX exclude_expsyms_CXX include_expsyms_CXX file_list_spec_CXX compiler_lib_search_dirs_CXX predep_objects_CXX postdep_objects_CXX predeps_CXX postdeps_CXX compiler_lib_search_path_CXX; do +for var in SHELL ECHO PATH_SEPARATOR SED GREP EGREP FGREP LD NM LN_S lt_SP2NL lt_NL2SP reload_flag OBJDUMP deplibs_check_method file_magic_cmd file_magic_glob want_nocaseglob DLLTOOL sharedlib_from_linklib_cmd AR AR_FLAGS archiver_list_spec STRIP RANLIB CC CFLAGS compiler lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl lt_cv_sys_global_symbol_to_import lt_cv_sys_global_symbol_to_c_name_address lt_cv_sys_global_symbol_to_c_name_address_lib_prefix lt_cv_nm_interface nm_file_list_spec lt_cv_truncate_bin lt_prog_compiler_no_builtin_flag lt_prog_compiler_pic lt_prog_compiler_wl lt_prog_compiler_static lt_cv_prog_compiler_c_o need_locks MANIFEST_TOOL DSYMUTIL NMEDIT LIPO OTOOL OTOOL64 shrext_cmds export_dynamic_flag_spec whole_archive_flag_spec compiler_needs_object with_gnu_ld allow_undefined_flag no_undefined_flag hardcode_libdir_flag_spec hardcode_libdir_separator exclude_expsyms include_expsyms file_list_spec variables_saved_for_relink libname_spec library_names_spec soname_spec install_override_mode finish_eval old_striplib striplib compiler_lib_search_dirs predep_objects postdep_objects predeps postdeps compiler_lib_search_path LD_CXX reload_flag_CXX compiler_CXX lt_prog_compiler_no_builtin_flag_CXX lt_prog_compiler_pic_CXX lt_prog_compiler_wl_CXX lt_prog_compiler_static_CXX lt_cv_prog_compiler_c_o_CXX export_dynamic_flag_spec_CXX whole_archive_flag_spec_CXX compiler_needs_object_CXX with_gnu_ld_CXX allow_undefined_flag_CXX no_undefined_flag_CXX hardcode_libdir_flag_spec_CXX hardcode_libdir_separator_CXX exclude_expsyms_CXX include_expsyms_CXX file_list_spec_CXX compiler_lib_search_dirs_CXX predep_objects_CXX postdep_objects_CXX predeps_CXX postdeps_CXX compiler_lib_search_path_CXX; do case `eval \\$ECHO \\""\\$$var"\\"` in *[\\\`\"\$]*) - eval "lt_$var=\\\"\`\$ECHO \"\$$var\" | \$SED \"\$sed_quote_subst\"\`\\\"" + eval "lt_$var=\\\"\`\$ECHO \"\$$var\" | \$SED \"\$sed_quote_subst\"\`\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_$var=\\\"\$$var\\\"" @@ -745,10 +750,10 @@ for var in SHELL ECHO PATH_SEPARATOR SED GREP EGREP FGREP LD NM LN_S lt_SP2NL lt done # Double-quote double-evaled strings. -for var in reload_cmds old_postinstall_cmds old_postuninstall_cmds old_archive_cmds extract_expsyms_cmds old_archive_from_new_cmds old_archive_from_expsyms_cmds archive_cmds archive_expsym_cmds module_cmds module_expsym_cmds export_symbols_cmds prelink_cmds postlink_cmds postinstall_cmds postuninstall_cmds finish_cmds sys_lib_search_path_spec sys_lib_dlsearch_path_spec reload_cmds_CXX old_archive_cmds_CXX old_archive_from_new_cmds_CXX old_archive_from_expsyms_cmds_CXX archive_cmds_CXX archive_expsym_cmds_CXX module_cmds_CXX module_expsym_cmds_CXX export_symbols_cmds_CXX prelink_cmds_CXX postlink_cmds_CXX; do +for var in reload_cmds old_postinstall_cmds old_postuninstall_cmds old_archive_cmds extract_expsyms_cmds old_archive_from_new_cmds old_archive_from_expsyms_cmds archive_cmds archive_expsym_cmds module_cmds module_expsym_cmds export_symbols_cmds prelink_cmds postlink_cmds postinstall_cmds postuninstall_cmds finish_cmds sys_lib_search_path_spec configure_time_dlsearch_path configure_time_lt_sys_library_path reload_cmds_CXX old_archive_cmds_CXX old_archive_from_new_cmds_CXX old_archive_from_expsyms_cmds_CXX archive_cmds_CXX archive_expsym_cmds_CXX module_cmds_CXX module_expsym_cmds_CXX export_symbols_cmds_CXX prelink_cmds_CXX postlink_cmds_CXX; do case `eval \\$ECHO \\""\\$$var"\\"` in *[\\\`\"\$]*) - eval "lt_$var=\\\"\`\$ECHO \"\$$var\" | \$SED -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" + eval "lt_$var=\\\"\`\$ECHO \"\$$var\" | \$SED -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_$var=\\\"\$$var\\\"" @@ -757,19 +762,16 @@ for var in reload_cmds old_postinstall_cmds old_postuninstall_cmds old_archive_c done ac_aux_dir='.' -xsi_shell='yes' -lt_shell_append='yes' -# See if we are running on zsh, and set the options which allow our +# See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes INIT. -if test -n "${ZSH_VERSION+set}" ; then +if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi PACKAGE='' VERSION='' - TIMESTAMP='' RM='rm -f' ofile='libtool' @@ -839,7 +841,7 @@ D["PACKAGE_VERSION"]=" \"\"" D["PACKAGE_STRING"]=" \"\"" D["PACKAGE_BUGREPORT"]=" \"\"" D["PACKAGE_URL"]=" \"\"" -D["COMPILE_DL_COREGRADE_API"]=" 1" +D["COMPILE_DL_COREGRADE_API_OAMEYE"]=" 1" D["STDC_HEADERS"]=" 1" D["HAVE_SYS_TYPES_H"]=" 1" D["HAVE_SYS_STAT_H"]=" 1" @@ -1052,55 +1054,53 @@ $as_echo "$as_me: executing $ac_file commands" >&6;} case $ac_file$ac_mode in "libtool":C) - # See if we are running on zsh, and set the options which allow our + # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes. - if test -n "${ZSH_VERSION+set}" ; then + if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi - cfgfile="${ofile}T" + cfgfile=${ofile}T trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL - -# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. -# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION +# Generated automatically by $as_me ($PACKAGE) $VERSION # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # NOTE: Changes made to this file will be lost: look at ltmain.sh. + +# Provide generalized library-building support services. +# Written by Gordon Matzigkeit, 1996 + +# Copyright (C) 2014 Free Software Foundation, Inc. +# This is free software; see the source for copying conditions. There is NO +# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +# GNU Libtool is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of of the License, or +# (at your option) any later version. # -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, -# 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. -# Written by Gordon Matzigkeit, 1996 +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program or library that is built +# using GNU Libtool, you may include this file under the same +# distribution terms that you use for the rest of that program. # -# This file is part of GNU Libtool. -# -# GNU Libtool is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License as -# published by the Free Software Foundation; either version 2 of -# the License, or (at your option) any later version. -# -# As a special exception to the GNU General Public License, -# if you distribute this file as part of a program or library that -# is built using GNU Libtool, you may include this file under the -# same distribution terms that you use for the rest of that program. -# -# GNU Libtool is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of +# GNU Libtool is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with GNU Libtool; see the file COPYING. If not, a copy -# can be downloaded from http://www.gnu.org/licenses/gpl.html, or -# obtained by writing to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# along with this program. If not, see . # The names of the tagged configurations supported by this script. -available_tags="CXX " +available_tags='CXX ' + +# Configured defaults for sys_lib_dlsearch_path munging. +: \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"} # ### BEGIN LIBTOOL CONFIG @@ -1120,6 +1120,9 @@ pic_mode=$pic_mode # Whether or not to optimize for fast installation. fast_install=$enable_fast_install +# Shared archive member basename,for filename based shared library versioning on AIX. +shared_archive_member_spec=$shared_archive_member_spec + # Shell to use when invoking shell scripts. SHELL=$lt_SHELL @@ -1237,18 +1240,27 @@ global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration. global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl +# Transform the output of nm into a list of symbols to manually relocate. +global_symbol_to_import=$lt_lt_cv_sys_global_symbol_to_import + # Transform the output of nm in a C name address pair. global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # Transform the output of nm in a C name address pair when lib prefix is needed. global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix +# The name lister interface. +nm_interface=$lt_lt_cv_nm_interface + # Specify filename containing input files for \$NM. nm_file_list_spec=$lt_nm_file_list_spec -# The root where to search for dependent libraries,and in which our libraries should be installed. +# The root where to search for dependent libraries,and where our libraries should be installed. lt_sysroot=$lt_sysroot +# Command to truncate a binary pipe. +lt_truncate_bin=$lt_lt_cv_truncate_bin + # The name of the directory that contains temporary libtool files. objdir=$objdir @@ -1339,8 +1351,11 @@ hardcode_into_libs=$hardcode_into_libs # Compile-time system search path for libraries. sys_lib_search_path_spec=$lt_sys_lib_search_path_spec -# Run-time system search path for libraries. -sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec +# Detected run-time system search path for libraries. +sys_lib_dlsearch_path_spec=$lt_configure_time_dlsearch_path + +# Explicit LT_SYS_LIBRARY_PATH set during ./configure time. +configure_time_lt_sys_library_path=$lt_configure_time_lt_sys_library_path # Whether dlopen is supported. dlopen_support=$enable_dlopen @@ -1433,13 +1448,13 @@ hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec # Whether we need a single "-rpath" flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator -# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary. hardcode_direct=$hardcode_direct -# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary and the resulting library dependency is -# "absolute",i.e impossible to change by setting \${shlibpath_var} if the +# "absolute",i.e impossible to change by setting \$shlibpath_var if the # library is relocated. hardcode_direct_absolute=$hardcode_direct_absolute @@ -1503,6 +1518,65 @@ compiler_lib_search_path=$lt_compiler_lib_search_path # ### END LIBTOOL CONFIG +_LT_EOF + + cat <<'_LT_EOF' >> "$cfgfile" + +# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE + +# func_munge_path_list VARIABLE PATH +# ----------------------------------- +# VARIABLE is name of variable containing _space_ separated list of +# directories to be munged by the contents of PATH, which is string +# having a format: +# "DIR[:DIR]:" +# string "DIR[ DIR]" will be prepended to VARIABLE +# ":DIR[:DIR]" +# string "DIR[ DIR]" will be appended to VARIABLE +# "DIRP[:DIRP]::[DIRA:]DIRA" +# string "DIRP[ DIRP]" will be prepended to VARIABLE and string +# "DIRA[ DIRA]" will be appended to VARIABLE +# "DIR[:DIR]" +# VARIABLE will be replaced by "DIR[ DIR]" +func_munge_path_list () +{ + case x$2 in + x) + ;; + *:) + eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" + ;; + x:*) + eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" + ;; + *::*) + eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" + eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" + ;; + *) + eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" + ;; + esac +} + + +# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. +func_cc_basename () +{ + for cc_temp in $*""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac + done + func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` +} + + +# ### END FUNCTIONS SHARED WITH CONFIGURE + _LT_EOF case $host_os in @@ -1511,7 +1585,7 @@ _LT_EOF # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. -if test "X${COLLECT_NAMES+set}" != Xset; then +if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi @@ -1520,7 +1594,7 @@ _LT_EOF esac -ltmain="$ac_aux_dir/ltmain.sh" +ltmain=$ac_aux_dir/ltmain.sh # We use sed instead of cat because bash on DJGPP gets confused if @@ -1530,165 +1604,6 @@ ltmain="$ac_aux_dir/ltmain.sh" sed '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) - if test x"$xsi_shell" = xyes; then - sed -e '/^func_dirname ()$/,/^} # func_dirname /c\ -func_dirname ()\ -{\ -\ case ${1} in\ -\ */*) func_dirname_result="${1%/*}${2}" ;;\ -\ * ) func_dirname_result="${3}" ;;\ -\ esac\ -} # Extended-shell func_dirname implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_basename ()$/,/^} # func_basename /c\ -func_basename ()\ -{\ -\ func_basename_result="${1##*/}"\ -} # Extended-shell func_basename implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_dirname_and_basename ()$/,/^} # func_dirname_and_basename /c\ -func_dirname_and_basename ()\ -{\ -\ case ${1} in\ -\ */*) func_dirname_result="${1%/*}${2}" ;;\ -\ * ) func_dirname_result="${3}" ;;\ -\ esac\ -\ func_basename_result="${1##*/}"\ -} # Extended-shell func_dirname_and_basename implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_stripname ()$/,/^} # func_stripname /c\ -func_stripname ()\ -{\ -\ # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are\ -\ # positional parameters, so assign one to ordinary parameter first.\ -\ func_stripname_result=${3}\ -\ func_stripname_result=${func_stripname_result#"${1}"}\ -\ func_stripname_result=${func_stripname_result%"${2}"}\ -} # Extended-shell func_stripname implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_split_long_opt ()$/,/^} # func_split_long_opt /c\ -func_split_long_opt ()\ -{\ -\ func_split_long_opt_name=${1%%=*}\ -\ func_split_long_opt_arg=${1#*=}\ -} # Extended-shell func_split_long_opt implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_split_short_opt ()$/,/^} # func_split_short_opt /c\ -func_split_short_opt ()\ -{\ -\ func_split_short_opt_arg=${1#??}\ -\ func_split_short_opt_name=${1%"$func_split_short_opt_arg"}\ -} # Extended-shell func_split_short_opt implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_lo2o ()$/,/^} # func_lo2o /c\ -func_lo2o ()\ -{\ -\ case ${1} in\ -\ *.lo) func_lo2o_result=${1%.lo}.${objext} ;;\ -\ *) func_lo2o_result=${1} ;;\ -\ esac\ -} # Extended-shell func_lo2o implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_xform ()$/,/^} # func_xform /c\ -func_xform ()\ -{\ - func_xform_result=${1%.*}.lo\ -} # Extended-shell func_xform implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_arith ()$/,/^} # func_arith /c\ -func_arith ()\ -{\ - func_arith_result=$(( $* ))\ -} # Extended-shell func_arith implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_len ()$/,/^} # func_len /c\ -func_len ()\ -{\ - func_len_result=${#1}\ -} # Extended-shell func_len implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - -fi - -if test x"$lt_shell_append" = xyes; then - sed -e '/^func_append ()$/,/^} # func_append /c\ -func_append ()\ -{\ - eval "${1}+=\\${2}"\ -} # Extended-shell func_append implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_append_quoted ()$/,/^} # func_append_quoted /c\ -func_append_quoted ()\ -{\ -\ func_quote_for_eval "${2}"\ -\ eval "${1}+=\\\\ \\$func_quote_for_eval_result"\ -} # Extended-shell func_append_quoted implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - # Save a `func_append' function call where possible by direct use of '+=' - sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") - test 0 -eq $? || _lt_function_replace_fail=: -else - # Save a `func_append' function call even when '+=' is not available - sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") - test 0 -eq $? || _lt_function_replace_fail=: -fi - -if test x"$_lt_function_replace_fail" = x":"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Unable to substitute extended shell functions in $ofile" >&5 -$as_echo "$as_me: WARNING: Unable to substitute extended shell functions in $ofile" >&2;} -fi - - mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" @@ -1775,13 +1690,13 @@ hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX # Whether we need a single "-rpath" flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX -# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary. hardcode_direct=$hardcode_direct_CXX -# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary and the resulting library dependency is -# "absolute",i.e impossible to change by setting \${shlibpath_var} if the +# "absolute",i.e impossible to change by setting \$shlibpath_var if the # library is relocated. hardcode_direct_absolute=$hardcode_direct_absolute_CXX diff --git a/coregrade/src/config.sub b/coregrade/src/config.sub index d2a9613..e8b950c 100755 --- a/coregrade/src/config.sub +++ b/coregrade/src/config.sub @@ -1,8 +1,8 @@ #! /bin/sh # Configuration validation subroutine script. -# Copyright 1992-2013 Free Software Foundation, Inc. +# Copyright 1992-2014 Free Software Foundation, Inc. -timestamp='2013-08-10' +timestamp='2014-12-03' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -25,7 +25,7 @@ timestamp='2013-08-10' # of the GNU General Public License, version 3 ("GPLv3"). -# Please send patches with a ChangeLog entry to config-patches@gnu.org. +# Please send patches to . # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. @@ -68,7 +68,7 @@ Report bugs and patches to ." version="\ GNU config.sub ($timestamp) -Copyright 1992-2013 Free Software Foundation, Inc. +Copyright 1992-2014 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -261,10 +261,11 @@ case $basic_machine in | d10v | d30v | dlx | dsp16xx \ | epiphany \ | fido | fr30 | frv \ - | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ + | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0 | hppa64 \ | hexagon \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ + | k1om \ | le32 | le64 \ | lm32 \ | m32c | m32r | m32rle | m68000 | m68k | m88k \ @@ -282,8 +283,10 @@ case $basic_machine in | mips64vr5900 | mips64vr5900el \ | mipsisa32 | mipsisa32el \ | mipsisa32r2 | mipsisa32r2el \ + | mipsisa32r6 | mipsisa32r6el \ | mipsisa64 | mipsisa64el \ | mipsisa64r2 | mipsisa64r2el \ + | mipsisa64r6 | mipsisa64r6el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipsr5900 | mipsr5900el \ @@ -295,11 +298,11 @@ case $basic_machine in | nds32 | nds32le | nds32be \ | nios | nios2 | nios2eb | nios2el \ | ns16k | ns32k \ - | open8 \ - | or1k | or32 \ + | open8 | or1k | or1knd | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle \ | pyramid \ + | riscv32 | riscv64 \ | rl78 | rx \ | score \ | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ @@ -310,6 +313,7 @@ case $basic_machine in | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ | ubicom32 \ | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ + | visium \ | we32k \ | x86 | xc16x | xstormy16 | xtensa \ | z8k | z80) @@ -324,7 +328,10 @@ case $basic_machine in c6x) basic_machine=tic6x-unknown ;; - m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | picochip) + leon|leon[3-9]) + basic_machine=sparc-$basic_machine + ;; + m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | nvptx | picochip) basic_machine=$basic_machine-unknown os=-none ;; @@ -377,10 +384,11 @@ case $basic_machine in | elxsi-* \ | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ - | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ + | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0-* | hppa64-* \ | hexagon-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* | iq2000-* \ + | k1om-* \ | le32-* | le64-* \ | lm32-* \ | m32c-* | m32r-* | m32rle-* \ @@ -400,8 +408,10 @@ case $basic_machine in | mips64vr5900-* | mips64vr5900el-* \ | mipsisa32-* | mipsisa32el-* \ | mipsisa32r2-* | mipsisa32r2el-* \ + | mipsisa32r6-* | mipsisa32r6el-* \ | mipsisa64-* | mipsisa64el-* \ | mipsisa64r2-* | mipsisa64r2el-* \ + | mipsisa64r6-* | mipsisa64r6el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipsr5900-* | mipsr5900el-* \ @@ -413,6 +423,7 @@ case $basic_machine in | nios-* | nios2-* | nios2eb-* | nios2el-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | open8-* \ + | or1k*-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ @@ -430,6 +441,7 @@ case $basic_machine in | ubicom32-* \ | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ | vax-* \ + | visium-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* \ | xstormy16-* | xtensa*-* \ @@ -767,6 +779,9 @@ case $basic_machine in basic_machine=m68k-isi os=-sysv ;; + leon-*|leon[3-9]-*) + basic_machine=sparc-`echo $basic_machine | sed 's/-.*//'` + ;; m68knommu) basic_machine=m68k-unknown os=-linux @@ -822,6 +837,10 @@ case $basic_machine in basic_machine=powerpc-unknown os=-morphos ;; + moxiebox) + basic_machine=moxie-unknown + os=-moxiebox + ;; msdos) basic_machine=i386-pc os=-msdos @@ -1006,7 +1025,7 @@ case $basic_machine in ;; ppc64) basic_machine=powerpc64-unknown ;; - ppc64-* | ppc64p7-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` + ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64le | powerpc64little | ppc64-le | powerpc64-little) basic_machine=powerpc64le-unknown @@ -1367,14 +1386,14 @@ case $os in | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \ | -linux-newlib* | -linux-musl* | -linux-uclibc* \ - | -uxpv* | -beos* | -mpeix* | -udk* \ + | -uxpv* | -beos* | -mpeix* | -udk* | -moxiebox* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ - | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*) + | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* | -tirtos*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) @@ -1392,7 +1411,7 @@ case $os in os=`echo $os | sed -e 's|nto|nto-qnx|'` ;; -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ - | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ + | -windows* | -osx | -abug | -os9* | -beos* | -haiku* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) @@ -1592,9 +1611,6 @@ case $basic_machine in mips*-*) os=-elf ;; - or1k-*) - os=-elf - ;; or32-*) os=-coff ;; diff --git a/coregrade/src/configure b/coregrade/src/configure index 781d446..3cac369 100755 --- a/coregrade/src/configure +++ b/coregrade/src/configure @@ -631,6 +631,7 @@ ac_includes_default="\ ac_subst_vars='LTLIBOBJS LIBOBJS +LT_SYS_LIBRARY_PATH OTOOL64 OTOOL LIPO @@ -726,11 +727,12 @@ ac_user_opts=' enable_option_checking with_libdir with_php_config -enable_coregrade_api +enable_coregrade_api_oameye enable_shared enable_static with_pic enable_fast_install +with_aix_soname with_gnu_ld with_sysroot enable_libtool_lock @@ -747,7 +749,8 @@ CPP CXX CXXFLAGS CCC -CXXCPP' +CXXCPP +LT_SYS_LIBRARY_PATH' # Initialize some variables set by options. @@ -1364,16 +1367,19 @@ Optional Features and Packages: --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-libdir=NAME Look for libraries in .../NAME rather than .../lib --with-php-config=PATH Path to php-config php-config - --enable-coregrade_api Enable "coregrade_api" extension support + --enable-coregrade_api_oameye Enable "coregrade_api_oameye" extension support --enable-shared[=PKGS] build shared libraries [default=yes] --enable-static[=PKGS] build static libraries [default=yes] --with-pic[=PKGS] try to use only PIC/non-PIC objects [default=use both] --enable-fast-install[=PKGS] optimize for fast installation [default=yes] + --with-aix-soname=aix|svr4|both + shared library versioning (aka "SONAME") variant to + provide on AIX, [default=aix]. --with-gnu-ld assume the C compiler uses GNU ld [default=no] - --with-sysroot=DIR Search for dependent libraries within DIR - (or the compiler's sysroot if not specified). + --with-sysroot[=DIR] Search for dependent libraries within DIR (or the + compiler's sysroot if not specified). --disable-libtool-lock avoid locking (might break parallel builds) Some influential environment variables: @@ -1388,6 +1394,8 @@ Some influential environment variables: CXX C++ compiler command CXXFLAGS C++ compiler flags CXXCPP C++ preprocessor + LT_SYS_LIBRARY_PATH + User-defined run-time library search path. Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. @@ -2429,33 +2437,38 @@ $as_echo "$ac_cv_path_SED" >&6; } EOF + clean_configure_args=$ac_configure_args for var in CFLAGS CXXFLAGS CPPFLAGS LDFLAGS EXTRA_LDFLAGS_PROGRAM LIBS CC CXX; do eval val=\$$var if test -n "$val"; then echo "$var='$val' \\" >> config.nice + if test `expr "X$ac_configure_args" : ".*${var}.*"` != 0; then + clean_configure_args=$(echo $clean_configure_args | sed -e "s#'$var=$val'##") + fi fi done echo "'$0' \\" >> config.nice - if test `expr -- $0 : "'.*"` = 0; then + if test `expr " $0" : " '.*"` = 0; then CONFIGURE_COMMAND="$CONFIGURE_COMMAND '$0'" else CONFIGURE_COMMAND="$CONFIGURE_COMMAND $0" fi - for arg in $ac_configure_args; do - if test `expr -- $arg : "'.*"` = 0; then - if test `expr -- $arg : "--.*"` = 0; then - break; - fi - echo "'$arg' \\" >> config.nice - CONFIGURE_OPTIONS="$CONFIGURE_OPTIONS '$arg'" - else - if test `expr -- $arg : "'--.*"` = 0; then - break; - fi - echo "$arg \\" >> config.nice - CONFIGURE_OPTIONS="$CONFIGURE_OPTIONS $arg" - fi + CONFIGURE_ARGS="$clean_configure_args" + while test "X$CONFIGURE_ARGS" != "X"; + do + if CURRENT_ARG=`expr "X$CONFIGURE_ARGS" : "X *\('[^']*'\)"` + then + CONFIGURE_ARGS=`expr "X$CONFIGURE_ARGS" : "X *'[^']*' \(.*\)"` + elif CURRENT_ARG=`expr "X$CONFIGURE_ARGS" : "X *\([^ ]*\)"` + then + CONFIGURE_ARGS=`expr "X$CONFIGURE_ARGS" : "X *[^ ]* \(.*\)"` + CURRENT_ARG="'$CURRENT_ARG'" + else + break + fi + $as_echo "$CURRENT_ARG \\" >>config.nice + CONFIGURE_OPTIONS="$CONFIGURE_OPTIONS $CURRENT_ARG" done echo '"$@"' >> config.nice chmod +x config.nice @@ -3764,8 +3777,8 @@ fi rm -f conftest* CPPFLAGS=$old_CPPFLAGS -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $PHP_DEBUG" >&5 -$as_echo "$PHP_DEBUG" >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $PHP_THREAD_SAFETY" >&5 +$as_echo "$PHP_THREAD_SAFETY" >&6; } ZEND_EXT_TYPE="zend_extension" @@ -3973,17 +3986,17 @@ $as_echo "no" >&6; } -php_enable_coregrade_api=no +php_enable_coregrade_api_oameye=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking Whether to enable the \"coregrade_api\" extension" >&5 -$as_echo_n "checking Whether to enable the \"coregrade_api\" extension... " >&6; } -# Check whether --enable-coregrade_api was given. -if test "${enable_coregrade_api+set}" = set; then : - enableval=$enable_coregrade_api; PHP_COREGRADE_API=$enableval +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking Whether to enable the \"coregrade_api_oameye\" extension" >&5 +$as_echo_n "checking Whether to enable the \"coregrade_api_oameye\" extension... " >&6; } +# Check whether --enable-coregrade_api_oameye was given. +if test "${enable_coregrade_api_oameye+set}" = set; then : + enableval=$enable_coregrade_api_oameye; PHP_COREGRADE_API_OAMEYE=$enableval else - PHP_COREGRADE_API=no - test "$PHP_ENABLE_ALL" && PHP_COREGRADE_API=$PHP_ENABLE_ALL + PHP_COREGRADE_API_OAMEYE=no + test "$PHP_ENABLE_ALL" && PHP_COREGRADE_API_OAMEYE=$PHP_ENABLE_ALL fi @@ -3991,12 +4004,12 @@ fi ext_output="yes, shared" ext_shared=yes -case $PHP_COREGRADE_API in +case $PHP_COREGRADE_API_OAMEYE in shared,*) - PHP_COREGRADE_API=`echo "$PHP_COREGRADE_API"|$SED 's/^shared,//'` + PHP_COREGRADE_API_OAMEYE=`echo "$PHP_COREGRADE_API_OAMEYE"|$SED 's/^shared,//'` ;; shared) - PHP_COREGRADE_API=yes + PHP_COREGRADE_API_OAMEYE=yes ;; no) ext_output=no @@ -4011,7 +4024,7 @@ esac ext_output="yes, shared" ext_shared=yes - test "$PHP_COREGRADE_API" = "no" && PHP_COREGRADE_API=yes + test "$PHP_COREGRADE_API_OAMEYE" = "no" && PHP_COREGRADE_API_OAMEYE=yes { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ext_output" >&5 @@ -4020,7 +4033,7 @@ $as_echo "$ext_output" >&6; } -if test $PHP_COREGRADE_API != "no"; then +if test $PHP_COREGRADE_API_OAMEYE != "no"; then if test -z "$php_cxx_done"; then ac_ext=cpp @@ -4427,7 +4440,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu fi - PHP_VAR_SUBST="$PHP_VAR_SUBST COREGRADE_API_SHARED_LIBADD" + PHP_VAR_SUBST="$PHP_VAR_SUBST COREGRADE_API_OAMEYE_SHARED_LIBADD" @@ -4435,7 +4448,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu c|c_r|pthread*) ;; *) if test "$ext_shared" = "yes"; then - COREGRADE_API_SHARED_LIBADD="$COREGRADE_API_SHARED_LIBADD -lstdc++" + COREGRADE_API_OAMEYE_SHARED_LIBADD="$COREGRADE_API_OAMEYE_SHARED_LIBADD -lstdc++" else @@ -4459,10 +4472,10 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu ai_p=/usr/include/pgsql else - ep_dir="`echo /usr/include/pgsql|$SED 's%/*[^/][^/]*/*$%%'`" + ep_dir=`echo /usr/include/pgsql|$SED 's%/*[^/][^/]*/*$%%'` - ep_realdir="`(cd \"$ep_dir\" && pwd)`" - ai_p="$ep_realdir/`basename \"/usr/include/pgsql\"`" + ep_realdir=`(cd "$ep_dir" && pwd)` + ai_p="$ep_realdir"/`basename "/usr/include/pgsql"` fi @@ -4486,7 +4499,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu if test "$ext_shared" = "yes"; then - COREGRADE_API_SHARED_LIBADD="-lpq $COREGRADE_API_SHARED_LIBADD" + COREGRADE_API_OAMEYE_SHARED_LIBADD="-lpq $COREGRADE_API_OAMEYE_SHARED_LIBADD" if test -n "/usr/lib64"; then if test "/usr/lib64" != "/usr/$PHP_LIBDIR" && test "/usr/lib64" != "/usr/lib"; then @@ -4495,16 +4508,16 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu ai_p=/usr/lib64 else - ep_dir="`echo /usr/lib64|$SED 's%/*[^/][^/]*/*$%%'`" + ep_dir=`echo /usr/lib64|$SED 's%/*[^/][^/]*/*$%%'` - ep_realdir="`(cd \"$ep_dir\" && pwd)`" - ai_p="$ep_realdir/`basename \"/usr/lib64\"`" + ep_realdir=`(cd "$ep_dir" && pwd)` + ai_p="$ep_realdir"/`basename "/usr/lib64"` fi if test "$ext_shared" = "yes"; then - COREGRADE_API_SHARED_LIBADD="-L$ai_p $COREGRADE_API_SHARED_LIBADD" - test -n "$ld_runpath_switch" && COREGRADE_API_SHARED_LIBADD="$ld_runpath_switch$ai_p $COREGRADE_API_SHARED_LIBADD" + COREGRADE_API_OAMEYE_SHARED_LIBADD="-L$ai_p $COREGRADE_API_OAMEYE_SHARED_LIBADD" + test -n "$ld_runpath_switch" && COREGRADE_API_OAMEYE_SHARED_LIBADD="$ld_runpath_switch$ai_p $COREGRADE_API_OAMEYE_SHARED_LIBADD" else @@ -4538,10 +4551,10 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu ai_p=/usr/lib64 else - ep_dir="`echo /usr/lib64|$SED 's%/*[^/][^/]*/*$%%'`" + ep_dir=`echo /usr/lib64|$SED 's%/*[^/][^/]*/*$%%'` - ep_realdir="`(cd \"$ep_dir\" && pwd)`" - ai_p="$ep_realdir/`basename \"/usr/lib64\"`" + ep_realdir=`(cd "$ep_dir" && pwd)` + ai_p="$ep_realdir"/`basename "/usr/lib64"` fi @@ -4586,7 +4599,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu c|c_r|pthread*) ;; *) if test "$ext_shared" = "yes"; then - COREGRADE_API_SHARED_LIBADD="$COREGRADE_API_SHARED_LIBADD -lcurl" + COREGRADE_API_OAMEYE_SHARED_LIBADD="$COREGRADE_API_OAMEYE_SHARED_LIBADD -lcurl" else @@ -4609,7 +4622,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu c|c_r|pthread*) ;; *) if test "$ext_shared" = "yes"; then - COREGRADE_API_SHARED_LIBADD="$COREGRADE_API_SHARED_LIBADD -lconfig++" + COREGRADE_API_OAMEYE_SHARED_LIBADD="$COREGRADE_API_OAMEYE_SHARED_LIBADD -lconfig++" else @@ -4628,18 +4641,18 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu - case gsoapssl++ in + case json-c in c|c_r|pthread*) ;; *) if test "$ext_shared" = "yes"; then - COREGRADE_API_SHARED_LIBADD="$COREGRADE_API_SHARED_LIBADD -lgsoapssl++" + COREGRADE_API_OAMEYE_SHARED_LIBADD="$COREGRADE_API_OAMEYE_SHARED_LIBADD -ljson-c" else - case gsoapssl++ in + case json-c in c|c_r|pthread*) ;; *) - LIBS="$LIBS -lgsoapssl++" + LIBS="$LIBS -ljson-c" ;; esac @@ -4655,7 +4668,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu c|c_r|pthread*) ;; *) if test "$ext_shared" = "yes"; then - COREGRADE_API_SHARED_LIBADD="$COREGRADE_API_SHARED_LIBADD -lssl" + COREGRADE_API_OAMEYE_SHARED_LIBADD="$COREGRADE_API_OAMEYE_SHARED_LIBADD -lssl" else @@ -4678,7 +4691,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu c|c_r|pthread*) ;; *) if test "$ext_shared" = "yes"; then - COREGRADE_API_SHARED_LIBADD="$COREGRADE_API_SHARED_LIBADD -lz" + COREGRADE_API_OAMEYE_SHARED_LIBADD="$COREGRADE_API_OAMEYE_SHARED_LIBADD -lz" else @@ -4696,72 +4709,71 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu - LIBCFG_DIR="`pwd`/libconfig-1.3.1" - - - if test -n ""$LIBCFG_DIR/.libs/""; then - - if test ""$LIBCFG_DIR/.libs/"" != "/usr/$PHP_LIBDIR" && test ""$LIBCFG_DIR/.libs/"" != "/usr/lib"; then - - if test -z ""$LIBCFG_DIR/.libs/"" || echo ""$LIBCFG_DIR/.libs/"" | grep '^/' >/dev/null ; then - ai_p="$LIBCFG_DIR/.libs/" - else - - ep_dir="`echo "$LIBCFG_DIR/.libs/"|$SED 's%/*[^/][^/]*/*$%%'`" - - ep_realdir="`(cd \"$ep_dir\" && pwd)`" - ai_p="$ep_realdir/`basename \""$LIBCFG_DIR/.libs/"\"`" - fi - - - - - - unique=`echo $ai_p|$SED 's/[^a-zA-Z0-9]/_/g'` - - cmd="echo $ac_n \"\$LIBPATH$unique$ac_c\"" - if test -n "$unique" && test "`eval $cmd`" = "" ; then - eval "LIBPATH$unique=set" - - test -n "$ld_runpath_switch" && LDFLAGS="$LDFLAGS $ld_runpath_switch$ai_p" - LDFLAGS="$LDFLAGS -L$ai_p" - PHP_RPATHS="$PHP_RPATHS $ai_p" - - fi - - - - fi - - fi - - - case config++ in + case pcrecpp in c|c_r|pthread*) ;; *) - LIBS="-lconfig++ $LIBS" + if test "$ext_shared" = "yes"; then + COREGRADE_API_OAMEYE_SHARED_LIBADD="$COREGRADE_API_OAMEYE_SHARED_LIBADD -lpcrecpp" + else + + + case pcrecpp in + c|c_r|pthread*) ;; + *) + LIBS="$LIBS -lpcrecpp" + ;; + esac + + + fi ;; esac + case gcc_s in + c|c_r|pthread*) ;; + *) + if test "$ext_shared" = "yes"; then + COREGRADE_API_OAMEYE_SHARED_LIBADD="$COREGRADE_API_OAMEYE_SHARED_LIBADD -lgcc_s" + else + + + case gcc_s in + c|c_r|pthread*) ;; + *) + LIBS="$LIBS -lgcc_s" + ;; + esac + + + fi + ;; + esac + + + + #LIBCFG_DIR="`pwd`/libconfig-1.3.1" + + #PHP_ADD_LIBRARY_WITH_PATH(config++, "$LIBCFG_DIR/.libs/") ext_builddir=. ext_srcdir=$abs_srcdir + ext_dir="" - ac_extra=`echo "-I@ext_srcdir@/libconfig-1.3.1"|$SED s#@ext_srcdir@#$ext_srcdir#g|$SED s#@ext_builddir@#$ext_builddir#g` + ac_extra=`echo "-I@ext_srcdir@/libconfig-1.0.1"|$SED s#@ext_srcdir@#$ext_srcdir#g|$SED s#@ext_builddir@#$ext_builddir#g` if test "$ext_shared" != "shared" && test "$ext_shared" != "yes" && test "" != "cli"; then - PHP_COREGRADE_API_SHARED=no + PHP_COREGRADE_API_OAMEYE_SHARED=no - case "" in + case $ext_dir in "") ac_srcdir="$abs_srcdir/"; unset ac_bdir; ac_inc="-I. -I$abs_srcdir" ;; - /*) ac_srcdir=`echo """"|cut -c 2-`"/"; ac_bdir=$ac_srcdir; ac_inc="-I$ac_bdir -I$abs_srcdir/$ac_bdir" ;; - *) ac_srcdir="$abs_srcdir/""/"; ac_bdir="""/"; ac_inc="-I$ac_bdir -I$ac_srcdir" ;; + /*) ac_srcdir=`echo "$ext_dir"|cut -c 2-`"/"; ac_bdir=$ac_srcdir; ac_inc="-I$ac_bdir -I$abs_srcdir/$ac_bdir" ;; + *) ac_srcdir="$abs_srcdir/$ext_dir/"; ac_bdir="$ext_dir/"; ac_inc="-I$ac_bdir -I$ac_srcdir" ;; esac @@ -4799,18 +4811,18 @@ EOF done - EXT_STATIC="$EXT_STATIC coregrade_api" + EXT_STATIC="$EXT_STATIC coregrade_api_oameye;$ext_dir" if test "$ext_shared" != "nocli"; then - EXT_CLI_STATIC="$EXT_CLI_STATIC coregrade_api" + EXT_CLI_STATIC="$EXT_CLI_STATIC coregrade_api_oameye;$ext_dir" fi else if test "$ext_shared" = "shared" || test "$ext_shared" = "yes"; then - PHP_COREGRADE_API_SHARED=yes + PHP_COREGRADE_API_OAMEYE_SHARED=yes - case "" in + case $ext_dir in "") ac_srcdir="$abs_srcdir/"; unset ac_bdir; ac_inc="-I. -I$abs_srcdir" ;; - /*) ac_srcdir=`echo """"|cut -c 2-`"/"; ac_bdir=$ac_srcdir; ac_inc="-I$ac_bdir -I$abs_srcdir/$ac_bdir" ;; - *) ac_srcdir="$abs_srcdir/""/"; ac_bdir="""/"; ac_inc="-I$ac_bdir -I$ac_srcdir" ;; + /*) ac_srcdir=`echo "$ext_dir"|cut -c 2-`"/"; ac_bdir=$ac_srcdir; ac_inc="-I$ac_bdir -I$abs_srcdir/$ac_bdir" ;; + *) ac_srcdir="$abs_srcdir/$ext_dir/"; ac_bdir="$ext_dir/"; ac_inc="-I$ac_bdir -I$ac_srcdir" ;; esac @@ -4832,7 +4844,7 @@ EOF ac_obj=$1 IFS=$old_IFS - shared_objects_coregrade_api="$shared_objects_coregrade_api $ac_bdir$ac_obj.lo" + shared_objects_coregrade_api_oameye="$shared_objects_coregrade_api_oameye $ac_bdir$ac_obj.lo" case $ac_src in *.c) ac_comp="$b_c_pre $ac_extra $ac_inc $b_c_meta -c $ac_srcdir$ac_src -o $ac_bdir$ac_obj.$b_lo $b_c_post" ;; @@ -4847,100 +4859,51 @@ $ac_bdir$ac_obj.lo: $ac_srcdir$ac_src EOF done - case $host_alias in - *netware*) install_modules="install-modules" + suffix=la case $host_alias in *aix*) - suffix=so - link_cmd='$(LIBTOOL) --mode=link $(CC) $(COMMON_FLAGS) $(CFLAGS_CLEAN) $(EXTRA_CFLAGS) $(LDFLAGS) -Wl,-G -o '$ext_builddir'/phpcoregrade_api.la -export-dynamic -avoid-version -prefer-pic -module -rpath $(phplibdir) $(EXTRA_LDFLAGS) $(shared_objects_coregrade_api) $(PHPCOREGRADE_API_SHARED_LIBADD) && mv -f '$ext_builddir'/.libs/phpcoregrade_api.so '$ext_builddir'/phpcoregrade_api.so' - ;; - *netware*) - suffix=nlm - link_cmd='$(LIBTOOL) --mode=link $(CC) $(COMMON_FLAGS) $(CFLAGS_CLEAN) $(EXTRA_CFLAGS) $(LDFLAGS) -o $@ -shared -export-dynamic -avoid-version -prefer-pic -module -rpath $(phplibdir) $(EXTRA_LDFLAGS) $(shared_objects_coregrade_api) -L$(top_builddir)/netware -lphp5lib $(COREGRADE_API_SHARED_LIBADD)' - ;; - *) - suffix=la - link_cmd='$(LIBTOOL) --mode=link $(CC) $(COMMON_FLAGS) $(CFLAGS_CLEAN) $(EXTRA_CFLAGS) $(LDFLAGS) -o $@ -export-dynamic -avoid-version -prefer-pic -module -rpath $(phplibdir) $(EXTRA_LDFLAGS) $(shared_objects_coregrade_api) $(PHPCOREGRADE_API_SHARED_LIBADD)' + additional_flags="-Wl,-G" ;; esac if test "x" = "xyes"; then - PHP_ZEND_EX="$PHP_ZEND_EX \$(phplibdir)/phpcoregrade_api.$suffix" + PHP_ZEND_EX="$PHP_ZEND_EX \$(phplibdir)/coregrade_api_oameye.$suffix" else - PHP_MODULES="$PHP_MODULES \$(phplibdir)/phpcoregrade_api.$suffix" + PHP_MODULES="$PHP_MODULES \$(phplibdir)/coregrade_api_oameye.$suffix" fi - PHP_VAR_SUBST="$PHP_VAR_SUBST shared_objects_coregrade_api" + PHP_VAR_SUBST="$PHP_VAR_SUBST shared_objects_coregrade_api_oameye" cat >>Makefile.objects<>Makefile.objects<>confdefs.h <<_ACEOF -#define COMPILE_DL_COREGRADE_API 1 +#define COMPILE_DL_COREGRADE_API_OAMEYE 1 _ACEOF fi fi if test "$ext_shared" != "shared" && test "$ext_shared" != "yes" && test "" = "cli"; then - PHP_COREGRADE_API_SHARED=no + PHP_COREGRADE_API_OAMEYE_SHARED=no case "$PHP_SAPI" in - cgi|embed) + cgi|embed|phpdbg) - case "" in + case $ext_dir in "") ac_srcdir="$abs_srcdir/"; unset ac_bdir; ac_inc="-I. -I$abs_srcdir" ;; - /*) ac_srcdir=`echo """"|cut -c 2-`"/"; ac_bdir=$ac_srcdir; ac_inc="-I$ac_bdir -I$abs_srcdir/$ac_bdir" ;; - *) ac_srcdir="$abs_srcdir/""/"; ac_bdir="""/"; ac_inc="-I$ac_bdir -I$ac_srcdir" ;; + /*) ac_srcdir=`echo "$ext_dir"|cut -c 2-`"/"; ac_bdir=$ac_srcdir; ac_inc="-I$ac_bdir -I$abs_srcdir/$ac_bdir" ;; + *) ac_srcdir="$abs_srcdir/$ext_dir/"; ac_bdir="$ext_dir/"; ac_inc="-I$ac_bdir -I$ac_srcdir" ;; esac @@ -4978,15 +4941,15 @@ EOF done - EXT_STATIC="$EXT_STATIC coregrade_api" + EXT_STATIC="$EXT_STATIC coregrade_api_oameye;$ext_dir" ;; *) - case "" in + case $ext_dir in "") ac_srcdir="$abs_srcdir/"; unset ac_bdir; ac_inc="-I. -I$abs_srcdir" ;; - /*) ac_srcdir=`echo """"|cut -c 2-`"/"; ac_bdir=$ac_srcdir; ac_inc="-I$ac_bdir -I$abs_srcdir/$ac_bdir" ;; - *) ac_srcdir="$abs_srcdir/""/"; ac_bdir="""/"; ac_inc="-I$ac_bdir -I$ac_srcdir" ;; + /*) ac_srcdir=`echo "$ext_dir"|cut -c 2-`"/"; ac_bdir=$ac_srcdir; ac_inc="-I$ac_bdir -I$abs_srcdir/$ac_bdir" ;; + *) ac_srcdir="$abs_srcdir/$ext_dir/"; ac_bdir="$ext_dir/"; ac_inc="-I$ac_bdir -I$ac_srcdir" ;; esac @@ -5026,7 +4989,7 @@ EOF ;; esac - EXT_CLI_STATIC="$EXT_CLI_STATIC coregrade_api" + EXT_CLI_STATIC="$EXT_CLI_STATIC coregrade_api_oameye;$ext_dir" fi @@ -5035,20 +4998,20 @@ EOF if test "$ext_builddir" = "."; then - PHP_PECL_EXTENSION=coregrade_api + PHP_PECL_EXTENSION=coregrade_api_oameye PHP_VAR_SUBST="$PHP_VAR_SUBST PHP_PECL_EXTENSION" fi - echo "#define COREGRADE_API_NS \"coregrade_api_`id -u -n`\"" > include/php_coregrade_api_ns.h + echo "#define COREGRADE_API_OAMEYE_NS \"coregrade_api_oameye\"" > include/php_coregrade_api_oameye_ns.h echo "#define COREGRADE_CONFIG \"`pwd|sed s/src//`etc/\"" > include/php_coregrade_config.h - echo "#define COREGRADE_LOG \"`pwd|sed s/src//`logs/coregrade_api.log\"" > include/php_coregrade_log.h + echo "#define COREGRADE_LOG \"`pwd|sed s/src//`logs/coregrade_api_oameye.log\"" > include/php_coregrade_log.h echo "#define TMPL_PREFIX \"`pwd|sed s/src//`email/\"" > include/php_tmpl_prefix.h @@ -5071,8 +5034,8 @@ esac -macro_version='2.4.2' -macro_revision='1.3337' +macro_version='2.4.6' +macro_revision='2.4.6' @@ -5086,7 +5049,7 @@ macro_revision='1.3337' -ltmain="$ac_aux_dir/ltmain.sh" +ltmain=$ac_aux_dir/ltmain.sh # Backslashify metacharacters that are still active within # double-quoted strings. @@ -5135,7 +5098,7 @@ func_echo_all () $ECHO "" } -case "$ECHO" in +case $ECHO in printf*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: printf" >&5 $as_echo "printf" >&6; } ;; print*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: print -r" >&5 @@ -5328,19 +5291,19 @@ test -z "$GREP" && GREP=grep # Check whether --with-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then : - withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes + withval=$with_gnu_ld; test no = "$withval" || with_gnu_ld=yes else with_gnu_ld=no fi ac_prog=ld -if test "$GCC" = yes; then +if test yes = "$GCC"; then # Check if gcc -print-prog-name=ld gives a path. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 $as_echo_n "checking for ld used by $CC... " >&6; } case $host in *-*-mingw*) - # gcc leaves a trailing carriage return which upsets mingw + # gcc leaves a trailing carriage return, which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; @@ -5354,7 +5317,7 @@ $as_echo_n "checking for ld used by $CC... " >&6; } while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done - test -z "$LD" && LD="$ac_prog" + test -z "$LD" && LD=$ac_prog ;; "") # If it fails, then pretend we aren't using GCC. @@ -5365,7 +5328,7 @@ $as_echo_n "checking for ld used by $CC... " >&6; } with_gnu_ld=unknown ;; esac -elif test "$with_gnu_ld" = yes; then +elif test yes = "$with_gnu_ld"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 $as_echo_n "checking for GNU ld... " >&6; } else @@ -5376,32 +5339,32 @@ if ${lt_cv_path_LD+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$LD"; then - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then - lt_cv_path_LD="$ac_dir/$ac_prog" + lt_cv_path_LD=$ac_dir/$ac_prog # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &5 $as_echo "$LD" >&6; } @@ -5444,33 +5407,38 @@ if ${lt_cv_path_NM+:} false; then : else if test -n "$NM"; then # Let the user override the test. - lt_cv_path_NM="$NM" + lt_cv_path_NM=$NM else - lt_nm_to_check="${ac_tool_prefix}nm" + lt_nm_to_check=${ac_tool_prefix}nm if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. - tmp_nm="$ac_dir/$lt_tmp_nm" - if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then + tmp_nm=$ac_dir/$lt_tmp_nm + if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext"; then # Check to see if the nm accepts a BSD-compat flag. - # Adding the `sed 1q' prevents false positives on HP-UX, which says: + # Adding the 'sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file - case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in - */dev/null* | *'Invalid file or object type'*) + # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty + case $build_os in + mingw*) lt_bad_file=conftest.nm/nofile ;; + *) lt_bad_file=/dev/null ;; + esac + case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in + *$lt_bad_file* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" - break + break 2 ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" - break + break 2 ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but @@ -5481,15 +5449,15 @@ else esac fi done - IFS="$lt_save_ifs" + IFS=$lt_save_ifs done : ${lt_cv_path_NM=no} fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5 $as_echo "$lt_cv_path_NM" >&6; } -if test "$lt_cv_path_NM" != "no"; then - NM="$lt_cv_path_NM" +if test no != "$lt_cv_path_NM"; then + NM=$lt_cv_path_NM else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : @@ -5595,9 +5563,9 @@ esac fi fi - case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in + case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in *COFF*) - DUMPBIN="$DUMPBIN -symbols" + DUMPBIN="$DUMPBIN -symbols -headers" ;; *) DUMPBIN=: @@ -5605,8 +5573,8 @@ fi esac fi - if test "$DUMPBIN" != ":"; then - NM="$DUMPBIN" + if test : != "$DUMPBIN"; then + NM=$DUMPBIN fi fi test -z "$NM" && NM=nm @@ -5657,7 +5625,7 @@ if ${lt_cv_sys_max_cmd_len+:} false; then : $as_echo_n "(cached) " >&6 else i=0 - teststring="ABCD" + teststring=ABCD case $build_os in msdosdjgpp*) @@ -5697,7 +5665,7 @@ else lt_cv_sys_max_cmd_len=8192; ;; - netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) + bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` @@ -5747,22 +5715,23 @@ else ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` - if test -n "$lt_cv_sys_max_cmd_len"; then + if test -n "$lt_cv_sys_max_cmd_len" && \ + test undefined != "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. - for i in 1 2 3 4 5 6 7 8 ; do + for i in 1 2 3 4 5 6 7 8; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. - while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \ + while { test X`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && - test $i != 17 # 1/2 MB should be enough + test 17 != "$i" # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring @@ -5780,7 +5749,7 @@ else fi -if test -n $lt_cv_sys_max_cmd_len ; then +if test -n "$lt_cv_sys_max_cmd_len"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len" >&5 $as_echo "$lt_cv_sys_max_cmd_len" >&6; } else @@ -5798,30 +5767,6 @@ max_cmd_len=$lt_cv_sys_max_cmd_len : ${MV="mv -f"} : ${RM="rm -f"} -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands some XSI constructs" >&5 -$as_echo_n "checking whether the shell understands some XSI constructs... " >&6; } -# Try some XSI features -xsi_shell=no -( _lt_dummy="a/b/c" - test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ - = c,a/b,b/c, \ - && eval 'test $(( 1 + 1 )) -eq 2 \ - && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ - && xsi_shell=yes -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xsi_shell" >&5 -$as_echo "$xsi_shell" >&6; } - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands \"+=\"" >&5 -$as_echo_n "checking whether the shell understands \"+=\"... " >&6; } -lt_shell_append=no -( foo=bar; set foo baz; eval "$1+=\$2" && test "$foo" = barbaz ) \ - >/dev/null 2>&1 \ - && lt_shell_append=yes -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_shell_append" >&5 -$as_echo "$lt_shell_append" >&6; } - - if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else @@ -5944,13 +5889,13 @@ esac reload_cmds='$LD$reload_flag -o $output$reload_objs' case $host_os in cygwin* | mingw* | pw32* | cegcc*) - if test "$GCC" != yes; then + if test yes != "$GCC"; then reload_cmds=false fi ;; darwin*) - if test "$GCC" = yes; then - reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs' + if test yes = "$GCC"; then + reload_cmds='$LTCC $LTCFLAGS -nostdlib $wl-r -o $output$reload_objs' else reload_cmds='$LD$reload_flag -o $output$reload_objs' fi @@ -6078,13 +6023,13 @@ lt_cv_deplibs_check_method='unknown' # Need to set the preceding variable on all platforms that support # interlibrary dependencies. # 'none' -- dependencies not supported. -# `unknown' -- same as none, but documents that we really don't know. +# 'unknown' -- same as none, but documents that we really don't know. # 'pass_all' -- all dependencies passed with no checks. # 'test_compile' -- check by making test program. # 'file_magic [[regex]]' -- check by looking for files in library path -# which responds to the $file_magic_cmd with a given extended regex. -# If you have `file' or equivalent on your system and you're not sure -# whether `pass_all' will *always* work, you probably want this one. +# that responds to the $file_magic_cmd with a given extended regex. +# If you have 'file' or equivalent on your system and you're not sure +# whether 'pass_all' will *always* work, you probably want this one. case $host_os in aix[4-9]*) @@ -6111,8 +6056,7 @@ mingw* | pw32*) # Base MSYS/MinGW do not provide the 'file' command needed by # func_win32_libid shell function, so use a weaker test based on 'objdump', # unless we find 'file', for example because we are cross-compiling. - # func_win32_libid assumes BSD nm, so disallow it if using MS dumpbin. - if ( test "$lt_cv_nm_interface" = "BSD nm" && file / ) >/dev/null 2>&1; then + if ( file / ) >/dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else @@ -6148,10 +6092,6 @@ freebsd* | dragonfly*) fi ;; -gnu*) - lt_cv_deplibs_check_method=pass_all - ;; - haiku*) lt_cv_deplibs_check_method=pass_all ;; @@ -6190,7 +6130,7 @@ irix5* | irix6* | nonstopux*) ;; # This must be glibc/ELF. -linux* | k*bsd*-gnu | kopensolaris*-gnu) +linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) lt_cv_deplibs_check_method=pass_all ;; @@ -6212,8 +6152,8 @@ newos6*) lt_cv_deplibs_check_method=pass_all ;; -openbsd*) - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then +openbsd* | bitrig*) + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' @@ -6266,6 +6206,9 @@ sysv4 | sysv4.3*) tpf*) lt_cv_deplibs_check_method=pass_all ;; +os2*) + lt_cv_deplibs_check_method=pass_all + ;; esac fi @@ -6423,8 +6366,8 @@ else case $host_os in cygwin* | mingw* | pw32* | cegcc*) - # two different shell functions defined in ltmain.sh - # decide which to use based on capabilities of $DLLTOOL + # two different shell functions defined in ltmain.sh; + # decide which one to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib @@ -6436,7 +6379,7 @@ cygwin* | mingw* | pw32* | cegcc*) ;; *) # fallback: assume linklib IS sharedlib - lt_cv_sharedlib_from_linklib_cmd="$ECHO" + lt_cv_sharedlib_from_linklib_cmd=$ECHO ;; esac @@ -6590,7 +6533,7 @@ if ac_fn_c_try_compile "$LINENO"; then : ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } - if test "$ac_status" -eq 0; then + if test 0 -eq "$ac_status"; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 @@ -6598,7 +6541,7 @@ if ac_fn_c_try_compile "$LINENO"; then : ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } - if test "$ac_status" -ne 0; then + if test 0 -ne "$ac_status"; then lt_cv_ar_at_file=@ fi fi @@ -6611,7 +6554,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ar_at_file" >&5 $as_echo "$lt_cv_ar_at_file" >&6; } -if test "x$lt_cv_ar_at_file" = xno; then +if test no = "$lt_cv_ar_at_file"; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file @@ -6828,7 +6771,7 @@ old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in - openbsd*) + bitrig* | openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" ;; *) @@ -6960,7 +6903,7 @@ cygwin* | mingw* | pw32* | cegcc*) symcode='[ABCDGISTW]' ;; hpux*) - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then symcode='[ABCDEGRST]' fi ;; @@ -6993,14 +6936,44 @@ case `$NM -V 2>&1` in symcode='[ABCDGIRSTW]' ;; esac +if test "$lt_cv_nm_interface" = "MS dumpbin"; then + # Gets list of data symbols to import. + lt_cv_sys_global_symbol_to_import="sed -n -e 's/^I .* \(.*\)$/\1/p'" + # Adjust the below global symbol transforms to fixup imported variables. + lt_cdecl_hook=" -e 's/^I .* \(.*\)$/extern __declspec(dllimport) char \1;/p'" + lt_c_name_hook=" -e 's/^I .* \(.*\)$/ {\"\1\", (void *) 0},/p'" + lt_c_name_lib_hook="\ + -e 's/^I .* \(lib.*\)$/ {\"\1\", (void *) 0},/p'\ + -e 's/^I .* \(.*\)$/ {\"lib\1\", (void *) 0},/p'" +else + # Disable hooks by default. + lt_cv_sys_global_symbol_to_import= + lt_cdecl_hook= + lt_c_name_hook= + lt_c_name_lib_hook= +fi + # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. -lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" +lt_cv_sys_global_symbol_to_cdecl="sed -n"\ +$lt_cdecl_hook\ +" -e 's/^T .* \(.*\)$/extern int \1();/p'"\ +" -e 's/^$symcode$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address -lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\)[ ]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (void *) \&\2},/p'" -lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([^ ]*\)[ ]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \(lib[^ ]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"lib\2\", (void *) \&\2},/p'" +lt_cv_sys_global_symbol_to_c_name_address="sed -n"\ +$lt_c_name_hook\ +" -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ +" -e 's/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/p'" + +# Transform an extracted symbol line into symbol name with lib prefix and +# symbol address. +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n"\ +$lt_c_name_lib_hook\ +" -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ +" -e 's/^$symcode$symcode* .* \(lib.*\)$/ {\"\1\", (void *) \&\1},/p'"\ +" -e 's/^$symcode$symcode* .* \(.*\)$/ {\"lib\1\", (void *) \&\1},/p'" # Handle CRLF in mingw tool chain opt_cr= @@ -7018,21 +6991,24 @@ for ac_symprfx in "" "_"; do # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then - # Fake it for dumpbin and say T for any non-static function - # and D for any global variable. + # Fake it for dumpbin and say T for any non-static function, + # D for any global variable and I for any imported variable. # Also find C++ and __fastcall symbols from MSVC++, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK '"\ " {last_section=section; section=\$ 3};"\ " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ +" /^ *Symbol name *: /{split(\$ 0,sn,\":\"); si=substr(sn[2],2)};"\ +" /^ *Type *: code/{print \"T\",si,substr(si,length(prfx))};"\ +" /^ *Type *: data/{print \"I\",si,substr(si,length(prfx))};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ -" {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ -" {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ -" s[1]~/^[@?]/{print s[1], s[1]; next};"\ -" s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ +" {f=\"D\"}; \$ 0~/\(\).*\|/{f=\"T\"};"\ +" {split(\$ 0,a,/\||\r/); split(a[2],s)};"\ +" s[1]~/^[@?]/{print f,s[1],s[1]; next};"\ +" s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx" else lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" @@ -7080,11 +7056,11 @@ _LT_EOF if $GREP ' nm_test_func$' "$nlist" >/dev/null; then cat <<_LT_EOF > conftest.$ac_ext /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ -#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) -/* DATA imports from DLLs on WIN32 con't be const, because runtime +#if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE +/* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST -#elif defined(__osf__) +#elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else @@ -7110,7 +7086,7 @@ lt__PROGRAM__LTX_preloaded_symbols[] = { { "@PROGRAM@", (void *) 0 }, _LT_EOF - $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext + $SED "s/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; @@ -7130,13 +7106,13 @@ _LT_EOF mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS - LIBS="conftstm.$ac_objext" + LIBS=conftstm.$ac_objext CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && test -s conftest${ac_exeext}; then + test $ac_status = 0; } && test -s conftest$ac_exeext; then pipe_works=yes fi LIBS=$lt_globsym_save_LIBS @@ -7157,7 +7133,7 @@ _LT_EOF rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. - if test "$pipe_works" = yes; then + if test yes = "$pipe_works"; then break else lt_cv_sys_global_symbol_pipe= @@ -7199,6 +7175,16 @@ fi + + + + + + + + + + @@ -7222,9 +7208,9 @@ fi lt_sysroot= -case ${with_sysroot} in #( +case $with_sysroot in #( yes) - if test "$GCC" = yes; then + if test yes = "$GCC"; then lt_sysroot=`$CC --print-sysroot 2>/dev/null` fi ;; #( @@ -7234,8 +7220,8 @@ case ${with_sysroot} in #( no|'') ;; #( *) - { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${with_sysroot}" >&5 -$as_echo "${with_sysroot}" >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_sysroot" >&5 +$as_echo "$with_sysroot" >&6; } as_fn_error $? "The sysroot must be an absolute path." "$LINENO" 5 ;; esac @@ -7247,18 +7233,99 @@ $as_echo "${lt_sysroot:-no}" >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a working dd" >&5 +$as_echo_n "checking for a working dd... " >&6; } +if ${ac_cv_path_lt_DD+:} false; then : + $as_echo_n "(cached) " >&6 +else + printf 0123456789abcdef0123456789abcdef >conftest.i +cat conftest.i conftest.i >conftest2.i +: ${lt_DD:=$DD} +if test -z "$lt_DD"; then + ac_path_lt_DD_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in dd; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_lt_DD="$as_dir/$ac_prog$ac_exec_ext" + as_fn_executable_p "$ac_path_lt_DD" || continue +if "$ac_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then + cmp -s conftest.i conftest.out \ + && ac_cv_path_lt_DD="$ac_path_lt_DD" ac_path_lt_DD_found=: +fi + $ac_path_lt_DD_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_lt_DD"; then + : + fi +else + ac_cv_path_lt_DD=$lt_DD +fi + +rm -f conftest.i conftest2.i conftest.out +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_lt_DD" >&5 +$as_echo "$ac_cv_path_lt_DD" >&6; } + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to truncate binary pipes" >&5 +$as_echo_n "checking how to truncate binary pipes... " >&6; } +if ${lt_cv_truncate_bin+:} false; then : + $as_echo_n "(cached) " >&6 +else + printf 0123456789abcdef0123456789abcdef >conftest.i +cat conftest.i conftest.i >conftest2.i +lt_cv_truncate_bin= +if "$ac_cv_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then + cmp -s conftest.i conftest.out \ + && lt_cv_truncate_bin="$ac_cv_path_lt_DD bs=4096 count=1" +fi +rm -f conftest.i conftest2.i conftest.out +test -z "$lt_cv_truncate_bin" && lt_cv_truncate_bin="$SED -e 4q" +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_truncate_bin" >&5 +$as_echo "$lt_cv_truncate_bin" >&6; } + + + + + + + +# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. +func_cc_basename () +{ + for cc_temp in $*""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac + done + func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` +} + # Check whether --enable-libtool-lock was given. if test "${enable_libtool_lock+set}" = set; then : enableval=$enable_libtool_lock; fi -test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes +test no = "$enable_libtool_lock" || enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) - # Find out which ABI we are using. + # Find out what ABI is being produced by ac_compile, and set mode + # options accordingly. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 @@ -7267,24 +7334,25 @@ ia64-*-hpux*) test $ac_status = 0; }; then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) - HPUX_IA64_MODE="32" + HPUX_IA64_MODE=32 ;; *ELF-64*) - HPUX_IA64_MODE="64" + HPUX_IA64_MODE=64 ;; esac fi rm -rf conftest* ;; *-*-irix6*) - # Find out which ABI we are using. + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. echo '#line '$LINENO' "configure"' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then - if test "$lt_cv_prog_gnu_ld" = yes; then + if test yes = "$lt_cv_prog_gnu_ld"; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" @@ -7313,9 +7381,50 @@ ia64-*-hpux*) rm -rf conftest* ;; -x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ +mips64*-*linux*) + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. + echo '#line '$LINENO' "configure"' > conftest.$ac_ext + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + emul=elf + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + emul="${emul}32" + ;; + *64-bit*) + emul="${emul}64" + ;; + esac + case `/usr/bin/file conftest.$ac_objext` in + *MSB*) + emul="${emul}btsmip" + ;; + *LSB*) + emul="${emul}ltsmip" + ;; + esac + case `/usr/bin/file conftest.$ac_objext` in + *N32*) + emul="${emul}n32" + ;; + esac + LD="${LD-ld} -m $emul" + fi + rm -rf conftest* + ;; + +x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) - # Find out which ABI we are using. + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. Note that the listed cases only cover the + # situations where additional linker options are needed (such as when + # doing 32-bit compilation for a host where ld defaults to 64-bit, or + # vice versa); the common cases where no linker options are needed do + # not appear in the list. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 @@ -7329,9 +7438,19 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) - LD="${LD-ld} -m elf_i386" + case `/usr/bin/file conftest.o` in + *x86-64*) + LD="${LD-ld} -m elf32_x86_64" + ;; + *) + LD="${LD-ld} -m elf_i386" + ;; + esac ;; - ppc64-*linux*|powerpc64-*linux*) + powerpc64le-*linux*) + LD="${LD-ld} -m elf32lppclinux" + ;; + powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) @@ -7350,7 +7469,10 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; - ppc*-*linux*|powerpc*-*linux*) + powerpcle-*linux*) + LD="${LD-ld} -m elf64lppc" + ;; + powerpc-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) @@ -7368,7 +7490,7 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. - SAVE_CFLAGS="$CFLAGS" + SAVE_CFLAGS=$CFLAGS CFLAGS="$CFLAGS -belf" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5 $as_echo_n "checking whether the C compiler needs -belf... " >&6; } @@ -7408,13 +7530,14 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf" >&5 $as_echo "$lt_cv_cc_needs_belf" >&6; } - if test x"$lt_cv_cc_needs_belf" != x"yes"; then + if test yes != "$lt_cv_cc_needs_belf"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf - CFLAGS="$SAVE_CFLAGS" + CFLAGS=$SAVE_CFLAGS fi ;; *-*solaris*) - # Find out which ABI we are using. + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 @@ -7426,7 +7549,7 @@ $as_echo "$lt_cv_cc_needs_belf" >&6; } case $lt_cv_prog_gnu_ld in yes*) case $host in - i?86-*-solaris*) + i?86-*-solaris*|x86_64-*-solaris*) LD="${LD-ld} -m elf_x86_64" ;; sparc*-*-solaris*) @@ -7435,7 +7558,7 @@ $as_echo "$lt_cv_cc_needs_belf" >&6; } esac # GNU ld 2.21 introduced _sol2 emulations. Use them if available. if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then - LD="${LD-ld}_sol2" + LD=${LD-ld}_sol2 fi ;; *) @@ -7451,7 +7574,7 @@ $as_echo "$lt_cv_cc_needs_belf" >&6; } ;; esac -need_locks="$enable_libtool_lock" +need_locks=$enable_libtool_lock if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}mt", so it can be a program name with args. @@ -7562,7 +7685,7 @@ else fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_mainfest_tool" >&5 $as_echo "$lt_cv_path_mainfest_tool" >&6; } -if test "x$lt_cv_path_mainfest_tool" != xyes; then +if test yes != "$lt_cv_path_mainfest_tool"; then MANIFEST_TOOL=: fi @@ -8065,7 +8188,7 @@ if ${lt_cv_apple_cc_single_mod+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_apple_cc_single_mod=no - if test -z "${LT_MULTI_MODULE}"; then + if test -z "$LT_MULTI_MODULE"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the @@ -8083,7 +8206,7 @@ else cat conftest.err >&5 # Otherwise, if the output was created with a 0 exit code from # the compiler, it worked. - elif test -f libconftest.dylib && test $_lt_result -eq 0; then + elif test -f libconftest.dylib && test 0 = "$_lt_result"; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&5 @@ -8122,7 +8245,7 @@ else fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext - LDFLAGS="$save_LDFLAGS" + LDFLAGS=$save_LDFLAGS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5 @@ -8151,7 +8274,7 @@ _LT_EOF _lt_result=$? if test -s conftest.err && $GREP force_load conftest.err; then cat conftest.err >&5 - elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then + elif test -f conftest && test 0 = "$_lt_result" && $GREP forced_load conftest >/dev/null 2>&1; then lt_cv_ld_force_load=yes else cat conftest.err >&5 @@ -8164,32 +8287,32 @@ fi $as_echo "$lt_cv_ld_force_load" >&6; } case $host_os in rhapsody* | darwin1.[012]) - _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; + _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;; darwin1.*) - _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; darwin*) # darwin 5.x on # if running on 10.5 or later, the deployment target defaults # to the OS version, if on x86, and 10.4, the deployment # target defaults to 10.4. Don't you love it? case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*86*-darwin8*|10.0,*-darwin[91]*) - _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; - 10.[012]*) - _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; + 10.[012][,.]*) + _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; 10.*) - _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; esac ;; esac - if test "$lt_cv_apple_cc_single_mod" = "yes"; then + if test yes = "$lt_cv_apple_cc_single_mod"; then _lt_dar_single_mod='$single_module' fi - if test "$lt_cv_ld_exported_symbols_list" = "yes"; then - _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' + if test yes = "$lt_cv_ld_exported_symbols_list"; then + _lt_dar_export_syms=' $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym' else - _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' + _lt_dar_export_syms='~$NMEDIT -s $output_objdir/$libname-symbols.expsym $lib' fi - if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then + if test : != "$DSYMUTIL" && test no = "$lt_cv_ld_force_load"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= @@ -8197,6 +8320,41 @@ $as_echo "$lt_cv_ld_force_load" >&6; } ;; esac +# func_munge_path_list VARIABLE PATH +# ----------------------------------- +# VARIABLE is name of variable containing _space_ separated list of +# directories to be munged by the contents of PATH, which is string +# having a format: +# "DIR[:DIR]:" +# string "DIR[ DIR]" will be prepended to VARIABLE +# ":DIR[:DIR]" +# string "DIR[ DIR]" will be appended to VARIABLE +# "DIRP[:DIRP]::[DIRA:]DIRA" +# string "DIRP[ DIRP]" will be prepended to VARIABLE and string +# "DIRA[ DIRA]" will be appended to VARIABLE +# "DIR[:DIR]" +# VARIABLE will be replaced by "DIR[ DIR]" +func_munge_path_list () +{ + case x$2 in + x) + ;; + *:) + eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" + ;; + x:*) + eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" + ;; + *::*) + eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" + eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" + ;; + *) + eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" + ;; + esac +} + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } if ${ac_cv_header_stdc+:} false; then : @@ -8344,9 +8502,9 @@ done func_stripname_cnf () { - case ${2} in - .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; - *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; + case $2 in + .*) func_stripname_result=`$ECHO "$3" | $SED "s%^$1%%; s%\\\\$2\$%%"`;; + *) func_stripname_result=`$ECHO "$3" | $SED "s%^$1%%; s%$2\$%%"`;; esac } # func_stripname_cnf @@ -8373,14 +8531,14 @@ if test "${enable_shared+set}" = set; then : *) enable_shared=no # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_shared=yes fi done - IFS="$lt_save_ifs" + IFS=$lt_save_ifs ;; esac else @@ -8404,14 +8562,14 @@ if test "${enable_static+set}" = set; then : *) enable_static=no # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_static=yes fi done - IFS="$lt_save_ifs" + IFS=$lt_save_ifs ;; esac else @@ -8435,14 +8593,14 @@ if test "${with_pic+set}" = set; then : *) pic_mode=default # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for lt_pkg in $withval; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs if test "X$lt_pkg" = "X$lt_p"; then pic_mode=yes fi done - IFS="$lt_save_ifs" + IFS=$lt_save_ifs ;; esac else @@ -8450,8 +8608,6 @@ else fi -test -z "$pic_mode" && pic_mode=default - @@ -8467,14 +8623,14 @@ if test "${enable_fast_install+set}" = set; then : *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done - IFS="$lt_save_ifs" + IFS=$lt_save_ifs ;; esac else @@ -8488,11 +8644,63 @@ fi + shared_archive_member_spec= +case $host,$enable_shared in +power*-*-aix[5-9]*,yes) + { $as_echo "$as_me:${as_lineno-$LINENO}: checking which variant of shared library versioning to provide" >&5 +$as_echo_n "checking which variant of shared library versioning to provide... " >&6; } + +# Check whether --with-aix-soname was given. +if test "${with_aix_soname+set}" = set; then : + withval=$with_aix_soname; case $withval in + aix|svr4|both) + ;; + *) + as_fn_error $? "Unknown argument to --with-aix-soname" "$LINENO" 5 + ;; + esac + lt_cv_with_aix_soname=$with_aix_soname +else + if ${lt_cv_with_aix_soname+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_with_aix_soname=aix +fi + + with_aix_soname=$lt_cv_with_aix_soname +fi + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_aix_soname" >&5 +$as_echo "$with_aix_soname" >&6; } + if test aix != "$with_aix_soname"; then + # For the AIX way of multilib, we name the shared archive member + # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o', + # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File. + # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag, + # the AIX toolchain works better with OBJECT_MODE set (default 32). + if test 64 = "${OBJECT_MODE-32}"; then + shared_archive_member_spec=shr_64 + else + shared_archive_member_spec=shr + fi + fi + ;; +*) + with_aix_soname=aix + ;; +esac + + + + + + + # This can be used to rebuild libtool when needed -LIBTOOL_DEPS="$ltmain" +LIBTOOL_DEPS=$ltmain # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' @@ -8541,7 +8749,7 @@ test -z "$LN_S" && LN_S="ln -s" -if test -n "${ZSH_VERSION+set}" ; then +if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi @@ -8580,7 +8788,7 @@ aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. - if test "X${COLLECT_NAMES+set}" != Xset; then + if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi @@ -8591,14 +8799,14 @@ esac ofile=libtool can_build_shared=yes -# All known linkers require a `.a' archive for static linking (except MSVC, +# All known linkers require a '.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a -with_gnu_ld="$lt_cv_prog_gnu_ld" +with_gnu_ld=$lt_cv_prog_gnu_ld -old_CC="$CC" -old_CFLAGS="$CFLAGS" +old_CC=$CC +old_CFLAGS=$CFLAGS # Set sane defaults for various variables test -z "$CC" && CC=cc @@ -8607,15 +8815,8 @@ test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$LD" && LD=ld test -z "$ac_objext" && ac_objext=o -for cc_temp in $compiler""; do - case $cc_temp in - compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; - distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; - \-*) ;; - *) break;; - esac -done -cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` +func_cc_basename $compiler +cc_basename=$func_cc_basename_result # Only perform the check for file, if the check method requires it @@ -8630,22 +8831,22 @@ if ${lt_cv_path_MAGIC_CMD+:} false; then : else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) - lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. + lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path. ;; *) - lt_save_MAGIC_CMD="$MAGIC_CMD" - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + lt_save_MAGIC_CMD=$MAGIC_CMD + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. - if test -f $ac_dir/${ac_tool_prefix}file; then - lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file" + if test -f "$ac_dir/${ac_tool_prefix}file"; then + lt_cv_path_MAGIC_CMD=$ac_dir/"${ac_tool_prefix}file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` - MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + MAGIC_CMD=$lt_cv_path_MAGIC_CMD if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : @@ -8668,13 +8869,13 @@ _LT_EOF break fi done - IFS="$lt_save_ifs" - MAGIC_CMD="$lt_save_MAGIC_CMD" + IFS=$lt_save_ifs + MAGIC_CMD=$lt_save_MAGIC_CMD ;; esac fi -MAGIC_CMD="$lt_cv_path_MAGIC_CMD" +MAGIC_CMD=$lt_cv_path_MAGIC_CMD if test -n "$MAGIC_CMD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 $as_echo "$MAGIC_CMD" >&6; } @@ -8696,22 +8897,22 @@ if ${lt_cv_path_MAGIC_CMD+:} false; then : else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) - lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. + lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path. ;; *) - lt_save_MAGIC_CMD="$MAGIC_CMD" - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + lt_save_MAGIC_CMD=$MAGIC_CMD + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. - if test -f $ac_dir/file; then - lt_cv_path_MAGIC_CMD="$ac_dir/file" + if test -f "$ac_dir/file"; then + lt_cv_path_MAGIC_CMD=$ac_dir/"file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` - MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + MAGIC_CMD=$lt_cv_path_MAGIC_CMD if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : @@ -8734,13 +8935,13 @@ _LT_EOF break fi done - IFS="$lt_save_ifs" - MAGIC_CMD="$lt_save_MAGIC_CMD" + IFS=$lt_save_ifs + MAGIC_CMD=$lt_save_MAGIC_CMD ;; esac fi -MAGIC_CMD="$lt_cv_path_MAGIC_CMD" +MAGIC_CMD=$lt_cv_path_MAGIC_CMD if test -n "$MAGIC_CMD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 $as_echo "$MAGIC_CMD" >&6; } @@ -8761,7 +8962,7 @@ esac # Use C for the default configuration in the libtool script -lt_save_CC="$CC" +lt_save_CC=$CC ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' @@ -8823,7 +9024,7 @@ if test -n "$compiler"; then lt_prog_compiler_no_builtin_flag= -if test "$GCC" = yes; then +if test yes = "$GCC"; then case $cc_basename in nvcc*) lt_prog_compiler_no_builtin_flag=' -Xcompiler -fno-builtin' ;; @@ -8839,7 +9040,7 @@ else lt_cv_prog_compiler_rtti_exceptions=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext - lt_compiler_flag="-fno-rtti -fno-exceptions" + lt_compiler_flag="-fno-rtti -fno-exceptions" ## exclude from sc_useless_quotes_in_assignment # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins @@ -8869,7 +9070,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 $as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; } -if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then +if test yes = "$lt_cv_prog_compiler_rtti_exceptions"; then lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" else : @@ -8887,17 +9088,18 @@ lt_prog_compiler_pic= lt_prog_compiler_static= - if test "$GCC" = yes; then + if test yes = "$GCC"; then lt_prog_compiler_wl='-Wl,' lt_prog_compiler_static='-static' case $host_os in aix*) # All AIX code is PIC. - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' fi + lt_prog_compiler_pic='-fPIC' ;; amigaos*) @@ -8908,8 +9110,8 @@ lt_prog_compiler_static= ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but - # adding the `-m68020' flag to GCC prevents building anything better, - # like `-m68040'. + # adding the '-m68020' flag to GCC prevents building anything better, + # like '-m68040'. lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' ;; esac @@ -8925,6 +9127,11 @@ lt_prog_compiler_static= # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries lt_prog_compiler_pic='-DDLL_EXPORT' + case $host_os in + os2*) + lt_prog_compiler_static='$wl-static' + ;; + esac ;; darwin* | rhapsody*) @@ -8995,7 +9202,7 @@ lt_prog_compiler_static= case $host_os in aix*) lt_prog_compiler_wl='-Wl,' - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' else @@ -9003,10 +9210,29 @@ lt_prog_compiler_static= fi ;; + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + lt_prog_compiler_pic='-fno-common' + case $cc_basename in + nagfor*) + # NAG Fortran compiler + lt_prog_compiler_wl='-Wl,-Wl,,' + lt_prog_compiler_pic='-PIC' + lt_prog_compiler_static='-Bstatic' + ;; + esac + ;; + mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic='-DDLL_EXPORT' + case $host_os in + os2*) + lt_prog_compiler_static='$wl-static' + ;; + esac ;; hpux9* | hpux10* | hpux11*) @@ -9022,7 +9248,7 @@ lt_prog_compiler_static= ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? - lt_prog_compiler_static='${wl}-a ${wl}archive' + lt_prog_compiler_static='$wl-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) @@ -9031,9 +9257,9 @@ lt_prog_compiler_static= lt_prog_compiler_static='-non_shared' ;; - linux* | k*bsd*-gnu | kopensolaris*-gnu) + linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in - # old Intel for x86_64 which still supported -KPIC. + # old Intel for x86_64, which still supported -KPIC. ecc*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' @@ -9058,6 +9284,12 @@ lt_prog_compiler_static= lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; + tcc*) + # Fabrice Bellard et al's Tiny C Compiler + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fPIC' + lt_prog_compiler_static='-static' + ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) @@ -9155,7 +9387,7 @@ lt_prog_compiler_static= ;; sysv4*MP*) - if test -d /usr/nec ;then + if test -d /usr/nec; then lt_prog_compiler_pic='-Kconform_pic' lt_prog_compiler_static='-Bstatic' fi @@ -9184,7 +9416,7 @@ lt_prog_compiler_static= fi case $host_os in - # For platforms which do not support PIC, -DPIC is meaningless: + # For platforms that do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic= ;; @@ -9216,7 +9448,7 @@ else lt_cv_prog_compiler_pic_works=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext - lt_compiler_flag="$lt_prog_compiler_pic -DPIC" + lt_compiler_flag="$lt_prog_compiler_pic -DPIC" ## exclude from sc_useless_quotes_in_assignment # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins @@ -9246,7 +9478,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5 $as_echo "$lt_cv_prog_compiler_pic_works" >&6; } -if test x"$lt_cv_prog_compiler_pic_works" = xyes; then +if test yes = "$lt_cv_prog_compiler_pic_works"; then case $lt_prog_compiler_pic in "" | " "*) ;; *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; @@ -9278,7 +9510,7 @@ if ${lt_cv_prog_compiler_static_works+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_static_works=no - save_LDFLAGS="$LDFLAGS" + save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS $lt_tmp_static_flag" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then @@ -9297,13 +9529,13 @@ else fi fi $RM -r conftest* - LDFLAGS="$save_LDFLAGS" + LDFLAGS=$save_LDFLAGS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5 $as_echo "$lt_cv_prog_compiler_static_works" >&6; } -if test x"$lt_cv_prog_compiler_static_works" = xyes; then +if test yes = "$lt_cv_prog_compiler_static_works"; then : else lt_prog_compiler_static= @@ -9423,8 +9655,8 @@ $as_echo "$lt_cv_prog_compiler_c_o" >&6; } -hard_links="nottested" -if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then +hard_links=nottested +if test no = "$lt_cv_prog_compiler_c_o" && test no != "$need_locks"; then # do not overwrite the value of need_locks provided by the user { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 $as_echo_n "checking if we can lock with hard links... " >&6; } @@ -9436,9 +9668,9 @@ $as_echo_n "checking if we can lock with hard links... " >&6; } ln conftest.a conftest.b 2>/dev/null && hard_links=no { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 $as_echo "$hard_links" >&6; } - if test "$hard_links" = no; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 -$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} + if test no = "$hard_links"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&5 +$as_echo "$as_me: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&2;} need_locks=warn fi else @@ -9481,9 +9713,9 @@ $as_echo_n "checking whether the $compiler linker ($LD) supports shared librarie # included in the symbol list include_expsyms= # exclude_expsyms can be an extended regexp of symbols to exclude - # it will be wrapped by ` (' and `)$', so one must not match beginning or - # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', - # as well as any symbol that contains `d'. + # it will be wrapped by ' (' and ')$', so one must not match beginning or + # end of line. Example: 'a|bc|.*d.*' will exclude the symbols 'a' and 'bc', + # as well as any symbol that contains 'd'. exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if @@ -9498,7 +9730,7 @@ $as_echo_n "checking whether the $compiler linker ($LD) supports shared librarie # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. - if test "$GCC" != yes; then + if test yes != "$GCC"; then with_gnu_ld=no fi ;; @@ -9506,7 +9738,7 @@ $as_echo_n "checking whether the $compiler linker ($LD) supports shared librarie # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; - openbsd*) + openbsd* | bitrig*) with_gnu_ld=no ;; esac @@ -9516,7 +9748,7 @@ $as_echo_n "checking whether the $compiler linker ($LD) supports shared librarie # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no - if test "$with_gnu_ld" = yes; then + if test yes = "$with_gnu_ld"; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility @@ -9538,24 +9770,24 @@ $as_echo_n "checking whether the $compiler linker ($LD) supports shared librarie esac fi - if test "$lt_use_gnu_ld_interface" = yes; then + if test yes = "$lt_use_gnu_ld_interface"; then # If archive_cmds runs LD, not CC, wlarc should be empty - wlarc='${wl}' + wlarc='$wl' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - export_dynamic_flag_spec='${wl}--export-dynamic' + hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' + export_dynamic_flag_spec='$wl--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then - whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + whole_archive_flag_spec=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else whole_archive_flag_spec= fi supports_anon_versioning=no - case `$LD -v 2>&1` in + case `$LD -v | $SED -e 's/(^)\+)\s\+//' 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... @@ -9568,7 +9800,7 @@ $as_echo_n "checking whether the $compiler linker ($LD) supports shared librarie case $host_os in aix[3-9]*) # On AIX/PPC, the GNU linker is very broken - if test "$host_cpu" != ia64; then + if test ia64 != "$host_cpu"; then ld_shlibs=no cat <<_LT_EOF 1>&2 @@ -9587,7 +9819,7 @@ _LT_EOF case $host_cpu in powerpc) # see comment about AmigaOS4 .so support - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) @@ -9603,7 +9835,7 @@ _LT_EOF allow_undefined_flag=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME - archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else ld_shlibs=no fi @@ -9613,7 +9845,7 @@ _LT_EOF # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec='-L$libdir' - export_dynamic_flag_spec='${wl}--export-all-symbols' + export_dynamic_flag_spec='$wl--export-all-symbols' allow_undefined_flag=unsupported always_export_symbols=no enable_shared_with_static_runtimes=yes @@ -9621,61 +9853,89 @@ _LT_EOF exclude_expsyms='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - # If the export-symbols file already is a .def file (1st line - # is EXPORTS), use it as is; otherwise, prepend... - archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - cp $export_symbols $output_objdir/$soname.def; - else - echo EXPORTS > $output_objdir/$soname.def; - cat $export_symbols >> $output_objdir/$soname.def; - fi~ - $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file, use it as + # is; otherwise, prepend EXPORTS... + archive_expsym_cmds='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs=no fi ;; haiku*) - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' link_all_deplibs=yes ;; + os2*) + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + allow_undefined_flag=unsupported + shrext_cmds=.dll + archive_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + archive_expsym_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + prefix_cmds="$SED"~ + if test EXPORTS = "`$SED 1q $export_symbols`"; then + prefix_cmds="$prefix_cmds -e 1d"; + fi~ + prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ + cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' + enable_shared_with_static_runtimes=yes + ;; + interix[3-9]*) hardcode_direct=no hardcode_shlibpath_var=no - hardcode_libdir_flag_spec='${wl}-rpath,$libdir' - export_dynamic_flag_spec='${wl}-E' + hardcode_libdir_flag_spec='$wl-rpath,$libdir' + export_dynamic_flag_spec='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. - archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + archive_expsym_cmds='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no - if test "$host_os" = linux-dietlibc; then + if test linux-dietlibc = "$host_os"; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ - && test "$tmp_diet" = no + && test no = "$tmp_diet" then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler - whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers - whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; @@ -9686,42 +9946,47 @@ _LT_EOF lf95*) # Lahey Fortran 8.1 whole_archive_flag_spec= tmp_sharedflag='--shared' ;; + nagfor*) # NAGFOR 5.3 + tmp_sharedflag='-Wl,-shared' ;; xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 - whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' compiler_needs_object=yes ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 - whole_archive_flag_spec='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + whole_archive_flag_spec='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' compiler_needs_object=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac - archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - if test "x$supports_anon_versioning" = xyes; then + if test yes = "$supports_anon_versioning"; then archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi case $cc_basename in + tcc*) + export_dynamic_flag_spec='-rdynamic' + ;; xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive' - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' - if test "x$supports_anon_versioning" = xyes; then + if test yes = "$supports_anon_versioning"; then archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac @@ -9735,8 +10000,8 @@ _LT_EOF archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else - archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' fi ;; @@ -9754,8 +10019,8 @@ _LT_EOF _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi @@ -9767,7 +10032,7 @@ _LT_EOF ld_shlibs=no cat <<_LT_EOF 1>&2 -*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not +*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 cannot *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify @@ -9782,9 +10047,9 @@ _LT_EOF # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi @@ -9801,15 +10066,15 @@ _LT_EOF *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac - if test "$ld_shlibs" = no; then + if test no = "$ld_shlibs"; then runpath_var= hardcode_libdir_flag_spec= export_dynamic_flag_spec= @@ -9825,7 +10090,7 @@ _LT_EOF # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L=yes - if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then + if test yes = "$GCC" && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct=unsupported @@ -9833,34 +10098,57 @@ _LT_EOF ;; aix[4-9]*) - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' - no_entry_flag="" + no_entry_flag= else # If we're using GNU nm, then we don't want the "-C" option. - # -C means demangle to AIX nm, but means don't demangle with GNU nm - # Also, AIX nm treats weak defined symbols like other global - # defined symbols, whereas GNU nm marks them as "W". + # -C means demangle to GNU nm, but means don't demangle to AIX nm. + # Without the "-l" option, or with the "-B" option, AIX nm treats + # weak defined symbols like other global defined symbols, whereas + # GNU nm marks them as "W". + # While the 'weak' keyword is ignored in the Export File, we need + # it in the Import File for the 'aix-soname' feature, so we have + # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then - export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else - export_symbols_cmds='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + export_symbols_cmds='`func_echo_all $NM | $SED -e '\''s/B\([^B]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && (substr(\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we - # need to do runtime linking. + # have runtime linking enabled, and use it for executables. + # For shared libraries, we enable/disable runtime linking + # depending on the kind of the shared library created - + # when "with_aix_soname,aix_use_runtimelinking" is: + # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables + # "aix,yes" lib.so shared, rtl:yes, for executables + # lib.a static archive + # "both,no" lib.so.V(shr.o) shared, rtl:yes + # lib.a(lib.so.V) shared, rtl:no, for executables + # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a(lib.so.V) shared, rtl:no + # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a static archive case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do - if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then + if (test x-brtl = "x$ld_flag" || test x-Wl,-brtl = "x$ld_flag"); then aix_use_runtimelinking=yes break fi done + if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then + # With aix-soname=svr4, we create the lib.so.V shared archives only, + # so we don't have lib.a shared libs to link our executables. + # We have to force runtime linking in this case. + aix_use_runtimelinking=yes + LDFLAGS="$LDFLAGS -Wl,-brtl" + fi ;; esac @@ -9879,13 +10167,21 @@ _LT_EOF hardcode_direct_absolute=yes hardcode_libdir_separator=':' link_all_deplibs=yes - file_list_spec='${wl}-f,' + file_list_spec='$wl-f,' + case $with_aix_soname,$aix_use_runtimelinking in + aix,*) ;; # traditional, no import file + svr4,* | *,yes) # use import file + # The Import File defines what to hardcode. + hardcode_direct=no + hardcode_direct_absolute=no + ;; + esac - if test "$GCC" = yes; then + if test yes = "$GCC"; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ - collect2name=`${CC} -print-prog-name=collect2` + collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then @@ -9904,35 +10200,42 @@ _LT_EOF ;; esac shared_flag='-shared' - if test "$aix_use_runtimelinking" = yes; then - shared_flag="$shared_flag "'${wl}-G' + if test yes = "$aix_use_runtimelinking"; then + shared_flag="$shared_flag "'$wl-G' fi + # Need to ensure runtime linking is disabled for the traditional + # shared library, or the linker may eventually find shared libraries + # /with/ Import File - we do not want to mix them. + shared_flag_aix='-shared' + shared_flag_svr4='-shared $wl-G' else # not using gcc - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else - if test "$aix_use_runtimelinking" = yes; then - shared_flag='${wl}-G' + if test yes = "$aix_use_runtimelinking"; then + shared_flag='$wl-G' else - shared_flag='${wl}-bM:SRE' + shared_flag='$wl-bM:SRE' fi + shared_flag_aix='$wl-bM:SRE' + shared_flag_svr4='$wl-G' fi fi - export_dynamic_flag_spec='${wl}-bexpall' + export_dynamic_flag_spec='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols=yes - if test "$aix_use_runtimelinking" = yes; then + if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag='-berok' # Determine the default libpath from the value encoded in an # empty executable. - if test "${lt_cv_aix_libpath+set}" = set; then + if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath_+:} false; then : @@ -9967,7 +10270,7 @@ fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath_"; then - lt_cv_aix_libpath_="/usr/lib:/lib" + lt_cv_aix_libpath_=/usr/lib:/lib fi fi @@ -9975,17 +10278,17 @@ fi aix_libpath=$lt_cv_aix_libpath_ fi - hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" - archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + hardcode_libdir_flag_spec='$wl-blibpath:$libdir:'"$aix_libpath" + archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else - if test "$host_cpu" = ia64; then - hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' + if test ia64 = "$host_cpu"; then + hardcode_libdir_flag_spec='$wl-R $libdir:/usr/lib:/lib' allow_undefined_flag="-z nodefs" - archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. - if test "${lt_cv_aix_libpath+set}" = set; then + if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath_+:} false; then : @@ -10020,7 +10323,7 @@ fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath_"; then - lt_cv_aix_libpath_="/usr/lib:/lib" + lt_cv_aix_libpath_=/usr/lib:/lib fi fi @@ -10028,21 +10331,33 @@ fi aix_libpath=$lt_cv_aix_libpath_ fi - hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" + hardcode_libdir_flag_spec='$wl-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. - no_undefined_flag=' ${wl}-bernotok' - allow_undefined_flag=' ${wl}-berok' - if test "$with_gnu_ld" = yes; then + no_undefined_flag=' $wl-bernotok' + allow_undefined_flag=' $wl-berok' + if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. - whole_archive_flag_spec='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + whole_archive_flag_spec='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec='$convenience' fi archive_cmds_need_lc=yes - # This is similar to how AIX traditionally builds its shared libraries. - archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + archive_expsym_cmds='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' + # -brtl affects multiple linker settings, -berok does not and is overridden later + compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([, ]\\)%-berok\\1%g"`' + if test svr4 != "$with_aix_soname"; then + # This is similar to how AIX traditionally builds its shared libraries. + archive_expsym_cmds="$archive_expsym_cmds"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' + fi + if test aix != "$with_aix_soname"; then + archive_expsym_cmds="$archive_expsym_cmds"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' + else + # used by -dlpreopen to get the symbols + archive_expsym_cmds="$archive_expsym_cmds"'~$MV $output_objdir/$realname.d/$soname $output_objdir' + fi + archive_expsym_cmds="$archive_expsym_cmds"'~$RM -r $output_objdir/$realname.d' fi fi ;; @@ -10051,7 +10366,7 @@ fi case $host_cpu in powerpc) # see comment about AmigaOS4 .so support - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) @@ -10081,16 +10396,17 @@ fi # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. - shrext_cmds=".dll" + shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. - archive_cmds='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' - archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; - else - sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; - fi~ - $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ - linknames=' + archive_cmds='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' + archive_expsym_cmds='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then + cp "$export_symbols" "$output_objdir/$soname.def"; + echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; + else + $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, )='true' enable_shared_with_static_runtimes=yes @@ -10099,18 +10415,18 @@ fi # Don't use ranlib old_postinstall_cmds='chmod 644 $oldlib' postlink_cmds='lt_outputfile="@OUTPUT@"~ - lt_tool_outputfile="@TOOL_OUTPUT@"~ - case $lt_outputfile in - *.exe|*.EXE) ;; - *) - lt_outputfile="$lt_outputfile.exe" - lt_tool_outputfile="$lt_tool_outputfile.exe" - ;; - esac~ - if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then - $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; - $RM "$lt_outputfile.manifest"; - fi' + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile=$lt_outputfile.exe + lt_tool_outputfile=$lt_tool_outputfile.exe + ;; + esac~ + if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' ;; *) # Assume MSVC wrapper @@ -10119,7 +10435,7 @@ fi # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. - shrext_cmds=".dll" + shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. archive_cmds='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. @@ -10138,24 +10454,24 @@ fi hardcode_direct=no hardcode_automatic=yes hardcode_shlibpath_var=unsupported - if test "$lt_cv_ld_force_load" = "yes"; then - whole_archive_flag_spec='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' + if test yes = "$lt_cv_ld_force_load"; then + whole_archive_flag_spec='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' else whole_archive_flag_spec='' fi link_all_deplibs=yes - allow_undefined_flag="$_lt_dar_allow_undefined" + allow_undefined_flag=$_lt_dar_allow_undefined case $cc_basename in - ifort*) _lt_dar_can_shared=yes ;; + ifort*|nagfor*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac - if test "$_lt_dar_can_shared" = "yes"; then + if test yes = "$_lt_dar_can_shared"; then output_verbose_link_cmd=func_echo_all - archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" - module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" - archive_expsym_cmds="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" - module_expsym_cmds="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" + archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil" + module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil" + archive_expsym_cmds="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil" + module_expsym_cmds="sed -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil" else ld_shlibs=no @@ -10197,33 +10513,33 @@ fi ;; hpux9*) - if test "$GCC" = yes; then - archive_cmds='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + if test yes = "$GCC"; then + archive_cmds='$RM $output_objdir/$soname~$CC -shared $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else - archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' fi - hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + hardcode_libdir_flag_spec='$wl+b $wl$libdir' hardcode_libdir_separator=: hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes - export_dynamic_flag_spec='${wl}-E' + export_dynamic_flag_spec='$wl-E' ;; hpux10*) - if test "$GCC" = yes && test "$with_gnu_ld" = no; then - archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + if test yes,no = "$GCC,$with_gnu_ld"; then + archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi - if test "$with_gnu_ld" = no; then - hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + if test no = "$with_gnu_ld"; then + hardcode_libdir_flag_spec='$wl+b $wl$libdir' hardcode_libdir_separator=: hardcode_direct=yes hardcode_direct_absolute=yes - export_dynamic_flag_spec='${wl}-E' + export_dynamic_flag_spec='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes @@ -10231,25 +10547,25 @@ fi ;; hpux11*) - if test "$GCC" = yes && test "$with_gnu_ld" = no; then + if test yes,no = "$GCC,$with_gnu_ld"; then case $host_cpu in hppa*64*) - archive_cmds='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_cmds='$CC -shared $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) - archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) - archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) - archive_cmds='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_cmds='$CC -b $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) - archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + archive_cmds='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) @@ -10261,7 +10577,7 @@ if ${lt_cv_prog_compiler__b+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler__b=no - save_LDFLAGS="$LDFLAGS" + save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS -b" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then @@ -10280,14 +10596,14 @@ else fi fi $RM -r conftest* - LDFLAGS="$save_LDFLAGS" + LDFLAGS=$save_LDFLAGS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler__b" >&5 $as_echo "$lt_cv_prog_compiler__b" >&6; } -if test x"$lt_cv_prog_compiler__b" = xyes; then - archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' +if test yes = "$lt_cv_prog_compiler__b"; then + archive_cmds='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi @@ -10295,8 +10611,8 @@ fi ;; esac fi - if test "$with_gnu_ld" = no; then - hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + if test no = "$with_gnu_ld"; then + hardcode_libdir_flag_spec='$wl+b $wl$libdir' hardcode_libdir_separator=: case $host_cpu in @@ -10307,7 +10623,7 @@ fi *) hardcode_direct=yes hardcode_direct_absolute=yes - export_dynamic_flag_spec='${wl}-E' + export_dynamic_flag_spec='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. @@ -10318,8 +10634,8 @@ fi ;; irix5* | irix6* | nonstopux*) - if test "$GCC" = yes; then - archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + if test yes = "$GCC"; then + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. @@ -10329,8 +10645,8 @@ $as_echo_n "checking whether the $host_os linker accepts -exported_symbol... " > if ${lt_cv_irix_exported_symbol+:} false; then : $as_echo_n "(cached) " >&6 else - save_LDFLAGS="$LDFLAGS" - LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" + save_LDFLAGS=$LDFLAGS + LDFLAGS="$LDFLAGS -shared $wl-exported_symbol ${wl}foo $wl-update_registry $wl/dev/null" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int foo (void) { return 0; } @@ -10342,24 +10658,34 @@ else fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext - LDFLAGS="$save_LDFLAGS" + LDFLAGS=$save_LDFLAGS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_irix_exported_symbol" >&5 $as_echo "$lt_cv_irix_exported_symbol" >&6; } - if test "$lt_cv_irix_exported_symbol" = yes; then - archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' + if test yes = "$lt_cv_irix_exported_symbol"; then + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib' fi else - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' - archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' + archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib' fi archive_cmds_need_lc='no' - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' hardcode_libdir_separator=: inherit_rpath=yes link_all_deplibs=yes ;; + linux*) + case $cc_basename in + tcc*) + # Fabrice Bellard et al's Tiny C Compiler + ld_shlibs=yes + archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out @@ -10374,7 +10700,7 @@ $as_echo "$lt_cv_irix_exported_symbol" >&6; } newsos6) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' hardcode_libdir_separator=: hardcode_shlibpath_var=no ;; @@ -10382,27 +10708,19 @@ $as_echo "$lt_cv_irix_exported_symbol" >&6; } *nto* | *qnx*) ;; - openbsd*) + openbsd* | bitrig*) if test -f /usr/libexec/ld.so; then hardcode_direct=yes hardcode_shlibpath_var=no hardcode_direct_absolute=yes - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' - hardcode_libdir_flag_spec='${wl}-rpath,$libdir' - export_dynamic_flag_spec='${wl}-E' + archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols' + hardcode_libdir_flag_spec='$wl-rpath,$libdir' + export_dynamic_flag_spec='$wl-E' else - case $host_os in - openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) - archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' - hardcode_libdir_flag_spec='-R$libdir' - ;; - *) - archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - hardcode_libdir_flag_spec='${wl}-rpath,$libdir' - ;; - esac + archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + hardcode_libdir_flag_spec='$wl-rpath,$libdir' fi else ld_shlibs=no @@ -10413,33 +10731,53 @@ $as_echo "$lt_cv_irix_exported_symbol" >&6; } hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes allow_undefined_flag=unsupported - archive_cmds='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' - old_archive_from_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' + shrext_cmds=.dll + archive_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + archive_expsym_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + prefix_cmds="$SED"~ + if test EXPORTS = "`$SED 1q $export_symbols`"; then + prefix_cmds="$prefix_cmds -e 1d"; + fi~ + prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ + cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' + enable_shared_with_static_runtimes=yes ;; osf3*) - if test "$GCC" = yes; then - allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' - archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + if test yes = "$GCC"; then + allow_undefined_flag=' $wl-expect_unresolved $wl\*' + archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else allow_undefined_flag=' -expect_unresolved \*' - archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' fi archive_cmds_need_lc='no' - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' hardcode_libdir_separator=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag - if test "$GCC" = yes; then - allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' - archive_cmds='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + if test yes = "$GCC"; then + allow_undefined_flag=' $wl-expect_unresolved $wl\*' + archive_cmds='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' + hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' else allow_undefined_flag=' -expect_unresolved \*' - archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ - $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' + $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec='-rpath $libdir' @@ -10450,24 +10788,24 @@ $as_echo "$lt_cv_irix_exported_symbol" >&6; } solaris*) no_undefined_flag=' -z defs' - if test "$GCC" = yes; then - wlarc='${wl}' - archive_cmds='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + if test yes = "$GCC"; then + wlarc='$wl' + archive_cmds='$CC -shared $pic_flag $wl-z ${wl}text $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + $CC -shared $pic_flag $wl-z ${wl}text $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' - archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' + archive_cmds='$LD -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' + $LD -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) - wlarc='${wl}' - archive_cmds='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' + wlarc='$wl' + archive_cmds='$CC -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + $CC -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi @@ -10477,11 +10815,11 @@ $as_echo "$lt_cv_irix_exported_symbol" >&6; } solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine and reorder linker options, - # but understands `-z linker_flag'. GCC discards it without `$wl', + # but understands '-z linker_flag'. GCC discards it without '$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) - if test "$GCC" = yes; then - whole_archive_flag_spec='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + if test yes = "$GCC"; then + whole_archive_flag_spec='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' else whole_archive_flag_spec='-z allextract$convenience -z defaultextract' fi @@ -10491,10 +10829,10 @@ $as_echo "$lt_cv_irix_exported_symbol" >&6; } ;; sunos4*) - if test "x$host_vendor" = xsequent; then + if test sequent = "$host_vendor"; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. - archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' + archive_cmds='$CC -G $wl-h $soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi @@ -10543,43 +10881,43 @@ $as_echo "$lt_cv_irix_exported_symbol" >&6; } ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) - no_undefined_flag='${wl}-z,text' + no_undefined_flag='$wl-z,text' archive_cmds_need_lc=no hardcode_shlibpath_var=no runpath_var='LD_RUN_PATH' - if test "$GCC" = yes; then - archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + if test yes = "$GCC"; then + archive_cmds='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else - archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_cmds='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) - # Note: We can NOT use -z defs as we might desire, because we do not + # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. - no_undefined_flag='${wl}-z,text' - allow_undefined_flag='${wl}-z,nodefs' + no_undefined_flag='$wl-z,text' + allow_undefined_flag='$wl-z,nodefs' archive_cmds_need_lc=no hardcode_shlibpath_var=no - hardcode_libdir_flag_spec='${wl}-R,$libdir' + hardcode_libdir_flag_spec='$wl-R,$libdir' hardcode_libdir_separator=':' link_all_deplibs=yes - export_dynamic_flag_spec='${wl}-Bexport' + export_dynamic_flag_spec='$wl-Bexport' runpath_var='LD_RUN_PATH' - if test "$GCC" = yes; then - archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + if test yes = "$GCC"; then + archive_cmds='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else - archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_cmds='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; @@ -10594,10 +10932,10 @@ $as_echo "$lt_cv_irix_exported_symbol" >&6; } ;; esac - if test x$host_vendor = xsni; then + if test sni = "$host_vendor"; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) - export_dynamic_flag_spec='${wl}-Blargedynsym' + export_dynamic_flag_spec='$wl-Blargedynsym' ;; esac fi @@ -10605,7 +10943,7 @@ $as_echo "$lt_cv_irix_exported_symbol" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5 $as_echo "$ld_shlibs" >&6; } -test "$ld_shlibs" = no && can_build_shared=no +test no = "$ld_shlibs" && can_build_shared=no with_gnu_ld=$with_gnu_ld @@ -10631,7 +10969,7 @@ x|xyes) # Assume -lc should be added archive_cmds_need_lc=yes - if test "$enable_shared" = yes && test "$GCC" = yes; then + if test yes,yes = "$GCC,$enable_shared"; then case $archive_cmds in *'~'*) # FIXME: we may have to deal with multi-command sequences. @@ -10846,14 +11184,14 @@ esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 $as_echo_n "checking dynamic linker characteristics... " >&6; } -if test "$GCC" = yes; then +if test yes = "$GCC"; then case $host_os in - darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; - *) lt_awk_arg="/^libraries:/" ;; + darwin*) lt_awk_arg='/^libraries:/,/LR/' ;; + *) lt_awk_arg='/^libraries:/' ;; esac case $host_os in - mingw* | cegcc*) lt_sed_strip_eq="s,=\([A-Za-z]:\),\1,g" ;; - *) lt_sed_strip_eq="s,=/,/,g" ;; + mingw* | cegcc*) lt_sed_strip_eq='s|=\([A-Za-z]:\)|\1|g' ;; + *) lt_sed_strip_eq='s|=/|/|g' ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` case $lt_search_path_spec in @@ -10869,28 +11207,35 @@ if test "$GCC" = yes; then ;; esac # Ok, now we have the path, separated by spaces, we can step through it - # and add multilib dir if necessary. + # and add multilib dir if necessary... lt_tmp_lt_search_path_spec= - lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` + lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` + # ...but if some path component already ends with the multilib dir we assume + # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer). + case "$lt_multi_os_dir; $lt_search_path_spec " in + "/; "* | "/.; "* | "/./; "* | *"$lt_multi_os_dir "* | *"$lt_multi_os_dir/ "*) + lt_multi_os_dir= + ;; + esac for lt_sys_path in $lt_search_path_spec; do - if test -d "$lt_sys_path/$lt_multi_os_dir"; then - lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" - else + if test -d "$lt_sys_path$lt_multi_os_dir"; then + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir" + elif test -n "$lt_multi_os_dir"; then test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' -BEGIN {RS=" "; FS="/|\n";} { - lt_foo=""; - lt_count=0; +BEGIN {RS = " "; FS = "/|\n";} { + lt_foo = ""; + lt_count = 0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { - lt_foo="/" $lt_i lt_foo; + lt_foo = "/" $lt_i lt_foo; } else { lt_count--; } @@ -10904,7 +11249,7 @@ BEGIN {RS=" "; FS="/|\n";} { # for these hosts. case $host_os in mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ - $SED 's,/\([A-Za-z]:\),\1,g'` ;; + $SED 's|/\([A-Za-z]:\)|\1|g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else @@ -10913,7 +11258,7 @@ fi library_names_spec= libname_spec='lib$name' soname_spec= -shrext_cmds=".so" +shrext_cmds=.so postinstall_cmds= postuninstall_cmds= finish_cmds= @@ -10930,14 +11275,16 @@ hardcode_into_libs=no # flags to be left without arguments need_version=unknown + + case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' + library_names_spec='$libname$release$shared_ext$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. - soname_spec='${libname}${release}${shared_ext}$major' + soname_spec='$libname$release$shared_ext$major' ;; aix[4-9]*) @@ -10945,41 +11292,91 @@ aix[4-9]*) need_lib_prefix=no need_version=no hardcode_into_libs=yes - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 supports IA64 - library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with - # the line `#! .'. This would cause the generated library to - # depend on `.', always an invalid library. This was fixed in + # the line '#! .'. This would cause the generated library to + # depend on '.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' - echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then + echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac - # AIX (on Power*) has no versioning support, so currently we can not hardcode correct + # Using Import Files as archive members, it is possible to support + # filename-based versioning of shared library archives on AIX. While + # this would work for both with and without runtime linking, it will + # prevent static linking of such archives. So we do filename-based + # shared library versioning with .so extension only, which is used + # when both runtime linking and shared linking is enabled. + # Unfortunately, runtime linking may impact performance, so we do + # not want this to be the default eventually. Also, we use the + # versioned .so libs for executables only if there is the -brtl + # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only. + # To allow for filename-based versioning support, we need to create + # libNAME.so.V as an archive file, containing: + # *) an Import File, referring to the versioned filename of the + # archive as well as the shared archive member, telling the + # bitwidth (32 or 64) of that shared object, and providing the + # list of exported symbols of that shared object, eventually + # decorated with the 'weak' keyword + # *) the shared object with the F_LOADONLY flag set, to really avoid + # it being seen by the linker. + # At run time we better use the real file rather than another symlink, + # but for link time we create the symlink libNAME.so -> libNAME.so.V + + case $with_aix_soname,$aix_use_runtimelinking in + # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. - if test "$aix_use_runtimelinking" = yes; then + aix,yes) # traditional libtool + dynamic_linker='AIX unversionable lib.so' # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - else + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + ;; + aix,no) # traditional AIX only + dynamic_linker='AIX lib.a(lib.so.V)' # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. - library_names_spec='${libname}${release}.a $libname.a' - soname_spec='${libname}${release}${shared_ext}$major' - fi + library_names_spec='$libname$release.a $libname.a' + soname_spec='$libname$release$shared_ext$major' + ;; + svr4,*) # full svr4 only + dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o)" + library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' + # We do not specify a path in Import Files, so LIBPATH fires. + shlibpath_overrides_runpath=yes + ;; + *,yes) # both, prefer svr4 + dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o), lib.a(lib.so.V)" + library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' + # unpreferred sharedlib libNAME.a needs extra handling + postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' + postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' + # We do not specify a path in Import Files, so LIBPATH fires. + shlibpath_overrides_runpath=yes + ;; + *,no) # both, prefer aix + dynamic_linker="AIX lib.a(lib.so.V), lib.so.V($shared_archive_member_spec.o)" + library_names_spec='$libname$release.a $libname.a' + soname_spec='$libname$release$shared_ext$major' + # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling + postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' + postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' + ;; + esac shlibpath_var=LIBPATH fi ;; @@ -10989,18 +11386,18 @@ amigaos*) powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. - finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) - library_names_spec='${libname}${shared_ext}' + library_names_spec='$libname$shared_ext' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; @@ -11008,8 +11405,8 @@ beos*) bsdi[45]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" @@ -11021,7 +11418,7 @@ bsdi[45]*) cygwin* | mingw* | pw32* | cegcc*) version_type=windows - shrext_cmds=".dll" + shrext_cmds=.dll need_version=no need_lib_prefix=no @@ -11030,8 +11427,8 @@ cygwin* | mingw* | pw32* | cegcc*) # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \${file}`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ @@ -11047,17 +11444,17 @@ cygwin* | mingw* | pw32* | cegcc*) case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' - soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api" ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix - soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' - library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' ;; esac dynamic_linker='Win32 ld.exe' @@ -11066,8 +11463,8 @@ cygwin* | mingw* | pw32* | cegcc*) *,cl*) # Native MSVC libname_spec='$name' - soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' - library_names_spec='${libname}.dll.lib' + soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' + library_names_spec='$libname.dll.lib' case $build_os in mingw*) @@ -11094,7 +11491,7 @@ cygwin* | mingw* | pw32* | cegcc*) sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) - sys_lib_search_path_spec="$LIB" + sys_lib_search_path_spec=$LIB if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` @@ -11107,8 +11504,8 @@ cygwin* | mingw* | pw32* | cegcc*) esac # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \${file}`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' @@ -11121,7 +11518,7 @@ cygwin* | mingw* | pw32* | cegcc*) *) # Assume MSVC wrapper - library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' + library_names_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac @@ -11134,8 +11531,8 @@ darwin* | rhapsody*) version_type=darwin need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' - soname_spec='${libname}${release}${major}$shared_ext' + library_names_spec='$libname$release$major$shared_ext $libname$shared_ext' + soname_spec='$libname$release$major$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' @@ -11148,8 +11545,8 @@ dgux*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; @@ -11167,12 +11564,13 @@ freebsd* | dragonfly*) version_type=freebsd-$objformat case $version_type in freebsd-elf*) - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' need_version=no need_lib_prefix=no ;; freebsd-*) - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' need_version=yes ;; esac @@ -11197,26 +11595,15 @@ freebsd* | dragonfly*) esac ;; -gnu*) - version_type=linux # correct to gnu/linux during the next big refactor - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LIBRARY_PATH - shlibpath_overrides_runpath=yes + shlibpath_overrides_runpath=no sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; @@ -11234,14 +11621,15 @@ hpux9* | hpux10* | hpux11*) dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - if test "X$HPUX_IA64_MODE" = X32; then + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + if test 32 = "$HPUX_IA64_MODE"; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" + sys_lib_dlsearch_path_spec=/usr/lib/hpux32 else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" + sys_lib_dlsearch_path_spec=/usr/lib/hpux64 fi - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' @@ -11249,8 +11637,8 @@ hpux9* | hpux10* | hpux11*) dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; @@ -11259,8 +11647,8 @@ hpux9* | hpux10* | hpux11*) dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... @@ -11273,8 +11661,8 @@ interix[3-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no @@ -11285,7 +11673,7 @@ irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) - if test "$lt_cv_prog_gnu_ld" = yes; then + if test yes = "$lt_cv_prog_gnu_ld"; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix @@ -11293,8 +11681,8 @@ irix5* | irix6* | nonstopux*) esac need_lib_prefix=no need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' + soname_spec='$libname$release$shared_ext$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= @@ -11313,8 +11701,8 @@ irix5* | irix6* | nonstopux*) esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no - sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" - sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" + sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff" + sys_lib_dlsearch_path_spec="/usr/lib$libsuff /lib$libsuff" hardcode_into_libs=yes ;; @@ -11323,13 +11711,33 @@ linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; +linux*android*) + version_type=none # Android doesn't support versioned libraries. + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext' + soname_spec='$libname$release$shared_ext' + finish_cmds= + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + dynamic_linker='Android linker' + # Don't embed -rpath directories since the linker doesn't support them. + hardcode_libdir_flag_spec='-L$libdir' + ;; + # This must be glibc/ELF. -linux* | k*bsd*-gnu | kopensolaris*-gnu) +linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no @@ -11376,11 +11784,15 @@ fi # Add ABI-specific directories to the system library path. sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib" - # Append ld.so.conf contents to the search path + # Ideally, we could use ldconfig to report *all* directores which are + # searched for libraries, however this is still not possible. Aside from not + # being certain /sbin/ldconfig is available, command + # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64, + # even though it is searched at run-time. Try to do the best guess by + # appending ld.so.conf contents (and includes) to the search path. if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" - fi # We used to test for /lib/ld.so.1 and disable shared libraries on @@ -11397,12 +11809,12 @@ netbsd*) need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH @@ -11412,7 +11824,7 @@ netbsd*) newsos6) version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; @@ -11421,58 +11833,68 @@ newsos6) version_type=qnx need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; -openbsd*) +openbsd* | bitrig*) version_type=sunos - sys_lib_dlsearch_path_spec="/usr/lib" + sys_lib_dlsearch_path_spec=/usr/lib need_lib_prefix=no - # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. - case $host_os in - openbsd3.3 | openbsd3.3.*) need_version=yes ;; - *) need_version=no ;; - esac - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then + need_version=no + else + need_version=yes + fi + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - case $host_os in - openbsd2.[89] | openbsd2.[89].*) - shlibpath_overrides_runpath=no - ;; - *) - shlibpath_overrides_runpath=yes - ;; - esac - else - shlibpath_overrides_runpath=yes - fi + shlibpath_overrides_runpath=yes ;; os2*) libname_spec='$name' - shrext_cmds=".dll" + version_type=windows + shrext_cmds=.dll + need_version=no need_lib_prefix=no - library_names_spec='$libname${shared_ext} $libname.a' + # OS/2 can only load a DLL with a base name of 8 characters or less. + soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; + v=$($ECHO $release$versuffix | tr -d .-); + n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); + $ECHO $n$v`$shared_ext' + library_names_spec='${libname}_dll.$libext' dynamic_linker='OS/2 ld.exe' - shlibpath_var=LIBPATH + shlibpath_var=BEGINLIBPATH + sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='$libname$release$shared_ext$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" - sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; rdos*) @@ -11483,8 +11905,8 @@ solaris*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes @@ -11494,11 +11916,11 @@ solaris*) sunos4*) version_type=sunos - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes - if test "$with_gnu_ld" = yes; then + if test yes = "$with_gnu_ld"; then need_lib_prefix=no fi need_version=yes @@ -11506,8 +11928,8 @@ sunos4*) sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) @@ -11528,24 +11950,24 @@ sysv4 | sysv4.3*) ;; sysv4*MP*) - if test -d /usr/nec ;then + if test -d /usr/nec; then version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' - soname_spec='$libname${shared_ext}.$major' + library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext' + soname_spec='$libname$shared_ext.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - version_type=freebsd-elf + version_type=sco need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes - if test "$with_gnu_ld" = yes; then + if test yes = "$with_gnu_ld"; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' @@ -11563,7 +11985,7 @@ tpf*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes @@ -11571,8 +11993,8 @@ tpf*) uts4*) version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; @@ -11582,20 +12004,35 @@ uts4*) esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 $as_echo "$dynamic_linker" >&6; } -test "$dynamic_linker" = no && can_build_shared=no +test no = "$dynamic_linker" && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" -if test "$GCC" = yes; then +if test yes = "$GCC"; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi -if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then - sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" +if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then + sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec fi -if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then - sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" + +if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then + sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec fi +# remember unaugmented sys_lib_dlsearch_path content for libtool script decls... +configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec + +# ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code +func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH" + +# to be used as default LT_SYS_LIBRARY_PATH value in generated libtool +configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH + + + + + + @@ -11692,15 +12129,15 @@ $as_echo_n "checking how to hardcode library paths into programs... " >&6; } hardcode_action= if test -n "$hardcode_libdir_flag_spec" || test -n "$runpath_var" || - test "X$hardcode_automatic" = "Xyes" ; then + test yes = "$hardcode_automatic"; then # We can hardcode non-existent directories. - if test "$hardcode_direct" != no && + if test no != "$hardcode_direct" && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one - ## test "$_LT_TAGVAR(hardcode_shlibpath_var, )" != no && - test "$hardcode_minus_L" != no; then + ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, )" && + test no != "$hardcode_minus_L"; then # Linking always hardcodes the temporary library directory. hardcode_action=relink else @@ -11715,12 +12152,12 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5 $as_echo "$hardcode_action" >&6; } -if test "$hardcode_action" = relink || - test "$inherit_rpath" = yes; then +if test relink = "$hardcode_action" || + test yes = "$inherit_rpath"; then # Fast installation is not supported enable_fast_install=no -elif test "$shlibpath_overrides_runpath" = yes || - test "$enable_shared" = no; then +elif test yes = "$shlibpath_overrides_runpath" || + test no = "$enable_shared"; then # Fast installation is not necessary enable_fast_install=needless fi @@ -11730,7 +12167,7 @@ fi - if test "x$enable_dlopen" != xyes; then + if test yes != "$enable_dlopen"; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown @@ -11740,23 +12177,23 @@ else case $host_os in beos*) - lt_cv_dlopen="load_add_on" + lt_cv_dlopen=load_add_on lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32* | cegcc*) - lt_cv_dlopen="LoadLibrary" + lt_cv_dlopen=LoadLibrary lt_cv_dlopen_libs= ;; cygwin*) - lt_cv_dlopen="dlopen" + lt_cv_dlopen=dlopen lt_cv_dlopen_libs= ;; darwin*) - # if libdl is installed we need to link against it + # if libdl is installed we need to link against it { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } if ${ac_cv_lib_dl_dlopen+:} false; then : @@ -11794,10 +12231,10 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } if test "x$ac_cv_lib_dl_dlopen" = xyes; then : - lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" + lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl else - lt_cv_dlopen="dyld" + lt_cv_dlopen=dyld lt_cv_dlopen_libs= lt_cv_dlopen_self=yes @@ -11805,10 +12242,18 @@ fi ;; + tpf*) + # Don't try to run any link tests for TPF. We know it's impossible + # because TPF is a cross-compiler, and we know how we open DSOs. + lt_cv_dlopen=dlopen + lt_cv_dlopen_libs= + lt_cv_dlopen_self=no + ;; + *) ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" if test "x$ac_cv_func_shl_load" = xyes; then : - lt_cv_dlopen="shl_load" + lt_cv_dlopen=shl_load else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 $as_echo_n "checking for shl_load in -ldld... " >&6; } @@ -11847,11 +12292,11 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5 $as_echo "$ac_cv_lib_dld_shl_load" >&6; } if test "x$ac_cv_lib_dld_shl_load" = xyes; then : - lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld" + lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld else ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" if test "x$ac_cv_func_dlopen" = xyes; then : - lt_cv_dlopen="dlopen" + lt_cv_dlopen=dlopen else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } @@ -11890,7 +12335,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } if test "x$ac_cv_lib_dl_dlopen" = xyes; then : - lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" + lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5 $as_echo_n "checking for dlopen in -lsvld... " >&6; } @@ -11929,7 +12374,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5 $as_echo "$ac_cv_lib_svld_dlopen" >&6; } if test "x$ac_cv_lib_svld_dlopen" = xyes; then : - lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" + lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5 $as_echo_n "checking for dld_link in -ldld... " >&6; } @@ -11968,7 +12413,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5 $as_echo "$ac_cv_lib_dld_dld_link" >&6; } if test "x$ac_cv_lib_dld_dld_link" = xyes; then : - lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld" + lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld fi @@ -11989,21 +12434,21 @@ fi ;; esac - if test "x$lt_cv_dlopen" != xno; then - enable_dlopen=yes - else + if test no = "$lt_cv_dlopen"; then enable_dlopen=no + else + enable_dlopen=yes fi case $lt_cv_dlopen in dlopen) - save_CPPFLAGS="$CPPFLAGS" - test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" + save_CPPFLAGS=$CPPFLAGS + test yes = "$ac_cv_header_dlfcn_h" && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" - save_LDFLAGS="$LDFLAGS" + save_LDFLAGS=$LDFLAGS wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" - save_LIBS="$LIBS" + save_LIBS=$LIBS LIBS="$lt_cv_dlopen_libs $LIBS" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5 @@ -12011,7 +12456,7 @@ $as_echo_n "checking whether a program can dlopen itself... " >&6; } if ${lt_cv_dlopen_self+:} false; then : $as_echo_n "(cached) " >&6 else - if test "$cross_compiling" = yes; then : + if test yes = "$cross_compiling"; then : lt_cv_dlopen_self=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 @@ -12058,9 +12503,9 @@ else # endif #endif -/* When -fvisbility=hidden is used, assume the code has been annotated +/* When -fvisibility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ -#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) +#if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif @@ -12090,7 +12535,7 @@ _LT_EOF (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then + test $ac_status = 0; } && test -s "conftest$ac_exeext" 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in @@ -12110,14 +12555,14 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self" >&5 $as_echo "$lt_cv_dlopen_self" >&6; } - if test "x$lt_cv_dlopen_self" = xyes; then + if test yes = "$lt_cv_dlopen_self"; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5 $as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; } if ${lt_cv_dlopen_self_static+:} false; then : $as_echo_n "(cached) " >&6 else - if test "$cross_compiling" = yes; then : + if test yes = "$cross_compiling"; then : lt_cv_dlopen_self_static=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 @@ -12164,9 +12609,9 @@ else # endif #endif -/* When -fvisbility=hidden is used, assume the code has been annotated +/* When -fvisibility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ -#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) +#if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif @@ -12196,7 +12641,7 @@ _LT_EOF (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then + test $ac_status = 0; } && test -s "conftest$ac_exeext" 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in @@ -12217,9 +12662,9 @@ fi $as_echo "$lt_cv_dlopen_self_static" >&6; } fi - CPPFLAGS="$save_CPPFLAGS" - LDFLAGS="$save_LDFLAGS" - LIBS="$save_LIBS" + CPPFLAGS=$save_CPPFLAGS + LDFLAGS=$save_LDFLAGS + LIBS=$save_LIBS ;; esac @@ -12263,7 +12708,7 @@ else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) - if test -n "$STRIP" ; then + if test -n "$STRIP"; then striplib="$STRIP -x" old_striplib="$STRIP -S" { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 @@ -12291,7 +12736,7 @@ fi - # Report which library types will actually be built + # Report what library types will actually be built { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 $as_echo_n "checking if libtool supports shared libraries... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 @@ -12299,13 +12744,13 @@ $as_echo "$can_build_shared" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 $as_echo_n "checking whether to build shared libraries... " >&6; } - test "$can_build_shared" = "no" && enable_shared=no + test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) - test "$enable_shared" = yes && enable_static=no + test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' @@ -12313,8 +12758,12 @@ $as_echo_n "checking whether to build shared libraries... " >&6; } ;; aix[4-9]*) - if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then - test "$enable_shared" = yes && enable_static=no + if test ia64 != "$host_cpu"; then + case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in + yes,aix,yes) ;; # shared object as lib.so file only + yes,svr4,*) ;; # shared object as lib.so archive member only + yes,*) enable_static=no ;; # shared object in lib.a archive as well + esac fi ;; esac @@ -12324,7 +12773,7 @@ $as_echo "$enable_shared" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 $as_echo_n "checking whether to build static libraries... " >&6; } # Make sure either enable_shared or enable_static is yes. - test "$enable_shared" = yes || enable_static=yes + test yes = "$enable_shared" || enable_static=yes { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 $as_echo "$enable_static" >&6; } @@ -12338,11 +12787,11 @@ ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu -CC="$lt_save_CC" +CC=$lt_save_CC - if test -n "$CXX" && ( test "X$CXX" != "Xno" && - ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || - (test "X$CXX" != "Xg++"))) ; then + if test -n "$CXX" && ( test no != "$CXX" && + ( (test g++ = "$CXX" && `g++ -v >/dev/null 2>&1` ) || + (test g++ != "$CXX"))); then ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' @@ -12521,7 +12970,7 @@ objext_CXX=$objext # the CXX compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. -if test "$_lt_caught_CXX_error" != yes; then +if test yes != "$_lt_caught_CXX_error"; then # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" @@ -12582,46 +13031,39 @@ $RM -r conftest* CFLAGS=$CXXFLAGS compiler=$CC compiler_CXX=$CC - for cc_temp in $compiler""; do - case $cc_temp in - compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; - distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; - \-*) ;; - *) break;; - esac -done -cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` + func_cc_basename $compiler +cc_basename=$func_cc_basename_result if test -n "$compiler"; then # We don't want -fno-exception when compiling C++ code, so set the # no_builtin_flag separately - if test "$GXX" = yes; then + if test yes = "$GXX"; then lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin' else lt_prog_compiler_no_builtin_flag_CXX= fi - if test "$GXX" = yes; then + if test yes = "$GXX"; then # Set up default GNU C++ configuration # Check whether --with-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then : - withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes + withval=$with_gnu_ld; test no = "$withval" || with_gnu_ld=yes else with_gnu_ld=no fi ac_prog=ld -if test "$GCC" = yes; then +if test yes = "$GCC"; then # Check if gcc -print-prog-name=ld gives a path. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 $as_echo_n "checking for ld used by $CC... " >&6; } case $host in *-*-mingw*) - # gcc leaves a trailing carriage return which upsets mingw + # gcc leaves a trailing carriage return, which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; @@ -12635,7 +13077,7 @@ $as_echo_n "checking for ld used by $CC... " >&6; } while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done - test -z "$LD" && LD="$ac_prog" + test -z "$LD" && LD=$ac_prog ;; "") # If it fails, then pretend we aren't using GCC. @@ -12646,7 +13088,7 @@ $as_echo_n "checking for ld used by $CC... " >&6; } with_gnu_ld=unknown ;; esac -elif test "$with_gnu_ld" = yes; then +elif test yes = "$with_gnu_ld"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 $as_echo_n "checking for GNU ld... " >&6; } else @@ -12657,32 +13099,32 @@ if ${lt_cv_path_LD+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$LD"; then - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then - lt_cv_path_LD="$ac_dir/$ac_prog" + lt_cv_path_LD=$ac_dir/$ac_prog # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &5 $as_echo "$LD" >&6; } @@ -12718,22 +13160,22 @@ with_gnu_ld=$lt_cv_prog_gnu_ld # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. - if test "$with_gnu_ld" = yes; then - archive_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + if test yes = "$with_gnu_ld"; then + archive_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' - hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' - export_dynamic_flag_spec_CXX='${wl}--export-dynamic' + hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' + export_dynamic_flag_spec_CXX='$wl--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) - wlarc='${wl}' + wlarc='$wl' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | $GREP 'no-whole-archive' > /dev/null; then - whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + whole_archive_flag_spec_CXX=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else whole_archive_flag_spec_CXX= fi @@ -12770,18 +13212,30 @@ $as_echo_n "checking whether the $compiler linker ($LD) supports shared librarie ld_shlibs_CXX=no ;; aix[4-9]*) - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' - no_entry_flag="" + no_entry_flag= else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we - # need to do runtime linking. + # have runtime linking enabled, and use it for executables. + # For shared libraries, we enable/disable runtime linking + # depending on the kind of the shared library created - + # when "with_aix_soname,aix_use_runtimelinking" is: + # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables + # "aix,yes" lib.so shared, rtl:yes, for executables + # lib.a static archive + # "both,no" lib.so.V(shr.o) shared, rtl:yes + # lib.a(lib.so.V) shared, rtl:no, for executables + # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a(lib.so.V) shared, rtl:no + # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a static archive case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do case $ld_flag in @@ -12791,6 +13245,13 @@ $as_echo_n "checking whether the $compiler linker ($LD) supports shared librarie ;; esac done + if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then + # With aix-soname=svr4, we create the lib.so.V shared archives only, + # so we don't have lib.a shared libs to link our executables. + # We have to force runtime linking in this case. + aix_use_runtimelinking=yes + LDFLAGS="$LDFLAGS -Wl,-brtl" + fi ;; esac @@ -12809,13 +13270,21 @@ $as_echo_n "checking whether the $compiler linker ($LD) supports shared librarie hardcode_direct_absolute_CXX=yes hardcode_libdir_separator_CXX=':' link_all_deplibs_CXX=yes - file_list_spec_CXX='${wl}-f,' + file_list_spec_CXX='$wl-f,' + case $with_aix_soname,$aix_use_runtimelinking in + aix,*) ;; # no import file + svr4,* | *,yes) # use import file + # The Import File defines what to hardcode. + hardcode_direct_CXX=no + hardcode_direct_absolute_CXX=no + ;; + esac - if test "$GXX" = yes; then + if test yes = "$GXX"; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ - collect2name=`${CC} -print-prog-name=collect2` + collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then @@ -12833,36 +13302,44 @@ $as_echo_n "checking whether the $compiler linker ($LD) supports shared librarie fi esac shared_flag='-shared' - if test "$aix_use_runtimelinking" = yes; then - shared_flag="$shared_flag "'${wl}-G' + if test yes = "$aix_use_runtimelinking"; then + shared_flag=$shared_flag' $wl-G' fi + # Need to ensure runtime linking is disabled for the traditional + # shared library, or the linker may eventually find shared libraries + # /with/ Import File - we do not want to mix them. + shared_flag_aix='-shared' + shared_flag_svr4='-shared $wl-G' else # not using gcc - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else - if test "$aix_use_runtimelinking" = yes; then - shared_flag='${wl}-G' + if test yes = "$aix_use_runtimelinking"; then + shared_flag='$wl-G' else - shared_flag='${wl}-bM:SRE' + shared_flag='$wl-bM:SRE' fi + shared_flag_aix='$wl-bM:SRE' + shared_flag_svr4='$wl-G' fi fi - export_dynamic_flag_spec_CXX='${wl}-bexpall' + export_dynamic_flag_spec_CXX='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to # export. always_export_symbols_CXX=yes - if test "$aix_use_runtimelinking" = yes; then + if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. - allow_undefined_flag_CXX='-berok' + # The "-G" linker flag allows undefined symbols. + no_undefined_flag_CXX='-bernotok' # Determine the default libpath from the value encoded in an empty # executable. - if test "${lt_cv_aix_libpath+set}" = set; then + if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath__CXX+:} false; then : @@ -12897,7 +13374,7 @@ fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath__CXX"; then - lt_cv_aix_libpath__CXX="/usr/lib:/lib" + lt_cv_aix_libpath__CXX=/usr/lib:/lib fi fi @@ -12905,18 +13382,18 @@ fi aix_libpath=$lt_cv_aix_libpath__CXX fi - hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" + hardcode_libdir_flag_spec_CXX='$wl-blibpath:$libdir:'"$aix_libpath" - archive_expsym_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + archive_expsym_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else - if test "$host_cpu" = ia64; then - hardcode_libdir_flag_spec_CXX='${wl}-R $libdir:/usr/lib:/lib' + if test ia64 = "$host_cpu"; then + hardcode_libdir_flag_spec_CXX='$wl-R $libdir:/usr/lib:/lib' allow_undefined_flag_CXX="-z nodefs" - archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. - if test "${lt_cv_aix_libpath+set}" = set; then + if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath__CXX+:} false; then : @@ -12951,7 +13428,7 @@ fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath__CXX"; then - lt_cv_aix_libpath__CXX="/usr/lib:/lib" + lt_cv_aix_libpath__CXX=/usr/lib:/lib fi fi @@ -12959,22 +13436,34 @@ fi aix_libpath=$lt_cv_aix_libpath__CXX fi - hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" + hardcode_libdir_flag_spec_CXX='$wl-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. - no_undefined_flag_CXX=' ${wl}-bernotok' - allow_undefined_flag_CXX=' ${wl}-berok' - if test "$with_gnu_ld" = yes; then + no_undefined_flag_CXX=' $wl-bernotok' + allow_undefined_flag_CXX=' $wl-berok' + if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. - whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + whole_archive_flag_spec_CXX='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec_CXX='$convenience' fi archive_cmds_need_lc_CXX=yes - # This is similar to how AIX traditionally builds its shared - # libraries. - archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + archive_expsym_cmds_CXX='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' + # -brtl affects multiple linker settings, -berok does not and is overridden later + compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([, ]\\)%-berok\\1%g"`' + if test svr4 != "$with_aix_soname"; then + # This is similar to how AIX traditionally builds its shared + # libraries. Need -bnortl late, we may have -brtl in LDFLAGS. + archive_expsym_cmds_CXX="$archive_expsym_cmds_CXX"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' + fi + if test aix != "$with_aix_soname"; then + archive_expsym_cmds_CXX="$archive_expsym_cmds_CXX"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' + else + # used by -dlpreopen to get the symbols + archive_expsym_cmds_CXX="$archive_expsym_cmds_CXX"'~$MV $output_objdir/$realname.d/$soname $output_objdir' + fi + archive_expsym_cmds_CXX="$archive_expsym_cmds_CXX"'~$RM -r $output_objdir/$realname.d' fi fi ;; @@ -12984,7 +13473,7 @@ fi allow_undefined_flag_CXX=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME - archive_cmds_CXX='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_cmds_CXX='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else ld_shlibs_CXX=no fi @@ -13012,57 +13501,58 @@ fi # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. - shrext_cmds=".dll" + shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. - archive_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' - archive_expsym_cmds_CXX='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - $SED -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; - else - $SED -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; - fi~ - $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ - linknames=' + archive_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' + archive_expsym_cmds_CXX='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then + cp "$export_symbols" "$output_objdir/$soname.def"; + echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; + else + $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, CXX)='true' enable_shared_with_static_runtimes_CXX=yes # Don't use ranlib old_postinstall_cmds_CXX='chmod 644 $oldlib' postlink_cmds_CXX='lt_outputfile="@OUTPUT@"~ - lt_tool_outputfile="@TOOL_OUTPUT@"~ - case $lt_outputfile in - *.exe|*.EXE) ;; - *) - lt_outputfile="$lt_outputfile.exe" - lt_tool_outputfile="$lt_tool_outputfile.exe" - ;; - esac~ - func_to_tool_file "$lt_outputfile"~ - if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then - $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; - $RM "$lt_outputfile.manifest"; - fi' + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile=$lt_outputfile.exe + lt_tool_outputfile=$lt_tool_outputfile.exe + ;; + esac~ + func_to_tool_file "$lt_outputfile"~ + if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' ;; *) # g++ # _LT_TAGVAR(hardcode_libdir_flag_spec, CXX) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec_CXX='-L$libdir' - export_dynamic_flag_spec_CXX='${wl}--export-all-symbols' + export_dynamic_flag_spec_CXX='$wl--export-all-symbols' allow_undefined_flag_CXX=unsupported always_export_symbols_CXX=no enable_shared_with_static_runtimes_CXX=yes if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then - archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - # If the export-symbols file already is a .def file (1st line - # is EXPORTS), use it as is; otherwise, prepend... - archive_expsym_cmds_CXX='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - cp $export_symbols $output_objdir/$soname.def; - else - echo EXPORTS > $output_objdir/$soname.def; - cat $export_symbols >> $output_objdir/$soname.def; - fi~ - $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file, use it as + # is; otherwise, prepend EXPORTS... + archive_expsym_cmds_CXX='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs_CXX=no fi @@ -13076,27 +13566,27 @@ fi hardcode_direct_CXX=no hardcode_automatic_CXX=yes hardcode_shlibpath_var_CXX=unsupported - if test "$lt_cv_ld_force_load" = "yes"; then - whole_archive_flag_spec_CXX='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' + if test yes = "$lt_cv_ld_force_load"; then + whole_archive_flag_spec_CXX='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' else whole_archive_flag_spec_CXX='' fi link_all_deplibs_CXX=yes - allow_undefined_flag_CXX="$_lt_dar_allow_undefined" + allow_undefined_flag_CXX=$_lt_dar_allow_undefined case $cc_basename in - ifort*) _lt_dar_can_shared=yes ;; + ifort*|nagfor*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac - if test "$_lt_dar_can_shared" = "yes"; then + if test yes = "$_lt_dar_can_shared"; then output_verbose_link_cmd=func_echo_all - archive_cmds_CXX="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" - module_cmds_CXX="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" - archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" - module_expsym_cmds_CXX="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" - if test "$lt_cv_apple_cc_single_mod" != "yes"; then - archive_cmds_CXX="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" - archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" + archive_cmds_CXX="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil" + module_cmds_CXX="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil" + archive_expsym_cmds_CXX="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil" + module_expsym_cmds_CXX="sed -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil" + if test yes != "$lt_cv_apple_cc_single_mod"; then + archive_cmds_CXX="\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dsymutil" + archive_expsym_cmds_CXX="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dar_export_syms$_lt_dsymutil" fi else @@ -13105,6 +13595,34 @@ fi ;; + os2*) + hardcode_libdir_flag_spec_CXX='-L$libdir' + hardcode_minus_L_CXX=yes + allow_undefined_flag_CXX=unsupported + shrext_cmds=.dll + archive_cmds_CXX='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + archive_expsym_cmds_CXX='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + prefix_cmds="$SED"~ + if test EXPORTS = "`$SED 1q $export_symbols`"; then + prefix_cmds="$prefix_cmds -e 1d"; + fi~ + prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ + cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + old_archive_From_new_cmds_CXX='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' + enable_shared_with_static_runtimes_CXX=yes + ;; + dgux*) case $cc_basename in ec++*) @@ -13139,18 +13657,15 @@ fi ld_shlibs_CXX=yes ;; - gnu*) - ;; - haiku*) - archive_cmds_CXX='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_cmds_CXX='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' link_all_deplibs_CXX=yes ;; hpux9*) - hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' + hardcode_libdir_flag_spec_CXX='$wl+b $wl$libdir' hardcode_libdir_separator_CXX=: - export_dynamic_flag_spec_CXX='${wl}-E' + export_dynamic_flag_spec_CXX='$wl-E' hardcode_direct_CXX=yes hardcode_minus_L_CXX=yes # Not in the search PATH, # but as the default @@ -13162,7 +13677,7 @@ fi ld_shlibs_CXX=no ;; aCC*) - archive_cmds_CXX='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + archive_cmds_CXX='$RM $output_objdir/$soname~$CC -b $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. @@ -13171,11 +13686,11 @@ fi # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) - if test "$GXX" = yes; then - archive_cmds_CXX='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + if test yes = "$GXX"; then + archive_cmds_CXX='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support ld_shlibs_CXX=no @@ -13185,15 +13700,15 @@ fi ;; hpux10*|hpux11*) - if test $with_gnu_ld = no; then - hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' + if test no = "$with_gnu_ld"; then + hardcode_libdir_flag_spec_CXX='$wl+b $wl$libdir' hardcode_libdir_separator_CXX=: case $host_cpu in hppa*64*|ia64*) ;; *) - export_dynamic_flag_spec_CXX='${wl}-E' + export_dynamic_flag_spec_CXX='$wl-E' ;; esac fi @@ -13219,13 +13734,13 @@ fi aCC*) case $host_cpu in hppa*64*) - archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + archive_cmds_CXX='$CC -b $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) - archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + archive_cmds_CXX='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) - archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + archive_cmds_CXX='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists @@ -13236,20 +13751,20 @@ fi # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) - if test "$GXX" = yes; then - if test $with_gnu_ld = no; then + if test yes = "$GXX"; then + if test no = "$with_gnu_ld"; then case $host_cpu in hppa*64*) - archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + archive_cmds_CXX='$CC -shared -nostdlib -fPIC $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) - archive_cmds_CXX='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + archive_cmds_CXX='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) - archive_cmds_CXX='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + archive_cmds_CXX='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi @@ -13264,22 +13779,22 @@ fi interix[3-9]*) hardcode_direct_CXX=no hardcode_shlibpath_var_CXX=no - hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' - export_dynamic_flag_spec_CXX='${wl}-E' + hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' + export_dynamic_flag_spec_CXX='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. - archive_cmds_CXX='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - archive_expsym_cmds_CXX='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + archive_cmds_CXX='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + archive_expsym_cmds_CXX='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ - archive_cmds_CXX='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + archive_cmds_CXX='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is @@ -13288,22 +13803,22 @@ fi old_archive_cmds_CXX='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) - if test "$GXX" = yes; then - if test "$with_gnu_ld" = no; then - archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + if test yes = "$GXX"; then + if test no = "$with_gnu_ld"; then + archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else - archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` -o $lib' + archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` -o $lib' fi fi link_all_deplibs_CXX=yes ;; esac - hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' + hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' hardcode_libdir_separator_CXX=: inherit_rpath_CXX=yes ;; - linux* | k*bsd*-gnu | kopensolaris*-gnu) + linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler @@ -13311,8 +13826,8 @@ fi # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. - archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' - archive_expsym_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' + archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + archive_expsym_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib $wl-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. @@ -13321,10 +13836,10 @@ fi # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' - hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' - export_dynamic_flag_spec_CXX='${wl}--export-dynamic' + hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' + export_dynamic_flag_spec_CXX='$wl--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. @@ -13338,59 +13853,59 @@ fi # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) - archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac - archive_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + archive_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; esac archive_cmds_need_lc_CXX=no - hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' - export_dynamic_flag_spec_CXX='${wl}--export-dynamic' - whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' + export_dynamic_flag_spec_CXX='$wl--export-dynamic' + whole_archive_flag_spec_CXX='$wl--whole-archive$convenience $wl--no-whole-archive' ;; pgCC* | pgcpp*) # Portland Group C++ compiler case `$CC -V` in *pgCC\ [1-5].* | *pgcpp\ [1-5].*) prelink_cmds_CXX='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ - compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ + compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' old_archive_cmds_CXX='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ - $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ - $RANLIB $oldlib' + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ + $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ + $RANLIB $oldlib' archive_cmds_CXX='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ - $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ - $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 6 and above use weak symbols - archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' - archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; esac - hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir' - export_dynamic_flag_spec_CXX='${wl}--export-dynamic' - whole_archive_flag_spec_CXX='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + hardcode_libdir_flag_spec_CXX='$wl--rpath $wl$libdir' + export_dynamic_flag_spec_CXX='$wl--export-dynamic' + whole_archive_flag_spec_CXX='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' ;; cxx*) # Compaq C++ - archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' + archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib $wl-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec_CXX='-rpath $libdir' @@ -13404,18 +13919,18 @@ fi # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' ;; xl* | mpixl* | bgxl*) # IBM XL 8.0 on PPC, with GNU ld - hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' - export_dynamic_flag_spec_CXX='${wl}--export-dynamic' - archive_cmds_CXX='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - if test "x$supports_anon_versioning" = xyes; then + hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' + export_dynamic_flag_spec_CXX='$wl--export-dynamic' + archive_cmds_CXX='$CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + if test yes = "$supports_anon_versioning"; then archive_expsym_cmds_CXX='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi ;; *) @@ -13423,10 +13938,10 @@ fi *Sun\ C*) # Sun C++ 5.9 no_undefined_flag_CXX=' -zdefs' - archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - archive_expsym_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' + archive_cmds_CXX='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + archive_expsym_cmds_CXX='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file $wl$export_symbols' hardcode_libdir_flag_spec_CXX='-R$libdir' - whole_archive_flag_spec_CXX='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + whole_archive_flag_spec_CXX='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' compiler_needs_object_CXX=yes # Not sure whether something based on @@ -13484,22 +13999,17 @@ fi ld_shlibs_CXX=yes ;; - openbsd2*) - # C++ shared libraries are fairly broken - ld_shlibs_CXX=no - ;; - - openbsd*) + openbsd* | bitrig*) if test -f /usr/libexec/ld.so; then hardcode_direct_CXX=yes hardcode_shlibpath_var_CXX=no hardcode_direct_absolute_CXX=yes archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' - hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' - if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' - export_dynamic_flag_spec_CXX='${wl}-E' - whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' + if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`"; then + archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file,$export_symbols -o $lib' + export_dynamic_flag_spec_CXX='$wl-E' + whole_archive_flag_spec_CXX=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' fi output_verbose_link_cmd=func_echo_all else @@ -13515,9 +14025,9 @@ fi # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. - archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' - hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' + hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' hardcode_libdir_separator_CXX=: # Archives containing C++ object files must be created using @@ -13535,17 +14045,17 @@ fi cxx*) case $host in osf3*) - allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' - archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && func_echo_all "${wl}-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' - hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' + allow_undefined_flag_CXX=' $wl-expect_unresolved $wl\*' + archive_cmds_CXX='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $soname `test -n "$verstring" && func_echo_all "$wl-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' + hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' ;; *) allow_undefined_flag_CXX=' -expect_unresolved \*' - archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + archive_cmds_CXX='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' archive_expsym_cmds_CXX='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ - echo "-hidden">> $lib.exp~ - $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~ - $RM $lib.exp' + echo "-hidden">> $lib.exp~ + $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname $wl-input $wl$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~ + $RM $lib.exp' hardcode_libdir_flag_spec_CXX='-rpath $libdir' ;; esac @@ -13560,21 +14070,21 @@ fi # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) - if test "$GXX" = yes && test "$with_gnu_ld" = no; then - allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' + if test yes,no = "$GXX,$with_gnu_ld"; then + allow_undefined_flag_CXX=' $wl-expect_unresolved $wl\*' case $host in osf3*) - archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + archive_cmds_CXX='$CC -shared -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' ;; *) - archive_cmds_CXX='$CC -shared $pic_flag -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' ;; esac - hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' + hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists @@ -13620,9 +14130,9 @@ fi # Sun C++ 4.2, 5.x and Centerline C++ archive_cmds_need_lc_CXX=yes no_undefined_flag_CXX=' -zdefs' - archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + archive_cmds_CXX='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + $CC -G$allow_undefined_flag $wl-M $wl$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' hardcode_libdir_flag_spec_CXX='-R$libdir' hardcode_shlibpath_var_CXX=no @@ -13630,7 +14140,7 @@ fi solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine and reorder linker options, - # but understands `-z linker_flag'. + # but understands '-z linker_flag'. # Supported since Solaris 2.6 (maybe 2.5.1?) whole_archive_flag_spec_CXX='-z allextract$convenience -z defaultextract' ;; @@ -13647,30 +14157,30 @@ fi ;; gcx*) # Green Hills C++ Compiler - archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. old_archive_cmds_CXX='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker - if test "$GXX" = yes && test "$with_gnu_ld" = no; then - no_undefined_flag_CXX=' ${wl}-z ${wl}defs' + if test yes,no = "$GXX,$with_gnu_ld"; then + no_undefined_flag_CXX=' $wl-z ${wl}defs' if $CC --version | $GREP -v '^2\.7' > /dev/null; then - archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -shared $pic_flag -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + $CC -shared $pic_flag -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else - # g++ 2.7 appears to require `-G' NOT `-shared' on this + # g++ 2.7 appears to require '-G' NOT '-shared' on this # platform. - archive_cmds_CXX='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + archive_cmds_CXX='$CC -G -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + $CC -G -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when @@ -13678,11 +14188,11 @@ fi output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' fi - hardcode_libdir_flag_spec_CXX='${wl}-R $wl$libdir' + hardcode_libdir_flag_spec_CXX='$wl-R $wl$libdir' case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) - whole_archive_flag_spec_CXX='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + whole_archive_flag_spec_CXX='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' ;; esac fi @@ -13691,52 +14201,52 @@ fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) - no_undefined_flag_CXX='${wl}-z,text' + no_undefined_flag_CXX='$wl-z,text' archive_cmds_need_lc_CXX=no hardcode_shlibpath_var_CXX=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) - archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_cmds_CXX='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_CXX='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) - archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_cmds_CXX='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_CXX='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) - # Note: We can NOT use -z defs as we might desire, because we do not + # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. - no_undefined_flag_CXX='${wl}-z,text' - allow_undefined_flag_CXX='${wl}-z,nodefs' + no_undefined_flag_CXX='$wl-z,text' + allow_undefined_flag_CXX='$wl-z,nodefs' archive_cmds_need_lc_CXX=no hardcode_shlibpath_var_CXX=no - hardcode_libdir_flag_spec_CXX='${wl}-R,$libdir' + hardcode_libdir_flag_spec_CXX='$wl-R,$libdir' hardcode_libdir_separator_CXX=':' link_all_deplibs_CXX=yes - export_dynamic_flag_spec_CXX='${wl}-Bexport' + export_dynamic_flag_spec_CXX='$wl-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) - archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_cmds_CXX='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_CXX='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' old_archive_cmds_CXX='$CC -Tprelink_objects $oldobjs~ - '"$old_archive_cmds_CXX" + '"$old_archive_cmds_CXX" reload_cmds_CXX='$CC -Tprelink_objects $reload_objs~ - '"$reload_cmds_CXX" + '"$reload_cmds_CXX" ;; *) - archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_cmds_CXX='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_CXX='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; @@ -13768,10 +14278,10 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 $as_echo "$ld_shlibs_CXX" >&6; } - test "$ld_shlibs_CXX" = no && can_build_shared=no + test no = "$ld_shlibs_CXX" && can_build_shared=no - GCC_CXX="$GXX" - LD_CXX="$LD" + GCC_CXX=$GXX + LD_CXX=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change @@ -13815,13 +14325,13 @@ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 pre_test_object_deps_done=no for p in `eval "$output_verbose_link_cmd"`; do - case ${prev}${p} in + case $prev$p in -L* | -R* | -l*) # Some compilers place space between "-{L,R}" and the path. # Remove the space. - if test $p = "-L" || - test $p = "-R"; then + if test x-L = "$p" || + test x-R = "$p"; then prev=$p continue fi @@ -13837,16 +14347,16 @@ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 case $p in =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; esac - if test "$pre_test_object_deps_done" = no; then - case ${prev} in + if test no = "$pre_test_object_deps_done"; then + case $prev in -L | -R) # Internal compiler library paths should come after those # provided the user. The postdeps already come after the # user supplied libs so there is no need to process them. if test -z "$compiler_lib_search_path_CXX"; then - compiler_lib_search_path_CXX="${prev}${p}" + compiler_lib_search_path_CXX=$prev$p else - compiler_lib_search_path_CXX="${compiler_lib_search_path_CXX} ${prev}${p}" + compiler_lib_search_path_CXX="${compiler_lib_search_path_CXX} $prev$p" fi ;; # The "-l" case would never come before the object being @@ -13854,9 +14364,9 @@ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 esac else if test -z "$postdeps_CXX"; then - postdeps_CXX="${prev}${p}" + postdeps_CXX=$prev$p else - postdeps_CXX="${postdeps_CXX} ${prev}${p}" + postdeps_CXX="${postdeps_CXX} $prev$p" fi fi prev= @@ -13871,15 +14381,15 @@ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 continue fi - if test "$pre_test_object_deps_done" = no; then + if test no = "$pre_test_object_deps_done"; then if test -z "$predep_objects_CXX"; then - predep_objects_CXX="$p" + predep_objects_CXX=$p else predep_objects_CXX="$predep_objects_CXX $p" fi else if test -z "$postdep_objects_CXX"; then - postdep_objects_CXX="$p" + postdep_objects_CXX=$p else postdep_objects_CXX="$postdep_objects_CXX $p" fi @@ -13909,51 +14419,6 @@ interix[3-9]*) postdep_objects_CXX= postdeps_CXX= ;; - -linux*) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - # Sun C++ 5.9 - - # The more standards-conforming stlport4 library is - # incompatible with the Cstd library. Avoid specifying - # it if it's in CXXFLAGS. Ignore libCrun as - # -library=stlport4 depends on it. - case " $CXX $CXXFLAGS " in - *" -library=stlport4 "*) - solaris_use_stlport4=yes - ;; - esac - - if test "$solaris_use_stlport4" != yes; then - postdeps_CXX='-library=Cstd -library=Crun' - fi - ;; - esac - ;; - -solaris*) - case $cc_basename in - CC* | sunCC*) - # The more standards-conforming stlport4 library is - # incompatible with the Cstd library. Avoid specifying - # it if it's in CXXFLAGS. Ignore libCrun as - # -library=stlport4 depends on it. - case " $CXX $CXXFLAGS " in - *" -library=stlport4 "*) - solaris_use_stlport4=yes - ;; - esac - - # Adding this requires a known-good setup of shared libraries for - # Sun compiler versions before 5.6, else PIC objects from an old - # archive will be linked into the output, leading to subtle bugs. - if test "$solaris_use_stlport4" != yes; then - postdeps_CXX='-library=Cstd -library=Crun' - fi - ;; - esac - ;; esac @@ -13962,7 +14427,7 @@ case " $postdeps_CXX " in esac compiler_lib_search_dirs_CXX= if test -n "${compiler_lib_search_path_CXX}"; then - compiler_lib_search_dirs_CXX=`echo " ${compiler_lib_search_path_CXX}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` + compiler_lib_search_dirs_CXX=`echo " ${compiler_lib_search_path_CXX}" | $SED -e 's! -L! !g' -e 's!^ !!'` fi @@ -14001,17 +14466,18 @@ lt_prog_compiler_static_CXX= # C++ specific cases for pic, static, wl, etc. - if test "$GXX" = yes; then + if test yes = "$GXX"; then lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='-static' case $host_os in aix*) # All AIX code is PIC. - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_CXX='-Bstatic' fi + lt_prog_compiler_pic_CXX='-fPIC' ;; amigaos*) @@ -14022,8 +14488,8 @@ lt_prog_compiler_static_CXX= ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but - # adding the `-m68020' flag to GCC prevents building anything better, - # like `-m68040'. + # adding the '-m68020' flag to GCC prevents building anything better, + # like '-m68040'. lt_prog_compiler_pic_CXX='-m68020 -resident32 -malways-restore-a4' ;; esac @@ -14038,6 +14504,11 @@ lt_prog_compiler_static_CXX= # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries lt_prog_compiler_pic_CXX='-DDLL_EXPORT' + case $host_os in + os2*) + lt_prog_compiler_static_CXX='$wl-static' + ;; + esac ;; darwin* | rhapsody*) # PIC is the default on this platform @@ -14087,7 +14558,7 @@ lt_prog_compiler_static_CXX= case $host_os in aix[4-9]*) # All AIX code is PIC. - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_CXX='-Bstatic' else @@ -14127,14 +14598,14 @@ lt_prog_compiler_static_CXX= case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' - lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' - if test "$host_cpu" != ia64; then + lt_prog_compiler_static_CXX='$wl-a ${wl}archive' + if test ia64 != "$host_cpu"; then lt_prog_compiler_pic_CXX='+Z' fi ;; aCC*) lt_prog_compiler_wl_CXX='-Wl,' - lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' + lt_prog_compiler_static_CXX='$wl-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default @@ -14163,7 +14634,7 @@ lt_prog_compiler_static_CXX= ;; esac ;; - linux* | k*bsd*-gnu | kopensolaris*-gnu) + linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # KAI C++ Compiler @@ -14171,7 +14642,7 @@ lt_prog_compiler_static_CXX= lt_prog_compiler_pic_CXX='-fPIC' ;; ecpc* ) - # old Intel C++ for x86_64 which still supported -KPIC. + # old Intel C++ for x86_64, which still supported -KPIC. lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-static' @@ -14316,7 +14787,7 @@ lt_prog_compiler_static_CXX= fi case $host_os in - # For platforms which do not support PIC, -DPIC is meaningless: + # For platforms that do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic_CXX= ;; @@ -14348,7 +14819,7 @@ else lt_cv_prog_compiler_pic_works_CXX=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext - lt_compiler_flag="$lt_prog_compiler_pic_CXX -DPIC" + lt_compiler_flag="$lt_prog_compiler_pic_CXX -DPIC" ## exclude from sc_useless_quotes_in_assignment # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins @@ -14378,7 +14849,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works_CXX" >&5 $as_echo "$lt_cv_prog_compiler_pic_works_CXX" >&6; } -if test x"$lt_cv_prog_compiler_pic_works_CXX" = xyes; then +if test yes = "$lt_cv_prog_compiler_pic_works_CXX"; then case $lt_prog_compiler_pic_CXX in "" | " "*) ;; *) lt_prog_compiler_pic_CXX=" $lt_prog_compiler_pic_CXX" ;; @@ -14404,7 +14875,7 @@ if ${lt_cv_prog_compiler_static_works_CXX+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_static_works_CXX=no - save_LDFLAGS="$LDFLAGS" + save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS $lt_tmp_static_flag" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then @@ -14423,13 +14894,13 @@ else fi fi $RM -r conftest* - LDFLAGS="$save_LDFLAGS" + LDFLAGS=$save_LDFLAGS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works_CXX" >&5 $as_echo "$lt_cv_prog_compiler_static_works_CXX" >&6; } -if test x"$lt_cv_prog_compiler_static_works_CXX" = xyes; then +if test yes = "$lt_cv_prog_compiler_static_works_CXX"; then : else lt_prog_compiler_static_CXX= @@ -14543,8 +15014,8 @@ $as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; } -hard_links="nottested" -if test "$lt_cv_prog_compiler_c_o_CXX" = no && test "$need_locks" != no; then +hard_links=nottested +if test no = "$lt_cv_prog_compiler_c_o_CXX" && test no != "$need_locks"; then # do not overwrite the value of need_locks provided by the user { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 $as_echo_n "checking if we can lock with hard links... " >&6; } @@ -14556,9 +15027,9 @@ $as_echo_n "checking if we can lock with hard links... " >&6; } ln conftest.a conftest.b 2>/dev/null && hard_links=no { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 $as_echo "$hard_links" >&6; } - if test "$hard_links" = no; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 -$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} + if test no = "$hard_links"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&5 +$as_echo "$as_me: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&2;} need_locks=warn fi else @@ -14575,17 +15046,21 @@ $as_echo_n "checking whether the $compiler linker ($LD) supports shared librarie case $host_os in aix[4-9]*) # If we're using GNU nm, then we don't want the "-C" option. - # -C means demangle to AIX nm, but means don't demangle with GNU nm - # Also, AIX nm treats weak defined symbols like other global defined - # symbols, whereas GNU nm marks them as "W". + # -C means demangle to GNU nm, but means don't demangle to AIX nm. + # Without the "-l" option, or with the "-B" option, AIX nm treats + # weak defined symbols like other global defined symbols, whereas + # GNU nm marks them as "W". + # While the 'weak' keyword is ignored in the Export File, we need + # it in the Import File for the 'aix-soname' feature, so we have + # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then - export_symbols_cmds_CXX='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + export_symbols_cmds_CXX='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else - export_symbols_cmds_CXX='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + export_symbols_cmds_CXX='`func_echo_all $NM | $SED -e '\''s/B\([^B]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && (substr(\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi ;; pw32*) - export_symbols_cmds_CXX="$ltdll_cmds" + export_symbols_cmds_CXX=$ltdll_cmds ;; cygwin* | mingw* | cegcc*) case $cc_basename in @@ -14605,7 +15080,7 @@ $as_echo_n "checking whether the $compiler linker ($LD) supports shared librarie { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 $as_echo "$ld_shlibs_CXX" >&6; } -test "$ld_shlibs_CXX" = no && can_build_shared=no +test no = "$ld_shlibs_CXX" && can_build_shared=no with_gnu_ld_CXX=$with_gnu_ld @@ -14622,7 +15097,7 @@ x|xyes) # Assume -lc should be added archive_cmds_need_lc_CXX=yes - if test "$enable_shared" = yes && test "$GCC" = yes; then + if test yes,yes = "$GCC,$enable_shared"; then case $archive_cmds_CXX in *'~'*) # FIXME: we may have to deal with multi-command sequences. @@ -14750,7 +15225,7 @@ $as_echo_n "checking dynamic linker characteristics... " >&6; } library_names_spec= libname_spec='lib$name' soname_spec= -shrext_cmds=".so" +shrext_cmds=.so postinstall_cmds= postuninstall_cmds= finish_cmds= @@ -14767,14 +15242,16 @@ hardcode_into_libs=no # flags to be left without arguments need_version=unknown + + case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' + library_names_spec='$libname$release$shared_ext$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. - soname_spec='${libname}${release}${shared_ext}$major' + soname_spec='$libname$release$shared_ext$major' ;; aix[4-9]*) @@ -14782,41 +15259,91 @@ aix[4-9]*) need_lib_prefix=no need_version=no hardcode_into_libs=yes - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 supports IA64 - library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with - # the line `#! .'. This would cause the generated library to - # depend on `.', always an invalid library. This was fixed in + # the line '#! .'. This would cause the generated library to + # depend on '.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' - echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then + echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac - # AIX (on Power*) has no versioning support, so currently we can not hardcode correct + # Using Import Files as archive members, it is possible to support + # filename-based versioning of shared library archives on AIX. While + # this would work for both with and without runtime linking, it will + # prevent static linking of such archives. So we do filename-based + # shared library versioning with .so extension only, which is used + # when both runtime linking and shared linking is enabled. + # Unfortunately, runtime linking may impact performance, so we do + # not want this to be the default eventually. Also, we use the + # versioned .so libs for executables only if there is the -brtl + # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only. + # To allow for filename-based versioning support, we need to create + # libNAME.so.V as an archive file, containing: + # *) an Import File, referring to the versioned filename of the + # archive as well as the shared archive member, telling the + # bitwidth (32 or 64) of that shared object, and providing the + # list of exported symbols of that shared object, eventually + # decorated with the 'weak' keyword + # *) the shared object with the F_LOADONLY flag set, to really avoid + # it being seen by the linker. + # At run time we better use the real file rather than another symlink, + # but for link time we create the symlink libNAME.so -> libNAME.so.V + + case $with_aix_soname,$aix_use_runtimelinking in + # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. - if test "$aix_use_runtimelinking" = yes; then + aix,yes) # traditional libtool + dynamic_linker='AIX unversionable lib.so' # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - else + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + ;; + aix,no) # traditional AIX only + dynamic_linker='AIX lib.a(lib.so.V)' # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. - library_names_spec='${libname}${release}.a $libname.a' - soname_spec='${libname}${release}${shared_ext}$major' - fi + library_names_spec='$libname$release.a $libname.a' + soname_spec='$libname$release$shared_ext$major' + ;; + svr4,*) # full svr4 only + dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o)" + library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' + # We do not specify a path in Import Files, so LIBPATH fires. + shlibpath_overrides_runpath=yes + ;; + *,yes) # both, prefer svr4 + dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o), lib.a(lib.so.V)" + library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' + # unpreferred sharedlib libNAME.a needs extra handling + postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' + postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' + # We do not specify a path in Import Files, so LIBPATH fires. + shlibpath_overrides_runpath=yes + ;; + *,no) # both, prefer aix + dynamic_linker="AIX lib.a(lib.so.V), lib.so.V($shared_archive_member_spec.o)" + library_names_spec='$libname$release.a $libname.a' + soname_spec='$libname$release$shared_ext$major' + # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling + postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' + postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' + ;; + esac shlibpath_var=LIBPATH fi ;; @@ -14826,18 +15353,18 @@ amigaos*) powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. - finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) - library_names_spec='${libname}${shared_ext}' + library_names_spec='$libname$shared_ext' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; @@ -14845,8 +15372,8 @@ beos*) bsdi[45]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" @@ -14858,7 +15385,7 @@ bsdi[45]*) cygwin* | mingw* | pw32* | cegcc*) version_type=windows - shrext_cmds=".dll" + shrext_cmds=.dll need_version=no need_lib_prefix=no @@ -14867,8 +15394,8 @@ cygwin* | mingw* | pw32* | cegcc*) # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \${file}`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ @@ -14884,16 +15411,16 @@ cygwin* | mingw* | pw32* | cegcc*) case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' - soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix - soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' - library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' ;; esac dynamic_linker='Win32 ld.exe' @@ -14902,8 +15429,8 @@ cygwin* | mingw* | pw32* | cegcc*) *,cl*) # Native MSVC libname_spec='$name' - soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' - library_names_spec='${libname}.dll.lib' + soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' + library_names_spec='$libname.dll.lib' case $build_os in mingw*) @@ -14930,7 +15457,7 @@ cygwin* | mingw* | pw32* | cegcc*) sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) - sys_lib_search_path_spec="$LIB" + sys_lib_search_path_spec=$LIB if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` @@ -14943,8 +15470,8 @@ cygwin* | mingw* | pw32* | cegcc*) esac # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \${file}`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' @@ -14957,7 +15484,7 @@ cygwin* | mingw* | pw32* | cegcc*) *) # Assume MSVC wrapper - library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' + library_names_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac @@ -14970,8 +15497,8 @@ darwin* | rhapsody*) version_type=darwin need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' - soname_spec='${libname}${release}${major}$shared_ext' + library_names_spec='$libname$release$major$shared_ext $libname$shared_ext' + soname_spec='$libname$release$major$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' @@ -14983,8 +15510,8 @@ dgux*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; @@ -15002,12 +15529,13 @@ freebsd* | dragonfly*) version_type=freebsd-$objformat case $version_type in freebsd-elf*) - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' need_version=no need_lib_prefix=no ;; freebsd-*) - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' need_version=yes ;; esac @@ -15032,26 +15560,15 @@ freebsd* | dragonfly*) esac ;; -gnu*) - version_type=linux # correct to gnu/linux during the next big refactor - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LIBRARY_PATH - shlibpath_overrides_runpath=yes + shlibpath_overrides_runpath=no sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; @@ -15069,14 +15586,15 @@ hpux9* | hpux10* | hpux11*) dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - if test "X$HPUX_IA64_MODE" = X32; then + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + if test 32 = "$HPUX_IA64_MODE"; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" + sys_lib_dlsearch_path_spec=/usr/lib/hpux32 else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" + sys_lib_dlsearch_path_spec=/usr/lib/hpux64 fi - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' @@ -15084,8 +15602,8 @@ hpux9* | hpux10* | hpux11*) dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; @@ -15094,8 +15612,8 @@ hpux9* | hpux10* | hpux11*) dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... @@ -15108,8 +15626,8 @@ interix[3-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no @@ -15120,7 +15638,7 @@ irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) - if test "$lt_cv_prog_gnu_ld" = yes; then + if test yes = "$lt_cv_prog_gnu_ld"; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix @@ -15128,8 +15646,8 @@ irix5* | irix6* | nonstopux*) esac need_lib_prefix=no need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' + soname_spec='$libname$release$shared_ext$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= @@ -15148,8 +15666,8 @@ irix5* | irix6* | nonstopux*) esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no - sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" - sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" + sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff" + sys_lib_dlsearch_path_spec="/usr/lib$libsuff /lib$libsuff" hardcode_into_libs=yes ;; @@ -15158,13 +15676,33 @@ linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; +linux*android*) + version_type=none # Android doesn't support versioned libraries. + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext' + soname_spec='$libname$release$shared_ext' + finish_cmds= + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + dynamic_linker='Android linker' + # Don't embed -rpath directories since the linker doesn't support them. + hardcode_libdir_flag_spec_CXX='-L$libdir' + ;; + # This must be glibc/ELF. -linux* | k*bsd*-gnu | kopensolaris*-gnu) +linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no @@ -15211,11 +15749,15 @@ fi # Add ABI-specific directories to the system library path. sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib" - # Append ld.so.conf contents to the search path + # Ideally, we could use ldconfig to report *all* directores which are + # searched for libraries, however this is still not possible. Aside from not + # being certain /sbin/ldconfig is available, command + # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64, + # even though it is searched at run-time. Try to do the best guess by + # appending ld.so.conf contents (and includes) to the search path. if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" - fi # We used to test for /lib/ld.so.1 and disable shared libraries on @@ -15232,12 +15774,12 @@ netbsd*) need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH @@ -15247,7 +15789,7 @@ netbsd*) newsos6) version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; @@ -15256,58 +15798,68 @@ newsos6) version_type=qnx need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; -openbsd*) +openbsd* | bitrig*) version_type=sunos - sys_lib_dlsearch_path_spec="/usr/lib" + sys_lib_dlsearch_path_spec=/usr/lib need_lib_prefix=no - # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. - case $host_os in - openbsd3.3 | openbsd3.3.*) need_version=yes ;; - *) need_version=no ;; - esac - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then + need_version=no + else + need_version=yes + fi + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - case $host_os in - openbsd2.[89] | openbsd2.[89].*) - shlibpath_overrides_runpath=no - ;; - *) - shlibpath_overrides_runpath=yes - ;; - esac - else - shlibpath_overrides_runpath=yes - fi + shlibpath_overrides_runpath=yes ;; os2*) libname_spec='$name' - shrext_cmds=".dll" + version_type=windows + shrext_cmds=.dll + need_version=no need_lib_prefix=no - library_names_spec='$libname${shared_ext} $libname.a' + # OS/2 can only load a DLL with a base name of 8 characters or less. + soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; + v=$($ECHO $release$versuffix | tr -d .-); + n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); + $ECHO $n$v`$shared_ext' + library_names_spec='${libname}_dll.$libext' dynamic_linker='OS/2 ld.exe' - shlibpath_var=LIBPATH + shlibpath_var=BEGINLIBPATH + sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='$libname$release$shared_ext$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" - sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; rdos*) @@ -15318,8 +15870,8 @@ solaris*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes @@ -15329,11 +15881,11 @@ solaris*) sunos4*) version_type=sunos - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes - if test "$with_gnu_ld" = yes; then + if test yes = "$with_gnu_ld"; then need_lib_prefix=no fi need_version=yes @@ -15341,8 +15893,8 @@ sunos4*) sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) @@ -15363,24 +15915,24 @@ sysv4 | sysv4.3*) ;; sysv4*MP*) - if test -d /usr/nec ;then + if test -d /usr/nec; then version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' - soname_spec='$libname${shared_ext}.$major' + library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext' + soname_spec='$libname$shared_ext.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - version_type=freebsd-elf + version_type=sco need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes - if test "$with_gnu_ld" = yes; then + if test yes = "$with_gnu_ld"; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' @@ -15398,7 +15950,7 @@ tpf*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes @@ -15406,8 +15958,8 @@ tpf*) uts4*) version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; @@ -15417,20 +15969,32 @@ uts4*) esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 $as_echo "$dynamic_linker" >&6; } -test "$dynamic_linker" = no && can_build_shared=no +test no = "$dynamic_linker" && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" -if test "$GCC" = yes; then +if test yes = "$GCC"; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi -if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then - sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" +if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then + sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec fi -if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then - sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" + +if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then + sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec fi +# remember unaugmented sys_lib_dlsearch_path content for libtool script decls... +configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec + +# ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code +func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH" + +# to be used as default LT_SYS_LIBRARY_PATH value in generated libtool +configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH + + + @@ -15473,15 +16037,15 @@ $as_echo_n "checking how to hardcode library paths into programs... " >&6; } hardcode_action_CXX= if test -n "$hardcode_libdir_flag_spec_CXX" || test -n "$runpath_var_CXX" || - test "X$hardcode_automatic_CXX" = "Xyes" ; then + test yes = "$hardcode_automatic_CXX"; then # We can hardcode non-existent directories. - if test "$hardcode_direct_CXX" != no && + if test no != "$hardcode_direct_CXX" && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one - ## test "$_LT_TAGVAR(hardcode_shlibpath_var, CXX)" != no && - test "$hardcode_minus_L_CXX" != no; then + ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, CXX)" && + test no != "$hardcode_minus_L_CXX"; then # Linking always hardcodes the temporary library directory. hardcode_action_CXX=relink else @@ -15496,12 +16060,12 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action_CXX" >&5 $as_echo "$hardcode_action_CXX" >&6; } -if test "$hardcode_action_CXX" = relink || - test "$inherit_rpath_CXX" = yes; then +if test relink = "$hardcode_action_CXX" || + test yes = "$inherit_rpath_CXX"; then # Fast installation is not supported enable_fast_install=no -elif test "$shlibpath_overrides_runpath" = yes || - test "$enable_shared" = no; then +elif test yes = "$shlibpath_overrides_runpath" || + test no = "$enable_shared"; then # Fast installation is not necessary enable_fast_install=needless fi @@ -15524,7 +16088,7 @@ fi lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld -fi # test "$_lt_caught_CXX_error" != yes +fi # test yes != "$_lt_caught_CXX_error" ac_ext=c ac_cpp='$CPP $CPPFLAGS' @@ -15674,7 +16238,6 @@ EOF test -d modules || $php_shtool mkdir modules -touch .deps ac_config_headers="$ac_config_headers config.h" @@ -16366,6 +16929,7 @@ enable_shared='`$ECHO "$enable_shared" | $SED "$delay_single_quote_subst"`' enable_static='`$ECHO "$enable_static" | $SED "$delay_single_quote_subst"`' pic_mode='`$ECHO "$pic_mode" | $SED "$delay_single_quote_subst"`' enable_fast_install='`$ECHO "$enable_fast_install" | $SED "$delay_single_quote_subst"`' +shared_archive_member_spec='`$ECHO "$shared_archive_member_spec" | $SED "$delay_single_quote_subst"`' SHELL='`$ECHO "$SHELL" | $SED "$delay_single_quote_subst"`' ECHO='`$ECHO "$ECHO" | $SED "$delay_single_quote_subst"`' PATH_SEPARATOR='`$ECHO "$PATH_SEPARATOR" | $SED "$delay_single_quote_subst"`' @@ -16415,10 +16979,13 @@ compiler='`$ECHO "$compiler" | $SED "$delay_single_quote_subst"`' GCC='`$ECHO "$GCC" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_pipe='`$ECHO "$lt_cv_sys_global_symbol_pipe" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_cdecl='`$ECHO "$lt_cv_sys_global_symbol_to_cdecl" | $SED "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_to_import='`$ECHO "$lt_cv_sys_global_symbol_to_import" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $SED "$delay_single_quote_subst"`' +lt_cv_nm_interface='`$ECHO "$lt_cv_nm_interface" | $SED "$delay_single_quote_subst"`' nm_file_list_spec='`$ECHO "$nm_file_list_spec" | $SED "$delay_single_quote_subst"`' lt_sysroot='`$ECHO "$lt_sysroot" | $SED "$delay_single_quote_subst"`' +lt_cv_truncate_bin='`$ECHO "$lt_cv_truncate_bin" | $SED "$delay_single_quote_subst"`' objdir='`$ECHO "$objdir" | $SED "$delay_single_quote_subst"`' MAGIC_CMD='`$ECHO "$MAGIC_CMD" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_no_builtin_flag='`$ECHO "$lt_prog_compiler_no_builtin_flag" | $SED "$delay_single_quote_subst"`' @@ -16483,7 +17050,8 @@ finish_cmds='`$ECHO "$finish_cmds" | $SED "$delay_single_quote_subst"`' finish_eval='`$ECHO "$finish_eval" | $SED "$delay_single_quote_subst"`' hardcode_into_libs='`$ECHO "$hardcode_into_libs" | $SED "$delay_single_quote_subst"`' sys_lib_search_path_spec='`$ECHO "$sys_lib_search_path_spec" | $SED "$delay_single_quote_subst"`' -sys_lib_dlsearch_path_spec='`$ECHO "$sys_lib_dlsearch_path_spec" | $SED "$delay_single_quote_subst"`' +configure_time_dlsearch_path='`$ECHO "$configure_time_dlsearch_path" | $SED "$delay_single_quote_subst"`' +configure_time_lt_sys_library_path='`$ECHO "$configure_time_lt_sys_library_path" | $SED "$delay_single_quote_subst"`' hardcode_action='`$ECHO "$hardcode_action" | $SED "$delay_single_quote_subst"`' enable_dlopen='`$ECHO "$enable_dlopen" | $SED "$delay_single_quote_subst"`' enable_dlopen_self='`$ECHO "$enable_dlopen_self" | $SED "$delay_single_quote_subst"`' @@ -16588,9 +17156,12 @@ CFLAGS \ compiler \ lt_cv_sys_global_symbol_pipe \ lt_cv_sys_global_symbol_to_cdecl \ +lt_cv_sys_global_symbol_to_import \ lt_cv_sys_global_symbol_to_c_name_address \ lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ +lt_cv_nm_interface \ nm_file_list_spec \ +lt_cv_truncate_bin \ lt_prog_compiler_no_builtin_flag \ lt_prog_compiler_pic \ lt_prog_compiler_wl \ @@ -16656,7 +17227,7 @@ postdeps_CXX \ compiler_lib_search_path_CXX; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) - eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" @@ -16683,7 +17254,8 @@ postinstall_cmds \ postuninstall_cmds \ finish_cmds \ sys_lib_search_path_spec \ -sys_lib_dlsearch_path_spec \ +configure_time_dlsearch_path \ +configure_time_lt_sys_library_path \ reload_cmds_CXX \ old_archive_cmds_CXX \ old_archive_from_new_cmds_CXX \ @@ -16697,7 +17269,7 @@ prelink_cmds_CXX \ postlink_cmds_CXX; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) - eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" @@ -16706,19 +17278,16 @@ postlink_cmds_CXX; do done ac_aux_dir='$ac_aux_dir' -xsi_shell='$xsi_shell' -lt_shell_append='$lt_shell_append' -# See if we are running on zsh, and set the options which allow our +# See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes INIT. -if test -n "\${ZSH_VERSION+set}" ; then +if test -n "\${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi PACKAGE='$PACKAGE' VERSION='$VERSION' - TIMESTAMP='$TIMESTAMP' RM='$RM' ofile='$ofile' @@ -17052,55 +17621,53 @@ $as_echo "$as_me: executing $ac_file commands" >&6;} case $ac_file$ac_mode in "libtool":C) - # See if we are running on zsh, and set the options which allow our + # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes. - if test -n "${ZSH_VERSION+set}" ; then + if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi - cfgfile="${ofile}T" + cfgfile=${ofile}T trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL - -# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. -# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION +# Generated automatically by $as_me ($PACKAGE) $VERSION # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # NOTE: Changes made to this file will be lost: look at ltmain.sh. + +# Provide generalized library-building support services. +# Written by Gordon Matzigkeit, 1996 + +# Copyright (C) 2014 Free Software Foundation, Inc. +# This is free software; see the source for copying conditions. There is NO +# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +# GNU Libtool is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of of the License, or +# (at your option) any later version. # -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, -# 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. -# Written by Gordon Matzigkeit, 1996 +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program or library that is built +# using GNU Libtool, you may include this file under the same +# distribution terms that you use for the rest of that program. # -# This file is part of GNU Libtool. -# -# GNU Libtool is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License as -# published by the Free Software Foundation; either version 2 of -# the License, or (at your option) any later version. -# -# As a special exception to the GNU General Public License, -# if you distribute this file as part of a program or library that -# is built using GNU Libtool, you may include this file under the -# same distribution terms that you use for the rest of that program. -# -# GNU Libtool is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of +# GNU Libtool is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with GNU Libtool; see the file COPYING. If not, a copy -# can be downloaded from http://www.gnu.org/licenses/gpl.html, or -# obtained by writing to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# along with this program. If not, see . # The names of the tagged configurations supported by this script. -available_tags="CXX " +available_tags='CXX ' + +# Configured defaults for sys_lib_dlsearch_path munging. +: \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"} # ### BEGIN LIBTOOL CONFIG @@ -17120,6 +17687,9 @@ pic_mode=$pic_mode # Whether or not to optimize for fast installation. fast_install=$enable_fast_install +# Shared archive member basename,for filename based shared library versioning on AIX. +shared_archive_member_spec=$shared_archive_member_spec + # Shell to use when invoking shell scripts. SHELL=$lt_SHELL @@ -17237,18 +17807,27 @@ global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration. global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl +# Transform the output of nm into a list of symbols to manually relocate. +global_symbol_to_import=$lt_lt_cv_sys_global_symbol_to_import + # Transform the output of nm in a C name address pair. global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # Transform the output of nm in a C name address pair when lib prefix is needed. global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix +# The name lister interface. +nm_interface=$lt_lt_cv_nm_interface + # Specify filename containing input files for \$NM. nm_file_list_spec=$lt_nm_file_list_spec -# The root where to search for dependent libraries,and in which our libraries should be installed. +# The root where to search for dependent libraries,and where our libraries should be installed. lt_sysroot=$lt_sysroot +# Command to truncate a binary pipe. +lt_truncate_bin=$lt_lt_cv_truncate_bin + # The name of the directory that contains temporary libtool files. objdir=$objdir @@ -17339,8 +17918,11 @@ hardcode_into_libs=$hardcode_into_libs # Compile-time system search path for libraries. sys_lib_search_path_spec=$lt_sys_lib_search_path_spec -# Run-time system search path for libraries. -sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec +# Detected run-time system search path for libraries. +sys_lib_dlsearch_path_spec=$lt_configure_time_dlsearch_path + +# Explicit LT_SYS_LIBRARY_PATH set during ./configure time. +configure_time_lt_sys_library_path=$lt_configure_time_lt_sys_library_path # Whether dlopen is supported. dlopen_support=$enable_dlopen @@ -17433,13 +18015,13 @@ hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec # Whether we need a single "-rpath" flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator -# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary. hardcode_direct=$hardcode_direct -# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary and the resulting library dependency is -# "absolute",i.e impossible to change by setting \${shlibpath_var} if the +# "absolute",i.e impossible to change by setting \$shlibpath_var if the # library is relocated. hardcode_direct_absolute=$hardcode_direct_absolute @@ -17503,6 +18085,65 @@ compiler_lib_search_path=$lt_compiler_lib_search_path # ### END LIBTOOL CONFIG +_LT_EOF + + cat <<'_LT_EOF' >> "$cfgfile" + +# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE + +# func_munge_path_list VARIABLE PATH +# ----------------------------------- +# VARIABLE is name of variable containing _space_ separated list of +# directories to be munged by the contents of PATH, which is string +# having a format: +# "DIR[:DIR]:" +# string "DIR[ DIR]" will be prepended to VARIABLE +# ":DIR[:DIR]" +# string "DIR[ DIR]" will be appended to VARIABLE +# "DIRP[:DIRP]::[DIRA:]DIRA" +# string "DIRP[ DIRP]" will be prepended to VARIABLE and string +# "DIRA[ DIRA]" will be appended to VARIABLE +# "DIR[:DIR]" +# VARIABLE will be replaced by "DIR[ DIR]" +func_munge_path_list () +{ + case x$2 in + x) + ;; + *:) + eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" + ;; + x:*) + eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" + ;; + *::*) + eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" + eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" + ;; + *) + eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" + ;; + esac +} + + +# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. +func_cc_basename () +{ + for cc_temp in $*""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac + done + func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` +} + + +# ### END FUNCTIONS SHARED WITH CONFIGURE + _LT_EOF case $host_os in @@ -17511,7 +18152,7 @@ _LT_EOF # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. -if test "X${COLLECT_NAMES+set}" != Xset; then +if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi @@ -17520,7 +18161,7 @@ _LT_EOF esac -ltmain="$ac_aux_dir/ltmain.sh" +ltmain=$ac_aux_dir/ltmain.sh # We use sed instead of cat because bash on DJGPP gets confused if @@ -17530,165 +18171,6 @@ ltmain="$ac_aux_dir/ltmain.sh" sed '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) - if test x"$xsi_shell" = xyes; then - sed -e '/^func_dirname ()$/,/^} # func_dirname /c\ -func_dirname ()\ -{\ -\ case ${1} in\ -\ */*) func_dirname_result="${1%/*}${2}" ;;\ -\ * ) func_dirname_result="${3}" ;;\ -\ esac\ -} # Extended-shell func_dirname implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_basename ()$/,/^} # func_basename /c\ -func_basename ()\ -{\ -\ func_basename_result="${1##*/}"\ -} # Extended-shell func_basename implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_dirname_and_basename ()$/,/^} # func_dirname_and_basename /c\ -func_dirname_and_basename ()\ -{\ -\ case ${1} in\ -\ */*) func_dirname_result="${1%/*}${2}" ;;\ -\ * ) func_dirname_result="${3}" ;;\ -\ esac\ -\ func_basename_result="${1##*/}"\ -} # Extended-shell func_dirname_and_basename implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_stripname ()$/,/^} # func_stripname /c\ -func_stripname ()\ -{\ -\ # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are\ -\ # positional parameters, so assign one to ordinary parameter first.\ -\ func_stripname_result=${3}\ -\ func_stripname_result=${func_stripname_result#"${1}"}\ -\ func_stripname_result=${func_stripname_result%"${2}"}\ -} # Extended-shell func_stripname implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_split_long_opt ()$/,/^} # func_split_long_opt /c\ -func_split_long_opt ()\ -{\ -\ func_split_long_opt_name=${1%%=*}\ -\ func_split_long_opt_arg=${1#*=}\ -} # Extended-shell func_split_long_opt implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_split_short_opt ()$/,/^} # func_split_short_opt /c\ -func_split_short_opt ()\ -{\ -\ func_split_short_opt_arg=${1#??}\ -\ func_split_short_opt_name=${1%"$func_split_short_opt_arg"}\ -} # Extended-shell func_split_short_opt implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_lo2o ()$/,/^} # func_lo2o /c\ -func_lo2o ()\ -{\ -\ case ${1} in\ -\ *.lo) func_lo2o_result=${1%.lo}.${objext} ;;\ -\ *) func_lo2o_result=${1} ;;\ -\ esac\ -} # Extended-shell func_lo2o implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_xform ()$/,/^} # func_xform /c\ -func_xform ()\ -{\ - func_xform_result=${1%.*}.lo\ -} # Extended-shell func_xform implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_arith ()$/,/^} # func_arith /c\ -func_arith ()\ -{\ - func_arith_result=$(( $* ))\ -} # Extended-shell func_arith implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_len ()$/,/^} # func_len /c\ -func_len ()\ -{\ - func_len_result=${#1}\ -} # Extended-shell func_len implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - -fi - -if test x"$lt_shell_append" = xyes; then - sed -e '/^func_append ()$/,/^} # func_append /c\ -func_append ()\ -{\ - eval "${1}+=\\${2}"\ -} # Extended-shell func_append implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_append_quoted ()$/,/^} # func_append_quoted /c\ -func_append_quoted ()\ -{\ -\ func_quote_for_eval "${2}"\ -\ eval "${1}+=\\\\ \\$func_quote_for_eval_result"\ -} # Extended-shell func_append_quoted implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - # Save a `func_append' function call where possible by direct use of '+=' - sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") - test 0 -eq $? || _lt_function_replace_fail=: -else - # Save a `func_append' function call even when '+=' is not available - sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") - test 0 -eq $? || _lt_function_replace_fail=: -fi - -if test x"$_lt_function_replace_fail" = x":"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Unable to substitute extended shell functions in $ofile" >&5 -$as_echo "$as_me: WARNING: Unable to substitute extended shell functions in $ofile" >&2;} -fi - - mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" @@ -17775,13 +18257,13 @@ hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX # Whether we need a single "-rpath" flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX -# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary. hardcode_direct=$hardcode_direct_CXX -# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary and the resulting library dependency is -# "absolute",i.e impossible to change by setting \${shlibpath_var} if the +# "absolute",i.e impossible to change by setting \$shlibpath_var if the # library is relocated. hardcode_direct_absolute=$hardcode_direct_absolute_CXX diff --git a/coregrade/src/core/coregrade_api.cc b/coregrade/src/core/coregrade_api.cc index 5246122..a8ad03b 100644 --- a/coregrade/src/core/coregrade_api.cc +++ b/coregrade/src/core/coregrade_api.cc @@ -12,225 +12,261 @@ #include -using namespace std; - zend_object_handlers coregrade_object_handlers; -struct coregrade_object { - zend_object std; +typedef struct _coregrade_object { CoreGrade *coregrade; -}; + zend_object std; +} coregrade_object; + +static inline coregrade_object *php_coregrade_obj_from_obj(zend_object *obj) { + return (coregrade_object*)((char*)(obj) - XtOffsetOf(coregrade_object, std)); +} + +#define Z_TSTOBJ_P(zv) php_coregrade_obj_from_obj(Z_OBJ_P((zv))) zend_class_entry *coregrade_ce; -void coregrade_free_storage(void *object TSRMLS_DC) -{ - coregrade_object *obj = (coregrade_object *)object; - delete obj->coregrade; - - zend_hash_destroy(obj->std.properties); - FREE_HASHTABLE(obj->std.properties); - - efree(obj); -} - -zend_object_value coregrade_create_handler(zend_class_entry *type TSRMLS_DC) -{ - zval *tmp; - zend_object_value retval; - - coregrade_object *obj = (coregrade_object *)emalloc(sizeof(coregrade_object)); - memset(obj, 0, sizeof(coregrade_object)); - obj->std.ce = type; - - ALLOC_HASHTABLE(obj->std.properties); - zend_hash_init(obj->std.properties, 0, NULL, ZVAL_PTR_DTOR, 0); -#if PHP_VERSION_ID < 50399 - zend_hash_copy(obj->std.properties, &type->default_properties, - (copy_ctor_func_t)zval_add_ref, (void *)&tmp, sizeof(zval *)); -#else - object_properties_init((zend_object*) &(obj->std), type); -#endif - retval.handle = zend_objects_store_put(obj, NULL, - coregrade_free_storage, NULL TSRMLS_CC); - retval.handlers = &coregrade_object_handlers; - - return retval; -} - #define SET_ENV( env ) \ -if (zend_hash_find(Z_ARRVAL_PP(array), env, sizeof(env), (void **) &token) == SUCCESS) {\ - setenv( env, Z_STRVAL_PP(token), 1 ); \ - logfmt( logINFO, env " = %s", Z_STRVAL_PP(token) ); \ +if (NULL != (token = zend_hash_str_find(_SERVER, env, sizeof(env)-1))) {\ + setenv( env, Z_STRVAL_P(token), 1 ); \ + logfmt( logINFO, env " = %s", Z_STRVAL_P(token) ); \ } else {\ unsetenv( env );\ } +// ------------------------------------------------------------------ +// ------------------------------------------------------------------ PHP_METHOD(CoreGrade, __construct) { - CoreGrade *coregrade = NULL; - zval *object = getThis(); + HashTable *_SERVER; + zval *token; + zval *id = getThis(); + coregrade_object *intern; - coregrade = new CoreGrade(); - coregrade_object *obj = (coregrade_object *)zend_object_store_get_object(object TSRMLS_CC); - obj->coregrade = coregrade; - - zval **array; - zval **token; - - zend_is_auto_global("_SERVER", sizeof("_SERVER")-1 TSRMLS_CC); - if (zend_hash_find(&EG(symbol_table), "_SERVER", sizeof("_SERVER"), (void **) &array) == SUCCESS && - Z_TYPE_PP(array) == IS_ARRAY) { - logfmt( logINFO, "_SERVER found" ); - SET_ENV( "REMOTE_ADDR" ); - SET_ENV( "SERVER_NAME" ); - SET_ENV( "HTTP_COOKIE" ); - SET_ENV( "QUERY_STRING" ); - SET_ENV( "HTTP_X_FORWARDED_FOR" ); - } else { - logfmt( logINFO, "_SERVER not found" ); + intern = Z_TSTOBJ_P(id); + if(intern != NULL) { + intern->coregrade = new CoreGrade(); + // Load some _SERVER data into environment + zend_string *_server = zend_string_init("_SERVER", strlen("_SERVER"), 0); + zend_is_auto_global(_server); + if (Z_TYPE(PG(http_globals)[TRACK_VARS_SERVER]) == IS_UNDEF) { + logfmt( logINFO, "_SERVER not found" ); + } else { + logfmt( logINFO, "_SERVER found" ); + _SERVER = Z_ARRVAL(PG(http_globals)[TRACK_VARS_SERVER]); + SET_ENV( "REMOTE_ADDR" ); + SET_ENV( "SERVER_NAME" ); + SET_ENV( "HTTP_COOKIE" ); + SET_ENV( "QUERY_STRING" ); + SET_ENV( "HTTP_X_FORWARDED_FOR" ); + } + zend_string_release(_server); } } + +// ------------------------------------------------------------------ // ------------------------------------------------------------------ PHP_METHOD(CoreGrade, coregrade_api) { zval *param, *param_out; + zval *id = getThis(); + coregrade_object *intern; CVars input, output; - CoreGrade *coregrade; - coregrade_object *obj = (coregrade_object *)zend_object_store_get_object( - getThis() TSRMLS_CC); - coregrade = obj->coregrade; - if (coregrade != NULL) { - if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, const_cast("zz"), ¶m, ¶m_out ) == FAILURE ) { - // Bad parameters - RETURN_NULL(); - } - if (!PZVAL_IS_REF(param_out)) { - // out is not a reference - /* This is not relevant in PHP 5.4 */ -#if PHP_VERSION_ID < 50399 - zend_error(E_WARNING, "Second parameter wasn't passed by reference"); - RETURN_NULL(); -#endif - } - HashTable *hash; - char *key; - uint key_len; - zval **value; - - convert_to_array_ex( ¶m ); - hash = HASH_OF( param ); - zend_hash_internal_pointer_reset( hash ); - - while ( zend_hash_get_current_key( hash, &key, /*num_index*/ NULL, /*duplicate*/ false ) == HASH_KEY_IS_STRING ) { - zend_hash_get_current_data( hash, (void**)&value ); - convert_to_string_ex( value ); - input[ key ] = Z_STRVAL_PP(value); - zend_hash_move_forward( hash ); - } - - long retval = coregrade->coregrade_api(input, output); - - convert_to_array_ex( ¶m_out ); - - CVars::iterator i; - int j = 0; - char out_key[200], out_value[200]; - for ( i=output.begin(); i != output.end() && j<200 ; i++ ) { - j++; - logfmt( logINFO, "RET: %s=%s", i->first.c_str(), i->second.c_str() ); - strsafecpy( out_key, i->first.c_str(), sizeof(out_key) ); - strsafecpy( out_value, i->second.c_str(), sizeof(out_value) ); - add_assoc_string( param_out, out_key, out_value, true ); - } - - RETURN_LONG(retval); + + if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "zz", ¶m, ¶m_out) == FAILURE) { + // Bad parameters + RETURN_NULL(); } + + intern = Z_TSTOBJ_P(id); + if(intern != NULL) { + // Convert input + + HashTable *hash; + zend_string *key, val; + ulong num_key; + uint key_len; + zval *value; + convert_to_array_ex( param ); + hash = HASH_OF( param ); + zend_hash_internal_pointer_reset( hash ); + ZEND_HASH_FOREACH_KEY_VAL(hash, num_key, key, value) { + if (key) { //HASH_KEY_IS_STRING + if (Z_TYPE_P(value) == IS_STRING) { + input[ ZSTR_VAL(key) ] = Z_STRVAL_P(value); + /* + } else if (Z_TYPE_P(value) == IS_LONG) { + input[ ZSTR_VAL(key) ] = Z_LVAL_P(value); + } else if (Z_TYPE_P(value) == IS_DOUBLE) { + input[ ZSTR_VAL(key) ] = Z_DVAL_P(value); + } else if (Z_TYPE_P(value) == _IS_BOOL) { + input[ ZSTR_VAL(key) ] = Z_BVAL(value) ? 1L : 0L; + } else if (Z_TYPE_P(value) == IS_NULL) { + input[ ZSTR_VAL(key) ] = ""; */ + } else { + //logfmt( logINFO, "Item %s has unsupported value type", ZSTR_VAL(key) ); + convert_to_string(value); + input[ ZSTR_VAL(key) ] = Z_STRVAL_P(value); + } + } + } ZEND_HASH_FOREACH_END(); + + long retval = intern->coregrade->coregrade_api(input, output); + + // Convert output + convert_to_array_ex( param_out ); + CVars::iterator i; + int j = 0; + const int out_size = output.size(); // 200 + const int out_value_size = 200; + char out_key[out_value_size], out_value[out_value_size]; + for ( i=output.begin(); i != output.end() && jfirst.c_str(), i->second.c_str() ); + strsafecpy( out_key, i->first.c_str(), out_value_size ); + strsafecpy( out_value, i->second.c_str(), out_value_size ); + add_assoc_string( param_out, out_key, out_value); + } + + RETURN_LONG(retval); + } + RETURN_NULL(); } + +// ------------------------------------------------------------------ // ------------------------------------------------------------------ PHP_METHOD(CoreGrade, cfgReadChar) { - CoreGrade *coregrade; - coregrade_object *obj = (coregrade_object *)zend_object_store_get_object( - getThis() TSRMLS_CC); - coregrade = obj->coregrade; - if (coregrade != NULL) { - char *parameter; - int parameter_len; - if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, const_cast("s"), ¶meter, ¶meter_len) == FAILURE) { - RETURN_NULL(); - } - if (parameter_len == 0) { - RETURN_NULL(); - } - RETURN_STRING(coregrade->cfgReadChar(parameter),1); + unsigned char *parameter; + zval *id = getThis(); + coregrade_object *intern; + + if (zend_parse_parameters( + ZEND_NUM_ARGS() TSRMLS_CC, "s", ¶meter) == FAILURE) { + RETURN_NULL(); + } + + intern = Z_TSTOBJ_P(id); + if(intern != NULL) { + std::string s = intern->coregrade->cfgReadChar((char*)parameter); + RETURN_STRING(s.c_str()); } RETURN_NULL(); } + +// ------------------------------------------------------------------ // ------------------------------------------------------------------ PHP_METHOD(CoreGrade, cfgReadLong) { - CoreGrade *coregrade; - coregrade_object *obj = (coregrade_object *)zend_object_store_get_object( - getThis() TSRMLS_CC); - coregrade = obj->coregrade; - if (coregrade != NULL) { - char *parameter; - int parameter_len; - if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, const_cast("s"), ¶meter, ¶meter_len) == FAILURE) { - RETURN_NULL(); - } - if (parameter_len == 0) { - RETURN_NULL(); - } - RETURN_LONG(coregrade->cfgReadLong(parameter)); + unsigned char *parameter; + zval *id = getThis(); + coregrade_object *intern; + + if (zend_parse_parameters( + ZEND_NUM_ARGS() TSRMLS_CC, "s", ¶meter) == FAILURE) { + RETURN_NULL(); + } + + intern = Z_TSTOBJ_P(id); + if(intern != NULL) { + RETURN_LONG(intern->coregrade->cfgReadLong((char*)parameter)); } RETURN_NULL(); } + +// ------------------------------------------------------------------ // ------------------------------------------------------------------ PHP_METHOD(CoreGrade, logMessage) { - CoreGrade *coregrade; - coregrade_object *obj = (coregrade_object *)zend_object_store_get_object( - getThis() TSRMLS_CC); - coregrade = obj->coregrade; - if (coregrade != NULL) { - char *message; - int message_len; - if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, const_cast("s"), &message, &message_len) == FAILURE) { - RETURN_FALSE; - } - if (message_len == 0) { - RETURN_FALSE; - } - coregrade->logMessage((const char *)message); + unsigned char *message; + zval *id = getThis(); + coregrade_object *intern; + + if (zend_parse_parameters( + ZEND_NUM_ARGS() TSRMLS_CC, "s", &message) == FAILURE) { + RETURN_FALSE; } - RETURN_TRUE; + + intern = Z_TSTOBJ_P(id); + if(intern != NULL) { + intern->coregrade->logMessage((char*)message); + RETURN_TRUE; + } + RETURN_FALSE; } -#if PHP_VERSION_ID < 50399 -function_entry coregrade_methods[] = { -#else -zend_function_entry coregrade_methods[] = { -#endif - PHP_ME(CoreGrade, __construct, NULL, ZEND_ACC_PUBLIC | ZEND_ACC_CTOR) - PHP_ME(CoreGrade, coregrade_api, NULL, ZEND_ACC_PUBLIC) - PHP_ME(CoreGrade, cfgReadChar, NULL, ZEND_ACC_PUBLIC) - PHP_ME(CoreGrade, cfgReadLong, NULL, ZEND_ACC_PUBLIC) - PHP_ME(CoreGrade, logMessage, NULL, ZEND_ACC_PUBLIC) - {NULL, NULL, NULL} + +// ------------------------------------------------------------------ // ------------------------------------------------------------------ +const zend_function_entry coregrade_methods[] = { + PHP_ME(CoreGrade, __construct, NULL, ZEND_ACC_PUBLIC | ZEND_ACC_CTOR) + PHP_ME(CoreGrade, coregrade_api, NULL, ZEND_ACC_PUBLIC) + PHP_ME(CoreGrade, cfgReadChar, NULL, ZEND_ACC_PUBLIC) + PHP_ME(CoreGrade, cfgReadLong, NULL, ZEND_ACC_PUBLIC) + PHP_ME(CoreGrade, logMessage, NULL, ZEND_ACC_PUBLIC) + PHP_FE_END }; -PHP_MINIT_FUNCTION(coregrade_api) +// ------------------------------------------------------------------ // ------------------------------------------------------------------ +zend_object *coregrade_object_new(zend_class_entry *ce TSRMLS_DC) +{ + coregrade_object *intern = (coregrade_object*)ecalloc(1, + sizeof(coregrade_object) + + zend_object_properties_size(ce)); + + zend_object_std_init(&intern->std, ce TSRMLS_CC); + object_properties_init(&intern->std, ce); + + intern->std.handlers = &coregrade_object_handlers; + + return &intern->std; +} + +// ------------------------------------------------------------------ // ------------------------------------------------------------------ +static void coregrade_object_destroy(zend_object *object) +{ + coregrade_object *my_obj; + my_obj = (coregrade_object*)((char *) + object - XtOffsetOf(coregrade_object, std)); + + // Call __destruct() from user-land. + zend_objects_destroy_object(object); +} + +static void coregrade_object_free(zend_object *object) +{ + coregrade_object *my_obj; + my_obj = (coregrade_object *)((char *) + object - XtOffsetOf(coregrade_object, std)); + delete my_obj->coregrade; + // Free the object using Zend macro. + zend_object_std_dtor(object); +} + +// ------------------------------------------------------------------ // ------------------------------------------------------------------ +PHP_MINIT_FUNCTION(coregrade_api_oameye) { zend_class_entry ce; - INIT_NS_CLASS_ENTRY(ce, COREGRADE_API_NS, "CoreGrade", coregrade_methods); - //INIT_CLASS_ENTRY(ce, "CoreGrade", coregrade_methods); + INIT_NS_CLASS_ENTRY(ce, COREGRADE_API_OAMEYE_NS, "CoreGrade", coregrade_methods); coregrade_ce = zend_register_internal_class(&ce TSRMLS_CC); - coregrade_ce->create_object = coregrade_create_handler; - memcpy(&coregrade_object_handlers, - zend_get_std_object_handlers(), sizeof(zend_object_handlers)); - coregrade_object_handlers.clone_obj = NULL; + coregrade_ce->create_object = coregrade_object_new; + + memcpy(&coregrade_object_handlers, + zend_get_std_object_handlers(), + sizeof(coregrade_object_handlers)); + + // Handler for free'ing the object. + coregrade_object_handlers.free_obj = coregrade_object_free; + + // Handler for the destructor. + coregrade_object_handlers.dtor_obj = coregrade_object_destroy; + + // Offset into the engine. + coregrade_object_handlers.offset = XtOffsetOf(coregrade_object, std); + return SUCCESS; } -PHP_MINFO_FUNCTION(coregrade_api) +// ------------------------------------------------------------------ // ------------------------------------------------------------------ +PHP_MINFO_FUNCTION(coregrade_api_oameye) { php_info_print_table_start(); php_info_print_table_row(2, "COREGRADE API support", "enabled"); @@ -238,29 +274,31 @@ PHP_MINFO_FUNCTION(coregrade_api) php_info_print_table_row(2, "Config File", COREGRADE_CONFIG"coregrade_api.conf"); php_info_print_table_row(2, "Build Date", __DATE__); php_info_print_table_row(2, "Build Time", __TIME__); - php_info_print_table_row(2, "COREGRADE API Version", PHP_COREGRADE_API_EXTVER); + php_info_print_table_row(2, "Namespace", COREGRADE_API_OAMEYE_NS); + php_info_print_table_row(2, "Version", PHP_COREGRADE_API_OAMEYE_EXTVER); php_info_print_table_end(); } -zend_module_entry coregrade_api_module_entry = { +// ------------------------------------------------------------------ // ------------------------------------------------------------------ +zend_module_entry coregrade_api_oameye_module_entry = { #if ZEND_MODULE_API_NO >= 20010901 STANDARD_MODULE_HEADER, #endif - COREGRADE_API_NS, + PHP_COREGRADE_API_OAMEYE_EXTNAME, NULL, /* Functions */ - PHP_MINIT(coregrade_api), + PHP_MINIT(coregrade_api_oameye), NULL, /* MSHUTDOWN */ NULL, /* RINIT */ NULL, /* RSHUTDOWN */ - PHP_MINFO(coregrade_api), /* MINFO */ + PHP_MINFO(coregrade_api_oameye), /* MINFO */ #if ZEND_MODULE_API_NO >= 20010901 - PHP_COREGRADE_API_EXTVER, + PHP_COREGRADE_API_OAMEYE_EXTVER, #endif STANDARD_MODULE_PROPERTIES }; -#ifdef COMPILE_DL_COREGRADE_API +//#ifdef COMPILE_DL_COREGRADE_API_OAMEYE extern "C" { -ZEND_GET_MODULE(coregrade_api) + ZEND_GET_MODULE(coregrade_api_oameye) } -#endif +//#endif diff --git a/coregrade/src/core/pgsql_wrapper.cc b/coregrade/src/core/pgsql_wrapper.cc index 0b4bf34..8e5e8da 100644 --- a/coregrade/src/core/pgsql_wrapper.cc +++ b/coregrade/src/core/pgsql_wrapper.cc @@ -9,6 +9,15 @@ #include #include +void map_to_cvars(mapf, CVars &rec) +{ + map::iterator it; + for(it = f.begin(); it != f.end(); it++) { + logfmt( logINFO, "f[%s] = %s", it->first, it->second ); + rec[it->first] = it->second; + } +} + void load_db_record( const char * table, CVars &rec, const char * where, ... ) { logfmt( FLOG_MAX, "void load_db_record( const char * table, CVars &rec, const char * where, ... )"); @@ -162,7 +171,7 @@ long insert_db_record( int mode, const char *table, const char *seq, CVars &rec throw err("Binary parameters are not supported"); } else - vals += string("'") + esc(i->second.c_str()) + "'"; + vals += string("E'") + esc(i->second.c_str()) + "'"; /*strcatf( cols, sizeof(cols), "%s%s", first?"":",", i->first.c_str() ); strcatf( vals, sizeof(vals), "%s'%s'", first?"":",", i->second.c_str() );*/ @@ -217,7 +226,7 @@ void v_update_db_record( int mode, const char * table, CVars &rec, const char *i cols += string(first?"":",") + i->first + "="; if ( ! i->second.binary() ) - cols += string("'") + esc(i->second.c_str()) + "'"; + cols += string("E'") + esc(i->second.c_str()) + "'"; else { /* @@ -339,6 +348,7 @@ char * CEscape::EscapeReal( const char * cmd, char * _esc, int sz ) strnsafecpy( d, c, c1-c, dend-d ); d += strlen(d); + //if (*(c1+0)=='\'') strcatf( d, dend-d, "'%c", *c1 ); strcatf( d, dend-d, "\\%c", *c1 ); d += strlen(d); c = c1+1; diff --git a/coregrade/src/include/php_coregrade_api.h b/coregrade/src/include/php_coregrade_api.h index 52bff5f..36cbb17 100644 --- a/coregrade/src/include/php_coregrade_api.h +++ b/coregrade/src/include/php_coregrade_api.h @@ -1,8 +1,8 @@ -#ifndef PHP_COREGRADE_API_H -#define PHP_COREGRADE_API_H +#ifndef PHP_COREGRADE_API_OAMEYE_H +#define PHP_COREGRADE_API_OAMEYE_H -#define PHP_COREGRADE_API_EXTNAME "coregrade_api" -#define PHP_COREGRADE_API_EXTVER "0.1" +#define PHP_COREGRADE_API_OAMEYE_EXTNAME "coregrade_api_oameye" +#define PHP_COREGRADE_API_OAMEYE_EXTVER "0.1" #ifdef HAVE_CONFIG_H #include "config.h" @@ -12,7 +12,8 @@ extern "C" { #include "php.h" } -extern zend_module_entry coregrade_api_module_entry; -#define phpext_coregrade_api_ptr &coregrade_api_module_entry; +extern zend_module_entry coregrade_api_oameye_module_entry; +#define coregrade_api_oameye_module_ptr &coregrade_api_oameye_module_entry +#define phpext_coregrade_api_oameye_ptr coregrade_api_oameye_module_ptr -#endif /* PHP_COREGRADE_API_H */ +#endif /* PHP_COREGRADE_API_OAMEYE_H */ diff --git a/coregrade/src/include/php_coregrade_api_ns.h b/coregrade/src/include/php_coregrade_api_ns.h index 00fccc0..8f67d18 100644 --- a/coregrade/src/include/php_coregrade_api_ns.h +++ b/coregrade/src/include/php_coregrade_api_ns.h @@ -1 +1 @@ -#define COREGRADE_API_NS "coregrade_api_oameye" +#define COREGRADE_API_OAMEYE_NS "coregrade_api_oameye" diff --git a/coregrade/src/include/php_coregrade_log.h b/coregrade/src/include/php_coregrade_log.h index 5ea2396..46ee225 100644 --- a/coregrade/src/include/php_coregrade_log.h +++ b/coregrade/src/include/php_coregrade_log.h @@ -1 +1 @@ -#define COREGRADE_LOG "/home/oameye/coregrade/coregrade/logs/coregrade_api.log" +#define COREGRADE_LOG "/home/oameye/coregrade/coregrade/logs/coregrade_api_oameye.log" diff --git a/coregrade/src/libtool b/coregrade/src/libtool index de1a0f3..092962f 100755 --- a/coregrade/src/libtool +++ b/coregrade/src/libtool @@ -1,47 +1,45 @@ #! /bin/sh - -# libtool - Provide generalized library-building support services. # Generated automatically by config.status () -# Libtool was configured on host localhost.localdomain: +# Libtool was configured on host cregradedev: # NOTE: Changes made to this file will be lost: look at ltmain.sh. + +# Provide generalized library-building support services. +# Written by Gordon Matzigkeit, 1996 + +# Copyright (C) 2014 Free Software Foundation, Inc. +# This is free software; see the source for copying conditions. There is NO +# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +# GNU Libtool is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of of the License, or +# (at your option) any later version. # -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, -# 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. -# Written by Gordon Matzigkeit, 1996 +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program or library that is built +# using GNU Libtool, you may include this file under the same +# distribution terms that you use for the rest of that program. # -# This file is part of GNU Libtool. -# -# GNU Libtool is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License as -# published by the Free Software Foundation; either version 2 of -# the License, or (at your option) any later version. -# -# As a special exception to the GNU General Public License, -# if you distribute this file as part of a program or library that -# is built using GNU Libtool, you may include this file under the -# same distribution terms that you use for the rest of that program. -# -# GNU Libtool is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of +# GNU Libtool is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with GNU Libtool; see the file COPYING. If not, a copy -# can be downloaded from http://www.gnu.org/licenses/gpl.html, or -# obtained by writing to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# along with this program. If not, see . # The names of the tagged configurations supported by this script. -available_tags="CXX " +available_tags='CXX ' + +# Configured defaults for sys_lib_dlsearch_path munging. +: ${LT_SYS_LIBRARY_PATH=""} # ### BEGIN LIBTOOL CONFIG # Which release of libtool.m4 was used? -macro_version=2.4.2 -macro_revision=1.3337 +macro_version=2.4.6 +macro_revision=2.4.6 # Whether or not to build shared libraries. build_libtool_libs=yes @@ -55,6 +53,9 @@ pic_mode=default # Whether or not to optimize for fast installation. fast_install=yes +# Shared archive member basename,for filename based shared library versioning on AIX. +shared_archive_member_spec= + # Shell to use when invoking shell scripts. SHELL="/bin/sh" @@ -170,20 +171,29 @@ LTCFLAGS="-g -O2" global_symbol_pipe="sed -n -e 's/^.*[ ]\\([ABCDGIRSTW][ABCDGIRSTW]*\\)[ ][ ]*\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2 \\2/p' | sed '/ __gnu_lto/d'" # Transform the output of nm in a proper C declaration. -global_symbol_to_cdecl="sed -n -e 's/^T .* \\(.*\\)\$/extern int \\1();/p' -e 's/^[ABCDGIRSTW]* .* \\(.*\\)\$/extern char \\1;/p'" +global_symbol_to_cdecl="sed -n -e 's/^T .* \\(.*\\)\$/extern int \\1();/p' -e 's/^[ABCDGIRSTW][ABCDGIRSTW]* .* \\(.*\\)\$/extern char \\1;/p'" + +# Transform the output of nm into a list of symbols to manually relocate. +global_symbol_to_import="" # Transform the output of nm in a C name address pair. -global_symbol_to_c_name_address="sed -n -e 's/^: \\([^ ]*\\)[ ]*\$/ {\\\"\\1\\\", (void *) 0},/p' -e 's/^[ABCDGIRSTW]* \\([^ ]*\\) \\([^ ]*\\)\$/ {\"\\2\", (void *) \\&\\2},/p'" +global_symbol_to_c_name_address="sed -n -e 's/^: \\(.*\\) .*\$/ {\"\\1\", (void *) 0},/p' -e 's/^[ABCDGIRSTW][ABCDGIRSTW]* .* \\(.*\\)\$/ {\"\\1\", (void *) \\&\\1},/p'" # Transform the output of nm in a C name address pair when lib prefix is needed. -global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \\([^ ]*\\)[ ]*\$/ {\\\"\\1\\\", (void *) 0},/p' -e 's/^[ABCDGIRSTW]* \\([^ ]*\\) \\(lib[^ ]*\\)\$/ {\"\\2\", (void *) \\&\\2},/p' -e 's/^[ABCDGIRSTW]* \\([^ ]*\\) \\([^ ]*\\)\$/ {\"lib\\2\", (void *) \\&\\2},/p'" +global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \\(.*\\) .*\$/ {\"\\1\", (void *) 0},/p' -e 's/^[ABCDGIRSTW][ABCDGIRSTW]* .* \\(lib.*\\)\$/ {\"\\1\", (void *) \\&\\1},/p' -e 's/^[ABCDGIRSTW][ABCDGIRSTW]* .* \\(.*\\)\$/ {\"lib\\1\", (void *) \\&\\1},/p'" + +# The name lister interface. +nm_interface="BSD nm" # Specify filename containing input files for $NM. nm_file_list_spec="@" -# The root where to search for dependent libraries,and in which our libraries should be installed. +# The root where to search for dependent libraries,and where our libraries should be installed. lt_sysroot= +# Command to truncate a binary pipe. +lt_truncate_bin="/usr/bin/dd bs=4096 count=1" + # The name of the directory that contains temporary libtool files. objdir=.libs @@ -247,10 +257,10 @@ libname_spec="lib\$name" # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME -library_names_spec="\${libname}\${release}\${shared_ext}\$versuffix \${libname}\${release}\${shared_ext}\$major \$libname\${shared_ext}" +library_names_spec="\$libname\$release\$shared_ext\$versuffix \$libname\$release\$shared_ext\$major \$libname\$shared_ext" # The coded name of the library, if different from the real name. -soname_spec="\${libname}\${release}\${shared_ext}\$major" +soname_spec="\$libname\$release\$shared_ext\$major" # Permission mode override for installation of shared libraries. install_override_mode="" @@ -272,10 +282,13 @@ finish_eval="" hardcode_into_libs=yes # Compile-time system search path for libraries. -sys_lib_search_path_spec="/usr/lib/gcc/x86_64-redhat-linux/4.8.5 /usr/lib64 /lib64 " +sys_lib_search_path_spec="/usr/lib/gcc/x86_64-redhat-linux/8 /usr/lib64 /lib64 /usr/lib /lib " -# Run-time system search path for libraries. -sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib /usr/lib64//bind9-export/ /usr/lib64/dyninst /usr/lib64/mysql " +# Detected run-time system search path for libraries. +sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib /usr/lib64//bind9-export/ /usr/lib64/dyninst " + +# Explicit LT_SYS_LIBRARY_PATH set during ./configure time. +configure_time_lt_sys_library_path="" # Whether dlopen is supported. dlopen_support=unknown @@ -329,10 +342,10 @@ build_libtool_need_lc=no allow_libtool_libs_with_static_runtimes=no # Compiler flag to allow reflexive dlopens. -export_dynamic_flag_spec="\${wl}--export-dynamic" +export_dynamic_flag_spec="\$wl--export-dynamic" # Compiler flag to generate shared objects directly from archives. -whole_archive_flag_spec="\${wl}--whole-archive\$convenience \${wl}--no-whole-archive" +whole_archive_flag_spec="\$wl--whole-archive\$convenience \$wl--no-whole-archive" # Whether the compiler copes with passing no objects directly. compiler_needs_object="no" @@ -344,11 +357,11 @@ old_archive_from_new_cmds="" old_archive_from_expsyms_cmds="" # Commands used to build a shared archive. -archive_cmds="\$CC -shared \$pic_flag \$libobjs \$deplibs \$compiler_flags \${wl}-soname \$wl\$soname -o \$lib" +archive_cmds="\$CC -shared \$pic_flag \$libobjs \$deplibs \$compiler_flags \$wl-soname \$wl\$soname -o \$lib" archive_expsym_cmds="echo \\\"{ global:\\\" > \$output_objdir/\$libname.ver~ - cat \$export_symbols | sed -e \\\"s/\\\\(.*\\\\)/\\\\1;/\\\" >> \$output_objdir/\$libname.ver~ - echo \\\"local: *; };\\\" >> \$output_objdir/\$libname.ver~ - \$CC -shared \$pic_flag \$libobjs \$deplibs \$compiler_flags \${wl}-soname \$wl\$soname \${wl}-version-script \${wl}\$output_objdir/\$libname.ver -o \$lib" + cat \$export_symbols | sed -e \\\"s/\\\\(.*\\\\)/\\\\1;/\\\" >> \$output_objdir/\$libname.ver~ + echo \\\"local: *; };\\\" >> \$output_objdir/\$libname.ver~ + \$CC -shared \$pic_flag \$libobjs \$deplibs \$compiler_flags \$wl-soname \$wl\$soname \$wl-version-script \$wl\$output_objdir/\$libname.ver -o \$lib" # Commands used to build a loadable module if different from building # a shared archive. @@ -366,18 +379,18 @@ no_undefined_flag="" # Flag to hardcode $libdir into a binary during linking. # This must work even if $libdir does not exist -hardcode_libdir_flag_spec="\${wl}-rpath \${wl}\$libdir" +hardcode_libdir_flag_spec="\$wl-rpath \$wl\$libdir" # Whether we need a single "-rpath" flag with a separated argument. hardcode_libdir_separator="" -# Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes +# Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes # DIR into the resulting binary. hardcode_direct=no -# Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes +# Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes # DIR into the resulting binary and the resulting library dependency is -# "absolute",i.e impossible to change by setting ${shlibpath_var} if the +# "absolute",i.e impossible to change by setting $shlibpath_var if the # library is relocated. hardcode_direct_absolute=no @@ -442,11 +455,70 @@ compiler_lib_search_path="" # ### END LIBTOOL CONFIG -# libtool (GNU libtool) 2.4.2 +# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE + +# func_munge_path_list VARIABLE PATH +# ----------------------------------- +# VARIABLE is name of variable containing _space_ separated list of +# directories to be munged by the contents of PATH, which is string +# having a format: +# "DIR[:DIR]:" +# string "DIR[ DIR]" will be prepended to VARIABLE +# ":DIR[:DIR]" +# string "DIR[ DIR]" will be appended to VARIABLE +# "DIRP[:DIRP]::[DIRA:]DIRA" +# string "DIRP[ DIRP]" will be prepended to VARIABLE and string +# "DIRA[ DIRA]" will be appended to VARIABLE +# "DIR[:DIR]" +# VARIABLE will be replaced by "DIR[ DIR]" +func_munge_path_list () +{ + case x$2 in + x) + ;; + *:) + eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" + ;; + x:*) + eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" + ;; + *::*) + eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" + eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" + ;; + *) + eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" + ;; + esac +} + + +# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. +func_cc_basename () +{ + for cc_temp in $*""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac + done + func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` +} + + +# ### END FUNCTIONS SHARED WITH CONFIGURE + +#! /bin/sh +## DO NOT EDIT - This file generated from ./build-aux/ltmain.in +## by inline-source v2014-01-03.01 + +# libtool (GNU libtool) 2.4.6 +# Provide generalized library-building support services. # Written by Gordon Matzigkeit , 1996 -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, -# 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. +# Copyright (C) 1996-2015 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. @@ -466,164 +538,670 @@ compiler_lib_search_path="" # General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with GNU Libtool; see the file COPYING. If not, a copy -# can be downloaded from http://www.gnu.org/licenses/gpl.html, -# or obtained by writing to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# along with this program. If not, see . -# Usage: $progname [OPTION]... [MODE-ARG]... -# -# Provide generalized library-building support services. -# -# --config show all configuration variables -# --debug enable verbose shell tracing -# -n, --dry-run display commands without modifying any files -# --features display basic configuration information and exit -# --mode=MODE use operation mode MODE -# --preserve-dup-deps don't remove duplicate dependency libraries -# --quiet, --silent don't print informational messages -# --no-quiet, --no-silent -# print informational messages (default) -# --no-warn don't display warning messages -# --tag=TAG use configuration variables from tag TAG -# -v, --verbose print more informational messages than default -# --no-verbose don't print the extra informational messages -# --version print version information -# -h, --help, --help-all print short, long, or detailed help message -# -# MODE must be one of the following: -# -# clean remove files from the build directory -# compile compile a source file into a libtool object -# execute automatically set library path, then run a program -# finish complete the installation of libtool libraries -# install install libraries or executables -# link create a library or an executable -# uninstall remove libraries from an installed directory -# -# MODE-ARGS vary depending on the MODE. When passed as first option, -# `--mode=MODE' may be abbreviated as `MODE' or a unique abbreviation of that. -# Try `$progname --help --mode=MODE' for a more detailed description of MODE. -# -# When reporting a bug, please describe a test case to reproduce it and -# include the following information: -# -# host-triplet: $host -# shell: $SHELL -# compiler: $LTCC -# compiler flags: $LTCFLAGS -# linker: $LD (gnu? $with_gnu_ld) -# $progname: (GNU libtool) 2.4.2 -# automake: $automake_version -# autoconf: $autoconf_version -# -# Report bugs to . -# GNU libtool home page: . -# General help using GNU software: . PROGRAM=libtool PACKAGE=libtool -VERSION=2.4.2 -TIMESTAMP="" -package_revision=1.3337 +VERSION=2.4.6 +package_revision=2.4.6 -# Be Bourne compatible -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + +## ------ ## +## Usage. ## +## ------ ## + +# Run './libtool --help' for help with using this script from the +# command line. + + +## ------------------------------- ## +## User overridable command paths. ## +## ------------------------------- ## + +# After configure completes, it has a better idea of some of the +# shell tools we need than the defaults used by the functions shared +# with bootstrap, so set those here where they can still be over- +# ridden by the user, but otherwise take precedence. + +: ${AUTOCONF="autoconf"} +: ${AUTOMAKE="automake"} + + +## -------------------------- ## +## Source external libraries. ## +## -------------------------- ## + +# Much of our low-level functionality needs to be sourced from external +# libraries, which are installed to $pkgauxdir. + +# Set a version string for this script. +scriptversion=2015-01-20.17; # UTC + +# General shell script boiler plate, and helper functions. +# Written by Gary V. Vaughan, 2004 + +# Copyright (C) 2004-2015 Free Software Foundation, Inc. +# This is free software; see the source for copying conditions. There is NO +# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. + +# As a special exception to the GNU General Public License, if you distribute +# this file as part of a program or library that is built using GNU Libtool, +# you may include this file under the same distribution terms that you use +# for the rest of that program. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNES FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# Please report bugs or propose patches to gary@gnu.org. + + +## ------ ## +## Usage. ## +## ------ ## + +# Evaluate this file near the top of your script to gain access to +# the functions and variables defined here: +# +# . `echo "$0" | ${SED-sed} 's|[^/]*$||'`/build-aux/funclib.sh +# +# If you need to override any of the default environment variable +# settings, do that before evaluating this file. + + +## -------------------- ## +## Shell normalisation. ## +## -------------------- ## + +# Some shells need a little help to be as Bourne compatible as possible. +# Before doing anything else, make sure all that help has been provided! + +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else - case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac + case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac fi -BIN_SH=xpg4; export BIN_SH # for Tru64 -DUALCASE=1; export DUALCASE # for MKS sh -# A function that is used when there is no print builtin or printf. -func_fallback_echo () -{ - eval 'cat <<_LTECHO_EOF -$1 -_LTECHO_EOF' -} - -# NLS nuisances: We save the old values to restore during execute mode. -lt_user_locale= -lt_safe_locale= -for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES +# NLS nuisances: We save the old values in case they are required later. +_G_user_locale= +_G_safe_locale= +for _G_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do - eval "if test \"\${$lt_var+set}\" = set; then - save_$lt_var=\$$lt_var - $lt_var=C - export $lt_var - lt_user_locale=\"$lt_var=\\\$save_\$lt_var; \$lt_user_locale\" - lt_safe_locale=\"$lt_var=C; \$lt_safe_locale\" + eval "if test set = \"\${$_G_var+set}\"; then + save_$_G_var=\$$_G_var + $_G_var=C + export $_G_var + _G_user_locale=\"$_G_var=\\\$save_\$_G_var; \$_G_user_locale\" + _G_safe_locale=\"$_G_var=C; \$_G_safe_locale\" fi" done -LC_ALL=C -LANGUAGE=C -export LANGUAGE LC_ALL -$lt_unset CDPATH +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH +# Make sure IFS has a sensible default +sp=' ' +nl=' +' +IFS="$sp $nl" + +# There are apparently some retarded systems that use ';' as a PATH separator! +if test "${PATH_SEPARATOR+set}" != set; then + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } +fi + + + +## ------------------------- ## +## Locate command utilities. ## +## ------------------------- ## + + +# func_executable_p FILE +# ---------------------- +# Check that FILE is an executable regular file. +func_executable_p () +{ + test -f "$1" && test -x "$1" +} + + +# func_path_progs PROGS_LIST CHECK_FUNC [PATH] +# -------------------------------------------- +# Search for either a program that responds to --version with output +# containing "GNU", or else returned by CHECK_FUNC otherwise, by +# trying all the directories in PATH with each of the elements of +# PROGS_LIST. +# +# CHECK_FUNC should accept the path to a candidate program, and +# set $func_check_prog_result if it truncates its output less than +# $_G_path_prog_max characters. +func_path_progs () +{ + _G_progs_list=$1 + _G_check_func=$2 + _G_PATH=${3-"$PATH"} + + _G_path_prog_max=0 + _G_path_prog_found=false + _G_save_IFS=$IFS; IFS=${PATH_SEPARATOR-:} + for _G_dir in $_G_PATH; do + IFS=$_G_save_IFS + test -z "$_G_dir" && _G_dir=. + for _G_prog_name in $_G_progs_list; do + for _exeext in '' .EXE; do + _G_path_prog=$_G_dir/$_G_prog_name$_exeext + func_executable_p "$_G_path_prog" || continue + case `"$_G_path_prog" --version 2>&1` in + *GNU*) func_path_progs_result=$_G_path_prog _G_path_prog_found=: ;; + *) $_G_check_func $_G_path_prog + func_path_progs_result=$func_check_prog_result + ;; + esac + $_G_path_prog_found && break 3 + done + done + done + IFS=$_G_save_IFS + test -z "$func_path_progs_result" && { + echo "no acceptable sed could be found in \$PATH" >&2 + exit 1 + } +} + + +# We want to be able to use the functions in this file before configure +# has figured out where the best binaries are kept, which means we have +# to search for them ourselves - except when the results are already set +# where we skip the searches. + +# Unless the user overrides by setting SED, search the path for either GNU +# sed, or the sed that truncates its output the least. +test -z "$SED" && { + _G_sed_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ + for _G_i in 1 2 3 4 5 6 7; do + _G_sed_script=$_G_sed_script$nl$_G_sed_script + done + echo "$_G_sed_script" 2>/dev/null | sed 99q >conftest.sed + _G_sed_script= + + func_check_prog_sed () + { + _G_path_prog=$1 + + _G_count=0 + printf 0123456789 >conftest.in + while : + do + cat conftest.in conftest.in >conftest.tmp + mv conftest.tmp conftest.in + cp conftest.in conftest.nl + echo '' >> conftest.nl + "$_G_path_prog" -f conftest.sed conftest.out 2>/dev/null || break + diff conftest.out conftest.nl >/dev/null 2>&1 || break + _G_count=`expr $_G_count + 1` + if test "$_G_count" -gt "$_G_path_prog_max"; then + # Best one so far, save it but keep looking for a better one + func_check_prog_result=$_G_path_prog + _G_path_prog_max=$_G_count + fi + # 10*(2^10) chars as input seems more than enough + test 10 -lt "$_G_count" && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out + } + + func_path_progs "sed gsed" func_check_prog_sed $PATH:/usr/xpg4/bin + rm -f conftest.sed + SED=$func_path_progs_result +} + + +# Unless the user overrides by setting GREP, search the path for either GNU +# grep, or the grep that truncates its output the least. +test -z "$GREP" && { + func_check_prog_grep () + { + _G_path_prog=$1 + + _G_count=0 + _G_path_prog_max=0 + printf 0123456789 >conftest.in + while : + do + cat conftest.in conftest.in >conftest.tmp + mv conftest.tmp conftest.in + cp conftest.in conftest.nl + echo 'GREP' >> conftest.nl + "$_G_path_prog" -e 'GREP$' -e '-(cannot match)-' conftest.out 2>/dev/null || break + diff conftest.out conftest.nl >/dev/null 2>&1 || break + _G_count=`expr $_G_count + 1` + if test "$_G_count" -gt "$_G_path_prog_max"; then + # Best one so far, save it but keep looking for a better one + func_check_prog_result=$_G_path_prog + _G_path_prog_max=$_G_count + fi + # 10*(2^10) chars as input seems more than enough + test 10 -lt "$_G_count" && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out + } + + func_path_progs "grep ggrep" func_check_prog_grep $PATH:/usr/xpg4/bin + GREP=$func_path_progs_result +} + + +## ------------------------------- ## +## User overridable command paths. ## +## ------------------------------- ## + +# All uppercase variable names are used for environment variables. These +# variables can be overridden by the user before calling a script that +# uses them if a suitable command of that name is not already available +# in the command search PATH. + +: ${CP="cp -f"} +: ${ECHO="printf %s\n"} +: ${EGREP="$GREP -E"} +: ${FGREP="$GREP -F"} +: ${LN_S="ln -s"} +: ${MAKE="make"} +: ${MKDIR="mkdir"} +: ${MV="mv -f"} +: ${RM="rm -f"} +: ${SHELL="${CONFIG_SHELL-/bin/sh}"} + + +## -------------------- ## +## Useful sed snippets. ## +## -------------------- ## + +sed_dirname='s|/[^/]*$||' +sed_basename='s|^.*/||' + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Same as above, but do not quote variable references. +sed_double_quote_subst='s/\(["`\\]\)/\\\1/g' + +# Sed substitution that turns a string into a regex matching for the +# string literally. +sed_make_literal_regex='s|[].[^$\\*\/]|\\&|g' + +# Sed substitution that converts a w32 file name or path +# that contains forward slashes, into one that contains +# (escaped) backslashes. A very naive implementation. +sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' + +# Re-'\' parameter expansions in output of sed_double_quote_subst that +# were '\'-ed in input to the same. If an odd number of '\' preceded a +# '$' in input to sed_double_quote_subst, that '$' was protected from +# expansion. Since each input '\' is now two '\'s, look for any number +# of runs of four '\'s followed by two '\'s and then a '$'. '\' that '$'. +_G_bs='\\' +_G_bs2='\\\\' +_G_bs4='\\\\\\\\' +_G_dollar='\$' +sed_double_backslash="\ + s/$_G_bs4/&\\ +/g + s/^$_G_bs2$_G_dollar/$_G_bs&/ + s/\\([^$_G_bs]\\)$_G_bs2$_G_dollar/\\1$_G_bs2$_G_bs$_G_dollar/g + s/\n//g" + + +## ----------------- ## +## Global variables. ## +## ----------------- ## + +# Except for the global variables explicitly listed below, the following +# functions in the '^func_' namespace, and the '^require_' namespace +# variables initialised in the 'Resource management' section, sourcing +# this file will not pollute your global namespace with anything +# else. There's no portable way to scope variables in Bourne shell +# though, so actually running these functions will sometimes place +# results into a variable named after the function, and often use +# temporary variables in the '^_G_' namespace. If you are careful to +# avoid using those namespaces casually in your sourcing script, things +# should continue to work as you expect. And, of course, you can freely +# overwrite any of the functions or variables defined here before +# calling anything to customize them. + +EXIT_SUCCESS=0 +EXIT_FAILURE=1 +EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. +EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. + +# Allow overriding, eg assuming that you follow the convention of +# putting '$debug_cmd' at the start of all your functions, you can get +# bash to show function call trace with: +# +# debug_cmd='eval echo "${FUNCNAME[0]} $*" >&2' bash your-script-name +debug_cmd=${debug_cmd-":"} +exit_cmd=: + +# By convention, finish your script with: +# +# exit $exit_status +# +# so that you can set exit_status to non-zero if you want to indicate +# something went wrong during execution without actually bailing out at +# the point of failure. +exit_status=$EXIT_SUCCESS # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh # is ksh but when the shell is invoked as "sh" and the current value of # the _XPG environment variable is not equal to 1 (one), the special # positional parameter $0, within a function call, is the name of the # function. -progpath="$0" +progpath=$0 + +# The name of this program. +progname=`$ECHO "$progpath" |$SED "$sed_basename"` + +# Make sure we have an absolute progpath for reexecution: +case $progpath in + [\\/]*|[A-Za-z]:\\*) ;; + *[\\/]*) + progdir=`$ECHO "$progpath" |$SED "$sed_dirname"` + progdir=`cd "$progdir" && pwd` + progpath=$progdir/$progname + ;; + *) + _G_IFS=$IFS + IFS=${PATH_SEPARATOR-:} + for progdir in $PATH; do + IFS=$_G_IFS + test -x "$progdir/$progname" && break + done + IFS=$_G_IFS + test -n "$progdir" || progdir=`pwd` + progpath=$progdir/$progname + ;; +esac +## ----------------- ## +## Standard options. ## +## ----------------- ## -: ${CP="cp -f"} -test "${ECHO+set}" = set || ECHO=${as_echo-'printf %s\n'} -: ${MAKE="make"} -: ${MKDIR="mkdir"} -: ${MV="mv -f"} -: ${RM="rm -f"} -: ${SHELL="${CONFIG_SHELL-/bin/sh}"} -: ${Xsed="$SED -e 1s/^X//"} +# The following options affect the operation of the functions defined +# below, and should be set appropriately depending on run-time para- +# meters passed on the command line. -# Global variables: -EXIT_SUCCESS=0 -EXIT_FAILURE=1 -EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. -EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. +opt_dry_run=false +opt_quiet=false +opt_verbose=false -exit_status=$EXIT_SUCCESS +# Categories 'all' and 'none' are always available. Append any others +# you will pass as the first argument to func_warning from your own +# code. +warning_categories= -# Make sure IFS has a sensible default -lt_nl=' -' -IFS=" $lt_nl" +# By default, display warnings according to 'opt_warning_types'. Set +# 'warning_func' to ':' to elide all warnings, or func_fatal_error to +# treat the next displayed warning as a fatal error. +warning_func=func_warn_and_continue -dirname="s,/[^/]*$,," -basename="s,^.*/,," +# Set to 'all' to display all warnings, 'none' to suppress all +# warnings, or a space delimited list of some subset of +# 'warning_categories' to display only the listed warnings. +opt_warning_types=all -# func_dirname file append nondir_replacement + +## -------------------- ## +## Resource management. ## +## -------------------- ## + +# This section contains definitions for functions that each ensure a +# particular resource (a file, or a non-empty configuration variable for +# example) is available, and if appropriate to extract default values +# from pertinent package files. Call them using their associated +# 'require_*' variable to ensure that they are executed, at most, once. +# +# It's entirely deliberate that calling these functions can set +# variables that don't obey the namespace limitations obeyed by the rest +# of this file, in order that that they be as useful as possible to +# callers. + + +# require_term_colors +# ------------------- +# Allow display of bold text on terminals that support it. +require_term_colors=func_require_term_colors +func_require_term_colors () +{ + $debug_cmd + + test -t 1 && { + # COLORTERM and USE_ANSI_COLORS environment variables take + # precedence, because most terminfo databases neglect to describe + # whether color sequences are supported. + test -n "${COLORTERM+set}" && : ${USE_ANSI_COLORS="1"} + + if test 1 = "$USE_ANSI_COLORS"; then + # Standard ANSI escape sequences + tc_reset='' + tc_bold=''; tc_standout='' + tc_red=''; tc_green='' + tc_blue=''; tc_cyan='' + else + # Otherwise trust the terminfo database after all. + test -n "`tput sgr0 2>/dev/null`" && { + tc_reset=`tput sgr0` + test -n "`tput bold 2>/dev/null`" && tc_bold=`tput bold` + tc_standout=$tc_bold + test -n "`tput smso 2>/dev/null`" && tc_standout=`tput smso` + test -n "`tput setaf 1 2>/dev/null`" && tc_red=`tput setaf 1` + test -n "`tput setaf 2 2>/dev/null`" && tc_green=`tput setaf 2` + test -n "`tput setaf 4 2>/dev/null`" && tc_blue=`tput setaf 4` + test -n "`tput setaf 5 2>/dev/null`" && tc_cyan=`tput setaf 5` + } + fi + } + + require_term_colors=: +} + + +## ----------------- ## +## Function library. ## +## ----------------- ## + +# This section contains a variety of useful functions to call in your +# scripts. Take note of the portable wrappers for features provided by +# some modern shells, which will fall back to slower equivalents on +# less featureful shells. + + +# func_append VAR VALUE +# --------------------- +# Append VALUE onto the existing contents of VAR. + + # We should try to minimise forks, especially on Windows where they are + # unreasonably slow, so skip the feature probes when bash or zsh are + # being used: + if test set = "${BASH_VERSION+set}${ZSH_VERSION+set}"; then + : ${_G_HAVE_ARITH_OP="yes"} + : ${_G_HAVE_XSI_OPS="yes"} + # The += operator was introduced in bash 3.1 + case $BASH_VERSION in + [12].* | 3.0 | 3.0*) ;; + *) + : ${_G_HAVE_PLUSEQ_OP="yes"} + ;; + esac + fi + + # _G_HAVE_PLUSEQ_OP + # Can be empty, in which case the shell is probed, "yes" if += is + # useable or anything else if it does not work. + test -z "$_G_HAVE_PLUSEQ_OP" \ + && (eval 'x=a; x+=" b"; test "a b" = "$x"') 2>/dev/null \ + && _G_HAVE_PLUSEQ_OP=yes + +if test yes = "$_G_HAVE_PLUSEQ_OP" +then + # This is an XSI compatible shell, allowing a faster implementation... + eval 'func_append () + { + $debug_cmd + + eval "$1+=\$2" + }' +else + # ...otherwise fall back to using expr, which is often a shell builtin. + func_append () + { + $debug_cmd + + eval "$1=\$$1\$2" + } +fi + + +# func_append_quoted VAR VALUE +# ---------------------------- +# Quote VALUE and append to the end of shell variable VAR, separated +# by a space. +if test yes = "$_G_HAVE_PLUSEQ_OP"; then + eval 'func_append_quoted () + { + $debug_cmd + + func_quote_for_eval "$2" + eval "$1+=\\ \$func_quote_for_eval_result" + }' +else + func_append_quoted () + { + $debug_cmd + + func_quote_for_eval "$2" + eval "$1=\$$1\\ \$func_quote_for_eval_result" + } +fi + + +# func_append_uniq VAR VALUE +# -------------------------- +# Append unique VALUE onto the existing contents of VAR, assuming +# entries are delimited by the first character of VALUE. For example: +# +# func_append_uniq options " --another-option option-argument" +# +# will only append to $options if " --another-option option-argument " +# is not already present somewhere in $options already (note spaces at +# each end implied by leading space in second argument). +func_append_uniq () +{ + $debug_cmd + + eval _G_current_value='`$ECHO $'$1'`' + _G_delim=`expr "$2" : '\(.\)'` + + case $_G_delim$_G_current_value$_G_delim in + *"$2$_G_delim"*) ;; + *) func_append "$@" ;; + esac +} + + +# func_arith TERM... +# ------------------ +# Set func_arith_result to the result of evaluating TERMs. + test -z "$_G_HAVE_ARITH_OP" \ + && (eval 'test 2 = $(( 1 + 1 ))') 2>/dev/null \ + && _G_HAVE_ARITH_OP=yes + +if test yes = "$_G_HAVE_ARITH_OP"; then + eval 'func_arith () + { + $debug_cmd + + func_arith_result=$(( $* )) + }' +else + func_arith () + { + $debug_cmd + + func_arith_result=`expr "$@"` + } +fi + + +# func_basename FILE +# ------------------ +# Set func_basename_result to FILE with everything up to and including +# the last / stripped. +if test yes = "$_G_HAVE_XSI_OPS"; then + # If this shell supports suffix pattern removal, then use it to avoid + # forking. Hide the definitions single quotes in case the shell chokes + # on unsupported syntax... + _b='func_basename_result=${1##*/}' + _d='case $1 in + */*) func_dirname_result=${1%/*}$2 ;; + * ) func_dirname_result=$3 ;; + esac' + +else + # ...otherwise fall back to using sed. + _b='func_basename_result=`$ECHO "$1" |$SED "$sed_basename"`' + _d='func_dirname_result=`$ECHO "$1" |$SED "$sed_dirname"` + if test "X$func_dirname_result" = "X$1"; then + func_dirname_result=$3 + else + func_append func_dirname_result "$2" + fi' +fi + +eval 'func_basename () +{ + $debug_cmd + + '"$_b"' +}' + + +# func_dirname FILE APPEND NONDIR_REPLACEMENT +# ------------------------------------------- # Compute the dirname of FILE. If nonempty, add APPEND to the result, # otherwise set result to NONDIR_REPLACEMENT. -func_dirname () +eval 'func_dirname () { - case ${1} in - */*) func_dirname_result="${1%/*}${2}" ;; - * ) func_dirname_result="${3}" ;; - esac -} # Extended-shell func_dirname implementation + $debug_cmd + + '"$_d"' +}' -# func_basename file -func_basename () -{ - func_basename_result="${1##*/}" -} # Extended-shell func_basename implementation - - -# func_dirname_and_basename file append nondir_replacement -# perform func_basename and func_dirname in a single function +# func_dirname_and_basename FILE APPEND NONDIR_REPLACEMENT +# -------------------------------------------------------- +# Perform func_basename and func_dirname in a single function # call: # dirname: Compute the dirname of FILE. If nonempty, # add APPEND to the result, otherwise set result @@ -631,261 +1209,327 @@ func_basename () # value returned in "$func_dirname_result" # basename: Compute filename of FILE. # value retuned in "$func_basename_result" -# Implementation must be kept synchronized with func_dirname -# and func_basename. For efficiency, we do not delegate to -# those functions but instead duplicate the functionality here. -func_dirname_and_basename () +# For efficiency, we do not delegate to the functions above but instead +# duplicate the functionality here. +eval 'func_dirname_and_basename () { - case ${1} in - */*) func_dirname_result="${1%/*}${2}" ;; - * ) func_dirname_result="${3}" ;; - esac - func_basename_result="${1##*/}" -} # Extended-shell func_dirname_and_basename implementation + $debug_cmd + + '"$_b"' + '"$_d"' +}' -# func_stripname prefix suffix name -# strip PREFIX and SUFFIX off of NAME. -# PREFIX and SUFFIX must not contain globbing or regex special -# characters, hashes, percent signs, but SUFFIX may contain a leading -# dot (in which case that matches only a dot). -# func_strip_suffix prefix name -func_stripname () +# func_echo ARG... +# ---------------- +# Echo program name prefixed message. +func_echo () { - # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are - # positional parameters, so assign one to ordinary parameter first. - func_stripname_result=${3} - func_stripname_result=${func_stripname_result#"${1}"} - func_stripname_result=${func_stripname_result%"${2}"} -} # Extended-shell func_stripname implementation + $debug_cmd + + _G_message=$* + + func_echo_IFS=$IFS + IFS=$nl + for _G_line in $_G_message; do + IFS=$func_echo_IFS + $ECHO "$progname: $_G_line" + done + IFS=$func_echo_IFS +} -# These SED scripts presuppose an absolute path with a trailing slash. -pathcar='s,^/\([^/]*\).*$,\1,' -pathcdr='s,^/[^/]*,,' -removedotparts=':dotsl - s@/\./@/@g - t dotsl - s,/\.$,/,' -collapseslashes='s@/\{1,\}@/@g' -finalslash='s,/*$,/,' +# func_echo_all ARG... +# -------------------- +# Invoke $ECHO with all args, space-separated. +func_echo_all () +{ + $ECHO "$*" +} + + +# func_echo_infix_1 INFIX ARG... +# ------------------------------ +# Echo program name, followed by INFIX on the first line, with any +# additional lines not showing INFIX. +func_echo_infix_1 () +{ + $debug_cmd + + $require_term_colors + + _G_infix=$1; shift + _G_indent=$_G_infix + _G_prefix="$progname: $_G_infix: " + _G_message=$* + + # Strip color escape sequences before counting printable length + for _G_tc in "$tc_reset" "$tc_bold" "$tc_standout" "$tc_red" "$tc_green" "$tc_blue" "$tc_cyan" + do + test -n "$_G_tc" && { + _G_esc_tc=`$ECHO "$_G_tc" | $SED "$sed_make_literal_regex"` + _G_indent=`$ECHO "$_G_indent" | $SED "s|$_G_esc_tc||g"` + } + done + _G_indent="$progname: "`echo "$_G_indent" | $SED 's|.| |g'`" " ## exclude from sc_prohibit_nested_quotes + + func_echo_infix_1_IFS=$IFS + IFS=$nl + for _G_line in $_G_message; do + IFS=$func_echo_infix_1_IFS + $ECHO "$_G_prefix$tc_bold$_G_line$tc_reset" >&2 + _G_prefix=$_G_indent + done + IFS=$func_echo_infix_1_IFS +} + + +# func_error ARG... +# ----------------- +# Echo program name prefixed message to standard error. +func_error () +{ + $debug_cmd + + $require_term_colors + + func_echo_infix_1 " $tc_standout${tc_red}error$tc_reset" "$*" >&2 +} + + +# func_fatal_error ARG... +# ----------------------- +# Echo program name prefixed message to standard error, and exit. +func_fatal_error () +{ + $debug_cmd + + func_error "$*" + exit $EXIT_FAILURE +} + + +# func_grep EXPRESSION FILENAME +# ----------------------------- +# Check whether EXPRESSION matches any line of FILENAME, without output. +func_grep () +{ + $debug_cmd + + $GREP "$1" "$2" >/dev/null 2>&1 +} + + +# func_len STRING +# --------------- +# Set func_len_result to the length of STRING. STRING may not +# start with a hyphen. + test -z "$_G_HAVE_XSI_OPS" \ + && (eval 'x=a/b/c; + test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ + && _G_HAVE_XSI_OPS=yes + +if test yes = "$_G_HAVE_XSI_OPS"; then + eval 'func_len () + { + $debug_cmd + + func_len_result=${#1} + }' +else + func_len () + { + $debug_cmd + + func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len` + } +fi + + +# func_mkdir_p DIRECTORY-PATH +# --------------------------- +# Make sure the entire path to DIRECTORY-PATH is available. +func_mkdir_p () +{ + $debug_cmd + + _G_directory_path=$1 + _G_dir_list= + + if test -n "$_G_directory_path" && test : != "$opt_dry_run"; then + + # Protect directory names starting with '-' + case $_G_directory_path in + -*) _G_directory_path=./$_G_directory_path ;; + esac + + # While some portion of DIR does not yet exist... + while test ! -d "$_G_directory_path"; do + # ...make a list in topmost first order. Use a colon delimited + # list incase some portion of path contains whitespace. + _G_dir_list=$_G_directory_path:$_G_dir_list + + # If the last portion added has no slash in it, the list is done + case $_G_directory_path in */*) ;; *) break ;; esac + + # ...otherwise throw away the child directory and loop + _G_directory_path=`$ECHO "$_G_directory_path" | $SED -e "$sed_dirname"` + done + _G_dir_list=`$ECHO "$_G_dir_list" | $SED 's|:*$||'` + + func_mkdir_p_IFS=$IFS; IFS=: + for _G_dir in $_G_dir_list; do + IFS=$func_mkdir_p_IFS + # mkdir can fail with a 'File exist' error if two processes + # try to create one of the directories concurrently. Don't + # stop in that case! + $MKDIR "$_G_dir" 2>/dev/null || : + done + IFS=$func_mkdir_p_IFS + + # Bail out if we (or some other process) failed to create a directory. + test -d "$_G_directory_path" || \ + func_fatal_error "Failed to create '$1'" + fi +} + + +# func_mktempdir [BASENAME] +# ------------------------- +# Make a temporary directory that won't clash with other running +# libtool processes, and avoids race conditions if possible. If +# given, BASENAME is the basename for that directory. +func_mktempdir () +{ + $debug_cmd + + _G_template=${TMPDIR-/tmp}/${1-$progname} + + if test : = "$opt_dry_run"; then + # Return a directory name, but don't create it in dry-run mode + _G_tmpdir=$_G_template-$$ + else + + # If mktemp works, use that first and foremost + _G_tmpdir=`mktemp -d "$_G_template-XXXXXXXX" 2>/dev/null` + + if test ! -d "$_G_tmpdir"; then + # Failing that, at least try and use $RANDOM to avoid a race + _G_tmpdir=$_G_template-${RANDOM-0}$$ + + func_mktempdir_umask=`umask` + umask 0077 + $MKDIR "$_G_tmpdir" + umask $func_mktempdir_umask + fi + + # If we're not in dry-run mode, bomb out on failure + test -d "$_G_tmpdir" || \ + func_fatal_error "cannot create temporary directory '$_G_tmpdir'" + fi + + $ECHO "$_G_tmpdir" +} + # func_normal_abspath PATH +# ------------------------ # Remove doubled-up and trailing slashes, "." path components, # and cancel out any ".." path components in PATH after making # it an absolute path. -# value returned in "$func_normal_abspath_result" func_normal_abspath () { - # Start from root dir and reassemble the path. - func_normal_abspath_result= - func_normal_abspath_tpath=$1 - func_normal_abspath_altnamespace= - case $func_normal_abspath_tpath in - "") - # Empty path, that just means $cwd. - func_stripname '' '/' "`pwd`" - func_normal_abspath_result=$func_stripname_result - return - ;; - # The next three entries are used to spot a run of precisely - # two leading slashes without using negated character classes; - # we take advantage of case's first-match behaviour. - ///*) - # Unusual form of absolute path, do nothing. - ;; - //*) - # Not necessarily an ordinary path; POSIX reserves leading '//' - # and for example Cygwin uses it to access remote file shares - # over CIFS/SMB, so we conserve a leading double slash if found. - func_normal_abspath_altnamespace=/ - ;; - /*) - # Absolute path, do nothing. - ;; - *) - # Relative path, prepend $cwd. - func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath - ;; - esac - # Cancel out all the simple stuff to save iterations. We also want - # the path to end with a slash for ease of parsing, so make sure - # there is one (and only one) here. - func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ - -e "$removedotparts" -e "$collapseslashes" -e "$finalslash"` - while :; do - # Processed it all yet? - if test "$func_normal_abspath_tpath" = / ; then - # If we ascended to the root using ".." the result may be empty now. - if test -z "$func_normal_abspath_result" ; then - func_normal_abspath_result=/ - fi - break - fi - func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ - -e "$pathcar"` - func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ - -e "$pathcdr"` - # Figure out what to do with it - case $func_normal_abspath_tcomponent in + $debug_cmd + + # These SED scripts presuppose an absolute path with a trailing slash. + _G_pathcar='s|^/\([^/]*\).*$|\1|' + _G_pathcdr='s|^/[^/]*||' + _G_removedotparts=':dotsl + s|/\./|/|g + t dotsl + s|/\.$|/|' + _G_collapseslashes='s|/\{1,\}|/|g' + _G_finalslash='s|/*$|/|' + + # Start from root dir and reassemble the path. + func_normal_abspath_result= + func_normal_abspath_tpath=$1 + func_normal_abspath_altnamespace= + case $func_normal_abspath_tpath in "") - # Trailing empty path component, ignore it. - ;; - ..) - # Parent dir; strip last assembled component from result. - func_dirname "$func_normal_abspath_result" - func_normal_abspath_result=$func_dirname_result - ;; - *) - # Actual path component, append it. - func_normal_abspath_result=$func_normal_abspath_result/$func_normal_abspath_tcomponent - ;; - esac - done - # Restore leading double-slash if one was found on entry. - func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result -} - -# func_relative_path SRCDIR DSTDIR -# generates a relative path from SRCDIR to DSTDIR, with a trailing -# slash if non-empty, suitable for immediately appending a filename -# without needing to append a separator. -# value returned in "$func_relative_path_result" -func_relative_path () -{ - func_relative_path_result= - func_normal_abspath "$1" - func_relative_path_tlibdir=$func_normal_abspath_result - func_normal_abspath "$2" - func_relative_path_tbindir=$func_normal_abspath_result - - # Ascend the tree starting from libdir - while :; do - # check if we have found a prefix of bindir - case $func_relative_path_tbindir in - $func_relative_path_tlibdir) - # found an exact match - func_relative_path_tcancelled= - break + # Empty path, that just means $cwd. + func_stripname '' '/' "`pwd`" + func_normal_abspath_result=$func_stripname_result + return ;; - $func_relative_path_tlibdir*) - # found a matching prefix - func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" - func_relative_path_tcancelled=$func_stripname_result - if test -z "$func_relative_path_result"; then - func_relative_path_result=. - fi - break + # The next three entries are used to spot a run of precisely + # two leading slashes without using negated character classes; + # we take advantage of case's first-match behaviour. + ///*) + # Unusual form of absolute path, do nothing. + ;; + //*) + # Not necessarily an ordinary path; POSIX reserves leading '//' + # and for example Cygwin uses it to access remote file shares + # over CIFS/SMB, so we conserve a leading double slash if found. + func_normal_abspath_altnamespace=/ + ;; + /*) + # Absolute path, do nothing. ;; *) - func_dirname $func_relative_path_tlibdir - func_relative_path_tlibdir=${func_dirname_result} - if test "x$func_relative_path_tlibdir" = x ; then - # Have to descend all the way to the root! - func_relative_path_result=../$func_relative_path_result - func_relative_path_tcancelled=$func_relative_path_tbindir - break - fi - func_relative_path_result=../$func_relative_path_result + # Relative path, prepend $cwd. + func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath ;; esac - done - # Now calculate path; take care to avoid doubling-up slashes. - func_stripname '' '/' "$func_relative_path_result" - func_relative_path_result=$func_stripname_result - func_stripname '/' '/' "$func_relative_path_tcancelled" - if test "x$func_stripname_result" != x ; then - func_relative_path_result=${func_relative_path_result}/${func_stripname_result} - fi - - # Normalisation. If bindir is libdir, return empty string, - # else relative path ending with a slash; either way, target - # file name can be directly appended. - if test ! -z "$func_relative_path_result"; then - func_stripname './' '' "$func_relative_path_result/" - func_relative_path_result=$func_stripname_result - fi + # Cancel out all the simple stuff to save iterations. We also want + # the path to end with a slash for ease of parsing, so make sure + # there is one (and only one) here. + func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$_G_removedotparts" -e "$_G_collapseslashes" -e "$_G_finalslash"` + while :; do + # Processed it all yet? + if test / = "$func_normal_abspath_tpath"; then + # If we ascended to the root using ".." the result may be empty now. + if test -z "$func_normal_abspath_result"; then + func_normal_abspath_result=/ + fi + break + fi + func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$_G_pathcar"` + func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$_G_pathcdr"` + # Figure out what to do with it + case $func_normal_abspath_tcomponent in + "") + # Trailing empty path component, ignore it. + ;; + ..) + # Parent dir; strip last assembled component from result. + func_dirname "$func_normal_abspath_result" + func_normal_abspath_result=$func_dirname_result + ;; + *) + # Actual path component, append it. + func_append func_normal_abspath_result "/$func_normal_abspath_tcomponent" + ;; + esac + done + # Restore leading double-slash if one was found on entry. + func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result } -# The name of this program: -func_dirname_and_basename "$progpath" -progname=$func_basename_result -# Make sure we have an absolute path for reexecution: -case $progpath in - [\\/]*|[A-Za-z]:\\*) ;; - *[\\/]*) - progdir=$func_dirname_result - progdir=`cd "$progdir" && pwd` - progpath="$progdir/$progname" - ;; - *) - save_IFS="$IFS" - IFS=${PATH_SEPARATOR-:} - for progdir in $PATH; do - IFS="$save_IFS" - test -x "$progdir/$progname" && break - done - IFS="$save_IFS" - test -n "$progdir" || progdir=`pwd` - progpath="$progdir/$progname" - ;; -esac - -# Sed substitution that helps us do robust quoting. It backslashifies -# metacharacters that are still active within double-quoted strings. -Xsed="${SED}"' -e 1s/^X//' -sed_quote_subst='s/\([`"$\\]\)/\\\1/g' - -# Same as above, but do not quote variable references. -double_quote_subst='s/\(["`\\]\)/\\\1/g' - -# Sed substitution that turns a string into a regex matching for the -# string literally. -sed_make_literal_regex='s,[].[^$\\*\/],\\&,g' - -# Sed substitution that converts a w32 file name or path -# which contains forward slashes, into one that contains -# (escaped) backslashes. A very naive implementation. -lt_sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' - -# Re-`\' parameter expansions in output of double_quote_subst that were -# `\'-ed in input to the same. If an odd number of `\' preceded a '$' -# in input to double_quote_subst, that '$' was protected from expansion. -# Since each input `\' is now two `\'s, look for any number of runs of -# four `\'s followed by two `\'s and then a '$'. `\' that '$'. -bs='\\' -bs2='\\\\' -bs4='\\\\\\\\' -dollar='\$' -sed_double_backslash="\ - s/$bs4/&\\ -/g - s/^$bs2$dollar/$bs&/ - s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g - s/\n//g" - -# Standard options: -opt_dry_run=false -opt_help=false -opt_quiet=false -opt_verbose=false -opt_warning=: - -# func_echo arg... -# Echo program name prefixed message, along with the current mode -# name if it has been set yet. -func_echo () +# func_notquiet ARG... +# -------------------- +# Echo program name prefixed message only when not in quiet mode. +func_notquiet () { - $ECHO "$progname: ${opt_mode+$opt_mode: }$*" -} + $debug_cmd -# func_verbose arg... -# Echo program name prefixed message in verbose mode only. -func_verbose () -{ - $opt_verbose && func_echo ${1+"$@"} + $opt_quiet || func_echo ${1+"$@"} # A bug in bash halts the script if the last line of a function # fails when set -e is in force, so we need another command to @@ -893,447 +1537,1113 @@ func_verbose () : } -# func_echo_all arg... -# Invoke $ECHO with all args, space-separated. -func_echo_all () -{ - $ECHO "$*" -} -# func_error arg... -# Echo program name prefixed message to standard error. -func_error () +# func_relative_path SRCDIR DSTDIR +# -------------------------------- +# Set func_relative_path_result to the relative path from SRCDIR to DSTDIR. +func_relative_path () { - $ECHO "$progname: ${opt_mode+$opt_mode: }"${1+"$@"} 1>&2 -} + $debug_cmd -# func_warning arg... -# Echo program name prefixed warning message to standard error. -func_warning () -{ - $opt_warning && $ECHO "$progname: ${opt_mode+$opt_mode: }warning: "${1+"$@"} 1>&2 + func_relative_path_result= + func_normal_abspath "$1" + func_relative_path_tlibdir=$func_normal_abspath_result + func_normal_abspath "$2" + func_relative_path_tbindir=$func_normal_abspath_result + + # Ascend the tree starting from libdir + while :; do + # check if we have found a prefix of bindir + case $func_relative_path_tbindir in + $func_relative_path_tlibdir) + # found an exact match + func_relative_path_tcancelled= + break + ;; + $func_relative_path_tlibdir*) + # found a matching prefix + func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" + func_relative_path_tcancelled=$func_stripname_result + if test -z "$func_relative_path_result"; then + func_relative_path_result=. + fi + break + ;; + *) + func_dirname $func_relative_path_tlibdir + func_relative_path_tlibdir=$func_dirname_result + if test -z "$func_relative_path_tlibdir"; then + # Have to descend all the way to the root! + func_relative_path_result=../$func_relative_path_result + func_relative_path_tcancelled=$func_relative_path_tbindir + break + fi + func_relative_path_result=../$func_relative_path_result + ;; + esac + done + + # Now calculate path; take care to avoid doubling-up slashes. + func_stripname '' '/' "$func_relative_path_result" + func_relative_path_result=$func_stripname_result + func_stripname '/' '/' "$func_relative_path_tcancelled" + if test -n "$func_stripname_result"; then + func_append func_relative_path_result "/$func_stripname_result" + fi + + # Normalisation. If bindir is libdir, return '.' else relative path. + if test -n "$func_relative_path_result"; then + func_stripname './' '' "$func_relative_path_result" + func_relative_path_result=$func_stripname_result + fi + + test -n "$func_relative_path_result" || func_relative_path_result=. - # bash bug again: : } -# func_fatal_error arg... -# Echo program name prefixed message to standard error, and exit. -func_fatal_error () -{ - func_error ${1+"$@"} - exit $EXIT_FAILURE -} -# func_fatal_help arg... -# Echo program name prefixed message to standard error, followed by -# a help hint, and exit. -func_fatal_help () -{ - func_error ${1+"$@"} - func_fatal_error "$help" -} -help="Try \`$progname --help' for more information." ## default - - -# func_grep expression filename -# Check whether EXPRESSION matches any line of FILENAME, without output. -func_grep () -{ - $GREP "$1" "$2" >/dev/null 2>&1 -} - - -# func_mkdir_p directory-path -# Make sure the entire path to DIRECTORY-PATH is available. -func_mkdir_p () -{ - my_directory_path="$1" - my_dir_list= - - if test -n "$my_directory_path" && test "$opt_dry_run" != ":"; then - - # Protect directory names starting with `-' - case $my_directory_path in - -*) my_directory_path="./$my_directory_path" ;; - esac - - # While some portion of DIR does not yet exist... - while test ! -d "$my_directory_path"; do - # ...make a list in topmost first order. Use a colon delimited - # list incase some portion of path contains whitespace. - my_dir_list="$my_directory_path:$my_dir_list" - - # If the last portion added has no slash in it, the list is done - case $my_directory_path in */*) ;; *) break ;; esac - - # ...otherwise throw away the child directory and loop - my_directory_path=`$ECHO "$my_directory_path" | $SED -e "$dirname"` - done - my_dir_list=`$ECHO "$my_dir_list" | $SED 's,:*$,,'` - - save_mkdir_p_IFS="$IFS"; IFS=':' - for my_dir in $my_dir_list; do - IFS="$save_mkdir_p_IFS" - # mkdir can fail with a `File exist' error if two processes - # try to create one of the directories concurrently. Don't - # stop in that case! - $MKDIR "$my_dir" 2>/dev/null || : - done - IFS="$save_mkdir_p_IFS" - - # Bail out if we (or some other process) failed to create a directory. - test -d "$my_directory_path" || \ - func_fatal_error "Failed to create \`$1'" - fi -} - - -# func_mktempdir [string] -# Make a temporary directory that won't clash with other running -# libtool processes, and avoids race conditions if possible. If -# given, STRING is the basename for that directory. -func_mktempdir () -{ - my_template="${TMPDIR-/tmp}/${1-$progname}" - - if test "$opt_dry_run" = ":"; then - # Return a directory name, but don't create it in dry-run mode - my_tmpdir="${my_template}-$$" - else - - # If mktemp works, use that first and foremost - my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null` - - if test ! -d "$my_tmpdir"; then - # Failing that, at least try and use $RANDOM to avoid a race - my_tmpdir="${my_template}-${RANDOM-0}$$" - - save_mktempdir_umask=`umask` - umask 0077 - $MKDIR "$my_tmpdir" - umask $save_mktempdir_umask - fi - - # If we're not in dry-run mode, bomb out on failure - test -d "$my_tmpdir" || \ - func_fatal_error "cannot create temporary directory \`$my_tmpdir'" - fi - - $ECHO "$my_tmpdir" -} - - -# func_quote_for_eval arg -# Aesthetically quote ARG to be evaled later. -# This function returns two values: FUNC_QUOTE_FOR_EVAL_RESULT -# is double-quoted, suitable for a subsequent eval, whereas -# FUNC_QUOTE_FOR_EVAL_UNQUOTED_RESULT has merely all characters -# which are still active within double quotes backslashified. +# func_quote_for_eval ARG... +# -------------------------- +# Aesthetically quote ARGs to be evaled later. +# This function returns two values: +# i) func_quote_for_eval_result +# double-quoted, suitable for a subsequent eval +# ii) func_quote_for_eval_unquoted_result +# has all characters that are still active within double +# quotes backslashified. func_quote_for_eval () { - case $1 in - *[\\\`\"\$]*) - func_quote_for_eval_unquoted_result=`$ECHO "$1" | $SED "$sed_quote_subst"` ;; - *) - func_quote_for_eval_unquoted_result="$1" ;; - esac + $debug_cmd - case $func_quote_for_eval_unquoted_result in - # Double-quote args containing shell metacharacters to delay - # word splitting, command substitution and and variable - # expansion for a subsequent eval. - # Many Bourne shells cannot handle close brackets correctly - # in scan sets, so we specify it separately. - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - func_quote_for_eval_result="\"$func_quote_for_eval_unquoted_result\"" - ;; - *) - func_quote_for_eval_result="$func_quote_for_eval_unquoted_result" - esac + func_quote_for_eval_unquoted_result= + func_quote_for_eval_result= + while test 0 -lt $#; do + case $1 in + *[\\\`\"\$]*) + _G_unquoted_arg=`printf '%s\n' "$1" |$SED "$sed_quote_subst"` ;; + *) + _G_unquoted_arg=$1 ;; + esac + if test -n "$func_quote_for_eval_unquoted_result"; then + func_append func_quote_for_eval_unquoted_result " $_G_unquoted_arg" + else + func_append func_quote_for_eval_unquoted_result "$_G_unquoted_arg" + fi + + case $_G_unquoted_arg in + # Double-quote args containing shell metacharacters to delay + # word splitting, command substitution and variable expansion + # for a subsequent eval. + # Many Bourne shells cannot handle close brackets correctly + # in scan sets, so we specify it separately. + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") + _G_quoted_arg=\"$_G_unquoted_arg\" + ;; + *) + _G_quoted_arg=$_G_unquoted_arg + ;; + esac + + if test -n "$func_quote_for_eval_result"; then + func_append func_quote_for_eval_result " $_G_quoted_arg" + else + func_append func_quote_for_eval_result "$_G_quoted_arg" + fi + shift + done } -# func_quote_for_expand arg +# func_quote_for_expand ARG +# ------------------------- # Aesthetically quote ARG to be evaled later; same as above, # but do not quote variable references. func_quote_for_expand () { + $debug_cmd + case $1 in *[\\\`\"]*) - my_arg=`$ECHO "$1" | $SED \ - -e "$double_quote_subst" -e "$sed_double_backslash"` ;; + _G_arg=`$ECHO "$1" | $SED \ + -e "$sed_double_quote_subst" -e "$sed_double_backslash"` ;; *) - my_arg="$1" ;; + _G_arg=$1 ;; esac - case $my_arg in + case $_G_arg in # Double-quote args containing shell metacharacters to delay # word splitting and command substitution for a subsequent eval. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - my_arg="\"$my_arg\"" + _G_arg=\"$_G_arg\" ;; esac - func_quote_for_expand_result="$my_arg" + func_quote_for_expand_result=$_G_arg } -# func_show_eval cmd [fail_exp] -# Unless opt_silent is true, then output CMD. Then, if opt_dryrun is +# func_stripname PREFIX SUFFIX NAME +# --------------------------------- +# strip PREFIX and SUFFIX from NAME, and store in func_stripname_result. +# PREFIX and SUFFIX must not contain globbing or regex special +# characters, hashes, percent signs, but SUFFIX may contain a leading +# dot (in which case that matches only a dot). +if test yes = "$_G_HAVE_XSI_OPS"; then + eval 'func_stripname () + { + $debug_cmd + + # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are + # positional parameters, so assign one to ordinary variable first. + func_stripname_result=$3 + func_stripname_result=${func_stripname_result#"$1"} + func_stripname_result=${func_stripname_result%"$2"} + }' +else + func_stripname () + { + $debug_cmd + + case $2 in + .*) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%\\\\$2\$%%"`;; + *) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%$2\$%%"`;; + esac + } +fi + + +# func_show_eval CMD [FAIL_EXP] +# ----------------------------- +# Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. func_show_eval () { - my_cmd="$1" - my_fail_exp="${2-:}" + $debug_cmd - ${opt_silent-false} || { - func_quote_for_expand "$my_cmd" - eval "func_echo $func_quote_for_expand_result" - } + _G_cmd=$1 + _G_fail_exp=${2-':'} - if ${opt_dry_run-false}; then :; else - eval "$my_cmd" - my_status=$? - if test "$my_status" -eq 0; then :; else - eval "(exit $my_status); $my_fail_exp" + func_quote_for_expand "$_G_cmd" + eval "func_notquiet $func_quote_for_expand_result" + + $opt_dry_run || { + eval "$_G_cmd" + _G_status=$? + if test 0 -ne "$_G_status"; then + eval "(exit $_G_status); $_G_fail_exp" fi - fi + } } -# func_show_eval_locale cmd [fail_exp] -# Unless opt_silent is true, then output CMD. Then, if opt_dryrun is +# func_show_eval_locale CMD [FAIL_EXP] +# ------------------------------------ +# Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. Use the saved locale for evaluation. func_show_eval_locale () { - my_cmd="$1" - my_fail_exp="${2-:}" + $debug_cmd - ${opt_silent-false} || { - func_quote_for_expand "$my_cmd" + _G_cmd=$1 + _G_fail_exp=${2-':'} + + $opt_quiet || { + func_quote_for_expand "$_G_cmd" eval "func_echo $func_quote_for_expand_result" } - if ${opt_dry_run-false}; then :; else - eval "$lt_user_locale - $my_cmd" - my_status=$? - eval "$lt_safe_locale" - if test "$my_status" -eq 0; then :; else - eval "(exit $my_status); $my_fail_exp" + $opt_dry_run || { + eval "$_G_user_locale + $_G_cmd" + _G_status=$? + eval "$_G_safe_locale" + if test 0 -ne "$_G_status"; then + eval "(exit $_G_status); $_G_fail_exp" fi - fi + } } + # func_tr_sh +# ---------- # Turn $1 into a string suitable for a shell variable name. # Result is stored in $func_tr_sh_result. All characters # not in the set a-zA-Z0-9_ are replaced with '_'. Further, # if $1 begins with a digit, a '_' is prepended as well. func_tr_sh () { - case $1 in - [0-9]* | *[!a-zA-Z0-9_]*) - func_tr_sh_result=`$ECHO "$1" | $SED 's/^\([0-9]\)/_\1/; s/[^a-zA-Z0-9_]/_/g'` - ;; - * ) - func_tr_sh_result=$1 - ;; - esac + $debug_cmd + + case $1 in + [0-9]* | *[!a-zA-Z0-9_]*) + func_tr_sh_result=`$ECHO "$1" | $SED -e 's/^\([0-9]\)/_\1/' -e 's/[^a-zA-Z0-9_]/_/g'` + ;; + * ) + func_tr_sh_result=$1 + ;; + esac } -# func_version -# Echo version message to standard output and exit. -func_version () +# func_verbose ARG... +# ------------------- +# Echo program name prefixed message in verbose mode only. +func_verbose () { - $opt_debug + $debug_cmd - $SED -n '/(C)/!b go - :more - /\./!{ - N - s/\n# / / - b more - } - :go - /^# '$PROGRAM' (GNU /,/# warranty; / { - s/^# // - s/^# *$// - s/\((C)\)[ 0-9,-]*\( [1-9][0-9]*\)/\1\2/ - p - }' < "$progpath" - exit $? + $opt_verbose && func_echo "$*" + + : } -# func_usage -# Echo short help message to standard output and exit. -func_usage () + +# func_warn_and_continue ARG... +# ----------------------------- +# Echo program name prefixed warning message to standard error. +func_warn_and_continue () { - $opt_debug + $debug_cmd - $SED -n '/^# Usage:/,/^# *.*--help/ { - s/^# // - s/^# *$// - s/\$progname/'$progname'/ - p - }' < "$progpath" - echo - $ECHO "run \`$progname --help | more' for full usage" - exit $? + $require_term_colors + + func_echo_infix_1 "${tc_red}warning$tc_reset" "$*" >&2 } -# func_help [NOEXIT] -# Echo long help message to standard output and exit, -# unless 'noexit' is passed as argument. + +# func_warning CATEGORY ARG... +# ---------------------------- +# Echo program name prefixed warning message to standard error. Warning +# messages can be filtered according to CATEGORY, where this function +# elides messages where CATEGORY is not listed in the global variable +# 'opt_warning_types'. +func_warning () +{ + $debug_cmd + + # CATEGORY must be in the warning_categories list! + case " $warning_categories " in + *" $1 "*) ;; + *) func_internal_error "invalid warning category '$1'" ;; + esac + + _G_category=$1 + shift + + case " $opt_warning_types " in + *" $_G_category "*) $warning_func ${1+"$@"} ;; + esac +} + + +# func_sort_ver VER1 VER2 +# ----------------------- +# 'sort -V' is not generally available. +# Note this deviates from the version comparison in automake +# in that it treats 1.5 < 1.5.0, and treats 1.4.4a < 1.4-p3a +# but this should suffice as we won't be specifying old +# version formats or redundant trailing .0 in bootstrap.conf. +# If we did want full compatibility then we should probably +# use m4_version_compare from autoconf. +func_sort_ver () +{ + $debug_cmd + + printf '%s\n%s\n' "$1" "$2" \ + | sort -t. -k 1,1n -k 2,2n -k 3,3n -k 4,4n -k 5,5n -k 6,6n -k 7,7n -k 8,8n -k 9,9n +} + +# func_lt_ver PREV CURR +# --------------------- +# Return true if PREV and CURR are in the correct order according to +# func_sort_ver, otherwise false. Use it like this: +# +# func_lt_ver "$prev_ver" "$proposed_ver" || func_fatal_error "..." +func_lt_ver () +{ + $debug_cmd + + test "x$1" = x`func_sort_ver "$1" "$2" | $SED 1q` +} + + +# Local variables: +# mode: shell-script +# sh-indentation: 2 +# eval: (add-hook 'before-save-hook 'time-stamp) +# time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" +# time-stamp-time-zone: "UTC" +# End: +#! /bin/sh + +# Set a version string for this script. +scriptversion=2014-01-07.03; # UTC + +# A portable, pluggable option parser for Bourne shell. +# Written by Gary V. Vaughan, 2010 + +# Copyright (C) 2010-2015 Free Software Foundation, Inc. +# This is free software; see the source for copying conditions. There is NO +# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# Please report bugs or propose patches to gary@gnu.org. + + +## ------ ## +## Usage. ## +## ------ ## + +# This file is a library for parsing options in your shell scripts along +# with assorted other useful supporting features that you can make use +# of too. +# +# For the simplest scripts you might need only: +# +# #!/bin/sh +# . relative/path/to/funclib.sh +# . relative/path/to/options-parser +# scriptversion=1.0 +# func_options ${1+"$@"} +# eval set dummy "$func_options_result"; shift +# ...rest of your script... +# +# In order for the '--version' option to work, you will need to have a +# suitably formatted comment like the one at the top of this file +# starting with '# Written by ' and ending with '# warranty; '. +# +# For '-h' and '--help' to work, you will also need a one line +# description of your script's purpose in a comment directly above the +# '# Written by ' line, like the one at the top of this file. +# +# The default options also support '--debug', which will turn on shell +# execution tracing (see the comment above debug_cmd below for another +# use), and '--verbose' and the func_verbose function to allow your script +# to display verbose messages only when your user has specified +# '--verbose'. +# +# After sourcing this file, you can plug processing for additional +# options by amending the variables from the 'Configuration' section +# below, and following the instructions in the 'Option parsing' +# section further down. + +## -------------- ## +## Configuration. ## +## -------------- ## + +# You should override these variables in your script after sourcing this +# file so that they reflect the customisations you have added to the +# option parser. + +# The usage line for option parsing errors and the start of '-h' and +# '--help' output messages. You can embed shell variables for delayed +# expansion at the time the message is displayed, but you will need to +# quote other shell meta-characters carefully to prevent them being +# expanded when the contents are evaled. +usage='$progpath [OPTION]...' + +# Short help message in response to '-h' and '--help'. Add to this or +# override it after sourcing this library to reflect the full set of +# options your script accepts. +usage_message="\ + --debug enable verbose shell tracing + -W, --warnings=CATEGORY + report the warnings falling in CATEGORY [all] + -v, --verbose verbosely report processing + --version print version information and exit + -h, --help print short or long help message and exit +" + +# Additional text appended to 'usage_message' in response to '--help'. +long_help_message=" +Warning categories include: + 'all' show all warnings + 'none' turn off all the warnings + 'error' warnings are treated as fatal errors" + +# Help message printed before fatal option parsing errors. +fatal_help="Try '\$progname --help' for more information." + + + +## ------------------------- ## +## Hook function management. ## +## ------------------------- ## + +# This section contains functions for adding, removing, and running hooks +# to the main code. A hook is just a named list of of function, that can +# be run in order later on. + +# func_hookable FUNC_NAME +# ----------------------- +# Declare that FUNC_NAME will run hooks added with +# 'func_add_hook FUNC_NAME ...'. +func_hookable () +{ + $debug_cmd + + func_append hookable_fns " $1" +} + + +# func_add_hook FUNC_NAME HOOK_FUNC +# --------------------------------- +# Request that FUNC_NAME call HOOK_FUNC before it returns. FUNC_NAME must +# first have been declared "hookable" by a call to 'func_hookable'. +func_add_hook () +{ + $debug_cmd + + case " $hookable_fns " in + *" $1 "*) ;; + *) func_fatal_error "'$1' does not accept hook functions." ;; + esac + + eval func_append ${1}_hooks '" $2"' +} + + +# func_remove_hook FUNC_NAME HOOK_FUNC +# ------------------------------------ +# Remove HOOK_FUNC from the list of functions called by FUNC_NAME. +func_remove_hook () +{ + $debug_cmd + + eval ${1}_hooks='`$ECHO "\$'$1'_hooks" |$SED "s| '$2'||"`' +} + + +# func_run_hooks FUNC_NAME [ARG]... +# --------------------------------- +# Run all hook functions registered to FUNC_NAME. +# It is assumed that the list of hook functions contains nothing more +# than a whitespace-delimited list of legal shell function names, and +# no effort is wasted trying to catch shell meta-characters or preserve +# whitespace. +func_run_hooks () +{ + $debug_cmd + + case " $hookable_fns " in + *" $1 "*) ;; + *) func_fatal_error "'$1' does not support hook funcions.n" ;; + esac + + eval _G_hook_fns=\$$1_hooks; shift + + for _G_hook in $_G_hook_fns; do + eval $_G_hook '"$@"' + + # store returned options list back into positional + # parameters for next 'cmd' execution. + eval _G_hook_result=\$${_G_hook}_result + eval set dummy "$_G_hook_result"; shift + done + + func_quote_for_eval ${1+"$@"} + func_run_hooks_result=$func_quote_for_eval_result +} + + + +## --------------- ## +## Option parsing. ## +## --------------- ## + +# In order to add your own option parsing hooks, you must accept the +# full positional parameter list in your hook function, remove any +# options that you action, and then pass back the remaining unprocessed +# options in '_result', escaped suitably for +# 'eval'. Like this: +# +# my_options_prep () +# { +# $debug_cmd +# +# # Extend the existing usage message. +# usage_message=$usage_message' +# -s, --silent don'\''t print informational messages +# ' +# +# func_quote_for_eval ${1+"$@"} +# my_options_prep_result=$func_quote_for_eval_result +# } +# func_add_hook func_options_prep my_options_prep +# +# +# my_silent_option () +# { +# $debug_cmd +# +# # Note that for efficiency, we parse as many options as we can +# # recognise in a loop before passing the remainder back to the +# # caller on the first unrecognised argument we encounter. +# while test $# -gt 0; do +# opt=$1; shift +# case $opt in +# --silent|-s) opt_silent=: ;; +# # Separate non-argument short options: +# -s*) func_split_short_opt "$_G_opt" +# set dummy "$func_split_short_opt_name" \ +# "-$func_split_short_opt_arg" ${1+"$@"} +# shift +# ;; +# *) set dummy "$_G_opt" "$*"; shift; break ;; +# esac +# done +# +# func_quote_for_eval ${1+"$@"} +# my_silent_option_result=$func_quote_for_eval_result +# } +# func_add_hook func_parse_options my_silent_option +# +# +# my_option_validation () +# { +# $debug_cmd +# +# $opt_silent && $opt_verbose && func_fatal_help "\ +# '--silent' and '--verbose' options are mutually exclusive." +# +# func_quote_for_eval ${1+"$@"} +# my_option_validation_result=$func_quote_for_eval_result +# } +# func_add_hook func_validate_options my_option_validation +# +# You'll alse need to manually amend $usage_message to reflect the extra +# options you parse. It's preferable to append if you can, so that +# multiple option parsing hooks can be added safely. + + +# func_options [ARG]... +# --------------------- +# All the functions called inside func_options are hookable. See the +# individual implementations for details. +func_hookable func_options +func_options () +{ + $debug_cmd + + func_options_prep ${1+"$@"} + eval func_parse_options \ + ${func_options_prep_result+"$func_options_prep_result"} + eval func_validate_options \ + ${func_parse_options_result+"$func_parse_options_result"} + + eval func_run_hooks func_options \ + ${func_validate_options_result+"$func_validate_options_result"} + + # save modified positional parameters for caller + func_options_result=$func_run_hooks_result +} + + +# func_options_prep [ARG]... +# -------------------------- +# All initialisations required before starting the option parse loop. +# Note that when calling hook functions, we pass through the list of +# positional parameters. If a hook function modifies that list, and +# needs to propogate that back to rest of this script, then the complete +# modified list must be put in 'func_run_hooks_result' before +# returning. +func_hookable func_options_prep +func_options_prep () +{ + $debug_cmd + + # Option defaults: + opt_verbose=false + opt_warning_types= + + func_run_hooks func_options_prep ${1+"$@"} + + # save modified positional parameters for caller + func_options_prep_result=$func_run_hooks_result +} + + +# func_parse_options [ARG]... +# --------------------------- +# The main option parsing loop. +func_hookable func_parse_options +func_parse_options () +{ + $debug_cmd + + func_parse_options_result= + + # this just eases exit handling + while test $# -gt 0; do + # Defer to hook functions for initial option parsing, so they + # get priority in the event of reusing an option name. + func_run_hooks func_parse_options ${1+"$@"} + + # Adjust func_parse_options positional parameters to match + eval set dummy "$func_run_hooks_result"; shift + + # Break out of the loop if we already parsed every option. + test $# -gt 0 || break + + _G_opt=$1 + shift + case $_G_opt in + --debug|-x) debug_cmd='set -x' + func_echo "enabling shell trace mode" + $debug_cmd + ;; + + --no-warnings|--no-warning|--no-warn) + set dummy --warnings none ${1+"$@"} + shift + ;; + + --warnings|--warning|-W) + test $# = 0 && func_missing_arg $_G_opt && break + case " $warning_categories $1" in + *" $1 "*) + # trailing space prevents matching last $1 above + func_append_uniq opt_warning_types " $1" + ;; + *all) + opt_warning_types=$warning_categories + ;; + *none) + opt_warning_types=none + warning_func=: + ;; + *error) + opt_warning_types=$warning_categories + warning_func=func_fatal_error + ;; + *) + func_fatal_error \ + "unsupported warning category: '$1'" + ;; + esac + shift + ;; + + --verbose|-v) opt_verbose=: ;; + --version) func_version ;; + -\?|-h) func_usage ;; + --help) func_help ;; + + # Separate optargs to long options (plugins may need this): + --*=*) func_split_equals "$_G_opt" + set dummy "$func_split_equals_lhs" \ + "$func_split_equals_rhs" ${1+"$@"} + shift + ;; + + # Separate optargs to short options: + -W*) + func_split_short_opt "$_G_opt" + set dummy "$func_split_short_opt_name" \ + "$func_split_short_opt_arg" ${1+"$@"} + shift + ;; + + # Separate non-argument short options: + -\?*|-h*|-v*|-x*) + func_split_short_opt "$_G_opt" + set dummy "$func_split_short_opt_name" \ + "-$func_split_short_opt_arg" ${1+"$@"} + shift + ;; + + --) break ;; + -*) func_fatal_help "unrecognised option: '$_G_opt'" ;; + *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;; + esac + done + + # save modified positional parameters for caller + func_quote_for_eval ${1+"$@"} + func_parse_options_result=$func_quote_for_eval_result +} + + +# func_validate_options [ARG]... +# ------------------------------ +# Perform any sanity checks on option settings and/or unconsumed +# arguments. +func_hookable func_validate_options +func_validate_options () +{ + $debug_cmd + + # Display all warnings if -W was not given. + test -n "$opt_warning_types" || opt_warning_types=" $warning_categories" + + func_run_hooks func_validate_options ${1+"$@"} + + # Bail if the options were screwed! + $exit_cmd $EXIT_FAILURE + + # save modified positional parameters for caller + func_validate_options_result=$func_run_hooks_result +} + + + +## ----------------- ## +## Helper functions. ## +## ----------------- ## + +# This section contains the helper functions used by the rest of the +# hookable option parser framework in ascii-betical order. + + +# func_fatal_help ARG... +# ---------------------- +# Echo program name prefixed message to standard error, followed by +# a help hint, and exit. +func_fatal_help () +{ + $debug_cmd + + eval \$ECHO \""Usage: $usage"\" + eval \$ECHO \""$fatal_help"\" + func_error ${1+"$@"} + exit $EXIT_FAILURE +} + + +# func_help +# --------- +# Echo long help message to standard output and exit. func_help () { - $opt_debug + $debug_cmd - $SED -n '/^# Usage:/,/# Report bugs to/ { - :print - s/^# // - s/^# *$// - s*\$progname*'$progname'* - s*\$host*'"$host"'* - s*\$SHELL*'"$SHELL"'* - s*\$LTCC*'"$LTCC"'* - s*\$LTCFLAGS*'"$LTCFLAGS"'* - s*\$LD*'"$LD"'* - s/\$with_gnu_ld/'"$with_gnu_ld"'/ - s/\$automake_version/'"`(${AUTOMAKE-automake} --version) 2>/dev/null |$SED 1q`"'/ - s/\$autoconf_version/'"`(${AUTOCONF-autoconf} --version) 2>/dev/null |$SED 1q`"'/ - p - d - } - /^# .* home page:/b print - /^# General help using/b print - ' < "$progpath" - ret=$? - if test -z "$1"; then - exit $ret - fi + func_usage_message + $ECHO "$long_help_message" + exit 0 } -# func_missing_arg argname + +# func_missing_arg ARGNAME +# ------------------------ # Echo program name prefixed message to standard error and set global # exit_cmd. func_missing_arg () { - $opt_debug + $debug_cmd - func_error "missing argument for $1." + func_error "Missing argument for '$1'." exit_cmd=exit } -# func_split_short_opt shortopt +# func_split_equals STRING +# ------------------------ +# Set func_split_equals_lhs and func_split_equals_rhs shell variables after +# splitting STRING at the '=' sign. +test -z "$_G_HAVE_XSI_OPS" \ + && (eval 'x=a/b/c; + test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ + && _G_HAVE_XSI_OPS=yes + +if test yes = "$_G_HAVE_XSI_OPS" +then + # This is an XSI compatible shell, allowing a faster implementation... + eval 'func_split_equals () + { + $debug_cmd + + func_split_equals_lhs=${1%%=*} + func_split_equals_rhs=${1#*=} + test "x$func_split_equals_lhs" = "x$1" \ + && func_split_equals_rhs= + }' +else + # ...otherwise fall back to using expr, which is often a shell builtin. + func_split_equals () + { + $debug_cmd + + func_split_equals_lhs=`expr "x$1" : 'x\([^=]*\)'` + func_split_equals_rhs= + test "x$func_split_equals_lhs" = "x$1" \ + || func_split_equals_rhs=`expr "x$1" : 'x[^=]*=\(.*\)$'` + } +fi #func_split_equals + + +# func_split_short_opt SHORTOPT +# ----------------------------- # Set func_split_short_opt_name and func_split_short_opt_arg shell # variables after splitting SHORTOPT after the 2nd character. -func_split_short_opt () +if test yes = "$_G_HAVE_XSI_OPS" +then + # This is an XSI compatible shell, allowing a faster implementation... + eval 'func_split_short_opt () + { + $debug_cmd + + func_split_short_opt_arg=${1#??} + func_split_short_opt_name=${1%"$func_split_short_opt_arg"} + }' +else + # ...otherwise fall back to using expr, which is often a shell builtin. + func_split_short_opt () + { + $debug_cmd + + func_split_short_opt_name=`expr "x$1" : 'x-\(.\)'` + func_split_short_opt_arg=`expr "x$1" : 'x-.\(.*\)$'` + } +fi #func_split_short_opt + + +# func_usage +# ---------- +# Echo short help message to standard output and exit. +func_usage () { - func_split_short_opt_arg=${1#??} - func_split_short_opt_name=${1%"$func_split_short_opt_arg"} -} # Extended-shell func_split_short_opt implementation + $debug_cmd + + func_usage_message + $ECHO "Run '$progname --help |${PAGER-more}' for full usage" + exit 0 +} -# func_split_long_opt longopt -# Set func_split_long_opt_name and func_split_long_opt_arg shell -# variables after splitting LONGOPT at the `=' sign. -func_split_long_opt () +# func_usage_message +# ------------------ +# Echo short help message to standard output. +func_usage_message () { - func_split_long_opt_name=${1%%=*} - func_split_long_opt_arg=${1#*=} -} # Extended-shell func_split_long_opt implementation + $debug_cmd -exit_cmd=: + eval \$ECHO \""Usage: $usage"\" + echo + $SED -n 's|^# || + /^Written by/{ + x;p;x + } + h + /^Written by/q' < "$progpath" + echo + eval \$ECHO \""$usage_message"\" +} - - - -magic="%%%MAGIC variable%%%" -magic_exe="%%%MAGIC EXE variable%%%" - -# Global variables. -nonopt= -preserve_args= -lo2o="s/\\.lo\$/.${objext}/" -o2lo="s/\\.${objext}\$/.lo/" -extracted_archives= -extracted_serial=0 - -# If this variable is set in any of the actions, the command in it -# will be execed at the end. This prevents here-documents from being -# left over by shells. -exec_cmd= - -# func_append var value -# Append VALUE to the end of shell variable VAR. -func_append () +# func_version +# ------------ +# Echo version message to standard output and exit. +func_version () { - eval "${1}+=\${2}" -} # Extended-shell func_append implementation + $debug_cmd -# func_append_quoted var value -# Quote VALUE and append to the end of shell variable VAR, separated -# by a space. -func_append_quoted () + printf '%s\n' "$progname $scriptversion" + $SED -n ' + /(C)/!b go + :more + /\./!{ + N + s|\n# | | + b more + } + :go + /^# Written by /,/# warranty; / { + s|^# || + s|^# *$|| + s|\((C)\)[ 0-9,-]*[ ,-]\([1-9][0-9]* \)|\1 \2| + p + } + /^# Written by / { + s|^# || + p + } + /^warranty; /q' < "$progpath" + + exit $? +} + + +# Local variables: +# mode: shell-script +# sh-indentation: 2 +# eval: (add-hook 'before-save-hook 'time-stamp) +# time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" +# time-stamp-time-zone: "UTC" +# End: + +# Set a version string. +scriptversion='(GNU libtool) 2.4.6' + + +# func_echo ARG... +# ---------------- +# Libtool also displays the current mode in messages, so override +# funclib.sh func_echo with this custom definition. +func_echo () { - func_quote_for_eval "${2}" - eval "${1}+=\\ \$func_quote_for_eval_result" -} # Extended-shell func_append_quoted implementation + $debug_cmd + + _G_message=$* + + func_echo_IFS=$IFS + IFS=$nl + for _G_line in $_G_message; do + IFS=$func_echo_IFS + $ECHO "$progname${opt_mode+: $opt_mode}: $_G_line" + done + IFS=$func_echo_IFS +} -# func_arith arithmetic-term... -func_arith () +# func_warning ARG... +# ------------------- +# Libtool warnings are not categorized, so override funclib.sh +# func_warning with this simpler definition. +func_warning () { - func_arith_result=$(( $* )) -} # Extended-shell func_arith implementation + $debug_cmd + + $warning_func ${1+"$@"} +} -# func_len string -# STRING may not start with a hyphen. -func_len () +## ---------------- ## +## Options parsing. ## +## ---------------- ## + +# Hook in the functions to make sure our own options are parsed during +# the option parsing loop. + +usage='$progpath [OPTION]... [MODE-ARG]...' + +# Short help message in response to '-h'. +usage_message="Options: + --config show all configuration variables + --debug enable verbose shell tracing + -n, --dry-run display commands without modifying any files + --features display basic configuration information and exit + --mode=MODE use operation mode MODE + --no-warnings equivalent to '-Wnone' + --preserve-dup-deps don't remove duplicate dependency libraries + --quiet, --silent don't print informational messages + --tag=TAG use configuration variables from tag TAG + -v, --verbose print more informational messages than default + --version print version information + -W, --warnings=CATEGORY report the warnings falling in CATEGORY [all] + -h, --help, --help-all print short, long, or detailed help message +" + +# Additional text appended to 'usage_message' in response to '--help'. +func_help () { - func_len_result=${#1} -} # Extended-shell func_len implementation + $debug_cmd + + func_usage_message + $ECHO "$long_help_message + +MODE must be one of the following: + + clean remove files from the build directory + compile compile a source file into a libtool object + execute automatically set library path, then run a program + finish complete the installation of libtool libraries + install install libraries or executables + link create a library or an executable + uninstall remove libraries from an installed directory + +MODE-ARGS vary depending on the MODE. When passed as first option, +'--mode=MODE' may be abbreviated as 'MODE' or a unique abbreviation of that. +Try '$progname --help --mode=MODE' for a more detailed description of MODE. + +When reporting a bug, please describe a test case to reproduce it and +include the following information: + + host-triplet: $host + shell: $SHELL + compiler: $LTCC + compiler flags: $LTCFLAGS + linker: $LD (gnu? $with_gnu_ld) + version: $progname (GNU libtool) 2.4.6 + automake: `($AUTOMAKE --version) 2>/dev/null |$SED 1q` + autoconf: `($AUTOCONF --version) 2>/dev/null |$SED 1q` + +Report bugs to . +GNU libtool home page: . +General help using GNU software: ." + exit 0 +} -# func_lo2o object -func_lo2o () -{ - case ${1} in - *.lo) func_lo2o_result=${1%.lo}.${objext} ;; - *) func_lo2o_result=${1} ;; +# func_lo2o OBJECT-NAME +# --------------------- +# Transform OBJECT-NAME from a '.lo' suffix to the platform specific +# object suffix. + +lo2o=s/\\.lo\$/.$objext/ +o2lo=s/\\.$objext\$/.lo/ + +if test yes = "$_G_HAVE_XSI_OPS"; then + eval 'func_lo2o () + { + case $1 in + *.lo) func_lo2o_result=${1%.lo}.$objext ;; + * ) func_lo2o_result=$1 ;; esac -} # Extended-shell func_lo2o implementation + }' - -# func_xform libobj-or-source -func_xform () -{ + # func_xform LIBOBJ-OR-SOURCE + # --------------------------- + # Transform LIBOBJ-OR-SOURCE from a '.o' or '.c' (or otherwise) + # suffix to a '.lo' libtool-object suffix. + eval 'func_xform () + { func_xform_result=${1%.*}.lo -} # Extended-shell func_xform implementation + }' +else + # ...otherwise fall back to using sed. + func_lo2o () + { + func_lo2o_result=`$ECHO "$1" | $SED "$lo2o"` + } + + func_xform () + { + func_xform_result=`$ECHO "$1" | $SED 's|\.[^.]*$|.lo|'` + } +fi -# func_fatal_configuration arg... +# func_fatal_configuration ARG... +# ------------------------------- # Echo program name prefixed message to standard error, followed by # a configuration failure hint, and exit. func_fatal_configuration () { - func_error ${1+"$@"} - func_error "See the $PACKAGE documentation for more information." - func_fatal_error "Fatal configuration error." + func__fatal_error ${1+"$@"} \ + "See the $PACKAGE documentation for more information." \ + "Fatal configuration error." } # func_config +# ----------- # Display the configuration for all the tags in this script. func_config () { @@ -1351,17 +2661,19 @@ func_config () exit $? } + # func_features +# ------------- # Display the features supported by this script. func_features () { echo "host: $host" - if test "$build_libtool_libs" = yes; then + if test yes = "$build_libtool_libs"; then echo "enable shared libraries" else echo "disable shared libraries" fi - if test "$build_old_libs" = yes; then + if test yes = "$build_old_libs"; then echo "enable static libraries" else echo "disable static libraries" @@ -1370,314 +2682,350 @@ func_features () exit $? } -# func_enable_tag tagname + +# func_enable_tag TAGNAME +# ----------------------- # Verify that TAGNAME is valid, and either flag an error and exit, or # enable the TAGNAME tag. We also add TAGNAME to the global $taglist # variable here. func_enable_tag () { - # Global variable: - tagname="$1" + # Global variable: + tagname=$1 - re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" - re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" - sed_extractcf="/$re_begincf/,/$re_endcf/p" + re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" + re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" + sed_extractcf=/$re_begincf/,/$re_endcf/p - # Validate tagname. - case $tagname in - *[!-_A-Za-z0-9,/]*) - func_fatal_error "invalid tag name: $tagname" - ;; - esac + # Validate tagname. + case $tagname in + *[!-_A-Za-z0-9,/]*) + func_fatal_error "invalid tag name: $tagname" + ;; + esac - # Don't test for the "default" C tag, as we know it's - # there but not specially marked. - case $tagname in - CC) ;; + # Don't test for the "default" C tag, as we know it's + # there but not specially marked. + case $tagname in + CC) ;; *) - if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then - taglist="$taglist $tagname" + if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then + taglist="$taglist $tagname" - # Evaluate the configuration. Be careful to quote the path - # and the sed script, to avoid splitting on whitespace, but - # also don't use non-portable quotes within backquotes within - # quotes we have to do it in 2 steps: - extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` - eval "$extractedcf" - else - func_error "ignoring unknown tag $tagname" - fi - ;; - esac + # Evaluate the configuration. Be careful to quote the path + # and the sed script, to avoid splitting on whitespace, but + # also don't use non-portable quotes within backquotes within + # quotes we have to do it in 2 steps: + extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` + eval "$extractedcf" + else + func_error "ignoring unknown tag $tagname" + fi + ;; + esac } + # func_check_version_match +# ------------------------ # Ensure that we are using m4 macros, and libtool script from the same # release of libtool. func_check_version_match () { - if test "$package_revision" != "$macro_revision"; then - if test "$VERSION" != "$macro_version"; then - if test -z "$macro_version"; then - cat >&2 <<_LT_EOF + if test "$package_revision" != "$macro_revision"; then + if test "$VERSION" != "$macro_version"; then + if test -z "$macro_version"; then + cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from an older release. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF - else - cat >&2 <<_LT_EOF + else + cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from $PACKAGE $macro_version. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF - fi - else - cat >&2 <<_LT_EOF + fi + else + cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, $progname: but the definition of this LT_INIT comes from revision $macro_revision. $progname: You should recreate aclocal.m4 with macros from revision $package_revision $progname: of $PACKAGE $VERSION and run autoconf again. _LT_EOF - fi + fi - exit $EXIT_MISMATCH - fi + exit $EXIT_MISMATCH + fi } -# Shorthand for --mode=foo, only valid as the first argument -case $1 in -clean|clea|cle|cl) - shift; set dummy --mode clean ${1+"$@"}; shift - ;; -compile|compil|compi|comp|com|co|c) - shift; set dummy --mode compile ${1+"$@"}; shift - ;; -execute|execut|execu|exec|exe|ex|e) - shift; set dummy --mode execute ${1+"$@"}; shift - ;; -finish|finis|fini|fin|fi|f) - shift; set dummy --mode finish ${1+"$@"}; shift - ;; -install|instal|insta|inst|ins|in|i) - shift; set dummy --mode install ${1+"$@"}; shift - ;; -link|lin|li|l) - shift; set dummy --mode link ${1+"$@"}; shift - ;; -uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) - shift; set dummy --mode uninstall ${1+"$@"}; shift - ;; -esac - - - -# Option defaults: -opt_debug=: -opt_dry_run=false -opt_config=false -opt_preserve_dup_deps=false -opt_features=false -opt_finish=false -opt_help=false -opt_help_all=false -opt_silent=: -opt_warning=: -opt_verbose=: -opt_silent=false -opt_verbose=false - - -# Parse options once, thoroughly. This comes as soon as possible in the -# script to make things like `--version' happen as quickly as we can. +# libtool_options_prep [ARG]... +# ----------------------------- +# Preparation for options parsed by libtool. +libtool_options_prep () { - # this just eases exit handling - while test $# -gt 0; do - opt="$1" - shift - case $opt in - --debug|-x) opt_debug='set -x' - func_echo "enabling shell trace mode" - $opt_debug - ;; - --dry-run|--dryrun|-n) - opt_dry_run=: - ;; - --config) - opt_config=: -func_config - ;; - --dlopen|-dlopen) - optarg="$1" - opt_dlopen="${opt_dlopen+$opt_dlopen -}$optarg" - shift - ;; - --preserve-dup-deps) - opt_preserve_dup_deps=: - ;; - --features) - opt_features=: -func_features - ;; - --finish) - opt_finish=: -set dummy --mode finish ${1+"$@"}; shift - ;; - --help) - opt_help=: - ;; - --help-all) - opt_help_all=: -opt_help=': help-all' - ;; - --mode) - test $# = 0 && func_missing_arg $opt && break - optarg="$1" - opt_mode="$optarg" -case $optarg in - # Valid mode arguments: - clean|compile|execute|finish|install|link|relink|uninstall) ;; + $debug_mode - # Catch anything else as an error - *) func_error "invalid argument for $opt" - exit_cmd=exit - break - ;; -esac - shift - ;; - --no-silent|--no-quiet) - opt_silent=false -preserve_args+=" $opt" - ;; - --no-warning|--no-warn) - opt_warning=false -preserve_args+=" $opt" - ;; - --no-verbose) - opt_verbose=false -preserve_args+=" $opt" - ;; - --silent|--quiet) - opt_silent=: -preserve_args+=" $opt" - opt_verbose=false - ;; - --verbose|-v) - opt_verbose=: -preserve_args+=" $opt" -opt_silent=false - ;; - --tag) - test $# = 0 && func_missing_arg $opt && break - optarg="$1" - opt_tag="$optarg" -preserve_args+=" $opt $optarg" -func_enable_tag "$optarg" - shift - ;; + # Option defaults: + opt_config=false + opt_dlopen= + opt_dry_run=false + opt_help=false + opt_mode= + opt_preserve_dup_deps=false + opt_quiet=false - -\?|-h) func_usage ;; - --help) func_help ;; - --version) func_version ;; + nonopt= + preserve_args= - # Separate optargs to long options: - --*=*) - func_split_long_opt "$opt" - set dummy "$func_split_long_opt_name" "$func_split_long_opt_arg" ${1+"$@"} - shift - ;; - - # Separate non-argument short options: - -\?*|-h*|-n*|-v*) - func_split_short_opt "$opt" - set dummy "$func_split_short_opt_name" "-$func_split_short_opt_arg" ${1+"$@"} - shift - ;; - - --) break ;; - -*) func_fatal_help "unrecognized option \`$opt'" ;; - *) set dummy "$opt" ${1+"$@"}; shift; break ;; + # Shorthand for --mode=foo, only valid as the first argument + case $1 in + clean|clea|cle|cl) + shift; set dummy --mode clean ${1+"$@"}; shift + ;; + compile|compil|compi|comp|com|co|c) + shift; set dummy --mode compile ${1+"$@"}; shift + ;; + execute|execut|execu|exec|exe|ex|e) + shift; set dummy --mode execute ${1+"$@"}; shift + ;; + finish|finis|fini|fin|fi|f) + shift; set dummy --mode finish ${1+"$@"}; shift + ;; + install|instal|insta|inst|ins|in|i) + shift; set dummy --mode install ${1+"$@"}; shift + ;; + link|lin|li|l) + shift; set dummy --mode link ${1+"$@"}; shift + ;; + uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) + shift; set dummy --mode uninstall ${1+"$@"}; shift + ;; esac - done - # Validate options: - - # save first non-option argument - if test "$#" -gt 0; then - nonopt="$opt" - shift - fi - - # preserve --debug - test "$opt_debug" = : || preserve_args+=" --debug" - - case $host in - *cygwin* | *mingw* | *pw32* | *cegcc*) - # don't eliminate duplications in $postdeps and $predeps - opt_duplicate_compiler_generated_deps=: - ;; - *) - opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps - ;; - esac - - $opt_help || { - # Sanity checks first: - func_check_version_match - - if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then - func_fatal_configuration "not configured to build any kind of library" - fi - - # Darwin sucks - eval std_shrext=\"$shrext_cmds\" - - # Only execute mode is allowed to have -dlopen flags. - if test -n "$opt_dlopen" && test "$opt_mode" != execute; then - func_error "unrecognized option \`-dlopen'" - $ECHO "$help" 1>&2 - exit $EXIT_FAILURE - fi - - # Change the help message to a mode-specific one. - generic_help="$help" - help="Try \`$progname --help --mode=$opt_mode' for more information." - } - - - # Bail if the options were screwed - $exit_cmd $EXIT_FAILURE + # Pass back the list of options. + func_quote_for_eval ${1+"$@"} + libtool_options_prep_result=$func_quote_for_eval_result } +func_add_hook func_options_prep libtool_options_prep +# libtool_parse_options [ARG]... +# --------------------------------- +# Provide handling for libtool specific options. +libtool_parse_options () +{ + $debug_cmd + + # Perform our own loop to consume as many options as possible in + # each iteration. + while test $# -gt 0; do + _G_opt=$1 + shift + case $_G_opt in + --dry-run|--dryrun|-n) + opt_dry_run=: + ;; + + --config) func_config ;; + + --dlopen|-dlopen) + opt_dlopen="${opt_dlopen+$opt_dlopen +}$1" + shift + ;; + + --preserve-dup-deps) + opt_preserve_dup_deps=: ;; + + --features) func_features ;; + + --finish) set dummy --mode finish ${1+"$@"}; shift ;; + + --help) opt_help=: ;; + + --help-all) opt_help=': help-all' ;; + + --mode) test $# = 0 && func_missing_arg $_G_opt && break + opt_mode=$1 + case $1 in + # Valid mode arguments: + clean|compile|execute|finish|install|link|relink|uninstall) ;; + + # Catch anything else as an error + *) func_error "invalid argument for $_G_opt" + exit_cmd=exit + break + ;; + esac + shift + ;; + + --no-silent|--no-quiet) + opt_quiet=false + func_append preserve_args " $_G_opt" + ;; + + --no-warnings|--no-warning|--no-warn) + opt_warning=false + func_append preserve_args " $_G_opt" + ;; + + --no-verbose) + opt_verbose=false + func_append preserve_args " $_G_opt" + ;; + + --silent|--quiet) + opt_quiet=: + opt_verbose=false + func_append preserve_args " $_G_opt" + ;; + + --tag) test $# = 0 && func_missing_arg $_G_opt && break + opt_tag=$1 + func_append preserve_args " $_G_opt $1" + func_enable_tag "$1" + shift + ;; + + --verbose|-v) opt_quiet=false + opt_verbose=: + func_append preserve_args " $_G_opt" + ;; + + # An option not handled by this hook function: + *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;; + esac + done + + + # save modified positional parameters for caller + func_quote_for_eval ${1+"$@"} + libtool_parse_options_result=$func_quote_for_eval_result +} +func_add_hook func_parse_options libtool_parse_options + + + +# libtool_validate_options [ARG]... +# --------------------------------- +# Perform any sanity checks on option settings and/or unconsumed +# arguments. +libtool_validate_options () +{ + # save first non-option argument + if test 0 -lt $#; then + nonopt=$1 + shift + fi + + # preserve --debug + test : = "$debug_cmd" || func_append preserve_args " --debug" + + case $host in + # Solaris2 added to fix http://debbugs.gnu.org/cgi/bugreport.cgi?bug=16452 + # see also: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59788 + *cygwin* | *mingw* | *pw32* | *cegcc* | *solaris2* | *os2*) + # don't eliminate duplications in $postdeps and $predeps + opt_duplicate_compiler_generated_deps=: + ;; + *) + opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps + ;; + esac + + $opt_help || { + # Sanity checks first: + func_check_version_match + + test yes != "$build_libtool_libs" \ + && test yes != "$build_old_libs" \ + && func_fatal_configuration "not configured to build any kind of library" + + # Darwin sucks + eval std_shrext=\"$shrext_cmds\" + + # Only execute mode is allowed to have -dlopen flags. + if test -n "$opt_dlopen" && test execute != "$opt_mode"; then + func_error "unrecognized option '-dlopen'" + $ECHO "$help" 1>&2 + exit $EXIT_FAILURE + fi + + # Change the help message to a mode-specific one. + generic_help=$help + help="Try '$progname --help --mode=$opt_mode' for more information." + } + + # Pass back the unparsed argument list + func_quote_for_eval ${1+"$@"} + libtool_validate_options_result=$func_quote_for_eval_result +} +func_add_hook func_validate_options libtool_validate_options + + +# Process options as early as possible so that --help and --version +# can return quickly. +func_options ${1+"$@"} +eval set dummy "$func_options_result"; shift + ## ----------- ## ## Main. ## ## ----------- ## +magic='%%%MAGIC variable%%%' +magic_exe='%%%MAGIC EXE variable%%%' + +# Global variables. +extracted_archives= +extracted_serial=0 + +# If this variable is set in any of the actions, the command in it +# will be execed at the end. This prevents here-documents from being +# left over by shells. +exec_cmd= + + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + +# func_generated_by_libtool +# True iff stdin has been generated by Libtool. This function is only +# a basic sanity check; it will hardly flush out determined imposters. +func_generated_by_libtool_p () +{ + $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 +} + # func_lalib_p file -# True iff FILE is a libtool `.la' library or `.lo' object file. +# True iff FILE is a libtool '.la' library or '.lo' object file. # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_lalib_p () { test -f "$1" && - $SED -e 4q "$1" 2>/dev/null \ - | $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 + $SED -e 4q "$1" 2>/dev/null | func_generated_by_libtool_p } # func_lalib_unsafe_p file -# True iff FILE is a libtool `.la' library or `.lo' object file. +# True iff FILE is a libtool '.la' library or '.lo' object file. # This function implements the same check as func_lalib_p without # resorting to external programs. To this end, it redirects stdin and # closes it afterwards, without saving the original file descriptor. # As a safety measure, use it only where a negative result would be -# fatal anyway. Works if `file' does not exist. +# fatal anyway. Works if 'file' does not exist. func_lalib_unsafe_p () { lalib_p=no @@ -1685,13 +3033,13 @@ func_lalib_unsafe_p () for lalib_p_l in 1 2 3 4 do read lalib_p_line - case "$lalib_p_line" in + case $lalib_p_line in \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; esac done exec 0<&5 5<&- fi - test "$lalib_p" = yes + test yes = "$lalib_p" } # func_ltwrapper_script_p file @@ -1700,7 +3048,8 @@ func_lalib_unsafe_p () # determined imposters. func_ltwrapper_script_p () { - func_lalib_p "$1" + test -f "$1" && + $lt_truncate_bin < "$1" 2>/dev/null | func_generated_by_libtool_p } # func_ltwrapper_executable_p file @@ -1725,7 +3074,7 @@ func_ltwrapper_scriptname () { func_dirname_and_basename "$1" "" "." func_stripname '' '.exe' "$func_basename_result" - func_ltwrapper_scriptname_result="$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper" + func_ltwrapper_scriptname_result=$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper } # func_ltwrapper_p file @@ -1744,11 +3093,13 @@ func_ltwrapper_p () # FAIL_CMD may read-access the current command in variable CMD! func_execute_cmds () { - $opt_debug + $debug_cmd + save_ifs=$IFS; IFS='~' for cmd in $1; do - IFS=$save_ifs + IFS=$sp$nl eval cmd=\"$cmd\" + IFS=$save_ifs func_show_eval "$cmd" "${2-:}" done IFS=$save_ifs @@ -1760,10 +3111,11 @@ func_execute_cmds () # Note that it is not necessary on cygwin/mingw to append a dot to # FILE even if both FILE and FILE.exe exist: automatic-append-.exe # behavior happens only for exec(3), not for open(2)! Also, sourcing -# `FILE.' does not work on cygwin managed mounts. +# 'FILE.' does not work on cygwin managed mounts. func_source () { - $opt_debug + $debug_cmd + case $1 in */* | *\\*) . "$1" ;; *) . "./$1" ;; @@ -1790,10 +3142,10 @@ func_resolve_sysroot () # store the result into func_replace_sysroot_result. func_replace_sysroot () { - case "$lt_sysroot:$1" in + case $lt_sysroot:$1 in ?*:"$lt_sysroot"*) func_stripname "$lt_sysroot" '' "$1" - func_replace_sysroot_result="=$func_stripname_result" + func_replace_sysroot_result='='$func_stripname_result ;; *) # Including no sysroot. @@ -1810,7 +3162,8 @@ func_replace_sysroot () # arg is usually of the form 'gcc ...' func_infer_tag () { - $opt_debug + $debug_cmd + if test -n "$available_tags" && test -z "$tagname"; then CC_quoted= for arg in $CC; do @@ -1829,7 +3182,7 @@ func_infer_tag () for z in $available_tags; do if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then # Evaluate the configuration. - eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" + eval "`$SED -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" CC_quoted= for arg in $CC; do # Double-quote args containing other shell metacharacters. @@ -1854,7 +3207,7 @@ func_infer_tag () # line option must be used. if test -z "$tagname"; then func_echo "unable to infer tagged configuration" - func_fatal_error "specify a tag with \`--tag'" + func_fatal_error "specify a tag with '--tag'" # else # func_verbose "using $tagname tagged configuration" fi @@ -1870,15 +3223,15 @@ func_infer_tag () # but don't create it if we're doing a dry run. func_write_libtool_object () { - write_libobj=${1} - if test "$build_libtool_libs" = yes; then - write_lobj=\'${2}\' + write_libobj=$1 + if test yes = "$build_libtool_libs"; then + write_lobj=\'$2\' else write_lobj=none fi - if test "$build_old_libs" = yes; then - write_oldobj=\'${3}\' + if test yes = "$build_old_libs"; then + write_oldobj=\'$3\' else write_oldobj=none fi @@ -1886,7 +3239,7 @@ func_write_libtool_object () $opt_dry_run || { cat >${write_libobj}T </dev/null` - if test "$?" -eq 0 && test -n "${func_convert_core_file_wine_to_w32_tmp}"; then + if test "$?" -eq 0 && test -n "$func_convert_core_file_wine_to_w32_tmp"; then func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" | - $SED -e "$lt_sed_naive_backslashify"` + $SED -e "$sed_naive_backslashify"` else func_convert_core_file_wine_to_w32_result= fi @@ -1950,18 +3304,19 @@ func_convert_core_file_wine_to_w32 () # are convertible, then the result may be empty. func_convert_core_path_wine_to_w32 () { - $opt_debug + $debug_cmd + # unfortunately, winepath doesn't convert paths, only file names - func_convert_core_path_wine_to_w32_result="" + func_convert_core_path_wine_to_w32_result= if test -n "$1"; then oldIFS=$IFS IFS=: for func_convert_core_path_wine_to_w32_f in $1; do IFS=$oldIFS func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f" - if test -n "$func_convert_core_file_wine_to_w32_result" ; then + if test -n "$func_convert_core_file_wine_to_w32_result"; then if test -z "$func_convert_core_path_wine_to_w32_result"; then - func_convert_core_path_wine_to_w32_result="$func_convert_core_file_wine_to_w32_result" + func_convert_core_path_wine_to_w32_result=$func_convert_core_file_wine_to_w32_result else func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result" fi @@ -1990,7 +3345,8 @@ func_convert_core_path_wine_to_w32 () # environment variable; do not put it in $PATH. func_cygpath () { - $opt_debug + $debug_cmd + if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null` if test "$?" -ne 0; then @@ -1999,7 +3355,7 @@ func_cygpath () fi else func_cygpath_result= - func_error "LT_CYGPATH is empty or specifies non-existent file: \`$LT_CYGPATH'" + func_error "LT_CYGPATH is empty or specifies non-existent file: '$LT_CYGPATH'" fi } #end: func_cygpath @@ -2010,10 +3366,11 @@ func_cygpath () # result in func_convert_core_msys_to_w32_result. func_convert_core_msys_to_w32 () { - $opt_debug + $debug_cmd + # awkward: cmd appends spaces to result func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | - $SED -e 's/[ ]*$//' -e "$lt_sed_naive_backslashify"` + $SED -e 's/[ ]*$//' -e "$sed_naive_backslashify"` } #end: func_convert_core_msys_to_w32 @@ -2024,13 +3381,14 @@ func_convert_core_msys_to_w32 () # func_to_host_file_result to ARG1). func_convert_file_check () { - $opt_debug - if test -z "$2" && test -n "$1" ; then + $debug_cmd + + if test -z "$2" && test -n "$1"; then func_error "Could not determine host file name corresponding to" - func_error " \`$1'" + func_error " '$1'" func_error "Continuing, but uninstalled executables may not work." # Fallback: - func_to_host_file_result="$1" + func_to_host_file_result=$1 fi } # end func_convert_file_check @@ -2042,10 +3400,11 @@ func_convert_file_check () # func_to_host_file_result to a simplistic fallback value (see below). func_convert_path_check () { - $opt_debug + $debug_cmd + if test -z "$4" && test -n "$3"; then func_error "Could not determine the host path corresponding to" - func_error " \`$3'" + func_error " '$3'" func_error "Continuing, but uninstalled executables may not work." # Fallback. This is a deliberately simplistic "conversion" and # should not be "improved". See libtool.info. @@ -2054,7 +3413,7 @@ func_convert_path_check () func_to_host_path_result=`echo "$3" | $SED -e "$lt_replace_pathsep_chars"` else - func_to_host_path_result="$3" + func_to_host_path_result=$3 fi fi } @@ -2066,13 +3425,14 @@ func_convert_path_check () # and appending REPL if ORIG matches BACKPAT. func_convert_path_front_back_pathsep () { - $opt_debug + $debug_cmd + case $4 in - $1 ) func_to_host_path_result="$3$func_to_host_path_result" + $1 ) func_to_host_path_result=$3$func_to_host_path_result ;; esac case $4 in - $2 ) func_to_host_path_result+="$3" + $2 ) func_append func_to_host_path_result "$3" ;; esac } @@ -2082,7 +3442,7 @@ func_convert_path_front_back_pathsep () ################################################## # $build to $host FILE NAME CONVERSION FUNCTIONS # ################################################## -# invoked via `$to_host_file_cmd ARG' +# invoked via '$to_host_file_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # Result will be available in $func_to_host_file_result. @@ -2093,7 +3453,8 @@ func_convert_path_front_back_pathsep () # in func_to_host_file_result. func_to_host_file () { - $opt_debug + $debug_cmd + $to_host_file_cmd "$1" } # end func_to_host_file @@ -2105,7 +3466,8 @@ func_to_host_file () # in (the comma separated) LAZY, no conversion takes place. func_to_tool_file () { - $opt_debug + $debug_cmd + case ,$2, in *,"$to_tool_file_cmd",*) func_to_tool_file_result=$1 @@ -2123,7 +3485,7 @@ func_to_tool_file () # Copy ARG to func_to_host_file_result. func_convert_file_noop () { - func_to_host_file_result="$1" + func_to_host_file_result=$1 } # end func_convert_file_noop @@ -2134,11 +3496,12 @@ func_convert_file_noop () # func_to_host_file_result. func_convert_file_msys_to_w32 () { - $opt_debug - func_to_host_file_result="$1" + $debug_cmd + + func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_msys_to_w32 "$1" - func_to_host_file_result="$func_convert_core_msys_to_w32_result" + func_to_host_file_result=$func_convert_core_msys_to_w32_result fi func_convert_file_check "$1" "$func_to_host_file_result" } @@ -2150,8 +3513,9 @@ func_convert_file_msys_to_w32 () # func_to_host_file_result. func_convert_file_cygwin_to_w32 () { - $opt_debug - func_to_host_file_result="$1" + $debug_cmd + + func_to_host_file_result=$1 if test -n "$1"; then # because $build is cygwin, we call "the" cygpath in $PATH; no need to use # LT_CYGPATH in this case. @@ -2167,11 +3531,12 @@ func_convert_file_cygwin_to_w32 () # and a working winepath. Returns result in func_to_host_file_result. func_convert_file_nix_to_w32 () { - $opt_debug - func_to_host_file_result="$1" + $debug_cmd + + func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_file_wine_to_w32 "$1" - func_to_host_file_result="$func_convert_core_file_wine_to_w32_result" + func_to_host_file_result=$func_convert_core_file_wine_to_w32_result fi func_convert_file_check "$1" "$func_to_host_file_result" } @@ -2183,12 +3548,13 @@ func_convert_file_nix_to_w32 () # Returns result in func_to_host_file_result. func_convert_file_msys_to_cygwin () { - $opt_debug - func_to_host_file_result="$1" + $debug_cmd + + func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_cygpath -u "$func_convert_core_msys_to_w32_result" - func_to_host_file_result="$func_cygpath_result" + func_to_host_file_result=$func_cygpath_result fi func_convert_file_check "$1" "$func_to_host_file_result" } @@ -2201,13 +3567,14 @@ func_convert_file_msys_to_cygwin () # in func_to_host_file_result. func_convert_file_nix_to_cygwin () { - $opt_debug - func_to_host_file_result="$1" + $debug_cmd + + func_to_host_file_result=$1 if test -n "$1"; then # convert from *nix to w32, then use cygpath to convert from w32 to cygwin. func_convert_core_file_wine_to_w32 "$1" func_cygpath -u "$func_convert_core_file_wine_to_w32_result" - func_to_host_file_result="$func_cygpath_result" + func_to_host_file_result=$func_cygpath_result fi func_convert_file_check "$1" "$func_to_host_file_result" } @@ -2217,7 +3584,7 @@ func_convert_file_nix_to_cygwin () ############################################# # $build to $host PATH CONVERSION FUNCTIONS # ############################################# -# invoked via `$to_host_path_cmd ARG' +# invoked via '$to_host_path_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # The result will be available in $func_to_host_path_result. @@ -2241,10 +3608,11 @@ func_convert_file_nix_to_cygwin () to_host_path_cmd= func_init_to_host_path_cmd () { - $opt_debug + $debug_cmd + if test -z "$to_host_path_cmd"; then func_stripname 'func_convert_file_' '' "$to_host_file_cmd" - to_host_path_cmd="func_convert_path_${func_stripname_result}" + to_host_path_cmd=func_convert_path_$func_stripname_result fi } @@ -2254,7 +3622,8 @@ func_init_to_host_path_cmd () # in func_to_host_path_result. func_to_host_path () { - $opt_debug + $debug_cmd + func_init_to_host_path_cmd $to_host_path_cmd "$1" } @@ -2265,7 +3634,7 @@ func_to_host_path () # Copy ARG to func_to_host_path_result. func_convert_path_noop () { - func_to_host_path_result="$1" + func_to_host_path_result=$1 } # end func_convert_path_noop @@ -2276,8 +3645,9 @@ func_convert_path_noop () # func_to_host_path_result. func_convert_path_msys_to_w32 () { - $opt_debug - func_to_host_path_result="$1" + $debug_cmd + + func_to_host_path_result=$1 if test -n "$1"; then # Remove leading and trailing path separator characters from ARG. MSYS # behavior is inconsistent here; cygpath turns them into '.;' and ';.'; @@ -2285,7 +3655,7 @@ func_convert_path_msys_to_w32 () func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" - func_to_host_path_result="$func_convert_core_msys_to_w32_result" + func_to_host_path_result=$func_convert_core_msys_to_w32_result func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" @@ -2299,8 +3669,9 @@ func_convert_path_msys_to_w32 () # func_to_host_file_result. func_convert_path_cygwin_to_w32 () { - $opt_debug - func_to_host_path_result="$1" + $debug_cmd + + func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" @@ -2319,14 +3690,15 @@ func_convert_path_cygwin_to_w32 () # a working winepath. Returns result in func_to_host_file_result. func_convert_path_nix_to_w32 () { - $opt_debug - func_to_host_path_result="$1" + $debug_cmd + + func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" - func_to_host_path_result="$func_convert_core_path_wine_to_w32_result" + func_to_host_path_result=$func_convert_core_path_wine_to_w32_result func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" @@ -2340,15 +3712,16 @@ func_convert_path_nix_to_w32 () # Returns result in func_to_host_file_result. func_convert_path_msys_to_cygwin () { - $opt_debug - func_to_host_path_result="$1" + $debug_cmd + + func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_msys_to_w32_result" - func_to_host_path_result="$func_cygpath_result" + func_to_host_path_result=$func_cygpath_result func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" @@ -2363,8 +3736,9 @@ func_convert_path_msys_to_cygwin () # func_to_host_file_result. func_convert_path_nix_to_cygwin () { - $opt_debug - func_to_host_path_result="$1" + $debug_cmd + + func_to_host_path_result=$1 if test -n "$1"; then # Remove leading and trailing path separator characters from # ARG. msys behavior is inconsistent here, cygpath turns them @@ -2373,7 +3747,7 @@ func_convert_path_nix_to_cygwin () func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result" - func_to_host_path_result="$func_cygpath_result" + func_to_host_path_result=$func_cygpath_result func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" @@ -2382,13 +3756,31 @@ func_convert_path_nix_to_cygwin () # end func_convert_path_nix_to_cygwin +# func_dll_def_p FILE +# True iff FILE is a Windows DLL '.def' file. +# Keep in sync with _LT_DLL_DEF_P in libtool.m4 +func_dll_def_p () +{ + $debug_cmd + + func_dll_def_p_tmp=`$SED -n \ + -e 's/^[ ]*//' \ + -e '/^\(;.*\)*$/d' \ + -e 's/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p' \ + -e q \ + "$1"` + test DEF = "$func_dll_def_p_tmp" +} + + # func_mode_compile arg... func_mode_compile () { - $opt_debug + $debug_cmd + # Get the compilation command and the source file. base_compile= - srcfile="$nonopt" # always keep a non-empty value in "srcfile" + srcfile=$nonopt # always keep a non-empty value in "srcfile" suppress_opt=yes suppress_output= arg_mode=normal @@ -2401,12 +3793,12 @@ func_mode_compile () case $arg_mode in arg ) # do not "continue". Instead, add this to base_compile - lastarg="$arg" + lastarg=$arg arg_mode=normal ;; target ) - libobj="$arg" + libobj=$arg arg_mode=normal continue ;; @@ -2416,18 +3808,18 @@ func_mode_compile () case $arg in -o) test -n "$libobj" && \ - func_fatal_error "you cannot specify \`-o' more than once" + func_fatal_error "you cannot specify '-o' more than once" arg_mode=target continue ;; -pie | -fpie | -fPIE) - pie_flag+=" $arg" + func_append pie_flag " $arg" continue ;; -shared | -static | -prefer-pic | -prefer-non-pic) - later+=" $arg" + func_append later " $arg" continue ;; @@ -2445,17 +3837,17 @@ func_mode_compile () func_stripname '-Wc,' '' "$arg" args=$func_stripname_result lastarg= - save_ifs="$IFS"; IFS=',' + save_ifs=$IFS; IFS=, for arg in $args; do - IFS="$save_ifs" + IFS=$save_ifs func_append_quoted lastarg "$arg" done - IFS="$save_ifs" + IFS=$save_ifs func_stripname ' ' '' "$lastarg" lastarg=$func_stripname_result # Add the arguments to base_compile. - base_compile+=" $lastarg" + func_append base_compile " $lastarg" continue ;; @@ -2463,8 +3855,8 @@ func_mode_compile () # Accept the current argument as the source file. # The previous "srcfile" becomes the current argument. # - lastarg="$srcfile" - srcfile="$arg" + lastarg=$srcfile + srcfile=$arg ;; esac # case $arg ;; @@ -2479,13 +3871,13 @@ func_mode_compile () func_fatal_error "you must specify an argument for -Xcompile" ;; target) - func_fatal_error "you must specify a target with \`-o'" + func_fatal_error "you must specify a target with '-o'" ;; *) # Get the name of the library object. test -z "$libobj" && { func_basename "$srcfile" - libobj="$func_basename_result" + libobj=$func_basename_result } ;; esac @@ -2505,7 +3897,7 @@ func_mode_compile () case $libobj in *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;; *) - func_fatal_error "cannot determine name of library object from \`$libobj'" + func_fatal_error "cannot determine name of library object from '$libobj'" ;; esac @@ -2514,8 +3906,8 @@ func_mode_compile () for arg in $later; do case $arg in -shared) - test "$build_libtool_libs" != yes && \ - func_fatal_configuration "can not build a shared library" + test yes = "$build_libtool_libs" \ + || func_fatal_configuration "cannot build a shared library" build_old_libs=no continue ;; @@ -2541,17 +3933,17 @@ func_mode_compile () func_quote_for_eval "$libobj" test "X$libobj" != "X$func_quote_for_eval_result" \ && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \ - && func_warning "libobj name \`$libobj' may not contain shell special characters." + && func_warning "libobj name '$libobj' may not contain shell special characters." func_dirname_and_basename "$obj" "/" "" - objname="$func_basename_result" - xdir="$func_dirname_result" - lobj=${xdir}$objdir/$objname + objname=$func_basename_result + xdir=$func_dirname_result + lobj=$xdir$objdir/$objname test -z "$base_compile" && \ func_fatal_help "you must specify a compilation command" # Delete any leftover library objects. - if test "$build_old_libs" = yes; then + if test yes = "$build_old_libs"; then removelist="$obj $lobj $libobj ${libobj}T" else removelist="$lobj $libobj ${libobj}T" @@ -2563,16 +3955,16 @@ func_mode_compile () pic_mode=default ;; esac - if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then + if test no = "$pic_mode" && test pass_all != "$deplibs_check_method"; then # non-PIC code in shared libraries is not supported pic_mode=default fi # Calculate the filename of the output object if compiler does # not support -o with -c - if test "$compiler_c_o" = no; then - output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.${objext} - lockfile="$output_obj.lock" + if test no = "$compiler_c_o"; then + output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.$objext + lockfile=$output_obj.lock else output_obj= need_locks=no @@ -2581,12 +3973,12 @@ func_mode_compile () # Lock this critical section if it is needed # We use this script file to make the link, it avoids creating a new file - if test "$need_locks" = yes; then + if test yes = "$need_locks"; then until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done - elif test "$need_locks" = warn; then + elif test warn = "$need_locks"; then if test -f "$lockfile"; then $ECHO "\ *** ERROR, $lockfile exists and contains: @@ -2594,7 +3986,7 @@ func_mode_compile () This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because -your compiler does not support \`-c' and \`-o' together. If you +your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." @@ -2602,12 +3994,12 @@ compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi - removelist+=" $output_obj" + func_append removelist " $output_obj" $ECHO "$srcfile" > "$lockfile" fi $opt_dry_run || $RM $removelist - removelist+=" $lockfile" + func_append removelist " $lockfile" trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15 func_to_tool_file "$srcfile" func_convert_file_msys_to_w32 @@ -2616,11 +4008,11 @@ compiler." qsrcfile=$func_quote_for_eval_result # Only build a PIC object if we are building libtool libraries. - if test "$build_libtool_libs" = yes; then + if test yes = "$build_libtool_libs"; then # Without this assignment, base_compile gets emptied. fbsd_hideous_sh_bug=$base_compile - if test "$pic_mode" != no; then + if test no != "$pic_mode"; then command="$base_compile $qsrcfile $pic_flag" else # Don't build PIC code @@ -2631,13 +4023,13 @@ compiler." if test -z "$output_obj"; then # Place PIC objects in $objdir - command+=" -o $lobj" + func_append command " -o $lobj" fi func_show_eval_locale "$command" \ 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE' - if test "$need_locks" = warn && + if test warn = "$need_locks" && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: @@ -2648,7 +4040,7 @@ $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because -your compiler does not support \`-c' and \`-o' together. If you +your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." @@ -2664,29 +4056,29 @@ compiler." fi # Allow error messages only from the first compilation. - if test "$suppress_opt" = yes; then + if test yes = "$suppress_opt"; then suppress_output=' >/dev/null 2>&1' fi fi # Only build a position-dependent object if we build old libraries. - if test "$build_old_libs" = yes; then - if test "$pic_mode" != yes; then + if test yes = "$build_old_libs"; then + if test yes != "$pic_mode"; then # Don't build PIC code command="$base_compile $qsrcfile$pie_flag" else command="$base_compile $qsrcfile $pic_flag" fi - if test "$compiler_c_o" = yes; then - command+=" -o $obj" + if test yes = "$compiler_c_o"; then + func_append command " -o $obj" fi # Suppress compiler output if we already did a PIC compilation. - command+="$suppress_output" + func_append command "$suppress_output" func_show_eval_locale "$command" \ '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' - if test "$need_locks" = warn && + if test warn = "$need_locks" && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: @@ -2697,7 +4089,7 @@ $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because -your compiler does not support \`-c' and \`-o' together. If you +your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." @@ -2717,7 +4109,7 @@ compiler." func_write_libtool_object "$libobj" "$objdir/$objname" "$objname" # Unlock the critical section if it was locked - if test "$need_locks" != no; then + if test no != "$need_locks"; then removelist=$lockfile $RM "$lockfile" fi @@ -2727,7 +4119,7 @@ compiler." } $opt_help || { - test "$opt_mode" = compile && func_mode_compile ${1+"$@"} + test compile = "$opt_mode" && func_mode_compile ${1+"$@"} } func_mode_help () @@ -2747,7 +4139,7 @@ func_mode_help () Remove files from the build directory. RM is the name of the program to use to delete files associated with each FILE -(typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed +(typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed to RM. If FILE is a libtool library, object or program, all the files associated @@ -2766,16 +4158,16 @@ This mode accepts the following additional options: -no-suppress do not suppress compiler output for multiple passes -prefer-pic try to build PIC objects only -prefer-non-pic try to build non-PIC objects only - -shared do not build a \`.o' file suitable for static linking - -static only build a \`.o' file suitable for static linking + -shared do not build a '.o' file suitable for static linking + -static only build a '.o' file suitable for static linking -Wc,FLAG pass FLAG directly to the compiler -COMPILE-COMMAND is a command to be used in creating a \`standard' object file +COMPILE-COMMAND is a command to be used in creating a 'standard' object file from the given SOURCEFILE. The output file name is determined by removing the directory component from -SOURCEFILE, then substituting the C source code suffix \`.c' with the -library object suffix, \`.lo'." +SOURCEFILE, then substituting the C source code suffix '.c' with the +library object suffix, '.lo'." ;; execute) @@ -2788,7 +4180,7 @@ This mode accepts the following additional options: -dlopen FILE add the directory containing FILE to the library path -This mode sets the library path environment variable according to \`-dlopen' +This mode sets the library path environment variable according to '-dlopen' flags. If any of the ARGS are libtool executable wrappers, then they are translated @@ -2807,7 +4199,7 @@ Complete the installation of libtool libraries. Each LIBDIR is a directory that contains libtool libraries. The commands that this mode executes may require superuser privileges. Use -the \`--dry-run' option if you just want to see what would be executed." +the '--dry-run' option if you just want to see what would be executed." ;; install) @@ -2817,7 +4209,7 @@ the \`--dry-run' option if you just want to see what would be executed." Install executables or libraries. INSTALL-COMMAND is the installation command. The first component should be -either the \`install' or \`cp' program. +either the 'install' or 'cp' program. The following components of INSTALL-COMMAND are treated specially: @@ -2843,7 +4235,7 @@ The following components of LINK-COMMAND are treated specially: -avoid-version do not add a version suffix if possible -bindir BINDIR specify path to binaries directory (for systems where libraries must be found in the PATH setting at runtime) - -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime + -dlopen FILE '-dlpreopen' FILE if it cannot be dlopened at runtime -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) -export-symbols SYMFILE @@ -2857,7 +4249,8 @@ The following components of LINK-COMMAND are treated specially: -no-install link a not-installable executable -no-undefined declare that a library does not refer to external symbols -o OUTPUT-FILE create OUTPUT-FILE from the specified objects - -objectlist FILE Use a list of object files found in FILE to specify objects + -objectlist FILE use a list of object files found in FILE to specify objects + -os2dllname NAME force a short DLL name on OS/2 (no effect on other OSes) -precious-files-regex REGEX don't remove output files matching REGEX -release RELEASE specify package release information @@ -2877,20 +4270,20 @@ The following components of LINK-COMMAND are treated specially: -Xlinker FLAG pass linker-specific FLAG directly to the linker -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC) -All other options (arguments beginning with \`-') are ignored. +All other options (arguments beginning with '-') are ignored. -Every other argument is treated as a filename. Files ending in \`.la' are +Every other argument is treated as a filename. Files ending in '.la' are treated as uninstalled libtool libraries, other files are standard or library object files. -If the OUTPUT-FILE ends in \`.la', then a libtool library is created, -only library objects (\`.lo' files) may be specified, and \`-rpath' is +If the OUTPUT-FILE ends in '.la', then a libtool library is created, +only library objects ('.lo' files) may be specified, and '-rpath' is required, except when creating a convenience library. -If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created -using \`ar' and \`ranlib', or on Windows using \`lib'. +If OUTPUT-FILE ends in '.a' or '.lib', then a standard library is created +using 'ar' and 'ranlib', or on Windows using 'lib'. -If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file +If OUTPUT-FILE ends in '.lo' or '.$objext', then a reloadable object file is created, otherwise an executable program is created." ;; @@ -2901,7 +4294,7 @@ is created, otherwise an executable program is created." Remove libraries from an installation directory. RM is the name of the program to use to delete files associated with each FILE -(typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed +(typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed to RM. If FILE is a libtool library, all the files associated with it are deleted. @@ -2909,17 +4302,17 @@ Otherwise, only FILE itself is deleted using RM." ;; *) - func_fatal_help "invalid operation mode \`$opt_mode'" + func_fatal_help "invalid operation mode '$opt_mode'" ;; esac echo - $ECHO "Try \`$progname --help' for more information about other modes." + $ECHO "Try '$progname --help' for more information about other modes." } # Now that we've collected a possible --mode arg, show help if necessary if $opt_help; then - if test "$opt_help" = :; then + if test : = "$opt_help"; then func_mode_help else { @@ -2927,7 +4320,7 @@ if $opt_help; then for opt_mode in compile link execute install finish uninstall clean; do func_mode_help done - } | sed -n '1p; 2,$s/^Usage:/ or: /p' + } | $SED -n '1p; 2,$s/^Usage:/ or: /p' { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do @@ -2935,7 +4328,7 @@ if $opt_help; then func_mode_help done } | - sed '1d + $SED '1d /^When reporting/,/^Report/{ H d @@ -2952,16 +4345,17 @@ fi # func_mode_execute arg... func_mode_execute () { - $opt_debug + $debug_cmd + # The first argument is the command name. - cmd="$nonopt" + cmd=$nonopt test -z "$cmd" && \ func_fatal_help "you must specify a COMMAND" # Handle -dlopen flags immediately. for file in $opt_dlopen; do test -f "$file" \ - || func_fatal_help "\`$file' is not a file" + || func_fatal_help "'$file' is not a file" dir= case $file in @@ -2971,7 +4365,7 @@ func_mode_execute () # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ - || func_fatal_help "\`$lib' is not a valid libtool archive" + || func_fatal_help "'$lib' is not a valid libtool archive" # Read the libtool library. dlname= @@ -2982,18 +4376,18 @@ func_mode_execute () if test -z "$dlname"; then # Warn if it was a shared library. test -n "$library_names" && \ - func_warning "\`$file' was not linked with \`-export-dynamic'" + func_warning "'$file' was not linked with '-export-dynamic'" continue fi func_dirname "$file" "" "." - dir="$func_dirname_result" + dir=$func_dirname_result if test -f "$dir/$objdir/$dlname"; then - dir+="/$objdir" + func_append dir "/$objdir" else if test ! -f "$dir/$dlname"; then - func_fatal_error "cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" + func_fatal_error "cannot find '$dlname' in '$dir' or '$dir/$objdir'" fi fi ;; @@ -3001,18 +4395,18 @@ func_mode_execute () *.lo) # Just add the directory containing the .lo file. func_dirname "$file" "" "." - dir="$func_dirname_result" + dir=$func_dirname_result ;; *) - func_warning "\`-dlopen' is ignored for non-libtool libraries and objects" + func_warning "'-dlopen' is ignored for non-libtool libraries and objects" continue ;; esac # Get the absolute pathname. absdir=`cd "$dir" && pwd` - test -n "$absdir" && dir="$absdir" + test -n "$absdir" && dir=$absdir # Now add the directory to shlibpath_var. if eval "test -z \"\$$shlibpath_var\""; then @@ -3024,7 +4418,7 @@ func_mode_execute () # This variable tells wrapper scripts just to set shlibpath_var # rather than running their programs. - libtool_execute_magic="$magic" + libtool_execute_magic=$magic # Check if any of the arguments is a wrapper script. args= @@ -3037,12 +4431,12 @@ func_mode_execute () if func_ltwrapper_script_p "$file"; then func_source "$file" # Transform arg to wrapped name. - file="$progdir/$program" + file=$progdir/$program elif func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" func_source "$func_ltwrapper_scriptname_result" # Transform arg to wrapped name. - file="$progdir/$program" + file=$progdir/$program fi ;; esac @@ -3050,7 +4444,15 @@ func_mode_execute () func_append_quoted args "$file" done - if test "X$opt_dry_run" = Xfalse; then + if $opt_dry_run; then + # Display what would be done. + if test -n "$shlibpath_var"; then + eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" + echo "export $shlibpath_var" + fi + $ECHO "$cmd$args" + exit $EXIT_SUCCESS + else if test -n "$shlibpath_var"; then # Export the shlibpath_var. eval "export $shlibpath_var" @@ -3067,25 +4469,18 @@ func_mode_execute () done # Now prepare to actually exec the command. - exec_cmd="\$cmd$args" - else - # Display what would be done. - if test -n "$shlibpath_var"; then - eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" - echo "export $shlibpath_var" - fi - $ECHO "$cmd$args" - exit $EXIT_SUCCESS + exec_cmd=\$cmd$args fi } -test "$opt_mode" = execute && func_mode_execute ${1+"$@"} +test execute = "$opt_mode" && func_mode_execute ${1+"$@"} # func_mode_finish arg... func_mode_finish () { - $opt_debug + $debug_cmd + libs= libdirs= admincmds= @@ -3093,17 +4488,17 @@ func_mode_finish () for opt in "$nonopt" ${1+"$@"} do if test -d "$opt"; then - libdirs+=" $opt" + func_append libdirs " $opt" elif test -f "$opt"; then if func_lalib_unsafe_p "$opt"; then - libs+=" $opt" + func_append libs " $opt" else - func_warning "\`$opt' is not a valid libtool archive" + func_warning "'$opt' is not a valid libtool archive" fi else - func_fatal_error "invalid argument \`$opt'" + func_fatal_error "invalid argument '$opt'" fi done @@ -3118,12 +4513,12 @@ func_mode_finish () # Remove sysroot references if $opt_dry_run; then for lib in $libs; do - echo "removing references to $lt_sysroot and \`=' prefixes from $lib" + echo "removing references to $lt_sysroot and '=' prefixes from $lib" done else tmpdir=`func_mktempdir` for lib in $libs; do - sed -e "${sysroot_cmd} s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ + $SED -e "$sysroot_cmd s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ > $tmpdir/tmp-la mv -f $tmpdir/tmp-la $lib done @@ -3141,14 +4536,14 @@ func_mode_finish () if test -n "$finish_eval"; then # Do the single finish_eval. eval cmds=\"$finish_eval\" - $opt_dry_run || eval "$cmds" || admincmds+=" + $opt_dry_run || eval "$cmds" || func_append admincmds " $cmds" fi done fi # Exit here if they wanted silent mode. - $opt_silent && exit $EXIT_SUCCESS + $opt_quiet && exit $EXIT_SUCCESS if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then echo "----------------------------------------------------------------------" @@ -3159,27 +4554,27 @@ func_mode_finish () echo echo "If you ever happen to want to link against installed libraries" echo "in a given directory, LIBDIR, you must either use libtool, and" - echo "specify the full pathname of the library, or use the \`-LLIBDIR'" + echo "specify the full pathname of the library, or use the '-LLIBDIR'" echo "flag during linking and do at least one of the following:" if test -n "$shlibpath_var"; then - echo " - add LIBDIR to the \`$shlibpath_var' environment variable" + echo " - add LIBDIR to the '$shlibpath_var' environment variable" echo " during execution" fi if test -n "$runpath_var"; then - echo " - add LIBDIR to the \`$runpath_var' environment variable" + echo " - add LIBDIR to the '$runpath_var' environment variable" echo " during linking" fi if test -n "$hardcode_libdir_flag_spec"; then libdir=LIBDIR eval flag=\"$hardcode_libdir_flag_spec\" - $ECHO " - use the \`$flag' linker flag" + $ECHO " - use the '$flag' linker flag" fi if test -n "$admincmds"; then $ECHO " - have your system administrator run these commands:$admincmds" fi if test -f /etc/ld.so.conf; then - echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'" + echo " - have your system administrator add LIBDIR to '/etc/ld.so.conf'" fi echo @@ -3198,18 +4593,20 @@ func_mode_finish () exit $EXIT_SUCCESS } -test "$opt_mode" = finish && func_mode_finish ${1+"$@"} +test finish = "$opt_mode" && func_mode_finish ${1+"$@"} # func_mode_install arg... func_mode_install () { - $opt_debug + $debug_cmd + # There may be an optional sh(1) argument at the beginning of # install_prog (especially on Windows NT). - if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh || + if test "$SHELL" = "$nonopt" || test /bin/sh = "$nonopt" || # Allow the use of GNU shtool's install command. - case $nonopt in *shtool*) :;; *) false;; esac; then + case $nonopt in *shtool*) :;; *) false;; esac + then # Aesthetically quote it. func_quote_for_eval "$nonopt" install_prog="$func_quote_for_eval_result " @@ -3223,7 +4620,7 @@ func_mode_install () # The real first argument should be the name of the installation program. # Aesthetically quote it. func_quote_for_eval "$arg" - install_prog+="$func_quote_for_eval_result" + func_append install_prog "$func_quote_for_eval_result" install_shared_prog=$install_prog case " $install_prog " in *[\\\ /]cp\ *) install_cp=: ;; @@ -3236,20 +4633,20 @@ func_mode_install () opts= prev= install_type= - isdir=no + isdir=false stripme= no_mode=: for arg do arg2= if test -n "$dest"; then - files+=" $dest" + func_append files " $dest" dest=$arg continue fi case $arg in - -d) isdir=yes ;; + -d) isdir=: ;; -f) if $install_cp; then :; else prev=$arg @@ -3267,7 +4664,7 @@ func_mode_install () *) # If the previous option needed an argument, then skip it. if test -n "$prev"; then - if test "x$prev" = x-m && test -n "$install_override_mode"; then + if test X-m = "X$prev" && test -n "$install_override_mode"; then arg2=$install_override_mode no_mode=false fi @@ -3281,23 +4678,23 @@ func_mode_install () # Aesthetically quote the argument. func_quote_for_eval "$arg" - install_prog+=" $func_quote_for_eval_result" + func_append install_prog " $func_quote_for_eval_result" if test -n "$arg2"; then func_quote_for_eval "$arg2" fi - install_shared_prog+=" $func_quote_for_eval_result" + func_append install_shared_prog " $func_quote_for_eval_result" done test -z "$install_prog" && \ func_fatal_help "you must specify an install program" test -n "$prev" && \ - func_fatal_help "the \`$prev' option requires an argument" + func_fatal_help "the '$prev' option requires an argument" if test -n "$install_override_mode" && $no_mode; then if $install_cp; then :; else func_quote_for_eval "$install_override_mode" - install_shared_prog+=" -m $func_quote_for_eval_result" + func_append install_shared_prog " -m $func_quote_for_eval_result" fi fi @@ -3314,19 +4711,19 @@ func_mode_install () dest=$func_stripname_result # Check to see that the destination is a directory. - test -d "$dest" && isdir=yes - if test "$isdir" = yes; then - destdir="$dest" + test -d "$dest" && isdir=: + if $isdir; then + destdir=$dest destname= else func_dirname_and_basename "$dest" "" "." - destdir="$func_dirname_result" - destname="$func_basename_result" + destdir=$func_dirname_result + destname=$func_basename_result # Not a directory, so check to see that there is only one file specified. set dummy $files; shift test "$#" -gt 1 && \ - func_fatal_help "\`$dest' is not a directory" + func_fatal_help "'$dest' is not a directory" fi case $destdir in [\\/]* | [A-Za-z]:[\\/]*) ;; @@ -3335,7 +4732,7 @@ func_mode_install () case $file in *.lo) ;; *) - func_fatal_help "\`$destdir' must be an absolute directory name" + func_fatal_help "'$destdir' must be an absolute directory name" ;; esac done @@ -3344,7 +4741,7 @@ func_mode_install () # This variable tells wrapper scripts just to set variables rather # than running their programs. - libtool_install_magic="$magic" + libtool_install_magic=$magic staticlibs= future_libdirs= @@ -3355,7 +4752,7 @@ func_mode_install () case $file in *.$libext) # Do the static libraries later. - staticlibs+=" $file" + func_append staticlibs " $file" ;; *.la) @@ -3364,7 +4761,7 @@ func_mode_install () # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ - || func_fatal_help "\`$file' is not a valid libtool archive" + || func_fatal_help "'$file' is not a valid libtool archive" library_names= old_library= @@ -3375,19 +4772,19 @@ func_mode_install () if test "X$destdir" = "X$libdir"; then case "$current_libdirs " in *" $libdir "*) ;; - *) current_libdirs+=" $libdir" ;; + *) func_append current_libdirs " $libdir" ;; esac else # Note the libdir as a future libdir. case "$future_libdirs " in *" $libdir "*) ;; - *) future_libdirs+=" $libdir" ;; + *) func_append future_libdirs " $libdir" ;; esac fi func_dirname "$file" "/" "" - dir="$func_dirname_result" - dir+="$objdir" + dir=$func_dirname_result + func_append dir "$objdir" if test -n "$relink_command"; then # Determine the prefix the user has applied to our future dir. @@ -3400,7 +4797,7 @@ func_mode_install () # are installed into $libdir/../bin (currently, that works fine) # but it's something to keep an eye on. test "$inst_prefix_dir" = "$destdir" && \ - func_fatal_error "error: cannot install \`$file' to a directory not ending in $libdir" + func_fatal_error "error: cannot install '$file' to a directory not ending in $libdir" if test -n "$inst_prefix_dir"; then # Stick the inst_prefix_dir data into the link command. @@ -3409,29 +4806,36 @@ func_mode_install () relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"` fi - func_warning "relinking \`$file'" + func_warning "relinking '$file'" func_show_eval "$relink_command" \ - 'func_fatal_error "error: relink \`$file'\'' with the above command before installing it"' + 'func_fatal_error "error: relink '\''$file'\'' with the above command before installing it"' fi # See the names of the shared library. set dummy $library_names; shift if test -n "$1"; then - realname="$1" + realname=$1 shift - srcname="$realname" - test -n "$relink_command" && srcname="$realname"T + srcname=$realname + test -n "$relink_command" && srcname=${realname}T # Install the shared library and build the symlinks. func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \ 'exit $?' - tstripme="$stripme" + tstripme=$stripme case $host_os in cygwin* | mingw* | pw32* | cegcc*) case $realname in *.dll.a) - tstripme="" + tstripme= + ;; + esac + ;; + os2*) + case $realname in + *_dll.a) + tstripme= ;; esac ;; @@ -3442,7 +4846,7 @@ func_mode_install () if test "$#" -gt 0; then # Delete the old symlinks, and create new ones. - # Try `ln -sf' first, because the `ln' binary might depend on + # Try 'ln -sf' first, because the 'ln' binary might depend on # the symlink we replace! Solaris /bin/ln does not understand -f, # so we also need to try rm && ln -s. for linkname @@ -3453,18 +4857,18 @@ func_mode_install () fi # Do each command in the postinstall commands. - lib="$destdir/$realname" + lib=$destdir/$realname func_execute_cmds "$postinstall_cmds" 'exit $?' fi # Install the pseudo-library for information purposes. func_basename "$file" - name="$func_basename_result" - instname="$dir/$name"i + name=$func_basename_result + instname=$dir/${name}i func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' # Maybe install the static library, too. - test -n "$old_library" && staticlibs+=" $dir/$old_library" + test -n "$old_library" && func_append staticlibs " $dir/$old_library" ;; *.lo) @@ -3472,11 +4876,11 @@ func_mode_install () # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then - destfile="$destdir/$destname" + destfile=$destdir/$destname else func_basename "$file" - destfile="$func_basename_result" - destfile="$destdir/$destfile" + destfile=$func_basename_result + destfile=$destdir/$destfile fi # Deduce the name of the destination old-style object file. @@ -3486,11 +4890,11 @@ func_mode_install () staticdest=$func_lo2o_result ;; *.$objext) - staticdest="$destfile" + staticdest=$destfile destfile= ;; *) - func_fatal_help "cannot copy a libtool object to \`$destfile'" + func_fatal_help "cannot copy a libtool object to '$destfile'" ;; esac @@ -3499,7 +4903,7 @@ func_mode_install () func_show_eval "$install_prog $file $destfile" 'exit $?' # Install the old object if enabled. - if test "$build_old_libs" = yes; then + if test yes = "$build_old_libs"; then # Deduce the name of the old-style object file. func_lo2o "$file" staticobj=$func_lo2o_result @@ -3511,23 +4915,23 @@ func_mode_install () *) # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then - destfile="$destdir/$destname" + destfile=$destdir/$destname else func_basename "$file" - destfile="$func_basename_result" - destfile="$destdir/$destfile" + destfile=$func_basename_result + destfile=$destdir/$destfile fi # If the file is missing, and there is a .exe on the end, strip it # because it is most likely a libtool script we actually want to # install - stripped_ext="" + stripped_ext= case $file in *.exe) if test ! -f "$file"; then func_stripname '' '.exe' "$file" file=$func_stripname_result - stripped_ext=".exe" + stripped_ext=.exe fi ;; esac @@ -3555,19 +4959,19 @@ func_mode_install () # Check the variables that should have been set. test -z "$generated_by_libtool_version" && \ - func_fatal_error "invalid libtool wrapper script \`$wrapper'" + func_fatal_error "invalid libtool wrapper script '$wrapper'" - finalize=yes + finalize=: for lib in $notinst_deplibs; do # Check to see that each library is installed. libdir= if test -f "$lib"; then func_source "$lib" fi - libfile="$libdir/"`$ECHO "$lib" | $SED 's%^.*/%%g'` ### testsuite: skip nested quoting test + libfile=$libdir/`$ECHO "$lib" | $SED 's%^.*/%%g'` if test -n "$libdir" && test ! -f "$libfile"; then - func_warning "\`$lib' has not been installed in \`$libdir'" - finalize=no + func_warning "'$lib' has not been installed in '$libdir'" + finalize=false fi done @@ -3575,29 +4979,29 @@ func_mode_install () func_source "$wrapper" outputname= - if test "$fast_install" = no && test -n "$relink_command"; then + if test no = "$fast_install" && test -n "$relink_command"; then $opt_dry_run || { - if test "$finalize" = yes; then + if $finalize; then tmpdir=`func_mktempdir` func_basename "$file$stripped_ext" - file="$func_basename_result" - outputname="$tmpdir/$file" + file=$func_basename_result + outputname=$tmpdir/$file # Replace the output file specification. relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'` - $opt_silent || { + $opt_quiet || { func_quote_for_expand "$relink_command" eval "func_echo $func_quote_for_expand_result" } if eval "$relink_command"; then : else - func_error "error: relink \`$file' with the above command before installing it" + func_error "error: relink '$file' with the above command before installing it" $opt_dry_run || ${RM}r "$tmpdir" continue fi - file="$outputname" + file=$outputname else - func_warning "cannot relink \`$file'" + func_warning "cannot relink '$file'" fi } else @@ -3634,10 +5038,10 @@ func_mode_install () for file in $staticlibs; do func_basename "$file" - name="$func_basename_result" + name=$func_basename_result # Set up the ranlib parameters. - oldlib="$destdir/$name" + oldlib=$destdir/$name func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 tool_oldlib=$func_to_tool_file_result @@ -3652,18 +5056,18 @@ func_mode_install () done test -n "$future_libdirs" && \ - func_warning "remember to run \`$progname --finish$future_libdirs'" + func_warning "remember to run '$progname --finish$future_libdirs'" if test -n "$current_libdirs"; then # Maybe just do a dry run. $opt_dry_run && current_libdirs=" -n$current_libdirs" - exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs' + exec_cmd='$SHELL "$progpath" $preserve_args --finish$current_libdirs' else exit $EXIT_SUCCESS fi } -test "$opt_mode" = install && func_mode_install ${1+"$@"} +test install = "$opt_mode" && func_mode_install ${1+"$@"} # func_generate_dlsyms outputname originator pic_p @@ -3671,16 +5075,17 @@ test "$opt_mode" = install && func_mode_install ${1+"$@"} # a dlpreopen symbol table. func_generate_dlsyms () { - $opt_debug - my_outputname="$1" - my_originator="$2" - my_pic_p="${3-no}" - my_prefix=`$ECHO "$my_originator" | sed 's%[^a-zA-Z0-9]%_%g'` + $debug_cmd + + my_outputname=$1 + my_originator=$2 + my_pic_p=${3-false} + my_prefix=`$ECHO "$my_originator" | $SED 's%[^a-zA-Z0-9]%_%g'` my_dlsyms= - if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then + if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then if test -n "$NM" && test -n "$global_symbol_pipe"; then - my_dlsyms="${my_outputname}S.c" + my_dlsyms=${my_outputname}S.c else func_error "not configured to extract global symbols from dlpreopened files" fi @@ -3691,7 +5096,7 @@ func_generate_dlsyms () "") ;; *.c) # Discover the nlist of each of the dlfiles. - nlist="$output_objdir/${my_outputname}.nm" + nlist=$output_objdir/$my_outputname.nm func_show_eval "$RM $nlist ${nlist}S ${nlist}T" @@ -3699,34 +5104,36 @@ func_generate_dlsyms () func_verbose "creating $output_objdir/$my_dlsyms" $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ -/* $my_dlsyms - symbol resolution table for \`$my_outputname' dlsym emulation. */ -/* Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION */ +/* $my_dlsyms - symbol resolution table for '$my_outputname' dlsym emulation. */ +/* Generated by $PROGRAM (GNU $PACKAGE) $VERSION */ #ifdef __cplusplus extern \"C\" { #endif -#if defined(__GNUC__) && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) +#if defined __GNUC__ && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) #pragma GCC diagnostic ignored \"-Wstrict-prototypes\" #endif /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ -#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) -/* DATA imports from DLLs on WIN32 con't be const, because runtime +#if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE +/* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST -#elif defined(__osf__) +#elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else # define LT_DLSYM_CONST const #endif +#define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) + /* External symbol declarations for the compiler. */\ " - if test "$dlself" = yes; then - func_verbose "generating symbol list for \`$output'" + if test yes = "$dlself"; then + func_verbose "generating symbol list for '$output'" $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" @@ -3734,7 +5141,7 @@ extern \"C\" { progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP` for progfile in $progfiles; do func_to_tool_file "$progfile" func_convert_file_msys_to_w32 - func_verbose "extracting global C symbols from \`$func_to_tool_file_result'" + func_verbose "extracting global C symbols from '$func_to_tool_file_result'" $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'" done @@ -3754,10 +5161,10 @@ extern \"C\" { # Prepare the list of exported symbols if test -z "$export_symbols"; then - export_symbols="$output_objdir/$outputname.exp" + export_symbols=$output_objdir/$outputname.exp $opt_dry_run || { $RM $export_symbols - eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' + eval "$SED -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' case $host in *cygwin* | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' @@ -3767,7 +5174,7 @@ extern \"C\" { } else $opt_dry_run || { - eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' + eval "$SED -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' case $host in @@ -3781,22 +5188,22 @@ extern \"C\" { fi for dlprefile in $dlprefiles; do - func_verbose "extracting global C symbols from \`$dlprefile'" + func_verbose "extracting global C symbols from '$dlprefile'" func_basename "$dlprefile" - name="$func_basename_result" + name=$func_basename_result case $host in *cygwin* | *mingw* | *cegcc* ) # if an import library, we need to obtain dlname if func_win32_import_lib_p "$dlprefile"; then func_tr_sh "$dlprefile" eval "curr_lafile=\$libfile_$func_tr_sh_result" - dlprefile_dlbasename="" + dlprefile_dlbasename= if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then # Use subshell, to avoid clobbering current variable values dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"` - if test -n "$dlprefile_dlname" ; then + if test -n "$dlprefile_dlname"; then func_basename "$dlprefile_dlname" - dlprefile_dlbasename="$func_basename_result" + dlprefile_dlbasename=$func_basename_result else # no lafile. user explicitly requested -dlpreopen . $sharedlib_from_linklib_cmd "$dlprefile" @@ -3804,7 +5211,7 @@ extern \"C\" { fi fi $opt_dry_run || { - if test -n "$dlprefile_dlbasename" ; then + if test -n "$dlprefile_dlbasename"; then eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"' else func_warning "Could not compute DLL name from $name" @@ -3860,6 +5267,11 @@ extern \"C\" { echo '/* NONE */' >> "$output_objdir/$my_dlsyms" fi + func_show_eval '$RM "${nlist}I"' + if test -n "$global_symbol_to_import"; then + eval "$global_symbol_to_import"' < "$nlist"S > "$nlist"I' + fi + echo >> "$output_objdir/$my_dlsyms" "\ /* The mapping between symbol names and symbols. */ @@ -3868,11 +5280,30 @@ typedef struct { void *address; } lt_dlsymlist; extern LT_DLSYM_CONST lt_dlsymlist -lt_${my_prefix}_LTX_preloaded_symbols[]; +lt_${my_prefix}_LTX_preloaded_symbols[];\ +" + + if test -s "$nlist"I; then + echo >> "$output_objdir/$my_dlsyms" "\ +static void lt_syminit(void) +{ + LT_DLSYM_CONST lt_dlsymlist *symbol = lt_${my_prefix}_LTX_preloaded_symbols; + for (; symbol->name; ++symbol) + {" + $SED 's/.*/ if (STREQ (symbol->name, \"&\")) symbol->address = (void *) \&&;/' < "$nlist"I >> "$output_objdir/$my_dlsyms" + echo >> "$output_objdir/$my_dlsyms" "\ + } +}" + fi + echo >> "$output_objdir/$my_dlsyms" "\ LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[] = -{\ - { \"$my_originator\", (void *) 0 }," +{ {\"$my_originator\", (void *) 0}," + + if test -s "$nlist"I; then + echo >> "$output_objdir/$my_dlsyms" "\ + {\"@INIT@\", (void *) <_syminit}," + fi case $need_lib_prefix in no) @@ -3914,9 +5345,7 @@ static const void *lt_preloaded_setup() { *-*-hpux*) pic_flag_for_symtable=" $pic_flag" ;; *) - if test "X$my_pic_p" != Xno; then - pic_flag_for_symtable=" $pic_flag" - fi + $my_pic_p && pic_flag_for_symtable=" $pic_flag" ;; esac ;; @@ -3925,7 +5354,7 @@ static const void *lt_preloaded_setup() { for arg in $LTCFLAGS; do case $arg in -pie | -fpie | -fPIE) ;; - *) symtab_cflags+=" $arg" ;; + *) func_append symtab_cflags " $arg" ;; esac done @@ -3933,10 +5362,10 @@ static const void *lt_preloaded_setup() { func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' # Clean up the generated files. - func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T"' + func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T" "${nlist}I"' # Transform the symbol file into the correct name. - symfileobj="$output_objdir/${my_outputname}S.$objext" + symfileobj=$output_objdir/${my_outputname}S.$objext case $host in *cygwin* | *mingw* | *cegcc* ) if test -f "$output_objdir/$my_outputname.def"; then @@ -3954,7 +5383,7 @@ static const void *lt_preloaded_setup() { esac ;; *) - func_fatal_error "unknown suffix for \`$my_dlsyms'" + func_fatal_error "unknown suffix for '$my_dlsyms'" ;; esac else @@ -3968,6 +5397,32 @@ static const void *lt_preloaded_setup() { fi } +# func_cygming_gnu_implib_p ARG +# This predicate returns with zero status (TRUE) if +# ARG is a GNU/binutils-style import library. Returns +# with nonzero status (FALSE) otherwise. +func_cygming_gnu_implib_p () +{ + $debug_cmd + + func_to_tool_file "$1" func_convert_file_msys_to_w32 + func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` + test -n "$func_cygming_gnu_implib_tmp" +} + +# func_cygming_ms_implib_p ARG +# This predicate returns with zero status (TRUE) if +# ARG is an MS-style import library. Returns +# with nonzero status (FALSE) otherwise. +func_cygming_ms_implib_p () +{ + $debug_cmd + + func_to_tool_file "$1" func_convert_file_msys_to_w32 + func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` + test -n "$func_cygming_ms_implib_tmp" +} + # func_win32_libid arg # return the library type of file 'arg' # @@ -3977,8 +5432,9 @@ static const void *lt_preloaded_setup() { # Despite the name, also deal with 64 bit binaries. func_win32_libid () { - $opt_debug - win32_libid_type="unknown" + $debug_cmd + + win32_libid_type=unknown win32_fileres=`file -L $1 2>/dev/null` case $win32_fileres in *ar\ archive\ import\ library*) # definitely import @@ -3988,16 +5444,29 @@ func_win32_libid () # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD. if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then - func_to_tool_file "$1" func_convert_file_msys_to_w32 - win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | - $SED -n -e ' + case $nm_interface in + "MS dumpbin") + if func_cygming_ms_implib_p "$1" || + func_cygming_gnu_implib_p "$1" + then + win32_nmres=import + else + win32_nmres= + fi + ;; + *) + func_to_tool_file "$1" func_convert_file_msys_to_w32 + win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | + $SED -n -e ' 1,100{ / I /{ - s,.*,import, + s|.*|import| p q } }'` + ;; + esac case $win32_nmres in import*) win32_libid_type="x86 archive import";; *) win32_libid_type="x86 archive static";; @@ -4029,7 +5498,8 @@ func_win32_libid () # $sharedlib_from_linklib_result func_cygming_dll_for_implib () { - $opt_debug + $debug_cmd + sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"` } @@ -4046,7 +5516,8 @@ func_cygming_dll_for_implib () # specified import library. func_cygming_dll_for_implib_fallback_core () { - $opt_debug + $debug_cmd + match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"` $OBJDUMP -s --section "$1" "$2" 2>/dev/null | $SED '/^Contents of section '"$match_literal"':/{ @@ -4082,8 +5553,8 @@ func_cygming_dll_for_implib_fallback_core () /./p' | # we now have a list, one entry per line, of the stringified # contents of the appropriate section of all members of the - # archive which possess that section. Heuristic: eliminate - # all those which have a first or second character that is + # archive that possess that section. Heuristic: eliminate + # all those that have a first or second character that is # a '.' (that is, objdump's representation of an unprintable # character.) This should work for all archives with less than # 0x302f exports -- but will fail for DLLs whose name actually @@ -4094,30 +5565,6 @@ func_cygming_dll_for_implib_fallback_core () $SED -e '/^\./d;/^.\./d;q' } -# func_cygming_gnu_implib_p ARG -# This predicate returns with zero status (TRUE) if -# ARG is a GNU/binutils-style import library. Returns -# with nonzero status (FALSE) otherwise. -func_cygming_gnu_implib_p () -{ - $opt_debug - func_to_tool_file "$1" func_convert_file_msys_to_w32 - func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` - test -n "$func_cygming_gnu_implib_tmp" -} - -# func_cygming_ms_implib_p ARG -# This predicate returns with zero status (TRUE) if -# ARG is an MS-style import library. Returns -# with nonzero status (FALSE) otherwise. -func_cygming_ms_implib_p () -{ - $opt_debug - func_to_tool_file "$1" func_convert_file_msys_to_w32 - func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` - test -n "$func_cygming_ms_implib_tmp" -} - # func_cygming_dll_for_implib_fallback ARG # Platform-specific function to extract the # name of the DLL associated with the specified @@ -4131,16 +5578,17 @@ func_cygming_ms_implib_p () # $sharedlib_from_linklib_result func_cygming_dll_for_implib_fallback () { - $opt_debug - if func_cygming_gnu_implib_p "$1" ; then + $debug_cmd + + if func_cygming_gnu_implib_p "$1"; then # binutils import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"` - elif func_cygming_ms_implib_p "$1" ; then + elif func_cygming_ms_implib_p "$1"; then # ms-generated import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"` else # unknown - sharedlib_from_linklib_result="" + sharedlib_from_linklib_result= fi } @@ -4148,10 +5596,11 @@ func_cygming_dll_for_implib_fallback () # func_extract_an_archive dir oldlib func_extract_an_archive () { - $opt_debug - f_ex_an_ar_dir="$1"; shift - f_ex_an_ar_oldlib="$1" - if test "$lock_old_archive_extraction" = yes; then + $debug_cmd + + f_ex_an_ar_dir=$1; shift + f_ex_an_ar_oldlib=$1 + if test yes = "$lock_old_archive_extraction"; then lockfile=$f_ex_an_ar_oldlib.lock until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" @@ -4160,7 +5609,7 @@ func_extract_an_archive () fi func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \ 'stat=$?; rm -f "$lockfile"; exit $stat' - if test "$lock_old_archive_extraction" = yes; then + if test yes = "$lock_old_archive_extraction"; then $opt_dry_run || rm -f "$lockfile" fi if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then @@ -4174,22 +5623,23 @@ func_extract_an_archive () # func_extract_archives gentop oldlib ... func_extract_archives () { - $opt_debug - my_gentop="$1"; shift + $debug_cmd + + my_gentop=$1; shift my_oldlibs=${1+"$@"} - my_oldobjs="" - my_xlib="" - my_xabs="" - my_xdir="" + my_oldobjs= + my_xlib= + my_xabs= + my_xdir= for my_xlib in $my_oldlibs; do # Extract the objects. case $my_xlib in - [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;; + [\\/]* | [A-Za-z]:[\\/]*) my_xabs=$my_xlib ;; *) my_xabs=`pwd`"/$my_xlib" ;; esac func_basename "$my_xlib" - my_xlib="$func_basename_result" + my_xlib=$func_basename_result my_xlib_u=$my_xlib while :; do case " $extracted_archives " in @@ -4201,7 +5651,7 @@ func_extract_archives () esac done extracted_archives="$extracted_archives $my_xlib_u" - my_xdir="$my_gentop/$my_xlib_u" + my_xdir=$my_gentop/$my_xlib_u func_mkdir_p "$my_xdir" @@ -4214,22 +5664,23 @@ func_extract_archives () cd $my_xdir || exit $? darwin_archive=$my_xabs darwin_curdir=`pwd` - darwin_base_archive=`basename "$darwin_archive"` + func_basename "$darwin_archive" + darwin_base_archive=$func_basename_result darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` if test -n "$darwin_arches"; then darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` darwin_arch= func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" - for darwin_arch in $darwin_arches ; do - func_mkdir_p "unfat-$$/${darwin_base_archive}-${darwin_arch}" - $LIPO -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}" - cd "unfat-$$/${darwin_base_archive}-${darwin_arch}" - func_extract_an_archive "`pwd`" "${darwin_base_archive}" + for darwin_arch in $darwin_arches; do + func_mkdir_p "unfat-$$/$darwin_base_archive-$darwin_arch" + $LIPO -thin $darwin_arch -output "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" "$darwin_archive" + cd "unfat-$$/$darwin_base_archive-$darwin_arch" + func_extract_an_archive "`pwd`" "$darwin_base_archive" cd "$darwin_curdir" - $RM "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" + $RM "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" done # $darwin_arches ## Okay now we've a bunch of thin objects, gotta fatten them up :) - darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$basename" | sort -u` + darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$sed_basename" | sort -u` darwin_file= darwin_files= for darwin_file in $darwin_filelist; do @@ -4251,7 +5702,7 @@ func_extract_archives () my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP` done - func_extract_archives_result="$my_oldobjs" + func_extract_archives_result=$my_oldobjs } @@ -4266,7 +5717,7 @@ func_extract_archives () # # ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR # variable will take. If 'yes', then the emitted script -# will assume that the directory in which it is stored is +# will assume that the directory where it is stored is # the $objdir directory. This is a cygwin/mingw-specific # behavior. func_emit_wrapper () @@ -4277,7 +5728,7 @@ func_emit_wrapper () #! $SHELL # $output - temporary wrapper script for $objdir/$outputname -# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION +# Generated by $PROGRAM (GNU $PACKAGE) $VERSION # # The $output program cannot be directly executed until all the libtool # libraries that it depends on are installed. @@ -4334,9 +5785,9 @@ _LTECHO_EOF' # Very basic option parsing. These options are (a) specific to # the libtool wrapper, (b) are identical between the wrapper -# /script/ and the wrapper /executable/ which is used only on +# /script/ and the wrapper /executable/ that is used only on # windows platforms, and (c) all begin with the string "--lt-" -# (application programs are unlikely to have options which match +# (application programs are unlikely to have options that match # this pattern). # # There are only two supported options: --lt-debug and @@ -4369,7 +5820,7 @@ func_parse_lt_options () # Print the debug banner immediately: if test -n \"\$lt_option_debug\"; then - echo \"${outputname}:${output}:\${LINENO}: libtool wrapper (GNU $PACKAGE$TIMESTAMP) $VERSION\" 1>&2 + echo \"$outputname:$output:\$LINENO: libtool wrapper (GNU $PACKAGE) $VERSION\" 1>&2 fi } @@ -4380,7 +5831,7 @@ func_lt_dump_args () lt_dump_args_N=1; for lt_arg do - \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[\$lt_dump_args_N]: \$lt_arg\" + \$ECHO \"$outputname:$output:\$LINENO: newargv[\$lt_dump_args_N]: \$lt_arg\" lt_dump_args_N=\`expr \$lt_dump_args_N + 1\` done } @@ -4394,7 +5845,7 @@ func_exec_program_core () *-*-mingw | *-*-os2* | *-cegcc*) $ECHO "\ if test -n \"\$lt_option_debug\"; then - \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir\\\\\$program\" 1>&2 + \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir\\\\\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} @@ -4404,7 +5855,7 @@ func_exec_program_core () *) $ECHO "\ if test -n \"\$lt_option_debug\"; then - \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir/\$program\" 1>&2 + \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir/\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir/\$program\" \${1+\"\$@\"} @@ -4479,13 +5930,13 @@ func_exec_program () test -n \"\$absdir\" && thisdir=\"\$absdir\" " - if test "$fast_install" = yes; then + if test yes = "$fast_install"; then $ECHO "\ program=lt-'$outputname'$exeext progdir=\"\$thisdir/$objdir\" if test ! -f \"\$progdir/\$program\" || - { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\ + { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | $SED 1q\`; \\ test \"X\$file\" != \"X\$progdir/\$program\"; }; then file=\"\$\$-\$program\" @@ -4502,7 +5953,7 @@ func_exec_program () if test -n \"\$relink_command\"; then if relink_command_output=\`eval \$relink_command 2>&1\`; then : else - $ECHO \"\$relink_command_output\" >&2 + \$ECHO \"\$relink_command_output\" >&2 $RM \"\$progdir/\$file\" exit 1 fi @@ -4537,7 +5988,7 @@ func_exec_program () fi # Export our shlibpath_var if we have one. - if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then + if test yes = "$shlibpath_overrides_runpath" && test -n "$shlibpath_var" && test -n "$temp_rpath"; then $ECHO "\ # Add our own library path to $shlibpath_var $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" @@ -4557,7 +6008,7 @@ func_exec_program () fi else # The program doesn't exist. - \$ECHO \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2 + \$ECHO \"\$0: error: '\$progdir/\$program' does not exist\" 1>&2 \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 exit 1 @@ -4576,7 +6027,7 @@ func_emit_cwrapperexe_src () cat < #include +#define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) + /* declarations of non-ANSI functions */ -#if defined(__MINGW32__) +#if defined __MINGW32__ # ifdef __STRICT_ANSI__ int _putenv (const char *); # endif -#elif defined(__CYGWIN__) +#elif defined __CYGWIN__ # ifdef __STRICT_ANSI__ char *realpath (const char *, char *); int putenv (char *); int setenv (const char *, const char *, int); # endif -/* #elif defined (other platforms) ... */ +/* #elif defined other_platform || defined ... */ #endif /* portability defines, excluding path handling macros */ -#if defined(_MSC_VER) +#if defined _MSC_VER # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv # define S_IXUSR _S_IEXEC -# ifndef _INTPTR_T_DEFINED -# define _INTPTR_T_DEFINED -# define intptr_t int -# endif -#elif defined(__MINGW32__) +#elif defined __MINGW32__ # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv -#elif defined(__CYGWIN__) +#elif defined __CYGWIN__ # define HAVE_SETENV # define FOPEN_WB "wb" -/* #elif defined (other platforms) ... */ +/* #elif defined other platforms ... */ #endif -#if defined(PATH_MAX) +#if defined PATH_MAX # define LT_PATHMAX PATH_MAX -#elif defined(MAXPATHLEN) +#elif defined MAXPATHLEN # define LT_PATHMAX MAXPATHLEN #else # define LT_PATHMAX 1024 @@ -4670,8 +6119,8 @@ int setenv (const char *, const char *, int); # define PATH_SEPARATOR ':' #endif -#if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \ - defined (__OS2__) +#if defined _WIN32 || defined __MSDOS__ || defined __DJGPP__ || \ + defined __OS2__ # define HAVE_DOS_BASED_FILE_SYSTEM # define FOPEN_WB "wb" # ifndef DIR_SEPARATOR_2 @@ -4704,10 +6153,10 @@ int setenv (const char *, const char *, int); #define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) #define XFREE(stale) do { \ - if (stale) { free ((void *) stale); stale = 0; } \ + if (stale) { free (stale); stale = 0; } \ } while (0) -#if defined(LT_DEBUGWRAPPER) +#if defined LT_DEBUGWRAPPER static int lt_debug = 1; #else static int lt_debug = 0; @@ -4736,11 +6185,16 @@ void lt_dump_script (FILE *f); EOF cat < 0) && IS_PATH_SEPARATOR (new_value[len-1])) + size_t len = strlen (new_value); + while ((len > 0) && IS_PATH_SEPARATOR (new_value[len-1])) { - new_value[len-1] = '\0'; + new_value[--len] = '\0'; } lt_setenv (name, new_value); XFREE (new_value); @@ -5518,27 +6972,47 @@ EOF # True if ARG is an import lib, as indicated by $file_magic_cmd func_win32_import_lib_p () { - $opt_debug + $debug_cmd + case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in *import*) : ;; *) false ;; esac } +# func_suncc_cstd_abi +# !!ONLY CALL THIS FOR SUN CC AFTER $compile_command IS FULLY EXPANDED!! +# Several compiler flags select an ABI that is incompatible with the +# Cstd library. Avoid specifying it if any are in CXXFLAGS. +func_suncc_cstd_abi () +{ + $debug_cmd + + case " $compile_command " in + *" -compat=g "*|*\ -std=c++[0-9][0-9]\ *|*" -library=stdcxx4 "*|*" -library=stlport4 "*) + suncc_use_cstd_abi=no + ;; + *) + suncc_use_cstd_abi=yes + ;; + esac +} + # func_mode_link arg... func_mode_link () { - $opt_debug + $debug_cmd + case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) # It is impossible to link a dll without this setting, and # we shouldn't force the makefile maintainer to figure out - # which system we are compiling for in order to pass an extra + # what system we are compiling for in order to pass an extra # flag for every libtool invocation. # allow_undefined=no # FIXME: Unfortunately, there are problems with the above when trying - # to make a dll which has undefined symbols, in which case not + # to make a dll that has undefined symbols, in which case not # even a static library is built. For now, we need to specify # -no-undefined on the libtool link line when we can be certain # that all symbols are satisfied, otherwise we get a static library. @@ -5582,10 +7056,11 @@ func_mode_link () module=no no_install=no objs= + os2dllname= non_pic_objects= precious_files_regex= prefer_static_libs=no - preload=no + preload=false prev= prevarg= release= @@ -5597,7 +7072,7 @@ func_mode_link () vinfo= vinfo_number=no weak_libs= - single_module="${wl}-single_module" + single_module=$wl-single_module func_infer_tag $base_compile # We need to know -static, to get the right output filenames. @@ -5605,15 +7080,15 @@ func_mode_link () do case $arg in -shared) - test "$build_libtool_libs" != yes && \ - func_fatal_configuration "can not build a shared library" + test yes != "$build_libtool_libs" \ + && func_fatal_configuration "cannot build a shared library" build_old_libs=no break ;; -all-static | -static | -static-libtool-libs) case $arg in -all-static) - if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then + if test yes = "$build_libtool_libs" && test -z "$link_static_flag"; then func_warning "complete static linking is impossible in this configuration" fi if test -n "$link_static_flag"; then @@ -5646,38 +7121,38 @@ func_mode_link () # Go through the arguments, transforming them on the way. while test "$#" -gt 0; do - arg="$1" + arg=$1 shift func_quote_for_eval "$arg" qarg=$func_quote_for_eval_unquoted_result - libtool_args+=" $func_quote_for_eval_result" + func_append libtool_args " $func_quote_for_eval_result" # If the previous option needs an argument, assign it. if test -n "$prev"; then case $prev in output) - compile_command+=" @OUTPUT@" - finalize_command+=" @OUTPUT@" + func_append compile_command " @OUTPUT@" + func_append finalize_command " @OUTPUT@" ;; esac case $prev in bindir) - bindir="$arg" + bindir=$arg prev= continue ;; dlfiles|dlprefiles) - if test "$preload" = no; then + $preload || { # Add the symbol object into the linking commands. - compile_command+=" @SYMFILE@" - finalize_command+=" @SYMFILE@" - preload=yes - fi + func_append compile_command " @SYMFILE@" + func_append finalize_command " @SYMFILE@" + preload=: + } case $arg in *.la | *.lo) ;; # We handle these cases below. force) - if test "$dlself" = no; then + if test no = "$dlself"; then dlself=needless export_dynamic=yes fi @@ -5685,9 +7160,9 @@ func_mode_link () continue ;; self) - if test "$prev" = dlprefiles; then + if test dlprefiles = "$prev"; then dlself=yes - elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then + elif test dlfiles = "$prev" && test yes != "$dlopen_self"; then dlself=yes else dlself=needless @@ -5697,10 +7172,10 @@ func_mode_link () continue ;; *) - if test "$prev" = dlfiles; then - dlfiles+=" $arg" + if test dlfiles = "$prev"; then + func_append dlfiles " $arg" else - dlprefiles+=" $arg" + func_append dlprefiles " $arg" fi prev= continue @@ -5708,14 +7183,14 @@ func_mode_link () esac ;; expsyms) - export_symbols="$arg" + export_symbols=$arg test -f "$arg" \ - || func_fatal_error "symbol file \`$arg' does not exist" + || func_fatal_error "symbol file '$arg' does not exist" prev= continue ;; expsyms_regex) - export_symbols_regex="$arg" + export_symbols_regex=$arg prev= continue ;; @@ -5724,7 +7199,7 @@ func_mode_link () *-*-darwin*) case "$deplibs " in *" $qarg.ltframework "*) ;; - *) deplibs+=" $qarg.ltframework" # this is fixed later + *) func_append deplibs " $qarg.ltframework" # this is fixed later ;; esac ;; @@ -5733,7 +7208,13 @@ func_mode_link () continue ;; inst_prefix) - inst_prefix_dir="$arg" + inst_prefix_dir=$arg + prev= + continue + ;; + mllvm) + # Clang does not use LLVM to link, so we can simply discard any + # '-mllvm $arg' options when doing the link step. prev= continue ;; @@ -5743,7 +7224,7 @@ func_mode_link () moreargs= for fil in `cat "$save_arg"` do -# moreargs+=" $fil" +# func_append moreargs " $fil" arg=$fil # A libtool-controlled object. @@ -5757,22 +7238,22 @@ func_mode_link () if test -z "$pic_object" || test -z "$non_pic_object" || - test "$pic_object" = none && - test "$non_pic_object" = none; then - func_fatal_error "cannot find name of object for \`$arg'" + test none = "$pic_object" && + test none = "$non_pic_object"; then + func_fatal_error "cannot find name of object for '$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" - xdir="$func_dirname_result" + xdir=$func_dirname_result - if test "$pic_object" != none; then + if test none != "$pic_object"; then # Prepend the subdirectory the object is found in. - pic_object="$xdir$pic_object" + pic_object=$xdir$pic_object - if test "$prev" = dlfiles; then - if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then - dlfiles+=" $pic_object" + if test dlfiles = "$prev"; then + if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then + func_append dlfiles " $pic_object" prev= continue else @@ -5782,64 +7263,69 @@ func_mode_link () fi # CHECK ME: I think I busted this. -Ossama - if test "$prev" = dlprefiles; then + if test dlprefiles = "$prev"; then # Preload the old-style object. - dlprefiles+=" $pic_object" + func_append dlprefiles " $pic_object" prev= fi # A PIC object. - libobjs+=" $pic_object" - arg="$pic_object" + func_append libobjs " $pic_object" + arg=$pic_object fi # Non-PIC object. - if test "$non_pic_object" != none; then + if test none != "$non_pic_object"; then # Prepend the subdirectory the object is found in. - non_pic_object="$xdir$non_pic_object" + non_pic_object=$xdir$non_pic_object # A standard non-PIC object - non_pic_objects+=" $non_pic_object" - if test -z "$pic_object" || test "$pic_object" = none ; then - arg="$non_pic_object" + func_append non_pic_objects " $non_pic_object" + if test -z "$pic_object" || test none = "$pic_object"; then + arg=$non_pic_object fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. - non_pic_object="$pic_object" - non_pic_objects+=" $non_pic_object" + non_pic_object=$pic_object + func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" - xdir="$func_dirname_result" + xdir=$func_dirname_result func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result - libobjs+=" $pic_object" - non_pic_objects+=" $non_pic_object" + func_append libobjs " $pic_object" + func_append non_pic_objects " $non_pic_object" else - func_fatal_error "\`$arg' is not a valid libtool object" + func_fatal_error "'$arg' is not a valid libtool object" fi fi done else - func_fatal_error "link input file \`$arg' does not exist" + func_fatal_error "link input file '$arg' does not exist" fi arg=$save_arg prev= continue ;; + os2dllname) + os2dllname=$arg + prev= + continue + ;; precious_regex) - precious_files_regex="$arg" + precious_files_regex=$arg prev= continue ;; release) - release="-$arg" + release=-$arg prev= continue ;; @@ -5851,51 +7337,51 @@ func_mode_link () func_fatal_error "only absolute run-paths are allowed" ;; esac - if test "$prev" = rpath; then + if test rpath = "$prev"; then case "$rpath " in *" $arg "*) ;; - *) rpath+=" $arg" ;; + *) func_append rpath " $arg" ;; esac else case "$xrpath " in *" $arg "*) ;; - *) xrpath+=" $arg" ;; + *) func_append xrpath " $arg" ;; esac fi prev= continue ;; shrext) - shrext_cmds="$arg" + shrext_cmds=$arg prev= continue ;; weak) - weak_libs+=" $arg" + func_append weak_libs " $arg" prev= continue ;; xcclinker) - linker_flags+=" $qarg" - compiler_flags+=" $qarg" + func_append linker_flags " $qarg" + func_append compiler_flags " $qarg" prev= - compile_command+=" $qarg" - finalize_command+=" $qarg" + func_append compile_command " $qarg" + func_append finalize_command " $qarg" continue ;; xcompiler) - compiler_flags+=" $qarg" + func_append compiler_flags " $qarg" prev= - compile_command+=" $qarg" - finalize_command+=" $qarg" + func_append compile_command " $qarg" + func_append finalize_command " $qarg" continue ;; xlinker) - linker_flags+=" $qarg" - compiler_flags+=" $wl$qarg" + func_append linker_flags " $qarg" + func_append compiler_flags " $wl$qarg" prev= - compile_command+=" $wl$qarg" - finalize_command+=" $wl$qarg" + func_append compile_command " $wl$qarg" + func_append finalize_command " $wl$qarg" continue ;; *) @@ -5906,21 +7392,21 @@ func_mode_link () esac fi # test -n "$prev" - prevarg="$arg" + prevarg=$arg case $arg in -all-static) if test -n "$link_static_flag"; then # See comment for -static flag below, for more details. - compile_command+=" $link_static_flag" - finalize_command+=" $link_static_flag" + func_append compile_command " $link_static_flag" + func_append finalize_command " $link_static_flag" fi continue ;; -allow-undefined) # FIXME: remove this flag sometime in the future. - func_fatal_error "\`-allow-undefined' must not be used because it is the default" + func_fatal_error "'-allow-undefined' must not be used because it is the default" ;; -avoid-version) @@ -5952,7 +7438,7 @@ func_mode_link () if test -n "$export_symbols" || test -n "$export_symbols_regex"; then func_fatal_error "more than one -exported-symbols argument is not allowed" fi - if test "X$arg" = "X-export-symbols"; then + if test X-export-symbols = "X$arg"; then prev=expsyms else prev=expsyms_regex @@ -5975,8 +7461,8 @@ func_mode_link () -L[A-Z][A-Z]*:*) case $with_gcc/$host in no/*-*-irix* | /*-*-irix*) - compile_command+=" $arg" - finalize_command+=" $arg" + func_append compile_command " $arg" + func_append finalize_command " $arg" ;; esac continue @@ -5986,9 +7472,9 @@ func_mode_link () func_stripname "-L" '' "$arg" if test -z "$func_stripname_result"; then if test "$#" -gt 0; then - func_fatal_error "require no space between \`-L' and \`$1'" + func_fatal_error "require no space between '-L' and '$1'" else - func_fatal_error "need path for \`-L' option" + func_fatal_error "need path for '-L' option" fi fi func_resolve_sysroot "$func_stripname_result" @@ -5999,8 +7485,8 @@ func_mode_link () *) absdir=`cd "$dir" && pwd` test -z "$absdir" && \ - func_fatal_error "cannot determine absolute directory name of \`$dir'" - dir="$absdir" + func_fatal_error "cannot determine absolute directory name of '$dir'" + dir=$absdir ;; esac case "$deplibs " in @@ -6010,10 +7496,10 @@ func_mode_link () *) # Preserve sysroot, but never include relative directories case $dir in - [\\/]* | [A-Za-z]:[\\/]* | =*) deplibs+=" $arg" ;; - *) deplibs+=" -L$dir" ;; + [\\/]* | [A-Za-z]:[\\/]* | =*) func_append deplibs " $arg" ;; + *) func_append deplibs " -L$dir" ;; esac - lib_search_path+=" $dir" + func_append lib_search_path " $dir" ;; esac case $host in @@ -6022,12 +7508,12 @@ func_mode_link () case :$dllsearchpath: in *":$dir:"*) ;; ::) dllsearchpath=$dir;; - *) dllsearchpath+=":$dir";; + *) func_append dllsearchpath ":$dir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; - *) dllsearchpath+=":$testbindir";; + *) func_append dllsearchpath ":$testbindir";; esac ;; esac @@ -6035,7 +7521,7 @@ func_mode_link () ;; -l*) - if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then + if test X-lc = "X$arg" || test X-lm = "X$arg"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*) # These systems don't actually have a C or math library (as such) @@ -6043,35 +7529,40 @@ func_mode_link () ;; *-*-os2*) # These systems don't actually have a C library (as such) - test "X$arg" = "X-lc" && continue + test X-lc = "X$arg" && continue ;; - *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) # Do not include libc due to us having libc/libc_r. - test "X$arg" = "X-lc" && continue + test X-lc = "X$arg" && continue ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C and math libraries are in the System framework - deplibs+=" System.ltframework" + func_append deplibs " System.ltframework" continue ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype - test "X$arg" = "X-lc" && continue + test X-lc = "X$arg" && continue ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work - test "X$arg" = "X-lc" && continue + test X-lc = "X$arg" && continue ;; esac - elif test "X$arg" = "X-lc_r"; then + elif test X-lc_r = "X$arg"; then case $host in - *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) # Do not include libc_r directly, use -pthread flag. continue ;; esac fi - deplibs+=" $arg" + func_append deplibs " $arg" + continue + ;; + + -mllvm) + prev=mllvm continue ;; @@ -6084,27 +7575,27 @@ func_mode_link () # classes, name mangling, and exception handling. # Darwin uses the -arch flag to determine output architecture. -model|-arch|-isysroot|--sysroot) - compiler_flags+=" $arg" - compile_command+=" $arg" - finalize_command+=" $arg" + func_append compiler_flags " $arg" + func_append compile_command " $arg" + func_append finalize_command " $arg" prev=xcompiler continue ;; -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) - compiler_flags+=" $arg" - compile_command+=" $arg" - finalize_command+=" $arg" + func_append compiler_flags " $arg" + func_append compile_command " $arg" + func_append finalize_command " $arg" case "$new_inherited_linker_flags " in *" $arg "*) ;; - * ) new_inherited_linker_flags+=" $arg" ;; + * ) func_append new_inherited_linker_flags " $arg" ;; esac continue ;; -multi_module) - single_module="${wl}-multi_module" + single_module=$wl-multi_module continue ;; @@ -6118,8 +7609,8 @@ func_mode_link () *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*) # The PATH hackery in wrapper scripts is required on Windows # and Darwin in order for the loader to find any dlls it needs. - func_warning "\`-no-install' is ignored for $host" - func_warning "assuming \`-no-fast-install' instead" + func_warning "'-no-install' is ignored for $host" + func_warning "assuming '-no-fast-install' instead" fast_install=no ;; *) no_install=yes ;; @@ -6137,6 +7628,11 @@ func_mode_link () continue ;; + -os2dllname) + prev=os2dllname + continue + ;; + -o) prev=output ;; -precious-files-regex) @@ -6175,7 +7671,7 @@ func_mode_link () esac case "$xrpath " in *" $dir "*) ;; - *) xrpath+=" $dir" ;; + *) func_append xrpath " $dir" ;; esac continue ;; @@ -6224,14 +7720,14 @@ func_mode_link () func_stripname '-Wc,' '' "$arg" args=$func_stripname_result arg= - save_ifs="$IFS"; IFS=',' + save_ifs=$IFS; IFS=, for flag in $args; do - IFS="$save_ifs" + IFS=$save_ifs func_quote_for_eval "$flag" - arg+=" $func_quote_for_eval_result" - compiler_flags+=" $func_quote_for_eval_result" + func_append arg " $func_quote_for_eval_result" + func_append compiler_flags " $func_quote_for_eval_result" done - IFS="$save_ifs" + IFS=$save_ifs func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; @@ -6240,15 +7736,15 @@ func_mode_link () func_stripname '-Wl,' '' "$arg" args=$func_stripname_result arg= - save_ifs="$IFS"; IFS=',' + save_ifs=$IFS; IFS=, for flag in $args; do - IFS="$save_ifs" + IFS=$save_ifs func_quote_for_eval "$flag" - arg+=" $wl$func_quote_for_eval_result" - compiler_flags+=" $wl$func_quote_for_eval_result" - linker_flags+=" $func_quote_for_eval_result" + func_append arg " $wl$func_quote_for_eval_result" + func_append compiler_flags " $wl$func_quote_for_eval_result" + func_append linker_flags " $func_quote_for_eval_result" done - IFS="$save_ifs" + IFS=$save_ifs func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; @@ -6271,7 +7767,7 @@ func_mode_link () # -msg_* for osf cc -msg_*) func_quote_for_eval "$arg" - arg="$func_quote_for_eval_result" + arg=$func_quote_for_eval_result ;; # Flags to be passed through unchanged, with rationale: @@ -6283,30 +7779,53 @@ func_mode_link () # -m*, -t[45]*, -txscale* architecture-specific flags for GCC # -F/path path to uninstalled frameworks, gcc on darwin # -p, -pg, --coverage, -fprofile-* profiling flags for GCC + # -fstack-protector* stack protector flags for GCC # @file GCC response files # -tp=* Portland pgcc target processor selection # --sysroot=* for sysroot support - # -O*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization + # -O*, -g*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization + # -specs=* GCC specs files + # -stdlib=* select c++ std lib with clang -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ - -O*|-flto*|-fwhopr*|-fuse-linker-plugin) + -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*| \ + -specs=*) func_quote_for_eval "$arg" - arg="$func_quote_for_eval_result" - compile_command+=" $arg" - finalize_command+=" $arg" - compiler_flags+=" $arg" + arg=$func_quote_for_eval_result + func_append compile_command " $arg" + func_append finalize_command " $arg" + func_append compiler_flags " $arg" continue ;; + -Z*) + if test os2 = "`expr $host : '.*\(os2\)'`"; then + # OS/2 uses -Zxxx to specify OS/2-specific options + compiler_flags="$compiler_flags $arg" + func_append compile_command " $arg" + func_append finalize_command " $arg" + case $arg in + -Zlinker | -Zstack) + prev=xcompiler + ;; + esac + continue + else + # Otherwise treat like 'Some other compiler flag' below + func_quote_for_eval "$arg" + arg=$func_quote_for_eval_result + fi + ;; + # Some other compiler flag. -* | +*) func_quote_for_eval "$arg" - arg="$func_quote_for_eval_result" + arg=$func_quote_for_eval_result ;; *.$objext) # A standard object. - objs+=" $arg" + func_append objs " $arg" ;; *.lo) @@ -6322,22 +7841,22 @@ func_mode_link () if test -z "$pic_object" || test -z "$non_pic_object" || - test "$pic_object" = none && - test "$non_pic_object" = none; then - func_fatal_error "cannot find name of object for \`$arg'" + test none = "$pic_object" && + test none = "$non_pic_object"; then + func_fatal_error "cannot find name of object for '$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" - xdir="$func_dirname_result" + xdir=$func_dirname_result - if test "$pic_object" != none; then + test none = "$pic_object" || { # Prepend the subdirectory the object is found in. - pic_object="$xdir$pic_object" + pic_object=$xdir$pic_object - if test "$prev" = dlfiles; then - if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then - dlfiles+=" $pic_object" + if test dlfiles = "$prev"; then + if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then + func_append dlfiles " $pic_object" prev= continue else @@ -6347,55 +7866,55 @@ func_mode_link () fi # CHECK ME: I think I busted this. -Ossama - if test "$prev" = dlprefiles; then + if test dlprefiles = "$prev"; then # Preload the old-style object. - dlprefiles+=" $pic_object" + func_append dlprefiles " $pic_object" prev= fi # A PIC object. - libobjs+=" $pic_object" - arg="$pic_object" - fi + func_append libobjs " $pic_object" + arg=$pic_object + } # Non-PIC object. - if test "$non_pic_object" != none; then + if test none != "$non_pic_object"; then # Prepend the subdirectory the object is found in. - non_pic_object="$xdir$non_pic_object" + non_pic_object=$xdir$non_pic_object # A standard non-PIC object - non_pic_objects+=" $non_pic_object" - if test -z "$pic_object" || test "$pic_object" = none ; then - arg="$non_pic_object" + func_append non_pic_objects " $non_pic_object" + if test -z "$pic_object" || test none = "$pic_object"; then + arg=$non_pic_object fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. - non_pic_object="$pic_object" - non_pic_objects+=" $non_pic_object" + non_pic_object=$pic_object + func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" - xdir="$func_dirname_result" + xdir=$func_dirname_result func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result - libobjs+=" $pic_object" - non_pic_objects+=" $non_pic_object" + func_append libobjs " $pic_object" + func_append non_pic_objects " $non_pic_object" else - func_fatal_error "\`$arg' is not a valid libtool object" + func_fatal_error "'$arg' is not a valid libtool object" fi fi ;; *.$libext) # An archive. - deplibs+=" $arg" - old_deplibs+=" $arg" + func_append deplibs " $arg" + func_append old_deplibs " $arg" continue ;; @@ -6403,16 +7922,16 @@ func_mode_link () # A libtool-controlled library. func_resolve_sysroot "$arg" - if test "$prev" = dlfiles; then + if test dlfiles = "$prev"; then # This library was specified with -dlopen. - dlfiles+=" $func_resolve_sysroot_result" + func_append dlfiles " $func_resolve_sysroot_result" prev= - elif test "$prev" = dlprefiles; then + elif test dlprefiles = "$prev"; then # The library was specified with -dlpreopen. - dlprefiles+=" $func_resolve_sysroot_result" + func_append dlprefiles " $func_resolve_sysroot_result" prev= else - deplibs+=" $func_resolve_sysroot_result" + func_append deplibs " $func_resolve_sysroot_result" fi continue ;; @@ -6422,43 +7941,46 @@ func_mode_link () # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. func_quote_for_eval "$arg" - arg="$func_quote_for_eval_result" + arg=$func_quote_for_eval_result ;; esac # arg # Now actually substitute the argument into the commands. if test -n "$arg"; then - compile_command+=" $arg" - finalize_command+=" $arg" + func_append compile_command " $arg" + func_append finalize_command " $arg" fi done # argument parsing loop test -n "$prev" && \ - func_fatal_help "the \`$prevarg' option requires an argument" + func_fatal_help "the '$prevarg' option requires an argument" - if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then + if test yes = "$export_dynamic" && test -n "$export_dynamic_flag_spec"; then eval arg=\"$export_dynamic_flag_spec\" - compile_command+=" $arg" - finalize_command+=" $arg" + func_append compile_command " $arg" + func_append finalize_command " $arg" fi oldlibs= # calculate the name of the file, without its directory func_basename "$output" - outputname="$func_basename_result" - libobjs_save="$libobjs" + outputname=$func_basename_result + libobjs_save=$libobjs if test -n "$shlibpath_var"; then # get the directories listed in $shlibpath_var - eval shlib_search_path=\`\$ECHO \"\${$shlibpath_var}\" \| \$SED \'s/:/ /g\'\` + eval shlib_search_path=\`\$ECHO \"\$$shlibpath_var\" \| \$SED \'s/:/ /g\'\` else shlib_search_path= fi eval sys_lib_search_path=\"$sys_lib_search_path_spec\" eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" + # Definition is injected by LT_CONFIG during libtool generation. + func_munge_path_list sys_lib_dlsearch_path "$LT_SYS_LIBRARY_PATH" + func_dirname "$output" "/" "" - output_objdir="$func_dirname_result$objdir" + output_objdir=$func_dirname_result$objdir func_to_tool_file "$output_objdir/" tool_output_objdir=$func_to_tool_file_result # Create the object directory. @@ -6481,15 +8003,15 @@ func_mode_link () # Find all interdependent deplibs by searching for libraries # that are linked more than once (e.g. -la -lb -la) for deplib in $deplibs; do - if $opt_preserve_dup_deps ; then + if $opt_preserve_dup_deps; then case "$libs " in - *" $deplib "*) specialdeplibs+=" $deplib" ;; + *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi - libs+=" $deplib" + func_append libs " $deplib" done - if test "$linkmode" = lib; then + if test lib = "$linkmode"; then libs="$predeps $libs $compiler_lib_search_path $postdeps" # Compute libraries that are listed more than once in $predeps @@ -6499,9 +8021,9 @@ func_mode_link () if $opt_duplicate_compiler_generated_deps; then for pre_post_dep in $predeps $postdeps; do case "$pre_post_deps " in - *" $pre_post_dep "*) specialdeplibs+=" $pre_post_deps" ;; + *" $pre_post_dep "*) func_append specialdeplibs " $pre_post_deps" ;; esac - pre_post_deps+=" $pre_post_dep" + func_append pre_post_deps " $pre_post_dep" done fi pre_post_deps= @@ -6521,7 +8043,7 @@ func_mode_link () case $file in *.la) ;; *) - func_fatal_help "libraries can \`-dlopen' only libtool libraries: $file" + func_fatal_help "libraries can '-dlopen' only libtool libraries: $file" ;; esac done @@ -6529,7 +8051,7 @@ func_mode_link () prog) compile_deplibs= finalize_deplibs= - alldeplibs=no + alldeplibs=false newdlfiles= newdlprefiles= passes="conv scan dlopen dlpreopen link" @@ -6541,29 +8063,29 @@ func_mode_link () for pass in $passes; do # The preopen pass in lib mode reverses $deplibs; put it back here # so that -L comes before libs that need it for instance... - if test "$linkmode,$pass" = "lib,link"; then + if test lib,link = "$linkmode,$pass"; then ## FIXME: Find the place where the list is rebuilt in the wrong ## order, and fix it there properly tmp_deplibs= for deplib in $deplibs; do tmp_deplibs="$deplib $tmp_deplibs" done - deplibs="$tmp_deplibs" + deplibs=$tmp_deplibs fi - if test "$linkmode,$pass" = "lib,link" || - test "$linkmode,$pass" = "prog,scan"; then - libs="$deplibs" + if test lib,link = "$linkmode,$pass" || + test prog,scan = "$linkmode,$pass"; then + libs=$deplibs deplibs= fi - if test "$linkmode" = prog; then + if test prog = "$linkmode"; then case $pass in - dlopen) libs="$dlfiles" ;; - dlpreopen) libs="$dlprefiles" ;; + dlopen) libs=$dlfiles ;; + dlpreopen) libs=$dlprefiles ;; link) libs="$deplibs %DEPLIBS% $dependency_libs" ;; esac fi - if test "$linkmode,$pass" = "lib,dlpreopen"; then + if test lib,dlpreopen = "$linkmode,$pass"; then # Collect and forward deplibs of preopened libtool libs for lib in $dlprefiles; do # Ignore non-libtool-libs @@ -6580,46 +8102,46 @@ func_mode_link () deplib_base=$func_basename_result case " $weak_libs " in *" $deplib_base "*) ;; - *) deplibs+=" $deplib" ;; + *) func_append deplibs " $deplib" ;; esac done done - libs="$dlprefiles" + libs=$dlprefiles fi - if test "$pass" = dlopen; then + if test dlopen = "$pass"; then # Collect dlpreopened libraries - save_deplibs="$deplibs" + save_deplibs=$deplibs deplibs= fi for deplib in $libs; do lib= - found=no + found=false case $deplib in -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) - if test "$linkmode,$pass" = "prog,link"; then + if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else - compiler_flags+=" $deplib" - if test "$linkmode" = lib ; then + func_append compiler_flags " $deplib" + if test lib = "$linkmode"; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; - * ) new_inherited_linker_flags+=" $deplib" ;; + * ) func_append new_inherited_linker_flags " $deplib" ;; esac fi fi continue ;; -l*) - if test "$linkmode" != lib && test "$linkmode" != prog; then - func_warning "\`-l' is ignored for archives/objects" + if test lib != "$linkmode" && test prog != "$linkmode"; then + func_warning "'-l' is ignored for archives/objects" continue fi func_stripname '-l' '' "$deplib" name=$func_stripname_result - if test "$linkmode" = lib; then + if test lib = "$linkmode"; then searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" else searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" @@ -6627,31 +8149,22 @@ func_mode_link () for searchdir in $searchdirs; do for search_ext in .la $std_shrext .so .a; do # Search the libtool library - lib="$searchdir/lib${name}${search_ext}" + lib=$searchdir/lib$name$search_ext if test -f "$lib"; then - if test "$search_ext" = ".la"; then - found=yes + if test .la = "$search_ext"; then + found=: else - found=no + found=false fi break 2 fi done done - if test "$found" != yes; then - # deplib doesn't seem to be a libtool library - if test "$linkmode,$pass" = "prog,link"; then - compile_deplibs="$deplib $compile_deplibs" - finalize_deplibs="$deplib $finalize_deplibs" - else - deplibs="$deplib $deplibs" - test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" - fi - continue - else # deplib is a libtool library + if $found; then + # deplib is a libtool library # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, # We need to do some special things here, and not later. - if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $deplib "*) if func_lalib_p "$lib"; then @@ -6659,19 +8172,19 @@ func_mode_link () old_library= func_source "$lib" for l in $old_library $library_names; do - ll="$l" + ll=$l done - if test "X$ll" = "X$old_library" ; then # only static version available - found=no + if test "X$ll" = "X$old_library"; then # only static version available + found=false func_dirname "$lib" "" "." - ladir="$func_dirname_result" + ladir=$func_dirname_result lib=$ladir/$old_library - if test "$linkmode,$pass" = "prog,link"; then + if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" - test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" + test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" fi continue fi @@ -6680,18 +8193,28 @@ func_mode_link () *) ;; esac fi + else + # deplib doesn't seem to be a libtool library + if test prog,link = "$linkmode,$pass"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" + fi + continue fi ;; # -l *.ltframework) - if test "$linkmode,$pass" = "prog,link"; then + if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" - if test "$linkmode" = lib ; then + if test lib = "$linkmode"; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; - * ) new_inherited_linker_flags+=" $deplib" ;; + * ) func_append new_inherited_linker_flags " $deplib" ;; esac fi fi @@ -6701,18 +8224,18 @@ func_mode_link () case $linkmode in lib) deplibs="$deplib $deplibs" - test "$pass" = conv && continue + test conv = "$pass" && continue newdependency_libs="$deplib $newdependency_libs" func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" - newlib_search_path+=" $func_resolve_sysroot_result" + func_append newlib_search_path " $func_resolve_sysroot_result" ;; prog) - if test "$pass" = conv; then + if test conv = "$pass"; then deplibs="$deplib $deplibs" continue fi - if test "$pass" = scan; then + if test scan = "$pass"; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" @@ -6720,23 +8243,23 @@ func_mode_link () fi func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" - newlib_search_path+=" $func_resolve_sysroot_result" + func_append newlib_search_path " $func_resolve_sysroot_result" ;; *) - func_warning "\`-L' is ignored for archives/objects" + func_warning "'-L' is ignored for archives/objects" ;; esac # linkmode continue ;; # -L -R*) - if test "$pass" = link; then + if test link = "$pass"; then func_stripname '-R' '' "$deplib" func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result # Make sure the xrpath contains only unique directories. case "$xrpath " in *" $dir "*) ;; - *) xrpath+=" $dir" ;; + *) func_append xrpath " $dir" ;; esac fi deplibs="$deplib $deplibs" @@ -6747,7 +8270,7 @@ func_mode_link () lib=$func_resolve_sysroot_result ;; *.$libext) - if test "$pass" = conv; then + if test conv = "$pass"; then deplibs="$deplib $deplibs" continue fi @@ -6758,21 +8281,26 @@ func_mode_link () case " $dlpreconveniencelibs " in *" $deplib "*) ;; *) - valid_a_lib=no + valid_a_lib=false case $deplibs_check_method in match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \ | $EGREP "$match_pattern_regex" > /dev/null; then - valid_a_lib=yes + valid_a_lib=: fi ;; pass_all) - valid_a_lib=yes + valid_a_lib=: ;; esac - if test "$valid_a_lib" != yes; then + if $valid_a_lib; then + echo + $ECHO "*** Warning: Linking the shared library $output against the" + $ECHO "*** static library $deplib is not portable!" + deplibs="$deplib $deplibs" + else echo $ECHO "*** Warning: Trying to link with static lib archive $deplib." echo "*** I have the capability to make that library automatically link in when" @@ -6780,18 +8308,13 @@ func_mode_link () echo "*** shared version of the library, which you do not appear to have" echo "*** because the file extensions .$libext of this argument makes me believe" echo "*** that it is just a static archive that I should not use here." - else - echo - $ECHO "*** Warning: Linking the shared library $output against the" - $ECHO "*** static library $deplib is not portable!" - deplibs="$deplib $deplibs" fi ;; esac continue ;; prog) - if test "$pass" != link; then + if test link != "$pass"; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" @@ -6802,38 +8325,36 @@ func_mode_link () esac # linkmode ;; # *.$libext *.lo | *.$objext) - if test "$pass" = conv; then + if test conv = "$pass"; then deplibs="$deplib $deplibs" - elif test "$linkmode" = prog; then - if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then + elif test prog = "$linkmode"; then + if test dlpreopen = "$pass" || test yes != "$dlopen_support" || test no = "$build_libtool_libs"; then # If there is no dlopen support or we're linking statically, # we need to preload. - newdlprefiles+=" $deplib" + func_append newdlprefiles " $deplib" compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else - newdlfiles+=" $deplib" + func_append newdlfiles " $deplib" fi fi continue ;; %DEPLIBS%) - alldeplibs=yes + alldeplibs=: continue ;; esac # case $deplib - if test "$found" = yes || test -f "$lib"; then : - else - func_fatal_error "cannot find the library \`$lib' or unhandled argument \`$deplib'" - fi + $found || test -f "$lib" \ + || func_fatal_error "cannot find the library '$lib' or unhandled argument '$deplib'" # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$lib" \ - || func_fatal_error "\`$lib' is not a valid libtool archive" + || func_fatal_error "'$lib' is not a valid libtool archive" func_dirname "$lib" "" "." - ladir="$func_dirname_result" + ladir=$func_dirname_result dlname= dlopen= @@ -6858,40 +8379,40 @@ func_mode_link () for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do case " $new_inherited_linker_flags " in *" $tmp_inherited_linker_flag "*) ;; - *) new_inherited_linker_flags+=" $tmp_inherited_linker_flag";; + *) func_append new_inherited_linker_flags " $tmp_inherited_linker_flag";; esac done fi dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` - if test "$linkmode,$pass" = "lib,link" || - test "$linkmode,$pass" = "prog,scan" || - { test "$linkmode" != prog && test "$linkmode" != lib; }; then - test -n "$dlopen" && dlfiles+=" $dlopen" - test -n "$dlpreopen" && dlprefiles+=" $dlpreopen" + if test lib,link = "$linkmode,$pass" || + test prog,scan = "$linkmode,$pass" || + { test prog != "$linkmode" && test lib != "$linkmode"; }; then + test -n "$dlopen" && func_append dlfiles " $dlopen" + test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen" fi - if test "$pass" = conv; then + if test conv = "$pass"; then # Only check for convenience libraries deplibs="$lib $deplibs" if test -z "$libdir"; then if test -z "$old_library"; then - func_fatal_error "cannot find name of link library for \`$lib'" + func_fatal_error "cannot find name of link library for '$lib'" fi # It is a libtool convenience library, so add in its objects. - convenience+=" $ladir/$objdir/$old_library" - old_convenience+=" $ladir/$objdir/$old_library" - elif test "$linkmode" != prog && test "$linkmode" != lib; then - func_fatal_error "\`$lib' is not a convenience library" + func_append convenience " $ladir/$objdir/$old_library" + func_append old_convenience " $ladir/$objdir/$old_library" + elif test prog != "$linkmode" && test lib != "$linkmode"; then + func_fatal_error "'$lib' is not a convenience library" fi tmp_libs= for deplib in $dependency_libs; do deplibs="$deplib $deplibs" - if $opt_preserve_dup_deps ; then + if $opt_preserve_dup_deps; then case "$tmp_libs " in - *" $deplib "*) specialdeplibs+=" $deplib" ;; + *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi - tmp_libs+=" $deplib" + func_append tmp_libs " $deplib" done continue fi # $pass = conv @@ -6900,86 +8421,86 @@ func_mode_link () # Get the name of the library we link against. linklib= if test -n "$old_library" && - { test "$prefer_static_libs" = yes || - test "$prefer_static_libs,$installed" = "built,no"; }; then + { test yes = "$prefer_static_libs" || + test built,no = "$prefer_static_libs,$installed"; }; then linklib=$old_library else for l in $old_library $library_names; do - linklib="$l" + linklib=$l done fi if test -z "$linklib"; then - func_fatal_error "cannot find name of link library for \`$lib'" + func_fatal_error "cannot find name of link library for '$lib'" fi # This library was specified with -dlopen. - if test "$pass" = dlopen; then - if test -z "$libdir"; then - func_fatal_error "cannot -dlopen a convenience library: \`$lib'" - fi + if test dlopen = "$pass"; then + test -z "$libdir" \ + && func_fatal_error "cannot -dlopen a convenience library: '$lib'" if test -z "$dlname" || - test "$dlopen_support" != yes || - test "$build_libtool_libs" = no; then + test yes != "$dlopen_support" || + test no = "$build_libtool_libs" + then # If there is no dlname, no dlopen support or we're linking # statically, we need to preload. We also need to preload any # dependent libraries so libltdl's deplib preloader doesn't # bomb out in the load deplibs phase. - dlprefiles+=" $lib $dependency_libs" + func_append dlprefiles " $lib $dependency_libs" else - newdlfiles+=" $lib" + func_append newdlfiles " $lib" fi continue fi # $pass = dlopen # We need an absolute path. case $ladir in - [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;; + [\\/]* | [A-Za-z]:[\\/]*) abs_ladir=$ladir ;; *) abs_ladir=`cd "$ladir" && pwd` if test -z "$abs_ladir"; then - func_warning "cannot determine absolute directory name of \`$ladir'" + func_warning "cannot determine absolute directory name of '$ladir'" func_warning "passing it literally to the linker, although it might fail" - abs_ladir="$ladir" + abs_ladir=$ladir fi ;; esac func_basename "$lib" - laname="$func_basename_result" + laname=$func_basename_result # Find the relevant object directory and library name. - if test "X$installed" = Xyes; then + if test yes = "$installed"; then if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then - func_warning "library \`$lib' was moved." - dir="$ladir" - absdir="$abs_ladir" - libdir="$abs_ladir" + func_warning "library '$lib' was moved." + dir=$ladir + absdir=$abs_ladir + libdir=$abs_ladir else - dir="$lt_sysroot$libdir" - absdir="$lt_sysroot$libdir" + dir=$lt_sysroot$libdir + absdir=$lt_sysroot$libdir fi - test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes + test yes = "$hardcode_automatic" && avoidtemprpath=yes else if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then - dir="$ladir" - absdir="$abs_ladir" + dir=$ladir + absdir=$abs_ladir # Remove this search path later - notinst_path+=" $abs_ladir" + func_append notinst_path " $abs_ladir" else - dir="$ladir/$objdir" - absdir="$abs_ladir/$objdir" + dir=$ladir/$objdir + absdir=$abs_ladir/$objdir # Remove this search path later - notinst_path+=" $abs_ladir" + func_append notinst_path " $abs_ladir" fi fi # $installed = yes func_stripname 'lib' '.la' "$laname" name=$func_stripname_result # This library was specified with -dlpreopen. - if test "$pass" = dlpreopen; then - if test -z "$libdir" && test "$linkmode" = prog; then - func_fatal_error "only libraries may -dlpreopen a convenience library: \`$lib'" + if test dlpreopen = "$pass"; then + if test -z "$libdir" && test prog = "$linkmode"; then + func_fatal_error "only libraries may -dlpreopen a convenience library: '$lib'" fi - case "$host" in + case $host in # special handling for platforms with PE-DLLs. *cygwin* | *mingw* | *cegcc* ) # Linker will automatically link against shared library if both @@ -6993,29 +8514,29 @@ func_mode_link () if test -n "$dlname"; then func_tr_sh "$dir/$linklib" eval "libfile_$func_tr_sh_result=\$abs_ladir/\$laname" - newdlprefiles+=" $dir/$linklib" + func_append newdlprefiles " $dir/$linklib" else - newdlprefiles+=" $dir/$old_library" + func_append newdlprefiles " $dir/$old_library" # Keep a list of preopened convenience libraries to check # that they are being used correctly in the link pass. test -z "$libdir" && \ - dlpreconveniencelibs+=" $dir/$old_library" + func_append dlpreconveniencelibs " $dir/$old_library" fi ;; * ) # Prefer using a static library (so that no silly _DYNAMIC symbols # are required to link). if test -n "$old_library"; then - newdlprefiles+=" $dir/$old_library" + func_append newdlprefiles " $dir/$old_library" # Keep a list of preopened convenience libraries to check # that they are being used correctly in the link pass. test -z "$libdir" && \ - dlpreconveniencelibs+=" $dir/$old_library" + func_append dlpreconveniencelibs " $dir/$old_library" # Otherwise, use the dlname, so that lt_dlopen finds it. elif test -n "$dlname"; then - newdlprefiles+=" $dir/$dlname" + func_append newdlprefiles " $dir/$dlname" else - newdlprefiles+=" $dir/$linklib" + func_append newdlprefiles " $dir/$linklib" fi ;; esac @@ -7023,9 +8544,9 @@ func_mode_link () if test -z "$libdir"; then # Link the convenience library - if test "$linkmode" = lib; then + if test lib = "$linkmode"; then deplibs="$dir/$old_library $deplibs" - elif test "$linkmode,$pass" = "prog,link"; then + elif test prog,link = "$linkmode,$pass"; then compile_deplibs="$dir/$old_library $compile_deplibs" finalize_deplibs="$dir/$old_library $finalize_deplibs" else @@ -7035,14 +8556,14 @@ func_mode_link () fi - if test "$linkmode" = prog && test "$pass" != link; then - newlib_search_path+=" $ladir" + if test prog = "$linkmode" && test link != "$pass"; then + func_append newlib_search_path " $ladir" deplibs="$lib $deplibs" - linkalldeplibs=no - if test "$link_all_deplibs" != no || test -z "$library_names" || - test "$build_libtool_libs" = no; then - linkalldeplibs=yes + linkalldeplibs=false + if test no != "$link_all_deplibs" || test -z "$library_names" || + test no = "$build_libtool_libs"; then + linkalldeplibs=: fi tmp_libs= @@ -7050,38 +8571,38 @@ func_mode_link () case $deplib in -L*) func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" - newlib_search_path+=" $func_resolve_sysroot_result" + func_append newlib_search_path " $func_resolve_sysroot_result" ;; esac # Need to link against all dependency_libs? - if test "$linkalldeplibs" = yes; then + if $linkalldeplibs; then deplibs="$deplib $deplibs" else # Need to hardcode shared library paths # or/and link against static libraries newdependency_libs="$deplib $newdependency_libs" fi - if $opt_preserve_dup_deps ; then + if $opt_preserve_dup_deps; then case "$tmp_libs " in - *" $deplib "*) specialdeplibs+=" $deplib" ;; + *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi - tmp_libs+=" $deplib" + func_append tmp_libs " $deplib" done # for deplib continue fi # $linkmode = prog... - if test "$linkmode,$pass" = "prog,link"; then + if test prog,link = "$linkmode,$pass"; then if test -n "$library_names" && - { { test "$prefer_static_libs" = no || - test "$prefer_static_libs,$installed" = "built,yes"; } || + { { test no = "$prefer_static_libs" || + test built,yes = "$prefer_static_libs,$installed"; } || test -z "$old_library"; }; then # We need to hardcode the library path - if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then + if test -n "$shlibpath_var" && test -z "$avoidtemprpath"; then # Make sure the rpath contains only unique directories. - case "$temp_rpath:" in + case $temp_rpath: in *"$absdir:"*) ;; - *) temp_rpath+="$absdir:" ;; + *) func_append temp_rpath "$absdir:" ;; esac fi @@ -7093,7 +8614,7 @@ func_mode_link () *) case "$compile_rpath " in *" $absdir "*) ;; - *) compile_rpath+=" $absdir" ;; + *) func_append compile_rpath " $absdir" ;; esac ;; esac @@ -7102,15 +8623,15 @@ func_mode_link () *) case "$finalize_rpath " in *" $libdir "*) ;; - *) finalize_rpath+=" $libdir" ;; + *) func_append finalize_rpath " $libdir" ;; esac ;; esac fi # $linkmode,$pass = prog,link... - if test "$alldeplibs" = yes && - { test "$deplibs_check_method" = pass_all || - { test "$build_libtool_libs" = yes && + if $alldeplibs && + { test pass_all = "$deplibs_check_method" || + { test yes = "$build_libtool_libs" && test -n "$library_names"; }; }; then # We only need to search for static libraries continue @@ -7119,20 +8640,20 @@ func_mode_link () link_static=no # Whether the deplib will be linked statically use_static_libs=$prefer_static_libs - if test "$use_static_libs" = built && test "$installed" = yes; then + if test built = "$use_static_libs" && test yes = "$installed"; then use_static_libs=no fi if test -n "$library_names" && - { test "$use_static_libs" = no || test -z "$old_library"; }; then + { test no = "$use_static_libs" || test -z "$old_library"; }; then case $host in - *cygwin* | *mingw* | *cegcc*) + *cygwin* | *mingw* | *cegcc* | *os2*) # No point in relinking DLLs because paths are not encoded - notinst_deplibs+=" $lib" + func_append notinst_deplibs " $lib" need_relink=no ;; *) - if test "$installed" = no; then - notinst_deplibs+=" $lib" + if test no = "$installed"; then + func_append notinst_deplibs " $lib" need_relink=yes fi ;; @@ -7141,24 +8662,24 @@ func_mode_link () # Warn about portability, can't link against -module's on some # systems (darwin). Don't bleat about dlopened modules though! - dlopenmodule="" + dlopenmodule= for dlpremoduletest in $dlprefiles; do if test "X$dlpremoduletest" = "X$lib"; then - dlopenmodule="$dlpremoduletest" + dlopenmodule=$dlpremoduletest break fi done - if test -z "$dlopenmodule" && test "$shouldnotlink" = yes && test "$pass" = link; then + if test -z "$dlopenmodule" && test yes = "$shouldnotlink" && test link = "$pass"; then echo - if test "$linkmode" = prog; then + if test prog = "$linkmode"; then $ECHO "*** Warning: Linking the executable $output against the loadable module" else $ECHO "*** Warning: Linking the shared library $output against the loadable module" fi $ECHO "*** $linklib is not portable!" fi - if test "$linkmode" = lib && - test "$hardcode_into_libs" = yes; then + if test lib = "$linkmode" && + test yes = "$hardcode_into_libs"; then # Hardcode the library path. # Skip directories that are in the system default run-time # search path. @@ -7167,7 +8688,7 @@ func_mode_link () *) case "$compile_rpath " in *" $absdir "*) ;; - *) compile_rpath+=" $absdir" ;; + *) func_append compile_rpath " $absdir" ;; esac ;; esac @@ -7176,7 +8697,7 @@ func_mode_link () *) case "$finalize_rpath " in *" $libdir "*) ;; - *) finalize_rpath+=" $libdir" ;; + *) func_append finalize_rpath " $libdir" ;; esac ;; esac @@ -7186,43 +8707,43 @@ func_mode_link () # figure out the soname set dummy $library_names shift - realname="$1" + realname=$1 shift libname=`eval "\\$ECHO \"$libname_spec\""` # use dlname if we got it. it's perfectly good, no? if test -n "$dlname"; then - soname="$dlname" + soname=$dlname elif test -n "$soname_spec"; then # bleh windows case $host in - *cygwin* | mingw* | *cegcc*) + *cygwin* | mingw* | *cegcc* | *os2*) func_arith $current - $age major=$func_arith_result - versuffix="-$major" + versuffix=-$major ;; esac eval soname=\"$soname_spec\" else - soname="$realname" + soname=$realname fi # Make a new name for the extract_expsyms_cmds to use - soroot="$soname" + soroot=$soname func_basename "$soroot" - soname="$func_basename_result" + soname=$func_basename_result func_stripname 'lib' '.dll' "$soname" newlib=libimp-$func_stripname_result.a # If the library has no export list, then create one now if test -f "$output_objdir/$soname-def"; then : else - func_verbose "extracting exported symbol list from \`$soname'" + func_verbose "extracting exported symbol list from '$soname'" func_execute_cmds "$extract_expsyms_cmds" 'exit $?' fi # Create $newlib if test -f "$output_objdir/$newlib"; then :; else - func_verbose "generating import library for \`$soname'" + func_verbose "generating import library for '$soname'" func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?' fi # make sure the library variables are pointing to the new library @@ -7230,70 +8751,70 @@ func_mode_link () linklib=$newlib fi # test -n "$old_archive_from_expsyms_cmds" - if test "$linkmode" = prog || test "$opt_mode" != relink; then + if test prog = "$linkmode" || test relink != "$opt_mode"; then add_shlibpath= add_dir= add= lib_linked=yes case $hardcode_action in immediate | unsupported) - if test "$hardcode_direct" = no; then - add="$dir/$linklib" + if test no = "$hardcode_direct"; then + add=$dir/$linklib case $host in - *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;; - *-*-sysv4*uw2*) add_dir="-L$dir" ;; + *-*-sco3.2v5.0.[024]*) add_dir=-L$dir ;; + *-*-sysv4*uw2*) add_dir=-L$dir ;; *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ - *-*-unixware7*) add_dir="-L$dir" ;; + *-*-unixware7*) add_dir=-L$dir ;; *-*-darwin* ) - # if the lib is a (non-dlopened) module then we can not + # if the lib is a (non-dlopened) module then we cannot # link against it, someone is ignoring the earlier warnings if /usr/bin/file -L $add 2> /dev/null | - $GREP ": [^:]* bundle" >/dev/null ; then + $GREP ": [^:]* bundle" >/dev/null; then if test "X$dlopenmodule" != "X$lib"; then $ECHO "*** Warning: lib $linklib is a module, not a shared library" - if test -z "$old_library" ; then + if test -z "$old_library"; then echo echo "*** And there doesn't seem to be a static archive available" echo "*** The link will probably fail, sorry" else - add="$dir/$old_library" + add=$dir/$old_library fi elif test -n "$old_library"; then - add="$dir/$old_library" + add=$dir/$old_library fi fi esac - elif test "$hardcode_minus_L" = no; then + elif test no = "$hardcode_minus_L"; then case $host in - *-*-sunos*) add_shlibpath="$dir" ;; + *-*-sunos*) add_shlibpath=$dir ;; esac - add_dir="-L$dir" - add="-l$name" - elif test "$hardcode_shlibpath_var" = no; then - add_shlibpath="$dir" - add="-l$name" + add_dir=-L$dir + add=-l$name + elif test no = "$hardcode_shlibpath_var"; then + add_shlibpath=$dir + add=-l$name else lib_linked=no fi ;; relink) - if test "$hardcode_direct" = yes && - test "$hardcode_direct_absolute" = no; then - add="$dir/$linklib" - elif test "$hardcode_minus_L" = yes; then - add_dir="-L$absdir" + if test yes = "$hardcode_direct" && + test no = "$hardcode_direct_absolute"; then + add=$dir/$linklib + elif test yes = "$hardcode_minus_L"; then + add_dir=-L$absdir # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) - add_dir+=" -L$inst_prefix_dir$libdir" + func_append add_dir " -L$inst_prefix_dir$libdir" ;; esac fi - add="-l$name" - elif test "$hardcode_shlibpath_var" = yes; then - add_shlibpath="$dir" - add="-l$name" + add=-l$name + elif test yes = "$hardcode_shlibpath_var"; then + add_shlibpath=$dir + add=-l$name else lib_linked=no fi @@ -7301,72 +8822,72 @@ func_mode_link () *) lib_linked=no ;; esac - if test "$lib_linked" != yes; then + if test yes != "$lib_linked"; then func_fatal_configuration "unsupported hardcode properties" fi if test -n "$add_shlibpath"; then case :$compile_shlibpath: in *":$add_shlibpath:"*) ;; - *) compile_shlibpath+="$add_shlibpath:" ;; + *) func_append compile_shlibpath "$add_shlibpath:" ;; esac fi - if test "$linkmode" = prog; then + if test prog = "$linkmode"; then test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" test -n "$add" && compile_deplibs="$add $compile_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" - if test "$hardcode_direct" != yes && - test "$hardcode_minus_L" != yes && - test "$hardcode_shlibpath_var" = yes; then + if test yes != "$hardcode_direct" && + test yes != "$hardcode_minus_L" && + test yes = "$hardcode_shlibpath_var"; then case :$finalize_shlibpath: in *":$libdir:"*) ;; - *) finalize_shlibpath+="$libdir:" ;; + *) func_append finalize_shlibpath "$libdir:" ;; esac fi fi fi - if test "$linkmode" = prog || test "$opt_mode" = relink; then + if test prog = "$linkmode" || test relink = "$opt_mode"; then add_shlibpath= add_dir= add= # Finalize command for both is simple: just hardcode it. - if test "$hardcode_direct" = yes && - test "$hardcode_direct_absolute" = no; then - add="$libdir/$linklib" - elif test "$hardcode_minus_L" = yes; then - add_dir="-L$libdir" - add="-l$name" - elif test "$hardcode_shlibpath_var" = yes; then + if test yes = "$hardcode_direct" && + test no = "$hardcode_direct_absolute"; then + add=$libdir/$linklib + elif test yes = "$hardcode_minus_L"; then + add_dir=-L$libdir + add=-l$name + elif test yes = "$hardcode_shlibpath_var"; then case :$finalize_shlibpath: in *":$libdir:"*) ;; - *) finalize_shlibpath+="$libdir:" ;; + *) func_append finalize_shlibpath "$libdir:" ;; esac - add="-l$name" - elif test "$hardcode_automatic" = yes; then + add=-l$name + elif test yes = "$hardcode_automatic"; then if test -n "$inst_prefix_dir" && - test -f "$inst_prefix_dir$libdir/$linklib" ; then - add="$inst_prefix_dir$libdir/$linklib" + test -f "$inst_prefix_dir$libdir/$linklib"; then + add=$inst_prefix_dir$libdir/$linklib else - add="$libdir/$linklib" + add=$libdir/$linklib fi else # We cannot seem to hardcode it, guess we'll fake it. - add_dir="-L$libdir" + add_dir=-L$libdir # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) - add_dir+=" -L$inst_prefix_dir$libdir" + func_append add_dir " -L$inst_prefix_dir$libdir" ;; esac fi - add="-l$name" + add=-l$name fi - if test "$linkmode" = prog; then + if test prog = "$linkmode"; then test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" test -n "$add" && finalize_deplibs="$add $finalize_deplibs" else @@ -7374,43 +8895,43 @@ func_mode_link () test -n "$add" && deplibs="$add $deplibs" fi fi - elif test "$linkmode" = prog; then + elif test prog = "$linkmode"; then # Here we assume that one of hardcode_direct or hardcode_minus_L # is not unsupported. This is valid on all known static and # shared platforms. - if test "$hardcode_direct" != unsupported; then - test -n "$old_library" && linklib="$old_library" + if test unsupported != "$hardcode_direct"; then + test -n "$old_library" && linklib=$old_library compile_deplibs="$dir/$linklib $compile_deplibs" finalize_deplibs="$dir/$linklib $finalize_deplibs" else compile_deplibs="-l$name -L$dir $compile_deplibs" finalize_deplibs="-l$name -L$dir $finalize_deplibs" fi - elif test "$build_libtool_libs" = yes; then + elif test yes = "$build_libtool_libs"; then # Not a shared library - if test "$deplibs_check_method" != pass_all; then + if test pass_all != "$deplibs_check_method"; then # We're trying link a shared library against a static one # but the system doesn't support it. # Just print a warning and add the library to dependency_libs so # that the program can be linked against the static library. echo - $ECHO "*** Warning: This system can not link to static lib archive $lib." + $ECHO "*** Warning: This system cannot link to static lib archive $lib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have." - if test "$module" = yes; then + if test yes = "$module"; then echo "*** But as you try to build a module library, libtool will still create " echo "*** a static module, that should work as long as the dlopening application" echo "*** is linked with the -dlopen flag to resolve symbols at runtime." if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" - echo "*** lists from a program, using \`nm' or equivalent, but libtool could" + echo "*** lists from a program, using 'nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." - echo "*** \`nm' from GNU binutils and a full rebuild may help." + echo "*** 'nm' from GNU binutils and a full rebuild may help." fi - if test "$build_old_libs" = no; then + if test no = "$build_old_libs"; then build_libtool_libs=module build_old_libs=yes else @@ -7423,11 +8944,11 @@ func_mode_link () fi fi # link shared/static library? - if test "$linkmode" = lib; then + if test lib = "$linkmode"; then if test -n "$dependency_libs" && - { test "$hardcode_into_libs" != yes || - test "$build_old_libs" = yes || - test "$link_static" = yes; }; then + { test yes != "$hardcode_into_libs" || + test yes = "$build_old_libs" || + test yes = "$link_static"; }; then # Extract -R from dependency_libs temp_deplibs= for libdir in $dependency_libs; do @@ -7436,17 +8957,17 @@ func_mode_link () temp_xrpath=$func_stripname_result case " $xrpath " in *" $temp_xrpath "*) ;; - *) xrpath+=" $temp_xrpath";; + *) func_append xrpath " $temp_xrpath";; esac;; - *) temp_deplibs+=" $libdir";; + *) func_append temp_deplibs " $libdir";; esac done - dependency_libs="$temp_deplibs" + dependency_libs=$temp_deplibs fi - newlib_search_path+=" $absdir" + func_append newlib_search_path " $absdir" # Link against this library - test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs" + test no = "$link_static" && newdependency_libs="$abs_ladir/$laname $newdependency_libs" # ... and its dependency_libs tmp_libs= for deplib in $dependency_libs; do @@ -7456,21 +8977,21 @@ func_mode_link () func_resolve_sysroot "$func_stripname_result";; *) func_resolve_sysroot "$deplib" ;; esac - if $opt_preserve_dup_deps ; then + if $opt_preserve_dup_deps; then case "$tmp_libs " in *" $func_resolve_sysroot_result "*) - specialdeplibs+=" $func_resolve_sysroot_result" ;; + func_append specialdeplibs " $func_resolve_sysroot_result" ;; esac fi - tmp_libs+=" $func_resolve_sysroot_result" + func_append tmp_libs " $func_resolve_sysroot_result" done - if test "$link_all_deplibs" != no; then + if test no != "$link_all_deplibs"; then # Add the search paths of all dependency libraries for deplib in $dependency_libs; do path= case $deplib in - -L*) path="$deplib" ;; + -L*) path=$deplib ;; *.la) func_resolve_sysroot "$deplib" deplib=$func_resolve_sysroot_result @@ -7478,12 +8999,12 @@ func_mode_link () dir=$func_dirname_result # We need an absolute path. case $dir in - [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;; + [\\/]* | [A-Za-z]:[\\/]*) absdir=$dir ;; *) absdir=`cd "$dir" && pwd` if test -z "$absdir"; then - func_warning "cannot determine absolute directory name of \`$dir'" - absdir="$dir" + func_warning "cannot determine absolute directory name of '$dir'" + absdir=$dir fi ;; esac @@ -7491,35 +9012,35 @@ func_mode_link () case $host in *-*-darwin*) depdepl= - eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` - if test -n "$deplibrary_names" ; then - for tmp in $deplibrary_names ; do + eval deplibrary_names=`$SED -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` + if test -n "$deplibrary_names"; then + for tmp in $deplibrary_names; do depdepl=$tmp done - if test -f "$absdir/$objdir/$depdepl" ; then - depdepl="$absdir/$objdir/$depdepl" - darwin_install_name=`${OTOOL} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` + if test -f "$absdir/$objdir/$depdepl"; then + depdepl=$absdir/$objdir/$depdepl + darwin_install_name=`$OTOOL -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` if test -z "$darwin_install_name"; then - darwin_install_name=`${OTOOL64} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` + darwin_install_name=`$OTOOL64 -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` fi - compiler_flags+=" ${wl}-dylib_file ${wl}${darwin_install_name}:${depdepl}" - linker_flags+=" -dylib_file ${darwin_install_name}:${depdepl}" + func_append compiler_flags " $wl-dylib_file $wl$darwin_install_name:$depdepl" + func_append linker_flags " -dylib_file $darwin_install_name:$depdepl" path= fi fi ;; *) - path="-L$absdir/$objdir" + path=-L$absdir/$objdir ;; esac else - eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` + eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` test -z "$libdir" && \ - func_fatal_error "\`$deplib' is not a valid libtool archive" + func_fatal_error "'$deplib' is not a valid libtool archive" test "$absdir" != "$libdir" && \ - func_warning "\`$deplib' seems to be moved" + func_warning "'$deplib' seems to be moved" - path="-L$absdir" + path=-L$absdir fi ;; esac @@ -7531,38 +9052,38 @@ func_mode_link () fi # link_all_deplibs != no fi # linkmode = lib done # for deplib in $libs - if test "$pass" = link; then - if test "$linkmode" = "prog"; then + if test link = "$pass"; then + if test prog = "$linkmode"; then compile_deplibs="$new_inherited_linker_flags $compile_deplibs" finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs" else compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` fi fi - dependency_libs="$newdependency_libs" - if test "$pass" = dlpreopen; then + dependency_libs=$newdependency_libs + if test dlpreopen = "$pass"; then # Link the dlpreopened libraries before other libraries for deplib in $save_deplibs; do deplibs="$deplib $deplibs" done fi - if test "$pass" != dlopen; then - if test "$pass" != conv; then + if test dlopen != "$pass"; then + test conv = "$pass" || { # Make sure lib_search_path contains only unique directories. lib_search_path= for dir in $newlib_search_path; do case "$lib_search_path " in *" $dir "*) ;; - *) lib_search_path+=" $dir" ;; + *) func_append lib_search_path " $dir" ;; esac done newlib_search_path= - fi + } - if test "$linkmode,$pass" != "prog,link"; then - vars="deplibs" - else + if test prog,link = "$linkmode,$pass"; then vars="compile_deplibs finalize_deplibs" + else + vars=deplibs fi for var in $vars dependency_libs; do # Add libraries to $var in reverse order @@ -7611,71 +9132,102 @@ func_mode_link () -L*) case " $tmp_libs " in *" $deplib "*) ;; - *) tmp_libs+=" $deplib" ;; + *) func_append tmp_libs " $deplib" ;; esac ;; - *) tmp_libs+=" $deplib" ;; + *) func_append tmp_libs " $deplib" ;; esac done eval $var=\"$tmp_libs\" done # for var fi + + # Add Sun CC postdeps if required: + test CXX = "$tagname" && { + case $host_os in + linux*) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) # Sun C++ 5.9 + func_suncc_cstd_abi + + if test no != "$suncc_use_cstd_abi"; then + func_append postdeps ' -library=Cstd -library=Crun' + fi + ;; + esac + ;; + + solaris*) + func_cc_basename "$CC" + case $func_cc_basename_result in + CC* | sunCC*) + func_suncc_cstd_abi + + if test no != "$suncc_use_cstd_abi"; then + func_append postdeps ' -library=Cstd -library=Crun' + fi + ;; + esac + ;; + esac + } + # Last step: remove runtime libs from dependency_libs # (they stay in deplibs) tmp_libs= - for i in $dependency_libs ; do + for i in $dependency_libs; do case " $predeps $postdeps $compiler_lib_search_path " in *" $i "*) - i="" + i= ;; esac - if test -n "$i" ; then - tmp_libs+=" $i" + if test -n "$i"; then + func_append tmp_libs " $i" fi done dependency_libs=$tmp_libs done # for pass - if test "$linkmode" = prog; then - dlfiles="$newdlfiles" + if test prog = "$linkmode"; then + dlfiles=$newdlfiles fi - if test "$linkmode" = prog || test "$linkmode" = lib; then - dlprefiles="$newdlprefiles" + if test prog = "$linkmode" || test lib = "$linkmode"; then + dlprefiles=$newdlprefiles fi case $linkmode in oldlib) - if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then - func_warning "\`-dlopen' is ignored for archives" + if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then + func_warning "'-dlopen' is ignored for archives" fi case " $deplibs" in *\ -l* | *\ -L*) - func_warning "\`-l' and \`-L' are ignored for archives" ;; + func_warning "'-l' and '-L' are ignored for archives" ;; esac test -n "$rpath" && \ - func_warning "\`-rpath' is ignored for archives" + func_warning "'-rpath' is ignored for archives" test -n "$xrpath" && \ - func_warning "\`-R' is ignored for archives" + func_warning "'-R' is ignored for archives" test -n "$vinfo" && \ - func_warning "\`-version-info/-version-number' is ignored for archives" + func_warning "'-version-info/-version-number' is ignored for archives" test -n "$release" && \ - func_warning "\`-release' is ignored for archives" + func_warning "'-release' is ignored for archives" test -n "$export_symbols$export_symbols_regex" && \ - func_warning "\`-export-symbols' is ignored for archives" + func_warning "'-export-symbols' is ignored for archives" # Now set the variables for building old libraries. build_libtool_libs=no - oldlibs="$output" - objs+="$old_deplibs" + oldlibs=$output + func_append objs "$old_deplibs" ;; lib) - # Make sure we only generate libraries of the form `libNAME.la'. + # Make sure we only generate libraries of the form 'libNAME.la'. case $outputname in lib*) func_stripname 'lib' '.la' "$outputname" @@ -7684,10 +9236,10 @@ func_mode_link () eval libname=\"$libname_spec\" ;; *) - test "$module" = no && \ - func_fatal_help "libtool library \`$output' must begin with \`lib'" + test no = "$module" \ + && func_fatal_help "libtool library '$output' must begin with 'lib'" - if test "$need_lib_prefix" != no; then + if test no != "$need_lib_prefix"; then # Add the "lib" prefix for modules if required func_stripname '' '.la' "$outputname" name=$func_stripname_result @@ -7701,31 +9253,31 @@ func_mode_link () esac if test -n "$objs"; then - if test "$deplibs_check_method" != pass_all; then - func_fatal_error "cannot build libtool library \`$output' from non-libtool objects on this host:$objs" + if test pass_all != "$deplibs_check_method"; then + func_fatal_error "cannot build libtool library '$output' from non-libtool objects on this host:$objs" else echo $ECHO "*** Warning: Linking the shared library $output against the non-libtool" $ECHO "*** objects $objs is not portable!" - libobjs+=" $objs" + func_append libobjs " $objs" fi fi - test "$dlself" != no && \ - func_warning "\`-dlopen self' is ignored for libtool libraries" + test no = "$dlself" \ + || func_warning "'-dlopen self' is ignored for libtool libraries" set dummy $rpath shift - test "$#" -gt 1 && \ - func_warning "ignoring multiple \`-rpath's for a libtool library" + test 1 -lt "$#" \ + && func_warning "ignoring multiple '-rpath's for a libtool library" - install_libdir="$1" + install_libdir=$1 oldlibs= if test -z "$rpath"; then - if test "$build_libtool_libs" = yes; then + if test yes = "$build_libtool_libs"; then # Building a libtool convenience library. - # Some compilers have problems with a `.al' extension so + # Some compilers have problems with a '.al' extension so # convenience libraries should have the same extension an # archive normally would. oldlibs="$output_objdir/$libname.$libext $oldlibs" @@ -7734,20 +9286,20 @@ func_mode_link () fi test -n "$vinfo" && \ - func_warning "\`-version-info/-version-number' is ignored for convenience libraries" + func_warning "'-version-info/-version-number' is ignored for convenience libraries" test -n "$release" && \ - func_warning "\`-release' is ignored for convenience libraries" + func_warning "'-release' is ignored for convenience libraries" else # Parse the version information argument. - save_ifs="$IFS"; IFS=':' + save_ifs=$IFS; IFS=: set dummy $vinfo 0 0 0 shift - IFS="$save_ifs" + IFS=$save_ifs test -n "$7" && \ - func_fatal_help "too many parameters to \`-version-info'" + func_fatal_help "too many parameters to '-version-info'" # convert absolute version numbers to libtool ages # this retains compatibility with .la files and attempts @@ -7755,42 +9307,42 @@ func_mode_link () case $vinfo_number in yes) - number_major="$1" - number_minor="$2" - number_revision="$3" + number_major=$1 + number_minor=$2 + number_revision=$3 # # There are really only two kinds -- those that # use the current revision as the major version # and those that subtract age and use age as # a minor version. But, then there is irix - # which has an extra 1 added just for fun + # that has an extra 1 added just for fun # case $version_type in # correct linux to gnu/linux during the next big refactor - darwin|linux|osf|windows|none) + darwin|freebsd-elf|linux|osf|windows|none) func_arith $number_major + $number_minor current=$func_arith_result - age="$number_minor" - revision="$number_revision" + age=$number_minor + revision=$number_revision ;; - freebsd-aout|freebsd-elf|qnx|sunos) - current="$number_major" - revision="$number_minor" - age="0" + freebsd-aout|qnx|sunos) + current=$number_major + revision=$number_minor + age=0 ;; irix|nonstopux) func_arith $number_major + $number_minor current=$func_arith_result - age="$number_minor" - revision="$number_minor" + age=$number_minor + revision=$number_minor lt_irix_increment=no ;; esac ;; no) - current="$1" - revision="$2" - age="$3" + current=$1 + revision=$2 + age=$3 ;; esac @@ -7798,30 +9350,30 @@ func_mode_link () case $current in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) - func_error "CURRENT \`$current' must be a nonnegative integer" - func_fatal_error "\`$vinfo' is not valid version information" + func_error "CURRENT '$current' must be a nonnegative integer" + func_fatal_error "'$vinfo' is not valid version information" ;; esac case $revision in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) - func_error "REVISION \`$revision' must be a nonnegative integer" - func_fatal_error "\`$vinfo' is not valid version information" + func_error "REVISION '$revision' must be a nonnegative integer" + func_fatal_error "'$vinfo' is not valid version information" ;; esac case $age in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) - func_error "AGE \`$age' must be a nonnegative integer" - func_fatal_error "\`$vinfo' is not valid version information" + func_error "AGE '$age' must be a nonnegative integer" + func_fatal_error "'$vinfo' is not valid version information" ;; esac if test "$age" -gt "$current"; then - func_error "AGE \`$age' is greater than the current interface number \`$current'" - func_fatal_error "\`$vinfo' is not valid version information" + func_error "AGE '$age' is greater than the current interface number '$current'" + func_fatal_error "'$vinfo' is not valid version information" fi # Calculate the version variables. @@ -7836,26 +9388,36 @@ func_mode_link () # verstring for coding it into the library header func_arith $current - $age major=.$func_arith_result - versuffix="$major.$age.$revision" + versuffix=$major.$age.$revision # Darwin ld doesn't like 0 for these options... func_arith $current + 1 minor_current=$func_arith_result - xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision" + xlcverstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" + # On Darwin other compilers + case $CC in + nagfor*) + verstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" + ;; + *) + verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" + ;; + esac ;; freebsd-aout) - major=".$current" - versuffix=".$current.$revision"; + major=.$current + versuffix=.$current.$revision ;; freebsd-elf) - major=".$current" - versuffix=".$current" + func_arith $current - $age + major=.$func_arith_result + versuffix=$major.$age.$revision ;; irix | nonstopux) - if test "X$lt_irix_increment" = "Xno"; then + if test no = "$lt_irix_increment"; then func_arith $current - $age else func_arith $current - $age + 1 @@ -7866,69 +9428,74 @@ func_mode_link () nonstopux) verstring_prefix=nonstopux ;; *) verstring_prefix=sgi ;; esac - verstring="$verstring_prefix$major.$revision" + verstring=$verstring_prefix$major.$revision # Add in all the interfaces that we are compatible with. loop=$revision - while test "$loop" -ne 0; do + while test 0 -ne "$loop"; do func_arith $revision - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result - verstring="$verstring_prefix$major.$iface:$verstring" + verstring=$verstring_prefix$major.$iface:$verstring done - # Before this point, $major must not contain `.'. + # Before this point, $major must not contain '.'. major=.$major - versuffix="$major.$revision" + versuffix=$major.$revision ;; linux) # correct to gnu/linux during the next big refactor func_arith $current - $age major=.$func_arith_result - versuffix="$major.$age.$revision" + versuffix=$major.$age.$revision ;; osf) func_arith $current - $age major=.$func_arith_result - versuffix=".$current.$age.$revision" - verstring="$current.$age.$revision" + versuffix=.$current.$age.$revision + verstring=$current.$age.$revision # Add in all the interfaces that we are compatible with. loop=$age - while test "$loop" -ne 0; do + while test 0 -ne "$loop"; do func_arith $current - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result - verstring="$verstring:${iface}.0" + verstring=$verstring:$iface.0 done # Make executables depend on our current version. - verstring+=":${current}.0" + func_append verstring ":$current.0" ;; qnx) - major=".$current" - versuffix=".$current" + major=.$current + versuffix=.$current + ;; + + sco) + major=.$current + versuffix=.$current ;; sunos) - major=".$current" - versuffix=".$current.$revision" + major=.$current + versuffix=.$current.$revision ;; windows) # Use '-' rather than '.', since we only want one - # extension on DOS 8.3 filesystems. + # extension on DOS 8.3 file systems. func_arith $current - $age major=$func_arith_result - versuffix="-$major" + versuffix=-$major ;; *) - func_fatal_configuration "unknown library version type \`$version_type'" + func_fatal_configuration "unknown library version type '$version_type'" ;; esac @@ -7942,42 +9509,45 @@ func_mode_link () verstring= ;; *) - verstring="0.0" + verstring=0.0 ;; esac - if test "$need_version" = no; then + if test no = "$need_version"; then versuffix= else - versuffix=".0.0" + versuffix=.0.0 fi fi # Remove version info from name if versioning should be avoided - if test "$avoid_version" = yes && test "$need_version" = no; then + if test yes,no = "$avoid_version,$need_version"; then major= versuffix= - verstring="" + verstring= fi # Check to see if the archive will have undefined symbols. - if test "$allow_undefined" = yes; then - if test "$allow_undefined_flag" = unsupported; then - func_warning "undefined symbols not allowed in $host shared libraries" - build_libtool_libs=no - build_old_libs=yes + if test yes = "$allow_undefined"; then + if test unsupported = "$allow_undefined_flag"; then + if test yes = "$build_old_libs"; then + func_warning "undefined symbols not allowed in $host shared libraries; building static only" + build_libtool_libs=no + else + func_fatal_error "can't build $host shared library unless -no-undefined is specified" + fi fi else # Don't allow undefined symbols. - allow_undefined_flag="$no_undefined_flag" + allow_undefined_flag=$no_undefined_flag fi fi - func_generate_dlsyms "$libname" "$libname" "yes" - libobjs+=" $symfileobj" - test "X$libobjs" = "X " && libobjs= + func_generate_dlsyms "$libname" "$libname" : + func_append libobjs " $symfileobj" + test " " = "$libobjs" && libobjs= - if test "$opt_mode" != relink; then + if test relink != "$opt_mode"; then # Remove our outputs, but don't remove object files since they # may have been created when compiling PIC objects. removelist= @@ -7986,14 +9556,14 @@ func_mode_link () case $p in *.$objext | *.gcno) ;; - $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*) - if test "X$precious_files_regex" != "X"; then + $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/$libname$release.*) + if test -n "$precious_files_regex"; then if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 then continue fi fi - removelist+=" $p" + func_append removelist " $p" ;; *) ;; esac @@ -8003,11 +9573,11 @@ func_mode_link () fi # Now set the variables for building old libraries. - if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then - oldlibs+=" $output_objdir/$libname.$libext" + if test yes = "$build_old_libs" && test convenience != "$build_libtool_libs"; then + func_append oldlibs " $output_objdir/$libname.$libext" # Transform .lo files to .o files. - oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; $lo2o" | $NL2SP` + oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; $lo2o" | $NL2SP` fi # Eliminate all temporary directories. @@ -8022,38 +9592,38 @@ func_mode_link () temp_xrpath= for libdir in $xrpath; do func_replace_sysroot "$libdir" - temp_xrpath+=" -R$func_replace_sysroot_result" + func_append temp_xrpath " -R$func_replace_sysroot_result" case "$finalize_rpath " in *" $libdir "*) ;; - *) finalize_rpath+=" $libdir" ;; + *) func_append finalize_rpath " $libdir" ;; esac done - if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then + if test yes != "$hardcode_into_libs" || test yes = "$build_old_libs"; then dependency_libs="$temp_xrpath $dependency_libs" fi fi # Make sure dlfiles contains only unique files that won't be dlpreopened - old_dlfiles="$dlfiles" + old_dlfiles=$dlfiles dlfiles= for lib in $old_dlfiles; do case " $dlprefiles $dlfiles " in *" $lib "*) ;; - *) dlfiles+=" $lib" ;; + *) func_append dlfiles " $lib" ;; esac done # Make sure dlprefiles contains only unique files - old_dlprefiles="$dlprefiles" + old_dlprefiles=$dlprefiles dlprefiles= for lib in $old_dlprefiles; do case "$dlprefiles " in *" $lib "*) ;; - *) dlprefiles+=" $lib" ;; + *) func_append dlprefiles " $lib" ;; esac done - if test "$build_libtool_libs" = yes; then + if test yes = "$build_libtool_libs"; then if test -n "$rpath"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*) @@ -8061,7 +9631,7 @@ func_mode_link () ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C library is in the System framework - deplibs+=" System.ltframework" + func_append deplibs " System.ltframework" ;; *-*-netbsd*) # Don't link with libc until the a.out ld.so is fixed. @@ -8077,8 +9647,8 @@ func_mode_link () ;; *) # Add libc to deplibs on all other systems if necessary. - if test "$build_libtool_need_lc" = "yes"; then - deplibs+=" -lc" + if test yes = "$build_libtool_need_lc"; then + func_append deplibs " -lc" fi ;; esac @@ -8093,9 +9663,9 @@ func_mode_link () # I'm not sure if I'm treating the release correctly. I think # release should show up in the -l (ie -lgmp5) so we don't want to # add it in twice. Is that correct? - release="" - versuffix="" - major="" + release= + versuffix= + major= newdeplibs= droppeddeps=no case $deplibs_check_method in @@ -8124,21 +9694,21 @@ EOF -l*) func_stripname -l '' "$i" name=$func_stripname_result - if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $i "*) - newdeplibs+=" $i" - i="" + func_append newdeplibs " $i" + i= ;; esac fi - if test -n "$i" ; then + if test -n "$i"; then libname=`eval "\\$ECHO \"$libname_spec\""` deplib_matches=`eval "\\$ECHO \"$library_names_spec\""` set dummy $deplib_matches; shift deplib_match=$1 - if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then - newdeplibs+=" $i" + if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0; then + func_append newdeplibs " $i" else droppeddeps=yes echo @@ -8152,7 +9722,7 @@ EOF fi ;; *) - newdeplibs+=" $i" + func_append newdeplibs " $i" ;; esac done @@ -8167,21 +9737,21 @@ EOF $opt_dry_run || $RM conftest if $LTCC $LTCFLAGS -o conftest conftest.c $i; then ldd_output=`ldd conftest` - if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $i "*) - newdeplibs+=" $i" - i="" + func_append newdeplibs " $i" + i= ;; esac fi - if test -n "$i" ; then + if test -n "$i"; then libname=`eval "\\$ECHO \"$libname_spec\""` deplib_matches=`eval "\\$ECHO \"$library_names_spec\""` set dummy $deplib_matches; shift deplib_match=$1 - if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then - newdeplibs+=" $i" + if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0; then + func_append newdeplibs " $i" else droppeddeps=yes echo @@ -8203,7 +9773,7 @@ EOF fi ;; *) - newdeplibs+=" $i" + func_append newdeplibs " $i" ;; esac done @@ -8217,24 +9787,24 @@ EOF -l*) func_stripname -l '' "$a_deplib" name=$func_stripname_result - if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $a_deplib "*) - newdeplibs+=" $a_deplib" - a_deplib="" + func_append newdeplibs " $a_deplib" + a_deplib= ;; esac fi - if test -n "$a_deplib" ; then + if test -n "$a_deplib"; then libname=`eval "\\$ECHO \"$libname_spec\""` if test -n "$file_magic_glob"; then libnameglob=`func_echo_all "$libname" | $SED -e $file_magic_glob` else libnameglob=$libname fi - test "$want_nocaseglob" = yes && nocaseglob=`shopt -p nocaseglob` + test yes = "$want_nocaseglob" && nocaseglob=`shopt -p nocaseglob` for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do - if test "$want_nocaseglob" = yes; then + if test yes = "$want_nocaseglob"; then shopt -s nocaseglob potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null` $nocaseglob @@ -8252,25 +9822,25 @@ EOF # We might still enter an endless loop, since a link # loop can be closed while we follow links, # but so what? - potlib="$potent_lib" + potlib=$potent_lib while test -h "$potlib" 2>/dev/null; do - potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'` + potliblink=`ls -ld $potlib | $SED 's/.* -> //'` case $potliblink in - [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";; - *) potlib=`$ECHO "$potlib" | $SED 's,[^/]*$,,'`"$potliblink";; + [\\/]* | [A-Za-z]:[\\/]*) potlib=$potliblink;; + *) potlib=`$ECHO "$potlib" | $SED 's|[^/]*$||'`"$potliblink";; esac done if eval $file_magic_cmd \"\$potlib\" 2>/dev/null | $SED -e 10q | $EGREP "$file_magic_regex" > /dev/null; then - newdeplibs+=" $a_deplib" - a_deplib="" + func_append newdeplibs " $a_deplib" + a_deplib= break 2 fi done done fi - if test -n "$a_deplib" ; then + if test -n "$a_deplib"; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." @@ -8278,7 +9848,7 @@ EOF echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" - if test -z "$potlib" ; then + if test -z "$potlib"; then $ECHO "*** with $libname but no candidates were found. (...for file magic test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" @@ -8288,7 +9858,7 @@ EOF ;; *) # Add a -L argument. - newdeplibs+=" $a_deplib" + func_append newdeplibs " $a_deplib" ;; esac done # Gone through all deplibs. @@ -8301,30 +9871,30 @@ EOF -l*) func_stripname -l '' "$a_deplib" name=$func_stripname_result - if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $a_deplib "*) - newdeplibs+=" $a_deplib" - a_deplib="" + func_append newdeplibs " $a_deplib" + a_deplib= ;; esac fi - if test -n "$a_deplib" ; then + if test -n "$a_deplib"; then libname=`eval "\\$ECHO \"$libname_spec\""` for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do potential_libs=`ls $i/$libname[.-]* 2>/dev/null` for potent_lib in $potential_libs; do - potlib="$potent_lib" # see symlink-check above in file_magic test + potlib=$potent_lib # see symlink-check above in file_magic test if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \ $EGREP "$match_pattern_regex" > /dev/null; then - newdeplibs+=" $a_deplib" - a_deplib="" + func_append newdeplibs " $a_deplib" + a_deplib= break 2 fi done done fi - if test -n "$a_deplib" ; then + if test -n "$a_deplib"; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." @@ -8332,7 +9902,7 @@ EOF echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" - if test -z "$potlib" ; then + if test -z "$potlib"; then $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" @@ -8342,24 +9912,24 @@ EOF ;; *) # Add a -L argument. - newdeplibs+=" $a_deplib" + func_append newdeplibs " $a_deplib" ;; esac done # Gone through all deplibs. ;; none | unknown | *) - newdeplibs="" + newdeplibs= tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'` - if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then - for i in $predeps $postdeps ; do + if test yes = "$allow_libtool_libs_with_static_runtimes"; then + for i in $predeps $postdeps; do # can't use Xsed below, because $i might contain '/' - tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s,$i,,"` + tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s|$i||"` done fi case $tmp_deplibs in *[!\ \ ]*) echo - if test "X$deplibs_check_method" = "Xnone"; then + if test none = "$deplibs_check_method"; then echo "*** Warning: inter-library dependencies are not supported in this platform." else echo "*** Warning: inter-library dependencies are not known to be supported." @@ -8383,8 +9953,8 @@ EOF ;; esac - if test "$droppeddeps" = yes; then - if test "$module" = yes; then + if test yes = "$droppeddeps"; then + if test yes = "$module"; then echo echo "*** Warning: libtool could not satisfy all declared inter-library" $ECHO "*** dependencies of module $libname. Therefore, libtool will create" @@ -8393,12 +9963,12 @@ EOF if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" - echo "*** lists from a program, using \`nm' or equivalent, but libtool could" + echo "*** lists from a program, using 'nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." - echo "*** \`nm' from GNU binutils and a full rebuild may help." + echo "*** 'nm' from GNU binutils and a full rebuild may help." fi - if test "$build_old_libs" = no; then - oldlibs="$output_objdir/$libname.$libext" + if test no = "$build_old_libs"; then + oldlibs=$output_objdir/$libname.$libext build_libtool_libs=module build_old_libs=yes else @@ -8409,14 +9979,14 @@ EOF echo "*** automatically added whenever a program is linked with this library" echo "*** or is declared to -dlopen it." - if test "$allow_undefined" = no; then + if test no = "$allow_undefined"; then echo echo "*** Since this library must not contain undefined symbols," echo "*** because either the platform does not support them or" echo "*** it was explicitly requested with -no-undefined," echo "*** libtool will only create a static version of it." - if test "$build_old_libs" = no; then - oldlibs="$output_objdir/$libname.$libext" + if test no = "$build_old_libs"; then + oldlibs=$output_objdir/$libname.$libext build_libtool_libs=module build_old_libs=yes else @@ -8446,7 +10016,7 @@ EOF *) case " $deplibs " in *" -L$path/$objdir "*) - new_libs+=" -L$path/$objdir" ;; + func_append new_libs " -L$path/$objdir" ;; esac ;; esac @@ -8456,13 +10026,13 @@ EOF -L*) case " $new_libs " in *" $deplib "*) ;; - *) new_libs+=" $deplib" ;; + *) func_append new_libs " $deplib" ;; esac ;; - *) new_libs+=" $deplib" ;; + *) func_append new_libs " $deplib" ;; esac done - deplibs="$new_libs" + deplibs=$new_libs # All the library-specific variables (install_libdir is set above). library_names= @@ -8470,65 +10040,65 @@ EOF dlname= # Test again, we may have decided not to build it any more - if test "$build_libtool_libs" = yes; then - # Remove ${wl} instances when linking with ld. + if test yes = "$build_libtool_libs"; then + # Remove $wl instances when linking with ld. # FIXME: should test the right _cmds variable. case $archive_cmds in *\$LD\ *) wl= ;; esac - if test "$hardcode_into_libs" = yes; then + if test yes = "$hardcode_into_libs"; then # Hardcode the library paths hardcode_libdirs= dep_rpath= - rpath="$finalize_rpath" - test "$opt_mode" != relink && rpath="$compile_rpath$rpath" + rpath=$finalize_rpath + test relink = "$opt_mode" || rpath=$compile_rpath$rpath for libdir in $rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then func_replace_sysroot "$libdir" libdir=$func_replace_sysroot_result if test -z "$hardcode_libdirs"; then - hardcode_libdirs="$libdir" + hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) - hardcode_libdirs+="$hardcode_libdir_separator$libdir" + func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" - dep_rpath+=" $flag" + func_append dep_rpath " $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; - *) perm_rpath+=" $libdir" ;; + *) func_append perm_rpath " $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then - libdir="$hardcode_libdirs" + libdir=$hardcode_libdirs eval "dep_rpath=\"$hardcode_libdir_flag_spec\"" fi if test -n "$runpath_var" && test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do - rpath+="$dir:" + func_append rpath "$dir:" done eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" fi test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" fi - shlibpath="$finalize_shlibpath" - test "$opt_mode" != relink && shlibpath="$compile_shlibpath$shlibpath" + shlibpath=$finalize_shlibpath + test relink = "$opt_mode" || shlibpath=$compile_shlibpath$shlibpath if test -n "$shlibpath"; then eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" fi @@ -8538,23 +10108,23 @@ EOF eval library_names=\"$library_names_spec\" set dummy $library_names shift - realname="$1" + realname=$1 shift if test -n "$soname_spec"; then eval soname=\"$soname_spec\" else - soname="$realname" + soname=$realname fi if test -z "$dlname"; then dlname=$soname fi - lib="$output_objdir/$realname" + lib=$output_objdir/$realname linknames= for link do - linknames+=" $link" + func_append linknames " $link" done # Use standard objects if they are pic @@ -8564,8 +10134,8 @@ EOF delfiles= if test -n "$export_symbols" && test -n "$include_expsyms"; then $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp" - export_symbols="$output_objdir/$libname.uexp" - delfiles+=" $export_symbols" + export_symbols=$output_objdir/$libname.uexp + func_append delfiles " $export_symbols" fi orig_export_symbols= @@ -8573,31 +10143,31 @@ EOF cygwin* | mingw* | cegcc*) if test -n "$export_symbols" && test -z "$export_symbols_regex"; then # exporting using user supplied symfile - if test "x`$SED 1q $export_symbols`" != xEXPORTS; then + func_dll_def_p "$export_symbols" || { # and it's NOT already a .def file. Must figure out # which of the given symbols are data symbols and tag # them as such. So, trigger use of export_symbols_cmds. # export_symbols gets reassigned inside the "prepare # the list of exported symbols" if statement, so the # include_expsyms logic still works. - orig_export_symbols="$export_symbols" + orig_export_symbols=$export_symbols export_symbols= always_export_symbols=yes - fi + } fi ;; esac # Prepare the list of exported symbols if test -z "$export_symbols"; then - if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then - func_verbose "generating symbol list for \`$libname.la'" - export_symbols="$output_objdir/$libname.exp" + if test yes = "$always_export_symbols" || test -n "$export_symbols_regex"; then + func_verbose "generating symbol list for '$libname.la'" + export_symbols=$output_objdir/$libname.exp $opt_dry_run || $RM $export_symbols cmds=$export_symbols_cmds - save_ifs="$IFS"; IFS='~' + save_ifs=$IFS; IFS='~' for cmd1 in $cmds; do - IFS="$save_ifs" + IFS=$save_ifs # Take the normal branch if the nm_file_list_spec branch # doesn't work or if tool conversion is not needed. case $nm_file_list_spec~$to_tool_file_cmd in @@ -8611,7 +10181,7 @@ EOF try_normal_branch=no ;; esac - if test "$try_normal_branch" = yes \ + if test yes = "$try_normal_branch" \ && { test "$len" -lt "$max_cmd_len" \ || test "$max_cmd_len" -le -1; } then @@ -8622,10 +10192,10 @@ EOF output_la=$func_basename_result save_libobjs=$libobjs save_output=$output - output=${output_objdir}/${output_la}.nm + output=$output_objdir/$output_la.nm func_to_tool_file "$output" libobjs=$nm_file_list_spec$func_to_tool_file_result - delfiles+=" $output" + func_append delfiles " $output" func_verbose "creating $NM input file list: $output" for obj in $save_libobjs; do func_to_tool_file "$obj" @@ -8645,8 +10215,8 @@ EOF break fi done - IFS="$save_ifs" - if test -n "$export_symbols_regex" && test "X$skipped_export" != "X:"; then + IFS=$save_ifs + if test -n "$export_symbols_regex" && test : != "$skipped_export"; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi @@ -8654,21 +10224,21 @@ EOF fi if test -n "$export_symbols" && test -n "$include_expsyms"; then - tmp_export_symbols="$export_symbols" - test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" + tmp_export_symbols=$export_symbols + test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi - if test "X$skipped_export" != "X:" && test -n "$orig_export_symbols"; then + if test : != "$skipped_export" && test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. - func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" + func_verbose "filter symbol list for '$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of - # 's' commands which not all seds can handle. GNU sed should be fine + # 's' commands, which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter - delfiles+=" $export_symbols $output_objdir/$libname.filter" + func_append delfiles " $export_symbols $output_objdir/$libname.filter" export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi @@ -8678,15 +10248,15 @@ EOF case " $convenience " in *" $test_deplib "*) ;; *) - tmp_deplibs+=" $test_deplib" + func_append tmp_deplibs " $test_deplib" ;; esac done - deplibs="$tmp_deplibs" + deplibs=$tmp_deplibs if test -n "$convenience"; then if test -n "$whole_archive_flag_spec" && - test "$compiler_needs_object" = yes && + test yes = "$compiler_needs_object" && test -z "$libobjs"; then # extract the archives, so we have objects to list. # TODO: could optimize this to just extract one archive. @@ -8697,27 +10267,27 @@ EOF eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= else - gentop="$output_objdir/${outputname}x" - generated+=" $gentop" + gentop=$output_objdir/${outputname}x + func_append generated " $gentop" func_extract_archives $gentop $convenience - libobjs+=" $func_extract_archives_result" + func_append libobjs " $func_extract_archives_result" test "X$libobjs" = "X " && libobjs= fi fi - if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then + if test yes = "$thread_safe" && test -n "$thread_safe_flag_spec"; then eval flag=\"$thread_safe_flag_spec\" - linker_flags+=" $flag" + func_append linker_flags " $flag" fi # Make a backup of the uninstalled library when relinking - if test "$opt_mode" = relink; then + if test relink = "$opt_mode"; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $? fi # Do each of the archive commands. - if test "$module" = yes && test -n "$module_cmds" ; then + if test yes = "$module" && test -n "$module_cmds"; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then eval test_cmds=\"$module_expsym_cmds\" cmds=$module_expsym_cmds @@ -8735,7 +10305,7 @@ EOF fi fi - if test "X$skipped_export" != "X:" && + if test : != "$skipped_export" && func_len " $test_cmds" && len=$func_len_result && test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then @@ -8768,8 +10338,8 @@ EOF last_robj= k=1 - if test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "$with_gnu_ld" = yes; then - output=${output_objdir}/${output_la}.lnkscript + if test -n "$save_libobjs" && test : != "$skipped_export" && test yes = "$with_gnu_ld"; then + output=$output_objdir/$output_la.lnkscript func_verbose "creating GNU ld script: $output" echo 'INPUT (' > $output for obj in $save_libobjs @@ -8778,17 +10348,17 @@ EOF $ECHO "$func_to_tool_file_result" >> $output done echo ')' >> $output - delfiles+=" $output" + func_append delfiles " $output" func_to_tool_file "$output" output=$func_to_tool_file_result - elif test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "X$file_list_spec" != X; then - output=${output_objdir}/${output_la}.lnk + elif test -n "$save_libobjs" && test : != "$skipped_export" && test -n "$file_list_spec"; then + output=$output_objdir/$output_la.lnk func_verbose "creating linker input file list: $output" : > $output set x $save_libobjs shift firstobj= - if test "$compiler_needs_object" = yes; then + if test yes = "$compiler_needs_object"; then firstobj="$1 " shift fi @@ -8797,13 +10367,13 @@ EOF func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" >> $output done - delfiles+=" $output" + func_append delfiles " $output" func_to_tool_file "$output" output=$firstobj\"$file_list_spec$func_to_tool_file_result\" else if test -n "$save_libobjs"; then func_verbose "creating reloadable object files..." - output=$output_objdir/$output_la-${k}.$objext + output=$output_objdir/$output_la-$k.$objext eval test_cmds=\"$reload_cmds\" func_len " $test_cmds" len0=$func_len_result @@ -8815,13 +10385,13 @@ EOF func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result - if test "X$objlist" = X || + if test -z "$objlist" || test "$len" -lt "$max_cmd_len"; then - objlist+=" $obj" + func_append objlist " $obj" else # The command $test_cmds is almost too long, add a # command to the queue. - if test "$k" -eq 1 ; then + if test 1 -eq "$k"; then # The first file doesn't have a previous command to add. reload_objs=$objlist eval concat_cmds=\"$reload_cmds\" @@ -8831,10 +10401,10 @@ EOF reload_objs="$objlist $last_robj" eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\" fi - last_robj=$output_objdir/$output_la-${k}.$objext + last_robj=$output_objdir/$output_la-$k.$objext func_arith $k + 1 k=$func_arith_result - output=$output_objdir/$output_la-${k}.$objext + output=$output_objdir/$output_la-$k.$objext objlist=" $obj" func_len " $last_robj" func_arith $len0 + $func_len_result @@ -8846,19 +10416,19 @@ EOF # files will link in the last one created. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ reload_objs="$objlist $last_robj" - eval concat_cmds=\"\${concat_cmds}$reload_cmds\" + eval concat_cmds=\"\$concat_cmds$reload_cmds\" if test -n "$last_robj"; then - eval concat_cmds=\"\${concat_cmds}~\$RM $last_robj\" + eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" fi - delfiles+=" $output" + func_append delfiles " $output" else output= fi - if ${skipped_export-false}; then - func_verbose "generating symbol list for \`$libname.la'" - export_symbols="$output_objdir/$libname.exp" + ${skipped_export-false} && { + func_verbose "generating symbol list for '$libname.la'" + export_symbols=$output_objdir/$libname.exp $opt_dry_run || $RM $export_symbols libobjs=$output # Append the command to create the export file. @@ -8867,16 +10437,16 @@ EOF if test -n "$last_robj"; then eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" fi - fi + } test -n "$save_libobjs" && func_verbose "creating a temporary reloadable object file: $output" # Loop through the commands generated above and execute them. - save_ifs="$IFS"; IFS='~' + save_ifs=$IFS; IFS='~' for cmd in $concat_cmds; do - IFS="$save_ifs" - $opt_silent || { + IFS=$save_ifs + $opt_quiet || { func_quote_for_expand "$cmd" eval "func_echo $func_quote_for_expand_result" } @@ -8884,7 +10454,7 @@ EOF lt_exit=$? # Restore the uninstalled library and exit - if test "$opt_mode" = relink; then + if test relink = "$opt_mode"; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) @@ -8893,7 +10463,7 @@ EOF exit $lt_exit } done - IFS="$save_ifs" + IFS=$save_ifs if test -n "$export_symbols_regex" && ${skipped_export-false}; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' @@ -8901,27 +10471,27 @@ EOF fi fi - if ${skipped_export-false}; then + ${skipped_export-false} && { if test -n "$export_symbols" && test -n "$include_expsyms"; then - tmp_export_symbols="$export_symbols" - test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" + tmp_export_symbols=$export_symbols + test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi if test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. - func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" + func_verbose "filter symbol list for '$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of - # 's' commands which not all seds can handle. GNU sed should be fine + # 's' commands, which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter - delfiles+=" $export_symbols $output_objdir/$libname.filter" + func_append delfiles " $export_symbols $output_objdir/$libname.filter" export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi - fi + } libobjs=$output # Restore the value of output. @@ -8935,7 +10505,7 @@ EOF # value of $libobjs for piecewise linking. # Do each of the archive commands. - if test "$module" = yes && test -n "$module_cmds" ; then + if test yes = "$module" && test -n "$module_cmds"; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then cmds=$module_expsym_cmds else @@ -8957,19 +10527,20 @@ EOF # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then - gentop="$output_objdir/${outputname}x" - generated+=" $gentop" + gentop=$output_objdir/${outputname}x + func_append generated " $gentop" func_extract_archives $gentop $dlprefiles - libobjs+=" $func_extract_archives_result" + func_append libobjs " $func_extract_archives_result" test "X$libobjs" = "X " && libobjs= fi - save_ifs="$IFS"; IFS='~' + save_ifs=$IFS; IFS='~' for cmd in $cmds; do - IFS="$save_ifs" + IFS=$sp$nl eval cmd=\"$cmd\" - $opt_silent || { + IFS=$save_ifs + $opt_quiet || { func_quote_for_expand "$cmd" eval "func_echo $func_quote_for_expand_result" } @@ -8977,7 +10548,7 @@ EOF lt_exit=$? # Restore the uninstalled library and exit - if test "$opt_mode" = relink; then + if test relink = "$opt_mode"; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) @@ -8986,10 +10557,10 @@ EOF exit $lt_exit } done - IFS="$save_ifs" + IFS=$save_ifs # Restore the uninstalled library and exit - if test "$opt_mode" = relink; then + if test relink = "$opt_mode"; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $? if test -n "$convenience"; then @@ -9009,39 +10580,39 @@ EOF done # If -module or -export-dynamic was specified, set the dlname. - if test "$module" = yes || test "$export_dynamic" = yes; then + if test yes = "$module" || test yes = "$export_dynamic"; then # On all known operating systems, these are identical. - dlname="$soname" + dlname=$soname fi fi ;; obj) - if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then - func_warning "\`-dlopen' is ignored for objects" + if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then + func_warning "'-dlopen' is ignored for objects" fi case " $deplibs" in *\ -l* | *\ -L*) - func_warning "\`-l' and \`-L' are ignored for objects" ;; + func_warning "'-l' and '-L' are ignored for objects" ;; esac test -n "$rpath" && \ - func_warning "\`-rpath' is ignored for objects" + func_warning "'-rpath' is ignored for objects" test -n "$xrpath" && \ - func_warning "\`-R' is ignored for objects" + func_warning "'-R' is ignored for objects" test -n "$vinfo" && \ - func_warning "\`-version-info' is ignored for objects" + func_warning "'-version-info' is ignored for objects" test -n "$release" && \ - func_warning "\`-release' is ignored for objects" + func_warning "'-release' is ignored for objects" case $output in *.lo) test -n "$objs$old_deplibs" && \ - func_fatal_error "cannot build library object \`$output' from non-libtool objects" + func_fatal_error "cannot build library object '$output' from non-libtool objects" libobj=$output func_lo2o "$libobj" @@ -9049,7 +10620,7 @@ EOF ;; *) libobj= - obj="$output" + obj=$output ;; esac @@ -9062,18 +10633,20 @@ EOF # the extraction. reload_conv_objs= gentop= - # reload_cmds runs $LD directly, so let us get rid of - # -Wl from whole_archive_flag_spec and hope we can get by with - # turning comma into space.. - wl= - + # if reload_cmds runs $LD directly, get rid of -Wl from + # whole_archive_flag_spec and hope we can get by with turning comma + # into space. + case $reload_cmds in + *\$LD[\ \$]*) wl= ;; + esac if test -n "$convenience"; then if test -n "$whole_archive_flag_spec"; then eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" - reload_conv_objs=$reload_objs\ `$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` + test -n "$wl" || tmp_whole_archive_flags=`$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` + reload_conv_objs=$reload_objs\ $tmp_whole_archive_flags else - gentop="$output_objdir/${obj}x" - generated+=" $gentop" + gentop=$output_objdir/${obj}x + func_append generated " $gentop" func_extract_archives $gentop $convenience reload_conv_objs="$reload_objs $func_extract_archives_result" @@ -9081,12 +10654,12 @@ EOF fi # If we're not building shared, we need to use non_pic_objs - test "$build_libtool_libs" != yes && libobjs="$non_pic_objects" + test yes = "$build_libtool_libs" || libobjs=$non_pic_objects # Create the old-style object. - reload_objs="$objs$old_deplibs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; /\.lib$/d; $lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test + reload_objs=$objs$old_deplibs' '`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; /\.lib$/d; $lo2o" | $NL2SP`' '$reload_conv_objs - output="$obj" + output=$obj func_execute_cmds "$reload_cmds" 'exit $?' # Exit if we aren't doing a library object file. @@ -9098,7 +10671,7 @@ EOF exit $EXIT_SUCCESS fi - if test "$build_libtool_libs" != yes; then + test yes = "$build_libtool_libs" || { if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi @@ -9108,12 +10681,12 @@ EOF # $show "echo timestamp > $libobj" # $opt_dry_run || eval "echo timestamp > $libobj" || exit $? exit $EXIT_SUCCESS - fi + } - if test -n "$pic_flag" || test "$pic_mode" != default; then + if test -n "$pic_flag" || test default != "$pic_mode"; then # Only do commands if we really have different PIC objects. reload_objs="$libobjs $reload_conv_objs" - output="$libobj" + output=$libobj func_execute_cmds "$reload_cmds" 'exit $?' fi @@ -9130,16 +10703,14 @@ EOF output=$func_stripname_result.exe;; esac test -n "$vinfo" && \ - func_warning "\`-version-info' is ignored for programs" + func_warning "'-version-info' is ignored for programs" test -n "$release" && \ - func_warning "\`-release' is ignored for programs" + func_warning "'-release' is ignored for programs" - test "$preload" = yes \ - && test "$dlopen_support" = unknown \ - && test "$dlopen_self" = unknown \ - && test "$dlopen_self_static" = unknown && \ - func_warning "\`LT_INIT([dlopen])' not used. Assuming no dlopen support." + $preload \ + && test unknown,unknown,unknown = "$dlopen_support,$dlopen_self,$dlopen_self_static" \ + && func_warning "'LT_INIT([dlopen])' not used. Assuming no dlopen support." case $host in *-*-rhapsody* | *-*-darwin1.[012]) @@ -9153,11 +10724,11 @@ EOF *-*-darwin*) # Don't allow lazy linking, it breaks C++ global constructors # But is supposedly fixed on 10.4 or later (yay!). - if test "$tagname" = CXX ; then + if test CXX = "$tagname"; then case ${MACOSX_DEPLOYMENT_TARGET-10.0} in 10.[0123]) - compile_command+=" ${wl}-bind_at_load" - finalize_command+=" ${wl}-bind_at_load" + func_append compile_command " $wl-bind_at_load" + func_append finalize_command " $wl-bind_at_load" ;; esac fi @@ -9177,7 +10748,7 @@ EOF *) case " $compile_deplibs " in *" -L$path/$objdir "*) - new_libs+=" -L$path/$objdir" ;; + func_append new_libs " -L$path/$objdir" ;; esac ;; esac @@ -9187,17 +10758,17 @@ EOF -L*) case " $new_libs " in *" $deplib "*) ;; - *) new_libs+=" $deplib" ;; + *) func_append new_libs " $deplib" ;; esac ;; - *) new_libs+=" $deplib" ;; + *) func_append new_libs " $deplib" ;; esac done - compile_deplibs="$new_libs" + compile_deplibs=$new_libs - compile_command+=" $compile_deplibs" - finalize_command+=" $finalize_deplibs" + func_append compile_command " $compile_deplibs" + func_append finalize_command " $finalize_deplibs" if test -n "$rpath$xrpath"; then # If the user specified any rpath flags, then add them. @@ -9205,7 +10776,7 @@ EOF # This is the magic to use -rpath. case "$finalize_rpath " in *" $libdir "*) ;; - *) finalize_rpath+=" $libdir" ;; + *) func_append finalize_rpath " $libdir" ;; esac done fi @@ -9217,39 +10788,39 @@ EOF if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then - hardcode_libdirs="$libdir" + hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) - hardcode_libdirs+="$hardcode_libdir_separator$libdir" + func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" - rpath+=" $flag" + func_append rpath " $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; - *) perm_rpath+=" $libdir" ;; + *) func_append perm_rpath " $libdir" ;; esac fi case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) - testbindir=`${ECHO} "$libdir" | ${SED} -e 's*/lib$*/bin*'` + testbindir=`$ECHO "$libdir" | $SED -e 's*/lib$*/bin*'` case :$dllsearchpath: in *":$libdir:"*) ;; ::) dllsearchpath=$libdir;; - *) dllsearchpath+=":$libdir";; + *) func_append dllsearchpath ":$libdir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; - *) dllsearchpath+=":$testbindir";; + *) func_append dllsearchpath ":$testbindir";; esac ;; esac @@ -9257,10 +10828,10 @@ EOF # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then - libdir="$hardcode_libdirs" + libdir=$hardcode_libdirs eval rpath=\" $hardcode_libdir_flag_spec\" fi - compile_rpath="$rpath" + compile_rpath=$rpath rpath= hardcode_libdirs= @@ -9268,70 +10839,68 @@ EOF if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then - hardcode_libdirs="$libdir" + hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) - hardcode_libdirs+="$hardcode_libdir_separator$libdir" + func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" - rpath+=" $flag" + func_append rpath " $flag" fi elif test -n "$runpath_var"; then case "$finalize_perm_rpath " in *" $libdir "*) ;; - *) finalize_perm_rpath+=" $libdir" ;; + *) func_append finalize_perm_rpath " $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then - libdir="$hardcode_libdirs" + libdir=$hardcode_libdirs eval rpath=\" $hardcode_libdir_flag_spec\" fi - finalize_rpath="$rpath" + finalize_rpath=$rpath - if test -n "$libobjs" && test "$build_old_libs" = yes; then + if test -n "$libobjs" && test yes = "$build_old_libs"; then # Transform all the library objects into standard objects. compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP` finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP` fi - func_generate_dlsyms "$outputname" "@PROGRAM@" "no" + func_generate_dlsyms "$outputname" "@PROGRAM@" false # template prelinking step if test -n "$prelink_cmds"; then func_execute_cmds "$prelink_cmds" 'exit $?' fi - wrappers_required=yes + wrappers_required=: case $host in *cegcc* | *mingw32ce*) # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway. - wrappers_required=no + wrappers_required=false ;; *cygwin* | *mingw* ) - if test "$build_libtool_libs" != yes; then - wrappers_required=no - fi + test yes = "$build_libtool_libs" || wrappers_required=false ;; *) - if test "$need_relink" = no || test "$build_libtool_libs" != yes; then - wrappers_required=no + if test no = "$need_relink" || test yes != "$build_libtool_libs"; then + wrappers_required=false fi ;; esac - if test "$wrappers_required" = no; then + $wrappers_required || { # Replace the output file specification. compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'` - link_command="$compile_command$compile_rpath" + link_command=$compile_command$compile_rpath # We have no uninstalled library dependencies, so finalize right now. exit_status=0 @@ -9344,12 +10913,12 @@ EOF fi # Delete the generated files. - if test -f "$output_objdir/${outputname}S.${objext}"; then - func_show_eval '$RM "$output_objdir/${outputname}S.${objext}"' + if test -f "$output_objdir/${outputname}S.$objext"; then + func_show_eval '$RM "$output_objdir/${outputname}S.$objext"' fi exit $exit_status - fi + } if test -n "$compile_shlibpath$finalize_shlibpath"; then compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" @@ -9365,7 +10934,7 @@ EOF # We should set the runpath_var. rpath= for dir in $perm_rpath; do - rpath+="$dir:" + func_append rpath "$dir:" done compile_var="$runpath_var=\"$rpath\$$runpath_var\" " fi @@ -9373,15 +10942,15 @@ EOF # We should set the runpath_var. rpath= for dir in $finalize_perm_rpath; do - rpath+="$dir:" + func_append rpath "$dir:" done finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " fi fi - if test "$no_install" = yes; then + if test yes = "$no_install"; then # We don't need to create a wrapper script. - link_command="$compile_var$compile_command$compile_rpath" + link_command=$compile_var$compile_command$compile_rpath # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'` # Delete the old output file. @@ -9398,27 +10967,28 @@ EOF exit $EXIT_SUCCESS fi - if test "$hardcode_action" = relink; then - # Fast installation is not supported - link_command="$compile_var$compile_command$compile_rpath" - relink_command="$finalize_var$finalize_command$finalize_rpath" + case $hardcode_action,$fast_install in + relink,*) + # Fast installation is not supported + link_command=$compile_var$compile_command$compile_rpath + relink_command=$finalize_var$finalize_command$finalize_rpath - func_warning "this platform does not like uninstalled shared libraries" - func_warning "\`$output' will be relinked during installation" - else - if test "$fast_install" != no; then - link_command="$finalize_var$compile_command$finalize_rpath" - if test "$fast_install" = yes; then - relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` - else - # fast_install is set to needless - relink_command= - fi - else - link_command="$compile_var$compile_command$compile_rpath" - relink_command="$finalize_var$finalize_command$finalize_rpath" - fi - fi + func_warning "this platform does not like uninstalled shared libraries" + func_warning "'$output' will be relinked during installation" + ;; + *,yes) + link_command=$finalize_var$compile_command$finalize_rpath + relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` + ;; + *,no) + link_command=$compile_var$compile_command$compile_rpath + relink_command=$finalize_var$finalize_command$finalize_rpath + ;; + *,needless) + link_command=$finalize_var$compile_command$finalize_rpath + relink_command= + ;; + esac # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` @@ -9475,8 +11045,8 @@ EOF func_dirname_and_basename "$output" "" "." output_name=$func_basename_result output_path=$func_dirname_result - cwrappersource="$output_path/$objdir/lt-$output_name.c" - cwrapper="$output_path/$output_name.exe" + cwrappersource=$output_path/$objdir/lt-$output_name.c + cwrapper=$output_path/$output_name.exe $RM $cwrappersource $cwrapper trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 @@ -9497,7 +11067,7 @@ EOF trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15 $opt_dry_run || { # note: this script will not be executed, so do not chmod. - if test "x$build" = "x$host" ; then + if test "x$build" = "x$host"; then $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result else func_emit_wrapper no > $func_ltwrapper_scriptname_result @@ -9520,43 +11090,45 @@ EOF # See if we need to build an old-fashioned archive. for oldlib in $oldlibs; do - if test "$build_libtool_libs" = convenience; then - oldobjs="$libobjs_save $symfileobj" - addlibs="$convenience" - build_libtool_libs=no - else - if test "$build_libtool_libs" = module; then - oldobjs="$libobjs_save" + case $build_libtool_libs in + convenience) + oldobjs="$libobjs_save $symfileobj" + addlibs=$convenience build_libtool_libs=no - else + ;; + module) + oldobjs=$libobjs_save + addlibs=$old_convenience + build_libtool_libs=no + ;; + *) oldobjs="$old_deplibs $non_pic_objects" - if test "$preload" = yes && test -f "$symfileobj"; then - oldobjs+=" $symfileobj" - fi - fi - addlibs="$old_convenience" - fi + $preload && test -f "$symfileobj" \ + && func_append oldobjs " $symfileobj" + addlibs=$old_convenience + ;; + esac if test -n "$addlibs"; then - gentop="$output_objdir/${outputname}x" - generated+=" $gentop" + gentop=$output_objdir/${outputname}x + func_append generated " $gentop" func_extract_archives $gentop $addlibs - oldobjs+=" $func_extract_archives_result" + func_append oldobjs " $func_extract_archives_result" fi # Do each command in the archive commands. - if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then + if test -n "$old_archive_from_new_cmds" && test yes = "$build_libtool_libs"; then cmds=$old_archive_from_new_cmds else # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then - gentop="$output_objdir/${outputname}x" - generated+=" $gentop" + gentop=$output_objdir/${outputname}x + func_append generated " $gentop" func_extract_archives $gentop $dlprefiles - oldobjs+=" $func_extract_archives_result" + func_append oldobjs " $func_extract_archives_result" fi # POSIX demands no paths to be encoded in archives. We have @@ -9573,8 +11145,8 @@ EOF : else echo "copying selected object files to avoid basename conflicts..." - gentop="$output_objdir/${outputname}x" - generated+=" $gentop" + gentop=$output_objdir/${outputname}x + func_append generated " $gentop" func_mkdir_p "$gentop" save_oldobjs=$oldobjs oldobjs= @@ -9582,7 +11154,7 @@ EOF for obj in $save_oldobjs do func_basename "$obj" - objbase="$func_basename_result" + objbase=$func_basename_result case " $oldobjs " in " ") oldobjs=$obj ;; *[\ /]"$objbase "*) @@ -9598,9 +11170,9 @@ EOF esac done func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" - oldobjs+=" $gentop/$newobj" + func_append oldobjs " $gentop/$newobj" ;; - *) oldobjs+=" $obj" ;; + *) func_append oldobjs " $obj" ;; esac done fi @@ -9645,24 +11217,24 @@ EOF func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result - objlist+=" $obj" + func_append objlist " $obj" if test "$len" -lt "$max_cmd_len"; then : else # the above command should be used before it gets too long oldobjs=$objlist - if test "$obj" = "$last_oldobj" ; then + if test "$obj" = "$last_oldobj"; then RANLIB=$save_RANLIB fi test -z "$concat_cmds" || concat_cmds=$concat_cmds~ - eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\" + eval concat_cmds=\"\$concat_cmds$old_archive_cmds\" objlist= len=$len0 fi done RANLIB=$save_RANLIB oldobjs=$objlist - if test "X$oldobjs" = "X" ; then + if test -z "$oldobjs"; then eval cmds=\"\$concat_cmds\" else eval cmds=\"\$concat_cmds~\$old_archive_cmds\" @@ -9679,7 +11251,7 @@ EOF case $output in *.la) old_library= - test "$build_old_libs" = yes && old_library="$libname.$libext" + test yes = "$build_old_libs" && old_library=$libname.$libext func_verbose "creating $output" # Preserve any variables that may affect compiler behavior @@ -9694,63 +11266,63 @@ EOF fi done # Quote the link command for shipping. - relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" + relink_command="(cd `pwd`; $SHELL \"$progpath\" $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` - if test "$hardcode_automatic" = yes ; then + if test yes = "$hardcode_automatic"; then relink_command= fi # Only create the output if not a dry run. $opt_dry_run || { for installed in no yes; do - if test "$installed" = yes; then + if test yes = "$installed"; then if test -z "$install_libdir"; then break fi - output="$output_objdir/$outputname"i + output=$output_objdir/${outputname}i # Replace all uninstalled libtool libraries with the installed ones newdependency_libs= for deplib in $dependency_libs; do case $deplib in *.la) func_basename "$deplib" - name="$func_basename_result" + name=$func_basename_result func_resolve_sysroot "$deplib" - eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result` + eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result` test -z "$libdir" && \ - func_fatal_error "\`$deplib' is not a valid libtool archive" - newdependency_libs+=" ${lt_sysroot:+=}$libdir/$name" + func_fatal_error "'$deplib' is not a valid libtool archive" + func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name" ;; -L*) func_stripname -L '' "$deplib" func_replace_sysroot "$func_stripname_result" - newdependency_libs+=" -L$func_replace_sysroot_result" + func_append newdependency_libs " -L$func_replace_sysroot_result" ;; -R*) func_stripname -R '' "$deplib" func_replace_sysroot "$func_stripname_result" - newdependency_libs+=" -R$func_replace_sysroot_result" + func_append newdependency_libs " -R$func_replace_sysroot_result" ;; - *) newdependency_libs+=" $deplib" ;; + *) func_append newdependency_libs " $deplib" ;; esac done - dependency_libs="$newdependency_libs" + dependency_libs=$newdependency_libs newdlfiles= for lib in $dlfiles; do case $lib in *.la) func_basename "$lib" - name="$func_basename_result" - eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` + name=$func_basename_result + eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ - func_fatal_error "\`$lib' is not a valid libtool archive" - newdlfiles+=" ${lt_sysroot:+=}$libdir/$name" + func_fatal_error "'$lib' is not a valid libtool archive" + func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name" ;; - *) newdlfiles+=" $lib" ;; + *) func_append newdlfiles " $lib" ;; esac done - dlfiles="$newdlfiles" + dlfiles=$newdlfiles newdlprefiles= for lib in $dlprefiles; do case $lib in @@ -9760,34 +11332,34 @@ EOF # didn't already link the preopened objects directly into # the library: func_basename "$lib" - name="$func_basename_result" - eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` + name=$func_basename_result + eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ - func_fatal_error "\`$lib' is not a valid libtool archive" - newdlprefiles+=" ${lt_sysroot:+=}$libdir/$name" + func_fatal_error "'$lib' is not a valid libtool archive" + func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name" ;; esac done - dlprefiles="$newdlprefiles" + dlprefiles=$newdlprefiles else newdlfiles= for lib in $dlfiles; do case $lib in - [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; + [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;; *) abs=`pwd`"/$lib" ;; esac - newdlfiles+=" $abs" + func_append newdlfiles " $abs" done - dlfiles="$newdlfiles" + dlfiles=$newdlfiles newdlprefiles= for lib in $dlprefiles; do case $lib in - [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; + [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;; *) abs=`pwd`"/$lib" ;; esac - newdlprefiles+=" $abs" + func_append newdlprefiles " $abs" done - dlprefiles="$newdlprefiles" + dlprefiles=$newdlprefiles fi $RM $output # place dlname in correct position for cygwin @@ -9803,10 +11375,9 @@ EOF case $host,$output,$installed,$module,$dlname in *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) # If a -bindir argument was supplied, place the dll there. - if test "x$bindir" != x ; - then + if test -n "$bindir"; then func_relative_path "$install_libdir" "$bindir" - tdlname=$func_relative_path_result$dlname + tdlname=$func_relative_path_result/$dlname else # Otherwise fall back on heuristic. tdlname=../bin/$dlname @@ -9815,7 +11386,7 @@ EOF esac $ECHO > $output "\ # $outputname - a libtool library file -# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION +# Generated by $PROGRAM (GNU $PACKAGE) $VERSION # # Please DO NOT delete this file! # It is necessary for linking the library. @@ -9829,7 +11400,7 @@ library_names='$library_names' # The name of the static archive. old_library='$old_library' -# Linker flags that can not go in dependency_libs. +# Linker flags that cannot go in dependency_libs. inherited_linker_flags='$new_inherited_linker_flags' # Libraries that this one depends upon. @@ -9855,7 +11426,7 @@ dlpreopen='$dlprefiles' # Directory that this library needs to be installed in: libdir='$install_libdir'" - if test "$installed" = no && test "$need_relink" = yes; then + if test no,yes = "$installed,$need_relink"; then $ECHO >> $output "\ relink_command=\"$relink_command\"" fi @@ -9870,29 +11441,31 @@ relink_command=\"$relink_command\"" exit $EXIT_SUCCESS } -{ test "$opt_mode" = link || test "$opt_mode" = relink; } && - func_mode_link ${1+"$@"} +if test link = "$opt_mode" || test relink = "$opt_mode"; then + func_mode_link ${1+"$@"} +fi # func_mode_uninstall arg... func_mode_uninstall () { - $opt_debug - RM="$nonopt" + $debug_cmd + + RM=$nonopt files= - rmforce= + rmforce=false exit_status=0 # This variable tells wrapper scripts just to set variables rather # than running their programs. - libtool_install_magic="$magic" + libtool_install_magic=$magic for arg do case $arg in - -f) RM+=" $arg"; rmforce=yes ;; - -*) RM+=" $arg" ;; - *) files+=" $arg" ;; + -f) func_append RM " $arg"; rmforce=: ;; + -*) func_append RM " $arg" ;; + *) func_append files " $arg" ;; esac done @@ -9903,21 +11476,21 @@ func_mode_uninstall () for file in $files; do func_dirname "$file" "" "." - dir="$func_dirname_result" - if test "X$dir" = X.; then - odir="$objdir" + dir=$func_dirname_result + if test . = "$dir"; then + odir=$objdir else - odir="$dir/$objdir" + odir=$dir/$objdir fi func_basename "$file" - name="$func_basename_result" - test "$opt_mode" = uninstall && odir="$dir" + name=$func_basename_result + test uninstall = "$opt_mode" && odir=$dir # Remember odir for removal later, being careful to avoid duplicates - if test "$opt_mode" = clean; then + if test clean = "$opt_mode"; then case " $rmdirs " in *" $odir "*) ;; - *) rmdirs+=" $odir" ;; + *) func_append rmdirs " $odir" ;; esac fi @@ -9929,11 +11502,11 @@ func_mode_uninstall () elif test -d "$file"; then exit_status=1 continue - elif test "$rmforce" = yes; then + elif $rmforce; then continue fi - rmfiles="$file" + rmfiles=$file case $name in *.la) @@ -9943,27 +11516,27 @@ func_mode_uninstall () # Delete the libtool libraries and symlinks. for n in $library_names; do - rmfiles+=" $odir/$n" + func_append rmfiles " $odir/$n" done - test -n "$old_library" && rmfiles+=" $odir/$old_library" + test -n "$old_library" && func_append rmfiles " $odir/$old_library" - case "$opt_mode" in + case $opt_mode in clean) case " $library_names " in *" $dlname "*) ;; - *) test -n "$dlname" && rmfiles+=" $odir/$dlname" ;; + *) test -n "$dlname" && func_append rmfiles " $odir/$dlname" ;; esac - test -n "$libdir" && rmfiles+=" $odir/$name $odir/${name}i" + test -n "$libdir" && func_append rmfiles " $odir/$name $odir/${name}i" ;; uninstall) if test -n "$library_names"; then # Do each command in the postuninstall commands. - func_execute_cmds "$postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' + func_execute_cmds "$postuninstall_cmds" '$rmforce || exit_status=1' fi if test -n "$old_library"; then # Do each command in the old_postuninstall commands. - func_execute_cmds "$old_postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' + func_execute_cmds "$old_postuninstall_cmds" '$rmforce || exit_status=1' fi # FIXME: should reinstall the best remaining shared library. ;; @@ -9979,21 +11552,19 @@ func_mode_uninstall () func_source $dir/$name # Add PIC object to the list of files to remove. - if test -n "$pic_object" && - test "$pic_object" != none; then - rmfiles+=" $dir/$pic_object" + if test -n "$pic_object" && test none != "$pic_object"; then + func_append rmfiles " $dir/$pic_object" fi # Add non-PIC object to the list of files to remove. - if test -n "$non_pic_object" && - test "$non_pic_object" != none; then - rmfiles+=" $dir/$non_pic_object" + if test -n "$non_pic_object" && test none != "$non_pic_object"; then + func_append rmfiles " $dir/$non_pic_object" fi fi ;; *) - if test "$opt_mode" = clean ; then + if test clean = "$opt_mode"; then noexename=$name case $file in *.exe) @@ -10003,7 +11574,7 @@ func_mode_uninstall () noexename=$func_stripname_result # $file with .exe has already been added to rmfiles, # add $file without .exe - rmfiles+=" $file" + func_append rmfiles " $file" ;; esac # Do a test to see if this is a libtool program. @@ -10012,7 +11583,7 @@ func_mode_uninstall () func_ltwrapper_scriptname "$file" relink_command= func_source $func_ltwrapper_scriptname_result - rmfiles+=" $func_ltwrapper_scriptname_result" + func_append rmfiles " $func_ltwrapper_scriptname_result" else relink_command= func_source $dir/$noexename @@ -10020,12 +11591,12 @@ func_mode_uninstall () # note $name still contains .exe if it was in $file originally # as does the version of $file that was added into $rmfiles - rmfiles+=" $odir/$name $odir/${name}S.${objext}" - if test "$fast_install" = yes && test -n "$relink_command"; then - rmfiles+=" $odir/lt-$name" + func_append rmfiles " $odir/$name $odir/${name}S.$objext" + if test yes = "$fast_install" && test -n "$relink_command"; then + func_append rmfiles " $odir/lt-$name" fi - if test "X$noexename" != "X$name" ; then - rmfiles+=" $odir/lt-${noexename}.c" + if test "X$noexename" != "X$name"; then + func_append rmfiles " $odir/lt-$noexename.c" fi fi fi @@ -10034,7 +11605,7 @@ func_mode_uninstall () func_show_eval "$RM $rmfiles" 'exit_status=1' done - # Try to remove the ${objdir}s in the directories where we deleted files + # Try to remove the $objdir's in the directories where we deleted files for dir in $rmdirs; do if test -d "$dir"; then func_show_eval "rmdir $dir >/dev/null 2>&1" @@ -10044,16 +11615,17 @@ func_mode_uninstall () exit $exit_status } -{ test "$opt_mode" = uninstall || test "$opt_mode" = clean; } && - func_mode_uninstall ${1+"$@"} +if test uninstall = "$opt_mode" || test clean = "$opt_mode"; then + func_mode_uninstall ${1+"$@"} +fi test -z "$opt_mode" && { - help="$generic_help" + help=$generic_help func_fatal_help "you must specify a MODE" } test -z "$exec_cmd" && \ - func_fatal_help "invalid operation mode \`$opt_mode'" + func_fatal_help "invalid operation mode '$opt_mode'" if test -n "$exec_cmd"; then eval exec "$exec_cmd" @@ -10064,7 +11636,7 @@ exit $exit_status # The TAGs below are defined such that we never get into a situation -# in which we disable both kinds of libraries. Given conflicting +# where we disable both kinds of libraries. Given conflicting # choices, we go for a static library, that is the most portable, # since we can't tell whether shared libraries were disabled because # the user asked for that or because the platform doesn't support @@ -10087,8 +11659,6 @@ build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` # mode:shell-script # sh-indentation:2 # End: -# vi:sw=2 - # ### BEGIN LIBTOOL TAG CONFIG: CXX @@ -10130,10 +11700,10 @@ build_libtool_need_lc=no allow_libtool_libs_with_static_runtimes=no # Compiler flag to allow reflexive dlopens. -export_dynamic_flag_spec="\${wl}--export-dynamic" +export_dynamic_flag_spec="\$wl--export-dynamic" # Compiler flag to generate shared objects directly from archives. -whole_archive_flag_spec="\${wl}--whole-archive\$convenience \${wl}--no-whole-archive" +whole_archive_flag_spec="\$wl--whole-archive\$convenience \$wl--no-whole-archive" # Whether the compiler copes with passing no objects directly. compiler_needs_object="no" @@ -10145,8 +11715,8 @@ old_archive_from_new_cmds="" old_archive_from_expsyms_cmds="" # Commands used to build a shared archive. -archive_cmds="\$CC \$pic_flag -shared -nostdlib \$predep_objects \$libobjs \$deplibs \$postdep_objects \$compiler_flags \${wl}-soname \$wl\$soname -o \$lib" -archive_expsym_cmds="\$CC \$pic_flag -shared -nostdlib \$predep_objects \$libobjs \$deplibs \$postdep_objects \$compiler_flags \${wl}-soname \$wl\$soname \${wl}-retain-symbols-file \$wl\$export_symbols -o \$lib" +archive_cmds="\$CC \$pic_flag -shared -nostdlib \$predep_objects \$libobjs \$deplibs \$postdep_objects \$compiler_flags \$wl-soname \$wl\$soname -o \$lib" +archive_expsym_cmds="\$CC \$pic_flag -shared -nostdlib \$predep_objects \$libobjs \$deplibs \$postdep_objects \$compiler_flags \$wl-soname \$wl\$soname \$wl-retain-symbols-file \$wl\$export_symbols -o \$lib" # Commands used to build a loadable module if different from building # a shared archive. @@ -10164,18 +11734,18 @@ no_undefined_flag="" # Flag to hardcode $libdir into a binary during linking. # This must work even if $libdir does not exist -hardcode_libdir_flag_spec="\${wl}-rpath \${wl}\$libdir" +hardcode_libdir_flag_spec="\$wl-rpath \$wl\$libdir" # Whether we need a single "-rpath" flag with a separated argument. hardcode_libdir_separator="" -# Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes +# Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes # DIR into the resulting binary. hardcode_direct=no -# Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes +# Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes # DIR into the resulting binary and the resulting library dependency is -# "absolute",i.e impossible to change by setting ${shlibpath_var} if the +# "absolute",i.e impossible to change by setting $shlibpath_var if the # library is relocated. hardcode_direct_absolute=no @@ -10224,17 +11794,17 @@ file_list_spec="" hardcode_action=immediate # The directories searched by this compiler when creating a shared library. -compiler_lib_search_dirs="/usr/lib/gcc/x86_64-redhat-linux/4.8.5 /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64 /lib/../lib64 /usr/lib/../lib64 /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../.." +compiler_lib_search_dirs="/usr/lib/gcc/x86_64-redhat-linux/8 /usr/lib/gcc/x86_64-redhat-linux/8/../../../../lib64 /lib/../lib64 /usr/lib/../lib64 /usr/lib/gcc/x86_64-redhat-linux/8/../../.." # Dependencies to place before and after the objects being linked to # create a shared library. -predep_objects="/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crti.o /usr/lib/gcc/x86_64-redhat-linux/4.8.5/crtbeginS.o" -postdep_objects="/usr/lib/gcc/x86_64-redhat-linux/4.8.5/crtendS.o /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crtn.o" +predep_objects="/usr/lib/gcc/x86_64-redhat-linux/8/../../../../lib64/crti.o /usr/lib/gcc/x86_64-redhat-linux/8/crtbeginS.o" +postdep_objects="/usr/lib/gcc/x86_64-redhat-linux/8/crtendS.o /usr/lib/gcc/x86_64-redhat-linux/8/../../../../lib64/crtn.o" predeps="" postdeps="-lstdc++ -lm -lgcc_s -lc -lgcc_s" # The library search path used internally by the compiler when linking # a shared library. -compiler_lib_search_path="-L/usr/lib/gcc/x86_64-redhat-linux/4.8.5 -L/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../.." +compiler_lib_search_path="-L/usr/lib/gcc/x86_64-redhat-linux/8 -L/usr/lib/gcc/x86_64-redhat-linux/8/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/usr/lib/gcc/x86_64-redhat-linux/8/../../.." # ### END LIBTOOL TAG CONFIG: CXX diff --git a/coregrade/src/ltmain.sh b/coregrade/src/ltmain.sh index 63ae69d..30be9c8 100644 --- a/coregrade/src/ltmain.sh +++ b/coregrade/src/ltmain.sh @@ -1,9 +1,12 @@ +#! /bin/sh +## DO NOT EDIT - This file generated from ./build-aux/ltmain.in +## by inline-source v2014-01-03.01 -# libtool (GNU libtool) 2.4.2 +# libtool (GNU libtool) 2.4.6 +# Provide generalized library-building support services. # Written by Gordon Matzigkeit , 1996 -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, -# 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. +# Copyright (C) 1996-2015 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. @@ -23,166 +26,670 @@ # General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with GNU Libtool; see the file COPYING. If not, a copy -# can be downloaded from http://www.gnu.org/licenses/gpl.html, -# or obtained by writing to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# along with this program. If not, see . -# Usage: $progname [OPTION]... [MODE-ARG]... -# -# Provide generalized library-building support services. -# -# --config show all configuration variables -# --debug enable verbose shell tracing -# -n, --dry-run display commands without modifying any files -# --features display basic configuration information and exit -# --mode=MODE use operation mode MODE -# --preserve-dup-deps don't remove duplicate dependency libraries -# --quiet, --silent don't print informational messages -# --no-quiet, --no-silent -# print informational messages (default) -# --no-warn don't display warning messages -# --tag=TAG use configuration variables from tag TAG -# -v, --verbose print more informational messages than default -# --no-verbose don't print the extra informational messages -# --version print version information -# -h, --help, --help-all print short, long, or detailed help message -# -# MODE must be one of the following: -# -# clean remove files from the build directory -# compile compile a source file into a libtool object -# execute automatically set library path, then run a program -# finish complete the installation of libtool libraries -# install install libraries or executables -# link create a library or an executable -# uninstall remove libraries from an installed directory -# -# MODE-ARGS vary depending on the MODE. When passed as first option, -# `--mode=MODE' may be abbreviated as `MODE' or a unique abbreviation of that. -# Try `$progname --help --mode=MODE' for a more detailed description of MODE. -# -# When reporting a bug, please describe a test case to reproduce it and -# include the following information: -# -# host-triplet: $host -# shell: $SHELL -# compiler: $LTCC -# compiler flags: $LTCFLAGS -# linker: $LD (gnu? $with_gnu_ld) -# $progname: (GNU libtool) 2.4.2 -# automake: $automake_version -# autoconf: $autoconf_version -# -# Report bugs to . -# GNU libtool home page: . -# General help using GNU software: . PROGRAM=libtool PACKAGE=libtool -VERSION=2.4.2 -TIMESTAMP="" -package_revision=1.3337 +VERSION=2.4.6 +package_revision=2.4.6 -# Be Bourne compatible -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + +## ------ ## +## Usage. ## +## ------ ## + +# Run './libtool --help' for help with using this script from the +# command line. + + +## ------------------------------- ## +## User overridable command paths. ## +## ------------------------------- ## + +# After configure completes, it has a better idea of some of the +# shell tools we need than the defaults used by the functions shared +# with bootstrap, so set those here where they can still be over- +# ridden by the user, but otherwise take precedence. + +: ${AUTOCONF="autoconf"} +: ${AUTOMAKE="automake"} + + +## -------------------------- ## +## Source external libraries. ## +## -------------------------- ## + +# Much of our low-level functionality needs to be sourced from external +# libraries, which are installed to $pkgauxdir. + +# Set a version string for this script. +scriptversion=2015-01-20.17; # UTC + +# General shell script boiler plate, and helper functions. +# Written by Gary V. Vaughan, 2004 + +# Copyright (C) 2004-2015 Free Software Foundation, Inc. +# This is free software; see the source for copying conditions. There is NO +# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. + +# As a special exception to the GNU General Public License, if you distribute +# this file as part of a program or library that is built using GNU Libtool, +# you may include this file under the same distribution terms that you use +# for the rest of that program. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNES FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# Please report bugs or propose patches to gary@gnu.org. + + +## ------ ## +## Usage. ## +## ------ ## + +# Evaluate this file near the top of your script to gain access to +# the functions and variables defined here: +# +# . `echo "$0" | ${SED-sed} 's|[^/]*$||'`/build-aux/funclib.sh +# +# If you need to override any of the default environment variable +# settings, do that before evaluating this file. + + +## -------------------- ## +## Shell normalisation. ## +## -------------------- ## + +# Some shells need a little help to be as Bourne compatible as possible. +# Before doing anything else, make sure all that help has been provided! + +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else - case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac + case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac fi -BIN_SH=xpg4; export BIN_SH # for Tru64 -DUALCASE=1; export DUALCASE # for MKS sh -# A function that is used when there is no print builtin or printf. -func_fallback_echo () -{ - eval 'cat <<_LTECHO_EOF -$1 -_LTECHO_EOF' -} - -# NLS nuisances: We save the old values to restore during execute mode. -lt_user_locale= -lt_safe_locale= -for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES +# NLS nuisances: We save the old values in case they are required later. +_G_user_locale= +_G_safe_locale= +for _G_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do - eval "if test \"\${$lt_var+set}\" = set; then - save_$lt_var=\$$lt_var - $lt_var=C - export $lt_var - lt_user_locale=\"$lt_var=\\\$save_\$lt_var; \$lt_user_locale\" - lt_safe_locale=\"$lt_var=C; \$lt_safe_locale\" + eval "if test set = \"\${$_G_var+set}\"; then + save_$_G_var=\$$_G_var + $_G_var=C + export $_G_var + _G_user_locale=\"$_G_var=\\\$save_\$_G_var; \$_G_user_locale\" + _G_safe_locale=\"$_G_var=C; \$_G_safe_locale\" fi" done -LC_ALL=C -LANGUAGE=C -export LANGUAGE LC_ALL -$lt_unset CDPATH +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH +# Make sure IFS has a sensible default +sp=' ' +nl=' +' +IFS="$sp $nl" + +# There are apparently some retarded systems that use ';' as a PATH separator! +if test "${PATH_SEPARATOR+set}" != set; then + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } +fi + + + +## ------------------------- ## +## Locate command utilities. ## +## ------------------------- ## + + +# func_executable_p FILE +# ---------------------- +# Check that FILE is an executable regular file. +func_executable_p () +{ + test -f "$1" && test -x "$1" +} + + +# func_path_progs PROGS_LIST CHECK_FUNC [PATH] +# -------------------------------------------- +# Search for either a program that responds to --version with output +# containing "GNU", or else returned by CHECK_FUNC otherwise, by +# trying all the directories in PATH with each of the elements of +# PROGS_LIST. +# +# CHECK_FUNC should accept the path to a candidate program, and +# set $func_check_prog_result if it truncates its output less than +# $_G_path_prog_max characters. +func_path_progs () +{ + _G_progs_list=$1 + _G_check_func=$2 + _G_PATH=${3-"$PATH"} + + _G_path_prog_max=0 + _G_path_prog_found=false + _G_save_IFS=$IFS; IFS=${PATH_SEPARATOR-:} + for _G_dir in $_G_PATH; do + IFS=$_G_save_IFS + test -z "$_G_dir" && _G_dir=. + for _G_prog_name in $_G_progs_list; do + for _exeext in '' .EXE; do + _G_path_prog=$_G_dir/$_G_prog_name$_exeext + func_executable_p "$_G_path_prog" || continue + case `"$_G_path_prog" --version 2>&1` in + *GNU*) func_path_progs_result=$_G_path_prog _G_path_prog_found=: ;; + *) $_G_check_func $_G_path_prog + func_path_progs_result=$func_check_prog_result + ;; + esac + $_G_path_prog_found && break 3 + done + done + done + IFS=$_G_save_IFS + test -z "$func_path_progs_result" && { + echo "no acceptable sed could be found in \$PATH" >&2 + exit 1 + } +} + + +# We want to be able to use the functions in this file before configure +# has figured out where the best binaries are kept, which means we have +# to search for them ourselves - except when the results are already set +# where we skip the searches. + +# Unless the user overrides by setting SED, search the path for either GNU +# sed, or the sed that truncates its output the least. +test -z "$SED" && { + _G_sed_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ + for _G_i in 1 2 3 4 5 6 7; do + _G_sed_script=$_G_sed_script$nl$_G_sed_script + done + echo "$_G_sed_script" 2>/dev/null | sed 99q >conftest.sed + _G_sed_script= + + func_check_prog_sed () + { + _G_path_prog=$1 + + _G_count=0 + printf 0123456789 >conftest.in + while : + do + cat conftest.in conftest.in >conftest.tmp + mv conftest.tmp conftest.in + cp conftest.in conftest.nl + echo '' >> conftest.nl + "$_G_path_prog" -f conftest.sed conftest.out 2>/dev/null || break + diff conftest.out conftest.nl >/dev/null 2>&1 || break + _G_count=`expr $_G_count + 1` + if test "$_G_count" -gt "$_G_path_prog_max"; then + # Best one so far, save it but keep looking for a better one + func_check_prog_result=$_G_path_prog + _G_path_prog_max=$_G_count + fi + # 10*(2^10) chars as input seems more than enough + test 10 -lt "$_G_count" && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out + } + + func_path_progs "sed gsed" func_check_prog_sed $PATH:/usr/xpg4/bin + rm -f conftest.sed + SED=$func_path_progs_result +} + + +# Unless the user overrides by setting GREP, search the path for either GNU +# grep, or the grep that truncates its output the least. +test -z "$GREP" && { + func_check_prog_grep () + { + _G_path_prog=$1 + + _G_count=0 + _G_path_prog_max=0 + printf 0123456789 >conftest.in + while : + do + cat conftest.in conftest.in >conftest.tmp + mv conftest.tmp conftest.in + cp conftest.in conftest.nl + echo 'GREP' >> conftest.nl + "$_G_path_prog" -e 'GREP$' -e '-(cannot match)-' conftest.out 2>/dev/null || break + diff conftest.out conftest.nl >/dev/null 2>&1 || break + _G_count=`expr $_G_count + 1` + if test "$_G_count" -gt "$_G_path_prog_max"; then + # Best one so far, save it but keep looking for a better one + func_check_prog_result=$_G_path_prog + _G_path_prog_max=$_G_count + fi + # 10*(2^10) chars as input seems more than enough + test 10 -lt "$_G_count" && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out + } + + func_path_progs "grep ggrep" func_check_prog_grep $PATH:/usr/xpg4/bin + GREP=$func_path_progs_result +} + + +## ------------------------------- ## +## User overridable command paths. ## +## ------------------------------- ## + +# All uppercase variable names are used for environment variables. These +# variables can be overridden by the user before calling a script that +# uses them if a suitable command of that name is not already available +# in the command search PATH. + +: ${CP="cp -f"} +: ${ECHO="printf %s\n"} +: ${EGREP="$GREP -E"} +: ${FGREP="$GREP -F"} +: ${LN_S="ln -s"} +: ${MAKE="make"} +: ${MKDIR="mkdir"} +: ${MV="mv -f"} +: ${RM="rm -f"} +: ${SHELL="${CONFIG_SHELL-/bin/sh}"} + + +## -------------------- ## +## Useful sed snippets. ## +## -------------------- ## + +sed_dirname='s|/[^/]*$||' +sed_basename='s|^.*/||' + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Same as above, but do not quote variable references. +sed_double_quote_subst='s/\(["`\\]\)/\\\1/g' + +# Sed substitution that turns a string into a regex matching for the +# string literally. +sed_make_literal_regex='s|[].[^$\\*\/]|\\&|g' + +# Sed substitution that converts a w32 file name or path +# that contains forward slashes, into one that contains +# (escaped) backslashes. A very naive implementation. +sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' + +# Re-'\' parameter expansions in output of sed_double_quote_subst that +# were '\'-ed in input to the same. If an odd number of '\' preceded a +# '$' in input to sed_double_quote_subst, that '$' was protected from +# expansion. Since each input '\' is now two '\'s, look for any number +# of runs of four '\'s followed by two '\'s and then a '$'. '\' that '$'. +_G_bs='\\' +_G_bs2='\\\\' +_G_bs4='\\\\\\\\' +_G_dollar='\$' +sed_double_backslash="\ + s/$_G_bs4/&\\ +/g + s/^$_G_bs2$_G_dollar/$_G_bs&/ + s/\\([^$_G_bs]\\)$_G_bs2$_G_dollar/\\1$_G_bs2$_G_bs$_G_dollar/g + s/\n//g" + + +## ----------------- ## +## Global variables. ## +## ----------------- ## + +# Except for the global variables explicitly listed below, the following +# functions in the '^func_' namespace, and the '^require_' namespace +# variables initialised in the 'Resource management' section, sourcing +# this file will not pollute your global namespace with anything +# else. There's no portable way to scope variables in Bourne shell +# though, so actually running these functions will sometimes place +# results into a variable named after the function, and often use +# temporary variables in the '^_G_' namespace. If you are careful to +# avoid using those namespaces casually in your sourcing script, things +# should continue to work as you expect. And, of course, you can freely +# overwrite any of the functions or variables defined here before +# calling anything to customize them. + +EXIT_SUCCESS=0 +EXIT_FAILURE=1 +EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. +EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. + +# Allow overriding, eg assuming that you follow the convention of +# putting '$debug_cmd' at the start of all your functions, you can get +# bash to show function call trace with: +# +# debug_cmd='eval echo "${FUNCNAME[0]} $*" >&2' bash your-script-name +debug_cmd=${debug_cmd-":"} +exit_cmd=: + +# By convention, finish your script with: +# +# exit $exit_status +# +# so that you can set exit_status to non-zero if you want to indicate +# something went wrong during execution without actually bailing out at +# the point of failure. +exit_status=$EXIT_SUCCESS # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh # is ksh but when the shell is invoked as "sh" and the current value of # the _XPG environment variable is not equal to 1 (one), the special # positional parameter $0, within a function call, is the name of the # function. -progpath="$0" +progpath=$0 + +# The name of this program. +progname=`$ECHO "$progpath" |$SED "$sed_basename"` + +# Make sure we have an absolute progpath for reexecution: +case $progpath in + [\\/]*|[A-Za-z]:\\*) ;; + *[\\/]*) + progdir=`$ECHO "$progpath" |$SED "$sed_dirname"` + progdir=`cd "$progdir" && pwd` + progpath=$progdir/$progname + ;; + *) + _G_IFS=$IFS + IFS=${PATH_SEPARATOR-:} + for progdir in $PATH; do + IFS=$_G_IFS + test -x "$progdir/$progname" && break + done + IFS=$_G_IFS + test -n "$progdir" || progdir=`pwd` + progpath=$progdir/$progname + ;; +esac +## ----------------- ## +## Standard options. ## +## ----------------- ## -: ${CP="cp -f"} -test "${ECHO+set}" = set || ECHO=${as_echo-'printf %s\n'} -: ${MAKE="make"} -: ${MKDIR="mkdir"} -: ${MV="mv -f"} -: ${RM="rm -f"} -: ${SHELL="${CONFIG_SHELL-/bin/sh}"} -: ${Xsed="$SED -e 1s/^X//"} +# The following options affect the operation of the functions defined +# below, and should be set appropriately depending on run-time para- +# meters passed on the command line. -# Global variables: -EXIT_SUCCESS=0 -EXIT_FAILURE=1 -EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. -EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. +opt_dry_run=false +opt_quiet=false +opt_verbose=false -exit_status=$EXIT_SUCCESS +# Categories 'all' and 'none' are always available. Append any others +# you will pass as the first argument to func_warning from your own +# code. +warning_categories= -# Make sure IFS has a sensible default -lt_nl=' -' -IFS=" $lt_nl" +# By default, display warnings according to 'opt_warning_types'. Set +# 'warning_func' to ':' to elide all warnings, or func_fatal_error to +# treat the next displayed warning as a fatal error. +warning_func=func_warn_and_continue -dirname="s,/[^/]*$,," -basename="s,^.*/,," +# Set to 'all' to display all warnings, 'none' to suppress all +# warnings, or a space delimited list of some subset of +# 'warning_categories' to display only the listed warnings. +opt_warning_types=all -# func_dirname file append nondir_replacement + +## -------------------- ## +## Resource management. ## +## -------------------- ## + +# This section contains definitions for functions that each ensure a +# particular resource (a file, or a non-empty configuration variable for +# example) is available, and if appropriate to extract default values +# from pertinent package files. Call them using their associated +# 'require_*' variable to ensure that they are executed, at most, once. +# +# It's entirely deliberate that calling these functions can set +# variables that don't obey the namespace limitations obeyed by the rest +# of this file, in order that that they be as useful as possible to +# callers. + + +# require_term_colors +# ------------------- +# Allow display of bold text on terminals that support it. +require_term_colors=func_require_term_colors +func_require_term_colors () +{ + $debug_cmd + + test -t 1 && { + # COLORTERM and USE_ANSI_COLORS environment variables take + # precedence, because most terminfo databases neglect to describe + # whether color sequences are supported. + test -n "${COLORTERM+set}" && : ${USE_ANSI_COLORS="1"} + + if test 1 = "$USE_ANSI_COLORS"; then + # Standard ANSI escape sequences + tc_reset='' + tc_bold=''; tc_standout='' + tc_red=''; tc_green='' + tc_blue=''; tc_cyan='' + else + # Otherwise trust the terminfo database after all. + test -n "`tput sgr0 2>/dev/null`" && { + tc_reset=`tput sgr0` + test -n "`tput bold 2>/dev/null`" && tc_bold=`tput bold` + tc_standout=$tc_bold + test -n "`tput smso 2>/dev/null`" && tc_standout=`tput smso` + test -n "`tput setaf 1 2>/dev/null`" && tc_red=`tput setaf 1` + test -n "`tput setaf 2 2>/dev/null`" && tc_green=`tput setaf 2` + test -n "`tput setaf 4 2>/dev/null`" && tc_blue=`tput setaf 4` + test -n "`tput setaf 5 2>/dev/null`" && tc_cyan=`tput setaf 5` + } + fi + } + + require_term_colors=: +} + + +## ----------------- ## +## Function library. ## +## ----------------- ## + +# This section contains a variety of useful functions to call in your +# scripts. Take note of the portable wrappers for features provided by +# some modern shells, which will fall back to slower equivalents on +# less featureful shells. + + +# func_append VAR VALUE +# --------------------- +# Append VALUE onto the existing contents of VAR. + + # We should try to minimise forks, especially on Windows where they are + # unreasonably slow, so skip the feature probes when bash or zsh are + # being used: + if test set = "${BASH_VERSION+set}${ZSH_VERSION+set}"; then + : ${_G_HAVE_ARITH_OP="yes"} + : ${_G_HAVE_XSI_OPS="yes"} + # The += operator was introduced in bash 3.1 + case $BASH_VERSION in + [12].* | 3.0 | 3.0*) ;; + *) + : ${_G_HAVE_PLUSEQ_OP="yes"} + ;; + esac + fi + + # _G_HAVE_PLUSEQ_OP + # Can be empty, in which case the shell is probed, "yes" if += is + # useable or anything else if it does not work. + test -z "$_G_HAVE_PLUSEQ_OP" \ + && (eval 'x=a; x+=" b"; test "a b" = "$x"') 2>/dev/null \ + && _G_HAVE_PLUSEQ_OP=yes + +if test yes = "$_G_HAVE_PLUSEQ_OP" +then + # This is an XSI compatible shell, allowing a faster implementation... + eval 'func_append () + { + $debug_cmd + + eval "$1+=\$2" + }' +else + # ...otherwise fall back to using expr, which is often a shell builtin. + func_append () + { + $debug_cmd + + eval "$1=\$$1\$2" + } +fi + + +# func_append_quoted VAR VALUE +# ---------------------------- +# Quote VALUE and append to the end of shell variable VAR, separated +# by a space. +if test yes = "$_G_HAVE_PLUSEQ_OP"; then + eval 'func_append_quoted () + { + $debug_cmd + + func_quote_for_eval "$2" + eval "$1+=\\ \$func_quote_for_eval_result" + }' +else + func_append_quoted () + { + $debug_cmd + + func_quote_for_eval "$2" + eval "$1=\$$1\\ \$func_quote_for_eval_result" + } +fi + + +# func_append_uniq VAR VALUE +# -------------------------- +# Append unique VALUE onto the existing contents of VAR, assuming +# entries are delimited by the first character of VALUE. For example: +# +# func_append_uniq options " --another-option option-argument" +# +# will only append to $options if " --another-option option-argument " +# is not already present somewhere in $options already (note spaces at +# each end implied by leading space in second argument). +func_append_uniq () +{ + $debug_cmd + + eval _G_current_value='`$ECHO $'$1'`' + _G_delim=`expr "$2" : '\(.\)'` + + case $_G_delim$_G_current_value$_G_delim in + *"$2$_G_delim"*) ;; + *) func_append "$@" ;; + esac +} + + +# func_arith TERM... +# ------------------ +# Set func_arith_result to the result of evaluating TERMs. + test -z "$_G_HAVE_ARITH_OP" \ + && (eval 'test 2 = $(( 1 + 1 ))') 2>/dev/null \ + && _G_HAVE_ARITH_OP=yes + +if test yes = "$_G_HAVE_ARITH_OP"; then + eval 'func_arith () + { + $debug_cmd + + func_arith_result=$(( $* )) + }' +else + func_arith () + { + $debug_cmd + + func_arith_result=`expr "$@"` + } +fi + + +# func_basename FILE +# ------------------ +# Set func_basename_result to FILE with everything up to and including +# the last / stripped. +if test yes = "$_G_HAVE_XSI_OPS"; then + # If this shell supports suffix pattern removal, then use it to avoid + # forking. Hide the definitions single quotes in case the shell chokes + # on unsupported syntax... + _b='func_basename_result=${1##*/}' + _d='case $1 in + */*) func_dirname_result=${1%/*}$2 ;; + * ) func_dirname_result=$3 ;; + esac' + +else + # ...otherwise fall back to using sed. + _b='func_basename_result=`$ECHO "$1" |$SED "$sed_basename"`' + _d='func_dirname_result=`$ECHO "$1" |$SED "$sed_dirname"` + if test "X$func_dirname_result" = "X$1"; then + func_dirname_result=$3 + else + func_append func_dirname_result "$2" + fi' +fi + +eval 'func_basename () +{ + $debug_cmd + + '"$_b"' +}' + + +# func_dirname FILE APPEND NONDIR_REPLACEMENT +# ------------------------------------------- # Compute the dirname of FILE. If nonempty, add APPEND to the result, # otherwise set result to NONDIR_REPLACEMENT. -func_dirname () +eval 'func_dirname () { - func_dirname_result=`$ECHO "${1}" | $SED "$dirname"` - if test "X$func_dirname_result" = "X${1}"; then - func_dirname_result="${3}" - else - func_dirname_result="$func_dirname_result${2}" - fi -} # func_dirname may be replaced by extended shell implementation + $debug_cmd + + '"$_d"' +}' -# func_basename file -func_basename () -{ - func_basename_result=`$ECHO "${1}" | $SED "$basename"` -} # func_basename may be replaced by extended shell implementation - - -# func_dirname_and_basename file append nondir_replacement -# perform func_basename and func_dirname in a single function +# func_dirname_and_basename FILE APPEND NONDIR_REPLACEMENT +# -------------------------------------------------------- +# Perform func_basename and func_dirname in a single function # call: # dirname: Compute the dirname of FILE. If nonempty, # add APPEND to the result, otherwise set result @@ -190,263 +697,327 @@ func_basename () # value returned in "$func_dirname_result" # basename: Compute filename of FILE. # value retuned in "$func_basename_result" -# Implementation must be kept synchronized with func_dirname -# and func_basename. For efficiency, we do not delegate to -# those functions but instead duplicate the functionality here. -func_dirname_and_basename () +# For efficiency, we do not delegate to the functions above but instead +# duplicate the functionality here. +eval 'func_dirname_and_basename () { - # Extract subdirectory from the argument. - func_dirname_result=`$ECHO "${1}" | $SED -e "$dirname"` - if test "X$func_dirname_result" = "X${1}"; then - func_dirname_result="${3}" - else - func_dirname_result="$func_dirname_result${2}" + $debug_cmd + + '"$_b"' + '"$_d"' +}' + + +# func_echo ARG... +# ---------------- +# Echo program name prefixed message. +func_echo () +{ + $debug_cmd + + _G_message=$* + + func_echo_IFS=$IFS + IFS=$nl + for _G_line in $_G_message; do + IFS=$func_echo_IFS + $ECHO "$progname: $_G_line" + done + IFS=$func_echo_IFS +} + + +# func_echo_all ARG... +# -------------------- +# Invoke $ECHO with all args, space-separated. +func_echo_all () +{ + $ECHO "$*" +} + + +# func_echo_infix_1 INFIX ARG... +# ------------------------------ +# Echo program name, followed by INFIX on the first line, with any +# additional lines not showing INFIX. +func_echo_infix_1 () +{ + $debug_cmd + + $require_term_colors + + _G_infix=$1; shift + _G_indent=$_G_infix + _G_prefix="$progname: $_G_infix: " + _G_message=$* + + # Strip color escape sequences before counting printable length + for _G_tc in "$tc_reset" "$tc_bold" "$tc_standout" "$tc_red" "$tc_green" "$tc_blue" "$tc_cyan" + do + test -n "$_G_tc" && { + _G_esc_tc=`$ECHO "$_G_tc" | $SED "$sed_make_literal_regex"` + _G_indent=`$ECHO "$_G_indent" | $SED "s|$_G_esc_tc||g"` + } + done + _G_indent="$progname: "`echo "$_G_indent" | $SED 's|.| |g'`" " ## exclude from sc_prohibit_nested_quotes + + func_echo_infix_1_IFS=$IFS + IFS=$nl + for _G_line in $_G_message; do + IFS=$func_echo_infix_1_IFS + $ECHO "$_G_prefix$tc_bold$_G_line$tc_reset" >&2 + _G_prefix=$_G_indent + done + IFS=$func_echo_infix_1_IFS +} + + +# func_error ARG... +# ----------------- +# Echo program name prefixed message to standard error. +func_error () +{ + $debug_cmd + + $require_term_colors + + func_echo_infix_1 " $tc_standout${tc_red}error$tc_reset" "$*" >&2 +} + + +# func_fatal_error ARG... +# ----------------------- +# Echo program name prefixed message to standard error, and exit. +func_fatal_error () +{ + $debug_cmd + + func_error "$*" + exit $EXIT_FAILURE +} + + +# func_grep EXPRESSION FILENAME +# ----------------------------- +# Check whether EXPRESSION matches any line of FILENAME, without output. +func_grep () +{ + $debug_cmd + + $GREP "$1" "$2" >/dev/null 2>&1 +} + + +# func_len STRING +# --------------- +# Set func_len_result to the length of STRING. STRING may not +# start with a hyphen. + test -z "$_G_HAVE_XSI_OPS" \ + && (eval 'x=a/b/c; + test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ + && _G_HAVE_XSI_OPS=yes + +if test yes = "$_G_HAVE_XSI_OPS"; then + eval 'func_len () + { + $debug_cmd + + func_len_result=${#1} + }' +else + func_len () + { + $debug_cmd + + func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len` + } +fi + + +# func_mkdir_p DIRECTORY-PATH +# --------------------------- +# Make sure the entire path to DIRECTORY-PATH is available. +func_mkdir_p () +{ + $debug_cmd + + _G_directory_path=$1 + _G_dir_list= + + if test -n "$_G_directory_path" && test : != "$opt_dry_run"; then + + # Protect directory names starting with '-' + case $_G_directory_path in + -*) _G_directory_path=./$_G_directory_path ;; + esac + + # While some portion of DIR does not yet exist... + while test ! -d "$_G_directory_path"; do + # ...make a list in topmost first order. Use a colon delimited + # list incase some portion of path contains whitespace. + _G_dir_list=$_G_directory_path:$_G_dir_list + + # If the last portion added has no slash in it, the list is done + case $_G_directory_path in */*) ;; *) break ;; esac + + # ...otherwise throw away the child directory and loop + _G_directory_path=`$ECHO "$_G_directory_path" | $SED -e "$sed_dirname"` + done + _G_dir_list=`$ECHO "$_G_dir_list" | $SED 's|:*$||'` + + func_mkdir_p_IFS=$IFS; IFS=: + for _G_dir in $_G_dir_list; do + IFS=$func_mkdir_p_IFS + # mkdir can fail with a 'File exist' error if two processes + # try to create one of the directories concurrently. Don't + # stop in that case! + $MKDIR "$_G_dir" 2>/dev/null || : + done + IFS=$func_mkdir_p_IFS + + # Bail out if we (or some other process) failed to create a directory. + test -d "$_G_directory_path" || \ + func_fatal_error "Failed to create '$1'" fi - func_basename_result=`$ECHO "${1}" | $SED -e "$basename"` -} # func_dirname_and_basename may be replaced by extended shell implementation +} -# func_stripname prefix suffix name -# strip PREFIX and SUFFIX off of NAME. -# PREFIX and SUFFIX must not contain globbing or regex special -# characters, hashes, percent signs, but SUFFIX may contain a leading -# dot (in which case that matches only a dot). -# func_strip_suffix prefix name -func_stripname () +# func_mktempdir [BASENAME] +# ------------------------- +# Make a temporary directory that won't clash with other running +# libtool processes, and avoids race conditions if possible. If +# given, BASENAME is the basename for that directory. +func_mktempdir () { - case ${2} in - .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; - *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; - esac -} # func_stripname may be replaced by extended shell implementation + $debug_cmd + _G_template=${TMPDIR-/tmp}/${1-$progname} + + if test : = "$opt_dry_run"; then + # Return a directory name, but don't create it in dry-run mode + _G_tmpdir=$_G_template-$$ + else + + # If mktemp works, use that first and foremost + _G_tmpdir=`mktemp -d "$_G_template-XXXXXXXX" 2>/dev/null` + + if test ! -d "$_G_tmpdir"; then + # Failing that, at least try and use $RANDOM to avoid a race + _G_tmpdir=$_G_template-${RANDOM-0}$$ + + func_mktempdir_umask=`umask` + umask 0077 + $MKDIR "$_G_tmpdir" + umask $func_mktempdir_umask + fi + + # If we're not in dry-run mode, bomb out on failure + test -d "$_G_tmpdir" || \ + func_fatal_error "cannot create temporary directory '$_G_tmpdir'" + fi + + $ECHO "$_G_tmpdir" +} -# These SED scripts presuppose an absolute path with a trailing slash. -pathcar='s,^/\([^/]*\).*$,\1,' -pathcdr='s,^/[^/]*,,' -removedotparts=':dotsl - s@/\./@/@g - t dotsl - s,/\.$,/,' -collapseslashes='s@/\{1,\}@/@g' -finalslash='s,/*$,/,' # func_normal_abspath PATH +# ------------------------ # Remove doubled-up and trailing slashes, "." path components, # and cancel out any ".." path components in PATH after making # it an absolute path. -# value returned in "$func_normal_abspath_result" func_normal_abspath () { - # Start from root dir and reassemble the path. - func_normal_abspath_result= - func_normal_abspath_tpath=$1 - func_normal_abspath_altnamespace= - case $func_normal_abspath_tpath in - "") - # Empty path, that just means $cwd. - func_stripname '' '/' "`pwd`" - func_normal_abspath_result=$func_stripname_result - return - ;; - # The next three entries are used to spot a run of precisely - # two leading slashes without using negated character classes; - # we take advantage of case's first-match behaviour. - ///*) - # Unusual form of absolute path, do nothing. - ;; - //*) - # Not necessarily an ordinary path; POSIX reserves leading '//' - # and for example Cygwin uses it to access remote file shares - # over CIFS/SMB, so we conserve a leading double slash if found. - func_normal_abspath_altnamespace=/ - ;; - /*) - # Absolute path, do nothing. - ;; - *) - # Relative path, prepend $cwd. - func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath - ;; - esac - # Cancel out all the simple stuff to save iterations. We also want - # the path to end with a slash for ease of parsing, so make sure - # there is one (and only one) here. - func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ - -e "$removedotparts" -e "$collapseslashes" -e "$finalslash"` - while :; do - # Processed it all yet? - if test "$func_normal_abspath_tpath" = / ; then - # If we ascended to the root using ".." the result may be empty now. - if test -z "$func_normal_abspath_result" ; then - func_normal_abspath_result=/ - fi - break - fi - func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ - -e "$pathcar"` - func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ - -e "$pathcdr"` - # Figure out what to do with it - case $func_normal_abspath_tcomponent in + $debug_cmd + + # These SED scripts presuppose an absolute path with a trailing slash. + _G_pathcar='s|^/\([^/]*\).*$|\1|' + _G_pathcdr='s|^/[^/]*||' + _G_removedotparts=':dotsl + s|/\./|/|g + t dotsl + s|/\.$|/|' + _G_collapseslashes='s|/\{1,\}|/|g' + _G_finalslash='s|/*$|/|' + + # Start from root dir and reassemble the path. + func_normal_abspath_result= + func_normal_abspath_tpath=$1 + func_normal_abspath_altnamespace= + case $func_normal_abspath_tpath in "") - # Trailing empty path component, ignore it. - ;; - ..) - # Parent dir; strip last assembled component from result. - func_dirname "$func_normal_abspath_result" - func_normal_abspath_result=$func_dirname_result - ;; - *) - # Actual path component, append it. - func_normal_abspath_result=$func_normal_abspath_result/$func_normal_abspath_tcomponent - ;; - esac - done - # Restore leading double-slash if one was found on entry. - func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result -} - -# func_relative_path SRCDIR DSTDIR -# generates a relative path from SRCDIR to DSTDIR, with a trailing -# slash if non-empty, suitable for immediately appending a filename -# without needing to append a separator. -# value returned in "$func_relative_path_result" -func_relative_path () -{ - func_relative_path_result= - func_normal_abspath "$1" - func_relative_path_tlibdir=$func_normal_abspath_result - func_normal_abspath "$2" - func_relative_path_tbindir=$func_normal_abspath_result - - # Ascend the tree starting from libdir - while :; do - # check if we have found a prefix of bindir - case $func_relative_path_tbindir in - $func_relative_path_tlibdir) - # found an exact match - func_relative_path_tcancelled= - break + # Empty path, that just means $cwd. + func_stripname '' '/' "`pwd`" + func_normal_abspath_result=$func_stripname_result + return ;; - $func_relative_path_tlibdir*) - # found a matching prefix - func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" - func_relative_path_tcancelled=$func_stripname_result - if test -z "$func_relative_path_result"; then - func_relative_path_result=. - fi - break + # The next three entries are used to spot a run of precisely + # two leading slashes without using negated character classes; + # we take advantage of case's first-match behaviour. + ///*) + # Unusual form of absolute path, do nothing. + ;; + //*) + # Not necessarily an ordinary path; POSIX reserves leading '//' + # and for example Cygwin uses it to access remote file shares + # over CIFS/SMB, so we conserve a leading double slash if found. + func_normal_abspath_altnamespace=/ + ;; + /*) + # Absolute path, do nothing. ;; *) - func_dirname $func_relative_path_tlibdir - func_relative_path_tlibdir=${func_dirname_result} - if test "x$func_relative_path_tlibdir" = x ; then - # Have to descend all the way to the root! - func_relative_path_result=../$func_relative_path_result - func_relative_path_tcancelled=$func_relative_path_tbindir - break - fi - func_relative_path_result=../$func_relative_path_result + # Relative path, prepend $cwd. + func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath ;; esac - done - # Now calculate path; take care to avoid doubling-up slashes. - func_stripname '' '/' "$func_relative_path_result" - func_relative_path_result=$func_stripname_result - func_stripname '/' '/' "$func_relative_path_tcancelled" - if test "x$func_stripname_result" != x ; then - func_relative_path_result=${func_relative_path_result}/${func_stripname_result} - fi - - # Normalisation. If bindir is libdir, return empty string, - # else relative path ending with a slash; either way, target - # file name can be directly appended. - if test ! -z "$func_relative_path_result"; then - func_stripname './' '' "$func_relative_path_result/" - func_relative_path_result=$func_stripname_result - fi + # Cancel out all the simple stuff to save iterations. We also want + # the path to end with a slash for ease of parsing, so make sure + # there is one (and only one) here. + func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$_G_removedotparts" -e "$_G_collapseslashes" -e "$_G_finalslash"` + while :; do + # Processed it all yet? + if test / = "$func_normal_abspath_tpath"; then + # If we ascended to the root using ".." the result may be empty now. + if test -z "$func_normal_abspath_result"; then + func_normal_abspath_result=/ + fi + break + fi + func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$_G_pathcar"` + func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$_G_pathcdr"` + # Figure out what to do with it + case $func_normal_abspath_tcomponent in + "") + # Trailing empty path component, ignore it. + ;; + ..) + # Parent dir; strip last assembled component from result. + func_dirname "$func_normal_abspath_result" + func_normal_abspath_result=$func_dirname_result + ;; + *) + # Actual path component, append it. + func_append func_normal_abspath_result "/$func_normal_abspath_tcomponent" + ;; + esac + done + # Restore leading double-slash if one was found on entry. + func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result } -# The name of this program: -func_dirname_and_basename "$progpath" -progname=$func_basename_result -# Make sure we have an absolute path for reexecution: -case $progpath in - [\\/]*|[A-Za-z]:\\*) ;; - *[\\/]*) - progdir=$func_dirname_result - progdir=`cd "$progdir" && pwd` - progpath="$progdir/$progname" - ;; - *) - save_IFS="$IFS" - IFS=${PATH_SEPARATOR-:} - for progdir in $PATH; do - IFS="$save_IFS" - test -x "$progdir/$progname" && break - done - IFS="$save_IFS" - test -n "$progdir" || progdir=`pwd` - progpath="$progdir/$progname" - ;; -esac - -# Sed substitution that helps us do robust quoting. It backslashifies -# metacharacters that are still active within double-quoted strings. -Xsed="${SED}"' -e 1s/^X//' -sed_quote_subst='s/\([`"$\\]\)/\\\1/g' - -# Same as above, but do not quote variable references. -double_quote_subst='s/\(["`\\]\)/\\\1/g' - -# Sed substitution that turns a string into a regex matching for the -# string literally. -sed_make_literal_regex='s,[].[^$\\*\/],\\&,g' - -# Sed substitution that converts a w32 file name or path -# which contains forward slashes, into one that contains -# (escaped) backslashes. A very naive implementation. -lt_sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' - -# Re-`\' parameter expansions in output of double_quote_subst that were -# `\'-ed in input to the same. If an odd number of `\' preceded a '$' -# in input to double_quote_subst, that '$' was protected from expansion. -# Since each input `\' is now two `\'s, look for any number of runs of -# four `\'s followed by two `\'s and then a '$'. `\' that '$'. -bs='\\' -bs2='\\\\' -bs4='\\\\\\\\' -dollar='\$' -sed_double_backslash="\ - s/$bs4/&\\ -/g - s/^$bs2$dollar/$bs&/ - s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g - s/\n//g" - -# Standard options: -opt_dry_run=false -opt_help=false -opt_quiet=false -opt_verbose=false -opt_warning=: - -# func_echo arg... -# Echo program name prefixed message, along with the current mode -# name if it has been set yet. -func_echo () +# func_notquiet ARG... +# -------------------- +# Echo program name prefixed message only when not in quiet mode. +func_notquiet () { - $ECHO "$progname: ${opt_mode+$opt_mode: }$*" -} + $debug_cmd -# func_verbose arg... -# Echo program name prefixed message in verbose mode only. -func_verbose () -{ - $opt_verbose && func_echo ${1+"$@"} + $opt_quiet || func_echo ${1+"$@"} # A bug in bash halts the script if the last line of a function # fails when set -e is in force, so we need another command to @@ -454,450 +1025,1113 @@ func_verbose () : } -# func_echo_all arg... -# Invoke $ECHO with all args, space-separated. -func_echo_all () -{ - $ECHO "$*" -} -# func_error arg... -# Echo program name prefixed message to standard error. -func_error () +# func_relative_path SRCDIR DSTDIR +# -------------------------------- +# Set func_relative_path_result to the relative path from SRCDIR to DSTDIR. +func_relative_path () { - $ECHO "$progname: ${opt_mode+$opt_mode: }"${1+"$@"} 1>&2 -} + $debug_cmd -# func_warning arg... -# Echo program name prefixed warning message to standard error. -func_warning () -{ - $opt_warning && $ECHO "$progname: ${opt_mode+$opt_mode: }warning: "${1+"$@"} 1>&2 + func_relative_path_result= + func_normal_abspath "$1" + func_relative_path_tlibdir=$func_normal_abspath_result + func_normal_abspath "$2" + func_relative_path_tbindir=$func_normal_abspath_result + + # Ascend the tree starting from libdir + while :; do + # check if we have found a prefix of bindir + case $func_relative_path_tbindir in + $func_relative_path_tlibdir) + # found an exact match + func_relative_path_tcancelled= + break + ;; + $func_relative_path_tlibdir*) + # found a matching prefix + func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" + func_relative_path_tcancelled=$func_stripname_result + if test -z "$func_relative_path_result"; then + func_relative_path_result=. + fi + break + ;; + *) + func_dirname $func_relative_path_tlibdir + func_relative_path_tlibdir=$func_dirname_result + if test -z "$func_relative_path_tlibdir"; then + # Have to descend all the way to the root! + func_relative_path_result=../$func_relative_path_result + func_relative_path_tcancelled=$func_relative_path_tbindir + break + fi + func_relative_path_result=../$func_relative_path_result + ;; + esac + done + + # Now calculate path; take care to avoid doubling-up slashes. + func_stripname '' '/' "$func_relative_path_result" + func_relative_path_result=$func_stripname_result + func_stripname '/' '/' "$func_relative_path_tcancelled" + if test -n "$func_stripname_result"; then + func_append func_relative_path_result "/$func_stripname_result" + fi + + # Normalisation. If bindir is libdir, return '.' else relative path. + if test -n "$func_relative_path_result"; then + func_stripname './' '' "$func_relative_path_result" + func_relative_path_result=$func_stripname_result + fi + + test -n "$func_relative_path_result" || func_relative_path_result=. - # bash bug again: : } -# func_fatal_error arg... -# Echo program name prefixed message to standard error, and exit. -func_fatal_error () -{ - func_error ${1+"$@"} - exit $EXIT_FAILURE -} -# func_fatal_help arg... -# Echo program name prefixed message to standard error, followed by -# a help hint, and exit. -func_fatal_help () -{ - func_error ${1+"$@"} - func_fatal_error "$help" -} -help="Try \`$progname --help' for more information." ## default - - -# func_grep expression filename -# Check whether EXPRESSION matches any line of FILENAME, without output. -func_grep () -{ - $GREP "$1" "$2" >/dev/null 2>&1 -} - - -# func_mkdir_p directory-path -# Make sure the entire path to DIRECTORY-PATH is available. -func_mkdir_p () -{ - my_directory_path="$1" - my_dir_list= - - if test -n "$my_directory_path" && test "$opt_dry_run" != ":"; then - - # Protect directory names starting with `-' - case $my_directory_path in - -*) my_directory_path="./$my_directory_path" ;; - esac - - # While some portion of DIR does not yet exist... - while test ! -d "$my_directory_path"; do - # ...make a list in topmost first order. Use a colon delimited - # list incase some portion of path contains whitespace. - my_dir_list="$my_directory_path:$my_dir_list" - - # If the last portion added has no slash in it, the list is done - case $my_directory_path in */*) ;; *) break ;; esac - - # ...otherwise throw away the child directory and loop - my_directory_path=`$ECHO "$my_directory_path" | $SED -e "$dirname"` - done - my_dir_list=`$ECHO "$my_dir_list" | $SED 's,:*$,,'` - - save_mkdir_p_IFS="$IFS"; IFS=':' - for my_dir in $my_dir_list; do - IFS="$save_mkdir_p_IFS" - # mkdir can fail with a `File exist' error if two processes - # try to create one of the directories concurrently. Don't - # stop in that case! - $MKDIR "$my_dir" 2>/dev/null || : - done - IFS="$save_mkdir_p_IFS" - - # Bail out if we (or some other process) failed to create a directory. - test -d "$my_directory_path" || \ - func_fatal_error "Failed to create \`$1'" - fi -} - - -# func_mktempdir [string] -# Make a temporary directory that won't clash with other running -# libtool processes, and avoids race conditions if possible. If -# given, STRING is the basename for that directory. -func_mktempdir () -{ - my_template="${TMPDIR-/tmp}/${1-$progname}" - - if test "$opt_dry_run" = ":"; then - # Return a directory name, but don't create it in dry-run mode - my_tmpdir="${my_template}-$$" - else - - # If mktemp works, use that first and foremost - my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null` - - if test ! -d "$my_tmpdir"; then - # Failing that, at least try and use $RANDOM to avoid a race - my_tmpdir="${my_template}-${RANDOM-0}$$" - - save_mktempdir_umask=`umask` - umask 0077 - $MKDIR "$my_tmpdir" - umask $save_mktempdir_umask - fi - - # If we're not in dry-run mode, bomb out on failure - test -d "$my_tmpdir" || \ - func_fatal_error "cannot create temporary directory \`$my_tmpdir'" - fi - - $ECHO "$my_tmpdir" -} - - -# func_quote_for_eval arg -# Aesthetically quote ARG to be evaled later. -# This function returns two values: FUNC_QUOTE_FOR_EVAL_RESULT -# is double-quoted, suitable for a subsequent eval, whereas -# FUNC_QUOTE_FOR_EVAL_UNQUOTED_RESULT has merely all characters -# which are still active within double quotes backslashified. +# func_quote_for_eval ARG... +# -------------------------- +# Aesthetically quote ARGs to be evaled later. +# This function returns two values: +# i) func_quote_for_eval_result +# double-quoted, suitable for a subsequent eval +# ii) func_quote_for_eval_unquoted_result +# has all characters that are still active within double +# quotes backslashified. func_quote_for_eval () { - case $1 in - *[\\\`\"\$]*) - func_quote_for_eval_unquoted_result=`$ECHO "$1" | $SED "$sed_quote_subst"` ;; - *) - func_quote_for_eval_unquoted_result="$1" ;; - esac + $debug_cmd - case $func_quote_for_eval_unquoted_result in - # Double-quote args containing shell metacharacters to delay - # word splitting, command substitution and and variable - # expansion for a subsequent eval. - # Many Bourne shells cannot handle close brackets correctly - # in scan sets, so we specify it separately. - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - func_quote_for_eval_result="\"$func_quote_for_eval_unquoted_result\"" - ;; - *) - func_quote_for_eval_result="$func_quote_for_eval_unquoted_result" - esac + func_quote_for_eval_unquoted_result= + func_quote_for_eval_result= + while test 0 -lt $#; do + case $1 in + *[\\\`\"\$]*) + _G_unquoted_arg=`printf '%s\n' "$1" |$SED "$sed_quote_subst"` ;; + *) + _G_unquoted_arg=$1 ;; + esac + if test -n "$func_quote_for_eval_unquoted_result"; then + func_append func_quote_for_eval_unquoted_result " $_G_unquoted_arg" + else + func_append func_quote_for_eval_unquoted_result "$_G_unquoted_arg" + fi + + case $_G_unquoted_arg in + # Double-quote args containing shell metacharacters to delay + # word splitting, command substitution and variable expansion + # for a subsequent eval. + # Many Bourne shells cannot handle close brackets correctly + # in scan sets, so we specify it separately. + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") + _G_quoted_arg=\"$_G_unquoted_arg\" + ;; + *) + _G_quoted_arg=$_G_unquoted_arg + ;; + esac + + if test -n "$func_quote_for_eval_result"; then + func_append func_quote_for_eval_result " $_G_quoted_arg" + else + func_append func_quote_for_eval_result "$_G_quoted_arg" + fi + shift + done } -# func_quote_for_expand arg +# func_quote_for_expand ARG +# ------------------------- # Aesthetically quote ARG to be evaled later; same as above, # but do not quote variable references. func_quote_for_expand () { + $debug_cmd + case $1 in *[\\\`\"]*) - my_arg=`$ECHO "$1" | $SED \ - -e "$double_quote_subst" -e "$sed_double_backslash"` ;; + _G_arg=`$ECHO "$1" | $SED \ + -e "$sed_double_quote_subst" -e "$sed_double_backslash"` ;; *) - my_arg="$1" ;; + _G_arg=$1 ;; esac - case $my_arg in + case $_G_arg in # Double-quote args containing shell metacharacters to delay # word splitting and command substitution for a subsequent eval. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - my_arg="\"$my_arg\"" + _G_arg=\"$_G_arg\" ;; esac - func_quote_for_expand_result="$my_arg" + func_quote_for_expand_result=$_G_arg } -# func_show_eval cmd [fail_exp] -# Unless opt_silent is true, then output CMD. Then, if opt_dryrun is +# func_stripname PREFIX SUFFIX NAME +# --------------------------------- +# strip PREFIX and SUFFIX from NAME, and store in func_stripname_result. +# PREFIX and SUFFIX must not contain globbing or regex special +# characters, hashes, percent signs, but SUFFIX may contain a leading +# dot (in which case that matches only a dot). +if test yes = "$_G_HAVE_XSI_OPS"; then + eval 'func_stripname () + { + $debug_cmd + + # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are + # positional parameters, so assign one to ordinary variable first. + func_stripname_result=$3 + func_stripname_result=${func_stripname_result#"$1"} + func_stripname_result=${func_stripname_result%"$2"} + }' +else + func_stripname () + { + $debug_cmd + + case $2 in + .*) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%\\\\$2\$%%"`;; + *) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%$2\$%%"`;; + esac + } +fi + + +# func_show_eval CMD [FAIL_EXP] +# ----------------------------- +# Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. func_show_eval () { - my_cmd="$1" - my_fail_exp="${2-:}" + $debug_cmd - ${opt_silent-false} || { - func_quote_for_expand "$my_cmd" - eval "func_echo $func_quote_for_expand_result" - } + _G_cmd=$1 + _G_fail_exp=${2-':'} - if ${opt_dry_run-false}; then :; else - eval "$my_cmd" - my_status=$? - if test "$my_status" -eq 0; then :; else - eval "(exit $my_status); $my_fail_exp" + func_quote_for_expand "$_G_cmd" + eval "func_notquiet $func_quote_for_expand_result" + + $opt_dry_run || { + eval "$_G_cmd" + _G_status=$? + if test 0 -ne "$_G_status"; then + eval "(exit $_G_status); $_G_fail_exp" fi - fi + } } -# func_show_eval_locale cmd [fail_exp] -# Unless opt_silent is true, then output CMD. Then, if opt_dryrun is +# func_show_eval_locale CMD [FAIL_EXP] +# ------------------------------------ +# Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. Use the saved locale for evaluation. func_show_eval_locale () { - my_cmd="$1" - my_fail_exp="${2-:}" + $debug_cmd - ${opt_silent-false} || { - func_quote_for_expand "$my_cmd" + _G_cmd=$1 + _G_fail_exp=${2-':'} + + $opt_quiet || { + func_quote_for_expand "$_G_cmd" eval "func_echo $func_quote_for_expand_result" } - if ${opt_dry_run-false}; then :; else - eval "$lt_user_locale - $my_cmd" - my_status=$? - eval "$lt_safe_locale" - if test "$my_status" -eq 0; then :; else - eval "(exit $my_status); $my_fail_exp" + $opt_dry_run || { + eval "$_G_user_locale + $_G_cmd" + _G_status=$? + eval "$_G_safe_locale" + if test 0 -ne "$_G_status"; then + eval "(exit $_G_status); $_G_fail_exp" fi - fi + } } + # func_tr_sh +# ---------- # Turn $1 into a string suitable for a shell variable name. # Result is stored in $func_tr_sh_result. All characters # not in the set a-zA-Z0-9_ are replaced with '_'. Further, # if $1 begins with a digit, a '_' is prepended as well. func_tr_sh () { - case $1 in - [0-9]* | *[!a-zA-Z0-9_]*) - func_tr_sh_result=`$ECHO "$1" | $SED 's/^\([0-9]\)/_\1/; s/[^a-zA-Z0-9_]/_/g'` - ;; - * ) - func_tr_sh_result=$1 - ;; - esac + $debug_cmd + + case $1 in + [0-9]* | *[!a-zA-Z0-9_]*) + func_tr_sh_result=`$ECHO "$1" | $SED -e 's/^\([0-9]\)/_\1/' -e 's/[^a-zA-Z0-9_]/_/g'` + ;; + * ) + func_tr_sh_result=$1 + ;; + esac } -# func_version -# Echo version message to standard output and exit. -func_version () +# func_verbose ARG... +# ------------------- +# Echo program name prefixed message in verbose mode only. +func_verbose () { - $opt_debug + $debug_cmd - $SED -n '/(C)/!b go - :more - /\./!{ - N - s/\n# / / - b more - } - :go - /^# '$PROGRAM' (GNU /,/# warranty; / { - s/^# // - s/^# *$// - s/\((C)\)[ 0-9,-]*\( [1-9][0-9]*\)/\1\2/ - p - }' < "$progpath" - exit $? + $opt_verbose && func_echo "$*" + + : } -# func_usage -# Echo short help message to standard output and exit. -func_usage () + +# func_warn_and_continue ARG... +# ----------------------------- +# Echo program name prefixed warning message to standard error. +func_warn_and_continue () { - $opt_debug + $debug_cmd - $SED -n '/^# Usage:/,/^# *.*--help/ { - s/^# // - s/^# *$// - s/\$progname/'$progname'/ - p - }' < "$progpath" - echo - $ECHO "run \`$progname --help | more' for full usage" - exit $? + $require_term_colors + + func_echo_infix_1 "${tc_red}warning$tc_reset" "$*" >&2 } -# func_help [NOEXIT] -# Echo long help message to standard output and exit, -# unless 'noexit' is passed as argument. + +# func_warning CATEGORY ARG... +# ---------------------------- +# Echo program name prefixed warning message to standard error. Warning +# messages can be filtered according to CATEGORY, where this function +# elides messages where CATEGORY is not listed in the global variable +# 'opt_warning_types'. +func_warning () +{ + $debug_cmd + + # CATEGORY must be in the warning_categories list! + case " $warning_categories " in + *" $1 "*) ;; + *) func_internal_error "invalid warning category '$1'" ;; + esac + + _G_category=$1 + shift + + case " $opt_warning_types " in + *" $_G_category "*) $warning_func ${1+"$@"} ;; + esac +} + + +# func_sort_ver VER1 VER2 +# ----------------------- +# 'sort -V' is not generally available. +# Note this deviates from the version comparison in automake +# in that it treats 1.5 < 1.5.0, and treats 1.4.4a < 1.4-p3a +# but this should suffice as we won't be specifying old +# version formats or redundant trailing .0 in bootstrap.conf. +# If we did want full compatibility then we should probably +# use m4_version_compare from autoconf. +func_sort_ver () +{ + $debug_cmd + + printf '%s\n%s\n' "$1" "$2" \ + | sort -t. -k 1,1n -k 2,2n -k 3,3n -k 4,4n -k 5,5n -k 6,6n -k 7,7n -k 8,8n -k 9,9n +} + +# func_lt_ver PREV CURR +# --------------------- +# Return true if PREV and CURR are in the correct order according to +# func_sort_ver, otherwise false. Use it like this: +# +# func_lt_ver "$prev_ver" "$proposed_ver" || func_fatal_error "..." +func_lt_ver () +{ + $debug_cmd + + test "x$1" = x`func_sort_ver "$1" "$2" | $SED 1q` +} + + +# Local variables: +# mode: shell-script +# sh-indentation: 2 +# eval: (add-hook 'before-save-hook 'time-stamp) +# time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" +# time-stamp-time-zone: "UTC" +# End: +#! /bin/sh + +# Set a version string for this script. +scriptversion=2014-01-07.03; # UTC + +# A portable, pluggable option parser for Bourne shell. +# Written by Gary V. Vaughan, 2010 + +# Copyright (C) 2010-2015 Free Software Foundation, Inc. +# This is free software; see the source for copying conditions. There is NO +# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# Please report bugs or propose patches to gary@gnu.org. + + +## ------ ## +## Usage. ## +## ------ ## + +# This file is a library for parsing options in your shell scripts along +# with assorted other useful supporting features that you can make use +# of too. +# +# For the simplest scripts you might need only: +# +# #!/bin/sh +# . relative/path/to/funclib.sh +# . relative/path/to/options-parser +# scriptversion=1.0 +# func_options ${1+"$@"} +# eval set dummy "$func_options_result"; shift +# ...rest of your script... +# +# In order for the '--version' option to work, you will need to have a +# suitably formatted comment like the one at the top of this file +# starting with '# Written by ' and ending with '# warranty; '. +# +# For '-h' and '--help' to work, you will also need a one line +# description of your script's purpose in a comment directly above the +# '# Written by ' line, like the one at the top of this file. +# +# The default options also support '--debug', which will turn on shell +# execution tracing (see the comment above debug_cmd below for another +# use), and '--verbose' and the func_verbose function to allow your script +# to display verbose messages only when your user has specified +# '--verbose'. +# +# After sourcing this file, you can plug processing for additional +# options by amending the variables from the 'Configuration' section +# below, and following the instructions in the 'Option parsing' +# section further down. + +## -------------- ## +## Configuration. ## +## -------------- ## + +# You should override these variables in your script after sourcing this +# file so that they reflect the customisations you have added to the +# option parser. + +# The usage line for option parsing errors and the start of '-h' and +# '--help' output messages. You can embed shell variables for delayed +# expansion at the time the message is displayed, but you will need to +# quote other shell meta-characters carefully to prevent them being +# expanded when the contents are evaled. +usage='$progpath [OPTION]...' + +# Short help message in response to '-h' and '--help'. Add to this or +# override it after sourcing this library to reflect the full set of +# options your script accepts. +usage_message="\ + --debug enable verbose shell tracing + -W, --warnings=CATEGORY + report the warnings falling in CATEGORY [all] + -v, --verbose verbosely report processing + --version print version information and exit + -h, --help print short or long help message and exit +" + +# Additional text appended to 'usage_message' in response to '--help'. +long_help_message=" +Warning categories include: + 'all' show all warnings + 'none' turn off all the warnings + 'error' warnings are treated as fatal errors" + +# Help message printed before fatal option parsing errors. +fatal_help="Try '\$progname --help' for more information." + + + +## ------------------------- ## +## Hook function management. ## +## ------------------------- ## + +# This section contains functions for adding, removing, and running hooks +# to the main code. A hook is just a named list of of function, that can +# be run in order later on. + +# func_hookable FUNC_NAME +# ----------------------- +# Declare that FUNC_NAME will run hooks added with +# 'func_add_hook FUNC_NAME ...'. +func_hookable () +{ + $debug_cmd + + func_append hookable_fns " $1" +} + + +# func_add_hook FUNC_NAME HOOK_FUNC +# --------------------------------- +# Request that FUNC_NAME call HOOK_FUNC before it returns. FUNC_NAME must +# first have been declared "hookable" by a call to 'func_hookable'. +func_add_hook () +{ + $debug_cmd + + case " $hookable_fns " in + *" $1 "*) ;; + *) func_fatal_error "'$1' does not accept hook functions." ;; + esac + + eval func_append ${1}_hooks '" $2"' +} + + +# func_remove_hook FUNC_NAME HOOK_FUNC +# ------------------------------------ +# Remove HOOK_FUNC from the list of functions called by FUNC_NAME. +func_remove_hook () +{ + $debug_cmd + + eval ${1}_hooks='`$ECHO "\$'$1'_hooks" |$SED "s| '$2'||"`' +} + + +# func_run_hooks FUNC_NAME [ARG]... +# --------------------------------- +# Run all hook functions registered to FUNC_NAME. +# It is assumed that the list of hook functions contains nothing more +# than a whitespace-delimited list of legal shell function names, and +# no effort is wasted trying to catch shell meta-characters or preserve +# whitespace. +func_run_hooks () +{ + $debug_cmd + + case " $hookable_fns " in + *" $1 "*) ;; + *) func_fatal_error "'$1' does not support hook funcions.n" ;; + esac + + eval _G_hook_fns=\$$1_hooks; shift + + for _G_hook in $_G_hook_fns; do + eval $_G_hook '"$@"' + + # store returned options list back into positional + # parameters for next 'cmd' execution. + eval _G_hook_result=\$${_G_hook}_result + eval set dummy "$_G_hook_result"; shift + done + + func_quote_for_eval ${1+"$@"} + func_run_hooks_result=$func_quote_for_eval_result +} + + + +## --------------- ## +## Option parsing. ## +## --------------- ## + +# In order to add your own option parsing hooks, you must accept the +# full positional parameter list in your hook function, remove any +# options that you action, and then pass back the remaining unprocessed +# options in '_result', escaped suitably for +# 'eval'. Like this: +# +# my_options_prep () +# { +# $debug_cmd +# +# # Extend the existing usage message. +# usage_message=$usage_message' +# -s, --silent don'\''t print informational messages +# ' +# +# func_quote_for_eval ${1+"$@"} +# my_options_prep_result=$func_quote_for_eval_result +# } +# func_add_hook func_options_prep my_options_prep +# +# +# my_silent_option () +# { +# $debug_cmd +# +# # Note that for efficiency, we parse as many options as we can +# # recognise in a loop before passing the remainder back to the +# # caller on the first unrecognised argument we encounter. +# while test $# -gt 0; do +# opt=$1; shift +# case $opt in +# --silent|-s) opt_silent=: ;; +# # Separate non-argument short options: +# -s*) func_split_short_opt "$_G_opt" +# set dummy "$func_split_short_opt_name" \ +# "-$func_split_short_opt_arg" ${1+"$@"} +# shift +# ;; +# *) set dummy "$_G_opt" "$*"; shift; break ;; +# esac +# done +# +# func_quote_for_eval ${1+"$@"} +# my_silent_option_result=$func_quote_for_eval_result +# } +# func_add_hook func_parse_options my_silent_option +# +# +# my_option_validation () +# { +# $debug_cmd +# +# $opt_silent && $opt_verbose && func_fatal_help "\ +# '--silent' and '--verbose' options are mutually exclusive." +# +# func_quote_for_eval ${1+"$@"} +# my_option_validation_result=$func_quote_for_eval_result +# } +# func_add_hook func_validate_options my_option_validation +# +# You'll alse need to manually amend $usage_message to reflect the extra +# options you parse. It's preferable to append if you can, so that +# multiple option parsing hooks can be added safely. + + +# func_options [ARG]... +# --------------------- +# All the functions called inside func_options are hookable. See the +# individual implementations for details. +func_hookable func_options +func_options () +{ + $debug_cmd + + func_options_prep ${1+"$@"} + eval func_parse_options \ + ${func_options_prep_result+"$func_options_prep_result"} + eval func_validate_options \ + ${func_parse_options_result+"$func_parse_options_result"} + + eval func_run_hooks func_options \ + ${func_validate_options_result+"$func_validate_options_result"} + + # save modified positional parameters for caller + func_options_result=$func_run_hooks_result +} + + +# func_options_prep [ARG]... +# -------------------------- +# All initialisations required before starting the option parse loop. +# Note that when calling hook functions, we pass through the list of +# positional parameters. If a hook function modifies that list, and +# needs to propogate that back to rest of this script, then the complete +# modified list must be put in 'func_run_hooks_result' before +# returning. +func_hookable func_options_prep +func_options_prep () +{ + $debug_cmd + + # Option defaults: + opt_verbose=false + opt_warning_types= + + func_run_hooks func_options_prep ${1+"$@"} + + # save modified positional parameters for caller + func_options_prep_result=$func_run_hooks_result +} + + +# func_parse_options [ARG]... +# --------------------------- +# The main option parsing loop. +func_hookable func_parse_options +func_parse_options () +{ + $debug_cmd + + func_parse_options_result= + + # this just eases exit handling + while test $# -gt 0; do + # Defer to hook functions for initial option parsing, so they + # get priority in the event of reusing an option name. + func_run_hooks func_parse_options ${1+"$@"} + + # Adjust func_parse_options positional parameters to match + eval set dummy "$func_run_hooks_result"; shift + + # Break out of the loop if we already parsed every option. + test $# -gt 0 || break + + _G_opt=$1 + shift + case $_G_opt in + --debug|-x) debug_cmd='set -x' + func_echo "enabling shell trace mode" + $debug_cmd + ;; + + --no-warnings|--no-warning|--no-warn) + set dummy --warnings none ${1+"$@"} + shift + ;; + + --warnings|--warning|-W) + test $# = 0 && func_missing_arg $_G_opt && break + case " $warning_categories $1" in + *" $1 "*) + # trailing space prevents matching last $1 above + func_append_uniq opt_warning_types " $1" + ;; + *all) + opt_warning_types=$warning_categories + ;; + *none) + opt_warning_types=none + warning_func=: + ;; + *error) + opt_warning_types=$warning_categories + warning_func=func_fatal_error + ;; + *) + func_fatal_error \ + "unsupported warning category: '$1'" + ;; + esac + shift + ;; + + --verbose|-v) opt_verbose=: ;; + --version) func_version ;; + -\?|-h) func_usage ;; + --help) func_help ;; + + # Separate optargs to long options (plugins may need this): + --*=*) func_split_equals "$_G_opt" + set dummy "$func_split_equals_lhs" \ + "$func_split_equals_rhs" ${1+"$@"} + shift + ;; + + # Separate optargs to short options: + -W*) + func_split_short_opt "$_G_opt" + set dummy "$func_split_short_opt_name" \ + "$func_split_short_opt_arg" ${1+"$@"} + shift + ;; + + # Separate non-argument short options: + -\?*|-h*|-v*|-x*) + func_split_short_opt "$_G_opt" + set dummy "$func_split_short_opt_name" \ + "-$func_split_short_opt_arg" ${1+"$@"} + shift + ;; + + --) break ;; + -*) func_fatal_help "unrecognised option: '$_G_opt'" ;; + *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;; + esac + done + + # save modified positional parameters for caller + func_quote_for_eval ${1+"$@"} + func_parse_options_result=$func_quote_for_eval_result +} + + +# func_validate_options [ARG]... +# ------------------------------ +# Perform any sanity checks on option settings and/or unconsumed +# arguments. +func_hookable func_validate_options +func_validate_options () +{ + $debug_cmd + + # Display all warnings if -W was not given. + test -n "$opt_warning_types" || opt_warning_types=" $warning_categories" + + func_run_hooks func_validate_options ${1+"$@"} + + # Bail if the options were screwed! + $exit_cmd $EXIT_FAILURE + + # save modified positional parameters for caller + func_validate_options_result=$func_run_hooks_result +} + + + +## ----------------- ## +## Helper functions. ## +## ----------------- ## + +# This section contains the helper functions used by the rest of the +# hookable option parser framework in ascii-betical order. + + +# func_fatal_help ARG... +# ---------------------- +# Echo program name prefixed message to standard error, followed by +# a help hint, and exit. +func_fatal_help () +{ + $debug_cmd + + eval \$ECHO \""Usage: $usage"\" + eval \$ECHO \""$fatal_help"\" + func_error ${1+"$@"} + exit $EXIT_FAILURE +} + + +# func_help +# --------- +# Echo long help message to standard output and exit. func_help () { - $opt_debug + $debug_cmd - $SED -n '/^# Usage:/,/# Report bugs to/ { - :print - s/^# // - s/^# *$// - s*\$progname*'$progname'* - s*\$host*'"$host"'* - s*\$SHELL*'"$SHELL"'* - s*\$LTCC*'"$LTCC"'* - s*\$LTCFLAGS*'"$LTCFLAGS"'* - s*\$LD*'"$LD"'* - s/\$with_gnu_ld/'"$with_gnu_ld"'/ - s/\$automake_version/'"`(${AUTOMAKE-automake} --version) 2>/dev/null |$SED 1q`"'/ - s/\$autoconf_version/'"`(${AUTOCONF-autoconf} --version) 2>/dev/null |$SED 1q`"'/ - p - d - } - /^# .* home page:/b print - /^# General help using/b print - ' < "$progpath" - ret=$? - if test -z "$1"; then - exit $ret - fi + func_usage_message + $ECHO "$long_help_message" + exit 0 } -# func_missing_arg argname + +# func_missing_arg ARGNAME +# ------------------------ # Echo program name prefixed message to standard error and set global # exit_cmd. func_missing_arg () { - $opt_debug + $debug_cmd - func_error "missing argument for $1." + func_error "Missing argument for '$1'." exit_cmd=exit } -# func_split_short_opt shortopt +# func_split_equals STRING +# ------------------------ +# Set func_split_equals_lhs and func_split_equals_rhs shell variables after +# splitting STRING at the '=' sign. +test -z "$_G_HAVE_XSI_OPS" \ + && (eval 'x=a/b/c; + test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ + && _G_HAVE_XSI_OPS=yes + +if test yes = "$_G_HAVE_XSI_OPS" +then + # This is an XSI compatible shell, allowing a faster implementation... + eval 'func_split_equals () + { + $debug_cmd + + func_split_equals_lhs=${1%%=*} + func_split_equals_rhs=${1#*=} + test "x$func_split_equals_lhs" = "x$1" \ + && func_split_equals_rhs= + }' +else + # ...otherwise fall back to using expr, which is often a shell builtin. + func_split_equals () + { + $debug_cmd + + func_split_equals_lhs=`expr "x$1" : 'x\([^=]*\)'` + func_split_equals_rhs= + test "x$func_split_equals_lhs" = "x$1" \ + || func_split_equals_rhs=`expr "x$1" : 'x[^=]*=\(.*\)$'` + } +fi #func_split_equals + + +# func_split_short_opt SHORTOPT +# ----------------------------- # Set func_split_short_opt_name and func_split_short_opt_arg shell # variables after splitting SHORTOPT after the 2nd character. -func_split_short_opt () +if test yes = "$_G_HAVE_XSI_OPS" +then + # This is an XSI compatible shell, allowing a faster implementation... + eval 'func_split_short_opt () + { + $debug_cmd + + func_split_short_opt_arg=${1#??} + func_split_short_opt_name=${1%"$func_split_short_opt_arg"} + }' +else + # ...otherwise fall back to using expr, which is often a shell builtin. + func_split_short_opt () + { + $debug_cmd + + func_split_short_opt_name=`expr "x$1" : 'x-\(.\)'` + func_split_short_opt_arg=`expr "x$1" : 'x-.\(.*\)$'` + } +fi #func_split_short_opt + + +# func_usage +# ---------- +# Echo short help message to standard output and exit. +func_usage () { - my_sed_short_opt='1s/^\(..\).*$/\1/;q' - my_sed_short_rest='1s/^..\(.*\)$/\1/;q' + $debug_cmd - func_split_short_opt_name=`$ECHO "$1" | $SED "$my_sed_short_opt"` - func_split_short_opt_arg=`$ECHO "$1" | $SED "$my_sed_short_rest"` -} # func_split_short_opt may be replaced by extended shell implementation + func_usage_message + $ECHO "Run '$progname --help |${PAGER-more}' for full usage" + exit 0 +} -# func_split_long_opt longopt -# Set func_split_long_opt_name and func_split_long_opt_arg shell -# variables after splitting LONGOPT at the `=' sign. -func_split_long_opt () +# func_usage_message +# ------------------ +# Echo short help message to standard output. +func_usage_message () { - my_sed_long_opt='1s/^\(--[^=]*\)=.*/\1/;q' - my_sed_long_arg='1s/^--[^=]*=//' + $debug_cmd - func_split_long_opt_name=`$ECHO "$1" | $SED "$my_sed_long_opt"` - func_split_long_opt_arg=`$ECHO "$1" | $SED "$my_sed_long_arg"` -} # func_split_long_opt may be replaced by extended shell implementation - -exit_cmd=: + eval \$ECHO \""Usage: $usage"\" + echo + $SED -n 's|^# || + /^Written by/{ + x;p;x + } + h + /^Written by/q' < "$progpath" + echo + eval \$ECHO \""$usage_message"\" +} - - - -magic="%%%MAGIC variable%%%" -magic_exe="%%%MAGIC EXE variable%%%" - -# Global variables. -nonopt= -preserve_args= -lo2o="s/\\.lo\$/.${objext}/" -o2lo="s/\\.${objext}\$/.lo/" -extracted_archives= -extracted_serial=0 - -# If this variable is set in any of the actions, the command in it -# will be execed at the end. This prevents here-documents from being -# left over by shells. -exec_cmd= - -# func_append var value -# Append VALUE to the end of shell variable VAR. -func_append () +# func_version +# ------------ +# Echo version message to standard output and exit. +func_version () { - eval "${1}=\$${1}\${2}" -} # func_append may be replaced by extended shell implementation + $debug_cmd -# func_append_quoted var value -# Quote VALUE and append to the end of shell variable VAR, separated -# by a space. -func_append_quoted () + printf '%s\n' "$progname $scriptversion" + $SED -n ' + /(C)/!b go + :more + /\./!{ + N + s|\n# | | + b more + } + :go + /^# Written by /,/# warranty; / { + s|^# || + s|^# *$|| + s|\((C)\)[ 0-9,-]*[ ,-]\([1-9][0-9]* \)|\1 \2| + p + } + /^# Written by / { + s|^# || + p + } + /^warranty; /q' < "$progpath" + + exit $? +} + + +# Local variables: +# mode: shell-script +# sh-indentation: 2 +# eval: (add-hook 'before-save-hook 'time-stamp) +# time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" +# time-stamp-time-zone: "UTC" +# End: + +# Set a version string. +scriptversion='(GNU libtool) 2.4.6' + + +# func_echo ARG... +# ---------------- +# Libtool also displays the current mode in messages, so override +# funclib.sh func_echo with this custom definition. +func_echo () { - func_quote_for_eval "${2}" - eval "${1}=\$${1}\\ \$func_quote_for_eval_result" -} # func_append_quoted may be replaced by extended shell implementation + $debug_cmd + + _G_message=$* + + func_echo_IFS=$IFS + IFS=$nl + for _G_line in $_G_message; do + IFS=$func_echo_IFS + $ECHO "$progname${opt_mode+: $opt_mode}: $_G_line" + done + IFS=$func_echo_IFS +} -# func_arith arithmetic-term... -func_arith () +# func_warning ARG... +# ------------------- +# Libtool warnings are not categorized, so override funclib.sh +# func_warning with this simpler definition. +func_warning () { - func_arith_result=`expr "${@}"` -} # func_arith may be replaced by extended shell implementation + $debug_cmd + + $warning_func ${1+"$@"} +} -# func_len string -# STRING may not start with a hyphen. -func_len () +## ---------------- ## +## Options parsing. ## +## ---------------- ## + +# Hook in the functions to make sure our own options are parsed during +# the option parsing loop. + +usage='$progpath [OPTION]... [MODE-ARG]...' + +# Short help message in response to '-h'. +usage_message="Options: + --config show all configuration variables + --debug enable verbose shell tracing + -n, --dry-run display commands without modifying any files + --features display basic configuration information and exit + --mode=MODE use operation mode MODE + --no-warnings equivalent to '-Wnone' + --preserve-dup-deps don't remove duplicate dependency libraries + --quiet, --silent don't print informational messages + --tag=TAG use configuration variables from tag TAG + -v, --verbose print more informational messages than default + --version print version information + -W, --warnings=CATEGORY report the warnings falling in CATEGORY [all] + -h, --help, --help-all print short, long, or detailed help message +" + +# Additional text appended to 'usage_message' in response to '--help'. +func_help () { - func_len_result=`expr "${1}" : ".*" 2>/dev/null || echo $max_cmd_len` -} # func_len may be replaced by extended shell implementation + $debug_cmd + + func_usage_message + $ECHO "$long_help_message + +MODE must be one of the following: + + clean remove files from the build directory + compile compile a source file into a libtool object + execute automatically set library path, then run a program + finish complete the installation of libtool libraries + install install libraries or executables + link create a library or an executable + uninstall remove libraries from an installed directory + +MODE-ARGS vary depending on the MODE. When passed as first option, +'--mode=MODE' may be abbreviated as 'MODE' or a unique abbreviation of that. +Try '$progname --help --mode=MODE' for a more detailed description of MODE. + +When reporting a bug, please describe a test case to reproduce it and +include the following information: + + host-triplet: $host + shell: $SHELL + compiler: $LTCC + compiler flags: $LTCFLAGS + linker: $LD (gnu? $with_gnu_ld) + version: $progname (GNU libtool) 2.4.6 + automake: `($AUTOMAKE --version) 2>/dev/null |$SED 1q` + autoconf: `($AUTOCONF --version) 2>/dev/null |$SED 1q` + +Report bugs to . +GNU libtool home page: . +General help using GNU software: ." + exit 0 +} -# func_lo2o object -func_lo2o () -{ - func_lo2o_result=`$ECHO "${1}" | $SED "$lo2o"` -} # func_lo2o may be replaced by extended shell implementation +# func_lo2o OBJECT-NAME +# --------------------- +# Transform OBJECT-NAME from a '.lo' suffix to the platform specific +# object suffix. + +lo2o=s/\\.lo\$/.$objext/ +o2lo=s/\\.$objext\$/.lo/ + +if test yes = "$_G_HAVE_XSI_OPS"; then + eval 'func_lo2o () + { + case $1 in + *.lo) func_lo2o_result=${1%.lo}.$objext ;; + * ) func_lo2o_result=$1 ;; + esac + }' + + # func_xform LIBOBJ-OR-SOURCE + # --------------------------- + # Transform LIBOBJ-OR-SOURCE from a '.o' or '.c' (or otherwise) + # suffix to a '.lo' libtool-object suffix. + eval 'func_xform () + { + func_xform_result=${1%.*}.lo + }' +else + # ...otherwise fall back to using sed. + func_lo2o () + { + func_lo2o_result=`$ECHO "$1" | $SED "$lo2o"` + } + + func_xform () + { + func_xform_result=`$ECHO "$1" | $SED 's|\.[^.]*$|.lo|'` + } +fi -# func_xform libobj-or-source -func_xform () -{ - func_xform_result=`$ECHO "${1}" | $SED 's/\.[^.]*$/.lo/'` -} # func_xform may be replaced by extended shell implementation - - -# func_fatal_configuration arg... +# func_fatal_configuration ARG... +# ------------------------------- # Echo program name prefixed message to standard error, followed by # a configuration failure hint, and exit. func_fatal_configuration () { - func_error ${1+"$@"} - func_error "See the $PACKAGE documentation for more information." - func_fatal_error "Fatal configuration error." + func__fatal_error ${1+"$@"} \ + "See the $PACKAGE documentation for more information." \ + "Fatal configuration error." } # func_config +# ----------- # Display the configuration for all the tags in this script. func_config () { @@ -915,17 +2149,19 @@ func_config () exit $? } + # func_features +# ------------- # Display the features supported by this script. func_features () { echo "host: $host" - if test "$build_libtool_libs" = yes; then + if test yes = "$build_libtool_libs"; then echo "enable shared libraries" else echo "disable shared libraries" fi - if test "$build_old_libs" = yes; then + if test yes = "$build_old_libs"; then echo "enable static libraries" else echo "disable static libraries" @@ -934,314 +2170,350 @@ func_features () exit $? } -# func_enable_tag tagname + +# func_enable_tag TAGNAME +# ----------------------- # Verify that TAGNAME is valid, and either flag an error and exit, or # enable the TAGNAME tag. We also add TAGNAME to the global $taglist # variable here. func_enable_tag () { - # Global variable: - tagname="$1" + # Global variable: + tagname=$1 - re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" - re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" - sed_extractcf="/$re_begincf/,/$re_endcf/p" + re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" + re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" + sed_extractcf=/$re_begincf/,/$re_endcf/p - # Validate tagname. - case $tagname in - *[!-_A-Za-z0-9,/]*) - func_fatal_error "invalid tag name: $tagname" - ;; - esac + # Validate tagname. + case $tagname in + *[!-_A-Za-z0-9,/]*) + func_fatal_error "invalid tag name: $tagname" + ;; + esac - # Don't test for the "default" C tag, as we know it's - # there but not specially marked. - case $tagname in - CC) ;; + # Don't test for the "default" C tag, as we know it's + # there but not specially marked. + case $tagname in + CC) ;; *) - if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then - taglist="$taglist $tagname" + if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then + taglist="$taglist $tagname" - # Evaluate the configuration. Be careful to quote the path - # and the sed script, to avoid splitting on whitespace, but - # also don't use non-portable quotes within backquotes within - # quotes we have to do it in 2 steps: - extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` - eval "$extractedcf" - else - func_error "ignoring unknown tag $tagname" - fi - ;; - esac + # Evaluate the configuration. Be careful to quote the path + # and the sed script, to avoid splitting on whitespace, but + # also don't use non-portable quotes within backquotes within + # quotes we have to do it in 2 steps: + extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` + eval "$extractedcf" + else + func_error "ignoring unknown tag $tagname" + fi + ;; + esac } + # func_check_version_match +# ------------------------ # Ensure that we are using m4 macros, and libtool script from the same # release of libtool. func_check_version_match () { - if test "$package_revision" != "$macro_revision"; then - if test "$VERSION" != "$macro_version"; then - if test -z "$macro_version"; then - cat >&2 <<_LT_EOF + if test "$package_revision" != "$macro_revision"; then + if test "$VERSION" != "$macro_version"; then + if test -z "$macro_version"; then + cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from an older release. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF - else - cat >&2 <<_LT_EOF + else + cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from $PACKAGE $macro_version. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF - fi - else - cat >&2 <<_LT_EOF + fi + else + cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, $progname: but the definition of this LT_INIT comes from revision $macro_revision. $progname: You should recreate aclocal.m4 with macros from revision $package_revision $progname: of $PACKAGE $VERSION and run autoconf again. _LT_EOF - fi + fi - exit $EXIT_MISMATCH - fi + exit $EXIT_MISMATCH + fi } -# Shorthand for --mode=foo, only valid as the first argument -case $1 in -clean|clea|cle|cl) - shift; set dummy --mode clean ${1+"$@"}; shift - ;; -compile|compil|compi|comp|com|co|c) - shift; set dummy --mode compile ${1+"$@"}; shift - ;; -execute|execut|execu|exec|exe|ex|e) - shift; set dummy --mode execute ${1+"$@"}; shift - ;; -finish|finis|fini|fin|fi|f) - shift; set dummy --mode finish ${1+"$@"}; shift - ;; -install|instal|insta|inst|ins|in|i) - shift; set dummy --mode install ${1+"$@"}; shift - ;; -link|lin|li|l) - shift; set dummy --mode link ${1+"$@"}; shift - ;; -uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) - shift; set dummy --mode uninstall ${1+"$@"}; shift - ;; -esac - - - -# Option defaults: -opt_debug=: -opt_dry_run=false -opt_config=false -opt_preserve_dup_deps=false -opt_features=false -opt_finish=false -opt_help=false -opt_help_all=false -opt_silent=: -opt_warning=: -opt_verbose=: -opt_silent=false -opt_verbose=false - - -# Parse options once, thoroughly. This comes as soon as possible in the -# script to make things like `--version' happen as quickly as we can. +# libtool_options_prep [ARG]... +# ----------------------------- +# Preparation for options parsed by libtool. +libtool_options_prep () { - # this just eases exit handling - while test $# -gt 0; do - opt="$1" - shift - case $opt in - --debug|-x) opt_debug='set -x' - func_echo "enabling shell trace mode" - $opt_debug - ;; - --dry-run|--dryrun|-n) - opt_dry_run=: - ;; - --config) - opt_config=: -func_config - ;; - --dlopen|-dlopen) - optarg="$1" - opt_dlopen="${opt_dlopen+$opt_dlopen -}$optarg" - shift - ;; - --preserve-dup-deps) - opt_preserve_dup_deps=: - ;; - --features) - opt_features=: -func_features - ;; - --finish) - opt_finish=: -set dummy --mode finish ${1+"$@"}; shift - ;; - --help) - opt_help=: - ;; - --help-all) - opt_help_all=: -opt_help=': help-all' - ;; - --mode) - test $# = 0 && func_missing_arg $opt && break - optarg="$1" - opt_mode="$optarg" -case $optarg in - # Valid mode arguments: - clean|compile|execute|finish|install|link|relink|uninstall) ;; + $debug_mode - # Catch anything else as an error - *) func_error "invalid argument for $opt" - exit_cmd=exit - break - ;; -esac - shift - ;; - --no-silent|--no-quiet) - opt_silent=false -func_append preserve_args " $opt" - ;; - --no-warning|--no-warn) - opt_warning=false -func_append preserve_args " $opt" - ;; - --no-verbose) - opt_verbose=false -func_append preserve_args " $opt" - ;; - --silent|--quiet) - opt_silent=: -func_append preserve_args " $opt" - opt_verbose=false - ;; - --verbose|-v) - opt_verbose=: -func_append preserve_args " $opt" -opt_silent=false - ;; - --tag) - test $# = 0 && func_missing_arg $opt && break - optarg="$1" - opt_tag="$optarg" -func_append preserve_args " $opt $optarg" -func_enable_tag "$optarg" - shift - ;; + # Option defaults: + opt_config=false + opt_dlopen= + opt_dry_run=false + opt_help=false + opt_mode= + opt_preserve_dup_deps=false + opt_quiet=false - -\?|-h) func_usage ;; - --help) func_help ;; - --version) func_version ;; + nonopt= + preserve_args= - # Separate optargs to long options: - --*=*) - func_split_long_opt "$opt" - set dummy "$func_split_long_opt_name" "$func_split_long_opt_arg" ${1+"$@"} - shift - ;; - - # Separate non-argument short options: - -\?*|-h*|-n*|-v*) - func_split_short_opt "$opt" - set dummy "$func_split_short_opt_name" "-$func_split_short_opt_arg" ${1+"$@"} - shift - ;; - - --) break ;; - -*) func_fatal_help "unrecognized option \`$opt'" ;; - *) set dummy "$opt" ${1+"$@"}; shift; break ;; + # Shorthand for --mode=foo, only valid as the first argument + case $1 in + clean|clea|cle|cl) + shift; set dummy --mode clean ${1+"$@"}; shift + ;; + compile|compil|compi|comp|com|co|c) + shift; set dummy --mode compile ${1+"$@"}; shift + ;; + execute|execut|execu|exec|exe|ex|e) + shift; set dummy --mode execute ${1+"$@"}; shift + ;; + finish|finis|fini|fin|fi|f) + shift; set dummy --mode finish ${1+"$@"}; shift + ;; + install|instal|insta|inst|ins|in|i) + shift; set dummy --mode install ${1+"$@"}; shift + ;; + link|lin|li|l) + shift; set dummy --mode link ${1+"$@"}; shift + ;; + uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) + shift; set dummy --mode uninstall ${1+"$@"}; shift + ;; esac - done - # Validate options: - - # save first non-option argument - if test "$#" -gt 0; then - nonopt="$opt" - shift - fi - - # preserve --debug - test "$opt_debug" = : || func_append preserve_args " --debug" - - case $host in - *cygwin* | *mingw* | *pw32* | *cegcc*) - # don't eliminate duplications in $postdeps and $predeps - opt_duplicate_compiler_generated_deps=: - ;; - *) - opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps - ;; - esac - - $opt_help || { - # Sanity checks first: - func_check_version_match - - if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then - func_fatal_configuration "not configured to build any kind of library" - fi - - # Darwin sucks - eval std_shrext=\"$shrext_cmds\" - - # Only execute mode is allowed to have -dlopen flags. - if test -n "$opt_dlopen" && test "$opt_mode" != execute; then - func_error "unrecognized option \`-dlopen'" - $ECHO "$help" 1>&2 - exit $EXIT_FAILURE - fi - - # Change the help message to a mode-specific one. - generic_help="$help" - help="Try \`$progname --help --mode=$opt_mode' for more information." - } - - - # Bail if the options were screwed - $exit_cmd $EXIT_FAILURE + # Pass back the list of options. + func_quote_for_eval ${1+"$@"} + libtool_options_prep_result=$func_quote_for_eval_result } +func_add_hook func_options_prep libtool_options_prep +# libtool_parse_options [ARG]... +# --------------------------------- +# Provide handling for libtool specific options. +libtool_parse_options () +{ + $debug_cmd + + # Perform our own loop to consume as many options as possible in + # each iteration. + while test $# -gt 0; do + _G_opt=$1 + shift + case $_G_opt in + --dry-run|--dryrun|-n) + opt_dry_run=: + ;; + + --config) func_config ;; + + --dlopen|-dlopen) + opt_dlopen="${opt_dlopen+$opt_dlopen +}$1" + shift + ;; + + --preserve-dup-deps) + opt_preserve_dup_deps=: ;; + + --features) func_features ;; + + --finish) set dummy --mode finish ${1+"$@"}; shift ;; + + --help) opt_help=: ;; + + --help-all) opt_help=': help-all' ;; + + --mode) test $# = 0 && func_missing_arg $_G_opt && break + opt_mode=$1 + case $1 in + # Valid mode arguments: + clean|compile|execute|finish|install|link|relink|uninstall) ;; + + # Catch anything else as an error + *) func_error "invalid argument for $_G_opt" + exit_cmd=exit + break + ;; + esac + shift + ;; + + --no-silent|--no-quiet) + opt_quiet=false + func_append preserve_args " $_G_opt" + ;; + + --no-warnings|--no-warning|--no-warn) + opt_warning=false + func_append preserve_args " $_G_opt" + ;; + + --no-verbose) + opt_verbose=false + func_append preserve_args " $_G_opt" + ;; + + --silent|--quiet) + opt_quiet=: + opt_verbose=false + func_append preserve_args " $_G_opt" + ;; + + --tag) test $# = 0 && func_missing_arg $_G_opt && break + opt_tag=$1 + func_append preserve_args " $_G_opt $1" + func_enable_tag "$1" + shift + ;; + + --verbose|-v) opt_quiet=false + opt_verbose=: + func_append preserve_args " $_G_opt" + ;; + + # An option not handled by this hook function: + *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;; + esac + done + + + # save modified positional parameters for caller + func_quote_for_eval ${1+"$@"} + libtool_parse_options_result=$func_quote_for_eval_result +} +func_add_hook func_parse_options libtool_parse_options + + + +# libtool_validate_options [ARG]... +# --------------------------------- +# Perform any sanity checks on option settings and/or unconsumed +# arguments. +libtool_validate_options () +{ + # save first non-option argument + if test 0 -lt $#; then + nonopt=$1 + shift + fi + + # preserve --debug + test : = "$debug_cmd" || func_append preserve_args " --debug" + + case $host in + # Solaris2 added to fix http://debbugs.gnu.org/cgi/bugreport.cgi?bug=16452 + # see also: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59788 + *cygwin* | *mingw* | *pw32* | *cegcc* | *solaris2* | *os2*) + # don't eliminate duplications in $postdeps and $predeps + opt_duplicate_compiler_generated_deps=: + ;; + *) + opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps + ;; + esac + + $opt_help || { + # Sanity checks first: + func_check_version_match + + test yes != "$build_libtool_libs" \ + && test yes != "$build_old_libs" \ + && func_fatal_configuration "not configured to build any kind of library" + + # Darwin sucks + eval std_shrext=\"$shrext_cmds\" + + # Only execute mode is allowed to have -dlopen flags. + if test -n "$opt_dlopen" && test execute != "$opt_mode"; then + func_error "unrecognized option '-dlopen'" + $ECHO "$help" 1>&2 + exit $EXIT_FAILURE + fi + + # Change the help message to a mode-specific one. + generic_help=$help + help="Try '$progname --help --mode=$opt_mode' for more information." + } + + # Pass back the unparsed argument list + func_quote_for_eval ${1+"$@"} + libtool_validate_options_result=$func_quote_for_eval_result +} +func_add_hook func_validate_options libtool_validate_options + + +# Process options as early as possible so that --help and --version +# can return quickly. +func_options ${1+"$@"} +eval set dummy "$func_options_result"; shift + ## ----------- ## ## Main. ## ## ----------- ## +magic='%%%MAGIC variable%%%' +magic_exe='%%%MAGIC EXE variable%%%' + +# Global variables. +extracted_archives= +extracted_serial=0 + +# If this variable is set in any of the actions, the command in it +# will be execed at the end. This prevents here-documents from being +# left over by shells. +exec_cmd= + + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + +# func_generated_by_libtool +# True iff stdin has been generated by Libtool. This function is only +# a basic sanity check; it will hardly flush out determined imposters. +func_generated_by_libtool_p () +{ + $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 +} + # func_lalib_p file -# True iff FILE is a libtool `.la' library or `.lo' object file. +# True iff FILE is a libtool '.la' library or '.lo' object file. # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_lalib_p () { test -f "$1" && - $SED -e 4q "$1" 2>/dev/null \ - | $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 + $SED -e 4q "$1" 2>/dev/null | func_generated_by_libtool_p } # func_lalib_unsafe_p file -# True iff FILE is a libtool `.la' library or `.lo' object file. +# True iff FILE is a libtool '.la' library or '.lo' object file. # This function implements the same check as func_lalib_p without # resorting to external programs. To this end, it redirects stdin and # closes it afterwards, without saving the original file descriptor. # As a safety measure, use it only where a negative result would be -# fatal anyway. Works if `file' does not exist. +# fatal anyway. Works if 'file' does not exist. func_lalib_unsafe_p () { lalib_p=no @@ -1249,13 +2521,13 @@ func_lalib_unsafe_p () for lalib_p_l in 1 2 3 4 do read lalib_p_line - case "$lalib_p_line" in + case $lalib_p_line in \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; esac done exec 0<&5 5<&- fi - test "$lalib_p" = yes + test yes = "$lalib_p" } # func_ltwrapper_script_p file @@ -1264,7 +2536,8 @@ func_lalib_unsafe_p () # determined imposters. func_ltwrapper_script_p () { - func_lalib_p "$1" + test -f "$1" && + $lt_truncate_bin < "$1" 2>/dev/null | func_generated_by_libtool_p } # func_ltwrapper_executable_p file @@ -1289,7 +2562,7 @@ func_ltwrapper_scriptname () { func_dirname_and_basename "$1" "" "." func_stripname '' '.exe' "$func_basename_result" - func_ltwrapper_scriptname_result="$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper" + func_ltwrapper_scriptname_result=$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper } # func_ltwrapper_p file @@ -1308,11 +2581,13 @@ func_ltwrapper_p () # FAIL_CMD may read-access the current command in variable CMD! func_execute_cmds () { - $opt_debug + $debug_cmd + save_ifs=$IFS; IFS='~' for cmd in $1; do - IFS=$save_ifs + IFS=$sp$nl eval cmd=\"$cmd\" + IFS=$save_ifs func_show_eval "$cmd" "${2-:}" done IFS=$save_ifs @@ -1324,10 +2599,11 @@ func_execute_cmds () # Note that it is not necessary on cygwin/mingw to append a dot to # FILE even if both FILE and FILE.exe exist: automatic-append-.exe # behavior happens only for exec(3), not for open(2)! Also, sourcing -# `FILE.' does not work on cygwin managed mounts. +# 'FILE.' does not work on cygwin managed mounts. func_source () { - $opt_debug + $debug_cmd + case $1 in */* | *\\*) . "$1" ;; *) . "./$1" ;; @@ -1354,10 +2630,10 @@ func_resolve_sysroot () # store the result into func_replace_sysroot_result. func_replace_sysroot () { - case "$lt_sysroot:$1" in + case $lt_sysroot:$1 in ?*:"$lt_sysroot"*) func_stripname "$lt_sysroot" '' "$1" - func_replace_sysroot_result="=$func_stripname_result" + func_replace_sysroot_result='='$func_stripname_result ;; *) # Including no sysroot. @@ -1374,7 +2650,8 @@ func_replace_sysroot () # arg is usually of the form 'gcc ...' func_infer_tag () { - $opt_debug + $debug_cmd + if test -n "$available_tags" && test -z "$tagname"; then CC_quoted= for arg in $CC; do @@ -1393,7 +2670,7 @@ func_infer_tag () for z in $available_tags; do if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then # Evaluate the configuration. - eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" + eval "`$SED -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" CC_quoted= for arg in $CC; do # Double-quote args containing other shell metacharacters. @@ -1418,7 +2695,7 @@ func_infer_tag () # line option must be used. if test -z "$tagname"; then func_echo "unable to infer tagged configuration" - func_fatal_error "specify a tag with \`--tag'" + func_fatal_error "specify a tag with '--tag'" # else # func_verbose "using $tagname tagged configuration" fi @@ -1434,15 +2711,15 @@ func_infer_tag () # but don't create it if we're doing a dry run. func_write_libtool_object () { - write_libobj=${1} - if test "$build_libtool_libs" = yes; then - write_lobj=\'${2}\' + write_libobj=$1 + if test yes = "$build_libtool_libs"; then + write_lobj=\'$2\' else write_lobj=none fi - if test "$build_old_libs" = yes; then - write_oldobj=\'${3}\' + if test yes = "$build_old_libs"; then + write_oldobj=\'$3\' else write_oldobj=none fi @@ -1450,7 +2727,7 @@ func_write_libtool_object () $opt_dry_run || { cat >${write_libobj}T </dev/null` - if test "$?" -eq 0 && test -n "${func_convert_core_file_wine_to_w32_tmp}"; then + if test "$?" -eq 0 && test -n "$func_convert_core_file_wine_to_w32_tmp"; then func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" | - $SED -e "$lt_sed_naive_backslashify"` + $SED -e "$sed_naive_backslashify"` else func_convert_core_file_wine_to_w32_result= fi @@ -1514,18 +2792,19 @@ func_convert_core_file_wine_to_w32 () # are convertible, then the result may be empty. func_convert_core_path_wine_to_w32 () { - $opt_debug + $debug_cmd + # unfortunately, winepath doesn't convert paths, only file names - func_convert_core_path_wine_to_w32_result="" + func_convert_core_path_wine_to_w32_result= if test -n "$1"; then oldIFS=$IFS IFS=: for func_convert_core_path_wine_to_w32_f in $1; do IFS=$oldIFS func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f" - if test -n "$func_convert_core_file_wine_to_w32_result" ; then + if test -n "$func_convert_core_file_wine_to_w32_result"; then if test -z "$func_convert_core_path_wine_to_w32_result"; then - func_convert_core_path_wine_to_w32_result="$func_convert_core_file_wine_to_w32_result" + func_convert_core_path_wine_to_w32_result=$func_convert_core_file_wine_to_w32_result else func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result" fi @@ -1554,7 +2833,8 @@ func_convert_core_path_wine_to_w32 () # environment variable; do not put it in $PATH. func_cygpath () { - $opt_debug + $debug_cmd + if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null` if test "$?" -ne 0; then @@ -1563,7 +2843,7 @@ func_cygpath () fi else func_cygpath_result= - func_error "LT_CYGPATH is empty or specifies non-existent file: \`$LT_CYGPATH'" + func_error "LT_CYGPATH is empty or specifies non-existent file: '$LT_CYGPATH'" fi } #end: func_cygpath @@ -1574,10 +2854,11 @@ func_cygpath () # result in func_convert_core_msys_to_w32_result. func_convert_core_msys_to_w32 () { - $opt_debug + $debug_cmd + # awkward: cmd appends spaces to result func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | - $SED -e 's/[ ]*$//' -e "$lt_sed_naive_backslashify"` + $SED -e 's/[ ]*$//' -e "$sed_naive_backslashify"` } #end: func_convert_core_msys_to_w32 @@ -1588,13 +2869,14 @@ func_convert_core_msys_to_w32 () # func_to_host_file_result to ARG1). func_convert_file_check () { - $opt_debug - if test -z "$2" && test -n "$1" ; then + $debug_cmd + + if test -z "$2" && test -n "$1"; then func_error "Could not determine host file name corresponding to" - func_error " \`$1'" + func_error " '$1'" func_error "Continuing, but uninstalled executables may not work." # Fallback: - func_to_host_file_result="$1" + func_to_host_file_result=$1 fi } # end func_convert_file_check @@ -1606,10 +2888,11 @@ func_convert_file_check () # func_to_host_file_result to a simplistic fallback value (see below). func_convert_path_check () { - $opt_debug + $debug_cmd + if test -z "$4" && test -n "$3"; then func_error "Could not determine the host path corresponding to" - func_error " \`$3'" + func_error " '$3'" func_error "Continuing, but uninstalled executables may not work." # Fallback. This is a deliberately simplistic "conversion" and # should not be "improved". See libtool.info. @@ -1618,7 +2901,7 @@ func_convert_path_check () func_to_host_path_result=`echo "$3" | $SED -e "$lt_replace_pathsep_chars"` else - func_to_host_path_result="$3" + func_to_host_path_result=$3 fi fi } @@ -1630,9 +2913,10 @@ func_convert_path_check () # and appending REPL if ORIG matches BACKPAT. func_convert_path_front_back_pathsep () { - $opt_debug + $debug_cmd + case $4 in - $1 ) func_to_host_path_result="$3$func_to_host_path_result" + $1 ) func_to_host_path_result=$3$func_to_host_path_result ;; esac case $4 in @@ -1646,7 +2930,7 @@ func_convert_path_front_back_pathsep () ################################################## # $build to $host FILE NAME CONVERSION FUNCTIONS # ################################################## -# invoked via `$to_host_file_cmd ARG' +# invoked via '$to_host_file_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # Result will be available in $func_to_host_file_result. @@ -1657,7 +2941,8 @@ func_convert_path_front_back_pathsep () # in func_to_host_file_result. func_to_host_file () { - $opt_debug + $debug_cmd + $to_host_file_cmd "$1" } # end func_to_host_file @@ -1669,7 +2954,8 @@ func_to_host_file () # in (the comma separated) LAZY, no conversion takes place. func_to_tool_file () { - $opt_debug + $debug_cmd + case ,$2, in *,"$to_tool_file_cmd",*) func_to_tool_file_result=$1 @@ -1687,7 +2973,7 @@ func_to_tool_file () # Copy ARG to func_to_host_file_result. func_convert_file_noop () { - func_to_host_file_result="$1" + func_to_host_file_result=$1 } # end func_convert_file_noop @@ -1698,11 +2984,12 @@ func_convert_file_noop () # func_to_host_file_result. func_convert_file_msys_to_w32 () { - $opt_debug - func_to_host_file_result="$1" + $debug_cmd + + func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_msys_to_w32 "$1" - func_to_host_file_result="$func_convert_core_msys_to_w32_result" + func_to_host_file_result=$func_convert_core_msys_to_w32_result fi func_convert_file_check "$1" "$func_to_host_file_result" } @@ -1714,8 +3001,9 @@ func_convert_file_msys_to_w32 () # func_to_host_file_result. func_convert_file_cygwin_to_w32 () { - $opt_debug - func_to_host_file_result="$1" + $debug_cmd + + func_to_host_file_result=$1 if test -n "$1"; then # because $build is cygwin, we call "the" cygpath in $PATH; no need to use # LT_CYGPATH in this case. @@ -1731,11 +3019,12 @@ func_convert_file_cygwin_to_w32 () # and a working winepath. Returns result in func_to_host_file_result. func_convert_file_nix_to_w32 () { - $opt_debug - func_to_host_file_result="$1" + $debug_cmd + + func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_file_wine_to_w32 "$1" - func_to_host_file_result="$func_convert_core_file_wine_to_w32_result" + func_to_host_file_result=$func_convert_core_file_wine_to_w32_result fi func_convert_file_check "$1" "$func_to_host_file_result" } @@ -1747,12 +3036,13 @@ func_convert_file_nix_to_w32 () # Returns result in func_to_host_file_result. func_convert_file_msys_to_cygwin () { - $opt_debug - func_to_host_file_result="$1" + $debug_cmd + + func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_cygpath -u "$func_convert_core_msys_to_w32_result" - func_to_host_file_result="$func_cygpath_result" + func_to_host_file_result=$func_cygpath_result fi func_convert_file_check "$1" "$func_to_host_file_result" } @@ -1765,13 +3055,14 @@ func_convert_file_msys_to_cygwin () # in func_to_host_file_result. func_convert_file_nix_to_cygwin () { - $opt_debug - func_to_host_file_result="$1" + $debug_cmd + + func_to_host_file_result=$1 if test -n "$1"; then # convert from *nix to w32, then use cygpath to convert from w32 to cygwin. func_convert_core_file_wine_to_w32 "$1" func_cygpath -u "$func_convert_core_file_wine_to_w32_result" - func_to_host_file_result="$func_cygpath_result" + func_to_host_file_result=$func_cygpath_result fi func_convert_file_check "$1" "$func_to_host_file_result" } @@ -1781,7 +3072,7 @@ func_convert_file_nix_to_cygwin () ############################################# # $build to $host PATH CONVERSION FUNCTIONS # ############################################# -# invoked via `$to_host_path_cmd ARG' +# invoked via '$to_host_path_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # The result will be available in $func_to_host_path_result. @@ -1805,10 +3096,11 @@ func_convert_file_nix_to_cygwin () to_host_path_cmd= func_init_to_host_path_cmd () { - $opt_debug + $debug_cmd + if test -z "$to_host_path_cmd"; then func_stripname 'func_convert_file_' '' "$to_host_file_cmd" - to_host_path_cmd="func_convert_path_${func_stripname_result}" + to_host_path_cmd=func_convert_path_$func_stripname_result fi } @@ -1818,7 +3110,8 @@ func_init_to_host_path_cmd () # in func_to_host_path_result. func_to_host_path () { - $opt_debug + $debug_cmd + func_init_to_host_path_cmd $to_host_path_cmd "$1" } @@ -1829,7 +3122,7 @@ func_to_host_path () # Copy ARG to func_to_host_path_result. func_convert_path_noop () { - func_to_host_path_result="$1" + func_to_host_path_result=$1 } # end func_convert_path_noop @@ -1840,8 +3133,9 @@ func_convert_path_noop () # func_to_host_path_result. func_convert_path_msys_to_w32 () { - $opt_debug - func_to_host_path_result="$1" + $debug_cmd + + func_to_host_path_result=$1 if test -n "$1"; then # Remove leading and trailing path separator characters from ARG. MSYS # behavior is inconsistent here; cygpath turns them into '.;' and ';.'; @@ -1849,7 +3143,7 @@ func_convert_path_msys_to_w32 () func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" - func_to_host_path_result="$func_convert_core_msys_to_w32_result" + func_to_host_path_result=$func_convert_core_msys_to_w32_result func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" @@ -1863,8 +3157,9 @@ func_convert_path_msys_to_w32 () # func_to_host_file_result. func_convert_path_cygwin_to_w32 () { - $opt_debug - func_to_host_path_result="$1" + $debug_cmd + + func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" @@ -1883,14 +3178,15 @@ func_convert_path_cygwin_to_w32 () # a working winepath. Returns result in func_to_host_file_result. func_convert_path_nix_to_w32 () { - $opt_debug - func_to_host_path_result="$1" + $debug_cmd + + func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" - func_to_host_path_result="$func_convert_core_path_wine_to_w32_result" + func_to_host_path_result=$func_convert_core_path_wine_to_w32_result func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" @@ -1904,15 +3200,16 @@ func_convert_path_nix_to_w32 () # Returns result in func_to_host_file_result. func_convert_path_msys_to_cygwin () { - $opt_debug - func_to_host_path_result="$1" + $debug_cmd + + func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_msys_to_w32_result" - func_to_host_path_result="$func_cygpath_result" + func_to_host_path_result=$func_cygpath_result func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" @@ -1927,8 +3224,9 @@ func_convert_path_msys_to_cygwin () # func_to_host_file_result. func_convert_path_nix_to_cygwin () { - $opt_debug - func_to_host_path_result="$1" + $debug_cmd + + func_to_host_path_result=$1 if test -n "$1"; then # Remove leading and trailing path separator characters from # ARG. msys behavior is inconsistent here, cygpath turns them @@ -1937,7 +3235,7 @@ func_convert_path_nix_to_cygwin () func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result" - func_to_host_path_result="$func_cygpath_result" + func_to_host_path_result=$func_cygpath_result func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" @@ -1946,13 +3244,31 @@ func_convert_path_nix_to_cygwin () # end func_convert_path_nix_to_cygwin +# func_dll_def_p FILE +# True iff FILE is a Windows DLL '.def' file. +# Keep in sync with _LT_DLL_DEF_P in libtool.m4 +func_dll_def_p () +{ + $debug_cmd + + func_dll_def_p_tmp=`$SED -n \ + -e 's/^[ ]*//' \ + -e '/^\(;.*\)*$/d' \ + -e 's/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p' \ + -e q \ + "$1"` + test DEF = "$func_dll_def_p_tmp" +} + + # func_mode_compile arg... func_mode_compile () { - $opt_debug + $debug_cmd + # Get the compilation command and the source file. base_compile= - srcfile="$nonopt" # always keep a non-empty value in "srcfile" + srcfile=$nonopt # always keep a non-empty value in "srcfile" suppress_opt=yes suppress_output= arg_mode=normal @@ -1965,12 +3281,12 @@ func_mode_compile () case $arg_mode in arg ) # do not "continue". Instead, add this to base_compile - lastarg="$arg" + lastarg=$arg arg_mode=normal ;; target ) - libobj="$arg" + libobj=$arg arg_mode=normal continue ;; @@ -1980,7 +3296,7 @@ func_mode_compile () case $arg in -o) test -n "$libobj" && \ - func_fatal_error "you cannot specify \`-o' more than once" + func_fatal_error "you cannot specify '-o' more than once" arg_mode=target continue ;; @@ -2009,12 +3325,12 @@ func_mode_compile () func_stripname '-Wc,' '' "$arg" args=$func_stripname_result lastarg= - save_ifs="$IFS"; IFS=',' + save_ifs=$IFS; IFS=, for arg in $args; do - IFS="$save_ifs" + IFS=$save_ifs func_append_quoted lastarg "$arg" done - IFS="$save_ifs" + IFS=$save_ifs func_stripname ' ' '' "$lastarg" lastarg=$func_stripname_result @@ -2027,8 +3343,8 @@ func_mode_compile () # Accept the current argument as the source file. # The previous "srcfile" becomes the current argument. # - lastarg="$srcfile" - srcfile="$arg" + lastarg=$srcfile + srcfile=$arg ;; esac # case $arg ;; @@ -2043,13 +3359,13 @@ func_mode_compile () func_fatal_error "you must specify an argument for -Xcompile" ;; target) - func_fatal_error "you must specify a target with \`-o'" + func_fatal_error "you must specify a target with '-o'" ;; *) # Get the name of the library object. test -z "$libobj" && { func_basename "$srcfile" - libobj="$func_basename_result" + libobj=$func_basename_result } ;; esac @@ -2069,7 +3385,7 @@ func_mode_compile () case $libobj in *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;; *) - func_fatal_error "cannot determine name of library object from \`$libobj'" + func_fatal_error "cannot determine name of library object from '$libobj'" ;; esac @@ -2078,8 +3394,8 @@ func_mode_compile () for arg in $later; do case $arg in -shared) - test "$build_libtool_libs" != yes && \ - func_fatal_configuration "can not build a shared library" + test yes = "$build_libtool_libs" \ + || func_fatal_configuration "cannot build a shared library" build_old_libs=no continue ;; @@ -2105,17 +3421,17 @@ func_mode_compile () func_quote_for_eval "$libobj" test "X$libobj" != "X$func_quote_for_eval_result" \ && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \ - && func_warning "libobj name \`$libobj' may not contain shell special characters." + && func_warning "libobj name '$libobj' may not contain shell special characters." func_dirname_and_basename "$obj" "/" "" - objname="$func_basename_result" - xdir="$func_dirname_result" - lobj=${xdir}$objdir/$objname + objname=$func_basename_result + xdir=$func_dirname_result + lobj=$xdir$objdir/$objname test -z "$base_compile" && \ func_fatal_help "you must specify a compilation command" # Delete any leftover library objects. - if test "$build_old_libs" = yes; then + if test yes = "$build_old_libs"; then removelist="$obj $lobj $libobj ${libobj}T" else removelist="$lobj $libobj ${libobj}T" @@ -2127,16 +3443,16 @@ func_mode_compile () pic_mode=default ;; esac - if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then + if test no = "$pic_mode" && test pass_all != "$deplibs_check_method"; then # non-PIC code in shared libraries is not supported pic_mode=default fi # Calculate the filename of the output object if compiler does # not support -o with -c - if test "$compiler_c_o" = no; then - output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.${objext} - lockfile="$output_obj.lock" + if test no = "$compiler_c_o"; then + output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.$objext + lockfile=$output_obj.lock else output_obj= need_locks=no @@ -2145,12 +3461,12 @@ func_mode_compile () # Lock this critical section if it is needed # We use this script file to make the link, it avoids creating a new file - if test "$need_locks" = yes; then + if test yes = "$need_locks"; then until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done - elif test "$need_locks" = warn; then + elif test warn = "$need_locks"; then if test -f "$lockfile"; then $ECHO "\ *** ERROR, $lockfile exists and contains: @@ -2158,7 +3474,7 @@ func_mode_compile () This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because -your compiler does not support \`-c' and \`-o' together. If you +your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." @@ -2180,11 +3496,11 @@ compiler." qsrcfile=$func_quote_for_eval_result # Only build a PIC object if we are building libtool libraries. - if test "$build_libtool_libs" = yes; then + if test yes = "$build_libtool_libs"; then # Without this assignment, base_compile gets emptied. fbsd_hideous_sh_bug=$base_compile - if test "$pic_mode" != no; then + if test no != "$pic_mode"; then command="$base_compile $qsrcfile $pic_flag" else # Don't build PIC code @@ -2201,7 +3517,7 @@ compiler." func_show_eval_locale "$command" \ 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE' - if test "$need_locks" = warn && + if test warn = "$need_locks" && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: @@ -2212,7 +3528,7 @@ $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because -your compiler does not support \`-c' and \`-o' together. If you +your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." @@ -2228,20 +3544,20 @@ compiler." fi # Allow error messages only from the first compilation. - if test "$suppress_opt" = yes; then + if test yes = "$suppress_opt"; then suppress_output=' >/dev/null 2>&1' fi fi # Only build a position-dependent object if we build old libraries. - if test "$build_old_libs" = yes; then - if test "$pic_mode" != yes; then + if test yes = "$build_old_libs"; then + if test yes != "$pic_mode"; then # Don't build PIC code command="$base_compile $qsrcfile$pie_flag" else command="$base_compile $qsrcfile $pic_flag" fi - if test "$compiler_c_o" = yes; then + if test yes = "$compiler_c_o"; then func_append command " -o $obj" fi @@ -2250,7 +3566,7 @@ compiler." func_show_eval_locale "$command" \ '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' - if test "$need_locks" = warn && + if test warn = "$need_locks" && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: @@ -2261,7 +3577,7 @@ $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because -your compiler does not support \`-c' and \`-o' together. If you +your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." @@ -2281,7 +3597,7 @@ compiler." func_write_libtool_object "$libobj" "$objdir/$objname" "$objname" # Unlock the critical section if it was locked - if test "$need_locks" != no; then + if test no != "$need_locks"; then removelist=$lockfile $RM "$lockfile" fi @@ -2291,7 +3607,7 @@ compiler." } $opt_help || { - test "$opt_mode" = compile && func_mode_compile ${1+"$@"} + test compile = "$opt_mode" && func_mode_compile ${1+"$@"} } func_mode_help () @@ -2311,7 +3627,7 @@ func_mode_help () Remove files from the build directory. RM is the name of the program to use to delete files associated with each FILE -(typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed +(typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed to RM. If FILE is a libtool library, object or program, all the files associated @@ -2330,16 +3646,16 @@ This mode accepts the following additional options: -no-suppress do not suppress compiler output for multiple passes -prefer-pic try to build PIC objects only -prefer-non-pic try to build non-PIC objects only - -shared do not build a \`.o' file suitable for static linking - -static only build a \`.o' file suitable for static linking + -shared do not build a '.o' file suitable for static linking + -static only build a '.o' file suitable for static linking -Wc,FLAG pass FLAG directly to the compiler -COMPILE-COMMAND is a command to be used in creating a \`standard' object file +COMPILE-COMMAND is a command to be used in creating a 'standard' object file from the given SOURCEFILE. The output file name is determined by removing the directory component from -SOURCEFILE, then substituting the C source code suffix \`.c' with the -library object suffix, \`.lo'." +SOURCEFILE, then substituting the C source code suffix '.c' with the +library object suffix, '.lo'." ;; execute) @@ -2352,7 +3668,7 @@ This mode accepts the following additional options: -dlopen FILE add the directory containing FILE to the library path -This mode sets the library path environment variable according to \`-dlopen' +This mode sets the library path environment variable according to '-dlopen' flags. If any of the ARGS are libtool executable wrappers, then they are translated @@ -2371,7 +3687,7 @@ Complete the installation of libtool libraries. Each LIBDIR is a directory that contains libtool libraries. The commands that this mode executes may require superuser privileges. Use -the \`--dry-run' option if you just want to see what would be executed." +the '--dry-run' option if you just want to see what would be executed." ;; install) @@ -2381,7 +3697,7 @@ the \`--dry-run' option if you just want to see what would be executed." Install executables or libraries. INSTALL-COMMAND is the installation command. The first component should be -either the \`install' or \`cp' program. +either the 'install' or 'cp' program. The following components of INSTALL-COMMAND are treated specially: @@ -2407,7 +3723,7 @@ The following components of LINK-COMMAND are treated specially: -avoid-version do not add a version suffix if possible -bindir BINDIR specify path to binaries directory (for systems where libraries must be found in the PATH setting at runtime) - -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime + -dlopen FILE '-dlpreopen' FILE if it cannot be dlopened at runtime -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) -export-symbols SYMFILE @@ -2421,7 +3737,8 @@ The following components of LINK-COMMAND are treated specially: -no-install link a not-installable executable -no-undefined declare that a library does not refer to external symbols -o OUTPUT-FILE create OUTPUT-FILE from the specified objects - -objectlist FILE Use a list of object files found in FILE to specify objects + -objectlist FILE use a list of object files found in FILE to specify objects + -os2dllname NAME force a short DLL name on OS/2 (no effect on other OSes) -precious-files-regex REGEX don't remove output files matching REGEX -release RELEASE specify package release information @@ -2441,20 +3758,20 @@ The following components of LINK-COMMAND are treated specially: -Xlinker FLAG pass linker-specific FLAG directly to the linker -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC) -All other options (arguments beginning with \`-') are ignored. +All other options (arguments beginning with '-') are ignored. -Every other argument is treated as a filename. Files ending in \`.la' are +Every other argument is treated as a filename. Files ending in '.la' are treated as uninstalled libtool libraries, other files are standard or library object files. -If the OUTPUT-FILE ends in \`.la', then a libtool library is created, -only library objects (\`.lo' files) may be specified, and \`-rpath' is +If the OUTPUT-FILE ends in '.la', then a libtool library is created, +only library objects ('.lo' files) may be specified, and '-rpath' is required, except when creating a convenience library. -If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created -using \`ar' and \`ranlib', or on Windows using \`lib'. +If OUTPUT-FILE ends in '.a' or '.lib', then a standard library is created +using 'ar' and 'ranlib', or on Windows using 'lib'. -If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file +If OUTPUT-FILE ends in '.lo' or '.$objext', then a reloadable object file is created, otherwise an executable program is created." ;; @@ -2465,7 +3782,7 @@ is created, otherwise an executable program is created." Remove libraries from an installation directory. RM is the name of the program to use to delete files associated with each FILE -(typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed +(typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed to RM. If FILE is a libtool library, all the files associated with it are deleted. @@ -2473,17 +3790,17 @@ Otherwise, only FILE itself is deleted using RM." ;; *) - func_fatal_help "invalid operation mode \`$opt_mode'" + func_fatal_help "invalid operation mode '$opt_mode'" ;; esac echo - $ECHO "Try \`$progname --help' for more information about other modes." + $ECHO "Try '$progname --help' for more information about other modes." } # Now that we've collected a possible --mode arg, show help if necessary if $opt_help; then - if test "$opt_help" = :; then + if test : = "$opt_help"; then func_mode_help else { @@ -2491,7 +3808,7 @@ if $opt_help; then for opt_mode in compile link execute install finish uninstall clean; do func_mode_help done - } | sed -n '1p; 2,$s/^Usage:/ or: /p' + } | $SED -n '1p; 2,$s/^Usage:/ or: /p' { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do @@ -2499,7 +3816,7 @@ if $opt_help; then func_mode_help done } | - sed '1d + $SED '1d /^When reporting/,/^Report/{ H d @@ -2516,16 +3833,17 @@ fi # func_mode_execute arg... func_mode_execute () { - $opt_debug + $debug_cmd + # The first argument is the command name. - cmd="$nonopt" + cmd=$nonopt test -z "$cmd" && \ func_fatal_help "you must specify a COMMAND" # Handle -dlopen flags immediately. for file in $opt_dlopen; do test -f "$file" \ - || func_fatal_help "\`$file' is not a file" + || func_fatal_help "'$file' is not a file" dir= case $file in @@ -2535,7 +3853,7 @@ func_mode_execute () # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ - || func_fatal_help "\`$lib' is not a valid libtool archive" + || func_fatal_help "'$lib' is not a valid libtool archive" # Read the libtool library. dlname= @@ -2546,18 +3864,18 @@ func_mode_execute () if test -z "$dlname"; then # Warn if it was a shared library. test -n "$library_names" && \ - func_warning "\`$file' was not linked with \`-export-dynamic'" + func_warning "'$file' was not linked with '-export-dynamic'" continue fi func_dirname "$file" "" "." - dir="$func_dirname_result" + dir=$func_dirname_result if test -f "$dir/$objdir/$dlname"; then func_append dir "/$objdir" else if test ! -f "$dir/$dlname"; then - func_fatal_error "cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" + func_fatal_error "cannot find '$dlname' in '$dir' or '$dir/$objdir'" fi fi ;; @@ -2565,18 +3883,18 @@ func_mode_execute () *.lo) # Just add the directory containing the .lo file. func_dirname "$file" "" "." - dir="$func_dirname_result" + dir=$func_dirname_result ;; *) - func_warning "\`-dlopen' is ignored for non-libtool libraries and objects" + func_warning "'-dlopen' is ignored for non-libtool libraries and objects" continue ;; esac # Get the absolute pathname. absdir=`cd "$dir" && pwd` - test -n "$absdir" && dir="$absdir" + test -n "$absdir" && dir=$absdir # Now add the directory to shlibpath_var. if eval "test -z \"\$$shlibpath_var\""; then @@ -2588,7 +3906,7 @@ func_mode_execute () # This variable tells wrapper scripts just to set shlibpath_var # rather than running their programs. - libtool_execute_magic="$magic" + libtool_execute_magic=$magic # Check if any of the arguments is a wrapper script. args= @@ -2601,12 +3919,12 @@ func_mode_execute () if func_ltwrapper_script_p "$file"; then func_source "$file" # Transform arg to wrapped name. - file="$progdir/$program" + file=$progdir/$program elif func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" func_source "$func_ltwrapper_scriptname_result" # Transform arg to wrapped name. - file="$progdir/$program" + file=$progdir/$program fi ;; esac @@ -2614,7 +3932,15 @@ func_mode_execute () func_append_quoted args "$file" done - if test "X$opt_dry_run" = Xfalse; then + if $opt_dry_run; then + # Display what would be done. + if test -n "$shlibpath_var"; then + eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" + echo "export $shlibpath_var" + fi + $ECHO "$cmd$args" + exit $EXIT_SUCCESS + else if test -n "$shlibpath_var"; then # Export the shlibpath_var. eval "export $shlibpath_var" @@ -2631,25 +3957,18 @@ func_mode_execute () done # Now prepare to actually exec the command. - exec_cmd="\$cmd$args" - else - # Display what would be done. - if test -n "$shlibpath_var"; then - eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" - echo "export $shlibpath_var" - fi - $ECHO "$cmd$args" - exit $EXIT_SUCCESS + exec_cmd=\$cmd$args fi } -test "$opt_mode" = execute && func_mode_execute ${1+"$@"} +test execute = "$opt_mode" && func_mode_execute ${1+"$@"} # func_mode_finish arg... func_mode_finish () { - $opt_debug + $debug_cmd + libs= libdirs= admincmds= @@ -2663,11 +3982,11 @@ func_mode_finish () if func_lalib_unsafe_p "$opt"; then func_append libs " $opt" else - func_warning "\`$opt' is not a valid libtool archive" + func_warning "'$opt' is not a valid libtool archive" fi else - func_fatal_error "invalid argument \`$opt'" + func_fatal_error "invalid argument '$opt'" fi done @@ -2682,12 +4001,12 @@ func_mode_finish () # Remove sysroot references if $opt_dry_run; then for lib in $libs; do - echo "removing references to $lt_sysroot and \`=' prefixes from $lib" + echo "removing references to $lt_sysroot and '=' prefixes from $lib" done else tmpdir=`func_mktempdir` for lib in $libs; do - sed -e "${sysroot_cmd} s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ + $SED -e "$sysroot_cmd s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ > $tmpdir/tmp-la mv -f $tmpdir/tmp-la $lib done @@ -2712,7 +4031,7 @@ func_mode_finish () fi # Exit here if they wanted silent mode. - $opt_silent && exit $EXIT_SUCCESS + $opt_quiet && exit $EXIT_SUCCESS if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then echo "----------------------------------------------------------------------" @@ -2723,27 +4042,27 @@ func_mode_finish () echo echo "If you ever happen to want to link against installed libraries" echo "in a given directory, LIBDIR, you must either use libtool, and" - echo "specify the full pathname of the library, or use the \`-LLIBDIR'" + echo "specify the full pathname of the library, or use the '-LLIBDIR'" echo "flag during linking and do at least one of the following:" if test -n "$shlibpath_var"; then - echo " - add LIBDIR to the \`$shlibpath_var' environment variable" + echo " - add LIBDIR to the '$shlibpath_var' environment variable" echo " during execution" fi if test -n "$runpath_var"; then - echo " - add LIBDIR to the \`$runpath_var' environment variable" + echo " - add LIBDIR to the '$runpath_var' environment variable" echo " during linking" fi if test -n "$hardcode_libdir_flag_spec"; then libdir=LIBDIR eval flag=\"$hardcode_libdir_flag_spec\" - $ECHO " - use the \`$flag' linker flag" + $ECHO " - use the '$flag' linker flag" fi if test -n "$admincmds"; then $ECHO " - have your system administrator run these commands:$admincmds" fi if test -f /etc/ld.so.conf; then - echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'" + echo " - have your system administrator add LIBDIR to '/etc/ld.so.conf'" fi echo @@ -2762,18 +4081,20 @@ func_mode_finish () exit $EXIT_SUCCESS } -test "$opt_mode" = finish && func_mode_finish ${1+"$@"} +test finish = "$opt_mode" && func_mode_finish ${1+"$@"} # func_mode_install arg... func_mode_install () { - $opt_debug + $debug_cmd + # There may be an optional sh(1) argument at the beginning of # install_prog (especially on Windows NT). - if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh || + if test "$SHELL" = "$nonopt" || test /bin/sh = "$nonopt" || # Allow the use of GNU shtool's install command. - case $nonopt in *shtool*) :;; *) false;; esac; then + case $nonopt in *shtool*) :;; *) false;; esac + then # Aesthetically quote it. func_quote_for_eval "$nonopt" install_prog="$func_quote_for_eval_result " @@ -2800,7 +4121,7 @@ func_mode_install () opts= prev= install_type= - isdir=no + isdir=false stripme= no_mode=: for arg @@ -2813,7 +4134,7 @@ func_mode_install () fi case $arg in - -d) isdir=yes ;; + -d) isdir=: ;; -f) if $install_cp; then :; else prev=$arg @@ -2831,7 +4152,7 @@ func_mode_install () *) # If the previous option needed an argument, then skip it. if test -n "$prev"; then - if test "x$prev" = x-m && test -n "$install_override_mode"; then + if test X-m = "X$prev" && test -n "$install_override_mode"; then arg2=$install_override_mode no_mode=false fi @@ -2856,7 +4177,7 @@ func_mode_install () func_fatal_help "you must specify an install program" test -n "$prev" && \ - func_fatal_help "the \`$prev' option requires an argument" + func_fatal_help "the '$prev' option requires an argument" if test -n "$install_override_mode" && $no_mode; then if $install_cp; then :; else @@ -2878,19 +4199,19 @@ func_mode_install () dest=$func_stripname_result # Check to see that the destination is a directory. - test -d "$dest" && isdir=yes - if test "$isdir" = yes; then - destdir="$dest" + test -d "$dest" && isdir=: + if $isdir; then + destdir=$dest destname= else func_dirname_and_basename "$dest" "" "." - destdir="$func_dirname_result" - destname="$func_basename_result" + destdir=$func_dirname_result + destname=$func_basename_result # Not a directory, so check to see that there is only one file specified. set dummy $files; shift test "$#" -gt 1 && \ - func_fatal_help "\`$dest' is not a directory" + func_fatal_help "'$dest' is not a directory" fi case $destdir in [\\/]* | [A-Za-z]:[\\/]*) ;; @@ -2899,7 +4220,7 @@ func_mode_install () case $file in *.lo) ;; *) - func_fatal_help "\`$destdir' must be an absolute directory name" + func_fatal_help "'$destdir' must be an absolute directory name" ;; esac done @@ -2908,7 +4229,7 @@ func_mode_install () # This variable tells wrapper scripts just to set variables rather # than running their programs. - libtool_install_magic="$magic" + libtool_install_magic=$magic staticlibs= future_libdirs= @@ -2928,7 +4249,7 @@ func_mode_install () # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ - || func_fatal_help "\`$file' is not a valid libtool archive" + || func_fatal_help "'$file' is not a valid libtool archive" library_names= old_library= @@ -2950,7 +4271,7 @@ func_mode_install () fi func_dirname "$file" "/" "" - dir="$func_dirname_result" + dir=$func_dirname_result func_append dir "$objdir" if test -n "$relink_command"; then @@ -2964,7 +4285,7 @@ func_mode_install () # are installed into $libdir/../bin (currently, that works fine) # but it's something to keep an eye on. test "$inst_prefix_dir" = "$destdir" && \ - func_fatal_error "error: cannot install \`$file' to a directory not ending in $libdir" + func_fatal_error "error: cannot install '$file' to a directory not ending in $libdir" if test -n "$inst_prefix_dir"; then # Stick the inst_prefix_dir data into the link command. @@ -2973,29 +4294,36 @@ func_mode_install () relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"` fi - func_warning "relinking \`$file'" + func_warning "relinking '$file'" func_show_eval "$relink_command" \ - 'func_fatal_error "error: relink \`$file'\'' with the above command before installing it"' + 'func_fatal_error "error: relink '\''$file'\'' with the above command before installing it"' fi # See the names of the shared library. set dummy $library_names; shift if test -n "$1"; then - realname="$1" + realname=$1 shift - srcname="$realname" - test -n "$relink_command" && srcname="$realname"T + srcname=$realname + test -n "$relink_command" && srcname=${realname}T # Install the shared library and build the symlinks. func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \ 'exit $?' - tstripme="$stripme" + tstripme=$stripme case $host_os in cygwin* | mingw* | pw32* | cegcc*) case $realname in *.dll.a) - tstripme="" + tstripme= + ;; + esac + ;; + os2*) + case $realname in + *_dll.a) + tstripme= ;; esac ;; @@ -3006,7 +4334,7 @@ func_mode_install () if test "$#" -gt 0; then # Delete the old symlinks, and create new ones. - # Try `ln -sf' first, because the `ln' binary might depend on + # Try 'ln -sf' first, because the 'ln' binary might depend on # the symlink we replace! Solaris /bin/ln does not understand -f, # so we also need to try rm && ln -s. for linkname @@ -3017,14 +4345,14 @@ func_mode_install () fi # Do each command in the postinstall commands. - lib="$destdir/$realname" + lib=$destdir/$realname func_execute_cmds "$postinstall_cmds" 'exit $?' fi # Install the pseudo-library for information purposes. func_basename "$file" - name="$func_basename_result" - instname="$dir/$name"i + name=$func_basename_result + instname=$dir/${name}i func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' # Maybe install the static library, too. @@ -3036,11 +4364,11 @@ func_mode_install () # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then - destfile="$destdir/$destname" + destfile=$destdir/$destname else func_basename "$file" - destfile="$func_basename_result" - destfile="$destdir/$destfile" + destfile=$func_basename_result + destfile=$destdir/$destfile fi # Deduce the name of the destination old-style object file. @@ -3050,11 +4378,11 @@ func_mode_install () staticdest=$func_lo2o_result ;; *.$objext) - staticdest="$destfile" + staticdest=$destfile destfile= ;; *) - func_fatal_help "cannot copy a libtool object to \`$destfile'" + func_fatal_help "cannot copy a libtool object to '$destfile'" ;; esac @@ -3063,7 +4391,7 @@ func_mode_install () func_show_eval "$install_prog $file $destfile" 'exit $?' # Install the old object if enabled. - if test "$build_old_libs" = yes; then + if test yes = "$build_old_libs"; then # Deduce the name of the old-style object file. func_lo2o "$file" staticobj=$func_lo2o_result @@ -3075,23 +4403,23 @@ func_mode_install () *) # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then - destfile="$destdir/$destname" + destfile=$destdir/$destname else func_basename "$file" - destfile="$func_basename_result" - destfile="$destdir/$destfile" + destfile=$func_basename_result + destfile=$destdir/$destfile fi # If the file is missing, and there is a .exe on the end, strip it # because it is most likely a libtool script we actually want to # install - stripped_ext="" + stripped_ext= case $file in *.exe) if test ! -f "$file"; then func_stripname '' '.exe' "$file" file=$func_stripname_result - stripped_ext=".exe" + stripped_ext=.exe fi ;; esac @@ -3119,19 +4447,19 @@ func_mode_install () # Check the variables that should have been set. test -z "$generated_by_libtool_version" && \ - func_fatal_error "invalid libtool wrapper script \`$wrapper'" + func_fatal_error "invalid libtool wrapper script '$wrapper'" - finalize=yes + finalize=: for lib in $notinst_deplibs; do # Check to see that each library is installed. libdir= if test -f "$lib"; then func_source "$lib" fi - libfile="$libdir/"`$ECHO "$lib" | $SED 's%^.*/%%g'` ### testsuite: skip nested quoting test + libfile=$libdir/`$ECHO "$lib" | $SED 's%^.*/%%g'` if test -n "$libdir" && test ! -f "$libfile"; then - func_warning "\`$lib' has not been installed in \`$libdir'" - finalize=no + func_warning "'$lib' has not been installed in '$libdir'" + finalize=false fi done @@ -3139,29 +4467,29 @@ func_mode_install () func_source "$wrapper" outputname= - if test "$fast_install" = no && test -n "$relink_command"; then + if test no = "$fast_install" && test -n "$relink_command"; then $opt_dry_run || { - if test "$finalize" = yes; then + if $finalize; then tmpdir=`func_mktempdir` func_basename "$file$stripped_ext" - file="$func_basename_result" - outputname="$tmpdir/$file" + file=$func_basename_result + outputname=$tmpdir/$file # Replace the output file specification. relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'` - $opt_silent || { + $opt_quiet || { func_quote_for_expand "$relink_command" eval "func_echo $func_quote_for_expand_result" } if eval "$relink_command"; then : else - func_error "error: relink \`$file' with the above command before installing it" + func_error "error: relink '$file' with the above command before installing it" $opt_dry_run || ${RM}r "$tmpdir" continue fi - file="$outputname" + file=$outputname else - func_warning "cannot relink \`$file'" + func_warning "cannot relink '$file'" fi } else @@ -3198,10 +4526,10 @@ func_mode_install () for file in $staticlibs; do func_basename "$file" - name="$func_basename_result" + name=$func_basename_result # Set up the ranlib parameters. - oldlib="$destdir/$name" + oldlib=$destdir/$name func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 tool_oldlib=$func_to_tool_file_result @@ -3216,18 +4544,18 @@ func_mode_install () done test -n "$future_libdirs" && \ - func_warning "remember to run \`$progname --finish$future_libdirs'" + func_warning "remember to run '$progname --finish$future_libdirs'" if test -n "$current_libdirs"; then # Maybe just do a dry run. $opt_dry_run && current_libdirs=" -n$current_libdirs" - exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs' + exec_cmd='$SHELL "$progpath" $preserve_args --finish$current_libdirs' else exit $EXIT_SUCCESS fi } -test "$opt_mode" = install && func_mode_install ${1+"$@"} +test install = "$opt_mode" && func_mode_install ${1+"$@"} # func_generate_dlsyms outputname originator pic_p @@ -3235,16 +4563,17 @@ test "$opt_mode" = install && func_mode_install ${1+"$@"} # a dlpreopen symbol table. func_generate_dlsyms () { - $opt_debug - my_outputname="$1" - my_originator="$2" - my_pic_p="${3-no}" - my_prefix=`$ECHO "$my_originator" | sed 's%[^a-zA-Z0-9]%_%g'` + $debug_cmd + + my_outputname=$1 + my_originator=$2 + my_pic_p=${3-false} + my_prefix=`$ECHO "$my_originator" | $SED 's%[^a-zA-Z0-9]%_%g'` my_dlsyms= - if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then + if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then if test -n "$NM" && test -n "$global_symbol_pipe"; then - my_dlsyms="${my_outputname}S.c" + my_dlsyms=${my_outputname}S.c else func_error "not configured to extract global symbols from dlpreopened files" fi @@ -3255,7 +4584,7 @@ func_generate_dlsyms () "") ;; *.c) # Discover the nlist of each of the dlfiles. - nlist="$output_objdir/${my_outputname}.nm" + nlist=$output_objdir/$my_outputname.nm func_show_eval "$RM $nlist ${nlist}S ${nlist}T" @@ -3263,34 +4592,36 @@ func_generate_dlsyms () func_verbose "creating $output_objdir/$my_dlsyms" $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ -/* $my_dlsyms - symbol resolution table for \`$my_outputname' dlsym emulation. */ -/* Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION */ +/* $my_dlsyms - symbol resolution table for '$my_outputname' dlsym emulation. */ +/* Generated by $PROGRAM (GNU $PACKAGE) $VERSION */ #ifdef __cplusplus extern \"C\" { #endif -#if defined(__GNUC__) && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) +#if defined __GNUC__ && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) #pragma GCC diagnostic ignored \"-Wstrict-prototypes\" #endif /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ -#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) -/* DATA imports from DLLs on WIN32 con't be const, because runtime +#if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE +/* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST -#elif defined(__osf__) +#elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else # define LT_DLSYM_CONST const #endif +#define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) + /* External symbol declarations for the compiler. */\ " - if test "$dlself" = yes; then - func_verbose "generating symbol list for \`$output'" + if test yes = "$dlself"; then + func_verbose "generating symbol list for '$output'" $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" @@ -3298,7 +4629,7 @@ extern \"C\" { progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP` for progfile in $progfiles; do func_to_tool_file "$progfile" func_convert_file_msys_to_w32 - func_verbose "extracting global C symbols from \`$func_to_tool_file_result'" + func_verbose "extracting global C symbols from '$func_to_tool_file_result'" $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'" done @@ -3318,10 +4649,10 @@ extern \"C\" { # Prepare the list of exported symbols if test -z "$export_symbols"; then - export_symbols="$output_objdir/$outputname.exp" + export_symbols=$output_objdir/$outputname.exp $opt_dry_run || { $RM $export_symbols - eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' + eval "$SED -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' case $host in *cygwin* | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' @@ -3331,7 +4662,7 @@ extern \"C\" { } else $opt_dry_run || { - eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' + eval "$SED -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' case $host in @@ -3345,22 +4676,22 @@ extern \"C\" { fi for dlprefile in $dlprefiles; do - func_verbose "extracting global C symbols from \`$dlprefile'" + func_verbose "extracting global C symbols from '$dlprefile'" func_basename "$dlprefile" - name="$func_basename_result" + name=$func_basename_result case $host in *cygwin* | *mingw* | *cegcc* ) # if an import library, we need to obtain dlname if func_win32_import_lib_p "$dlprefile"; then func_tr_sh "$dlprefile" eval "curr_lafile=\$libfile_$func_tr_sh_result" - dlprefile_dlbasename="" + dlprefile_dlbasename= if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then # Use subshell, to avoid clobbering current variable values dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"` - if test -n "$dlprefile_dlname" ; then + if test -n "$dlprefile_dlname"; then func_basename "$dlprefile_dlname" - dlprefile_dlbasename="$func_basename_result" + dlprefile_dlbasename=$func_basename_result else # no lafile. user explicitly requested -dlpreopen . $sharedlib_from_linklib_cmd "$dlprefile" @@ -3368,7 +4699,7 @@ extern \"C\" { fi fi $opt_dry_run || { - if test -n "$dlprefile_dlbasename" ; then + if test -n "$dlprefile_dlbasename"; then eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"' else func_warning "Could not compute DLL name from $name" @@ -3424,6 +4755,11 @@ extern \"C\" { echo '/* NONE */' >> "$output_objdir/$my_dlsyms" fi + func_show_eval '$RM "${nlist}I"' + if test -n "$global_symbol_to_import"; then + eval "$global_symbol_to_import"' < "$nlist"S > "$nlist"I' + fi + echo >> "$output_objdir/$my_dlsyms" "\ /* The mapping between symbol names and symbols. */ @@ -3432,11 +4768,30 @@ typedef struct { void *address; } lt_dlsymlist; extern LT_DLSYM_CONST lt_dlsymlist -lt_${my_prefix}_LTX_preloaded_symbols[]; +lt_${my_prefix}_LTX_preloaded_symbols[];\ +" + + if test -s "$nlist"I; then + echo >> "$output_objdir/$my_dlsyms" "\ +static void lt_syminit(void) +{ + LT_DLSYM_CONST lt_dlsymlist *symbol = lt_${my_prefix}_LTX_preloaded_symbols; + for (; symbol->name; ++symbol) + {" + $SED 's/.*/ if (STREQ (symbol->name, \"&\")) symbol->address = (void *) \&&;/' < "$nlist"I >> "$output_objdir/$my_dlsyms" + echo >> "$output_objdir/$my_dlsyms" "\ + } +}" + fi + echo >> "$output_objdir/$my_dlsyms" "\ LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[] = -{\ - { \"$my_originator\", (void *) 0 }," +{ {\"$my_originator\", (void *) 0}," + + if test -s "$nlist"I; then + echo >> "$output_objdir/$my_dlsyms" "\ + {\"@INIT@\", (void *) <_syminit}," + fi case $need_lib_prefix in no) @@ -3478,9 +4833,7 @@ static const void *lt_preloaded_setup() { *-*-hpux*) pic_flag_for_symtable=" $pic_flag" ;; *) - if test "X$my_pic_p" != Xno; then - pic_flag_for_symtable=" $pic_flag" - fi + $my_pic_p && pic_flag_for_symtable=" $pic_flag" ;; esac ;; @@ -3497,10 +4850,10 @@ static const void *lt_preloaded_setup() { func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' # Clean up the generated files. - func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T"' + func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T" "${nlist}I"' # Transform the symbol file into the correct name. - symfileobj="$output_objdir/${my_outputname}S.$objext" + symfileobj=$output_objdir/${my_outputname}S.$objext case $host in *cygwin* | *mingw* | *cegcc* ) if test -f "$output_objdir/$my_outputname.def"; then @@ -3518,7 +4871,7 @@ static const void *lt_preloaded_setup() { esac ;; *) - func_fatal_error "unknown suffix for \`$my_dlsyms'" + func_fatal_error "unknown suffix for '$my_dlsyms'" ;; esac else @@ -3532,6 +4885,32 @@ static const void *lt_preloaded_setup() { fi } +# func_cygming_gnu_implib_p ARG +# This predicate returns with zero status (TRUE) if +# ARG is a GNU/binutils-style import library. Returns +# with nonzero status (FALSE) otherwise. +func_cygming_gnu_implib_p () +{ + $debug_cmd + + func_to_tool_file "$1" func_convert_file_msys_to_w32 + func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` + test -n "$func_cygming_gnu_implib_tmp" +} + +# func_cygming_ms_implib_p ARG +# This predicate returns with zero status (TRUE) if +# ARG is an MS-style import library. Returns +# with nonzero status (FALSE) otherwise. +func_cygming_ms_implib_p () +{ + $debug_cmd + + func_to_tool_file "$1" func_convert_file_msys_to_w32 + func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` + test -n "$func_cygming_ms_implib_tmp" +} + # func_win32_libid arg # return the library type of file 'arg' # @@ -3541,8 +4920,9 @@ static const void *lt_preloaded_setup() { # Despite the name, also deal with 64 bit binaries. func_win32_libid () { - $opt_debug - win32_libid_type="unknown" + $debug_cmd + + win32_libid_type=unknown win32_fileres=`file -L $1 2>/dev/null` case $win32_fileres in *ar\ archive\ import\ library*) # definitely import @@ -3552,16 +4932,29 @@ func_win32_libid () # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD. if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then - func_to_tool_file "$1" func_convert_file_msys_to_w32 - win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | - $SED -n -e ' + case $nm_interface in + "MS dumpbin") + if func_cygming_ms_implib_p "$1" || + func_cygming_gnu_implib_p "$1" + then + win32_nmres=import + else + win32_nmres= + fi + ;; + *) + func_to_tool_file "$1" func_convert_file_msys_to_w32 + win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | + $SED -n -e ' 1,100{ / I /{ - s,.*,import, + s|.*|import| p q } }'` + ;; + esac case $win32_nmres in import*) win32_libid_type="x86 archive import";; *) win32_libid_type="x86 archive static";; @@ -3593,7 +4986,8 @@ func_win32_libid () # $sharedlib_from_linklib_result func_cygming_dll_for_implib () { - $opt_debug + $debug_cmd + sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"` } @@ -3610,7 +5004,8 @@ func_cygming_dll_for_implib () # specified import library. func_cygming_dll_for_implib_fallback_core () { - $opt_debug + $debug_cmd + match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"` $OBJDUMP -s --section "$1" "$2" 2>/dev/null | $SED '/^Contents of section '"$match_literal"':/{ @@ -3646,8 +5041,8 @@ func_cygming_dll_for_implib_fallback_core () /./p' | # we now have a list, one entry per line, of the stringified # contents of the appropriate section of all members of the - # archive which possess that section. Heuristic: eliminate - # all those which have a first or second character that is + # archive that possess that section. Heuristic: eliminate + # all those that have a first or second character that is # a '.' (that is, objdump's representation of an unprintable # character.) This should work for all archives with less than # 0x302f exports -- but will fail for DLLs whose name actually @@ -3658,30 +5053,6 @@ func_cygming_dll_for_implib_fallback_core () $SED -e '/^\./d;/^.\./d;q' } -# func_cygming_gnu_implib_p ARG -# This predicate returns with zero status (TRUE) if -# ARG is a GNU/binutils-style import library. Returns -# with nonzero status (FALSE) otherwise. -func_cygming_gnu_implib_p () -{ - $opt_debug - func_to_tool_file "$1" func_convert_file_msys_to_w32 - func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` - test -n "$func_cygming_gnu_implib_tmp" -} - -# func_cygming_ms_implib_p ARG -# This predicate returns with zero status (TRUE) if -# ARG is an MS-style import library. Returns -# with nonzero status (FALSE) otherwise. -func_cygming_ms_implib_p () -{ - $opt_debug - func_to_tool_file "$1" func_convert_file_msys_to_w32 - func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` - test -n "$func_cygming_ms_implib_tmp" -} - # func_cygming_dll_for_implib_fallback ARG # Platform-specific function to extract the # name of the DLL associated with the specified @@ -3695,16 +5066,17 @@ func_cygming_ms_implib_p () # $sharedlib_from_linklib_result func_cygming_dll_for_implib_fallback () { - $opt_debug - if func_cygming_gnu_implib_p "$1" ; then + $debug_cmd + + if func_cygming_gnu_implib_p "$1"; then # binutils import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"` - elif func_cygming_ms_implib_p "$1" ; then + elif func_cygming_ms_implib_p "$1"; then # ms-generated import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"` else # unknown - sharedlib_from_linklib_result="" + sharedlib_from_linklib_result= fi } @@ -3712,10 +5084,11 @@ func_cygming_dll_for_implib_fallback () # func_extract_an_archive dir oldlib func_extract_an_archive () { - $opt_debug - f_ex_an_ar_dir="$1"; shift - f_ex_an_ar_oldlib="$1" - if test "$lock_old_archive_extraction" = yes; then + $debug_cmd + + f_ex_an_ar_dir=$1; shift + f_ex_an_ar_oldlib=$1 + if test yes = "$lock_old_archive_extraction"; then lockfile=$f_ex_an_ar_oldlib.lock until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" @@ -3724,7 +5097,7 @@ func_extract_an_archive () fi func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \ 'stat=$?; rm -f "$lockfile"; exit $stat' - if test "$lock_old_archive_extraction" = yes; then + if test yes = "$lock_old_archive_extraction"; then $opt_dry_run || rm -f "$lockfile" fi if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then @@ -3738,22 +5111,23 @@ func_extract_an_archive () # func_extract_archives gentop oldlib ... func_extract_archives () { - $opt_debug - my_gentop="$1"; shift + $debug_cmd + + my_gentop=$1; shift my_oldlibs=${1+"$@"} - my_oldobjs="" - my_xlib="" - my_xabs="" - my_xdir="" + my_oldobjs= + my_xlib= + my_xabs= + my_xdir= for my_xlib in $my_oldlibs; do # Extract the objects. case $my_xlib in - [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;; + [\\/]* | [A-Za-z]:[\\/]*) my_xabs=$my_xlib ;; *) my_xabs=`pwd`"/$my_xlib" ;; esac func_basename "$my_xlib" - my_xlib="$func_basename_result" + my_xlib=$func_basename_result my_xlib_u=$my_xlib while :; do case " $extracted_archives " in @@ -3765,7 +5139,7 @@ func_extract_archives () esac done extracted_archives="$extracted_archives $my_xlib_u" - my_xdir="$my_gentop/$my_xlib_u" + my_xdir=$my_gentop/$my_xlib_u func_mkdir_p "$my_xdir" @@ -3778,22 +5152,23 @@ func_extract_archives () cd $my_xdir || exit $? darwin_archive=$my_xabs darwin_curdir=`pwd` - darwin_base_archive=`basename "$darwin_archive"` + func_basename "$darwin_archive" + darwin_base_archive=$func_basename_result darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` if test -n "$darwin_arches"; then darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` darwin_arch= func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" - for darwin_arch in $darwin_arches ; do - func_mkdir_p "unfat-$$/${darwin_base_archive}-${darwin_arch}" - $LIPO -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}" - cd "unfat-$$/${darwin_base_archive}-${darwin_arch}" - func_extract_an_archive "`pwd`" "${darwin_base_archive}" + for darwin_arch in $darwin_arches; do + func_mkdir_p "unfat-$$/$darwin_base_archive-$darwin_arch" + $LIPO -thin $darwin_arch -output "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" "$darwin_archive" + cd "unfat-$$/$darwin_base_archive-$darwin_arch" + func_extract_an_archive "`pwd`" "$darwin_base_archive" cd "$darwin_curdir" - $RM "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" + $RM "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" done # $darwin_arches ## Okay now we've a bunch of thin objects, gotta fatten them up :) - darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$basename" | sort -u` + darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$sed_basename" | sort -u` darwin_file= darwin_files= for darwin_file in $darwin_filelist; do @@ -3815,7 +5190,7 @@ func_extract_archives () my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP` done - func_extract_archives_result="$my_oldobjs" + func_extract_archives_result=$my_oldobjs } @@ -3830,7 +5205,7 @@ func_extract_archives () # # ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR # variable will take. If 'yes', then the emitted script -# will assume that the directory in which it is stored is +# will assume that the directory where it is stored is # the $objdir directory. This is a cygwin/mingw-specific # behavior. func_emit_wrapper () @@ -3841,7 +5216,7 @@ func_emit_wrapper () #! $SHELL # $output - temporary wrapper script for $objdir/$outputname -# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION +# Generated by $PROGRAM (GNU $PACKAGE) $VERSION # # The $output program cannot be directly executed until all the libtool # libraries that it depends on are installed. @@ -3898,9 +5273,9 @@ _LTECHO_EOF' # Very basic option parsing. These options are (a) specific to # the libtool wrapper, (b) are identical between the wrapper -# /script/ and the wrapper /executable/ which is used only on +# /script/ and the wrapper /executable/ that is used only on # windows platforms, and (c) all begin with the string "--lt-" -# (application programs are unlikely to have options which match +# (application programs are unlikely to have options that match # this pattern). # # There are only two supported options: --lt-debug and @@ -3933,7 +5308,7 @@ func_parse_lt_options () # Print the debug banner immediately: if test -n \"\$lt_option_debug\"; then - echo \"${outputname}:${output}:\${LINENO}: libtool wrapper (GNU $PACKAGE$TIMESTAMP) $VERSION\" 1>&2 + echo \"$outputname:$output:\$LINENO: libtool wrapper (GNU $PACKAGE) $VERSION\" 1>&2 fi } @@ -3944,7 +5319,7 @@ func_lt_dump_args () lt_dump_args_N=1; for lt_arg do - \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[\$lt_dump_args_N]: \$lt_arg\" + \$ECHO \"$outputname:$output:\$LINENO: newargv[\$lt_dump_args_N]: \$lt_arg\" lt_dump_args_N=\`expr \$lt_dump_args_N + 1\` done } @@ -3958,7 +5333,7 @@ func_exec_program_core () *-*-mingw | *-*-os2* | *-cegcc*) $ECHO "\ if test -n \"\$lt_option_debug\"; then - \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir\\\\\$program\" 1>&2 + \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir\\\\\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} @@ -3968,7 +5343,7 @@ func_exec_program_core () *) $ECHO "\ if test -n \"\$lt_option_debug\"; then - \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir/\$program\" 1>&2 + \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir/\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir/\$program\" \${1+\"\$@\"} @@ -4043,13 +5418,13 @@ func_exec_program () test -n \"\$absdir\" && thisdir=\"\$absdir\" " - if test "$fast_install" = yes; then + if test yes = "$fast_install"; then $ECHO "\ program=lt-'$outputname'$exeext progdir=\"\$thisdir/$objdir\" if test ! -f \"\$progdir/\$program\" || - { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\ + { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | $SED 1q\`; \\ test \"X\$file\" != \"X\$progdir/\$program\"; }; then file=\"\$\$-\$program\" @@ -4066,7 +5441,7 @@ func_exec_program () if test -n \"\$relink_command\"; then if relink_command_output=\`eval \$relink_command 2>&1\`; then : else - $ECHO \"\$relink_command_output\" >&2 + \$ECHO \"\$relink_command_output\" >&2 $RM \"\$progdir/\$file\" exit 1 fi @@ -4101,7 +5476,7 @@ func_exec_program () fi # Export our shlibpath_var if we have one. - if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then + if test yes = "$shlibpath_overrides_runpath" && test -n "$shlibpath_var" && test -n "$temp_rpath"; then $ECHO "\ # Add our own library path to $shlibpath_var $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" @@ -4121,7 +5496,7 @@ func_exec_program () fi else # The program doesn't exist. - \$ECHO \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2 + \$ECHO \"\$0: error: '\$progdir/\$program' does not exist\" 1>&2 \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 exit 1 @@ -4140,7 +5515,7 @@ func_emit_cwrapperexe_src () cat < #include +#define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) + /* declarations of non-ANSI functions */ -#if defined(__MINGW32__) +#if defined __MINGW32__ # ifdef __STRICT_ANSI__ int _putenv (const char *); # endif -#elif defined(__CYGWIN__) +#elif defined __CYGWIN__ # ifdef __STRICT_ANSI__ char *realpath (const char *, char *); int putenv (char *); int setenv (const char *, const char *, int); # endif -/* #elif defined (other platforms) ... */ +/* #elif defined other_platform || defined ... */ #endif /* portability defines, excluding path handling macros */ -#if defined(_MSC_VER) +#if defined _MSC_VER # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv # define S_IXUSR _S_IEXEC -# ifndef _INTPTR_T_DEFINED -# define _INTPTR_T_DEFINED -# define intptr_t int -# endif -#elif defined(__MINGW32__) +#elif defined __MINGW32__ # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv -#elif defined(__CYGWIN__) +#elif defined __CYGWIN__ # define HAVE_SETENV # define FOPEN_WB "wb" -/* #elif defined (other platforms) ... */ +/* #elif defined other platforms ... */ #endif -#if defined(PATH_MAX) +#if defined PATH_MAX # define LT_PATHMAX PATH_MAX -#elif defined(MAXPATHLEN) +#elif defined MAXPATHLEN # define LT_PATHMAX MAXPATHLEN #else # define LT_PATHMAX 1024 @@ -4234,8 +5607,8 @@ int setenv (const char *, const char *, int); # define PATH_SEPARATOR ':' #endif -#if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \ - defined (__OS2__) +#if defined _WIN32 || defined __MSDOS__ || defined __DJGPP__ || \ + defined __OS2__ # define HAVE_DOS_BASED_FILE_SYSTEM # define FOPEN_WB "wb" # ifndef DIR_SEPARATOR_2 @@ -4268,10 +5641,10 @@ int setenv (const char *, const char *, int); #define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) #define XFREE(stale) do { \ - if (stale) { free ((void *) stale); stale = 0; } \ + if (stale) { free (stale); stale = 0; } \ } while (0) -#if defined(LT_DEBUGWRAPPER) +#if defined LT_DEBUGWRAPPER static int lt_debug = 1; #else static int lt_debug = 0; @@ -4300,11 +5673,16 @@ void lt_dump_script (FILE *f); EOF cat < 0) && IS_PATH_SEPARATOR (new_value[len-1])) + size_t len = strlen (new_value); + while ((len > 0) && IS_PATH_SEPARATOR (new_value[len-1])) { - new_value[len-1] = '\0'; + new_value[--len] = '\0'; } lt_setenv (name, new_value); XFREE (new_value); @@ -5082,27 +6460,47 @@ EOF # True if ARG is an import lib, as indicated by $file_magic_cmd func_win32_import_lib_p () { - $opt_debug + $debug_cmd + case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in *import*) : ;; *) false ;; esac } +# func_suncc_cstd_abi +# !!ONLY CALL THIS FOR SUN CC AFTER $compile_command IS FULLY EXPANDED!! +# Several compiler flags select an ABI that is incompatible with the +# Cstd library. Avoid specifying it if any are in CXXFLAGS. +func_suncc_cstd_abi () +{ + $debug_cmd + + case " $compile_command " in + *" -compat=g "*|*\ -std=c++[0-9][0-9]\ *|*" -library=stdcxx4 "*|*" -library=stlport4 "*) + suncc_use_cstd_abi=no + ;; + *) + suncc_use_cstd_abi=yes + ;; + esac +} + # func_mode_link arg... func_mode_link () { - $opt_debug + $debug_cmd + case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) # It is impossible to link a dll without this setting, and # we shouldn't force the makefile maintainer to figure out - # which system we are compiling for in order to pass an extra + # what system we are compiling for in order to pass an extra # flag for every libtool invocation. # allow_undefined=no # FIXME: Unfortunately, there are problems with the above when trying - # to make a dll which has undefined symbols, in which case not + # to make a dll that has undefined symbols, in which case not # even a static library is built. For now, we need to specify # -no-undefined on the libtool link line when we can be certain # that all symbols are satisfied, otherwise we get a static library. @@ -5146,10 +6544,11 @@ func_mode_link () module=no no_install=no objs= + os2dllname= non_pic_objects= precious_files_regex= prefer_static_libs=no - preload=no + preload=false prev= prevarg= release= @@ -5161,7 +6560,7 @@ func_mode_link () vinfo= vinfo_number=no weak_libs= - single_module="${wl}-single_module" + single_module=$wl-single_module func_infer_tag $base_compile # We need to know -static, to get the right output filenames. @@ -5169,15 +6568,15 @@ func_mode_link () do case $arg in -shared) - test "$build_libtool_libs" != yes && \ - func_fatal_configuration "can not build a shared library" + test yes != "$build_libtool_libs" \ + && func_fatal_configuration "cannot build a shared library" build_old_libs=no break ;; -all-static | -static | -static-libtool-libs) case $arg in -all-static) - if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then + if test yes = "$build_libtool_libs" && test -z "$link_static_flag"; then func_warning "complete static linking is impossible in this configuration" fi if test -n "$link_static_flag"; then @@ -5210,7 +6609,7 @@ func_mode_link () # Go through the arguments, transforming them on the way. while test "$#" -gt 0; do - arg="$1" + arg=$1 shift func_quote_for_eval "$arg" qarg=$func_quote_for_eval_unquoted_result @@ -5227,21 +6626,21 @@ func_mode_link () case $prev in bindir) - bindir="$arg" + bindir=$arg prev= continue ;; dlfiles|dlprefiles) - if test "$preload" = no; then + $preload || { # Add the symbol object into the linking commands. func_append compile_command " @SYMFILE@" func_append finalize_command " @SYMFILE@" - preload=yes - fi + preload=: + } case $arg in *.la | *.lo) ;; # We handle these cases below. force) - if test "$dlself" = no; then + if test no = "$dlself"; then dlself=needless export_dynamic=yes fi @@ -5249,9 +6648,9 @@ func_mode_link () continue ;; self) - if test "$prev" = dlprefiles; then + if test dlprefiles = "$prev"; then dlself=yes - elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then + elif test dlfiles = "$prev" && test yes != "$dlopen_self"; then dlself=yes else dlself=needless @@ -5261,7 +6660,7 @@ func_mode_link () continue ;; *) - if test "$prev" = dlfiles; then + if test dlfiles = "$prev"; then func_append dlfiles " $arg" else func_append dlprefiles " $arg" @@ -5272,14 +6671,14 @@ func_mode_link () esac ;; expsyms) - export_symbols="$arg" + export_symbols=$arg test -f "$arg" \ - || func_fatal_error "symbol file \`$arg' does not exist" + || func_fatal_error "symbol file '$arg' does not exist" prev= continue ;; expsyms_regex) - export_symbols_regex="$arg" + export_symbols_regex=$arg prev= continue ;; @@ -5297,7 +6696,13 @@ func_mode_link () continue ;; inst_prefix) - inst_prefix_dir="$arg" + inst_prefix_dir=$arg + prev= + continue + ;; + mllvm) + # Clang does not use LLVM to link, so we can simply discard any + # '-mllvm $arg' options when doing the link step. prev= continue ;; @@ -5321,21 +6726,21 @@ func_mode_link () if test -z "$pic_object" || test -z "$non_pic_object" || - test "$pic_object" = none && - test "$non_pic_object" = none; then - func_fatal_error "cannot find name of object for \`$arg'" + test none = "$pic_object" && + test none = "$non_pic_object"; then + func_fatal_error "cannot find name of object for '$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" - xdir="$func_dirname_result" + xdir=$func_dirname_result - if test "$pic_object" != none; then + if test none != "$pic_object"; then # Prepend the subdirectory the object is found in. - pic_object="$xdir$pic_object" + pic_object=$xdir$pic_object - if test "$prev" = dlfiles; then - if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then + if test dlfiles = "$prev"; then + if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then func_append dlfiles " $pic_object" prev= continue @@ -5346,7 +6751,7 @@ func_mode_link () fi # CHECK ME: I think I busted this. -Ossama - if test "$prev" = dlprefiles; then + if test dlprefiles = "$prev"; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= @@ -5354,23 +6759,23 @@ func_mode_link () # A PIC object. func_append libobjs " $pic_object" - arg="$pic_object" + arg=$pic_object fi # Non-PIC object. - if test "$non_pic_object" != none; then + if test none != "$non_pic_object"; then # Prepend the subdirectory the object is found in. - non_pic_object="$xdir$non_pic_object" + non_pic_object=$xdir$non_pic_object # A standard non-PIC object func_append non_pic_objects " $non_pic_object" - if test -z "$pic_object" || test "$pic_object" = none ; then - arg="$non_pic_object" + if test -z "$pic_object" || test none = "$pic_object"; then + arg=$non_pic_object fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. - non_pic_object="$pic_object" + non_pic_object=$pic_object func_append non_pic_objects " $non_pic_object" fi else @@ -5378,7 +6783,7 @@ func_mode_link () if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" - xdir="$func_dirname_result" + xdir=$func_dirname_result func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result @@ -5386,24 +6791,29 @@ func_mode_link () func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else - func_fatal_error "\`$arg' is not a valid libtool object" + func_fatal_error "'$arg' is not a valid libtool object" fi fi done else - func_fatal_error "link input file \`$arg' does not exist" + func_fatal_error "link input file '$arg' does not exist" fi arg=$save_arg prev= continue ;; + os2dllname) + os2dllname=$arg + prev= + continue + ;; precious_regex) - precious_files_regex="$arg" + precious_files_regex=$arg prev= continue ;; release) - release="-$arg" + release=-$arg prev= continue ;; @@ -5415,7 +6825,7 @@ func_mode_link () func_fatal_error "only absolute run-paths are allowed" ;; esac - if test "$prev" = rpath; then + if test rpath = "$prev"; then case "$rpath " in *" $arg "*) ;; *) func_append rpath " $arg" ;; @@ -5430,7 +6840,7 @@ func_mode_link () continue ;; shrext) - shrext_cmds="$arg" + shrext_cmds=$arg prev= continue ;; @@ -5470,7 +6880,7 @@ func_mode_link () esac fi # test -n "$prev" - prevarg="$arg" + prevarg=$arg case $arg in -all-static) @@ -5484,7 +6894,7 @@ func_mode_link () -allow-undefined) # FIXME: remove this flag sometime in the future. - func_fatal_error "\`-allow-undefined' must not be used because it is the default" + func_fatal_error "'-allow-undefined' must not be used because it is the default" ;; -avoid-version) @@ -5516,7 +6926,7 @@ func_mode_link () if test -n "$export_symbols" || test -n "$export_symbols_regex"; then func_fatal_error "more than one -exported-symbols argument is not allowed" fi - if test "X$arg" = "X-export-symbols"; then + if test X-export-symbols = "X$arg"; then prev=expsyms else prev=expsyms_regex @@ -5550,9 +6960,9 @@ func_mode_link () func_stripname "-L" '' "$arg" if test -z "$func_stripname_result"; then if test "$#" -gt 0; then - func_fatal_error "require no space between \`-L' and \`$1'" + func_fatal_error "require no space between '-L' and '$1'" else - func_fatal_error "need path for \`-L' option" + func_fatal_error "need path for '-L' option" fi fi func_resolve_sysroot "$func_stripname_result" @@ -5563,8 +6973,8 @@ func_mode_link () *) absdir=`cd "$dir" && pwd` test -z "$absdir" && \ - func_fatal_error "cannot determine absolute directory name of \`$dir'" - dir="$absdir" + func_fatal_error "cannot determine absolute directory name of '$dir'" + dir=$absdir ;; esac case "$deplibs " in @@ -5599,7 +7009,7 @@ func_mode_link () ;; -l*) - if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then + if test X-lc = "X$arg" || test X-lm = "X$arg"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*) # These systems don't actually have a C or math library (as such) @@ -5607,11 +7017,11 @@ func_mode_link () ;; *-*-os2*) # These systems don't actually have a C library (as such) - test "X$arg" = "X-lc" && continue + test X-lc = "X$arg" && continue ;; - *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) # Do not include libc due to us having libc/libc_r. - test "X$arg" = "X-lc" && continue + test X-lc = "X$arg" && continue ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C and math libraries are in the System framework @@ -5620,16 +7030,16 @@ func_mode_link () ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype - test "X$arg" = "X-lc" && continue + test X-lc = "X$arg" && continue ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work - test "X$arg" = "X-lc" && continue + test X-lc = "X$arg" && continue ;; esac - elif test "X$arg" = "X-lc_r"; then + elif test X-lc_r = "X$arg"; then case $host in - *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) # Do not include libc_r directly, use -pthread flag. continue ;; @@ -5639,6 +7049,11 @@ func_mode_link () continue ;; + -mllvm) + prev=mllvm + continue + ;; + -module) module=yes continue @@ -5668,7 +7083,7 @@ func_mode_link () ;; -multi_module) - single_module="${wl}-multi_module" + single_module=$wl-multi_module continue ;; @@ -5682,8 +7097,8 @@ func_mode_link () *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*) # The PATH hackery in wrapper scripts is required on Windows # and Darwin in order for the loader to find any dlls it needs. - func_warning "\`-no-install' is ignored for $host" - func_warning "assuming \`-no-fast-install' instead" + func_warning "'-no-install' is ignored for $host" + func_warning "assuming '-no-fast-install' instead" fast_install=no ;; *) no_install=yes ;; @@ -5701,6 +7116,11 @@ func_mode_link () continue ;; + -os2dllname) + prev=os2dllname + continue + ;; + -o) prev=output ;; -precious-files-regex) @@ -5788,14 +7208,14 @@ func_mode_link () func_stripname '-Wc,' '' "$arg" args=$func_stripname_result arg= - save_ifs="$IFS"; IFS=',' + save_ifs=$IFS; IFS=, for flag in $args; do - IFS="$save_ifs" + IFS=$save_ifs func_quote_for_eval "$flag" func_append arg " $func_quote_for_eval_result" func_append compiler_flags " $func_quote_for_eval_result" done - IFS="$save_ifs" + IFS=$save_ifs func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; @@ -5804,15 +7224,15 @@ func_mode_link () func_stripname '-Wl,' '' "$arg" args=$func_stripname_result arg= - save_ifs="$IFS"; IFS=',' + save_ifs=$IFS; IFS=, for flag in $args; do - IFS="$save_ifs" + IFS=$save_ifs func_quote_for_eval "$flag" func_append arg " $wl$func_quote_for_eval_result" func_append compiler_flags " $wl$func_quote_for_eval_result" func_append linker_flags " $func_quote_for_eval_result" done - IFS="$save_ifs" + IFS=$save_ifs func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; @@ -5835,7 +7255,7 @@ func_mode_link () # -msg_* for osf cc -msg_*) func_quote_for_eval "$arg" - arg="$func_quote_for_eval_result" + arg=$func_quote_for_eval_result ;; # Flags to be passed through unchanged, with rationale: @@ -5847,25 +7267,48 @@ func_mode_link () # -m*, -t[45]*, -txscale* architecture-specific flags for GCC # -F/path path to uninstalled frameworks, gcc on darwin # -p, -pg, --coverage, -fprofile-* profiling flags for GCC + # -fstack-protector* stack protector flags for GCC # @file GCC response files # -tp=* Portland pgcc target processor selection # --sysroot=* for sysroot support - # -O*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization + # -O*, -g*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization + # -specs=* GCC specs files + # -stdlib=* select c++ std lib with clang -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ - -O*|-flto*|-fwhopr*|-fuse-linker-plugin) + -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*| \ + -specs=*) func_quote_for_eval "$arg" - arg="$func_quote_for_eval_result" + arg=$func_quote_for_eval_result func_append compile_command " $arg" func_append finalize_command " $arg" func_append compiler_flags " $arg" continue ;; + -Z*) + if test os2 = "`expr $host : '.*\(os2\)'`"; then + # OS/2 uses -Zxxx to specify OS/2-specific options + compiler_flags="$compiler_flags $arg" + func_append compile_command " $arg" + func_append finalize_command " $arg" + case $arg in + -Zlinker | -Zstack) + prev=xcompiler + ;; + esac + continue + else + # Otherwise treat like 'Some other compiler flag' below + func_quote_for_eval "$arg" + arg=$func_quote_for_eval_result + fi + ;; + # Some other compiler flag. -* | +*) func_quote_for_eval "$arg" - arg="$func_quote_for_eval_result" + arg=$func_quote_for_eval_result ;; *.$objext) @@ -5886,21 +7329,21 @@ func_mode_link () if test -z "$pic_object" || test -z "$non_pic_object" || - test "$pic_object" = none && - test "$non_pic_object" = none; then - func_fatal_error "cannot find name of object for \`$arg'" + test none = "$pic_object" && + test none = "$non_pic_object"; then + func_fatal_error "cannot find name of object for '$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" - xdir="$func_dirname_result" + xdir=$func_dirname_result - if test "$pic_object" != none; then + test none = "$pic_object" || { # Prepend the subdirectory the object is found in. - pic_object="$xdir$pic_object" + pic_object=$xdir$pic_object - if test "$prev" = dlfiles; then - if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then + if test dlfiles = "$prev"; then + if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then func_append dlfiles " $pic_object" prev= continue @@ -5911,7 +7354,7 @@ func_mode_link () fi # CHECK ME: I think I busted this. -Ossama - if test "$prev" = dlprefiles; then + if test dlprefiles = "$prev"; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= @@ -5919,23 +7362,23 @@ func_mode_link () # A PIC object. func_append libobjs " $pic_object" - arg="$pic_object" - fi + arg=$pic_object + } # Non-PIC object. - if test "$non_pic_object" != none; then + if test none != "$non_pic_object"; then # Prepend the subdirectory the object is found in. - non_pic_object="$xdir$non_pic_object" + non_pic_object=$xdir$non_pic_object # A standard non-PIC object func_append non_pic_objects " $non_pic_object" - if test -z "$pic_object" || test "$pic_object" = none ; then - arg="$non_pic_object" + if test -z "$pic_object" || test none = "$pic_object"; then + arg=$non_pic_object fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. - non_pic_object="$pic_object" + non_pic_object=$pic_object func_append non_pic_objects " $non_pic_object" fi else @@ -5943,7 +7386,7 @@ func_mode_link () if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" - xdir="$func_dirname_result" + xdir=$func_dirname_result func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result @@ -5951,7 +7394,7 @@ func_mode_link () func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else - func_fatal_error "\`$arg' is not a valid libtool object" + func_fatal_error "'$arg' is not a valid libtool object" fi fi ;; @@ -5967,11 +7410,11 @@ func_mode_link () # A libtool-controlled library. func_resolve_sysroot "$arg" - if test "$prev" = dlfiles; then + if test dlfiles = "$prev"; then # This library was specified with -dlopen. func_append dlfiles " $func_resolve_sysroot_result" prev= - elif test "$prev" = dlprefiles; then + elif test dlprefiles = "$prev"; then # The library was specified with -dlpreopen. func_append dlprefiles " $func_resolve_sysroot_result" prev= @@ -5986,7 +7429,7 @@ func_mode_link () # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. func_quote_for_eval "$arg" - arg="$func_quote_for_eval_result" + arg=$func_quote_for_eval_result ;; esac # arg @@ -5998,9 +7441,9 @@ func_mode_link () done # argument parsing loop test -n "$prev" && \ - func_fatal_help "the \`$prevarg' option requires an argument" + func_fatal_help "the '$prevarg' option requires an argument" - if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then + if test yes = "$export_dynamic" && test -n "$export_dynamic_flag_spec"; then eval arg=\"$export_dynamic_flag_spec\" func_append compile_command " $arg" func_append finalize_command " $arg" @@ -6009,20 +7452,23 @@ func_mode_link () oldlibs= # calculate the name of the file, without its directory func_basename "$output" - outputname="$func_basename_result" - libobjs_save="$libobjs" + outputname=$func_basename_result + libobjs_save=$libobjs if test -n "$shlibpath_var"; then # get the directories listed in $shlibpath_var - eval shlib_search_path=\`\$ECHO \"\${$shlibpath_var}\" \| \$SED \'s/:/ /g\'\` + eval shlib_search_path=\`\$ECHO \"\$$shlibpath_var\" \| \$SED \'s/:/ /g\'\` else shlib_search_path= fi eval sys_lib_search_path=\"$sys_lib_search_path_spec\" eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" + # Definition is injected by LT_CONFIG during libtool generation. + func_munge_path_list sys_lib_dlsearch_path "$LT_SYS_LIBRARY_PATH" + func_dirname "$output" "/" "" - output_objdir="$func_dirname_result$objdir" + output_objdir=$func_dirname_result$objdir func_to_tool_file "$output_objdir/" tool_output_objdir=$func_to_tool_file_result # Create the object directory. @@ -6045,7 +7491,7 @@ func_mode_link () # Find all interdependent deplibs by searching for libraries # that are linked more than once (e.g. -la -lb -la) for deplib in $deplibs; do - if $opt_preserve_dup_deps ; then + if $opt_preserve_dup_deps; then case "$libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac @@ -6053,7 +7499,7 @@ func_mode_link () func_append libs " $deplib" done - if test "$linkmode" = lib; then + if test lib = "$linkmode"; then libs="$predeps $libs $compiler_lib_search_path $postdeps" # Compute libraries that are listed more than once in $predeps @@ -6085,7 +7531,7 @@ func_mode_link () case $file in *.la) ;; *) - func_fatal_help "libraries can \`-dlopen' only libtool libraries: $file" + func_fatal_help "libraries can '-dlopen' only libtool libraries: $file" ;; esac done @@ -6093,7 +7539,7 @@ func_mode_link () prog) compile_deplibs= finalize_deplibs= - alldeplibs=no + alldeplibs=false newdlfiles= newdlprefiles= passes="conv scan dlopen dlpreopen link" @@ -6105,29 +7551,29 @@ func_mode_link () for pass in $passes; do # The preopen pass in lib mode reverses $deplibs; put it back here # so that -L comes before libs that need it for instance... - if test "$linkmode,$pass" = "lib,link"; then + if test lib,link = "$linkmode,$pass"; then ## FIXME: Find the place where the list is rebuilt in the wrong ## order, and fix it there properly tmp_deplibs= for deplib in $deplibs; do tmp_deplibs="$deplib $tmp_deplibs" done - deplibs="$tmp_deplibs" + deplibs=$tmp_deplibs fi - if test "$linkmode,$pass" = "lib,link" || - test "$linkmode,$pass" = "prog,scan"; then - libs="$deplibs" + if test lib,link = "$linkmode,$pass" || + test prog,scan = "$linkmode,$pass"; then + libs=$deplibs deplibs= fi - if test "$linkmode" = prog; then + if test prog = "$linkmode"; then case $pass in - dlopen) libs="$dlfiles" ;; - dlpreopen) libs="$dlprefiles" ;; + dlopen) libs=$dlfiles ;; + dlpreopen) libs=$dlprefiles ;; link) libs="$deplibs %DEPLIBS% $dependency_libs" ;; esac fi - if test "$linkmode,$pass" = "lib,dlpreopen"; then + if test lib,dlpreopen = "$linkmode,$pass"; then # Collect and forward deplibs of preopened libtool libs for lib in $dlprefiles; do # Ignore non-libtool-libs @@ -6148,26 +7594,26 @@ func_mode_link () esac done done - libs="$dlprefiles" + libs=$dlprefiles fi - if test "$pass" = dlopen; then + if test dlopen = "$pass"; then # Collect dlpreopened libraries - save_deplibs="$deplibs" + save_deplibs=$deplibs deplibs= fi for deplib in $libs; do lib= - found=no + found=false case $deplib in -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) - if test "$linkmode,$pass" = "prog,link"; then + if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else func_append compiler_flags " $deplib" - if test "$linkmode" = lib ; then + if test lib = "$linkmode"; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; @@ -6177,13 +7623,13 @@ func_mode_link () continue ;; -l*) - if test "$linkmode" != lib && test "$linkmode" != prog; then - func_warning "\`-l' is ignored for archives/objects" + if test lib != "$linkmode" && test prog != "$linkmode"; then + func_warning "'-l' is ignored for archives/objects" continue fi func_stripname '-l' '' "$deplib" name=$func_stripname_result - if test "$linkmode" = lib; then + if test lib = "$linkmode"; then searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" else searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" @@ -6191,31 +7637,22 @@ func_mode_link () for searchdir in $searchdirs; do for search_ext in .la $std_shrext .so .a; do # Search the libtool library - lib="$searchdir/lib${name}${search_ext}" + lib=$searchdir/lib$name$search_ext if test -f "$lib"; then - if test "$search_ext" = ".la"; then - found=yes + if test .la = "$search_ext"; then + found=: else - found=no + found=false fi break 2 fi done done - if test "$found" != yes; then - # deplib doesn't seem to be a libtool library - if test "$linkmode,$pass" = "prog,link"; then - compile_deplibs="$deplib $compile_deplibs" - finalize_deplibs="$deplib $finalize_deplibs" - else - deplibs="$deplib $deplibs" - test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" - fi - continue - else # deplib is a libtool library + if $found; then + # deplib is a libtool library # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, # We need to do some special things here, and not later. - if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $deplib "*) if func_lalib_p "$lib"; then @@ -6223,19 +7660,19 @@ func_mode_link () old_library= func_source "$lib" for l in $old_library $library_names; do - ll="$l" + ll=$l done - if test "X$ll" = "X$old_library" ; then # only static version available - found=no + if test "X$ll" = "X$old_library"; then # only static version available + found=false func_dirname "$lib" "" "." - ladir="$func_dirname_result" + ladir=$func_dirname_result lib=$ladir/$old_library - if test "$linkmode,$pass" = "prog,link"; then + if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" - test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" + test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" fi continue fi @@ -6244,15 +7681,25 @@ func_mode_link () *) ;; esac fi + else + # deplib doesn't seem to be a libtool library + if test prog,link = "$linkmode,$pass"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" + fi + continue fi ;; # -l *.ltframework) - if test "$linkmode,$pass" = "prog,link"; then + if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" - if test "$linkmode" = lib ; then + if test lib = "$linkmode"; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; @@ -6265,18 +7712,18 @@ func_mode_link () case $linkmode in lib) deplibs="$deplib $deplibs" - test "$pass" = conv && continue + test conv = "$pass" && continue newdependency_libs="$deplib $newdependency_libs" func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; prog) - if test "$pass" = conv; then + if test conv = "$pass"; then deplibs="$deplib $deplibs" continue fi - if test "$pass" = scan; then + if test scan = "$pass"; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" @@ -6287,13 +7734,13 @@ func_mode_link () func_append newlib_search_path " $func_resolve_sysroot_result" ;; *) - func_warning "\`-L' is ignored for archives/objects" + func_warning "'-L' is ignored for archives/objects" ;; esac # linkmode continue ;; # -L -R*) - if test "$pass" = link; then + if test link = "$pass"; then func_stripname '-R' '' "$deplib" func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result @@ -6311,7 +7758,7 @@ func_mode_link () lib=$func_resolve_sysroot_result ;; *.$libext) - if test "$pass" = conv; then + if test conv = "$pass"; then deplibs="$deplib $deplibs" continue fi @@ -6322,21 +7769,26 @@ func_mode_link () case " $dlpreconveniencelibs " in *" $deplib "*) ;; *) - valid_a_lib=no + valid_a_lib=false case $deplibs_check_method in match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \ | $EGREP "$match_pattern_regex" > /dev/null; then - valid_a_lib=yes + valid_a_lib=: fi ;; pass_all) - valid_a_lib=yes + valid_a_lib=: ;; esac - if test "$valid_a_lib" != yes; then + if $valid_a_lib; then + echo + $ECHO "*** Warning: Linking the shared library $output against the" + $ECHO "*** static library $deplib is not portable!" + deplibs="$deplib $deplibs" + else echo $ECHO "*** Warning: Trying to link with static lib archive $deplib." echo "*** I have the capability to make that library automatically link in when" @@ -6344,18 +7796,13 @@ func_mode_link () echo "*** shared version of the library, which you do not appear to have" echo "*** because the file extensions .$libext of this argument makes me believe" echo "*** that it is just a static archive that I should not use here." - else - echo - $ECHO "*** Warning: Linking the shared library $output against the" - $ECHO "*** static library $deplib is not portable!" - deplibs="$deplib $deplibs" fi ;; esac continue ;; prog) - if test "$pass" != link; then + if test link != "$pass"; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" @@ -6366,10 +7813,10 @@ func_mode_link () esac # linkmode ;; # *.$libext *.lo | *.$objext) - if test "$pass" = conv; then + if test conv = "$pass"; then deplibs="$deplib $deplibs" - elif test "$linkmode" = prog; then - if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then + elif test prog = "$linkmode"; then + if test dlpreopen = "$pass" || test yes != "$dlopen_support" || test no = "$build_libtool_libs"; then # If there is no dlopen support or we're linking statically, # we need to preload. func_append newdlprefiles " $deplib" @@ -6382,22 +7829,20 @@ func_mode_link () continue ;; %DEPLIBS%) - alldeplibs=yes + alldeplibs=: continue ;; esac # case $deplib - if test "$found" = yes || test -f "$lib"; then : - else - func_fatal_error "cannot find the library \`$lib' or unhandled argument \`$deplib'" - fi + $found || test -f "$lib" \ + || func_fatal_error "cannot find the library '$lib' or unhandled argument '$deplib'" # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$lib" \ - || func_fatal_error "\`$lib' is not a valid libtool archive" + || func_fatal_error "'$lib' is not a valid libtool archive" func_dirname "$lib" "" "." - ladir="$func_dirname_result" + ladir=$func_dirname_result dlname= dlopen= @@ -6427,30 +7872,30 @@ func_mode_link () done fi dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` - if test "$linkmode,$pass" = "lib,link" || - test "$linkmode,$pass" = "prog,scan" || - { test "$linkmode" != prog && test "$linkmode" != lib; }; then + if test lib,link = "$linkmode,$pass" || + test prog,scan = "$linkmode,$pass" || + { test prog != "$linkmode" && test lib != "$linkmode"; }; then test -n "$dlopen" && func_append dlfiles " $dlopen" test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen" fi - if test "$pass" = conv; then + if test conv = "$pass"; then # Only check for convenience libraries deplibs="$lib $deplibs" if test -z "$libdir"; then if test -z "$old_library"; then - func_fatal_error "cannot find name of link library for \`$lib'" + func_fatal_error "cannot find name of link library for '$lib'" fi # It is a libtool convenience library, so add in its objects. func_append convenience " $ladir/$objdir/$old_library" func_append old_convenience " $ladir/$objdir/$old_library" - elif test "$linkmode" != prog && test "$linkmode" != lib; then - func_fatal_error "\`$lib' is not a convenience library" + elif test prog != "$linkmode" && test lib != "$linkmode"; then + func_fatal_error "'$lib' is not a convenience library" fi tmp_libs= for deplib in $dependency_libs; do deplibs="$deplib $deplibs" - if $opt_preserve_dup_deps ; then + if $opt_preserve_dup_deps; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac @@ -6464,26 +7909,26 @@ func_mode_link () # Get the name of the library we link against. linklib= if test -n "$old_library" && - { test "$prefer_static_libs" = yes || - test "$prefer_static_libs,$installed" = "built,no"; }; then + { test yes = "$prefer_static_libs" || + test built,no = "$prefer_static_libs,$installed"; }; then linklib=$old_library else for l in $old_library $library_names; do - linklib="$l" + linklib=$l done fi if test -z "$linklib"; then - func_fatal_error "cannot find name of link library for \`$lib'" + func_fatal_error "cannot find name of link library for '$lib'" fi # This library was specified with -dlopen. - if test "$pass" = dlopen; then - if test -z "$libdir"; then - func_fatal_error "cannot -dlopen a convenience library: \`$lib'" - fi + if test dlopen = "$pass"; then + test -z "$libdir" \ + && func_fatal_error "cannot -dlopen a convenience library: '$lib'" if test -z "$dlname" || - test "$dlopen_support" != yes || - test "$build_libtool_libs" = no; then + test yes != "$dlopen_support" || + test no = "$build_libtool_libs" + then # If there is no dlname, no dlopen support or we're linking # statically, we need to preload. We also need to preload any # dependent libraries so libltdl's deplib preloader doesn't @@ -6497,40 +7942,40 @@ func_mode_link () # We need an absolute path. case $ladir in - [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;; + [\\/]* | [A-Za-z]:[\\/]*) abs_ladir=$ladir ;; *) abs_ladir=`cd "$ladir" && pwd` if test -z "$abs_ladir"; then - func_warning "cannot determine absolute directory name of \`$ladir'" + func_warning "cannot determine absolute directory name of '$ladir'" func_warning "passing it literally to the linker, although it might fail" - abs_ladir="$ladir" + abs_ladir=$ladir fi ;; esac func_basename "$lib" - laname="$func_basename_result" + laname=$func_basename_result # Find the relevant object directory and library name. - if test "X$installed" = Xyes; then + if test yes = "$installed"; then if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then - func_warning "library \`$lib' was moved." - dir="$ladir" - absdir="$abs_ladir" - libdir="$abs_ladir" + func_warning "library '$lib' was moved." + dir=$ladir + absdir=$abs_ladir + libdir=$abs_ladir else - dir="$lt_sysroot$libdir" - absdir="$lt_sysroot$libdir" + dir=$lt_sysroot$libdir + absdir=$lt_sysroot$libdir fi - test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes + test yes = "$hardcode_automatic" && avoidtemprpath=yes else if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then - dir="$ladir" - absdir="$abs_ladir" + dir=$ladir + absdir=$abs_ladir # Remove this search path later func_append notinst_path " $abs_ladir" else - dir="$ladir/$objdir" - absdir="$abs_ladir/$objdir" + dir=$ladir/$objdir + absdir=$abs_ladir/$objdir # Remove this search path later func_append notinst_path " $abs_ladir" fi @@ -6539,11 +7984,11 @@ func_mode_link () name=$func_stripname_result # This library was specified with -dlpreopen. - if test "$pass" = dlpreopen; then - if test -z "$libdir" && test "$linkmode" = prog; then - func_fatal_error "only libraries may -dlpreopen a convenience library: \`$lib'" + if test dlpreopen = "$pass"; then + if test -z "$libdir" && test prog = "$linkmode"; then + func_fatal_error "only libraries may -dlpreopen a convenience library: '$lib'" fi - case "$host" in + case $host in # special handling for platforms with PE-DLLs. *cygwin* | *mingw* | *cegcc* ) # Linker will automatically link against shared library if both @@ -6587,9 +8032,9 @@ func_mode_link () if test -z "$libdir"; then # Link the convenience library - if test "$linkmode" = lib; then + if test lib = "$linkmode"; then deplibs="$dir/$old_library $deplibs" - elif test "$linkmode,$pass" = "prog,link"; then + elif test prog,link = "$linkmode,$pass"; then compile_deplibs="$dir/$old_library $compile_deplibs" finalize_deplibs="$dir/$old_library $finalize_deplibs" else @@ -6599,14 +8044,14 @@ func_mode_link () fi - if test "$linkmode" = prog && test "$pass" != link; then + if test prog = "$linkmode" && test link != "$pass"; then func_append newlib_search_path " $ladir" deplibs="$lib $deplibs" - linkalldeplibs=no - if test "$link_all_deplibs" != no || test -z "$library_names" || - test "$build_libtool_libs" = no; then - linkalldeplibs=yes + linkalldeplibs=false + if test no != "$link_all_deplibs" || test -z "$library_names" || + test no = "$build_libtool_libs"; then + linkalldeplibs=: fi tmp_libs= @@ -6618,14 +8063,14 @@ func_mode_link () ;; esac # Need to link against all dependency_libs? - if test "$linkalldeplibs" = yes; then + if $linkalldeplibs; then deplibs="$deplib $deplibs" else # Need to hardcode shared library paths # or/and link against static libraries newdependency_libs="$deplib $newdependency_libs" fi - if $opt_preserve_dup_deps ; then + if $opt_preserve_dup_deps; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac @@ -6635,15 +8080,15 @@ func_mode_link () continue fi # $linkmode = prog... - if test "$linkmode,$pass" = "prog,link"; then + if test prog,link = "$linkmode,$pass"; then if test -n "$library_names" && - { { test "$prefer_static_libs" = no || - test "$prefer_static_libs,$installed" = "built,yes"; } || + { { test no = "$prefer_static_libs" || + test built,yes = "$prefer_static_libs,$installed"; } || test -z "$old_library"; }; then # We need to hardcode the library path - if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then + if test -n "$shlibpath_var" && test -z "$avoidtemprpath"; then # Make sure the rpath contains only unique directories. - case "$temp_rpath:" in + case $temp_rpath: in *"$absdir:"*) ;; *) func_append temp_rpath "$absdir:" ;; esac @@ -6672,9 +8117,9 @@ func_mode_link () esac fi # $linkmode,$pass = prog,link... - if test "$alldeplibs" = yes && - { test "$deplibs_check_method" = pass_all || - { test "$build_libtool_libs" = yes && + if $alldeplibs && + { test pass_all = "$deplibs_check_method" || + { test yes = "$build_libtool_libs" && test -n "$library_names"; }; }; then # We only need to search for static libraries continue @@ -6683,19 +8128,19 @@ func_mode_link () link_static=no # Whether the deplib will be linked statically use_static_libs=$prefer_static_libs - if test "$use_static_libs" = built && test "$installed" = yes; then + if test built = "$use_static_libs" && test yes = "$installed"; then use_static_libs=no fi if test -n "$library_names" && - { test "$use_static_libs" = no || test -z "$old_library"; }; then + { test no = "$use_static_libs" || test -z "$old_library"; }; then case $host in - *cygwin* | *mingw* | *cegcc*) + *cygwin* | *mingw* | *cegcc* | *os2*) # No point in relinking DLLs because paths are not encoded func_append notinst_deplibs " $lib" need_relink=no ;; *) - if test "$installed" = no; then + if test no = "$installed"; then func_append notinst_deplibs " $lib" need_relink=yes fi @@ -6705,24 +8150,24 @@ func_mode_link () # Warn about portability, can't link against -module's on some # systems (darwin). Don't bleat about dlopened modules though! - dlopenmodule="" + dlopenmodule= for dlpremoduletest in $dlprefiles; do if test "X$dlpremoduletest" = "X$lib"; then - dlopenmodule="$dlpremoduletest" + dlopenmodule=$dlpremoduletest break fi done - if test -z "$dlopenmodule" && test "$shouldnotlink" = yes && test "$pass" = link; then + if test -z "$dlopenmodule" && test yes = "$shouldnotlink" && test link = "$pass"; then echo - if test "$linkmode" = prog; then + if test prog = "$linkmode"; then $ECHO "*** Warning: Linking the executable $output against the loadable module" else $ECHO "*** Warning: Linking the shared library $output against the loadable module" fi $ECHO "*** $linklib is not portable!" fi - if test "$linkmode" = lib && - test "$hardcode_into_libs" = yes; then + if test lib = "$linkmode" && + test yes = "$hardcode_into_libs"; then # Hardcode the library path. # Skip directories that are in the system default run-time # search path. @@ -6750,43 +8195,43 @@ func_mode_link () # figure out the soname set dummy $library_names shift - realname="$1" + realname=$1 shift libname=`eval "\\$ECHO \"$libname_spec\""` # use dlname if we got it. it's perfectly good, no? if test -n "$dlname"; then - soname="$dlname" + soname=$dlname elif test -n "$soname_spec"; then # bleh windows case $host in - *cygwin* | mingw* | *cegcc*) + *cygwin* | mingw* | *cegcc* | *os2*) func_arith $current - $age major=$func_arith_result - versuffix="-$major" + versuffix=-$major ;; esac eval soname=\"$soname_spec\" else - soname="$realname" + soname=$realname fi # Make a new name for the extract_expsyms_cmds to use - soroot="$soname" + soroot=$soname func_basename "$soroot" - soname="$func_basename_result" + soname=$func_basename_result func_stripname 'lib' '.dll' "$soname" newlib=libimp-$func_stripname_result.a # If the library has no export list, then create one now if test -f "$output_objdir/$soname-def"; then : else - func_verbose "extracting exported symbol list from \`$soname'" + func_verbose "extracting exported symbol list from '$soname'" func_execute_cmds "$extract_expsyms_cmds" 'exit $?' fi # Create $newlib if test -f "$output_objdir/$newlib"; then :; else - func_verbose "generating import library for \`$soname'" + func_verbose "generating import library for '$soname'" func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?' fi # make sure the library variables are pointing to the new library @@ -6794,58 +8239,58 @@ func_mode_link () linklib=$newlib fi # test -n "$old_archive_from_expsyms_cmds" - if test "$linkmode" = prog || test "$opt_mode" != relink; then + if test prog = "$linkmode" || test relink != "$opt_mode"; then add_shlibpath= add_dir= add= lib_linked=yes case $hardcode_action in immediate | unsupported) - if test "$hardcode_direct" = no; then - add="$dir/$linklib" + if test no = "$hardcode_direct"; then + add=$dir/$linklib case $host in - *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;; - *-*-sysv4*uw2*) add_dir="-L$dir" ;; + *-*-sco3.2v5.0.[024]*) add_dir=-L$dir ;; + *-*-sysv4*uw2*) add_dir=-L$dir ;; *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ - *-*-unixware7*) add_dir="-L$dir" ;; + *-*-unixware7*) add_dir=-L$dir ;; *-*-darwin* ) - # if the lib is a (non-dlopened) module then we can not + # if the lib is a (non-dlopened) module then we cannot # link against it, someone is ignoring the earlier warnings if /usr/bin/file -L $add 2> /dev/null | - $GREP ": [^:]* bundle" >/dev/null ; then + $GREP ": [^:]* bundle" >/dev/null; then if test "X$dlopenmodule" != "X$lib"; then $ECHO "*** Warning: lib $linklib is a module, not a shared library" - if test -z "$old_library" ; then + if test -z "$old_library"; then echo echo "*** And there doesn't seem to be a static archive available" echo "*** The link will probably fail, sorry" else - add="$dir/$old_library" + add=$dir/$old_library fi elif test -n "$old_library"; then - add="$dir/$old_library" + add=$dir/$old_library fi fi esac - elif test "$hardcode_minus_L" = no; then + elif test no = "$hardcode_minus_L"; then case $host in - *-*-sunos*) add_shlibpath="$dir" ;; + *-*-sunos*) add_shlibpath=$dir ;; esac - add_dir="-L$dir" - add="-l$name" - elif test "$hardcode_shlibpath_var" = no; then - add_shlibpath="$dir" - add="-l$name" + add_dir=-L$dir + add=-l$name + elif test no = "$hardcode_shlibpath_var"; then + add_shlibpath=$dir + add=-l$name else lib_linked=no fi ;; relink) - if test "$hardcode_direct" = yes && - test "$hardcode_direct_absolute" = no; then - add="$dir/$linklib" - elif test "$hardcode_minus_L" = yes; then - add_dir="-L$absdir" + if test yes = "$hardcode_direct" && + test no = "$hardcode_direct_absolute"; then + add=$dir/$linklib + elif test yes = "$hardcode_minus_L"; then + add_dir=-L$absdir # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in @@ -6854,10 +8299,10 @@ func_mode_link () ;; esac fi - add="-l$name" - elif test "$hardcode_shlibpath_var" = yes; then - add_shlibpath="$dir" - add="-l$name" + add=-l$name + elif test yes = "$hardcode_shlibpath_var"; then + add_shlibpath=$dir + add=-l$name else lib_linked=no fi @@ -6865,7 +8310,7 @@ func_mode_link () *) lib_linked=no ;; esac - if test "$lib_linked" != yes; then + if test yes != "$lib_linked"; then func_fatal_configuration "unsupported hardcode properties" fi @@ -6875,15 +8320,15 @@ func_mode_link () *) func_append compile_shlibpath "$add_shlibpath:" ;; esac fi - if test "$linkmode" = prog; then + if test prog = "$linkmode"; then test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" test -n "$add" && compile_deplibs="$add $compile_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" - if test "$hardcode_direct" != yes && - test "$hardcode_minus_L" != yes && - test "$hardcode_shlibpath_var" = yes; then + if test yes != "$hardcode_direct" && + test yes != "$hardcode_minus_L" && + test yes = "$hardcode_shlibpath_var"; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; @@ -6892,33 +8337,33 @@ func_mode_link () fi fi - if test "$linkmode" = prog || test "$opt_mode" = relink; then + if test prog = "$linkmode" || test relink = "$opt_mode"; then add_shlibpath= add_dir= add= # Finalize command for both is simple: just hardcode it. - if test "$hardcode_direct" = yes && - test "$hardcode_direct_absolute" = no; then - add="$libdir/$linklib" - elif test "$hardcode_minus_L" = yes; then - add_dir="-L$libdir" - add="-l$name" - elif test "$hardcode_shlibpath_var" = yes; then + if test yes = "$hardcode_direct" && + test no = "$hardcode_direct_absolute"; then + add=$libdir/$linklib + elif test yes = "$hardcode_minus_L"; then + add_dir=-L$libdir + add=-l$name + elif test yes = "$hardcode_shlibpath_var"; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac - add="-l$name" - elif test "$hardcode_automatic" = yes; then + add=-l$name + elif test yes = "$hardcode_automatic"; then if test -n "$inst_prefix_dir" && - test -f "$inst_prefix_dir$libdir/$linklib" ; then - add="$inst_prefix_dir$libdir/$linklib" + test -f "$inst_prefix_dir$libdir/$linklib"; then + add=$inst_prefix_dir$libdir/$linklib else - add="$libdir/$linklib" + add=$libdir/$linklib fi else # We cannot seem to hardcode it, guess we'll fake it. - add_dir="-L$libdir" + add_dir=-L$libdir # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in @@ -6927,10 +8372,10 @@ func_mode_link () ;; esac fi - add="-l$name" + add=-l$name fi - if test "$linkmode" = prog; then + if test prog = "$linkmode"; then test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" test -n "$add" && finalize_deplibs="$add $finalize_deplibs" else @@ -6938,43 +8383,43 @@ func_mode_link () test -n "$add" && deplibs="$add $deplibs" fi fi - elif test "$linkmode" = prog; then + elif test prog = "$linkmode"; then # Here we assume that one of hardcode_direct or hardcode_minus_L # is not unsupported. This is valid on all known static and # shared platforms. - if test "$hardcode_direct" != unsupported; then - test -n "$old_library" && linklib="$old_library" + if test unsupported != "$hardcode_direct"; then + test -n "$old_library" && linklib=$old_library compile_deplibs="$dir/$linklib $compile_deplibs" finalize_deplibs="$dir/$linklib $finalize_deplibs" else compile_deplibs="-l$name -L$dir $compile_deplibs" finalize_deplibs="-l$name -L$dir $finalize_deplibs" fi - elif test "$build_libtool_libs" = yes; then + elif test yes = "$build_libtool_libs"; then # Not a shared library - if test "$deplibs_check_method" != pass_all; then + if test pass_all != "$deplibs_check_method"; then # We're trying link a shared library against a static one # but the system doesn't support it. # Just print a warning and add the library to dependency_libs so # that the program can be linked against the static library. echo - $ECHO "*** Warning: This system can not link to static lib archive $lib." + $ECHO "*** Warning: This system cannot link to static lib archive $lib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have." - if test "$module" = yes; then + if test yes = "$module"; then echo "*** But as you try to build a module library, libtool will still create " echo "*** a static module, that should work as long as the dlopening application" echo "*** is linked with the -dlopen flag to resolve symbols at runtime." if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" - echo "*** lists from a program, using \`nm' or equivalent, but libtool could" + echo "*** lists from a program, using 'nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." - echo "*** \`nm' from GNU binutils and a full rebuild may help." + echo "*** 'nm' from GNU binutils and a full rebuild may help." fi - if test "$build_old_libs" = no; then + if test no = "$build_old_libs"; then build_libtool_libs=module build_old_libs=yes else @@ -6987,11 +8432,11 @@ func_mode_link () fi fi # link shared/static library? - if test "$linkmode" = lib; then + if test lib = "$linkmode"; then if test -n "$dependency_libs" && - { test "$hardcode_into_libs" != yes || - test "$build_old_libs" = yes || - test "$link_static" = yes; }; then + { test yes != "$hardcode_into_libs" || + test yes = "$build_old_libs" || + test yes = "$link_static"; }; then # Extract -R from dependency_libs temp_deplibs= for libdir in $dependency_libs; do @@ -7005,12 +8450,12 @@ func_mode_link () *) func_append temp_deplibs " $libdir";; esac done - dependency_libs="$temp_deplibs" + dependency_libs=$temp_deplibs fi func_append newlib_search_path " $absdir" # Link against this library - test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs" + test no = "$link_static" && newdependency_libs="$abs_ladir/$laname $newdependency_libs" # ... and its dependency_libs tmp_libs= for deplib in $dependency_libs; do @@ -7020,7 +8465,7 @@ func_mode_link () func_resolve_sysroot "$func_stripname_result";; *) func_resolve_sysroot "$deplib" ;; esac - if $opt_preserve_dup_deps ; then + if $opt_preserve_dup_deps; then case "$tmp_libs " in *" $func_resolve_sysroot_result "*) func_append specialdeplibs " $func_resolve_sysroot_result" ;; @@ -7029,12 +8474,12 @@ func_mode_link () func_append tmp_libs " $func_resolve_sysroot_result" done - if test "$link_all_deplibs" != no; then + if test no != "$link_all_deplibs"; then # Add the search paths of all dependency libraries for deplib in $dependency_libs; do path= case $deplib in - -L*) path="$deplib" ;; + -L*) path=$deplib ;; *.la) func_resolve_sysroot "$deplib" deplib=$func_resolve_sysroot_result @@ -7042,12 +8487,12 @@ func_mode_link () dir=$func_dirname_result # We need an absolute path. case $dir in - [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;; + [\\/]* | [A-Za-z]:[\\/]*) absdir=$dir ;; *) absdir=`cd "$dir" && pwd` if test -z "$absdir"; then - func_warning "cannot determine absolute directory name of \`$dir'" - absdir="$dir" + func_warning "cannot determine absolute directory name of '$dir'" + absdir=$dir fi ;; esac @@ -7055,35 +8500,35 @@ func_mode_link () case $host in *-*-darwin*) depdepl= - eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` - if test -n "$deplibrary_names" ; then - for tmp in $deplibrary_names ; do + eval deplibrary_names=`$SED -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` + if test -n "$deplibrary_names"; then + for tmp in $deplibrary_names; do depdepl=$tmp done - if test -f "$absdir/$objdir/$depdepl" ; then - depdepl="$absdir/$objdir/$depdepl" - darwin_install_name=`${OTOOL} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` + if test -f "$absdir/$objdir/$depdepl"; then + depdepl=$absdir/$objdir/$depdepl + darwin_install_name=`$OTOOL -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` if test -z "$darwin_install_name"; then - darwin_install_name=`${OTOOL64} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` + darwin_install_name=`$OTOOL64 -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` fi - func_append compiler_flags " ${wl}-dylib_file ${wl}${darwin_install_name}:${depdepl}" - func_append linker_flags " -dylib_file ${darwin_install_name}:${depdepl}" + func_append compiler_flags " $wl-dylib_file $wl$darwin_install_name:$depdepl" + func_append linker_flags " -dylib_file $darwin_install_name:$depdepl" path= fi fi ;; *) - path="-L$absdir/$objdir" + path=-L$absdir/$objdir ;; esac else - eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` + eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` test -z "$libdir" && \ - func_fatal_error "\`$deplib' is not a valid libtool archive" + func_fatal_error "'$deplib' is not a valid libtool archive" test "$absdir" != "$libdir" && \ - func_warning "\`$deplib' seems to be moved" + func_warning "'$deplib' seems to be moved" - path="-L$absdir" + path=-L$absdir fi ;; esac @@ -7095,23 +8540,23 @@ func_mode_link () fi # link_all_deplibs != no fi # linkmode = lib done # for deplib in $libs - if test "$pass" = link; then - if test "$linkmode" = "prog"; then + if test link = "$pass"; then + if test prog = "$linkmode"; then compile_deplibs="$new_inherited_linker_flags $compile_deplibs" finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs" else compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` fi fi - dependency_libs="$newdependency_libs" - if test "$pass" = dlpreopen; then + dependency_libs=$newdependency_libs + if test dlpreopen = "$pass"; then # Link the dlpreopened libraries before other libraries for deplib in $save_deplibs; do deplibs="$deplib $deplibs" done fi - if test "$pass" != dlopen; then - if test "$pass" != conv; then + if test dlopen != "$pass"; then + test conv = "$pass" || { # Make sure lib_search_path contains only unique directories. lib_search_path= for dir in $newlib_search_path; do @@ -7121,12 +8566,12 @@ func_mode_link () esac done newlib_search_path= - fi + } - if test "$linkmode,$pass" != "prog,link"; then - vars="deplibs" - else + if test prog,link = "$linkmode,$pass"; then vars="compile_deplibs finalize_deplibs" + else + vars=deplibs fi for var in $vars dependency_libs; do # Add libraries to $var in reverse order @@ -7184,62 +8629,93 @@ func_mode_link () eval $var=\"$tmp_libs\" done # for var fi + + # Add Sun CC postdeps if required: + test CXX = "$tagname" && { + case $host_os in + linux*) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) # Sun C++ 5.9 + func_suncc_cstd_abi + + if test no != "$suncc_use_cstd_abi"; then + func_append postdeps ' -library=Cstd -library=Crun' + fi + ;; + esac + ;; + + solaris*) + func_cc_basename "$CC" + case $func_cc_basename_result in + CC* | sunCC*) + func_suncc_cstd_abi + + if test no != "$suncc_use_cstd_abi"; then + func_append postdeps ' -library=Cstd -library=Crun' + fi + ;; + esac + ;; + esac + } + # Last step: remove runtime libs from dependency_libs # (they stay in deplibs) tmp_libs= - for i in $dependency_libs ; do + for i in $dependency_libs; do case " $predeps $postdeps $compiler_lib_search_path " in *" $i "*) - i="" + i= ;; esac - if test -n "$i" ; then + if test -n "$i"; then func_append tmp_libs " $i" fi done dependency_libs=$tmp_libs done # for pass - if test "$linkmode" = prog; then - dlfiles="$newdlfiles" + if test prog = "$linkmode"; then + dlfiles=$newdlfiles fi - if test "$linkmode" = prog || test "$linkmode" = lib; then - dlprefiles="$newdlprefiles" + if test prog = "$linkmode" || test lib = "$linkmode"; then + dlprefiles=$newdlprefiles fi case $linkmode in oldlib) - if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then - func_warning "\`-dlopen' is ignored for archives" + if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then + func_warning "'-dlopen' is ignored for archives" fi case " $deplibs" in *\ -l* | *\ -L*) - func_warning "\`-l' and \`-L' are ignored for archives" ;; + func_warning "'-l' and '-L' are ignored for archives" ;; esac test -n "$rpath" && \ - func_warning "\`-rpath' is ignored for archives" + func_warning "'-rpath' is ignored for archives" test -n "$xrpath" && \ - func_warning "\`-R' is ignored for archives" + func_warning "'-R' is ignored for archives" test -n "$vinfo" && \ - func_warning "\`-version-info/-version-number' is ignored for archives" + func_warning "'-version-info/-version-number' is ignored for archives" test -n "$release" && \ - func_warning "\`-release' is ignored for archives" + func_warning "'-release' is ignored for archives" test -n "$export_symbols$export_symbols_regex" && \ - func_warning "\`-export-symbols' is ignored for archives" + func_warning "'-export-symbols' is ignored for archives" # Now set the variables for building old libraries. build_libtool_libs=no - oldlibs="$output" + oldlibs=$output func_append objs "$old_deplibs" ;; lib) - # Make sure we only generate libraries of the form `libNAME.la'. + # Make sure we only generate libraries of the form 'libNAME.la'. case $outputname in lib*) func_stripname 'lib' '.la' "$outputname" @@ -7248,10 +8724,10 @@ func_mode_link () eval libname=\"$libname_spec\" ;; *) - test "$module" = no && \ - func_fatal_help "libtool library \`$output' must begin with \`lib'" + test no = "$module" \ + && func_fatal_help "libtool library '$output' must begin with 'lib'" - if test "$need_lib_prefix" != no; then + if test no != "$need_lib_prefix"; then # Add the "lib" prefix for modules if required func_stripname '' '.la' "$outputname" name=$func_stripname_result @@ -7265,8 +8741,8 @@ func_mode_link () esac if test -n "$objs"; then - if test "$deplibs_check_method" != pass_all; then - func_fatal_error "cannot build libtool library \`$output' from non-libtool objects on this host:$objs" + if test pass_all != "$deplibs_check_method"; then + func_fatal_error "cannot build libtool library '$output' from non-libtool objects on this host:$objs" else echo $ECHO "*** Warning: Linking the shared library $output against the non-libtool" @@ -7275,21 +8751,21 @@ func_mode_link () fi fi - test "$dlself" != no && \ - func_warning "\`-dlopen self' is ignored for libtool libraries" + test no = "$dlself" \ + || func_warning "'-dlopen self' is ignored for libtool libraries" set dummy $rpath shift - test "$#" -gt 1 && \ - func_warning "ignoring multiple \`-rpath's for a libtool library" + test 1 -lt "$#" \ + && func_warning "ignoring multiple '-rpath's for a libtool library" - install_libdir="$1" + install_libdir=$1 oldlibs= if test -z "$rpath"; then - if test "$build_libtool_libs" = yes; then + if test yes = "$build_libtool_libs"; then # Building a libtool convenience library. - # Some compilers have problems with a `.al' extension so + # Some compilers have problems with a '.al' extension so # convenience libraries should have the same extension an # archive normally would. oldlibs="$output_objdir/$libname.$libext $oldlibs" @@ -7298,20 +8774,20 @@ func_mode_link () fi test -n "$vinfo" && \ - func_warning "\`-version-info/-version-number' is ignored for convenience libraries" + func_warning "'-version-info/-version-number' is ignored for convenience libraries" test -n "$release" && \ - func_warning "\`-release' is ignored for convenience libraries" + func_warning "'-release' is ignored for convenience libraries" else # Parse the version information argument. - save_ifs="$IFS"; IFS=':' + save_ifs=$IFS; IFS=: set dummy $vinfo 0 0 0 shift - IFS="$save_ifs" + IFS=$save_ifs test -n "$7" && \ - func_fatal_help "too many parameters to \`-version-info'" + func_fatal_help "too many parameters to '-version-info'" # convert absolute version numbers to libtool ages # this retains compatibility with .la files and attempts @@ -7319,42 +8795,42 @@ func_mode_link () case $vinfo_number in yes) - number_major="$1" - number_minor="$2" - number_revision="$3" + number_major=$1 + number_minor=$2 + number_revision=$3 # # There are really only two kinds -- those that # use the current revision as the major version # and those that subtract age and use age as # a minor version. But, then there is irix - # which has an extra 1 added just for fun + # that has an extra 1 added just for fun # case $version_type in # correct linux to gnu/linux during the next big refactor - darwin|linux|osf|windows|none) + darwin|freebsd-elf|linux|osf|windows|none) func_arith $number_major + $number_minor current=$func_arith_result - age="$number_minor" - revision="$number_revision" + age=$number_minor + revision=$number_revision ;; - freebsd-aout|freebsd-elf|qnx|sunos) - current="$number_major" - revision="$number_minor" - age="0" + freebsd-aout|qnx|sunos) + current=$number_major + revision=$number_minor + age=0 ;; irix|nonstopux) func_arith $number_major + $number_minor current=$func_arith_result - age="$number_minor" - revision="$number_minor" + age=$number_minor + revision=$number_minor lt_irix_increment=no ;; esac ;; no) - current="$1" - revision="$2" - age="$3" + current=$1 + revision=$2 + age=$3 ;; esac @@ -7362,30 +8838,30 @@ func_mode_link () case $current in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) - func_error "CURRENT \`$current' must be a nonnegative integer" - func_fatal_error "\`$vinfo' is not valid version information" + func_error "CURRENT '$current' must be a nonnegative integer" + func_fatal_error "'$vinfo' is not valid version information" ;; esac case $revision in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) - func_error "REVISION \`$revision' must be a nonnegative integer" - func_fatal_error "\`$vinfo' is not valid version information" + func_error "REVISION '$revision' must be a nonnegative integer" + func_fatal_error "'$vinfo' is not valid version information" ;; esac case $age in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) - func_error "AGE \`$age' must be a nonnegative integer" - func_fatal_error "\`$vinfo' is not valid version information" + func_error "AGE '$age' must be a nonnegative integer" + func_fatal_error "'$vinfo' is not valid version information" ;; esac if test "$age" -gt "$current"; then - func_error "AGE \`$age' is greater than the current interface number \`$current'" - func_fatal_error "\`$vinfo' is not valid version information" + func_error "AGE '$age' is greater than the current interface number '$current'" + func_fatal_error "'$vinfo' is not valid version information" fi # Calculate the version variables. @@ -7400,26 +8876,36 @@ func_mode_link () # verstring for coding it into the library header func_arith $current - $age major=.$func_arith_result - versuffix="$major.$age.$revision" + versuffix=$major.$age.$revision # Darwin ld doesn't like 0 for these options... func_arith $current + 1 minor_current=$func_arith_result - xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision" + xlcverstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" + # On Darwin other compilers + case $CC in + nagfor*) + verstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" + ;; + *) + verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" + ;; + esac ;; freebsd-aout) - major=".$current" - versuffix=".$current.$revision"; + major=.$current + versuffix=.$current.$revision ;; freebsd-elf) - major=".$current" - versuffix=".$current" + func_arith $current - $age + major=.$func_arith_result + versuffix=$major.$age.$revision ;; irix | nonstopux) - if test "X$lt_irix_increment" = "Xno"; then + if test no = "$lt_irix_increment"; then func_arith $current - $age else func_arith $current - $age + 1 @@ -7430,69 +8916,74 @@ func_mode_link () nonstopux) verstring_prefix=nonstopux ;; *) verstring_prefix=sgi ;; esac - verstring="$verstring_prefix$major.$revision" + verstring=$verstring_prefix$major.$revision # Add in all the interfaces that we are compatible with. loop=$revision - while test "$loop" -ne 0; do + while test 0 -ne "$loop"; do func_arith $revision - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result - verstring="$verstring_prefix$major.$iface:$verstring" + verstring=$verstring_prefix$major.$iface:$verstring done - # Before this point, $major must not contain `.'. + # Before this point, $major must not contain '.'. major=.$major - versuffix="$major.$revision" + versuffix=$major.$revision ;; linux) # correct to gnu/linux during the next big refactor func_arith $current - $age major=.$func_arith_result - versuffix="$major.$age.$revision" + versuffix=$major.$age.$revision ;; osf) func_arith $current - $age major=.$func_arith_result - versuffix=".$current.$age.$revision" - verstring="$current.$age.$revision" + versuffix=.$current.$age.$revision + verstring=$current.$age.$revision # Add in all the interfaces that we are compatible with. loop=$age - while test "$loop" -ne 0; do + while test 0 -ne "$loop"; do func_arith $current - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result - verstring="$verstring:${iface}.0" + verstring=$verstring:$iface.0 done # Make executables depend on our current version. - func_append verstring ":${current}.0" + func_append verstring ":$current.0" ;; qnx) - major=".$current" - versuffix=".$current" + major=.$current + versuffix=.$current + ;; + + sco) + major=.$current + versuffix=.$current ;; sunos) - major=".$current" - versuffix=".$current.$revision" + major=.$current + versuffix=.$current.$revision ;; windows) # Use '-' rather than '.', since we only want one - # extension on DOS 8.3 filesystems. + # extension on DOS 8.3 file systems. func_arith $current - $age major=$func_arith_result - versuffix="-$major" + versuffix=-$major ;; *) - func_fatal_configuration "unknown library version type \`$version_type'" + func_fatal_configuration "unknown library version type '$version_type'" ;; esac @@ -7506,42 +8997,45 @@ func_mode_link () verstring= ;; *) - verstring="0.0" + verstring=0.0 ;; esac - if test "$need_version" = no; then + if test no = "$need_version"; then versuffix= else - versuffix=".0.0" + versuffix=.0.0 fi fi # Remove version info from name if versioning should be avoided - if test "$avoid_version" = yes && test "$need_version" = no; then + if test yes,no = "$avoid_version,$need_version"; then major= versuffix= - verstring="" + verstring= fi # Check to see if the archive will have undefined symbols. - if test "$allow_undefined" = yes; then - if test "$allow_undefined_flag" = unsupported; then - func_warning "undefined symbols not allowed in $host shared libraries" - build_libtool_libs=no - build_old_libs=yes + if test yes = "$allow_undefined"; then + if test unsupported = "$allow_undefined_flag"; then + if test yes = "$build_old_libs"; then + func_warning "undefined symbols not allowed in $host shared libraries; building static only" + build_libtool_libs=no + else + func_fatal_error "can't build $host shared library unless -no-undefined is specified" + fi fi else # Don't allow undefined symbols. - allow_undefined_flag="$no_undefined_flag" + allow_undefined_flag=$no_undefined_flag fi fi - func_generate_dlsyms "$libname" "$libname" "yes" + func_generate_dlsyms "$libname" "$libname" : func_append libobjs " $symfileobj" - test "X$libobjs" = "X " && libobjs= + test " " = "$libobjs" && libobjs= - if test "$opt_mode" != relink; then + if test relink != "$opt_mode"; then # Remove our outputs, but don't remove object files since they # may have been created when compiling PIC objects. removelist= @@ -7550,8 +9044,8 @@ func_mode_link () case $p in *.$objext | *.gcno) ;; - $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*) - if test "X$precious_files_regex" != "X"; then + $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/$libname$release.*) + if test -n "$precious_files_regex"; then if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 then continue @@ -7567,11 +9061,11 @@ func_mode_link () fi # Now set the variables for building old libraries. - if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then + if test yes = "$build_old_libs" && test convenience != "$build_libtool_libs"; then func_append oldlibs " $output_objdir/$libname.$libext" # Transform .lo files to .o files. - oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; $lo2o" | $NL2SP` + oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; $lo2o" | $NL2SP` fi # Eliminate all temporary directories. @@ -7592,13 +9086,13 @@ func_mode_link () *) func_append finalize_rpath " $libdir" ;; esac done - if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then + if test yes != "$hardcode_into_libs" || test yes = "$build_old_libs"; then dependency_libs="$temp_xrpath $dependency_libs" fi fi # Make sure dlfiles contains only unique files that won't be dlpreopened - old_dlfiles="$dlfiles" + old_dlfiles=$dlfiles dlfiles= for lib in $old_dlfiles; do case " $dlprefiles $dlfiles " in @@ -7608,7 +9102,7 @@ func_mode_link () done # Make sure dlprefiles contains only unique files - old_dlprefiles="$dlprefiles" + old_dlprefiles=$dlprefiles dlprefiles= for lib in $old_dlprefiles; do case "$dlprefiles " in @@ -7617,7 +9111,7 @@ func_mode_link () esac done - if test "$build_libtool_libs" = yes; then + if test yes = "$build_libtool_libs"; then if test -n "$rpath"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*) @@ -7641,7 +9135,7 @@ func_mode_link () ;; *) # Add libc to deplibs on all other systems if necessary. - if test "$build_libtool_need_lc" = "yes"; then + if test yes = "$build_libtool_need_lc"; then func_append deplibs " -lc" fi ;; @@ -7657,9 +9151,9 @@ func_mode_link () # I'm not sure if I'm treating the release correctly. I think # release should show up in the -l (ie -lgmp5) so we don't want to # add it in twice. Is that correct? - release="" - versuffix="" - major="" + release= + versuffix= + major= newdeplibs= droppeddeps=no case $deplibs_check_method in @@ -7688,20 +9182,20 @@ EOF -l*) func_stripname -l '' "$i" name=$func_stripname_result - if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $i "*) func_append newdeplibs " $i" - i="" + i= ;; esac fi - if test -n "$i" ; then + if test -n "$i"; then libname=`eval "\\$ECHO \"$libname_spec\""` deplib_matches=`eval "\\$ECHO \"$library_names_spec\""` set dummy $deplib_matches; shift deplib_match=$1 - if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then + if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0; then func_append newdeplibs " $i" else droppeddeps=yes @@ -7731,20 +9225,20 @@ EOF $opt_dry_run || $RM conftest if $LTCC $LTCFLAGS -o conftest conftest.c $i; then ldd_output=`ldd conftest` - if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $i "*) func_append newdeplibs " $i" - i="" + i= ;; esac fi - if test -n "$i" ; then + if test -n "$i"; then libname=`eval "\\$ECHO \"$libname_spec\""` deplib_matches=`eval "\\$ECHO \"$library_names_spec\""` set dummy $deplib_matches; shift deplib_match=$1 - if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then + if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0; then func_append newdeplibs " $i" else droppeddeps=yes @@ -7781,24 +9275,24 @@ EOF -l*) func_stripname -l '' "$a_deplib" name=$func_stripname_result - if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $a_deplib "*) func_append newdeplibs " $a_deplib" - a_deplib="" + a_deplib= ;; esac fi - if test -n "$a_deplib" ; then + if test -n "$a_deplib"; then libname=`eval "\\$ECHO \"$libname_spec\""` if test -n "$file_magic_glob"; then libnameglob=`func_echo_all "$libname" | $SED -e $file_magic_glob` else libnameglob=$libname fi - test "$want_nocaseglob" = yes && nocaseglob=`shopt -p nocaseglob` + test yes = "$want_nocaseglob" && nocaseglob=`shopt -p nocaseglob` for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do - if test "$want_nocaseglob" = yes; then + if test yes = "$want_nocaseglob"; then shopt -s nocaseglob potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null` $nocaseglob @@ -7816,25 +9310,25 @@ EOF # We might still enter an endless loop, since a link # loop can be closed while we follow links, # but so what? - potlib="$potent_lib" + potlib=$potent_lib while test -h "$potlib" 2>/dev/null; do - potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'` + potliblink=`ls -ld $potlib | $SED 's/.* -> //'` case $potliblink in - [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";; - *) potlib=`$ECHO "$potlib" | $SED 's,[^/]*$,,'`"$potliblink";; + [\\/]* | [A-Za-z]:[\\/]*) potlib=$potliblink;; + *) potlib=`$ECHO "$potlib" | $SED 's|[^/]*$||'`"$potliblink";; esac done if eval $file_magic_cmd \"\$potlib\" 2>/dev/null | $SED -e 10q | $EGREP "$file_magic_regex" > /dev/null; then func_append newdeplibs " $a_deplib" - a_deplib="" + a_deplib= break 2 fi done done fi - if test -n "$a_deplib" ; then + if test -n "$a_deplib"; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." @@ -7842,7 +9336,7 @@ EOF echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" - if test -z "$potlib" ; then + if test -z "$potlib"; then $ECHO "*** with $libname but no candidates were found. (...for file magic test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" @@ -7865,30 +9359,30 @@ EOF -l*) func_stripname -l '' "$a_deplib" name=$func_stripname_result - if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $a_deplib "*) func_append newdeplibs " $a_deplib" - a_deplib="" + a_deplib= ;; esac fi - if test -n "$a_deplib" ; then + if test -n "$a_deplib"; then libname=`eval "\\$ECHO \"$libname_spec\""` for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do potential_libs=`ls $i/$libname[.-]* 2>/dev/null` for potent_lib in $potential_libs; do - potlib="$potent_lib" # see symlink-check above in file_magic test + potlib=$potent_lib # see symlink-check above in file_magic test if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \ $EGREP "$match_pattern_regex" > /dev/null; then func_append newdeplibs " $a_deplib" - a_deplib="" + a_deplib= break 2 fi done done fi - if test -n "$a_deplib" ; then + if test -n "$a_deplib"; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." @@ -7896,7 +9390,7 @@ EOF echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" - if test -z "$potlib" ; then + if test -z "$potlib"; then $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" @@ -7912,18 +9406,18 @@ EOF done # Gone through all deplibs. ;; none | unknown | *) - newdeplibs="" + newdeplibs= tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'` - if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then - for i in $predeps $postdeps ; do + if test yes = "$allow_libtool_libs_with_static_runtimes"; then + for i in $predeps $postdeps; do # can't use Xsed below, because $i might contain '/' - tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s,$i,,"` + tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s|$i||"` done fi case $tmp_deplibs in *[!\ \ ]*) echo - if test "X$deplibs_check_method" = "Xnone"; then + if test none = "$deplibs_check_method"; then echo "*** Warning: inter-library dependencies are not supported in this platform." else echo "*** Warning: inter-library dependencies are not known to be supported." @@ -7947,8 +9441,8 @@ EOF ;; esac - if test "$droppeddeps" = yes; then - if test "$module" = yes; then + if test yes = "$droppeddeps"; then + if test yes = "$module"; then echo echo "*** Warning: libtool could not satisfy all declared inter-library" $ECHO "*** dependencies of module $libname. Therefore, libtool will create" @@ -7957,12 +9451,12 @@ EOF if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" - echo "*** lists from a program, using \`nm' or equivalent, but libtool could" + echo "*** lists from a program, using 'nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." - echo "*** \`nm' from GNU binutils and a full rebuild may help." + echo "*** 'nm' from GNU binutils and a full rebuild may help." fi - if test "$build_old_libs" = no; then - oldlibs="$output_objdir/$libname.$libext" + if test no = "$build_old_libs"; then + oldlibs=$output_objdir/$libname.$libext build_libtool_libs=module build_old_libs=yes else @@ -7973,14 +9467,14 @@ EOF echo "*** automatically added whenever a program is linked with this library" echo "*** or is declared to -dlopen it." - if test "$allow_undefined" = no; then + if test no = "$allow_undefined"; then echo echo "*** Since this library must not contain undefined symbols," echo "*** because either the platform does not support them or" echo "*** it was explicitly requested with -no-undefined," echo "*** libtool will only create a static version of it." - if test "$build_old_libs" = no; then - oldlibs="$output_objdir/$libname.$libext" + if test no = "$build_old_libs"; then + oldlibs=$output_objdir/$libname.$libext build_libtool_libs=module build_old_libs=yes else @@ -8026,7 +9520,7 @@ EOF *) func_append new_libs " $deplib" ;; esac done - deplibs="$new_libs" + deplibs=$new_libs # All the library-specific variables (install_libdir is set above). library_names= @@ -8034,25 +9528,25 @@ EOF dlname= # Test again, we may have decided not to build it any more - if test "$build_libtool_libs" = yes; then - # Remove ${wl} instances when linking with ld. + if test yes = "$build_libtool_libs"; then + # Remove $wl instances when linking with ld. # FIXME: should test the right _cmds variable. case $archive_cmds in *\$LD\ *) wl= ;; esac - if test "$hardcode_into_libs" = yes; then + if test yes = "$hardcode_into_libs"; then # Hardcode the library paths hardcode_libdirs= dep_rpath= - rpath="$finalize_rpath" - test "$opt_mode" != relink && rpath="$compile_rpath$rpath" + rpath=$finalize_rpath + test relink = "$opt_mode" || rpath=$compile_rpath$rpath for libdir in $rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then func_replace_sysroot "$libdir" libdir=$func_replace_sysroot_result if test -z "$hardcode_libdirs"; then - hardcode_libdirs="$libdir" + hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in @@ -8077,7 +9571,7 @@ EOF # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then - libdir="$hardcode_libdirs" + libdir=$hardcode_libdirs eval "dep_rpath=\"$hardcode_libdir_flag_spec\"" fi if test -n "$runpath_var" && test -n "$perm_rpath"; then @@ -8091,8 +9585,8 @@ EOF test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" fi - shlibpath="$finalize_shlibpath" - test "$opt_mode" != relink && shlibpath="$compile_shlibpath$shlibpath" + shlibpath=$finalize_shlibpath + test relink = "$opt_mode" || shlibpath=$compile_shlibpath$shlibpath if test -n "$shlibpath"; then eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" fi @@ -8102,19 +9596,19 @@ EOF eval library_names=\"$library_names_spec\" set dummy $library_names shift - realname="$1" + realname=$1 shift if test -n "$soname_spec"; then eval soname=\"$soname_spec\" else - soname="$realname" + soname=$realname fi if test -z "$dlname"; then dlname=$soname fi - lib="$output_objdir/$realname" + lib=$output_objdir/$realname linknames= for link do @@ -8128,7 +9622,7 @@ EOF delfiles= if test -n "$export_symbols" && test -n "$include_expsyms"; then $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp" - export_symbols="$output_objdir/$libname.uexp" + export_symbols=$output_objdir/$libname.uexp func_append delfiles " $export_symbols" fi @@ -8137,31 +9631,31 @@ EOF cygwin* | mingw* | cegcc*) if test -n "$export_symbols" && test -z "$export_symbols_regex"; then # exporting using user supplied symfile - if test "x`$SED 1q $export_symbols`" != xEXPORTS; then + func_dll_def_p "$export_symbols" || { # and it's NOT already a .def file. Must figure out # which of the given symbols are data symbols and tag # them as such. So, trigger use of export_symbols_cmds. # export_symbols gets reassigned inside the "prepare # the list of exported symbols" if statement, so the # include_expsyms logic still works. - orig_export_symbols="$export_symbols" + orig_export_symbols=$export_symbols export_symbols= always_export_symbols=yes - fi + } fi ;; esac # Prepare the list of exported symbols if test -z "$export_symbols"; then - if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then - func_verbose "generating symbol list for \`$libname.la'" - export_symbols="$output_objdir/$libname.exp" + if test yes = "$always_export_symbols" || test -n "$export_symbols_regex"; then + func_verbose "generating symbol list for '$libname.la'" + export_symbols=$output_objdir/$libname.exp $opt_dry_run || $RM $export_symbols cmds=$export_symbols_cmds - save_ifs="$IFS"; IFS='~' + save_ifs=$IFS; IFS='~' for cmd1 in $cmds; do - IFS="$save_ifs" + IFS=$save_ifs # Take the normal branch if the nm_file_list_spec branch # doesn't work or if tool conversion is not needed. case $nm_file_list_spec~$to_tool_file_cmd in @@ -8175,7 +9669,7 @@ EOF try_normal_branch=no ;; esac - if test "$try_normal_branch" = yes \ + if test yes = "$try_normal_branch" \ && { test "$len" -lt "$max_cmd_len" \ || test "$max_cmd_len" -le -1; } then @@ -8186,7 +9680,7 @@ EOF output_la=$func_basename_result save_libobjs=$libobjs save_output=$output - output=${output_objdir}/${output_la}.nm + output=$output_objdir/$output_la.nm func_to_tool_file "$output" libobjs=$nm_file_list_spec$func_to_tool_file_result func_append delfiles " $output" @@ -8209,8 +9703,8 @@ EOF break fi done - IFS="$save_ifs" - if test -n "$export_symbols_regex" && test "X$skipped_export" != "X:"; then + IFS=$save_ifs + if test -n "$export_symbols_regex" && test : != "$skipped_export"; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi @@ -8218,16 +9712,16 @@ EOF fi if test -n "$export_symbols" && test -n "$include_expsyms"; then - tmp_export_symbols="$export_symbols" - test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" + tmp_export_symbols=$export_symbols + test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi - if test "X$skipped_export" != "X:" && test -n "$orig_export_symbols"; then + if test : != "$skipped_export" && test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. - func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" + func_verbose "filter symbol list for '$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of - # 's' commands which not all seds can handle. GNU sed should be fine + # 's' commands, which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. @@ -8246,11 +9740,11 @@ EOF ;; esac done - deplibs="$tmp_deplibs" + deplibs=$tmp_deplibs if test -n "$convenience"; then if test -n "$whole_archive_flag_spec" && - test "$compiler_needs_object" = yes && + test yes = "$compiler_needs_object" && test -z "$libobjs"; then # extract the archives, so we have objects to list. # TODO: could optimize this to just extract one archive. @@ -8261,7 +9755,7 @@ EOF eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= else - gentop="$output_objdir/${outputname}x" + gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $convenience @@ -8270,18 +9764,18 @@ EOF fi fi - if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then + if test yes = "$thread_safe" && test -n "$thread_safe_flag_spec"; then eval flag=\"$thread_safe_flag_spec\" func_append linker_flags " $flag" fi # Make a backup of the uninstalled library when relinking - if test "$opt_mode" = relink; then + if test relink = "$opt_mode"; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $? fi # Do each of the archive commands. - if test "$module" = yes && test -n "$module_cmds" ; then + if test yes = "$module" && test -n "$module_cmds"; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then eval test_cmds=\"$module_expsym_cmds\" cmds=$module_expsym_cmds @@ -8299,7 +9793,7 @@ EOF fi fi - if test "X$skipped_export" != "X:" && + if test : != "$skipped_export" && func_len " $test_cmds" && len=$func_len_result && test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then @@ -8332,8 +9826,8 @@ EOF last_robj= k=1 - if test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "$with_gnu_ld" = yes; then - output=${output_objdir}/${output_la}.lnkscript + if test -n "$save_libobjs" && test : != "$skipped_export" && test yes = "$with_gnu_ld"; then + output=$output_objdir/$output_la.lnkscript func_verbose "creating GNU ld script: $output" echo 'INPUT (' > $output for obj in $save_libobjs @@ -8345,14 +9839,14 @@ EOF func_append delfiles " $output" func_to_tool_file "$output" output=$func_to_tool_file_result - elif test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "X$file_list_spec" != X; then - output=${output_objdir}/${output_la}.lnk + elif test -n "$save_libobjs" && test : != "$skipped_export" && test -n "$file_list_spec"; then + output=$output_objdir/$output_la.lnk func_verbose "creating linker input file list: $output" : > $output set x $save_libobjs shift firstobj= - if test "$compiler_needs_object" = yes; then + if test yes = "$compiler_needs_object"; then firstobj="$1 " shift fi @@ -8367,7 +9861,7 @@ EOF else if test -n "$save_libobjs"; then func_verbose "creating reloadable object files..." - output=$output_objdir/$output_la-${k}.$objext + output=$output_objdir/$output_la-$k.$objext eval test_cmds=\"$reload_cmds\" func_len " $test_cmds" len0=$func_len_result @@ -8379,13 +9873,13 @@ EOF func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result - if test "X$objlist" = X || + if test -z "$objlist" || test "$len" -lt "$max_cmd_len"; then func_append objlist " $obj" else # The command $test_cmds is almost too long, add a # command to the queue. - if test "$k" -eq 1 ; then + if test 1 -eq "$k"; then # The first file doesn't have a previous command to add. reload_objs=$objlist eval concat_cmds=\"$reload_cmds\" @@ -8395,10 +9889,10 @@ EOF reload_objs="$objlist $last_robj" eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\" fi - last_robj=$output_objdir/$output_la-${k}.$objext + last_robj=$output_objdir/$output_la-$k.$objext func_arith $k + 1 k=$func_arith_result - output=$output_objdir/$output_la-${k}.$objext + output=$output_objdir/$output_la-$k.$objext objlist=" $obj" func_len " $last_robj" func_arith $len0 + $func_len_result @@ -8410,9 +9904,9 @@ EOF # files will link in the last one created. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ reload_objs="$objlist $last_robj" - eval concat_cmds=\"\${concat_cmds}$reload_cmds\" + eval concat_cmds=\"\$concat_cmds$reload_cmds\" if test -n "$last_robj"; then - eval concat_cmds=\"\${concat_cmds}~\$RM $last_robj\" + eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" fi func_append delfiles " $output" @@ -8420,9 +9914,9 @@ EOF output= fi - if ${skipped_export-false}; then - func_verbose "generating symbol list for \`$libname.la'" - export_symbols="$output_objdir/$libname.exp" + ${skipped_export-false} && { + func_verbose "generating symbol list for '$libname.la'" + export_symbols=$output_objdir/$libname.exp $opt_dry_run || $RM $export_symbols libobjs=$output # Append the command to create the export file. @@ -8431,16 +9925,16 @@ EOF if test -n "$last_robj"; then eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" fi - fi + } test -n "$save_libobjs" && func_verbose "creating a temporary reloadable object file: $output" # Loop through the commands generated above and execute them. - save_ifs="$IFS"; IFS='~' + save_ifs=$IFS; IFS='~' for cmd in $concat_cmds; do - IFS="$save_ifs" - $opt_silent || { + IFS=$save_ifs + $opt_quiet || { func_quote_for_expand "$cmd" eval "func_echo $func_quote_for_expand_result" } @@ -8448,7 +9942,7 @@ EOF lt_exit=$? # Restore the uninstalled library and exit - if test "$opt_mode" = relink; then + if test relink = "$opt_mode"; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) @@ -8457,7 +9951,7 @@ EOF exit $lt_exit } done - IFS="$save_ifs" + IFS=$save_ifs if test -n "$export_symbols_regex" && ${skipped_export-false}; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' @@ -8465,18 +9959,18 @@ EOF fi fi - if ${skipped_export-false}; then + ${skipped_export-false} && { if test -n "$export_symbols" && test -n "$include_expsyms"; then - tmp_export_symbols="$export_symbols" - test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" + tmp_export_symbols=$export_symbols + test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi if test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. - func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" + func_verbose "filter symbol list for '$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of - # 's' commands which not all seds can handle. GNU sed should be fine + # 's' commands, which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. @@ -8485,7 +9979,7 @@ EOF export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi - fi + } libobjs=$output # Restore the value of output. @@ -8499,7 +9993,7 @@ EOF # value of $libobjs for piecewise linking. # Do each of the archive commands. - if test "$module" = yes && test -n "$module_cmds" ; then + if test yes = "$module" && test -n "$module_cmds"; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then cmds=$module_expsym_cmds else @@ -8521,7 +10015,7 @@ EOF # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then - gentop="$output_objdir/${outputname}x" + gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $dlprefiles @@ -8529,11 +10023,12 @@ EOF test "X$libobjs" = "X " && libobjs= fi - save_ifs="$IFS"; IFS='~' + save_ifs=$IFS; IFS='~' for cmd in $cmds; do - IFS="$save_ifs" + IFS=$sp$nl eval cmd=\"$cmd\" - $opt_silent || { + IFS=$save_ifs + $opt_quiet || { func_quote_for_expand "$cmd" eval "func_echo $func_quote_for_expand_result" } @@ -8541,7 +10036,7 @@ EOF lt_exit=$? # Restore the uninstalled library and exit - if test "$opt_mode" = relink; then + if test relink = "$opt_mode"; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) @@ -8550,10 +10045,10 @@ EOF exit $lt_exit } done - IFS="$save_ifs" + IFS=$save_ifs # Restore the uninstalled library and exit - if test "$opt_mode" = relink; then + if test relink = "$opt_mode"; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $? if test -n "$convenience"; then @@ -8573,39 +10068,39 @@ EOF done # If -module or -export-dynamic was specified, set the dlname. - if test "$module" = yes || test "$export_dynamic" = yes; then + if test yes = "$module" || test yes = "$export_dynamic"; then # On all known operating systems, these are identical. - dlname="$soname" + dlname=$soname fi fi ;; obj) - if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then - func_warning "\`-dlopen' is ignored for objects" + if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then + func_warning "'-dlopen' is ignored for objects" fi case " $deplibs" in *\ -l* | *\ -L*) - func_warning "\`-l' and \`-L' are ignored for objects" ;; + func_warning "'-l' and '-L' are ignored for objects" ;; esac test -n "$rpath" && \ - func_warning "\`-rpath' is ignored for objects" + func_warning "'-rpath' is ignored for objects" test -n "$xrpath" && \ - func_warning "\`-R' is ignored for objects" + func_warning "'-R' is ignored for objects" test -n "$vinfo" && \ - func_warning "\`-version-info' is ignored for objects" + func_warning "'-version-info' is ignored for objects" test -n "$release" && \ - func_warning "\`-release' is ignored for objects" + func_warning "'-release' is ignored for objects" case $output in *.lo) test -n "$objs$old_deplibs" && \ - func_fatal_error "cannot build library object \`$output' from non-libtool objects" + func_fatal_error "cannot build library object '$output' from non-libtool objects" libobj=$output func_lo2o "$libobj" @@ -8613,7 +10108,7 @@ EOF ;; *) libobj= - obj="$output" + obj=$output ;; esac @@ -8626,17 +10121,19 @@ EOF # the extraction. reload_conv_objs= gentop= - # reload_cmds runs $LD directly, so let us get rid of - # -Wl from whole_archive_flag_spec and hope we can get by with - # turning comma into space.. - wl= - + # if reload_cmds runs $LD directly, get rid of -Wl from + # whole_archive_flag_spec and hope we can get by with turning comma + # into space. + case $reload_cmds in + *\$LD[\ \$]*) wl= ;; + esac if test -n "$convenience"; then if test -n "$whole_archive_flag_spec"; then eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" - reload_conv_objs=$reload_objs\ `$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` + test -n "$wl" || tmp_whole_archive_flags=`$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` + reload_conv_objs=$reload_objs\ $tmp_whole_archive_flags else - gentop="$output_objdir/${obj}x" + gentop=$output_objdir/${obj}x func_append generated " $gentop" func_extract_archives $gentop $convenience @@ -8645,12 +10142,12 @@ EOF fi # If we're not building shared, we need to use non_pic_objs - test "$build_libtool_libs" != yes && libobjs="$non_pic_objects" + test yes = "$build_libtool_libs" || libobjs=$non_pic_objects # Create the old-style object. - reload_objs="$objs$old_deplibs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; /\.lib$/d; $lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test + reload_objs=$objs$old_deplibs' '`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; /\.lib$/d; $lo2o" | $NL2SP`' '$reload_conv_objs - output="$obj" + output=$obj func_execute_cmds "$reload_cmds" 'exit $?' # Exit if we aren't doing a library object file. @@ -8662,7 +10159,7 @@ EOF exit $EXIT_SUCCESS fi - if test "$build_libtool_libs" != yes; then + test yes = "$build_libtool_libs" || { if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi @@ -8672,12 +10169,12 @@ EOF # $show "echo timestamp > $libobj" # $opt_dry_run || eval "echo timestamp > $libobj" || exit $? exit $EXIT_SUCCESS - fi + } - if test -n "$pic_flag" || test "$pic_mode" != default; then + if test -n "$pic_flag" || test default != "$pic_mode"; then # Only do commands if we really have different PIC objects. reload_objs="$libobjs $reload_conv_objs" - output="$libobj" + output=$libobj func_execute_cmds "$reload_cmds" 'exit $?' fi @@ -8694,16 +10191,14 @@ EOF output=$func_stripname_result.exe;; esac test -n "$vinfo" && \ - func_warning "\`-version-info' is ignored for programs" + func_warning "'-version-info' is ignored for programs" test -n "$release" && \ - func_warning "\`-release' is ignored for programs" + func_warning "'-release' is ignored for programs" - test "$preload" = yes \ - && test "$dlopen_support" = unknown \ - && test "$dlopen_self" = unknown \ - && test "$dlopen_self_static" = unknown && \ - func_warning "\`LT_INIT([dlopen])' not used. Assuming no dlopen support." + $preload \ + && test unknown,unknown,unknown = "$dlopen_support,$dlopen_self,$dlopen_self_static" \ + && func_warning "'LT_INIT([dlopen])' not used. Assuming no dlopen support." case $host in *-*-rhapsody* | *-*-darwin1.[012]) @@ -8717,11 +10212,11 @@ EOF *-*-darwin*) # Don't allow lazy linking, it breaks C++ global constructors # But is supposedly fixed on 10.4 or later (yay!). - if test "$tagname" = CXX ; then + if test CXX = "$tagname"; then case ${MACOSX_DEPLOYMENT_TARGET-10.0} in 10.[0123]) - func_append compile_command " ${wl}-bind_at_load" - func_append finalize_command " ${wl}-bind_at_load" + func_append compile_command " $wl-bind_at_load" + func_append finalize_command " $wl-bind_at_load" ;; esac fi @@ -8757,7 +10252,7 @@ EOF *) func_append new_libs " $deplib" ;; esac done - compile_deplibs="$new_libs" + compile_deplibs=$new_libs func_append compile_command " $compile_deplibs" @@ -8781,7 +10276,7 @@ EOF if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then - hardcode_libdirs="$libdir" + hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in @@ -8804,7 +10299,7 @@ EOF fi case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) - testbindir=`${ECHO} "$libdir" | ${SED} -e 's*/lib$*/bin*'` + testbindir=`$ECHO "$libdir" | $SED -e 's*/lib$*/bin*'` case :$dllsearchpath: in *":$libdir:"*) ;; ::) dllsearchpath=$libdir;; @@ -8821,10 +10316,10 @@ EOF # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then - libdir="$hardcode_libdirs" + libdir=$hardcode_libdirs eval rpath=\" $hardcode_libdir_flag_spec\" fi - compile_rpath="$rpath" + compile_rpath=$rpath rpath= hardcode_libdirs= @@ -8832,7 +10327,7 @@ EOF if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then - hardcode_libdirs="$libdir" + hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in @@ -8857,45 +10352,43 @@ EOF # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then - libdir="$hardcode_libdirs" + libdir=$hardcode_libdirs eval rpath=\" $hardcode_libdir_flag_spec\" fi - finalize_rpath="$rpath" + finalize_rpath=$rpath - if test -n "$libobjs" && test "$build_old_libs" = yes; then + if test -n "$libobjs" && test yes = "$build_old_libs"; then # Transform all the library objects into standard objects. compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP` finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP` fi - func_generate_dlsyms "$outputname" "@PROGRAM@" "no" + func_generate_dlsyms "$outputname" "@PROGRAM@" false # template prelinking step if test -n "$prelink_cmds"; then func_execute_cmds "$prelink_cmds" 'exit $?' fi - wrappers_required=yes + wrappers_required=: case $host in *cegcc* | *mingw32ce*) # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway. - wrappers_required=no + wrappers_required=false ;; *cygwin* | *mingw* ) - if test "$build_libtool_libs" != yes; then - wrappers_required=no - fi + test yes = "$build_libtool_libs" || wrappers_required=false ;; *) - if test "$need_relink" = no || test "$build_libtool_libs" != yes; then - wrappers_required=no + if test no = "$need_relink" || test yes != "$build_libtool_libs"; then + wrappers_required=false fi ;; esac - if test "$wrappers_required" = no; then + $wrappers_required || { # Replace the output file specification. compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'` - link_command="$compile_command$compile_rpath" + link_command=$compile_command$compile_rpath # We have no uninstalled library dependencies, so finalize right now. exit_status=0 @@ -8908,12 +10401,12 @@ EOF fi # Delete the generated files. - if test -f "$output_objdir/${outputname}S.${objext}"; then - func_show_eval '$RM "$output_objdir/${outputname}S.${objext}"' + if test -f "$output_objdir/${outputname}S.$objext"; then + func_show_eval '$RM "$output_objdir/${outputname}S.$objext"' fi exit $exit_status - fi + } if test -n "$compile_shlibpath$finalize_shlibpath"; then compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" @@ -8943,9 +10436,9 @@ EOF fi fi - if test "$no_install" = yes; then + if test yes = "$no_install"; then # We don't need to create a wrapper script. - link_command="$compile_var$compile_command$compile_rpath" + link_command=$compile_var$compile_command$compile_rpath # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'` # Delete the old output file. @@ -8962,27 +10455,28 @@ EOF exit $EXIT_SUCCESS fi - if test "$hardcode_action" = relink; then - # Fast installation is not supported - link_command="$compile_var$compile_command$compile_rpath" - relink_command="$finalize_var$finalize_command$finalize_rpath" + case $hardcode_action,$fast_install in + relink,*) + # Fast installation is not supported + link_command=$compile_var$compile_command$compile_rpath + relink_command=$finalize_var$finalize_command$finalize_rpath - func_warning "this platform does not like uninstalled shared libraries" - func_warning "\`$output' will be relinked during installation" - else - if test "$fast_install" != no; then - link_command="$finalize_var$compile_command$finalize_rpath" - if test "$fast_install" = yes; then - relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` - else - # fast_install is set to needless - relink_command= - fi - else - link_command="$compile_var$compile_command$compile_rpath" - relink_command="$finalize_var$finalize_command$finalize_rpath" - fi - fi + func_warning "this platform does not like uninstalled shared libraries" + func_warning "'$output' will be relinked during installation" + ;; + *,yes) + link_command=$finalize_var$compile_command$finalize_rpath + relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` + ;; + *,no) + link_command=$compile_var$compile_command$compile_rpath + relink_command=$finalize_var$finalize_command$finalize_rpath + ;; + *,needless) + link_command=$finalize_var$compile_command$finalize_rpath + relink_command= + ;; + esac # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` @@ -9039,8 +10533,8 @@ EOF func_dirname_and_basename "$output" "" "." output_name=$func_basename_result output_path=$func_dirname_result - cwrappersource="$output_path/$objdir/lt-$output_name.c" - cwrapper="$output_path/$output_name.exe" + cwrappersource=$output_path/$objdir/lt-$output_name.c + cwrapper=$output_path/$output_name.exe $RM $cwrappersource $cwrapper trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 @@ -9061,7 +10555,7 @@ EOF trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15 $opt_dry_run || { # note: this script will not be executed, so do not chmod. - if test "x$build" = "x$host" ; then + if test "x$build" = "x$host"; then $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result else func_emit_wrapper no > $func_ltwrapper_scriptname_result @@ -9084,25 +10578,27 @@ EOF # See if we need to build an old-fashioned archive. for oldlib in $oldlibs; do - if test "$build_libtool_libs" = convenience; then - oldobjs="$libobjs_save $symfileobj" - addlibs="$convenience" - build_libtool_libs=no - else - if test "$build_libtool_libs" = module; then - oldobjs="$libobjs_save" + case $build_libtool_libs in + convenience) + oldobjs="$libobjs_save $symfileobj" + addlibs=$convenience build_libtool_libs=no - else + ;; + module) + oldobjs=$libobjs_save + addlibs=$old_convenience + build_libtool_libs=no + ;; + *) oldobjs="$old_deplibs $non_pic_objects" - if test "$preload" = yes && test -f "$symfileobj"; then - func_append oldobjs " $symfileobj" - fi - fi - addlibs="$old_convenience" - fi + $preload && test -f "$symfileobj" \ + && func_append oldobjs " $symfileobj" + addlibs=$old_convenience + ;; + esac if test -n "$addlibs"; then - gentop="$output_objdir/${outputname}x" + gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $addlibs @@ -9110,13 +10606,13 @@ EOF fi # Do each command in the archive commands. - if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then + if test -n "$old_archive_from_new_cmds" && test yes = "$build_libtool_libs"; then cmds=$old_archive_from_new_cmds else # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then - gentop="$output_objdir/${outputname}x" + gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $dlprefiles @@ -9137,7 +10633,7 @@ EOF : else echo "copying selected object files to avoid basename conflicts..." - gentop="$output_objdir/${outputname}x" + gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_mkdir_p "$gentop" save_oldobjs=$oldobjs @@ -9146,7 +10642,7 @@ EOF for obj in $save_oldobjs do func_basename "$obj" - objbase="$func_basename_result" + objbase=$func_basename_result case " $oldobjs " in " ") oldobjs=$obj ;; *[\ /]"$objbase "*) @@ -9215,18 +10711,18 @@ EOF else # the above command should be used before it gets too long oldobjs=$objlist - if test "$obj" = "$last_oldobj" ; then + if test "$obj" = "$last_oldobj"; then RANLIB=$save_RANLIB fi test -z "$concat_cmds" || concat_cmds=$concat_cmds~ - eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\" + eval concat_cmds=\"\$concat_cmds$old_archive_cmds\" objlist= len=$len0 fi done RANLIB=$save_RANLIB oldobjs=$objlist - if test "X$oldobjs" = "X" ; then + if test -z "$oldobjs"; then eval cmds=\"\$concat_cmds\" else eval cmds=\"\$concat_cmds~\$old_archive_cmds\" @@ -9243,7 +10739,7 @@ EOF case $output in *.la) old_library= - test "$build_old_libs" = yes && old_library="$libname.$libext" + test yes = "$build_old_libs" && old_library=$libname.$libext func_verbose "creating $output" # Preserve any variables that may affect compiler behavior @@ -9258,31 +10754,31 @@ EOF fi done # Quote the link command for shipping. - relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" + relink_command="(cd `pwd`; $SHELL \"$progpath\" $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` - if test "$hardcode_automatic" = yes ; then + if test yes = "$hardcode_automatic"; then relink_command= fi # Only create the output if not a dry run. $opt_dry_run || { for installed in no yes; do - if test "$installed" = yes; then + if test yes = "$installed"; then if test -z "$install_libdir"; then break fi - output="$output_objdir/$outputname"i + output=$output_objdir/${outputname}i # Replace all uninstalled libtool libraries with the installed ones newdependency_libs= for deplib in $dependency_libs; do case $deplib in *.la) func_basename "$deplib" - name="$func_basename_result" + name=$func_basename_result func_resolve_sysroot "$deplib" - eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result` + eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result` test -z "$libdir" && \ - func_fatal_error "\`$deplib' is not a valid libtool archive" + func_fatal_error "'$deplib' is not a valid libtool archive" func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name" ;; -L*) @@ -9298,23 +10794,23 @@ EOF *) func_append newdependency_libs " $deplib" ;; esac done - dependency_libs="$newdependency_libs" + dependency_libs=$newdependency_libs newdlfiles= for lib in $dlfiles; do case $lib in *.la) func_basename "$lib" - name="$func_basename_result" - eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` + name=$func_basename_result + eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ - func_fatal_error "\`$lib' is not a valid libtool archive" + func_fatal_error "'$lib' is not a valid libtool archive" func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name" ;; *) func_append newdlfiles " $lib" ;; esac done - dlfiles="$newdlfiles" + dlfiles=$newdlfiles newdlprefiles= for lib in $dlprefiles; do case $lib in @@ -9324,34 +10820,34 @@ EOF # didn't already link the preopened objects directly into # the library: func_basename "$lib" - name="$func_basename_result" - eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` + name=$func_basename_result + eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ - func_fatal_error "\`$lib' is not a valid libtool archive" + func_fatal_error "'$lib' is not a valid libtool archive" func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name" ;; esac done - dlprefiles="$newdlprefiles" + dlprefiles=$newdlprefiles else newdlfiles= for lib in $dlfiles; do case $lib in - [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; + [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlfiles " $abs" done - dlfiles="$newdlfiles" + dlfiles=$newdlfiles newdlprefiles= for lib in $dlprefiles; do case $lib in - [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; + [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlprefiles " $abs" done - dlprefiles="$newdlprefiles" + dlprefiles=$newdlprefiles fi $RM $output # place dlname in correct position for cygwin @@ -9367,10 +10863,9 @@ EOF case $host,$output,$installed,$module,$dlname in *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) # If a -bindir argument was supplied, place the dll there. - if test "x$bindir" != x ; - then + if test -n "$bindir"; then func_relative_path "$install_libdir" "$bindir" - tdlname=$func_relative_path_result$dlname + tdlname=$func_relative_path_result/$dlname else # Otherwise fall back on heuristic. tdlname=../bin/$dlname @@ -9379,7 +10874,7 @@ EOF esac $ECHO > $output "\ # $outputname - a libtool library file -# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION +# Generated by $PROGRAM (GNU $PACKAGE) $VERSION # # Please DO NOT delete this file! # It is necessary for linking the library. @@ -9393,7 +10888,7 @@ library_names='$library_names' # The name of the static archive. old_library='$old_library' -# Linker flags that can not go in dependency_libs. +# Linker flags that cannot go in dependency_libs. inherited_linker_flags='$new_inherited_linker_flags' # Libraries that this one depends upon. @@ -9419,7 +10914,7 @@ dlpreopen='$dlprefiles' # Directory that this library needs to be installed in: libdir='$install_libdir'" - if test "$installed" = no && test "$need_relink" = yes; then + if test no,yes = "$installed,$need_relink"; then $ECHO >> $output "\ relink_command=\"$relink_command\"" fi @@ -9434,27 +10929,29 @@ relink_command=\"$relink_command\"" exit $EXIT_SUCCESS } -{ test "$opt_mode" = link || test "$opt_mode" = relink; } && - func_mode_link ${1+"$@"} +if test link = "$opt_mode" || test relink = "$opt_mode"; then + func_mode_link ${1+"$@"} +fi # func_mode_uninstall arg... func_mode_uninstall () { - $opt_debug - RM="$nonopt" + $debug_cmd + + RM=$nonopt files= - rmforce= + rmforce=false exit_status=0 # This variable tells wrapper scripts just to set variables rather # than running their programs. - libtool_install_magic="$magic" + libtool_install_magic=$magic for arg do case $arg in - -f) func_append RM " $arg"; rmforce=yes ;; + -f) func_append RM " $arg"; rmforce=: ;; -*) func_append RM " $arg" ;; *) func_append files " $arg" ;; esac @@ -9467,18 +10964,18 @@ func_mode_uninstall () for file in $files; do func_dirname "$file" "" "." - dir="$func_dirname_result" - if test "X$dir" = X.; then - odir="$objdir" + dir=$func_dirname_result + if test . = "$dir"; then + odir=$objdir else - odir="$dir/$objdir" + odir=$dir/$objdir fi func_basename "$file" - name="$func_basename_result" - test "$opt_mode" = uninstall && odir="$dir" + name=$func_basename_result + test uninstall = "$opt_mode" && odir=$dir # Remember odir for removal later, being careful to avoid duplicates - if test "$opt_mode" = clean; then + if test clean = "$opt_mode"; then case " $rmdirs " in *" $odir "*) ;; *) func_append rmdirs " $odir" ;; @@ -9493,11 +10990,11 @@ func_mode_uninstall () elif test -d "$file"; then exit_status=1 continue - elif test "$rmforce" = yes; then + elif $rmforce; then continue fi - rmfiles="$file" + rmfiles=$file case $name in *.la) @@ -9511,7 +11008,7 @@ func_mode_uninstall () done test -n "$old_library" && func_append rmfiles " $odir/$old_library" - case "$opt_mode" in + case $opt_mode in clean) case " $library_names " in *" $dlname "*) ;; @@ -9522,12 +11019,12 @@ func_mode_uninstall () uninstall) if test -n "$library_names"; then # Do each command in the postuninstall commands. - func_execute_cmds "$postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' + func_execute_cmds "$postuninstall_cmds" '$rmforce || exit_status=1' fi if test -n "$old_library"; then # Do each command in the old_postuninstall commands. - func_execute_cmds "$old_postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' + func_execute_cmds "$old_postuninstall_cmds" '$rmforce || exit_status=1' fi # FIXME: should reinstall the best remaining shared library. ;; @@ -9543,21 +11040,19 @@ func_mode_uninstall () func_source $dir/$name # Add PIC object to the list of files to remove. - if test -n "$pic_object" && - test "$pic_object" != none; then + if test -n "$pic_object" && test none != "$pic_object"; then func_append rmfiles " $dir/$pic_object" fi # Add non-PIC object to the list of files to remove. - if test -n "$non_pic_object" && - test "$non_pic_object" != none; then + if test -n "$non_pic_object" && test none != "$non_pic_object"; then func_append rmfiles " $dir/$non_pic_object" fi fi ;; *) - if test "$opt_mode" = clean ; then + if test clean = "$opt_mode"; then noexename=$name case $file in *.exe) @@ -9584,12 +11079,12 @@ func_mode_uninstall () # note $name still contains .exe if it was in $file originally # as does the version of $file that was added into $rmfiles - func_append rmfiles " $odir/$name $odir/${name}S.${objext}" - if test "$fast_install" = yes && test -n "$relink_command"; then + func_append rmfiles " $odir/$name $odir/${name}S.$objext" + if test yes = "$fast_install" && test -n "$relink_command"; then func_append rmfiles " $odir/lt-$name" fi - if test "X$noexename" != "X$name" ; then - func_append rmfiles " $odir/lt-${noexename}.c" + if test "X$noexename" != "X$name"; then + func_append rmfiles " $odir/lt-$noexename.c" fi fi fi @@ -9598,7 +11093,7 @@ func_mode_uninstall () func_show_eval "$RM $rmfiles" 'exit_status=1' done - # Try to remove the ${objdir}s in the directories where we deleted files + # Try to remove the $objdir's in the directories where we deleted files for dir in $rmdirs; do if test -d "$dir"; then func_show_eval "rmdir $dir >/dev/null 2>&1" @@ -9608,16 +11103,17 @@ func_mode_uninstall () exit $exit_status } -{ test "$opt_mode" = uninstall || test "$opt_mode" = clean; } && - func_mode_uninstall ${1+"$@"} +if test uninstall = "$opt_mode" || test clean = "$opt_mode"; then + func_mode_uninstall ${1+"$@"} +fi test -z "$opt_mode" && { - help="$generic_help" + help=$generic_help func_fatal_help "you must specify a MODE" } test -z "$exec_cmd" && \ - func_fatal_help "invalid operation mode \`$opt_mode'" + func_fatal_help "invalid operation mode '$opt_mode'" if test -n "$exec_cmd"; then eval exec "$exec_cmd" @@ -9628,7 +11124,7 @@ exit $exit_status # The TAGs below are defined such that we never get into a situation -# in which we disable both kinds of libraries. Given conflicting +# where we disable both kinds of libraries. Given conflicting # choices, we go for a static library, that is the most portable, # since we can't tell whether shared libraries were disabled because # the user asked for that or because the platform doesn't support @@ -9651,5 +11147,3 @@ build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` # mode:shell-script # sh-indentation:2 # End: -# vi:sw=2 - diff --git a/coregrade/src/run-tests.php b/coregrade/src/run-tests.php index 23b4e84..7494e90 100644 --- a/coregrade/src/run-tests.php +++ b/coregrade/src/run-tests.php @@ -2,9 +2,9 @@ '); - $exts_to_test = explode(',',`$php $pass_options $info_params "$info_file"`); + save_text($info_file, ''); + $exts_to_test = explode(',',`$php $pass_options $info_params $no_file_cache "$info_file"`); // check for extensions that need special handling and regenerate $info_params_ex = array( 'session' => array('session.auto_start=0'), @@ -291,12 +319,15 @@ More .INIs : " , (function_exists(\'php_ini_scanned_files\') ? str_replace("\n" } } + if (function_exists('opcache_invalidate')) { + opcache_invalidate($info_file, true); + } @unlink($info_file); // Write test context information. echo " ===================================================================== -PHP : $php $php_info $php_cgi_info +PHP : $php $php_info $php_cgi_info $phpdbg_info CWD : $cwd Extra dirs : "; foreach ($user_tests as $test_dir) { @@ -311,16 +342,17 @@ VALGRIND : " . ($leak_check ? $valgrind_header : 'Not used') . " define('PHP_QA_EMAIL', 'qa-reports@lists.php.net'); define('QA_SUBMISSION_PAGE', 'http://qa.php.net/buildtest-process.php'); define('QA_REPORTS_PAGE', 'http://qa.php.net/reports'); +define('TRAVIS_CI' , (bool) getenv('TRAVIS')); function save_or_mail_results() { global $sum_results, $just_save_results, $failed_test_summary, - $PHP_FAILED_TESTS, $CUR_DIR, $php, $output_file, $compression; + $PHP_FAILED_TESTS, $CUR_DIR, $php, $output_file; /* We got failed Tests, offer the user to send an e-mail to QA team, unless NO_INTERACTION is set */ - if (!getenv('NO_INTERACTION')) { + if (!getenv('NO_INTERACTION') && !TRAVIS_CI) { $fp = fopen("php://stdin", "r+"); - if ($sum_results['FAILED'] || $sum_results['BORKED'] || $sum_results['WARNED'] || $sum_results['LEAKED'] || $sum_results['XFAILED']) { + if ($sum_results['FAILED'] || $sum_results['BORKED'] || $sum_results['WARNED'] || $sum_results['LEAKED']) { echo "\nYou may have found a problem in PHP."; } echo "\nThis report can be automatically sent to the PHP QA team at\n"; @@ -335,11 +367,11 @@ function save_or_mail_results() $just_save_results = (strtolower($user_input[0]) == 's'); } - if ($just_save_results || !getenv('NO_INTERACTION')) { - if ($just_save_results || strlen(trim($user_input)) == 0 || strtolower($user_input[0]) == 'y') { + if ($just_save_results || !getenv('NO_INTERACTION') || TRAVIS_CI) { + if ($just_save_results || TRAVIS_CI || strlen(trim($user_input)) == 0 || strtolower($user_input[0]) == 'y') { /* * Collect information about the host system for our report - * Fetch phpinfo() output so that we can see the PHP enviroment + * Fetch phpinfo() output so that we can see the PHP environment * Make an archive of all the failed tests * Send an email */ @@ -348,7 +380,9 @@ function save_or_mail_results() } /* Ask the user to provide an email address, so that QA team can contact the user */ - if (!strncasecmp($user_input, 'y', 1) || strlen(trim($user_input)) == 0) { + if (TRAVIS_CI) { + $user_email = 'travis at php dot net'; + } elseif (!strncasecmp($user_input, 'y', 1) || strlen(trim($user_input)) == 0) { echo "\nPlease enter your email address.\n(Your address will be mangled so that it will not go out on any\nmailinglist in plain text): "; flush(); $user_email = trim(fgets($fp, 1024)); @@ -424,7 +458,7 @@ function save_or_mail_results() $failed_tests_data .= $sep . "PHPINFO" . $sep; $failed_tests_data .= shell_exec($php . ' -ddisplay_errors=stderr -dhtml_errors=0 -i 2> /dev/null'); - if ($just_save_results || !mail_qa_team($failed_tests_data, $compression, $status)) { + if (($just_save_results || !mail_qa_team($failed_tests_data, $status)) && !TRAVIS_CI) { file_put_contents($output_file, $failed_tests_data); if (!$just_save_results) { @@ -432,7 +466,7 @@ function save_or_mail_results() } echo "Please send " . $output_file . " to " . PHP_QA_EMAIL . " manually, thank you.\n"; - } else { + } elseif (!getenv('NO_INTERACTION') && !TRAVIS_CI) { fwrite($fp, "\nThank you for helping to make PHP better.\n"); fclose($fp); } @@ -445,20 +479,16 @@ function save_or_mail_results() $test_files = array(); $redir_tests = array(); $test_results = array(); -$PHP_FAILED_TESTS = array('BORKED' => array(), 'FAILED' => array(), 'WARNED' => array(), 'LEAKED' => array(), 'XFAILED' => array()); +$PHP_FAILED_TESTS = array('BORKED' => array(), 'FAILED' => array(), 'WARNED' => array(), 'LEAKED' => array(), 'XFAILED' => array(), 'SLOW' => array()); // If parameters given assume they represent selected tests to run. +$result_tests_file= false; $failed_tests_file= false; $pass_option_n = false; $pass_options = ''; -$compression = 0; $output_file = $CUR_DIR . '/php_test_results_' . date('Ymd_Hi') . '.txt'; -if ($compression) { - $output_file = 'compress.zlib://' . $output_file . '.gz'; -} - $just_save_results = false; $leak_check = false; $html_output = false; @@ -468,6 +498,7 @@ $temp_target = null; $temp_urlbase = null; $conf_passed = null; $no_clean = false; +$slow_min_ms = INF; $cfgtypes = array('show', 'keep'); $cfgfiles = array('skip', 'php', 'clean', 'out', 'diff', 'exp'); @@ -483,7 +514,7 @@ foreach($cfgtypes as $type) { if (getenv('TEST_PHP_ARGS')) { - if (!isset($argc) || !$argc || !isset($argv)) { + if (!isset($argc, $argv) || !$argc) { $argv = array(__FILE__); } @@ -552,6 +583,9 @@ if (isset($argc) && $argc > 1) { case 'a': $failed_tests_file = fopen($argv[++$i], 'a+t'); break; + case 'W': + $result_tests_file = fopen($argv[++$i], 'w+t'); + break; case 'c': $conf_passed = $argv[++$i]; break; @@ -559,7 +593,7 @@ if (isset($argc) && $argc > 1) { $ini_overwrites[] = $argv[++$i]; break; case 'g': - $SHOW_ONLY_GROUPS = explode(",", $argv[++$i]);; + $SHOW_ONLY_GROUPS = explode(",", $argv[++$i]); break; //case 'h' case '--keep-all': @@ -576,8 +610,8 @@ if (isset($argc) && $argc > 1) { if (!$valgrind_header) { error("Valgrind returned no version info, cannot proceed.\nPlease check if Valgrind is installed."); } else { - $valgrind_version = preg_replace("/valgrind-([0-9])\.([0-9])\.([0-9]+)([.-\w]+)?(\s+)/", '$1$2$3', $valgrind_header, 1, $replace_count); - if ($replace_count != 1 || !is_numeric($valgrind_version)) { + $valgrind_version = preg_replace("/valgrind-(\d+)\.(\d+)\.(\d+)([.\w_-]+)?(\s+)/", '$1.$2.$3', $valgrind_header, 1, $replace_count); + if ($replace_count != 1) { error("Valgrind returned invalid version info (\"$valgrind_header\"), cannot proceed."); } $valgrind_header = trim($valgrind_header); @@ -589,6 +623,9 @@ if (isset($argc) && $argc > 1) { } $pass_option_n = true; break; + case 'e': + $pass_options .= ' -e'; + break; case '--no-clean': $no_clean = true; break; @@ -597,6 +634,15 @@ if (isset($argc) && $argc > 1) { putenv("TEST_PHP_EXECUTABLE=$php"); $environment['TEST_PHP_EXECUTABLE'] = $php; break; + case 'P': + if(constant('PHP_BINARY')) { + $php = PHP_BINARY; + } else { + break; + } + putenv("TEST_PHP_EXECUTABLE=$php"); + $environment['TEST_PHP_EXECUTABLE'] = $php; + break; case 'q': putenv('NO_INTERACTION=1'); break; @@ -613,6 +659,9 @@ if (isset($argc) && $argc > 1) { $cfg['show'][$file] = true; } break; + case '--show-slow': + $slow_min_ms = $argv[++$i]; + break; case '--temp-source': $temp_source = $argv[++$i]; break; @@ -648,7 +697,7 @@ if (isset($argc) && $argc > 1) { $html_output = is_resource($html_file); break; case '--version': - echo '$Id: a746c369653ccdbf4bcde6ffb9bee66549ada732 $' . "\n"; + echo '$Id: c5f09fa8aac4beebf5e9a2f401a3e39cd5399798 $' . "\n"; exit(1); default: @@ -672,6 +721,8 @@ Options: -a Same as -w but append rather then truncating . + -W Write a list of all tests and their result status to . + -c Look for php.ini in directory or use as ini. -n Pass -n option to the php binary (Do not use a php.ini). @@ -679,13 +730,15 @@ Options: -d foo=bar Pass -d option to the php binary (Define INI entry foo with value 'bar'). - -g Comma seperated list of groups to show during test run + -g Comma separated list of groups to show during test run (possible values: PASS, FAIL, XFAIL, SKIP, BORK, WARN, LEAK, REDIRECT). -m Test for memory leaks with Valgrind. -p Specify PHP executable to run. + -P Use PHP_BINARY as PHP executable to run. + -q Quiet, no user interaction (same as environment NO_INTERACTION). -s Write output to . @@ -726,6 +779,9 @@ Options: get written independent of the log format, however 'diff' only exists when a test fails. + --show-slow [n] + Show all tests that took longer than [n] milliseconds to run. + --no-clean Do not execute clean section if any. HELP; @@ -764,7 +820,7 @@ HELP; if (substr(PHP_OS, 0, 3) == "WIN") { $pass_options .= " -c " . escapeshellarg($conf_passed); } else { - $pass_options .= " -c '$conf_passed'"; + $pass_options .= " -c '" . realpath($conf_passed) . "'"; } } @@ -777,7 +833,7 @@ HELP; if ($test_cnt) { putenv('NO_INTERACTION=1'); verify_config(); - write_information($html_output); + write_information(); usort($test_files, "test_sort"); $start_time = time(); @@ -799,15 +855,17 @@ HELP; fclose($failed_tests_file); } - if (count($test_files) || count($test_results)) { - compute_summary(); - if ($html_output) { - fwrite($html_file, "
\n" . get_summary(false, true)); - } - echo "====================================================================="; - echo get_summary(false, false); + if ($result_tests_file) { + fclose($result_tests_file); } + compute_summary(); + if ($html_output) { + fwrite($html_file, "
\n" . get_summary(false, true)); + } + echo "====================================================================="; + echo get_summary(false, false); + if ($html_output) { fclose($html_file); } @@ -818,7 +876,9 @@ HELP; junit_save_xml(); - if (getenv('REPORT_EXIT_STATUS') == 1 and preg_match('/FAILED(?: |$)/', implode(' ', $test_results))) { + if (getenv('REPORT_EXIT_STATUS') !== '0' && + getenv('REPORT_EXIT_STATUS') !== 'no' && + ($sum_results['FAILED'] || $sum_results['BORKED'])) { exit(1); } @@ -827,7 +887,7 @@ HELP; } verify_config(); -write_information($html_output); +write_information(); // Compile a list of all test files (*.phpt). $test_files = array(); @@ -836,7 +896,7 @@ $exts_skipped = 0; $ignored_by_ext = 0; sort($exts_to_test); $test_dirs = array(); -$optionals = array('tests', 'ext', 'Zend', 'ZendEngine2', 'sapi/cli', 'sapi/cgi'); +$optionals = array('tests', 'ext', 'Zend', 'sapi'); foreach($optionals as $dir) { if (@filetype($dir) == 'dir') { @@ -859,7 +919,7 @@ foreach ($user_tests as $dir) { function find_files($dir, $is_ext_dir = false, $ignore = false) { - global $test_files, $exts_to_test, $ignored_by_ext, $exts_skipped, $exts_tested; + global $test_files, $exts_to_test, $ignored_by_ext, $exts_skipped; $o = opendir($dir) or error("cannot open directory: $dir"); @@ -934,6 +994,10 @@ if ($failed_tests_file) { fclose($failed_tests_file); } +if ($result_tests_file) { + fclose($result_tests_file); +} + // Summarize results if (0 == count($test_results)) { @@ -954,7 +1018,9 @@ save_or_mail_results(); junit_save_xml(); -if (getenv('REPORT_EXIT_STATUS') == 1 and $sum_results['FAILED']) { +if (getenv('REPORT_EXIT_STATUS') !== '0' && + getenv('REPORT_EXIT_STATUS') !== 'no' && + ($sum_results['FAILED'] || $sum_results['BORKED'])) { exit(1); } exit(0); @@ -963,7 +1029,7 @@ exit(0); // Send Email to QA Team // -function mail_qa_team($data, $compression, $status = false) +function mail_qa_team($data, $status = false) { $url_bits = parse_url(QA_SUBMISSION_PAGE); @@ -1052,7 +1118,7 @@ function error_report($testname, $logname, $tested) } } -function system_with_timeout($commandline, $env = null, $stdin = null) +function system_with_timeout($commandline, $env = null, $stdin = null, $captureStdIn = true, $captureStdOut = true, $captureStdErr = true) { global $leak_check, $cwd; @@ -1063,20 +1129,29 @@ function system_with_timeout($commandline, $env = null, $stdin = null) $bin_env[$key] = $value; } - $proc = proc_open($commandline, array( - 0 => array('pipe', 'r'), - 1 => array('pipe', 'w'), - 2 => array('pipe', 'w') - ), $pipes, $cwd, $bin_env, array('suppress_errors' => true, 'binary_pipes' => true)); + $descriptorspec = array(); + if ($captureStdIn) { + $descriptorspec[0] = array('pipe', 'r'); + } + if ($captureStdOut) { + $descriptorspec[1] = array('pipe', 'w'); + } + if ($captureStdErr) { + $descriptorspec[2] = array('pipe', 'w'); + } + $proc = proc_open($commandline, $descriptorspec, $pipes, $cwd, $bin_env, array('suppress_errors' => true, 'binary_pipes' => true)); if (!$proc) { return false; } - if (!is_null($stdin)) { - fwrite($pipes[0], $stdin); + if ($captureStdIn) { + if (!is_null($stdin)) { + fwrite($pipes[0], $stdin); + } + fclose($pipes[0]); + unset($pipes[0]); } - fclose($pipes[0]); $timeout = $leak_check ? 300 : (isset($env['TEST_TIMEOUT']) ? $env['TEST_TIMEOUT'] : 60); @@ -1096,7 +1171,13 @@ function system_with_timeout($commandline, $env = null, $stdin = null) proc_terminate($proc, 9); return $data; } else if ($n > 0) { - $line = fread($pipes[1], 8192); + if ($captureStdOut) { + $line = fread($pipes[1], 8192); + } elseif ($captureStdErr) { + $line = fread($pipes[2], 8192); + } else { + $line = ''; + } if (strlen($line) == 0) { /* EOF */ break; @@ -1108,16 +1189,19 @@ function system_with_timeout($commandline, $env = null, $stdin = null) $stat = proc_get_status($proc); if ($stat['signaled']) { - $data .= "\nTermsig=" . $stat['stopsig']; + $data .= "\nTermsig=" . $stat['stopsig'] . "\n"; + } + if ($stat["exitcode"] > 128 && $stat["exitcode"] < 160) { + $data .= "\nTermsig=" . ($stat["exitcode"] - 128) . "\n"; } - $code = proc_close($proc); + proc_close($proc); return $data; } function run_all_tests($test_files, $env, $redir_tested = null) { - global $test_results, $failed_tests_file, $php, $test_cnt, $test_idx; + global $test_results, $failed_tests_file, $result_tests_file, $php, $test_idx; foreach($test_files as $name) { @@ -1140,6 +1224,9 @@ function run_all_tests($test_files, $env, $redir_tested = null) if ($failed_tests_file && ($result == 'XFAILED' || $result == 'FAILED' || $result == 'WARNED' || $result == 'LEAKED')) { fwrite($failed_tests_file, "$index\n"); } + if ($result_tests_file) { + fwrite($result_tests_file, "$result\t$index\n"); + } } } } @@ -1168,12 +1255,14 @@ function show_file_block($file, $block, $section = null) // function run_test($php, $file, $env) { - global $log_format, $info_params, $ini_overwrites, $cwd, $PHP_FAILED_TESTS; + global $log_format, $ini_overwrites, $cwd, $PHP_FAILED_TESTS; global $pass_options, $DETAILED, $IN_REDIRECT, $test_cnt, $test_idx; global $leak_check, $temp_source, $temp_target, $cfg, $environment; global $no_clean; global $valgrind_version; - global $JUNIT; + global $SHOW_ONLY_GROUPS; + global $no_file_cache; + global $slow_min_ms; $temp_filenames = null; $org_file = $file; @@ -1181,6 +1270,10 @@ function run_test($php, $file, $env) $php_cgi = $env['TEST_PHP_CGI_EXECUTABLE']; } + if (isset($env['TEST_PHPDBG_EXECUTABLE'])) { + $phpdbg = $env['TEST_PHPDBG_EXECUTABLE']; + } + if (is_array($file)) { $file = $file[0]; } @@ -1266,7 +1359,7 @@ TEST $file } else { - if (@count($section_text['FILE']) + @count($section_text['FILEEOF']) + @count($section_text['FILE_EXTERNAL']) != 1) { + if (!isset($section_text['PHPDBG']) && @count($section_text['FILE']) + @count($section_text['FILEEOF']) + @count($section_text['FILE_EXTERNAL']) != 1) { $bork_info = "missing section --FILE--"; $borked = true; } @@ -1276,16 +1369,20 @@ TEST $file unset($section_text['FILEEOF']); } - if (@count($section_text['FILE_EXTERNAL']) == 1) { - // don't allow tests to retrieve files from anywhere but this subdirectory - $section_text['FILE_EXTERNAL'] = dirname($file) . '/' . trim(str_replace('..', '', $section_text['FILE_EXTERNAL'])); + foreach (array( 'FILE', 'EXPECT', 'EXPECTF', 'EXPECTREGEX' ) as $prefix) { + $key = $prefix . '_EXTERNAL'; - if (file_exists($section_text['FILE_EXTERNAL'])) { - $section_text['FILE'] = file_get_contents($section_text['FILE_EXTERNAL'], FILE_BINARY); - unset($section_text['FILE_EXTERNAL']); - } else { - $bork_info = "could not load --FILE_EXTERNAL-- " . dirname($file) . '/' . trim($section_text['FILE_EXTERNAL']); - $borked = true; + if (@count($section_text[$key]) == 1) { + // don't allow tests to retrieve files from anywhere but this subdirectory + $section_text[$key] = dirname($file) . '/' . trim(str_replace('..', '', $section_text[$key])); + + if (file_exists($section_text[$key])) { + $section_text[$prefix] = file_get_contents($section_text[$key], FILE_BINARY); + unset($section_text[$key]); + } else { + $bork_info = "could not load --" . $key . "-- " . dirname($file) . '/' . trim($section_text[$key]); + $borked = true; + } } } @@ -1314,6 +1411,21 @@ TEST $file return 'BORKED'; } + if (isset($section_text['CAPTURE_STDIO'])) { + $captureStdIn = stripos($section_text['CAPTURE_STDIO'], 'STDIN') !== false; + $captureStdOut = stripos($section_text['CAPTURE_STDIO'], 'STDOUT') !== false; + $captureStdErr = stripos($section_text['CAPTURE_STDIO'], 'STDERR') !== false; + } else { + $captureStdIn = true; + $captureStdOut = true; + $captureStdErr = true; + } + if ($captureStdOut && $captureStdErr) { + $cmdRedirect = ' 2>&1'; + } else { + $cmdRedirect = ''; + } + $tested = trim($section_text['TEST']); /* For GET/POST/PUT tests, check if cgi sapi is available and if it is, use it. */ @@ -1337,13 +1449,35 @@ TEST $file } else { show_result('SKIP', $tested, $tested_file, "reason: CGI not available"); + junit_init_suite(junit_get_suitename_for($shortname)); junit_mark_test_as('SKIP', $shortname, $tested, 0, 'CGI not available'); return 'SKIPPED'; } } + $uses_cgi = true; } - show_test($test_idx, $shortname); + /* For phpdbg tests, check if phpdbg sapi is available and if it is, use it. */ + if (array_key_exists('PHPDBG', $section_text)) { + if (!isset($section_text['STDIN'])) { + $section_text['STDIN'] = $section_text['PHPDBG']."\n"; + } + + if (isset($phpdbg)) { + $old_php = $php; + $php = $phpdbg . ' -qIb'; + } else { + show_result('SKIP', $tested, $tested_file, "reason: phpdbg not available"); + + junit_init_suite(junit_get_suitename_for($shortname)); + junit_mark_test_as('SKIP', $shortname, $tested, 0, 'phpdbg not available'); + return 'SKIPPED'; + } + } + + if (!$SHOW_ONLY_GROUPS) { + show_test($test_idx, $shortname); + } if (is_array($IN_REDIRECT)) { $temp_dir = $test_dir = $IN_REDIRECT['dir']; @@ -1442,6 +1576,27 @@ TEST $file // Default ini settings $ini_settings = array(); + + // Additional required extensions + if (array_key_exists('EXTENSIONS', $section_text)) { + $ext_params = array(); + settings2array($ini_overwrites, $ext_params); + settings2params($ext_params); + $ext_dir=`$php $pass_options $ext_params -d display_errors=0 -r "echo ini_get('extension_dir');"`; + $extensions = preg_split("/[\n\r]+/", trim($section_text['EXTENSIONS'])); + $loaded = explode(",", `$php $pass_options $ext_params -d display_errors=0 -r "echo implode(',', get_loaded_extensions());"`); + $ext_prefix = substr(PHP_OS, 0, 3) === "WIN" ? "php_" : ""; + foreach ($extensions as $req_ext) { + if (!in_array($req_ext, $loaded)) { + if ($req_ext == 'opcache') { + $ini_settings['zend_extension'][] = $ext_dir . DIRECTORY_SEPARATOR . $ext_prefix . $req_ext . '.' . PHP_SHLIB_SUFFIX; + } else { + $ini_settings['extension'][] = $ext_dir . DIRECTORY_SEPARATOR . $ext_prefix . $req_ext . '.' . PHP_SHLIB_SUFFIX; + } + } + } + } + // additional ini overwrites //$ini_overwrites[] = 'setting=value'; settings2array($ini_overwrites, $ini_settings); @@ -1449,26 +1604,15 @@ TEST $file // Any special ini settings // these may overwrite the test defaults... if (array_key_exists('INI', $section_text)) { - if (strpos($section_text['INI'], '{PWD}') !== false) { - $section_text['INI'] = str_replace('{PWD}', dirname($file), $section_text['INI']); - } + $section_text['INI'] = str_replace('{PWD}', dirname($file), $section_text['INI']); + $section_text['INI'] = str_replace('{TMP}', sys_get_temp_dir(), $section_text['INI']); settings2array(preg_split( "/[\n\r]+/", $section_text['INI']), $ini_settings); } - // Additional required extensions - if (array_key_exists('EXTENSIONS', $section_text)) { - $ext_dir=`$php -r 'echo ini_get("extension_dir");'`; - $extensions = preg_split("/[\n\r]+/", trim($section_text['EXTENSIONS'])); - $loaded = explode(",", `$php -n -r 'echo join(",", get_loaded_extensions());'`); - foreach ($extensions as $req_ext) { - if (!in_array($req_ext, $loaded)) { - $ini_settings['extension'][] = $ext_dir . DIRECTORY_SEPARATOR . $req_ext . '.' . PHP_SHLIB_SUFFIX; - } - } - } - settings2params($ini_settings); + $env['TEST_PHP_EXTRA_ARGS'] = $pass_options . ' ' . $ini_settings; + // Check if test should be skipped. $info = ''; $warn = false; @@ -1491,7 +1635,7 @@ TEST $file junit_start_timer($shortname); - $output = system_with_timeout("$extra $php $pass_options -q $ini_settings -d display_errors=0 \"$test_skipif\"", $env); + $output = system_with_timeout("$extra $php $pass_options -q $ini_settings $no_file_cache -d display_errors=0 \"$test_skipif\"", $env); junit_finish_timer($shortname); @@ -1507,16 +1651,12 @@ TEST $file show_result('SKIP', $tested, $tested_file, '', $temp_filenames); } - if (isset($old_php)) { - $php = $old_php; - } - if (!$cfg['keep']['skip']) { @unlink($test_skipif); } $message = !empty($m[1]) ? $m[1] : ''; - junit_mark_test_as('SKIP', $shortname, $tested, null, ""); + junit_mark_test_as('SKIP', $shortname, $tested, null, $message); return 'SKIPPED'; } @@ -1532,9 +1672,24 @@ TEST $file $info = " (warn: $m[1])"; } } + + if (!strncasecmp('xfail', ltrim($output), 5)) { + // Pretend we have an XFAIL section + $section_text['XFAIL'] = trim(substr(ltrim($output), 5)); + } } } + if (!extension_loaded("zlib") + && ( array_key_exists("GZIP_POST", $section_text) + || array_key_exists("DEFLATE_POST", $section_text)) + ) { + $message = "ext/zlib required"; + show_result('SKIP', $tested, $tested_file, "reason: $message", $temp_filenames); + junit_mark_test_as('SKIP', $shortname, $tested, null, $message); + return 'SKIPPED'; + } + if (@count($section_text['REDIRECTTEST']) == 1) { $test_files = array(); @@ -1543,7 +1698,7 @@ TEST $file $IN_REDIRECT['dir'] = realpath(dirname($file)); $IN_REDIRECT['prefix'] = trim($section_text['TEST']); - if (count($IN_REDIRECT['TESTS']) == 1) { + if (!empty($IN_REDIRECT['TESTS'])) { if (is_array($org_file)) { $test_files[] = $org_file[1]; @@ -1611,8 +1766,12 @@ TEST $file } // We've satisfied the preconditions - run the test! - show_file_block('php', $section_text['FILE'], 'TEST'); - save_text($test_file, $section_text['FILE'], $temp_file); + if (isset($section_text['FILE'])) { + show_file_block('php', $section_text['FILE'], 'TEST'); + save_text($test_file, $section_text['FILE'], $temp_file); + } else { + $test_file = $temp_file = ""; + } if (array_key_exists('GET', $section_text)) { $query_string = trim($section_text['GET']); @@ -1621,9 +1780,15 @@ TEST $file } $env['REDIRECT_STATUS'] = '1'; - $env['QUERY_STRING'] = $query_string; - $env['PATH_TRANSLATED'] = $test_file; - $env['SCRIPT_FILENAME'] = $test_file; + if (empty($env['QUERY_STRING'])) { + $env['QUERY_STRING'] = $query_string; + } + if (empty($env['PATH_TRANSLATED'])) { + $env['PATH_TRANSLATED'] = $test_file; + } + if (empty($env['SCRIPT_FILENAME'])) { + $env['SCRIPT_FILENAME'] = $test_file; + } if (array_key_exists('COOKIE', $section_text)) { $env['HTTP_COOKIE'] = trim($section_text['COOKIE']); @@ -1665,7 +1830,7 @@ TEST $file } save_text($tmp_post, $request); - $cmd = "$php $pass_options $ini_settings -f \"$test_file\" 2>&1 < \"$tmp_post\""; + $cmd = "$php $pass_options $ini_settings -f \"$test_file\"$cmdRedirect < \"$tmp_post\""; } elseif (array_key_exists('PUT', $section_text) && !empty($section_text['PUT'])) { @@ -1694,16 +1859,36 @@ TEST $file $env['REQUEST_METHOD'] = 'PUT'; if (empty($request)) { - junit_mark_test_as('BORK', $shortname, $tested, null, 'empty $request'); + junit_mark_test_as('BORK', $shortname, $tested, null, 'empty $request'); return 'BORKED'; } save_text($tmp_post, $request); - $cmd = "$php $pass_options $ini_settings -f \"$test_file\" 2>&1 < \"$tmp_post\""; + $cmd = "$php $pass_options $ini_settings -f \"$test_file\"$cmdRedirect < \"$tmp_post\""; } else if (array_key_exists('POST', $section_text) && !empty($section_text['POST'])) { $post = trim($section_text['POST']); + $content_length = strlen($post); + save_text($tmp_post, $post); + + $env['REQUEST_METHOD'] = 'POST'; + if (empty($env['CONTENT_TYPE'])) { + $env['CONTENT_TYPE'] = 'application/x-www-form-urlencoded'; + } + + if (empty($env['CONTENT_LENGTH'])) { + $env['CONTENT_LENGTH'] = $content_length; + } + + $cmd = "$php $pass_options $ini_settings -f \"$test_file\"$cmdRedirect < \"$tmp_post\""; + + } else if (array_key_exists('GZIP_POST', $section_text) && !empty($section_text['GZIP_POST'])) { + + $post = trim($section_text['GZIP_POST']); + $post = gzencode($post, 9, FORCE_GZIP); + $env['HTTP_CONTENT_ENCODING'] = 'gzip'; + save_text($tmp_post, $post); $content_length = strlen($post); @@ -1711,36 +1896,20 @@ TEST $file $env['CONTENT_TYPE'] = 'application/x-www-form-urlencoded'; $env['CONTENT_LENGTH'] = $content_length; - $cmd = "$php $pass_options $ini_settings -f \"$test_file\" 2>&1 < \"$tmp_post\""; + $cmd = "$php $pass_options $ini_settings -f \"$test_file\"$cmdRedirect < \"$tmp_post\""; - } else if (array_key_exists('GZIP_POST', $section_text) && !empty($section_text['GZIP_POST'])) { + } else if (array_key_exists('DEFLATE_POST', $section_text) && !empty($section_text['DEFLATE_POST'])) { + $post = trim($section_text['DEFLATE_POST']); + $post = gzcompress($post, 9); + $env['HTTP_CONTENT_ENCODING'] = 'deflate'; + save_text($tmp_post, $post); + $content_length = strlen($post); - $post = trim($section_text['GZIP_POST']); - $post = gzencode($post, 9, FORCE_GZIP); - $env['HTTP_CONTENT_ENCODING'] = 'gzip'; - - save_text($tmp_post, $post); - $content_length = strlen($post); - - $env['REQUEST_METHOD'] = 'POST'; - $env['CONTENT_TYPE'] = 'application/x-www-form-urlencoded'; - $env['CONTENT_LENGTH'] = $content_length; - - $cmd = "$php $pass_options $ini_settings -f \"$test_file\" 2>&1 < \"$tmp_post\""; - - } else if (array_key_exists('DEFLATE_POST', $section_text) && !empty($section_text['DEFLATE_POST'])) { - $post = trim($section_text['DEFLATE_POST']); - $post = gzcompress($post, 9); - $env['HTTP_CONTENT_ENCODING'] = 'deflate'; - save_text($tmp_post, $post); - $content_length = strlen($post); - - $env['REQUEST_METHOD'] = 'POST'; - $env['CONTENT_TYPE'] = 'application/x-www-form-urlencoded'; - $env['CONTENT_LENGTH'] = $content_length; - - $cmd = "$php $pass_options $ini_settings -f \"$test_file\" 2>&1 < \"$tmp_post\""; + $env['REQUEST_METHOD'] = 'POST'; + $env['CONTENT_TYPE'] = 'application/x-www-form-urlencoded'; + $env['CONTENT_LENGTH'] = $content_length; + $cmd = "$php $pass_options $ini_settings -f \"$test_file\"$cmdRedirect < \"$tmp_post\""; } else { @@ -1748,18 +1917,26 @@ TEST $file $env['CONTENT_TYPE'] = ''; $env['CONTENT_LENGTH'] = ''; - $cmd = "$php $pass_options $ini_settings -f \"$test_file\" $args 2>&1"; + $cmd = "$php $pass_options $ini_settings -f \"$test_file\" $args$cmdRedirect"; } if ($leak_check) { $env['USE_ZEND_ALLOC'] = '0'; $env['ZEND_DONT_UNLOAD_MODULES'] = 1; - if ($valgrind_version >= 330) { + $valgrind_cmd = "valgrind -q --tool=memcheck --trace-children=yes"; + if (strpos($test_file, "pcre") !== false) { + $valgrind_cmd .= " --smc-check=all"; + } + + /* --vex-iropt-register-updates=allregs-at-mem-access is necessary for phpdbg watchpoint tests */ + if (version_compare($valgrind_version, '3.8.0', '>=')) { /* valgrind 3.3.0+ doesn't have --log-file-exactly option */ - $cmd = "valgrind -q --tool=memcheck --trace-children=yes --log-file=$memcheck_filename $cmd"; + $cmd = "$valgrind_cmd --vex-iropt-register-updates=allregs-at-mem-access --log-file=$memcheck_filename $cmd"; + } elseif (version_compare($valgrind_version, '3.3.0', '>=')) { + $cmd = "$valgrind_cmd --vex-iropt-precise-memory-exns=yes --log-file=$memcheck_filename $cmd"; } else { - $cmd = "valgrind -q --tool=memcheck --trace-children=yes --log-file-exactly=$memcheck_filename $cmd"; + $cmd = "$valgrind_cmd --vex-iropt-precise-memory-exns=yes --log-file-exactly=$memcheck_filename $cmd"; } } else { @@ -1780,10 +1957,21 @@ COMMAND $cmd "; junit_start_timer($shortname); + $startTime = microtime(true); - $out = system_with_timeout($cmd, $env, isset($section_text['STDIN']) ? $section_text['STDIN'] : null); + $out = system_with_timeout($cmd, $env, isset($section_text['STDIN']) ? $section_text['STDIN'] : null, $captureStdIn, $captureStdOut, $captureStdErr); junit_finish_timer($shortname); + $time = microtime(true) - $startTime; + if ($time * 1000 >= $slow_min_ms) { + $PHP_FAILED_TESTS['SLOW'][] = array( + 'name' => $file, + 'test_name' => (is_array($IN_REDIRECT) ? $IN_REDIRECT['via'] : '') . $tested . " [$tested_file]", + 'output' => '', + 'diff' => '', + 'info' => $time, + ); + } if (array_key_exists('CLEAN', $section_text) && (!$no_clean || $cfg['keep']['clean'])) { @@ -1797,7 +1985,7 @@ COMMAND $cmd settings2params($clean_params); $extra = substr(PHP_OS, 0, 3) !== "WIN" ? "unset REQUEST_METHOD; unset QUERY_STRING; unset PATH_TRANSLATED; unset SCRIPT_FILENAME; unset REQUEST_METHOD;": ""; - system_with_timeout("$extra $php $pass_options -q $clean_params \"$test_clean\"", $env); + system_with_timeout("$extra $php $pass_options -q $clean_params $no_file_cache \"$test_clean\"", $env); } if (!$cfg['keep']['clean']) { @@ -1806,8 +1994,6 @@ COMMAND $cmd } } - @unlink($tmp_post); - $leaked = false; $passed = false; @@ -1823,12 +2009,11 @@ COMMAND $cmd $output = preg_replace("/\r\n/", "\n", trim($out)); /* when using CGI, strip the headers from the output */ - $headers = ""; + $headers = array(); - if (isset($old_php) && preg_match("/^(.*?)\r?\n\r?\n(.*)/s", $out, $match)) { + if (!empty($uses_cgi) && preg_match("/^(.*?)\r?\n\r?\n(.*)/s", $out, $match)) { $output = trim($match[2]); $rh = preg_split("/[\n\r]+/", $match[1]); - $headers = array(); foreach ($rh as $line) { if (strpos($line, ':') !== false) { @@ -1853,26 +2038,23 @@ COMMAND $cmd } } - $org_headers = $headers; - $headers = array(); $output_headers = array(); foreach($want as $k => $v) { - if (isset($org_headers[$k])) { - $headers = $org_headers[$k]; - $output_headers[] = $k . ': ' . $org_headers[$k]; + if (isset($headers[$k])) { + $output_headers[] = $k . ': ' . $headers[$k]; } - if (!isset($org_headers[$k]) || $org_headers[$k] != $v) { + if (!isset($headers[$k]) || $headers[$k] != $v) { $failed_headers = true; } } ksort($wanted_headers); - $wanted_headers = join("\n", $wanted_headers); + $wanted_headers = implode("\n", $wanted_headers); ksort($output_headers); - $output_headers = join("\n", $output_headers); + $output_headers = implode("\n", $output_headers); } show_file_block('out', $output); @@ -1962,9 +2144,6 @@ COMMAND $cmd if (!$cfg['keep']['php']) { @unlink($test_file); } - if (isset($old_php)) { - $php = $old_php; - } if (!$leaked && !$failed_headers) { if (isset($section_text['XFAIL'] )) { @@ -1992,10 +2171,6 @@ COMMAND $cmd @unlink($test_file); } - if (isset($old_php)) { - $php = $old_php; - } - if (!$leaked && !$failed_headers) { if (isset($section_text['XFAIL'] )) { $warn = true; @@ -2030,6 +2205,10 @@ COMMAND $cmd $restype[] = 'WARN'; } + if ($passed) { + @unlink($tmp_post); + } + if (!$passed) { if (isset($section_text['XFAIL'])) { $restype[] = 'XFAIL'; @@ -2095,11 +2274,7 @@ $output ); } - if (isset($old_php)) { - $php = $old_php; - } - - $diff = empty($diff) ? '' : "', $diff) . "\n]]>"; + $diff = empty($diff) ? '' : preg_replace('/\e/', '', $diff); junit_mark_test_as($restype, str_replace($cwd . '/', '', $tested_file), $tested, null, $info, $diff); @@ -2159,8 +2334,8 @@ function count_array_diff($ar1, $ar2, $is_reg, $w, $idx1, $idx2, $cnt1, $cnt2, $ function generate_array_diff($ar1, $ar2, $is_reg, $w) { - $idx1 = 0; $ofs1 = 0; $cnt1 = @count($ar1); - $idx2 = 0; $ofs2 = 0; $cnt2 = @count($ar2); + $idx1 = 0; $cnt1 = @count($ar1); + $idx2 = 0; $cnt2 = @count($ar2); $diff = array(); $old1 = array(); $old2 = array(); @@ -2178,10 +2353,8 @@ function generate_array_diff($ar1, $ar2, $is_reg, $w) if ($c1 > $c2) { $old1[$idx1] = sprintf("%03d- ", $idx1+1) . $w[$idx1++]; - $last = 1; } else if ($c2 > 0) { $old2[$idx2] = sprintf("%03d+ ", $idx2+1) . $ar2[$idx2++]; - $last = 2; } else { $old1[$idx1] = sprintf("%03d- ", $idx1+1) . $w[$idx1++]; $old2[$idx2] = sprintf("%03d+ ", $idx2+1) . $ar2[$idx2++]; @@ -2249,7 +2422,7 @@ function settings2array($settings, &$ini_settings) $name = trim($setting[0]); $value = trim($setting[1]); - if ($name == 'extension') { + if ($name == 'extension' || $name == 'zend_extension') { if (!isset($ini_settings[$name])) { $ini_settings[$name] = array(); @@ -2317,7 +2490,7 @@ function compute_summary() $sum_results['SKIPPED'] += $ignored_by_ext; $percent_results = array(); - while (list($v, $n) = each($sum_results)) { + foreach ($sum_results as $v => $n) { $percent_results[$v] = (100.0 * $n) / $n_total; } } @@ -2382,6 +2555,22 @@ Time taken : ' . sprintf('%4d seconds', $end_time - $start_time) . ' '; $failed_test_summary = ''; + if (count($PHP_FAILED_TESTS['SLOW'])) { + usort($PHP_FAILED_TESTS['SLOW'], function($a, $b) { + return $a['info'] < $b['info'] ? 1 : -1; + }); + + $failed_test_summary .= ' +===================================================================== +SLOW TEST SUMMARY +--------------------------------------------------------------------- +'; + foreach ($PHP_FAILED_TESTS['SLOW'] as $failed_test_data) { + $failed_test_summary .= sprintf('(%.3f s) ', $failed_test_data['info']) . $failed_test_data['test_name'] . "\n"; + } + $failed_test_summary .= "=====================================================================\n"; + } + if (count($PHP_FAILED_TESTS['XFAILED'])) { $failed_test_summary .= ' ===================================================================== @@ -2539,7 +2728,7 @@ function show_result($result, $tested, $tested_file, $extra = '', $temp_filename if (!$SHOW_ONLY_GROUPS || in_array($result, $SHOW_ONLY_GROUPS)) { echo "$result $tested [$tested_file] $extra\n"; - } else { + } else if (!$SHOW_ONLY_GROUPS) { // Write over the last line to avoid random trailing chars on next echo echo str_repeat(" ", $line_length), "\r"; } @@ -2605,6 +2794,7 @@ function junit_init() { 'test_fail' => 0, 'test_error' => 0, 'test_skip' => 0, + 'test_warn' => 0, 'execution_time'=> 0, 'suites' => array(), 'files' => array() @@ -2678,13 +2868,17 @@ function junit_mark_test_as($type, $file_name, $test_name, $time = null, $messag junit_suite_record($suite, 'execution_time', $time); $escaped_details = htmlspecialchars($details, ENT_QUOTES, 'UTF-8'); + $escaped_details = preg_replace_callback('/[\0-\x08\x0B\x0C\x0E-\x1F]/', function ($c) { + return sprintf('[[0x%02x]]', ord($c[0])); + }, $escaped_details); + $escaped_message = htmlspecialchars($message, ENT_QUOTES, 'UTF-8'); $escaped_test_name = basename($file_name) . ' - ' . htmlspecialchars($test_name, ENT_QUOTES); $JUNIT['files'][$file_name]['xml'] = "\n"; if (is_array($type)) { $output_type = $type[0] . 'ED'; - $temp = array_intersect(array('XFAIL', 'FAIL'), $type); + $temp = array_intersect(array('XFAIL', 'FAIL', 'WARN'), $type); $type = reset($temp); } else { $output_type = $type . 'ED'; @@ -2694,16 +2888,19 @@ function junit_mark_test_as($type, $file_name, $test_name, $time = null, $messag junit_suite_record($suite, 'test_pass'); } elseif ('BORK' == $type) { junit_suite_record($suite, 'test_error'); - $JUNIT['files'][$file_name]['xml'] .= "\n"; + $JUNIT['files'][$file_name]['xml'] .= "\n"; } elseif ('SKIP' == $type) { junit_suite_record($suite, 'test_skip'); - $JUNIT['files'][$file_name]['xml'] .= "$message\n"; - } elseif('FAIL' == $type) { + $JUNIT['files'][$file_name]['xml'] .= "$escaped_message\n"; + } elseif ('WARN' == $type) { + junit_suite_record($suite, 'test_warn'); + $JUNIT['files'][$file_name]['xml'] .= "$escaped_message\n"; + } elseif ('FAIL' == $type) { junit_suite_record($suite, 'test_fail'); - $JUNIT['files'][$file_name]['xml'] .= "$escaped_details\n"; + $JUNIT['files'][$file_name]['xml'] .= "$escaped_details\n"; } else { junit_suite_record($suite, 'test_error'); - $JUNIT['files'][$file_name]['xml'] .= "$escaped_details\n"; + $JUNIT['files'][$file_name]['xml'] .= "$escaped_details\n"; } $JUNIT['files'][$file_name]['xml'] .= "\n";